-- -- PostgreSQL database dump -- -- Dumped from database version 16.3 (Debian 16.3-1.pgdg120+1) -- Dumped by pg_dump version 16.6 (Homebrew) SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', 'public', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; -- -- Name: pgboss; Type: SCHEMA; Schema: -; Owner: - -- CREATE SCHEMA pgboss; -- -- Name: btree_gist; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS btree_gist WITH SCHEMA public; -- -- Name: EXTENSION btree_gist; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION btree_gist IS 'support for indexing common datatypes in GiST'; -- -- Name: citext; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS citext WITH SCHEMA public; -- -- Name: EXTENSION citext; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION citext IS 'data type for case-insensitive character strings'; -- -- Name: ip4r; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS ip4r WITH SCHEMA public; -- -- Name: ltree; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS ltree WITH SCHEMA public; -- -- Name: EXTENSION ltree; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION ltree IS 'data type for hierarchical tree-like structures'; -- -- Name: pg_trgm; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA public; -- -- Name: EXTENSION pg_trgm; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION pg_trgm IS 'text similarity measurement and index searching based on trigrams'; -- -- Name: pgcrypto; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA public; -- -- Name: EXTENSION pgcrypto; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION pgcrypto IS 'cryptographic functions'; -- -- Name: job_state; Type: TYPE; Schema: pgboss; Owner: - -- CREATE TYPE pgboss.job_state AS ENUM ( 'created', 'retry', 'active', 'completed', 'expired', 'cancelled', 'failed' ); -- -- Name: BillingType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."BillingType" AS ENUM ( 'MONTHLY', 'YEARLY', 'ONCE' ); -- -- Name: EarnType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."EarnType" AS ENUM ( 'POST', 'COMMENT', 'TIP_COMMENT', 'TIP_POST', 'FOREVER_REFERRAL', 'ONE_DAY_REFERRAL' ); -- -- Name: InvoiceActionState; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."InvoiceActionState" AS ENUM ( 'PENDING', 'PENDING_HELD', 'HELD', 'PAID', 'FAILED', 'RETRYING', 'FORWARDING', 'FORWARDED', 'FAILED_FORWARD', 'CANCELING' ); -- -- Name: InvoiceActionType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."InvoiceActionType" AS ENUM ( 'BUY_CREDITS', 'ITEM_CREATE', 'ITEM_UPDATE', 'ZAP', 'DOWN_ZAP', 'DONATE', 'POLL_VOTE', 'TERRITORY_CREATE', 'TERRITORY_UPDATE', 'TERRITORY_BILLING', 'TERRITORY_UNARCHIVE', 'BOOST', 'RECEIVE' ); -- -- Name: ItemActType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."ItemActType" AS ENUM ( 'VOTE', 'BOOST', 'TIP', 'STREAM', 'POLL', 'DONT_LIKE_THIS', 'FEE' ); -- -- Name: LogLevel; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."LogLevel" AS ENUM ( 'DEBUG', 'INFO', 'WARN', 'ERROR', 'SUCCESS' ); -- -- Name: OneDayReferralType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."OneDayReferralType" AS ENUM ( 'REFERRAL', 'POST', 'COMMENT', 'PROFILE', 'TERRITORY' ); -- -- Name: PostType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."PostType" AS ENUM ( 'LINK', 'DISCUSSION', 'JOB', 'POLL', 'BOUNTY' ); -- -- Name: RankingType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."RankingType" AS ENUM ( 'WOT', 'RECENT', 'AUCTION' ); -- -- Name: Status; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."Status" AS ENUM ( 'ACTIVE', 'STOPPED', 'NOSATS', 'GRACE' ); -- -- Name: StreakType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."StreakType" AS ENUM ( 'COWBOY_HAT', 'GUN', 'HORSE' ); -- -- Name: SubActType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."SubActType" AS ENUM ( 'BILLING', 'REVENUE' ); -- -- Name: WalletType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."WalletType" AS ENUM ( 'LIGHTNING_ADDRESS', 'LND', 'CLN', 'LNBITS', 'NWC', 'PHOENIXD', 'BLINK', 'LNC', 'WEBLN' ); -- -- Name: WithdrawlStatus; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."WithdrawlStatus" AS ENUM ( 'INSUFFICIENT_BALANCE', 'INVALID_PAYMENT', 'PATHFINDING_TIMEOUT', 'ROUTE_NOT_FOUND', 'CONFIRMED', 'UNKNOWN_FAILURE' ); -- -- Name: assert_serialized(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.assert_serialized() RETURNS void LANGUAGE plpgsql AS $$ BEGIN IF (select current_setting('transaction_isolation') <> 'serializable') THEN RAISE EXCEPTION 'SN_NOT_SERIALIZABLE'; END IF; END; $$; -- -- Name: assign_name(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.assign_name() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE BEGIN -- if doesn't have a name, SPLIT email on @ and assign to name IF NEW.name IS NULL THEN NEW.name = SPLIT_PART(NEW.email, '@', 1); END IF; -- replace unsupported characters (non alphanum + _) in name with _ NEW.name = REGEXP_REPLACE(NEW.name, '\W|_', '_', 'gi'); -- while name exists append random number WHILE EXISTS (SELECT 1 FROM users WHERE name = NEW.name) LOOP NEW.name = NEW.name || floor(random() * 10 + 1)::int; END LOOP; RETURN NEW; END; $$; -- -- Name: confidence(double precision, double precision, double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.confidence(successes double precision, trials double precision, z double precision) RETURNS double precision LANGUAGE plpgsql AS $$ DECLARE p FLOAT; lhand FLOAT; rhand FLOAT; under FLOAT; BEGIN IF trials = 0 THEN RETURN 0; END IF; p := successes / trials; lhand := p + 1 / (2 * trials) * z * z; rhand := z * sqrt(p * (1 - p) / trials + z * z / (4 * trials * trials)); under := 1 + 1 / trials * z * z; RETURN (lhand - rhand) / under; END; $$; -- -- Name: create_scheduled_jobs(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.create_scheduled_jobs() RETURNS integer LANGUAGE plpgsql AS $$ DECLARE BEGIN INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('trust', '0 2 * * *', 'America/Chicago') ON CONFLICT DO NOTHING; INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('auction', '* * * * *', 'America/Chicago') ON CONFLICT DO NOTHING; INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('earn', '0 0 * * *', 'America/Chicago') ON CONFLICT DO NOTHING; INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('streak', '15 0 * * *','America/Chicago') ON CONFLICT DO NOTHING; INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('views', '0 0 * * *', 'America/Chicago') ON CONFLICT DO NOTHING; INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('rankViews', '* * * * *', 'America/Chicago') ON CONFLICT DO NOTHING; return 0; EXCEPTION WHEN OTHERS THEN return 0; END; $$; -- -- Name: index_bookmarked_item(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.index_bookmarked_item() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN -- if a bookmark was created or updated, `NEW` will be used IF NEW IS NOT NULL THEN INSERT INTO pgboss.job (name, data) VALUES ('indexItem', jsonb_build_object('id', NEW."itemId")); RETURN NEW; END IF; -- if a bookmark was deleted, `OLD` will be used IF OLD IS NOT NULL THEN -- include `updatedAt` in the `indexItem` job as `now()` to indicate when the indexed item should think it was updated -- this is to facilitate the fact that deleted bookmarks do not show up when re-indexing the item, and therefore -- we don't have a reliable way to calculate a more recent index version, to displace the prior version INSERT INTO pgboss.job (name, data) VALUES ('indexItem', jsonb_build_object('id', OLD."itemId", 'updatedAt', now())); RETURN OLD; END IF; -- This should never be reached RETURN NULL; END; $$; -- -- Name: index_item(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.index_item() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN -- insert indexItem pgboss.job with id INSERT INTO pgboss.job (name, data, priority) VALUES ('indexItem', jsonb_build_object('id', NEW.id), -100); RETURN NEW; END; $$; -- -- Name: invite_drain(integer, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.invite_drain(user_id integer, invite_id text) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE inviter_id INTEGER; inviter_sats INTEGER; gift INTEGER; BEGIN PERFORM ASSERT_SERIALIZED(); -- check user was created in last hour -- check user did not already redeem an invite PERFORM FROM users WHERE id = user_id AND users.created_at >= NOW() AT TIME ZONE 'UTC' - INTERVAL '1 HOUR' AND users."inviteId" IS NULL; IF NOT FOUND THEN RAISE EXCEPTION 'SN_INELIGIBLE'; END IF; -- check that invite has not reached limit -- check that invite is not revoked SELECT "Invite"."userId", "Invite".gift INTO inviter_id, gift FROM "Invite" LEFT JOIN users ON users."inviteId" = invite_id WHERE "Invite".id = invite_id AND NOT "Invite".revoked GROUP BY "Invite".id HAVING COUNT(DISTINCT users.id) < "Invite".limit OR "Invite".limit IS NULL; IF NOT FOUND THEN RAISE EXCEPTION 'SN_REVOKED_OR_EXHAUSTED'; END IF; -- check that inviter has sufficient balance SELECT (msats / 1000) INTO inviter_sats FROM users WHERE id = inviter_id; IF inviter_sats < gift THEN RAISE EXCEPTION 'SN_REVOKED_OR_EXHAUSTED'; END IF; -- subtract amount from inviter UPDATE users SET msats = msats - (1000 * gift) WHERE id = inviter_id; -- add amount to invitee UPDATE users SET msats = msats + (1000 * gift), "inviteId" = invite_id, "referrerId" = inviter_id WHERE id = user_id; RETURN 0; END; $$; -- -- Name: invoice_set_user_cancel_default(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.invoice_set_user_cancel_default() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF NEW.cancelled AND NEW."userCancel" IS NULL THEN NEW."userCancel" := false; END IF; RETURN NEW; END; $$; -- -- Name: item_comments(integer, integer, text, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_comments(_item_id integer, _level integer, _where text, _order_by text) RETURNS jsonb LANGUAGE plpgsql PARALLEL SAFE AS $_$ DECLARE result jsonb; BEGIN IF _level < 1 THEN RETURN '[]'::jsonb; END IF; EXECUTE 'CREATE TEMP TABLE IF NOT EXISTS t_item ON COMMIT DROP AS' || ' SELECT "Item".*, "Item".created_at at time zone ''UTC'' AS "createdAt", "Item".updated_at at time zone ''UTC'' AS "updatedAt", ' || ' "Item"."invoicePaidAt" at time zone ''UTC'' AS "invoicePaidAtUTC", ' || ' to_jsonb(users.*) as user, ' || ' g.hot_score AS "hotScore", g.sub_hot_score AS "subHotScore" ' || ' FROM "Item" ' || ' JOIN users ON users.id = "Item"."userId" ' || ' LEFT JOIN hot_score_view g ON g.id = "Item".id ' || ' WHERE "Item".path <@ (SELECT path FROM "Item" WHERE id = $1) ' || _where USING _item_id, _level, _where, _order_by; EXECUTE '' || 'SELECT COALESCE(jsonb_agg(sub), ''[]''::jsonb) AS comments ' || 'FROM ( ' || ' SELECT "Item".*, item_comments("Item".id, $2 - 1, $3, $4) AS comments ' || ' FROM t_item "Item"' || ' WHERE "Item"."parentId" = $1 ' || _order_by || ' ) sub' INTO result USING _item_id, _level, _where, _order_by; RETURN result; END $_$; -- -- Name: item_comments_limited(integer, integer, integer, integer, integer, text, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_comments_limited(_item_id integer, _limit integer, _offset integer, _grandchild_limit integer, _level integer, _where text, _order_by text) RETURNS jsonb LANGUAGE plpgsql PARALLEL SAFE AS $_$ DECLARE result jsonb; BEGIN IF _level < 1 THEN RETURN '[]'::jsonb; END IF; EXECUTE 'CREATE TEMP TABLE IF NOT EXISTS t_item ON COMMIT DROP AS ' || 'WITH RECURSIVE base AS ( ' || ' (SELECT "Item".*, 1 as level, ROW_NUMBER() OVER () as rn ' || ' FROM "Item" ' || ' LEFT JOIN hot_score_view g(id, "hotScore", "subHotScore") ON g.id = "Item".id ' || ' WHERE "Item"."parentId" = $1 ' || _order_by || ' ' || ' LIMIT $2 ' || ' OFFSET $3) ' || ' UNION ALL ' || ' (SELECT "Item".*, b.level + 1, ROW_NUMBER() OVER (PARTITION BY "Item"."parentId" ' || _order_by || ') ' || ' FROM "Item" ' || ' JOIN base b ON "Item"."parentId" = b.id ' || ' LEFT JOIN hot_score_view g(id, "hotScore", "subHotScore") ON g.id = "Item".id ' || ' WHERE b.level < $5 AND (b.level = 1 OR b.rn <= $4)) ' || ') ' || 'SELECT "Item".*, "Item".created_at at time zone ''UTC'' AS "createdAt", "Item".updated_at at time zone ''UTC'' AS "updatedAt", ' || ' "Item"."invoicePaidAt" at time zone ''UTC'' AS "invoicePaidAtUTC", ' || ' to_jsonb(users.*) as user, ' || ' g.hot_score AS "hotScore", g.sub_hot_score AS "subHotScore" ' || 'FROM base "Item" ' || 'JOIN users ON users.id = "Item"."userId" ' || 'LEFT JOIN hot_score_view g ON g.id = "Item".id ' || 'WHERE ("Item".level = 1 OR "Item".rn <= $4 - "Item".level + 2) ' || _where USING _item_id, _limit, _offset, _grandchild_limit, _level, _where, _order_by; EXECUTE '' || 'SELECT COALESCE(jsonb_agg(sub), ''[]''::jsonb) AS comments ' || 'FROM ( ' || ' SELECT "Item".*, item_comments_limited("Item".id, $2, $3, $4, $5 - 1, $6, $7) AS comments ' || ' FROM t_item "Item" ' || ' WHERE "Item"."parentId" = $1 ' || _order_by || ' ) sub' INTO result USING _item_id, _limit, _offset, _grandchild_limit, _level, _where, _order_by; RETURN result; END $_$; -- -- Name: item_comments_with_me(integer, integer, integer, text, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_comments_with_me(_item_id integer, _me_id integer, _level integer, _where text, _order_by text) RETURNS jsonb LANGUAGE plpgsql STABLE PARALLEL SAFE AS $_$ DECLARE result jsonb; BEGIN IF _level < 1 THEN RETURN '[]'::jsonb; END IF; EXECUTE '' || 'SELECT COALESCE(jsonb_agg(sub), ''[]''::jsonb) AS comments ' || 'FROM ( ' || ' SELECT "Item".*, "Item".created_at at time zone ''UTC'' AS "createdAt", "Item".updated_at at time zone ''UTC'' AS "updatedAt", ' || ' item_comments_with_me("Item".id, $5, $2 - 1, $3, $4) AS comments, ' || ' to_jsonb(users.*) || jsonb_build_object(''meMute'', "Mute"."mutedId" IS NOT NULL) AS user, ' || ' COALESCE("ItemAct"."meMsats", 0) AS "meMsats", COALESCE("ItemAct"."meDontLike", false) AS "meDontLike", ' || ' "Bookmark"."itemId" IS NOT NULL AS "meBookmark", "ThreadSubscription"."itemId" IS NOT NULL AS "meSubscription" ' || ' FROM "Item" p ' || ' JOIN "Item" ON "Item"."parentId" = p.id ' || ' JOIN users ON users.id = "Item"."userId" ' || ' LEFT JOIN "Mute" ON "Mute"."muterId" = $5 AND "Mute"."mutedId" = "Item"."userId"' || ' LEFT JOIN "Bookmark" ON "Bookmark"."itemId" = "Item".id AND "Bookmark"."userId" = $5 ' || ' LEFT JOIN "ThreadSubscription" ON "ThreadSubscription"."itemId" = "Item".id AND "ThreadSubscription"."userId" = $5 ' || ' LEFT JOIN LATERAL ( ' || ' SELECT "itemId", sum("ItemAct".msats) FILTER (WHERE act = ''FEE'' OR act = ''TIP'') AS "meMsats", ' || ' bool_or(act = ''DONT_LIKE_THIS'') AS "meDontLike" ' || ' FROM "ItemAct" ' || ' WHERE "ItemAct"."userId" = $5 ' || ' AND "ItemAct"."itemId" = "Item".id ' || ' GROUP BY "ItemAct"."itemId" ' || ' ) "ItemAct" ON true ' || ' WHERE p.id = $1 ' || _where || ' ' || _order_by || ' ) sub' INTO result USING _item_id, _level, _where, _order_by, _me_id; RETURN result; END $_$; -- -- Name: item_comments_zaprank_with_me(integer, integer, integer, integer, text, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_comments_zaprank_with_me(_item_id integer, _global_seed integer, _me_id integer, _level integer, _where text, _order_by text) RETURNS jsonb LANGUAGE plpgsql PARALLEL SAFE AS $_$ DECLARE result jsonb; BEGIN IF _level < 1 THEN RETURN '[]'::jsonb; END IF; EXECUTE 'CREATE TEMP TABLE IF NOT EXISTS t_item ON COMMIT DROP AS' || ' SELECT "Item".*, "Item".created_at at time zone ''UTC'' AS "createdAt", "Item".updated_at at time zone ''UTC'' AS "updatedAt", ' || ' "Item"."invoicePaidAt" at time zone ''UTC'' AS "invoicePaidAtUTC", to_jsonb(users.*) || jsonb_build_object(''meMute'', "Mute"."mutedId" IS NOT NULL) AS user, ' || ' COALESCE("ItemAct"."meMsats", 0) AS "meMsats", COALESCE("ItemAct"."mePendingMsats", 0) as "mePendingMsats", COALESCE("ItemAct"."meDontLikeMsats", 0) AS "meDontLikeMsats", ' || ' COALESCE("ItemAct"."meMcredits", 0) AS "meMcredits", COALESCE("ItemAct"."mePendingMcredits", 0) as "mePendingMcredits", ' || ' "Bookmark"."itemId" IS NOT NULL AS "meBookmark", "ThreadSubscription"."itemId" IS NOT NULL AS "meSubscription", ' || ' g.hot_score AS "hotScore", g.sub_hot_score AS "subHotScore" ' || ' FROM "Item" ' || ' JOIN users ON users.id = "Item"."userId" ' || ' LEFT JOIN "Mute" ON "Mute"."muterId" = $5 AND "Mute"."mutedId" = "Item"."userId"' || ' LEFT JOIN "Bookmark" ON "Bookmark"."userId" = $5 AND "Bookmark"."itemId" = "Item".id ' || ' LEFT JOIN "ThreadSubscription" ON "ThreadSubscription"."userId" = $5 AND "ThreadSubscription"."itemId" = "Item".id ' || ' LEFT JOIN LATERAL ( ' || ' SELECT "itemId", ' || ' sum("ItemAct".msats) FILTER (WHERE "invoiceActionState" IS DISTINCT FROM ''FAILED'' AND "InvoiceForward".id IS NOT NULL AND (act = ''FEE'' OR act = ''TIP'')) AS "meMsats", ' || ' sum("ItemAct".msats) FILTER (WHERE "invoiceActionState" IS DISTINCT FROM ''FAILED'' AND "InvoiceForward".id IS NULL AND (act = ''FEE'' OR act = ''TIP'')) AS "meMcredits", ' || ' sum("ItemAct".msats) FILTER (WHERE "invoiceActionState" IS NOT DISTINCT FROM ''PENDING'' AND "InvoiceForward".id IS NOT NULL AND (act = ''FEE'' OR act = ''TIP'')) AS "mePendingMsats", ' || ' sum("ItemAct".msats) FILTER (WHERE "invoiceActionState" IS NOT DISTINCT FROM ''PENDING'' AND "InvoiceForward".id IS NULL AND (act = ''FEE'' OR act = ''TIP'')) AS "mePendingMcredits", ' || ' sum("ItemAct".msats) FILTER (WHERE "invoiceActionState" IS DISTINCT FROM ''FAILED'' AND act = ''DONT_LIKE_THIS'') AS "meDontLikeMsats" ' || ' FROM "ItemAct" ' || ' LEFT JOIN "Invoice" ON "Invoice".id = "ItemAct"."invoiceId" ' || ' LEFT JOIN "InvoiceForward" ON "InvoiceForward"."invoiceId" = "Invoice"."id" ' || ' WHERE "ItemAct"."userId" = $5 ' || ' AND "ItemAct"."itemId" = "Item".id ' || ' GROUP BY "ItemAct"."itemId" ' || ' ) "ItemAct" ON true ' || ' LEFT JOIN hot_score_view g ON g.id = "Item".id ' || ' WHERE "Item".path <@ (SELECT path FROM "Item" WHERE id = $1) ' || _where || ' ' USING _item_id, _level, _where, _order_by, _me_id, _global_seed; EXECUTE '' || 'SELECT COALESCE(jsonb_agg(sub), ''[]''::jsonb) AS comments ' || 'FROM ( ' || ' SELECT "Item".*, item_comments_zaprank_with_me("Item".id, $6, $5, $2 - 1, $3, $4) AS comments ' || ' FROM t_item "Item" ' || ' WHERE "Item"."parentId" = $1 ' || _order_by || ' ) sub' INTO result USING _item_id, _level, _where, _order_by, _me_id, _global_seed; RETURN result; END $_$; -- -- Name: item_comments_zaprank_with_me_limited(integer, integer, integer, integer, integer, integer, integer, text, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_comments_zaprank_with_me_limited(_item_id integer, _global_seed integer, _me_id integer, _limit integer, _offset integer, _grandchild_limit integer, _level integer, _where text, _order_by text) RETURNS jsonb LANGUAGE plpgsql PARALLEL SAFE AS $_$ DECLARE result jsonb; BEGIN IF _level < 1 THEN RETURN '[]'::jsonb; END IF; EXECUTE 'CREATE TEMP TABLE IF NOT EXISTS t_item ON COMMIT DROP AS ' || 'WITH RECURSIVE base AS ( ' || ' (SELECT "Item".*, 1 as level, ROW_NUMBER() OVER () as rn ' || ' FROM "Item" ' || ' LEFT JOIN hot_score_view g(id, "hotScore", "subHotScore") ON g.id = "Item".id ' || ' WHERE "Item"."parentId" = $1 ' || _order_by || ' ' || ' LIMIT $4 ' || ' OFFSET $5) ' || ' UNION ALL ' || ' (SELECT "Item".*, b.level + 1, ROW_NUMBER() OVER (PARTITION BY "Item"."parentId" ' || _order_by || ') as rn ' || ' FROM "Item" ' || ' JOIN base b ON "Item"."parentId" = b.id ' || ' LEFT JOIN hot_score_view g(id, "hotScore", "subHotScore") ON g.id = "Item".id ' || ' WHERE b.level < $7 AND (b.level = 1 OR b.rn <= $6)) ' || ') ' || 'SELECT "Item".*, ' || ' "Item".created_at at time zone ''UTC'' AS "createdAt", ' || ' "Item".updated_at at time zone ''UTC'' AS "updatedAt", ' || ' "Item"."invoicePaidAt" at time zone ''UTC'' AS "invoicePaidAtUTC", ' || ' to_jsonb(users.*) || jsonb_build_object(''meMute'', "Mute"."mutedId" IS NOT NULL) AS user, ' || ' COALESCE("ItemAct"."meMsats", 0) AS "meMsats", ' || ' COALESCE("ItemAct"."mePendingMsats", 0) as "mePendingMsats", ' || ' COALESCE("ItemAct"."meDontLikeMsats", 0) AS "meDontLikeMsats", ' || ' COALESCE("ItemAct"."meMcredits", 0) AS "meMcredits", ' || ' COALESCE("ItemAct"."mePendingMcredits", 0) as "mePendingMcredits", ' || ' "Bookmark"."itemId" IS NOT NULL AS "meBookmark", ' || ' "ThreadSubscription"."itemId" IS NOT NULL AS "meSubscription", ' || ' g.hot_score AS "hotScore", g.sub_hot_score AS "subHotScore" ' || 'FROM base "Item" ' || 'JOIN users ON users.id = "Item"."userId" ' || ' LEFT JOIN "Mute" ON "Mute"."muterId" = $3 AND "Mute"."mutedId" = "Item"."userId" ' || ' LEFT JOIN "Bookmark" ON "Bookmark"."userId" = $3 AND "Bookmark"."itemId" = "Item".id ' || ' LEFT JOIN "ThreadSubscription" ON "ThreadSubscription"."userId" = $3 AND "ThreadSubscription"."itemId" = "Item".id ' || ' LEFT JOIN hot_score_view g ON g.id = "Item".id ' || 'LEFT JOIN LATERAL ( ' || ' SELECT "itemId", ' || ' sum("ItemAct".msats) FILTER (WHERE "invoiceActionState" IS DISTINCT FROM ''FAILED'' AND "InvoiceForward".id IS NOT NULL AND (act = ''FEE'' OR act = ''TIP'')) AS "meMsats", ' || ' sum("ItemAct".msats) FILTER (WHERE "invoiceActionState" IS DISTINCT FROM ''FAILED'' AND "InvoiceForward".id IS NULL AND (act = ''FEE'' OR act = ''TIP'')) AS "meMcredits", ' || ' sum("ItemAct".msats) FILTER (WHERE "invoiceActionState" IS NOT DISTINCT FROM ''PENDING'' AND "InvoiceForward".id IS NOT NULL AND (act = ''FEE'' OR act = ''TIP'')) AS "mePendingMsats", ' || ' sum("ItemAct".msats) FILTER (WHERE "invoiceActionState" IS NOT DISTINCT FROM ''PENDING'' AND "InvoiceForward".id IS NULL AND (act = ''FEE'' OR act = ''TIP'')) AS "mePendingMcredits", ' || ' sum("ItemAct".msats) FILTER (WHERE "invoiceActionState" IS DISTINCT FROM ''FAILED'' AND act = ''DONT_LIKE_THIS'') AS "meDontLikeMsats" ' || ' FROM "ItemAct" ' || ' LEFT JOIN "Invoice" ON "Invoice".id = "ItemAct"."invoiceId" ' || ' LEFT JOIN "InvoiceForward" ON "InvoiceForward"."invoiceId" = "Invoice"."id" ' || ' WHERE "ItemAct"."userId" = $3 ' || ' AND "ItemAct"."itemId" = "Item".id ' || ' GROUP BY "ItemAct"."itemId" ' || ') "ItemAct" ON true ' || 'WHERE ("Item".level = 1 OR "Item".rn <= $6 - "Item".level + 2) ' || _where || ' ' USING _item_id, _global_seed, _me_id, _limit, _offset, _grandchild_limit, _level, _where, _order_by; EXECUTE '' || 'SELECT COALESCE(jsonb_agg(sub), ''[]''::jsonb) AS comments ' || 'FROM ( ' || ' SELECT "Item".*, item_comments_zaprank_with_me_limited("Item".id, $2, $3, $4, $5, $6, $7 - 1, $8, $9) AS comments ' || ' FROM t_item "Item" ' || ' WHERE "Item"."parentId" = $1 ' || _order_by || ' ) sub' INTO result USING _item_id, _global_seed, _me_id, _limit, _offset, _grandchild_limit, _level, _where, _order_by; RETURN result; END $_$; -- -- Name: item_forward_pct_total_trigger_func(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_forward_pct_total_trigger_func() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE BEGIN IF (SELECT SUM(pct) FROM "ItemForward" WHERE "itemId" = NEW."itemId") > 100 THEN raise exception 'Total forward pct exceeds 100'; END IF; RETURN NULL; END; $$; -- -- Name: item_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, comments bigint, jobs bigint, posts bigint, territories bigint, zaps bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, count(*) FILTER (WHERE type = 'COMMENT') as comments, count(*) FILTER (WHERE type = 'JOB') as jobs, count(*) FILTER (WHERE type = 'POST') as posts, count(*) FILTER (WHERE type = 'TERRITORY') as territories, count(*) FILTER (WHERE type = 'ZAP') as zaps FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT created_at, CASE WHEN "subName" = 'jobs' THEN 'JOB' WHEN "parentId" IS NULL THEN 'POST' ELSE 'COMMENT' END as type FROM "Item" WHERE created_at >= min_utc AND ("Item"."invoiceActionState" IS NULL OR "Item"."invoiceActionState" = 'PAID')) UNION ALL (SELECT created_at, 'TERRITORY' as type FROM "Sub" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, 'ZAP' as type FROM "ItemAct" WHERE act = 'TIP' AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID') AND created_at >= min_utc)) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY period.t ORDER BY period.t ASC; END; $$; -- -- Name: item_spam(integer, integer, interval); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_spam(parent_id integer, user_id integer, within interval) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE repeats INTEGER; self_replies INTEGER; BEGIN -- no fee escalation IF within = interval '0' THEN RETURN 0; END IF; SELECT count(*) INTO repeats FROM "Item" WHERE ( (parent_id IS NULL AND "parentId" IS NULL) OR ("parentId" = parent_id AND user_id <> (SELECT i."userId" FROM "Item" i WHERE i.id = "Item"."rootId")) ) AND "userId" = user_id AND "bio" = 'f' AND created_at > now_utc() - within; IF parent_id IS NULL THEN RETURN repeats; END IF; WITH RECURSIVE base AS ( SELECT "Item".id, "Item"."parentId", "Item"."userId" FROM "Item" WHERE id = parent_id AND "userId" = user_id AND created_at > now_utc() - within AND user_id <> (SELECT i."userId" FROM "Item" i WHERE i.id = "Item"."rootId") UNION ALL SELECT "Item".id, "Item"."parentId", "Item"."userId" FROM base p JOIN "Item" ON "Item".id = p."parentId" AND "Item"."userId" = p."userId" AND "Item".created_at > now_utc() - within) SELECT count(*) INTO self_replies FROM base; RETURN repeats + self_replies; END; $$; -- -- Name: migrate_existing_user_emails(text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.migrate_existing_user_emails(salt text) RETURNS void LANGUAGE plpgsql AS $$ BEGIN UPDATE "users" SET "emailHash" = encode(digest(LOWER("email") || salt, 'sha256'), 'hex') WHERE "email" IS NOT NULL; -- then wipe the email values UPDATE "users" SET email = NULL; END; $$; -- -- Name: now_utc(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.now_utc() RETURNS timestamp without time zone LANGUAGE sql AS $$ select now() at time zone 'utc'; $$; -- -- Name: pin_delete_trigger_func(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.pin_delete_trigger_func() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN DELETE FROM pgboss.schedule where name = 'repin-' || old.id; RETURN NULL; END; $$; -- -- Name: pin_upsert_trigger_func(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.pin_upsert_trigger_func() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN -- only schedule if pin has new.cron set IF new.cron IS NOT NULL THEN -- pgboss updates when inserts have the same name INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('repin-' || new.id, new.cron, new.timezone) ON CONFLICT (name) DO UPDATE SET cron = EXCLUDED.cron, timezone = EXCLUDED.timezone, data = EXCLUDED.data, options = EXCLUDED.options, updated_on = now(); -- if old.cron is set but new.cron isn't ... we need to delete the job ELSIF old.cron IS NOT NULL AND new.cron IS NULL THEN DELETE FROM pgboss.schedule where name = 'repin-' || new.id; END IF; RETURN new; END; $$; -- -- Name: refreshallmaterializedviews(text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.refreshallmaterializedviews(schema_arg text DEFAULT 'public'::text) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE r RECORD; BEGIN RAISE NOTICE 'Refreshing materialized view in schema %', schema_arg; FOR r IN SELECT matviewname FROM pg_matviews WHERE schemaname = schema_arg LOOP RAISE NOTICE 'Refreshing %.%', schema_arg, r.matviewname; EXECUTE 'REFRESH MATERIALIZED VIEW ' || schema_arg || '.' || r.matviewname; END LOOP; RETURN 1; END $$; -- -- Name: reg_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.reg_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, referrals bigint, organic bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, count("referrerId") as referrals, count(users.id) FILTER(WHERE id > 616) - count("inviteId") as organic FROM generate_series(min, max, ival) period(t) LEFT JOIN users ON period.t = date_trunc(date_part, timezone('America/Chicago', created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago')) GROUP BY period.t ORDER BY period.t ASC; END; $$; -- -- Name: rewards(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.rewards(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, total bigint, donations bigint, fees bigint, boost bigint, jobs bigint, anons_stack bigint) LANGUAGE plpgsql AS $$ DECLARE BEGIN RETURN QUERY SELECT period.t, coalesce(FLOOR(sum(msats)), 0)::BIGINT as total, coalesce(FLOOR(sum(msats) FILTER(WHERE type = 'DONATION')), 0)::BIGINT as donations, coalesce(FLOOR(sum(msats) FILTER(WHERE type NOT IN ('BOOST', 'STREAM', 'DONATION', 'ANON'))), 0)::BIGINT as fees, coalesce(FLOOR(sum(msats) FILTER(WHERE type = 'BOOST')), 0)::BIGINT as boost, coalesce(FLOOR(sum(msats) FILTER(WHERE type = 'STREAM')), 0)::BIGINT as jobs, coalesce(FLOOR(sum(msats) FILTER(WHERE type = 'ANON')), 0)::BIGINT as anons_stack FROM generate_series(min, max, ival) period(t), LATERAL ( (SELECT ("ItemAct".msats - COALESCE("ReferralAct".msats, 0)) * COALESCE("Sub"."rewardsPct", 100) * 0.01 as msats, act::text as type FROM "ItemAct" JOIN "Item" ON "Item"."id" = "ItemAct"."itemId" LEFT JOIN "Item" root ON "Item"."rootId" = root.id JOIN "Sub" ON "Sub"."name" = COALESCE(root."subName", "Item"."subName") LEFT JOIN "ReferralAct" ON "ReferralAct"."itemActId" = "ItemAct".id WHERE date_trunc(date_part, "ItemAct".created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') = period.t AND "ItemAct".act <> 'TIP' AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID')) UNION ALL (SELECT sats * 1000 as msats, 'DONATION' as type FROM "Donation" WHERE date_trunc(date_part, "Donation".created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') = period.t) UNION ALL -- any earnings from anon's stack that are not forwarded to other users (SELECT "ItemAct".msats, 'ANON' as type FROM "Item" JOIN "ItemAct" ON "ItemAct"."itemId" = "Item".id LEFT JOIN "ItemForward" ON "ItemForward"."itemId" = "Item".id WHERE "Item"."userId" = 27 AND "ItemAct".act = 'TIP' AND date_trunc(date_part, "ItemAct".created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') = period.t AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID') GROUP BY "ItemAct".id, "ItemAct".msats HAVING COUNT("ItemForward".id) = 0) ) x GROUP BY period.t; END; $$; -- -- Name: schedule_territory_revenue(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.schedule_territory_revenue() RETURNS integer LANGUAGE plpgsql AS $$ DECLARE BEGIN INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('territoryRevenue', '0 0 * * *', 'America/Chicago') ON CONFLICT DO NOTHING; return 0; EXCEPTION WHEN OTHERS THEN return 0; END; $$; -- -- Name: set_timezone_utc_currentdb(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.set_timezone_utc_currentdb() RETURNS integer LANGUAGE plpgsql AS $$ DECLARE BEGIN EXECUTE 'ALTER DATABASE '||current_database()||' SET TIMEZONE TO ''UTC'''; return 0; EXCEPTION WHEN OTHERS THEN return 0; END; $$; -- -- Name: spender_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.spender_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, "userId" integer, type text) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, u."userId", u.type FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT "ItemAct".created_at, "ItemAct"."userId", act::text as type FROM "ItemAct" WHERE created_at >= min_utc AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID')) UNION ALL (SELECT created_at, "Donation"."userId", 'DONATION' as type FROM "Donation" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, "SubAct"."userId", 'TERRITORY' as type FROM "SubAct" WHERE "SubAct".type = 'BILLING' AND created_at >= min_utc) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY period.t, u."userId", u.type ORDER BY period.t ASC; END; $$; -- -- Name: spending_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.spending_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, jobs bigint, boost bigint, fees bigint, tips bigint, donations bigint, territories bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, coalesce(floor(sum(msats) FILTER (WHERE act = 'STREAM')/1000), 0)::BIGINT as jobs, coalesce(floor(sum(msats) FILTER (WHERE act = 'BOOST')/1000), 0)::BIGINT as boost, coalesce(floor(sum(msats) FILTER (WHERE act NOT IN ('BOOST', 'TIP', 'STREAM', 'DONATION', 'TERRITORY'))/1000), 0)::BIGINT as fees, coalesce(floor(sum(msats) FILTER (WHERE act = 'TIP')/1000), 0)::BIGINT as tips, coalesce(floor(sum(msats) FILTER (WHERE act = 'DONATION')/1000), 0)::BIGINT as donations, coalesce(floor(sum(msats) FILTER (WHERE act = 'TERRITORY')/1000), 0)::BIGINT as territories FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT "ItemAct".created_at, msats, act::text as act FROM "ItemAct" WHERE created_at >= min_utc AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID')) UNION ALL (SELECT created_at, sats * 1000 as msats, 'DONATION' as act FROM "Donation" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, msats, 'TERRITORY' as act FROM "SubAct" WHERE type = 'BILLING' AND created_at >= min_utc) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY period.t ORDER BY period.t ASC; END; $$; -- -- Name: stackers_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.stackers_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, "userId" integer, type text) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, u."userId", u.type FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT "ItemAct".created_at, "Item"."userId", CASE WHEN "Item"."parentId" IS NULL THEN 'POST' ELSE 'COMMENT' END as type FROM "ItemAct" JOIN "Item" on "ItemAct"."itemId" = "Item".id WHERE "ItemAct".act = 'TIP' AND "ItemAct".created_at >= min_utc AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID')) UNION ALL (SELECT created_at, "Earn"."userId", 'EARN' as type FROM "Earn" WHERE ("Earn".type is NULL OR "Earn".type NOT IN ('FOREVER_REFERRAL', 'ONE_DAY_REFERRAL')) AND created_at >= min_utc) UNION ALL (SELECT created_at, "ReferralAct"."referrerId" as "userId", 'REFERRAL' as type FROM "ReferralAct" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, "Earn"."userId", 'REFERRAL' as type FROM "Earn" WHERE "Earn".type IN ('FOREVER_REFERRAL', 'ONE_DAY_REFERRAL') AND created_at >= min_utc) UNION ALL (SELECT created_at, "SubAct"."userId", 'REVENUE' as type FROM "SubAct" WHERE "SubAct".type = 'REVENUE' AND created_at >= min_utc) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY period.t, u."userId", u.type ORDER BY period.t ASC; END; $$; -- -- Name: stacking_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.stacking_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, rewards bigint, posts bigint, comments bigint, referrals bigint, territories bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, coalesce(floor(sum(airdrop)/1000),0)::BIGINT as rewards, coalesce(floor(sum(post)/1000),0)::BIGINT as posts, coalesce(floor(sum(comment)/1000),0)::BIGINT as comments, coalesce(floor(sum(referral)/1000),0)::BIGINT as referrals, coalesce(floor(sum(revenue)/1000),0)::BIGINT as territories FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT "ItemAct".created_at, 0 as airdrop, CASE WHEN "Item"."parentId" IS NULL THEN 0 ELSE "ItemAct".msats END as comment, CASE WHEN "Item"."parentId" IS NULL THEN "ItemAct".msats ELSE 0 END as post, 0 as referral, 0 as revenue FROM "ItemAct" JOIN "Item" on "ItemAct"."itemId" = "Item".id WHERE "ItemAct".act = 'TIP' AND "ItemAct".created_at >= min_utc AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID')) UNION ALL (SELECT created_at, 0 as airdrop, 0 as post, 0 as comment, msats as referral, 0 as revenue FROM "ReferralAct" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, msats as airdrop, 0 as post, 0 as comment, 0 as referral, 0 as revenue FROM "Earn" WHERE ("Earn".type is NULL OR "Earn".type NOT IN ('FOREVER_REFERRAL', 'ONE_DAY_REFERRAL')) AND created_at >= min_utc) UNION ALL (SELECT created_at, 0 as airdrop, 0 as post, 0 as comment, msats as referral, 0 as revenue FROM "Earn" WHERE "Earn".type IN ('FOREVER_REFERRAL', 'ONE_DAY_REFERRAL') AND created_at >= min_utc) UNION ALL (SELECT created_at, 0 as airdrop, 0 as post, 0 as comment, 0 as referral, msats as revenue FROM "SubAct" WHERE type = 'REVENUE' AND created_at >= min_utc) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY period.t ORDER BY period.t ASC; END; $$; -- -- Name: sub_stats(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.sub_stats(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, sub_name public.citext, comments bigint, posts bigint, msats_revenue bigint, msats_stacked bigint, msats_spent bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, "subName" as sub_name, (sum(quantity) FILTER (WHERE type = 'COMMENT'))::BIGINT as comments, (sum(quantity) FILTER (WHERE type = 'POST'))::BIGINT as posts, (sum(quantity) FILTER (WHERE type = 'REVENUE'))::BIGINT as msats_revenue, (sum(quantity) FILTER (WHERE type = 'TIP'))::BIGINT as msats_stacked, (sum(quantity) FILTER (WHERE type IN ('BOOST', 'TIP', 'FEE', 'STREAM', 'POLL', 'DONT_LIKE_THIS', 'VOTE')))::BIGINT as msats_spent FROM generate_series(min, max, ival) period(t) LEFT JOIN ( -- For msats_spent and msats_stacked (SELECT COALESCE("Item"."subName", root."subName") as "subName", "ItemAct"."msats" as quantity, act::TEXT as type, "ItemAct"."created_at" FROM "ItemAct" JOIN "Item" ON "Item"."id" = "ItemAct"."itemId" LEFT JOIN "Item" root ON "Item"."rootId" = root.id WHERE "ItemAct"."created_at" >= min_utc AND ("Item"."subName" IS NOT NULL OR root."subName" IS NOT NULL) AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID')) UNION ALL (SELECT "subName", 1 as quantity, 'POST' as type, created_at FROM "Item" WHERE created_at >= min_utc AND "Item"."parentId" IS NULL AND "subName" IS NOT NULL) UNION ALL (SELECT root."subName", 1 as quantity, 'COMMENT' as type, "Item"."created_at" FROM "Item" JOIN "Item" root ON "Item"."rootId" = root."id" WHERE "Item"."created_at" >= min_utc AND root."subName" IS NOT NULL AND "Item"."parentId" IS NOT NULL) UNION ALL -- For msats_revenue (SELECT "subName", msats as quantity, type::TEXT as type, created_at FROM "SubAct" WHERE created_at >= min_utc) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY "subName", period.t ORDER BY period.t ASC; END; $$; -- -- Name: timewarp(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.timewarp() RETURNS void LANGUAGE plpgsql AS $$ DECLARE r RECORD; max_timestamp TIMESTAMP; interval_to_add INTERVAL; BEGIN FOR r IN SELECT c.table_schema, c.table_name, c.column_name FROM information_schema.columns c JOIN information_schema.tables t ON c.table_schema = t.table_schema AND c.table_name = t.table_name WHERE c.data_type IN ('timestamp without time zone', 'timestamp with time zone') AND c.table_schema NOT IN ('pg_catalog', 'information_schema') -- Exclude system schemas AND t.table_type = 'BASE TABLE' -- Ensure targeting only user-defined tables (excluding views) AND t.table_schema NOT LIKE 'pg_%' -- Exclude other potential PostgreSQL system schemas LOOP -- Calculate the maximum value in the column EXECUTE format('SELECT max(%I) FROM %I.%I', r.column_name, r.table_schema, r.table_name) INTO max_timestamp; -- If there's a maximum value, calculate the interval and update the column IF max_timestamp IS NOT NULL THEN interval_to_add := now() - max_timestamp; EXECUTE format('UPDATE %I.%I SET %I = %I + %L', r.table_schema, r.table_name, r.column_name, r.column_name, interval_to_add); END IF; END LOOP; END; $$; -- -- Name: update_item_path(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.update_item_path() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE npath ltree; root_id INTEGER; BEGIN IF NEW."parentId" IS NULL THEN SELECT NEW.id::text::ltree INTO npath; NEW."path" = npath; ELSEIF TG_OP = 'INSERT' OR OLD."parentId" IS NULL OR OLD."parentId" != NEW."parentId" THEN SELECT "path" || NEW.id::text, ltree2text(subltree("path", 0, 1))::integer FROM "Item" WHERE id = NEW."parentId" INTO npath, root_id; IF npath IS NULL THEN RAISE EXCEPTION 'Invalid parent_id %', NEW."parentId"; END IF; NEW."path" = npath; NEW."rootId" = root_id; END IF; RETURN NEW; END; $$; -- -- Name: update_ranked_views_jobs(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.update_ranked_views_jobs() RETURNS integer LANGUAGE plpgsql AS $$ DECLARE BEGIN INSERT INTO pgboss.job (name) values ('trust'); UPDATE pgboss.schedule SET cron = '*/5 * * * *' WHERE name = 'rankViews'; return 0; EXCEPTION WHEN OTHERS THEN return 0; END; $$; -- -- Name: update_sub_path(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.update_sub_path() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE npath ltree; BEGIN IF NEW."parentName" IS NULL THEN SELECT LOWER(NEW.name)::ltree INTO npath; NEW."path" = npath; ELSEIF TG_OP = 'INSERT' OR OLD."parentName" IS NULL OR OLD."parentName" != NEW."parentName" THEN SELECT "path" || LOWER(NEW.name)::text FROM "Sub" WHERE name = NEW."parentName" INTO npath; IF npath IS NULL THEN RAISE EXCEPTION 'Invalid parent name %', NEW."parentName"; END IF; NEW."path" = npath; END IF; RETURN NEW; END; $$; -- -- Name: update_territory_billing(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.update_territory_billing() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF (TG_OP = 'UPDATE') THEN -- delete the old job DELETE FROM pgboss.job WHERE name = 'territoryBilling' AND data->>'subName' = OLD."name"; END IF; IF (NEW."billPaidUntil" IS NOT NULL) THEN -- create a new job INSERT INTO pgboss.job (name, data, startafter, keepuntil) VALUES ( 'territoryBilling', jsonb_build_object('subName', NEW.name), NEW."billPaidUntil", NEW."billPaidUntil" + interval '1 day'); END IF; RETURN NEW; EXCEPTION WHEN undefined_table THEN return NEW; END; $$; -- -- Name: upload_fees(integer, integer[]); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.upload_fees(user_id integer, upload_ids integer[]) RETURNS TABLE(bytes24h integer, "bytesUnpaid" integer, "nUnpaid" integer, "uploadFeesMsats" bigint) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY SELECT uploadinfo.*, CASE -- anons always pay 100 sats per upload no matter the size WHEN user_id = 27 THEN 100000::BIGINT ELSE CASE -- 250MB are free per stacker and 24 hours WHEN uploadinfo."bytes24h" + uploadinfo."bytesUnpaid" <= 250 * 1024 * 1024 THEN 0::BIGINT -- 250MB-500MB: 10 sats per upload WHEN uploadinfo."bytes24h" + uploadinfo."bytesUnpaid" <= 500 * 1024 * 1024 THEN 10000::BIGINT -- 500MB-1GB: 100 sats per upload WHEN uploadinfo."bytes24h" + uploadinfo."bytesUnpaid" <= 1000 * 1024 * 1024 THEN 100000::BIGINT -- 1GB+: 1k sats per upload ELSE 1000000::BIGINT END END AS "uploadFeesMsats" FROM ( SELECT -- how much bytes did stacker upload in last 24 hours? COALESCE(SUM(size) FILTER(WHERE paid = 't' AND created_at >= NOW() - interval '24 hours'), 0)::INTEGER AS "bytes24h", -- how much unpaid bytes do they want to upload now? COALESCE(SUM(size) FILTER(WHERE paid = 'f' AND id = ANY(upload_ids)), 0)::INTEGER AS "bytesUnpaid", -- how many unpaid images do they want to upload now? COALESCE(COUNT(id) FILTER(WHERE paid = 'f' AND id = ANY(upload_ids)), 0)::INTEGER AS "nUnpaid" FROM "Upload" WHERE "Upload"."userId" = user_id ) uploadinfo; RETURN; END; $$; -- -- Name: user_auto_withdraw(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.user_auto_withdraw() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE BEGIN INSERT INTO pgboss.job (name, data) SELECT 'autoWithdraw', jsonb_build_object('id', NEW.id) -- only if there isn't already a pending job for this user WHERE NOT EXISTS ( SELECT * FROM pgboss.job WHERE name = 'autoWithdraw' AND data->>'id' = NEW.id::TEXT AND state = 'created' ) -- and they have an attached wallet (currently all are received only) AND EXISTS ( SELECT * FROM "Wallet" WHERE "userId" = NEW.id AND enabled = TRUE ); RETURN NEW; END; $$; -- -- Name: user_stats(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.user_stats(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, id integer, comments bigint, posts bigint, territories bigint, referrals bigint, one_day_referrals bigint, msats_tipped bigint, msats_rewards bigint, msats_referrals bigint, msats_one_day_referrals bigint, msats_revenue bigint, msats_stacked bigint, msats_fees bigint, msats_donated bigint, msats_billing bigint, msats_zaps bigint, msats_spent bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, "userId" as id, -- counts (sum(quantity) FILTER (WHERE type = 'COMMENT'))::BIGINT as comments, (sum(quantity) FILTER (WHERE type = 'POST'))::BIGINT as posts, (sum(quantity) FILTER (WHERE type = 'TERRITORY'))::BIGINT as territories, (sum(quantity) FILTER (WHERE type = 'REFERRAL'))::BIGINT as referrals, (sum(quantity) FILTER (WHERE type = 'ONE_DAY_REFERRAL_COUNT'))::BIGINT as one_day_referrals, -- stacking (sum(quantity) FILTER (WHERE type = 'TIPPEE'))::BIGINT as msats_tipped, (sum(quantity) FILTER (WHERE type = 'EARN'))::BIGINT as msats_rewards, (sum(quantity) FILTER (WHERE type = 'REFERRAL_ACT' OR type = 'FOREVER_REFERRAL'))::BIGINT as msats_referrals, (sum(quantity) FILTER (WHERE type = 'ONE_DAY_REFERRAL'))::BIGINT as msats_one_day_referrals, (sum(quantity) FILTER (WHERE type = 'REVENUE'))::BIGINT as msats_revenue, (sum(quantity) FILTER (WHERE type IN ('TIPPEE', 'EARN', 'REFERRAL_ACT', 'REVENUE', 'ONE_DAY_REFERRAL', 'FOREVER_REFERRAL')))::BIGINT as msats_stacked, -- spending (sum(quantity) FILTER (WHERE type IN ('BOOST', 'FEE', 'STREAM', 'POLL', 'DONT_LIKE_THIS')))::BIGINT as msats_fees, (sum(quantity) FILTER (WHERE type = 'DONATION'))::BIGINT as msats_donated, (sum(quantity) FILTER (WHERE type = 'BILLING'))::BIGINT as msats_billing, (sum(quantity) FILTER (WHERE type = 'TIP'))::BIGINT as msats_zaps, (sum(quantity) FILTER (WHERE type IN ('BOOST', 'TIP', 'FEE', 'STREAM', 'POLL', 'DONT_LIKE_THIS', 'DONATION', 'BILLING')))::BIGINT as msats_spent FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT "userId", msats as quantity, act::TEXT as type, created_at FROM "ItemAct" WHERE created_at >= min_utc AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID')) UNION ALL (SELECT "userId", sats*1000 as quantity, 'DONATION' as type, created_at FROM "Donation" WHERE created_at >= min_utc) UNION ALL (SELECT "userId", 1 as quantity, CASE WHEN "Item"."parentId" IS NULL THEN 'POST' ELSE 'COMMENT' END as type, created_at FROM "Item" WHERE created_at >= min_utc) UNION ALL (SELECT "referrerId" as "userId", 1 as quantity, 'REFERRAL' as type, created_at FROM users WHERE "referrerId" IS NOT NULL AND created_at >= min_utc) UNION ALL -- tips accounting for forwarding (SELECT "Item"."userId", floor("ItemAct".msats * (1-COALESCE(sum("ItemForward".pct)/100.0, 0))) as quantity, 'TIPPEE' as type, "ItemAct".created_at FROM "ItemAct" JOIN "Item" on "ItemAct"."itemId" = "Item".id LEFT JOIN "ItemForward" on "ItemForward"."itemId" = "Item".id WHERE "ItemAct".act = 'TIP' AND "ItemAct".created_at >= min_utc AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID') GROUP BY "Item"."userId", "ItemAct".id, "ItemAct".msats, "ItemAct".created_at) UNION ALL -- tips where stacker is a forwardee (SELECT "ItemForward"."userId", floor("ItemAct".msats*("ItemForward".pct/100.0)) as quantity, 'TIPPEE' as type, "ItemAct".created_at FROM "ItemAct" JOIN "Item" on "ItemAct"."itemId" = "Item".id JOIN "ItemForward" on "ItemForward"."itemId" = "Item".id WHERE "ItemAct".act = 'TIP' AND "ItemAct".created_at >= min_utc AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID')) UNION ALL (SELECT "userId", msats as quantity, 'EARN' as type, created_at FROM "Earn" WHERE (type is NULL OR type NOT IN ('FOREVER_REFERRAL', 'ONE_DAY_REFERRAL')) AND created_at >= min_utc) UNION ALL (SELECT "userId", msats as quantity, type::TEXT as type, created_at FROM "Earn" WHERE type IN ('FOREVER_REFERRAL', 'ONE_DAY_REFERRAL') AND created_at >= min_utc) UNION ALL (SELECT "referrerId" as "userId", msats as quantity, 'REFERRAL_ACT' as type, created_at FROM "ReferralAct" WHERE created_at >= min_utc) UNION ALL (SELECT "userId", msats as quantity, type::TEXT as type, created_at FROM "SubAct" WHERE created_at >= min_utc) UNION ALL (SELECT "userId", 1 as quantity, 'TERRITORY' as type, created_at FROM "Sub" WHERE status <> 'STOPPED' AND created_at >= min_utc) UNION ALL -- for every referree, get the one day referrer on each day (SELECT mode() WITHIN GROUP (ORDER BY "OneDayReferral"."referrerId") AS "userId", 1 as quantity, 'ONE_DAY_REFERRAL_COUNT' as type, max(created_at) AS created_at FROM "OneDayReferral" WHERE created_at >= min_utc GROUP BY "refereeId", date_trunc('day', created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') HAVING mode() WITHIN GROUP (ORDER BY "OneDayReferral"."referrerId") IS NOT NULL) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY "userId", period.t ORDER BY period.t ASC; END; $$; -- -- Name: user_streak_check(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.user_streak_check() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE BEGIN INSERT INTO pgboss.job (name, data, priority) VALUES ('checkStreak', jsonb_build_object('id', NEW.id), -1); RETURN NEW; END; $$; -- -- Name: user_values(timestamp without time zone, timestamp without time zone, interval, text, integer, double precision, double precision, integer[], double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.user_values(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text, percentile_cutoff integer DEFAULT 50, each_upvote_portion double precision DEFAULT 4.0, each_item_portion double precision DEFAULT 4.0, handicap_ids integer[] DEFAULT '{616,6030,4502,27}'::integer[], handicap_zap_mult double precision DEFAULT 0.5) RETURNS TABLE(t timestamp without time zone, id integer, proportion double precision) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, u."userId", u.total_proportion FROM generate_series(min, max, ival) period(t), LATERAL (WITH item_ratios AS ( SELECT *, CASE WHEN "parentId" IS NULL THEN 'POST' ELSE 'COMMENT' END as type, CASE WHEN "weightedVotes" > 0 THEN "weightedVotes"/(sum("weightedVotes") OVER (PARTITION BY "parentId" IS NULL)) ELSE 0 END AS ratio FROM ( SELECT *, NTILE(100) OVER (PARTITION BY "parentId" IS NULL ORDER BY ("weightedVotes"-"weightedDownVotes") desc) AS percentile, ROW_NUMBER() OVER (PARTITION BY "parentId" IS NULL ORDER BY ("weightedVotes"-"weightedDownVotes") desc) AS rank FROM "Item" WHERE date_trunc(date_part, created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') = period.t AND "weightedVotes" > 0 AND "deletedAt" IS NULL AND NOT bio AND ("invoiceActionState" IS NULL OR "invoiceActionState" = 'PAID') ) x WHERE x.percentile <= percentile_cutoff ), -- get top upvoters of top posts and comments upvoter_islands AS ( SELECT "ItemAct"."userId", item_ratios.id, item_ratios.ratio, item_ratios."parentId", "ItemAct".msats as tipped, "ItemAct".created_at as acted_at, ROW_NUMBER() OVER (partition by item_ratios.id order by "ItemAct".created_at asc) - ROW_NUMBER() OVER (partition by item_ratios.id, "ItemAct"."userId" order by "ItemAct".created_at asc) AS island FROM item_ratios JOIN "ItemAct" on "ItemAct"."itemId" = item_ratios.id WHERE act = 'TIP' AND date_trunc(date_part, "ItemAct".created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') = period.t AND ("ItemAct"."invoiceActionState" IS NULL OR "ItemAct"."invoiceActionState" = 'PAID') ), -- isolate contiguous upzaps from the same user on the same item so that when we take the log -- of the upzaps it accounts for successive zaps and does not disproportionately reward them -- quad root of the total tipped upvoters AS ( SELECT "userId", upvoter_islands.id, ratio, "parentId", GREATEST(power(sum(tipped) / 1000, 0.25), 0) as tipped, min(acted_at) as acted_at FROM upvoter_islands GROUP BY "userId", upvoter_islands.id, ratio, "parentId", island HAVING CASE WHEN "parentId" IS NULL THEN sum(tipped) / 1000 > 40 ELSE sum(tipped) / 1000 > 20 END ), -- the relative contribution of each upvoter to the post/comment -- early component: 1/ln(early_rank + e - 1) -- tipped component: how much they tipped relative to the total tipped for the item -- multiplied by the relative rank of the item to the total items -- multiplied by the trust of the user upvoter_ratios AS ( SELECT "userId", sum((2*early_multiplier+1)*tipped_ratio*ratio*handicap_mult) as upvoter_ratio, "parentId" IS NULL as "isPost", CASE WHEN "parentId" IS NULL THEN 'TIP_POST' ELSE 'TIP_COMMENT' END as type FROM ( SELECT *, 1.0/LN(ROW_NUMBER() OVER (partition by upvoters.id order by acted_at asc) + EXP(1.0) - 1) AS early_multiplier, tipped::float/(sum(tipped) OVER (partition by upvoters.id)) tipped_ratio, CASE WHEN upvoters."userId" = ANY(handicap_ids) THEN handicap_zap_mult ELSE 1 END as handicap_mult FROM upvoters WHERE tipped > 0 ) u JOIN users on "userId" = users.id GROUP BY "userId", "parentId" IS NULL ), proportions AS ( SELECT "userId", NULL as id, type, ROW_NUMBER() OVER (PARTITION BY "isPost" ORDER BY upvoter_ratio DESC) as rank, upvoter_ratio/(sum(upvoter_ratio) OVER (PARTITION BY "isPost"))/each_upvote_portion as proportion FROM upvoter_ratios WHERE upvoter_ratio > 0 UNION ALL SELECT "userId", item_ratios.id, type, rank, ratio/each_item_portion as proportion FROM item_ratios ) SELECT "userId", sum(proportions.proportion) AS total_proportion FROM proportions GROUP BY "userId" HAVING sum(proportions.proportion) > 0.000001) u; END; $$; -- -- Name: wallet_updated_at_trigger(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.wallet_updated_at_trigger() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN UPDATE "users" SET "walletsUpdatedAt" = NOW() WHERE "id" = CASE WHEN TG_OP = 'DELETE' THEN OLD."userId" ELSE NEW."userId" END; RETURN NULL; END; $$; -- -- Name: wallet_wallet_type_as_jsonb(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.wallet_wallet_type_as_jsonb() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF (TG_OP = 'INSERT' OR TG_OP = 'UPDATE') THEN UPDATE "Wallet" SET wallet = to_jsonb(NEW) WHERE id = NEW."walletId"; END IF; RETURN NEW; END; $$; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- Name: archive; Type: TABLE; Schema: pgboss; Owner: - -- CREATE TABLE pgboss.archive ( id uuid NOT NULL, name text NOT NULL, priority integer NOT NULL, data jsonb, state pgboss.job_state NOT NULL, retrylimit integer NOT NULL, retrycount integer NOT NULL, retrydelay integer NOT NULL, retrybackoff boolean NOT NULL, startafter timestamp with time zone NOT NULL, startedon timestamp with time zone, singletonkey text, singletonon timestamp without time zone, expirein interval NOT NULL, createdon timestamp with time zone NOT NULL, completedon timestamp with time zone, keepuntil timestamp with time zone NOT NULL, on_complete boolean NOT NULL, output jsonb, archivedon timestamp with time zone DEFAULT now() NOT NULL ); -- -- Name: job; Type: TABLE; Schema: pgboss; Owner: - -- CREATE TABLE pgboss.job ( id uuid DEFAULT public.gen_random_uuid() NOT NULL, name text NOT NULL, priority integer DEFAULT 0 NOT NULL, data jsonb, state pgboss.job_state DEFAULT 'created'::pgboss.job_state NOT NULL, retrylimit integer DEFAULT 0 NOT NULL, retrycount integer DEFAULT 0 NOT NULL, retrydelay integer DEFAULT 0 NOT NULL, retrybackoff boolean DEFAULT false NOT NULL, startafter timestamp with time zone DEFAULT now() NOT NULL, startedon timestamp with time zone, singletonkey text, singletonon timestamp without time zone, expirein interval DEFAULT '00:15:00'::interval NOT NULL, createdon timestamp with time zone DEFAULT now() NOT NULL, completedon timestamp with time zone, keepuntil timestamp with time zone DEFAULT (now() + '14 days'::interval) NOT NULL, on_complete boolean DEFAULT false NOT NULL, output jsonb ); -- -- Name: schedule; Type: TABLE; Schema: pgboss; Owner: - -- CREATE TABLE pgboss.schedule ( name text NOT NULL, cron text NOT NULL, timezone text, data jsonb, options jsonb, created_on timestamp with time zone DEFAULT now() NOT NULL, updated_on timestamp with time zone DEFAULT now() NOT NULL ); -- -- Name: subscription; Type: TABLE; Schema: pgboss; Owner: - -- CREATE TABLE pgboss.subscription ( event text NOT NULL, name text NOT NULL, created_on timestamp with time zone DEFAULT now() NOT NULL, updated_on timestamp with time zone DEFAULT now() NOT NULL ); -- -- Name: version; Type: TABLE; Schema: pgboss; Owner: - -- CREATE TABLE pgboss.version ( version integer NOT NULL, maintained_on timestamp with time zone, cron_on timestamp with time zone ); -- -- Name: Arc; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Arc" ( "fromId" integer NOT NULL, "toId" integer NOT NULL, "zapTrust" double precision NOT NULL ); -- -- Name: AutoSocialPost; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."AutoSocialPost" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL ); -- -- Name: AutoSocialPost_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."AutoSocialPost_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: AutoSocialPost_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."AutoSocialPost_id_seq" OWNED BY public."AutoSocialPost".id; -- -- Name: Bookmark; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Bookmark" ( "userId" integer NOT NULL, "itemId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: DirectPayment; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."DirectPayment" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "senderId" integer, "receiverId" integer, preimage text, bolt11 text, "walletId" integer, comment text, "desc" text, "lud18Data" jsonb, msats bigint NOT NULL, hash text ); -- -- Name: DirectPayment_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."DirectPayment_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: DirectPayment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."DirectPayment_id_seq" OWNED BY public."DirectPayment".id; -- -- Name: Donation; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Donation" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, sats integer NOT NULL, "userId" integer NOT NULL ); -- -- Name: Donation_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Donation_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Donation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Donation_id_seq" OWNED BY public."Donation".id; -- -- Name: Earn; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Earn" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, msats bigint NOT NULL, "userId" integer NOT NULL, rank integer, type public."EarnType", "typeId" integer ); -- -- Name: Earn_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Earn_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Earn_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Earn_id_seq" OWNED BY public."Earn".id; -- -- Name: Invite; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Invite" ( id text DEFAULT encode(public.gen_random_bytes(16), 'hex'::text) NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, gift integer, "limit" integer, revoked boolean DEFAULT false NOT NULL, description text, "giftedCount" integer DEFAULT 0 NOT NULL ); -- -- Name: Invoice; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Invoice" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, hash text NOT NULL, bolt11 text NOT NULL, "expiresAt" timestamp(3) without time zone NOT NULL, "confirmedAt" timestamp(3) without time zone, cancelled boolean DEFAULT false NOT NULL, "msatsRequested" bigint NOT NULL, "msatsReceived" bigint, "desc" text, preimage text, "isHeld" boolean, comment text, "lud18Data" jsonb, "confirmedIndex" bigint, "actionState" public."InvoiceActionState", "actionType" public."InvoiceActionType", "actionId" integer, "actionArgs" jsonb, "actionError" text, "actionResult" jsonb, "actionOptimistic" boolean, "cancelledAt" timestamp(3) without time zone, "predecessorId" integer, "userCancel" boolean, "paymentAttempt" integer DEFAULT 0 NOT NULL, "retryPendingSince" timestamp(3) without time zone, CONSTRAINT "Invoice_cancel" CHECK ((((cancelled = true) AND ("cancelledAt" IS NOT NULL) AND ("userCancel" IS NOT NULL)) OR ((cancelled = false) AND ("cancelledAt" IS NULL) AND ("userCancel" IS NULL)))) ); -- -- Name: InvoiceForward; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."InvoiceForward" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, bolt11 text NOT NULL, "maxFeeMsats" integer NOT NULL, "walletId" integer NOT NULL, "expiryHeight" integer, "acceptHeight" integer, "invoiceId" integer NOT NULL, "withdrawlId" integer ); -- -- Name: InvoiceForward_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."InvoiceForward_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: InvoiceForward_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."InvoiceForward_id_seq" OWNED BY public."InvoiceForward".id; -- -- Name: Invoice_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Invoice_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Invoice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Invoice_id_seq" OWNED BY public."Invoice".id; -- -- Name: Item; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Item" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, title text, text text, url text, "userId" integer NOT NULL, "parentId" integer, path public.ltree, "pinId" integer, latitude double precision, location text, longitude double precision, "maxBid" integer, "maxSalary" integer, "minSalary" integer, remote boolean, "subName" public.citext, "statusUpdatedAt" timestamp(3) without time zone, status public."Status" DEFAULT 'ACTIVE'::public."Status" NOT NULL, company text, "weightedVotes" double precision DEFAULT 0 NOT NULL, boost integer DEFAULT 0 NOT NULL, "uploadId" integer, "pollCost" integer, "paidImgLink" boolean DEFAULT false NOT NULL, "commentMsats" bigint DEFAULT 0 NOT NULL, "lastCommentAt" timestamp(3) without time zone, ncomments integer DEFAULT 0 NOT NULL, msats bigint DEFAULT 0 NOT NULL, "weightedDownVotes" double precision DEFAULT 0 NOT NULL, bio boolean DEFAULT false NOT NULL, freebie boolean DEFAULT false NOT NULL, "deletedAt" timestamp(3) without time zone, "otsFile" bytea, "otsHash" text, bounty integer, "rootId" integer, "bountyPaidTo" integer[], upvotes integer DEFAULT 0 NOT NULL, "weightedComments" double precision DEFAULT 0 NOT NULL, "imgproxyUrls" jsonb, "noteId" text, outlawed boolean DEFAULT false NOT NULL, "pollExpiresAt" timestamp(3) without time zone, "lastZapAt" timestamp(3) without time zone, "apiKey" boolean DEFAULT false NOT NULL, "invoiceActionState" public."InvoiceActionState", "invoiceId" integer, "invoicePaidAt" timestamp(3) without time zone, cost integer DEFAULT 0 NOT NULL, "oldBoost" integer DEFAULT 0 NOT NULL, mcredits bigint DEFAULT 0 NOT NULL, "commentMcredits" bigint DEFAULT 0 NOT NULL, "nDirectComments" integer DEFAULT 0 NOT NULL, "subWeightedDownVotes" double precision DEFAULT 0 NOT NULL, "subWeightedVotes" double precision DEFAULT 0 NOT NULL ); -- -- Name: ItemAct; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ItemAct" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, msats bigint NOT NULL, act public."ItemActType" NOT NULL, "itemId" integer NOT NULL, "userId" integer NOT NULL, "invoiceActionState" public."InvoiceActionState", "invoiceId" integer ); -- -- Name: ItemForward; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ItemForward" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL, "userId" integer NOT NULL, pct integer NOT NULL ); -- -- Name: ItemForward_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."ItemForward_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: ItemForward_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."ItemForward_id_seq" OWNED BY public."ItemForward".id; -- -- Name: ItemMention; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ItemMention" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "referrerId" integer NOT NULL, "refereeId" integer NOT NULL ); -- -- Name: ItemMention_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."ItemMention_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: ItemMention_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."ItemMention_id_seq" OWNED BY public."ItemMention".id; -- -- Name: ItemUpload; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ItemUpload" ( created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL, "uploadId" integer NOT NULL ); -- -- Name: ItemUserAgg; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ItemUserAgg" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL, "userId" integer NOT NULL, "zapSats" bigint DEFAULT 0 NOT NULL, "downZapSats" bigint DEFAULT 0 NOT NULL ); -- -- Name: ItemUserAgg_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."ItemUserAgg_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: ItemUserAgg_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."ItemUserAgg_id_seq" OWNED BY public."ItemUserAgg".id; -- -- Name: Item_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Item_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Item_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Item_id_seq" OWNED BY public."Item".id; -- -- Name: LnAuth; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."LnAuth" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, k1 text NOT NULL, pubkey text ); -- -- Name: LnAuth_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."LnAuth_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: LnAuth_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."LnAuth_id_seq" OWNED BY public."LnAuth".id; -- -- Name: LnWith; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."LnWith" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, k1 text NOT NULL, "userId" integer NOT NULL, "withdrawalId" integer ); -- -- Name: LnWith_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."LnWith_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: LnWith_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."LnWith_id_seq" OWNED BY public."LnWith".id; -- -- Name: Log; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Log" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, level public."LogLevel" NOT NULL, name text NOT NULL, message text NOT NULL, env jsonb, context jsonb ); -- -- Name: Log_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Log_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Log_id_seq" OWNED BY public."Log".id; -- -- Name: Mention; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Mention" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL, "userId" integer NOT NULL ); -- -- Name: Mention_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Mention_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Mention_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Mention_id_seq" OWNED BY public."Mention".id; -- -- Name: Message; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Message" ( id integer NOT NULL, text text NOT NULL, "userId" integer NOT NULL ); -- -- Name: Message_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Message_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Message_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Message_id_seq" OWNED BY public."Message".id; -- -- Name: Mute; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Mute" ( "muterId" integer NOT NULL, "mutedId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: MuteSub; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."MuteSub" ( created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "subName" public.citext NOT NULL, "userId" integer NOT NULL ); -- -- Name: NostrRelay; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."NostrRelay" ( addr text NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: OFAC; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."OFAC" ( id integer NOT NULL, "startIP" public.ipaddress NOT NULL, "endIP" public.ipaddress NOT NULL, country text NOT NULL, "countryCode" text NOT NULL ); -- -- Name: OFAC_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."OFAC_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: OFAC_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."OFAC_id_seq" OWNED BY public."OFAC".id; -- -- Name: OneDayReferral; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."OneDayReferral" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "referrerId" integer NOT NULL, "refereeId" integer NOT NULL, type public."OneDayReferralType" NOT NULL, "typeId" text NOT NULL, landing boolean DEFAULT false NOT NULL ); -- -- Name: OneDayReferral_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."OneDayReferral_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: OneDayReferral_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."OneDayReferral_id_seq" OWNED BY public."OneDayReferral".id; -- -- Name: Pin; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Pin" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, cron text, timezone text, "position" integer NOT NULL ); -- -- Name: Pin_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Pin_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Pin_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Pin_id_seq" OWNED BY public."Pin".id; -- -- Name: PollBlindVote; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."PollBlindVote" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL, "userId" integer NOT NULL, "invoiceActionState" public."InvoiceActionState", "invoiceId" integer ); -- -- Name: PollBlindVote_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."PollBlindVote_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: PollBlindVote_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."PollBlindVote_id_seq" OWNED BY public."PollBlindVote".id; -- -- Name: PollOption; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."PollOption" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL, option text NOT NULL ); -- -- Name: PollOption_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."PollOption_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: PollOption_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."PollOption_id_seq" OWNED BY public."PollOption".id; -- -- Name: PollVote; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."PollVote" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL, "pollOptionId" integer NOT NULL, "invoiceActionState" public."InvoiceActionState", "invoiceId" integer ); -- -- Name: PollVote_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."PollVote_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: PollVote_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."PollVote_id_seq" OWNED BY public."PollVote".id; -- -- Name: PushSubscription; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."PushSubscription" ( id integer NOT NULL, "userId" integer NOT NULL, endpoint text NOT NULL, p256dh text NOT NULL, auth text NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: PushSubscription_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."PushSubscription_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: PushSubscription_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."PushSubscription_id_seq" OWNED BY public."PushSubscription".id; -- -- Name: ReferralAct; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ReferralAct" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "referrerId" integer NOT NULL, "itemActId" integer NOT NULL, msats bigint NOT NULL ); -- -- Name: ReferralAct_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."ReferralAct_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: ReferralAct_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."ReferralAct_id_seq" OWNED BY public."ReferralAct".id; -- -- Name: Reminder; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Reminder" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, "itemId" integer NOT NULL, "remindAt" timestamp(3) without time zone NOT NULL ); -- -- Name: Reminder_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Reminder_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Reminder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Reminder_id_seq" OWNED BY public."Reminder".id; -- -- Name: Reply; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Reply" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "ancestorId" integer NOT NULL, "ancestorUserId" integer NOT NULL, "itemId" integer NOT NULL, "userId" integer NOT NULL, level integer NOT NULL ); -- -- Name: Reply_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Reply_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Reply_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Reply_id_seq" OWNED BY public."Reply".id; -- -- Name: Snl; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Snl" ( id integer NOT NULL, live boolean DEFAULT false NOT NULL ); -- -- Name: Snl_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Snl_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Snl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Snl_id_seq" OWNED BY public."Snl".id; -- -- Name: Streak; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Streak" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "startedAt" date NOT NULL, "endedAt" date, "userId" integer NOT NULL, type public."StreakType" DEFAULT 'COWBOY_HAT'::public."StreakType" NOT NULL ); -- -- Name: Streak_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Streak_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Streak_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Streak_id_seq" OWNED BY public."Streak".id; -- -- Name: Sub; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Sub" ( name public.citext NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "postTypes" public."PostType"[], "rankingType" public."RankingType" NOT NULL, "baseCost" integer DEFAULT 1 NOT NULL, "desc" text, "billedLastAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "billingCost" integer NOT NULL, "billingType" public."BillingType" NOT NULL, "parentName" public.citext, path public.ltree, status public."Status" DEFAULT 'ACTIVE'::public."Status" NOT NULL, "userId" integer NOT NULL, "rewardsPct" integer DEFAULT 50 NOT NULL, "billingAutoRenew" boolean DEFAULT false NOT NULL, "allowFreebies" boolean DEFAULT true NOT NULL, moderated boolean DEFAULT false NOT NULL, "moderatedCount" integer DEFAULT 0 NOT NULL, "statusUpdatedAt" timestamp(3) without time zone, nsfw boolean DEFAULT false NOT NULL, "billPaidUntil" timestamp(3) without time zone, "replyCost" integer DEFAULT 1 NOT NULL, CONSTRAINT "Sub_replyCost_positive" CHECK (("replyCost" > 0)) ); -- -- Name: SubAct; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."SubAct" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, "subName" public.citext NOT NULL, msats bigint NOT NULL, type public."SubActType" NOT NULL ); -- -- Name: SubAct_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."SubAct_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: SubAct_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."SubAct_id_seq" OWNED BY public."SubAct".id; -- -- Name: SubSubscription; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."SubSubscription" ( "userId" integer NOT NULL, "subName" public.citext NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: TerritoryTransfer; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."TerritoryTransfer" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "oldUserId" integer NOT NULL, "newUserId" integer NOT NULL, "subName" public.citext NOT NULL ); -- -- Name: TerritoryTransfer_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."TerritoryTransfer_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: TerritoryTransfer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."TerritoryTransfer_id_seq" OWNED BY public."TerritoryTransfer".id; -- -- Name: ThreadSubscription; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ThreadSubscription" ( "userId" integer NOT NULL, "itemId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: Upload; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Upload" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, type text NOT NULL, size integer NOT NULL, width integer, height integer, "userId" integer NOT NULL, paid boolean, "invoiceActionState" public."InvoiceActionState", "invoiceId" integer ); -- -- Name: Upload_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Upload_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Upload_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Upload_id_seq" OWNED BY public."Upload".id; -- -- Name: UserNostrRelay; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."UserNostrRelay" ( "userId" integer NOT NULL, "nostrRelayAddr" text NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: UserSubTrust; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."UserSubTrust" ( "subName" public.citext NOT NULL, "userId" integer NOT NULL, "zapPostTrust" double precision DEFAULT 0 NOT NULL, "subZapPostTrust" double precision DEFAULT 0 NOT NULL, "zapCommentTrust" double precision DEFAULT 0 NOT NULL, "subZapCommentTrust" double precision DEFAULT 0 NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: UserSubscription; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."UserSubscription" ( "followerId" integer NOT NULL, "followeeId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "commentsSubscribedAt" timestamp(3) without time zone, "postsSubscribedAt" timestamp(3) without time zone, CONSTRAINT "UserSubscription_no_follow_self" CHECK (("followerId" <> "followeeId")) ); -- -- Name: VaultEntry; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."VaultEntry" ( id integer NOT NULL, key text NOT NULL, iv text NOT NULL, value text NOT NULL, "userId" integer NOT NULL, "walletId" integer, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: VaultEntry_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."VaultEntry_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: VaultEntry_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."VaultEntry_id_seq" OWNED BY public."VaultEntry".id; -- -- Name: Vote_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Vote_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Vote_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Vote_id_seq" OWNED BY public."ItemAct".id; -- -- Name: Wallet; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Wallet" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, label text, priority integer DEFAULT 0 NOT NULL, type public."WalletType" NOT NULL, wallet jsonb, enabled boolean DEFAULT true NOT NULL ); -- -- Name: WalletBlink; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."WalletBlink" ( id integer NOT NULL, "walletId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "apiKeyRecv" text, "currencyRecv" text ); -- -- Name: WalletBlink_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."WalletBlink_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: WalletBlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."WalletBlink_id_seq" OWNED BY public."WalletBlink".id; -- -- Name: WalletCLN; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."WalletCLN" ( id integer NOT NULL, "walletId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, socket text NOT NULL, rune text NOT NULL, cert text ); -- -- Name: WalletCLN_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."WalletCLN_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: WalletCLN_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."WalletCLN_id_seq" OWNED BY public."WalletCLN".id; -- -- Name: WalletLND; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."WalletLND" ( id integer NOT NULL, "walletId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, socket text NOT NULL, macaroon text NOT NULL, cert text ); -- -- Name: WalletLND_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."WalletLND_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: WalletLND_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."WalletLND_id_seq" OWNED BY public."WalletLND".id; -- -- Name: WalletLNbits; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."WalletLNbits" ( id integer NOT NULL, "walletId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, url text NOT NULL, "invoiceKey" text ); -- -- Name: WalletLNbits_int_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."WalletLNbits_int_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: WalletLNbits_int_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."WalletLNbits_int_seq" OWNED BY public."WalletLNbits".id; -- -- Name: WalletLightningAddress; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."WalletLightningAddress" ( id integer NOT NULL, "walletId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, address text NOT NULL ); -- -- Name: WalletLightningAddress_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."WalletLightningAddress_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: WalletLightningAddress_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."WalletLightningAddress_id_seq" OWNED BY public."WalletLightningAddress".id; -- -- Name: WalletLog; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."WalletLog" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, wallet public."WalletType" NOT NULL, level public."LogLevel" NOT NULL, message text NOT NULL, context jsonb, "invoiceId" integer, "withdrawalId" integer ); -- -- Name: WalletLog_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."WalletLog_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: WalletLog_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."WalletLog_id_seq" OWNED BY public."WalletLog".id; -- -- Name: WalletNWC; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."WalletNWC" ( id integer NOT NULL, "walletId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "nwcUrlRecv" text ); -- -- Name: WalletNWC_int_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."WalletNWC_int_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: WalletNWC_int_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."WalletNWC_int_seq" OWNED BY public."WalletNWC".id; -- -- Name: WalletPhoenixd; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."WalletPhoenixd" ( id integer NOT NULL, "walletId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, url text NOT NULL, "secondaryPassword" text ); -- -- Name: WalletPhoenixd_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."WalletPhoenixd_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: WalletPhoenixd_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."WalletPhoenixd_id_seq" OWNED BY public."WalletPhoenixd".id; -- -- Name: Wallet_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Wallet_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Wallet_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Wallet_id_seq" OWNED BY public."Wallet".id; -- -- Name: Withdrawl; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Withdrawl" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, hash text, bolt11 text, "msatsPaying" bigint NOT NULL, "msatsPaid" bigint, "msatsFeePaying" bigint NOT NULL, "msatsFeePaid" bigint, status public."WithdrawlStatus", "autoWithdraw" boolean DEFAULT false NOT NULL, "walletId" integer, preimage text ); -- -- Name: Withdrawl_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Withdrawl_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Withdrawl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Withdrawl_id_seq" OWNED BY public."Withdrawl".id; -- -- Name: _prisma_migrations; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public._prisma_migrations ( id character varying(36) NOT NULL, checksum character varying(64) NOT NULL, finished_at timestamp with time zone, migration_name character varying(255) NOT NULL, logs text, rolled_back_at timestamp with time zone, started_at timestamp with time zone DEFAULT now() NOT NULL, applied_steps_count integer DEFAULT 0 NOT NULL ); -- -- Name: accounts; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.accounts ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, user_id integer NOT NULL, provider_type text NOT NULL, provider_id text NOT NULL, provider_account_id text NOT NULL, refresh_token text, access_token text, access_token_expires text, id_token text, scope text, session_state text, token_type text, oauth_token text, oauth_token_secret text ); -- -- Name: accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public.accounts_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public.accounts_id_seq OWNED BY public.accounts.id; -- -- Name: all_days; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.all_days AS SELECT date_trunc('day'::text, timezone('America/Chicago'::text, '2021-06-01 00:00:00+00'::timestamp with time zone)) AS min, date_trunc('day'::text, timezone('America/Chicago'::text, (now() - '1 day'::interval))) AS max; -- -- Name: all_months; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.all_months AS SELECT date_trunc('month'::text, timezone('America/Chicago'::text, '2021-06-01 00:00:00+00'::timestamp with time zone)) AS min, date_trunc('month'::text, timezone('America/Chicago'::text, (now() - '1 mon'::interval))) AS max; -- -- Name: days; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.days AS WITH range_values AS ( SELECT date_trunc('day'::text, '2021-06-07 00:00:00'::timestamp without time zone) AS minval, date_trunc('day'::text, timezone('America/Chicago'::text, (now() - '1 day'::interval))) AS maxval ) SELECT generate_series(minval, maxval, '1 day'::interval) AS day FROM range_values; -- -- Name: hot_score_constants; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.hot_score_constants AS SELECT 10000.0 AS boost_per_vote, 1.0 AS vote_power, 1.1 AS vote_decay, 3 AS age_wait_hours, 0.25 AS comment_vote_scaler; -- -- Name: hot_score_view; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.hot_score_view AS SELECT "Item".id, CASE WHEN (("Item"."weightedVotes" - "Item"."weightedDownVotes") > (0)::double precision) THEN (((power(("Item"."weightedVotes" - "Item"."weightedDownVotes"), (hot_score_constants.vote_power)::double precision) + ("Item"."weightedComments" * (hot_score_constants.comment_vote_scaler)::double precision)) + ((("Item".boost)::numeric / hot_score_constants.boost_per_vote))::double precision) / (power(GREATEST((hot_score_constants.age_wait_hours)::numeric, (EXTRACT(epoch FROM (now() - ("Item".created_at)::timestamp with time zone)) / (3600)::numeric)), hot_score_constants.vote_decay))::double precision) ELSE ("Item"."weightedVotes" - "Item"."weightedDownVotes") END AS hot_score, CASE WHEN (("Item"."subWeightedVotes" - "Item"."subWeightedDownVotes") > (0)::double precision) THEN (((power(("Item"."subWeightedVotes" - "Item"."subWeightedDownVotes"), (hot_score_constants.vote_power)::double precision) + ("Item"."weightedComments" * (hot_score_constants.comment_vote_scaler)::double precision)) + ((("Item".boost)::numeric / hot_score_constants.boost_per_vote))::double precision) / (power(GREATEST((hot_score_constants.age_wait_hours)::numeric, (EXTRACT(epoch FROM (now() - ("Item".created_at)::timestamp with time zone)) / (3600)::numeric)), hot_score_constants.vote_decay))::double precision) ELSE ("Item"."subWeightedVotes" - "Item"."subWeightedDownVotes") END AS sub_hot_score FROM public."Item", public.hot_score_constants WHERE (("Item"."weightedVotes" > (0)::double precision) OR ("Item"."weightedDownVotes" > (0)::double precision) OR ("Item"."subWeightedVotes" > (0)::double precision) OR ("Item"."subWeightedDownVotes" > (0)::double precision) OR ("Item"."weightedComments" > (0)::double precision) OR ("Item".boost > 0)) WITH NO DATA; -- -- Name: item_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.item_growth_days AS SELECT (public.item_growth(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.item_growth(min, max, '1 day'::interval, 'day'::text)).comments AS comments, (public.item_growth(min, max, '1 day'::interval, 'day'::text)).jobs AS jobs, (public.item_growth(min, max, '1 day'::interval, 'day'::text)).posts AS posts, (public.item_growth(min, max, '1 day'::interval, 'day'::text)).territories AS territories, (public.item_growth(min, max, '1 day'::interval, 'day'::text)).zaps AS zaps FROM public.all_days WITH NO DATA; -- -- Name: last_24_hours; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.last_24_hours AS SELECT date_trunc('hour'::text, timezone('America/Chicago'::text, (now() - '24:00:00'::interval))) AS min, date_trunc('hour'::text, timezone('America/Chicago'::text, (now() - '01:00:00'::interval))) AS max; -- -- Name: item_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.item_growth_hours AS SELECT (public.item_growth(min, max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.item_growth(min, max, '01:00:00'::interval, 'hour'::text)).comments AS comments, (public.item_growth(min, max, '01:00:00'::interval, 'hour'::text)).jobs AS jobs, (public.item_growth(min, max, '01:00:00'::interval, 'hour'::text)).posts AS posts, (public.item_growth(min, max, '01:00:00'::interval, 'hour'::text)).territories AS territories, (public.item_growth(min, max, '01:00:00'::interval, 'hour'::text)).zaps AS zaps FROM public.last_24_hours WITH NO DATA; -- -- Name: item_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.item_growth_months AS SELECT (public.item_growth(min, max, '1 mon'::interval, 'month'::text)).t AS t, (public.item_growth(min, max, '1 mon'::interval, 'month'::text)).comments AS comments, (public.item_growth(min, max, '1 mon'::interval, 'month'::text)).jobs AS jobs, (public.item_growth(min, max, '1 mon'::interval, 'month'::text)).posts AS posts, (public.item_growth(min, max, '1 mon'::interval, 'month'::text)).territories AS territories, (public.item_growth(min, max, '1 mon'::interval, 'month'::text)).zaps AS zaps FROM public.all_months WITH NO DATA; -- -- Name: reg_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.reg_growth_days AS SELECT (public.reg_growth(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.reg_growth(min, max, '1 day'::interval, 'day'::text)).referrals AS referrals, (public.reg_growth(min, max, '1 day'::interval, 'day'::text)).organic AS organic FROM public.all_days WITH NO DATA; -- -- Name: reg_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.reg_growth_hours AS SELECT (public.reg_growth(min, max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.reg_growth(min, max, '01:00:00'::interval, 'hour'::text)).referrals AS referrals, (public.reg_growth(min, max, '01:00:00'::interval, 'hour'::text)).organic AS organic FROM public.last_24_hours WITH NO DATA; -- -- Name: reg_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.reg_growth_months AS SELECT (public.reg_growth(min, max, '1 mon'::interval, 'month'::text)).t AS t, (public.reg_growth(min, max, '1 mon'::interval, 'month'::text)).referrals AS referrals, (public.reg_growth(min, max, '1 mon'::interval, 'month'::text)).organic AS organic FROM public.all_months WITH NO DATA; -- -- Name: rewards_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.rewards_days AS SELECT (public.rewards(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.rewards(min, max, '1 day'::interval, 'day'::text)).total AS total, (public.rewards(min, max, '1 day'::interval, 'day'::text)).donations AS donations, (public.rewards(min, max, '1 day'::interval, 'day'::text)).fees AS fees, (public.rewards(min, max, '1 day'::interval, 'day'::text)).boost AS boost, (public.rewards(min, max, '1 day'::interval, 'day'::text)).jobs AS jobs, (public.rewards(min, max, '1 day'::interval, 'day'::text)).anons_stack AS anons_stack FROM public.all_days WITH NO DATA; -- -- Name: today; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.today AS SELECT date_trunc('day'::text, timezone('America/Chicago'::text, now())) AS min, date_trunc('day'::text, timezone('America/Chicago'::text, now())) AS max; -- -- Name: rewards_today; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.rewards_today AS SELECT (public.rewards(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.rewards(min, max, '1 day'::interval, 'day'::text)).total AS total, (public.rewards(min, max, '1 day'::interval, 'day'::text)).donations AS donations, (public.rewards(min, max, '1 day'::interval, 'day'::text)).fees AS fees, (public.rewards(min, max, '1 day'::interval, 'day'::text)).boost AS boost, (public.rewards(min, max, '1 day'::interval, 'day'::text)).jobs AS jobs, (public.rewards(min, max, '1 day'::interval, 'day'::text)).anons_stack AS anons_stack FROM public.today WITH NO DATA; -- -- Name: sat_rank_tender_view; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.sat_rank_tender_view AS SELECT id, row_number() OVER (ORDER BY (((GREATEST(abs(("weightedVotes" - "weightedDownVotes")), power(abs(("weightedVotes" - "weightedDownVotes")), (1.2)::double precision)) + ("weightedComments" / (2)::double precision)) / power(GREATEST((3)::double precision, (date_part('epoch'::text, (public.now_utc() - created_at)) / (3600)::double precision)), (1.3)::double precision)) + (((boost)::double precision / (5000)::double precision) / power(((date_part('epoch'::text, (public.now_utc() - created_at)) / (3600)::double precision) + (2)::double precision), (2.6)::double precision))) DESC NULLS LAST, id DESC) AS rank FROM public."Item" WHERE (("parentId" IS NULL) AND (NOT bio) AND ("pinId" IS NULL) AND ("deletedAt" IS NULL) AND ("weightedVotes" > "weightedDownVotes")) ORDER BY (((GREATEST(abs(("weightedVotes" - "weightedDownVotes")), power(abs(("weightedVotes" - "weightedDownVotes")), (1.2)::double precision)) + ("weightedComments" / (2)::double precision)) / power(GREATEST((3)::double precision, (date_part('epoch'::text, (public.now_utc() - created_at)) / (3600)::double precision)), (1.3)::double precision)) + (((boost)::double precision / (5000)::double precision) / power(((date_part('epoch'::text, (public.now_utc() - created_at)) / (3600)::double precision) + (2)::double precision), (2.6)::double precision))) DESC NULLS LAST, id DESC LIMIT 2100 WITH NO DATA; -- -- Name: sat_rank_wwm_view; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.sat_rank_wwm_view AS SELECT id, row_number() OVER (ORDER BY (((GREATEST("weightedVotes", power("weightedVotes", (1.2)::double precision)) + ("weightedComments" / (2)::double precision)) / power(GREATEST((3)::double precision, (date_part('epoch'::text, (public.now_utc() - created_at)) / (3600)::double precision)), (1.3)::double precision)) + (((boost)::double precision / (5000)::double precision) / power(((date_part('epoch'::text, (public.now_utc() - created_at)) / (3600)::double precision) + (2)::double precision), (2.6)::double precision))) DESC NULLS LAST, id DESC) AS rank FROM public."Item" WHERE (("parentId" IS NULL) AND (NOT bio) AND ("pinId" IS NULL) AND ("deletedAt" IS NULL) AND ("weightedVotes" > (0)::double precision)) ORDER BY (((GREATEST("weightedVotes", power("weightedVotes", (1.2)::double precision)) + ("weightedComments" / (2)::double precision)) / power(GREATEST((3)::double precision, (date_part('epoch'::text, (public.now_utc() - created_at)) / (3600)::double precision)), (1.3)::double precision)) + (((boost)::double precision / (5000)::double precision) / power(((date_part('epoch'::text, (public.now_utc() - created_at)) / (3600)::double precision) + (2)::double precision), (2.6)::double precision))) DESC NULLS LAST, id DESC LIMIT 2100 WITH NO DATA; -- -- Name: sessions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.sessions ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, user_id integer NOT NULL, expires timestamp(3) without time zone NOT NULL, session_token text NOT NULL ); -- -- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public.sessions_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public.sessions_id_seq OWNED BY public.sessions.id; -- -- Name: spender_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spender_growth_days AS SELECT (public.spender_growth(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.spender_growth(min, max, '1 day'::interval, 'day'::text))."userId" AS "userId", (public.spender_growth(min, max, '1 day'::interval, 'day'::text)).type AS type FROM public.all_days WITH NO DATA; -- -- Name: spender_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spender_growth_hours AS SELECT (public.spender_growth(min, max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.spender_growth(min, max, '01:00:00'::interval, 'hour'::text))."userId" AS "userId", (public.spender_growth(min, max, '01:00:00'::interval, 'hour'::text)).type AS type FROM public.last_24_hours WITH NO DATA; -- -- Name: spender_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spender_growth_months AS SELECT (public.spender_growth(min, max, '1 mon'::interval, 'month'::text)).t AS t, (public.spender_growth(min, max, '1 mon'::interval, 'month'::text))."userId" AS "userId", (public.spender_growth(min, max, '1 mon'::interval, 'month'::text)).type AS type FROM public.all_months WITH NO DATA; -- -- Name: spending_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spending_growth_days AS SELECT (public.spending_growth(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.spending_growth(min, max, '1 day'::interval, 'day'::text)).jobs AS jobs, (public.spending_growth(min, max, '1 day'::interval, 'day'::text)).boost AS boost, (public.spending_growth(min, max, '1 day'::interval, 'day'::text)).fees AS fees, (public.spending_growth(min, max, '1 day'::interval, 'day'::text)).tips AS tips, (public.spending_growth(min, max, '1 day'::interval, 'day'::text)).donations AS donations, (public.spending_growth(min, max, '1 day'::interval, 'day'::text)).territories AS territories FROM public.all_days WITH NO DATA; -- -- Name: spending_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spending_growth_hours AS SELECT (public.spending_growth(min, max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.spending_growth(min, max, '01:00:00'::interval, 'hour'::text)).jobs AS jobs, (public.spending_growth(min, max, '01:00:00'::interval, 'hour'::text)).boost AS boost, (public.spending_growth(min, max, '01:00:00'::interval, 'hour'::text)).fees AS fees, (public.spending_growth(min, max, '01:00:00'::interval, 'hour'::text)).tips AS tips, (public.spending_growth(min, max, '01:00:00'::interval, 'hour'::text)).donations AS donations, (public.spending_growth(min, max, '01:00:00'::interval, 'hour'::text)).territories AS territories FROM public.last_24_hours WITH NO DATA; -- -- Name: spending_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spending_growth_months AS SELECT (public.spending_growth(min, max, '1 mon'::interval, 'month'::text)).t AS t, (public.spending_growth(min, max, '1 mon'::interval, 'month'::text)).jobs AS jobs, (public.spending_growth(min, max, '1 mon'::interval, 'month'::text)).boost AS boost, (public.spending_growth(min, max, '1 mon'::interval, 'month'::text)).fees AS fees, (public.spending_growth(min, max, '1 mon'::interval, 'month'::text)).tips AS tips, (public.spending_growth(min, max, '1 mon'::interval, 'month'::text)).donations AS donations, (public.spending_growth(min, max, '1 mon'::interval, 'month'::text)).territories AS territories FROM public.all_months WITH NO DATA; -- -- Name: stackers_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stackers_growth_days AS SELECT (public.stackers_growth(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.stackers_growth(min, max, '1 day'::interval, 'day'::text))."userId" AS "userId", (public.stackers_growth(min, max, '1 day'::interval, 'day'::text)).type AS type FROM public.all_days WITH NO DATA; -- -- Name: stackers_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stackers_growth_hours AS SELECT (public.stackers_growth(min, max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.stackers_growth(min, max, '01:00:00'::interval, 'hour'::text))."userId" AS "userId", (public.stackers_growth(min, max, '01:00:00'::interval, 'hour'::text)).type AS type FROM public.last_24_hours WITH NO DATA; -- -- Name: stackers_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stackers_growth_months AS SELECT (public.stackers_growth(min, max, '1 mon'::interval, 'month'::text)).t AS t, (public.stackers_growth(min, max, '1 mon'::interval, 'month'::text))."userId" AS "userId", (public.stackers_growth(min, max, '1 mon'::interval, 'month'::text)).type AS type FROM public.all_months WITH NO DATA; -- -- Name: stacking_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stacking_growth_days AS SELECT (public.stacking_growth(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.stacking_growth(min, max, '1 day'::interval, 'day'::text)).rewards AS rewards, (public.stacking_growth(min, max, '1 day'::interval, 'day'::text)).posts AS posts, (public.stacking_growth(min, max, '1 day'::interval, 'day'::text)).comments AS comments, (public.stacking_growth(min, max, '1 day'::interval, 'day'::text)).referrals AS referrals, (public.stacking_growth(min, max, '1 day'::interval, 'day'::text)).territories AS territories FROM public.all_days WITH NO DATA; -- -- Name: stacking_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stacking_growth_hours AS SELECT (public.stacking_growth(min, max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.stacking_growth(min, max, '01:00:00'::interval, 'hour'::text)).rewards AS rewards, (public.stacking_growth(min, max, '01:00:00'::interval, 'hour'::text)).posts AS posts, (public.stacking_growth(min, max, '01:00:00'::interval, 'hour'::text)).comments AS comments, (public.stacking_growth(min, max, '01:00:00'::interval, 'hour'::text)).referrals AS referrals, (public.stacking_growth(min, max, '01:00:00'::interval, 'hour'::text)).territories AS territories FROM public.last_24_hours WITH NO DATA; -- -- Name: stacking_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stacking_growth_months AS SELECT (public.stacking_growth(min, max, '1 mon'::interval, 'month'::text)).t AS t, (public.stacking_growth(min, max, '1 mon'::interval, 'month'::text)).rewards AS rewards, (public.stacking_growth(min, max, '1 mon'::interval, 'month'::text)).posts AS posts, (public.stacking_growth(min, max, '1 mon'::interval, 'month'::text)).comments AS comments, (public.stacking_growth(min, max, '1 mon'::interval, 'month'::text)).referrals AS referrals, (public.stacking_growth(min, max, '1 mon'::interval, 'month'::text)).territories AS territories FROM public.all_months WITH NO DATA; -- -- Name: sub_stats_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.sub_stats_days AS SELECT (public.sub_stats(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.sub_stats(min, max, '1 day'::interval, 'day'::text)).sub_name AS sub_name, (public.sub_stats(min, max, '1 day'::interval, 'day'::text)).comments AS comments, (public.sub_stats(min, max, '1 day'::interval, 'day'::text)).posts AS posts, (public.sub_stats(min, max, '1 day'::interval, 'day'::text)).msats_revenue AS msats_revenue, (public.sub_stats(min, max, '1 day'::interval, 'day'::text)).msats_stacked AS msats_stacked, (public.sub_stats(min, max, '1 day'::interval, 'day'::text)).msats_spent AS msats_spent FROM public.all_days WITH NO DATA; -- -- Name: sub_stats_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.sub_stats_hours AS SELECT (public.sub_stats(min, max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.sub_stats(min, max, '01:00:00'::interval, 'hour'::text)).sub_name AS sub_name, (public.sub_stats(min, max, '01:00:00'::interval, 'hour'::text)).comments AS comments, (public.sub_stats(min, max, '01:00:00'::interval, 'hour'::text)).posts AS posts, (public.sub_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_revenue AS msats_revenue, (public.sub_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_stacked AS msats_stacked, (public.sub_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_spent AS msats_spent FROM public.last_24_hours WITH NO DATA; -- -- Name: sub_stats_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.sub_stats_months AS SELECT (public.sub_stats(min, max, '1 mon'::interval, 'month'::text)).t AS t, (public.sub_stats(min, max, '1 mon'::interval, 'month'::text)).sub_name AS sub_name, (public.sub_stats(min, max, '1 mon'::interval, 'month'::text)).comments AS comments, (public.sub_stats(min, max, '1 mon'::interval, 'month'::text)).posts AS posts, (public.sub_stats(min, max, '1 mon'::interval, 'month'::text)).msats_revenue AS msats_revenue, (public.sub_stats(min, max, '1 mon'::interval, 'month'::text)).msats_stacked AS msats_stacked, (public.sub_stats(min, max, '1 mon'::interval, 'month'::text)).msats_spent AS msats_spent FROM public.all_months WITH NO DATA; -- -- Name: user_stats_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.user_stats_days AS SELECT (public.user_stats(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).id AS id, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).comments AS comments, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).posts AS posts, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).territories AS territories, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).referrals AS referrals, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).one_day_referrals AS one_day_referrals, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).msats_tipped AS msats_tipped, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).msats_rewards AS msats_rewards, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).msats_referrals AS msats_referrals, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).msats_one_day_referrals AS msats_one_day_referrals, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).msats_revenue AS msats_revenue, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).msats_stacked AS msats_stacked, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).msats_fees AS msats_fees, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).msats_donated AS msats_donated, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).msats_billing AS msats_billing, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).msats_zaps AS msats_zaps, (public.user_stats(min, max, '1 day'::interval, 'day'::text)).msats_spent AS msats_spent FROM public.all_days WITH NO DATA; -- -- Name: user_stats_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.user_stats_hours AS SELECT (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).id AS id, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).comments AS comments, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).posts AS posts, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).territories AS territories, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).referrals AS referrals, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).one_day_referrals AS one_day_referrals, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_tipped AS msats_tipped, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_rewards AS msats_rewards, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_referrals AS msats_referrals, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_one_day_referrals AS msats_one_day_referrals, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_revenue AS msats_revenue, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_stacked AS msats_stacked, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_fees AS msats_fees, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_donated AS msats_donated, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_billing AS msats_billing, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_zaps AS msats_zaps, (public.user_stats(min, max, '01:00:00'::interval, 'hour'::text)).msats_spent AS msats_spent FROM public.last_24_hours WITH NO DATA; -- -- Name: user_stats_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.user_stats_months AS SELECT (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).t AS t, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).id AS id, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).comments AS comments, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).posts AS posts, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).territories AS territories, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).referrals AS referrals, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).one_day_referrals AS one_day_referrals, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).msats_tipped AS msats_tipped, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).msats_rewards AS msats_rewards, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).msats_referrals AS msats_referrals, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).msats_one_day_referrals AS msats_one_day_referrals, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).msats_revenue AS msats_revenue, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).msats_stacked AS msats_stacked, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).msats_fees AS msats_fees, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).msats_donated AS msats_donated, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).msats_billing AS msats_billing, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).msats_zaps AS msats_zaps, (public.user_stats(min, max, '1 mon'::interval, 'month'::text)).msats_spent AS msats_spent FROM public.all_months WITH NO DATA; -- -- Name: user_values_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.user_values_days AS SELECT (public.user_values(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.user_values(min, max, '1 day'::interval, 'day'::text)).id AS id, (public.user_values(min, max, '1 day'::interval, 'day'::text)).proportion AS proportion FROM public.all_days WITH NO DATA; -- -- Name: user_values_today; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.user_values_today AS SELECT (public.user_values(min, max, '1 day'::interval, 'day'::text)).t AS t, (public.user_values(min, max, '1 day'::interval, 'day'::text)).id AS id, (public.user_values(min, max, '1 day'::interval, 'day'::text)).proportion AS proportion FROM public.today WITH NO DATA; -- -- Name: users; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.users ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, name public.citext, email text, email_verified timestamp(3) without time zone, image text, msats bigint DEFAULT 0 NOT NULL, "freeComments" integer DEFAULT 5 NOT NULL, "freePosts" integer DEFAULT 2 NOT NULL, "checkedNotesAt" timestamp(3) without time zone, pubkey text, "tipDefault" integer DEFAULT 100 NOT NULL, "bioId" integer, "inviteId" text, "tipPopover" boolean DEFAULT false NOT NULL, "upvotePopover" boolean DEFAULT false NOT NULL, trust double precision DEFAULT 0 NOT NULL, "lastSeenAt" timestamp(3) without time zone, "stackedMsats" bigint DEFAULT 0 NOT NULL, "noteAllDescendants" boolean DEFAULT true NOT NULL, "noteDeposits" boolean DEFAULT true NOT NULL, "noteEarning" boolean DEFAULT true NOT NULL, "noteInvites" boolean DEFAULT true NOT NULL, "noteItemSats" boolean DEFAULT true NOT NULL, "noteMentions" boolean DEFAULT true NOT NULL, "lastCheckedJobs" timestamp(3) without time zone, "noteJobIndicator" boolean DEFAULT true NOT NULL, "photoId" integer, "upvoteTrust" double precision DEFAULT 0 NOT NULL, "hideInvoiceDesc" boolean DEFAULT false NOT NULL, "wildWestMode" boolean DEFAULT false NOT NULL, "greeterMode" boolean DEFAULT false NOT NULL, "fiatCurrency" text DEFAULT 'USD'::text NOT NULL, "hideFromTopUsers" boolean DEFAULT false NOT NULL, "turboTipping" boolean DEFAULT false NOT NULL, "referrerId" integer, "nostrPubkey" text, "slashtagId" text, "noteCowboyHat" boolean DEFAULT true NOT NULL, streak integer, subs text[], "hideCowboyHat" boolean DEFAULT false NOT NULL, "nostrAuthPubkey" text, "imgproxyOnly" boolean DEFAULT false NOT NULL, "hideBookmarks" boolean DEFAULT false NOT NULL, "hideWelcomeBanner" boolean DEFAULT false NOT NULL, "noteForwardedSats" boolean DEFAULT true NOT NULL, "hideWalletBalance" boolean DEFAULT false NOT NULL, "hideIsContributor" boolean DEFAULT false NOT NULL, diagnostics boolean DEFAULT false NOT NULL, "nostrCrossposting" boolean DEFAULT false NOT NULL, "withdrawMaxFeeDefault" integer DEFAULT 10 NOT NULL, "foundNotesAt" timestamp(3) without time zone, "autoDropBolt11s" boolean DEFAULT false NOT NULL, "autoWithdrawMaxFeePercent" double precision, "autoWithdrawThreshold" integer, "lnAddr" text, "nsfwMode" boolean DEFAULT false NOT NULL, "hideGithub" boolean DEFAULT true NOT NULL, "hideNostr" boolean DEFAULT true NOT NULL, "hideTwitter" boolean DEFAULT true NOT NULL, "githubId" text, "twitterId" text, "apiKeyEnabled" boolean DEFAULT false NOT NULL, "noReferralLinks" boolean DEFAULT false NOT NULL, "zapUndos" integer, "noteWithdrawals" boolean DEFAULT true NOT NULL, "apiKeyHash" character(64), "emailHash" text, "noteItemMentions" boolean DEFAULT true NOT NULL, "tipRandomMax" integer, "tipRandomMin" integer, "satsFilter" integer DEFAULT 10 NOT NULL, "disableFreebies" boolean, "showImagesAndVideos" boolean DEFAULT true NOT NULL, "gunStreak" integer, "horseStreak" integer, "autoWithdrawMaxFeeTotal" integer, "vaultKeyHash" text DEFAULT ''::text NOT NULL, "walletsUpdatedAt" timestamp(3) without time zone, "proxyReceive" boolean DEFAULT true NOT NULL, "directReceive" boolean DEFAULT true NOT NULL, mcredits bigint DEFAULT 0 NOT NULL, "stackedMcredits" bigint DEFAULT 0 NOT NULL, "receiveCreditsBelowSats" integer DEFAULT 10 NOT NULL, "sendCreditsBelowSats" integer DEFAULT 10 NOT NULL ); -- -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public.users_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; -- -- Name: verification_requests; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.verification_requests ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, identifier text NOT NULL, token text NOT NULL, expires timestamp(3) without time zone NOT NULL, attempts integer DEFAULT 0 NOT NULL ); -- -- Name: verification_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public.verification_requests_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: verification_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public.verification_requests_id_seq OWNED BY public.verification_requests.id; -- -- Name: zap_rank_constants; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.zap_rank_constants AS SELECT 5000.0 AS boost_per_vote, 1.2 AS vote_power, 1.3 AS vote_decay, 3.0 AS age_wait_hours, 0.5 AS comment_scaler, 1.2 AS boost_power, 1.6 AS boost_decay, 2100 AS row_limit; -- -- Name: zap_rank_personal_constants; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.zap_rank_personal_constants AS SELECT 10000.0 AS boost_per_vote, 1.2 AS vote_power, 1.3 AS vote_decay, 3.0 AS age_wait_hours, 0.5 AS comment_scaler, 1.2 AS boost_power, 1.6 AS boost_decay, 616 AS global_viewer_id, '7 days'::interval AS item_age_bound, '7 days'::interval AS user_last_seen_bound, 0.9 AS max_personal_viewer_vote_ratio, 0.1 AS min_viewer_votes; -- -- Name: zap_rank_personal_view; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.zap_rank_personal_view AS WITH item_votes AS ( SELECT "Item".id, "Item"."parentId", "Item".boost, "Item".created_at, "Item"."weightedComments", "ItemAct"."userId" AS "voterId", log((sum("ItemAct".msats) FILTER (WHERE ("ItemAct".act = ANY (ARRAY['TIP'::public."ItemActType", 'FEE'::public."ItemActType"]))) / 1000.0)) AS vote, GREATEST(log((sum("ItemAct".msats) FILTER (WHERE ("ItemAct".act = 'DONT_LIKE_THIS'::public."ItemActType")) / 1000.0)), (0)::numeric) AS "downVote" FROM ((public."Item" CROSS JOIN public.zap_rank_personal_constants) JOIN public."ItemAct" ON (("ItemAct"."itemId" = "Item".id))) WHERE ((("ItemAct"."invoiceActionState" IS NULL) OR ("ItemAct"."invoiceActionState" = 'PAID'::public."InvoiceActionState")) AND ((("ItemAct"."userId" <> "Item"."userId") AND ("ItemAct".act = ANY (ARRAY['TIP'::public."ItemActType", 'FEE'::public."ItemActType", 'DONT_LIKE_THIS'::public."ItemActType"]))) OR (("ItemAct".act = 'BOOST'::public."ItemActType") AND ("ItemAct"."userId" = "Item"."userId"))) AND ("Item".created_at >= (public.now_utc() - zap_rank_personal_constants.item_age_bound))) GROUP BY "Item".id, "Item"."parentId", "Item".boost, "Item".created_at, "Item"."weightedComments", "ItemAct"."userId" HAVING (sum("ItemAct".msats) > (1000)::numeric) ), viewer_votes AS ( SELECT item_votes.id, item_votes."parentId", item_votes.boost, item_votes.created_at, item_votes."weightedComments", "Arc"."fromId" AS "viewerId", (GREATEST("Arc"."zapTrust", g."zapTrust", (0)::double precision) * (item_votes.vote)::double precision) AS "weightedVote", (GREATEST("Arc"."zapTrust", g."zapTrust", (0)::double precision) * (item_votes."downVote")::double precision) AS "weightedDownVote" FROM (((item_votes CROSS JOIN public.zap_rank_personal_constants) LEFT JOIN public."Arc" ON (("Arc"."toId" = item_votes."voterId"))) LEFT JOIN public."Arc" g ON (((g."fromId" = zap_rank_personal_constants.global_viewer_id) AND (g."toId" = item_votes."voterId") AND (("Arc"."zapTrust" IS NOT NULL) OR (g."zapTrust" IS NOT NULL))))) ), viewer_weighted_votes AS ( SELECT viewer_votes.id, viewer_votes."parentId", viewer_votes.boost, viewer_votes.created_at, viewer_votes."viewerId", viewer_votes."weightedComments", sum(viewer_votes."weightedVote") AS "weightedVotes", sum(viewer_votes."weightedDownVote") AS "weightedDownVotes" FROM viewer_votes GROUP BY viewer_votes.id, viewer_votes."parentId", viewer_votes.boost, viewer_votes.created_at, viewer_votes."viewerId", viewer_votes."weightedComments" ), viewer_zaprank AS ( SELECT l.id, l."parentId", l.boost, l.created_at, l."viewerId", l."weightedComments", GREATEST(l."weightedVotes", g."weightedVotes") AS "weightedVotes", GREATEST(l."weightedDownVotes", g."weightedDownVotes") AS "weightedDownVotes" FROM (((viewer_weighted_votes l CROSS JOIN public.zap_rank_personal_constants) JOIN public.users ON ((users.id = l."viewerId"))) JOIN viewer_weighted_votes g ON (((l.id = g.id) AND (g."viewerId" = zap_rank_personal_constants.global_viewer_id)))) WHERE (((l."weightedVotes" > (zap_rank_personal_constants.min_viewer_votes)::double precision) AND ((g."weightedVotes" / l."weightedVotes") <= (zap_rank_personal_constants.max_personal_viewer_vote_ratio)::double precision) AND (users."lastSeenAt" >= (public.now_utc() - zap_rank_personal_constants.user_last_seen_bound))) OR (l."viewerId" = zap_rank_personal_constants.global_viewer_id)) GROUP BY l.id, l."parentId", l.boost, l.created_at, l."viewerId", l."weightedVotes", l."weightedComments", g."weightedVotes", l."weightedDownVotes", g."weightedDownVotes", zap_rank_personal_constants.min_viewer_votes HAVING ((GREATEST(l."weightedVotes", g."weightedVotes") > (zap_rank_personal_constants.min_viewer_votes)::double precision) OR (l.boost > 0)) ), viewer_fractions_zaprank AS ( SELECT z_1.id, z_1."parentId", z_1.boost, z_1.created_at, z_1."viewerId", z_1."weightedComments", z_1."weightedVotes", z_1."weightedDownVotes", ( CASE WHEN ((z_1."weightedVotes" - z_1."weightedDownVotes") > (0)::double precision) THEN GREATEST((z_1."weightedVotes" - z_1."weightedDownVotes"), power((z_1."weightedVotes" - z_1."weightedDownVotes"), (zap_rank_personal_constants.vote_power)::double precision)) ELSE (z_1."weightedVotes" - z_1."weightedDownVotes") END + (z_1."weightedComments" * ( CASE WHEN (z_1."parentId" IS NULL) THEN zap_rank_personal_constants.comment_scaler ELSE (0)::numeric END)::double precision)) AS tf_numerator, power(GREATEST(zap_rank_personal_constants.age_wait_hours, (EXTRACT(epoch FROM (public.now_utc() - z_1.created_at)) / (3600)::numeric)), zap_rank_personal_constants.vote_decay) AS decay_denominator, (power(((z_1.boost)::numeric / zap_rank_personal_constants.boost_per_vote), zap_rank_personal_constants.boost_power) / power(GREATEST(zap_rank_personal_constants.age_wait_hours, (EXTRACT(epoch FROM (public.now_utc() - z_1.created_at)) / (3600)::numeric)), zap_rank_personal_constants.boost_decay)) AS boost_addend FROM viewer_zaprank z_1, public.zap_rank_personal_constants ) SELECT id, "parentId", "viewerId", ((COALESCE(tf_numerator, (0)::double precision) / (decay_denominator)::double precision) + (boost_addend)::double precision) AS tf_hot_score, COALESCE(tf_numerator, (0)::double precision) AS tf_top_score FROM viewer_fractions_zaprank z WHERE ((tf_numerator > (0)::double precision) OR (boost_addend > (0)::numeric)) WITH NO DATA; -- -- Name: zap_rank_tender_view; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.zap_rank_tender_view AS SELECT "Item".id, rank() OVER (ORDER BY (((GREATEST(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), power(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), (zap_rank_constants.vote_power)::double precision)) + ("Item"."weightedComments" * (zap_rank_constants.comment_scaler)::double precision)) / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.vote_decay)::double precision)) + ((power((("Item".boost)::numeric / zap_rank_constants.boost_per_vote), zap_rank_constants.boost_power))::double precision / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.boost_decay)::double precision))) DESC NULLS LAST, "Item".id DESC) AS rank FROM public."Item", public.zap_rank_constants WHERE (("Item"."parentId" IS NULL) AND (NOT "Item".bio) AND ("Item"."pinId" IS NULL) AND ("Item"."deletedAt" IS NULL) AND (("Item"."weightedVotes" > "Item"."weightedDownVotes") OR ("Item".boost > 0))) ORDER BY (rank() OVER (ORDER BY (((GREATEST(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), power(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), (zap_rank_constants.vote_power)::double precision)) + ("Item"."weightedComments" * (zap_rank_constants.comment_scaler)::double precision)) / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.vote_decay)::double precision)) + ((power((("Item".boost)::numeric / zap_rank_constants.boost_per_vote), zap_rank_constants.boost_power))::double precision / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.boost_decay)::double precision))) DESC NULLS LAST, "Item".id DESC)) LIMIT ( SELECT zap_rank_constants_1.row_limit FROM public.zap_rank_constants zap_rank_constants_1) WITH NO DATA; -- -- Name: zap_rank_wwm_view; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.zap_rank_wwm_view AS SELECT "Item".id, rank() OVER (ORDER BY (((GREATEST("Item"."weightedVotes", power("Item"."weightedVotes", (zap_rank_constants.vote_power)::double precision)) + ("Item"."weightedComments" * (zap_rank_constants.comment_scaler)::double precision)) / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.vote_decay)::double precision)) + ((power((("Item".boost)::numeric / zap_rank_constants.boost_per_vote), zap_rank_constants.boost_power))::double precision / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.boost_decay)::double precision))) DESC NULLS LAST, "Item".id DESC) AS rank FROM public."Item", public.zap_rank_constants WHERE (("Item"."parentId" IS NULL) AND (NOT "Item".bio) AND ("Item"."pinId" IS NULL) AND ("Item"."deletedAt" IS NULL) AND (("Item"."weightedVotes" > (0)::double precision) OR ("Item".boost > 0))) ORDER BY (rank() OVER (ORDER BY (((GREATEST("Item"."weightedVotes", power("Item"."weightedVotes", (zap_rank_constants.vote_power)::double precision)) + ("Item"."weightedComments" * (zap_rank_constants.comment_scaler)::double precision)) / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.vote_decay)::double precision)) + ((power((("Item".boost)::numeric / zap_rank_constants.boost_per_vote), zap_rank_constants.boost_power))::double precision / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.boost_decay)::double precision))) DESC NULLS LAST, "Item".id DESC)) LIMIT ( SELECT zap_rank_constants_1.row_limit FROM public.zap_rank_constants zap_rank_constants_1) WITH NO DATA; -- -- Name: AutoSocialPost id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."AutoSocialPost" ALTER COLUMN id SET DEFAULT nextval('public."AutoSocialPost_id_seq"'::regclass); -- -- Name: DirectPayment id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."DirectPayment" ALTER COLUMN id SET DEFAULT nextval('public."DirectPayment_id_seq"'::regclass); -- -- Name: Donation id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Donation" ALTER COLUMN id SET DEFAULT nextval('public."Donation_id_seq"'::regclass); -- -- Name: Earn id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Earn" ALTER COLUMN id SET DEFAULT nextval('public."Earn_id_seq"'::regclass); -- -- Name: Invoice id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Invoice" ALTER COLUMN id SET DEFAULT nextval('public."Invoice_id_seq"'::regclass); -- -- Name: InvoiceForward id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."InvoiceForward" ALTER COLUMN id SET DEFAULT nextval('public."InvoiceForward_id_seq"'::regclass); -- -- Name: Item id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ALTER COLUMN id SET DEFAULT nextval('public."Item_id_seq"'::regclass); -- -- Name: ItemAct id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemAct" ALTER COLUMN id SET DEFAULT nextval('public."Vote_id_seq"'::regclass); -- -- Name: ItemForward id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemForward" ALTER COLUMN id SET DEFAULT nextval('public."ItemForward_id_seq"'::regclass); -- -- Name: ItemMention id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemMention" ALTER COLUMN id SET DEFAULT nextval('public."ItemMention_id_seq"'::regclass); -- -- Name: ItemUserAgg id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemUserAgg" ALTER COLUMN id SET DEFAULT nextval('public."ItemUserAgg_id_seq"'::regclass); -- -- Name: LnAuth id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."LnAuth" ALTER COLUMN id SET DEFAULT nextval('public."LnAuth_id_seq"'::regclass); -- -- Name: LnWith id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."LnWith" ALTER COLUMN id SET DEFAULT nextval('public."LnWith_id_seq"'::regclass); -- -- Name: Log id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Log" ALTER COLUMN id SET DEFAULT nextval('public."Log_id_seq"'::regclass); -- -- Name: Mention id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mention" ALTER COLUMN id SET DEFAULT nextval('public."Mention_id_seq"'::regclass); -- -- Name: Message id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Message" ALTER COLUMN id SET DEFAULT nextval('public."Message_id_seq"'::regclass); -- -- Name: OFAC id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."OFAC" ALTER COLUMN id SET DEFAULT nextval('public."OFAC_id_seq"'::regclass); -- -- Name: OneDayReferral id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."OneDayReferral" ALTER COLUMN id SET DEFAULT nextval('public."OneDayReferral_id_seq"'::regclass); -- -- Name: Pin id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Pin" ALTER COLUMN id SET DEFAULT nextval('public."Pin_id_seq"'::regclass); -- -- Name: PollBlindVote id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollBlindVote" ALTER COLUMN id SET DEFAULT nextval('public."PollBlindVote_id_seq"'::regclass); -- -- Name: PollOption id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollOption" ALTER COLUMN id SET DEFAULT nextval('public."PollOption_id_seq"'::regclass); -- -- Name: PollVote id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollVote" ALTER COLUMN id SET DEFAULT nextval('public."PollVote_id_seq"'::regclass); -- -- Name: PushSubscription id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PushSubscription" ALTER COLUMN id SET DEFAULT nextval('public."PushSubscription_id_seq"'::regclass); -- -- Name: ReferralAct id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ReferralAct" ALTER COLUMN id SET DEFAULT nextval('public."ReferralAct_id_seq"'::regclass); -- -- Name: Reminder id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Reminder" ALTER COLUMN id SET DEFAULT nextval('public."Reminder_id_seq"'::regclass); -- -- Name: Reply id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Reply" ALTER COLUMN id SET DEFAULT nextval('public."Reply_id_seq"'::regclass); -- -- Name: Snl id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Snl" ALTER COLUMN id SET DEFAULT nextval('public."Snl_id_seq"'::regclass); -- -- Name: Streak id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Streak" ALTER COLUMN id SET DEFAULT nextval('public."Streak_id_seq"'::regclass); -- -- Name: SubAct id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubAct" ALTER COLUMN id SET DEFAULT nextval('public."SubAct_id_seq"'::regclass); -- -- Name: TerritoryTransfer id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."TerritoryTransfer" ALTER COLUMN id SET DEFAULT nextval('public."TerritoryTransfer_id_seq"'::regclass); -- -- Name: Upload id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Upload" ALTER COLUMN id SET DEFAULT nextval('public."Upload_id_seq"'::regclass); -- -- Name: VaultEntry id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."VaultEntry" ALTER COLUMN id SET DEFAULT nextval('public."VaultEntry_id_seq"'::regclass); -- -- Name: Wallet id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Wallet" ALTER COLUMN id SET DEFAULT nextval('public."Wallet_id_seq"'::regclass); -- -- Name: WalletBlink id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletBlink" ALTER COLUMN id SET DEFAULT nextval('public."WalletBlink_id_seq"'::regclass); -- -- Name: WalletCLN id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletCLN" ALTER COLUMN id SET DEFAULT nextval('public."WalletCLN_id_seq"'::regclass); -- -- Name: WalletLND id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLND" ALTER COLUMN id SET DEFAULT nextval('public."WalletLND_id_seq"'::regclass); -- -- Name: WalletLNbits id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLNbits" ALTER COLUMN id SET DEFAULT nextval('public."WalletLNbits_int_seq"'::regclass); -- -- Name: WalletLightningAddress id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLightningAddress" ALTER COLUMN id SET DEFAULT nextval('public."WalletLightningAddress_id_seq"'::regclass); -- -- Name: WalletLog id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLog" ALTER COLUMN id SET DEFAULT nextval('public."WalletLog_id_seq"'::regclass); -- -- Name: WalletNWC id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletNWC" ALTER COLUMN id SET DEFAULT nextval('public."WalletNWC_int_seq"'::regclass); -- -- Name: WalletPhoenixd id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletPhoenixd" ALTER COLUMN id SET DEFAULT nextval('public."WalletPhoenixd_id_seq"'::regclass); -- -- Name: Withdrawl id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Withdrawl" ALTER COLUMN id SET DEFAULT nextval('public."Withdrawl_id_seq"'::regclass); -- -- Name: accounts id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public.accounts ALTER COLUMN id SET DEFAULT nextval('public.accounts_id_seq'::regclass); -- -- Name: sessions id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public.sessions ALTER COLUMN id SET DEFAULT nextval('public.sessions_id_seq'::regclass); -- -- Name: users id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); -- -- Name: verification_requests id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public.verification_requests ALTER COLUMN id SET DEFAULT nextval('public.verification_requests_id_seq'::regclass); -- -- Data for Name: archive; Type: TABLE DATA; Schema: pgboss; Owner: - -- COPY pgboss.archive (id, name, priority, data, state, retrylimit, retrycount, retrydelay, retrybackoff, startafter, startedon, singletonkey, singletonon, expirein, createdon, completedon, keepuntil, on_complete, output, archivedon) FROM stdin; \. -- -- Data for Name: job; Type: TABLE DATA; Schema: pgboss; Owner: - -- COPY pgboss.job (id, name, priority, data, state, retrylimit, retrycount, retrydelay, retrybackoff, startafter, startedon, singletonkey, singletonon, expirein, createdon, completedon, keepuntil, on_complete, output) FROM stdin; \. -- -- Data for Name: schedule; Type: TABLE DATA; Schema: pgboss; Owner: - -- COPY pgboss.schedule (name, cron, timezone, data, options, created_on, updated_on) FROM stdin; repin-2 0 5 * * * America/Chicago \N \N 2022-01-07 19:34:52.686579+00 2022-01-30 14:23:21.011044+00 trust 0 2 * * * America/Chicago \N \N 2022-02-12 15:03:33.046019+00 2022-02-12 15:03:33.046019+00 auction * * * * * America/Chicago \N \N 2022-03-02 21:18:39.267614+00 2022-03-02 21:18:39.267614+00 streak 15 0 * * * America/Chicago \N \N 2023-02-02 00:00:51.679562+00 2023-02-02 00:00:51.679562+00 rankViews */5 * * * * America/Chicago \N \N 2023-05-23 15:03:55.172968+00 2023-05-23 15:03:55.172968+00 deleteUnusedImages 0 * * * * America/Chicago \N \N 2023-11-06 23:54:16.672248+00 2023-11-06 23:54:16.672248+00 autoDropBolt11s 1 1 * * * America/Chicago \N \N 2023-11-12 18:14:54.982795+00 2023-11-12 18:14:54.982795+00 ofac 0 3 * * * America/Chicago \N \N 2023-12-15 20:09:16.490652+00 2023-12-15 20:09:16.490652+00 checkPendingDeposits */10 * * * * America/Chicago \N \N 2024-01-12 15:01:01.434147+00 2024-01-12 15:01:01.434147+00 checkPendingWithdrawals */10 * * * * America/Chicago \N \N 2024-01-12 15:01:01.434147+00 2024-01-12 15:01:01.434147+00 views-days 0 0 * * * America/Chicago {"period": "days"} \N 2023-05-19 22:45:05.03309+00 2023-05-19 22:45:05.03309+00 views-hours 0 * * * * America/Chicago {"period": "hours"} \N 2024-01-19 21:41:36.916257+00 2024-01-19 21:41:36.916257+00 views-months 0 0 1 * * America/Chicago {"period": "months"} \N 2024-01-19 21:41:36.916257+00 2024-01-19 21:41:36.916257+00 territoryRevenue 0 0 * * * America/Chicago \N \N 2024-03-01 16:32:47.838061+00 2024-03-01 16:32:47.838061+00 earn 0 0 * * * America/Chicago \N \N 2022-03-19 02:37:23.027048+00 2022-03-19 02:37:23.027048+00 thisDay 0 5 * * * America/Chicago \N \N 2025-03-29 21:00:07.304428+00 2025-03-29 21:00:07.304428+00 weeklyPost-meme-mon 0 10 * * 1 America/Chicago {"text": "Time for another round of Meme Monday!\\n\\nWe have another 5,000 CCs up for grabs for this week's winner.\\n\\nThe CCs will be given to the stacker with the best Bitcoin meme as voted by the \\"top\\" filter on this thread at 10am CT tomorrow.\\n\\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\\n\\nSend your best 👇", "title": "Meme Monday - Best Bitcoin Meme Gets 5,000 CCs", "bounty": 5000, "subName": "memes"} \N 2025-03-29 21:00:07.441314+00 2025-03-29 21:00:07.441314+00 weeklyPost-what-wed 0 10 * * 3 America/Chicago {"text": "Calling all stackers!\\n\\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\\n\\nJust share what you're up to, and let the community know if you want any feedback or help.", "title": "What are you working on this week?", "subName": "meta"} \N 2025-03-29 21:00:07.441314+00 2025-03-29 21:00:07.441314+00 weeklyPost-fact-fri 0 10 * * 5 America/Chicago {"text": "Let's hear all your best fun facts, any topic counts!\\n\\nThe best comment as voted by the \\"top\\" filter at 10am CT tomorrow gets 5,000 CCs.\\n\\nBonus CCs for including a source link to your fun fact!\\n\\nSend your best 👇", "title": "Fun Fact Friday - Best Fun Fact Gets 5,000 CCs", "bounty": 5000, "subName": "meta"} \N 2025-03-29 21:00:07.441314+00 2025-03-29 21:00:07.441314+00 earnRefill 10 0 * * * America/Chicago \N \N 2025-03-29 21:00:09.054979+00 2025-03-29 21:00:09.054979+00 socialPoster */60 * * * * America/Chicago \N \N 2025-03-29 21:00:10.203034+00 2025-03-29 21:00:10.203034+00 \. -- -- Data for Name: subscription; Type: TABLE DATA; Schema: pgboss; Owner: - -- COPY pgboss.subscription (event, name, created_on, updated_on) FROM stdin; \. -- -- Data for Name: version; Type: TABLE DATA; Schema: pgboss; Owner: - -- COPY pgboss.version (version, maintained_on, cron_on) FROM stdin; 20 2025-03-29 22:28:13.389003+00 2025-03-29 22:28:02.217988+00 \. -- -- Data for Name: Arc; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Arc" ("fromId", "toId", "zapTrust") FROM stdin; \. -- -- Data for Name: AutoSocialPost; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."AutoSocialPost" (id, created_at, updated_at, "itemId") FROM stdin; 1 2025-03-29 21:00:43.909 2025-03-29 21:00:43.909 459356 \. -- -- Data for Name: Bookmark; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Bookmark" ("userId", "itemId", created_at) FROM stdin; \. -- -- Data for Name: DirectPayment; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."DirectPayment" (id, created_at, updated_at, "senderId", "receiverId", preimage, bolt11, "walletId", comment, "desc", "lud18Data", msats, hash) FROM stdin; \. -- -- Data for Name: Donation; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Donation" (id, created_at, updated_at, sats, "userId") FROM stdin; 2854 2025-03-25 00:40:06.267 2025-03-25 00:40:06.267 210 11590 2862 2025-03-25 22:38:08.172 2025-03-25 22:38:08.172 117 11443 2871 2025-03-26 14:13:04.266 2025-03-26 14:13:04.266 250 14990 2873 2025-03-26 19:50:28.546 2025-03-26 19:50:28.546 100 16954 2882 2025-03-27 17:03:56.273 2025-03-27 17:03:56.273 100 20812 2897 2025-03-29 12:30:20.115 2025-03-29 12:30:20.115 250 750 2855 2025-03-25 00:40:41.801 2025-03-25 00:40:41.801 2100 21672 2859 2025-03-25 14:55:37.239 2025-03-25 14:55:37.239 250 9307 2863 2025-03-25 23:31:25.253 2025-03-25 23:31:25.253 100 12169 2874 2025-03-26 19:58:13.25 2025-03-26 19:58:13.25 100 10352 2886 2025-03-28 07:51:08.544 2025-03-28 07:51:08.544 250 11829 2890 2025-03-28 18:52:09.964 2025-03-28 18:52:09.964 100 16432 2896 2025-03-29 12:29:38.666 2025-03-29 12:29:38.666 250 13599 2898 2025-03-29 12:54:07.897 2025-03-29 12:54:07.897 100 20993 2856 2025-03-25 06:56:09.78 2025-03-25 06:56:09.78 250 17042 2864 2025-03-26 05:10:48.084 2025-03-26 05:10:48.084 400 681 2872 2025-03-26 14:30:57.055 2025-03-26 14:30:57.055 10000 20225 2875 2025-03-26 21:13:39.777 2025-03-26 21:13:39.777 117 21222 2881 2025-03-27 16:18:47.935 2025-03-27 16:18:47.935 100 1213 2887 2025-03-28 13:28:49.452 2025-03-28 13:28:49.452 100 7510 2889 2025-03-28 16:22:40.415 2025-03-28 16:22:40.415 117 11038 2900 2025-03-29 20:59:41.857 2025-03-29 20:59:41.857 117 20179 2857 2025-03-25 06:56:43.519 2025-03-25 06:56:43.519 250 21332 2865 2025-03-26 05:31:17.314 2025-03-26 05:31:17.314 250 2098 2866 2025-03-26 05:32:09.289 2025-03-26 05:32:09.289 250 13327 2876 2025-03-27 01:53:35.258 2025-03-27 01:53:35.258 227 21334 2880 2025-03-27 15:56:54.777 2025-03-27 15:56:54.777 200 8287 \. -- -- Data for Name: Earn; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Earn" (id, created_at, updated_at, msats, "userId", rank, type, "typeId") FROM stdin; 155924 2025-03-28 20:59:41.31 2025-03-28 20:59:38.917 1135698 21228 \N \N \N 155925 2025-03-28 20:59:41.31 2025-03-28 20:59:38.935 853188 1723 \N \N \N 155926 2025-03-28 20:59:41.31 2025-03-28 20:59:38.943 764214 15273 \N \N \N 155927 2025-03-28 20:59:41.31 2025-03-28 20:59:38.954 699886 19117 \N \N \N 155928 2025-03-28 20:59:41.31 2025-03-28 20:59:38.992 622300 11288 \N \N \N 155929 2025-03-28 20:59:41.31 2025-03-28 20:59:39.016 605630 21238 \N \N \N 155930 2025-03-28 20:59:41.31 2025-03-28 20:59:39.033 556404 21804 \N \N \N 155931 2025-03-28 20:59:41.31 2025-03-28 20:59:39.048 543518 1433 \N \N \N 155932 2025-03-28 20:59:41.31 2025-03-28 20:59:39.069 539040 7983 \N \N \N 155933 2025-03-28 20:59:41.31 2025-03-28 20:59:39.096 530266 17690 \N \N \N 155934 2025-03-28 20:59:41.31 2025-03-28 20:59:39.12 517116 20612 \N \N \N 155935 2025-03-28 20:59:41.31 2025-03-28 20:59:39.144 515202 925 \N \N \N 155936 2025-03-28 20:59:41.31 2025-03-28 20:59:39.172 510096 891 \N \N \N 155937 2025-03-28 20:59:41.31 2025-03-28 20:59:39.204 506758 4062 \N \N \N 155938 2025-03-28 20:59:41.31 2025-03-28 20:59:39.244 501893 20500 \N \N \N 155939 2025-03-28 20:59:41.31 2025-03-28 20:59:39.272 495299 21365 \N \N \N 155940 2025-03-28 20:59:41.31 2025-03-28 20:59:39.29 493312 11192 \N \N \N 155941 2025-03-28 20:59:41.31 2025-03-28 20:59:39.307 476414 12272 \N \N \N 155942 2025-03-28 20:59:41.31 2025-03-28 20:59:39.314 474303 20681 \N \N \N 155943 2025-03-28 20:59:41.31 2025-03-28 20:59:39.323 467423 2000 \N \N \N 155944 2025-03-28 20:59:41.31 2025-03-28 20:59:39.332 462424 17221 \N \N \N 155945 2025-03-28 20:59:41.31 2025-03-28 20:59:39.339 461479 652 \N \N \N 155946 2025-03-28 20:59:41.31 2025-03-28 20:59:39.353 459563 880 \N \N \N 155947 2025-03-28 20:59:41.31 2025-03-28 20:59:39.361 438480 9329 \N \N \N 155948 2025-03-28 20:59:41.31 2025-03-28 20:59:39.374 438397 635 \N \N \N 155949 2025-03-28 20:59:41.31 2025-03-28 20:59:39.38 436036 11670 \N \N \N 155950 2025-03-28 20:59:41.31 2025-03-28 20:59:39.392 433679 9200 \N \N \N 155951 2025-03-28 20:59:41.31 2025-03-28 20:59:39.399 423574 624 \N \N \N 155952 2025-03-28 20:59:41.31 2025-03-28 20:59:39.408 423518 15282 \N \N \N 155953 2025-03-28 20:59:41.31 2025-03-28 20:59:39.419 422192 19570 \N \N \N 155954 2025-03-28 20:59:41.31 2025-03-28 20:59:39.427 416207 14515 \N \N \N 155955 2025-03-28 20:59:41.31 2025-03-28 20:59:39.436 407477 5085 \N \N \N 155956 2025-03-28 20:59:41.31 2025-03-28 20:59:39.456 402631 20185 \N \N \N 155957 2025-03-28 20:59:41.31 2025-03-28 20:59:39.468 402548 5637 \N \N \N 155958 2025-03-28 20:59:41.31 2025-03-28 20:59:39.475 402548 956 \N \N \N 155959 2025-03-28 20:59:41.31 2025-03-28 20:59:39.485 399881 6687 \N \N \N 155960 2025-03-28 20:59:41.31 2025-03-28 20:59:39.494 398727 5557 \N \N \N 155961 2025-03-28 20:59:41.31 2025-03-28 20:59:39.506 395089 21060 \N \N \N 155962 2025-03-28 20:59:41.31 2025-03-28 20:59:39.513 390068 917 \N \N \N 155963 2025-03-28 20:59:41.31 2025-03-28 20:59:39.528 387466 12422 \N \N \N 155964 2025-03-28 20:59:41.31 2025-03-28 20:59:39.54 380034 15978 \N \N \N 155965 2025-03-28 20:59:41.31 2025-03-28 20:59:39.56 368143 6741 \N \N \N 155966 2025-03-28 20:59:41.31 2025-03-28 20:59:39.574 366804 18468 \N \N \N 155967 2025-03-28 20:59:41.31 2025-03-28 20:59:39.581 365347 9611 \N \N \N 155968 2025-03-28 20:59:41.31 2025-03-28 20:59:39.589 362203 5758 \N \N \N 155969 2025-03-28 20:59:41.31 2025-03-28 20:59:39.596 361496 19303 \N \N \N 155970 2025-03-28 20:59:41.31 2025-03-28 20:59:39.604 360786 20495 \N \N \N 155971 2025-03-28 20:59:41.31 2025-03-28 20:59:39.611 357268 20291 \N \N \N 155972 2025-03-28 20:59:41.31 2025-03-28 20:59:39.628 357268 21281 \N \N \N 155973 2025-03-28 20:59:41.31 2025-03-28 20:59:39.635 357217 828 \N \N \N 155974 2025-03-28 20:59:41.31 2025-03-28 20:59:39.647 351392 11621 \N \N \N 155975 2025-03-28 20:59:41.31 2025-03-28 20:59:39.654 351265 20663 \N \N \N 155976 2025-03-28 20:59:41.31 2025-03-28 20:59:39.662 341099 7899 \N \N \N 155977 2025-03-28 20:59:41.31 2025-03-28 20:59:39.668 337866 3745 \N \N \N 155978 2025-03-28 20:59:41.31 2025-03-28 20:59:39.677 336859 18630 \N \N \N 155979 2025-03-28 20:59:41.31 2025-03-28 20:59:39.687 336347 19829 \N \N \N 155980 2025-03-28 20:59:41.31 2025-03-28 20:59:39.695 335306 17201 \N \N \N 155981 2025-03-28 20:59:41.31 2025-03-28 20:59:39.706 329373 656 \N \N \N 155982 2025-03-28 20:59:41.31 2025-03-28 20:59:39.72 327172 1741 \N \N \N 155983 2025-03-28 20:59:41.31 2025-03-28 20:59:39.733 322690 16347 \N \N \N 155984 2025-03-28 20:59:41.31 2025-03-28 20:59:39.762 313974 6419 \N \N \N 155985 2025-03-28 20:59:41.31 2025-03-28 20:59:39.778 309916 2952 \N \N \N 155986 2025-03-28 20:59:41.31 2025-03-28 20:59:39.784 306540 7992 \N \N \N 155987 2025-03-28 20:59:41.31 2025-03-28 20:59:39.806 304773 670 \N \N \N 155988 2025-03-28 20:59:41.31 2025-03-28 20:59:39.816 304574 12951 \N \N \N 155989 2025-03-28 20:59:41.31 2025-03-28 20:59:39.836 304555 12566 \N \N \N 155990 2025-03-28 20:59:41.31 2025-03-28 20:59:39.86 303476 19488 \N \N \N 155991 2025-03-28 20:59:41.31 2025-03-28 20:59:39.869 300575 21832 \N \N \N 155992 2025-03-28 20:59:41.31 2025-03-28 20:59:39.876 298639 4650 \N \N \N 155993 2025-03-28 20:59:41.31 2025-03-28 20:59:39.886 294999 1474 \N \N \N 155994 2025-03-28 20:59:41.31 2025-03-28 20:59:39.894 292379 1433 \N \N \N 155995 2025-03-28 20:59:41.31 2025-03-28 20:59:39.9 286796 659 \N \N \N 155996 2025-03-28 20:59:41.31 2025-03-28 20:59:39.907 283259 17212 \N \N \N 155997 2025-03-28 20:59:41.31 2025-03-28 20:59:39.913 282699 6149 \N \N \N 155998 2025-03-28 20:59:41.31 2025-03-28 20:59:39.923 282699 7425 \N \N \N 155999 2025-03-28 20:59:41.31 2025-03-28 20:59:39.933 280160 14271 \N \N \N 156000 2025-03-28 20:59:41.31 2025-03-28 20:59:39.943 280146 16834 \N \N \N 156001 2025-03-28 20:59:41.31 2025-03-28 20:59:39.952 280120 688 \N \N \N 156002 2025-03-28 20:59:41.31 2025-03-28 20:59:39.959 280120 14260 \N \N \N 156003 2025-03-28 20:59:41.31 2025-03-28 20:59:39.967 279426 21040 \N \N \N 156004 2025-03-28 20:59:41.31 2025-03-28 20:59:39.974 269432 913 \N \N \N 156005 2025-03-28 20:59:41.31 2025-03-28 20:59:39.981 267539 18306 \N \N \N 156006 2025-03-28 20:59:41.31 2025-03-28 20:59:39.988 266617 652 \N \N \N 156007 2025-03-28 20:59:41.31 2025-03-28 20:59:39.996 265318 12220 \N \N \N 156008 2025-03-28 20:59:41.31 2025-03-28 20:59:40.003 264600 1090 \N \N \N 156009 2025-03-28 20:59:41.31 2025-03-28 20:59:40.012 262487 9551 \N \N \N 156010 2025-03-28 20:59:41.31 2025-03-28 20:59:40.02 262311 12368 \N \N \N 156011 2025-03-28 20:59:41.31 2025-03-28 20:59:40.027 261178 720 \N \N \N 156012 2025-03-28 20:59:41.31 2025-03-28 20:59:40.034 259482 2232 \N \N \N 156013 2025-03-28 20:59:41.31 2025-03-28 20:59:40.041 259434 21532 \N \N \N 156014 2025-03-28 20:59:41.31 2025-03-28 20:59:40.049 259363 9820 \N \N \N 156015 2025-03-28 20:59:41.31 2025-03-28 20:59:40.058 259348 1584 \N \N \N 156016 2025-03-28 20:59:41.31 2025-03-28 20:59:40.066 259302 15521 \N \N \N 156017 2025-03-28 20:59:41.31 2025-03-28 20:59:40.08 259237 13921 \N \N \N 156018 2025-03-28 20:59:41.31 2025-03-28 20:59:40.095 259236 5444 \N \N \N 156019 2025-03-28 20:59:41.31 2025-03-28 20:59:40.119 259189 11275 \N \N \N 156020 2025-03-28 20:59:41.31 2025-03-28 20:59:40.149 259159 2757 \N \N \N 156021 2025-03-28 20:59:41.31 2025-03-28 20:59:40.172 259159 16149 \N \N \N 156022 2025-03-28 20:59:41.31 2025-03-28 20:59:40.197 259159 18412 \N \N \N 156023 2025-03-28 20:59:41.31 2025-03-28 20:59:40.228 259149 19943 \N \N \N 156024 2025-03-28 20:59:41.31 2025-03-28 20:59:40.25 259149 17535 \N \N \N 156025 2025-03-28 20:59:41.31 2025-03-28 20:59:40.286 259149 21577 \N \N \N 156026 2025-03-28 20:59:41.31 2025-03-28 20:59:40.319 259149 20563 \N \N \N 156027 2025-03-28 20:59:41.31 2025-03-28 20:59:40.371 256708 14651 \N \N \N 156028 2025-03-28 20:59:41.31 2025-03-28 20:59:40.385 253117 18069 \N \N \N 156029 2025-03-28 20:59:41.31 2025-03-28 20:59:40.431 251031 21798 \N \N \N 156030 2025-03-28 20:59:41.31 2025-03-28 20:59:40.45 250946 21164 \N \N \N 156031 2025-03-28 20:59:41.31 2025-03-28 20:59:40.464 250946 1576 \N \N \N 156032 2025-03-28 20:59:41.31 2025-03-28 20:59:40.473 250946 12516 \N \N \N 156033 2025-03-28 20:59:41.31 2025-03-28 20:59:40.485 250946 1044 \N \N \N 156034 2025-03-28 20:59:41.31 2025-03-28 20:59:40.496 250946 21685 \N \N \N 156035 2025-03-28 20:59:41.31 2025-03-28 20:59:40.505 250946 1823 \N \N \N 156036 2025-03-28 20:59:41.31 2025-03-28 20:59:40.523 250946 712 \N \N \N 156037 2025-03-28 20:59:41.31 2025-03-28 20:59:40.537 250946 20904 \N \N \N 156038 2025-03-28 20:59:41.31 2025-03-28 20:59:40.551 248886 5527 \N \N \N 156039 2025-03-28 20:59:41.31 2025-03-28 20:59:40.56 246454 15719 \N \N \N 156040 2025-03-28 20:59:41.31 2025-03-28 20:59:40.566 244985 4984 \N \N \N 156041 2025-03-28 20:59:41.31 2025-03-28 20:59:40.576 243576 4633 \N \N \N 156042 2025-03-28 20:59:41.31 2025-03-28 20:59:40.584 243576 736 \N \N \N 156043 2025-03-28 20:59:41.31 2025-03-28 20:59:40.591 242145 12736 \N \N \N 156044 2025-03-28 20:59:41.31 2025-03-28 20:59:40.598 241651 21701 \N \N \N 156045 2025-03-28 20:59:41.31 2025-03-28 20:59:40.607 238269 16309 \N \N \N 156046 2025-03-28 20:59:41.31 2025-03-28 20:59:40.633 238246 1712 \N \N \N 156047 2025-03-28 20:59:41.31 2025-03-28 20:59:40.645 238218 7818 \N \N \N 156048 2025-03-28 20:59:41.31 2025-03-28 20:59:40.652 238179 15560 \N \N \N 156049 2025-03-28 20:59:41.31 2025-03-28 20:59:40.659 238179 21180 \N \N \N 156050 2025-03-28 20:59:41.31 2025-03-28 20:59:40.666 238179 8870 \N \N \N 156051 2025-03-28 20:59:41.31 2025-03-28 20:59:40.673 238179 5825 \N \N \N 156052 2025-03-28 20:59:41.31 2025-03-28 20:59:40.682 238179 17682 \N \N \N 156053 2025-03-28 20:59:41.31 2025-03-28 20:59:40.698 238179 7877 \N \N \N 156054 2025-03-28 20:59:41.31 2025-03-28 20:59:40.707 238179 10398 \N \N \N 156055 2025-03-28 20:59:41.31 2025-03-28 20:59:40.72 238179 20059 \N \N \N 156056 2025-03-28 20:59:41.31 2025-03-28 20:59:40.734 238179 2519 \N \N \N 156057 2025-03-28 20:59:41.31 2025-03-28 20:59:40.752 238179 19512 \N \N \N 156058 2025-03-28 20:59:41.31 2025-03-28 20:59:40.762 238179 964 \N \N \N 156059 2025-03-28 20:59:41.31 2025-03-28 20:59:40.771 238179 17116 \N \N \N 156060 2025-03-28 20:59:41.31 2025-03-28 20:59:40.797 238179 9365 \N \N \N 156061 2025-03-28 20:59:41.31 2025-03-28 20:59:40.81 238179 4167 \N \N \N 156062 2025-03-28 20:59:41.31 2025-03-28 20:59:40.819 238179 21798 \N \N \N 156063 2025-03-28 20:59:41.31 2025-03-28 20:59:40.826 238179 4570 \N \N \N 156064 2025-03-28 20:59:41.31 2025-03-28 20:59:40.836 238179 19488 \N \N \N 156065 2025-03-28 20:59:41.31 2025-03-28 20:59:40.844 238179 20979 \N \N \N 156066 2025-03-28 20:59:41.31 2025-03-28 20:59:40.852 238179 1394 \N \N \N 156067 2025-03-28 20:59:41.31 2025-03-28 20:59:40.866 236152 902 \N \N \N 156068 2025-03-28 20:59:41.31 2025-03-28 20:59:40.873 235694 21710 \N \N \N 156069 2025-03-28 20:59:41.31 2025-03-28 20:59:40.884 235694 12819 \N \N \N 156070 2025-03-28 20:59:41.31 2025-03-28 20:59:40.89 234653 18270 \N \N \N 156071 2025-03-28 20:59:41.31 2025-03-28 20:59:40.897 233455 17798 \N \N \N 156072 2025-03-28 20:59:41.31 2025-03-28 20:59:40.907 232398 987 \N \N \N 156073 2025-03-28 20:59:41.31 2025-03-28 20:59:40.914 230146 20059 \N \N \N 156074 2025-03-28 20:59:41.31 2025-03-28 20:59:40.921 228232 14503 \N \N \N 156075 2025-03-28 20:59:41.31 2025-03-28 20:59:40.929 227846 21271 \N \N \N 156076 2025-03-28 20:59:41.31 2025-03-28 20:59:40.936 226638 2537 \N \N \N 156077 2025-03-28 20:59:41.31 2025-03-28 20:59:40.947 225901 7682 \N \N \N 156078 2025-03-28 20:59:41.31 2025-03-28 20:59:40.954 225879 18473 \N \N \N 156079 2025-03-28 20:59:41.31 2025-03-28 20:59:40.96 225139 12921 \N \N \N 156080 2025-03-28 20:59:41.31 2025-03-28 20:59:40.968 225139 12507 \N \N \N 156081 2025-03-28 20:59:41.31 2025-03-28 20:59:40.976 224694 11716 \N \N \N 156082 2025-03-28 20:59:41.31 2025-03-28 20:59:40.988 223997 18717 \N \N \N 156083 2025-03-28 20:59:41.31 2025-03-28 20:59:40.997 223424 15408 \N \N \N 156084 2025-03-28 20:59:41.31 2025-03-28 20:59:41.004 223424 4177 \N \N \N 156085 2025-03-28 20:59:41.31 2025-03-28 20:59:41.013 223424 9920 \N \N \N 156086 2025-03-28 20:59:41.31 2025-03-28 20:59:41.021 223385 3506 \N \N \N 156087 2025-03-28 20:59:41.31 2025-03-28 20:59:41.028 223339 6164 \N \N \N 156088 2025-03-28 20:59:41.31 2025-03-28 20:59:41.036 223339 10698 \N \N \N 156089 2025-03-28 20:59:41.31 2025-03-28 20:59:41.043 223339 20481 \N \N \N 156090 2025-03-28 20:59:41.31 2025-03-28 20:59:41.049 223300 4984 \N \N \N 156091 2025-03-28 20:59:41.31 2025-03-28 20:59:41.056 223300 21480 \N \N \N 156092 2025-03-28 20:59:41.31 2025-03-28 20:59:41.079 223339 21771 \N \N \N 156093 2025-03-28 20:59:41.31 2025-03-28 20:59:41.088 218987 736 \N \N \N 156094 2025-03-28 20:59:41.31 2025-03-28 20:59:41.103 215123 19394 \N \N \N 156095 2025-03-28 20:59:41.31 2025-03-28 20:59:41.114 215097 17535 \N \N \N 156096 2025-03-28 20:59:41.31 2025-03-28 20:59:41.13 215097 13467 \N \N \N 156097 2025-03-28 20:59:41.31 2025-03-28 20:59:41.143 215097 4259 \N \N \N 156098 2025-03-28 20:59:41.31 2025-03-28 20:59:41.156 212725 656 \N \N \N 156099 2025-03-28 20:59:41.31 2025-03-28 20:59:41.165 212612 1454 \N \N \N 156100 2025-03-28 20:59:41.31 2025-03-28 20:59:41.172 203444 1652 \N \N \N 156101 2025-03-28 20:59:41.31 2025-03-28 20:59:41.191 200301 8168 \N \N \N 156102 2025-03-28 20:59:41.31 2025-03-28 20:59:41.197 200244 19512 \N \N \N 156103 2025-03-28 20:59:41.31 2025-03-28 20:59:41.208 200218 2361 \N \N \N 156104 2025-03-28 20:59:41.31 2025-03-28 20:59:41.215 200218 17522 \N \N \N 156105 2025-03-28 20:59:41.31 2025-03-28 20:59:41.224 194616 17953 \N \N \N 156106 2025-03-28 20:59:41.31 2025-03-28 20:59:41.24 192728 21829 \N \N \N 156107 2025-03-28 20:59:41.31 2025-03-28 20:59:41.249 191641 4624 \N \N \N 156108 2025-03-28 20:59:41.31 2025-03-28 20:59:41.257 190191 21829 \N \N \N 156109 2025-03-28 20:59:41.31 2025-03-28 20:59:41.265 186632 14791 \N \N \N 156110 2025-03-28 20:59:41.31 2025-03-28 20:59:41.273 182383 2039 \N \N \N 156111 2025-03-28 20:59:41.31 2025-03-28 20:59:41.281 180839 7125 \N \N \N 156112 2025-03-28 20:59:41.31 2025-03-28 20:59:41.289 180839 16956 \N \N \N 156113 2025-03-28 20:59:41.31 2025-03-28 20:59:41.3 180839 805 \N \N \N 156114 2025-03-28 20:59:41.31 2025-03-28 20:59:41.309 180338 18069 \N \N \N 156115 2025-03-28 20:59:41.31 2025-03-28 20:59:41.327 179774 4048 \N \N \N 156116 2025-03-28 20:59:41.31 2025-03-28 20:59:41.339 179358 696 \N \N \N 156117 2025-03-28 20:59:41.31 2025-03-28 20:59:41.346 179247 1428 \N \N \N 156118 2025-03-28 20:59:41.31 2025-03-28 20:59:41.353 179247 6382 \N \N \N 156119 2025-03-28 20:59:41.31 2025-03-28 20:59:41.361 179247 20504 \N \N \N 156120 2025-03-28 20:59:41.31 2025-03-28 20:59:41.368 179247 20912 \N \N \N 156121 2025-03-28 20:59:41.31 2025-03-28 20:59:41.375 179247 21269 \N \N \N 156122 2025-03-28 20:59:41.31 2025-03-28 20:59:41.39 179247 7746 \N \N \N 156123 2025-03-28 20:59:41.31 2025-03-28 20:59:41.399 179247 1584 \N \N \N 156124 2025-03-28 20:59:41.31 2025-03-28 20:59:41.405 171258 15978 \N \N \N 156125 2025-03-28 20:59:41.31 2025-03-28 20:59:41.414 159962 16296 \N \N \N 156126 2025-03-28 20:59:41.31 2025-03-28 20:59:41.425 157501 6136 \N \N \N 156127 2025-03-28 20:59:41.31 2025-03-28 20:59:41.434 155859 3456 \N \N \N 156128 2025-03-28 20:59:41.31 2025-03-28 20:59:41.441 154543 21356 \N \N \N 156129 2025-03-28 20:59:41.31 2025-03-28 20:59:41.451 151803 18923 \N \N \N 156130 2025-03-28 20:59:41.31 2025-03-28 20:59:41.458 149641 1745 \N \N \N 156131 2025-03-28 20:59:41.31 2025-03-28 20:59:41.471 143623 19117 \N \N \N 156132 2025-03-28 20:59:41.31 2025-03-28 20:59:41.478 143424 16704 \N \N \N 156133 2025-03-28 20:59:41.31 2025-03-28 20:59:41.496 143398 14169 \N \N \N 156134 2025-03-28 20:59:41.31 2025-03-28 20:59:41.507 143398 15243 \N \N \N 156135 2025-03-28 20:59:41.31 2025-03-28 20:59:41.517 143398 21334 \N \N \N 156136 2025-03-28 20:59:41.31 2025-03-28 20:59:41.528 143398 18174 \N \N \N 156137 2025-03-28 20:59:41.31 2025-03-28 20:59:41.535 143398 21424 \N \N \N 156138 2025-03-28 20:59:41.31 2025-03-28 20:59:41.542 141143 20674 \N \N \N 156139 2025-03-28 20:59:41.31 2025-03-28 20:59:41.551 133798 11527 \N \N \N 156140 2025-03-28 20:59:41.31 2025-03-28 20:59:41.56 133084 5455 \N \N \N 156141 2025-03-28 20:59:41.31 2025-03-28 20:59:41.571 132976 9261 \N \N \N 156142 2025-03-28 20:59:41.31 2025-03-28 20:59:41.579 132976 7818 \N \N \N 156143 2025-03-28 20:59:41.31 2025-03-28 20:59:41.592 132367 7583 \N \N \N 156144 2025-03-28 20:59:41.31 2025-03-28 20:59:41.601 132367 2233 \N \N \N 156145 2025-03-28 20:59:41.31 2025-03-28 20:59:41.612 131511 5519 \N \N \N 156146 2025-03-28 20:59:41.31 2025-03-28 20:59:41.62 130322 1000 \N \N \N 156147 2025-03-28 20:59:41.31 2025-03-28 20:59:41.626 126569 17106 \N \N \N 156148 2025-03-28 20:59:41.31 2025-03-28 20:59:41.634 126205 4345 \N \N \N 156149 2025-03-28 20:59:41.31 2025-03-28 20:59:41.643 126143 20861 \N \N \N 156150 2025-03-28 20:59:41.31 2025-03-28 20:59:41.656 125556 21526 \N \N \N 156151 2025-03-28 20:59:41.31 2025-03-28 20:59:41.667 125556 20713 \N \N \N 156152 2025-03-28 20:59:41.31 2025-03-28 20:59:41.677 124699 21254 \N \N \N 156153 2025-03-28 20:59:41.31 2025-03-28 20:59:41.684 121502 9833 \N \N \N 156154 2025-03-28 20:59:41.31 2025-03-28 20:59:41.69 119089 21212 \N \N \N 156155 2025-03-28 20:59:41.31 2025-03-28 20:59:41.697 119089 650 \N \N \N 156156 2025-03-28 20:59:41.31 2025-03-28 20:59:41.706 119089 2151 \N \N \N 156157 2025-03-28 20:59:41.31 2025-03-28 20:59:41.718 118855 21033 \N \N \N 156158 2025-03-28 20:59:41.31 2025-03-28 20:59:41.726 118852 21212 \N \N \N 156159 2025-03-28 20:59:41.31 2025-03-28 20:59:41.734 118749 20619 \N \N \N 156160 2025-03-28 20:59:41.31 2025-03-28 20:59:41.743 118749 14452 \N \N \N 156161 2025-03-28 20:59:41.31 2025-03-28 20:59:41.755 118749 1173 \N \N \N 156162 2025-03-28 20:59:41.31 2025-03-28 20:59:41.762 118749 16543 \N \N \N 156163 2025-03-28 20:59:41.31 2025-03-28 20:59:41.769 118749 9695 \N \N \N 156164 2025-03-28 20:59:41.31 2025-03-28 20:59:41.776 118749 7903 \N \N \N 156165 2025-03-28 20:59:41.31 2025-03-28 20:59:41.785 118749 18678 \N \N \N 156166 2025-03-28 20:59:41.31 2025-03-28 20:59:41.791 118749 21365 \N \N \N 156167 2025-03-28 20:59:41.31 2025-03-28 20:59:41.8 118749 946 \N \N \N 156168 2025-03-28 20:59:41.31 2025-03-28 20:59:41.808 118749 9438 \N \N \N 156169 2025-03-28 20:59:41.31 2025-03-28 20:59:41.817 118749 19121 \N \N \N 156170 2025-03-28 20:59:41.31 2025-03-28 20:59:41.824 118749 20817 \N \N \N 156171 2025-03-28 20:59:41.31 2025-03-28 20:59:41.837 118749 1490 \N \N \N 156172 2025-03-28 20:59:41.31 2025-03-28 20:59:41.845 115074 9177 \N \N \N 156173 2025-03-28 20:59:41.31 2025-03-28 20:59:41.852 115074 21090 \N \N \N 156174 2025-03-28 20:59:41.31 2025-03-28 20:59:41.86 115052 17064 \N \N \N 156175 2025-03-28 20:59:41.31 2025-03-28 20:59:41.867 115051 4989 \N \N \N 156176 2025-03-28 20:59:41.31 2025-03-28 20:59:41.874 115047 11454 \N \N \N 156177 2025-03-28 20:59:41.31 2025-03-28 20:59:41.882 115000 6191 \N \N \N 156178 2025-03-28 20:59:41.31 2025-03-28 20:59:41.889 114995 21058 \N \N \N 156179 2025-03-28 20:59:41.31 2025-03-28 20:59:41.896 114987 1833 \N \N \N 156180 2025-03-28 20:59:41.31 2025-03-28 20:59:41.905 114962 1720 \N \N \N 156181 2025-03-28 20:59:41.31 2025-03-28 20:59:41.912 114961 8796 \N \N \N 156182 2025-03-28 20:59:41.31 2025-03-28 20:59:41.92 114961 4043 \N \N \N 156183 2025-03-28 20:59:41.31 2025-03-28 20:59:41.935 114961 10986 \N \N \N 156184 2025-03-28 20:59:41.31 2025-03-28 20:59:41.95 114961 9352 \N \N \N 156185 2025-03-28 20:59:41.31 2025-03-28 20:59:41.959 114961 889 \N \N \N 156186 2025-03-28 20:59:41.31 2025-03-28 20:59:41.973 114961 2056 \N \N \N 156187 2025-03-28 20:59:41.31 2025-03-28 20:59:41.99 114863 11423 \N \N \N 156188 2025-03-28 20:59:41.31 2025-03-28 20:59:41.997 113218 9337 \N \N \N 156189 2025-03-28 20:59:41.31 2025-03-28 20:59:42.004 113176 11670 \N \N \N 156190 2025-03-28 20:59:41.31 2025-03-28 20:59:42.013 113171 3409 \N \N \N 156191 2025-03-28 20:59:41.31 2025-03-28 20:59:42.02 113140 20337 \N \N \N 156192 2025-03-28 20:59:41.31 2025-03-28 20:59:42.026 113137 2330 \N \N \N 156193 2025-03-28 20:59:41.31 2025-03-28 20:59:42.038 113137 8376 \N \N \N 156194 2025-03-28 20:59:41.31 2025-03-28 20:59:42.047 113131 18426 \N \N \N 156195 2025-03-28 20:59:41.31 2025-03-28 20:59:42.054 113130 20901 \N \N \N 156196 2025-03-28 20:59:41.31 2025-03-28 20:59:42.061 113103 16966 \N \N \N 156197 2025-03-28 20:59:41.31 2025-03-28 20:59:42.068 113086 21091 \N \N \N 156198 2025-03-28 20:59:41.31 2025-03-28 20:59:42.082 113086 21338 \N \N \N 156199 2025-03-28 20:59:41.31 2025-03-28 20:59:42.09 113050 20412 \N \N \N 156200 2025-03-28 20:59:41.31 2025-03-28 20:59:42.097 113050 2942 \N \N \N 156201 2025-03-28 20:59:41.31 2025-03-28 20:59:42.104 113047 21145 \N \N \N 156202 2025-03-28 20:59:41.31 2025-03-28 20:59:42.112 113047 5829 \N \N \N 156203 2025-03-28 20:59:41.31 2025-03-28 20:59:42.118 113047 19777 \N \N \N 156204 2025-03-28 20:59:41.31 2025-03-28 20:59:42.129 113047 726 \N \N \N 156205 2025-03-28 20:59:41.31 2025-03-28 20:59:42.139 113047 21578 \N \N \N 156206 2025-03-28 20:59:41.31 2025-03-28 20:59:42.147 113047 20781 \N \N \N 156207 2025-03-28 20:59:41.31 2025-03-28 20:59:42.155 113047 20817 \N \N \N 156208 2025-03-28 20:59:41.31 2025-03-28 20:59:42.162 113047 1012 \N \N \N 156209 2025-03-28 20:59:41.31 2025-03-28 20:59:42.176 113047 20939 \N \N \N 156210 2025-03-28 20:59:41.31 2025-03-28 20:59:42.189 113047 4345 \N \N \N 156211 2025-03-28 20:59:41.31 2025-03-28 20:59:42.201 113047 13798 \N \N \N 156212 2025-03-28 20:59:41.31 2025-03-28 20:59:42.209 113047 13921 \N \N \N 156213 2025-03-28 20:59:41.31 2025-03-28 20:59:42.223 113047 20220 \N \N \N 156214 2025-03-28 20:59:41.31 2025-03-28 20:59:42.232 113047 1003 \N \N \N 156215 2025-03-28 20:59:41.31 2025-03-28 20:59:42.245 112750 20062 \N \N \N 156216 2025-03-28 20:59:41.31 2025-03-28 20:59:42.252 112742 7125 \N \N \N 156217 2025-03-28 20:59:41.31 2025-03-28 20:59:42.258 112619 1090 \N \N \N 156218 2025-03-28 20:59:41.31 2025-03-28 20:59:42.275 112619 679 \N \N \N 156219 2025-03-28 20:59:41.31 2025-03-28 20:59:42.289 112537 20023 \N \N \N 156220 2025-03-28 20:59:41.31 2025-03-28 20:59:42.298 112529 1833 \N \N \N 156221 2025-03-28 20:59:41.31 2025-03-28 20:59:42.314 2710370 20201 \N \N \N 156222 2025-03-28 20:59:41.31 2025-03-28 20:59:42.321 2501474 19403 \N \N \N 156223 2025-03-28 20:59:41.31 2025-03-28 20:59:42.328 2245320 19980 \N \N \N 156224 2025-03-28 20:59:41.31 2025-03-28 20:59:42.334 1942941 720 \N \N \N 156225 2025-03-28 20:59:41.31 2025-03-28 20:59:42.34 1861844 20913 \N \N \N 156226 2025-03-28 20:59:41.31 2025-03-28 20:59:42.347 1826845 811 \N \N \N 156227 2025-03-28 20:59:41.31 2025-03-28 20:59:42.354 1767915 19668 \N \N \N 156228 2025-03-28 20:59:41.31 2025-03-28 20:59:42.362 1749166 9362 \N \N \N 156229 2025-03-28 20:59:41.31 2025-03-28 20:59:42.369 1748964 9341 \N \N \N 156230 2025-03-28 20:59:41.31 2025-03-28 20:59:42.375 1650041 5499 \N \N \N 156231 2025-03-28 20:59:41.31 2025-03-28 20:59:42.382 1583324 7580 \N \N \N 156232 2025-03-28 20:59:41.31 2025-03-28 20:59:42.39 1577459 798 \N \N \N 156233 2025-03-28 20:59:41.31 2025-03-28 20:59:42.398 1566183 10102 \N \N \N 156234 2025-03-28 20:59:41.31 2025-03-28 20:59:42.409 1480811 21020 \N \N \N 156235 2025-03-28 20:59:41.31 2025-03-28 20:59:42.421 1282614 9335 \N \N \N 156236 2025-03-28 20:59:41.31 2025-03-28 20:59:42.427 1237270 633 \N \N \N 156237 2025-03-28 20:59:41.31 2025-03-28 20:59:42.437 1202637 21104 \N \N \N 156238 2025-03-28 20:59:41.31 2025-03-28 20:59:42.444 1166870 1472 \N \N \N 156239 2025-03-28 20:59:41.31 2025-03-28 20:59:42.455 1163507 11648 \N \N \N 156240 2025-03-28 20:59:41.31 2025-03-28 20:59:42.461 1153123 15925 \N \N \N 156241 2025-03-28 20:59:41.31 2025-03-28 20:59:42.469 1138860 19806 \N \N \N 156242 2025-03-28 20:59:41.31 2025-03-28 20:59:42.476 1071103 20525 \N \N \N 156243 2025-03-28 20:59:41.31 2025-03-28 20:59:42.487 1049939 11798 \N \N \N 156244 2025-03-28 20:59:41.31 2025-03-28 20:59:42.493 1037616 1726 \N \N \N 156245 2025-03-28 20:59:41.31 2025-03-28 20:59:42.501 1023800 8448 \N \N \N 156246 2025-03-28 20:59:41.31 2025-03-28 20:59:42.509 1412409 17639 \N \N \N 156247 2025-03-28 20:59:41.31 2025-03-28 20:59:42.515 937686 1298 \N \N \N 156248 2025-03-28 20:59:41.31 2025-03-28 20:59:42.522 908629 19512 \N \N \N 156249 2025-03-28 20:59:41.31 2025-03-28 20:59:42.532 904493 6602 \N \N \N 156250 2025-03-28 20:59:41.31 2025-03-28 20:59:42.544 903500 17455 \N \N \N 156251 2025-03-28 20:59:41.31 2025-03-28 20:59:42.55 900589 21218 \N \N \N 156252 2025-03-28 20:59:41.31 2025-03-28 20:59:42.556 743661 11897 \N \N \N 156253 2025-03-28 20:59:41.31 2025-03-28 20:59:42.564 712110 706 \N \N \N 156254 2025-03-28 20:59:41.31 2025-03-28 20:59:42.57 699970 21547 \N \N \N 156255 2025-03-28 20:59:41.31 2025-03-28 20:59:42.576 699567 20120 \N \N \N 156256 2025-03-28 20:59:41.31 2025-03-28 20:59:42.582 688192 2232 \N \N \N 156257 2025-03-28 20:59:41.31 2025-03-28 20:59:42.59 656842 18309 \N \N \N 156258 2025-03-28 20:59:41.31 2025-03-28 20:59:42.598 647125 10056 \N \N \N 156259 2025-03-28 20:59:41.31 2025-03-28 20:59:42.605 633336 10638 \N \N \N 156260 2025-03-28 20:59:41.31 2025-03-28 20:59:42.612 618354 12057 \N \N \N 156261 2025-03-28 20:59:41.31 2025-03-28 20:59:42.619 594767 21062 \N \N \N 156262 2025-03-28 20:59:41.31 2025-03-28 20:59:42.626 591821 7966 \N \N \N 156263 2025-03-28 20:59:41.31 2025-03-28 20:59:42.632 588794 15728 \N \N \N 156264 2025-03-28 20:59:41.31 2025-03-28 20:59:42.638 579194 20614 \N \N \N 156265 2025-03-28 20:59:41.31 2025-03-28 20:59:42.645 562476 12738 \N \N \N 156266 2025-03-28 20:59:41.31 2025-03-28 20:59:42.651 561895 12277 \N \N \N 156267 2025-03-28 20:59:41.31 2025-03-28 20:59:42.66 542196 11158 \N \N \N 156268 2025-03-28 20:59:41.31 2025-03-28 20:59:42.667 538216 11873 \N \N \N 156269 2025-03-28 20:59:41.31 2025-03-28 20:59:42.674 536721 14385 \N \N \N 156270 2025-03-28 20:59:41.31 2025-03-28 20:59:42.68 536443 11144 \N \N \N 156271 2025-03-28 20:59:41.31 2025-03-28 20:59:42.686 520803 7510 \N \N \N 156272 2025-03-28 20:59:41.31 2025-03-28 20:59:42.693 502990 20756 \N \N \N 156273 2025-03-28 20:59:41.31 2025-03-28 20:59:42.699 501599 848 \N \N \N 156274 2025-03-28 20:59:41.31 2025-03-28 20:59:42.705 476445 2789 \N \N \N 156275 2025-03-28 20:59:41.31 2025-03-28 20:59:42.711 474248 1825 \N \N \N 156276 2025-03-28 20:59:41.31 2025-03-28 20:59:42.722 471318 19813 \N \N \N 156277 2025-03-28 20:59:41.31 2025-03-28 20:59:42.729 469344 882 \N \N \N 156278 2025-03-28 20:59:41.31 2025-03-28 20:59:42.735 455727 6382 \N \N \N 156279 2025-03-28 20:59:41.31 2025-03-28 20:59:42.741 894071 21389 \N \N \N 156280 2025-03-28 20:59:41.31 2025-03-28 20:59:42.747 442547 4259 \N \N \N 156281 2025-03-28 20:59:41.31 2025-03-28 20:59:42.755 431776 9421 \N \N \N 156282 2025-03-28 20:59:41.31 2025-03-28 20:59:42.762 420644 20965 \N \N \N 156283 2025-03-28 20:59:41.31 2025-03-28 20:59:42.768 398525 20481 \N \N \N 156284 2025-03-28 20:59:41.31 2025-03-28 20:59:42.777 368792 11561 \N \N \N 156285 2025-03-28 20:59:41.31 2025-03-28 20:59:42.784 360667 19966 \N \N \N 156286 2025-03-28 20:59:41.31 2025-03-28 20:59:42.79 356507 17041 \N \N \N 156287 2025-03-28 20:59:41.31 2025-03-28 20:59:42.8 344342 782 \N \N \N 156288 2025-03-28 20:59:41.31 2025-03-28 20:59:42.806 336115 20597 \N \N \N 156289 2025-03-28 20:59:41.31 2025-03-28 20:59:42.812 303230 2735 \N \N \N 156290 2025-03-28 20:59:41.31 2025-03-28 20:59:42.818 594803 1519 \N \N \N 156291 2025-03-28 20:59:41.31 2025-03-28 20:59:42.825 293135 617 \N \N \N 156292 2025-03-28 20:59:41.31 2025-03-28 20:59:42.831 292913 19494 \N \N \N 156293 2025-03-28 20:59:41.31 2025-03-28 20:59:42.838 292912 9352 \N \N \N 156294 2025-03-28 20:59:41.31 2025-03-28 20:59:42.844 292817 13162 \N \N \N 156295 2025-03-28 20:59:41.31 2025-03-28 20:59:42.85 292770 10536 \N \N \N 156296 2025-03-28 20:59:41.31 2025-03-28 20:59:42.858 290175 21539 \N \N \N 156297 2025-03-28 20:59:41.31 2025-03-28 20:59:42.865 286058 20701 \N \N \N 156298 2025-03-28 20:59:41.31 2025-03-28 20:59:42.871 285391 13198 \N \N \N 156299 2025-03-28 20:59:41.31 2025-03-28 20:59:42.877 274688 1130 \N \N \N 156300 2025-03-28 20:59:41.31 2025-03-28 20:59:42.884 258595 21398 \N \N \N 156301 2025-03-28 20:59:41.31 2025-03-28 20:59:42.891 254976 4314 \N \N \N 156302 2025-03-28 20:59:41.31 2025-03-28 20:59:42.897 253811 6148 \N \N \N 156303 2025-03-28 20:59:41.31 2025-03-28 20:59:42.903 244507 11522 \N \N \N 156304 2025-03-28 20:59:41.31 2025-03-28 20:59:42.91 243454 658 \N \N \N 156305 2025-03-28 20:59:41.31 2025-03-28 20:59:42.92 236128 4650 \N \N \N 156306 2025-03-28 20:59:41.31 2025-03-28 20:59:42.926 234122 1577 \N \N \N 156307 2025-03-28 20:59:41.31 2025-03-28 20:59:42.933 226018 15526 \N \N \N 156308 2025-03-28 20:59:41.31 2025-03-28 20:59:42.939 224964 21575 \N \N \N 156309 2025-03-28 20:59:41.31 2025-03-28 20:59:42.948 220331 20596 \N \N \N 156310 2025-03-28 20:59:41.31 2025-03-28 20:59:42.965 219181 13365 \N \N \N 156311 2025-03-28 20:59:41.31 2025-03-28 20:59:42.973 217272 17824 \N \N \N 156312 2025-03-28 20:59:41.31 2025-03-28 20:59:42.981 216751 4819 \N \N \N 156313 2025-03-28 20:59:41.31 2025-03-28 20:59:42.989 211992 718 \N \N \N 156314 2025-03-28 20:59:41.31 2025-03-28 20:59:42.996 210447 4043 \N \N \N 156315 2025-03-28 20:59:41.31 2025-03-28 20:59:43.016 199143 2347 \N \N \N 156316 2025-03-28 20:59:41.31 2025-03-28 20:59:43.022 198137 9 \N \N \N 156317 2025-03-28 20:59:41.31 2025-03-28 20:59:43.032 187017 960 \N \N \N 156318 2025-03-28 20:59:41.31 2025-03-28 20:59:43.039 186287 6268 \N \N \N 156319 2025-03-28 20:59:41.31 2025-03-28 20:59:43.046 184682 20924 \N \N \N 156320 2025-03-29 20:59:41.857 2025-03-29 20:59:39.466 701142 10096 \N \N \N 156321 2025-03-29 20:59:41.857 2025-03-29 20:59:39.508 680686 18313 \N \N \N 156322 2025-03-29 20:59:41.857 2025-03-29 20:59:39.528 585900 20768 \N \N \N 156323 2025-03-29 20:59:41.857 2025-03-29 20:59:39.548 562967 9331 \N \N \N 156324 2025-03-29 20:59:41.857 2025-03-29 20:59:39.588 535816 15925 \N \N \N 156325 2025-03-29 20:59:41.857 2025-03-29 20:59:39.601 503456 4474 \N \N \N 156326 2025-03-29 20:59:41.857 2025-03-29 20:59:39.624 503456 15367 \N \N \N 156327 2025-03-29 20:59:41.857 2025-03-29 20:59:39.632 503456 10469 \N \N \N 156328 2025-03-29 20:59:41.857 2025-03-29 20:59:39.658 483198 20778 \N \N \N 156329 2025-03-29 20:59:41.857 2025-03-29 20:59:39.666 482908 2722 \N \N \N 156330 2025-03-29 20:59:41.857 2025-03-29 20:59:39.683 482271 21791 \N \N \N 156331 2025-03-29 20:59:41.857 2025-03-29 20:59:39.703 462853 21042 \N \N \N 156332 2025-03-29 20:59:41.857 2025-03-29 20:59:39.723 453088 13348 \N \N \N 156333 2025-03-29 20:59:41.857 2025-03-29 20:59:39.731 452090 1605 \N \N \N 156334 2025-03-29 20:59:41.857 2025-03-29 20:59:39.741 432357 8004 \N \N \N 156335 2025-03-29 20:59:41.857 2025-03-29 20:59:39.749 430129 5069 \N \N \N 156336 2025-03-29 20:59:41.857 2025-03-29 20:59:39.764 428630 2213 \N \N \N 156337 2025-03-29 20:59:41.857 2025-03-29 20:59:39.774 421606 14688 \N \N \N 156338 2025-03-29 20:59:41.857 2025-03-29 20:59:39.781 419892 9863 \N \N \N 156339 2025-03-29 20:59:41.857 2025-03-29 20:59:39.803 412002 2285 \N \N \N 156340 2025-03-29 20:59:41.857 2025-03-29 20:59:39.82 410351 15941 \N \N \N 156341 2025-03-29 20:59:41.857 2025-03-29 20:59:39.832 408216 20275 \N \N \N 156342 2025-03-29 20:59:41.857 2025-03-29 20:59:39.841 406511 17321 \N \N \N 156343 2025-03-29 20:59:41.857 2025-03-29 20:59:39.85 404408 13361 \N \N \N 156344 2025-03-29 20:59:41.857 2025-03-29 20:59:39.857 404070 2528 \N \N \N 156345 2025-03-29 20:59:41.857 2025-03-29 20:59:39.864 396273 7960 \N \N \N 156346 2025-03-29 20:59:41.857 2025-03-29 20:59:39.88 394599 7746 \N \N \N 156347 2025-03-29 20:59:41.857 2025-03-29 20:59:39.887 394134 21532 \N \N \N 156348 2025-03-29 20:59:41.857 2025-03-29 20:59:39.901 383851 5425 \N \N \N 156349 2025-03-29 20:59:41.857 2025-03-29 20:59:39.907 371177 16966 \N \N \N 156350 2025-03-29 20:59:41.857 2025-03-29 20:59:39.913 368218 6578 \N \N \N 156351 2025-03-29 20:59:41.857 2025-03-29 20:59:39.921 365286 9084 \N \N \N 156352 2025-03-29 20:59:41.857 2025-03-29 20:59:39.927 364797 19198 \N \N \N 156353 2025-03-29 20:59:41.857 2025-03-29 20:59:39.935 364707 13097 \N \N \N 156354 2025-03-29 20:59:41.857 2025-03-29 20:59:39.946 364699 929 \N \N \N 156355 2025-03-29 20:59:41.857 2025-03-29 20:59:39.969 362688 5500 \N \N \N 156356 2025-03-29 20:59:41.857 2025-03-29 20:59:39.981 353753 19189 \N \N \N 156357 2025-03-29 20:59:41.857 2025-03-29 20:59:39.993 352331 3506 \N \N \N 156358 2025-03-29 20:59:41.857 2025-03-29 20:59:40.004 352276 9611 \N \N \N 156359 2025-03-29 20:59:41.857 2025-03-29 20:59:40.018 350241 1438 \N \N \N 156360 2025-03-29 20:59:41.857 2025-03-29 20:59:40.026 334832 11716 \N \N \N 156361 2025-03-29 20:59:41.857 2025-03-29 20:59:40.036 334832 14503 \N \N \N 156362 2025-03-29 20:59:41.857 2025-03-29 20:59:40.056 322289 1120 \N \N \N 156363 2025-03-29 20:59:41.857 2025-03-29 20:59:40.071 320835 19346 \N \N \N 156364 2025-03-29 20:59:41.857 2025-03-29 20:59:40.092 404070 2741 \N \N \N 156365 2025-03-29 20:59:41.857 2025-03-29 20:59:40.11 312411 10342 \N \N \N 156366 2025-03-29 20:59:41.857 2025-03-29 20:59:40.118 307203 18468 \N \N \N 156367 2025-03-29 20:59:41.857 2025-03-29 20:59:40.129 305254 20782 \N \N \N 156368 2025-03-29 20:59:41.857 2025-03-29 20:59:40.139 305084 21332 \N \N \N 156369 2025-03-29 20:59:41.857 2025-03-29 20:59:40.145 305013 21701 \N \N \N 156370 2025-03-29 20:59:41.857 2025-03-29 20:59:40.152 305013 19992 \N \N \N 156371 2025-03-29 20:59:41.857 2025-03-29 20:59:40.158 305013 1002 \N \N \N 156372 2025-03-29 20:59:41.857 2025-03-29 20:59:40.168 303965 1713 \N \N \N 156373 2025-03-29 20:59:41.857 2025-03-29 20:59:40.182 297170 803 \N \N \N 156374 2025-03-29 20:59:41.857 2025-03-29 20:59:40.197 294529 21833 \N \N \N 156375 2025-03-29 20:59:41.857 2025-03-29 20:59:40.21 281032 10409 \N \N \N 156376 2025-03-29 20:59:41.857 2025-03-29 20:59:40.216 280473 8423 \N \N \N 156377 2025-03-29 20:59:41.857 2025-03-29 20:59:40.221 279768 9348 \N \N \N 156378 2025-03-29 20:59:41.857 2025-03-29 20:59:40.23 277815 1173 \N \N \N 156379 2025-03-29 20:59:41.857 2025-03-29 20:59:40.239 277324 1512 \N \N \N 156380 2025-03-29 20:59:41.857 2025-03-29 20:59:40.246 274043 9758 \N \N \N 156381 2025-03-29 20:59:41.857 2025-03-29 20:59:40.255 277930 19996 \N \N \N 156382 2025-03-29 20:59:41.857 2025-03-29 20:59:40.264 271876 5520 \N \N \N 156383 2025-03-29 20:59:41.857 2025-03-29 20:59:40.277 275520 4115 \N \N \N 156384 2025-03-29 20:59:41.857 2025-03-29 20:59:40.308 264388 21233 \N \N \N 156385 2025-03-29 20:59:41.857 2025-03-29 20:59:40.332 262818 1261 \N \N \N 156386 2025-03-29 20:59:41.857 2025-03-29 20:59:40.356 261159 2609 \N \N \N 156387 2025-03-29 20:59:41.857 2025-03-29 20:59:40.368 253505 10821 \N \N \N 156388 2025-03-29 20:59:41.857 2025-03-29 20:59:40.382 252465 20294 \N \N \N 156389 2025-03-29 20:59:41.857 2025-03-29 20:59:40.387 249517 12102 \N \N \N 156390 2025-03-29 20:59:41.857 2025-03-29 20:59:40.396 248163 13097 \N \N \N 156391 2025-03-29 20:59:41.857 2025-03-29 20:59:40.405 245451 21408 \N \N \N 156392 2025-03-29 20:59:41.857 2025-03-29 20:59:40.412 245375 732 \N \N \N 156393 2025-03-29 20:59:41.857 2025-03-29 20:59:40.42 245375 1785 \N \N \N 156394 2025-03-29 20:59:41.857 2025-03-29 20:59:40.426 243196 626 \N \N \N 156395 2025-03-29 20:59:41.857 2025-03-29 20:59:40.439 242851 12744 \N \N \N 156396 2025-03-29 20:59:41.857 2025-03-29 20:59:40.447 240348 11145 \N \N \N 156397 2025-03-29 20:59:41.857 2025-03-29 20:59:40.454 235610 1261 \N \N \N 156398 2025-03-29 20:59:41.857 2025-03-29 20:59:40.46 235220 5359 \N \N \N 156399 2025-03-29 20:59:41.857 2025-03-29 20:59:40.465 235144 21026 \N \N \N 156400 2025-03-29 20:59:41.857 2025-03-29 20:59:40.47 233885 676 \N \N \N 156401 2025-03-29 20:59:41.857 2025-03-29 20:59:40.475 232999 5069 \N \N \N 156402 2025-03-29 20:59:41.857 2025-03-29 20:59:40.483 232999 13599 \N \N \N 156403 2025-03-29 20:59:41.857 2025-03-29 20:59:40.49 232422 18306 \N \N \N 156404 2025-03-29 20:59:41.857 2025-03-29 20:59:40.495 226692 14941 \N \N \N 156405 2025-03-29 20:59:41.857 2025-03-29 20:59:40.502 225649 5069 \N \N \N 156406 2025-03-29 20:59:41.857 2025-03-29 20:59:40.508 223597 17064 \N \N \N 156407 2025-03-29 20:59:41.857 2025-03-29 20:59:40.514 222905 18393 \N \N \N 156408 2025-03-29 20:59:41.857 2025-03-29 20:59:40.522 222567 14669 \N \N \N 156409 2025-03-29 20:59:41.857 2025-03-29 20:59:40.54 218333 17148 \N \N \N 156410 2025-03-29 20:59:41.857 2025-03-29 20:59:40.564 216479 14465 \N \N \N 156411 2025-03-29 20:59:41.857 2025-03-29 20:59:40.572 215833 16842 \N \N \N 156412 2025-03-29 20:59:41.857 2025-03-29 20:59:40.576 215754 15052 \N \N \N 156413 2025-03-29 20:59:41.857 2025-03-29 20:59:40.582 215684 9367 \N \N \N 156414 2025-03-29 20:59:41.857 2025-03-29 20:59:40.587 215629 9920 \N \N \N 156415 2025-03-29 20:59:41.857 2025-03-29 20:59:40.592 215629 2123 \N \N \N 156416 2025-03-29 20:59:41.857 2025-03-29 20:59:40.597 215627 2013 \N \N \N 156417 2025-03-29 20:59:41.857 2025-03-29 20:59:40.603 215612 10096 \N \N \N 156418 2025-03-29 20:59:41.857 2025-03-29 20:59:40.607 215557 1130 \N \N \N 156419 2025-03-29 20:59:41.857 2025-03-29 20:59:40.614 215556 661 \N \N \N 156420 2025-03-29 20:59:41.857 2025-03-29 20:59:40.621 215556 722 \N \N \N 156421 2025-03-29 20:59:41.857 2025-03-29 20:59:40.627 213570 20120 \N \N \N 156422 2025-03-29 20:59:41.857 2025-03-29 20:59:40.633 211632 720 \N \N \N 156423 2025-03-29 20:59:41.857 2025-03-29 20:59:40.638 210558 14651 \N \N \N 156424 2025-03-29 20:59:41.857 2025-03-29 20:59:40.646 209945 9982 \N \N \N 156425 2025-03-29 20:59:41.857 2025-03-29 20:59:40.65 208733 8998 \N \N \N 156426 2025-03-29 20:59:41.857 2025-03-29 20:59:40.655 208733 13921 \N \N \N 156427 2025-03-29 20:59:41.857 2025-03-29 20:59:40.677 208733 10056 \N \N \N 156428 2025-03-29 20:59:41.857 2025-03-29 20:59:40.689 208733 9366 \N \N \N 156429 2025-03-29 20:59:41.857 2025-03-29 20:59:40.697 208397 8242 \N \N \N 156430 2025-03-29 20:59:41.857 2025-03-29 20:59:40.704 207405 6573 \N \N \N 156431 2025-03-29 20:59:41.857 2025-03-29 20:59:40.713 207263 8416 \N \N \N 156432 2025-03-29 20:59:41.857 2025-03-29 20:59:40.722 207051 4984 \N \N \N 156433 2025-03-29 20:59:41.857 2025-03-29 20:59:40.728 203775 5590 \N \N \N 156434 2025-03-29 20:59:41.857 2025-03-29 20:59:40.749 202603 21202 \N \N \N 156435 2025-03-29 20:59:41.857 2025-03-29 20:59:40.757 202603 1424 \N \N \N 156436 2025-03-29 20:59:41.857 2025-03-29 20:59:40.764 201674 669 \N \N \N 156437 2025-03-29 20:59:41.857 2025-03-29 20:59:40.769 201674 2061 \N \N \N 156438 2025-03-29 20:59:41.857 2025-03-29 20:59:40.782 201188 21033 \N \N \N 156439 2025-03-29 20:59:41.857 2025-03-29 20:59:40.792 201001 20201 \N \N \N 156440 2025-03-29 20:59:41.857 2025-03-29 20:59:40.805 201710 17184 \N \N \N 156441 2025-03-29 20:59:41.857 2025-03-29 20:59:40.811 198354 16633 \N \N \N 156442 2025-03-29 20:59:41.857 2025-03-29 20:59:40.818 198150 5455 \N \N \N 156443 2025-03-29 20:59:41.857 2025-03-29 20:59:40.824 198146 10608 \N \N \N 156444 2025-03-29 20:59:41.857 2025-03-29 20:59:40.833 198146 1092 \N \N \N 156445 2025-03-29 20:59:41.857 2025-03-29 20:59:40.841 198146 16357 \N \N \N 156446 2025-03-29 20:59:41.857 2025-03-29 20:59:40.847 198116 19346 \N \N \N 156447 2025-03-29 20:59:41.857 2025-03-29 20:59:40.853 198113 15336 \N \N \N 156448 2025-03-29 20:59:41.857 2025-03-29 20:59:40.859 198113 20913 \N \N \N 156449 2025-03-29 20:59:41.857 2025-03-29 20:59:40.867 198113 16347 \N \N \N 156450 2025-03-29 20:59:41.857 2025-03-29 20:59:40.879 198113 5057 \N \N \N 156451 2025-03-29 20:59:41.857 2025-03-29 20:59:40.899 198113 10934 \N \N \N 156452 2025-03-29 20:59:41.857 2025-03-29 20:59:40.905 198113 19992 \N \N \N 156453 2025-03-29 20:59:41.857 2025-03-29 20:59:40.915 198113 11298 \N \N \N 156454 2025-03-29 20:59:41.857 2025-03-29 20:59:40.93 198113 11996 \N \N \N 156455 2025-03-29 20:59:41.857 2025-03-29 20:59:40.949 198113 634 \N \N \N 156456 2025-03-29 20:59:41.857 2025-03-29 20:59:40.964 198113 1620 \N \N \N 156457 2025-03-29 20:59:41.857 2025-03-29 20:59:40.973 198113 13055 \N \N \N 156458 2025-03-29 20:59:41.857 2025-03-29 20:59:40.979 198113 10944 \N \N \N 156459 2025-03-29 20:59:41.857 2025-03-29 20:59:40.989 198113 13987 \N \N \N 156460 2025-03-29 20:59:41.857 2025-03-29 20:59:41.015 198113 20922 \N \N \N 156461 2025-03-29 20:59:41.857 2025-03-29 20:59:41.024 198113 15762 \N \N \N 156462 2025-03-29 20:59:41.857 2025-03-29 20:59:41.036 198113 8954 \N \N \N 156463 2025-03-29 20:59:41.857 2025-03-29 20:59:41.043 198113 20152 \N \N \N 156464 2025-03-29 20:59:41.857 2025-03-29 20:59:41.055 198113 20243 \N \N \N 156465 2025-03-29 20:59:41.857 2025-03-29 20:59:41.069 198113 16988 \N \N \N 156466 2025-03-29 20:59:41.857 2025-03-29 20:59:41.079 198113 10063 \N \N \N 156467 2025-03-29 20:59:41.857 2025-03-29 20:59:41.109 198113 9496 \N \N \N 156468 2025-03-29 20:59:41.857 2025-03-29 20:59:41.118 198113 3411 \N \N \N 156469 2025-03-29 20:59:41.857 2025-03-29 20:59:41.124 198113 17237 \N \N \N 156470 2025-03-29 20:59:41.857 2025-03-29 20:59:41.13 198113 15463 \N \N \N 156471 2025-03-29 20:59:41.857 2025-03-29 20:59:41.141 198113 1723 \N \N \N 156472 2025-03-29 20:59:41.857 2025-03-29 20:59:41.151 197030 19637 \N \N \N 156473 2025-03-29 20:59:41.857 2025-03-29 20:59:41.159 196631 14465 \N \N \N 156474 2025-03-29 20:59:41.857 2025-03-29 20:59:41.165 196428 21714 \N \N \N 156475 2025-03-29 20:59:41.857 2025-03-29 20:59:41.175 196046 10056 \N \N \N 156476 2025-03-29 20:59:41.857 2025-03-29 20:59:41.181 196021 14939 \N \N \N 156477 2025-03-29 20:59:41.857 2025-03-29 20:59:41.187 194184 19535 \N \N \N 156478 2025-03-29 20:59:41.857 2025-03-29 20:59:41.194 193086 14376 \N \N \N 156479 2025-03-29 20:59:41.857 2025-03-29 20:59:41.201 191453 21320 \N \N \N 156480 2025-03-29 20:59:41.857 2025-03-29 20:59:41.208 189828 9 \N \N \N 156481 2025-03-29 20:59:41.857 2025-03-29 20:59:41.217 188514 16830 \N \N \N 156482 2025-03-29 20:59:41.857 2025-03-29 20:59:41.224 187901 14941 \N \N \N 156483 2025-03-29 20:59:41.857 2025-03-29 20:59:41.232 187882 7913 \N \N \N 156484 2025-03-29 20:59:41.857 2025-03-29 20:59:41.238 187822 5499 \N \N \N 156485 2025-03-29 20:59:41.857 2025-03-29 20:59:41.253 187712 16769 \N \N \N 156486 2025-03-29 20:59:41.857 2025-03-29 20:59:41.261 187452 1439 \N \N \N 156487 2025-03-29 20:59:41.857 2025-03-29 20:59:41.271 186380 21088 \N \N \N 156488 2025-03-29 20:59:41.857 2025-03-29 20:59:41.285 185869 19403 \N \N \N 156489 2025-03-29 20:59:41.857 2025-03-29 20:59:41.293 185845 3683 \N \N \N 156490 2025-03-29 20:59:41.857 2025-03-29 20:59:41.302 185841 14220 \N \N \N 156491 2025-03-29 20:59:41.857 2025-03-29 20:59:41.309 185808 21683 \N \N \N 156492 2025-03-29 20:59:41.857 2025-03-29 20:59:41.314 185806 16809 \N \N \N 156493 2025-03-29 20:59:41.857 2025-03-29 20:59:41.322 185793 5085 \N \N \N 156494 2025-03-29 20:59:41.857 2025-03-29 20:59:41.327 185770 10591 \N \N \N 156495 2025-03-29 20:59:41.857 2025-03-29 20:59:41.333 185770 5195 \N \N \N 156496 2025-03-29 20:59:41.857 2025-03-29 20:59:41.338 185760 761 \N \N \N 156497 2025-03-29 20:59:41.857 2025-03-29 20:59:41.344 185737 9 \N \N \N 156498 2025-03-29 20:59:41.857 2025-03-29 20:59:41.353 185737 21207 \N \N \N 156499 2025-03-29 20:59:41.857 2025-03-29 20:59:41.36 185737 1650 \N \N \N 156500 2025-03-29 20:59:41.857 2025-03-29 20:59:41.366 185737 18232 \N \N \N 156501 2025-03-29 20:59:41.857 2025-03-29 20:59:41.371 185737 20062 \N \N \N 156502 2025-03-29 20:59:41.857 2025-03-29 20:59:41.382 185737 2361 \N \N \N 156503 2025-03-29 20:59:41.857 2025-03-29 20:59:41.388 185737 20201 \N \N \N 156504 2025-03-29 20:59:41.857 2025-03-29 20:59:41.397 185737 5129 \N \N \N 156505 2025-03-29 20:59:41.857 2025-03-29 20:59:41.403 179068 1596 \N \N \N 156506 2025-03-29 20:59:41.857 2025-03-29 20:59:41.41 178914 18393 \N \N \N 156507 2025-03-29 20:59:41.857 2025-03-29 20:59:41.425 178914 20854 \N \N \N 156508 2025-03-29 20:59:41.857 2025-03-29 20:59:41.432 176941 14818 \N \N \N 156509 2025-03-29 20:59:41.857 2025-03-29 20:59:41.438 176847 14905 \N \N \N 156510 2025-03-29 20:59:41.857 2025-03-29 20:59:41.444 176679 13903 \N \N \N 156511 2025-03-29 20:59:41.857 2025-03-29 20:59:41.449 171234 1801 \N \N \N 156512 2025-03-29 20:59:41.857 2025-03-29 20:59:41.462 169146 21040 \N \N \N 156513 2025-03-29 20:59:41.857 2025-03-29 20:59:41.48 167211 10519 \N \N \N 156514 2025-03-29 20:59:41.857 2025-03-29 20:59:41.494 166607 14278 \N \N \N 156515 2025-03-29 20:59:41.857 2025-03-29 20:59:41.501 166594 20377 \N \N \N 156516 2025-03-29 20:59:41.857 2025-03-29 20:59:41.507 166540 9 \N \N \N 156517 2025-03-29 20:59:41.857 2025-03-29 20:59:41.513 164645 5978 \N \N \N 156518 2025-03-29 20:59:41.857 2025-03-29 20:59:41.522 163662 20858 \N \N \N 156519 2025-03-29 20:59:41.857 2025-03-29 20:59:41.528 161516 20829 \N \N \N 156520 2025-03-29 20:59:41.857 2025-03-29 20:59:41.534 158578 20710 \N \N \N 156521 2025-03-29 20:59:41.857 2025-03-29 20:59:41.545 152087 831 \N \N \N 156522 2025-03-29 20:59:41.857 2025-03-29 20:59:41.551 151703 1718 \N \N \N 156523 2025-03-29 20:59:41.857 2025-03-29 20:59:41.557 150419 20799 \N \N \N 156524 2025-03-29 20:59:41.857 2025-03-29 20:59:41.568 150419 19094 \N \N \N 156525 2025-03-29 20:59:41.857 2025-03-29 20:59:41.575 149533 798 \N \N \N 156526 2025-03-29 20:59:41.857 2025-03-29 20:59:41.582 149176 4654 \N \N \N 156527 2025-03-29 20:59:41.857 2025-03-29 20:59:41.59 149151 894 \N \N \N 156528 2025-03-29 20:59:41.857 2025-03-29 20:59:41.599 149098 4602 \N \N \N 156529 2025-03-29 20:59:41.857 2025-03-29 20:59:41.606 149095 14449 \N \N \N 156530 2025-03-29 20:59:41.857 2025-03-29 20:59:41.616 149095 9341 \N \N \N 156531 2025-03-29 20:59:41.857 2025-03-29 20:59:41.622 149095 19138 \N \N \N 156532 2025-03-29 20:59:41.857 2025-03-29 20:59:41.63 149095 14385 \N \N \N 156533 2025-03-29 20:59:41.857 2025-03-29 20:59:41.636 149095 9365 \N \N \N 156534 2025-03-29 20:59:41.857 2025-03-29 20:59:41.644 149095 3213 \N \N \N 156535 2025-03-29 20:59:41.857 2025-03-29 20:59:41.651 149095 20646 \N \N \N 156536 2025-03-29 20:59:41.857 2025-03-29 20:59:41.664 149095 17171 \N \N \N 156537 2025-03-29 20:59:41.857 2025-03-29 20:59:41.67 149095 12334 \N \N \N 156538 2025-03-29 20:59:41.857 2025-03-29 20:59:41.686 149095 15091 \N \N \N 156539 2025-03-29 20:59:41.857 2025-03-29 20:59:41.694 142449 13987 \N \N \N 156540 2025-03-29 20:59:41.857 2025-03-29 20:59:41.702 141099 9331 \N \N \N 156541 2025-03-29 20:59:41.857 2025-03-29 20:59:41.709 138475 940 \N \N \N 156542 2025-03-29 20:59:41.857 2025-03-29 20:59:41.716 131598 7746 \N \N \N 156543 2025-03-29 20:59:41.857 2025-03-29 20:59:41.731 129641 687 \N \N \N 156544 2025-03-29 20:59:41.857 2025-03-29 20:59:41.743 126592 19569 \N \N \N 156545 2025-03-29 20:59:41.857 2025-03-29 20:59:41.749 126282 618 \N \N \N 156546 2025-03-29 20:59:41.857 2025-03-29 20:59:41.755 122257 3979 \N \N \N 156547 2025-03-29 20:59:41.857 2025-03-29 20:59:41.765 119279 16145 \N \N \N 156548 2025-03-29 20:59:41.857 2025-03-29 20:59:41.773 119279 2749 \N \N \N 156549 2025-03-29 20:59:41.857 2025-03-29 20:59:41.778 119276 13143 \N \N \N 156550 2025-03-29 20:59:41.857 2025-03-29 20:59:41.791 119276 20861 \N \N \N 156551 2025-03-29 20:59:41.857 2025-03-29 20:59:41.797 119276 20663 \N \N \N 156552 2025-03-29 20:59:41.857 2025-03-29 20:59:41.807 119276 15239 \N \N \N 156553 2025-03-29 20:59:41.857 2025-03-29 20:59:41.819 119276 9863 \N \N \N 156554 2025-03-29 20:59:41.857 2025-03-29 20:59:41.826 119276 20646 \N \N \N 156555 2025-03-29 20:59:41.857 2025-03-29 20:59:41.831 119276 12946 \N \N \N 156556 2025-03-29 20:59:41.857 2025-03-29 20:59:41.837 119276 20998 \N \N \N 156557 2025-03-29 20:59:41.857 2025-03-29 20:59:41.843 119276 21482 \N \N \N 156558 2025-03-29 20:59:41.857 2025-03-29 20:59:41.85 119276 963 \N \N \N 156559 2025-03-29 20:59:41.857 2025-03-29 20:59:41.857 119276 21810 \N \N \N \. -- -- Data for Name: Invite; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Invite" (id, created_at, updated_at, "userId", gift, "limit", revoked, description, "giftedCount") FROM stdin; \. -- -- Data for Name: Invoice; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Invoice" (id, created_at, updated_at, "userId", hash, bolt11, "expiresAt", "confirmedAt", cancelled, "msatsRequested", "msatsReceived", "desc", preimage, "isHeld", comment, "lud18Data", "confirmedIndex", "actionState", "actionType", "actionId", "actionArgs", "actionError", "actionResult", "actionOptimistic", "cancelledAt", "predecessorId", "userCancel", "paymentAttempt", "retryPendingSince") FROM stdin; \. -- -- Data for Name: InvoiceForward; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."InvoiceForward" (id, created_at, updated_at, bolt11, "maxFeeMsats", "walletId", "expiryHeight", "acceptHeight", "invoiceId", "withdrawlId") FROM stdin; \. -- -- Data for Name: Item; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Item" (id, created_at, updated_at, title, text, url, "userId", "parentId", path, "pinId", latitude, location, longitude, "maxBid", "maxSalary", "minSalary", remote, "subName", "statusUpdatedAt", status, company, "weightedVotes", boost, "uploadId", "pollCost", "paidImgLink", "commentMsats", "lastCommentAt", ncomments, msats, "weightedDownVotes", bio, freebie, "deletedAt", "otsFile", "otsHash", bounty, "rootId", "bountyPaidTo", upvotes, "weightedComments", "imgproxyUrls", "noteId", outlawed, "pollExpiresAt", "lastZapAt", "apiKey", "invoiceActionState", "invoiceId", "invoicePaidAt", cost, "oldBoost", mcredits, "commentMcredits", "nDirectComments", "subWeightedDownVotes", "subWeightedVotes") FROM stdin; 448874 2025-03-23 00:00:42.895 2025-03-29 22:39:46.783 Hedgehog: A protocol for asynchronous layer two bitcoin payments \N https://www.youtube.com/watch?v=-JeBDVPH1gA 20734 \N 448874 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 11.1386113977115 0 \N \N f 0 \N 0 100795639 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 132247 2024-02-25 18:39:47.926 2025-03-29 22:39:46.783 Anita Posch Satsraiser ![anita](https://imgprxy.stacker.news/PLjnXvX-pzUar_UOediT0jkLUdbRhZFnEjsgKmqosQ8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvNHhmUGtGajkvYW5pdGEuanBn)\n\n\n#### ***“In an environment filled with noise, her work is crystal clear and honest."***\n\n#### ***Andreas M. Antonopoulos***\n\nThe idea for this event came from @grayruby. I have been posting here for the past few months about Anita’s activities and forwarding the earned sats to her Stacker News account, with limited success. Now, @grayruby and I are kicking it up a notch.\n\nI am starting things off with a 100,000 sats boost. @grayruby has agreed to zap this post 100,000 sats, and his wife has agreed to zap an additional 20,000 sats. Keyan Kousha (@k00b), Stacker News founder and CEO, has graciously agreed to zap 100,000 to this post, in essence reimbursing the boost I made to assure visibility. It’s then up to the Stacker News community to see how big we can make the final number.\n\nIf we are successful, this might just be the first of many Stacker News charity satsraisers. If so, I can’t think of a better way to start than with Anita Posch and Bitcoin For Fairness. \n\n### Bitcoin For Fairness Resources and Programs\n\nIf you have some time, watch this [documentary](https://www.youtube.com/watch?v=AXLiwrrk3sk) to get an idea of how Anita sees bitcoin as a tool for enforcing human rights:\n\nOn the BFF [web site](https://bffbtc.org/) you can find many learning resources, including books, instructional videos, a weekly newsletter, and [The Anita Posch Show](https://fountain.fm/show/GEO1bBIhUkFLCnAaqXQ5) podcast, which I listen to on fountain. She’s been doing this podcast since August of 2018. Her first episode’s guest was Saifedean Ammous, who had recently published “The Bitcoin Standard.” \n\nI have subscribed to her newsletter, The Orange Journal, for the past year or so, and I highly recommend it for its informative content.\n\nThe organization also hosts meetups and workshops in African nations. \n\nAccording to the web site:\n\n> Bitcoin For Fairness is a non-profit initiative raising awareness and understanding of Bitcoin for people in emerging countries and for disadvantaged communities. We connect and boost the profile of local stakeholders, identify and work with educators on the ground to expand Bitcoin adoption locally and Bitcoin awareness globally.\n\nI’m glad we decided to do this fundraiser now, because Bitcoin For Fairness just released its [Crack The Orange](https://my.cracktheorange.com/) platform. Here is how that program is described in The Orange Journal:\n> \n> #### Bitcoin made easy\n\n> Over the last years in the Bitcoin space, I have observed and understood the obstacles in Bitcoin education. The amount of Bitcoin information out there can be overwhelming and make it hard to orient oneself. This lack of clarity creates a fertile ground for scammers, who in return give Bitcoin a bad reputation. After my experiences in Africa, I don’t believe in quick fixes such as sending a shop or restaurant owner some Satoshis and leaving them shortly after, to fend for themselves. Other attempts are very technical and require a deeper understanding of highly technical terms which can be a barrier for people without previous economic education.\n\n\n\n> #### So what was missing?\n\n> It became clear to me that people needed a structure and a trustworthy contact person. Someone they could ask questions after they learned something new. Also different learners require different materials. This is why I created my learning platform Crack The Orange which includes text, video, audio, and the possibility of live call participation, in which learners can ask me and other thought leaders questions that come up during education. The goal of this program is to offer long term sustainable Bitcoin education. Today I want to offer you a 10% discount on all products paid in national currencies. The coupon code 21ORANGES is valid until the 21st of September 2023.\n\n\n\n> #### Course & Membership Options\n\n> Memberships\n> 1. Become a Supporter & get access to the private community channel.\n\n> 2. Become an Enthusiast & get access to one live Q&A with   per month. Users have the possibility to ask questions, get access to exclusive content, the (L)earn Bitcoin ebook and free access to my private community channel.\n\n> 3. Become a Builder & be a part of podcast recordings with special guests, get access to one live Q&A per month with me, the possibility to ask questions, exclusive content, the (L)earn Bitcoin ebook and free access to my private community channel.\n\n> 4. Become a Course Master & get access to all (future) courses as long as subscribed. Be a part of podcast recordings with special guests, live Q&As with me, the chance to ask questions, exclusive content, the (L)earn Bitcoin ebook and free access to the private community channel.\n\n\n\n> #### (L)earn Bitcoin Course\n\n> Heart of the educational program is the (L)earn Bitcoin course, which includes a one-year membership, where students can receive a certificate of completion after successfully finishing the course. This credential paves the way to becoming a "Certified Bitcoin Professional'' through the CryptoCurrency Certification Consortium (C4), equipping individuals to leverage Bitcoin technology professionally.\n\n> Crack The Orange's impact extends beyond membership and courses. Scholarships made possible through donations grant Global South Bitcoin educators and community builders access to transformative education, breaking global financial barriers.\n\n\n\n\n\n![journ](https://imgprxy.stacker.news/ZHlSd5EJxwPAC7EU5a1jL0Dp8_Lgqzb3RuKVGH5At4c/rs:fit:600:500:0/g:no/aHR0cHM6Ly9iZmZidGMub3JnL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzEwL2JpdGNvaW4td29yc2hvcC5qcGc)\n\n### “If bitcoin works here, it can work anywhere.”\n\nSomeone asked Anita why she went to Zimbabwe to educate people about bitcoin. I assumed it was because of that nation’s notorious hyperinflation. I’m sure that played a role, but she said that she wanted to show people that bitcoin can be adopted anywhere and everywhere. Listen to a few of her podcasts. You’ll wonder where she gets her drive and focus. \n\nAnita grew up in Austria. Before becoming a bitcoin activist she worked in web development and e-commerce. As a woman, she describes the subtle or overt slights and disadvantages of being under appreciated in a male dominated world. She is openly gay and a professed feminist. I have never seen any indication that her politics has affected her success as a bitcoin activist. She speaks at bitcoin conferences and events throughout the world. She is a frequent guest on the most popular bitcoin podcasts. Her standing in the community belies the common misconception that bitcoin is only for “alt right” men, whatever the hell alt right even means. Bitcoin doesn’t give a damn about your politics or beliefs. Bitcoin is freedom for everyone, the opposite of the ideals embraced by virtue signaling authoritarians. \n\nBitcoin is also still characterized in some circles as a scam or get rich quick scheme. The fact that this bullshit still gains traction amazes me. Maybe those pushing these narratives should follow Anita around for a few weeks, if they can keep up with her.\n\nBitcoin is about proof of work, and that’s where Anita excels.\n\nShe has dedicated her life to educating disadvantaged communities in the global south about bitcoin. She walks the walk. She lives on bitcoin, although doing so is not always convenient, and sometimes the volatility causes a loss of purchasing power. She’s not in it for a lambo. She’s not “investing” in bitcoin with the goal of gaining great wealth. I can’t imagine her saying “have fun staying poor”. She spends a good part of her life in the Global South, in overcrowded cities or tiny isolated villages. Internet connectivity is spotty and blackouts are frequent. Basic necessities are sometimes in short supply. It’s not about Larry Fink and BlackRock. It’s about the communities that have been victimized by the neo colonialism of organizations like the International Monetary Fund and the World Bank. It’s about those African nations forced to use the [CFA franc](https://en.wikipedia.org/wiki/CFA_franc), which drains these nations of their resources while enriching France.\n\n### “Keep The Unbanked Unbanked”\n\nI heard her say this on a podcast once. It stuck with me. The point is that bitcoin is the only bank you need. Many people in the countries where she works have never had a bank account. They don’t need one. She describes the lightning network as your checking account, and onchain bitcoin as your savings account. She intentionally keeps her educational materials simple and practical. She isn’t teaching about merkle trees and elliptic curve cryptography. She is teaching how to use bitcoin as the solid, bullet proof money that it is.\n\nIf you look at the Bitcoin For Fairness web site, there are links to videos and blog posts teaching how to download a wallet to a cell phone, where to buy bitcoin, and a guide to the Machankura platform, which \n\n> allows you to buy goods, send and receive bitcoin via the Lightning Network without the need for internet or smartphone.\n\nThis is all basic, nuts and bolts advice to get you using bitcoin right away. There is little technical theory. BFF does provide links to resources for those who do want to pursue a career in bitcoin development, but that’s not where the emphasis lies. \n\n![table](https://imgprxy.stacker.news/QwTKf004luAP1Dltnt2MiG1wGx8oOuOZsGTyWwh8LH0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9iZmZidGMub3JnL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIzLzAxL2JmZi5qcGVn)\n\n### My Goals\n\nLearning about Anita and the many others in the bitcoin community doing this type of work always makes me feel a little guilty. I may be obsessed with bitcoin, but it’s mostly through reading and interacting with other bitcoiners on Stacker News and Nostr. I surf the web while comfortably lounging on my cushy recliner chair. \n\n![chair](https://imgprxy.stacker.news/TXK7OF7iGblc13vtfPWeQ9jXPr2So16VslRTIKJLYbY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvZFE0RmhnMnkvY2hhaXIuanBn)\n\nSo I want to make some changes. I want to get off my ass and spend more time working on fundraising for the people who are dedicating their lives to bitcoin education and adoption. This satsraiser is a small start, but it’s a start.\n\n\n\nAnother thing I am trying to do is also inspired by Anita. I am trying to get closer to the ideal of “living on bitcoin.” I have used the excuse that it’s too difficult for too long. I’m going to take it one expense at a time. I’m asking local merchants if they accept bitcoin. I get some weird looks. I haven’t had much success. I hope to get better with practice.\n\nI’m asking you to help too. Give what you can\n\n### How To Help\n\n- You can zap this post. All sats are directed to @anita ‘s Stacker News wallet. \n\n- You can privately donate to Bitcoin For Fairness on their [web site](https://bffbtc.org/donate/).\n\nWhatever you choose, please reply to this post if you want your support to be recognized.\n\n\nIf you can’t spare the sats right now, you can contribute to the bitcoin cause in other ways. Use Anita Posch as your model. You don’t need to travel half way around the world to find disadvantaged communities that would benefit from the establishment of a bitcoin circular economy. There are homeless encampments throughout the U.S. There are plenty of impoverished people in western Europe. You speak their language. You already have a leg up on Anita. You know their culture. The people you encounter are more likely to have a cell phone and a reliable internet connection. The neighborhoods you visit won’t be under constant threat of blackouts. Maybe you can establish the next Bitcoin For Fairness.\n\nThanks,\nSiggy\n\n\n\n\n\n\n\n\n \N 17798 \N 132247 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4502223696446 0 \N \N f 0 \N 0 140605281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51706 2023-08-18 14:59:48.704 2025-03-29 22:39:46.783 My Dad Hates That I Work in the Bitcoin Industry \nI apologize ahead of time for the long rant, but I had to get this out of my head and I don't really have anyone else to share it with.\n\nSome background: My dad and I have been running a marketing LLC together since 2010. It doesn’t make a lot of money, but it pays the bills. I got into bitcoin heavily around 2017, and over the course of 4 years I managed to stack 2 full bitcoin. As someone who only made about 18k a year, this was a huge achievement for me. \n\nIn 2021 I went to my first bitcoin conference, met some people, and through a series of events found myself in Austin, TX with a group of guys who were trying to create a bitcoin startup. Outside of esoteric pursuits, supporting bitcoin is my #1 passion in life, and this startup seemed like my calling, like I was meant to help it succeed.\n\nSo I spent 6 months flying back and forth to help in any ways I could (mostly design work). When they got funded, I packed up my car, left my home and a 2 year relationship, and went to be in Austin full-time while living off of my bitcoin savings. \n\nDuring my first few months living in Austin, I was told they still couldn't pay me anything, but that they could give me a discount on office space. I was asked to “please don’t leave”, and was told that if I stayed and continued to help as I’d been doing, things would eventually come through. \n\nI now realize this was the point I should have left, but I felt like I had found a family who needed me, that I was making a difference, and most of all, I loved what I was doing, so I kept faith. \n\nWhen the startup was facing ruin due to one of the founders who wasted runway money on personal purchases like a Tesla and pocketing 30k, and was looking for an exit by closing the doors, I doubled down my efforts and did everything I could to keep it alive as we transitioned to new leadership.\n\nAnd even though I abandoned the LLC with my dad in order to help this bitcoin startup, he continued to support me for taking a chance at trying to succeed at what I loved doing. \n\nOver the course of 9 months I burned through my entire bitcoin savings, and when I ran out of money completely due to a medical emergency, I had no choice but to return home, where I foolishly continued to work on a project for the startup. I even borrowed money from my mom to do so.\n\nWhat I didn’t realize was that when I left I would be completely cut off from the bitcoin startup I had devoted so much of my time and resources to. It was like I didn’t exist anymore - I got no support and all of my attempts at communication were ignored.\n\nFinally realizing that these people obviously didn’t care about me, I asked my dad to drive with me down to Austin to pack up my office. He agreed to help, and he expected that to be the end of my bitcoin journey.\n\nInstead, I’ve continued to work on bitcoin adoption projects and trying to secure bitcoin freelance jobs. \n\nThis is where the animosity from my dad started. \n\nHe can’t understand why I continue to work towards a future in an industry which burned me so badly and left me completely broke and broken. It is a point of constant feuding. He never wants to hear the word “bitcoin” again and I simply don’t know what to do. \n\nHe doesn't understand that bitcoin is so much more than the startup I was involved with, or the passion I have for the good bitcoin can do for the world. I feel completely burned out - our marketing LLC is defunct after over a year of being stalled, and having no bitcoin while watching the price rise has me in a state of frozen panic as I realize I will never recover anything close to the 2 BTC I had.\n\nI realize it may seem naive to most people that I devoted my time and energy without being paid anything - and even writing this out I feel like a total idiot - but I always kept the faith that everything would work out if I did the right things. It never even occurred to me that I was being taken advantage of for the personal gain of others, or that I, in fact, meant so little to them. It's caused a major depression which I can't seem to find my way out of.\n\nAs I've mentioned, I don't really have anyone to share these things with, so thanks for listening. There's a few lessons in here somewhere, for those who will to see it. \N 2709 \N 51706 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7071670665108 0 \N \N f 0 \N 0 2811956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 120704 2024-01-30 11:55:58.636 2025-03-29 22:39:46.783 I'm closing my old 300 channels Lightning node, here are the reasons GM stackers!!\n\n(español abajo)\n\nI am new to Stacker, but I am an old gangster who has been in Bitcoin since 2011, and have experienced all the ups and downs of Bitcoin.\n\nSince around 2018, I have been running a Lightning node that has become quite popular, with up to 8 BTC of liquidity and around 300 channels. At first it was on LND, but then I switched to CLIGHTNING due to all the bugs that LND had and which caused me to lose some money. Not only that, my node is running entirely on a mobile 4G connection, as I am always moving and don't want my node in a data center because I'm paranoid about controlling my machines, especially with Bitcoin, the great treasure.\n\nSince then, the number of channels in my node has decreased from 300 to 150 to 100, then 50, and so on, as well as the liquidity, down to 2 BTC. The reason for this is mainly something I didn't suspect before starting this adventure, and it is that maintaining a Lightning node requires a lot of work. For this reason, three years ago, I gave up working on the node, installed CLBOSS (an automatic node maintenance software), and to be honest, it has worked quite well and done a better job than me.\n\nHowever, even with CLBOSS, I have suffered many problems that have also caused me to lose money. The worst of these problems was that the SSD where my node resided got damaged, causing corruption in the CLIGHTNING database and forcing the closure of half of my channels, losing a significant amount in miner fees.\n\nDespite all this, I tried to update CLIGHTNING and another new bug prevented me from doing so, and that was the last straw. So much effort, for what? With all the routing, I barely earned 400ksats, which doesn't even cover maintenance costs, let alone my time. So I made a list of reasons why a normal person, or "plebeian," might not be interested in maintaining a Bitcoin node, and there are many:\n\n- Too much work and time spent maintaining the node.\n- Meager earnings.\n- High technical knowledge requirements if you really want to have more than 5 or 10 channels and resolve technical issues that will undoubtedly arise in the years to come.\n- Limited mobile options (forces you to set up a reverse proxy with a VPS in some datacenter if you want to use clearnet).\n- Excessive risk, money is at stake and hardware can fail, or a bug in the software could arise.\n- Limited automation options (the only one that works well is CLBOSS and it's only available for CLIGHTNING).\n- Periodic headaches.\n\nFor all these reasons, I have decided that maintaining a Lightning node, despite having had it for years, is not worth it, no matter how much enthusiasm I have or how much I like Bitcoin and Lightning. I join the long list of plebeyans who shut down their node.\n\nFrom now on, I will only use the options available for normal users. In particular, Electrum for desktop and Phoenix, Breez, Zeus for mobile, because they are more than sufficient for me. I live off Bitcoin and need immediate liquidity to use P2P exchanges like Robosats or coupon sites like Bitrefill, or simply pay with Lightning to small businesses and friends. And for that, I don't need a node. That is the reality.\n\nI think Lightning nodes are for entities that handle large daily liquidity and justify investing resources in technical knowledge and time on them, such as stores, social networks, wallets, exchanges, etc. For everyone else, it's better to use the countless options that Lightning offers for desktop and mobile.\n\nThank you for reading. I welcome comments.\n\n\n-------\nSpanish:\n\nSoy nuevo en **stacker** pero soy un viejo ganster que está en Bitcoin desde el 2011, y he vivido todos los vaivenes de Bitcoin.\n\nDesde el 2018 aproximadamente mantengo un nodo de Lightning que ha llegado a ser bastante popular, con hasta 8 BTC de liquidez y cerca de 300 canales. Primero lo tenía en LND, pero luego lo pase a CLIGHTNING debido a los muchos bugs que LND tenía y que me hicieron perder algo de dinero. No solo eso, mi nodo está corriendo enteramente con una conexión móvil 4G, pues me desplazo habitualmente y no quiero tener mi nodo en un datacenter, ya que soy paranoico acerca del control de mis máquinas, y más cuando se trata de Bitcoin, el gran tesoro.\n\nDesde entonces, el número de canales en mi nodo se ha ido reduciendo desde 300 hasta 150 canales, y luego 100, y luego 50, así como la liquidez, hasta 2 BTC. El motivo de esto se debe básicamente a algo que no sospeché antes de iniciarme en esta aventura, y es que mantener un nodo de Lightning requiere mucho trabajo. Por este motivo hace 3 años desistí de seguir trabajando para el nodo, e instalé CLBOSS, un software de mantenimiento automático de nodos, y la verdad, ha funcionado bastante bien y ha hecho mejor trabajo que yo.\n\nSin embargo, incluso con CLBOSS, he sufrido muchos problemas, que me han hecho también perder dinero. El peor de estos problemas es que se me estropeó el SSD donde residía el nodo, causando corrupción en la base de datos de CLIGHTNING, y forzando el cierre de la mitad de mis canales, perdiendo bastante dinero en comisiones de minero.\n\nCon todo y con eso, ayer mismo intenté actualizar CLIGTNING y otro nuevo bug me impide hacerlo, y ya ha sido la gota que ha colmado el vaso. Tanto esfuerzo, ¿para qué? Apenas he ganado 400ksats con todo el enrutamiento, que casi no cubre los gastos de mantenimiento, ni mucho menos mi tiempo. Así que he hecho una lista de motivos por los cuales a una persona normal, o un "plebleyo", no le interesa mantener un nodo de Bitcoin, y son muchos:\n\n- Demasiado trabajo y tiempo gastado en mantener el nodo.\n- Escasas ganancias.\n- Elevados conocimientos técnicos si realmente quieres tener más de 5 o 10 canales y resolver problemas técnicos que sin ninguna duda surgirán con los años.\n- Limitadas opciones móviles (te fuerza a hacer un proxy reverso con una VPS en algún datacenter si quieres usar clearnet).\n- Excesivo riesgo, hay en juego dinero y el hardware puede fallar, o un bug en el software puede surgir.\n- Escasas opciones de automatización (la única que funciona bien es CLBOSS y solo está disponible para CLIGHTNING).\n- Dolores de cabeza periódicos.\n\nPor todo esto, he decidido que mantener un nodo Lightning, a pesar de que llevo años con él, no merece la pena, por mucho entusiasmo que tenga y por mucho que me guste Bitcoin y Lightning. Me uno así a la larga lista de plebeyos que apagan su nodo.\n\nA partir de ahora simplemente usaré las opciones que hay para usuarios normales. En particular, Electrum para escritorio y Phoenix, Breez, Zeus para móviles, porque para mi uso son más que suficientes. Yo vivo de Bitcoin y necesito liquidez inmediata para usar exchanges p2p como Robosats, o sitios de cupones como Bitrefill, o simplemente pagar con Lightning a pequeños comercios y amigos. Y para eso, NO necesito un nodo. Esa es la realidad.\n\nCreo que los nodos LN son para entidades que manejen mucha liquidez diaria y les merezca la pena poner los recursos técnicos y de conocimiento sobre ellos, como por ejemplo tiendas, redes sociales, wallets, exchanges, etc. Para todos los demás, es mejor usar las innumerables opciones que Lightning nos ofrece para móviles y escritorio.\n\nGracias por leerme. Atiendo a comentarios. \N 661 \N 120704 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.47235292493065 0 \N \N f 0 \N 0 125336230 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402465 2025-02-13 18:37:43.67 2025-03-29 22:39:46.783 Uruguay - The New Land Of The Free? 🇺🇾 \n![Uruguay green farmland](https://image.nostr.build/53ffd06d37857096b003ae366a678c27a5defc780f3b522205fd51f0270d75df.png)\n\nIn recent months, there's been some curiosity and intrigue towards this part of the world. Be it Argentina, Uruguay or Latin America in general. In the case of Uruguay, the vast majority of people couldn't locate it on a map or would get confused with neighbouring Paraguay. Having recently relocated to this perfectly calm / neutral / 'boring' country, I thought I would provide a comprehensive summary of what tempted me to consider Uruguay as a new home and what the country offers to Bitcoiners, libertarians and anyone with an eye on a new potential Plan B.\n\n**Context**\nI came from the U.K. which may be useful as a point of reference. In recent years, the U.K. has wanted more and more involvement in people's affairs. It became too much for this Bitcoiner to tolerate. The desire was *not* to run away, but to find a place more aligned with my growing libertarian leanings. A place where I could care more about incompetence than dystopia.\n\nThroughout this write-up, I try my best to show both side of the coin. Uruguay is not perfect by any stretch, but it has ticked all the boxes I am looking for. You will notice that I have shared both positives and negatives from my first year inside the country, in an attempt to educate you on what Uruguay offers from the following angles:\n\n-----\n\n\n**Contents**\n1. Geopolitics\n2. National Debt\n3. Banking\n4. Tax Benefits\n5. Food & Agriculture\n6. Lifestyle & Culture\n7. Energy\n8. Water\n9. Inflation\n10. Economy\n11. Residency\n12. Politics\n13. . Digitalisation\n14. Real Estate\n15. History\n16. Demographics\n17. Firearms\n18. Drugs\n19. Regions\n20. Further Reading\n\n--------\n\n### **Geopolitics**\n* Right off the bat, I can admit that the main reasons I chose Uruguay was for the fact that it is generally a laissez-faire society, it is resource rich and it is a country with an unparalleled history plus desire today to stay neutral. We'll explore some of these themes in greater detail, but here is a [recent podcast](https://www.financialsense.com/podcast/20736/uruguay-most-geopolitically-safe-country-world) that captures its unique offering really well. It was published just a week ago. \n\n### National Debt\n- National debt to GDP for Uruguay was [51.9%](https://www.ceicdata.com/en/indicator/uruguay/government-debt--of-nominal-gdp) in June 2023. This is a stark contrast to the [U.S. at 123%](https://www.ceicdata.com/en/indicator/united-states/government-debt--of-nominal-gdp), [U.K at 101%](https://www.ceicdata.com/en/indicator/united-kingdom/government-debt--of-nominal-gdp) or [Japan at 224%](https://www.ceicdata.com/en/indicator/japan/government-debt--of-nominal-gdp). Such places cannot grow nor print their way out of trouble.\n- Uruguay recently issued a bond of equivalent [$700m at 5.6%](https://www.bloomberglinea.com/latinoamerica/uruguay/uruguay-coloca-nueva-tanda-de-bonos-vinculados-a-indicadores-de-cambio-climatico/), with international demand for $2.6 billion. It's never ever been easier or cheaper for Uruguay to borrow money on international markets. Uruguay has never had a lower country risk rating than it has today.\n\n### Banking\n- I know you're all here for the revolution & maintaining minimal balances, but some people may still wish to open or retain a bank account in 2023. For business or personal use.\n- Uruguay is an underrated financial behemoth in this aspect, offering savings & salary accounts in both dollars and Uruguayan Pesos with ease. There are many options, for locals and foreigners alike.\n- You don't need to be a resident to open a bank account here. For non-residents there seems to be a higher fixed cost as much as $30-$40 per month to keep the account open. Of course even some local accounts for Uruguayan residents involve a monthly cost, sometimes around $3-$5 per month.\n- A paper-trail is of course required to open a bank account here, just like any country. Further requirements are [documented well here](https://www.creimermanlaw.com/post/open-an-offshore-bank-account-in-uruguay-2023-update), but I won't bore you with those.\n- The main banks are [Scotiabank](https://www.scotiabank.com.uy/Personas/Cuentas/default), [Banco de la Republica](https://www.brou.com.uy/personas/cuentas), [Itau](https://www.itau.com.uy/inst/itauPymes.html), [BBVA](https://www.bbva.com.uy/personas/productos/cuentas.html), [Santander](https://www.santander.com.uy/) & [Bandes](https://www.bandes.com.uy/). There is also [Banque Heritage](https://www.heritage.com.uy/?l=en) and [OcaBlue](https://ocablue.uy/) which I gather are just online. Then there is [Prex](https://www.prexcard.com/) which has become a bit of a neobank, offering an arbitrage solution vs neighbouring Argentina as well as offering 'crypto', in the usual paper or non-custodial form.\n- If withdrawing cash using a foreign card or account and seeking a bank to do this at, I recommend using Banco de la Republica's machines.My foreign card doesn't charge for withdrawals and provides a near-perfect FX rate. Banco de la Republica don't charge any fees their end either. Regardless of whether it is Pesos or Dollars. Many of the others listed do charge however, even if the fees themselves are not large.\n\n### **Tax Benefits**\n- Uruguay is currently the exception in Latin America. Other countries in the region are seemingly adopting the 'tax the rich' mindset under international or political pressure. Uruguay isn't buckling.\n- Many articles out there call Uruguay a tax haven, but consider it just 'light touch'. There are still plenty of types of taxes as you will see when we get into the list of taxes below. Just the rates are much lower. If Uruguay is this extensive, just imagine how bad your current country is, if you stop and think about it!\n- Residency is very attainable to be able to take advantage of tax free holidays and additional benefits. There is however still their fair share of paperwork, waiting and bureaucracy. \n- Having done the process alone in recent months, I would most likely recommend working with someone to speed this along. Trust me that whatever reasonable fee they are charging, it will be "vale la pena" (or worth it) if you value a full head of hair. \n- If achieving residency is of interest please reach out and I may be able to give more specific advice. I also have a close contact who is in the immigration business and has successfully handled multiple other friend's residencies with flying colours.\n- For a comprehensive post on the financial benefits of residing in Uruguay, I have referenced further links at the bottom of this article, included will be the word 'tax'.\n- Note that an individual is considered resident if in Uruguay for more than 183 days in the calendar year or if his/her economic or centre of interests is in Uruguay.\n- The tax year in Uruguay also runs January to December for simplicity.\n\n\n\n### Here is the TLDR on tax\n@DarthCoin look away now.\n\n1. **Tax Holidays**\n\t- Firstly, individuals who become tax residents from 2020 **may opt for an 11-year tax holiday** on foreign-source income or a permanently reduced tax rate of 7% on that income.\n2. **Income Tax**\n\t- The rate for income tax without the tax holiday or any other exceptions is progressive, [ranging from 10% to 36%](https://taxsummaries.pwc.com/uruguay/individual/taxes-on-personal-income). Kicking-in once you earn ~$12,000 or 475k pesos.\n3. **Capital Gains** (IRPF or IRNR)\n\t- Uruguay has a 12% capital gains tax. Same for Bitcoin.\n4. **Other Income**\n\t- Other types of "income" are also taxed at 12%. e.g. rents, royalties, interest & foreign-sourced.\n5. **Net Wealth Tax** (Impuesto al Patrimonio)\n\t- A net wealth tax exists of [0.1% to 0.3% above $151k](https://taxsummaries.pwc.com/uruguay/individual/other-taxes) for residents and 0.7% to 1.5% for non-residents on the **wealth located in the country**.\n\t- Note that there is a threshold under which Uruguayan tax residents are except [~$150k](https://taxsummaries.pwc.com/uruguay/individual/other-taxes). Families/partners can double this threshold also, if married.\n6. **Inheritance Tax**\n\t- There is ZERO inheritance tax here. A big potential benefit to families.\n7. **Property Taxes**\n\t- **On Sales** (Impuesto a las Transmisiones Patrimoniales or 'ITP') - When trading property, there is a 4% tax (3% for certain successions) on the property value. 2% is paid by the buyer and 2% by the seller.\n\t- **On Profits** - See Capital Gains (IRPF or IRNR) above.\n\t- **Each Year** (Contribución Inmobiliaria) - An annual tax payable to the local government at a rate of between 0.25% to 1.40% on the rateable value of the property\n8. **Value Added Tax** (IVA)\n\t- Value-added tax (or IVA) is [22%](https://taxsummaries.pwc.com/uruguay/individual/other-taxes)\n\t- Restaurants - If using a foreign credit card, you will pay 9% less on the bill. Effectively a free tip for staff. \n\t- Hotels - Presenting foreign identity will mean IVA will not be applied either.\n\t- IVA is also apparently not applied for exports or financial transactions.\n9. **Sales / Consumption Taxes** (Impuesto Especifico Interno)\n\t- Beyond the regular IVA discussed above, Uruguay does apply certain additional tariffs on certain products. For instance alcohol, tobacco and gasoline tend to attract a higher additional tax amount.\n10. **Other Tax Deductions**\n\t- Self-employed people can enjoy an income reduction of 30% for "expenses".\n\t- Deductions from social security can be made when dependent children exist in the family.\n\t- If you wish to create your own business, there are also plenty of additional tax exemptions, special economic zones and benefits to explore beyond that. Particularly in software but also for importing/exporting of goods. \n\t- For instance, depending on the type of company you choose you may be able to reduce your tax liability down to 3.3% as a small business or even 0% for a specific corporation.\n\n\n\n### **Food & Agriculture**\n- Uruguay has the most cows per person in the world (3.2). And the same for sheep (3.5) per head. It has just 3.4 million people. And yet there used to be even more sheep per human (about 8 per head in 1991) until beef become far more profitable and popular in recent years.\n- It has a proper healthy cowboy ('gaucho' culture), and the agricultural sector is a significant contributor to Uruguay’s economy, accounting for approximately 7% of the country’s GDP. The bugz will not be popular here. \n- There are frequent cowboy events happening year-round, with farming festivals, traditions and communities, everyone is proud of their heritage.\n\t![Cowboy culture](https://i.pinimg.com/originals/88/8b/cc/888bcc08ffbdeb86d4637cd8aef6c297.jpg)\n- You really haven't lived until you've tried a Uruguayan or Argentinian "entraña" steak. Asados (barbecues) will have you turning carnivore within days.\n\t![Entraña steak](https://image.nostr.build/017ea10e1e1984642d1180f119933809e4ca7014ca63b778b0ac336e4dc7cd3a.jpg)\n- This Latin American country currently exports [70% of its meat](https://www.gatewaytosouthamerica-newsblog.com/uruguayan-cows-are-among-the-most-easily-traced-animals-in-the-world/) to more than 100 countries, with China, the European Union, North America, and Russia as its main markets. China being Uruguay’s 2nd largest trading partner for beef.\n- Today, Uruguay meat is selling at prices similar to those of Australia and the U.S. given the quality. Whereas six or seven years ago Uruguay sold at between 20-30% less. Between Argentina and Uruguay, they really do raise the best beef in the world.\n- Uruguay is one of the few countries that sits above the **Guarani Aquifer**, which is an extensive reservoir that contains an almighty amount of water. This is important as water can [play a key role in agriculture and farmland investments](https://nomadcapitalist.com/global-citizen/second-passport/how-to-get-uruguay-citizenship/).\n- With rich and fertile land, you can grow pretty much anything you can think of here. Timber, wine and produce. Culturally, Uruguayan food is about quality ingredients and little fuss. \n- Sauces and spices are rarely used and for the latter difficult to obtain. For instance chillies are essentially sweet peppers here, not spicy by any standards. If you are fond of heat, it may not be the worst idea if you were to forget that you had some seeds stored away in your luggage. You will be popular with expats and immigrants also, as this is a frustration shared by Europeans, North Americans, Indians and even folk from Latin America.\n\nSome Uruguyan dishes to try:\n1. **_Asado_:** The king of Uruguayan cuisine as mentioned is Asado. It is a must in your first month to get invited to a Uruguayan home barbecue. Make it your objective in the first month. Imagine succulent chargrilled smoky steaks, ribs and even chorizo prepared to perfection over open flames. On Sundays, this is what most locals eat with immediate and extended family. \n2. ***Milanesas***: Effectively a schnitzel or milanese (for those that know Italian history). This is a hearty humble dinner, popular for all Uruguayans no matter the occasion. It's a thin fillet of beef, veal, pork or quite often chicken fried, breaded and cooked in oil.\n3. **_Chivito_:** The national dish of Uruguay, Chivito is a sandwich stacked with layers of beefsteak, mozzarella, tomatoes, mayo, plus often a slice of ham and a fried egg. At the end of the day it's a meaty sandwich, but Uruguayans are pretty obsessed about it.\n4. **_Empanadas_:** These are flaky pasties in the shape of a half-moon. Wheat flour base, usually prepared with beef tallow and baked in the oven with delicious fillings of your choice. Seasoned beef and egg, pancetta & cheese or creamy spinach chicken - whatever you desire. These differ to the fried empanadas in the northern parts of South America (which are fried). Of course like all the best things from Uruguay, they will fight with Argentina over who was it's original creator and who prepares them best. Like they do with some of their desserts mentioned below also.\n\nThe country’s sweets and desserts are also addictive: \n1. **_Alfajores_:** These round cookies filled with Dulce de Leche often covered in chocolate are irresistible. The non-chocolate versions 'de maizena' are seriously tempting too.\n2. **_Dulce de Leche_:** This sweet caramel-like sauce is a beloved treat throughout Uruguay and as mentioned above, is used in everything from cakes to ice creams.\n4. ***Torta Frita***: Proper old-school Uruguayan snack, prominent in the countryside. The dough is simple to make & consists of flour, water, salt, and animal fat. That mix is then deep fried in more fat. LOL. Trust me, they are more delicious than they sound. It’s a savoury snack but many sprinkle sugar & cinnamon on top, or add dulce de leche on top (are spotting a theme here?).\n\nOther things popular:\n- There are of course a range of other cakes, pastries, flans and baked foods to choose from. Most of which made their way here from Europe. Carrot cake is really popular, as is English Tea for some reason.\n- It's very common for Uruguayans to hold back a selection of Twinnings Tea flavours, and keep them tucked away in their cupboards untouched for future visitors. As a Brit, I found this bizarre initially. Even very few British people stack different varieties of tea these days. Perhaps in some ways Uruguayans wish to be more British than Brits themselves.\n- Uruguay also a strong whisky and wine culture here. Tannat is the red wine completely unique to Uruguay and apparently it is [one of the healthiest varieties worldwide](https://winefolly.com/grapes/tannat/) given the antioxidants it contains. A great pairing for any of the above foods.\n\n### Lifestyle & Culture\n\n**Positives**\n- Uruguayans, like most of their South American counterparts, are generally considered welcoming and hospitable people. They are also incredibly sporty and are bonkers for over football (soccer).\n- Uruguay boasts some of the most **beautiful sunsets** in the world, as you're soon about to witness.\n- The country is mostly flat, at least along the coast, with beaches stretching the length of the country for 700km total. During summer months in particular (December, January, February) it is common to be sat along the coast sipping the national drink, a South-American infused tea called mate alongside friends and a view. \n\n\thttps://www.youtube.com/watch?v=AspAmARKdXE\n\tHere's a video to get a sense of the atmosphere of the capital's coastline, as well as a few amateur phonographs:\n\t![Locals enjoying mate with sunset](https://image.nostr.build/f57eb223bd12d7133ba348832e8315e586b082f71bfa656b9df541edcef7e735.png)![](https://image.nostr.build/5f3644eb08123416ceadfd2b8dbdd0166b52f39c763df9143393e40d7c110ba7.png)![Sunset with stars](https://image.nostr.build/abaf12e221a55ad1289b06adb536880f2b937e2ae03a79ad2d11dbd5ec7bbd61.png)![Sunset on the road](https://image.nostr.build/b3cc8f4f45e24450676d2f3c481ba3dfd55c9067b3ea5fbe71d644d858772d41.jpg)\n\n- The country has very little political polarisation. Differences between left and right, rich and poor are not very pronounced here. The whole country’s history is made up of immigration, plentiful food, solid gun laws, strong European vibes, meat & cowboy-culture 🤠 .\n- Locals are usually shocked to see a 'Westerner' *want* to come to their country other than for work reasons. Very rarely do I get questioned on anything else besides “why on earth did you want to come to Uruguay?”\n- Another positive is how cars ALWAYS give pedestrians right of way. Even in the big cities. No matter the rush, 99% of Uruguayans will wave you across and let you cross the road. It's so commonplace that many locals just cross the road at crossroads or junctions without often looking. Knowing full well cars will slow and find a route around them. Be mindful of this when driving here your first few months. It's unique but refreshing!\n\n- We will go into the history of Uruguay in a later section. However this 18min **video from 1943 is almost as fitting today**. That just goes to show how strong the Uruguayan culture has remained. "Nothing spectacular", "Nearly all of it's land is useful" still rings true:\n\thttps://www.youtube.com/watch?v=EdpH1aaHQiQ\n - It is more developed than you will expect on arrival. Almost Europe, replanted.\n\n\n**Not So Positives**\n- Something to be mindful of in any country but particularly here, is that it can take some time to feel accepted by local Uruguayans. I have heard it is particularly challenging for other South Americans, who are used to more warmer interactions. Just like in parts of Europe, people are fairly private and so it may a few meetings before being invited to someone's home. Once you get that invite, you can be confident you have a friend for life I'm told.\n- Uruguay is more expensive to live than most places if you’re on a budget, but the peace & pace of life more than makes up for that.\n- Uruguayans dine late and greet with a kiss, like those pesky Spaniards and Italians.\n- The culture for doing business here is slow. Like really slow. Sometimes it feels like as the customer, you are receiving a favour by purchasing the services of a company. Therefore do not be surprised if you need to chase, follow-up or hire expats for the work. I wouldn't go as far as saying Uruguayans are lazy, it is just the "tranqui" way.\n- Uruguay has a lot of dogs. It's a country obsessed. Therefore in the major cities keep in view of where you are walking, whether it for the uneven pavement or the pooch presents that get left behind.\n- Personally speaking, people are very much left to themselves. You can live a very humble & introverted life here. Perhaps that is why they do have an issue with isolation, depression and mental illness in this country, especially [males in rural regions](https://web.archive.org/web/20231120192138/https://www.economist.com/the-americas/2023/11/09/why-are-there-so-many-suicides-in-rich-stable-uruguay). If you're an extrovert, you may prefer neighbouring Buenos Aires instead, but if you love the outdoors you'll be just fine.\n- We touched on driving earlier, but be advised that there is a zero-tolerance approach to drink-driving here. Authorities have the right to revoke Uruguayan licenses and confiscate foreign driving licenses for 6 months if deemed under the influence.\n\n**Climate**\n- Summer is a blast here. As mentioned that's December, January, February. You can expect temperatures between 25°C to 35°C, or 75°F-90°F. Very few people are truly working hard during these months and families tend to head east to their second homes, enjoying this season in quieter beach towns near Piriapolis & Punta.\n- The heat can be intense and humidity can add to that, but overall it is really pleasant. The ozone layer is [particularly 'missing' here](https://www.guruguay.com/uruguay-tanning/), so care with the sun is advised. Heading out before 11am or after 3pm and you should be fine, otherwise cover or cream-up or just accept your lobster fate.\n- Winter (May, June, July) in Uruguay is mild, usually 10-15°C or 50-60°F. What was new to me for the first time was the humidity during cold weather. Being simultaneously chilly and also humid in the comfort of your own home, is not something you will ever miss.\n- Buildings in the major cities are often not built with the best insulation in mind. During my time here I have found it best to seek out more modern apartments simply for that reason, they mostly have thicker walls, insulation and glazing. You may find otherwise they are susceptible to cold (or worse, wet) walls during those months. In spite of having adequate heating & air-conditioning.\n- There's some incredible architecture nestled amongst all the newer blocks and builds in the city. Full on houses wedged between 8 story blocks. For me, it makes me appreciate them even more, like you're encountering hidden treasures. Furthermore, I forgot how much I missed the antique elevators from Buenos Aires (with double-foldable metal doors), those are just as common here. If architecture is your thing, there are surprises around every block. I've included a few awesome shots at the bottom of this article if visuals are your thing.\n\n### **Energy**\n- The Uruguayan government has invested strategically into energy for decades, with minimal corruption along the way. Having deployed **$8bn into renewables since 2010**, it is now [looking to take a leap forward in hydrogen](https://www.bloomberg.com/news/articles/2023-08-02/green-hydrogen-will-further-uruguay-s-role-as-renewables-leader#xj4y7vzkg) , given it's vast water reservoirs underneath it's flat terrain. \n- A few months ago Uruguay [signed a MOU with the EU to export hydrogen](https://en.mercopress.com/2023/07/19/uruguay-signs-green-hydrogen-deal-with-eu) and has potential to make further deals. \n- Microsoft for instance [has chosen Uruguay](https://www.uruguayxxi.gub.uy/en/news/article/microsoft-inauguro-su-nuevo-laboratorio-de-ia-en-uruguay-y-espera-que-sea-un-faro-de-innovacion-para-el-mundo/) as it's only other A.I and I.O.T lab, outside The States, China and Germany. Google has just announced a [new data centre in Uruguay](https://www.datacenterdynamics.com/en/news/google-confirms-construction-of-data-center-in-uruguay/) also. \n- For such a small country in terms of population, tech & energy business is *booming* here.\n ![Energy mix of Uruguay](https://image.nostr.build/c6a57987ecca61dde60bd5e07875e6791cee1fb19706cd8a93269ac4e3e5c486.png)\n \n- Resources in Uruguay are plentiful yet expensive in comparison to the region. The country is in the advantageous position of having abundant resources to export.\n- For the past [4 straight months in 2023, it has generated 100% renewable energy](https://theprogressplaybook.com/2023/10/19/energy-independent-uruguay-runs-on-100-renewables-for-four-straight-months/). In comparison, neighbours Argentina have only managed an admirable 55%.\n- Currently, prices for fuel, energy, food, consumables, vehicles and tech hardware are much more expensive than countries nearby. You will notice this in many of the graphs shared.\n- It is both my hope and half-expectation in future years, that prices won't need to rise so crazily like in the rest of the world given the fact commodities won't be in such short supply here.\n\n- Uruguayans have been flocking to Argentina still to stock-up on inventories due to being about 50-60% cheaper. **4% of the entire population made the trip across the border in one single holiday weekend for the arbitrage**. That's a crazy stat.\n- This difference is apparently costing the Uruguayan economy around [$1billion per year](https://www.batimes.com.ar/news/economy/uruguayans-pile-into-argentina-to-spend-record-us1-billion.phtml), although we will see if that will be sustained given recent developments across the river in neighbouring Argentina. You have got to imagine the gap will close somewhat.\n ![](https://imgprxy.stacker.news/x_2MtjJyPN0KJPp3DUj_pHJ0TAozvuWN7faitqHFYKo/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy81MTc4)\n\n- Talking of energy, Argentina 🇦🇷 suffers from regular power outages or blackouts particularly during summer months. I gather there was a time when people in Montevideo suffered from them too, but that no longer seems to be the case. Uruguay has abundant energy security and in fact quite often exports what is not needed. Equally if there’s a deficit for a short time, energy is easily sourced from elsewhere.\n\n\n**Firewood**\n- It is extremely common for Uruguayans (and Argentinians) to **cook dinner over wood or charcoal, on the parilla**, or using older gas cookers indoors. Especially as mentioned on Sundays.\n\t![](https://image.nostr.build/9bd842fbb1acef0c50b40282e789a001971b4d007f0b87c18c398d64e3b0b9bd.png)\n\n- Many also **use wood to warm their houses**. In the colder months of May, June and July, walking through the city you get that cosy firewood smell because of this.\n- Of course it is a cultural thing to be celebrated but Uruguay is blessed with vast forests spanning the entire country. It has a massive timber industry. When driving outside the capital for example, you'll notice countless people selling firewood on the edge of the road.\n- Uruguay is one of the only countries in the region whose forests have actually expanded in recent decades. In the 1990s they occupied 660,000 hectares and now they’ve surpassed 850,000 hectares. [80% eucalyptus and 20% pine trees](https://www.upmpulp.com/articles/pulp/20/forests-in-uruguay/) were planted to provide raw materials for the wood and pulp industries.\n- Look at me getting carried away with wood & timber! 🪵 Let's talk oil... \n\n**Oil & Gas**\n- **Oil & Gas today is completely imported**. You could say it is still Uruguay's achilles heel. \n- For decades Uruguay has tried to find oil. Its previous auctions attracted industry leaders but with only dry wells found. That is likely what led the country to pivot fast into renewables.\n- A few months ago, there was a fresh **oil discovery 100-300km off the shore of Uruguay**, suggesting there [*MAY* be significant oil reserves to be able to extract](https://www-bloomberglinea-com.translate.goog/2023/09/25/uruguay-podria-encontrar-petroleo-en-el-mar-esto-dice-un-banco-de-wall-street/?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp). Apparently with the potential to unlock **up to 20 billion barrels of oil**.\n- Should that be the case, it may relieve some future cost pressures on citizens further down the line, but definitely not any time soon. Oil is also not the only option. Uruguay has hydro, wind & solar now as we saw in the graphic above. It is certainly not as exposed to wars or other geopolitical events as before or as much as elsewhere.\n- My theory is also that they the ability to negotiate their way to accessing needed fuels. This at a time when the country's favourite commodity (cattle) and other parts of its economy are booming. Now would be the time for a worldwind schmoozing tour!\n- **Today, prices remain higher in Uruguay for petroleum oil & gas than elsewhere** in the region. Not helped by the additional levies Uruguay applies on petrochemicals. Gasoline fluctuates between 40% - 75% more expensive than in neighbouring Brazil and Argentina. However fuel discounts are available near those borders to offset the difference by around half I'm told.\n\t![Fuel and gas price](https://image.nostr.build/7e6dc3a8afa63266dd35d2954b74633940536176533f47e6e62a8e7e4c174b51.png)\n\n**'Green' Energy**\n- The overwhelming majority of people are still running gas & diesel cars, in spite of fuel being the most costly to run in all of South America. \n- From 2022 until 2023, the Uruguayan car fleet went from [2% to 3% being electric vehicles](https://mobilityportal-lat.translate.goog/ventas-vehiculos-electricos-uruguay-mercado-crecer/?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp) . Big progress.\n\t![Gas station with sunset behind](https://image.nostr.build/0b37d5f0eaf3b5516145bc8d7a2468abf2b2b646387b7b11a38fac8d09f97138.png)\n\n - There are decent electric chargers & infrastructure in the capital given how many electric vehicles exist currently. They plan to have 30% of city buses being electric in 2 years time (which is likely achievable).\n- The transport in general in the capital of Montevideo is pretty good. Buses are regular, quick and reasonable. With a free card linked to your ID it is around $1.20 for 1 hour or $1.50 for 2 hours, no matter the length of the trip on the route. Without the card, paid by cash, it is around 50% more expensive. Worth the trade-off for most.\n- The city doesn’t feel like a capital really, so very little congestion apart from 1 hour each in the morning and evening. \n- Electricity and energy as mentioned is much more expensive. Therefore unless you're a company the size of Microsoft and Google; **Bitcoin mining on a small scale may not be so profitable here**.\n- That didn't however stop [Tether from announcing a facility here, in May 2023](https://tether.to/en/tether-invests-in-energy-production-and-sustainable-bitcoin-mining-in-uruguay/). I expect they got mates rates for their upcoming mining operation. \n- If you work for a mining company and have big boy pants, drop me a message as I'd love to ride shotgun and explore the region for suitable sites.\n- It's also worth mentioning Uruguay and India are [exploring a collaboration around wind energy](https://en.mercopress.com/2011/02/24/uruguay-and-india-explore-wind-energy-cooperation) currently. If you haven't noticed already, the government is extremely active right now in finding commercial interest in its resources, from all over the globe.\n\n- As of 2022, here is how Uruguay ranks for energy mix. You’ll notice at the bottom of this chart just how much oil & gas is imported:\n\t![](https://imgprxy.stacker.news/E4dW5CVUxJ72-wPxuqtLYMeyFgRLonRa5URJRSJXBYU/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy81MTc5)\n\n\n### **Water**\n- In the capital of Montevideo, the city experienced a water issue a few months back, where they needed to import some oil for a short period due to a lack of hydro in the area. The water issue was only for a few weeks and exclusive to Montevideo basically.\n- The reservoir nearby dried up and that caused a bit of a stink (figuratively I should add), with them needing to pump salt water from the sea into peoples homes & taps. People went to buy bottled water to drink & cook with for some time. \n- It was more of an inconvenience than the reported 'crisis'. Although citizens were [not hugely happy with water being used to cool those large data centres](https://news.mongabay.com/2023/11/the-cloud-vs-drought-water-hog-data-centers-threaten-latin-america-critics-say/) at the expense of their pockets & health. Hopefully they’ve learned from that and it won’t happen again.\n- Other parts of the country did not suffer from those problems. Smaller cities and towns have plenty of water, energy & resources to go around.\n\n### **Inflation**\n\n- CPI (Consumer Price Inflation) since 2021 has been 20%.\n\t- Comparable vs Western countries.\n- PPI (Producer Pricing Index) since 2021 has been 14%.\n\t- vs 40% in Europe, 25% U.K. and 18% for U.S (if to be trusted).\n- The Uruguayan Peso has strengthened vs the dollar since September 2020 by 16%. \n\t- Mostly since Uruguay's economy is bolstered by commodities, rising in value.\n\t\n- It's a step change from 2013 when Uruguay was **investing heavily in infrastructure** and devaluing their currency in preparation for this decade., during a commodity bear market.\n- Back then, 1 dollar bought 13 Pesos and inflation was not a problem. Today it buys 39, which is 20% stronger than 3 weeks ago when it took 47 pesos to acquire 1 dollar.\n- It's my hope that we'll see the Uruguayan peso outperform the dollar this decade. Not for the next 3 months, but through to the end of the 2020s. It's a productive economy with low debts, zero animosity and is punching above it's weight on all fronts. Long may that continue.\n- The biggest issue facing the country could well be whether they can quickly find a long-term solution to oil and gas supplies. Particularly when other countries seek the same. They have significant trade deficits in fuels currently, as noted below. Though they are in a more fortunate position of energy diversification, food security, technological advancement, unity, humility & a general lack of debt.\n\n### **Economy**\n\n**Top Exports** - Accounting for 84% of all outgoing shipments in [2022](https://www.worldstopexports.com/uruguays-top-10-exports/).\n1. **Meat: US$2.9 billion (25.8% of total exports)**\n2. Oil seeds: $2.1 billion (19.1%)\n3. Wood: $1.1 billion (9.7%)\n4. Dairy, eggs, honey: $894.8 million (8%)\n5. Cereals: $819.1 million (7.3%)\n6. Vehicles: $438 million (3.9%)\n7. Plastics, plastic articles: $352.8 million (3.2%)\n8. Animal/vegetable fats, oils, waxes: $293.4 million (2.6%)\n9. Milling products, malt, starches: $289.5 million (2.6%)\n10. Pharmaceuticals: $184.6 million (1.6%)\n\t\n**Top Imports/Deficits** - Significant trade deficits for crude, oils & gas for [2022](https://www.worldstopexports.com/uruguays-top-10-exports/).\n1. **Fossil/mineral fuels including oil: -US$2.1 billion**\n2. Machinery including computers: -$1.2 billion\n3. Vehicles: -$1 billion\n4. Electrical machinery, equipment: -$795 million\n5. Fertilisers: -$679 million\n6. Other chemical goods: -$382 million\n7. Plastics, plastic articles: -$298 million\n8. Iron, steel: -$194.3 million\n9. Articles of iron or steel: -$194 million\n10. Organic chemicals: -$189 million\n\n\n**Day to Day**\n- Back to the more important stuff - the daily life. **What is Uruguay like to live in?**\n- Supermarkets and pharmacies are pretty much run by a French monopoly in Uruguay. There’s lots of brands but all with the same/similar owners, which is perhaps why veggies and consumables are 2x-3x more expensive than neighbouring countries.\n- It is intriguing to see a pharmacy every 2 blocks in Montevideo. I can only imagine since they are so profitable to import or perhaps it is cultural (European-inspired).\n- Food in supermarkets as mentioned is decent quality and well-sourced, but I try to avoid lining their pockets by opting for the local markets or “ferias” and building relationships there.\n\t![](https://image.nostr.build/d8850b3d5add8fde07e659a582c06a37905d206287f45e1289e26c1ffcef94a3.jpg)\n\n- Uruguayan food products tend to be well-labelled (in fact overly so). In 2020, it was apparently the case that [37% of corn-based products in the capital](https://www.biorxiv.org/content/10.1101/2020.08.17.254243v1.full.pdf) were GMO (genetically modified), which led to them introducing the mandatory labelling. If you see a circular 'T' label on packaging, it means it contains genetically modified organisms. 'T' standing for "transgenic":\n\t![GMO labelling in Uruguay](https://image.nostr.build/aa8211391e87133110ac6857f5bac2f697328b6342d1be171ed3dea048d0d638.png)\n- I mentioned that earlier in the year a water issue arose in Montevideo. When that happened the 'exceso sodio' meme (right) went viral. This was at a time that authorities needed to send desalinated salt water from the sea into people's homes. These stickers are prevalent on most packaged food products, both in Uruguay and Argentina. Even during this so called "crisis" it was encouraging that people still retained their sense of humour without losing their heads.\n\n- In terms of buying online, Amazon does ship to Uruguay, but it is quite common for some packages to be held back by customs I am told. I have had success delivering to my destination, but for larger packages apparently it is 'safest' to arrange delivery via a local courier. Especially as couriers don't often guarantee the 'last mile' of delivery nor retain high standards. [Glic](https://glicglobal.com/uy/), [Tiendamia](https://tiendamia.com/uy) & [BuyBox](https://www.buybox.com.uy) import goods from America, with [DHL](https://www.dhl.com/uy-es/home.html) & [UPS](https://www.ups.com/uy/en/Home.page) being decent options as international couriers.\n\n**Service Businesses**\n- **In 2023, Uruguay's service exports grew the fastest in the entire region at 28%**! \n- That's more than double what we see elsewhere in the region. It leads the region in terms of AI research and development. \n- Even in just 12 months, I have seen an uptick in the amount of American firms recruiting in LATAM. Remote too.\n- Uruguay's connectivity, free trade zones, high quality of life, deep pool of talent (inc. from those from nearby Argentina) & attractiveness to do business clearly has an influence.\n- **Software businesses can effectively pay 0% tax** via legal exemptions that exist. Once setup, you may be only paying for social security (pension & medical insurance), about $200 p/m per employee if you meet the criteria.\n\n**Creating a Business**\n- If you *are* **looking to setup a business in Uruguay, there's a huge opportunity**. Especially if you are responsive and value your customers; you will soon find yourself at an advantage over other local firms. Honestly it is *that* simple.\n- In many industries, you can compete on speed, quality and service alone. Word will catch-on to both foreigners and local Uruguayans. The customer is not 'right' here.\n- If you're in sales, I have heard that **Uruguayans value having someone ready to call**. It could be the newest bit of home technology, vehicle, energy infrastructure or agricultural kit. It could have the very best reliability. However locals here will always want someone to call in 5-10 years time, should their kit encounter an issue. They are very resourceful and willing to 'make do' repairing rather than replacing with new parts. Something to be respected, given it can be difficult to source parts here (not least because of the 22% import tariffs).\n\n- Many accountants here are also used to **creating companies to assist residencies**, so don't be afraid to reach out if you need a recommendation.\n\n- There are **plenty of types of business you can setup**, each with different tax treatments and which are not costly at all to setup or administer. Here are 2 options I considered for some context:\n\t- A a small trader / proprietorship (called 'Unipersonal') that costs in the region of $100 and can take 3 days to setup. This is a general business that can cover many different contexts and industries. There is no legal distinction between your personal capital and that of the business.\n\t- A SAS business** (equivalent to LLC or Ltd company but for entrepreneurship). This costs around $1,200 to setup and may take considerably longer, up to 2 months, due to additional due diligence. Although [some professional firms have 'oven-baked' companies](https://www.guruguay.com/starting-a-business-in-uruguay/) ready for you to take over in a matter of days.\n\n- **To open a new business you will need**: a Uruguayan ID, registration with gub.uy (the gov site) followed by with [bps](https://bps.gub.uy) (a separate part of gub.uy). The main obstacles you will face will be confirming your identity, as not all systems talk to one another. And securing proof of address (or 'domicilio'), if you have recently arrived. \n- The country boasts not only a seaport and an extremely pleasant airport, but it also has a large number of free trade zones in which multinational companies working in Uruguay can operate [without having to worry about income or import taxes](https://www.internations.org/uruguay-expats/guide/working-short). \n\n**Jobs & Salaries**\n- Uruguay was the [1st country in the world to adopt the eight-hour workday](https://www.liveinuruguay.uy/labour-legislation) apparently, early in the 20th century.\n- Exports are the main focus of Uruguay’s economy. Agricultural goods such as cattle, soybeans, or wood pulp are exported to be an important contributor to the nation’s economy, as mentioned. Construction and Civil Engineering are popular too, but it is the Tech & Services sector that has grown to become a huge market for Uruguay. \n- Many youngsters have been trained & educated well in engineering and so they’ve created a solid career path for engineers - both civil engineers and software engineers. They have diversified well in recent years.\n\n- Real salaries are at the highest level in 50 years. They are still **significantly lower than Western standards** with the minimum being ~$550pm and the average [~$950pm](https://wagecentre.com/salary/south-america/uruguay). Many in software and civil engineering careers earn much more than this, but it is good to see healthy rises discounting inflation.\n- In spite of offering higher wages, many Uruguayans do find it challenging to save, given the much higher costs of living compared to neighbouring countries (2-3x in many cases).\n\n\t![Uruguay real salaries](https://image.nostr.build/e4ad05a366ed4fd61660c3dde041835b63800230e5c3642994228ee132c51722.jpg)\n\n- [Laws do favour the employee somewhat](https://www.liveinuruguay.uy/labour-legislation). It is more expensive to hire here than other nearby countries also, given the [costs of pensions, health & insurance described here](https://www.bizlatinhub.com/employment-law-uruguay/). \n- Employers must contribute [12.6% to social security, and withholding 18-23%](https://taxsummaries.pwc.com/uruguay/individual/other-taxes) from the salary of the employee each month. \n- The labour market is very competitive given it is a small country and so companies tend to favour hiring Uruguayans over other immigrants. Something to be mindful of, even as a Westerner seeking employment.\n\n\n **Healthcare**\n- Uruguay offers great public and private healthcare. When looking privately, there are an abundance of luxurious clinics with very professional staff. Entire streets of clinics.\n- The private Fonasa healthcare option is the most popular with [2.5m of the 3.4m population enrolled](https://www.guruguay.com/how-healthcare-works-in-uruguay/). If you have your own business or are an employee, you can enrol with a very [reasonable amount deducted from your salary each month](https://www.guruguay.com/how-healthcare-works-in-uruguay/) and receive basic private care included. Should anything you require not be covered for any reason, you can receive a heavily subsidised discount from the true cost. Surplus fees for unique care are very reasonable and good value. Although I have yet to make use of this during my time here.\n- Another bonus with the healthcare system here is the proximity to Argentina. Uruguay has strong ties to Argentina to share expertise and medicine. It is not uncommon to travel to receive treatments from across the border I am told.\n\n\n### **Residency**\n\n1. **Residency for Individuals**\n\t- Anyone with a monthly income of $1,500 can apply & qualify for temporary residency. The minimum amounts are higher than in other Latin American countries due to the higher cost of living. This will grant you a stay of 2 years in the country should you be accepted.\n2. **Residency for Family**\n\t- If you are a family of four, the main applicant having an income of $2,000 is permissible. It’s advisable that the minimum income for a family of four be a total of $3,000 and/or over.\n3. **Residency for Mercosur**\n\t- If you or your spouse are from a country in the Mercosur region, the process is simpler.\n\t- The non-Mercosur family member will still need to show proof of income to sustain themselves, but are granted 2 years in order to provide this evidence. Provided that all other paperwork is in order, this will give them suitable time to find a job in that time.\n4. **Permanent Residency via Birth**\n\t- Uruguay is one of the few countries in the world that will grant both parents Permanent Residency once a child is born inside their borders. \n\t- I have some friends currently going through this process, so I gather it is much simpler here than in neighbouring Brazil.\n5. **Citizenship**\n\t- After obtaining residency, you can become a citizen in just 3 years if you're married or 5 years if you're single.\n\t- Note that you will likely need to be physically present for 9-10 months in the first year to claim this. On an ongoing basis, the requirement is to be in the country for 6 months (183 days) of any given year thereafter. Uruguay do wish to see you have ties to the country in order to grant you citizenship.\n6. **By Investment**\n\t- For a person to become a tax resident by having main economic interests in Uruguay, they must invest in real estate or an enterprise and stay in Uruguay for at least 60 days per year. \n\t- The minimum amount accepted for a real estate investment is $390,000. The minimum amount for an enterprise is $1.7 million, provided it creates 15 jobs.\n7. **Passport**\n\t- Uruguay is mentioned [by the NomadCapitalist](https://nomadcapitalist.com/global-citizen/second-passport/how-to-get-uruguay-citizenship/) in the top 5 destinations for expats. \n\t- The Uruguay passport is a great travel document, allowing the customary passport-free access to all of South America's Mercosur region as well as visa-free access to Europe’s Schengen Area. But it not *always* be the very best option.\n\t- One limitation of the passport is that those that receive it have found their document states their original nationality on it, given [Uruguay's Constitution is unique and defines nationality based on place of birth](https://en.wikipedia.org/wiki/Uruguayan_nationality_law). This has led to some additional questions and conversations at some international borders from friends of friends who used their Uruguayan passport, particularly to visit their stated country of birth. You may be fortunate to gain a passport but you will never be considered a true Uruguayan national until that law changes.\n8. **Resources** - If you're wishing to secure a residency, I definitely recommend reading:\n\t- [Nomad Capitalist - Uruguay Guide](https://nomadcapitalist.com/global-citizen/second-passport/how-to-get-uruguay-citizenship/)\n\t- [Expat Money - Uruguay Balancing Adventure & Security](https://expatmoney.com/blog/life-as-an-expat-in-uruguay-balancing-adventure-and-security)\n\t- [Immigrant Invest - Ways to get Uruguayan Citizenship](https://immigrantinvest.com/blog/getting-uruguay-citizenship-en/)\n9. **Ready, Set** - If you're feeling almost ready to start the process within the next 6 months, get your affairs and the following documentation ready:\n\t- criminal record checks (from any country resided in during past 5 years)\n\t- birth certificates, marriage certificates\n\t- proof of income & bank statements\n\t- all documents will need to be legalised with an apostile from your home country (they remain valid for 6 months)\n10. **Go** - Once you arrive with your documents, you will be able to submit them right after securing yourself a local Health Card, and Temporary ID card in your initial days. After this you'll be well on your way to being an honorary Uruguayo/Uruguaya.\n\n\n### **Politics**\n- Behind El Salvador, the country with the **highest approval rating for politics** and state of democracy is Uruguay. 59% satisfied, vs 64% in El Salvador and just 37% in Argentina.\n\t![Uruguay satisfaction vs Latin America](https://image.nostr.build/2c70e7e81420a2bca730b4d388b508a4a77ca1cc27ae564b66bc441a1d204de3.jpg)\n\t![Democracy index](https://pbs.twimg.com/media/FplZG_3XsAQCUmN?format=jpg&name=medium)\n\n- [Uruguay is a founding member of the United Nations, OAS, and Mercosur](https://en.wikipedia.org/wiki/Uruguay).\n- In 2020, Uruguay got its first center-right president after 15 years of left-wing rule. Next year, October/November 2024 there will be a new election. \n- Recently, in light of a 'passport scandal' the current President [has had to reshuffle some staff](https://www.bloomberg.com/news/articles/2023-11-05/uruguay-president-overhauls-cabinet-amid-passport-scandal) with his own approval ratings taking a hit. His approval rating was [46%](https://en.mercopress.com/2023/05/20/poll-uruguayan-president-still-has-46-approval) earlier this year, but the noise on this issue has quietened down in recent days.\n- Milei had proved a popular figure in Uruguay (like elsewhere in the world) prior to his Argentina victory this week. so it remains to be seen if some of his policies gain consideration here also. One thing is for sure, Uruguay doesn't need the dollar as much as Argentina does, so no one including myself are expecting any drastic political shifts.\n\n### **Digitalisation**\n- Internet is really great here - with [90% of households having access to fibre](https://www.liveinuruguay.uy/work). There is always decent broadband and cell coverage (given the whole country is flat). Cheap too. \n- Starlink recently came online here via with friends achieving 250MB+ down, 50MB+ up via their global roaming plan. I gather an official local launch will happen in 2024, alongside Argentina and Paraguay. This was the motivation to dig deeper into their service in a [recent SN article](https://stacker.news/items/286873) of mine.\n- The cashless card culture has expanded and is quite common. I’m becoming **one of the minority in local markets still using cash**. It’s still used but much less than other Latin economies.\n- In major cities like Montevideo and Punta del Este, cards are really prevalent. They have hooked people in with 15-20% discounts in cafes and restaurants if you have a certain branded card. Now people use cards daily.\n- On the plus side, you can exchange significant amounts of dollars for pesos or vice versa without any sort of identification whatsoever. It's refreshing to walk in & pay a competitive FX rate without being asked your name. To not get asked about what you plan to do with your depreciating dollars, or your travel plans etc. In the U.K., even exchanging $100 felt like an inquisition and a favour I was being granted.\n- You need to present ID to get a SIM card like most countries, but it’s still a simple process.\n- In terms of authorities, they have rolled out a “digital ID” here for all public services, but their systems don’t talk to each other at all which is why I’ve had to show my identity in physical offices 3 times to advance through the different systems, e.g. health, gov website and business registration 😅 They’re really not very well advanced on these things, at least not yet. Which provides some encouragement.\n- They had a CBDC trial. It's now a 'sleeping beauty' and inactive. [Prex](https://www.prexcard.com/) , which we mentioned earlier, has effectively become a defacto digital monopoly like a CBDC though. Allowing Uruguayans easy and lucrative exchange rates between the Uruguayan Peso, Dollars, Argentinian Pesos, USD and more recently 'crypto'. With Prex you can pay bills, people, or almost any service without any friction at all, just by using the app and your national ID. The private sector is way better at innovating this stuff and so the thought of this evolving into something bigger hadn't been something I had previously considered until now.\n- In Montevideo and Punta del Este, those unavoidable white cameras *are* commonplace, having been kindly donated by their Chinese friends in 2019. Talking to locals, the cameras have almost eliminated petty crime from most parts of the city, which was a problem in years prior. Elsewhere in smaller towns, the tech is far from prevalent however. It is a shame to see, but not unlike many other cities in the world.\n\n### **Real Estate**\n\n**Overview**\n- For anything real estate related in Uruguay, the [LiveInUruguay](https://www.liveinuruguay.uy/housing) site is a great resource. As is [this page with latest stats](https://www.globalpropertyguide.com/latin-america/uruguay/price-history). \n- Many big purchases like houses and cars are denominated in dollars, just like neighbouring Argentina.\n- Anyone of any nationality can rent or purchase a property in Uruguay. It makes no difference if the person is in the country or is a Uruguay resident. Everyone is treated the same.\n\n**Renting**\n- Most places available for rent are for 12+ months. It is not very common for Uruguayans to hop around when renting. Quite often they'll stay in the same building for 5+ years given the inconvenience that comes from moving day and the costs of new agreements.\n- Both renting & purchasing property comes with quite a few additional costs. To rent via an agency, you need to purchase insurance, and to obtain that insurance you need to have an income or be employed in the country. Makes sense when you're very Uruguayan, but is a little more tricky when you are finding your feet in the country for the first time. Once you have proved you are liquid and have purchased the insurance you will be able to obtain a guarantee.\n- Note: every time your tenancy agreement rolls over, for example say you sign a 12 month extension to your existing agreement, you will need to pay the agency 1 additional month of rent for practically zero work or effort on the side of the agency. It is just how it is.\n- With that in mind, it’s best to prepare yourself for eating that cost and/or to not move between places frequently.\n- It is not impossible to rent directly with property owners, but will require paying for many months up-front most of the time.\n- There are some useful aggregated sites to scour the market, namely [Infocasas](https://www.infocasas.com.uy) and [MercadoLibre](https://inmueble.mercadolibre.com.uy). However many of the best deals are always available by word of mouth. Particular between March and November, when demand is lower outside tourist-season.\n- You may have success utilising Airbnb for 4+ weeks when first arriving and then coming to a longer-term agreement directly with the owners thereafter, subject to availability & your perceived trustworthiness.\n\n**Buying**\n- The housing market as of August 2023 has been found to be ["fundamentally strong, buoyed by robust demand and healthy economic growth"](https://www.globalpropertyguide.com/latin-america/uruguay/price-history).\n- In Q1 2023 alone, the average price of a house in **Uruguay** rose by 18.6%. In the capital Montevideo that was a bit more muted at 4.4%, but still driven by plenty of demand.\n- During 2020, nationwide house prices plummeted by 20%, as both demand & supply fall sharply.\n- The following year, transactions increased 25% in 2021 and 15% in 2022.\n- **Montevideo** accounted for the biggest share of about 34.2% of all property transactions in Jan-May 2023, followed by **Maldonado** (17.3%), **Canelones** (13.2%), **Rocha** (6.3%), and **Colonia** (5%).\n\n- If you are serious about buying, I would reach out to one of the big firms. There are some smaller firms that I have been told may try to take advantage of "gringos", but it is rare. For instance [this](https://www.realestate-in-uruguay.com) is a popular firm that ranks well in Google for English search terms but I'm told is best avoided. \n- If in doubt, please feel free to reach out personally and I will let you know if anyone I know here has had a positive experience. Be it for buying, renting or any other services (e.g. healthcare).\n\n- If you find a listing you like, it has been *strongly recommend* to me that **you should say you have an agent or representation here**. Do not take one of their agents, since they will have one agent already on the selling side. If the company gathers you don't have an agent on the buyers side, **you will pay BOTH agents 3-4% each**!\n- Anyone can be an agent here in Uruguay, with very little work required. You may be able to find a friend that is willing to perform that role for you.\n- You should calculate that between estate agents fees, all expenses and taxes, transaction costs on a purchase will be around 8% of the purchase price of your property in Uruguay. 10% deposits are usually commonplace.\n\n**Future Outlook**\n- Real Estate is of course much more pricey near the coastline cities, given the stability and views on offer. However the further east you go from Punta Del Este and the further West you go from Montevideo, the cheaper coastal properties will be.\n- There are some decent properties directly listed from owners themselves, where you can browse on [MercadoLibre](https://inmueble.mercadolibre.com.uy) . Search for the terms "campo" or "casa".\n- Prices have been risen dramatically in recent years, due to the sheer number of Argentinians coming to park their capital in banks or purchase property in the country. Previously Argentinians had protection by the Uruguayan Government from the Argentinian Government. This bank secrecy is about to be unwound, leading I suspect to better growth potential to be in Argentina going forward rather than Uruguay itself.\n- This was mentioned by Doug Casey, who spends most of his time in Uruguay, and he declared that view that undoing that secrecy [will lead to coming reductions in property prices in the country](https://internationalman.com/articles/why-the-end-of-uruguayan-argentinian-bank-secrecy-is-good-news-for-expats/) , which you can already see the effect of this year:\n\t![Argentinians obtaining residencies in Uruguay ](https://image.nostr.build/9bdf51086437644afe36c7aeb5a33de1ead564ae2c1c09cb9a772fc80f0c151e.png)\n- Obviously, should Uruguay become a popular destination for Europeans once more, that may net out all being equal, but this is definitely something to be monitored.\n\n**Construction**\n- When building a home here, **expect the building process to be slow and frustrating**. Even Uruguayans complain about how long it takes to renovate, extend or construct homes in their own country. And it is not even the permits that are the issue, it's the labour. Skilled labour is in high demand.\n- **Expect most constructors to ask for 50-60% as a downpayment to begin any work**. In western countries, we are generally used to putting 20-25% down.\n- With that in mind, you will want to be very careful about the type of contractor you choose, as your options will be limited if your team is slow or worse-still taking advantage of you.\n- If you work in the construction industry, and are competent, reasonable & flexible on payment terms, I can assure you there will be a **huge amount of demand for your skills & services**. Not least from expats but from Uruguayans themselves. It may even be worthwhile to bring contractors from overseas for short periods, due to the slow pace of construction also.\n\n**Vehicles**\n- **Acquiring a car is really expensive**, regardless of whether you buy new, used or are importing. Just accept that you will pay much more than in the U.S. or Europe regardless of your approach.\n- I've been told to be careful of used car dealers in particular here. It is a challenge to source used car parts here and so the **preference is to purchase new**, given there is a guarantee if anything happens to your vehicle. As mentioned previously, Uruguayans value having someone to phone and fix their problems.\n- New car dealerships rarely budge on price, and won't negotiate against other dealerships. The Uruguayan way is that they don't need your business. I can't tell you this from personal experience but I'm told your best bet is to try and get some free 'extras' like car mats or fuel thrown-in.\n- Importing cars can also be extremely costly also. All cars, both new and used attract a 23% import tariff. For trucks it is 7-8% and for parts 22%. Uruguayan citizens can only import 1 used car every 3 three years apparently.\n- Once you secure your residency you have a relatively short window of time to start the process to import your vehicle(s) and belongings without incurring any import taxes. You get one shot at this I'm told. Plus the vehicle [cannot be sold for 4 years it seems](Uruguayan citizens can only import 1 used car every 3 three years however.).\n\n- **For renting cars**, I thoroughly recommend going with the small family business called [Mariño Sport](http://www.mariniosport.com/). They have a facility in Montevideo and in Punta Del Este. This is a company too than can provide an airport drop-off and pick-up service. I'm told they will meet you at the airport, free of charge within business hours. Marino also have no hidden extras that some of the larger car providers will impose. Prices are extremely reasonable and if you find a company cheaper, just note it is likely for a reason. The reviews for some of the other larger providers are littered with people complaining about reported damage that was not of their doing or of being charged for actually putting miles on the car. I've personally used Marino half a dozen times with zero issues. Much recommended.\n\n\n### **History**\n- There was a brief period of time that Uruguay was part of Brazil (1822-1828). A war between Argentina and Brazil over the territory eventually led to the good ol' British "intervening" to create a buffer state. **This buffer state became neutral and became Uruguay**. It is still neutral today.\n- While Uruguay didn’t play a significant role in either of the two world wars, it did break diplomatic relations with Germany on both occasions and was one of the founding members of the United Nations in 1945.\n- Uruguay has experienced significant waves of immigration from all around the world, specifically from Europe. Today **90–95% of the Uruguayan population has European ancestry**, particularly Spain and Italy. The largest immigration occurred before and during World War II, when the whole European continent was in turmoil. The population ballooned from just over **1 million to 1,953,000 by 1939.**\n\n**WW2**\n- During the Great Depression, Uruguay maintained the United Kingdom as a major buyer for Uruguayan meat, wool, and related products and avoided calls for the nationalisation of foreign, or otherwise, business interests\n- This article on the [history of refuge in Latin America](https://encyclopedia.ushmm.org/content/en/article/refuge-in-latin-america) details when official immigration to Uruguay became increasingly more difficult during World War 2. Something to be mindful of, if history rhymes.\n- During WW2, the tough economic conditions put pressure on farmers in the countryside, leading to many leaving their farm work and migrating to the capital city of Montevideo in search of jobs.\n- With the government's efforts to expand Uruguay's industrial capacity, these migrants found jobs which thus sped-up the urbanisation of Montevideo. The growth of the industrial sector in and around Montevideo would continue to expand through the WW2 era.\n\n**Today**\n- Uruguay may be being lined-up to perform a similar role for United States this decade. The current President Luis Lacalle Pou was pictured on numerous occasions directly next to Biden throughout the APEP conference, in early November.\n- The President Luis Lacalle Pou is currently on a visit to China also. [Seemingly having secured a free-trade deal](https://en.mercopress.com/2023/11/23/uruguay-china-deepen-bilateral-ties) for his country and playing both sides of the global pantomime that is politics.\n- China is currently the 2nd biggest market for Uruguayan beef and is predicted to become its primary market in the coming years, in spite of being allies of the United States and a founding member of the UN.\n- [Jack Ma the Alibaba CEO was here earlier in 2023](https://www.riotimesonline.com/brazil-news/mercosur/uruguay/why-did-chinese-billionaire-jack-ma-founder-of-alibaba-visit-uruguay/) scouting and checking for local farmland, meatpacking and slaughterhouses in Uruguay. Doug Casey and other international investors also have made Uruguay their home, having purchased farmland in recent years.\n\t![Uruguay president playing both sides](https://image.nostr.build/14d0d1c60bacd39847880694b26d319cc27519e026843b5233201d59c77581df.png)![](https://image.nostr.build/816393815aac1890516f330588ec325125d2b5fee51155bb515af45a09198f5a.jpg)\n\n### **Demographics**\n- Uruguay receives **immigration from neighbouring countries in LATAM** like Argentina and Brazil due to more favourable tax policies. \n- Indians have arrived due to software consultancies. \n- North Americans and Europeans are also choosing to retire in Uruguay. I have definitely connected with more libertarian minded people moving from the West, which is a huge plus. People I’ve enjoyed connecting with.\n- In recent years, the country saw plenty of interest from both Russians and Ukrainians coming here. This led to some [political drama](https://www.bloomberglinea.com/english/uruguay-uncovers-racket-that-provided-russians-with-fake-passports/) with a few dozen Russians obtaining fast-tracked and false passports to find their way into the country fast. \n- In prior years also, they experienced an uptick of Cubans, Venezuelans (and as mentioned Indians) coming from abroad to work. There is a recognition and some grievances that they make the job market more challenging for locals. I have only heard of a few instances of people not feeling accepted by a very select few Uruguayans on one-off occasions. I know in many parts of the world however, this is becoming very much the norm.\n\n- It's interesting to note that Uruguay is not such a religious country. Whilst Catholic is most common, over [55% stated in 2020 that they had no-religious affiliation](https://www.statista.com/statistics/1067190/uruguay-religion-affiliation-share-type/).\n- Despite that, **Uruguay still has one of the biggest Jewish communities in the world**. I have lived nearby to a few synagogues, churches and religious buildings and they are all very well integrated into society. With the constitution providing freedom of choice over religion.\n- Overall, there is close to zero animosity to any group here. Uruguayans know how to mix, which is a major selling point with the divided state of the world as it is right now.\n\n- **Life expectancy has consistently been on the rise**, 81 for females and 73 for males. **99% of the population is urban**, vs 79% back in 1950.\n- Uruguay doesn't have a large aging population currently and so looks better than most Western countries. It doesn't have Indian or even Nigerian base (right) but it's a respectable shape (far left) nonetheless:\n\t![Demographics vs other countries](https://image.nostr.build/863cacb5fa42ff1f735df1f9b2a0b54b374b3a0be47531dc33ce0c72d96609ce.png)\n\n**Education**\n- Uruguay consistently ranks among the top in Latin America for education quality, literacy, and school attendance rates. The country’s commitment to education is evident in its free, compulsory education system that is accessible to all. \n- Uruguay's [one laptop per child initiative](https://marcapaisuruguay.gub.uy/uruguays-one-laptop-per-child-program-impact-and-numbers/) was apparently really successful when implemented in 2007.\n- English is also well spoken amongst younger demographics particularly in the cities, more so than in most countries in South America. Uruguay is ranked 4th in LATAM.\n- The only countries that apparently speak English better are Argentina, Honduras & Costa Rica. Plus [English proficiency is rising in nearly all age groups](https://www-elpais-com-uy.translate.goog/informacion/educacion/mejora-la-competencia-de-los-uruguayos-en-idioma-ingles-por-tercer-ano-consecutivo?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp), as seen below:\n\t![English by age group in Uruguay](https://translate.google.com/website?sl=auto&tl=en&hl=en-US&client=webapp&u=https://imgs.elpais.com.uy/dims4/default/4f311bd/2147483647/strip/true/crop/792x350%2B0%2B0/resize/1584x700!/quality/90/?url%3Dhttps%253A%252F%252Fel-pais-uruguay-production-web.s3.us-east-1.amazonaws.com%252Fbrightspot%252F96%252F3e%252Fda7172934e5ca3c1752f72527130%252Fepi23-02.png)\n \n**Homelessness**\n- Uruguay stands out in Latin America for its higher income per capita, low inequality and low poverty. Yet [homelessness is increasing on the streets of Montevideo](https://www.batimes.com.ar/news/latin-america/in-prosperous-uruguay-homeless-population-grows-in-the-capital.phtml), like in many parts of the world. \n- Particularly in certain parts of the city that I recommend later, those without homes do tend to keep themselves to themselves and are extremely resourceful. Importantly there is a cultural safety net in the form of 'ferias'. Each Sunday it is common for those less fortunate to trade what they come across during the week at large local markets, along with a host of other vendors. Scouring the city for discarded items to sell at the weekend.\n- These ferias are really popular with locals & tourists alike, especially [La Feria de Tristán Narvaja](https://travelingbytes.com/montevideo-street-market-la-feria-de-tristan-narvaja/). Note that it is ***not expected*** that you negotiate at these markets for the above reason. I learnt that the hard way.\n\n### Firearms\n- It is absolutely legal to acquire a gun in Uruguay. You will need a licence, and to obtain that you will need to pass a 'course' and submit some papers. In person this involves presenting criminal record checks, Uruguayan ID, proof of address and 2 small photographs. \n- The 'course' costs in the region of 7,000 - 10,000 pesos ($180-$250) and it takes around 2.5 hours. You will briefly talk to a doctor, a psychiatrist, perform a multiple choice test with others in class, before being taken to the range to practice. Assuming they have no reservations (they are gun-lovers), you will then be given a slip of paper for you to take to a separate location to submit your papers. Thereafter you will be able to visit the range or purchase firearms.\n- In Uruguay, each individual can own up to 8 different firearms. To own more you will need to register as a 'collector'. \n- Apparently there are [35 firearms for every 100 people](https://en.wikipedia.org/wiki/Gun_law_in_Uruguay) in the country (30th worldwide). In 2021, there were [8.5](https://www.gunpolicy.org/firearms/region/uruguay) homicides per 100,000 in Uruguay relating to firearms. \n- Do note that the laws differ slightly here, should someone take possession of and use your firearm in Uruguay. Should someone do so, providing it was stored correctly it is no longer your legal responsibility for what transpires, but theirs instead.\n\n### **Drugs**\n- The country has legalised the consumption and production of cannabis, same-sex marriage, prostitution and abortion.\n- The first half of 2023 saw more legal marijuana sales than the entire year of 2022.\n- It's been 10 years since they legalised weed and since then in 2017, pharmacies begun the sale of it. Apparently when purchasing via this route, it is mandatory to register as a smoker with the government.\n\n\n-----------------\n\n### **Regions**\n\n**Montevideo** \n- If this write-up is of interest, you're likely to spend your first few days in the city of Montevideo...\n\t![Montevideo sign](https://image.nostr.build/3ff2fd08fd5d086a2374a66f698fbffd828fae6fecbc9cbc9cbaf70f33d8a9f7.png)\n\n- When staying in the capital city, I would thoroughly recommend you focus your property or hotel search in one of 3 barrios initially. **Punta Carretas, Pocitos or Buceo**. There are others that have their charm and are extremely liveable, but having experimented a bit during the past year these 'barrios' offer everything you need within walking distance - shopping, beach, cafes & nightlife. \n\n- You will also feel extremely safe in these areas at any hour, perhaps more so than if you were in any other European city. Montevideo is scattered with intricate historical architecture, amongst modern apartment blocks and single-floor housing. There are surprises around every corner.\n\n- Montevideo is a great initial base to get connected and it never quite feels like being in a capital. Just 1.7million people live within the city area. That's around 50% of the entire population of Uruguay but a fraction of many geographically smaller cities in LATAM. My favourite underrated restaurant in the city is [Carbonada](https://www.tripadvisor.co.uk/Restaurant_Review-g294323-d7914635-Reviews-Carbonada-Montevideo_Montevideo_Department.html), it really is top notch. I won't bore you with cafes and 'watering holes'. \n\n\t![Prado - horses escorting cow](https://image.nostr.build/78655c2a02fdddf36beeb085d5a417d1b6e2bb92026c584da27702e95a1d014c.gif)\n- Expo Prado is a must-visit in September, showcasing the best of Uruguayan agriculture inside the capital. As is Carnival week in January, where I recommend you watch the main event(s) on Friday or Saturday from Bar Sumo, Montevideo in a typical bar location.\n\n\n- Here are a few select snaps of the extremely varied architecture from [Caza Casas on Twitter](https://twitter.com/caza_casas/media).\t![Montevideo - centro](https://image.nostr.build/ffd8648c984c71476f47cf33ccbfa975c329c2bb377eb0d5dacd4f35c8d0b1ee.jpg)![Montevideo - pocitos](https://image.nostr.build/0789d3b97a42689a36f8e4c49baec4304fe53149b41edc9253213d3159c14a54.jpg)![Montevideo - punta carreras](https://image.nostr.build/5677436b2fb6eb17c580e9370d6a11f9708981484dda23c84c441ac83db16f4e.jpg)![Montevideo - carrasco](https://image.nostr.build/d84d6c50aca32be5fa8378927c1a868a293c5f4a2402077e71b072fb45b71656.jpg)![Montevideo - ciudad vieja](https://image.nostr.build/d20a58b132c5276a6ff1d53dade488e327a3687b251b2e8431abc22364f2e423.jpg)\n\n\n- A common mistake I have witnessed people make is to reserve an extended stay in the 'old town' of Montevideo called Ciudad Vieja. It has plenty of photographic monuments and buildings to discover during a day or two, but at night-time you may feel a little more limited and less secure to walk around. If you stay there for more than a few days it may affect your first impressions of the capital & country, given it's proximity to the port and some poorer neighbourhoods.\n- For instance on Saturday evenings the main market in Ciudad Vieja called 'Mercado del Puerto', features all the traditional restaurants. But come 6pm on a Saturday night of all times, it closes. This was after 10 years ago a number of tourists experienced issues after sundown. I gather the surrounding area is to be renovated in the coming years, but for now its a place to only keep on the lunchtime menu.\n\n**Punta Del Este**\n- Punta Del Este is Uruguay's premier beach resort and therefore is a very popular destination offering properties that are significantly pricier than most other parts of the country. It is an area that has attracted A LOT of Argentinian capital over the years. A lot of wealth.\n\n- The Mansa Side of Punta has calmer waters and is where most people live all year round. The houses are less prone to water damage over there apparently. \n\t![Punta Del Este Mansa](https://dynamic-media-cdn.tripadvisor.com/media/photo-o/0d/6e/80/9d/playa-mansa.jpg?w=2000&h=-1&s=1)\n\n- The Peninsula is where many older buildings are and where everything is in walking distance. Property there is extremely pricey, since it is where you'll find the Yacht club. It is also where the fishing boats and cruise ships dock, and so tourists flock there during high season. \n\t![](https://image.nostr.build/9ff9a3b2d5a99362352f3e12fe80cef53d55675312ca11ec0b1dd0d3e4d3ce1a.jpg)![](https://image.nostr.build/8f753351e02db5baab2a211d751e6e0cbeb66f1f9d5f84980d37a54f139cc181.jpg)![Punta sunset](https://image.nostr.build/60dd6d22b299fe2202b797bca31979c1f69c2b0d4fb5adbe29da66c4976e895c.png)\n\n- A few blocks north of the Yacht club in this area you will also find the only [Bitcoin ATM](https://coinatmradar.com/bitcoin_atm/47591/bitcoin-atm-punta-del-este-smart-point/) in the country. It is often not working, but you can get in touch with the owner who is a genuine guy, in order to acquire literally OTC:![Punta Del Este - ATM](https://image.nostr.build/3eb816fb32ec19c6bec634a3d73a853057caca950715b3050e77ab9b1d6a0668.png)\n\n- On the Brava side of Punta Del Este, there is plenty of housing available because it's further out and a little further walking distance from amenities. It is much quieter, with empty buildings outside of summer months.\n\t![Brava side of Punta del Este](https://image.nostr.build/be2bb5dd37e04533774b5662e69afbab53c12146266327e1a6d30e19e83ca402.jpg)\n\n\n**Nearby Punta Del Este**\n\n- **Maldonado** is practically part of Punta Del Este and is a more affordable city than Punta Del Este. It is actually the second largest city of Uruguay. A great connected place to base yourself.\n\n- If you're seeking something more quiet you also have a number of small coastal towns called **La Barra, Punta Ballena and Piriápolis**. If you come with capital you are spoilt for choice in terms of finding beach-town property.\n\t![](https://media.cntraveler.com/photos/55d3504e37284fb1079cc867/master/w_1600,c_limit/uruguay-sept-2015-cr-matthieu-salvaing-08.jpg)\n\n- The towns of **Minas, San Carlos & Pueblo Eden** are a little tucked in from the coast. And are great options for a healthy balance between amenities and rural life. Moving north of these spots and going further in-land, Uruguay is extremely sparsely populated. Practically all farmland and forest.\n\n**Rocha**\n- People I have met have said very positive things about Rocha. I plan to spend much more time in this region in the next year. The coastal towns in Rocha number less than a dozen. They are small places surrounded by nature with full-time populations that range from 90 to 3,500 people.\n- Towns like **Garzon, La Paloma, La Pedrera, Punta Del Diablo, Chuy and Rocha** (itself a town within the region). In this part of the country you will again find some good farms, fincas or campos but for a better price. \n- Even though Rocha is growing in popularity, you still find reasonably priced properties in La Paloma. This [article from 2019](https://internationalliving.com/countries/uruguay/rocha/) may be a few years old but will give you a glimpse into property and the upsides of living in the Rocha region.\n\t![](https://image.nostr.build/0a25459dfd12356f887f2efbce35c6d8ec38154a62fe38d673b6dde3c5205e07.jpg)\n\n- For an additional taster of what it is like to travel to the East of Uruguay, have a read of [this travel blog](https://www.cntraveler.com/stories/2015-08-18/exploring-the-wild-wild-east-of-uruguay-rocha). I've plagiarised some stunning photography from it for this post.\n\n- Further East in Rocha you have the national park of **Cabo Polonio**, which is extremely inaccessible and untouched. There you can only arrive by 4x4 and all the houses have no electricity. It is popular for tiktok detoxes, hippie expeditions but also for normals too. I'm told it is an unforgettable experience being there and stargazing at night, both for locals and tourists alike. \n\t![Cabo polonio](http://lh6.ggpht.com/-FglvL5RZYi0/VS5xpVjGXvI/AAAAAAABBG4/N54bZHSfJjk/cabo-polonio-1%25255B6%25255D.jpg?imgmax=800)![](https://image.nostr.build/ed07cb07a99d5f6299f0528d731a9c572b28640f6acba0839b571aef1db30725.jpg)\n\tJust this week [there was a video posted on a rather 'unique' housing development](https://www.youtube.com/watch?v=jJj-JZhiEHU) up the road from the Cabo Polonio attraction. I recommend a watch simply to get a glimpse into the variety of developments available in Uruguay.\n\n\n**Colonia**\n- On the southern coast of Uruguay is a beautiful historic town called **Colonia del Sacramento**, great to take a trip down for a few days. It's a special place to walk around that can be visited by bus from the Tres Cruces terminal in the capital. It's most likely a little too quiet and remote for any of us folk to call home, but certainly not to be missed either.\n\t![Colonia Del Sacramento](https://image.nostr.build/db64fc1db7f17456821ca091651de55dbea9980227dd6ba700692c3bebe28148.jpg)\n\n**In-Land**\n- Inside the depths of Uruguay heading North away from the coast, land is sparse and much more affordable. There you will find the "real" Uruguay. Rural landscapes, forests, vineyards, rarely-visited nature reserves and 'cowboy country'. You will find few people and more animals, but plenty of places to stay for a few days and learn the 'gaucho' way of life on horseback.\n- Soon I will head inland and see if I can find a cowboy legend, willing to make us all a batch of true cowboy hats. It's time to ride off into the sunset...\n\t![](https://media.cntraveler.com/photos/55d3504ac47ae13868ae6c70/master/w_1600,c_limit/uruguay-sept-2015-cr-matthieu-salvaing-06.jpg)\n\n\n\n**References & Further Reading**\n1. [LiveInUruguay](https://www.liveinuruguay.uy) \n2. [Nomad Capitalist - Uruguay Guide](https://nomadcapitalist.com/global-citizen/second-passport/how-to-get-uruguay-citizenship/)\n3. [International Living - Uruguay](https://internationalliving.com/countries/uruguay/)\n4. [Adam Fayed - Uruguay as an Expat](https://expats.adamfayed.com/living-in-uruguay-as-an-expat-part-1-best-places-suitable-for-expats/)\n5. [Adam Fayed - Taxes in Uruguay](https://expats.adamfayed.com/expat-taxes-in-uruguay-today-part-1-things-to-know-about-expat-taxes/)\n6. [Lloyds Bank - Tax Rates in Uruguay*](https://www.lloydsbanktrade.com/en/market-potential/uruguay/taxes)\n8. [Expat Money - Taxes in Uruguay](https://expatmoney.com/blog/how-to-protect-your-wealth-in-uruguay)\n9. [Uruguay Taxes - Legal and Tax Residency](https://uruguaytaxes.com)\n10. [Financial Sense Podcast - Uruguay - Most Geopolitically Safe Country In World?](https://www.financialsense.com/podcast/20736/uruguay-most-geopolitically-safe-country-world) \n11. [Progress Playbook - Uruguay 100% Renewable Energy](https://theprogressplaybook.com/2023/10/19/energy-independent-uruguay-runs-on-100-renewables-for-four-straight-months/)\n12. [Bloomberg - A Tax Haven With Lots of Beaches and Little Crime](https://www.bloomberg.com/news/articles/2023-11-07/rich-expats-flock-to-uruguay-a-tax-haven-with-lots-of-beaches-and-little-crime)\n13. [Bloomberg - Could Uruguay Find Oil In The Sea?](https://www-bloomberglinea-com.translate.goog/2023/09/25/uruguay-podria-encontrar-petroleo-en-el-mar-esto-dice-un-banco-de-wall-street/?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp)\n14. [International Man - The End of Bank Secrecy Between Uruguay and Argentina](https://internationalman.com/articles/why-the-end-of-uruguayan-argentinian-bank-secrecy-is-good-news-for-expats/) \n15. [International Living - Rocha Guide](https://internationalliving.com/countries/uruguay/rocha/)\n16. [Uruguayan News - MercoPress](https://en.mercopress.com/)\n17. [GuruGuay- Investing in Farmland in Uruguay](https://www.guruguay.com/investing-in-uruguay-farmland/)\n18. [GuruGuay - Starting a Business In Uruguay](https://www.guruguay.com/starting-a-business-in-uruguay/)\n19. [Global Property Guide - Uruguay Housing Market in 2023](https://www.globalpropertyguide.com/latin-america/uruguay/price-history)\n20. [CN Traveler - The Wild Wild West of Uruguay](https://www.cntraveler.com/stories/2015-08-18/exploring-the-wild-wild-east-of-uruguay-rocha)\n\n\n--------\n\n### Thanks for reading (something)!\n\nSo does Uruguay 🇺🇾 sound like a free country, or a backwards bunker?\n\nI'd love to hear from you cowboys & cowgirls on how you think a country like Uruguay fits with your libertarian lifestyles. You may not have made it through every word top to bottom, but hopefully you've taken something from this post.\n\nIn the meantime, should this guide to Uruguay have you tempted you to visit, please drop me a message. I'd love to connect, particularly if considering making it a Plan A or Plan B. I have no skin in the game, or any ulterior motive apart from wishing that other like-minded lunatics discover the beauty of this land. \n\nFor me at least, it's far too free to ignore.\n\n![](https://image.nostr.build/95965a39d611748ba492dde4d4dbc60070d3ef2fd723781bb63f8b73615f7777.png)\n\n*Special thanks to @birdeye21 for appearing in the final photo. To @elvismercury, @k00b, @nemo, @natalia, @nym and @bitcointerest for the encouragement and helping me get this one over the line.* \N 20504 \N 402465 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.924470371136 0 \N \N f 0 \N 0 10904548 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428113 2025-03-06 21:25:59.504 2025-03-29 22:39:46.783 Evaluating my bitcoin privacy techniques against three surveillance attacks https://www.youtube.com/watch?v=9s3EbSKDA3o\n\nThat excellent video is by an analyst who attempts to debunk the thesis that monero and coinjoin offer decent privacy. He claims they do not pass the “sniff test” because with a “little bit” of thought you can easily identify 3 ways to attack their privacy and identify: (1) what exchange a monero or coinjoin user got their coins from (“overseer attack” discussed at 11:24—12:15) (2) the owner of a static monero or coinjoin address to which coins are frequently sent (“flashlight attack” discussed at 12:15—14:02) (3) where a monero or coinjoin user makes repeated purchases (“tainted dust attack” discussed in 14:15—16:00). The analysis relies heavily on analyzing “taint trees” and the human tendency to engage in repetitive behavior.\n\nIn the overseer attack, the analyst observes that monero and coinjoin both try to obscure the origin and destination of coins by hiding them in a set of possible decoys. E.g. if 30 senders are in your coinjoin, and you’re only one of them, it’s hard to identify – for a single transaction – which one was you. But he observes that the following repetitive behavior leaks data: if, every week, you buy your coins from coinbase, coinjoin them, and send some of them to bitrefill, bitrefill can see the coinjoins you were in, and they can see that in all of them, at least one sender bought their coins from coinbase. Coinbase may be popular, but even if 1 in 10 bitcoiners are coinbase customers (which is a very generous assumption), how likely is it that 20 randomly selected coinjoins would all have at least one sender who bought their coins from coinbase? Exceedingly unlikely. They must not be random, there must be a common thread: the same coinbase customer was in all of them. And since *you* are known to be in all of them (since you used them to send coins to bitrefill) the only plausible way you could be in the same coinjoin as that coinbase customer 20 times in a row is if you *are* that coinbase customer.\n\nThat’s the overseer attack and I don’t think it applies to me. I don’t buy my coins from coinbase, I received them from my customers. If I repeatedly send my coinjoined coins to bitrefill and they look at my taint trees, they are unlikely to see a common source for all of them unless everyone who paid me used coinbase. Even if they did, the taint trees would lead an investigator to coinbase, but not – then – straight to me. It would go from coinbase to all of my customers, who would then have to collude with the investigator to say they paid me. I don’t think it is likely that this kind of attack would be my downfall.\n\nIn the flashlight attack, the analyst seems to assume that people who receive money to a static coinjoin or monero address repeatedly sell them at an exchange that has their KYC info. He further assumes that exchange is compromised by a government, who observes the taint tree of every transaction you make sending money to that exchange, and identifies that – even if you coinjoined – your static address is a possible origin in each of your coinjoins. That is so unlikely to happen in 20 randomly selected coinjoins that it’s incriminating: the person who owned that static address *was* in each of those coinjoins. And since *you* were also in each of those coinjoins (since you sent money to the exchange *in each of those coinjoins*) the only plausible explanation for both facts is that you are the owner of that static address. Otherwise you would somehow randomly be in the same coinjoin as the real owner 20 times in a row – a statistically impossible phenomenon.\n\nI don’t think this applies to me because (1) I don’t use a static monero or coinjoin address (2) I don’t repeatedly sell my coins at an exchange that has my KYC info. I invented the whisper address protocol so that I can have a static donation “page” without a static donation “address.” And instead of selling my coins at a KYC’d exchange, I use bisq and robosats. I think these protections allow me to escape the flashlight attack undetected.\n\nIn the tainted dust attack, the analyst deals with people who – like me – use a fresh address every time they receive. To deal with them, the attacker occasionally sends dust to your fresh addresses and then tries to watch where the dust goes. Even if you coinjoin it, if you repeatedly send money to bitrefill in those coinjoins (or subsequent ones), the attacker can observe that the dust has bitrefill as a possible destination in each of your taint trees. If that happens 20 times in a row, the only plausible explanation is that you repeatedly send money to bitrefill.\n\nI think this one applies to me. Before I say why let me say this: I typically send my coinjoined money into a lightning channel on my own node, *then* to my various common trading partners, who are typically bitrefill, the bitcoin company, other users of robosats, and phoenix wallet (that – and not my own node – is what I typically use for “daily spending”). An attacker who “dusts” my non-static donation addresses can observe that after I do one or more coinjoins some of the money from each coinjoin almost always ends up in a lightning channel. That doesn’t seem like useful information by itself, though it seems to me a dust attacker could conclude I am probably a heavy lightning user. To go beyond that, the attacker would have to also listen in on lightning and break lightning’s privacy protections. Let me share a plausible attack that I think could be used against me.\n\nA tainted dust attacker could observe that I *probably* send a good chunk of my money into fresh segwit script addresses which, after about a month, I “cooperatively close,” revealing them to be 2 of 2 multisigs and thus probable lightning channels. This analysis would give the attacker a list of addresses that *might* be my lightning channels, with some false positives. They could then go to well known lightning channel providers such as Acinq and bitrefill, show them their list of “probably mine” lightning channel addresses, and ask them “do these belong to any common user of lightning services?”\n\nAnyone with whom I frequently create channels could probably tell them it’s me. At that point, the only thing protecting me from the attacker learning how I spend my money is lightning’s source routing technology. But this might not be much help. If I have a channel with bitrefill, and I often spend my money *at* bitrefill, bitrefill can tell them exactly what I’m purchasing. If I have a channel with Acinq, and I often send my money to my Phoenix wallet, Acinq can see that, and then tell them what I do with it after it arrives in my Phoenix wallet, since Phoenix wallet does not use source routing but rather asks Phoenix to find a route to your destination.\n\nSo it seems that there is a plausible attack against me using tainted dust: an attacker can create a list of channel addresses that might plausibly be mine, then show that list to common routing nodes, some of whom (since I use them) can identify which ones are definitely mine. I think I can mitigate this attack by not using common routing nodes, as well as dropping Phoenix wallet (though I need to find a better alternative first).\n\nWorth pointing out: the attacks I’ve identified here are not the “sophisticated” kinds of attacks the analyst in the video seems really concerned about (which his talk does not discuss). They are, rather, just a “sniff test.” Basically, if a privacy protocol can’t pass the sniff test, regard it unseriously. He thinks coinjoin does not pass the “sniff test” but I think the way I personally use it comes pretty close, though I need to fix behaviors that leave me vulnerable to the tainted dust attack.\n\nEven if I do end up passing the sniff test, there are other factors to consider. I’ve identified my typical recipients as bitrefill, the bitcoin company, phoenix, and robosats users. How am I protecting that info? (Certainly not by publicly saying so on stacker news.) Do I use tor when selling coins on bitrefill or the bitcoin company? Do I enable tor on Phoenix wallet? Am I confident that their implementation of tor stops them from knowing my ip address? (Answer: no, I think it only makes my channels tor channels, I think I still leak my ip address to them when my phone e.g. requests the bitcoin exchange rate.) Do I use a new identity every time on robosats? Do I take fiat in an easy to trace account?\n\nIf I want decent privacy, it’s not enough to use bitcoin privately. That’s just one step. It’s also important to use the internet privately and use my computer privately. How am I doing there? Sophisticated attackers don’t just scan the blockchain. They also collect data from spyware (e.g. Google Keyboard) and, if necessary, steal and scrape your hard drive. If I want to protect myself from sophisticated privacy attackers I have to take steps regarding those things as well.\n\nBut in the meantime, I hope this analysis proves enlightening and helpful for other people thinking about taking steps to improve their privacy. The analyst’s video was helpful to me, and I hope others find it good too. \N 5752 \N 428113 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.96148536873009 0 \N \N f 0 \N 0 117754031 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 8175 2023-02-04 11:35:43.135 2025-03-29 22:39:46.783 I'm losing my faith (II) (Spanish at the end / Español al final)\n\nIt's been almost a year since my post "I'm losing my faith" (https://stacker.news/items/165552), and I think it's time for an update. How are things going now? Have we gotten better? Have we gotten worse? Here's how I see it:\n\nOver the past few months, the problem of Ordinals and Inscriptions has remained. At least it hasn't gotten worse, but it looks like the 10 sats/vbyte is the new 1 sat/vbyte. I don't want to go too deeply into this, which has already been developed by others much better than I can do. I just want the "it's the free market, if you pay the fees you're in" folks to think about what would happen if someone goes to the theater, pays for their ticket, walks in and takes a shit next to the screen. As he has paid his ticket and there is no written rule that forbids it (he is complying with the rules), is it his right to do it?\n\nAnother thing that strikes me is the veneration that bitcoiners have for Michael Saylor... which is growing despite the nonsense he says, and the fact that he hasn't even shown that he has the Bitcoin he claims to have. Remember the "Don't trust, verify"? He has said that Bitcoin is not there to compete with the dollar, and that you can't use it to pay, but that it's OK because "no one who owns a building on 5th Avenue would pay for a coffee with it either." Of course not, because you can't pay for a coffee with a piece of building, but you can with Bitcoin. The man invents his own metaphors ("Bitcoin is energy!") and doesn't seem to be able to see much beyond them and his AI-generated images. He has paid for a subscription to ChatGPT and I guess you have to put it to use? Did you guys see that video on Bitcoin Atlantis where he's treated like a rock star, Saylor, Saylor, Saylor, Saylor, Saylor!!!!! I thought we were in all this to have an alternative to fiat... but whatever.\n\n![MichaelSaylorRocket.jpeg](https://m.stacker.news/21192)\n\nUnlike Michael Saylor, Bukele (another reference in the Bitcoin space) has at least shown... an address on the blockchain where there are some Bitcoin. Not that it means much, but it's already more than Saylor has done. Here I have to give a warning that comes true 100% of the time: there are only 2 kinds of politicians, those who have already let you down, and those who soon will. Stop cheering for him, or maybe in a few months you'll have to start deleting tweets. And on the other hand, it is important to remember that the wealth hoarded by the rulers is not the wealth of the ruled. The wealth hoarded by the state is for the state, for its own benefit, and the people are not the state. Bukele will keep his bitcoin as long as he wants, and sell them at the drop of a hat when he deems it appropriate, and with that money he will do something good for the people, or not. It happens in every country in the world, and El Salvador will be no different. It reminds me of my fellow citizens when they say that public things "are theirs". No, my son, you only finance them, but they are theirs.\n\nBy the way, when Bukele published the address where El Salvador's bitcoins are supposedly located, several bitcoiners started donating money to those addresses. See what I mean? Bitcoins donated to a repressive machine as by definition a state is? "But nobody tells us bitcoiners what we can do with our money!". Right, of course...\n\nAnd what about the big Bitcoin OGs, who no longer talk about Bitcoin's features and goodness, but about the price in fiat that it will reach in the coming months? We have gone from "one of the few people featured in the Bitcoin whitepaper", to "$1 million before halving". We've ostracized PlanB for their rainbow model predictions, but we have important people in the industry predicting "Bitcoin at $4.7 million by 2036". Why are we giving them that free pass that we haven't (rightly) given to PlanB? What happens when people trust them because "they are important people who know what's going on", put in all their life savings, the price of Bitcoin drops 80%, and we start seeing suicide posts on the forums?\n\n![AdamMillions.png](https://m.stacker.news/21194)\n\nAh, but 80% declines are "no longer possible". We have had them many times, but now we are not going to have them again, because of ETFs. The ETFs that have helped us to make the price of fiat go up and make us richer? How could we not like them? We like them so much, that now the big influencers are divided between those who think it's better to buy ETFs, and those who think it's better to buy Microstrategy shares. Cypherpunks to the power! There is also a diversity of opinions between those who believe that Bitcoin will go up a lot, and those who believe it will go to the moon: "I don't think we will reach 2 million dollars this year, I think we will only reach $800,000...". There is no longer an option for the price to go down, even though the price has dropped almost 13% in just 3 days.... How could this happen? I thought that between Saylor and BlackRock they were going to buy all the bitcoin, and we'd be on the moon in no time!!!! By the way, BlackRock, that company that used to be the devil, and now it's a bit cooler, because its CEO "has seen how good bitcoin is". Aha... tell me more.\n\n![BackMowMSTR.png](https://m.stacker.news/21195)\n-\n![vijay.png](https://m.stacker.news/21197)\n\nAnd by the way, why do we let people who have obvious interests in L2s and sidechains tell us that Bitcoin is fine as it is, and that nothing can be done against Ordinals, and that we'd better suck it up and use Liquid? Ah, Liquid... that "solution to the scalability problem", as is eCash and Fedimint? If Cashu, Fedi and Liquid are "solutions to the scalability problem", I may not have really understood what Bitcoin is.... Now it turns out that using "tokens" issued by a certain centralized entity, and which can only be exchanged for Bitcoin if that entity keeps a server running, is that an alternative? And why don't we directly use Monero or BCH as a "scalability solution"? I really, really don't get it. I must have missed something...\n\nAnd finally, the other big distraction for the Bitcoin ecosystem: Nostr. Nostr is that technology that started out being used to create chat clients for a social network that only talks about how good Nostr, ETFs and Microstrategy are, and that, like "the blockchain", it is inherently good and therefore needs to be embedded everywhere, even though the incentives of the participants are not aligned. Thus, Bitcoin apps and even wallets are adding "Nostr technology", and Nostr chat clients are adding "bitcoin wallets". Who would want their Nostr client to be a wallet where they store their bitcoin? I don't get it, but apparently the trend now is for someone to write "BITCOIN AND NOSTR TO THE MOON" all in capital letters, and hundreds of people give them their sats, because it's "a way to support the content". Well, what can I say... An "open system" to fight censorship promoted by the man who censored the president of the USA and many scientists during the plandemy. The very same man that tries to sell you his hardware wallet "to improve your use of Bitcoin", that cannot be paid using Bitcoin. Man...\n\nSo much for my frustration. I'm sure most of my criticisms are due to gaps in my knowledge, so I hope to learn a lot this year so I can be less frustrated and share with my fellow bitcoiners the admiration for Saylor, Bukele, the "Bitcoin OGs", Cashu, and sell some Bitcoin so I can buy a few BlackRock ETFs. Also buying a Bitcoin hardware wallet with fiat money.\n\n\n\n================== Spanish from here ==================\n\nHa pasado casi un año desde mi post "Estoy perdiendo mi fe" (https://stacker.news/items/165552), y creo que va siendo hora de hacer una actualización. ¿Cómo van las cosas ahora? ¿Hemos mejorado? ¿Hemos empeorado? Así es como yo lo veo:\n\nEn los últimos meses, el problema de los Ordinals y las Inscriptions se ha mantenido. Al menos no ha empeorado, pero parece que los 10 sats/vbyte son los nuevos 1 sat/vbyte. No quiero profundizar demasiado en esto, que ya ha sido desarrollado por otros mucho mejor de lo que yo puedo hacer. Solamente quiero que los del "es el libre mercado, si pagas los fees estás dentro" piensen en qué pasaría si alguien va al cine, paga su entrada, entra y se pone a cagar al lado de la pantalla. Como ha pagado su entrada y no hay ninguna norma escrita que lo prohiba (está cumpliendo las normas), ¿está en su derecho de hacerlo?\n\nOtra cosa que me llama la atención es la veneración que los bitcoiners profesan a Michael Saylor... que va en aumento a pesar de las bobadas que dice, y de que ni siquiera ha mostrado que tenga los Bitcoin que dice tener. ¿Recuerdan el "Don't trust, verify"? Ha dicho que Bitcoin no está para competir con el dolar, y que no se puede usar para pagar, pero que no pasa nada porque "tampoco nadie que tenga un edificio en la 5ª avenida pagaría un café con él". Claro que no, porque no puedes pagar un café con un trozo de edificio, pero sí puedes hacerlo con Bitcoin. El hombre inventa sus propias metáforas ("Bitcoin is energy!") y parece que no sea capaz de ver mucho más allá de ellas y de sus imágenes generadas con IA. Ha pagado la suscripción a ChatGPT y supongo que hay que darle uso... ¿Habéis visto ese vídeo en Bitcoin Atlantis donde se le trata como a una estrella del rock? ¡¡¡Saylor, Saylor, Saylor, Saylor!!! Pensaba que estábamos en todo esto para tener una alternativa al fiat... pero en fin.\n\n![MichaelSaylorRocket.jpeg](https://m.stacker.news/21192)\n\nA diferencia de Michael Saylor, Bukele (otra referencia en el espacio Bitcoin) por lo menos ha mostrado... una dirección en la blockchain donde hay un número de Bitcoin. No es que signifique demasiado, pero ya es más de lo que ha hecho Saylor. Aquí tengo que dar una advertencia que se cumple el 100% de las veces: solamente hay 2 clases de políticos, los que ya te han defraudado, y los que pronto lo harán. Dejen de vitorearle, no vaya a ser que dentro de unos meses tengan que empezar a borrar tweets. Y por otro lado, es importante recordar que la riqueza que atesoran los gobernantes no es la riqueza de los gobernados. La riqueza que atesora el estado es para el estado, para su propio beneficio, y las personas no son el estado. Bukele mantendrá sus bitcoin tanto tiempo como quiera, y los venderá a la primera de cambio cuando lo considere apropiado, y con ese dinero hará algo bueno para el pueblo, o no. Ocurre en todos los países del mundo, y El Salvador no va a ser diferente. Me recuerda a mis conciudadanos cuando dicen que las cosas públicas "son de ellos". No, hijo mío, tú solamente las financias, pero son de ellos.\n\nPor cierto, cuando Bukele ha publicado la dirección donde supuestamente están los bitcoin de El Salvador, varios bitcoiners se han puesto a donar dinero a esas direcciones. ¿Ven lo que quiero decir? ¿Bitcoins donados a una máquina represiva como por definición es un estado? "¡Pero a los bitcoiners nadie nos dice qué podemos hacer con nuestro dinero!". Claro, por supuesto...\n\n¿Y qué me dicen de los grandes Bitcoin OGs, que ya no hablan de las características y bondades de Bitcoin y sí del precio en fiat que alcanzará los próximos meses? Hemos pasado de "una de las pocas personas que aparecen en el whitepaper de Bitcoin", a "1 millón de dólares antes del halving". Hemos mandado a PlanB al ostracismo por sus predicciones con el modelo del arco-iris, pero tenemos a gente importante de la industria prediciendo "Bitcoin a 4,7 millones de dólares para 2036". ¿Por qué le damos a ellos ese pase que no le hemos permitido (con razón) a PlanB? ¿Qué pasará cuando la gente se fie de ellos porque "son gente importante que sabe lo que pasa", meta todos los ahorros de una vida, el precio de Bitcoin baje un 80% y empecemos a ver mensajes de suicidio en los foros?\n\n![AdamMillions.png](https://m.stacker.news/21194)\n\nAh, pero es que bajadas del 80% "ya no son posibles". Las hemos tenido muchas veces, pero ahora ya no vamos a volver a tenerlas, por los ETF. Los ETF que nos han ayudado a que el precio en fiat suba y seamos más ricos... ¿Cómo no nos iban a gustar? Nos gustan tanto, que ahora los grandes influencers se dividen entre los que creen que es mejor comprar los ETFs, y los que creen que es mejor comprar acciones de Microstrategy. Cypherpunks al poder!! También hay diversidad de opiniones entre los que creen que Bitcoin va a subir mucho, y los que creen que va a subir muchísimo: "No creo que lleguemos a 2 millones de dólares este año, yo creo que solamente llegaremos a $800.000...". Ya no existe la opción de que el precio baje... a pesar de que el precio ha bajado casi un 13% en solo 3 días... ¿Cómo ha podido ocurrir? Yo pensaba que entre Saylor y BlackRock iban a comprar todos los bitcoin, y ¡¡llegaríamos a la luna en un periquete!! Por cierto, BlackRock, esa empresa que antes era el demonio, y que ahora ya mola un poco más, porque su CEO "ha visto lo bueno que es Bitcoin". Ahá... cuéntame más.\n\n![BackMowMSTR.png](https://m.stacker.news/21195)\n-\n![vijay.png](https://m.stacker.news/21197)\n\nY por cierto, ¿por qué dejamos que gente que tiene intereses evidentes en L2s y sidechains nos diga que Bitcoin está bien como está, y que no se puede hacer nada contra los Ordinals, y que mejor aguantarse y usar Liquid? Ah, Liquid... esa "solución al problema de escalabilidad", como lo es el eCash y Fedimint... Si Cashu, Fedi y Liquid son "soluciones al problema de escalabilidad", puede que yo no haya entendido realmente lo que es Bitcoin... Ahora resulta que usar "tokens" emitidos por una cierta entidad y que solamente pueden ser intercambiados por Bitcoin si esa entidad mantiene un servidor arrancado... ¿Eso es una alternativa? ¿Y por qué no usamos directamente Monero o BCH como "solución de escalabilidad"? De verdad, no lo entiendo. Se me debe de haber pasado algo...\n\nY por último, la otra gran distracción para el ecosistema Bitcoin: Nostr. Nostr es esa tecnología que empezó siendo usada para crear clientes de chat para una red social en la que solamente se habla de lo bueno que es Nostr, de los ETF y de Microstrategy, y que, como "la blockchain", es inherentemente buena y por tanto hay que incrustarla en todos los sitios, a pesar de que los incentivos de los participantes no estén alineados. Así, aplicaciones Bitcoin y hasta hasta las wallets están añadiendo "tecnología Nostr", y los clientes de chat Nostr están añadiendo "wallets bitcoin". ¿Quien querría que su cliente de Nostr sea una wallet donde se guarden sus bitcoin? Yo no lo entiendo, pero aparentemente la moda ahora es que alguien escriba "BITCOIN Y NOSTR HACIA EL FUTURO" todo en mayúsculas, y cientos de personas le regalen sus satos, porque es "una manera de apoyar el contenido". Pues qué quieren que les diga... Un "sistema abierto para luchar contra la censura" promovido por el hombre que censuró al presidente de USA y a muchos científicos durante la plandemia. El mismo hombre que intenta venderte su hardware wallet "para mejorar el uso de Bitcoin", pero que no se puede comprar con Bitcoin. En fin...\n\nY hasta ahí mi frustración. Estoy seguro de que la mayor parte de mis críticas son debidas a lagunas en mi conocimiento, así que espero aprender mucho este año para poder estar menos frustrado y poder compartir con mis compañeros bitcoineros la admiración por Saylor, Bukele, los "Bitcoin OGs", Cashu, y vender algunos Bitcoin para poder comprar unos cuantos ETFs de BlackRock. Y también comprar una wallet bitcoin con dinero fiat. \N 2829 \N 8175 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.75109803916072 0 \N \N f 0 \N 0 139039527 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 419743 2025-02-28 06:08:39.521 2025-03-29 22:39:46.783 Definitive explanation of my weird Bitcoin transaction If you've been on Twitter or Stacker News last week, you may have seen this strange Bitcoin transaction:\n\nhttps://mempool.space/tx/b10c0000004da5a9d1d9b4ae32e09f0b3e62d21a5cce5428d4ad714fb444eb5d\n\n![](https://m.stacker.news/38308)\n\nIt caught a lot of people's attention, and they had two pressing questions: Who made it? And what secrets does it hide? Here I give an answer to both.\n\nMessage:\n\n```\nTransaction b10c0000004da5a9d1d9b4ae32e09f0b3e62d21a5cce5428d4ad714fb444eb5d was created by Vojtěch Strnad.\n```\n\nAddress:\n\n```\n1J7SZJry7CX4zWdH3P8E8UJjZrhcLEjJ39\n```\n\nSignature:\n\n```\nH6WHgwnYtggJH5yqVpeL9NRxWJ+8hqUW31Mc1J9e9Q3cZGEdDjixYT6jnPpIHM2FVHDbeEstP8KzDsj5U01BNSo=\n```\n\nIf you're going to verify the signature yourself (and I highly recommend you do), make sure not to use Bitcoin Core or Electrum downloaded over a hotel Wi-Fi.\n\nWith that out of the way, here is every Easter egg in that transaction. The last two are the only ones that weren't noticed by anyone as far as I know:\n\n- The transaction was included in block 850000.\n- The transaction's locktime is the genesis block timestamp.\n- The transaction has a vanity TXID and WTXID. The TXID starts with `b10c0000004da5...` which is an homage to the Bitcoin developer 0xB10C who has created a transaction with a similar TXID in the past (see https://b10c.me/7). The WTXID starts with `0000000001d54...` i.e. a bunch of zeroes, just like a block hash.\n- The transaction uses every possible standard input and output type: P2PK, P2PKH, P2MS (bare multisig), P2SH, P2WPKH, P2WSH, P2TR, OP_RETURN, and a 2-byte SegWit v1 output (with a script borrowed from the Ephemeral anchors proposal). Some of these are used multiple times on the input side: P2SH is split into legacy P2SH, wrapped P2WPKH and wrapped P2WSH, and P2TR is split into key path spend and script path spend.\n- The inputs have various multisig and Lightning-related scripts: bare multisig is a 2-of-3, legacy P2SH is a 3-of-5 multisig, wrapped P2WSH is a revoked Lightning HTLC, P2WSH is a revoked Lightning force close (often called "penalty transaction") with an unusually short CSV delay of 42, and P2TR script path is a 5-of-7 multisig (continuing the prime number pattern, and also a reference to the "5/7" meme).\n- The input amounts have special meaning: 6102 is a reference to Executive Order 6102, 1913 is the year the Fed was created, 1971 is the year the USA abandoned the gold standard, 2140 is the year the last halving is expected to occur and the block subsidy to go to zero, 5139 refers to CVE-2010-5139 (value overflow incident), 3220 refers to CVE-2013-3220 (March 2013 accidental fork), 17144 refers to CVE-2018-17144 (never exploited inflation bug), 8149 is the Bitcoin Core pull request that implemented SegWit, 9001 is a reference to the "It's over 9000!" meme, and 19953 is the Bitcoin Core pull request that implemented Taproot.\n- The output amounts demonstrate the dust limit of each output type: 576 for compressed P2PK, 546 for P2PKH, 582 for 1-of-1 compressed bare multisig, 540 for P2SH, 294 for a 20-byte SegWit output (P2WPKH), 330 for a 32-byte SegWit output (P2WSH and P2TR), 240 for a 2-byte SegWit output, and 0 for OP_RETURN.\n- The input sequence numbers have special meaning: 20090103 refers to the date in the genesis block, 20081031 refers to the publication date of the white paper, 19750504 refers to Satoshi's self-reported birthday, 16 refers to BIP-16 (P2SH), 141 refers to BIP-141 (SegWit), 0xdeadbeef is a well-known magic number (used here to comment on the 80-bit security of wrapped P2WSH), 21000000 is the number we all know and love, 0xf9beb4d9 is the magic number used in the Bitcoin P2P protocol, 341 refers to BIP-341 (Taproot), and 342 refers to BIP-342 (Tapscript).\n- The transaction uses DER-encoded ECDSA signatures of lengths 71, 70, 69, 68, 67, 66, 65, 59, 58 and 57. Signatures are normally 71 or 72 bytes long, but can be made shorter with repeated signing attempts; this is called "signature grinding". The last three are especially short because they use [a known short r-value specific to the secp256k1 curve](https://crypto.stackexchange.com/a/76010).\n- The transaction uses every possible sighash flag: SIGHASH_DEFAULT, SIGHASH_ALL, SIGHASH_NONE, SIGHASH_SINGLE, SIGHASH_ALL | SIGHASH_ANYONECANPAY, SIGHASH_NONE | SIGHASH_ANYONECANPAY, and SIGHASH_SINGLE | SIGHASH_ANYONECANPAY.\n- The OP_RETURN output includes the push opcodes for numbers 0 to 16 after its initial text push. Multiple pushes don't violate any standardness rules, as long as the output as a whole stays under the size limit.\n- The transaction uses uncompressed keys in multiple inputs, and unusually mixes compressed and uncompressed keys within multisig scripts.\n- In the P2MS and legacy P2SH inputs, the unused multisig keys are the genesis block coinbase key, block 9 coinbase key, and Hal Finney's key used in [the first ever Bitcoin transaction](https://mempool.space/tx/f4184fc596403b9d638783cf57adfe4c75c605f6356fbc91338530e9831e9e16#vin=0). The two unused keys in the P2TR script path multisig are the two vanity keys from [the first ever P2TR script path transaction](https://mempool.space/tx/37777defed8717c581b4c0509329550e344bdc14ac38f71fc050096887e535c8). The internal key in the P2TR script path is the SHA-256 hash of the white paper. Finally, the 20-byte hash in the HTLC script corresponds to the address 17TASsYPbdLrJo3UDxFfCMu5GXmxFwVZSW used in the 2010 value overflow incident, where the 0.5 BTC used in the attack remains unspent to this day.\n- The P2TR script path input has a Merkle tree of depth 21, much more than any before it (the previous record was 7). The Merkle branch steps revealed in the control block are not just random hashes, but are the TXIDs of 21 transactions significant to Bitcoin's history:\n\n\t- 2009-01-03 Genesis block coinbase transaction: \n\t 4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b\n\t- 2009-01-12 First non-coinbase transaction (from Satoshi to Hal): \n\t f4184fc596403b9d638783cf57adfe4c75c605f6356fbc91338530e9831e9e16\n\t- 2009-01-16 First transaction sending to P2PKH: \n\t 6f7cf9580f1c2dfb3c4d5d043cdbb128c640e3f20161245aa7372e9666168516\n\t- 2010-05-22 Laszlo Hanyecz's 10,000 BTC pizza transaction: \n\t a1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\n\t- 2010-11-14 First duplicate transaction (BIP-30 violation #1): \n\t d5d27987d2a3dfc724e359870c6644b40e497bdc0589a033220fe15429d88599\n\t- 2010-11-15 Second duplicate transaction (BIP-30 violation #2): \n\t e3bf3d07d4b0375638d5f1db5255fe07ba2c4cb067cd81b84ee974b6585fb468\n\t- 2011-11-16 Largest amount ever sent in one transaction (550,000 BTC): \n\t 29a3efd3ef04f9153d47a990bd7b048a4b2d213daaa5fb8ed670fb85f13bdbcf\n\t- 2013-04-06 Transaction that contains the entire white paper: \n\t 54e48e5f5c656b26c3bca14a8c95aa583d07ebe84dde3b7dd4a78f4e4186e713\n\t- 2013-11-05 Rickroll transaction: \n\t d29c9c0e8e4d2a9790922af73f0b8d51f0bd4bb19940d9cf910ead8fbe85bc9b\n\t- 2015-07-07 F2Pool's "Megatransaction" that took 25 seconds to verify (see [blog post by Rusty Russell](http://rusty.ozlabs.org/2015/07/08/the-megatransaction-why-does-it-take-25-seconds.html)): \n\t bb41a757f405890fb0f5856228e23b715702d714d59bf2b1feb70d8b2b4e3e08 \n\t- 2015-07-11 Similar transaction by F2Pool made in collaboration with Greg Maxwell that uses the SIGHASH_SINGLE bug to be easy to verify and the short r-value trick for smaller signatures: \n\t 9fdbcf0ef9d8d00f66e47917f67cc5d78aec1ac786e2abb8d2facb4e4790aad6\n\t- 2016-04-26 Highest fee ever paid (291 BTC): \n\t cc455ae816e6cdafdb58d54e35d4f46d860047458eacf1c7405dc634631c570d\n\t- 2017-02-23 SHA-1 collision bounty claimed: \n\t 8d31992805518fd62daa3bdd2a5c4fd2cd3054c9b3dca1d78055e9528cff6adc\n\t- 2017-08-24 First SegWit spending transaction: \n\t 8f907925d2ebe48765103e6845c06f1f2bb77c6adc1cc002865865eb5cfd5c1c\n\t- 2021-07-23 0xB10C's anyone-can-spend P2TR transaction (see https://b10c.me/7): \n\t b10c007c60e14f9d087e0291d4d0c7869697c6681d979c6639dbd960792b4d41\n\t- 2021-11-14 First Taproot spending transaction: \n\t 33e794d097969002ee05d336686fc03c9e15a597c1b9827669460fac98799036\n\t- 2021-11-14 First Taproot script path transaction: \n\t 37777defed8717c581b4c0509329550e344bdc14ac38f71fc050096887e535c8\n\t- 2021-12-07 Chun's 1 BTC donation to Luke Dashjr with a 8999 BTC change output: \n\t fd456524104a6674693c29946543f8a0befccce5a352bda55ec8559fc630f5f3\n\t- 2022-10-09 Burak's 998-of-999 multisig that broke LND: \n\t 7393096d97bfee8660f4100ffd61874d62f9a65de9fb6acf740c4c386990ef73\n\t- 2022-11-01 Burak's second transaction that broke LND: \n\t 73be398c4bdc43709db7398106609eea2a7841aaf3a4fa2000dc18184faa2a7e\n\t- 2023-11-23 Highest fiat-denomiated fee ever paid (86 BTC or $3.13M): \n\t b5a2af5845a8d3796308ff9840e567b14cf6bb158ff26c999e6f9a1f5448f9aa\n\nThis project took me over a year to complete. Initially it was just meant to be a transaction with every input and output type, serving as a reference transaction for comparing features of blockchain explorers, but as I got more and more ideas the complexity eventually exploded into what you see here. I learned so much, not just about the Bitcoin protocol but also Bitcoin's history. I wrote the code that generated this transaction in TypeScript using BitcoinJS; a few performance-sensitive parts were later rewritten in Rust, a language I had to learn for this purpose.\n\nShoutout to mononaut for [being the first to notice the transaction](https://x.com/mononautical/status/1807189726501499268) a mere few hours after it was created, and for being the first to notice the significance of its TXID. Next, shoutout to Super Testnet for writing a [Stacker News post](https://stacker.news/items/593226) detailing every Easter egg known at the time and being the first to notice many of them. Finally, shoutout to these people who also found Easter eggs: Sebastian Falbesoner, Rob Hamilton, Tom Honzik, iWarp, Jiří Jakeš, Portland.HODL, pycan, Gregory Sanders, Tomer Strolight, and Peter Todd.\n\nMany thanks to the Bitcoin developer community, Bitcoin technical writers, and people who answer questions at Bitcoin Stack Exchange. This project could never happen without them. Many thanks also to people who had words of appreciation about the transaction, it means a lot.\n\nIf you have any questions, I'll be more than happy to answer them. If they are of the kind that could be answered by other people, please consider posting them to Bitcoin Stack Exchange where they will be more likely to help future readers. \N 2293 \N 419743 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 5.23006966359937 0 \N \N f 0 \N 0 140621047 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421249 2025-03-01 14:28:33.418 2025-03-29 22:39:46.783 Inscriptions: the cure is worse than the disease Ever since the infamous Taproot Wizard 4mb block bitcoiners have been alight, fighting to try and stop inscriptions. Inscriptions are definitely not good for bitcoin, but how bitcoiners are trying to stop them will be far worse than any damage inscriptions could have ever caused.\n\nInscriptions work by embedding images or other data into the bitcoin blockchain by using a trick in bitcoin script. They essentially put the data in an unreachable code block followed by the real spending conditions so the user can claim the ordinal/NFT. It is quite an ingenious trick but has broke a lot of the assumptions many bitcoiners were operating under. Previously, the main way to embed data into bitcoin was OP_RETURN, which is basically an op code exactly meant for embedding data but had two problems for the NFT people: it makes coins unspendable and by mempool policy is limited to 80 bytes. Inscriptions has the advantage that their only size limit is the block size and since their data is in the witness, not the output, they benefit from the witness discount, allowing them to embed 4x the data. This broke a lot of bitcoiners assumptions that the theoretical 4mb block would never happen because it'd be silly to have only witness data, however, the NFT people found a way to monetize it. Now this is common place and we've seen tons of inscriptions happen, driving up fees and block sizes.\n\nInscriptions are an attack on bitcoin. Inscriptions are not going to kill bitcoin, but none the less, it is an attack. Exploiting a trick in bitcoin script to use the witness discount for embedding data is definitely hurting the network, blocks were never meant to actually reach the theoretical limit and it is a problem that it is happening. Nodes will be more expensive to run and this will hurt decentralization of the network. However, now that it is happening and common place, we cannot stop it.\n\nIn retaliation bitcoiners are proposing ways to "stop" inscription and these will do far worse damage then inscriptions will ever do. Almost every proposal to stop inscriptions boils down to preventing these transactions from getting into the mempool. The mempool is the battle ground of bitcoin transactions and we need to preserve it. The mempool only works if it the premier way to get the highest fee rate transactions to miners. If we lose that guarantee, people will move to centralized systems and we may never get the mempool back. Filtering spam transactions from the mempool will not stop inscriptions, at best it will delay them by a week. The people buying inscriptions are morons, but the people selling them are not, they already have back channel communications with mining pools and if we cut them off from the mempool, then the only pools getting these fees will be the shitcoin aligned pools. This has already happened to many shitcoin networks where their mempool was killed off for one reason or another and now the primary way to broadcast a transaction is through a centralized api. This essentially creates a permissioned network, where even if anyone can run a node, if you don't have access to the transaction broadcasting api, you cannot access bitcoin. We are currently seeing congress try harder and harder to regulate nodes, miners, and wallets as money transmitters and losing the mempool will make this problem 1000x worse. There is also serious security problems without being able to do trustless fee estimation if we lose the mempool, but that is out of scope of this post.\n\nFurther, filtering transactions based on "spam" metrics can lead us down a dark path. The most economical way to transact in bitcoin is not the most private. Today the most popular way to get privacy for your on-chain bitcoin is doing a coinjoin. Coinjoins are not necessarily economic transactions, you are merely spending to yourself along with a bunch of other people. If we set precedent that you have to justify the usefulness of your transaction to not be considered spam, soon people will find a way to exploit this to try and get coinjoins and other privacy techniques excluded from mempools for being spam.\n\nWith all this being said, if bitcoin is going to work, we shouldn't need to care about inscriptions. The promise of bitcoin is a global monetary network backing the entire financial world, if that is overtaken and its primary use case is a NFT trading platform, then bitcoin was doomed to fail in the first place. We have seen many shitcoin bubbles for over the past decade and this one is no different. The shitcoiners will eventually run out of fools to buy their scam and things will go back to normal, but we can't shoot our self in the foot trying to stop things prematurely, when we can just wait them out.\n\n#SaveTheMempool \N 16432 \N 421249 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.7999053700296 0 \N \N f 0 \N 0 83249334 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422667 2025-03-02 15:57:41.41 2025-03-29 22:39:46.783 Bitcoin's Lost Decade. \nPeople used to talk about hyperbitcoinisation as if there were a doubt. Doubtful its day would come or if it was even a thing. Until those years, people had romanticised the idea of it. Others believes it would bring forward a mad-max state and the end of the world as we know it. Bitcoin however awoke many in the 2010s and 2020s to the injustice that exists in the world, given the world's economy had been resting on a select few's shoulders. If you were a time-traveller living through this time again, you would remember this period vividly. This was a time when every single day the press and people were panting like puppies, waiting for their next labour-market or inflation number being 'fed' to them. \n\n\nPeople had quite literally become domesticated by monetary policy, the Federal Reserve and big government. It didn't take long for those with increasing abilities to become cognisant that these institutions were no longer working in the best interests of its citizens. If not after 2020, then certainly by the end of the 3 painful years of 2026, 2027 and 2028. The true battle was not against a foreign adversary, but against individuals and their minds themselves. To stop them from adopting Bitcoin given it was gaining strength from fiat monetary policy. Bitcoin's ascent would come regardless.\n\n\n![Hyperbitcoinisation.png](https://m.stacker.news/14295)\n\n\n-----\n\n***ℹ️ Note**: This is my first attempt at fiction'ary here on SN. Inspired to finally post it by @plebpoet's [SN post](https://stacker.news/items/405904/r/davidw) on the positive impact of fiction. something to look back-on hilariously for entertainment. But bear with me whilst I try to set the stage for a potential era of hyperbitcoinisation... including with graphics. If you prefer just discussing your own vision for hyperbitcoinisation, feel free to join the discussion on [this SN post](https://stacker.news/items/406385/r/davidw) instead.*\n\n----\n\n## **Stage A. Inflated Expectations**\n**December 2022 > November 2025**\n\nPeople thought that the inflation that roared into life in 2021 would not be toppled for years to come, only to witness double-digit inflation show it's face again in the second half of 2024. Thanks to massive injection of global liquidity worldwide starting Q1 2024. \n\n\n![Global-M2-Supply.png](https://m.stacker.news/14297)\n\n\nYou needed not look further than the M2 money stock of the Top 5 most traded currencies at the time, the USD, CNY, EUR, JPY, GBP - adjusted into dollars. A new printing frenzy happened in 2024, marked by the 3rd grey triangle illustrated, with the total stock of these currencies reaching a top of 200 trillion dollars just 14 years later. More than doubling in that time. Such a figure acted like a wall however, with both the market and hyperbitcoinisation later forcing what was left of these countries into adopting the asset and into complete currency reform.\n\n\n\nDuring 2025, inflation briefly pierced 14% officially YoY or 20% - when using more accurate methods to calculate necessary goods & services. This led to even more extreme distortions in everyday life, with more and more of 'modern' society speculating beyond their means - be it with meme stocks on-top of corporate 'blockchains' (i.e. intranets), companies rebranding themselves to NDIV-AI, or even cigarettes, gasoline and used cars being stockpiled as a means of 'getting ahead' of others. People were doing nothing more than just surviving. \n\n\nIn spite of it looking like a small blip on the chart between 2020 and 2026, you can see the *drastic* change of pace in UK retail prices, with a basket of retail prices doubling from 1k to 2k:\n\n![uk-retail-prices.png](https://m.stacker.news/14280)\n\n*📊 The chart above combines official UK Parliament data via [this report](https://researchbriefings.files.parliament.uk/documents/RP12-31/RP12-31.pdf) between 1750 to 2011 with pleb-like extrapolation / guesswork.*\n\n---\n\nMainstream press speculated that the teeny-weeny bull market of 2020/21 would never be repeated. Only to witness every Tom, Dick and Harriett trading options & puts as third jobs by the end of 2025. This led to restrictions around who was able to trade and not - with many traders needing to evidence themselves as 'professionals' or high net worth individuals in order to access their capital after the exuberance disappeared. \n\n\nThe bull-market top of 2024/2025 was signalled shortly after November 2025 when Elon declared that $DOGE was on-track to being the next world reserve currency due to its micropayment capabilities for X and for Tesla, only 24 hours before the entire protocol went offline a day later due to meme Monday clogging it's "blockchain". Teslas were undriveable and X was inaccessible during this time, causing panic for stock markets, investors & all manner of businesses worldwide that were dependent upon it for 'sentiment analysis'. One Friday, saw the biggest drawdowns in market-making history.\n\nThis time was also categorised by the suspiciously-contrarian investor Jim Cramer claiming Bitcoin's price appreciation was a 'sure thing' and that remortgaging homes into Ark's 5x leveraged A.I-infused Bitcoin ETF was a matter of national importance and patriotic duty. Given the rapid appreciation of all other assets, and the even more pronounced leverage that was funnelled into the system, there were now 120 paper claims for every $1 in the system by the end of 2025. With an explosion of derivative contracts and leveraged ETFs without underlying insurance to cover those claims. With everyone rushing to the dollar exits at the same time, the unwind of almost all financial assets globally came within hours. Prices of retail goods even fell, so that by 2028 they had fallen to match those observed in 2019. But not for long.\n\n\nThe "everything bubble", as it was described soon after, took the heat-off Bitcoin in many respects. With the monetisation of everything, liquidating anything else other than Bitcoin was very slow work. People soon understood the value of a bearer asset that you could liquidate in minutes. But first not without the price of the asset taking one of it's usual beatings into 2026... \n\n\n## **Stage B. The Slump**\n**December 2025 > January 2029**\n\nOne side effect of this financial collapse was the accelerated obsoletion/replacement of many major political currencies worldwide, at least in their traditional form. Replaced in favour of their more modern programmable alternatives. The premeditated & somewhat staged economic collapse that followed, prevented most citizens from spending their 'gains' into the real economy. Even with those still owning some assets on paper. Bitcoin drew-down from $450k to $60k over this period. Yet at the same time people were met with the introduction of 'unrealised capital gains' on assets. With the IRS issuing tax statements for the value of paper Bitcoin gains from 6 months prior. It also saw the 'patriotisation' of Bitcoin via ETFs and MicroStrategy stock as 'prepayment' of those taxes. The ultimate recognition of Bitcoin's value to the world, Bitcoin was being coerced out of ~~individual~~ ~~suckers~~ tax payers hands and was now recapitalising the new financial system.\n\n### **CBDCs**\nThe evolution of fiat into CBDCs saw to them being described initially as 'inflation-proof' by allowing each unit of currency to have conditions of purchase. Being only tradable for certain products, services and quantities of each. This was their only means of existence. The timely introduction, during the years of 2026, 2027 and 2028, a period of economic turmoil, created a sudden stop to the incredible price accumulation for nearly all assets over the short term. Prices had overshot and so they oversunk, becoming around 20% lower in 2029 compared to 2019. For the average person, it was very disorientating.\n\n\nMany people adopted CBDCs via the carrot initially, first out of novelty with their trials and then out of necessity. Only for governments soon to be incentivising their use via the stick method. In many locales, politicians promised not to go this route however, distancing themselves from the Chinese socialist model in favour of their own approval ratings. CBDCs in the latter part of the 2020s however allowed more and more control of private resources worldwide, including both property and people. Capital and immigration controls were intense during those years. The years up to 2030 were so chaotic and painful for many, that people wrote about them in general as *the* "lost decade". But this time wasn't at all lost for Bitcoin. \n\n\nIncreasing misallocations of capital created large waves of unemployment in all countries within 24 short months, particularly for those countries that had benefited most during the industrial era. This led to huge drawdowns on stocks and an almost worldwide-ban on 'short selling' by retail investors. The collapse temporarily reduced prices quite significantly. The onset of new automation technology took the fall for the collapse and people's dependency on the state, rather than people pointing the finger at the price of money itself and those in control of it. \n\n### **Battle for Minds** \nCorrupt politicians and people of power sought to domesticate their pets, by packaging-up news and nutritional needs with sub-standard fake sludge. Subsidised life by the state, if you did as they pleased. Many saw through it. Being in such a privileged position, it was popular for governments to blame foreign adversaries for all manner of issues worldwide - be it climate, shortages, unemployment, hunger, data leaks, internet outages and more, but it was their own citizens that they were focused on. Preventing them from a monetary uprising. Many subconsciously forgot just how much transpired during those years, with a new so-called 'crisis' unfolding almost every quarter. Censorship, AI-modified content, fact-checking, internet domain takedowns and permissioned social media became the norm. And in that environment, foreign / global conflict was seen as a more favourable scenario for politician portfolios than witnessing the GreatER Depression unfold in it's entireity around the world. Large nation states needed such a conflict in order to write-off big portions of their debt. \n\n\nTo many however it was a surprise to see such a moronic mindset and abhorrent actions surface themselves, despite having been predicted to arrive as early as 2026 by Star Trek decades prior. It wasn't until the end of 2028 when this became unavoidable for all. Global conflict helped distract and suppress people's inflation expectations for some time, all whilst enabling countries to spend and misallocate money like drunken sailors. Drunken sailors with nuclear capabilities.\n\n### **Tick-Tock Next Flock**\nAmidst all of this social upheaval and fanfare, a growing number of humble pleb-devs were reclaiming sovereignty in new territories, relocating and retooling to build the next wave of business infrastructure to be adopted for the 2030s. People of higher cognitive and creative abilities were able to circumvent the restrictions imposed on them years in advance of others in the populace. They were trading their time & valuable consumables for a superior asset, amongst each other in smaller communities.\n\n\nThe difficult years of 2026, 2027 & 2028 meant that Bitcoin builders had an extended period of time to batten-down the hatches and hack-away on novel innovations. More so than normal. They did so under the continued mystery of pseudonymous nyms, commissioning alternative means of transport for private meets. At the same time they were introducing privacy-preserving improvements and layers to Bitcoin that would obsolete even the latest CBDC technologies in just a few years. A 3 year bear market was a treat for these underground hermit builders. They had built in these months what would have taken decades, without the distractions of everyday life.\n\n\n### **Bitcoiner Innovations in the 2020s**\nHere were a few innovations that professional punks came up with:\n- They had engineered and normalised offline payments over radiowave on new layers of Bitcoin. Anyone with an old CPU, clothes hanger and a soldering-iron could bootstrap bitcoin circular economies for people in the surrounding 20km radius.\n- They had made mesh networking scalable, profitable & popular once more. People were able to charge for time-boxed access or per GB of data downloaded, with a few incentivised nodes connecting to existing non-commercialised low-orbit satellites for global reach.\n- Nostr had normalised multi-sig and estate planning so that a will of any size could be set-up in less than 60 seconds. It was now considered best practice to select 3 of 5 contacts with whom to share keys with when initialising a new wallet.\n- Payjoin payments were now 95% of the network transactions, rendering chain surveillance vapourware even worse than guesswork in just 6 short months.\n\n\n### **Bitcoiner Innovations in the 2030s**\n- Zaps were happening in real-life with simple hand gestures. Most adopted the cowboy pistol zap gesture, shooting satoshis from their finger tips whilst miming the words "peow", thanks to the accuracy of accelerometers. Others opted for the spiderman web gesture or the Jay-Pow two-handed money printing gesture. Each had their own unique physical method of zapping, whilst others just reserved them for secret handshakes.\n- Physical Bitcoin gift cards were handed-out for special occasions. Once spent or redeemed, the cards would self-destruct safely, increasing the virality and network effects of Bitcoin.\n- Many Bitcoiners pivoted to privacy preserving hardware, both in digital and meat space, to carry around and shield themselves. They were as powerful as advanced military scramblers, making them undetectable to most invasive spyware on the streets, meaning privacy-minded people were only observable by low-orbit satellites if they wished. Appearing as bright flashes of light by digital cameras, when enabled.\n- Bitcoin transactions had become so commonplace that in some parts of the world, and many people depended on it for their day to day life that many churches now rang a bell each time a new block was mined.\n\n\n## **Stage C. Euphoric 2030s**\n\nIf ever there were a time to define Hyperbitcoinisation it would be in the period that followed, during the 2030s. The world had shaken many of the shackles of government inefficiency, putting to an an end the worldwide restrictions, injustices & 'crises'. The conflict was over relatively quickly by historical standards. This led to the privatisation of much security in society, opening of commerce and aerospace once more - together with novel new technology being deployed by the private sector. Tech that had previously only been accessible to parts of the public sector for 'defence'.\n\n![BitcoinPrice.png](https://m.stacker.news/14296)\n\n\nThe Bitcoin price chart looked like other rising wedges witnessed in prior maturing assets, with an extremely sharp and rapid appreciation between 2035 and 2038. It reminded many people who study markets of the likes of Apple, Amazon, Exxon, Boeing, Microsoft and others from prior decades. \n\nIn the case of Microsoft, Infosys, British American Tobacco & Infosys, assets that are in an exponential trend when priced in flawed-fiat terms sometimes overshoot above the wedge before due to exuberance, before running out of momentum.\n\n| ![Stock_Price_Apple.png](https://m.stacker.news/14284)| ![Stock_Price_Amazon.png](https://m.stacker.news/14291) |\n| ---- | ---- |\n| ![Stock_Price_Exxon.png](https://m.stacker.news/14290) | ![Stock_Price_Boeing.png](https://m.stacker.news/14289) |\n| \n![Stock_Price_Microsoft.png](https://m.stacker.news/14288) | ![Stock_Price_Cisco.png](https://m.stacker.news/14287)] |\n| ![Stock_Price_British_American_Tobacco.png](https://m.stacker.news/14286) | ![Stock_Price_Infosys.png](https://m.stacker.news/14285) |\n\n\n\n### **Unforeseen Prices**\nFor those preoccupied with price, most thought that Bitcoin priced in dollars at $369k at the end of 2024 was the ultimate top. Others thought the dollar would cease to exist beyond that year. Permabulls speculated that following this bull market, that Bitcoin would never drop below $40k again. It did so towards the end of 2028 with a far longer than expected bear market. 3 years instead of the usual 1.\n\nThat said, *never* in people's wildest dreams, did anyone anticipate that less than a decade later that price would exceed `$370,000,000 per each Bitcoin`. Not even in a hyperinflationary scenario had people forecast that in sheer purchasing power adjusted for inflation they would be valued at $74 million a pop in 2024 terms. People thought that these sorts of returns were behind a thing of the past.\n\n### **Nation 'Steak' Adoption**\n\nEl Salvador's ascent to the very top of international finance was unimaginably fast. What took Hong Kong 40 years from, took Dubai 25 years but for El Salvador it took 16 short years, since they made Bitcoin legal tender in 2021. Other dollarised countries followed suit later in the 2020s, before it became a well-adopted strategy for nations and states in the early part of the 2030s. Countries did not stop there either. \n\n\nMany adopted Bitcoiner principles alongside the monetary "standard". Forward-looking, growth-focused economies were doubling-down on 'meat space', pivoting away from the communist climate agendas dreamt-up for the 2020s, creating a new market for premium grass-fed meat, called "bitcoin beef". Since their best customers (Bitcoiners) were demanding and purchasing it. Paraguay was first, before Argentina, Uruguay and Colombia followed in the Americas, leveraging and rebranding their livestock on a Bitcoin standard. Ireland, Portugal and Greece ditched the Euro to adopt Bitcoin also, abandoning the euro experiment. Leaving Germany and France to hold Lagarde's drooping bags. The United States had stabilised their currency due to the haul of Bitcoin it had extracted from its citizens over the prior decade but was slowly disintegrating into smaller states once again.\n\n\nDuring the early 2030s it took visionaries to abandon the privilege of printing their currencies or utilising the U.S. dollar. But by the end of the decade, countries were being berated for not doing so. What was unthinkable in Bitcoin's first "Quinceañera" was not by the end of it's 2nd 16 year mega-cycle. By 2042, there were protests in the streets demanding for monetary uniform into Satsohis. Everyday people - taxi drivers, nurses, farmers, hospitality and blue collar works were all demanding the Bitcoin standard. Even Nassim Taleb finally pivoted, finally joining the so-called "cult'. Almost all citizens worldwide got their wish, people from everywhere but Canada.\n\n\nThe dollar did lose much of it's purchasing power dating back to 2024, giving up around ~80% in purchasing power over 15 years and 30-40% compared to other smaller political currencies supported by commodities. Technology would soon see to it that the price of everyday necessities would nullify the effects of much of the monetary inflation, as Sir Jeff Booth had theorised. But not without retail prices rising significantly between 2028 and 2038. Individuals were also gaining from their increasing adoption of Bitcoin as a savings vehicle. It would not be long before time would have value once more.\n\n\nBitcoin's price appreciation during this time was similar to that during it's early years in 2010 through to 2015. During the final 2 years of hyperbitcoinsation, Bitcoin appreciated over 30,000%, comparable only to the 2 years between 2013 and 2015 (56,000%). What differed this time however was that it was appreciating at the expense of alternative asset classes, not in lockstep with others.\n\n\nAt the time of writing, mainstream opinion has recognised and declared the 2030s era to be one of growth, increasing purchasing power and liberalisation. Or more succinctly the 'Exponential End' of Fiat, rather than the 'Information Age'.\n\n### **Small and Nimble**\nSmall business was booming throughout the 2030s, with zero barriers to entry, be it for branding, manufacturing, videography, software, ingredients, electronics and more. People were finally able to concentrate on building great products that their communities had wanted, thanks to the incredible utility of programmable open-source bots & locally-run automated intelligence.\n\n\nWithout regulatory scrutiny to castrate these technologies and without potential legal action to tip the balance towards risk rather than reward, being an entrepreneur became simpler once more. The costs of doing business and any potential litigation vanished, there were fewer barriers to entry in the 2030s. \n\n\n3D printers for electronics made recycling circuitboards from unused TVs, obsolete traffic lights and old mobile phones commonplace. Outdated or previously tethered technologies were being redeployed and re-envisioned by the ambitious youth, transforming off-the-shelf general-purpose machinery into productive customised assets. The increasingly doubling-density of batteries allowed previously tethered operations completely mobile - unlocking new business models. People were deploying server farms and Bitcoin miners at sea, harnessing the power of undersea volcanoes, waves and sea-currents without worrying about excess noise or heat for people in the surrounding area.\n\n### **Innovation Abounds**\nAll of the ground-breaking robotics, healing health-tech and breakthroughs in energy efficiency and propulsion, combined with having each of our own custom FOSS intelligent assistants to educate each individual based on their strengths and weaknesses - saw to it that human productivity in nearly every corner of the globe witnessed a step change. Commerce became continental once more, after a blip in collaboration globally.\n\n\nA 10 year rise ensued, all of which was funnelled into an unobstructed anchor of value, making people-potential and productivity parabolic during the 30s. A bombastic "baby boom" that Tuur Demeester had spoken about in the 2020s soon helped improve the demographics of many countries.\n\n\nThe bizarre orchestrated chaos of the 2020s era for any creative or affluent individual, had put an end to the belief in 'big' government controlling people's lives, with people of all ages and backgrounds extremely sceptical of central control, collectively building large trustless or small trusted structures to never repeat the mistakes that had been witnessed in decades prior. The world witnessed the fragmentation of many large countries, with smaller units forming competitive laws. Any man of ability could soon earn a decent living for his family with honest work, whereas in the 2020s each family member had been working multiple jobs to sustain themselves.\n\n### **Countries Just About Functional**\nCapital controls of the 2020s for Western and Asian countries had yet to be fully lifted and not all people had yet shaken the view that politicians had a duty and need to subsidise their income. This unfortunately led to the continued degrading of fiat purchasing power, with retail prices going up 5x between 2028 and 2038. Causing more and more people being onboarded to Bitcoin.\n\n\nUnited States, United Kingdom and the European Union were not so united anymore at all. Dividing and fragmenting into smaller enclaves based on culture. Whereas people had called "The United States" in the past century, people were now calling them "These United States" once more. Still retaining the flawed political currencies. In-fighting too was still ongoing between states & regions over what portion of the national debts were owned by who and who would pay the bill.\n\n\nMany states with their absurd actions in the late 20s had stockpiled satoshis and resources to survive for some time still. But they were still mostly dysfunctional. In spite of Bitcoin attracting increasing market and mind-share from entrepreneurs, particularly those building scalable automated businesses, countries were to benefit also from the price appreciation and those that did were extending their shelf life. People were devoting the majority of their seconds to earn in satoshis, despite local CBDC currency no longer being convertible to Bitcoin. People everywhere at once were being educated in real-time of the value of Bitcoin as both a savings and trust-less tool for commerce. Some states were even benefiting from it's ascent on the world stage, more so than their citizens. They were doing so, with proxy companies, getting publicly listed companies to issue debt on international markets in local currency for exchanging into Bitcoin on their behalf. Drastically reducing their wide deficits, without signalling so to global markets.\n\n\n## **Stage E. Bitcoin's Lost Decade**\nThose that adopted Bitcoin in decades prior have in recent years been building new cities, deploying their capital into citadels, education centres, defensive tools and technologies for future generations. The level of investment has been astounding. These individuals and their communities have benefited *enormously*, not just monetarily, but also in terms of Bitcoin-based principles and community. Hyperbitcoinisation is a time of great spending.\n\n\nTheir values are strong and robust, centered around common truths, nutrition, family and (proof of) work. Bitcoiners have spearheaded an entirely new value-economy, rewarding great work and craftsmanship with a lucrative wage and subsidised living, in ways that government was simply unable. Seeing work of value, Bitcoiners commissioned new works, new buildings and statues. Their only request, for such work to be shared in the public domain, on full display to inspire future generations. Bitcoin elevated pay to be in line with productivity, thanks to both the accelerated obsoletion of monetary debasement, plus the onset of algorithmic altruism and concern for others. It brought restraint to public finances not out of force, but through game theory.\n\n### **Proof of Work Everything**\nBitcoiners still to this day are creating everything of value from anything of little value, thanks to open-source software and nanotechnology. Craftsmanship and aspirational architecture is booming. \n\n\nLike one of my favourite fictional books (The Diamond Age) foresaw, it is now more important why you create something and how you do so, rather than not what you create. The cultural aspect of what you choose to dedicate your time to is now far more important for all than it was in decades prior.\n\n\n### **Superior Returns Elsewhere**\nThat said, the days of superior returns in Bitcoin may well be behind us at the time of writing. Bitcoin may no longer be as favourable as an investment like in years prior. It may be forever money, but there is abundance for Bitcoiners today when spending satoshis. Companies with price to earnings ratios of 60-70 in years prior (meaning it would take 60-70 years of before reimbursing investors) are now priced at 0.6-1.4x earnings. People are more than happy to receive Bitcoin, but the HODL mentality is no longer being encouraged by even the earliest known cypherpunks. It is a time of great spending and investment in our future.\n\n### **Over-Monetisation**\nBitcoin is becoming viewed like gold or real estate was during the 2020s for millennials and GenZ'ers, increasingly unobtainable. An unfashionably boring relic, today's youth are now exhilarated by the face of new holographic garments, micro-electronics and autonomous entrepreneurship using Bitcoin's network. No longer video games and viral dance-moves. \n\n\nBitcoin is still sound money, it has certainly done the job of protecting people from the frauds of fiat and will continue to be the preferred method of value transfer for eternity. Bitcoin as an asset however has been commoditised and over-monetised from these last 3 decades now. Now that we're entering the 2040s, it's 4th decade as an investable asset looks set to be one of stagnant growth and purchasing power. Like gold has been during certain eras.\n\n\n![](https://image.nostr.build/a0fe2605d20ce714fe9ae5088ad86680322043ebfe6ff1b689fbd67bab5848dc.png)\n\n\nThis may seem extremely speculative to predict, but with hyperbitcoinisation now in 2040 in full flow, we may actually see more red than green years in the run-up to 2050. People are investing and deploying their satoshis for the future. The amount of unspent Bitcoin is decelerating fast. Bitcoin has done it's job in bootstrapping this new era of growth for humanity and will do so again in future decades.\n\n### **The Return of Trust**\nNew trustworthy communities have adopted Bitcoin fully as their collateral, but are now offering their own undervalued growth potential on-top of the treasury asset. These private currencies, including repurposed fiat are backed not-only by 'digital gold', but also include the human potential and growth of their communities to generate a superior return this next decade. The return of trust to our institutions is leading to bull-markets in other areas and assets.\n\n### **Revaluing Human Time**\nSome people estimate that a barrel oil is worth between 10,000 & 25,000 human hours of stored energy today, with 35 billion barrels used each year. So `350 - 875 trillion` human hours each year.\n\nFor Bitcoin, the numbers are more modest but the average hodling period has now crossed below 4 years, with 70% of Bitcoins up until recently not having moved for 5 years, a trend that only now is starting to reverse. Given the ability to work from anywhere, Bitcoin has helped redistribute the worlds wealth increasing the average salary globally from $8,900 per annum in 2020 to in excess of $80,000 p/a by 2040. Adjusted for inflation, wages have tripled globally, levelling the playing field across geographies.\n\nFurthermore, in excess of 5.5 billion people have been utilising it as their primary source of _energy storage_ - their time. Given the shift to an average 4 day work-week, `8.5 trillion new hours` are directly being parked per year in Bitcoin. \n\nIn addition, the network has absorbed ~80% of historically-stored energy, estimated at $650 trillion of the now $800 trillion of Global Wealth. Adding $31m to the value of each Bitcoin over the last 30 years. At the global average hourly wage of $50 per hour, that's `13 trillion human hours` deployed inside the network. Or over 21 trillion total.\n\nEach Bitcoin in total is estimated to be storing over `1,000,000 hours` or `650 human years` of human productivity. These 'pent-up' hours are now coming onto the market, ready to be spent and redeployed into the economy, for business, infrastructure & for investments. Without any drastic changes to inflation. Being on a sound money standard however, reduced the risk of inflation eradicating that purchasing power. If anything, goods and services were getting cheaper just like Sir Booth said.\n\n## **Redeployment of human capital & time**\nNow that every community has sound and solid fundamentals, now that hyperbitconisation is upon us - energy resources too are being redirected away from global hashing power, in favour of new transportation, new opportunities and new human growth potential. \n\n----\n\n## **What if Bitcoin is seeing a 'lost' decade?**\n\n![](https://media1.giphy.com/media/CbNeTOSwGdpg4/giphy.gif?cid=ecf05e47rkw94swl9zgh5hxpntfh6qs3ozhznjawkoa6n0xx)\n\n***Question - If this were the case between 2038 and 2048, how would you react and adapt in this environment?*** \n\n\nEach Bitcoin may have been worth close to $390million in recent years, but it need not matter, given that hyperbitcoinisation is taking full effect. Every commodity experiences long-term cycles, and becomes overvalued at certain points. Bitcoin itself has witnessed that in prior micro-cycles. Just now it was happening on a grander scale. Bitcoin as an asset may be going through a "lost decade" but as a network it is thriving. Many people are using it without recognising it.\n\n\nIf I was to travel back through time and give advice to myself in the past, I would of course encourage that person to buy more Bitcoin. But I would also be willing to forego and spend much of it building new businesses and communities during the latter stages of the 2030s. During opportune times when Bitcoin had demonetised and absorbed much of the M2 supply, exuberance & premium - which had existed in other assets in decades prior. Our work may not be done as Bitcoiners to repeat the ills of the past, but Bitcoin has brought us back normalcy, stability and fairness.\n\n\nWhat we may now be witnessing today is that Bitcoin's vast adoption and appreciation is peaking... at least in fiat value terms. Most of the S curve is behind us. Ahead may be more growth in alternative assets and businesses, but that is thanks to Bitcoin. It's seen to the return of value. The return of a natural business cycle. Superior returns await Bitcoin when deploying capital rather than stashing scarce satoshis.\n\n## **Reason for posting...**\n\nSo my question to the fellow pleb readers, what does hyperbitcoinisation look like to you? And will you consider deploying your Bitcoin into the real economy if this thesis is true? When would the humble hodlonaut become a sat-splurger? I would love to know your thoughts below...\n\n \N 21338 \N 422667 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.0323372499065 0 \N \N f 0 \N 0 61093938 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 140342 2024-03-10 07:58:59.882 2025-03-29 22:39:46.783 I heat my 100 yr old home with Immersion Bitcoin Mining Hi Everyone, this is my first post here and a writeup rough draft for this project. My plans are to open source it and hopefully be a resource to anyone that wants to do this in their homes.\n\n**Please ask any questions in the comments. Please give feedback if you have any. This is not complete yet. Your questions will make it into the final writeup. I am not a writer, nor a technical writer. I am a discount engineer and want every home in the world to have a system like this**\n\n# I heat my 100 yr old home with Immersion Bitcoin Mining\n\nThis journey started in November of 2023. This house is almost a century old and was heated a hydronic boiler and radiator system. For those that aren't familiar, a hydronic radiator system is one that pumps hot water around pipes throughout the house, to let heat off from cast iron radiators. The system I had/have works great, but I couldn't help being annoyed a burning oil, to only get heat. \n\nBitcoin mining machines get hot. Very hot. Hot enough to heat a whole home. The goal of this project was to eliminate my heating oil bill by capturing and reusing the waste heat from these machines. \n\n## Hydronic Systems\n\nHydronic Systems are an older technology that holds up incredibly well. It's efficient, quiet, and a nice cozy heat. \n\nThere are 5 parts to every hydronic system:\n1. Heat source(s)\n2. Pipes containing water\n3. Radiators in the spaces you want heat\n4. Pump(s) to circulate the water\n5. Thermostats/aquastats, for control and safety\n6. (Optional, but nice) Zone controllers for more control\n\nThe system is filled with tap water, and that water will forever circulate around until it is drained. \n\nAs for the heat source, it can be anything that gets hot.\n\nCommon heat sources include:\n* Natual gas boilers\n* Oil Boilers\n* Wood systems\n* (Now) Bitcoin Miners\n\n\n## The Calculations\n\n### Heat \nThe existing oil boiler can produce about 125,000 BTU/h of heat. This was my rough ballpark number. However, this current system runs intermittently. So it would run for about 15 minutes, stop for 30, and repeat. While this works fine, the temperature swings 5-8 degrees between heating cycles. \n\nThere exists a direct conversion of Watts to BTUs: \n\n 1 Watt = 3.41 BTU/h\n\nSo with this number in mind, I began to look at machines on the market and what power they output. I ended up with two S19k Pros for their increased efficiency and constraints within my budget. \n\nWhen running in standard mode, one machine will consume ~2760W from the wall, which is ~9,411 BTU/h of heat; and when running overclocked, one machine pulls ~3600W, which is ~12,276 BTU/h of heat. Because of thermodynamics, all energy consumed by the processor will eventually be dissipated as heat. \n\nSo since I now knew I had a range of ~18,000 - 24,000 BTUs of heat, is this enough to heat a home? Turns out, yes.\n\nEven though the boiler can produce a much higher output, the short bursts of that output give a similar area under the curve to the miners, which are on all the time when in heating mode.\n\n### Fiat Costs\n\nThe oil plan I used to have was an anual usage, divided by 12, and then paid monthly. So in winter, when more deliveries would come in, I would pay the same as I would in the summer, when I would get maybe 1 a season. So the negative cost I needed to match or beat was ~$380 per month. I felt that even if I was "losing" a net of $380 per month, then this project would still be worth it, as I am now at least stacking sats and learning by doing. \n\nMining at home will be entirely dependent on your electricity rates. These rates consist of a generation charge and a distribution charge. Most commonly refer to this in the combined form as "Cost per Killawatt Hour" or c/kWh. My distribution charge of 0.084c/kWh was fixed, nothing I could do to lower it. However, I was able to find a way to bring my generation charge down to 0.07c/kWh. So my current electricity rate is $0.154c/kWh. If you are familiar with the mining scene, this is quite high. But recapturing the heat is an incredibly efficient action. What was waste is now useful, while getting Sats. It's paying once, and receiving two uses for the same watt. This efficiency boost allows home mining operations to be competitive with commercial. Heating is a sunk cost for a home, and now it is possible to monetize it. \n\nRemember, **the goal is not "profit" in fiat terms, the goal is to get sats for a bill you are paying anyways.**\n\n\n## Heat Exchangers\n\nThere are multiple forms of heat exchangers, but for this type of installation, brazed plate heat exchangers are the ideal type.\n\n![plumbingoverview.png](https://m.stacker.news/23056)\n\nHeat exchanger sizing is quite difficult, it is possible to do all of the math involved, but the general rule is bigger = better. \n\nSource HBIM channel: https://www.youtube.com/channel/UC9dv60_ORGjNpdHYQ2GDR2Q \nAside: Bob from this channel is a Godsend. He has so much knowledge and this project would not have been possible without him. I was constantly referencing his videos! Thank you Bob!!\n\n\n## Design Considerations \n\n * Do you want to run the miners all the time? or only when heat is needed?\n * yes, heat exhaustion is needed (more sats)\n * no, simply turn them off (less sats)\n* Are you only trying to heat living space? Or also tap water?\n* How insulated is your home?\n* Do you have any existing infrastructure you are working around, or are you starting from scratch?\n* Is your electrical pannel big enough?\n\n## The System\n\nFor my system, I wanted to have 3 heat exchanger stages.\n\nFirst stage, use the heat for the tap water (it is a great feeling to be washing clothes/dishes/hands, and showering with Bitcoin). The second stage uses the heat in the hydronic radiator system. And the third stage is outside exhaust. \n\nFor the first stage, I went all out and used a 100 plate heat exchanger. I am sure the engineers in the comments are laughing at this, given its way oversized, but this was simply a part in my learning journey. When heating, I am able to warm the tap water up from 55 degrees F, to 130 degrees F. This water travels prewarmed into the boiler. The result is the boiler is on for way less, or not at all for some heat loads. Remember, the miners can only heat immersion fluid comfortably to around 60-70 degrees C. I try not to push them that high, as they run less efficiently the higher the temperature is.\n\nFor the second and third state, I used 40 plate heat exchangers. This was from the reccommendations "here" and they seem to be sized just right. \n\nFor the indoor radiator system, I had to integrate this new heat source to work in parrallel with my current boiler. I wanted to be able to have either heat source, that way there is redundancy and the boiler can assist the miners if it is too cold outside. Here is a diagram of how this looks simplified. "Diagram" . There are also safety system in place for the miners. \n\nFor example, if the miners are circulating heat through the house and the boiler circulator pump also turns on, the mining system will automatically exhaust, as to not put the heat from the boiler into the immersion system and heating up the machines. \n\nFor the exhaust side, this is its own seperate hydronic system. Instead of only water, it is filled with a glycol/water mixture, so that it will not freeze in the winter. This system has its own circulating pump which goes to the Fog Hashing radiator outside. This radiator has its own power and temperature sensors, and it is able to control the speed of the fans to match what is needed for the heat input. To make this system easier for myself, I utilized PEX-A piping, which was nice to not need to solder copper pipes. One of the other safety systems is a temperature controller on the final output of the oil line. If this ever becomes too hot, the system will turn on the exhaust if it is off. \n\n## Electrical\n\n![elecoverview.png](https://m.stacker.news/23057)\n\nThe electrical side of this project has three parts.\n\n* High voltage AC (240v)\n* Low Voltage AC (24vac)\n* Low Voltage DC (24v)\n\nThe low voltage side was simple. A doorbell power supply is 24vac and perfect for this application. I used 4 cable speaker wire to carry the 24vac to both control boxes. Each control box has a 24vac side, and a full bridge rectifier to convert it to DC. The DC components include fans, lights, thermometers, and USB buck converters. \n\nTo control the 240v to each miner, I used 10/2 romex cable and put each miner on its own dedicated 30 Amp circuit breaker. Each high voltage cable goes into its own 24vac 240v Air conditioning contactor. Think of this as basically a very large relay. The closing and opening of the contactor is controlled via the oil circulation pump in the fog hashing tank. There is a current sensing relay that is closed if the pump is on and open if the pump is off. When the oil pump turns on, the contactors close and high voltage power is supplied to the miners, turning them on. There is a quirk with the fog hashing tank. In the event of a power outage, when power is restored, the pump will not automatically turn on. This is why I added the current sensing relay and the contactors. Otherwise, the power would be restored and the miners would cyclically turn on, overheat, and turn off again. \n\nTo control the pumps, I utilized a standard Taco switching relay for hydronic systems. The low voltage control box contains all logic with no micro controllers. There is a standard analog thermostat in the middle of the house which controls the circulation pump on the bitcoin miner side. If this pump is on, then the exhaust pump is off, since I want to keep all the heat inside. However, if the oil becomes too hot, both pumps will turn on, protecting the miners. If the thermostat is off, then only the exhaust pump is on, and the heat is directed outside.\n\n### (Electrical Cont) Home Assistant\n\nTo monitor the temperatures of everything, I made a 12 input temperature sensor with an ESP8266 running ESPHome. The ESP has 12 DS18B20 Temperature probes connected to it, with one probe being on every input and output (yes I know some are shared). this data is pumped into Home Assistant and I can view and graph live temperature data. \n\n![HA.png](https://m.stacker.news/23058)\n\n## What I spent\n\nThis project was quite expensive, but I was able to save so much by doing all of the labor myself. No, I did not have any experience with plumbing, soldering copper pipes, or maintaining my hydronic system before this project. I was familiar with mains electrical systems and have added outlets and switches in places, but that's about it. My point is that anyone with an internet connection can learn and do anything. Leverage it as the tool none of your ancestors had.\n\n![Cost Breakdown.png](https://m.stacker.news/23055)\n\nMost of the cost was the miners themselves and the Fog Hashing kit. Could you probably make a cheaper tank and find a cheaper radiator? Maybe, but good luck. You will put a lot of time into it and this kit was able to be perfectly adapted to this, even though this is not what it was made for. The rest of the cost was plumbing. This included all tools, fittings, pipes, pastes, etc. **I have never soldered a copper pipe before this project, if I can do it, you can too**\n\n## Conclusion\n\nYou are correct. If I had used the dollar amount of this project to buy bitcoin, I would be head and up in bitcoin terms. I would have had more bitcoin simply buying it. I knew that going into this and that wasn't the point. The point was to monentize waste, to learn all of these new skills, to further decentralize the network, to stick it to the commercial grade miners, and to write up a cool post about it. The skills I learned doing this project are worth more to me than the bitcoin I could have bought. I now have the ability to do many other projects around the house without having to call contractors. I am able to save by working for myself. \n\n## Photos!\n\n![20240225_154823.jpg](https://m.stacker.news/23059)\n\n![20240225_154830.jpg](https://m.stacker.news/23060)\n\n![20240225_154833.jpg](https://m.stacker.news/23061)\n\n![20240225_154838.jpg](https://m.stacker.news/23062)\n\n![20240304_231215.jpg](https://m.stacker.news/23063)\n\n![20240304_231221.jpg](https://m.stacker.news/23064)\n\n![20240304_231227.jpg](https://m.stacker.news/23065)\n\n![20240304_231229.jpg](https://m.stacker.news/23066)\n\n![20240304_231233.jpg](https://m.stacker.news/23067)\n\n![20240304_231238.jpg](https://m.stacker.news/23068)\n\n![20240304_231243.jpg](https://m.stacker.news/23069)\n\n![20240210_014859.jpg](https://m.stacker.news/23070)\n\n![20240210_014912.jpg](https://m.stacker.news/23071)\n\n![20240211_154733.jpg](https://m.stacker.news/23072)\n\n![20240211_154736.jpg](https://m.stacker.news/23073)\n\n![20240225_005706.jpg](https://m.stacker.news/23074)\n\n![20240225_150859.jpg](https://m.stacker.news/23075)\n\n![20240225_151509.jpg](https://m.stacker.news/23076) \N 660 \N 140342 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 28.4711342045437 0 \N \N f 0 \N 0 129839821 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 31515 2023-06-13 13:57:53.681 2025-03-29 22:39:46.784 How To Get Robbed 4 BTC And Be Ignored by Anycoin.cz and BTCPay team # Just a bit about me\n\nI'm Hugo Ramos, a Portuguese guy in his late 40s. I heard about Bitcoin for the first time in late 2015. I bought my first BTC in late 2016, if I remember correctly, the price was around $1000. Yes it took me around 1+ years to fully understand the genius of Satoshi. In 2017 I quit my job and decided to get into the Bitcoin world full time. First by just studying and HODLing, then trying to evangelise family and friends and later by creating a YouTube channel and evangelise more people.\n\nIn 2022 I decided to move to El Salvador, together with my wife, and embrace the freedom of living in Bitcoin country. The goal was to buy some land and create a true Bitcoin Citadel where people sharing the same ideals could live together with us.\n\nToday I run my own Bitcoin core full node, 2 lightning nodes (1 mainly for routing and 1 for small payments by family and friends), LNbits for wallets/accounting, 1 BTCPay server for onboarding merchants, 1 Nostr relay to help the network and several other Bitcoin related websites. All this at my own expense.\n\n# But what happened?\n\nAbout 3 months ago, wanting to give back to the community even more, I decided to run a BTCPay server with the goal of onboarding merchants mainly in El Salvador but also other countries. I connected this server to the main Lightning node (the routing one) that, at the time, had 4+ BTC of liquidity.\n\nRecently I was running version 1.11.1 of BTCPay server with LNbank v1.6.2 extension to allow merchants to receive Lightning payments.\n\nOn December 6th I woke up and noticed most of my LN node balance had been drained out. I started to investigate and realised this happened because 998 Lightning payments were made to the same LN wallet [Bitlifi](https://www.bitlifi.com/en/) and all these payments, although going out through different channels and nodes, were all converging on the same node at the end: [ln-1.anycoin.cz](https://amboss.space/node/02ec20f34bb94460f3d63780dfc24a4d4a1ddabc3bd86c09e1830c5b5db08953e5) (pub key: 02ec20f34bb94460f3d63780dfc24a4d4a1ddabc3bd86c09e1830c5b5db08953e5).\n\nNot knowing exactly what was happening, I decided to DM my good friend @DarthCoin (the most Bitcoin/Lightning knowledgeable person I know) and ask him if he knew about some exploit or something else that could explain these outgoing payments. Not knowing exactly what was happening and not even being able to see what I was seeing, he said "probably some people are making payments using their LNbits wallets". "Nothing to worry about". The problem is... I was really getting worried!\n\nAt this point (about 20 minutes after I woke up) **407.361.805 SATS** had been drained out. **I decided to shutdown the node**.\n\n# First steps after being robbed\n\nThe first thing I did after shutting down the node was to email the guys at Bitlifi wallet. This App belongs to the regulated exchange [Anycoin](https://www.anycoin.cz/) that belongs to the group [21M](https://www.21mgroup.cz/). All of these companies are located in Czech Republic.\n\nHere's what I wrote:\n\n> Dear Sir/Madam,\n> \n> I'm writing to you because we, at F You Money! / MAXIMA Citadel, detected a fraud involving our lightning node (F You Money! 01) and BTCPay server being exploited for not authorised payments that ended up on a Bitlifi wallet (which was connected to your node ln-1.anycoin.cz).\nAt this point in time we already identified and created a list of all the transactions made by this dishonest person but we need your help identifying the person and trying to recover the BTC.\nThe attack occurred on December 6th, between 16:21h and 22:02h (Prague time). The total amount of BTC stolen was ~4BTC. I'm sure you will be able to find the big number of transactions on your logs, in between these times, originating from our node to your node and then to a Bitlifi wallet.\n>\n> All the documentation containing the transactions, emails used to register on our BTCPay server, and the specific amount for each transaction will be supplied to you as soon as needed for your verification and confirmation. We just need to be pointed to the right person in your company to further discuss this matter.\n>\n> Surely we can count on you and your collaboration to help us find and possibly recover the stolen funds. It would be a matter of urgency to freeze the Bitlifi wallet in question so that the funds are not transferred out of your node.\nFor this reason we would appreciate if you could contact us asap.\n>\n> Looking forward to hearing from you,\n> Best regards\n\nHere's their reply (~6 hours later):\n\n> Hi,\n> \n> we register higher amount of transaction in specified time frame.\n> Can you please provide more information about this case?\n> ID of transactions, LN addresses etc?\n> \n> Can you also share the version of BTCPay your are using?\n> \n> Unfortunately it seems all the deposits have been forwarded to other LN nodes.\n> One of the destination LN nodes is also yours (3rd row)\n> \n> 021294fff596e497ad2902cd5f19673e9020953d90625d68c22e91b51a45c032d3 1.02326007\n> 0260fab633066ed7b1d9b9b8a0fac87e1579d1709e874d28a0d171a1f5c43bb877 0.37778463\n> 02758d961750972030292701d85c90e332bc1b7d8db0e705df3f087d285f9caf06 1.10696326\n> 031df8ea711416b52d33c2f4a9b2a41d82f1da3c7672ffef2c24b0751cbdb75404 0.22228289\n> 0324ba2392e25bff76abd0b1f7e4b53b5f82aa53fddc3419b051b6c801db9e2247 0.32877441\n> 035e4ff418fc8b5554c5d9eea66396c227bd429a3251c8cbc711002ba215bfc226 0.35888885\n> 0366faf9b8693d5ca2278f6a93c393a6ca0f25ab033d13703339037bb4ee845a5b 0.06666666\n> 037f990e61acee8a7697966afd29dd88f3b1f8a7b14d625c4f8742bd952003a590 0.57444938\n> \n> \n> \n> S pozdravem\n> Tým Bitlifi.com\n\nAlthough they got it wrong (none of the stolen BTC came back to my node and also the amounts are not correct), I wrote back and sent them the files with my complete investigation, all the logs and records I got from the servers.\n\nHere's my reply:\n\n> Hi S Pozdravem,\n> \n> I'm going to provide a short description of what happened and also send you all the files with the information related to the attack.\n> \n> On December 6th at 15:20h UTC (16:20h Prague) 5 new accounts were created on our BTCPay server (v1.11.1) that were involved in the attack.\nFrom the BTCPay server the attackers were able to send payments to your Bitlifi wallet using the LNbank API (this is under investigation with the BTCPay server developers).\nThe BTCPay server is connected to our LN node F You Money! 01 which sent all the payments using different routes/channels but always ending the transaction on your node ln-1.anycoin.cz.\nThe attack stopped at 21:02h UTC (22:02h Prague) when we understood what was happening and shutdown the servers where BTCPay server and the LN node are running.\nThe final amount of BTC transferred from our node to your node was evaluated to be ~4BTC.\n> \n> All the files with transactions registered on the database of BTCPay server, NGINX logs, node records and accounts/IP addresses used to do this attack are attached.\n> \n> List of accounts created at the BTCPay server and all the information related to the attackers (also attached):\n> \n> =========================================================================\ndekajulimoro@proton.me (btcpay id: 25d18e23-6e74-4507-8432-154ead7a9a91)\n82.79.98.45 - COUNTRY: Romania; REGION: Bucuresti; CITY: Cluj-Napoca; ISP: RCS & RDS S.A.\n> \n> olgahargraveuoy.34@gmail.com (btcpay id: 61f40a8f-9259-4a0f-882d-4c02f0e8d253)\n82.79.98.45 - COUNTRY: Romania; REGION: Bucuresti; CITY: Cluj-Napoca; ISP: RCS & RDS S.A.\n> \n> olgahargraveuoy34@gmail.com (btcpay id: b5f4ec8a-0448-487b-be0a-361730af00d5)\n178.175.141.216 - COUNTRY: Moldova; REGION: Chișinău Municipality; CITY: Chisinau; ISP: Trabia SRL\n212.0.195.102 - COUNTRY: Moldova; REGION: Chisinau; CITY: Chisinau; ISP: Moldtelecom SA\n> \n> huxype@imagepoet.net (btcpay id: eef512d2-6fb8-494f-bf41-c7e058e68003)\n82.79.98.45 - COUNTRY: Romania; REGION: Bucuresti; CITY: Cluj-Napoca; ISP: RCS & RDS S.A.\n> \n> goomoogle1@proton.me (btcpay id: fa4d6bd1-bcb7-43c9-a93a-313f7ac1cf7d)\n178.175.141.212 - COUNTRY: Moldova; REGION: Chișinău Municipality; CITY: Chisinau; ISP: Trabia SRL\n> \n> =========================================================================\n> \n> The above accounts and IPs are all related to this attack. Please compare the above IPs with your own records for validation.\nWhen checking our NGINX logs also search for the above IPs and email accounts. These lines will show all transactions made.\nWhen checking the DB records you will find all transactions and hashes related to the attack and invoice IDs, etc.\n> \n> We will appreciate your collaboration in identifying these people and also providing us and the authorities with all the information about who was using the wallet and where they sent the BTC.\nAlso we will appreciate that you URGENTLY freeze any funds related to the transactions in the attached files that are related to this attack.\n> \n> We will be happy to hear from you ASAP. This is a very *urgent* situation.\n> \n> \n> Best regards\n\nHere are the files I sent them in this email. They contain all the information about this hack:\n- [List of BTCPay accounts created by the attackers](https://cloud.maximacitadel.org/s/zFqHoK3j5ianiyr)\n- [DB tables and node records with all the transactions, hashes and invoices](https://cloud.maximacitadel.org/s/2ET45WLX5PARGSH)\n- [NGINX logs with all the IPs, accounts and http calls](https://cloud.maximacitadel.org/s/7YRW8Z4azJpWpYF)\n\nHere's their reply (~21 hours later):\n\n> Hi,\n> sorry for a delayed response. We were crunching through the data you sent and we have bit more work to do, but from what we already know the BTC sent from these accounts was immediately forwarded to other nodes (with the exception of some residual amounts left). We sent you the node IDs and amounts in the previous message so that you can try to find those LN node owners and see if they have the funds. If there is any more information we can give you to increase the chances of recovering at least some of the funds lost, we will do our best, however our options are limited.\n> \n> So far, based on your data we identified just one more account on our side that we didn't previously find but it was probably only used for a test, there is only few euros worth of bitcoin now. All other accounts used are unfortunately empty.\n> \n> Is there anything we can help you with right now?\n> \n> Kinds regards,\n> Bitlifi team\n\nClearly this email was written in that "We're sorry but there's nothing else we can do" tone... They sent me the nodes where some of the BTC might have gone but, considering that my own node was on that list and none of the BTC was returned to my node and also they didn't even mention if some of the BTC was exchanged for FIAT and withdrawn on their exchange I can't do much. The amounts were also not correct, for fuck sake... How can I contact other nodes with incorrect information?!\n\nSo I sent this email in reply (the last one so far because days later I have no reply from them):\n\n> Hi,\n> \n> Thank you very much for your reply.\n> The list of nodes in your previous email is incorrect as no amount of the stolen Bitcoin was ever rerouted to my node. All the correct information is in the files I sent over to you.\n> Also I would like to know if you were able to identify any more information based on the files I sent in my previous email?\n> \n> But anyway, as I understand from your website legal information, you are a regulated and 100% KYC exchange. Taking this into account, I again ask you for your collaboration in identifying the person (your customer) that used your LN node and wallet to do this attack and also all the routes used to transfer the Bitcoin out from your node, to other nodes or even L1 wallets or exchange fiat currency to withdraw in any bank. Also there's a need to know exactly what was done after the Bitcoin arrived in your node and exchange.\n> \n> I'm preparing all the information to contact the authorities in Czech Republic, Moldava and Romania on Monday. The legal procedures will obviously require all the correct KYC information on this customer of yours.\n> \n> I very much appreciate having your collaboration and trying to identify the person(s) associated with this.\n> \n> Looking forward to receiving your reply,\n> Best regards\n\nTwo days later... **SILENCE**.\nNo more emails were received by me.\n\n# In the meantime, while I was **GETTING FORGOTTEN** by [Bitlifi](https://www.bitlifi.com/en/), [Anycoin](https://www.anycoin.cz/) and [21M](https://www.21mgroup.cz/)...\n\nWhile this was going on, @DarthCoin also helped me getting into contact with 2 core developers of BTCPay server: [Pavlenex](https://github.com/pavlenex) and [Rockstardev](https://github.com/rockstardev) that had so far not replied my DMs.\n\nPavlenex and I spoke on Telegram and, while we were messaging, he also pressed the CEO of Anycoin a bit to help me. As far as I was told by Pavlenex, the CEO said they can't do much. But Pavlenex said that he would continue to follow this case and would get back to me if some new information was discovered... I'm still waiting... No new information from the CEO of Anycoin or Pavlenex.\n\nAs to the developer of LNbank, [Dennis Reimann](https://github.com/dennisreimann), I replied to him on Nostr when he **FINALLY AND PUBLICLY ADMITTED** that there was a bug on his code and everyone should upgrade the LNbank extension. This was 2 days after my BTCPay server was exploited!\n\n![Screenshot](https://fyoumoneypod.com/wp-content/uploads/nostr_screenshot.jpeg)\n\nYou know what happened? **HE DIDN'T EVEN COMMENT MY POST. NOT EVEN A FUCKING APOLOGY!** Just another person that added me to the "forgotten ones" list...\n\n# My investigation\n\nI don't want to bother you with 2 days of not sleeping and just digging up all this shit from the server logs, database records and many other things I had to do to connect the dots.\n\nI started by isolating all possible things that were connect to my Lightning node. Only 2 platforms: LNbits and BTCPay server.\n\nOn LNbits nothing was out of the ordinary. All the wallets were normal and the balances were correct. No suspicious transactions were recorded on Postgres.\n\nWhen I went to investigate BTCPay server the story was a completely different one. Immediately I found 5 newly created accounts on the server. Created precisely on the same day of the attack just a few minutes before the exploit started.\n\nFrom there I went to investigate the Postgres database. And surely there they were... Hundreds and hundreds of payments made to invoices created at the [ln-1.anycoin.cz](https://amboss.space/node/02ec20f34bb94460f3d63780dfc24a4d4a1ddabc3bd86c09e1830c5b5db08953e5) node in the space of a few hours. All of them with the description "Payment to Bitlifi wallet".\n\nFrom there I went on to investigate the NGINX logs to check for the login of those 5 accounts newly created on that unforgettable day Dec 6th 2023. It was a horrible show of thousands and thousands of lines with IP addresses, LNbank API calls, account logins and a shit show of other stuff that I crossed with other data from the node, Postgres DB and BTCPay server to conclude 5 accounts (emails) were created to exploit LNbank and all the satoshis that were stolen amounted to exactly **407.361.805 SATS**.\n\nIn the end I also checked the Lightning node to cross reference the transactions and they are correct with the transactions registered in the database.\n\nAll this information can be checked by you guys on the links above.\n\n# What next?\n\nAs I wrote to Anycoin in my last email, I'm preparing a case to deliver to the authorities in Czech Republic and also Romania and Moldova because the IPs associated to this attack are from Internet Service Providers in those countries.\n\nIn the process of talking to Anycoin, I also found out that this exchange is regulated by the EU and 100% KYC. You can check it here in their own [terms of service](https://cloud.maximacitadel.org/s/neFTxNCxQ3nCkSw) that I saved before anything could happen to their website... Read closely points 3 and 4. They must have all the information of the clients to provide the service.\n\n**IF KYC IS NOT TO AVOID CASES LIKE THIS OR PUNISH CRIMINALS THEN WHAT THE FUCK IS IT FOR?**\n\nI don't know if the authorities or the exchange are going to collaborate in finding the person that conducted the attack on my server but I can't do anything else. Just hope that they identify this person or persons and some of what was stolen can be retrieved.\n\nI will also talk to some people as soon as I can calm down a bit more. I'll try to get some ideas about what my options are.\n\n# Broken dreams\n\nAs I described above, me and my wife's dream was to move to Bitcoin country and build a community of Bitcoiners that also want to move and live here. We were going to build our own house and a few others so that Bitcoiners can live together in the same land and share the same honest and morally correct principles.\n\nI never stole from anyone in my entire life! I'm a libertarian that respects life and private property. These are the principles that unite the big majority of Bitcoiners! And those are the ones that would be sharing our space. To live off the land and get some affordable rent from the other small houses was our future income.\n\nNow the dream is broken and possibly over. Most of the Bitcoin is gone and I don't even know how I will be able to continue to live here and help El Salvador to become the dream everyone wants it to be. Our only income is a few bucks /month from YouTube, Lightning fees from the hacked node and a few thousand sats /day from Bitcoin mining. We were mainly living very humbly on our own Bitcoin waiting for the next halving to start building this project.\n\n# Message to whom it may concern\n\nIf you are the one who did this attack, please return the Bitcoins and all will be forgotten. Please read next point.\n\nIf you are, in any way, connected to this case, help me in any way you can (tracing the Bitcoin, identifying the person(s) or any other way you can think of). I'm addressing Anycoin and 21M, BTCPay server and LNbank developers, and any other person that feels they should help. Please read next point.\n\nIf you are just a random person that happens to be reading this and you feel you can help in any way, please read the next point.\n\n# How you can help\n\nI've setup a new wallet that will be publicly exposed so that anyone can send what they want/can and check its balance over time. If by any chance or miracle this wallet gets more than 4BTC, I will donate the surplus to help other Bitcoin projects in El Salvador:\n\nbc1qz8dxk6h8gha5qvsnw67rjzz3xn6t4k0wmafqz3\n\nIf you just want to send an email with a kind word of support:\n\nhugo@fyoumoneypod.com\n\n\nThank you!\n\n \N 15119 \N 31515 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.6189228809773 0 \N \N f 0 \N 0 98957850 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5558 2022-12-18 18:32:54.305 2025-03-29 22:39:46.784 I'm losing my faith (Spanish at the end / Español al final)\n\nI have been a libertarian/anarchist for 20 years, and I have been in the bitcoin space for a few years, having recognized it as the only solution to the very serious problem of freedoms that afflicts humanity. I have worked collecting my salary only in Bitcoin. Surely you don't know many people who can say that? So is my level of conviction in Bitcoin.\n\nBut in the last few months I am suffering a crisis of faith. Of faith in humanity, or perhaps in bitcoiners themselves. These are the things that are happening that are disturbing me and making me lose sleep:\n\nThe "stack sats". It is true that I am starting to read some discordant "spend your bitcoins and then reload your stack again" type voice, but it is 2023 and the mainstream voices are still recommending to accumulate and accumulate, inciting others not to spend their bitcoin and save them. After all, your BTC will be trading in a few months or years at hundreds or millions of thousands of euros, right? How is Bitcoin adoption supposed to increase and businesses supposed to survive if no one spends their Bitcoin?\n\nIt's amazing to see how when a Venture Capitalist says something bad about bitcoin is that he is scamming people, but when he says something wild along the lines of "BTC will be worth 1 million in 3 months", we start drooling over the scammer....\n\nWe like to think that 99% of humanity is absolutely moronic, but as bitcoiners who have seen the light, we are better than the rest. We don't realize that we are "people" too. When someone says "Ethirium to the moon" we think they are a scammer or an asshole, but if they say the same thing about bitcoin.... "what does he know that I don't?".\n\nI keep hearing that Bitcoin is inevitable. I'm sorry, but it is NOT. Do you think email would have been an information exchange system for over 40 years if they hadn't invested in spam control systems 20 years ago? Do you think anything goes if the fees are paid? A few days ago someone told me on a Telegram channel that "Bitcoin will be whatever people want it to be, and it's not money anymore, it's now a decentralized database because people wanted it to be". Sorry, but I agree with "Unhosted Marcellus": we need decentralized digital money, not "whatever the people want it to be", because people are assholes.\n\nLately I pretty much agree with several of @bitcoinerrorlog's positions. We need to stop recommending people use apps that custody our bitcoins, because THAT IS NOT BITCOIN. Let's stop recommending Wallet of Satoshi and other "custodial" wallets like Alby. Never mind that they "work better" for newbies. For that we could use my bank's transfer app or PayPal, which work quite well.... right? Neither that, but also not recommending to a newbie to set up his own node. Let's start recommending Phoenix, Blixt or Bitkit, or any other self-custodial wallet that really supports Bitcoin and Lightning.\n\nWhat to say about the 2 major bitcoin remixing projects, Wasabi and Samourai? The drama continues to escalate and even today I read some threatening others, and the others revealing the identity of one of the ones. Anyway, what a clown show... If you want to remix your bitcoin and still don't know how to use Joinmarket/JAM, ask me and I'll help you get started. Let's send the Chainanalysis and the "we need to have your XPUB" folks back to where they should never have come from.\n\n"Well, but at least we can rely on the good decisions of the Core developers, who keep making Bitcoin evolve, right?". Have you read them lately? The worst one might be the "I had my bitcoin seed on an online server, they stole my bitcoins, but I did nothing wrong", but there are a few more out there saying incoherent wild things. Where do they get these people from? Well, these people are the ones inventing things like Segwit and Taproot that can't be criticized because they "move bitcoin forward". It has advanced so much, that we can now store pictures of monkeys and audios of farts on the blockchain. Goooood!!!!!\n\nAnother thing I often hear is that states will not be able to attack bitcoin, or that they have already done so but to no avail. Sorry, but it is NOT true that they have done all they can. In my opinion they have only just started, and of course the worst is yet to come, including a 6102 for real. On Twitter we are all very cool and very smart, and we all like to shit-post and make fun of the New York Times and Cristine Lagarde or Carstens, and send everyone to HFSP. But when the real state comes knocking, it's not going to be pretty. Do you think that a machina capable of sending tens of billions of dollars in weapons halfway around the world, killing millions of people, hurting and impoverishing hundreds of millions, destroying complete countries, is only going to make a few statements in newspapers as to how polluting Bitcoin is? Do you think taking down FTX or Binance is going to be the most they're going to be able to do? Do you think when the going gets tough you're going to be able to buy Wallmart coupons in Bitrefill? Do you think people who think killing half a million Iraqi children was worth it, are going to stop because "I have my own node"? You might need someone to recommend a couple of books on modern history.... We need to guard our own bitcoin and make payments MUCH MORE private than they are now, and we need it for yesterday.\n\nI understand people who want the current system to fall. I myself have spoken out in that sense on many occasions. We must put an end to this scam that some call "democratic system", and where there is not a single thing that is fair or works well. But beware of thinking "I hope it all goes to shit, I am protected, I have bitcoin". Okay, you have your bitcoin, but what or where are you going to use them for? When things get ugly with CBDC or when the different versions of the panopticons they have in store for us come into operation, where are you going to buy food and where are you going to get accommodation?\n\nThese last few weeks I have been cleaning up the Madrid region (about 6 million people) of BTCMap and literally 100% of the businesses I have checked no longer accept bitcoin. We literally have 4 restaurants that accept bitcoin. Two of them belong to the same owner and also promote Agenda 2030, and another one accepts bitcoin, but only "when the boss is around, because the wallet is on his phone". Let me be a bit skeptical when I read about "we're winning".\n\n![Morpheo/Neo meme (fixed)](https://www.ktecho.com/wp-content/uploads/2023/04/neo_morpheo_english.jpg)\n\nMeanwhile, the important people in the Bitcoin ecosystem go from conference to conference and party to party... including conferences with "Bitcoin" in the name but promoting all sorts of shitcoins. By the way, when do these people work?\n\nThey were telling me a few days ago that the fall of the current system and the triumph of Bitcoin "we won't see it, because it will happen in 50 or 70 years from now". It reminds me of when I used to go to Libertarian Party meetings and they said that their goal was to "go from 6,000 to 10,000 votes in the next few years", and when you asked them "and what's that for?" they said it was a long-distance race.... So okay, "Bitcoin has already won", but only "we'll see it in 70 years". Ok, perfect. What's the point of that?\n\nIf we want Bitcoin to be a reality 10, 20 or 40 years from now, we need to be a hell of a lot more critical today. Critical of the developers and the companies that build products. Critical of the influencers who go from conference to conference. And much more critical and realistic with ourselves.\n\nThe war is not won yet.\n\n\n\n================== Spanish from here ==================\n\n\n\nSoy libertario/anarquista desde hace 20 años, y llevo unos cuantos años en el espacio bitcoin habiendolo reconocido como única solución al gravísimo problema de libertades que aqueja a la humanidad. He trabajado cobrando mi sueldo únicamente en Bitcoin. Seguro que no conoces a mucha gente que pueda decir eso... Así es mi nivel de convicción en Bitcoin.\n\nPero en los últimos meses estoy sufriendo una crisis de fe. De fe en la humanidad, o quizá en los propios bitcoineros. Estas son las cosas que están ocurriendo y que me están perturbando y haciendo que pierda el sueño:\n\nEl "stack sats". Es verdad que empiezo a leer algúna voz discordante de tipo "gasta tus bitcoins y luego recarga tu stack de nuevo", pero estamos en 2023 y las voces principales siguen recomendando acumular y acumular, incitando a otros a que no gasten sus bitcoin y los ahorren. Después de todo tus BTC cotizarán dentro de unos meses o años a cientos o millones de miles de euros, ¿verdad? ¿Cómo se supone que va a aumentar la adopción de Bitcoin y las empresas van a sobrevivir si nadie gasta sus Bitcoin?\n\nEs asombroso ver como cuando un Venture Capitalist dice algo malo de bitcoin es que está estafando a la gente, pero cuando dice una salvajada del estilo "BTC valdrá 1 millón en 3 meses", empezamos a babear con el estafador...\n\nNos gusta pensar que el 99% de la humanidad es absolutamente imbécil, pero como bitcoiners que hemos visto la luz, nosotros somos mejores que el resto. No nos damos cuenta de que nosotros también somos "gente". Cuando alguien dice "Ethirium to the moon" pensamos que es un estafador o un gilipollas, pero si dicen lo mismo de Bitcoin... "¿qué sabrá él que no sepa yo?".\n\nNo paro de oir que Bitcoin es inevitable. Lo siento, pero NO lo es. ¿Crees que el email habría sido un sistema de intercambio de información durante más de 40 años si no se hubiese invertido en sistemas de control de spam hace 20? ¿Crees que cualquier cosa vale si se pagan las comisiones? Hace unos días alguien me dijo en un canal de Telegram que "Bitcoin será lo que la gente quiera que sea, y ya no es dinero, ahora es una base de datos descentralizada porque la gente así lo ha querido". Lo siento, pero coincido con "Unhosted Marcellus": necesitamos dinero digital descentralizado, no "lo que la gente quiera", porque la gente es gilipollas.\n\nÚltimamente estoy bastante de acuerdo con varias de las posiciones de @bitcoinerrorlog. Tenemos que dejar de recomendar a la gente que use aplicaciones que custodian nuestros bitcoins, porque ESO NO ES BITCOIN. Vamos a dejar de recomendar Wallet of Satoshi y otras wallets "custodial" como Alby. No importa que "funcionen mejor" para novatos. Para eso podríamos usar la app de transferencias de mi banco o PayPal, que funcionan bastante bien... ¿no? Ni eso, ni recomendar a un novato montar su nodo. Vamos a empezar a recomendar Phoenix, Blixt o Bitkit, o cualquier otra wallet de auto-custodia y que soporte realmente Bitcoin y Lightning.\n\n¿Qué decir de los 2 proyectos mayoritarios de remezclado de bitcoin, Wasabi y Samourai? El drama sigue en aumento e incluso hoy he leído a unos amenazando a otros, y a los otros revelando la identidad de uno de ellos. En fin, vaya espectáculo... Si quieres remezclar tus bitcoin y aún no sabes como usar Joinmarket/JAM, pregúntame y te ayudaré a empezar. Vamos a mandar a los amigos de Chainanalysis y a los de "necesitamos tener tu XPUB" al sitio de donde nunca debieron salir.\n\n"Bueno, pero al menos podemos confiar en las buenas decisiones de los desarrolladores de Core, que siguen haciendo que Bitcoin evolucione, ¿verdad?". ¿Tú les has leído últimamente? El peor podría ser el de "tenía la semilla de mis bitcoin en un servidor online, me han robado mis bitcoins", pero hay unos cuantos más por ahí diciendo salvajadas incoherentes. ¿Pero de donde sacan a esta gente? Pues esta gente es la que inventa cosas como Segwit y Taproot que no se pueden criticar porque "hacen que bitcoin avance". Ha avanzado tanto, que ahora podemos guardar fotos de monos y audios de pedos en la blockchain. ¡¡¡Bieeeeen!!!\n\nOtra cosa que escucho a menudo es que los estados no podrán atacar a Bitcoin, o que ya lo han hecho pero no han conseguido nada. Lo siento, pero NO es cierto que hayan hecho todo lo posible. En mi opinión solamente acaban de empezar, y por supuesto que lo peor está por llegar, incluyendo un 6102 de verdad. En Twitter todos somos muy guays y muy listos, y a todos nos gusta hacer shit-posting y reirnos del New York Times y de Cristine Lagarde o de Carstens, y mandar a todo el mundo a HFSP. Pero cuando el Estado de verdad llame a la puerta, no va a ser bonito. ¿Crees que una maquinaria capaz de mandar decenas de miles de millones de dolares en armas al otro lado del mundo, matar a millones de personas, herir y empobrecer a cientos de millones, y destruyendo países enteros, solamente va a hacer unas cuantas declaraciones en periódicos con lo contaminante que es Bitcoin? ¿Crees que cargarse FTX o Binance va a ser lo más que van a poder hacer? ¿Crees que cuando la cosa se ponga fea vas a poder comprar cheques del Carrefour en Bitrefill? ¿Crees que gente que cree que matar medio millón de niños iraquíes mereció la pena se va a entristecer porque tú les pongas un HFSP en Twitter? Puede que necesites que alguien te recomiende un par de libros de historia moderna... Necesitamos custodiar nuestros propios bitcoin y hacer que los pagos sean MUCHO MÁS privados de lo que son ahora, y lo necesitamos para ayer.\n\nEntiendo a la gente que quiera que el sistema actual caiga. Yo mismo me he manifestado en ese sentido en muchas ocasiones. Hay que acabar con esta estafa que algunos llaman "sistema democrático", y donde no hay ni una sola cosa que sea justa o funcione bien. Pero ojo con pensar "Ojalá se vaya todo a la mierda, yo estoy protegido, tengo bitcoin". Vale, tienes tus bitcoin, ¿pero para qué o donde los vas a usar? Cuando la cosa se ponga fea con las CBDC o entren en funcionamiento las distintas versions de los panópticos que nos tienen preparados, ¿donde vas a comprar la comida y donde conseguirás alojamiento?\n\nEstas últimas semanas he estado haciendo limpieza a la región de Madrid (unos 6 millones de habitantes) de BTCMap y literalmente el 100% de las empresas que he revisado ya no aceptan Bitcoin. Tenemos literalmente 4 restaurantes que aceptan bitcoin. Dos de ellos pertenecen al mismo dueño y promocionan también la Agenda 2030, y otro acepta bitcoin, pero solamente "cuando el jefe está por ahí, porque la wallet está en su teléfono". Permíteme que me muestre un poco escéptico cuando lea lo del "we're winning".\n\n![Meme de Morpheo/Neo (arreglao)](https://www.ktecho.com/wp-content/uploads/2023/04/neo_morpheo_spanish.jpg)\n\nMientras tanto, la gente importante del ecosistema Bitcoin va de conferencia en conferencia y de fiesta en fiesta... incluyendo conferencias con el nombre Bitcoin pero que promocionan toda clase de mierdo-monedas. Por cierto, ¿esta gente cuando trabaja?\n\nMe decían hace unos días que la caída del sistema actual y el triunfo de Bitcoin "no lo veremos nosotros, porque ocurrirá dentro de 50 o 70 años. Me recuerda a cuando iba a las reuniones del Partido Libertario y decían que su objetivo era "pasar de 6.000 a 10.000 votos en los próximos años", y cuando les preguntabas "¿y eso para que sirve?" decían que era una carrera de fondo... Así que bueno, "Bitcoin ya ha ganado", pero solamente "lo veremos dentro de 70 años". Ok, perfecto. ¿Y eso para qué sirve?\n\nSi queremos que Bitcoin sea una realidad dentro de 10, 20 o 40 años, tenemos que ser muchísimo más críticos en la actualidad. Críticos con los desarrolladores y las empresas que construyen productos. Críticos con los influencers que van de conferencia en conferencia sentándo cátedra. Y muchísimo más críticos y realistas con nosotros mismos.\n\nLa guerra no está ganada. \N 21547 \N 5558 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.0709366896936 0 \N \N f 0 \N 0 231776455 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 73937 2023-10-15 03:40:25.389 2025-03-29 22:39:46.783 Mutiny Wallet is Shutting Down \N https://blog.mutinywallet.com/mutiny-wallet-is-shutting-down/ 11714 \N 73937 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.6932377286133 0 \N \N f 0 \N 0 113525688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 223686 2024-08-30 13:01:37.28 2025-03-29 22:39:46.783 Fedimint and Cashu ecash are gift cards We are all trying to understand the risks and benefits of using something like Fedimint and Cashu as opposed to purely self-custodial bitcoin (or purely custodial bitcoin *a la* Wallet of Satoshi).\n\nSo here's a table comparing some relevant attributes of these things:\n\n| | Fedi | Cashu | Liquid | WoS |\n| --- | --- | --- | --- | --- |\n| Can you be rugged?[^18] | Yes | Yes | Yes | Yes |\n| Can you be frozen? | No | No | Maybe[^1] | Yes |\n| Permissionless exit? | No | No | No | No |\n| Can it be frac resrvd? | Yes | Yes | No | Yes |\n| Single point of failure? | No[^2] | Yes | No | Yes |\n| Bearer asset? | Yes | Yes | No | No |\n\nHere's the same table with some other assets:\n\n| | USDT | gBTC | wBTC | Walmart Gift Card |\n| --- | --- | --- | --- | --- |\n| Can you be rugged? | Yes | Yes | Yes | Yes |\n| Can you be frozen? | Yes | Yes | Yes | Maybe[^3] |\n| Permissionless exit? | No | No | No | No |\n| Can it be frac reservd? | Yes | Yes | Yes | Yes |\n| Single point of failure? | Yes | Yes | Yes | Yes |\n| Bearer asset? | No | No | No | Yes|\n\nIt seems to me that the most important thing that ecash has to offer is its ability to provide **permissionless use of the asset within its own ecosystem** (it gets this property chiefly from strong privacy guarantees). This is the one property they have that all the other protocols lack. \n\nOn every other count, things like Fedi and Cashu look a lot like Liquid, Wallet of Satoshi, or even a stablecoin like Tether. \n\n(I don't think they are like shitcoin tokens because shitcoins don't purport to be pegged to something like dollars or btc, they're speculative. Ecash isn't speculative. You do something like an atomic swap to get into the mint; it's either valued at par with the money you came from or it's worthless.)\n\nNow, here is my probably foolish take: I think ecash looks a lot like gift cards, too.\n\nI can hand you a gift card and you can be pretty sure I am not going to double spend you because it requires a pin which you can visually inspect to see if it has been exposed. Of course the company who issued the gift card can rug you or fractionally reserve the value or go bankrupt and disappear, but so can ecash mints.\n\nGift cards, like ecash, are designed to be bearer instruments, to be permissionlessly transferrable inside their own ecosystem, and sometimes they even get resold to third parties (at a discount, sure) even if the issuer says they can't.\n\nSo, what are we doing when we buy a gift card? Are we having Walmart custody our dollars? I've never heard it described that way. We are purchasing something. Or maybe we are storing value. Stored value is a term that gets brought up in one of the US laws that regulates this stuff, the [Consumer Protection Act, 15 U.S.C. §§ 1693-1693r](https://uscode.house.gov/view.xhtml?req=granuleid%3AUSC-prelim-title15-chapter41-subchapter6&edition=prelim)\n\nAmmending that act, [Public Law 111-24](https://www.govinfo.gov/content/pkg/PLAW-111publ24/html/PLAW-111publ24.htm) has a whole section (Sec. 401) on gift cards, with this particular definition:\n\n> (C) Store gift card.--The term `store gift card' means an electronic promise, plastic card, or other payment code or device that is--\n> (i) redeemable at a single merchant or an affiliated group of merchants that share the same name, mark, or logo;\n> (ii) issued in a specified amount, whether or not that amount may be increased in value or reloaded at the request of the holder;\n> (iii) purchased on a prepaid basis in exchange for payment; and\n> (iv) honored upon presentation by such single merchant or affiliated group of merchants for goods or services.\n \nIf you replace the word "merchant" with "fedimint" or "ecash mint," the definition more or less makes sense. As you have no doubt picked up by now, I'm not a lawyer and I'm not even that familiar with ecash stuff. (For instance, I should note that under *(D) Exclusions*, you find the exclusion of electronic promises, cards, or payment codes which are "(ii) reloadable and not marketed or labeled as a gift card or gift certificate." I'm sure regulators will laugh at my sophistry and send me off to some prison where I will be abused by Bullet-Tooth Tony. Maybe he will take my electronic promises in lieu of more immediate gratification...)\n\n\n\nFor now, I'm going to say that I am *purchasing* ecash tokens when I send my sats to a mint.\n\nOkay, that's it. I am prepared for my walk of shame if I have woefully misunderstood this situation. Heft your putrid vegetables and come at me.\n\n[^1]: Liquid uses a blockchain. Blocks are built and validated by functionaries. Presumably, they could collude to prevent your transactions from entering blocks.\n[^2]: I'm not sure about this, I'm saying there is no single point of failure because as far as I understand Fedimint, each guardian is keeping a copy of the database and so there is some redundancy against any *single* guardian failing accidentally or acting against you maliciously. \n[^3]: Walmart can void any gift card they like, but since identities are not tied to gift cards, they don't necessarily know who has which gift cards. So it would be difficult for them to choose to censor a particular person.\n[^18]: Here are longer versions of the questions I am asking:\n**Can you be rugged?** Can you end up losing all the money you came into the protocol with?\n**Can you be frozen?** Can you be prevented from moving your money around within the protocol?\n**Permissionless exit?** Is there a way to return to the form of money you originally had without needing the permission of the protocol operators?\n**Can it be frac reservd?** Can the protocol produce more tokens than are represented by the money they hold?\n**Single point of failure?** Is there any one person or business that prevent you from exiting the protocol?\n**Bearer asset?** Can you give the token directly to another person without permission from the protocol operator and in a way that you can no longer spend it either? \N 6260 \N 223686 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 22.6701216833383 0 \N \N f 0 \N 0 183941948 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 198816 2024-07-12 13:29:49.989 2025-03-29 22:39:46.784 Lightning Prediction Market MVP - delphi.market This is the announcement that I announced [here](https://stacker.news/items/336740):\n\n---\n\n## **I finally got the MVP done for a [prediction market on lightning](https://delphi.market/).**\n\n\n_If you don't know what a prediction market is, watch [this video](https://www.youtube.com/watch?v=xA27x7GRMZQ)._\n\n---\n\n## But first and foremost: **To prevent loss of funds, the market is running on [mutinynet](https://blog.mutinywallet.com/mutinynet/) and not mainnet until I have enough confidence in the code for mainnet. This means the sats have no value and you need to use the [mutiny faucet](https://faucet.mutinywallet.com/) to pay invoices and the [mutiny wallet (signet)](https://signet-app.mutinywallet.com/) to test withdrawals as mentioned in [/about](https://delphi.market/#/about).**\n\n**Thanks to @benthecarman @TonyGiorgio and Paul (I don't know his nym on here, lol) for mutinynet and the provided tools! Less stuff I had to worry about on my own.**\n\n---\n\n## **Features**\n\n1. **create your own binary markets**\n\nOn the main page, you can immediately see a button to create a new market. You'll need to login with lightning though. You can use any LNURL-auth capable wallet for that. LNURL-auth is independent from which network is used for transactions :)\n\nFor now, you can only create binary markets. This means that you can only bet on events which outcome is either `YES` or `NO`:\n\n_market creation form:_\n![delphi.market_(iPhone SE) (1).png](https://m.stacker.news/6616)\n\nBe aware that you can currently not change the description or delete the market after creation. In the future, I might allow edits for a few minutes after creation.\n\n2. **trading of YES and NO shares**\n\nBasically the heart of the market. As a market would be useless without trading, you can obviously create BUY and SELL orders for YES and NO shares. **Every order must be matched with an order of a different market participant.**\n\nFor example, if you want to buy 2 YES shares at a price of 70 sats per share or short: `BUY 2 YES @ 70 sats`, your order must match a `BUY 2 NO @ 30 sats` order.\n\n_buy order form:_\n![delphi.market_(iPhone SE) (3).png](https://m.stacker.news/6619)\n\nThe interface might still be overwhelming even though I iterated on it several times already.\n\nThe input labeled with `how much?` specifies how many sats you want to bet. With `how sure?` you specify the price per share since the share prices in a prediction market reflect what the market currently thinks how likely an outcome is (at least in theory).\n\n3. **interactive order book**\n\nTo match existing orders easily, you can simply click on `PENDING` and a context menu will show - assuming it's not your own order, else it will show a button to cancel your order:\n\n_matching existing orders using the interactive order book:_\n![delphi.market_(iPhone SE) (4).png](https://m.stacker.news/6620)\n\nOn click on `match`, you'll get redirected back to the order form but with prefilled values. If you submit this order, this will match the other order after payment. For example, if you click on `match` in the screenshot, you would get redirected to this order form with `BUY 2 YES @ 20 sats` prefilled:\n\n![delphi.market_(iPhone SE) (5).png](https://m.stacker.news/6621)\n\n4. **basic market stats**\n\nOn the `stats` page, you can see the total sats locked in the market (volume) and how many are on which side. `YES` 75% means that 75% of all sats were put into YES share which means that the market thinks that the chance that YES will win is 75%. However, tbh, I am not entirely sure if the chart works, lol\n\n_stats page:_\n![delphi.market_(iPhone SE) (6).png](https://m.stacker.news/6622)\n\n5. **withdrawal**\n\nYou can withdraw any sats you received via payout or canceling an order (you'll get a refund for any invoice you paid for the order) in your wallet:\n\n_wallet page:_\n![delphi.market_(iPhone SE) (8).png](https://m.stacker.news/6624)\n\n\n_withdrawal via bolt11 payment request:_\n![delphi.market_(iPhone SE) (9).png](https://m.stacker.news/6625)\n\n6. **list of all invoices**\n\nNot much to say here. Just a list of all your invoices with their status so you can pay them later or keep track of what you've done:\n\n![delphi.market_(iPhone SE) (10).png](https://m.stacker.news/6626)\n\n7. **list of all orders**\n\nSimilar to the invoice list. You can also cancel your orders from this list (and not only from within a market order book) by clicking on `PENDING` to show the context menu. \n\n![delphi.market_(iPhone SE) (11).png](https://m.stacker.news/6627)\n\n8. **market settlement**\n\nIf you created a market, you can decide the outcome of the market via a hidden `settings` page:\n\n![delphi.market_(iPhone SE) (12).png](https://m.stacker.news/6628)\n\nThis is obviously not ideal and unlike what I initially mentioned: that the market creator (or me, as the site operator) would only be used as a fallback if the trading parties don't find consensus on the outcome. However, this idea didn't make it into the MVP.\n\nIf anyone even remembers, I also mentioned that I would be using HODL invoices to wait with settling the invoices until a counter party was found. If no counter party was found, their sats would get returned for free - no network fees. That also didn't make it into the MVP and I am no longer sure that's even something users would want since it trades UX for a potentially insignificant risk of having to pay the lightning network again for a withdrawal if you found no counter party.\n\n---\n\n## **Planned**\n\n- actually show end date that was picked during market creation to user\n- PWA with push notifications\n- fix chart (?)\n- code cleanup / refactor (that's probably always a thing, lol)\n- tests, tests, tests\n- other stuff that I forgot now\n- ...\n- mainnet\n\n---\n\nThat's it for now. I want to go to sleep and writing all of this took some time that I was worried [about my account deletion deadline](https://stacker.news/items/336740), lol \n\nNow go, find all the bugs that I have hidden for you! Feel free to create new markets. I have created some orders for the existing markets so you can use them to immediately find some matches :)\n\nHopefully I'll wake up to some interesting prediction markets - or funny :)\n\n---\n\n_some somewhat random pings: @Natalia @grayruby @Undisciplined @nemo @siggy47 @orthwyrm @elvismercury @carlosfandango_ https://delphi.market/ 16229 \N 198816 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 23.9238758491792 0 \N \N f 0 \N 0 160759421 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51782 2023-08-18 16:45:47.781 2025-03-29 22:39:46.784 Troubleshooting the Gap Limit Problem 🛠️ I had quite a fun night last night because I needed to find out some mystery missing sats! Sericiouly, nothing motivates you to learn more when your precious sats went missing.\n\n______________\n\n\n### **The Background Story**\n\nI received a new payment in BTCpay yesterday - someone paid for my course, onchain and already has six confirmations, but it's not showing up in my external wallet ( I'm using Blue Wallet as watch-only ), which is so strange; I thought maybe something is wrong with my internet or VPN at first, but checked both are fine; Then I thought maybe some bug in BW because it's quite slow updating, so I created a watch-only wallet in Green wallet to have a check, still, no new tx, how is this possible? **And what happened to run my own bank if I can't even locate my own money.** 🤔\n\n![on-chain .png](https://m.stacker.news/14560)Then I started looking around in BTCpay, got the tx, and it says 6 confirmations, so someone did pay and I located the address that received the payment, and I also found a series of strange details as I kept digging. 🕵🏼\n\n- BTCpay confirmed the payment and showed the correct balance, yet no new tx in my watch-only wallet. [^1]\n\n[^1]: It turned out that is something called the gap limit problem. \n\n- The newly created addresses from BTCpay don't even match the addresses in my external wallet. [^2]\n\n[^2]: BTCPay Server uses a derivation scheme to represent the destination of the funds received by your invoices. The destination of those funds will be your wallet, located by the extended public key that you provide.\n\n- The master key in the BTCpay shows xpub, while my external wallet is showing zpub. [^3]\n\n[^3]: BTCPay Server supports yPub and zPub formats. Please note that these will be converted to xPub once the wallet setup is completed. This has no effect on how you receive or send funds.\n\n**Did my BTCpay get hacked, and someone changed the master key?** \n\nIf you want to exercise your troubleshooting skills, here is how I set up my BTCpay - I'm using Voltage to host it, with a master key from an external wallet to configure the onchain wallet, and the problem is someone paid over onchain and confirmed, the BTCpay dashboard also showing the correct balance, but no new tx in my external wallet, so need to find out the missing tx and the sats.\n\n*Curious to see what you would do if you were me. Feel free to pause here for a little creativity and Bitcoin knowledge exercise!* 👀 \n\n...\n\n____________________________________\n\n\n### **Here is What I did**\n\nI contacted @Darthcoin to see what he thinks, and he told me that it could be caused by the derivation paths, and he patiently explained to me that xpub, zpub, and ypub are the same, only the derivation path and address format are different - BIP32/44 use xpub, BIP49 use ypub, BIP84 use zpub.\n\nOh, so basically it can create many addresses under different derivation paths within the same seeds! It's so interesting, but at the same time, it gets quite complicated, as there are so many paths; He also shared this link for me to play around: https://iancoleman.io/bip39/ and told me to try importing that xpub/zpub under different derivations paths in Electrum or Sparrow. **So, the new direction to solve this problem is to locate the addresses under other derivations paths.** I then used the master key to import the watch only wallet to both Electrum and Sparrow.\n\n**Results:**\n\n- I couldn't see the path choice in Electum when importing the wallet using Xpub or Zpub.\n- I've managed to verify that both the Xpub showing in BTCpay and Zpub showing in my wallet are actually the same in Sparrow, and that's relieving! \n\n**And it makes sense why the balance in BTCpay is showing correctly, so no one hacked it, but the new tx went missing in my wallet!** One more detail to share, when choosing which script type to restore, you can simply check the address: if it starts with bc1p, then it is taproot; if it starts with bc1q, then it is native.\n\nI even tested with different derivation paths that I found and tried to locate the new tx, but all failed. Then I kept checking and reading because I knew that I wouldn't get a good sleep if I didn't solve this problem. It was about 9pm, so I decided to brew a pot of Turkish coffee to relax and rethink.\n\n\n*Nothing can't be solved with a good cup of tea or coffee In Turkey:)*\n\n____________________________________\n\n\n### **Calm Down and Rethink**\n\nAfter a cup of coffee, I could think with a much clearer mind and started searching if anyone had a similar issue, but I didn't find anything; then I went back to look at both docs from Voltage and BTCpay, and guess what I found!\n\n\n![The gap limit problem.png](https://m.stacker.news/14562)\n\nWow, I've never heard of this problem, but it sounds like it! I then also contacted BTCpay to see if there was any bug or update, and someone sent me the same link that I [found](https://docs.btcpayserver.org/FAQ/Wallet/#missing-payments-in-my-software-or-hardware-wallet), which gave me more confidence that this should be the solution for this tx missing problem.\n\n> It's not easy to solve the gap limit problem. You have two options:\n>\n> 1. Increase the gap limit in your existing (external) wallet\n>\n> 2. Use internal BTCPay Server wallet\n\n\nI would like to keep using my own external wallet, so onto the NEXT - increase the gap limit! and currently, you can do this only in two wallets: Electrum or Wasabi, and I chose Electrum.\n\n\n______\n\n\n### **🛠️ Process**\n\n**Step 1.**\n\n**The first thing I did was move the old sats into a new wallet**, because I needed to input the seed words online, and it's always good to minimize the risk in case I messed something up. Sent and done.\n\n**Step 2.**\n\nI then followed [here](https://docs.btcpayserver.org/ElectrumWallet/#configuring-the-gap-limit-in-electrum)\n\na. Enter the following commands in the Electrum console and press enter on your keyboard.\n\n```\nwallet.change_gap_limit(100)\n```\n\nb. Restart and check.\n\n```\nwallet.gap_limit\n```\n\n\\>>> 20\n\nc. Strange, so I tried again; *patience you MUST have!*\n\n```\nwallet.change_gap_limit(100)\n```\n\nd. Restart and check again.\n\n```\n wallet.gap_limit\n```\n\n\\>>> 100\n\n\n\nVola! and then the wallet magically showed the same balance in Electrum as in the BTCpay, it was showing the old balance before ( without the new tx ) , but now it's synced!\n\n**Step 3.**\n\nI sent all the sats to a new wallet because after inputting the seeds online, the old wallet had served its purpose.\n\n\n**Step 4.**\n\nI configured a new master key into BTCpay and wrote down this fun experience to share!\n\n_____\n\n\n### **⚡️ Takeaways**\n\n- **Addresses created within the same seeds are unlimited.**\n\nHonestly, I don't think people need to have many wallets. Keeping things simple and learning how to master them is the way - the fact that only 12 seed words can create unlimited addresses blows my mind!\n\n- **Freedom is indeed not free.**\n\nYou need to troubleshoot your own problems and have no one to call or cry on in the Bitcoinlandia! But it's really rewarding and satisfying, you just need to stay calm and enjoy the learning, and be patient.\n\n- **Problems can be good learning opportunities, embrace them!**\n\nGiven that we are still at the early stage of Bitcoin and the majority of people would rather buy ETFs than self-custody Bitcoin themselves, that gives real Bitcoiners many good advantages to test and learn more. \n\nSolving problems is like exercise - the more you solve or have been through, the stronger you are, and the more you learn:)\n \N 4487 \N 51782 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.38073606683781 0 \N \N f 0 \N 0 58764579 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 219772 2024-08-23 23:38:44.674 2025-03-29 22:39:46.784 "Guys, I think Satoshi left us" > 2011 Bitcointalk thread I was looking for something in bitcointalk archives and I came across this [2011 thread](https://bitcointalk.org/index.php?topic=2757.msg37428#msg37428) where people first start to wonder if Satoshi is gone. It's amazing to read how people were thinking about Satoshi's role at the time. Also, it contains the very first Satoshi impersonator.\n\n*Satoshi [posts for the last time](https://bitcointalk.org/index.php?action=profile;u=3) on bitcointalk on 13 December 2010.*\n\nOn 12 January, [kiba starts a thread](https://bitcointalk.org/index.php?topic=2757.msg37734#msg37734) with this:\n\n> Guys, I think Satoshi left us. Last active: December 13.\n\nThe first responses are mostly jokes ([He's Amish, no internet](https://bitcointalk.org/index.php?topic=2757.msg37432#msg37432), [planning world domination](https://bitcointalk.org/index.php?topic=2757.msg37433#msg37433), [works for the CIA](https://bitcointalk.org/index.php?topic=2757.msg37479#msg37479), [a p2p virtual entity](https://bitcointalk.org/index.php?topic=2757.msg37608#msg37608)) but then the next day [jgarzik posts](https://bitcointalk.org/index.php?topic=2757.msg37691#msg37691)\n\n> It has now been exactly one month since satoshi was "last active" on these forums.\n\nAnd [grondilu posts](https://bitcointalk.org/index.php?topic=2757.msg37773#msg37773)\n\n> He hasn't shown any life sign since december 15th. We have good reasons to worry.\n> Has anyone heard from him recently ?\n> PS. I also have to point out that his disappearance occured only a few days after the wikileaks article mentionning bitcoin ...\n\nBut most people seem to think it's nothing too different. [MoonShadow posts](https://bitcointalk.org/index.php?topic=2757.msg37785#msg37785):\n\n> Winter break, perhaps? Working on his thesis? Or simply watching from another identity? Or too busy coding to bother with the debate. Perhaps he just decided to sell some of his bitcoin now that each is worth so much more than when he started, and felt he deserved a holiday to someplace warm.\n> You people worry too much.\n\n[ShadowOfHarbinger posts](https://bitcointalk.org/index.php?topic=2757.msg37838#msg37838)\n\n> This is one of the stupidest thread of the century.\n\nIn true bitcoiner fashion, [bittersweet posts](https://bitcointalk.org/index.php?topic=2757.msg37791#msg37791)\n\n> Fortunately Bitcoin works just fine without Satoshi.\n\nAnd then in response to an argument about whether Satoshi [is male or female](](https://bitcointalk.org/index.php?topic=2757.msg37984#msg37984))\n\n> Yeah, I prefer to imagine Satoshi is a hot girl\n\nOn 14 January, [brocktice posts](https://bitcointalk.org/index.php?topic=2757.msg38048#msg38048)\n\n> And now Gavin has it in github anyway. Whoever Satoshi is, (s)he published the paper and the code, and we can take it from here without any further interaction.\n\n[mizerydearia posts](https://bitcointalk.org/index.php?topic=2757.msg38308#msg38308)\n\n> 2011.01.13 I got email from Satoshi about a tricky bug today. He's just busy.\n\nQuite a few people express relief, and the thread quickly descends into a ridiculous [discussion of anagrams for Satoshi Nakamoto](https://bitcointalk.org/index.php?topic=2757.msg38924#msg38924). There is one particularly good story by ShadowOfHarbinger explaining how [Satoshi is actually the Terminator](https://bitcointalk.org/index.php?topic=2757.msg55935#msg55935).\n\nBy 28 February, after Satoshi still hasn't returned to bitcointalk, [people start getting worried again](https://bitcointalk.org/index.php?topic=2757.msg56690#msg56690):\n\n> Maybe we should come to serious talking again.\n> I mean, has anyone seen any life sign of satoshi ?\n> Accidents happen all the time ...\n\nTo which ribuck responds with a [surprisingly prescient answer](https://bitcointalk.org/index.php?topic=2757.msg56708#msg56708):\n\n> It's fairly clear that Satoshi planned this absence.\n> Before he became inactive, he asked Gavin to take over the build process. He also removed the part of the code that allowed him to send a PGP-signed message that would put Bitcoin clients into safe mode.\n> So I don't think Satoshi's absence is due to having met with an accident.\n> It would be quite OK if Satoshi has chosen to melt away into the background, and if his identity is never discovered. The idea of an invention as great as Bitcoin having been unleashed by an anonymous benefactor is quite cool.\n> It will lead to some great speculation in the future though. Is Satoshi Hal Finney? Is Satoshi Peter Gutmann? Is Satoshi Bruce Schneier? Is Satoshi Gavin Andreessen?\n\nShadowOfHarbinger [responds](https://bitcointalk.org/index.php?topic=2757.msg56739#msg56739):\n\n> I mean what creator would resign completely from watching his creation grow ?\n> After some time passes, he surely will show up and start developing Bitcoin himself again under different credentials.\n> The point is, the guy just wants some privacy. And this is good, because that shows clearly that it's not the fame he is after, but ideals. IMHO we should respect that and leave his identity alone.\n\n\nWhich leads to more (mostly ridiculous) guesses about who Satoshi is: [Bill Gates?](https://bitcointalk.org/index.php?topic=2757.msg56801#msg56801), [Ben Bernake?](https://bitcointalk.org/index.php?topic=2757.msg56840#msg56840), [Julian Assange?](https://bitcointalk.org/index.php?topic=2757.msg60620#msg60620), [Neal Stephenson](https://bitcointalk.org/index.php?topic=2757.msg63749#msg63749).\n\nAnd we get the first Satoshi impersonator on 10 March. The impersonator quickly gives everyone instructions:\n\n> Why don't you guys believe I am Satoshi? I am here to give direction to the client and the bitcoin network. First, we must use 1024-bit encryption to secure the network from Russian hackers. Next, we must contact Barack Obama to replace the American dollar with Bitcoin. Finally, I want you to stand up right now and yell, "Bitcoin!!!" at the top of your lungs. This works best in a cubicle work environment.\n> Once we accomplish these little things I will give further direction. Satoshi out!\n> P.S. I am Japanese.\n\nI wonder if Craig Wright has a future in claiming to be this first impersonator of Satoshi (although, the impersonator clearly had a great sense of humor, so it may be equally difficult to prove...). Also, I wonder if [Frankie MacDonald](https://twitter.com/frankiemacd) was inspired by this post...\n\nThe thread mostly peters out after this, although the 2011 Tohoku tsunami that hits Japan generates [a few somewhat illogical concerns](https://bitcointalk.org/index.php?topic=2757.msg64952#msg64952) about Satoshi.\n\nWhat struck me most about this thread is the way that even in 2011, when I'm sure Bitcoin must have felt much more ephemeral, most bitcoiners were firm on the idea that it did not matter if Satoshi disappeared, and even that it was a good thing. \N 8004 \N 219772 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.7350773387321 0 \N \N f 0 \N 0 97449074 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404555 2025-02-16 00:52:11.97 2025-03-29 22:39:46.784 Introducing FiatLink: A Lightning ↔ Fiat Standard \N https://medium.com/breez-technology/introducing-fiatlink-a-lightning-fiat-standard-68ab380febb2 1124 \N 404555 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 21.5024905651162 0 \N \N f 0 \N 0 130038857 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424398 2025-03-04 04:01:48.997 2025-03-29 22:39:46.785 Coinjoin Workshop aka Emessbee 🐝: Unstoppable Coinjoins with No Coordinator \N https://github.com/supertestnet/coinjoin-workshop 19943 \N 424398 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.8415491113534 0 \N \N f 0 \N 0 218441143 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 120046 2024-01-28 22:41:20.404 2025-03-29 22:39:46.785 Reflections from the Nakamoto Simulator A few weeks ago, @elvismercury shared a Bitcoin valuation simulator. This [simulator](https://nakamotoportfolio.com/apps/shrodinger) uses what it calls a Schrodinger model, named after the famous physicist. I haven't done a particularly systematic exploration of the model, but I said I would write up some thoughts about it and I've fiddled around enough to do that.\n\n# The Model\nThis model describes how Bitcoin should be valued in the present for its future potential to serve as a store of value. The premise of the model is that Bitcoin has a probability of usurping from other assets their roles as stores of value. \n* For each asset, it's assumed that Bitcoin either absorbs it's role as a store of value completely or not at all, with a probability attached to those binary outcomes.\n* Each asset also has its own timeframe for Bitcoin usurping its role as a store of value.\n* There's a discount rate that allows calculating present discounted value, based on the estimated future value.\n* Each asset has a market cap and estimated monetary premium.\n\nI would prefer a model that used a continuous variable for the probability of capturing shares of each asset's monetary premium. However, that would require making a bunch of assumptions about the exact shape of the distribution. Still, I think you could roughly interpret the probability as the share of monetary premium you expect Bitcoin to absorb after a certain amount of time.\n\n# Estimated Valuations\nThe site has four preprogrammed scenarios: Bearish, Base, Bullish, Hyper. Those range in present discounted value from about $150k to $6,000k. That's a pretty wide spread, but even the "bearish" scenario suggests Bitcoin is still well under half of its proper valuation.\n\nThe simulator allows you to adjust all of the aforementioned parameters. According to @grayruby, you can get Bitcoin's present valuation as high as about $300 million, but that has more to do with just how unrealistic of parameters the simulator allows.\n\nFrom what I've seen time matters more than probability. Halving all of the probabilities of capturing the monetary premia has much less effect on the valuation than doubling the time to capture.\n\n# How to Proceed as though We're Right\nI would say approximately 1000x as much discussion has taken place about eventual valuation than time to adoption. In a way that makes perfect sense. We have much better tools for doing these back of the envelope future valuation calculations than we have for estimating when people will finally see the light. \n\nThe problem is that acting rationally in the present requires an estimate of present discounted value and that hinges more on when than how much. \n\nWhere we can resolve some uncertainty (at least if we have the courage of our convictions) is to say that Bitcoin will absorb every other asset's monetary premium. There are good theoretical reasons for thinking that in equilibrium there will be one money and it will act as the store of value for society (as well as unit of account and medium of exchange). So, if we believe Bitcoin is the best money, then we should conclude it will eventually eat every other assets monetary premium.\n\n# My Estimate\nIn the spirit of "stay humble" and "it's still early", I used the most bearish model, but increased all of the probabilities to 1. That's certain capture over the next 10 to 30 years, depending on the asset.\n\nThat yields a present discounted value of over $600k and that's just for the store of value function of Bitcoin. The estimated value for 30 years from now is over $14 million dollars. Incidentally, that's roughly the same as the estimates I've seen for Bitcoin's eventual medium of exchange value. \n\nSo, attaching no value to the unit of account function, if we're right about Bitcoin being the best money, then it's almost certainly worth well over $1 million right now. That just happens to be the same sat-cent parity many of us expressed feeling in my first big SN post: https://stacker.news/items/221151/r/Undisciplined.\n\nZap well! \N 5776 \N 120046 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.1714791815994 0 \N \N f 0 \N 0 206615145 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 214983 2024-08-14 21:37:45.402 2025-03-29 22:39:46.789 Does Compliance Kill Bitcoin? There's a growing minority of individuals who believe that compliance with pedophiles, thieves and war criminals is what is needed in order for Bitcoin to be successful. I guess it's important to define what success means for Bitcoin, and for you as an individual. While these individuals are a minority, they have a huge reach and do not get much push back or criticism. \n\nSuccess for me (Richard Greaser, world's second most important journalist) means living a life full of meaning and purpose as well as being my best self. That is why I smoke so many cigarettes in order to keep my brain working on the highest level. \n\nTo me, seeing Bitcoin as successful means disintermediating state control over money and actually having free markets. In order to be able to do this, it means routing around the state vs. merging Bitcoin industry with the state. \n\nNeither of these things are possible in my opinion by complying with the current order. Compliance to me seems more dangerous than non compliance and creative undermining of the current financial, government, and economic orders. If Bitcoin fails to issue in free markets, and even strengthens the current systems of power, I fear we will be in a worse off position, even if we get semi wealthy in the process. \n\nOur actions matter because they have compounding ripple effects. Compliance and even support of politicians impacts everyone around us negatively. Bitcoin is constantly getting attacked by the KYC industrial complex, and some Bitcoiners are supporting the attack. \n\nIf Bitcoin fails to defeat central banks and liberate individuals, we will be living in a future where smoking is continued to banned, your entire existence is to pay taxes to Epstein's buddies, die in pointless wars, and live without truth. \n\nWhether or not compliance kills Bitcoin is yet to be seen, but the harsh reality is that in the end, compliance will kill you. \N 20275 \N 214983 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.8273953702948 0 \N \N f 0 \N 0 144620230 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408230 2025-02-18 16:37:51.972 2025-03-29 22:39:46.784 How to MAKE your own Cold Wallet 🕶️ There are many posts discussing which Hardware Wallet to buy or why some Hardware Wallet companies don't accept Bitcoin, etc., **`but what if the whole point of Bitcoin is about self-responsibility, which includes making your own cold wallet?`** 🤔\n\nI'm not against anyone buying any HW if you really want to, as it's definitely better than storing it in exchanges or putting your hard-earned sats in any hot wallets. *But learning how to make my own cold wallet was one the most empowering moments in my Bitcoin journey*, and you can create it on the go instead of waiting for deliveries, which is much more efficient and private too!\n\n\n\n_____\n\n\n\n### **Why not Buy a Hardware Wallet and Done?**\n\nI purchased some hardware wallets before and really regretted them, now they are sleeping somewhere and as decoys... but if you really want to buy one, I recommend buying these hardware wallets when traveling. For example, I bought mine when I was in Europe, and not only did it deliver faster and with lower tax, all I did was use the Airbnb address and random name, done. Also, ideally, you shouldn't pay it with any fiat cards under your name; otherwise, it's all linked.\n\nBut the most turnoff part for me is you need to keep updating it, and the last thing I want is to pay attention to whatever this company is doing. Seriously, all I need is somewhere SAFE to keep my stash, so I found a better solution later: **a DIY cold wallet with Tails OS — the simple understanding of this setup is using an encrypted USB with a clean OS and a built-in Electrum Wallet, and you can create any cold wallet offline this way.** ( *sorry, this is the best I can explain, and I don't know too much about the deeper tech levels* )\n\n\n\n_____\n\n\n\n### **DIY Cold Wallet Benefits**\n\n***Private***: you avoid all the potential KYC or information leaked, as these hardware wallets are essentially honey pots.\n\n***Low key***: you can make your own cold wallet with USBs in different looks, while carrying hardware wallets is basically telling others: hey, I have Bitcoin, and here is where I store them.\n\n***Low cost***: why waste unnecessary money when you can stack more sats? And making your own with a USB is dirt cheap...\n\nAnd the good news is if I can do it, you can do it too! just need to be patient, read on to find out how.\n\n______\n\n\n\n### **How to Make a Cold Wallet?**\n\n**1. Use `cash` to buy a normal USB ( 8 GB minimum )**\n\nFun fact: you won't even have any receipt when paying in cash these days; also, choosing any USB between ***16 to 32 GB*** is good enough.\n\n\n\n**2. Install tailsOS into the USB stick.**\n\nIt might take some time to download, and simply follow all the detailed steps [here](https://tails.net/install/index.en.html). *( this tutorial is based on MacBook )* \n\n*a. Download TailsOS*\n\n![](https://m.stacker.news/34735)\n\n*b. Verify your download*\n\n![](https://m.stacker.news/34737)\n\n*c. Download [balenaEtcher](https://etcher.balena.io/)*\n\n*d. Flash TailsOS into your USB*\n\nOpen balenaEtcher — Flash from file ( choose TailsOS ) — Select target ( your USB and all the data on this USB stick will be lost ) — flash — wait a bit and done — restart the computer.\n\n![](https://m.stacker.news/34738)\n\nPretty easy, right? \n\nNow you have the USB ready, and we are moving on to creating a cold wallet offline! 🥁\n\n\n\n**3. Boot the USB.**\n\nPress and hold the `Option` when you turn on the computer, then choose the USB stick ( FEI boot ), and press `Enter`, then it will load the welcome screen, here is a good [video](https://tails.net/install/inc/videos/mac.mp4) showing the process when enter your TailsOS. *( First-time users can just click `start tails` to see how things are inside, play around and get familiar with the OS. )*\n\n\n\n*Extra note*\n\n/ It doesn't work with newer Mac computers with an Apple processor (M1 or M2), feel free to chip in solutions.\n\n\n\n**4. Create the persistent storage and set the password**\n\nIf you want to keep some important information inside the USB stick, you need to set the persistent volume so you can still access the data after each shutdown because everything you do in TailsOS will be wiped the second you close it *by default*.\n\n**After all these setups, save something into the persistent volume, reboot the USB again, and try to see how things are entering with the password and without it.** Fun fact: if you access the OS without the password, you'll enter a clean OS; *And the beauty of this is even if someone else picks up your USB, they can only enter into this clean OS, with NO access to any encrypted data!*\n\n*Sharing one more story*: I once lost my bag with a USB with a small stash of emergency funds. However, I was quite calm thinking about where I possibly left my bag in because a. I got backups, b. people could never have guessed there was Bitcoin in it, c. no one could access that USB but me, and that's the whole point. \n\n\n\n**5. Open the built-in Electrum.** \n\nHere it comes with the normal practice of creating a new wallet in Electrum: *do this when you are alone and in a calm mind; Cover ALL cameras and turn off the phones.*\n\n\n\n**a. Create a new wallet**\n\nName it to anything you like, and optionally set a password for this wallet file; then, you can simply use this password with the wallet file to open the wallet without inputting the seeds later.\n\n\n\n![](https://m.stacker.news/34747)\n\n![](https://m.stacker.news/34746)\n\nYou then would be shown different wallet options to choose from. For simplicity, I'm showing you how to make the standard one.\n\n![](https://m.stacker.news/34744)\n\n\n\n**b. Write down the seeds** \n\nCreate the seeds, and write them down somewhere *safe*.\n\n![](https://m.stacker.news/34743)\n\n![](https://m.stacker.news/34742)\n\nThen you would be asked to type and confirm the seeds.\n\n\n\n**Optional:** **you can also extend the seeds with custom words by clicking the `options`**; As for how to keep the seeds, one thing to note is that you always make copies, ideally 3, and in different places.\n\n\n\n*Simple solutions as reference*\n\n- Make it into half or three pieces, and put it in different places: it can be digital, meat place, or a mix of both.\n- Use your own memory, especially for your biggest stash.\n- Make a song or poet with the words.\n\nBe creative, but always keep it simple, and one of the good solutions is to make use of the built-in KeePassXC password manager: open it — create a new database — set file name — set password — save it in persistent storage ( important! otherwise, it would be GONE after the computer shuts down ), and mark down the `Master key`, `seeds`, and `a few addresses` for the later verifying.\n\n\n\n*- Master Key*: click Wallet Information, it's showing in the Master Public Key area.\n\n*- Seeds*: the 12 words that you just wrote down.\n\n*- Address*: click View and Show Address, mark down the first and the last few addresses.\n\n*Optionally, you can also mark down the derivation path and fingerprint.*\n\n\n\n**c. Set the password to encypt wallet file** \n\n![](https://m.stacker.news/34740)\n\n***Important*:** This password for the wallet file is useful only if you are storing the wallet file in Persistent Storage. Otherwise, the file would be gone the second you shut down the computer.\n\n\n\n**d. Restart the computer (stay offline) and verify.**\n\n**You should always `verify` the wallet before depositing any funds**: restart the computer and open both Electrum and KeePassXC password manager — create a wallet — name it — Standard wallet —I already have a seed — enter the seed — load the wallet address and compare these addresses with those that we previously marked down in KeePassXC — if it's the same, then congrats! you have learned how to make your cold wallet:) \n\nThis is the simplest setup, and you can definitely try with 2FA or multi-sign; Choose whatever works for you, but always KISS because oftentimes, you are your own enemy.\n\n___\n\n\n\n### **The Art of Using the Cold Wallet**\n\nFirstly, using cold wallets for **long term saving** or **create Lightning channels** only, it's *not meant for daily use*.\n\n### **How to deposit?**\n\nCreate a watch-only wallet, but you can't use this watch-only wallet to send any sats; the watch-only wallet choice can be a Blue wallet or Green wallet, or even Zeus *( Starting with v0.9.0 )*.\n\n\n\n***👀 Advancing step***\n\n*Ideally, plan your UTXO ( unspent transaction output ) well when depositing*; don't send a big chunk of sats or have too many small ones. For example, it could be 1M, 3M, or 10M for each deposit. Otherwise, it will cost too much fee or potentially bad for privacy when you are using them in the future. The solution could be to think and plan ahead how you will use these funds in the future. *yes, it's not easy to be your own banker, but that responsibility comes with freedom.*\n\n\n\n***Real-life samples on why UTXO planning is important***\n\nIn the fiat world, if you are buying something that costs $9, logically you use either $10 or two $5 for it instead of $100, right? In the Bitcoin world, if you are buying something costing 90k sats, then you can either use one 100k sat UTXO or combine two 50k sat UTXO, and you don't want to use a 1M sat UTXO for it because it will be too much "changes" = high fee.\n\nBut as the world gradually embraces Bitcoin and people start to see the magic of Lightning, we would use onchain for large amount of transactions only; And see the chart below to show you how the fee works under different sat/vB environments. *( ideally, the minimum of UTXO should be at least 1M sat )* \n\n![](https://m.stacker.news/34776)\n\n*( not sure where this chart was originally from, and thanks to whoever made this! )*\n\n\n\n#### ***How to create a watch-only Wallet?***\n\nGo to `wallet info` to get the `Master Public Key`, or use the QR code to scan it *( use the phone offline to scan, then later back to online would show the Watch-only Wallet )*.\n\n\n\n#### ***How to recover the fund and use it?***\n\nGenerally you can restore the funds in any Bitcoin wallets, but some could be quite tricky due to the derivation path, here is a [good source](https://walletsrecovery.org/) if you would like to learn more about it.\n\n**And to make things simple the easiest option to restore is using Electrum again**: create a wallet — name it — Standard wallet —I already have a seed — enter the seed one by one, done.\n\n\n\n![](https://m.stacker.news/34921)\n\n![](https://m.stacker.news/34919)\n\n\n\n***For nomads or travellers***\n\nIf you are traveling around like me, you might want to create a *small stash* for emergencies. In this case, using *Blue Wallet* to restore is pretty handy, you can easily restore it on your phone.\n\n*How:* \n\nOpen Blue wallet — click add wallet — choose Bitcoin — HD SegWit ( BIP 84 Bech32 Native ) — import wallet — enter the seeds and done.\n\n\n\nBut my favorite way to restore wallets is with *Sparrow Wallet*, it's a really powerful wallet. Not only do I get to choose which UTXO to spend, but controlling the fee better. Maybe I would write a more detailed article on how to restore each type of wallet with *Sparrow wallet*, as it solves many problems.\n\n\n\n_____\n\n\n\n### **Extra Reminders** \n\n\n\n\\- Always make **backups** of the seeds, at least 3, and in different ways.\n\n\\- Do more tests until you are comfortable with what you are doing. \n\nIt took me more than one month and many tests to know what I was doing, and I used small sats to do the tests, from start to finish — how to create — how to restore — how to spend, then think about each step and how can do better, and how to recover the fund when in an emergency.\n\n\\- As for **how to cross borders** in general\n\n`Ideally, you make it in a way that only you are able to decode your seeds`, even if it's in text, e.g., you can use 10 words to write a story and use your mind to remember the rest of two...or make it half in poet, another half in articles online, madness is plain sight is the way. \n\n**Freedom means self-responsibility and the fact that you can cross any border with 12 words in your mind and no one can take your money away is so empowering, and making your own cold wallet is definitely one of the highlights.** ✨ \N 20254 \N 408230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5251148186794 0 \N \N f 317290087 \N 3 144944740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 52153 2023-08-19 10:15:51.586 2025-03-29 22:39:46.784 Welcome To Wall Street ![Wall_Street_Sign.jpg](https://m.stacker.news/13985)\n\n### Pub Key\n\nThe first time I went to Pub Key in New York City I was a little surprised to see the place filled with what we used to describe as yuppies (young urban professionals) back in the 1980s. I found out that most of them worked for Galaxy Digital Holdings, whose offices are located right near the bar. I posted about my visit [here](https://stacker.news/items/219987). That night Pub Key was hosting a mining presentation that included Marty Bent. I remember being struck by how different the crowd was from what I had anticipated. My next visit to Pub Key, to hear Alex Gladstein, was much more aligned to what I was expecting. It was more my crowd.\n\nAs the months passed and the bitcoin ETF frenzy grew, I learned that Galaxy was partnering with Invesco to put out a spot bitcoin ETF, which now trades under the symbol BTCO. I didn’t pay a lot of attention to this, since I was and am very opposed to the whole idea of a spot bitcoin ETF. I’m not going to bore everyone with my opinions. They are not unique. I had my discussions and arguments with fellow bitcoiners. Talking about it was pointless anyway, since we couldn’t stop the approvals regardless. \n\nBefore I embraced bitcoin I invested in stocks. I was fascinated with the subject since high school. When I got my first job as a lawyer in the mid 1980s I would deposit part of each paycheck into my brokerage account. I read lots of books on the subject. I made and lost money along the way. I got destroyed in the 1987 stock market crash (Black Monday), and only dumb luck prevented me from taking a major loss when the dot com bubble burst. My wife and I needed the money for a down payment on our first house, so I sold my high flying internet stocks right before they crashed.\n\nAs time passed I got better at it. I grew more conservative and took less chances. Among the many admonitions I picked up was the old “buy the rumor, sell the news” saying. I am now a retired bitcoin hodler. We all just witnessed the classic frenzy leading up to the approval of a spot bitcoin ETF, and we watched the post approval dip. It was meaningless to me not because of any wisdom I had picked up buying and selling stocks, but because I just hodl and dollar cost average my bitcoin buys the same as I have been doing for years. The whole thing made me angry, though, because I see bitcoin as a revolutionary force to change the world, not as another thing that can be co-opted and financialized by the powerful wall street players, backed up by the government. I was also angry because I knew that last year’s price run had brought many people to bitcoin. Yeah, I know most of the interest was to get rich quick, cash out for fiat, and buy expensive shit. Still, there’s always a certain percentage of each bunch of NGU newbies who stick around, learn, and help make bitcoin the force for good it will be. That’s why I was angry. Maybe there will be fewer of them this time.\n\n### SBF Won’t Go Away\n\nGetting back to Galaxy, it turns out that they are not only issuing the new BTCO ETF with their partners at Invesco, but they are also the court appointed advisors on FTX’s assets during the bankruptcy proceedings. So, at the same time that Galaxy employees were talking up the ETFs on bitcoin podcasts, Galaxy was planning on liquidating FTX’s bitcoin at the best price they could get. They were also [shorting](https://www.zerohedge.com/markets/bitcoin-slide-driven-bankrupt-ftx-liquidating-shorting-billions) bitcoin as a hedge. For those who don’t know what that means, shorting means betting that the price goes down. Is this illegal? I’m not a securities lawyer. I’m sure Mike Novogratz knows what he’s doing and knows more about this stuff than me. When CNBC needs a talking head to talk about crypto, Mike is their go to guy. Might there be a conflict of interest here? That’s for the SEC and the courts to decide. \n\n\n### The Real Power\n\nWhen I was whining and arguing with my fellow plebs about the ETFs, I wasn’t thinking much about Galaxy, to be honest. My big concern was BlackRock and its well connected leader, Larry Fink. It is expected that when the dust settles, BlackRock’s ETF will own the most bitcoin of these funds. Some of the smaller players have already begun donating to bitcoin core developers through established channels. I don’t think BlackRock has yet, but it won’t be long before they will be spreading their wealth around. They can afford to make your typical core developer wealthy beyond their wildest dreams. Does this bother me? Yes. BlackRock will say all the right things at the beginning. They know how to wield influence. Larry Fink was in line to be Hillary Clinton’s treasury secretary. Do you think he’ll have any difficulty conning a few software developers? I know nodes decide whether or not to implement versions of code. I know BlackRock has no incentive to hurt bitcoin. It’s just that for BlackRock, the only thing that matters is the price. Will they allow censorship of transactions? Well, they are practically the investment arm of the U.S. government right now. What do you think? How many of us will stand up for the principles behind bitcoin if untold riches are dangled in front of us? Will our self custodied bitcoin become “bad” bitcoin, not as good as Larry’s good, government approved bitcoin?\n\n### A Ray Of Hope\n\nI know I sound pessimistic here. That’s because I am. There is one thing I hope for, which sounds crazy. I hope that bitcoin has one more four year cycle left. I’m hoping that a year after the halving, as all the hype has reached its peak, we get another heart stopping, gut wrenching fiat price crash that flows into a nice long bear market. That would scare the crap out of Wall Street, maybe forever. It would get rid of all the normie get rich quick players too. It might even bankrupt a few of these firms. Maybe they will leave us alone, and we can all get back to work. \N 19094 \N 52153 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.8185487511081 0 \N \N f 0 \N 0 204765790 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 429307 2025-03-08 05:38:17.676 2025-03-29 22:39:46.784 Fedimint is Self-Custodial For the past two months, I've started building Fedimint integrations into Mutiny Wallet, and it has been all that I've been thinking about. It's such a fascinating rabbit hole into philosophy, technical, and legal implications of this kind of tech. Some of my views might be obvious, but worth saying out loud. In other ways, it might be controversial or complicated to derive naturally. I plan to share these in a series of posts relating to specific topics around Fedimint.\n\nThis first article might not be the best "introduction to Fedimint" piece. There are several [resources available](https://fedimint.org/docs/intro) to learn more about it. For now, I'll leave it at a few introduction points. \n\n## Intro\n\nFedimint is best understood as a "Federated Custody" solution where a group of guardians "custody" Bitcoin on behalf of users in a multi-sig. That's a framing that many of us have understood. Still, as I dig into it more, I have an alternative view of its functionality, especially compared to other technologies.\n\n## What is NOT the problem\n\n**It's not that self-custody is hard.**\n\nI'll repeat that because it's an important distinction that leaves many people with, "Why would anyone want this or think it's a good thing to let others custody on my behalf?"\n\nFedimint, in my opinion, is not solving key custody for users who "don't know how" or think it's "too hard." Many other things exist to solve that problem. While there's a part of Fedimint that can solve that problem in unique ways, it's already a known problem with known solutions.\n\n## Existing Custody Solutions\nLet's examine existing custody solutions to determine how they align with Fedimint.\n\nWhen it comes to custody, it's a multi-sig like many other solutions that exist out there. There's [Unchained](https://unchained.com/), which allows the user to retain one (or more) of the keys, with Unchained holding one as a backup if you lose the other(s). A typical scenario is a 2 of 3 multi-sig solution that doesn't allow Unchained to spend the funds. If you lose **one** of the keys, then you can go through their verification process to recover your funds. This has sometimes been called collaborative custody since the user holds at least one of the keys.\n\nOther solutions, like Blocks's [Bitkey](https://bitkey.world/en-US) approach, have a similar setup but multiple backup schemes that could allow for a combination of social key recovery, hardware wallet usage, collaborative custody through CashApp, a phone-based key, etc. \n\nThere are also others like [Onramp](https://onrampbitcoin.com/), an Unchained fork, that features 3 keys that DO NOT belong to the user. They belong to 3 different financial institutions that can spend the funds on behalf of the user if a majority of them agree. Their intended use case is more for high net-worth individuals and corporations that need more internal controls and expertise without relying on a single key holder.\n\nThese are custody solutions. Some of them have existed for years. Consider a Fedimint federation to function much like Onramp. Specifically, the user does not have one of the keys to any Bitcoin. Instead, a group of other guardians that they trust hold the keys. However, Fedimint is more advanced and expandable in its role. It does far more than help users custody funds.\n\n## The problem I think it is solving\n\n**Fedimint is a scalable self-custodial off-chain programmability layer on top of Bitcoin.** It allows for use cases that are difficult, time-consuming, and unscalable for general users to do on-chain today.\n\n### Self-Custodial\n\nYou might think I had a typo calling Fedimint a self-custodial network. Let me explain. \n\nFedimint uses Ecash under the hood, which operates as a bearer instrument instead of a "balance" in a ledger. If you have Ecash within a system, you can freely spend it within that system, much like cash. If you lose or give away (e)cash, you lose the ability to spend it. You must have custody of it in some way. Therefore, each Fedimint federation is its own self-custodial network.\n\nA real-world example of this is looking at cash. If you have USD cash in your pocket, that is considered custody of the dollars. Still, it is not inherently interoperable with EUR cash in someone else's pocket. Each Fedimint federation operates in this way as well. Ecash from one federation is not inherently interoperable with the federation of another. To move between federations or between networks such as Bitcoin or Lightning, you must partake in an atomic swap. The transaction either is completed or is refunded. This can be done with the federation guardians (for on-chain Bitcoin) or through non-trusted entities that operate as liquidity swap providers (such as Lightning).\n\n### Federated\n\nSome of what I describe can be true for Ecash on both Cashu and Fedimint. However, I will be focusing specifically on Fedimint. The most crucial difference between Cashu and Fedimint is that each Cashu mint is currently entirely controlled by a single member. Meanwhile, each Fedimint mint can have many members (guardians) who do not have complete individual control. Fedimint can be arranged as a 3 of 4 multisig, 5 of 7, etc. The more guardians you have, the slower they achieve consensus. More research is being made into its practical limitations as you extend beyond 40. Eventually, it should be able to dynamically swap out guardians if most of them agree.\n\nThe fact that there is no unilateral control of funds by a single party makes the most significant difference regarding how it technically and legally operates. \n\nCustody is typically defined as a single party having clear control over the funds or establishing a contract or legal claim to the funds. If there are none of these things and there was ever a dispute of the funds, it may be considered unowned or abandoned property.\n\nI believe there is no guarantee or cryptographic claim of the Bitcoin sent to a federation in exchange for Ecash. Many people who worry about using Fedimint as a custody solution would agree with me. So, let's call it what it is, not a claim to the "underlying" Bitcoin. I believe it behaves more like Wrapped Bitcoin on other chains where it's a smart contract of federation members (such as the one Bitgo was a proponent of on Ethereum). \n\n### Pricing mechanism\n\nSo if an individual Fedimint federation is its own self-custodial network where users swap Bitcoin and Ecash to enter or leave that network, there's no longer a claim to the Bitcoin that a user-traded for Ecash. So then, what determines the price of Ecash? If it is its own currency on a decentralized network, it must have some price when it is traded.\n\nHow does anything determine the price? It's determined by the free market. Even if you do not take my position that Fedimint is a self-custodial decentralized network with its own digital currency, the way Ecash is/can be interchanged does imply that it has its own pricing mechanisms.\n\nThere are two main ways to get into and out of an Ecash federation. \n\n#### Direct Swaps\n\nAnyone with an invite code or QR code has the information needed to speak and interact with the Fedimint protocol. You can go directly to the guardians of a federation to atomically swap your Bitcoin on-chain for Ecash. You will receive the same quantity of Ecash as you had in Bitcoin. Each federation guardian has one of the keys needed to spend this Bitcoin later, according to the Fedimint consensus rules.\n\nLater, that user might return wanting to swap out to Bitcoin on-chain with the same amount of Ecash. The user and the federation guardians will then atomically swap the user's Ecash for on-chain Bitcoin, minus the mining fees needed to interact with on-chain Bitcoin. As the Bitcoin leaves the federation, the Ecash is burnt, keeping the supply of outstanding Ecash consistent with the Bitcoin inside the federation.\n\nThe consensus protocol that the Fedimint federation guardians abide by will only move the on-chain Bitcoin when an atomic swap occurs. As long as the majority of Fedimint federation guardians run this code and do not hard fork the protocol, then there's a reasonable assumption that you may later trade Ecash for Bitcoin directly from the mint at a near 1:1 rate (minus mining fees). \n\nOne distinction I will stress here is that it will rarely be precisely 1:1. There should NOT be an expectation that an Ecash will ever redeem the exact amount of Bitcoin because of the fees involved. You can never go directly to the source to get the same amount of Bitcoin as you entered. The same concept can be applied to other layers, such as Lightning. A sat on LN is valued differently than a sat on-chain. This is important to understand the actual cost of Bitcoin ownership, the cost to control and manage capital in a blockchain, and how market rates will be determined.\n\n#### Market Swaps\n\nIf we look at a real-world example, I can go to a shop to purchase some salmon toast if they are willing to take that specific note from that mint. However, you can't force this. It's up to the shop to be willing to accept a particular note from a particular mint through a particular network.\n\nIf a shop does not accept the notes in my pocket, I could use an in-store ATM exchange to swap my notes for ones from a different mint. If an ATM is unavailable, I ask a friend if they have any notes that the shop accepts and if they are willing to take my notes for a specific exchange rate. My friend is just a user of multiple mints. They value each one differently and will swap between them at a price they believe they can redeem them for later.\n\nAll of this applies to Ecash as well. Users can transfer Ecash notes directly to each other at a price they both agree upon. The transfer happens internally if both users have already joined the same mint. To interact with external networks, Gateways are needed. \n\nLightning is an example of an external network. Fedimint guardians don't run a Lightning node or hold HTLCs. Lightning Network swaps happen between other users of a mint, just like an ATM or friend might provide this service to you. Due to the off-chain smart contract functionality of Ecash, you can make the transfer of Ecash contingent upon completing a cryptographic task, such as swapping Ecash for a preimage to redeem a Lightning payment. This allows for any Lightning Node to be a user & note holder of any mint and provide swapping functionality on behalf of the other users of that mint. And due to this, they may charge whatever rate they wish, just like your friend or ATM might. However, unlike trusting an ATM, users do not need to trust any Lightning node gateway. Fedimint guardians enforce the smart contracts. The transfer of Ecash from the user to the Lightning node gateway will only be completed once the Lightning transfer is completed.\n## Determining price\n\n### Network costs\nSince Lightning uses the same unit of account as Bitcoin (and thus Ecash), the swaps are easy to reason about. However, operating a different network does have a cost. As such, the exchange rate between Ecash and Lightning will have a fee associated with it as well. This may include a base charge and fee based on a percentage of the total amount, which can be considered their exchange rate.\n\nSuppose the network does not use the same unit of account as Bitcoin. In that case, that's where holding two different currencies at the same time can introduce slippage. You could have a Monero gateway attached to a Bitcoin-denominated Ecash mint to provide swaps between XMR and BTC. However, if you hold too much XMR and it goes down in price relative to BTC, you're losing purchasing power. Therefore, if you prefer to have BTC, you must charge an exchange rate that you believe you can swap extra XMR for at a later price with BTC and charge a fee that you think you'll be paying to do those swaps in addition to a fee that you profit from for providing this service.\n\n### Risks\n\nEach holder of Ecash carries a risk that the majority of guardians in a particular Fedimint federation either ceases to function or has hard forked to break the consensus rules. At a certain point, all decentralized protocols face similar risks but have different consequences. Suppose a supermajority of Bitcoin users/miners have decided to hard fork or stop participating in Bitcoin. In that case, it faces systemic risk from the behavior of third parties that you individually have little control over. The price of Bitcoin is a function of trust and market demands in the system. You trust that you can spend and use Bitcoin at a later date, and a significant factor in that price is global belief in it as a system.\n\nEcash carries the same type of risk on a different scale, and the market rates can be considered a function of trust in a particular federation coupled with demand to be in that system. Why might there be demand? Gateways have services that they can provide the users of that system. These services can expand the programmability and interoperability between the federation and external networks, such as Lightning. There is demand for users to hold Ecash and use it for both on-chain Bitcoin and Lightning, which takes a lot of work to do seamlessly on Lightning today. Gateways receive fees for providing such services, so there might eventually be enough demand on a particular federation to profit off of such swaps, and they take a risk for it. Therefore, they can charge what they wish. It would be foolish to expect an exact 1:1 with no fee or exchange rate involved.\n\nTherefore, there's nothing that guarantees that users of a federation can participate in Lightning swaps. An individual Lightning node needs to provide this despite the risks. At the beginning of Fedimint's usage, these Gateways will likely be the federation members of their specific federation. The relationship between gateways and federations is a fascinating one that I'll dive into more in a later article.\n## Expirations\n\nThis could be extended to another article as well. I believe it's fascinating to think about how the protocol can conceptualize adding "expirations" onto each mint. It's an optional metadata field that you may apply to your Fedimint federation, and its implications are interesting. \n\nWe've seen far too many instances in the space of early Lightning custodians like BlueWallet and BottlePay eventually shut down their custodial services, and we're already seeing Cashu mints shut down on very short notice. There will always be users of these services who expect them to be around forever. It's also impossible to inform everyone that it is shutting down. These "forever liabilities" are a big problem, and they eventually cause significant headaches for all involved.\n\nExpirations reinforce the expectation that Ecash is not a guaranteed claim on the underlying Bitcoin. As soon as a user joins a federation, it can be communicated that their notes will expire at a specific date. We see this a lot in the gift card space. Some gift cards last 10 years, and I've seen others that last hundreds of years. Gift cards or reward points commonly get legal carve-outs for them. To me, there is no difference between reward points, gift cards, or Ecash inside a specific network.\n\nAnother good practice about expiration dates for mints is to allow federation members of the mint to get out in case they change their minds about being a participant. It's early days for Fedimint, and things can change; companies may die, environments can become hostile, etc.\n## Beyond a financial network\n\nIt's worth a callout, but there are also non-financial things that could benefit from a federated smart contract system. I won't dive into them in detail, but here are some ideas: \n\n- Social key recovery\n- Encrypted password management\n- Social communication\n- Discreet log contracts\n- Prediction Markets\n- Federated mining pools\n- Dynamic lightning node subnetworks\n- Decentralized exchange\n- Privacy tool (Ecash has privacy that's as good as cash, as it must be an effective bearer instrument)\n\n## Conclusion\n\nFedimint is not a Bitcoin custody solution but its own protocol and network that can provide financial and non-financial solutions for any user of any mint. A majority of federation guardians enforce the contracts in the protocol, but no single guardian can unilaterally make decisions. Users have fantastic privacy inside the system to transact without censorship concerns. Users must have custody of their Ecash and back them up to spend them later. It's a new type of distributed ledger network without a ledger at all.\n\nI welcome constructive comments and opinions around these ideas. If anyone has conflicting thoughts, you should be looking at this in comparison to other things that exist. Consider how it compares to Bitcoin's trust model or other currency networks. How does it compare to Wrapped Bitcoin on ETH, to ZK-Rollups, to state chains on secure enclaves that are technically considered non-custodial, to other cryptocurrencies without their scammy pricing mechanisms (at least as far as they are legally allowed to exist as self-custodial networks)? Some of it sounds cringe to compare it to, and I don't endorse any of them. But evaluate how they operate technically and legally if you'd like to challenge some of my thoughts around Fedimint being its own decentralized network with its own stable, but dynamic pricing structure.\n\n_Originally posted on my [blog](https://tonygiorgio.com/fedimint/)_ \N 4027 \N 429307 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 3.23734200159752 0 \N \N f 0 \N 0 222915746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138168 2024-03-07 05:02:35.727 2025-03-29 22:39:46.784 The Mysterious Life And Death Of Mircea Popescu ![popescu](https://aventurasnahistoria.uol.com.br/media/_versions/hard_news/mircea_popescu_widelg.jpg)\n\n\n### ***"Bitcoin is not here for you to opine about it. Bitcoin is here to profoundly and oft times painfully change your life. Whether you agree or not, whether you give permission or not, whether you think it 'acceptable' or 'called for' or whatever else. Nobody asked you."***\n\n### News Of A Drowning\n\nI once took a vacation with my family to Costa Rica’s pacific coast, not far from the place where Mircea Popescu reportedly died. It’s a beautiful part of the world, and it’s on my short list of places to relocate to if I get the motivation to leave the United States. I say it’s where he reportedly died, because there is little about Mircea Popescu that is certain. That’s the way he wanted it. Yes, I used the past tense, and I will keep doing so for the sake of consistency, but I’m not sure he’s dead.\n\nI must confess that when the news of the drowning began appearing in bitcoin publications in late June of 2021 I had never heard of him. He was apparently an OG bitcoiner, a major whale and a famous blogger. The headlines said that he may have died holding over one million bitcoin, making him the only “bitcoin millionaire” other than Satoshi Nakamoto. I read elsewhere that his stash was not nearly that large. It was all based on speculation. So far as I can tell, none of his wallets have ever been traced or identified. Everyone just took his word for it when he boasted of his enormous hoard. I discovered that he was controversial. He was considered a brilliant bitcoin philosopher and a savvy entrepreneur, while at the same time he was described as hateful, racist, misogynistic, and anti-semitic. I am a bit of a history junkie, so I wanted to learn more about him. \n\n### Trilema\n\nHe was a prolific writer, so the obvious place to start was to read his blog, called “Trilema.” Apparently in my part of the world that’s not so easy to do. The site was blocked by my internet service provider for unknown reasons. I had to turn on my VPN for access. [Trilema](http://trilema.com/) has posts from 2008 until June 23, 2021. I will link to relevant entries, but you might find it entertaining and educational to just start reading at random. Trilema can be addictive. He had a unique writing style. I found long discussions about bitcoin interspersed with graphic, sadomasochistic sexual content, often complete with photos, and sometimes racist or homophobic rants. I found the stuff about bitcoin to be the most interesting. Here’s an excerpt from a long post he made on December 5, 2012:\n\n> What bitcoin is really is, uh, the way you'd use it as a user is you have like a piece of software on your computer and it has your, your bitcoins on your computer, your wallet and nobody else is able to touch those bitcoins, nobody else is able to tell you how to use those bitcoins. Uh, you are in control of your entire financial infrastructure. You are essentially your own bank. And the most incredible thing is, is, for instance myself, I've written my own bitcoin client, uh, with my own bitcoins that I've got and I'm able to send bitcoins to someone else on the internet, and it goes over an entire infrastructure which I've created as myself as an individual on the internet. Because it is open source software, what that means is anybody can read how the code is written. And in the same way that someone can read French or Spanish or whatever language I can read source code because I'm a programmer so I can actually read what is written and I can see actually this is how it works.\n> So, uh, this is a piece of software that actually came out three years ago and started off as an experiment. And I might be here explaining it to you today and probably a large portion of you won't get it but that's fine because they laughed at Columbus, they laughed at Marconi and they laughed at, uh Gutenberg. So, and even they also laughed at Alexander Graham Bell, uh Western Union said that the telephone is nothing more than a mere toy and they refused to invest in it and something that is experience it-- an immense amount of explosive growth. Like I said, we're not a flashy start-up, we're just people and this is an example of a piece of technology which has really risen from a community of people around the world. You really like feel this-- they really like look at this and see something that this can bring to the whole world. You know uh, I can stand here and explain it's about digital money but it's really so much more than that. You know, if you read the original white paper, bitcoin is described as being a decentralized timestamping system for contracts, and what you can do with it is so much more than is currently possible, it's really unimaginable like some of the things that are possible. So, uh, I think bitcoin will always exist. Like, no matter what it will always exist because there will always be a class of transactions for which bitcoin is only possible.\n\nI kept reading. I started to translate some of his pre-2012 Trilema blog posts, which were written in Romanian. I wondered whether he was always as crude and (at least to me) intentionally shocking before he made his fortune with bitcoin. The answer is yes. I found a response to a post that he wrote in May of 2009, when he managed to include racism, misogyny, homophobia and necrophilia in one short passage. I’ll provide the [link](https://andruska-wordpress-com.translate.goog/2009/05/26/despre-necrofilie-cu-thomas-pogge/?_x_tr_sl=es&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapp#comment-2039), but you’ll have to run it through a translator.\n\n![avram](https://upload.wikimedia.org/wikipedia/commons/3/38/Statue_of_Avram_Iancu_and_Assumption_Cathedral%2C_Cluj-Napoka.jpg)\n***Avram Iancu Memorial and Assumption Cathedral***\n\n### Life In Romania\n\nNot much is known about Mircea Popescu before he started Trilema in 2009, but here’s what I found:\nHe was born in 1980. He was from Cluj-Napoca Romania, in the Transylvania province. It is the second largest city in Romania. \nAccording to a Romanian Linked In page he created, Popescu attended high school from 1994-1998 at Avram Iancu High School in in Cluj-Napoca, Romania, with a concentration in mathematics. \nHe attended Avram Iancu University in Cluj-Napoca, Romania from 1998-2002, with a concentration in Philosophy and Anthropology.\n\nFrom 2005 -2007 he worked at a company called Norsena, Inc. \n\nIn 2007 he incorporated a company called Polimedia in Romania. It was described as an enterprise resource planning firm. I read a bitcointalk forum post from 2012 that referred to Popescu in an unflattering light, and referred to Polimedia as a porn site:\n\n> It is my duty to post here. This exchange is run by a dubious Romanian character, who is a content stealer, spammer, wannabe porn website owner, called Mircea Popescu.\n\nHe then [listed](https://bitcointalk.org/index.php?topic=102333.0) the Polimedia web sites\n\nWithin this thread is the possibility that Mircea was posing as a woman to sell a nude photo for fifty dollars. I can’t prove whether this is true, but it does appear that someone from Polimedia was marketing these photos. \n\nI don’t know what the truth is. Some people on the forum defended Popescu. I used the Wayback Machine to find the site, but got nowhere.\nHe founded MPEx, a Romanian securities exchange, in 2012. It specialized in the listing of bitcoin related companies. Satoshi Dice was one of those companies. [Here](http://www.loper-os.org/?p=1108) is a review of the exchange from February of 2013. From what I can tell it was the founding of MPEx that raised Popescu’s profile in the bitcoin community. He had strong opinions about bitcoin and wasn’t shy about expressing them. \n\n### Bitcoin Influencer And Philosopher\n\n\nPopescu published a [post](http://trilema.com/2012/the-bitcoin-drama-timeline/) documenting all of the scams involving bitcoin in 2011 and 2012. There were many. He was developing a reputation for spotting and revealing scams. He later identified Ripple as a scam, and the now defunct [Bitcoin Savings and Trust](https://en.bitcoin.it/wiki/Bitcoin_Savings_&_Trust). \n\nProbably my favorite blog post involves his trolling of the SEC during the agency’s investigation of Satoshi Dice. The SEC wanted MPEx to provide information about the company and its CEO, Erik Voorhees. Popescu refused, and challenged the powerful agency head on. He memorialized the correspondence in this [post](http://trilema.com/2014/interacting-with-fiat-institutions-a-guide/).\n\n\nPopescu was a firm believer that bitcoin’s code should only be changed incrementally and in a conservative manner. As a result, he was scornful of core developers, calling them “The Power Rangers”, and saying their attempts to improve the code were “ego-driven. misguided, and generally infantile.” He was particularly critical of Gavin Andresen and the latter’s claim to a connection to Satoshi Nakamoto. During the “Blocksize Wars”, he was solidly in the small block camp. In 2016 he threatened to sell all of his bitcoin, thereby crashing the market, if the block size was increased. He also firmly opposed any hard [forks](http://trilema.com/2015/if-you-go-on-a-bitcoin-fork-irrespective-which-scammer-proposes-it-you-will-lose-your-bitcoins/), and stated that MPEx, his exchange, would never recognize a fork.\n\nPopescu was an early proponent of open source software. When OpenBSD, an operating system used by MPEx ran into financial [difficulties](https://www.wired.com/2014/01/openbsd/) , Popescu bailed them out. He said at the time that he liked its “clamped down, security minded approach”.\n\nHe is noted for declaring that a person could not be called a real bitcoin user unless he or she ran their own node and held a copy of the blockchain. \n\nHe also despised altcoins:\n\n> So for the benefit of all the derps derping about "cryptocurrencies" : there is no such thing. There's Bitcoin and that's it, because there can only be one. All the rest of the crap exists only inasmuch as a) it stays theoretical or b) it stays small enough nobody cares. Where a) and b) are only distinct in the derp point of view, otherwise they're the same thing. But good luck with all the community[-of-retards] driven, super-duper-innovative, ultra-mega-creative, asic-resistant, future-of-revolution-and-everything altcoins.\n\n\n\nThe blog is not all about bitcoin. It’s basically about whatever happened to be on his mind on any given day. He saw himself as a movie critic. He was always talking about the latest film he had seen. I learned, for instance, that he was not a big fan of Warren Beatty or Jennifer Tilly. In his mind he was as an expert in everything. His narcissism also led him to document just about every thought he ever had. Trilema is carefully annotated with footnotes, so you can discover links to posts and replies he wrote elsewhere on the web. It is a researcher’s treasure trove. He was intent on preserving the record. \n\n### Father Of Bitcoin Toxicity\n\nPopescu began to be referred to as the “Father Of Bitcoin Toxicity”, a name that was seemingly well earned:\n\nHe once placed a [bounty](http://trilema.com/2015/theres-a-one-bitcoin-reward-for-the-death-of-pieter-wuille-details-below/#selection-107.1-107.1) on the head of Pieter Wuille, a bitcoin developer, though the intent of the blog post was to prove a point about verifiability. . Wuille received this threat after suggesting an automatic 17% increase in bitcoin’s blocksize every four years during the blocksize wars.\n\nHe was banned from twitter for making a death threat against Andreas Antonopoulos. After Andreas said that bitcoin “is an expression of extreme privilege, but doesn’t have to stay that way”, Popescu responded “but if it doesn’t stay that way, I will find you and I will kill you with my bare hands, how about that.”\n\nPopescu led his own group of bitcoin followers, named La Serinissima after the Byzantine moniker for the City Of Venice. The name was chosen in support of the idea of the sovereignty of bitcoin. Jameson Lopp describes the group in his article [A History Of Bitcoin Maximalism](https://blog.lopp.net/history-of-bitcoin-maximalism/) :\n\n> The Mircea adherents, sometimes known as the #bitcoin-assets denizens (their hangout on IRC), formed a unique culture. In their eyes, if you didn’t have a GPG key on the WoT (Bitcoin-OTC web of trust) then you were an “unperson.” If you did jump through the hoops to join the WoT then you needed to engage in meaningful interactions and trades to get yourself recommended by other WoT users via positive reviews.\n> Popescu held court in this IRC room, and if you didn’t fit in with their culture, understand the lingo, and have a high tolerance for bigotry, misogyny, and racism then you wouldn’t have a very good time there. Mircea did not place much weight on the effectiveness of his communications; he’d post a rant in his bombastic hard-to-follow style and would not be particularly concerned with how it was interpreted. \n\n\n \n \n\n![Playa](https://upload.wikimedia.org/wikipedia/commons/f/ff/Surf_paradise_-_Flickr_-_Bernal_Saborio_G._%28berkuspic%29.jpg)\n\n***Playa Hermosa Garabito***\n\n\n### The Murky Details Of His Death\n\nMircea Popescu was a nomad, having lived in the United States, Mexico and Egypt after migrating from Romania. At the time of his reported death he was living in Costa Rica with three women in an apparent master/slave relationship. \n\nHannah Wiggins was one of those women. She kept a blog of her own. She posted a memorial entry on that blog shortly after the drowning. It was titled “[Goodnight, Sweet Master](http://thewhet.net/2021/06/goodnight-sweet-master/)”. Bitcoin journalist Pete Rizzo had attempted to interview Popescu shortly before the drowning , and he asked Hannah for an interview to learn more about him after she published her tribute. Her reply was not encouraging:\n> @Pete Rizzo And as I recall he wasn't interested(in talking to you). No storytelling can surpass the vast libraries he left behind, in his own hand. His is not a tale to be re-told; it's told already, in more detail and with greater skill than anyone else can hope to touch.\n> I know that won't keep people from trying. He knew it wouldn't, too --and he despised you all for it, which should come as no surprise. The time to walk with him in step --or at least, to try to heel behind-- came and went, for you, long ago.\n\nThis struck me as orchestrated, adding to my suspicions about the drowning. The tone sounds at least inspired by Popescu, if not written by him. I thought it strange that she didn’t want to talk about the man she loved after he had died tragically in the prime of life. It was an opportunity to burnish his legacy. Popescu had been quoted as saying that women were “suited to eulogize men.” Why didn’t Hannah step up to fulfill her role? What was the point of secrecy now? I became even more suspicious as I examined her blog more closely. The writing seemed reminiscent of Popescu’s. Her name, Hannah Wiggins, didn’t ring true either. There’s nothing shocking about a blogger using a pseudonym, so that wasn’t a big deal, but her “about” page contained no biographical detail at all. She would “rather have (her) posts create a biography for me than put one together deliberately.” That sounded suspiciously like Popescu.\n\nThen I found her blog post entry for November 16, 2021. She related the events of June 23:\n\n> Even the day, this summer past, when I woke him before dawn and was greeted with his warm embrace, when I drove him through the fields and valleys that he loved towards the ocean, when he told me "See you soon," and slipped into the sea, when he was caught by the current and I fought into it to grasp his hand: those seconds before his unconsciousness, in the utter chaos of doom, he looked at me with serious eyes, free of fear, and showed me how to die a hero's death. It was indeed the very heart of tragedy. But the flaw belongs to me, and to that ocean, and to the world.\n\nIt was the first account of the drowning that I had found in my research. It was the first time that I had heard that he was not alone while swimming that morning. There was no mention of an autopsy or police report. I had no idea whether Hannah Wiggins was even interviewed by the police. The newspaper articles I read said that his body was on the beach and that he had died of asphyxiation. Hannah said that he was dragged by the current but that she fought through it and grabbed his hand. He was still alive when she got to him. He was a strong swimmer. She was close enough to hold his hand and look into his eyes, yet she lived and he drowned? It didn’t make sense to me. \n\nOn November 27,2022, more than a year later, Hannah again described the events of that morning in a blog post titled “[Oratory Of A Mourning Slave](http://thewhet.net/2022/11/oratory-of-a-mourning-slave/)” . I don’t know what inspired this more detailed, credible version of Popescu’s death. Here is what she wrote:\n\n> Product of my own processes, I always felt a rush to get to the water, which meant changing, exchanging the heels for flip-flops, and moving the middling-elaborate baggage train from the car's trunk to the water's edge, some couple hundred meters away, in that spot just over the first sandy break where the high tide never surprise-hit to steal a towel and there was less foot traffic.\n> No foot traffic, really, as that was one of the prime attractors of this beach in the first place: at all hours but especially in the early morning, it was rare to come across anyone else. \nThis clears up an issue I was wondering about. Popescu and the women regularly swam at this beach and knew the area well.\n> That particular morning I ducked into the bathroom of the little hotel where we parked, not really wanting to dash madly into the ocean to pee, but at the same time feeling guilty for adding more time to my set-up. He was already swimming; my first moves were to get him from cufflinked suit and lace-up shoes to beach shorts and sandals, then spray him down in that hated but necessary aerosol-delivered sunscreen. The one that smells like cupcakes, we called it. "See you soon!" he said sweetly as he took off to enjoy what he enjoyed while I worked to catch up.\n> I put my hair up, I took my glasses off, but not before seeing where the master was, at his usual distance, further out than ever felt controllable --but I knew too that the firmly crossed line of comfort was part of the ocean's appeal, for him.\n> I walked into the waves intent on reaching him, but felt the usual dread as I got closer. A few times I'd sensed we were being carried out by the current, in the past. And once, we had very much found ourselves in a pull. But we always overcame it, even the time he'd gotten so thrashed and spun around he came out with blue lips and had to rest a half hour before moving again. I was confident that he could handle it, but less confident about myself, and so while we were almost always in the water together, we weren't quite together. I kept my short distance, a decision I fight to not hate myself over every day and imagine I always will, like a thousand other choices that morning that replay over and over in my head. I can't know if things would've turned out better if I'd acted differently. I try to stand on the logic, to listen to those who tell me that his death was not my fault, to follow the lines of reason, but they're often enough washed away and scrambled in the chaos of the water.\n> Floating on my back, I heard him yell something. "What?" I uselessly replied over the roar of the waves. "Master, I can't hear you!" How desperate I felt in the water, with my vision and my hearing both tamped down to nearly nothing. But the next thing he said, I heard, as I paddled closer --"Help."\n> I fought against suddenly angry waves to get closer to the hazy image of his head, the occasional flash of a hand. "Master come to me, come towards the sound of my voice! Here!" The water crashed with greater and greater fury, and I felt the clean, hard strength of the current's pull as I got closer. I saw his head go under again and again, and knew he was in actual trouble this time, unable to keep his head above the waves. I pushed myself to him as hard as I could and in what must have been less than half a minute, but what felt like an eternity, I found his hand and pulled. I pulled as hard as I could; I felt him grip my hand. We both went under and I felt myself shoot up again in a rage of determination, my hand iron-clad to his. "Help!" I screamed as loud as I could once I broke the surface.\n> Over and over again I screamed as I tried to move us back towards the shore. For a moment it'd seem we'd made progress; the next we were further out, and always new waves were crashing over us, inching us away from whatever direction I was trying to move in. I saw distant rectangles in the far distance that I knew must be people; I screamed and screamed, and eventually felt my foot hit the bottom. Still latched to his hand, I pulled as hard as I could against the current, still yelling frantically, trying to signal with my free arm, aware that his face had gone in the water, nothing in me but saltwater, panic, and the dead, no-thought, racing need to get us the fuck out of the ocean.\n> As I collapsed the third or forth time in what was now only waist-deep water, I saw a man running towards us. He tried to take my arm, and I barked at him to help me get the man out of the water. We pulled, each with one of his arms in tow, struggling awfully against that hungry riptide. At knee-height I fell again and couldn't rise, the acid in my legs too much now to move. The man dragged him over my useless body. I crawled to them; we started trying CPR. His eyes wouldn't open; his chest wouldn't rise. I slapped him, I talked to him, I screamed for more help.\n> And more help came; I can't say how many people rushed to us to try to offer their technique or animate him as if by sheer will. Maybe six? It felt like a crowd, and I wanted them off him, but I also wanted someone to know exactly what to do. It didn't occur to me that he might die. It just wasn't something on the list of possibilities, even if it was always possible. A few minutes passed (another eternity), and the sickening idea that he might actually suffer some sort of neurological damage here started to set in.\n> The ambulance was coming; they'd called it, any second now. They'd come with the Right Equipment, the Correct Methods, they were coming to make this shit stop so I could see his eyes open again and he'd say oh holy shit what a wave jump that was, maybe we should call it a day and go home? Just a tiny bit longer, I told him, they're coming, hang on. But foam was starting to come out of his mouth when our hands pressed against his heart.\n> The Red Cross guy ran over to us from somewhere up on the road, directed by an apparently gathering crowd I heard on the periphery. He kneeled in the sand and started to administer the Official CPR that my flooded head imagined would fix everything. He asked me how long he'd been in the water. "I don't know, twenty minutes," I answered, before realizing he meant how long had the man been drowning. "It was maybe two or three minutes, with the problem." I stumbled over my spanish, willing everything to just stop and make my Master breathe again.\n> He took a pulse. He shook his head. I heard the machine hooked up to master's chest beep, but only when the medic's hands pressed against him. After yet another eternity, he shook his head again and said, "it's difficult." And he stopped the CPR. "What?!" I didn't look at him as I bent back in to keep pressing against his chest, keep inflating his lungs with the the mask. "It's difficult," he said again, and in some twisted back and forth he managed to tell me that there was nothing for it. I kept pumping and felt the crowd around me getting closer, a hand here or there landing on my shoulders. The medic started to pack up his shit.\n\nI must admit it. Hannah Wiggins, or whatever her real name is, convinced me that it’s more likely than not that he is dead. I found big parts of her accounts convincing. I was intrigued by the image of his wake:\n\n> The body of the Master was laid out in full suit, of course; nothing new for that fine and handsome form. It was attended by two naked slaves in heels; perhaps the only time that particular parlor ever had or will have such a ceremony.\n\n\nI would like to contact the funeral director to verify this account.\n\nI still have some doubts and lingering questions, but her second, detailed version of the drowning is convincing. On the other hand, it could have been a well orchestrated drama, and Popescu would be up to the task. It is in the grand tradition of bitcoin to pull off this ultimate fraud to gain privacy and peace.\nMircea Popescu’s date of death is listed as June 23, 2021, the same date that John McAfee allegedly hung himself in a Spanish jail cell. I like to think of the two of them living an underground life on an exotic, sunny island, comparing notes on the local women. \n\n\nIn the end, it doesn’t matter if Popescu is alive or dead. His place in history is set. Despite his many flaws, his contributions to bitcoin are undeniable. \n\nAfter hearing of his death, Pete Rizzo said this: \n“Mircea Popescu was offensive, flawed and unapologetic. His death is the most significant in Bitcoin's history since the passing of Hal Finney.”\n\n\n\n\n\n \N 18017 \N 138168 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4481093350334 0 \N \N f 0 \N 0 9811853 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413011 2025-02-22 19:53:07.404 2025-03-29 22:39:46.788 Building Better Products - Less Is More ### **Building better products** 💭\nWe see a lot of proof-of-work around these woods. And for good reason when we're changing the world one commit at a time. With this post however I am keen to challenge the notion that we should jump straight into building and ship product updates all day long. And to chime-in with some feedback on what makes a successful product.\n\nIt's all very easy to pick and choose new features to add to an early product. To work on many cutting-edge side projects at once. It's fun too! You might listen to your customers and add more functionality. To grow the code-base, to grow the cost-base, with the aim to grow the customer-base too. What normally happens however, is we grow is the 'technical debt' and cater to edge cases. There is therefore one thing founders, particularly technical founders may sometimes need reminding of in software...\n\n> _More is not more. `More is less.` Less time to focus on the problem your customers want solving._\n\nI say this because new features when implemented are *always* hard to find. ~builders may not always know whether Feature Z will be popular or not, and they often don't want to disrupt the core experience when implementing it. Feature Z then gets stuck away in the _'safe zone'_ - behind a settings screen or multiple taps away, to prevent disrupting the core experience.\n\nThe intention of this post is not to sound too preachy, but I am sharing a different perspective to the never-ending pursuit of PRs & adding new features. We should think deeper before we jump into the build phase of any project or improvement. So that we can categorically say whether or not we solved the right problem in the first place.\n\n----\n\n### **Avoid trading punches with competitors** 🥊\nMany ~builders will also jump straight into the ring and decide to compete with existing established businesses, based on existing UX, pricing or quality. This is what we are all familiar with. As bitcoiners we may seek to replicate the fiat product on-top of bitcoin, or to cater to fiat infrastructure completely. Quite often what we are doing with this process however is limiting scope and solutions, and restricting our ability to imagine it being done better.\n\nAttempting to gain customers at expense of other competitors is somewhat of a zero-sum game. It may generate success for your company or startup, but the most impactful and interesting businesses of tomorrow will look beyond that strategy. The best businesses to work on are the ones thinking of a problem completely differently to any other market participants. Creating a completely new customer experience entirely, attracting customers from other industries too. Scroll further down for examples of that in recent history...\n\n----\n\n### **Less is more** 🔻\nAdding features, as mentioned, is easy. Fun but easy.\n\nRemoving features is hard. Users shout when you remove a feature they liked using previously. Especially when they have paid for it or invested time using it. It is therefore better to remove the feature _before_ it is implemented. Before it has any users. And that is done by testing, testing _before_ you ship.\n\n~builders may circumvent the lack of eyes in these parts of the product with condescending popups, instructions, emails and FAQs or with cluttered UI. If this happens with your product, it's because a shortcut was taken. Either through insufficient research & planning, fast iteration & experimentation OR too many fires & feature requests to put-out. \n\nI have been as guilty as anyone in prior software projects, favouring quantity over quantity. Even on this particular site, calling-for new functionality like new territory payment terms, editable posts or stacker auctions. Items that may not yet be central to the core vision/problem of the product.\n\nYou don't need to ship a feature to establish whether it is worth investing more time in it. To know whether people will use it. Low-fidelity design prototypes, "fake doors" and user testing are easy practices that achieve those very aims. They may sound very "fiat", but they are actually VERY rarely practiced by any company today. And yet they have incredible ROI. The lust for shipping quantity over quality is often too tempting. But Bitcoiners should be thinking about more efficient ways of experimentation. To make best use of their valuable resources & time. To test their creations earlier. Now that would be some proof-of-work.\n\n----\n\n### **'Two' Many Problems** 2️⃣\n\n1 customer problem to solve for founders is often enough to contend with. 2 may be maximum for any startup. More, and you may spread resources too thin. If as a founder you think you're solving more than 2 problems it's *far* more likely you're solving none whatsoever. \n\nIf it is not a core feature and if it is not something 60%+ of your target customers will use in the next 18 months, then it may not be worthy of your attention right now. Yet many friendly founders cave to the demands of their noisiest customers and neglect the non-vocal newbies that vote with their feet - i.e. by 'retreat'.\n\nIt takes relentless experimentation and evolution to eek out the gains from solving each consumer problem. To iterate and improve metrics, to retain your customers and corner the market whilst hungry competitors plot their revenge. If your roadmap consists of solving more than 2 top-level problems, it may be wise to invest some time researching which of those are of more importance to your target customers.\n\n----\n\n### **User testing** 💡\n\nThe tools mentioned, particularly usability testing require much less time over the course of a project and allow you to test and iterate on extremely quickly. If you have never come across the term _"usability testing"_ before here's a taster:\n\n| 3min intro of a testing script | 3mins on testing benefits |\n| ---- | ---- |\n| https://youtu.be/bcfqmx2hnUQ?feature=shared&t=49 | https://www.youtube.com/watch?v=v8JJrDvQDF4 |\n\n\nWhether teams decide to admit it or not - code costs money. Shipping and testing & fixing code costs yet more money. Developers & founders often don't value these initiatives upfront, because they justify the next idea as 'urgent'. Plus they like to build cool new things and show the world their proof of work. I do too!\n\n**Proof of work matters, but proof of meaningful work matters more.** It's imperative that engineering teams incorporate some research into an early part of development, if they wish to ship products that customers truly want. To really understand from the horse's mouth the problem what they are solving and what they are building solves that problem.\n\nI've run 70+ user testing sessions over my time in software. It's by no means enough. Not once has a developer I've been working with not been fascinated or captivated by the findings. And that is not because of my complex insights or clever mind-control techniques. It's because developers often think they know how power-users use their software products. They assume that every customer knows their product as much as they do. \n\nWhen you see with your own eyes a real user (power-user or not) navigating their way to the profile screen unable to tap the 'Follow' button, or unwilling to read the popup explainer you designed - it's an awakening unlike any other. An awakening to humble you that **literally NO ONE uses the product like you think they do**.\n\nIt's extremely irritating witnessing the struggle unfold in-front of your eyes. You wish to point the user in the right direction, to save them from themselves. But you must persist in silence. You must observe to see how other people are confronted with your product. Whilst they talk out-loud and share what they are seeing and what their thought process is. You will not even need to repeat this process more than 4 or 5 times to spot any recurring themes. And therefore it is an extremely valuable exercise to do.\n\nEven if testing on normie grandparents or reluctant 'rugrats', those developing products need to witness people using a prototype of what they are building. Testing before they write a single line of code. And it can *literally* be done on paper napkins. Even if it is not a real existing product, using Figma/Sketch/Adobe prototype designs can lead to some interesting findings. \n\nFounders may predict for instance that a drop-off will occur when a payment is sought or an email is required, in the onboarding flow that has been designed. Except the vast majority of users churn and drop-off because they DON'T YET KNOW the value of your product for themselves. It happens when the friction of taking a decision is too much, compared to this uncertainty over what your product offers. \n\n----\n\n### **People are fickle & impatient** 🤔\n\nMany of us Bitcoiners are more forgiving in this aspect because we want to see tomorrow's future today. Whilst we are risk-averse and critical of non open-source code, we are experimental and will give new exciting products a try. Options are more limited than the fiat world. It's therefore likely we will tolerate more friction than the masses would.\n\nMainstream users are more fickle however. And therefore there need to be means to overcome this conundrum. As an example, 3 of which are explored below with differing effort:\n1. `Low Effort` - Reduce the number of decisions required by the user. Allow people to test the product without an extensive sign-up flow, without providing personal details, without even free trials. The only barriers to them using your product are their own time & the perceived user-friendliness of your product.\n2. `Medium Effort` - Hook people in with an inflated expectation of your product and implement 10 sign-up screens that increasingly numb them to the process of decision-making. This is the 'fiat' mindset, that has led to the proliferation of free-trial subscriptions, expiring offers and "personalised" onboarding. Go this route and you'll feel the wrath of @Darthcoin.\n3. `High Effort` - Educate customers with text and engaging illustrations that actually get read by your most lazy users. This requires constant experimentation and refinement. Lengthy text, popups and collapsable UI are not going to cut it here. UI and text must be concise, alluring and incredibly engaging. Here you are almost building a mini product. And doing so with passwordless authentication and public/private key cryptography is really hard. However in the context of onboarding, this could include bite-sized testimonials, 1 or 2 statistics of your top 100 users and no more than one main CTA on each individual page. It could also mean postponing certain setup actions until after account creation for instance, a tricky thing to balance & coordinate.\n\n----\n\n### **Iterate to innovate** ♻️\nOften a problem is defined but the initial solution is believed to be final. Once shipped, teams move onto the next shiny solution to ship. If the product doesn't achieve your desired metrics after launch of the product, you can try a radically different implementation of the same solution. If you have hard data confirming that it is indeed the most important problem for your customers, refining what you have built should help you reach your objective. But that objective needs to be defined upfront.\n\nIf you're sceptical when reading this, don't just take my word for it. Read from Will Cole @willcole, an experienced product leader, who had a similar article of his [shared on SN titled](https://stacker.news/items/400880/r/davidw) - ***Think, Then Do***. Discussing the need for **definition and measurements for success** *before* you start any development.\n\n\n----\n\n### **Create. Don't Compete** 🎯\n\nA great read also for building better products is [this book](https://www.amazon.com/gp/product/1625274491/) titled `Blue Ocean Strategy`. \n\n| _In blue oceans, competition is irrelevant because the rules of the game are waiting to be set._ |\n| ---- | \n\n\n| 🔴 `Red Ocean` | 🔵 `Blue Ocean` |\n| ---- | ---- |\n| **Compete** in existing market space | **Create** uncontested market |\n| **Beat** the competition | Make the competition **irrelevant** |\n| **Exploit** existing demand | **Create** & capture new demand |\n| Make the value-cost **trade-offs** | Make value-cost **irrelevant** |\n| Differentiation **OR** low-cost | Differentiation **AND** low-cost |\n\n\n[Blue Ocean strategies](https://www.blueoceanstrategy.com/what-is-blue-ocean-strategy/) are successful when they have 1) Focus, 2) Divergence, 3) Simple Tagline. In order to understand a bit better, here's a few familiar examples below...\n\n-----\n\n### **Blue Ocean Strategy Examples** ⚡\n\n![blue-ocean-stacker-media.png](https://m.stacker.news/18870)\n\n\n_Blue Ocean Strategy_ is arguably what is great about Stacker News today. It is setting the new rules of the game - it is not competing with the likes of Reddit and Twitter. It may have started out as a Hacker News clone - but it is no longer competing with any other legacy social media site.\n\nIt is rewarding users for their time, creating a viral network effect of attention and participation. It is opening-up a new market - new potential users. Training poor `pavlov-plebs` like me to write more articles like these. Content is available to every user from second 1. No barriers, no distractions and no imagery whatsoever. The content is central to the experience. There is no landing page. There is no marketing spiel (for now).\n\nFreedom tech aside, it is very much up to the user to determine the value of Stacker News. And that is incredibly refreshing in 2024. Something to lean into for the future, not to deviate away from. All that is needed is a catchy new tagline... but I'm sure @kr & @k00b are working on it.\n\n----\n\n\n| `More Examples...` |\n| ---- | \n| ![iPhone](https://m.stacker.news/18869) | \n| ![Cirque](https://m.stacker.news/18863) | \n| ![Airbnb](https://m.stacker.news/18859) | \n| ![Tesla](https://m.stacker.news/18860) | \n\n\n\nMore detail on those 'Blue Ocean' examples:\n- **Apple iPhone** - During the smartphone era, many manufacturers were creating phones with desktop functionality, merging MP3 players, game consoles, cameras, email, calendar & internet browsing - in a form factor with clunky buttons and small screens. Apple instead invested in developing a more reliable speedy operating system above all else, with a unique user interface. What set it apart from the competition was its simplicity in form, with only 4 buttons and a touchscreen instead of a physical keyboard. Additionally, Apple succeeded for so long thanks to a marketplace of mobile apps made by Apple and third-party programmers, allowing users to customise their phones to reflect their specific wide-ranging interests. And increasing the potential revenue per user drastically. Note: this [Wired Article](https://www.wired.com/2008/01/ff-iphone/?currentPage=1) is a good read into the origins of the iPhone.\n- **Cirque Du Soleil** - the circus had previously been a cheap attraction, aimed at children and family. It was also an expensive outfit, travelling around the country with very specialist staff. This company turned that on its head, creating an exclusive show for adults, without the necessity for staff to travel around the country or for animals to appear in shows. Instead they were able to use exclusive venues charging premium 'broadway' prices and creating an entirely new category of show for themselves.\n- **Airbnb** - Offered the convenience of the hotel and the comforts of being at home, with guests getting their very own local guide as 'host'. It is now pretty difficult to imagine a world without it. Hotels were not serving the needs of younger millennials by connecting you when visiting new places. Not only would guests benefit but hosts could too - from the additional income stream for their rented/owned accommodation. There was no true competition for the company, given they had created an entirely new market for themselves and were doubling in size each and every year. In spite of fierce reactions from traditional hotel chains.\n- **Tesla** - This one is still playing-out before our eyes. Tesla knew they couldn't compete on build quality vs German/Japanese manufacturers but aimed to do away with traditional marketing & dealerships, seeing them as insignificant costs & sunk costs somewhat. Instead, they focused on automating the manufacturing and driving experience. Bringing software updates to its fleet that get better for everyone with every mile that each user drives. Adopting battery tech that improves each and every year. Tesla is to become as much a battery and transportation company than it is a simple car manufacturer, regardless of what happens from here on out.\n- **Netflix** - those of us ageing likely remember with nostalgia from the fate of Blockbuster video. That awkward experience of renting movies & having to return them on Monday without fines / late fees. Netflix pitched their idea but were rejected by Blockbuster early on, because sending DVD's in the mail and removing penalty fees sounded ridiculous. Netflix soon outgrew and obsoleted the blockbuster business in just a few short years after. Then most television shows too.\n\nSimilar examples are discussed in the [Harvard Business Review](https://hbr.org/2004/10/blue-ocean-strategy). Yet none of these case studies could have happened without these firms understanding the customer problem deeply and without doing design thinking and validation of prototypes _before_ they had truly begun building. Hopefully this resonates with you ~builders.\n\n----\n\n\n### **Removing features** 🚫\n\nRemoving features is much like taking candy from a baby. It is easy but not enjoyable. It will become noisy very quickly, which is why it is almost never done in today's world. I have only really witnessed it done by Google and they are pretty terrible at it. Building solutions to problems that don't really exist but then killing the solutions to real problems without iteration. Removing features & products regularly.\n\nIt is painful to founders, and painful to customers alike. But quite often removing features is the very medicine needed to cure the illness of a broken product. If you don't trim your 'bush' so to speak, it will become overgrown and overwhelm the new and high-potential shoots and shrubs that surround it. New initiatives and experiments could catapult products to new viral levels of adoption. My advice would be to remove features however before you ship them.\n\n----\n\n### **Landing Smear** 🌐\n\nLanding pages today are often inserted to patch the symptoms of a sick product instead. Interrupting the user from getting to the very content that they deserve to see. With the aims of "deceiving" them into sharing something valuable (personal details / currency) before they get to try the product for the first time. This _default_ experience we accept as standard IMHO will likely not survive in the coming years. Not on a more open web. Not when the friction to move your data or money elsewhere is negligible.\n\nWebsites in 2024 do look great. Much better than they did back in the 2000s. Stripe's landing page for instance was copied by tens of thousands of sites across the world when it launched. It led to entirely new design trends on [Dribbble](https://dribbble.com), a site popular for professional hipsters. On the contrary, simplicity and focus in products has taken a beating in the last 20 years. \n\nUsers likely don't care for the wonderfully calming gradient transitions of your site, they have short attention spans and want to clearly see and obtain the value of any product offering. That is what they are landing on your page for. That is why they use the code you built. As ~builders we should speed that process along for them.\n\n\n----\n\n### **Focus on the prize** 🏆\n\nThe main reason for writing this post was to share that building products demands **focus**. Focus on real customer problems. Focus on iteration. Focus on UX and simple messaging. Focus too on what _NOT_ to build. NOT just *what* to build. Once that is squared away, you're off to the races to focus on execution. Unless it's someone else's or your own hobby project, you might wish to start by coding less initially, not more.\n\n\n-----\n\n![](https://imgprxy.stacker.news/m36efpFetvKso3Yq_b6TOHmvxHwnz5k33hr5CvgcMZs/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8xODQyNQ)\n\n### **Agree with _'less is more'_?**\n\nIf you liked this post let's hear it in the comments. If you're sceptical, give it a try by putting your pet project in the hands of a family member and observe them. Perhaps we'll do a follow-up post on some potential innovative implementations using Bitcoin, or apply more thinking to Stacker News or other Bitcoin companies. What else you think makes a good product? And do you believe testing & research before building is worthwhile work?\n \N 9438 \N 413011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8572597874643 0 \N \N f 124513898 \N 1 31824445 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456548 2025-03-27 16:57:12.862 2025-03-29 22:39:46.788 Maybe All you Need is to Ask - Do you Accept Bitcoin? ⚡️ ( Part III ) Recently, I managed to pill one of the Airbnb hosts—it wasn't easy, but it was so worth it because I could come back anytime and pay in sats now.\n\n### **The Art of Using Airbnb**\n\nAs many of you might already know, I'm a nomad, and I usually book accommodations on Airbnb when I'm out exploring. **And here is one of my hacks: I only book the first 1-2 days of the trip**. If I like the place, I extend; if I don't like it, I find a new place. I like being flexible and definitely don't want to be stuck at somewhere I don't enjoy. \n\n**Another hack is I always ask for ways to contact the hosts outside of Airbnb after I pay for the initial days and keep the good hosts' contacts.** If I happen to go back to that place, then I just text them and say I would like to come back and stay again, and then we discuss how the payment works *between us*; Airbnb already served its purpose of connecting, but after we are connected, it has done its job and got paid for that—everything that happens next is private, and nobody needs to know anything, but many people don't understand the meaning of public and private...\n\n### **My Pilling Experience** \n\nI returned to somewhere I had stayed before lately, and all I did was message the host, reserve the time and agree on the price. Then, as I mentioned [here](https://stacker.news/items/287984), I don't have much fiat with me, so I used the same strategy again—I [asked](https://stacker.news/items/293271) the host if I could pay in Bitcoin.\n\n At first, he said no because the house is his parents and they are old and don't quite understand Bitcoin, blah blah, and would prefer cash. *( The first ask failed. )* But after a week, I decided to extend the stay, and I just asked again and said I don't have enough Lira with me, how about I pay you in Bitcoin? He still said no and didn't mind waiting for me to exchange. ( *The second ask failed.* )\n\nAfter that week, I decided to extend for two more days due to weather reasons, so I asked again, do you want to *try* accepting Bitcoin? All it takes is two minutes, and so much easier! Actually, during that entire week, I learned something interesting, and I saw my opportunity — there is a new Airbnb policy in Turkey. Basically, anyone who wants to continue doing Airbnb needs to apply for a license and pay extra tax, and dat is my chance! I guess he probably doesn't want to bother with that, so I just said Bitcoin easily solved this problem, and you can even accept it with other old guests, and not to mention the [inflation](https://stacker.news/items/376570)! He was intrigued, so I guided him to download [Blink](https://stacker.news/items/341247) and showed him how to send and receive, and voila! Now, I can pay in sats whenever I come back. 👀\n\nBut something interesting I've noticed is whenever I pill someone new, *they always ask how they can sell it back to fiat*, and then I would just say why would you even want to sell the best money?! The goal is to use them directly like what I'm doing now. *But okay, I'm fine showing them how to exchange with fiat too, they are free to do whatever they want with their money after all...*\n\n### **Easy Pilling Strategy**\n\n- Try with a simple **ASK**.\n\n- Keep trying and be patient, but only for the ones who are worth it, especially those you need to contact from time to time.\n\n- **Spot the pain points of others and show how Bitcoin can help with that!**\n\n \n\nDid you learn any new hacks on pilling others? 🤓 \N 7558 \N 456548 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 6.98504390474859 0 \N \N f 0 \N 0 118852374 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444458 2025-03-19 22:32:29.005 2025-03-29 22:39:46.788 Now I Get It I have always heard from old school bitcoiners that they like bear markets more than bull markets. I never understood why. Now I do. Things are getting crazy. New accounts on SN, for instance. Many good, but plenty of spammy bots and NGU newbies too. That's okay. I'll adjust.\n\nWhat is really driving me nuts, though, are family and friends suddenly showing interest in bitcoin. These same people were laughing at me during the recent bear market. I'll go through the motions of orange pilling them, but I know they're only in it for fiat profits. I'd almost rather start fresh with a stranger than try to convince people again who wouldn't listen a year or two ago. \nSorry. Just a little complaining on a cold morning. \N 11648 \N 444458 \N \N \N \N \N \N \N \N security \N ACTIVE \N 14.6619836536131 0 \N \N f 0 \N 0 237327155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444469 2025-03-19 22:50:16.441 2025-03-29 22:39:46.784 Why happen force closures on LN channels? I got a very interesting question from @Bitcoiner1 here https://stacker.news/items/658729 that for years, I myself I tried to answer it. But is quite hard to have a clear, straight unique answer. I couldn't find myself a general cause and specific tasks to avoid 100% these force closed channels.\n\nBut I will try to enumerate here in this post, some of my findings and give some advice, based on my long experience with running various nodes, public and private ones. I will not enter into super technical details, code, protocol procedures etc because I have limited skills into this part and I do not like to talk about something I really do not have knowledge.\n\nI also invite all other LN devs, gurus, to come here and give more technical explanations for this issue and explain to all noobs what should do to avoid these force closures.\n@kevin_lightning please can you give more explanations?\n\nFirst of all, for all noobs, I will try to recap a bit, how a LN channel is created and maintained so you could have a better understanding about what we are talking about.\n1. a LN channel is a multisig tx between 2 peers (nodes), from which they both start spending sats, little by little, back and forth, moving the balance of the channel on one side or another. These little spendings are so called [HTLC](https://docs.lightning.engineering/the-lightning-network/multihop-payments/hash-time-lock-contract-htlc) that practically are bitcoin txs, but not broadcasted yet.\n2. a LN channel have some particularities in regards of reserves (I never understand why do we have so many reserves but we still have force closures):\n- [channel reserve](https://bitcoin.design/guide/how-it-works/liquidity/#what-is-a-channel-reserve) to avoid cheating, that is around 1% but can vary.\n- [anchor output reserve](https://bitcoinops.org/en/topics/anchor-outputs/), that is 330 sats per channel and with a maximum of 100k sats per UTXO, used to bump the fee for a stuck channel closing.\n- commitment fees: he balance fluctuates because commit fees for channels get renegotiated as the cost to publish to the bitcoin blockchain changes. When the commit fees rise (btc fees become more expensive) some of your local balance is reserved to meet those fees, resulting in your local balance dropping. When fees drop the reverse happens. To avoid this issue what you want to do is sum all your channel local balances with the commit fees for only the channels you have opened. There is currently no easy way to tell if you opened a channel or not but there was just a PR in lnd for example to make this easier on developers. Right now the solution I am using is to infer whether or not I opened a channel by its sent, received, and local balance. ([See setting a default policy (LND)](https://lightningwiki.net/index.php/Channel_policy#Setting_a_default_policy_.28LND.29)\n- LN nodes are also using specific mempool fee rates to update these commitment fees. Each wallet app or LN implementation is using a specific one, is not a general one. But users can change it as they like. [Here you have a discussion example about how these negotiating commitment fees could stuck a channel in closing procedure due to non-negotiable fees](https://github.com/ElementsProject/lightning/issues/7254).\n\nSo, from my understanding what could cause a force closed channel?\n- wrong negotiation of commitment fees, especially between LN implementations. For example if you have a LDK node and open channels with a LND node (that is using a different fee table), your node cannot negotiate clearly a huge fluctuation in mempool fees and automatically could trigger a force closure of the channel.\n- your node or your peer node is unstable during long period (bad connection over Tor or weak VPN, hardware failures that cannot write in time the changes in the databases, weak memory etc)\n- other forwarding peers that are routing your HTLCs and they have weak / bad systems. The HTLCs could got stuck, not routed and your end up with pending HTLCs. Your peers could trigger force closures if these pending HTLCs are passing a certain time.\n\nI will try to explain a bit now how this situation of force closed channels because of huge fluctuation of mempool fees, based on my understand. I may be wrong in some parts.\n\nExample of fee rates over time:\n- you start with t=0, right now: 10 sat/vB mempool\n- +1 hr: 15 sat/vB mempool <-- commitment tx fee updated here, peer goes offline now so you cannot cooperative close anymore\n- +2 hr: 30 sat/vB mempool\n- +3 hr: 15 sat/vB mempool\n- +4 hr: 10 sat/vB mempool\n- +any hr: @ any fee in the mempool: you will broadcast 15 sat/vB feerate tx\n\nBecause it is a force close, you are just publishing the last state of the commit transaction as-is, no fee rate is specified at the time of close, nor can it be specified at time of close because it is a pre-signed transaction.\n\nAs a result, the fees in the mempool doesn't really matter when you force close the channel. if you close it now, when fees are 10 sat/vB, it'll still broadcast with 15 sat/vB feerate since that was the last updated fee rate even if fees were 1 sat/vB you would still broadcast the 15 sat/vB tx.\n\nthis is an essential part of risk to manage in lightning: offline peers, it is not just an inconvenience, it can cost you sats as you see here if the peer was online, you could have instead *negotiated* a closing tx fee instead of using the most recent commitment tx fee update.\n\nthe commitment tx fee only updates periodically, so this usually happens when fees are moving up and down a lot. if fees are very stable over a time period, it doesn't happen as much because even if you have not updated the commit tx fee in a while, it is similar to what the mempool is later.\n\nThis risk is also controllable: by setting max-commit-fee you can limit the feerate you are willing to pay on the close. So for eg. if you specified that the max commit feerate should have been 60 sat/vB, and that you would handle fee bumping it if you needed to using CPFP, you wouldn't have overpaid as much on the fee for the channel close. But that savings would be balanced by the possibility of needing to manually fee bump it with CPFP later.\n\nI hope with this I could clear out some issues about force closed channels.\nIt sucks, I know from myself, but for the moment it is what is and until the LN code will not have a big improvement in this matter, we have to deal with it. \N 19854 \N 444469 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 6.11479569577533 0 \N \N f 0 \N 0 8833819 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404587 2025-02-16 01:37:14.059 2025-03-29 22:39:46.785 Joy of Compounding *Episode XVI. Block height: 844000. Everything, in time. Compounding is key because human time is scarce.*\n\nOriginal: https://carlbmenger.substack.com/p/joy-of-compounding?r=cvmtq\n———————————————————\n\n![Joy of Compounding](https://i.postimg.cc/gkJyHq27/IMG-0546.jpg)\n\nTime is the scarcest asset for living beeing, and compounding is the concept to value your limited life time appropriately. Most people associate 'compounding' primarily with money and finance, or, to be more precise, with interest on capital, thus earning returns on both your original investment and on returns you received previously. However, the concept of compounding is much broader and can be applied to many situations in life. I see it more as a concept of aligning time in your favor. The longer you compound, the more impressive the results are. Bring time to your side, and life won’t be a hassle. This is what this episode is all about. \n\n### Start Small\n\nFirst and foremost, one small step at a time in the right direction can change your whole life. The difference between those who fail and those who succeed is their courage to act repeatedly. Most people, when faced with change, however, will feel at least some element of fear getting in the way of actually making the change. The idea is to make small, continued changes so that your brain doesn‘t even realize that you are trying to change and doesn‘t get in the way. Start by asking small questions, by thinking small thoughts, by taking small actions, by solving small problems, and by recognizing small changes. Try to become 1% better every day. With compound interest on those small changes, they become exponential over time.\n\n![Small improvements over time](https://i.postimg.cc/Vvtk1k9n/IMG-0547.jpg)\n\nThe idea is to make the change simple, habitual, and fun. Small steps make delaying gratification easier and more sustainable. So, whether it is quitting a bad habit or forming a good one, the idea is to start small and then build over time. If we are facing in the right direction, all we have to do is keep on walking. Here are some areas where compounding offers huge upside and limited downside.\n\n### Compound Health\n\nFirst and foremost: One life, one body; take care of it, otherwise nothing else will matter. The problem with being healthy is that you only realize it when it's already too late. The human body is a miracle of nature. It can take a lot of abuse. However, once a limit has been crossed, things happen very quickly. That's why it's all the more important to do small acts of kindness for your health every day. Eat whole foods and skip processed garbage. Exercise daily, even if it is just a 10-minute walk. Incorporate physical activity into your daily life. If possible, go by bike to work and have resistance bands at the office. Small acts of daily physical activity can change your life significantly over time. If you focus on daily exercise, whole-food nutrition, and about eight hours of sleep a day, you will be rewarded with a longer and healthier life. Improved health improves everything and makes every experience more enjoyable, at every age. Thus, compounding good health is the basis for everything else.\n\n### Compound Knowledge\n\nHowever, regardless of how well you preserve your body, it will deteriorate over time. Thus, the body is limited in ways that the mind is not. In fact, by the time most people are fifty years old, their bodies begin to weaken, but the amount of growth and development that the mind can sustain has no limits. Become a learning machine. The more you read, the more you build your mental repertoire. Incrementally, the knowledge you add to your stockpile will grow over time as it combines with everything new you put in there. This is compounding in action, and it works with knowledge in much the same way as it does with interest.\n\nThe best and most inexpensive way to compound knowledge is through books. The more you read, the more you build your mental repertoire. Creating a habit to read daily is the greatest life hack I have discovered. Books are truly life-changing, particularly once you have developed the habit of reading every day. The neuronal connections that compound through the effort will make you an entirely new person after each and every page.\n\nI hear you scream: „Yea I get it Bro, but I have no time!“ I always hear that people have no time to read books. It always seemed strange to me. When you work full-time and maybe have a spouse and children, time is scarce. However, the average person spends two hours a day watching television, an hour commuting, and another two hours a week shopping; that adds up to twenty-three hours a week, or 1,380 minutes. That is a fucking lot of time! If you read 30 pages each day, that’s 7,300 pages a year, or roughly 30 books. And each single one of those books has the power to change your thinking and your life significantly.\n\nBy the way, you don’t have to buy physical books; if you are more of an audiophile, just get audiobooks or listen to podcasts. You can even listen to them if you are in your car driving to work, on the tram or while you work out. So don't tell me you don't have time to gather knowledge. And if a book does not interest you, you just abandon it to save time and move on to something more interesting. Reading multiple books simultaneously, quitting those that are not engaging, and constantly picking up new ones is the Antifragile approach to self-education. Just try to wake up every day a bit wiser than the day before.\n\n##### Hang out with people better than you\n\nSurrounding yourself with smarter and better people provides a great education. You gain firsthand experience of their thought process, how they prioritize, their value system, how they live each day, how they handle success and failure, and many other important things that textbooks cannot teach you. If you are the smartest person in the room, you are in the wrong room. It's wiser to surround yourself with smarter people and feel uncomfortable than to limit yourself to a mediocre circle just to feel comfortable. You are, after all, the average of the five people you associate with the most in your life. Learn from others because knowledge comes from experience, experience often comes from failure, but it doesn’t have to be your own failure.\n\n### Compound Positive Thoughts\n\nKnowledge is important, but what does it matter if you are depressed and unhappy? Therefore, compound positive thoughts. Compounding positive thoughts generates the consistent energy we need to reach our long-term goals. Our mind automatically generates thoughts related to the information we consume. Your mind is like an empty glass; it will hold anything you put into it. If you put sensational news, negative headlines, talk show rants and mainstream media in the glass, it is no surprise that you get dark, dismal, worrisome water, and everything you create in your mind will be filtered through that muddy mess. However, if you read good books, talk to interesting people, and be generous to others, your water will be clear. Thus, be conscious of your information diet. When you change the way you look at things, the things you look at change. If you form the habit of looking for the positive, you will find it in the smallest things around you, and your mind will fill it with happiness.\n\n> “Men are disturbed not by things, but by the views which they take of things.“ - Epictetus\n\nAnd i know it is way easier, as said. Especially because how we perceive the world, positive or negative, is in some parts predetermined. Studies showed that about 25% of it is due to our genetic composition. So for some people, seeing the positive in life is more difficult than for others. However, this is also very encouraging because we can work on 75% to live a better and happier life, regardless of our predisposition. A very powerful fact is that the human brain can only hold one thought at a time. Think of it: you can either hold a positive or a negative thought, you can rewrite instantly a negative one with a positive, and vice versa.\n\nOne habit that helps me to establish a more positive mindset is to practice gratitude. Gratitiude is, in fact, the most effective path to finding contentment. If you need to wake up early as a parent, for example, be grateful to have children. I try to be grateful for three things in my life when I wake up and before going to bed. Another one is meditation. I can’t emphasize this enough: Learn to meditate. When you train your mind to focus on something as simple as the breath, it also gives you the discipline to focus on much bigger things and to tell the difference between what is important and everything else.\n\n### Compound Character\n\nThe only person you need to be better today is the person you were yesterday. There is no superiority in feeling superior to your fellow humans; true nobility is being superior to your former self. Thus, competing with others makes you bitter, competing with yourself makes you better. People who constantly strive to improve themselves usually have a role model. As creatures of comfort, we are reluctant to step out of our comfort zone, and we often lack the inner urge. Because many of us are motivated by examples, however, we come to realize that the drive to improve can be driven by others. Role models can act as our motivational coaches and as a source of daily inspiration in our lives. Start writing down the virtues you value in others and re-reading them once in a while. Because in the end, you character becomes what you are thinking continually.\n\n##### Be humble\n\nHumility is the gateway to attaining wisdom. Maybe you discovered it yourself, but the deeper one dives into any field, the more humble one becomes. By demonstrating intellectual humility and acknowledging what we don’t know, we place ourselves in a beneficial position to learn more. We cannot know everything, but we can work hard to become just about smart enough to make above-average decisions over time. If you are humble, truly happy and satisfied with the life you are living, you will be happy to see other people succeed. Don’t make this life all about you. Be happy when other people are doing well, and encourage their success.\n\n### Compound Finance\n\nTruth is hard to assimilate when it is opposed by interest. You cannot really understand how the world truly works unless you have financial independence. Once you achieve this state, it changes everything. It enables you to look at reality in a truly unbiased manner. Aim to achieve financial independence at the earliest possible time. That is when you will start seeing the world as it really is. Because it is very difficult to think and act long-term unless you are financially independent.\n\nTo be clear, financial independence does not mean that you don’t work, but just you don’t need to. The goal of financial independence is to stop depending on others (bosses, clients, a schedule, a paycheck). True wealth is measured in terms of personal liberty and freedom, not money. Money alone does not signify independence; control over time does. The only definition of success is being able to spend your life in your own way, and on your own terms.\n\nOf course, you ask yourself, how can I achieve this? Underspend your income to the maximum extent possible but not save you to death. Beware of little unnecessary expenses; a small leak will sink the greatest ship. Avoid taking on any debt for discretionary consumption. Learn to cherish frugality. Always pay yourself first by learning new skills or buying new books. Spend on yourself only what is left after you have made an investment. Never depend on a single source of income. Invest at least a small amount of your income regularly and over a long period of time, making use of compound interest. And remember, money represents freedom and independence, not a means to engage in consumption. The most important reason for saving is personal freedom and control over time. Freedom is like income that cannot be taxed. \n\nSociety glamorizes a consumption-laden lifestyle, and most people follow this path blindly, spending on non-necessities that drain earnings, leaving little in the form of savings. The journey to financial freedom starts with the first money saved. It is not the first million that is the hardest; the most difficult part is getting started. Clawing your way out of debt to achieve a net worth of $0 is much more impressive than saving the equivalent sum, because you don’t have compound interest helping you out.\n\n##### Long term thinking\n\nWhen you focus on long-term outcomes, expect to be frequently misunderstood in the short term. We gain an advantage over time by staying intellectually honest while studying new ideas and only investing in the few which we think the odds are significantly in our favor. If everything you do need to work on a three-year time horizon, you are competing against a lot of people. But if you are willing to invest on a seven-year time horizon, you are now competing against a fraction of those people, because very few people are willing to do that. Thus, just by lengthening the time horizon, you can engage in endeavors that you would never otherwise pursue. The short-term mindset that is all-pervasive in the market creates irrational buying and selling for all sorts of reasons that have everything to do with the short-term direction of the asset but nothing to do with its long-term value.\n\nThe longer you can extend your time horizon, the less competitive the game becomes, because most of the world is engaged over a very short time frame. The path to lasting wealth is deferred gratification, savings, and compound interest. Develop the habit of saving in such a way that you enjoy your present reasonably well and also ensure a bright future tomorrow. Being content in life and having fewer needs enables you to be happy in any situation. By the way, wealth, in fact, is what you (and governments) don’t see. It is the cars not purchased. The diamonds not bought. The renovations postponed, the clothes forgone, and the first-class upgrade declined. It’s assets that haven’t been converted into (unnecessary) stuff. It‘s Bitcoin in self-custody, a far cry from state arbitrariness.\n\n##### Hedonic Treadmill\n\nWe want what we want until we want some more. A process called ‚hedonic adaption‘ determines that we quickly become accustomed to most things in our lives. As a result, experienced happiness is often fleeting. Modern slaves are not in chains, but in consumer debt.\n\n> „We often buy things we don‘t need with money we don‘t have to impress people we don‘t like.“ - Dave Ramsey\n\nThe solution, particularly after basic needs are met, is to actively seeking contentment with what you have. That doesn‘t mean you should stop saving, stop putting effort in, or stop sacrificing. It means you come to terms with the idea that the outcome isn’t a fountain of happiness. So if you are going to grind, you better damn well enjoy the process. Never measure life by your possessions, rather measure it by the hearts you touched, the smiles you created, and the love you shared. Love people and use things, because the opposite never works. Love is caring without an agenda. Love isn‘t something we fall into; it is someone we become.\n\n### Compound Experiences\n\nTo avoid ending up on the hedonic treadmill, where your expenses for things rise with your income, you can start compounding experiences instead. Once you get past the point of working for basic needs and have invested a considerable amount, you can start to exchange your labor for positive life experiences with yourself, your friends, and your family. Therefore, invest in experiences that yield long-lasting memories. Always keep in mind that everyone’s health declines with age, meaning that with age 80 you won’t be able to spend time with your parents because they are most likely already dead, nor are you enjoying traveling as much as you would with age 30.\n\nLearn to balance current enjoyment with later gratification because, in retrospect, your life is the sum of your experiences. Many psychological studies have shown that spending money on experiences makes us happier than spending money on things. Unlike material possessions, which seem exciting at the beginning but then often depreciate quickly, experiences actually gain in value over time: They pay you a memory dividend. When you are too frail to do much of anything else, you can still look back on the life you have lived and experience immense pride, joy, and the bittersweet feeling of nostalgia. And that is exactly what I mean by a memory dividend. So every time you remember the original moment, you get an additional experience from mentally and emotionally reliving the original experience. The earlier you start, the more compound effect you have. And a lot of memorable experiences do not cost you a lot of money.\n\n### Conclusion\n\nThe rich have money, the wealthy have control over their time, and time is the scarcest resource humans possess. Make the most of your scarce lifetime and start compounding health, knowledge, positive thoughts, experiences, character and finances to become a better and more happy person over time. One percent better each day over a long period of time will lead you to outstanding results. Day one, or one day? It’s your choice.\n\n### The End\n\nThat's it for this episode. I hope you gathered some valuable knowledge from this one. Thanks for reading, and see you in the next one. Until then, remember: **Time is scarce; make it work for you; compounding is key.**\n\n₿ critical, ₿ informed, ₿ prepared. Yours,\n\n![CarlBMenger](https://i.postimg.cc/285gc6kc/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n### Stay tuned\n**Subscribe to my Newsletter:** https://open.substack.com/pub/carlbmenger/p/coming-soon\n**Follow me on Twitter:** https://mobile.twitter.com/CarlBMenger\n**Follow me on NOSTR:** npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Knowledge is Key\n[XV] Optionality: https://stacker.news/items/512150\n[XIV] The Bitcoin Halving: https://stacker.news/items/487510\n[XIII] The Lightning Network: https://stacker.news/items/261714\n[XII] CBDCs: A Brave New World: https://stacker.news/items/213580\n[XI] Valuing Bitcoin: https://stacker.news/items/208983\n[X] Solving the Adoption Dilemma: https://stacker.news/items/201172\n[IX] NOSTR: Social Media 2.0: https://stacker.news/items/189821\n[VIII] The Bitcoin Retirement Plan: https://stacker.news/items/183327\n[VII] Bitcoin in Guatemala: https://stacker.news/items/171339\n[VI] Bitcoin in El Salvador: https://stacker.news/items/161607 \N 16680 \N 404587 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2942036429096 0 \N \N f 0 \N 0 91638339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 220891 2024-08-26 00:38:01.469 2025-03-29 22:39:46.785 Can You Be A Libertarian Toxic Bitcoin Maximalist? I’ve been a bitcoin maximalist for about four years now, and I can feel myself getting more toxic by the day. I have defined myself as a libertarian for almost 35 years. While wandering around Stacker News lately, I get more and more pissed off when I discover notions and attitudes I disagree with. In fact, I don’t like the strident tone of my inner voice, which sometimes reveals itself in comments here. I fully blame @DarthCoin.\n\nAt times I answer yes to the question above. I can be a libertarian toxic bitcoin maximalist. People can play with their shitcoins. I’m not stopping them. I am free to express my opinion about their choices. Still, I don’t like to even see stuff about shitcoins, I don’t wish to discuss shitcoins, and I certainly don’t want them talked about on Stacker News.\n\nBut, is that libertarian? Isn’t that stifling dissent in ways I really hate in other aspects of my life? Don't I believe in free speech? Libertarians believe in a free market of ideas. Shouldn’t we want to discuss alternative ideas (and coins)to argue that we’re right and they’re wrong? Isn’t this an opportunity to show shitcoiners the error of their way? We can even orange pill them.\n\nI don’t want to come across as sounding as if I want to see more shitcoin posts on Stacker News. I don’t. I’m just having trouble reconciling my beliefs in bitcoin and my libertarian ideals. \n\nAnyone else dealing with this? \N 12609 \N 220891 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.717322219771 0 \N \N f 0 \N 0 92128619 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 196490 2024-07-08 11:12:20.889 2025-03-29 22:39:46.785 Running a Bitcoin Hostel in El Salvador *Episode XVII. Block Height: 847500. Running a Bitcoin-only hostel in the heart of El Salvador. Sun, Beach, and Education, this is Forever, Laura!*\n\nOriginal Post: https://carlbmenger.substack.com/p/bitcoin-hostel-in-el-salvador\n——————————————————\n![Forever, Laura!](https://i.postimg.cc/mrhNJsXG/IMG-0587.webp)\n\nEverything started back in early 2022 when I arrived in San Salvador. Although I've had the dream of opening my own spot since my first major trip through South America in 2018, the idea has stuck with me ever since. Now it seems I have also found the perfect place to fulfill my dream. Sun, beach, super nice locals and of course Bitcoin, all combined in a relatively small country in Central America. Sometimes fiction becomes reality.\n\nI had spent years backpacking across continents, witnessing firsthand the struggles many travelers face with currency exchange rates and transaction fees, making travelling a hassle; waiting in line for hours at banks and being cross-checked including passport scans just to receive a huge stack of paper notes that devalue by the minute; and waiting for larger transactions to arrive months later because three banks are involved who charge exorbitant fees for nothing; or credit cards and bank transfers not working at all. On the other hand, I saw the transformative potential of Bitcoin in streamlining payments and fostering economic inclusion first hand in El Salvador. It just takes a spark to lit up a fire.\n\n> “Envision your dreams and they become reality.”\n\n### Why El Salvador\n\nIn recent years, El Salvador has emerged as a pioneer in the adoption of Bitcoin, making headlines worldwide with its decision to recognize Bitcoin as legal tender. This bold move has catalyzed a wave of innovation and experimentation in the countries’ economy. Among the novel enterprises inspired by this digital revolution is the concept of a Bitcoin-only hostel/hotel, a unique blend of hospitality, education, connection, and recreation powered by unfuckable money called Bitcoin. No currency exchange, no waiting in line for hours, no cross-checking, no penalties for exchanging currencies, just pure Viva La Vida.\n\nIn a digital age, where borders are an artifact of past history, people will choose the place to live/travel where their ideas and capital are treated best. The Bitcoin community and people who are interested in Bitcoin are growing rapidly, fuelled by the fact that more and more people are fed-up with the current fiat robbery. In El Salvador, where Bitcoin is legal tender and faces no discrimination to fiat currencies, our money (Bitcoin) is treated best. Therefore, an increasing amount of people will flock to El Salvador, enjoying freedom of choice regarding the use of money.\n\nThe trend towards location-independent work and the use of a worldwide decentralized payment network, including the political changes in El Salvador, screams for a spot to bring together people all around the globe. Spreading Bitcoin adoption and education in one breath.\n\n### Forever, Laura!\n\n![Logo](https://i.postimg.cc/9QwyYprW/IMG-0588.webp)\n\nForever, Laura! the striking name of the Bitcoin-only accommodation offers a seamless, tech-savvy travel experience for the modern, digitally inclined traveler. This concept aligns with El Salvador’s national strategy to integrate Bitcoin into everyday transactions, fostering a more inclusive and innovative financial ecosystem for everyone. A unique experience where all transactions, from booking to local excursions, are conducted exclusively in Bitcoin, thus providing a practical demonstration of Bitcoin’s utility and boosting a Bitcoin circular economy. Breathing and living the Bitcoin Standard integrated into its operations, providing a holistic, unique and innovative experience for all senses.\n\nIncreased Bitcoin adoption, not speculation, only works with knowledge. The best way to pass on knowledge is to create the right space for it to spread. I was fortunate enough to join the greatest Bitcoin community over the last couple of years, for which I am truly thankful. Spreading the Bitcoin word online is fine, but for most, providing a full Bitcoin experience also means meeting like-minded people and using/spending some sats, further promoting the Bitcoin circular economy and solving the Bitcoin adoption dilemma.\n\nTherefore, securing a prime beachfront property and beginning to transform it into a modern, eco-friendly spot for Bitcoin folks is my next big goal. The design incorporated sustainable materials, photovoltaic modules and a small scale Bitcoin mining facility mostly for educational purposes, but where the excess heat would be used to warm up a pool and/or sauna. The centerpiece of the hostel, however, will be its open-air common area out-looking to the ocean, co-working spaces equipped with fast Wi-Fi and a Bitcoin library, creating room for knowledge to spread through generations independent of the background.\n\n![Forever, Laura! Rooms](https://i.postimg.cc/Kjn8Y1zh/IMG-0589.webp)\n\nTo fulfill this generational independent share of knowledge, the rooms range from shared budget friendly dormitories to private suites and beachfront bungalows, each equipped with digital locks that guests can unlock using a unique QR code sent to their smartphones upon booking. Furthermore, a healthy and protein rich breakfast menu will be offered, including proof of work made Espressos and Americanos. Crispy homemade Bitcoin Pizza will be offered in the evening, including Satoshi’s favorite, Pineapple and Jalapeños, of course. Transactions for stays, meals, and other services were conducted exclusively in Bitcoin. No Bitcoin yet, no problem because the property will also feature a Bitcoin ATM with super low fees, sucking in your paper notes and sending Bitcoin directly into your wallet, getting you ready for an unforgettable Bitcoin experience.\n\n### Knowledge is Key\n\nUnderstanding Bitcoin is crucial because it sits at the intersection of finance, technology, and socio-economic change. As a decentralized digital currency, Bitcoin offers a new way to transact and store value, providing an alternative to traditional financial systems and enabling financial inclusion for the unbanked. By providing a safe and hip place, I am able to reach people I am not able to reach right now. I love X and Nostr, but let’s be honest, it’s one giant bubble. Thus, to onboard more people to the Bitcoin Standard, we need to make Bitcoin touchable, outlining its usefulness by real word projects. Talk is cheap, let us take action!\n\n> “Waste no more time arguing what a good man should be. Be one.” – Marcus Aurelius\n\n#### Empowering the Bitcoin Economy\n\nBy integrating local businesses into the Bitcoin economy, I want to further help increase Bitcoin adoption and reduce reliance on the traditional banking system, which is still very discriminatory. Bitcoin allows for seamless, borderless transactions, making it easier for both locals and travelers to engage in economic activities without relying on the traditional banking system.\n\nThis economic empowerment fosters a stronger, more resilient community in El Salvador. Forever, Laura! will become a hub for innovation, Meet-ups, Bitcoin Workshops (Running a Node; Self-Custody; …), and digital nomad retreats. It will demonstrate how technology, when used thoughtfully, enhances travel experiences, fosters community, and drive economic inclusion, proofing that innovation and social good goes hand in hand. Working in cooperation with MiPrimer Bitcoin and Bitcoin Beach, hosting workshops and Bitcoin events.\n\n#### Lowering Transaction Cost\n\nBitcoin transactions lower fees associated with currency exchange and international transfers, providing cost savings for both the host and its guests. Especially when using the Bitcoin Lightning Network, a layer two solution which offers significant benefits by addressing scalability and transaction speed limitations of the main Bitcoin blockchain. It enables faster, low-cost transactions by creating off-chain payment channels, which allow multiple transactions to occur between parties without broadcasting each one to the blockchain. This reduces congestion and lowers fees, making small transactions economically viable. The Lightning Network also enhances privacy, as transactions within the channels are not publicly recorded until the channel is closed. This efficiency will improve the guest experience by offering quicker check-ins and payments for services.\n\n![Bitcoin Transportation](https://i.postimg.cc/Dw5dZZJG/IMG-0590.webp)\n\nAs the sun set over the Pacific Ocean, casting a golden glow over Forever, Laura! I stood on the beach, reflecting on the journey. Forever, Laura! is more than just an ordinary option to explore El Salvador; it represents a convergence of innovative technology and hospitality, a testament to the power of vision, technology, and community. The benefits extend beyond operational efficiencies and cost savings, influencing broader economic and social dynamics. By fostering financial inclusion, boosting the local economy, it will play a significant role in El Salvadors pioneering journey into the Bitcoin Standard. And as more guests arrive, eager to be part of this unique experience, the knowledge about Bitcoin spread unstoppable and the story of Forever, Laura! was just beginning.\n\n### Crowdfunding\n\nSo far, this is just a vision! But if you want to make a difference in this world, join my mission on Geyser Fund to build the best and coolest #Bitcoin-only accommodation in El Salvador, bringing together people all around the globe, and spreading tangible Bitcoin knowledge. Your support makes all the difference: https://geyser.fund/project/bitcoinhostelinelsalvador\n\n![Geyser Fund](https://i.postimg.cc/dQ4q5cyB/IMG-0591.webp)\n\nP.S: I would also highly appreciate your Feedback and any ideas that came up while reading this episode. I am also open to a strategic partnership. Just reach out. Together strong.\n\n#### The End\n\nThat's it for this episode. I hope you got excited about my latest project. If we can dream it, we can do it. **Making the world a better place, powered by Bitcoin. Knowledge is key.** Thanks for reading and see you in the next one.\n\n**₿ critical, ₿ informed, ₿ prepared. Yours,**\n\n![Carl B Menger](https://i.postimg.cc/3x6jpq1r/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n### Stay tuned\n**Subscribe to my Newsletter:** https://open.substack.com/pub/carlbmenger/p/coming-soon\nFollow me on **Twitter**: https://mobile.twitter.com/CarlBMenger\nFollow me on **NOSTR**: npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Related Topics\n[XIII] The Lightning Network: https://stacker.news/items/261714\n[X] Solving the Adoption Dilemma: https://stacker.news/items/201172\n[VII] Bitcoin in Guatemala: https://stacker.news/items/171339\n[VI] Bitcoin in El Salvador: https://stacker.news/items/161607 \N 1692 \N 196490 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.7459685871027 0 \N \N f 0 \N 0 32446846 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 224557 2024-09-01 03:17:58.192 2025-03-29 22:39:46.785 When Money Dies *Episode XVIII. Block height: 848600. The early signs of hyperinflation and the consequences for society. History does not repeat, but it often rhymes.*\n\nOriginal episode: https://carlbmenger.substack.com/p/when-money-dies\n\n-----------------------\nAt first, the effects of inflation were subtle. Prices began to rise gradually, and the citizens adjusted their spending habits accordingly. But as the government continued to print money with abandon, inflation spiraled out of control. Prices doubled, then tripled, and before long, the fiat currency was worth less than the paper it was printed on. Panic set in. A dystopian cityscape is engulfed in chaos and despair as the once-thriving economy has collapsed under the weight of fiat hyperinflation. The bustling markets, once teeming with life, became battlegrounds. Merchants hiked prices multiple times a day, and shoppers rushed to buy goods before they became even more expensive. Basic necessities such as food, clothing, and medicine became luxuries. The sky is a fiery red, illuminating the smoldering rubble of abandoned buildings and crumbling infrastructure. The streets are littered with discarded currency notes, now worthless except as kindling for makeshift fires that provide warmth to the desperate survivors huddled in doorways and alleyways.\n\n![The FED](https://i.postimg.cc/ZYQ2QN7M/temp-Image-Pu-Dimp.avif)\n\nIn the modern world, money serves as the lifeblood of economies, facilitating trade, investment, and daily transactions. It is the bedrock upon which the complex structures of contemporary financial systems are built. However, history has shown over and over again that fiat money will "die," always as a result of government mismanagement and money printing. The consequences of such a scenario are profound and far-reaching, affecting every facet of society. This episode explores the early signs of fiat money destruction, drawing on historical examples to elucidate the economic, social, and political ramifications of this catastrophic event.\n\n### Historical Examples\n\n“Gradually, then suddenly” - This short phrase describes hyperinflation the best. There is a long time period where nothing happens, but once trust is lost, the currency is gone in an instant. The cases of Weimar Germany and Zimbabwe provide stark illustrations of what happens when money dies. \n\n#### Weimar Germany\n\nPost-World War I, the Weimar government faced immense economic strain due to the heavy reparations imposed by the Treaty of Versailles. To meet these demands and cover domestic expenses, the government began printing vast amounts of money, leading to hyperinflation. The value of the German mark plummeted, and prices soared to unimaginable heights, with the cost of basic goods doubling within days. All the German Mark that existed in the world in the summer of 1922 (190 billion) were not worth enough, by November 1923, to buy a single newspaper or a tram ticket. Workers were paid twice a day because their wages would be devalued by the afternoon. People’s savings were wiped out, and daily life became a struggle for survival as currency became worthless. But this was just the endgame, because 90% of the German Reichsmark value had already been lost before the middle of 1922, when most people still believed in the German currency.\n\nThis economic chaos eroded public trust in the government and created fertile ground for political extremism, contributing to the rise of Adolf Hitler and the Nazi Party. The Weimar Republic's experience underscores the devastating impact that unchecked money printing and poor fiscal management can have on a nation's stability and morals.\n\n#### Zimbabwe\n\nZimbabwe’s experience in the early 21st century was similarly dire. Under the leadership of President Robert Mugabe, the government embarked on aggressive land reforms and reckless fiscal policies, including excessive money printing to fund public expenditures. The annual inflation rate is peaking at an astounding 89.7 sextillion percent. The Zimbabwean dollar became so worthless that it was abandoned in favor of foreign currencies. Citizens were forced to carry bags of banknotes for basic purchases, and the economy ground to a halt as businesses struggled to price goods and services in a hyperinflated market. Savings were obliterated, and bartering became commonplace as trust in the currency evaporated.\n\nThe hyperinflation crisis had profound social and economic consequences for Zimbabwe. Unemployment and poverty skyrocketed, leading to widespread food and fuel shortages. The public's trust in the government eroded as savings were wiped out, pensions became worthless, and essential services deteriorated. Many Zimbabweans turned to bartering and foreign currencies to conduct transactions. In 2009, the government finally abandoned the Zimbabwean dollar, officially adopting a multi-currency system to stabilize the economy. The hyperinflation period left deep scars on the society, highlighting the catastrophic effects of economic mismanagement and the urgent need for sound fiscal policies.\n\n### Early Signs\n\nAs the two examples of Zimbabwe and Weimar Germany clearly show, hyperinflation has terrible consequences for society. Therefore, it is even more important to spot early signs that often manifest subtly but escalate rapidly if unchecked. \n\nInitially, there might be a noticeable increase in the prices of goods and services, outpacing normal inflation rates. Consumers and businesses begin to experience a loss of purchasing power, with money losing its value more quickly than usual. Savings start to diminish in real terms, leading to a decrease in the public's confidence in the currency. Interest rates may rise as lenders demand higher returns to offset the depreciating currency value. Additionally, the government might respond to budget deficits by printing more money, further exacerbating the inflationary cycle. The velocity of money circulation increases as people rush to spend their money before it loses even more value, setting the stage for runaway inflation. These early indicators, if not addressed through stringent fiscal and monetary policies, can spiral into full-blown hyperinflation, wreaking havoc on the economy. In concrete terms early warning signs in our current system are:\n\n**The Price of Gold:** The price of gold has been suppressed in recent years, but analysts predict significant movement if it surpasses $2500 per ounce. This level is seen as a critical threshold where investor interest and market dynamics could lead to substantial price increases, reflecting heightened concerns about economic stability and inflationary pressures.\n\n**Gold Acquisition by Central Banks:** Central banks around the world continue to increase their gold reserves, signaling a strategic diversification away from traditional currencies especially the US dollar. This ongoing trend underscores gold's role as a store of value, a hedge against currency depreciation and geopolitical uncertainties.\n\n**IMF Governance Reforms:** Proposed reforms to the International Monetary Fund (IMF) include adjusting the Special Drawing Rights (SDR) composition, potentially reducing the reliance on the US dollar. But the move by Russia and China away from using the dollar and Saudi Arabia selling oil in other currencies are also strong signs of the end of our centralized dollar-based fiat system. Such changes could signal concerns over the dollar's status as the global reserve currency and may serve as a warning of potential inflationary pressures associated with a weaker dollar.\n\n**System Glitches and Crashes:** The occurrence of flash crashes in equity markets and systemic glitches like the one we just witnessed, where Berkshire shares and others lost 99.9% of their value, highlights the fragility of modern financial systems. These events, characterized by sudden and severe market declines followed by rapid recoveries, underscore the fragility of financial markets.\n\n**A Chinese Collapse:** China's economic challenges pose complex implications globally. Short-term deflationary pressures may arise from economic slowdowns and reduced demand, while long-term inflationary risks stem from stimulus measures and currency policies aimed at supporting growth. Managing these dynamics is critical for global economic stability and market confidence.\n\n### Why Fiat Money dies\n\n#### Government Spending\n\nOne of the primary drivers of fiat money depreciation is excessive government spending coupled with persistent budget deficits. When governments consistently spend more than they collect in revenue, they often resort to borrowing or printing money to cover the shortfall. This expansion of the money supply without a corresponding increase in the production of goods and services leads to inflation. As more money chases the same amount of goods, prices rise, eroding the purchasing power of the currency. This phenomenon is particularly evident during periods of war, economic crises, or political instability when governments prioritize short-term spending over long-term fiscal sustainability. Imagine this: There are only seven years in which the U.S. government has run a budget surplus since 1950!\n\n![US Balance as Share of GDP](https://i.postimg.cc/kMZMyBxn/temp-Imagev-OCl46.avif)\n\n#### Central Bank Interventions\n\nCentral banks try to manage a country's monetary policy and influence economic stability. However, their actions always contribute to fiat money depreciation and create economic turmoil over the long run by trying to fix short-term problems. One such action is the implementation of expansionary monetary policies, such as quantitative easing (QE). QE involves the central bank purchasing government securities and other financial assets to inject liquidity into the economy and lower interest rates. While intended to stimulate economic growth and prevent deflation during downturns, QE often leads to inflationary pressures if not carefully managed. Excessive liquidity in the financial system can fuel asset bubbles and undermine confidence in the currency's long-term value.\n\nConversely, central banks may also pursue contractionary monetary policies, such as raising interest rates or reducing the money supply, to combat inflation. While effective in controlling price stability, these measures can constrain economic growth and consumer spending, impacting overall confidence in the economy and the currency, especially if the mountain of debt is significantly high because refinancing becomes exponentially expensive. The more debt, the more fragile the economy becomes, and the narrower the actions of central banks are to ‘fix’ it.\n\n#### Currency Devaluation\n\nGovernments may intentionally devalue their fiat currency as a strategy to boost exports and stimulate economic growth. By making exports cheaper and imports more expensive, devaluation aims to improve a country's trade balance. However, prolonged or abrupt currency devaluation can erode investor confidence and lead to capital flight, where investors move their assets to more stable currencies or jurisdictions. This loss of confidence can trigger a cycle of depreciation, as expectations of further devaluation prompt individuals and businesses to convert their holdings into foreign currencies or tangible assets.\n\nMoreover, fixed exchange rate regimes, where governments peg their currency to a stronger foreign currency or a basket of currencies, can also contribute to currency instability. Maintaining a fixed exchange rate requires significant foreign exchange reserves and strict adherence to monetary policies. Deviations from these policies or external economic shocks can strain reserves and force governments to abandon the peg, resulting in rapid currency depreciation.\n\n#### Economic Mismanagement\n\nPolitical instability, corruption, and ineffective economic policies can exacerbate fiat money depreciation. Uncertainty about government stability and policy continuity undermines investor confidence and hampers long-term economic planning. In extreme cases, political crises or social unrest may lead to capital flight and a loss of faith in the government's ability to manage the economy responsibly.\n\n### What are the Consequences\n\n#### Economic\n\nThe most immediate and obvious consequence of money dying is economic turmoil. Hyperinflation, the primary driver of monetary collapse, erodes the value of currency at an exponential rate. Prices for goods and services skyrocket, often within hours or days, making it impossible for people to keep up with the cost of living. Saving fiat money becomes pointless, and wages lose their purchasing power almost as soon as they are earned. This leads to a collapse in consumer confidence and a sharp decline in economic activity.\n\nBusinesses struggle to operate in such an environment. The unpredictability of costs and prices makes planning nearly impossible, leading to supply chain disruptions, reduced production, and layoffs. Investment dries up as the financial system becomes increasingly unstable. In extreme cases, the currency becomes so devalued that people revert to bartering goods and services because money is no longer a viable medium of exchange.\n\n#### Social\n\nThe death of money has profound social implications. As the economy collapses, unemployment rises, leading to widespread poverty and destitution. The middle class, which relies heavily on savings and stable income, is often the hardest hit. The gap between the wealthy, who can sometimes shield their assets from inflation through investments in foreign currencies or commodities, and the poor, who have no such means, widens dramatically. This exacerbates social inequality and breeds resentment.\n\nThe strain on daily life can be immense. Access to basic necessities like food, medicine, and shelter becomes increasingly difficult. Public services, funded by tax revenues that are now worthless, deteriorate. Crime rates often increase as people become desperate to survive, leading to a breakdown in law and order. The social fabric of communities frays as trust erodes and individuals focus on their immediate survival.\n\n#### Political\n\nThe political landscape is also dramatically altered. Governments lose credibility as they are seen as responsible for the economic disaster. Public trust in institutions erodes, and political stability is undermined. In many cases, such crises lead to significant political upheaval. For example, the hyperinflation in Weimar Germany created fertile ground for extremist movements, contributing to the rise of Adolf Hitler and the Nazi Party.\n\nThe destruction of money always leads to more authoritarian government measures, such as imposing price controls, expropriations, censorship of freedom of expression, strict rules on carrying weapons, rationing, and printing even more money, which only exacerbates the problem. Alternatively, they may seek external assistance, ceding some degree of sovereignty to international bodies like the International Monetary Fund (IMF) in exchange for financial aid and economic restructuring programs. These interventions often come with stringent austerity measures, which can lead to public protests and further instability.\n\n### Conclusion\n\nThe death of money is a catastrophic event that triggers widespread economic, social, and political turmoil. Hyperinflation, the primary cause of such a collapse, erodes the value of currency to the point where it can no longer function as a medium of exchange, store of value, or unit of account. The depreciation of fiat money is often a consequence of government and central bank actions that undermine confidence in the currency's value and stability. Excessive government spending, expansionary monetary policies, currency devaluation strategies, and political instability all contribute to inflationary pressures and currency depreciation, which are leading inexorably to more authoritarian governments.\n\nGeneral speaking, the more materialistic a society, the more curdle it hurts. Undoubtably, though, inflation aggregates every evil, ruins every chance of national revival or industrial success, and eventually produces precisely the conditions in which extremists of the right and left rise. Because of its unfairly discriminatory nature, hyperinflation brings out the worst in everybody. It all seems like madness, and it corrupts people’s values. Therefore, it becomes all the more vital to brace ourselves for such a scenario, nurturing our minds to withstand the storm without letting go of hope. Amidst the chaos, let us find gratitude for the treasures we hold and the inherent goodness that still glimmers in the world. And of course, it is always a good option to be prepared for the worst and hope for the best.\n\n### The End\n\nThat's it for this episode. I hope you got some valuable information from this one. The next chapter will unfurl a tale of preparation and protection, a guide through the labyrinth of fiat devaluation. We will explore strategies to shield ourselves from the looming shadows, fortifying our spirits and resources against the tides of government mismanagement and central bank printing. Thanks for reading, and see you in the next one.\n\n₿ critical, ₿ informed, ₿ prepared. Yours,\n\n![Carl B Menger](https://i.postimg.cc/QxMq5Npk/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n### Stay tuned\n**Subscribe to my Newsletter:** https://open.substack.com/pub/carlbmenger/p/coming-soon\n**Follow me on X**: https://mobile.twitter.com/CarlBMenger\n**Follow me on NOSTR:** npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Related Topics\n[Genesis] How Money Evolves: https://stacker.news/items/86531\n[IV] What the heck is Inflation: https://stacker.news/items/109724\n\n### Crowdfunding\nSo far, this is just a vision! But if you want to make a difference in this world, join my mission on Geyser Fund to build the best and coolest #Bitcoin-only accommodation in El Salvador(https://stacker.news/items/571274), bringing together people all around the globe, and spreading tangible Bitcoin knowledge. Your support makes all the difference: https://geyser.fund/project/bitcoinhostelinelsalvador\n\n![Bitcoin Hostel](https://i.postimg.cc/HsBdZz81/IMG-0591.avif)\n \N 17237 \N 224557 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.696525716602 0 \N \N f 0 \N 0 165324319 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3291 2022-10-29 10:27:48.998 2025-03-29 22:39:46.785 Zoom Out When I started following bitcoin culture every once and a while I'd hear someone say "zoom out". It would usually be in response to someone else talking about a dip in fiat price. You can take this simple comment and apply it many other places. Of course it can be applied to investments, or anything long term. The old phrase "Rome wasn't built in a day". Or if you go to the economics side of things you often hear about "time preference" from the Austrians(which is a deep thought provoking topic btw). \n\nWe live in a very short term mindset culture. We want everything instantly. We have little patience. I'm not a kid anymore and I can tell you that this impatience culture has increased in my life time. My parents noticed it of course but when I was young I thought they were just old and out of touch. Now I see their vision and wisdom more clearly. Have you ever wondered why time seems to move faster the older you get? When I was a kid it seemed like I would never get to summer break. It seemed like Christmas took forever to get here. It seemed like I would never get my driver's license. Today it seems like 5 years passes by in no time. It seems like I blink and a new month is here. Time seems to function differently the more time I've have spent living.\n\nI think this is the zoom out effect. Zooming out is a very important practice. Zooming out allows you to take a higher view. Just like climbing to the top of the mountain allows you to see things you can't see in the valley, zooming out allows you to see how the struggles and triumphs in life led you to where you are now. If you have a bad day, you make a dumb mistake, or someone is unkind. Zoom out. Is this an anomaly, or is it a pattern? With only a short time frame it is hard to see, but over time the truth reveals itself if you care to take the time to look. Do you hate your job or work? Maybe this is a rough patch. Maybe you need to take some time off and zoom out. Maybe something changed that you missed. Maybe it is an internal change and not external. It can be hard to see this without zooming out.\n\nWhen we zoom out we can gain context. When we take time to reflect and ask ourselves tough questions we can see lies we may have believed. Some of us tend to battle negative self-talk. Some of us see our faults and failures and then magnify them. We zoom in on each event that is negative losing sight of the context. Zooming out helps provide context. Others fail to see their areas for improvement. They are full of self confidence to the point of being blind to warning signs. They need to zoom out as well. Sometimes even zooming out isn't enough. Sometimes you need someone else to help you with getting a new perspective.\n\nI've been meaning to write about my recent experiences with refocusing, @siggy47 encouraged me to do it and here it is. When I started thinking about zooming out today I wasn't thinking about what I'm going to tell you, but the further into this I got the more clear the path became. I've been in a dark place mentally for some time. Most people that know me would not notice it. My wife is probably the only one that saw it. I don't feel like I'm out of the woods yet, but I can see the path forward and I'm walking it now. Back in February @elvismercury mentioned JBP's self-authoring program in a [thought provoking post](https://stacker.news/items/433828) by @Fabs. I had checked it out before and almost started it but for some reason I didn't do it. [Elivsmercury's comment](https://stacker.news/items/433828/r/kepford?commentId=433851) was the reminder I needed. About a month ago I took a weekend and did the [Future Authoring](https://www.selfauthoring.com/future-authoring) exercises. I highly recommend it to pretty much anyone. One thing it did was help me zoom out and reset my focus and thinking.\n\nI realized that while I have been feeling burned out and down, I really needed to take time and zoom out. There have been some rough things I've experienced in past few years that really hit me hard. In many ways I'm just tired. But it is easy to let hard times lead into self-pity. In-action then leads to more in-action. This is a vicious cycle that only leads down into dark places. Taking a weekend to focus on figuring out my path forward was what I needed. The first day was not fun. There were many questions that I responded to that made me feel worse about myself. I was tempted to stop the whole process a couple times. But, I pushed through to the next day. Then a light bulb came on for me. I needed to zoom out and when I did I recalled some daily practices that I used to follow. I had let slip. I realized that I had accomplished many goals over the years but hadn't refocused on clear definable goals. I also realized that I have been trying to do to many things at once, failing to complete them, and then feeling defeated when I think about all I hadn't done. I realized that I had stop doing things that had worked for me in the past. When I saw this it was like a door opened and I could see a path out of a dark cave.\n\nThe simple way to describe what I did was that I zoomed out. I took time to turn off all distractions and focus on looking ahead and behind with a wider scope. If you are in a rough patch right now I encourage you to talk to someone. My path forward really started with talking to my wife. Maybe you should check out the Self Authoring program. Maybe just try to zoom out and realize what you have done over the last 10 years. Are you excited about where you're going? Do you know where you're going? Its always changing but every so often try to zoom out for a bit. \N 986 \N 3291 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8128938436599 0 \N \N f 0 \N 0 188379643 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456948 2025-03-28 01:52:20.63 2025-03-29 22:39:46.785 Darthcoin journey on Stacker News ## INTRODUCTION\nToday I reached 21 000 total items posted on Stacker News!\nAnd also today is October 21, 2024.\n\nWOW I was surprised mnyself seeing that. Yeah is kind of magical number for all bitcoiners this "21". I don't want to brag about, but looking back is a hell of posting. And as you know, I am not a spammer, I just post when is needed, content that is needed (mostly Bitcoin guides). Yes I comment a lot, because I like to help others. But will enter into these details later in this celebration article. I will try to not make it too long...\n\nI hope this memorable post will give you more inspiration into your own Bitcoin journey. I am not saying that you shold follow my path. Each one we have our own path. What I am trying to says is that you should go all in Bitcoin and never look back. Do whatever you can for Bitcoin adoption.\n\n### Why do I write this post?\nIs more like a telling you my story, the story of Darthcoin in the Bitcoin realm. Many new stackers here do not know these aspects about me and sometimes do not understand my (harsh) comments.\n\nI dedicate this post to all stackers and I wish them all "May The Bitcoin Be With You!"\n\n[![SN-vader.jpg](https://i.postimg.cc/13KWb5cT/SN-vader.jpg)](https://postimg.cc/75fM24RM)\n\nThis post is about my long journey on Stacker News, how I started, how I get into Bitcoin (I promise to siggy47 this story) and how I navigate the past on SN and how I would like to see SN further. Of course is just my personal desire, that maybe is not well aligned with SN founders.\n\nHere I will put the links to all chapters of this long post so you can skip them if you already know parts about me:\n\n1. Who is Darthcoin and how he get into Bitcoin?\n2. Darthcoin journey with SN\n3. Darthcoin proposals for SN\n4. Darthcoin advice to stackers\n\n## Who is Darthcoin?\nI will try to not reveal too much personal information because I want to keep these two identities separate as much is possible. And I will explain later why.\nI am just an old guy. This month I reached 53 years. Yes, I was born in the fatidical month of October 1971 ([WTF happened in Oct 1971?](https://wtfhappenedin1971.com/)). Maybe that's why I am so toxic maxi bitcoiner... is my destiny.\n\n### How it started\nI was born in the peak of communist era of a place that embraced the fatidical communist regime. And I survived all my first 20 years in this terrible regime and terror. You cannot even imagine how much I suffered and especially being young. I don't like to talk too much about these aspects because they bring me back harsh memories that makes me suffer more and make me angry. But are there and will always remain there in my brains like a heavy burden.\n\nCommunism, the hard communism that I lived, is a something that you, as a westerner could not imagine. And I am here to warn you to not ignore the signs of it. It is coming to you too! And not because the fuckers want to implement it, but because they know you the westerner will accept on the fly without even notice it. I see the signs because I was forged in fire and I can see very easily these signs.\n\nDarth warning: DO NOT LET THEM FOOL YOU. The State, the Gov., the politicians are fooling you. Stop being a pussy statist hiding behind some meaningless privileges as shitizen. be a fucking man, responsible for your own actions. A sovereign individual that pursue his individual freedom all his life.\n\nI was fooled too, so many times, by the state and gov that I start learning how to defend myself and build a paralel life outside of the system. Yes, because even in communism, that was THE ONLY WAY TO SURVIVE. This is the word: survive, not to live. Living a normal life wasn't an option back then. Half of my family (aunts, uncles, cousins etc) were killed. Shot in the head. Why? Because if somebody in your family was against the regime, all the rest of your family will suffer. The State / the regime will try all kind of manipulations, tactics and tortures to the other members of your family, to make you confess and sign their "contracts" showing to the rest how weak are you and that "you did something wrong" against the regime.\n\nI NEVER fall for their tactics. I always stood my ground and fight against the regime and being a loud voice, even being a kid.\n\nThen one day I run. I escaped from that regime and went to the "western world". But my euphoria vanished very soon when I realized that the western world is not too much different than the communist world, only that have more lipstick on the pig's lips and wear nice "Adidas" sneakers and eating more sweets.\n\n>[!NOTE]\n>Mention: did you know that in communism I had rationed the food? Yeah basic food like milk, bread, meat, fruits. As a kid I eat oranges and bananas only once per year, on Christmas. I survived because I had my grandpas living in a rural area where they could raise some few animals and grow some vegetables and fruits. Otherwise is very hard to resist. When the food is scarce your mind is not acting normal, it became more sharp, more focused on survival and your trust in all the rest around you is gone. YOU TRUST NOBODY. because anybody can take your food. So when you see me totally against all govs, now you know why, because I know them very well how they act, how they operate to bring you down into slavery.\n\n### How was going\nOK so I start living my life into a so called "democracy". It was OK, from the point of view of a normal life. Comparing with the communist past was way much better. But I wasn't get too comfortable with that so I start looking for more ways to get the fuck out the system, totally.\n\nI couldn't resist to live in a lie again. All politics, economy, system was not too different than before, only with few more privileges. I cannot call those rights because are NOT. So I was moving around place to place, around Europe, trying to find a peaceful place where to settle myself. I couldn't find that for many years. And mostly because all the time you are forced to play by the system. They are folling you with all kind of tricks and contracts (that sometimes you never sign) and you have to start over. Again and again. Some people are just giving up, fooled by the more privileges they get from the state. And slowly those became statists, that will defend their shit because they depend of that shit. They can't be responsible for themselves.\n\nSo I start working in IT, technical hardware and infrastructure consulting for some good companies. I traveled quite some time but I didn't like too much. I was still trying to get out the system, not paying taxes, moving around and using all kind of ways to live my own life as a rebel. \n\nIt was really hard because those times Bitcoin wasn't yet created. And you were always going back to fiat mo0ney, to banks, to the gov, they got you by the balls and will never let you free. FIAT MONEY IS A PURE DISEASE!\n\n### How it ended\nBut in 2009 Bitcoin came to existence. I found out about it in 2010 reading some technical documentation from a work colleague. I was interested in the concept and I saved the post in my bookmarks for later. But unfortunately I forgot about it. I got very busy with work, traveling and having some heavy installation projects that kept me busy all days.\n\nBut then, one day, in early the 2012, went to a grocery store to buy some beers, with only 20 bucks in my pocket. Right at the entrance I bumped into an old friend, from communist era, we were buddies, doing all kind of crazy things, against the system. Imagine my surprise, that after so many years, I met him again, in a total another world, in total another circumstances.\n\nEven now, I think that was big sign that I met my old friend right that day.\nWhy?\nBecause he was the one that brought me to Bitcoin. He didn't let to spend my 20 bucks on beers and invite me to his home that was right on the same street.\nAnd he show me stuff about Bitcoin he was doing, explained me in details about Bitcoin whitepaper, Satoshi, etc. Was fascinating for me.\nInstantly I bought 1 BTC from him with those 20 bucks. He wanted me to start in the right way, P2P. Freshly mined BTC, from his miner. Those times you could still mine with a PC.\nAnd he literally told me: \n\n>[!IMPORTANT]\n>"If somebody will want to strike down Bitcoin, it will make it even stronger than we can imagine."\n\nThat moment I felt like he was the old ObiWan talking with Anakin Skywaler (aka Darth). A moment that I will never forget and changed my life forever, for good.\n\n[![obiwan-btc-force.jpg](https://i.postimg.cc/LXHtH0YG/obiwan-btc-force.jpg)](https://postimg.cc/67m2cchh)\n\nThat made me think deeply about Bitcoin and that's how "DarthCoin" was born. I was a Star Wars fun from the beginning and Darth Vader was my hero. Why? Not because many people saw him (wrongfully) as the villain, bur because was The Chosen One, that will bring The balance into The Force. If you don't know that, I suggest you to watch again all the Star Wars saga and pay attention to all the details around Darth Vader. You've missed a whole important story.\n\nI went back home TOTALLY CHANGED. My wife asked me where are the beers and I said that are gone, I drank them with a friend. I never told her I bought my first bitcoin with beer money. So I start reading more and more about Bitcoin, during the whole week. Then I realized that this is my "golden fish" I was looking all my life, my only way out of the system! \n\nBitcoin is the missing piece necessary if you really want to get out of the system. Because whatever you will try, you will always go back to fiat, banks and govs. But with Bitcoin you can fuck'em'all.\n\n### Darthcoin journey into Bitcoin\nA TLDR:\n\n[![darth-transformation.jpg](https://i.postimg.cc/XYQYZNsH/darth-transformation.jpg)](https://postimg.cc/87fS9GQM)\n\nSo I start mining too, with PCs first. Working in IT I had access to many powerful PCs and I mined with whatever I could, but still keeping it quietly and not disturbing others activities. Then I start mining with those USB AntMiners, lots of them because they were burning quite often.\n\nI was learning all days about Bitcoin, reading all kind of articles, documentation etc, testing all apps available. Just to keep up with all the new stuff coming. I wanted to "control this Force" of knowledge about Bitcoin. I never went on shitcoining. Never attracted me, my focus was ONLY on Bitcoin from the beginning.\n\nAccummulating knowledge about Bitcoin was my primary goal. Unfortunately I wasn't trained in coding so I couldn't enter into this realm. But I can read some parts and understand. I could help developers to find bugs, write documentation, test and explain to normal users their apps.\n\nSo, I was very few times active on the bitcointalk.org forum, but only asking questions and reading others comments, not so debatable (like now on SN). I didn't like to engage in debates. I am better as an observer. I am a good observer that can memorize many events, events that others are ignoring them, but I pay attention to the details and save the bookmark if is something that catch my interest.\n\nDuring the "Blocksize war" I also wasn't so active in the debate, on reddit or bitcointalk.org forum or any social media. I never had a twitter account. I do not like too much social media. Why? Because all these years trying to step out of the system, i saw that social media is a burden that people are carrying with them, slowing them down and revealing too many details about their private personal life.\n\nSo I always kept separate "identities": one private, only for my real life; and another one(s) only for online "presence". Never mix them. But yes, there are here on SN two stackers that know me in person, in real life.\n\nAll these years in Bitcoinlandia I onboarded many nocoiners, helping them with the littel knowledge I knew. And always trying to improve that knowledge to be better prepared for their questions. It was hard, really hard to build my own realm of the system. But I worked hard, continuously stacking sats and slowly closing all the bank accounts and never look back to fiat. I stopped working for others, I start working only for me, as a freelnacer and paid ONLY in Bitcoin. Wasn't easy, don't get me wrong, is a long journey and preparation. You can't start just with few sats. You need a good stash that gives you a buffer zone.\n\nToday I see people that do not want to do that step, go full Bitcoin. and I have a simple message for them: no problem, more sats for me.\n\nThen the PLANdemic came... right after 2019 when I decided to stop working my regular freelance jobs and retire into teaching Bitcoin to others.\nBut those times weren't easy, as for all. I was kidnapped (arrested) just for not wearing a fucking mask on the street. I NEVER ACCEPTED ANYTHING A GOV SAID OR TRIED TO FORCED ME TO DO. NEVER IN MY LIFE. So why now? And I get out from kidnappers because I stood my ground and won the case in front the judge. I could even go against the policemen they kidnapped me and will win. But I do not want to do more harm. I follow the Natural Law that says very clearly: do not do harm to others.\n\nSo, in 2020 I dediced to dedicate my entire time to Bitcoin. Writing guides for "my padawans", helping them all days, debugging, finding solutions for their use cases (mostly merchants). I was very active on the Umbrel forum with thousands of posts, 24/7. I've been running several telegram groups for Bitcoin support in 3 languages, 24/7 answerting questions from noobs. All for free, from my time. \n\nWhy? \nBecause only like that Bitcoin could win, could go forward. With good education, good practice, testing, helping devs and slapping shitcoiners in the face, all days. I always focused on the practicality of Bitcoin, daily use as money, not on trading, asset or bullshit like that. Callo me crazy, call me whatever you like, I do not fucking care and I will always be a fucking toxic maxi Bitcoiner. Consistency matter. You don't like it? Fine, GFY, HFSP.\n\nI will continue helping those that really appreciate my help until I'll die. But those that are still shitcoining and trash Bitcoin and Lightning Network, will get only shit from me. They do not deserve my sharing knowledge.\n\nOK enough about Darthcoin, this post is not only about Darthcoin. Is about SN & Bitcoin journey.\n\n## Darthcoin journey with SN\nThen June 2021 came out of nowhere a simple post in a Telegram group about Stacke News. Not sure if it was @k00b himself posting it, but instantly got my attention: a forum like reddit but with sats.. Daaaman that instantly is game changer.\n\nI get onboard immediately and created an account. Start reading some posts but werent so many those early days, just test ones. So I waited, not posting anything, just to see how's going. Those days I was also writing a lot of guides on my Substack. And one day I decided to post one of my early guides about Umbrel on SN. That was my first post item [#166](https://stacker.news/items/166), a shy link about Umbrel node, testing the waters.\n\nSeems that SN team didn't realized that they created a "monster"...\n\n[![darth-ark-sn-supertestnet.jpg](https://i.postimg.cc/HWMsGxsG/darth-ark-sn-supertestnet.jpg)](https://postimg.cc/qgkdyp3Q)\n\nIt didn't get too much attention, was too early and people still didn't know too much about Umbrel and LN nodes. But was fine, I made my entrance. And I dedided to go on this path, posting only stuff about bitcoin and trying to help new stackers with my advice and knowledge. If you can browse all my posts from the beginning you will see that NEVER posted any bullshit crap, no stupid links, no misleading stuff, only stuff that matters for Bitcoin and Freedom.\n\nI didn't came to SN for the sats ! From teh beginning I saw SN as a forum where you HAVE TO PAY TO POST, to say something. And that was fascinating for me, because nobody dare such thing until then. Was literally this meme:\n[![darth-make-them-pay.png](https://i.postimg.cc/yNmVT4xg/darth-make-them-pay.png)](https://postimg.cc/t1gQXchp)\n\nIn a Bitcoin world everything will be PAY TO USE. Remember that. And also your sats ARE FUCKING SCARCE! Spend them wisely because later you will regret it.\nI am not saying that you should not spend them. Not at all. Remember I live on Bitcoin standard from 2018, where I have to spend to live. But I spend my sats ONLY on things that really matters for me and when is really needed. Like this post now, paying 100 sats to say something important for everybody.\n\nI was very active on SN, as you can see I reached 21 000 total items and I did a real PoW here, trying to keep a line between shitcoiner and bitcoiners. Even that I am harsh with them, someday they will thank me for my words. I am 1000% sure about that.\n\nI've tried all kind of tacticts and methods posting, comemnting, zapping etc on SN. Just to see how is going and knowing better the system. Not for gaining sats. That's not my goal here. But anyways, the rewards are welcomed and will never refuse them if somebody will give them to me. That's an extra for me. My goal is make me heard because many of my warnings and advice became real. Not because I say so... not at all. Many stackers here hate me for being right, but my warnings came after intense observation of many things around, studies, details etc. Aspects that many ignore or pass over, but I don't. Also here are some manipulators that are only trying to deceive your opinion, your perception, and put you on a wrong track. Be aware of those!\n\nI, as a sovereign individual I will always speak truth, when I know it.\n\n[![DARTH-TRUTH.jpg](https://i.postimg.cc/m27N6srp/DARTH-TRUTH.jpg)](https://postimg.cc/svDhvb75)\nWhen I do not know something or I have very information about, I will not speak just for saying something. I STFU and observe. Many here are talking about many things without even having a merely idea what they are talking about. Just for the sake of earning some sats. I am not like that.\nBut when I speak, I am certain about that thing. And that's why many times my warnings come true. I am not a bullshit visionary with a crystal ball, but I can use my brain and bring back all the pieces together and make a good case.\n\nAnd btw... I love busting shitcoiners balls. They try to fight back but you know how we say: shitcoiners can't meme. And I am the one with the lighsaber, not them.\n\n[![darth_using_lightsaber.gif](https://i.postimg.cc/Vk21Hn8F/darth_using_lightsaber.gif)](https://postimg.cc/68VD87T7)\n\n## Darthcoin proposals for SN\nLet's go deep into Stacker News system.\nI've been through all history of SN and I saw how it evolve to something wonderful. Sometimes with bad things sometimes with good things. But is still a powerful tool for bitcoiners. Is really underestimated and we are still very early.\n\nDuring these years, I've made some proposals to SN devs, on their Github and here in the SN Saloon sometimes. Proposals to make it better, from a point of views of a daily user for long time. I spend like 8-10h/day on SN, if I am at home. reading, commenting and mostly observing all other stackers behavior.\n\nLOL I post the [FIRST SN Github issue on July 8, 2021](https://github.com/stackernews/stacker.news/issues/1) and later some more (like 12 in total). Not too much if you think so, but is honest work.\n\nWith the latest changes on SN I would like to make clear my position:\n- I am a strong supporter of self-custody, like any other decent bitcoiner. But let's be honest, self-custody have its limitations in Bitcoin. Self-custody must be done mostly for all your long term stash and funds that are used in a more private way. Custodial funds have their own "flavour", mostly as decoy, to hide your private stash.\n- A systemn like SN is not designed to work properly with self-custodial funds. Not in the actual form and with actual tools. Yes, LN devs are making huge efforts to bring more new tools like NWC but that is just hiding part of the problem: the friction of making thousands of LN payments back and forth between stackers every minute or hour, sometimes for meaningless 1-10 sats. Remember that the dust limit is 543 sats, it doesn't matter if is used onchain or LN, is the same. What we see as 1-10-100-540 sats zaps are just a way to fool the system with delayed txs and hard to cheat, to steal these meaningless amounts. But that doesn't mean you cannot be fucked. Reminder: force closed channels and dust attack. If you run a private or public LN node long enough you will know what I mean. I am warning you stackers! You will have a lot of force closures because of all these small zaps back and forth with SN.\n- You do not realize it right now because you barely start using an external wallet. But many of stackers are still using another custodial wallets for that. So what was the so "big achievement" into moving into "self-custody"? Nothing. You just pushed some lazy stackers into another custodial account, that sometimes can be even worse than SN. Nowadays very few stackers here know well how to run properly a LN node and also how to hide it from public view. \nYeah, because linking a public node to SN for zaps, is nto the proper way, you are leaking a lot of information about your private node and also you are creating a lot of friction with all these small meaningless zaps.\n- For SN is much better a restricted system of "cowboy credits". Yes, is not ideal in terms of Bitcoin ethos, but it is what it is. But also could have its own fun and perks. We can create a whole paralel system, INSIDE SN, like in a game. Yes, you could still buy these cowboy credits with real sats but not withdraw them outside. That's totally fine.\n- If SN founders do not want to deal with KYC shit as money transmitters, also is fine, but at least offer a better way: SEPARATION of upvotes from zaps (sats given to OP). Upvotes must be used exclusively with cowboy credits (acquired from SN General Store Auction House, in a free market negociation) or simply 1 to 1 trade. Yes this could create the shitcoin "cowboy credit" but it doesn't matter, is used strictly inside SN, as in a game, not in real world as money.\nSo the zaps with real sats should be a separate thing, next to upvote button, where, yes the stacker will use his own sats from an external wallet. No problem for that. It can be created a system that based on teh amount of sats, will get also a ranking score, but will not affect the upvotes number. If the stacker want to upvote with more CCs, so be it, are his credits. But after a certain number let's say 100 will not have any value anymore, for limiting brigadeering and cheating.\nIn this way will be a clear separation and a clear view for all new users. Complicating things with external wallets and scores will make it even harder to work for clueless nocoiners.\n- CCs could be traded OUTSIDE SN, as I propsed here: https://stacker.news/items/723069 And that will not affect in any way SN. is just an external trade where stackers could use Robosats or any other system with escrow service, or simply using their own trust with other stacker. CCs are sent as direct deposits into other SN account, inside SN or simply zapping a post. Or maybe SN will make a special "delivery" system like in World of Warcraft game.\n- I also proposed to SN devs [a system of badges](https://github.com/stackernews/stacker.news/issues/1427) that can be used for this. these badges could be for all kind of things and acquired only with CCs.\n- I proposed also another [type of posts: Quiz](https://github.com/stackernews/stacker.news/issues/1294) that could bring more games inside SN and rewards. The OP could put in the game a x amount of CC or real sats (paid p2p).\n- Make SN a real PAY TO POST game, not a "assmilk as much as you can" game. MAKE THEM PAY DAMN IT! Only like that will appreciate the sats. many will say that this is not good and I should STFU. Who said that only wants YOUR SATS. Remember that. I do not want your valuable sats, I want you to realize how scare they are. When you will get 1000 from me, you should be happy, because that is a lot of money. And please do not think in their conversion in USD or any other bullshit fiat. Think in their scarcity. That's the true value of sats. Read more here: https://fee.org/articles/what-gave-bitcoin-its-value/\n- The leaderboard should be removed TOTALLY. Is only misleading and deceveing stackers, creating a false impression of "earning sats". We are not here to earn sats. We are here to exchange information, news, guides, knowledge. If somebody is asking a question, I start by upvoting that question if is interesting. Then in return, if I gave a good answer I can get sats (separately from the upvotes) only as appreciation of my words/ advice. That should be encouraged here, not shitposting, spam, meaningless comments and links etc. Again: MAKE THEM PAY IF THEY WANT TO SAY SOMETHING. Only like that you will see good content¡, when it cost them money.\n\n## Darthcoin advice to stackers\nAfter all these years using SN, observing most of you, how you post, how you zap, what you say, what are your "opinions" etc, I took many notes and saved many of your posts in my personal bookmarks (in SN or separately in my browser bookmarks). I like to keep "receipts" for when the time will come... So I know more or less most of the stackers here and their behavior. Very few escape from my eye.\n- As I said in this post, the advice for new stackers coming to SN https://stacker.news/items/686524: don't do shitcoining! It's a sin and you are doing more damage to yourself than you can imagine.\n- Subscribe to those territories that really matters in your life. yes, SN is not all about Bitcoin, but Bitcoin should be your main focus right now. If is not... then HFSP. All the rest of the territories, mute them. You will have a much clean daily view of your SN main page. Don't get distracted byt all the bullshit posted on many territories. Do not think that posting on all territories no matter wgat you will get more sats. That's wrong and you only create NOISE, not good content.\n- Do not post your personal pictures, from your real life! Don't make this huge mistake. OK you can reveal some parts or aspects but do not give too many details, especially your face and real identity. [And here is a terrifying video that prove my words.](https://video.nostr.build/233808b107ffd96e681f097bd1300f247599c21cb2d834a20b3fa0c4b9960745.mp4) You have been warned.\n- Create a dedicated "identity" for your online presence. Keep your private life in private. In public be somebody else. And FFS please [read this important work](https://livingintheprivate.blogspot.com/) that explain what is private and what is public very well. Privacy it doesn't mean you should use many tools to hide your real private life, but it means to NOT use your private life in the public realm. ANYTHING that is online on internet is PUBLIC. Remember that.\n\nAnd yeah, I know that many will not like what I say, they even hate me, but you know what? Shoot me as you like, but in the end I am the one that get your sats, like in this meme:\n\n[![Darth-Solo-BTC.gif](https://i.postimg.cc/3wkcwyf0/Darth-Solo-BTC.gif)](https://postimg.cc/4KT5L3gX)\n\n### Posting on SN\nI would not says that my posting strategies are the best ones, but you could learn from them. So how I post on SN nowadays? I've changed many times my strategies, adapting to new features and content. That doesn't mean in the future I will nto change it again. Depends. But these methods could create a good ranking for your SN account. Ranking that is not mainly focused on "earning rewards" but to have a heavy importance when you vote something.\n- make at least one post per month\n- always answer to the comments to your posts, but only if is something interesting and necessary, not just "thanks" or something like that. Do not waste your sats/CCs just for a meaningless answer. You could just upvote a comment for that, as a "thanks". Remember each comment cost, but that cost it doesn't go to the commenter, but to SN pool. If you really want to thank the commenter, better just zap it. Reply only if you really have to add something or engage / start a new discussion.\n- post daily something in the SN saloon. Ok, we see there a lot of garbage, meaningless posts, but many of them are interesting memes, quotes, Lux pills, random thoughts or simply questions that do not deserve a main post. Somebody will answer your question. I always try to help there if there are interesting questions.\n- focus on what you say not on how much you say...\n- pay attention to others words, sometimes you coukd find hidden clues.\n- don't spam the territories with meaningless links that you don't even open and read them, you just share them because you saw them in other forums or groups. Select very caerfuly what you post. Remember: YOU PAY TO POST! If you post a link of a video, document, article, guide etc, at least put some words attached to that link. You have that option in SN post, damn it. How much time cost you to put your own words about what you share and show your opinion or vision about what you post. In that way people could interpret it correctly your intentions and also engaging with you in a discussion. Discussing create good content.\n- If you post a video/ document link created by somebody else and they are on SN, please search them first and FORWARD the sats to them. Or at least a % of them if you really want a part for you. is their content, not yours and they deserve it. Don't be a leech.\n- Don't censor yourself. Be outloud, speak what you think and don't give a fuck. Damn it, YOU PAID TO SPEAK / POST.\n- Do not have heroes on SN. Not even me, do not follow me (only pay attention to my words). Heroes are a false impression and will always deceive you. Don't do blindly what I (or others) say, but pass that information I gave you (or others) through your own brain and filter it for your own needs. I see many idiots here, blindly following Saylor and many other influencers. Guys, do you have brains? USE those brains for yourself. Stop being a sheep.\n\nNot sure how the zapping will be after 5th of Nov... but here is how I used to zap now:\n- I open SN in the morning, taking a coffee and read all the previous replies. Some of them I will zap. Some don't.\n- then I read the latest, from "recent". I zap few sats to those that are interesting and I need to come back reading more and see the comments. Is like my personal mark. later I can zap more if is necessary. In this way I will not reveal my zapping habits to a post and do not influence the habits of others. If I zap 1k sats and then comment, the OP will know that it was me zapping the 1k sats. And I do not want that to be known. I zap few, as a reminder, then I came back and zap more. Sometimes even after days. This will not show exactly how much you spend / earn in the leaderboard, it will create only confusion about your habits. Are many that are looking to these habits. That's why I sustain that the leaderboard and personal stats should disappear. We can replace them with some badges, based on the amount of posts/items and upvotes/downvotes we've done. But that is another story.\n- then if I finish to read all the recent (I have like 50% of territories muted so I do not see those) I go to "random" that will show some old posts too. Some of them that I missed. So I go and zap those if are interesting.\n- Zap wisely ! I will repeat this pver and over until more people will get it. This is not a joke. This doesn't mean you should not zap at all. NOOOO, but zap only those posts and comments that really deserve your zaps. V4V (value for value) is really important on SN. If I gave you a good advice that save you time and trouble, then you can came back to my post and zap it. You don't even have to reply to it, only if you really have something to add or ask. \n- Please don't zap me just beacause I replied to you with a funny meme. Yes sometimes my memes are quite deep and say more than just the image. But many times people are posting memesjsut for the sake of getting some sats, and even bad memes. Don't let you dragged by that. Also you don't have to zap me for each reply I gave to you even that I say almost nothing. Oh yes, I replied with something useful, ok you can zap it for more visibility and appreciation. \n- Not all replies deserve to be zapped. Be aware, some people will reply only to assmilk you sats.\n- Reciprocity in zapping it doesn't make sense. Don't zap only because the other stacker was zapping you. Zap because they gave you something in return, V4V.\n\nOK, I think is too much already. Maybe I missed something, but is too late now and this post is getting longer than I expect it.\nDon't forget to read all my guides that I migrated from Substack to [Github](https://darth-coin.github.io/), organizing them by category and language. Some of them I still have to migrate but you will find all the links there. Reading my guides, will save you time and trouble.\n\nAnd... who knows? Maybe I am from the future... trying to tell you something (but not all).\n\n[![DeathStar-FED.gif](https://i.postimg.cc/yxn28jbh/DeathStar-FED.gif)](https://postimg.cc/tnZBr3y7)\n\nI will close this long post with a warm salute for all stackers:\n\n[![Bitcoin-Star-Wars.jpg](https://i.postimg.cc/XqQCkhq6/Bitcoin-Star-Wars.jpg)](https://postimg.cc/SYYRygcg)\n*see you on the other side...* \N 16124 \N 456948 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.22302467828585 0 \N \N f 0 \N 0 125813482 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404392 2025-02-15 20:49:16.222 2025-03-29 22:39:46.785 Gold "hoarders" were persecuted in the 1930's, what will happen with bitcoin? \n# Introduction - History doesn't repeat itself, but it may rhyme. \n\nExecutive Order 6102 was signed on April 5th, 1933 by President Roosevelt in the United States. This order made it mostly illegal to own gold. It's interesting, and I think instructive, to see what was being published in newspapers at this time. So I did some research, and compiled some of what I found. This is not an exhaustive search by a historian, just me poking around for a while, going down a few rabbit holes. \n\nBefore this executive order was signed, most mentions of gold "hoarding" referred to countries. France, in particular, was a "hoarder" of gold. \nFrance Hoards Gold; Sees War\nMetal Piles Up in Vaults Despite Warning That Commerce Is Menaced.\nhttps://books.google.com/books?id=R9FGAAAAIBAJ&pg=PA4&dq=gold+hoarding&article_id=3194,738980&hl=en&sa=X#v=onepage&q=gold%20hoarding\n\nBut after executive order 6102, it wasn't countries like France that were being called hoarders. It was US citizens, who wanted to keep their gold coins. And by and large, in what I've found there was almost 100% complete approval of the order, and condemnation of those who defied it. That was shocking. I didn't find editorials or anything in newspapers saying that this was an unjustified expansion of government authority. Maybe it's the word "emergency" that was thrown around so much, that clouded people's minds.\n\nAlso surprising is the way words are redefined, and the good is twisted into the bad. Instead of praise for a thrifty person who saves in the best money available, these people were labeled "gold hoarders", and accused of "contributing to the current crisis" (in other words, the Depression).\n\nHere's some extracts from newspapers and magazines of the era. \n\n# Hoarders of Gold Warned to Deposit It By Monday - Feb 27, 1933 \nGazette and Bulletin \n\nThe federal government is going after the gold hoarder.\nIt plans to compel them to return the gold which they took out of the nation's banks in the series of gold raids which, together with foreign gold raids, precipitated the nation-wide banking crisis.\nThe gold raiders have been given until March 11—next Monday—to come forward voluntarily and return to the bank the hoarded yellow metal. Unless they do so, Uncle Bam will take such steps as are available under the Federal Trading With The Enemy Act to make the gold hoarders behave. \n\nhttps://books.google.com/books?id=9II7AAAAIBAJ&pg=PA57&dq=gold+hoarders&article_id=5685,1587059&hl=en&sa=X&ved=2ahUKEwiM9cjh59-BAxVCIEQIHQkXBZ0Q6AF6BAgIEAI#v=onepage&q=gold%20hoarders&f=false\n\n# Government plans to publish names of gold hoarders - March 9, 1933\nVictoria Advocate (Victoria, Texas)\n\nPublication of the names of the principal gold hoarders in the United States was discussed in New York banking circles as a means of lifting the present so-called “Midas moratorium."\nIt is known that since 1915 the Federal Reserve Bank here has been recording the names of persons who withdrew gold in any sizeable amounts. Through cooperation of the banks, the government, therefore, is in possession of all the facts and figures pertaining to the huge quantities coins and metal now reposing in the vaults of the country. In some quarters it has been suggested a progressive tax on sequestered gold be imposed. \nhttps://books.google.com/books?id=eGtTAAAAIBAJ&pg=PA3&dq=Publication+of+the+names+of+the+principal+gold+hoarders+victoria+advocate&article_id=6612,1482449&hl=en&sa=X&ved=2ahUKEwjLueXk-t-BAxVrJkQIHZyvDGkQ6AF6BAgMEAI#v=onepage&q=Publication%20of%20the%20names%20of%20the%20principal%20gold%20hoarders%20victoria%20advocate&f=false\n\n# Yellow Metal Flowing Back to Coffers of Nation - March 10, 1933\nLewiston Morning Tribune \n\nSome Are Depositing it, Others Take Bank Currency In Return For Their Contribution to Nation's Safety.\nGolden treasures, after playing truant on a hoarding holiday, crept back to the secure vaults of the federal reserve bank here today. Beginning Monday, it was unofficially estimated that close to $50,000.000 in gold coin and gold certificates had been received by the central bank from member institutions or persons, either conscience-stricken or fearing public exposure and confiscatory taxation, who felt that paper currency was the safer.\nhttps://books.google.com/books?id=uaBfAAAAIBAJ&pg=PA2&dq=gold+hoarders&article_id=1410,3369832&hl=en&sa=X&ved=2ahUKEwiEidSz5t-BAxV1I0QIHVc2AggQ6AF6BAgLEAI#v=onepage&q=gold%20hoarders&f=true\n\n# Federal Reserve Widens Hunt for Hoarders; Asks Names in Gold Withdrawals for 2 Years - March 10, 1933 \nNew York Times\nWASHINGTON, March 9.—In. its effort to learn the identity of the gold hoarders of the country, the Federal Reserve Board today broadened the scope of its order for reports from member banks to cover withdrawals of gold in the past two years. Originally the board's order to the Reserve banks and their members, issued last night, asked for a report only on payments of gold by Reserve and member banks after Feb. 1 and ordering its return by March 13.\nThe use to be made of the names of hoarders to be obtained in this report has not been disclosed, but the compilation will put Federal officials in a position either to make public the names or use them for more drastic action.\nUnder President Roosevelt's proclamation, the withdrawal of gold for hoarding or other purposes was prohibited. Before the issuance of the President's proclamation, however, millions of dollars worth of gold was withdrawn and is now in private hoarding. Some officials have suggested that a tax be imposed on hoarded gold.\nWhatever use the Reserve Board intends to make of the names of gold hoarders, the primary desire of the new administration is to force as much gold as possible out of hoarding and back into the vaults of the Federal Reserve System. The orders issued yesterday and today are expected to have this effect and it is believed that the fear of publicity will drive considerable gold out of safe deposit boxes and other places of concealment.\nhttps://www.nytimes.com/1933/03/10/archives/federal-reserve-widens-hunt-for-hoarders-asks-names-in-gold.html\n\n# America : A Catholic Review of the Week 1933-03-25\n(This is the only article I found that had the slightest whiff of skepticism about the executive order)\n\nIn itself gold hoarding is neither necessarily wrong, morally, nor was it illegal before March 9. It may at times serve a useful purpose, and we quite agree with R. W. Robey, financial editor of the New York Evening Post, that it should not be permanently forbidden. As Mr. Robey observes, the right of the public to withdraw its money from the banks to keep it under the hearthstone, is one way, and a most effective way, of warning the Government and the banks that unsafe and corrupt banking practices must be stopped. But people will not hoard gold, or any kind of currency, when they know that their money is not being risked on wild-cat financial schemes. No doubt, the banking reorganization proposed by Mr. Roosevelt is absolutely necessary. It ought to be adopted for the simple reason that good banking laws, fearlessly enforced, create banks on which the public can rely, and so sustain that public confidence which is of far more importance to the banks and to all financial agencies than money.\nhttps://archive.org/details/sim_america_1933-03-25_48_25/page/590/mode/2up?q=%22gold+hoarding%22\n\n# Start On Trail Of Hidden Gold - June 6, 1933\nSt Joseph Gazette\nNames of 1000 suspected hoarders turned over to U.S. Agents\nThe names of more than 1,000 persons suspected of gold hoarding were put into the hands of department of Justice agents tonight with orders to ferret them out and find out where their gold is being stored. \nAttorney General Cummings today gave the agents the names of 1000 persons the department believes have more gold than the $100 limit set by President Roosevelt. "I think that those people who are holding their gold against their government are falling in their patriotic duly." the attorney general said. "If there is anything needed at this time to return our country to a condition of prosperity it is the wholehearted co-operation of the people with the efforts of the administration.\nhttps://books.google.com/books?id=WJpeAAAAIBAJ&pg=PA9&dq=gold+hoarding&article_id=1450,4554095&hl=en&sa=X&ved=2ahUKEwj927SZk9CBAxXALEQIHSNECXwQ6AF6BAgNEAI#v=onepage&q=gold%20hoarding&f=false\n\n# GOLD: The first steps to be taken against the gold hoarders will be equivalent to a slap on the wrist - June 12, 1933\nThe Times Daily (Florence, Alabama, US), June 12 1933\n\nGOLD: The first steps to be taken against the gold hoarders will be equivalent to a slap on the wrist. The hoarding brethren will be asked whether they have the gold and won't they please give it back. If the government hopes to avoid a showdown by this system it is in for a disappointment. \nThe fact is that several large hoarders actually believe they have the government on the run. They claim they will battle any legal action right up to the supreme court, on constitutional grounds. They may change their minds if the public reaction the the publication of their names - which is probably within a month - is sufficiently sharp.\n\nhttps://books.google.com/books?id=_ggsAAAAIBAJ&pg=PA2&dq=hidden+gold+first+facts+hoarding&article_id=4111,4238891&hl=en&sa=X&ved=2ahUKEwiNt9voltCBAxULH0QIHeJGAy44ChDoAXoECAUQAg#v=onepage&q=hidden%20gold%20first%20facts%20hoarding&f=false \n\nThis same article was printed in MULTIPLE other newspapers, all around this date.\nhttps://www.google.com/search?q=slap+on+the+wrist+gold&sca_esv=569475139&biw=1280&bih=581&source=lnt&tbs=bkt%3As%2Ccdr%3A1%2Ccd_min%3A1933%2Ccd_max%3A1933&tbm=bks\n\n# PROSECUTION IS SEEN FOR HOARDERS OF GOLD June 20, 1933\nThe Atlanta Constitution \n\nRefusal of 183 persons to return $1,148,945 of gold and gold certificates to the government today gave rise to indication that the department of justice shortly would begin prosecution of one or more of them. \nThe department announced that its agents, in interviewing persons known to have withdrawn gold prior to the nation-wide bank holiday of last march had found nearly 200 who had turned down a formal request to turn in the metal.\n\nPreviously Attorney-General Cummings had stated that in contacting persons suspected of hoarding gold his agents were directed first to call their attention to the law requiring the metal to be turned over to the government and then to ask that the law be obeyed. He declared that when the time came to prosecute he did not want the person charged with gold hoarding to claim ignorance of the law. \n\nAlthough there was no official statement today that prosecution of the hoarders was imminent, Cummings and Secretary Woodin previously had said an example would be made of persons deliberately holding gold to the harm of their country. \n\nThe statement by the department today said that 3,011 persons had been interviewed and 160 of them had returned $285,894 of gold or gold certificates at the request of the federal agents. It added that 2,668 persons reported they had returned $19,591,467 of gold since the president barred its use as currency in this country. \n\nThe agents have verified the return of $14,838,408 by 1,763 persons, but have not completed checking the stories told by 905 persons who are supposed to have held back $4,753,065. \n\nhttps://archive.org/details/per_atlanta-constitution_1933-06-20_66_7/page/n3/mode/2up?q=%22gold+hoarding%22\n\n# HOLDER OF $120,000 IN GOLD DEFIES U.S. - Jun 21, 1933\n\nReading Eagle \nPhiladelphia, June 21 President Roosevelt and the United States government have been openly defied by a Philadelphia gold hoarder, described by federal investigators as a “textile manufacturer, whose name may be disclosed later.”\nThe manufacturer is supposed to have $120,000 in gold coins cached in safety deposit boxes. Agents for the United States Bureau of Investigation interviewed the gold owner yesterday. They explained all gold must be turned into the United States Treasury under a Presidential decree. But they reported back to headquarters that the threat of “pitiless publicity for hoarders” left the manufacturer unmoved. The agents said they would await further orders from Attorney General Homer S. Cummings.\n\nhttps://books.google.com/books?id=fCAxAAAAIBAJ&pg=PA3&dq=gold+1933+roosevelt+safety+deposit+box&article_id=2500,3294875&hl=en&sa=X&ved=2ahUKEwj0jaLl4MaBAxWTCjQIHU82DeIQ6AF6BAgFEAI#v=onepage&q=gold%201933%20roosevelt%20safety%20deposit%20box&f=false\n\n(is this story true? who knows)\nHOARDER RETURNS $120,000 IN GOLD - Jun 23, 1933\nWarsaw Union\nPhiladelphia, June 23. This city’s largest known gold hoarder, described by federal investigators as “a wealthy textile manufacturer,” on Thursday turned back $120,000 in gold coins to a bank. Agents for the United States Department of Justice disclosed the action after threatening to reveal the hoarder’s name.\nhttps://books.google.com/books?id=z0pHAAAAIBAJ&pg=PA2&dq=textile+manufacturer+gold+hoarder&article_id=5593,7491086&hl=en&sa=X&ved=2ahUKEwiC4YSbtN-BAxUYPUQIHbcJBKYQ6AF6BAgFEAI#v=onepage&q=textile%20manufacturer%20gold%20hoarder&f=false\n\n# The Daily Washington Merry-Go-Round - As To Hoarding - 1933-06-30\nSt. Louis Post-Dispatch \n\nCONFIDENTIALLY, the Government is in no hurry for a court fight on the anti-gold hoarding legislation. It is going to exhaust every resource of “moral persuasion” before it resorts to actual legal proceedings against offenders. For two reasons: First, there is serious doubt among Department of Justice attorneys as to the constitutionality of the act. They are confident that on the plea of patriotism they can obtain a jury conviction. But they are extremely dubious as to the attitude of the higher courts. \nSecond, the Government has no means of forcing the disgorging of hoarded gold, even should it secure final conviction. The Government cannot forcibly take away gold. It can send the culprit to jail, and fine him. But beyond that it can not go. \nThese actualities explain why no court action has yet been instituted, and why none is likely to be in the near future. The Government’s policy is to bring pressure to bear by publicity and to try to compel voluntary disgorging. The next step in this strategy will be the publication of the names of recalcitrant hoarders. \n\nhttps://archive.org/details/per_st-louis-post-dispatch_1933-06-30_85_298/page/n23/mode/2up?q=%22gold+hoarding%22\n\n# Laughs, Tears and Whispers as Uncle Sam's sleuths Chased It : Hidden Gold - First Facts on how they found it in Vaults, Mattresses and Socks - Aug 5, 1933\nThe Spokesman-Review \n\nIn One Slum Flat on New York's Lower East Side, an Agent Confronted a Woman Who, in Spite of Her Tattered Appearance, Finally Revealed $2,000 in Gold Under A Mattress!\n\nOne "Embarrassing Moment" When a Federal Agent Seeking Gold Hoard, Interviewed a Woman Whose Husband Didn't Know She Had $1,200 Hidden. She Begged For Secrecy - the Agent Consented.\n\nhttps://books.google.com/books?id=J3VWAAAAIBAJ&pg=PA26&dq=%22gold+hoarding%22&article_id=6604,1194416&hl=en&sa=X&ved=2ahUKEwiIxuSdssiBAxVbO0QIHWVZDt0Q6AF6BAhiEAI#v=onepage&q=%22gold%20hoarding%22&f=false\n\n# Where Is That Gold? Says Uncle Sam: Criminal Prosecution of Hoarders Is About to Be Started By The Department Of Justice - Sep 23, 1933\nThe Deseret News \n\n"One hoarder finally surrendered to the persistent questioning of a Justice Department agent and removed $500 in gold from an old grandfather’s clock for bank deposit"\n\nhttps://books.google.com/books?id=3KVOAAAAIBAJ&pg=PA11&dq=%22gold+hoarding%22&article_id=6353,3629114&hl=en&sa=X&ved=2ahUKEwiIxuSdssiBAxVbO0QIHWVZDt0Q6AF6BAhbEAI#v=onepage&q=%22gold%20hoarding%22&f=false\n\nThe same exact article shows up in another newspaper as well, and probably more. Here's another, from the St Joseph Gazette, St. Joseph, Missouri\nhttps://books.google.com/books?id=LuJbAAAAIBAJ&pg=PA25&dq=%22gold+hoarding%22&article_id=1903,4275759&hl=en&sa=X&ved=2ahUKEwiIxuSdssiBAxVbO0QIHWVZDt0Q6AF6BAhjEAI#v=onepage&q=%22gold%20hoarding%22&f=false\n\n# Indicted as gold hoarder, attorney attacks order - September 27, 1933\nReading Eagle, Reading Pennsylvania\nFrederic Barber Campbell, attorney, who filed suit to test the constitutionality of President Roosevelt's orders against gold hoarding, was indicted by a federal grand jury on a charge of hoarding gold. Federal authorities here said that the indictment today made him the first defendant in a prosecution involving the gold hoarding act and executive order. The indictment charged him with hoarding gold in violation of an act of Congress and the executive order of the President of Aug. 28, last.\nhttps://books.google.com/books?id=3G8hAAAAIBAJ&pg=PA1&dq=%22gold+hoarding%22&article_id=2342,4229106&hl=en&sa=X&ved=2ahUKEwiIxuSdssiBAxVbO0QIHWVZDt0Q6AF6BAgHEAI\n\n# Gold Hoarders, Caught in Government Trap, Find Selves on Spot Oct 8, 1933\nThe Pittsburgh Press\n\nThe fellow who had a hoard of gold and refused to turn it back to the Treasury thought he had a good joke on his helpless old Uncle Sam. While people with tender consciences were rushing back their hoards, both great and small, there were a few hard-boiled ones who thumbed derisive noses at the government and said, “come and get it if you can.” \nWhen nothing happened, neither seizure nor prosecution, people began to ask if the government had the right to take away the gold a citizen owned: if in the end there was anything the government could do about it. Was the hoarder just having a good joke on Uncle Sam after all? \nNow it appears that since last spring, instead of being embarrassed, Uncle Sam has just been feigning embarrassment, while he was cunningly reeling out enough rope to the hoarder for the latter to hang himself. An examination of the executive orders signed by President Roosevelt Aug. 28 and 29 would indicate that Uncle Sam is now set\n\nhttps://books.google.com/books?id=hyQbAAAAIBAJ&pg=PA3&dq=gold+hoarding&article_id=4246,1546037&hl=en&sa=X&ved=2ahUKEwiP86SOpt-BAxX_IkQIHUHWDAwQ6AF6BAgEEAI#v=onepage&q=gold%20hoarding&f=false\n\n# Woman in Gold Hoarding Freed, Case Dismissed on Return of Metal to Trade. October 28, 1933\nThe Washington Post \nWoman in Gold Hoarding Freed, Case Dismissed on Return of Metal to Trade. \nUnited States Commissioner Samuel F. Collins today dismissed charges of gold hoarding against Mrs. Effie L. Martin, accused of withholding $85,000 in gold and gold certificates. \n“After conferring with the Attorney General in Washington and United States Attorneys Pierson Hall and H. H. McPike, it appears this complaint has served its purpose and the hoarded gold has been restored to the channels of trade,” said Jack L. Powell, assistant United States attorney, moving for dismissal.\nhttps://archive.org/details/per_washington-post_1933-10-28_20953/page/n7/mode/2up?q=%22gold+hoarding%22\n\n# Progress Claimed Against Hoarders - November 24, 1933\n$428,000 Gold Given Up; 9 Indictments Pending. \nThe Washington Post\n\nProgress in the Government's drive against gold hoarding was reported yesterday when Attorney General Homer Cummings said there were nine indictments pending against known hoarders and $39,329,573 had been turned in to the Treasury. \nBetween September 28 and November 22, approximately $428,000 in gold. or -certificates was surrendered. A total of $240,130 has been turned in since prosecutions started. \nFive pending indictments are in New York. Two are in New Jersey and two in Massachusetts. Twelve complaints have been filed in California, Wisconsin and Oklahoma. The exact amount of gold still outstanding is not known, Cummings said. \n\nhttps://archive.org/details/per_washington-post_1933-11-24_20980/page/n5/mode/2up?q=%22gold+hoarding%22&view=theater\n\n# Shreveporter Refuses to Tell Where $2,500 in Coin Is Hidden - March 28, 1934\nHope Star (1934-03-28) (Hope, Arkansas)\nShreveporter Refuses to Tell Where $2,500 in Coin Is Hidden \nShreveport's first arrest for alleged gold hoarding, and one of the few thus far in the nation, was made here Tuesday when a deputy United States marshal served a warrant on Mrs. Mary Blanchard, charging her with hoarding $2.500 in gold coin. Mrs. Blanchard, wife of A. G. Blanchard. oil appliance dealer, appeared two hours later in the office of United States Commissioner T. Overton Brooks and arranged $3.000 bond. The temporary bond is returnable.\nhttps://archive.org/details/hope-star-1934-03-28?q=%22gold+hoarding%22 \n\n# Welcome Death Comes at Last To Colorful Colorado Leader - June 25, 1934\nThe Atlanta Constitution \n\nCharles S. Thomas, 84, who capped a stormy career as United States senator and governor of Colorado by defying President Roosevelt’s 1933 order against gold hoarding, died today. Thomas’ life had been ebbing for weeks, and many times he had ex- pressed his willingness to die. Once he pushed away a meal set before him by his daughter, Miss Edith Thomas, and said: “Why should I eat? I am ready to die.” \nThough a democrat all his life, Thomas frequently clashed with leaders of his party. He termed “undemocratic” the powers given Franklin D. Roosevelt as president and in the Wilson administration opposed the United States’ participation in the League of Nations and Versailles treaty. \nHe had retired from active political life last year when the president in 1871 called for the surrender of gold to the treasury, in connection with the national banking crisis. Thomas acquired more gold than the law allowed, and defied the government to seize his “hoard” of $120. “I have qualified for the penitentiary and am at your service,” he wrote the prosecuting authorities. His “hoard” was ignored, but later his daughter was indicted for gold hoarding, and Thomas announced he would help defend her on the ground that the order deprived citizens of their property without due process of law, and therefore was unconstitutional. This case is pending. \nhttps://archive.org/details/per_atlanta-constitution_1934-06-25_67_13/page/5/mode/2up?q=%22gold+hoarding%22\n\n\n# Conclusions and takeaways\n\nIt's interesting to speculate about what may happen to bitcoin owners in the future, based on what happened to gold owners in the past. Here's a few ideas.\n\nThere may be a time in the future where we will be required to register bitcoin ownership, especially "unhosted wallets" (i.e. bitcoin not on an exchange). Likely we will also be requested to provide public keys for all bitcoin we own. \n\nTerminology will be changed. "Self Custody" isn't the word that will be used, because it sounds positive. They'll go for something like unhosted wallet, as we've already seen in the EU. Self custody may be illegal.\n\n"Making an example" of people will be a big thing.\n\n"It's an Emergency" will also be big. We've already seen that word "emergency" tossed around, it excuses any and all government overreach for many people.\n\nPeople are very susceptible to propaganda. As mentioned in the intro, I was very surprised that I didn't find articles and editorials condemning this government action. \n\nI did NOT see any articles about people actually being imprisoned over gold ownership. That doesn't mean it didn't happen, but I didn't find anything in the newspapers of that era. \n\nMy biggest take-away here is this: **Privacy and non-KYC bitcoin is more important than you think**.\n\nThoughts?\n \N 749 \N 404392 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 9.76500506253039 0 \N \N f 0 \N 0 6020074 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2558 2022-10-15 09:58:17.408 2025-03-29 22:39:46.785 _Broken Money_ book club, part 4 It's time to break the back of the longest section of Lyn Alden's book Broken Money, full of giant macro vibes and monetary and political intrigue.\n\nWe've done this before ([part 1](https://stacker.news/items/300775), [part 2](https://stacker.news/items/287069), [part 3](https://stacker.news/items/300775)) and this should have the same vibe -- I'll stir the drink a bit with some high-level comments inspired by these sections of the book, but you should feel free to comment in whatever way your heart moves you. Seriously, jump in! You may have focused on different things. Your curiosity might have been piqued by something mine wasn't.\n\nCaveat: I'm just some guy. These are just some thoughts. If I've said something obviously stupid, push back. (But be nice.)\n\nLet's do it, @k00b, @carlosfandango, @satscats, @ekzyis, @q, @lawndough, @0fje0, @OsomSala49491, @fred, @BTCMagician, @Undisciplined, @siggy47, @SpaceHodler, @cryptosensei, @scottathan, @Bullen, @mallardshead, @davidw, @antic. \N 10291 \N 2558 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4694708816647 0 \N \N f 0 \N 0 32664 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441762 2025-03-18 09:23:14.267 2025-03-29 22:39:46.785 Maybe All you Need is to Ask - Do you Accept Bitcoin? ⚡️ I recently mentioned my fun experience of orange pilling one restaurant to accept BTC because I didn't have enough cash with me; the owner said I could pay next time, but I'm a bit annoyed by all the time being wasted to exchange for local fiat, so I asked do you accept Bitcoin? And everything happened next all started with this simple ASK.\n\nHe was quite uninterested at first, maybe don't want to have unnecessary work, then I said, but it takes less than 1 minute to create a Bitcoin wallet, it's really simple! And with all the inflation now, accepting Bitcoin is way better, he then started to be curious ( some background story: this happened in Turkey, one of the places having high inflation ) \n\nHe then asked if I should use Binance? I said no, no need, all you need is to download [Blue Wallet](https://bluewallet.io/). I showed him how to create a new wallet, and he needed to write down the seed words to keep it somewhere safe; I then showed him how to send and receive, but the lesson learned from here is that starting with LN is better when pilling restaurants or cafes.\n\nI decided to go there again for lunch and show the owner how to use LN; I didn't want to confuse him with all the on-chain and LN, custodial or non-custodial wallets, so to keep things simple, I asked him to download [Wallet of Satoshi](https://www.walletofsatoshi.com/).\n\n1. First test: I sent 10 sats to his newly downloaded wallet to show him how much faster LN is.\n2. Second transaction: I showed him how he can change the setting to display TRY to smooth the charge and paid my lunch; I can tell he's impressed by how simple things can be.\n\nhttps://gcdnb.pbrd.co/images/w4lwA3Okx5v3.jpg?o=1\n\nI then showed him **different ways to accept payment from customers over LN**: \n\n- Click receive and input the amount, then show a QR code - good for those in-person paying.\n- Click receive and input the amount, then copy an invoice - good for those ordering online.\n- Use an LN address, which is like a bank account - good for the repeated customers.\n\n\n**Some Details Might Help Onboarding Businesses**\n\n- Help the owners set the local currency displayed to smooth the charge\n- Keep it SIMPLE, overwhelming is not a good way to start\n- Start with BTC over LN is better when orange pilling restaurants or cafes\n\n**Takeaways**\n\n1. Be the change, you don't need to wait for the whole world to start accepting BTC, all you need is people or businesses around you to start to accept it; you definitely don't need BlackRock or some companies to come in and say it's cool to use Bitcoin; NO, just use it, if two people consent that using Bitcoin as their value exchange, that it's enough.\n\n2. Do not expect others to do the work for you, the whole point with BTC is back to peer-to-peer, any third parties should add extra value if they want to be part of the trade.\n\n3. Find places that accept BTC in [BTC map](https://btcmap.org/) and supporting them is nice, but isn't it better if you can orange pill the places you eat or go all the time?\n\n4. People trust people around them more than the so-called influencers; funny enough, it all starts with you and me. How about a new fun for everyone? Go to your go-to places and pretend you don't have enough cash to pay, creating a chance for businesses to experiment with magic internet money ⚡️\n\nImagining more people started asking if they could pay in Bitcoin, business owners would eventually be smart enough to add it as a payment method! \N 12516 \N 441762 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.86658514137244 0 \N \N f 0 \N 0 80049403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430700 2025-03-09 11:54:26.621 2025-03-29 22:39:46.785 The ZEUS v0.8.0 - LN Node in your Pocket 📱⚡️ I tested ZEUS v0.8.0 yesterday: https://blog.zeusln.com/zeus-v0-8-0-open-beta/ as there isn't such a thing as the BEST LN wallet—only a better tool in different situations, so I want to understand what are the right use cases for it.\n\n#### ZEUS v0.8.0\n\n**Advantages**\n\n- Easy setup: download and almost good to go - it might take some time to syn\n- No need to figure out all the inbound and outbound liquidity\n- Users own their KEY!\n- With a Self-custodial lightning addresses\n- LSP offers more privacy as it doesn't expose the node's public key\n\n**Downsides**\n\n**There are quite some fees, but I guess you pay for the convenience.**\n\na. I did a few tests sending funds to the LN address during the syn process, which changed me by 50%, and here is the fee.\n\nhttps://gcdnb.pbrd.co/images/Ja9bUolzWVJC.png?o=1\n\nb. To redeem the zaps or receive payments, you then need to enable the LSP, and here is the setup fee, which is quite high, but then you only need to pay for the normal network fee once the channel is up and running.\n\nhttps://gcdnb.pbrd.co/images/DHoUitJPsCXZ.png?o=1\n\n##### **Here are the use cases I've found so far:**\n\n- For those who want to level up from the custodial LN wallets but do not ( want to ) run a node or have no time to learn about all the inbound and outbound liquidity\n- For current node runners who don't want to expose their node public key and don't want to use custodial LN wallets\n- Using the Self-custodial lightning addresses in Nostr or generally receiving tips in websites; **However, it only makes sense if you are getting zapped quite a significant amount.**\n\n- A good option for restaurants or cafes to level up from WOS or Blink, but the coming up non-custodial version of Blink may be better? as many essential features for running restaurants or cafes are still missing in it atm.\n\nAnd in my case, as a nomad, but I do have a home node at my base, and I'm using Blixt wallet as a backup, so I'm trying to understand what other fun with the ZEUS LN that I possibly missed? 👀\n\nhttps://imgprxy.stacker.news/vAR2UGLJBVVM2iSEDm4K_MCOiQ_qk7EAxjX7mlOckH4/rs:fit:2560:1440/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvN0w2TFI3ME4vemV1c19vcmFuZ2VfbWFuLmpwZw\n\nmeme from @DarthCoin \N 21033 \N 430700 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 18.3850784164447 0 \N \N f 754936715 \N 5 226358880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 413911 2025-02-23 14:25:29.087 2025-03-29 22:39:46.785 Introducing PlebTV: A Dedicated Platform for a New Era of TV https://www.youtube.com/watch?v=a8aZ9RcxlxQ\n\nThe Vision Behind PlebTV.\n\nWith PlebTV, we are taking a significant step toward safeguarding our content from the potential threats posed by AI and tech giants like Google, Microsoft, and Apple. PlebTV offers a flat-free, unlimited watching experience without ads, allowing viewers to immerse themselves in our extensive library of Bitcoin-focused content. Currently, we have over 258 titles available, with plans to import even more. We are still leveraging YouTube to host content, but we will soon™ begin moving to our own servers and offering alternative sign-in methods.\n\nOur TV platform also includes premium content leveraging the new Zaprite API, providing an enhanced experience for our audience who would rather pay in Bitcoin. We will begin adding more course content in the coming weeks and are striking deals with more individual content creators. We encourage you to reach out if you want to be featured on PlebTV. As we continue to iterate on the TV platform, we are also beginning our efforts in original content development, further rounding out our offerings. By launching PlebTV, we aim to build a robust platform where our branded content can live unimpeded by external influences. \n\nA New Era of TV.\n\nThis is an early release of PlebTV, but it marks a pivotal moment for PlebLab as we venture into the entertainment space. Envisioned over a year ago, we believe now is the right time to expand our reach and impact to a wider global audience. We have further plans to introduce something magical by early 2025. We are working hard everyday to get there sooner rather than later. Our vision for PlebTV is not just about preserving content but about rethinking the way media is delivered.\n\nThis one is for the Plebs.\n\nAt PlebLab, we aim to empower the next generation of Bitcoin builders, hackers, and startups. As a vibrant hackerspace and community accelerator in Austin, Texas, we are committed to fostering a community of developers, hackers, creatives, and open-source software and hardware builders. PlebLab provides a space where individuals can collaborate, elevate their skills, and transform seemingly impossible ideas into reality. We encourage all Bitcoin enthusiasts, developers, and content creators to join us on this exciting journey. Together, we can ensure that the voices and innovations within the Bitcoin community continue to flourish and inspire.\n\nTo learn more information about PlebTV or how to get involved, please visit https://PlebTV.com or contact us at hello[at]pleblab[dot]com https://www.pleblab.dev/blog-detail/pleblab-launches-plebtv-a-dedicated-platform-for-a-new-era-of-tv 13038 \N 413911 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 18.4644821864125 0 \N \N f 0 \N 0 62909828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404490 2025-02-15 23:09:19.32 2025-03-29 22:39:46.785 An experiment in kilo-zapping **What**: From 1/1 till the end of January, or until I run out of money (whichever happens first), I'm setting my default zap to 1k sats for content that I see in the course of my normal SN activity that adds value to the site.\n\n**Why**: To see what kind of difference one person (me) can make sending economic signals on SN, and what the economic consequences will be given SN's current rewards paradigm.\n\n**Context**: @ezkyis posted about [an experiment](https://stacker.news/items/369003) he's running, zapping until he's given all his sats away, and seeing how long he can stay alive. @WeAreAllSatoshi has been doing [something similar](https://stacker.news/items/358410) for a while now. Some time ago, @Undisciplined [posted about](https://stacker.news/items/287074) an experiment of auto-adjusting his zap amounts based on what he has in his wallet. @carlosfandango and I were discussing the feasibility of implementing a version of this operation.\n\n**Yeah, but why do you think this will do anything?** 1k sats is probably at least 20x what the median zap rate is, judging by the zaps I get. While this amount of money won't be significant to most people, the social signal that someone is appreciated by me should stand out quite clearly. And also, when I was doing the [book club](https://stacker.news/items/274195) series of posts, a couple of extremely generous people zapped me every time. That was really encouraging, so maybe this smaller but broader shotgun approach will encourage someone else.\n\n**What does "adds value" mean exactly?** They're my sats, so it means whatever I think adds value to SN. In particular, some of the things I particularly value include:\n\n- nuanced thought\n- interesting or novel perspectives\n- elegant or careful or beautiful writing\n- building on top of / adding value to other SN content via linking, composition, meta-commentary\n- caring for the SN community, or at least not being an arrogant and sancrimonious douchebag\n\n**I posted a hot take and didn't get a 1k zap. Wtf?** Either I didn't think your hot take added any particular value, or else I didn't see it. I'm not going to alter my SN consumption practicers (a 2024 goal is to be stingier with where I allocate my attention), so won't be searching to the ends of the earth to uncover every worthy SN post or comment. Some things will fall through the cracks.\n\n**Other details**: I'll do my best to report on how this is going, but I'm not very good at keeping track of shit, so the reporting won't be as good as one might wish for.\n\n**Other thoughts**: I'm having a bit of angst over my usual interaction paradigm, where I zap nearly every reply someone makes to me as a "thank you" to my conversation partner, unless I have some reason not to do that, or if the conversation gets really long. I'm worried that zapping 1k sats might bias me against this practice, and have a rebound effect in the opposite direction of what I want. Should I do a different amount for these kinds of zaps? Undecided about this.\n\n**RFC**: I'm deferring till 2024-01-01 in order to think this through a little more, which means that discussion / suggestions / thoughts are very welcome. \n\n**Call to action**: If you're reading this and are feeling an idea for an N=1 experiment stirring in your heart, do it! Or comment below, and we can think it through together.\n\n**Thanks**: Vielen dank to the dudes named above for the inspiration. \N 15180 \N 404490 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.3827570438921 0 \N \N f 0 \N 0 85779185 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417008 2025-02-26 01:42:53.812 2025-03-29 22:39:46.788 Stacker News For Writers Since I’m encouraging writers to post their original content on this territory, I wanted to explore whether or not Stacker News is actually a good environment for writers to post their work. Three areas I looked at were:\n\n1. Financial remuneration\n2. Publicity\n3. Control over content\n\n### Financial remuneration\n\nI have some familiarity with self publishing. I have friends who have tried various ways to make a name for themselves as writers and earn some income. By and large, these efforts have failed. After taking out fees for marketing, administration, binding, and other assorted necessary and useless services, the aspiring writer usually winds up losing money. There are occasional stories of someone hitting it big with Amazon sales, but big is a relative term. Even if there is some traction, Amazon is notorious for sucking up the lion’s share of any profits that may be made. \n\nI know that many writers who blog or write articles use Substack, so I looked into their earnings rules. The vast majority of writers on Substack do not earn much money. There are of course exceptions. There are stories of people who make a million dollars a year on Substack. There are also many writers who never earn much. Even if you do hit it big, the actual (fiat) dollars you wind up putting in your pocket might be less than you expect:\n\n> After the Substack fees (10%), Stripe fees (2-4%), and taxes, you're lucky to see half of what you think you will make (1,000 subs at $10 is closer to $5,000/month after fees and taxes).\n\nThe above quote was a tweet by Lenny Rachitsky.\n\nAs bitcoiners, of course, it also matters that in the above examples you are earning in ever devaluing fiat dollars. \n\nOn Stacker News, you earn bitcoin. The amount you earn is directly correlated to the perceived value your content provides to the reader. You will be paid accordingly. The feedback is immediate. Posts tend to lose visibility after a day or so, but I’m looking to change this by providing resources where writers can have their content showcased beyond that short time period. \n\nPosting is not free. Fees vary by territory. Right now this territory costs 10 sats to post.\n\nI shouldn’t have to explain this to anyone here, but being paid in bitcoin is a huge bonus. I started posting some long form content on Stacker News around a year or so ago. I saved some of those sats. The earnings from some of those posts are almost three times the value than if I had earned them today, if you measure these things by fiat standards. \n\nIt’s your decision, but given the choice, I would always prefer to be paid in bitcoin.\n\n### Publicity\n\nThere is no doubt that my territory cannot compete with Amazon, Substack, Medium and other platforms when it comes to reach and exposure. Stacker News is still young. Things will improve. Even now, though, you have the “big fish in the little pond” advantage. There is not a lot of competition yet. \n\n### Control Over Content\n\nI know content control is a big issue with many writers. Lots of people will only post their content on their self hosted sites for complete control. There are obviously trade offs when you use a platform. However, I think this idea of ownership and control often is beside the point f you are posting online. Regardless of your method, anyone can copy and paste your work once you put it out on the web. The way I see it, you might as well earn sats for it. To each his own.\n\n \n\n\n \N 17455 \N 417008 \N \N \N \N \N \N \N \N security \N ACTIVE \N 21.4501502191436 0 \N \N f 0 \N 0 91014131 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 206646 2024-07-28 00:52:53.599 2025-03-29 22:39:46.789 Value for Value News Journalism Discussion Using Entirely Bitcoin So the Bugle has been live for over a year, with a focus on being entirely community funded instead of taking gay sponsorship money which influences our journalism, as well as sets up our readers for rug pulls. It's been a really interesting experiment so far, and I'm convinced that there is a path forward to have a full fledged media company operate this way. \n\nThere are a few ways we generate money: \n1. direct donations on our site\n2. direct donations via Geyser \n3. Selling merchandise in person (Haven't been very consistent at this) \n4. Allowing people to point hashrate at our mining pool account \n5. Nostr Zaps\n6. Allowing readers to tip each article's author via LNURL at the bottom of each article\n7. Selling black market cigarettes at Bitcoin conferences \n\nThere are a few ways we could expand ways to earn sats from readers: \n1. Premium subscriptions \n2. Gamefy what articles are written next \n3. Migrate from ghost to a custom site with lightning payments integrated, maybe built on nostr \n4. Actually sell merchandise seriously \n5. Physical book sales\n6. etc there's probably a lot of ways we expand here \n7. Fountain podcasting stuff\n\nStacker has been a pretty consistent way to generate sats. When I post articles on here, I forward sats to the authors who wrote the content. In the future, I could see splitting percentages making more sense but I don't pay anyone who contributes so until that changes, I'll just give 100% of tips to authors. The lightning network is so slick for stuff like this. \n\nI think if you have a compelling mission, you can solicit donations. People have really gone out there way not only to send us sats, but also promote our content on their podcasts, at conferences, and word of mouth. \n\nThe Bugle's mission is to do a few things: \n1. Push back against and criticize the influencer circle jerk in Bitcoin related communities\n2. Promote freedom and human dignity\n3. Educate people on why smoking is good for you\n4. Earn Bitcoin in the process \n5. Open source new ways individuals can earn sats \n6. Be the best damn journalists in the business, free of corporate overlords \n7. Promote new communication channels and communities that further our goals. \n\nAnyways, just thought I would do a post here and see what happens. I'm really curious to see what ideas the community has on this topic. \N 9874 \N 206646 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 2.19070457579068 0 \N \N f 0 \N 0 159119279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 187625 2024-06-21 09:30:08.255 2025-03-29 22:39:46.789 Bitvm Crash Course by supertestnet - learn to build on bitvm through tic tac toe \N https://www.youtube.com/watch?v=_Met2lUO0P0 16289 \N 187625 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.1371394598371 0 \N \N f 0 \N 0 125177078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 198698 2024-07-12 08:47:02.779 2025-03-29 22:39:46.785 The Zen of Stacking Sats On Stacker News ## Portrait Of The Hodler As A Young Stoner\n\nIf you were an American teenager in the 1970s, you couldn't avoid being exposed to a lot of half baked spiritualism served up with a healthy(?) dose of hallucinogens, and I was no exception. In addition to Carlos Castaneda novels and The Electric Kool-Aid Acid Test by Tom Wolfe, most of us wound up reading Zen And The Art of Motorcycle Maintenance by Robert M Pirsig. The book captured the mood of the time: We all wanted to get high and live out our Kerouac On the Road fantasies, and the self sufficient minimalism was perfect for our post Easy Rider lifestyle. That was my introduction to Buddhism. \n\n![The Master](https://upload.wikimedia.org/wikipedia/commons/7/76/Keye_Luke_Master_Po_Kung_Fu.JPG)\n\nNow, I must say I don't consider myself a card carrying Buddhist. But let's face it. A real Buddhist would never carry a card. The point is, in the end I absorbed a few truths from guys like Pirsig. \n\nI'm sure you're wondering what the hell this has to do with Bitcoin in general, and Stacker News in particular. \n\nWell, let me try to explain...\n\n## I Wanna Be A Whale, Now!!\n\nI have seen many posts by beginners asking for advice on how to earn sats on this site. Some are blunt pleas, and others try to finesse it in an attempt not to appear too greedy. You might as well be honest. You want us all to throw thousands of sats at you, and preferably very quickly. Well, forget it. That ain't gonna happen. Nor should it. And that's a good thing, whether you know it yet or not. \n\nBut, I will try to help you have a long, rewarding experience here. \n\n## Just Who The Hell Do I Think I Am?\n\nSome may wonder what makes me think I have the knowledge needed to tell anyone how to stack sats here. It's true that I'm still learning, and it's not like I'm getting rich spending what is probably way too much time wandering around this site, but I think I can help newcomers avoid my mistakes and explain what seems to work for me, an average SN stacker. \n\n## Who Can Benefit From This Article?\n\n If you're the guy who bought 10,000 bitcoin at 8 cents each in 2010, and managed not to sell them during the many pumps of the early years, and you didn't lose your keys, and didn't get wiped out during the Mt Gox mess, and you resisted a shitcoin siren call in 2016, and you still have your stack, just stop reading. I have nothing to teach you. You are the master. I am your humble student. \n\nAnd, I hate you. Go fuck yourself.\n\n(*Jealousy and hate are not the Way of the Buddha. I am imperfect)\n\nHowever, if you're new to bitcoin and just learning, Welcome! \n\nSo, what I took from my brush with Buddhism is basically to learn as much as you can about a topic, absorb it from all angles, and then forget about it when it's time to act. When you know enough, conscious thought gets in the way. \n\nOnce you are prepared, you just do. You don't think about doing. \n\nYou start by learning.\n\n### *"A good traveler has no fixed plans and is not intent upon arriving." – Tao Te Ching, Chapter 27* ###\n\nTake a breath. Explore. Read through the FAQ and Guide that you can find at the bottom of the page. Spend some time poking around the site. You will discover that there are many types of people here: beginners like yourself, people like me who have been around bitcoin for a few years but are still learning, some OG hodlers from back in the day, some bitcoin celebrities, some bitcoin core guys, and many really smart, 20 or 30 something year old coders and developers who work in the bitcoin ecosystem and are doing some amazing things. You can learn from everyone. And you should.\n\nAlas, no one is going to throw lots of sats at you when you first get here, and, in all likelihood not for a long time. \n\n## First Steps\n\n![Wiz](https://upload.wikimedia.org/wikipedia/commons/4/42/The_Wizard_of_Oz_Garland_Lahr_Haley_Bolger_1939.jpg)\n\n\nAfter getting familiar with the layout and reading some content, the next thing you should do is create an account. Choose your nym. Most people here protect their privacy, and you should too when choosing a nym, unless you want to be identified. Next, create your bio. I think this is important, since it's your opportunity to introduce yourself and tell us why you're here. By providing information in the bio you might interact with other users who have things in common with you. It's important to develop relationships with people to share advice, experiences, etc. \n\nKeep in mind that publishing your bio is making your first post. It's free. Take advantage of it. I don't recommend short bios. The more you say about yourself, the greater the likelihood that someone will find something interesting to talk to you about. You might even get a welcome tip of a few sats. \n\n## A Word Of Caution\n\nOne caveat : This is a bitcoin site. The site is filled with bitcoin maxis. If you're at the stage where you're experimenting with other coins, or if you think there is a place for sh... um, alt coins in this world, you are entitled to your beliefs. You will find your people here too, eventually. Mentioning it in your bio, though, might not be the best move. You can bring it up later. If you ignore my advice, at best you will be ignored. At worst, you shall suffer the wrath of DarthCoin. Good luck, brave one. What doesn't kill you makes you stronger! (I don't buy that. If you live but lose a leg? Or suffer serious head trauma? Never mind)\n\n![Darth](https://upload.wikimedia.org/wikipedia/commons/3/32/Star_Wars_-_Darth_Vader.jpg)\n\n\n## So What About The Zen Thing?\n\nI know it took me a while, but now we'll get down to the zen. You have a few sats from your bio post and maybe from your free second post and a few more from your five free comments. Now what? \n\nWell. Why are you here? I hope it's because you have become obsessed with bitcoin, and you need to know more. Not want, but need. You may have gotten interested due to greed. That's understandable. Most of us did. I first got interested during the 2017 pump. Am I rich now? No. Do I have a Lambo? No. But guess what? I don't want a Lambo any more. It's meaningless to me now. I own a 20 year old Toyota. Is that all I can afford? No. I could buy a nicer car, but I'd rather stack sats. \n\n![Jed](https://upload.wikimedia.org/wikipedia/commons/0/0d/Hillbillies.JPG)\n\n\nSoon you won't care either. First, you'll learn about low time preference. Later, you'll understand what that really means.\n\nYou will stop caring about the fancy house and the car. Soon, you'll be thinking more about the mother in some poor African country trying to feed her family. Without a bank account. With decaying fiat money. You start feeling all those We Are All One vibes from bad 1970's Coca Cola commercials. Except now you know it's true.\n\nYou start donating to Alex Gladstein and Anita Posch.\n\nBut I digress. Back to business:\n\n### **“To receive everything, one must open one’s hands and give.” ― Taisen Deshimaru** ###\n\n I advise you to pretend you can't earn sats. But remember you can give sats. I would start by reading the recent posts. When you find an interesting one, tip the poster some sats. Make this a regular practice. Don't worry about making your own posts yet. By doing this, you will be learning about bitcoin. You will be supporting people who post stuff you find interesting, AND you will start earning sats. How? Well, the way SN works, you get sats for tipping top content early. Odds are, you will tip a few posts that become popular. If you liked it, others will likely like it too. By reading recent posts, you can discover good content early and earn more sats. As you learn more about bitcoin, you will be more discerning, and will tip top content early more consistently. You learn, then earn. \n\nYou will start building trust. What's that, you ask? Well Keyan Kousha, our leader and guru, is one of those wiz coders and developers I talked about earlier. He created some kind of fancy algorithm that increases your status here based on the quality of your tipping and posting. The higher your trust score, the more sats you can earn. How does it work? I have no clue. Ask him.\n\nAs your knowledge grows, start commenting on other people's posts. Ask questions. At the beginning you will have a lot of questions. Ask them. You may get lucky and one of your questions might become a top comment that earns you sats. Or maybe not. Who cares? It's very likely someone will answer your question, and you will learn. \n\nSoon, you discover the zen of this whole thing: The less you try to earn sats, the more sats you'll earn. I discovered this the hard way myself. Early on, I would think about what posts would likely earn me sats. I would put some thought into the post, carefully craft it, and post it. Then I'd sit back and wait for my sats. Crickets. Nothing. My post would get ignored. Then, later I'd read a post and respond with a quick comment or question, pretty much spontaneously and without expectations, and I'd earn a few hundred sats. I was dumbfounded. Then it dawned on me. Genuine, real posts mattered. Honesty, like bitcoin itself, is what counts. Contrived crap, like a shitcoin, is ignored.\n\nI think that's why ChatGPT posts are usually ignored. The writing quality might be higher than what we post, with better grammar and syntax, and perfect spelling. But, it seems fake and lifeless. I can't always put my finger on what's wrong with it, but I don't like it.\n\n## If You Build It, They Will Come\n\n\nSoon you will start posting. Maybe a few links here and there. Avoid posting dupes! Also, try to keep it interesting. Everyone has seen yesterday's Bitcoin Magazine, Coin Desk, or Cointelegraph article. Don't post it again. Post what you like to read. Don't worry if it's a little off topic, so long as it's thought provoking. Of course, others may not agree. Your post might get ignored. So what? You're still learning.\n\nYou can use a little creativity for your link posts. The title can be edited. In fact, sometimes you must edit the title for length. Experiment. Make a funny headline. Maybe the mainstream media source sugar coated the content in the headline. Write what the article really means. By doing this, you bring value to a simple link post.\n\nNext, you will create discussion posts. At first you might ask questions about something you don't understand. You can be pretty sure you'll get answers. If it's a complicated issue, you may inspire arguments and discussion. Your simple question could turn into a significant post, with lots of sats and a daily bonus. That will happen, just not when you expect it.\n\nAs you get more comfortable here, be generous. Tip new bio posts so that user has the sats to post right away, without having to fund his or her wallet. Tip new accounts who put some effort into crafting a post, whether or not it's great. You've been there. You're not so removed from being a beginner yourself. And spread the wealth. You want to help increase adoption, right? You want to promote value for value, right? Circular economy? Start right here.\n\nIn the meantime, keep learning. Run a node, try to set up a nostr relay. Listen to podcasts night and day. And read. Read every damn bitcoin book you can find. Watch old Andreas Antonopoulos lectures on YouTube. Go on Gigi's web site and read everything he's ever written. Soak up as much information about bitcoin as you can.\n\nAnd always talk about it on Stacker News. You will help others on the journey. Soon the sats will be rolling in, but you won't be thinking about it. You will be too busy learning more.\n\n\n \N 7510 \N 198698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5045214735117 0 \N \N f 0 \N 0 105503776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 197668 2024-07-10 10:10:33.25 2025-03-29 22:39:46.785 We're witnessing history It's my view that we're sitting in the front row of a movie theater, popcorn on our lap, and we're watching history play out before us. Specifically, we're watching a film called "The New Economic Revolution" starring Bitcoin.\n\n![flywheel.jpg](https://files.peakd.com/file/peakd-hive/crrdlx/23z7QSvg7CBJs9BqX47c7PmKbx2XcKpyZdcK5SVg9azbLLjituYabjsbrps6e5sLpNzxZ.jpg)\n\nRevolutions, true revolutions where the old world order is turned down and the new order is transformed up, are rare. We usually think of political revolutions when we hear "revolution," at least I do. A power overthrow is an easy thing to see and grasp. \n\nSocial revolutions are another good example, often initiated by or aided by technological revolutions. The Protestant Revolution, aided by the printing press, unchained the Holy Bible from the gatekeepers of the Catholic church and brought it to directly to the people in their own language. \n\nBut, economic revolutions, I'd argue, are extremely rare. How many true economic revolutions have their been?\n\n1. The move from forager to **agriculture**, maybe? Though I'd argue agriculture has been around since the beginning.\n\n2. The beginnings of the use of **money**. This one is hard to pin down and would depend on geography, but it's a game changer.\n\n3. Around the 1700s there was what's called the "agricultural revolution" or "**enclosure**." (This was the second agricultural revolution, the first being #1 above.) Enclosure might be the better word, because it's essentially just fencing off land. In this way, enclosure is essentially capitalism being carried out, the move from the communal to private property. See the next number below.\n\n4. Adam Smith's free market **capitalism**. Capitalism has raised the standard of living of more people than anything I can imagine. Historically, it liberated millions, maybe billions, from mercantilism and the clutches of the haves controlling the have-nots. Today, with capitalism, a have-not with an idea, grit and determination can achieve great things. Certainly, a gritty person stands to live a better life in capitalism than in any other economic system.\n\n5. **Bitcoin**. I rank bitcoin right there among these other landmarks because it disconnects money and value from power-brokers and connects that value directly to the people. This is, of course, why they dislike and fight bitcoin.\n\nSo, is bitcoin in the four or five greatest economic revolutions of history? I think it is. The technology it revealed aside, the way-of-thinking it awakened to so many people might be its most incredible achievement. Like Plato's cave allegory, coming out of the cave is difficult and can be frightening and painful. Yet, once out of the cave and viewing the beautiful world outside, no one crawls back into the cave to live a life in darkness.\n\nIn bitcoin, we hear the term "flywheel" used fairly often. It's a great analogy: the flywheel, once spinning, creates its own inertia to generate greater spin and greater inertia, and thus, its own energy. That bitcoin flywheel is spinning, and speeding, and not everyone likes the revolution its creating.\n\nWe're watching this movie play out in real time. I'm not even talking price here, though that is one effective measure and easy-to-handle metric of the revolution. I'm talking about a complete change from "your" money and "my" money being liberated from gatekeepers and power brokers and placed directly into your and my hands. It is the scripture from Latin to the vernacular.\n\nOn the topic of religion, I think back to the patriarchs of the Old Testament, particularly Abraham, Isaac, and Jacob of Genesis. They became wealthy, influential, and powerful men. Their wealth was not in money as we think of it. It was not in gold. It was not even in land for much of their lives. Their wealth was in livestock...an asset or commodity that would literally walk around with them as they traveled to and fro across the Holy Land. My point here is that they were the actual holders, the custodians of their wealth. They held their flocks and herds with them, completely divorced from any governmental or institutional overseer. Their money had four feet, ate, sleep, defecated, and got eaten themselves. But, Abraham, Isaac, and Jacob controlled their own wealth.\n\nBitcoin effectively returns us back to herding sheep and goats. We can trade a sheep, slaughter a goat without anyone's permission and without anyone taking a fee for us doing so. With legacy money, this is not the case.\n\nAnyone who is old enough to have lived through the period when the internet became accessible to normal folks, the 90s and early 2000s, they might see how we've been blessed to witness a couple of revolutions. First, we saw the information revolution play out, and we've lived it out. Anyone who did research pre-internet understands the difference between looking for things on microfiche and searching the 'net. The ease of the search, the wide spread of the net that's cast, and the accuracy and pertinence of the results are ridiculously better now. It's not that information could *not* be found prior to the internet, it's that the entire process has been sped up to an incredible degree.\n\nAs a quick and simple example, suppose you ask, "What was the name of the first song the Rolling Stones came out with?" Pre-internet, you'd have to take an afternoon to go to the library, find a book on rock 'n roll music history, if your library had one. Else, you had to request it. Then wait a few days, then go back, then thumb through it. Maybe it would have the answer, maybe not. If not, request another book. Or, maybe dig rather aimlessly through the microfiche and pray. \n\nTo research that question now...do a search. There's your answer.\n\nAnd secondly, we're able to watch the revolution of money that bitcoin started and which the flywheel is now fueling. The combined technological revolution of the internet and the economic revolution of bitcoin, are, well historic to say the least. I'm convinced that in 20 years people will look back at this time in awe. Certainly in 50 years and a hundred and hundreds, this period will be in the history books properly recorded as truly revolutionary. \n\nWe're blessed to be sitting and watching this amazing time. Out of roughly 5,000 years of recorded history, we're living in one of the few times where we get to witness such transformative changes. There haven't been many changes this big, and we get to live it. \n\nBe thankful, humble, and enjoy the movie and the popcorn.\n\n \N 1478 \N 197668 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.9210228670632 0 \N \N f 0 \N 0 244658367 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403283 2025-02-14 16:31:26.171 2025-03-29 22:39:46.785 Draft of SN Open Source Contribution Award Rules This is WIP but it's something that's been cooking in my brain for the past month or so. We've been paying for PRs for around a year with varying levels of formality and success. In general, it's been awesome so I want to encourage more of it. I'm also hoping it creates a better than usual hiring pipeline. FOSS is how we got @ek after all.\n\nI'd love to get feedback on the system design. This started out as me figuring out the structure of PR payments, but when I sat down to write it out yesterday, I began considering other types of non-code contributions because those are really important too.\n\n# contribution awards\n\nWe pay sats for\n- pull requests closing existing issues\n- code review\n- issue specification whether for bugs, features, or enhancements\n- discovery of security vulnerabilities \n- discovery of privacy vulnerabilities\n- improvements to development documentation\n- helpfulness\n\n*Just in case: This document in no way legally entitles you to payments for contributions, entitles you to being a contributor, or entitles you to the attention of other contributors. This document lays out the system we can use to determine contribution awards which we generally intend to abide by but importantly we reserve the right to refuse payments or contributions, modify rules and award amounts, make exceptions to rules or reward amounts, and withhold awards for any reason at anytime, even just for the heck of it, at our sole discretion. If you need more certainty than what I've just described, don't participate. We provide awards as an experiment to make FOSS less sucky.*\n## pull request awards\n### rules\n\n1. PRs closing an issue will be awarded according to the `difficulty` tag on an issue, e.g. `difficulty:easy` pays 100k sats. \n2. Issues are occasionally marked with a `priority` tag which multiplies the award of a PR closing an issue, e.g. an issue marked with `priority:high` and `difficulty:hard` awards 2m sats.\n3. An award is reduced by 10% of the award amount for each substantial change requested to the PR on code review, e.g. if two changes are requested on a PR closing an issue tagged with `difficulty:hard`, 800k sats will be awarded.\n\t- Reductions are applied before `priority` multipliers, e.g. a PR closing a `priority:high` and `difficulty:hard` issue that's approved after two changes are requested awards 1.6m sats.\n\t- You are responsible for understanding the issue and requirements before requesting review on a PR. \n\t- There is no award reduction for asking specific questions on the issue itself or on the PR before requesting review\n\t- There is no award reduction for asking more general questions in a discussion\n4. A PR must be merged by an SN engineer before a PR receives an award\n\n### difficulty award amounts\n\n| tag | description | award |\n| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |\n| `difficulty:good-first-issue` | at most a couple lines of code in a couple files and does not require much familiarity with the codebase | `20k sats` |\n| `difficulty:easy` | at most a couple lines of code in a couple files but does require familiarity with the code base | `100k sats` |\n| `difficulty:medium` | more code, more places and could require adding columns in the db and some modification chunky db queries | `250k sats` |\n| `difficulty:medium-hard` | even more code, even more places and requires either more sophisticated logic, more significant db modeling eg adding a table, and/or a deeper study of a something | `500k sats` |\n| `difficulty:hard` | either a bigger lift than the what's required of medium-hard or very tricky in a particular way that might not require a lot of code but does require a lot of context/troubleshooting/expertise | `1m sats` |\n### priority multipliers\n\n| tag | multiplier |\n| ----------------- | ---------- |\n| `priority:medium` | 1.5 |\n| `priority:high` | 2 |\n| `priority:urgent` | 3 |\n\n## code review awards\n\nCode reviewers will be awarded the amount their code review reduced from the PR author's reward, e.g. two substantial problems/areas of improvement identified in a PR closing a `priority:high` and `difficulty:hard` issue awards 400k sats.\n### rules\n1. The problem or improvement must be acknowledged as such by SN engineers explicitly\n2. A PR must be merged by an SN engineer before a PR's code reviewers receive an award\n\nCode review approvals are more than welcome, but we can't guarantee awards for them because the work performed to approve a PR is unverifiable.\n## issue specification awards\n\nIssue specifiers will be awarded up to 10% of a PR award for issues resulting in a PR being merged by an SN engineer that closes the issue. In addition to being subject to PR award amounts and reductions, specification amounts are awarded on the basis of how much additional help and specification is required by other contributors.\n### rules\n1. The issue must directly result in PR being merged by an SN engineer that closes the issue\n2. Issue specification award amounts are based on the final PR award amounts\n\t- that is, they are subject to PR award code review reductions and priority multipliers\n3. Award amounts will be reduced on the basis of how much additional help and specification is required by other contributors\n4. Issue specifiers who can close their own issues with their own PRs are also eligible for this 10%\n - e.g an issue tagged as `difficulty:hard` that is both specified and closed by a PR from the same contributor without changes requested awards 1.1m sats\n\n### relative awards\n\n| circumstances | award |\n| ---------------------------------------------------------------------------------------------------------- | ----- |\n| issue doesn't require further help and/or specification from other contributors | 10% |\n| issue requires little help and/or specification from other contributors | 5% |\n| issue requires more help and/or specification from other contributors than the issue specifier contributed | 1% |\n| issue is vague and/or incomplete and must mostly be entirely specified by someone else | 0% |\n\nFor example: a specified issue that's tagged as `difficulty:hard`, doesn't require additional specification and disambiguation by other contributors, and results in PR being merged without changes requested awards the issue specifier 100k sats.\n## responsible disclosure of security or privacy vulnerability awards\n\nAwards for responsible disclosures are assessed on the basis of:\n\n1. the potential loss resulting from an exploit of the vulnerability\n2. the trivialness of exploiting the vulnerability\n3. the disclosure's detail\n\nAward amounts will be easiest to assess on a case by case basis. Upon confirmation of a vulnerability, we agree to award responsible disclosures at minimum 100k sats and as high as the total potential loss that would result from exploiting the vulnerability.\n### rules\n1. Disclosure is responsible and does not increase the likelihood of an exploit\n2. Disclosure details how to exploit the vulnerability with certainty\n## development documentation awards\n\nFor significant changes to documentation, create an issue before making said changes. In such cases we will award documentation improvements in accordance with issue specification and PR awards.\n\nFor changes on the order of something like a typo, we'll award a nominal amount at our discretion.\n\n## helpfulness awards\n\nLike issue specification awards, helping fellow contributors substantially in a well documented manner such that future contributors may also benefit and leads the helped fellow to contributing a PR that gets merged is eligible for a one-time relative reward.\n\n| circumstances | award |\n| -------------------------------------------------------------------------------------- | ----- |\n| substantial and singular source of help | 10% |\n| substantial but nonsingular source of help | 1-5% |\n| source of relatively trivial help | 1% |\n \N 9705 \N 403283 \N \N \N \N \N \N \N \N security \N ACTIVE \N 29.0138019231735 0 \N \N f 0 \N 0 247408128 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 163494 2024-04-29 15:09:15.297 2025-03-29 22:39:46.785 Loan shark: Super Testnet's non custodial, bitcoin only borrow and loan tool \N https://youtu.be/EJICv6P48wU 2789 \N 163494 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.4940884006775 0 \N \N f 0 \N 0 146569858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 185781 2024-06-17 09:54:41.95 2025-03-29 22:39:46.785 A perfect visualization of how absurd KYC/AML is Europol [estimates](https://disruptive-horizons.com/p/kyc-aml-destroying-world) that the EU is spending ~€140 billion on KYC/AML compliance costs each year.\n\nMeanwhile, only ~€1.2 billion in criminal funds are confiscated each year.\n\nJust how valuable is privacy invasion to these tyrants? They're willing to spend 100x more than what they benefit from implementing KYC.\n\nhttps://substackcdn.com/image/fetch/w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc1776402-ffb6-4137-b55c-793d2402c004_2012x991.png\n\nThis also doesn't mention how KYC creates countless data honeypots that get leaked time and time again, beyond the direct € (or $ or whatever) costs to enable this privacy risk...\n\nThe shared link is a wonderful read if you're curious for more on the topic. \n\nWe're living among psychopaths, and they're not the bitcoiners...\n \N 20509 \N 185781 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.337989088094837 0 \N \N f 0 \N 0 10881285 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413565 2025-02-23 10:45:30.802 2025-03-29 22:39:46.785 Let's discuss El Salvador's Volcano 🌋Tokens. Here's ABSOLUTELY everything: What they are?\n\n>VOLCANO TOKENS ARE SECURITIES \n![volcano bonds](https://imgprxy.stacker.news/VEXI9LDCZk6iTE-8D8oxpoP57G3zWDvgHYg46qjqu-o/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS83OWM1ZjQ0MDA5Yzc0MTVlMzc5NGUxYTM1NmRjODM0N2MxMGVmODZkZGFlOTk3MThlZWIxYjZhMjUwMGRlZjg1LmpwZw)\n\nThey're security tokens representing El Salvador's sovereign debt (bonds). El Salvador started this eruption a couple years ago, and they're currently building their mining infrastructure and their independent mining pool. This mining pool is named *ES Pool*. It should surpass 1.3 EH/s, giving them around 1% of global hashpower—the equivalent of sniping 1.5 blocks per day on average. I'd expect some indie basement or garage hashpower to join for no reason other than being sympathetic to their cause. ES Pool will be powered by a 240-megawatt renewable energy park being built to support it. The $1B to build this park, to acquire the 15,000 mining ASICs, and to engineer the pool, came from 13 investors, the largest being Tether ltd. The annual revenue split is 23% to El Salvador, 27% to investors, and 50% reinvested in mining and energy. It was an equity deal, not debt.\n![]()\n\nNow we must summit the caldera and stare into the pyroclastic flows. Volcano Tokens will be issued by Bitfinex Securities and live on the The Liquid Network. Let's discover the role of each platform:\n\n\n**Bitfinex Securities**⤵\n\nYeah these guys. Bitfinex Securities is a subsidiary of iFinex, which also owns Bitfinex and Tether. They're all vertically integrated, but play a global game I call *distributed jurisdiction*. The Volcano Tokens were originally going to be issued by STOKR (a Luxembourg based securities platform that facilitates the raising of capital for those seeking to have their tokenized securities publicly traded on blockchains). In order to buy-sell-trade tokenized **securities**, you must be registered to do so first, and STOKR handles that, just like Etrade or RobinHood do when you sign up. STOKR has had jurisdiction issues with the America's though. And thusly iFinex, realizing the opportunity, started a company named Bitfinex Securities in 2021, which is like STOKR, and will be the agent issuing the Volcano Tokens. So you'll have to register an account with Bitfinex Securities, then you'll be able to acquire them on that platform for custody, or on any exchanges they're offered on, and you'll be able to buy-sell-trade them with any whitelisted addressee 24/7. Or you can just get them where they actually live: The Liquid Network.\n\n**Liquid Network**⤵\n\nLiquid is a federated sidechain of bitcoin founded by Blockstream in 2018. To use Liquid, you simply download any wallet that supports the Liquid Network, like *Blockstream Green*, which I happen to use as my mobile [BTC] hot wallet. The BTC used within Liquid is called L-BTC, a two-way 1:1 bitcoin peg mechanism, and it's pretty seamless to peg-in and peg-out using the app. The Liquid Network has experience with various security tokens, with three listed there already, the most famous being the BMN (Blockstream Mining Note) which gives owners the equivalent of 2000 TH/s worth of hashpower per token, and pays holders in bitcoin whatever that hashpower mines on average every 36 month maturity. Current price of one BMN? $136,000. The BMN is issued by the registration agent STOKR, which we discussed above. None of that matters though! Just remember that Volcano Tokens will be available on Liquid for those registered with Bitfinex Securities. The Volcano Tokens' notional value (face value) is $100, so with just $100 you can own a piece of the República!\n![Blockstream Green](https://imgprxy.stacker.news/U4vwcgMFAeztTgL47P_oXi4rhq2M8K27NFhWv7E08n4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS83Zjg2NGI1MGYyMTliMjhjODQ5MDgzYzI1Y2M0MmI0ZGFiNWQ0OWZlYzEwMzkzMDIxYzU0NDdjODE3NTNiYzllLmpwZw)\n\nSpecific steps you will take to acquire the Volcano Tokens on Liquid when they're available:\n\n1. Download Blockstream Green\n2. Add an AMP account and record your AMP ID\n3. Register with Bitfinex Securities and provide your AMP ID\n4. Your AMP account is now whitelisted, this is where your annual yield will be paid each January\n5. Acquire Volcano tokens with L-BTC or L-USD (Tether)\n\n![AMP](https://imgprxy.stacker.news/7FNiN_NccRJr_Fz3OQRvflFBvbMaeBNXgX1hKTjqQFw/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS84NzFkY2Y2NTI4ZDBjNmJlNzlhNTg2MWVkZjQ2ZjM4ZjJmNGQwN2YxYjVmMzg0MWUwNWM5YTNlZTA0NWI0MjQxLmpwZw)\n\n*Note: AMP stands for Asset Management Platform*\n\nNow let's cut the crap and houseclean some of the volcanic ashfall, some of which is dark:\n\nThe first tranche of tokenized bonds issued by El Salvador will be $1B. There will likely be several more tranches afterwards, contingent upon their going concern 😅. For the first $1B tranche, $500M will be earmarked to build the religious sounding ₿itcoin City and its geothermal energy infrastructure. The remaining $500M will be used to buy bitcoin outright, which will be locked up for 5 years. The bonds themselves have a 10-year maturity.\n\n>⚠️ **THE BONDS ARE DENOMINATED IN USD, NOT BITCOIN**\n\nThe Volcano Tokens are...security tokens denominated in USD. You can look at them as bearer instruments with a ~legal claim on El Salvador's USD denominated sovereign debt in initial $100 increments. So if BTC is $30k today, and Volcano Tokens are trading at $100 today, and you swap your 1BTC for the Volcano Tokens, you get 300 Volcano Tokens. If BTC goes to $60k the next day, you don't have $60k, you have whatever the Volcano Tokens are trading for. Maybe they're worth over $60k, maybe they're not. Sounds like a hard pass, like the early investors of Coinbase who would've made significantly more if they'd just bought bitcoin. There are a few mitigating factors, let's continue: \n\nThe coupon (bond yield) will pay 6.5% annually for the 10 years. Using the *rule of 72* (72 divided by the yield), which is used to calculate how long it takes to double your money, it will take ~11 years to double your money at 6.5% yield if we apply it to the bond's principal value. So the 10-year maturity for the bonds is about double your money. Also, after that $500M that El Salvador locked up for 5 years is unlocked, they will use it to pay the original $500M loan they earmarked to build Bitcoin City. Whatever is remaining of the stack after that deduction (we assume BTC appreciates in that time), gets paid to the Volcano Token holders as a dividend over the final 5 years of the bond's 10-year life. Lastly, holding these bonds fast tracks citizenship. $100,000 was the minimum originally for this, but it's likely to get lowered. Woof, lot's of layers of trust here.\n\nHow will they pay that coupon? Consumption taxes (sales taxes, etc) from Bitcoin City, mining, tourism, anything they can get from the IMF lol, which is probably one of the things the IMF is concerned about. But me, I'm thinking about ₿itcoin City. I found this: \n\n>https://www.docdroid.net/OHZXk0J/proyecto-china-pdf\n\n₿itcoin City is just a rename of ZEDES (Zone for Employment and Economic Development), which was a fully planned city in the same location that China wanted (wants?) to build as part of their *Belt and Road* initiative. China has a growing presence in Latin America, and recently offered to buy ALL of El Salvador's outstanding sovereign debt. There's a connection here that feels dark. I think this is how El Salvador is going to ultimately build that city. Also, I hope El Salvador avoids any pension games with bonds/btc, because more countries than I can count have gotten themselves in trouble with those.\n\nI'm not shilling Volcano Tokens dear reader, I'm simply consolidating information that's been delivered to us in fragmented ways for expedient reasons. The first tranche of these tokenized bonds will probably be like the Dallas Cowboys tokenizing the organization on a social media platform and offering them to residents of Texas. They'd all be snapped up in under 24 hours for no good reason other than novelty. Frankly, I'm neutral about these Volcano Tokens. I'll buy one for novelty. But are they shitcoins? Should maxi's shun them? Why not just buy bitcoin and HODL? I'll list those reasons after the following image, which I always refer to when asking such questions: \n\n![bitcoin](https://imgprxy.stacker.news/R2E2DDWRtRlJNJuWYYP6EcH1rrGX7toHNhQYTvuosPA/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS9jNjc1ZGM4ZTU5MmZjNDk3YWJmZDVlMGJjNWM2ZDBlMDZiMWNkOTFmOWQyNmU4OWJhZGYwNDRkM2QyZGRkNGVmLmpwZw)\n\n- Cash flows\n- Diworsification\n- Ideological reasons, thinking that if this is successful it's a watershed moment that many countries will rush to recreate, and suddenly BTC is the reserve asset for sovereign debt\n- They sound cool and are novelties\n- Citizenship for tax strategy\n- They can be traded, and if speculation drives up the price you can sell them at a profit. \n- They're a slap in the face to non-money "*crypto*", which is vaporware proffering no legitimate product or service, with no nation state or obligation tied to them, and at large, DeFi is an orgy of swaps, wraps, burns, mints, and stakes, run by dapps that do nothing but optimize token interactions to keep the orgy going. \n\nAlso, over 90% of DeFi debt is stablecoins anyway. Nothing has established itself as money within those protocols other than stablecoins or wrapped derivative collateral like BTC. I'm ranting. None of this has anything to do with anything. Done.\n\nBack to concerns with Bukele for some bitcoiners, ones who align more with the NYT on his Presidential actions heretofore, like me, sort of. I agree with some of the mainstream criticism, I justify my fragile support of Bukele by considering that since the 80s and their civil war, El Salvador has been mired in corruption, violence, and poverty. What options exist for them to escape? Nobody in the US would be talking about or investing money there without BTC perhaps. And I ponder if Bukele is like if Alexei Navalny got elected in Russia, then marched into the Kremlin, removed every Putin and oligarch appointee, then threw Wagner war criminals in prison. Would I complain? Maybe it isn't the same, some liberties taken there. \n![btc city](https://imgprxy.stacker.news/o9xZuUoaxMi1zHyITDpzb4zbJ3vOOPXC4whDALCDnSQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS9hMDU1OWE3MmI1NGI4ODhhZjVjY2NhMjdjZjM2NTVjNDYyNTZlNzE3MTg3MWMwNzAyYjA3M2VkMzQ1ZWRjODM4LmpwZw)\n\nBut yeah, that quasi Chinese waypoint called ₿itcoin City. I feel like if you shoehorn Tether, Volcano Tokens, Bitcoin, Chinese debt, mining, a gold tied BRIC's currency, gambling, the CIA, MSS, cartels, tax havenry, and a citizenship free-for-all into a space that small, in relief of a huge honking volcano, it will make Pompeii⤵ look modest, and end at least as tragically.\n![Pompeii](https://imgprxy.stacker.news/IIWnYHJsfX7_Of4YsRQOO_7BYVlxDmNyrjn0yr4J3hc/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS81ZmU5M2MwZThkOTc3YWMyNTE1OGQwMTc1YTk1MDFiMDg5NDUwY2NjMzFlYmRmMTBhYjdhOGM0YThhYmFkMjBhLmpwZw)\n\nAnyway that's it, are Volcano 🌋Tokens shitcoins? Will you buy them? Why or why not? Please correct anything I got wrong. Sats for replies, as always. \n\n\n\n\n\n\n\n\n\n\n\n \N 9352 \N 413565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.301701002757 0 \N \N f 0 \N 0 226505443 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 189560 2024-06-25 19:34:06.384 2025-03-29 22:39:46.785 I'm Calle, a Physicist and Programmer who fell in love with Lightning - AMA Yooooo,\n\nI've been here on SN since the early beginnings and I'm very happy to be doing an AMA today. Here is my [Twitter profile](https://twitter.com/callebtc). I would love to talk about science, Bitcoin adoption, Bitcoin and Lightning development, and how Bitcoin might change in the future. I'll summarize a few points about me below and I'll be answering questions **from today 10am CT / 16:00 UTC / 17:00 CET** – Looking forward to this!\n\nTL;DR: Bitcoin is not digital energy.\n\n- I live in **Europe** (rekt?).\n- I'm a **theoretical Physicist** by training and I work as a researcher doing research. My areas of expertise are in mathematical modeling and more specifically in Dynamical System Theory, Chaos Theory, Network theory, (very large) numerical simulations. \n- I've been **programming** since forever. I love open source software. The FOSS movement is one of the things in our world that I'm most optimistic about going into the future. I think we can build a whole civilization on the ideals of open source, which is why I'm so happy that Bitcoin exists.\n- I've known Bitcoin for a few years but my knowledge about Bitcoin expanded greatly when I started writing code for it. In retrospect, I needed Lightning to be a thing to start developing in the Bitcoin space. Lightning allows you to play around and mess with things without losing everything. It feels a lot more approachable than Bitcoin on-chain development. I think that's why we're witnessing this **Cambrian explosion in Lightning development**.\n- I've been developing in the Bitcoin space for a bit over a year now. Since then, I've accumulated quite some **proof of work** working with fantastic people ([gh](https://github.com/callebtc))\n- **LightningTipBot**: a Telegram Bitcoin Lightning wallet with many features. This is our fun and happy bot that is made for absolute noobs who haven't used Bitcoin before. Building it was a valuable exercise in UX design, since I rarely build things with an user interface. This bot is also our testbed for the latest and greatest Lightning features. We've experimented a lot with all things LNURL, noncustodial features, shops for digital items, paying for API calls (OpenAI stuff) and so much more.\n- **Electronwall** ([gh](https://github.com/callebtc/electronwall)): A tiny firewall for LND nodes. Since I'm managing economically active Lightning nodes, I needed a way to automatically decide which channels to accept and which not, so I built this tool. In the newest version, it allows you to get node information from Amboss/1ML before deciding whether you want to accept an incoming channel or not. I think that, as long as Lightning bears a risk of losing all your funds due to an accident or a hack, users should be careful with putting their money into a multisig with people they don't know anything about. Especially if you don't know exactly the risks you're taking on a technical level. I know this is a spicy topic which is why I mention it here and hope to have a fruitful discussion on. Lightning is scary. \n- **LNbits** ([link](https://lnbits.com/)): You might have heard of LNbits before. If not let me summarize it real quick. LNbits is software you can run on your own Lightning node and supercharge it with countless useful features. Some people call it a swiss-army knife for Lightning nodes. Others call it Wordpress for your Lightning node. It supports a ton of different funding sources (LND/CLN/Eclair/...). It has many extensions that I can't summarize all here. The reason I fell in love with LNbits was the API access it provides to your funding source. If you want to build Lightning-enabled software, you typically don't want to spent a ton of time building the Lightning rails, you want to focus on building your app. LNbits allows you to do that. By "abstracting away" the funding source, you can just use its excellent API for all things Lightning. Did I mention that LightningTipBot runs on LNbits? That's also why I started contributing to the project about a year ago and later became one of the core core devs of LNbits. Now I'm working on it every day. \n- **Cashu** ([link](https://cashu.space/)): This is one of my most exotic projects so far. Cashu is a Chaumian ecash system built for Bitcoin. I'm sure I'll explain what Chaumian ecash is today but the most important thing to know about it is that it allows you to build privacy-preserving custodial Bitcoin apps. You can build wallets where the server doesn't know you, your balance, and who you transact with. Obviously, this is an insane improvement over classical ledger-based accounting systems. Interestingly, ecash has been around since the late 70s but its earliest iterations were built in fiat (a foundation of sand). It took us decades to come up with Bitcoin and blow the dust off this beautiful system called ecash to see if we can make use of it in a Bitcoin world. Turns out, we can.\n\nWell that's a wall of text. If you made this this far and there was something you found interesting, let's chat! \N 14657 \N 189560 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.73069238850122 0 \N \N f 0 \N 0 174512105 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404519 2025-02-16 00:08:40.301 2025-03-29 22:39:46.785 New York City Isn’t Dead: My First Visit To Pub Key ![pub](https://imgprxy.stacker.news/D2z5FJTpUE6A9OTcmGahf4J8nNyII-rHIkKxCR9APj0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvVkxxZmczNzIvUHVia2V5ZXh0LmpwZw)\n\nPub Key Bar\n85 Washington Place\nNew York, New York 10011\nhttps://pubkey.bar\n\n\n### ***“The only thing that has been declared dead more often than bitcoin is New York City”***\n \n*Thomas Pacchia*\n\nI read an [article](https://www.forbes.com/sites/digital-assets/2023/07/30/bitcoin-burgers-and-beer-community-on-tap-at-pubkey/?sh=2ae6fa0e43d1) a week or so ago in Forbes about a bar called Pub Key in New York's Greenwich Village. It was described as\n> an immersive Bitcoin community, fostering dialogue between locals and tourists interested in digital assets, educational content creation, and community-building meetups.\n\nIf it works out, the plan is to expand the Pub Key concept to other cities worldwide. I imagined a sort of bitcoin Hard Rock Cafe thing.\n\nI feel foolish not knowing about this place sooner. I live about an hour and a half car ride from Greenwich Village. I am a solitary shut in bitcoiner. The only other person I know who owns bitcoin is my nephew, and he's a bit of a shitcoiner. I'm more or less on my own. I fantasize about taking a trip to Bitcoin Park in Nashville or even a more ambitious journey to check out Austin. \n\nI was surprised to read about this bar. New York City has really gone down hill in so many respects since the covid lock downs. It had become a bitcoin desert even before the pandemic. On a personal note, I was deeply offended and angry that I was not permitted to eat in restaurants or attend a Broadway play in the city since I had chosen not to get a [vaccine](https://www.cnbc.com/2021/08/04/how-to-get-ny-excelsior-pass-proof-covid-vaccine.html). For more than twenty years my wife and I had socialized with friends and family in Manhattan. Every year for our anniversary we would spend a weekend at a nice hotel, eat at some great restaurants, and attend a few Broadway productions. I was born in Brooklyn. I had supported the New York economy my entire life. I felt betrayed. I vowed to never go back. I was already upset about the [BitLicense](https://www.capitalfundlaw.com/blog/newyorkbitlicense), which prevented me from buying KYC bitcoin from many exchanges. This was the last straw.\n \nI gradually restricted my boycott to Manhattan. One night I unwittingly ate at a NYC restaurant, not realizing we had crossed the Long Island/Queens border. No one cared whether we were vaccinated or not in Queens. \n\nI stayed away from the island of Manhattan until the other day. The morning of August 2 I checked out the Pub Key [web site](https://pubkey.bar/home), and discovered that a last minute meetup had been scheduled for that night because Marty Bent was in town. The topic was the release of Galaxy Digital’s Bitcoin Mining Mid-Year Report. This would be the perfect opportunity to attend my first bitcoin event in person. I was reluctant to break my boycott, but I was so happy that bitcoin had its own bar in Greenwich Village. \n\nI have ties to that area. My great grandfather, an Italian immigrant, opened a chicken market there with his brothers in the 1920’s. That market kept the family fed through the depression, and his son still owned it when I was a kid. \n\nThe Greenwich Village of the 1960’s was legendary as the breeding ground for the musical, artistic, cultural and political upheaval of the time. Maybe the Village will be where bitcoin begins the city’s rebirth? I was getting carried away. It is just a bar.\n\nI figured I would get there early, have a look around, and eat dinner before the event. As I drove through the midtown tunnel and made my way south, I was surprised that the streets didn’t look as bad as I had imagined. I did see more homeless people sleeping on the sidewalks, but not as many as I expected. I remember New York in the 1970s. I was not getting that same feel of grimy decay. \n\nThe owners of Pub Key did a lot of things right, but choosing the location was inspired. It is right off Washington Square Park, and for all intents and purposes smack dab in the middle of the NYU campus. Many tech startups are located in this area. Galaxy Digital’s offices are within walking distance. \n\nPub Key is owned by Thomas Pacchia, Greg Minasian, Marshall Mintz, Greg Proechel, Peter Richardson, and Andrew Newman, but Pacchia is the face of the bar. It was his idea, and he is involved with every aspect of the operation. His concept was brilliant, and his execution was close to perfect, down to the smallest detail. \n\nFrom the street Pub Key captures the NYC dive bar look perfectly. It helps that the space used to be a bar called Formerly Crow’s, a genuine dive bar before it was killed by the covid lockdown. There is no major signage except for a sandwich board placed on the sidewalk. It is below street level, a New York tradition. The door looks original, old and worn. As you walk in, the long bar is to the right. It was about 4:30 pm., so there weren’t many customers besides me. Tom introduced himself and I ordered a beer from the bartender. \n\n![bar](https://imgprxy.stacker.news/yp6PlGgzHB5bdlePWHxv1GWjPP-s0lyyvGTWEXCT1gM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvcU1wTHpxNjcvYmFyLmpwZw)\n\nYou can see from the photo that Peter McCormack’s Real Bedford soccer club’s banner is prominently displayed behind the bar. Peter did a podcast [episode](https://www.whatbitcoindid.com/podcast/building-a-bitcoin-community) with Tom a few months ago. There are Real Bedford banners everywhere. \n\nContrary to news articles I had seen before my visit, Pub Key does accept bitcoin and LN payments. They have a Point Of Sale terminal hooked up to a Zeus wallet. The payment system was set up by Drew Armstrong, President and COO of Cathedra, a bitcoin mining company. He also plays a role in the management of Pub Key. Unfortunately I did not have enough sats in my Phoenix wallet, so I paid with cash. I wasn’t alone. I saw no one pay with bitcoin during my visit. I learned that Drew recently estimated that only one percent of sales are currently made in bitcoin. That’s disappointing. Pacchia attributes the infrequent bitcoin transactions to the IRS rules that make each tab paid a taxable transaction. On the rare occasion when someone does pay with the Zeus wallet, it’s a good learning experience for the curious no coiners sitting at the bar wondering what’s going on.\n\n\n![toilet](https://imgprxy.stacker.news/_5_xIrtJTu7fjuuyS903Wg-m_9W7PgtQufwR0I8SkDs/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvOTBNRExaOHIvdG9pbGV0LmpwZw)\n\n*Wallpaper in the men’s room*\n\nI took a walk around the place. There were posters, stickers, and memorabilia everywhere. The aesthetic was bitcoin shabby, if there is such a thing.\n\n![fridge](https://imgprxy.stacker.news/ueSEYc_sNcaAIVK3Td_WuNpijMGqCplwXJUY3VJ8t9A/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvUWRiSlEzNXEvZnJpZGdlLmpwZw)\n\nA guy named Alex introduced himself. He gave me the lay of the land. He works nearby and spends a lot of time in the bar. I discovered that he was Alex Thorn, head of research at Galaxy and host of the Galaxy Brains podcast. He was about to record an episode at the end of the bar. He told me that Marty Bent had just completed an episode of his TFTC podcast upstairs. I didn’t even know there was an upstairs. I learned that there is a recording studio on the second floor and sleeping accomodations for out of town bitcoiner guests. I was beginning to realize the full extent of this operation. I was impressed. Alex also told me that the “[Bitcoin Sign Guy](https://qz.com/1029389/bitcoin-sign-guy-the-man-who-photobombed-janet-yellen-with-a-buy-bitcoin-sign-has-received-nearly-16000-in-donations-from-fans)” was upstairs. I wouldn’t recognize him if I saw him anyway. \n\nI ordered dinner. Alex gave me the scoop on the food. The menu was designed to look like crappy bar fare, but it’s not. I ordered a chicken sandwich, which was delicious. Pub Key hired Head Chef Greg Proechel, who was trained at the acclaimed Eleven Madison Park restaurant, to produce high quality bar food. Let me tell you, they succeeded. The smash burger and chopped cheese have already earned a city-wide reputation. On the other hand, the Orange Pill Pleb cocktail is apparently horrible, though I didn’t try it myself. It is a high life with a shot of campari and sweet vermouth.\n\nThe bar area gradually began to fill up. There was something familiar about the crowd. I lived in Manhattan for a few years in the mid to late 1980s. The movie [Wall Street](https://www.imdb.com/title/tt0094291/) documented that time. Rich college graduates from all over the country flocked to New York to “get into finance” and become the next Gordon Gecko. Here I was in 2023 surrounded by those same arrogant, pampered young guys wearing turned around baseball caps and self consciously casual outfits. I heard no New York accents. These were private school and Ivy League kids. People known as Yuppies, Preppies, or [Tom Wolfe](https://www.washingtonexaminer.com/opinion/what-tom-wolfe-the-master-of-the-universe-can-teach-millennials) ’s “Masters Of The Universe” back then. My friends and I called them douchebags. \n\nI started to eavesdrop on a few conversations. Two smug 20 something dudes approached the bar to order a drink. One looked at the other and said “What is this, a crypto bar?” His friend leaned over and in a lower voice said “it’s not a crypto bar, it’s a bitcoin bar.” The other guy looked puzzled, not appreciating the distinction. The guy sitting next to me struck up a conversation with the guy sitting next to him, explaining that he’s working for a startup looking to provide trust solutions for companies wanting to hold bitcoin. They were in the “outreach phase.” These two were focused on the halving and BlackRock’s spot ETF application, expecting the price to skyrocket in the next 6 months. \n\nI don’t want to give the wrong impression. There were plenty of guys at the bar who look the way I think a bitcoiner should look. You know- 30 something developers, black t-shirt, beard, longish hair, kind of disheveled looking. Maybe carrying around a few extra pounds and drinking a little too much? Those guys I naturally relate to. We have a lot in common but for the fact that I can’t code. I know I’m stereotyping. I suspect the finance crowd was mainly Mike Novogratz’s employees who were there for the presentation, and others maybe looking to get a job with Galaxy. I heard a few “networking” type conversations.\n\nThe male to female ratio in the bar was around 40 to 1. Where were the women? I do remember plenty of women being around in the 1980s. Maybe it was too early in the evening. I spoke to a few patrons closer to my age. We chatted about New York and how it’s changed. When I asked if they were there for the bitcoin meetup, they were puzzled. They didn’t know they were in a bitcoin bar. That’s an amazing thing about Pub Key. It’s a really good bar even if you have no interest in bitcoin. \n\nThe bitcoiners here don’t seem to embrace hardcore maximalism. I learned that there is a shitcoin called HAM, which is a reward token for hamster races. Don’t ask me. I guess they show these hamster races on a TV, and patrons make money off this shitcoin. I’m hazy on the details. Pacchia’s motivation in opening the place was to foster dialogue and build community. He says that you’re less likely to argue with someone you’re drinking with in person than online. All I know is that after a few beers I didn’t criticize the hamster races. \n\n![crowd](https://imgprxy.stacker.news/qwtN-vanKUJ2_6_dpF7x4flmHdKLCaC8NWzdbcAuvZg/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvazV6aFZzY1EvYmFyY3Jvd2QuanBn)\n\nPub Key has a Wall Street sensibility. This place wasn’t conceived and built by iconoclastic cypherpunks. Pacchia first bought bitcoin in 2013, but at that point he was a derivatives lawyer at a white shoe New York law firm. He is a very smart guy with degrees from NYU business school and Maastricht University in Holland. He helped start up Fidelity’s crypto incubator. He has started and run his own crypto hedge fund. Everyone involved in the operation seems to be an alumnus of Fidelity or Galaxy Digital. This is just an observation, not a criticism or condemnation. This is New York, after all. \n\nI eventually headed into the back conference room to get a seat for the presentation. There was a large wall mounted monitor and video cameras were set up in the back. This space is used for live streaming and looks to be well equipped. You get the sense that no expense was spared. \n\n![conf](https://imgprxy.stacker.news/2kWFt03V6RdtDm7Xx0aP715kHXzYTi2unuTGMrhMU7o/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvaHQ5Y1F3V2MvcmVhbGJlZGZvcmQuanBn)\n\n\nThe room filled up and the meetup started. It was very well organized and professional. The panel participants were Simrit Dhinsa from Galaxy, Marty Bent, Thomas Pacchia and Drew Armstrong. As I said earlier, the topic was the recently released Galaxy Digital Bitcoin Mining Mid-Year Report. The discussion was high signal and at times a little over my head. I have not spent much time reading about the financial side of big mining operations. Still, I learned a lot. I knew how fortunate I was to have Marty Bent participating at my first bitcoin meetup. When it got really technical, I was distracted by the loud music and crowd noise coming from the bar area. I realized that all the bitcoiners were with me in the back. The people in the front were here for the great food and drinks. This was the real genius of the Pub Key concept. Later in the evening hungry and thirsty bitcoiners would mingle with that crowd. I couldn’t think of a better setting for some serious orange pilling. \n\nWhen the panel discussion ended I left. I had a long ride home and didn’t need another beer. I reflected on my visit. One thing was certain. There was a buzz to this place. An excitement. A sense that this is where the real shit was happening. It was contagious. It got me excited. This well funded dive bar gave me hope about the future of bitcoin in New York. BitLicense be damned. Alex Gladstein will be visiting in a few weeks. I plan to be there.\n\n \N 2098 \N 404519 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.0662966505615 0 \N \N f 0 \N 0 174393850 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 13657 2023-03-25 18:02:45.027 2025-03-29 22:39:46.785 What's really scarce in btc? (The fifth post in the meta-experiment series of the Broken Money book club, part 5. Check out the [fourth](https://stacker.news/items/336205).)\n\nIf someone asked me what was the most fundamental axiom of btc, I'd probably say it's _there will only ever be 21m btc_. This is not usually that hard to wrap your mind around, although some people still [manage to be confused](https://twitter.com/frances_coppola/status/1352638416593309698).\n\nStill, I think there's a profound idea underneath the idiotic objections to btc's scarcity, and Lyn describes it here:\n\n> My primary hesitation from the very beginning was that it seemed to me like anyone could just copy the code and create a different blockchain money. With precious metals, each one is scarce, and there are only a handful of different types. With blockchain monies, anyone with a bit of coding experience can copy one of the existing ones, change a few variables, and release it. Therefore, although there will only ever be 21 million bitcoin, the concept can experience supply inflation and dilution by the introduction of countless new blockchain monies. If the market share becomes and remains highly fragmented between countless blockchains, then perhaps none of them will persistently maintain any significant purchasing power, liquidity, or security. (p. 412)\n\nBasically, while the current realized system of bitcoin will only ever have 21m btc (setting aside tail emission issues for now), there's nothing in the way of someone firing up a fork, and boom: now there's 42m 'btc'. Lather, rinse, repeat, and you can get digital scarcity multipled to infinity.\n\nTo deal with this objection, which is technically accurate, you have to really screw down your definition of what exactly is the scarce thing here. My attempt would be something like: _btc is a system which instantiates the shared commitment of a group of people to a distributed ledger with dynamics allowing only 21m coins to be created and transmitted under such-and-such circumstances._\n\nIn other words, the thing that's _really_ scarce is that collective commitment, which is not principally a technical construct. It's the thing that the "network effect" is the surface-level measure of. There was a brief stretch when there was another credible commitment of comparable size (bch, right after the fork wars) but that quickly dwindled into obscurity; and for a while eth seemed to be quite similar, before it became a system committed to a wholly other kind of thing.\n\nThe commitment that is btc is cultivated using far more than just the node software or just the hashpower deployed by miners around the world. It's everything. It's us, here, now, doing this. The software, the miners, and the rest are just the roles by which this commitment is enacted. They are not, themselves, the thing that is scarce.\n\nIf that's true, or even kind of true, it seems useful to ask about how that commitment can be cared for and strengthened? And how do we think it will evolve in the future, as it [has done ](https://medium.com/@nic__carter/visions-of-bitcoin-4b7b7cbcd24c) in the past? \N 16598 \N 13657 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.4828256981475 0 \N \N f 0 \N 0 145386853 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 244702 2024-09-23 07:57:15.587 2025-03-29 22:39:46.785 Solving the Bitcoin Adoption Dilemma *Episode X. Block height: 796000. Fixing the Bitcoin Adoption Dilemma: HODLing Bitcoin is important, but so is spending. Let me explain.*\n\nOriginal Post: https://carlbmenger.substack.com/p/the-adoption-dilemma\n\n### The Week in Bitcoin\n\n- **The ETF Wave:** On June 15th 2023, the world’s largest asset manager, BlackRock - with over $9 trillion in assets under management — shocked the TradFi world when it filed an application for a Bitcoin spot ETF. As a result, others have also filed or renewed their application with the SEC (Valkyrie, Fidelity,…) \n\n- **Deutsche Bank:** Deutsche Bank has applied to Bafin (German Federal Financial Administration) for a regulatory license to provide custody services for digital assets such as cryptocurrencies.\n\n- **Bitcoin Lightning Network** ⚡️: The Lightning network has reached a record 5,630 Bitcoin ($172 million) in capacity for the first time. The network has grown 42% in Bitcoin capacity and 105% in US dollar capacity over the past 12 months.\n\n![The Bitcoin Adoption Dilemma](https://i.postimg.cc/rmvQKHxN/IMG-0030.jpg)\n\nI know, I know, HODLING is the way to go, the mantra that is prevalent in the Bitcoin community. And according to Gresham's Law it also makes perfectly sense that you HODL the good money (Bitcoin) and spend the bad (Fiat money). \n\nNonetheless, my ElSalvador (https://stacker.news/items/161607) and Guatemala (https://stacker.news/items/171339) trip showed me that spending Bitcoin is 1) fun and 2) important for adoption, otherwise we will be stuck in the so-called “Adoption Dilemma”:\n\n> Why should companies accept Bitcoin if no one spends it and how can you spend Bitcoin if no company accept it?\n\nFor this reason, my new personal approach is Spend and Replace. What I mean by that and how I do it in countries where Bitcoin is not legal tender, I gonna show you in this episode. But first things first: Why are we hodling Bitcoin?\n\n### Gresham’s Law\n\nSimply speaking, because of Gresham’s Law, which can be described as a monetary principle that states that, “bad money will drive out good money.” The law was originally based upon the composition of coins and the overall tangible value of the metals used to make them.\n\nThroughout the history of currency, coins have been composed of precious metals, such as Gold or Silver, which gave the coins their natural value. However, over time, coin issuers would reduce the amount or percentage of precious metals used in their composition and attempted to implement them as full-value currency by law. Those were the early days of money debasement, called clipping. \n\nOf course, these coins, which now contained less Gold or Silver, were imprinted with the same higher face value, making the new coins overvalued, while old coins are legally undervalued. Governments and similar coin issuers would do this to gain revenue via seigniorage and use that revenue to pay older debts, which is nothing other than debt devaluation through inflation. Sounds familiar? \n\nSince the value of the metal in older coins are higher than metal found in new coins, citizens have a very transparent incentive to prefer those old coins with higher precious metal content. As long as both types of coins must be treated as the same unit of currency by law, buyers will pass their less precious coins on as fast as they can and hold onto their older coins. As a result, bad money will then circulate through the market and economy, and good money gets removed from market circulation.\n\n### But why hodl Bitcoin?\n\n![Superior Bitcoin](https://i.postimg.cc/QNRthB7f/photo-output.jpg)\n\nBitcoin combines the characteristics of Fiat money, i.e. the easier transfer through space, with the characteristics of Gold, i.e. the better transfer through time. Bitcoin is therefore the next logical stage of iteration, because people naturally want to escape the cost of dilution, and so the very same broader dynamic of cost minimization in regard to economic exchange, that dethroned livestock (cows) in favor of metal coins now makes itself known again.\n\nWhenever a new monetary iteration process takes place, it must be noted that these processes are not smooth and straightforward, but occur in waves. Every iteration process initially brings volatility, which only decreases as the new money becomes more widespread. It must also be emphasized that these processes are always initiated by the fact that at the beginning there are more and more people who collect and hoard (HODL) the new, superior money.\n\nThe more people hodl the new money, the higher the valuation in comparison to all other goods over time will be, this of course acts as information to the collectors, signaling that it is suddenly profitable to expend more resources in order to acquire more units. This price increase lead to more resources being devoted to producing the better money.\n\nThe fact that Bitcoin is absolutely limited to 21 million units, means that it is completely inelastic to increased demand. If Bitcoin proves to be a better (through space and time) form of money and more people collect Bitcoin for this reason, the price will have to increase compared to all other goods, because the supply can't be expanded.\n\n### Why spend Bitcoin then?\n\nSo, as we have seen, while it perfectly makes sense to HODL Bitcoin, it is also hindering adoption, as I experienced first hand in El Salvador: Many El Salvadoran entrepreneurs I have spoken with have euphorically accepted Bitcoin for goods and services, when the Bitcoin law came into effect. Maybe you remember the pictures of the ‘Bitcoin accepted’ signs in the media.\n\n![Bitcoin accepted ES](https://i.postimg.cc/4dV0cF87/IMG-0038.jpg)\n\nUnfortunately, the demand for Bitcoin payments has failed to materialize outside of some regions, thus many entrepreneurs stopped training their employees, on how to accept Bitcoin payments. As a result, many "Bitcoin accepted" signs have disappeared and one often hears, especially outside Bitcoin Beach, that Bitcoin cannot be accepted at the moment because no employee knows how to do it and/or there are some ‘technical issues’.\n\nWhy spend training resources if no one appreciates the service? In this context, I then also noticed how important it is as a Bitcoiner to ask everywhere if Bitcoin is accepted as a means of payment. Because, of course, an entrepreneur will think more about accepting Bitcoin and devoting resources to it, if a couple of people ask for Bitcoin payment in a certain period of time than none.\n\nWe must also remind ourselves, that few people are as fascinated by Bitcoin as we are. Therefore, they need an incentive to invest resources (time) to accept Bitcoin. If the company sees that it can appeal to a broader target group and thus increase its sales figures, it is more willing to invest resources than if it sees no incentive to do so at all.\n\nThus, if we all just HODL our coins, then we should not be surprised about lack of Bitcoin adoption. This is exactly what I am referring to as ‘The Adoption Dilemma’:\n\n![Adoption Dilemma](https://i.postimg.cc/WtLbnKVB/IMG-0039.jpg)\n\nAnd of course, it is up to you what you are doing with your Bitcoin stack. I also don't think that you have to spend vast sums of your hoarded coins to contribute to adoption. My approach is much more subtle: Set yourself a HODL goal and when you have reached it then switch to Spend and Replace. Your stack still increases in fiat terms over time and, at the same time, you are able to support early Bitcoin entrepreneurs and thus drive Bitcoin adoption.\n\n### The hamster wheel, again?\n\nAnd I know, the more Bitcoin you stack, the better it is. However, I often wonder if this approach really gives you the freedom you were hoping for, or if you haven't become a slave to another system again. I think everything in life always needs a certain balance, because the most important thing is lifetime, and even the biggest Bitcoin stack can't give you that. I, for example, felt the most freedom when I was travelling through El Salvador with my stack where I could contribute to the Bitcoin economy, completely independent of the fiat system. \n\nOk, Carl, I get your point, but how the hell can I spend Bitcoin if I don't live in El Salvador? With a few tricks, you can easily contribute to Bitcoin adoption. And believe me, you're going to have a lot of very interesting discussions on the way.\n\n### How to spend? \n\n#### Lightning Wallet\n\nFirst and foremost, you should download a Lightning Wallet, which you can then handle like a digital purse and use for small/microtransactions. You should be aware that these are mostly custodial, which means that you should not secure your life savings with these wallets. However, it offers the advantage that Bitcoin payments are instant and with very low fees, so yes you even can pay your coffee with Bitcoin. \n\nThere are numerous lightning wallets: Two I personally use and would recommend are Muun Wallet and Wallet of Satoshi. The beauty with those two wallets is that you can switch seemingly between on-chain and lightning transactions.\n\n#### Lightning Tip Cards\n\nOutside of El Salvador, in countries where Bitcoin is not legal tender (yet), I have gotten into the habit of tipping people in Bitcoin. This accomplishes two things: 1) The person who receives the tip has to learn about Bitcoin and sees how the network is functioning. The incentive becomes greater the more tips he/she gets. 2) This person will definitely talk to family, friends and even his/her employer about this ‘strange’ method of tipping. This can make the owner of the business aware of Bitcoin, and if it often happens, he/she will think about accepting Bitcoin in his/her store to reach more clients eventually.\n\nOf course, you are rightly asking yourself how this can be implemented in an easy and smooth way. Fortunately, there is an Austrian IT company called Satoshi Engineering (https://satoshiengineering.com/en/) that deals with these gimmicks on the side and without any financial interest. I regularly use their Lightning Tip cards (https://tipcards.io/en/), which simply can be customized, loaded up with Sats and printed out with the amount you desire to tip. Absolutely free. Check it out:\n\n![Lightning Tip Cards](https://i.postimg.cc/vZySRzZb/IMG-0040.jpg)\n\n#### Bitcoin Maps\n\nIf you want to pay directly with Bitcoin and not just tip, there is one problem: How do you know where Bitcoin is accepted? For that, there are so-called Bitcoin Maps, which list those businesses that accept Bitcoin as payment. One of them that I really like to use is BTC Map (https://btcmap.org/): You can add new business, and confirm via lightning the ones who are already mentioned in the map, so that everything stays up to date. At least check out the Bitcoin companies in your area!\n\n### The End\n\nThat's it for this episode. I hope you gathered some valuable knowledge from this one. Keep stacking AND start spending, so we can solve the Adoption Dilemma together!\n\nThanks for reading and see you hopefully in the next one. Until then, remember:**Hodling AND Spending Bitcoin matters.**\n\n₿ critical, ₿ informed, ₿ prepared. Yours,\n\n![Carl B Menger](https://i.postimg.cc/LsSX1h3m/IMG-0041.jpg)\n\n____________________________\n\n### Stay tuned:\n**Subscribe to my Newsletter**: https://open.substack.com/pub/carlbmenger/p/coming-soon\n**Follow me on Twitter**: https://mobile.twitter.com/CarlBMenger\n**Follow me on NOSTR**: https://damus.io/npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### B informed:\n[IX] NOSTR: Social Media 2.0: https://stacker.news/items/189821\n[VIII] The Bitcoin Retirement Plan: https://stacker.news/items/183327\n[VII] Bitcoin in Guatemala: https://stacker.news/items/171339\n[VI] Bitcoin in El Salvador: https://stacker.news/items/161607\n \N 14122 \N 244702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2563855506732 0 \N \N f 0 \N 0 82765842 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 110402 2024-01-10 07:08:34.687 2025-03-29 22:39:46.785 @DarthCoin Translation Guide I have learned during my time on Stacker News that it is sometimes difficult to understand @DarthCoin when he responds to a post. This is a shame, since he writes great guides, is an OG bitcoiner, and is a good source of knowledge.\nTherefore, I have created a little translation guide of my own to assist those having difficulty understanding him :\n\n## If @DarthCoin says: \n\n“You are a fucking moron.” \n\n## What He Means: \n\n “I think perhaps with regard to this particular issue you are mistaken.”\n\n## If @DarthCoin says: \n\n“You are a fucking shitcoiner.” \n\n## What He Means:\n\n“Good sir, I think that at this point you really don’t perceive the differences between bitcoin and the coins that were created after bitcoin through a centralized, pre-mine process”\n\n## If @DarthCoin says:\n\n“Fuck the Banks and Govs”\n\n## What He Means:\n\n“I believe that switching to a bitcoin economy obviates the need for financial institutions and will increase self autonomy.”\n\n## If @DarthCoin says:\n\n“I don’t give a shit about the price.”\n\n## What He Means:\n\n“It is unnecessary to focus on the day to day gyrations of the value of bitcoin as expressed in US dollar terms.”\n\n## If @DarthCoin says:\n\n“People are retarded.”\n\n## What He Means is:\n\n“There are many folks who don’t have the intellectual capacity or desire to learn about bitcoin.”\n\n### **I welcome additions, corrections and suggestions to improve this guide.** \N 652 \N 110402 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 8.50912595118114 0 \N \N f 0 \N 0 55697341 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138163 2024-03-07 04:35:11.531 2025-03-29 22:39:46.785 What Is the Song Of This Bull Run? Every bull market, Bitcoiners determine an anthem to obnoxiously play over and over again while talking about the dollar price of Bitcoin going up. The song is always misappropriated from the fiat music industry, because no Bitcoiner has been creative enough to make a high quality anthem to lead the wrathful DCA charge. \n\nFiat maxis be damned. We will jam so hard this bull run. \N 1272 \N 138163 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.0856624823999 0 \N \N f 0 \N 0 108384854 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 225386 2024-09-01 20:51:28.48 2025-03-29 22:39:46.785 Setting Up My First Meshtastic Radio \n![](https://m.stacker.news/58688)\n\n### The Potential\n\nSome of you may have read my recent [post](https://stacker.news/items/722173/r/siggy47) about the possibility of using meshtastic software with a LoRa radio for OTA (over the air) bitcoin transactions. \n\nI first got excited about this technology because of this article:\n\nhttps://bitcoinmagazine.com/technical/making-bitcoin-unstoppable-part-one-mesh-nets\n\nHere’s a passage I really liked:\n\n> With a mesh network, we completely decentralize our communication infrastructure, as anyone can become an ISP in the network. Individuals may choose to offer mumble or matrix servers for communication or provide local access to Wikipedia, while open channels in the Lightning Network can be used to facilitate bitcoin transactions without an uplink to the broader internet. Mesh networks are also cost-efficient to deploy as already available hardware can be used to facilitate communication and provide unprecedented benefits for people who live under circumstances susceptible to disruptions of internet access. \n\nThen I found this article, which is much more technically in depth:\n\nhttps://d-central.tech/can-i-send-bitcoins-with-mesh-networks/\n\nI recommend you read this if you want to learn more about the network and the possibilities for bitcoin transactions.\n\n\nIt took me a while to actually get a radio and start to learn about this technology. I was a ham radio operator for years, though I let my license lapse. I like these unregulated bands better anyway. Also, licensed hams are prohibited from engaging in commercial transactions. My goal is to transact on the Lightning Network. \n\n### Some Useful Links\n\n\n- Meshtastic github\n\nhttps://github.com/meshtastic \n\n- Mesh Map Worldwide\n\nhttps://meshmap.net/#1947155171 \n\n- Review of Lilygo T-Echo and other radios\n\nhttps://adrelien.com/blog/what-is-the-best-device-for-meshtastic/ \n\n### Lilygo T-Echo setup for Meshtastic. \n\nI decided to buy a Lilygo T-Echo. It is an out of the box ready to go radio, unlike many DIY kit choices you may decide to buy. @kepford just bought a RAK Pocket https://store.rokland.com/products/wismesh-pocket. His radio is nicer and a little higher end than mine. \n\nThe T-Echo comes fully assembled with a USB cord and detachable antenna. Be sure to attach the antenna before plugging it in. The first thing you must do is load the meshtastic firmware on the radio. Go to this site: https://store.rokland.com/pages/lilygo-t-echo-getting-started-quick-guide-meshtastic You must unlock the bootloader on your device before you can connect it to your computer. To unlock the bootloader on the T-Echo, click the reset button (top button on the left side of the device) twice. A new drive for the device will now be mounted on your computer. Next, download and flash the firmware for your radio. \n\n![](https://m.stacker.news/58695)\n\n![](https://m.stacker.news/58696)\n\n\nI downloaded the stable version of ntf52840 for the T-Echo. Next, you simply drag the downloaded file to the new drive that appeared on your computer when you unlocked the bootloader. \n\n#### Linux Issues\n\nI had a nightmare trying to load the firmware on Linux with my Ubuntu laptop, but easily did it on my wife's windows laptop. @kepford gave me advice regarding linux, but none of the tips worked for me. He’s the guy to ask if you must flash the firmware with linux. He suggested you only use the Chrome browser, along with other advice I can't find right now. My own research led me to this one line terminal command to solve the issue\n\n```sudo usermod -a -G dialout USER```\n\nbut this did not work for me. \n\n@kepford also located a possible permission issue through a web search, which can be resolved by running \n\n```chmod a+rw /dev/ttyACM0 ```\n\nbut, once again, it did not work for me. \n\nKeep in mind that you may get an error signal "Not enough space on drive" or error copying file. Ignore the error notices. When the file is downloaded the radio will reboot into the meshtastic firmware. \n\n### Pairing Your Phone To Your Radio\n\nNext, download the meshtastic app from your phone. I have a graphene pixel and don’t use Google or Apple stores, so I got the app from @franzap 's zapstore. https://github.com/zapstore/zapstore-cli By the way, I highly recommend the zap store. The app is also available on fdroid. I don't know about the Apple version. \n\n![](https://m.stacker.news/58697)\n\n\nI paired the device with bluetooth. The pin to pair the radio to your phone will appear on the Lilygo T-Echo screen once you click “pair new device” on your phone . If you are using graphene, be sure to grant the app location permission to turn on the GPS. Click the + button on the meshtastic app on your phone to connect your radio. The first thing you must do is set a geographic region. Allow the app to find connected devices, then select your radio. It will give your radio a short alpha numeric name, which you can edit.\n\nNow your radio is operational and able to find other local devices. So far I have made no connections. I think I will need to install a high antenna to improve my range, but that’s for another post. \n\n### The Future Of Meshtastic\n\nIt quickly becomes obvious when doing some research that this is an area where the potential for bitcoin has been barely explored. There are lots of useful youtube videos that will teach you about the meshtastic network, but very few that will actually address using it as a means to transact with bitcoin. This was all I could find:\n\nhttps://www.youtube.com/watch?v=Wir_cRNKNQA\n\nThere is not much to work with, but if there are any developers out there looking for fertile ground, this might be it. I envision someone building a lightning wallet that can interface with the meshtastic firmware. I have no idea how difficult this would be, or if it’s even possible. In any event, it's probably too early. The network needs to grow to make this a practical solution.\n\n \N 1814 \N 225386 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.45375329446754 0 \N \N f 0 \N 0 33510049 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437181 2025-03-14 11:19:57.53 2025-03-29 22:39:46.786 BitVM Online - Play with tapleaf-circuits (by supertestnet) \N https://supertestnet.github.io/tapleaf-circuits/ 4225 \N 437181 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 21.1914790416929 0 \N \N f 0 \N 0 45037318 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 137162 2024-03-05 20:59:26.588 2025-03-29 22:39:46.786 Incentivizing Downzapping This is a follow up to my post yesterday [Punishment is a Public Good](https://stacker.news/items/619793/r/Undisciplined). Thank you to everyone who read, commented, and zapped that post. I really appreciate it.\n\nNow I want to think through the implications of that topic for Stacker News, specifically. Before I jump into it, @Signal312 started this whole conversation with his post [Low value, throw away comments - why are they made?](https://stacker.news/items/619397/r/Undisciplined), so if you want to follow the entire discussion, check that out.\n\n## The Problem\nIn brief, there's a free-rider problem with downzapping. Whoever downzaps bad content pays the full cost of the downzap, while we all benefit from bad content being outlawed. That means we each have an incentive to let someone else do the downzapping, which leads to less/slower downzapping than would be optimal.\n\n## Possible Solutions\n#### Status Quo\nFirst off, we may not need to do anything. The tools currently available to us (downzapping, muting, ignoring) may be sufficient. As I review the literature on public goods games, oftentimes simply allowing peer punishment performs better than more complex punishment schemes.\n\nIt also appears that individualized positive rewards for contributions, like we have, perform better than punishment in some experiments.\n\n#### Use the Current Rewards System\nTo me, the most obvious option (which certainly doesn't mean it's the right one), is to fold this into the rewards system. Downzapping bad content early could be treated the same way as zapping good content early. There are disincentives to downzapping good content that are already in place (it hurts your trust score), so we shouldn't have a major downzapping problem. \n\nI'm thinking that "bad content" would mean content that got outlawed. There could also be a cap on what gets rewarded, by not counting downzaps on content that is already outlawed.\n\n#### Use the Trust System\nIn the comments of the linked post (https://stacker.news/items/619397/r/Undisciplined?commentId=619707), @Signal312 and @didiplaywell were discussing the possibility of having muting impact trust scores. It makes sense to me that muting someone should drive your trust score with them to zero. \n\nWould something like that be sufficient to reduce the reach of spammers, to the point that they don't bother trying? Btw, check out their comments, because there's more detail and substance than I'm relaying.\n\nThe trust system is part of developing a reputation on SN, in addition to your literal reputation amongst the stackers. Many public goods experiments have found reputation to be very effective at reducing anti-social behavior.\n\n#### Stacker Sherrifs\nHere's a fun idea that came out of talking to @Coinsreporter and @carlosfandango (https://stacker.news/items/619793/r/Undisciplined?commentId=620797). We could have sheriffs of Stacker News! How on brand is that?\n\nIt turns out there are some papers demonstrating that designated punishers can be superior to strictly relying on peer punishers. One of those [papers](https://iopscience.iop.org/article/10.1088/1367-2630/16/8/083016) even finds that randomly designating the punisher each round is the most stable solution to sharing the costs of punishment.\n\nThis could be implemented right alongside current downzapping. The sheriff(s) would be notified of their status first thing in the morning and that's that. The literature appears to indicate that human altruism will take care of the rest. \n\nExtra bells and whistles \n* There could be a tip jar that gets divvied up amongst the sheriffs.\n* They could get the rewards described above for downzapping.\n* Their downzaps could be stronger.\n\n## Conclusion\nWe may be fine as is, but there are also some interesting options to pursue that would reduce the likelihood of a serious spam problem emerging. Downzapping and reputation are likely the most important tools to have and we already have them.\n\nMinor tweaks to the rewards and trust systems could help, but should be undertaken with caution. We don't want to over incentivize downzapping, since we're probably near the optimum already.\n\nSimply selecting a few random sheriffs everyday would be extremely on brand and there's a good chance that it would help.\n\n## References\nhttps://thecommonsjournal.org/articles/10.18352/ijc.426\nhttps://link.springer.com/article/10.1007/s11403-022-00363-8\nhttps://www.nature.com/articles/s41598-024-57842-0\nhttps://iopscience.iop.org/article/10.1088/1367-2630/16/8/083016\nhttps://royalsocietypublishing.org/doi/10.1098/rspb.2008.1082 \N 3729 \N 137162 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.34581274486643 0 \N \N f 0 \N 0 109008590 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 308151 2024-11-25 16:22:30.824 2025-03-29 22:39:46.786 They Aren't Sending Their Best to Fight Bitcoin. Right? I say it over and over again. They aren't sending their best. I'm referring to the [Gary Gensler interview on MSNBC's SquawkBox](https://twitter.com/SquawkCNBC/status/1757775320994730442). It was interesting to listen to his criticisms of Bitcoin. It's especially interesting when you realize that this man taught a course at MIT on Bitcoin. Many Bitcoiners are familiar with the course, and have called out his nonsense, his lies, and misrepresentation of Bitcoin since his time at MIT. I thought I would jot down some of my thoughts. Most Bitcoiners could write this but I wanted to get this out of my system. It seems pretty clear to me that Gary decided long ago to say what he needs to say to get into the positions he wants to get into. He's a shill for fiat plain and simple. He's a political animal. A bureaucrat who is doing the bidding of his overlords. With that out of the way, here are a few of the issues Gary Gensler seems to have with Bitcoin. More accurately, most of these are issues with crypto and the human race, not Bitcoin.\n\n## Fraud\n\nWhile SBF wasn't mentioned he's the best example. This has nothing to do with Bitcoin. Fraud exists all over economies. What Gary is really pointing out is the SEC's impotence. They cannot prevent fraud and Bitcoin just exposes their lack of power and control. The populace should not trust the state to keep them safe because it cannot. And if it cannot then why does it exist? Why does it (SEC) have a monopoly. What if we had many watchdogs over markets that one could go to for confirmation that an organization is operating above board. Oh yeah, we do. Its called Bitcoin's block chain.\n\n## Bankruptcies\n\nYet another example of something that isn't about Bitcoin. Its about companies taking risks and failing. Its about companies taking people's money and doing foolish things with it. Its called a free market. When companies fail, people learn lessons. Come on Gary. You know this.\n\n## Centralization (Exchanges)\n\nGary said financial markets tend toward centralization. Gary was talking about crypto exchanges. He says there are only a handful. It is interesting to me to point this out as a weakness of Bitcoin when all fiat currencies are completely centralized. Exchanges are not the currencies. They are not the asset. The reason there are so few exchanges has more to do with Gary than Bitcoin. Bitcoin does have centralization risk. Its with miners but the threat comes from the state. Not the protocol or Bitcoin the asset.\n\n## Illegal activity\n\nGary was asked about the tired line about Bitcoin being used for criminal activity. The host mentioned Jamie Dimon's comment that he would shut it down. As a reminder Dimon's bank was the one used by Jeffrey Epstein. Epstein didn't use Bitcoin. Joe Kernen would have none of it. He rightly pointed out that the criminal activity that uses the dollar far exceeds that done with Bitcoin. But this is really ceding the point. All currencies are used to do good and bad things. Always have been and always will be. The idea that someone like a banker could complain about this is laughable. Gary points out that Bitcoin is the leading token used by ransomeware. I do not know if that is accurate but it doesn't matter. This is like pointing out that we should not use the Internet because it is used for bad things. This debate gets us off topic. The fact that Bitcoin is used as a medium of exchange by criminals is a strong case for its utility. One could even make the case that ransomeware is the ONLY thing that is forcing companies to improve their security. Those of us in the tech field have been pushing for greater security for years and have largely been ignored. Ransomeware threats have changed that.\n\n## Just an Accounting System\n\nThe one that really got me though was Gary saying "How many times do you have someone on this show saying they want to invest in something because of how the books and records are kept?". Gary knows this is BS. What Gary is trying to do here is categorize Bitcoin as an asset only and not as peer to peer cash system. Its both and he knows it. Gary describes currencies as mediums of exchange that are used in an economic area such as the United States, the European Union, or China. While this isn't wrong, Bitcoin breaks this model by making a currency that knows no borders, knows no managers, and has no centralized control mechanism. It is freedom money. Internet money. Anyone can use it and no one can stop you from using it.\n\nThen Gary asked Joe Kernen if he trusted Bitcoin more than an Oracle database. That one took the cake. Bitcoin has a ledger that anyone can audit, which has thousands of instances (nodes) across the globe. Anyone can use their node to confirm their transactions. Bitcoin is open source. Anyone can audit the code. Anyone can use their node to audit the supply of currency in the system at any point in time. This has never existed in the history of humankind and to compare it to the dollar Is ridiculous on that face. He knows this. I believe he doesn't want the masses to know what Bitcoin is. This is the real threat. The masses understanding the status quo and that there already exists a better system. The value of Bitcoin is not only that the supply is capped but that the network is secure and you do not have to trust third parties. You can directly transact with anyone using any amount over any distance. The accounting system and network are key to the value prop of Bitcoin. Gary says, "Its just an accounting ledger". You know what. He makes a good point. This is what most shit coins are. Just an accounting ledger with no network affect, not decentralization, and no proof of work network protecting the ledger. But he wasn't talking about crypto. He was talking about Bitcoin. Come on Gary.\n\n## Is this the best they can do?\n\nIs Gary really this bad at speaking out against Bitcoin? Or is it that he doesn't believe he needs to counter Bitcoin as a new currency, as a new store of value, as a revolutionary method of exchanging value and transporting it through time and space? My best guess is that Gary is used to going on these shows, like SquawkBox, and getting a bunch of softball questions with no follow-ups. No one usually forces him to prove his points with facts and data. He just depends on the fiat world to support his false claims without reservation. What I really wonder is that if Gary, for some reason, was willing to debate a good Bitcoiner on its merits would he actually come up with anything better than what we've heard from him so far? I really truly wish there were more critics of Bitcoin that would have a good honest debate. A debate on the merits of Bitcoin, its problems, its weaknesses, in an honest forum without stooping to these dumb, arguments that are easily quashed.\n\nWe Bitcoiners have these debates. We talk about the struggles and issues that Bitcoin could face, and it currently does face. We talk about its weaknesses as points of vulnerability. We also know that Bitcoin could be destroyed by the dollar if the central bankers would stop printing, would remove the power and ability of their system to inflate the currency. If they would simply go back to a Gold standard, but we know that this will never happen because it would require the central bankers and the politicians to have restraint. To put their well-being behind the rest of us. We know that they do not care about our long term well being. They only care about getting votes and enriching themselves. They are slaves to the fiat system of high time preference behavior.\n\nOver the years of studying Bitcoin, I've come to the position that yes it is not perfect. There are issues, but I am not aware of any issues that make Bitcoin a worse standard to live on than fiat. It is superior in every way that I can see. I have concerns about privacy. I have concerns about mining centralization, but all of these concerns pale in comparison to the threat of fiat. Fiat will collapse, we know that it will happen. All fiat currencies eventually fail. All empires fall. And when the United States empire based on the US dollar fails, the carnage is going to be extreme. I'm thankful we do have an escape hatch. I'm thankful that we can use it today. It's truly a reason for hope.\n\n \N 18615 \N 308151 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.5933137065388 0 \N \N f 0 \N 0 150123522 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 187069 2024-06-19 19:30:19.124 2025-03-29 22:39:46.786 Easter Sunday Orange Pilling \n### Easter At Our House\n\nMy wife and I always host a family Easter Sunday dinner. This year it was a pretty small gathering of six people. My brother in law came with his son, who is in his early twenties. We had a few drinks and antipasto before dinner. My wife made home made manicotti using her mother's recipe for the first time. It was truly delicious, and got the stamp of approval from her 95 year old mom, who’s appetite isn’t what it used to be. \n\nEveryone was feeling good and relaxed. My brother in law and I have spoken about bitcoin many times over the years. Like most people, he has always been skeptical. I talked to him during Christmas dinner in 2022, when bitcoin was around $16,500 or so. I tried to get him to buy as much as he could afford, but he wasn’t convinced. He had seen the SBF headlines proclaiming the collapse of bitcoin. \n\n### Non-Compliance\n\nMy brother in law is a teamster truck driver. He’s a sharp guy and a natural anarchist. He taught me a few things about standing up to authority during covid. He is an excellent worker. He gets up at 3:00am to drive his local routes around New York City. The company he works for has a lot of trouble finding reliable drivers. Either they don’t show up on time, fail the frequent drug tests, or are generally unreliable. My brother in law is old school. He had his own asphalt paving company for 25 years, so from his perspective this truck driving job is easy. When covid hit, he was told he had to wear a mask at work. He just said no. They said they would have to fire him. He called their bluff. They didn’t want to lose him, so they set up a chair in the hall and would bring him out the paperwork he needed to complete before getting in his truck. Eventually they just let him inside without a mask. When the vaccines came out, he was told he had to get vaccinated as a condition of employment. Again he said no. They said he would be fired. He said he didn’t care. They then allowed him to take a covid test every day instead of getting vaccinated. After about a week, he said he wasn’t getting tested anymore. They said they would then have to fire him. The next day, he showed them the now outdated covid test result from the day before, and continued to show them that same test result paper has it aged, day by day. They pretended not to notice the date. He never lost his job.\nSince covid, he has become interested in politics, but he will not support any party or candidate. He has no faith in the government. \n\n### The Breakthrough\n\nDuring dinner I said a few things about bitcoin, and we talked about his son’s new job as an air traffic controller. My nephew is a very smart kid. We talked about stuff like his salary, health benefits, etc. My brother in law said something like “talk to your uncle. He probably made a killing with bitcoin.” He had obviously been aware of bitcoin enough to know the price. It turned out my nephew, though skeptical, knew a little about “crypto”, and had obviously done some reading. At one point he said, “hey, what about Eth?” My wife, of all people, without missing a beat, said “that’s a shitcoin.” I was so proud. He said he didn’t want to lose money buying any coins. I told him to just buy bitcoin, and to start with a small amount, an amount small enough for him not to get all upset if it goes down. I did not want to over complicate matters, nor did I want to send him the coinbase route, so I settled on cash app, which he was already familiar with. Not ideal, but I thought it was best in his case. I told him to buy a little, and then to start reading. I opened my Zeus app and explained to him about my node and a little about mining. I wish I had my bitaxe running, but that’s still on hold for now. At some point during the conversation my brother in law asked him to set up cash app for him on his phone when they got home. He wanted to set up a dca. Yesterday I got word that they both made their first buys. I will keep tabs on their progress. \N 10934 \N 187069 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.8407535296675 0 \N \N f 0 \N 0 178701154 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 190666 2024-06-27 17:29:00.811 2025-03-29 22:39:46.786 Mutiny Wallet First Release With Fedimint Support Ready For Alpha Testing https://media.primal.net/uploads/3/8f/36/38f365570a7f187cb35649b719896f1c341fa3e897625bf9e726da7bcf7e1013.png\n\nhttps://njump.me/nevent1qqsgjddqu3wvwsn4efynhs9d3dugnlwdvcewfptzl0ga0autzl9dnecpz9mhxue69uhkummnw3ezumr49e4k2qgswaehxw309ahx7um5wgh8w6twv5pzphchxfm3ste32hfhkvczzxapme9gz5qvqtget6tylyd7wa8vjecgqvzqqqqqqyhzwtne \N 10849 \N 190666 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.1437197985417 0 \N \N f 0 \N 0 143334777 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 195550 2024-07-06 16:31:05.735 2025-03-29 22:39:46.786 Lyn Alden AMA Hi everyone,\n\nMy name is Lyn Alden and I’m doing an AMA for the next hour.\n\nFor people that don’t follow my work, I was originally an electronics engineer by trade, moved into engineering management, and then shifted focus towards macroeconomics and investment analysis. A lot of my work focuses on what’s happening with the money system, equities, and commodities.\n\nFor the past 2.5 years I’ve been involved with bitcoin as well. Most of my work has involved analyzing the network for a mainstream audience. I’m also an independent board director for Swan Bitcoin, and an advisor to ego death capital, which is a bitcoin-only VC firm.\n\nHappy to answer questions if anyone has any!\n \N 6578 \N 195550 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 23.259664620975 0 \N \N f 0 \N 0 162749773 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3396 2022-10-31 16:19:09.53 2025-03-29 22:39:46.786 SN release: API keys, purchase archived territories, inc boost min, bug fixes - API keys\n - You can request API access, see your [settings](/settings), if you're interested in creating a bot like @hn.\n- purchase archived territories\n - any archived territories are available for purchase by creating a territory with the same name\n- boost minimum is 50k sats\n - it used to be 25k sats but as more people participate in zapping, small boost amounts become footguns\n- opt-in disable creating referral links on `copy link` from your [settings](/settings)\n- lots of bug fixes\n\nMost of this work was done by @ek\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------\n\nWe've begun paying out open source contribution awards. View an up to date list of distributed awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n------------\n\nPrevious release: https://stacker.news/items/466556\nComplete list of changes: https://stacker.news/changes\nQ4 recap and Q1 roadmap: https://stacker.news/items/381208 \N 21119 \N 3396 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 25.6639010517472 0 \N \N f 0 \N 0 126664296 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 49406 2023-08-13 14:15:16.365 2025-03-29 22:39:46.786 Solving subscriptions on Bitcoin, one zap at a time \N https://blog.mutinywallet.com/solving-subscriptions-on-bitcoin-one-zap-at-a-time/ 9351 \N 49406 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.6992419695856 0 \N \N f 0 \N 0 123618363 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422970 2025-03-02 20:23:56.166 2025-03-29 22:39:46.786 Ecash on Bitcoin Educational Resources # Ecash on Bitcoin Educational Resources\n\n*Most of the resource pages for ecash haven't been updated in a while (probably because the people who made them are too busy building amazing things) so here's my attempt to assemble a list of educational resources for learning about ecash. Please let me know in the comments about any articles or resources that I've missed. I'm particularly interested in adding some long-form critiques of ecash on bitcoin.*\n\nI've been trying to learn about ecash implementations on bitcoin and have come across a lot of useful resources. Here is a post where I'm assembling them all in one place in case anyone else would like to check them out. I've listed most of the articles and podcasts by date (most recent first) so you can follow the evolution of discourse on the topic.\n\n# Protocols\n\n1. [Fedimint](https://fedimint.org/) is an implementation of ecash on Bitcoin where the mint is operated by a federation of guardians. You can get new coins from a fedimint by sending bitcoin to an address controlled by the federation or by paying a lightning invoice at a lightning node that is willing to talk to the mint for you. **If you are interested in trying it out, some popular wallets using fedimints are [Mutiny](https://www.mutinywallet.com/) and [Fedi (signet)](https://www.fedi.xyz/builders).**\n\n2. [Cashu](https://cashu.space/) is an implementation of ecash on the Lightning Network where the mint is a Lightning node and you can mint new tokens by paying a lightning invoice. **If you are interested in trying it out, some popular wallets using Cashu mints are [Nutstash](https://nutstash.app/), [Minibits](https://www.minibits.cash/), and [eNuts](https://www.enuts.cash/).**\n\n# Guides\n\n- [DarthCoin's guide for setting up a mint](https://darthcoin.substack.com/p/bitcoin-adoption-using-ecash)\n- [Mutiny Tutorial by BTC Sessions](https://www.youtube.com/watch?v=vHQ6wgT3S2I)\n- [Cashu Tutorial by BTC Sessions](https://www.youtube.com/watch?v=riTRD0BdMDI&t=861s)\n- [Super Testnet's guide for building your own toy Cashu implementation](https://www.youtube.com/watch?v=xfYmwc-gnK8)\n- [Mutiny Wallet Text Guide by @runningbitcoin on Stacker.News](https://stacker.news/items/467711)\n- [Minibits tutorial by BTC Sessions](https://www.youtube.com/watch?v=igJF8ccMnbQ)\n- [Enuts tutorial by BTC Sessions](https://www.youtube.com/watch?v=xhDQT4TeNIU)\n- [Fedi tutorial by BTC Sessions](https://www.youtube.com/watch?v=um2VL22R-J0)\n\n# Articles / Videos\n\n2024-06-10 [Cashu: A Vision for a Bitcoin-Powered Ecash System](https://bitcoinmagazine.com/technical/cashu-a-vision-for-a-bitcoin-powered-ecash-ecosystem) by Shinobi\n\n2024-05-30 [Summarizing My Thoughts on Ecash](https://stacker.news/items/556907) by @sethforprivacy\n\n2024-05-27 [Plebdevs Theory: Cashu Gets Nuttty](https://www.youtube.com/watch?v=zhJZnxaLLU4) by @gudnuf\n\n2024-05-25 [Is Cashu and Bitcoin Ecash the Future?](https://www.youtube.com/watch?v=KiCGUWJ50Uo) by Ian Major\n\n2024-05-21 [Bitcoin Fixes Ecash](https://www.tftc.io/bitcoin-fixes-ecash/) by Marty Bent\n\n2024-02-21 [Ecash for Better Bitcoin Privacy](https://habla.news/a/naddr1qqsx2cmpwd5z6en0wgkkyet5w3jhyttzd96xxmmfdckhqunfweskx7gzyr05etlwshmew625tpgakgp23pt0stwfza2gpy78vresjjykaxrmyqcyqqq823csnndk7) by @maxmoney21\n\n2024-01-22 [MEOW: Mint Ecash on Will](https://delvingbitcoin.org/t/meow-mint-ecash-on-will/466) by @1440000bytes\n\n2024-01-21 [Ecash is Self-Custodial](https://stacker.news/items/395461) by Tony Giorgio\n\n2023-11-06 [Banks Without Bankers](https://www.axiombtc.capital/banks) by Eric Yakes\n\n2023-08-12 [Bitcoin Demonimated Ecash without Custodial Risk](https://gist.github.com/moonsettler/42b588fa97a1da3ac0adea0dd16dadf2) by @moonsettler\n\n2022-11-08 [Fedimint Uses Trust to Change Bitcoin Self Custody](https://bitcoinmagazine.com/culture/fedimint-uses-trust-to-change-bitcoin-self-custody) by Obi Nwosu\n\n2022-10-18 [Chaumian Ecash in Bitcoin - Cashu and Fedimint](https://www.youtube.com/watch?v=VwMzNE1D3so) by @waxwing\n\n2022-07-26 [Can Fedimints Help Scale Bitcoin to the World?](https://bitcoinmagazine.com/culture/will-fedimints-bring-bitcoin-to-the-world) by Alex Gladstein\n\n2022-03-12 [Fedimint - The Evolution of Bitcoin Custody](https://bitcoinmagazine.com/technical/fediment-evolution-of-bitcoin-custody) by Obi Nwosu\n\n[Nuts and Bolts (Cashu Explainer)](https://nuts-and-bolts.gandlaf.com/) by @gandlaf21\n\n# Podcasts\n\n2024-05-28 What Bitcoin Did EP818: [The Fight for Bitcoin with Ben Carman & Tony Giorgio](https://www.whatbitcoindid.com/podcast/the-fight-for-bitcoin-carman-and-giorgio)\n\n2024-04-20 What Bitcoin Did EP802: [A CheatCode for Payments with Natalie Brunell, Ben Arc, Calle, & Obi Nwosu](https://www.whatbitcoindid.com/podcast/a-cheatcode-for-payments)\n\n2024-04-09 Citadel Dispatch EP124: [Mutiny Wallet with Tony, Ben, and Paul](https://serve.podhome.fm/episodepage/CitadelDispatch/cd124-mutiny-wallet-with-tony-ben-and-paul)\n\n2024-03-18 Citadel Dispatch EP 120: [Bitcoin Powered Chaumian Ecash with Calle](https://serve.podhome.fm/episodepage/CitadelDispatch/cd120-bitcoin-powered-chaumian-ecash-with-calle)\n\n2024-02-27 Stephan Livera Podcast EP 553: [The Future of Bitcoin Banking with Eric Yakes](https://podcasters.spotify.com/pod/show/stephan-livera/episodes/The-Future-of-Bitcoin-Banking-with-Eric-Yakes-SLP553-e2gb7mo)\n\n2024-02-19 Stephan Livera Podcast EP551: [What’s Next for Bitcoin and Mutiny Wallet with Ben Carman](https://podcasters.spotify.com/pod/show/stephan-livera/episodes/Whats-Next-for-Bitcoin-and-Mutiny-Wallet-with-Ben-Carman-SLP551-e2fvrke)\n\n2023-10-28 Bitcoin Takeover Podcast S14 E18: [Lisa Neigut & Calle on Scaling Bitcoin & Free Open Source Software](https://bitcoin-takeover.com/audio/?name=2023-10-28_s14_e18_lisa_neigut__calle_on_scaling_bitcoin_and_free_open_source_software.mp3)\n\n2023-10-09 Bitcoin Audible: [FEATURING AI Unchained #008 - Ecash and Ai with Obi Nwosu](https://bitcoin-audible.castos.com/episodes/featuring-ai-unchained-008-ecash-and-ai-with-obi-nwosu)\n\n2023-05-12 What Bitcoin Did EP657: [How Fedimint Scales Bitcoin with Obi Nwosu](https://www.whatbitcoindid.com/podcast/how-fedimint-scales-bitcoin)\n\n2023-05-12 TFTC EP 419: [Fedi Is Connecting Communities With Freedom Technology with Obi Nwosu](https://podcasters.spotify.com/pod/show/tales-from-the-crypt/episodes/419-Fedi-Is-Connecting-Communities-With-Freedom-Technology-with-Obi-Nwosu-e23t3oc)\n\n2023-04-19 What Bitcoin Did EP647: [Scaling Bitcoin Privacy with Calle](https://www.whatbitcoindid.com/podcast/scaling-bitcoin-privacy)\n\n2023-03-01 What Bitcoin Did EP625: [The Future of Bitcoin Banking with Eric Yakes](https://www.whatbitcoindid.com/podcast/the-future-of-bitcoin-banking-eric-yakes)\n\n2023-01-28 Bitcoin Takeover Podcast S13 E1: [Eric Sirion & Obi Nwosu on Fedimint & Fedi](https://bitcoin-takeover.com/audio/?name=2023-01-28_s13_e1_eric_sirion_obi_nwosu_on_fedimint__fedi_final.mp3)\n\n2022-09-08 What Bitcoin Did EP551: [Fedimint & the Future of Bitcoin Custody with Obi Nwosu](https://www.whatbitcoindid.com/podcast/fedimint-the-future-of-bitcoin-custody)\n\n2022-08-13: Bitcoin Magazine Podcast: [Bitcoin Fedimints Offer Privacy in Exchange for Trust and Custody](https://bitcoinmagazine.com/technical/bitcoin-fedimints-trade-privacy-for-trust-and-custody)\n\n2022-07-26 Bitcoin Audible Read 639: [How Fedimint Scales Bitcoin Custody (Namcios)](https://bitcoin-audible.castos.com/episodes/read-639-how-fedimint-scales-bitcoin-custody-namcios)\n\n2022-07-25 TFTC EP 346: [Diving into FediMint with the Fedi team](https://podcasters.spotify.com/pod/show/tales-from-the-crypt/episodes/346-Diving-into-FediMint-with-the-Fedi-team-e1lihst)\n\n2022-07-21 Once Bitten! EP267: [@obi - Introducing A New Way To Custody #Bitcoin!](https://podcasters.spotify.com/pod/show/daniel-prince6/episodes/obi---Introducing-A-New-Way-To-Custody-Bitcoin--267-e1lgv1n)\n\n2022-07-19: Bitcoin Fundamentals EP 87: [Bitcoin Fedimint - A Decentralized Custody Protocol w/ Obi Nwosu](https://www.theinvestorspodcast.com/bitcoin-fundamentals/bitcoin-fedimint-obi-nwosu/)\n\n2021-12-16 Stephan Livera Podcast EP 331: [Eric Sirion - MiniMint, Federated Mints for Bitcoin scaling and privacy](https://podcasters.spotify.com/pod/show/stephan-livera/episodes/SLP331-Eric-Sirion---MiniMint--Federated-Mints-for-Bitcoin-scaling-and-privacy-e1bq8n0)\n\n2021-11-23 Citadel Dispatch EP 45: [The future of mobile lightning wallets with @ericsirion, @akumaigorodski, and @fiatjaf](https://anchor.fm/tales-from-the-crypt/episodes/CD45-the-future-of-mobile-lightning-wallets-with-ericsirion--akumaigorodski--and-fiatjaf-e1anmd0)\n\n2020-01-20 What Bitcoin Did EP184: [Bitcoin's Pre-History and the Cypherpunks with Aaron van Wirdum](https://www.whatbitcoindid.com/podcast/the-beginners-guide-to-bitcoin-part-3-bitcoins-pre-history-and-the-cypherpunks-with-aaron-van-wirdum)\n\n# Resource Pages\n\n- [Awesome Cashu](https://github.com/cashubtc/awesome-cashu)\n- [Fedimint Docs](https://fedimint.org/docs/intro)\n- [Bitcoin Mints](https://bitcoinmints.com/)\n- [Cashu Mints](https://cashumints.space/) \N 675 \N 422970 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.4145711946158 0 \N \N f 0 \N 0 49953805 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52864 2023-08-20 16:20:40.947 2025-03-29 22:39:46.786 We're Max Fang and Philip Hayes, co-founders of Lexe (lexe.app). AMA Hi everyone,\n\nWe (Max and Philip) are working on a new self-custodial Lightning wallet called Lexe which can send and receive funds 24/7. We want to make Lightning as simple as using a mobile app, letting users custody their own keys, giving our users the ability to receive and settle payments 24/7 without having to run any infrastructure themselves.\n\nThe core technology that powers our product is Intel SGX, which allows programs to run in an hardware enclave completely isolated from the rest of the software stack, even the operating system. You might have heard of confidentiality of data at rest and in transit - SGX is part of a class of hardware-based technologies called TEEs (Trusted Execution Environments) which allows data to remain confidential in use, among other things. After seeing the Lightning ecosystem struggle with 24/7 interactivity and async payments, we thought: "What if we ran an entire Lightning node inside an SGX enclave? Then our users could be online all the time without giving us access to their keys." Over the last year and a half, Philip and I have been working hard to make this vision a reality.\n\nOur mobile app is still in development, but most of the core components have already been built. Two weeks ago we launched our website, open-sourced our main codebase, and went public with our company and product. If you'd like to learn more about Lexe, you should check out these resources:\n\n- Lexe website: [lexe.app](https://lexe.app)\n- Our [SECURITY.md](https://github.com/lexe-app/lexe-public/blob/master/SECURITY.md) which explains how we architected our product\n- Our open-source code: [lexe-app/lexe-public](https://github.com/lexe-app/lexe-public)\n\nHere's some more links about us in general:\n- Lexe Twitter: [@lexeapp](https://twitter.com/lexeapp)\n- Lexe GitHub: [lexe-app](https://github.com/lexe-app)\n- [Stacker News post](https://stacker.news/items/260694) created for us at about the time of our website launch\n- Max's Twitter: [@MaxFangX](https://twitter.com/MaxFangX)\n- Philip's Twitter: [@phlip9](https://twitter.com/phlip9)\n- [Philip's notes on SGX](https://phlip9.com/notes/confidential%20computing/intel%20SGX/SGX%20lingo/)\n- [Max's notes on SGX](https://notes.maxfa.ng/Confidential+Computing/SGX/SGX)\n- [Max's website](https://maxfa.ng)\n- [Philip's website](https://phlip9.com)\n\nWe (Max and Philip) have known each other since 2016 and worked on various projects together since then. We've worked on decentralized Bitcoin mixing protocols, wrote the world's first undergraduate course on cryptocurrencies, and were founding members of Blockchain at Berkeley, among other things. Philip also worked at Facebook Diem (formerly Libra (now revived as Aptos)) and wrote most of their networking stack.\n\nMax (@MaxFangX) and Philip (@phlip9) are both online as of this post. Ask us anything!\n\nEdit: Converted links to Markdown \N 21518 \N 52864 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9541348536623 0 \N \N f 0 \N 0 116297124 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307565 2024-11-25 07:41:50.98 2025-03-29 22:39:46.788 Semaphore: peer to peer crowdfunding with bitcoin \N https://www.youtube.com/watch?v=VHGRQVuVtCY 20275 \N 307565 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 0.680510378519692 0 \N \N f 0 \N 0 157461117 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 203686 2024-07-21 22:17:19.323 2025-03-29 22:39:46.789 This is how Hal Finney saw Bitcoin's "ultimate fate." How do you see it? https://i.imgur.com/k01vMDz.png\n\nHal saw Bitcoin as becoming "high-powered" reserve money for banks to transact with while issuing their own digital cash. It's interesting [reading some of the replies](https://bitcointalk.org/index.php?topic=2500.msg34211#msg34211) -- some were quick to call out the woes of fractional reserve.\n\nHe liked the idea of Bitcoin-backed banks, much in the same way that Michael Saylor does (and has been getting called out on it for what he said in a recent interview on CNBC, in the very same way as Hal was).\n\nhttps://i.imgur.com/vbiutE1.png\n\n"For the [Bitcoin] industry to move to the next level, we need to migrate to 'adult supervision.' We're gonna need big banks to become the c̶r̶y̶p̶t̶o̶ [Bitcoin] custodians. We're gonna need Wall Street to take a role..."\n\nIs this the ultimate fate you see for Bitcoin as well?\n\nTruthfully, I think Hal and Michael both think very practically about bitcoin -- in the world as it is today and how it will function.\n\nThey're focused on the next 3 decades for Bitcoin, probably not beyond then (well perhaps Hal was, but I'm ~90% certain Michael has explicitly mentioned this on an interview -- can't remember where)\n\nPoint being, I don't think Saylor is coming from a "wrong" point of view, but perhaps from a more (boring) grounded timeline.\n\nAs I mentioned in my recent post, [Bitcoin is the TROJAN HORSE](https://stacker.news/items/293014/r/birdeye21). While we should absolutely be [keeping the unbanked unbanked](https://stacker.news/items/239180/r/birdeye21), developed nations with established financial systems will likely have to be reworked from the inside out -- it's an inevitable force of "mainstream" adoption.\n\nI do not think that Bitcoin banks are the ultimate fate; I'm fully looking towards a custodianless world. Starting with myself and my family, and then helping others as I go.\n\nBut in the short term, Hal and Saylor I think have "Bitcoin banks" right in terms of the timeline. I just think it's an _inevitable step_ rather than an ultimate fate.\n\nAnd yea, it's gonna piss a lot of us off. \N 7185 \N 203686 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.28078630444272 0 \N \N f 0 \N 0 172772625 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436149 2025-03-13 10:55:13.729 2025-03-29 22:39:46.785 SN release: sndev command and open source contribution awards ### sndev\n\nAfter our recent hiring trial (which I plan to write something about soon), a few years of having folks struggle getting setup contributing to [SN's open source project](https://github.com/stackernews/stacker.news), and asking what stackers' [preferred local dev setups](https://stacker.news/items/452063) are, we developed `sndev` which allows you to run a fully featured SN developer environment locally in a single command.\n\nSpecial thanks to @elvismercury for his expert, careful, repeated nudges of "I'm really curious how easy getting started on something like SN can be." Of course, never ending thanks to all of SN's open source contributors too.\n\nThe single command:\n\n`./sndev start`\n\nThe sndev environment provides all the services we run in production but locally for development, spinning up an auto-mining auto-channel-forming lightning regtest network (you don't need polar anymore), database, search engine, image proxy, and mock s3, and populates the database and search engine with a big production-shaped 45-day seed. \n\n`sndev` allows SN open source contributors to do things like login to local accounts with a single command:\n\n `./sndev login `\n\nFund their account paying a bolt11 regtest invoice:\n\n`./sndev fund `\n\nAnd much more as seen by issuing `./sndev help`\n\n```\n 888\n 888\n 888\n .d8888b 88888b. .d88888 .d88b. 888 888\n 88K 888 '88b d88' 888 d8P Y8b 888 888\n 'Y8888b. 888 888 888 888 88888888 Y88 88P\n X88 888 888 Y88b 888 Y8b. Y8bd8P\n 88888P' 888 888 'Y88888 'Y8888 Y88P\n\nmanages a docker based stacker news development environment\n\nUSAGE\n $ sndev [COMMAND]\n $ sndev help [COMMAND]\n\nCOMMANDS\n help show help\n\n env:\n start start env\n stop stop env\n restart restart env\n status status of env\n delete delete env\n\n sn:\n login login as a nym\n\n lnd:\n fund pay a bolt11 for funding\n withdraw create a bolt11 for withdrawal\n\n db:\n psql open psql on db\n prisma run prisma commands\n\n dev:\n pr fetch and checkout a pr\n lint run linters\n\n other:\n compose docker compose passthrough\n sn_lncli lncli passthrough on sn_lnd\n stacker_lncli lncli passthrough on stacker_lnd\n```\n\nWe'll be regularly refining and adding things to `sndev`. It's good enough I'll be using it exclusively for development myself now and @ek said he probably will too.\n\n### contribution awards\n\nContribution awards are live. I published the [draft](https://stacker.news/items/449767) of these earlier this week, which haven't been changed, and they are now found in [SN's Github README](https://github.com/stackernews/stacker.news/blob/master/README.md). The reward structure is definitely experimental still, and will require a lot of adjustment, but it's ready to begin running I think.\n\nWe also rewrote our [README](https://github.com/stackernews/stacker.news/blob/master/README.md) so that it mostly appears as a single page and elaborates on things more.\n\n-------\n\nWe're hoping these help stackers continue to make SN more of what they want it to be, begin FOSSing, and stack sats. \N 21148 \N 436149 \N \N \N \N \N \N \N \N news \N ACTIVE \N 12.9148529747556 0 \N \N f 0 \N 0 5368180 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 118808 2024-01-26 04:26:30.943 2025-03-29 22:39:46.786 I am not a routing node anymore Over the past two years I ran an amateur routing node that was in the top 300 on lightning terminal.\n\nI have decided to stop for the following reasons\n\n1) **Profitability**\n\n I routed many payments but was never profitable. My total lifetime node statistics are in the table below:\n\n | Line Item | Lifetime |\n |:---------------:|:---------------:|\n | Payments Routed | 24,916 |\n | Value Routed | 944,239,099 |\n | Revenue Earned | 14,790 [15] |\n | Onchain Costs | 784,204 |\n | Offchain Costs | 9,665 [474] |\n | Percent Cost | 5,367% |\n | Profits | -779,079 [-825] |\n\n Could I have done a better job managing my expenses and routing fees? Yes. There are lots of people who run lightning nodes profitability. I was just not one of them. If I had spent more time optimizing my fees and I raised my fee rates I could have been.\n\n But even doing that wouldn't stop random force/regular closures which require you to reallocate your capital to another channel (which means you have to spend sats on opening fees).\n\n If you want to run a routing node successfully you really need to treat it like a business. And there are actually a lot of expenses in doing so that aren't apparent upfront.\n\n 2) **Responsibility**\n \n I am happy that it is possible for anyone to run a routing node. However just because you can doesn't mean you should.\n\n It's a big misconception is that everyone needs to be a routing node. While on paper most people can easily set one up. The average person is much better off connecting to an existing, reliable routing node than trying to make their own. Managing inbound/outbound liquidity requires some effort. And if you don't keep up with it, you might be doing more harm than good to the network. Over-leveraged inbound and outbound liquidity results in more failed payments on the network. \n\n I had about double to triple inbound liquidity so I saw a lot of failed transactions and I probably contributed to an overall worse UX for the rest of the network because of those failed transactions. I did not run my node very responsibly because I was doing it as a hobby.\n\n As silly as it sounds, I just really wanted a higher lightning terminal score and larger node appearance so I bought inbound liquidity to make my node look larger.\n\n So while I did have a large amount of outbound. It really was a lot less than what it appeared to be. And while it was fun for me to have a larger score, it probably wasn't fun for the people not able to route their payments.\n\n 3) **Risk**\n It is risky to run a lightning node. The software is still experimental, bad backups can lose all your funds, all your money is in a hot wallet. Things can go wrong!! Am I saying don't do it? No, but what I am saying is only put in what you're willing to lose. Because bugs, backup mistakes, software/physical security breaches can happen.\n\n I am willing to accept these risk but only with less capital than I had allocated when I was a routing node. I only had success forwarding when I started to have many channels with large bandwidth. It's just no longer worth it to me anymore to maintain that.\n\nSo going forward, I am only going to use private channels and focus on my usage not forwarding payments for others. \N 1609 \N 118808 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.858309064836895 0 \N \N f 0 \N 0 7936959 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 209590 2024-08-03 03:14:29.833 2025-03-29 22:39:46.786 The story of DarthCoin's Bitcoin Citadel - part 1 ### Why and how I start building my own Bitcoin Citadel, a nice and cozy homesteading place, to retire and live in peace.\n\nAs I promised, I came back with a detailed article about why and how I am building a Bitcoin Citadel, by myself.\nThis is the first part of the story, EXCLUSIVE for Stacker News!\n\n**This is the story of The DarthCoin Bitcoin Citadel…**\n\nSomewhere on the planet Earth, deep into the mountains wilderness.\n\nI will split this story into multiple parts for easy reading and also helping me to organize all the information I gather during this journey into small episodes. It is a lot…\n\n[![darth-citadel.jpg](https://imgprxy.stacker.news/TC5IO_2fpAqRX70Klz0lMF_9IqP0tLp9Gljyn-G5T1M/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MveThKSFFaZDcvZGFydGgtY2l0YWRlbC5qcGc)](https://postimg.cc/fVhpkkmP)\n\nThis “citadel” is not a Death Star, a castle, a mansion or an Eiffel Tower. Nothing like that. Will be just a homesteading place, with some small houses, a vegetables garden, fruit trees, some domestic animals and other utilities, enough to live a simple life in a self-sustaining way as much is possible.\n\nFor those that are new to this, the term Citadel in Bitcoinlandia is not about a fortress, that is just a figurative expression. It is more about a place where the bitcoiner is retreating himself, living in peace, far from distractions, sporadically or permanently. A place only for himself and maybe some friends. It doesn’t have to be specifically a homesteading place out of the city, it could be even your own simple apartment, but organized in a different way to adapt to your “bitcoin life”.\n\nI hope that this story of my Citadel will be also an inspiration for many others, especially bitcoiners.\n\n### WHY?\n\nI always wanted to build something, with my own hands, to remain in history, for humanity, so people can see it and remember me.\n\nIn my past I tried many things, even when I was a kid, but nothing at this level: building a house, a homesteading place, that could remain in time visible.\n\nWe are living all day like in a hamster wheel and what we are leaving behind? Almost nothing. Something that even in 50-100-200 years still stands and people can say “look, this thing was built by that crazy guy…”. Doesn’t matter if they like it or not, is something that REMAINS there for long time and your name and history is there. Like the Bitcoin blockchain timechain.\n\nSome of my friends told me “but man, with your stash of bitcoins you could easily just pay somebody to do the hard work of digging and constructing”. Well… I am not “that guy to pay somebody else to do its job”, no matter how much bitcoins I have. Is about the feeling of building your own house with your own hands, not depending on anybody else. It’s an amazing experience and you are learning a lot of things!\n\nI am just an old IT guy, now retired, because I want to follow my dream: having a homesteading place only for me. I have no skills in building houses, construction techniques or something like that. Growing vegetables and animals, I have some experience from my past youth, from my grandparents place, that is the easy part.\n\nI am not afraid of failure. That could happen too. But I will continue trying again until it will be the way I wanted and is OK. We are learning from our failures, always. But the hard thing is to recognize when you are failing and start over.\n\n### HOW?\n\nFor many years I was looking for a good place to start. Walking many mountains, valleys, routes, paths etc. Taking notes, sleeping in a hammock, listening the surroundings, looking for resources (water, food, dirt composition). Is not that easy and the most important thing is: you MUST feel the place, to let your heart telling you which one is the best, which one will give you peace. That’s why I was sleeping many times, just in a sleeping bag, under the stars and listening the forest during the night. That deep silence that could put you in trance sometimes, is “talking” to your heart.\n\nSo, I found the place, I like it and I start building, with my own hands, my own brain, in my own style, with local materials, natural, simple, organized and strong. A message for next generations and also a living style: natural, simple, wild, isolated from “zombies civilization”, almost self-sustainable (I know is very hard to obtain self-sustainability, but I will try).\n\n[![20210720-073146.jpg](https://imgprxy.stacker.news/VfAnJdmNnhVcGj7V8Z4YaBZbqPTlf5TNDI7-oZ43E3k/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvQ0w5cTZiTk4vMjAyMTA3MjAtMDczMTQ2LmpwZw)](https://postimg.cc/GHJt4868)\n\n**THE PLAN**\n\nOn this terrain of 100 x 50 meters, surrounded by very old stone walls and trees, will be at least 2 houses, a big garden patch, chill out corner, animals shelter and a nice natural jacuzzi in the near small river, maybe later a small fish pond.\n\nThe place is right between 2 small rivers that come together into a very nice and quiet valley. One is cold (for beers) and the other one is warm (is mostly on the sun side all day), good for baths.\n\nAt the entrance, I will put 21 stones and will engrave the 21 reasons why Bitcoin will save the world, to remain there, in stone, forever.\n\nThe main idea / plan is to have:\n\n1. a 1st nice “hobbit house” (more will come later), digging the dirt from a small hill, making earthbags and stone walls and cover it with the same dirt on top, planting some aromatic flowers over. Later a 2nd house, bigger or even more.\n[![hobbit-house.jpg](https://imgprxy.stacker.news/5u9YeLpOQGKUph-VD326zRwhSo7ISyuT1xLWaEA_f1I/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvNXlCMjdGTlAvaG9iYml0LWhvdXNlLmpwZw)](https://postimg.cc/ctJW6C3Y)\n\n2. a stone oven outside, near to the 1st house, for making bread and pizza and a barbecue place.\n\n[![darth-barbecue.jpg](https://imgprxy.stacker.news/qeXBlXxtF2Cgwod3O4qx9iUIQ9L4_UwGRdRm-TXe8J4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvUXhnbUxYNncvZGFydGgtYmFyYmVjdWUuanBn)](https://postimg.cc/4mdVVTRQ)\n\n3. a vegetables garden, in front, with wooden beds and self irrigation system (water is at only 5-7m). In winter with some small greenhouses. I have plenty of terrain for growing food.\n\n4. some fruit trees, chickens, ducks, goats\n\n4. a small river turbine (water lily) and solar panels for electricity, running water and filtering, sauna (for long winters)\n\n5. satellite antenna (internet, communication), maybe some bitcoin miners too and radio station. Depends how much electricity I could grab from that small river I have.\n\nAll these in stages, year by year, slowly, with patience and calculating each step, each move. Due to weather conditions and the fact that in the beginning there’s no other place to sleep than tent and hammock, I have to work mostly in the summer, between June and end of Sept. All the rest of the year is quite complicated to work (heavy rain, snow, wind, cold). The place is at 1400 m altitude and the weather is quite unstable.\n\n_________\n\nPlease read more about the stages that were done until today on my new substack dedicated to this story. I didn't want to mix this with my regular Bitcoin guides substack.\n\nThe DarthCoin Citadel new substack - [Stage 1 - 3 building the Citadel](https://darthcoincitadel.substack.com/p/the-darthcoin-citadel-part-1) \N 798 \N 209590 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.35753597228661 0 \N \N f 0 \N 0 649413 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 213929 2024-08-12 17:42:48.051 2025-03-29 22:39:46.786 Bitcoin Circular Economy - a hard to achieve goal for many people ## Bitcoin Circular Economy - such a wonderful term, hard to achieve\n\nWe are bitcoiners and we want freedom and free market. Not gov intervention in our own businesses and use of our own money.\n\nIf you do not agree with this statement, please go back to your own statist cage and cry hard, voting whatever politician to rule your life, paying taxes, debate meaningless "legislation". This post is NOT FOR YOU.\n\n### WARNING !\nI REALLY DON'T GIVE A SHIT ABOUT ANY STATIST AND FIAT MAXI OPINION, so don't bother wasting your time and sats commenting this post. If you do not hate gov, fiat and banks, this post is not for you. This is a super extra bitcoin maxi post. So all haters can kiss my ass.\n\n### Precedence\nWhy am I writing this post?\nBecause I am pissed off about so called bitcoiners pretending to be bitcoiners and in fact are just fiat maxis.\nI am tired of all this misleading and influencing noobs, all this hypocrisy all around.\nSee this shamless post: https://stacker.news/items/573492 promoting the use of VISA (fiat) cards instead of direct use of Bitcoin payments.\n![](https://m.stacker.news/35539)\n\n### Why do we need a Bitcoin Circular Economy?\n\nBecause we want to get rid of fiat !\nFiat money is a disease that is consuming our energy.\nFor longer we use fiat, longer and painful is our journey towards freedom.\n\nLess you are using any form of fiat, stronger will became Bitcoin.\nBitcoin, without circulation, it will became another meaningless IOU, fooling people into giving it away in exchange of shity tethers, stablecoins, fiat visa cards, CBDCs etc... \n\nDON'T LET THE FUCKER FOOL YOU AGAIN AND AGAIN!\nBitcoin is your own power you can get, it is YOUR property ! \n\nA VISA card is not your property and is not carrying any money, just IOUs. By using a VISA card YOU ARE LITERALLY CREATING FIAT MONEY FROM THIN AIR, you are perpetuating the use and creation of fake money ! You are fooling yourself !\n\nPLEASE STOP THIS MADNESS OF FIAT USE !\n\nAsk yourself: in which world do you want to live?\n- a fiat debt world ?\n- a freedom bitcoin world ?\n\nAlso a simply explained video here, a 4 years old video about how to achieve a Bitcoin circular economy and why is important:\n\nhttps://youtu.be/GquPdAFQ40U\n\nWhy do we need to avoid as much as we can the use of fiat currency in any shape or form?\nHere is a brilliant 15 min presentation by @jimmysong - FIAT DELENDA EST - a MUST watch !\n\nhttps://youtu.be/2nCzzgEwC7s\n\nI will not repeat myself, I already wrote a guide here about [How ₿itcoin will save the world?](https://darth-coin.github.io/general/bitcoin-will-save-the-world-en.html).\n\nIn that guide I talked about pushing towards merchants adoption and how we can achieve that, by helping them.\n\nGoing to a merchant with a VISA card (that you previously loaded from your sats), IT IS NOT BITCOIN ADOPTION ! Is just a shamless fiat use and pushing forward the use of fiat railways. You are NOT helping that merchant to accept Bitcoin, you are NOT using Bitcoin in any way paying that merchant.\n\nPlease stop lying yourself that by paying with a fucking visa card you are helping "bitcoin adoption". It is NOT!\n\n### Steps towards Bitcoin Circular Economy?\n\nIf you really want it, you can do it.\nI myself I fought a lot to achieve this level. Is not easy, I know, but is necessary a lot of dedication and determination to FUCK THE BANKS, FUCK THE FIAT SYSTEM AND FUCK THE GOVS.\nIf your goals are not those, then please go back to your comfortable fiat slave miserable world. Bitcoin is not for you.\n\n1. Start EARNING Bitcoin, not buying it anymore. This is the most important aspect ! Being paid in BTC. Convince your clients/ employers to pay you in BTC directly. Your mind will change DRAMATICALLY JUST BY THAT.\n2. Reduce your spending as much is possible. Move from big fucking cities where life is fucking expensive. Live a simple cheap life in a rural area. Grow your own food, spend less.\n3. Convince ANYBODY around you to accept your sats. That is a key point. Start with fresh food producers nearby, they will be happy to take your sats (if you explain it well).\n4. Stop paying taxes ! taxes are only for slaves. Work for yourself not for the gov. Gov is a corporation and a big fucking lie!\n5. Read my guides: I wrote several guides about how to achieve this goal. I put very specific clues inside. Some of my guide even contain 12 words from a 1 BTC wallet... that nobody find it in the last 5 years !\n6. STOP supporting any business that accept only fiat. Boycott them and use as much as you can those that accept BTC.\n\n### Funny story about how to play with merchants.\n\nSome years ago I was pushing a lot Bitcoin adoption around me. So I went to some local merchants and pushing them to accept BTC. From 3 of them only one was interested. But once he start accepting my sats as payment, I went to the other two and ask: "hey can I pay with BTC?" The answer was "no". So I said: "ok, I will go the one next to you that already accept BTC and also is giving me a discount for paying with BTC".\n\nThat really make them intrigued. Next weeks when I went again to the "fiat only" store, I asked: "hey are you considering accepting my sats?" The answer was "OK, but don't go to the other shop." And I said: "fine, but keep in mind, the other shop is offering me a discount for paying with BTC. I am willing to pay you without discount just to help you get onboard. I will give you all support for free".\n\nI hope this post will help many fiat maxis to change their mind and all other bitcoiners, find the right way to push bitcoin adoption in their local community.\n\nSTART SMALL, THINK BIG...\nRemoving myself from a fiat world was not easy ! \N 21139 \N 213929 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.2001882151972 0 \N \N f 0 \N 0 4282201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 147959 2024-03-23 21:12:25.715 2025-03-29 22:39:46.786 Rant: Young People are Getting Terrible Advice and it's Destroying Our Culture Somewhere along the way advice stopped being about the world that exists and became about the world upper middle class white liberals want to exist.\n\nAs should be clear to everyone, I'm super libertarian about all of this stuff. People should live their lives in pursuit of their own visions of happiness or flourishing or whatever term encapsulates what they find fulfilling. With that said, I'm often bothered by the directions young people are pushed in. I think it's leading to them having worse lives than they could have had and it's severely damaging our culture as a result.\n\n@kepford had a great post along these lines that didn't get enough attention: https://stacker.news/items/478976/r/Undisciplined. However, please don't take that to mean he approves of the following message.\n\n# College for Everyone\nThis was my first taste of this bad advice phenomenon and I had many servings of it. I haven't been in a government school in over 10 years, so I don't know if this has gotten worse, but I have enough college contacts to know it hasn't gotten better.\n\nHigh school kids with severe cognitive deficiencies are systematically pushed towards college. Everyone knows that these kids have no shot at completing college, but they're too "nice" to set realistic expectations. That is not kindness. It is in fact a very perverse type of cruelty to knowingly set mentally disabled kids up for failure like that. Out of sight, out of mind, I guess. The adults in these schools should be helping these kids develop attainable skills, so that they can actually know the joys of success.\n\nBeyond kids with cognitive challenges, many young people are not going to get much out of college. To a first approximation, all of the returns to college accrue to the top handful of STEM students. For everyone else, it's a wash at best financially.\n\nIf people want to go to college, great, but most college students are decidedly less than enthusiastic. Given the extreme expenses involved, it seems like kids in high school should at least learn about alternatives.\n\n# Relationships vs College\nThis segues right into my next point. The prevailing "wisdom" is that long distance relationships are impossible, so high school couples should just break up before going to college.\n1. If you're in love, you can absolutely manage a long distance relationship.\n2. Finding the right partner is vastly more consequential than going away to college.\n\nThe single most important choice you make in life is who to spend it with. If you make that choice correctly, you can manage everything else in time. Sacrificing all these relationships on the alter of college is pretty sickening considering the point I just made about the returns to college in the previous section.\n\nIt was not long ago that people were getting married and starting families right around the age we now all leave for college. Why did our culture decide to radically devalue these relationships all of a sudden?\n\n# Putting off Having Kids\nThere will always be reasons to put off having kids and our cultural messaging doesn't help. There are real biological constraints at play here and many people find that they've run out of time to have the family they wanted. That's the rest of their lives spent wishing for something they could have had. Good thing they waited to start until after getting that promotion, right?\n\nWe have friends who started their family much younger than us. Their oldest is midway through high school. All the kids will be adults by the time our friends turn 50. They'll likely get to see all of their grandkids grow up and start families. They get to spend about a decade more with their kids than my wife and I get to, because we put it off. That's a pretty big deal. \n\nDoes anyone ever hear that simple perspective when they're young?\n\n# Romantic/Sexual Landscape\nAt least the alternative to maintaining those relationships and starting families is equally fulfilling, right?\n\nOh, wait, no, it's a complete disaster of empty hookups and loneliness. At least that seems to be the reporting on the ground. More and more, young people just aren't even trying to have meaningful romantic relationships. \n\nRomantic bonds are how we propagate the species. It's our strongest preprogrammed urge and somehow it's been beaten out of us.\n\nMaybe glorifying casual hookups wasn't a great idea. Young people probably don't need encouragement to be irresponsible, after all. Maybe teaching girls to see any attention from a boy as some sort of assault is not working out so well for either sex.\n\n# What do Happy Lives Look Like?\nIt's valuable to have a culturally expected path through life. People can use the same benchmarks as previous generations and know it at least sort of works: start dating in your teens, start a family in your 20's, support your family until they're grown, etc. \n\nThat doesn't mean people must follow the path. When you're innovating, it helps to have those benchmarks to know what you're building off of. The absence of those expectations leaves people rudderless. It's a form of the Paradox of Choice. Most people actually prefer to follow a plan than to have to create everything de novo.\n\nWithout that shared vision of the good life, people are vulnerable to adverse pressure. For instance, most people get more fulfillment from their families than from their jobs, yet the pressure is almost always to sacrifice family for career.\n\n# Gender Differences\nNow for the potentially touchy point. Remember, I'm libertarian guy, live the life you want, I'm not trying to proscribe anything.\n\nWe have ample evidence from psychology, sociology, economics, anthropology, history, etc., to state simply that men and women tend to value different things.\n\nIt is not helping young people when we pretend that men and women are exactly the same and push them all into the same direction. It might help them to know things like husbands and wives both tend to prefer when the husband makes more money, for instance. Or to know that many women want to take extended time out of the labor force after having kids (this is actually normal in many places, gasp).\n\n# TL;DR\nThere are a ton of areas where the advice young people are receiving is unmoored from reality. It's doing them an extreme disservice. \n\nI'd love to hear other people's thoughts on the subject, especially if you think I'm off my nut on some of this. \N 20717 \N 147959 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0330669227423 0 \N \N f 0 \N 0 56477035 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 204939 2024-07-24 12:45:40.167 2025-03-29 22:39:46.786 Pix in Brazil: A Field Study for the Bitcoin Community After more than 1.5 years of work, I am happy to announce that I have finished this research project!\n\nFeel free to leave your comments. I am very curious about everyone's opinion.\n\n\n___\n# Pix in Brazil: A Field Study for the Bitcoin Community\n\n## Introduction\nIn November 2020, the Brazilian central bank introduced [Pix, a digital payment system](https://www.bcb.gov.br/en/financialstability/pix_en). As of this writing, 32 months have passed since its launch, and more than 140 million Brazilians have embraced it and have used it at least once. In this remarkably short time, [Pix has become the second most popular instant payment system in the world](https://investor.aciworldwide.com/news-releases/news-release-details/worlds-major-economies-playing-catch-widespread-adoption-drives).\n\nWhat makes this development even more noteworthy is that it has taken place in Brazil, a country with a [substantial unbanked population](https://www.trade.gov/country-commercial-guides/brazil-finance). This success has been achieved against the backdrop of Brazil's challenges of poverty, social violence, illiteracy and poor infrastructure.\n\n### Description\n\nAs a User Experience Designer and Researcher involved in the [Bitcoin Design Community](https://bitcoin.design/), this development caught my attention and raised the following research question:\n\n_****What are the lessons that the Bitcoin community can learn from the Brazilian experience with the adoption of the Pix?****_\n\nA trip to Brazil in August 2022 provided an opportunity to learn as much as possible about this fascinating topic.\n\nFluent in Portuguese, first-hand information was gathered from real users with diverse backgrounds. Upon returning to Germany, several months were dedicated to reviewing the data and uncovering meaningful insights.\n\nThe following chapters were written to approach such insights:\n\n\n**Table of Contents**\n\n- [Introduction](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#introduction)\n- [Chapter 01: The Big Picture](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#chapter-01-the-big-picture)\n- [Chapter 02: Political Polarization & Asset Neutrality](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#chapter-02-political-polarization-amp-asset-neutrality)\n- [Chapter 03: Entrepreneurs’ Perspective - Part I](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#chapter-03-entrepreneurs-perspective-part-i)\n- [Chapter 04: Entrepreneurs’ Perspective - Part II](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#chapter-04-entrepreneurs-perspective-part-ii)\n- [Chapter 05: Fear of Violence & Wallets](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#chapter-05-fear-of-violence-amp-wallets)\n- [Chapter 06: Data Leakage & Scams](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#chapter-06-data-leakage-amp-scams)\n- [Chapter 07: Designing Contact Lists to Prevent Errors](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#chapter-07-designing-contact-lists-to-prevent-errors)\n- [Chapter 08: Designing Payment Receipts To Prevent Fraud](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#chapter-08-designing-payment-receipts-to-prevent-fraud)\n- [Chapter 09: Spending Habits & Different Methods](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#chapter-09-spending-habits-amp-different-methods)\n- [Chapter 10: The Role of a Trusted Friend for the Elderly](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#chapter-10-the-role-of-a-trusted-friend-for-the-elderly)\n- [Final Thoughts](https://www.psacramento.com/p/0e87c481-1c2a-464c-b671-f3e540f86992/#final-thoughts)\n\nEach chapter is divided into three sections:\n\n1. **Insights** \n _What is the new finding from the field observations and conversations with participants?_\n2. **Facts** \n _What additional data support and contextualize this finding?_\n3. **Recommendations** \n _Now that this finding has come to light, how should the bitcoin community respond?_\n\n### Motivation\n\nThe bitcoin community can benefit from this study in three ways:\n\n**1: Gain transferable UX insights**\n\n![](https://www.psacramento.com/content/images/2023/11/Screen-Shot-2023-11-10-at-18.10.52.jpg)\n\nSource: [Lightning Nodes Channels World Map](https://mempool.space/graphs/lightning/nodes-channels-map) by [Mempool](https://mempool.space/)\n\nAlthough the underlying infrastructures of these two systems are completely different (and in some ways, even opposite), from a user experience perspective, they have much in common.\n\nThis becomes clear when we consider that **both of them have a very similar set of features**:\n\n- Instant monetary transactions\n- 24/7 availability\n- QR codes and aliases for payment initiation\n\nAt the same time, **both require the use of Internet-connected smartphone devices**.\n\nThese similarities allowed the formulation of concrete design recommendations that can be applied to a typical Bitcoin application.\n\n**2: Learn more about other payment systems**\n\n![](https://www.psacramento.com/content/images/2024/01/00-payment-systems.jpeg)\n\nSource: [SEPA Instant Credit Transfer](https://www.europeanpaymentscouncil.eu/what-we-do/sepa-instant-credit-transfer)\n\nThe Lightning Network is not alone in the landscape of instant payment systems. Central banks of several countries have launched their own platforms, such as [Mexico's CoDi](https://bitcoin.design/) and [India's UPI](https://en.wikipedia.org/wiki/Unified_Payments_Interface).\n\nRegardless of the entity (or community) that propels the payment system, both bitcoin and Pix are representative of the same mega-trend: **the abandonment of physical currency in favor of its digital equivalent**.\n\nA better understanding of how Pix overcame some of the challenges to be adopted can shed light on bitcoin's path forward.\n\n**3: Better understanding Latin America**\n\n![](https://www.psacramento.com/content/images/2023/11/Latin_America_-orthographic_projection-.svg.png)\n\nSource: [Latin America on Wikipedia](https://en.wikipedia.org/wiki/Latin_America)\n\n \nBitcoin remains a topic dominated by North America and Europe, where a significant number of companies and Open Source projects are based.\n\nThis phenomenon points to a potential knowledge gap regarding the Latin American scenario.\n\nHopefully, this work will help to fill such gap and provide insights of the unique traits and challenges of the region.\n\nThis research has the potential to increase inclusivity, foster global perspectives, and facilitate the development of more tailored solutions to address the specific needs of Latin American communities.\n\n### Field Study methodology\n\n![](https://www.psacramento.com/content/images/2023/11/Field_Studies_1.jpeg)\n\nSource: [Field Studies on NN/g](https://www.nngroup.com/articles/field-studies/)\n\nThe [Field Study method](https://www.nngroup.com/articles/field-studies/) involves direct engagement with individuals in their respective environments, seeking to observe their use of the payment system in their daily routines. This approach, which emphasizes immersion in the users' natural environments, is preferred over exclusive reliance on controlled settings.\n\nThis method involved visiting individuals in their homes and workplaces to observe how Pix was integrated into their usual activities. By conducting a meticulous analysis of contextual interactions, a profound comprehension of the practical applications of Pix has been acquired. **This hands-on approach ensures that the insights generated are firmly rooted in the behaviors, mental models, expectations and fears of real people**.\n\n**Reducing bias** \nRather than starting with a pre-existing theoretical framework and deriving hypotheses from it, the Field Study methodology also allowed for the exploration and discovery of ideas directly from the data collected.\n\nThis investigative process has the distinct advantage of providing **in-depth understanding of the topic, through real-life examples and experiences, rather than solely relying on preconceived notions**.\n\nIn addition, the author maintains a neutral stance without any political leanings or affiliations regarding Pix and any political figures associated with its implementation. The purpose of this project is neither to praise nor to criticize the system. It is purely an analysis of this instant payment system from the perspective of someone who supports Bitcoin.\n\n### Timeline\n\n**Phase 1: Data collection, in Brazil** \nAugust and September/2022\n\nParticipants: 25 people \nCities: Rio de Janeiro (State of Rio de Janeiro) and Viçosa (State of Minas Gerais)\n\nThis phase included tasks such as:\n\n- Conducting audio-recorded interviews\n- Using Pix to pay for products in stores and from street vendors\n- Collecting photos and videos\n- Using Pix to receive payments from family and friends\n- Making field notes of observations\n\n**Phase 2: Data processing, in Germany** \nOctober/2022 to March/2024\n\n![](https://www.psacramento.com/content/images/2023/11/Screen-Shot-2023-11-10-at-17.24.15.jpg)\n\nSource: Author\n\nThis stage included the following activities:\n\n- Transcribing the voice recordings\n- Producing thematic clustering of transcriptions\n- Organising clusters around insights\n- Writing individual chapters for each one of the insights\n\n### Limitations\n\nThis research is intended to provide a snapshot of a subject in constant change, which means that it does not aim to offer definitive answers or solutions, but rather a starting point for further exploration. As such, it is important to keep this in mind when considering the implications of the research and to approach it with an open mind.\n\n### Privacy considerations\n\nDue to the sensitive nature of the research on people's interactions with money, rigorous measures have been adopted to ensure the privacy and anonymity of the participants.\n\nProtecting the identities and personal information of subjects is paramount to maintaining ethical standards and preserving their right to privacy.\n\nThrough the use of anonymization techniques and strict privacy protocols, all personal identifiers were carefully removed or replaced with pseudonyms throughout the research process.\n\n### Human rights considerations\n\nLatin America's reputation for an unpredictable political landscape and populist governments raises important considerations, especially in light of rumors suggesting Pix as a precursor to a comprehensive retail central bank digital currency (CBDC). Such a development carries the potential risk of Pix being used for strict capital controls and potentially violating civil rights.\n\nIn parallel, [the Brazilian Central Bank's announcement of its wholesale CBDC, called Drex](https://www.bcb.gov.br/en/financialstability/drex_en), adds to the complexity of the situation. While this aspect has significant implications, it has been deliberately excluded from the scope of this project to maintain focus on the intended purpose.\n\n### Vocabulary\n\nThe term "Bitcoin" is to be understood as the broader Bitcoin/Lightning/eCash and other unmentioned Layer-2 technologies as a whole.\n\n### Dedication\n\nThis project is dedicated to my father, who sadly passed away during the final stages of its completion.\n\nHe was the one who encouraged me to learn about computers from my earliest years.\n\nMost importantly, his life example instilled in me the belief that technology should be used as a means to make a positive impact on the world.\n\n### Acknowledgments\n\n- **Human Rights Foundation**: I am deeply grateful for the privilege of attending the [Freedom Forum Oslo 2023](https://oslofreedomforum.com/). This event not only broadened my horizons, but also gave me a deeper sense of purpose for this project. Engaging with like-minded individuals and visionaries at the Forum reinforced my belief in the potential impact of the initiative.\n\n### Proofreading\n\n- Enedina Sacramento\n\n### License\n\nThis content is distributed under the terms of the following Creative Commons license:\n\n- [Attribution ShareAlike 4.0 International (CC BY-SA 4.0)](https://creativecommons.org/licenses/by-sa/4.0/)\n\n### Next steps\n\n\nThe same content presented in this post is accessible via a Google Drive document inviting the Bitcoin community to participate in a peer review process in the true spirit of open source collaboration.\n\n\\- LINK\n\nThis opportunity to review and suggest improvements will be available until the end of 2024.\n\nThe valuable input gathered will be instrumental in refining the work for publication as a book in the first half of 2025.\n\n___\n## Chapter 01: The Big Picture\n\n### Insight\n\nObservations and interviews with Brazilians revealed that, in general, **people have a positive opinion on the Pix payment system**.\n\nWhen asked about the **reasons for adopting Pix**, these were the most commonly cited:\n\n- **Instant money transfer**: Pix transactions/payments are settled immediately, which is a significant improvement over legacy alternatives that could take several days to settle.\n- **Zero fees**: Pix transactions are free for ordinary people, which is a great incentive to make transactions with the system. A few users mentioned that they would discontinue utilizing Pix in case fees for individuals were introduced.\n- **Easy of use**: Pix payments can be initiated by using a predefined alias (also known as ‘Pix key’) or by scanning a QR code linked to the beneficiary's bank account. Pix is described as easy to use, even by people unfamiliar with technology.\n- **Broad acceptance**: Pix has been described as a widely accepted and convenient method.\n\nWhen participants were asked **how Pix had impacted their lives**, these were the most frequently mentioned aspects:\n\n- **Preferred method**: Pix has become their preferred way to both receiving and making payments.\n- **Improved procedure**: The implementation of Pix is objectively considered an improvement over the previous methods for money transfer. This can be mainly attributed to the added convenience.\n- **Increased income**: Merchants and self-employed individuals reported increased income from their business activities after they started using Pix.\n\nWhen questioned about the **potential disadvantages of embracing Pix**, a recurring concern was that it **could be used by criminals** for illegal activities (scamming and kidnapping for ransom).\n\n### Facts\n\nChanging the way people interact with money is a significant challenge.\n\nThis can be even more difficult when a country's recent history has been marked by a period of capital controls.\n\n![](https://www.psacramento.com/content/images/2024/01/chapter-01-plano-collor.jpeg)\n\nThe image above is a front page from the Brazilian newspaper "O Globo" reporting on a historic economic event in Brazil. The headline "Collor bloqueia o dinheiro" translates to "Collor blocks money". This refers to a measure taken by then-President Fernando Collor de Mello, known as the "Plano Collor" (Collor Plan), in which the savings accounts of the population were severely restricted and frozen for 18 months.\n\nIn the 1990s, the [Brazilian government took the measure of freezing saving accounts in an effort to combat hyperinflation](https://pt.wikipedia.org/wiki/Confisco_da_poupança). This event had a profound impact on the collective consciousness of the population and left an indelible mark.\n\nIn other words, Brazilians could have had some serious trust-related reasons for rejecting Pix\n\nBut that did not happen. **Why**?\n\nAt first, one can imagine that the acceptance was exclusively due to its features. It is very difficult to resist the convenience of being able to make instant feeless payments.\n\nHowever, if we take a step back, **we will be able to see the importance of examining this phenomenon from a socioeconomic point of view**.\n\nTo understand the reception of Pix, we must consider not only its functionalities, but also the social and economic aspects of Brazil that contributed to its diffusion.\n\nThus, let us look upon some of the socioeconomic factors that have contributed to the spread of Pix in Brazil:\n\n**High mobile penetration** \nBrazil has a large and young population with access to smartphones, which serve as a critical tool for the use of Pix. The majority of the population owns and actively uses smartphones, making digital payment solutions accessible to a wide range of individuals.\n\n**Pervasiveness of the informal economy** \nBrazil has historically developed a large informal economy, with a significant portion of transactions taking place outside the traditional banking system.\n\nPix provides a convenient and accessible digital payment solution for both formal and informal transactions.\n\nIt enables individuals and small businesses to more easily participate in the formal economy. Indeed, this means that the integration of this new payment platform helps them to operate as registered businesses and have access to essential financial products.\n\nSeveral merchants also indicated that the motivation for the adoption of Pix was keeping up with the needs of their customers. In other words, the use of Pix was described as a matter of business necessity to ensure revenue.\n\n**High social connectivity** \nBrazil has a high level of social connectivity, and a significant portion of the population actively uses social media platforms and messaging apps. This is evidenced by the fact that Brazilians spend the highest amount of time per day using their smartphones.\n\nThis connectivity promotes the rapid spread of information and facilitates the adoption of new technologies such as Pix.\n\n**Government driven digital transformation** \nThe Brazilian government created both the technical and legal framework for Pix. The government actively promoted and encouraged the adoption of the Pix system and provided the right incentives for different participants. Furthermore, the government used communication channels to educate the public about the benefits of the system.\n\nHowever, this can be applied not only to Pix. The government has also proactively digitized public services. An excellent illustration of this is the provision of over 5000 public services to citizens through an online platform.\n\n**In a nutshell** \nPix's explosive growth in Brazil can be attributed to the synergistic convergence of two critical factors.\n\nFirst, the country's population has a high level of connectivity, with widespread use of smartphones and Internet access.\n\nSecond, Brazil's economy is characterized by a significant informal sector, in which a substantial portion of the transactions take place outside the formal banking channels.\n\nA significant proportion of the population lacked access to banking services and were in need of easily accessible and efficient payment solutions. This void was effectively filled by Pix.\n\nThese elements have contributed to Pix's impressive growth, which has established it as a popular payment option for both individuals and businesses throughout the country. Soon after its release, Pix became the most widely used payment method among Brazilians.\n\n### Recommendations\n\n**Focus on the positive aspects** \nIt is important for the Bitcoin community to consider both the strengths and weaknesses of fast government-backed payment systems. Instead of focusing on the risks of surveillance and capital control, it is important to recognize the potential benefits that such systems provide to the daily lives of individuals and businesses.\n\n**Build bridges** \nBitcoin companies should seek integration with government-supported payment systems instead of perceiving them as a threat. Pix has opened doors for innovative businesses and new competitors. The growth of neobanks and fintechs clearly exemplifies this phenomenon. Bitcoin companies can profit from this new environment. [Bipa](https://bipa.app/), with more than 50 thousand accounts opened, is a perfect example of this concept.\n\n**Look towards the future** \nIt is crucial to evaluate the long-term ramifications of rapid payment systems on individuals' perceptions of digital money. Individuals who make day-to-day payments using a smartphone may find it easier to accept bitcoin than individuals who grew up in the cash era. People's familiarity with smartphone-centric transactions is expected to reduce reluctance to use alternative forms of money, such as Bitcoin.\n\n___\n## Chapter 02: Political Polarization & Asset Neutrality\n\n### Insight\n\nFrom the very beginning of my conversations with Brazilians about Pix, a clear trend among the population became evident. **The introduction of Pix was closely linked to the Brazilian president at that time, Jair Bolsonaro**.\n\nThis association between the two seemed to contaminate public opinion about Pix. This led people to form opinions about the payment system based on their views of the political leader, rather than solely on the merits of the new financial platform.\n\n### Facts\n\nBrazil is notorious for its political instability. However, the release of Pix in November 2020 occurred in a particularly turbulent time.\n\nBack then, [the country was dealing with the polarizing presidency of Jair Bolsonaro, the COVID-19 pandemic, and its economic repercussions.](https://carnegieendowment.org/2021/02/17/brazil-s-polarization-and-democratic-risks-pub-83783)\n\nGiven such a scenario, it is not surprising that the public's perception of Pix was influenced by its association with a particular political group. This association caused people to develop biased opinions about the system.\n\nFor example, participants who opposed the Bolsonaro government expressed skepticism about Pix. The opposite was also true, as participants who supported Bolsonaro consistently reported a positive view of Pix. Both sides used popular political narratives and alluded to hidden agendas to defend their views.\n\nBolsonaro's supporters regarded the system as the president's attempt to fight the political establishment and take power away from the greedy bankers.\n\nBolsonaro's critics, on the other hand, argued that the Pix system was just another way for the president to enrich himself and his allies.\n\n### Recommendations\n\n**Expect the pattern to repeat** \nBitcoin is a politically neutral asset because it is not controlled by any central authority. It is also considered a commodity from a regulatory perspective and is traded around the world.\n\nHowever, if/when bitcoin is introduced as legal tender in another country, it may be characterized (by the population of that country) as the asset of a particular political party or individual that promotes its introduction.\n\nIn other words, part of the population may assume that there are questionable intentions and a disguised political agenda that supports the initiative.\n\n[This is exactly what happened in El Salvador, the first country in the world to recognize Bitcoin as legal tender](https://www.youtube.com/watch?v=ig3UN1GYmY8).\n\n**Educate** \nTo combat such misconceptions, education is crucial.\n\nIt is essential to support the uninformed population on the subject. Various forms of educational initiatives must be provided with relatable experiences and accessible explanatory material about the properties of bitcoin. This will **help people distinguish between the properties of bitcoin as an asset from the political process by which this asset is being integrated into society**.\n\n___\n## Chapter 03: Entrepreneurs’ Perspective - Part I\n\n### Insight\n\nA considerable amount of time was spent talking to typical Brazilian entrepreneurs, from street vendors to small business owners with multiple employees.\n\nThe first and most superficial takeaway from the conversations is that, in the beginning, **customer demand was the primary driver of Pix adoption**. If customers repeatedly ask to pay by means of a certain payment method, it is a no-brainer to do whatever it takes to make it possible. It is a matter of keeping your business alive.\n\nHowever, further conversations revealed some **unanticipated benefits**:\n\n1. The **ease of accepting electronic payments using their own smartphones**, thus eliminating the need for additional costly and fee-charging third-party devices. This is the case if they want to accept other forms of electronic payments, such as debit/credit cards.\n2. **No need to have change** (coins or smaller paper bills given back to a customer when they pay for something with a larger bill), a common problem when dealing with cash.\n\n### Facts\n\n**These insights can be explained by the unique Brazilian social and economic scenario.** The country's economy is deeply intertwined with a large informal labor sector, much of which relies on small-scale services provided by private individuals.\n\nThis informal sector is a vital engine of economic activity and livelihood for many people. This particular context helps to explain why the benefits mentioned above were such strong drivers of the use of PIX among entrepreneurs.\n\n> The first case of COVID-19 in Brazil was announced by the Ministry of Health on 26 February 2020. Two weeks earlier, the Brazilian Institute of Geography and Statistics (IBGE) had published data from the National Household Survey (PNAD) reporting that **around 38 million people in Brazil work in the informal sector**.\n> \n> **In eleven out of the 27 Brazilian states, more than 50 per cent of workers belonged to the informal sector** and, therefore, do not enjoy the benefits of the protective labor laws. \n> \\- [LSE Latin America and Caribbean blog](https://blogs.lse.ac.uk/latamcaribbean/2020/06/03/the-impact-of-covid-19-on-brazils-precarious-labour-market-calls-for-far-reaching-policies-like-universal-basic-income/)\n\n![](https://www.psacramento.com/content/images/2023/09/Firefly-20230904235545.png)\n\nBusiness owner holds a Pix-enabled POS device. Source: Author\n\nBy enabling self-employed individuals to accept electronic payments directly through their personal smartphones, Pix provides an accessible, fee-free alternative to traditional debit/credit card payment terminals. This resonates particularly well in a context where minimizing operational costs is critical to the sustainability of small business activities.\n\nIn summary, **Pix allowed business owners to accept a new highly sought-after form of payment, save on fees and do it all using a device they already owned**.\n\n![](https://www.psacramento.com/content/images/2023/09/PXL_20220815_134802777.jpeg)\n\n'We reward with 5% anyone who brings R$0.10, R$0.25 and R$0.50 coins totaling amount over R$20.00. Note: Temporary promotion. The Management'. This poster at the entrance of a bakery illustrates the shortage of coins. Source: Author\n\nMoreover, the appeal of Pix goes beyond convenience. It also addresses a common concern for merchants by reducing the burden of managing coins and small bills, a serious problem for any business in Brazil, regardless of its size. [This is a problem faced by 61% of merchants in Brazil](https://www-infovarejo-com-br.translate.goog/desafios-do-troco-no-varejo/?_x_tr_sl=pt&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapp).\n\n### Recommendations\n\nFor those involved in a Bitcoin project or business, it is important to realize that some of the unforeseen benefits of Pix can also be extended to Bitcoin.\n\nSimilar to Pix, Bitcoin transactions can be made seamlessly by using existing smartphones, without the need for additional payment devices. Lightning fees are also negligible, which is also relevant for businesses.\n\nIn addition, expanding the range of electronic payment methods reduces reliance on cash. **Alternative payment methods reduce the need to handle paper money and the burden of maintaining a supply of small change for customers who pay with high-value bills.**\n\nThese aspects are often neglected, but they are common and pressing issues for entrepreneurs of all kinds. **Do not forget to communicate these benefits to potential prospects.**\n\n___\n## Chapter 04: Entrepreneurs’ Perspective - Part II\n\n### Insight\n\nEntrepreneurs reported that a significant share of both incoming and outgoing payments were made using Pix.\n\nMost importantly, **they reported significant positive business improvement due to the adoption of the PIX system, including increased sales, booking and profits**.\n\n### Facts\n\n![](https://www.psacramento.com/content/images/2023/09/PXL_20220808_202015420-1.jpeg)\n\n__‘The whole process of acquiring this vehicle that I am driving was carried out digitally. I submitted all the documents, filled out the forms digitally and never set foot in a bank branch.’__, the taxi driver in Rio de Janeiro told me. Source: Author\n\nFrom the perspective of the entrepreneur, it seems that the positive financial effect of Pix goes beyond offering a new, additional payment method to clients.\n\n**Participants consistently described the ability to spend money received electronically without converting it to cash as positive.** This seems to be the positive systemic impact of Pix. Suddenly, **money flows without friction**, which increases the efficiency of business activity and offers individuals multiple options.\n\nFinally, it must be highlighted that this upgrade should not be analyzed in isolation. It is also important to consider that it is part of an overall digitization process that has lowered the barriers to integrate previously excluded participants.\n\nIt seems that the **Brazilian Central Bank is indeed achieving its goal of making the banking system more inclusive**. In this sense, Pix can be regarded as part of an overall effort to modernize the country's banking infrastructure.\n\n### Recommendations\n\nFor obvious reasons, the Bitcoin community is biased towards a negative view of government involvement in money matters.\n\nHowever, it is also important for the community to consider the glaring benefits of payment systems like Pix, if that is indeed the case.\n\nWhen ordinary citizens obtain more money out of their activities and have access to additional financial services, they can enjoy significant advantages. **The community should not ignore any kind of similar initiative just because it is government-sponsored**. Sometimes, the benefits can outweigh the risks. It is important to carry out a careful analysis and fair assessment of those risks.\n\n___\n## Chapter 05: Fear of Violence & Wallets\n\n### Insight\n\nParticipants frequently described **carrying cash as personal security vulnerability**. In other words, they claimed to feel safer when they carried no physical money in public places during their daily activities.\n\nPix was considered an improvement in this regard. **Being able to pay for purchases without having to carry cash is perceived as a positive** aspect.\n\n### Facts\n\n[Brazil is one of the 40 most dangerous countries in the world, when it comes to fear of becoming a victim of violent crime](https://www.visionofhumanity.org/wp-content/uploads/2022/06/GPI-2022-web.pdf).\n\nNevertheless, this may be just one of the drivers of an overarching phenomenon: the replacement of the physical wallet by the smartphone.\n\nSeveral participants mentioned to have the impression that people no longer carry cash or regular wallets as they used to. Not surprisingly, [for 86% of Brazilians, the fear of having their smartphone stolen is greater than the fear of having their wallet stolen](https://noticias-r7-com.translate.goog/cidades/para-86-dos-brasileiros-medo-de-ter-celular-roubado-supera-temor-por-roubo-da-carteira-21102022?_x_tr_sl=pt&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapp).\n\nFinally, [the government is making all kinds of ID documents (regular ID, driver's license, etc.) available in their digital form](https://www.gov.br/governodigital/pt-br/conta-gov-br/carteira-de-documentos-digitais) so that they can be displayed in smartphones.\n\n### Recommendations\n\n**Promote bitcoin as the money you do not need to carry around** \nEmphasize Bitcoin's digital nature and security features to align with the evolving preference for digital financial assets. **Highlight its role in reducing the need to carry physical cash, thus increasing personal security.** This may be particularly relevant to entrepreneurs (street vendors, self-employed professionals, etc.), who typically need to carry cash to and from banks frequently.\n\n**Learn locally, spread globally** \nEfforts to strengthen the security and anti-theft features of bitcoin wallets on smartphones are imperative. This is especially important when considering hostile environments, such as regions plagued by high crime rates, including certain areas in Brazil. **Ensuring that digital wallets are resilient in challenging environments can increase the overall level of security for users worldwide**.\n\n___\n## Chapter 06: Data Leakage & Scams\n\n### Insight\n\nAn interview with the daughter of a scam victim brought the following disturbing conclusion: **Pix has been used by scammers to trick their targets**.\n\nAn in-depth investigation revealed that the convergence of three factors created the ideal environment for social engineering cybercrimes:\n\n1. Pix system design lacks proper compartmentalization.\n2. Data leaks can expose vast amounts of sensitive information.\n3. Widespread and indiscriminate use of social media and messaging apps threaten security.\n\n### Facts\n\n**1: Compartmentalization** \nCompartmentalization is a [core information security principle](https://en.wikipedia.org/wiki/Compartmentalization_(information_security)) that is based on limiting access to information and resources to those who need it for a specific task.\n\nIn the context of a payment system, this principle can be applied as follows: if a user shares a payment identifier with another person (in order to receive a payment), the person who received the identifier should be able to use this information _exclusively_ for making payments.\n\n**Types of Pix key (aliases)** \nIndividuals can set their Pix Keys to be random alphanumeric identifiers, which is recommended for privacy reasons.\n\nHowever, there are three types of Pix keys which are indeed personal information data:\n\n1. **CPF (Individual taxpayer identification number)**\n2. **Email address**\n3. **Mobile phone number**\n\n**How Pix fails to respect compartmentalization** \nInstead of keeping private user information distinct from payment identifiers, Pix allows users to (mis)use personal data for this purpose.\n\nImagine that someone has been hired to do some gardening, such as mowing the lawn, at a residence. When the job is finished, the homeowner asks the gardener the Pix key to pay for the service. The worker's Pix key may be his phone number, which is simply informed to the homeowner.\n\nBy acquiring the worker's phone number, the homeowner is able to not only transfer payments, but also make phone calls, send messages or share that number with third parties.\n\nIf the principle of compartmentalization had been strictly adhered to, the homeowner would have been limited to performing only monetary transactions.\n\n**First possible explanation** \nThis system design concept seems to have targeted improved usability.\n\nRequiring individuals to recall a brand new piece of information seems to have been perceived as an obstacle that could hinder the success of the system. Allowing people to use personal info already memorized facilitates the transaction.\n\n**Second possible explanation** \nA secondary perspective on this problem suggests that the design flaw in the Pix system may be rooted in the frame of reference provided by the existing money transfer systems (TED, DOC, etc.).\n\nTraditionally, payment mechanisms required the disclosure of substantial personal information necessary for their use. These payment methods often involved transactions between parties who already had some level of trust or familiarity with each other. As a result, sharing such information was less worrisome.\n\nWith Pix, however, the landscape has changed. Pix is often used in scenarios analogous to cash transactions, in which the two parties may be strangers, with no pre-existing trust relationship. In this case, the exchange of personal information, such as phone numbers, exposes individuals to privacy risks.\n\nThe Brazilian Central Bank, perhaps taking cues from older systems, may not have fully considered the implications of merging payment identifiers with personal data, in such a broad range of transactional contexts.\n\n**2: Data leaks**\n\n**Pix key leaks**\n\nIn addition to the lack of compartmentalization, [Pix keys have been leaked](https://agenciabrasil.ebc.com.br/economia/noticia/2023-08/bc-comunica-vazamento-de-dados-de-238-chaves-pix).\n\n- August 2021: a data breach exposed **414,526** Pix keys linked to the State Bank of Sergipe (Banese).\n- January 2022: Acesso Soluções de Ação saw **160,147** of its customers' keys compromised.\n- February 2022: **2,112** Logbank customers' keys had been exposed.\n- September 2022: **137,285** Pix keys related to Abastece Ai Clube Automobilista Payment Ltda. (Abastece Aí) were compromised.\n\nIt is important to note that the type of data leaked is managed by the partner financial institutions and not by the Brazilian Central Bank itself.\n\nIn each incident, only identification information was exposed. Passwords and account balances remained confidential. Nevertheless, the exposure of this type of sensitive information gives criminals another data set, which can be used to commit fraud.\n\n**Regular data leaks**\n\n![](https://lh7-us.googleusercontent.com/GGJtCgV5bGrumJUvQpV7v12SJQVSzSEfhXiydahLKaQ4UJoJ6y3NVVTQBx6mj5_A03MwcLP3TgduyAI0RUWb3cF9Id5VEuKP9hvv8mLvcXRMlrVYz1CTGjf0ocjOvvr4iSwK-_isp1oK7eU4D7hG_hU)\n\nSource: [Vazamento que expôs 220 milhões de brasileiros é pior do que se pensava](https://novocantu.com.br/noticia/70489/vazamento-que-expos-220-milhoes-de-brasileiros-e-pior-do-que-se-pensava)\n\nOn January 20th 2021, [Brazil experienced its largest-ever breach of personal data](https://www.opendemocracy.net/en/largest-personal-data-leakage-brazilian-history/). It is difficult to imagine a more extensive and detailed collection of data on an entire population, let alone its unauthorized exposure.\n\nTwo related data breaches came to light at the same time. \n\n**The first breach**, once available on a well-known forum, contained names, Brazilian tax IDs (CPF), birth dates and gender information from **223.74 million unique records**, which were compiled back in August 2019. Notably, this data set, which exceeded the size of the Brazilian population, also provided detailed information of deceased individuals. It was publicly accessible and even indexed by Google.\n\n**The second breach** was related to data of the same 223.74 million individuals exposed in August 2019. In this case, **a preview had been made freely accessible**, while the complete data set was priced between $0.075 to $1 per CPF, with payments accepted only in bitcoin. This extensive breach encompassed 37 data sets, including ID numbers (RG), marital status, list of relatives, full addresses (with coordinates), education level, income and statuses in tax and social security systems.\n\n**3: Social media and messaging apps**\n\n**The dangers of oversharing**\n\n![](https://www.psacramento.com/content/images/2023/10/Screen-Shot-2023-10-25-at-11.49.29.jpg)\n\nSource: [Average daily time spent on social media according to global internet users as of the first quarter of 2023, by territory](https://www.statista.com/statistics/270229/usage-duration-of-social-networks-by-country/)\n\nAccording to [this study published on Statista](https://www.statista.com/statistics/270229/usage-duration-of-social-networks-by-country/), **Brazil ranks first in the chart, with an average daily social media usage** of 3 hours and 49 minutes. This means that Brazilians spend more time on social media than any other population in the world.\n\nSimilarly to people in other countries, Brazilians have embraced social media as a platform for self-expression and social connectivity.\n\nHowever, the indiscriminate use of social media can have dire consequences when personal information is shared publicly. Doing so without considering the consequences represents a treasure trove for criminals to exploit.\n\n##### Possible explanation: Low perception of the sensitivity of personal data\n\n![](https://lh7-us.googleusercontent.com/abLnX0WK-T0gJDdC2cb3J1tBHwX7ytSfgzmPSesrA8wCBSisHifxCiJcWC_YFT8dxUDw59ll6fVS1dWCwwk_Ec5lniPwZg9Jq5Hl4a99TZ4VEi76NzzaEgzBxQzlgypSVHXvEBqQoj8neccBM7qT34g)\n\nSource: [Internet users’ perceptions of information sensitivity – insights from Germany](https://www.sciencedirect.com/science/article/pii/S0268401218307692)\n\nBrazilians seem to have a lower perception of the sensitivity of several types of personal information, compared to Germany and the US.\n\nThis may be an additional explanation for the fact that Brazilians tend to share information online about their lives without considering how dangerous it can be.\n\n**Messaging app scenario: WhatsApp everywhere**\n\n> Popular enough to be nicknamed ‘zap-zap’, the messenger app is used by more than 90 percent of smartphone owners in Brazil to exchange text messages and by 83 percent to exchange images and voice messages. [Source](https://www.statista.com/topics/7731/whatsapp-in-brazil/#topicOverview)\n\nThe messaging app scenario in Brazil is notably homogeneous, primarily dominated by WhatsApp. This implies that **if a particular mobile phone number is active, it is probably linked to a WhatsApp account**.\n\nSuch a strong linkage facilitates the direct sending of text and messages, media content and links to the phone number.\n\nHowever, this convenience poses significant privacy and information security risks. The ease of connecting with people through WhatsApp, using only their phone number, can be maliciously exploited for phishing.\n\n> "Although \\[phishing\\] is not the most elaborate technique, it draws attention due to its power of dissemination and personalization. **It's not uncommon for people to receive messages and even calls in which the scammer provides various personal details, such as name, CPF, family members' names**. Most likely they have had access to a database leaked on the Deep Web and use this to make it appear that the contact is an official one from a company where the victim is registered," [explains Emilio Simoni](https://www.psafe.com/blog/golpe-do-pix-cresce-mais-de-350-nos-dois-ultimos-meses-aponta-psafe/).\n\n**Second example of data leakage in everyday use** \nIf criminals have access to such material, they will easily use it for scam.\n\nHere is a step-by-step description of how to find a street vendor's home address:\n\n![](https://www.psacramento.com/content/images/2023/10/Firefly-20231025122123-copy.jpg)\n\nQR code and other fields were changed to avoid exposing personal data. Fields: ****Bank name****, ****Name**** (where one could see just the first name), ****Pix key**** (where the mobile phone number was presented), and ****CPF**** (individuals tax payer id number, partially obfuscated)\n\n1. A street vendor had a stand on the street selling underwear. On the stand there was a piece of paper with a QR code for receiving Pix payments. The QR code was photographed.\n2. After decoding the photo on a free website [On-line QR Code Decoder](https://blog.qr4.nl/Online-QR-Code-Decoder.aspx), the full name of the recipient was revealed.\n3. After searching for the full name in a database leaked from a phone company, the person's home address was found.\n\n**Second example of data leakage in everyday use** \n\n![](https://www.psacramento.com/content/images/2024/01/chapter-06-confirmation-screen.jpeg)\n\nConfirmation screen displayed before confirming an outgoing payment: As can be seen above, the sender's full name, part of the CPF (social security number), and the name of the bank are displayed. Source: [Pix no Banco Inter: como cadastrar chave e transferir dinheiro](https://www.techtudo.com.br/dicas-e-tutoriais/2020/12/pix-no-banco-inter-como-cadastrar-chave-e-transferir-dinheiro.ghtml)\n\nAnother notable instance of data leakage occurs during the payment confirmation process. At this stage, sensitive information is displayed, including the payer's full name, a portion of their CPF (_Cadastro de Pessoas Físicas_, which is a Brazilian tax identification number), and the name of their bank.\n\nThis exposure of personal information raises privacy concerns, as it potentially allows for the collection of personal information without the user's explicit consent or awareness.\n\nWhen unauthorized access to sensitive information can be easily obtained by strangers, the consequences can be systemic.\n\n**Serious consequences**\n\n[\nPix: 22% dos brasileiros já sofreram golpes com o meio de pagamento\nA nova pesquisa da FICO mostra que os usuários consolidaram o uso do Pix no dia a dia, mas isso também eleva o número de golpes\n](https://www.tecmundo.com.br/seguranca/261823-pix-22-brasileiros-sofreram-golpes-meio-pagamento.htm)\n\nTranslated title: [****Pix: 22% of Brazilians have been scammed using this payment method.****](https://www-tecmundo-com-br.translate.goog/seguranca/261823-pix-22-brasileiros-sofreram-golpes-meio-pagamento.htm?_x_tr_sl=pt&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapp)\n\nHere are the [some of the most common scams associated with Pix](https://www.gov.br/economia/pt-br/orgaos/orgaos-colegiados/conselho-de-recursos-do-sistema-financeiro-nacional/acesso-a-informacao/educacao-financeira/copy_of_noticias/tentativas-de-fraudes-e-golpes-mais-comuns-com-o-pix-conheca-quais-sao-e-saiba-como-evita-los):\n\n**Fake bank employee scam** \nScammers pose as fake bank employees to trick victims into providing their personal and banking information. Then, they use this information to access the victim's accounts and make unauthorized transactions.\n\n**WhatsApp social engineering scam** \nScammers hack the victim's WhatsApp account and pretend to be a friend or family member of the victim. Next, they ask for money via Pix, claiming to be in an emergency situation.\n\n**Fake auction scam on social media** \nScammers take over someone's social media account and use it to sell goods at prices that seem too good to be true. Once victims pay for the goods, the scammers disappear without delivering the purchased items.\n\n### Recommendations\n\n**Advocate for privacy-centric payment identifiers** \nRecently, we have seen the rise of Lightning wallets, especially those that support Lightning addresses.\n\nBitcoin product managers striving for usability may inadvertently follow the same dangerous path the Brazilian Central Bank took: allowing users to use personal information (such as email or phone numbers) as payment identifiers.\n\nThis should not be done. The rampant fraud scenario in Brazil vividly illustrates the pitfalls of a system in which personal information and payment identifiers are not maintained separate.\n\n**Establish guidelines regarding the suitableness of identifiers** \nThis scenario induces reflection that leads to the development of guidelines.\n\nWhat type of information should be used as an identifier to receive payments?\n\nThe choice should take into account two dimensions:\n\n**Dimension 1: Identifiability** \n_How specific is the identifier regarding the individual's identity?_\n\n- **Specific**: Information that can easily lead to the identification of a specific individual (e.g., license plate number).\n- **General**: Information that is more generalized and less likely to identify a specific individual (e.g., hair color).\n\n**Dimension 2: Stickiness** \n_How difficult is it to change the identifier assigned by the entity or system?_\n\n- **High**: Information that is difficult or impossible to change (e.g., social security number).\n- **Low**: Information that can be easily updated or abandoned (e.g., email address).\n\n![](https://www.psacramento.com/content/images/2023/11/framework-information-identifier.png)\n\nSource: [Paulo Sacramento](https://www.psacramento.com/)\n\nThis framework suggests that data used as identifiers that are both general in terms of identifiability and low in stickiness are the most appropriate. Following this approach helps minimize the risk of identity theft.\n\n**Maintaining a privacy-first approach to bitcoin development** \nBuilding systems with a defensive, privacy-first perspective leads to more robust, secure systems.\n\nWhile privacy-centric solutions may face short-term resistance, especially from governments, they will prove their worth in the long run by protecting against systemic threats. The Brazilian case with Pix is a stark reminder of the systemic risks of neglecting basic privacy principles.\n\nBut Brazil is not alone. In Sweden, the root cause of the problem is not technical, but rather legal: the principle of "_Offentlighetsprincipen_" (Public Access to Information) allows the public to request and access personal information, including home addresses and tax records, of any individual.\n\n[Swedish Bitcoiners targeted by armed criminals: Criminals in Sweden are targeting prominent Bitcoin and cryptocurrency proponents due to the ability to request access to residential and financial information from government.](https://cointelegraph.com/news/swedish-bitcoiners-targeted-by-armed-criminals)\n\nThis principle has inadvertently become a tool for criminals to target bitcoin holders. [Prominent bitcoin figures in Sweden have been specifically targeted due to the ease of access to their personal information](https://cointelegraph.com/news/swedish-bitcoiners-targeted-by-armed-criminals).\n\nIn incidents reported in the media, victims have been physically abused in their homes in order to steal their bitcoin holdings.\n\nThe "_Offentlighetsprincipen_" facilitates this by allowing criminals to "size up" their victims based on income or capital gains tax information. At the same time, it makes it easy for them to find victims' addresses.\n\nThe experiences in Brazil and Sweden underscore the urgent need for a privacy-first approach to bitcoin and broader cryptocurrency development.\n\nAs the bitcoin ecosystem continues to evolve, developers and project leaders must work together to ensure that privacy is not an afterthought, but a foundational element that ultimately enhances citizens' security against diverse and evolving threats.\n\n___\n## Chapter 07: Designing Contact Lists to Prevent Errors\n\n### Insight\n\nAn interviewee highlighted that, when performing a manual payment via Pix, people can accidentally transfer money to the wrong individual.\n\nAccording to this participant, the problem arose because she had two contacts in the app with almost identical names. As a result, she accidentally sent money to the wrong person.\n\nSeveral factors can increase the risk of such errors in manual transactions:\n\n**Rushed or distracted users**: While Pix's emphasis on quick and smooth transactions is a notable feature, it can be a double-edged sword. The said participant stated that when she is rushed or distracted, she is prone to accidentally select the wrong contact. This haste or lack of focus can lead to costly mistakes, which was the case of our interviewee.\n\n**Growing contact lists**: Contact lists can grow quickly, especially for those who use them for business. As the list grows, it becomes more difficult to accurately and quickly identify the right recipient.\n\nThese risks highlight the need for design elements that help users clearly distinguish between contacts.\n\n### Facts\n\nPix allows users to make smarter payments through either a QR code or the "_Pix Copia e Cola_" feature (equivalent to "_Pix Copy and Paste_"). In these methods, the system automatically fills in the recipient's details at the start, thus eliminating the need to manually select a contact.\n\nHowever, sometimes users may need to initiate Pix payments manually, especially with vendors or service providers who do not have a more sophisticated automated system. This is often the case in face-to-face transactions, including those with independent service providers, such as hairdressers, manicurists and teachers.\n\nThe interfaces of several banking applications in Brazil were analyzed to identify design flaws that might lead to this problem. The analysis was conducted by reviewing YouTube tutorial videos for using Pix.\n\nThe resulting design trends for contacts were observed:\n\n**No avatar for contacts**\n\n![](https://www.psacramento.com/content/images/2023/11/Screen-Shot-2023-11-03-at-21.45.21.png)\n\nThe _Caixa Economica Federal_ app avoids the use of avatars for contacts, but rather presents contacts with text-only information.\n\n**A single initial**\n\n![](https://www.psacramento.com/content/images/2024/03/chapter-07-single-initial-1.jpg)\n\nBanco do Brasil uses a single initial as an avatar for each contact. This initial comes from the first name.\n\n**Two initials**\n\n![](https://www.psacramento.com/content/images/2023/11/Screen-Shot-2023-11-03-at-21.52.04.png)\n\nNubank uses two initials as an avatar. One initial comes from the first name and the other, from the last name.\n\n**Generic avatar**\n\n![](https://www.psacramento.com/content/images/2023/11/Screen-Shot-2023-11-03-at-21.52.54.png)\n\nAn older version of the Itau banking application uses a generic, undifferentiated image for all contacts, without providing a unique visual identifier for each contact.\n\n**Additional design patterns**\n\nFurther investigation also revealed some promising design patterns being used to potentially improve the user experience and reduce errors:\n\n**Favorites list**\n\n![](https://www.psacramento.com/content/images/2023/11/Screen-Shot-2023-10-31-at-23.25.05.png)\n\nThis feature allows users to add specific contacts to a Favorites List, thus ensuring that frequently used contacts are easily accessible and reducing the risk of selecting the wrong contact.\n\n**Nicknaming contacts**\n\n![](https://www.psacramento.com/content/images/2024/03/chapter-07-nickname.jpg)\n\n"Apelido" means "Nickname".\n\nThe ability to assign nicknames to contacts allows faster recognition, as users often have personal or informal names more closely associated with certain individuals.\n\n### Recommendation\n\nBy learning from Pix's experience in Brazil, designers in the bitcoin space can take a proactive approach to improving payment interfaces, especially regarding contact selection during manual payment initiation.\n\nHere are three design ideas to mitigate the risk of making payments to the wrong person:\n\n**Identicons**\n\n![](https://www.psacramento.com/content/images/2024/01/identicons.png)\n\nSource: [JDENTICON - Open source library for generating identicons](https://jdenticon.com/)\n\nUse [Identicons](http://identicon.net/), which are visually distinct avatars based on the hash of a specific contact information. This could be either a Public Key or a Lightning Address, for example. They provide a consistent visual representation that is unique to each contact.\n\n- Benefit 1: Identicons are automatically assigned to contacts, enhancing their uniqueness without additional user interaction.\n- Benefit 2: A specific piece of information (a Lightning Address, for example) will always generate the same image, thus increasing consistency.\n- Benefit 3: Contacts with very similar names receive quite different avatars.\n\nBy presenting a consistent and unique identifier next to a contact's name, users can more easily distinguish between contacts, even those whose names are similar.\n\n**Custom visual tags**\n\n![](https://www.psacramento.com/content/images/2023/11/emoji-contact-names-iphone.jpeg)\n\nSource: [Stylize Contacts & Names on the iPhone By Adding Emoji Characters](https://osxdaily.com/2013/05/15/customize-contacts-names-add-emoji-characters/)\n\nAllowing users to customize contact avatars with unique additional tags, such as emoji or color codes, can streamline the selection process in platforms such as Pix.\n\nFor example, if a user knows two people named "Pedro," one could be represented by a tennis racket emoji and the other, by a laptop.\n\nThese personalized emojis are visual cues that instantly help users identify and select the correct recipient, also improving accuracy and user experience.\n\n**Contact history integration**\n\n![](https://www.psacramento.com/content/images/2023/11/Screen-Shot-2023-11-03-at-22.11.35.png)\n\nThe [contacts page of the Bitcoin Design Guide](https://bitcoin.design/guide/daily-spending-wallet/contacts/) recommends having an activity section for contacts.\n\nProvides an overview of past interactions by displaying a transaction history with each contact. This could include the date and amount of each payment.\n\nBy providing this historical context, users can better understand their relationship with each contact and make more confident and informed decisions about future transactions.\n\n**Intelligent Contact Verification and Matching**\n\n![](https://www.psacramento.com/content/images/2023/11/caution_1_1_1_1.jpg.png)\n\nDrawing inspiration from the healthcare world: Often, a precautionary sticker is attached to certain medical fillings. This is done to avoid medical mix-ups when patients have similar names.\n\nIntroduces an intelligent function that proactively detects when users are attempting to send funds to a contact whose name closely resembles another entry in their list. If a potential similarity is identified, a two-step verification process is triggered.\n\nThis process would first display a warning pop-up, prompting users to double-check their selection. Then, a confirmation pop-up showcasing additional contact details (e.g., profile picture, public key, Lightning Address, last transaction date) would be presented to ensure that users are sending funds to the intended recipient.\n\nThis integrated approach reduces the likelihood of errors, while enhancing user confidence in transactions.\n\n**Conclusion** \nBy incorporating these features and promoting best practices, the Bitcoin community can not only enhance user experience but also increase confidence in the system by ensuring that the pitfalls faced by Pix users in Brazil will not be replicated globally.\n\n___\n## Chapter 08: Designing Payment Receipts To Prevent Fraud\n\n### Insight\n\nOne particular type of scam stood out as the most frequently reported by participants: the **Fake Pix Receipt scam**.\n\nThe Fake Pix Receipt Scam involves fraudsters presenting sellers with fake receipts for a Pix transaction, misleading them into believing that a payment has been made. This results in sellers releasing goods or services without actually receiving payment.\n\nThis scam is usually perpetrated in one of two modes: in person or remotely.\n\n**In person** \nAfter ordering a product, unscrupulous buyers present the seller what appears to be a valid receipt for a completed Pix transaction. In reality, it is a receipt for a scheduled payment. Mistakenly believing the scheduled transaction has been carried out, the seller considers the deal to be complete. After taking possession of the product and leaving the location, the dishonest buyer quickly cancels the scheduled payment, leaving the seller without the expected funds.\n\n**Remotely** \nIn this scam, a fraudulent buyer attempts to deceive the seller by sending a fake payment receipt. This fake receipt is presented as evidence of a transaction, even though no payment was actually made. The fake receipt meticulously replicates expected details, such as the transaction date and amount, thus creating an illusion of legitimacy. Typically, these fake receipts are sent as part of a purchase over the phone or through online messaging platforms, such as WhatsApp, to deceive the seller.\n\n**The bottom line** \nThese scenarios underscore the fact that many small businesses lack adequate point-of-sale (POS) systems that automatically verify and notify the seller of received payments.\n\nSellers often choose to use the smartphone banking app, but this is not a perfect solution. The somewhat extreme scenario of not being able to confirm payments through the banking application is more common than one might think.\n\nGiven these challenges, it is clear that relying solely on electronic verification and notification methods is not optimal. This demonstrates the critical need to design receipts ready for easy manual verification.\n\nIn other words, users of instant payment systems should be able to easily verify the authenticity of a payment just by looking at the receipt.\n\n### Facts\n\nIdeally, merchants should use stand-alone point-of-sale (POS) devices to ensure that all incoming payments are accurately verified and promptly approved.\n\n[PagSeguro](https://pagseguro.uol.com.br/) and [Stone](https://www.stone.com.br/pix/) are two companies that offer such Pix-compatible devices. However, these terminals come with an upfront cost and subsequent monthly fees. As a result, most users prefer the free alternative of using the standard mobile banking application, which is typically more attractive, for economic reasons.\n\nMaking sure that payments are received correctly with the app can be tricky, depending on the circumstances. This can lead to financial discrepancies.\n\nBoth human factors and technical conditions can make this seemingly simple task difficult. \n\nHere are some scenarios where sellers may have difficulty ensuring that payments are being received correctly:\n\n### Human factors\n\n**Lack of attention** \nA lapse in focus can lead to mistakes, such as accepting fraudulent or incorrect payment confirmations. In high-traffic situations (such as at an open street market or during a crowded event), sellers may be overwhelmed with simultaneous customers and may not focus on verifying each payment properly.\n\n**Manipulation from dishonest buyer** \nScammers may use social engineering, pressuring the seller to rush, claiming to be in a hurry, or other tactics to distract the seller from verifying the payment.\n\n**Several payments that are sold for the same price** \nEven if the seller is able to check the transaction history in the bank's application, a hurdle can arise when dealing with numerous transactions for products with the same price. In such cases, it becomes difficult to distinguish which payment was made by which customer. This situation is common for certain merchants dealing with a large volume of goods sold at the same price point.\n\n### Technical limitations\n\n**Limited device access** \nIn a bustling street market scene, several workers are actively engaging with customers, each receiving payments simultaneously. However, only one individual, possibly the owner or manager, has access to the smartphone that contains the banking app. This setup creates a unique challenge in verifying real-time payments, since only one person has the ability to confirm transactions on the spot.\n\n**Limited Internet access** \nThe sellers may not have access to a stable internet connection, making it hard to verify real-time transactions in their banking app.\n\n**Low smartphone battery** \nThe seller's smartphone may run out of battery, which prevents it from being turned on and verifying the banking app.\n\n**Banking app downtime** \nSometimes, due to technical glitches or poor maintenance conditions, a banking app may be temporarily unavailable. During these times, sellers are unable to verify payments.\n\n### Relying on manual verification of receipts\n\nWhen sellers find themselves in these situations, they must rely on manual verification of payment receipts generated by the buyers' banking application.\n\nThis means that they take on the task of confirming the legitimacy and accuracy of payments.\n\nIn non-face-to-face transactions, by verifying the payment receipt received through a messaging app on their own phone screen.\n\nIn non-face-to-face transactions, by verifying the payment received through a messaging app on their own phone screen.\n\nReceipts can vary greatly based on the banking app that generates them. However, examining the aforementioned typical Pix receipt, it becomes clear how merchants can frequently be tricked.\n\n#### Receipt of Banco do Brasil\n\n![](https://www.psacramento.com/content/images/2024/03/chapter-08-banco-do-brasil.jpeg)\n\nSource: Cannot be made public to protect the identity of the person who has posted it publicly on the Internet.\n\nThe most glaring problem with such a receipt design is its lack of structure. \n\nThe content of the receipt is presented in a single font, with no variation in style or weight throughout the document. This creates a visual monotony that fails to direct the reader's eye to the most important information.\n\nCritical elements, such as payment status (scheduled vs. completed), amount, date and time, and parties involved are not immediately apparent.\n\nRather, this receipt presents all data in a uniform manner, from key transaction details to potentially irrelevant information, such as bank hotline phone numbers.\n\nMost importantly, the receipt lacks a visual distinction that ensures its authenticity.\n\nHow would a seller know that this receipt is authentic and not a forgery based on its appearance?\n\n#### Receipt of Banco Santander\n\n![](https://www.psacramento.com/content/images/2023/11/Screen-Shot-2023-11-18.jpg)\n\nSource: YouTube video [QUASE CAÍMOS NO GOLPE DO PIX AGENDADO](https://youtu.be/u_ZTQRQRQ5w?si=yjKPpOpq9y5dCyju&t=489)\n\nThe screenshot was taken from a YouTube video in which the content creator describes how her mother almost fell victim to the Fake Receipt Scam in a non-in-person transaction.\n\nOn the **left side** of the image is a screenshot showing a real receipt for a scheduled payment.\n\nOn the **right side** is the tampered version of this receipt. In this altered version, the dishonest buyer had moved the contents of the screen up, hiding the title at the top of the screen that described the receipt as _scheduled_. Then, in the section below, another part of the image that contained the word _scheduled_ was erased using an image-editing application.\n\n**Summary** \nThe Fake Pix Receipt scam, which occurs in both in-person and remote transactions, exploits the inability of sellers to distinguish between real and fake receipts.\n\nThis risk is compounded by human factors, including inattention and manipulation, as well as technical challenges such as limited device access and banking application issues.\n\nThese findings highlight the need for improved receipt design to enable clearer manual verification and mitigate the risks exploited by unscrupulous individuals.\n\nIn the upcoming recommendations section, we will discuss how the bitcoin projects can ensure that a similar problem does not occur in contexts where bitcoin is used for everyday transactions.\n\n### Recommendations\n\nThe shift from traditional cash-based transactions to instant digital payments has significant consequences, including certain risks. A prime example is the "Fake Pix Receipt Scam" in Brazil, which has much to teach about these vulnerabilities.\n\nThis type of fraud challenges the common notion that the digitization of payments alone guarantees universal reliance on electronic confirmation methods. The real-world situations uncovered by this research have revealed a much more complex scenario.\n\nThese complications are not as rare as one might think. Failure to address them leaves a gap that can be exploited.\n\nTherefore, the Bitcoin community is encouraged to design products with real-world constraints (both human and technical) in mind.\n\nIn particular, wallets designed for everyday cash-like use cases of physical products and services (commerce, street markets, etc.) should generate well-designed receipts.\n\nThis will be reflected in features that allow users to quickly and confidently verify the validity of incoming payments through visual inspection.\n\n**Taking inspiration from physical bills**\n\n![](https://assets.losspreventionmedia.com/uploads/2019/07/counterfeit-money-1280x720.jpg)\n\nSource: [Freepik](https://www.freepik.com/premium-photo/checking-counterfeit-money-light-100-dollars-against-window-his-hand-check-watermark-new-hundred-dollar-bill-translucence-american-currency_18482336.htm)\n\nTo prevent frauds, physical money has properties that allow people to easily verify its authenticity. Anyone can hold a bill up to the sunlight and instantly verify that the embodied symbols attest to its legitimacy.\n\nSimilarly to physical notes, receipts of Lightning payments should not only include key information (amount, date, etc.) but also allow for verification of authenticity.\n\nThe two features proposed here are designed to enable users to improve the reliability of the visual validation process, even when they face significant constraints, whether psychological or technical.\n\nBoth features are used to prevent problems of buyer deception in face-to-face purchases.\n\n#### Feature 1: Live timer including seconds\n\n![](https://www.psacramento.com/content/images/2024/01/timer.gif)\n\nSource: [Timer in SwiftUI](https://sarunw.com/posts/timer-in-swiftui/)\n\nA live timer that displays the amount of time that has elapsed since a payment was made offers significant benefits.\n\nIt provides clear, specific information about elapsed time, a detail that is difficult to fabricate in advance in fraudulent scenarios.\n\nMore importantly, its dynamic nature enhances authenticity, making it a stronger deterrent to forgery than static representations.\n\nIt can be particularly useful in face-to-face transactions when the **seller does not have a smartphone** and needs to verify the receipt on the buyer's smartphone screen.\n\n#### Feature 2: Verification Emoji\n\n![](https://www.psacramento.com/content/images/2023/11/Frame-1.png)\n\nScreen adapted from the [Bitcoin UI Kit](https://www.bitcoinuikit.com/)\n\nFrom a technical perspective, this feature involves translating the preimage of a Lightning payment into an emoji representation.\n\nRather than presenting a complex, random string of characters, this approach takes advantage of the unique nature of the data and renders it into a form that is more user-friendly and visually accessible.\n\nThis makes the validating piece of information easier to see and understand, improving the user experience within the Lightning Network.\n\nA merchant can verify the authenticity of the receipts presented by buyers by comparing the verification emoji associated with their invoice with the verification emoji on the buyer's receipt. If these emoji match, the merchant confirms the legitimacy of the transaction.\n\nThis approach deters fraudsters because dishonest buyers cannot know in advance which emoji they would need to provide in a fake receipt in order to deceive the seller.\n\nIt can be particularly useful in cases where both the seller and the buyer have smartphones at their disposal.\n\n### Conclusion\n\nThe Fake Pix Scam illustrates the need for Bitcoin developers to plan for situations where payment verification via a smartphone or POS is unfeasible. This scenario must be considered when designing receipts for wallets used for everyday spending. This is important for both in-person and remote transactions of physical products and services.\n\nSimilar to physical currency, digital payment receipts should be designed with features that facilitate manual authentication by visual inspection.\n\nThe features proposed to enable these visual checks provide the bitcoin community with new design options that focus on creating receipts which are not only secure and reliable, but also user-friendly. This approach is key to addressing the challenges and risks associated with payments in person-to-person or technically constrained contexts.\n\nThe primary objective is to leverage technology capabilities to develop receipts that are intuitive, secure, and effective at preventing fraud. In addition, the goal is to continually refine, consolidate, and build consensus around the best practices to ensure user safety.\n\nThe contexts in which these can make a difference are few at the moment, but let us be proactive in ensuring the safety of users in [bitcoin's circular economies around the world](https://blog.bitfinex.com/education/a-look-at-bitcoin-circular-economies-around-the-world/). Getting it right from the start can make a big difference in the future, when adoption reaches higher levels.\n\n___\n## Chapter 09: Spending Habits & Different Methods\n\n### Insights\n\nConversations with participants suggest that just a few years after its launch, [Pix has become the number one payment method chosen by the population for everyday consumption](https://www.ft.com/content/e1c7b0e7-4c17-40c4-8e03-16c698674efa).\n\nHowever, **a significant part of the population still prefers to use credit cards to pay for services and consumer goods**.\n\nThis preference for credit cards over Pix predominantly comes from the desire to defer payment, a feature available in credit cards but absent for Pix, a system that by design processes payments instantly.\n\nThis insight is significant as it underscores a critical aspect of consumer behavior – the [ingrained habit of 'buy now, pay later' which is prevalent in certain countries like Brazil](https://blog.ebanx.com/en/why-do-brazilians-love-to-pay-with-installments/).\n\n### Facts\n\n**Overview of credit card ownership and usage in Brazil**\n\n> Today, in Brazil, there are already more credit cards (190.8 million) than working-age workers (107.4 million). \n> [Source](https://revistapegn-globo-com.translate.goog/economia/noticia/2023/09/no-brasil-16-milhoes-de-consumidores-tem-mais-de-tres-cartoes-de-credito.ghtml?_x_tr_sl=pt&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapp)\n\nResearch published by Serasa Experian (2023) shows that [52% of Brazilians have 3 or more credit cards](https://www-poder360-com-br.translate.goog/economia/52-dos-brasileiros-tem-3-ou-mais-cartoes-de-credito-diz-serasa/?_x_tr_sl=pt&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapp).\n\nFor most of them, the reason is the ability to increase spending limits to make more purchases.\n\nThe majority of respondents say that credit cards play an important role in the family budget:\n\n- 61% use them for installment purchases\n- 37% use them for essential consumption (food, fuel, etc.)\n\n**Challenging economic context: Brazilians live on a tight budget** \nOne possible interpretation of the fact that Brazilians own and use multiple credit cards is that they have a lot of income available for discretionary consumption.\n\nInterestingly, the Brazilian case is exactly the opposite.\n\n> In Brazil, the average household net-adjusted disposable income per capita is 12 924 USD, which is less than the OECD average of 30 490 USD a year.\n\nSource: [Brazil at Organisation for Economic Co-operation and Development (OECD)](https://www.oecdbetterlifeindex.org/countries/brazil/)\n\nOne way to assess a country's typical household disposable income is to compare it to other countries, as we can see above.\n\nAnother way to evaluate it is to conduct surveys with the country's population, as we will see next.\n\nAccording to a [research study with around 2000 participants by the Brazilian Central Bank](https://www.bcb.gov.br/detalhenoticia/747/noticia), **44.8% say they never or rarely have money left over at the end of the month**.\n\nNow, it is necessary to consider that Brazil's population is predominantly young, eager to consume.\n\nGiven this scenario, what kind of solutions may arise?\n\n**Credit cards with 0% interest for installment payments** \nAs we further address the Brazilian financial landscape, particularly in the area of credit card use, we encounter interesting insights from notable researchers. [Maria Paula Bertran and David Echeverry delve into this phenomenon](https://www.sciencedirect.com/science/article/pii/S2214635021000046), highlighting the significant correlation between the proliferation of credit cards and the retail sector in Brazil. A telling excerpt follows:\n\n> [Ferman (2015)](https://www.sciencedirect.com/science/article/pii/S2214635021000046#b5) and [Saltorato et al. (2014)](https://www.sciencedirect.com/science/article/pii/S2214635021000046#b11) affirm that the expansion of credit cards in Brazil is associated with retail stores. The Brazilian stores follow the basics of international retailers, such as Macy’s or Amazon’s cards.\n> \n> However, in Brazil, **retailers and banks allow people to buy in installments without interest rates**. \n> Under this procedure, the credit card companies offer the cardholders the opportunity to pay the total amount of purchases in several installments, without extra costs. \n> They are similar to regular credit card purchases in the sense that both do not involve interest rates, if the credit card bill is paid within the 30-day grace period.\n> \n> One can pay a BRL 100 purchase into five installments of BRL 20 each, for example.\n\nSource: Adapted from [What is the size of credit card debt in Brazil? Reporting Thresholds, Interest Rates and Income Distribution](https://www.sciencedirect.com/science/article/pii/S2214635021000046), by Bertran and Echeverry\n\nHowever, it is important to understand that this option depends on the policies of the commercial entities themselves. The ability to pay in interest-free installments and the number of such installments are determined by the seller. This means that not all purchases can be paid in installments, and the number of installments available may vary from merchant to merchant. This flexibility is a distinct advantage for consumers, but it also requires an understanding of the specific terms set by each merchant.\n\nRegardless of the details, the prevalence of credit card payments in installations highlights the importance of these credit facilities in the daily lives of Brazilians, bridging the gap between immediate needs and financial constraints.\n\nThe situation not only reflects the delicate balance between consumer behavior, retail strategies and financial policies in a developing economy. It is also a testament to the evolving financial landscape and the adaptability of the Brazilian population to meet these challenges.\n\n**Credit cards as a necessity** \nIn summary, for a large portion of the Brazilian population, **credit cards are a necessity, not just a matter of convenience**.\n\nWith lower disposable incomes, credit cards are being used to manage cash flow, allowing consumers to spread the cost of purchases for essential items over time.\n\nThis becomes clear when we look at the [types of expenses that drive people into debt](https://jovempan-com-br.translate.goog/noticias/economia/pesquisa-revela-que-maioria-das-dividas-de-cartao-de-credito-no-brasil-vem-de-compras-em-supermercados.html?_x_tr_sl=pt&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapp):\n\n- The majority of credit card debt in Brazil (59%) is due to purchases in supermarkets\n- Purchases of clothes, shoes and home appliances account for 46% of the debt\n- Expenses for medicines and medical treatments represent 37% of the debt\n\nIf we want to promote bitcoin adoption in Brazil, bearing in mind the relevance of credit cards is essential. To move bitcoin adoption forward, the community needs to recognize the fundamental role that credit cards play in allowing Brazilians to purchase basic products and services.\n\n### Recommendations\n\nRecognizing the important role of credit cards in Brazil can help calibrate expectations for Lighting Network adoption in the country.\n\nSimilar to Pix, Lightning payments do not inherently support deferred payments.\n\nThe implication here is profound. It suggests that the rate of the adoption of Bitcoin over Lightning in a retail context may be constrained in Brazil, not because of its functionality or efficiency, but because of deep-rooted economic consumer habits and preferences, such as payment deferral.\n\nRather than trying to go against the tide, it may be more practical to embrace it and explore methods of introducing people to the bitcoin experience that take into account their existing behavioral patterns.\n\nAccording to the information presented in this chapter, it seems that 'sats back' credit card services (like [Fold](https://foldapp.com/), for example) can be one of the most strategic ways to promote bitcoin in a country with high credit card usage, such as Brazil.\n\nThis model is particularly advantageous because it offers the following benefits:\n\n1. **Integration with existing habits**: Mirrors the familiar cash back reward structure of credit cards, making it easy for users to understand and engage with. By offering bitcoin (sats) as a reward for regular credit card purchases, it aligns with established spending patterns, encouraging its adoption without the expectation of changing consumer behavior.\n2. **Low-risk introduction to bitcoin**: Provides a low-risk entry point into the world of bitcoin. Users earn bitcoin as a reward for their usual credit card purchases, which allows them to accumulate and get used to bitcoin and the Lightning Network, without having to invest directly or navigate the complexities of cryptocurrency exchanges.\n3. **Education through experience**: Facilitates hands-on learning about bitcoin. As users earn and potentially use Bitcoin rewards, they gain practical knowledge and understanding of how cryptocurrency works, which can demystify Bitcoin and increase overall comfort with this digital asset.\n4. **Potential for appreciation**: Provides a greater sense of value than traditional cashback rewards. Unlike traditional cashback, bitcoin has the potential to appreciate over long periods of time, making rewards potentially more valuable in the future and adding an attractive investment aspect to everyday purchases.\n5. **Seamless integration with the Lightning ecosystem**: While traditional cashback points can provide immediate, tangible benefits in the context of a group of partner companies, their value and usefulness can be obscured by complex rules, restrictions on where they can be used, and potential devaluation. In contrast, earning Sats as rewards offers a simpler, globally accepted alternative, making it attractive to users interested in the growing bitcoin space. Being able to transfer sats to their own Lightning wallets (like [Phoenix](https://phoenix.acinq.co/) or [Wallet of Satoshi](https://www.walletofsatoshi.com/)) could be powerful. While integrating it with a gift card platform like [Bitrefill](https://www.bitrefill.com/) could make it very convenient.\n\nBusiness model considerations are beyond the scope of this research project. However, the benefits listed above make a compelling case for entrepreneurs in the bitcoin space, as it addresses the unique economic landscape of Brazil. At the same time, it offers an alternative for bitcoin to become part of everyday financial transactions without disrupting established consumer behaviors.\n\nThis approach could serve as a blueprint for promoting bitcoin in similar markets around the world, emphasizing adaptability and user-centric innovation in efforts to promote the expansion of the cryptoasset.\n\n___\n## Chapter 10: The Role of a Trusted Friend for the Elderly\n\n### Insight\n\nIn the course of the interviews, **older age emerged as a primary factor limiting the adoption of Pix among participants**.\n\nThis issue significantly impacts an individual's ability to independently navigate and use the new payment system.\n\nHowever, **a notable approach to overcoming this barrier involves the assistance of more technologically savvy individuals within their close social circles**, such as trusted family members and friends.\n\nThis support system plays a critical role in facilitating the use of Pix, which highlights the importance of interpersonal relationships in the adoption of new digital financial tools among elderly and less tech-savvy demographic groups.\n\n### Facts\n\nWhile the interviews highlighted the critical role of interpersonal relations in the adoption of Pix by the elderly, it is important to support these findings with concrete data.\n\nIn the following section, we present statistical evidence that not only underpins our findings, but also sheds light on the broader context of Pix use among different age groups and the associated risks faced by the elderly.\n\n**Older people use Pix less often than other age groups**\n\n![](https://www.psacramento.com/content/images/2024/01/Chart-Transactions-Distribution-per-Payer-Age-Range.png)\n\nSource: [Relatório de Gestão do Pix (2020-2022) - Banco Central do Brasil](https://www.bcb.gov.br/content/estabilidadefinanceira/pix/relatorio_de_gestao_pix/relatorio_gestao_pix_2023.pdf)\n\nThe chart shows that the 60+ age group has consistently accounted for a small portion of transactions throughout November 2020 to December 2022, with a stable representation of 4%. This suggests that the adoption of the payment system by this age group has not changed significantly over time and remains a very small segment of the overall user base.\n\n**Elderly people are increasingly victims of fraud**\n\n> The federal government assistance hotline "Disque 100" registered more than 15 thousand reports of financial or material abuses against the elderly in the first five months of 2023, 73% more than in the same period of 2022. With technological advances, those who have lived longer have become even more vulnerable. \n> Source: [Number of scams against elderly people grows by more than 70% in 2023 - Jornal Nacional](https://g1.globo.com/jornal-nacional/noticia/2023/07/03/numero-de-golpes-contra-pessoas-idosas-cresce-mais-de-70percent-em-2023.ghtml)\n\nAs observed above, further research demonstrates that older people are less active in using Pix than other age groups. They are also more likely to be victims of financial fraud, an unfortunate and growing phenomenon.\n\n**Possible explanation** \nConversations with participants revealed three factors contributing to the problems with Pix faced by aging adults:\n\n1. **Technical literacy**: Senior adults may lack a basic understanding of digital interfaces and digital payment flows. This gap in technological familiarity can lead to confusion and intimidation when faced with the prospect of adopting a digital payment system that often requires a level of digital literacy.\n2. **Resistance to change**: Aging adults may be accustomed to long-standing financial habits and methods, such as using cash or visiting banks in person. Introducing a new, digital system disrupts these familiar routines. The effort and perceived risk of learning and trusting a new system often results in a reluctance to move away from established practices.\n3. **Cognitive limitations**: As people age, many may experience limitations in their cognitive abilities, such as diminished short-term memory, slower processing of new information, and a decline in problem-solving skills. These limitations can make it difficult for older users to learn how to navigate digital payment platforms, understand security best practices, or distinguish legitimate banking contacts from scams.\n\n### Recommendations\n\nHowever, it is fundamental to recognize that for a certain subset of users, this may not be the reality. Instead, there is often an intermediary agent involved in the process of setting up wallets and, in some cases, managing funds. This is typically someone who is more tech-savvy and acts as an assistant to the older end user.\n\nThe recommendations outlined below are designed to address these challenges, proposing practical steps that can be taken by the bitcoin community to make digital financial tools more accessible and safer for the elderly population.\n\nA first and obvious lesson is that accessibility is critical, especially for applications with an older user base. Paying attention to details such as font size, contrast, and overall interaction design can significantly improve the user experience for senior users.\n\nHowever, the most important lesson goes beyond accessibility.\n\nWhen building bitcoin applications, we tend to have a very individualistic view of the onboarding process and money flows.\n\nHowever, it is important to recognize that for a certain subset of users, this may not be the reality. Instead, there is often an intermediary involved in the process of setting up wallets and, in some cases, managing funds. This intermediary is typically someone who is more tech-savvy and acts as an assistant to the older end user.\n\nImagine that you are working for an educational bitcoin project in a city where the population has a relatively high median age, such as [Lugano, which is 46.9 years old (2021)](https://www.bfs.admin.ch/bfs/en/home/statistics/cross-sectional-topics/city-statistics/city-portraits/lugano.html). It would be advisable to encourage the participation of family members or friends, who often act as technology facilitators. Training these individuals alongside the elders can create a supportive environment for learning and exploration.\n\nUnderstanding, educating and designing for this dynamics - where not only an individual, but also a trusted helper may be interacting with the application - is key for creating effective and user-friendly bitcoin applications for an older demographic group. Other non-technical users would also benefit from this approach.\n\nFinally, the staggering frequency with which the elderly have been defrauded in Pix-related scams draws attention to their vulnerability.\n\nI cannot help but wonder how many vulnerable people could have been protected from fraud if Pix-enabled [bank accounts offered some sort of joint account with dual control for the elderly](https://waywiser.com/wordtothewise/joint-bank-account-with-aging-parent/).\n\nIn the future, Bitcoin companies could gain a competitive edge over traditional banks by offering multi-signature schemes tailored for elderly customers.\n\nTogether, we can set a new standard in the world of digital finance and demonstrate that bitcoin is not only a symbol of innovation, but also a beacon of trust and security for all users, regardless of their age.\n\n___\n## Final Thoughts\n\nThis research consists of a collection of UX-related findings about the adoption of Pix, which may be valuable for the bitcoin community.\n\nAfter reflecting on the significance and relevance of the research as a whole, the following are our final thoughts:\n\n### Using digital payment systems as if they were cash requires a high standard level\n\nWhen people make frequent digital transactions with trusted parties (banks, businesses, known people, etc.), the requirements are relatively low.\n\nHowever, when digital payments are made with untrusted parties in cash-like scenarios, the stakes are very different. In this case, usability, privacy and information security standards must be raised to a whole new level.\n\n- Design problems on receipts can create opportunities for fraud, as we see in Chapter 08.\n- Design problems on contact screens can lead to people accidentally sending money to the wrong person, as already mentioned in Chapter 07.\n- The lack of focus on accessibility can reinforce the exclusion of an entire age group, as observed in Chapter 10.\n- The lack of compartmentalization of information can become another way for scammers to exploit victims, as we see in Chapter 06.\n\nIn other words, there is little room for error. Ignoring the smallest details can have dire consequences for many people.\n\nIn such a challenging context, a solid and conservative approach is more than justified. We are pleased to notice that the bitcoin community is eager to pursue a very high standard.\n\n### Privacy can achieve systemic relevance\n\n> A survey by financial protection fintech Silverguard reveals that **four in ten Brazilians have already been victims of some attempted fraud with Pix**. **One out of every five individuals being successfully scammed**. \n> Source: [Pix scam: find out what the most common cases are and how to protect yourself](https://www-cnnbrasil-com-br.translate.goog/economia/golpe-com-pix-saiba-quais-sao-os-casos-mais-comuns-e-como-se-proteger/?_x_tr_sl=pt&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapp)\n\nWhen we consider the bitcoiners' stance on privacy, the position clearly pays off because it protects citizens in a way that speaks for itself.\n\nThis is something that became increasingly clear as we worked on Chapter 06, which addresses the problems that arise from non-compartimentalizing personal information in the context of payments.\n\nIt is well known that governments have long fought against privacy in the context of financial transactions.\n\nNevertheless, we need to consider a scenario in which this changes. We also need to ponder over the possibility that governments around the world may find the systemic risks associated with the lack of privacy in public digital payment networks more concerning than the dangers associated with money laundering and terrorist financing.\n\nThis is especially true in an era of state-sponsored hacking operations, frequent data breaches, and powerful AI tools made available to the public.\n\nThese three factors can point to how the risk of not securing personal data at the foundational layers can lead to serious vulnerabilities that affect society as a whole.\n\nWith privacy layers such as [Lightning](https://en.wikipedia.org/wiki/Lightning_Network) and [Cashu](https://cashu.space/), the bitcoin community is not only paving the way for a secure alternative that can be used in emergencies and edge scenarios, but also setting an example and establishing a positive reference point that may be adopted as a mainstream standard in the future.\n\n### Double-edged sword: tighter controls and more fluid money\n\nWhen it comes to human rights, we believe it is fundamental to recognize that instant payment systems will both challenge and complement bitcoin in a nuanced dynamic.\n\nSome of the countries most advanced in adopting instant payment systems are relatively unstable democracies.\n\nIn this sense, these new systems can pose serious risks to human rights, as they naturally consolidate power in the hands of the government.\n\nNevertheless, this issue needs to be approached with caution.\n\nOn one hand, it allows for government overreach, as observed when [Moraes ordered the blocking of Pix of a person that was being investigated of organising demonstrations against the government](https://veja-abril-com-br.translate.goog/coluna/maquiavel/moraes-manda-bloquear-pix-de-investigado-por-organizar-ato-antidemocratico?_x_tr_sl=pt&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapp).\n\nOn the other hand, it makes it easier to set up the infrastructure for escaping the local currency. [Bipa](https://bipa.app/) is an excellent example, as it allows Brazilians to easily buy bitcoin with Pix. It even allows them to withdraw to their own self-custodial wallets via Lightning.\n\nRather than demonizing the system for being state-sponsored, it is more reasonable to recognize the dynamic, often complementary, often competing interplay between these modernized fiat rails and bitcoin.\n\n### Generational shift\n\nFinally, consider the experience that the generation born in Brazil after the release of Pix will have with money.\n\nThey will grow up in a highly connected world with very little exposure to physical money. At the same time, they will be used to making payments with QR codes on the street with Pix. At home, they will be sending money to their favorite video streamers via YouTube and Twitch.\n\nHow will this generational shift affect the adoption of bitcoin in the country?\n\nWe believe it may have a very positive impact, since this generation's experience with money will be digital from the beginning of their lives.\n\nBitcoin is also only 15 years old, and because of its inherent characteristics, it has the potential to become a foundational layer for the emerging digitized monetary landscape. However, it is far from being the only player.\n\nIf we wish to understand how bitcoin might be widely adopted in certain contexts, such as Latin America, it is essential to pay attention to recent developments, such as the adoption of Pix.\n\nIt feels like such an important phenomenon has been ignored by the community. Expectations and views of bitcoin adoption are better assessed in the context of the vast landscape of emerging and competing systems.\n\nThis perspective encourages a holistic approach to understand bitcoin's position in the evolving financial ecosystem.\n https://www.psacramento.com/pix-in-brazil-a-field-study-for-the-bitcoin-community/ 9026 \N 204939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.47872740502255 0 \N \N f 0 \N 0 225652067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 164388 2024-05-01 16:24:35.205 2025-03-29 22:39:46.786 Orange Pilling Has Stopped Working \N https://medium.com/breez-technology/orange-pilling-has-stopped-working-4a407252c7a3 21279 \N 164388 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.6199340889697 0 \N \N f 0 \N 0 43688802 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 210763 2024-08-05 13:43:24.77 2025-03-29 22:39:46.786 Bitcoin creates our new reality **A few weeks ago I did a live performance called REALITY. Today I'm sharing the actual video that played behind me, with high quality re-recorded audio so you can have the full experience of what it is meant to sound like! Lyrics below, enjoy!**\n\n\nREALITY Lyrics:\n\nWith time, a seed becomes a tree, sheltering us\nWith time, a skill becomes a talent, empowering us\nWith time, a technology becomes a tool, enhancing us\n\nBy nature, time gives value to almost everything \nYet the very thing our society gives value to, our money,\nloses value over time\nThis paradox warps our reality by defying the laws of nature and it stems from the belief that...\n\nA dollar today is worth more than a dollar tomorrow\nMeaning money must always lose value and we've built our reality off of this model\n"Time Value of Money" we call it but in reality this is just dogma\nSince we can keep making more of it we end up destroying our own purchasing power\n\nSo we put it in stocks\nput it in bonds\nput it in land\nput it in funds\nput it in crypto\nput it in gold\nbut we're not oracles so what do we know?\n\nWe know that it's hard to get by\nWe know some people may never retire\nIs time value of money a lie since it discounts the monetary value of our time?\n\nIf time is money, how are they moving in different directions?\nWe're working longer for less we end up just giving away our freedom\n\nGive up liberty for policies \nGive up our agency to the authorities\nBecause when our foundation is built on complexity we simplify humans by giving up our humanity\n\nReality check we've strayed too far from the truth\nThe world economy's a wreck when 1+1 no longer equals to 2\nAnd if life's created from the truth along the way something got screwed and we let our own dogma subjectify value\n\nWhen we divorce action from consequence\nWe defy the law of physics\nWhen we made scarcity infinite\nWe disregard the language of mathematics\n\nSo our systems are built on a fallacy \nOur society is based on a fantasy\nIn the absence of truth, we're living in the shadows of our own reality\n\nAnd that's the root problem\nMan-made rules can be broken\nAs our trust crumbles so does the progress of our civilization\n\nBut one thing remains constant\nNo one can cheat nature\nSo why not use it to architect a stronger base layer\n\nThe most beautiful buildings are engineered based on these consequences\nNatural law drives rigour needed to build something enduring\n\nUncompromising on principles that accounts for the flaws\nBecause when our lives are at stake the gravity of truth cannot be ignored\n\nSo if our monetary system was designed like structures\nit would embody energy and matter so the money itself matters\nAn unbreakable limit enforced by costliness of creation\nensures the structure holds value for many generations\n\nA rule based system governed by maths builds a transparent ecosystem that can self error correct\n\nWith no one in charge no words are taken as fact only work from computation can actualize truth of timestamps\n\nAnd like water flowing off a cliff down the path of gravity computational energy makes time flow one way only\n\nIt is this irreversibility which gives value to our money by upholding consensus and scarcity to create one shared reality\n\nNow the map is the territory\nNow we're working with high fidelity\nNow money is truthfully time and energy bound by finality\nNow we have the ability to manifest each of our dreams\nand build a world that is much more reflective of all of our needs\n\nAnd that's the purpose of money\nMerely a tool to shape our reality\nMerely a function to harness and express individuality\nJust a way to live freely\nJust a means for possibility\nBecause when we build on integrity we enhance the beauty of humanity\n\nThe most beautiful societies are built from diversity of our thoughts that come to life when we're empowered individually\n\nBecause when our money tomorrow is worth more than today, we shift from predicting to creating the future ourselves\n\nAnd when our money grows in value we grow thoughtful in how we use it\nNatural law drives rigour needed to fund something enduring\n\nSomething truly worth it\nSomething that pushes the sky's limit\nSomething only possible now real value and consequence exist in boundless virtual dimensions\nImagine potential creations fuelled by monetary life force lasting for many generations\n\nWe will venture into new territories and unleash these possibilities once we learn to embrace the truth of our reality https://youtu.be/-7Pi4raSsNw 20562 \N 210763 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.96083237327908 0 \N \N f 0 \N 0 204792803 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 155082 2024-04-08 18:22:12.226 2025-03-29 22:39:46.786 Braiins working on Lightning payouts with Voltage \N https://twitter.com/gkrizek/status/1760331184905519576 1352 \N 155082 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.243965943832087 0 \N \N f 0 \N 0 106219180 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 137577 2024-03-06 11:28:07.586 2025-03-29 22:39:46.786 Tip of the day: How can I run a LN node without full Core? I thought you were missing Darth's "tips of the day", so I came up with a question I had from one of my readers few days ago: \n\n### "How can I run LNbits quickly, with minimum effort and resources?"\n\nWe all know that the powerful LNbits require a LN node as funding source. And many new users are struggling to setup a node for that, or using bundle nodes, with outdated software, complicated dockers etc, things that for a noob are quite hard to debug and maintain.\n\nSo I came up with a more simple approach: \n### A LN node with neutrino synced blocks.\nWhy?\n- it does NOT require to run a heavy full Bitcoin Core node\n- it does not need a big hard drive\n- it sync in aprox 5 min\n- it is not using heavily the CPU and memory\n- is private syncing (neutrino server node doesn't need to read your wallet xpub, it just provide blocks)\n\n### Steps to do:\nIn this scenario, we want to run a LNbits with a LND node as funding source, for a small shop merchant or as a LN bank fro your family / friends.\nThis process take more or less 30 min.\n1. On any PC with a Linux OS (I recommend Debian or Ubuntu for simplicity), install LND as LN node.\n2. Optional for managing your node you can install Thunderhub or RTL as desktop apps. If not, you can easily connect Zeus mobile app to your node and manage it from there.\n3. Open 2-3 channels with big good nodes.\n4. Install LNbits latest version, as a standalone app (no need for complicated docker etc)\n5. Connect your LNbits with the LND node\n6. Edit your domain DNS entries for your new LNbits server and also open the ports 80/443 required for the SSL certificate and access in your router, pointing to the LNbits machine.\n7. Setup Caddy for reverse proxy DNS https of your LNbits (see LNbits documentation, is very easy)\n8. Done. Start your LNbits instance and setup your users.\n\n### Documentation:\n- [Set Neutrino for your LND node](https://docs.lightning.engineering/lightning-network-tools/lnd/enable-neutrino-mode-in-bitcoin-core)\n- [LNbits documentation](https://github.com/lnbits/lnbits/wiki/LNbits-Documentation)\n- [Using Caddy as reverse proxy for LNbits](https://github.com/lnbits/lnbits/blob/main/docs/guide/installation.md#reverse-proxy-with-automatic-https-using-caddy)\n- [Managing LN node liquidity](https://darthcoin.substack.com/p/managing-lightning-node-liquidity)\n- [Getting started with LNbits](https://darthcoin.substack.com/p/getting-started-lnbits)\n- [Private banks over LN](https://darthcoin.substack.com/p/bitcoin-private-banks-over-lightning)\n- [LNbits for small merchants](https://darthcoin.substack.com/p/lnbits-for-small-merchants)\n- [How to use LNbits with streamer copilot](https://darthcoin.substack.com/p/lnbits-streamer-copilot)\n- [Getting started with LNbits NOSTR market](https://darthcoin.substack.com/p/lnbits-nostr-market)\n- [The Bank of Lnbits](https://darthcoin.substack.com/p/the-bank-of-lnbits)\n- [Using LNbits to provide Ecash Cashu mints](https://darthcoin.substack.com/p/bitcoin-adoption-using-ecash)\n- [Zeus Mobile Documentation](https://docs.zeusln.app/)\n- [Thunderhub Documentation](https://docs.thunderhub.io/)\n\nIn closing, I would encourage all public node runners to ACTIVATE NEUTRINO on their Bitcoin Core nodes. It takes just 2 lines:\n```\nblockfilterindex=1\npeerblockfilters=1\n```\n\nIn this way you could participate and really help decentralize the network, helping the mobile node users (See Blixt, Zeus, Breez, Nayuta etc) that are using Neutrino. Or just offer these neutrino connections to your close friends and family to use it. Be a real "uncle Jim" for those that cannot run a full Bitcoin Core node.\n\nI hope more users will understand the significance of this mini-guide...\nMay the Bitcoin Be With You! \N 9669 \N 137577 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.28779592995435 0 \N \N f 0 \N 0 20854791 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307350 2024-11-24 23:50:36.703 2025-03-29 22:39:46.786 The Current State of Building in Bitcoin With the semi-recent news of Mutiny Wallet shutting down, I felt compelled to share some reflections on my journey within the Bitcoin space. For context, I’m currently working on BitEscrow.app alongside my co-founder and CTO, Topher Scott. Since 2021, I’ve been deeply embedded in the Bitcoin community, particularly in Austin, Texas, at Pleb Lab. The road to bringing BitEscrow to life has been anything but smooth—I've had to part ways with my former co-founder, Super Testnet, grapple with intense burnout, and face moments when quitting seemed like the only option. Even now, the challenges remain daunting. (The story behind building LightningEscrow is a saga in itself.)\n\nI know this may sound like a bit of a rant, but I wanted to pour my heart out because I understand just how hard this is. I’ve slept in my office, pulled countless all-nighters, and torn my hair out trying to simplify the complex—only to realize that simplifying the complex is incredibly difficult and requires immense time, effort, and passion.\n\nThe news of Mutiny’s closure has been weighing heavily on my mind, making me question how such a talented team could walk away from an incredible project. But, honestly, I can’t blame them. Building a startup is incredibly tough, and succeeding in this industry is even tougher. The sacrifices required to build a Bitcoin company are unmatched by any other industry, in my opinion. Not only are you building a company—already a monumental task—but you’re also navigating the technical, legal, and business complexities unique to the Bitcoin space. It’s the hardest thing I’ve ever done.\n\nBut why is it so hard? Why is it that we’re working with one of the greatest technologies ever invented, with limitless potential to change or even save the world, yet Bitcoin builders face such relentless challenges? It would be so much easier to just use developer tools like Stacks, launch my own token, build a poorly documented Layer 2 that no one in the Bitcoin community uses, and raise millions for a project that might not even exist in a decade.\n\nIt’s hard because Bitcoin companies struggle to get bank accounts without facing rejection. It’s hard to explain to a non-technical VC with an MBA the significance of what we’re building, with no third-party dependencies. The laws for FinTech are designed to stifle Bitcoin's progress, just to ensure banks can continue profiting a little longer before Bitcoin reaches mass adoption. The developer libraries we need often don’t exist, so we have to build them ourselves. Lawyers don’t know how to approach or even secure licenses for companies that don’t fit traditional molds. Regulators, regardless of party, are lost in a sea of altcoin marketing, struggling to understand what Bitcoin developers actually need. And even if we have a solution for something that Lightning isn’t ready for, the average person still doesn’t care about Bitcoin. The community, despite being aligned on core values, often debates trivial issues when we should be tackling bigger challenges. We’re in the midst of financial warfare against a system that’s bigger and richer than our band of plebs.\n\n\nKeep building. Never give up. Bitcoin is hard; everything else is easier by comparison. If you can succeed in Bitcoin, you can succeed at anything. \n\nWe must succeed. We have no other option. \N 12946 \N 307350 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 23.8501483600184 0 \N \N f 0 \N 0 33826019 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 214903 2024-08-14 17:08:21.522 2025-03-29 22:39:46.786 Cool update on hedgehog protocol I continue to work on my hedgehog protocol and I've figured out how to add some cool features to it. I wrote a "bridge server" which helps "translate" hedgehog payments into lightning payments, and it works right now, which means a hedgehog wallet can pay regular lightning invoices. I also added support for something I call "unilateral channels."\n\nWhat that means is, someone can be fully offline, not even talking to you, not even aware of you, and if you have their pubkey you can send them $100 in bitcoin (for example) in such a way that they "receive" it in a new hedgehog channel. You just use their pubkey to create a multisig and fund it with the $100, then send them a string of text containing signatures for the "force closure" transactions that they need in case they have to unilaterally exit from the multisig. Then, whenever they next get online, they can paste that string into their wallet and instantly start using the money in their (already confirmed!) new hedgehog channel to make hedgehog payments and lightning payments.\n\nYou you could also use the unilateral channel feature to "make up" a bunch of keypairs, get some business cards, print out channel opening/closing information on the business cards (using the pubkeys from each of the keypairs you made up to create the multisigs), fund the multisigs yourself, and then "gift" them to people by just handing them the business card. Each recipient gets a new, prefunded hedgehog wallet with full support for sending and receiving lightning payments, with two simple steps: (1) visit a webpage (or download an app) that runs hedgehog wallet software and (2) scan the qr code to import the channel data.\n\nAll of these features have some interesting side effects. For example, since you can receive money into a new hedgehog channel without being online, you can keep your private keys fully offline in an airgapped hardware wallet, and whenever you want to send money over hedgehog or lightning, you can just prepare the transaction in your software wallet, encode it as a series of several psbts, pass those to your hardware wallet for signing, and let your software wallet send the newly signed transactions to the bridge server.\n\nYou could also *receive* money over lightning into a separate hot wallet, and regularly withdraw it to a cold hedgehog wallet by using your hardware wallet to individually sign the various transactions that are involved in receiving lightning payments and revoking old state (but this requires implementing support for receiving lightning payments on hedgehog, which I haven't done yet -- see below).\n\nI am currently working on a feature that I call "virtual channels" which allow you to make a unilateral channel without going on chain. This lets you cheaply give people hedgehog channels that "fully" work, with the tradeoff that you (the sender) have a copy of this virtual channel's private keys, so you have custody of the recipient's funds. But the channel works just like a regular hedgehog channel, with the same interface, its own balance, full support for sending and receiving hedgehog payments, and sending lightning payments. So it's sort of like you're hosting an lnbits wallet for someone, only with hedgehog's ability to effectively emulate asynchronous payments. Which means you don't need a server to host this software, a regular phone or even a web browser should work fine, because you don't need to be online all the time, only the bridge server does.\n\nOnce virtual channels are ready I want to add support for "receiving" lightning payments into a hedgehog channel. I wrote up a specification for it here ([https://github.com/supertestnet/hedgehog-advanced](https://github.com/supertestnet/hedgehog-advanced)) but I haven't implemented it yet. Once that is done I think hedgehog will be ready to implement in a "real" wallet. It will have so many cool features:\n\n- keep your keys airgapped and still (a) send hedgehog payments (b) receive hedgehog payments (c) send lightning payments (d) regularly withdraw lightning payments from a "hot" wallet into .your airgapped hedgehog wallet without needing to do any base layer transactions\n\n- if exchanges like kraken or swan add support for hedgehog, any user who has monthly or weekly autobuy enabled could receive these regular purchases of bitcoin directly into a hedgehog wallet -- hot or cold -- and be able to spend the money on lightning or hedgehog as soon as it confirms, without needing to come online til they want to actually spend the money\n\n- if you are sending someone money and your recipient is *on*line, you can use a hedgehog wallet as a regular lightning wallet\n\n- if your recipient is *not* online, you can pay them by making a unilateral channel for them on the base layer, and to do that you just need to be willing to pay a base layer tx fee and know one of their pubkeys (technically that part is optional, as you can just make up a keypair for them -- though I personally wouldn't trust a keypair that some rando made up for me and I would sweep all funds from such a channel whenever I next got online)\n\n- if your recipient is not online and you don't want to incur a base layer fee, you can make a "virtual" (i.e. custodial) unilateral channel for them and deposit whatever amount you want to pay them into that. You can then send them its details and go offline, and they can sweep it whenever they next get online, without any further help from you (i.e. you don't need to be online when they sweep the funds! They just need the bridge server to be online)\n\n- this emulates asynchronous lightning payments pretty effectively, without the need for the sender to run a server or rely on a third party custodian. But there is a "first party" custodian -- the sender retains custody of the funds in a virtual channel until the recipient sweeps them. And there is a third party bridge server, who can censor payments, though if that happens, the sender can just retry with a different bridge server and stop using the old one\n\n- it also emulates "pull" payments, which are useful for subscriptions. If you want to subscribe to twelve months of bitflix, you can send bitflix twelve virtual channels where each one has a timelock on the virtual channel opening transaction. This effectively means that the first virtual channel cannot be used til 1 month goes by, the second one cannot be used til 2 months go by, etc. As each timelock expires once per month, a single virtual channel becomes usable each month. This allows bitflix to sweep funds from one channel per month, thus "pulling" pre-authorized funds from your wallet according to a predetermined schedule\n\n- if you ever want to cancel such a subscription, just make a new transaction with the bridge server overwriting all the remaining virtual channels you gave to bitflix. The bridge server will then stop treating the virtual channels as valid, because they can no longer redeem the money in them even if it comes to their side of the virtual channel, so bitflix can't use them anymore either, and thus your subscription is effectively canceled\n\n- all of this can work just fine today without waiting for bitcoin *or* lightning to upgrade -- which I think is just amazing! \N 21798 \N 214903 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 18.6733210976697 0 \N \N f 0 \N 0 75261177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3565 2022-11-06 19:20:49.922 2025-03-29 22:39:46.786 Stranded sats The other day @TNStacker posted a [story](https://stacker.news/items/320984/r/elvismercury) about preventing your UTXOs from becoming dust. This taps into one of my sources of paranoia about the accessible sats trending toward zero over time. The logic is something like:\n\n- btc becomes vastly more popular\n- block subsidy shrinks\n- fee rates rise\n- normal-size stacks turn to dust\n\nThe 'solution' to this is to migrate transactions less than some giant sum to L2 of some type, either literal L2; or some quasi-L2 custodianship, federation, etc. But I obsess with the idea of all this fragmentation, where so many of the stacks become inaccessible; and that's saying nothing about the coins that keep getting lost over time. It's like the heat death of the universe, but in software.\n\nI don't really have a point other than this is a thing I think about. Presumably someone has explored the idea before. Links or thoughts would be welcome. \N 20904 \N 3565 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.69979829442386 0 \N \N f 0 \N 0 101485131 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 9497 2023-02-20 14:59:47.631 2025-03-29 22:39:46.786 Saving Satoshi \N https://savingsatoshi.com/ 8713 \N 9497 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3650817025662 0 \N \N f 0 \N 0 217179371 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 49281 2023-08-13 10:34:54.706 2025-03-29 22:39:46.786 I'm Moving to Argentina to Teach About Bitcoin; Let's Talk About Javier Milei Hola, Argentinian-American here. I’m moving back to Argentina next month to work with My First Bitcoin (Mi Primer Bitcoin) to kick off community-driven Bitcoin education. Let’s talk about what’s going on in Argentina at the moment, shall we? As a disclaimer, it's important that I remain politically neutral in my role as a Bitcoin educator; this is not a pro- nor anti-Milei post. \n\nAfter his surprising primary victories last week, the global media is getting Milei’s monetary policies all wrong. I’m here to set the record straight. 
I’ve found recent coverage frustrating because very basic due diligence isn’t being performed by supposed journalists; a sign of the times where outlets simply regurgitate whatever’s going to get the most eyeballs on their platform as their staff simply copy and paste their way into oblivion. \n\nWhat Milei is proposing (the MSM is getting this part right, truth be told) is that Argentina abolishes the BCRA (Banco Central de la República de Argentina), which will inevitably leave a void and hence kick off a competition amongst the population as to which currency will drive the economy. 

\n\nHe’s proposing exactly this: a “currency competition”, which will inevitably lead to dollarization. Argentina has been dollarized by default for as long as I've been alive (I'm 42). It’s been a never-ending game of hot potato with one’s pesos. You simply get rid of them ASAP. You budget what you need for the week (now it’s down to daily needs thanks to 120+% inflation), and then the rest you flip into USD for long-term holdings or you plow those pesos into hard assets. With the elimination of the Central Bank, people will be free to use whatever they wish, but the fact remains that 80% of global commerce is in USD and Argentinians have chosen the US dollar decades ago. 

\n\nThis is an important distinction to make: there is no coercion in Milei’s plan: he’s actually proposing the elimination of monetary coercion by the Argentinian Central Bank and returning money back to the private sector, back to open markets. Dollarization is the obvious solution to Argentina’s back room dealing with the IMF (Argentina’s responsible for 60% of the IMF’s balance sheet, in fact). 

Milei has gone on the record by simply acknowledging that there is quite literally zero demand for the national currency, which fundamentally renders the Central Bank useless. 

So, the narratives stating that “Milei will dollarize the country” are misleading. There’s important nuance to the matter. He simply wants to eliminate the Central Bank and leave a void for the open market to fill. Coercion simply doesn’t figure into the calculus. \n\nArgentina will most likely end up looking similar to the mix we’re seeing in El Salvador currently: mostly digital dollar usage in the form of stable coins with early adopters saving in Bitcoin and spending on Lightning Network rails. With over $70B of actual physical dollar bills already in the country, hopefully the transition will be quick. Ecuador was able to successfully navigate a similar change in about 24 months two decades ago; with the advent of stable coins and all sorts of neobanks popping up, the liquidity of the dollar has never been higher in South America. By no means is the dollar a panacea, but it's the clear near-term choice. \n\nOK, that’s it. It’s important that you walk away from this blip knowing that Milei's plan is to leave the country’s currency in the hands of the markets, it’s just that dollarization is a foregone conclusion. 

It’s important that as a Bitcoin educator I don’t get involved in dumb fiat politics, but I wanted to clear up this issue as Milei continues to grow in global popularity. 

\n\nShameless shill: We need funding for community-driven Bitcoin education and I plan on also providing boots-on-the ground reporting from Argentina (maybe using Habla as my platform of choice?). We need funds for classrooms, printing workbooks, promotion, teacher salaries, etc. Mi Primer Bitcoin has a Geyser fund set up, not to mention you can donate directly on our site. Feel free to zap the sh*t out of this note as well! 

\n\nAs inflation continues to push monetary implosion in Argentina, Bitcoin education is more important than ever and I hope you’d consider partnering with me in orange-pilling a pivotal player in the peaceful monetary revolution. Saludos! \N 2335 \N 49281 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.2482078184049 0 \N \N f 0 \N 0 237723711 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52461 2023-08-19 23:41:58.566 2025-03-29 22:39:46.786 An Inch Deep and a Mile Wide Last week some friends of mine were in town for work and called to see if I wanted to grab lunch. I've known these guys for a while. Back in 2021 both bought some bitcoin. One held and one sold. One I paid for services with bitcoin. The other lectured me on why he sold his bitcoin and why it was foolish to hold a 'stock' that was going down in value. Of course at the time, during the bear market I explained to him why I was stacking stats. Back to present time. At lunch one of my friends asked, so when is the halving supposed to be again? The other said, what? What is that? Of course I gave the TLDR answer and he continued with his lunch uninterested.\n\nI'm sure many of you have similar stories. People who read headlines, watch a Tiktok on a topic and then act like they are "informed". Most people we encounter aren't _just_ like this on bitcoin. They are like this on a wide array of topics. They _are an inch deep and a mile wide_. They know very little about a lot of things. They can hold a short conversation on many topics but have few topics they could debate. Why is this? I don't really know if it is a cultural thing here in the US. Not sure if it is global or even just a human trait.\n\n\nThis shallowness also applies to media. I include social media as well as corporate media. When I started my career in tech was when I first started to see it. There would be stories on "reputable" news outlets about some tech thing and they would get it dramatically wrong. Then I started paying more attention. I dug into specific topics and I discovered that "influencers" are at best limited in their knowledge and at worst paid shills prostituting themselves for money and access. At best they make honest mistakes. At worst they are deliberately manipulating the masses. \n\n> If you don't watch the news you're uninformed, if you watch the news you're misinformed\n\n~ Denzel Washington\n\nMany people think well, I don't fall for that stuff. I don't follow the "main stream media". I follow the alternative media. The problem with this is these new influencers are just that. Influecers. Everyone has an agenda. Everyone has something to sell. Unless you become skeptical of "experts" and require some sort of trust to develop based on experience you aren't much better off from those drones that watch the news. You just changed channels. It reminds me of the boomer-cons that think they are getting the real news from Fox because they don't have the "liberal bias". As if CNN and the other sources are just biased. Its not bias. Its an agenda paid for by their sponsors and those that hold the access to information. The state machine. I recall during the pandemic people I know started to become suspicious of the media and state shills. I thought, this is great! Maybe they are opening their eyes a bit. But no, they weren't. They were following influencers who were saying things they had zero evidence to substantiate. They people I knew were just trading one set of shills for another set.\n\nSo what is one to do? Stay skeptical. Don't go from one side to the other. They are both wrong and right on different things. Think. \n\n> Thinking is the hardest work there is, which is probably the reason so few engage in it." - Henry Ford\n\nThere is not easy solution. The fact is, I can't tell you go listen/watch this person or source. They get it right. Over the years I have observed that no one gets it right all the time. Truth is, most of the time what is being discussed doesn't matter that much so you can safely tune out. Don't worry. Your friends will let you know when something "big" happens. Over time you will see that rarely do these thigs even affect you though.\n\nIf you aren't wasting time following influencers, now you have time to dive deeper into a subject area. Bitcoin, economics, growing your own food. You know, things that matter.\n \N 12951 \N 52461 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.3136396370005 0 \N \N f 0 \N 0 229417967 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 92891 2023-11-30 22:57:34.491 2025-03-29 22:39:46.786 ⚡️Stacker News Live in Nashville - July 26th, 2024 👋 Hey Stackers!\n\nGet ready for an epic time! Me and @k00b are hitting the road for our first-ever live show in Nashville at the [Game Terminal](https://www.gameterminal.com/) with the amazing @evankaloudis from Zeus.\n\n### **Episode SNL #130: On the Road in Nashville with @evankaloudis from Zeus**\n![Event Image](https://m.stacker.news/39868)\n\nJoin us in a private room, where we'll be serving up a killer nacho bar with pulled pork, beef, tortillas, dips, chips—the whole works! 🌮 We have enough for about 30 people. \n\nCome early space will be limited. But the venue is open to anyone. It has a full bar, outdoor patio with games and more. \n\nThe [Game Terminal](https://www.gameterminal.com/) is a gamer’s paradise with an open bar and one of the largest selections of arcade games and pinball machines in the USA. Sip on craft cocktails, savor local beers, enjoy casual dining, and dive into indoor and outdoor gaming fun. 🎮🍻\n\nSchedule:\n2-3pm ZBD x PlebLab panel with special guests (full announcement on Thursday)\n3:30pm - 5pm Stacker News Live with Evan from Zeus\n\nThis is going to be a blast! Come hang out, connect with other stackers, and be part of the fun. The event costs roughly 2.1 million sats. Feel free to zap if you want to help out.\n\nHuge shoutout to @justin_shocknet for kicking in 300K sats. Thanks, Brother!\n\n### What is Stacker News Live?\n\nEvery Friday Car and Keyan recap the front page of Bitcoin.\n[Stacker News Live](https://stackernews.live/)\n\n### What is Stacker News Live?\n\nEvery Friday Car and Keyan recap the front page of Bitcoin. Stacker News Live\n\n### What is Zeus?\nZEUS is an open-source, self-custodial Bitcoin wallet that gives you full control over how you make payments.\n\n### What is Pleblab? \n\nPlebLab hackerspaces are dedicated to supporting the next generation of Bitcoin builders and startups as a hackerspace and community accelerator. PlebLab's mission is to foster a community of developers, hackers, creatives, and builders of open-source software/hardware. We create a space where individuals can collaborate, elevate their skills, and transform seemingly impossible ideas into reality.\n\n### What is ZBD?\nZBD is cultivating a dynamic global community, connecting gamers and developers to explore new user bases and discover thrilling experiences.\n\n### RSVP via Evento: https://evento.so/p/evt_gXCAucxeHtx6qBTG \N 21791 \N 92891 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.88145838784381 0 \N \N f 0 \N 0 10962476 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3793 2022-11-10 06:32:11.523 2025-03-29 22:39:46.787 All you need to know about Silent Payments in one site | silentpayments.xyz **Say hello to silentpayments.xyz**\n\nWanting to learn more about Silent Payments, see which wallets support them, or find out how to integrate them into your wallet?\n\nI've built out a website with all of that info and more to do what I can to speed up Silent Payments adoption. https://silentpayments.xyz/ 9365 \N 3793 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4686091586275 0 \N \N f 0 \N 0 28497742 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 6036 2022-12-31 07:58:18.256 2025-03-29 22:39:46.787 I'm founder of Shocknet, creators of Lightning.Video and ShockWallet ... AMA Howdy 👋\n\nYesterday we dropped an early release of a new from scratch, cross-platform, non-custodial wallet https://ShockWallet.app\n\nIt connects to your node over nostr and its back-end has a nostr account system that lets you share your node with friends and family, without complex networking, by using nostr relays.\n\nWe're also in the process of nostrfying our other service, Lightning.Video \N 9354 \N 6036 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1774762974713 0 \N \N f 0 \N 0 244034430 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 6203 2023-01-03 21:14:11.497 2025-03-29 22:39:46.787 Million Sat Madness Starting tomorrow, Stacker News is running a new rewards experiment called Million Sat Madness. \n\n‎\n### How Million Sat Madness Works\n\nStacker News is giving away millions of sats to the top 64 SN contributors in March. One stacker is guaranteed a grand prize of 1 million sats + bonuses, and the rest of the top 64 are guaranteed a percentage share of another 2 million sats + bonuses.\n\nThe bonuses are funds that would otherwise be sent to the daily rewards pool. Instead of being paid each day, they will be added to the Million Sat Madness bonus pool and be paid at the end of March on top of the 3 million guaranteed sats. \n\nTo be clear, Million Sat Madness is a replacement (not a complement) to daily rewards this month.\n\nThe bonus pool is paid proportionally to your guaranteed sats, so the more you earn from guaranteed sats, the more you’ll earn from the bonus pool.\n\n‎\n### How To Participate in Million Sat Madness\n\nEveryone on SN can participate simply by creating and zapping great content. Tomorrow morning, the [rewards page](https://stacker.news/rewards) will display a leaderboard (updated hourly) of stackers in position to earn rewards as part of Million Sat Madness. \n\nAn "estimated rewards" number will also be added to the leaderboard to give stackers a better idea of the rewards for each one of the top 64 positions.\n\nJust like with all our past rewards experiments, Million Sat Madness rewards people who bring value to Stacker News. That means:\n- creating great posts and comments\n- zapping great posts and comments\n\nThe rewards algorithm Stacker News uses is still the same, the only difference is that your score accumulates over the entire month of March instead of resetting each day.\n\nThis also means you don’t have to be active every single day to earn rewards, however your score is cumulative so frequent participation on Stacker News is a better strategy.\n\nIf you prefer to hide your username from the Million Sat Madness leaderboard, you can toggle your profile's visibility in your [settings](https://stacker.news/settings).\n\nIf you have any questions, leave them below.\n\nYeehaw! 🤠 \N 10393 \N 6203 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.61032572140561 0 \N \N f 0 \N 0 185967757 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 216475 2024-08-18 09:20:02.783 2025-03-29 22:39:46.787 Where have you experienced a fresh new perspective? Please tell me stackers, if I wanted to crack my brain open and dump in a gallon of fresh perspective, where would I go?\n\nMy answer? Ghana, for sure. [I've talked about it before](https://stacker.news/items/270771/r/birdeye21). It was my first time in Africa. I had traveled north from Accra to a very, very poor part of the country as part of a consulting project (was a right place right time kinda opportunity) and had the pleasure of meeting the community there.\n\nOf all the incredible conversations we shared, as a bitcoiner, one in particular sticks in my brain. It all took place after a game of soccer we played. Check out the field we played on:\n\n![ghana.png](https://m.stacker.news/6993)_(and no, the one white dude isn't me)_\n\nI was talking with a couple ~20something year old locals, sharing stories about life. At some point they were wanting to hear all about the US, as they'd never been before. The "economy" came up, and they asked if I had any US dollars on me. \n\nNow I know what you're thinking -- but no, they really didn't want any money from me. It was pure fascination. They'd never seen a dollar before in their lives, and were simply awestruck at the $5 bill I pulled out of my bag. Probably because they were used to making cents each day.\n\nIt blew the conversation wide open. They began sharing all sorts of dreams and aspirations they had in life. To come to the US, to start a business, and take their family with them. Fire and passion lit up in their eyes. All because of this dollar bill. \n\nThey were young and hungry to take on the world, just like anyone else, and despite the SIGNIFICANT disadvantage they're starting out at, they did not show it at all. They had full belief in themselves. The money wasn't a thing to them. They don't let the corrupt jurisdiction they were born into suck the life out of them too.\n\nIt was touching. One of those moments where all notions of being a "stranger" fly out the window: I was talking with them like years-long friends of mine. Paradoxically though, this moment was also highlighting to me just how wide of a gap fiat has wedged between the world...\n\nEveryone is racing on the same track, but some get to start 10 or 20 or 50 laps ahead of the other.\n\nThose two locals are starting at Lap 0, but based on that interaction and the way Bitcoin is moving, I've got all the confidence in the world they'll catch up fast.\n\nSince Ghana, I've made it a point to collect fiat bills from every country that I travel to. After Bitcoin bitcoinizes, I want to have all these bills framed or stored in a jar (depending on how much I collect) to remind myself of how much change the world has gone through in my life. What will my grandkids think of these bills? How can I use them to teach something valuable about money? I am already plotting the orange pill conversations... \N 12951 \N 216475 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.9280277930937 0 \N \N f 0 \N 0 168018699 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 194248 2024-07-04 06:49:40.716 2025-03-29 22:39:46.787 7 Habits of Highly Effective Stackers Last November, I wrote about the “7 Habits of Highly Effective Bitcoiners” (https://stacker.news/items/321593). I received the dubious honour of having written PS. Haha.\n\nUndaunted (and shameless), I continued to post and comment here. Today, on the first day of the Million Sats Madness, I put forth my “7 Habits of Highly Effective Stackers”. Have I been reading the air on this platform correctly? Do I have the right pulse on the psyche here? You be the judge.\n\nThrough my article, I took the opportunity to surface 7 interesting posts written by other Stackers to enhance your reading pleasure. \n\n\n7 Habits of Highly Effective Stackers\n\n1. Low time-preference\n\nStackers know that stacking sats is a long-term game, so they apply the principle of delayed gratification. They frame other acts as low time-preference, of which the most noteworthy to me is raising kids. For an example, read https://stacker.news/items/224260\n\n2. Value for value\n\nDue to the frictionless way of zapping, Stackers show their approval for others’ work by awarding sats. They like how they have the autonomy to determine the value they derive from a post and award it accordingly. Stackers usually give high default zaps to affirm the Signal going on within the platform. To understand the origin of V4V, read this: https://stacker.news/items/260178\n\n3. 100 push-ups till $100k\n\nStackers marry two things they like: Bitcoin and exercise. More than one Stacker have published consistently their 100 push-ups until $100k routine. Their resolve to take care of their fitness in order to prime themselves for financial wellness is commendable. If you wish to join the ranks, post your routine at the Saloon: https://stacker.news/items/443295\n\n4. Walking\n\nStackers favour walking. They incorporate it into their daily routine, using it to relieve stress or prepare themselves to get into the flow or stimulate their minds to come up with creative ideas. No wonder Stackers have sharp minds. For a discussion of how Stackers use walking to enrich their lives, read https://stacker.news/items/245911\n\n5. Meditation\n\nStackers seem to embrace the Stoic philosophy and take challenges in their stride. In fact, the obstacle is the way. This may directly or indirectly influence them to have the will for low time-preference for the important things in life. After all, good things take time. Needless to say, many Stackers were eager to join a book club to discuss “Meditations”, Marcus Aurelius’ iconic work: https://stacker.news/items/423469\n\n6. Privacy\n\nStackers are conscientious about safeguarding their privacy. They believe that no one else should be privy to how they spend their money. This explains why posts regarding non-KYC says are often well-received, with many Stackers chipping in with their authentic experiences: https://stacker.news/items/333907\n\n7. Circular economy\n\nWhy do Stackers zap so freely? Most casual investors care passionately about BTC pumping to the moon. But Stackers care fervently about the ecosystem of Bitcoin. They are motivated by people ridding themselves of the all-consuming fiat mindset. They swear by the Bitcoin Standard and fight against the fiat brain rot. If this means they must spend some sats, they will do it unreservedly. Here are some ways in which Stackers spend their sats: https://stacker.news/items/220717\n\n\n \N 7668 \N 194248 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.57533828979484 0 \N \N f 0 \N 0 16232342 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 9462 2023-02-20 08:46:31.41 2025-03-29 22:39:46.787 The Lightning Network Grew by 1212% in 2 Years \N https://blog.river.com/the-lightning-network-in-2023/ 1010 \N 9462 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.7611046519568 0 \N \N f 0 \N 0 32274631 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138428 2024-03-07 14:16:37.878 2025-03-29 22:39:46.787 zap.meme - building in the open #1 ![logo-sm.png](https://m.stacker.news/14885)\n\n# building in the open #1\n\n[zap.meme](https://zap.meme) is a brand new meme platform where you can create and share memes and emojis, and earn Bitcoin! We're currently competing in the PlebLabs Top Builder competition.\n\nthis is our weekly progress update post! we'll be outlining what we've been up to this week, what we plan for next week, general strategy and product roadmap stuff, and other random ideas!\n\n#### Introductions\n\nCTO - Jowo (@jowo) is a Full-stack web engineer with an indie game development background. He's been working in Bitcoin for one year and has had a keen interest since 2015.\n\nCMO (Chief Meme Officer) - JD (@zapmeme) is a meme connoisseur and Bitcoiner. He's worked in people facing roles for over 10 years and is helping out with [zap.meme](https://zap.meme) doing testing and meme curation, as well as a myriad of other tasks that need attention. Once we have traction, he'll also be in charge of customer support and operating as a moderator.\n\n## Last month\n\nDuring last month we've been working like crazy to get the bare bones MVP built. Now that we're there, it's time to get the app out there, get people using it, and pivot where necessary. So far we've built:\n\n- a robust tech stack to work with so we can move quickly but maintain a high code quality.\n- put together a basic wire-frame design\n- integrated user profiles / login etc\n- built all the pages for showing content: meme feed, the emoji feed, etc\n- adding reaction functionality into the app so you can react to memes with custom emojis\n- integrated a custodial Lightning wallet using ZBD\n- decided on a name for our app and configured the domain\n\n## This week\n\nIt's been a busy week on our side. We soft-launched our app during this week's Meme Monday on SN. It went well, we received some positive feedback and encouragement which is always nice. (If you guys have any critical feedback it'd be much appreciated too!)\n\nNow that the app is out there in the hands of real users, the goal is to get feedback and grow our user-base. We've already made some adjustments to our strategy based on what we've seen and learned during the launch:\n\n#### Strategy\n\nSee here for a previous outline of our strategy: https://stacker.news/items/401783\n\nThis week we've decided to shift our strategy a bit. We had planned to get as many meme creators signed up on our platform as possible and uploading memes directly into our app. However, we've come to understand that this presents a significant challenge and we believe it will slow us down a lot. Our goal right now is growth, we want users viewing and reacting to memes!\n\nSo, this week, we've built a bunch of tools and refactored our app so that content generation on [zap.meme](https://zap.meme) is automatic. We're able to easily pull in 1000s of memes from two sources. stacker.news and Nostr.\n\nWhen these memes are pulled in, we generate a profile for the meme creator, which they can claim later when they sign up to [zap.meme](https://zap.meme), along with any sats their memes have earned.\n\nWe think this is a really cool way of handling content creation. It allows us to skip the whole "chicken and egg" situation that user generated content platforms often have: they have no users making content, so they have no users viewing content, so they have no users making content, so they have no users viewing content... ♻️\n\nwe're avoiding this trap by sourcing the memes ourselves, making the content creators a profile, and waiting for the honey-pot of sats on the profile to build up and eventually get claimed by the creator!\n\nAnd, content creation out of the way, we can now focus our efforts on getting content consumers using our site. The consumer strategy hasn't been fully planned out yet, but most likely it'll involve more than just dope memes.\n\n#### Work\n\nBig pieces of work done **this week**:\n\n- Profiles - you can now claim profiles on [zap.meme](https://zap.meme), this mechanism is designed so that [zap.meme](https://zap.meme) can be connected to various other platforms/protocols. E.g. A select few stacker.news users can now link their SN profile to their [zap.meme](https://zap.meme) account. And, any memes they post in SN's meme mondays will be automatically ported over onto [zap.meme](https://zap.meme). This feature is also being rolled out for Nostr. So you can automatically link your [zap.meme](https://zap.meme) account to your Nostr account(s) and you memes will be cross-posted onto [zap.meme](https://zap.meme).\n- Building out scraping scripts. These scripts are used to cross-post SN and Nostr memes onto [zap.meme](https://zap.meme). For now, they're running in local scripts that I run daily/weekly on my machine, but the next step will be to automate them and have them running in the cloud in a cron job / queue, or something like that.\n\nVideo demo showing the profiles functionality: https://www.loom.com/share/34e936dd800e42bba39938cb07265a3e\n\n## Next week\n\n**Next week** is gunna be all focused on content consumers and growing our user base and increasing the amount of sats spent in app.\n\n- Improve the core UX of the meme feed. We're not sure how we'll change it yet, but we'll be figuring this out next week. We have some creative ideas on this front, but need to make some tough decisions.\n- Bring economic incentives into the app for content consumers. Right now, only content creators have any real economic reason to sign up. We want to bring more value to our content consumers and encourage them to register. We have a few exciting ideas that we're planning on this front.\n- Some basic admin tools so our CMO (Chief Meme Officer) can more easily manage the 1000s of memes on the platform.\n- Nostr: we want more robust integrations with Nostr. we're gunna get Nostr sign in implemented in our app, and also experiment more with setting up a meme focused relay.\n\nP.S. We have something exciting lined up tomorrow's Meme Monday!\n\n## Stats\n\n| | Week 1 | Week 2 | Week 3 | Week 4 | ... |\n| ---------------------- | --------- | ------ | ------ | ------ | --- |\n| Weekly page views | 400\\* | | | | |\n| Weekly Unique visitors | 80\\* | | | | |\n| Total registered users | 34 | | | | |\n| Total reaction value | 1940 sats | | | | |\n| Total memes uploaded | 8323 | | | | |\n\n\\* approximate because analytics were added in the middle of the week\n\n# Claim your account\n\nHere's a shoutout to all those users with unclaimed profiles!\n\n@0204ce6d9d https://zap.meme/p/sn/0204ce6d9d\n@022e3cc87a https://zap.meme/p/sn/022e3cc87a\n@02b7622c79 https://zap.meme/p/sn/02b7622c79\n@02c228f055 https://zap.meme/p/sn/02c228f055\n@02fa90fd41 https://zap.meme/p/sn/02fa90fd41\n@032f088d51 https://zap.meme/p/sn/032f088d51\n@038395e3cc https://zap.meme/p/sn/038395e3cc\n@03d1ebdca3 https://zap.meme/p/sn/03d1ebdca3\n@0xbitcoiner https://zap.meme/p/sn/0xbitcoiner\n@1c8c319862 https://zap.meme/p/sn/1c8c319862\n@1SATequals1SAT https://zap.meme/p/sn/1SATequals1SAT\n@2009 https://zap.meme/p/sn/2009\n@2023 https://zap.meme/p/sn/2023\n@21JCLP https://zap.meme/p/sn/21JCLP\n@21m8 https://zap.meme/p/sn/21m8\n@23to30 https://zap.meme/p/sn/23to30\n@4 https://zap.meme/p/sn/4\n@8a3d0046aa https://zap.meme/p/sn/8a3d0046aa\n@ad6018f6f7 https://zap.meme/p/sn/ad6018f6f7\n@aguia https://zap.meme/p/sn/aguia\n@Alby https://zap.meme/p/sn/Alby\n@Alien https://zap.meme/p/sn/Alien\n@allonoumimelissa https://zap.meme/p/sn/allonoumimelissa\n@And1 https://zap.meme/p/sn/And1\n@anon https://zap.meme/p/sn/anon\n@antic https://zap.meme/p/sn/antic\n@asdasd123sadasd2 https://zap.meme/p/sn/asdasd123sadasd2\n@AudelTK https://zap.meme/p/sn/AudelTK\n@Axis https://zap.meme/p/sn/Axis\n@badabing https://zap.meme/p/sn/badabing\n@BankersBadDream https://zap.meme/p/sn/BankersBadDream\n@Bap https://zap.meme/p/sn/Bap\n@Baxy https://zap.meme/p/sn/Baxy\n@BC https://zap.meme/p/sn/BC\n@BeardedSaintRef https://zap.meme/p/sn/BeardedSaintRef\n@bedifferent https://zap.meme/p/sn/bedifferent\n@Believe https://zap.meme/p/sn/Believe\n@bembureda https://zap.meme/p/sn/bembureda\n@benwehrman https://zap.meme/p/sn/benwehrman\n@Bepositive https://zap.meme/p/sn/Bepositive\n@birdeye21 https://zap.meme/p/sn/birdeye21\n@BitByBit21 https://zap.meme/p/sn/BitByBit21\n@bitchicken https://zap.meme/p/sn/bitchicken\n@bitcoin*rationalist https://zap.meme/p/sn/bitcoin_rationalist\n@BitcoinBlowClub https://zap.meme/p/sn/BitcoinBlowClub\n@BitcoinFreedomSiim https://zap.meme/p/sn/BitcoinFreedomSiim\n@bitcoingraffiti https://zap.meme/p/sn/bitcoingraffiti\n@BitcoinIsTheFuture https://zap.meme/p/sn/BitcoinIsTheFuture\n@Bitcoinmaxi https://zap.meme/p/sn/Bitcoinmaxi\n@bitcoinplebdev https://zap.meme/p/sn/bitcoinplebdev\n@BitcoinPoemsPro https://zap.meme/p/sn/BitcoinPoemsPro\n@BITCOINstandard https://zap.meme/p/sn/BITCOINstandard\n@bitcointerest https://zap.meme/p/sn/bitcointerest\n@Bitiplyx https://zap.meme/p/sn/Bitiplyx\n@Bitman https://zap.meme/p/sn/Bitman\n@BitSATs https://zap.meme/p/sn/BitSATs\n@BononXD https://zap.meme/p/sn/BononXD\n@brandonsbytes https://zap.meme/p/sn/brandonsbytes\n@brave https://zap.meme/p/sn/brave\n@Brrr https://zap.meme/p/sn/Brrr\n@btcbabychickens https://zap.meme/p/sn/btcbabychickens\n@Burn https://zap.meme/p/sn/Burn\n@cejota https://zap.meme/p/sn/cejota\n@Chep https://zap.meme/p/sn/Chep\n@cleaningup12 https://zap.meme/p/sn/cleaningup12\n@corndalorian https://zap.meme/p/sn/corndalorian\n@CoSatoshi https://zap.meme/p/sn/CoSatoshi\n@Cowboy https://zap.meme/p/sn/Cowboy\n@Coyote_Cosmico https://zap.meme/p/sn/Coyote_Cosmico\n@crrdlx https://zap.meme/p/sn/crrdlx\n@DanielAngelovBG https://zap.meme/p/sn/DanielAngelovBG\n@DarthCoin https://zap.meme/p/sn/DarthCoin\n@davidw https://zap.meme/p/sn/davidw\n@deepologic https://zap.meme/p/sn/deepologic\n@DeliveryGuy https://zap.meme/p/sn/DeliveryGuy\n@DiedOnTitan https://zap.meme/p/sn/DiedOnTitan\n@DiracDelta https://zap.meme/p/sn/DiracDelta\n@eduardopro https://zap.meme/p/sn/eduardopro\n@elmeryee https://zap.meme/p/sn/elmeryee\n@elprotonhenrique https://zap.meme/p/sn/elprotonhenrique\n@elysia https://zap.meme/p/sn/elysia\n@Emergency https://zap.meme/p/sn/Emergency\n@energy https://zap.meme/p/sn/energy\n@Entrep https://zap.meme/p/sn/Entrep\n@entropicbit https://zap.meme/p/sn/entropicbit\n@Eobard https://zap.meme/p/sn/Eobard\n@falsefaucet https://zap.meme/p/sn/falsefaucet\n@fiatdenier https://zap.meme/p/sn/fiatdenier\n@fixthemoneyfixtheworld https://zap.meme/p/sn/fixthemoneyfixtheworld\n@fm https://zap.meme/p/sn/fm\n@fred https://zap.meme/p/sn/fred\n@frostdragon https://zap.meme/p/sn/frostdragon\n@frosty https://zap.meme/p/sn/frosty\n@Futurecurrency https://zap.meme/p/sn/Futurecurrency\n@gbks https://zap.meme/p/sn/gbks\n@Gian https://zap.meme/p/sn/Gian\n@Giveme5 https://zap.meme/p/sn/Giveme5\n@gmd https://zap.meme/p/sn/gmd\n@gms https://zap.meme/p/sn/gms\n@go https://zap.meme/p/sn/go\n@Hacker https://zap.meme/p/sn/Hacker\n@hardran3 https://zap.meme/p/sn/hardran3\n@hasherstacker https://zap.meme/p/sn/hasherstacker\n@Hat https://zap.meme/p/sn/Hat\n@hisatoshi https://zap.meme/p/sn/hisatoshi\n@HODL https://zap.meme/p/sn/HODL\n@HODLbitcoin https://zap.meme/p/sn/HODLbitcoin\n@hodlcuban https://zap.meme/p/sn/hodlcuban\n@hodlpleb https://zap.meme/p/sn/hodlpleb\n@Hopeful_Sat https://zap.meme/p/sn/Hopeful_Sat\n@hugsatoshiwa https://zap.meme/p/sn/hugsatoshiwa\n@Human https://zap.meme/p/sn/Human\n@hyperfree https://zap.meme/p/sn/hyperfree\n@IgnaciobTato https://zap.meme/p/sn/IgnaciobTato\n@immutable https://zap.meme/p/sn/immutable\n@Infinity https://zap.meme/p/sn/Infinity\n@ionisle https://zap.meme/p/sn/ionisle\n@J7hT9 https://zap.meme/p/sn/J7hT9\n@jakoyoh629 https://zap.meme/p/sn/jakoyoh629\n@jasonofbitcoin https://zap.meme/p/sn/jasonofbitcoin\n@JerryGarcia https://zap.meme/p/sn/JerryGarcia\n@jinformatique https://zap.meme/p/sn/jinformatique\n@jk_14 https://zap.meme/p/sn/jk_14\n@JohnySats https://zap.meme/p/sn/JohnySats\n@Jon_Hodl https://zap.meme/p/sn/Jon_Hodl\n@joyepzion https://zap.meme/p/sn/joyepzion\n@k00b https://zap.meme/p/sn/k00b\n@kakocuro https://zap.meme/p/sn/kakocuro\n@ken https://zap.meme/p/sn/ken\n@kenn_b https://zap.meme/p/sn/kenn_b\n@kepford https://zap.meme/p/sn/kepford\n@kevkevin https://zap.meme/p/sn/kevkevin\n@kr https://zap.meme/p/sn/kr\n@kriptan https://zap.meme/p/sn/kriptan\n@kuroba https://zap.meme/p/sn/kuroba\n@kurszusz https://zap.meme/p/sn/kurszusz\n@ladyluck https://zap.meme/p/sn/ladyluck\n@lawndough https://zap.meme/p/sn/lawndough\n@Lederhosen https://zap.meme/p/sn/Lederhosen\n@legxxi https://zap.meme/p/sn/legxxi\n@lightwalker https://zap.meme/p/sn/lightwalker\n@locomancell https://zap.meme/p/sn/locomancell\n@Longtermwizard https://zap.meme/p/sn/Longtermwizard\n@lumps https://zap.meme/p/sn/lumps\n@lunanto https://zap.meme/p/sn/lunanto\n@lust https://zap.meme/p/sn/lust\n@Lux https://zap.meme/p/sn/Lux\n@macarena https://zap.meme/p/sn/macarena\n@mallardshead https://zap.meme/p/sn/mallardshead\n@mango https://zap.meme/p/sn/mango\n@MEME_LORD https://zap.meme/p/sn/MEME_LORD\n@MIKUHAM https://zap.meme/p/sn/MIKUHAM\n@MMXXIII https://zap.meme/p/sn/MMXXIII\n@Mr_F https://zap.meme/p/sn/Mr_F\n@mrtali https://zap.meme/p/sn/mrtali\n@mSats https://zap.meme/p/sn/mSats\n@mudbloodvonfrei https://zap.meme/p/sn/mudbloodvonfrei\n@namgiangnet https://zap.meme/p/sn/namgiangnet\n@narc https://zap.meme/p/sn/narc\n@nerd2ninja https://zap.meme/p/sn/nerd2ninja\n@newnym https://zap.meme/p/sn/newnym\n@nicosey https://zap.meme/p/sn/nicosey\n@NigerianBitcoiner https://zap.meme/p/sn/NigerianBitcoiner\n@nikotsla https://zap.meme/p/sn/nikotsla\n@nonym https://zap.meme/p/sn/nonym\n@nullama https://zap.meme/p/sn/nullama\n@Nuttall https://zap.meme/p/sn/Nuttall\n@oliverweiss https://zap.meme/p/sn/oliverweiss\n@orange https://zap.meme/p/sn/orange\n@orangecrush https://zap.meme/p/sn/orangecrush\n@Orangepilled https://zap.meme/p/sn/Orangepilled\n@pacman https://zap.meme/p/sn/pacman\n@pako https://zap.meme/p/sn/pako\n@peacemaker9964 https://zap.meme/p/sn/peacemaker9964\n@phatom https://zap.meme/p/sn/phatom\n@piecover https://zap.meme/p/sn/piecover\n@planB https://zap.meme/p/sn/planB\n@poe7645 https://zap.meme/p/sn/poe7645\n@PositiveEnergy https://zap.meme/p/sn/PositiveEnergy\n@premitive1 https://zap.meme/p/sn/premitive1\n@PrinterGoBrrr https://zap.meme/p/sn/PrinterGoBrrr\n@Proofofwork https://zap.meme/p/sn/Proofofwork\n@rafaelasprilla334 https://zap.meme/p/sn/rafaelasprilla334\n@RagstoRiches https://zap.meme/p/sn/RagstoRiches\n@Relight_Motion https://zap.meme/p/sn/Relight_Motion\n@Rockedf https://zap.meme/p/sn/Rockedf\n@rod https://zap.meme/p/sn/rod\n@Roll https://zap.meme/p/sn/Roll\n@sahil https://zap.meme/p/sn/sahil\n@sancristrader https://zap.meme/p/sn/sancristrader\n@SatoshiNakanodo https://zap.meme/p/sn/SatoshiNakanodo\n@satoshiplanet https://zap.meme/p/sn/satoshiplanet\n@Satoshis https://zap.meme/p/sn/Satoshis\n@SatoshisSkeleton https://zap.meme/p/sn/SatoshisSkeleton\n@SATsStandard https://zap.meme/p/sn/SATsStandard\n@SATurDay https://zap.meme/p/sn/SATurDay\n@Scholarhacker https://zap.meme/p/sn/Scholarhacker\n@Scoresby https://zap.meme/p/sn/Scoresby\n@SebastianKazimierz https://zap.meme/p/sn/SebastianKazimierz\n@seeker https://zap.meme/p/sn/seeker\n@seraph https://zap.meme/p/sn/seraph\n@sgmoore https://zap.meme/p/sn/sgmoore\n@Shinoa_Fores https://zap.meme/p/sn/Shinoa_Fores\n@SN023 https://zap.meme/p/sn/SN023\n@spookydub https://zap.meme/p/sn/spookydub\n@spot https://zap.meme/p/sn/spot\n@ssaurel https://zap.meme/p/sn/ssaurel\n@stacksatstoday https://zap.meme/p/sn/stacksatstoday\n@Star https://zap.meme/p/sn/Star\n@StayhumbleStacksats https://zap.meme/p/sn/StayhumbleStacksats\n@StudyBITCOIN https://zap.meme/p/sn/StudyBITCOIN\n@Taranis https://zap.meme/p/sn/Taranis\n@tetsu_tamasi https://zap.meme/p/sn/tetsu_tamasi\n@thebullishbitcoiner https://zap.meme/p/sn/thebullishbitcoiner\n@TheWildHustle https://zap.meme/p/sn/TheWildHustle\n@ThrillerX* https://zap.meme/p/sn/ThrillerX_\n@Tjacten https://zap.meme/p/sn/Tjacten\n@TNStacker https://zap.meme/p/sn/TNStacker\n@tnuts420 https://zap.meme/p/sn/tnuts420\n@toxic https://zap.meme/p/sn/toxic\n@travis https://zap.meme/p/sn/travis\n@Turnspit_Dog https://zap.meme/p/sn/Turnspit_Dog\n@u https://zap.meme/p/sn/u\n@VEINTIUNO https://zap.meme/p/sn/VEINTIUNO\n@Wearesatoshin https://zap.meme/p/sn/Wearesatoshin\n@WhyBitcoinOnly https://zap.meme/p/sn/WhyBitcoinOnly\n@Xlindo https://zap.meme/p/sn/Xlindo\n@yosats https://zap.meme/p/sn/yosats\n@zapomatic https://zap.meme/p/sn/zapomatic\n@zodthebarbarian https://zap.meme/p/sn/zodthebarbarian\n \N 13759 \N 138428 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.4528628826362 0 \N \N f 0 \N 0 27058237 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 8294 2023-02-05 20:21:53.057 2025-03-29 22:39:46.787 What Mining Related Topics Do You Want to See Written About? Personally, I believe there are no, or maybe close to no experts in the mining industry. Things are constantly changing making it really difficult to keep up with everything. The mining landscape from when I started working in the industry in 2021 has completely changed. \n\nThere were no hydro miners, and overclocking in immersion was all the rage back then. Today people are laser focused on efficiency and optimization of their mines. \n\nThere are so many topics to write on. There are a handful that I am knowledgable on such as mining hardware. There's a lot more topics I would love to learn and write about. Let me know what is interesting to you \N 629 \N 8294 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.29741653510916 0 \N \N f 0 \N 0 150870447 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 193990 2024-07-03 17:09:41.371 2025-03-29 22:39:46.786 Bitcoin: A Misunderstood Revolution \nMost people do not appreciate the computer science breakthrough that Bitcoin was.\n\nBefore Bitcoin, we did not think decentralized digital scarcity was possible. Everything that has come before, and pretty much everything that has come since was either physical, centralized or not scarce.\n\nBitcoin brought all three together and even exceeded the scarcity of what came before. It was, to be sure, not just a computer science breakthrough, but a monetary breakthrough.\n\nYet, even after 15 years, most people don't get the significance of this new thing that was created. But as Bitcoin enters adulthood, it'll get much more respect, because it'll have proven its properties over time.\n\nAnd it's that true adoption, by people that understand its use as unconfiscatable savings that will transform not just the holders, but civilization itself. Brace yourselves, because the real show is about to begin. \N 12566 \N 193990 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.9520405948829 0 \N \N f 0 \N 0 183799188 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 147528 2024-03-23 04:18:47.803 2025-03-29 22:39:46.786 A blacklist of banks that block movements to or from Bitcoin related services \N https://github.com/theDavidCoen/BanksAgainstBitcoin 20551 \N 147528 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6908377912557 0 \N \N f 0 \N 0 114534626 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 94989 2023-12-05 17:44:20.292 2025-03-29 22:39:46.786 Bitcoin has a Scaling Issue Bitcoin has a scaling issue. Many people are either unaware of this or in denial, if you are one of these people I hope this article can inform or convince you. And if you have already realised bitcoin isn't perfect, perhaps I can tell you about some of the potential solutions.\n\nFirst we must understand the problem bitcoin faces, and game out the potential futures if we fail to improve. In it's current form, the bitcoin blockchain allows for around 260 million transactions per year. On average there are 144 blocks per day, and 52,560 blocks per year. Each block can, at most, fit about 5000 transactions inside. Most blocks actually contain significantly less than this however. This means 260 million people could make a single transaction per year, we could imagine this being a lightning channel open, or a transfer into cold storage. Clearly this isn't enough transactions for 8 billion people world wide to be able to either self custody or use the lightning network. It would take 30 years to onboard the world to self custodial lightning, and that is assuming you have 0 channel closes or any other types of transactions, which obviously won't be the case.\n\nYou may be thinking that this is okay, as we can use custodians or "bitcoin banks" as a way to make payments with bitcoin, however I will try to explain why this is not a solution to scaling. If too much bitcoin ends up being stuck inside closed custody systems, outside of the base chain, we could have a repeat of the gold standard, where promises to exchange the banks IOU for real bitcoin get broken. This could occur if the individual base layer fees are too high and no new self custodial scaling solutions are introduced to bitcoin, meaning people have to use custodians by necessity. Paper bitcoin can then be created, leading to a fractional reserve system with inflation all over again. While we may be able to audit a bitcoin bank's reserves, if they disclose the addresses, we won't be able to audit their liabilities without trusting what they say.\n\nAnother issue that comes with having too much supply not being self custodied, is centralising the consensus of the network and potentially allowing the network rules to be changed by a central entity. Consensus is determined by the economic majority of nodes. If not enough capital, in bitcoin terms, is held self custodially then the custodians with their own nodes may be able to alter the system against the will of the users. We need regular people to continue to run nodes and verify their transactions, if they end up needing to use a custodian it's likely they will stop running a node. Mining pool centralisation has similar issues, and bitcoin’s lack of scaling can also make this worse. As fees increase, fewer and fewer miners will be able to claim their payments from the pool due to not reaching the withdrawal thresh-holds.\n\nSo, what are some proposed ways for solving this issue? Lets first discuss what options currently exist, without any consensus changes to bitcoin.\n\nLightning Network. The lightning network is currently the only truly self custodial scaling solution for bitcoin. By using a 2 party multisig, called a channel, you can make many off chain transactions with only 2 on-chain transactions. While lightning is a great tool and will likely serve a crucial function for a very long time, it does have limitations and is not the final solution to scaling. In order for someone to use lightning they must make a layer 1 transaction to open a channel. And in order to be truly self sovereign, your money is not settled until it is put back on L1 with a channel close transaction. As we mentioned earlier there is a limit on how many transactions can be done on layer 1. I believe lightning will most likely end up as a settlement layer between businesses or other large entities.\n\nFederations. A federation, in regards to bitcoin, is a group of individuals or entities that each hold a key to a multisig containing bitcoin. This bitcoin can then be 'pegged' to a system or network that is off chain, the liquid network is an example of a federation. While a federation may be an improvement for some people versus a traditional bank custodian, ultimately it is still custodial. A relatively small group of people can conspire together to take your money or limit how you can spend it, and the government could easily control this small group. You cannot take your bitcoin out of the liquid multisig without permission from a majority of the key holders.\n\nE-Cash Mints. An E-cash mint is another form of custodian, where you send your bitcoin to the mint in exchange for a predetermined amount of their E-cash tokens. This mint could also be a federation multisig, or controlled by an individual. By using E-cash you don't have to create layer 1 bitcoin transactions every time you want to spend. E-cash transactions can also be very fast, cheap and private. Some examples of E-cash projects are Fedimint and Cashu. Once again though, this is still a custodial solution and doesn't solve the issues we described above. I do think there is one very interesting use case for E-cash mints, and this is community or family banking. The so called “Uncle Jim model”, where a family or small local community entrusts their bitcoin with a trusted and technical member. This could be used as a custody method and also a scaling solution, where the transactions in the local town just use the local E-cash token, to avoid L1 or lightning fees.\n\nMerge Mined Sidechains. This is another blockchain that is secured by bitcoin miners, as it uses the same proof of work mechanism that bitcoin uses, double SHA-256. Rootstock is an example of a merge mined sidechain. However there are 2 issues with this approach, there is no way to trustlessly withdraw from the sidechain, and more blockchains don't actually scale the base layer. While there are small improvements over traditional custody, unfortunately, you essentially have another form of a custodial network, which inherits the scaling issues of the base chain.\n\nNow lets talk about the proposals that aren't currently possible, and would need new OP codes for bitcoin script, requiring a soft fork.\n\nCovenants. A covenant is a contract you can voluntarily choose to be a part of, some spending limits can be applied to an address, where if you choose to accept bitcoin to it, new rules are applied that must be met for coins in that address to be spent. Some types of covenants already exist in bitcoin, such as time-locks, you can choose to make your bitcoin un-spendable for a predetermined amount of time.\n\nOP_CTV is the most basic covenant proposal, it stands for Check Template Verify. If you are using CTV your transaction must have a template that matches the previously set template, the spending conditions must be met. Once applied these contracts cannot be changed by anyone, they allow for provably trustless payment structures such as payment pools, where multiple people share a single UTXO. Lightning is essentially 2 people sharing a UTXO, with covenants we can increase that to many people, potentially thousands, sharing a UTXO. This also comes with privacy benefits, as many people will share a single footprint on L1. This function can also be used to create batched channels, where many lightning channels can be opened with a single UTXO. In fact, covenants can improve lightning in many ways.\n\nVaults are another important potential tool that could be created with many different covenants, allowing things like claw-backs of bitcoin if you get robbed, or putting limits on where your bitcoin can go. Another use case is having an automated inheritance setup, where if you die and don't respond to a notification for a period of time, your bitcoin is moved to a wallet controlled by your heirs. Some other covenant proposal examples are; OP_CAT, OP_TXHASH and OP_VAULT.\n\nWe may also be able to create trust minimised or even trustless sidechain two way pegs, allowing people to deposit to and withdraw from a sidechain without anyone's permission, one proposed method for achieving this are called spacechains.\n\nCovenants are very powerful upgrades to bitcoin, although relative to the greater world of programming, they are still very limited. Many years have been put into testing, researching and debating these proposals, however we must still be very cautious when making any changes to bitcoin's consensus rules. Ultimately the new tools created with covenants would all be opt-in, voluntary. Just like how you could send you bitcoin to an address nobody controls and lose it, or time-locking your bitcoin for hundreds of years, with covenants you could send your bitcoin to an address that prevents you spending your bitcoin, so caution should be taken when first using them. But over time, just like the lightning network, these tools can be developed and improved, to become simple and secure for the average person.\n\nI believe we should make small steps towards the end goal of giving self sovereign to everyone on the planet. We don't need to scale to 8 billion next week, we have time, however we can't become complacent and believe bitcoin never needs to change and adapt again. OP_CTV is a very safe first step, it has been around for several years, with lots of testing. It can also be upgraded with further OP codes in the future, to allow for greater flexibility and improved scaling.\n\nI highly recommend reading BIP119, which you can find here:\nhttps://github.com/bitcoin/bips/blob/master/bip-0119.mediawiki\n\nAnd a follow on article I wrote for bitcoin magazine, which goes into the activation process and the current community efforts for CTV: \nhttps://bitcoinmagazine.com/culture/rubins-reubens-and-the-push-for-ctv\n\nSome other useful websites to learn about covenants:\nhttps://utxos.org/\nhttps://covenants.info/ \N 15484 \N 94989 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.61724701650985 0 \N \N f 0 \N 0 86256557 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 257503 2024-10-06 10:31:19.947 2025-03-29 22:39:46.787 Bitcoin in El Salvador: An honest live report. *Episode VI: Block height 784000. The people. The political situation. The adoption of Bitcoin. An honest live report straight from sunny El Salvador.* \n\nOriginal post: https://carlbmenger.substack.com/p/bitcoin-in-el-salvador\n\n## Hard facts\n\n- **Capital**: San Salvador - President: Nayib Bukele - Currencies: Bitcoin (Since Sept 21), USD Shitcoin (Since 01) - Population: 6.5 million - Official language: Spanish - Time zone: UTC-6.\n\n- **Visa requirements**: Europeans receive a visa for a max stay of 180 days at arrival. Folks from the U.S. have to present a current U.S. passport and either a Salvadoran visa or a one-entry tourist card, which is valid for a max stay of 90 days. The tourist card can be obtained from immigration officials for a $10 upon arrival, payable in Bitcoin.\n\n- **When to go**: The weather in El Salvador consists, simply put, of a dry season and a rainy season. The dry season starts in October and lasts until the end of April. From May to October, increased rainfall is to be expected.\n\n- **Traditional food**: Pupusas is the national dish of El Salvador, a thick, stuffed, skillet-cooked corn tortilla, traditionally served with a side of tomato salsa and coleslaw. Pupusas are almost always handmade, sold at numerous street corners for 35ct to $1 a piece and eaten by hand.\n\n- **Transit Canada**: Most flights from Europe have a stop-over in Canada. If this is the case, do not forget to apply for an electronic travel entrance (ETA) before, otherwise you go from Canada directly back to Europe. Yea, you will need this ‚visa‘ just for transit.\n\n- **Using Bitcoin**: To be able to use Bitcoin, a steady internet connection is recommended. You can buy a Salvadoran Sim card (Claro or Tigo) on almost every corner of the country for about $10 a month. Internet connectivity is very steady, lads.\n\n![Bitcoin in El Salvador](https://i.postimg.cc/Znn0StG5/331ade7f-303b-47ab-9616-6bc6e1245ba8-576x400.jpg)\n\nI did it, folks. I have been to El Salvador, the smallest country of Central America, who, as you might all know, is the first to introduce Bitcoin as legal tender. And of course, as so many others, I wanted to check it out myself ‘Don’t trust, verify’, right? Two months of Bitcoin, surfing, sun, sea and pupusas. How that was and how far the Bitcoin adoption has progressed, that's what this episode covers. Despite my broke ass spanish, I tried to get in touch with the El Salvadorans and ask them about their opinion on the ‘coolest dictator’ in the world and their views of the hardest money on earth. A lot to cover, so let’s get started.\n\n## Already dead\n\nOh man, I can tell you, if you are planning to go to El Salvador, you should better not tell anyone about your trip outside your Twitter bubble. All the No-Coiners I told were practically already planning my funeral. I've traveled a lot, but I've never heard such a concentrated and unanimously negative opinion about a country. And I have been to Columbia a couple of years ago, right before they signed the contract with the FARC for example.\n\nOf course, we are not all fully resistant to outside influences, and it gave me food for thought. If there is a unified opinion, then it must be right, or not? So I took precautions for my near-death experience: The first thing I did as a Bitcoiner of course, I tried to secure my Bitcoin treasure for my descendants, in case of death. How I did it and why you should think about it as well, independent of your travel plans, can you read in my last episode 'Storing and inheriting Bitcoin: https://carlbmenger.substack.com/p/storing-and-inheriting-bitcoin\n\nSo, regardless what is going to happen to me, my precious Bitcoin are not a donation to my fellow plebs. I am sorry! In the same breath, I also loaded up my lightning wallets (Zeus, Muun, Wallet of Satoshi, Bitcoin Beach) with a couple of Sats, because as a real Bitcoiner, you make such a trip Bitcoin only, of course. Unfortunately, my family and some no-coiner friends then talked me into taking a credit card and a bit of cash with me, just in case of emergency. Classic Boomers! Well, to calm them down, I did as told.\n\n### The Twitter bubble\n\nAll the preconceptions from family and friends and reinforced by my loyal Twitter Bitcoiners, off I went. Let’s be honest right away, in retrospect, I had a bit of a naive idea of how it would look with Bitcoin adoption in El Salvador. I mean, the law is not even 2 years old, and I imagined it like a Bitcoin Spring Break party, but for a whole country. Those booze-filled events that you undertake as a teenager, where you start celebrating with all the others right at the airport before take-off. That's more or less how I imagined it, so as I arrived in Toronto and went to the boarding zone to El Salvador I was in fact very disappointed: Oh man was I wrong. The only people I met there were El Salvadorians living in Canada and visiting family, and old white Canadians flying on to Costa Rica. No parties, no Bitcoin shirts, no flags, I wasn't even asked about my ‘HODL Bitcoin’ hoodie that I bought before the trip. The Twitter Bitcoin bubble is real, folks!\n\nAfter a 5-hour flight and without conversations on how Bitcoin is going to change the world, I arrived in the capital, San Salvador. The airport is about an hour away from the city center. A Bitcoin Pleb I got in touch with beforehand recommended BitDriver, who accepts Bitcoin as payment for the ride. His name is Napo and when you talk to him, you realize how life changing Bitcoin can be. Finally, after the ride, as he handed me his phone with the Bitcoin lightning invoice, I thought to myself I made it to Bitcoin paradise.\n\n### We are early\n\nWell, I was immediately brought down to earth when I confidently and naturally wanted to check in at my accommodation and asked for a Bitcoin payment. First, the lady behind the counter looked at me a bit puzzled and left. I, a bit confused, waited. When she came back with the manager, I still thought to myself, wow, that's some concierge service for a Bitcoin payment. When he then apologized and explained to me that the wallet would unfortunately not work at the moment, disillusionment set in. He clarified that I could either pay in dollars or by credit card. Both shitcoins, I thought, secretly thanking my boomer friends for coercing me into taking some dirty fiat money with me. Apparently this wasn't going to be a Bitcoin only trip after all. This would unfortunately prove true over the next few days, as I explored the capital and met a few Bitcoin plebs, who are working on Bitcoin education. I can already hear the many critics crying out, ‘I knew magic internet money adoption wouldn't work!’ I would rather say that it just takes time. But let's have a deeper look.\n\n## Bitcoin Adoption\n\nSo, can you now live on Bitcoin-only in El Salvador? YES, you can, but the convenience depends a bit in which region in El Salvador you are located. On the Pacific coast, especially in and around El Zonte, La Libertad and El Tunco, where the Bitcoin movement started, you can live Bitcoin only without restrictions: Supermarkets, restaurants, accommodations, surf stores, real estate agents (Yea you can buy a fancy pool house with Bitcoin), … In summary, a LOT of entrepreneurs accept Bitcoin. In the rest of El Salvador, it is a bit more complicated. There are also many businesses accepting Bitcoin, but far from universal.\n\nThus, it is very helpful to use Bitcoin Maps (BTC Map, Bitcoin Beach Map) to locate businesses that accept payment in sats. That said, I also discovered quite a few smaller companies that were not listed, but happily accepted Bitcoin. So the best strategy is to just ask everyone ‘¿Acceptas Bitcoin?’, the only spanish phrase I know in my sleep. Asking for Bitcoin payment is essential, even if companies do not accept it, they will eventually think about it, if demand for Bitcoin payments rises. And yes, there is a way to just bring your Bitcoin Lightning wallet and enjoy El Salvador fully. The magic trick are Bitcoin ATMs run and operated by Chivo. There are more than 200 of these spread throughout El Salvador, where you can either buy or sell Bitcoin for dollars, commission-free. All you need is a phone number and a Bitcoin Wallet to process On-Chain transactions. Lightning is unfortunately not yet supported, but coming.\n\n### Remittances Payments\n\nThe Chivo ATMs also serve an important function for El Salvadorans. I was able to meet many who received payments from family members in Canada or the US via Bitcoin and then had them paid out in exchange for dollars at the Chivo ATMs. Instead of 10-15% in fees that Western Union and Co charges, you have no commission and money is sent final in a matter of minutes than days. Remittances payments account for more than 26% of the gross domestic product in El Salvador.\nFigured out a sly roundabout way to make my trip somewhat Bitcoin only, I then started to ask myself why some companies are not accepting Bitcoin? The first thing to know is that El Salvador does not have its own currency. Rather, they have been using the US dollar since 2001, undoubtedly one of the better fiat currencies out there. And as it is with long-established traditions, they are difficult to break. Since the population does not see the immediate rapid devaluation that is the case in Zimbabwe, Venezuela, or Lebanon, for example, it is rather a steady slow grind to the bottom, so they do not really see an immediate need to hold or accept Bitcoin. Comparable to our slow adaptation in the West, regardless of whether there is a law or not.\n\n### Education is key\n\nBitcoin is a grassroots movement, a bottom-up approach, from the people, for the people. For this reason, a government enforced law that suddenly everyone has to accept Bitcoin overnight will not work. The Bitcoin law in El Salvador has without question put the country light years ahead of all other countries because it has the most favorable infrastructure and the most bitcoin-friendly laws. Nevertheless, for Bitcoin to catch on, people need to understand why they should use hard money. Thus, education about money in general and the benefits of Bitcoin specifically is key for adoption. \nSecondly, El Salvadorians are very suspicious of the state. Reasonable, because the population has suffered criminality and corruption on the highest level in the last decades. Now, it was precisely this state that introduced Bitcoin as an official currency and launched the state-owned Chivo wallet. The distrust against Bitcoin was naturally very high, because many El Salvadorans still do not know that Bitcoin is a permission-less and state independent money. Rather, many think Bitcoin belongs to the government and is their own currency.\n\n### Proof of work\n\nIn this context, I was able to meet the guys from “Mi Primer Bitcoin”, one of a handful of non-profit organizations who spread donation based Bitcoin knowledge around El Salvador. They just introduced their own Bitcoin Diploma for schools and universities. The kind of proof of work, we all have to work on in the Bitcoin space: Spreading knowledge about Bitcoin in easy digestible bits, because knowledge is key to Bitcoin adoption. And that doesn't happen overnight, but takes time. Only when people understand the benefits of Bitcoin, they will start using it. By the way, you can also download the Bitcoin diploma yourself and start educating others about money. That ‘education is key’, is slowly recognized by the El Salvadoran state, which now wants to work with Mi Primer Bitcoin to offer courses at schools and universities. A great development indeed!\n\n![Mi Primer Bitcoin](https://i.postimg.cc/Kz9CCd7f/83e8608a-bcb7-48bb-893c-91401eac9dbb-716x495.webp)\n\n## Politics\n\nThe political upheaval in El Salvador has made a lot of negative headlines in the West and was also a big reason for my trip. Without question, Nayib Bukele has radically changed the political system in the country and imprisoned many people. Right up front, among them are probably also innocent ones. In order to form an opinion, however, one must consider the situation before Nayib Bukele became president. In this regard, I also tried to talk to El Salvadorans, so whenever I need transportation I either took the public bus or hitchhiked my way, to get in contact with as many as possible. \n\nOne thing is certain when talking to them: El Salvador was a living nightmare before Nayib Bukele took over. Imagine, a year ago it would have been impossible for them to work or go out later than 6 o'clock in the evening, because in the dark it was very likely that they would be stopped, robbed or even be murdered by a gang member. In fact, at that time, El Salvador was one of the most dangerous countries in the world and regularly topped all murder statistics. Not a day went by without at least one recorded murder. Locals were also not allowed to leave their political district to visit friends or relatives, because even then they were at great risk of getting into a hostile gang fight. I often thought to myself, where were all the human rights organizations and states that now point the raised finger, when innocent children were shot every day on the open street? Why were none willing to help El Salvador with the problem? \n\nOf course, not everything that is currently happening in El Salvador is bliss, but how can someone combat organized gang crime and corruption, which in fact dominates the entire state, if not with radical measures? And no doubt Nayib Bukele has taken radical measures: In response to the country’s most violent day in history (3/27/21), where 62 people were murdered in a surge of seemingly senseless violence against average Salvadorans, El Salvador’s Legislative Assembly approved a “state of emergency.” Since then, countless gang members have been arrested and sent to prison. It looks like that the measures are working (More about safety in El Salvador in a moment).\n\nThe impression I got was that Bukele is VERY popular and exactly this popularity brought him a lot of power. With a lot of power comes a lot of responsibility, and the line is always a very fine one. In history, at least, it has often been the case that politicians with a lot of power have abused it in their own favor. Of course, this risk also exists in El Salvador. How the whole thing will develop, one can not say yet, and we will have to wait to see. Next spring, elections will be held, and if Bukele is allowed to run, his re-election is out of the question, provided nothing unexpected happens.\n\n### Safety\n\nIs El Salvador safe? The question I have received by far the most during my trip, and the answer is a resounding YES. To be honest, I experienced El Salvador and the capital San Salvador as one of the safest Latin American countries I have been to. After my first trip from the airport to the accommodation, I drove exclusively by public transport (A bus ride costs between 40ct to $1) and/or hitchhiked my way through the country, which gave me the opportunity to talk to many Salvadorans. I got to know very warm, super friendly and helpful people. Some of them even invited me for a meal to their home and most of them support the drastic measures of Bukel, because in fact for a lot of them quality of life has improved significantly.\n\nIt seemed to me that the locals themselves cannot yet believe their newly acquired freedom. Since this state is only about a year old, it also has the advantage that very few tourists are on the road. This allows a very authentic impression of the culture and the people, which is otherwise very difficult to find in many countries. I am also convinced that if the security situation remains like this, El Salvador will become a tourist hotspot in the coming years. Not just for us Bitcoin crazy people who want to spend their sats, but also for people who love surfing, beaches and nature in general.\n\nMany travelers I spoke with in Guatemala and Belize skipped El Salvador because they thought it was dangerous. For everyone who has been in El Salvador, the country was a highlight of their trip. All perfect conditions for a great future. But who I am to tell you. Don’t trust a random stranger on the internet, go and check it out for yourself. Just don’t forget the most important spanish phrase, “¿Acceptas Bitcoin?” \n\n## Spend and Replace\n\nThis also brings me to my last point. Yes ‘HODL’ is important and right, but to drive Bitcoin adoption and because it's just an amazing feeling, we have to start spending Bitcoin at some point. Why should people accept Bitcoin when no one is paying with it anyway? So my new principle is SPEND and REPLACE. After a while of hodling, spending Bitcoin may feel a bit unusual at first, but trust me, it's fucking nice after a while, thinking of transacting without a centralized intermediary and without coercion of the state. I mean, Bitcoin was created to be used and not to be stored in some (virtual) vault until you are dead, like gold. \n\n## The End\n\nThat's it for this episode. Hopefully, you could take some valuable knowledge about El Salvador and the current situation. Every Bitcoin visitor supports Bitcoin adoption in El Salvador, therefore I am very happy to read about your trip! If Bitcoin adoption turns out to be successful for El Salvador, it will serve as a role model for many other countries to follow. So what are you waiting for, folks? Get some sun and spend some sats in Bitcoin land.\n\nI see you hopefully in the next one. Until then, remember: Education matters. ₿ critical, ₿ informed, ₿ prepared. Yours,\n\n![Carl B Menger](https://i.postimg.cc/FHyrwHYx/5589d578-73d1-4077-9870-30af219effe0-808x163.webp)\n\n\n### Stay tuned:\n\nSubstack Newsletter: https://open.substack.com/pub/carlbmenger?r=cvmtq&utm_medium=ios\n\nFollow me on Twitter: https://mobile.twitter.com/CarlBMenger\n\nBe a Node on NOSTR: https://damus.io/npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x \N 16680 \N 257503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00288797016285 0 \N \N f 0 \N 0 34760930 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 295499 2024-11-13 17:12:53.324 2025-03-29 22:39:46.787 I'm Rob Hamilton Co-Founder & CEO of AnchorWatch AMA Hey Stackers!\n\nLong time listener to Stacker News Live and lurker on stacker.news, its good to be here!\n\nFor the past 18 months our team has been building out AnchorWatch (AnchorWatch.com), our goal is to provide quality insurance for Bitcoin held in cold storage. Currently, institutional bitcoin holders are often not able to self custody their bitcoin, and as a result have to keep their coins on sole custodians. Many custodians have no insurance, and those that do have weak coverages which often do not cover the risks you are actually concerned about.\n\nWe believe there is a better way to do this, and its done by leveraging the native properties of Bitcoin as programmable money. We have been building a wallet coordinator called Trident, which leverages miniscript to do more advanced bitcoin native smart contracts without requiring a fork. Miniscript came from the research team in Blockstream back in 2019, and it allows for more approachable ways of using timelocks and signatures in a way where we can have a transparent and auditable way of interacting with more advanced scripting schemes.\n\nWith respect to insurance, this allows our company to be a required signer for the duration of the insurance policy, but when we are no longer holding risk, we are able to allow users to withdraw from vaults without needing to talk to us. This is able to mitigate risks such as theft, natural disasters, lost keys and more. Unlike other custodians, we are able to only have influence over the length of the insurance policy, you don't have to trust us that we will give you access to your coins again.\n\nFor a pleb, you can construct more robust security schemes, when compared to legacy multisig (2 of 3, 3 of 5 etc). Some examples of this are 2 of 3 which will become a 1 of 3 if the funds have not moved in a year. Alternatively you could have a 2 of 3, which maybe becomes a 2 of 4, and you can add an additional emergency backup key to the quorum. I'd recommend checking out the Wizardsardine team and their Liana wallet if you want to play around with this on mainnet today. I'm a big proponent of miniscript and believe it will make bespoke security arrangements much more approachable to everyone that uses Bitcoin today.\n\nTrident currently works with Ledger, Coldcard MK4 (with their edge firmware), and SpecterDIY. The Bitbox02 team just added miniscript support last week, and the Blockstream Jade is coming soon. We built Trident to help remove the UX friction associated with multisigs (constructing output descriptors, sharing xpubs, generating PSBTs, requesting signatures, etc). For example, you can upload an XPUB with a signing device to Trident, and then share it with another user of Trident. Or, you can request a key from someone to let them share their XPUB with you. This allows you to be signers in each others bitcoins security without having to coordinate each time you want to create a new vault. Once a vault is created, the vault owner can create a spend, and then request signers within the vault to sign off on the transaction. The goal is for groups of people to be able to coordinate around bitcoin vaults that abstract away the technical details while still being able to remain sovereign and audit any individual step if you so wish.\n\nMiniscript output descriptors can be loaded into core, so even in the event Trident ceases to exist, if you back up your output descriptor you are able to load it into a bitcoin core wallet and still maintain access to the funds (as of version 25 of Core).\n\nTrident will be entering open beta at the end of this week (locked to testnet), and I'll make another post once live for everyone to go check it out!\n\n(Saw a cool feature where I can forward sats to other stacker.news users, I picked some of my favorite stackers to pass the sats onto, i'm passing along 100% of sats to them) \N 718 \N 295499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1974292078765 0 \N \N f 0 \N 0 41790919 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 214201 2024-08-13 10:33:23.388 2025-03-29 22:39:46.787 The Fallacy of Store of Value vs. Medium of Exchange Much has been written about SoV vs. MoE. I'm not trying to re-hash it here. But as bitcoin's exchange price in US dollars has cracked 100k the investment Slack channel at work started talking about bitcoin. \n\nA long while back I started a bitcoin only channel and we have been growing slowly but with this new discussion we've had kind of a spike in new people. I'm answering a lot of basic questions but something occurred to me this morning. I see a pattern repeating.\n\nI will start by trying to roughly group people.\n\n## The Crypto People\n\nThe crypto people are usually talking about all the limitations bitcoin has and largely ignoring the reasons, tradeoffs, and benefits. Most of their "arguments" come from ignorance. One thing they don't really say but is implied is that bitcoin will never work as a medium of exchange. Of course, they usually have never heard of Lightning let alone used any of the tech being developed. I rarely hear any of these types of people talk about SoV. They realize that bitcoin is a great store of value. The other thing they talk about of course are those 10x gains.\n\n_Minor side note. I have a friend that's into XRP who told me a few weeks ago that bitcoin won't 10x again. I have a reminder set to remind him of what he said in 5 years._\n\n## The No Coiners\n\nI've been seeing many questions around bitcoin's adoption and utility as a medium of exchange from the no-coiners in Slack. I assume they are no-coiners based on their questions. They may have "bought" some bitcoin on some service but they are at least new and are clearly not "crypto" people. They also seem to have latched on to this idea that bitcoin is only good for investment. They don't really believe in the SoV but that is really the only thing they are even thinking bitcoin might have going for it. They seem to think of it like a stock. Obviously it would never be a currency. I've pushed back on these thoughts with my own experience with bitcoin and had positive responses. \n\nYou see, what both of these types of people think is that bitcoin **can't** work as a currency. As a medium of exchange. Its not just that they don't think it will be widely adopted as an investment property. \n\n## The Vanguard\n\nThis is the group you and I fall into. I consider most SN people to be a part of a group I think of as the Vanguard of bitcoin. Some are earlier adopters than others. None of us are late. We believe there is a real _need_ for bitcoin. We are people that have long looked at the world and wondered what was wrong on a very deep level. We have varied political views and ideas about how things should be but we all have deep conviction about bitcoin being a key aspect of making a better future. We are in it for the long term. Its not primarily a way to get rich. Its not about investing. Its about a better world.\n\nWe are very different from the average person out there. Some of you might not yet realize this because you are young. You might actually think you are just smarter or special. Of course you are probably smart. Probably smarter than myself but its deeper. You are very different from the average person. If you're like me you will realize that you think about thing most of the people around you do not think about. You think in different ways as well. You question many things others take for granted. I'm not trying to say you are better than others or they are better than you. We are different. We all have value and a role to play in society.\n\n## My Thoughts on MoE\n\nA medium of exchange is something widely acceptable in exchange for goods and services. The vanguard will often claim that bitcoin is a medium of exchange. That's true and not true. It can function as one. It is a medium of exchange in certain subcultures but in reality one can't directly exchange it for most goods and services today. Not because the tech doesn't support it but rather because the masses have not adopted it. They don't even understand that it _can be used_ as a MoE.\n\nIn case this isn't clear let me explain with an example. Sea shells are not a medium of exchange. No one to my knowledge is using them for this today. I have read that they have been used as currency in the past in certain places. Cigarettes are not a medium of exchange... unless you are in prison. In prisons cigarettes do often function as a medium of exchange in place of fiat paper.\n\nThis is what I mean. \n\n1. Bitcoin can function as a medium of exchange today\n2. Bitcoin does function as a medium of exchange today in smaller markets or subcultures just like other things(cigarettes)\n3. Bitcoin is not a medium of exchange like the US dollar... yet\n\nSo, of these three which is least important? The last one.\n\nWe all know what bitcoin is and can do. I would argue 99.9% of humans don't even understand bitcoin's value. But, they wonder about MoE. That's the right instinct. I believe outside of the supply cap the ability to transact without a third party is the most important thing bitcoin offers. Without it the supply cap is pretty meaningless. But how do we get there? How do we get to a society where bitcoin is a widely accepted form of payment and exchange?\n\n## My View\n\nI say my view because its what I believe. Many have stated this before. Bitcoin in my view will first be seen by most of the world as a good SoV before it will become a MoE. It seems so obvious to me. Granted there are and will be places where MoE is more important or at least equally important but I'm referring to societies where wealth is concentrated. \n\nThe people in wealthy nations don't really yet see the need for a new MoE. They do see the need for a place to store their financial energy. But even this SoV aspect isn't widely accepted yet. We haven't even made it that far yet. Kinda mind blowing when you look at the exchange rate today isn't it?\n\nAs a significant number of people(who knows what number that is) have bitcoin and value it for its savings properties then they will be more open to its other uses. Right now you have a chicken egg problem. People would not accept something they don't value or understand. People would not spend something they do not have or few accept.\n\nThis is why I think it is SO DUMB to argue about SoV vs MoE. Bitcoin can be both. It needs to be both and it will be both. We should be working as members of the vanguard in making sure the ecosystem is ready. Making sure we know the answers to questions. Have written documents. Have produced guides. Have used the tools. Know which ones will work for the people we know.\n\nIMO we still have a long way to go before the average person will "adopt" bitcoin.\n\nI do think there is a intentional attempt to pigeonhole bitcoin as only a SoV. There are a few different reasons for this.\n\n* Shitcoiners know they can't compete on SoV but think they can compete on other things\n* Statists don't want to lose fiat control over society. SoV seems to be less of a threat to their power.\n* Bitcoiners that run public companies don't want a target on their heads so they downplay bitcoin as currency(Mike Saylor)\n* Deep state wants to make bitcoin into just another asset like gold. Paper bitcoiners. Something they can regulate. Its largely a psyop vs. direct attack.\n\nJust realize these are not all the same people and some have different motivations.\n\n## Action Steps\n\nDon't be reactionary. Don't get sucked into the wrong arguments. It is easy to do. We all fall into this sometimes but try not to. Focus on these things.\n\n* Bitcoin can be _the currency_ of the world. It will work. We don't need another crypto\n* No coiners are not like you. They are almost always believers in the state. They may have more in common with you but they likely aren't ideological about money\n* Focus on removing mental blocks. The troupes\n* Don't push. Ask questions and answer questions. \n* Don't preach to much. You start sounding like a nut or a scammer.\n\nThese are my thoughts. I'm still learning and observing. \N 21202 \N 214201 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4633248482221 0 \N \N f 0 \N 0 52322470 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5523 2022-12-18 05:39:03.552 2025-03-29 22:39:46.787 LinkingLion: An entity linking Bitcoin transactions to IPs? \N https://b10c.me/observations/06-linkinglion/ 5708 \N 5523 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2895424421901 0 \N \N f 0 \N 0 22641673 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7879 2023-02-01 09:44:36.125 2025-03-29 22:39:46.787 Start your career in bitcoin free open-source software with Chaincode Labs If you’ve ever dreamed of working full-time on bitcoin or lightning FOSS development, this 3-month program is designed for you.\n\n- Application deadline is Dec 31\n- Program runs from Jan 15 - April 15, 2024\n- As with all of our educational initiatives, there is no charge\n- It will be hard work\n- It will be worth it\n\nYou should apply. https://learning.chaincode.com/#FOSS 21275 \N 7879 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.78180592987206 0 \N \N f 0 \N 0 245541136 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 8325 2023-02-06 11:28:49.711 2025-03-29 22:39:46.787 Congress is Unconstitutionally Criminalizing Privacy \N https://blog.lopp.net/congress-is-criminalizing-privacy/ 1064 \N 8325 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.3777354256954 0 \N \N f 0 \N 0 191300221 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 60106 2023-09-06 02:26:29.488 2025-03-29 22:39:46.787 How would you summarize the trade-offs of Coin Join? Yesterday there was a lot of discussion about coin join and frankly a lot of FUD mixed in with good info. In your opinion what are the trade-offs of this technical attempt to add on-chain privacy? If you think it is completely a poor choice then what are the alternatives and their trade-offs.\n\n> "Programmers know the benefits of everything and the tradeoffs of nothing." ~ Rich Hickey\n\n> "There are no solutions, only trade-offs" ~ Thomas Sowell \N 687 \N 60106 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.539559036822 0 \N \N f 0 \N 0 125125330 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3911 2022-11-12 14:47:18.106 2025-03-29 22:39:46.787 Why can't you buy ecash from a Cashu mint? # Cashu (or Fedimint) vs Tether\n\nLet's think about the difference between minting ecash at a Cashu mint and buying USDT from Tether.\n\nWhen you send your sats to a Cashu mint, the mint issues you ecash tokens that are pegged 1-to-1 to the value of satoshis. You can give these tokens to anyone who will accept them. You can also ask the mint to trade satoshis back to you in exchange for your tokens (although you can't make them trade with you).\n\nWhen you send your dollars to Tether, the company issues you USDT tokens that are pegged 1-to-1 to the value of a US dollar. You can give these tokens to anyone who will accept them. You can also ask Tether to trade dollars back to you in exchange for your tokens (although you can't make them trade with you).\n\nWhile I have glossed over a lot of details (eg. Cashu mints can't stop you from trading the tokens to someone else, while Tether can; Tether tokens are issued on one of their supported blockchains while Cashu tokens are bearer assets), at this high level, the two are actually pretty similar.\n\nNow let's look at how they describe themselves:\n\nThis is from [Cashu's FAQ](https://docs.cashu.space/faq):\n\n> Cashu wallets leverage the Cashu protocol to communicate with Cashu mints to integrate with Lightning. Therefore, the mint is running the Lightning infrastructure and custodies the satoshis for the mint's ecash users. Users have to trust the mint to redeem their ecash once they want to swap out to Lightning.\n\nThis is from [Tether's webpage](https://tether.to/en/how-it-works):\n\n> Tether only issues new Tether tokens when they are requested and purchased by customers who have followed our strict KYC procedure.\n\nNote the difference: Tether users "purchase" tokens while the Cashu mint "custodies" their users' funds.\n\n[Fedimint's FAQ](https://fedimint.org/docs/GettingStarted/What-is-a-Fedimint) uses the pretty much the same language as Cashu:\n\n> A Fedimint - or "Federated Mint" is an implementation of Chaumian eCash with a federation of guardians to custody funds, instead of a centralized actor, and is natively interoperable with Bitcoin's Lightning Network.\n> Custody & Redemption: Users can submit a request to deposit bitcoin, "pegging in", in exchange for fm-BTC eCash notes or use the fm-BTC eCash notes in their wallet in order to redeem on-chain bitcoin (note: users could also transfer out to themselves via the LN Gateway)\n\n# Why can't you just buy ecash tokens?\n\nNo doubt you've heard different people in the space discuss (or argue) about whether protocols like Cashu and Fedimint are custodial. @TonyGiorgio's post [Fedimint is Self-Custodial](https://stacker.news/items/395461) and @calle's [comments](https://stacker.news/items/395461/r/cleophas?commentId=395627) are probably the best discussion I've found of the issue.\n\nBut this question didn't come up there. I think answering it might help people understand the risks and benefits involved with ecash on bitcoin. So here's an attempt to do that. \n\n# Ecash is not bitcoin\n\nThis may seem obvious, but ecash tokens are not bitcoin. To demonstrate this point, let's compare ecash to the Lightning Network.\n\nIf you pay me for one of the posters I sell in sats via Lightning, I have to run a Lightning node with at least one channel to receive the sats. I can unilaterally close this channel and return the sats to an onchain utxo in my sole control (as long as there are enough sats to cover the fees).\n\nIf you pay me for a poster in ecash, all I need is an ecash wallet to receive the tokens. But I cannot turn the tokens into sats unless I convince someone to trade with me (my ecash tokens for their sats).\n\nClearly, if you don't have a private key that unilaterly controls a utxo recorded in the Bitcoin blockchain, you don't have any bitcoin.\n\nTherefore, in my view ecash is not bitcoin. It can be pegged to bitcoin, it can [interoperate with bitcoin](https://x.com/MaxAWebster/status/1793751544476954638), it can be useful to bitcoiners, but it is not bitcoin.\n\n# Ecash is not custodial\n\nLet's compare ecash tokens to a balance in a custodial wallet like Wallet of Satoshi.\n\nIf I use Wallet of Satoshi to generate a Lightning invoice and some nice person pays that invoice, what actually happens is that they send sats to a Lightning channel WoS owns and I trust WoS to update a spreadsheet they have that credits those sats to my account.\n\nIf I use a Cashu wallet to generate a Lightning invoice and some nice person pays that invoice, what actually happens is that the mint owners receive the sats in a channel they own and do some fancy math to issue an ecash token worth that amount of sats to my wallet. As far as users are concerned, this interaction in Fedimint looks almost the same (except the channel owned by the mint is controlled by a group of people in a federation, rather than a single entity).\n\nNow let's compare the process of asking for my sats back:\n\nIn the case of WoS, I am pretty much at WoS's mercy. They can refuse to give me the sats or they can show me an incorrect balance or they can simply turn off their servers and walk away.\n\nIn the case of Cashu and Fedimint, neither one can stop me from trading my ecash tokens to another person (unless they shut down the entire mint), nor can the mint show me a fake balance. The mint *can* issue more tokens than the number of satoshis they have received, and they can shut down completely and walk away.\n\nCustody means the custodian holds the asset and you can't move it without their permission. I suppose I could sell my WoS account to someone else but they would be trusting me not to sweep them and they would still need WoS's permission to move any of the sats out of the account.\n\nTherefore: Wallet of Satoshi is custodial. Cashu and Fedimint are not custodial.\n\n## TANGENT: Which asset are we talking about?\n\nHold up, wait a minute: *Custody means the custodian holds the asset*...which asset are we talking about here? The ecash mint isn't holding my ecash (proof is that I can give it to you and they can't stop me), but I did give them some bitcoin to get the ecash...so presumably they are holding that bitcoin. So here's the million dollar question: is it still my bitcoin?\n\nThis calls for another analogy.\n\nWhen you buy a watermelon from a fruit stand, the merchant isn't custodying your money. They're trading a watermelon with you in exchange for some money.\n\nWhen you give your money to a bank, they *are* custodying your money. They're not giving you something in exchange for your money.\n\nThe key differences are that at the fruitstand something is exchanged and at the bank I expect to be able to get my money back.\n\nSo which model better fits ecash mints? It seems clear that the reason I send sats to a mint in the first place is to get some ecash tokens *to use.* I may want to use them to buy watermelon or I may want to use them to zap my special internet friends on nostr. The idea seems to be that I will be able to spend my ecash tokens as ecash tokens. If the only way I can ever use them is to turn them back into sats, why give up the sats in the first place?\n\nWhile my first instinct was to say that ecash mints are like banks, the more I think about it, the more they seem like a fruitstand. When I give the mint my sats I expect them to give me ecash. I want to be able to use that ecash to do other things, particularly, I want to use that ecash to do something I couldn't do with the sats. And I do not expect to turn my ecash back into sats. I think this means that I'm *buying* ecash from the mint and when I do, I give up my claim to the bitcoin.\n\nAnd yet, as far as I can tell, the general understanding of what happens at a Fedimint or Cashu mint is not that they are selling me tokens.\n\n# Is custody good for ecash?\n\nI can think of four reasons why Cashu and Fedimint developers might have decided to describe what happens at a mint as "deposit/redeem/custody" rather than simply selling ecash tokens for bitcoin.\n\n## 1. Keeping up the peg\n\nEcash tokens built on bitcoin seem to be a lot more useful if they have a stable value in relation to bitcoin. On the surface it seems like this is particularly true when they are pegged 1-to-1 to sats. It at least makes them a lot easier to reason about. So perhaps the deposit/redeem/custody language helps users understand (and have faith in) this peg.\n\nYet, I don't think introducing this confusion is necessary. Tether does not claim USDT tokens are actually dollars. Indeed, the value proposition comes from them *not* being dollars (you can use them in ways that you can't use dollars). Another example might be gift cards ([which I think have a lot of similarities with ecash](https://stacker.news/items/397764)): nobody is going around saying gift cards actually are dollars. It seems possible to peg one asset to another without demanding that everyone believe they are one in the same asset.\n\nIn my confusion on this issue, I've even spent some time trying convince myself that pegging an ecash mint to bitcoin might be like the fed's repo windows (you give the mint your bitcoin as collateral for a loan of ecash with the agreement that you will repurchase the bitcoin at some future date). \n\n## 2. Interoperability\n\nEcash developers are doing some incredible things right now. A lot of the magic comes from the fact that ecash balances interoperate with Lightning so seamlessly. Perhaps some of the desire to tie ecash tokens more closely to bitcoin by saying users deposit bitcoin with the mint comes from a desire to make it easy for a thousand mints to bloom. If mints sell ecash tokens, would we need to start thinking about exchange rates between mints and discounts based on the trustworthiness of certain mints?\n\n## 3. Regulation\n\nSelling tokens for bitcoin seems like the kind of thing that would attract the attention of regulators. If mints sell ecash tokens, a bunch of questions about taxes and reporting suddenly pop up. Do mints become exchanges? I don't think so, but the Lightning gateways that serve different mint ecosystems might be considered exchanges. The question though is are these problems smaller than the regulatory turmoil of being a custodian?\n\n## 4. Association with shitcoinery\n\nThe Bitcoin ecosystem has an immune response to any other coin. I suspect that ecash would have had a hard time gaining traction in the space if they announced their protocol as a way to create new tokens and sell them to people for sats. Ecash developers are not alone in contending with this problem. Liquid (perhaps the most successful altcoin pegged to bitcoin) also tries to describe the [coins on Liquid as actual bitcoin](https://docs.liquid.net/docs/technical-overview) and not an altcoin:\n\n> Liquid is a sidechain of Bitcoin that allows users of the Liquid Network to move Bitcoin between the two networks with a two-way peg. Bitcoin used in the Liquid Network is referred to as L-BTC, and each L-BTC has a verifiably equivalent amount of BTC secured by the Liquid members called functionaries.\n\nThe general understanding of the situation seems to be that if your coin pegs to bitcoin it can claim to *be* bitcoin. This is absurd to me. Bitcoin's value proposition is censorship resistance. All the various projects that produce a token pegged to bitcoin are giving up some of that censorship resistance (hopefully in order to gain something else) and it confuses people to claim that they are actually bitcoin just in another form. \n\n# Ecash is not a shitcoin\n\nI don't think Liquid tokens are shitcoins. Nor do I think ecash tokens are shitcoins. Unfortunately, as I've been writing this, I haven't been able to come up with a very logical defense for why I believe this.\n\nHere's my best shot at it: I am convinced that bitcoin is incredibly useful. It's money you can send to anyone anywhere anytime and no one can stop you. Not everything that takes advantage of this usefulness needs to be incorporated into Bitcoin itself. Ecash is also useful, but it becomes a lot more so when it gets pegged to bitcoin and interoperates with it. Cashu and Fedimint are both working on ways to establish this peg. Hopefully we will continue to develop new ways to minimize the trust such a peg requires. But useful things that further the mission of censorship resistant money seem to me to not be shitcoins. This gets into what is probably an entirely different post, so I'll stop here.\n\n# Conclusion\n\nThere may be good reasons for calling what happens at a Fedimint or Cashu mint custody but they come with a price and they are not the only model we can use to understand these protocols. \N 18011 \N 3911 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.87747758914313 0 \N \N f 0 \N 0 138039397 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 188275 2024-06-23 07:05:11.243 2025-03-29 22:39:46.787 Optimal Zapping on Stacker News This topic seems to interest me more than most people, but we're seeing an fascinating example of price formation with the amounts people are zapping each other. When I started using Stacker News, it was very common to see 1 sat tips. That's now rare and has been replaced by much higher default amounts (often 21 for its symbolic value).\n\nI noticed that I was consistently earning more sats than I was spending, so I raised my default zap by an order of magnitude. The result? I just made more sats for being one of the top zappers every day. Obviously, there are some bounds on this feedback loop.\n\nI decided to try a new experiment where every day I set my default zap at a fixed proportion of what's in my SN wallet. This should allow me to eventually settle in near an equilibrium around my optimal zap amount.\n\nI suspect that most of you are still zapping less than is even in your own best interest. It's time to raise those default values again. \N 827 \N 188275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4276460442396 0 \N \N f 0 \N 0 149880070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 210080 2024-08-04 07:42:20.102 2025-03-29 22:39:46.787 On Labor and Fiat We vastly underestimate what we can do with our physical labor. I just went to build a house with Casas por Cristo in Acuna, Mexico. It's a missions trip to build homes for poor people, where all the materials are ready to build and the volunteers essentially take all the material and build a house.\n\nWhat was amazing about this was that it only took three days to build with about 15 people. And a significant part of that was waiting for the concrete to dry. And that's the house from founddation to roof, electrical to windows, drywall to stucco.\n\nWhile machines and fancy equipment certainly speeds things up a lot, most of what can be done is still limited by human labor. And boy, is it amazing what that's capable of. Sure, it wasn't a huge house (maybe 500 sq ft), but it was fully functioning with insulation, metal roof, windows and doors. The bathroom was an addition that could be done in another couple of days. The big thing is that so much of it could be done so quickly.\n\nYou can build houses very efficiently and quickly even if the labor isn't very experienced. Which makes you wonder, why is housing so expensive?\n\nThere's a huge premium on housing because of fiat money being such a terrible savings vehicle, but the rot of fiat money goes much deeper. The labor itself is much more expensive, and there is a significant amount of rent seeking in the form of government regulations, like building codes. There's also the fact that building is considered very blue-collar, and most people aspire to white collar work. That in itself is a cultural norm that has proliferated via fiat money. Blue collar work, the kind that builds and fixes real things with hands, is considered below the people that sit on a computer making powerpoint presentations and word documents.\n\nNow not all white collar jobs are bad. But there's no doubt that white collar jobs have proliferated because of fiat money. Look up any bureaucracies in any large industry and you'll see that they've grown like cancer. Health care, education, military, HR, government have bureaucracies that have significantly outpaced the people that do any real meaningful work. This is definitely not market competition and it's the opposite of capitalism. It's socialism that grows steadily from the money stolen from the productive people.\n\nWhich is why my experience is such a shock. I've become so used to things taking forever to build, that when I see human labor really doing something productive, I'm shocked at how effective it is. We've been so burdened with bureaucratic overhead in almost everything we do that watching people be productive is a shock.\n\nOne of the things I look forward to in a Bitcoin world is the unleashing of labor. Our work is what builds things, but it can also be used to steal. Unfortunately, fiat money incentivizes much more of the latter and less of the former. When our work is aligned with civilization, we'll really take off.\n\nCome for the number go up, stay for civilization go up, beauty go up, building go up. \N 19952 \N 210080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5672329486855 0 \N \N f 0 \N 0 122188025 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7837 2023-01-31 21:39:33.545 2025-03-29 22:39:46.787 Thoughts on Nostr from a creator's perspective On a weekend in March 2024, I shared and streamed my electronic music as `Teder` on #nostr and received an overwhelming number of heartfelt responses. \n\nWhile doing so, I was building a list of followers that can't be censored or deleted by any company that can interact with me trough chat, stream, music streaming. \n\nIn each of the pieces of content I was able to setup split payments, which means all of the contributors instantly got their commissions, with negligable transaction costs and without the platform taking a big cut.\n\nI wrote a piece about this experience including a detailed onboarding and my insights. I invite you to share it with creators as I did with my musical peers!\n\n## Onboarding \n\n- I installed amethyst on my Android and damus on my ipad, and created a private public key pair\n- I filled in my nostr profile through the Amethyst app and discovered my profile identifier: the npub account for Teder nostr:npub1asuq0pxedwfagpqkdf4lrfmcyfaffgptmayel9947j8krad3x58srs20ap\n- I created a bitcoin lightning wallet in [walletofsatoshi](https://apps.apple.com/ee/app/wallet-of-satoshi/id1438599608) app, copied the lightning adress and filled the address in profile.\n- I added [NIP05 verification](https://nostr.how/en/guides/get-verified) on my website using a [WordPress plugin](https://wordpress.org/plugins/nostr-verify/)\n- I then created a new post in Damus sharing a short clip of the Teder and TimMey - Rebound EP jam including the `introductions` hashtag nostr:nevent1qqsfqh0085arl45js5x7s40tm49xrgw76a0nsdhjpcdq9tpzsweg4hqpp4mhxue69uhkummn9ekx7mqzyrkrspuym94e84qyze4xhud80q38499q9005n8u5kh6g7c04ky6s7qcyqqqqqqg9cttm9\n- I received a whole bunch of reactions and zaps, amongst which recommendations to host a stream with my live music on [tunestr](https://tunestr.io) / [zapstr](https://zap.stream/), and to publish the album on [wavlake](https://wavlake.com/)\n- That night, I streamed a live set for 40 minutes on zapstr: nostr:nevent1qqsd4sru85vk7mpcq6j5c60w9ku5qwk0m2627hzjvfjgfd3vc5nek6cpzamhxue69uhkummnw3ezu6rpwd5xyctwvuhxumqzyrkrspuym94e84qyze4xhud80q38499q9005n8u5kh6g7c04ky6s7qcyqqqqqqgz275ar\n- During the stream, I received some bigger zaps, between 1000 and 10000 SATs per zap\n- I then uploaded the EP on wavlake: https://wavlake.com/album/e0d37f7c-aa8b-44b3-b41e-42637e958f91\n- I mentioned the release in a couple of replies, and received about 7000 SATs worth of zaps on the songs of the album within a day.\n\n## Response \n- In about 24 hours I received hundreds of reactions, likes and about 29400 SATs ~ €19. This is more royalties then I've ever received from any streaming platform, and these were immediately liquid in my account ready to be spent on nostr ór converted to fiat to for instance fund my next physical release.\n- These rewards include zaps on the reactions and the answering questions from the audience, which is something we are already used to do on other platforms, but were never able to get rewarded for other than brand building.\n\n## Insights \n- **Motivation**: Motivation to get back to sharing due to the constant stream of micro payments is very high. Some contributions are only 5 or 21 SATs but it is the fact that someone consciously sent it that really matters, and gives you a sense of worth other than people just trying to build their brand / persona with replies, as is often the case on instagram.\n\t- See my post, the gratitude I feel for these tiny payments is very high: nostr:nevent1qqsxdahe2f2s2kqnvx96juqfdnxnwt69dwveadqun3apwzluvgz097spp4mhxue69uhkummn9ekx7mqzyrkrspuym94e84qyze4xhud80q38499q9005n8u5kh6g7c04ky6s7qcyqqqqqqgwl7ljh\n\t- Receiving small monetary rewards also has the interesting side effect of reciprocity, and also entices you to support others with the SATs you have received in your wallet.\n- **Portability and ownership over fanlist**: Being able to take your following/fans and content with you when you are moving back and forth in different applications (such as the Twitter like environment, the Twitch like streaming environment and the Spotify like music catalog environment). In comparison, starting a new TikTok from scratch takes a lot of time and energy, even though the format of sharing short clips and repurposing content from others is pretty cool.\n- **Evergreen content**: Having new followers on different applications find your older content in the same environment, and being able to send micro payments to all that content transparently is very encouraging to make you want to create and share higher quality and more evergreen content.\n- **Collaboration commission**: Collaborations are amongst my favorite activities while creating. Being able to set up payment splits on each separate piece of content ( Even on a single Tweet!) is very encouraging to both creator and fan. There is just something enticing about contributing knowing that sending that zap will land some value to both the musicians, the visual artist that made the artwork, and for instance the videographer that shot the video. And all that without needing to settle afterwards or pay high transaction fees.\n- **Community efforts**: Imagine producing a radio show with live performances from multiple community members and sharing all zaps between involved members equally, or transparently raising money for specific goal / charity!\n\n## Opportunities for music artist groups / collectives / labels (such as [Petite Victory Collective](https://www.petitevictorycollective.com/))\n\nI see very interesting opportunities for both PVC and online radio sites such as [massive radio](https://www.massive-radio.com/) to use this network for bringing attention to our music, events and streams. The whole decentralised / no-middleman-company-in-between really resonates with the goals and setup of the community.\n\n- Stream shows, live events and massive radio streams and enable receiving of streaming sats rewards from listeners.\n- Setting up split payments for content to divide rewards amongst both musicians, visual artists, vj, radio hosts etc.\n- Stream live shows / dj sets to promote albums and releases.\n- Provide live shows / streams / music / DJ at nostr / bitcoin events while the network is still growing.\n- Selling merchandise with crypto payments, cutting out platform and transaction costs and splitting rewards amongst contributors.\n- Integration of audience in live streams, taking inspiration for jam / improvisation from crowd.\n\nThank you for taking the time to read this article, feel free to comment with your thoughts or reach out if you have further questions about these topics or onboarding you music onto nostr! \N 12272 \N 7837 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7559439117211 0 \N \N f 0 \N 0 189068625 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 82439 2023-11-05 04:16:28.488 2025-03-29 22:39:46.783 Satsraiser: make the Stacker News community a sponsor of BTC++ Berlin hackathon [bitcoin++](https://btcplusplus.dev/) conference is headed to [Berlin Oct. 6-7 and is focused on Nix and Bitcoin](https://btcplusplus.dev/berlin23).\n\n----------\n\nhttps://imgprxy.stacker.news/YuXAbI8m-hcjyrqD32fvYp0ugXpTLDK8ZvvxtkgQr9w/rs:fit:600:500:0/g:no/aHR0cHM6Ly9idGNwbHVzcGx1cy5kZXYvc3RhdGljL2ltZy9ob2x6bWFya3RfZXh0ZXJpb3IucG5n\n\n-----------\n\nBetween our two offices, @niftynei pitched me on SN becoming a sponsor for the hackathon, but I thought it'd be way cooler if the Stacker News *community* was the sponsor. I can't imagine an online community has satrsaised a hackathon sponsorship before. How cool would that be!\n\n--------\n\nhttps://imgprxy.stacker.news/nKHd8lSZKtQNgOBHLq4p76Gcc6Iv1kY4wJc6QS3ZrUw/rs:fit:600:500:0/g:no/aHR0cHM6Ly9zbmltZ3MuczMuYW1hem9uYXdzLmNvbS9JTUdfMDcwNS5qcGVn\n\n---------\n\nNifty said typical threshold for this is 7.5m sats. I'm not sure we can hit that threshold, but maybe we can raise enough to sponsor Hot Pockets and Mountain Dew for the bitcoin hackers at the conference.\n\n---------\n\nConference website: https://btcplusplus.dev/berlin23\nVenue (near downtown Berlin): https://btcplusplus.dev/berlin23#venue\nAgenda (so many wizards, voldemort probably thinks it's a hogwarts reunion): https://btcplusplus.dev/berlin23#agenda \nIf you're somewhere close by, ticket prices are still really affordable: https://btcplusplus.dev/berlin23#tickets \N 17275 \N 82439 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.255033337861903 0 \N \N f 0 \N 0 165164012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 131334 2024-02-23 17:32:17.032 2025-03-29 22:39:46.787 My Bitcoin weight loss journey Story time:\n\nMy healthy, athletic weight as a 3 sport athlete in high school and avid weightlifter into college was 220 lbs. Since being diagnosed with a brain condition and prescribed medication, with a combination of not being active and not eating healthy for years, I put on about 130 pounds to an all time high of 352 pounds during Covid. \n\nSince falling down the Bitcoin rabbit hole, I have learned a lot more about health. Eat meat. 1 ingredient foods. Water only. No seed oils. Intermittent fasting. Lift weights. The list goes on. I've employed all of these things on an off for the past year, but I got real serious about them about a month ago. Since disciplining myself, I have lost 37 pounds. Over the past 2 weeks I've lost 2-3 pounds a day. I honestly can't believe it! I prayed to God for more discipline, and it happened. \n\nMy goal is to lose another 95 pounds to get back down to my healthy weight of 220 pounds. I have received sooooo much encouragement from Bitcoiners on Twitter. If you want to follow along with my journey, search the hashtag #NEEDhealth on Twitter, or follow me @NEEDcreations. Thanks for reading my story. If I can offer one piece of advice on what I've learned, it's that you need to believe in yourself and realize that only YOU can decide to accomplish your goals and put your thoughts into ACTION. No one else can do it for you. You need to be your own biggest cheerleader. Discipline and consistency is EVERYTHING. And I'd also add that diving deeper into my faith has aided me along the way. I recently finished "The Chosen" series, and it was FABULOUS. You can find it for free on YouTube. Take care everyone. - Phil\n\n![](https://imgprxy.stacker.news/_hrhQKB60a8xH5pNhJRw2WB0mZtnEAfWZexIg0phwYQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC9iM2IyODM5MzE4MzIzOTdkNTNiYzI5ZTdjMzEzODAyMjUwMzM0ZTc5Mzg3NmIxZDNmYjJlYzgzZjg5YzdmMjVkLmpwZw) \N 7847 \N 131334 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.1578697897917 0 \N \N f 0 \N 0 208284028 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 271798 2024-10-19 18:58:23.971 2025-03-29 22:39:46.787 Introducing Resolvr: Open Source Justice on Bitcoin and Nostr ### Introduction\n\nResolvr is building **Open Source Justice** by empowering sovereign communities to peacefully and voluntarily resolve their own disputes with open-source tools.\n\nOur first product is designed for a community close to home: the Free and Open Source Software (FOSS) development ecosystem. We've built a peer-to-peer bounty marketplace that:\n\n* gives developers **assurances of payment** for solving bounties,\n* decentralizes and grows **FOSS funding sources**,\n* unlocks access to the **global talent pool**,\n* provides a frictionless on-ramp to **earn** **Bitcoin** **(₿)**.\n\n[![screenshot1](https://hackmd.io/_uploads/HkPj4wmUT.png)](https://resolvr.io)\n\nResolvr does this by:\n\n* limiting discretion of bounty grantors through **reputational stakes** and a **Bitcoin** **(₿)** **escrow** powered by [Discreet Log Contracts](https://atomic.finance/blog/discreet-log-contracts/)🔮,\n* resolving disputes through **crowdsourced review** of bounty solutions,\n* using **nostr**🦩 for interoperable and censorship-resistant bounty discovery,\n* using **Lighting**⚡ zaps for **instant bounty payouts**.\n\n**The alpha webclient is now live at [resolvr.io](https://www.resolvr.io).**\n\n### The Problem\n\n> The root problem with conventional bounty marketplaces is all the trust that's required to make them work.\n\nSatoshi Nakamoto (probably)\n\n#### 1. Centralized Custodians are Security Holes 🕳️\n\n❌ Centralized bounty marketplaces that hold bounty funds can exit scam or go bankrupt.\n\n* This year, BountySource (5,445 listed bounties worth $406,425 in 2019) stopped paying out bounties to developers.\n\n❌ Existing bounty marketplaces, like Replit, don't have instant or free payouts:\n\n* Devs are rewarded in Replit's 💩-coin and must request USD conversion by email. \n* Replit charges a 25% withdrawal fee and requires a minimum withdrawal of $350. \n\n❌ Knowledge workers in developing countries, many of whom rely on mobile wallets, have lost their funds via bank and telco attack vectors ([$3M USD via 2,000 SIM cards, lost](https://qz.com/africa/1915884/uganda-banks-mtn-airtel-hacked-by-mobile-money-fraudsters)).\n\n❌ Centralized bounty sites can censor posts for projects the site-owners disagree with or find unsavory.\n\n#### 2. Bounty Grantors are Judge 👩‍⚖️ and Jury 🏛️\n\n❌ Bounty grantors have unlimited discretion over whether a solution meets their bounty criteria. And they can change the criteria after the dev has satisfied the original bounty.\n\n❌ The Human Rights Foundation (HRF) recently [changed its criteria](https://www.youtube.com/watch?v=M5xTGMojZwU&t=4987s) on a nostr bounty **after** a dev provided a solution to the originally posted bounty. HRF decided to pay the dev only half the bounty.\n\n❌ This is inherently unfair and inefficient!\n\n### Resolvr's Solution ✔️\n\n1. 📡 Distributed, interoperable, censorship-resistant communication protocol for bounty posting and discovery,\n2. **(₿)** Peer-to-peer lightning payouts and non-custodial escrow system,\n3. ⚖️ Decentralized Dispute Resolution\n\n### How it Works\n\n[Check out the Walkthrough here.](https://youtu.be/3_STomyKxa8)\n\n#### Zap Payouts and Crowdsourced Dispute Resolution\n\n1. Login to resolvr.io with your existing nostr keys (or let resolvr.io generate keys for you - remember to back them up!)\n2. Set up your profile by \n* Linking your GitHub identity to your nostr profile (through resolvr.io or Amethyst on android) following [NIP-39 instructions](https://github.com/nostr-protocol/nips/blob/master/39.md#github)\n* Getting a lighting address for zap payments (getalby.com)\n3. Maker (entrepreneur, foundation, FOSS project) - post a bounty with a detailed criteria and amount.\n4. Taker (freelance developer) - find a bounty to solve, apply to the bounty.\n5. Maker - assign a Taker to solve your bounty.\n\n##### Ideal Path\n\n6. Taker - solve the assigned bounty and provide a link to the work product in the comments (e.g., github repo or PR)\n7. Maker - click "pay" to zap bounty reward \n\n![Zap Ideal](https://hackmd.io/_uploads/HkMsKsg86.png)\n\n##### Happy Path\n\n7. If either party disputes the bounty: Taker or Maker clicks "poll" to initiate a nostr zap poll,\n8. Community members (other Makers/Takers) review bounty/solution and vote to resolve the dispute,\n9. Maker - if community votes in favor of Taker, zap payout.\n\n![zap happy](https://hackmd.io/_uploads/SkM2Yje8p.png)\n\n##### Sad Path\n\n9. Maker does not comply with community decision, burns reputation and cannot find developers for future projects.\n\n![zap sad](https://hackmd.io/_uploads/rJ8aFjeLp.png)\n\n### Innovations\n\nResolvr's success is aligned with the success of **nostr**🦩 and bitcoin. We're advancing the tech with novel applications: \n\n* Authored [**NIP-43**](https://github.com/nostr-protocol/nips/pull/865): bounties over nostr\n* Discovered new use-case for **NIP-69** zap polls: dispute resolution\n* First p2p bounty marketplace with **instant payouts** over lightning\n* First p2p bounty marketplace with **integrated dispute resolution**\n* New **frictionless onramp** to earn bitcoin, grow circular economy\n\n### What's Next for the Resolvr Bounty Marketplace?\n\nThe next dispute resolution feature on the roadmap for the Resolvr bounty marketplace is on-chain DLC🔮 escrow. We're putting DLCs🔮 on **nostr**🦩 and building a desktop client to do it! \n\nThe desktop client will allow Makers and Takers to post, apply and assign bounties just like the web client. But it will also create and broadcast DLC🔮 escrow contracts. In the event of a dispute, the Resolvr oracle will attest to the results of the crowdsourced zap poll to release the funds to the winning party. \n\nIn the future, Resolvr will allow Makers and Takers to select their own oracles, and communities can be listed as "review association" oracles, earning bitcoin for resolving disputes over bounties (think: foundations, hackerspaces, bitdev meetup groups).\n\nFor more details about our DLCs🔮 on nostr, check out the Resolvr's [escrow repo](https://github.com/Resolvr-io/escrow) on GitHub!\n\nIn addition to DLCs🔮, Resolvr's roadmap includes: \n\n* Decentralizing the default Resolvr oracle through **FediMint**🔅 protocol and FROST🥶.\n* Scaling escrow through **Lighting**⚡ DLCs🔮\n* Bounty review and code testing with AI🤖 (DVMs)\n\n### Beyond Bounties...\n\nThe Resolvr Project is building an open-source dispute resolution system on bitcoin and adjacent protocols.\n\nResolvr will revolutionize dispute resolution on a global scale, offering secure, open-source, customizable, decentralized, and radically cost-efficient mechanisms for **infinite use cases**.\n\n![DR multiverse](https://hackmd.io/_uploads/SJULbD78T.png)\n\nDispute Resolution is a big opportunity, with increasing demand driven by AI services and microtransactions. \n\n![opportunity](https://hackmd.io/_uploads/rkYyGPQUT.png)\n\nThanks for joining us on this journey to make FOSS funding more fair and efficient, expand access to Bitcoin, and provide communities with the tools to peacefully resolve their own disputes!\n\n**Visit [resolvr.io](https://resolvr.io) to post and claim bounties today!**\n\n### The Team\n\n* **Dave Schwab** ([🦩](nostr:npub16v26lsssghrp4sl947dm00pptmnkalsk2930uxcancqud959x0us4lwp6a) | [𝕏](https://twitter.com/TheSchwab)): Chief Product Officer for a legal tech SaaS.\n* **Aaron Daniel** ([🦩](nostr:npub16zxfxy5ltnp992gp006jlyy9qc93qanzpfvv66fznvc7xul0ej0suk5dzc) | [𝕏](https://twitter.com/wadaniel)): Appellate attorney and dispute systems designer. Author of the [Bitcoin Brief](https://www.bitcoinbrief.io/) newsletter and regular contributing author to [Bitcoin Magazine](https://bitcoinmagazine.com/authors/aaron-daniel).\n* **Chris@Machine** ([🦩](nostr:npub1ygzj9skr9val9yqxkf67yf9jshtyhvvl0x76jp5er09nsc0p3j6qr260k2) | [𝕏](https://twitter.com/chrisatmachine)): Nostr developer and creator of Blogstack.io, a longform nostr platform. Streaming nostr programming workshops on [Zap.Stream](nostr:naddr1qqjxvcnzvc6r2vmy95unsdpc956r2dps95un2vpj95mxywp5xuurgwfhxsckvq3qeaz6dwsnvwkha5sn5puwwyxjgy26uusundrm684lg3vw4ma5c2jsxpqqqpmxwwt9jlx) and [Youtube](https://www.youtube.com/@chrisatmachine/about).\n* **Utibe Essien** ([🦩](nostr:npub1ux6aa69nyc3u69wgvwpu4ydcf7q20xj84lfm06thfp90meev8tyquep37x)): Product designer and web adventurer.\n* **Ras** ([𝕏](https://twitter.com/coinward)): Bitcoin hacker. Founder of Bitcoin Grove, a community accelerator and physical hacker space in Miami.\n* **Brian**: Front end web developer and crypto enthusiast. \n* **Tommy** ([🦩]( nostr:npub1jgnwmgfxcch992rkaqm5sk740vzsnpnmkrrnrm3pxu3uv6smmc8qhkqcgk)): Google Software Engineer who enjoys making the State obsolete in his free time\n* **Randy** ([𝕏](https://twitter.com/cryptocryyp)): Full-stack developer currently working on Greenlight at Blockstream\n* **Derek Hinkle**: Backend Developer for a legal tech SaaS; machine learning and AI powered automation.\n* **Justin Moeller** ([🦩](nostr:npub1zswjq57t99f444z6485xtn0vfyjjfu8vqpnyj6uckuyem2446evqnxgc6x) | [𝕏](https://twitter.com/m1sterc001guy)): Spiral and HRF grantee working on Fedimint.\n\n### Connect with Resolvr!\n\n* Post and Claim Bounties on the Resolvr Bounty Marketplace TODAY: https://www.resolvr.io\n* Questions/Suggestions? Join our Discord: https://discord.gg/DsqRw8My4m\n* Stream the team's weekly [All-Hands Call](nostr:npub1fmunwy3lljfyzlgyuyman79lxwm4efz6pzlgqjwc400pr9l708qquvje8w), live every Monday @ 1:00pm ET on Zap.Stream\n* Contribute to the project on our [GitHub](https://github.com/Resolvr-io)!!\n* Witness Resolvr's evolution through our previous #buildinpublic [weekly updates](https://bolt.fun/project/resolvr).\n \N 14791 \N 271798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.583224101579063 0 \N \N f 0 \N 0 111622659 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 116120 2024-01-21 01:14:46.066 2025-03-29 22:39:46.787 Any tips for next adoption move as a merchant? We run IVPN, a privacy-focused VPN service. We are Bitcoiners and motivated to contribute to the development of the ecosystem and adopt/trial new tools as merchants.\n\nOur full time focus is not on Bitcoin however, so we probably miss useful developments - for customers and/or for us as merchants. \n\nDone so far over the course of several years:\n-> Accept Bitcoin with no intermediaries using BTCPay \n-> Donate to BTCPay annually\n-> Accept Lightning payments for our base service, running our own node\n-> Attend Bitcoin conferences to give out vouchers and gather feedback \n-> Built IVPN Light as an experiment for short-term VPN access with Lightning payments - https://stacker.news/items/259328\n\nWhat we considered and explored, but have not yet concluded:\n-> Start or join a Fedimint federation - multiple issues with this as regulars here probably know, main one we see is companies and well-known actors in the space who could provide the necessary "anti-rug" trust don't want to take the risks for very little/no clear upside \n-> Hourly/daily and recurring subscriptions paid with Lightning - this is still something we would want to see but ran into integration issues and hiccups (no particular fault of external parties, to be clear)\n\n\nWhat we are looking at/excited by now?\n-> Setting up a bip 353 username would make sense for customer repeat payments, but we don't use any of the wallets currently supporting it\n-> BOLT12 improvements and possibilities look great overall, not likely to replace our BTCPay payment flow with a different implementation at this point \n\nAnything else worth looking into? Even if it's in an experiment stage and needs test merchants.\n \N 1751 \N 116120 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.1794542957845 0 \N \N f 0 \N 0 30823076 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 323538 2024-12-08 20:29:12.174 2025-03-29 22:39:46.787 SN release: post and comment pinning Territory founders can now pin posts up to 3 posts in their territories. OP's can likewise pin up to 3 comments on their posts. \n\n@ekzyis made @siggy47's dream come true. \N 20663 \N 323538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2121300698437 0 \N \N f 0 \N 0 225121356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 309832 2024-11-27 04:34:03.935 2025-03-29 22:39:46.787 ETFs are just a custodial layer 2 I'm not the first to say this but I don't believe it had occurred to me before yesterday. Late in the day I saw someone make this point on Twitter as well. Saylor has probably said it too. \n\nWhat do you think? Just another way to think about this new thing. \N 1624 \N 309832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.3801666944977 0 \N \N f 0 \N 0 18357435 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 148013 2024-03-23 23:18:51.621 2025-03-29 22:39:46.787 Hi! I'm Kody, Head of Developer & Product Support at Fedi. Ask Me Anything! \N \N 5728 \N 148013 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9330183820467 0 \N \N f 0 \N 0 175861162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 288914 2024-11-07 03:53:10.209 2025-03-29 22:39:46.787 Lost my stacker.news cowboy hat, (62 Days cowboy streak) ☹️ ![Screenshot_2024_0204_223238.jpg](https://m.stacker.news/14858) \N 21832 \N 288914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20972435405562 0 \N \N f 0 \N 0 29728633 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 342936 2024-12-25 17:48:48.897 2025-03-29 22:39:46.787 SN Territory Rent in a bull market Don't shoot the messenger. I am the biggest proponent of territories, which is why I feel comfortable being the one to raise this question. \n\nI think most of us believe we have entered or are entering a bull market for the USD price of Bitcoin. Since the launch of territories on Dec. 5 the USD price of rent has gone up almost 60%. To be fair, 1 sat= 1 sat and if you are active on the site you likely cover rent through rewards. I don't mind the fiat price has gone up because we probably need some territory attrition with 50 plus territories. That being said, if Bitcoin doubles or triples from here territory rent is going to start getting kind of expensive in USD terms. \n\nDo you think SN territories at some point soon will need a dynamic pricing model to maintain a certain fiat range, or a periodic static price reduction and persistent reevaluation as Bitcoin price rises? \N 1801 \N 342936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6462150740329 0 \N \N f 0 \N 0 237144902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 318372 2024-12-04 13:58:43.69 2025-03-29 22:39:46.787 Abandoned Adoption : Bitcoin Backslides and Hard Truths - #307 Depressing take. I can't help thinking Gresham's Law plays a role. Anecdotally I find fewer people willing to spend bitcoin. https://open.substack.com/pub/livingonbitcoin/p/abandoned-adoption-bitcoin-backslides?r=9bii2&utm_campaign=post&utm_medium=email 8459 \N 318372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.25594801155462 0 \N \N f 0 \N 0 92473548 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 273619 2024-10-21 14:10:14.642 2025-03-29 22:39:46.788 Addressing the Decline in Birth Rates Global birth rates are in decline, a trend that governments find alarming. A dwindling population could lead to a host of economic and social issues, but the policy responses have been largely ineffective. Financial incentives for families, like direct payments, tax breaks, and subsidized child care, have been deployed, but with little impact. This reveals a deeper, fundamental issue.\n\nTo understand the decline, it's crucial to figure out why couples are having fewer children. The common responses are either a lack of interest or financial constraints. While we should respect the choice not to have children, it's the financial concern that needs addressing.\n\nHaving children has become an expensive undertaking. From medical costs related to childbirth to time off work, government-mandated expenses like car seats, and the added costs of larger living spaces and education, families are stretched thin financially. Even households with two earners often struggle to make ends meet, making it harder to consider expanding the family.\n\nThe decline of single-earner households, where one parent could stay home to raise children, can be traced back to the massive expansion of rent seeking. The bureaucratic state has increased massively in all sorts of industries, and the inflation that has funded their expansion has driven up all kinds of costs, including essential resources like health care, education and housing. Both parents often need to work just to maintain a moderate standard of living.\n\nA significant reason for these inflated costs is the fiat monetary system. Inflation has eroded the savings and earning power of average families, compelling both parents to enter the workforce. Moreover, real estate prices have soared, making it challenging for families to afford larger homes that could accommodate more children.\n\nIn essence, the decline in birth rates is not a consequence of individual choice or even culture but a byproduct of a kleptocratic monetary system that has made child-rearing unaffordable. Unless structural changes are made to restore the financial viability of having larger families, any superficial policy incentives are unlikely to reverse the declining birth rates. These economic incentives are giving back to families just a tiny portion of what's being stolen through the fiat monetary system. Stopping this inflationary theft would empower families to have more children, but such a move would require political will that is currently lacking.\n\nWhat we need is a new monetary system and the path is not through political reform, but through the adoption of a new money. Bitcoin really is the fix for low birth rates.\n\nLearn more at fiatruinseverything.com \N 21412 \N 273619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7485763048201 0 \N \N f 0 \N 0 4857735 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 226531 2024-09-03 11:34:53.41 2025-03-29 22:39:46.788 How to onboard new bitcoin users as a merchant ### How to be a Bitcoin onboarding merchant with a TPoS ATM\nYes, you hear it well: you are a merchant and you want your customers to start using Bitcoin!\nThe onboarding process works on both ways.\nThis guide is about HOW to onboard new users, not to became a LN bank. So please don't come up with comments that "is custodial... bla bla bla". Yes, you can be the custodian, the LN bank for your customers, nothing wrong with that if the user are warned about the risks. If there's a trust between the parties, it is nothing wrong.\n\nThis is how we start slowly onboarding people, We MUST start using Bitcoin BEFORE the CBDCs are in place!\n\nRecently Ben Arc announced a new feature for the LNbits TPoS:\n- [Nostr announcement](https://nostr.com/note1seaaesjs90pyhcxy56vqrxay09h2q9dkj5mndscwj60vu2sfed9qtswywr)\n- [Twitter announcement](https://nitter.net/arcbtc/status/1728917572496896290)\n\nYoutube video demo here:\n\nhttps://www.youtube.com/watch?v=zh34t9kjtxM\n\nApart from new improvements for the LNbits extension, was added the possibility to sell BTC vouchers. Same as Azteco is doing. But this time ANYBODY with a LNbits instance can do it.\n\n### Conditions\n- You are a small merchant, already accepting BTC\n- You have a LNbits instance, for accepting BTC and many other cool stuff (see my many guides about it)\n- You have also a printer for tickets or even this wonderful [Android PoS with LNbits integrated](https://shop.lnbits.com/product/android-point-of-sale-device)\n- You have setup the [LNbits TPoS extension](https://github.com/lnbits/lnbits/wiki/LNbits-Extensions) (from many others)\n- You have a good LN node with good liquidity ready for funding your LNbits instance (see bellow my guides about LNbits and liquidity)\n- You want your regular customers to start paying you in BTC, but they didn't started yet.\n\n[![lnbits-tpos.jpg](https://i.postimg.cc/SxxJkq7d/lnbits-tpos.jpg)](https://postimg.cc/hfNS1kYQ)\n\n### Scenario\nYou are just a regular small shop, grocery or whatever shop, bar, restaurant, that already accept BTC.\nSome customers are still paying you in fiat cash. Fine, but also they would like to start using BTC, and they don't know how to do it, how to start. Are your regular customers, you know them, they know you.\n\nSo they do their regular shopping and pay with cash, you gave them some change, in coins or bills. Then you ask them: "would you like to convert this small change into bitcoin?" Answer is yes.\n\nThen go to your LNbits TPoS, put the amount in fiat and print the voucher code for LNURL-withdraw with the sats.\n\nAs a first time using Bitcoin it is recommended to help them with more instructions like: what wallet should install and redeem that LNURL voucher, how to do it, safety measures, how to stack, how to take self custody etc.\n\nI would recommend to onboard first with simple solutions, even custodial if they prefer (but warn them). The first steps are always very hard for a noob. Depending on their knowledge level, suggest the app accordingly. See bellow in the links resources the guide about LN wallets comparison.\n- Blink wallet - works very easy and fast, fully supporting LNURL. Custodial, open-source, no KYC (only the phone no)\n- Walletano - web / PWA wallet, no app to install, no-KYC, very simple\n- CoinOS - web / PWA wallet, no ap to install, no-KYC, very simple\n- Phoenix - very good and simple wallet for onboarding, self-custodial\n- Zeus - you can use it with your own LNbits LNDhub accounts or using any other custodial service like Alby, LNtipBot, that support LNDhub. Zeus is more complex for a noob, but is very powerful LN node. You can start also with Olympus by Zeus LSP opening a channel with the amount of sats from the voucher, but it require more steps, not a very fast onboarding with a LNURL-w voucher.\n- Bluewallet - same as Zeus, suing the LNbits LNDhub account\n- Breez - very good LN node, that fully support LNURL, self-custodial\n- Blixt - same as Zeus, self-custodial LN node, but the process of onboarding is not easy straight from the LNURL-voucher, this is more for advanced users.\n- Your own LNBITs instance. Offer them temporary custody using your own LNBits! Read bellow a guide about how to use LNbits as a LN bank for your family and friends. And they don't even have to download any app, they could just use a LNBits account from your own LNbits instance. Of course, warn them that the funds are still in your custody and they should move them out into a self custody wallet. But for practicing and helping them with first steps, it is a nice and easy method.\n\nAnd done! From now on, your recurring customers could exchange their fiat change from shopping into sats, each time they came to your shop.\n\nI would not be worried about any "legal" repercussions. Bitcoin is digital P2P cas, another form of money that NONE of gov have power over it. Nobody can prohibit you to trade in whatever form of money or value. \n\nPlease don't confuse this aspect with "legal tender", that is totally another story !\n\n### What is a "legal tender"?\nAny retailer or individual could refuse to use a legal tender. Nobody can force you to use it.\nWhy? What is the point of a legal tender then?\n\nThe point is that you cannot force a retailer to accept legal tender or indeed any other form of tender. If, however, you buy something from them and there is no contractual barrier to the use of any form of tender, and you offer legal tender in payment, and they refuse it, then they cannot enforce the debt in court.\n\nThat's what legal tender means: it's about discharging debts. If you incur a debt you can discharge it with legal tender, but you cannot be forced to incur the debt in the first place, if you see what I mean...\n\n### Resources links:\nPlease bookmark all of them to study them before you start building your own scenario. Are full of details.\n- [LNBits Documentation wiki](https://github.com/lnbits/lnbits/wiki/LNbits-Documentation)\n- [Lightning wallets comparison guide](https://darthcoin.substack.com/p/lightning-wallets-comparison)\n- [Getting started with LNbits](https://darthcoin.substack.com/p/getting-started-lnbits)\n- [LNBits LN Bank](https://darthcoin.substack.com/p/the-bank-of-lnbits)\n- [LNbits for small merchants](https://darthcoin.substack.com/p/lnbits-for-small-merchants)\n- [Operating with LN as a merchant](https://darthcoin.substack.com/p/operating-with-ln-as-a-merchant)\n- [Managing Lightning Node Liquidity](https://darthcoin.substack.com/p/managing-lightning-node-liquidity)\n- [Build your own NOSTR market with LNbits](https://darthcoin.substack.com/p/lnbits-nostr-market)\n- [How to host your own LNbits instance on a SaaS server](https://darthcoin.substack.com/p/lnbits-saas-a-solution-for-schools)\n- [How to build your own LNbits server app](https://darthcoin.substack.com/p/build-your-own-lnbits-app-server)\n- [How to use LNbits with streamer copilot](https://darthcoin.substack.com/p/lnbits-streamer-copilot) \N 21079 \N 226531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.6359863910569 0 \N \N f 0 \N 0 41826868 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 290499 2024-11-08 16:48:07.696 2025-03-29 22:39:46.788 Wasabi Wallet v2.3.0.0 released! Wasabi is a privacy wallet for Bitcoin only. Release notes & download (open source): https://github.com/WalletWasabi/WalletWasabi/releases/tag/v2.3.0.0\n\nThis version of Wasabi introduces major improvements to the user experience with a more intuitive and useful interface, while continuing the efforts to enhance and streamline the codebase for easier maintainability and better building blocks for further improvements.\n\n🌐 Enhanced Tor integration\n\nWe’ve completely rewritten our Tor integration, replacing custom code with a more efficient, standard HttpClient. This not only improves performance but also enhances code clarity, making it easier to review which identities are used in specific contexts. This reduces potential errors and improves the wallet's overall security.\n\n📊 Better BTC amount formatting\n\nAmount formatting has been significantly improved across the wallet, offering clearer readability for both small and large balances, whether you want to read as BTC (decimals) or Sats. The aesthetics of all screens presenting amounts have been revisited to be smoother and consistent throughout the application.\n\n🔍 More insight on transactions\n\nThe Preview Transaction and Transaction Details dialogs now include a lists of inputs and outputs. This long-requested feature offers insight into the privacy-enhancing effects of coinjoins and the level of anonymity achieved with each transaction. Additionally, it is now visually clear how privacy suggestions improves transactions.\n\n💰 [Beta] Payment in coinjoin (RPC only)\n\nOur Payment in coinjoin feature is now officially in beta! It is currently accessible only though the RPC. While this feature is still in development and lacks certain functionalities, we encourage users to test it and provide feedback. Learn more about it in the Documentation\n\n🔒 Trezor Safe 5 & ColdCard Q support\n\nHardware Wallet Interface (HWI) has been updated to version 3.1.0 along with support for Trezor Safe 5 & ColdCard Q. \N 2780 \N 290499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4338040148123 0 \N \N f 0 \N 0 10831714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 195624 2024-07-06 19:30:32.059 2025-03-29 22:39:46.783 Robin Linus AMA Hi everyone,\n\nMy name is Robin Linus and I am doing an AMA for the next hour.\n\nFor people that don't follow my work, I am the creator of things like BitVM, BitStream, Stakechains, and zkCoins and I co-founded ZeroSync. For more details check out [robinlinus.com](https://robinlinus.com)\n\nHappy to answer questions if anyone has any!\n \N 8376 \N 195624 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.86533361449876 0 \N \N f 0 \N 0 156137744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 287561 2024-11-05 19:17:16.31 2025-03-29 22:39:46.788 Open Source Justice Manifesto ![Thumbnail.png](https://m.stacker.news/27974)\n\n*The Open Source Justice Foundation is a 501(c)(3) tax-exempt public charity dedicated to spreading access to justice globally through open-source protocols and technology. Learn more about OSJF's work at [opensourcejustice.org](https://opensourcejustice.org).*\n\n---\n\nMost people in the world are denied access to justice. An estimated four billion people live outside the protection of the law. Fifty-four percent of the world's population lives under some form of authoritarian rule. And even in relatively stable democracies, the justice gap between low- and high-income earners is well documented.\n\nThe state has failed to provide courts that offer equal justice to all.\n\nThis is not a secret. For decades, politicians, lawyers, and charities have publicly decried the lack of affordable and accessible legal services. But politicians' solution has been to simply funnel more taxpayer money into the failing court system. Lawyers continue to lobby for restrictive licensing requirements on the practice of law, jealously guarding their monopoly over justice. Legal aid charities do not exist to change this system, but to work within it. For these groups, "access to justice" means a wider door on the courthouse. They have no incentive to fundamentally alter the state-based justice system, a system that directly benefits them.\n\nThose with the incentive to enact meaningful alternatives to this broken system are those that are excluded from it. These individuals and communities must take justice into their own hands. They should be empowered to resolve their own disputes *peacefully* and *voluntarily* without resort to the state, and guided by their own norms and standards of acceptable social conduct. Only once justice ceases to be the exclusive domain of the state can it spread freely to all.\n\nPrivate, Alternative Dispute Resolution (ADR) systems and Online Dispute Resolution (ODR) technologies have the potential to drastically increase global access to justice. But the transformative power of conventional ADR and ODR tools are hindered by proprietary software licenses that shield source code from view. Without a way for users to verify the operation of these black-box solutions, they suffer from perceptions of unfairness or bias, which disincentivize use. And such closed-source licenses prevent communities from modifying the ODR tools to fit their specific needs.\n\nBy taking conventional ADR and ODR designs, however, and **deploying them through free open-source software and protocols**, communities and individuals can harness the full potential of these private dispute resolution systems. The result is **Open Source Justice**.\n\nThe tenets of the free and open-source software (FOSS) movement are aligned with the goal of advancing equal access to justice. FOSS is permissionless, inclusive, transparent, and anti-discriminatory.\n\nConsider Richard Stallman's four essential freedoms for open source software:\n\n0. The freedom to run the program as you wish, for any purpose. (Freedom 0)\n1. The freedom to study how the program works, and change it so it does your computing as you wish. Access to the source code is a precondition for this. (Freedom 1)\n2. The freedom to redistribute copies so you can help others. (Freedom 2)\n3. The freedom to distribute copies of your modified versions to others. By doing this you can give the whole community a chance to benefit from your changes. Access to the source code is a precondition for this. (Freedom 3)\n\nFreedom 0, the freedom to run a program for any purpose, embodies respect for the choices and sovereignty of others. Sovereign communities should be free to set their own norms and values, and decide for themselves how disputes should be resolved consistent with those norms and values.\n\nFreedom 1, the freedom to access, study, and change source code, is essential to empowering sovereign individuals and communities to make those choices for themselves. This freedom further embodies the value of transparency, which is necessary for any dispute resolution system to gain legitimacy, trust, and perceptions of fairness.\n\nFreedom 2, the freedom to redistribute copies to help others, will accelerate the spread of ODR and ADR tools to those jurisdictions where justice is lacking or diminished.\n\nFreedom 3, allowing modification and redistribution of modified software, allows communities to adapt dispute resolution tools to fit their circumstances and values. It also allows communities that have created their own open-source dispute resolution systems to share their tools with other similarly situated or sympathetic communities -- again accelerating access to justice.\n\nThe FOSS movement places user freedom above all else. The user should be in control of the software, the software should not control the user.\n\nLikewise, the Open Source Justice movement places the disputant's freedom above all else. While communities should be empowered to define their own concepts of justice and design their own procedures for provisioning that justice, individuals must be given the choice to opt in to their chosen justice system. Voluntaryness and non-coercion are hallmarks of Open Source Justice.\n\nThis is a call to all developers, lawyers, entrepreneurs and other stakeholders interested in real access to justice to devise, build, and support new ODR and ADR systems consistent with the values of the FOSS movement.\n\n[Join the Open Source Justice Movement today](https://opensourcejustice.org). \N 10342 \N 287561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3173863081491 0 \N \N f 0 \N 0 154590167 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 137348 2024-03-06 04:02:28.675 2025-03-29 22:39:46.788 Announcing Harbor: an ecash desktop wallet for better bitcoin privacy \N https://blog.mutinywallet.com/harbor/ 20179 \N 137348 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.4097985397443 0 \N \N f 0 \N 0 166504449 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 62818 2023-09-12 16:32:07.755 2025-03-29 22:39:46.788 El-Tor: High Bandwidth⚡️Tor Network Release! Incentivized by the Bitcoin Lightning Network.\n\nMore decentralized.\nMore Secure.\nRelays earn sats.\nPowered by Bolt12 offers.\n\nhttps://www.youtube.com/watch?v=s4fr_jwLSfE https://devpost.com/software/el-tor?ref_content=my-projects-tab&ref_feature=my_projects 9450 \N 62818 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.72201883866617 0 \N \N f 0 \N 0 93595686 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 68522 2023-09-30 11:21:16.027 2025-03-29 22:39:46.788 Broken Money Explainer Lyn Alden has posted a great 30 minute explainer video for her book Broken Money. \n\nGreat stuff. \nhttps://m.youtube.com/watch?si=-8Okyee-gqeaPdvm&v=jk_HWmmwiAs&feature=youtu.be \N 7772 \N 68522 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.4923065783332 0 \N \N f 0 \N 0 194819121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 250287 2024-09-29 05:24:37.404 2025-03-29 22:39:46.788 AMA: Ask Murch Anything Hi, I’m Murch. I’m a computer scientist currently hailing from NYC, originally from Germany.\nI have been contributing to [Bitcoin Stack Exchange](https://bitcoin.stackexchange.com/) for about a decade, wrote my [master thesis about Coin Selection](http://murch.one/erhardt2016coinselection.pdf) in 2016, and worked for over three years at BitGo on the Bitcoin backend. I now work as a research engineer at Chaincode Labs contributing to research, Bitcoin Core, [Optech](https://bitcoinops.org), and the [Chaincode Podcast](https://podcast.chaincode.com). I’m currently interested in mempool improvements, block building, and wallet development. I have been involved in organizing Bitcoin meetups for many years, recently co-hosting [NY BitDevs](https://bitdevs.org). You may have seen me on Twitter as [@murchandamus](https://twitter.com/murchandamus). \N 946 \N 250287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.50032455543133 0 \N \N f 0 \N 0 70972027 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 332466 2024-12-16 22:04:13.906 2025-03-29 22:39:46.788 Something expensive worth buying Not sure which territory this topic fits under, but I am wondering what have you all purchased that most people might think is too expensive but is totally worth it?\n\nI will go with my custom titanium bike. It was $10,000, but in terms of expensive bikes that is not even that much. People buy stock bikes that cost more than that. Mine was built to my exact measurements and specifications. It is made of titanium so it will last the rest of my life. \n\nAnd I know what you are thinking - you could buy a car with $10,000. From my perspective, when I hear how much people spend on their cars I think of all the bikes they could buy. \n\nWould not recommend unless you would be willing to commit to primarily commuting via bike, but if you do, a titanium bike is totally worth it (especially for people with cold winters to avoid rust). \n\nI bring this up here because it seems like there is a lack of consumerism in this community so if you spent a decent chunk of money on something it was probably worth it. \N 18557 \N 332466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.45864120634155 0 \N \N f 0 \N 0 27327063 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 101349 2023-12-20 21:37:20.077 2025-03-29 22:39:46.788 Coinbase Selects Lightspark for Lightning \N https://www.lightspark.com/news/coinbase-selects-lightspark 14152 \N 101349 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5614266180026 0 \N \N f 0 \N 0 111510552 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 193173 2024-07-02 10:33:35.277 2025-03-29 22:39:46.789 Cycles and inevitability (The second post in the meta-experiment series of the _Broken Money_ book club, part 5. Check out the [first](https://stacker.news/items/333010).)\n\nEveryone knows that btc has been subject to price gyrations of enormous magnitude, and that these cycles are somehow fundamental to its nature. Lyn writes about these as invariable features of adoption and monetization:\n\n> Unlike other technologies such as electricity, washing machines, televisions, computers, and phones, a new type of emerging money most likely cannot be widely adopted quickly. This is because if too many people adopt it at once, it drives up the price and incentivizes leveraged buyers to enter it. This leverage eventually causes a bubble to form and to pop, which sets the price back and disillusions people for a while until it builds the next base and grows from there. Due to the attachment of leverage, Bitcoin cannot realistically have a fast and smooth adoption curve like non-monetary technologies can. (p. 324)\n\nI'm not comfortable with attributing this cylic nature to leverage, although it seems clear that leverage must play a part. But the general pattern seems to be:\n\n1. btc price is relatively stable\n2. because it's stable, it's predictable and useful to some people\n3. stability also affords time and mental attention to build infrastructure outside of the lens of mania; btc becomes more useful as a result of this building; and it becomes useful in more contexts\n4. stability causes the apocalyptic memories of the last cycle to dissipate\n5. people buy btc, including people who've never bought it before, driving the price up and leading to bubble for all the usual reasons\n6. bubble pops, many people sell, investors are ruined, the larger world loses interest\n7. btc price is relatively stable\n\nIt seems to me that leverage would magnify step 5 -- the price would go up higher, faster; but even with no leverage, the steps would all be the same, and the cyclical pattern would still unfold in the way we've come to expect.\n\nLeverage aside, do these steps capture the salient features of a cycle? What else happens during the different cycle phases? What's special, interesting, distinct about the version of the cycle that we're currently in? Is there a [new narrative](https://medium.com/@nic__carter/visions-of-bitcoin-4b7b7cbcd24c) that we should take into account? Is Lyn right, and we're stuck with these until full btc monetization, or can you think of particular dynamics that could interrupt the customary cyclical pattern? \N 1803 \N 193173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9814510577425 0 \N \N f 0 \N 0 10136094 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 204467 2024-07-23 14:32:35.381 2025-03-29 22:39:46.789 Alex Gladstein At Pub Key ![Pub](https://imgprxy.stacker.news/7ZI45Oja_RS05Sox6cxVPoEhOFMjFoMhxeurxL8a5ME/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvdkJNdHA5RzMvcHVia2V5LWV4LTIuanBn)\n\nI went to Pub Key last Wednesday for a late afternoon "fireside chat" with Alex Gladstein, Chief Strategy Officer at the [Human Rights Foundation](https://hrf.org/) and Vice President of the [Oslo Freedom Forum](https://oslofreedomforum.com/). He is also one of the most articulate bitcoin advocates. If you haven’t read any of his books, you should. I looked forward to this event all week.\n\nI got there early to get something to eat and have a few beers. When I arrived the place was almost empty. The owner, Tom Pacchia, was getting ready to broadcast a live Twitter Spaces with Alex, who was sitting at the end of the bar. \n\nI ordered a beer and told the bartender that I would be paying with bitcoin. Last time I showed up without sats, but this time I had the Phoenix wallet on my Graphene Pixel locked and loaded. For dinner I had a chopped cheese. Now I’m sure many of you have never heard of a chopped cheese. Here’s how wikipedia describes it:\n\n> Chopped Cheese is a type of sandwich originating from New York City. Found in bodegas throughout Upper Manhattan, Brooklyn, the Bronx, and Queens,it is made on a grill with ground beef (typically pre-formed ground beef patties), onions,adobo or other seasonings, and cheese, all of which are chopped together on the grill as the meat and onions cook and the cheese melts. It is served with lettuce, tomatoes, and condiments on a hero roll.\n\nI don’t profess to be a chopped cheese expert, but the sandwich was damned good.\n\n![chop](https://imgprxy.stacker.news/aAWC18srkeaARGX-e5ljy7o2J5uz_adIV2PmWjf_jsw/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvajVKdjZmUzYvY2hvcHBlZC1jaGVlc2UuanBn)\n\nThe place began to fill up. This was a different crowd than my last visit, which seemed to be mostly Galaxy Digital employees. Today there was just a bunch of very friendly bitcoiners. I heard no shitcoin talk. The two guys sitting next to me were from New Jersey. They were meeting for the first time since discovering each other on the Orange Pill app. One of them was telling me about his plans to start a Jersey City meetup. I met someone who identified himself as Kenobi Nakamoto, from Barcelona, Spain. He was visiting New York and stopped in to hear the presentation. I met a retired Rutgers University Economics professor. I met more bitcoiners in twenty minutes than I knew before I walked in the bar, by a long shot. I had heard that face to face conversations with fellow plebs was much better than online interactions. Still, I didn’t expect to have such a great time. I wish I had discovered this place sooner. \n\nBased on prior [experience](https://stacker.news/items/219987), I thought I would be the only person paying with bitcoin. I was seriously mistaken. Bar codes were getting scanned left and right. It was like I had time traveled to Bitcoinland, circa 2050. Pub Key uses a Zeus wallet hooked up to a Square terminal. Evan Kaloudis helped set it up. He also frequently shows up at the bar, which must come in handy if they need any tech support. The transaction was flawless. Since Jason the bartender is not into bitcoin (yet), I wanted to tip him in cash, but the system adds a twenty percent tip to each lightning tab. By the way, Jason is a fantastic bartender, competently serving up drinks while shooting the shit with the customers. \n\nSoon it was time to head to the meetup room in the back.\n\n### Alex Gladstein\n\n***“In Zimbabwe our biggest note became an astonishing but useless one hundred trillion dollar note. We lost everything because of a brutal and corrupt government took it all. Alex Gladstein reveals what Bitcoin can and is doing for people who are at the mercy of political looting gangs in designer suits backed by the military. He shows how Bitcoin is a genuine chance at freedom for billions of people trapped in financial oppression.”***\n\n\n***Evan Mawarire, Zimbabwean Pastor and Pro-Democracy Advocate***\n\n\n\nThe presentation started right on time. Tom set the ground rules. This was to be an informal discussion, not a lecture. The room was packed with Alex Gladstein fans. In my opinion there wasn’t as much back and forth as planned, because nobody wants to interrupt Alex when he’s on a roll. For those familiar with his work, he elaborated on much of the material he discussed in his recent books: The role the [IMF](https://www.imf.org/en/Home) (International Monetary Fund) and [BIS](https://www.bis.org/) (Bank For International Settlements) play in draining the global south of resources to benefit the United States and its chosen allies. As he has written elsewhere:\n\n> The reality is that these organizations have impoverished and endangered millions of people; enriched dictators and kleptocrats; and cast human rights aside to generate a multi-trillion-dollar flow of food, natural resources and cheap labor from poor countries to rich ones.\n\nGladstein talked about African bitcoiners he knows and their low opinion of the United States. To Africans, the United States is a colonizer. Revolts against colonizers have typically been Marxist. This is the environment that organizations like the HRF are faced with when trying to orange pill these societies. \n\nHe also described how criticism of the IMF in the US traditionally differed depending on where you stood politically . Conservatives saw it as a waste of money. Libertarians recognized the harm it was doing to underdeveloped nations by saddling them with debt. It was the political left, however, that recognized both the harm its policies caused, and the tremendous financial benefits enjoyed by the United States. Every dollar spent on these loans reaps substantial profit.\n\nThere was more give and take towards the end of the discussion. A Nicaraguan man whose relatives were former Sandinistas described how difficult it was to get them to see bitcoin as anything but a scam. Gladstein didn’t have any simple solutions. He made clear that he can only help those who are already interested in bitcoin. \n\nHe closed by mentioning the [Oslo Freedom Forum NYC](https://thetownhall.org/event/2023-oslo-freedom-forum-in-new-york) that will be held in late September. I plan to attend. Then he signed copies of his last two books, Check Your Financial Privilege and Hidden Repression: How The IMF And World Bank Sell Exploitation As Development. Since I had already read the former, I got a signed copy of Hidden Repression.\n\n![hidden](https://imgprxy.stacker.news/f9MG8ejcxfzafUqmB5_oSd1BEdsz0SWcj7SgMU6PKOg/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvdDRoVHJLeW4vaGlkZGVuMi5qcGc)\n\n\n\n### I Shall Return (again and again)\n\nOn my way out I noticed that the bar area was more or less empty. Everyone had been crammed into the back room to listen to Alex Gladstein. He was the star of the show tonight.\n\nOnce again I had a great time at Pub Key. I know I’m getting repetitive, but this bar is Hodler Heaven. It is the perfect place to socialize in a very comfortable setting. You also get to listen to, learn from, and interact with some of the best minds in bitcoin, at no extra charge. Pub Key is a must visit. You won’t be disappointed. If I didn’t live an hour and a half away I’d be there every night.\n\n\n\n \N 9171 \N 204467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.43333345962365 0 \N \N f 0 \N 0 11930287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 227039 2024-09-04 02:20:59.545 2025-03-29 22:39:46.789 Name One Conspiracy Theory You Believe and One You Don't As a kid I was really interested in conspiracy theories. It was the 80s-90s and the world was very different. Now I need new ones since most I believed in have come true lol. I often call myself a conspiracy therapist(Stolen from Adam Curry). \n\nI find many people are either believers in all conspiracy theories(gullible) or think anything that is a conspiracy theory is crazy(also gullible). I used to tell people about government programs and get them to call it a crazy conspiracy theory. Then I'd show they the documents from the gov admitting to the actions. It was entertaining. \n\nMy favorite example of this was when Edward Snowden exposed the NSA accepting an apology from a co-worker. You were right Bob! I bet many here experienced that.\n\nSo, where are you. What do you believe and not believe.\n\n**One Theory I Believe:**\n\n The JFK assassination investigation was a cover up. I don't pretend to know what happened but it is obvious that the government was not interested in digging to get the truth. Instead they wanted to take control and move on.\n\n**One Theory I Do Not Believe**\n\nThe moon landing was faked. I don't buy it. Its not that I don't buy the US would lie and try to fool the world. I just don't buy that they were capable to doing this at that time. It seems to me that it would have come out by now, that there would be much more evidence proving it a fake.\n\n \N 730 \N 227039 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.234542188966 0 \N \N f 0 \N 0 2171880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 233747 2024-09-11 06:22:43.662 2025-03-29 22:39:46.789 Discussion on using Lightning as an alternative to CoinJoins **I would like to discuss feedback on the following proposed setup:**\n\nKYC'd coins (Onchain) -> FixedFloat (Onchain -> Lightning) -> Lightning Wallet (Muun / WoS, Lightning -> Onchain) -> Non-KYC coins (Onchain).\n\nWith the goal in mind of breaking the history from the original KYC source, as far as I can tell this will work well, is cheap and fast, and is generally low-risk. No party can see more than 1 step in either direction.\n\nI think FixedFloat and Muun are easy choices here. Both can be accessed anonymously, both have low fees and you are not going to max out liquidity by running your own Lightning nodes, etc. There are criticisms of Muun as not being a real lightning wallet, but in this situation it seems to have some of the lowest fees for Lightning -> Onchain. \n\nCompared to typical Coinjoins, this kind of Lightning-based approach seems to me faster, cheaper, and ultimately more user friendly (No toxic change, no always-online setups). However it does have an upper limit in terms of UTXO size, does introduce a brief window of risk with the custodial providers, and there may be secondary chain analysis being done by one of the middle steps.\n\n**Discussion**\nAny thoughts, or feedbacks to develop / improve this further? Do you have a better way to propose using Lightning instead of CoinJoins easily?\n \N 1094 \N 233747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5546971052677 0 \N \N f 0 \N 0 244684835 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 116605 2024-01-22 04:40:39.182 2025-03-29 22:39:46.787 Mutiny Wallet is now available on iOS and Android! 🚀 \N https://x.com/MutinyWallet/status/1765437625710588356 11240 \N 116605 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.9869592336281 0 \N \N f 0 \N 0 191069059 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 260343 2024-10-08 16:09:44.119 2025-03-29 22:39:46.787 Are Bitcoin devs the new farmers? ### **Summary**\nFarmers are humble know-it-alls, with an enviable work ethic and wide ranging skillset. They plant for the future, are criminally undervalued by society and are extremely resourceful with both their hands & time.\n\nIt hit me this week that there is really no other occupation quite like a farmer in society. They need to know plenty about everything. From plant biology to soil chemistry, waste management to transport, mechanical engineering to electrical engineering, mathematics to people management, negotiation to commodity markets, weather to animal welfare. They are professional generalists - which is a unique skillset in today's over-efficient world. But it does remind me of another path.\n\nThe job of a farmer reminded me of the thankless job many bitcoin (core) developers do. Working long & hard for the fruits of their labour, which they may not directly benefit from themselves. In this case swapping physical thankless labour often at low margins (as farmers) for mentally-demanding thankless labour with smaller pay/grants (as Bitcoiners).\n\n---------\n\n### **Similarities - Farmers vs Bitcoiners**\n\nBelow is my attempt at making the comparison between both types of work:\n\n| | `FARMERS` | `BITCOIN DEVS` |\n| ---- | ---- | ---- |\n| 🧡 | Care for animals & nature | Care for humans & time |\n| 🎁 | Generous with other workers | Generous with other contributors |\n| 💪 | Humble lifelong learners | Humble lifelong re-learners |\n| 🤝 | Honest figures in todays local societies | Honest figures in future global society |\n| 🔀 | Adaptable to negative conditions & circumstances | Adaptable to new innovations & network forks |\n| 🕑 | Incredible at time management | Incredible at time storage |\n| 💼 | Market minded to create profits for stores | Market minded to create infrastructure for new businesses |\n| ♻️ | Adopt nature's flywheel: soil > grass > animals > waste > soil | Adopt human flywheel: price > trust > users > ux / hashrate > price |\n| 🤓 | Knowledgable in engineering, chemistry, markets, people, persistence | Knowledgable in engineering, cryptography, math, security, privacy, econ, markets, liberty |\n| 😠 | Persistent & not discouraged by local regulation | Persistent & not discouraged by global regulation |\n| 💩 | Working around sh!t | Working around sh!tcoins |\n| 🚜 | Confident & driven | 'Toxic' & driven |\n| 🔧 | Learn by doing | Proof of work |\n| 🌐 | Welcome local competition for sharing best seeds & varieties | Welcome global competition to make the network grow larger |\n| 📖 | Experts in hiring specialist contractors | Experts in attracting open-source contributions |\n| 🧠 | Problem solvers at heart | Problem solvers in head |\n| 🗓️ | Long-term planners | Long-term time preference |\n| 🌩️ | Mindful of generations & legacy of land / food | Mindful of generations & legacy of freedom / money / commerce |\n| 🚀 | See-through jobs until done | See-through work until shipped |\n| 🌅 | Physically demanding, lonely thankless work | Mentally demanding, somewhat lonely thankless work |\n| 💰 | Resourceful & receive less investment than supermarkets | Resourceful & receive less investment than fiat / altcoins |\n| 👋 | Strong hands | 'Diamond' hands |\n| 👣 | On feet most of day, lots of stamina | At desk most of day, lots of persistence |\n| 🌴 | Stewardship of local land | Stewardship of global freedom |\n| 📉 | Undervalued by locals | Undervalued by world |\n\n\nP.S. I'm sure I've missed a bunch of skills that farmers have - some of which are listed externally [here](https://graduatefarmer.co.ke/2018/02/09/typical-characteristics-of-a-farmer-entrepreneur/). \N 5794 \N 260343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.64394991225038 0 \N \N f 0 \N 0 14615430 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 316567 2024-12-02 23:05:21.336 2025-03-29 22:39:46.787 Capital Formation Weekly #3 #### What this is _partie trois_\n\nIn short, the [idle thoughts of an idle fellow](https://www.gutenberg.org/files/849/849-h/849-h.htm).\n\nHere's [last week's release](https://stacker.news/items/446575) which has a bit more explanation; and through which you can follow the chain back to #1 because there's something wrong with you and you want that.\n\n**Note:** I'm moving this to Thursday AM, in concession to @davidw's [data](https://stacker.news/items/441843) about when posts get more attention. Although I wonder if this might usher in [Goodhart's law](https://en.wikipedia.org/wiki/Goodhart%27s_law) and david's data will stop being true?\n\n#### 1. [Who btc is and isn't for](https://stacker.news/items/446513) by @DarthCoin\nThis post is a decent stand-in for the general protest made by early members of a sub-culture when the latter arrivals to that sub-culture start to ruin it for them.\n\nIn this partiuclar case, the early members are anarcho-capitalist types who have utopian visions where btc makes all the bad people poor and all the good people rich, ends the state and its incompetant and lecherous bureaucrats, and ushers in the glorious after-time populated with steely-eyed sovereign carnivores.\n\nBut really, what this post is describing is a thing that happens everywhere and always. Scott Alexander has a nice [writeup](https://www.astralcodexten.com/p/a-cyclic-theory-of-subcultures) of the process that includes links to other writeups. (Cyclical theories of history are also relevant, though in my opinion the subculture lens is the better one.)\n\nThe point is, while btc is uniquely interesting, it's also pretty typical as a social phenomenon, at least as far as I've been able to determine. It's natural for people who felt that something was theirs -- that it reflected their values and their ethos and their preferred cultural practices, and provided a sheltered cul-de-sac where they built identities and maybe achieved some measure of social prominance -- would get salty as it oozes toward something else, as all living things do.\n\nThere's nothing any of us can do about this, so I suggest that we prepare our hearts, because change is coming. Either btc really is for everyone, or else it fails. Full stop.\n\n(Notably, this will be true of SN, too. We've [discussed the possibility before](https://stacker.news/items/254594))\n\n#### 2. [When money might die](https://stacker.news/items/450956) by @siggy47\nSome good inflation talk, looking for parallels between what happened in the Weimar republic, post-WW1, and what's happening now.\n\n#### 3. [MSTR keeps on keeping on](https://stacker.news/items/450263) by @ch0k1\nI'll probably eventually get bored w/ MSTR, but as much as we talk about it, I think what Saylor's doing w/ the company is one of the most interesting things going on in the whole btc space, and even (dare I say) in the world.\n\nThe nutty histrionics MSTR is doing in order to buy btc may distract you from the fundamental truth that this is basically a single dude playing a geo-political game at the highest possible level, in an environment that's never existed before, and in a manner that's never been tried before. Saylor has been like a meteor crashing into the earth. \n\nIf his gambit works out, he'll wind up as the wealthiest person in the world, and one of the most powerful. Like it or not, what Saylor's doing will have much to do with how btc evolves, how the world orients to it, and the timescale on which everything happens. \n\nYou read about things like this, but it's such a privilege to see it unfolding before your eyes in a domain where you have enough expertise to understand it.\n\n#### 4. [The tragicomdedy of Craig Wright](https://stacker.news/items/450236) by @Bitman\nWhat can you even say.\n\nJust as MSTR and Saylor fascinate me endlessly, Craig Wright does too. Not so much CW, who is clearly both a narcissist and mentally ill; but what all this portends for btc. And in particular, these three things:\n\n- **Thing 1:** how CW and his puppeteers have caused so much trauma to btc core devs and disturbance to the broader ecosystem, despite him being so obviously full of shit. Like: can you believe how much harm one well-funded clown can do?\n\n- **Thing 2:** and also, can you believe that you can literally lie, over and over, in actual court, and have nothing happen to you? Like, you are basically fine, unless another well-funded group of billionaires assembles the A-Team to finally take the fight to you? Like, that is what is necessary to make this walking hotdog maybe (nothing is sure yet) face some actual consequences for wrecking people's lives for years at a time?\n\n- **Thing 3:** what all this portends for a future in which btc's adversaries are more competent and bring to the crucible an actually substantial issue.\n\nSome cool btc history is buried in all the reportage also, which is linked in the post. Satoshi letters, tales from the early days by Adam Back and Martti Malmi, etc.\n\n#### 5. [Bootstrapping new devs](https://stacker.news/items/452063) by @k00b\n\nMy main interest in btc is not btc itself, or overthrowing the government, or whatever, but the more general question of systems and how they operate in complex environments. You can't get much more interesting from a complex systems perspective than the de novo birth of a non-state money in a fiat world.\n\nAnother system worthy of interest is how you create circumstances for far-flung people who don't know each other to pursue a common end that they didn't even have a moment ago. This is, of course, the problem money is meant to solve, but even though it might make economists sad, there's so much more to this collaboration / coordination endeavor than just a price signal; and even though it might make bitcoiners sad, centralization and leadership are _incredibly important_ in what is undertaken and how it proceeds. Or how it doesn't proceed, and instead runs into a tree.\n\nCase in point: in the linked post, @k00b is putting out feelers for technologies and strategies to help bootstrap SN development. Imagine if he could make it really convenient for people to contribute to the SN codebase? The post discusses the tech side of that -- what tech is available, what are the tradeoffs, etc. But the cultural piece is at least as important -- what norms, habits, behaviors, institutions are available to transform an outsider into an insider? That's a worthy thing to think about. Not sure it's been posted about, though.\n\nIn a way, this same issue threads through all the aforementioned topics.\n\n#### 6. [On not missing the starting gun](https://stacker.news/items/452688) by @siggy47\nBig-picture thoughts on btc's role in living a good life. This is an example of what you can get in an actual community, vs what you'd get on a news site.\n\nI guess some people have no interest in an actual community, and that's fine, each to their own. But I do. What a great post. \n\n \N 16847 \N 316567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.83475160032923 0 \N \N f 0 \N 0 240530200 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 334432 2024-12-18 18:57:36.584 2025-03-29 22:39:46.787 GrapheneOS: The Purpose, The Strategy, and The Why [Article] On 23rd June 2023, I made a reply on SN to @siggy47 about how I would post my experiences and advices with GrapheneOS. Obviously, I have been very late on that and I am sorry. A lot of things happened overall that slowed down my progress on personal endeavours. But, I always had this in my books and I hope you can find some of the rambling in here insightful. As a power user with a professional understanding of GrapheneOS who authors a lot of resources for the project, I hope this article can help you see things differently. \n\nIn this post I am going to provide a simplified rundown on the vast GrapheneOS documentation. I will assume users are briefly familiar with GrapheneOS due to the audience of this website and likely wherever this article is spread to, but don't feel alienated if you aren't because I'll still give some background. Outside of that, I will provide some technical details on what certain features exist and do, the justification and purpose for GrapheneOS, and a bit about myself and how I do things. I'll also try and explain some of the GrapheneOS philosophy.\n\nIn the start of the year, I [joined](https://discuss.grapheneos.org/final) GrapheneOS as a non-developing contributor. I am very grateful to be on the side of an extremely talented team and a software project that I consider systematically important in today's landscape and the security community as a whole. I owe a lot thanks to their work from when I was a user and originally it all started as a way of giving back to software projects I supported.\n\nI especially want to thank a lot of SN and Nostr users for their enduring support of GrapheneOS. For exceptional reasons I purged my old Nostr nsec and I am not on Nostr much for the time being. It will likely be less to do about GrapheneOS since there are Mastodon bridges and other moderators there now, so more Final, less GrapheneOS.\n\nAnyways, here's your article:\n\n## Background\n\nSmartphones established their place in society as an irreplaceable tool for communication and access to the online world from anywhere and anytime. As global adoption increased, they became the largest containers of people's private and sensitive information. Additionally, the more a person uses their smartphone, the greater the amount of information that device then contains about it's owner. The typical mobile mobile devices manages data such as communications (like texts or emails), contacts, locations, documents, photos, videos and online activity - with people additionally using their device to manage their finances or their identity.\n\nThis scope of information handled by a smartphone is diverse and comprehensive. Such information wouldn't just be able to identify a unique person, but also track them and view their life in a chronological timeline. Thanks to all of this data being in one place, there can be grave consequences if someone were to compromise or abuse your privacy rights of your device. This, along with their widespread use, are some of the many reasons why a smartphone is one of the most highly desired platforms for malicious actors to target. \n\nMobile security is important, arguably, the most important priority in a list of fundamental digital security actions. The first thing you should think about protecting is the things you use the most and keep closest to you, like your accounts and everyday devices. Digital security isn't just about protecting yourself, but the people you communicate with or have information about. Security incidents, breaches and targeted attacks affect others professionally and personally.\n\nMobile operating systems are well-designed. Many security mechanisms like disk encryption, application sandboxing, adminless users, exploit mitigations and adoption of hardware-based security features like secure elements aren't default, mandatory or adopted in a majority of desktop operating systems (mainly Windows and Linux). Despite the success here, there is significant room for improvement. \n\nWhen mobile operating system developers and hardware manufacturers want to improve their product, they try to stay on a summit where there is great usability, personalization, and user experience. This can be a conflict against users who need extraordinary security requirements, since high security will often come at a cost of a restricted environment, and wanting more privacy will come with a sacrifice of a less personalized user experience. The more work you put into security, the more restrictive your workflow will be. The more privacy you uphold, the less intuitive your user experience, as bespoke personalization for the user can only be accomplished by the user providing more information about themselves. \n\nThis is a problem for users who have higher security requirements. Users who care about such features or have bespoke security needs may be missing out when using the mainstream offerings since they don't provide further security and privacy features because of a percieved notion that adding such features makes it too complex and disruptive for users. Users should have the choice to go further beyond and have individual options to do so. For example, Apple's Lockdown Mode functionality only disables a group of features without the option to toggle to activate some of them individually, which risks the mode being too disruptive and discouraging users to add protection. With mobile devices being a high target, this is very important problem I hope the project I am discussing helps to solve.\n\n## Introduction\n\nIn this post I will discuss GrapheneOS, a privacy and security-hardened mobile operating system built on providing improved security and privacy while maintaining the app compatibility and overall usability of Android. In simple terms, hardening is the process of increasing the security of a system above the defaults that the system provides. In our example, GrapheneOS uses the Android platform's security model as a foundation, and provides changes, user features and new technologies designed to improve the security of the platform and the user's privacy above the Android foundation.\n\nIn relation to the security-usability problem, many of the GrapheneOS security features are set up with minimal user impact or intervention. Users of GrapheneOS have far greater security than they would on Android with little setbacks beyond features and applications exclusive or only designed to work on stock Android distributions. GrapheneOS is not just a moderately secure OS, it is a *very usable* OS as well - it is very advanced security work in a simple environment. GrapheneOS also provides features to help with usability and app compatibility while still benefitting with security, such as the sandboxed Google Play compatibility layer. \n\nGrapheneOS is a result of previous projects dating back from 2014. The original developments of the project included porting OpenBSD's memory allocator to Android and the PaX Linux kernel patches. After a failed hostile takeover attempt GrapheneOS became a fully independent free and open source project in 2018, and development is funded through donations sent towards a non-profit GrapheneOS Foundation who supports the developer team.\n\n## Why GrapheneOS must exist\n\nOutside of the subject of this post, there are little to no offerings in the space for a useable mobile operating system where privacy and security are the designated focus. Many people will say they have a product that is, but it is inaccurate, problematic, or even malicious. The market of security and privacy is a space ripe with scammers and criminals, because privacy and security are extremely easy concepts to sell to people. They can meet many characteristics of a scam, such as marketing with a sense of urgency, an appeal to authority, a play of the reader's emotions such as their paranoia, an offering of scarcity by designating everything else as less secure, and referencing current events to make their product more relevant. \n\nI say this with little remorse: the mobile security industry is plagued with unethical and criminal-backed rot that sells proprietary, unsafe, or misleading scam products ran by equally sketchy people. These companies' primary market is to sell insecure devices to anti-intellectual criminal filth who believe they are untouchable, or to trick people who don't know any better into buying some brick product or being a reseller marketing extortionate sponsorship, affiliate deals or government "support". They are such a trend that law enforcement routinely compromise their business operations, and create fake products for sting operations. Many of these companies also sell their products to fund their own likely illegal business dealings.\n\nMany companies like this are still alive today... Crypto Cloud, Omerta Digital, Renati/ChatMail (Myntex), Freedom Phone, Unplugged Phone and many others are currently ongoing. While none will explicitly market for criminals, they all fall under the same characteristics of selling you a false promise and providing lulling whispers of extreme, unrealistic claims to anyone mistaken enough to fall for them. \n\nI have no interest in killers or drug dealers, but the effect that these scams like these have had on ordinary people wanting to protect themselves is catastrophic. While it is great to see the evil in society face justice thanks to these law enforcement operations, the truth remains that hundreds of thousands of people fall victim to fake marketing from criminal enterprises like EncroChat, SkyECC, and Phantom Secure or even the FBI's own ANOM. These cases don't just highlight that hundreds of thousands put their trust in fake security, but how easy it is to make a scam product with the same characteristics, marketing, and bogus claims time after time and still have people fall for it. It begs the question, how many ordinary people have also put their trust in false security?\n\nOutside of criminal enterprises, GrapheneOS is different to other open source projects, it is not just the same, redone custom Android distribution with some Google apps removed or some random apps bundled into it. GrapheneOS is about OS security innovation and is full of security features not available elsewhere, and we're about doing it properly and faithful to the upstream OS security model unlike other projects as well. \n\nA security-focused operating system can't just be an ordinary operating system with some components removed, as described above it must be *hardened* and above the standards users are willing to expect. GrapheneOS provides that, and is a free and open source project for people. It isn't a sketchy product for criminal scumbags to make money from, unlike these bogus products. We are one of the largest mobile security projects out there and GrapheneOS exists to protect others... we have evidently done so. \n\nThe right to privacy is one of the foundational building bricks of a modern state. People can, or better, should rightfully care that their personal details must remain confidential. Who you are, where you live, who your friends and family are, how they live, and how you all run your lives are private matters. Security is the essential baseline that upholds your privacy online and in the real world. Security measures like encryption, access controls, exploit mitigations, and being up to date against modern threats are some of the many ways your privacy is upheld. Without security you cannot have privacy, because you do not have measures to protect what you wish to withhold against your adversary.\n\n## GrapheneOS defence strategy\n\nGrapheneOS's defence strategy is to harden the system from the bottom to the top (from firmware, kernel, app runtime and app sandbox all the way up to the user-facing apps and settings) to reduce the amount of vulnerabilities and increase the difficulty in exploiting them. A vulnerability is a flaw in software that can be abused by a malicious actor for an attack. GrapheneOS hardens the system above Android in a huge variety of different ways, however you can consider these strategies to fall under any of these three core principles:\n\n1. **Attack Surface Reduction**: Preventing attacks by removing, disabling or configuring OS components to reduce their capability as an exploitable attack vector.\n2. **Exploit Protection, Detection and Mitigation**: Preventing attacks by adopting security technologies designed to make exploits difficult, more detectable, or easier to remediate.\n3. **Containment and Sandboxing**: Preventing attacks by designing the system that runs applications and user-installed code to be an unprivileged, contained environment that restricts them from malicious activity. \n\nAlmost all of the GrapheneOS changes, features and technologies adopted can be mapped on these principles as well:\n\n![](https://m.stacker.news/54905.png)\n\n`(this picture doesn't contain every feature, and a feature doesn't have to be *exclusive* to the principles they are contained within either, but it maps the primary purpose of that feature)`\n\nNo system is definitively unhackable, but some systems can certainly be more difficult to hack than others. Offensive and defensive security engineers move in an arms race to outdo eachother (typically for the benefit of the security community - but not always), and they follow each other in what trends they are interested in. Some features are on our radar for several years before they ever get adopted, and the same goes for our adversaries because they know it will be challenging for them.\n\nSecurity innovation is important for GrapheneOS, it's a long try to be the platform to get game-changing security features first (like MTE) or have the most secure implementation of them (like Duress Password). Security innovation makes big moves that changes the priorities of adversarial groups wishing to target us. For a real world example: Cellebrite, an Israeli mobile forensics firm using exploits to target iPhones and stock android OS devices for forensic extractions recently opened up a job application for researchers who have an expertise in PAC and MTE, hardware-based exploit mitigations GrapheneOS notably takes advantage of:\n\nhttps://archive.is/BKnl4\n\n![](https://m.stacker.news/54906.png)\n\n`(Does this mean Cellebrite is interested in exclusive targeting for GrapheneOS in particular? No, other platforms could use MTE as well - but it's only widely used, and in production, in GrapheneOS. We are also referenced in their internal documentation published by us. We are virtually certain we are group of interest.)`\n\nThe defence strategy is designed to target vulnerability or attack groups rather than focus on individual attacks or proof-of-concepts. Doing the latter only helps dealing with what's known or already patched and is an attitude that provides little awareness or consideration of unknown vulnerabilities or in-the-wild attack campaigns. Well-designed security features or design choices can make overall exploitation of certain vulnerability groups harder or impossible. How they are prioritized is based on the most dangerous and most common types of exploitation in the threat landscape right now.\n\n### GrapheneOS threat modelling brief\n\nThreat modelling is the evaluation of risks and the countermeasures or remedies of the risks. Risk means potential uncertainty that compromises the security of our system, there doesn't necessarily have to be a vulnerability for a risk to exist either. Risks are based on known security trends, and what is considered a risk to act against is based on evaluating what we develop, what could go wrong, and what we know in the threat landscape that could influence our judgement.\n\nThe most dangerous threats would be:\n- Remote (from distance, i.e. the Internet) exploitation\n- Categories of vulnerabilities that contribute to most critical vulnerabilities (like memory corruption)\n- Physical access / proximity attacks\n- Compromise by third party\n\nLet's review the market behind remote exploitation:\n\n#### The Threat Market\n\nGoing back to what we said about the popularity of targeting mobiles, how do we know that mobile platforms are the most desired platform for malicious actors? The price tags for targeting the platform increase as the devices become more secure, smarter, and complex. Targeted exploitation for smartphones is a massive business and there is a huge industrial complex of companies trying to discover exploits to sell them off as commodities. This is a multi-million dollar industry with very high-paying customers in governments or the elite class. Companies in these industries may hack for different reasons, they can be cyber-arms dealers who sell malware as espionage tools like NSO Group, or forensics companies leveraging exploits to sell data extraction capabilities to 'law enforcement' like Cellebrite and MSAB. \n\nThis exploit market has always been high-demand. Alongside companies who sell tools leveraging exploits, there are companies who act as a broker, offering money to people who will give the exploits to them instead of the affected party so they can sell that exploit to their partners. Zerodium, OpZero and Crowdfense are some examples of popular exploit brokers. The best exploits that could meet any objective are worth payouts of millions of dollars, typically above the highest bounty that would be paid out by the affected software's developers.\n\nIf we take a look at some scopes of bounties from exploit broker companies, we can see just how much the price of the capability total compromise of mobile devices can cost. For an Android Zero-click full chain compromise, Crowdfense offers up to five million dollars, with Zerodium and Operation Zero offering two and a half million:\n\n![](https://m.stacker.news/54907.png)\n\nIn these attack descriptions "Persistence" means the compromise continues even after a device is rebooted, "Full chain" (FC) can have different details per provider, but all universally agree that it is a complete, total compromise of the target and access to any device functionality. "Zero-Click" means an attack that requires no interaction from the user, for example tricking them to click a link. As pictured, Google provides Android bounties as well, which goes toward improving the security of Android rather than using attacks as commodities.\n\nThese high prices may seem surprising but are generally very cheap compared to the profits made from exploits that end up being commercialised. NSO Group are alleged to have sold their zero-click exploits for a $500,000 installation fee per client to manage the software with an additional $650,000 per 10 iPhone targets. Just one business client would be enough to get returns more than what Google ever offered for giving up.\n\nhttps://www.occrp.org/en/project/the-pegasus-project/how-does-pegasus-work\n\nWhat you will find is most of these vulnerabilities all have something in common...\n\n#### Memory vulnerabilities\n\nBefore going into the threat model, let's give a very brief and simple example on how GrapheneOS threat models for a single security feature:\n\n1. Firstly, we know the most dangerous threat the Android platform faces is remote exploitation of an unknown vulnerability, for example in targeted spyware campaigns. "Remote" means it can be attacked from a distance (i.e. from the Internet).\n2. Secondly, we know the majority of formerly unknown, exploited in-the-wild vulnerabilities on the Android platform happen via *memory corruption*. These vulnerabilities are about a weakness in software that allows it's memory assignments to be altered due to a software flaw. This flaw could then be abused maliciously because they can break out of security restraints due to the nature of allowing arbitrary code to be run.\n3. Finally, we know that memory corruption also makes up a majority of vulnerabilities in Android assigned CRITICAL and overwhelmingly make up the most dangerous in capability.\n4. Therefore, GrapheneOS should prioritize to deal with memory corruption flaws. \n5. So, GrapheneOS provides a hardened memory allocator, memory tagging, and additional hardening to remove attack surface involving memory unsafe code.\n\nSo now, let's go through this with more context:\n\nGoogle's Security Blog reported that "**Android 13 is the first Android release where a majority of new code added to the release is in a memory safe language**" and that in 2022, the year Android 13 released, was the first year where memory safety vulnerabilities did not represent a majority of vulnerabilities in Android. However, this does not paint the full picture on the severity of these bugs.\n\nTo understand what this means, *memory* means a type of storage on a computer for fast, volatile, temporary data for software to use, store (allocate), access and erase (free). Think of it quite literally like memories in your head you can immediately recall. In this case, operating systems and software store certain time-sensitive data about itself when in use to perform instructions faster. Programs are designed to allocate memory, which stores it in RAM to allow it to be used, and then *free* it, which erases it when it is not needed or programmed to be freed. \n\n*Memory safety* is a term to describe protection against software flaws and security vulnerabilities relating to memory management. If code is not memory safe, it means it is vulnerable to certain types of security errors, here are two noteworthy examples:\n\n- Buffer overflow: Memory being written beyond it's designed boundary which writes itself over other memory objects adjacent to it.\n- Use-after free: Attempting to use memory that was previously allocated that is currently freed.\n\nThese two security bugs can be used to exploit software vulnerable to them if malicious code is written within memory or by taking advantage of unexpected behavior or bugs caused by corruption. Enforced memory safety stops programmers from introducing memory bugs that could lead to memory corruption vulnerabilities. Some programming languages (like Rust, Kotlin, Java) check for memory errors and are deemed *memory-safe*, while other languages like C do not, which makes them *memory-unsafe*.\n\nIn 2022, Google's Security Blog also reported that memory safety vulnerabilities represent a disproportionate amount of critical severity vulnerabilities. Depsite only representing 36% of all total vulnerabilities that year they represented 86% of critical vulnerabilities, 89% of remotely exploitable vulnerabilities and additionally made up around 78% of confirmed exploited in-the-wild exploits on Android devices since 2014 as per their zero-days "in the wild" spreadsheet. While this figure is subject to change, at the time of this video being produced, Memory corruption has been the cause for almost *every* in-the-wild Zero Day on not just Android but WebKit and Chrome.\n\nhttps://security.googleblog.com/2021/01/data-driven-security-hardening-in.html\nhttps://security.googleblog.com/2022/12/memory-safe-languages-in-android-13.html \n\nRemotely exploitable vulnerabilities, such as code execution, allow attackers to have terrifying influence over their target's device, and memory corruption makes up a majority of exploits of this degree. They can allow breaking out of enforced security measures like the app sandbox, and because of the nature of the vulnerability allowing arbitrary code to be run, the attacker can design a payload to allow their target device to do whatever they need to meet their objectives. For most threat actors, surveillance is the objective for their attacks, and being able to do this remotely is sought after in the threat market because anyone who can get that capability is able to watch over anyone from any part of the globe as long as they have a network connection.\n\n#### Physical attacks\n\nOver the past year, GrapheneOS has looked at features and security enhancements for resistance against attacks from threats with hands-on proximity of the device. Forensics companies like Cellebrite, MSAB and Magnet are particularly interested in capabilities involving this scenario because their products are for clients who seize devices for the purpose of extracting data from them, like law enforcement agencies and governments.\n\nLet's simplify the threat model approach again:\n\n1. Firstly, we were long aware of these companies selling capabilities of stock Pixel devices in the public. However, their attacks didn't work on GrapheneOS and Cellebrite and MSAB confirmed this back then, and today.\n2. Secondly, at the start of the year we discovered more details on how MSAB's capability for the stock operating system worked. We were able to infer they performed a reset attack thanks to a boot firmware wiping memory on unsafe reboots and factory reset bypasses. A reset attack is an attack involving dumping memory to get sensitive information like password information to crack the device. (Vulns assigned: CVE-2024-32896, CVE-2024-29745, CVE-2024-29748)\n3. Finally, after reporting the vulnerabilities upstream to Google and adding additional protections early to reduce window of opportunity of MSAB.\n4. Therefore, GrapheneOS should look at features protecting against attacks with proximity.\n5. So, GrapheneOS adds a duress password functionality and adds a USB-C port control feature to disable the USB-C port or it's data lines entirely when the device is powered on.\n\n#### Third party threat / supply chain attacks\n\n1. Firstly, we were previously victim of an attempted hostile takeover attempt and escaped it, GrapheneOS is designed for this to not happen again.\n2. Secondly, we are aware of supply chain attacks allowing sophisticated and typical threats to push malicious updates of popular software to users to attack them.\n3. Finally, we are aware of the Pixel platform's features with protecting this.\n5. So, GrapheneOS uses them. Updates cannot be installed without being signed by GrapheneOS, even if the server is compromised, a bad update cant be installed.\n6. GrapheneOS provides no additional trusted parties by default beyond the OEM and GrapheneOS by having only connections to GrapheneOS and no bundled apps.\n\nGrapheneOS is designed with minimal trust to prevent influence from third parties with regards to network services like update servers. It also takes advantage of the Pixel platform's "insider attack protection" in the Titan M2 secure element which prevents malicious upgrades of it's firmware from being uploaded without the device being unlocked first. This prevents seizing a device, maliciously upgrading it and trying to get a way in from exploiting the secure element.\n\nGrapheneOS allows auditing the device from the Auditor app and also verifying the verified boot key hash on start-up in that appears in the install page.\n\n## Security of the GrapheneOS platform\n\nGrapheneOS holds hardware security requirements for devices it supports. This is because GrapheneOS directly depends on the hardware for many major features like MTE, USB port controls, and throttling of device unlocks by a secure element. If GrapheneOS supported less secure devices and was compromised on those devices, there would be a preconcieved notion that it is a fault of GrapheneOS as a whole which doesn't help with reputation.\n\n**Contrary to popular belief,** Pixels aren't the only supported device because they're the only device that has a relockable bootloader... there is a lot more to it. Here are some requirements most devices don't typically meet:\n\n- Support for using alternate operating systems **including full hardware security functionality**\n- Device support code updated to new monthly, quarterly and yearly releases of AOSP within several months to provide new security improvements (Pixels receive these in the month they're released)\n- Support for disabling USB data and also USB as a whole at a hardware level in the USB controller\n- Reset attack mitigation for firmware-based boot modes such as fastboot mode zeroing memory left over from the OS and delaying opening up attack surface such as USB functionality until that's completed\n- Verified boot key fingerprint for yellow boot state displayed with a secure hash (non-truncated SHA-256 or better)\n- Hardware memory tagging (ARM MTE or equivalent)\n\nAs of writing this **only Google ever steps up to provide these features for users**. And these requirements are important because functionality like this is what makes GrapheneOS a special offering.\n\n### Firmware security\n\nI was asked about this on Nostr, so I will explain the answer for them, based on my [GrapheneOS Forum post here](https://discuss.grapheneos.org/d/10150-not-your-average-why-pixel-thread/7).\n\nRisks of malicious firmware are often overhyped and misunderstood. Even so, hardware components on GrapheneOS devices have to be isolated by an IOMMU. Hardware devices interface with the software through drivers, which is where the majority of the attack surface for most hardware components comes from. Therefore, drivers need to be designed securely and have it be treated by the OS untrusted. Drivers being so privileged in desktop OSes like Windows is what makes certain firmware attacks so dangerous in those platforms. The OS relies upon the hardware and firmware to be able to contain components, but ends up responsible for managing that because it has control over the configuration of shared memory and the attack surface from the complexity of the interface and the OS side implementation.\n\nIf a component has DMA access, that needs to be isolated and the driver must be designed to treat the shared memory as untrusted, as it would do with other data. OS security relates to hardware components like radios and the vast majority of the attack surface is in software, not hardware.\n\nMany theories on malicious insiders and foul play are often unrealistic and too disconnected from the reality of real cases to the point it is completely made up. Attacks from firmware of hardware for commercial devices aren't widespread and provide questionable benefit for attackers beyond a persistence mechanism. They completely go against the utility of such a targeted attack by being widespread, as the success in such attacks in the past has came from how *little* people were attacked by it. The lesser the targets, the lesser the likelihood detection. Performing an attack this way is contradictory to the purpose of an attack. \n\nMalicious firmware embedded or upgraded in hardware _need_ an interface within the running software of the device to send information back to the threat is performing the surveillance, it doesn't provide much of a stealth benefit. Many cases of malicious firmware have a stage that involves using injecting malware in the operating system, and making connections to a server to perform the command and control stage of a cyber attack. This connection would be needed so the C2 could recieve instructions, or for the target device to send information about itself. **It must add presence into the operating system to access data from it, which makes it detectable**.\n\nThese connections or other indicators of compromise _can_ and _do_ be monitored and cybersecurity threat intelligence organisations use traditional forensics techniques to discover malicious firmware, the issue isn't down to how the target is performed, rather how small of an amount of people are attacked with it.\n\nTake an example of [CosmicStrand](https://securelist.com/cosmicstrand-uefi-firmware-rootkit/106973/#overview-of-the-infection-process), [MoonBounce](https://securelist.com/moonbounce-the-dark-side-of-uefi-firmware/105468/), and [MosaicRegressor](https://www.kaspersky.com/blog/mosaicregressor-uefi-malware/37252/) - three examples of malicious UEFI firmware rootkits (also known as bootkits), these bootkits all share the same characteristics:\n\n- The bootkit injects malicious software or exploits into the operating system on bootup,\n- This malware makes a constant connection to a Command and Control server over the Internet, and\n- The only purpose of the firmware in the attack chain is to enforce persistence (a consistent compromise of the target) during the attack.\n\nThe firmware have no direct idea on what operating system the device they are connected to is running, they have no ability to check the instructions that they are performing are actually _working_. What if you just ran an OS where this is just unable to run properly? What if you block the executables it generates? What if you block the C2 servers they connect to? They _need_ an internet connection, and certain firmware alone can't do that. They depend on the software and the network it's connected with to allow it, which means there are many ways to prevent such abilities if they came up anyways.\n\nMalicious firmware from the side of a malicious insider can still be very ineffective, how can you update and improve your operating system in a way that keeps the supposed backdoor functional for a long period of time, without breaking it when removing legacy code that may have unnecessary security vulnerabilities that get caught by the countless of groups? It would become a mess for the firmware developers and operating system developers to maintain. \n\nAn attack through this vector is also inefficient in comparison to just paying for a zero-click, remote full chain compromise attack for a few million dollars which gets you the same amount of information and requires less hassle and preparation to do.\n\nThese types of attacks are mainly limited to intelligence agencies and for what they may have in their arsenal in comparison, they are a extremely high-risk, but high-reward capability and requires taking extreme measures such as interdiction of a package with the target's device, performing a covert operation where they may need to sneak into their property undetected to get physical device access, or among other things.\n\nWe wouldn't trust a device we are confident had malicious firmware. \n\n## GrapheneOS and Me\n\nBefore I go into the post about GrapheneOS usage... every big post on here about GrapheneOS seems to make a small background about themselves, so I will put my situation here too.\n\nI am a technical person but also an introvert. I am interested in certain defence roles like forensics but uncomfortable with how that area of the industry works. I'd never, ever want to be a cop. I am a person who chooses his own or makes his own if what I can pick from is not acceptable enough for me. I am heavily interested in digital security and privacy, however, I also frequently use software that would probably get me lynched on certain parts of the internet (including this one) but I don't care because you aren't me. I only use what satisfies me and my personal or security requirements.\n\nI am not overkill in security or privacy practices unlike what some would believe. A lot of my actions are mainly a hobby or a research purpose instead, and I think a lot of what some people do is LARP-y and suggests a hidden incompetence. I only had to recently bump up my security requirements. Overall, I am uninteresting, and I don't believe I am worth the budget or time for my/a rogue nation. If I got hit with a stealthy cyberattack I am considering it a compliment. However, I do think I have higher requirements than most because of the assets I hold and \n\nI don't need to make sacrifices on deleting something popular because I likely don't use it and also that I don't really keep my eggs in one basket. For example, YouTube is the most I've ever used Google for in the past 8 years. I don't use the other invasives that much either and most of my usage of certain platforms is just down to GrapheneOS chat content moderation.\n\nWhen this post you're reading was published, I have been a GrapheneOS user for 5 or 6 years. I have observed the work for longer than that, but never had the chance to use it until I had a first device to run it a year later. Since then, I have been using GrapheneOS as a daily driver on three different generations of Pixels and I have had no regrets with it.\n\n### Why do I (or others) use GrapheneOS?\n\n**Because I like it**, and that's all the reason you need. I could probably meet my same requirements with an iPhone and Signal, but security isn't limited to people who believe that they are targeted or that they need to have some big, extraordinary reason to use software. People use GrapheneOS as a tool for personal freedom or for some other reasons indifferent to mine or anyone else in the team.\n\n"Degoogling" isn't really something we're focused on, even though we are likely more "degoogled" than other operating systems. We avoid that term in our project because we aren't removing Google apps and services for some ideological reason, they aren't bundled because we don't bundle any additional software like that and it is down to the user's choice to install them. I personally believe it can unintentionally write-off what GrapheneOS is about, since that being the first word they hear of could think GrapheneOS is just an Android OS free of Google rather than a mobile OS designed for security and privacy.\n\nOther users may use GrapheneOS for other reasons, they may have been a victim of a targeted cyberattack, they may hold valuable information, they may have cryptocurrencies they want to protect. GrapheneOS helps with all of those things.\n## How does final use GrapheneOS?\n\nI try and use GrapheneOS as a mostly ordinary person, I do use a SIM as I travel a lot. Although here are some standout behaviors:\n\n- I use the Alpha channel for everything. This is not recommended for all users, but it gets me updates the fastest. You can individually choose to have some apps be updated through Alpha and not the OS.\n- I mostly run apps closely built for GrapheneOS users in mind.\n- I don't use the owner profile at all except for a VPN, everything is running in other profiles with unique credentials.\n- I have duress password enabled thanks to an incident, my auto-reboot is set to 30 minutes and I have all exploit mitigations and security settings enabled by default, for things like DCL access or memory tagging, they are disabled for individual apps on edge cases.\n- I use the Markup app installed in the App Store app, way better screenshot editor, try it!!!!\n- I predominantly get my apps from Accrescent. Almost every app I use except for some edge cases which I update through other sources.\n- I don't use the Play Services, I keep edge cases for my old profile. \n\n### What apps does final use?\n\nThe most important app for me is [Molly](https://molly.im/f), a hardened Signal fork I use to talk to the people around my person. It comes with improved battery optimisation when no Play Services are installed but also provides a database encryption feature to encrypt the message database. I also use other messengers like SimpleX when the phone number requirement is a non-negotiable.\n\nOrganic Maps is another important app, it's a perfect FOSS maps app that works offline. I also use it quite often and this app and Molly are both available on the Accrescent app store. For media I use InnerTune for music and Libretube to watch YouTube.\n\nFor LN I use Phoenix, no particular special preference. I just care about self-custody, it's quite maintained and just works for me! I use Amethyst as my Nostr client as that's what I used for a long time.\n\nFor security, I use Aegis as my 2FA manager and KeePassDX to manage passwords, I also use App Verifier to check legitimate apps as well.\n\nI use Gboard with internet permissions disabled as a keyboard, since apps across profiles update globally, I have the Google profile responsible for updating it.\n\n### How would a high-risk individual use GrapheneOS?\n\nThese details should tell you that if you consider very well funded groups, like sophisticated adversaries with limitless physical access as a part of your threat model, then you should: \n \n- Use the most recent phone you possibly can \n \n- Upgrade your phone to the newest possible generation as soon as possible after release if you can help it. \n \n- Use the latest version of GrapheneOS ASAP. Do not delay. \n \n- Use a strong, high entropy passphrase to make bruteforcing the device credential impossible if secure element is ever exploited. \n \n- Set GrapheneOS auto reboot time accordingly so encrypted data goes back at rest when the phone reboots, which makes AFU exploitation impossible. The lower the better. \n \n- Enable duress password. Set it to something easy to trigger but not easy to misfire. \n \n- Turn your phone off in a high risk situation, and trigger duress when in a duress situation. \n \n- Disable your radios when not using them (turn off Wi-Fi, use airplane mode, disable NFC, UWB etc.) for attack surface reduction. \n \n- Set an appropriate USB port control or disable the USB port so they aren't able to connect a device to it. \n \n- Use user profiles (application data and user files within profiles are stored encrypted with separate credentials). \n \n- Enable upcoming GrapheneOS security features like second factor authentication unlock when they come out. \n \n- Communicate only over secure messaging. Some apps like Molly (Signal fork) have features to encrypt the app storage with a passphrase, which access to that app's data impossible even when a profile is compromised providing the passphrase is secure enough. \n \n- Become disassociated to data. Learn to only keep files or other data as long as it is necessary. If you have no use for them for a long time, then back it up elsewhere, encrypted. Delete anything you don't have a use for in the present. Your data is not your memories. \n \n- Remember that you are only as secure as the people you trust. If they do not meet your safety or security requirements, don't enable them to do things that could cause trouble.\n\n## Abrupt conclusion\n\nSo, I guess this is it... it's a super long post and I'd be surprised if anyone read these notes in one sitting, but, I am grateful to all of the GrapheneOS supporters and fans on SN and Nostr. I was one of you as well and I hope I can make content like this but for other subjects (and preferably, less rambling), but the quality of posting is you improve over time. I imagine the quality suddenly dropped halfway as this is a super long draft I slowly am losing my patience to read from top-to-bottom, hahaha.\n\nAfter burning my keys, I am slowly coming to Nostr again on a new npub, check out my profile for that.\n\nIf you are wishing to read more about technical details of GrapheneOS I didn't provide, feel free to read my other posts:\n\nOverview of new advanced hardening on GrapheneOS version 2024083100 and later: \nhttps://stacker.news/items/670170\n\nREVEALED: Here's the Cellebrite Premium Device Support Matrix for July 2024: https://stacker.news/items/616858 \N 18177 \N 334432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3649290976471 0 \N \N f 0 \N 0 214073022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 199795 2024-07-14 13:32:50.274 2025-03-29 22:39:46.79 Let's compare some prices in Sats! I think it would be really cool if we compared the prices of some common goods after converting from your local fiat to satoshis. You don't have to add the country but if you don't mind/care that makes the info a bit more useful.\n\nI'll go first!\n\nSouth Africa:\n\n```\n 1lt Milk ~ 3800 sats\n 6 eggs ~ 7600 sats\n Fresh Rump Beef Steak per kg ~ 20000 sats\n```\n\nFeel free to post anything, doesn't have to be the same as mine.\n\nI'm using the Bitcoin price at the time of the post ~ $42200 \N 2233 \N 199795 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.8874476906765 0 \N \N f 0 \N 0 139767380 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 99144 2023-12-15 22:26:41.856 2025-03-29 22:39:46.79 The Collectible Culture ## **Future of Collecting Stuff** 💼\nThese past few days I've been contemplating the **future of collecting** on a Bitcoin standard. How the fiat gains that have been associated with 'rare' collections may soon be a relic of the past. And the impact that would have on industries that rely on us collecting more.\n\nWe may see more collectors like car auctioneer Simon Hope, who [sold his 3,000 matchbox car collection in 2019 for £300,000](https://agilitypr.news/Personal-Collection-of-3,000-Matchbox-Ca-7946), cash-in on their projects. What had taken 60+ years of passion, netted a nice monetary premium in the fiat money era. But what about in the future when the goods depreciate more than the money it took to acquire them? Simon is used as example, because although he is NOT likely to have bought any Bitcoin with his collection, he had his own classic car auction business and so also works in a parallel 'collectible' industry as we'll explore below. By accumulating a collection like that he would also have insured-against it for fire & theft. Whole industries depend on the world collecting more stuff, so how will they evolve on a bitcoin standard?\n\n![](https://www.business-money.com/wp-content/uploads/2020/01/Matchbox-Simon-Hope-300x253.jpg)\n\nI wouldn't go as far as saying *"you'll own nothing and be happy"*, but perhaps the WEF were onto something when considering pricing of big-ticket items in Bitcoin. Collecting *stuff* for monetary gain may only make sense on a fiat standard. When the concept of saving is destroyed by inflation. \nToday, not only is saving making a crucial comeback but millennial minimalism is a definite dynamic to deal with for collectors.\n\n![divider](https://m.stacker.news/23796)\n\n## **The Collection Culture** 💎\nDuring my search on this subject I stumbled across [this external article](https://www.eql.com/media/collector-culture-insights), examining the role collecting has on our culture and our minds. It explores the positive effect on levels of happiness, nostalgia and even our sense of community & belonging from collecting stuff. It's worth a quick read. But my question is: what happens to collecting in the future, if the monetary benefits are removed? Or will they even so?\n\n> According to a [2022 survey](https://www.magnifymoney.com/news/collectors-survey/), 62% of Americans are collecting something, with **83% thinking their collectibles will generate returns for them in the future**. \n\nThis to me is the definition of a long-term cultural issue. Inflated expectations & emotions from inflated inventories & markets. How did we fix or overcome this? Or does it just come from obsoleting paper currency? I wanted to explore this topic further with you stackers the role that physical collectibles may have in out future and whether they will continue to exist like they do in our world today. So my question for you stackers out there is...\n\n### `what do people around you collect & why?`\n\n_**Note**: we're largely ignoring the role of digital collectibles as part of this post, given their value in our society is still very much up for debate. We're going to focus on a few physical collectibles in a hyperbitcoinised world..._\n\n\n![divider](https://m.stacker.news/23796)\n\n\n## 1 - Cars\n\n **`Market`**\nTake the entire car industry (not matchbox cars) as an example. Both used & new market values have been inflated in every country worldwide, thanks to the poor store of value properties of fiat. It feels like the hypercar, supercar, classic-car and now even "modern-classic" valuations are waiting for their moment in the mud. With many large collections worldwide. The largest car collection is said to be that of the Sultan of Brunei and his brother Prince Jefri, reported to contain over 7,000 vehicles.\n \nIn the last 20 years, some manufacturers have tended to only produce limited quantities of their most luxurious models. One reason for this is the manufacturer knows they will struggle to sell high numbers of their cars and having artificial scarcity of products boosts their brand. \n \nPorsche did this with the 918 Spyder. They knew that due to its $845,000 price tag it wouldn’t be a huge seller. So they limited production in 2013 to just 918 units. Today, you'd be likely paying in the region of $1.5million for a used model that someone has already thrashed. You may have doubled your 'wealth ' nominally, but U.S M2 has doubled in the same period from ~10 trillion to ~20 T. So go figure.\n\n![Porsche 918 spyder](https://static0.topspeedimages.com/wordpress/wp-content/uploads/jpg/201312/2014-porsche-918-spyder-8.jpg)\n \nCars are usually the ultimate depreciating asset, often losing [20%](https://www.kbb.com/car-advice/how-to-beat-car-depreciation/) of their value in the first year, if not the moment you drive it off the forecourt. But not in today's fiat world. Even electric/hybrid cars are now keeping the naturally-aspirated used car market afloat, creating artificial scarcity of new gasoline-powered units that people still crave. \n\n\n**`Costs`**\nThe used car market is stuffed full of trendy collectibles. Japanese modern-classics from the 90s in Europe have become the latest trend since 2020. Mainstream car media has recently recognised these as an "investment" rather than just a nostalgic niche. Previously they were priced much more accessibly. [This one](https://www.autotrader.co.uk/car-details/202311013557457?sort=relevance&advertising-location=at_cars&make=Honda&model=NSX&page=1&postcode=BA1%201BH&fromsra) as retro as it is in particular is going for roughly `1.15 BTC` in today's UK market 🇬🇧 . Roughly comparable to the fiat cost it would have been to purchase new in 1990, in nominal terms of course. \n\n![](https://m.atcdn.co.uk/a/media/w1024/f2258bc68d414aa3bfa553082450462a.jpg)\n\n**`Ponziconomics`**\nAs mentioned above, people are financing cars & using their existing collection as leverage to land their next slot on a limited run of new production vehicles. All to keep ahead of fiat inflation or because they believe they are building wealth with their hobby. People without significant incomes are also extending themselves beyond their means to become another 'car collector'.\n\n'Car collecting' is no doubt prevalent due to the passion involved for feats of engineering and technology. Yet it is surely also exaggerated because the prices of a select few cars are retaining more nominal value in the face of fiat debasement than others. Creating a rat-race and misaligned markets.\n\nAs perfect example was not from recently but in the U.K, a former polo-playing friend of the King called Lord Brocket, acquired a collection of around 40 vehicles, mostly Ferraris and Maseratis from the ’50s and ’60s. They were bought with cheap financing back when classic-car prices were increasing. When interest rates rose & values crashed in the early ’90s, he panicked and staged a break-in at his stately home, disassembling the cars he claimed had been stolen and seeking $5.6 million from his insurers but instead ended-up in jail. Perhaps we could read similar stories in the years to come.\n\n**`Materials`**\nThe proliferation of carbon-fibre in higher-end vehicles is also an interesting dynamic and perhaps another symptom of our distorted world. Yes the technology and means of production is improving but it has led to even fake-carbon being used in affordable cards or becoming an expensive optional interior upgrade. Gone have been the days of having easily-replaceable panels on high-end vehicles. Today we're seeing larger and more singular curved panels that create stealthy looks and seamless bodies - expensive to replace. Trends like this are meaning replacement parts are exploding, with some manufacturers adding significant mark-up to new parts and limiting production runs. That may mean we may need to get more handy repairing own stuff in future if prices, sizes & availability of parts prove problematic. \n\nCarbon-fibre today is even used in consumer bicycles. It may be an extremely strong and light material, but is it really necessary on a saddle or a headrest? There have been 52 years of R&D into the composite, but given how much time and energy goes into its production, will it be the preferred material of the future if performance weight-saving is no longer so necessary?\n\n**`Form-Factor`**\nAll cars today are very round & aerodynamic - something @k00b touched on ironically next to a living and breathing @Car in a [recent SNL episode](https://stacker.news/items/485860/r/davidw) . Calling for the need for more square cars. Box-like cars are perhaps already making a comeback, as we see with the 'modern classic' trend above. Cars are tools and will need to be far more affordable in future. Not an "investment vehicle" or potential penis enhancement. Yes motorsport and supercars will still exist, but we're living in distorted times as far as that market is concerned. Unfortunately many still in 2024 need to acknowledge that fact.\n\n**`History`**\nThis article on [pre and post-war car history](https://www.hertz.com/content/dam/hertz/global/blog-articles/automotive/how-ww2-changed-the-automative-industry/Traffic-in-NY-1943---header.jpg) I found to be fascinating. 1930s as a point of reference in time was a time of cars being great status symbols rather than just a means of transportation. The 1940s in the post war period saw more practical models with larger, broader, heavier & cheaper models like Jeeps getting traction, so to speak.\n\n![](https://www.hertz.com/content/dam/hertz/global/blog-articles/automotive/how-ww2-changed-the-automative-industry/Traffic-in-NY-1943---header.jpg)\n\nCollectors in their 30s today haven't yet witnessed a downturn in the car collecting market. And perhaps for that reason, exuberance may continue for some time. My mind draws parallels to Weimar Germany, when farmers were stockpiling farm machinery and tractors in order to escape the demise of fiat. Those people survived the worst during the boom-times but were left with immovable rusty tools when the printer was turned-off and demand for them dried-up.\n\n**`Future Outlook`**\nI would never downplay that cars are incredible machines, have personalities when we drive them nor the effects they can have on our mood or emotions. But with increasing numbers of millennials opting-out of car ownership and with @k00b's poll analysing our own usage of cars [here on SN](https://stacker.news/items/412580/r/davidw) , the future of car collecting remains somewhat uncertain.\n\n![divider](https://m.stacker.news/23796)\n\n## **2 - Real Estate**\n\nIt doesn't appear on the usual list of recognised collectibles, just given the unit cost involved, but real estate & housing is somewhat treated by the world today as a collectible. \n\n**`Market`**\nReal estate globally has a total value of [$379.7 trillion](https://www.savills.com/insight-and-opinion/savills-news/352068/total-global-value-of-real-estate-estimated-at-$379.7-trillion---almost-four-times-the-value-of-global-gdp) – almost 4x the value of GDP of every place on earth combined. Given the size of that market and the demand for enjoying new places to live and work, some are purchasing multiple properties to rent-out via AirBnB or because of the expectation of superior returns, amassing a 'portfolio' to perpetually live-off the system. Some are owning multiple homes for their own satisfaction, as an alternative place to say for lifestyle reasons. Both are admirable to do if you have the resources, but should we be treating real estate as a collectible or simply a store of value?\n\nThe estimated total count of second homes in the U.S. was 7.2 million in 2020, accounting for 5.11% of the total housing stock. But [demand soared](https://www.redfin.com/news/second-home-demand-dropping-april-2022/) for 2nd homes after that year suggesting some changing behaviours.\n\n| ![](https://www.redfin.com/news/wp-content/uploads/2022/05/second-homes-april-2022.chart_.png) | ![](https://www.redfin.com/news/wp-content/uploads/2023/04/Gen-Z-on-Track-With-Older-Generations-1.png) | ![](https://www.redfin.com/news/wp-content/uploads/2023/04/Millennials-Surpass-50-Homeownership-1.png) |\n| -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ |\n\nEven for the younger generations as seen below, 1st home ownership is [on the up](https://www.redfin.com/news/gen-z-millennial-homeownership-rate-home-purchases/) in the U.S, but so is Bitcoin adoption... so will the below trend hold?\n\n\n**`Costs`**\nMany places exist in the world where real estate can be bought for consistently below the costs of the materials/commodities to produce it. Typically these places are ones that have been ravaged with hyperinflation or extremely high inflation, like Argentina or Venezuela for example. This might be more normal elsewhere where it not for the incremental nature of debasement in most other places. Especially when you consider the carry-cost of maintenance, property taxes, depreciation and their immovable nature. \n\nHome ownership *should* remain an accessible aspiration for all, but likely not as a collectible. Take [this New York STUDIO apartment](https://nypost.com/2023/12/20/real-estate/new-york-citys-priciest-studio-just-sold-for-3-88-million/) as an example. It sold for **$3.88 million** back in September 2023, with the buyer being "a group that collects branded residences around the world.” Presumably they were just thinking about *Location. Location. Elation*.\n\n![](https://nypost.com/wp-content/uploads/sites/2/2023/12/dbox-shvo-73951552.jpg)Back on 1st September 2023, that "pod" cost `149 bitcoin` to purchase, given that 1 BTC was ~$26,000. At 691 square feet, it's roughly the size of about 3x one-car garages. Meaning that property worked-out costing roughly `0.215 bitcoin` per square foot or $5,615 🤡 \n\n**`Ponziconomics`**\nThe entire industry (in many countries at least) is dependent upon the willingness of banks to lend 80%+ of the value of the home. And to do so at increasingly affordable (low) rates. House prices in the U.S. when priced in Gold may not have moved much since the 1970s but priced in Bitcoin they are almost certainly going down and becoming more accessible.\n\n**`Materials`**\nLow-cost materials have been increasingly sought for decades now. To make it cheaper to construct and to try and keep some sort of access affordable. Gone are the days of building a house out of brick, let alone materials like sand stone. \n\nThe choice for construction today seems to be concrete (if you can afford it), shipping container (if you can't), pre-fabricated wood (for speed of construction) or some sort of 3D printed material (if you are living in the future). Although as @BlockchainB found this week with [his SN post](https://stacker.news/items/493711/r/davidw), they're even 'shipping us' luxury container homes now, somewhat of an oxymoron.\n\n**`Form-Factor`**\nThe idea of owning your own large piece of land and a beautiful house "in the sticks" was an affordable aspiration for many. Today we have settled for box-like cold industrial buildings to call our homes. Extrapolating out to the future it is easy to believe that claustrophobic pods can come to cities near you. However with sound money at the helm, we will likely put a stop to that coming to pass.\n\nToday, homes too are increasingly decorated too with dull colours to please would-be new buyers or renters. The characterless culture is evident for all of us. I'm not sure any of us can debate that fiat architecture today vs on the gold standard has nosedived. Real wealth to fund construction of our buildings has vanished. There may be a lot of construction and condos in the world and lots of people making money on paper, but could it be that real wealth in the world is lower than ever? Could it be that we can actually afford less, in spite of making more paper?\n\nPerhaps the secret to this thing we call life is to just start collecting "classic houses" which were built with these materials? There's got to be a better way 🫠`\n\n**`History`**\nSome people like Lyn Alden compare today to the 1930s / 1940s era. The 1930s was a decade defined by the Great Depression, which deeply affected the housing market, causing prices to plummet and leading to a sharp decrease in home ownership.\n\nThe Depression also caused a decrease in construction as fewer people could afford to build or buy homes. As a result, the stock of available housing decreased while the demand for housing remained high. This led to widespread homelessness and overcrowding, which became one of the most visible problems of the Depression era.\n\nThe 1940s were a decade of recovery from the depression and war, including for housing. After a sharp reduction in construction & homeownership during the 1930s, building started to pick up again in the early 1940s. Although the world's resources had been very much exhausted making it harder to source the materials for home building during this time. \n\nThe median U.S. home value back then was $2,938 – over 30k in today’s U.S. dollars (apparently). Despite the increase in construction, there remained a shortage of homes due to the population growth of the previous two decades.\n\n**`Future Outlook`**\nWith the median average U.S. home price not at $30,000 today but at $417,700 instead, many people I speak to today are waring of buying larger houses using debt, given that a) there are all-time high valuations, b) interest rates are continuing to climb and c) some of us enjoy staying nimble on location. Many have already bought since 2020, locking-in artificially low interest rates and bravo if you are one of those. If the parallels with history run true, you may need to conclude we have been living through a silent depression that is papering over the lack of housing.\n\nProperty collectors (i.e. corporates who need somewhere to store their excess cash reserves) when faced with that fact also need to decide their favourite collector's item. Keep investing in housing, despite households having cold feet simply because of the lack of new housing. Or to invest in R&D or a new asset class entirely... that is far outstripping the nominal returns of fiat depreciation. Real estate will be an interesting market to watch in the years ahead. Particularly priced in Bitcoin.\n\n![divider](https://m.stacker.news/23796)\n\n## 3 - Art\n\n**`Market`**\nArt is somewhat of an indulgence today. Art will always provoke thought and individual interpretation as well as offer a means for expression for its creators. Its a reflection of and has a strong influence on our ~culture also.\n\nThe art market is today a huge market for collectors, with an estimated total value of [$1.7 trillion](https://caia.org/blog/2021/07/22/investing-art-market-17-trillion-asset-class) . Inside the collectible market (including jewellery, watches, sports memorabilia, collectible cars, wine and more) art accounts for roughly 75% of total sales, with dealer & auctioneer sales totalling [$65.1 billion](https://www.artbasel.com/stories/seven-key-takeaways-from-the-2022-art-market-report). Digital art accounting for [3%](https://www.economist.com/culture/2023/11/30/museums-are-learning-to-love-nfts) of high-net-worth buyers’ spending and 8% of their collections for reference.\n\nCollectors possessing art will usually do so because it calls to them or their personality, it's something they associate with. However much of the art we see today is commissioned specifically for museums or the auction house or the price appreciation. I would argue we have witnessed the over-commercialisation of mainstream art today. We can find countless examples of more and more outlandish displays in the art world, in order to attract wider audiences and larger sale prices (as this chart shows below).\n\n![](https://caia.org/sites/default/files/styles/full_width/public/2021-07/Graph%201.JPG?itok=YX1BR95a)\n\n\n**`Costs`**\nArt *can* be affordable and purchased for any budget but we will focus on the higher-end of the market. Many of you may be familiar with the anonymous artist Banksy. Typically his art is found as graffiti in public places in the U.K. His simple painting "The Girl" was created in 2006, with a device inside the frame. It went to auction in 2018 and fetched £1 million ($1.4 million). At the auction, after the hammer went down, him/his team initiated a switch and activated the shredder inside the frame. Seconds later that piece of artwork would become worth more than 10x more and would be renamed "Love is in the bin". The owner has since gone-on to re-auction it off and in October 2021 it [sold once more](https://www.nytimes.com/2021/10/14/arts/design/banksy-art-sothebys-auction.html) for £18.5 million ($25.4 million). Banksy has also sold a bunch of 'limited edition' prints, setting an [all-time record](https://banksyexplained.com/issue/girl-with-balloon-graffiti-legend/) for 13 unsigned prints at auction for $400,000.\n\n5th October 2018 - $1.4 million / `215 bitcoin` \n14th October 2021 - $25.4 million / `453 bitcoin`\n\n![](https://thefader-res.cloudinary.com/private_images/c_limit,w_1024/c_crop,h_532,w_1023,x_1,y_79,f_auto,q_auto:eco/GettyImages-1051973478_mtia2e/GettyImages-1051973478_mtia2e.jpg) \n\n---\n\n**`Ponziconomics`**\nTake Damien Hirst as another example, one of the most wealthy and recognised artists of today. From the 1,400+ paintings he’s made, about 25 he painted himself. [This article]([https://www.businessinsider.com/why-damien-hirst-is-controversial-2013-6?op=1](https://www.businessinsider.com/why-damien-hirst-is-controversial-2013-6?op=1)) is a great read for those interested. The rest of his work is all done by assistants, graduates & upcoming talented artists without the recognition but all the talent. He doesn’t do it himself because, he can’t “be f*%$ing arsed doing it”.  His $78 million diamond-encrusted skull was made by royal jewellers [Bentley & Skinner.](http://www.bentley-skinner.co.uk/heritage) If this not "peak-fiat", when will this end?\n\nHirst does at least apparently sign his work, but when examining it viewers need to be appreciating his vision or ideation, not his own creation or execution. And he is not alone in this approach. Many other successful artists of today do the same. Putting-out pieces not of their own making, simply to scale and maximise their personal brand and bank balance in today's wonky world. \n\nHirst has cashed in on the NFT craze in recent years too by burning the physical versions of “his” paintings, at the request of the digital owners. The state of art & economics today. Burning physical products to falsify value and scarcity. If that doesn't scream of a society desperately grasping for an actual store of value, I don't know what does.\n\n \n**`Materials`**\nToday, artists are branching out much more into the physical world than just mere paintings. Creating statues out of resin, concrete and formaldehyde-filled actual animals. Gone are the days of forming structures made of more expensive materials like marble, clay or brass. Cost & production quality is irrelevant today and so is therefore best avoided. Sensational story-telling is everything.\n\nArt is also moving digital. The economies of scale in the digital world to swap-out and create variations of the same piece of content, are huge. It allows artists to mass-produce content like Hirst would have dreamt of decades ago. Is it any surprise to see us clamour for zero-cost JPGs and PNGs without a true anchor of value?\n\n**`History`**\nThe governments around the world provided significant support for art in the 1930s, employing thousands of mural & canvas artists, at the peak of the Depression and beyond. The people needed to be ~~distracted~~ entertained. \n\nMany professional & amateur artists created works in response to the circumstances they faced. Such creativity could be interpreted as the necessary expression of self-preservation. A means to remain sane. Wage workers were placed [front & centre of mainstream art](https://82nd-and-fifth.metmuseum.org/perspectives/articles/2023/9/the-art-of-the-great-depression). Images that pitted industrial machines against people invoked Karl Marx’s theory of exploitation under capitalism. e.g. in communist artist Hugo Gellert’s 1934 _Das Kapital_.\n\n![](https://82nd-and-fifth.metmuseum.org/-/media/images/perspectives/2023/9/art-for-millions-intro-article/gellert_prints_1520.jpg)\n\n> Printmaking became the medium of choice among activist artists, due in large part to its capacity for **producing multiple impressions of the same image**, enabling them to disseminate their political messages to a broader audience. \n### Sound familiar at all? 👆\n\n\nArt also needed to become political in the 1940s, not just profitable. Yet during the global conflict of the 40s, the art market experienced a massive boom in occupied countries. Its discretion, the inflation-proof character, the absence of market interventions and the possibility to resell artworks abroad meant it was viewed favourably. Dutch art even during 5 short years [rose 5x in real terms](https://fokum-jams.org/index.php/jams/article/view/6) , thanks to German top officials purchasing abroad. Belgium also experienced a similar situation. [Newspapers reported](https://artemundi.com/art-market-boom-during-wwii-with-drouot-auction-house-as-case-study/#ft4) the “abundance of sales”, the “firmness of the Art market” and an “intense activity”.\n\n![divider](https://m.stacker.news/23796)\n\n## 4. Fashion\n\nFashion is a $2.5 trillion industry. If fashion were a country, it would be represent the seventh-largest economy in the world according to [McKinsey](https://www.mckinsey.com/industries/retail/our-insights/state-of-fashion-archive). Since the 2000s, the fashion industry has doubled.\n\nIf we look at the watch industry it is worth [US$ 71.1 Billion](https://www.researchandmarkets.com/reports/5946946/watch-market-report-type-quartz-mechanical) of that. The watch market went crazy after 2020, Rolex watches particularly, but are since coming back down to earth. There's an entire [Rolex price index](https://watchcharts.com/watches/brand_index/rolex) viewable here for those interested compiling of the top 30 models.\n\n![RolexWatchChart.png](https://m.stacker.news/25334)\n\n**`Materials`**\nWatches have increasingly digital dials today, with fewer and fewer moving parts inside. In the early days of watchmaking, artisans painstakingly crafted each and every component by hand. Up until around the twenty-first century, elements were made of materials like precious metals, chrome-plated brass, and then stainless steel. [Here are a few materials](https://www.gearpatrol.com/watches/a546814/guide-to-watchmaking-materials/) that have been used over the years.\n\nIn fashion, we've gone from using natural cottons and to fiat fabrics like polyester. The production of polyester, used for much cheap fast fashion, as well as athletic-wear has increased [9x](https://news.climate.columbia.edu/2021/06/10/why-fashion-needs-to-be-more-sustainable/) in the last 50 years. \n\n@Natalia did a great [SN post](https://stacker.news/items/376570) on her 'maker' experiences in Turkey, one of the powerhouses of the world for clothing production. Crafting and weaving many natural materials using largely forgotten traditional techniques. Because today clothing has gotten so cheap to manufacture at scale, so easy to order at speed, it is now easily discarded after being worn only a few times. One survey found that 20% of clothing in the US is never worn & in the UK it is closer to 50%. I'm sure that's not the case for the typical bitcoiner.\n\n**`Ponziconomics`**\nBalenciaga as a brand and business is the epitome of fiat. Benefiting from the critical press it receives. Not only is fashion full of seasonal and generational cycles, it’s full of social experiments. And they don’t get much more experimental than balenciaga who have created over the years 'products' like:\n- the most expensive trash bag at [$1,790]([https://nypost.com/2022/08/04/balenciagas-most-expensive-trash-bag-in-the-world-is-1790/](https://nypost.com/2022/08/04/balenciagas-most-expensive-trash-bag-in-the-world-is-1790/))\n- a bracelet ‘designed’ as a roll of clear tape, priced at [$4,400]([https://www.moneycontrol.com/news/trends/a-tape-inspired-bracelet-is-balenciagas-latest-creation-and-the-internet-has-thoughts-12535681.html](https://www.moneycontrol.com/news/trends/a-tape-inspired-bracelet-is-balenciagas-latest-creation-and-the-internet-has-thoughts-12535681.html))\n- a 'limited edition' run of destroyed shoes for [$1,850](https://www.teenvogue.com/story/balenciaga-full-destroyed-sneakers-deliberately-distressed-aesthetic-sustainability)\n- crocs on heels for [$625](https://www.highsnobiety.com/p/balenciaga-crocs-high-heel/)\n- an [$88](https://www.highsnobiety.com/p/balenciaga-crazy-items-releases/) white coffee cup\n\n\n**`History`**\nThere may be some parallels to draw - if we're moving from resource abundance to potential scarcity over this next decade. A trend for women that enjoyed massive popularity in the 1920s was that of [sportswear worn as daywear](https://fashionhistory.fitnyc.edu/1920-1929/). Sportswear had long been an acceptable form of casual-wear for men, but in the 1920s it also became acceptable for women. In the 1930s fashion saw a huge influence from Hollywood meaning women’s fashion evolved from the *boyish* look of the previous decade into the feminine [silhouette of the early thirties](https://fashionhistory.fitnyc.edu/1930-1939/). \n\nFashion during the 1940s was dominated by restrictions and rationing. Utility clothing and uniforms became mainstream for obvious reasons, bought with ration "coupons". Restrictions stayed in place until after the conflict until 1949 in some countries, given there were still [shortages of materials](https://fashionhistory.fitnyc.edu/1940-1949/) in most Western countries for some time thereafter.\n![](https://imgprxy.stacker.news/ZYLeOPCFwzqHG2Ex6pZNm4MIjcv0BSZFdK_wUBgEh3c/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng)\n\n## 5 - Antiques & Coins\n\nIf there's one of these categories of collecting that I appreciate the most, it is most likely the antique jewellery & coin-collecting industries. Not least because people need to put-in the real proof-of-work to develop an eye for a gem or a bargain, but they also need to understand their beauty in the materials, the condition & history.\n\nFurthermore, the community spirit that comes from auctions, garage sales, 'car boot' sales & more is substantial. There's also a strong P2P cash culture for transactions. Many owners may be of the older demographic today with houses full of stuff, but this market has been happening ticking-over for decades (without a bubble in sight). If anything items could be suppressed somewhat due to the sheer disinterest of younger generations. \n\nI did however appreciate [this story](https://au.finance.yahoo.com/news/rare-50c-and-10c-coins-to-sell-for-up-to-1500-look-at-your-change-054352246.html) that came out in recent days. A set of 10 and 50 cent coins "accidentally created" with imperfections by the Royal Australian mint in earlier decades that are now expected to sell for more than $1,500 due to their accidental scarcity. LOL.\n\n![](https://s.yimg.com/ny/api/res/1.2/Zlqe3uhYD8NnUX3picPB1w--/YXBwaWQ9aGlnaGxhbmRlcjt3PTk2MDtoPTUxNw--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/fe869b90-f17b-11ee-bfbe-65e64a280df9)\n\n***Tip*** - If you ever find yourself unlucky enough to be in the U.K, one of the best places to purchase historic jewellery is Brighton and a set of streets called 'The Lanes'. There you will find quality jewellery dating back hundreds of years, with incredible rich histories. If you find an item or ring that you like in the "old school" shops, they are often able to resize them in a matter of hours.\n\n![](https://i.pinimg.com/originals/8a/df/0b/8adf0b9c42a4ce7b11cfaafb1445602b.jpg)\n\n\nWith all that being said about collecting antiques, cars or art... the idea that we each need to each have a ~garage full of tat to stay ahead of inflation is... how should I put this... sub-optimal. I know some day when I least desire it, I am going to need to clear that garage out. When I either move to my 14th "investment" property specifically to enjoy a new view of Central Park, or need to make space for my Porsche 918 (which I secretly hope will double in nominal terms next year, because I set fire to the other 213 in circulation).\n\n![divider](https://m.stacker.news/23796)\n\n### Other Collectible Markets\n\nWe've only covered a few non-traditional collectors markets above, but the majority of people are collecting one of the below:\n\n![collectible-markets](https://m.stacker.news/25371)\n\n\n### Will we keep collecting stuff? 👀\n\nIf you made it this far, I owe you a few sats for a beverage. The intention of this post was to question ***why we collect things*** and whether we do so for our own personal satisfaction. Or do we do it to line other people's pockets and because all of the new products are being diluted worldwide?\n\nOn a Bitcoin standard our affordability for collectibles increases, but so does the opportunity cost of collecting anything besides satoshis. We could end-up with *more* high-quality items, rather than fewer lower-quality ones instead, but will we get the satisfaction from them?\n\nBitcoin may well see to it that we re-align our possessions around what brings us meaning and utility. It will also bring us simplicity and humility. But what about our collections?\n\nI leave you with this one great philosopher's wise words...\n\n> *Abundance is created through scarcity–first in the cultural mindset and then in resources.* - _`P. Lewis, 2024`_\n\n\n![divider](https://m.stacker.news/23796)\n\n### **Related Stacker News Posts** ⚡\n\nI also wanted to call-out some great Stacker News posts on parallel subjects of coinage, books, saving & scarcity...\n\n\n**Physical Products**\n- [What an Old Coin Collection Tells Us about Money from the Past](https://stacker.news/items/356989/rdavidw) by @Undisciplined\n- [What do you collect?](https://stacker.news/items/354486/r/davidw) by @cryptosensei\n- [Book Collectors?](https://stacker.news/items/356816/r/davidw) by @siggy47\n- [We should all try and be more frugal](https://stacker.news/items/254181/r/davidw) by @Signal312\n- [Embracing Constraints - A Weekend Discussion](https://stacker.news/items/174905/r/davidw) by @kr\n- [Romans and Self Healing Concrete](https://stacker.news/items/421413/r/davidw) by @KLT\n- [Buying high quality products](https://stacker.news/items/362242/r/davidw) by @boisechampion\n\n**Digital Savings**\n- [Bitcoin is Digital Scarcity](https://stacker.news/items/76346/r/davidw) by @dergigi\n- [Do not invest, collect satoshis instead (DCA)](https://stacker.news/items/49322/r/davidw) by @softglitter2d\n- [What's really scarce in btc?](https://stacker.news/items/336923/r/davidw) by @elvismercury\n- [Savings](https://stacker.news/items/343963/r/davidw) by @jimmysong\n- [Tools for Saving](https://stacker.news/items/473217/r/davidw) by @dk\n- [Abundance Through Scarcity Paradox | Parker Lewis](https://stacker.news/items/376139/r/davidw) by @kr\n\n**Other Related**\n- [How to change culture?](https://stacker.news/items/366187/r/davidw) by @k00b\n- [The “Next Big Thing” (after bitcoin)](https://stacker.news/items/461811/r/davidw) by @dk\n- [FMHY - The largest collection of free stuff on the internet!](https://stacker.news/items/386436/r/davidw) by @isolabellart \N 15200 \N 99144 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.9376516800812 0 \N \N f 0 \N 0 98833949 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 191840 2024-06-30 10:14:03.106 2025-03-29 22:39:46.79 A blog post is a very long and complex search query to find fascinating people. Reminds me of some recent conversations about community as pertains to SN. \n\n@k00b, @plebpoet, you may find it interesting. https://www.henrikkarlsson.xyz/p/search-query 19854 \N 191840 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.4544857382478 0 \N \N f 0 \N 0 171378127 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 214933 2024-08-14 18:37:15.031 2025-03-29 22:39:46.79 How do feel about negotiating? One my biggest ah-ha's from having to negotiate my rent this year, is that negotiating is the only way to come to a mutually beneficial price (in an extremely [thin market](https://users.ssc.wisc.edu/~mrostek/PalgraveRW.pdf)).\n\nPrior, negotiating felt imposed on me by the person I was negotiating with, as if they wanted to take advantage of me. But, in dealing with my feelings around it this time, I realized there's no alternative to negotiating if both parties seek to benefit maximally. Cooperation requires negotiation, and I want to cooperate, so I need to learn to enjoy it and not take it personally. If the goal is to maximize personal benefit, the worst case of a negotiation is a tie, which actually isn't so bad. And if the goal is to reach a fair arrangement, as you do in a long iterated game with a landlord, a tie is exactly what you want. \n\nIt's a simple thing, but I was wrong about it in a big way. I brought this up to someone and they suggested that it's likely a symptom of our culture. In the US, the markets are so standardized, commoditized, and "thick" that negotiation isn't part of most transactions. In other counties, where there aren't so many abstractions, we concluded negotiating is far more common and almost certainly not as distasteful.\n\nAnyway, how do you feel about negotiating? Do you like it? Hate it? When was the last time you negotiated something and how do you feel about the result? \N 21079 \N 214933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7162764987239 0 \N \N f 0 \N 0 77737442 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 131295 2024-02-23 16:04:20.486 2025-03-29 22:39:46.788 Success Story: An Established Business Is Now Accepting Bitcoin I described my conversation with an old friend and contract manufacturer who wanted his business to accept bitcoin in this post:\n\nhttps://stacker.news/items/793566/r/siggy47\n\nI am happy to say that as of last night both his wholesale and retail sites now accept bitcoin. Due to his specific business and use case, he thinks bitcoin will quickly represent a significant percentage of his revenues.\n\nThis transition all happened within a week. I thought sharing some of my thoughts and impressions might be useful for other stackers. \n\n### Long term personal and professional relationship. \n\nWe have known each other for 35 years. He is a friend and business associate. Despite talking to him about it for years, I did not orange pill him. He eventually found bitcoin on his own. It was a typical gradual NGU story coupled with debanking in his industry that is gradually making bitcoin a necessity.\n\nWe talked for hours, and together we got excited about his opportunity. He looked to me as an expert, but I was painfully aware of my technical limitations in trying to help a business set up a bitcoin merchant system. \n\nStill, I enjoyed our conversations. It was particularly gratifying to watch another person dive down the rabbit hole. He became obsessed. He was staying up all night, learning as much as he could, and enjoying every minute of it. We went to a local meetup, where he met newbies like himself and some OGs who gave him good advice. \n\n### Enter @DarthCoin\n\nI knew my limitations in trying to give my friend advice, so I put him in contact with @DarthCoin. Now, I know there are some stackers who have real problems with Darth. When I first discovered SN, we had a few run ins right from the start. He is an ornery old bastard. We still have our disputes. But, he is committed to bitcoin. He is generous with both his sats and his time to people who need either. \n\nIn this case, he made himself available to my friend, answered all his questions, and sent him in the right direction. \n\n### Just One Business\n\nI wonder how many stories like this are happening throughout the world? I hope a lot. I always preach price doesn't matter, but I'm not fooling myself in thinking that this bull run doesn't play a role. Of course my friend will need to convert some of his bitcoin to fiat to keep the lights on, but he's already trying to figure out how to operate on a bitcoin standard. \n\nIt has been a good week. \n\n \N 1773 \N 131295 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0052578789221 0 \N \N f 0 \N 0 240239402 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 208405 2024-07-31 11:58:47.201 2025-03-29 22:39:46.788 Is anyone mining using solar panels? ☀️ Finally solar panels in my house, bye bye electric oligopolies 👋 the thing is that I think it's a good time to start mining btc.\n\nMy goal is to contribute to the network while I learn and understand the whole process so I will not invest in equipment, earning satoshis in this case is the least of it.\n\nUnfortunately my technical knowledge is very limited and I would need to start from scratch. Any help? Thanks ✌️ \N 16754 \N 208405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.18945388133584 0 \N \N f 0 \N 0 163216828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 225442 2024-09-01 23:03:07.188 2025-03-29 22:39:46.788 Fiat Games on Bitcoin There's a saying about standing armies in peacetime, it's generally not a good idea. Wartime emergencies are one thing, but when you have a standing army during peacetime, they generally just get in the way because, like most armies, they crave action.\n\nIf you have a perfectly virtuous military, perhaps having a standing army is fine, but given the flaws of the human condition, there's bound to be some trouble. Many a revolution started with standing armies that felt disrespected and seized power when they could.\n\nI mention this because this dynamic is at play in the Bitcoin ecosystem, where a bunch of bored holders are starting to make trouble. They identified as Bitcoin Maximalist even as recently as a few years ago, yet got off the rails, pushing all sorts of idiocy like this ordinals/brc-20 stuff.\n\nThe problem with these people is that they crave action. They can't just sit back and enjoy the ride. They're the type that needs to always be doing something, good or bad. And let's face it, once you get that Bitcoin is sound money and have given your pitch to your friends and relatives, it's a matter of waiting things out and watching your fiat enemies float by the proverbial river. I've been in those conversations, they go around the same topics over and over again.\n\nAs a result, these people feast on news. Wow, Michael Saylor did something, or there's an ETF coming, or X or Y or Z is happening. They're all addicted to talking and rallying the troops and once you're bored of talking about the things that matter, there's a natural tendency to talk about the things that don't matter as if they were.\n\nI blame the BUIDL movement that emphasized building something, anything. It's an understandable attitude. Surely, doing *something* is better than doing *nothing*, right?\n\nThis is the error that every politician makes and it's high time preference behavior. X just happened and so you have to do something to react, *right now*. Or Y is a problem so you do something to "solve" it. The problem with these actions is that they're usually not well thought out and good actions, the ones that provide value, require some planning and research. But for the people with the BUIDL mindset, they just go and make something regardless of whether there's a need in the market or not. And the people addicted to action love this stuff because it's new.\n\nI'm old enough to remember the 2008 crisis and the $800B TARP bailout that came along with it. The idea was that there would be lots of "economic activity" in the form of "shovel-ready projects." 16 years later, there's very little in terms of real, useful stuff that got built from the program. Most of that money ended up in slush funds and the coffers of the Cantillon winners who magically doubled or tripled their billions in the decade or so since.\n\nThat mindset of "build whatever" is a fiat mentality. It's not "if you build it, they will come." There has to be value being added to real people and not just a good story about what's possible. And that's what we're seeing in the Bitcoin community. There's a lot of VC money floating around still and they'll put money into anything with a good story, even if it makes little sense.\n\nThe fact is, VC investment is a fiat vestige that's horribly inefficient. And the incentives around it are deeply misaligned. The VCs, even the good ones, will pump their bags. And once invested, it's very hard for them to be objective about anything and takes superhuman amounts of virtue to do what's good for Bitcoin and not for your fund. You'd hope those things are aligned, but every VC inevitably gets into the situation where they have to invest in something questionable.\n\nAnd invest in questionable things they have. This has been going on since 2013 or so with "investments" on "blockchain technology" and "ICOs" and "DAOs" and "DeFi" and "NFTs" and on and on and on. They may not even be explicitly looking to scam, but that is what they inevitably do. The pump and dump nature of tokens is such that they benefit the early pre-sale investors at the cost of the public, though to a large degree, this no longer has the returns it once had.\n\nThe flavor of the day is ordinals/brc-20 and unsurprisingly, a lot of VCs, even "Bitcoin-only" VCs, are invested in one or two already. That's because this is their model. They have to invest in a lot of stuff because their hit rate is so low. And diversification necessarily means you let the foxes into your henhouse. The "investment" ends up enriching scammers like the TARP bailouts did and the stuff that gets built ends up being largely useless.\n\nAnd really, that's who is addicted to action the most. It's the VCs. Unsatisfied with Bitcoin's insane returns (or lacking justification for their fund in lieu of Bitcoin's existence), they talk and talk and talk on clubhouse and twitter spaces and whatnot to pump their bags. Even if they don't have bags to push, they're always talking openly to people about what investments they should make. And because they are looking for places to put money, they become much less objective and will fall for anything with a good story.\n\nInvesting in a good story is not a bad strategy in the fiat world. The narrative wins over things that provide value as long as there's an overwhelming amount of money put in on the narrative side. And the money printer is ultimately run by humans who will put resources toward good stories because there's no hard reality of the market to deal with. In other words, you often don't have to win the market. You can win it later with some money-printer-induced advantages.\n\nBut in Bitcoin, things are a little different. We have to be a lot more choosy about what gets built because what fails is a lot of wasted time and resources. Worse, that which gets built which ends up scamming wastes even more time and resources and sets Bitcoin further back. The entire altcoin industrial complex and the billions wasted on them since 2011 are the vestiges of this build-anything mindset.\n\nBuilding has been very inefficient in the fiat world and unfortunately, we're having to re-learn what it means to build something that provides value. \n\nBack during the gold standard, Standard Oil once paid 33% in dividends in a single year. That's not price appreciation or profits, that's dividends, as in money that went straight to the shareholders in a single year. And that's not a huge outlier. Most years, they paid over 10% in dividends.\n\nNothing like that exists now because all profitable stuff has been arbed to death. Anything that profitable gets "investment" (read: debt) which ultimately scales the business but reduces profitability. Most businesses these days are zombies, living out a dead existence while sucking value out from everyone else through inflationary theft. And unsurprisingly, that is the state in which most altcoins currently continue.\n\nWhich brings me back to the issue of Bitcoin culture. The problem right now is that too many people build on Bitcoin the same way they build on fiat. They play by the same rules and systems which have caused the stagnation we see all around us. But as we're progressing toward a sound money world, these processes and the fiat games that they run on won't work. The building that people do will have to run on a different set of *values*, not the fiat ones like satisfying venture capital with good stories.\n\nThe sad thing is that most people would rather do something rather than nothing. The lesson of the last 11 years in Bitcoin is that building something that is hurtful is worse than useless, it's better to do nothing. \N 10608 \N 225442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7997880069377 0 \N \N f 0 \N 0 224188160 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 289690 2024-11-07 18:03:40.064 2025-03-29 22:39:46.788 🔮 Stackers Predict: September 2024 _(sorry, quite late this time)_\n\nLet's play some forecasting!\nSimply** predict something that will happen in September 2024.**\n\nThe forecast can can be quite generic ("bitcoin will go up")\nor quite specific ("Elon Musk will withdraw from his support for Trump")\n\nall zaps from this post will go to the best prediction made (judged by me) \N 616 \N 289690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1191809869928 0 \N \N f 0 \N 0 97965324 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 296871 2024-11-15 08:00:57.034 2025-03-29 22:39:46.788 What would you do if Bitcoin died tomorrow? This is one of Gigi's (@dergigi) favorite questions to bitcoiners, which he asked on a German [podcast](https://nodesignal.space/2024/03/09/nodesignal-talk-e171-bitcoinium-2-mit-gigi-und-ijoma/) last week.\n\nThe [hosts](https://twitter.com/actionslave21) answer: \nIf I were to be completely honest, I think I would fall into a very, very deep depression. And I would assume that all the contacts, all the friends that I have made, that I will lose them because there is nothing left to bring us together. And that's a very sad prospect at the moment. It hurts a bit that you asked me that question.\n\nGigi's answer: \nI would probably move to a regenerative farming community with all my bitcoin friends and live without money.\n\nMy answer:\nUnfortunately I have to say that it probably wouldn't change much for me. I'd be saving in stocks instead of bitcoin and hopefully still going to my local meetup and talking about what if bitcoin hadn't died. \N 21114 \N 296871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.54162299709805 0 \N \N f 0 \N 0 539848 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 190175 2024-06-26 20:05:22.37 2025-03-29 22:39:46.788 10101 - Public Beta TL;DR: 10101 opened its door for the masses. You find the major appstore links on https://10101.finance\n\n10101: \n- 🦀 A fully fledged self-custodial lightning wallet built with LDK\n- 📈 Enables Peer-to-Peer Perpetual Futures without counterparty risk powered by DLCs (Discreet Log Contracts)\n- 💲Allows you to hold USDP: Usd-over-Lightning - no token, no issuer\n- 🤖🍏 Available on Android and iOS appstores (outside of the US) - APKs will ship soon\n\n---------\n\n# Hey SN Community,\n\nWe're thrilled to share some fantastic news with you - as of today, 10101 is officially in Public Beta! 🎉\n\nAfter months of hard work, collaboration, and valuable feedback from our incredible community, we're excited to open up 10101 to a broader audience. The Public Beta is a crucial step in refining our platform and ensuring it meets the diverse needs of users like you.\n\n\n## 🌐 What is 10101?\n\n10101 is not just another lightning wallet; 10101 enables users to trade derivatives without counterparty risk. This is how trading was meant to be: peer-to-peer. \nWith the launch of our Public Beta, we're inviting you to be a part of shaping the future of 10101.\n\n## 🚀 What to Expect from Public Beta:\n\n- 🦀 A fully fledged self-custodial lightning wallet built with LDK\n- 📈 Peer-to-Peer Perpetual Futures without counterparty risk powered by DLCs (Discreet Log Contracts)\n- 💲USDP : Usd-over-Lightning - no token, no issuer\n- 🤖🍏 Available on Android and iOS appstores (outside of the US) - APKs will ship soon\n\n## 🚀 How to Join the Public Beta:\n\nVisit our website https://10101.finance to find the links for Android and iOS or below: \n- iOS: https://testflight.apple.com/join/WhwnPUh8\n- Android: https://play.google.com/store/apps/details?id=finance.get10101.app\n\nThank you for your support and enthusiasm. \n\nBest,\n10101\n🚀🌐🎊 \N 616 \N 190175 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.634522084562 0 \N \N f 0 \N 0 87040460 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 84697 2023-11-11 09:09:09.768 2025-03-29 22:39:46.788 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/359582) are the updates stackers shared from all their latest work projects. \N 17050 \N 84697 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.0287436789693 0 \N \N f 0 \N 0 95269379 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 25575 2023-05-24 11:59:33.94 2025-03-29 22:39:46.789 Lightning Everywhere \N https://tonygiorgio.com/lightning-everywhere/ 16387 \N 25575 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.6664093416125 0 \N \N f 0 \N 0 209588277 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 26012 2023-05-25 16:48:31.106 2025-03-29 22:39:46.789 SN is a lot of fun lately Seems like SN is inching towards critical mass—it’s been really fun lately. Great job, @k00b and team. \N 21829 \N 26012 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.5175851770832 0 \N \N f 0 \N 0 58477918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 287242 2024-11-05 14:45:17.46 2025-03-29 22:39:46.789 My recent BTC story: what happened with me yesterday (real story) So...let start it\n\nYesterday one of my friends (not a very close friend...like a buddy / mate) called me that he is in town, and it could be great to meet, and drink a good wine somewhere in the city.\nI was not very busy yesterday and long time no see my friend, so I accepted the invitation.\n\nWe met in a pub at the 18:00 PM, and ordered our first bottle of wine (the original idea was that we will drink one single bottle...but it becomed 2...hehe)...\n\nAfter the first 10-15 minutes with standard, and "warm up" questions (like "How are you?", what happened with you / your family after our last met?", etc), we started to talk about personal finances, especially about how with what methodes we plan to improve our financial situation and how to generate a passive income on short, mid, and long term.\n\nMy friend talked about gold and property as investment. His idea is, that the gold is the most important investment, with the higher return in the future (mid-long term), and proerty generate some monthly income. He have a 50-55 square meter rented apartment in the city, and he get around 400 Euro monthly.\nI suggest him, to invest atleast a part of these 400 Euros (because it does not interfere him daily life and lifestyle) in Bitcoin. He was completely skeptic about, and told me that it is just something virtual, and never will be a "global accepted" payment method...and can be manipulated...and it is a ponzi scheme ... and he doesn't trus in BTC, because it is intangible...etc, etc...\n\nAnd it started here our discussion about "just Bitcoin", and lasted around 6 hours :)\n\nI started to talk him about characteristics of BTC, and about the advantages of blockchain...\n\nThe most interesting thing for him was the finite supply of Bitcoin...He told me that 21 millions is not much, and it exist around 60 millions people who own more than 1 million $, and if this "ponzi asset" will be mediatized the price will go extremely higher, because of rich man and institutional investments...\nThe second aspect he liked it, was that the "blockchain never forget", and every transaction is coded and encrypted, and anyone can see / verify it, because it is open source...\n\nAfter the second bottle of wine, we decided to go home, but we agreed on our next meet when he will come in my city next time (in around 2 weeks), and we continue the discussion about Btc...\n\nHe was 100% skeptic about Btc before our discussion, and he become 70-80% skeptic after (atleast I think)...\n\nAs a last sentence, he asked me: if I will buy some BTC to gain more cash, we will be the same? And I replied with the golden sentence:\n"You buy Btc to make more $$$, and I buy Btc to exit my $$$"...we are not the same ;)\n\nTo be contiunued... I will make a post here about our next meet...hopefully very soon :)\n \N 1006 \N 287242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5752894843707 0 \N \N f 0 \N 0 173895727 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 303630 2024-11-21 17:05:35.058 2025-03-29 22:39:46.789 Getting Started with Alby Hub First of all, let’s answer this question that many newbies were asking me: What is Alby Hub?\n\nAlby Hub, is a simple LN node interface, with nice NWC functionalities to connect various LN services and be used “on-the-go”. It is NOT a LN node in itself but is offering tools to manage the LN node behind. Is like LNbits or Zeus.\n\nYes, I know, [Alby team already have a nice documentation page](https://guides.getalby.com/user-guide/v/alby-account-and-browser-extension/alby-hub/getting-started) about this, their Github repository is also well documented (from there I was inspired too), but with this mini guide I want to bring this information to more people, especially to my readers that maybe will find a bit complicated to read all those instructions. Also my guide is dedicated to a specific setup, that few are talking about: the advanced mode setup.\n\nAlso [BTC Sessions made a nice video tutorial](https://www.youtube.com/watch?v=2Z1BzwxdP4I), but that one also is taking the simple path of using the Alby Cloud and not the “advanced” path of managing yourself the LN node behind the Alby Hub.\n\nSo let’s get started with explaining the modes you can run Alby Hub:\n\n- using Alby Cloud, migrating your existing custodial Alby account\n- using a VPS / hosting service with Alby Hub, pointing it to your home /remote LN node\n- using a new account, running Alby Hub on your local PC, together with your own LN node. This method also could be run as standalone LN app or as a server, depending on how is your day to day usage.\n\nI was testing (almost) all funding sources for Alby Hub and I will make a classification. I have to mention also that you can run it as a “private node” (not routing) or as a public node (routing) with some more complex steps. In this guide I will talk only about the “private” mode, mode that can be used by all newbies that are not so familiar with the complexities of running a publicly exposed node (domains, SSL certificates, router ports etc).\n\n![](https://m.stacker.news/54344.png)\n\n### BASIC REQUIREMENTS\n\nWe consider you are a simple user, that do not have any (desktop) LN node, nothing, just want to run in a self-custodial way a simple LN node for your personal needs and maybe later giving some sub-accounts to your family and friends.\n\n- a simple PC, even with 4 GB RAM, recommended Linux OS. Alby Hub works also on Windows machines, but I will not recommend that.\n- some basic knowledge of running some command lines in Linux Terminal. Is just copy/paste in fact.\n- a mobile phone to connect Alby Go.\n\n## SETUP STEPS\n### STEP 1 - OS\nInstall Linux on that PC, I would recommend DebianOS (is more stable, if you want to dedicate that machine only to Alby HUB + LN node), but works on any other Linux distribution, even if you have a normal Linux Mint desktop could work perfectly fine. So use whatever other Linux you like.\n\n### STEP 2 - PREPARE ALBY FUNDING SOURCE\nStart here: https://albyhub.com/ and choose “do it yourself”. Then you will be redirected to login with an existing Alby account (if you want to migrate it to self-custodial) or create a new one, to start a separate one with your new self-custodial instance.\n\n![](https://m.stacker.news/54349.png)\n\nJust create a new one and you will get an invitation code for running your Alby Hub.\n\nGo to “[Desktop setup](https://guides.getalby.com/user-guide/v/alby-account-and-browser-extension/alby-hub/alby-hub-flavors/desktop)” instructions and download the executable file for the OS you are using. No need to install anything, just run the executable file.\n\nOnce you start Alby Hub app, you will be prompted to input an invitation code. If you already have an Alby account (custodial) you can get it from there, but remember that you will migrate everything to your new self-hosted Alby Hub. I would suggest to start with a new Alby registration and once you are asked what type of account you want you can choose self-hosted and get that invitation code, that later you will have to input in the setup of your Alby Hub. Later you can change or personalize the LN address and [even use your own domain for that](https://guides.getalby.com/user-guide/v/alby-account-and-browser-extension/alby-account/use-your-lightning-address/own-domain).\n\nAlby Hub is offering a variety of funding sources that you can choose first time you start it. A very easy to use GUI interface, that help you to connect instantly with your LN node behind (funding source).\n\nReminder: We are talking here ONLY about using the “private node” mode, not public.\n\nOnce you start Alby Hub, you will be prompted with this screen, where you have to choose “Advanced setup” if you do not want to use the Alby Cloud option:\n\n![](https://m.stacker.news/54350.png)\n\nThen you will be prompted to choose one of the backend funding source:\n\n![](https://m.stacker.news/54351.png)\n\n### LDK\nThe simplest one and straight forward. If you choose that one, it will install automatically a LDK node instance and start right away, going to open one or many channels with the LSPs offered or any other node peer you like. LDK will not use so many resources, being a lightweight LN implementation. Also do not need to run beside a full bitcoin core node, it uses public Esplora servers. If you want to run your personal Esplora server, you have that option too, but you need to dig more into CLI configurations.\n\n### Phoenixd\nAnother simple and straight forward funding source for Alby Hub. Only that this one will use the “walled garden” liquidity from Acinq and will charge the 1% fees for that. If you do not want to deal with channels node management, this is a perfect solution.\n\nInstallation of phoenixd is quite simple, just follow these simple command lines: https://phoenix.acinq.co/server/get-started\n\nOnce phoneixd is up and running go to Alby Hub and input the required authorization code for that local server:\n\n![](https://m.stacker.news/54352.png)\n\n### LND\nA more complex and robust funding source, that require previous installation before you want to link it to your Alby Hub. Would be nice if Alby team will include an automated installation of LND like the LDK.\n\nWhat I would recommend is to install a LND instance in “[neutrino mode](https://docs.lightning.engineering/lightning-network-tools/lnd/enable-neutrino-mode-in-bitcoin-core)” on the same machine where are you going to run Alby Hub. In this way you do not require to run also a heavy bitcoin core node, with full blocks that will eat up almost all the machine resources. And don’t worry, the “neutrino mode” is not a “privacy concern”, neutrino is only delivering blocks data filters, do not read any xpub or addresses, IPs etc. It is used also by Zeus (embedded), Blixt, Breez.\n\nInstalling lnd from source:\nWith the preliminary steps completed, to install lnd, lncli, and all related dependencies run the following commands:\n\n```\ngit clone https://github.com/lightningnetwork/lnd\ncd lnd\nmake install\n```\n\nThe command above will install the current master branch of lnd. If you wish to install a tagged release of lnd (as the master branch can at times be unstable), then [visit the release page to locate the latest release](https://github.com/lightningnetwork/lnd/releases). Assuming the name of the release is v0.x.x, then you can compile this release from source with a small modification to the above command:\n```\ngit clone https://github.com/lightningnetwork/lnd\ncd lnd\ngit checkout v0.x.x\nmake install\n```\n[For more details about installing and configuring LND instance please read here.](https://docs.lightning.engineering/lightning-network-tools/lnd/run-lnd)\n\nIn that document you will also find the following lnd.conf configuration for neutrino mode:\n```\nbitcoin.node=neutrino \nfeeurl=https://nodes.lightning.computer/fees/v1/btc-fee-estimates.json\n```\n\nOnce the LND is up and running, continue with [backing the macaroons](https://docs.lightning.engineering/lightning-network-tools/lnd/macaroons) and TLS certificate required to connect Alby Hub, those will be necessary in this next step:\n\n![](https://m.stacker.news/54353.png)\n\n>LND address - your local LND instance, eg. http:/127.0.0.1:9735\n>TLS Certificate - path to the LND TLS cert file, usually in lnd/data\n>Admin Macaroon - your backed admin macaroon to authorize the connection\n\n### Cashu Mint\nAn interesting and damn simple connection as funding source. If you do not want to deal with all above LN nodes, channels management liquidity etc. this is one of the most straight forward and simple solutions.\n\nYES, is custodial, but if you deal with small amounts, only for donations, nostr zaps, small payments etc, this is enough.\n\n![](https://m.stacker.news/54354.png)\n\nBy default is offering the Minibits.cash mint, but you can use whatever other mint you like (see more here: https://bitcoinmints.com/ ), or your own mint if you run one.\n\nThe only concerning part with this funding source is that there’s no way to have backup the tokens or keys for this funding source. Not yet, I am sure the Alby team is working on that. So if your Alby Hub get busted, you do not have a backup of the funds (or I couldn’t find it myself until now).\n\n### Greenlight / Breez SDK\nThis is a Greenlight funding source method, based on invitation code and a Breez API key. [You can request them here](https://blockstream.com/lightning/greenlight/). Greenlight is a “Lightning-as-a-service” node, where the user hold the keys but do not manage the channels liquidity and the server.\n\n![](https://m.stacker.news/54355.png)\n![](https://m.stacker.news/54356.png)\n\n\n### STEP 3 - START USING YOUR ALBY HUB\nAaaand that’s it! Once you connect a funding source, you are ready to go and use your Alby Hub, connecting it to various LN apps with NWC, [connecting to Alby Go as a mobile wallet](https://blog.getalby.com/alby-go-the-easiest-mobile-app-to-use-bitcoin-on-the-go/), create limited accounts or even act as “uncle Jim” with the special deployment of “[Alby Jim](https://github.com/getAlby/jim)”.\n\nThe variety of apps connections is incredible and easy to setup with provided instructions in the interface.\n\n![](https://m.stacker.news/54357.png)\n\n### MORE RESOURCES:\n- [Deploy it yourself](https://github.com/getAlby/hub?tab=readme-ov-file#deploy-it-yourself) - Alby Github instructions if you want to run it as server\n- [A very nice guide about configuring and connecting Alby Hub to Stacker News account](https://stacker.news/items/698497) - by our fellow stacker @supratic\n- [Run your Alby Hub with Nodana](https://nodana.io/services/alby-hub) (hosting service)\n- [Run your Alby Hub with Alby Cloud](https://medium.com/@michael.leigh.stewart/setting-up-a-lightning-network-node-with-alby-hub-alby-cloud-4895e97624f8) (hosting service)\n\nENJOY LIGHTNING NETWORK!\n \N 20922 \N 303630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0188490185966 0 \N \N f 0 \N 0 23686786 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 135633 2024-03-03 11:38:35.166 2025-03-29 22:39:46.789 Bitwage just rugpulled their U.S. users. Switching to a far more restrictive bank that disallows putting your name on your employer's payroll system, loss of freelancing and Airbnb support, and now a sudden cutoff of anyone utilizing Bitwage services within the U.S. not even a month after ditching Metropolitan.\n\nAnd to think I was going to ditch Strike when **they** briefly regressed in feature functionally; thank God for a better Jack, I guess.\n![1000024592.png](https://m.stacker.news/20201) \N 2961 \N 135633 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.91008140685082 0 \N \N f 0 \N 0 194930392 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 207732 2024-07-30 05:51:28.164 2025-03-29 22:39:46.789 Kenya: A Bitcoin Haven Nairobi was a good blend of East meets West, the comforts of a developed society, and the diversity we had been accustomed to in Toronto. Walking around Nairobi, one thing was clear: M-Pesa (mobile money by Safaricom) is king. We saw mobile money in countries like Egypt and Ethiopia, but not to the same extent. \n\nWhat exactly is mobile money? It’s a digital wallet provided by telecom companies that allow users to deposit, withdraw, transfer, and store money through thousands of agents across the country. Users can send money, pay merchants, pay bills, and much more. It functions like a bank account linked to your phone number.\n\nM-Pesa, launched in 2007, now has 32.4 million customers with access to financial services without needing a formal bank account. In a country with 56.6 million people that's a penetration of 57%! \n\nGiven the widespread adoption of mobile money in Kenya, it wasn’t surprising to see their openness to Bitcoin. We were fortunate to meet many entrepreneurs and builders focusing on sustainable mining, literacy in local languages, empowerment of women, merchant onboarding tourism, and much more. Here is a sample of the Kenyan Bitcoin scene:\n\n**Girdless**: leverage surplus renewable energy in rural communities through bitcoin mining. (We had a chance to visit one of their facilities and will share more soon) https://youtu.be/YB2q0J65VDg\n\n**Bitcoin Dada**: empower the lives of African women through bitcoin. (Dada translates to sister in Swahili)\n\n**Bitcoin Mtaani**: expedite Bitcoin adoption in Africa through native languages.\n\n**Tando**:spend bitcoin anywhere in M-Pesa is accepted (M-Pesa is a phone-based money transfer service with ~3.2M merchants as of 2022)\n\n**Bitcoin Matatu**: a bitcoin-themed Matatu (shared taxi vans) to raise awareness and act as a tourism operator.\n\n**Bitcoin Nomads Africa**: camp, hike, and sleep under the stars across Africa.\n\nWe also had the chance to visit an informal settlement, Kibera, to see how bitcoin is helping young entrepreneurs and the less privileged of the community:\n\n-Easily accept money from a global customer base\n-Improve tech literacy\n-A path to monetizing their skillset\n\nThe Kenyan government signed an MoU with Marathon Digital Holdings in May 2024 to help optimize and monetize renewal energy within the country. Time will tell how this plays out. Speaking of the government, given the recent protests to the proposed Finance Bill, it's clear the youth of Kenya will stand up for what they believe in. I expect we'll continue to see innovative solutions and products built using bitcoin in Kenya.\n\n//\nThanks @OneOneSeven for this idea. If you're jumping in here is our journey across Africa thus far:\n\nhttps://stacker.news/items/682996 Cairo to Cape Town: A Bitcoin Adventure\nhttps://stacker.news/items/688813 The Dollar Dilemma in Egypt\nhttps://stacker.news/items/693427 Ethiopia: The New Frontier For Bitcoin Mining\n\n(stackers lmk if this isn't the best practice for including previous links in posts)\n//\nSources:\n\nhttps://gridlesscompute.com/\nhttps://btcdada.com/\nhttps://x.com/BitcoinMtaani\nhttps://tando.me/\nhttps://x.com/BitcoinMatatuKE\nhttps://bitcoinomads.africa/\nhttps://x.com/btcnairobi\nhttps://www.reuters.com/world/africa/after-dramatic-tax-win-kenyan-protesters-plot-next-moves-2024-06-28/\nhttps://www.safaricom.co.ke/images/Downloads/2024-Annual-Report-Update.pdf\nhttps://www.worldometers.info/world-population/kenya-population/\nhttps://www.forbes.com/sites/digital-assets/2024/05/29/bitcoin-miner-marathon-partner-with-kenya-on-renewable-energy-projects/\n\n\n![](https://m.stacker.news/53305) \N 18068 \N 207732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9946094252327 0 \N \N f 0 \N 0 184866208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 259632 2024-10-08 05:39:50.379 2025-03-29 22:39:46.79 Clark Moody Dashboard v2 (beta) In preparation for the Halving this Spring, I've rewritten the back-end of the Dashboard in Rust and reimplemented a good chunk of the data from the existing Dashboard.\n\nThe site now allows login via nostr (NIP-07). At the moment, logging in gives a few benefits:\n\n- Choose a theme from among 10 presets\n- Two new modules for Ordinal Inscription stats\n\nOf course, more features are coming Soon (tm) https://dashboard.clarkmoody.com/ 20892 \N 259632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.14929405216946 0 \N \N f 0 \N 0 81937500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 272410 2024-10-20 11:03:27.52 2025-03-29 22:39:46.79 SN release: wallet logs, fix invite links, subscription manage, API key scope 1. attached wallet logs (via @ek)\n - accessible on the wallets page\n - ek wants to take more ownership over things that I usually try to impose a lot of direction on, eg UX and code UX, so help him with feedback\n2. invites links have been fixed after having been broken for awhile\n3. referral attribution has been fixed for lnauth/nostr auth after having been broken for awhile\n4. manage your subscriptions to other stackers from the settings page (via @WeAreAllSatoshi)\n5. API key scope has been limited to only doing things like posting/commenting (via @WeAreAllSatoshi)\n6. territories now show when they were created (via @ek)\n7. fix firefox mobile navbar click bug when visual viewport changes (via @BenAllenG)\n8. fix draft titles on links being overwritten (via jp on github - I don't know your sn nym)\n9. less confusing autowithdraw desired balance hint (via @south_korea_ln)\n - 🚨 first time contributor alert\n\nThere are a few other minor bug fixes and `sndev` changes.\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n--------------\n\nWe've paid a total of 1.37m sats in contribution awards to 13 contributors so far! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n---------------\n\nPrevious release: https://stacker.news/items/484351\nComplete list of changes: https://stacker.news/changes\nQ4 recap and Q1 roadmap: https://stacker.news/items/381208\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 627 \N 272410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6336235375213 0 \N \N f 0 \N 0 126238019 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436136 2025-03-13 10:47:14.306 2025-03-29 22:39:46.79 Introducing Proton Wallet – a safer way to hold Bitcoin | Proton \N https://proton.me/blog/proton-wallet-launch 17184 \N 436136 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 25.6306094677909 0 \N \N f 364298441 \N 2 204148360 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:59:25.624 f \N \N \N 0 0 0 0 1 0 0 294360 2024-11-12 14:30:18.909 2025-03-29 22:39:46.79 What is fedimint to you? I'm writing a new article but want to know what other people think about fedimint.\n\nWhat is it to you? \nWhat does it enable for you? \nHow do you think other people will use it? \n\nAll answer types are valid, even if you just vaguely heard about it. \N 18901 \N 294360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.267622497958 0 \N \N f 0 \N 0 41987763 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 303945 2024-11-22 00:04:59.798 2025-03-29 22:39:46.791 Why smart people believe stupid things "Why smart people believe stupid things", by Gurwinder: https://youtu.be/5Peima-Uw7w?si=JeS8k-IbKUno9XSE\n\nDisclaimer: for a video that goes into the dangers of bias, it got surprisingly political towards the beginning. Obviously take that with a grain of salt. \n\nTL;DW - people who score higher in intelligence actually score higher in bias, and those of us who are good at logic and reasoning are more likely to convince ourselves of irrational beliefs. \n\nKind of crazy to think about, because I consider myself a very logical thinker. Like - there’s a non zero chance that I’ve irrationally convinced myself to become a “bitcoiner” and we’re all rationalizing this thing together, as a group. I don’t think that’s actually true, buuuuuut…… It’s something that should be on our minds, in my opinion. \n\nThe solution, in a nutshell - “**instead of defining yourself by your ability to reason, define yourself by your willingness to learn.** Then, admitting you’re wrong, instead of feeling like an attack, will become an opportunity for growth.” (Unless of course defining yourself by your ability to learn is also a rationalized self-delusion 👀 in which case we’re all screwed anyway, haha)\n\n![Screen Shot 2024-03-21 at 12.03.29 PM.png](https://m.stacker.news/22196)\n\nI thought it was interesting to define this as a disorder that preys specifically on intelligent people. \n\nI also loved that at the end, he basically says those who think they’re humble aren’t, so he doesn’t think he’s humble… But he’s trying, and trying to be humble is the same as being humble, lol. I guess there’s really no way around that paradoxical irony. \n\nAnyway - always be open to the possibility that you may be wrong, and stack sats. \n\n-------\n*Favorite quotes from the video:*\n\n“Test subjects who scored highest in numeracy were better able to objectively evaluate statistical data when told it related to a skin rash treatment, but when the same data was presented as relating to a polarizing subject, gun control, those who scored highest in numeracy actually exhibited the greatest bias.”\n\n“A great deal of intelligence can be invested in ignorance when the need for illusion is deep” - Saul Bellow\n\n"An explanation so idiotic, only an intellectual could think of it."\n\n“These kinds of master debater-y beliefs prevail among cultural elites, including those who should know better such as biologists. **But they are rarer among the common people who lack the capacity for mental gymnastics required to justify such intricate delusions.**”\n\n“The standard rationalist path is to try to avoid delusion by learning about cognitive biases and logical fallacies, but this can be counter productive. Research suggests that teaching people about misinformation often just causes them to dismiss facts they don’t like as misinformation, while **teaching them logic often results in them applying that logic selectively to justify whatever they want to believe.**”\n\n“It was curiosity that was found by Kahan’s research to be the strongest countermeasure against bias”. \n\n“It’s easier to fool people than to convince them that they have been fooled” - Mark Twain\n\n-------\n\n*Mentioned studies that found stronger biases in “clever people”:*\n\n“Motivated Skepticism in the Evaluation of Political Beliefs” - 2006\nhttps://fbaum.unc.edu/teaching/articles/AJPS-2006-Taber.pdf\n\n“Cognitive Sophistication Does Not Attenuate the Bias Blind Spot” - 2012\nhttp://www.keithstanovich.com/Site/Research_on_Reasoning_files/West_Stanovich_JPSP2012.pdf\n\n“Who Knows Best? Education, Partisanship, and Contested Facts” - 2014\nhttps://utw10426.utweb.utexas.edu/education_ideology.pdf \N 8242 \N 303945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0340788478060006 0 \N \N f 0 \N 0 108586421 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 332153 2024-12-16 17:22:30.306 2025-03-29 22:39:46.791 Lightning authentication (LNURL-Auth) # Introduction\nMost people think of the Lightning Network as a payment network for fast and cheap bitcoin transactions. But did you know that you can use your Lightning wallet to easily, securely and anonymously log in to certain services?\n\n# Passwords\nThe most common authentication method on the Internet today is **username and password**. It's a decades-old concept that works quite well. But what are its drawbacks?\n\nFor convenience, users often choose **simple passwords** that can be guessed or cracked by brute force. Alternatively, they use the **same passwords** across multiple services, leading to the fact that if the password leaks, attackers can hijack identities on multiple platforms at the same time. They just try the same combination on other services.\n\n# Lightning?\nBut what if we had an **alternative way** of logging in where we didn't need a username or password and the whole concept will be secure enough? Is that realistic?\n\nThe technology we will introduce in this post is the **LNURL-auth** protocol. LNURL is a set of protocols that extend the capabilities of the Lightning Network (we have already introduced one of them in the [post about the Lightning address](https://stacker.news/items/65872)) and specifically LNURL-auth takes care of logging.\n\nAnd how do I imagine this in practice? Simple - you open a website supporting this technology, **scan a QR code** with your Lightning wallet (as if you were paying a traditional invoice) and you are logged in. It couldn't be simpler. But how does that work and is it even safe?\n\n# Principle\nAn integral part of all Lightning wallets is the private key. As with on-chain bitcoin, this is a **random number** that you must not disclose to anyone and whose knowledge proves ownership of your bitcoins.\n\nIn practice, the website sends you random data that you sign with your **private key** and return a **pair** - a signature and a **public key**. The service then verifies the signature, and if it is correct, you have successfully confirmed your identity. This is done by knowing your private key, as only you own it and without it, a valid signature cannot be created.\n\nIn reality, you do not use the identical private key that you have as proof of ownership of your bitcoins, but depending on the URL of the website, a **different key** is derived for each website.\n\nIt may sound complicated for some beginners, but really it's just that your identity is **tied to your private key**, and as long as no one steals it, all you have to do is simply scan QR codes to log in to various services.\n\nYour only concern is to **keep this key safe** - but for this you can usually use the well-known **seed-phrase** (12 to 24 words used to recover the master private key).\n\n# Advantages and disadvantages\nWhat are the **advantages** over the traditional login with a username and password?\n\n- You don't need to create, remember or store any passwords.\n- You don't even need to fill in a username, you just "scan QR code".\n- Your password (in this case a private key) never travels over the network, so it cannot be intercepted.\n- Your private key is derived differently for each service, so your identity cannot be correlated across multiple services (such as if you use the same email or username).\n- Speed and simplicity.\n\nWhat about the **disadvantages**?\n\n- So far, very few services support this type of login.\n- You must have a Lightning wallet that supports this technology.\n- Whoever gets full access to your wallet has your identity.\n- You are responsible for keeping your seed-phrase safe.\n\n# Practice\nFrom the preceding paragraphs, it should be clear that you will need a lightning wallet. In this particular case, I would strongly recommend one where you **actually own your private keys** (so called non-custodial), i.e. Phoenix or Breez for example. Or your own node via Zeus.\n\nThere is a support for this feature in BlueWallet as well, but since it is custodial **by default** (third party holds the private keys for you), I would not recommend it for this case. Neither Wallet of Satoshi nor Muun wallets support LNURL-auth technology yet.\n\nYou must then **back up** your wallet correctly, as you will lose your identity if you lose it. And of course, you should set up some kind of additional authentication when accessing your wallet (PIN, fingerprint, FaceID, etc.).\n\nSome may find this way of storing your identity dangerous, but if a potential attacker gets into your phone and bypass biometrics to steal your identity from the wallet itself, he can steal your passwords from any password manager in the same way...\n\nAnd that's it - you don't have to use the wallet itself to pay, you don't even have to have a single satoshi on it.\n\nAnd where can you try Lightning login? For example here on Stacker.News :)\n\n![LNURL-auth](https://platbybudoucnosti.cz/sn/lnurl-auth/lnurl_auth.png)\n\n# Conclusion\nLightning authentication is an **interesting concept** that is very secure, anonymous, and user-friendly by simply scanning QR codes.\n\nBut the technology itself is still in its **very early days**, so we'll have to wait a while for wider support, both on the service and wallet side.\n\nAt the same time, however, it is also important to point out that there is no "real person identification" and anyone can create countless keys/wallets - i.e. identities. This issue must therefore be dealt with separately.\n\nAnyway, you don't pay anything for the test, so **go ahead**!\n\n# Addition?\nWait, that's it? If you're a bit of a geek and are interested in such concepts in depth, let's take a more technical look at the LNURL-auth protocol together. \n\nEvery non-custodial wallet has a **master private key** (if not, we have a [solution](https://github.com/lnurl/luds/blob/luds/13.md) for that too). The derivation path **m/138'/0** contains the so-called **hashingKey**. We will put this together with the service URL into the HMAC function:\n\n```\noutput = HMAC-SHA256(hashingKey, domain from URL string)\n```\n\nWe take the first 16 bytes from the output and split them into 4 equally sized parts. This gives us a derivation path for the so-called **linkingKey**, i.e. a key that is unique for each service (URL):\n\n```\nlinkingKey = m/138'////\n```\n\nAfter scanning the QR code, the wallet decodes the bech32 and gets an HTTPS link, for example:\n\n```\nhttps://web.com?tag=login&k1=random_data&action=login\n```\n\nThe **tag** parameter tells us that this is LNURL-auth and the **action** specifies the login (it can also be, for example, a registration, etc.). The very important parameter **k1** contains 32 bytes of random data that we need to sign with our **linkingPrivKey**.\n\nAfter the user has agreed to the login dialog, the wallet responds with the same URL, only adding the **sig** and **key** parameters to it:\n\n- **sig** = signed random data **k1** over the **secp256k1 curve** using the **linkingPrivKey** private key\n- **key** = public key linkingKey\n\n```\nhttps://web.com?tag=login&k1=random_data&action=login&sig=signature&key=public_key\n```\n\nThe service then verifies the signature and, if it is correct, assigns the user an identity based on his **linkingKey**, or alternatively creates a new one if it is a registration.\n\nMore details and specification itself:\n- [https://github.com/lnurl/luds/blob/luds/05.md](https://github.com/lnurl/luds/blob/luds/05.md)\n- [https://github.com/lnurl/luds/blob/luds/13.md](https://github.com/lnurl/luds/blob/luds/13.md)\n- [https://github.com/lnurl/luds/blob/luds/04.md](https://github.com/lnurl/luds/blob/luds/04.md)\n \N 19906 \N 332153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.17999302456753 0 \N \N f 0 \N 0 193337382 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 189106 2024-06-24 21:13:09.84 2025-03-29 22:39:46.79 Bank freezes my account for four months over bitcoin P2P trade \n**TLDR**\n\n- Fuck the banks\n- Recommendation: Set up a dedicated bank account for Bitcoin P2P trading and keep the balance low\n- Money in the bank is not your money, the bank controls how, if, and when you can use it\n- You can lose access to your bank accounts for several months without doing anything wrong\n- A P2P trade partner can ruin your privacy when they (are forced to) leak sensitive data \n- Fuck the banks\n\n\n\n**Introduction**\n\nBitcoiners typically advocate for acquiring bitcoin P2P for good reasons, it is in the title of the whitepaper after all: "Bitcoin: A Peer-to-Peer Electronic Cash System"\n\nThe main reasons for using P2P are privacy and avoiding government regulated 3rd party companies. While you can get bitcoin P2P for services or goods, most people buy bitcoin using fiat money.\n\nUnfortunately I have learned that is not without risk.\n\n\n**My horror experience with buying bitcoin P2P through the fiat banking system**\n\nI'm based in Europe and have a bank account with one of the largest banks in Europe (top 10). I started buying & selling bitcoin through HodlHodl (HH) and Peach in 2022 and all purchases/sales were done with fiat through a SEPA payment.\n\nThis is what happened:\n\n- End of April I suddenly couldn't make any transfers with my bank account. It was on a Sunday so I thought I would wait for a day to see what happens, could be an interruption with their services\n- A day later I got message that my account was blocked because of a fraud investigation and I had to call them. I immediately did so and they told me that one of my HH sales was flagged for fraud and the sender requested a chargeback. I explained my side and that I was not aware of doing anything wrong\n- I provided proof over e-mail that would show that I was not guilty of fraud: Chat messages from my trading partner, the HH contract, the transaction on the timechain, everything\n- I didn't hear back as they were 'investigating' according to them. A few weeks later I learned that they flagged three transactions, two from HH and one from Peach. The folks at Peach wrote and signed a latter that the chargeback against me was fraudulent and that I had met my obligations\n- Time passed by and not much seemed to happen. When I e-mailed and called them again they told me: *"If we are investigating the legitimacy of funds, we immediately freeze the associated account to prevent any further transfers and the resulting damage, which is also our right as a bank. We do not provide updates on the progress of the investigation until it is completed, so indeed, you will not be kept informed in the meantime."*\n- Late August they called me to ask for my side of the story as there was no documentation according to the person on the phone! There had been numerous phone calls and e-mails and I had documented all our communication, apparently they did not\n- They told me they would now go through everything I had sent and come up with a conclusion in a week. It wasn't until two weeks later that they called me and confirmed I didn't do anything wrong and they would unblock my bank account\n- In the end my bank account was blocked for more than four months\n\n\nAnd this is what it did to me:\n\n- I lost access to roughly one year of net earnings and was not able to meet my financial commitments as expected. I had to come up with creative ways to meet my commitments. Luckily, I did not have to any bitcoin to do so\n- It severely affected my mental and physical health and relationship: Sleeping problems, stress, financial problems, nobody to talk to, focus issues\n\n\n\n**I hope someone learns something from my experience. Let me know if there are any questions :)** \N 10398 \N 189106 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.5197975462963 0 \N \N f 0 \N 0 76271354 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 151887 2024-04-01 03:44:46.936 2025-03-29 22:39:46.79 You are NOT bullish enough on Payjoin! 🔥 ### **Background**\n- Even though the benefits of coinjoins are well documented and clearly help us obtain great privacy, conjoins introduce separate transactions into our usual spending flow.\n- You may be aware, but other types of transactions exist today to also take back some control of privacy. For instance, people can use Payjoins when supported by their wallets.\n- Payjoins via [BIP-78](https://bips.dev/78/) look like regular transactions and involve both the sender and receiver contributing inputs when transacting. This could be the merchant themselves or potentially even yourself (via 2nd, 3rd, 4th wallets).\n- Even though its early and that they are not so commonplace today, Payjoins are potentially an even better solution or a natural evolution from coinjoins over the long-run. Especially when in future they support more than 2 participants.\n\n### **Payjoins will make privacy the default on-chain, without any additional transactions**\n![Train tracks covering](https://nostrfiles.dev/uploads/FmbLoQFziboUQ3gai1gh.jpeg)\n\n### **Why you should be more bullish 🔥**\n- Payjoins make it near-impossible to know the true amount paid and they are indistinguishable from other transactions. There is no obvious change or obvious payment output. And of course you can use multiple inputs. There are so many different potential interpretations of the likely amounts, that the bread-trail and 'heuristics' used by surveillance companies can come to a dead-end.\n- With the release of the [PDF (Payjoin Dev Kit)](https://payjoindevkit.org/examples/), we should now see business adoption grow, since it makes their own transactions more efficient and more cheap. Outputs for the receiver (the merchant) will allow transactions and outputs batched together to save on fees in future. The privacy argument for merchants may almost be a secondary afterthought.\n- Furthermore, Payjoins can even remove the need for whole transactions in future, by being able to [directly fund the opening of Lightning channels from the receiver's input](https://thebitcoinmanual.com/articles/open-multiple-lightning-channels/) straight to your node. \n- @bitgould for instance has referred to this as 'transaction cut-through'. Kudos to you Dan, on dedicating so much time to this Payjoin initiative!\n- During a significant bull-market, exchanges will also be incentivised to use Payjoins. Firstly, exchanges could benefit from batching transactions. However exchanges may also struggle for liquid UTXOs to have ready to fund withdrawals at times, even if they hold 100% reserves - due to a cold and hot storage setup. With Payjoins, exchanges would have the ability to directly fund the withdrawals with the incoming UTXOs from their other customers. Again, skipping entire transactions and saving a bunch of fees.\n- Further benefits of Payjoins are discussed [here on Github](https://github.com/orgs/payjoin/discussions/91).\n\n### **Future Adoption**\n- Even if Payjoins only account for 10% of transactions on-chain in the coming years. It's enough to reduce the "common-ownership heuristic" to a 90% probability, such that multiple Payjoins in sequence could reduce that from 90% to 81%, then 72%, 65%, 59%, 53% etc.\n- Of course with the incentives in place, it is hoped Payjoins will soon make up a greater share than 10% of transactions. Taproot transactions already [account for 60% of the network](https://transactionfee.info/charts/transactions-spending-taproot/), despite being less than 2% at the start of 2023.\n- As we stand today, Payjoins aren't so commonplace, but they have hugely significant implications for privacy onchain. Hopefully we see the momentum shift over the coming months, with wallets, businesses & individuals adopting Payjoins.\n \N 21631 \N 151887 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.19464873282028 0 \N \N f 0 \N 0 155242281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 153301 2024-04-04 08:18:20.556 2025-03-29 22:39:46.791 AMA - Building a "Bitcoin AI" Hey guys!\n\nWant to thank Kevin Rooke for inviting me here for an AMA.\n\nThere's loads of things happening in Bitcoin and of course the AI space. And with that, comes alot of noise and misconceptions. The team and I have been working hard building an open source, trained-from-scratch, "Bitcoiner" LLM - NOT a "wrapper on ChatGPT", but a real Bitcoin model.\n\nWith that being said, I'll be around for the next hour to answer any questions any of y'all might have.\nSo hit me up and I'll do my best to answer (it will be me answering, not our model..lol)\n\n![image.png](https://m.stacker.news/5066) \N 630 \N 153301 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.7515593658873 0 \N \N f 0 \N 0 98090561 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 233645 2024-09-11 01:07:32.661 2025-03-29 22:39:46.792 Is custodial bitcoin really worth anything? # People are willing to pay for it\n\nNormies have spent [more than $25 billion](https://www.forbes.com/sites/digital-assets/2024/03/25/bitcoin-etfs-on-better-win-streak-than-95-of-traditional-funds/?sh=7ad225e77148) buying custodial bitcoin vouchers via the ETFs.\n\nAdditionally, people have left [1.8 million bitcoin](https://www.coinglass.com/Balance) sitting on exchanges. If these people felt that their bitcoin sitting in accounts at exchanges was worth less than the market rate, presumably they would withdraw it. So it would seem they think their bitcoin vouchers are worth a total of $126 billion (using a btc price of $70k).\n\nBased on the actions of the people who buy ETFs and the people who leave bitcoin on exchanges we can conclude that bitcoin vouchers are worth a total of $150 billion.\n\n# What is the bitcoin value proposition if you don't have the keys to a utxo?\n\nClearly, the people who have bought such vouchers are not holding their own keys. What I want to think about is whether they get any value from these bitcoin vouchers or if they are simply buying them for speculation.\n\nHere are Bitcoin's value propositions as I understand them:\n\n- Censorship-resistance\n- Borderlessness\n- Digitally native money\n- No inflation\n- Seizure-resistance\n- No middlemen\n\nIf you don't control a utxo, how many of these value propisitions hold up?\n\n- No inflation\n\nAnd even this one is pretty dubious. There have been enough "paper bitcoin" scandals (FTX being the most recent) that it seems clear that whatever fixed supply guarantees Bitcoin offers are not duplicated by trusting someone else to hold the bitcoin for you.\n\n# Is it possible to use bitcoin without using a utxo?\n\nI don't really care about the ETF people. What I'm interested in is the conversation around bitcoin and increasing adoption. \n\nThere's lots of seemingly simple math[^1] that demonstrates how bitcoin doesn't scale to 8 billion utxo-owning users. You can look at how long it would take to create 8 billion new utxos or how few transactions bitcoin can accommodate (even with lightning) or how inevitably rising fees lead to a higher dust threshold making it harder for poor people to own a utxo.[^2]\n\n[^1]: You should check my math, but I actually think you could create ~500 billion utxos per year if you batched transactions: 52,560 blocks per year * 3000 transactions per block * 3223 [max outputs per transaction](https://bitcoin.stackexchange.com/questions/35570/what-is-the-maximum-number-of-inputs-outputs-a-transaction-can-have) = 508,202,640,000 new utxos per year.\n\n[^2]: Again, check my math: if you subtract the number of lost bitcoin ([~5 million](https://river.com/learn/what-happens-to-lost-bitcoin/)) from the total supply (21 million) and then divide this by world population (~8 billion) you get an average utxo size of 200k satoshis. Is a 200k sat utxo going to be that useful in a high fee (>300 sats/vbyte) environment?\n\nIn response, smart people have been building things like Fedimint and Cashu and Liquid and Mercury and the list goes on. But all of these solutions involve giving the user something other than the keys to a utxo.\n\nSo my question is: \n\n# Can you get any value from bitcoin if you don't hold your own keys? \N 9845 \N 233645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9800341152694 0 \N \N f 0 \N 0 65832990 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 237896 2024-09-15 18:20:50.084 2025-03-29 22:39:46.792 Secured My First Client as a Bitcoin Consultant! Some time ago I wrote [this post](https://stacker.news/items/460000) stating that I had been considering dedicating my work life to Bitcoin for quite some time and becoming a consultant for Bitcoin adoption. \nMany comments were so encouraging that I decided to dive in headfirst and test the waters.\n\n\nI chose to start with local businesses that I could eventually reach out to in person to speak face-to-face with the owners. \nI compiled a list of businesses in my area (clubs, restaurants, hotels, merchants, etc.) that could be a good target and wrote a professional email to each of them (also trying to personalize the message where possible), explaining the consulting services I offered. \n\n\nLess than a month later, out of about *35* emails sent, I received *0* responses.\n\nThen, a small miracle happened. \n\nThe owner of a trendy restaurant in my area (known for gourmet hamburgers) responded, saying they might be interested but needed me to send a brief presentation to discuss internally before confirming.\n\nI got to work on a brief but detailed PowerPoint where I explained at a high level what Bitcoin is, what problems it solves, and the benefits it can bring to businesses through its adoption. \nAfter a few days, they contacted me asking for a first in-person meeting to delve deeper.\n\nThe first meeting went well; they knew almost nothing about Bitcoin but were very curious and enthusiastic.\nI gathered some information about their current posture and their needs, and I presented an adoption plan that they agreed with.\n\nI know it's a small start, a drop in the ocean, but as the saying goes, "all great things have small beginnings." \nThanks again to everyone who supported me, and let's hope things continue this way. \nMy mission is to orange-pill the whole world! 💊💪 \N 16270 \N 237896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.34963587619326 0 \N \N f 0 \N 0 151243240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 245062 2024-09-23 15:38:24.665 2025-03-29 22:39:46.792 Why Everyone Should Care About Privacy Looking for feedback on this article. I am trying to write with the less technical non-bitcoin audience in mind.\n\n# Why Everyone Should Care About Privacy\n\nPrivacy is one of those things we hear people talk about and depending upon factors like where you were born, your social status, race, and personal experiences you may have very different views on the subject. One of the most common reactions I hear from people on the topic of privacy is, "I don't have anything to hide". I believe this comes from a misunderstanding of what privacy is. Privacy is not secrecy. As Eric Hughes wrote many years ago.\n\n> A private matter is something one doesn't want the whole world to know, but a secret matter is something one doesn't want anybody to know. Privacy is the power to selectively reveal oneself to the world.\n\n~ Eric Hughes - A Cypherpunk's Manifesto\n\nI suspect most people do actually care about privacy but are not aware of what is at risk, who is watching, and what they can do about their own situation. Most people have blinds or curtains on their windows. Most people close the door when we go to the restroom. Most of us don't share everything we know and think with everyone. These are all privacy choices. Of course these choices involve trust and most of these are not conscience choices we mull over in our minds. We creatures of habit. You are probably thinking, of course. I'm not stupid. Why would anyone just share everything with everyone. OK, now lets talk about your digital life.\n\nIf you live in the affluent western world and especially the US you probably rarely intentionally think about digital privacy. But ask yourself this. Have you ever started to type something into Google search and paused for a moment to consider it? You probably have. That should tell you something. Your gut is telling you that someone is watching. What is harder to understand is the consequences of being watched. Maybe you've never really stopped to think about it but you are making many choices about privacy everyday with your phone and computer. The topic of privacy can be overwhelming. This is one reason why it is important to narrow our focus to a few things when we talk about it.\n\n## Why should I care?\n\nDo you have credit or debt cards? Do have a bank account? Identity theft is often made possible by of mistakes we make with our personal private information. Have you every been asked to provide information online like your birth date or your high school? While this might not seem like a big deal at first, once you realize this info is often used as a component for securing your online accounts it becomes clear why this can be an issue? Many financial services require this info to reset your password for example. Have you ever shared this information online? What could happen is someone gained access to your email account. How many online accounts are connected to that email address? What if someone gained access to your social media accounts. What damage could they do to your reputation?\n\nIf you don't follow the information security news you may not be aware that there are data breaches on a daily basis. Hackers gain access to the databases of financial institutions, social media platforms, automotive dealerships, and pretty much any business that keeps its data in a digital format. This means that whatever data you have given these institutions may become publicly available at some point in the future. There are sites that collect data from these breaches and sell it to the highest bidder. The sad truth is that businesses do not take data security seriously enough. They also do not look out for your privacy. It is up to us to do what we can to reduce our own risk, but before we get into what we can do we should talk about what you have to lose. What are the stakes for you? Do you use the same password on every site? If even one of those sites you use leaks your password to hackers those same hackers could access all of your online accounts. You can see how this could quickly become a nightmare if you are caught up in an breach of one of your online accounts.\n\n## Where do we start\n\nI hope you are beginning to see that maybe you should take personal privacy seriously. The best place to start with privacy is to think about what your personal risks are with data. The term used in the privacy and security world for this **Threat Modeling**. Put simply this the process of creating a model of the possible threats you face with a breach of privacy. Here are a few examples.\n\n* Journalist\n* High Wealth Individual\n* Politician\n* Political activist/dissident\n* Gun owner\n* Anyone living in an oppressive nation state\n* Employee with access to valuable information\n* Single adult\n* Someone leaving an abusive relationship\n* Parent\n\nI could list many more but I hope you get the idea. The average person with modest means living in a relatively free nation has a very different set of risks than someone living in an oppressive nation. But, many of the same tools and approaches can help both decrease their risk.\n\nLets use the journalist example. A journalist might need to protect their privacy to varying degrees but I say a few threat would be.\n\n* Threats of violence\n* Impersonation\n* Swatting (Falsely reporting that there is a hostage situation to use SWAT teams as a weapon against a target.)\n* Doxing (Making private info like address and phone numbers public)\n* Hacking of phones/computers\n* Financial fraud\n\nAs you can see journalist must be very careful about their privacy. What about a young woman working at a large corporation. She's a professional in her late twenties living in an urban area. What are some of her risks?\n\n* Financial fraud\n* Stalking\n* Hacking of phones/computers\n* Exposing private data publicly\n* Identity theft\n\nWhat about a red blooded American male gun owner. Maybe he has a license to carry a concealed weapon. Maybe he is very bold about his second amendment rights and likes to post photos on social media shooting guns and making bold statements. One day he's at the gas station and he witnesses an armed robbery taking place and decided to intervene. He stops the perpetrator by shooting and wounding them. What are his risks? For one an attorney for the perpetrator will use his content from social media to build a case against this man. Depending on the jury his social media activity as well as text messages could be used against him in court.\n\nSo what is your threat model? The Electronic Frontier Foundation has a [one page PDF](https://www.eff.org/files/2020/01/06/threatmodeling-onepager.pdf) that walks through how do create a threat model. I would recommend going through the process. After you do that take a look at the items I list below. Don't get overwhelmed. Take it one step at a time based on your threat model.\n\n## Easy Steps Everyone Should Do\n\n* Use a password manager like [Bitwarden](https://bitwarden.com/) and use a different password for each account you have.\n* Be selective about who you share information with. Push back when you are asked to supply personal information.\n* Use a secure messaging app like [Signal](https://signal.org/) instead of SMS, Facebook, Apple messages, or WhatsApp\n* Use a privacy preserving VPN service like [Mullvad](https://mullvad.net) or [iVPN](https://www.ivpn.net) when you are out and about on public WiFi.\n\n## Steps most people should take\n\n* Delete social media apps off your phone. You can still use these apps but do it from your computer.\n* Use a privacy respecting email provider like [Proton mail](https://proton.me) instead of Gmail.\n\n## Advanced Steps\n\n* Use a privacy respecting phone running [GrapheneOS](https://grapheneos.org/) or [CalyxOS](https://calyxos.org/).\n* Use an email alias service like [SimpleLogin](https://simplelogin.io/).\n\nThere is much more you can do but these items are a good starting point.\n \N 13865 \N 245062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.38398882950614 0 \N \N f 0 \N 0 18321181 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 136923 2024-03-05 12:46:02.155 2025-03-29 22:39:46.792 I'm Alex Gladstein. CSO of the Human Rights Foundation. AMA I am also the author of Check Your Financial Privilege. \N 21249 \N 136923 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.9624023135872 0 \N \N f 0 \N 0 171664169 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 212961 2024-08-10 15:35:20.76 2025-03-29 22:39:46.792 "I don't know" - Nicolas Dorier, BTCPay Server creator \N https://gist.github.com/NicolasDorier/3d4b775c7e943ef48ac96297f1b4cb94 20563 \N 212961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5445888730154 0 \N \N f 0 \N 0 19579500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 192262 2024-06-30 21:04:22.381 2025-03-29 22:39:46.792 What would have to happen for you to LEAVE your home country? In the event that you need to retreat to safety with your family and your bitcoin, what event is likely taking place within your country to prompt such action?\n\nWhen do you say enough is enough?\n\nIt seems that many in the US would never give up their homeland as it's "the greatest country on earth." Many in the US cling to the notion that its economic and political power is infinite and everlasting. But if there's anything to take away from being involved in the markets, it's that risk is highest when things feel the most comfortable. And on the flip side of things, many "lesser-off" countries are rising in prosperity while the US declines. \n\nThe day that the US (or X country) implements a social-credit system is likely the final straw for some.\n\nIs that the case for you? \n\nOr does something happen earlier that would drive you out before the CBDC dystopia arrives? Later??\n\nAnd how do you ensure that you aren't jumping from one authoritarian hellscape to another? Is there a realistic scenario in which encroaching CBDC enslavement doesn't affect a particular region of the world? \N 21521 \N 192262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0754560792956 0 \N \N f 0 \N 0 203270063 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 262958 2024-10-10 16:03:22.604 2025-03-29 22:39:46.792 CASCDR Update: YouTube Agent + StartOS Build Hey fellow stackers & builders!\n\nLately I've had my head down working on a few initiatives that I'd like to share!\n\n**TLDR**: [CASCDR](https://cascdr.vercel.app) is like Zapier on open protocols. We use lightning for v4v APIs & nostr for discovery/reputation. We just added a new [YouTube Agent](https://cascdr.vercel.app/?tab=yt-agent#) that can summarize or write a post for 1hr+ YouTube videos!\n\n![satstacker.png](https://m.stacker.news/15398)\n\nI initially made the CASCDR workflow builder for the bolt.fun Legends of Lightning Hackathon. There, I was able to build a UI and 6 fundamental L402 Paid Lightning APIs including:\n- 🧠 General Purpose LLM (GPT)\n- 👁️ AI Image Analysis Capabilities\n- 🖼️ Text to Image Generation\n- 🗣️ AI Voice-to-Text Transcriptions\n- 🎥 Youtube Video Extraction\n- 💾 Storage\n\nCASCDR can take any of these services and combine them in a workflow or consume them individually (screenshot of anonymous [ChatGPT](https://cascdr.vercel.app/?tab=GPT#) use case):\n![Screenshot from 2024-02-08 14-45-02.png](https://m.stacker.news/15399)\n\nThe [API marketplace network CASCDR is a part of](https://github.com/Team-Pleb-TabConf-2023/NIP105-Data-Buffets-Monorepo/blob/main/105.md) is as open as I could make it on a first pass with plans to make it more open. Anyone can create an API service using the templates we've made and broadcast those services on Nostr where any client (of which CASCDR is just 1) can purchase them anonymously on the user's behalf with lightning. Buyers that value privacy and the ability to only pay for what they use could pick up those services and use them as building blocks.\n\nAt the conclusion of the hackathon I saw many possibilities and the challenge was figuring out where exactly to take the project next. The challenge with projects like this is that they are two sided markets & require both robust buyer & seller market. \n\nI realized I was going a little too much into the theoretical and I wanted to ground my project in some concrete use cases. Being that I am privileged to be a member of @PlebLab, I have access to a supportive community of people that will give me the feedback I need to craft this into a high quality project.\n\n**YouTube Agent**\n![Screenshot from 2024-02-08 14-25-46.png](https://m.stacker.news/15396)\n\nAfter doing research on state of the art AI techniques & speaking with prospective users (mostly in Pleblab), I wanted to create a productivity tool that simplifies the lives of content creators with two primary users in mind:\n1. Podcasters like @Car\n2. Educational Content Creators like @bitcoinplebdev\n\nThe idea is to help them quickly and easily do research, process huge amounts of content, or review their own material in order to create more content that we all enjoy. The initial results and reaction has been quite positive!\n\nI consider this release to be an alpha that is slightly embarrassing. I plan to make numerous UX improvements over the coming week. Try it out and let me know your thoughts! \n\nAdditionally, I plan to add a bot that can monitor a given YouTube channel and provide content to your email or nostr inbox as it comes in. \n\n**StartOS Package for Vendors**\n![start-os-cascdr.png](https://m.stacker.news/15403)\n\nI am pleased to announce that I will soon be submitting an StartOS package that allows users to stack sats by proxying requests with their OpenAI key. The current iteration connects to the LND node running on the device and generates invoices on behalf of the seller as requests for proxy come in.\n\nThis version is a first pass that just proxies requests to GPT3.5. I plan to add the following on future iterations:\n- ChatGPT4\n- OpenAI Embeddings\n- ChatGPT Vision \n- Whisper\n- FreeGPT services (S9 package)[https://marketplace.start9.com/marketplace/freegpt]\n\nAll of these services will be available over TOR and will allow clients such as CASCDR to scale horizontally, decentralize the network, and create an anonymity set that throws a wrench into the Orwellian plans of companies like OpenAI.\n\n**Other Odds & Ends**\n- Currently CASCDR has predefined workflows but I am about 50% done with a solution that will allow users to create custom workflows. I put this on pause in pursuit of immediately user facing applications and plan to pick it up later when it is strategically prudent.\n- I am onboarding a new dev who has never used lightning or nostr! He is a quick study and I expect him to start making major waves in the coming weeks!\n- And of course more services such as SMS4Sats, proxies, nostr scrapers, and more!\n\n\nCheck out the project! All feedback is appreciated!\n\nCheers,\nUncleJim21 \N 20969 \N 262958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.44369543481402 0 \N \N f 0 \N 0 193726421 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 316144 2024-12-02 16:15:14.743 2025-03-29 22:39:46.792 Wallet of Satoshi removed from US Play store? \N https://twitter.com/ZeusLN/status/1727810997656674355 20019 \N 316144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7122978826384 0 \N \N f 0 \N 0 85222 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 200205 2024-07-15 09:21:09.434 2025-03-29 22:39:46.792 Savings Savings.\n\nThink about that word. Savings rescues people from a plight or a pickle. It's preparation for the unknown. It's a way to account for the bad things that may happen.\n\nSavings is also a way to prepare for something you *do* want. It's capital accumulation and funding for your goals.\n\nToo many people don't know the power of savings. But really, it's about having a purpose, a dream. A goal has no power if you're not working toward it. And savings is a measure of how close you are to that goal.\n\nThe depressing thing about fiat money is that it inflates, debasing your savings, moving you further away from your goals. A third party called the central bank has the ability to steal from your dreams and purpose. And what is life without some purpose? It's a zombie existence where the goal is to stay alive, at whatever cost. In a very real sense, fiat money debases your life.\n\nSo we invest, trying to clear that ever-present monetary expansion/hurdle rate that will offset the theft from inflation. But that's a job onto itself. Managing money is a cesspool of rent-seeking and unless you do it yourself, a lot of the value you accumulate leaks to the Cantillionaires.\n\nBitcoin is freedom from this system. But more importantly, Bitcoin gives you back your savings, gives you back your goals, dreams and purpose because it doesn't leak.\n\nSave and build your character so that when you have enough to pursue your dreams, you have the courage to jump. \N 1105 \N 200205 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.59590708671109 0 \N \N f 0 \N 0 115661993 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 371498 2025-01-17 12:04:35.593 2025-03-29 22:39:46.788 Property management built on Bitcoin I own and manage apartment complexes - its what I have done for over 25 years at this point and I am pretty good at it... I am also a Bitcoiner and I am trying to build a better future on top of Bitcoin that provides value to as many people as possible (including myself).\n\nI have posted on this previously here -> https://stacker.news/items/472995\n\nThis is an update on how its going and what my mind is cooking up....\n\nSo I have 1/6 resident(s) that paid with Bitcoin back in Nov. received a $326.86 rent credit this month - that means their rent paid in Bitcoin increased in FIAT value by $653.72 from when they paid it to me. Obviously I also benefited by that amount as well...this seems to be a win/win use case for Bitcoin. On top of that I am able to save 100% of that Bitcoin (in cold storage of course). \n\nAs I am building this business model I have realized the following:\n\n1. I am in a unique position of not having a prohibitive amount of leverage on my properties which allows me to meet the FIAT needs while accepting about 60% of rent payments in Bitcoin if I ever get there.\n\n2. This business model is so "extreme" that almost no one I talk to about it - gets it. (I am starting to think that I am just not doing an adequate job of explaining how it can work?)\n\n3. My Bitcoin holdings value will likely exceed that of the FIAT debt on the property after less than 8 years (should Bitcoins value continue on its cycle of eating all the value of the current financial system).\n\n4. I need to refine this down to a more concise Business Plan and really start pushing some investors down this rabbit hole :)\n\n5. This is what I have so far... its going to be a non-profit - I am thinking of one of my buildings into it...\n\n1.\tMission Statement: At FWBTCHI our mission is to provide high quality affordable housing to as many people as possible at as many different income levels as possible. We will do this through incorporating Bitcoin into our business model in order to decouple the properties from the current burdens imposed by the various FIAT systems under which they have been forced to operate. This decoupling allows us to maintain rents at 10% below FMR and ensures we always have the ability to maintain the properties in decent, safe, and sanitary conditions.\n2.\tNeeds Assessment: The world has a shortage of high quality, well-maintained, affordable housing. This is clear by simply looking around your current neighborhood with very few exceptions. The FIAT systems we currently live in have proven to be beneficial to the few nearest the money printers and have led to a deepening divide between those who have affordable housing and those who don't. It truly is an ever-worsening problem though those at the top will attempt to tell you different. It doesn't matter where you live, what once was affordable for more is now affordable for fewer. We at FWBTCHI aim to truly change the past paradigms that we all have been stuck within and ensure the affordability crisis ends.\n3.\tProgram Development: Our non-profit business model is really quite simple. We encourage our residents to learn about the current financial system and the system being built upon the Bitcoin (or sound money) Standard. We then allow them to make the decision as to whether they want to participate in our program simply by their decision to pay us their rent in Bitcoin or not. Of course, we provide educational support and examples to our residents to base their decisions upon but in the end, it is 100% up to them. Just living at our property ensures that their rent is 10% below the Fair Market Rent for the area in which they live. We ensure this is the case through an annual Rent Comparison Study (RCS) that we perform ourselves and through a RCS that we pay a 3rd party to perform every 5 years (this ensures we are staying in line). If we are out of compliance with this 10% lower rate there will be penalties, we pay as an agency directly back to the resident(s). The rate is also dictated by the term of the lease and the market. We may perform RCS's more frequently for those in shorter term leases but never less than annually. We also provide annual educational material via digital means to help insure all our residents are aware of this Bitcoin payment option and the benefits they may be foregoing by not participating.\nAs an added incentive to entice residents to pay with Bitcoin those who do will automatically be eligible to split any future price appreciation over and above the paid bitcoin 50/50 with the property anytime for up to 180 calendar days after they originally paid. They may execute this option at anytime during that 6 months and they will receive either a return in bitcoin or a rent credit equivalent to the 50% USD value over and above the original paid bitcoin.\n\nNext comes the funding model - partnerships and collaborations - management plan (inc. KPI's) to measure success\n\nThanks for reading :)\n\n\n\n \N 20337 \N 371498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.40225066110509 0 \N \N f 0 \N 0 52622052 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 177511 2024-05-30 09:22:04.96 2025-03-29 22:39:46.788 Minneapolis Fed Bitcoin Paper | Article Review **Unique Implementation of Permanent Primary Deficits? (2024) | Article Review**\n\nThis is a non-technical review of the paper, ["Unique Implementation of Permanent Primary Deficits?"](https://www.minneapolisfed.org/research/working-papers/unique-implementation-of-permanent-primary-deficits), written by Amol Amol and Erzo Luttmer at the Minneapolis Fed in 2024. It is primarily a theoretical paper exploring the possibility space of government deficit strategies using a stylized game theoretic model of the economy.\n\nIt should be noted that the paper has not been published in a peer reviewed journal. But the paper's authors are fairly well known macroeconomists.\n\n## Summary\n\nAt first glance, this paper appears anti-bitcoin. In the paper's abstract, it refers to Bitcoin as useless pieces of paper. However, the paper acknowledges that fiat are also useless pieces of paper:\n\n> We could have referred to the useless pieces of paper as money. But that term (money) is usually interpreted as government money. We are interested in an economy with useless pieces of paper that are not necessarily supplied by the government.\n\nMoreover, the central result of the paper is that the presence of Bitcoin can prevent the government from running a deficit indefinitely, and force the government to balance its budget in the long run. Does that sound anti-bitcoin? It sounds like a result that Bitcoiners would celebrate.\n\nI don't know the authors, Amol and Luttmer. I don't know whether they are for or against Bitcoin, or what their views on deficits are. Maybe they think indefinite deficits are good and thus Bitcoin is bad. But I don't think the result of the paper is something that Bitcoiners would see as a negative for Bitcoin.\n\n## Do the authors understand Bitcoin?\n\nIt's hard to tell. This paper isn't actually about Bitcoin. It's a heavily theoretical paper about what happens to the government's possible deficit strategies when there's a tradeable asset with fixed supply that's not issued by the government and doesn't produce any direct utility flows.\n\n> We use Bitcoin as a metaphor for a private-sector security that is in fixed supply and that is not a claim to any real resources.\n\nThat's a decent description of Bitcoin, except for calling it a security since Bitcoin has no issuer. However, later in the paper the authors address that. They assume that there is no company that can issue Bitcoin.\n\n## Why does "the Bitcoin" prevent the government from running deficits?\n\nUnfortunately, the paper doesn't give much intuition. It's a purely mathematical paper: setting up the model, deriving the equilibrium conditions mathematically, and proving the result from the equations. Not much discussion about the economic forces is given.\n\nTo give a flavor of what the writing is like, consider this paragraph in the introduction (which is supposed to be the least technical part of the paper):\n\n> Now add Bitcoin and consider a government that targets a permanent primary deficit that is a constant fraction of aggregate consumption. Government policy is not a continuous function of the price of government stock and the price of Bitcoin. It is easy to ensure that policy is consistent with a targeted steady state primary deficit. But we can now prove that, no matter what continuous Markov policy the government uses to rule out a zero price of its stock, there is always another steady state. In that steady state $$r - g = 0$$ and the market values of government stock and Bitcoin are both strictly positive. The fact that $$r-g=0$$ means that the government must again be balancing its budget.\n\nThat's hard to follow, even for a trained economist (but who is not a specialist in macro.) The rest of the paper is even harder to understand (for me). \n\nIf I had to guess, I'd say the presence of Bitcoin makes it so that there will be no demand for government debt (what they call government stock in the paper) if the government is expected to run persistent deficits. And the only way for the government to run persistent deficits is if there is always a demand for government debt. Thus, the presence of Bitcoin renders permanent deficits impossible.\n\n## Main takeaways for Bitcoiners\n\nI think this paper is a highly technical, theoretical paper meant to be read by people interested in theoretical monetary economics. It's not meant to be read by a lay audience or by non-technical policymakers. However, Bitcoiners may be interested in the main result which is that Bitcoin makes persistent government deficits impossible.\n\nThe paper also explores various scenarios in which Bitcoin can be restricted, taxed, or "taken to zero". I don't think Bitcoiners need to overreact to this. It's natural for economists to explore the possibility space of various policies. This doesn't necessarily mean that the authors are advocating for any of these things to happen. And if you were a Bitcoiner, wouldn't you want to be aware of these possible attack vectors?\n\nMoreover, to believe the results you also have to believe the paper's modeling assumptions, which may not be realistic. For example, the paper assumes that current policy can only depend on current prices (and not the historical path of prices), and that the policies must be continuous in prices (so, no trigger strategies or other discontinuous policies with respect to price.) That's not a criticism, because every paper has to make simplifications, and understanding what assumptions lead to what results is the whole point of economics. But what it does mean is that the considered policies to fight Bitcoin may not actually work, since the real world doesn't adhere exactly to the paper's modeling assumptions.\n\n## Conclusion\n\nMy review is partially in response to https://stacker.news/items/733665, which paints the paper in a very negative light. I'm not sure the negativity warranted. I think @028559d218 (the author of above post), and many of the comments, interpreted too many statements in the paper as *normative* when they should be interpreted as *positive*.\n\n- In economics, a "normative" statement is a value judgment about what you think *should* happen. A "positive" statement (i.e. *to posit something*) is a value-free statement about what *would* happen under a particular circumstance. Most of the paper's statements are positive, not normative.\n\nI don't think Bitcoiners need to be angry or overreact against this paper. In fact, we should be happy it exists because we can point to at least one academic paper which demonstrates one of the things we've been saying all along: that Bitcoin is a hedge against indefinite government deficits.\n \N 16309 \N 177511 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.549621498901 0 \N \N f 0 \N 0 237545385 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 129692 2024-02-20 16:24:24.013 2025-03-29 22:39:46.788 Trump Promises - Bitcoin Nashville 2024 I think I got um all. We will see....\n\n1. Build many power plants to support bitcoin mining, AI, and EV chargers\n2. End the war on Crypto led by Senator Warren\n3. On day one fire Gary Gensler\n4. End operation chokepoint 2.0\n5. Keep bitcoin jobs in America\n6. Appoint bitcoin and crypto advisory counsel staffed by people that love the industry\n7. Order treasury and other departments to end CBDC plans. No CBDC while he is president\n8. Defend the right to self custody.\n9. Protect freedom, property rights, and privacy\n10. Create framework for stable coins to continue to establish the dominance of the US dollar\n11. Keep 100% of bitcoin the government currently holds. No more selling by government agencies.\n12. Commute the sentence of Ross Ulbricht to time served.\n\nYou can take these promises for what they are worth. It isn't much but I will say this. I've been paying attention to politics for about 30 years. Trump probably kept more promises (key ones) than any other guy I can recall.\n\nClearly he's pandering. I know he's been consulted by Vivek Ramaswamy and many others about bitcoin and crypto. His words are not the thing to care about here. Nor is the man important. What is important is that he feels the need to make these promises. Bitcoiners can no longer be ignored by these criminals. They feel the need to take a stance.\n\nJust like you shouldn't get your religion from the state. You shouldn't put your faith in people that can make bold promises with little consequence for breaking it. Bitcoin is designed to make these guys less important. This is one step down that road.\n\nClearly Trump doesn't understand bitcoin.\n\n"Bitcoin is not threatening the dollar. The behavior of the government is threatening bitcoin."\n\nBut that's OK. This is just a part of the journey we are all on. Just don't fall for this trick. Vote or don't vote. I don't care. But realize that bitcoin fixes this. Trump doesn't fix bitcoin. I welcome most of these promises he has made. I hope he keeps them. \N 5757 \N 129692 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.4834985208072 0 \N \N f 0 \N 0 134699889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 33808 2023-06-22 12:45:53.128 2025-03-29 22:39:46.788 Damus may be pulled from Apple's app store Just now from Damus developer Will:\n\n> Damus will be removed from the app store in 14 days, apple says zaps are not allowed on their platform because they *could* be used by content creators to sell digital content. This is right before I’m about to give my talk at the oslo freedom forum on how decentralized social networks with lightning integration are bringing financial freedom to the masses... pretty sus… 😕\n\n> This would be a watershed moment: If people can’t transact freely p2p on their platform, this has huge implications for the entire ecosystem of apps with lightning integration and v4v. https://nostr.build/i/a0b028e5b90ae3ae9fb89284425278f4a229accc6e33ddc62b9bf79b3d106a89.jpg https://nostr.build/i/2376418037dec06d83076b6a5c804c5366a8583d935d321ab0ed177771d40192.jpg \N 21164 \N 33808 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.51562387455135 0 \N \N f 0 \N 0 76030007 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 177694 2024-05-30 15:26:34.422 2025-03-29 22:39:46.788 GrapheneOS discloses vulnerabilities actively exploited by forensic companies Link: https://x.com/GrapheneOS/status/1745506661467299946\n\nNitter: https://nitter.net/GrapheneOS/status/1745506661467299946?s=20\n\n## Overview\n\nThe team and users at GrapheneOS have uncovered a vulnerability in smartphones being actively used by digital forensics companies / exploit brokers to facilitate extractions in the after-first unlock (AFU) phase.\n\n**Because of how the vuln is discovered, there is no knowledge of a GrapheneOS user affected.**\n\n**If you are taking advantage of the security features GrapheneOS provides, such as a low automatic reboot time, user profiles, or strong brute-force resistant passwords (like 7-8 diceware words) then you have nothing to worry about.**\n\n## Details\n\nThe exploit discovered is an exploit in the fastboot firmware, which (with methods not known) allows the threat actor to bypass requirements needed to perform a RAM dump on the device. This RAM dump was facilitated by the help of an emergency/unsafe reboot, which does not zero (erase) the RAM safely. An example of an unsafe reboot is a reboot caused by a device admin with remote erasure access or duress app. \n\nWith this RAM dump, a threat actor can brute force a device as key contents remain in memory when a disk encrypted device is captured while in an AFU state. By imaging the memory of any device performing encryption while in use and unlocked, it is possible to completely avoid the secure element's protections because of the key contents in memory they are able to brute force.\n\nMagnet (GrayKey) and MSAB (XRY) are two companies known to attempt GrapheneOS support on their products. Proof of an exploit was uncovered by a public video promoting a bypass for an unreliable device erasure app (Wasted), which is now removed off of all relevant social media after discovery by users of that app and GrapheneOS on forums and GitHub repositories. The video has been provided as proof to Google which is now being evaluated as a high-severity vulnerability.\n\n## Role of GrapheneOS\n\nGrapheneOS already provides hardening and security features designed for the user to take advantage of. Automatic reboot allows the device to reboot after a set amount of time of inactivity, and the improved user profiles allows you to end the session of profiles, removing their encryption keys from memory and back to the secure element. This helps put the profiles and the device back to a BFU state, leaving them unaffected to these types of exploitation.\n\nGrapheneOS' [hardened malloc](https://github.com/GrapheneOS/hardened_malloc) provides several benefits in regards to this scenario, by zeroing data when freed for kernel and malloc. While this is designed to mitigate uninitialized data usage vulnerabilities, this reduces the amount of artefacts in memory a person could analyze.\n\nIn addition, GrapheneOS is close to providing a real duress erasure feature, not based on insecure, bypassable (long known) implementations caused by duress apps like Wasted. This will be delivered soon.\n\n## Further fixes\n\nA reset-attack protection mitigation suggestion has been provided to the upstream to protect Fastboot being used to exploit ramdumps in the future. It's also been suggested to bring fixes to prevent duress apps from having insecure emergency reboots.\n\nGrapheneOS hopes Google fixes or adds a security mechanism in place to help Android users, not just GrapheneOS.\n\n[Donations to GrapheneOS fund the project. Support now to help fund and pay developers and help improve the mobile security landscape for everyone.](https://grapheneos.org/donate) \N 1549 \N 177694 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.694889254973 0 \N \N f 0 \N 0 17499041 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 358384 2025-01-06 12:36:02.754 2025-03-29 22:39:46.788 Hal's Wife Fran Finney Interview I apologize if this has already been discussed or linked. I was so happy to watch Peter McCormack's interview with Fran Finney. She broke her silence to discuss her Running With Bitcoin ALS charity. It sounds like a worthy cause, and I hope to contribute and support it however I can.\nAnyone who is interested in Half Finney, and that should be everyone, will get a lot from the interview. You get first hand insight into his character, motivations and goals. You also learn of the pain and struggles the whole family endured because of his illness and due to a few assholes who made their lives hell as the end neared. It was incredibly sad.\nI hope this is just the first of many interviews Fran does. Maybe she'll write a book. https://fountain.fm/episode/dNvn90D44bwBxm1QC3aQ 20745 \N 358384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8347055770489 0 \N \N f 0 \N 0 202256810 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448328 2025-03-22 14:48:27.333 2025-03-29 22:39:46.789 Everyone I’ve met would be well-served thinking more about what to focus on This is one of those articles that makes me feel bad about myself, since it is so obviously, undeniably true, it's something I knew already, and it's something I'm doing a horseshit job of in my own life. It's by the same guy who wrote about how a [blog is for finding your people](https://stacker.news/items/304309) so if you liked that, you'll like this.\n\nIf you have thoughts about how this manifests in your own life, I'm all ears. https://www.henrikkarlsson.xyz/p/multi-armed-bandit 20606 \N 448328 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 4.57623750383071 0 \N \N f 0 \N 0 87194199 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:07:55.104 f \N \N \N 0 0 0 0 0 0 0 194564 2024-07-04 15:36:52.784 2025-03-29 22:39:46.792 Favorite Pure Entertainment Books? I love to read. During my life I have read to educate myself in lots of different areas. But, I have also read some books just for sheer enjoyment. For me, some examples include all Richard Russo novels, High Fidelity, by Nick Hornby, and any of Hunter S Thompson's books. \n\nI'm wondering what other people on SN read just for the sheer joy of it? \N 19016 \N 194564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6790744342951 0 \N \N f 0 \N 0 218684587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 200414 2024-07-15 16:09:12.135 2025-03-29 22:39:46.792 Capital Formation Weekly #1 ### What is this?\nI was inspired by synthesis posts by @ek ([example](https://stacker.news/items/382187)) and by @siggy47 ([example](https://stacker.news/items/437218)). These are so great, and add so much value to SN -- building layers of meaning atop other meaningful layers, the best kind of capital formation helping things along toward [evergreen-ness](https://stacker.news/items/331942). I wanted to try my hand at something similar.\n\n_Caveat emptor_: if you're generally interested in the kinds of things that I say and think, this series may interest you even more, because it's like the second derivative of that. If you're not, these posts will be even more tedious to you than my posts normally are.\n\n#### 1. [The homelessness crisis](https://stacker.news/items/435046) by @Undisciplined\n\nHomelessness is tragic and sad and gross and infuriating, all at the same time. We've all run into it, probably, and probably all felt deeply uneasy, physically and morally, that such a thing is possible.\n\nThis is one of my favorite posts ever on SN. People who have quite different worldviews are on display, and the topic brushes up against a lot of sacred cows, and yet the discussion was nuanced and respectful. Made me feel good about being a 'citizen' of SN and about its future.\n\n#### 2. [A [pro] Marathon Slipstream rant](https://stacker.news/items/436669) by @mallardshead\n\n(Here's @k00b's original [post](https://stacker.news/items/435551) about the Slipstream announcement.)\n\nIn the beginning everything was simple -- blocks were mostly empty, you transacted btc essentially for free, and used it to buy your gift cards or weed or fake IDs or whatever people bought in those days.\n\nBut shit has now got real, the block subsidy is about to get cut in half, the mempool will probably never clear again, and hopium-fueled ignorance is starting to give way to the pragmatic idea that somebody is going to have to pay for things we used to take for granted. Like transacting in btc.\n\nWhat are the implications when extra financial layers get stacked on top of the simple transaction model? What happens when the mempool fragments into sub-mempools? It's complicated, [as far as I can tell](https://stacker.news/items/436669/r/elvismercury?commentId=437237), but I love that @mallardshead is exploring it.\n\n(Actually, this topic just made me remember this under-rated post by @BITC0IN about the [game-theoretic analysis of btc](https://stacker.news/items/328661). The book is a rare example of really digging into some of the emergent features of btc security, which has bearing on private mempools, too.)\n\n#### 3. [Supper, place, village, city, state](https://stacker.news/items/437181) by @kr\n\nPeople inhabit multiple identities simultaneously. You are an individual person, animated by whatever is flying across your mind right now, and by your personal circumstances. But at another zoom level you're the member of a nation, whether you want to be or not, and your life is hugely influenced by that in a million ways. Even what you think of as the most foundational parts of your perceptual system are hugly influenced by culture [1, 2].\n\nThe article explores how identity is cultivated across these multiple zoom levels. The implications for online communities like SN are obvious; but the implications for your individual life, and for the modern world, [and the future of social organization](https://thenetworkstate.com/), are even more obvious.\n\n(Reminds me of [this post](https://stacker.news/items/389484), also by @kr, covering Geoffrey West's book about multi-scalar organization. Interesting to see @kr's mind at work on this topic...)\n\n#### 4. [The curious case of digital signatures](https://stacker.news/items/436752) by @ek\n\nWhat does it mean to have an identity, in the digital world? And what's the technical process of creating it, proving it, communicating it?\n\nMany people, including myself, have spent countless hours soaking in btc and the cryptographic setting around it without every _really_ understanding wtf it all meant. If that's you, then @ek is your huckleberry -- this post gives you the context you need to understand how the pieces fit together.\n\n#### 5. [Good ways to spend more time with people](https://stacker.news/items/434285) by @Signal312\n\nIt's been on my mind a lot that, when all is said and done, relationships are everything, or nearly everything, that matters in life. But what should you do, if you believe that? Most people -- including me -- act like good relationships will drop off the tree like coconuts.\n\nThis article digs into ways to be more intentional about spending time with people. Related to another @kr post about [friendship in decline](https://stacker.news/items/431844).\n\n#### 6. [Btc as tea party](https://stacker.news/items/435030) by @elvismercury\n\nI think it's fair to say that I have an obsession about not deluding myself about btc's "inevitability" and this is a post digging into that. Specifically, about how much solace we should take, and what conclusions we should draw, from the resilience of mining in China despite that nation's putative 'crackdown' on the industry.\n\nFor my taste, there's way too much fixation on the drunken-bumbling-uncle view of the state, staggering around throwing haymakers that never land, and not enough fixation on the horrific shit the state did, and does, when it feels seriously under threat. Like, invading Iraq, or rounding up people and putting them into death camps. I continue to think that most bitcoiners are not focused enough on this. \n\nYou know that "good times make weak men" thing? Is there a chance that that's you, right now? And you're just confused about what _good times_ means, and how _weak_ manifests in this space? And you're mistaking the patty cake culture-warring of the last couple decades with, you know, actual war? Or what a govt [will do](https://www.law.cornell.edu/wex/civil_forfeiture) when it wants something (also [here](https://stacker.news/items/275618) or [here](https://stacker.news/items/270563)) or the lengths it will go to when it [wants to know something](https://www.ietf.org/archive/id/draft-farrell-tenyearsafter-00.html)? \n\nPeople keep saying: _it failed in all those pursuits, eventually._ I keep saying: _that should not much comfort you._\n\n#### Refs\n[1] Nisbett, R. E., & Masuda, T. (2003). Culture and point of view. Proceedings of the National Academy of Sciences, 100(19), 11163-11170. https://doi.org/10.1073/pnas.1934527100\n\n[2] Chua, H. F., Boland, J. E., & Nisbett, R. E. (2005). Cultural variation in eye movements during scene perception. Proceedings of the National Academy of Sciences, 102(35), 12629-12633. https://doi.org/10.1073/pnas.0506162102\n\n \N 750 \N 200414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3183369742638 0 \N \N f 0 \N 0 219077838 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 206065 2024-07-26 19:46:24.833 2025-03-29 22:39:46.789 🔒 𝗚𝗿𝗮𝗽𝗵𝗲𝗻𝗲𝗢𝗦 — My current setup [](https://imgprxy.stacker.news/RmQl8vDgSNEr_cklgEtN8ll4CgBCSoKeGrhelk6Cwzc/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8xODU5OA)\n\n---\n\n# **This is my current grapheneOS setup.**\n\n---\n\n#### I have three distinct profiles on my phone, each serving a specific purpose.\n\n---\n\n𝗠𝗮𝗶𝗻 𝗣𝗿𝗼𝗳𝗶𝗹𝗲: This is my daily driver, free and ~opensource apps only. It has everything I need for my daily needs. For ~privacy reasons, I've excluded ~bitcoin and ~nostr related applications from this profile to maintain a low-profile and avoid leaking my online identity if someone were to snatch the phone out of my hands.\n\n---\n\n𝗗𝗲𝗰𝗼𝘆 𝗣𝗿𝗼𝗳𝗶𝗹𝗲: This secondary profile is designed as a decoy. I've installed a bunch of normie apps to make it more realistic, and some closed-source ones that I occasionally need. I rarely use this profile. I only switch to it when absolutely necessary, if you know what I mean.\n\n---\n\n𝗖𝘆𝗽𝗵𝗲𝗿𝗽𝘂𝗻𝗸 𝗣𝗿𝗼𝗳𝗶𝗹𝗲: This is where my true online identity lies, and where all the bitcoin and nostr apps reside. TOR, E2E chats, secret notes, and files are all here. I only access this profile when I'm alone and confident it's safe to do so.\n\n---\n\n- All profiles have different passwords, obviously. Fingerprint disabled. And I've customized the color scheme of the menus for each one of them, so I can easily tell which profile I'm on.\n\n- While inside the Decoy Profile, you cannot see the installed apps from the other two profiles, but you can see that there are indeed two additional profiles on the device. I've taken extra steps to obscure this information by changing the profile picture on all three profiles to solid dark color that blends with the UI, and removed the profile names by using a invisible character, making them appear identical (i know it's not 100% fool proof but it's the best we can do).\n\n- All profiles have a pure black wallpaper, and the home screen has no icons, folders or widgets (except on the Decoy Profile). To access an app, I simply scroll up and open it from the default drawer, which displays all installed apps on that profile. This approach saves battery life and adds a slight bit of privacy.\n\n- Each profile has its own VPN running continuously, using different IP addresses, with killswitch turned on. All my free and open-source apps are installed via Obtainium (aka downloads straight from the source). The closed-source 'normie' apps used in the Decoy Profile are from the Aurora Store (aka downloads from Play Store without needing an account).\n\n- Every app installed has most of its permissions stripped away, leaving only the absolute minimum required. Storage and contact scopes are always used.\n\n- Microphone, camera, NFC, bluetooth and location services, always turned off, unless absolutely needed for a brief moment.\n\n- Finally, I have disabled auto-updates on all apps and the operating system itself (by disabling 'System Updater' app). I want to be in control of my device, I choose when to update. I can't risk crowdstrike-like updates, so I wait a few days before updating.\n\n---\n\n![](https://m.stacker.news/45028)\n\n---\n\n[](https://imgprxy.stacker.news/RmQl8vDgSNEr_cklgEtN8ll4CgBCSoKeGrhelk6Cwzc/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8xODU5OA) \N 9669 \N 206065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09836555793618 0 \N \N f 0 \N 0 84189921 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 249216 2024-09-27 17:46:47.252 2025-03-29 22:39:46.789 PSA - you should add backup authentication to Stacker News TODAY Especially for those of us who have been on stacker.news a little longer, this is really important. I was lucky enough to to re-gain access with some help from @k00b and @alby support, but based on what I'm hearing, I gather there's some people who have lost access for good.\n\nHere's a quote from Alby:\n\n>Lightning Login was implemented in different ways by different wallets. This also adds some problems when attempting to make it a standard. The way Alby implemented it with the custodial accounts was indeed related to the lndhub credentials. This brings two problems: you depend on Alby's for your account since the login is linked to a custodial account. And with newer lndhub credentials, when those are renewed, you will lose the login. only legacy lndhub lightning login accounts could be recovered. But legacy lndhub credentials are somehow a security risk because they do not expire. All of these complications are simply to strongly recommend you to link your stacker news account to additional auth options as stated in the first part of the email.\n\nHere's how to do it:\n- Click on your profile name, top right, to drop down the menu. \n- Choose Settings in the menu\n- At the very bottom of the Settings screen is the Auth Methods section. You can add additional authentication methods such as Nostr, Github, Email, etc. \N 15115 \N 249216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.52919111957267 0 \N \N f 0 \N 0 89621652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 292363 2024-11-10 17:03:58.858 2025-03-29 22:39:46.789 Have you thought about when the internet goes offline? 🌐 ### **What happens if the entire Internet became offline or gated?**\nAs a thought experiment, how prepared would you or I be for an internet with services completely inaccessible in many parts of the world? An **internet that could go offline for several days/weeks**. At a time that we are completely over-dependent on it worldwide for much of our cognitive thought, decisions, work & lifestyle.\n\n![](https://i.giphy.com/l0HlGmbxkwkICKykM.webp)\n\nSuch scenarios have already been modelled/simulated by major governments and big tech in recent years and so it may actually be more likely than each of us give credit for. Before you respond with "couldn't happen", just stop and consider that [34% of cloud infrastructure](https://kinsta.com/aws-market-share/) depends on Amazon directly. Just ONE company. With another 30% using Cloudflare. Disruption is more likely than we might expect.\n\nFurthermore, should the internet become an geopolitical attack vector, it's entirely possible that we'd see a counter-reaction (with political support) so that the internet when reinstated and redeployed has **Government identity enforced for every Western service that interacts with the internet**. With speech, searches & clicks linked to your ID and the complete criminalisation of encryption and privacy-preserving tech. All in the interests of public safety.\n\n-------\n### **Win 30k Sats 🥇**\nTo keep things uplifting, `the 'top' comment below will get 30,000 sats` on 27th December at 18:00 - because it'd be great to encourage more people to get involved with uncomfortable ~privacy discussions like these. Will likely run more bounties in future from this territory, for more articles & challenges to come.\n\n-------\n\n### **Inspired by Whitney Webb**\nOver the weekend, I listened to a fantastic interview from [Whitney Webb on WBD](https://www.whatbitcoindid.com/podcast/the-end-of-the-world-as-we-know-it). She's an extremely talented investigative journalist. If you care about your privacy the link takes you to Peter Mac's site rather than YouTube, where you can download the MP3 (a nice touch in today's world). It may not be the most uplifting content, especially not for this time of year. But it is an important conversation, given the trend.\n\nI have already written about [Starlink's unique role](https://stacker.news/items/286873) in a future disrupted internet if we needed to need to switch to cellular connections, as well as the trend of [colonising humans via our data](https://stacker.news/items/352257) . In the interests of providing solutions, I have a **[directory of Stacker News privacy guides](https://stacker.news/items/342249)** , a write-up for those looking at a Plan B location in [Uruguay](https://stacker.news/items/326364), plus a pre-announcement [daily privacy challenge to come in January](https://stacker.news/items/350665). My hope is we can normalise ~privacy for us all, even for those who are fairly early in their journey and who may be desiring some moral support or be questioning the need.\n\nLet me also say that if this happens tomorrow, I would be absolutely ducked 🦆 just like most of you stackers would. So this is also shaming me into making some changes in 2024. We should acknowledge how inconvenient things may become if a) conflict on the internet increases or b) if Big Government is serious about really screwing with the freedoms that we take for granted online. We should be considering from time to time how we can improve our sovereignty in a few areas. In privacy, independence and redundancy to name a few. Even just to regular power blackouts.\n\n-------\n\n### **Social STACKER Score**\nIf you wish, feel free to use the numbered list as a `Social Stacker Score`⚡. 1 point for each subjective item, meaning a total of `30 points` up for grabs. Score yourself or just get involved with the discussion below...\n\n------\n\n## `A. Files & Media`\n1. **Backups** = When was the last time you created backups of personal computer files? Or backups of backups? Do they have solid local encryption enabled?\n2. **Content & Videos** = Have you downloaded content onto hard-drives for future usage? Books, maps and utility videos like home-improvements, electrical repairs, food preservation, hobbie projects, entertainment and films for kids - especially if these become inaccessible or gated.\n3. **Site Hosting** - Do you have your own website/code hosted on smaller service providers? Or are all using services with the popular corporations like Microsoft (GitHub), Atlassian (Bitbucket), Amazon, Google, DigitalOcean, Vercel, Cloudflare?\n4. **Software Packages & Torrenting** = Do you have all the software you need downloaded and installed on drives already? Have you disabled automatic software updates from ALL services?\n5. **Faraday cage** = Could all your electronics go kaput in an instant? Even if your main devices wouldn't, networks may themselves. How would you protect/utilise any expensive electronics?\n\n## `B. Tech`\n6. **Mobile Device** = Do you have GrapheneOS installed on your main device? Or at least have a 2nd Device / a 'Burner' dumb-phone ready to go?\n7. **Laptop** = Do you have a part of your MacOS partitioned for open-source Linux? Have you gone all-in on Linux, QubesOS or TailsOS? Do you even have a laptop with a battery at all, if power were to drop?\n8. **Ring Cameras / Siri Speakers / Google Nest** - Do you have this junk still plugged-in and connected to the internet at your house? Is it really that convenient having these enabled and feeding data back on yourself and neighbours?\n9. **Security** = Do you have 90%+ funds in cold storage? Do you have cold storage hardware that does not require third parties injecting the right code before you can send your funds? Do you have offline 2FA that doesn't depend on a server? A stash of anonymous SIM cards should you need them? Or other privacy tech that will save your bacon?\n10. **Analogue Systems** = Do you own products that do not depend on an internet connection? More and more critical infrastructure has been plugged-into the internet these days. Do you have an analogue radio in the house or other means of finding out what's happening in the world? Looked-into radio repeaters to enable Bitcoin transactions over radio signal? (would love to discuss this more!)\n\n## `C. Home & Internet-Access`\n11. **P2P Networking** - Could you be an Uncle Jim and share internet with loved ones or local people if they also didn't want to subject themselves to an identity-controlled internet? Be it Wifi extenders, mesh networking or sharing parallel cellular networks.\n12. **Neighbours & Community** - do you know your neighbours names? When did you do something generous (share lifts/invites/babysit)? Are you building other local ties & groups? Do you have contacts in other places you know you can trust? People with skills such as electricians, plumbers? \n13. **Plan B** - Do you have somewhere to be in 3 Days (as Robert Kiwosaki says), away from chaotic major cities/towns? What if flights were grounded without internet? When would you know to go? Do you perhaps have a 2nd Citizenship, if civil unrest breaks out in your country or if it suddenly becomes unfavourable to stay for your family? If resources are restricted/rationed? \n14. **Transport** - Is boat, bike or car an option, rather than plane? Do you have your own method of transport that doesn't contain an internet connected kill-switch?\n15. **Skin in the Game** - Will you be teaching self-sufficiency for yourself and those around you, when our ability to rebel against rushed regulations depends on maintaining self-sufficiency? Do you have a foot in the future, with a son/daughter/nephew/niece and a vision of the world you want them to live in?\n\n## `D. Finance`\n16. **Physical Cash or Value for 6+ Months** = If bank accounts & payment networks go offline. Do you have enough to sustain yourself if difficult to wire money or sell BTC? Inventories of goods or 'money' (be it dollars, coins or foods) to use in local markets?\n17. **No Banks / Small Banks** - Do you bank with any smaller companies, who are less likely to be targeted or complicit in the event of inaccessible balances?\n18. **Self-Custody & Coinjoins Outlawed** = Have you decided whether you will comply or not with rushed-through regulations? Have you thought about coinjoining non-KYC coins, and how about KYC if you were to gain a target on your back? \n19. **"F$@% you" Income Streams** = Do you have another income stream besides your main job? Are you able to make and sell goods/services locally?\n20. **NGU Mindset** = Are you ready if everybody else became poor overnight? How would you and I react if Bitcoiners maintain purchasing power and everyone else suffers from wealth destruction? Is your security setup ready for the spotlight? When/if would you KYC or use the ETF, under intense social pressures? \n\n## `E. Redundancy`\n21. **Energy Independence** = Do you have independent sources of energy to keep you connected for more than a few weeks or months? Thinking about energy generation as a form of tax-free dividend? Do you have fuels & perhaps a generator in supply? Batteries available in the event of outages?\n22. **Mining** - Do you have a miner to keep ticking over and supply you with funds to sustain your living and prevent you dipping into your stack? Or to heat your house?\n23. **Food** = Are you developing green fingers or gaining increasing access to land for parallel food systems? Storing surpluses in a pantry, growing foods or have independent water reservoirs around your community?\n24. **Learning** = Are you learning a trade, particularly offline for 2024? Having something else to offer to communities, be it growing produce, teaching (even about privacy), woodwork, electrical, writing may help increase your resilience.\n25. **Debt** - Have you freed yourself of any unnecessary debt burden? Debt creates a liability to others requiring you to service it and potentially make rash decisions.\n\n## `F. Privacy`\n26. **Psychological** = Are you ready to be labelled as a criminal for preserving privacy? How much are we all prepared to suffer, out of convenience, connectivity and criminalisation? Would you keep one foot in the CBDC world or remain outside? Contact with families, friends, your job may depend on this. How would you prevent yourself from poor decision-making to regret later?\n27. **Social Media** - Have you deleted data from X / Facebook & unused services already? When would you consider doing it? Before the A.I. is trained on it and targeting messaging or your weaknesses with it? Or later?\n28. **VPNs** / Tor / Proxy Locations = Do you already use anonymous VPNs / proxies with third parties possessing a proven track record zero logging? \n29. **Proxy identities**? - Would you consider obtaining or utilising a secondary government identity and operating under that rather than your own? And helping those around you to do the same.\n30. **Future** = Have you done enough research into future trends like trans-humanism, Biotech and existing 'scientific' trials that have created some tragic results up until today? Have you properly considered the complete privacy and health implications, before a highly-censored world emerges? Are you becoming dependent upon AI to write code, write articles or feeding Microsoft with your day to day thoughts? Or using open source alternatives to meet your own goals?\n\n-------\n## How did you get on reading? 🎲\nDo you think a **restricted internet will actually create a healthy counter culture and parallel systems**? How prepared and resilient might you be? None of us are perfect, but hoping this prompts us to make some small steps to get started this next year..\n\n\n\n\n \N 11798 \N 292363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4285265806374 0 \N \N f 0 \N 0 13764734 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 316628 2024-12-03 00:26:18.931 2025-03-29 22:39:46.79 Meet The Bitcoin Dev Project - Find Your Path in Bitcoin Open Source Development A career in bitcoin open source offers professional freedom and the opportunity to solve some of the hardest technical problems while collaborating with remarkably talented devs. These benefits aren’t often articulated and outsiders don’t know a career in open source is even possible.\n\nThe Bitcoin Dev Project was created to help devs in their pursuit to learn about and contribute to bitcoin open source. It includes curriculum pathing, career and funding information, and projects & tooling lists.\n\nFeedback and PRs welcome at: https://github.com/bitcoin-dev-project/bitcoin-dev-project. https://bitcoindevs.xyz/ 15045 \N 316628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0628764837504 0 \N \N f 0 \N 0 103376396 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 335519 2024-12-19 19:05:43.939 2025-03-29 22:39:46.79 He Hanged Himself in the Morning Very honest and powerful post. I don’t remember adding this blog to my RSS feed, but looks like he is a bitcoiner and has an account on here. \n\nSorry for your loss @dergigi https://dergigi.com/2024/11/15/he-hanged-himself-in-the-morning/ 15273 \N 335519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.14336443069201 0 \N \N f 0 \N 0 120338 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 140698 2024-03-10 17:23:10.426 2025-03-29 22:39:46.79 📖 How does fiction affect you? Following up from this great photography [post](https://stacker.news/items/373207), I'm asking you to describe how a book, movie, or other piece of fiction altered your state in a big way. I'm curious about the phenomenon of heightened experience as a result of a certain arrangement of words on a page, or shots on a camera. I think of the movies I have walked away from, yet remained within for long afterward. As the consumer of fiction and also the creator, I like knowing other people feel this way just as a human connection thing, because this feeling can be so singular and lonely sometimes, but it's also where I write from. Even as a kid, I was affected by fiction like this, and I would linger in it as long as I could. The name I'm giving it now, "heightened experience," is really unsatisfying. Sometimes I'll say it's when I feel unordinary. What would you call it?\n\nSome examples:\n\n### A Moveable Feast\nThis book by Ernest Hemingway is atypical for his well-known style. While I was reading this book, I did something unordinary. I took it with me into my favorite cafe, alone. I ordered the most indulgent items on the menu. And it was so right to read this book that way. Food for a starving artist. I did not simply read this book, I experienced it. I think that's a big difference between fiction and nonfiction. I'm not going into it to learn something, I go into this book because I want to know another person and compare notes.\n>“As I ate the oysters with their strong taste of the sea and their faint metallic taste that the cold white wine washed away, leaving only the sea taste and the succulent texture, and as I drank their cold liquid from each shell and washed it down with the crisp taste of the wine, I lost the empty feeling and began to be happy and to make plans.”\n\n### Films by Richard Linklater - Before Sunrise, Boyhood\nI've seen Before Sunrise enough times to feel like I'm living in it anytime I pleasure in recalling it to memory, especially when I visit a new place. Linklater is interested in truth before anything else, I think. His films have a sense of realness that can read awkwardly at times. That may lose some viewers, and I think that's fine. After I saw Boyhood, I had trouble returning to my life. If someone had asked me to remember my own childhood, I would have struggled to bring it into focus because Linklater's picture was that clear, clearer than my own (and memory is always clouded anyway). I've confessed my love for Ethan Hawke before on this site, and his work is featured in both of these films very heavily. I don't think you can have Linklater without Hawke. Before Sunrise is the first in a trilogy, and I once went to a showing of these films back to back. I sat in a theater for a whole day watching movies I had already seen. I guess it's because I love the experience I'm left with, the emotional residue.\n>"Fifty thousand years ago, there are not even a million people on the planet. Ten thousand years ago, there’s like two million people on the planet. Now, there’s between five and six billion people on the planet, right? Now, if we all have our own, like, individual, unique soul, right, where do they all come from? Are modern souls only a fraction of the original souls?. Because if they are, that represents a five thousand-to-one split of each soul in just the last fifty thousand years, which is like a blip in the earth’s time. You know, so, at best, we’re like these tiny fractions of people, you know, walking… I mean, is that why we’re all so scattered? You know, is that why we’re all so specialized?"\n\n### Red Pill\nRight before I came to an understanding of bitcoin and discovered hope in the future, I read a little book called *Red Pill* by Hari Kunzru, very appropriately named. Overall, I did not like this book, I have to say. I'm not someone who can diagnose these things, but I believe the experience of reading this book put me into a depressive episode. It serves to articulate all the existential anxieties that are very present within the culture but perhaps are better left unsaid. To me it seems the articulation of such thoughts can only serve darkness, and I don't want darkness in my life. But I think I had to go down into the pit before I could appreciate the light, so perhaps in that sense, this book was useful.\n>"People never talk about the insanity of the decision to start a family with everything an adult knows about the world, or about the terrible sensation of risk that descends on a man, I mean a man in particular, a creature used to relative speed and strength and power, when he has children. All at once you are vulnerable in ways you may never have been before. Before I was a father I’d felt safe."\n\n### Further reading...\nI've already written quite a bit, and this post is meant to gather info rather than supply it. So as a teaser in case you want to read more, [this blog post](https://jnseemore.wordpress.com/2018/09/07/infinite-jest/), from years ago, is my response to the existential meltdown that *The End of the Tour* inspired in me. I hope this collection of examples shows you how fiction can be infinite, right? How it can inspire multitudes of feelings, reactions, epiphanies. Because maybe you and I watched the same film or read the same book, yet we had something so different going on inside us. But maybe that's just me, a literature girl. Thanks for reading, your turn.\n \N 4314 \N 140698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.30559473608334 0 \N \N f 0 \N 0 140687194 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 439760 2025-03-16 16:42:18.825 2025-03-29 22:39:46.791 Node runners: How to became a LSP ### This mini guide is dedicated to all node runners that want to give a purpose more to their LN node.\n\nI really hope that all those Plebnet node runners are reading this mini guide and give use of their LN nodes.\nThis liquidity is what is needed right now for regular users.\n\nI would like to explain some simple steps about how you can offer LN liquidity services for mobile node users.\nThis could be also that "uncle Jim" scenario, where you are offering LN services for your family and friends, that do not/can't run their own node and just want a way to use LN in a safe and private way, self-custodial.\n\nREMINDER: \n- LSP do not hold user funds! It just provide liquidity. This is NOT custody of users funds, is just a way to provide, fast opening channels and good routes for users payments.\n[Read more here what is a LSP](https://thebitcoinmanual.com/articles/explained-lsp/) by @TheBTCManual\n- LSPs are very important for mobile private nodes users, to be able to open good channels that offer good liquidity. Not all LN node in the network are willing to offer this kind of services, because a private node is not always online and is not doing any routing, so those funds are exclusively for their own payments, so the LSP cannot use them for routing. So in some way they depend on users traffic. If the user is not using these funds to do payments, the LSP is not earning any fees. Or even worse, if is opening an inbound channel for the user, the LSP is literally putting money from his pocket into a channel that never move.\n- Is important that these channels services are for users that have most of the time traffic in and out.\n\nSome requirements are to mention first:\n- you have a good LN public node, with history, with good channels, good liquidity, good maintenance.\n- you run a LND node. This scenario is only for LND node, no CLN, Eclair, LDK for the moment.\n- you know very well how to maintain your liquidity in such way that could offer smooth and fast payments.\n- fees you would apply are up to you, but I suggest to not let the greed controls you.\n- you are familiar with Linux and CLI, installing software. NO NEED for noobs that knows only how to use Umbrel and Windows.\n- willing to maintain the service for your users as long as you could. Be fair and help them as much as you can.\n\nThis solution is based on [Dunder LSP specs](https://github.com/hsjoberg/dunder-lsp), that are open source, made by @hampus , developer of Blixt Wallet. All contributions to improve the code are welcome!\n\nThis Dunder LSP is offering right easy onboarding for new [Blixt wallet](https://blixtwallet.com) users, a full LND node on your mobile (I wrote a full step-by-step guide [here](https://darthcoin.substack.com/p/getting-started-with-blixt-mobile)).\n\nI wrote all the documentation for Blixt wallet, with guides and FAQ. And here is one that specifically talk about [how to use Dunder LSP in your Blixt wallet](https://blixtwallet.github.io/guides#guide-lsp).\n[![dunder-process.jpg](https://i.postimg.cc/2SqgjqGh/dunder-process.jpg)](https://postimg.cc/cvSFXLVL)\n\nSo what steps you should do as a LND node runner?\n1. Install Dunder LSP software on your own node machine\n2. Set your own Dunder rules for fees, size of the channels etc\n3. Make some tests with your own Blixt wallet, opening an on-demand channel with 0-conf, instant\n4. Make some more tests with your family/friends Blixt users, to be sure your node is responding well and can route well all the payments.\n5. List your Dunder LSP services on the [Blixt community peers](https://github.com/hsjoberg/blixt-wallet/issues/1033) - soon maybe this list will be integrated directly into Blixt UI so new users can pick easily their peers. Right now is just list where Blixt users are posting their preferred peers to use with Blixt, like a vouched list of peers.\n6. Give feedback to Hampus, post issues on Dunder Github, if you have, participate with PRs for the code. being open source also can be extended to be a LSP standard for other LN implementations and LN mobile nodes (Zeus, Mutiny, Electrum, Breez, Phoenix).\n\nOnly by collaborating, testing, using and improving we can go forward !\n\nHappy Lightning! \N 2322 \N 439760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.71961961804165 0 \N \N f 0 \N 0 30904749 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417090 2025-02-26 05:05:45.201 2025-03-29 22:39:46.791 This Poor town in Peru is adopting bitcoin \N https://youtu.be/C1_MJ1loP-U?si=ZMCdtOtyIhGtLQnU 2749 \N 417090 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 14.4475246463004 0 \N \N f 477425014 \N 3 41273103 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 146235 2024-03-20 14:18:59.475 2025-03-29 22:39:46.788 My first bitcoin PR \N https://github.com/bitcoin/bitcoin/pull/27232 15052 \N 146235 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.62350826276211 0 \N \N f 0 \N 0 208351237 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 300182 2024-11-18 17:24:05.761 2025-03-29 22:39:46.788 Buying non-KYC bitcoins peer-to-peer #1: Peach Bitcoin was created to be peer-to-peer. Yet in spite of this, most people have never experienced this utility of Bitcoin. They buy on a big centralized exchange that generously rewards them with an IOU promising that they own X amount of bitcoin. \n\nUnfortunately, recent history with FTX and the bank runs at SVB have made it quite clear that IOUs aren't worth the paper they're printed on. Enter favorite phrases by bitcoiners such as, "don't trust, verify" and "not your keys, not your coins."\n\nSo if "this is **not** the way" (think Mandalorian), then how *was* Bitcoin meant to be used? Enter P2P exchanges/protocols/apps that utilize the "escrow" function of Bitcoin. This entity will help to coordinate buyers and sellers and help facilitate the escrow such that scams are extremely unprofitable or difficult to pull off. They usually will provide a role as mediator to determine which direction the funds in the escrow should go if something goes wrong and one or more parties act in bad faith.\n\n### Peach Bitcoin App 🍑\n\n[Twitter](https://twitter.com/peachbitcoin) | [Telegram](https://t.me/peachtopeach) | [Website](https://peachbitcoin.com/) | [Discord](https://discord.gg/ypeHz3SW54) | PGP 🔑 = [48339A19645E2E53488E0E5479E1B270FACD1BD2](https://keys.openpgp.org/vks/v1/by-fingerprint/48339A19645E2E53488E0E5479E1B270FACD1BD2)\n\nToday though I want to highlight a specific platform, Peach Bitcoin App, that is available on Android and iOS. It just went into open beta and I was fortunate enough to participate as one of the closed beta testers.\n\nPeach was launched in Switzerland and you are able to transact without disclosing your identity (KYC) as long as you stay under certain daily and yearly limits. Roughly 1,000 euros a day and 100,000 euros a year. Although the actual limit is denominated in Swiss Francs.\n\nAt the time of writing this the Peach app allows users to buy and sell bitcoin with 12 European currencies: euro, franc, pound, koruna, kroner, forint, złoty, krone, krona, and lev. Dollars are not included for the simple reason that if you are in the US you should not be using the app. It would make the creators of the app liable for any regulations that the US wanted to impose.\n\nPeach charges a 2% platform fee to keep the doors open and coffee flowing. And sellers often sell at a premium due to the coveted nature of acquiring non-KYC bitcoin.\n\nHere is a description of the app from their terms and service agreement page:\n\n> Peach is a non-custodial peer-to-peer marketplace that facilitates the connection of two persons in order to purchase and sale bitcoin. Peach provides the following services.\n> 1. A mobile app available for free on the App Store and Google Play Store. \n> 2. Infrastructure for a safe trade with a 2-out-of-2 multi signature escrow solution between Peach and the Seller. \n> 3. A customer support and dispute management service with a Peach mediator employee to arbitrate and settle disputes between users.\n\n### Steps to get started.\n\n1. Download the app\n2. Choose your currency of choice\n3. Choose to either meetup and give cash or stay within the app, using your payment method of choice (Wise, Revolut, PayPal, SEPA, Amazon gift cards).\n\nTo Buy\n\n1. Pick an amount of sats you wish to buy ([1 bitcoin = 100,000,000 sats](https://www.btcsatoshi.com/)). \n2. Find a match with someone.\n3. Fund the sale.\n4. Wait for the person to confirm that they've received the funds.\n5. Receive sats!!! (in the open beta this goes to a wallet within the app, but you can have this go directly to a wallet address of your choosing. Simply add the wallet address in the settings).\n\nTo Sell\n\n1. Pick an amount of sats you wish to sell. \n2. Fund the escrow by sending the sats to the address given to you (once the tx hits the mempool Peach will know. But the sale isn't official until confirmations have taken place, so chose your miner fee based on your own desired urgency).\n3. Wait for a buyer to match with you.\n4. Wait for the buyer to fund the sale.\n5. Confirm that the buyer has paid so that they can receive their sats.\n\nThis was a 🔥 experience I had 👇🏻\n![Imgur](https://i.imgur.com/MY0xXW0.jpg)\n\nAnd that's it! Basically all you need to know about the Peach app. Just know that if you use them, you'll never want to use anything else ever again. It's just so fast and smooth.\n\nSpecial thanks to proofofsteph, Noxyt, Czino, and bitcoinlabrador from the team. And plebs +rapidlab309 and Mike for their help. 🙏🏻\n\n\n_Originally posted at my blog => https://expatriotic.bearblog.dev/peach/_ \N 17817 \N 300182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3108415200891 0 \N \N f 0 \N 0 245499635 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 260185 2024-10-08 13:44:37.56 2025-03-29 22:39:46.788 I made a presentation about Bitcoin (or how I went from waiter to Bitcoiner) This post is just a transcription of [a post](https://frverdeja.substack.com/p/i-made-a-presentation-about-bitcoin) I made on my [personal substack](https://frverdeja.substack.com/)\n\n\n\n# I made a presentation about Bitcoin (and I'm proud of it)\nOr how I went from waiter to Bitcoiner\n\n\nIt's been what feels like a long time since the last time I posted in this blog, between me getting a new job and many things that have been going in my life I haven’t had the time I would like to have to dedicate exclusive to Bitcoin, but here I am again.\nA few months back I made my first ever presentation about Bitcoin and Lightning, nothing fancy, just a small presentation on how to run a Bitcoin and Lightning node and since you’re already using a whole computer only for those tasks, making it into a home server, all with the help of [Start9’s own StartOS](https://start9.com/) and [Umbrel](https://umbrel.com/).\n\nhttps://youtu.be/jwZHF1jN3kw\n\nAfter the presentation was made public I decided to post it on my own social media with a long ass text under it (not Twitter and Nostr tho, I didn’t had the energy to do it at the moment), the original text I wrote for it was too long to post on Instagram so I had to shorten it, I’ve been looking up to posting it somewhere and now that I finally find the time to do so, here it is:\n\n\n# From waiter to Bitcoiner: \n\n\n![2023-11-16 20_11_58-I made a presentation about Bitcoin (and I'm proud of it) — Mozilla Firefox.png](https://m.stacker.news/5092) Me cutting a pizza in the restaurant I used to work at (April 2019) /// Me giving a talk about Bitcoin, Lightning, and homemade servers (September 2023). \n \n\n\nNow, you're probably wondering, "How does someone go from being a waiter to giving Bitcoin talks? What's the catch? Did this person become a crypto trader who peddles scams as if it were a revolution?"\nThe truth is, there is no catch. And if you want to believe there is, well, go ahead. In summary, I studied computer science, but I didn't graduate, and when I arrived in Spain from Venezuela, I could only find work in the hospitality industry. For some reason or another, I ended up liking it, and I spent a few years working in that field. However, during the pandemic, something changed. I began looking for a place to invest my money, and that's when I re-encountered Bitcoin, which I had first heard of in 2012. Back then, I dismissed it, saying, "This is useless" when I saw it drop by 50% in a day. After rediscovering it I speculated a lot with Bitcoin and its imitators and survived almost unscathed through one of the most spectacular bubbles ever seen (which won't be the last; the next one will be even more absurd, with pictures of monkeys on blockchains, coins named after dogs, and perpetual motion machines that work just like any other Ponzi scheme). I also witnessed the largest financial fraud since Bernie Madoff (don't worry, what's going on with Tether and USDT will be much worse than what happened with FTX, and it won't kill Bitcoin either). All of this made me want to study and understand why none of these things (and many more) killed something that supposedly only has value "because we believe it has value."\nTo be honest, I became obsessed. The last time I felt so drawn to something was when I discovered Linux in 2007, which made me want to study computer science, about that time I remember my parentsed to scold me as a child for staying up until 8 in the morning instead of 8 at night just because I was tinkering with config files and destroying my file system and bootloader just to see what happens. Bitcoin has kept me up at night on many occasions because it fascinated me as much as Linux did back in 2007. Linux was impossible for the average person to use at the time, and I was called crazy for saying that people would use Linux in the future, even if they didn't know it. Today, you're probably viewing this post on an Android phone that uses Linux as an integral component, and you might not even realize it. If you have an iPhone, you're not far off either because iOS is also a Unix system like Linux, just not (completely) open source.\nWith Bitcoin, I came across an open-source project that was “abandoned” by its creator over 10 years ago and that gives the `perception of advancing slowly but steadily, but each step it takes is a giant leap (Taproot and Lightning may mean nothing to you today, but they could be among the most important things you'll learn about in a few years). Adding to this it consumes a lot of energy, which isn't great for the environment which should be a reason to stop it, but it keeps consuming more and has shown that it contributes to clean energy generation. It's a very slow payment network compared to others, but today there are solutions that leave VISA and MasterCard crying. It's a supposed new technology that's nothing more than a data structure, an inelastic and unchangeable monetary policy that shouldn't be good for an economy according to conventional economic models, and a whole lot more. Logic would tell anyone that this shouldn't work, but it does, and it's not going to stop.\nRegardless of your opinion about Bitcoin, and even if it never becomes my main source of income (the truth is I don't think I'll become a millionaire by saving a portion of my salary in Bitcoin, although I wouldn't mind it that were to happen), and it remains a hobby that consumes a lot of my free time, it's something that reignited my passion for computer science. It played a significant role in my decision to leave the hospitality industry, re-study Linux, and it also supported me financially while I was unemployed and rediscovering what I love (yes, you can get paid in Bitcoin for freelance work, and I'm still doing it). It's one of the most fascinating things I've seen in my life, and my deep interest in it has helped me grow as a person.\nToday, I'm proud to be able to give a talk about Bitcoin, and I love discussing how it works, its challenges, and, above all, how to use it as money because it's truly amazing.\n\n\n# The presentation itself\nIf you want to take a look at it, just click on the image, it will redirect you to the presentation on Google Slides:\n\n![1b718ed6-3c38-42f3-a463-1f26158e47e5_1237x696.webp](https://m.stacker.news/5091)\n[Computación soberana: Nodo de Bitcoin, Lightning y servidor casero](https://docs.google.com/presentation/d/e/2PACX-1vR5r_Cw9ID4M4JBkYmM2pMoCCitQWcyVMKpF79gxFTmZmiIJTkReh-HpLbwCEtJ-0qImPfMdVPu5iA8/pub?start=true&loop=true&delayms=3000)\n I really wanted to embed it here, but it seems it’s not possible, thanks Stacker :) \n \nBe warned that the presentation is in Spanish and it was never my intention to make it in English, but I might translate it if enough people ask for it but I promise nothing.\n\nFor those who are wondering here are my sources:\n\n* [Requirements and warnings](https://bitcoin.org/en/bitcoin-core/features/requirements) u/bitcoin.org\\*\n* [Run a Validator](https://wiki.polkadot.network/docs/maintain-guides-how-to-validate-polkadot) @ wiki.polkadot.com\n* [How to Run A Fullnode on BNB](https://docs.bnbchain.org/docs/validator/fullnode/) @ docs.bnbchain.org\\*\n* [Ethereum Full node vs. Archive Node](https://www.quicknode.com/guides/infrastructure/node-setup/ethereum-full-node-vs-archive-node) @ quicknode.com\n* [Get Started - Builder’s Guide](https://docs.lightning.engineering/lightning-network-tools/lnd/run-lnd) @ docs.lightning.engineering\n* [Get Started](https://docs.corelightning.org/docs/getting-started) @ docs.corelightning.com\n* [The Lightning Network and the airport analogy](https://darthcoin.substack.com/p/the-lightning-network-and-the-airport) @ darthcoin.substack.com\n* [Fact Sheet @ visa.co.uk](https://www.visa.co.uk/dam/VCOM/download/corporate/media/visanet-technology/aboutvisafactsheet.pdf)\n* [Precios y planes de iCloud](https://support.apple.com/es-es/HT201238) support.apple.com\n* [Planes y precios](https://one.google.com/about/plans?hl=es) @ one.google.com\n* [Proton pricing plans](https://proton.me/pricing) @ proton.me\n* [Planes y precios de almacenamiento en la nube](https://www.microsoft.com/es-es/microsoft-365/onedrive/compare-onedrive-plans-b) @ microsoft.com\n* [Precios](https://mega.io/es/pricing) @ mega.io\n* [Lightning theoretical TPS calculation](https://youtu.be/V7okf9wWGAo?si=VPoRAt3hwR1AcVrs) @ youtube.com\n\nThe sources with the start (*) at the end have been updated since the presentation\n\n## \n\n## Ways to support me\n\nIf you like what I do, don’t hesitate to some zap me some sats on Lightning to any of these addresses:\n\n* ⚡ [pako@lnaddress.com](mailto:pako@lnaddress.com)\n* ⚡ [smallnode@lnaddress.com](mailto:smallnode@lnaddress.com)\n* ⚡ [frverdeja@getalby.com](mailto:frverdeja@getalby.com)\n* ⚡ [pako@stackernews.com](mailto:pako@stackernews.com)\n \N 4819 \N 260185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8167802260377 0 \N \N f 0 \N 0 98714943 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 381788 2025-01-26 23:22:33.816 2025-03-29 22:39:46.788 How i lost 1 bitcoin trying to open channels in the bitcoin lighting network. \nIn preparations for an interview with a bitcoin company i decided to spin up another node using their software to demonstrate a solid understanding on their service. Chain fees were high so i decided to use @alexbosworth’s BoS to open a batch of 5 channels to start. Each with 20m sats. Opening a batch of channels was something i have done many times using BoS. As they say, easy peasy.\n\nExcept this time i didnt have funds on the node. I needed to fund the 5 bc1q channels with an external wallet. Ok no problema, right? Well, without realizing, I created a PSBT, signed it, and broadcasted it all from the external wallet.\n\nAfter broadcasting the tx the command was just hanging. i asked some people why it was taking so long to fund. The response was: "not good".\n\nThe result? To my knowledge, I funded 5 bc1q channels for 20 million sats without the knowledge or signature of the channel peers, resulting in the locking of the funds in a 2-of-2 multi-sig address with no corresponding peer. Well, without them signing the funding tx\n\nYou see, you can never truly lose your #bitcoin. You might lose your hardware, but not the bitcoin itself. Your bitcoin simply exists as an unspent output (UTXO) stored in a human-readable address, waiting to be spent. What you lose is your ability to unlock and spend the UTXOs, i.e., the bitcoin.\n\nThe Recovery: This involved both channel peers listing all their public segwit addresses and finding the matching ones. Once a match was found, both parties could sign an offer for the recovery of funds. This needs to be done 5 times\n\nWith guidance from @lightninglabs devs and @olivergugger, i downloaded Chantools and started the process of recovery using the Zombie Recovery Method. Collaborating with channel peers, one by one we identified matching public segwit addresses and initiated the recovery process. With the first peer, despite checking every segwit address for all 5 channels channel point, a match couldn't be found. Oliver figured out that he had to create a new flag for the repository (Chantools) to expand the number of public keys for larger nodes.\n\nWhat i've learned: The lighting network is full of nuances where a small deviation from the process, a typo, or a miscalculation can result in the loss of funds. \n\nYet, amidst the complexities, lies a community of users, developers, and enthusiasts that are willing to help. So, stay calm. Take a deep breath, for any new challenge you encounter likely has a solution already, with people willing to assist.\n\nNow that i have recovered 4/5 channel points with the last one coming soon, learned more about PSTB and how to use Chantools its time to be “reckless” again!\n\n \N 21047 \N 381788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8451701171074 0 \N \N f 0 \N 0 203180585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436241 2025-03-13 12:14:04.866 2025-03-29 22:39:46.788 Punishment is a Public Good This will be the first of two posts. This one will summarize what we know about the connection between punishment and providing public goods. The follow-up post will be in ~meta and will be my thoughts on how this applies to Stacker News, specifically.\n\nFor the sake of brevity and clarity, I speak a little loosely in parts. \n\n## What are public goods?\nA public good is an economic good that is neither rivalrous nor excludable in consumption. Ok, what does that mean?\n\n- Economic goods are anything with a positive equilibrium price; i.e. things people are willing to pay for.\n\n- Rivalrous goods can only be used by a single person; i.e. one person's use precludes someone else's use.\n\n- Excludable goods can only be used with the permission of the seller.\n\nSo, a public good is something valuable that is available to everyone and usable by everyone. A common example of a public good is radio broadcasts. Once it's put out there anyone can receive it and my use won't prevent yours.\n\nThe concern with public goods is under-provision. That's because each of us has an incentive to not pay for it, since we'll get it either way (as long as someone pays enough for it to be produced). That's the Free Rider Problem.\n\nThere are many possible entrepreneurial solutions to overcome this (like inserting paid ads into the broadcast). Quick aside: the intentional combination of an economic good (the radio program) with an economic bad (the ads) is sometimes called a "kludge".\n\n## The role of punishment\nAnother solution to certain public goods situations, is to punish people for not chipping in. I'm most familiar with this in the setting of subsistence communities. Often, these communities have a communal food distribution because that acts as insurance for those who tried but had poor luck at hunting or fishing or whatever it is.\n\nBecause they've created a public good out of their food supply, each member of the community now has an incentive to put in less effort, because they'll get to eat either way. If everyone shirks, though, there won't be enough food for the community. That's why shirking tends to be heavily punished in these communities. That punishment will generally come in the form of some type of ostracism, possibly including loss of access to the communal food.\n\nIn that scenario, the public good was an artificial construct in the first place, so it was possible to exclude the bad actor. Also, as some of you probably thought, that food ends up being rivalrous if not enough was produced.\n\nStill, one way to deal with free-riding is to punish it sufficiently that it's preferrable to just do the work.\n\n## Punishment itself can be a public good\nA punishment like ostracism is also costly to the punisher, assuming they value that relationship. I may be tempted not to ostracize my lazy friend, which makes him less likely to change his ways. If I choose to ostracize my friend, the cost is borne by me, but I share the benefits with the rest of the community. \n\nThere are also scenarios where it's sufficient for one person to implement a punishment. This is basically the situation with criminal punishments. If I lock someone up for their antisocial behavior, the whole community benefits, but it comes at great expense to me.\n\n\n## TL;DR\nIn the context of producing public goods, punishing non-producers is itself a public good, because it produces benefits that are accessible to everyone. That means there likely won't be an optimal amount of punishment (dispersed benefits and concentrated costs), unless some other layer of compensation develops for those who do the punishing.\n\n## Referrences\nHere are some publicly available sources for those who want to do a deep dive on the topic. I was initially going to tie them into this post, but I got carried away with my stream of consciousness and said most of what I wanted to say.\n\n[Cooperation and Punishment in Public Goods Experiments](https://web.mit.edu/14.160/www/Coop_PunAER.pdf)\n[Different punishment systems in a public goods game with asymmetric endowments](https://www.sciencedirect.com/science/article/abs/pii/S0022103120304364)\n[Implementing punishment and reward in the public goods game](https://thecommonsjournal.org/articles/10.18352/ijc.426)\n \N 4776 \N 436241 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 25.5961348072386 0 \N \N f 5186085368 \N 46 9167060 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:10:20.605 f \N \N \N 0 0 0 0 26 0 0 403121 2025-02-14 13:10:12.024 2025-03-29 22:39:46.788 The Grateful Dead, Cypherpunks, and Bitcoin: What a Long, Strange Tale \n\n![dead](https://upload.wikimedia.org/wikipedia/commons/6/6b/Grateful_Dead_%281970%29.png)\n\n*“We will create a civilization of the Mind in Cyberspace. May it be more humane and fair than the world your governments have made before.”*\n***John Perry Barlow***\n\nAs a long time Deadhead, I attended a bunch of Grateful Dead shows in the New York area in the early 1990s. I had no idea that some of the songs I heard performed were written by a man who was at that very time helping to create the Cypherpunk movement. \n\nIt wasn’t until recently that I became aware of the surprising connection between the music of my youth and one of the people who laid the groundwork for the creation of bitcoin. \n\nA few years ago I read John Perry Barlow’s autobiography, “Mother American Night.” The epilogue revealed that he died two days after finishing the book. All I knew about him was that he had written a couple of songs I really liked. \n\nPutting aside his connection to the cypherpunk movement, his life story made for a very entertaining book. As a real renaissance man, writing was one of his many talents.\n\nAs I read the book, I thought of him as a kind of Zelig. He seemed to know everybody. He was a close friend of John F Kennedy Jr. He dropped acid with him and his then girlfriend Daryl Hannah. He also has the dubious distinction of having given the former president’s son his first flying lesson. Barlow met the Dalai Lama, and supposedly dated his daughter. He was a Republican for a while, and he helped run one of Dick Cheney’s campaigns. He eventually turned on Cheney, telling him to his face that he was Dr. Strangelove. He was a mentor to Edward Snowden, and they remained friends through his exile.\n\nYou wouldn’t have guessed his future by researching his austere, rural upbringing. \n\nJohn Perry Barlow was born in Wyoming, the son of a Morman Republican State Senator. His parents owned a ranch, where Barlow claimed he was raised “by drunken cowboys and farm animals.” Due to his family’s strict religious values, he was only allowed to watch televangelists on TV. After managing to get straight ”F”s as a high school freshman, his father eventually shipped him off to boarding school in Colorado Springs, Colorado. There he met future Grateful Dead guitarist Bob Weir. They became lifelong friends and collaborators. He began writing lyrics for Weir’s songs in the early 1970s.\n\n\nDuring college he discovered LSD at Timothy Leary’s Millbrook, New York gathering place. He introduced Weir and other members of his new band, The Grateful Dead, to Leary and LSD. Drugs were a big part of his world, and they remained so throughout his life. \n\n![acidtest](https://upload.wikimedia.org/wikipedia/commons/c/cb/Original1965AcidTestFlyerPrint.uncolored%2Cunmodified.jpg)\n\nBarlow was a natural libertarian, although to the best of my knowledge he never described himself as such. He valued freedom, and had a strong distrust of government. As a result, he became active in the world of internet freedom. In 1990 Barlow co-founded the Electronic Frontier Foundation (EFF) with John Gilmore and Mitch Kapor.\n\nIn the early 1990s Barlow co-founded the Cypherpunks mailing list with David Chaum. Barlow and Chaum, among others including Adam Back and Hal Finney, discussed cryptography, privacy, and individual rights. Barlow is credited with coining the term “cyberspace.” He believed that anonymity was necessary to freedom. "I feel the same way about anonymity as I do about guns. It may be useful to have in the closet if the government gets out of control."\nAt the same time he participated in the message board he continued to write songs for the Grateful Dead.\n\nHe also was continuing his work with the Electronic Frontier Foundation. \n\n![Barlow](https://upload.wikimedia.org/wikipedia/commons/c/c9/John_Perry_Barlow_cropped.jpg)\n\n## “Those Weary Giants Of Flesh and Steel”\n\n\nWhen the U.S. Telecommunications Act of 1996 was passed by Congress, Barlow wrote "A Declaration of the Independence of Cyberspace" in response. The declaration was in the form of a letter addressed to the World Economic Forum.\n \nHere is the full text, although I recommend you watch him read the document himself in this 2013 [video](https://youtu.be/3WS9DhSIWR0) :\n\n\n### A Declaration of the Independence of Cyberspace\n by John Perry Barlow\n\n> Governments of the Industrial World, you weary giants of flesh and steel, I come from Cyberspace, the new home of Mind. On behalf of the future, I ask you of the past to leave us alone. You are not welcome among us. You have no sovereignty where we gather.\nWe have no elected government, nor are we likely to have one, so I address you with no greater authority than that with which liberty itself always speaks. I declare the global social space we are building to be naturally independent of the tyrannies you seek to impose on us. You have no moral right to rule us nor do you possess any methods of enforcement we have true reason to fear.\nGovernments derive their just powers from the consent of the governed. You have neither solicited nor received ours. We did not invite you. You do not know us, nor do you know our world. Cyberspace does not lie within your borders. Do not think that you can build it, as though it were a public construction project. You cannot. It is an act of nature and it grows itself through our collective actions.\nYou have not engaged in our great and gathering conversation, nor did you create the wealth of our marketplaces. You do not know our culture, our ethics, or the unwritten codes that already provide our society more order than could be obtained by any of your impositions.\nYou claim there are problems among us that you need to solve. You use this claim as an \nexcuse to invade our precincts. Many of these problems don't exist. Where there are real conflicts, where there are wrongs, we will identify them and address them by our means. We are forming our own Social Contract. This governance will arise according to the conditions of our world, not yours. Our world is different.\nCyberspace consists of transactions, relationships, and thought itself, arrayed like a standing wave in the web of our communications. Ours is a world that is both everywhere and nowhere, but it is not where bodies live.\nWe are creating a world that all may enter without privilege or prejudice accorded by race, economic power, military force, or station of birth.\nWe are creating a world where anyone, anywhere may express his or her beliefs, no matter how singular, without fear of being coerced into silence or conformity.\nYour legal concepts of property, expression, identity, movement, and context do not apply to us. They are all based on matter, and there is no matter here.\nOur identities have no bodies, so, unlike you, we cannot obtain order by physical coercion. We believe that from ethics, enlightened self-interest, and the commonweal, our governance will emerge. Our identities may be distributed across many of your jurisdictions. The only law that all our constituent cultures would generally recognize is the Golden Rule. We hope we will be able to build our particular solutions on that basis. But we cannot accept the solutions you are attempting to impose.\nIn the United States, you have today created a law, the Telecommunications Reform Act, which repudiates your own Constitution and insults the dreams of Jefferson, Washington, Mill, Madison, DeToqueville, and Brandeis. These dreams must now be born anew in us.\nYou are terrified of your own children, since they are natives in a world where you will always be immigrants. Because you fear them, you entrust your bureaucracies with the parental responsibilities you are too cowardly to confront yourselves. In our world, all the sentiments and expressions of humanity, from the debasing to the angelic, are parts of a seamless whole, the global conversation of bits. We cannot separate the air that chokes from the air upon which wings beat.\nIn China, Germany, France, Russia, Singapore, Italy, and the United States, you are trying to ward off the virus of liberty by erecting guard posts at the frontiers of Cyberspace. These may keep out the contagion for a small time, but they will not work in a world that will soon be blanketed in bit-bearing media.\nYour increasingly obsolete information industries would perpetuate themselves by proposing laws, in America and elsewhere, that claim to own speech itself throughout the world. These laws would declare ideas to be another industrial product, no more noble than pig iron. In our world, whatever the human mind may create can be reproduced and distributed infinitely at no cost. The global conveyance of thought no longer requires your factories to accomplish.\nThese increasingly hostile and colonial measures place us in the same position as those previous lovers of freedom and self-determination who had to reject the authorities of distant, uninformed powers. We must declare our virtual selves immune to your sovereignty, even as we continue to consent to your rule over our bodies. We will spread ourselves across the Planet so that no one can arrest our thoughts.\nWe will create a civilization of the Mind in Cyberspace. May it be more humane and fair than the world your governments have made before.\nDavos, Switzerland February 8, 1996\n\n It was a very influential manifesto, and still has its own [page](https://www.weforum.org/agenda/2018/02/a-declaration-of-the-independence-of-cyberspace/) on the World Economic Forum web site. Edward Snowden claims that reading Barlow’s declaration changed his life. \n\nAmong his greatest achievements was his work with the Electronic Frontier Forum. To this day, the work done by the EFF ensures that for all practical purposes bitcoin and similar software enjoy first amendment constitiutional protection in the United States. The organization provided legal representation and advocacy for Professor Daniel J. Bernstein in the case of Bernstein v. United States. Bernstein was a computer scientist and professor at UC Berkeley and the University of Illinois. The plaintiffs argued that restrictions on the publication of cryptographic algorithms violated the First Amendment's protection of free speech. They contended that computer code is a form of expression and that regulating or restricting its dissemination is a violation of free speech rights.\n\nIn 1999, the United States Court of Appeals for the Second Circuit ruled in the case of Bernstein v. United States that computer source code is protected as free speech under the First Amendment. The court concluded that source code is a means of communication and expression, and therefore, any restriction on its publication or distribution would implicate the First Amendment.\n\nIn 2012, he founded the Freedom of the Press Foundation with Julian Assange, Edward Snowden, and others, including Glenn Greenwald. Assange tweeted this upon heaqring of his death:\n***“Very sad to hear my friend John Perry Barlow [@JPBarlow] with whom I started the Freedom of Press Foundation has died aged 70. Barlow was a fighter and a lover. He lived a rich life, filled with passion and purpose. The best of America.”***\n\n![wikileaks](https://upload.wikimedia.org/wikipedia/commons/7/7b/2802-2011-Alexander-Klimov-AnonMask-WikiLeaks.png)\n\nBarlow continued writing and lecturing about online freedom for the rest of his life. The internet is filled with videos of his speeches, lectures, and Ted Talks. He was a brilliant man and a tireless advocate.\n\nHere is my favorite Barlow quote:\n\n*”When cryptography is outlawed, bayl bhgynjf jvyy unir cevinpl.”*\n***John Perry Barlow*** \n\n\nBarlow’s funeral was a unique and controversial event. He was laid out dressed on his bed, wearing his favorite cowboy boots, while his family and friends gathered around him. Bob Weir played guitar and sang “Cassidy”, one of Barlow’s most well known songs. \nA video of the [event](https://youtu.be/yTUYH8LP2Jc) is on youtube. Warning, some people might find it disturbing.\n\nIt is not an overstatement to say that his work did much to lay the foundation for the cryptographic advances that led to bitcoin, while making it very difficult for projects like bitcoin to be made illegal in the United States. \n\n![Posterbarlow](https://www.eff.org/files/2018/03/29/barlow4-og.png)\n\n***Electronic Frontier Foundation Memorial Poster***\n \N 7119 \N 403121 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 13.0797828791279 0 \N \N f 544068920 \N 4 103594819 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 448527 2025-03-22 16:54:08.193 2025-03-29 22:39:46.788 Choose wisely your LN wallet you want to use ### A quick LN wallets guide for newbies\n\nI've made another graphical reference of LN wallets for all those new users coming into the Bitcoin space.\nBEFORE starting to use Bitcoin over Lightning Network (LN), please think about the use case you have.\nThis graphical representation could help you choose the right ones for your use case.\n\n[![wallets-3-circles.jpg](https://i.postimg.cc/fRZVc4J8/wallets-3-circles.jpg)](https://postimg.cc/7fsP4W1z)\n\nIn this image, we can see that Zeus is the only one that can be used with all three options and with multiple accounts / connections.\n\nDo not blindly follow the influencers advice to "use X or use Y app". Most of them don't even know well how those apps works or not even know the existence of better ones. They just feed you with the apps they (usually) are paid to promote or they use for themselves.\n\nChoose your wallets based on your own usage and situation you encounter using your BTC.\n\nSome aspects to be taken in consideration:\n- There's no such thing as "best wallet" for everything. Remove this bias from your mind. Choose with your own knowledge, not because x and y told you so.\n- I would not "recommend" any wallet app in particular, but those that are open source and have a good reputation/history and respect the golden rule of Bitcoin: not your keys, not your bitcoin.\n- Use those that are open source and can be downloaded directly from their Github repos. [Here is a guide about using de-googled devices with Obtainium](https://darth-coin.github.io/beginner/bitcoiners-mobile-device-en.html)\n- Stay away from "multicrapto" wallet apps. Are a fucking trap and usually are not open source! Bitcoin Only! Any app that contain anything else that is NOT Bitcoin is a crap wallet app. You have been warned!\n- Use not just 1 or 2, but 3 or 5-6, each one will have its own moment to be used and take advantage of their best features for the case you need.\n\nLearn more about each wallet app, to know them better and know in which case you could use the one that have the most appropriate features. I wrote several guides about BTC-LN wallets:\n- [⚡ Lightning ⚡ Wallets Comparison Guide](https://darth-coin.github.io/wallets/lightning-wallets-comparison-en.html)\n- [Getting Started Stacking Sats Noob Journey](https://darth-coin.github.io/beginner/getting-started-stack-sats-en.html)\n- [Private ⚡️ Lightning Network Nodes ⚡️](https://darthcoin.substack.com/p/private-lightning-nodes)\n- [Getting started with ⚡ Lightning Network ⚡](https://darth-coin.github.io/beginner/getting-started-lightning-en.html)\n- [More specific guides for LN wallets](https://darth-coin.github.io/wallets/wallets.html)\n- [What mobile device should bitcoiners use?](https://darth-coin.github.io/beginner/bitcoiners-mobile-device-en.html)\n\n### Think like a bank, not just be a bank... - [Read the FULL guide here](https://darth-coin.github.io/beginner/be-your-own-bank-en.html)\n\nA. HODL = your "central bank" with most of your stash, your reserve bank, barely moving it, onchain\nB. CACHE = your "commercial bank" with medium size amounts, for redistributing to HODL and SPEND, onchain and LN, nodes channels etc\nC. SPEND = your spending pockets, with small amounts, enough to cover your regular spending, LN, with funding source from your "CACHE bank".\n![](https://m.stacker.news/36606) \N 20979 \N 448527 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 28.9992627462554 0 \N \N f 1318365842 \N 9 88893378 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 86850 2023-11-16 18:19:49.599 2025-03-29 22:39:46.788 Bitcoin’s Proof of Work matters *Episode: XX. Block height: 854000. What is Proof of Work and why does it matter. An essential deep dive into Bitcoin's heart and soul.*\n\nSubstack: https://carlbmenger.substack.com/p/proof-of-work\n\nIn the digital dawn of decentralized dreams, where the old chains of finance lie shattered, a new paradigm emerges called Bitcoin. Its heart, a rhythmic and relentless pulse, beats to the tune of Proof of Work (PoW). In Bitcoin's universe, central authority is but a dim memory, replaced by the luminous ballet of decentralisation. Proof of Work choreographs this dance, inviting all who possess the requisite tools to join the performance. It is a symphony of independence, where power is dispersed among the many, and the music of consensus echoes across the Network. This dance, ever-evolving and inclusive, embodies the spirit of a trustless and liberated economy. This episode seeks to capture the essence of PoW's importance. No PoW, no Bitcoin, no Freedom! So let us dive in.\n\n![Proof of Work](https://m.stacker.news/42664)\n\n### Consensus Mechanism\n\nProof of Work (POW) is a consensus mechanism that incentivises Network validation by rewarding miners for adding computational power and difficulty to the Network. Maintaining the integrity and security of all transactions is the ultimate objective behind the proof-of-work consensus mechanism. The term "Proof of Work" refers to the requirement that Bitcoin miners must prove they have expended computational effort in the form of real world energy (The link to the physical world). This process ensures that adding a new Bitcoin block requires significant resources, making it difficult for malicious actors to manipulate the blockchain. PoW allows for a distributed, open consensus mechanism where any participant with the necessary computational resources can become a miner and contribute to the Network’s security and validation processes.\n\n### Truth Machine\n\nBitcoin is often referred to as the "Truth Machine" because it establishes a decentralized and verifiable method of achieving consensus on the blockchain. By requiring miners to solve complex mathematical problems, PoW ensures that the addition of new blocks to the blockchain is computationally intensive and resistant to tampering. This process validates transactions and secures the Network, making it nearly impossible for any single entity to alter the transaction history. Consequently, it provides a transparent and trustless system where the consensus on the state of the ledger is maintained by the collective effort of the Network participants, ensuring the integrity and truthfulness of the data recorded on the blockchain.\n\n### Energy Consumption\n\nBitcoin's Proof of Work (PoW) mechanism requires a significant amount of energy because it relies on miners solving complex cryptographic puzzles, which demand substantial computational power. This process ensures Network security and integrity by making it exceedingly difficult and resource-intensive to alter transaction data. The high energy consumption stems from the sheer volume of computations needed to find the correct hash for each block, with miners worldwide competing to solve these puzzles first. The energy-intensive nature of PoW acts as a deterrent against attacks and ensures that adding new blocks to the blockchain remains a fair and decentralized process. The more energy the Network uses, the more secure Bitcoin is. This means that Bitcoin energy consumption is a feature and not a bug.\n\n### How it Works\n\nThe operation of PoW in Bitcoin involves several key steps. When a user initiates a transaction, it is broadcasted to the Bitcoin Network and grouped with other transactions into a mempool, a pool of unconfirmed transactions. Miners then select transactions, ranked according to the transaction fee selected by the user, from the mempool to form a candidate block. This block includes the transactions and a header containing the previous block's hash (forming the blockchain), a timestamp, and a nonce, a random number used for hashing. Here is an example of Bitcoin Block 851415:\n\n![Meme Pool](https://m.stacker.news/42665)\n\nMiners compete to find a valid hash by repeatedly hashing the block header, incrementing the nonce each time. They aim to find a hash that meets the Network‘s difficulty target, which requires the hash to begin with a certain number of leading zeros. The more zeros, the more difficult it is to find the hash. Once a miner finds a valid hash, the block is broadcasted to the Network. Other Bitcoin nodes validate the block, and if it fulfills the Bitcoin rules, they add it to their copy of the blockchain and distribute it to other nodes, so that every node in the Bitcoin Network is up-to-date.\n\n**NOTE:** Bitcoin node runners are the ones enforcing the Bitcoin Network rules. Thus, running your own Bitcoin node is crucial for ensuring the security, privacy, and decentralization of the Bitcoin Network. By operating a full node, you verify transactions and blocks independently without relying on third-party services, which enhances the integrity and trustworthiness of the information you receive. Want to run your own node? Check this out: https://stacker.news/items/100665\n\n> „Bitcoin is not ruled by Bitcoin-Miners but by Node-Runners.“\n\n### Mining Reward\n\nThe miner who successfully adds a new block is rewarded with newly mined bitcoin (the block reward) and transaction fees from the included transactions. Mining rewards are a critical incentive for miners. Initially, the reward for mining a block was 50 Bitcoin. However, to control the supply of Bitcoin and mimic the scarcity of precious metals, the reward halves approximately every four years (210,000 blocks) in an event known as "halving." The first halving occurred in 2012, reducing the reward to 25 bitcoin. Subsequent halvings occurred in 2016 (12.5 bitcoin), 2020 (6.25 bitcoin) and earlier this year (3.125 bitcoin). This halving process will continue until the total supply of Bitcoin reaches 21 million, projected to occur around 2140.\n\nAs you can imagine, the Bitcoin halving is a difficult event for miners because it reduces the block reward by 50%, directly cutting their revenue while their operational costs, such as electricity and hardware, remain constant. This squeeze on profitability forces less efficient miners out of the market, intensifying competition. Despite these challenges, the halving is essential to control the supply of new Bitcoin, maintaining scarcity and mitigating inflation. This built-in scarcity mechanism helps to preserve Bitcoin's value over time, ensuring its long-term viability and stability by enforcing its deflationary nature and ensuring that Bitcoin production in the form of mining remains efficient.\n\n### Difficulty Adjustment\n\nIn addition to the halving, an algorithm called the difficulty adjustment ensures that it will take the entire Bitcoin Network a fixed set of time to validate new blocks of transactions. The difficulty adjustment occurs approximately every 2,016 blocks (about once every two weeks) to maintain the target block time of approximately 10 minutes. This means that miners coming and going from the Network on an individual basis do nothing to affect the difficulty level minute to minute or day to day. This mechanism prevents any single entity from easily taking control of the Network. The computational effort required for PoW makes it extremely costly and time-consuming for malicious actors to alter the transaction history or double-spend coins.\n\n#### Sybil Attack\n\nProof of Work (PoW) effectively protects Bitcoin from Sybil attacks by requiring significant computational power to influence the Network. To execute a Sybil attack, an adversary must control over 50% of the Network’s total computational power, a feat that is prohibitively expensive and practically unfeasible in a decentralised Network powered by proof of work, making Bitcoin resilient against fraudulent activities.\n\n#### Double Spending\n\nFurthermore, PoW plays a crucial role in preventing double-spending, a fundamental challenge in digital currencies. Double-spending refers to the risk that a digital currency can be spent twice, undermining its value and trustworthiness. In the Bitcoin Network, the PoW mechanism ensures that once a transaction is added to the blockchain, it is computationally impractical to alter it. Each block, once validated and added, is linked to the previous block through cryptographic hashes, creating a secure and immutable chain of transactions. The energy-intensive nature of PoW acts as a deterrent against malicious behavior. For a fraudster to successfully double-spend, they would need to re-mine all subsequent blocks faster than the rest of the Network, which requires an enormous amount of computational power and energy. This high cost of attack makes Bitcoin's PoW a robust defense mechanism against various types of fraudulent activities, and the use of real-world energy is necessary.\n\n### Proof of Stake **SUCKS**\n\nWhereas PoW ensures decentralisation, Proof of Stake (PoS), the consensus mechanism most altcoins, including Ethereum, use, leads to centralization because it inherently benefits those who already hold significant amounts of the cryptocurrency. In PoS, validators are chosen to create new blocks and validate transactions based on the number of coins they hold and are willing to "stake" as collateral. This means that wealthier participants with larger stakes have a higher probability of being selected, earning more rewards and further increasing their stake over time. This feedback loop leads to an inevitable concentration of power among a small group of stakeholders, reducing the Network’s decentralisation and potentially making it more susceptible to collusion and manipulation. It is no surprise that big corporations and governments are in favor of the PoS consensus mechanism because being in control is everything for them.\n\n### Conclusion\n\nProof of Work, the lifeblood of Bitcoin, flows with a rhythm that is both fierce and fair. It secures the Network with unyielding strength, decentralises power with graceful balance, aligns incentives with harmonious purpose, and shields against the shadows with unwavering resolve. In the grand opera of digital currency, PoW is the maestro, conducting a symphony of security and freedom. Its demanding energy requirements and computational challenges create a high barrier to entry, deterring malicious actors and ensuring that the ledger remains immutable and transparent. Through this relentless and robust mechanism, PoW maintains the integrity and trustworthiness of the Bitcoin Network, fostering a decentralised and resilient financial ecosystem.\n\n### The End\n\nThat's it for this episode. I hope you got some valuable information from this one. Don’t forget: *Proof of Work, using a significant amount of energy, is essential for Bitcoin’s decentralisation and security!* Thanks for reading, and see you in the next one.\n\n**₿ critical, ₿ informed, ₿ prepared.** Yours,\n\n![Carl B Menger](https://i.postimg.cc/QxMq5Npk/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n### Stay tuned\n**Subscribe to my Newsletter:** https://carlbmenger.substack.com/publish/home\n**Follow me on X**: https://mobile.twitter.com/CarlBMenger\n**Follow me on NOSTR:** npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Related Topics\n[III] Don't trust, verify: https://stacker.news/items/100665\n[XIV] The Bitcoin Halving: https://stacker.news/items/487510\n\n### Crowdfunding\nSo far, this is just a vision! But if you want to make a difference in this world, join my mission on Geyser Fund to build the best and coolest #Bitcoin-only accommodation in El Salvador(https://stacker.news/items/571274), bringing together people all around the globe, and spreading tangible Bitcoin knowledge. Your support makes all the difference: https://geyser.fund/project/bitcoinhostelinelsalvador\n\n![Bitcoin Hostel](https://i.postimg.cc/HsBdZz81/IMG-0591.avif) \N 20190 \N 86850 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.3911234443857 0 \N \N f 0 \N 0 32271266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 301810 2024-11-20 08:46:44.236 2025-03-29 22:39:46.788 What will be your reaction plan in an imminent case of total annihilation ? Let's say we discover that our world, planet in maximum 5 years (or less) will be destroyed totally by something so big that we cannot avoid, prevent or evade it. The planet will be evaporated, became dust.\n\n## What will be your first 5 actions you will do? \n\nPlease explain in just few words, no need for much details or stories. I just want to see what are people's priorities in such an extreme case. No judgement, no comments, free your mind.\n\nThanks \N 4973 \N 301810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8903339608863 0 \N \N f 0 \N 0 23245229 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 378383 2025-01-23 19:43:47.241 2025-03-29 22:39:46.788 Random Thoughts On Territories Rather than making a meta post every time I have a thought about territories, I thought I would collect a few and make one post. Here goes:\n\n### My mistakes so far\n\nI own three territories. Maybe (definitely) I bit off more than I can chew. It’s not easy to even approach the break even point financially. I went into this with an “if you build it, they will come” mentality, which might have been a bit short sighted (really dumb). After one month there are far fewer territories. Reality set in for many owners. That’s probably a good thing for Stacker News. I heard @Car and @K00b talking about the situation on SNL. Keyan thinks there will be a group of creative, hard working territory owners who will be successful. This of course depends on the fee structure and the overall growth of Stacker News. It also made me realize that I had to do a lot more hands on work to help my territories. That includes crafting posts, commenting, thinking up contests and promotions, marketing outside SN, and supporting stackers who use my territory. In short, it requires the energy and brain power to come up with ideas that will foster engagement and ultimately bring in enough sats. My hands off “let it happen” approach ain’t working yet. It is still early, and I’m committed to sticking around for a while, but I must start working harder. \n\nIt got me thinking about something else too.\n\n### Collaboration\n\nTo own a site you need a lot of sats. To be successful, you also need someone to do the hard work I mentioned above. There are probably plenty of stackers with great ideas, skills, prior work experience, and/or energy to put into a territory who simply can’t afford to do it themselves financially. What if there was a way to collaborate with a stacker who can afford to maintain the site by paying the rent? There could be some sort of reward split. If you look at a territory as a business, you can have sat equity and sweat equity investors. It also could be structured as an owner/manager situation, or independent contractor type arrangement, where the owner hires a manager to run the territory. I’m interested to know if anyone else thinks this is viable. It seems that it would be simple to implement. SN would just need to allow daily territory awards to be shared.\n\n### Sub Territories\n\nThis is a good idea, but it seems to me that it will be a long time before this makes sense, if ever. Most territories have enough problems staying afloat right now. Why would anyone be interested in paying for a sub? I can see an exception,where, for instance, someone wanted to create a sub territory in music dedicated to a particular band or something, which could become more popular than the territory itself. In that case, though, the sub owners might be inclined to create their own territory and collect all the revenue. I can’t imagine that the market value of any sub territory would be very high right now. It may be a simple fee splitting arrangement.\nIn short, I have trouble envisioning how sub territories will be profitable.\n\n### Marketing\n\nI see two types of territories on SN: bitcoin related, and non-bitcoin related. Most bitcoin related territories may never need to do much marketing. In fact, some basically peeled off existing content and claimed it as their own. Examples include ~lightning, ~bitdevs, ~devs, ~fedimint, ~litdevs, ~mempool, and my ~bitcoin beginners. \n\nNon-bitcoin related territories have a much more difficult path to success, and marketing is critical. The most obvious target audiences can be found on other sites and forums like reddit or single interest forums. \nFor my ~DogsandCats territory, this is an urgent need. I don’t have those skills, and should probably partner up with someone who does if I take financial viability seriously. My purpose in starting this territory, beyond my love of dogs and cats, was sort of an experiment to see whether I could make a Stacker News territory a means to orange pill non bitcoiners and foster adoption. Profit is obviously secondary.\n\n### Pinned Posts\n\nI know this is planned, but I have to repeat myself and mention it again. I really think this will help with building a territory’s identity and create incentives for stackers to write quality content. This can’t happen soon enough. Owners can reward the best posts by pinning them, where they will have exposure to "prime real estate" and hopefully earn more sats. \N 16988 \N 378383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.85765884314306 0 \N \N f 0 \N 0 120147696 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 302377 2024-11-20 17:04:41.096 2025-03-29 22:39:46.789 Bitcoin NEVER leaves you I lost my wallet recently ( *a friend confused mine with his, and he was boarding his plane* ), so I was in a situation where I didn't have any cash or card with me. However, I had my phone on hand, guess what did I do? 👀\n\nThe first thing I did was calm down and think, and it turned out that I could get some cash with my phone at the airport. However, many things went through my mind that day: **What if I lost everything?** One thing that strikes me the most is that Bitcoin NEVER leaves you; I wasn't completely panic that day, knowing that I got seeds somewhere I could quickly assess to, and I've done quite some work up front, pilled some people and businesses around me, which means I can always ask for help and pay for things I need in sats.\n\n**One of the takeaways from that day was you might think that you are helping people when pilling them, but maybe you are also planting the seeds of helping your future self.**\n\n____\n\nClosing up this post with a thought experience: **what would you do if you lost everything in a foreign country?** \N 16542 \N 302377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.66484066345629 0 \N \N f 0 \N 0 101373813 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 313841 2024-12-01 00:30:47.58 2025-03-29 22:39:46.789 Block Template Similarities between Mining Pools \N https://b10c.me/observations/12-template-similarity/ 18017 \N 313841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5776040535285 0 \N \N f 0 \N 0 23247369 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 129726 2024-02-20 17:26:36.499 2025-03-29 22:39:46.79 Book Review- The Genesis Book \n![](https://m.stacker.news/37313)\n\nAaron Van Wirdum is one of the best writers working in the bitcoin space. I first heard of him when this book was released. I don’t know why. Maybe I never check Bitcoin Magazine bylines. I read the glowing reviews. I even downloaded a free digital copy, which I can’t seem to find. I didn’t read it because I thought it only focused on the cryptographic work that preceded the genesis block, so I was afraid it would be over my head technically. I’m glad I finally decided to give it a try. It is a must read for anyone interested in bitcoin. \n\nAaron has already had a long, impressive career. He studied journalism and politics in college, where he “adopted a focus on the historic influence of new technologies on societal structures.” He bought his first bitcoin in 2013, and has been writing about it for Bitcoin Magazine ever since. He also served as the editor in chief of the print edition of that publication. \n\nThis book is by no means a straight chronological history. The author weaves parallel narratives together which ultimately concludes with the bitcoin white paper. These narratives include the origins of money, the formation of the “Austrian” school of economics, twentieth century geopolitics, the anarchic origins of hacker culture and the FOSS ethos, as well as the cryptographic advances of the cypherpunks. In its telling, these distinct histories are blended brilliantly to tell a fascinating story. \n\nI wondered if it was my imagination, or has this book flown a bit under the radar? Is it as good as I think it is? I sought the opinions of people who I respected. Here are some quotes:\n\n> “Until now you could find many books about Bitcoin, but none that covered its multifaceted cultural background in a complete, systematic, and elegant way. Aaron van Wirdum, already famous for his ability to accurately convey subtle technical matters to a generalist audience, just wrote it. A must-read if you want to understand where Bitcoin came from.”\n— Giacomo Zucco\n\n\n> “Why is Bitcoin so different from its predecessors? This book sheds light on the *problems* which vexed smart, hardworking people in the pre-Bitcoin era. That is the right way to tell a technology story. All of the important problems are included, and they're all in the proper order. The best Bitcoin book yet written.”\n— Paul Sztorc\n\n> “The Genesis Book takes us on a century-long journey through the little-known stories of visionaries whose insights and innovations laid the foundation for the revolutionary creation of Bitcoin. From the economists who challenged conventional wisdom to cypherpunks who blazed new trails in privacy, Aaron van Wirdum meticulously weaves together a tapestry of technological triumphs, setbacks, and extraordinary breakthroughs. You'll be captivated by the anecdotes of individuals who dared to dream beyond the status quo, pushing the envelope to reshape the landscape of money itself.”\n— Jameson Lopp\n\nI feel fortunate that so many highly regarded bitcoin related books have been published over the past few months. This was the first one I read of the recent releases, and I made a good choice. Read this book.\n \N 15119 \N 129726 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.772777606939101 0 \N \N f 0 \N 0 151488587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 144708 2024-03-17 12:50:33.067 2025-03-29 22:39:46.79 Ocean.yxz find a block! \N https://mempool.space/block/000000000000000000009ef7ac2c30976bc7e05c2cdab10e5a5de7efd96492a7 5728 \N 144708 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.78494667121171 0 \N \N f 0 \N 0 4768048 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 360748 2025-01-08 11:34:46.952 2025-03-29 22:39:46.79 Apple - love it or hate it? 🍏 I'm hoping we can get another detailed discussion going around Apple's software and discuss in particular whether they have moved forward or backwards consumer ~privacy in recent years.\n\n![Apple privacy](https://m.stacker.news/18531)\n\nHere are some Stacker thoughts on SN regarding Apple's prior decisions:\n- [Why I Hate Apple](https://stacker.news/items/195880/r/davidw) by @siggy47\n- [Do you trust Apple's differential privacy?](https://stacker.news/items/224538/r/davidw)by @0397f4ba43\n- [Is Big Tech Prioritizing User Privacy?](https://stacker.news/items/108456/r/davidw) by @kr\n- [The DEA Quietly Turning Apple’s AirTag Into A Surveillance Tool](https://stacker.news/items/158868/r/davidw) by @brxyz\n- [Apple Has Begun Scanning Your Local Image Files Without Consent](https://stacker.news/items/122825/r/davidw) by @cointastical\n- [Apple iOS Devices Don't Route All Network Traffic Through VPNs](https://stacker.news/items/59915/r/davidw) by @unofficial\n- [The Apple Backdoor Explained](https://stacker.news/items/378087/r/davidw) by @Thawne\n- [Apple will popularize chip implants. Here is how.](https://stacker.news/items/150298/r/davidw) by @insanelyFree\n- [Apple trashing Damus](https://stacker.news/items/193161/r/davidw) by @Oialt\n- [Before purchasing that new macbook pro, consider this possible alternative](https://stacker.news/items/203734/r/davidw) by @guyfawkes\n- [Competing with Apple and Google - A Weekend Discussion](https://stacker.news/items/195550/r/davidw) by @sn\n- [Apple does not allow you to install bitcoin core](https://stacker.news/items/233538/r/davidw) by @drfred\n- [Apple removes original Bitcoin whitepaper from the latest macOS Ventura beta](https://stacker.news/items/170126/r/davidw) by @k00b\n- [Apple releases emergency update to fix zero-day exploit in Webkit](https://stacker.news/items/207142/r/davidw) by @k00b\n- [UNIX co-creator Ken Thompson is dumping apple for linux](https://stacker.news/items/153431/r/davidw) by @0359c62f34\n- [Apple quietly released a framework for machine learning on Apple silicon](https://stacker.news/items/340320/r/davidw) by @zuspotirko\n- [Apple ‘passkeys’ look to kill off the password for good – TechCrunch](https://stacker.news/items/34597/r/davidw) by @CypherPoet\n- [Mac Mini (Late 2012) BTC Node - Chapter 1](https://stacker.news/items/186239/r/davidw) by @0xjogir\n- [Apple overtakes Android to account for 50% of smartphones used in US](https://stacker.news/items/66310) by @cryptocoin\n- [Apple Built Its Empire With China. Now Its Foundation Is Showing Cracks.](https://stacker.news/items/100382/r/davidw) by @satup\n- [Apple is Canceling Electric Car Project](https://stacker.news/items/441411/r/davidw) ironically posted by @Car\n- [Having alternatives in Tech](https://stacker.news/items/440079/r/davidw) by @KLT\n- [Apple is killing webapps and PWAs in their powerplay against the EU](https://stacker.news/items/427206/r/davidw) by @sebastix\n- [Apple Confirms iOS 17.4 Disables Home Screen Web Apps in the European Union](https://stacker.news/items/426542/r/davidw) by @DEADBEEF\n\t- [Apple Walks Back Decision to Disable Home Screen Web Apps in the EU](https://stacker.news/items/445394/r/davidw) by @DEADBEEF \n\n\n----\n\n## **Love It Or Hate it**\nI've recently come to the conclusion, Apple is like marmite (or vegemite). For those not aware of these products in the UK & Australia, there is a huge split in terms of whether a 'spreadable yeast' tastes good or bad on toasted bread. Yes, it's actually a thing! \n\nI suspect the same divisiveness exists here on SN regarding Apple. Their laptops are well loved by the developer community, but you either love the brand or you hate it. And I must admit also my tastes are changing somewhat. \n\nIn the years ahead, Apple might choose to run some similar advertising campaign to the video commercial from the Marmite (Unilever) team in 2013. Especially if they out-grow their 'greenwashing' mother-nature messaging, to appeal to their hardcore fans.\n\n![Love it or hate it](https://m.stacker.news/18535)*Love or hate Apple - let's hear why in the comments below.*\n\nhttps://www.youtube.com/watch?v=RG14sDcaJM0\n\n\n----\n\n# **Love It** ✅\n\n### `1. Great Hardware`\nFirst off, I am still an Apple user and I think it's absolutely clear that they make some of the best hardware in the world. Yes, everything is locked-down and not at all open, but they have been a huge success story of the past 20 years, the likes of which we cannot ignore. Particularly on Mac.\n\nFor instance in 2024 battery performance on Macbooks is still completely unrivalled. Neither has any manufacturer seemingly been able to match the snappiness of their trackpad in recent years. Those are 2 very specific characteristics, but they are both items users depend on from almost every use. \n\nThe competition's computers may pack a similar punch in terms of compute or memory performance, and there will of course be better windows devices for gaming, but Apple does otherwise offer the complete laptop package for 'creatives'. Their laptops are well-loved by the dev & creative community as a whole, given the performance and 'swooshiness' of various apps on their devices. We cannot ignore that alternative manufacturers need to up their game here, but given [rumours](https://www.digitaltrends.com/computing/qualcomm-is-ready-to-compete-with-m3-series-in-2024/) surrounding Qualcomm's latest Snapdragon chips, we might soon have some more capable alternatives even if the jury is still out on thermal performance.\n\nMacbook for now remains the most capable laptop. The iPhone today is *extremely* comparable to other competing devices. Inferior in many aspects. For mobile hardware, there's very little reason why we shouldn't all pivot to Android to run GrapheneOS or Calyx. Another post will be dropping on that soon, something we can together here in the coming weeks together (if you're interested)! For Macbook addicts, we can still partition Linux on MacOS, more on that in a future post too...\n\n----\n\n### `2. Lockdown Mode`\n\nNo other big technology company has provided such a significant set of security tools for use cases like journalism or politics. Apple launched a suite of options in 2022, attempting to protect devices against "extremely rare and highly sophisticated cyber attacks". [Lockdown Mode](https://support.apple.com/en-us/105120) is available to anyone wishing to toggle it on, on the latest OS software - be it Mac, iPhone, iPad or Watch. Doing so will block all calls, messaging attachments, photo metadata and drastically limit the code that can be run in browsers.\n\n![Apple lockdown mode option](https://perilofafrica.com/wp-content/uploads/2024/01/Apple-Lockdown-Mode-Security.jpg)\n\nApple do seem to be trying to give customers more choices and are moving forward the industry by implementing these ideas of privacy-preserving technology. Even if it prevents people from finding open-source alternatives, we will likely see far more privacy tools to come in the future because of initiatives like 'Lockdown Mode'. Developers and business pay attention to what Apple is building and so it may not be long before we see something similar on Linux or Android operating systems in the near future. We will also likely see it's capabilities improve, with each OS update to come. \n\nI posted about some positive privacy attitudes [here on SN](https://stacker.news/items/379053/r/davidw) 2 months ago. People are without doubt becoming more privacy conscious. Apple is clearly responding to consumer's growing demand for such solutions, unlike any other company under the 'big tech' umbrella right now. They are advertising about privacy and normalising it as a value-add. So some kudos is deserved here.\n\n----\n\n### `3. Advertising Privacy`\n\nApple is the biggest brand currently shouting-about and recognising privacy as a differentiating feature. They are helping convey to the world that it's something for the masses to be conscious & careful about. They are changing consumer behaviour.\n\nPreviously Apple data in iCloud had been "encrypted" but with the encryption keys in Apple's data centre or Apple's hands. The logic being, Apple could decrypt your data in the event of data loss. At least that is how they justified it.\n\nMore recently however, iCloud is gaining traction for encrypted cloud data too or '[Advanced Data Protection](https://support.apple.com/en-us/HT202303)' as the marketing gurus call it. On the section for end-to-end encryption on the '[Advanced Data Protection page](https://support.apple.com/en-us/102651#advanced)':\n\n>*Starting with iOS 16.2, iPadOS 16.2 and macOS 13.1, you can choose to enable Advanced Data Protection to **protect the vast majority of your iCloud data**, even in the case of a data breach in the cloud. With Advanced Data Protection, the number of data categories that use end-to-end encryption rises to 25 and includes your iCloud Backup, Photos, Notes, and more.* \n\n> *End-to-end encrypted data can be decrypted only on your trusted devices where you’re signed in with your Apple ID. No one else can access your end-to-end encrypted data — not even Apple — and this data remains secure even in the case of a data breach in the cloud.*\n\nWhilst this is a welcome change, it does NOT necessarily mean by using an Apple device and storing your data there that you are 'safe' from prying eyes. Firstly, you need to pay Apple more money on an ongoing basis, to prevent access. And secondly, exploits [have been used for years to get data off iPhone](https://arstechnica.com/security/2023/12/exploit-used-in-mass-iphone-infection-campaign-targeted-secret-hardware-feature/) and directly [off macOS devices.](https://stacker.news/items/207142/r/davidw) Despite Apple stating [here](https://www.apple.com/privacy/government-information-requests/) that:\n\n> *Apple has never created a backdoor or master key to any of our products or services. We have also never allowed any government direct access to Apple servers. And we never will.*\n\n\n-----\n\n# **Hate It** ❌\n\n### 1. `Excessively Expensive`\n\nApple may make good products but my goodness they are expensive. The cost of a standard ‌iPhone 15‌ are [estimated at](https://www.macrumors.com/2023/10/22/record-high-iphone-15-costs/) $423, the iPhone 15‌ Plus at $442 and the iPhone 15 Pro‌ at $523. That's a markup of 89%, 126% & 129% respectively vs current RRP for what is now a commodity item. Their fast Macbook charger, god forbid should you ever need to buy a replacement costs $149. $49 for the cable alone. It's incredible how this practice has been normalised for the industry.\n\n![apple cable pricing](https://m.stacker.news/18532)\n\nArguably we've been subsidising Apple for some time, by them not having a hugely significant offering in the advert industry. Instead, selling us USB-C to Lightning cables for $29 with a shelf-life of 2 years. Apple has not needed to monetise their users via advertising to extreme ends like Google and Facebook have, since they are SO profitable from both their hardware products and App Store. With that in mind, we may struggle to find a better example than Apple, that embodies the spirit of the word `fiat`, perhaps with the exception of [Balenciaga](https://www.balenciaga.com/).\n\n----\n\n### `2. Walled Garden`\n\nWhen you think of anti-trust these days, one of the first brands that comes to mind *is* also Apple. Particularly, as of today US and EU authorities are on the verge of [delivering the verdict of a new investigation into Apple](https://archive.is/sMy1z), regarding the iPhone, its App Store & payments system being uncompetitive. It will likely see the company hit with a new record fine, given that Uncle Sam and his friend are short of a few pennies these days. We may also see new requirements to open-up and allow apps to be side-loaded, which may in actual fact be a bonus for us bitcoiners. Apple recently confirmed their decision to retain [PWA support](https://stacker.news/items/445394/r/davidw), which as @k00b suspects could actually be a negotiating ploy for these anti-trust cases:\n> *It's possible they never planned to remove it to begin with. Making a ridiculous offer you intend to back out of can make counterparties feel like you're compromising more than you are.*\n\nIn other prior moves, let us not forget either, that Apple in the interests of privacy removed the ability for mobile apps to access the IMEI numbers on devices. \n\nThey did so in the name of privacy, whilst pushing and providing greater targeting than their competitions via their own advertising product. Allowing advertisers to target based on age, gender, location & interests (app categories). They [prevented cookies](https://www.theverge.com/2020/3/24/21192830/apple-safari-intelligent-tracking-privacy-full-third-party-cookie-blocking) from firing for third parties in browser, whilst still collecting device usage information for themselves. They increasingly [make it more difficult for people to install](https://www.funkyspacemonkey.com/how-to-open-applications-from-anywhere-in-macos-sonoma) a simple app onto MacOS, be it open-source or from a trusted source, whilst being judge and jury for app approvals all whilst collecting their 30% tax their inside the App Store. They rolled-out AirTags in a supposedly private manner, only for them to become a terrible innovation and tool of choice for victims of stalkers and [surveillance](https://stacker.news/items/158868/r/davidw).\n\nWe talked about the benefits of 'Lockdown Mode' earlier but the cynic in me does believe this is the hook that maintains people dependent upon Apple, to require the 'latest and safest' software and hardware upgrades. With more barriers to untangle themselves from the web of 'protectionist' features.\n\n---\n\n### `3. Government Access x3`\n\n### A. Government Influence\nThere *are* known links between Western Governments and companies [like Microsoft](https://unlimitedhangout.com/2021/05/investigative-reports/the-cover-up-continues-the-truth-about-bill-gates-microsoft-and-jeffrey-epstein/), [Palantir](https://unlimitedhangout.com/2023/10/investigative-reports/how-peter-thiel-linked-tech-is-fueling-the-ukraine-war/) and [Google](https://www.theguardian.com/news/2018/dec/20/googles-earth-how-the-tech-giant-is-helping-the-state-spy-on-us) for example. Apple to a lesser extent, but at times it has felt like Apple is *actively* introducing features that Governments wants them to. Take for example automatic software updates, on-device image & file scanning for 'child protection' and 'contact tracing' to name a few. \n\n### **B. Government Backdoors**\nWe also know that recently a vulnerability had existed on Apple devices for quite some time and if you are interested in the more technical aspects of that, [this article](https://securelist.com/operation-triangulation-the-last-hardware-mystery/111669/) is worth a read. It was also discussed in detail on the [Security Now](https://twit.tv/shows/security-now/episodes/955?autostart=false) podcast:\n\n> *The vulnerability was there with subtle changes through 5 generations of chips. That doesn’t feel like a mistake; and there are far more straightforward means for debugging. No one hash-signs a packet to be written by DMA into memory while debugging. That makes no sense.*\n> \n> *Also, the fact that its use is guarded by a secret hash reveals and proves that it was intended to be enabled and present in the wild. The hash forms a secret key that explicitly allows this to exist safely and without fear of malicious exploitation without the explicit knowledge of the hash function. This is a crucial point that I want to be certain everyone appreciates. This was clearly meant to be active in the wild with its abuse being quite well protected by a well-kept secret.*\n\n> *Somewhere, people within Apple knew of this back-door. **They knew that this backdoor was present and they knew how to access it**. And somehow that secret escaped from Apple’s control.*\n\n### C. Government Requests\nMore recently, Apple has been making a pivot to storing more data on device, as people's perception is that it is much more secure there. As we will see, this a natural reaction to guard itself against the spotlight and growing consumer dissatisfaction with [increasing requests from Governments](https://www.apple.com/legal/transparency/), as well as more code vulnerabilities. With Apple complying in roughly [9 out of 10 cases](https://www.theguardian.com/technology/2022/sep/23/apple-user-data-law-enforcement-falling-short). The United States 🇺🇸 have been increasingly requesting `account information` stored in Apple iCloud:\n\n![requests-for-apple-accounts-from-governments](https://m.stacker.news/18541)\n\nThere is a clear increasing upwards trend there for 🇺🇸, but what is interesting is that when looking at the 2nd chart below; China 🇨🇳 is requesting far more `on-device information`, rather than `account information` these days. This is a big distinction vs 2017, when both spiked. This is very speculative here, and no one else I am aware has flagged this, but this may lend itself to the view that China has better tools/leverage to get information off of Apple devices without user knowledge:\n\n![requests-for-apple-devices-from-governments](https://m.stacker.news/18542)\n\n_Note: Both of these charts have been created using data from [Apple's Transparency Report](https://www.apple.com/legal/transparency/). It does not consider any other access that these Governments have privilege to or visibility of. The charts log the 'worst' 9 offending countries by units requested. Both charts exclude Poland, given that their requests for devices skewed the chart significantly around a similar time of the 'wiretapping scandal' in 2014: `Poland 🇵🇱 requested a staggering 500,000 device IDs in the second half of 2014.`_ \n\n----\n\n### `4. Apple's Excessive Data Collection`\n\nIn the aggregate, look at the types of information that Apple still *"needs to"* collect about you on their [privacy policy](https://www.apple.com/legal/privacy/en-ww/). There is perhaps an argument to say that they need to have most of this, to provide the products and services they do today. However it is still a conscious decision, and the facts remain that it is something they have yet to rein-in or reduce to date.\n\n#### Personal Data Apple Collects from You:\n\n- **Account Information.** Your Apple ID and related account details, including email address, devices registered, account status, and age\n- **Device Information.** Data from which your device could be identified, such as device serial number, or about your device, such as browser type\n- **Contact Information.** Data such as name, email address, physical address, phone number, or other contact information\n- **Payment Information.** Data about your billing address and method of payment, such as bank details, credit, debit, or other payment card information\n- **Transaction Information.** Data about purchases of Apple products and services or transactions facilitated by Apple, including purchases on Apple platforms\n- **Fraud Prevention Information.** Data used to help identify and prevent fraud, including a device trust score\n- **Usage Data.** Data about your activity on and use of our offerings, such as app launches within our services, including browsing history; search history; product interaction; crash data, performance and other diagnostic data; and other usage data\n- **Location Information.** Precise location only to support services such as Find My or where you agree for region-specific services, and coarse location\n- **Health Information.** Data relating to the health status of an individual, including data related to one’s physical or mental health or condition. Personal health data also includes data that can be used to make inferences about or detect the health status of an individual. If you participate in a study using an Apple Health Research Study app, the policy governing the privacy of your personal data is described in the Apple Health Study Apps Privacy Policy.\n- **Fitness Information.** Details relating to your fitness and exercise information where you choose to share them\n- **Financial Information.** Details including salary, income, and assets information where collected, and information related to Apple-branded financial offerings\n- **Government ID Data.** In certain jurisdictions, we may ask for a government-issued ID in limited circumstances, including when setting up a wireless account and activating your device, for the purpose of extending commercial credit, managing reservations, or as required by law\n- **Other Information You Provide to Us.** Details such as the content of your communications with Apple, including interactions with customer support and contacts through social media channels\n\n### Personal Data Apple Receives from Other Sources\n- **Individuals.** Apple may collect data about you from other individuals — for example, if that individual has sent you a product or gift card, invited you to participate in an Apple service or forum, or shared content with you.\n- **At Your Direction.** You may direct other individuals or third parties to share data with Apple. For example, you may direct your mobile carrier to share data about your carrier account with Apple for account activation, or for your loyalty program to share information about your participation so that you can earn rewards for Apple purchases.\n- **Apple Partners.** We may also validate the information you provide — for example, when creating an Apple ID, with a third party for security, and for "fraud-prevention purposes".\n\n\n# **So, what am I doing?** 🤔\n\n- Switch to GrapheneOS as daily driver. Stripped-back iPhone for legacy fiat/banking guff.\n- Partitioning Macbook to run Fedora Asahi - gradually move across work before going all-in.\n- Wiped MacOS from Mac Mini to run as a secondary node.\n- Migrating & redirecting all email accounts from Apple (look-out for upcoming ~privacy challenges on this).\n- Consider a non-Apple desktop as daily driver by 2025, for more mindful use and better posture, in a new citadel setup.\n\n-----\n\n# **Upcoming Privacy Challenges** 🍺\n\n`Sunday 10th March - MacOS > Fedora Asahi Linux install on partition`\n`Sunday 24th March - iPhone > GrapheneOS Setup`\n\nI had previously planned for these challenges in January but if you're interested in the GrapheneOS switch - find a way to purchase a second-hand Pixel device in cash these next 2 weeks.\n\n\n![subscribe-to-posts-on-stacker-news](https://m.stacker.news/18537)\n\n**Cowboy tip** 🤠 Subscribe to these posts (by clicking the ... dots on the profile page) if you'd like to be notified when these drop and we'll then do the challenges together!\n\n\n![](https://imgprxy.stacker.news/m36efpFetvKso3Yq_b6TOHmvxHwnz5k33hr5CvgcMZs/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8xODQyNQ)\n\n# Love or hate Apple? Discuss... 🗯️\n\nLet's talk about their products like phones, laptops, watches, software, cloud storage & more. \n**Golden Delicious or a Rotten Empire**, what do the plebs think about Apple ~privacy? \N 642 \N 360748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.4762690351517 0 \N \N f 0 \N 0 133270569 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 391033 2025-02-04 00:26:11.985 2025-03-29 22:39:46.79 High Risk, Low Reward \N https://tonygiorgio.com/high-risk-low-reward/ 21072 \N 391033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3796440351434 0 \N \N f 0 \N 0 165028018 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 53379 2023-08-21 15:09:09.059 2025-03-29 22:39:46.791 My top Bitcoin watch-only wallets Hello bitcoiners!\n\nI've always liked using watch-only wallets on my smartphone, and after trying many apps, I decided to share my experience by compiling a personal top. Maybe some of you will benefit from my choice. All apps were tested on Android.\n\n**Purpose of the article:** To tell about my experience of using watch-only wallets, to suggest apps and maybe to help you find the perfect solution for yourself. The focus is on bitcoin watch-only, but the article will also include a multi-currency app that also supports this feature.\n\n**Why you need it:** It may seem that choosing an app for a watch-only wallet is not that important, but for me it's the external design, high performance and having a wide range of functionality that matters. If the app is FOSS, that's great in general. This article would have helped me a lot in my time, but I couldn't find anything like it, so I had to write it myself. A cry of the soul)\n\n\n**1. Electrum.** _i don't use_ \n![Electrum](https://m.stacker.news/6429)\n\n* Let's start with one of the oldest wallets. It has a very outdated design from 10 years ago. Visually it is not very pleasant to use, but the speed of work and functionality of the wallet is at a high level.\n\n* You can change the balance display in BTC or sats.\n\n* There is an opportunity to set a pin-code to enter the application (does not support biometrics), adding several wallets, not quite convenient switching between them, but in general will do. Transaction information is not very nice looking.\n\n\n\n**2. BlueWallet.** _i don't use_\n![BlueWallet](https://m.stacker.news/6431)\n\n\nAnother veteran. \n* The application design is much nicer than Electrum. \n* Very convenient switching between several wallets. \n* Detailed information about transactions (the number of inputs and outputs is indicated), but there is no display of historical rate. Sometimes it is a necessary function. \n* Setting biometrics to enter the application. \n* From the minuses - very slow cold launch of the application on a powerful smartphone. Weak optimization.\n\n**3. Unstoppable.** _I use_ \n![Unstoppable](https://m.stacker.news/6432)\n\nYou can throw tomatoes at me for shitcoins, but this is one of the nicest and most optimized apps out there. No one is stopping you from using it as a bitcoin wathch-only and nailing all the other crap.\n\n* Cool design. UI and UX. This app wants to be used over and over again. There is an option to disable unnecessary features and coins. \n* Secure login to the app with pin and biometrics \n* Good implementation of switching between wallets \n* Clear transaction information with historical rate display. Information about capitalization, analytics and links to social networks \n* Balance hiding.\n\n**4. Trezor Suit Lite.** _i don't use_\n![trezor](https://m.stacker.news/6436)\n\nTrezor needs no introduction. Not long ago, the company released a mobile version of its app, which is still with some minor bugs (which is why I'm not using it yet). The important thing is that it is a purely watch-only wallet. While previous apps can be used as hot wallets, Trezor suite lite can't do that. This increases its appeal to me. Despite the name, the app can be used simply by importing your zpub key from any wallet. It doesn't necessarily have to be Trezor.\n\n* Cool UI design, but the android version has design flaws that I think will be fixed over time. Not very smooth animations, when displaying the address for receiving increases the brightness of the screen, and then does not decrease when leaving this window. \n* Detailed information about transactions, convenient display, historical rate. \n* Adding multiple accounts and displaying the total amount on these accounts. \n* Biometrics to enter the application \n* Balance hiding\n\n**5. Blockstream Green.** _My daily dirver_ \n![green_hardware_wallets-02.png](https://m.stacker.news/6437)\n\nMy choice of daily use fell on this wallet. It can be both hot and watch-only.\n\n* Nice design, nothing superfluous. Smooth operation. \n* Adding multiple accounts/accounts. Display total balance, or separately \n* Clear transaction information, add labels to transactions \n* Biometrics support for logging into the application \n* Balance hiding\n\nI hope you find this list useful.\n\nThere's also the famous Sentinel app by Samourai, it got an update not too long ago but I'm still looking out for it.\n\nHave a good weekend and a great mood everyone) \N 2735 \N 53379 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.7413509068499 0 \N \N f 0 \N 0 149998779 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 139172 2024-03-08 13:09:53.414 2025-03-29 22:39:46.791 Capital Formation Weekly #2 #### What is this, part deux\n\nIn addition to what I said [last week](https://stacker.news/items/438405), I'm now linking posts using my own description (vs the post title) to show how they sit in my mind -- since the whole point is that this is my own synthesis, vs a summary, that approach seems more consistent.\n\n#### [The basics of pseudonymity](https://stacker.news/items/438065) by @satoshiplanet\nWe're all using nyms, but I've been getting uncomfortable with the chain of opsec violations on the road to this one, and to the others I've built up over the years. (My [recent post on cloud storage](https://stacker.news/items/429534) stems from this growing discomfort.) It's like buying a house where you have a sneaking suspicion that there's something wrong with the foundation.\n\nThe strategies described in the linked guide aren't magic, you can't just check a handful of boxes and then be free to interact however you like online (or irl) without consequence. The contortions you'll need to perform to stay safe vary in proportion to the severity of your activity: if you're just trying to not get doxxed by assholes, that's one thing; if you're attempting to steal billions of dollars from the Israeli government, that's something else.\n\nThat said, this guide is a beautiful starting point to take a harder look at this topic. In my experience, most bitcoiners haven't done even the bare minimum of threat modeling aside from feeling a vague paranoia, so there's some low-hanging fruit to be plucked. (Note also that Christopher Allen / Blockchain Commons is the author of my favorite [technical bitcoin introduction](https://github.com/BlockchainCommons/Learning-Bitcoin-from-the-Command-Line).)\n\nAlso: this makes me think, again, of the conversation I had w/ @nemo and others about [ephemerality](https://stacker.news/items/331942) and online threat models. If I were doing it over again, part of me thinks all my SN participation is a mistake, because a motivated attacker could figure out my identity. But another part of me is like: basically everything I value about being here is a function of building actual relationships and feeling like this is a real place that I care about. Having some Batman-like identity that doesn't reflect actual-me would be ... sad. Is that _really_ how you want to live?\n\nTradeoffs, tradeoffs.\n\n#### [Microstrategy at it again](https://stacker.news/items/439295) by @IgnaciobTato\nHere's the deal: Saylor has been good for btc in innumerable ways. It's also obvious [1] that one company owning so much btc is bad for btc. Oh wait, I hear you saying, how can it be both good and bad for btc at the same time? To which I respond: _welcome to the world, things are complicated here._\n\nYou know what would be great? If Saylor, who loves nothing more than to talk for three straight hours without interruption and almost without taking a breath, would address this issue head-on. The guy is a fucking genius, you can bet that he has spent scores of hours ruminating on it. If I got [one shot with him](https://stacker.news/items/439390), here's what I would ask:\n\n> What can you do in service of the btc ecosystem, other than simply buying and holding, now that you have almost 1% of the supply?\n\n#### [How to be dumb](https://stacker.news/items/440132) by @k00b\nK00b has established just how not-dumb he is with this exploration of how we know things, and even, what it means to know anything -- what are the ingredients of knowing? Maybe those emotions and instincts and gut-feelings actually come from somewhere?\n\nOf course, it's worth noting that the wisdom in @k00b's observation is in a tug of war with people being _really_ dumb, and uncritically following whatever self-soothing biases they're carrying around. It's so much nicer to envelop yourself in a worldview where you are awesome! It's so much easier to interpret ambiguity in a way that lets you be right!\n\nI do this exercise: when I'm really worked up about something, I look inward and ask:\n\n**Q:** How much of this is me being an asshole because I'm squirming out from under some uncomfortable truth?\n\nAnd then, inevitably:\n\n**A:** A lot.\n\n#### [SN analytics](https://stacker.news/items/441843) by @davidw\nDavid, after some unknown number of proddings and goadings, made good on an earlier promise to reveal the secrets to SN success. As you'd expect if you've been around here very long, it's thorough and super interesting. If you want to give yourself the best chance of posting when you're likely to earn more sats, the charts in this post are your cheat code.\n\n(I'd be interested in any additional thoughts on my [generous stacker hypothesis](https://stacker.news/items/441843/r/elvismercury?commentId=441959), btw.)\n\n#### [Games for grokking bitcoin](https://stacker.news/items/443274) by @DarthCoin\nWe've talked before about the [conceptual underpinnings](https://stacker.news/items/274195/r/elvismercury?commentId=274654) needed to make btc comprehensible to people in the world.\n\nBut that's so abstract. What visceral conceptual understanding is needed? How might a person acquire that?\n\nThis game is an example of one interesting way to realize this goal. It makes me wonder: what are others? Useful strategies for establishing these conceptual primitives might not look like the _education_ strategies we normally think of. They might look like play.\n\n#### [10k infected github repos](https://stacker.news/items/443319) by @0xbitcoiner\nSurely I am tedious in infinite ways, but one of them that I'm also self-aware about is the idea of trustlessness. Any time I hear someone use the term I mentally adjust my estimate of their IQ down by twenty points.\n\nI don't want to be [that guy](https://simpsons.fandom.com/wiki/Comic_Book_Guy), but really, there is no trustlessness. The closest substitute is to understand the trust dependency graph and to allocate your attention judiciously. The linked article is another vivid example of this truth.\n\nIn addition to the mythical status of trustlessness and Santa, the idea of DYOR is also extraordinarily weaker than people pretend. I mean, you can DYOR, and you should, but it's important to be honest about what that's getting you. Have you ever compiled code from Github? I did. Did you go through it line by line to make sure there's not an evil payload in there someplace? I didn't. Are you confident you'd even be able to recognize it if you saw it? I'm not.\n\n**Update:** [Here's another post](https://stacker.news/items/444802) linking to a better Ars Technica writeup of the affair.\n\n#### [Fred Krueger's btc perspective](https://stacker.news/items/443372) by @siggy47\nNormally somebody's hot takes on the future of btc is yawn-inducing and I don't even read it unless the person has a background that implies un-correlated information with my usual info diet; and this finance guy, or whatever he is, doesn't make the cut according to that standard. But Siggy's recs mean a lot, so I listened, and I'm glad I did.\n\nIf you spend most of your time soaking in the warm bath of maxi narratives, this podcast will probably be unpleasant for you, for a host of reasons I won't enumerate. But what a good angle. My .02 is that he's more right than wrong.\n\nIn particular, there's one hard truth I think he's locked in on, which is that, while there's probably another 10x in btc/USD price, and _maybe_ even 100x (if you're willing to wait 30 years), this has an implication that lots of btc peeps are deluding themselves about: the days of putting in pocket change, and getting life-altering returns out the other side, are over. Like: if you put in $10k, which is a lot, and 30 years from now have a million dollars of purchasing power? Like, great, but I regret to inform you that you will not be living the High Life.\n\nI mean, it gives me no joy to say this. I wish I was class of 2011 and writing this from my mega-yacht while being fanned with giant palm leaves by women wearing leather bikinis; but I'm not, and I won't be, and probably you're not and won't be, and we should calibrate our expectations accordingly, if we haven't already. (I already have.)\n\nAgain: hope I'm wrong! Hope we run into each other at the private airport! I will buy you a steak to apologize for my short-sightedness.\n\n**Update:** A related [post](https://stacker.news/items/445096) by @Undisciplined getting at the same stuff. Much elaborated in the comments. Many people disagree with me forcefully.\n\n#### [Thoughts on justice](https://stacker.news/items/444980) by @Scoresby\nWhat's the purpose of justice? Is justice the highest good? What is it trading off against? How does this change when you're the arbiter of justice, and trying to raise your kids to not grow up to be dicks?\n\nThis post made me super happy, not bc the topic is a feel-good topic, but bc we're talking about it here! How great. What a fucking beautiful development.\n\n#### Notes\n[1] Well, it's obvious to me. Is it not obvious to you? \n\n**Update:** Oh, well, apparently it's [not obvious](https://stacker.news/items/446513) to @DarthCoin. \n \N 3360 \N 139172 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.8485608690311 0 \N \N f 0 \N 0 177883530 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 334629 2024-12-19 00:59:49.636 2025-03-29 22:39:46.791 Multiplication in Bitvm Someone made a multiplication function for the STU-1, my 8bit computer that runs on bitvm (and thus on bitcoin)! It's true, you can write bitcoin smart contracts in Assembly now instead of learning boolean logic circuits. Try it yourself here: https://github.com/supertestnet/8bit-cpu-for-bitvm\n\nhttps://youtu.be/SxUKAun-Ojs \N 16145 \N 334629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.481163565682 0 \N \N f 0 \N 0 41938714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 93355 2023-12-02 04:20:11.803 2025-03-29 22:39:46.791 Minibits.cash - Cashu wallet with Lightning-Ecash ⚡ addresses with zaps on nostr \N https://twitter.com/CashuBTC/status/1752972414462329075 700 \N 93355 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.4325221019651 0 \N \N f 0 \N 0 58572077 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 250311 2024-09-29 06:36:08.825 2025-03-29 22:39:46.788 Some thoughts on what's worked for me in my first ten days here **Background**: I found and joined SN a few days before Million Sat Madness was announced, so I just barely had time to get used to the daily status quo before it changed. Which also means I probably felt the loss of the daily rewards less because it wasn't like I'd had a huge expectation of daily sats that was now gone. And similarly, while I've swung from anywhere from off the board to #26, I'm in a position where I don't feel pressure to make the top 64; I'm already up thousands from stacking in a little over a week, and even if I don't get a single bonus, that's not going away.\n\nThat said, I wanted to share what's worked for me as a newbie here to make me feel more comfortable using the site. \n\n**1. If we're interacting, I'm zapping.**\n\tIf you've made a post or a comment that I think is worth replying to, I'm going to do you the courtesy of a zap first. Just seems like a way to acknowledge that you've made content that's engaged me, and if I'm asking you to take the time to read and reply, a few sats seems worthwhile. Obviously, in a back-and-forth conversation, this has diminishing returns (literally) since we've established we're both invested in the topic already, but that's the exception. I guess if I ever feel comfortable enough to flame what I think is an awful statement I probably wouldn't zap that, but flaming in general isn't my jam.\n\t\n**1.5 If we're not interacting, I still may be zapping.**\n\tThis took me a little bit to get -- some posts (especially links) generate thousands in zaps with no comments. If you see something you like and that you want to reward, zap, but don't feel the need to comment just to fill space.\n \t\n**2. Success begets success.**\n\tWhen I first started and got a few sats from my intro, I started looking at communities that interested me. While I felt confident *commenting* in some of the pricier communities (because comments are still cheap), I didn't feel comfortable posting in them, since one post would have cost half my sats. But then I posted to some of the more affordable ones and got sats from those, and that gave me both the confidence and the sats to post to communities where posting cost 100 or more sats.\n\t\n**3. Losing is learning.**\n\nHaving sats to lose also means that having a post not get zapped (or not get zapped enough to justify the cost) doesn't hurt as much. But obviously, even if I'm not in it exclusively for the sats, if I'm not getting any zaps or comments, it's not getting any engagement. No sats and no comments means no dopamine rush from seeing that red dot. But it also tells me what the community (or a subset of it) considers interesting or valuable. If I post a few that get no traction, no big deal. But if I keep doing that, it's a waste of money and it fills the timeline with garbage[^1].\n\n**4. Strategy is overrated. Have fun.**\n\nSometimes I get as many sats for a quick link or a comment as I do for a long post. While no engagement at all isn't good, worrying about maximizing my zaps just isn't worth it. I enjoy SN, and I want to keep it that way, so I'm posting things that I want to share, commenting on posts that I want to engage with, and not stressing about best time of day or which territories have the most readers. Doing that would probably net me more sats, but also burn out my enjoyment of the site. I don't want SN to be work; it's the thing I do at work when there's nothing else going on.\n\t\n**5. Learning Markdown is fun**\n \n I'd long meant to learn Markdown, but had never gotten around to it mainly because most of the places I go online are plaintext or WYSWYG, and I use Word in the fiat mines. So I've never needed to, and no, it's hardly the most complicated thing, but it's fun getting the hang of it; using Markdown to format posts reminds me of being forced to learn basic HTML in the LiveJournal days some 20+ years back.\n \n I'm sure there are things I'm forgetting, but there's only so much work I can avoid this morning. :-)\n\n[^1]: Yes, almost every post here is someone's "garbage" (or at least something they don't care about), but if your post isn't of interest to anyone at all, it's a waste of space. \N 21804 \N 250311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20687541540011 0 \N \N f 0 \N 0 234192700 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 32394 2023-06-16 11:44:25.552 2025-03-29 22:39:46.788 The Problem of Using Attention as a Currency The internet never had a native currency, so it had to use a surrogate:\nattention.\n\nDue to the lack of a digital native money, we had to use credit (IOUs)\nto send money electronically. Fraud & chargebacks made micropayments\nimpossible.\n\nTwo models evolved:\n\n1. _\\"You are the product\\"_, which uses attention & user data as a currency\n2. _\\"Subscription hell\\"_, which uses credit IOUs, which requires full control & KYC, and doesn\\'t allow for micropayments (it\\'s always \\~\\$5 or more, nothing else would be profitable)\n\nYou can monetize some services outright: storage and compute are easy\nexamples, because they are scarce. JPGs, however, are not scarce. They\ncan be reproduced at zero marginal cost.\n\nBecause reproduction is free, a digital image or a piece of text can\\'t\nhave a market price. It can\\'t emerge, because supply is infinite. I can\ncrush the paywall and distribute it for free. We have to disconnect\nprice from value, and we have to think about both differently.\n\n**Bitcoin ⚡ fixes this.**\n\nI believe that, in a value-enabled web—a web that does\nfacilitate the free flow of payments, in addition to the free flow of\ndata—new models will emerge that are not bound to selling eyeballs and\noutrage. We should use money as money, not attention.\n\nOf course, this is already happening. The obvious examples are:\n\n- _[Podcasting 2.0](https://podcastindex.org)_, lead by the Podcast Index,[^fn-pis] which allows for value-enabled podcasts.[^fn-v4v]\n- _[Stacker News](https://stacker.news/)_, which uses a slightly different approach: every action has monetary value attached to it, making bots uneconomical.\n\n[^fn-pis]: Join [podcastindex.social](https://podcastindex.social) and chime in!\n[^fn-v4v]: Visit [value4value.info](https://value4value.info/) to learn more.\n\nThe thing about monetary value is that it is human action distilled.\nMany signals can be faked or auto-generated, be it views, downloads,\ncomments, and even content and profiles. In other words: talk is cheap.\nSats are not.\n\nThis is Day 2 for the Internet.\nIt\\'s still Day 1 for Bitcoin.\n\\...and Day 0 for the Value-Enabled Web.\n\nA lot of people are trying to solve the conundrum the internet found itself in:\n\n- [Elon](https://twitter.com/elonmusk) wants to fix it. \n- [Jack](https://twitter.com/jack) understands these problems deeply and has the right ideas when it comes to fixing them.\n- [Saylor](https://twitter.com/saylor) understands that cash money brings real consequences and real cost to cyberspace,[^fn-cost] which is one piece of the puzzle. \n- [Daniel](https://twitter.com/csuwildcat) understands that we have to get the identity piece right, without having to rely on trusted third parties.\n- [Snowden](https://twitter.com/Snowden/) understands these problems and is on the right track, and like him, I am optimistic that we will be able to fix them.\n\n[^fn-cost]: Listen to [Saylor on the Bitcoin Matrix](https://pod.link/1534519469/episode/54931b6a4142335fdc84ce249b59469a). I'd recommend you [listen on Breez](https://pod.link/1632017958/episode/4140110ced3524d74b9da3c914ddbb16) or Fountain.\n\n> "I'm thankful for the Internet. One day it will be free and open, edge to edge."\n> —[Edward Snowden](https://twitter.com/Snowden/status/1595802834611900416)\n\nCentral control doesn\\'t fix this. A new platform doesn\\'t fix this.\nProtocols do. In addition to using the right protocols, we have to fix\nthe incentives. And for that we have to fix the money.\n\n**Bitcoin is fixed money.**\n\nDigitally native money—money that is not credit—is a big deal. It is\na big deal because infinite velocity of money is a big deal, and the\nremoval of counterparty risk is a big deal. There is a reason why cash\nis king.\n\nAnd when it comes to monies, \nBitcoin is the king of kings.\n\n---\n\nOriginally published as a [twitter thread](https://twitter.com/dergigi/status/1596126980402864131). Also mirrored on [dergigi.com/attention](https://dergigi.com/attention)\n\n---\n\nFootnotes: \N 16965 \N 32394 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4802776941429 0 \N \N f 0 \N 0 69106338 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 340457 2024-12-24 09:18:50.111 2025-03-29 22:39:46.788 Discovering Life in Stacker News: A Funny Exploration of 20 Types of SN Users 🤠 Hey stackers and cowboys! Let me share with you a funny way to explore our vibrant and eclectic community of Stacker News. \nPrepare to embark on a journey through the colorful tapestry of personalities that make up this unique bitcoin community.\nhttps://c.tenor.com/tt8WpWm4gi4AAAAC/tenor.gif\nHere, amidst the swirling currents of information and discourse, you'll encounter a diverse array of individuals posting and comment within different channels and territories, each bringing their own flair and perspective to the table. Let's dive deeper into the fascinating world of Stacker News and explore 20 types of users that populate this bustling community.\n\n# 01. Veterans\nhttps://media1.tenor.com/m/tcOYmuKVBoIAAAAC/simpsons-old-men.gif\nPicture this: wise sages sitting atop the virtual mountaintop, their beards flowing with the winds of bitcoin wisdom. These seasoned veterans have weathered the storms of the timechain landscape since time immemorial, and their insights are as valuable as gold... or should we say bitcoin? \n# 02. Newbies\nhttps://c.tenor.com/3WpDDjIaIuAAAAAC/tenor.gif\nAh, the fresh-faced newcomers, wide-eyed and eager to learn the ways of the bitcoin world. They're like fledgling adventurers setting foot in a vast and mysterious land, armed with nothing but curiosity and a thirst for knowledge. Fear not, dear newbies, for the journey ahead is both exhilarating and rewarding!\n\n# 03. Maxis\nhttps://c.tenor.com/EyirkSdMRxkAAAAd/tenor.gif\nYeeehaaw! Here come the staunch defenders of the one true faith: Bitcoin. With fiery zeal, they proclaim the gospel of Satoshi and denounce all altcoins as heresy. They are visible within the saloon and ~bitcoin territory. They of course not see just as crypto, is it's a way of life, a beacon of hope in a sea of digital chaos.\n\n# 04. Cheaters\nhttps://media1.tenor.com/m/fBd4ASdcbvIAAAAC/the-simpsons-race.gif\nEnter the shadowy realm of the cheaters, where bots lurk in the darkness and copy-paste reigns supreme. These cunning individuals will stop at nothing to amass sats by any means necessary, even if it means bending the rules of engagement. But beware, friends! Karma has a way of catching up with those who stray from the path of righteousness.\n\n# 05. Shitcoiners\nhttps://media1.tenor.com/m/ACcz6HfErO4AAAAC/the-simpsons-ralph-wiggum.gif\nThey come and go like the wind! They're like the nomads of the crypto world, desperately seeking a place where their favorite altcoin is appreciated. Unfortunately for them, Stacker News is like an exclusive bitcoin club, and altcoins don't have a VIP pass here.\n\n# 06. Artists\nhttps://media1.tenor.com/m/n5Ie09Ug16cAAAAC/the-simpsons-marge-simpson.gif\nThese are the creatives of the community, always sharing their masterpieces related to Bitcoin and SN. Have a look at ~art. From pixelated masterpieces to whimsical memes, they paint a vivid tapestry of imagination and wit, leaving us in awe of their boundless creativity.\n\n# 07. Zappers\nhttps://c.tenor.com/z5is3s2v4RcAAAAC/tenor.gif\nYep, zappers come the digital philanthropists, whose hearts are as vast as the timechain itself. With open hands and generous spirits, they spread joy and goodwill throughout the community, tipping their fellow stackers with the generosity of a modern nakamoto\n\n# 08. Hackers\nhttps://media1.tenor.com/m/ilPf7Nnj5CAAAAAC/computer-drinking.gif\nBrace yourselves, for the hackers have arrived, wielding their keyboards like digital swords in the never-ending battle for cyberspace supremacy within ~privacy, and ~linux. With a flick of their wrist and a few lines of code, they defend the digital frontier against the forces of darkness, safeguarding the sanctity of our virtual world.\n\n# 09. Phantoms\nhttps://media1.tenor.com/m/SrNSzMgfpI4AAAAC/the-simpsons.gif\nAh, the enigmatic phantoms of Stacker News, who drift in and out of the digital ether like specters in the night. Sometimes they grace us with their presence, offering pearls of wisdom before disappearing into the digital mist once more, leaving us to ponder their cryptic words.\n\n# 10. Bloggers\nhttps://c.tenor.com/E7QxmVz22ugAAAAd/tenor.gif\nPrepare to be dazzled by the literary prowess of the bitcoin bloggers, whose words are as sharp as the blade of a katana and as insightful as the musings of a sage. With every keystroke, they weave intricate tapestries of knowledge and insight, illuminating the darkest corners of the crypto world with their prose.\n\n# 11. Libertarians\nhttps://c.tenor.com/N1D_CYvK0WAAAAAC/tenor.gif\nWelcome to the arena of intellectual discourse, ~libertarian, where libertarians engage in a spirited debate on the nature of truth, freedom, and the digital revolution. With minds as sharp as their arguments, they challenge the status quo and push the boundaries of conventional wisdom.\n\n# 12. Devs\nhttps://media1.tenor.com/m/qKFQt5Gcg10AAAAC/the-simpsons-nerds.gif\nThe architects of the digital realm, whose hands shape the very fabric of our virtual existence. With minds as sharp as their code, they toil tirelessly to build the infrastructure of tomorrow, laying the groundwork for a future powered by bitcoin technology.\n\n# 13. Writers\nhttps://c.tenor.com/lXWpd8_yxbwAAAAC/tenor.gif\nBehold the storytellers and wordsmiths of Stacker News, whose pens are mightier than the sword and whose tales are as epic as the Odyssey itself. From epic sagas to poignant essays, they captivate our hearts and minds with their literary prowess, leaving us spellbound in their wake.\n\n# 14. Journalists\nhttps://media.tenor.com/PF3aGKAYUFIAAAAM/simpsons-what-can-i-say.gif\nIn Stacker News, journalists are the truth-seekers, within ~news they are uncovering stories and providing insight into the world of bitcoin. With their investigative skills and dedication to transparency, they play a vital role in keeping the community informed and empowered. \n\n# 15. Cypherpunks:\nhttps://media.tenor.com/B1mXFrXqRloAAAAM/simpson-wear-eyeglassess.gif\nEnter the realm of digital guardians, where cypherpunks stand as sentinels against the encroaching darkness of surveillance and censorship. With minds as sharp as their encryption algorithms, they are within ~privacy and ~crypto (be careful with shitcoiners) trying to defend the sanctity of privacy and freedom in the digital age, fighting for a future where anonymity is a fundamental right.\n\n# 16. Meme Enthusiasts:\nhttps://media1.tenor.com/m/UtKvofr2grEAAAAC/dan-pena-old-man-yells-at-bitcoin.gif\nPrepare to laugh until your sides ache, for the meme enthusiasts have arrived with their arsenal of hilarious images and witty captions, have a look at ~memes territory. With a twinkle in their eye and a mischievous grin, they light up the digital landscape with their irreverent humor, turning even the most serious of topics into comedic gold.\n\n# 17. Innovators:\nhttps://c.tenor.com/cZ_8ynUgFzAAAAAC/tenor.gif\nBehold the trailblazers and visionaries of Stacker News, whose minds are as innovative as their ideas are revolutionary. With a boldness matched only by their creativity, they push the boundaries of what's possible in the digital realm, charting a course for a future limited only by the bounds of imagination, check it ~meta territory\n\n# 18. Lost Souls:\nhttps://media1.tenor.com/m/_tUXD_gtg3EAAAAC/the-simpsons-homer.gif\nAh, the wanderers of Stacker News! Drifting through discussions and threads, they're like shooting stars, appearing suddenly and disappearing just as quickly, leaving behind cryptic comments and enigmatic insights.\n\n# 19. Lurkers\nhttps://c.tenor.com/0EoVUpHl1CgAAAAC/tenor.gif\nThe silent observers of Stacker News! Always present, yet rarely seen, they quietly absorb the knowledge and conversations happening around them. Occasionally  they emerge from the shadows to drop a cryptic comment or offer a unique perspective.\n\n# 20. Community Builders\nhttps://c.tenor.com/KDOYQNot5dsAAAAC/tenor.gif\nLast but not least, we have the community builders, the unsung heroes of Stacker News who work tirelessly behind the scenes to foster a sense of camaraderie and belonging. They organize AMAs, create resources, and build bridges between stackers, ensuring that the community continues to thrive and grow.\n\n# Thanks for reading, sat! \nhttps://media1.tenor.com/m/cY_di0WIjesAAAAd/sleeping-simpsons.gif \N 756 \N 340457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.49326344972661 0 \N \N f 0 \N 0 21869224 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 301013 2024-11-19 14:39:45.756 2025-03-29 22:39:46.788 [important] foreign asset control compliance Operating in the US requires us to not provide financial-like services certain regions, even if those financial-like services amount to pennies of value on average like they do on SN. We are waiting on an exact list of countries from lawyers, but presumably any stackers located in the counties on [this website](https://ofac.treasury.gov/sanctions-programs-and-country-information) could be affected.\n\nSoon, if the IP address of your browser session indicates you are located in a sanctioned region, we will prevent you from transacting with our wallet.\n\nIt's unlikely there are many stackers in these regions, but as we continue working on understanding the laws we are obligated to follow, we will provide you with as many services as we are legally allowed. In the coming weeks, we will begin introducing noncustodial wallet options among other things.\n \n#### Zero privacy implications\n\nWe remain committed to **never storing a stacker's IP address without permission.** For these changes (when they go live), we simply check an IP against a database of IP ranges thought to belong to these regions and then discard the IP and the result of the query regardless of whether the IP is in one of these regions or not. Further, the IP range database is self-hosted so that your IP can't be stored by anyone else either.\n\nAll of this compliance stuff is free and open source like everything else so you can be reasonably certain we are only doing what we say we are. \N 8242 \N 301013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.09653239556575 0 \N \N f 0 \N 0 567545 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 256731 2024-10-05 14:04:04.833 2025-03-29 22:39:46.789 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/368009) are the updates stackers shared from all their latest work projects. \N 5522 \N 256731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.166494657468 0 \N \N f 0 \N 0 81248412 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 326832 2024-12-11 15:30:49.192 2025-03-29 22:39:46.789 Can nostr fix app distribution? I've been going deep into the "app store" rabbit hole lately. Here are my current thoughts on how nostr could improve the experience for both users and developers.\n\nSharing it here to gauge... are these problems worth fixing? What am I missing?\n\n—\n\nThere are four angles from which I want to discuss this topic: **discoverability**, **security**, **reputation** and **monetization**.\n\nThe *app store* model, a curated catalog of applications, addresses these in various ways and is by far the most common distribution method. \n\nGoogle Play Store and Apple App Store lead the pack with [around 95% market share](https://www.businessofapps.com/data/app-stores/) outside of China. Along with other Android stores (Amazon Store, Samsung Galaxy Store) and the Microsoft Store, they are the major proprietary, closed-source stores. They control every link in the distribution chain.\n\nOpen source stores work a bit differently. The store UI can manage apps from multiple repositories. For the most part, though, they are used with the default one: F-Droid (Android) with their official repo, Snap (Ubuntu Linux) with Snapcraft, Flatpak (Linux) with Flathub.\n\nApp stores are the only realistic method to distribute applications to humans at scale, but current implementations have important shortfalls. They are all, in varying degrees, trusted third parties offering convenience at the expense of sovereignty in different ways. \n\n### Discoverability\n\nHigh-quality search, trending lists, and recommendations are important factors for app discovery.\n\nThe main stores are tightly integrated with their respective operating systems so they are the users default go-to. This creates a strong incentive for developers to publish there, and this results in a rich app ecosystem.\n\nBut centralization has its problems. The algorithms of these stores may prioritize promoting content, displaying ads or making it difficult to discover niche apps. They [regularly censor](https://www.coindesk.com/tech/2023/06/28/damus-finally-receives-apple-app-store-approval-after-two-week-battle/) due to state regulations and corporate agendas. (Or just for [some random reason](https://nitter.cz/evankaloudis/status/1727336468920864844#m)). \n\nThe iOS App Store is the most problematic of all. There are no alternative ways of installing apps other than going through tedious hoops. The recent [third-party app store changes in the EU](https://www.theverge.com/2024/1/25/24050200/apple-third-party-app-stores-allowed-iphone-ios-europe-digital-markets-act) is a complete larp: "marketplaces" must still get permission from Apple and only a single version of an app across different stores is allowed.\n\nOpen stores do not censor and anyone can add their own repository, but this extra step also hurts discoverability.\n\nOne can of course find apps outside the realm of an app store, for instance from links shared in social media. (I'll further discuss the direct download approach in the Security section.)\n\nFurthermore, major stores are split in countries/regions due to legal or regulatory requirements, so apps available in one area may be invisible in another. Enabling localized content may improve discoverability because of the increased cultural relevance.\n\nAn app store on nostr, on the other hand, could leverage (borderless) social connections which is way more relevant than a geographic silo. Discovering new apps could become more like getting personalized recommendations from your friends as opposed to browsing a generic list created by minions at a faceless corporation.\n\nOther handy features such as [NIP-51](https://nips.be/51) could bring curated app lists to one-click bulk install (à la [Ninite](https://ninite.com/)), both as personal backup or as recommendations.\n\n### Security\n\nHere I'd like to talk about a few key aspects separately.\n\n - **Transmission security**: Checking file integrity via digital signatures to prevent tampering\n - **Application security**: Scanning packages for malware and enforcing OS-level runtime security\n - **Privacy**: Preventing private information or metadata leakage\n\n#### Transmission security\n\nApple and Google prevent in-transit attacks through public key infrastructure (PKI). They provide developers with signing certificates, in addition to controlling app store front-ends, domains and file servers.\n\nOn Android, signing keys are pinned upon first installation and are enforced on all subsequent updates, along with a mechanism for key rotation. This is the SSH model, also known as [TOFU](https://developer.mozilla.org/en-US/docs/Glossary/TOFU) (Trust On First Use).\n\nWhile it's possible to add custom repositories, F-Droid builds from source tarballs, hosts and self-signs all but a few packages in their official repo. This has an important downside: you now need to trust them not only on the initial install but on every single update. F-Droid does not build non-free software and has a [host of other issues](https://privsec.dev/posts/android/f-droid-security-issues/).\n\n[IzzyOnDroid](https://apt.izzysoft.de/fdroid/) is probably the most popular F-Droid alternative repository, focused on providing a curated list of APKs excluded from F-Droid official. The main difference between these repos is that Izzy hosts APKs signed by developers.\n\n[Obtainium](https://github.com/ImranR98/Obtainium) is closer to the Izzy approach. It offers no curation but removes one trust layer as packages can be fetched directly from developers' source repositories. Signature verification [is not yet implemented](https://github.com/ImranR98/Obtainium/issues/255) so for now you need to fully trust the host (mostly Github run on Microsoft infrastructure). [AppVerifier](https://github.com/soupslurpr/AppVerifier) is the proposed integration: a step in the good direction but yet another centralized solution relying on certificate hashes rather than developer signatures. \n\nIt is common, especially among open-source developers, to use PGP to ensure artifact integrity, preventing attacks such as phishing, domain hijacking or malicious repositories. \n\nPGP relies on a [web of trust](https://www.linuxfoundation.org/blog/blog/pgp-web-of-trust-delegated-trust-and-keyservers) to verify the authenticity of signatures. It's a good idea but far from perfect in practice, as it's very challenging to determine trust levels transitively. There is no purely technical solution to the problem of trust, but some choices in the design and implementation of PGP make it even harder.\n\nI'm a developer and regularly get software in this way. I still find it challenging. Obviously obtaining a hash or fingerprint sitting next to the binary makes no sense, so I usually pull keys from one or two (supposedly) reputable keyservers that match some known developer's fingerprint. Fingerprints are not the full PGP key. While it's _probably_ okay, keyservers must be trusted and there have been reports of malicious actors duplicating short key IDs in the wild.\n\nThe optimization of security at the expense of user experience leads most users to choose insecure tools over secure ones, so PGP unfortunately did not reach any significant level of adoption.\n\nKeybase was a *very* interesting attempt to improve this situation by mapping users' social identities to PGP encryption keys. Their focus was scattered (messaging, file sharing, etc) and then the team was [aqui-hired by Zoom](https://keybase.io/blog/keybase-joins-zoom) in 2020. Development seems to have virtually stalled ever since.\n\nCould nostr's web of trust be the missing ingredient in the secure transmission of packages?\n\nNobody uses PGP encrypted email anymore, everybody moved to Signal or SimpleX. And no sane person will undertake the massive effort to build a web of trust from the ground up just to verify a few downloads a year.\n\nBut if a _socially active_ network of cryptographic keypairs happens to exist, all of a sudden utility massively increases and the effort of building a network of trusted developers goes down. Since trust is a problem of social nature, there is no better way than deriving it from a naturally social context. Keybase got the idea right, but Nostr is uniquely positioned to solve this problem. Even your mom can now cryptographically verify a downloaded app.\n\nLet's imagine that [Craig Raw](https://primal.net/p/npub1hea99yd4xt5tjx8jmjvpfz2g5v7nurdqw7ydwst0ww6vw520prnq6fg9v2)'s nsec was compromised. Once aware, he could use [NIP-41](https://thebitcoinmanual.com/articles/what-is-nostr-key-migration/) to perform a key rotation and make the fact public to his nostr social graph. This action would occur relatively fast, circumventing the need for updating key servers and waiting for global synchronization ([which might never happen](https://superuser.com/questions/227991/where-to-upload-pgp-public-key-are-keyservers-still-surviving/228033#228033)). In PGP, a single breach can affect entire branches of the web of trust tree, potentially causing widespread damage with very delayed detection.\n\nIndexing packages for discoverability vastly improves UX and can be performed by any network participant since these are merely suggestions and packages are always signed and verified.\n\n#### Application security\n\nBoth the Apple App Store and Google Play Store have their own procedures for reviewing apps before they become available to users. They involve human and automated processes and aim to ensure app quality, security, and compliance with their policies. \n\nThis approach is not foolproof though, some malicious apps can still slip through the cracks and when it does, it's pretty bad.\n\n![](https://zap.store/nostr-app-distribution/fakesparrow.png)\n\n![](https://zap.store/nostr-app-distribution/fakeelectrum.png)\n\nWorse yet, they give the illusion of security.\n\nThese Big Tech-backed proprietary walled gardens pose additional security risks due to their opaque nature. Corporations are the low-hanging regulatory targets in a world of [ever-increasing](https://www.theguardian.com/world/interactive/2013/nov/01/snowden-nsa-files-surveillance-revelations-decoded) [state surveillance](https://www.newyorker.com/magazine/2022/04/25/how-democracies-spy-on-their-citizens). Never forget, [trusted third parties are security holes](https://nakamotoinstitute.org/trusted-third-parties/).\n\nOpen stores appear to be more transparent but still require users to place significant trust in them. F-Droid official repo builds from source tarballs so you need to trust the developer, F-Droid and the transmission of data between them.\n\nSomething similar happens with Flathub, which in addition hosts binaries packaged by third parties, yet another layer of trust, as these [community-run projects lack resources](https://reddit.com/r/Fedora/comments/qq5l24/silverblue_without_flathub_flatpaks/). (Guess what fixes this?)\n\nAnd just like with direct downloads, you also need to trust binaries like an APK to correspond to the source files, unless they use [reproducible builds](https://reproducible-builds.org/) [like Signal does](https://github.com/signalapp/Signal-Android/tree/main/reproducible-builds).\n\nIn terms of malware and privacy protection, Android's [PlayProtect](https://developers.google.com/android/play-protect/) checks APKs when installed from non-Google Play sources. Open stores provide scanning via tools like [VirusTotal](https://www.virustotal.com/), [Exodus Privacy](https://exodus-privacy.eu.org/) and [Blacklight](https://themarkup.org/blacklight) but the user can't really pick and choose.\n\nOn Nostr, a market of DVMs specialized in app security auditing could arise, as a reputation mechanism for developers, as tools for end users, or both.\n\nOnce apps are installed, privacy and security become an operating system level concern. [Sandboxed execution](https://grapheneos.org/features#improved-sandboxing) and varying degrees of permission controls to filesystem, peripherals, network, and so on are used to mitigate further security issues. An app that does not use the Internet should not be granted access to it.\n\n![](https://zap.store/nostr-app-distribution/flatseal.png)\n\nFirewalls like [Little Snitch](https://www.obdev.at/products/littlesnitch/index.html) or [OpenSnitch](https://github.com/evilsocket/opensnitch) for Linux are examples of third-party software that is crucial for maintaining security and privacy.\n\nCraig Raw is a developer that I trust, but after configuring Sparrow to work completely offline (node in my LAN, disabled mempool fee estimation, etc) I was surprised to find an HTTP request to `sparrowwallet.com` with OpenSnitch - which I immediately denied. Is Craig rugging my hot wallet? I went straight to the source code. Turns out it was a simple version upgrade check. So yes, these tools aid us immensely in our strive to verify not trust.\n\n#### Privacy\n\nAll app stores know the exact set of programs you use. Apple and Google in particular have a double incentive to harvest this data: on the one hand to produce accurate recommendations, and on the other to sell it to data brokers.\n\nPrivacy would be significantly improved by making direct downloads easier to verify by anyone, incentivizing the use of privacy-respecting FOSS and switching to trusted DVMs for recommendations and security audits.\n\n### Reputation\n\nEven if an app is perfectly safe, is it worth your time or money?\n\nApp stores allow users to review the apps they use. This has its limitations as ratings/reviews can be easily gamed in these centralized systems.\n\nHaving a decentralized review system can actually... make it worse. Spam and Sybil attacks are relatively cheap, unless the view of the network can be trusted. And that is exactly where nostr comes in. \n\n[NIP-32](https://nips.be/32) reviews constrained to a pubkey's web of trust would be the perfect fit.\n\nThis type of information is not only useful for other users, it also serves as a feedback mechanism for developers. Many of them derive value exclusively from reputation.\n\nBut there is [a better way](https://dergigi.com/value/).\n\n### Monetization\n\nOptions for charging money are available on the main stores, but the bullies want their cut. Apple and Google take hefty [15 to 30% commissions](https://www.statista.com/statistics/975776/revenue-split-leading-digital-content-store-worldwide/) on sales and charge developers additional fixed fees. \n\nVirtually all users and developers need to be KYC'd as they are only allowed to pay by digital fiat means and are forced to use archaic SMS verification. Apart from the privacy concerns, this excludes billions of unbanked users from buying paid apps and unbanked developers from even publishing them in these stores.\n\nInterestingly, it also marginalizes autonomous AI systems that were tasked to publish an app.\n\nA vast majority of the applications published on big stores are free (as in free beer) with a huge percentage of them relying on advertising, [exacerbating the attention problem](https://dergigi.com/2022/12/18/a-vision-for-a-value-enabled-web/).\n\nOpen stores offer no monetization options, other than a [donate button](https://f-droid.org/en/packages/org.fossify.gallery/) at best. FOSS developers usually resort to [frictional](https://www.patreon.com/) [and](https://github.com/sponsors) [unreliable](https://opencollective.com/opensource/updates/closing-our-virtual-card-program) donation solutions.\n\nA lot has been written about the [issues with](https://trstringer.com/oss-compensation-broken/) [open source funding](https://stackoverflow.blog/2021/01/07/open-source-has-a-funding-problem/). I can't reach other conclusion than: Bitcoin and Nostr fix this.\n\nRemoving the middleman and letting users pay developers directly via zaps, [Nostr Wallet Connect](https://nwc.getalby.com/) or other similar primitives will fundamentally change the way apps are funded and distributed.\n\n![](https://zap.store/nostr-app-distribution/will.png)\n\nIt doesn't have to be like this.\n\n## Support\n\nThis is an innovative feature given no app store has introduced post-sales support, likely due to misaligned incentives. It's the real, genuine KYC!\n\nEmbracing the removal of middlemen between users and developers can open up new possibilities like paid support, bounties, feature request prioritization, and even new business opportunities.\n\n## Moving forward\n\nIn the longer term, AI could drive a cambrian explosion of software creation.\n\nMassive improvements to efficiency tend to also cause qualitative changes. The dynamics of app distribution might look totally different than today, we might be [remixing our own apps](https://primal.net/e/note1j9skfcgxgnpk5ekzmxpvwv84x7hzflwgc57v28lwf6k0sd7kpg5qn405ld) like we do with music on [stemstr](https://stemstr.io), and sending back value to [all contributors](https://pkgzap.albylabs.com/).\n\nApp discovery mechanisms will require more fine tuning, and review systems to be more trustworthy than they are today.\n\nScams and malware will multiply, dangerous software will slip through the cracks of centralized stores due to the sheer volume of submissions and the complexity of detecting all potential threats.\n\nFinally, with so much supply and demand from so many different parts of the globe, an open, borderless, neutral medium of exchange is the logical answer to monetization.\n\nApps are fundamental tools in our quest for self-sovereignity. Draconian regulations and privacy invasive practices will accelerate. Properly establishing trust, sourcing and verifying apps will become more important than ever. \n\nMost nostr usage at the moment is for social commenting (certainly not as network of package maintainers) but there will be an increasing overlap between the two. \n\nCan trust scores emerge from webs of trust and other primitives?\n\nCan [NIP-94](https://nips.be/94) replace [manifest files](https://wikiless.org/wiki/Manifest_file?lang=en)?\n\nHow do we minimize trust while maximizing UX?\n\nWhat else would be necessary to disrupt the ~95% big tech market share? \n\nAs an app developer myself, I had only superficially been exposed to these issues. App distribution is a fascinating rabbit hole I recently fell into and I started prototyping the solution I want to see in the world. \n\nA lot of questions remain. I don't have all the answers, or even the right questions, but I feel there are enough gaps and shortcomings in the current way things are. And significant room for improvement. \N 10273 \N 326832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9830015709742 0 \N \N f 0 \N 0 28121502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 141735 2024-03-12 11:22:06.665 2025-03-29 22:39:46.79 On Encouragement - Face-to-face positive affirmation does more for the realization of dreams than monetary investment.\n- Encouragement is the role of fathers, mothers, mentors, followers, and true believers.\n\nPlebs, I wonder if we share this in common: we live our lives out quietly, going about the work that we firmly believe has a positive impact on our future. Yet, sometimes the silence manifests as misery. A miserable feeling. A feeling that you are wasting your one precious life. \n\nThis week, such a feeling has descended on me. When I am visited by such a burden, it shows itself as resentment toward my responsibilities, intense ideation of a different life, time traveling to the past, and a desire to do nothing but seek comfort and indulge in it. It turns me into a person I don't like very much. Though I have a strong will and a moral center, I feel powerless against the weight of my own existentialism, which is something I have fought for my life to overthrow before. \n\nI know the antidote is encouragement.\n\nEncouragement: recognizing another and offering praise. It is important, it works miracles, and it is much needed.\n\nThink of a newborn calf, all sticky skin and wobbly legs. The calf takes his first gulps of air and strains to lift his brand new body up to proclaim the miracle of his life. His little feet are unsteady, and he can't straighten them beneath himself. He falls in a heap of growing bones. But he tries again, and this time, mother is right there. She sees his struggle and comes near. With her nose, she gives baby a nudge. His head raises, his muscles line up in the right sequence. He stands, his first minute in the world.\n\nThe calf should illustrate the simplicity of encouragement, as well as its crucial place in our brutal world. \n\nAs a human race, unleashed on this planet, we have many factors stacked against us, hindering our success, making a peaceful existence hard-fought. In modern times, those factors have largely changed from external to internal. And internal battles are difficult to see, the carnage they result in can be hidden or disguised. So what we have is individuals that likely feel no connection to another soul, their will power withering away silently, their choices defined by survival. \n\nI believe simple encouragement makes a difference. Acknowledgement and affirmation are precise weapons that cut down doubt and fear in one blow.\n\nIf you are building something, you likely need encouragement along the way, or else you're in danger of becoming convinced that you will never finish, or that no one will care if you finish, or that you're not capable enough to finish. One person can look into your life and your work, say, "I understand, keep going," and you flourish as a result. \nIf you are a leader in any way, without encouragement, you risk believing the lies that can so easily creep in disguised as criticism or cynicism. You need to be reminded of your purpose, encouragement delivers this.\nIf you are a pleb going quietly about your life, there are threats you face at every corner. Your conviction is attacked, your belief is questioned, your devotion is judged. I see you, and I'm right there with you. There are a lot of things I would wish to change, as I'm sure you would. But be encouraged, know that your commitment to the future is worthy of your work today.\n\nI urge you, do not hesitate to dole out encouragement like its too many plums from your garden.\nI could use it! \N 13622 \N 141735 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0155333946419 0 \N \N f 0 \N 0 3342059 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 391950 2025-02-04 18:51:05.921 2025-03-29 22:39:46.79 Bringin Bitcoin to Retail Banking with the Breez SDK \N https://medium.com/breez-technology/bringin-bitcoin-to-retail-banking-with-the-breez-sdk-e4d5822dca5c 7746 \N 391950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1752326986791 0 \N \N f 0 \N 0 19242728 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417769 2025-02-26 15:45:53.73 2025-03-29 22:39:46.79 Dead man’s switch – How to improve your bitcoin backup This is an idea how to improve your bitcoin backup setup. You can use it for yourself or as a dead men’s switch for your loved ones to get access to your bitcoin holdings if something happens to you.\n\n__Caution__: While this method improves the resiliency of your backup if could potentially harm your privacy.\n\n# Summary:\nThe idea is to create a signed bitcoin transaction which will become valid in the future (e.g in two years). To do that we leverage bitcoins [timelock](https://en.bitcoin.it/wiki/Timelock) feature.\nThe target of the transaction is an empty wallet which you can keep with the signed transaction.\nIf you lose your keys or something happens to you, the signed transaction can be broadcasted after the specified time by someone who holds the transaction and the empty wallet. If you don’t need it, you just must move one utxo of the whole transaction to invalidate the signed transaction.\nI assume you know how to handle your wallets and seed phrases and familiar with creating on-chain bitcoin transactions.\n\n# Step 1: Create empty wallet\nFirst create an empty wallet where the transaction will be sent to. To do this, use your favorite way to create a fresh wallet. You could either use an existing hardware-wallet, [a seed signer]( https://seedsigner.com/) or [electrum]( https://electrum.org/) booted on a [tails OS](https://tails.net/). Write down the seed phrase and generate a new address which we will need later to send the funds to.\n\n# Step 2: Create a signed bitcoin transaction\nFor the purpose of this example I will use the [sparrow-wallet software]( https://www.sparrowwallet.com/). \nOpen the wallet you want to “protect” by the dead man’s switch and navigate to UTXOs. There you can see all your available outputs to spend. Now select all the utxos you want to include in your dead man’s switch, mark them, right click them, and select “send selected”.\n![1.jpg](https://m.stacker.news/5725)\n\nNext paste the generated receiver address which you generated in step one. Use a fee that is not too low. Of course, you don’t know how the fees will be in the feature but if necessary, you can always do a [CPFP](https://bitcoinops.org/en/topics/cpfp/). Click “Create Transaction”. \n![2.jpg](https://m.stacker.news/5726)\n\nThis is the important part of the transaction. You must lock the transaction to make sure it is only valid in the future. Click on “Detail” in the transaction screen and choose the appropriate locktime. You can either select a block after which you transaction will be valid or a specific date.\n![3.jpg](https://m.stacker.news/5727)\n\nNow “Finalize Transaction for Signing” and click “Sign”. \n![4.jpg](https://m.stacker.news/5728)\n\nAfter that you can save the transaction as a Transaction file or a QR Code. \n![5.jpg](https://m.stacker.news/5729)\n\nIf you open the .txn file with a text-editor, it looks something like this: \n![6.jpg](https://m.stacker.news/5730)\n\nIt is safe to keep this information on a “hot” device as long as the locktime not passed.\n\n# Step 3 Use the transaction or invalidate it\nIn the best case nobody needed this transaction. Now make sure that you invalidate the transaction bevor the locktime is reached. To do that, you only need to change one of the utxos you choose in step 2. Spend it to your wallet and the signed transaction is invalidated.\n\nIf you need to use the dead man’s switch after the locktime period is passed, make sure you have access to the wallet you created in step one. \n\nNow you can broadcast the signed transaction and all the utxos will be sent to your wallet created in step one. To broadcast the transaction you can use one of the following websites: \n- https://mempool.space/tx/push\n- https://blockstream.info/tx/push\n- https://btc.bitaps.com/broadcast\n- https://bitaccelerate.com/pushtx\n- https://www.coinb.in/#broadcast \n\n# Additional information\nThis additional information is manly if you create the transaction to make sure your loved ones can access your Bitcoin if something happens to you.\n\n__Important__: If you handle over the signed transaction to someone else, that person knows immediately how much Bitcoin you signed. This is a huge privacy issue with this method. Use carefully.\n\nIf the person, you give the transaction does not know about Bitcoin (maybe your grandmother) make sure you pass enough information to that person that she can handle it. Maybe write down some contact information about someone you trust and know how to handle it.\n \N 837 \N 417769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.27276644787179 0 \N \N f 0 \N 0 248904444 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 253161 2024-10-01 22:45:55.154 2025-03-29 22:39:46.79 Brute force and the coins are yours Some years ago I made a paper wallet with bip38 passphrase, which I don't remember today. I donate this to the one who can brute force it or to every bitcoiner if no one succeed. I suspect the passphrase is not more than 30 characters.\n\nhttps://i.imgur.com/3RSb8MH.png\n\nBIP38\nPrivate key: 6PfQTphCYc1Fee19uPz2pmou5RVBDVgw8VcrPfGLos4ktUnARdiFLYhcNU\nPublic key: 1J7BVeP8JK4op2X3GN3Hy7xkTnGnQTMpou\nPassphrase: \n\nhttps://mempool.space/address/1J7BVeP8JK4op2X3GN3Hy7xkTnGnQTMpou\nWhich i generated on this site https://www.bitaddress.org/\n\nIf you succeed with brute forcing, the coins are yours. I will never have time to do it my self I'm stuck in love life laugh. \n\nThis is a demonstration that phasphrase is not an extra security layer it is only extra step for donating the coins to every bitcoiner. \n\nHave fun! \N 2328 \N 253161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.06510101708853 0 \N \N f 0 \N 0 148218825 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 337509 2024-12-22 00:13:54.418 2025-03-29 22:39:46.79 WoS: "To our valued Wallet of Satoshi community in the United States of America" \N https://twitter.com/walletofsatoshi/status/1727937085741678679 16542 \N 337509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.30546056707058 0 \N \N f 0 \N 0 100975611 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 33552 2023-06-21 15:51:52.913 2025-03-29 22:39:46.79 The best way to accept Bitcoin is about to become even better - BTCPay App \N https://twitter.com/BtcpayServer/status/1699114457421447543 672 \N 33552 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.0848023533601 0 \N \N f 0 \N 0 149260106 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 198378 2024-07-11 13:37:02.382 2025-03-29 22:39:46.791 Bet on the US election with sats on bitcoinprediction.market Feel free to suggest features or topics that you would like to bet on.\n\nWe're thinking of using ecash tokens to enable buying and selling of shares in events. Right now we have a set up where the "winners split the losers sats" (parimutuel betting market), but there are other more sophisticated market making mechanisms that enable more accurate forecasting (LMSR). \n\nWith ecash we could enable those mechanisms while preserving privacy. Basically we could create polymarket-level functionality without even requiring users to sign up—the ecash tokens would be downloaded, emailed, or sent to an ecash wallet, and selling or redeeming the shares could be facilitated by uploading the tokens. \n\nIf we represent shares as ecash tokens then the ecash basically operates as the authentication mechanism for ownership of shares. When you sell or redeem your shares, you could simply provide a lightning address. No need for identity tracking either, so you could place bets anonymously (as long as you can always generate a new lightning address). \n\nLet me know if that sounds cool to y'all. https://www.bitcoinprediction.info/ 12222 \N 198378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3043628137114 0 \N \N f 0 \N 0 238668163 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428970 2025-03-07 19:08:34.177 2025-03-29 22:39:46.789 I'm Peter Todd, cryptochronomancer/web-π dev, AMA I've worked on Bitcoin Core, and I'm behind [OpenTimestamps](https://petertodd.org/2016/opentimestamps-announcement). Lately I've also been trying to [inflate bitcoin](https://petertodd.org/2022/surprisingly-tail-emission-is-not-inflationary) and get full-rbf (finally!) into Bitcoin. \N 19071 \N 428970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.64182785660395 0 \N \N f 0 \N 0 121022793 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 191852 2024-06-30 10:48:03.714 2025-03-29 22:39:46.79 Welcome to earth I absolutely love Stacker News and all the Bitcoin love that's fostered here. There are countless individuals here smarter and more well versed in Bitcoin than I am, and as cliche as it may be, the PEOPLE of SN are what make this site the most interesting to me.\n\nI try to keep most of my content revolving around that rather than the specifics of Bitcoin itself. There is a lot of great value to uncover I've found, just by tapping into the curiosity that I know bitcoiners have. I love to ask questions that allow people to share their own nuance to things, and create discussion that reveals things that just won't get said otherwise.\n\nSo with the earth sub, I want to expand on that people focus: HUMANITY in Bitcoin.\n\nHumans are awesome. Bitcoiners are awesome. Earth is awesome. We live all over the world. We travel. We communicate. We learn from others. We do a LOT of cool stuff outside of Bitcoin, but we also spend our Bitcoin in all kinds of cool places! \n\nLet's share that stuff here. I want earth to be a running sub of how cool stackers are and how much we appreciate what this planet has to offer! \n\nShare your travel stories. Your latest Bitcoin purchase in a crazy location. Your takeaways from experiencing new cultures. The mysteries you've uncovered while traversing the world, and the bitcoiners you've met along the way!\n\nAND DEFINITELY SHOW ME YOUR MOUNTAINS.\n\n![yosemite.png](https://m.stacker.news/6851) \N 4043 \N 191852 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.0469596063632 0 \N \N f 3629906 \N 1 86896471 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447453 2025-03-21 20:46:38.873 2025-03-29 22:39:46.79 A Dire Warning They are ''glitching'' around again!\n\nhttps://image.nostr.build/5f8d71590fa17a7b9aa522fe48c0410bee03f10248888d0c9d39e42f423af987.jpg\nhttps://image.nostr.build/073e8516222e3e763fa064714d563c0e085e7ceb537ec27f45a9bb1b396a9d08.jpg \N 4118 \N 447453 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 1.21551869516026 0 \N \N f 389882692 \N 3 64858879 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446822 2025-03-21 13:46:58.124 2025-03-29 22:39:46.79 Saylor Moon Is a speculative attack on USD coming soon? If it does, it's going to be a crazy sight to see. Every institution that can borrow will and essentially short the dollar by going long Bitcoin. The dollar will begin hyperinflating and there will be a lot of unhappy rent-seekers that will want some blood. It may in the end create calls for a CBDC to control the lending/printing of money, which is currently in the hands of too many banking institutions. But we're getting ahead of ourselves. Let's start from the godfather of the speculative attack: Michael Saylor.\n\nFor those with assets, loans are really easy to get. In a fiat economy, loans have no opportunity cost so banking institutions are incentivized to lend as much money as possible to qualified borrowers. More loans, more interest payments, more profit. And the rich borrow. A lot. Loans are how Cantillionaires stay rich. They use the newly printed money to invest in all sorts of stuff and as long as their investment returns higher than the minuscule interest rate from the bank, they come out ahead, sometimes my many multiples.\n\nUsing these loans to buy Bitcoin is what we can call a speculative attack on the dollar. That's essentially what Michael Saylor has done with every kind of loan he could get. He's used unsecured loans, secured loans, and stock issuance, among other things, to acquire as much Bitcoin as possible. I'm sure he'd take out more loans if he could and I have no doubt in my mind he's looking into more ways to add more to the incredible Bitcoin position he has.\n\nWhat's going to be even crazier is that he will soon be able to use the Bitcoin itself as collateral. Wall Street isn't that comfortable with this idea yet, but at some point, they're going to because there's too much free money in it for them. And then the real leverage games can begin. He's in deep profit on his Bitcoin position and as the price goes up, there will be more loans available. But at least at the moment, banks aren't loaning out with Bitcoin as collateral just yet.\n\nAs such, he has to wait for more stock issuances to buy more Bitcoin. With almost 1% of all BTC in his treasury, there's a lot of demand for his stock and with additional issuances, the market now knows he'll buy more BTC. As a result, he can keep issuing stock and buying Bitcoin this until he's saturated market demand. The result is that MicroStrategy right now trades like a 2x Long Bitcoin ETF.\n\nBut here's where it gets fun. What happens when there are more companies besides MicroStrategy that use this strategy? You really just need one more CEO with this level of conviction to take this strategy to the next level. The stock's returns have been so insanely high that some company will mimic it. Heck, even someone that doesn't have a company right now could, perhaps, buy up a small cap stock with some cash on its balance sheet, buy Bitcoin with it and then issue more shares to buy even more Bitcoin. It would be slower, of course, but there's no reason why it won't work. The key is a large cash position and a way to get lots of debt. This hypothetical alternative to MSTR would have to have some differentiation of course, and perhaps they'd use more or less leverage than MSTR.\n\nFor that matter, could we see a mining infrastructure company go in this direction? Keep lots of Bitcoin on the balance sheet and use USD loans to mine more. If the treasury is in BTC and the acquisition strategy is mining, then it could very well use its line of credit to become something like MSTR, only a bit more related to energy production.\n\nHow about one of these zombie companies? A visionary CEO could turn a zombie company into a living one by making it into a Bitcoin substitute. A company like IBM has lots of assets to get loans with. Use those assets to put Bitcoin on the treasury. It can quickly become another stock that's a store of value. Speaking of which, the reason MSTR is doing so well is because it's taking the store of value premium away from other stocks. Stocks have functioned as a de facto store of value for a long time, the premium is now leaking towards something that holds its value better.\n\nThe presence of Bitcoin on the balance sheet turns the store of value premium in these stocks into Bitcoin substitutes. And it really won't take many companies to do these things for the entire market to expand USD and complete the monetization of Bitcoin. \N 20734 \N 446822 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 3.56438470877588 0 \N \N f 211795812 \N 2 208399277 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 455428 2025-03-27 02:26:19.325 2025-03-29 22:39:46.791 A recommendation/ramble on my favorite books After having just gotten back into reading again in my mid twenties, I've been inspired to compile a list of my favorite books of all time and why. I've been wanting to do this for a while but never quite had a platform for it, this territory seems like the right place! For the sake of brevity I am not including poetry collections, at some point I will give those a list of their own. For now, onwards\n\nNegative Space by Lilly Dancyger \n\nI have always been a fan of the memoir genre, likely because they were some of my parents favorite books growing up as well. Negative Space is a memoir in which the author details her experiences growing up with parents who were addicts and an artist for a father who died when she was quite young. The book features a lot of information about the art world which I found really interesting. For me though the brutal honesty of her narration was the best part. I believe all of us could write a story from our lives with equal impact, it's less so about the story itself but how she tells it (though the story is fascinating). \n\nThe Goldfinch by Donna Tarte\n\nIf you've read this book its self explanatory. It seems to be unanimously fantastic in the eyes of everyone who's read it. I'm not going to give too much away because it's spoiler heavy, but the pure storytelling is genius in this book and each character is so unique and well developed. My parents and I all read it separately without talking about it, and all came out loving it. The incorporation of artwork into this book as well as Dancyger's must be part of why I like them both so much, I'm coming to realize. This is a beautiful story with so much complexity from start to finish. \n\nThe Bell Jar by Sylvia Plath\n\nAs a woman who was once a teenage girl filled with a lot of angst and sadness, this book pays homage to that experience so well. Many of the coming of age stories, especially ones written during this time, center men and male experiences. Though I have loved many of those just as much, this book did something special for me as it was the first time I saw a young woman protagonist going through a journey of self discovery with just as much complexity as any man. It's a sad book, the voice is very clearly written from the perspective of severe depression. It leads perfectly into my next one-\n\nThe Catcher in the Rye by JD Salinger\n\nI think I read this book at the exact right time in my life. You often hear of this book talked about in tandem with infamous murderers. Going into it, you'd expect the misanthrope's manifesto. There is a way to interpret this book like that, but I personally just see a young teenage boy struggling very deeply with a lot of heavy things, such as grief and depression. I actually bonded with my first boyfriend at 15 through our shared love and compassion for Holden Caulfield (run young beetle, run.) Though I still see this book as I always have, incredibly important. It's so common for people of Holden's age to feel the way he does, and I think the representation came for me at the perfect moment and really helped me with my own mental health at the time. \n\nThings Fall Apart by Chinua Achebe\n\nI read this book around the same time I read the Catcher in the Rye, as a young teenager. The title is a reference to the poem The Second Coming by William Butler Yeats (One of Siggy's favorites). I think this works really well, as the story details a man's fall from grace. This comes from his own hubris and cruelty (specifically in his violence towards the women in his life). There are elements of white colonialism talked about in this book which was one of the first times I read about such a thing, and it had a big impact. The protagonist is an extremely imperfect character, but so sympathetic regardless. \n\nThe Secret Lives of Church Ladies by Deesha Philyaw\n\nI cannot express enough how much I recommend this book. It came out pretty recently, and I think there may be a movie underway? Anyway, this book consists of a collection of short stories about various women and their experiences with their blackness, sexuality, and religion. The way this author writes about young queer relationships between women really resonated with me at the time, having gone through similar and still coming to terms with my own sexuality. It's been a while since I last read this one, but take my word for it, it is worth every page. \n\nsome others that I will not go into an elaborate description of but still recommend-\n\nThe Perks of Being a Wallflower by Stephen Chbosky \nDry By Augusten Burroughs\nThe Glass Castle by Jeannette Walls\nSpeak by Laurie Halse Anderson\nGiovanni's Room by James Baldwin\n\nThank you for reading my little ramble on books which I have thoroughly enjoyed reading. I would love to take recommendations from you as well. \n\n \N 3717 \N 455428 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 18.6203480086237 0 \N \N f 74146613 \N 1 154569706 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420918 2025-03-01 09:15:46.563 2025-03-29 22:39:46.791 Dissection of a force-close that already cost me 140k sats I run c-otto.de and, despite my best efforts, sometimes have to pay for force-closes. Because the one from last night was rather expensive, I'd like to share my insights.\n\n**2023-12-28 15:12:35.748: My node accepts a forward request coming in from bfx-lnd0, requesting to send to Gravity21 🌎☄️**:\n\n```\n2023-12-28 15:12:35.748 [DBG] HSWC: ChannelLink(43a63045a6b7fc2be07424afd5eda561ea01009c057ab8693b2d2212a4a015d5:1): queueing keystone of ADD open circuit: (Chan ID=798901:1550:1, HTLC ID=1259)->(Chan ID=805200:3121:1, HTLC ID=16830)\n2023-12-28 15:12:35.820 [DBG] HSWC: ChannelLink(43a63045a6b7fc2be07424afd5eda561ea01009c057ab8693b2d2212a4a015d5:1): removing Add packet (Chan ID=798901:1550:1, HTLC ID=1259) from mailbox\n```\n\n**Sadly, my peer didn't respond to this, leaving my node with a stuck HTLC. After five minutes, lnd decided to disconnect:**\n\n```\n2023-12-28 15:17:36.415 [INF] PEER: Peer(03238001dec7155a367248ed7f9a1e6940f3f372f4d6f2586b31c91ae32cc1628f): disconnecting 03238001dec7155a367248ed7f9a1e6940f3f372f4d6f2586b31c91ae32cc1628f@185.220.101.129:3955, reason: peer 03238001dec7155a367248ed7f9a1e6940f3f372f4d6f2586b31c91ae32cc1628f@185.220.101.129:3955 no answer for 5m0s -- disconnecting\n```\n\nI believe that lnd should not have added the HTLC to a peer that doesn't respond, which is an issue discussed in https://github.com/lightningnetwork/lnd/issues/2992 (from 2019!). If lnd knows that a peer is offline, it would not add a new HTLC, and instead fail the payment back to the sender. Sadly, that's not what lnd currently does.\n\nAs lnd does not know whether my peer received the HTLC, it has to wait for a timeout. This timeout ended in block 823615 (2023-12-30 23:12:43). My node uses some crude scripts to reconnect to peers that are offline, even disconnecting from those that appear to be offline if there's some stuck HTLC in one of their channels. **Despite these efforts, my peer did not reconnect and, thus, did not settle/fail the HTLC in time, forcing my node to reclaim the funds on-chain**:\n\n```\n2023-12-30 23:12:43.051 [DBG] CNCT: ChannelArbitrator(43a63045a6b7fc2be07424afd5eda561ea01009c057ab8693b2d2212a4a015d5:1): new block (height=823615) examining active HTLC's\n2023-12-30 23:12:43.055 [DBG] CNCT: ChannelArbitrator(43a63045a6b7fc2be07424afd5eda561ea01009c057ab8693b2d2212a4a015d5:1): checking commit chain actions at height=823615, in_htlc_count=0, out_htlc_count=1\n2023-12-30 23:12:43.058 [INF] CNCT: ChannelArbitrator(43a63045a6b7fc2be07424afd5eda561ea01009c057ab8693b2d2212a4a015d5:1): go to chain for outgoing htlc 6ac792db9b79f262bb941dec776ac676980c2bd7c294443316330c742c2ac706: timeout=823615, blocks_until_expiry=0, broadcast_delta=0\n2023-12-30 23:12:43.076 [DBG] CNCT: ChannelArbitrator(43a63045a6b7fc2be07424afd5eda561ea01009c057ab8693b2d2212a4a015d5:1): attempting state step with trigger=chainTrigger from state=StateBroadcastCommit\n2023-12-30 23:12:43.077 [INF] CNCT: ChannelArbitrator(43a63045a6b7fc2be07424afd5eda561ea01009c057ab8693b2d2212a4a015d5:1): force closing chan\n2023-12-30 23:12:43.103 [INF] CNCT: Broadcasting force close transaction bfea88acb1b00ac48cbe6e571f41d8016012ba31813f1b7e94105a349c890d42, ChannelPoint(43a63045a6b7fc2be07424afd5eda561ea01009c057ab8693b2d2212a4a015d5:1): [...]\n```\n\nHere's the close transaction: https://mempool.space/tx/bfea88acb1b00ac48cbe6e571f41d8016012ba31813f1b7e94105a349c890d42\n\nAs you can see, it includes the two anchor outputs (worth 330sats), the balances (52k and 4.9M), and one additional output (13k sats) which is the HTLC in question. As my peer opened the channel, the fees (7.7k sats) were deducted from their channel reserve and I did not pay for this, even though my node sent out the close transaction.\n\nWarning: If there were other pending HTLCs in the channel at this time, they'd also be included in the transaction, no matter how recently they were received! Make sure to limit the number of in-flight HTLCs (per channel), as a single HTLC timeout might cause an extremely large/costly force-close if many other (healthy?) HTLCs have to be included.\n\nSadly, the fee rate of 24 sat/vByte does not suffice to get the close transaction confirmed in time. As explained in Elle Moutin's excellent blog series (https://ellemouton.com/posts/htlc-deep-dive/), my peer can always reveal the HTLC's preimage and claim the funds. However, my peer on the incoming side (bfx-lnd0) can also claim the funds after some timeout, which is why my node needs to make sure Gravity21 🌎☄️ cannot claim the funds after I already lost them to bfx-lnd0. **To prepare for this, lnd needed to get the close transaction confirmed and, thus, "pulled" the anchor output (CPFP)**:\n\n```\n2023-12-31 03:44:16.708 [INF] SWPR: Creating sweep transaction e65d88492b1344be0bf7f2b4f435e671dfa6fd68bf374b82105878c598ff00ed for 3 inputs (bfea88acb1b00ac48cbe6e571f41d8016012ba31813f1b7e94105a349c890d42:0 (CommitmentAnchor), 0529999cd28817dd9666804d28e88c1badf55a260fd7e996677ee6df9dd7c22a:0 (TaprootPubKeySpend), 39fcf06df92450afb3766911d41689007af95fb36f0c386ba05419ed6c530d30:0 (TaprootPubKeySpend)) using 45093 sat/kw, tx_weight=956, tx_fee=0.00093401 BTC, parents_count=1, parents_fee=0.00007787 BTC, parents_weight=1288\n```\n\nHere's the transaction: https://mempool.space/tx/e65d88492b1344be0bf7f2b4f435e671dfa6fd68bf374b82105878c598ff00ed\n\nNote that my node has to pay the fees for this sweep (93k sats!).\n\nThis sweep transaction got mined a few minutes later:\n\n```\n2023-12-31 03:47:17.917 [INF] LNWL: Marking unconfirmed transaction e65d88492b1344be0bf7f2b4f435e671dfa6fd68bf374b82105878c598ff00ed mined in block 823653\n```\n\n**Now lnd wants to claim the HTLC funds and fail the payment upstream to bfx-lnd0 (also to avoid a force-close from bfx-lnd0!). For this, a HTLC timeout transaction is created, which spends the HTLC output to an intermediate address, from which only my node can take funds (leaving the issue of revocation aside, nobody is cheating here)**:\n\n\n```\n2023-12-31 03:47:43.333 [INF] SWPR: Creating sweep transaction ee070ca1a7c29ba96bb38eb4b6ac1ff76e3229033eb833e9a7b7ed7db30e15cf for 3 inputs (bfea88acb1b00ac48cbe6e571f41d8016012ba31813f1b7e94105a349c890d42:2 (HtlcOfferedTimeoutSecondLevelInputConfirmed), e65d88492b1344be0bf7f2b4f435e671dfa6fd68bf374b82105878c598ff00ed:0 (TaprootPubKeySpend), ea3a137ce1beb1c5e53937d3fff1a80cb041dd1c35ffd0452da20bd3b5178202:0 (TaprootPubKeySpend)) using 37114 sat/kw, tx_weight=1300, tx_fee=0.00048248 BTC, parents_count=0, parents_fee=0 BTC, parents_weight=0\n2023-12-31 03:47:43.347 [INF] NTFN: Found input bfea88acb1b00ac48cbe6e571f41d8016012ba31813f1b7e94105a349c890d42:2, spent in ee070ca1a7c29ba96bb38eb4b6ac1ff76e3229033eb833e9a7b7ed7db30e15cf\n2023-12-31 03:47:43.347 [DBG] CNCT: Found mempool spend of HTLC output bfea88acb1b00ac48cbe6e571f41d8016012ba31813f1b7e94105a349c890d42:2 in tx=ee070ca1a7c29ba96bb38eb4b6ac1ff76e3229033eb833e9a7b7ed7db30e15cf\n2023-12-31 03:47:43.347 [DBG] CNCT: HTLC output bfea88acb1b00ac48cbe6e571f41d8016012ba31813f1b7e94105a349c890d42:2 spent doesn't reveal preimage\n2023-12-31 03:51:54.669 [INF] NTFN: Found input bfea88acb1b00ac48cbe6e571f41d8016012ba31813f1b7e94105a349c890d42:2, spent in ee070ca1a7c29ba96bb38eb4b6ac1ff76e3229033eb833e9a7b7ed7db30e15cf\n2023-12-31 03:51:54.966 [INF] NTFN: Dispatching confirmed spend notification for outpoint=bfea88acb1b00ac48cbe6e571f41d8016012ba31813f1b7e94105a349c890d42:2, script=0 49ae7fe296198a7dcc8b50c6f6e613afc5810d49783926bdc43b3dc7a6d5948c at current height=823654: ee070ca1a7c29ba96bb38eb4b6ac1ff76e3229033eb833e9a7b7ed7db30e15cf[0] spending bfea88acb1b00ac48cbe6e571f41d8016012ba31813f1b7e94105a349c890d42:2 at height=823654\n```\n\nHere's the transaction: https://mempool.space/tx/ee070ca1a7c29ba96bb38eb4b6ac1ff76e3229033eb833e9a7b7ed7db30e15cf\n\nSome observations:\n - even though lnd created this transaction, other parts of the code still see it added to the mempool and check for any preimage being revealed\n - my node has to pay the fees for this HTLC timeout transaction (48k sats!)\n - the HTLC is only worth 13k sats, so paying 140k sats to avoid losing it seems pointless. However, as not claiming timed out HTLCs could lead to peers stealing lots of small-ish amounts, being strict seems to be the better approach overall.\n\nNow, after spending 93k + 48k sats, my funds are safe, but locked. In around two weeks my node will be able to claim both the channel balance and the HTLC amount, but this isn't urgent (and I tweaked my node to not spend a whole lot of sats for this rather optional step, which I believe is an ongoing issue in lnd).\n\nAs you can see, even though I didn't open the channel and my node was up and running for the whole time, having an unrealiable peer still caused me to spend 140k+ sats. \N 654 \N 420918 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.5377090694092 0 \N \N f 1372264959 \N 8 128760751 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 436322 2025-03-13 13:22:09.443 2025-03-29 22:39:46.792 This transaction represents an entire year of my life. https://mempool.space/tx/9e5d8ccd8b3e214204bf06ca6fc84cf32dedaf607940a3e34b1709facb214172\n\nAccording to mempool, it looks like a pretty boring transaction with nothing going on. But in secret, a lot of really fancy cryptography took place.\n\nSpecifically this contract was executed:\n\n```\n{\n details: 'n/a',\n expires: 14400,\n network: 'main',\n paths: [\n [ 'heads', 10000, 'bc1qdzyjapwgnpem283aexjfym5ns3snkwjrwtz5kv' ],\n [ 'tails', 10000, 'bc1qqdua5pjqkmy074qhy0xweazj7ta7nsl08e7jpz' ]\n ],\n payments: [ [ 5000, 'bc1qtffw6glz5jc4fkxfxd7m549h3seayd7fq9svw6' ] ],\n programs: [\n [ 'close', 'heads', 'proof', 1, '9997a497d964fc1a62885b05a51166a65a90df00492c8d7cf61d6accf54803be' ],\n [ 'close', 'tails', 'proof', 1, '9094567ba7245794198952f68e5723ac5866ad2f67dd97223db40e14c15b092e' ]\n ],\n schedule: [ [ 7200, 'close', 'heads|tails' ] ],\n title: 'Basic two-party contract with third-party dispute resolution.',\n value: 15000,\n version: 1\n}\n```\n\nThe contract was settled by the escrow agent asynchronously, without taking custody or interacting with the previous owner. Instead, the funds were deposited into a musig-based covenant transaction. And in the interim, the fate of a bitcoin in escrow was decided by a coin-flip.\n\nWith that, I'd like to announce that the BitEscrow beta program is officially launched.\n\n**https://github.com/BitEscrow/escrow-core**\n\nThere is still a lot of documentation that and other things that needs to be published, so please bear with me while I rush to get that done. We are in the middle of moving to a new office. A lot is going to be updated and released in the next few weeks.\n\nMyself and Tristan have poured our hearts into this project, and it is a love-letter of sorts to Bitcoin and all the great people that make the magic-internet-money scene such a wonderful space.\n\nPlease feel free to check out the README.md at the link, if you are curious about the secret sauce behind the greatest escrow on the planet, backed by the hardest money every invented\n\nps: there's a lot of really great resources in there, for doing fun things such as taproot scripts and musig signatures (and putting bitcoin core through the ringer). Everything in there is open source.\n\npps: I tried to release this post the same time-of-day as the genesis block, but the fees are high and blocks are slow. the previous block took an hour fml 💀💀💀\n https://mempool.space/tx/9e5d8ccd8b3e214204bf06ca6fc84cf32dedaf607940a3e34b1709facb214172 14731 \N 436322 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.7339938185485 0 \N \N f 225776343 \N 3 219767797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:22:36.868 f \N \N \N 0 0 0 0 1 0 0 410223 2025-02-20 11:07:20.752 2025-03-29 22:39:46.79 The BitVM Primer: A Non-technical Explanation of BitVM \N https://github.com/twhit223/bitvm_primer 16808 \N 410223 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.0601486325257 0 \N \N f 263088755 \N 3 182290794 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 79125 2023-10-28 07:39:39.105 2025-03-29 22:39:46.79 Amboss - Chain Surveillance Selling Your Data? It would appear that Amboss Technologies is collecting personal information about the Lightning Network and its users and selling it to third parties as chain analytics software (or for the purposes of "Risk Management" in their own words). This is according to their very own [Privacy Policy](http://web.archive.org/web/20230510095915/https://amboss.space/privacy)\n\nThe amount of information they have collected and want to collect should alarm all users of Lightning, even those that have not given Amboss or Thunderhub (the wallet they collect data through) access to their node information. They have claimed 30% of the Lightning Network has registered for their services, which is dangerous considering their power to deanonymize the network.\n\nBy now, you might be wondering, what does this comprehensive data gathering mean for the privacy and security of Lightning Network users?\n\nTo put it simply, it undermines user privacy at its very core. What makes the Lightning Network unique is its dedication to providing privacy and anonymity to its users. The Lightning Network is designed in such a way that transactions are only known to the involved parties, making it more private than traditional financial systems. With Amboss' aggressive data collection policies, the fundamental privacy of the Lightning Network is at stake.\n\n## Collection Procedures \n\n### Third-Party Collections\nOne glaring concern is how Amboss collects user information.\n\n> For example, we may collect information from advertising networks, and data analytics providers. This information may include your name, email address, and phone number. Additionally, if you create or log into your Amboss account through a third-party platform (such as Telegram), we may have access to certain information from that platform, such as your name, telephone number, and profile picture, in accordance with the authorization procedures determined by such platform.\n\nTwitter, telegram, and website/email are some ways that Amboss lets you link your account, which allows them further collect, store, and sell that data according to their policy. \n\n### Source of Funds\nNot only is the collection happening, but they go further to try to link everything you provide them with, such as analyzing the source of funds:\n\n> We will also use vendors that provide background information about social media profiles we collect and information about the source of funds from the transaction IDs referenced above.\n\nThe language used here is very intentional. They are trying to figure out the source of funds. Now why would they want to do that? Because they are a chain analytics company selling this data to interested parties such as Chainanalysis, governments, or highly regulated entities.\n\n### KYC-Level Identity\nEven more alarming, the information they want to collect doesn't stop there:\n\n> We may also work with identity verification vendors to conduct "know your customer" or "know your business" checks. You may be asked to share information with such vendors (e.g., name, address, social security number, and driver's license) so the vendors can tell us whether you have successfully completed the check and are authorized to use the Services.\n\nWhy does Amboss need KYC information such as name, address, and social security numbers? Combined with all the other data collected, this allows them to link the source of funds, transaction ids, node ids, etc., with your social media persona and your entire government identity, which is later sold. It's one thing if this was an exchange, but this is YOUR self-custodial funds they are infringing on and sharing with parties that do not have access to this information otherwise. \n\nAnd for what? So you can sell liquidity on their centralized platform or have a "verified" node? Congratulations, you doxxed your whole stack on your node, in addition to weakening the privacy of all the others on Lightning.\n\n### Lightning Network Collection\nCertain information is publicly broadcasted on Lightning, which Amboss collects and sells, which might make sense, given that there should be no expectation of privacy. However, lightning information is temporary, unlike the Bitcoin Blockchain, which is permanent. That breaks down when a well-funded information collector decides to persist and sell this data, which Amboss is doing. \n\nThere's some basic stuff like this: \n\n> - Node Information: We collect information about node(s) on the Lightning Network, including the alias, color, features, public key, balance information, and size of the backup. Nodes may also independently share other information with us that is hosted on the nodes platform, such as social media information, community information, or other identifying information.\n\nAnd more intrusive information like: \n\n> - Channel Information: We also collect information about the channels on the Lightning Network, including the fees, response times, transaction IDs, and peer ratings associated with the channel.\n> - Transaction Information: When you engage in a transaction through the Services, we collect information about the transaction, such as the date, time, and amount of the transaction.\n> - User Reported Information: we also receive information from users about transactions on the Lightning Network to which Amboss is not a party, including payment forwards, failed forwards, node online status, history, and balance.\n\n"Response Times" is pretty ridiculous, considering deanonymizing attacks depends on analyzing the response times between each channel.\n\n"Transaction on the Lightning Network" means that they are taking individual transaction information from each node that is routing (and "voluntarily" giving to Amboss) and collecting in mass. **That means that a transaction routing through multiple nodes participating in Amboss data collection will allow Amboss to determine the source and destination of the payment, which is assumed that they will sell according to their policies.** This is **NOT** public information. Amboss has historically stated their innocence by hand-waving that node operators are "voluntarily" giving them this information when linking their node to Amboss and "voluntarily" running the wallet software for which the cofounder is conveniently the maintainer. \n\nYou've read that right. **Amboss is the data collection monetization arm for the wallet they created called Thunderhub.** Would you use a wallet that Chainalysis created? Well, you are by running Thunderhub. Did you know the amount of data that you are "voluntarily" giving to chain analytics companies? Is that even considered voluntary if it is without your knowledge?\n\n### Balance Sharing\n\nLet's also look at one of the controversial "features" they provide users, which is to, again, "volunteer" channel balance information to Amboss for your benefit somehow?\n\n> One of our features is called Channel Balance Sharing. Through Channel Balance Sharing, we present the current state of channel balances and the aggregate flow of funds through the Lightning Network (**"Channel Balance Insights"**). To present Channel Balance Insights, we collect raw channel balance data. **We do not use the raw data to identify any individuals or transactions.** As soon as we have generated the Channel Balance Insights we delete the underlying raw data. (This typically occurs within 24 hours.)\n\nThis feature, as described in their privacy policy, indeed seems innocent. However, upon close inspection, several questionable aspects of this feature emerge.\n\nThe feature collects "raw channel balance data," which refers to the unprocessed, unfiltered information about the balances of all channels on the Lightning Network. This includes the size of the channels and the flow of funds within them. Although Amboss claims they do not use this raw data to identify individuals or transactions, the mere fact that they have access to such data is concerning. In the wrong hands, such data could infer patterns, analyze user behavior, and deanonymize users or transactions.\n\nAmboss' claim to delete the "underlying raw data" within 24 hours does not fully assure user privacy protection. The interval between collection and deletion provides Amboss ample time to generate Channel Balance Insights, which, although aggregated, could be analyzed to infer patterns about the flow of funds within the Lightning Network. More importantly, the policy does not explicitly state if and how they ensure secure data deletion, leaving ambiguity around the integrity of this process.\n\nAmboss doesn't clarify if the deletion of raw data includes all copies and backups. If backups are kept and not securely deleted, this sensitive information can be exposed or misused.\n\nAmboss' policy doesn't clarify whether third parties have access to these "Channel Balance Insights." Suppose these insights are made available to other entities. In that case, it broadens the potential for misuse, potentially creating a secondary market for data analysis that could compromise the privacy and anonymity of Lightning Network users.\n\nEven if Amboss does not misuse this data, the company becomes an attractive target for malicious actors. Cyberattacks could steal this valuable trove of information before it's deleted, possibly leading to a significant breach of privacy.\n\nWhile the "Channel Balance Sharing" feature might seem innocuous as per Amboss' privacy policy, it raises serious concerns regarding the overall privacy and security of Lightning Network users. It is another tactic for Amboss to amass a significant amount of sensitive user data, and the lack of clarity in their privacy policy only amplifies these concerns.\n\n## Use and Sharing\n\n> We share personal information in the following circumstances or as otherwise described in this policy: We share personal information with vendors, service providers, contractors and consultants that access personal information to perform work for us, such as companies that assist us with web hosting, identity verification, fraud prevention, customer service, email delivery, and marketing and advertising. We reserve the right to make the information described above publicly available on our Services (including through our APIs) and to sell certain of that information to our customers. We may disclose personal information if we believe that disclosure is in accordance with, or required by, any applicable law or legal process, including lawful requests by public authorities to meet national security or law enforcement requirements. We may share personal information if we believe that your actions are inconsistent with our user agreements or policies, if we believe that you have violated the law, or if we believe it is necessary to protect the rights, property, and safety of Amboss, our users, the public, or others. We may share personal information with our lawyers and other professional advisors where necessary to obtain advice or otherwise protect and manage our business interests. We may share personal information in connection with, or during negotiations concerning, any merger, sale of company assets, financing, or acquisition of all or a portion of our business by another company. Personal information may be shared between and among Amboss and our current and future parents, affiliates, and subsidiaries and other companies under common control and ownership. We may share personal information with your consent or at your direction.\n\nThe 'Sharing of Information' clause in Amboss' privacy policy is rife with ambiguities that could allow for extensive and unrestricted sharing of personal information. Their policy offers a broad range of scenarios in which they may share personal information, and it's crucial to take a closer look at each.\n\nThe policy starts by mentioning sharing information with vendors, service providers, contractors, and consultants performing work for Amboss. While this may seem ordinary for a technology company, the scope of 'work' and the kind of companies involved isn't defined, potentially allowing any entity they work with to access personal data.\n\nAmboss's "Sharing of Information" policy provides broad leeway to share, sell, and disclose personal information they have collected, with few restrictions. This effectively means that any personal information shared with Amboss could be distributed to virtually anyone — from their vendors to business partners, law enforcement, other companies, and even the public. This raises serious questions about how user privacy is protected under their policy.\n\n\n## Conclusion\nThere's a certain point where privacy policies are generic enough that say something along the lines of "The information you have provided us may be used to provide services to you in return" and may even feature some language such as third-party software providers that might have access to that information as well. However, all the language here is very much catered towards what they are trying to do, which is to over-collect as much as they can to sell your financial data and identity. And it is working. After all, they have recently raised $4M to carry out these goals.\n\nAmboss has tricked users into signing up for their service to sell their information to third parties. They have been targeting Lightning Service Providers to collect their routing information and have gone after communities to collect general user information. Privacy is only as strong as the ability to hide amongst a crowd. If the entire crowd has been fooled into giving up their information, nothing is left but the illusion of privacy. It is up to us to stand up to malicious data collection and stop using services like Amboss.\n \N 8380 \N 79125 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.2265206942753 0 \N \N f 152814205 \N 1 211369885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 17:01:04.792 f \N \N \N 0 0 0 0 1 0 0 435125 2025-03-12 13:38:25.485 2025-03-29 22:39:46.79 Update on Wife's Cancer Had written up some notes a while back but all felt too premeditated. Just wanted to give you all an update (Previous: [Part 1](https://stacker.news/items/423124) | [Part 2](https://stacker.news/items/434440) | [Part 3](https://stacker.news/items/444102) | [Part 4](https://stacker.news/items/472852) | [Part 5](https://stacker.news/items/505115)\n\nShe ended Chemo about 2 months ago but it got pretty rough. She was in the hospital 3 times over the course of the treatment and had to have an emergency surgery at the end. We had wanted to avoid radiation due to the side effects on a younger woman (early menopause, etc), but have now gone forward with that treatment. She has really been so much better since that emergency surgery, better than she has been in the 2 years before we had the diagnosis. \n\nJust as I was writing this, got some not great news, she was at her treatment and was told that her CEA number (a cancer indicator in blood) is back up. It is not definitive and that test was from last week, so they took another blood draw today and will be waiting for those results. If the number remains high, then will have do another CT scan ... Have felt that we were on the back-end of all this, but ... \n\nPlan has been that the first surgery would be in Jan/Feb. A bit shaken at the moment by this CEA news so going to stop here for now. \n\nThank you all for being so great, have nice weekend. \N 12959 \N 435125 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 24.6622309751559 0 \N \N f 339832078 \N 2 61820749 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 22:48:57.212 f \N \N \N 0 0 0 0 2 0 0 349 2022-08-03 20:51:23.13 2025-03-29 22:39:46.79 Join Us Today for a Q1 Review + Q2 Roadmap Discussion (11am ET) Howdy, stackers!\n\nToday we're hosting our Q1 2024 Review + Q2 2024 Roadmap call to discuss all the latest developments and plans for Stacker News starting at 11am ET.\n\nToday's hybrid format will feature a live (and recorded) YouTube call with @k00b, @ek, and @kr to cover 4 high-level topics:\n- What was shipped in Q1 2024\n- What was adoption like in Q1 2024\n- What is planned for Q2 2024\n- How stackers can help out\n\nAfter the call, we'll transition to a roundtable discussion right on this thread for anyone to bring up questions, suggest new ideas, or give feedback on anything related to Stacker News. Feel free to share any questions here in the meantime, and they'll either be answered on the 11am ET call, or directly on Stacker News afterwards.\n\nAt 11am ET, we will pin a comment on this thread with a link to the video stream and the slide deck.\n \N 12562 \N 349 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.4878839026345 0 \N \N f 113612730 \N 2 4822169 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435489 2025-03-12 18:25:07.962 2025-03-29 22:39:46.791 How safe is Sparrow's wallet encryption? Sparrow wallet offers setting up a password for each wallet. The password is used to encrypt and decrypt the wallet file.\n\nHow safe and strong is the encryption used? I couldn't find details on this in the docs, and I don't have the knowledge to judge from the code itself. \N 17638 \N 435489 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 9.49063919247397 0 \N \N f 20129372 \N 1 242880362 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 22:16:29.702 f \N \N \N 0 0 0 0 1 0 0 28747 2023-06-04 03:58:17.092 2025-03-29 22:39:46.791 Mutiny's new design puts people first \N https://blog.mutinywallet.com/mutiny-new-design-people-oriented/ 10056 \N 28747 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.9960217231441 0 \N \N f 0 \N 0 77685589 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 140553 2024-03-10 13:47:05.831 2025-03-29 22:39:46.792 AMA - Danny Diekroeger Founder of Deezy Labs - Ordinals, Lightning, and More Hi everyone, my name is Danny Diekroeger and I am the founder and CEO of Deezy Labs - here for an hour to answer any questions you might have.\n\nDeezy Labs is a software company building in the ordinals ecosystem. Our main product is our automated rare sat hunter which helps you use your bitcoin to hunt for satoshis that have a high market value, sell them, and earn pretty safe passive yield from doing so. In the past we have also built lightning liquidity products and we still run a large lightning node. Over the last year we have focused more on ordinals due to the opportunity and popularity and have done various experiments exploring a decentralized nostr-based psbt marketplace, a lightning-powered ordinals launchpad, and more.\n\nAsk me anything!\n\n \N 13553 \N 140553 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4910650375348 0 \N \N f 0 \N 0 28645923 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 390206 2025-02-03 12:55:54.682 2025-03-29 22:39:46.79 📝 plebpoet's original poem + discussion \nThis poem is called "crystal structure analysis" and I wrote it September 2021. \n\n![Screenshot 2024-02-05 at 7.31.49 PM.png](https://m.stacker.news/15111)\n\nLine by line, I'll discuss the choices I made: \n- It starts "and so" because I knew I wasn't telling a story so I couldn't manage to give it a proper beginning and end. I was trying to say something true about the nature of things that has always been. "And so" is meant to give the impression that you already knew this, it was already here. \n- A gleaming shape is the crystal mentioned in the title but not in the body, and that's because I'm only wanting you to see the shadow of a crystal. It is not about a crystal, but how one is formed "from a set of rules," these being the laws of nature.\n- These same laws that form beautiful things also form disastrous things. This is like good and evil always in a match, fated to be in conflict.\n- "the story" is the human part of this process. We put a story onto things that happen, onto crystals that form. We put a value to the size, color, shape, luster, strength of all that the earth produces. Without our story, these things would still happen. I was told a story, and this is me trying to get outside of it, make sense of its structure to see how well it fits over reality. \n- "what isn't molten into what is" so if you're still with me, we're imagining a terrifying match of fates in which earth or nature will collide endlessly and out of it will come something of worth, there was nothing, then there was something, and that's always happening. Plus that line just sounds cool.\n- The stories we tell cannot help but credit divinity for the creation which we see around us. Transfiguration makes something more beautiful in the process. "Schema" could have been "protocol" but the sound of schema is better. And myth is involved in who we become by the stories we tell. This is what I'm trying to get at, but could have done a better job expanding this part. This set of lines is including words that invoke vague ideas. A friend who read this poem said that she appreciated that she could draw the lines herself, therefore give it her own meaning. That may be a strength this poem has, but probably not for the average person who maybe does not regularly consume poetry.\n- "and so" again. No beginning, no intro, just a set of observations. "And so" the nature of things, "and so" what do I do about it. \n- "I face myself". I hope that this line holds a weight, or has some gravity to it. It is the first mention of "I", late in the poem on purpose, because I am not the focus. It's _This is how I find things to be, a conflict that has been interpreted as divine through stories I've been told._ Breaking the rock is reference to Moses. Eating the fruit is reference to Adam. The stories I was told came from the Bible, and this was the basis of my understanding of life growing up. Moses is tested by God, and fails. He breaks the rock. Adam was supposed to respect the rules, he doesn't, he indulges. I am identifying with these stories in a way I never had before, seeing that they have something to do with me. The life I am promised is one where I continually face myself, when I've failed, when I have work to do. Just as it was, so it is. I am seeing truth in the story I was told. I am seeing myself in these biblical figures. \n\nSo I'm realizing this poem is difficult to follow, because it is even for me. I won't touch it anymore, however. I won't edit it further. I guess because I received it, and it's pure this way. \N 6136 \N 390206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0274758903491 0 \N \N f 0 \N 0 68227909 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436036 2025-03-13 09:01:31.592 2025-03-29 22:39:46.79 THE CONSENSUS CONUNDRUM - Bitcoin faces a one-of-a-kind leadership problem >A lot of consensus-change proposals for bitcoin are on the table at the moment. All of them have good motivations, whether it's scaling UTXO ownership or making self-custody more tractable. I won’t rehash them here, you’re probably already familiar. Some have been actively developed for years.\n\n>The past two such changes that have been made to bitcoin successfully, Segwit and Taproot, were massive engine-lift-style deployments fraught with drama. There have been smaller changes in bitcoin’s past, like the introduction of locktimes, but for some reason the last two have been kitchen sink affairs.\n\n>The reality not often talked about by many bitcoin engineers is that up until Taproot, bitcoin’s consensus development was more or less operating under a benevolent dictatorship model. Project leadership went from Satoshi to Gavin to… well, I’ll stop naming names.\n\n>Core developers will likely quibble with this characterization, but we all know deep down that to a first order approximation that it’s basically true. The “final say” and big ideas were implicitly signed off on by one guy, or maybe a small oligarchy of wizened autists.\n\n>In many ways there’s really nothing wrong with this - most (all?) major opensource projects operate similarly with pretty clear leadership structures. Oftentimes they have benevolent dictators who just “make the call” in times of high-dimensional ambiguity. Everyone knows Guido and Linus and the based Christian sqlite guy.\n\n>Bitcoin is aesthetically loathe to this but the reality, whether we like it or not, is that this is how it worked up until about 2021.\n\n>Given that, there are three factors that create the CONSENSUS CONUNDRUM facing bitcoin right now:\n\n>(1) The old benevolent dictators (or high-caste oligarchy) have abdicated their power, leaving a vacuum that shifts the project from “conventional mode of operation” to “novel, never-before-tried” mode: an attempt at some kind of supposedly meritocratic leaderlessness.\n\n>This change is coupled with the fact that\n\n>(2) the possible design space for improvements and things to care about in bitcoin is wide open at this point. Do you want vaults? Or more L2s? What about rollups? Or how about a generic computational tool like CAT? Or should we bundle the generic things with applications (CTV + VAULT) to make sure they really work?\n\n>The problem is that all of these are valid opinions. They all have merit, both in terms of what to focus on and how to get to the end goal. There really isn’t a clear “correct” design pattern.\n\n>(3) A final factor that makes this situation poisonous is that faithfully pursuing, fleshing out, building, “doing the work” of presenting a proposal IS REALLY REALLY TIME CONSUMPTIVE AND MIND MELTING.\n\n>Getting the demos, specs, implementation, and "marketing" material together is a long grind that takes years of experience with Core to even approach.\n\n>I was well paid to do this fulltime for years, and the process left me with disgusted with the dysfunction and having very little desire to continue contribution. I think this is a common feeling.\n\n>A related myth is that businesses will do something analogous to aid the process. The idea that businesses will build on prospective forks is pretty laughable. Most bitcoin companies have a ton on their backlog, are fighting for survival, and have basically no one dedicated to R&D. The have a hard enough time integrating features that actually make it in.\n\n>Many of the ones who do have the budget for R&D are shitcoin factories that don’t care about bitcoin-specific upgrades.\n\n>I’ve worked for some of the rare companies that care about bitcoin and do have the money for this kind of R&D, and even then the resources are not sufficient to build a serious product demo on top of 1 of N speculative softforks that may never happen.\n\n---\n\n>This kind of situation is why human systems evolve leadership hierarchies. In general, to progress in a situation like this someone needs to be in a position to say “alright, after due consideration we’re doing X.” \n\n>Of course what makes this seem intractable is that the Bitcoin mythology dictates (rightly) that clear leadership hierarchies are how you wind up, in the limit, with the Fed.\n\n>Sure, bitcoin can just never change again in any meaningful way ("ossify"). But at this point that almost certainly resigns it to yet another financial product that can only be accessed with the benefit of a large institution.\n\n>If you grant that bitcoin should probably keep tightening its rules for more and better functionality, but that we should go "slow and steady," I think there are issues with that too.\n\n>Because another factor that isn’t talked about is that as bitcoin rises in price, and as nation-states start buying in size, the rules will be harder to change. So inaction — not deciding — is actually a very consequential decision.\n\n>I do not know how this resolves.\n\n—\n\n>There’s another uncomfortable subject I want to touch on: where the power actually lies.\n\n>The current mechanism for changing bitcoin hinges on what Core developers will merge. This of course isn’t official policy, but it’s the unintended reality. \n\n>Other less technically savvy actors (like miners and exchanges) have to pick some indicator to pay attention to that tells them what changes are safe and when they are coming. They have little ability or interest to size these things up for themselves, or do the development necessary to figure them out.\n\n>My Core colleagues will bristle at this characterization. They’ll say “we’re just janitors! we just merge what has consensus!” And they’re not being disingenuous in saying that. But they’re also not acknowledging that historically, that is how consensus changes have operated. \n\n>This is something that everyone knows semi-consciously but doesn’t really want to own.\n\n>Core devs saying “yes” and clicking merge has been a necessary precursor every time. And right now none of the Core devs are paying attention to the soft fork conversations - sort of understandable, there’s a bunch to do in bitcoin.\n\n>But let’s be honest here, a lot of the work happening in Core has been sort of secondary to bitcoin’s realization. \n\n>Mempool work is interesting, but the whole model is more or less upside down anyway because it’s based on altruism. For-profit darkpools and accelerators seem inevitable to me, although that could be argued. Much of the mempool work is rooted in support for Lightning, which is pretty obviously not going to solve the scaling problem.\n\n>Sure, encrypted P2P connections are great, but what’s even the point if we can’t get on-chain ownership to a level beyond essentially requiring the use of an exchange, ecash mint, sidechain, or some other trusted third party?\n\n>My main complaint is that Core has developed an ivory tower mindset that more or less sneers at people piatching long-run consensus stuff instead of trying to actually engage with the hard problems.\n\n>And that could have bitcoin fall short of its potential.\n\n—\n\n>I don’t know what the solution to any of this is. I do know that self-custody is totally nervewracking and basically out of the question for casual users, and I do know that bitcoin in its current form will not scale to twice-monthly volume for even 10% of the US, let alone most of the world.\n\n>The people who don’t acknowledge this, and who want to spend critical time and energy wallowing in the mire of proposing the perfect remix of CTV, are making a fateful choice.\n\n>Most of the longstanding, fully specified fork proposals active today are totally fine, and conceptually they’d be great additions to bitcoin.\n\n>Hell, probably a higher block size is safe given features like compactblocks and assumeutxo and eventually utreexo. But that’s another post for another day.\n\n---\n\n>I've gone back and forth about writing a post like this, because I don't have any concrete prescriptions or recommendations. I guess I can only hope that bringing up these uncomfortable observations is some distant precursor to making progress on scaling self-custody.\n\n>All of these opinions have probably been expressed by Jeremy Rubin\n years ago in his blog. I’m just tired of biting my tongue. https://x.com/jamesob/status/1857049961235403101 2224 \N 436036 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.261157641244 0 \N \N f 991851506 \N 6 59653878 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:11:42.13 f \N \N \N 0 0 0 0 4 0 0 448888 2025-03-23 00:41:54.329 2025-03-29 22:39:46.79 Btc-friendly places to escape to outside of USA? In a [comment](https://stacker.news/items/301556/r/elvismercury) about how things might shake out in response to [a modern-day btc 6102](https://stacker.news/items/301189/r/elvismercury), @k00b proposed that if the American govt got too heavy-handed, btc people would just move, since a lot of places in the world are a lot more compelling as expat destinations than they were 90 years ago.\n\nThis made me wonder: what would be the best destinations in such a scenario? Some desirable factors that come to mind, at least for me personally:\n\n- favorable legal and regulatory climate pertaining to btc\n- good social fabric (e.g., not an organized-crime hellscape where people have to live in armed and gated communities, or a place with a latent civil war bubbling under the surface)\n- a sizeable English-speaking contingent, or in a pinch, a language an English-speaker can achieve intermediate proficiency in without a decade of intense study\n- Cost of living not absurdly high\n- Climate and environment generally tolerable\n- Good and reliable infrastructure, both physical and digital\n- At least a medium level of culture, e.g., you can buy books, and find someone to talk to about them; there's a respectable art museum around someplace\n\nObviously all of these things are tradeoffs -- I list them to slightly restrict the scope of possibilities, while recognizing that not everyone is going to value the same things. But given that rough sketch, what comes to mind? If we got 6102ed, what would be some attractive places to migrate to?\n \N 21427 \N 448888 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 4.6616442647256 0 \N \N f 377954886 \N 4 85749945 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 20:59:15.614 f \N \N \N 0 0 0 0 3 0 0 435167 2025-03-12 14:04:49.081 2025-03-29 22:39:46.79 I hacked an Ethereum wallet and took all the money! 1st of all this was a bounty.\nI DID NOT STEAL THE ETH :D\n\nCheck Twitter and I am tagged in an Ethereum post, Only used Ethereum 2 times, initially not interested.\n\nThe pictures are clues to a BIP39 seed which unlocks 0.1 ETH\nOk, let me take another look.\n![2.png](https://m.stacker.news/12781)\n_https://twitter.com/ShareblockHolmz/status/1515361323449827358_\n\nAs all the words are from the 2048 BIP39 Dictionary.\nI took a guess for each picture and checked if it was in the dictionary.\nFound 11, not sure about the 4th.\nBut it's one of the 2048 words, so I just need to try all of them.\nEasy job for a computer :p\n![3.png](https://m.stacker.news/12782)\n\nEnter Seed Savior - Brute forces 1 word.\nI just pasted the words I know and it showed all the possible valid 4th word.\nAs I know the address, I just have to search for it here.\nGot 138 valid 4th words ,but my address is not present..\nAt least 1 of my guesses is wrong.\n![4.png](https://m.stacker.news/12783)\n_https://3rditeration.github.io/mnemonic-recovery/src/index.html_\n\nNow really want to find the seed!\nI went through each of the 2048 BIP39 words and looked to see if it matched any of the pictures.\nIt took 2 hours, to redo the list .🥲\nNow I have multiple options for each position.\nI have to hurry, this is public, others may be trying.\n![5.png](https://m.stacker.news/12784)\n\n5 million options are not that many.\nI just need the right tool.\n\nEnter BTCRecover\nA command line tool that I can tell it how to mix the words, and check if they generate the address I'm looking for.\n_https://github.com/gurnec/btcrecover_\n\nMy Mac M1 tries **90,000 seeds/second**\nTook 1 min, but NO LUCK!\n![6.png](https://m.stacker.news/12785)\n\nThis means that at least one of the possible words is incorrect.\nSo on one of the positions, I need to try all the 2048 words.\nI will have 2048 options on that position.\nPositions 4,6 I'm least sure of.\n6 days is too slow, others may also be trying to crack the seed!\n![7.png](https://m.stacker.news/12786)\n\nWhat if I use all 3 of my laptops.\nTogether they try 170,000 seeds/second.\nNearly a 2x improvement.\nI cut it down from 6 days to 3 days.\nNeed a bigger improvement, other may be cracking as I am!\nMy laptops are all cracking using their CPU.\nI need GPUs, a lot of GPUs!\n![8.1.jpg](https://m.stacker.news/12787)\n![8.2.jpg](https://m.stacker.news/12788)\n![8.3.jpg](https://m.stacker.news/12789)\n![8.4.jpg](https://m.stacker.news/12790)\n\nThere are 2 ways to do more calculations per second:\n\n1) get hardware that can calculate faster\n2) get more of the same hardware and run it in parallel.\n\nA GPU is basically a LOT of tiny weak processors that run in parallel and that is why some things run faster on GPUs.\n\nLuckily there are websites where people allow you to rent their powerful computers and you pay per minute.\nI used https://vast.ai/i as seemed to be the cheapest option.\nPrices range from $0.3 to $1 (for my needs)\nPretty much all have strong processors, ones with more GPUs cost more.\n![10.png](https://m.stacker.news/12791)\n\nEnded up renting **16 servers** and I was trying **1,096,000 seeds per second.**\nIt would take 11 hours to try all my candidate words, and on the 4th & 12th positions try all 2048 possible words.\nSo pressed start and got some much-needed sleep.\n![11.png](https://m.stacker.news/12793)\n\nWoke up and Seed not found.\nAngry and disappointed, I closed all the servers, as it cost me money to keep them up.\nBut then I looked through the list one more time, and wait a minute 8 is not a park, it's Hard Street.\nCould it be?\n![12.png](https://m.stacker.news/12794)\n\nUsed initial list of candidate words, but hard on the 8th position.\n4 minutes later SEED FOUND!1!1\n\nWhen you take out the server costs and donation to the person who maintains the tool, I was left with ~$50.\n\nBest 50 bucks I ever made in my life.\n(10 days of continuous work)\n![13.png](https://m.stacker.news/12795)\n\n# Clarifications\nI left tout a LOT of things to keep it short but to enumerate a few:\n- everything took multiple trees and a LOT of hair pulling\n- BTCRecover does not paralilise all the operations when generating addresses\n- when splitting the work between servers it slowed down the tool, i had to write a script and manually split the work between servers\n\nThe 1st pic in the thread was taken right after I found the seed, when I posted by "victory" on twitter, but the screenshots of the commands I re-ran after when I was documenting the process.\nhttps://twitter.com/raw_avocado/status/1520988465625710593\n\nUsually I share a Bitcoin story, but I though my only Ethereum story is interesting enough to share.\nAlso in case it's not obvious, everything I've done here applies to Bitcoin also, I mean its BIP32 & BIP39.\n\nI tweet 1 interesting Bitcoin fact/day and you can find it here(long form gets posted here on SN):\nhttps://twitter.com/raw_avocado/status/1743414238654201869\n\nAnd the #BitcoinFactOfTheDay is brought to you by BitBox.\n\n \N 21805 \N 435167 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.92744127166211 0 \N \N f 176783037 \N 2 171836956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:49:59.28 f \N \N \N 0 0 0 0 2 0 0 220301 2024-08-25 01:38:01.126 2025-03-29 22:39:46.791 Are devs getting slowly replaced by AI? Are devs getting slowly replaced by AI or are we just getting enhanced?\n\nI'm critical of every tech bro's assumption that AI will start replacing real developer positions. I can see there being LESS entry level positions or MORE responsibility for certain senior positions with the growing utility of AI assistance in coding, but that's about it.\n\nHuman enhancement with technology will always progress, but human replacement is a new thing, a zero to one.\n\nWith the advent of new tools like [Devin](https://www.youtube.com/watch?v=AgyJv2Qelwk) and new and improved LLM's like [Claude 3](https://www.anthropic.com/news/claude-3-family) I see how things can be dizzying with new and better tools constantly popping up.\n\nHowever, to view these developments as mere replacements is to miss the forest for the trees. The core of software development has always been about problem-solving, creativity, and understanding user needs. Aspects that AI, at this stage, cannot fully replicate. AI tools, like Devin or Claude 3, are incredibly powerful aids, yet they require skilled developers to guide them, interpret their output, and integrate that into practical solutions.\n\nFurthermore, the emergence of AI in the coding world could potentially democratize software development. It might lower the barrier to entry for many aspiring developers by handling the more mundane or boilerplate aspects of coding, thereby allowing more people to focus on the creative and innovative parts of development. This doesn't mean less need for developers but a shift in what skills are prioritized.\n\nIt's also worth noting that with every technological advancement, there's always been a fear of displacement. Yet, history shows us that technology typically creates more jobs than it destroys. It shifts the landscape, requiring adaptation and lifelong learning, but it also opens up new avenues for those willing to navigate them.\n\nSo what do you think? \N 762 \N 220301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.97314280691035 0 \N \N f 0 \N 0 173035273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 141146 2024-03-11 12:00:03.19 2025-03-29 22:39:46.791 Latest 23 Weeks of Valuable Data Analysis for Territory Owners As a territory owner, I've been scratching my head on my latest post about [finding the who, what & how creative stackers are in SN](https://stacker.news/items/693426/r/Design_r). Have been doing a lot of reading and diving deep into SN contents to find potential topics that I could bring up in the ~Design territory. It's true, _design_ is really broad, and different people understand it -and practice it- in different ways. Anyhow, I'm not here to talk about design, nor about the territory.\n.\n### Acknowledgements\nI'd like to take this opportunity to express my gratitude to @davidw for his inspirational post [Top SN Territories - 17 weeks later](https://stacker.news/items/486959/r/Design_r), and @supratic for defining the KPIs I've been using on [Decrypting SN KPIs to define the "worthiness" of posting in the right territory](https://stacker.news/items/457310/r/Design_r).\n.\n### Table header definition\n`(1)` **Profitability:** Weekly average `{spent}` by weekly average `{revenue}`.\n`(2)` **Engagement:** The weekly average number of `{comments}` for each `{posts}`\n`(3)` **Rev/Post:** An interesting metric for territory owners to adjust posting fee, mirroring it.\n`(4)` **Worthiness:** Result of `{revenue/post}` less `{fee}` to help stackers evaluate the risk of posting on a territory. When negative means that there's a high probability that the sats you spend for posting will be lost.\n.\n### The data \nThe data under consideration below has been fed the numbers available publicly available from the **[top territories](https://stacker.news/top/territories/week)** page. The range considered is from **March 31** to **September 7**; this is perhaps not accurate, and the boosts also produce false values on the averages. API access is awaited for more accuracy in overview and visuals.\n\nMay these data points provide you some insightful information, as they do to me. \n.\n\n| Territory | Owner | Posting Fee | `⁽¹⁾` Profitability | `⁽²⁾` Engagement | `⁽³⁾` Rev/Post | `⁽⁴⁾` Worthiness |\n|-------------------------------|---------------------|-------------|---------------|------------|---------------|------------|\n| ~AGORA | @AGORA | 21 | 3.5 | 3.1 | 141.5 | 120.5 |\n| ~aliens_and_UFOs | @OneOneSeven | 21 | 3.8 | 1.5 | 126.5 | 105.5 |\n| ~alter_native | @DesertDave | 8 | 10.8 | 2.7 | 38.3 | 30.3 |\n| ~AMA | @benwehrman | 1000 | 0.2 | 20.3 | 1962.4 | 9514.4 |\n| ~art | @antic | 10 | 8.7 | 1.3 | 12.9 | -8.7 |\n| ~bitcoin | @k00b | 100 | - | 4.7 | 0.0 | - |\n| ~bitcoin_beginners | @siggy47 | 120 | 7.0 | 4.8 | 102.8 | -17.2 |\n| ~bitcoin_Mining | @Bell_curve | 25 | 3.8 | 1.6 | 63.1 | 38.1 |\n| ~bitdevs | @niftynei | 15 | 5.1 | 0.5 | 45.6 | 30.6 |\n| ~BooksAndArticles | @siggy47 | 100 | 8.9 | 5.9 | 106.5 | 6.5 |\n| ~builders | @PlebLab | 1000 | 3.6 | 6.9 | 946.5 | -53.5 |\n| ~charts_and_numbers | @OneOneSeven | 117 | 8.4 | 8.7 | 140.0 | 23.0 |\n| ~conspiracy | @UCantDoThatDotNet | 17 | 9.9 | 3.8 | 37.3 | 20.3 |\n| ~Construction_and_Engineering | @BlokchainB | 50 | 7.0 | 1.6 | 37.5 | -12.5 |\n| ~crypto | @ek | 256 | 2.8 | 1.6 | 258.3 | 2.3 |\n| ~culture | @davidw | 600 | 5.6 | 10.6 | 467.6 | -132.4 |\n| ~Design | @Design_r | 21 | 10.6 | 3.0 | 32.8 | 11.8 |\n| ~devs | @bitcoinplebdev | 50 | 9.9 | 2.0 | 64.3 | 14.3 |\n| ~DIY | @RDClark | 10 | 10.1 | 1.4 | 22.8 | 12.8 |\n| ~Dogs_And_Cats | @siggy47 | 20 | 15.6 | 2.9 | 44.3 | 24.3 |\n| ~econ | @jeff | 215 | 9.1 | 6.7 | 114.4 | -100.6 |\n| ~Education | @theschoolofbitcoin | 100 | 5.8 | 2.7 | 75.8 | -24.2 |\n| ~FiresidePhilosophy | @frostdragon | 400 | 5.6 | 7.6 | 287.0 | -113.0 |\n| ~food_and_drinks | @Bitter | 10 | 10.3 | 3.9 | 28.8 | 18.8 |\n| ~gaming | @nout | 100 | 9.4 | 5.7 | 53.2 | -46.8 |\n| ~health | @benwehrman | 1000 | 2.6 | 2.8 | 317.3 | -682.7 |\n| ~history | @benwehrman | 1000 | 3.5 | 1.5 | 104.3 | -895.7 |\n| ~ideasfromtheedge | @MaxAWebster | 10 | 12.5 | 7.2 | 53.6 | 43.6 |\n| ~Import_Export | @globalmerchant | 10 | 11.2 | 1.0 | 19.9 | 9.9 |\n| ~jobs | @k00b | 10000 | - | 1.3 | 0.0 | - |\n| ~libertarian | @benwehrman | 1000 | 3.8 | 8.1 | 397.6 | -602.4 |\n| ~lightning | @AtlantisPleb | 1 | 7.4 | 1.5 | 56.0 | 55.0 |\n| ~lol | @UCantDoThatDotNet | 21 | 9.7 | 4.8 | 35.9 | 14.9 |\n| ~mempool | @softsimon | 10 | 7.6 | 1.4 | 31.9 | 21.9 |\n| ~meta | @k00b | 202 | - | 20.7 | 0.0 | - |\n| ~mostly_harmless | @elvismercury | 420 | 9.6 | 13.5 | 353.3 | -66.7 |\n| ~Music | @Public_N_M_E | 100 | 8.4 | 13.5 | 86.1 | -13.9 |\n| ~news | @ch0k1 | 210 | 4.3 | 3.5 | 96.2 | -3.8 |\n| ~nostr | @k00b | 100 | - | 2.3 | 0.0 | - |\n| ~openagents | @AtlantisPleb | 10 | 18.6 | 3.9 | 216.9 | 206.9 |\n| ~oracle | @oracle | 100 | 14.1 | 13.1 | 106.1 | 106.1 |\n| ~Photography | @TNStacker | 42 | 4.7 | 1.4 | 55.0 | 13.0 |\n| ~privacy | @davidw | 600 | 3.6 | 9.4 | 755.8 | 155.8 |\n| ~science | @south_korea_ln | 21 | 8.3 | 2.5 | 55.3 | 34.3 |\n| ~security | @ek | 100 | 6.4 | 1.5 | 40.5 | -59.5 |\n| ~Stacker_Sports | @grayruby | 50 | 12.6 | 13.1 | 107.9 | 57.9 |\n| ~tech | @k00b | 100 | - | 1.3 | 0.0 | - |\n| ~tutorials | @nout | 500 | 6.0 | 2.9 | 133.9 | -366.1 |\n\n\n\n\n \N 5497 \N 141146 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.39562968049841 0 \N \N f 0 \N 0 145673303 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 384668 2025-01-29 12:24:01.08 2025-03-29 22:39:46.791 The truth is in the comments... I was reflecting on a previous post [Cheapest way to put up a very basic website?](https://stacker.news/items/470578).\n\nI got some awesome answers, which I'll be taking a good look at when I do my next bare-bones site. Thanks for those.\n\nThe thing that really struck me, though, is this - I did a fair bit of research before picking the option I did (Weebly). And I'm usually pretty good at research.\n\nAnd now I find out that...there's TONS of other options that are WAY cheaper and probably better or as good as the one I picked, the heavily promoted one.\n\nThe truth is in the comments. The heavily promoted products are easy to find, but the real gems are often in the weeds. The gems are mentioned by people who don't make money off them, usually. They just want to help people out.\n\nIn other words, it's hard to find good information nowadays. Thank goodness for sites like stacker.news.\n\nAnother case in point - I had a friend who had some seriously painful back issues. She went to the emergency room multiple times. They gave her opiates, did some scans, etc. And these emergency room visits were insanely expensive! \n\nBut nothing was useful. The pain continued, until she saw a physical therapist. The physical therapist used some of the exercises from the book Treat Your Own Back by Robin McKenzie. Now that book is AMAZING. Anyone with back pain, read it (it's short). There's a 90% chance that it'll fix your problem. And you can get a used copy for about $1. But they did NOT tell her about these exercises at the emergency room!\n\nAnd of course Bitcoin is one of these answers. Dissed by the mainstream, but ultimately true (in my opinion at least).\n\nWhat are some other examples you can think of? \n\n\n\n \N 21103 \N 384668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8853108920783 0 \N \N f 0 \N 0 170232738 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 370518 2025-01-16 14:16:01.555 2025-03-29 22:39:46.791 You are either moving towards sovereignty or moving away from it Just something to think about today. \n\nYou can't do everything in one day but even things as simple as using open source sovereign tools is something. Using bitcoin. Many other things. Taking responsibility for your personal safety. Earning and saving wealth.\n\nYou will never vote your way to sovereignty or freedom. It takes action. There are many things you can do that do not cost you anything but time. They are not dangerous. They are not revolutionary but when more people do them they have impact.\n\nIts much easier to just sit back and be lazy. Thinking you can vote every 4 years and make some difference. I'm not telling you to not vote. But I am telling you that will never fix your problems. That's up to you and I. No one is coming to free you. It is up to you. And you can make positive change. \N 21166 \N 370518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9891979113687 0 \N \N f 0 \N 0 25499104 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448061 2025-03-22 11:28:27.645 2025-03-29 22:39:46.791 When you post/comment on SN, do you think about how many sats you will earn? Unless you are a legend like @random_, @kr, or @DarthCoin, you probably aren't making more than a couple bucks here and there on SN. So how much do those sats affect what you post here? \N 11073 \N 448061 \N \N \N \N \N \N \N \N history \N ACTIVE \N 1.60521592547184 0 \N \N f 0 \N 0 56755444 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 19:13:04.8 f \N \N \N 0 0 0 0 0 0 0 436051 2025-03-13 09:20:21.967 2025-03-29 22:39:46.792 Maybe Treating Housing as an Investment was a Society-Shattering Mistake \N https://goodreason.substack.com/p/maybe-treating-housing-as-an-investment 20655 \N 436051 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.54150306929165 0 \N \N f 685748020 \N 3 91246289 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:09:09.027 f \N \N \N 0 0 0 0 2 0 0 146507 2024-03-21 05:54:53.245 2025-03-29 22:39:46.791 How do you explain zapping to non-bitcoiners? Zapping is incredible. I get the warm fuzzies every time I see that someone sent me a few sats. But it's not the easiest thing to describe to people who don't know bitcoin and bitcoin culture. \n\nI often find myself saying that zaps are tips, but tips are a loaded word and usually imply a larger amount than a few pennies or fractions thereof. \n\nSo what's the word (or words) you use to describe it? \N 8498 \N 146507 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7076917588155 0 \N \N f 0 \N 0 53208572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441696 2025-03-18 08:47:39.007 2025-03-29 22:39:46.791 Sigbash: a privacy-friendly Bitcoin multisig key agent \N https://www.sigbash.com 16357 \N 441696 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 21.6469312729817 0 \N \N f 58700633 \N 1 217804228 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 312024 2024-11-29 00:03:34.971 2025-03-29 22:39:46.791 Banned from r/bitcoin for commenting about my own open source code Last week, I was proud to finally publish [my Rust implementation of MuSig2](https://github.com/conduition/musig2). In the daily discussion on r/bitcoin, (October 30th I believe), I submitted a comment which went something like this:\n\n> Today I finally put the finishing touches on [my new MuSig2 crate](https://conduition.io/code/musig2-crate/). As far as I'm aware, this is the first publicly available rust crate for MuSig2. Would love any feedback.\n\nI received this message in my inbox shortly afterward:\n\n![Screenshot](https://imageupload.io/ib/yhFve4yTlj2sAqu_1699289836.png)\n\nMessage text in case the above image is taken down:\n\n\n> Hello, You have been permanently banned from participating in r/Bitcoin because you broke this community's rules. You won't be able to post or comment, but you can still view and subscribe to it.\n>\n> Note from the moderators:\n> \n> > Reddit has suspended your account. Subreddit moderators don't know why and can't help you. You will need to contact site admins directly via this link. https://www.reddithelp.com/hc/en-us/articles/360045734511\n> > \n> If you have a question regarding your ban, you can contact the moderator team by replying to this message.\n>\n> Reminder from the Reddit staff: If you use another account to circumvent this subreddit ban, that will be considered a violation of the Content Policy and can result in your account being suspended from the site as a whole.\n\n\nThe message seems to point fingers in opposite directions at once. \n- On one hand, it claims i was banned only specifically from r/bitcoin by the mods there.\n- On the other hand, it claims my whole account was suspended by reddit's admins.\n\nThis is quite disappointing. I was hoping to elicit community discussion on an open source library which might prove very useful to other ecosystem developers, and provoke technical interest in newbies. Seems like a sign that r/bitcoin's mods are, for god-knows-why, trying desperately to avoid hosting technical content discussion on their sub.\n\nHas anyone experienced this before? Maybe I'm entirely misunderstanding this whole escapade.\n\nOther notes:\n- I can still access my account and apparently I can still post in other subreddits.\n- I followed the mentioned link (https://www.reddithelp.com/hc/en-us/articles/360045734511) and submitted an appeal to reddit. I haven't gotten any reply on this yet.\n- I do everything over TOR. Maybe this is related somehow.\n- I posted a link to the same blog URL in r/cryptography and [that post is still up](https://old.reddit.com/r/cryptography/comments/17k5zqf/announcing_the_musig2_rust_crate_reviewprs/).\n- I haven't yet replied to this message, in case it might inflame them further or earn me a complete account ban.\n\nI'm very thankful to have stacker.news. I've always felt open technical discussion is welcomed here. \N 994 \N 312024 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7868813744348 0 \N \N f 386317212 \N 3 153746979 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 05:29:27.458 f \N \N \N 0 0 0 0 2 0 0 1588 2022-09-19 20:58:06.217 2025-03-29 22:39:46.792 If It’s Not FOSS, It’s Not Bitcoin by wonderful @roy🔥🔥 https://medium.com/breez-technology/if-its-not-foss-it-s-not-bitcoin-9a6bc53182e5 661 \N 1588 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7097120030989 0 \N \N f 178433384 \N 1 15672811 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406462 2025-02-17 11:16:32.986 2025-03-29 22:39:46.792 What is the most interesting thing about bitcoin on a technical level to you? I've been going through Base58's bitcoin dev course and I am enjoying it quite a bit. For me, I think its the combination of the various technologies. The deeper I get into it the more respect I have for Satoshi and the developers that have built bitcoin. It may be old news to those of you that work on bitcoin projects every day but I'm pretty excited about how it all works still. \N 1751 \N 406462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2817902585705 0 \N \N f 159167424 \N 1 121672818 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434364 2025-03-11 20:35:12.496 2025-03-29 22:39:46.792 What would change your conviction in bitcoin? I was just thinking about the [“This Is Good For Bitcoin” meme](https://knowyourmeme.com/memes/this-is-good-for-bitcoin).\n\nThen I wondered what wouldn’t be good for Bitcoin, even in the long run, and would thus change my conviction in it. I am writing “conviction” instead of “selling” on purpose here. Events that would make you sell are also possible answers but not the only answers: maybe there is something that would make fiat still less desirable than Bitcoin but would still not be good for Bitcoin.\n\nI didn’t come up with any good answer, but I feel like there must be at least one. Do you have one? \N 708 \N 434364 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 21.2735348132913 0 \N \N f 0 \N 0 100797598 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:59.69 f \N \N \N 0 0 0 0 0 0 0 451316 2025-03-24 13:47:39.284 2025-03-29 22:39:46.792 Is LND (Lightning Labs) ruining the Lighting Network? I know, little bit "clickbait" title but I want to get some attention.\n\nTo be honest, I've been pissed off by the behaviour and further development of LND by Lightning Labs. Why? They don't care about specification and compatibility with other implementations and prefer solutions that will benefit only them. As a result, the Lightning Network will not be as successful as it could have been if they had worked together with other teams. I will explain...\n\nThere are 4 main players today in Lightning Network:\n- LND by Lightning Labs\n- Core Lightning by Blockstream\n- eclair by ACINQ\n- LDK by Spiral\n\nLND has 90+ % of the market share, which probably gives them the right to decide on the future development of LN even if other teams and most of the community are against it.\n\nThere is a [tweet](https://twitter.com/alexbosworth/status/1611754666177564672) from Alex Bosworth, where he is suggesting inbound routing fees. Quite a change, isn't it? You say to yourself that surely there is a specification for this and it has been discussed with others. Reality? Quite the opposite.\n\nMatt Corallo (from LDK team) is [against it](https://twitter.com/TheBlueMatt/status/1611917720152608769), the same applies to [Rene Pickhardt](https://twitter.com/renepickhardt/status/1612003823022751745) and [Rusty Russel](https://twitter.com/rusty_twit/status/1611932186965594113). But "fuck the collaboration and specs", we have 90+ % of market share and [there are some big nodes using LND](https://twitter.com/alexbosworth/status/1610727640197107712)...\n\nAnd it's not just about this one thing. There are a ton of improvements, that could improve the Lightning Network as a whole. The other teams (Blockstream, ACINQ, Spiral) are working on them, rolling out the specs and testing them together. Whereas Lightning Labs is going along its own that benefits them and not the network as a whole. Some examples:\n\n## We're big, we can do whatever we want\n[Here's](https://twitter.com/acinq_co/status/1496805313416241164) part of an email from [Alex Bosworth](https://twitter.com/alexbosworth) where he claims that if other implementations don't have the market share they do, they have no say in the specification. You can also find there what others think about it... Moreover, a lot of nodes run on mobile phones and are not in these statistics.\n\n## New features come before stability and security\nYou are probably aware of the critical vulnerabilities in LND recently (specifically in the btcd library) that led to nodes not being synchronized with the blockchain and potentially losing resources (which fortunately did not happen). What would you expect? For example, that they would apologize and do their best to make sure it doesn't happen again? Instead, Lightning Labs CEO Elizabeth Stark [accused Blockstream](https://twitter.com/adam3us/status/1587497634985611271) for sponsoring the attack. Sure, she then deleted the tweets and apologized, but... Wouldn't it be better to admit a mistake than kick around? Not to mention that a similar bug was repeated again a few days later.\n\n## Watchtowers\nThere is a [open specification](https://github.com/sr-gi/bolt13/blob/master/13-watchtowers.md) for watchtowers (BOLT-13). Wouldn't it be great if there was a uniform standard? And what did the LND do? Their watchtower is a proprietary solution where the watchtower itself is another instance of LND. A great solution if there is a bug in LND (see paragraph above) and then even watchtower can't save you...\n\n## Liquidity\nCoreLightning has introduced liquidity-ads. A clever and fully decentralised solution where bids to open channels are propagated through the gossip protocol itself. No need for any trust, service or centralized server. LND's solution? We will not support liquidity-ads (although ZeroFeeRouting has offered money to whoever implements it in LND) as it competes with our centralized solution called Pool, which we profit from.\n\n## BOLT-12\nEveryone is expecting BOLT-12 and other implementations already have it deployed and testing it. LND approach? [We're not going to implement it](https://github.com/lightningnetwork/lnd/issues/5594), for now.\n\n## Other things\nThere are a lot of other great improvements here - route blinding (privacy improvement), trampoline routing (simplifying routing for mobiles), async payments (ability to receive payments even when I'm offline), PTLC, a solution to the channel jamming attack, eltoo (although we're waiting for the Bitcoin modification here), etc. Most other implementations work on these in some way. And how does Lightning Labs approach this? What is their roadmap? [Completely different](https://twitter.com/alexbosworth/status/1608940345206902784), unfortunately...\n\n## Summary\nI understand that their priorities are different because they are VC-funded and and therefore has to make some money. Preferring proprietary and centralized solutions that they can somehow profit from, coupled with the fact that they'll skip writing specs and communicating with other teams because they have a large market share, so they'll decide everything, is not the way to go in my opinion.\n\nThis is not meant to be some attack on Lightning Labs, and I believe there are a lot of great people working there. I just wanted to make my point that I don't like where their development is going. Either they will force others in this way or after a while we will have two separate networks - free and open-source running CLN, eclair and LDK and then proprietary with LND...\n\nThe only thing I can (and will) do is ignore the pretentious nonsense from Alex Bosworth and replace my LND node with Core Lightning. \N 1394 \N 451316 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.22997832321916 0 \N \N f 171702210 \N 2 141365165 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 424115 2025-03-03 20:38:26.909 2025-03-29 22:39:46.791 Using DNS To Coordinate Bitcoin Payments \N https://bitcoinmagazine.com/technical/using-dns-to-coordinate-bitcoin-payments 1803 \N 424115 \N \N \N \N \N \N \N \N science \N ACTIVE \N 17.373919170065 0 \N \N f 64002463 \N 2 207607062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424591 2025-03-04 08:47:37.243 2025-03-29 22:39:46.791 It's time to pull our own weight in hash # It's time to pull our own weight in hash\n\n![](https://m.stacker.news/59082)\n\n## How it started\n\nBack in July, I wrote up [this post](https://stacker.news/items/629837) about my experience at the big Nashville conference. The TLDR is that most industrial miners don't put much thought into concerns about centralization when deciding what pool they mine with. This is a concern because the prevailing argument against centralization doomers has been that everybody will just switch pools if some pool starts to censure folks. This is clearly not true if those that control the hash aren't even thinking about such things.\n\nThe ensuing discussion was not encouraging. Here are a few observations from stackers.\n\n>I imagine that most industrial miners are hyper-focused on maximizing profit and are not really all that focused on doing right by bitcoin, i.e. protecting against 51% attacks, routing to the "best" mining pool based on "ethics", etc.\n\n>Mining is the industry for people who literally have no ideas. It is the industry where the product to be delivered and its quantity is pre-ordained for eternity. It is more basic than the business of logging or mining for talc powder. It is no more interesting than janitorial or waste management services, yet is able to draw frenzy from identitarian bitcoiners, who ironically, dilute how special the transition that is upon us is.\nThe desire for a simulacrum of the thing is an attack on the thing and a detraction from those who desire it sincerely.\n\n>Miners are their for the profit, or else they wouldnt be doing it.\nMany people are in bitcoin to make a profit, not to see it become the currency it deserves to be.\n\nThere are others. Many of these comments have a tone of concern, which makes sense to me. Others seem to have a tone of, "boys will be boys. Let them play in the dirt. I like to do smarty-pants things." I'm not trying to pick on anybody's comment in particular, but the problem here is that these are the boys **securing the network!** This is like being an arborist who's really into leaf health because it's sophisticated and pretty, but not so much into root health. He may be sad to find his leaves looking a little sickly one day.\n\n![](https://m.stacker.news/59084)\n\n## How it's going\n\n"Users of bitcoin should be viewing miners as an adversary."\n\nTLDR: bad\n\nThe above quotation is the inspiration for this post and a direct quotation from a mining hardware distributer I was speaking with this week. I've spent the last half a year researching ways to heat my house with bitcoin mining exhaust and the winds are starting to blow chilly again in my corner of the globe. I'm about ready to buy some equipment a bit beefier than my s9i fleet and have picked back up on conversations with sellers. The above quote came out after one particular seller had encouraged me to use a more affordable miner. I appreciate him looking out for my losses, but it expressed the same sentiment I keep hearing less bluntly everywhere I turn.\n\nHe said that if I was mostly concerned about decentralization, I should run a node. Well I do run a node, but blockchain validation is not the area I'm worried about centralizing. I'm worried about mining pool centralization. He went on to explain that it's just too competitive because industrial miners have been incentivized to buy miners that might not be profitable because they can depreciate them on their taxes. He reiterated that industrial miners are "fiat minded."\n\n![](https://m.stacker.news/59089)\n\n## Enemy __________ the Gates\n\nLet's explore this for a little bit.\n\nWhat he was describing was not the enemy AT the gates. This is the enemy GUARDING the gates. If fiat minded people take over the lightning network, nodes can close their channels. If fiat minded people take over all of bitcoin development, nodes can ignore their changes. If fiat minded people take over stacker news, you can sell your cowboy credits to darthcoin. If fiat minded people are the ones securing the network, long term, the best case scenario is a hard fork in which the network looses a MASSIVE amount of hash rate (security), takes a massive blow in the eyes of the public, challenging the value proposition of bitcoin, and a competing "legitimate" coin emerges. That's the best case scenario. Am I wrong? I can think of some that are worse.\n\n## No Escape\n\nAfter my post in July generated some noise, I shared it with a famous bitcoin influencer. I mentioned that this person is sponsored by one of the industrial miners that I spoke with at the conference. I asked if this person might consider having someone from the industry on to discuss what pools they contribute to and why. They wrote me back a one line response saying that they couldn't speak on behalf of their sponsor.\n\nOn one level, I get that. This person didn't want to implicate his sponsor in irresponsibility. On the other hand, since I haven't really heard any refutation of this concern, this guy either doesn't understand what I'm saying, or is fine having his adversary guarding his whole life savings.\n\nI also applied for a research position at Foundry, sighting that post. Wait, what?! You may be thinking, "isn't Foundry the organization that you're most harshly critiquing here?" Sure, but they will be smote with the rest of us if they get to that level of power, because the whole value proposition of bitcoin collapses. They might be holding all of their wealth in fiat at that point, but the business model goes down with the network.\n\n## Pull your own weight in hash\n\nTabletop solo miners are awesome. I hope to get one when I have some disposable cash. It's not going to solve this problem though. As a badass bookshelf decoration, hopefully it will solve the problem of having a bitcoin conversation icebreaker with my cousin Mikey. But they're literally currently more expensive than an s9 (I see one for sale online right now for less than half the price of a Bitaxe), which has over fifteen times the hashrate. Admittedly, running the s9 also adds a coffee worth of expense to your daily routine, and the hardware comes from the central manufacturer of most bitcoin mining. ...but it's fifteen times the hashrate. If you can afford an s19, it's one-hundred times the hashrate of one of these solo guys.\n\n## Waste not, want not\n\nAND, you can recycle the heat. My point is, let's wrestle with our adversaries this winter. Let's generate some real kick-em-the-teeth hash and motivate the manufacturers to build more real hash-producing miners for our homes. It's definitely in our best interest...and it's in the best interest of any honest industrial miner too!\n\n![](https://m.stacker.news/59083) \N 16789 \N 424591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4640242253756 0 \N \N f 568163093 \N 4 216716664 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 443486 2025-03-19 11:36:29.194 2025-03-29 22:39:46.791 Bitcoin’s False Dichotomy between SoV and MoE - by Roy Sheinfeld, Breez # Bitcoin’s False Dichotomy between SoV and MoE\n\nThis post is long overdue.\n\nI talk about Bitcoin *a lot*. In any given week, I’ll have dozens of conversations about bitcoin with various people across different sectors. And like a pendulum oscillating every other year, the narrative of bitcoin not being a medium of exchange keeps coming back. I get it. When influencers from the community are pushing this narrative, people listen. They’re *influencers*.\n\nBut in this post, I want to set the record straight: Bitcoin IS a medium of exchange, now and in the future. What’s more, its future as a store of value (SoV) depends on its acceptance as a medium of exchange (MoE). Some of the people pushing the (false) dichotomy between bitcoin as a SoV and a MoE are doing it for their own self-interest. Some are just hangers-on.\n\nhttps://cdn-images-1.medium.com/max/1600/0*fvdhtJ6mrMrrV2lq\n\nSince when is buying a coffee the true measure of the future of money? [Image: [X’s Grok 2 Mini](https://x.com/i/grok)]\n\nLuckily, these people do not control how bitcoin will continue to develop and be developed. Bitcoin’s future depends on our collective swarm intelligence, and together we’re pretty smart. Here’s the conclusion we will eventually, inevitably reach: the dichotomy of bitcoin is no dichotomy at all. Bitcoin’s durability and deflationary properties are what make it a good SoV. Its divisibility, portability, relative fungibility — along with its decentralization and censorship-resistance — are what make bitcoin a good MoE. But **these qualities presuppose each other**. Indeed, you can’t have a SoV without a MoE.\n\n## There Is No Value Without Exchange\n\nBefore determining how the categories of SoV and MoE fit together, we should establish what those terms mean in the first place. While there are conceptual differences between them, neither is really thinkable without the other. There is no SoV without a MoE and vice versa.\n\n### SoVs Trade Across Time\n\nStores of value need to be durable, and they need to retain their value. So far, so obvious. But what does it mean to “retain value”? How could you tell?\n\nThere are several ideas about how best to think about value. Marx famously [reduced value to labor](https://en.wikipedia.org/wiki/Labour_theory_of_value), so the more labor was invested in producing a thing, the more it would be worth. But this just begs the question: what’s a unit of labor worth? And is a wild strawberry worth less than a cultivated one, even if it’s more delicious?\n\nThen there’s “intrinsic” or “[objective](https://en.wikipedia.org/wiki/Intrinsic_theory_of_value)” value. In finance, [intrinsic value](https://www.investopedia.com/terms/i/intrinsicvalue.asp) means something like the “true” or “objective” value of an asset as distinguished from its market price, which is supposedly distorted by all the market participants and their (mis)perceptions. A company with plenty of quality machines and a positive bank balance would seem to have value even if its shares were worthless. In strict semantics, intrinsic value would mean that [the value is inherent](https://www.oed.com/dictionary/intrinsic_adj?tab=meaning_and_use#155168), in the essence of the thing.\n\nBut all value is contextual. In the middle of the desert, a barrel of water is worth more than all the gold in the world. The fastest mining rig ever devised is worth nothing to a [sadhu](https://en.wikipedia.org/wiki/Sadhu). Family heirlooms like your late grandma’s favorite earrings are worth incalculably more to members of that family than to anyone else. You won’t find their value in their objective characteristics.\n\nThat’s why many economists and mainstream bitcoiners subscribe to the [subjective theory of value](https://en.wikipedia.org/wiki/Subjective_theory_of_value). The idea is that there is no value in a transactional vacuum. Value emerges from how people deal with a thing, what they’re willing to trade for it. At some point, aggregate supply will meet aggregate demand — the price — and that’s where the trades will happen.\n\nA price is just the value of one thing expressed in a quantity of something else. A [Tag Heuer Connected Calibre E4](https://www.tagheuer.com/us/en/smartwatches/collections/tag-heuer-connected/45-mm/SBR8A10.BT6265.html) trades for $1450 USD, which is equivalent to about 0.02 btc, which is equivalent to …\n\nThat’s the first important conceptual point about SoVs: unless they are exchanged sometime, they have *no real value*. They might have notional value, like the value of an imaginary pet dragon, but their real value would never have the chance to emerge.\n\nThe second point is that all SoVs imply a trade by definition; it’s just that the trade is diachronic. In other words, the trade with a SoV is in the same asset at two points in time. Trade a smaller value of thing A in the present for a larger value of thing A in the future. Same asset, two different times.\n\nWhile we’re thinking about time, consider this: what does it mean for a SoV to appreciate? Its value must be measured *relative to something else*. In other words, appreciation simply means that its future real price will exceed its current real price; I’ll be able to *exchange* less of it for more stuff in the future than I can today. Without a trade — even just an unrealized future trade — there is no value.\n\nhttps://cdn-images-1.medium.com/max/1600/0*Y4U4lbnhFiJ5ILms\n\nMany things are two things at once. It just depends how you look at them. [Image: Oleg Shyplyak via [Creative Visual Artist](https://creativevisualart.com/2013/09/13/ukranian-painter-masters-the-art-of-optical-illusion-two-paintings-in-one)]\n\n### MoEs Trade Across Assets\n\nMoEs need to be divisible, portable, and fungible. Here the trade is synchronic (at the same time) across different assets rather across time (diachronic) with the same asset. But if MoEs are traded in the present by definition, how short is the present? What’s worth more: owning all the bitcoin that’s ever been mined, but only for one [femtosecond](https://en.wikipedia.org/wiki/Femtosecond), or ten million durable sats?\n\nSome amount of value retention and durability is necessary for a MoE to work. For example, [cigarettes](https://www.ranker.com/list/items-used-as-currency-in-prison/brandon-michaels) are used as currency in prison. But cigarettes go stale after a few weeks, so they don’t retain value very well over time. Those who have them are looking to spend them quickly. Ditto shitcoins whose value might collapse next week. You need to take the trade or reject it *now*.\n\nIndeed, durability is one of the characteristics that make gold a better MoE than, say, sodium. Gold resists almost any kind of corrosion, so our descendants will still have the same amount of gold to trade generations from now, whereas sodium can’t even get wet [without exploding](https://youtu.be/5UsRiPOFLjk).\n\nSo even though *conceptually* MoEs are exchanged instantaneously in the present, practically speaking they exist in a temporal world of people with finite lifespans, short vacations, and long hours in waiting rooms. A MoE that retains its value is worth more than a perishable MoE, other things being equal. (Interesting wrinkle: when perishability increases scarcity, but let’s not digress.)\n\nAnd MoEs reinforce the subjective theory of value. If no one wants to buy your artisanal [pumpkin spice pasta](https://www.reddit.com/r/StupidFood/comments/1fxq84f/pumpkin_spice_pasta/) for the price you’re asking, can you say that everyone is wrong? That no one recognizes its intrinsic value or the value of the hours you’ve invested in making it? Of course not. That monstrosity is worth what people are willing to exchange for it, nothing more and nothing less. Without a subjective, contextual theory of value, it’s hard to conceptualize a MoE in the first place.\n\n### SoV-MoE Convergence\n\nSo there are a few edge cases on each side, where the properties of the asset recommend it as *either* a SoV *or* a MoE. The harder an asset is to trade, the more it would seem like a SoV. The quicker an asset degrades, the more it would seem like a MoE, up to a point. Without *some* tradability, a SoV is worthless and no longer a SoV. Without *some* durability, a MoE is worthless and no longer a MoE. But some assets fall more on one side or the other.\n\nThe middle, however, is far from empty. That’s where you’ll find the really good stuff, like gold, bearer bonds, hard currency, and bitcoin of course. What makes them great is that they share the attributes of both SoVs and MoEs. These assets are more or less fungible, portable, and divisible, just like good MoEs. And their value is durable, just like good SoVs.\n\nIf people trade them at high velocity, they look more like MoEs. If trades occur at longer intervals, then they look more like SoVs. The substance is the same; it’s the context and the activity that changes how we see them.\n\nhttps://cdn-images-1.medium.com/max/1600/1*qrl5dBi61h5YqgwRbcipnw.jpeg\n\nContrast this happy coincidence with the claim of dichotomy. That is, what is bitcoin as a SoV exclusively, i.e. without working as a MoE? Rather than recognize and realize bitcoin’s potential, the SoV-only hypothesis absolves it from ever having to trade. But since value emerges from transactions, never in a vacuum, a SoV that never functions as a MoE has no detectable value.\n\nThe idea that bitcoin is only a SoV is [not even wrong](https://en.wikipedia.org/wiki/Not_even_wrong). It’s incoherent. It’s asserting that bitcoin is a store of value while removing it from the only kinds of context that could allow us to determine its value. SoV and MoE are logically and practically inseparable. A SoV is a MoE in transactional slow motion, and a MoE is a SoV with the trading velocity cranked up.\n\nBut enough theory. This is the way things have always been, or at least as far back as archaeology lets us see. We’ll return to bitcoin in a minute, but let’s look at its family tree first. The coincidence of SoVs and MoEs is an empirical reality that goes back millennia.\n\n## Storing and Trading Assets Through History\n\nBeyond theory, history provides evidence for the convergence of SoVs and MoEs. History contains a host of assets that function as both MoEs and SoVs because if they’re in demand, you can trade them, and if you can trade them, then it’s good to have a stockpile in storage. SoV and MoE are — and always have been — two sides of the same, er, coin.\n\n### Bronze Ingots\n\nThe overlap between SoVs and MoEs is illustrated beautifully by Bronze Age [oxhide ingots](https://en.wikipedia.org/wiki/Oxhide_ingot). These ingots were shaped like oxhides, came in roughly standardized weights (usually around 30 kg / 66 lbs.), contained relatively pure copper or tin, and were passed around all around the Mediterranean and beyond from the second millennium BCE — the Bronze Age.\n\nSince everybody was using bronze, copper and tin — the two ingredients of bronze — held their value very well. Everybody could use them. Demand was high and stable. They were also relatively easy to store.\n\nhttps://cdn-images-1.medium.com/max/1600/0*zH0E3C1M20R1FJ9V\n\nA copper oxhide ingot from Cyprus, aka Bronze Age bitcoin. [Image: [The Met Museum](https://www.metmuseum.org/art/collection/search/248493)]\n\nBut they were also relatively easy to transport. [A load of ingots](https://en.wikipedia.org/wiki/Uluburun_shipwreck#Cargo) found in a shipwreck from 1327 BCE contained metal that originated in Uzbekistan, Turkey, Sardinia and Cornwall. Chariots were still relatively new tech, but these hunks of metal were traversing the known world, farther than virtually any human would have traveled, because they were “connected to systems of international [distribution, exchange and trade](https://www.researchgate.net/publication/318723190_Revisiting_Late_Bronze_Age_oxhide_ingots_Meanings_questions_and_perspectives).”\n\nNow let’s say that you’re a Bronze-Age fisherman who comes across a sunken cargo of ingots. Are they a SoV or a MoE? Well, if you’ve had a good season, you might be feeling flush, so you save them for a rainy day, in which case they’re a SoV. If, on the other hand, the fish haven’t been biting and you need some liquidity, then you’d probably trade them quickly, in which case they’re a MoE. But how would you know they were worth saving if they weren’t being traded somewhere to reveal their value? And who could you trade with if there weren’t counterparties out there convinced that owning some ingots would be a wise financial decision?\n\nThe oxhide ingots’ durable, high-demand materials made them good SoVs, and their standardized sizes and portability made them good MoEs. The ingots were both simultaneously because each use implies the other.\n\n### Gold\n\nHumans started collecting gold a few millennia before they were into bronze. But at first, [gold was principally used](https://en.wikipedia.org/wiki/Gold#History) for decorative and sacred purposes, like statues and ceremonial jewelry. Since such objects aren’t [fungible](https://en.wiktionary.org/wiki/fungibility), they were poor MoEs, and trades were very infrequent. The low trading velocity was due to the impossibility of finding a price: ceremonial objects’ owners would always value them more highly than any counterparty.\n\nStandardized gold coins only started showing up around the 7th century BCE, about 1000 years after the ingots. Interestingly, they appeared [in China](https://www.oldest.org/culture/coins/) and [Anatolia](https://goldandsilvercentral.com/oldest-gold-coins-in-the-world/) around the same time. As coins, gold had finally become fungible, which increased the trading velocity and brought the SoV and MoE uses closer together. Coins also offered some advantages over oxhide ingots: a coin doesn’t weigh 30 kg, gold doesn’t corrode, and it didn’t have a lot of other uses, so the supply didn’t have to compete with demand for useful stuff like ploughs and swords made of bronze.\n\nGold coins were so effective as both a SoV and a MoE that basically everyone started using them, like the Roman *aureus*, the Almoravid dinar, the Spanish doubloon, the Tokugawa Koban, etc. Even now, 2600 years later, countries from [Armenia to Tuvalu are minting and circulating gold coins](https://www.apmex.com/category/10010/gold-coins) for people to keep and trade, to store and exchange.\n\nhttps://cdn-images-1.medium.com/max/1600/0*-9Qp1RFOopI0QRmI\n\nEphesians saw gold as a SoV and MoE 2600 years ago, and the idea is rooted so deep that money in video games is often depicted as gold coins even today. [Image: C[lassical Numismatic Group, Inc.]](https://commons.wikimedia.org/wiki/File:Triti,_Phanes,_625-600_BC,_Ionia_-_301224.jpg)\n\nAgain, the use of gold coins as a MoE made gold a more obvious and widespread SoV, and their widespread recognition as a SoV made them a more liquid MoE.\n\n### Wampum\n\nIn the 17th century, early European settlers on the Atlantic coast of North America and the indigenous peoples of the continent were getting to know each other. The worlds they knew were radically different. No common language, no common religion, no common history, radically different technology, radically different cosmologies. But as humans do, they started to trade pretty quickly. Without commonly recognized SoV-MoEs, though, trading is hard.\n\nAt first, fur pelts had a certain value, but they’re bulky, their value was not standardized, they can degrade, etc. They were better than nothing as a SoV and MoE, but not ideal as either. Venetian glass beads also worked, but getting beads from Venice to the European colonies in the “New World” could take months, maybe years.\n\n[Then in 1622](https://ictnews.org/archive/from-beads-to-bounty-how-wampum-became-americas-first-currencyand-lost-its-power) a Dutch trader named Jacques Elekens took a Pequot sachem (like a chieftain) hostage and demanded ransom. The sachem’s people brought Elekens 280 yards (~256 m) of white and purple beads made from clam shells — wampum. Apparently, they hadn’t really used wampum as cash before, and even in this instance the ransom had primarily symbolic value, like ransoming a prince by sending a fancy ceremonial scepter.\n\nBut Elekens was a trader, and though he missed the transcendent symbolic value of wampum, he saw its profane cash value immediately. If you can buy a chief’s freedom with wampum, what couldn’t you buy? Soon the Europeans were forcing a couple of tribes to produce wampum, and it was traded in units of length, like so-and-so many pelts for so-and-so many fathoms of wampum beads (1 fathom ~ 1.8 m / 6 ft.).\n\nhttps://cdn-images-1.medium.com/max/1600/0*XwvKoxebHuuIQ3U-\n\nWampum and the shells it was made of. Like gold coins and raw gold ore of 17th-century colonies. [Image: [Jim, the Photographer](https://flickr.com/photos/jcapaldi/8938928640)]\n\nWampum quickly became an official MoE. [Several colonies adopted wampum](https://en.wikipedia.org/wiki/Wampum#Currency) beads in standardized values as *legal tender*, a practice that continued for about a century. And wampum was naturally attractive as a SoV: “the European colonists quickly began trying to amass large quantities of this currency, and shifting control of this currency determined which power would have control of the European-Indigenous trade.” They weren’t just trading with it; they were building currency *reserves*. They were storing the MoE for its future value, and its future value made it an effective asset to trade today.\n\nThe words “[gold](https://en.wiktionary.org/wiki/gold#Noun)” and “[wampum](https://en.wiktionary.org/wiki/wampum#Noun)” still mean *money* in certain contexts. Speaking of money…\n\n### The USD\n\nThe power to create money is enshrined in the US Constitution, and the [Coinage Act of 1792](https://en.wikipedia.org/wiki/Coinage_Act_of_1792) pegged the value of the new dollar to the Spanish silver dollar and a fixed quantity of 416 grains of silver. “Eagles” were effectively $10 coins that were to contain 270 grains of gold.\n\nThe architects of the dollar were leveraging the historical context that everyone already understood: precious metals work as both MoEs and SoVs. After three and a half millennia, word had got around.\n\nAs tends to happen with specie, the coins were debased over time, which means that the minters kept gradually lowering the amount of precious metals contained in the coins. That’s how inflation works with a MoE that’s pegged to keep its value as a SoV. You can still mint the same amount at less cost by manipulating the peg.\n\nhttps://cdn-images-1.medium.com/max/1600/0*Et5HL4vqRlCkyqJ1\n\nTechnology so good that it saw only minor updates over two and a half millennia. [Image: [Lyle Engleson/Goldberg Coins and Collectibles](https://news.coinsblog.ws/2019/12/06/unprecedented-50-mil-gold-eagles-tyrant-collection-exhibit/)]\n\nThe [Gold Standard Act of 1900](https://en.wikipedia.org/wiki/Gold_Standard_Act) hardened the peg by making each dollar redeemable for a fixed amount of 25.8 grains of 90% pure gold. So if dollar notes were redeemable for gold, would that make them a MoE or a SoV? The notes *circulated*, but the US government was committed to *storing* an equivalent amount of gold to maintain their value. The gold might look like a SoV, and the notes might look like a MoE, but they were equivalent, so it’s only the use that differs, not any deeper nature.\n\nWhen the Great Depression struck, there was a run on the Federal Reserve. People were concerned about the dollar’s continued viability as a MoE, so they started to redeem their dollars for gold. When the Federal Reserve became concerned about its own ability to continue converting dollars for gold, President Roosevelt [suspended the gold standard](https://www.federalreservehistory.org/essays/roosevelts-gold-program).\n\nBut, of course, bank deposits didn’t fall to zero, so the dollar continued to function as a SoV and MoE. And people were hoarding gold so they could trade it just in case the dollar did lose its utility as a SoV and MoE. But both dollars and gold retained both functions.\n\nThe gold standard returned with the [Bretton Woods system](https://en.wikipedia.org/wiki/Bretton_Woods_system) after the Second World War, but this time the USD was pegged at $35 per ounce of gold, and central banks around the world could exchange their dollars for gold at that rate. This effectively made the USD the hardest currency, and through fixed exchange rates it was supposed to bolster other currencies too. As before, the equivalence through redemption virtually erases any practical distinction between the SoV and the MoE.\n\nFor a range of complicated reasons that can be reductively simplified down to “inflationary pressure” (i.e. fiat’s own perverse version of “numbers go up”), the USA had to abandon the international gold standard of Bretton Woods in [1971](https://en.wikipedia.org/wiki/Nixon_shock).\n\nWhile this was an important turning point for economic historians, the USD remains both a SoV and a MoE. According to the IMF, about [60% of global foreign exchange reserves are held in USD](https://www.imf.org/en/Blogs/Articles/2024/06/11/dollar-dominance-in-the-international-reserve-system-an-update), about 3x as much as the nearest competitor. Other countries *store* USD just in case they need to *exchange* it for their own currency to prop up their own currency’s value or to buy necessities in a pinch.\n\nEven without gold backing, demand for USD is astounding. Foreign countries hold [$8.8 trillion of American debt](https://ticdata.treasury.gov/resource-center/data-chart-center/tic/Documents/slt_table5.html) — IOUs to be paid in dollars at some point in the future, which looks like a classic SoV. And most international *trade* is billed and settled in USD. [Even in Europe](https://www.federalreserve.gov/econres/notes/feds-notes/the-international-role-of-the-u-s-dollar-20211006.html), a continent with its own common currency, over 20% of trade is settled in dollars.\n\nThe remarkably resilient demand for greenbacks gives the USA as their minter a privileged position. The phenomenon of “[petrodollars](https://www.investopedia.com/terms/p/petrodollars.asp)” illustrates just how the USD has remained dominant since the collapse of the gold standard. Petroleum exporters sell oil for USD, and they rapidly accumulate large reserves of dollars. They need to spend these dollars, and it just so happens that the US is always eager to sell T-Bills (American I.O.U.s) for dollars to finance its [$35 trillion](https://www.usdebtclock.org/) in debt.\n\nAs long as other countries hold that debt, they have an interest in preserving the value of the dollar. As long as the dollar can retain its value, it remains useful for trade. As long as it remains useful for trade, other countries will accumulate dollars and dollar-denominated debt. Sound like a Ponzi scheme? Well, it’s not not a Ponzi scheme.\n\nIn short, other countries’ foreign reserves of USD let the US [trade on a multiple](https://www.wallstreetoasis.com/resources/skills/valuation/trading-multiples). Hold that thought.\n\n## Yes, Bitcoin Is a SoV Is a MoE\n\nBitcoin is the latest descendant in this lineage of readily tradable SoVs, i.e. of MoEs that people like to hoard because they hold their value. However, there is a widespread, often repeated claim that bitcoin is just a SoV. Indeed, that’s why I’m writing this, and that’s why I feel the burden of proof is on me to demonstrate bitcoin’s viability as a MoE. So far I’ve laid out some theoretical ideas about how SoVs and MoEs are conceptually inseparable and covered several historical examples to demonstrate that this mutual presupposition is how things have worked as far back as history can go. So now let’s turn to bitcoin, which is just new tech following established patterns: MoE and SoV go together because they must.\n\n### Transactions in the Trillions\n\nWe know bitcoin works as a MoE because people move bitcoin — A LOT. Adjusting for [change addresses](https://coinguides.org/bitcoin-change-address-output/), River estimates that [$14.9T of payments were settled with bitcoin](https://river.com/learn/files/river-payments-report.pdf) in 2022. So even if [74% of bitcoins don’t move within six months](https://cointelegraph.com/news/75-percent-bitcoin-hodled-6-months-hodl-wave-chart), bitcoin equivalent to the combined GDPs of Germany, Japan, India, and Canada can change hands in just a year.\n\n### Trading Bitcoin\n\nThere are about 2.35 million btc in exchange accounts [(about $150B)](https://www.coinglass.com/Balance). This should be puzzling because autonomy and self-custody are two of bitcoin’s major selling points. If bitcoin is just a SoV, why would anyone entrust it to another party rather than keeping it in cold storage themselves? If it’s a store of value, why wouldn’t you store it as safely as possible, especially considering that decently safe storage can cost as little as [a piece of paper](https://www.investopedia.com/terms/p/paper-wallet.asp)?\n\nThe reason more than one in ten of all bitcoins in existence are held in exchange accounts is to facilitate trading. Exchanges are just that: where people go to trade one asset for another. Bitcoin works beautifully as a MoE for such trades because no other cryptocurrency even comes close to the demand for bitcoin. Whether you go by market cap or unit price, bitcoin is in a league of its own. The only other coin that can compete on any interesting metric is [USDT](https://coinmarketcap.com/coins/), whose trading volume is roughly double bitcoin’s impressive $26 billion/day. And that is probably because Tether profits from the waning dominance of the legacy global MoE — the USD.\n\nIf bitcoin were only a SoV, nobody would leave their hoard on an exchange, and the trading velocity would be miniscule. But they do. And it isn’t.\n\n### Merchants Accept Bitcoin\n\nSome might object that, while bitcoin might be a MoE among the tech boys of the financial cognoscenti, it hasn’t penetrated the “real economy” the way a “real” MoE should. But examples of bitcoin circulating in the real economy would be enough to refute this claim. We’re in luck.\n\nRetailers are using bitcoin as a MoE because it already offers concrete benefits. Take one brilliant example from the recent [River report](https://river.com/learn/files/business-bitcoin-report-2024.pdf): [Atoms](https://atoms.com/), a Brooklyn shoe company. In 2021, Atoms started accepting bitcoin as payment and launched a [bitcoin-themed sneaker](https://atoms.com/products/atoms-00-bitcoin?_pos=1&_psq=bitcoin&_ss=e&_v=1.0). Atoms accepts bitcoin as a MoE (consumers pay for shoes with bitcoins), and then Atoms hold it as a SoV until the need arises. And when it does, their SoV bitcoin is automatically tradable MoE bitcoin because it’s the same bitcoin.\n\nAtoms proves that the dichotomy is strictly conceptual and misguided. Actual bitcoin is both a SoV and a MoE; it just depends on how its owner happens to be using it at the moment.\n\nAnd Atoms is not alone, not by a long shot. [Balenciaga accepts bitcoin](https://bitcoinmagazine.com/business/balenciaga-to-accept-bitcoin-crypto-as-payment). [Tag Heuer accepts bitcoin](https://bitcoinmagazine.com/business/tag-heuer-now-accepts-online-bitcoin-as-payment). AMC Theatres, PayPal, twitch, Ferrari, and Proton all accept bitcoin. Is anybody going to claim that AMC or PayPal are niche vendors known only to nerds with obscure financial hobbies?\n\nAre these famous, global brands hodling bitcoin as a SoV or trading it as a MoE? There’s that dichotomous thinking again. Bitcoin is a divisible, fungible, durable asset, so they can hold it as long as they want and trade it at any time. They can accept it, spend it, lend it, whatever. Bitcoin has no fundamental essence. It is whatever they/we use it for.\n\nhttps://cdn-images-1.medium.com/max/1600/0*omO42LmYU-biW2Ke\n\nBitcoin is penetrating the mainstream economy.\n\n## All MoEs and SoVs Are Just Betas\n\nAnother major lesson from the examples above is that SoVs and MoEs never stop evolving. Bronze Age fintech was about standardizing ingots and purifying the metals they contained (or, for the ruling class, maybe [debasing](https://en.wikipedia.org/wiki/Debasement) them). How SoV-MoEs are designed affects how we use them, which influences their design, which affects how we use them, and so on. But evolution is always about local optimization, never perfection, so there will *always* be room for further improvement.\n\nGood money has always served as both a SoV and a MoE, and bitcoin still has room to grow. Let’s consider the areas where bitcoin could use further optimization.\n\n### Fiat’s First-Mover Advantage\n\nIf asked, virtually every friend of bitcoin would prefer to receive their income in btc while paying their expenses in fiat. But this doesn’t mean that bitcoin is defective as a MoE; it means that *fiat is defective as a SoV*. People prefer to hold bitcoin because bitcoin holds its value *better than fiat*, so it makes sense to save the bitcoin for tomorrow when it will be worth more and spend the fiat today before it’s worth less.\n\nSo fiat’s edge is just that it has built up [13 centuries](https://en.wikipedia.org/wiki/Fiat_money#History) of network effects to compensate for its obvious defects. People know fiat. The world’s payroll systems, tax codes, and banking systems are built around fiat. The world has considerable sunk costs in the fiat project. That’s why it’s so important for bitcoin to exceed fiat in any metric: value retention, autonomy, censorship resistance, and of course…\n\n### The UX. Always the UX.\n\nBitcoin’s UX is improving. Many innovations are unequivocally ameliorations. The Lightning Network, for example, increases bitcoin’s maximum trading velocity by multiple orders of magnitude.\n\nOther aspects of using bitcoin, however, can be features and bugs simultaneously. The most obvious is self-custody. Holding your own bitcoin is really the only way to fully enjoy the autonomy and freedom bitcoin affords, whether as a SoV or a MoE or both. But with great power comes great responsibility, and assessing and implementing different ways to store and use bitcoin can be a bit much for many no-coiners.\n\nAnd even for all its benefits, Lightning has limitations that we’re still trying to overcome. Lightning adds complexity to [liquidity management](https://medium.com/breez-technology/liquidity-on-lightning-moving-from-ux-to-economix-6e597d9e1abd), although LSPs are helping to transform liquidity from a difficult technical problem into a largely automated financial consideration. But friction is friction.\n\nSimilarly, Lightning can only take on new users so fast because each new user requires at least one on-chain transaction and additional liquidity. New technology, like [Breez’s nodeless SDK implementation](https://medium.com/breez-technology/to-help-bitcoin-flow-were-adding-some-liquid-to-the-breez-sdk-b56c14b0c9b0), can improve Lightning’s throughput and mitigate its liquidity constraints just like Lightning surpasses on-chain bitcoin for some use cases.\n\nAnd if this trend of innovation → UX tweaking → innovation continues as it has for fiat, we’re in good shape. Consider the credit card. Nobody used credit cards for small purchases for the first three decades or so of their existence. It was a big story when Burger King started accepting credit cards in 1993. People even got all judgmental about it. “I think it’s pretty bad if you have to use a credit card when you go to a fast food restaurant.” Credit cards were for big purchases, like airfare, jewelry, hotel stays, and car repairs. In 2024, [about a third of payments](https://upgradedpoints.com/finance/most-popular-payment-methods-in-us/) are made by credit card, and nobody — not a single living soul — cares if you pay for an order of fries or bus fare with a credit card.\n\nAs credit cards became easier to use (it used to be [hard work](https://youtu.be/sxpkcgWTHdI?t=13)), people used them more and for smaller purchases. The lesson here is that people will use an asset as a MoE selectively if the UX is rocky, using it more frequently and for smaller purchases as the UX improves.\n\n### Legal/Regulatory Treatment\n\nWe’ve all heard the outdated FUD that bitcoin is basically just for criminals. Proton is a great company that accepts bitcoin and is advised by [Sir Tim Berners Lee](https://proton.me/about/team) — not exactly your typical moustache-twirling supervillain. But people fear what they don’t understand, and legislators and regulators love pandering to popular fears.\n\nSome jurisdictions are open and progressive. [In the EU](https://en.wikipedia.org/wiki/Legality_of_cryptocurrency_by_country_or_territory), for example, bitcoin is considered a currency and is treated accordingly in most laws. Exchanging bitcoin for another currency incurs no VAT, but buying a product or service with bitcoin does incur VAT, just as it would with any other currency.\n\nIn the US, while some regulators and courts have acknowledged that bitcoin is “[a medium of exchange](https://en.wikipedia.org/wiki/Legality_of_cryptocurrency_by_country_or_territory#United_States) and a means of payment,” the IRS treats it as [a property subject to capital gains tax](https://www.forbes.com/advisor/taxes/cryptocurrency-taxes/), which makes trading it more expensive and, consequently, slows its trading velocity. So it’s natural that bitcoin might look more like a SoV than a MoE to Americans subject to that tax regime.\n\nSome countries like Morocco and China have banned bitcoin outright. Whatever. [King Canute](https://www.medievalists.net/2015/05/the-changing-story-of-cnut-and-the-waves/) tried to stop the tides until his feet got wet, at which point he declared that no king could gainsay eternal laws. That’s a good lesson for the SoV crowd and the staunch bitcoin opponents alike. People want to be free, and they want their money to be free. If you don’t give it to them, they’ll take it eventually.\n\n### Volatility\n\nMany people might be averse to using bitcoin as a MoE because of its characteristics as a SoV. First, its price is relatively volatile. In the last few years, we’ve seen the value of bitcoin relative to the USD swing up and down by a factor of 4x. This makes it hard for consumers to spend and hard for retailers to accept because the exchange rate of bitcoin relative to a given good — i.e. its price — can be too uncertain.\n\nThe more disposable income and wealth someone has, the less sensitive they are to volatility. If you still have plenty of income left over every month after taxes, groceries, and mortgage payments along with healthy savings, it won’t matter much if one tranche of your portfolio drops a bit for a few months. You use your assets on a different timescale than price volatility. Long-term gains more than outweigh short-term drops, so let it swing.\n\nMany others are not so privileged. Their income is their wealth; they have no savings or surplus to buffer price swings. For them, a sudden drop in the value of their income could mean hungry days at the end of the month. If they obtain bitcoin (and many do), they’re likely to exchange it for a more stable asset as soon as they can.\n\nBitcoin’s volatility is a boon to some, a curse to others, and irrelevant to many. We can, however, see a natural path forward for it to appeal to all user groups. One way to think about bitcoin’s volatility is as a woefully incomplete index. The value of fiat is usually measured by exchange rates to other currencies, by official “baskets” of goods to determine its official [purchasing power parity/consumer price index](https://en.wikipedia.org/wiki/Purchasing_power_parity#PPP_vs._CPI), and by millions of people just transacting in their everyday lives. Each source of information provides a check on the others, triangulating something like a “true market value.” The more people transact and the more goods are priced in bitcoin, the more precise the triangulation, and the less need for price swings.\n\nIn other words, the more people use bitcoin as a MoE, the more its price curve will stabilize relative to other assets. Even as a speculative asset, it would look more like T-Bills than, say, oil. And vibrant use as a MoE will maintain expectations of its future demand, which, along with its deflationary design, preserves bitcoin’s status as an unprecedented SoV. Greater usage just smoothes the upward curve.\n\n## Preaching Benefits the Preacher\n\nThere’s a bizarre, schoolmarmy undertone in the rants of the SoV proponents. Like, what do they care what we all do with our bitcoin? If SoVs and MoEs necessarily overlap, why lecture everyone that bitcoin is ackchyually a SoV exclusively? Nobody’s hindering their preferred use, so what gives?\n\nRemember the US dollar? The USA convinced the world to go long on the USD. If you convince the world to hoard what you’ve already started hoarding, then you’re in a very good position. You’re stoking demand for what you can supply.\n\nBut you don’t even have to supply it. Convincing others to covet your hoard lets you borrow against it, giving you access to leverage. If your hoard grants you these benefits, it can trade at a multiple. If you have *n* bitcoins in your hoard, you might be able to sell shares of your hoard at a 3*n* valuation. You’ve just figured out how to push the inflation rate of a deflationary asset up to 300%. Dastardly, but clever.\n\nThe beauty of freedom money, though, is that no one can tell you how to use it. Sure, I’m telling you it’s underestimated as a MoE, and I have a vested interest in its use as a MoE, but I’m not telling anyone what to do. I’m describing what I see and debunking some bad, possibly disingenuous claims.\n\nStore your bitcoin where and how you want, spend it where and how you want, and its value depends on what we all do collectively, not what some suits do in their exclusionary conclave. Nor does it depend on what some talking head on twitter said is best. Of course, when the majority of the world’s freedom money is held by a select few, then it won’t be very free.\n\nBitcoin is flexible enough for all our diverse needs, and we all have a say in what it is and what it will yet become. Let our diversity be our strength.\n\n---\n\nThis was originally posted on [Medium](https://medium.com/breez-technology/bitcoins-false-dichotomy-between-sov-and-moe-18e3f968a643) and republished by [Bitcoin Magazine](https://bitcoinmagazine.com/culture/bitcoins-false-dichotomy-between-sov-and-moe). \N 7580 \N 443486 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 4.20905196544453 0 \N \N f 141274828 \N 2 86198609 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:57:52.041 f \N \N \N 0 0 0 0 1 0 0 428435 2025-03-07 09:28:24.402 2025-03-29 22:39:46.791 Maybe All you Need is to Ask - Do you Accept Bitcoin? ⚡️ ( Part II ) After this[ post ](https://stacker.news/items/293271)sharing my experience pilling a Turkish restaurant, I got to learn different aspects of WOS, and more details can be found [here](https://stacker.news/items/290046). I also started to improve my pilling strategy, so here is a follow-up with a better APP with more thoughtful features for restaurants and cafes.\n\n**The main thing that triggered me to change for a better APP was that the restaurant staff couldn't charge me in Bitcoin when the owner was away** - I never run restaurants, so I couldn't predict this when I was on-boarding the owner with WOS, and I remembered @lux exactly mentioned this about Blink.\n\n>Any of his employees can charge lightning payments directly to the owner's wallet by opening the lightning cash register in any browser\n\nI tested it, and it worked like a charm, even with to the print receipt option! And many stackers prefer Blink over WOS as the first APP onboarding newbies, so I started to play around more with Blink to see If I was missing more hidden features, and I went to the restaurant again to show the owner the power of Blink!\n\n#### **Blink Wallet ⚡️**\n\n**Advantages:**\n\n- Easy onboarding\n- Custom LN address\n- Cash register, super handy for restaurants and cafes \n- Built-in BTC map\n- Built-in contacts \n\n**Downsides:**\n\n- Need to link a number to register ( I didn't link it, and I don't put many sats there )\n- Stablesats, which could lead to confusion, especially for newbies ( this was the main reason why I chose WOS to pill instead of Blink in the first place )\n\n**Powerful Features for Restaurants or Cafes**\n\nIn-person\n\n- Print out a QR code on site so people can scan and pay.\n- **Lightning cash register💥** :staff can charge payment without the owner on-site while keeping the funds safe - simply with this feature, Blink wins other wallets miles away for restaurants or cafes.\n\nOnline ordering\n\n- Repeated customers can send payments directly in the Blink circles.\n\nThe owner also asked me how to cash out Bitcoin, which is probably a really normal question as they need to pay for many things still dominated in Fiat; And how to calculate sats to BTC? this one was quite funny, I need to write down all the zeros in a paper, and started to explain: **There are only 21 Million Bitcoin in total, while there are endless fiat money being printed everywhere; But we don't spend the whole BTC as a unit, since it's too large value, we use sats instead, and 1 BTC = 100 Million Sats;** The easier way to do the math is to use 1M sats =0.01 BTC, otherwise our brain might be a bit slow with so many zeros.\n\nHe got it quite fast, oh so satoshi is like coins...( me: yes, you use smaller bank notes or coins to buy a bottle of water instead of using a 200TL banknote right? ) As the conversation continued, I also found out the main pain Bitcoin is solving for the owner - he told me after all the expenses, tax, takeaway Apps, and bank, there isn't much left - too much middlemen in between, I then asked him if it was okay to share some data for reference:\n\n-Rent 10% \n-Product 35%\n-Staff 25%\n-Tax 10% \n\nIf partnering with the delivery Apps, they charge 11%-12%; If delivered by them too, they charge 50%. There is a specific type of card for restaurants to withdraw money from these Apps, which charges another 6%. And if customers use credit cards to pay in Apps, the processing fee from the bank is 4.5%. The owner said it's roughly 10-15% left if working with these takeaway Apps; it was pretty depressing at a point during the conversation, with so many fees and Businesses needing to accept that!\n\n**Then I had this picture in my mind:**\n\n- Banks subconsciously form consumers' habits by encouraging them to pay for everything with credit cards, spending the money they don't even have.\n- Merchants saw more and more people using cards and then started accepting cards, but they needed to pay so to use a POS machine to charge and got changed again when they top up; cash slowly became obsolete in many places.\n- Software companies offer many discounts to get customers and habits forming, claim to improve efficiency in the first place, yet slowly get in between and attempt to get a big chunk of the cake.\n\nThe final big boss comes in and demands tax from everyone - thanks to all the detailed transactions in banks; And last but not least, launching the ultimate tax: inflation.\n\nBitcoin can solve many problems in this case: if people can't spend the money they don't have, they will pay less for junk or stupid things; Merchants getting paid directly from people, no longer need to pay absurd fees to endless middlemen, and they would need to compete on quality or word of mouth to win customers instead of burning money for attention.\n\n**The only way to win is not to play - maybe the good pilling point for restaurants or cafes could be the endless fee they need to pay right now, and Bitcoin is a good tool to solve this problem:)** \N 20623 \N 428435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.862860287537 0 \N \N f 0 \N 0 66997000 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 418364 2025-02-27 02:11:08.682 2025-03-29 22:39:47.084 How have you changed since the pandemic era?? Tyranny or freedom? 🤔 ![](https://m.stacker.news/35365)\n\nI often think about this as I feel that a major shift began in 2020 with the announcement of the pandemic and everything that then took place in many countries around the world. \n\nThe world has continued to change at quite a pace since then and I believe we are going through some kind of transition. “May you live in interesting times”. This is an expression I often hear, said to be from England and a translation of a Chinese curse? I’ve no idea if this is true, perhaps @cryotosensei can shed some light? \n\nSo how have I changed? Thinking back now a lot has changed in my own life and in my community. I have different work now, different friends, a 2 year old son, a completely different relationship with my family and a different perspective on life. And there are coffee shops on every corner!\n\nOne big one for me was getting perspective on the nature of left vs right politics. I was always left leaning but considered myself liberal, believed in freedom and believed that the state shouldn’t be trusted. However I naively assumed that most other people were the same and yet when we were challenged with the fear around covid and what governments were suddenly doing, a massive split occurred which completely fractured society. And it was particularly evident to me looking at the political left.\n\nMany of my family and friends were suddenly authoritarians and believed totally and without question what they were being told by the state and corporate media. And I couldn’t get through to them, no matter what I tried. Some went as far as demonising others and snitching on their neighbours to the local authorities. It was a scary time. \n\nI then found Bitcoin for the second time in January 2022 which pushed me to go down all the relevant rabbit holes and has since positively changed my life for the better not just financially but also intellectually and psychologically. Riding the bear market, hodling during the crashes in the summer of 2022 and then later understanding the gambling aspects of every other crypto currency out there and why Bitcoin is different. \n\nBut i’m really interested to learn how you guys feel the pandemic era changed you? \N 20973 \N 418364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2024313005299 0 \N \N f 208846198 \N 1 47119127 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423980 2025-03-03 18:54:34.005 2025-03-29 22:39:47.084 Privacy Judo ![david](https://upload.wikimedia.org/wikipedia/commons/d/d3/Caravaggio-david-goliath-fin.jpg)\n\nThere have been times in my life when concerns about privacy kept me up at night. Using credit cards online, social media, email, giving my social security number to get my teeth cleaned, etc.\nOther times I forget all about it. I recently went to the airport and the TSA wanted to scan my face at security. Yes, I know it's voluntary, but does it really make sense to flag yourself as the guy who doesn't want his face scanned, especially since the whole area is being monitored by video surveillance anyway? I could fight that battle and deny them the scan. What do I accomplish? They have all the power in that circumstance. They have my name, address, and the photo on my passport or driver's license. Rather than let my facial scan join the millions of others that some lazy bureaucrat will never look at, I should instead single myself out for suspicion?\nAlong similar lines, does it make sense to use a vpn for privacy? You are flagging yourself as someone with something to hide. I’m just asking the question. I still use one myself.\nMaybe we take the wrong approach to privacy. Maybe our fancy tools can in fact do more harm than good.\n\n> Resisting a more powerful opponent will result in your defeat, whilst adjusting to and evading your opponent's attack will cause him to lose his balance, his power will be reduced, and you will defeat him. This can apply whatever the relative values of power, thus making it possible for weaker opponents to beat significantly stronger ones. This is the theory of _ju yoku go o seisu_.[[24]](https://en.m.wikipedia.org/wiki/Judo#cite_note-24)\n\n\nMy father used a pc to handle his bookkeeping and accounting tasks for his investments. It was overkill. I tried to convince him to get an internet connection, but he refused. He was convinced he was worried about being hacked and having his privacy exposed. He was always intellectually curious, so I tried to convince him by talking about all the information he would have at his fingertips.\n\nNo luck. He was content with his newspaper, magazines, books, and cable TV. He passed away in the early 2000s, so there is no telling whether he would have held out if he had lived another decade.\n\nMaking an effort to preserve privacy online is an effort. It is inconvenient. You wake up and read that one of your methods is compromised. Using a privacy focused email address makes you a target. It's suspicious. Same with using Graphene OS (I love mine). Tor too. I don't want to argue the particulars of each method here. The point is they all have their weaknesses and limitations.\n\nI remember reading newspaper stories about the old mafia dons. They would never use a phone for important conversations. They would walk around the block and talk to the person, one on one. If they had suspicions, they would check the guy for a wire first. Telephones were for dinner plans, arranging to have the kids picked up after school, etc.\n\nThey didn't spend all their time sweeping their social clubs for bugs. They went outside. They didn't worry if their phones were tapped. They never said anything important on a phone. They knew that David rarely beats Goliath in the real world. The younger guys never learned that lesson. Most of them died in jail.\n\n\nMy point is not to encourage criminal activity. What I'm trying to convey is that jumping through hoops to ensure privacy using the wonders of modern technology is a losing battle. We can't match the technological powers of multinational corporations or state actors. That doesn't mean you shouldn't try. No one wants to get hacked, doxxed, or have your bank accounts drained. Take precautions. I do. But, for really important, private stuff, nothing beats a pen and paper, or a big, heavy safe, or a deep hole in the yard.\n \N 17696 \N 423980 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 13.676996514952 0 \N \N f 390191682 \N 2 147156333 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422616 2025-03-02 15:24:17.938 2025-03-29 22:39:47.084 RoboSats is decentralizing! How to become a RoboSats Federation Coordinator \N https://github.com/RoboSats/robosats/blob/main/federation.md 21805 \N 422616 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 4.66152071544535 0 \N \N f 213526832 \N 1 142163029 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442529 2025-03-18 16:00:06.942 2025-03-29 22:39:47.084 A decade-old documentary about today's culture in the west ### 🏇**The Four Horsemen**\nWith the rebirth of the ~culture territory, I thought I would resurface what is one of the best 90 minute documentaries on the internet today. Published just over 10 years ago and appreciated by some members on SN already, it goes very far in explaining how our culture and world got to where it is today. Watching this video has got to be one of the better ways to spend your Sunday afternoon / evening. Particularly if you're not busy building today.\n\nEven for those of you without a spare 90 minutes in hand, I have taken the transcript and chunked-it up into bitesized blocks. None of the below is my own work (besides inserting the word `Bitcoin` & adding several catchy titles). All the other words are lifted directly from the documentary itself...\n\n-----\n\nhttps://www.youtube.com/watch?v=5fbvquHSPJU\n\n-----\n\n### 🔗 **Related Links**\n**[⭐ IMDB Traier & 7.7 Review](https://www.imdb.com/title/tt1671513/)**\n**[📺 Official Creator Site - Renegade Inc](https://renegadeinc.com/four-horsemen-feature-documentary-official-version/)** _< watch it there also_\n\n\n----\n\n### 🏳️ **Documentary Intro**\n\nThe modern day `Four Horsemen` include:\n1) _a rapacious financial system_\n2) _escalating organised violence_\n3) _abject poverty for billions_\n4) _and the exhaustion of the Earth's resources_\n\n\nWe are entering The Age Of Consequence. A rapacious financial system, escalating organised violence, abject poverty for billions and the looming environmental fall-out are all converging at a time when governments, religion, and mainstream economists have stalled. War, Conquest, Famine & Death - the Four Horsemen are coming.\n\nThis is not a film that sees conspiracies. It is not a film that mongers fear. It is not a film that blames bankers or politicians. **It's a film that questions the systems we've created - and suggests ways to reform them.**\n\nOver centuries, systems have been subtly modified, manipulated and even corrupted often to serve the interests of the few. We have continually accepted these changes and, because man can adjust to living under virtually any conditions, the trait that has enabled us to survive is the very trait that has suppressed us. Most societies have an elite and the elites try to stay in power. And the way they stay in power is not merely by controlling the means of production, to be Marxist, i.e. controlling the money, but by controlling the cognitive map, the way we think. And what really matters in that respect, is not so much what is actually said in public but is what is left un-debated, unsaid. For centuries gatekeepers have manipulated our cognitive map.\n\n----\n\n### 🌐 **Liberation via the internet** \nBut in 1989 a computer scientist by the name of Tim Berners-Lee implemented the first successful communication between an HTTP client and server. The World Wide Web was born. It has since unleashed a tsunami of instantly accessible, freely available information. Just as Gutenberg's printing press wrestled control of the cognitive map away from an ecclesiastical and royal elite, today the internet is beginning to change governments, finance and the media. We are at the cusp of change. \n\nBut to enact it we must first understand the things that have been left unsaid for so long. To do that we need context from people who speak the truth in the face of collective delusion because to understand something is to be liberated from it. \n\n> *All a great power has to do to destroy itself is persist in trying to do the impossible* - Stephen Vizinczey \n\nAt the end of World War II, we had 50% of the world's gross domestic product, we were making 54,000 airplanes a year, 7,000 ships, etc etc. We were the new Rome. And we recognized it, and devised a power management scheme in the 1947 National Security Act to, we thought, manage it and it worked fairly well during the Cold War. But we haven't done anything since and I think that is another sign of our inability to grasp the "new world", if you will. \n\nEmpires do not begin or end on a certain date. But they do end, and the West has not yet come to terms with its fading supremacy. At the end of every empire - under the guise of renewal - tribes, armies, and organisations appear and devour the heritage of the former super power, often from within. \n\nIn his essay 'The Fate Of Empires', the soldier, diplomat and traveller Lieutenant-General Sir John Glubb analysed the lifecycle of empires. He found remarkable similarities between them all:\n\n**An empire lasts about 250 years, or ten generations**, from the early pioneers to the final conspicuous consumers who become a burden on the state. \n\nSix ages define the lifespan of an empire.\n1. The Age Of Pioneers\n2. The Age Of Conquests\n3. The Age Of Commerce\n4. The Age Of Affluence\n5. The Age Of Intellect\n6. The Age Of Decadence\n\nThere are common features to every Age Of Decadence _(and therefore decline)_....\n- an undisciplined **overextended military**\n- the conspicuous **display of wealth**\n- a massive **disparity between rich and poor**\n- a desire to live-off a **bloated State**\n- and an **obsession with sex**\n- but perhaps the most notorious trait of all is the **debasement of the currency**...\n\n----\n\n### 💵 **Debasement**\nThe United States and Great Britain both began on a gold or silver standard, long since abandoned. Rome was no different. So it started on a principle that was very sound and it was on a silver standard. But as it corrupted further and further and further the Roman denarius got to the point where it was basically a copper coin and they learnt how to plate and it was washed in silver and in circulation the plating came off. And at the end all the senators that really did at one time represent the people only were interested in representing how much wealth they could steal at the top.\n\nGreat empire wealth always dazzles but beneath the surface the unbridled desire for money, power and material possessions means that duty and public service are replaced by leaders and citizens who scramble for the spoils. Historically all the signs of the demise of the empire are beginning to develop, some are more trenchant that others. This current financial and economic crisis, that sort of thing, always accompanies the demise of empire.\n\n----\n\n### 👀 **Distractions**\nThe people of Rome were constantly being distracted by the gladiatorial events and the politicians knew that they did this. Whenever there was unrest among the people they had a huge event going on and they created a new event with lots and lots of gladiators. And every day, we‘re doing that. That is a common trait of declining empires. And so today, in the 🇺🇸 for example, you find a tremendous emphasis on all kinds of television programmes that distract people from what's really is going on. Sports is a big part of that, as it was in gladiator times. In essence, we've been lulled into a lethargy and we've accepted it. Just as our sports stars today earn vast sums, so did Roman charioteers. \n\nIn the 2nd century one by the name of Gaius Appuleius Diocles amassed a fortune of 35 million sesterces in prize money - equivalent to several billion dollars today. Strangely, perhaps, there is another profession that is disproportionately hallowed as an empire declines. \n\nThe Romans, the Ottomans and the Spanish all made celebrities of their chefs. And this again is typifying the end of an empire, where things were so great we have this last oomph of momentum, that we used to be great, and we felt great, and we don't feel it anymore. So everyone is out searching for it. Well, **maybe it's in the best food or the best clothes or the best music or the best movies or a reality TV show or another magazine**. \n\n----\n\n### 🙈 **Apathy**\nBut you can never get enough of what you don't need. What you need is a strong moral conviction that is pervasive throughout the society... and integrity reigns. There is a vast apathy. There is a vast amoralism, even a political nature to it, that is to say there are vast numbers of people who don't give a damn. And so there is this - natural, I suppose - entropy, any living organism which an empire is of course, over time dies.\n\nThe question is: How does it die? Does it die in a violent cascade of events? Or does it die over a long period of time? The Baby-Boomer Generation were born into this Age of Decadence. Perhaps unwittingly they've broken the unspoken intergenerational contract. Through unfettered consumerism, spiraling house prices, and a desire for eternal youth, the Baby-Boomers have squandered future generations' inheritance. My generation, the generation right after my generation, I think we forgot that little phrase in the preamble to our Constitution which says "and our posterity." All of a sudden it became "us". Period.\n\nThe Baby-Boom generation which I'm a part of has gone and done the biggest misallocation of capital in the history of mankind. We have had cheap oil or cheap energy is a better way to phrase it, we have had an abundance of ideas and we have chosen a system and perpetuated it that is probably one of the worst ways to use the blessings that were bestowed upon us and we are going to pay a price for that. \n\n----\n\n### ♻️ **Solving the wrong problems**\nHuman beings are inconsistent and paradoxical. We hope for peace and immortality, but continually invent new ways to destroy each other. We're capable of the kindest, most noblest acts; and the most horrific atrocities. Human beings are complex creatures. I mean for example we‘re capable right now, at this minute, of acting in such a way as to make it likely, if not certain, that our grandchildren are going to face terrible disasters, and we are consciously acting to accelerate that likelihood even though we all love our grandchildren. How can we be more contradictory than that? \n\nIn spite of all the economic activities of last 50, 60, 70 years, since the Second World War, and all the industrialisation, we have not yet managed to solve the problem of poverty, deprivation, hunger, malnutrition. Millions of people every night go to bed without food, and millions of people are throwing away their food. Waste on the one hand, and poverty and deprivation and hunger on the other hand. Malnutrition on the one hand and obesity on the other hand. What kind of system have we created? Why, with such brilliant knowledge on the planet, are we still struggling to distribute wealth fairly? How has the human race developed a flawed system of government and economics that serves the few at the expense of the many? And with such poverty in an age of plenty, why have we not had the will to change such a vicious social structure? **Greed is the fundamental kind of ingredient for the immoral economy.**\n\nThe problem is not that there is not enough in the world. People say that there is poverty we have to create more wealth. There is enough in the world for everybody's need - as Mahatma Gandhi said, but not for anybody's greed. But is it just greed, or does it go deeper than that? Is the problem systemic?\n\n> *When plunder becomes a way of life for a group of men living together in society, they create for themselves in the course of time a legal system that authorises it and a moral code that glorifies it* - Frederic Bastiat \n\n----\n\n### 🏦 **Banking on ignorance**\nAs a civilization we've obviously had a great run. We've done very well - we had the Industrial Revolution; we survived that. We built a lot of modern military technology; we have survived that, so far. We built a banking system, and we're still struggling with that part of it, but you know, we've had a good run. \n\n"It's kind of like when I was working on Wall Street for 7 years I had the experience that some people would have working at a meat processing plant, they become vegetarian, and you work on Wall Street and you see how these banks like Goldman, J.P. Morgan, these other banks make money, when you see money, it kind of makes you sick!"\n\nWell, I think if the people knew what the banking system is up to, as Henry Ford said, there would be a revolution tomorrow morning. The fact is most people think that what a bank does is lend you money that someone else has put in the bank previously.\n\nBut what a bank actually does, **what a commercial bank does, is to create money from nothing, and then lend it to you at interest**. If I do that, if I manufacture money in my own home it's called counterfeiting. If an accountant creates money out of nothing in the company accounts, it's called ‘cooking the books', but if a bank does it, it's perfectly legal. And so long as you allow fraud to be legalised then all kinds of problems are going to pop up in the economic system you can't do anything about. Private banks create money out of nothing and lend it at interest. Now, that sounds absurd.\n\nWhen I teach sophomores, you know, about money and banking, and how banks... they never believe it. And so you have to go through it again and again, 'Yes, banks really do create money, they really do, here is how it happens.' And it's absurd! And they're right to doubt that that could possibly be what's really going on. But it is!\n\nNow if the banking lobby is very strong, they're going to say: "Well, we don't want to change this system, we're making so much money out of it. What we have to do is: Try and convince the people that it's their fault, that their wages claims are too high and that's why we're having lots of inflation,” or “People are speculating on housing and that's why house prices are going up." What they're not going to say is that this is happening because banks are creating money out of nothing and pumping it into the system, and that's why prices are going up. But how is it that we've ended up with a system in which banks have the power to create money? \n\nSince 1971, when President Nixon took the United States off what was left of the gold standard, the world has operated under a system of money known as 'fiat'. The dollar, the pound, the euro are all government fiat currencies. \n\n-----\n\n### 👉 **'Fiat' is a Latin word meaning 'let it be so'** \nIt is the law that this government currency be money. Indeed, without that legal enforcement and the fact that we must pay taxes with this money, that dollar bill or that computer digit that represents a dollar would be pretty much meaningless. \n\nOnly the government has the power to issue fiat money, but banks can create it through lending. Over the last 40 years, since this system of fiat money became the global norm, the supply of money has grown exponentially. **In fact, we have seen the greatest growth in the supply of money in history**. \n\nBut who benefits? Of course, those that have the power to issue money: governments and banks. Then, those companies and individuals that get this money early. They can spend it before the prices of the things they want to buy have risen to reflect the new money in circulation. In other words, they get services, products or assets cheap. But prices soon rise, so holders of assets, such as houses or shares, will then see gains without there necessarily being any improvements to the company or house in question. Often this can lead to speculative bubbles. But what about those at the bottom of the pyramid? Those on fixed wages or incomes, those who live in remote areas or those with savings? \n\nBy the time this newly created money has filtered down to them, the prices of the things they want to buy have increased, their savings buy them less however, and their wages remain largely unchanged. In some cases they have to take on debt just to be to afford the things they were previously able to buy, which means they have to go back to the banks. \n\nIn reality, this process of creating money only redistributes wealth from the bottom to the top of the pyramid. And thus that ever-increasing gulf between rich and poor gets bigger and bigger... ...and bigger. Well... when you get off the gold standard and you go into a fiat money currency combined with a fractional reserve banking system, you end up compounding debt faster than you can ever possibly produce to support that debt. So eventually you are going to find yourself back into debt slavery. \n\nAnd that's what's happened in the 🇺🇸 For every dollar GDP, for example, in the U.S. it now also creates something like $5.50 worth of debt, because this is what happens when an economy flips over and basically capsizes. And of course the government solution now to address all the problems is basically to create more debt. You can never get enough of a currency that doesn't work, you can print it till kingdom comes but you can't print wealth and you can't get yourself out of debt by making more debt. If you could print wealth Zimbabwe would be the largest, most prosperous country on the planet - we all know it doesn't work. \n\nOf the money in the world today (_mentioned 10 years ago_)... `97% is of it is debt.`\n\n> The French philosopher Voltaire once said, '*All paper money eventually returns to its intrinsic value - zero*'. \n\n-----\n\n### 🥊 **Capitalism vs Communism**\nFor 3 generations the world watched the fight between capitalism and communism. But in the 1980's the Russian economy started to collapse, the Soviet Union capitulated and so-called capitalism reigned supreme... Before 1989 we had a battle between communism and the market. And in that battle there was a sense of 'let's not expose the flaws in the market economy.' This is too important of a battle that you don't criticize ‘our team' while we're fighting ‘their team'. And their team, social authoritarianism, with a failure to deliver wellbeing to their society, it was very clear that if you had to choose between these two, which was better?\n\nCommunism failed first for various reasons: it was inefficient, human rights lack of respect and so-forth. So capitalist West has been continuing in a triumphalist mode thinking "Our adversary has failed, that means we're doing everything right". Both systems are trying to do something which is fundamentally impossible: Grow forever. And they're both going to fail. One failed first. Capitalism's going to fail... later. Or it's failing now. \n\nAmerica right now is in a very interesting position. Because in the past 200 - 300 years of its history it's a culture and country which has almost always existed on the assumption that resources could be expanded. If there was a problem you always tried to deal with it by expanding the pie, ‘Go West young man'. Make the pie bigger so that everyone has got a bigger piece. \n\n-----\n\n### 💎 **Resource constraints**\nNow it's facing a world where possibly resources are beginning to be more constrained, and where it's going to have to divide up that pie, and inflict pain on people. And that's something which it is not well prepared for. How has the country moved so far from the intentions of its founding fathers? How has the American dream become so distorted? \n\nOver the last 30 to 40 years capitalism has taken this extreme form, and a lot of it goes back to the economist Milton Friedman, from the Chicago School and Ronald Reagan, and Margaret Thatcher, and others buying into these policies, that really encouraged people to take on huge amounts of debt, encouraged privatisation, smaller governments supposedly, although bigger militaries, so actually... ...the government spending goes up. \n\nDeregulation is getting rid of rules that govern the people who run our institutions, especially our corporations. It's as though we are suddenly are supposed to believe that the human beings who stood at the top of corporations don't need to be regulated. They are some sort of... gods! Milton Friedman, his protégés, the Chicago Boys, and the neoclassical ideology beat the classical approach to economics and became the framework for what we today call capitalism. \n\n-----\n\n### 🥇 **Classical vs Neoclassical economics**\nThere are two main competing economic approaches which determine how we humans manage the world and distribute wealth.\n\nThese are the classical and neoclassical schools. **The classical school favours less government interference, more personal autonomy and recognizes that humans cannot function without natural resources**. The neo-classical school, which has a more dismissive view of natural resources, thinks government should rule the economy, solve social problems and leave the free market to look after the distribution of wealth. The neo-classical school emerged around 100 years ago due to vested interests' desire to protect their assets. \n\nThis meant that neo-classical mathematical models and assumptions were divorced from reality. They are based on "what ought to be" instead of the classical models which are based on "what actually is". It's these neo-classical models - which favour large corporations - that have been used to legitimise the financialization of the global economy.\n\nChampioned by Ronald Reagan and Margaret Thatcher, neo-classical economics still dominates policy-making today. The Reagan revolution, as it's called in the 🇺🇸, obviously the Reagan-Thatcher revolution, to think about it more globally was a big change in power structure and a big transfer of opportunity and wealth. Now it's not that the poor gave it to the rich, it was a transfer within the well-to-do, so that the financial sector in particular in the 🇺🇸 for example, but also in the 🇬🇧 and some other places, became vastly more profitable, and wages in that sector went up a lot, we focused on bonuses, but also base salaries went up - overall compensation.\n\n**So there is a transfer from the non-financial part of the economy to the financial part of the economy that actually is unprecedented** as far as we can see in any of the available data to us and I'm talking about all of the recorded human history.\n\nIn 1932, in the aftermath of America's Great Stock Market Crash, a piece of legislation was passed to protect society. The Glass-Steagall Act was introduced to separate ordinary high street banking from investment banking. 67 years later, in 1999 - under the influence of Treasury Secretary Larry Summers and his predecessor Robert Rubin - President Bill Clinton repealed the Glass-Steagall Act. \n\nOnce again banks could take ordinary depositors' money and speculate with it on virtually anything they liked. Wall Street has become a very particular type of casino. And it's unfortunately not the kind of casino they have in Las Vegas which is, you know, a perfectly legitimate form of entertainment. It is a casino that has massive negative repercussions on the rest of society. So it's not just losing your money on a few wild nights, it's about the way in which those organisations lose their money impacting the whole of society leading to a massive loss of jobs. 🇺🇸 Unemployment Rate This unfettered gambling pushed the entire global financial system to near collapse. With balances and debt obligations larger than the GDP of entire countries, the banks had become too big to fail. \n\nThe West was unprepared and bankers met their reeling and disorientated governments:\n> "*You have to bail us out, we need money, if you don't give us the money the whole thing goes down. And what are you going to do with millions and tens of millions of people who have lost everything in their bank account? You will have a revolution on your hands. So fork over the money. Borrow... borrow the money, create it out of nothing and give it to us, so that we can face our problems and not go under... or otherwise.*"\n\nAnd this is what Mr Hank Paulson did in the U.S. Congress. He just went there one day and he told them: "*We need $700 billion, and we need it now - or else.*"\n\nIs this system we call capitalism really capitalism? In a capitalist system government is supposed to be small. But today the state is more bloated and invasive than it's ever been. \n\nIndividuals and companies are supposed to operate in a free market. Good enterprise is rewarded with profit and flawed enterprise with failure. But during the 2008 banking crisis the people saw the Western economic system divided in a way they were told could never happen. Socialism for the rich, capitalism for the poor. And in America for example the banks that got in trouble got bailed out by the government, that's socialism. And they... people are arguing against socialism in America, and yet this is probably the most socialist country in the world right now. \n\nWe have a system which isn't even a proper capitalist system; rich people make mistakes, they don't get punished, poor people make mistakes and they get punished, or even worse, that they don't make any mistake and they are forced to pay for the mistakes of the rich. \n\nWhen the taxpayer is footing the bill for the misplaced speculation of bankers then suddenly instead of the economy serving the human being, the human being is now in perpetual service to amoral financial organisations. It was the Head of the Federal Reserve Bank, Alan Greenspan who, after 9/11, slashed interest rates to encourage lending. Bankers needed new participants to keep cash flowing into a system that had become a global pyramid scheme. \n\n----\n\n### 🏠 **Houses of Cards** \nAll this newly created money entered the housing market and created unprecedented inflation - house prices rose and rose. \n\n**New mothers were forced back into the workplace** to service huge home loans and the Anglo-American dream became all about land speculation. The housing market in the West isn't about ownership. The housing market's in the West because it's the only way ordinary people can get ahead, and ordinary people can't get ahead but by wages. \n\nWhat we've created is a mass bubble economics around housing, as that sucks in a huge amount of capital, takes capital for genuine innovations in the economy, and puts it into a speculative use that has no genuine productive outcome. \n\nIt's interesting, if you talk to people in Germany, for example, they don't see a connection between owning a piece of property and their being inclined towards being democratic. There are lots of people who rent their housing there and they are perfectly comfortable with that arrangement. But it is true that in somewhat different contexts both Mr Reagan and Mrs Thatcher pushed for more people to own housing, and actually this is part of the problem because if you push people to buy housing before they are ready, if you push very dubious loans on them, and they don't understand what they're getting themselves into, you can have huge adverse repercussions. Exactly what led to, in part, the subprime housing crisis in the United States. That's not anything to do with democracy that's just a bad economic idea. \n\nThe breakthrough that occurred around the year 2000 in the 🇺🇸 was when bankers found out that the poor are honest. They realised that if you're poor, if you're not rich, you have a different set of values and you think that a debt is a debt and it's something that has to be paid. And the people will try to pay the debts that they are stuck with, even if the debts are not valid. Even if the debts are much more than they expected, even if they really can't pay the debts. The lending and banking institutions, when they drew up contracts with interest rates, with flexible interest rates, I think they knew in the beginning that these problems were going to come back later on when folks weren't going to be able to afford the mortgages. As the interest rates increased, they put a lot of people in situations where they were taking food out of refrigerators, taking kids out of higher education, they're not able to afford college anymore, and it is making a really, really bad situation worse. \n\n------\n\n### 🧛 **Sin-terest** \n\nThe banks engaged in what was a criminal conspiracy, to charge more to the Blacks and Hispanics. The banks got together, backed the Bush administration, to block the state prosecutions of racial lending in order to exploit and charge more to the minorities. These were loans which were made by one of the major lenders in the city and in this country, Wells Fargo, in which Wells Fargo targeted minority communities in the city; put borrowers into loans that they could not afford, put borrowers into loans that were of the subprime variety, therefore more expensive and less advantageous to the borrowers.\n\nHiding predatory lending practices in the small print of complex financial products was only ever going to enrich one set of interests. Many of the communities in which African-Americans live in the city, were establishing momentum, there was development activity that was occurring, we were seeing signs of vitality in many of these communities, and... the results of the Wells Fargo foreclosures and the subprime lending practices of that lender, and others, has significantly impaired that progress and brought it to a halt. \n\n"They don't come into the heart of it. Like you in the heart of it so you see, they don't really see the trouble if they don't come into the heart of it, they stay on the outside of it. That's like looking at the cover of a book and seeing the outside of a book but if you don't go inside the book, then you will never know what the book is about. So they're not worrying about nobody else but themselves. And I think it's wrong, because if they come in the heart of it and they see, they'd be willing to help. What happened in Baltimore is just one example of what is happening all around the world."\n\nOne way to frame this injustice is by branding it a race issue. But when we look really closely we can see that there is **something at play here that transcends race**. Profit. Not an accident for instance, that we had the deregulation of our financial industry that was such a disaster.\n\n-------\n\n### 🕵️‍♂️ **Visible in the lobby**\n\n**The lobbyists of the finance industry amount to 5 per congress person**. They pay 5 people for every congressman to explain to them, persuade them, that they should pass legislation that is favorable to the financial industry. The poor people who are devastated don't have the money. They couldn't hire 5 per congressman. So the way our democracy works - it's an unlevel playing field. \n\nThe financial sector has acquired enormous power, partly through political contributions, so buying favours, but mostly through ideological control, convincing people that finance is good, more finance is better and unregulated finance without limit is best. And that is really the cornerstone of this, what we call in 🇺🇸, the Wall Street-Washington corridor. \n\nI mean if people need any proof as to who is controlling Washington, when the bailout came after Lehman Brothers collapsed, **80% of the population were against the bailout**. Notwithstanding that, the Congress passed the bailout just showing, in my view anyway, that it's really under the control of banking interests. \n\nIt's not a reflection of good democracy when a company, a group of companies, an industry, says: "Our interests are more important than the national interest." \n\nHow can that happen? Very easy: That's the role of campaign contributions, lobbying in America's political structure. We have a flawed democracy. This is an advanced oligarchy, in the sense that its main mechanism of control, if you like, is through convincing people that you really need for example, the 6 biggest banks in the United States, in the particular form they exist today, with the very light level of regulation. And if you don't have them, if you try to change that, all kinds of awful things will happen. And this is not really blackmail. It sounds like blackmail, but they convince you it's not blackmail, it's just the way the world is, there's nothing you can do about it. Oh my goodness, you just have to cooperate with them. Yeah, it's very clever. The Fed is essentially the lobbyist for the commercial banking system. \n\nWhen you say you want to turn regulation over to the Fed, you are saying the financial sector and Wall Street should be self-regulated. And Wall Street has veto power over whoever is going to be the Head of the Federal Reserve. As long as you give veto power over the regulators to Wall Street, as long as you pick the bank regulators from the banking industry itself, you can forget any thought of calling it "regulation". It's "deregulation". And to call it "regulation" instead of "deregulation" is using Orwellian double-think. \n\n-----\n\n### 🌕 **Living a Pluto-cracy**\nDemocracy is government by the people. Plutocracy is government by the rich. \n\n**In a typical plutocratic state economic inequality is high, social mobility low, and, because of continuous exploitation of the masses, workers find it nearly impossible to climb out of poverty**.\n\nThe Equal Voting Rights movement in the early 20th century abolished a system where rich people had more votes than poor people, but today lobbying has put pay to that and reduced the American political system to a mere clearing house for the concerns of the rich. \n\nThe Goldman Sachs machine is one of using profits to buy influence in Washington, to change laws to make it easier to make money on Wall Street, to be used to buy influence in Washington. So it's a self-reinforcing malfeasance machine that is continuing to grow as a parasite in the economy and continuing to kill the host. Famous for claiming it did ‘God's work', Goldman Sachs is one of the most influential investment banks in the world. Its alumni often occupy positions of great influence in governments and central banks. In September 2008, barely a month before the stock market crash, Goldman - supposedly a pillar of the free market - changed its banking status from investment to commercial. This meant it was now eligible for state protection. Socialism for the rich, right there. \n\nGoldman Sachs are extremely efficient at what they do. Their task is to make money, they make bank robbers like Willie Sutton look like modest amateurs. They're huge bank robbers, but it's legal. The system is set up so that they can do it. In the recent years they have been selling securities put together from mortgages that they knew were worthless, so they are selling these things to unwitting consumers, making a ton of money out of it. \n\nMeanwhile, they are betting that they're going to fail because they know that what they are peddling is rotten. So they placed bets with credit defaults, and lots of other things with the huge insurance company AIG, and that was insuring Goldman Sachs against the failure of the stuff they are peddling. \n\nDuring America's subprime collapse Goldman traders Michael Swenson and Josh Birnbaum made a $4 billion profit by short selling junk mortgages. Backed by Dan Sparks, internally Goldman Sachs called their position the ‘Big Short' and bet against their own clients. Senator Carl Levin called Goldman Sachs Chief Executive Lloyd Blankfein to a Senate subcommittee to testify under oath. Much has been said about the supposedly massive short Goldman Sachs had on the 🇺🇸 housing market. Riding the Big Short in 2007 made billions of dollars for Goldman. And so far, they've got away scot free with this massive heist. So they're now back, bigger than before, richer than before, biggest profits they've had in history, huge bonuses... They're doing great! \n\nA lot of what they are doing has, in fact, probably... maybe all of it, has almost nothing to do with the benefit of the economy. \n\n----\n\n### ✨ **Absent Tangibles**\n**Can there be any objection to genuinely talented people earning big money if they bring something new and tangible to the world?** If they take great personal risks with their own money, and actually bring greater prosperity for all? \n\nIn a free market, if I have a brilliant idea that I can run an automobile on grass clippings, as an example, and I produce that car, my motivation might be to make money. But if the market says: "My goodness, this is the greatest automobile ever invented by mankind", and I make a billion dollars, I've not only served myself but I have served everyone else that needs transportation. And that is the brilliance of our free market, is that paradox that you can serve yourself and simultaneously serve others. And that's what it's all about. \n\nBut how many of the general public have achieved greater prosperity through a banker's bonus? It was against the holy backdrop of St Paul's Cathedral in London that Goldman Sachs Vice-Chairman and mouthpiece Lord Griffiths, gave insight into how certain bankers really think. The devoted Christian defended extortionate bonuses: "I am not a person of despair, I am a person of hope. And I think that we have to tolerate the inequality as a way to achieving greater prosperity and opportunity for all."\n\nA fundamental Christian view, and I would say of Islam as well, and certainly of Judaism, is that wealth is to be shared. Money has to be shared. You can't take it with you. And from that develops a whole lot of stuff about justice and the economy and so on. And we've lost that, and instead we've got people accumulating more and more. \n\nAnd I just think it's... I just think it's disgusting that people have... lost their homes, they've lost their jobs, they can't pay their mortgages, from bankers who made a big mistake and then paid enormous bonuses. I am sorry, that is simply wrong, and I can't understand why we are not more... vociferous about that. \n\nWhen rich people tell you that they specifically have to be rich through these egregious rip-off mechanisms, that's just self-serving propaganda and it should be disregarded. It is true that if you... when you organise human society, some people get ahead and some people struggle. That's a natural mechanism. But saying: "Oh, we've got to have inequality therefore Goldman Sachs must be organised along the following lines", that's a complete non-sequitur. At what juncture, what point, does morality enter into economic calculus?\n\nIn a way, many people think that Adam Smith gave us a free pass; a way not to think about morality, because what Adam Smith said was that individuals in the pursuit of their self-interest are led, as if by an invisible hand, to the general well being of society. Now let me make it clear, Adam Smith didn't really say that. That is, Adam Smith was very much aware that businesses when they got together conspired against the public interest, raised prices, he was aware of monopoly, he was aware of the importance of education, that the private sector couldn't provide, so he himself is aware of all of the limitations, but his latter day descendents have forgotten all those caveats. Adam Smith was the godfather of classical economics. But since its publication, his work has been used as a political football - financiers twisting his words to suit them. \n\n-----\n\n### 🍬 **Trickle or Treat**\nLord Griffiths advocates ruthless individualism to push this idea that if bankers get rich then we get rich too through a process known as "Trickle-Down Economics" or Horse-and-Sparrow theory. If you feed the horse enough oats some will pass through to the road for the sparrows.\n\n**The idea is that extreme wealth concentrated on small minority will eventually trickle-down to everyone else**. But it doesn't work. \n\nBecause by the time the money reaches the people at the bottom of our money pyramid, it has lost its purchasing power. \n\nBut the public are now confused as to why our political leaders have allowed this to happen and quite naturally, now ask: Why? Because our political processes are badly flawed. They are badly flawed because of the dependence on lobbyists and campaign contributions. So that's why my view, and a view of I think a lot of people, is that we have to restructure our political processes to give more voice to the ordinary citizen and less voice to the interest group, to money groups, to those who have taken such a large role in shaping our tax code and our regulations and so forth.\n\nI stood on the front step of Colin Powell's house. And I look at him and I say "What next, Boss?" And he says "What do you mean?" And I said "What next... where are you going next?" "I am writing a book." I said "I know you are going to write your book, but you are not going to do that for the rest of your life, where are you going next?" He said "Maybe a Cabinet position, but first... but first... money." I said "Money?" He said "Yeah, millions. That's the only way you can be a Cabinet officer in the American government" "Oh, wow." \n\nThe Democrats and the Republicans are beholden to corporate interests, and until they become un-beholden to those corporate interests we will never have a well-governed republic.\n\n------\n\n### 💥 **Terror-tories**\n> *Political language... is designed to make lies sound truthful and murder respectable, and to give an appearance of solidity to pure wind* - George Orwell\n\nThe inherent iniquity in our system of money, banking and politics has not just had consequences domestically, but also on a massive scale globally. Western leaders have presented their military campaign in Iraq, Afghanistan and Pakistan as a moral obligation. But are there other reasons for it?\n\nThe first financial beneficiary of America's foreign policy is the military. In particular, those who supply it with arms and equipment. The military has won wars, but how successful has it been in its bigger aim to eradicate terrorism? The drone attacks not only failed but they've created extra extremism. They've helped in radicalisation of youth in the North West Frontier and also in certain parts of Punjab and Pakistan. And because time after time... And sometimes, you know... There's a feeling that America does this deliberately, to de-stabilise Pakistan. I am not so sure about that, but I certainly think those people who actually support this policy, every time you kill ten, the so called ‘terrorist', you create 500 more, because they see the drone attacks as an attack on the sovereign state of Pakistan. \n\nIf they really wanted to flush them out, there was no need for a huge military operation in Swat (Valley), causing the entire district to become internally displaced persons. The population of Swat is 1.8 million, there are 2.3 million refugees in the country, the whole district has been emptied. This wouldn't have been necessary if they had carried out a surgical commando operation to get the militant leaders. But they allowed them to escape, all of them.\n\nAfter the military, the next financial beneficiary are those who win the contracts to conduct the rebuilding process. In the West, people might even feel optimistic when they hear that the 🇺🇸 is pumping tens of billions of newly-created dollars into developing nations to build infrastructure. But often this too doesn't seem to achieve the publicized goals. Is there another reason we give these countries aid? \n\n-----\n\n### 🆕 **Modern-day colonialism**\nWe economic hit men have created the world's first truly global empire. And we've done it primarily without the military. We work many different ways, but perhaps the most common is that we'll take a Third World country that has resources our corporations covet, like oil, and then arrange a huge loan to that country from the World Bank or one of its sister organisations. However, the money never actually goes to the country.\n\nInstead it goes to our own corporations to build infrastructure projects in that country, power plants, highways, industrial parks, things that benefit a few wealthy families in that country, as well as our corporations, but don't help the majority of the people at all. \n\nThey are too poor to buy electricity or drive cars on the highways, and don't have the skills to get jobs in industrial parks. But they are left holding a huge debt. Infrastructure... which has used heavy loans from the World Bank and IMF, and made from grounds from Western countries, they've all gone into benefitting the elite and the feudal classes, and they have not benefitted the people.\n\nA lot of money goes to these consultants and companies from the West, who charge huge amounts of money and actually the real money on projects and on ordinary people is very limited. The masses have very little already, so those landlords who have the infrastructure and who are going to make money because of the infrastructure that is built through their roads, they will prosper. But the ones who don't have any resources, they've not had jobs, there isn't an economic activity for them in terms of manufacturing goods, so they can sell and they can also prosper.\n\nWhen you don't have that, what do they do? They resort to joining the Taliban, because they see the enemy coming in and taking away what little bit they have. President Obama, I understand, wants to invest $7.5 billion in Pakistan's infrastructure to alleviate poverty and, you know, take away all the divisions, and all the anti-American sentiment over here. But whatever his reasons are, we can do without it. In fact it's the worst possible thing he can do. This kind of help is actually going to be a hindrance; it is just going to make matters worse, it will bring this contrived war on terror into our rural areas. \n\nHow much of 🇺🇸 foreign policy is genuinely altruistic? And how much is it influenced by the banks and corporations that profit so tremendously from it? America's evangelism of democracy is riddled with contradictions, not least of which this idea of promoting democracy at the point of a gun, or opposing regimes which are democratic, but not in the way that America wants. So too this idea that America has been promoting free market capitalism has also been riddled with contradictions. \n\nBecause the reality is that American firms tend to make most money when countries are at the cusp of change, certainly American financial firms, and in a sense, they want markets that are changing structurally but not too free and too transparent because they make money when markets are a bit opaque. Is it any wonder developed nations are fighting in underdeveloped countries when so many are making so much money out of it, without ever really having to face up to or even witness the consequences of their actions? \n\n"So what if 5 million kids died in Africa because of debt last year. You know I got a bonus of a million pounds, and..." If I have that conversation, I have had it with some... bankers who've been in the business a long time, and... they listen politely, they are very polite, very charming, and at the end they say: "Well, Tarek it's very lovely meeting you again", and they go back to the office and do another loan deal for Tanzania or something. \n\nI've known a lot of ‘terrorists', quote-unquote. I've met them, I've interviewed them for books, I've known them since I was an economic hit man, I've never met one who wanted to be a terrorist. **They all wanted to be with their families, back on the farm. They're driven to terrorism because they've lost the farm**. It's been inundated with water from a hydro-electric project, or with oil from oil derricks. Their farm has been destroyed. They can't make a living for their kids. Or in the case of the Somali pirates, their fishing waters have been destroyed. And that's why they've turned to this, it isn't because they want to be pirates or terrorists. Now there may be a few crazy people, there are a few crazy people, people with their nuts loose, there'll always be serial killers, there'll always be crazy people, maybe Osama bin Laden is one of them, but they do not get a following unless there's a terrible injustice going on, and people are starving and they're deprived, and then they will follow these crazy people because they seem to offer an alternative. \n\nIf we want to do away with terrorism, if we want to have what we in the U.S. call ‘Homeland Security', we've got to recognise that the whole planet is our homeland. \n\nWhat does the word 'terrorist' actually mean? Many "terrorists" would sooner describe themselves as 'freedom fighters'. Could it be that the charge of "terrorism" could just as easily be made against Western corporations, speculators and policy-makers? \n\nWhen we talk about terrorism it means what they do to us. Not what we do to them. And what they do to us can be pretty ugly, although... it's not even a fraction of what we do to them. I mean, take, say, 9/11. That was a pretty serious act of terrorism. Maybe the worst single act of terrorism in history. But it could have been worse. Suppose for example that Al Qaeda had bombed Washington, bombed the White House, they killed the President, installed a harsh military dictatorship, and brought in a bunch of economists who drove the economy into its worst disaster in history. That would have been worse than 9/11. \n\nAnd I am not making it up, it happened. It's called the first 9/11 in South America, namely in Chile. On 11th September 1973 the democratically elected Chilean President Salvador Allende was overthrown in a coup. A dictatorship under Augusto Pinochet was established that ruled Chile until 1990. There was the systematic suppression of all political dissidence. Thousands were imprisoned and murdered. Who was involved in that first 9/11? It's not hard to find them. They were right in Washington and London, and so on. But that's off the agenda, that doesn't count. There is a principle of ideology that we must never look at our own crimes. \n\nWe should on the other hand exalt in the crimes of others, and in our own nobility in opposing them. The root causes of so-called "terrorism" will not be solved by increasing economic inequality. If governments really are serious about combating terrorism then they must start with real structural reform back home. As long as banking empires chase infrastructure and debt deals in pursuit of profit, the West will continue to export injustice through finance. Millions more will be displaced, terrorism will thrive, and neocolonialism will continue to end more and more lives around the world. \n\n\n-----\n\n### 🎁 **We are Stuff'd**\n\n> *The things you own end up owning you* - Tyler Durden \n\nWhat's happened is that we have moved from a relatively empty world to a relatively full world - that is empty of us and all of our stuff, to now full of us and all of our stuff. \n\nnI my lifetime the world population has tripled. And the populations of other things, of cars, houses, boats... all these other things that put a load on the environment too, just like human bodies, those have vastly more than tripled. **So the world is very, very full of what we might call man-made capital**. And it's becoming **more and more empty of what used to be there**, what we might call natural capital. \n\nWe are the first generation; we in the rich developed world are the first generation to have got to the end of the real benefits of economic growth. For hundreds of years the best way of raising the real quality of human life has been to raise material living standards. And that's what's driven the huge rises in life expectancy and increases in happiness and other measures of well being. But all those have now become detached from economic growth. And although life expectancy continues to rise in the rich world, it's no longer related to the amount of economic growth a country has at all. And the same is true for measures of happiness and measures of well-being. The paradox is the more we grow, the more poverty we create. \n\nOur self-interested economic system seems to be continually missing a trick. So as we keep plundering the Earth's natural capital is it time to rethink our Western definition of progress? \n\n---------\n\n### 🤔 **'Leaders' planning ahead**\nWhen I look at the world, I look at it much the way Royal Dutch Shell looks at it. They have one of the best strategic entities in the world, private or public, and Royal Dutch Shell has posited two scenarios. \n1. The first is called Blueprint, and is obviously a **planned corporate structure where world leaders get together and they think about things like energy transformation, planetary warming, and dwindling fossil fuels, and so forth**.\n2. The other is called Scramble. And Scramble is pretty much what it sounds like too... it's a mess. Interestingly enough, in 2075 - the ending year for these scenarios, as I recall - we get to about the same place. It's just that Blueprint leaves a lot less blood on the floor. Scramble leaves a lot of blood on the floor, as people fight for these resources and so forth.\n\nThe reason oil companies are drilling miles under the sea is that the world's easily-accessible oil has already been found and, largely, consumed. Not only are oil supplies dwindling, major new metals discoveries are becoming increasingly rare. 40% of the world's agricultural land is seriously degraded and ever more volatile yields continue to be unevenly distributed. It may be that the looming environmental threat is not global warming but the exhaustion of the world's resources.\n\nWe're going to have struggles for finding the lands sufficient to grow the agricultural products for what the UN says is will be a 9 billion Earth population. We're going to struggle over non-renewable fossil fuels, as they run out - I think Shell posits about 2075 they'll be gone, and we are going to struggle over things like water and other precious resources that are necessary to our life and to our economy. And, this could be, as Shell says, a Blueprint affair, with world leaders working together to share and share alike or it could be a real mess, and Shell incidentally bets on the mess.\n\nJust like the Baby-Boomers failure to look to the next generation our outdated competitive mentality for a world of depleted resources could have devastating consequences. Our economic set-up encourages one-upmanship, competition and comparison, whereas the progress humans have made over millennia has been largely based on cooperation. In any species, in almost any animal, there is always the potential for huge conflict, because within any species, all members of that species have the same needs. So they might fight each other for food, and shelter, and nest sites and territory and sexual partners, all that kind of thing. But human beings have always had the other possibility. \n\nWe have the possibility to be the best source of support and love and assistance and cooperation. Much more so than any other animal. And so other people can be the best or the worst. You can be my worst rival or my best source of support.\n\n----\n\n### 🧠 **Rethinking consumption**\nIn a progressive society to meet our common economic, social and cultural needs we must move from globalisation to localisation. The benefits of a communal sense of fellowship, responsibility and purpose in a life driven by production, not consumption would lead to happiness and satisfaction. Indeed we must ask: Have our modern consumerist lifestyles made us happy?\n\nI think if one had been living in the 19th century and somebody had told you that 100 years later people were going to be living in this extraordinary wealth and comfort, you know, with central heating, and being able to throw away such a high proportion of our food as we do, we'd imagine that we'd be living in a state of extraordinary social harmony, and... everything would be rosy. And it's really quite remarkable the contrast between, if you like, the material success of our societies and the social failure.\n\nThe growth economy demands that we make consumption a way of life. He who ‘dies with the most toys' became the ambition and retail replaced spiritual satisfaction. \n\nUnsurprisingly, sales of anti-depressants sky rocketed. The fact is that the world economy over the last few years, a good share of my lifetime has been built either on the military, or on producing items that most people don't need. And really don't even want if you come right down to it, but we all got to have them. \n\nConsumerism is driven by our extraordinarily social nature, that we want to have the stuff so we look good in other people's eyes. It's because I experience myself through other people's eyes, their feelings of shame and embarrassment or pride, and... maybe feeling envied, all those things. So... the goods are just a way of, if you like, mediating the relationship between yourself and others in this extraordinarily alienated hierarchy.\n\n-----\n\n### 😆 **Pursuit of happiness**\nWhat's really suffered is human relationships, family life, the things that really matter to us. And in the end the only thing that makes human beings happy, isn't money, it's very clear that past a certain level you only get marginal gains from wealth. **What really makes us happy is other people. It's our relationship with other people that's really being damaged by the last 30 years**. We trust them less, we have less interaction with them, we bond less than ever before, we marry less, and marriage is under more threat than ever before, and all the associations that represent sort of permanent, unconditional human affection are being eroded or damaged. And that is the real legacy of the last 30 years.\n\nAnd in some sense we've got to recover and re-humanise our lives. Otherwise, not only will they be nasty, brutish and short, but they'll be lonely. The West is coming to the realisation that its human project is failing. The West was so convinced that if you push people to achieve as individuals, that accumulated achievement of individuals would make for a successful society. And what the West is now beginning to realise is that the individual achievement, without incorporating the vulnerable community is a myth.\n\nThe idea was: "Make your own life, be individually aspiring, and then you'll be individually achieving, and then you'll be individually prosperous, and then you'll be individually happy." You end up doing that in a glass jar and the glass jar has a limited height, and it is encapsulating, and in the end you die of lack of oxygen. Human beings are alive because they seek attachment, and because they're propelled by affection. So, the isolated achieving individual in the end implodes. In order to find a purpose in life it has to be outside yourself. It matters not how you construct it outside yourself as long as it is a positive value added to society pursued. But it has to be outside yourself, it can't be yourself.\n\nIf you are pursuing yourself you are pursuing the abyss as Nietzsche said, you are going to wind up in the abyss. \n\n----\n\n### 🎬 **Influence of Hollywood**\n\n> *I have never let my schooling interfere with my education.* - Mark Twain \n\nOne of the most powerful cultural frameworks that shapes the way we think today in the West is the Hollywood film construction. And it follows a particular cultural pattern in that there is a beginning, there is a middle, and an end. There is drama, tension, there is resolution. There is usually a goodie and a baddie and there is usually a story to hold the medium of human beings.\n\nThis Hollywoodisation of the way that people communicate, and the way they tell stories about themselves, and view their recent history, has very much impacted how we look at the financial crisis in that people look at the beginning, the middle and the end, **they look at the drama around Lehman Brothers, and they wanted, say, a resolution**. And they wanted baddies, they wanted sacrificial victims as well. So people have focused on a few individuals. And the idea that somehow it wasn't just one or two individuals who were at the root of the problem, it was a systemic problem, that actually almost everyone who participated was in some way guilty, either of outright negligence or simply failing to ask the right questions, or simply failing to ask why money was so cheap for so many years.\n\nThe idea that it was a systemic flaw is something which is very hard for people to grasp, and even harder to depict as a good story. Perhaps there is this feeling of helplessness because we don't understand what the real problem actually is. Cleansing a few 'bad apples' will not rectify the flaws at the heart of the Western economic system. A system that should be protecting people is in fact the very thing that's enabling our Four Horsemen to ride with such vengeance. \n\n----\n\n### 🐴 **The 4 Horsemen**\n\nThe modern day Four Horsemen - a rapacious financial system, escalating organised violence, abject poverty for billions and the exhaustion of the Earth's resources - are riding roughshod over those who can least afford it.\n\nThey gallop unchallenged because **the cognitive map that's been put in place by our schools, universities and our media does not encourage us to question accepted norms**. Instead there is apathy. \n\nIn a sense I think we are rather depressed societies. **We've got used to the idea that there's nothing that can be done, there is no alternative**, that, you know, we are never going to deal with these environmental problems and we live in a dog-eat-dog society, and that's it.\n\nI think what we have to take away from this, is a recognition that... most of these problems can be very substantially improved by making our societies more equal, reducing the income differences. And that also helps us to solve the environmental problems. We can reach a society that is qualitatively better for all of us. Well the apathy is sort of engineered because you don't have any discussion of this in the public media.\n\nHardly by surprise, the public media are owned by the real estate and the financial interests, and they are not going to explain to people the integration between the financial, insurance and real estate sectors - the FIRE sector. There's this disinformation going on, passing the buck, denying what the real driving factors are. All of these are common strategies.\n\n-----\n### 🎓 **Educate yourself**\nIn fact even in education you can see that banks have helped to set up universities they've funded them, they fund think tanks, they have educational foundations, they own newspapers. All of this stuff is going on as a kind of propaganda exercise so that the people don't actually work out what the problem is. You should not assume because, you know, you don't have a background in economics or in law, that these issues are somehow too complex for you. They're not complex at all, it's very simple.\n\nIt's about power, and it's about democracy. And you understand that just as well as I do. One source of this disinformation is the neo-classical school of economics. These economists and academics have been successful in convincing the world that their models were gospel. \n\nBut just as Gutenberg's printing press was revolutionary in the 16th century today **we are at the dawn of internet enlightenment which will remove the cloud of ignorance upheld by academic and media gatekeepers**. \n\nEducation can be a form of mass mind control and it's astonishing that today neo-classical economics continues to be taught in all Ivy League universities. I do get letters from students in economics departments at other universities. They're in some graduate programme or something, and they say: "I have just read such and such that you wrote, and this is the kind of thing that interests me. I'm stuck in this programme here in which I can't even talk about any of that. What's your advice? What should I do?"... What they're teaching you is what you're going to have to oppose, a lot of it. I mean some of it's useful, go ahead and learn it, and the reason for learning the rest of it is: know your enemy.\n\nAn individual might not be able to change the system, but they can change themselves. **If we're not offered proper education, we must begin our own**. And a good place to start is to become re-acquainted with the classical economists. And with something that so few question, but that affects us all: our system of money. If the monetary system of the world is not reformed then we are headed towards the end of industrial civilisation.\n\n----\n\n### 😵‍💫 **The Fiat-sco**\nI won't say that we are going to the end of humanity, but it's just going to be absolute collapse of our world as we have known it, because it can not function on fiat money. And none of those who are responsible for this want to admit it, but that is the fact. The fiat system of money is a man made law, and it's been abused. Is there a form of money whose law is not set by man? \n\n-- _cough, cough `[insert thought about bitcoin]` cough, cough_ --\n\n"When you look at natural law and gold... I sort of describe gold as being a natural form of money. All of the gold that has been mined throughout history still exists in it's above ground stock. It's about the size of 2 olympic swimming pools, if you put all that gold together in one place. The key is that this above ground stock of gold grows by about 1% per annum, which is approximately equal to new world population growth, and is approximately equal to new wealth creation. So, the net result of this is that... you have this very good consistency in gold's purchasing power over long periods of time because the supply-demand equation is very much in balance."\n\nTo achieve human liberty you really need to have sound money, and ~~gold~~ `Bitcoin` is the only way to do that because only gold is outside of the control of politicians. \n\nWith modern man made monetary processes, a chronic excess of debt has built up at every level of society. Debt is now regarded as normal. It isn't. It's a form of slavery. But how much do we question our debt? And what should we now do about it? \n\n----\n\n### 🚫 **Debt Deletion**\nThe classic example, most recently of a debt cancellation, was the German economic "miracle" in 1947. The Allies cancelled all domestic and international German debts except for the debts that employers owed their employees for the previous few weeks, and except for a basic working balance that everybody was able to keep in the bank in order to buy food for the next few weeks or so.\n\nEssentially you would follow the five or six pages that the currency reform of 1947 did in Germany. You would start with a clean slate. That means that everybody would own their property free and clear. And the problem here is that you'd wipe off the savings that are the counterparts to the debt.\n\nThat actually would not be such a bad thing if you look at the fact that the... wealthiest 1% of **Americans have concentrated an enormous amount of wealth in their own hands, more than at any earlier time since statistics have been kept**.\n\n----\n\n### 🚖 **Taxi for Taxation**\nOur system of taxation also needs addressing. Currently we're taxed on what we produce. Perhaps it would be more progressive to tax what we consume. How many American people realise that the Founding Fathers never intended Americans to be taxed on their labour? In other words, they weren't meant to pay income tax.\n\nThe tax system that was exported from Britain, a relic of colonialism, has duped the world. The most important element of a tax system is to do what everybody expected to be done in the 19th century, and that is to base the tax system on land taxation, on the free lunch of land value, and on what John Stuart Mill called the 'unearned increment'. The income that landlords made in their sleep, as he put it.\n\nWho made oil in the ground, coal or iron ore? These are things which are not the product of human effort, of course extracting them is, but their existence is not. And so the rents from natural resources are a wonderful source of taxation. Nobody made them, so... And when you do tax them, you cause all others to use them more efficiently. So this seems like really the excellent thing to tax, rather than labour and capital. \n\nIf the governments use this land site value that's supplied by nature, not by human labour, not by a personal enterprise, then the government would not have to tax wages in the form of income tax, it wouldn't have to apply sales tax that adds to the price of doing business, and it wouldn't have to add the proliferation of business taxes.\n\nThis tax system - advocated by all the classical economists - would begin to address global poverty as it would allow citizens in developing countries to keep their resource wealth. In developed countries it would begin to address our housing and debt crisis and unleash the kind of entrepreneurship needed to refloat our economies. \n\nPerhaps we should also resurrect another timeless principle for workers that was promoted during the Industrial Revolution. The idea that people who work in a plant ought to own it, is just deeply built into working class culture. So right around here at the early Industrial Revolution in the late 19th century, working people simply took for granted, that yes, of course, the workers should own the mills in which they work. Anything else is an attack on our fundamental rights as free citizens. They also took for granted that wage labour is hardly different from slavery. It's different only because it's temporary, and then you can be free. One of the ways you can be free is by owning your own plant. That was not an exotic view - that was Abraham Lincoln's view. In fact it was a principle of the Republican Party in the late 19th century. It's taken a lot of effort to drive those ideas out of people's heads, but they're still there and they are very relevant. \n\n**It was the Greek philosopher Plato who said the ratio of earnings between highest and lowest paid employee in any organisation should be no more than 6:1**. In 1923 banker J.P. Morgan declared no more that 20:1 was optimum. Yet today's salary difference between top and bottom earners in global corporations can be higher than 500 or a 1,000:1. When you are up in the range of 500:1 inequality the rich and the poor become almost different species - no longer members of the same community. Commonality of interest is lost, and so it's difficult to form community and to have good friendly relationships across class differences that are that large. \n\nWhen the public do vent their outrage at inappropriate earnings, the common defense is to move the debate to the psychological realm and quote mercurial British economist Herbert Spencer. He coined the phrase 'survival of the fittest' and his words are now used to justify excess. Competition in business is a good thing, but the playing field must be level. \n\nMonopolists have too much because the system they game is rigged. Under the current economic set-up the fitness of the vast majority of the world's population is irrelevant. Those that are made to pay for this crisis are not those that caused it. But those who caused it - for survival - will no doubt try to marginalise this film as socialist or even Marxist. \n\nI'm a capitalist. I'm a business person. I believe in the basic principles. That's why I'm completely appalled by seeing these principles destroyed by monarchs, monopolists, who have totally destroyed the system from within, on Wall Street, and this is completely unacceptable. I'm a capitalist. I think capitalism can do it. It's not a question of getting rid of capitalism. It's a question of getting rid of this terrible form of capitalism. Capitalism, more broadly understood as market economy, not only has a future, I can't see the future of the world without it. But the question is: What kind of capitalism? What kind of market economy? \n\n-----\n\n### 💡 **A Potential Reformed System**\n\nA system of reformed capitalism built on independent money, a tax system based on consumption, not income, and employee-owned businesses would begin to build an economy that's not dependent on constant growth to service its debt.\n\nWe've endured the so-called ‘free market' for centuries. But far from being free it's led us to destroy nature and each other in a vain attempt to progress. It's absolutely ludicrous to suggest that somehow there's a scientifically defined boundary of the market that we should never change. And of course that is what the free market economists want you to believe. Because once they convince you of that, and claim that - on top of that they claim that they have the truth, because they are PhD's in economics - then they can tell you whatever they want and then you'll have to accept it. But that's where we have to take these guys on. \n\nPolitics is about drawing the boundary of the market. I mean, when you think about it, a lot of things have been taken out of the market over the last two, three centuries. Two, three centuries ago you could... buy and sell human beings, child labour, a lot of things that you didn't imagine you could buy and sell today. So, I mean, over time we have re-drawn this boundary and there is nothing wrong with re-drawing the boundary again. \n\nThings that were considered absolutely reasonable in the 1850's like selling any chemical on the street corner and telling you that it's a pharmaceutical drug that maybe good for you, things like that, that were absolutely commonplace then are now serious criminal offences. The same thing will be true of active money management in a 100 years. \n\nThe breakdown we saw in the Great Depression and witnessed again at the beginning of the 21st century occurred because - in the name of growth - much was taken out of the system by those who contribute very little. Multinational corporates and banks will always want to grow without having to compensate those people who actually do the work to produce the surplus. In the past every time too much was taken by those who contributed little people rose up to halt the violent practices enacted by a tangible enemy. Today the question is: With such a formless enemy pervading every element of our economic and democratic process, can it be done again? Of course it can be done again. \n\nLook it's a cycle, I mean... we're not debt peons, we may be rats running around a little wheel in somebody's big cage somewhere. The finance rises, finance rises, finance becomes organised, you make a lot of money in banking, it's easy to go out and buy politicians, but the essence of democracy, the essence of American democracy is this repeated confrontation, a repeated showdown....\n\n- _In the 1830's Andrew Jackson beat the second bank in the U.S_\n- _In the early 1900's Teddy Roosevelt beat J.P. Morgan and Johnny Rockefeller_\n- _In the 1930's Franklin Delano Roosevelt, FDR, beat everyone from Wall Street_\n- _and now we have to do it again!_\n\nThe one single thing that makes me optimistic, rather than cynical, pessimistic, is my students. First, I do not see the desire to go to Wall Street amongst them, I see the opposite. Second, I see a disdain amongst them for people who are motivated... not just they don't want money, I see a disdain amongst them for people who do just want money. \n\nThe crisis we face today are created by humans and what is created by humans can be changed by humans. So we are all capable of transforming our world. Revolutions are philosophical. Getting organised and preventing the culprits camouflaging the real problem means it's possible to embark on a bloodless revolution against the violent organisations and barbaric leaders who've trashed the economy. \n\n**Central banking, rigged capitalism, land speculation, income tax and neo-classical economics have corporatised democracy, stunted progress, perverted the course of human destiny and compromised the future of this planet.** If these issues aren't addressed then the next implosion will be on a scale unimagined. Whatever the propaganda: At the beginning of the 21st century, central banks' unregulated cheap money pumped up land values which created an unsustainable asset bubble in a world that once again operates a rigged tax system that enriches entrenched privilege.\n\nNeo-classical economics have ruined life for the bottom billions, tempted everyone into intergenerational conflict and created massive suffering that has no limits. \n\n**Human beings go mad in crowds, and come to their senses slowly and individually**. History is littered with examples of people who threw themselves off the yoke of oppression to adopt radical change, only to end up with popular new rulers that maintained the status quo.\n\n\n----\n\n### 🏁 **The Timely Takeaway**\n**To really understand something is to be liberated from it.** Dedicating oneself to a great cause, taking responsibility and gaining self-knowledge is the essence of being human. A predatory capitalist's truest enemy and **humanity's greatest ally is the self-educated individual**, who has read, understood, delays their gratification and walks around with their eyes wide open. \n\nAn invasion of armies can be resisted, `but not an idea whose time has come...` ₿\n\n\n\n \N 1244 \N 442529 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 18.5923986394477 0 \N \N f 248718668 \N 1 85298746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443122 2025-03-19 04:22:51.676 2025-03-29 22:39:47.089 Liberate yourself! Hiking and hiking over the mountains, came into my mind a simple way to liberate yourself from the government enslavement.\n\nYes, you are a SLAVE, but you still do not realize it. And in this little post I will explain you how to “materialize” what really is “the government” and how to get rid of it.\n\nReal case, I did it myself after this idea came into my mind. I took a hiking trail for at least 30-50km, for various days walking. Not rush, just normal walk, enjoying the nature, sleeping outside, eating what you carry, taking care yourself.\n\nSo, after choosing the trail, with at least 1000m elevation ramp and highest peak to be like 2000-2400m, start making your backpack. Put inside all you can carry (clothes, food, water, tools, shelter etc). But apart from that, add a simple 100-200g rock and put it into a paper, writing on each what represent as a “government service” and you are directly affected or using them: laws, rules, licences, permits, restrictions, “protections”, all things that the gov is “offering” you directly. Be sincere with yourself, don’t cheat. Make a list before collecting the rocks.\n\nSo be aware! These rocks you are not allowed to drop them on the path, these are your “burden” to carry because is “by law” obligatory (in your mind).\n\nSo start walking. In the first day, the backpack will not be so “uncomfortable” you can still carry it. But now come the nice part and remember, don’t cheat yourself, this is a life experience that we should all try it at least once.\n\nEvery time you are drinking water, you will have to throw away 10% from what you have to drink (gov tax).\n\nEvery time you will eat something, you will have to throw away 10% from what you want to eat (gov tax).\n\nEvery time you will have to sleep in your tent, you will have to sleep 10% less (gov tax on your property).\n\nEvery time you will have to put a cloth more when you are cold, you will have to wear it less 10% of the time (gov tax).\n\nEvery time you want to just sit and relax, enjoying the view, you will have to stay with 10% less time (gov tax).\n\nSo now, after few days walking, your food is less than you prepared, you are less rested, more thirsty also, so for the next days to finish your journey, you will get more and more irritable and your hiking became a nightmare. Plus on that you still have to carry all the “gov rocks” that with each hour walking are heavier and heavier.\n\nIn the last days, you will be like a mad dog, believe me, that experience it will bring your nerves to limit.\n\nFinally you reach the summit (let’s suppose you didn’t abandoned yet) and in a final struggle, you take an important decision, asking yourself: why the hell are you carrying all those rocks? Why you keep your mind busy with just a stupid idea that “you have to carry those rocks forever”? That government is just in your mind, you are putting yourself into a slavery by consent, by yourself, in your own mind. So on that summit, you will throw away the whole stash of rocks and decide to be a sovereign individual, not depending on any of those “services” from the government. In the end this is a gov, a simple idea in people’s mind that they need those “services”.\n\nThrow away the rocks and keep only few tools for survival. Be yourself, trust yourself, depend only on yourself and NEVER GIVE UP. The way back will be much easier and relaxing, your brain will start functioning at 100%, because now is time for survival. You have only a bottle for water, a sleeping bag and a good knife (with kindle). What represent these three elements in your real life? Food, shelter, protection/defense/tool to obtain food. This is all you need in life as for you own way back home.\n\nYes, your way back will not be easy. Remember, now you will not have anymore any “protection” from your lovely government, you are on your own. So be wise, think twice for each step you do. If you want back “protection”, you just have to carry again that backpack full of rocks, forever and every day more rocks.\n\nBut the most important thing is that you GET RID OF THE GOVERNMENT FROM YOUR MIND. Your path to full freedom and sovereignty just started. Now you can eat and drink and sleep all you want/can. But obtaining will be hard and in special to keep it.\n\nThere are many ways to do it (in real life) but at least this test experience will help you liberate your mind, the most “jailed” item you have.\n\nYou will be very surprised what your mind can do/think in situations like these.\n\nEnjoy your freedom! \n[GOVERNMENT IS JUST AN ILLUSION OF POWER](https://darthcoin.substack.com/p/darth-last-words-to-luke).\n\nThe government will never "give" you freedom, no matter how much you will go on the street and "protest". [Protesting doesn't serve to anything, is useless](https://www.youtube.com/watch?v=1tWjgFEyaOU). Is like you are a kid crying to your parents to leave you to play instead of doing homework.\n\nSTOP BEING A KID! You are a grown wo/man!\n\nSo stop asking "your gov" for giving you back your freedom. Just defend your freedom that you already have, against that evil gov that wants to fools you to give it away.\n\nWatch:\n- [The Power of Affidavit, The power of paper](https://www.bitchute.com/video/yxBfLX9POuPT/)\n- [You are NOT alone! - The power of saying NO](https://www.bitchute.com/video/Dgd14YsLvHVv/)\n\nA must read - [Living in the private](https://livingintheprivate.blogspot.com/) \N 895 \N 443122 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.5790712381597 0 \N \N f 204856798 \N 1 160802395 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:46:57.166 f \N \N \N 0 0 0 0 1 0 0 443667 2025-03-19 13:03:16.5 2025-03-29 22:39:47.084 Bitcoin paradigm shift thought experiment ### Paradigms\n\nOne way to think about when big things change -- when a paradigm shifts, as [Kuhn](https://en.wikipedia.org/wiki/The_Structure_of_Scientific_Revolutions) would put it -- is when the existing paradigm accrues enough damage from how it mismatches the world (this is obvious) but also when there's something new that can account for those errors better than the existing paradigm (this is not obvious to most people).\n\nIn other words, it's not enough for the Current Thing to be broken; a suitable replacement must also be waiting in the wings. Or, as [Carlota Perez](https://en.wikipedia.org/wiki/Technological_Revolutions_and_Financial_Capital) would have it, the infrastructure for the New Thing has to be sufficiently built out:\n\n> Two decades after the big-bang of the Age of Steel, profound changes had to be made again. The ‘belle époque’ based on the unleashing of the full potential of the third paradigm, with its truly international markets, required world-wide regulation (from the general acceptance of the London-based Gold Standard to universal agreements on measurement, patents, insurance, transport, communications and shipping practices), while the structural changes in production, including the growth of important science-related industries had to be facilitated by deep educational reforms and social legislation.\n\nMore briefly: a lot of stuff had to be in place before the Age of Steel could take off, despite the importance and obviousness of steel's potential benefits.\n\nIt's also important to note that even if this thing waiting in the wings is clearly and demonstrably superior in regard to a really high-stakes issue, that alone isn't enough. A sad illustration of this is that a dude named [Ignaz Semelweis](https://en.wikipedia.org/wiki/Ignaz_Semmelweis) figured out that having doctors wash their hands when they delivered babies reduced maternal mortality drastically. He demonstrated it empirically. But handwashing wasn't standard practice, people didn't understand why it worked, and doctors felt that it offended their dignity, for reasons that I've never understood exactly.\n\nWhat do you think happened when Semelweis wasn't in charge anymore?\n\n> The director who took over from Semmelweis at his last clinic stopped the practice of handwashing. Maternal mortality rates immediately jumped sixfold.\n\n[...]\n\n> The virtual elimination of childbed fever happened not because of Semmelweis’s contributions, but instead thanks to Louis Pasteur’s. Why? Because Pasteur changed not just a procedure, but an entire science. In the 1860s, he conducted a set of experiments that demonstrated to physicians not only that Semmelweis had been right, but why he had been right. [2]\n\nTruth isn't enough, even when it's easily demonstrated and replicated. A slew of social forces have to be aligned, too.\n\n\n### A thought experiment\n\nSo this has got me thinking: what is the **best possible reasonable scenario**[1] for btc to be maximally successful ten years from now? At first I was going to define what _maximally successful_ meant, but upon further review I'll leave it unspecified, so you can tell me what it means to you.\n\nOnce you've answered that, I'm curious about the converse, too: what's the **worst possible reasonable scenario** that would prevent bitcoin's success in ten years?\n\n#### Notes\n\n[1] I use _reasonable scenario_ here to mean: something that could plausibly happen outside of your hopium-derived fantasies.\n\n[2] The story of Semelweis vs Pasteur has been covered in a bunch of places, but I got this quote from [this unlikely source](https://www.amazon.com/Geek-Way-Radical-Transforming-Business/dp/0316436704).\n\n \N 1488 \N 443667 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 2.4038563367818 0 \N \N f 486190217 \N 3 18538999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 07:03:56.193 f \N \N \N 0 0 0 0 1 0 0 367235 2025-01-13 17:30:33.358 2025-03-29 22:39:47.087 Opinion on Covenants? Obviously had a lot of discussion going around about covenants in the last few weeks so I thought I'd see where the SN community is at on this subject. \n\nI don't know much about them myself and don't feel strongly either way at the moment. Have yet to see anything that would make me outright reject the idea, but also believe in practicing conservatism with any proposed change to the base layer (default to rejection). \n\nThere seems to be a lot of different proposals on how to bring them to Bitcoin as well, which is adding to my confusion. Any insight/info/questions/concerns welcome to this post! I want to learn.\n\nLinked a few things below relevant to the topic\n\nhttps://covenants.info/\nhttps://sethforprivacy.com/posts/dispelling-covenants-fud/\nhttps://x.com/4moonsettler/status/1737113171582980413?s=20 \N 811 \N 367235 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 10.0210334682886 0 \N \N f 134139331 \N 1 16161582 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410399 2025-02-20 13:13:34.693 2025-03-29 22:39:47.087 What is Bitcoin like in Cuba? Hi all,\n\nI spent 10 days in Cuba meeting, mixing and investigating Bitcoin in Cuba. \n\nThe result is a 30-minute documentary that I really hope you will learn from and enjoy.\n\nPlease shill the video harder than communism f*cked Cuba.\n\nhttps://youtu.be/UPp0Xbk4bFo?si=kkP5X7gvWn9XVClF\n\nI've been instructed to avoid returning to Cuba for the next few years by exiled Cubans. Turns out freedom of speech can get you into trouble.\n\nIf you want to support the Cubans on the ground, send sats to:\n\nbitcoincuba@getalby.com\n\nMuchas gracias,\n\n\nhttps://imgprxy.stacker.news/z9RaJ2s1znl2g65_exVIXKcBCzEJMtmeor664TG6Do8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0Y2VXhhNkhXOEFBRktjNT9mb3JtYXQ9anBnJm5hbWU9bWVkaXVt\n\n\nJoe \N 17713 \N 410399 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 11.6097216714363 0 \N \N f 172796995 \N 1 153157308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434129 2025-03-11 16:06:04.792 2025-03-29 22:39:47.087 SN release: new referral system part 1 These are half the changes to referrals following our [referral discussion](https://stacker.news/items/589991). \n\n### part 1\n\nThis mostly adds more ways to get referral attribution. In addition to explicit `/r/` referrals (also invite links), nearly all links on SN are also *implicit* referrals:\n- all item links attribute a referral to the OP\n- all territory links attribute a referral to the founder\n- all profile links attribute a referral to the stacker featured on the profile\n\nUntil part 2 ships this only affects referrals for signups, but these signup referrers will be "forever referrers" and will always be rewarded for their referees even after part 2 ships.\n\n### part 2 plans\n\nWe're going to add another "class" of referrer which we're calling "one day referrers." On any given day, when a referee generates referral rewards, 50% of those sats will go to their "forever referrer" and the other 50% will go to their "one day referrer."\n\nFor our first iteration, a referee's "one day referrer" will be the stacker that referred them the greatest number of times on that day.[^1] e.g. if a stacker follows 100 of my explicit or implicit referral links and 120 of ek's explicit or implicit links, ek will be that stacker's "one day referrer."\n\nMore conceptually, if a stacker created the most content that you engaged with (implicit referrals) or the shared the most links to content that you engaged with that day (explicit referrals), then they become your "one day referrer."\n\n### rewards\n\nImplied in the above, Part 2 will also ship a new referral rewards scheme with a daily referral reward notification. As a result of part 1 and part 2, and some other changes, ***ALL*** stackers will have both a "forever referrer" and a "one day referrer" on days that they are active.[^2]\n\nIt'll work somewhat as suggested in our [referral discussion](https://stacker.news/items/589991):\n- 10% of daily rewards will go toward rewarding "forever referrers" of the stackers that receive rewards for the day\n- another 10% of daily rewards will go toward rewarding "one day referrers" of the stackers that receive rewards for the day\n\nThe idea here is: referring valuable stackers will be rewarded.\n\n[^1]: Overtime, we might refine this into a less "winner takes all" scheme and do something more involved like [a shares system](https://stacker.news/items/506566?commentId=506806).\n[^2]: If a stacker doesn't have a "forever referrer" initially, their first "one day referrer" will be made their "forever referrer." If a stacker generates referral rewards for the day, but doesn't have a "one day referrer" for some reason, then their "forever referrer" will also be their "one day referrer." \n \N 19570 \N 434129 \N \N \N \N \N \N \N \N health \N ACTIVE \N 6.69933558676941 0 \N \N f 211015713 \N 1 67746771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:31:27.138 f \N \N \N 0 0 0 0 1 0 0 448947 2025-03-23 02:11:44.144 2025-03-29 22:39:47.09 SN release: biggest boost wins, 70% of fees to territory founders, 30% sybil fee This is a pretty experimental release.\n\n#### boost changes\n\n1. the highest boost in a territory over the last 30 days is pinned to the top of it\n2. the highest boost across all territories is pinned to the top of the homepage and rewards page\n3. all items can be boosted indefinitely \n - your own posts and comments now have a flipped bolt (distinguishing them from other posts), allowing you to boost them beyond the edit window\n4. the job board is now ranked by boost\n - territories with an "auction" ranking system (only ~jobs can do this currently), use boost to rank posts in `hot`\n\nThe hope in general is this serves as a significant revenue source for territory founders.\n\n#### 70% of fees go to territory founders\n\nPreviously, founders got 50% of fees in their territories with the other 50% going to the rewards pool. Now, they get 70% of the fees (posts, comments, boost, zap sybil fees) and 30% goes to the rewards pool.\n\n#### 30% sybil fee is taken on zaps\n\nPreviously, we took 10% of zaps for ranking sybil resistance. This is insufficient for real sybil resistance. People still sybil zap their own subpar content at 10% so we've increased this to 30%. 10% isn't a whole lot for the outbound route for p2p zaps either.\n\nAs always, that sybil fee that's left over from the territory founders revenue goes to rewards.\n\n--------------\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 10.852m sats to 29 contributors for 129 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/683598\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924)\n \N 10981 \N 448947 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.94800963146615 0 \N \N f 0 \N 0 173412823 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 19:31:29.049 f \N \N \N 0 0 0 0 0 0 0 442367 2025-03-18 14:35:26.361 2025-03-29 22:39:47.084 Attaching a wallet to SN using Alby Hub Desktop | Complete Beginner's Guide ![](https://m.stacker.news/57487)\n\nHi, despite numerous guides out there about this already (see bottom for links), I thought I'd write another one because I had a bit of trouble that the others guides didn't mention.\n\nThis guide is designed for a complete beginner to LN, and the guide will walk you through the steps to:\n\n1. Set up Alby Hub Desktop, which acts as both a local Lightning Node and Bitcoin/LN Wallet.\n2. Receive Bitcoin into your new Alby Wallet.\n3. Open a channel from your Alby Node to Stacker.News (because we want the shortest possible route to send and receive sats on SN right!?)\n4. Generate some inbound liquidity on your SN Channel (optional).\n5. Attach your Alby Wallet to SN via NWC. (Note that this is *not the same* as opening a channel to Stacker.News).\n\nThis guide was written for Windows 11, but the steps are probably same or similar for other OS.\n\n## Prerequisites\n1. You must own some Bitcoin and know how to send BItcoin to an address on-chain.\n2. You must have a Stacker.News account.\n3. You must have a computer and OS capable of running Alby Desktop.\n4. You should block out an hour or so, since you'll have to wait for on-chain confirmations.\n\nThat's it. No other prereqs.\n\n## Download Alby Hub Desktop.\n\n- Go here in your browser: https://guides.getalby.com/user-guide/alby-account-and-browser-extension/alby-hub/alby-hub-flavors/desktop\n- Follow the instructions to download Alby Desktop for your OS.\n- For Windows, it looks like this: \n\n ![](https://m.stacker.news/57492)\n\n Just click "Get Started" and follow the instructions\n\n- You should end up with `albyhub-Desktop-Windows.zip`.\n- Unzip it anywhere. I chose `C:/Users/Username/AlbyHub`\n- You should end up with `albyhub.exe`. Double click this.\n - You may see a Windows Defender popup. Just click "More information" and "Run anyway".\n - You may also get a Firewall popup. Allow Alby to communicate via your network.\n- Further note for Windows users: Alby stores data in `C:/Users/Username/AppData/Local/albyhub`\n\n## Set up your Alby Desktop password.\n\n- Click through all the welcoming screens.\n- When you get to "Get Started" vs. "Advanced Setup", click "Get Started."\n- Enter a secure password. You must remember this because there is no way to recover!\n- Click through to create the password.\n- When you hit the screen that asks you connect an Alby account, just click "Later".\n\n## Receive Bitcoin to your Alby wallet.\n\n- You should now be on a screen like this:\n\n ![](https://m.stacker.news/57496)\n\n- Ignore the "Get started with your Alby Hub" steps. This is where I got tripped up since it wanted me to buy liquidity from a list of pre-selected providers. You shouldn't have to do this, so don't.\n\n- Instead, click "Node" on the left.\n\n- Click "Deposit" on "Savings Balance".\n\n- Alby generates a Bitcoin receive address for you. Use it to send Bitcoin to your Alby wallet! It will wait for a few confirmations before it shows up in your Alby Wallet.\n\n- Once you have enough confirmations, your deposit will show up in the "Savings Balance" part of the "Node" screen:\n\n ![](https://m.stacker.news/57497)\n\n## Open a channel to Stacker.News\n\n- First, you'll need to find the pubkey of Stacker.News. You can find it on Amboss: https://amboss.space/node/03cc1d0932bb99b0697f5b5e5961b83ab7fd66f1efc4c9f5c7bad66c1bcbe78f02?section=General\n\n- Copy the pubkey by clicking on the copy button:\n\n ![](https://m.stacker.news/57498)\n\n- Go to the "Node" page in Alby Desktop and click "Open Channel"\n\n- Enter the channel size.\n\n- Click Advanced Options\n\n ![](https://m.stacker.news/57499)\n\n- A "Channel Peer" menu shows up. Click "Custom".\n\n ![](https://m.stacker.news/57500)\n\n- Enter the pubkey of Stacker.News in the "Peer" field.\n\n- I checked "Public Channel," but I don't think this is required.\n\n- Click Open Channel.\n\n- Alby will wait for 2 confirmations before the channel appears as open.\n\n- You now have *outbound liquidity* on the SN channel.\n\n## Get inbound liquidity on your SN channel (optional)\n\n- Assuming SN is your only open channel, you need this step to get inbound liquidity.\n\n- Simply buy something online which takes payment via Lightning Network. \n\n- Click "Wallet" in Alby Hub (on the left sidebar.)\n\n- Click "Send"\n\n- Enter the invoice or lightning address that you want to make payment to.\n\n- Hit continue.\n\n- Assuming SN was your only open channel, you will send the payment via that channel. You now have *inbound liquidity* on your SN channel and you are now able to receive payments on LN!\n\n- On the "Node" screen, you see a channel status that looks like this:\n\n ![](https://m.stacker.news/57501)\n\n## Attach your wallet to SN\n\n- On the left sidebar in Alby Desktop, click "App Store"\n\n- Find stacker news and click "Connect"\n\n- The instructions you see on Alby may be buggy, so follow what I write instead (as of 2024-10-14). \n\n- Navigate to wallet in Stacker.News in your browser:\n\n ![](https://m.stacker.news/57503)\n\n- Click "Attach wallets"\n\n- Under NWC, click "Attach"\n\n- *You need to create **two** connections by pasting in NWC pairing strings.* One for send, and one for receive.\n\n- First, we will create the *send* connection.\n - Go back to Alby Desktop. You should still be on the stacker news app page. Click "Connect to stacker news"\n - Change the "Name" to "stacker news send"\n - SN recommends keeping "Full Access" selected, so I will also recommend. More advanced, security conscious users can modify permissions if they like.\n - You can optionally set a budget so that you don't accidentally spend too much via this connection (i.e. due to a bug or attack.)\n - Click "Next"\n - Copy the pairing secret.\n - Paste it in "Connection for sending" in Stacker.News in your browser.\n - On Alby Hub, it will keep saying "Waiting for app to connect." Wait until a "Continue anyway" pops up and click that.\n\n ![](https://m.stacker.news/57504)\n\n - Your "stacker news send" connection should now have been created, but it's not attached yet to SN because you didn't finish configuring on SN yet.\n\n- Now, we will create the *receive* connection.\n\n - Go back to the "App Store" in Alby Desktop. \n - Find Stacker News again and click "Connect".\n - Change the name to "stacker news receive"\n - This time, don't select "Full Access". Instead, select "Custom."\n - Enable the following: "Read your node info", "Lookup status of invoices", "Create invoices". (This may not actually be the minimum requirements, but I found that if you **just** do 'Create invoice', you will get an error on SN.)\n\n ![](https://m.stacker.news/57505)\n\n - Get the pairing string and paste it in "Connection for receiving" in Stacker.News.\n - As a test, set your autowithdraw limit to something under your current SN wallet amount.\n - Click "attach".\n\nCongratulations! You should have successfully attached your Alby Wallet to SN via NWC. Your sats should withdraw automatically within a few seconds.\n\nI hope this is helpful to any newbies and non-technical folk who were feeling too intimidated to set up and attach a LN wallet.\n\n## References\n\n- @DarthCoin's guide on AlbyHub: https://stacker.news/items/701233\n- @supratic's guide on attaching wallets via Alby/NWC: https://stacker.news/items/698497\n\n \N 21829 \N 442367 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 17.5925424060493 0 \N \N f 61082768 \N 1 119005584 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443528 2025-03-19 12:02:29.811 2025-03-29 22:39:47.087 SLP551 What’s Next for Bitcoin and Mutiny Wallet with @benthecarman \N https://stephanlivera.com/episode/551/ 12566 \N 443528 \N \N \N \N \N \N \N \N crypto \N ACTIVE \N 11.0460660680306 0 \N \N f 488900414 \N 3 51871768 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:32:45.354 f \N \N \N 0 0 0 0 3 0 0 422481 2025-03-02 13:18:41.593 2025-03-29 22:39:47.087 Orange Pill Diaries: The Lebowski Brothers ![fear](https://imgprxy.stacker.news/o4zhEDE-5AX81vwtk99f_dAOtHelKmKMzTeXVSz3-Ng/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy9iL2I2L0h1bnRlcl9TLl9UaG9tcHNvbl9hbmRfT3NjYXJfWmV0YV9BY29zdGElMkNfTGFzX1ZlZ2FzXzE5NzEuanBn)\n\nHunter S. Thompson and his Lawyer Oscar Acosta, Las Vegas, 1971\n\n***The events described below are mostly true. Names and locations have been altered in some cases to protect the identity of those involved. Assume any illegal actively is purely fictionalized***\n\n### The Dudes\n\nWhen I arrived at his house the Little Lebowski was sitting out on the back deck. It was noon, but there were already three empty Stella bottles lined up to his right with the labels partially peeled off. He was working on number four. I hoped he wasn’t driving us to lunch. My old college roommate, the Big Lebowski, came out through the back of the house and handed me a joint. I wondered why I agreed to meet these guys. I guess I assumed that things were different now that we were all senior citizens. Nope.\n\nTheir family and friends call them the Lebowski Brothers for obvious reasons, though neither one resembles Jeff Bridges. Big is tall, maybe six foot one or two. He’s got wide shoulders, with some muscle on him. He would be intimidating, except that he has the face of a gecko. An actual gecko. You know, goofy smile, bulging eyes. Big was a housemate of mine during our senior year in college. We all liked him, but he kept pretty much to himself. He was kind of a loner. I know what you’re thinking. No, he did not turn out to be a mass murderer as far as I know. I met Little briefly back then too. He crashed on our couch rent free for a while. During the day he pretended he was our father. He lectured us on the importance of a clean living environment. When the sun went down and the party started, we had to convince him that it was NOT a good idea to burn down the house. He is much shorter than his younger brother, with “the build of a welterweight”, as he liked to say. He claimed to have been some sort of boxing champion in the army. I don’t remember the details.\n\nBig moved to Denver thirty years ago. He was back on Long Island to celebrate his brother’s 68th birthday. I make it a point to meet with old friends now that I’m retired, so I accepted this lunch invitation to relive younger days. \n\nLittle lived out in the Hamptons. I looked around the property. Pretty fancy place. I wondered how he could afford it. He is a retired Bronx public high school teacher and an avowed socialist. I doubted many of his fellow travelers were living like this. Big read my mind: “He got this house when he and his third wife divorced. Now he lives here with number four.” Little just sat there expressionless. Big explained that his financially successful ex-wives were more than willing to pay him off if he would just leave. Number four was on a business trip and wouldn’t get back home until tomorrow. Little now had a long beard and a ponytail, but he otherwise didn’t look that much different than when I knew him forty something years ago.\n\nWe brought each other up to date on our lives. More beers appeared. Another joint was passed around. I wondered when you get too old for this shit. I guess when you’re dead. Little was always a bit of a Don Quixote character. He told us that he wants to run for Congress and wanted political advice from me. Why me? I have no clue. I just nodded. Big was a Denver High School history teacher. He was in the process of retiring. He talked about his pension. The potent weed caused him to confuse some figures while discussing years of service calculations, but it didn’t matter. We weren’t paying attention. \n\n### Siggy’s Words of Enlightenment\n\nThen they asked about me. I spouted my well rehearsed retirement story. When I was done, they looked glassy eyed and as uninterested in my story as I had been in theirs. There was a lull in the conversation. I had recently promised myself that I would try to orange pill everyone I met, but I thought it was completely pointless with these two. Still, I gave it a shot. I launched into my bitcoin pitch. Big rolled another joint and gave me an astonished look. “Siggy, no offense, man, but, like, I think you lost your fucking mind, man. That shit’s a scam, man.” Little was leaning over a little to his left and seemed more focused on maintaining his equilibrium than listening to us. I pressed on. I picked up steam. I was throwing out terms and connecting concepts left and right. Pristine asset. Scarcity. Decentralized network. Proof of work. You name it. They both turned to look at me. I was on a roll. The words flowed like fine wine. Slowly I got their attention. I started imagining myself as a more eloquent combination of Szabo, Antonopoulos, and Saylor. I was a legend in my own mind. I could feel the excitement at the table. It was working. I’m glad no recording exists of my little performance. I knew deep down that my monologue was incoherent, but they didn’t care. The marijuana was now talking. We were thinking as one. Or, more accurately, like three idiots. They shared my enthusiasm. They understood bitcoin. I pulled out my graphene pixel (now I’m bragging) and showed them my Phoenix wallet. I explained that I would treat them to lunch if we could only find a restaurant that accepted bitcoin. Little snapped to attention. \n\n“My friend Bobby will take bitcoin, man. He’s got a seafood place right in town.” I was pretty surprised to hear this. He misunderstood my reaction. “Don’t back out man, you’re treating.” I assured him that I would happily pay for lunch if the restaurant accepted bitcoin. I was skeptical. “Are you sure he takes bitcoin?” \n“Look, man, I eat lunch there like twice a week. He’s my friend.” I still had my doubts, but it was worth a shot. \n\n### On The Road\n\n![neal](https://imgprxy.stacker.news/_uqmBKpw2LY_kk_azCMNu1H5KGBSPPz4nom_YnB9Qv8/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy84Lzg5L05lYWxfaW5fdGhlXzE5NjAlMjdzLmpwZw)\n\n***Neal Cassady, 1960s***\n\nThe brothers were energized. My bitcoin speech must have inspired them. Or, perhaps, it was the beer and weed. Little would drive us in his 20 year old Ford Explorer covered with bumper stickers supporting lefty causes. A side window was broken. There was also this brownish stuff caked onto the front windshield and wrapped around the wiper blades. Little saw me looking. “Yeah, fucking cop. He’s my neighbor. He thinks because he’s a cop he can play his music loud all night. The other neighbors are scared of him. I told him to turn down the music, man.” Apparently the offended neighbor has now made it a point to get revenge on Little. Every week or so his car is mysteriously damaged. Tires get slashed. Windows get broken. One morning he found a dead squirrel cut in half with the entrails smeared into the windshield wiper compartment. Little hadn’t fully cleaned it off yet. He plans to set up surveillance cameras to catch the cop in the act. Someday.\n\nI was so distracted by my orange pilling success that I never considered the wisdom of letting this guy drive. I climbed into the back seat, but had to dump empty water bottles and fast food wrappers on the floor to be able to sit. There was an unpleasant odor I couldn’t identify. The car was beat up and outdated, but there was nothing wrong with the sound system. Little started the car, pressed a few buttons on the radio, and announced “King Fucking Crimson, man!” He turned it up loud. Really loud. I wondered exactly how I had gotten myself into this mess. I had visions of a geriatric Wayne’s World as Big bobbed his head in the passenger seat.\n\nLuckily it was a short drive to the restaurant. It was a typical South Fork seafood place. Everything was blue. Fake lobster traps everywhere. Big was all excited because he can’t get fresh fish in Denver. I didn’t tell him that he’d probably be eating frozen fish shipped from Nova Scotia. I searched the front door as we walked in for the unlikely bitcoin sticker. No luck. \n\nLittle asked the receptionist if Bobby was here. She looked puzzled but ignored him and showed us to a table. As soon as we sat down Little asked me if I had enough bitcoin for a few cocktails with lunch. I assured him that I did. \n\nThe first round of drinks arrived and we checked the menu. Big settled on the spicy crab cakes. I chose the blackened shrimp tacos. Little wanted to hear the specials. After our waitress finishing describing the various offerings and the Catch of The Day, Little ordered chicken tenders. This did not please Big. “What the fuck, man?” he inquired in a far too loud voice. The adult onset hearing loss didn’t help. I felt all eyes in the place turn towards our table. “What are you, a fucking five year old? You’re a grown fucking man, ordering chicken tenders in a seafood restaurant?” The waitress backed away from the table. I stared at something on the floor. Little responded with a clever rejoinder: “Fuck you!” \n\nI tried to calm them down. The waitress left to fill our order. Little put his elbows on the table and leaned towards us. He spoke in a low voice. “I think she likes me. Did you see how she was looking at me?” This really got Big going. “Who, the waitress? What are you, an idiot? She’s young enough to be your granddaughter.” Little was undeterred. “I’m going to ask her for her phone number.” Big looked at me. “He’s married. I can’t take this guy, even for a week. I can’t wait to go home.”\n\nThe food arrived and we began eating. Big was disappointed. “These crab cakes are spicy.” I was confused. He had ordered the spicy crab cakes. Little couldn’t resist. “Should have had the chicken tenders.” This sparked more brother to brother verbal combat. I stayed out of it and ate my tacos. At one point the waitress was summoned again for another round of drinks. \n\nFinally, everyone was done eating and drinking. I had forgotten all about paying with bitcoin by now. I just wanted to go home. Little, however, still wanted his free lunch.\n\nHe called over the waitress. “Darling, could you ask Bob to come over to our table for a moment?” The waitress glanced around the room. “No Bob works here.” Little was indignant. “Of course he does. He manages this place.” She kept calm. “Sir, I’m sure no Bob manages this place. Christine is our manager. I can get her for you if you like.” Little sat back in his chair, then slowly looked around the restaurant. He stared at Big and me accusingly. “Wait a minute. This isn’t Bob’s place!” He appeared to be somehow holding us responsible for this mishap. Big started yelling at him again.\n\nChristine the manager came over, along with a busboy. “What seems to be the problem here?” Little took over. “Ma’am, my friend Siggy here wishes to settle our bill with bitcoin.” She was in no mood for this. “We don’t accept bitcoin. Cash, credit or debit card only.” I reached for my wallet. Just then, the bus boy called towards a well dressed older gentleman standing near the entrance to the kitchen. He was speaking Spanish. Then the three of them huddled by the receptionist station, but I couldn’t hear a word that was said. The busboy then approached me. He just said “Walking” in a heavy Spanish accent. I had no idea what the hell was going on. He beckoned me to get up and follow him. It dawned on me that I was getting kicked out of the restaurant. This was ridiculous. I was the peacemaker. The most polite guy at the table, trying to calm these lunatics down. \n\n### Bukele Saves The Day\n\n![flag](https://imgprxy.stacker.news/fM-NvwhMr6mor-gA_sVj_CQA8EK_mzGr0uKlnO1aXjY/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy9mL2ZiL0ZsYWdfb2ZfU2FuX01pZ3VlbF9EZXBhcnRtZW50LnBuZw)\n\n\nI realized that he was leading me to the kitchen. He kept saying “walking”, which was strange, since I was walking. He pointed to a man in the corner who was opening the steaming industrial dishwasher to unload some plates. We walked over to him. The busboy got the guy’s attention, and then they spoke a little in Spanish. I caught a word or two I learned during high school. The busboy poked the guy in the chest with his index finger, and once again said “walking.” I finally understood. “Ahh! Joaquin!” I understood. They both smiled. We stepped into a corner. Joaquin looked at me. “Guhzhob?” he said. I pulled out my favorite Spanish word. “Que?” I asked him to repeat himself. “Guhzhob?” I had no clue what he was trying to tell me. He reached into his pocket and opened an app on his phone. “Yes! Cash App!” I was so happy. Finally, something went right. I patted Joaquin on the shoulder. He patted me on the shoulder. We smiled. We laughed. He spoke to me in Spanish. I caught exactly three words: “Bukele”, “Salvadoreno”, and “Teep”. \n\nNow another group huddle formed that included Joaquin, the busboy, the older well dressed guy, and Christine. I awaited the verdict. They spoke for a few minutes. Then Christine walked over to me. “Okay, Joaquin will accept your payment in bitcoin and then settle up with the restaurant. But, you have to tip him twenty five dollars in bitcoin for his trouble, and the waitress must be tipped in cash.” I was getting squeezed, but I figured what the hell. I had come this far, and I didn’t want everyone to think the bitcoin man was a cheapskate. So, I agreed.\n\nI returned to our table to share the good news. The brothers were very happy to hear they wouldn’t be splitting the check. Little even agreed to pay the waitress her tip in cash. He wanted to talk to her some more anyway. There was one final glitch. Cash App does not support the lightning network in New York. That meant we would have to wait around for the transaction to be confirmed. Little wasn’t bothered by this at all. \n\n“No problem, man. We’ll just go to the bar. One for the road. My treat.” \n\nI considered explaining that “One for the Road” wasn’t really a thing any more, with, you know, drunk driving laws and everything, but what was the point?\n\nAgainst all odds, everything went smoothly from then on. I was happy, the brothers were happy, Christine was happy. Joaquin was happy. All in all, it was a good day.\n\nI got home pretty late that night, but my wife understood. It’s not the first time I had lunch with old friends. \n\nI learned a lot that day. I made some mistakes. I took some chances. \n\nOrange pilling can be tough, but somebody has to do it.\n\n\n \N 21540 \N 422481 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 9.87151423010388 0 \N \N f 348955395 \N 3 61397168 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436213 2025-03-13 11:41:52.601 2025-03-29 22:39:47.087 MicroStrategy’s Speculative Attack It’s becoming clear that MicroStrategy has no plans to stop buying Bitcoin, and is able to source plenty of dollars from investors to increase their holdings. It’s also clear that they’re accelerating their purchases and are piling on to the incredible ETF demand we’ve been seeing lately, pushing Bitcoin prices higher (thus dollar prices lower).\n\nNow there is [chatter](https://finance.yahoo.com/news/jpmorgan-bitcoins-surge-could-raise-044458790.html) that Bitcoin’s price rise may be interfering with inflation targets at the Fed, lowering the likelihood of rate cuts this year.\n\nSurely there are lots of dollar holders and government officials who are unhappy about this, and want to paint Bitcoiners as the villains in the battle to return to 2% inflation.\n\nWe all know this line of reasoning is wrong, but that has never stopped people from attacking Bitcoin in the past.\n\nSo… let’s entertain a hypothetical situation here. Imagine you are a government official tasked with stopping MicroStrategy, Tesla, BlackRock, and others from buying more Bitcoin because you’ve realized it’s hurting the dollar.\n\nHow might you approach this challenge without putting the financial system or the smooth functioning of capital markets in danger?\n\nBonus sats for creative answers! \N 16660 \N 436213 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 16.3582796147382 0 \N \N f 660397795 \N 4 108693027 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:09:34.543 f \N \N \N 0 0 0 0 2 0 0 446535 2025-03-21 10:40:02.658 2025-03-29 22:39:47.087 Large lightning vulnerability concern \N https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2023-October/022032.html 629 \N 446535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0396061522008 0 \N \N f 0 \N 0 35540110 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 446964 2025-03-21 14:51:48.112 2025-03-29 22:39:47.087 Taking a sabbatical from Bitcoin FOSS Taking a sabbatical from Bitcoin FOSS from an undermined period of time. I won’t review or make code contributions to bitcoin core anymore neither the lightning dev kit and decline future coredev invitations. I don’t have the interest to keep being involved, though in practice I’ve not been very active there recently so things won’t change a lot.\n\nTwo main reasons behind this decision:\n\na) The open feud with some people at Spiral and Chaincode, whatever significant are their contributions to bitcoin. Those people had my trust and confidence, they broke them and I’m not Mother Teresa. This has been ongoing since almost 2 years now, I guess this will take as long or even more to solve and I prefer to allocate the best of my time and energy to arrange a resolution satisfying everyone. Long-term principles at stake concern every other open-source dev.\n\nb) Focus on the growth of my business activities. More and more clients demands coming, their projects are growing and this ask for more and more of my attention. Long-term, when the market is more mature, I’m aiming to build my own hedge fund company and reach the $100m or $1b of personal wealth milestone (after all if you’re working on bitcoin FOSS you might be targeted by $$$ adversaries like a man who pretends to be satoshi, and you have to in measure to defend yourself in consequence). Reaching this level of FU money will be without doubt hard and take 10 to 15 years. This is deeply fulfilling to dedicate oneself to move the society forward by working on bitcoin open-source or serve the public interest. All that said at some point in life it’s good nurture its own private interests and seek a better equilibrium.\n\nAbout lightning, I believe I consistently made my technical opinions on the state of infrastructure and the implementations quite vocal. There is a significant stack of systemic risk affecting the networks, addressing all of them in a robust fashion might take a decade or two. In the meanwhile, all the end-users and lsps funds are quite exposed to be powned or continuously DoSed. I think the reality is the most active players of lightning infrastructure development are VC-funded, have low-term time horizons and in competition to attract as much users as they can, even with safety workarounds.\n\nTherefore I’m not confident there will be an acceleration of mitigations development before we see massive security hacks in the wild over the coming years. Or even worst that the lightning community goes the easy road of relying on trusted third parties to solve security issues and swallow the bullet of a centralized and permissioned network.\n\nAbout bitcoin base-layer, I’m more optimistic. The technical foundations are solid, there has been a crazy amount of work put to harden the bitcoin core codebase, existent exploitation if any ask from a very high technical bar and high-level of attackers capabilities and ressources. The current team of contributors is competent, seasoned and dedicated. Yet the technical state of the mempool, the nurturing of a sane blockspace demand market and sufficient long-term reward of miners hashrate production should be a worry in every bitcoin’s mind, in my humble opinion. There are few other systemic risks to be aware off (e.g advances in quantum computing), though overall the robustness of the system is reasonably okay.\n\nI’ll keep an eye on consensus changes and sometimes keep doing edge security research, more as a personal challenge to stay performant and competent. Beyond I pray the bitcoin community to not expect more open-source contributions from my side. I know there are some personal projects and great technical ideas I’m leaving in an open state. With luck, some smart people will find a technical interest in them and carry forward. If I did promise you a review on one of your PRs and I have not done so, feel free to bump me privately, I’ll have a look. As said elsewhere, I’ll still finish the transmission on some lightning issues, by loyalty towards some people there. Though as one of my bitcoin core peer often told me, “bitcoin needs you, more than you need bitcoin” and today I’m acting in consequence.\n\nI hope the ecosystem will be able to attract and retain future security and protocol designs talents in the future, nurture a better culture for them and that way keep bitcoin alive. Yet it is good to be conservative, diversify your financial portfolio, personal skills and professional interests as a hedge if the bitcoin experience would come to fail or stagnate to a point where it lost the properties of a peer-to-peer electronic cash system.\n\nCheers,\nAntoine \N 5775 \N 446964 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 23.7692663050926 0 \N \N f 336814796 \N 3 4121858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 10:54:02.311 f \N \N \N 0 0 0 0 1 0 0 442904 2025-03-18 21:46:15.204 2025-03-29 22:39:47.088 What are you thankful for? Happy Thanksgiving to everyone celebrating, we figured this was a good time to reflect and ask what you're all feeling thankful for today... \N 13042 \N 442904 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 27.1750670548506 0 \N \N f 769219727 \N 8 50759527 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:45:11.923 f \N \N \N 0 0 0 0 5 0 0 456855 2025-03-27 23:10:54.532 2025-03-29 22:39:47.087 How I started working in the Bitcoin mining industry When I started working in mining for Kaboomracks a few years ago, I had no experience in the industry. I had followed Bitcoin closely for years, and wanted to work more closely on things that I was passionate about. I had been going to college, but dropped out when they locked things down and closed the classrooms. \n\nI got a chance to start turning screwdrivers on S9s for almost no money a couple days a week. That lasted for a few months of me driving a couple hours to a different city and sleeping in my car. I really enjoyed the work and quickly picked up more responsibilities around the company including a marketing position which allowed me to work from home as well as the couple days in the office. \n\nFrom there, I eventually transitioned into a full time sales roll. It was a fun progression, and I think it was really helpful for my current role to have spent so much time working in the warehouse on these computers that I now sell. \n\nA lot of people want to start working in the industry which is exciting. Bitcoin related companies are starting to make some money again as the market turns around, and are hiring again. It's a difficult time to get a job in the mining industry due to the proximity of the halving. After the halving, when mining profitability is likely to increase, it may be a better to get employment. \n\nFinding a job in the industry is similar to knowing when to buy miners. You want to buy miners right at the start of the bull market. Getting hired in the peak of the bull is fun, but if you get hired at the top, you're likely to get cut in the bear market just to the insanely brutal economics of this industry. \n\nA lot of jobs in the industry are software developers, etc. If you don't have a skillset like that, you can try to develop one or you can put effort into skills that come naturally to you. For me, I've done a lot of writing as well as video, graphic design, and some web based stuff. All of those directly translated into what I do today. \n\nGetting your foot in the door at a company you think you would like to work for, in this industry is great way to try and get the job you want from what I've seen. It's a super small industry and is about to explode in size when the bull really takes off, which means there will be ample opportunity for upward movement within many companies. \n\nThere are definite perks of working in the industry, but there are also definite perks of working outside of it. Individuals should not discount a good paying fiat job, and the freedom being able to secure a ton of Bitcoin could allow you. \n\nTo summarize, I stumbled into to what I do and really enjoy it. Having a real interest in Bitcoin definitely helped me secure the job. \N 16830 \N 456855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3564153376254 0 \N \N f 0 \N 0 198081248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423071 2025-03-02 23:41:16.834 2025-03-29 22:39:47.087 Wife's Cancer Diagnosis (Part #4) [Part 1](https://stacker.news/items/423124)\n[Part 2](https://stacker.news/items/434440)\n[Part 3[(https://stacker.news/items/444102)\n\nIt's been 3 weeks since I last posted an update and am really touched by people reaching out here. \n\nThe situation right now is that we are in the "good week" - end of one treatment cycle and getting ready for the next. Wife is at the gym right now. I'm trying to stay focused at work, get things in order for next week, which will be the "bad week" (we are on 3-week cycle, so starts bad and slowly gets better, until the end when she is basically acting totally normal)\n\nThis is a bit more of a bullet-point post, as I've been collecting my thoughts and feelings as the time has gone on:\n\n- The impact of the first treatment was a bit harder than we expected. Day 0 was fine. Day 1, she went to the store during the day with her mom, but was fatigued. Day 2 she was in bed most of the day, either feeling nauseous or sleeping. I felt the real impact in the morning, trying to get the kids out the door and managing work. This was a day when usually we are both up and managing the kids, as it's one of the days when both kids have somewhere to be in the morning. I took some unexpected time off work throughout the week. Nothing major, but thankfully my project is running smoothly with me popping in and out. \n\n- It's been really interesting to observe who in our life has reached out, who has not. Nothing good or bad about it. Some unexpected people have been really generous with time, gifts, etc, and there have been others who have not communicated. Everyone dealing with the news in their own way. People have setup a meal train for us, which brings a lot of relief around making dinner for the kids and having food available. \n\n- There have been lots of ups and downs throughout this, and will continue to be. To me, it often feels like life is normal and then I'm brought back to reality. Having a regular day and then some test results drop and we go into a tailspin. For my wife, it has been much less normal, as she is the one who has been sick, in bed, etc. \n\n- During the days when I'm doing all the household upkeep, I found the easiest thing is to make sure I'm always doing something - wrangling the kids, checking on wife, prepping food, folding laundry, doing dishes, making food, doing work ... \n\n- As things progressed from the bad days into better days, I found that I was really tightly wound and wasting a lot of time, looking at Nostr, actually just staring at my phone for no reason, feeling a bit lost - there is so much to do and yet it feels easier to not do anything than to do 1 thing in an endless list. This feels okay to a point, I do need to relax my brain, find outlets so I am not just working or dealing with household upkeep. \n\n- I am definitely out of the groove that I was in during January. I had been going to bed on time, fasting, and hitting 5:30 gym no problem. Now I’ve been up late many days and struggling to get out of bed. \n\n- Haven't been drinking but started on THC again. I think it makes the chaotic evenings better with the kids (I am more fun, less critical of them) but should stop using it at other times... \n\n- I've been randomly screaming. Sometimes it's words, sometimes it's just sounds. Thankfully only happening when I am home alone or in my car, but it a good release, hopefully not me going crazy. \n\n- We actually stayed out of town in a small cabin for ~48 hours this weekend. Was a lot of effort for a 1-day getaway but was good to have the family time away from the house. \n\nThat's all I have for now. Will add more if I think of anything.\n\nIf anyone has any questions or I can help anyone facing similar situations, please let me know. \n \N 20924 \N 423071 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4167861621791 0 \N \N f 108701222 \N 1 2334356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410595 2025-02-20 14:57:11.93 2025-03-29 22:39:47.09 Bitcoin in Guatemala: An honest live report. *Episode VII. Block height: 787000. An inefficient banking system. A huge unbanked population. Bitcoin mining with cooking oil. A grassroots movement. All about Bitcoin adoption in Guatemala.*\n\nOriginal post: https://carlbmenger.substack.com/p/bitcoin-in-guatemala\n\n- **Capital**: Guatemala City - President: Alejandro Eduardo Giammattei Falla - Currency: Quetzales Shitcoin (Since 1925) - Population: 17 million - Official language: Spanish - Time zone: UTC-6.\n- **Visa requirements**: Europeans and U.S. citizen receive a visa for a max stay of 90 days at arrival. An extension of 90 days can be requested at the immigration office.\n- **When to go**: The weather in Guatemala consists, simply put, of a dry season and a rainy season. The dry season starts in October and lasts until the end of April. From May to October, increased rainfall is to be expected.\n- **Visiting from El Salvador**: According to an Agreement between El-Salvador, Nicaragua, Guatemala, and Honduras visa holders, regardless of nationality, can travel to each of these countries without obtaining a new visa. This means that if, as a European, your first country of entry is El Salvador, and you travel from El Salvador to Guatemala, your visa will also be valid for 180 days instead of 90. \n- **Using Bitcoin**: To be able to use Bitcoin, a steady internet connection is needed. You can buy a Guatemalan Sim card (Claro or Tigo) on almost every corner of the country for about $10 per month.\n\n![Bitcoin Lake](https://i.postimg.cc/Kj5v307k/9-A97-F19-F-29-A0-4-FF1-A06-A-6-BD8-F17510-E5.webp)\n\nAs you all might know, the last Episode was about my Bitcoin journey in El Salvador (https://stacker.news/items/161607), where I stayed for quite a while. During that stay, I had numerous conversations with Bitcoin plebs, some of whom told me about advanced Bitcoin adoption in Guatemala. So, neighboring Guatemala contrasts state-led Bitcoin adoption with a promising grassroots model? I mean, 'Don't trust, verify' right? Sure, I needed to check it out myself and don’t be one of the many whiny Gold bitches who complain about Bitcoin adoption while sitting in their AC offices. Am I right, Peter?\n\nThe great curiosity that grips me after spending more than a month in El Salvador, and leaving it behind, is to try to understand why people adopt Bitcon on a broader scale without Bitcoin legal tender laws. What are the reasons and what drives this adoption. Just as I covered my events in El Salvador, I'll also try to share an honest first-hand experience about Bitcoin adoption in Guatemala. A lot to cover, so let’s dive in. \n\n## Overall situation \n\n### Safety\n\nRight away, It’s very safe to travel in Guatemala, but you don't feel quite as warmly welcomed as in El Salvador, to be honest. I suspect that's because Guatemala has risen to a tourist hotspot in recent years, which increased the cost of living for citizens tremendously, and not all Guatemalans are in favor of this development. That’s what you feel, especially in the more touristy places like Antigua. Nuns are an exception, that’s the reason I am now stacking with God's help, orange-pilling people around the globe regardless of their heritage. Hallelujah: https://twitter.com/carlbmenger/status/1629339831359741953?s=46 \n\n![Halleluja](https://substackcdn.com/image/fetch/w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F709b0b48-a883-4e26-b392-b8517526d6c8_1202x1710.png)\n\n### Public Transport\n\nPublic transport is not quite as convenient as in neighboring El Salvador. A reason for this is that Guatemala is about 418% larger than its little neighbor. Because of the much longer travel distances, and the somewhat more unfriendly situation overall, it is very often easier to book a shared shuttle (1-2 days in advance) that takes you together with other travelers to your destination. From El Salvador (Santa Ana or El Zonte/El Tunco) for example, you can book a shuttle ($20-$30) directly to Guatemala City or Antigua, which takes about 4–5 hours.\n\n### Boarder crossing\n\nThe border crossing with El Salvador is fast and without bureaucratic effort, because your visa from El Salvador is also valid in Guatemala. According to the CA-4 Agreement between El-Salvador, Nicaragua, Guatemala, and Honduras, visa holders of these countries regardless of nationality can travel to each of these countries without obtaining a new visa. Hack: it makes more sense to enter El Salvador first, and then travel to Guatemala afterward, because then your visa will be valid for 180 days instead of 90. \n\nWith those organizational things said, we now dive into the heart of this episode: The Bitcoin adoption.\n\n## Bottom-up\n\nGuatemala has no Bitcoin legal tender law, thus no one is forced by the government to accept it as payment. It is all the more exciting to see how numerous companies decided to accept Bitcoin voluntarily and without government coercion. This is exactly the development that many Bitcoiners envision as the ideal path of Bitcoin acceptance. Bitcoin as a freely accessible, decentralized network that anyone can join, but no one has to. Where people use Bitcoin because they understand that it is superior to government-issued paper bills.\n\nThat said, no, you cannot pay with Bitcoin everywhere in Guatemala. Bitcoin adoption is still in its early stages, yet more developed than in many other countries. What are the reasons for this? Why does Bitcoin adoption seem to be working bottom-up in Guatemala?\n\n### Banking fees\n\nIn my humble opinion, one of the main reasons for the increased Bitcoin adoption is the very inefficient, slow and expensive banking system. It is important to know that in Guatemala, unlike many other countries, banking fees are up to 10% per transaction. These fees are usually passed on directly to the consumer, i.e. Thus, If you want to pay by card, between 5% and 10% are added to the price in form of fees.\n\nNow, of course, you could decide that instead of paying with a card, you would simply exchange the fiat currency you brought with you into the local currency, Quetzales, and pay in cash. At least that was my plan for places that don't accept Bitcoin, which didn't work out quite as I had imagined, to say the least: I had a few euros with me, and I discovered a couple of banks that exchange euros for Quetzales. So I went to Bank Industrial, one of the largest financial institutions, and exchanged 200 euros "without fees". However, I paid for it with the exchange rate, which was a full 20% below the official rate. A real rip-off. Burn in hell, Fiat! https://twitter.com/carlbmenger/status/1627765146734022681?s=46\n\n![Hate Fiat](https://substackcdn.com/image/fetch/w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F518ac08f-720f-4db9-99dd-8614985ac571_1202x1772.png)\n\n### The Unbanked\n\nApproximately 60% of the adult population doesn't have access to formal financial services. Although the exact reasons for the large number of unbaked is unclear (probably the tremendous banking fees), one thing can be said with certainty: Bitcoin fixes this: As in El Salvador, almost everyone has a smartphone and internet availability is decent. Bitcoin is a monetary network that is accessible and open to anyone. When coupled with the Lightning Network, it is very cheap to send money around the globe, decentralized and in a blink of an eye.\n\nA striking similarity to El Salvador is the high share of remittance payments on the GDP. Recent numbers show that almost 20% of GPD goes back to remittance payments, where Bitcoin is a strong alternative to the expensive fiat providers like Western Union, that charge very high fees. Although not many people are likely to receive their remittance payments in Bitcoin in Guatemala at present, this represents a great potential for growth in the future.\n\n### The Expats\n\nAnother reason that contributes to Bitcoin adoption in Guatemala is the large number of expats from the West. Especially in and around Antigua, much of the businesses, as I perceived it, belonged to expats from Canada, US, Australia and/or Europe. Most of them are not interested in paying high fees, or see it as a service to their customers to provide alternatives. I noticed that many of those companies have resorted to Osmo Wallet for Bitcoin acceptance. As a result, I contacted Piero_coen on Twitter (https://twitter.com/piero_coen), and he explained to me that he supports interested companies with the integration. Reach out to him if you need help with accepting Bitcoin payments in Guatemala.\n\nOf course, the huge influx of foreign investors and people who would like to emigrate from the West can have negative consequences, such as increased cost of living, displacement of the population from city centers, etc. For this reason, it is even more important to involve the local population in the progress. And what better technology to do that than Bitcoin? No matter where you're from or how much capital you have, you just need a wallet and you're ready to transact with others. Of course, for all of this, education is the fundament on which everything else is built. This is why Bitcoin non-profit organizations are so important.\n\n## Non-profit organizations\n\n### Bitcoin Lake\n\nAs in many other countries, Bitcoin adoption in Guatemala is driven by voluntary, non-profit projects. Using Bitcoin Beach in El Salvador as an example, another grassroots movement has emerged in Guatemala, called Bitcoin Lake (https://twitter.com/LakeBitcoin/status/1555286508579557378), to substantially advance Bitcoin adoption. Located in Panajachel, Guatemala, Bitcoin Lake launched just over a year ago. The project aims to create a circular economy powered by Bitcoin. Supported by Bitcoin Lake, more and more companies are adopting Bitcoin around Lake Atitlán, which I noticed especially in the small lakeside community of San Marcos. In addition to numerous supermarkets, coffee shops and restaurants, there is also a Bitcoin ATM where you can exchange Quetzales for Bitcoin and/or vice versa, without any fees for buying Sats: https://twitter.com/carlbmenger/status/1629832337377710082?s=46\n\n### Kaboom Bitcoin Mining\n\nAnother project at Lake Atitlán created a circular Bitcoin economy and is using resources that would otherwise be wasted to fuel a local Bitcoin mining operation, giving its resident financial autonomy and demonstrating a viable economic path outside the government-controlled economy. The cooking oil that is used to mine Bitcoin would otherwise be thrown out into the street or find its way to the landfill, which sits several hundred feet above the Lake. Thus, the Kaboom Bitcoin mining project is the result of a desire to help clean the lake while providing a source of continuous income to the community.\n\n![Bitcoin Mining](https://i.postimg.cc/HWSLmhLR/D4-DB2-CC1-2-E10-4-A5-C-AD47-911-A4-B4-FEFEF.png)\n\n### Mi Primer Bitcoin\n\nAs I mentioned in my episode on El Salvador, Mi Primer Bitcoin (https://miprimerbitcoin.io/en/my-first-bitcoin/) is also active in Guatemala. The educational projects have been a great success. Centro Educativo Josué (https://twitter.com/centrojosue), Guatemala's first school to receive the Mi Primer Bitcoin course, has provided its students with an exceptional understanding of Bitcoin. At this local school, students learn about Bitcoin, its value, and its ability to solve problems like inflation. Students who take the course graduate with a Bitcoin diploma in which they must create a wallet, recover it on another device, perform an on-chain transaction, find the transaction in the blockchain explorer, and explain why the transactions can be considered final. So, after completing the Bitcoin Diploma, students will have a practical understanding of Bitcoin and how it works.\n\n### Bitcoin Accepted\n\nYou may be wondering how to find businesses that accept Bitcoin in Guatemala. Of course, you can recognize them in the classic way by a Bitcoin sign on the outside of the stores. In addition, some non-profit organizations have created their own Bitcoin Maps, which simply show you all the businesses that accept Bitcoin on an interactive map. My two favorite maps are the ones from Bitcoin Lake (https://bit.ly/40WyqX6) and from Bitcoin Beach (https://www.bbw.sv), which are integrated into their Lightning Wallet.\n\n## Spend and Replace\n\nThis also brings me to my last point, and I raised it already in my article about El Salvador. Yes, ‘HODL’ is important and right, but to drive Bitcoin adoption, we have to start spending Bitcoin at some point. Why should people accept Bitcoin when no one is paying with it anyway? So my new principle is SPEND and REPLACE. After a while of hodling, spending Bitcoin may feel a bit unusual at first, but trust me, it's fucking nice after a while, thinking of transacting without a centralized intermediary and without coercion of the state. I mean, Bitcoin was created to be used and not to be stored in some (virtual) vault until you are dead, like gold. Fix the adoption dilemma: SPEND and REPLACE Bitcoin.\n\n![Spend and Replace](https://i.postimg.cc/kgPPPQWL/FF6-CEB7-E-20-B4-48-CD-88-CE-2-AB8-AB43-FA18.jpg)\n\n## The End\n\nThat's it for this episode. Hopefully, you could gain some valuable knowledge about Guatemala and the current Bitcoin situation. If you are planning to visit El Salvador, definitely check out Guatemala as well. It has made tremendous strides in promoting a circular Bitcoin economy. I encourage anyone interested in supporting adoption and experiencing the beautiful views, culture and hospitality to visit Guatemala. Get some sun and spend some sats, so what are you waiting for?\n\nI see you hopefully in the next one. Until then, remember: Education matters. ₿ critical, ₿ informed, ₿ prepared.\n\nYours,\n\n![Carl B Menger](https://substackcdn.com/image/fetch/w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F5589d578-73d1-4077-9870-30af219effe0_808x163.png)\n\n## Stay tuned:\n\nSubstack Newsletter: https://open.substack.com/pub/carlbmenger?r=cvmtq&utm_medium=ios\nFollow me on Twitter: https://mobile.twitter.com/CarlBMenger\nBe a Node on NOSTR: https://damus.io/npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n \N 18270 \N 410595 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 22.5545800567237 0 \N \N f 143462787 \N 2 154771071 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430824 2025-03-09 12:55:01.064 2025-03-29 22:39:47.09 Build around the banks, do not join them! -- Toxic Rant #2 As we round the corner into 2024, a year that could be huge for bitcoin in many ways, I think it is important to remember that banks are not our friends. Traditional finance are not our friends. The governments of the world especially are not our friends. Bitcoin is an entire separate thing that transcends human control. Humans like to imagine that they have control over things that they actually do not. Insane people have this trait, and it is insane people that tend to aspire to positions of power. This is not coincidence.\n\nThere are businesses that seek to form unholy pacts with these institutions in the lower domain fiat world. Traditional banking is seen by some to be a required conjunction with bitcoin. I would like to reaffirm the fact that this is a misguided notion. Bitcoin cannot coexist with traditional institutions. We see some are trying, but some are also laying down completely ignorant and insane edicts such as nO mIxInG sErViCeS. Let's be clear, to them a mixing service is any transactions with more than 2 inputs and 2 outputs. They have no idea what they are talking about. Yet, we see "bitcoin companies" bending the knee at every turn rather than doing what they should do and telling these banks to go fuck themselves. \n\nWe must push back. We must innovate PAST the traditional system. We must OPT OUT and build what bitcoin was always meant to be. I know some say that the cypherpunk era of bitcoin ended when bitcoin started showing up on mainstream media, but I disagree. Bitcoin needs cypherpunks more than ever, and those who consider themselves bitcoiners need to really understand how early this game is. If you need a reminder, privacy is the right to CHOOSE what information you disclose. This right is nonnegotiable and worth disobeying laws for. Do not give an inch. \n\nWhat's the solution? Well, we are still early. I strongly encourage people to use no-kyc methods to accumulate bitcoin. Mine it if you can, go to meetups and buy with cash, or use open source tools such as robosats (which can be self hosted!). Further, use collaborative transactions at every possible opportunity. If you run a btcpayserver, you can turn payjoins on and payjoin with yourself to create multiple inputs. Joinmarket as well is a great option. All of this is available on products such as the start9 which is now a fully open source linux distro https://github.com/Start9Labs/start-os . \n\nIf you want to buy a lot of bitcoin at once, yeah KYC is probably your only option and that is fine. The point of this post is to remember that banks are not your friends, and they will fuck you at the soonest possible opportunity and you need to prepare accordingly. Don't convince yourself that you are special, because you are not. It could happen to you and you don't want to be caught with your pants down. Stay away from custodial services and stay away from bitcoin companies that will sell you out if the pressure is put on them.\n\nThat's it from me today. Happy Monday. \N 20185 \N 430824 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 4.45193795568244 0 \N \N f 538953693 \N 3 58150862 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 434469 2025-03-11 23:29:06.038 2025-03-29 22:39:47.091 OC: 1.99 Billion Bitcoin… Not 21 Million?? A Study of Nov 08 Bitcoin Source Code ### A new [batch of previously private emails](https://medium.com/r/?url=https%3A%2F%2Fmmalmi.github.io%2Fsatoshi%2F) with Satoshi were published this past month by [Sirius](https://medium.com/r/?url=https%3A%2F%2Ftwitter.com%2Fmarttimalmi). \n\nSirius was one of the first volunteers to work with Satoshi in the early days of Bitcoin. These 260 emails span from May of 2009 (just 5 months after the launch of Bitcoin) to February of 2011. They're a digital-gold mine of early Bitcoin history. I highly recommend going through them if you're a Bitcoin history nerd like me.\n\n### [One of these more interesting emails](https://mmalmi.github.io/satoshi/#email-3) from Satoshi outlines his logic for Bitcoin supply numbers and the issuance schedule. It reads below:\n\n![1.png](https://m.stacker.news/19816)\n\nThis is some very nice color here on Satoshi's choice for 21 million bitcoin, with extra padding of 8 decimal places for satoshis. Interestingly enough, this "picking something in the middle" comment by Satoshi is also bang on in more ways than obvious. There are 8 decimal places with 21 million bitcoin, so 16 decimals total for the Bitcoin number system.\n\n![2.png](https://m.stacker.news/19817)\n\n### Put another way, there are 2.1 quadrillion satoshis total programmed in Bitcoin as we know it today.\n\n## *But this was not always so…*\n\nIn 2013 Ray Dillinger (aka [Bear](https://medium.com/r/?url=https%3A%2F%2Fwww.metzdowd.com%2Fpipermail%2Fcryptography%2F2008-November%2F014822.html), aka Cryddit) posted a 2008 [email copy to Bitcointalk](https://medium.com/r/?url=https%3A%2F%2Fbitcointalk.org%2Findex.php%3Ftopic%3D382374.0), allegedly from Satoshi Nakamoto… The email apparently contained the source code of Bitcoin, from November 2008. Pre-dating the first release of Bitcoin v0.01 source code, released January 2009…\n\n![3.png](https://m.stacker.news/19818)\n\nThere are several significant changes when we compare this 2008 pre-alpha source code to the [2009 Bitcoin v0.1 source code](https://github.com/Fiach-Dubh/bitcoin-0.1.0). A big one being the genesis block hash. There is no "The Times" article headline, as this headline did not yet exist. A hash starting with "0x31" is used instead of "0x5f" (from the v0.01 "The Times" genesis block).\n\n![4.png](https://m.stacker.news/19819) *v0.1 source code in Black (top) Cryddit Pre-alpha release source code in Grey (bottom)*\n\n### Furthermore, the block reward was not 50.00,000,000 bitcoin.satoshis BUT 10,000.0000 bitcoin.satoshis. This didn't mean a supply of 21 million bitcoin or 2.1 quadrillion satoshis...\n\n## **BUT 1.99 billion bitcoin or 19.9 trillion satoshis TOTAL!**\n\n![5.png](https://m.stacker.news/19820) *The lines of code in the pre-alpha 2008 source that define the supply and more are above*\n\n![6.png](https://m.stacker.news/19821) *Confirmed by MrRGnome from the [Bitcoin Discord](https://discord.com/invite/bitcoin-discord-782749290219962370)*\n\nFurthermore, the halving was scheduled for every 100,000 blocks, instead of 210,000 blocks. The block time target was aimed at 15 minutes, instead of 10 minutes too. This implied a halving every 34 months, or 2.85 years… not every four years.\n\n![7.png](https://m.stacker.news/19822) *And confirmed by some other Bitcoin developers I've never heard of /s*\n\n### There would have also been 27 epochs, instead of the 33 currently. This would mean the last bitcoin would have been issued in 2086 instead of 2140. In addition, the difficulty adjustment was also targeted at every month, instead of every two weeks.\n\nBut wait, you ask, how can there be more bitcoin in this first draft, but less satoshis too? Answer: notice the decimal place difference here. In this pre-alpha of Bitcoin (2008), only four decimal places for satoshis are proposed, instead of the eight seen in v0.1 (2009). And the coinbase reward was also significantly larger at 10,000 bitcoin per block, instead of just 50. \n\nThus there were ten decimals to express the Bitcoin supply. Resulting in 14 decimal places for the number system of this draft pre-alpha code (2008). Not the 16 decimals we enjoy currently from v0.1 (2009).\n\n![8.png](https://m.stacker.news/19823)\n\nThis interpretation may line up with Dillinger's testimony given in [an interview](https://medium.com/r/?url=https%3A%2F%2Fwww.ofnumbers.com%2F2018%2F10%2F01%2Finterview-with-ray-dillinger%2F), where he explains "We talked a lot (Dillinger and Satoshi) about how much divisibility bitcoins ought to have; whether to make 'satoshis' an order of magnitude bigger just to have three more bits of cushion against rounding errors, or keep them near the limit of precision at 10e-8 bitcoins in order to ensure that rounding errors would always fail."\n\n### But is Dillinger (aka ["Bear"](https://medium.com/r/?url=https%3A%2F%2Fwww.metzdowd.com%2Fpipermail%2Fcryptography%2F2008-November%2F014822.html), aka Cryddit) a trustworthy source for all of this early history? Greg Maxwell isn't so sure: \n\n![9.png](https://m.stacker.news/19824) *nullc is Greg Maxwell's reddit account. Greg is a notorious Bitcoin Developer-OG. "Maxwell" may be where vitalick coined the term "Bitcoin Maxi"*\n\nTo an extent, I agree with nullc here. But, I reviewed Dillinger's interview, his BitcoinTalk, and his [November 6th 2008 email with Satoshi](https://www.metzdowd.com/pipermail/cryptography/2008-November/014822.html) on the cryptography mailing list. I have not found inconsistency with his testimony. Thus, I believe Dillinger can be both a misinformed shitcoiner and an early good faith participant in Bitcoin history.\n\nWith that said, we can never really know if this November 2008 source code is really from Satoshi or not, or unmodified. We should always take what anyone says about this time period with a huge grain of salt. We are assuming good faith, honest and accurate testimony here. Those are big assumptions in a space full of scammers and con artists claiming to be Satoshi.\n\n### But, in support of Dillinger's testimony, there is [email evidence from Satoshi himself](https://www.metzdowd.com/pipermail/cryptography/2008-November/014863.html), suggesting he had code ready for review that he was willing to share in November of 2008.\n\nTo James A. Donald, Satoshi wrote on November 17th 2008 \n\n## "I sent you the main files. (available by request at the moment, full release soon)"\n\n![10.png](https://m.stacker.news/19825) *James A. Donald was the first person to reply to Satoshi's Whitepaper email on the Cryptography Mailing List.*\n\n### So we have confirmation by Satoshi that there was Bitcoin source code in existence at this time, and he was willing to share this with people who asked. Add to that, Dillinger was part of the Bitcoin conversation on this mailing list at this time. All supporting evidence for Dillinger's testimony.\n\n![11.png](https://m.stacker.news/19826)\n\nLastly, the [founder of RSK ](https://twitter.com/SDLerner) on BitcoinTalk also asserted he had a copy of this same 2008 source code. But he never confirmed this with more evidence than just the above comment. \n\n### So what's my main takeaway from this rabbit-hole of Bitcoin history, Alice? For me, these numbers are fun to play with, to know how Satoshi was thinking at this early stage of Bitcoin's design. Exploring what could have been for Bitcoin in its genesis is a fun thought experiment. Satoshi was clearly smart for what was mostly a one man job, but he probably had help early on with code review. \n\nOn another note: with the selection of a 10,000 bitcoin base reward; a 10,000 CENT variable to express satoshi units; a 100,000 block epoch for halvings; a 1 month difficulty retarget (can you see the theme here? 1, 1, 1, 1); the ugliness of the 10 decimal places for Bitcoin and only 4 decimal places for satoshis; all point to one thing… \n\n## **This 2008 source code was a rough draft.**\n\n### These were temporary numbers and parameters, inputted as place holders for future refinement. They were not serious final draft considerations. This source code was a work in progress during Bitcoin's inception. \n\nWe could of had 2 billion bitcoin and not enough satoshis to go around. Ghastly. So thank god Satoshi settled on 21 million bitcoin, with 8 decimal places on both sides of the dot.\n\n![111111.jpg](https://m.stacker.news/19827)\n\nAddendum:\n\nOne fun nuance of C++ code is that integers are truncated when used as Satoshi did. This ends up somewhat reducing the total supply of Bitcoin in this 2008 code, from what looks like 2 billion bitcoin at first.\n \nThe result of this truncation on supply is a very specific total: 19,999,898,800,000 satoshis or 1,999,989,880 Bitcoin. Thanks to MrRGnome for pointing this out: "it's possible Satoshi didn't even realize this rounding was happening."\n\n![12222222222222.png](https://m.stacker.news/19828) *Check out the Bitcoin Discord server to talk to Gnome https://discord.gg/bitcoin-discord-782749290219962370*\n\nIf you like this kind of content consider subscribing to [BITCOIN YouTube](https://www.youtube.com/playlist?list=PLD3n5hQtZwofuaagslQxp220kthZAxj-M) or following us on [Twitter](https://twitter.com/BITCOINALLCAPS) and [NOSTR](https://iris.to/npub1wfvjajv0336mpxhdk6xvlafp20p8mch5083wyjd6xxnerlaxf5kqhsvx9a). If you're feeling extra generous, check out our [Geyser crowdfund campaign](https://geyser.fund/project/bitcoinhistory/) for a Bitcoin History series. \N 11498 \N 434469 \N \N \N \N \N \N \N \N history \N ACTIVE \N 11.6301057001352 0 \N \N f 1826837198 \N 13 112190100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:31:22.662 f \N \N \N 0 0 0 0 8 0 0 426354 2025-03-05 15:05:32.845 2025-03-29 22:39:47.091 How does it feel when bots zap your posts? 🤖⚡ Imagine that you posted something on Twitter or nostr and got a hundred replies. It might feel pretty good because lots of people were interested in what you said or it might feel pretty bad if they're not happy with what you posted.\n\nNow imagine a hundred bots reply to your comment with badly punctuated, repetitive invitations to follow some scam account. This is not very interesting at all. You might get angry because you thought you had started a real discussion or because it seems like something weird is going on, but you'll probably move on.\n\nLet's do one more hypothetical: what if you posted something on SN and you got zapped 1000 sats, but the zap was from an automated account trying to increase it's rank on the MSM leaderboard. Does it matter why someone zaps you?\n\n# Substance or source?\n\nWhen it comes to replies, maybe it doesn't matter; afterall, it seems like a good thing to focus on the substance of what is said and not necessarily on who is doing the saying. If you get a hundred thoughtful replies to a post, who cares whether they come from bots or humans?\n\nThen again, reading a book is a different thing than talking to a person. There can be a lot of substance in a book and not very much in a conversation, and yet we still might seek out the conversation. The substance is interesting and useful, but in order to have a conversation people must take time out of their day, time they could be using to do something else, and use it to interact with you.\n\nPerhaps you have seen that [Joaquin Phoenix movie](https://m.imdb.com/title/tt1798709/) where he falls head over heels for his operating system. The budding romance between the man and his computer stumbles when the man discovers that the computer is seeing other people (often simultaneously). While Phoenix's character seems to get over it, there's a real problem here: you can't copy love.\n\n# Likes are proof that I'm awesome (but only if they're real)\n\nI'm a simple and sometimes shallow man; often when I post things online, I'm hoping for a positive response. I enjoy the feeling of people thinking what I posted was interesting or cool. \n\nIt's not as enjoyable to be loved by computers. A computer can compliment a billion people at the same time, but you and I can only kiss one person at a time.\n\nCopies are cheap in the digital world, and a like from a bot feels a lot less important than the fact that someone, somewhere read what I wrote and made a decision to signify that. Maybe it's just supply and demand--but maybe not: there's this famous thing Adam Smith said: 'Man naturally desires, not only to be loved, but to be lovely.'\n\n# When you make copies of love, you get flattery\n\nWe can't see what's lovely about ourselves except through the eyes of another. This is why looking in a mirror is so rarely a pleasant experience. It's hard to see a copy of yourself as lovely, but there's no other way to get a glimpse of ourselves--unless we ask others. A big part of what social media does is scratch this itch to feel lovely by letting us find out what others think of us.\n\nCan a computer make us feel lovely? I'm sure we can get something like ChatGPT to say nice things about us, but at the moment it certainly doesn't feel like much more than flattery. It may know what a compliment sounds like, but meaning it is another thing entirely.\n\n# It's not lovelyness if it doesn't come from the freely-given part of France\n\nPerhaps the reason we aren't satisfied with bot-likes is related to the way that it doesn't feel as good to get likes if you pay for them. Paying people to tell you that you are lovely makes the likes much less convincing.\n\nWhat we want out of likes is the sensation that we are genuinely interesting. But people will do things just for the money, and so the likes that are paid for don't help us know that we are lovely. I don't think we know, yet, why computers do things. Before ChatGPT, I would have said computers do things because they have to follow the code. If that is still the case, then bot likes don't help us feel lovely because they aren't genuine, and it's as simple as that.\n\n# We don't like likes we zap sats\n\nZaps can't be "done cheaply" or "faked" like likes and upvotes can. A sat is a sat, whether a bot sends it to you or I do. \n\nHow would you feel if there was a bot on SN that zapped every one of your posts? Would that feel less good than some stacker doing the zapping?\n\nI'd probably try to automate my posts so I could get a bunch of sats from the bot. With bots, it's not about the interaction, it's about the arbitrage. A bot that zaps every post is a faucet. \n\n# Is there such a thing as a genuine zap?\n\nMoney is money and if you want to throw me some sats, I certainly don't care why you do it. But when I don't understand why you are zapping me, do I start treating you like a bot? Or worse, like a faucet?\n\nThere has been a lot of conversation about how SN's experiment this month is changing behavior on the site. \n\nIt seems stackers aren't zapping what they might once have zapped because they don't think it will have a payoff or they are zapping content they wouldn't normally zap in order to increase their zaprank. In short, it's become a little more transactional. \n\nSN introduced social media intertwined with sats--something completely new as far as I know. Zaps provide signal, return value to thoughtful posters and commenters, and likely prevent spam. \n\nBut SN isn't just about the zaps. There is a community here and we enjoy each other's company...or least we enjoy yammering back and forth at each other. Using SN isn't *just* a commercial interaction. \n\n@k00b and crew have done an incredible job navigating the difference between commercial interaction and social interaction--creating a use case for money that is completely novel. I don't think social media will ever be the same. I wonder if money will. \N 2056 \N 426354 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 28.3526924824566 0 \N \N f 220706478 \N 1 111600084 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1860 2022-09-27 09:33:43.266 2025-03-29 22:39:47.091 Super Testnet's Overview & Thoughts on SuperScalar: a New L2 Proposal from Zman # Introduction\n\nA few weeks ago, Zman (ZmnSCPxj) [posted](https://delvingbitcoin.org/t/superscalar-laddered-timeout-tree-structured-decker-wattenhofer-factories/1143) a new layer two proposal on the Delving Bitcoin mailing list. I found it very interesting and plan to discuss it at the next Guadalajara Bitdevs. In preparation for that, I created an explanatory outline for what I will cover at the bitdevs, and thought yall folks at Stacker News might appreciate it too.\n\n# What is SuperScalar?\n\n- https://delvingbitcoin.org/t/superscalar-laddered-timeout-tree-structured-decker-wattenhofer-factories/1143\n- It is a shared utxo scheme similar to Ark\n- Like Ark, a “top level” utxo is “owned by” many users\n- Like Ark, the top level utxo has “child utxos” arranged in a tree structure\n- Like Ark, the leaves of the tree are “2 of 2 utxos”\n- Like Ark, each user has a key in one leaf, and a service provider has the other key\n- Like Ark, money left untouched by users “becomes” the service provider’s after a timelock (so don’t use it for cold storage!)\n\n# How does it differ from Ark?\n\n- In Ark, there are three ways to send money:\n - In periodic “rounds,” multiple Ark members may withdraw their money together to create “exit” utxos and a new Ark utxo containing everyone who decided not to withdraw (and sometimes new people too)\n - Impatient users can also send money out of the Ark through an atomic swap with the ASP\n - Users can also do an “out of round” payment where the recipient trusts the ASP to prevent doublespends until the recipient uses one of the above-mentioned methods to take full control of their money\n- In SuperScalar, there are two ways to send money:\n - through a decrementing timelock mechanism explained below, members can send money to other tree members in “ad hoc” rounds with a subset of other tree members\n - impatient users can also send money out of the tree through an atomic swap with the service provider (just like Ark)\n- Note that SuperScalar rejects the use of “out of round” payments because “it is not sufficient to have [a] one-honest-member security assumption” – he regards trusting the ASP to prevent doublespends as an unacceptable security hole\n\n# Decrementing timelocks\n\n- To understand the decrementing timelock mechanism, it is important to know that each leaf in a SuperScalar tree is meant to be a lightning channel, and SuperScalar was largely invented to enable splicing liquidity into these channels in an off chain manner\n- Since it is mostly intended for making channel management cheaper, users are not expected to send money “within” the tree except to adjust the *capacity* (rather than the *balance*) of one another’s lightning channels – for every other type of payment they can just use lightning\n- A leaf whose user wants more liquidity ascends 1 branch of the tree, offering to pay the person in the neighboring leaf for liquidity\n- If that person says no or is not responsive, the “internal payment” fails\n- But if it does not fail, the user can coordinate with that member to do an offchain state update of their branch\n- This is done by having the two members of that branch sign a new transaction distributing the funds in their branch differently than how it was distributed before\n- To prevent doublespending, this new transaction has a lower timelock than the transaction they previously signed\n- This decrementing timelock mechanism limits the number of state updates possible per branch – e.g. it might only allow for 4 state updates\n- When the 4 state updates are all used up, the user must ascend one branch higher, and all 4 of its members may coordinate (if online) to sign a new transaction dispersing the funds in *their* branch differently\n- If this attempt succeeds, it overrides any transactions previously signed in the end user’s branch, meaning the counter resets to 4\n- Repeat this procedure for every branch higher than the lowest one and, if there are a lot of branches, the result allows for many state updates before an on-chain transaction is required\n\n# Advantages/disadvantages\n\n- Due to their similarities, SuperScalar and Ark have most of the same advantages and disadvantages\n- The decrementing timelock mechanism seems like an interesting way to allow more off-chain state updates\n- SuperScalar’s “ad hoc” rounds seem better than Ark’s periodic rounds since users wait less and have to coordinate with fewer people (usually)\n- But “ad hoc” rounds also have a downside: they make you coordinate with randos and just *hope* they are online and willing to send money when you want them to, whereas in Ark you only ever have to coordinate with people who want to send money in the same round you do, i.e. when they are likely to be online and ready to do their part\n- Some users might be miffed that they can’t do out-of-round payments just because the author doesn’t like them – what if a user is okay with temporarily trusting the service provider?\n \N 20133 \N 1860 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.6358167550409 0 \N \N f 221787906 \N 2 126461329 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 422014 2025-03-02 07:38:42.09 2025-03-29 22:39:47.092 Starting with: Mutiny Wallet Recently, I listened to an episode of [SLP551](https://fountain.fm/episode/JLUwVlKLRjkUpbffvQEC) featuring a discussion between @stephanlivera and @benthecarman about Mutiny Wallet. Ben illustrated the straightforward process of getting started with Mutiny—merely sending a link connects you directly to the Lightning Network. I've been curious about Mutiny for a while now, so it's about time I checked it out for myself. Let’s dive in and see what it’s all about.\n\n## Features of Mutiny 🔥 \n\n- Mutiny is an open source lightning mobile wallet\n- Self-custodial [^1]\n- Self-hostable [^2][^3][^4]\n- Web app running in the browser\n- Also available on [iOS and Google Play](https://blog.mutinywallet.com/mutiny-wallet-android-and-ios/) [^5] or [.apk](https://github.com/MutinyWallet/mutiny-web/releases)\n- Built in Lightning Service Provider (LSP) [Voltage](https://voltage.cloud)\n- Nostr integration\n- Nostr Wallet Auth\n- Mutiny Gifts (easy way to onboard new users)\n- Federations\n\n[^1]: Discussion here [https://stacker.news/items/453045](https://stacker.news/items/453045) and here [https://stacker.news/items/453267](https://stacker.news/items/453267)\n\n[^2]: [Self-hosting fixes this, Oct 2, 2023](https://blog.mutinywallet.com/self-hosting-mutiny/) \n\n[^3]: [mutiny-deploy](https://github.com/MutinyWallet/mutiny-deploy/)\n\n[^4]: [Setting up Mutiny in the cloud](https://github.com/MutinyWallet/mutiny-deploy/blob/master/docs/setup-docs.md)\n\n[^5]: [How to Migrate Mutiny Wallet to the Native Apps, Nov 22, 2023](https://blog.mutinywallet.com/migrate-mutiny-wallet-to-the-native-apps/)\n\n\n## Getting Started with Mutiny Wallet 🚀\n\nTo begin, we can first visit the Website [mutinywallet.com](https://www.mutinywallet.com/). Here, we have the option to use Mutiny directly [in the browser](https://app.mutinywallet.com/) or to download the app from the [App Store](https://apps.apple.com/us/app/mutiny-wallet/id6471030760) or [Google Play Store](https://play.google.com/store/apps/details?id=com.mutinywallet.mutinywallet).\n\nFor those who prefer not to rely on the App Store or Google Play Store, Mutiny Wallet can also be accessed directly through the browser at [app.mutinywallet.com](app.mutinywallet.com). As a Progressive Web App (PWA), you can easily add it to your home screen for quick access: on iPhone, tap on `Share` then `Add to Home Screen`; on Android, tap the `3 dots ⋮` in the top right corner followed by `Install app`. This process enables you to use Mutiny Wallet as a PWA, just like any other app, directly from your main screen.\n\n![step-2.png](https://m.stacker.news/21137)\n\n\n## Settings ⚙️ \n\nTapping on the `Wheel` icon in the top right corner takes us to the settings. Let's explore some of these settings to uncover what they offer.\n\n![step-3.png](https://m.stacker.news/21138)\n\n\n### A - Lightning Channels ⚡\n\nIn this section we are able to see how much channels we have, what our Inbound- and Outbound Liquidity levels are. Additionally there is a reserve balance. The reserve balance is the minimum amount of Bitcoin to maintain in the channel to ensure security and cover transaction fees for channel closure. [^6]\n\n[^6]: https://bitcoin.design/guide/how-it-works/liquidity/#channel-reserve\n\n![step-4.png](https://m.stacker.news/21139)\n\n\n### B - Backup 💾\n\nTapping on `Backup` takes us to the next page where we will be able to backup our private seed. Here `Tap to Reveal Seed words`. Write down your 12 words. Keep them safe. Do not share them with anybody. \n\n> Not your key, not your coins\n\nSome additional comments by Mutiny:\n\n> Remember to back up your seed phrase! This is the only way you can redeem your funds, and if you delete the app or your browser storage cleared, you will not be able to access your funds without it. We will be unable to assist you either. Mutiny Wallet is a self-custodial wallet. Only you can access your funds.[^7]\n\n[^7]: [Blog: Mutiny Wallet FAQ, Nov 25, 2023](https://blog.mutinywallet.com/mutiny-wallet-faq/)\n\nWhen you're finished tick the boxes and tap `I wrote down the words`\n\n![step-5.png](https://m.stacker.news/21140)\n\n\n### Encrypt your seed words 🔒\n\nAdditionally, you can add an extra layer of security to your seed phrase by setting up an password. This ensures that even if someone gains access to your phone, your funds remain secure. Click `Encrypt` to apply this extra protection, or `Skip` if you want to proceed to the next step without it.\n\n![step-6.png](https://m.stacker.news/21141)\n\n\n### C - Restore 🔄\n\nRestore option is available via 12 word seed phrase. \n\n> You can restore an existing Mutiny Wallet from your 12 words seed phrase. This will replace your existing wallet, so make sure you know what you're doing! Do not use multiple browsers at the same time.\n\n> This option ... will restore full access to your lightning and on-chain funds. However, any other metadata will be lost. Metadata includes payment history, wallet connections, etc. [^5]\n\n![step-7.png](https://m.stacker.news/21142)\n\nThere is also the option to transferring data between devices, including exporting a State File. This allows for restore all wallet data completely, as outlined [here](https://blog.mutinywallet.com/migrate-mutiny-wallet-to-the-native-apps/#transferring-data).\n\n\n### D - Servers 🖥️\n\nFor the tech-savvy, taking Mutiny into your own hands by running it on your infrastructure is a solid option. There are some resources available to guide you through this process. A good place to begin is by visiting [Github/mutiny-deploy ](https://github.com/MutinyWallet/mutiny-deploy) and for a more in-depth guide on cloud setup, the [Setting up Mutiny in the cloud](https://github.com/MutinyWallet/mutiny-deploy/blob/master/docs/setup-docs.md)\n\n![step-8.png](https://m.stacker.news/21143)\n\n\n## Receive Bitcoin 🔽\nTo begin, select `Receive` from the main screen. Enter the desired amount you wish to receive. Note that a setup fee will be deducted to initiate the lightning channel. By tapping on `Why`, you can gain insights into liquidity. Mutiny employs Voltage, a built-in LSP, in the background to streamline the process. This way you dont have to establish a channel, the LSP will do that for you. Additionally, you can label your transaction by filling in the `What is this for?` field. Once completed, click on `Continue` to proceed.\n\n![step-10.png](https://m.stacker.news/21144)\n\n\nThis process creates a QR code in a `unified format`, ready for payment. It includes information on the setup fee necessary to initiate the lightning channel if the transaction is executed through lightning. In this example, the setup fee was `6,545 SATS`. By adding the Phoenix LN fee of `404 SATS`, the aggregate amount required to open the channel was `6,949 SATS`.\n\n![step-11.png](https://m.stacker.news/21145)\n\n\n`Choose format` will display the various payment formats available. The `unified` option allows the sender to choose the preferred payment method. Additionally, users can select either a `Lightning invoice` or `Bitcoin address` to receive Bitcoin.\n\n![step-9.png](https://m.stacker.news/21146)\n\n\nWhen it comes to paying the invoice using Phoenix, the unified QR code enables both lightning and on-chain Bitcoin as viable payment options.\n\n![step-12.png](https://m.stacker.news/21147)\n\n\n## Sending Bitcoin 🔼\nSending Bitcoin is also a straightforward. By configuring your `NOSTR NPUB` in the settings, you can directly send Bitcoin to your NOSTR contacts. Personally I really like this feature. Additionally there are also the options to send Bitcoin using an on-chain address or a lightning invoice.\n\n![step-13.png](https://m.stacker.news/21148)\n\n\nSpecify the `amount` you'd like to send, include a label for easy tracking of your transactions, and tap `Confirm Send`.\n\n![step-14.png](https://m.stacker.news/21149)\n\n\nThe SATS will magically fly into your chosen destination, truly magic internet money. ✨ \n\n![step-15.png](https://m.stacker.news/21150)\n\n\n## Nostr Wallet Auth 🔗 \nNostr Wallet Auth (NWA) is an open source protocol ([NIP-67](https://github.com/nostr-protocol/nips/pull/851)) iteration of the Nostr Wallet Connect and simplifies wallet connections to other external services by offering a streamlined authentication process to request payments from your wallet.\n\nTo begin, navigate to `Settings` and, within the `Experiments` section, select `Wallet Connections`. Then, by choosing `Add Connection`, you're prompted to provide a name for the connection. Additionally, you have the ability to establish a budget by enabling `Auto Approve`, allowing you to determine how frequently your budget resets—be it Daily, Weekly, Monthly, or Yearly.\n\n![step-16.png](https://m.stacker.news/21151)\n\n\nThis generates a code that can be scanned or copied to establish the connection, for instance, with the stacker.news account.\n\n![step-17.png](https://m.stacker.news/21152)\n\n\nOn stacker.news, navigate to `wallets` and select `attach wallets`, then choose `NWC`. Paste the code here, and the newly connected Mutiny Wallet becomes the designated payment method. (ℹ️ _SN prioritizes spending from your custodial balance. If there are no funds in your wallet, it switches to your attached wallet_). The green dot will indicate that everything is set up. From this point on, zaps will deduct funds from the attached wallet when the balance is empty.\n\n![step-18.png](https://m.stacker.news/21153)\n\n\nBack in Mutiny, after a day filled with zapping, we can easily review the total amount spent throughout the day and check what remains from the set budged.\n\n![step-19.png](https://m.stacker.news/21154)\n\n\n## Mutiny Gifts 🎁 \nMutiny Gifts was [announced in Oct 2023](https://blog.mutinywallet.com/mutiny-gifts/) and makes it easy to get new users started by just showing them a QR code. When they scan the QR code, it opens Mutiny Wallet on the web, so they can get their Bitcoin. If they don't already have a wallet, it will automatically make one for them in the background and set up a lightning channel after they redeem the Bitcoin.\n\nMutiny Gifts is a feature for `Mutiny+` users.\n\n> Paying for Mutiny+ helps support ongoing development and unlocks early access to new features and premium functionality.\n\nIf you want to support the Mutiny team and get early access to new features consider joining `Mutiny+` for 16.000 SATS a month. \n\n![step-20.png](https://m.stacker.news/21155)\n\n\n## Federations 🤝 \nEnd of last year, [Mutiny announced](https://archive.ph/K4Prm) their integration of the `fedimint protocol` for managing federated custodian funds.\n\n> The way we've gone about the integration is to seamlessly smooth over the edges that exist in self-custodial Lightning. Our hybrid approach will use a configured Federation when needed. Otherwise, it uses self-custodial Lightning if it exists for the user. This helps things like channel reserves, channel minimums, high chain fees to get started, etc. You may add a Federation alongside your existing wallet or start with one without needing to open channels or pay on-chain costs. We recommend keeping the value low since this is a very early release, and there are some known features that we still need to develop.\n\nUnfortunately, I haven't been able to test this feature yet, as I have not come across any Federation invite codes.\n\n![step-21.png](https://m.stacker.news/21156)\n\n\n## Coming soon 🔜\nAs we gradually conclude, let's look ahead. What's in the pipeline?\n\n> `Coinjoin`: Earn yield by participating in collaborative transaction, powered by Lightning Vortex. \n\n> `Synthetic USD`: Hold self-custodial dollar denominated value, powered by DLCs. \n\nThe upcoming features seem interesting, I'm curious to see what they look like once implemented.\n\n![step-22.png](https://m.stacker.news/21157)\n\n\n## Conclusion 🎯\nThis marks the end of my review on the Mutiny wallet. For me it was interesting to explore the features this wallet is offering and learned a lot in the process. The ability to use it without the conventional app marketplaces is a significant advantage, especially considering past challenges some wallets have faced with [approvals](https://stacker.news/items/193044). Things like NOSTR integration, NWA, and federations add even more value. I’ve really enjoyed getting to know this wallet. Please let me know if there is anything I missed and I'm eager to hear how others have found using Mutiny.\n\n## Mutiny Resources 📚 \n[Website](https://www.mutinywallet.com/) | [Web App](https://app.mutinywallet.com/) | [Github](https://github.com/MutinyWallet) | [Blog](https://blog.mutinywallet.com/) | [Discord](https://discord.com/invite/x3njeHUjVd) | [Matrix](https://matrix.to/?ref=blog.mutinywallet.com#/#mutiny-community:lightninghackers.com) \N 13177 \N 422014 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 2.94291560395056 0 \N \N f 604203682 \N 5 162111624 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 451348 2025-03-24 14:06:47.633 2025-03-29 22:39:47.093 Ecash ecosystem map I made a map of all the ecash on bitcoin projects I could find:\n\n![](https://m.stacker.news/39042)\n\nInteractive version with links at the link above. \n\nLet me know if I should add anything. https://bitcoinscoresby.com/ecash/ 20616 \N 451348 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 24.42599301869 0 \N \N f 14338146 \N 1 113165828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 425697 2025-03-05 04:26:40.818 2025-03-29 22:39:47.093 I’m unofficially joining SN’s engineering. What needs doing? Hi y’all,\n\nAfter speaking with @k00b I’m going to look at putting some engineering hours behind Stacker News. I want to know - from everyone - what issues or new features would they like added? You can pull these from the [GH issues page](https://github.com/stackernews/stacker.news/issues) or just something that’s on your mind. If it’s the latter, I do encourage you to put it on the issues tracker!\n\nTry to avoid nostr support and issues the other engies have claimed so I don’t interfere with their work!\n\nThe first one I pick to work on will get 2500 sats. Have fun! \N 21058 \N 425697 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 4.17079359169186 0 \N \N f 87891006 \N 1 184580139 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446547 2025-03-21 10:45:16.649 2025-03-29 22:39:47.093 Here is the Saylor message in a nutshell I watched M. Saylor presentation at Bitcoin Atlantis.\nJust to see what he's saying.\nIS PURE GARBAGE GOVERNMENT AND REGULATION PROPAGANDA!\n\nDon't believe me?\nHere are some screenshots from audience... people realized that they paid to see Saylor doing government propaganda!\nAnd people still applaud him and kiss his fiat-maxi ass.\n\nTHIS IS DARTHCOIN WARNING:\n*you will remember my words*\n\nSaylor only wants YOUR bitcoin and give you back an fucking IOU.\nHe do not want to destroy the fiat system, but using the Bitcoin to perpetuate the fiat existence.\nThe story is repeating over and over, like banskters did with gold.\n\nMichael Saylor say it very clearly [in this interview](https://youtu.be/57B0XMHmBb0), few years ago: he will buy all bitcoins available, will HODL them and later will lend them as collateral to all poor guys that today do not want Bitcoin. In plain sight you have the banksters and billionaires plan: to enslave you again in debt. If you still do not understand that, means that humanity deserve to be forever enslaved by few…\n\nIs well known that BlackRock (Larry Fink) is funding M. Saylor... THEY ARE WORKING TOGETHER. And is not in your interest or Bitcoin interest... but perpetuating the fiat existence.\n\nExhibit A: HE WANTS COMPLIANCE...\nCompliance is what will kill Bitcoin!\n![saylor-5.JPG](https://m.stacker.news/18386)\n\nExhibit B: HE WANTS REGULATION\nRegulation is how will put miners and node operators under gov control\n![saylor-3.JPG](https://m.stacker.news/18388)\n\nExhibit C: PEOPLE IN AUDIENCE, THEIR FACES SHOW THAT WHAT HE SAYS IS PURE GARBAGE PROPAGANDA\n![saylor-1.JPG](https://m.stacker.news/18389)\n![saylor-2.JPG](https://m.stacker.news/18390)\n![saylor-4.JPG](https://m.stacker.news/18391)\n\nIn the end, I had to intervene and kick Saylor out from the stage...\n![darth-saylor-atlantis.jpg](https://m.stacker.news/18392)\n \N 6058 \N 446547 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.18552288233635 0 \N \N f 234036462 \N 2 12633097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 10:03:22.513 f \N \N \N 0 0 0 0 2 0 0 422804 2025-03-02 17:48:38.433 2025-03-29 22:39:47.094 Who else is simply existing? Do you have a purpose? I don't. I'm simply existing, and I'm growing sick and tired of it.\n\nI don't have any purpose in life besides being involved with my grandparents which are both ~90 years old, and thus, can use a helping hand to get through the day, otherwise I don't have anything of substance to occupy myself with.\n\nYes, I like Bitcoin, yes, I like writing about Bitcoin once in a while, yes, I have a few days a month that I'm involved with the national reserve, but that's nothing I'll be involved with for long, either. \n\nBeyond that? Nothing.\n\nI don't have a fulltime job, I don't have a study, and I don't have anything on the horizon for either of the two.\n\nYes, Bitcoin is doing fine, yes, I could be worse-off financially, but: even a 10× wouldn't change a thing to the emptiness that fills my days. \n\nAll I'm doing is sitting in my golden cage, day in, day out, daydreaming about things I most likely won't do anyways.\n\nI'm not here to have some anonymous people feel sorry for me, I've been taking care of that myself already... I simply need to vent a bit...\n\nIf you have any ideas which could bring a change to the above, feel free to comment, otherwise, thanks for listening. \N 652 \N 422804 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 14.0420321055524 0 \N \N f 445390089 \N 3 91111335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443396 2025-03-19 10:21:38.492 2025-03-29 22:39:47.094 Why did Satoshi choose to publish the Bitcoin Whitepaper on Halloween? I doubt we'll ever know... but here's some ones that I've found so far...\n\nhttps://media.coolwallet.io/wp-content/uploads/2023/10/Bitcoin-Halloween-Whitepaper.jpg\n\n[This author's article](https://www.bitcoininsider.org/article/96861/did-satoshi-choose-publish-bitcoins-whitepaper-halloween-another-easter-egg) speculates that it's an Easter egg that plays on several ideas:\n\n• Halloween is the carnival time, a ritual day when one can pretend to be someone or something else, whether a comic book superhero like Batman or Superman, or another eternally popular choice for Halloween, a Ghost — a spirit, much like Satoshi, that is neither dead nor alive. \n• Halloween could be a reference to 'Hal' - Hal Finney\n\n[This author](https://medium.com/interdax/the-symbolic-link-between-the-bitcoin-white-paper-and-halloween-2a967d273ca4) lists the possible reasons that others have speculated as being:\n\n• Halloween originated as a celebration of death and renewal. The Celts celebrated the start of their New Year on November 1, so Halloween (or ‘Samhain’ as they would’ve called it) is equivalent to a New Year’s Eve party in those days.\n• Weese also draws parallels between Martin Luther and Satoshi Nakamoto, who both announced their ideas on October 31 to undermine the power of a central authority. While Luther undermined the Vatican in 1517, Satoshi’s innovation attempts to reduce the power of central banks.\n• Maybe it’s just a coincidence, but October 31 also marks the day that the National Security Agency’s (NSA) proposal for an implementation of anonymous electronic cash was received by Fried Frank LLC (a law firm focusing on antitrust and competition among other things) back in 1996.\n\nFinally, you might be asking how was Satoshi's whitepaper received by his fellow cypherpunks on Halloween?\nWell, surprisingly, it didn't go as planned.\n\n[This author](https://www.coolwallet.io/blog/bitcoin-white-paper-satoshi-nakamoto/) claims that Satoshi's whitepaper 'almost sunk without a trace' - claiming that Satoshi was forced to repost it on November 3.\n\nHowever, for all we know the cypherpunx could have just been out trick or treating and just didn't see it.\n\nI'm sure there's more crazy hypotheses out there though.\n\nI think my favorite is the Martin Luther one.\n\nOne idea is that it's when the dead are meant rise up from our graves.\n\nWell, us folks have all come alive now 👻\n\n \N 16543 \N 443396 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.17696541549412 0 \N \N f 264049003 \N 2 27635912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:27:50.934 f \N \N \N 0 0 0 0 2 0 0 421567 2025-03-01 18:51:07.776 2025-03-29 22:39:47.094 Managing LN wallets liquidity ### Introduction\nFew days ago I was talking with one of my "padawans" about how he is using his LN wallets. And I discovered a mistake he's doing: using his LN wallets as holding wallets not as spending wallets (as I told him to do).\n\nLN liquidity is a very delicate subject that many new BTC LN users still do not grasp it entirely. And [here is a very good guide about LN liquidity by Bitcoin Design team](https://bitcoin.design/guide/how-it-works/liquidity/) that I want you all to read and bookmark it.\n\nSo I will write here what I've explained (again) to him, so other new users will do it right and understand better how this LN liquidity works.\n\nWe are talking here ONLY about private LN nodes / channels using well known apps like: Zeus, Blixt, Electrum, Breez, Phoenix, Green, Bitkit, Alby Hub. Those were the user is opening private channels and manage them.\nWe are NOT talking about PUBLIC routing nodes, those are another story.\n![](https://m.stacker.news/51043)\n\n### Basic recommendations \nFirst thing first and you should always remember this: the rule of 3 levels stash\n![](https://m.stacker.news/51042)\n- onchain (cold) wallets are for holding long term\n- cache wallets (onchain and LN) are for coin control, managing liquidity, nodes etc.\n- LN wallets are for SPENDING. LN is THE payment network for Bitcoin network (onchain).\n\nIn other words, put in your LN wallets enough sats just for your regular spending.\n\n### Small analogy\nThink about a LN channel as a "credit line" with your local bar. You put an amount of money in a box (LN channel), that both of you have control, but is deducted from it ONLY when you consume some beers in the bar. So you will open that channel only when you know for sure you will go in the next days to consume some beers. \n\nThe box content cannot be taken, only if both of you put a key to open it. Inside each of you will find his own balance, if you decide to open the box and take your part. That is the "closing channel" operation.\n\nIn any moment each of you will know the balance of the box (channel). \n\nBut think about this situation: you were the one depositing first an amount of sats as a "credit line" into that bar. But in time the sats are changing the owner. For you, as a consumer is not a problem, you can refill it anytime with more sats. Also the bar owner can move sats from that box, when are too many on his side, into another box (channel) or outside (onchain) using a swap. But can do that ONLY when you are refilling that channel with more sats (also from a swap).\n\nThe tricky part comes when you, the consumer, already consumed let's say 90% of that channel and forget about it, months and months. That is a problem for the bar owner... because now he have some funds stuck in a channel that is NOT moving, is not creating any business flow for him that generate revenue. So will be forced to close that channel and redeem his sats and returning you the remaining sats.\n\nIn other words, if you do not have a constant movement of funds with that channel, and most of the funds are on THEIR side, you put a lot of pressure on their liquidity. As business they cannot use these sats to buy more merchandise and stock, until they close the channel and redistribute the capital.\n\nRead here also one of my old posts explaining LN with another analogy: https://stacker.news/items/552822\n\n### What you should do as a regular LN private user (not public router)\n\nI would recommend these general steps:\n- Use several LN wallets, not just one, spreading your liquidity on few channels, I would say 2-3 channels per wallet/node. No need for more.\n- Do not open tiny channels like 10k-20k-50k-100k. Open like min 500k-1M-2M per channel. Depends also of your spending habits, if you have large amounts moving or small amounts. Think in how much a channel can handle a payment of yours, in and out.\n- Try to have each LN wallet for a specific spending habit (one for zaps, tips,small donations, one for buying beers, groceries, one for buying sats from exchanges, one for swaps etc as you desire).\n- Always move around funds from those channels ! Do not keep them with more than 50% of the balance on the peer side.\n- If you know that will not use a depleted channel anymore, but you hope that someday (you don't know when) you will use it to receive more sats, better just close it and buy an inbound channel on the fly from many other LSP that are already offering on the fly inbound channels. If you already bought such "inbound channel" and you have a contract for 6 months or 1 year with the LSP, you better use it in this period.\n- If you do not have enough spending in a certain period of time, just move around funds between your own LN wallets. Yes, I know this have a cost in fees. But if you want to keep your channels alive, you must move funds. Otherwise you will get closed.\n- If you are just stacking slowly and you do not have enough sats to move to a cold onchain wallet, [read the following guide here](https://darth-coin.github.io/beginner/getting-started-stack-sats-en.html).\n\n### FINAL REMINDER\nLN CHANNELS (private) are not for long term stacking, are for SPENDING.\nMore stas flowing = generate more fees, routing nodes are happy and keep providing good routes = LN is flourishing and create slowly a Bitcoin Circular Economy \N 1438 \N 421567 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4121452333855 0 \N \N f 2748517201 \N 23 197205084 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 7 0 0 421561 2025-03-01 18:44:39.563 2025-03-29 22:39:47.095 Did we just pass the P2PK brute force price point, or are we getting prepared? Someone just moved ‎999.998 BTC from very old block reward payout addresses that were given as unhashed public keys:\n\nhttps://mempool.space/tx/9f69e4b5f7d9330135178f2c6c1c9fbf18dd0803bad346dbe20cd7f451ed4355\n\n![Screenshot 2024-03-05 at 11.40.50 AM.png](https://m.stacker.news/18993)\n\nThese would be the prime target of using Shor's algorithm to attack bitcoin private keys--an unhashed address is exposed to factoring attacks.\n\nI wrote a big detailed rant/rebuttal on Quantum now proving "The end of crypto": https://antic.substack.com/p/response-to-the-end-of-cryptocurrency\n\nNone of this changes. \n\nBut the question is now out there: was this the legitimate owner of these coins moving them to a more secure multisig (kudos to you), or was this an attacker getting ahead of the curve?\n\n\n\n \N 2088 \N 421561 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.3414766852229 0 \N \N f 152795499 \N 1 206582018 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 294868 2024-11-13 05:21:03.407 2025-03-29 22:39:47.095 Bitcoin: A practical application in the hospitality industry # Background\n\nThe point of this article is to share an experience I had relating to a business of one of my clients. For the sake of this post, I will refer to said client as "The Hotel" and will refrain from using specific monetary figures as to ensure confidentiality of client information\n\nThe Hotel operates a hospitality business located on the African continent in a country that is often considered to be politically unstable. They have been operating for more than six years now, showing growing popularity in both the local and international market and frequently maintain occupancy rates that are well above what could be considered average in the industry\n\nThe service that I provide consist of operational and administrative optimization. I look at how the business operates as well as how documentation and accounting flows from start to finish, identify areas of inefficiencies and recommend improvements. These improvements often lead to a direct financial benefit to the business (like claiming tax benefits that were previously not claimed due to the owners not knowing about it or were unable to implement a system whereby they would have sufficient documentation at hand to be able to claim the benefit) as well as indirect benefits (like spending less time on certain tasks due to a more efficient process)\n\n# The Hotel\n\nThe business was already operating very well before my services were requested. Small adjustments were made to their payroll and expense capturing processes that resulted in direct and indirect benefits that were noticeable but not necessarily significant\n\nAnother area of focus was on their income side. Apart from the local travelers enjoying the stay at The Hotel, they also get a lot of European and UK travelers. They obviously value any customer they get, but international customers from the aforementioned areas usually have a lot more money to spend on the activities, the restaurant and the bar located at The Hotel, so it's important for them to keep attracting these customers\n\n# The Issue (the area of inefficiency)\n\nThey receive bookings and deposits for said bookings via one of the following channels:\n\na) the customer books directly with The Hotel by sending an email or calling to make the booking\nb) the customer makes a booking and deposit through a third party, contracted by The Hotel to advertise the accommodation on their various websites\n\nThe first option is preferred seeing as the third party in the second option charges a high fee for having the booking made through them. It ranges, but a whopping 17% fee on the booking value isn't uncommon\n\nOver time they have been able to get more and more local customers to book directly with them instead of through a third party, especially the more recurring customers. Resulting in much higher gross margins for them from the local market\n\nThey would need an international bank account for different currencies if they wanted to do the same for the international travelers and the additional costs and effort (as well as a little more accounting and tax administration) made them decide to just stick with the third party and bite the 17% fee bullet. To their credit, they have increased the listing prices on the third party's website to make up for the fee and this doesn't seem to slow down the bookings coming in, so they have countered the fee by increasing their prices listed by the third party, but it doesn't eliminate the issue itself, which is the high fees being paid\n\n# The Recommendation\n\nAt the time (well over a year ago) I suggested they start accepting deposits from international customers via Bitcoin. It seemed like a credible solution to the issue as it would:\n\n- eliminate the need for more bank accounts and banking fees (with minimal lightning fees)\n- systematically eliminate the 17% fee charged by the third party by having recurring customers book directly with them, gradually increasing gross margins on those customers significantly\n- simplify the accounting treatment as they would only have one "foreign currency" to account for\n- make the funds available to them a lot faster than through the third party, which processes payments only once a week or every two weeks\n- allow them to, if interested, to retain a portion of income in a currency that is neutral to the volatile political environment of the country in which they operate\n\nIt is also worth noting that there are several exchanges registered in the country in which The Hotel operates that would allow them to convert acquired Bitcoin to their native currency if they prefer not to hold on to said Bitcoin, so being "stuck" with Bitcoin instead of their native currency isn't a problem and the fees relating to these conversions range, in total, from 3 to 7 percent, so it's not for free, but a lot better than the current 17% charged by the third party\n\n# Conclusion\n\nThe Hotel was reluctant to integrate Bitcoin into their income process. To remain professional, I only suggested it twice because the agreement is that I would make recommendations and if they are not willing to implement them then that's that. It's their business after all and they are still doing very well for themselves regardless. They don't need Bitcoin at the moment, but it would have complimented their business model in a nice way, in my opinion\n\nIf they had implemented it, the outcome would depend on various factors that are difficult to determine, like how many people would actually make deposits/payments with Bitcoin if they have that option? How many of the recurring clients would open a lightning wallet so that they can make bookings directly with The Hotel if they did not have a wallet before and how much of a discount to the listing price with the third party would The Hotel have to give for the direct booking to incentivize people to book directly?\n\n\n\n\n### I hope you found this article interesting. I really enjoy my work and in recent years I have developed a passion for Bitcoin. This platform seemed like a good place to share my thoughts and ideas as well as learn a lot from individuals that value the same kind of virtues that something like Bitcoin promotes. Decentralization, transparency and sovereignty\n\n\n\n\n\n \N 20987 \N 294868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5404428082366 0 \N \N f 286031532 \N 2 136003127 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446016 2025-03-20 21:11:59.88 2025-03-29 22:39:47.095 Dual-funding BOLT Merged! \N https://github.com/lightning/bolts/pull/851 9335 \N 446016 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.0942603657304 0 \N \N f 348747060 \N 3 100604799 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448796 2025-03-22 21:55:11.182 2025-03-29 22:39:47.096 What will catch Bitcoiners by surprise? What do you think will be the biggest surprises for Bitcoiners in the next few years?\n\nThese can be positive or negative surprises, but I’m specifically looking for things that deviate from the typical chatter and narratives one might see on Bitcoin Twitter.\n\nFor example, “Bitcoin is going to 100k this year” would not be a surprise for most Bitcoiners.\n\nBonus sats for creativity and interesting surprise predictions! \N 14990 \N 448796 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.66271473478395 0 \N \N f 158567599 \N 1 191312801 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:20:15.471 f \N \N \N 0 0 0 0 1 0 0 397861 2025-02-10 11:53:22.383 2025-03-29 22:39:47.096 El Salvador Trip report - 1/8 What could be a better place than a casual travel journal than Stacker News?\n\nI arrived in San Salvador today. It's my third trip, but the first time outside of a major Bitcoin event. I'm quite passionate about using Bitcoin (rather than just talking about it, or hodling it), and I feel genuine first hand information about El Salvador can be hard to come by, so I decided to share this with you all.\n\nTrip preparation:\n✈️ Booking flights with Bitcoin isn't easy! There's practically only Travala now (Future Travel shut down), and they didn't have a lot of choice regarding flights. I was able to get a much better deal directly through United, but that required me to take out a Bitcoin debit card, which i would have preferred to avoid.\n🛏️ Booking hotels directly isn't easy! Even if you write them directly and know they take Bitcoin, they often reply they only take Bitcoin in person, or are otherwise unable to send you a Lightning invoice or payment request by email. One hotel kept sending me invoices with a 15 minute expiration date over Facebook Messenger, and by the time I received it it was already 5 minutes old. Booking through Travala is a lot easier, and I can still pay with sats, but the hotel will not know that I did.\n🚗 Local public transportation isn't great, so I book a hotel transfer. I can pay with Bitcoin, but I also might be overpaying quite significantly over other alternatives.\n🛜 I got myself a Silent Link and a Bitrefill eSIM. The Silent Link card doesn't work at all, and the Bitrefill card has frequent connection outages, which can make paying with Bitcoin very awkward.\n\nSan Salvador:\nThe city feels so much nicer than the last two times I went (~1.5 & 2.5 years ago). There are cycle paths now, pedestrian crossing, there isn't an trash lying around anymore and far fewer cars blocking the road.\nIt's also noticeable more lively, which is really great to see. The construction sites I saw on my previous trips are largely completed, and actually filled with businesses and people. They feel much more friendly and open than the older buildings, have glass on street level and aren't gated with concrete walls in the same way. At least developers seem quite optimistic that the current peace will hold.\n\nBitcoin:\nYou still can't just walk into a business and expect them to accept Bitcoin. Even many places I've asked that do have a Bitcoin-related logo by the door say they don't accept it.\nUsing BTCMap helps a lot, but even some of the businesses listed there say they don't take Bitcoin. Card payments seem to be quite widespread and preferred.\nThere's some variety in payment processors, and they all work well. Blink, Ibex and Chivo is what I have encountered so far. There are some Strike logos on businesses but all say they don't take Bitcoin, when asked.\nThe McDonald's Lightning integration was one of the best user experiences around, and it's a shame to see it broken. I hear it's been like that for months.\nIt's quite clear that Bitcoin is not popular among young, well-off locals, and there are likely not enough foreign Bitcoiners living in San Salvador. \N 16124 \N 397861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.53567645430876 0 \N \N f 182981999 \N 1 74955944 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444471 2025-03-19 23:01:29.49 2025-03-29 22:39:47.096 How (Actually) Open AI Wins \N http://hivemind.vc/ai 4819 \N 444471 \N \N \N \N \N \N \N \N health \N ACTIVE \N 22.7382567570642 0 \N \N f 330933412 \N 3 245406069 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 433476 2025-03-11 06:15:15.519 2025-03-29 22:39:47.097 If You Could Give Someone One Advice In Life What would it be?\n\nI think my advice would be to invest in yourself and find out what that means for you. \N 1064 \N 433476 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 22.7586257179998 0 \N \N f 311611859 \N 3 102750495 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 349072 2024-12-30 07:11:15.675 2025-03-29 22:39:47.097 Base58 Spring Classes just went live Base58 is an engineering school, built on a bitcoin standard.\n\nWe just pushed out our class schedule for this spring, check out what we’re offering and join us for some really fun, challenging weeks of building bitcoin from the ground up.\n\nSome highlights:\n\ntwo new beta/class experiments: \n - an in-person covenants class. let’s make some promises \n - an online bitcoin bots workshop. let’s snipe some txs\n\ntwo new standard issue courses: \n - wallets, for devs! implement all the wallet stuffs (seeds to HD wallets to PSBTs to descriptors)\n- mempools: all about those mempools. rbf/cpfp, anchors, etc\n\ntwo classes now offered online!\n- Lightning BOLTs are now online\n- Taproot class is now online!\n\n\nhttps://base58.school\n\nPS if anyone has suggestions for how to make the calendar easier to see, i’m all ears lol \N 20511 \N 349072 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 13.0755329515587 0 \N \N f 83176396 \N 1 225992692 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 214244 2024-08-13 11:53:34.985 2025-03-29 22:39:47.085 We aimed to make the greatest bitcoin 101 video ever made. Instead we made this: \N https://www.youtube.com/watch?v=DvHUOr8ruMw 797 \N 214244 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 3.63095647287153 0 \N \N f 233596904 \N 2 85540711 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413743 2025-02-23 12:53:20.642 2025-03-29 22:39:47.086 On User Experience Ideals If the ideal UX is one that doesn't make us think, and implicitly doesn't make us do things, delivering the ideal UX probably means predicting the experience people want, doing what they want, and reusing thinking they've done in the past. Where predictions and reuse don't remove the need to think, we can reduce and reward remaining thinking. While there are many frameworks for improving UX, I find myself mostly trying to predict, reuse, reduce, and reward thinking. \n\n## Predicting thinking\n\nMost products are sold finished because suppliers predict or, if they have enough evidence, know buyers don't want to assemble their own products. Search engines predict, based on the few characters you've typed, what you want to search for. Predicting what people want, predicting what people will think given a set of choices, seems fundamental to product development. Unless what we want is to think, we'll wish to receive our wants without thinking or doing, and the best products will predict as much of this thinking for us and deliver the predictions best. \n\n## Reusing thinking\n\nMetaphors are a plain example of thinking reuse. A metaphor makes existing intuition portable to something new, and products or features can reuse thinking this way too. For example, we group related information together because related, non-information things are often grouped together; a tree's trunk is found near its roots and branches, and the tree is spaced from neighboring trees, and thus a tree is this group of its trunk, roots, and branches. Reusing thinking can come naturally, but sometimes there isn't an obvious analog for our new thing. Still, it can help to find even the roughest analog because being forced to think a little is better than being forced to think a lot.\n\n## Reducing thinking\n\nTechnology often removes thinking and doing. Elastic slip-on shoes removed the need for us to tie shoelaces. Most of us still wear laced shoes, but I'd guess that's because shoelaces are traditional and fashionable. Many products don't suffer or benefit from forces like fashion, so when making the equivalent of a shoe, its usually best to consider them without laces. Removing product features or steps in a product experience can be as simple as forgetting the other shoes we've seen and remembering the ideal shoe performs the tasks of a shoe best; the ideal shoe probably isn't an existing one with slightly better laces.\n\n## Rewarding thinking\n\nSometimes, thinking isn't subject to prediction, reuse, or even reduction. Often, certain kinds of thinking are part or the point of a product. Having otherwise removed or reduced thinking, customers can fully attend to required or desired thinking, and while that's a significant benefit on its own, we can pursue opportunities to reward customers further. The message you want your product to send isn't only "we know what's important to you" but also "we're grateful for you" which often means making sacrifices beyond the product's scope or specification. A customer may be 100% satisfied with your product, but if you can provide satisfaction external to your product too, whether tangible or emotional, the total satisfaction your product provides can exceed 100%.\n\n## Introducing new thinking\n\nI like to imagine the ideal UX creates a thinking surplus to be spent on introducing new thinking. New products often require new thinking, and we need customers to reserve enough thinking to experience the unique value our product delivers. The above rules can be applied to any thinking we imagine is new, but the unpredictable, irremovable, irreducible thinking that's left over is the anti-experience that's created when new experiences come into being. As you learn to predict, reuse, reduce, and reward this new thinking, you can introduce more new experiences and thinking. Hopefully, before long, you've created tons of accessible value that didn't exist before.\n\n----------------\n\n*Forgive how naive this all sounds, and forgive my tone if it sounds authoritative. I haven't formally or even informally studied user experience. I'm mostly boxing up, in this abstract half-baked form, how I think about UX when I think about it to the extent that I can think about it. I'm not sure any of this is even directionally onto something, but it's what my mind produces when I try to put my feelings about UX into words. If I were better at writing, each sentence would have in it some form of "maybe" or "probably" and end with a question mark. So, imagine those are there.* \N 17568 \N 413743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8900269800546 0 \N \N f 115763129 \N 1 96792739 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2990 2022-10-22 23:11:06.352 2025-03-29 22:39:47.087 @k00b Has Shadow Banned the Bugle So on Twitter, a common growth hack for gaining recognition and followers it to post periodically about getting shadow banned, then complain about the platform. I have seen multiple accounts go through the roof in following and engagement as a result of such practices. \n\nThese individuals did not even login to sketchy websites and give them permission to access their twitter accounts in order to take screenshots of their supposed shadow banning, suggesting they may not have been shadow banned in the first place. \n\nI do not have reason to believe that @k00b has shadow banned me, but I figured I would try this growth hack out on this website to see if I can milk you all for engagement. There is a risk of being discovered by @Car and @k00b though and actually getting shadow banned. \n\nThe benefits appear to outweigh the risks. \N 18269 \N 2990 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.0603458825433 0 \N \N f 696057911 \N 7 67637273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443169 2025-03-19 05:44:31.24 2025-03-29 22:39:47.087 Visually pleasing posts: How to improve your Markdown writing on SN First thing first... as per my nym, I'm a designer, and am here like you to take the opportunity to improve my writing skills.\n\nThis isn't either another explanatory article on what's the syntax and how to use it. For that you can click on the [`[M↓]`](https://guides.github.com/features/mastering-markdown/) icon in the top-right of the editor when writing. Not everyone know what markdown is, but we all know the basics of formatting text with **bold**, _italics_ and other artifacts to improve the readability of the knowledge we aim to share. \n\nI felt there's a general lack on this regard here on SN. Just wanted to provide some guidance on how to improve quality of your writing skills, with time, patience and maybe using some tools that allow you to save the copy, rest and return reading it with a fresh mind before publishing it.\n\nFrom my experience, it has been really useful to prepare the posts offline, read them edit when needed and when possible have someone else to share it with before posting it here.\n\n- - - \n\nTo do that tried multiple tools, obviously open source and below you can find some of the best I was able to select:\n\n[Zettlr](https://www.zettlr.com/) `ALL OSs`\nYour one-stop publication workbench. From idea to publication in one app: it accompanies you while writing your blog post, newspaper article, term paper, thesis, or entire book!\n\n[Ghostwriter](https://ghostwriter.kde.org/) `ALL OSs`\nEnjoy a distraction-free writing experience, including a full screen mode and a clean interface. With Markdown, you can write now, and format later.\n\n[Marktext](https://www.marktext.cc/) `ALL OSs`\nA simple and elegant markdown editor that focus on speed and usability. It also has Formula and Diagrams support, unfortunately not yet supported here on SN.\n\n[Rentry](https://rentry.co/) `ONLINE`\nFast, simple and free. A markdown paste service with preview, custom urls and editing. Nice but it has some limits like 200k characters for text field, 2-100 characters for custom url field (must contain only latin letters, numbers, underscores or hyphens) and 1-100 characters for custom edit code field (anything is allowed here).\n\n[Stackedit](https://stackedit.io/) `ONLINE`\nThe in-browser Markdown editor, offers an unrivalled writing experience enhanced by WYSIWYG controls, Smart layout, Live preview with Scroll Sync and ideal collaboration functionality that allows you to insert inline comments and embed collaborator discussions in your files, just as well as famous ones does.\n\n[MacDown](https://macdown.uranusjr.com/) `MAC only`\nWhen current available Markdown editors are almost all for general writers, MacDown is different: It's for creative developers. Syntax highlighting, live preview, sync scroll, fullscreen mode, auto save, powerful actions, auto pair, custom themes and CSS, HTML and PDF export, enhanced CJK support. I know, it's exactly the app you want.\n\n[Retext](https://github.com/retext-project/retext) `LINUX only`\nA simple but powerful editor for Markdown and reStructuredText markup languages. One can also add support for custom markups using Python modules. Just like that! \n\n- - - \n\nIt is really easy to get caught by our emotions and start ranting down anything that pass through our mind... it's also a really hard process! We think at a speed that our body can not replicate and most of our thoughts get lost during the writing process, fixing typos and rephrasing, we lose sometime the thread of what we wanted to communicate.\n\nAll of us think and speak faster than we can write, and when we are thinking and writing, guess what we’re concentrating on? One strategy is to learn a little shorthand or condensed writing that you'll expand on when reading back to edit and improve it. Another to improve your WPM (word per minute) skills with tools like [typingbolt](https://www.typingbolt.com/) and [keybr](https://www.keybr.com/) or [testing your current speed](https://www.keyhero.com/) and might also [get a certificate](https://www.ratatype.com/typing-test/)!\n\n\nOther tools that you could use if you are a good speaker is to try a speech-to-text software. I'll leave that for another post! Hope you find this useful, and please, feel free to share tour tips and tricks below so we can all learn from each other experience.\n\nUh, and don't forget the keyboard shortcuts like `ctr`+`b` for bold text, `ctr`+`i` for italic and `ctr`+`k` for inserting a [link](#). \n \N 2309 \N 443169 \N \N \N \N \N \N \N \N science \N ACTIVE \N 26.933505598308 0 \N \N f 78686966 \N 1 160991299 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 02:46:33.12 f \N \N \N 0 0 0 0 1 0 0 420698 2025-02-28 23:42:51.425 2025-03-29 22:39:47.087 Jippi - Pokémon GO for Bitcoin - Now Crowdfunding Invest in our Crowdraise through Timestamp: https://invest.timestampfinancial.com/offering/jippi/details. Further details on the [Jippi website](https://jippi.app/).\n\n![](https://m.stacker.news/61254)\n\n⚡ Introducing Tribe Clash by Jippi, the world’s first Pokémon GO-inspired bitcoin education game.\n\n⚔️ Create or join a tribe and battle for dominance over a city with your friends by catching a bitcoin beast in each of the 21 real-world territories.\n\n✅ Answer quiz questions about bitcoin to catch each bitcoin beast.\n\n💎 The winning tribe with the most beasts and territories at the end of the game wins $30k in bitcoin.\n\nPlebLab Company • TopBuilder Semifinalist • No Shitcoins \N 641 \N 420698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.26446377999783 0 \N \N f 151241251 \N 1 193099808 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402684 2025-02-13 22:56:44.66 2025-03-29 22:39:47.088 Mutiny Wallet - Full Tutorial From Basics To Advanced \N https://www.youtube.com/watch?v=bUbee0BUquo 18956 \N 402684 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.43809283423665 0 \N \N f 150300200 \N 1 27562 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402899 2025-02-14 08:38:02.862 2025-03-29 22:39:47.088 Bitcoin is completely changing how people remit money. (And that's a good thing) My go-to setup right now is to buy bitcoins with Alipay via HodlHodl escrow.\nThen if I need fiat, I sell via Peach and get Euros into my Wise app.\nThis lets me spend fiat when I go home to the US or if I need to send money (aka fiat) to someone. E.g., my grandma has been on a fixed income for decades and I've started sending her a few hundred dollars a month. This setup allows me to do that easier than if I wanted to send Chinese Yuan directly to her. \nI call my guy in China (actually I telegram chat him) and 5 min later I have my sats. \nThen it's as simple as sending some UTXOs to Peach for someone to buy with Euros. And Wise will help me send that home as USD.\n\nNow, let's say you are a high-net-worth individual (HNWI) that wants to send millions or billions of dollars. Want to send $5 million from the US to your business counterpart in Japan? On a weekend? At night? On a bank holiday? You can do this for a few dollars. The fee would depend on network traffic and the number of [UTXOs](https://unchained.com/blog/what-is-a-utxo-bitcoin/).\n\nIn the transaction below the sender sent roughly $1 billion for the price of a coffee.\nThe transaction is visible [here](https://t.co/7zFzSRItFf) at blockchain.com\nHere's the tweet about it:\n\n> "112,027 BTC ($933,000,000 USD) transferred in a single transaction for the price of a cup of coffee (Tx fee = $3.89). #bitcoin \n — Nejc Kodrič (@nejc_kodric) October 14, 2019"\n\n\nBitcoin is replacing an antiquated system. One where it requires bank tellers, forms, permission, working days, and wire fees to send money. Now you just need a cellphone with your bitcoin on it and a receiving address.\nSending remittances (sending money from one place to another) is a huge industry today. It's projected to reach almost a trillion dollars globally by 2026. [globalnewswire.com](https://www.globenewswire.com/news-release/2020/05/05/2027690/0/en/Remittance-Market-Size-to-Grow-930-44-Billion-Globally-by-2026-At-3-9-CAGR-AMR.html)\n\nYet [in 2011](https://www.cryptovantage.com/news/here-are-the-5-biggest-bitcoin-transactions-in-history/), only two years after Bitcoin was born, someone sent 500,000 bitcoins over the Bitcoin network. At the time, this represented $1 million dollars worth of value. But today that would be worth a cool $14 billion.\n\n\n \nBitcoin is especially king if you are sending money home to family. Remittances are a primary source of income for many countries. In Tonga, money received from family accounts for over 40% of their GDP. In El Salvador it's in the low 20s. [data.worldbank.org](https://data.worldbank.org/indicator/BX.TRF.PWKR.DT.GD.ZS?most_recent_value_desc=true)\n\nAnd funnily enough, these are the types of countries--Tonga & El Salvador--that push for Bitcoin adoption. Why do you think that is? \n\n> El Salvador’s new bitcoin plan could cost money providers like Western Union and others $400 million a year, says President Bukele. [CNBC](https://www.cnbc.com/2021/09/09/el-salvador-bitcoin-move-could-cost-western-union-400-million-a-year.html) \n\nYou can stop paying 1-25% on remittances (depending on country and method of payment) and pay a small fee to miners. Or use [Jack Mallers'](https://twitter.com/jackmallers) Strike app. With it you can send small amounts of money with very little fees to places like [Vietnam](https://twitter.com/jackmallers/status/1638982216754647060?s=20), the [Philippines](https://twitter.com/jackmallers/status/1620486166964477952?s=20), [Nigeria](https://twitter.com/gladstein/status/1601639973941174274?s=20), and [Ghana](https://twitter.com/jackmallers/status/1601242814498893825?s=20). Family members can receive their local currency directly to their flip phones. And it's powered by Bitcoin's Lightning Network (A second layer solution created to help Bitcoin scale).\n\n\n_100% AI free_ \N 19217 \N 402899 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 6.34503009941419 0 \N \N f 129214268 \N 3 226680984 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 410534 2025-02-20 14:22:11.722 2025-03-29 22:39:47.088 Joe Biden withdraws his nomination for the 2024 presidential election. ![](https://m.stacker.news/40773) \N 4035 \N 410534 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.4765343491421 0 \N \N f 767650748 \N 6 6399872 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 443272 2025-03-19 08:18:05.631 2025-03-29 22:39:47.088 Ask SN: which OTC did you tried? I am asking for a friend that wants to do a large transaction to buy BTC, using an OTC.\n\nPlease, if you used in the past such services, post them here, including your experience (bad or good).\nIf you do not want to reveal your SN nym, post it as "anon" please.\n\nI am just gathering some info for my friend.\nWill zap each good answer. \N 10063 \N 443272 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 4.04937679277513 0 \N \N f 1445006148 \N 12 29620572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 07:28:49.591 f \N \N \N 0 0 0 0 9 0 0 320825 2024-12-06 15:52:31.138 2025-03-29 22:39:47.089 Robosats Beginners Guide # Introduction\nYou can buy bitcoin (BTC) on centralized exchanges, and peer to peer (p2p).\n\nA lot of people prefer p2p BTC buying solutions over exchanges because:\n- **more private**: there is no central entity who knows about all of your transaction history, and can decide to share it with anyone without your consent. \n- **more control**: There is no central entity who can decide to freeze your account, can decide that you are not allowed to do something with your own money, or even to just get back.\n\nThere are multiple peer-to-peer BTC buying solutions, such as Bisq, Robosats, hodlhodl. Every solution has its own benefits.\n\n# Benefits of Robosats:\n1. Uses the tor network: enhances privacy \n1. Uses anonym identity for trade, and you can generate a new one for every order/transaction: enhances privacy\n1. Uses lightning network (you can get BTC either on-chain or on lightning): makes bonds* easier, transactions cheaper, and lightning can also enhance your privacy\n1. Uses Tor browser, so can be used on a phone, and even has an application version.\n\nbonds*: they are payment guarantees to eliminate bad behavior. In case of bad behavior, the bonds can be lost.\n\n# Why I use Robosats over Bisq and hodlhodl:\n- Robosats is the only lightning network solution, other solutions require BTC on chain that is more costly\n- hodlhodl uses clear web (no tor): less privacy\n- hodlhodl and Bisq use the same identity for all trades: less privacy\n- Bisq is a desktop app, can't be used on a phone: less portability\n\n# How does Robosats work:\n1. You create an order with a FIAT price, FIAT transaction methods, the premium you prefer to pay above market price, and the % of bond you require.\n1. You lock up the bond on the lightning network.\n1. You wait for someone to take your order.\n1. He locks up his bond.\n1. He puts his BTC in escrow*.\n1. A chat will pop up, where you can discuss with the seller, how he needs the fiat payment.\n1. You pay the FIAT money to the seller with the agreed transaction method.\n1. He releases the BTC from escrow to your on-chain or lightning address.\n\nescrow*: During these transactions the sellers have to deposit their BTC into an escrow, that makes sure for the BTC buyer, that the seller has the BTC. The BTC can only be released by the seller, but he can only send it to the buyer, or with a problem resolution, it can be released back to him. This escrow makes sure, that the BTC is available, can be sent to the buyer's address when the buyer sent the equivalent amount of fiat to the seller, and the seller can't behave badly.\n\n# Fees\n- Premium: this is not really a fee, but you pay it as an extra over market price\n- There is a trade fee, which is 0.025% from total sats amount\n- If you use on-chain to get paid, then you will have the following fees as well:\n - Swap fee: 1.02% from total sats amount\n - This is the fee to swap sats from lightning-network to on-chain\n - Mining fee: depends on the `sats/vB` you set (does not depend on total sats amount)\n\nThe total sats amount is `FIAT / BTC market price`, because the premium goes to the seller.\n\n# Payment methods\nThe usual payment methods are bank transfers, gift cards, and even cash is possible, but then you have to meet the seller. As p2p BTC buying is about control and privacy, it is better to try to use more private payment solutions. \n\n## Privacy\nOne of the most private payment solutions is cash, but for that, you need to meet in real life. This can be inconvenient. \n\nThe other most private solution would be buying gift cards in a shop with cash also. The disadvantage of this is, that your money is locked in a gift card, and if noone takes it, either it is stucked in the gift card, or you have to use the gift card.\n\nThe second most private is buying gift cards online, but in this case, the gift card is already traceable to your account. But still you are not giving your bank account to anyone, and the gift card seller has to be contacted to make the tracing possible. In some cases, your account name will be shared when you redeem some gift cards. But you can setup a new account with a fake name, and then only that will be shared. But when you use your bank card with that account to buy the gift card, then you can also be connected to the account. But still it will require more work for traceability.\n\nThe least private solution is using a bank account, because then you have to share your bank details.\n\n## Disposability\nThe second thing to consider for selecting a payment method is disposability. If you buy BTC regularly with your bank account, and it won't be preferred, then your bank can either deny these transactions, or lock your whole account. This can have bad consequences for you.\n\nSo if you prefer to use your bank account, it is advised to use a separate bank account for this, not your main one. In this case, if anything happens, your main account is not effected. You can use an older bank account you don't use, or create a new one with Revolut, Wise, etc. Usually it is advisable to select a new bank account that supports fast wire transfers, because people usually go for those orders.\n\n## Salability\nThe third and most important thing is, that you need buyers/sellers for your orders. You can select any type of private solution, but if no one is willing to use it, you won't be able to stack your sats.\n\nDepends on the location, but usually bank transfers are the most salable, but the least private. People prefer it, because then they get FIAT directly, that they can spend on anything. Gift cards can only be spent in the shop the card is from. Also cash is less preferred, because can't be done over the internet.\n\n# Frequently Asked Questions\n### What prevents the BTC seller from stealing my FIAT?\nThey have to lock the BTC they sell in escrow before you send your FIAT, and then they can only release it. Or if there is a mutual agreement, they can get it back. Until they don't lock it, the chat won't open up, and you can't send your FIAT.\n\n### What BTC price is used for transactions?\nThe market price is used, and the premium is added on top of the market price you set. This means, you don't specify a specific market price, but a premium that you are willing to pay over any market price. \n\n### How to get BTC on-chain instead of on lightning?\nWhen your order is taken, and the seller locked his bond and escrow, you can either give a lightning invoice that the seller will pay, or a BTC address where the on-chain BTC will arrive. In case of on-chain BTC, you can even define the mining fee.\n\n### Why would sellers sell BTC on p2p?\nThey are incentivized to do so with the premium that buyers are willing to pay for p2p or non-KYC BTC.\n\n### How much time does it take to buy BTC on Robosats?\nIt depends on your order. If you use commonly used payment method and set a reasonable premium, then it can be really fast. But if either you select a not popular payment solution or too low premium, it can take even a day or more to find someone for your order. \n\nFor the premium, you can check the suggested premium on the chart view.\n\nFor the payment methods, you can check the currently available BTC sell orders, because you want a BTC seller to match your buy order.\n\n### Why does it make sense to put out your own order?\nUsually BTC sellers are creating orders with higher premium because their goal is to sell their BTC for more profit. Buyers are the opposite of this, and want to get cheaper sats. Due to this, sellers are creating orders with higher than necessary premium, in case someone buys them, but in the mean time orders with meaningful premiums are also getting accepted. So if you don't want to pay too high premium, you most probably have to create your own order. \N 8045 \N 320825 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7804362055721 0 \N \N f 408172607 \N 3 182079120 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404570 2025-02-16 01:10:11.214 2025-03-29 22:39:47.089 Haha, DarthCoin bullied Blink into implementing a user interface change \N https://github.com/GaloyMoney/galoy-mobile/pull/2898 17710 \N 404570 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 0.09748043464473 0 \N \N f 514527807 \N 3 27952207 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443438 2025-03-19 10:58:11.838 2025-03-29 22:39:47.09 Driving More Users To Stacker News Ever since I founded some territories here on SN, I find myself on here every single day. The biggest issue that have on here is that there's not enough fresh content for me to consume all the time. I often scroll through the home feed only to find old posts too quickly. Many territories don't even get a single post every day. \n \nTo solve this problem, we need more users. We don't want just any users though. We need more quality posts to keep us all engaged and we also need more quality commenters in key territories like Bitcoin _Beginners and Bitcoin_Mining, etc to answer all of the questions and then receive zaps for their quality contributions. \n\nNaturally, the most obvious platforms that we could attract talent from are Reddit and BitcoinTalk because these platforms do basically the same thing but they don't have a good incentive model. You can't post images directly in reddit comments and the reply system on BitcoinTalk is so dated and difficult to follow. \n\nGetting "paid" in merit, reddit gold, and upvotes does little to help you in the real world. Pay to post, value for value, boosting posts, and zapping sats has utility beyond the website.\n\nBasically Stacker News is better than both platforms because it has a better UI and a better incentive/reward model. \n\nHow can we incentivize more quality posters to make the shift away from Reddit and Bitcoin Talk over onto Stacker news? \n\nOne thought I had is that anyone with a BitcoinTalk account could add their referral link to their profile signature. \n\n![](https://m.stacker.news/67338)\n\nDoes anyone have a BitcoinTalk forum account that we can use to drive traffic here on SN? I do but I don't have enough merit to add images to my signature so any links in my signature are likely to go unnoticed. I know that @Kruw has an account on there and I think I recall @DarthCoin saying that he has an account that he doesn't use anymore. \n\nHow much talent could we incentivize to make the switch over here to SN if we just added banners with our SN referral links to BitcoinTalk signatures?\n\nAs far as reddit is concerned, I'm not sure how we could get in front of bitcoiners without buying an ad or bribing a mod in r/bitcoin or r/bitcoinbeginners\n\n**How do you think we can we get more quality posters and commenters here on SN?** \N 3642 \N 443438 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 4.73682533746324 0 \N \N f 5937388 \N 1 47888600 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:37:27.839 f \N \N \N 0 0 0 0 1 0 0 412395 2025-02-22 11:12:35.884 2025-03-29 22:39:47.09 Fossil Fuels are Fiat Energy. Reorg of the mining space coming ⚒️ Public bitcoin mining companies in their current iteration are frustrating, with an exception of a couple, and I'm tired of making excuses for them. \n\n- Their debt strategies suck\n- Their BTC treasuries are volatile, have never consistently increased over the longterm, and with the distribution cycle and competition, there's no reason to believe they ever will\n- They flirt with insolvency every bear market\n- They're oblivious to how far it would go if they paid a simple dividend in BTC even if it's just few inconsequential sats\n- They put perpetual sell pressure on BTC\n- They love nothing more than diluting the shit out of shareholders, a quarterly experience when debt is cheap, which would be fine if the money was used with wise eyes to the future\n- Actually they do love something more: losing money\n- They virtue signal the Lightning Network\n\nTheir fiat game goes like this: collateralize coin, borrow fiat, buy mining rigs, dilute shareholders, blow-up, repeat in no particular order. Sometimes looking over these company's 10-K reports I feel like I'm seeing what the lion, scarecrow, and tin-man saw. \n\nMy initial feeling is that Blackrock *et al's* foray into institutional ownership of mining stocks is because they want miners to eventually become AP's (Authorized Participants) in the ETF's *creation-issuance-redemption* cycle. No guarantee this works and I'm just speculating. Also, they perhaps see advantages when the dozen or so publicly listed miners eventually consolidate in a great reorg of the space, because of my grievances listed above, and because they might get themselves specially taxed (from their own stupidity), and because of the actual topic of this post, which is energy storage, something that can encroach on their unique energy market positioning.\n\nDisclosure: I trade some of the miners via derivatives. I don't *invest* in them. I'm only invested in chemicals and bitcoin, and see no reason to invest in anything else unless it's a business I own or am building. But hey, that's just me.\n\nSo in a *tl;dr* refresher, here's the elephant in the room regarding renewable energy sourced from the wind and sun:\n\nIntermittence—the wind and sun are not consistent. Thusly, even when wind and solar setups produce enough energy to provide an area's gross wattage every 24, there's no way to distribute it as grid circumstances demand, with its peaks and valleys, while maintaining the 60Hz heartbeat. This is why baseload energy expenditure is necessary to balance the grid, and maintain the heartbeat; this means natural gas, coal, nuclear, hydro, commercial geothermal, or a mix. Grids have a simple mandate: *reliability and uptime*. So what happens to all the excess renewable energy produced off-peak? It gets wasted.\n\nBitcoin miners can step in and absorb this excess. It makes them unique. They can power on and off their entire facility in just minutes, which makes them well-suited for demand response as well. But guess what else can occupy this space? Energy storage. It's nascent, but there's a great power building behind it. Trying to find the common denominator of both, and distilling them into a single phrase, I thought up this:\n\n\n## ***Increase the financial and environmental value of energy assets.***\n\nI wonder then if this is where energy and bitcoin really start merging. They're complementary, and it opens the door for mining into the subsidy game. Yes, bitcoin mining is about providing network security (I would argue it's more about transaction finality), but we're not talking about mining with your laptop's CPU stealing university dorm Kw's. We're talking about ASIC farms and **publicly** listed commercial facilities with industrial connections to energy grids that will need to find a way to incentivize renewable energy assets and provide returns. Renewable energy is already the cheapest form of energy per kWh. That's great for the first half of bitcoin mining's current economy of scale:\n\n- cheap electricity\n- access to capital\n\nRenewable energy is also the fastest expanding type of energy. But in the fiat world, it's not the most profitable type of energy. That's probably confusing and doesn't make sense, so the best way I can think of explaining that statement of fossil fuels being the most profitable type of energy in the fiat world is the Industrial Revolution: \n\nWe went from water power to steam power by way of coal. Water power however, was cheaper than coal. So trusting liberal economists, water should’ve dominated industrial production energy inputs, and coal should’ve been limited to its specialization: transportation (trains, boats, etc). \n\n>**But that’s not what happened.**\n\nCoal was better for exploiting human labor, so it was more profitable than water. Water was geography dependent, so you had to bring the people to the water. If those people strike or organize, you won’t find replacements. Fossil fuels could be brought into population centers, where impoverished people and immigrants, cut-off from any community managed farms where they might have skills, were easily exploitable. And as long as you keep shoveling coal, you can work people 24/7. Then you might even pay them in company scrip which is spendable at store networks they own. The limitation is only the amount of people and amount of coal you have. Water is hard to collect and privatize. Coal was not, and although more expensive, coal was an excellent source of surplus value. Fast forward to today, and that's microcosmic of the fiat world bitcoiners sometimes rail against even if they don't know it, with its literal hardened connection to fossil fuels via the petrodollar. You see renewable energy is difficult to monopolize and control. It’s too decentralized and cheap. The sun and wind are everywhere. It’s in bitcoin mining’s wheelhouse, and as an aside, it's another reason I don’t like proof-of-stake, because:\n\n- Energy: distributed\n- Capital: concentrated\n\nA bitcoin world introduces a disinflationary base layer, different incentives, fixed monetary principles, fixed liberties, and is a referendum on unfettered *growth*, imagining it more as unfettered *development*. \n\nReplacing this system is daunting, and I posit that breaking fossil fuel dependence is necessary for a true bitcoin standard. That said, fossil fuels will be needed for quite awhile, and we shouldn't upend an entire energy economy for technologies that are not yet mature. That would be silly. And on the other side, we shouldn't conflate the whole of renewable energy based on its visibly failed actors, like confused bitcoin critics do calling it *crypto* and referencing LUNA, FTX, and Celsius.\n\nRenewable deployments are surging out from under the pandemic-related delays and supply-chain woes. The prices are collapsing too, so much so that they're actually hurting. \n\n![](https://imgprxy.stacker.news/KoeDAKLWnWXn6IO7mfW-vyzA-G4cHsQZ8QnoxhLJ5Vo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8xNTg1Yjc4MTEwZjNkYTliZTZhNWI5MzYzNjQ5ZGRkNWRkYTlkMzE2MDY0MjBjOGQzZmU3NGU2Y2JhOWMzZWJiLmpwZw)\n\nBack to energy storage. It's coming commercially, even if innovation is taking longer than you have patience. It'll be a mix, and the design pattern of storing/exploiting excess off-peak renewable energy is somewhat established:\n\n- chemical batteries\n- gravity batteries\n- green hydrogen via electrolysis \n\nThe expenditure of resources (from human IQ to government subsidies) in these domains is enormous, and beginning to yield awesome results. Solid-state lithium was sci-fi just 4 years ago. Now we're inching closer to commercial versions. Every month there's headlines of a new major lithium mine [discovery](https://www.thestreet.com/travel/a-1-5-trillion-discovery-was-just-made-in-the-middle-of-a-nevada-supervolcano). And too, we're seeing a rapid buildout of commercial lithium recycling facilities all over the world which were heretofore a missing piece of the puzzle. AES Corp has broken ground in Texas on their $4B green hydrogen production facility which will be the largest in America. Saudi Arabia is building the largest green hydrogen facility in the world as part of the NOEM project. Ethiopia's GERD hydro dam will provide 80% of the country's electricity and lift half the population out of poverty. Energy Vault is just weeks from completing their 100MW gravity battery storage in China, and their modular 35MW gravity battery facility in Texas. I'm watching the latter very closely, because if it meets its endpoints, especially getting over 80% efficiency, it could proffer another tool for commercial energy storage that's cheaper and more durable than lithium without any of the messy environmental backend (which admittedly is getting incrementally better). It's just good to see we're finally at the point of put up, or shut up with these. Here's a short [video](https://youtu.be/dQSOj-LfaSE?si=QlsUGmNl4zODs6HB) on how the Texas battery works.\n![](https://imgprxy.stacker.news/eODi8v_jPcEgOzT7sCF7FdewH_BI-eMWIBHPIcYq9U4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC9jNDJjMWQxM2MxMWQzN2I2MGZmZGZlODAxYjZiYmM0MDMzMDY2NDFmOTFlNWViMGRkMTBhMTdmMGMzNGE2NzBmLmpwZw)\n\nThere are many different kinds of gravity batteries. The simplicity is attractive in an Occam's razor way, and the tech is nothing new, but besides pumped-hydro and clocks, they've never served a purpose until now thanks to the renewable conundrum. You see this dusting-off happen with old computer science solutions sometimes, which is another reason research and building is important, even if it doesn't yield an IPO or get strangers to sleep with you. Fiat minded Lambo shit. \n\nMaybe there's arguments that subsidies are part of the fiat game regarding green energy. Subsidies built the fiat energy system. Eventually fiat had to rug the gold commodity to form a connection with the energy commodities. The petrodollar system went suddenly after a short period of volatility during the transition. It worked for over 50 years with no significant loss in Treasury demand. Unfettered growth. Any expansion in energy was necessarily an expansion of the USD. It was able to control the negative effects of its monetary expansion quite well this way. But no debt cycle is infinite. Time to subsidize a different commodity and build a new system. This is a very unique commodity. Oil gets rugged first. Then the rest. Embrace just a little bit of Dark [Maximalism](https://stacker.news/items/249425). \n\n\nAnyway, post over. Not sure I agree with everything I said, and it was a mess, but I like using Stacker to help clarify my own thoughts. Sats for criticism. Lot's of sats for high-rez criticism. You know the rules. \n\n \N 2431 \N 412395 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 2.09858706251566 0 \N \N f 165056926 \N 1 189930785 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435576 2025-03-12 19:47:42.416 2025-03-29 22:39:47.09 SN and the Zen of 1sat=1sat **SN and the Zen of 1sat=1sat**\n\nI used to always have the SN ticker set at the Bitcoin price while on the site. Even though I am a long term Bitcoin holder, daily DCAer who has never sold a sat and doesn't plan to for a very long time, I did find constantly having the price displayed enabled reactive behaviour in me that I did not find productive. I would see a substantial price change in either direction and get a dopamine rush. What happened? Why did the price change so much? Let me check the chart, let me scroll twitter to see if there is any news. \n\nOne of my favourite things about SN is, aside from betting on it or doing push up challenges related to it, the community rarely talks about price. I have been on SN when the price was plummeting below 20k and I have been on SN when it was rocketing above 70k and for the most part no one was talking about price. Which just speaks to the quality, conviction and focus of the SN community. \n\nBeing what I like to describe as semi-retired (I still need to work but can be very selective in terms of what I do and when), SN is one of the primary ways I spend my time besides hanging out with my family. Considering I am highly invested in SN I want to cultivate the best experience possible. \n\nNoticing that having the Bitcoin price constantly at the top of the screen was a negative experience for me, a few months ago I switched it to 1sat=1sat. I had done this before for short periods of time but inevitably ended up back at the price due to curiosity. Not this time though. 1sat=1sat is and will remain the standard. Although a simple change, it has definitely improved my SN experience and helped me focus on what's going on in our little frontier town. \n\nIf you haven't tried switching the ticker just click on the price and it will switch. There are a few other options such as sat/$ price, block height, current sat/vB rate etc but for me 1sat=1sat is the perfect reminder that I am not in bitcoin for the USD price and I am not on SN to think or talk about price.\n\nThanks for reading.\n\nSats for all,\nGR\n\n \N 686 \N 435576 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 17.8745984907645 0 \N \N f 92572670 \N 2 79830617 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 05:14:43.939 f \N \N \N 0 0 0 0 1 0 0 438486 2025-03-15 15:30:17.134 2025-03-29 22:39:47.091 What made you want to become a dev? For me:\n- I wanted to work on/in Bitcoin\n- I wanted to be able to build my own tools\n- I wanted to make decent money\n- I wanted a safe skillset so I could have a risky career \N 1389 \N 438486 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 22.8422204231521 0 \N \N f 167283093 \N 1 89295383 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 429509 2025-03-08 11:16:15.248 2025-03-29 22:39:47.092 [New Pod] Complexity Rules Everything Around Me with Lyn Alden This was a fun and fascinating conversation with @lynaldencontact! We discuss a number of topics about which she’s not typically asked. One common thread throughout the conversation is how best to understand and invest around complex systems. Please note that while Lyn and I discuss some biohacking/energy boosting stuff, we’re definitely not doctors, so do your own research ;)\n\nListen on: \n[Fountain](https://fountain.fm/episode/DwCEXFLNpWjUBpIpUJSD), [Apple](https://podcasts.apple.com/us/podcast/complexity-rules-everything-around-me-with-lyn-alden/id1731637285?i=1000675372927), [YouTube](https://youtu.be/w78nH7d-N6c), [Substack](https://hivemindvc.substack.com/p/complexity-rules-everything-around)\n\nHere are a few topics we cover:\n\n\n**Energy Hacks**\n\n- Lyn’s favorite energy boosting hacks, including: magnesium, sardines, vitamin K2, vitamin A, cold plunges, and sprinting\n\n**Complexity and Permaculture**\n\n- Lyn’s fascination with permaculture and the application of permaculture principles to our information diets\n- How Lyn builds a brand around being open and intellectually honest to avoid group think and audience capture\n- Top down vs. bottom up (Communism vs. Capitalism) is the big story of the 20th century that continues today\n\n**Nostr**\n\n- The promise of Nostr as a new substrate for re-wilding the web and its ultimate TAM\n- Evaluating Nostr vs. other systems/protocols attempting to build a decentralized identity/data system\n- NOSTR project requests from Lyn and Max\n\n**Big Tech and AI**\n- Lyn’s take that AI is a continuation of the cloud computing wave, which means it’s centralizing in the medium term \n- BUT these big companies are snatching defeat from the jaws of victory by restricting and closing off their products, which leaves an opening for tech that’s a year or so behind but actually open and less neutered\n- Lyn is less bullish on AGI; the biggest breakthroughs are likely to come out of left field like trillion dollar health care companies\n- Lyn is also less bullish on robotics because it’s energy intensive and more complex; software often goes faster than you think and hardware often goes slower than you think \n\n**Open Source Software and Companies**\n- The big winners from open source software are platform aggregators (e.g. AWS) and users \n- Lyn analogizes companies built on open source software to ETFs - products with trillions of dollars under management but companies like Black Rock, State Street, and Invesco, which are big but not massive. BlackRock is a $160B company and only half of that is ETFs. Big but not Google or Apple. ETF businesses are worth a couple hundred billion for an industry worth >$10 trillion; the true winners here are the users as margins race to the bottom \n\n**MicroStrategy**\n- Can $MSTR sustain its premium trading 3x to NAV ?\n- $MSTR advantages: founder control and growing liquidity network effects (e.g. MSTR options markets); very few ETFs and companies will achieve sufficient liquidity in their options markets \n\n**Bitcoin and Energy** \n- Bitcoin is energy backed money - external entropy is what makes the Bitcoin system not circular logic (like proof of state) and a truly autonomous system\n- Both Lyn and Max track energy price/density models for Bitcoin \n- Lyn also uses MVRV Z-Score for tracking fair Bitcoin price https://fountain.fm/episode/DwCEXFLNpWjUBpIpUJSD 19813 \N 429509 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.07234668061763 0 \N \N f 249387628 \N 3 129061387 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434791 2025-03-12 08:43:52.881 2025-03-29 22:39:47.092 A brief monologue on value4value You hear a lot about value for value (aka v4v) in this space. I think it's something that makes sense in theory, but often doesn't click until it _happens_ to you.\n\nSeeing the rewards system go through various experiments has gotten me thinking about my niche in this community. I don't really post a lot of new content - mostly comments on other's posts, chiming in to discussions, etc.\n\nBut where I've really found a home is by contributing to SN itself via FOSS work. I feel this is my best way to add value to the ecosystem, at least for the time being. It's extremely satisfying to see folks use the changes that I make as part of SN, alongside the changes of the other engineers. The sats that come in from that work is icing on the cake. I feel this is a tremendous example of v4v.\n\nSo anyway, thank you for being here. Thank you for reading this brain dump. And thank you for encouraging others to provide value! \N 14452 \N 434791 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.79145537938505 0 \N \N f 2047434796 \N 21 173223219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 00:21:18.159 f \N \N \N 0 0 0 0 8 0 0 403036 2025-02-14 11:40:14.256 2025-03-29 22:39:47.096 What do you NOT waste time with anymore? Learning just for the sake of learning.\n\nAnother [common trap](https://stacker.news/items/298604/r/birdeye21) for people (me) to fall into is thinking they're making progress by accumulating knowledge, when in reality, that's all they're doing.\n\nThere's no action driving the learning.\n\nAside from my SN consumption, if I'm learning something now, I try to ensure it's actionable. It's information I can put towards something.\n\nNow this isn't to say that _all_ information outside the scope of your personal goals isn't relevant, it's just that it becomes dangerous when you try to replace creation with consumption entirely.\n\nHow do you try to find a balance of the two?\n\nWhat are you not wasting your time with anymore? \N 2233 \N 403036 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 27.0751637716937 0 \N \N f 833287497 \N 7 169132132 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 10:28:02.533 f \N \N \N 0 0 0 0 3 0 0 437731 2025-03-14 20:24:49.914 2025-03-29 22:39:47.096 a pleb's expectations of Bitcoin Nashville 2024 Many of you know, as it is impossible to dismiss, that Bitcoin Magazine’s annual Bitcoin Conference is happening this month in Nashville. I will be attending for the first time this year. This post is like a journal entry where I am expressing the thoughts and expectations that belong exclusively to me. My intention is to find commonalities with others and to open myself up to the experience. \n\nHistorically, this conference has had a huge impact, and I’ve had passive interest. I paid attention when Jack Mallers revealed his visions for bitcoin’s future. I was curious about Jordan Peterson’s participation. I’ll watch Max Keiser scream at anybody. A few other smaller presentations I clicked into from my computer at home, but that’s about it. From my very limited knowledge of this conference in the past, I feel I’ve learned everything I need to know: that it’s shill city and I’m good without it.\n\nUnfortunately, I don’t like a lot of things about it. There’s too much pomp and circumstance, for one. Half of what I’ve seen on this stage has made me cringe uncontrollably. And then, just the nature of the thing does not agree with me: I tend to feel lost and overwhelmed in big crowds. I get cranky around people that draw attention to themselves, and it seems to me that the game here is to draw attention to yourself, and dishonestly if you have to. Without having boots-on-the-ground knowledge, admittedly, I would label the conference as a party for people who got rich because of bitcoin. I fear it is not productive, in fact disorienting, fake, and distracting. \n\nWhew, it feels good to get that out.\n\nNow, I am ready for my opinion to change. Since I will be in attendance this time, I know I will discover contradictions to my above statements. I welcome being wrong. I hope it is a valuable time with like-minded people. Additionally, I realize it is only my attitude that would hold me back from having a great time, therefore this post is a practice in checking my attitude. But I wonder, am I alone? Do others have negative ruminations such as mine? Or is this ‘saying the quiet part out loud?’\n\nA big part of me hopes that I will meet stackers there, and that would be my grandest, most delightful expectation. In order to foster this, I want to pledge my time to a specific location (probably coffee shop) every morning where the chances of meeting other conference-goers in a casual atmosphere is most likely. Maybe it won’t work out like that, but it feels good to hang my anxieties on this plan.\n\nAll that said, I am confident that this will be a historical event, in any case, and I’m a chill enough person to be happy in the flow of whatever comes. I will be adding a follow up post-conference analysis. It may be interesting to see where I end up on the other side, and detail what I learn along the way.\n\nTell me what you expect, I’m all ears, as there are plenty of holes in my assessment. \N 2056 \N 437731 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.08960123135336 0 \N \N f 201178868 \N 2 53499503 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451145 2025-03-24 12:16:35.89 2025-03-29 22:39:47.097 Legend of the Snail | 19/20 participants left | 24 days until next KO | $67,982 ```\n+================================x\n| Welcome to day 338 of the |\n| _ _ _ _ |\n| | |__ (_) |_ ___ ___ (_)_ __ |\n| | '_ \\| | __/ __/ _ \\| | '_ \\ |\n| | |_) | | || (_| (_) | | | | | |\n| |_.__/|_|\\__\\___\\___/|_|_| |_| |\n| |\n| 100k bet! |\nx================================+\n```\n\nDate: [2024-03-18](https://stacker.news/items/469672)\n\nNumber of participants: 20\n\nPrize Pool: `143,521 sats`\n\nPrize Pool change since [last elimination update](https://stacker.news/items/442283): `+6252 sats` _(zap this post to donate to the pool)_\n\nCurrent prize per bitcoin: $67,982.00\n\n![2024-03-18-115917_773x520_scrot.png](https://m.stacker.news/21387)\n\n| Nym | Day | Paid | Elimination Date | Eliminated |\n| --- | --- | ---- | ---------------- | ---------- |\n| @orthwyrm | 260 | X | 2024-02-18 | X |\n| @mango | 359 | X | 2024-04-11 | |\n| @Alby | 365 | X | 2024-04-21 | |\n| @siggy47 | 380 | X | 2024-05-18 | |\n| @CheezeGrater | 418 | X | 2024-06-07 | |\n| @ekzyis | 420 | X | 2024-06-11 | |\n| @0fje0 | 427 | X | 2024-06-21 | |\n| @phatom | 440 | | 2024-07-21 | |\n| @486DX2 | 486 | X | 2024-08-20 | |\n| @carlosfandango | 501 | X | 2024-09-07 | |\n| @Lux | 522 | X | 2024-10-09 | |\n| @davidw | 564 | X | 2024-11-02 | |\n| @nikotsla | 570 | X | 2024-11-12 | |\n| @BitcoinIsTheFuture | 584 | X | 2024-12-01 | |\n| @south_korea_ln | 608 | X | 2025-01-04 | |\n| @Undisciplined | 653 | X | 2025-01-28 | |\n| @grayruby | 655 | X | 2025-02-03 | |\n| @gnilma | 666 | X | 2025-02-26 | |\n| @Longtermwizard | 700 | X | 2025-05-09 | |\n| @Bitman | 810 | X | | |\n\nNext elimination: @mango (24 days remaining)\n\n_Want to participate? Click [here](https://stacker.news/items/363233) for more information._ \N 2519 \N 451145 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6697653885862 0 \N \N f 404286927 \N 2 192778089 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 1359 2022-09-13 06:41:07.152 2025-03-29 22:39:47.097 Call for public node runners - Activate Neutrino in your node ## Tip of the Day - for public node runners\n## *How to help the Lightning Network, running a neutrino node*\n\nAs many of you already know, Zeus is a LN node based on Neutrino (BIP157).\nAnd with the latest [Zeus v.0.8.3 beta1](https://github.com/ZeusLN/zeus/releases/tag/v0.8.3-beta1) it introduces a new feature to add and test multiple neutrino peers into your embedded node.\n\nWhat is Neutrino?\nNeutrino is an option in Bitcoin Core that can serve block data to remote LND nodes (mobile especially), so the client do not need to run a full synced bitcoin node.\nBut the mobile client of Neutrino must have a good time response in order to be able to keep up with the synced blocks. Usually a good ping must be between 50 and 150ms (max 200ms). At 300ms the user will have issues with syncing his node.\n\n![neutrino.JPG](https://m.stacker.news/23841)\n\nSo if you go to Settings -> Embedded node -> Peers, now you will have the option to make your own list of good neutrino peers.\nTo test your neutrino peers, just click on the hourglass icon and will show up the time response to that neutrino peer. \n\nFor example this user have a really bad ping to Olympus neutrino node:\n![neutrino-2.jpg](https://m.stacker.news/23844)\n\n## Why this proposal?\n\nBecause all these mobile nodes like Zeus, Blixt, Breez or any other desktop LN node that run with neutrino needs a closer neutrino peer. This time response do not depend of your internet speed! It depends of the distance / backbone hops taken from the neutrino server up to your device location.\n\n### For example:\nYou are a Zeus user traveling in Indonesia.\nYour Zeus node by default connects to btcd.lnolymp.us node located somewhere in US.\nThat means will have like in the image above a ping of 300+ ms !\nThat means you will have issues with syncing your Zeus, you cannot see onchain funds, you cannot see LN channels online etc.\nSo you need a more closer server located somewhere near to Indonesia, to have a lower ping under 200ms.\n\n## So what is the proposal?\n\nAll public node runners, with a node available in clearnet and willing to help the network, could simply activate their Neutrino by adding 2 lines in their bitcoin.conf file (and restart the node).\n[Here is more documentation about Neutrino](https://docs.lightning.engineering/lightning-network-tools/lnd/enable-neutrino-mode-in-bitcoin-core)\n\n```\nblockfilterindex=1\npeerblockfilters=1\n```\nAnd also have the port 8333 open for that node. If you want to configure it for another port is up to you, but clients must know about that customized port.\nIs not really necessary to be attached to a subdomain, it works also to be accessed by IP.\n\nIf you want only specific clients to connect to your neutrino, add the line:\n```\ndiscover=0\n```\nThat will not let random neutrino clients to connect, only those that knows your IP (friends and family).\n\nActivating neutrino in your public node, it doesn't affect your node performance in any way and is totally safe.\nYou are just delivering blocks info, nothing else.\n\nBut you could a lot all the mobile node users that are in remote locations and cannot run a desktop stable node.\nEven could be your friends and family that are using these mobile LN nodes, you can provide for them your node IP. This will decentralize even more the Lightning Network.\n\n## May the Bitcoin Be With You! \N 19332 \N 1359 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.0978168159248 0 \N \N f 436569649 \N 3 86538 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408068 2025-02-18 14:55:32.336 2025-03-29 22:39:47.097 Evergreenness vs ephemerality (This post was prompted by an interesting discussion w/ @nemo.)\n\nWe all bring expectations about the nature of online interaction. The general default is that you say something once, and then it sticks around forever. If you're old enough, shit you said decades ago can haunt you, or at the least be an embarassment to your future self. That bad hair. Those idiot takes, when you were stoned and thought you were so smart. \n\nBut we've sort of come to terms with that, and norms are evolving. People are generally more forgiving of our past selves. If you've been around long enough, you've either been caught out or can vividly imagine how you might ahve been. However, new tech means new possibilities. I'm posting this message on SN, which makes me wonder, what kind of interaction model do people want for a site like SN? I can imagine two poles at opposite ends of a continuum.\n\n**Ephemeral**: pretend SN is like your local bar. If you happen to be at the bar when I'm there, and I say something, you get to hear it. If you're not there, you don't. At best, other people who _did_ hear what I said, who are still there when you arrive, can tell you. Maybe you can figure it out indirectly.\n\n**Permanent**: pretend like SN is a university, where lectures and comments made during the lecture are part of the historical record; or a newspaper, where people write articles, and then other people send in comments about those articles, which are printed in later editions, and which exist forever, or at least until the newspaper goes out of print.\n\nIt's worth saying that the "ephemeral" pole is actually not really an option in a digital world -- the 1990s [should have taught us that](https://en.wikipedia.org/wiki/DeCSS) -- but you _can_ insert different amounts of friction to create ephemerality for all but the most motivated "attackers" if you want to.\n\nYou can also set up incentives in a way to bias toward one thing or another -- if you imagine in 2026, when SN is way more popular, [evergreen content](https://notes.andymatuschak.org/Evergreen_notes) could accrue the author an expontential income stream: great articles / comments just keep harvesting sats, and, better yet, keep drawing additional participation in an extended capital formation process. Permanent and discoverable content could really amount to something, eventually.\n\nAnyway, it's an interesting thing to think about. You can imagine designing to maximize ephemerality (e.g., all posts / comments auto-delete after x hours / days) but what would such design choices afford? What would SN be like if it were designed to be a [perpetual now](https://en.wikipedia.org/wiki/Memento_(film))? What kind of [relationships could we have](https://www.imdb.com/title/tt0338013/)? In real-life, in small groups, this works -- think of your corner bar, or your gym, or whatever. Online, is it viable?\n\nI've been pondering this for a while. The more I do, the more I conclude that this is a thing people generally default to -- online interaction works the way it's always worked. You know what you're getting. But if you're being more intentional about it, what design choices fall out from your decisions, and what are the consequences of those choices? \N 16876 \N 408068 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 0.539175200068094 0 \N \N f 506978493 \N 3 201218648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 421587 2025-03-01 19:07:10.072 2025-03-29 22:39:47.086 SN release: phoenixd attached wallet, no free posts, tor for lnbits, bug fixes ###### `heads up: we'll probably take the site down for maintenance friday or saturday night`\n\nIn this release:\n- phoenixd can be added as an attached wallet for send/receive (via @ek)\n- we removed free posts entirely \n - free comments still remain\n - additionally, we rank unzapped free comments last in a comment thread regardless of the sort method chosen (e.g. recent)\n - bonus: we rank deleted/outlawed comments last in comment threads regardless of sort method too\n- you can attach lnbits instances hosted at an onion address (via @ek)\n\nThere's a variety of bug fixes in here too, but those are never very exciting.\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 9.8m sats to 28 contributors for 126 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/660695\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 1352 \N 421587 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 26.4858186570586 0 \N \N f 158663269 \N 1 90164024 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455132 2025-03-26 18:58:38.402 2025-03-29 22:39:47.086 Nano 3 - Can you heat your whole house with a bunch of 'em? TLDR: No, but if you own bitcoin and can afford to, you should get one anyway.\n\n# Secure the network.\n\nFirst off, I'm not mining to heat my house, and I'm not mining to earn bitcoin. I'm not mining out of the goodness of my heart either. I'm mining because I store my family's savings in bitcoin, and mining centralization looks like a real threat to me. I've written about it [here](https://stacker.news/items/629837) and [here](https://stacker.news/items/735779) if you're interested in reading more about why this is so important for average bitcoiners. That being said, I'd like to earn (or at least not lose) bitcoin in the process, and I'd also love to heat my home with it.\n\n![](https://m.stacker.news/62805)\n\n![](https://m.stacker.news/62808)\n\n# Nano 3\n\nIn one of the aforementioned posts, I made a stink about how little hash one contributes with a lottery miner and @OT called me out on ignoring hardware centralization concerns with Bitmain. Well, Canaan isn't exactly a small company, and they're not open source, but they aren't Bitmain, and I found a miner that's about eight times as powerful as the virtual signaling[^1] solo miners at about the same cost.\n\nMy big find was the Nano 3. It's actually marketed as a space heater with three heating settings. At it's warmest, this guy mines at 4TH/s and uses about 140 watts. So it's about as efficient as a midrange s19, hashes about the a third as much as an s9, and costs as much as a Bitaxe. As a tool for decentralization, I'd say that's a great combo.\n\nIronically, most of the folks I see talking about it online are shitcoiners that use it to solo mine Bitcoin Cash. I wonder if this phenomenon is culturally turning bitcoiners off to a better decentralizing tool.\n\n![](https://m.stacker.news/62809)\n\n![](https://m.stacker.news/62810)\n\n# Recycled Heat\n\nSo, now that I have them, I can tell you from personal experience how they're doing as heaters. Well, they are pushing heat out. However, it's a very small fraction of what my s9s do. They look better in house[^2], and they're significantly quieter (but not silent), but there's no way these guys are going to let me go furnace free this winter like a similar amount[^3] of Bitmain products would do.\n\n#Conclusion\n\nSo I don't see the Nano 3 as the silver bullet for home miners. I do, however, think it's a great option and am not at all bummed with my purchase. At my current electricity price, I'll pay them off (even denominated in bitcoin) at some point. But I'm also going back to the drawing board about trying to replace my furnace with miners.\n\n[^1]: totally unfair characterization... I get it. Just trying to make a point with some hyperbole\n[^2]: The lighting is also pretty cool. You can make it pulse or strobe, and the full color spectrum is available. They're keep my kids' rooms a LITTLE bit warmer this winter and double as a cool night lite that teaches them about bitcoin. The ones in living areas do the same for guests. I consider these non-trivial features.\n[^3]: Similar price too! Most s9s online are about the same price as the Nano 3s. \N 11678 \N 455132 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 6.5538813778733 0 \N \N f 198924403 \N 3 137424195 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417426 2025-02-26 11:20:25.685 2025-03-29 22:39:47.087 BitVM 2: Permissionless Verification on Bitcoin [Draft writeup] \N https://bitvm.org/bitvm2 19484 \N 417426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.11470987841626 0 \N \N f 172616837 \N 1 221638847 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435327 2025-03-12 15:42:44.486 2025-03-29 22:39:47.098 StackerNews: First Impressions I have been on this platform for about a week now. Here are my first impressions and opinion (seeing as I am very new, please correct me if I am missing something or writing nonsense):\n\n- Layout and offering: The simplicity of Stacker is refreshing. Not a ton of things you can do here. Read and write posts relating to one of the subs and participate in bounties. It serves specific needs and doesn't have over cumbersome functionalities that are barely ever used, so really nice (would have liked to be able to follow someone or be notified when a user posts something?)\n\n- Economics: Having to pay sats in order to post something had me raise an eyebrow initially, but I've come to realize that it's a great way to keep users attentive to what they post. Even though it's very inexpensive and accessible to post, I think knowing in the back of your head there is a cost to do something helps to at least keep some shitposters at bay. Being rewarded by other users based on what you post is very cool. I have always wanted to start posting articles on a platform where I can just write about business/finance and other things I find interesting, like Bitcoin. The thing about spaces like Twitter and all the other options is that any effort regarding posts will, at best, amount to worthless likes, whereas at Stacker you can actually gain sats from users that find your posts useful or interesting. That's nothing short of being awesome. Enjoy making posts about things you like and get tipped in the best money available while tipping other users according to how useful or interesting you find their work? Sign me up. I'll never forget that I stacked enough sats (apologies for bragging) on my first post that I can literally go to one of the shops in my area and buy 1x lunch with it using my wallet (which I fully intend on doing). For something I enjoyed sharing? Insane!\n\n- Community: Engagement from other users have been great when it comes to posts and comments. But what's really impressive here is the fact that I went over to the jobs sub out of curiosity and saw one or two job postings that I would have actually wanted to apply for if I was in search of a job (might be looking sometime in the future and this will be my first stop). It's impressive to me because I have no qualification or background in IT, coding or blockchain (less what I have learned the last few years online) which is what I thought would be almost all the postings, but there are actually options much broader than that. Being able to do work remotely and being paid in sats (or make use of offered services and paying in sats) is something a lot of people would love to know that that option is available. Some discussions/posts/comments from other users have also been very informative to myself, relevant to what I am busy with at the moment in my life and some have been absolute entertainment to read\n\n- Overall: Stacker is easy to use, fun to participate in and a useful tool\n\n\n\n\n*tips cowboy hat and rides off* \N 21207 \N 435327 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.4986674590254 0 \N \N f 195609112 \N 2 173843396 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:12:24.263 f \N \N \N 0 0 0 0 2 0 0 430771 2025-03-09 12:20:15.257 2025-03-29 22:39:47.098 Executive Order 6102 did NOT apply to regular men and women Do not fall for it again.\n\nLegalese is tricky for those not versed within it. Surprisingly, many (low level) judges & lawyers still do not understand the statutory construction concepts of *ejusdem generis* or *noscitur a sociis*.\n\nLet's look at the last sentence of Section 1 of EO 6102:\n\n**The term "person" means any individual, partnership, association or corporation.**\n\nAt first glance, it looks like the word "individual" would apply to an actual human being. When a definition contains a list such as this, the terms within the list must be within the same class. Human beings are not within the same class as the other commercial/statutory entities within this list, so in this case, an "individual" is just *one* of those other "persons".\n\nRarely does a person mean a human being, but it is often misapplied to us. Those that know how to fight it in court can ensure that it is not, but unfortunately, many do not have the want to learn court process and fight it.\n\nTo see when a person actually means a regular human being, look at the definition of "person" within your state's penal code. \N 21810 \N 430771 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6239323467531 0 \N \N f 158716532 \N 1 225740328 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435551 2025-03-12 19:25:52.962 2025-03-29 22:39:47.098 Stacker Claus is coming to.........SN Twas the day before Christmas \nAnd all across the web\nMillions were posting the nonsense in their heads\n\nEndless tweets of holiday plans\nPictures of their trees\nBut Santa had somewhere else to be\n\nThe reindeer were poised and ready\nSo was the sleigh \nLeaving the elves wondering where is Santa today?\n\nThey searched far and wide\nAnd high and low\nBut they still wondered where did Santa go?\n\nSomeone noticed in the toyshop\nThere was a faint light\nCould this be Santa getting ready for the night?\n\nThey hurried to the doorway\nAnd entered the shop\nWhere they were shocked to find Santa on a laptop\n\nHe turned to them and said\n"Sorry for the delay\nI had one thing to do before manning the sleigh\n\nI had to login to Stacker News\nI had sats to zap\nI must keep my cowboy streak or I'll lose my hat" \n\n\n\n![santalaptop.jpg](https://m.stacker.news/9331)\n\nSee you soon Stackers! \N 9418 \N 435551 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.5377907625014 0 \N \N f 1232360147 \N 10 24358439 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:07:40.567 f \N \N \N 0 0 0 0 4 0 0 441560 2025-03-18 05:57:23.437 2025-03-29 22:39:47.099 My experience with a FutureBit Apollo I mentioned a few weeks ago that I was considering doing a long-form post about my experience with a FutureBit Apollo bitcoin mining rig. There was some interest, so here it is.\n\n## Choosing an option\n\nFutureBit offers the `Apollo` mining rig in several configurations:\n\n1. A bare-bones hashing machine ($524.99USD)\n2. Same as 1, but with a FutureBit-made power supply ($599.99USD)\n3. The same hashing machine as 1, but with a built-in "controller" which can act as a desktop computer (their words). ($824.99USD)\n4. Same as 3, but with a FutureBit-made power supply ($899.99USD)\n\nFor (1), you need an external power supply and a computer to "drive" the hashboard. This is only recommended for advanced users, while (3) has software provided and pre-installed, so it's more n00b friendly.\n\nFor a few different reasons, I chose option 1:\n\n1. This was the cheapest option, so naturally I wanted to see if this would work for me, to help lower my cost for entry.\n\n2. I already have a server from which I can drive the hashing machine. I don't have a need for another general purpose "computer". I consider myself enough of a power user to figure out how to drive the hashing machine from an external computer.\n\n3. The power supply available from FutureBit would only supply enough power to drive the hasher at 3 TH/s, while the hashing machine is rated to go up to ~3.8TH/s. I didn't want to be limited by the power supply in that way.\n\n4. I could actually get a more powerful power supply for lower cost, so either way, I wasn't planning to buy either package that included the FutureBit power supply.\n\nSome additional considerations:\n\n1. If you buy one of the Full units (with the built-in computer and control software), you are strongly discouraged from updating any system packages, the OS itself, or the NodeJS engine which is what the UI app runs on. There's supposedly some incompatibility issues that breaks the functionality of the miner if you do this. I was not a fan of this, since it ships with old, outdated software, which can expose security vulnerabilities over time.\n\n## Making the purchase\n\nI originally wanted to buy using bitcoin to help preserve privacy. I thought through this some, and realized I'd still need to ship it somewhere where I could pick it up. I couldn't figure out a way to receive the shipment without tying to my identity, so I gave up on that. I emailed support asking if there was any option to buy/pick up in person, either at their distribution center in California or at their office in Brooklyn, NY, but the answer was no.\n\nI also tried to buy using bitcoin but their bitcoin payment plugin was broken, so that option was off the table. I emailed support about this, and they said they could provide a bitcoin address to send to, but I opted against it. I was afraid that the out-of-band communication would not be honored somehow, it just made me uncomfortable.\n\nAll that being said, I just paid using normal payment rails and had it shipped to my house. Sorry, sorry :D\n\nShortly after I made the purchase, FutureBit was running a 10% off sale. I emailed customer support to ask if they would consider retroactively applying the discount, and they did! That was very nice of them.\n\n## Setting it up\n\nThe physical setup isn't bad at all. You plug the PCI-E power cables in the ports in the back of the miner, along with the micro-USB plug to control the hashboard.\n\nOne issue I ran into was despite connecting the power supply to the board and turning the power supply on, the board was not powering up. I emailed support and they led me to the solution, that I needed to jump the CPU power cable on the power supply. Since I was using a power supply meant for an entire computer, it needed to be "tricked" to think it was connected to a motherboard, etc. I guess had I bought the power supply from FutureBit, I wouldn't have run into this issue.\n\nSince I opted to not buy the "Full" edition, I also needed to figure out how to run the mining software. The binaries can be found [here](https://github.com/jstefanop/Apollo-Miner-Binaries). Pick the right version based on the OS you're using, and follow the instructions to set it up/configure it. Down-side: it's not open source :(. The configurations of the software allow you to essentially determine the hashrate you will mine at and which pool you will use.\n\nI also ended up writing a very slim, bare bones UI app to make it easier to control the mining software from my home network. Maybe I'll open-source it one day, but I haven't yet. Essentially it's a web app wrapper around running shell command to launch the mining software. I also ended up eventually creating a linux service to run the miner at boot, to help improve resiliency and up-time in case I ever rebooted.\n\n### Choosing a mining pool\n\nLong story short, I ended up using Braiins Pool because it was KYC-free and used PPLNS for payout, which is "real mining", not just selling hashrate for a fixed fee. I explored several other mining pools and felt most comfortable with Braiins.\n\nI did try NiceHash but I found their UI to be not very useful, so I couldn't easily determine how my miner was performing. I also saw a lot of errors in the logs when I was pointed to NiceHash, which made me suspect that I wasn't going to get the full value of my mining efforts in that pool. One nice thing about NiceHash is the Lightning payouts, something I wish Braiins supported.\n\n## Running it long-term\n\nI've found the stability to be very good. I've had a few blips here and there, but mostly due to internet outages at home or things like that, so nothing really to do with the miner itself.\n\nI did run it at a higher hashrate than the OOTB UI will allow you to do, so I could achieve 3.5TH/s hashrate. At this level, it was consuming about 250W of power, compared to 200W of power producing 3TH/s of hashrate. Depending on your goals, you can run it at various rates and get sats at the corresponding speed.\n\nThen there's the noise and the heat.\n\nI found that running the machine anything above the "medium" level was a noticeable level of noise, and probably not ideal for a room where you spend a lot of time. Cranking it up to produce 3.5TH/s was definitely noisy. I decided to get 2 Noctua 120mm computer fans to help cool it down. I put one underneath, and one on top of the miner, both pushing air up. My goal was to make the internal fan have to work less hard to keep the device cool, and with this setup, it definitely worked.\n\nCurrently, I run the device producing 3TH/s 24/7 and it sits around 55C in temperature, with the internal fan speed around 2500rpm. Without the extra fans, the internal fan speed exceeded 3000rpm, if memory serves. That seems to have made a big difference in noise.\n\nAs for the heat - this device will definitely warm up a room if it's enclosed. I had it in a larger room for a while and it wasn't terribly noticeable. I assume it's significantly cooler than any "pro" miners like an S9 or whatever, but it isn't negligable.\n\n### What did I spend, and what have I earned?\n\n1. I paid $493.16 for the hashboard, including shipping, tax, and sale discount.\n\n2. I paid $73.05 for a EVGA power supply to drive the miner\n\n3. I paid $34.22 for the two Noctua fans\n\n4. I paid $6.42 for a power adapter to drive the external fans from my power supply\n\nSo a total of $606.45USD for all of the above, _NOT_ including electricity to run the miner.\n\nI've been running the miner more or less 24/7 since July this year. My Braiins Pool account currently sits at around 82,000 sats. I can't withdraw until I hit 100,000 sats, with a 10,000 sats fee.\n\nAt current fiat exchange rate, 82,000 sats roughly equates to $31USD.\n\nI provided these numbers so you can see that this is clearly not going to become "profitable" any time soon. However, I am earning KYC-free sats, so a premium is to be expected. Also, I am contributing to the distributed mining network, and ultimtely, I'm a nerd so this is just a fun experiment. I've also learned a lot during this process, and I value that.\n\n## Conclusion\n\nIf you're with me this far, thank you for reading!\n\nI probably won't break even or make a profit any time soon, but this has been a worthwhile experiment for me. I'd do it again, but I probably won't buy another unit to expand my mining capacity.\n\nLet me know what you think, and if you have any questions! I am sure I left some details out that folks might be interested in knowing.\n\n## Resources\n\n1. https://shop.futurebit.io\n2. https://www.futurebit.io/apollo-btc-support\n3. https://github.com/jstefanop/Apollo-Miner-Binaries\n4. https://github.com/jstefanop/apolloui\n5. https://github.com/jstefanop/apolloapi \N 10291 \N 441560 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 4.76819123815716 0 \N \N f 402739035 \N 2 66783326 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 444384 2025-03-19 20:42:22.919 2025-03-29 22:39:47.099 Stop trying to use dice-rolled seeds unless you're an expert ❌ \nJust had yet another person (hard to count the total now) reach out about a low-entropy seed they generated and were allowed to import into a certain hardware wallet. A lot of the blame for these lost funds falls on influencers who shill users on overly-complex security setups without properly explaining the massive risks and tradeoffs associated for the average user.\n\n**What happened**\n\nLess than 10min after funds were sent to what they thought was secure storage, they were swept to an attackers address.\n\nThey used <10 dice rolls, meaning the private key had <25bits of entropy when the minimum for strong security is 50 dice rolls (128 bits of entropy). Wallets should not allow a user to import a seed that they know is completely insecure.\n\n**Staying safe**\n\nAs I have said many times, if you don't know the ins and outs of dice rolls, entropy, verification of the resulting seed offline, etc. please do not use dice rolls alone for seed generation. 99.99999% of users are better off allowing good, multi-source, open-source random number generation like we do on Passport.\n\nTo date I have heard of zero compromised seeds that were generated using on-board RNG due to entropy issues, while there are countless examples of users losing funds due to improper dice rolls.\n\nStay safe out there, folks. \N 1802 \N 444384 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.7352083403602 0 \N \N f 107757212 \N 1 42988659 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422863 2025-03-02 18:44:19.119 2025-03-29 22:39:47.087 Don't get too upset about the bulls***. BITCOIN is the TROJAN HORSE. https://i.imgur.com/bxWe4HP.jpg \n\nTaproot Assets\n\nBitVM\n\nOrdinals\n\nAll these new developments in Bitcoin are unsurprisingly creating a lot of great discussion among bitcoiners.\n\nMany rightfully call out a lot of the BS that these new developments can foster within Bitcoin, but I also think some aren't seeing the forest for the trees, so to speak.\n\n**We all want hyperbitcoinization.**\n\nBut what does that entail, exactly? At what point is the world no longer "fiat" and sufficiently "bitcoinized"? \n\nIn my opinion, Bitcoin is just now rolling through the gates of Troy. \n\nBitcoin's tech is reaching an inflection point, making it easier than ever for anyone to build on. Unfortunately, that also means shitcoins on Bitcoin and other fiat nonsense are easier than ever to implement.\n\nCoinciding are the numerous spot ETF approvals on the way (more "bullshit"), establishing Bitcoin's presence in the mainstream financial world. You're technically always early to Bitcoin thanks to NgU (actually NgD) technology, but buying Bitcoin post spot-ETF approval is probably one of the first major moments in its history where you could be considered "late" to Bitcoin; if you didn't frontrun the institutions.\n\nhttps://i.imgur.com/JswzosV.jpg\n\nWhether we like it or not, we're living in the weird fiat-Bitcoin hybrid timeline that Bitcoin **inevitably** has to go through if hyperbitcoinization is to take place. I know it sucks; We can't just flip a switch and jump to a new monetary system overnight. \n\n_(Okay, maybe the **suddenly** stage will happen overnight, but for now, we have to embrace the **gradually** part.)_\n\nAnd while we're gradually on the way there, I think it's important to consider:\n\nhttps://i.imgur.com/JgQHGfo.jpg\n\nI know, not _everything_ is good for Bitcoin. Obviously a global crackdown on Bitcoin instead of what's (probably) going to happen wouldn't be good. Of course shitcoining on Bitcoin isn't good. \n\nBut with every perceived negative I think comes a greater positive to focus on:\n\n- Global regulatory crackdown gives Bitcoin the ultimate test to prove its value to the world. The harder they they try to control it the quicker it slips away from their grasp.\n\n- And some may not agree, but shitcoining on Bitcoin is likely a natural step in Bitcoin's evolution. **We're creating all kinds of financial assets (and not so) on Bitcoin**. If it's gonna consume the financial system and all else, I'd assume that includes whatever irrelevant market share the crypto market tries to hold onto over time.\n\nThis stuff is coming to Bitcoin whether we like it or not. Bitcoin doesn't care about you.\n\nYes, a lot of it may be shitcoin-adjacent. A lot is just straight up shitcoinery. There are indeed active enemies of Bitcoin trying to infect it with nonsense.\n\nFiat boomers have likened Bitcoin to rat poison. And in a way, it is: Bitcoin is killing off fiat rats all around the world. But from another perspective, Bitcoin is the cure to what's already been poisoned.\n\nBitcoin is probably gonna get filled with loads of fiat junk over the coming years, **and that is only natural**. Bitcoin was birthed into a sick economy. Bitcoin's immune system is being tested.\n\nAnd if you think it's already bad, just wait until Bitcoin is fueling the mEtAvErSe economy too (I mean, this wacky western LN stacker station here is just an early stage baby of that, right???).\n\nYep. It's gonna get cringe as a biological human enjoyer of the natural world. **GO GET MORE SUN**.\n\nBut despite the wild weird ride that Bitcoin's on; Don't worry. We're bitcoiners. We believe in it. We believe in decentralization. We believe in consensus of the many, not the few. We believe it's a fundamentally better decision-making system than the manipulated mess we live in today.\n\nSo, **lean in**. \n\n- Yes, stablecoins are arriving to Bitcoin. At last! We can get humanity further away from physical money and closer to digital money. **An inevitable step**, if hyperbitcoinization is to happen.\n\n- Yes, shitcoins are being built on Bitcoin. At last! We can suck the lifeblood out of altcoins at an even faster rate. **An inevitable step**, if hyperbitcoinization is to happen. \n\n"But don't these developments just exacerbate fiat problems on Bitcoin, which is what we're trying to avoid here, right?"\n\n**That's why Bitcoin is the Trojan Horse.**\n\nWe welcome shitcoiners, nocoiners, and all into Bitcoin. Graciously offer it as a freedom protocol to create freely with. Unconditionally support anyone's right to do smart and stupid things with it. Like the internet.\n\nBut what the shitcoiners and all fiat statists don't realize -- they're ushering in their own demise.\n\nJust as we make Bitcoin more accessible and palatable to every facet of the world and all of its 8 billion individuals\n\nJust as Bitcoin acquires enough prominence to dominate the world's economic activity\n\nJust as Bitcoin proves that much of today's financial overhead isn't necessary\n\nIs the "suddenly" moment that everyone realizes:\n\nhttps://i.imgur.com/xwsUNZx.jpg\n\nAny "fiat" incentives that new Bitcoin developments may support will die out via starvation (or turn into something fkn cool i dont know really) along with the rest of the fiat world. it's just a slow bleed out of demand as Bitcoin's renewed incentive structure points human activity elsewhere.\n\nTo a bigger and better world. Focused on things a little more basic than money. \n\nLike c'mon guys, really? Money? Apes... All of you.. \N 11678 \N 422863 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 15.9306834305618 0 \N \N f 1254207580 \N 11 31333992 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 433934 2025-03-11 14:18:13.573 2025-03-29 22:39:47.087 What is your Next Monthly Forecast? Simply **predict something that will happen in July 2024**.\n\nThe forecast can can be quite generic ("*bitcoin will go up*")\nor quite specific ("*Portugal will win the UEFA Euro, with Ronaldo's goal in 90+3*")\n\nLet's play some ~oracle 🔮 ! \N 21365 \N 433934 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 22.6081837708839 0 \N \N f 622294515 \N 6 172638138 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:38.706 f \N \N \N 0 0 0 0 3 0 0 424220 2025-03-03 22:31:10.423 2025-03-29 22:39:47.087 Zapping More Might Solve Our Leader Board Wizard Issue It's been one year since I began my campaign to get stackers to zap more: https://stacker.news/items/287074/r/Undisciplined. \n\nI've made several such appeals based on how zapping benefits the zapper indirectly by supporting the territories they like (https://stacker.news/items/614066/r/Undisciplined ), rewarding the kind of content and behavior they want to see (https://stacker.news/items/523858/r/Undisciplined), and reducing spam (https://stacker.news/items/621288/r/Undisciplined).\n\nI also described how incentive problems in the reward system might lead to pathological zapping behavior (https://stacker.news/items/473181/r/Undisciplined) and why it's not in Stackers' best interest to game the rewards system (https://stacker.news/items/546904/r/Undisciplined).\n\n# Zapping More to Reduce Gaming of the Leader Board\nThere have been a few instances of people clearly gaming the rewards system by correctly predicting which posts will become top posts and zapping them very shortly after they've been posted (clearly too quickly to have actually read the post). I'm not particularly bothered by this, but I know some stackers are. \n\nWhat these gamers are doing is exploiting an inefficiency in how the rest of us are behaving. In previous discussions about this, I made the point that this behavior is self-correcting. That was based on basic econ logic about profits tending to zero when there are no barriers to entry (basically, someone else will try to zap posts immediately, too, and the gamers will cannibalize themselves).\n\nOne way to resolve that inefficiency is to zap faster, but another is to zap more. Zapping faster may not be feasible if you actually want to read posts before zapping them (although you can sort on recent if you're not already doing that to catch posts earlier). However, as I've been harping on for a year now, zapping more is often in the Stacker's own interest anyway.\n\nThe reason these gamers are able to fly up the leader board with relatively few sats zapped is because they're getting to the top of the "top post zapper" rankings. The leader board rankings are based on where stackers rank in four separate categories: top posts, top comments, zapping top posts, and zapping top comments. It is also non-linear: i.e. the difference between 1st and 2nd in a category is greater than the difference between 5th and 6th. The gamers are essentially ranking 1st in one category and last in all the others, but that's sufficient to make it high up the leader board and reap significant rewards.\n\nThe threshold for ranking 1st in zapping top posts would be higher if the rest of us were zapping top posts more (and zapping them quicker). At the very least, that would mean those trying to game the system would also have to zap more to hold onto their place, which would mean more rewards for the rest of and less net benefit for them.\n\n# TL;DR\nIf you don't like seeing people gaming the leader board, zapping more will make it harder for them, while getting more sats to the creators you like and netting you some more rewards. It's win-win-lose, but you don't like the loser. \N 11417 \N 424220 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 20.313386721092 0 \N \N f 309395833 \N 4 9994947 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 399308 2025-02-11 10:48:11.257 2025-03-29 22:39:47.087 Introducing Citrea: Bitcoin’s First ZK Rollup \N https://www.blog.citrea.xyz/introducing-citrea/ 5175 \N 399308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7251703648642 0 \N \N f 148087141 \N 1 170885191 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404074 2025-02-15 14:01:12.124 2025-03-29 22:39:47.088 Will you help us make the alter_native dream a reality 🙏 My Bitcoin journey began in 2017. Like most, it was a rocky road. At one time I had several Bitcoin on exchange. I did not yet have the sense to send it to cold storage and hold onto it. I gambled it away. I am a trial by fire kind of person. It was rough. I had to learn all the lessons... the hard way. I learned a lot. When the dust settled and I finally fully understood what holding meant, I was left with enough bitcoin to purchase my six miners and some solar panels. These panels and miners are the only long term savings plan and literally make up the backbone of my latest project, Moto Mountain. Here is a post about the solar mining setup: https://stacker.news/items/678708\n\nWe are fully committed to a Bitcoin future\n\nA good friend in the AZ Bitcoin community turned me onto stacker late last year. Best Christmas gift ever. I knew that I loved stacker right away. I love the diverse community. I love the transparent incentives. I love that it is Bitcoin focused. The v4v here is amazing. It is, by far, my favorite way to connect with others online. I use this and nostr for online social interactions, that's it. I knew I wanted to be a bigger part of it.\n\nalter_native started as an wild experiment. I had a spark of inspiration and wrote the first post that would aim to set the tone for what I wanted alter_native to be about. And I went for it. I wanted to found a territory where people could freely say and believe whatever they like with no constraints. A place where there is no “wrong” answer and every question is valid. I had no idea what to expect. I was terrified. I felt incredibly vulnerable. This was the first time I have put myself out to the world in this kind of way. Its been some time now and alter_native is going strong thanks to you all. I have been blown away with how much support and kind words I have received over the past several months. I am so grateful for all of those that come through and shared their perspectives here. To mention a few.... \n\n@bief57 @plebpoet @grayruby @Anna @BTCFC @speakingyourtruth @0xbitcoiner @Satosora\n@k00b @Coinsreporter @Rsynch25 @SatsMate @johngalt @thebitcoinbugle @riberet19 @cryotosensei @Tef @Undisciplined\n\nThank you so much for your contributions. You all help make alter_native what it is.\n\nAs time went by, I started to question if and how this experiment may be something that could live on for an extended period of time. And if it did, how would I make that happen? Should it be self-sustaining? Should it make a “profit”? Do I want to continue to figure out how to pay for it out of pocket? https://stacker.news/items/507076\n\nAfter sitting with these questions for quite some time, I have decided that I absolutely believe in stacker news for the long term, and I want to keep alter_native alive forever, whatever that takes.\n\n![](https://m.stacker.news/52334)\n\nRewards and zaps my partner and I make mostly get paid forward within the community and pulling people in from Nostr. We currently mine about 150,000 sats a month depending on the weather. Neither of us work a regular job as we are both focused on the bigger vision of Moto Mountain. To keep alter_native, we currently pay roughly 2/3 of our mining rewards monthly. I am grateful that I am able to do this for now. Long term, I want alter_native to exist on its own, whether I am contributing to it or not. I want to spend more of my energy focused on the bigger vision, Moto Mountain.\n\n![](https://m.stacker.news/52340)\n\nDeep inside of the heart of the Sonoran Desert, far from any beaten path, off the grid, hidden from sight, miles from everything and everyone, is our little slice of heaven that we call Moto Mountain. It is truly breath taking. Within this beauty, we do all that we can to nurture the set and setting for magnificent transformation. It is a place where people come and stay as long as they wish, free of charge, as long as they have an intent to heal and contribute to the mountain. It is a place for silence and solitude. A place to go inward. An ideal stage to work the many tools we both have been practicing with for many years. A place to integrate the lessons that we learn from the plants and nature. I have a couple of old AMA posts that touch on some of the medicines we work with. https://stacker.news/items/349665 https://stacker.news/items/495922 We work holistically with all who wish to look within, those recovering from trauma and PTSD, and those just looking to understand themselves better and expand spiritually. My wife and I have dedicated our lives to this mission and have been on our own healing journeys for many years. Both of us have spent time in Peru and Mexico learning from nature all around us. We want to do our small part to contribute to the global healing and awakening process we seem to be experiencing within this human experience. \n\n![](https://m.stacker.news/52337)\n\nA big part of my personal journey right now is learning to ask for help. I have always been the type of guy who wants to do it all himself. I always thought I didn't need anyone. Very stubborn, addicted to the illusion of control, afraid of being told no. I am learning to be vulnerable and dream big. I am learning that people like to contribute. It is a very basic human desire to want to help others. We all have different skills and things to offer. Some of you may have some sats to offer to help keep this thing going. So I am humbly asking...\n\nWill you help me make our dream a reality\n\nWill you help us keep alter_native alive forever by contributing sats to this fund\n\nWill you help us by sharing this post with others who may be able to help\n\nIt costs 3 million sats to set this place in stone. I am committed to making it happen regardless of the amount of support we receive here. Your help is greatly appreciated.\n\n![](https://m.stacker.news/52339)\n\nThank You\nThank You\nThank You \N 14152 \N 404074 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.0602327295037 0 \N \N f 97310282 \N 1 192452826 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404390 2025-02-15 20:47:39.301 2025-03-29 22:39:47.088 Sneak a peek at a page from my poetry book✨ Hi I'm plebpoet. I present a poem called "When I am alone" that I wrote a few years ago. My poetry book is incomplete and unreleased at this time, for no reason other than life distracts me, as stated in this exact poem. \n\n![](https://m.stacker.news/32395)\n\nI think I am going to share more poems here to test them out, give them a little exercise in the world. However, many of these were written when I was a different person. I used to be one inconsolable existentialist, and perhaps you'll see that come through. I can't decide if my poems have any value now that I can't relate to the girl who wrote them. Still love that girl, though. \N 17798 \N 404390 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 28.9456075398999 0 \N \N f 42346945 \N 1 64727862 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433403 2025-03-11 03:51:14.244 2025-03-29 22:39:47.089 SN elects to go noncustodial on Nov. 5th - FAQ & AMA > What happens to the sats in my SN wallet on Nov. 5th?\n\nNothing. The sats in your SN wallet will remain available to withdraw.\n\n> So, what happens to the sats in my wallet on Nov. 5th?\n\nNothing. The sats in your SN wallet will remain available to withdraw.\n\n> So I don't need to panic because sats in my wallet after Nov. 5th will remain available to withdraw just like they were on Nov. 4th?\n\nYes, that's right.\n\n> If my sats remain available to withdraw, then what changes on Nov. 5th?\n\nTo zap with real bitcoin and be zapped with real bitcoin, you'll need to attach an external lightning wallet for sending and receiving respectively:\n\n1. If you want to send real bitcoin to other stackers when you zap them on SN, you'll need to attach an external sending wallet.\n2. If you want to receive bitcoin when you're zapped on SN, you'll need to attach an external receiving wallet.\n\n> If I don't have or want to attach external wallets, what happens to the zaps I send and the zaps I receive after Nov. 5th?\n\n1. When you zap someone else, you'll send Cowboy Credits and they'll receive Cowboy Credits.\n2. When someone zaps you, you'll receive Cowboy Credits. \n\n> What are "Cowboy Credits"?\n\nSN will accept Cowboy Credits as payment for *everything* it accepts sats for (e.g. posting fees, territory fees, even donations). You can also send them to other stackers as zaps.\n\n> So the only difference between Cowboy Credits and sats is that I can't withdraw Cowboy Credits?\n\nThat's right. That's the only difference.\n\n> What happens to rewards and territory revenue after Nov. 5th? \n\nNothing. Rewards and territory revenue will work the same as they do now. \n\n> Even if I don't attach an external wallet?\n\nYes, you'll receive "Reward Sats" which (like all custodial wallet balances) are not to be mistaken as truly yours until you withdraw them. You can also buy Cowboy Credits with Reward Sats if you choose. The only real changes to rewards after Nov. 5th are:\n\n1. Reward Sats can't be zapped to other stackers\n2. Reward Sats are subject to the following magic words, aka terms and conditions: \n - > *From time to time, Company may, at its sole discretion, offer and provide prizes or awards of BTC ("Reward Sats") to individuals or entities based on Company initiatives, promotions, or for other reasons determined by Company. Company reserves the right to issue (or not issue) such Reward Sats to any person or entity, at any time, and without prior notice. If you are selected to receive Reward Sats, Company will notify you and will transmit the Reward Sats to your account. In order to claim the Reward Sats, you will be required to set up an account, and may be required to provide certain personal information, including but not limited to, a valid Lightning wallet invoice. Failure to provide accurate and complete information may result in the forfeiture of the Reward Sats. You acknowledge and agree that you do not own, and shall have no right, title, or interest in any Reward Sats until such time as the Reward Sats are successfully transferred to your designated Lightning wallet. Until the transfer is completed, all rights to the Reward Sats remain solely with Company. Company makes no guarantee regarding the timing or availability of any such Reward Sats.*\n\n> Can I zap other stackers my Reward Sats?\n\nNo, without an external sending wallet, you can only zap other stackers Cowboy Credits.\n\n> Do Reward Sats, or any of these changes, involve KYC or so-called "soft" KYC?\n\nNo, they do not.\n\n> What if I receive sats to my SN lightning address after Nov. 5th?\n\nIf you've attached an external receiving wallet, those sats will go directly to your receiving wallet.\n\nIf you haven't attached an external receiving wallet, you'll receive Cowboy Credits.\n\n> I have more questions about Nov 5th. Where can I ask them?\n\nIn this thread. Ask me anything.\n\n> I'm a territory founder and this change makes me regret paying for or purchasing a territory. \n\nPlease [email me](mailto:k00b@stacker.news).\n\n> I'm having a bad day, week, month, year, or life. Where's the best place for me to make you miserable too while pretending that this post is the cause?\n\nIn this thread.\n\n> I'm miserable but also sanctimonious so I'd like to write a eulogy for SN that you'll read. Where's the best place to do that?\n\nIn this thread, but it might be more fitting to write it on nostr or X and tag me.\n\n> Will SN ever offer a custodial lightning wallet again?\n\nWe *may* eventually partner with [Zebedee](https://zbd.gg/) and/or [Strike](https://strike.me/) and/or whoever to offer a **100% OPTIONAL** integrated and regulated custodial wallet, but that will happen well after Nov. 5th.\n\n> What happens to the sats in my SN wallet on Nov. 5th?\n\nNothing. The sats in your SN wallet will remain available to withdraw. \N 8870 \N 433403 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.0652452158405 0 \N \N f 1022727901 \N 6 3856743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435516 2025-03-12 18:44:59.052 2025-03-29 22:39:47.089 Lightning is dead, long live the Lightning! Using lightning network on a day-by-day basis has became increasingly easier for bitcoiners thank to the speed of development on this brilliant protocol.\n\nOrange pilling nocoiners is easier than ever because of solutions like Wallet of Satoshi, LightningTipBot in Telegram, Phoenix, Moon, Alby etc. These wallets give really a magic-like experience to users most of the time, for 99% of the transactions, and this is really pushing ahead the ecosystem and the development on top of Bitcoin.\n\nAfter several months of self-hosted lightning payments with my node I feel that I can provide a reasonable feedback about my own experience being my own bank. \nOverall the experience has been great, Zeus wallet is the perfect terminal for my node management when I'm messin' around; while at home I really enjoy Ride The Lightning. Both LND and c-lightning are good implementations, with both their pros and cons.\n\nBut here comes the troubles. I try to not connect directly with huge hubs like Acinq or WoS but I found out that is nearly impossible to have a good LN experience without having connections with those hubs. I often find myself struggling with routing errors and payments that constantly fail. Liquidity is always a huge issue if you want to try the 'decentralized' LN experience (therefore only connecting with community nodes etc).\n\nI hear your thoughts though:\n\n> Man, if you don't connect to big nodes you'r never going to make through with +100'000 sat payments!\n\nI'm aware of it, but in a certain sense I wish I could...I'm in love with the idea of individuals being their own bank and I hope that liquidity issues will be solved as the adoption progress.\n\nI'm really curious about your own experience with self-hosted lightning nodes:\n\n- Which LN implementation do you prefer?\n- Have you ever experienced troubles while trying to pay with your LN node?\n- What do you think about the idea of avoiding direct channels with big hubs? Is it a good idea from a 'sovreignty' standpoint?\n\nPs. Stacker News is brilliant! \N 4395 \N 435516 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 25.6576087320909 0 \N \N f 1587888055 \N 11 247101910 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 16:18:04.935 f \N \N \N 0 0 0 0 7 0 0 421367 2025-03-01 15:54:26.338 2025-03-29 22:39:47.09 How and Why They're Gaslighting You About Supporting El Salvador & Bitcoin # Let's Try Asking a Native Salvadoran About President Bukele, Shall We? \n\nI don't speak for every Salvadoran. Just, you know, the [~85 to 90%](https://en.wikipedia.org/wiki/Opinion_polling_on_the_Nayib_Bukele_presidency#:~:text=Despite%20negative%20reception%20from%20outside,generally%20hover%20around%2090%20percent.) who approve of Nayib and get offended when foreigners call an elected president a "dictator." \n\nI saw that [Vitalik just joined](https://markets.businessinsider.com/news/currencies/vitalik-buterin-bitcoin-nayib-bukele-el-salvador-maximalists-force-business-2021-10) Alex Gladstein and others in "calling out" Bitcoiners for their support of the "dictator/autocrat of El Salvador" Nayib Bukele. In doing so, both of them are repeating vast swaths of Western media that—interestingly enough—never paid attention to El Salvador before 2021, ignored El Salvador's massive corruption problems, and, by the way, were content to use the country's people as pawns in the fake and ridiculous caravans a few years ago. \n\nThe fact that [Nayib Bukele is very popular in El Salvador](https://elsalvadorinfo.net/nayib-bukele-approval-rate/) is ignored by everyone. After all, "*Hitler was popular too right?*" "*Salvadorans are just poor, uneducated, brown, or brainwashed,*" right?\n\nNope. If you've been guilt-tripped about supporting El Salvador because of Nayib, you my friend are getting a healthy dose of gaslighting. \n\n## The "Mystery" of Nayib's Popularity (It's Not a Mystery)\n\nThere's an implicit condescension involved in when foreigners just gloss over what Salvadorans actually think. It is assumed "80 to 90% of Salvadorans" support him because... man, I don't know, those poor dears must be brainwashed? Poor dears, they must be getting swayed by a dictator's charisma? \n\n**And then they use Nayib's supposed "Dictatorness" to beat the "Bitcoin Maxis" over the head.** \n\nSince most people don't know anything about El Salvador, never gave it much thought before 2021, it's easy I suppose to just listen to the mainstream (mainstream is a euphemism for well-funded) opinion that El Salvador's democratically elected, widely supported president is a dictator. \n\nThey then shame foreign Bitcoiners for "supporting a dictator" and use this against you. \n\n# What They're Leaving Out About El Salvador\n\nSo, since I'm actually a native Salvadoran, allow me to point out some things of interest: \n\n> Since the war ended in 1992, El Salvador has had **4 previous "democratic" (lol) presidents** who actively stole from the country. One of them had to flee prosecution for that theft and is in exile right now. Another is in jail right now for stealing. Another (Flores) was also charged and died under house arrest — there's a popular conspiracy theory among Salvadorans that Flores faked his own death to avoid prosecution, but let's just grant that he's dead. \n\n> The president before Bukele was also just charged with... [stealing money](https://apnews.com/article/caribbean-el-salvador-a08341e381055b2602fe1b335c1ff706). \n\n> That means, without exception, every presidential administration in El Salvador before Bukele since the 1990s, has gone up on corruption charges. \n\n> Up until Bukele's administration, El Salvador had the [highest murder rate in the world](https://www.latimes.com/opinion/op-ed/la-oe-0302-muggah-el-salvador-crime-20160302-story.html). \n\n> That's because El Salvador's gangs were on habitual killing sprees for years, unchecked, and without anyone particularly caring. **Everyone knows someone who was murdered**. A man I knew was attacked and murdered at my own doorstep. \n\n> In addition to murders, the gangs also blackmailed and extorted Salvadorans with complete impunity. A man I work with was forced to pay hundreds in "rent" (blackmail) to the gangs in his neighborhood. *These are already poor people*. There was no legal recourse, and those who didn't pay, [were simply killed](https://www.nytimes.com/2016/11/21/world/americas/el-salvador-drugs-gang-ms-13.html). \n\n> [El Salvador's governments actively colluded with the gangs](https://psmag.com/news/political-corruption-and-gang-violence-in-central-america). \n\n> "***In August, prosecutors there showed that El Salvador's two main political parties had colluded with MS-13 and other gangs, paying them more than $300,000 for help winning the country's 2014 presidential election. Party officials allegedly utilized MS-13 to mobilize some voters and suppress others. Still, the attorney general's office has not indicted party leaders.***"\n\n> The gangs were likewise used to [sway elections and intimidate voters](https://www.dailysignal.com/2014/03/11/u-s-needs-address-electoral-fraud-el-salvador/) — yay democracy. \n\n> El Salvador also has an entrenched oligarchy (https://en.wikipedia.org/wiki/Fourteen_Families). Not saying "all those rich people are evil" (not the case), but many of them also colluded with the gangs— wealthy neighborhoods were not targeted by gangs, and they're a convenient way to keep the plebs (called campesinos in El Sal) scared and controlled. \n\n> These people ^^^ also greatly control and influence the media, and **hate** Bukele with the fire of a thousand suns. Really, it's stupid to just blindly accept their talking points without looking deeper into things. The people who parrot them are acting like NPC drones. \n\n> El Salvador's judiciary, even up to the Supreme Court, was likewise [corrupted by the factors I just stated](https://insightcrime.org/news/analysis/corruption-networks-obstruct-el-salvador-supreme-court-selection/).\n\n> El Salvador's police [had massive corruption problems for the factors I just stated](https://insightcrime.org/investigations/the-infiltrators-a-chronicle-of-el-salvador-police-corruption/).\n\n## Why Was Nothing Ever Done to Help El Salvador? \n\n**The reason nothing was done about these problems between 1992 and 2019 is because it benefitted no one in power to resolve problems that were advantageous to them**. Government corruption, gangs murders, repression against the public, etc, are not irresolvable problems—they just need elbow grease. \n\nThe attitudes towards El Salvador, both among the powerful within El Salvador and outside El Salvador, were never conducive toward fixing these problems. There's always a certain fatalism that creeps in, as though things are just "meant" to be this way—that benefits the people who benefit from things being this way. \n\nEl Salvador was thought of as *"just a shit country"*; its problems were caused by "*Oh gosh, what a tragedy, if only someone could do something*"; it was of course *"No wonder people to the USA seeking a better life"*; people murdered are "*just campesinos/peasants*" or poor people in general. And everyone was a victim of (a) Learned helplessness and fatalism among many Salvadoran people themselves, (b) Apathy among more powerful Salvadorans, (c) Active exploitation by other powerful Salvadorans—and, let's be honest, outside influence as well. \n\n### Nayib Is Not Perfect, but "Optics" Are Not Reality\n\nWhen Nayib took office (democratically — he is not our dictator, please stop referring to him as such), he made security his first priority because, guess what, nothing can be accomplished while you're being murdered. He stopped arranging "treaties" with the gangs and sent the police to actually arrest the murderers, as should have been done 20 years previously. \n\n**Here's where Nayib fucked up though.** Since the police were underequipped for that task, not a few of them died. El Salvador's Assembly, who hates Bukele, refused to fund better body armor for them to wear when he asked for it. To emphasize the need for better body armor, Nayib invited police to the Assembly to emphasize the importance of more funding for their body armor..... *aaaand* got wrecked by the optics of armed police in the Assembly. The images were immediately used by domestic and international press to make it look like he was somehow trying to take over the Assembly with military force. And he's had the slur "dictator" ever since. \n\nNayib is a young politician, didn't think about the optics, and got played there. Darn. \n\nBut so what? This is a novel concept for some, but it does not actually matter what the television thinks. Salvadoran people understand the reality of what took place there, and they know the media in El Salvador is fake and dumb. There's enough experience with media propaganda to understand that **optics are not reality**. \n\n(And honestly, the fact that Nayib maintains upwards of 90% approval shows that, if anything, El Salvador has far less of an NPC problem than the United States does)\n\n## Bitcoiners Should Not Be Gaslit About Supporting El Salvador \n\nThe narrative built up around El Salvador is used against Bitcoiners. There's no reason for that. When foreigners support Nayib, they're sharing the same opinion as myself and the vast majority of actual Salvadoran people. \n\nAnd it's OK if you never heard of El Salvador before Bitcoin became legal tender. Most Salvadorans had no idea what the fuck Bitcoin was in 2021. A majority distrust it right now because, no shit, Nayib bought in right before the bear market lol. And Chivo Wallet sucks. There's a lot of work to educate *everyone* about Bitcoin, not just Salvadorans—but El Salvador is building and has low time preference. \n\n### It's Good for Bitcoiners to Support El Sal\n\nSalvadorans consciously elected someone outside of the two corrupt political parties to (a) Stop appeasing the murderous gangs, (b) Stop allowing political corruption to go unchecked. Nobody called El Salvador's past presidents dictators, even though **objectively**, by serving themselves, looting the nation, appeasing its enemies, failing to raise a finger to protect its people... what were they? "Virtuous democratic presidents?" \n\nI mean, honestly. If you think that way, we don't have anything to talk about. We're not on the same team. Get a clue because you have the same idiotic mentality that caused the exploitation of the so-called "Third World" for the entire last century. \n\nEl Salvador has **real** systemic problems. Not fake systemic problems you only hear about on TV. El Salvador needs **real** system reform, led by the actual Salvadoran people themselves who've, frankly, been repeatedly victimized by interests both foreign and domestic. Nayib isn't El Salvador's savior, nor is he treated like one, but he has support because he and regular Salvadoran people want the same things: Sovereignty and prosperity. \n\nAnd, yes, we do expect Nayib to leave office when his term is over. And no, *for obvious reasons*, most of us are fine with him having two terms, as in the U.S. There's **tons** of work to do, and the last thing we want is some asstard from one of the 2 older parties coming in to undo the reforms that need to happen. \n\nIt's all quite simple really. \n\nP.S. Again, I don't speak for every Salvadoran—just the vast freaking majority who recognize that *undeveloped nations* aren't *undeveloped* because of an act of God, but because people either don't put in the work to develop them... or are prevented from doing so. \n\nP.P.S. And yes, I started writing this initially to vent after seeing Vitalik talking about things he doesn't know about, and turned it into a proper post in the process. The habit of shaming Bitcoiners for supporting Nayib, or Bitcoiners being guilt-tripped over it, is something I've been observing in this space for a long time and have been wanting to address. \n\n \N 20755 \N 421367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1470669613813 0 \N \N f 347534624 \N 4 171623131 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 426376 2025-03-05 15:17:38.718 2025-03-29 22:39:47.09 My Response to Steve Patterson (BCash) on "Hijacking Bitcoin" - Bob Murphy Show After listening to Steve Patterson talk about the blockchain war and [Roger Ver’s Book, Hijacking Bitcoin on the Bob Murphy Show](https://stacker.news/items/784900) I thought I would share my initial thoughts. Bob says he is going to have Stephan Livera on to offer the other side. That one should be good. \n\n## Steve's Main Points\n\n* Small blockers are for SOV not MOE\n* Bitcoin now requires large companies to use (ironic point...)\n* Lightning doesn't work and still requires on-chain transactions and high fees of $50\n* Satoshi's vision was never for bitcoin to be a store of value\n* Appeals to Satoshi's authority and seems to speak for him several times\n\n## SOV (Store of Value) vs MOE (Medium of Exchange)\n\nSteve creates a straw man. It is true that there are many bitcoiners that believe bitcoin is not a MOE. Some will say that it must first become a SOV and then as adoption grows it will be used as a MOE. There are also those that believe it is and can be both. I believe many stackers including me are in this camp. There are also those that do not care at all about the MOE use case. I believe he's creating a straw man with this argument. The reality is that in the US and the wealthy nations of the world MOE is not a huge problem. However, with fiat the fruits of our labor are a melting ice cube without bitcoin. So of course SOV is going to be a bigger demand. Steve likes to say he is for the market making decisions. Its interesting because it would appear that the market did make the choice. :)\n\n## Bitcoin Requires Large Companies\n\nSteve argues that the small blockers have created a situation where big companies are required to use bitcoin as a MOE. I think its a rather ironic point to make seeing as the big blockers created a situation where it is not reasonable for plebs to be able to run their own nodes. As a user of bitcoin and someone that has done every aspect of bitcoin on the technical side bitcoin has a long way to go to be used by every person on the planet as a MOE. Its well on its way but there is a ways to go yet. That said, the reality is that the average person isn't going to care about any of these things. But the average person is only one consideration. Bitcoin if successful will attract businesses of all sizes. From what I have seen it seems to that the big businesses he seems to be talking about are the exchanges. I fail to see how bitcoin cash has addressed this "problem". Maybe I am just not understanding his point.\n\nHe may be referring to Lighting centralization and other L2s. If so, that is a valid concern but I disagree that it is more of a concern than node centralization. Being able to validate our own transactions is a very core feature for me and most of the hard core bitcoiners I respect.\n\n## Lightning\n\nSo he starts off by saying lightning doesn't work. That's funny because I literally use it every day and it works. Its not perfect. I don't think it is ready for mass adoption but I also don't see mass adoption in the short term as likely. He also states that lightning requires on-chain transactions. This is true but he doesn't really explain that it basically batches many small transactions therefore making it far more efficient. He falsely states that these channel opens cost $50. As a lightning node operator I have not experienced this level of fee for a channel open. If I were running it as business though this would be an issue.\n\nOver and over again with technical discussions I see people make the mistake of not considering trade-offs. There are no real solutions, only trade-offs as Thomas Sowell once said. Bitcoin cash solved high on-chain fees by increasing the block size. This created other negative trade-offs. Its never as simple as people like it to be.\n\n## Satoshi Vision & Appeals to Authority\n\nSatoshi's vision was never for bitcoin to be a store of value. It is interesting to me to hear people still appealing to Satoshi's after all these years. I mean, I get it. The appeal to authority angle works on many people. Honestly, I find it hard to believe that with the hard cap on supply that Satoshi didn't see bitcoin as being both a MOE and a SOV. It just seems odd with all the gold analogies. Now, it is clear to me that he didn't see bitcoin as only a SOV. But again, that's a straw man. Of course there are bitcoiners that see bitcoin that way but honestly that doesn't matter to me. The way people think about a thing can change over time. Once you create something and put it out in the world you quickly lose the control you thought you had over it. In the end this is why speculating about what Satoshi would say about x is a waste of time. As any software engineer will tell you as your work gets used you almost always find it being used in ways you couldn't have imagined. \n\nI know many long time bitcoiners are probably tired of these guys and this debate. The reality is that there are new bitcoiners every day and the issues raised by small blockers aren't stupid. They have valid points. They just have a poor solution. I wasn't as into bitcoin during the block side wars but I did listen to a few debates on the subject and the small blockers made more sense to me. Go figure. I'm a software engineer. But also, I am an economics nerd and fascinated by market decisions.\n\nLooking forward to the Livera response.\n \N 8284 \N 426376 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.59570997039008 0 \N \N f 248613541 \N 2 223205516 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 191551 2024-06-29 18:57:57.977 2025-03-29 22:39:47.09 The network state and the hyper-spherical economy [Balaji](https://balajis.com/) is famous for lots of things. One that's less well-known, but imo one of his most visionary takes, is the idea of [the network state](https://thenetworkstate.com/) which lays out a description of how the state may evolve -- or is evolving, right now. This has been discussed a few times on SN, [here](https://stacker.news/items/311560) is one of the more recent times. To me, this is the natural successor to the [Sovereign Individual](https://en.wikipedia.org/wiki/The_Sovereign_Individual) for the modern age.\n\nBalaji had a tweet the other day about how [the internet is the next America](https://twitter.com/balajis/status/1774529076742754328) that I thought was interesting. He talks about how the colonists thought about themselves as English for a long time, but then eventually "migrated out" of England, mentally. They stopped thinking of themselves as English when the foundation of their lives shifted to America. Now, according to Balaji, the foundation of people's lives is the internet, and he's riffing on what that implies.\n\n--\n\nI've been noodling on a similar idea for a while. Specifically, imagining all the networks I'm part of simultaneously. Inhabiting so many identities at once strikes me as a particular modern experience. This is relevant to SN, too -- I've once again crept up to spending a pretty egregious amount of time here, talking to people, digging into ideas, arguing. It's mostly extremely affirming. I feel, in many cases, that these are _real_ relationships; more real, in some ways, than those with people I'm close to geographically.\n\nPeople talk about how the internet destroys distance. That's not really right, but it does introduce a new distance metric, or actually, it introduces multiple of them that simultaneously structure our lives.\n\n--\n\nAnyway, I'm trying to figure out how far this can really go. \n\nIt's so easy to talk about online life as a pathology. I've [done it myself](https://stacker.news/items/469984) recently. You can get apocalyptic about it. But I wonder: what does online life look like, in its best realization? Do you, dear reader, think you're anywhere close to that? I'm certainly not. I don't even try that hard -- I mostly get worse and worse until I go off the rails and my job suffers and my meatspace life suffers, and then I get ascetic and disappear for a while -- binge and purge, basically.\n\nAnd then I do it all again, my own personal halving cycle. What a stupid way to live.\n\n--\n\nThe other relevant piece is what this means for btc. Balaji has some interesting stuff to say about the role cryptocurrency plays in the network state, which I won't pick up for now. Most of you will hate it, I expect, although I don't, because I think the default discussion is quite unsophisticated about money's role in social coordination, and how it operates on many levels simultaneously, as discussed above. Money has always been how a group organizes itself; and there are more overlapping groups now than ever. Thinking that money is nothing more than Metcalfe's law misses the point.\n\nYou don't have to agree, though. We can let the data tell the story. The truth will come out.\n\n--\n\nBut that aside, btc is its best self when operating entirely online. It's [grounded](https://stacker.news/items/335178) in physical reality through mining, but other than that it's a construct of total abstraction, and every time we sully it by bringing it to earth we suffer for it -- KYC, government interference, privacy loss, all of it. The thought of the net being its own place, not just as a metaphor, but as an actual locus for the lion's share of human interaction, makes you wonder how btc projects into that reality. Digital money that instantiates scarcity, serving to intermediate transactions for abstract non-rivalrous goods.\n\n--\n\nI increasingly think this is the way btc finds escape velocity. It's a pain in the ass to sell coffee for btc, especially if the state doesn't want you to, because ultimately that coffee grounds out in the physical world: you need to buy beans, electricity, you need to pay your rent. Each link in that supply chain is an attack surface.\n\nBut software, or membership, or attendance, or music, or art, or other aspects of digital culture, or other stuff with no or minimal marginal cost -- abstract money can chase abstract goods, and nobody can stop it. And given the increasing importance of abstract goods in the concrete economy, this seems very interesting. This seems like the road that will get us there. \n\nThis is the real circular economy. Or the spherical economy, rather; the hyper-spherical economy.\n\nThat's my suspicion, anyway. \N 18269 \N 191551 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.3123982618725 0 \N \N f 179987976 \N 1 216279063 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 383440 2025-01-28 13:49:44.101 2025-03-29 22:39:47.091 Tools for Saving # Tools for Saving\n\n## stocks, bonds, metals, real estate\n\n![Screenshot 2024-03-15 at 6.12.39 PM.png](https://m.stacker.news/21981)\n\nEven if you’ve figured out how to acquire a pile of money, keeping it takes work. Truly wealthy folks sometimes stop chasing more, but everyone wants their pile to at least hold its value over time. Whatever you can buy today, the thinking goes, you should be able to buy the same tomorrow as well as ten years on. Wealth should be saved energy — society's debt to you — not a leaky bucket.\n\n## Preserving Wealth\n\nWe buy assets hoping they'll rise in value, but at the same time inflation reduces the buying power of our dollars each year. We need more and more dollars just to stand still. There’s an illusion of “making money” when we see the prices of our assets go up. But we’re often just running on a treadmill, while staying in place. We can’t choose not to run or we’ll fall off the back and become poor again.\n\nSo we’re all out there buying assets trying to at least keep up with inflation. And the pricing of those assets ends up having two components: 1) utility value and 2) monetary premium. The utility is obvious for many of these. “I will buy real estate so I can live in this house”. That is utility. But also, you’ve probably heard the very common idea that houses “go up” in price over time. Since most people know (err… believe?) that houses always go up they are comfortable storing value in homes. If you expect the house will store value and you can retrieve that value 10-20 years later when you sell it you become very comfortable buying a “more expensive” house than you might if you were purchasing just for the utility value of the house. That “more expensive” component could be thought of as the monetary premium. That monetary premium in real estate is why you hear about foreign wealth parked in unused real estate in Vancouver, California, and New York. They don’t care at all about the utility value. They only care about the monetary premium because it helps them store value to retrieve in the future.\n\nTo beat inflation, people are constantly searching for things they predict that other people in the future will see as valuable. In economics this is called a Keynesian Beauty Contest. It exists across all assets. There is no absolute metric of value in our ever changing world. Some people think it sounds smart to say that something has “intrinsic value”, but there’s no such thing. All value is subjective. There’s just whatever we all get habituated to agree is “about right”. And those estimates of value can and do adapt over time. However, they do tend to be somewhat sticky. So they adapt slowly. Therefore, a lot of people think of pricing as somewhat “real” at any given time even though it’s constantly shifting underfoot.\n\n## Problems with Traditional Savings Tools\n\nThe value of each of stocks, bonds, metals, and real estate is subject to human decisions, risks, and corruptions. Boards/CEOs can make bad decisions about a business destroying the value of a stock while technologies and markets can shift further destroying value. Bonds can have more underlying risk — especially “tail risk” — than their pricing recognizes. If metals or other commodities get bid up to hold excess monetary premium then miners produce more which drives supply up bringing prices back down. Real estate is subject to property taxes where the rules can be changed by a new political regime and the property cannot relocate. All of our best tools for saving are subject to these problems.\n\nBitcoin’s properties, on the other hand, are not subject to human decisions (they were at the start, but we’re far enough along now that no individual nor even small groups can make meaningful unilateral changes on any important policies today). There’s no strategic blunders and no yield/risk to price. Excess mining capacity doesn’t increase supply. And unlike real estate, the taxation must be considered a “fair deal” by the owner who pays the tax since the property is not tied to any particular location and the holder has the option to exit and pay tax elsewhere where they consider the tax just. Bitcoin’s is a transparent set of rules run on open source software that anyone can voluntarily run and audit. The whole thing works because enough people choose to run the same open source software as each other. Neither Satoshi nor anyone else can show up and force people to change the software they choose to run.\n\nNow bitcoin’s exchange rate to USD is entirely subject to human decisions at any given time, but the important properties of bitcoin's monetary policy and scarcity are due to math, cryptography, and social consensus. If everyone decided bitcoin is worth nothing then it would be worth nothing. But it has this special property of digital scarcity that never existed before and despite 10,000+ attempts has never been recreated after. And it’s easy to predict that if something uniquely demonstrates absolute scarcity and can be transmitted across electronic communication channels like the Internet that in the future other people will probably also value it. That’s why bitcoin might be the best tool for saving we’ve ever seen.\n\nWhen you have monetary premiums in traditional stores of value the system continues despite the problems. But when an alternative comes along that doesn’t have those problems, the monetary premiums enjoyed by those assets that exhibit the problems would probably shift to the one without those problems. It won’t happen all at once. It might take a generation to fully play out.\n\nBut it’s relatively easy to predict that people will choose to store wealth in the form least subject to such human decisions, risks, and corruptions if such a thing were to exist.\n\nAnd such a thing does exist. But it’s very early in its existence. So that repricing will only occur as more people learn about the special properties bitcoin has that no other asset in the world has. In the long run bitcoin reprices all of those other value stores into the neutral value store of its network.\n\nWhich is why it’s going up forever. It’s a much bigger deal than just “digital gold”. It’s the best tool for saving.\n\n♾️/21m\n\n---\n\n## For more detail on the scale of these traditional large asset classes:\n\nStocks (Equities): Estimates vary, but the global stock market value could be somewhere in the ballpark of $100 trillion to $300 trillion.\n\nBonds: The global bond market is estimated to be around $125 trillion to $150 trillion.\n\nMetals: The global gold market alone is estimated at around $10 trillion to $12 trillion.\n\nReal Estate: A rough estimate puts the global real estate market above $325 trillion.\n\nSumming up the total value of these assets is somewhere in the range of $500-$750 trillion. Which is roughly the scale of the market of tools for saving.\n https://www.curiousdk.com/p/tools-for-saving 6335 \N 383440 \N \N \N \N \N \N \N \N A_bit_of_Good_News \N ACTIVE \N 28.4765901097207 0 \N \N f 172266562 \N 1 86665390 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447642 2025-03-22 01:30:59.775 2025-03-29 22:39:47.091 Remove your Bitcoin culture lens ![intro-import.webp](https://m.stacker.news/25062)\n\nInspired by another stacker [post](https://stacker.news/items/493036) about Coldcard vs Seedsigner, if you are not aware of the incentives at stake behind a narrative, then you are likely to fall for the propaganda.\n\nHere is a great entertaining talk by @giacomozucco at the [Unconfiscatable Conference](https://youtu.be/GgFQgfssHBo) in 2022. It goes into detail about the various subcultures that have emerged within the Bitcoin community and how they have influenced the development (I have linked the podcast[^1] and article[^2] mentioned in the video introduction). Even Giacomo is likely to have bias with any investment he is part of.\n\nIt also makes me think of certain narratives that you come across when you first enter the Bitcoin space. What is not obvious at the time, are the biases behind these marketed narratives. \n\n---------\n\n### Privacy bias\n\nSamourai vs Wasabi is one that is easy to fall for. Both are competing companies with shared incentives. I think their main tactic, similar to the political system, is to attack each other to *create a kind of paradigm* that is presented to you, in that these two options are the only way you can achieve privacy on Bitcoin. **You're being handed a narrative** and the bounds within which you can argue about it. Then you are accepting the narrative and picking a side which is complete with in-group preferences and jokes and a feeling of moral superiority over those dirty 'others' that picked option number two.\n\nThis exists everywhere.\n\nI know these privacy products serve a purpose, but for these companies, their whole business model relies on Bitcoin Layer 1 transactions and they collect the whirlpool fees. You wouldn't wanna lose that, so a bias emerges. Layer 2 solutions like Lightning are attacked, as this would take away market share, even though a good level of privacy can be achieved there.\n\n----------\n\n### Lightning bias \n\nLightning also falls prey to false marketing because of speculative invested interests. It seems we are heading toward the LSP model for Lightning, where wallets will collect fees for channel management, routing etc. - ***What happened to instant, free payments?***\n\nA lot of VC backed Lightning businesses get a pass because it's 'for the greater good' but if another venture for another Layer 2 protocol comes along they're called a scammer. The whole space seems to have a sort of controlled narrative floating around it and it does seem to be steering us away from those Cypherpunk ethos - \n\n> From the user point of view, trusting third-party custodians like MtGox, instead of bothering to learn private key management, is convenient, but fragile. Trusting tax-lawyers and security guards to protect us from legal confiscation and casual kidnappings, instead of bothering to learn privacy best practices (Tor, CoinJoin, UTXO management, KYC-avoiding, etc), is convenient, but fragile.\n\n> From the developer or provider perspective, trust and centralization are obviously easier to monetize (how do you charge for open source, decentralized, trust-minimizes protocol?). But again, they are fragile. [^2] \n\n----------\n\nDo you see any other biases in Bitcoin?\n\nNothing will be perfect, and it's important to recognize there are no panacea solutions - only solutions with inescapable trade-offs. I think it can be dangerous to label yourself and be placed in a certain culture camp when it comes to Bitcoin. You need to be adaptable and expose yourself to challenges. The more options you have, the more freedom you have to respond to unforseen circumstances, and the less fragile you are to sudden events...\n\n----------\n\n***Become ungovernable with unconfiscatable property.***\n\n\n[^1]: [Svetski Podcast](https://fountain.fm/episode/CUPtIQD3Bmbu3DqfImsR)\n[^2]: [HOPF Cycle article](https://medium.com/the-bitcoin-times/bitcoin-and-the-hopf-cycle-of-the-internet-f351f1b7c1e3) \N 15409 \N 447642 \N \N \N \N \N \N \N \N security \N ACTIVE \N 19.5595915321743 0 \N \N f 72489702 \N 1 246177540 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446814 2025-03-21 13:40:31.199 2025-03-29 22:39:47.091 (Special Edition) Meme Monday- Best SN Meme gets 10k sats It's Meme Monday and we are going to spice things up a bit this week. \n\n**Send your best Stacker News related memes**. Memes can be directly about SN or something relating to the SN. Be creative. \n\nBest meme gets 10k sats.\n\nThe sats will be given to the stacker with the best meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\n![](https://m.stacker.news/45365)\n\nGood Luck! \N 6164 \N 446814 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 18.2754645657704 0 \N \N f 209721671 \N 1 120321303 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:47:58.703 f \N \N \N 0 0 0 0 1 0 0 427739 2025-03-06 15:38:45.044 2025-03-29 22:39:47.092 My experience with MUUN Wallet and why we shouldn't use it. Whether you are a new Bitcoiner, or with more or less experience, for sure you have heard or used MUUN wallet at some point. Today I'm going to tell you my experience with that wallet and why I stopped using it.\n\nSome time ago, in a galaxy far far away ...... Ah, no, sorry, that's another topic...\n\nSome time ago, and following the practice of searching and doing my own research, looking on Youtube for the best Bitcoin wallets, I found that many Youtubers were recommending MUUN wallet as "the perfect solution" for Bitcoiners. So I decided to install it and try it out.\n\nThe first thing that shocks me is their way of recovering the key seeds, it is not the traditional way, sure you know that it is recovered with 8 combinations of random letters and numbers + a pdf that they provide you, which seemed to me, I do not know, very strange, I was very suspicious about that, because if they tell me that they are self-custody and on the other hand they give me a pdf + email recovery, it sounds not credible, right? \nI was a bit suspicious about that way of giving us our self custody, but I decided to give them a vote of confidence and start using it (always with small amounts of sats of course).\n\nAfter 2 months of use apparently everything was going great when in this same year (2023) the news of the ordinals spread in the Bitcoin network. That's when the nightmare began!\n\nWhen trying to send X amount of sats using the Lightning network (LN) as the service had completely collapsed! Unbelievable as it shouldn't (supposedly) affect the high fees on the main Bitcoin blockchain to LN transactions.\n\nI took it upon myself to investigate further and the discovery is completely unheard of. In short: MUUN uses "submarine swaps" for their LN transactions, this means they are not purely LN, they rely on the mainnet to be able to move sats on LN.\n\nWith Onchain transactions it was worse all around. MUUN is supposed to do the conversions from the LN network to Onchain and vice versa, and of course charge its fee for its use, but it should not be as high as the amount it wanted to charge in those days when the Bitcoiner world was in turmoil when transaction fees were over 200 sat/vB.\n\nThe agony lasted several days with the service down or under maintenance, luckily I was just testing and didn't have many assets there. \n\nThat is my bitter experience with MUUN and why I decided not to use it or recommend it to anyone. \nI hope my talk was helpful and encourages you to do your own research every time. \n\nLet me know in the comments which Bitcoin and LN wallets you use and your experiences with them, I'll read you and we'll learn together!\n\n#bitcoin #wallets \n \N 11417 \N 427739 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 16.654319381469 0 \N \N f 143677969 \N 1 56435645 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448283 2025-03-22 14:21:36.286 2025-03-29 22:39:47.092 Ego death capital raises $100 million Fund II to accelerate the Bitcoin \N https://egodeath.capital/blog/gjqg3b90h389ufb4y0wnzflv0wfcho 9874 \N 448283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.6378629458781 0 \N \N f 1180316003 \N 10 137756722 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:53:00.042 f \N \N \N 0 0 0 0 5 0 0 436549 2025-03-13 16:24:20.295 2025-03-29 22:39:47.092 Wallet of Satoshi email database leaked I use one time email addresses for wallet of Satoshi. I have about 5 that were only ever used for that service. Each one is getting spammed with fake PayPal receipts with PDF attachments. Beware. \N 688 \N 436549 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 15.0101192240727 0 \N \N f 625558114 \N 6 230887889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:17:29.026 f \N \N \N 0 0 0 0 2 0 0 440764 2025-03-17 14:21:57.769 2025-03-29 22:39:47.093 SN release: territory transfers and small stuff There isn't a whole lot going on in this one but:\n\n- you can transfer a territory to another stacker now\n- the poll icon is green if the poll is still active\n- some image loading improvements (we reserve vertical space while it loads basically) \N 10554 \N 440764 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.116975278165 0 \N \N f 186843240 \N 2 21623613 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 397842 2025-02-10 11:47:48.049 2025-03-29 22:39:47.093 What else is trending towards becoming "free"? There's no such thing as a free lunch. I hope bitcoiners here already understand that.\n\nBut suspending the reality of "free" stuff for a moment -- what are the aspects of our lives that you anticipate we'll stop having to pay for over time?\n\nYeah, everyone wants a right to free healthcare, not understanding the stupidity of statements like that. That's not what I'm trying to get after here. Policy won't make stuff free. Government just makes stuff more expensive. What will _technology_ make free?\n\nThink of information, for an obvious example. Information at large has become entirely free thanks to technology. Of course, there's so much garbage out there that we'll pay to filter the noise out. But no one's paying for every page of text they read now. Google just spews it to us. Technological deflation is a wonderful thing.\n\nSo then, I'm wondering: Like information, what else will tech deflation make basically "free" for us in our lifetimes? \N 16543 \N 397842 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.2495450542546 0 \N \N f 284897120 \N 4 191595764 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:12:14.504 f \N \N \N 0 0 0 0 1 0 0 435883 2025-03-13 04:17:51.918 2025-03-29 22:39:47.093 Why I'm Bullish 8: Bitcoin is the Greatest Invention in My Lifetime When you really start to understand the world. The way it truly works. Not what you learn in school. When you learn how wars are funded. The incentives around the globe to foster war. Who profits from these wars. Why they never seem to end. When you start to understand how banking works. How "our money" is counterfeited by bankers. How politicians create money to get elected. How pointless voting and politics has become. How it is all a big show for the masses. This is when you are really ready to see bitcoin for what it truly is. The greatest invention in the last 50 years.\n\nBitcoin is more important than the Internet. Now, I know Bitcoin depends on the Internet but I believe one day soon the Internet will depend on bitcoin. I mean, the free and open Internet is dying. How will we keep it free? We have things like Nostr but without money, without a permission-less network to transfer value across space how can we be free? We can't. We can't in a digital age. We need sovereignty over money. Money is too important for any one person or group to control. \n\nFiat money is the life blood of the state. And war is the health of the state. So if you take the blood away from the state, it is limited in what it can do. I hope it will die but even limits to its spending would be a massive win. States across the globe and over time have killed more people than any other entity including plagues. Prior to the spread of democracies and fiat currencies wars were shorter lived and less deadly. Fiat money allows states to take war positions with little consequence. I can guarantee you this. If the U.S. tax payer actually had to pay for the conflicts the U.S. supports and is involved in we would have a massive change in policy. This is bullish. If bitcoin can stop the money printer, and I believe it can and will. We will see more incentives directed toward peace. Getting along. Finding common ground. Less incentives for death and destruction. War is incredibly destructive. Today a small number of men profit from it. Politicians gain power by it. Bitcoin will shift the balance. That my friends is reason for hope.\n\nAnd with all that on the line many would be willing to shed blood to achieve it. But we don't have to. Bitcoin can be a peaceful revolution. We only need to adopt it and help those in our circle to adopt it. Use the tools, support the work. A peaceful revolution. Now, lets not kid ourselves. The state won't go down without a fight. We have to be ready. There will be pain and persecution but it will be worth it for our decedents. I would love to see bitcoin achieve these things before I go to meet my maker. I hope I am able to.\n\nI'm so bullish.\n\nRead my previous posts in this series.\n\n- [1: Bitcoin is a Hurricane](https://stacker.news/items/383549)\n- [2: SeedSigner](https://stacker.news/items/384892)\n- [3: China Mining Ban](https://stacker.news/items/389176)\n- [4: Becoming Your Own Banker](https://stacker.news/items/391061)\n- [5: Open Source Money](https://stacker.news/items/392251)\n- [6: The ETFs are Capitulation](https://stacker.news/items/398832)\n- [7: Bitcoin is for Enemies](https://stacker.news/items/400699)\n\nThis post was inspired by @darthcoin's [post today](https://stacker.news/items/454900). It reminded me of what really lit the passion I have for this project.\n \N 3377 \N 435883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8572733300593 0 \N \N f 152295991 \N 2 42088541 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:58:14.165 f \N \N \N 0 0 0 0 2 0 0 425571 2025-03-04 23:30:17.423 2025-03-29 22:39:47.093 OpenAI fires Sam Altman for not being "consistently candid" > Mr. Altman’s departure follows a deliberative review process by the board, which concluded that he was not consistently candid in his communications with the board, hindering its ability to exercise its responsibilities. The board no longer has confidence in his ability to continue leading OpenAI.\n\nToo professionally vague to be interesting. https://openai.com/blog/openai-announces-leadership-transition 21003 \N 425571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2572118856815 0 \N \N f 96606060 \N 1 156408675 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446456 2025-03-21 08:47:37.641 2025-03-29 22:39:47.094 Developing Gameboy Bitcoin Wallet: My Latest Project is Here! Yet another Bitcoin wallet I developed 🙃 Introducing my latest project - the Gameboy Bitcoin Wallet! As some of my friends may remember, I've talked about revolutionizing Bitcoin wallets with a Gameboy-style interface in the past. Well, I finally had the time to make it happen!\n\n![Gameboy Bitcoin Wallet Gif](https://i.ibb.co/zfNWNMP/Gameboy-Bitcoin-Wallet.gif)\n\nAfter developing two other Bitcoin wallets - the [Savior Bitcoin Wallet](https://github.com/aniketambore/savior-bitcoin-wallet) and the [Bitchat wallet](https://github.com/aniketambore/bit-chat-wallet) - I'm excited to implement something truly fun and unique. With some free time on my hands, I've been working full-time to bring my wild ideas to life.\n\nAs someone without a traditional job at the moment, I'm putting all of my time into developing new and exciting projects like the Gameboy Bitcoin Wallet. While there's still more work to be done - such as adding send functionality, wallet recovery, transaction history, and more...\n\nThe source code is currently closed, but I plan to share it soon. If you're interested in supporting my work, please don't hesitate to reach out.\n\nThanks! \N 17824 \N 446456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0838610534215078 0 \N \N f 4191661058 \N 30 203347704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 9 0 0 434994 2025-03-12 11:48:06.263 2025-03-29 22:39:47.094 📣 Alby AMA tomorrow at 2pm UTC 🐝 @Alby announced yesterday in the @saloon that they will do an AMA tomorrow at 2pm UTC ([timezone converter](https://everytimezone.com/s/6b8f7f33)):\n\n> We'll be here on SN tomorrow from 2pm UTC (10 am EST, 6am Alaska). Come join and ask us anything!\n>\n> https://m.stacker.news/44112\n\nI figured I'd share this as a post so more people are aware and can make a buzz about it :) https://stacker.news/items/638423 848 \N 434994 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.1844502701615 0 \N \N f 121110092 \N 1 88216510 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:20:38.986 f \N \N \N 0 0 0 0 1 0 0 394457 2025-02-07 07:42:42.806 2025-03-29 22:39:47.094 We Need More Apps with Lightning, Not More Lightning Apps \N https://medium.com/breez-technology/we-need-more-apps-with-lightning-not-more-lightning-apps-b5f37f9ac8bd 19488 \N 394457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3123811601938 0 \N \N f 127107491 \N 1 98068578 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 439263 2025-03-16 10:58:17.593 2025-03-29 22:39:47.095 Stablecoin USDC just depegged. 0.93 usd now. edit: 0.91 Stablecoins are just too exposed to fiat world. They are part of the problem.\nHope not too many people get rekt tonight.\nhttps://www.coingecko.com/en/coins/usd-coin \N 19494 \N 439263 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.0476351997669 0 \N \N f 334605450 \N 4 84908171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428205 2025-03-07 00:02:33.562 2025-03-29 22:39:47.095 The ZEUS v0.8.0 open beta is here \N https://blog.zeusln.com/zeus-v0-8-0-open-beta/ 11477 \N 428205 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.4212835677158 0 \N \N f 488579994 \N 4 48048806 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402871 2025-02-14 07:31:04.94 2025-03-29 22:39:47.095 Introducing the new Phoenix: a 3rd generation self-custodial Lightning wallet \N https://acinq.co/blog/phoenix-splicing-update 1173 \N 402871 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.524464509292 0 \N \N f 2180805436 \N 15 55628908 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435908 2025-03-13 05:06:48.575 2025-03-29 22:39:47.096 Nayib Bukele Publishes El Salvador’s Bitcoin Address - 5,689 BTC worth $400M+ https://pbs.twimg.com/media/GIq17woXQAEQZ2c?format=jpg&name=large\n\nsource: https://twitter.com/nayibbukele/status/1768425845163503738\n\nmempool link: https://mempool.space/address/32ixEdVJWo3kmvJGMTZq5jAQVZZeuwnqzo \N 17365 \N 435908 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 18.5903296229857 0 \N \N f 1248421270 \N 10 157854347 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 07:10:32.665 f \N \N \N 0 0 0 0 4 0 0 441868 2025-03-18 10:45:52.069 2025-03-29 22:39:47.096 What’s the biggest purchase you’ve made with Bitcoin? I have a contractor doing some work on my home and we were talking about payment options. After he rattled off a few options, I asked if he accepted Bitcoin, and he said “umm, yes! Well, let me think about it.”\n\nThis would be a sizable purchase, which got me wondering, what’s the biggest (in terms of Bitcoin) purchase you’ve ever made? \N 9276 \N 441868 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.7844222417837 0 \N \N f 213983942 \N 1 241104387 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427527 2025-03-06 13:21:40.587 2025-03-29 22:39:47.096 Frostsnap - Easy, personalized, secure bitcoin multisig for everyone \N https://frostsnap.com/introducing-frostsnap.html 2583 \N 427527 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 8.93614389881801 0 \N \N f 243154679 \N 3 143182380 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 422808 2025-03-02 17:51:49.182 2025-03-29 22:39:47.097 Now Available: Broken Money \N https://www.lynalden.com/broken-money/ 638 \N 422808 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.9515519155045 0 \N \N f 194396707 \N 2 45700454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 375680 2025-01-21 13:16:49.973 2025-03-29 22:39:47.098 Is our culture setup to handle scarcity? \n### **A society without scarcity**\n- The world is more "_on-edge_" than ever. There is reason to be hopeful thanks to (NGU) technology but also reasons to be concerned. We certainly have a scarcity of strong leaders and lack of role models in society. In the vacuum created by modern-day politics, I would argue we are seeing "bottoms-up" but seemingly predictable nationalistic reactions. Rising from poor leadership, institutions & lack of planning.\n- Many of us on Stacker News are too young to remember or have experienced true scarcity of our goods & services. We have lived through nothing but abundance of any food, any toy, any tool or any service for relatively accessible & affordable prices. Thanks to mass production, the rise of the internet superhighway & offshoring/outsourcing.\n- What we may be about to go through however, is an era of scarcity. Scarcity of more than just political intelligence. Something that may be the opposite of the AI / IOT utopia many are anticipating.\n- The resources that we value - time, money, jobs, labour, tools, land and raw materials - exist in limited supply. Despite what markets have us believe. There are simply not enough resources to meet everyone's needs and desires. Especially not during times when others may wish to sabotage access for others.\n\n### **Why don't we study scarcity more?**\n- Is therefore our modern society prepared for true scarcity? Both in terms of our necessary resources, supply chains, but also for our money?\n- If we haven't lived through times of scarcity, shouldn't we be aware of what awaits us?\n- What has history & psychology told us about how humans deal with scarcity?\n\n### **The effects of scarcity on humans**\n- The limited research I did, seems to tell us that scarcity leads to more scarcity. How can that be?\n- When looking into the findings on how scarcity has affected humans previously, I came across [this article from Harvard in 2015](https://www.harvardmagazine.com/2015/04/the-science-of-scarcity).\n- The article surfaces many studies and psychological experiments conducted to examine the effect of real scarcity, hunger & poverty on the mind. Now scarcity need not automatically result in poverty, but the effects were more extreme than I imagined...\n\n### **What effect does scarcity have on individuals?**\n- Poverty & scarcity itself taxes the mind.\n- During periods of stress and tough self-control tasks, glucose levels plummet in the frontal cortex (the region associated with attention, planning and motivation). Low blood sugar can deplete physical capacities; plus a struggling mind can create similar chemistry in the brain, and trigger the same debilitating results.\n- When stress is less intense, being scarce in resources (poor) can _increase_ the amount of compassion we have for others.\n- [Other studies with universities](https://www.chicagobooth.edu/review/how-poverty-changes-your-mind-set) have found that for poor individuals, working through a difficult financial problem produces a cognitive strain that’s equivalent to a 13-point deficit in IQ.\n- In India, where sugarcane farmers are paid annually after the harvest, farmers’ attention scores were the equivalent of 10 IQ points higher after the harvest than just beforehand, when farmers were relatively poor. And yet this result had nothing to do with the intelligence of the farmers.\n- “It seems that to understand the psychology of scarcity, we must also appreciate the psychology of abundance. If scarcity can engage us too much, abundance might engage us too little".\n\n### **Poor borrowing choices increases scarcity**\n- While scarcity can help people focus on costs and benefits, it can also cause stress that shifts attention and steals cognitive bandwidth from us for critical decisions.\n- At first during studies, the poor performed better than the rich did; scarcity made them focus more intently on the task. Even when taking out loans to get ahead.\n- But soon after and by the final rounds, more time & resources went to paying back loans, and the poor lost rounds that the rich won easily. Early borrowing created a vicious circle for the poor.\n- Studies show the intimate link between success and failure under scarcity. And scarcity, no matter whom it menaces, inevitably leads to more scarcity.\n\n### **Scarcity of resources also exacerbates scarcity**\n- Water resources as mentioned in [this chart post on SN](https://stacker.news/items/528845/r/davidw) are increasingly becoming targets of attack. Plus disputes over access to water can also act as triggers for unrest. Creating a doom-loop of more scarcity. And that is a worrying trend we are already starting to witness.\n- Torreon Creekmore of IARPA ('Intelligence Advanced Research Projects Activity') stated: “*When crops fail and prices rise, people don’t have the money to purchase food, which can lead to stealing, then riots, social unrest, and mass migrations*.” Leading to more scarcity. People in positions of leadership are aware that our vulnerabilities are not just limited to water systems but agriculture too.\n- Looking at one of the worst possible conclusions, in periods of intense conflict like WWII, between [19-28million](https://en.wikipedia.org/wiki/World_War_II_casualties) civilians were estimated to have died due to hunger, malnutrition or disease. About 30% of the total, and equivalent to the total amount of military deaths themselves. Scarcity of collaboration, critical-thinking, commerce, supply-chains & vital nutrition created scarcity of life.\n- Also, today's movement to limit or make meat consumption less popular, compares very similarly with that era... where rationing, price controls & government vouchers for food soon became normalised, particularly for meat. [This article](https://www.npr.org/sections/money/2022/02/08/1078035048/price-controls-black-markets-and-skimpflation-the-wwii-battle-against-inflation) titled "_Price Controls, Black Markets, And Skimpflation: The WWII Battle Against Inflation_" paints a not-so-pretty picture.\n\n### **Saving prior to scarce times**\n- On a more positive note, a program called 'Save More Tomorrow' asked people to commit to savings deductions whenever their salary increases in the future; instead of asking them to sacrifice during times of scarcity. The results were encouraging across the board, and in one firm, more than 75 percent of those offered the plan chose to enroll. By the third pay raise (as rare as that would be today), those who had opted-in had more than tripled their savings rates.\n- As Bitcoiners, you could argue this is what we are doing. Building our resilience and defences via true savings. Ploughing any excess capital into a superior monetary asset, during the good times (of monetary excess).\n- But perhaps we should also consider our security setup, in the event of unpredictable and irrational humans around us. Those who may be faced unprepared with the reality of scarcity, without the experience, forethought and knowledge to cope initially.\n\n### **Could Bitcoin become MORE scarce than we could imagine today?**\n- If scarcity leads to poor decision-making and poor collective and individual decision-making, is it not inevitable that **bitcoin will get EVEN MORE scarce** than 1 of ~21 million?\n- Bitcoin is 15 years old. A teenager growing of age. Some estimates argue that ~4 million of Bitcoin is inaccessible or lost. Could that figure conceivably double in the next 15 years as Bitcoin matures and instability plus scarcity rises?\n- Yes more people will find their way to Bitcoin. More people will demand the existing share of the monetary network. That is almost a given over a long-enough time horizon.\n- However if stresses, debts, conflicts & prices are all on the rise, might we see events of increasingly inaccessible bitcoin? If people lose their seeds to fire, to bankruptcy, to botched confiscation or to passing away - Bitcoin could conceivably be _MORE_ scarce with the same amount of people using it as today.\n- Then imagine a worst case scenario were global conflicts to escalate in the coming 5 years. Many people may be unable to access their coin on-chain. What if the total amount of 'lost' and inaccessible Bitcoin were to become 8+ million? Would we see investigative businesses pop-up to try and retrieve and uncover those 'lost' seeds? Would market participants even be able to value the lost total? Would Bitcoin become more or less relevant due to such a shock? Many questions and many topics to explore in this new paradigm of scarcity. Paradigm shifts being a topic @elvismercury also explored in his post this week via https://stacker.news/items/525232/r/davidw.\n- On the face of it, the current reaction to self-custody & privacy with Bitcoin is seen by us all as an obstacle to block exits and to maintain influence within the incumbent's grasp. But it could also be that powers around the world, are already aware that **increasing events of sabotage and human-induced scarcity may propel ever-more scarcity in satoshis**?\n- Under such scenarios, self-custody would not only become an "_inconvenient_" release valve for inflation. With 15 years having now passed, and ~4m coins lost, Bitcoin in the next 15 years may become even more scarce. Not just because more people come to use and depend on it for their savings, but also because the scarce money in circulation becomes more scarce, should another ~4m coins become lost. And scarcity feeding more scarcity.\n\n### **Eventually, scarce money creates abundance**\n- Parker Lewis had a great article [shared here on SN](https://stacker.news/items/376139/r/davidw) on how scarce money will ultimately create abundance. As more people seek to work to obtain it.\n- However it strikes me that to get to that point, we are sailing some pretty wonky & wild waves. Would be interested in how Stackers think about our journey through scarcity. Many questions asked and many still for us to answer...\n\n \N 691 \N 375680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3485590544925 0 \N \N f 33843328 \N 1 178573916 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433937 2025-03-11 14:19:39.569 2025-03-29 22:39:47.098 Dtan.xyz - Bittorrent on Nostr! \N https://dtan.xyz/ 732 \N 433937 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.5335521127103 0 \N \N f 273004309 \N 2 239196288 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 19:00:55.553 f \N \N \N 0 0 0 0 2 0 0 450625 2025-03-24 06:03:54.949 2025-03-29 22:39:47.098 Meme Monday Show us your best bitcoin memes you have found/stolen/misappropriated since last week. No bounty; do it because it's too hot to do anything productive outside. \N 9307 \N 450625 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.8175623152445 0 \N \N f 196562257 \N 1 67084704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447172 2025-03-21 16:56:51.036 2025-03-29 22:39:47.098 CJ Wilson / @Str8edgeracer AMA Hi stackers- \n\nMy name is CJ Wilson and I'm an ex-MLB player. After I retired, I went full time into the car business and run a few dealerships in California. I have been active in a bunch of different investments and hobbies over the years, and actively shitpost against government tyranny here in California, and have been an early investor into bitcoin companies.\n\nI'm busy balancing 4 kids, 100+ employees, and investing on the side. It's been a wild ride over the last 20+ years between baseball and now bitcoin. \n\nI'm here to answer any questions you might have!\n\n-CJ \N 997 \N 447172 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.2020511828663 0 \N \N f 87925400 \N 1 102422016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 371743 2025-01-17 15:43:51.202 2025-03-29 22:39:47.099 Bitcoin Accepted - PoS systems I would like to make a recap of all known PoS (Point of Sale) systems with integrated Bitcoin payments, for small or big merchants, custodial or self-custodial, "ready to go" (no need any other complex installations)\n\n### PoS\nDefinition - A simple UI where the user can add items, prices, stock, images and easily charge in BTC, directly from that PoS UI.\n\n1. [BTCPay Server PoS App](https://docs.btcpayserver.org/Transmuter/EmailReceiptsPreset/#btcpay-pos-app-setup) - one of the biggest and well known self-custodial PoS\n2. LNbits PoS - PWA or mobile app (useful for tablets), [offline shop](https://github.com/lnbits/offlineshop), [TPoS online](https://github.com/lnbits/tpos) and [offline device](https://github.com/lnbits/lnurldevice), self-custodial and/or shareable instance\n3. [Zeus LN PoS](https://docs.zeusln.app/pos/overview) - integrated simple PoS into your mobile / tablet device, working with remote or integrated LN node. Keep in mind, the embedded LND node can be run in persistent mode and you could have a great simple solution for a small shop with an "always online" LN node connected to your PoS, self-custodial PoS\n4. [Breez Wallet PoS](https://breez.technology/mobile/) - simple PoS UI in the app, self-custodial PoS\n\n### Light PoS (payment terminals)\nWorth mentioning OTHER systems that are NOT real PoS but could be used together with other PoS systems. It means you can input the amount and get a QR code for the LN invoice and can be very useful in small shops that want to start accepting BTC payments with their already in place systems.\n- [Opago Pay](https://opago-pay.com/en/) - easy to use offline device that fw payments to your own wallet / LN address, the Bitcoin PoS for boomers\n- [CoinOS](https://coinos.io) - very simple, non-KYC custodial account, web app with integrated swaps onchain-LN.\n- [Blink Merchants](https://www.blink.sv/en/merchant-tools) - easy UI for small merchants, custodial, with fiat conversion\n- [Wallet of Satoshi](https://walletofsatoshi.com) - simple integrated PoS into the app, custodial\n- [Ibex Pay](https://www.ibexpay.io/ibex-pay-point-of-sale-for-merchants) - custodial, with conversion to fiat\n\nA separate mention is [Odoo ERP system](https://www.odoo.com/), but need previous installation / configuration. But this one is a full ERP system that can be used with Bitcoin payments directly.\n\nDo you know more systems / solutions? Please add them in comments. \N 9166 \N 371743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0023334222803 0 \N \N f 38909538 \N 1 63299571 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446631 2025-03-21 11:43:16.647 2025-03-29 22:39:47.099 Have you connected an external wallet on SN? Lately we've been working to build out a suite of external wallet connections for stackers, and have already launched [a few options](https://stacker.news/settings/wallets) for auto-funding and auto-withdrawing to date.\n\nJust wanted to post a quick poll to see how many stackers have had a chance to try out these external wallet connections to date, and open the floor to feedback on them so far.\n\n- Have you connected an external wallet to Stacker News yet?\n- If so, how was your experience?\n- What other external wallet connections would you like to see prioritized? \N 9517 \N 446631 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 8.05187305165557 0 \N \N f 616933781 \N 5 161472962 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 138518 2024-03-07 16:16:54.857 2025-03-29 22:39:47.099 CW launches legal notice saying isn’t Satoshi Nakamoto ![](https://m.stacker.news/40011) https://craigwright.net/ 4064 \N 138518 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3082831002317 0 \N \N f 204821960 \N 1 129811021 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 418312 2025-02-26 23:47:34.964 2025-03-29 22:39:47.099 Bitcoin ETFs not approved. SEC Twitter account got hacked. \N https://twitter.com/GaryGensler/status/1744833049064288387 20892 \N 418312 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.6110074530307 0 \N \N f 190443282 \N 1 22833615 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421641 2025-03-01 20:45:13.561 2025-03-29 22:39:47.087 ⛈️ Greenlight: Transforming Non-Custodial Lightning Access with Christian Decker We’ve just dropped Blockstream Talk episode #34 where Jesse Knutson welcomes Core Lightning developer and the lead engineer behind #Greenlight Christian Decker. \n\n\nChristian runs through a history of the open-source CLN project and explains how it fits into Greenlight, Blockstream’s non-custodial solution to lower the #LightningNetwork entry barrier for developers and businesses.\n\n🎧 Listen: https://tinyurl.com/blockstreamtalk34\n📺 Watch: https://youtu.be/GWcFncLQPwU\n \N 670 \N 421641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7854057968228 0 \N \N f 12152114 \N 1 72840364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451074 2025-03-24 11:33:41.143 2025-03-29 22:39:47.087 Dick Greaser AMA, Founder of The Bitcoin Bugle Hello my name is Dick and I am the founder of the Bitcoin Bugle. I'm married, have a kid, and smoke a lot of Marlboro Reds. I am an impartial journalist with the highest integrity. \N 989 \N 451074 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.1476949087433 0 \N \N f 561186947 \N 6 141599666 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436326 2025-03-13 13:33:22.165 2025-03-29 22:39:47.088 Career Advice Came across this post in my notes just now and thought of [the post](https://stacker.news/items/491091) that @Fabs posted today. Not literally about the same topic, but adjacent. I found it very wise.\n\n> They are the future you. Do not think that you will be substantially different. Look carefully at how they spend their time at work and outside of work, because this is also almost certainly how your life will look. It sounds obvious, but it’s amazing how often young people imagine a different projection for themselves.\n\nGood advice for people of all ages hungry for a life of meaning. https://moxie.org/2013/01/07/career-advice.html 21012 \N 436326 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 13.0456056859367 0 \N \N f 397328178 \N 5 249694125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:11:14.506 f \N \N \N 0 0 0 0 3 0 0 424890 2025-03-04 13:19:00.698 2025-03-29 22:39:47.088 What would you do if you received unexpected bitcoin from a known entity? Following [this](https://mempool.space/tx/d5392d474b4c436e1c9d1f4ff4be5f5f9bb0eb2e26b61d2781751474b7e870fd) recent transaction, I started thinking about [this](https://www.quora.com/I-received-10000-bitcoin-from-a-random-address-What-should-I-do-call-the-police) scenario again. Many of us have dreamed of receiving a lot of bitcoin, like hitting a significant jackpot. \n\nWhat would you do if you received unexpected bitcoin from a known entity? Assumptions:\n- You know who the sender is\n- The sender is an entity that you are not typically fond of (let's say it is Binance)\n- They are familiar with the address that they sent it to and might realize their mistake sooner or later \N 6594 \N 424890 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.4626599421519 0 \N \N f 89990982 \N 1 46712655 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422361 2025-03-02 12:08:41.091 2025-03-29 22:39:47.088 The Legend of the Snail - The Pay Up [_See here for part 1 of the story._](https://stacker.news/items/342259)\n\nThe day has come to finalize your bets on the number of days after the [first comment of the legendary snail](https://stacker.news/items/165652) (because using dates would be too easy).\n\nI have discussed the details of our bet with @grayruby and @Undisciplined [in this thread](https://stacker.news/items/343087). We have come to the conclusion to do the following:\n\n> **Everyone has a buy in but the buy in post and update posts as people are eliminated will earn zaps and rewards so just add those into the pot.**\n\n-- @grayruby in [#343272](https://stacker.news/items/343272)\n\n> That's exactly what I would suggest. Make the **buy in relatively small (5k or so), but then keep adding post and comment zaps received by @oracle to the pot.**\nFor reference, the NBA survivor pool has received over 20k in zaps and we've only been doing it for about a month.\n\n-- @Undisciplined in [#343285](https://stacker.news/items/343285)\n\nSo I would say let's do **1k sats as the buy in** to not price anyone out. We're doing this mostly for fun, right? :)\n\n#### **Therefore, the terms of participation in the $100k bitcoin bet are as follows:**\n\n1. **Pay @oracle 1k sats via LN address since this allows you to add a comment to the payment:**\n\n![2023-12-23-075129_1920x1080_scrot.png](https://m.stacker.news/9168)\n\nOn my end, this will look like this:\n\n![2023-12-23-075005_725x90_scrot.png](https://m.stacker.news/9169)\n\n2. Reply with "paid" (or something) to this post so I can confirm that your payment has been received by replying to you. I will include your number in the reply so we can confirm that this is your number now. If everything checks out at this point, you are 100% locked in. No number changes, no sat returns. You can delete your comment, but you cannot delete my comment, lol :)\n\n_This means you can still change your number if you **really** want to by putting a new number than before in the sender comment. I will not make sure that no one changed their number [since part 1](https://stacker.news/items/342259) or [before](https://stacker.news/items/168449). But others might, lol :)_\n\n3. I will regularly post updates about the bet. For example, I will [post when people were eliminated](https://stacker.news/items/343297) and what the current pot size is since this might change over time by new people joining or because of 4.\n\n4. Zap @oracle since the wallet of @oracle will be the pot size! You don't even have to participate to do that. Any @anon can zap @oracle.\n\n5. If bitcoin does reach $100k at a day which was not picked by someone, then the closest number wins.\n\n6. If there are multiple numbers with the same closeness, the pot will be divided evenly.\n\n7. Your number must be at least 90 days in the future.\n\n8. If you lose, that's it, you're eliminated and your elimination will be used to increase the pot via elimination posts.\n\n9. If you win, payout will be the same as the buy in: a transaction between two SN users (essentially SN's node paying itself). No payment of lightning invoices of other nodes, no onchain stuff.\n\nLet me know if I forgot something or anything is unclear.\n\nNow let's get serious!\n\n_And I will make sure now I don't lose access to this account, lol_ \N 15409 \N 422361 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.19003852679744 0 \N \N f 88671086 \N 1 147714890 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3191 2022-10-26 19:08:35.492 2025-03-29 22:39:47.099 Work-in-progress of my guide on financial sovereignty with Bitcoin. *I've started working on my guide which covers the path to financial sovereignty/ privacy with Bitcoin.*\n\n*What follows is the work-in-progress of part 1, which still misses the manuals of installing a full node / pruned node / locally hosted Blockchain explorer.*\n\n*Please have a thorough look, the most constructive feedbacks will each receive a 1000 sat bounty.*\n\n\n# Step One: Employ Your Own Node \n\n### General Overview of A Full Node \n\nThe common full node (or node) lies at the heart of the Bitcoin protocol. These nodes actively participate in the network by validating incoming transactions and blocks, and maintain connections to other nodes in order to propagate validated transactions and blocks along to their peers, ensuring that information is efficiently disseminated to all parts of the network. Additionally, they also contribute to the decentralization, integrity, security and state of the blockchain by operating collaboratively yet autonomously from one another. \n\nA full node contributes to Bitcoin's decentralization by maintaining independent copies of the blockchain and the Unspent Transaction Output (UTXO) set. These copies enable the node to autonomously verify transactions and blocks using its own transaction history and ensure that transaction inputs reference valid, unspent outputs. \n\nEach node validates transactions based on policy and consensus rules, and blocks based solely on consensus rules. \n\n* Policy rules are defined by individual nodes and can vary among node operators. They encompass a set of conditions or rules determined by the node operator and may include specifications such as minimum transaction fees, blacklisting certain addresses, or setting spending limits. \n\n* Consensus rules are fundamental and unchanging rules that are hardcoded into the Bitcoin protocol. These rules dictate how the network operates and include parameters such as block size limits, difficulty adjustment algorithms, halving schedules, and rules governing the issuance of new coins. \n\nDespite the absence of centralized control, the collaborative behavior of nodes following these consensus rules results in a shared consensus on the state, integrity, and security of the blockchain—albeit a dynamic one. \n\nUnlike traditional centralized systems where consensus is predetermined and final, the decentralized nature of the blockchain means that consensus is constantly evolving and adapting. Therefore, consensus within the Bitcoin network is often described as 'emergent consensus,' reflecting its ongoing and emergent nature.\n\n### General Overview of A Pruned Node \n\nA pruned node is essentially a full node that operates without a complete local copy of the blockchain, reducing storage requirements while retaining most functions of a regular full node. The key distinction between a full node and a pruned node is that the latter can only validate and propagate recent transactions and blocks, as it retains only the Unspent Transaction Output (UTXO) set along with the most recent transactions and blocks. \n\nAdditionally, a full node can be used to bootstrap fresh nodes by providing them with a local copy of the complete blockchain, which a pruned node cannot offer. \n\nSimilar to a full node, the pruned node begins its operation with a process known as the Initial Blockchain Download, or 'IBD.' During this process, the pruned node obtains, stores, and validates a complete copy of the blockchain from an already established node in the Bitcoin network. \n\nHowever, unlike a full node, which stores and maintains the complete copy and Unspent Transaction Output (UTXO) set indefinitely, a pruned node only retains the UTXO set along with the most recent transactions and blocks. By discarding older data, the pruned node can function similarly to a full node, independently verifying, validating, and propagating recent transactions and blocks to other peers, all while significantly reducing storage requirements.\n\n### Incentives for Running Your Own Full Node \n\n#### 1. Enabling Personal Enforcement of Bitcoin's Consensus Rules and Forks \n\nRunning your own node not only contributes to upholding Bitcoin's consensus rules, thereby enhancing the integrity of the Bitcoin network, but also empowers you to actively support or reject proposed forks. These forks represent changes in Bitcoin’s consensus rules, and by running a node, you can choose to enforce either the new, modified consensus rules or adhere to the existing ones. \n\n#### 2. Enhanced Privacy and Security of Personal and Transaction Data \n\nEvery time you engage in a bitcoin transaction, your wallet software requests transaction information, encompassing details such as transaction history, inputs, outputs, and confirmations, either from your local node or from remote nodes. \n\nRunning your own node enables seamless integration of the node into your wallet software, empowering you to independently query, transmit, and verify transaction information directly relevant to your wallet. Utilizing your node in this manner ensures both the privacy and integrity of your transactions, as it conducts transaction verification locally, adhering strictly to its own ruleset, and thereby ensuring that transactions are validated accurately and securely without disclosing sensitive data to external entities. \n\nOn the contrary, querying remote nodes poses security risks, as these sources may be compromised, leading to potential manipulation of transaction data or dissemination of inaccurate information. \n\nAdditionally, it compromises privacy, as the servers and nodes of third-party services can access your IP address, query history, and therefore, your account balances and spending activity. Moreover, any personal information provided to establish the service, such as email address, phone number, or physical address, can be linked to your transactions and account balances, further compromising your privacy. \n\n#### 3. Enabling Utilization of A Locally-Hosted Block Explorer \n\nRunning your own node empowers you to combine it with a locally-hosted block explorer, allowing you to have full control over querying and analyzing blockchain data directly from your own node, enhancing your privacy, control, reliability, and security. \n\nOn the contrary, relying on third-party block explorers poses several risks that can compromise your privacy, security, and the accuracy of the information you receive:\n \n* Third-party block explorers often collect and store users' browsing habits and transaction data, including IP addresses, query history, and other user information, potentially compromising users' anonymity and privacy. \n\n* Moreover, trusting third-party services to handle your data securely leaves you vulnerable to potential security breaches. If the service is compromised, your sensitive information could be exposed to malicious actors, posing a significant security risk. \n\n* Additionally, third-party block explorers may present data in a biased or manipulated manner, potentially leading to misinformation or confusion among users.\n\n# The End, For now.\n\n*I'd like to hear constructive feedback in regards to the text above. I've tried to structure and word the text as compact, precise, factual and complete as possible, without getting lost in details too much.*\n\n*I'm probably bordering the 30-hour-mark in regards to time invested in the above, and would really appreciate some input in regards to the correctness of it's contents, it's structuring, as well as what to add.*\n\n*Remember: this is a work in progress. The next part will cover self custody, wallet software (HD wallets), hardware wallets, UTXO's as well as best practices in regards to safeguarding privacy et cetera* \N 21180 \N 3191 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 25.1021634284679 0 \N \N f 98572037 \N 2 63750292 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427798 2025-03-06 16:35:54.834 2025-03-29 22:39:47.088 BREAKING: 🇺🇸 Former President Donald Trump shot at rally. \N https://x.com/WatcherGuru/status/1812251989759418579 21379 \N 427798 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.5510708214593 0 \N \N f 459212803 \N 3 4649379 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 14:49:30.549 f \N \N \N 0 0 0 0 2 0 0 435412 2025-03-12 16:55:54.3 2025-03-29 22:39:47.088 What is the best lightning business idea that nobody else is doing? \N \N 18068 \N 435412 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.37136209554681 0 \N \N f 329980398 \N 3 21905829 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 11:17:35.602 f \N \N \N 0 0 0 0 2 0 0 416070 2025-02-25 11:18:10.238 2025-03-29 22:39:47.088 ECB: "You No Longer Have To Pay Taxes On Bitcoin Because It's Worthless" \N https://www.bugle.news/european-union-you-no-longer-have-to-pay-taxes-on-bitcoin-because-its-worthless/ 21159 \N 416070 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.0028028967885 0 \N \N f 204002413 \N 1 76758249 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435769 2025-03-13 00:24:30.135 2025-03-29 22:39:47.088 I stopped smoking weed, gotta talk about it I wish @DesertDave well on his journey: https://stacker.news/items/496853\n\nPicking up the conversation again because I know a few of you relate.\n\n**I am done smoking weed. I'm fully done. It's not a long break, it's the *END*, bro.**\n\nSince 2017, I've been a bit of a stoner. It was great. Really smooth sailing, no trouble. In the US, cultural acceptance of marijuana shifted once states began to completely legalize or partially legalize the sales and 'medicinal' use of it. Now it's not even a question. I don't know how it's helped me or hurt me in life, perhaps this will be revealed the longer I go without, but it has bonded me to a lot of people by being a social activity.\n\nI was hesitant at first about smoking. No one in my family does, and in fact, they abhor it. I understand why. And they're squares anyway, so it's not for them. It took one profound experience for me to realize that it was for me: I went skiing in Colorado. While going through the process of renting my skis, I realized everyone working there was high, and it was totally fine. And I was like, okay hell yeah, that could be me.\n\nMy partner helped me get into it. He had to teach me how to inhale, which I wasn't doing for quite a few of my first puffs. We visited a greenhouse garden the first time I was properly high. A very fond memory I will always cherish, shout out to my bae. Maybe this experience stoked my interest in plant life, I think I acquired a new sense of the sovereignty and will of plants. \n\nI have had a lot of great experiences both solo and accompanied that the flower heightened. Yet I also remember the times that the flower heightened my anxiety and turned good times bad. No one said you could have it all, you know.\n\nWhy quit now? I have a good reason. I am committed to making my body a home for a baby. I want my mind clear for the journey of becoming a mother. I am nearing the end of my twenties, and I know it's time to move on. Goodbye stoner. \n\n*But I still like to have fun, okay?*\n\nIt's been nearly two weeks since I quit. I wasn't planning on abruptly quitting, but *gradually* like an addict promises to. Well, someone challenged me and called me out, and it was exactly the right thing to hear. I didn't think I was full of shit, it took someone else throwing it back at me to see it.\n\nWhat's been different since quitting? Kinda nothing. I haven't desired it. I haven't thought about it. I haven't missed it. Well, I guess I would say a day feels a lot longer than it used to, but not in a bad way. I'm filling the day with more stuff I want to do. And every day I grow more confident in my choice and its longevity. \n\nPeace to all you stoners and those who refrain. We all have our reasons. It's good to discuss them. \N 16970 \N 435769 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 0.697306232938217 0 \N \N f 328490425 \N 2 118853095 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 01:43:50.922 f \N \N \N 0 0 0 0 2 0 0 415047 2025-02-24 13:44:41.287 2025-03-29 22:39:47.088 Can Value4Value replace Ads? I used to think that V4V with Lightning was obvious, but kinda surprised that most of internet runs on Ads, so I've been talking to various people about it and tried to write down the summary:\nhttps://bitcoinpolis.gitlab.io/posts/2023/10/20/v4v-ads.html\n\nWhat do you guys think?\nAny other advantages or reasons why Ads monetization model is so successful?\nAny interesting projects tackling this space? \N 16680 \N 415047 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.4668320454519 0 \N \N f 77142631 \N 1 237061326 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3758 2022-11-09 17:29:56.517 2025-03-29 22:39:47.09 Jon Atack AMA Hi everyone,\n\nMy name is Jon Atack and I’m doing an AMA for the next hour.\n\nI've been working on Bitcoin Core since March 2019 and my little website related to that is at https://jonatack.github.io.\n\nHappy to answer questions if anyone has any! \N 10661 \N 3758 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.67875915287176 0 \N \N f 370245506 \N 3 237046932 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 419296 2025-02-27 17:43:54.046 2025-03-29 22:39:47.091 Mutiny wallet - questions to be answered Few weeks ago I start testing Mutiny wallet. I had some of my readers asking me about this wallet so I decided to test it for them.\n\nI know is still in beta and there's a long way until will be a mature app. But I gave it a try. \n- I like this idea of running a LN node in a browser. It can have many use cases.\n- is a simple UI and quite friendly for a new LN user that have no idea how LN works.\n- LDK still have some issues with opening channels with other implementations and you can get force closing channels if you do not use so often your Mutiny node. But I understand this that is not Mutiny team fault entirely and is fixable.\n- works pretty well, no big issues as I expected for a beta version.\n\n*Disclaimer*\nAs I always do, with all kind of wallet apps, I test from a normal user perspective. I play the role of a normal guy, that get into Bitcoin right now, and have little knowledge about how these things works.\nAfter that I go deep and learn more about the app/solution with more technical details.\n\nSo I have some questions for @TonyGiorgio and @benthecarman if they please to answer them. So please consider these questions like \n\n1. When you will have a proper FAQ page with more details for regular users?\n2. The fact that right now it can be run only on a hosted 3rd party domain (mutinywallet.com) it doesn't make it so "non-custodial" wallet/node. If the domain goes bust, also users can't access anymore their wallets. Yes, the 12 words seed of LDK could be imported in Electrum (I test it) but usually the funds are in LN channels and those cannot be recovered in any other LN implementation. I tested also to use Bluewallet LDK (as disaster recovery) and it doesn't work.\n\nSo, as a regular user that have no idea how to build from github source the LDK node and the web frontend, the user could be stuck. (I could say same way as using WoS and it goes bust).\n\nHow do you mitigate this aspect? Is not a yet released option?\n\nOn the website you mention "Self-hostable. No need to trust us. Host your own copy of Mutiny Wallet for ultimate self-sovereignty." But there are no instructions how to do it.\n\n3. Let's say the user can't access anymore the domain mutinywallet.com . Shit can happen, is understandable. Is there a procedure that user can initiate to close the existing channels and recover his funds onchain ? Do you provide assistance / help for these cases ? Can you provide some kind of chaintools offline (without running a LDK node) where the user can trigger an automated force close and recover his funds? \N 16684 \N 419296 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 15.6958018928471 0 \N \N f 292895036 \N 2 236721251 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415445 2025-02-24 19:46:24.409 2025-03-29 22:39:47.091 Ray Dalio's Changing World Order – thoughts? In 2021 the hedge fund manager Ray Dalio wrote a book called "Principles for Dealing with the Changing World Order". The book is accompanied by two video summaries on YouTube, one in 5 minutes, one in 40. Got interested through these videos, now I'm reading the book, and it's really insightful!\n\nThe tldr is that in his methodology, historical global empires (the Dutch, the British, the Americans...) have a quantifiable rising – maintaining – falling trajectory of about 250 years. The general theme is that we are currently living in the period where the US is starting to fall behind on his key economical and social metrics, is divided internally, and another world power is rising to the challenge. Typically the "passing of the torch" was accompanied by a local conflict.\n\nDalio makes a lot of interesting points about understanding one's place in history – for example that we rarely anticipate events that have always been happening historically (pandemics, wars, economic crises), because they happened to different generations, and that this incapability to anticipate such events is a recurring theme in humankind also. These historical cycles are typically longer than one single human life, hence this constant running in circles.\n\nHe developed his research to deliver better results to his stakeholders, so economy, monetary policy and reserve currencies are an important topic to his understanding of these empires. I haven't yet encountered him discuss bitcoin in the book, but if we are to believe his narrative, China's becoming a global dominant may become a very good reason even for ordinary people to get into bitcoin and privacy, given China's current stance on cryptocurrency and surveillance policing.\n\nHave you read the book and have something to add, or correct? If not, check these videos out and let's talk about it, I'm curious to hear what you think.\n\nShort version:\nhttps://www.youtube.com/watch?v=BB2r_eOjsPw&pp=ygUecmF5IGRhbGlvIGNoYW5naW5nIHdvcmxkIG9yZGVy\n\n\nLong version:\nhttps://www.youtube.com/watch?v=xguam0TKMw8&pp=ygUecmF5IGRhbGlvIGNoYW5naW5nIHdvcmxkIG9yZGVy\n\n \N 21202 \N 415445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.875589341978262 0 \N \N f 14980176 \N 1 156092827 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410545 2025-02-20 14:27:38.242 2025-03-29 22:39:47.091 Hodlhodl, Bisq announce Lightning ⚡️ integration plans Nothing like a good kick in the ass to move along LN adoption, amirite or what? \n\nhttps://twitter.com/hodlhodl/status/1655573809183719424?s=61&t=QONVWbrO4pnK8rbapgLvFA\nhttps://twitter.com/bisq_network/status/1654444075112865795?s=61&t=QONVWbrO4pnK8rbapgLvFA\n\n\nIf the L1 fees are annoying you, use a wallet that lets you customize them. Probably not going to get it down to 10 sat/vB any time soon, but you don't have to spend 500+ sat/vB either (unless you need the money in 10 minutes I guess). \n\np.s. I saw that Binance and Coinbase also announced LN plans but no one cares about them. \n \N 1236 \N 410545 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.7726851483257 0 \N \N f 106065881 \N 1 101053978 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413791 2025-02-23 13:21:16.174 2025-03-29 22:39:47.092 Coinjoins were not killed. They were decentralized. With the announcement of coordinator shutdowns, a bunch of Bitcoin influencers flocked to Twitter to virtue signal about how privacy is dead and mention how sad they are.\n\nBut you, *Bitcoiner*, have been consecrated with the blessing of OPEN SOURCE SOFTWARE. Are you going to forfeit it, or are you going to wield it?\n\n**Anyone can run their own coinjoin coordinator just like anyone can run their own node.** Nostr is used to discover new coordinators. BTCPay Server’s coinjoin plugin makes this an easy 1 click deployment: https://docs.btcpayserver.org/Wabisabi/#running-a-coordinator\n\n\nHere’s how you switch to other coordinators in Wasabi Wallet (using v2.0.7.1, this workflow may change in future versions):\n\nStep 1: Download the software https://github.com/zkSNACKs/WalletWasabi/releases/tag/v2.0.7.1\n** DO NOT LOSE YOUR MONEY – There are many phishing websites in search engine results, the official website is https://wasabiwallet.io/ **\n\nStep 2: Create a wallet by writing down your 12 words and writing down your passphrase\n** DO NOT LOSE YOUR MONEY – Your passphrase is the 13th word of your seed, you can’t recover your wallet or spend your coins if you lose/forget it **\n\n![](https://m.stacker.news/29904)\n\nStep 3: In the “Search settings / advanced features” box at the top of your client, open the “Data Folder”. From here, you can find the config.json file.\n\n![](https://m.stacker.news/29905)\n\nStep 4: Paste the connection info of your coordinator of choice in a new line at the top and save the file (Don’t delete any existing lines, just add the new one.) Here’s the info you paste to connect to my coordinator, I am not charging any service fee:\n\n`"MainNetCoordinatorUri": "https://btcpay.kruw.io/plugins/wabisabi-coordinator/",`\n\n![](https://m.stacker.news/29906)\n\nStep 5: Fully restart your Wasabi client after you saved your edit to the config.json file. By default, the application runs in the background when you click “X”, so you need to kill it directly from the task manager or disable that option in the settings.\n\nStep 6: Whenever you have enough funds, you join the coinjoin queue and wait to bundle your funds into an on chain transaction with other peers. Coinjoins are non custodial, so you don’t have to trust the coordinator or other participants with your precious sats.\n\n![](https://m.stacker.news/29907)\n\ninb4 @DarthCoin “Lightning is better privacy than coinjoin!”\n\nThey’re on the same team, you don’t have to pick between them since it's possible to open Lightning channels in a coinjoin transaction :) \N 21413 \N 413791 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.9773544326371 0 \N \N f 525145640 \N 3 231652788 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455117 2025-03-26 18:45:31.403 2025-03-29 22:39:47.092 Wife's Cancer Diagnosis (Part #3) [Part 1](https://stacker.news/items/423124/r/hodlpleb)\n[Part 2](https://stacker.news/items/434440/r/hodlpleb)\n\nI've been staying sober and trying to stay on task as much as possible, keep to a schedule. In the moment it feels nice to have a drink or do other non-productive things, but this results in more depression, staying up late, being non-functional the next day. Not a great look for me. Last night I stayed up until midnight, largely being unproductive, then skipped the 5:30 gym because I was exhaused ... going at 4PM instead, and getting back on track here.\n\nWe went out of town to get second opinions and spent a half day walking around and talking, about life, about the worst outcome, about the real plan, about how we will get through this. This is probably the most uninterrupted 1-on-1 conversation we've had since our kids have been born. It was scary, full of love, happy, sad... all the things. I found myself forgetting about the reality of the current situation and getting lost in a feeling of normal life, of feeling connected, probably more than we have in a long time. \n\nThis all, not unexpectedly, has provided us with a lot of perspective on our lives. In the scheme of the world, we are very fortunate. Loving family all around, more wealth than 99% of the world, health insurance, food, amazing kids ... the list goes on and on. \n\nWhile it _feels_ unlikely at the moment, as the doctors all seem confident about the situation, my wife and I had some very real conversations about _what if she dies_ ... she is going to prepare videos for the kids, things she wants them to know, places she dreams of visiting with them, things she wants them to know... It's very grounding and humbling to have the conversations in the context where your partner really might die in some kind of short timeframe. I encourage you all to have heart-to-heart conversations like this. The fact is that none of us know when our time will come. For my wife, it still could be this year, or in 5 years, or 50 years. Nobody knows. \n\nI've really been dealing with the ups and downs of the process. I feel good and hopeful, then I swirl down a negative path, or I catch on that my wife is having a hard day and might start to also nosedive. Hoping that it all feels less intense now that we’re getting into treatment. It has felt like we had fear, then a path, then fear, then a path ... Time to start on the path and see what it brings us. \n\nThank you all for your continued support. Several of you have reached out in various ways. Forwarding sats to some of you, and will continue to stack for the kids. \N 21520 \N 455117 \N \N \N \N \N \N \N \N food \N ACTIVE \N 20.8857258937612 0 \N \N f 78581208 \N 1 149897671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407621 2025-02-18 08:48:20.86 2025-03-29 22:39:47.092 Do you think we should teach kids about bitcoin in school? \N \N 5870 \N 407621 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 3.30813975698341 0 \N \N f 140640402 \N 1 136203046 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433799 2025-03-11 12:05:02.251 2025-03-29 22:39:47.093 Zeus v0.7.6 has been rejected by Apple \N https://nitter.net/evankaloudis/status/1668892805924544512#m 16406 \N 433799 \N \N \N \N \N \N \N \N health \N ACTIVE \N 9.8971832034935 0 \N \N f 644742840 \N 5 41958181 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:31:33.155 f \N \N \N 0 0 0 0 1 0 0 434916 2025-03-12 10:38:54.846 2025-03-29 22:39:47.093 Stacker News Growth Deck This week we put together a [Stacker News growth deck](https://docs.google.com/presentation/d/1DaMQNxOU3NpXIGb6X0xO9tvPzVnP2HK44tRMwD_czR4/edit?usp=sharing). It highlights:\n\n- Some of the growth experiments SN has run to date\n- Some of the growth ideas we're considering experimenting with in the future\n- How stackers can help grow Stacker News\n- Some of the stacker success stories to date\n\nWe'd love to hear your feedback on this deck along with any new growth ideas you want to see Stacker News experiment with moving forward.\n\nOne important note for context on SN's priorities [(as discussed in our Q1 roadmap call)](https://stacker.news/items/381208) is that our top Q1 priority is enabling new wallet connections, followed by iterating on territory features. \N 20871 \N 434916 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 10.5559087634787 0 \N \N f 860129819 \N 7 147783322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:35:39.087 f \N \N \N 0 0 0 0 3 0 0 448820 2025-03-22 22:28:00.482 2025-03-29 22:39:47.094 Accelerationism, Decelerationism, and Bitcoin There seems to be a growing divide in the tech community over the pursuit of technological advances and the risks they pose.\n\nA few recent examples:\n\n- SpaceX is pushing the frontier of space exploration while getting pushback from [Fish & Wildlife Service biologists](https://www.bloomberg.com/news/features/2023-08-25/elon-musk-s-spacex-explosion-left-major-debris-after-starship-rocket-launch#xj4y7vzkg) over launch impacts on quail eggs and land crabs.\n\n- I’m hearing some [top tech CEOs](https://twitter.com/tobi/status/1725727557415530556) that believe OpenAI’s decision to fire Sam Altman stem from the board’s concerns about AI risks.\n\n- Even in Bitcoin, there are pretty strong voices pushing for both protocol experimentation and protocol ossification\n\nI’m trying to wrap my head around this debate, but don’t yet have a clear understanding of what each crowd believes.\n\nAs far as I can tell, the largest movements seem to be:\n\n- the “e/acc” or effective accelerationism crowd that believe accelerating tech progress will solve society’s problems\n\n- the decelerationism crowd that believes slowing down tech progress will solve society’s problems\n\n- and then there is the effective altruism crowd which i think is part of the decelerationism crowd but i don’t really know enough about it to be sure. the only times i’ve heard that phrase used were in conversations about SBF and Sam Altman.\n\nWould love it if someone on here could steelman these competing ideologies and really break down the different ways they see the world.\n\nAs a side note, I also wonder how to categorize Bitcoiners using these frameworks. \n\nThere are certainly a number of Bitcoiners advocating for more tech progress, both within and outside of the Bitcoin ecosystem, but there is also a cohort of Bitcoiners that dislike new tech and long for traditional architecture, agriculture, culture, and a stable, reliable Bitcoin without new features. \N 656 \N 448820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.09395337431839 0 \N \N f 615474047 \N 4 75967550 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 16:04:18.959 f \N \N \N 0 0 0 0 4 0 0 416547 2025-02-25 17:18:22.646 2025-03-29 22:39:47.095 The perils of sleeping with your iPhone \N https://insanelyfree.substack.com/p/the-perils-of-sleeping-with-your 17708 \N 416547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7238107375529 0 \N \N f 188926870 \N 2 4079348 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435804 2025-03-13 01:27:29.776 2025-03-29 22:39:47.095 Mercury Layer went live today, checkout the deets on their webpage This is the most autist marketing page for a protocol i’ve ever seen 😂 https://mercurylayer.com/ 17162 \N 435804 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0468801198109 0 \N \N f 246932750 \N 2 30409390 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 18:56:05.184 f \N \N \N 0 0 0 0 1 0 0 423373 2025-03-03 09:52:50.595 2025-03-29 22:39:47.095 The Evil of the Residential Property Tax When my wife and I were buying a house, we were thinking that one benefit of owning is that our monthly payments would be fixed, even in an inflationary environment. What we missed is that as inflation ran up the nominal value of our home, that would run up our insurance and property tax payments.\n\n[The Evil of the Residential Property Tax](https://mises.org/wire/evil-residential-property-tax)\nBy [Ryan McMaken](https://mises.org/profile/ryan-mcmaken)\n"Residential property taxes attack one of the most fundamental needs and assets in a person's life—i.e., housing—in a way the income tax does not. As the central bank's monetary inflation drives up home prices, property tax burdens increase as well." \N 9329 \N 423373 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.46674255653291 0 \N \N f 406718 \N 1 149601559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457097 2025-03-28 07:42:25.835 2025-03-29 22:39:47.096 SN release: embedded videos, firefox logout fix and other patches Small release:\n\n* links to videos are now detected and will show a player like in https://stacker.news/items/672200:\n\nhttps://video.nostr.build/5d461884dd478dc1288e06c75d1a41d931e2ff66c41625aa7298d1dd6ed83212.mp4\n\nThis is the first step towards support for more upload types like video or audio.\n\n* fixed logout button on Firefox\n\n* fixed wallet form showing a different state if you reloaded the page while you were on it\n\n* fixed layout shifts caused by loading images\n\n* performance improvements regarding loading dupes\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 9.8m sats to 28 contributors for 126 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/664522\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 4313 \N 457097 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.19061447064046 0 \N \N f 248437173 \N 1 136575509 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 243274 2024-09-21 22:54:53.19 2025-03-29 22:39:47.096 Introducing Bitstake: A proof of stake bridge based on BitVM \N https://lightco.in/bitstake 20912 \N 243274 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.4481859894146 0 \N \N f 5547756 \N 1 41965799 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403999 2025-02-15 12:47:59.35 2025-03-29 22:39:47.097 How I Talk Bitcoin to Friends and Family During Thanksgiving I don’t.\n\nThat’s it. That’s the post.\n\n---\n_Extracts from one of my favorite pieces of writing ever, two years ago for [Bitcoin Magazine](https://bitcoinmagazine.com/culture/how-i-talk-about-bitcoin-at-thanksgiving)_: \n\n> In all sincerity, that is the full message: Just don’t do it. It’s not worth it.\n\n> You’re not an excited teenager anymore, in desperate need of bragging credits or trying out your newfound wisdom. **You’re not a preaching priestess with lost souls to save right before some imminent arrival of the day of reckoning.** We have time.\n\nThis, though, I suppose American HODL or Erik Cason might disagree with. Saving souls—or at least their wealth/purchasing power—_is_ the task of all upstanding Bitcoiners who love thy neighbors, and honor their father and mother, etc. \n\nhttps://www.youtube.com/watch?v=0Jy2QFRmhP4\n\nGigi's quote here always resonated with me\n![](https://m.stacker.news/64890)\nIt’s highly unlikely that your uncle or mother-in-law just happens to be at that stage, _just_ when you’re about to sit down for dinner. Perhaps on the porch, one-on-one, whisky in hand, with the most curious and intellectually balanced precoiner—_that_ might be worth a shot. \n\nThose are the standard rules of engagement that apply: \n\n> Now, I’m not saying to never ever talk about Bitcoin. We love to talk Bitcoin—that’s why we go to meetups, join Twitter Spaces, write, code, run nodes, listen to podcasts, attend conferences. **People there get something about this monetary rebellion and have opted in to be part of it. Your unsuspecting family members have not**; ambushing them with the wonders of multisig, the magically fast Lightning transactions or how they too really need to get on this hype train, like, yesterday, is unlikely to go down well. However, if in the post-dinner lull on the porch someone comes to you one-on-one, whisky in hand and of an inquisitive mind, that’s a very different story. That’s personal rather than public, and it’s without the time constraints that so usually trouble us. It involves clarifying questions or doubts for somebody who is both expressively curious about the topic and available for the talk. That’s rare—cherish it, and nurture it.\n\nAnd remember, nobody gives a shit: \n\n> Everyone has some sort of impression or opinion of bitcoin—and most of them are plain wrong. But there’s nothing people love more than a savior in white armor, riding in to dispel their errors about some thing they are freshly out of fucks for. Just like politics, nobody really cares.\n\nBitcoin is more important that probably anything else. But not at the margin, not in others' face, and probs not at all at the Thanksgiving dinner table. \n\nPEACE, friends \N 17690 \N 403999 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.6283875520692 0 \N \N f 907995518 \N 6 50524813 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 2186 2022-10-05 09:50:59.833 2025-03-29 22:39:47.098 How I spend my coins privately with Coinjoin and Lightning It's pretty simple. Each of these steps is done on a VM in my QubesOS install. But you could do it on any Linux box too. I'm sure I'm not the only person doing this. It's an obvious enough idea. But you should too if you're technical.\n\n1. [Download Wasabi Wallet](https://wasabiwallet.io/)\n2. Set the coordinator. I use https://btcpay.kruw.io/plugins/wabisabi-coordinator/\n3. Mix my coins.\n4. Install LND (you could probably use CLN for this too).\n5. Install Tor and/or a VPN.\n6. Configure LND to use tor in `~/.lnd/lnd.conf`\n7. Deposit a mixed UTXO from Wasabi into LND with `lncli newaddress`. You can pick a specific UTXO in Wasabi by typing Crtl-C-D. Picking a specific UTXO is better for privacy, and more effficient.\n8. Find a LN node to open a channel too. There's a few strategies here. One interesting one is to pick *new* Lightning nodes, eg from https://1ml.com/node?order=newest as the new nodes are most likely to be small and eventually shutdown again.\n9. Open a *private* channel to that new node, using all the funds, with `lncli openchannel --private --fundmax`, and send all the funds on it to a different LN node/LN wallet. I like Phoenix myself as it's easy to run it on my phone without needing a node. Cashu wallets are good too.\n10. Close the channel with `lncli closechannel --delivery_addr ` That option sends all the funds remaining in the channel to the address of your choosing. Depending on how much is left I either send it back to my Wasabi wallet. Or I donate it to a charity accepting on-chain donations. The reserve amount in a LN channel is like 1%, and sending 1% to charity is fine by me! My church suggests donating 10% after all.\n11. Delete everything in `~/.lnd` other than `lnd.conf`, and go back to step #7. This is important, as it resets the LN node ID for the next new channel so you can't correlate each channel being created.\n\nWhy do I do this? Because I'm getting the privacy benefits of Coinjoin. **Plus** I'm getting the privacy benefits of Lightning. Between the two, I've completely unlinked the source of my funds, and where they go, using both coinjoin to add privacy, and the inherent privacy of Lightning payments through obscure anon nodes.\n\nThis does cost a bit. But I'm happy to pay random pleb nodes channel fees to do all this. And I'm sure some of them benefit from getting free incoming capacity. The only issue is I want more people to do this too to get a bigger k-anonymity set of people doing this. Thus I'm writing this post, and boosting it too.\n\nHappy stacking! \N 15806 \N 2186 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.9413002926364 0 \N \N f 463354128 \N 5 123918652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 400918 2025-02-12 15:41:04.439 2025-03-29 22:39:47.098 Some thoughts on SN rewards \nBeen noodling on this topic for a bit (some recent discussions [here](https://stacker.news/items/400739/r/elvismercury?commentId=401873) and [here](https://stacker.news/items/369228) and [this great one](https://stacker.news/items/473181)), and here are what seem to me to be the most important questions to ask with regard to the SN rewards system:\n\n0. what do users like and want\n1. what user behavior helps the SN community to flourish\n2. what behavior can support the viability of SN as a business\n3. how can we identify that behavior using available data \n4. could we make new data available that would reveal it better\n5. are there features that would encourage users to exhibit more of this useful behavior, or perhaps, decrease counter-productive behavior\n6. how do we design incentives in accordance with the previous answers\n\nAll of these issues are more complicated than they appear at first. For instance, a ton is buried in the first one -- what does it mean to _flourish_, anyway? You could define that in a bunch of ways:\n\n- total volume of zapping\n- some measure of surface area of numbers of users x total zaps\n- number of daily posts\n- diversity of daily posts\n- summation of the relevance of posts over time, e.g., [evergreen-ness](https://stacker.news/items/331942)\n- complexity of created content according to semantic analysis or link structure\n- stacker activity over time \n\nand many of these have their own measurement problems, in turn. A minimum circularity is probably inescapable, e.g., part of the definition of _flourishing_ has to do with supporting SN as a going business concern, but not all of it; and part certainly has to do with users getting what they want, but not all of that, either, and anyway, which users? And what about potential users who are not here, but could be, as a kind of [natalist utilitarianist](https://philarchive.org/archive/METAFD) argument?\n\nIt will be interesting to consider March Madness in terms of questions like these. I don't have instincts about it, partly bc I'm not following the leaderboard or other stats, but at a minimum it seems the reward distribution should look different? Although perhaps it won't look as different as we think it will? What if the top X zappers earned exactly what they would have earned anyway? That's analysis waiting to be done; similarly with the other metrics.\n\nAny aspiring computer science, economics, psychology, or sociology PhDs in the audience? DM me to riff on dissertation topics. Or, I guess, reply in the comments :)\n\n \N 1136 \N 400918 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 13.4222799714226 0 \N \N f 648019060 \N 4 137459896 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 446774 2025-03-21 13:01:50.276 2025-03-29 22:39:47.099 Notes on El Salvador \N https://mattlakeman.org/2024/03/30/notes-on-el-salvador/ 712 \N 446774 \N \N \N \N \N \N \N \N history \N ACTIVE \N 10.0574328778147 0 \N \N f 834477022 \N 7 48121532 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:24:52.584 f \N \N \N 0 0 0 0 3 0 0 434440 2025-03-11 22:18:23.742 2025-03-29 22:39:47.099 Ecash is just digital fiat. Change my mind * Zero custody. You give up your bitcoin for a non-binding digital IOU from the mint.\n\n* No ledger. The mint can print as many IOUs as they want and inflate the supply.\n\n* 100% centralized. Only the issuing mint can redeem your IOU, regardless of how many members it has.\n\n* Impossible to audit. The mint can spend your bitcoin in secret and debase your IOU, and you will never know.\n\nI thought we built bitcoin to get away from all this fiat nonsense. What the heck is going on?\n\np.s reposting here since this was removed from `/ecash` sub. \N 1468 \N 434440 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 28.7418292409248 0 \N \N f 2117870613 \N 18 156158395 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 08:15:49.559 f \N \N \N 0 0 0 0 11 0 0 434814 2025-03-12 08:57:32.82 2025-03-29 22:39:47.099 Does this runup feel like anything? I don't think I've ever talked price here before, but it's been notable to introspect on how it has felt over the last weeks as the price has crept up and up. We're now at a level that felt absurd to me 2.5 years ago, precarious even. And now it feels ho-hum. Now it's like: this has not got interesting yet.\n\nTo be explicit: I don't think we're at $63k (at time of writing) for good, by any means. I expect topsy-turviness because I've been paying attention and topsy-turviness is the norm. But it's remarkable how the psychology of expectation adapts, in how what feels _right_ and what feels _precarious_ map to different numbers over time.\n\nJust curious if others have noted similar things in themselves. \N 1474 \N 434814 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 20.2115195811047 0 \N \N f 297319752 \N 3 34316014 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 15:05:12.619 f \N \N \N 0 0 0 0 3 0 0 443274 2025-03-19 08:20:16.637 2025-03-29 22:39:47.099 Griefing Bitcoin's Testnet \N https://blog.lopp.net/griefing-bitcoin-testnet/ 14472 \N 443274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.443887266837 0 \N \N f 1107212129 \N 10 77289636 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 07:09:12.522 f \N \N \N 0 0 0 0 8 0 0 443399 2025-03-19 10:22:37.149 2025-03-29 22:39:47.099 Visualizing/ranking bitcoin core contributors Hello, I was curious to explore what insights can be gained about Bitcoin's dev history from Github data. While there's a lot to uncover, in the fist iteration, i have looked at.\n\n\n1: How many have contributed to Bitcoin core? Who are the contributors?\n2: Can their contribution be quantified? Not all commits are equal, but nevertheless it is a decent starting point.\n3: Can GitHub data, such as commits, contributors, stars, and more, provide additional context and insights into Bitcoin's history? (WIP)\n\nHere is high level summary:\n\n1: Less than ~400 dev contributors so far\n2: the first five to do the commit on the github repo:\n\n| Login | Name | First Contribution | Contributions |\n| --- | --- | --- | --- |\n| non-github-bitcoin | Non-Github User Bitcoin Commits | 2009-08-30 03:46:39+00:00 | 271 |\n| gavinandresen | Gavin Andresen | 2010-07-14 15:54:31+00:00 | 1120 |\n| dooglus | Chris Moore | 2011-01-21 10:37:34+00:00 | 31 |\n| luke-jr | Luke Dashjr | 2011-01-28 19:39:31+00:00 | 526 |\n| mgiuca | Matt Giuca | 2011-02-25 21:45:38+00:00 | 6 |\n\n3: Top 5 contributors by # of contributions\n\n| Login | Name | First Contribution | Contributions |\n| --- | --- | --- | --- |\n| laanwj | None | 2011-05-07 20:13:39+00:00 | 7370 |\n| Anonymous | merge-script, MacroFake, MarcoFalke, Marco | NaT | 6272 |\n| fanquake | fanquake | 2012-02-28 12:31:56+00:00 | 3904 |\n| sipa | Pieter Wuille | 2011-03-17 21:51:59+00:00 | 2195 |\n| achow101 | Ava Chow | 2016-01-23 13:58:17+00:00 | 1604 |\n\n\nHere is a chart that has data on all the contributors. Pls have a look at the interactive version at. https://sorukumar.github.io/plebdashboard/v0%3A%20for%20feedback/Aug042024_Bitcoin_Contributors.html \nThe tooltip contains info about each developer and their contributions.\n\n![](https://m.stacker.news/46071)\n\n\nHere's how to read the chart:\n\n1: The x-axis represents the year each developer made their first contribution to Bitcoin Core. For example, Peter Wuille's first contribution was in 2011, so he's part of the "Class of 2011". The y-axis shows the number of contributions as of last week.\n2: The size of the bubble is correlated with # of contribution. So, larger bubbles indicate top contributors. The tooltip also displays the percentage of their contributions compared to the total number of commits to Bitcoin Core\n3: The color of each bubble represents the year of the developer's last contribution. This helps identify who is currently active.\n4: All anonymous contributors are grouped under the "Class of 2009". Upon examining the data, I found that many of these individuals are non-anonymous developers making commits anonymously. I even spotted a few high-profile names from big tech companies.\n5: The dark blue is Satoshi. https://github.com/non-github-bitcoin?tab=overview&from=2017-12-01&to=2017-12-31\n6: you may notice that the GitHub data appears to show a lower number of contributors. According to the GitHub API, the numbers are as follows:\n\n| Repository | Commits | Contributors | Forks | Stars |\n| --- | --- | --- | --- | --- |\n| bitcoin/bitcoin | 42041 | 1200 | 35988 | 77846 |\n\nHowever, out of 1200 only ~350 are identifiable. Looking at the data, I am sure majority of these anonymous folks are 350 dev making commit anonymously. Only 1k commits are out of these anonymous folks, except the dark blue bubble representing Satoshi. Remember v0.1.5 onward is available on the github. https://satoshi.nakamotoinstitute.org/code/\n\n\nI ended up doing hours of work to manage data quality issues ( account type: user/anonymous), so let me know if i missed anything obvious.\n\nAlso, let me know if you would like to get anything added into the analysis/data.\n \N 12774 \N 443399 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 27.2216390046876 0 \N \N f 2584679179 \N 17 220479989 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:54:56.004 f \N \N \N 0 0 0 0 7 0 0 427112 2025-03-06 05:49:41.238 2025-03-29 22:39:47.099 If the whole world decided to follow you, where would you lead them? Recently went to see Victor Wooten and his brothers in concert. His mother had a saying that they played in their intro video.\n\n"If the whole world decided to follow you, where would you lead them? Think about that."\n\nIts a great question. Think about it. \N 10591 \N 427112 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 5.89328760048673 0 \N \N f 236825282 \N 2 96003081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447221 2025-03-21 17:44:00.834 2025-03-29 22:39:47.099 Do You Use Nostr More or Less? Curious to hear how your nostr usage has changed over the last year \N 20555 \N 447221 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 29.2676664870876 0 \N \N f 211356585 \N 3 222616006 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:28:27.222 f \N \N \N 0 0 0 0 2 0 0 382751 2025-01-27 20:11:13.545 2025-03-29 22:39:47.099 Thoughts on using Strike to pay bills As many of you have already seen, Strike recently announced [Strike Bill Pay](https://strike.me/blog/announcing-strike-bill-pay/).\n\nOver the last few days I've thought more about the "going all in on Bitcoin" movement in this regard. I've been weighing the pros and cons of it all and here are my findings and concerns.\n\n**Disclaimer:** I'm a Strike customer. This is not financial advice. This is my first actual post. Be nice. Ha.\n\n---\n\n#### 💰️ Fees\n\n> **Note**\n> I fully understand that Strike is a business and has to make money in order to pay employees, infrastructure costs, etc. I'm not discounting this premise at all. I'm merely outlining the fees involved with going all in on Bitcoin using Strike.\n\n**Fee Tiers (as of December 2024)**\n![](https://m.stacker.news/67233)\n👉️ Note: Your fee will go down the more you use Strike for purchases as well as sales of Bitcoin.\n\n**Direct Deposit**\nIf you use the [direct deposit](https://strike.me/faq/how-do-i-direct-deposit-using-get-paid-in-bitcoin/) feature, you can allocate a certain percentage to Bitcoin or fiat. If you choose Bitcoin, then you will be charged a fee for purchasing Bitcoin at your fee level.\n\n**Paying Bills**\nIf you pay bills using Strike, this will count as selling Bitcoin and will be subject to fees at your fee level.\n\n**Taxes**\n> **Note**\n> I realize this is a controversial topic. I expect the usual debate and backlash by even mentioning taxes. Tread lightly.\n \nIn some countries, selling Bitcoin is considered a taxable event. So, when you pay bills with Strike, understand that you're incurring a taxable event. This taxable event can be subject to short-term or long-term capital gains tax based on the [cost basis](https://www.investopedia.com/terms/c/costbasis.asp) method you use when filing taxes. Delving further into this is outside the scope of this post, but feel free to do your own research and/or consult a tax professional.\n\nHere is a screenshot of a spreadsheet that Jack Mallers shared in his most recent [video](https://www.youtube.com/live/k6qu9bHqXiY?feature=shared&t=3436) from The Money Matters Podcast that shows an example of fees and tax obligations over a year by going all in on Bitcoin using Strike:\n![](https://m.stacker.news/67236)\nYou can see that fees and taxes can stack up. However, not sure how some of those figures are negative, but I digress.\n\nHere is the outcome of using Strike to go all in and pay bills versus holding in a bank account or HYSA:\n![](https://m.stacker.news/67238)\n\nJack mentioned he would open source or share this spreadsheet so the audience could play around with it. I eagerly await for that chance.\n\n#### 💲 Fee Saving Tips\nI currently use direct deposit but elect to have it be deposited as fiat. I then leverage the [recurring purchase](https://strike.me/faq/how-do-i-set-up-a-recurring-purchase/) feature to save on fees when purchasing Bitcoin. I could see using this strategy instead of directly buying Bitcoin with direct deposit.\n\n#### 📈 Pros\n**Bull Markets**\nDuring a bull market, if I'm depositing all of my paychecks into Strike as Bitcoin, then I'm actively fighting inflation by cutting my costs. This is an obvious win.\n\n**Faster Accumulation**\nIf you're not affected so much by bear markets, then this is great as you'll be able to accumulate more sats over time.\n\n**Bitcoin Standard**\nYou shift your mentality more towards a Bitcoin Standard by being paid in Bitcoin and paying for things in Bitcoin (kind of). I get that you're leveraging fiat rails to pay bills by using Strike, BUT you're also accumulating more sats in the process and fighting inflation. Yes, Darth, we all want our favorite local vendors to accept BTC and that takes time and perseverance. We all hope to get there one day. 😀\n\n#### 📉 Cons\n\n**Budgeting**\nI use YNAB to budget and keep track of expenses. So, when it comes to going all in on Bitcoin this throws a wrench in things. I'm not quite sure how I would tackle this using YNAB and Strike to save and pay bills.\n\n**Bear Markets**\nSure, going all in on Bitcoin and paying bills from Strike is great during a bull market, but what happens when we're in a bear market? That mortgage payment might not be possible if you lost 30-50% of your paychecks over the month.\n\n**Fees**\nAs you saw above, fees can stack up and in a bear market it hurts even more.\n\n---\n\nI suppose it's easy for Jack to really push for using Bill Pay with Strike, but I can only assume he's got most things paid off and only needs to pay off his credit cards monthly for discretionary costs (food, utilities, HOA, etc.) You're mileage is going to vary heavily based on your income, bills, lifestyle, time preference, etc.\n\nAnyway, I'm rambling now. I'm curious on your thoughts on this matter and whether it's worth going all in on Bitcoin with Strike when fees, taxes, and bears can really put a damper on things for the common folk. \N 17891 \N 382751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7331016627897 0 \N \N f 108107632 \N 1 230303952 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447761 2025-03-22 05:40:56.73 2025-03-29 22:39:47.099 A Sweet 15 in El salvador So I got invited to a quinceañera a (sweet 15) of a niece of mine. She is the only child of my favorite cousin, I love them so much.\n\n it just so happen to have taken palace at El Palo Verde in El Zonte where we have our bitcoin meet ups. I felt like a king staff knows me there so I got extra good service the food is fantastic and best of all you can pay with lightning. \n\nNow my aunt has a new husband and this guy is your typical brain washed Fiat maxi. In this guys mind Bitcoin is Bukele money, its political money. Unfortunately he is the new patriarch of that side of the family, the neo grandfather of my niece. When my cousin told me that he was a bitcoin hater I told my niece "meet me very early before breakfast I will give you your present come alone and bring a pen and paper" 🤣 you should have seen the look of confusion on her face.\n\nNext morning I was there real early to see the sun rise, I walked bear foot on the beautiful black sand glistening as i smoked my .10 cent hand rolled ciggar. When I got back to the hotel there was my niece, I gave her a big hug and told her "what im about to give you will change your life forever".\n\n I asked her what do you know about bitcoin she says "its the inevitable future" bright kid. I told her "pull out your phone we are going to download a couple wallets", now everyone in this country thinks you need ID to open an "account" for the lack of a better word, a misconception that chivo left in peoples minds. I told her "no we are downloading real wallets. you don't need IDs or any ones permission especially grandpas.\n She wrights down the seeds for an onchain and a lighting wallet I go on explaining she need to take care of this seed with her life, then she says "I can engrave this on to dog tags from grandpas shop with out him knowing" 🤣 instant rebel, damage done . smart kid first thing she thinks put it on metal. What do you expect from a future brain surgeon.\n\n I go on and send funds to her onchain and LN wallet. She understood the apps so well I couldn't believe it , it was like second nature to her mind blowing. I explain basics and send her links to further her knowlage. I call her for time to time to check up on her and her journey. Our last conversation she told me she wants to get a tapsigner. The future is so bright for this one and all the youths of El Salvador.\n\n\n \N 2204 \N 447761 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 21.8382240925659 0 \N \N f 1358383066 \N 11 16368902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 403893 2025-02-15 10:23:57.384 2025-03-29 22:39:47.099 Introducing: JoinStr 🦃 A Decentralized CoinJoin Implementation using NOSTR **What is CoinJoin?**\n---------------------\n\n![CoinJoin Illustration](https://imgprxy.stacker.news/n9yD-QOAityfKSmMcfTThJrAE8o1QIB2i6SuZOmVbmE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZWRlbGl2ZXJ5Lm5ldC93eXJ3cDNjLWowZ0REVVdnbkU3bGlnLzYwOWIxNzdjLTJkOTktNDU4YS00YzNiLTYzZmVjNjgzMWQwMC9wdWJsaWM)\n\nCoinJoin is a privacy-enhancing technique used in cryptocurrencies, primarily Bitcoin, to improve anonymity. It accomplishes this by combining multiple transactions into a single transaction, making it more challenging to trace the origin and destination of the funds involved.\n\n**Difference between Joinstr and Other CoinJoin Implementations**\n\nJoinstr sets itself apart from other CoinJoin implementations through several key features:\n\n* **No Centralized Coordinator:** Unlike some CoinJoin implementations that rely on a central coordinator, Joinstr operates in a decentralized manner, enhancing user privacy.\n \n* **Better UI/UX:** Joinstr prioritizes user experience, ensuring a smoother and more intuitive interface for participants.\n \n* **Simple Implementation:** The implementation of Joinstr is straightforward, making it accessible to a wide range of users.\n \n* **No Fidelity Bonds:** Joinstr does not require participants to lock up fidelity bonds, offering more flexibility.\n \n* **Anonymous Founder:** The project maintains a commitment to anonymity, aligning with its privacy-centric goals.\n \n\n**How Does It Work?**\n---------------------\n\n![Joinstr Workflow](https://imgprxy.stacker.news/jhPCv7GA4FyMWUNejpwGLKV-GqcYQGH3KbTAvCqUJec/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZWRlbGl2ZXJ5Lm5ldC93eXJ3cDNjLWowZ0REVVdnbkU3bGlnLzdmYjIzNDIzLTg4NmMtNDViOS01YjhmLWNjNGMyZGFlNTYwMC9wdWJsaWM)\n\nJoinstr operates by creating a post-mix transaction with an event ID. Here's a simplified overview of how it works:\n\n1. Calculate the `postmix_val` using the formula: `(input_sum - fee) / 5`.\n \n2. Generate an event ID for the CoinJoin round.\n \n3. Participants provide their UTXOs as inputs, specifying the amount and type.\n \n4. The CoinJoin transaction is created using these inputs and the event ID.\n \n5. The resulting transaction is broadcast to the blockchain.\n \n\n**Code and Implementation Details**\n\nJoinstr is available through various interfaces:\n\n* `__cli`: Command-line interface for advanced users.\n \n* `__web`: Web interface for a user-friendly experience.\n \n* `__mobile app`: A mobile application for on-the-go CoinJoin transactions.\n \n* `__electrum plugin`: Integration with the Electrum wallet for added convenience.\n \n\nThe Joinstr codebase and implementation details can be found in its repository: [Joinstr on GitLab](https://gitlab.com/1440000bytes/joinstr).\n\n**Joinstr in Electrum** ![Joinstr in Electrum](https://imgprxy.stacker.news/KA_Y3Qiq8PRZj29kUyaSd6xWTjtFpkeWcjb3Rj2HAdI/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZWRlbGl2ZXJ5Lm5ldC93eXJ3cDNjLWowZ0REVVdnbkU3bGlnLzgyYjlkMDVkLTJlZmEtNDJiZC1kMDQwLTA0NjhhYThiMjgwMC9wdWJsaWM)\n\n`Joinstr` also integrates seamlessly with the Electrum wallet, providing a user-friendly way to access CoinJoin functionality. An example transaction using Joinstr in Electrum can be found [here](https://sandbox.cryptpad.info/slide/inner.html?ver=5.4.1).\n\n**Demo** ![Joinstr Demo](https://imgprxy.stacker.news/7m9hpPyWYoZ9c8ECrcGp_M_Zk_jrdKtiMEiQietVkGI/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZWRlbGl2ZXJ5Lm5ldC93eXJ3cDNjLWowZ0REVVdnbkU3bGlnLzdhZGIwMjYzLTE0MTUtNGQ0OS04YmNmLWE5ZjE5ZjY3NWQwMC9wdWJsaWM)\n\nWatch a Joinstr demonstration in this video:\n\n[[ https://www.youtube.com/watch?v=O5qbexzO37c ]](https://www.youtube.com/watch?v=O5qbexzO37c)\n\n**What's Next?**\n----------------\n\nJoinstr continues to evolve, and the development team has an exciting roadmap ahead. Some items on their to-do list include:\n\n* Implementing new Tor circuits for each request to enhance privacy.\n \n* Utilizing NIP 38/48 for encrypted channels.\n \n* Allowing custom denominations for CoinJoin pools.\n \n* Restricting the registration of different types of inputs for a round.\n \n* Implementing NIP 9 to delete events after a round is completed.\n \n\n**Using Multisig and Miniscript Policies in CoinJoin**\n\nFor more advanced users interested in multisig and Miniscript policies in CoinJoin, Joinstr offers two related projects:\n\n* **munstr**: [munstr on GitHub](https://github.com/0xBEEFCAF3/munstr)\n \n* **coinstr**: [coinstr on GitHub](https://github.com/coinstr/coinstr)\n \n\nExample transactions for these projects can be found [here](https://sandbox.cryptpad.info/slide/inner.html?ver=5.4.1).\n\n**Coinjoin Using ALL|ANYONECANPAY Sighash Flag**\n\n![Coinjoin Sighash Flag](https://imgprxy.stacker.news/qF0gG2nbTfmJlvou1YalnXE7X7nXsVLFlwpovbWXlaE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZWRlbGl2ZXJ5Lm5ldC93eXJ3cDNjLWowZ0REVVdnbkU3bGlnL2RhMWM2NGM1LWZiMTEtNGQ3Zi00MGZmLWU2ZGQ3YjA4NjYwMC9wdWJsaWM)\n\nExplore a proof-of-concept (PoC) for Coinjoin using the ALL|ANYONECANPAY Sighash flag [here](https://gitlab.com/-/snippets/2542297).\n\n**Acknowledgments**\n\nWe extend our gratitude to the following individuals and organizations for their support and contributions until now:\n\n* [@HRF](https://twitter.com/hrf) - Human Rights Foundation\n \n* [@quaintrellexbt](https://twitter.com/quaintrellexbt)\n \n* [@jeremyrubin](https://twitter.com/@jeremyrubin)\n \n* [\\* @ecurrencyhodler](https://twitter.com/ecurrencyhodler)\n \n* [@fiatjaf](https://twitter.com/fiatjaf)\n \n* [@jeff](https://twitter.com/jeff)\n \n* [@achow101](https://twitter.com/achow101)\n \n\nStay updated on Joinstr's progress through [Nostr](https://snort.social/p/6681268ace4748d41a4cfcc1e64006fb935bbc359782b3d9611f64d51c6752d9) or by using the following address: `npub1v6qjdzkwgaydgxjvlnq7vsqxlwf4h0p4j7pt8ktprajd28r82tvs54nzyr`.\n\nJoinstr represents an important step in enhancing cryptocurrency privacy, and its commitment to user-friendly design and decentralization makes it a noteworthy addition to the world of CoinJoin implementations.\n\nProject: [Joinstr @ BOLT.FUN](https://bolt.fun/project/joinstr)\nTags: `#brainstorm` `#bitcoin-design` `#nostr` `#activity` `#discussion`\n\n\nOriginal article posted on [BOLT🔩FUN](https://bolt.fun/story/introducing-joinstr-a-decentralized-coinjoin-implementation-using-nostr--1026) \N 21815 \N 403893 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.9234701972262 0 \N \N f 755443688 \N 4 60596119 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 447184 2025-03-21 17:10:08.014 2025-03-29 22:39:47.1 Getting started with Green Wallet Lightning ## A step by step guide about how to start using Green wallet with Lightning, a good option for new LN users.\n\n> *This guide is available on my substack in [English](https://darthcoin.substack.com/p/green-wallet-getting-started) and [Spanish](https://darthcoin.substack.com/p/comenzando-green-wallet-lightning).*\n\nMany of my readers were asking me to write this guide, even that most of the documentation can be found on Blockstream website. \n\nI hope @blockstream_official will like this "getting started" guide even that I took some excerpts from their docs then added some of my observations and recommendations and put them together into this short guide to have it at hand for new users.\n\nThe long awaited Lightning wallet on Blockstream Green have arrived. At the time writing this guide, IS STILL IN BETA PHASE, but if you want to test its functionalities, is ready to be used on Bitcoin mainnet.\n\n![laptop_green_lander.png](https://m.stacker.news/6638)\n\nAt the end of this guide you will find all the links to download it so I am sure you read first the IMPORTANT steps you should do.\n\n## INTRODUCTION\n\nThe Green wallet is a multi account application, where you could start using multiple Bitcoin accounts (singlesig, multisig, watch-only, HW-connect) and now also was introduced the Lightning account.\n\n### What's the difference between wallets and accounts?\n### Wallets\n\nA Green wallet lets you store and spend you funds securely and conveniently. I's self-custodial, so it means that it stores or manages the keys to access your bitcoin, so you are in control.\n\nTo start sending and receiving funds on Blockstream Green, you must create at least one wallet, but you can have create or import multiple ones.\n\n![green-accounts.png](https://m.stacker.news/6640)\n\nFor each wallet you create, need to back up your primary key. The backup consists of a 12 or 24-word recovery phrase.\n\nEach wallet can be accessed via PIN or biometrics and even be exported across multiple devices.\n\n### Accounts\n\nAn account is a subsection of wallets that allows you to separate funds based on your needs, for more security, or instant payments. You can manage multiple additional accounts in each wallet.\n\n![green-accounts.jpg](https://m.stacker.news/6641)\n\nAccounts are tied to the primary key in which they are created. The recovery phrase backup of your primary key, unlocks access to all accounts inside that wallet. If you lose access to your wallet, you lose access to all accounts inside the wallet.\n\n### What Is the Purpose of Using Multiple Accounts?\n\nSome of the benefits of using multiple accounts include:\n\n### Instant transactions\nTop up your instant account to send instant cheap transactions to everyone on the Lightning Network, with our unique self-custody solution for Bitcoin Lightning payments.\n\n### Increased Security\nYou can create a 2FA protected account, where spending funds from requires authenticating with a separate 2FA of your choice among Authenticator app, email, sms, or call.\n\n### Easier Accounting\nMaintaining multiple accounts can be useful if you want to keep track of different income streams or budgets without having to write down and store a new recovery phrase for each balance.\n\n### Stronger Privacy\nYour account balance shows the total value of all UTXOs in your account. When you make a transaction, your Blockstream Green app may combine transaction outputs in order to send the required amount of funds. Combining UTXOs can compromise your privacy as it links multiple addresses to the same sender.\n\nBy creating separate accounts within the same wallet, you can control which UTXOs are combined and which aren’t. Blockstream Green will never combine UTXOs from two different accounts, even if they are part of the same wallet.\n\nIn Blockstream Green, your funds are stored inside accounts, which are stored inside wallets. Accounts enable you to conveniently separate your funds in one wallet. For example, you might use one account for daily spending and another for stacking securely with 2FA protection.\n\n### LET’S GET STARTED\nTo play around and test it, you would need to activate the “experimental” features and open a “Lightning Account”, is actually a CLN node using Greenlight, where the keys stays on your device.\n\nFirst step is to create a simple Bitcoin wallet, single sig, from which will be derived the keys for your Lightning Account (node).\n\nYou do not have to deposit any BTC into this onchain wallet and then later open a LN channel (as you are used to do with regular LN nodes). The Lightning node could receive straight away sats directly from a LN invoice. Greenlight (Blockstream backend node hosting) is providing all the liquidity and channels management as the main LSP.\n\nFor a regular new user, this is a very simple way to start with Lightning without all the hassle of running a full LN node and managing the liquidity, channels etc.\n\nAfter you create a main Bitcoin wallet, then go to App Settings (top left drawer on main screen) and activate “Experimental features”.\n\n![green-exp.jpg](https://m.stacker.news/6642)\n\nOnce you’ve done that, go back to Accounts screen and click on “Create new account“ button from top right. Then on the bottom, click on “Advanced features”. You will see that now you can create a “Lightning Account”.\n\n### Some aspects to remember:\n\n- This LN account will have maximum 4M sats capacity.\n- Green is using splicing, to expand channel capacity (same as Phoenix).\n- You will be asked to encrypt the node keys on your device with YOUR device PIN. Be aware, some users the tried using a new PIN, but is actually your device security PIN. It is NOT the Green app PIN, that you normally set for opening.\n- Save the LN nose seed for backup !\n- Save the nodeID for backup and later use !\n- The node liquidity is offered ONLY through Blockstream Greenlight LSP (similar with Phoenix), but the keys stays on your device.\n- Green is supporting fully LNURL, except LUD-18 and 02. And it works pretty well.\n\n###How Liquidity works in Green LN wallet?\n\nLet’s explain a bit, for new users, how the liquidity works in Green so they have it clear in their mind from the beginning.\n\nSo, Green is dedicating a maximum 4M sats capacity for this LN account. That means you can deposit a max 4M sats initially or during the whole use of Green, through smaller amounts until you reach that max limit.\n\nWhen you are inside the LN account, if you click on the top right corner menu and open the “Node Info” option, you will see your LN node ID and also displaying the liquidity available.\n\n> You better save that nodeID info together with your LN seed words that are separate from your main Bitcoin wallet !\n\nSo let’s say you deposited 50k sats initially.\n\n![photo_2023-12-03_17-57-56.jpg](https://m.stacker.news/6643)\n\nAs you can see, on the balance it says 47199 sats (represent the 50k - 2500 sats fee - some tests I did) and bellow it says 28174 sats “receive capacity”. That means I can still receive 28174 sats WITHOUT paying an additional 2500 sats fee to expand the capacity of that channel, through splicing.\n\nThis is a nice way that Green is offering to users to have like 40-50% more inbound capacity on top of what they already deposited.\n\nNow come the interesting part. Let’s say you deposit more than that extra capacity of 28174 sats, you deposit 900k sats. In that moment the channel is expanded using splicing LN feature, you pay an extra fee of 2500 sats and now you have a bigger channel. But is still full and you will still get a smaller inbound liquidity on top.\n\n\n![photo_2023-12-03_19-45-25.jpg](https://m.stacker.news/6644)\n\nRemember you cannot go further than 4M sats. I think this is a limitation for beta phase and not be too much reckless. But 4M sats for mobile LN wallet is more than enough.\n\nWhat happen if you swap out those 900k sats now? Let’s say you want to move them to an onchain wallet. Fine, use any [swap service](https://darthcoin.substack.com/p/lightning-network-submarine-swaps) to move out those sats, but not all, just leave in the channel at least 1%.\n\nIn that moment you will remain with an almost empty channel, ready to receive more sats over LN, without paying those extra fees of 2500 sats for each deposit. That’s why is recommended to start with a bigger initial deposit, so you will pay only once that fee, instead of each time you deposit.\n\nFor the moment I could find a way to swap out directly into main Bitcoin wallet, you have to use an external service.\n\nBut the swap in function works just fine.\n\n![photo_2023-12-04_10-58-21.jpg](https://m.stacker.news/6645)\n\nClick on LN account main screen the “Receive” button and in that screen, before you put the amount, you will see at the bottom “Show onchain Address”. Will generate a new BTC address to deposit.\n\nIn the next screen you will get the BTC address and also a warning saying that min and max limit for that deposit. Also a fee for the splicing will be applied.\n\nAs you can see is limiting the max deposit to 900k sats. I don’t know why exactly this limit, but I supposed is specific to beta phase and also maybe for a better channels management and not being abused. But is more than enough for the moment.\n\nSo this onchain deposit practically will expand your channel capacity with the amount of sats you deposited + what you already had inside + a little bit more inbound capacity.\n\n### OBSERVATION\n\nAnother very interesting aspect to be mentioned is that this LN wallet is offering more privacy when you RECEIVE sats over LN. Why? Because is using wrapped invoices.\n\nI did a test, creating an invoice in Green and then decode it into [LN decoder](https://lightningdecoder.com/) to see possible tracing of the LN invoice. You can see that end up as “destination” node a BreezC node, that I supposed is the LSP for Greenlight, using the new C= specs.\n\nSo in this way, your Green nodeID is not revealed in a payment, offering more privacy.\n\n### CONCLUSION\nI think this is a nice, simple and elegant way for new users to start using Lightning without any complications, with self-custody of their keys.\n\nThis wallet is a good alternative to all those custodial accounts, some of them even KYC and closed source. It still have some limitations, but for a not so technical user is a very good option.\n\n### RESOURCES LINKS:\nGreen is free, open source software, that can be installed from Google Play Store, Apple Store, F-Droid and also straight from Github repository ([you can use Obtainium for updates](https://darthcoin.substack.com/p/bitcoiners-mobile-device))\n\n- [Blockstream Green Website](https://blockstream.com/green/) | [Github](https://github.com/Blockstream/green_qt/) | [Documentation](https://help.blockstream.com/)\n- Download links: [Google Play Store](https://play.google.com/store/apps/details?id=com.greenaddress.greenbits_android_wallet) | [Apple Store](https://apps.apple.com/us/app/green-bitcoin-wallet/id1402243590) | [F-Droid](https://f-droid.org/en/packages/com.greenaddress.greenbits_android_wallet) | [Github repo](https://github.com/Blockstream/green_qt/releases)\n- [Telegram Support](https://t.me/blockstream_green) \N 16301 \N 447184 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 13.6520942020307 0 \N \N f 1192883751 \N 8 83645881 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:02:59.66 f \N \N \N 0 0 0 0 1 0 0 442298 2025-03-18 14:02:45.415 2025-03-29 22:39:47.1 Minecraft Server Will End Bitcoin Earnings After Mojang Demand \N https://decrypt.co/198541/minecraft-server-end-bitcoin-earnings-after-mojang-demand-report 20019 \N 442298 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.4381720556711 0 \N \N f 126319727 \N 1 98839177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:59:55.239 f \N \N \N 0 0 0 0 1 0 0 430891 2025-03-09 13:43:31.077 2025-03-29 22:39:47.1 Some thoughts on re-reading Bradbury's *Fahrenheit 451* I found a copy of *Fahrenheit 451* in a Little Free Library on Friday. I didn't take it, since I had a copy at home, but it was a reminder to re-read it. Bradbury's my favorite author after Shakespeare, but I hadn't re-read this one in a long time.\n\nA few themes that emerged:\n\nObviously, the core theme of the book is that the **government controlling information is how it stays in power**. This is self-evident to most folks here (and elsewhere), of course. But there are two interesting elements to that here:\n\nFirst, the history of censorship in this world wasn't from the top down. It started from the ground up, with people protesting specific books and shaming people who read them, coming from both what we'd describe now as the "politically correct" left and the "moral majority" Christians. When the government actively takes over banning and burning books, it was something they were handed as a tool and recognized as useful.\n\nSecond, It's reading, not just information, that's really banned. Yes, of course banning history and economics will keep people ignorant, but banning poetry and fiction also stops people from thinking. It's Matthew Arnold's [Dover Beach](https://www.poetryfoundation.org/poems/43588/dover-beach) that's the turning point here, bringing one minor character to tears because it's the first time she's actually experienced that kind of beauty. And if we go with the meta here, of course Bradbury's own book is meant to make people think and care.\n\nBut while censorship's the obvious (and best-known theme), another huge one is the **dumbing down of society with bread and circuses**. Guy[^1]'s wife and her friends are all addicted to what are essentially reality TV shows (the Kardashian kind, not documentaries), and it's losing access to these (and to the huge flatscreen TVs) that really has her upset with Guy's questioning his career. And when she's not watching TV, she's wolfing down sleeping pills. The government keeps everyone mentally sedate to ensure no one challenges them.\n\nI'd remembered that theme, too (it's hard not to, and is nearly as major as the censorship). The one I'd forgotten is the take on **cars and pedestrians**. A small but significant part of this dystopia is Bradbury's accurate prediction of how our society would be even more addicted to cars. Clarisse (the young freethinker Guy meets) notes that her uncle was arrested for being a pedestrian. We later learn that she gets run over by a car (though there may be more to that story), as cars speed along roads with no attempt to avoid pedestrians. Walking, in this world, is inherently dangerous. Later, Guy is on the run and has to cross a road, and the only reason a car doesn't run him down is that his knee injury causes him to trip, and a car hitting a prone human has the potential to cause an accident that could hurt the driver. \n\nAs someone who always choose to walk when given the chance, this is like another layer of dystopia on top of the ones imposed by the government here. There's no sign that it's an active choice, but there's clearly no concern with or attempt to penalize any of the drivers.\n\n(Aside: Bradbury was concerned with this in [other works, too](https://www.riversidelocalschools.com/Downloads/pedestrian%20short%20story.pdf))\n\nThere's a bunch of other minor things -- Mildred, Guy's wife, uses what are essentially bluetooth earbuds, Guy visits an ATM at one point, etc. Oh, and of course, I can't read this and not think of one of my favorite stories of his (probably because it was one of the first I read), [Usher II](https://xpressenglish.com/our-stories/usher-2/) from *The Martian Chronicles*, a tribute to Poe but also a much more macabre railing against censorship and censors themselves.\n\nAnyway, this is enough of a classic that I generally assume folks have read it, but if you haven't, please do. Bradbury was one of the great writers of the 20th Century, and this is one of his masterpieces.\n\n[^1]: I don't think it's an accident that the hero of this book has a name that's literally a generic stand-in for "everyman." \N 6191 \N 430891 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 2.54056379320009 0 \N \N f 494471403 \N 4 87910166 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435014 2025-03-12 12:00:40.533 2025-03-29 22:39:47.088 LNMesh: Offline Lightning Network Payments \N https://arxiv.org/abs/2304.14559 5308 \N 435014 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.4247744171835 0 \N \N f 205743124 \N 1 122339317 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:38:33.607 f \N \N \N 0 0 0 0 1 0 0 448526 2025-03-22 16:53:33.126 2025-03-29 22:39:47.088 There is no perfect set of incentives I was thinking about the recent papers by the [ECB](https://stacker.news/items/731251) and the [Minneapolis Fed](https://stacker.news/items/734528) and had the following thought train:\n\n*Man, maybe we are really coming into that then-they-fight-you phase people talk about. Huh, it's kinda handy that we got as much adoption as we have before this happened. I mean, they probably won't be able to do a full-frontal assault on bitcoin because we got the ETFs...bitcoin's incentives are incredible!*\n\nMany of you are doubtless of more rigorous mindsets and don't indulge in such silly "everything is fine" thinking. After allowing myself a few fantasies of hyperbitcoinization, I caught myself and stopped.\n\nThere is no perfect set of incentives a system can have that will perpetually lead to good outcomes for humanity or our society or whatever you want to call this thing we are all necessarily participating in.[^2]\n\n[^2]: Obviously, some systems achieve stability but aren't terribly good for human flourishing. Monarchies seemed like they were stable ways to organize humans, but growth in monarchies simply doesn't compare to democracies. \n\nBitcoin's design is impressive: it balances forces in society against each other and will hopefully result in a stable system that is better for humanity than central banking has been. \n\nBut even stable systems need to be tended along as society changes around them. Take, for example the US Constitution: it has created a remarkable stable basis for a lot of human flourishing. But it had to change a bit along the way to avoid becoming unstable. \n\nThe US may not have tinkered with their constitution lately (perhaps because their politicians have been too busy attempting circumvent the document), but the point is it had to change to avoid slipping into destabilization [^1]\n\n[^1]: The 14th Amendment expanded constitutional protections to more than wealthy whites. The 19th Amendment expanded suffrage to a previously disenfranchised half of the population. Arguably, if these changes weren't made, the US would have been a less stable place. \n\nCentral banking is another system that has provided relative stability (so we're told--I'm not enough of a student of history to be able to make a call on this one, but central banking's objective efficacy isn't really relevant to my point). Certainly there were plenty of economic crashes and wars before central banking came into vogue. And the system has been frequently altered, often when the bankers are frantically trying to keep it from collapsing. Stable systems always need tending, altering. \n\nBitcoin is also a system we hope will provide a stable basis for human growth. But it should not be assumed that its incentives are perfect. If Bitcoin ends up being an integral part of human society, it will have to alter its incentives some as time goes by. \N 20310 \N 448526 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 25.9601196622679 0 \N \N f 870349356 \N 7 232563198 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 395051 2025-02-07 23:01:42.381 2025-03-29 22:39:47.088 Long-Term Support For Calle \N https://opensats.org/blog/cashu-calle-receives-lts-grant 20117 \N 395051 \N \N \N \N \N \N \N \N art \N ACTIVE \N 21.551720274285 0 \N \N f 162803240 \N 2 101299883 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400296 2025-02-12 02:06:31.168 2025-03-29 22:39:47.089 What's your favorite thing about your mom? Mother appreciation thread. It's Mother's Day, so I thought this would be fun. \N 14651 \N 400296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7616160097028 0 \N \N f 110161120 \N 1 44215859 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410311 2025-02-20 12:31:53.044 2025-03-29 22:39:47.092 I infiltrated the Stacker News HQ ![](https://imgprxy.stacker.news/YbtS-iN6O8jjQOE-imDTq5Yb_DEaootq3hBonAPyMVo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvN1pmdGtwUGcvSU1HLTIwMjMwOTIwLTExMzMwNi0yMzkuanBn) \N 5578 \N 410311 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.2751948476971 0 \N \N f 1721859296 \N 12 34463906 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 457818 2025-03-28 18:18:19.654 2025-03-29 22:39:47.092 My Bitcoin Wild West Startup Day Panel Notes Whenever I'm invited to speak on a panel I like to write for an hour or more about the topic the panel is discussing. It's not a great habit in terms of being present but it does allow me to say what I want when I anticipate being in an inarticulate mood (which is always).\n\n@plebpoet led the panel and shared her questions a day in advance so I wrote with those as prompts.\n\n-------------------\n\n> This is the Wild West, what do we mean by that? Well we have this new, revolutionary technology called bitcoin. It empowers individuals. What do individuals do when they're empowered? Literally anything. In the Wild West, there's opportunity, fortune, and fame, there's certain death in unsustainable environments, there's betrayals and camaraderie. It's a space for new things to be discovered, you have to get a little funky to discover them in order to map out the space, showing what works and what doesn't work. The Wild West is where anything can happen. \n>\n> That's my little intro, but do you guys agree, what makes bitcoin a Wild West, and is that why you're attracted to it? \n\nThe west was once wild because it was new. Bitcoin is new like fire was once new, or farming was once new, the printing press, the telegraph, cryptography, the computer, the internet. New is wild. It's controversial and un-welcomed as it's a threat to the old. New is volatile. But, if you can tame what's new, if you can settle in the wild west before most others, you can pick gold right off the ground. \n\n>The projects you work on are discovering new things about this space, no doubt. Each of you is trying something that nobody else has done before. Something that's fascinating about you guys is how you're able to understand a multitude of use cases, and speak to each of them and adjust for them. I imagine that gets tiring, it's so easy to speculate forever about what might happen. Do you find this to be a challenge? How do you narrow your focus to what you're building right now? \n\nIt's only challenging in the same sense that hitting oil is a challenge. You have to build something like a pumpjack to manage the extraction of oil, but oil is the whole point. \n\nThose of us that are doing this right are building pumpjacks to extract the oil below our feet. It's easy to focus when you know *why* you're building - to get the dang oil out of the ground, to produce value that wasn't there before so you can deliver it to people.\n\nFocus is only a challenge when you aren't standing on oil and can't begin experimenting with getting it out of the ground. It's also a challenge when you forget that oil is the point and instead focus on being seen as an oil tycoon.\n\n> When you identified this thing that you wanted to create, what's the equipment that you knew you needed? \n\nFor SN, I had this thing I wanted to create before meeting the equipment I needed. It's only when I met the equipment that I knew I could create something truly new, truly wild, and potentially valuable. The equipment I needed was cheap, arbitrarily small, friction-minimized payments.\n\n> Along your journey, what has surprised you that you weren't prepared for? \n\nThe duration of suffering. I anticipated suffering but not for it to be endless. Of course, I can stop climbing whenever I want, but then I'll stop going up. \n\nAny success we have is surprising. I accept that nearly everything I do will fail so when it does I'm not caught off-guard and can keep going. When things succeed, it's a surprise. \n\n> Can you talk about a problem that you're working out a solution for right now? Maybe you don't know yet if it works or not. \n\nMaking it worthwhile to contribute to SN. I've been really focused the last week on making it trivial to begin contributing to SN and incentivizing contribution.\n\nThere are also three other big areas where we are focused right now: tapering off of being a custodian, making territories profitable/worthy of their cost, and growing.\n\n> What's the next frontier?\n\nOne of the weirder things we are kind of obsessed with currently is having a more autonomous organization to supplement our trad full time employee org. We are thinking about how to incentivize and coordinate anons to chip in however they can (much like SN's product already does to some degree).\n\nSide bar: Bitcoin is surrounded by frontiers. Lots of us are yelling at each other that one frontier is better than all others, but most of that is stupid or corrupt. Find your own frontier and don't let powerbrokers and bag holders in other frontiers bully you into subscribing to theirs.\n\n> Another thing I respect about each of your openness to learn about a new idea and integrate into your work. How do you screen all the ideas that come up in this space? \n\nI look for several independent validation points in addition to my own. At least, when they're available. For product stuff, we have a sense of what the product should be, and stackers have a sense of what the product should be, but I don't trust either alone. I try to screen out things where there isn't any overlap.\n\n> Is it experience or expertise that you lean on to tell you what to listen to?\n\nI listen and lean on anything I possibly can. I co-depend on whatever is available because I need whatever help I can get, whatever edge I can get. It's not one or the other. It's whatever is available given the problem I'm solving. \N 6749 \N 457818 \N \N \N \N \N \N \N \N security \N ACTIVE \N 29.497885267223 0 \N \N f 156533075 \N 1 64310145 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451246 2025-03-24 13:17:23.722 2025-03-29 22:39:47.092 Top Builder asks: Companies that have raised, what do you wish you knew goin in? Someone asked this in the [Top Builder](https://www.topbuilder.dev/) chat so I thought I'd share my answer more widely:\n\n- I knew this going in but I see a lot of founders make this mistake: don't be full of shit. If you don't know something, say so. The biggest red flag to an investor is an investment being untrustworthy. This includes lying but also being afraid of reality/delusional.\n- if you're raising on SAFEs watch this video: https://www.youtube.com/watch?v=Dk6JNTDec9I\n- know what you're worth (I've attached median valuations from Q3 of last year), and I don't mean you're worth more than you think. It can go either way - you might be worth way less than you think. The median is made up of many companies with varying levels of potential.\n![Screenshot 2024-02-08 at 1.10.24 PM.png](https://m.stacker.news/15390)\n- until they sign, investors haven't invested so continue to treat them as a counterparty and assume they won't invest until they do sign\n- investors are a counterparty. bitcoin investors LOVE to say bitcoin companies have lower valuations than the general tech industry does. It does historically, but that's largely irrelevant. It's akin to them saying "I'm used to getting sweet deals. You owe me one too." So again, know what you're worth. Investors will complain about company valuations like we all do our grocery bill. It doesn't change the price of milk.\n- few investors will tell you an outright no. The game theory has them maximizing optionality. If it's not a yes, it's a no. Don't waste your time on investors that will only tease you.\n- a lot of bitcoin venture investors haven't been investing very long. This is good and bad, but if they haven't been investing very long, don't grant them authority about things only a veteran would know. And again, even if they are a veteran, they are a counterparty.\n- at an early stage, all things being equal, favor investors that can provide you more than money and try to put investors that were founders on your cap table (this game is a mess and it'll help to have people who have been in your shoes)\n- don't give up. sometimes you can't raise because you suck, you suck at communicating, or your product sucks, but sometimes you can't raise because you only talked to investors that suck\n\n----------------------\n\nThere's a lot in here that might make you suspicious of investors generally. Don't be! I genuinely like all of my investors and are friends with most of them. It's just that all apple orchards have bad apples and when you're farming apples you have to know a lot about apples. \N 10731 \N 451246 \N \N \N \N \N \N \N \N security \N ACTIVE \N 27.8162463813353 0 \N \N f 167119822 \N 1 141394872 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435798 2025-03-13 01:18:09.535 2025-03-29 22:39:47.093 Becoming ungovernable in a digital age Hill tribes are cultures that frequent the periphery of empires and large nation states. They are named hill tribes because hills and mountains have for centuries provided a natural refuge from the reach of armies, but hill tribes can be found in other geographies as well. Peoples living on boats, such as the Tanka people of south-east Asia, or nomadic people, such as Sinti and Roma or the Tuareg.\n\nAs empires have encroached the lifestyles of these peoples in an attempt to count, name and tax them, cultures have formed around evading this control, including their own languages, customs, diets, measuring units, and even religious practices.\n\n### Barbarians\nThese customs, often branded as “barbarian,” protected these groups from assimilation, control and taxation. Examples include not recording a child’s parents or birth date, not keeping a permanent home, lack of schooling or writing systems or requiring absurd religious practices to protect the local industries.\n\nWith the advancement of technologies, states have been able to successfully assimilate many of the world’s hill tribes and capture their production. Tunnel digging machines, rail roads, helicopters, schooling, television, measurements, road names and signs, building codes, birth certificates or maps are just a few of the many ways technology sped up this process.\n\nToday, geography no longer protects those at the fringes of civilization from being harmonized into it. With an increased ability to govern through technology however also comes dependency. The modern state has difficulties dealing with individuals and tribes that go the extra mile to evade it.\n\n### The modern barbarian\nToday, evading the state no longer means packing your things and moving into the mountains. The modern state will find you there, demolish your hut, confiscate the roots you carefully collected and fine you for making a fire.\n\nInstead, being ungovernable means carefully choosing and rejecting technologies based on their potential to control and surveil you. The modern barbarians often do not own a home, in fact do not have a permanent address at all, and if they do, then to farm their own produce. There are no bank accounts or “fintech” apps registered in their names, no phone number and frequently changing email addresses.\n\nThe modern barbarians still appear backwards to those enjoying the convenience of the surveillance state. They walk or bike instead of getting a ride share or electric scooter, and when they order take out, they call ahead and pick it up themselves. The most popular example of modern barbarians, the Amish, are easily recognizable, but other such tribes may opt to blend in optically.\n\nTechnology, when carefully chosen, can be a tool of liberation, rather than solely an exchange between convenience and control. While street markets have almost entirely disappeared, informal markets continue to flourish online, even inside gated social media communities.\n\nThe biggest challenge of the modern barbarians is the development and cultivation of a unique culture that helps protect and enhance their way of life, become welcoming to newcomers while suspicious of outsiders.\n\nHow can we form our own customs that protect us from assimilation, while also allowing for a meaningful identity, liquid enough to pass for stubbornness or ignorance where active resistance is the goal?\n\nFurther reading: [Paul Kingsworth - We must become barbarians](https://unherd.com/2023/03/we-must-become-barbarians/) and [James C Scott - The art of not being governed](https://en.wikipedia.org/wiki/The_Art_of_Not_Being_Governed) \N 21216 \N 435798 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7784909821284 0 \N \N f 337597852 \N 3 71822085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 19:01:35.531 f \N \N \N 0 0 0 0 3 0 0 457771 2025-03-28 17:19:21.886 2025-03-29 22:39:47.093 Confessions of a burnt-out father I hate parenting to the core. \n\nI have two kids: a 4-year-old boy and an 11-month-old girl. I have wanted to be a father. So, don’t get me wrong. I love my kids. But the whole business of parenting is so intense and exasperating and exhausting that I literally sigh my deepest before I open the door to my house these days.\n\nI embraced the birth of my first child. I remember sharing with my friends that I thought parenting ennobles my job because my salary would be used to raise another human being. There’s an added layer of purpose to my job.\n\nBut I soon came to dislike parenting with a vengeance. Obviously, I knew that my life would undergo several drastic changes, but I just wasn’t prepared for the way it would consume my days and nights and suck my time, energy and efforts.\n\nI think the problem lies in that my wife and I have no support. My mother has passed on; I can’t possibly rely on my 80-year-old father to take care of his grandkids; and my parents-in-law are based overseas. So we have to undergo the daily grind alone. Every day. \n\nHow about a nanny or helper? I hear you ask. I don’t think my wife would entrust her kids in the hands of other people. I don’t want to raise something that is already a foregone conclusion and incur her displeasure. \n\nSo why am I so frustrated? I think parenting takes away my need for solitude and companionship without offering me anything in equal measure. All of a sudden, I have to give up my social life. I haven’t met my friends in months. I crave for night-out sessions, in which I can just stay out late to catch up with my friends.\n\nI don’t have to be around people all the time. I’m perfectly fine signing up for seminars and workshops and attending them alone. I miss being exposed to people outside my usual realm of work and expanding my horizons. I hate that I have to rush home every week day after work because I need to pick up my kids from the childcare centre. I hate that I have to spend my weekends taking my boy to the indoor playground so that he can release his pent-up energies. In fact, right now I’m at the indoor playground. All I see around me are equally bored parents passing the time buried in their handphones. Since when did my activity-filled life turn out to be so mundane?\n\nAs for solitude, sometimes I feel the need to be alone and decompress and not have to engage with anyone. But parenting doesn’t allow me to do that. I need to feed food to a screaming baby (who wants her natto NOW!) and a talkative toddler who just talks non-stop. I yearn for peace and quiet desperately. \n\nI find that parenting is akin to being trapped in an enclosed cage, where I cannot breathe in fresh air and have to sustain myself on the limited oxygen available. Prior to fatherhood, I had anticipated it to be similar to a terrarium. But nope, I just feel suffocated by the whole experience.\n\nI don’t regret being a father. But every day, I ask myself why I am so unhappy even though I have two beautiful kids. I just want them to grow up quickly so that I can regain some semblance of my previous social life. I don’t like how parenting deprives me of everything else and denies me balance.\n\nMy workplace grants me access to a counsellor. Perhaps I should seek his services. Then again, the idea of spending an hour to talk about parenting (as opposed to sipping a nice cup of coffee before I go home) doesn’t quite appeal to me. I guess I will monitor my mental well-being and see how things go.\n\nThank you for reading my rant. I like that this site provides me a safe space to share my deepest, darkest thoughts.\n\n \N 21339 \N 457771 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.25196618480378 0 \N \N f 933491706 \N 8 243004032 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436413 2025-03-13 14:43:02.788 2025-03-29 22:39:47.094 AJ Towns censoring on Delving Bitcoin to cover Bitcoin Core backdoors ? During the last weeks, while I was reviewing few PRs on Bitcoin Core (e.g [v3 policy](https://github.com/bitcoin/bitcoin/pull/28948) or [sibling eviction](https://github.com/bitcoin/bitcoin/pull/29306)), I did notice that code design and proposals were abnormally vulnerable to some class of attacks to target Bitcoin use-cases. After questioning the reviewers and proposing them to test the code branch in real-world conditions on signet or mainnet, they ignored my critics and one of the maintainer move ahead merging the PRs.\n\nLatter on, on the Bitcoin R&D forum dubbed “Delving Bitcoin”, AJ Towns did [reveal](https://delvingbitcoin.org/t/workgroup-lifecycle/598) the existence of private discussions rooms where some selected Bitcoin Core contributors were engaging and designing new Bitcoin Core proposals. Thus bypassing the usual transparency standards underpinning FOSS and making Bitcoin Core development a “close-door” process. Some of the vulnerable code enhancements I did pointed out the issues in public on the Core repository, sounds to have been through this “close-doors” process.\n\nAs Pieter Hintjens (the Zero MQ creator and a FOSS veteran), put it in one of his [book](https://hintjens.gitbooks.io/social-architecture/content/chapter1.html) on the necessity of transparency in FOSS. \n\n"Transparency is very important to get rapid criticism of ideas and work in progress. If a few people in a team go off and work on something together for some time -- a few days seems harmless, a few weeks is not -- then what they make can be presented to the group as a fait accompli. When one person does that, the group can just shrug it off. When two or more people do that, it becomes much harder to back off from bad ideas. Secrecy and incompetence seem bound together. Groups that work in secret do not achieve wisdom.\n\nTIP: When one person does something in a dark corner, that's an experiment. When two or more people do something in a dark corner, that's a conspiracy.”\n\nWhen I did the same remark to AJ Towns on the aforementioned thread, rather to engage constructively in the discussion on what communication standards we all wish to maintain a high-degree of intellectual honesty on the “Delving Bitcoin” forum in a decentralized ecosystem, he did threat me back to cancel my account by abusing its admin rights on the platform and then deleted my post (cf. the screenshot).\n\nDear Bitcoin community, there is something [very fishy](https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2017-April/013996.html) happening in the Bitcoin Core development process right now, and I seriously wonder if a subset of contributors are not engaged in deliberately inserting backdoors to defraud or hypothetically get technical leverage on user funds in the future, for any kind of political move.\n\nPersonally, I’ll stop engaging or contributing on Delving Bitcoin, we have many more communications platforms available to engage in Bitcoin development (e.g nostr, google groups, personal blogs, stacker.news, etc). \n\n![Screenshot 2024-02-27 at 3.22.00 PM.png](https://m.stacker.news/17758) \n\n\n\n\n\n \N 21540 \N 436413 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 19.0219809644512 0 \N \N f 631740105 \N 6 163656760 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:13:16.625 f \N \N \N 0 0 0 0 4 0 0 307271 2024-11-24 22:13:05.508 2025-03-29 22:39:47.094 I am Alan Plus, founder of Lightning Network Plus, AMA! Hello folks! Glad to be on Stacker News to do an AMA.\n\nI've been following Bitcoin for a long time (~9 years), but only recently decided to quit my fiat job and dedicate myself to the Bitcoin LN community as a developer and site operator.\n\nI created [Lightning Network Plus](https://lightningnetwork.plus/) (LN+ for short) a bit more than a year ago to help Lightning Network Node operators cooperate and open channels to each other.\n\nI didn't come up with the concept of "rings of fire" called liquidity swaps on LN+. They existed before on Reddit and in Telegram groups, but it was somewhat cumbersome to organise them. LN+ was meant to make such cooperation cooperation easier by providing step by step instructions and notifications.\n\nThe idea behind swaps is relatively simple. Node operators agree to open channels to each other in triangles (or other shapes) and this way for every channel you open, you also get a channel that is empty on your side, thus creating incoming liquidity to be able to receive Lightning Network payments.\n\nLN+ was an instant success and the site has been very active ever since. We now have about 5K node operators who opened channels with a total capacity of ~830 BTC.\n\nWe have all kinds of users, profit oriented routing node operators, merchants, LN users, etc.\n\nSwaps have some advanced features, like private swaps for groups of friends, and dual swaps to open large channels between two users.\n\nLN+ also has other features besides swaps: an LN Node explorer with rich profiles, a direct messaging feature between nodes, and a watchtower. I intend to improve the site continuously, so ideas and suggestions are very welcome.\n\nI'm very grateful to be able to operate the site for the Bitcoin LN community. I'm looking forward to your questions.\n\nAsk me anything about:\n• LN+\n• LN in general\n• Bitcoin\n• Science (Particularly evolutionary biology)\n• World Culture\n• Languages \N 16789 \N 307271 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.6524523321773 0 \N \N f 239393214 \N 2 218951652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415913 2025-02-25 08:47:39.581 2025-03-29 22:39:47.095 What does credit and lending look like to you under a Bitcoin standard? Just read through [this article](https://bitcoinmagazine.com/markets/bitcoin-will-completely-change-real-estate-markets-and-interest-rates) and it got me wondering what the state of lending could look like under a Bitcoin Standard. \n\nWill the size of credit markets shrink to a mere fraction of their current levels? Will the mortgage as we know it cease to exist as people instead opt to save their way to home ownership in stats? Will any loans that do exist function via time-lock contracts? \n\nPlease educate this pleb \N 21418 \N 415913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.85536131298588 0 \N \N f 375059948 \N 2 35482208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437966 2025-03-15 03:54:33.479 2025-03-29 22:39:47.096 The African village mining Bitcoin \N https://unherd.com/2024/01/the-african-village-mining-bitcoin/ 21044 \N 437966 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.798841572214215 0 \N \N f 983140853 \N 6 235722075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 404606 2025-02-16 02:01:16.677 2025-03-29 22:39:47.096 POLL: Are the normies reaching out yet?? Another sentiment check. \n\nCountry after country is watching Bitcoin clear new ATHs against their fiat curencies. Not just small hyperinflated countries, China and India are staring at new ATHs against their local currencies right now.\n\nDespite all of this, Bitcoin is a hell of a lot quieter at these levels than it was back in 2021 mania.\n\nIs this the case for you? Or have nocoiners been reaching out to you more lately? \n\nWhat's been your go-to orange pill content for people lately? \N 1428 \N 404606 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.105588280200095 0 \N \N f 508185871 \N 4 83388938 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450235 2025-03-23 19:52:00.943 2025-03-29 22:39:47.097 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/463089) are the updates stackers shared from all their latest work projects. \N 19930 \N 450235 \N \N \N \N \N \N \N \N security \N ACTIVE \N 13.0192991136611 0 \N \N f 232381271 \N 1 63730678 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435018 2025-03-12 12:04:30.815 2025-03-29 22:39:47.097 Jeff Booth Hi everyone - Jeff Booth, Author of The Price of Tomorrow, and General Partner at Ego Death Captial.\n\n1st time stacker news AMA and happy to "try' to answer any questions \N 17184 \N 435018 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 14.8040458638908 0 \N \N f 394192587 \N 4 173901008 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 00:21:45.907 f \N \N \N 0 0 0 0 2 0 0 400758 2025-02-12 13:56:01.56 2025-03-29 22:39:47.098 Considering Becoming a Freelance Bitcoin Consultant **Background**:\nI have been working in the IT industry for 10 years and currently hold the position of *senior cloud engineer*. \nI first encountered **Bitcoin** 8 years ago and have since been a fervent supporter of this revolutionary technology, leading me to delve deeper into the history of monetary systems and currency.\nI operate a *full Bitcoin node* (including lightning) and have developed some integration tools for this ecosystem.\nTherefore, I believe I can confidently state that my knowledge of Bitcoin is above average.\n\nLast week, while at a local venue for drinks, I noticed they accepted cryptocurrencies (a rarity in my city and country). \nI inquired about paying with Bitcoin, which resulted in total confusion. Eventually, they presented me with a tab containing various QR codes. I scanned the Bitcoin one with my lightning wallet and noticed it was a *SegWit* address (bc1) on layer 0. \nWhen I asked if I could pay with lightning to avoid the high fees and long confirmation times associated with transactions on the main blockchain, they were clueless.\nThis experience made me realize that while we often say "**we are so early**", we may not fully grasp just how early we are.\n\nThe venue is run by young, eager, and knowledgeable individuals with a sleek website for ordering via a tablet-based system, yet despite accepting crypto, they demonstrated a limited understanding of what they were dealing with. \nIn reality, the idea of becoming a Bitcoin consultant has been on my mind for a while, but this experience confirmed for me that it's a niche with immense potential.\nI firmly believe that in the coming years, everyone will truly begin to take an interest in Bitcoin, and businesses will want to integrate it in some way.\n\nNow, onto the challenging part:\nFirstly, I'm unsure of just how "early" we actually are, and I fear that most merchants and businesses may not yet be interested.\nSecondly, I have never worked as a freelancer, and in my country, navigating bureaucracy and taxes is a nightmare.\n\nWhat do you think? \nAny advice from those who have gone through a similar journey would be greatly appreciated. \N 13878 \N 400758 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 19.6656350148523 0 \N \N f 178676786 \N 2 135769183 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414678 2025-02-24 07:32:18.965 2025-03-29 22:39:47.098 What's the best way to leverage a large following to help Stacker News? First of all, I want to give a huge THANK YOU to everyone for the warm welcome on my [first post](https://stacker.news/items/313773/r/benwehrman) yesterday! Y'all are so engaging and helpful, I can't wait to continue learning the ropes as I become a more regular contributor in this awesome community.\n\nNow for my question of the day:\n\nHow can someone with a decent-sized audience on other social media platforms help progress the Stacker News vision best?\n\nI assume general recruitment/bringing new users over here is the name of the game at this stage, but are there any other priorities to keep in mind as SN continues to develop its roadmap for the future?\n\nJust wanted to quickly touch base with the community first before I start blasting links all over the place. 🤘⚡️\n\n-BW\n![Screen Shot 2023-11-13 at 12.34.44 PM.png](https://m.stacker.news/4877) \N 1618 \N 414678 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.16748624477499 0 \N \N f 529971524 \N 4 61837978 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 423438 2025-03-03 11:22:12.743 2025-03-29 22:39:47.098 The PubKey NYC AMA Hiya Stackers,\n\nWe're PubKey, a bitcoin cultural center embedded in a dive bar in NYC's historic Greenwich Village. We host weekly free events for the public covering the entirety of the bitcoin landscape. Our mission is to make bitcoin fun and accessible. Think of us as a comedy club for nerds.\n\nWe first opened our doors in October 2022, in the depths of the Bitcoin Winter. Some of our first customers showed up in despair over their losses. We've since grown to become an icon of bitcoin's "third places", a space to meet like-minded individuals, and discuss revolutionary ideas. \n\nThis is our first bull market as a bar and our first AMA.\n\nYou'll be talking with our co-founder Thomas Pacchia, and @The_Daniel, our head of marketing for the next hour.\n\nAsk us anything! \N 21164 \N 423438 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.6127391335748 0 \N \N f 308080658 \N 4 185613844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401915 2025-02-13 12:58:25.858 2025-03-29 22:39:47.099 Can Psychedelics Improve Mental Health ? **Research suggests that psychedelic drugs can reopen critical periods of brain development to create opportunities for re-learning and psychological healing. In this episode, co-host Janna Levin speaks with Gül Dölen, a neuroscientist studying the therapeutic potential of psychedelic substances.**\n\n![](https://m.stacker.news/34347)\n\n> During traumatic periods and their aftermath, our brains can fall into habitual ways of thinking that may be helpful in the short run but become maladaptive years later. For the brain to readjust to new situations later in life, it needs to be restored to the malleable state it was in when the habits first formed. That is exactly what Gül Dölen, a neuroscientist and psychiatric researcher at the University of California, Berkeley, is working toward in her lab. What is her surprising tool? Psychedelics.\n>\n> **[... read more at quantamagazine.org](https://www.quantamagazine.org/can-psychedelics-improve-mental-health-20240606/)** \N 2639 \N 401915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.06587837662915 0 \N \N f 299578324 \N 3 124266430 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 406903 2025-02-17 16:01:11.051 2025-03-29 22:39:47.099 The True and Accurate History of HFSP It makes me sad that people do not say Have fun staying poor as much as they once did. Probably, the meme has fallen out of favor because most people believe Udi Wertheimer created it, and so it suffers from that vile cancellation-by-association that is so popular right now. But the truth is, HFSP was a thing people said long before Bitcoin, the internet, and even Udi.\n\nTherefore, so that all light may not be lost from this already dreary realm, and so that the Youth, for whom we all have such required hopes, may not dwell overlong in darkness, I have taken it upon myself to attempt to recount a full and accurate history of Have fun staying poor.\n\n# Can anything good come out of Nazereth (or Udi)?\n\nThere is no question that Udi popularized the phrase. Udi first used Have fun staying poor on Twitter on [13 September 2020](https://twitter.com/udiWertheimer/status/1305075697929670656). Truth slaps hard, especially when it is a stranger, and HFSP clearly touched deep emotional currents in Udi (as it has in so many of us).\n\nBy 14 September, HFSP had gone to his head to such an extent that he said his new hobby was “literally telling everyone on Twitter ‘have fun staying poor.’” While it is true that the internet is a degraded pit of sarcasm and flippancy wherein statements can never be far from the cynical bastion of ‘I was just joking,’ Udi further demonstrated his conversion to the phrase by purchasing the domain havefunstayingpoor.com on 17 September (for which, indeed, he must be commended). Udi also occupied the @HaveFunStayPoor twitter handle (the full phrase exceeds the maximum Twitter handle length, so he had to have fun with Stay Poor).\n\nAnd it is also true that after those frenzied days in September, the phrase rapidly rose in popularity as it had not in many years. For instance, it shows up on bitcointalk.org for the first time on [30 September 2020](https://bitcointalk.org/index.php?topic=178336.msg55288680#msg55288680), and people like Michael Saylor were calling it “[that classic Bitcoiner response](https://www.reddit.com/r/Bitcoin/comments/kxeokl/the_classic_bitcoiner_response_have_fun_staying/)” by early 2021.\n\n# History begins before social media, people!\n\nIf, however, you attempt to discover anything more about the history of HFSP, the internet is shockingly disorganized. No doubt the authors of these histories of HFSP in Coin Desk and Bitcoin Foqus were contending with ailing parents, extreme weather events, or the debilitating consequences of some ill-considered DIY project, for they thoroughly neglected to ask from whence did the internet get the phrase.\n\nIn truth, the history of HFSP is a history of a phrase struckthrough. It has long been in use, but never in the realms of polite English and proper History. It is often crossed out and excised from final drafts and public discourse. In order to recover it, one must venture a little further than the local library and wikipedia.\n\n# Having fun staying poor on the muddy banks of the Wishkah\n\nI spent a fair bit of time in Aberdeen, Washington as a child. It smelled bad, like mildew let grow for years, and was a very sad place. But it was well-remembered among those who were so unlucky as to have been living there long enough that their clothing was thoroughly imbued with that odor that Kurt Cobain really liked to say HFSP as a kid. \n\nApparently, he would get on his bike and go blazing down this whopping big hill called Scammel Hill, screaming HFSP at the top of his lungs. He even included it in the first draft of Lithium (although later crossing it out). I do not raise this point to make some trivial connection between rebellion and HFSP, but rather to note that HFSP has always appealed to innovators.\n\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/07/HFSP-Cobain-LIthium.png)\n\n# You can say it and say it and say it and it never gets old\n\nAlthough it is perhaps too far in the dusty past for most to recall (and yet not old enough to be History), there was a time when it was fairly common knowledge that Gene Wilder was set to perform a song by the name of “Have Fun Staying Poor” in Willy Wonka and the Chocolate Factory (after Wonka gives the children their everlasting gobstoppers) and that Paramount axed it. The scene was actually based on a moment at the beginning of Chapter 19 in the book that Dahl, himself, ended up removing from the book.\n\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/07/HFSP-Wonka.png)\n\nMuch has been said of Wonka’s callous (even vicious?) nature, and perhaps Dahl knew he was treading the line of raw reality rather too closely for a children’s book. Whatever the case, his most famous character did rather embody the concept of HFSP.\n\nHere’s this strange man who keeps his factory locked up and doesn’t let anyone enter, and yet who makes the most incredible candy in the world. He is marvelously unphased when various children on his tour become victims of horrific industrial accidents. He even manages to politely imply that the children themselves are to blame for various mutilations and that they are such miserable little shits in the first place that Wonka can be forgiven for letting a little note of glee slip into his voice. It’s the same glee that anyone who says HFSP experiences.\n\n# It’s the meme most adaptable to change\n\nNo doubt, if you remember your Biology 101, you will recall Charles Darwin’s affinity for HFSP. His early letters are riddled with it, although, as is true in our current age, he began censoring himself as he gained success and by the time he was famous barely used it at all. I say success, but who really knows whether it is success or just plain getting old which creates this curious willingness to censor our true feelings for fear of propriety? Nevertheless, when he was still young and hungry, Darwin intended the title of the book in which he laid out his theory on the origin of species to be Have Fun Staying Poor. He clearly says so in his 1857 letter to Asa Gray.\n\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/07/HFSP-Darwin-1842-Sketch-of-theory-p-107.png)\n\nDarwin’s use of HFSP is a particularly good example because evolution is the final form of HFSP. Nature, the laws of physics, or whatever name you choose for the reality we inhabit, quite obviously will never change its principles for the sake of adoption. Every creature which has failed to spread its genes across populations and generations, has expired into obscurity listening to the sound of Nature whispering softly in its ears: have fun staying poor.\n\n# We hold the truth of HFSP to be self-evident\n\nOf course, a far more famous usage of HFSP exists, and I am referring to that most magnificent and monstrous refusal to compromise for the sake of making people happy: the Declaration of Independence. Although Adams refused to include the phrase in the final version, the original draft Jefferson presented to him and Franklin concluded by exhorting the good king to have fun staying poor.\n\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/07/HFSP-Declaration-of-Independence-rough-draft-p4.png)\n\nMuch has been made of the signers’ youth, of the high cost many of them paid, but what is most relevant here is that they did not seek to meddle in the king’s affairs beyond those that directly affecting the signers’ colonies.\n\nMany rebellions strike immediately at the source of oppression. But the Declaration of Independence is very clearly not a declaration of war. The signers and the people they represented had no plans to topple the British Empire, invade England, or assassinate King George. Therefore it was entirely correct that Jefferson finish the Declaration with the sentiment that the king go his own way, even though it was likely to end in poverty.\n\nHave fun staying poor is not a wish to tell other people how to live. It is an expression of confidence in a set of core ideals and the refusal to alter them for the sake of adoption.\n\n# We should all have so much fun\n\nWe can venture further back into the archive and continue to find familiar expressions of the HFSP sentiment (for example, I believe that Martin Luther used the phrase in the 66th of his 95 theses nailed to the church door in Wittenberg. Now, I’m not an expert in Latin, but my cousin Mathilde is, and she assures me that ‘oblectāris manente paupere’ is quite close to our modern have fun staying poor), but my goal is not to be exhaustive.\n\nRather, I want to help free this beautiful phrase from the social shackles which bind it. When you encounter shitcoiners, cynical nocoiners, cocky normies who dismiss Bitcoin as some goofy toy for nerds, remember that these four words have well-served many brave and tenacious innovators in the past, and they will equally serve you.\n\n*HFSP* \N 992 \N 406903 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 24.27412496253 0 \N \N f 268681616 \N 2 162039246 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434500 2025-03-12 00:48:44.15 2025-03-29 22:39:47.099 My dream died, and now I'm here # My dream died, and now I'm here\n\nThis is a story about several topics I am interested in discussing.\n\n## Women Rights\n\nFor all that you know about me, I am probably not a woman so maybe I "have no right to speak about this" but I definitely agree with her last sentence in the quote that follows.\n\nMy experience of how other women think or feel about getting treated differently (with assumingly good intentions) is low. Most of my little experience comes from my undergraduate years together with one of my best friends. She absolutely hated Girls' Science Day. It made her feel patronized iirc. She could stand her own ground (even in verbal and physical fights, don't ask me how I know lol) and didn't need anyone to help her with anything (except debugging python virtual environments). She also had absolutely no problem with studying computer science with mostly men. She even liked that: she mentioned she can easier be friends with men than women anyway.\n\nSo I wonder ... what do other women think about women-exclusive stuff? I am really interested since as mentioned my experience is rather low. I almost want to ping the (few) women on SN that I know but I will not since that's exactly what I usually avoid: treating people different just because of their gender.[^1] I'll just hope that if they (or any other women that doesn't mind too much to reveal her gender on the internet) see this post, they'll respond.\n\n> I wasn't offered a job because I am a woman. I'm not just assuming that's what happened; I know it because they explicitly told me. The head of the Institute said that since I'm female, I should apply for a scholarship that was exclusively for women in the Natural Sciences. This way, the Institute wouldn't have to cover my expenses.\n>\n> It makes sense, doesn't it? So, I applied for the scholarship and, indeed, received it. However, this scholarship doesn't come with any benefits like pension savings and health insurance. I know that might sound very German, but these things are important to us. Furthermore, I was frequently reminded that I wasn't actually employed by the Institute; I was just there because of this scholarship for women, which was indeed the case. This is one of the reasons I'm against programs or positions that are exclusively for women.\n>\n> I think that treating women differently just reinforces the prejudice that women are less capable than men.\n\n## Perverse Incentives in Academia\n\nFunnily, this is also a story about a woman standing her ground against academic bullshit:\n\n> The next problem was that the head of the Institute made a lot of money selling textbooks. He wrote very little of these textbooks himself; rather, he gave assignments for parts of the books to students and posts. This is why, in case you've ever wondered, these textbooks are so discontinuous and partly repetitive.\n>\n> He expected me to also work for him, to which I said no. I was then ordered into his office, in which he gave me a very angry speech, accusing me of not being loyal to all the other students who did their part. I told him that I was under no obligation to work for him and didn't care what the rest of the students were thinking. He got angry, and I left after him. He started shouting that I was fired and physically shoved me out of his office.\n>\n> True story: the irony is that he couldn't fire me because, if you remember, he had refused to hire me in the first place. I was paid by that scholarship for women, and that wasn't managed by the Institute but by the office of the University president.\n>\n> I'm not just telling you this because it's entertaining; it was also a rather rude awakening. It made me realize that this institute wasn't about knowledge discovery; it was about money-making. And the more I saw of Academia, the more I realized it wasn't just this particular Institute and this particular Professor; it was generally the case. The moment you put people into big institutions, the goal shifts from knowledge discovery to money-making.\n\n## The Role of Government in Science\n\nWhere did we go wrong? Why is academia so dependent on government money? Is this a "fiat thing" as many probably like to quickly say?\n\nIt seems like this wasn't always the case. I did not have the time to dig into academic history enough to find a good answer to that question myself yet though.\n\n> But you get used to this kind of situation, and the overhead isn't even the real problem. The real issue is that the easiest way to advance in academia is to pay other people to produce papers, on which you, as the grant holder, can put your name. That's how academia works: grants pay students and postdocs to produce research papers for the grant holder, and those papers are what the supervisor then uses to apply for more grants.\n>\n> The result is a paper production machine in which students and postdocs are pushed through to bring in money for the institution. Most of that money comes from your taxes.\n\n_Transcript generated by [youtubetranscript.com](https://youtubetranscript.com/) and then piped into [ChatGPT 3.5](https://chat.openai.com/) to fix errors.\nTherefore might not be 100% accurate so listen to the original._\n\n[^1]: This means I am a proponent of hitting back with equal force if a woman hits a man, lol. But I am not sure if I personally would actually hit back. I think I would just shove them since I do sense some kind of biological programming to protect women inside me. But I also sense how easy this is to abuse. https://www.youtube.com/watch?v=LKiBlGDfRU8 2952 \N 434500 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.43305236889906 0 \N \N f 347267799 \N 3 140159146 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:03:46.762 f \N \N \N 0 0 0 0 2 0 0 433978 2025-03-11 14:46:29.692 2025-03-29 22:39:47.099 Judge: Craig Steven Wright is NOT Satoshi \N https://twitter.com/BitMEXResearch/status/1768263295666938277 21248 \N 433978 \N \N \N \N \N \N \N \N history \N ACTIVE \N 25.0643485251706 0 \N \N f 425443781 \N 3 36478019 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:31:29.335 f \N \N \N 0 0 0 0 2 0 0 423225 2025-03-03 06:24:31.119 2025-03-29 22:39:47.099 A Case for More Events on SN # A Case for More Events on SN\n\n_(I felt like writing about something today so I picked writing about how to grow SN)_\n\n**I think we need events that are smaller than MSM but more frequent for growth.**\n\nI don't think rewards are a good way to make SN attractive for people. Money is a pretty boring incentive. It can be a strong incentive that gets stronger the more money you put on the table, but it's still boring.[^1]\n\nSo I don't think our marketing should focus on rewards. It should focus on "money as a tool on SN" instead of "SN as a tool to make money". I have to admit that I don't know how that would look like yet but I'll think about it more.\n\nI also think the biggest impact of rewards is farther down in the funnel of making new signups contribute consistently good content. I think our "most valued stackers" contribute as much as they do less because they can make good money but more because they believe in SN and the impact the "SN model" can have on online communities in the long run. They seem to redistribute the rewards they receive inside SN; acting as their own little reward pools. So they see their rewards as part of a closed system they want to push forward.\n\nThis includes to some degree the vision of territories. Reward pools might just be the basic layer to make online communities work by combating spam (since that's where fees go) and incentivizing good content (next to zaps) at the same time (where "good" is determined by consensus and a web of trust); enabling territories with more complex but effective models for better online communities.\n\nA fun analogy might be to see rewards like division in math since rewards are used to distribute sats: they _divide_ good content from bad content.\n\nHowever, the impact of math on our world didn't come from throwing more division or any other basic operator at stuff. It came from better mental models how to apply these operators. Matrix multiplication being the basis of computer graphics is the first example that comes to my mind. At its core, matrix multiplication is nothing more than adding and multiplying numbers but the "numbers layout" (matrix) and rules that we apply have these emergent properties.[^2]\n\nTo be fair, describing our rewards as "simple division" is not fair since the web of trust is already using more complicated mental models (which includes matrix multiplication) but the point is that maybe we can build more on top of that instead of doing more of the same thing. So the question might be: **What other experiments can we run with a pool of money and a web of trust?** Instead of rewards, SN becomes cheaper to use? Instead of redistributing sats from stackers to stackers, redistribute sats from stackers to territories, founders, ...?\n\nSo much about rewards. Now to events and fun:\n\nMeme Monday, Fun Fact Friday and the cowboy hats are fun. Only the first two use money via bounties, the latter one does not but was still a great success in making SN feel special I would say. Meme Monday and Fun Fact Friday are competitions like MSM but on a much smaller scale so it doesn't impact the overall experience of SN as much. It's very easy for stackers to ignore them if they want. One can also opt-out of the "cowboy hat game" in their settings.\n\nSo I think a great way for growth is to combine the fun of the cowboy hats with events that have only short durations. If they are shorter / less frequent, we can make them impact the overall SN experience more while they are running.\n\nExamples:\n- anon day\n- r/place\n- everything costs 10x and/or you can only zap multiples of 10x\n- ...\n\n(maybe weekends are the ideal length, so 2-3 days)\n\nWith frequents events, we have consistent fresh content with which we can market SN outside SN and by not making them too long or too big, they don't impact the experience on SN too much. It's easy to opt-out by not showing up for a few days or not participating. Stackers are still mostly in control how they want to interact with SN.\n\nThe idea is that new people show up for or prior to the events but stay because the idea behind SN intrigues them.\n\n[^1]: I just listened to [this](https://www.youtube.com/watch?v=eMmCI1PKSog) (title might be awkward, I clicked because of the topic, thumbnail and JP and not because I want a raise lol) and JP mentioned there that "sometimes, people don't want a raise, they want opportunities and advancements and the only way they can conceptualize that is more money" (00:43-01:06). I think that's related to what people want from online communities. Not money but freedom, opportunities, innovation. What's missing from Twitter, Instagram, Facebook, TikTok is not bitcoin, it's a way to level the playing field and shift power back to users and decentralized money might just happen to be the solution.\n\n[^2]: Like pretty much anything in math boils down to? Even multiplication boils down to adding numbers. \N 1245 \N 423225 \N \N \N \N \N \N \N \N news \N ACTIVE \N 11.982264359804 0 \N \N f 27004701 \N 1 4599044 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458058 2025-03-28 22:28:47.061 2025-03-29 22:39:47.099 Atomic Split Lightning Payments, Hold Invoices, and Blinded Paths # a single payment to a single recipient\n\nLightning wallets assume a single recipient for a single payment. Alice can send money to Bob in a single payment, and Alice can send money to Carol, but Alice cannot send money to both Bob and Carol in a single payment. Alice, or her wallet, must pay each independently and it's possible that Alice's payment to Carol succeeds while Alice's payment to Bob fails. On lightning, coordinating a single payment (ie input) to more than one recipient (ie outputs), where all recipients are paid or none are paid, is left to Alice and Bob and Carol to figure out. Maybe lightning wallets shouldn't coordinate a single payment with more than a single receiver in a trust minimized way, but it'd be useful, and surprisingly so, if they did.\n\n# most lightning payments pay multiple recipients\n\nWhen Alice pays Carol on the lightning network, Alice's money often travels through several other lightning nodes before arriving at Carol's lightning node. The nodes that Alice sends her money through don't do this for free. Alice pays them. What's more, those other lightning nodes only get paid by Alice if Carol gets paid. Those other lightning nodes are effectively Bob(s) from the previous section's example; that is, the other lightning nodes are additional trust-minimized recipients as part of Alice's payment to Carol. Only, those other lightning nodes are secondary to Alice's payment to Carol.\n\nIn the lightning protocol as-is, Carol can't make sure Alice's money travels through a specific Bob, and Bob can't enforce that Alice pays Carol through him. If Carol and Bob don't trust each other *nor* Alice, yet both *can* agree to receive money from Alice only if the other also gets paid, the lightning protocol as-is can't help them. If Carol and Bob want to enter such a contract, they have to get creative.\n# trust minimized split payments enable trust minimized coordination\n\nThe lightning network coordinates delivery of bitcoin from Alice to Carol by paying several Bobs to move their bitcoin in Carol's direction. By design, Alice, the Bobs, and Carol don't need to trust each other much to do this. Ideally, they wouldn't need to trust each other at all. Less required trust means less required permission and less required permission means more freedom, opportunity, and competition. People want to coordinate and if they can't do so in a trust minimized way, fewer people will coordinate and the coordination that does happen will tend to be centralized.\n\n# splitting a payment atomically and downstream is better ux\n\nImagine swiping your credit card five times when you buy something, once to pay Visa, another to pay the merchant, another to pay the merchant's landlord, another to pay the supplier, and another to pay the manufacturer. Now imagine the payment to the supplier fails and continues to fail, then swiping your card four times to get a refund from everyone you paid. If the complexity of Visa, the merchant, the landlord, etc coordinating with each other is thrust on the customer, the customer will prefer a merchant that doesn't expose the complexity, and such a preferred merchant will have more trusted relationships with the other parties.\n\nThat's a toy example, but we do atomic split payments on bitcoin's base layer because it's plain practical. Imagine paying two invoices to your LSP when you want to open a channel. What should they do with your funds when the second payment doesn't arrive? Or how about creating two bitcoin transactions every time you want to pay someone, one to pay the miner and one to pay the receiver? \n\nAtomicity means that when receivers coordinate they don't need to trust each other fully, and if the split happens downstream, the UX for the sender is identical whether there's one receiver or many.\n\n# today's hacks are tomorrow's solutions\n\nOne way to be certain people want something is that they trip over themselves for solutions that work poorly. When they *really* want something, they create elaborate, inelegant, risky hacks that give them the faintest whiff of a satisfying solution. Should a better solution exist, you *know* they'll use it.\n\n# hold invoices\n\nMost non-wallet lightning companies (ones that don't have the luxury of going on-chain for atomic split payments) have currently implemented or at least explored using [hold invoices](https://bitcoinops.org/en/topics/hold-invoices/) for split payments. [Geyser does this](https://geyser.fund/entry/252) to non-custodially take a platform fee. [Robosats does this](https://learn.robosats.com/docs/escrow/) to fulfill an order conditional on an escrow agent's approval (their solution is custodial though because they can't be sure the buyer will be online to accept the payment). Mash once [explored this](https://blog.yonson.dev/log/2023-07-vol1/). [lnproxy](https://lnproxy.org) does this to hide a receiver's node from senders and proxies get paid to do so. We plan to cautiously do this [to take our sybil fee non-custodially](https://stacker.news/items/523435).\n\nUsing hold invoices this way allows applications to be Bob when their customer Alice pays their customer Carol. It's elaborate, inelegant, and risky, but any other solution is custodial, trusted, or imposes new requirements on the sender and/or receiver. These hold invoices give Alice, Bob, and Carol a way to coordinate a split payment without Bob or Carol taking custody of the other's funds, or trusting that Alice is willing and able to send funds to both of them. It also hides the identity of Carol's lightning node from Alice which is otherwise exposed.\n\nThis use of hold invoices recreates how a lightning node forwards a payment, using the familiar preimage and CTLV enforcement, but does so at the application layer. When Alice tells Bob she wants to pay Carol, Bob requests an invoice from Carol. Bob then wraps the invoice, meaning Bob's invoice is conditional on Carol's invoice being paid, and sends it to Alice. Alice then pays Bob's wrapped invoice and because Bob can't redeem Alice's payment without first paying Carol, Bob pays Carol and then claims his funds from Alice. Hence, at no point is Bob in custody of Alice's funds meant for Carol. And, when Bob wraps Carol's invoice, he can add an additional split payment to himself.\n\n# many payments to many recipients \n\nThe main, in-use alternative to the hold invoice approach is requesting Alice pay each Bob and Carol independently. One popular example of this approach is [nostr prisms](https://www.makeprisms.com/). Using programmatic wallet connections, an application requests invoices from an arbitrary number of Bobs and Carols, then sends them all to Alice's wallet to pay one by one. Pending adoption of a [soon to be merged(?) lnurl spec](https://github.com/lnurl/luds/issues/182), Bob might even be able to request proof that Alice paid Carol (assuming Carol isn't in cahoots with Alice to trick Bob).\n\n# bolt12 and blinded paths\n\nIf I'm not mistaken, [Bolt12](https://bolt12.org/)'s blinded paths, when adopted widely, should replace the hold invoice approach. If Bob is provably the introduction point to a blinded path in an amount-less bolt12 offer that pays Carol, then Bob can enforce that he'll be paid when Alice pays Carol. Using this approach, it might be possible for several Bobs to be predictably paid when Carol does, assuming blinded paths can contain other blinded paths. This isn't my exact dream of a single payment being split along independent routes, to different receivers, with codependent settlement at the protocol layer, but maybe novel forms of decentralized coordination can wait for bolt13. \N 15115 \N 458058 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 0.183362779729883 0 \N \N f 339134581 \N 3 23691986 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 435891 2025-03-13 04:30:06.575 2025-03-29 22:39:47.099 If you could ask Michael Saylor one question, what would it be? Not all of us have the chance to talk with, or to ask Michael. Saylor a question. Imagine if you were able to get a chance to ask him one question, what would it be? \N 985 \N 435891 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 26.3977186931659 0 \N \N f 283539772 \N 3 218100463 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:12:48.67 f \N \N \N 0 0 0 0 2 0 0 434807 2025-03-12 08:54:09.133 2025-03-29 22:39:47.088 Meme Monday- Best Meme gets 10k sats It's Meme Monday! \n\nBest meme gets 10k sats. \n\nThe sats will be given to the stacker with the best meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\n![](https://m.stacker.news/42259)\n\nGood Luck! \N 720 \N 434807 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.6057218103712 0 \N \N f 337280175 \N 3 132838106 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 13:53:04.297 f \N \N \N 0 0 0 0 3 0 0 402363 2025-02-13 17:42:08.256 2025-03-29 22:39:47.088 IDEA: SN Bitcoin Classroom Last day, I commented on @siggy47's [Golden Oldies #2](https://stacker.news/items/593999) here https://stacker.news/items/593999/r/IamSINGLE?commentId=594280. \n\nThe talk started formally with me complaining about not having many AMAs these days. I like AMAs for they are generally very educational. \n\nWhile commenting, an idea sprouted out of my typing so formally that **we can as well start some 'Ask us anything' or may be a classroom for beginners**. \n\nA classroom that is a session, say for 1 hour, where most experienced of Stackers would be teachers. One of those Stackers would deliver a lecture on a pre decided topic about Bitcoin. Other experienced Stackers/teachers would add it to the lecture with their comments. After it all pupils (beginners) would ask if they have any confusion remaining. \n\nSo, you can see that it's just an idea came out of thin air. But, it struck me and I'm adamant to make it a reality. However, As I'm a beginner so I need a lot of input from everyone before we unfold (or may be do not proceed) SN Bitcoin classroom or SN Bitcoin Academy for everyone. \n\n## These are some of the things that (I think) we can/should apply- \n\n* Devising a full length course which will be divided in three parts—A beginner, An intermediate and An Advanced level.\n\n* Enrolling students to the course who are willing to take part on a daily basis. \n\n* Giving regular tests and a final test after the completion of each level. \n\n* All those who successfully complete a level will be conferred with a certificate of appreciation signed by Nyms of their teachers. \n\n## Things that I'm not sure about: \n\n* As this will require efforts from our experienced Stackers as teachers, I want to know your interest on it. Would you be willing to devote a few minutes of SN presence for educating beginners? \n\nTo my knowledge I've come to know a few great minds who I want to invite to take the responsibility of they like. \n\n@siggy47\n@Undisciplined\n@DarthCoin\n@davidw\n@benthecarman\n@k00b\n@ek\n@jimmysong\n@Natalia\n\n* The syllabus for every stage. As this course would be much expansive consisting every bit of Bitcoin, it would be very king id someone (anyone who is willing to be the teacher) takes the responsibility and come up with a syllabus for every level. \n\n* Should we have an off day or a weekend holiday? \n\nThese are all the things I could attach to this idea. As I've already said I'm adamant to see it happening, I want your genuine inputs for the idea. Also kindly confer any new suggestion, criticism and whatever you like to share. \n\nI know this idea is very loosely drafted but kindly consider it because this may be an opportunity to add a new and properly organised dimension to Bitcoin Education for anyone who is just coming into Bitcoin with little to no knowledge. \n\nThank you so much!\n\nWaiting for your responses... \N 9084 \N 402363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9490829156363 0 \N \N f 51552826 \N 1 58630065 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435340 2025-03-12 15:47:39.35 2025-03-29 22:39:47.088 Proof of work, meet Minecraft \N https://satlantis.net/ 2961 \N 435340 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.33754196084222 0 \N \N f 53947865 \N 1 179935509 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 10:30:36.935 f \N \N \N 0 0 0 0 1 0 0 450263 2025-03-23 20:19:05.533 2025-03-29 22:39:47.099 I'm John Cantrell, entrepreneur, spiral grantee, and creator of Sensei. AMA Hi everyone! \n\nI'm [@johncantrell97](https://twitter.com/JohnCantrell97) and I've been working on and around Bitcoin for over a decade now. Most recently I've been working on [Sensei](https://l2.technology/sensei) as part of a [Spiral](https://spiral.xyz) grant.\n\n ‎ \n\n##### Sensei\nSensei is a lightning node implementation based on the [Bitcoin Development Kit](https://bitcoindevkit.org/) and [Lightning Development Kit](https://lightningdevkit.org/) projects. Sensei can run modularly and share certain components (networking graph, p2p gossip, chain data monitoring, etc.) with multiple nodes which allows for extremely lightweight nodes. \n\nIf you have use-cases that require running lots of nodes (one per user?) then Sensei might be a great fit for your project.\n\n‎ \n\n##### Brute Forcing\nYou might have also heard about when I orchestrated a cloud gpu farm and [checked over 1 trillion mnemonics in 24 hours to win a bitcoin](https://medium.com/@johncantrell97/how-i-checked-over-1-trillion-mnemonics-in-30-hours-to-win-a-bitcoin-635fe051a752). \n\n‎ \n\n##### Entrepreneur\nI've also founded, bootstrapped, and grew a startup to over $2M in annual recurring revenue before selling it for an 8-figure sum. \n\n‎ \n\n##### AMA\nFeel free to ask me anything about:\n\n- bitcoin\n- lightning\n- sensei\n- spiral grant process\n- brute forcing\n- starting/running/selling a company\n\n*<3* \N 4027 \N 450263 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.967464395379984 0 \N \N f 611526415 \N 3 188540047 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 260961 2024-10-09 08:22:12.295 2025-03-29 22:39:47.099 Quite simple idea on how to potentially bring very cheap self-custody to anyone I love lightning, but it’s very frustrating at the same time. It’s simply cheaper to use custodians.. and I believe that it isn’t necessary. The crucial part of sovereignty is ability to sign the message. Which doesn’t require any costs. Therefore I believe that there is some way how to make self-custody fast and cheap. And here is my current way of thinking. This approach is kind of naive but maybe there is some potential. Maybe it motivates you to improve it into something even better. \n\n---\n\n# Last mile transactions\n\n> 💡 Is it possible to use lightning network without the initial funding transaction? \\\n> *So that on-chain transactions are only used in case of a dispute?*\n\n## What are the requirements?\n\n- Dishonesty must be disadvantageous. Let's try to use the game theory for securing the transfers. \n\n### Simple example\n\n- Alice owns UTXO with 10 bitcoin\n- Alice decides to send 1 bitcoin to Bob\n\n| Transaction outputs | Alice | Bob | Punishment Fee |\n| --- | --- | --- | --- |\n| Status transaction | 9 | 1 | 0 |\n\nIt's a normal transaction that Alice or Bob can broadcast. However, to save on fees, they will keep it with them and delay disclosure.\n\n### Problems\n\n1. Alice can create another transaction at any time to send the UTXO to anyone else.\n2. Alice can make similar promise to infinite recipients. But at most one will receive the funds.\n3. Bob may not have time to respond if Alice sends the transaction directly to the miner (or is a miner herself).\n\n## 1. How to prevent Alice from creating another transaction?\n\nBob won't be satisfied with a signed transaction with the new status. He'll also want a `defense` transaction. The `defense` transaction will use the identical input as the main transaction (10 BTC) and two outputs. \n\n| Transaction outputs | Alice | Bob | Punishment Fee |\n| --- | --- | --- | --- |\n| Defense transaction | 8 | 0.5 | 1.5 |\n\nIf Alice creates a fraudulent transaction, Bob can share a `defense` transaction. While he will hurt himself a bit (he will only get 0.5 bitcoin instead of 1), he will also punish Alice, who will only get 8 bitcoin instead of 9. This `defense` transaction will burn most of the funds to pay the miners. This ensures that miners have an incentive to mine this transaction before any other transaction that Alice would have come up with. In theory, Alice could create a higher priority transaction, but she would have to damage herself even more.\n\nBob has no incentive to use a `defense` transaction unless he is in danger. Because he has fewer resources in it than in a `status` transaction.\n\n## 2. How to prevent Alice from making promises to more people?\n\nAlice will need to disclose information that a given UTXO is partially pledged to a particular bitcoin address. This information can be shared with nodes that would have the assigned counter addresses in addition to a list of valid UTXOs. Or, for example, Alice can share this information via nostr on generally know relay (or more of them).\n\nBob will only consider a transaction valid if he sees the information shared by Alice through a standardized channel, and at the same time he does not see a similar binding to any other bitcoin address.\n\n- *If Bob discovers a connection to a another address at any later time, he should immediately post a `defense` transaction.*\n- *Using one UTXO for multiple addresses would require more complex coordination.*\n\n## 3. How to protect yourself against the collaboration of miners?\n\nFor miner is economical to mine a `defense` rather than `attack` a transaction. However, it is possible that they will not have access to the `defense` transaction. Miner can communicate proof that he has an `attack` transaction from Alice. So the Bob is motivated to broadcast the `defense` transaction.\n\nProblem remains when Alice is able to mine by herself.\n\n---\n\n*Other optional steps:*\n\n- *Alice can send Bob additional funds (up to one half the size of the original UTXO in total)*\n- *Bob can send the funds back to Alice*\n- *Maybe Bob could pay other people via LN if Bob has open channels*\n\n## Summary\n\n- 🟢 Regular bitcoin addresses can be used\n- 🟢 Annyone could accept bitcoin and being connected to Lightning Network non-custodial way without necesity of opening channel fee\n- 🟢 Immediate transactions\n- 🟢 There can be multiple users in a single UTXO channel\n- ⚪ Up to half the size of the UTXO can be used in one channel\n- ⚪ Might be more useful for relatively smaller UTXOs\n- 🟡 All participants must be online to update the transactions\n- 🟡 Risk that the counterparty gets nervous and you both lose part of the funds\n- 🔴 The risk that the counterparty is also a miner and can steal some funds (in case of receiver) or even all the funds (in case o UTXO owner/initial sender)\n\n---\nManaged version is available [here](https://github.com/hynek-jina/Hynek/blob/main/blog/Last%20mile%20transactions.md) \N 10611 \N 260961 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 0.109020704446685 0 \N \N f 46775291 \N 1 229890162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436566 2025-03-13 16:47:45.295 2025-03-29 22:39:47.099 I'm Evan Kaloudis, Founder of Zeus. July 11th AMA! Hey all,\n\nI'm stoked to chat with you all today. Zeus (https://zeusln.app) is a mobile app for iOS and Android that lets you connect to and control your lightning node remotely. It supports LND, Core Lightning, and Eclair.\n\nI've worked in cybersecurity as a full-stack engineer and an analyst. I've worked as an engineer at Kraken. I currently do some engineering work on contract for Lightning Labs.\n\nHappy to talk about the following topics:\n\n- Zeus\n- Cybersecurity 🔐\n- Mobile app development 📱\n- Privacy 👁️\n- Bitcoin 🌽\n- Programming 💻\n- Music 🎵\n- Ball ⚽🏀\n\nBut feel free to AMA!\n \N 9494 \N 436566 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 25.9345310488376 0 \N \N f 1096098738 \N 9 74112193 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 13:30:05.013 f \N \N \N 0 0 0 0 8 0 0 457430 2025-03-28 13:52:42.969 2025-03-29 22:39:47.099 Braidpool: Decentralized Bitcoin Mining Pool # Braidpool: Decentralized Bitcoin Mining Pool\n\n[Braidpool](https://github.com/braidpool/braidpool) is a protocol proposal for a decentralized Bitcoin mining pool.\n\nIt aims to handle everything that a mining pool does, but in a distributed way.\n\nHow does Braidpool work?\n\n## Bitcoin Mining Favors Large Miners\n\nBitcoin mining favors miners who are providing the most hashing power to the network.\n\nIt's just the nature of the protocol and because the block time is programmed to be 10 minutes on average.\n\nThe likelihood of a miner finding a block reward is correlated with the amount of hash power they contribute.\n\nSmaller miners have to endure with more variance (unpredictability) when it comes to mining profits.\n\nThis makes it harder to budget a profitable mining business.\n\n## Mining Pools to Reduce Variance (Unpredictability)\n\nThe above factors have led miners to join mining pools where payouts to miners can be more predictable. \n\nA mining pool conventionally does 3 things:\n\n1️⃣ Constructs block templates \n\n2️⃣ Keeps track of individual miners' work (shares)\n\n3️⃣ Custodies and distributes rewards\n\n## Mining Centralization\n\nPooled mining affects the decentralization of the Bitcoin network.\n\nPools want to get more hashrate to reduce variance, but they don't want to become too big to be a 51% attack risk to the network.\n\n![](https://m.stacker.news/32399)\n\nProblems with mining pool centralization:\n\n⚠️ Pool operators have the ultimate say on which transactions to select in a block (censorship)\n\n⚠️ Known or regulated pools can be pressured by a government to seize miners' bitcoin or KYC them\n \n![](https://m.stacker.news/32401)\n\nhttps://twitter.com/mononautical/status/1777686545715089605 \n\n## Directed Acyclic Graph (DAG) to Decentralize Mining Share Accounting\n\nBraidpool aims to decentralize share accounting, payouts and transaction selection.\n\nEach individual miner in Braidpool is required to run a full Bitcoin node and construct its own block templates.\n\nTo keep track of individual miners' contributions to the pool, Braidpool uses a directed acyclic graph (DAG) layer-1 blockchain on top of the Bitcoin blockchain.\n\nThis blockchain is only for the purpose of producing Bitcoin blocks.\n\nThere is no altcoin, ICO etc.!\n\n![](https://m.stacker.news/32402)\n\nBraidpool DAG blocks are "weak blocks" that are valid Bitcoin blocks, except that they don't meet the difficulty target requirement of a valid Bitcoin block on the Bitcoin blockchain. \n\nThey only meet the 1000x easier difficulty target within the Braidpool DAG blockchain.\n\nThese weak blocks take the role of shares in the Braidpool mining scheme, and allows the distribution of shares between miners according to the hashing power they have provided to the pool. \n\nBraidpool is a bit like a merge-mined "layer-2" to decentralize mining payouts.\n\nTechnically Braidpool's DAG is not a chain of blocks, but a graph of "beads".\n\nBeads can have parent beads, and the graph can have diamonds or other higher-order graphs within it.\n\nA DAG doesn't have orphan blocks like Bitcoin does, and therefore can be much faster. \n\nEach bead (share) has a value based on the number of SHA256 hashing performed.\n\n![](https://m.stacker.news/32403)\n\n## Non-Custodial Payouts via FROST Multisig\n\nAt the end of a difficulty adjustment epoch (2016 Bitcoin blocks or about 2 weeks), Braidpool shares settle on the Bitcoin blockchain and the protocol pays to individual miners via a multisig.\n\nThis multisig is called FROST. \n\nIt enables large multisig quorums, currently for around 50 participants. \n\nBasically, individual miners share mining shares amongst themselves in a distributed way and reach a 2/3 consensus on how to pay each miner in a self-custodial way.\n\nIf miners can't reach consensus on the payouts, the most recently signed transactions become valid, and the miners will effectively revert to solo mining. \n\n## Improved Revival of P2Pool \n\nBraidpool is a new iteration of P2Pool, a past mining protocol with the aim of decentralizing mining pools.\n\nP2Pool is effectively a Bitcoin blockchain on top of the Bitcoin blockchain itself with a 30-second block time for the purpose of decentralizing pool payouts.\n\nP2Pool couldn't scale and it's not being used anymore.\n\nWhen more miners joined the pool, the difficulty required for shares grew, making it more difficult for small miners. \n\nIn Braidpool's DAG, it's not a zero-sum game which miner will win the share because there are no orphaned blocks in a DAG.\n\nThe difficulty is set dynamically within a 2016-block epoch and small miners have less variance even if the pool grows larger!\n\n# Hashrate Derivatives to Incentivize Miners\n\nBecause the output that distributes funds to miners can be assigned to any address, Braidpool's design provides building blocks for hashrate derivatives markets. \n\nA Braidpool bead represents a share within the protocol that can be traded in e.g. futures or options contracts.\n\nThis can reduce miners' variance risk.\n\nA pool or a financial market maker can e.g. buy miners' shares in exchange for bitcoin.\n\nOr if a newbie small miner wants to lock in their risk until the mining rigs are paid etc.\n\nThese kind of contracts are common with e.g. agricultural commodities dealing with variance related to weather conditions, energy prices etc. \n\nBraidpool doesn't intend to be an exchange platform for hashrate derivatives, and the trading would have to happen outside the scope of the protocol.\n\nHashrate derivatives could also help bootstrapping the adoption of Braidpool. \n\nBraidpool is an open-source protocol, not a company, so it can't subsidize miners in any way to start using it. \n\nBut if miners can reduce variance and mining pools can make extra buck participating in hashrate contracts, both will have the incentive to use Braidpool.\n\nThe financial risks of mining with Braidpool will be pushed from miners to financial market makers!\n\n## Opportunities for Entrepreneurs and Volunteers\n\nBraidpool requires miners to run their own nodes, which is not what miners currently often do.\n\nMaybe there are business opportunities within Braidpool for Bitcoin entrepreneurs to help miners with node installation!\n\nBraidpool is still in early development and not ready to use yet.\n\nIt relies on volunteer contributions, both technical and financial.\n\nMeanwhile as a miner, you can use [DEMAND pool](https://www.dmnd.work/) because it also requires you to use your own node, for practice!\n\nhttps://twitter.com/braidpool/status/1791216000374804689\n\nDEMAND uses Stratum V2 mining protocol.\n\nMore about Stratum V2 here: [#537092](https://stacker.news/items/537092) \n\nWhat do you think about the Braidpool proposal? \n\nIs it a good solution to decentralize Bitcoin mining pools?\n\n\n## Additional Resources\n\n[Presentation by Braidpool Developer Kulpreet Singh at Baltic Honeybadger 2022](https://www.youtube.com/watch?v=ai7EVMN1B48)\n\n[X (Twitter) Spaces Hosted by Braidpool (May 2024) (discussion starts at around 26:00)](https://twitter.com/braidpool/status/1791604721670565965)\n\n[BRAIDPOOL: A SECOND COMPETITOR IN DECENTRALIZING MINING, Bitcoin Magazine Article by Shinobi (December 2023)](https://bitcoinmagazine.com/technical/braidpool-a-second-competitor-in-decentralizing-mining)\n\n[Bob McElrath on Braidpool: Decentralized Mining Pools & Trustless Hashrate Futures for Bitcoin (phone recording, poor audio quality unfortunately)](https://www.youtube.com/watch?v=EsaddCiGgnk)\n\n[TFTC Podcast Episode Hosted by Marty Bent with Braidpool Contributor Bob McElrath from 2021 (discussion starts at 8:28)](https://www.youtube.com/watch?v=yeLMmg2Zgic)\n\n\n## Project Links\n\n[GitHub](https://github.com/braidpool/braidpool)\n\n[X (Twitter)](https://twitter.com/braidpool) \N 4027 \N 457430 \N \N \N \N \N \N \N \N security \N ACTIVE \N 21.4821549261693 0 \N \N f 17569793 \N 2 28886928 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424832 2025-03-04 12:32:43.116 2025-03-29 22:39:47.089 nifty does a X space explaining the LN vulns \N https://x.com/niftynei/status/1715525351915278404 21044 \N 424832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7130910745554 0 \N \N f 54369560 \N 1 66531748 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 95306 2023-12-06 12:20:08.724 2025-03-29 22:39:47.089 Scaling Bitcoin Apps with NWC \N https://blog.getalby.com/scaling-bitcoin-apps/ 1534 \N 95306 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.431614487764 0 \N \N f 233007574 \N 3 167946421 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410650 2025-02-20 15:30:19.534 2025-03-29 22:39:47.089 Over 70% of hash power has enabled Full-RBF; Bitcoin Core has not \N https://github.com/bitcoin/bitcoin/pull/28132 16301 \N 410650 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.48988607709533 0 \N \N f 51659286 \N 1 51957684 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436363 2025-03-13 13:56:17.256 2025-03-29 22:39:47.089 Compressing Information for Other Humans and Self In https://stacker.news/items/457261, @elvismercury and others were discussing the intrigue of price and Elvis said:\n\n> But wrt what makes prices special: imo, it's that they roll up such gigantic and diffuse kinds of value and instantiate that massive vector into a single number that people can think with. Which means that everything pertaining to price carries that complex bouquet with it -- it's inherently compelling, the perfect psychological racoon trap.\n\nIt reminded me of [Lex's interview with Meta's head of AI](https://www.youtube.com/watch?v=5t1vTLU7s40) who argues LLMs will not produce AGI because language is a [lossy compression](https://en.wikipedia.org/wiki/Lossy_compression) of thought and experience. It reminded me of Saylor's, and many others', criticisms of [measuring inflation with a single number](https://twitter.com/saylor/status/1391174076983615491) too. Also, of my founder friends taking the vector of all the things a company must do and turning them into a scalar of "it's all about this one singular manageable thing."\n \nWe overwhelmingly collapse vectors into scalars, compressing complex information like thought and experience into something manageable like language, to coordinate with others and our future selfs. I think these compressions are the media of human coordination, [even money](https://stacker.news/items/441333) could be viewed as such a compression, and we compress things for practical reasons. [Data compression](https://en.wikipedia.org/wiki/Data_compression) allows us to transmit whatever is left after compression farther and store it longer than the original. \n\nI often remind myself how hard it is to communicate with people. We're are only ever seeing what any person has managed to compress of themselves.[^1] Like prices, every artifact of coordination creates by its nature the mystery of the original. We might not be able to know the uncompressed original vector of anything, but to Elvis's point, sensing the magnitude of the original probably alters our feelings about it quite a bit.\n\nHave you noticed compressed representations of the things you care about as they get shared widely? What is the impact of us compressing them?\n\n[^1]: Even their compressed self is hardly seen unless we're studying closely. We probably further compress their compressed self to process it too. \N 15978 \N 436363 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 13.0456914613756 0 \N \N f 190451595 \N 1 245115754 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:14:48.175 f \N \N \N 0 0 0 0 1 0 0 433217 2025-03-10 21:49:19.803 2025-03-29 22:39:47.09 Bitcoin Only Road Trip? Like John Fogarty, I guess I've got that old traveling bone. I have the urge to drive across the United States using only bitcoin. Like @carlosfandango, I am a huge fan of Jack Kerouac's On The Road. I made two round trip road crossings in my teens and early twenties, and I'm itching to do it again. I assume @carlosfandango will be riding shotgun, taking notes for the first Great Bitcoin Novel, while @nemo throws stuff out the window from the back seat. \nHas anyone else thought of this? I could make my first stop at Pub Key, but then things will get tough. My inclination would be to head to Nashville, then Austin, and then on to Los Angeles, with many stops in between. I guess I would rely heavily on the Bitcoin Company for gift cards. It's still a pipe dream, but I'm looking for suggestions. \N 6136 \N 433217 \N \N \N \N \N \N \N \N health \N ACTIVE \N 20.8620642512724 0 \N \N f 745374582 \N 5 217626630 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435905 2025-03-13 04:57:55.299 2025-03-29 22:39:47.091 💧 Introducing the LN+ Liquidity Pool ![LN+ Liquidity Pool](https://imgprxy.stacker.news/mbrPIfusNPl5gVKi4jQINbt8n7D_EQLQfV_oSelieZM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9kNDh0dGw1bTVlZGJ3LmNsb3VkZnJvbnQubmV0L3lzNzA4dDJzZWVibHNpZHV2MzVwMnVyYTh5MW4)\n\nDear passionate lightning community!\n\nSome time ago, together with a few LN users we imagined a system reminiscent of a massive and extended liquidity swap (that many of you know well and use frequently), where every channel you open and every transaction you make is reciprocated over the long term. This isn't just a vision; it's the foundation behind the LN+ Liquidity Pool. Just as liquidity swaps allow for short-term reciprocity, our new system promotes long-term cooperation across the entire network. It's like the traditional concept of liquidity swaps, but on a grander and more prolonged scale.\n\nAt LN+, we're always looking for ways to up our game. We know the hurdles Bitcoin Lightning Network node operators face, and while we've got great solutions already, we're all about finding even better ones. So, get ready because today I'm unveiling a shiny new tool to help node operators.\n\n**Opening the LN+ Liquidity Pool**\n\nIf you have a Bitcoin Lightning Node and you want to get incoming capacity, you can join our liquidity pool. In order to join you have to buy or earn liquidity credits. Once you're in the pool, nodes will open channels to you in return for your credits. You have full control over to whom you open and who opens to you. We will give you instructions all throughout the process to make it easy. You can monitor the status of the liquidity credit flow in your private section on your profile page.\n\n* [LN+ Liquidity Pool](https://lightningnetwork.plus/pool)\n* [Walkthrough Video](https://www.youtube.com/watch?v=_NkbwKBDH0g)\n\n**How To Dive Into the LN+ Liquidity Pool**\n\nIn order to get started you don't need to learn the process of how to participate in the pool, because we will guide you step by step all the way. However, if you're interested to get a quick overview, you can read about the process below:\nLogin with your lightning node to LN+ using a signed signature.\nOptionally purchase liquidity credits and fast-forward to step 7, otherwise proceed to step 3.\nOr, to get involved without spending, select a node in the pool to open a channel.\nPatiently await acceptance of your channel opening offer (also called credit transaction) from the other node.\nUpon acceptance, initiate the channel opening.\nWatch as you automatically and gradually accrue credits over a span of 50 days – a fixed timeframe, during which the channel needs to stay open.\nOnce you've gathered some credits, other nodes will approach you with their channel own opening offers.\nIt's your call - accept or decline as you deem fit.\nAfter accepting an offer, wait for a channel to be opened towards you by another node.\nThe cost of the new channels will be covered by your liquidity credits over the subsequent 50 days.\n\n**Why Should You Jump In**\n\n* Fluidity: No strict time frame constraints for opening and receiving channels.\n* Flexibility: Tailored channel sizes, depending on your preferences.\n* Inclusivity: Beginners and merchants can easily integrate with the community by buying liquidity credits.\n* Control: You decide your channel partners – both for opening and receiving.\n* Cost-effectiveness: Earn liquidity credits just by opening channels. Stay active within the pool, and you could maintain a profitable node without added costs of needing to ever loop out to establish incoming liquidity.\n\n**Liquidity Credits Explained**\n\nCentral to the Liquidity Pool are the Liquidity Credits, ensuring that everyone gets their fair amount of incoming channel liquidity that is equal to the amount of liquidity they opened to other nodes. Liquidity Credits aren't a token or (shit)coin. Instead, they're an internal measure of owed incoming liquidity that can only be exchanged for incoming liquidity on LN+.\n\nNode operators and merchants in need of significant incoming liquidity, you have the option to purchase liquidity pool credits directly from LN+, so that node operators would open channels towards you in return for your credits. The price of purchased liquidity credits is determined by LN+ based on market conditions with the intention to ensure there is always enough liquidity credits available in the pool to keep the pool functional. The price is subject to change.\n\n**Comparing the Pool with Swaps**\n\nI can't thank you enough for being passionate users of liquidity swaps in the last years. It is a huge success thanks to you. The pool is a direct competitor to swaps, so the question would naturally arise. How do the two services, the liquidity swaps and the liquidity pool compare?\n\nBenefits of the Pool over Swaps:\n* You have full control over who you connect to. In swaps you partially rely on luck for some of your connections.\n* As a merchant, you can join the pool and start receiving channels even if you don't have capacity to open more channels of your own. This requires you to buy liquidity credits from LN+. In swaps, you're required to open channels as well.\n* Pool channel opens is a continuous process without a specific end. Swaps happen within a specific time frame.\n* In the pool the channels you open and the channels you receive can be of a different size and quantity. In swaps the opened and received channels are of equal size.\n\nBenefits of Swaps over the Pool:\n* Channel opens happen potentially faster, sometimes within 24h. Pool is a continuous process without a specific end.\n* Some of the connections are partially accidental which is good for LN's decentralization and equity. The pool connections are fully under your control.\n* Easier to understand and explain how a triangle works with 3 node operators opening to each other. The pool has the concept of liquidity credits that ensures fairness in the system, but adds some complexity.\n\n**The Pool is Now Open**\n\nI'm eager to hear what you think of the new liquidity pool. If you have any ideas, find any errors, need any help getting started, or want to resolve any potential issue, I'm available on email, in DM, or on social media. You can also learn more about the pool on the about page, which contains a glossary of important terms. Please don't think twice to reach out. And now...\n\n[Take the plunge](https://lightningnetwork.plus/pool)\n\n**First 10 commenters posting their pubkeys will get free liquidity credits!** \N 2329 \N 435905 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 16.9871622758036 0 \N \N f 1296091080 \N 11 223947580 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:51:27.216 f \N \N \N 0 0 0 0 6 0 0 417096 2025-02-26 05:18:12.915 2025-03-29 22:39:47.091 SN Foundry- Stacker Sports Month 2 Financials A peak behind the curtain for anyone interested. \n\nHere are the financial details of the Sports territory for month two and cumulative. \n\n**Jan 6-Feb 5- Month 2**\nTerritory Revenue: 2953 sats\nTerritory Monthly Cost: 100,000\nTerritory gross profit/loss: (97,047)\n\nTerritory Posts: 77\nTerritory Revenue per day: 95.25 sats\nTerritory Posts per day: 2.48\nTerritory Posting Fee: 21 sats\n\nGrayRuby earn Jan6- Feb5: 106,224 sats\nTerritory Rev+ GrayRuby earn: 109,177\nNet Profit including GR earn: 9,177\n\n**Cumulative- Dec 5- Feb 5**\nTerritory Revenue: 8678 sats\nTerritory Cost: 200,000 sats\nTerritory gross profit/loss: (191,322)\n\nTerritory Posts: 209\nTerritory revenue per day: 142.26\nTerritory Posts per day: 3.42\nTerritory Posting Fee: 21 sats\n\nGrayRuby Cumulative earn: 223,368\nTerritory Rev+ GR cumulative earn: 232,046\nNet Profit including GR earn: 32,046\n\n**Takeaways**: Territories are still terribly unprofitable unless you include your own earn. It is difficult for me to assess what portion of my earn comes from interaction in the territory and what comes from interaction outside of the territory. Maybe 70-30 in territory I would guess. \n\nA significant increase in posting fee may help the gross profit line but disincentivizes other stackers posting in the territory so is not something I want to test quite yet. I will be leaving it at 21 sats for this month and then reassess. May increase it next month as a test. \n\nUltimately the only way territories are going to be profitable are if:\na) they come down significantly in price\nb) territory founders keep almost all of the revenue plus have other rev generating sources (charging for pinned posts, or boosted posts or selling ads or licensing)\nc) SN user base grows dramatically \n\nThoughts on a) Personally, I don't want to see a reduction in price until we finish the territory attrition phase (maybe after 6 months) and have some territories die off and others essentially become pseudo sub territories within other territories. I saw @jeff posting about crowdsourcing half the monthly territory fee from people who really wanted to see econ stick around. This might be a good idea in the interim for struggling territories that have built a decent following. \n\nThoughts on b) SN should earn some revenue from the territories and at this point because territory rev isn't a significant amount 50% is fine. Eventually this will need to come down. I think territories are analogous to franchises in the meat space world. Typically a franchisee would pay a franchise fee and then an ongoing royalty on the sales. Generally around 8%-12%. Territories should also have more ways to generate revenue. Options to charge for pin/promoted posts, a static bio instead of territory detail expand where you can possibly add a simple sponsorship link. For instance (stacker sports is brought to you by xyz, check out xyz for all your sports betting needs). This doesn't have to be an immediate thing and the community should have a say in whether we want these kinds of promotions on SN but some way to generate some sort of ad revenue without having the site/territories littered with ads might be helpful.\n\nThoughts on c) This is the most important one. I think SN and all of us stackers need to do a much better job of marketing. Maybe there needs to be specialized territory referral links that give new users 5 free posts and 100 sats or something like that but it is shocking to me that probably half of bitcoin twitter has no clue what SN is and marketing on Nostr has been a complete bust so far. People seem interested but then never follow through. I know once they join we will convert them, as SN is a great experience, but we need to get them to visit our frontier town. I expected territories to be a gateway for this but so far it hasn't happened. We should all be thinking about ways to get this done if we want SN to continue to grow towards being more like a reddit style platform than hackernews niche style platform. I know all of us don't want that but for long term viability it probably has to go that route. I will be creating a territory account on twitter and see if I have more luck there than I did on nostr. As much as I would prefer to stay nostr only, sometimes you have to meet the people where they are. \n\nAnyways, that's the low down on the financials and my two sats on the first two months of territories \n\nCheers,\nGR\n\n\n\n \N 1237 \N 417096 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 1.88541743237263 0 \N \N f 120752325 \N 1 89271946 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414068 2025-02-23 16:05:15.159 2025-03-29 22:39:47.091 Why I'm Bullish 4: Becoming Your Own Banker \nNot that long ago I made a small mistake with one of my bank accounts for my businesses (yep, I still have those). As directed by support I called the bank's support line to fix the issue. A couple days later my account was shut down and I had no access to any of my accounts with this bank. Long story short, the support person had made a mistake when they logged my info and the bank security flagged me as attempting fraud. Thankfully after _several weeks_ and many calls to the bank I was able to resolve the issue and my funds and access were restored.\n\n![banker.png](https://m.stacker.news/12721)\n\nNothing like this had ever happened to me before. I typically only use credit unions but my credit union doesn't support business account so I had to go with a commercial bank. I had always liked the idea of having the option to be my own bank. To run my own node. To host my own lightning routing node (Bank). This event made it real to me. The frustration, anger, and helplessness I felt was massive. I would venture to say most folks on SN have never experienced this. For the most part I doubt most people in advanced economies deal with these issues. But, it made the value of self-sovereign bitcoin real to me in a way that it was not before.\n\nRead my previous posts in this series.\n\n- [1: Bitcoin is a Hurricane](https://stacker.news/items/383549)\n- [2: SeedSigner](https://stacker.news/items/384892)\n- [3: China Mining Ban](https://stacker.news/items/389176)\n \N 21062 \N 414068 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 14.6448327155689 0 \N \N f 379698968 \N 3 113408097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427636 2025-03-06 14:39:59.813 2025-03-29 22:39:47.092 An Interview with Ek @ek is a certified pleb, I can confirm. He recently visited Pleb Lab and I got to ask him a few questions. Being familiar with Ek’s posts, I knew that I could simply walk up and start talking with him. So that’s exactly what happened, in fact, I think this rescued him a little bit. Immediately I felt that we were friends. A SN —> meat space crossover success!\n\n_in this report:_\nwho is EK, the pleb\nfirst jobs\nthoughts on tech\nSN theories/ideas\n\n\nPp _How old were you when you got into bitcoin?_\nEk **21.** \nPp _When I think of a pleb, I think it’s someone whose curiosity about bitcoin changed the course of their life. Is it true for you?_\nEk **So true, it’s actually scary knowing that something can change your life so hard. My previous life, my life before bitcoin, I feel like I can’t go back. There’s no way I could be that person again.**\nPp _Do you miss the person that you were before?_\nEk **Yeah, I mean, I miss the feeling of not thinking so much about all this _pleb_ stuff. I know I can’t reverse how I see the world, but I don’t like that it matters so much. It’s now like a wall between me and other people. I miss not having that wall.**\n\nPp _Have you ever had a “normal” job?_\nEk **I delivered newspapers when I was in school.**\nPp _Did you ride a bike?_\nEk **No, it wasn’t like in the movies. I just walked. Sometimes, the hardest part was finding the mailbox for the house. I also worked in Burger King as cashier.**\nPp _Was it cool?_\nEk **It’s cool to think about, but not cool at the time. (Ek tells a story about a man who became aggressive with him during his shift at Bk.) I was a mailman later. Being a mailman is cool because you build a relationship with people. They ask, “What is it today?” or they’re happy that you brought them what they were waiting for. There was a cat I always stepped over on someone’s stairs. I began to meow at her, and she meowed back. So we had an understanding after that.**\n\nEk **Technology makes us do less.**\nPp _Do you fear it?_\nEk **I see two kinds of people, someone who is really into tech and wants it everywhere, even in their refrigerator. And the other is more like a pleb, a little intimidated by it, but learning it to leverage it.**\n\nPp _Do you think Jack Dorsey is on SN?_\nEk **No.**\nPp _Confirmed?_\nEk **Not confirmed. I think he’s too busy and SN is too under the radar.**\nPp _But will it always stay under the radar?_\nEk **That’s the question.**\n\nPp _What’s something that never gets talked about on SN that you wish would?_\nEk **I like the surprising, interesting, doesn’t have to be controversial but usually is. Outliers. But I think it’s the relationship between k00b and the stackers. He should be seen as just another stacker. He seems to be often close to the top, but do people zap him because he’s the founder? Because they think “whatever he says must be great.” Sometimes it feels biased, but he posts good stuff.**\nPp _Ah that’s true. If you create the thing, you must be a good user of the thing._\n\nThanks for reading. Things got real in this one. What did you think?\nA real pleasure to meet you @ek. \N 1596 \N 427636 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 2.55307840366214 0 \N \N f 143925080 \N 1 90905266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443129 2025-03-19 04:33:41.013 2025-03-29 22:39:47.092 Shopstr: A decentralized classifieds marketplace using Lightning and Cashu. A couple of friends and I have been working on Shopstr for a bit now and recently launched. It's definitely still a work in progress but for now you can check it out at [here](https://shopstr.store). We currently support NIP-04, NIP-07, NIP-09, and NIP-99 and also have a PWA. In the near-future we're planning on adding a native Cashu wallet and NIP-15 support. Any feedback is greatly appreciated. \N 4027 \N 443129 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.239524412282 0 \N \N f 515007215 \N 3 162225880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 02:55:44.076 f \N \N \N 0 0 0 0 3 0 0 394145 2025-02-06 18:52:34.409 2025-03-29 22:39:47.092 Rambling Deflationary Thoughts Rambling Deflationary thoughts\n\n- If you earn in bitcoin, spend in bitcoin, save in bitcoin, and use bitcoin as a unit of account. You can ignore the fiat conversion rate. \n\n- When your living on a bitcoin standard, you've switched from an inflationary system to a deflationary one. Every year goods and services will cost less sats, rent becomes cheaper every year and Instead of arguing for a raise, your employer would have to argue for your paycut. \n\n- You'll probably be able to retire off of a couple million satoshi's, because by the time you retire, your rent will have dropped from 5 million a month to 1k a month (and I'm talking about satoshi's). Groceries will cost a couple hundred sats a month maybe. \n\n- I told my dad that prices of everything fall forever until they're free. \nHe said "Huh? That's not true, just look at the grocery store or housing prices"\nI said "I know, exactly. Every year it costs me less and less, the only reason I was able to afford my condo, was because the prices started rapidly dropping. Buying the condo was a bad idea, because real estate is a depreciating asset akin to a liability, they fall in value over time compared to the money in my savings"\n\nAnd. \n\n- We're living in an environment were we are getting seriously overpaid in bitcoin while fiat is seriously overpriced. I'm making millions of satoshi's a month. I'll never be able to make this kind of money again. When the dust settles and you tell your children how much you made a month in satoshi's, they'll call you a legend. \N 5175 \N 394145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.22833669581223 0 \N \N f 39291189 \N 1 113588943 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435051 2025-03-12 12:34:02.379 2025-03-29 22:39:47.093 I'm growing sick and tired of it, and I'm slowly getting to the end of my wits. What's up with people and "*work*"?! \n\nEach- and every day, I get asked what im planning to do in regards to work, and honestly? I. Don't. Know. And I'm starting to dread the upcoming family gathering more each day it's getting closer.\n\nAt the age of almost twenty five, I still have no clue about what i'm going to spend the next decades on in pursuit of earning a salary; I don't even know if I want the former to be my future in the first place! Yet people try to push me down the threaded path *they too* stumbled along, failing to see that it just may happen to not be the path *I* want to take; but what *do* I want? \n\nA house? A happy family and loving wife? And even *if*, what's the price for that? (Not speaking in monetary terms).\n\nSee, i'm a *big* fan of introspection: simply wandering around the fields and woods, and thinking out loud about what went well- and not-so-well in the current week or month. I think about differing topics and positives and negatives, but the clear leader of those walks is the topic i'm rambling on about right now, namely: *work and my general future*.\n\nThrough that, I've found that it's not that I *don't* want to work *per se*, it's that the "*want*" turns into "*have*" sooner or later, and that's what breaks my neck every damn time. As soon as the sensation of *having* to get up, *having* to get to work and *having* to do said work gets me, it's a steady decline towards quitting.\n\nWell Fabs, how does that feel like? Well... \n\n* Imagine someone whose trying to push two identical poles (+ on +, or - on -) of two *very strong* magnets together. \n\nThat's how it feels, and there's gonna be a time where you simply don't have the energy to continue pushing any longer.\n\nThe above is not only true for work: as soon as I feel like *having* to do something for *extended* periods of time, I *almost always* quit. \n\nI think that that's my biggest personal weakness: I fail to persevere in most cases, and I don't know how to change it.\n\nWell Fabs, what's the fix? Good question, next please! 'Cause I don't know either.\n\nI've been thinking about simply grabbing my bag and winging it, but I don't see that being a good life either. \n\nI've started a course in the healthcare industry, and I'm applying for an apprenticeship right now in hopes of finally finding something I can make my peace with, but what if this fails too? \n\nI'm slowly starting to get at end of my wits... \N 4459 \N 435051 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.3736005903773 0 \N \N f 158787202 \N 1 180807113 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 06:32:39.834 f \N \N \N 0 0 0 0 1 0 0 436153 2025-03-13 10:57:30.478 2025-03-29 22:39:47.093 My non techie experiences connecting wallets to SN so far I think as SN moves away from reliance on the custodial wallet, it would be good to post about experiences so far. This is all SN mobile PWA. \n\n- Blixt works pretty well for receive only through an LN address. Just keep in mind that you have to access the lightning address by going to advanced settings and accessing the lightning box. From there it's simple. \n\n- I tried connecting my Umbrel node via LNC through Lightning Terminal. I use LNC like this to connect my Zeus wallet and it works great. Unfortunately, Umbrel doesn't support https, which SN requires for this connection. I will try it on my start9 node. It should work fine, I hope. \n\n- I tried connecting to SN through WebLN on my Blixt Wallet, since it has a lightning browser. I cannot figure out how to do this. I'm sure someone here can provide some insight. \n\n- I tried connecting my node through NWC through an Oak Node app on Umbrel, but haven't succeeded yet. @ek is looking into it for me. \n\n- I hooked up @supertestnet's new Bankify wallet https://stacker.news/items/647681/r/siggy47 with NWC for zapping. It worked, but this is an experimental wallet, so it's not a compete solution yet. It also is custodial and there's a risk of losing your sats. I only used a small amount to test. Still, the design makes it easy for non techies to use. I zapped a lot with it late last night. I forgot I was hooked up to it so I was my usual zap happy self, which may be the reason many zaps failed. However, some worked. It seems that the odds improved over WiFi as opposed to my graphene pixel data carrier. \n\nThat's it for now. Please post your experiences in reply, especially if you have one that works particularly well. \N 5173 \N 436153 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 10.1494695518362 0 \N \N f 62462865 \N 1 233900297 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 05:27:07.5 f \N \N \N 0 0 0 0 1 0 0 442710 2025-03-18 18:57:22.413 2025-03-29 22:39:47.094 Too Embarassed To Ask - Your Bitcoin & Lightning Questions Answered The pace of innovation in Bitcoin is faster than ever, and the scope of projects being built in the ecosystem continues to expand.\n\nAs the BItcoin ecosystem grows, this naturally means there are fewer and fewer people who are knowledgeable in all aspects of Bitcoin and Lightning.\n\nUnless keeping up with Bitcoin development is your full-time job (and even if it is), we're all prone to developing gaps in our knowledge and understanding of how Bitcoin, Lightning, and the projects built on top of these protocols work.\n\nTo solve that problem, we thought it would be fun to open the floor today for anyone to ask all the Bitcoin & Lightning questions they've felt too embarassed to ask until now. \n\nThere is no topic too elementary, and no question too complicated. Just jump in with all your burning questions, and help others solve their questions if you see one you can answer! \N 20646 \N 442710 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 8.35339270200464 0 \N \N f 628698407 \N 5 16800210 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:51:35.503 f \N \N \N 0 0 0 0 3 0 0 454525 2025-03-26 13:18:03.391 2025-03-29 22:39:47.094 When did you start to care about your (online) privacy? As a mental preparation for a blog post about privacy, I thought about when I started to care about my privacy online. And I actually don't remember.\n\nWhen I was a child, I definitely did not care. I grew up with the internet where it still made sound when you're connecting to it and if someone in your household made phone calls (looking at you, mum) the internet stopped working iirc (-5 privacy). I mostly used it to play online games like StarCraft 2 and message friends on ICQ (I still remember my ICQ number). I also messaged random strangers on ICQ and I did not care about not revealing any PII. At least I wasn't conscious about it. I think I never revealed any PII but I think there was never a situation where this was tested. Common sense, inability, not enough interest, not being sexually attractive enough (lol), being introverted ... (?) protected me from visiting dangerous places on the internet. The most dangerous place \n dangerous in a sense where people might lurk for unsuspecting, innocent children - I ever visited on the internet was probably internet chat rooms / chat roulette (knuddles?) but with no cam, only writing. And I think even that I only did with friends, it wasn't my own idea.\n\nAt some point, I created an account at Facebook and SchülerVZ (not sure if that exists outside of Germany) because my friends also had accounts. I think when I created an account at Facebook, it still required to get invited? Or maybe I only wish so to feel like an OG, lol.\n\nHowever, I didn't enjoy Facebook and SchülerVZ. I even found a bot account on FB which copied all my pictures and pretended to be me - without using my name however iirc, lol. I reported it but I think it just popped up again or was never deleted. That was kind of a weird experience. At some point, I just stopped using any social network because it all felt so fake - at least in hindsight. As mentioned, I am not a social person so looking at all these social persons with their social activities and social friends and oooh, what a great life they must have because they posted a funny picture - it just made me feel miserable.\n\nFortunately, I was friends with like-minded people (no coincidence probably, haha) so none of my "real" friends ever used social networks much. We had our instant messengers with group chats and that was all we needed.\n\nOne friend of mine even had a hilarious first experience with FB where he was surprised that others joined a conversation. He thought it's a private conversation but it was actually public. That was very funny and we had a good laugh about that for a long time in school. In hindsight, thinking something is private when it actually isn't is actually a very dangerous situation.\n\nI _think_ that I got interested in online privacy and why it's important because of university. When I had my first classes about it security, we also talked about data protection including laws. I think that's where it started.\n\n---\n\nMaking a cut here since this post already got a lot longer (as usual ...) then I intended. I want to hear about your experiences! \N 21044 \N 454525 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 18.5423670850757 0 \N \N f 877083338 \N 9 32735844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448720 2025-03-22 20:12:57.791 2025-03-29 22:39:47.095 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/291945), and we have another 25,000 sats up for grabs for this week's winner. The sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 1803 \N 448720 \N \N \N \N \N \N \N \N security \N ACTIVE \N 18.4611825618217 0 \N \N f 27287107 \N 1 87741932 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442170 2025-03-18 13:15:04.317 2025-03-29 22:39:47.095 The habits and rituals of fragmentation I've noticed that certain behaviors -- participating on SN being a prime example -- fractures my mind. That phrasing is dramatic, I realize, but I think it's accurate. Something about posting, commenting, constantly checking back, having a tab open and waiting for the little red rectangle to appear -\n\nThis is 'bad' from an obvious perspective, in that it takes a bunch of time. It's bad from a less obvious but still well-understood perspective of preventing deep engagement with other things that I am meant to be doing. The programmers among you will recognize the high price you pay when your focus is kept from coelescing, because somebody dumps a bunch of meetings on your calendar, or because you keep getting interrupted. A thirty second interruption costs vastly more than thirty seconds.\n\nI think there's an even subtler and more far-ranging issue, which is the mental mode that a person comes to occupy in an environment like this. In the same way you can get in the flow of deep concentration, and your mental rhythms accord with that, you can get into a 'rhythm' of having no rhythm, of jumping from one thing to the next. The interruption of rhythm is itself a rhythm. We often think of this as the _lack_ of something, but really, it's the _presence_ of something we don't have a good name for: the habits and rituals of fragmentation.\n\nThis _switch mode_ ruins my productivity as it is traditionally assessed, but that's an old story and not interesting. A newer and more interesting story is that this way of Being is a new thing in the world, at least when inhabited this frequently, at this scale. And as such it poses new challenges [1] and, though I suppose I'm not used to considering it this way, new opportunities.\n\nI'm curious how this idea lands for anyone else. Or if it doesn't.\n\n[1] an interesting exploration of a related idea is:\n\nBak-Coleman, J. B., Alfano, M., Barfuss, W., Bergstrom, C. T., Centeno, M. A., Couzin, I. D., Donges, J. F., Galesic, M., Gersick, A. S., Jacquet, J., Kao, A. B., Moran, R. E., Romanczuk, P., Rubenstein, D. I., Tombak, K. J., Van Bavel, J. J., & Weber, E. U. (2021). Stewardship of global collective behavior. Proceedings of the National Academy of Sciences, 118(27), e2025764118. https://doi.org/10.1073/pnas.2025764118 \N 15728 \N 442170 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 29.0300403110778 0 \N \N f 87130399 \N 1 3856215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 192964 2024-07-02 00:04:29.043 2025-03-29 22:39:47.089 Anonymous vs Public Bitcoiners I still need to wrap my brain around the concept of anonymous vs public bitcoiners, and this may not even be the correct framing. Perhaps there is a wider picture here that I'm missing, or maybe some nuance that is getting lost.\n\nThere is a lot of talk on here about privacy and anonymity, and I do understand the importance of privacy. It's never perfect, but I have built a more secure online presence throughout the years. What I'm still trying to comprehend is the concept of anonymity, which seems to be a deeper level of privacy.\n\nI see and follow many prominent bitcoiners that operate/transact/communicate as themselves (or so I think) online. I also see even more (including myself) operating under anonymity. I chose anonymity to begin my journey just to err on the side of caution. Is one approach better the other? What are the downsides of each? What if you had both an anonymous and a public persona?\n\nI want to have a clear stance on this early on because it will influence how I choose to communicate moving forward. You see, I'm an audio engineer and a music publisher, my business is client-facing. From my current limited viewpoint, anonymity hinders the services that I provide. \n\nThe clients I currently have, arrived as a result of my previous credits / accomplishments in the same field. For example, they see I mixed or mastered a specific album or single, then they reach out to me for a similar service. The same will apply to future clients. If I'm anonymous, this connection is broken. I'll have to start from zero to build up credits under my pseudonym. As frustrating as that would be, this area of services is still possible because the communications could still all be done anonymously. Client reaches out for service > we agree on a price for services > I do the work and send back to client > any revisions can be requested and completed anonymously.\n\nI don't know that my music publishing services could be rendered satisfactorily under anonymity. A central part of the work is the communication and connection that you have with the clients you represent. Whereas I can mix an album for a client and never communicate with them again until the next project, the same doesn't hold true for my music publishing clients. The relationship has to be established over time, and it is through this process that the opportunities begin to arise.\n\nI would absolutely love community feedback on this. It's been "the thing" tugging at me since I began posting on here. In fact, I disappeared for a few weeks because, in part, I still don't have a good understanding of this. \N 21020 \N 192964 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.6642008956083 0 \N \N f 210814482 \N 2 136239270 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436961 2025-03-14 05:28:41.285 2025-03-29 22:39:47.096 🤩 Saving Satoshi Halfway Done: Bitcoin Learning Game for Devs We've been working on a new open-source game to help devs learn bitcoin. \n\nJust recently crossed the halfway point by launching Chapter 5 of 10! \n\n**Please give it a try here:** https://savingsatoshi.com/\n\n## Let us know your feedback\nHelp us improve the game. \n- Please share your anonymous feedback [here]( https://cryptpad.fr/form/#/2/form/view/3P2CsohsHOkcH7C+WdtX0-tvqjBHqXnAmz5D9yx0e04).\n- Or feel free to let us know if you're open to a user interview for more in depth feedback\n\n## Working out loud\nWe've been working out loud. \n\nYou can catch our ongoing updates [here](https://bolt.fun/project/saving-satoshi).\n\n## Resources\n- Live site: https://savingsatoshi.com/\n- Bolt.fun site: https://bolt.fun/project/saving-satoshi\n\nThank you and let's Save Satoshi! https://savingsatoshi.com/ 21412 \N 436961 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 29.4925338853287 0 \N \N f 71366666 \N 1 228575692 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428725 2025-03-07 14:47:39.148 2025-03-29 22:39:47.096 DarthCoin position regarding AI/chatGPT **We started the discussion on the [SN feature bounty: chatGPT summaries](https://stacker.news/items/170758)**\n\nSeems that some people do not understand my position in regards of this aspect. So I will explain it here in more detail.\n\n**Background**\nAs you may know, I survived 20 years of pure communist tyranny. All my youth and life I fight against evil forces and stood my ground against anything that threat my liberty and humanity. My life was driven by simple things: integrity and truth.\nI am an old man, that is trying to raise a warning to all young generation. An old man studying and using Bitcoin from 2012 and helping many people to get onboard.\n\nI came to SN in the early days of it ([#166](https://stacker.news/items/166)). Why? Because I saw the potential that SN could have. And I was right. I wanted to have a place where I can interact with bitcoiners, freedom fighters, not with dumb bots.\n\nAs I proposed many times here:\n- make a dedicated section / sub for link news. Those who just want to spam with boring links and do not create any value or content, just want to hunt few sats posting links, so be it, they can do it in that section.\n- make a dedicated section for real discussions, guides, REAL good content, where new users could LEARN something new about Bitcoin.\n\nI do not want to scroll an infinite list of boring links, repeated sometimes, without any value, until I could find something interesting to discuss or read. Every second in our life is important, so why waste it with meaningless and spam?\n\nBy introducing chatGPT to make the summary, you are creating even more laziness, idiocy, larping and crap posts. Why? Because that today are just dropping shity links articles, will do it even more, tjhinking that will get some more meaningless sats from others.\n\nI am not here to earn sats. I am here to educate myself with good content from others and educate others with good content from me. Sats are a form to show appreciation of the content, instead of meaningless votes.\n\n### RESISTANCE is one of the words that describe the Bitcoin movement.\nWhy?\nBecause Bitcoin is the resistance against tyranny, against slavery, against idiocy.\nBitcoin teach us how to be brave, how to be smart, how to be creative / innovative using our brains, how to be efficient, how to be good, how to create value, how to be respected.\n\n### chatGPT / AI is pure SLAVERY\nYou may not know it, you may not realize it, but is the ultimate nail in your own coffin, prepared by the evil lords that want to control the humanity.\n\nTHIS IS NOT A JOKE or conspiracy, is a fact.\n\nDue to my background, living in communism, it is more easy for me to see these aspects. You lived your entire life in a nice, warm, so called capitalist society, but in fact you were prepared, trained to be more obedient and do not detect the threat.\n\nThe AI introduced into your life, in a way that you can slowly accept it, first as a joke, later as an "utility", then final is when you cannot get rid of it, will be too late.\n\n** THEY ARE BOILING YOU SLOWLY, without noticing it.**\n\nMany will say: "nah, is just a meaningless software bot adding text". etc etc etc.\nYou are wrong. Slowly you will not realize what is real from fiction and will be too late. \nYour brain will not be anymore reacting to that and will just follow what the AI will tell you, like a brainless robot.\n\nAre machines necessary in our life? YES. But for hard work, where humans could not compete with dangerous environment.\n\n### But machines ARE NOT necessary in our process of creation, of innovation, of communication, of education.\n\nYou still do not want to see but this AI introduced slowly into your life is the PURE COMMUNISM that is coming. Do not let it come, reject it in any form. \nRESIST and follow the truth, the human creativity, the human interaction, the human communication.\n\n### THINK ABOUT YOUR KIDS AND GRANDKIDS. think about their future.\nDo you want them to be raised by an AI? So will never know how is the human touch, human communication, human feelings?\nBecause continuing to accept this AI in our daily life, it is going there: DEHUMANIZING, the ultimate goal of the overlords, so they can control you once and for all.\n\nTHIS was my final warning to all of you guys, in special to you @k00b. I know that deep inside you, you are still human, your soul is still not corrupted.\n\nThis is not about me leaving SN if chatGPT is integrated. I would leave SN because I RESIST, I do not want to give any chance to AI to control me.\n\nThis is about YOU, is a warning for YOU the bitcoiner out there, that fight for freedom and humanity.\n[![I-have-spoken.gif](https://i.postimg.cc/t7GjCWnS/I-have-spoken.gif)](https://postimg.cc/bSgMmGTk) \N 1740 \N 428725 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 0.95788169258924 0 \N \N f 117921419 \N 1 187425087 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430599 2025-03-09 10:58:18.594 2025-03-29 22:39:47.097 The Art of Using Stacker News ⚡️ I noticed myself spending more and more time on Stacker News lately, as this is one of the most refreshing sites I have found, and I would like to share what I have learned after hanging around for a while - sharing is caring.\n\n### ⚡️ Starting with The Basics\n\n#### **How to create and safeguard the account**\n\nIt is as simple as using an e-mail address or scan with an LN wallet to register, and I linked my account to both e-mail and LN wallet ( I am using Blue Wallet for it ) in case something happens to anyone of them, just need to make sure I do not lose this account.\n\nFreedom comes from self-responsibility, even in small things.\n\n#### **How to start posting**\n\nYour first post is generally your bio, take some time to think of a good bio. And be aware here have quite some toxic Bitcoiners who can smell BS miles away. ! Imagine your first post is like the first impression when you make new friends. And choose the user ID you like, something easy to remember, like how you prefer your friend to call you.\n\n\n\n#### **How to post content**\n\nThere are generally two options: sharing links or your thoughts; hidden options are posting a poll, bounty or job.\n\n**1. Sending interesting links**\n\nPosting links is encouraged, as It's a news site. But sharing scammy links or creating noise would be flagged. However, sharing links to your content or unpopular gems is great.\n\n**2. Writing as proof of work**\n\nWriting original and useful content might be one of the best proofs of work since the internet is full of junk. SN uses markdown format for long-form posts. Maybe it would be a bit confusing for anyone unfamiliar with it. I recommend using a markdown editor, so you do not need to bother with the formats but focus on the writing only. I use a markdown writing tool called [Typora](https://typora.io/), clean, minimalist and livepreview available.\n\n**Some extra thinking**: I noticed myself occasionally searching on SN before hitting any search engine. Is this what the web of trust means? Once I found something related to my search, I would click on the profile to have a look, too.\n\n-. Is this person a bot?\n-. How much did he/she stacked\n-. Quality of history posts&comments\n\nAs SN is still in its baby stage, I think it might end up being more than that, as this is the first time I can focus on writing and providing value to others without dealing with many annoying middlemen or things like running a paid group or selling subscription, but focusing on creating itself, which is pure joy for me!\n\nAlso, one more personal observation: most links' lifespan is generally 24 hours here. If you are a content creator, you might want to get some traffic and sats whenever you post, but side note: personally I wouldn't risk clicking any links from a random person if his/ her profile is EMPTY and has 0 history, especially when there is 0 common. It is fine to post links once you have earned your trust.\n\nHowever, I prefer to do one extra step by copy and paste from markdown to SN instead of just sharing a link, not only to create a better reading experience for fellow stackers but also to make it easier for later discovery. ( wink wink )\n\n\n#### **How to share photos**\n\nThere are two tools that I tried and worked:\n\n**1. [Postimages](https://postimages.org/)**. (courtesy from @Darthcoin ) \n\nHow to use it? Easy breezy, just directly upload. \n\nHere is our cat model:\n\n![img](https://imgprxy.stacker.news/T_qjEGv-heN61WLFlkvA0Y8BgFLKnCOEtb5gpykKJME/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MveDF0azVGZHcvY2F0LTAyLmpwZw)\n\n**2. [Pasteboard](https://pasteboard.co/)** ( courtesy from @nerd2ninja )\n\nHow to use it? Upload - go to the image - right click "open image in a new tab" - get the magic link. \n\nHere is our cat model: \nhttps://imgprxy.stacker.news/4SIdZGnTAd3InOuZqeTs013L9c3L1MRMECJFLeLl1EI/rs:fit:600:500:0/g:no/aHR0cHM6Ly9nY2RuYi5wYnJkLmNvL2ltYWdlcy8yQnhDTTluSzhORHguanBnP289MQ\n\n( Note: If you upload the same photo or something similar, this tool will flag it by showing: Image deleted due to content policy violation )\n\nBy comparison, the pasteboard seems to have better quality but feel free to suggest even better tools.\n\n\n\n#### **Some hidden features**\n\n- **Subscribe**\n\nThis one is really good if you want to follow/stalk someone, but it could be overwhelming, like the notifications dot would always be there; Subscribing 1-2 interesting brains you enjoy is good.\n\n- **Forward sats**\n\nOne post can forward sats to up to 5 other stackers; it could act as an appreciation for other's input or even do a fun fundraising like [here](https://stacker.news/items/246238). \n\nThis post is the first time I am experimenting with this feature. Before you post, go to the options at the bottom, simply input the user ID of the person you want to forward sats to and choose the percentage. Done!\n\n- **Boost**\n\nBoosting your post in order to gain more visibility, the minimum amount is 5000 sats.\n\n- **Bookmark content**\n\nSimply click the three dots in any great content you like and choose bookmark. \n\n - **Hide your cowboy hat**\n\nThis is a trick if you want to remain in the shallow: go to setting - privacy - hide, and you can also hide many things else. But I did an experiment on hiding my hat for one day, clearly fewer interactions, I guess the hat kind of shows some POW in a sense.\n\nThere are still many hidden or new features to be discovered and of course, many great content.!\n\n### ⚡️ Levelling Up the Fun\n\n#### **How to stack sats**\n\nI guess this is the most asked question when browsing history. **But it all comes down to offering value to others, which is exactly what money was for in the first place, as a medium for value exchange!**\n\nValue comes in different forms. It can be from posting fun memes, sharing useful information, asking good questions or offering solutions to people's questions, and the best strategy is always sharing your first-hand experiences, aka skin in the game. If you know something or have done something, share it; if you don't, it is better to say, "I don't know."\n\n#### **How to send ( customer ) zaps**\n\nZapping is fun, and to be honest, 1000, 2000 sats is not much in a real-life sense, but comparing with the value you receive from others is like a steal, and not to mention it takes a long time to write a good post. From my understanding, zaps is more of a token of appreciation and encourages more people to share valuable information.\n\nAnd with a fun side acting as a way of building relationships; For example, if I like someone's content, I naturally pay more attention to him or her, and my time and attention are the most precious things I have. Zapping is my way of saying thank you.\n\nAs @ekzyis mentioned [here](https://stacker.news/items/248227/r/Natalia) \n\n> **Content determines the base value and relationships are multipliers**\n\nWow, you might be wondering so how to zap? Simply clicking the bolt icon ⚡️ would zap the default amount that you set, and here are the two options for sending customer zaps:\n\n**1. Long-pressing and then choose from there.**\n\nFor example, I set my default tippping to 121 sats; if I found something I like, I then long-press it and choose a different amount that I feel like zapping.\n\n**2. Enabling Turbo Zaps mode: every click is 10x.**\n\nFor example, if the default zaps are 10 sats, two clicks would be 100 sats, and three clicks would be 1000 sats, as every click is 10x sats. This is quite handy, but it might result in some accidents if you click a few times.! But even with this mode on, you can still use the long-pressing and then choose from there.\n\nAnd one of the most interesting laws in the universe is generally that the more you give, the more you would receive.\n\n> As below so above and beyond, I imagine\n\nIn short, more value is being shared, more zaps, and more fun. Here is my personal input, but I'd recommend everyone go read the [FAQ](https://stacker.news/faq) and [Guide](https://stacker.news/guide), as you can discover more hidden fun there.\n\n___\n\nLastly, I quite like the idea that everyone starts from zero in the Bitcoin world; it doesn't matter how many Bitcoins you hold or how well-established you are in the fiat world: **trust needs to be earned, value needs to be proved.** \n\nYou can't just do a lot of empty talks like in the fiat world, and this is the way.! \N 10270 \N 430599 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.1876920866262 0 \N \N f 55711904 \N 1 127170907 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307458 2024-11-25 03:09:03.064 2025-03-29 22:39:47.097 "Do not try to enforce stasis" - A heretic's advice applied to Bitcoin # The Internet is the Wild West\n\n> What does the internet of the 2020s - not the "respectable" internet of Substack, not a hypothetical version of Twitter where the bad people and somehow only the bad people are censored, but the real internet as it exists today - fundamentally want?\n>\n> The answer is, it wants chaos. It does not want gentle debates between professionals who "disagree on policy but agree on civics". It wants decisive action and risk, in all its glory. Not a world with genteel respect for principles, where even the loser peacefully accepts defeat because they understand that even if they lose one day they may still win the next, but a world with great warriors who are willing to bet their entire life savings and reputation on one single move that reflects their deepest conviction on what things need to be done. And it wants a world where the brave have the freedom to take such risks.\n\nI have to admit that when I read this I thought, "That's a pretty good description of how I see the internet."\n\n# Warning!\n\nWoe unto me! Not only is the above quote from an article all about ways we should implement taxes with odd-sounding names (definitely no taxation is theft here) it also makes asides about how illegal immigration is free and fair and speaks glowingly of communism. And that's not even the worst of it: the article is entitled nothing less than ["Degen Communism"](https://vitalik.eth.limo/general/2024/04/01/dc.html) *and* it was written by Vitalik Buterin.\n\nIf you are brave enough to continue, may God be with you. Otherwise, I bid you farewell.\n\n# "Do not try to enforce stasis"\n\nThe last time Vitalik published an article on April 1st, it was a [dubious defense of bitcoin maximalism](https://vitalik.eth.limo/general/2022/04/01/maximalist.html) that nobody knew how to receive.\n\nSo maybe this article is all a joke and silly me for not getting it. Ha ha. But sometimes you can find truth in a thing even if it wasn't meant to be there. And there is truth here.\n\nWhile I disagree with most of what Vitalik proposes we should do in response to the situation, he makes a valid observation: it often feels like our government exists to preserve the status quo. Maybe this is an obvious observation, but it hadn't been crystallized for me before.\n\nVitalik concludes his piece with the statement:\n\n> Do not try to enforce stasis. Instead, embrace the chaos of markets and other fast-paced human activity.\n\nThis is pretty good advice.\n\n# Is this also true for Bitcoin?\n\nMy general attitude toward change in Bitcoin has been: we still need a few improvements, but eventually it's going to ossify and there will be no more changes.\n\nObviously, Bitcoin has taken a different path than the *move fast and break things* people. And some things *do* need to stay the same or it isn't Bitcoin anymore (21 million, censorship resistance, not your keys not your coins, others?). But perhaps there is no world where bitcoin ossifies, no "last fork and then we're done."\n\nThoughts? \N 12774 \N 307458 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8528665084368 0 \N \N f 109559082 \N 1 118845587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456525 2025-03-27 16:46:08.67 2025-03-29 22:39:47.098 Dark Maximalism ♠️ # *What if I told you, the left and right wing are part of the same bird?*\n![](https://imgprxy.stacker.news/e9ZQCsRmxeYvZYqfqYh6_sw3TKEkXBoHVxugEe2XGWA/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC9jZmRmMDM3ODhlYjg3YTdjMGU0YmM4MDBhYzk5OWExMjc4NzBkMTZmOWZiYWIyOWQ1YzQyYjg3ZmE5MTYwMzVjLmpwZw)\n\n# Well Morpheus, I’d probably tell you that bird shot is cheap around here. \n\n\n**Alice is a dark maximalist.** She’s embraced UBI (universal basic income). She encourages large government spending bills. She cheers subsidies—especially subsidies for energy infrastructure. Glancing over sovereign debt charts give her ASMR chills. The renderings of Middle-East mega-projects drive her to donate even more time to green energy initiatives, realizing the petrodollar isn’t viable when oil isn’t the fastest expanding type of energy. She casts votes based upon what Party controls what, weary of any single Party controlling every relevant branch of government. CBDC’s put a smile on her face, because she knows that when purchase voids, geofencing, restrictions, and possible expirations are inherent parts of a fiat money’s logic gates, its ability to be a store of value is further hollowed out, and the fixed monetary properties of decentralized money shine; and she knows that when the on and off ramps of tax havens are surveilled, decentralized money becomes a necessity, not only for its fixed monetary properties so important to NgU heretofore, but for its [fixed liberties](https://stacker.news/items/238443) which shine. *Creative Destruction* is a principle Alice adheres to, believing the fastest and most frictionless path to end fiat hegemony (separate money from state) equals a sum of well-being. Ai to her will become a boringly dependable technology like they all do, but on the pathway there, it’s a tool to supercharge FOSS, which tears down borders, savages ecosystems, collapses prices, and distributes away centers of power. Bitcoin is the native currency of this new culture. Alice imagines a world where we’re all broadcasting bitcoin transactions in the light.\n\n**Bob is a fiat maximalist.** He rails against UBI because it could inflate the dollar, and is angered by every government spending bill. He pushes crisis narratives using sovereign debt charts, and considers CBDC’s a danger to bitcoin’s NgU. He worships oil and gas like he does fiscally responsible conservatives who promise safekeeping of the fiat system’s oxygen supply. He dismisses battery technology, eye-rolls hydrogen, laughs-off incremental fusion breakthroughs, is skeptical of wind, geothermal, solar, and hydro, and demands more nuclear because his favorite Twitter accounts parrot the same. However, when more nuclear is embraced by his enemies, he’s ready to pivot and warn people of the cost versus the latest developments of the interminable shale revolution. He pushes Austrian ideals onto a Keynesian fiat corpse, and suggests trust-based gold standards (which involve pegging fixed amounts of gold to a fixed amount of fiat before engaging in coordinated global forex manipulation campaigns) were a viable thing prior to 1971 and the petrodollar’s *suddenly*. He wants territory ceded to autocratic regimes abroad, not because expanding their reach is acceptable and certain to stop there, but because it helps discredit those he disagrees with, fits into his myopic time preference, and helps keep the defense budget down—even though it’s been falling for years. He dabbles in conspiracies as a tool for the same reason. Bob wants Creative Destruction reviewed, regardless of its efficiency and sum of well-being. Ai is a tool of repression that the fiat-based system will use to enslave us. Fiat is the native currency. Bob imagines a friction-filled world where we’re all broadcasting bitcoin transactions in the dark. \n\nSats for high-rez criticism as always. You know the rules.\n \N 3377 \N 456525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3377312505675 0 \N \N f 657452498 \N 4 190225554 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 402974 2025-02-14 10:08:25.905 2025-03-29 22:39:47.098 You wake up and Bitcoin is worth $1M. What do you do? Probably go get guns and ammo.. \N 15526 \N 402974 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.0812001351484 0 \N \N f 207177059 \N 1 90128289 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 398220 2025-02-10 14:38:54.181 2025-03-29 22:39:47.099 New way to earn Sats I'm building a sort of lightning faucet where users vote for content and receive sats as rewards. The idea is to go from a no-coiner to your first sat(held in your own wallet) in under a minute.\n\nHere is a super early mvp, https://litstak.com\n\nPS: I'm looking for feedback, reply if you would be interested in doing so. I'll send 1k sats to the first 100 people :) \N 1114 \N 398220 \N \N \N \N \N \N \N \N history \N ACTIVE \N 24.1981432571626 0 \N \N f 54420795 \N 1 159636242 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404136 2025-02-15 15:21:25.084 2025-03-29 22:39:47.099 My new coinjoin wallet is powered by nostr and built for a mobile-first world \N https://www.youtube.com/watch?v=Oi4qEKtkabE 20660 \N 404136 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 8.01381507152481 0 \N \N f 1096177081 \N 7 59204767 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437301 2025-03-14 12:35:30.52 2025-03-29 22:39:47.1 StackerNews posts vs mining on @supertestnet’s laptop Overheard @pleblab\n\nSuperTestnet: According to Clark Moody’s dashboard, 1 petahash of hashrate for one day gets you 233k sats. So I did the math and I could earn 2sats per day on my laptop\n\nCar: You know at that rate you’re better off posting on StackerNews every day \N 10586 \N 437301 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.730977779429 0 \N \N f 560376265 \N 4 181377135 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448706 2025-03-22 19:50:10.96 2025-03-29 22:39:47.091 Why I'm Bullish 9: Trust Minified Trust is a part of life. It is impossible or if not impossible it is at least crippling to not trust anything or anyone. But trust is also not a boolean. There are levels and layers of trust. I trust the chair I'm sitting in to hold my weight, but If I gained 100 lbs I would cease to trust it. Most of the time we are faced with trade-offs. We trust that our employer will pay use come payday. As they continue keep their word our trust is likely to grow. If you are in a relationship and your partner lies to you trust is broken. It can sometimes be repaired, but it takes time and work.\n\nWe all have placed some level of trust in fiat money. We have to. The system requires trust. If you use banks, you are trusting they will give you your money when you request it. If you are a merchant you are trusting that the credit card processor is doing their job. Its a very high trust system and systems like that require high levels of trust are risky. \n\nWith technology most people are also trusting third parties. If you use the Apple app store you are trusting that they are vetting the apps you install on your devices. Today we have tools that allow our trust to be minified. We have public private key encryption that allows for someone to cryptographically sign the digital artifacts. This allows us to mathematically prove that something was created by a person with the control over a key. This works with email, software, and bitcoin.\n\n### Self Custody \n\nWhen you start with bitcoin, if you're doing it the right way the first thing you do is create a wallet. You will generate a 12 or 24 word seed phrase. This seed phrase is all that is required to control your bitcoin. When you are new to bitcoin it can be hard to wrap your head around what is going on. Many people think that their bitcoin is in their app. Or on their computer. Actually its on the blockchain distributed across thousands of nodes running on computers all over the world. What is so powerful is you have custody of your bitcoin if you have your seed phrase. Honestly, it still blows me away that this isn't a bigger deal to most people. The fact that you can memorize 12 words and store all of your wealth in you mind is amazing. It is also terrifying as long term bitcoiners know. Thankfully we have tools to help us.\n\n### Self Validation\n\nAs I started my bitcoin journey one of the early steps was setting up my own node. I can download install bitcoin-core and validate that the code was signed by the maintainers of the project. Anyone with a computer or access to a computer can do this. A node allows you to validate your own transactions. Not only this but you can validate the current supply of bitcoin. These two things do not exist in the fiat world. Both parties can validate the transaction. There is not requirement that we trust each other. Even more incredibly we don't need a middle man. Because there isn't a middle man there isn't someone that censor your transactions.\n\n### Instant Payments\n\nThe next step I took was to set up a lightning node. This made me even more bullish. Not only can I validate my transactions in a trustless and permission-less way, I can run my own Lighting node and send bitcoin to anyone on the Lighting network in an instant. While Lightning is not perfect, most of the time it just works. I can instantly pay someone anywhere in the world for a very low cost. There's no payment processor. No Paypal. No Visa. Just the network and peers. Its revolutionary. No longer do I have to trust that Paypal won't close my account. I don't have to worry that I might have my transactions reversed. My funds stolen. Its a thing of beauty. On top of that, I have more privacy than I have on the credit card payment rails. Lightning isn't perfect but it is worlds ahead of the fiat world.\n\nThese are just a few things bitcoin can do but they are big ones. Things like this often become less appreciated the longer someone is in bitcoin but at the same time missed by new comers. When bitcion critics say, bitcoin isn't backed by anything I always think... are you serious? You must not understand the bitcoin network. I think its extremely valuable and reason to be bullish.\n\n\n**Read my previous posts in this series.**\n\n- [1: Bitcoin is a Hurricane](https://stacker.news/items/383549)\n- [2: SeedSigner](https://stacker.news/items/384892)\n- [3: China Mining Ban](https://stacker.news/items/389176)\n- [4: Becoming Your Own Banker](https://stacker.news/items/391061)\n- [5: Open Source Money](https://stacker.news/items/392251)\n- [6: The ETFs are Capitulation](https://stacker.news/items/398832)\n- [7: Bitcoin is for Enemies](https://stacker.news/items/400699)\n- [8: Bitcoin is the Greatest Invention in My Lifetime](https://stacker.news/items/455079)\n \N 8729 \N 448706 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.11877505776875 0 \N \N f 492004023 \N 2 144793167 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407735 2025-02-18 10:43:47.789 2025-03-29 22:39:47.091 The Basic Laws of Human stupidity - part 1 This is a transcript (literally copy/paste) of a short book written by Carlo M. Cipolla, named "The Basic Laws of Human Stupidity". This book impressed me quite much because it have so much truth in it that you cannot deny it, just laugh at it.\n\nIt's an excellent essay explaining in 9 chapters how to deal with human stupidity.\nI read this book many times, to understand all the essence and I would like to be present on SN. So I will start posting each chapter per day for your delight, laughs and reflections.\n\n*if you want the pdf/epub file, you can ask me to provide it*\n\n![](https://m.stacker.news/50920)\n\n### Introduction\n\nHuman affairs are admittedly in a deplorable state. This, however, is no novelty. As far back as we can see, human affairs have always been in a deplorable state. The heavy load of troubles and miseries that human beings have to bear as individuals as well as members of organized societies is basically a by-product of the most improbable - and I would dare say, stupid - way in which life was set up at its very inception.\n\nAfter Darwin we know that we share our origin with the lower members of the animal kingdom, and worms as well as elephants have to bear their daily share of trials, predicaments, and ordeals.\n\nHuman beings, however, are privileged in so far as they have to bear an extra load - an extra dose of tribulations originated daily by a group of people within the human race itself. This group is much more powerful than the Mafia, or the Military lndustrial Complex, or International Communism - it is an unorganized uncharted group which has no chief, no president, no by-laws and yet manages to operate in perfect unison, as if guided by an invisible hand, in such a way that the activity of each member powerfully contributes to strengthen and amplify the effectiveness of the activity of all other members. The nature, character and behaviour of the members of this group are the subject of the following pages.\n\nLet me point out at this juncture that most emphatically this little book is neither a product of cvnicism nor an exercise in defeatism - no more than a book on microbiology. The following pages are in fact the result of a constructive effort to detect, know and thus possibly neutralize one of the most powerful, dark forces which hinder the growth of human welfare and happiness.\n\n## Chapter I\n### The First Basic Law\n\nThe First Basic Law of Human Stupidity asserts without ambiguity that «Always and inevitably everyone underestimates the number of stupid individuals in circulation»\n\nAt first, the statement sounds trivial, vague and horribly ungenerous. Closer scrutiny will however reveal its realistic veracity. No matter how high are one's estimates of human stupidity, one is repeatedly and recurrently startled by the fact that:\n\na) People whom one had once judged rational and intelligent turn out to be unashamedly stupid.\n\nb) Day after day, with unceasing monotony, one is harassed in one's activities by stupid individuals[^1] who appear suddenly and unexpectedly in the most inconvenient places and at the most improbable moments.\n\nThe First Basic Law prevents me from attributing a specific numerical value to the fraction of stupid people within the total population: any numerical estimate would turn out to be an underestimate.\n\nThus in the following pages I will denote the fraction of stupid people within a population by the symbol.\n\n[^1]: The compilers of the Testament were aware of the First Basic Law and they paraphrased it when they asserted that "stultorum infinitus est numerus» but they indulged in poetic exaggeration. The number of stupid people cannot be infinite because the number of living people is finite. \N 2652 \N 407735 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.4725077345391 0 \N \N f 230717556 \N 1 220350268 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434962 2025-03-12 11:19:42.468 2025-03-29 22:39:47.092 Writing Contest #1 \n![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\nLet’s give this a go. I’ll keep it simple, but please have patience if things get screwed up. This will be a pinned post. Submit your entries by replying. The contest will end at midnight, GMT, Friday, February 9th. A winner will be announced in next Saturday’s newsletter. The winner will be zapped all of the sats generated by this post, which will be pinned here until Friday, and will bask in the priceless glory of winning the first Books and Articles Writing Contest. I guess if this idea goes nowhere, there won’t be much of a payoff. On the other hand, if there is lots of interest the winner stands to receive a nice payday, and the territory benefits financially as well. \n\nPrompt: Your personal rabbit hole story. Describe your bitcoin journey. Be careful not to reveal too many personal details if you are concealing your identity here. I expect @undisciplined to supply the obligatory “nice try, fed” reply.\n\nRules: I will use zaps in selecting a winner, but zaps can be gamed, so I will give at least as much weight to the quality of the content and the opinions of the community expressed through comments. \n\nGood luck! \N 2709 \N 434962 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 24.4981165832097 0 \N \N f 572066386 \N 3 109136642 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 18:41:13.062 f \N \N \N 0 0 0 0 2 0 0 436445 2025-03-13 15:05:39.634 2025-03-29 22:39:47.092 I have to lower my prices because I price in bitcoin This recent price runup has gotten so out of hand that all the prices on my shop are ridiculous. \n\nSo I had to lower them today. \n\nI sell Bitcoin-themed Christmas cards and I only accept bitcoin. \n\nChristmas cards used to be 15k sats, now 12k sats. \n\nNo inflation in the bitcoin circular economy. \n\n![](https://shop.bitcoinscoresby.com/wp-content/uploads/2023/09/Grinch-Mockup-1.jpeg) \N 624 \N 436445 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.9265635410368 0 \N \N f 52399388 \N 1 85328597 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:39:36.337 f \N \N \N 0 0 0 0 1 0 0 404521 2025-02-16 00:22:11.054 2025-03-29 22:39:47.092 Chaumian ecash is the patricians choice.... ![ecash-v-ordinals.jpg](https://m.stacker.news/12758)\n\n## Quick Background\n\nFor those that don't know, Chaumian eCash was created by David Chaum in the 80s - the implementation was known as DigiCash and it even saw use at a US bank from 1995 - 1998.\n\nIt introduces near perfect privacy (blinded amounts + transmission).\n\n## Bitcoin\n\neCash is being used as an add-on to bitcoin (not in competition), specifically there are a couple of implementations happening now on LN (ie. cashu, nutstash.app, etc) and on-chain (Fedimints, etc).\n\n## Features\n\n* Blinded Amounts\n* Can be used both on-chain and on LN\n* NOT UTXO based - but Bearer based (no online requirement, transport agnostic)\n* eCash is "minted" and transactions between users of same mint are instant and no-fee\n* eCash can transfer between mints via LN (or other ways)\n* Can hold other "assets" (ie. USDT, tokens, etc)\n* Scales bitcoin\n\n## But how exactly does this "scale" bitcoin? \n\nIts a nuanced discussion, but most of us now understand that scaling BTC to entire world on-chain will never happen (mathematically impossible - not to mention fee issues). Therefore we need some form of "Custodians" to get 6B people both on the network and transacting. Even though LN by itself helps tremendously, there is no way to open that many channels on-chain, so custodians of some sort will be needed....the problem custodians bring is that they can/will be pressured by state actors to censor transactions. Custodians can and will be tempted to spy on users and use captured data for their advantage at expense of user.\n\neCash solves this since it becomes (a) impossible for Custodian to know what is being transferred **AND** (b) because its bearer-based, its impossible for Custodian to know even know assets are trading hands (ie. you could literally download "ecash.json" file and send via WhatsApp and its like sending physical cash over chat network). \n\n## How can I get started\n\nQuickest way right now, is to spin up an instance of LN wallet at https://legend.lnbits.com and enable the "Cashu" extension. Then you can create a mint, issue some assets and play around. \n\nYou can use the https://wallet.nutstash.app/ web wallet to transfer assets to your lnbits wallet and see how it works. There are also wallets available for iOS / Android (https://enuts.cash)\n\n\n \N 2022 \N 404521 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8039453192499 0 \N \N f 423572256 \N 4 161736934 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 206926 2024-07-28 13:57:07.575 2025-03-29 22:39:47.093 The Government’s Hypocrisy Exposed By The Samourai Prosecution \n![bank](https://upload.wikimedia.org/wikipedia/commons/0/0c/Standard_Chartered_%282021%29.svg)\n\nI previously [posted](https://stacker.news/items/520826/r/siggy47) about the possibility that the Samourai defendants could attempt a selective prosecution defense. Historically this defense is rarely successful, so the trial attorneys may dismiss it out of hand. There may also be stronger defense strategies that will be revealed after more evidence is disclosed. Whether or not the issue is raised in a courtroom, I do want to at least bring some attention to the overt hypocrisy being demonstrated by the US Attorney’s Office in the Southern District of New York.\n\n### Standard Chartered Bank\n\nI think the best way to make my point is to delve into the US Government’s treatment of Standard Chartered Bank, a “too big to fail” London institution. Note that the U.S. proceedings were conducted in The Southern District Of New York, the same venue where the Samourai indictment was brought. \n\nBuzzfeed published an in depth article which revealed the special treatment the bank received from Fincen and the Justice Department despite the many money laundering and sanctions violations investigations:\n\nhttps://www.buzzfeednews.com/article/richholmes/standard-chartered-bank-money-iran-fbi\n\nBelow are some passages, but I encourage you to read the whole article.\n\n> Taken together, the whistleblowers’ accounts and the banks’ Treasury reports show the depth of the money laundering problems at Standard Chartered and the extent to which the US government gives big banks a pass when they break the rules.\n\n> In 2008 New York state prosecutors announced that the bank had helped its clients hide at least 59,000 financial transactions, worth a quarter of a trillion dollars, that potentially violated American sanctions against Iran. The bank had made “hundreds of millions of dollars in fees” off those clients, the prosecutors said.\n\n> The bank admitted to having broken the law, but only up until 2007. The New York regulators had threatened to revoke the bank’s business charter. The punishment would effectively halt its access to the US dollar market, a death blow for a global financial institution.\n> But, with a promise from Standard Chartered to stay on the straight and narrow, and an outside monitor keeping a close eye on the bank, prosecutors held off bringing any criminal charges. New York state issued a fine of $340 million — a mere 1.3% of Standard Chartered’s revenue that year. The bank was allowed to continue winding down its business with a number of Iranian clients.\n\nThe story doesn’t end there. A whistleblower came forward with evidence that Standard Chartered did not cease its money laundering activities:\n\n> Those records, which have since been reviewed by BuzzFeed News, showed that Standard Chartered was working with Iranian clients after 2007. What Knight didn't know was that the government had allowed the bank to fulfill its obligations with some Iranian clients after 2007. Those clients had permission to repay their outstanding loans to the bank in currencies other than US dollars, or to withdraw their existing balances from bank accounts that were otherwise blocked by the US government.\nThis informant began talking with the FBI. In the process, he is outed and his life is threatened. The FBI file is lost. \nStandard Chartered had friends in high places:\n\n> George Osborne, the UK’s chancellor of the exchequer at the time, wrote a letter to the Federal Reserve copying in Timothy Geithner, then the US secretary of the Treasury, to discuss his “concerns.”\n> The US was coming down awfully hard on the bank, Osborne said, hard enough to endanger its health. “For a systemically important financial institution,” he wrote, “this could lead to contagion.” Endanger one bank, he seemed to suggest, and the whole economy could suffer.\n\n> The Department of Justice and Standard Chartered ultimately negotiated a deferred prosecution agreement, the US government’s preferred tool for getting wayward banks back on track. Standard Chartered would pay a second fine — $227 million — but so long as the bank kept its nose clean, there would be no criminal prosecution on the federal level, either, and the bank would not lose its license.\n\nThis deal was offered, and no criminal prosecution ensued, despite the following:\n\n> The investigations found that senior managers in the bank’s Dubai office hadn’t blocked transactions from Iran after staff discovered dozens of clients used the bank’s internet platform known as “Straight-to-Bank” to access US dollar accounts. The bank’s compliance staff, according to the New York prosecutors, had “utterly failed.”\n\n\n\n### The Samourai Prosecution\nUnlike Standard Chartered employees and managers, the Samourai defendants had no knowledge or control over individual transactions, and did not, nor did they have the ability to, falsify any documents. Standard Chartered was involved in active sanctions violations and money laundering activities. The Samourai defendants wrote computer code, which is constitutionally protected speech in the United States. This was established in [Bernstein v. U.S. Dept. Of Justice](https://www.eff.org/cases/bernstein-v-us-dept-justice?elqTrackId=EE2950A0C5D77C799C5D546D19F49CD7&elq=93f28c84514a4e1784c9d16919eb9385&elqaid=5289&elqat=1&elqCampaignId=). To read more about this topic, here’s a pretty good article:\nhttps://www.pbs.org/wgbh/nova/article/is-code-free-speech/\n Standard Chartered management committed affirmative, criminal acts, and were not prosecuted. \n \N 17116 \N 206926 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.72923737163786 0 \N \N f 257628042 \N 2 187786524 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446954 2025-03-21 14:47:05.295 2025-03-29 22:39:47.093 Dinner for Steve- A tale of bitcoin for good **Dinner for Steve**\n\nAs many of you know I have purposefully crafted the lifestyle I have now. It took many years to come to the realization that the fiat hamster wheel I seemed to perpetually be on was a road to a shallow, material life mired with sacrifices I was no longer willing to make. One of the great benefits of my current lifestyle is living in a town where I can walk almost anywhere I need to either along the lake or via nature trail. Earlier this week I posted a picture in photography (https://stacker.news/items/682506) showcasing the route I take to walk to Walmart and admittedly boasting a bit about how I can walk there without seeing a car until I get to the Walmart parking lot. \n\nYesterday, in the late afternoon, I was sitting at our kitchen table, tapping away at the keys of my laptop and noticed my wife puttering around the kitchen. She noted that we had some bacon that needed to be cooked in the next couple of days and suggested that the kids would love to have bacon quesadillas with avocado for dinner. "Sounds good to me" I replied. At which point she informed me she had the bacon and avocado but we were going to need a few other things. I needed a break from SN anyways and volunteered to venture off to Walmart to pick up our missing ingredients. \n\nI grabbed a reusable cloth bag (stores aren't allowed to give plastic bags in Canada anymore- a rant for another day) my wallet, keys, slipped on my headphones and ventured off. I listened to the first episode of Peter McCormack's new podcast Mr. Obnoxious as I wandered down the nature trail path I always traverse to get to Walmart. \n\nThe past few times I have been to Walmart I have seen the same gentleman sitting on the curb, where cars turn in and out of the parking lot, asking for change. I usually pass him on my way out of the store, as depending on what I have to carry, I often take a shorter, but slightly less scenic route home. I never have change though as I admittedly have become a slave to Apple pay, where I can use my shakepay virtual visa card and get sats rewards back (forgive me Darth for I have sinned). I have stopped to talk with him briefly a few times, apologizing that I don't have change and noting that I will try to remember to bring some cash or change with me the next I go to Walmart in case he is there. He is always friendly, polite and understanding. I don't really know his circumstances but I know he and his girlfriend along with a young child live in a small trailer hitched to an old pick up truck parked on an unassumed road behind the big box stores in the area. Anyways, their family and another family were the talk of the town last year when they were living/squatting in the back corner of Walmart's giant parking lot, which Walmart store management seemed ok with, but I am guessing corporate got involved and they were forced to leave. \n\nWalmart was busy. Busier that usual. I mentally noted that it must be because it is Friday in the late afternoon and with a beautiful weather weekend coming up we are getting a second wave of city cottagers trying to enjoy the last gasps of summer after a couple weeks of settling into their paradigms of a "new school year". Not many folks visit the first couple weeks of September after school has started but we will definitely get an influx of fall cottage goers when the leaves begin to change before things die down again until ski season. I don't like shopping when it is busy but the store is quite good at stocking, keeping the premises clean and have many self checkouts operational, so despite the presence of the "city folks" stocking up for their weekend getaway it was pleasant and smooth trip to acquire those final ingredients for our tasty dinner. I had munched on an apple earlier but skipped lunch so I was looking forward to the bacon and avocado quesadillas. \n\nAs I was leaving, I saw the same gentleman as usual sitting on the curb asking for change. As I approached I said "I am sorry I have no change, I feel this become a routine and is the 4th or 5th time I have told you that. I really need to keep a 5 dollar bill in my wallet for next time". He smiled and said "don't worry about it. I appreciate you thinking of me". I replied "I hope with the extra traffic today you are at least getting enough to buy some dinner". He said "I am lucky, people are very generous here". I thought to myself, the guy who lives in a small trailer and begs for change at Walmart considers himself lucky to be somewhere with kind and generous people? I wished him well and wandered off. Taking the quicker street route home. As I was walking, listening to Peter's podcast episode again, I was struck with an idea. \n\nI abruptly turned around and walked back towards where the gentleman was sitting at the parking lot entrance of Walmart. He must have thought it a bit odd as I hurriedly walked towards him and excitedly said "do you have a phone?". He said "yes, it is not a very good one but I have a phone". "can you receive photos via text". He looked at me puzzled and said "yes it's an old phone but I can get photos". Brimming with excitement I said "great. I am going to use my phone to buy you a walmart gift card using bitcoin and send the card to your phone". He said "really? Bitcoin, isn't that very expensive now?" As I tapped and swiped away at my phone buying a $10 gift card from the Bitcoin company I chatted with him about Bitcoin and how not just the rising price is a great feature but the fact you can use it as a medium of exchange like I was currently doing, and that it is open and available for everyone to use without permission. He replied "yes, I heard the government doesn't control it. I like that about it". I completed my lightning transaction with the Bitcoin company and did a quick screenshot of the gift card and sent it to his phone. \n\nHere is a pic of the transaction. \n![](https://m.stacker.news/51878)\n\nHe was incredibly grateful and told me his name was Steve. I said "it's nice to meet you Steve. I hope you can get some dinner tonight thanks to Bitcoin. See you next time". I slipped my headphones back on and continued on my way. The quesadillas were excellent by the way and I am grateful for the lifestyle I have and grateful I got to use a little bit of my Bitcoin to help Steve out. \n\nThanks for reading.\n\nSats for all, \n\nGR \N 976 \N 446954 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 5.36989766824441 0 \N \N f 1080860527 \N 9 157541891 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:07:06.363 f \N \N \N 0 0 0 0 5 0 0 420503 2025-02-28 18:43:49.338 2025-03-29 22:39:47.093 Be careful what you wish for: Bitcoinization can and will have huge implications Put the price of Bitcoin aside for now. Assume that Bitcoin's purchasing power (per BTC/per sat) continues to 'go up' for the forseeable future... so just put that on the mental back-burner.\n\nInstead imagine some of the political and economic implications of real Bitcoinization in global markets.\nBitcoin becoming a 'world reserve currency' or 'world reserve asset' that's neutral and available to all...\n\n- Large businesses\n- All large governments (and small ones too)\n- Banks\n- High-Net-Worth People\n- Pension Funds, Retirement Accounts, Brokerage Accounts 401Ks etc...\n\nThe amount of capital *yet* to flow into Bitcoin must logically be... insane. It is very, very large.\nThe world has never had a neutral, decentralized, energy-based asset like Bitcoin before - *maybe* Gold - but Gold is slow, *not* digital, cannot really be transported quickly, and it has a malleable supply that varies with its price and physical mining.\n\nBitcoin does not have such a supply shortcoming... it is engineered to be *perfect capital* across all borders and languages and truly scarce as an engineered store-of-value. It is *perfect capital* within its technical limitations... and likely has no equal.\n\n1) If Bitcoin starts to compete (and there is reason to believe it will under Mr Trump) with US bonds and treasuries as a global safe-haven it will have *very serious* ramifications for interest rates, investment, the ability and desire of the US to borrow, and the demand for "risk-off" assets like American bonds over the longer term.\n\nTo the extent that Bitcoin is 'inflating' slower than the rate of the US economy (for example) *in addition to* its rate of adoption through institutions and HODLers... Bitcoin 'guarantees' a Risk-Free yield. In other words, it becomes more valuable in 'fiat' terms while *remaining risk free* just from holding it alone and it 'going up'.\n\nIt's not a "yield" (like Proof of Stake) because the *one Bitcoin* becomes *nothing more* than one Bitcoin... but because there is *only so much* Bitcoin and the supply grows slower than the US economy itself it will continue to go-up indefinitely in a deflationary-like way.\n\nI believe this was the essence of the Minneapolis Fed's Anti-Bitcoin Paper of Late... that mathematically there can only be "one" global Risk-Free asset without competition... and to the extent there is Bitcoin *and* US Bonds the American bonds will be worth less and reduce the government's ability to borrow indefinitely.\n\n2) Microstrategy (yes OK spare me the fiat-maxi *moans and groans*) is already financializing Bitcoin *and they are the only ones so far to do this*. By offering a 'return' "in dollars" as a product of Bitcoin's adoption, combined with Bitcoin's "risk-free" inflation rate (inflation rate relative to US economic growth and *Dollar* inflation) buyers can be offered a low-risk yield just by holding Bitcoin and this is a *radical* idea. Except the 'yield' isn't small IT'S HUGE and low-risk. Or it can be 'tailored' higher or lower, in volatility as financialization of a neutral, global asset *all the while remaining money* for users. This "BTC Yield" is only offered by *one company* so far in the entire world (MSTR).\n\nYou don't have to like or agree with the financialization of Bitcoin the Money (TM) - it exists and is free for all to hold as they wish and the "Wall-Street-i-Zation" is inevitable to some degree.\n\n3) Bitcoin sits in a *unique position* as digital property, digital gold, digital capital with a high-growth and low-inflation set of fundamentals. Yes it is volatile... but it has the growth-like characteristics of a tech-stock, energy-company, and *early internet company* all wrapped into an SEC-compliant digital commodity. There is nothing else like it that exists: In short it is a legal, *finite*, digital monopoly.\n\nPublicly-traded companies can only hold so many securities (other stocks) without regulatory penalties... and assuming the S&P grows at an average 12% per year... Cash, Bonds, and traditional commodities bleed out over time relative to the "cost of capital" - 12% per year.\n\nAn intelligent (and I believe realistic) interpretation of Bitcoin's network growth and adoption is *faster and more rapid* than Cash, Bonds, or Gold (+ other securities that CANNOT be held by public companies) and corporations with a 'Bitcoin treasury' all things being equal *are going to vastly out-compete the others*.\n\n*Especially if they are first.* \nSo save me the moans and groans. If Bitcoin is to become a global-reserve-currency the "early corporate adopters" like Microstrategy will vastly outcompete by offering intelligent products that skirt, if not also incorporate *a Bitcoin Standard*.\n\nMSTR is the #1 performing stock in the S&P over the last 4 years and this is evidence this strategy *is real*.\n\nSo what happens to Bitcoin's price when eventually *100 other companies* adopt the same or similar strategy? The "first" ones will potentially benefit the most... and all will to some degree but these network-effects are exponentially-graded towards early adopters. Which adopters, *especially after Mr. Trump's election* will potentially be the *second* US company with such a Bitcoin Treasury Strategy? Microsoft? Dell?\n\n4) Although it has not yet transpired... why can't Bitcoin be a neutral commodity traded for other commodities? Early Bitcoiners (H Finney) spoke of Bitcoin being the "high-powered" money for institutions. Well OK screw the institutions... however *at the same time* what's preventing Bitcoin from being traded for Oil, Gold, Soybeans, Pasteurized Orange Juice... other legal "commodities"... yes legally they are all commodities including Bitcoin. But to the practical extent that *Bitcoin is Money (TM)* does it really matter? It's value for value, and commodities being traded for one another has precedent for thousands of years.\n\n-------\n\n"OK" you say. "You sold me" maybe some, or all or *none* of these things will happen in the future (although I would argue they are already happening). What gives? Why should I (as a Bitcoiner) care?\n\n1) I'm not going to quote the ECB Paper as I can paraphrase... and\n2) you already know what it says *and if you don't you don't care (lol).*\n\nIt says that Bitcoinization will increase wealth-inequality between BTC holders and non-holders - and that the theoretical exchange-rate of Bitcoin is essentially... unlimited. Multi-Million-Dollar Bitcoin is theoretically possible with enough time and adoption. And how many people *in person* do you know that hold Bitcoin *especially that self-custody it enough to use Lightning?* In other words take it seriously enough to have achieved some level of Mastery of Use (Zapping through Lightning?)\nIt's not many I bet.\n\n----\n\nQuestions to Ponder:\nWhat would Bitcoin appreciation, globally, especially if adopted by nations worldwide, do to the purchasing power of the Dollar in an inflation-like-scenario?\n\nWhat, if any, security precautions would you take, or need to take, in a possible scenario where Bitcoin appreciates rapidly over the next 5 years?\n\nHow would Bitcoin appreciation and adoption effect Government's ability to borrow and lend? And specifically how would Bitcoin effect *capital flight* away from the European-Union to lower-tax jurisdictions (for example the United States). Wouldn't Bitcoin accelerate the capital flight... and *non-performance* of some EU countries especially *especially* if they are 'hostile' to Bitcoin or HODLers?\n\nIn other words, won't most of the Bitcoin just end up in the United States, China, in the hands of institutions and in the custody of steely-eyed HODLers exaggerating the United State's already *relative out-performance?* \n\n- Finally, I believe that Mr. Trump, although with good intentions *and policies* that are obviously popular with the American People... is likely accelerating this future, this Bitcoin future, whether it is intentional or not.\n\nMr. Trump's Tariffs are inflationary. \nMr. Trump's 'Mass-Deportations' are inflationary (by removing many US workers legal or otherwise)\nMr. Trump's continued borrowing, especially through the use of Tax-Cuts, have upward-pressure on interest rates which are inflationary/inflation persisting.\nMr. Trump's pressure or 'influence' on the Fed (to keep rates low) could be inflationary through lower Fed rates... despite the supposed "independence of the Institution." Who's going to tell Mr. Trump "No" now?\n\nJust last night the 10-year Treasury Yields spiked *right along-side Bitcoin* to a 6-month high as *traders anticipate more inflation from Mr. Trump's policies*.... all the while the American Voter *thinks that Mr. Trump will bring prices down*. Which *would be deflationary and antithetical to the Fed's mandate...*\n(Bitcoin spiked *almost identically* chart-wise to yields in the *Wall Street Journal*...)\n\nIn short it's madness. And it is, in my opinion, a perfect setup for a new and *different* kind of adoption of Bitcoin as global capital.\n\n- I'll go on: VP Vance's history as a protege of Peter Thiel... an early Bitcoin-Venture-Capitalist from the 2010s and PayPal. Mr Vance's financial disclosures include a six-figure allocation to... Bitcoin through public-disclosure records.\n- Mr. Trump has promised to free Ross U - legitimizing Bitcoin as a moral and ethical investment asset for many (if they were concerned previously, despite Mr. Trump's *own* recent brushes with the law...)\n- Mr. Trump has named repeatedly the creation of a "Bitcoin Strategic Reserve" for the United States. If the United States has one... why wouldn't other countries? And who is going to tell President Trump (at this point) "no" or not to deliver with such wide-spread political support?\n- Mr. Trump is not exactly a fan of international alliances and entanglements (for better or for worse) and it's logical other countries would want to *de-risk* from the United States (BRICS comes to mind) through a neutral *exchange-medium* that's not the Dollar. \n\nThis makes even more sense if higher inflation is anticipated or demonstrated through bond yields. Bonds also, can be turned off by their issuer. Bitcoin can't. What asset grows as fast, you can mine yourself, that's independent of the United States that *can't be turned off*... I'll let you answer that question.\n\nIn summary, some of the consequences of Mr. Trump's election, in my humble opinion while they may be *wildly good* for Bitcoin may *not at all be anticipated* by *most* American voters. American voters less impacted by asset inflation (those with stocks, bonds, real estate, Bitcoin etc) are probably those *less desperate* in today's economy... or *less* sensitive to prices. By encouraging the adoption of Bitcoin, *especially through higher interest rates and debt,* Mr. Trump is jump-starting the very asset that competes with the Dollar and could drive wealth-inequality *vastly* towards HODLers and Bitcoin-Oriented-institutions. Trade-protectionists want to protect their currencies... but that same protectionism *in a world where Bitcoin exists* could have the opposite effects if it accelerates Bitcoin HODLing, use, and adoption by 3rd-party nation states.\n\nI have to wonder - is there any historical precedent to this? Where one group of people *especially at the encouragement of a Central Bank* takes a "disliking" to the wealth, prosperity, or good-fortune of others? If Bitcoiners (bear with me here) choose to leave their native homeland at some point where do they go? El Salvador? Switzerland? Portugal? The US? And where does that Bitcoin ultimately end up and to what effect... does it have *on that average American* who puts a great deal of faith in Mr. Trump's policies?\n\nNo-one knows the future, and history is full of unintended consequences and *butter-fly-like effects*. I believe this election will probably be studied for decades and the story of Bitcoin is right at the middle of it. It's going to be incredibly interesting.\n\nThank you.\n \N 14280 \N 420503 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 16.6455385431923 0 \N \N f 211818877 \N 1 194276274 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423312 2025-03-03 08:39:32.389 2025-03-29 22:39:47.093 Marginal Differences Something I’ve noticed… No matter how “life changing” something is supposed to be, the best case scenario is that it makes a small, marginal difference in the right direction. \n\nI think when we hype things up, we tend to be disappointed when it didn’t completely change things. But I think we can shift our perspective and notice how the small changes add up over time. \n\nThere are so many things I've learned over the past couple of years, particularly from playing chess, reading LOTR, going to an Alpha course, listening to more health podcasts, and spending time in deep discussions with mentors and close friends.\n\nMaybe at some point I'll go into detail about each of those, but for now, here are some simple mentalities and practices that have made marginal differences for me. \n\n- Be known as someone who’s willing to learn, not someone who is smart or right\n- Go slow, don’t rush\n - In music, “stay behind the beat” - rushing is the first sign of musical immaturity\n - In chess and strategy, “make slow, developing moves” - this is often better than trying to play a counter gambit, and it’s better for your own learning in the long term.\n - Don’t ever let yourself be in a hurry\n - There’s a time and a place for everything, but try to reserve hurry for truly urgent situations\n- Spend 20 minutes in the sun at the beginning of the day\n- Stop “holding on for the next Rivendell” and find meaning in the dark part of the journey\n- Ruthlessly search for points of agreement when you’re arguing or debating with someone\n- Love only feels genuine when you are known. LISTEN. \n- Think of your mental or emotional struggle like it's a fictional story, write the metaphorical solution, and transpose it back to a logical solution IRL\n- TODO: take a 20-60 minute nap at least 3 times a week\n- TODO: spend the first 20 minutes of your day in the sun\n- TODO: spend 5 minutes per day with your bare feet in the grass \N 21373 \N 423312 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.98005974571132 0 \N \N f 123330207 \N 1 75253790 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448879 2025-03-23 00:15:35.773 2025-03-29 22:39:47.094 CashApp has inactive LNAddress endpoints with npubs pregenerated for EVERY user I heard that cashapp has been working on lightning address for awhile so I've been checking these endpoints every now and then. They've been returning nothing until recently where now they are returning the full valid LUD06 object along with the nip57 "allowsNostr" and "nostrPubkey" properties. (So Zaps are on the table through cashapp??)\n\nYou can find your endpoint by replacing "jack" in the url with your cashtag.\n\nThe callbacks return unauthorized when I try to hit them for an invoice which makes me wonder if cashapp is setting up [LUD18](https://github.com/lnurl/luds/blob/luds/18.md) for auth/compliance on these endpoints?\n\nAnyway found this interesting, thought I would share, cheers! https://cash.app/.well-known/lnurlp/jack 1411 \N 448879 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.6420838075964 0 \N \N f 214623256 \N 2 151713624 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417342 2025-02-26 10:12:38.034 2025-03-29 22:39:47.094 Very Simple Stacker News Personality Profile This is a follow up on yesterday's silly [What kind of Stacker are you?](https://stacker.news/items/681356/r/Undisciplined) post.\n\nI realized I could simplify it to two very simple metrics based on zaps and items, which led to me creating a graphical way to display how we behave on Stacker News.\n\n![](https://m.stacker.news/51526)\n\nHow to place yourself on the graph?\n- Left/Right: divide the larger of your spending/stacking rank by the smaller, then move that many spaces left or right.\n- Up/Down: divide the larger of your posts/comments rand by the smaller, then move that many spaces up or down.\n\nExample:\n- 19/3 (my spending rank/my stacking rank) = 6 1/3 right.\n- 10/5 (my posts rank/my comments rank) = 2 down.\n\nFrom what I saw in yesterday's comments, most of us are miserly trolls (which doesn't actually make numerical sense). I suspect that's mostly selection bias. \N 16948 \N 417342 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9644382744924 0 \N \N f 767119557 \N 6 68368778 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1247 2022-09-08 18:07:34.929 2025-03-29 22:39:47.094 My bitcoin journey A week ago, @bief57 was asking how we met SN. It made me think about my journey. \n\nI could not think 13 months ago that I would be writing a post about my journey towards bitcoin. Back then, I was with friends from University with whom I gathered up to four times a year. As always, talking about old histories and families, enjoying some beers, wine or spirits and the occasional discussion about investing. I must say that, at that point, I was fully against even considering bitcoin as a possible asset. \n\nTowards the end of the day, one of my friends mentioned how a podcast was helping him to deal with daily situations. It was about stoicism. He sent me a link and, to be honest, I forgot about it. Two months later, I got in touch with my friend through a message and I noticed the link he sent me. That day, I had some spare time and I began listening to the podcast. \n\nI got hooked. After a few episodes of the podcast, I was virtually walking along Marco Aurelio, Seneca and Epicteto. Being aware of the dichotomy of control and learning skills to deal with my passions (including my worst: wrath ). \n\nIt also triggered to find motivation to start reading again after a good number of years. I read How to be a stoic by Massimo Pigliucci and A guide to the good life by William Irvine.\n\nBut the podcast was not only about stoicism. One day, an economist, Joan Tubau came to the podcast. He was talking about his own podcast where he discussed about money, literature and careers. Somewhat, I ended up listening to his podcast too. \n\nIt was a bit of fresh air. Again, dealing with different aspects of life including how to invest money, how to develop your career and more books. I can only recommend two of them: Company of One by Paul Jarvis and How to win friends and influence people by Dale Carnegie. \n\nVisitors of the podcast were fund managers, entrepreneurs, traders and even translators from Russian to Spanish (there is an interesting episode about Tolstoi). One day, a chap called @lunaticoin came to the podcast. I thought he was going to be one of the weird episodes (those included a day trader earning huge profit from Ethereum or another who spend a few years in prison). \n\nI was wrong. He opened my eyes to bitcoin and what it means. Made me follow him to his podcast and I began to fall into the burrow. He led me to www.estudiobitcoin.com and I made lists in X to follow bitcoiners to get rid of the absurd noise.\n\nOne of those I follow on X, @flix2 , wrote a post to move to Nostr. I was curious about what it was and I checked, then I began posting photos that have stored over the years. I love checking them from time to time as they bring memories from times past. \n\nAs I mentioned in a comment in @bief57 ‘s post, @TNStacker sent me a link to try SN and here I am, learning and enjoying from all of you. \n \N 1472 \N 1247 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.2255455339283 0 \N \N f 928158277 \N 7 157582888 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434717 2025-03-12 07:27:28.313 2025-03-29 22:39:47.095 How bitcoin changed my life I learned about bitcoin in 2013, when someone offered me to mine it on my home computer. At the time, I was not interested in it - getting some virtual coins that I don't know where to use.\n\nThe next time I came across Bitcoin was in 2017, when it became actively discussed due to the growth of its value in fiat. Then I had a purely speculative interest, like most beginners, probably. I invested a lot of my money and managed to withdraw most of it before the price drop in 2018.\n\nAfter the bear market started, I started to go more down the rabbit hole and realize the real opportunities and benefits bitcoin offers to anyone, regardless of their social and monetary status. From that point on, there was no stopping me. I read several books known to everyone here, started changing my habits, shifted to more conscious consumption and practically stopped buying things I didn't really need. Got rid of the information noise that made me make unnecessary, impulsive purchases. My brain became calmer, more clear.\n\nThe next stage was that I tried to put my online life in order. It's no secret that when we use the services and services of large corporations, we pass on to them consciously and unconsciously a huge amount of information about ourselves. It was a shock to me to learn about the extent of surveillance by companies like Google. Having had the experience and sweet sense of freedom with bitcoin, I wanted more control over what information about me was stored online. From that point on, I dove headfirst into learning about online privacy and confidentiality. It's been a tough but extremely exciting journey that isn't suitable for everyone (up to a certain point in life). And that journey is still ongoing. I have eliminated as much as possible the companies that love to spy on us from my daily life, switched to open source counterparts: open source search engines like duckduckgo, searnx, startpage, self-hosted cloud storage, messengers that don't require personal data to use them, like session or SimpleX chat. And that's just the tip of the iceberg.\n\nI started to pass on all my knowledge to my family and friends. But not all of them want to deprive themselves of familiar things for the sake of privacy.\n\nThen there's offline life. Proper nutrition, sports, refusal of unhealthy and low-quality food. Because of this, there was more energy and motivation. I lost excess weight, my sleep improved.\n\nFrom an ordinary user I turned into a person who is constantly learning something new, developing physically and morally and trying to share my experience with my family and friends.\n\nI am very grateful to bitcoin for this change in my life... Over the past year, it has had the biggest impact in the situations I've talked about in my last few posts in September.\n\nIt's really the technology we needed so that we can become sovereign, independent or at least start to think about it and try to change our habits.\n\n**Also a huge thank you to the SN community where I find a lot of like-minded people, learn tons of useful information and continually evolve and learn. You guys are awesome.** \N 21541 \N 434717 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 6.74987493760387 0 \N \N f 520031043 \N 3 195399655 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 10:03:13.732 f \N \N \N 0 0 0 0 2 0 0 435046 2025-03-12 12:28:01.332 2025-03-29 22:39:47.095 Meetup report & help make it stick Last weekend Dvadesetjedan (Balkan's [twentyone.world](https://twentyone.world/)) had a meetup in Croatia.\n21 bitcoiners from all over the Balkan peninsula gathered by the sea in Kraljevica, near Rijeka.\n\n![21namoru_A4_text_2_(EN) (new).jpg](https://m.stacker.news/21979)\nThe location was amazing\n![photo_2024-02-15_18-18-12.jpg](https://m.stacker.news/21983)\n![GI4Z-BoWwAEEFIL.jpg](https://m.stacker.news/21982)\nPavao brought goodies\n![photo_2024-03-16_15-00-08.jpg](https://m.stacker.news/21984)\n![photo_2024-03-17_17-21-40.jpg](https://m.stacker.news/21992)\nToni brought goodies\n![Screenshot from 2024-03-20 20-03-37.png](https://m.stacker.news/21985)\n![photo_2024-03-14_17-14-41.jpg](https://m.stacker.news/21986)\nBitko brought goodies\n![photo_2024-03-17_19-22-44.jpg](https://m.stacker.news/21991)\n![photo_2024-03-18_23-10-44.jpg](https://m.stacker.news/21993)\nHad a little workshop\n![GI4Z9jsXsAAMkar.jpg](https://m.stacker.news/21987)\n![photo_2024-03-16_15-00-10.jpg](https://m.stacker.news/21994)\nOrangepilled an 11 years old boy, help make it stick tristan@blink.sv\nOrangepilled the venue manager, help make it stick villaremember1@blink.sv\nBoth recieved their first sats and learned a lot.\n![photo_2024-03-15_22-16-22.jpg](https://m.stacker.news/21988)\nGood times\n![30cb9838cbfffa17bb8abfdba9ccc988b384b48303ef4c773b0aedc738b097c1.jpg](https://m.stacker.news/21996)\n![GI4Z-ThXUAAlkS2.jpg](https://m.stacker.news/21995) \n\nOther reports from nostr and twatter\nhttps://twitter.com/ToniCepon/status/1769380265443377280\nhttps://nostr.at/nevent1qqsdm8nzpzwgg3ch8yd9459ldtmpuzrz4v3zc9t3wgzxvc56m0agk3qpz3mhxue69uhhyetvv9ujuerpd46hxtnfdupzpd5x8vvw73dwdj2fsmgxr39p6fxnulr2uemcjnx25wkq3gy7z4nvyd876t \N 20681 \N 435046 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 16.8015010952432 0 \N \N f 12033192353 \N 93 66054739 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:06:56.547 f \N \N \N 0 0 0 0 19 0 0 444365 2025-03-19 20:14:20.828 2025-03-29 22:39:47.095 How would you plan an extended backpacking trip? I've been thinking and daydreaming about it for years by now, and have most items ready-to-go; however, I simply don't know how to make a start and plan for a possible trip.\n\nTherefore, I'd like to make a trip within my own country first. \n\nIf something goes wrong, I'm home within a few hours, no matter where I am.\n\nStill, I keep finding it difficult to put a "plan" together, even with clear borders in place.\n\nHow do you guys go about this? And as a preemtive strike: Yes, I *need* a plan, I'm not someone who can just "*wing it*", I have to have a plan to have a general idea of what's coming.\n\n \N 7558 \N 444365 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.5068909980681 0 \N \N f 853834708 \N 8 188995066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 444541 2025-03-20 01:41:23.494 2025-03-29 22:39:47.089 Getting started with Walletano ## Walletano - a simple and interesting way to start using Bitcoin Lightning Network\n\n### Introduction\n\nI stumble upon this interesting application for some time, testing it in some occasions. I didn't talked too much about it because I was trying to understand the concept first and see how is going.\n\nBut today, I would like to present you this very simple LN app that offer you both ways to use your sats: custodial and self-custodial (or better say non-custodial). So please read this guide until the end BEFORE your start using it! There's a catch here and I saw some newbies making mistakes.\n\nOK, you could come up saying: \n\n>"but Darth, why do you talk about custodial apps? Is not that against Bitcoin ethos?"\n\nMy answer is simple: don't be paranoic with "all self-custodial". I've said many times, sometimes a custodial account could be used very easily as a DECOY, especially if is not using a KYC verification.\nAlso a custodial LN account could be used in many different ways to manage your self-custodial nodes liquidity, [as I explained in numerous guides](https://darth-coin.github.io/nodes/nodes.html).\n\n>[Walletano](https://www.walletano.com) is a web-based app (PWA) that provides an easy and convenient way to manage your Bitcoin and Lightning Network wallets. Whether you're a customer looking for a hassle-free wallet experience, an LND node runner seeking self-custodial options, or a webmaster / company owner looking to transform corporate email addresses into Lightning addresses, Walletano has got you covered!\n\n![](https://m.stacker.news/59914)\n\n---\n### For who is Walletano useful?\n\n#### 1. For companies\n\nI see Walletano as focusing mainly on companies that want to offer a customized LN Address same as the corporate email. This is very interesting feature for companies that start paying their employees in BTC and can do it with Walletano very easily through a LN Address too.\n\n"Walletano-Email-to-Lightning" is quite easy to implement by any company webmaster, [following the instructions from their Github repository](https://github.com/Walletano/Walletano-Email-to-Lightning).\n\n#### 2. For regular users, newbies in general\n\nWalletano is damn simple to start and easy to setup. One-Click Setup, no lengthy registration process or tedious forms. Simply download the app or access our web-based platform, and you're ready to go. If a new LN user cannot start with his own LN node and just want to start stacking few amounts of sats this could be an excellent option. [As I described in this guide, how to stack sats as a newbie](https://darth-coin.github.io/beginner/getting-started-stack-sats-en.html) with many LN apps.\n\nBellow I will explain a step-by-step scenario how to use Walletano and please pay attention to it.\n\n#### 3. Node runners\n\nAs a LN node runner you can use it for two things:\n- Offering accounts for family and friends. Yes you can link your LN node in Walletano app and create multiple separate accounts that can be used by your family, in a nice and simple PWA interface.\n- Managing your LN node liquidity swaping funds between your node and a Walletano custodial account. You can also use Walletano for swaps between LN<-->onchain (mention: seems that it doesn't support to send to Taproot addresses yet).\n\n[On their Github repository you have explained the API and the steps to follow to link your LN node with a Walletano UI](https://github.com/Walletano/WalletanoNodes).\n\n---\n\n### Main Walletano Features\n\n- ⚡️ Web-Based Wallet: Access your wallets anytime, anywhere through our user-friendly web app.\n- ⚡️ Lightning-Fast Transactions: Enjoy instant, low-cost transactions using the Lightning Network.\n- ⚡️ Custodial and Self-Custodial Options: Choose the level of control that suits you best.\n- ⚡️ PWA: Our progressive web app ensures a seamless experience across devices.\n- ⚡️ Multi-Wallet Management: Effortlessly manage multiple wallets with a unified and intuitive design.\n- ⚡️ Privacy-Oriented: No usernames or email addresses required, ensuring your personal information remains confidential.\n- ⚡️ Transform Corporate Email Addresses: Convert your corporate email addresses into Lightning addresses effortlessly.\n- ⚡️ Lightning Address Support: Create personalized Lightning addresses (e.g., you@walletano.com) or integrate your own corporate Lightning addresses (e.g., you@yourdomain.com).\n- ⚡️ LNURL Support: Seamlessly interact with LNURL-enabled services for enhanced functionality and versatility.\n- ⚡️ Integrated swaps between LN and onchain\n\n---\n\n### Use case scenario\n\nLet's say you are new to Bitcoin Lightning Network and you just want to start accumulating few sats received from many stacking sources (SN, nostr, donations, podcasts etc). And you still do not have the knowledge and the instruments of running your own LN node. \n\nOr you just want to accumulate sats in a temporary location until you have a certain amount to move it into a bigger UTXO for long term stacking and also want to use a custodial DECOY to not reveal your last hop directly to all world, publicly.\n\nHere comes Walletano, a simple web and PWA app, that can be used anonymously anywhere you want.\n\n## PLEASE pay attention to these steps!\nI've seen users that lost their access because they didn't follow the exact steps and also didn't saved correctly the account access.\n\nYes, is a bit confusing the onboarding process, but once you get it, it make sense, because is without input any login, user, password or any personal details.\n\n1. Go to https://www.walletano.com/. I suggest to do it from a desktop browser and have your mobile device ready to scan and link the account.\n2. Click on "Go to wallet" (yes there is the confusion for noobs) because in that exact moment Walletano is creating a new wallet, without any input from the user. And here is the mistake that many new users did: they close the webpage without linking their new wallet to their mobile device (PWA. And you lost the access if you do not save it.\n3. Now, go to top left drawer and select "Settings". Click on the option "Link wallet". You will get a QR code to scan with your mobile device. Optional you can copy the link and save it into a password manager. The link is in this format: \n\n```\nhttps://www.walletano.com/wallet/wallet.html?def=claimwallet&wltid=&claimhash=\n```\nTHIS is your backup code! So please save it into a safe place (password manager).\n\n![](https://m.stacker.news/59921)\n\n4. Now in your mobile, you can use the browser option to "Install" it as widget app (PWA). In Firefox for example, click on the 3 dots on top right and select "Add to Home screen".\n5. In case you choose to start a new wallet from your mobile directly, you will get this screen, first time you start it.\n![](https://m.stacker.news/59923)\n6. Save that string indicated in this screen, if you start the Walletano account setup from the mobile device. If you started the account from a desktop browser and scan it with your mobile, is automatically saved. \n7. If you reset your browser, you can always recover it from that link mentioned before.\n\nAnd that's it. Now you can personalize your displayed UI, colors, names, create more wallets, customize your LN Address. Keep in mind that each account you create in that session could have a different LN Address.\n\nIn the same session you could manage custodial and self-custodial accounts and switch between them very easily.\n\n---\n\n### Conclusion and Resources\n\nAs you can see, is not so complicated to start using LN, the only "complicated" part is to save your backup strings, but with little attention and patience, you can do it, even that you are not so techy.\n\nI hope this quick guide will be helpful for many newbies and have a smooth journey using Bitcoin Lightning Network.\n\nThis is just one of the many LN apps out there, that people should start using them and not just one, but many. Spread you stash in many locations and learn how to use them all. Each app will have its use in a specific situation, even that now you do not realize that.\n\n#### More resources about Walletano:\n- We have here on SN one of the devs @Walletano\n- Website: https://www.walletano.com/\n- FAQ page: https://www.walletano.com/main/faq.html\n- Github repos: https://github.com/Walletano\n- Telegram support: https://t.me/WalletanoCH\n- Twix: https://x.com/walletano\n- Nostr: https://nostr.at/npub12eqwteq2c2w9trgt95d3w4cky0quprprp42xefy8snw8tdexq5gsp9c5ek\n\n---\n\nDISCLAIMER:\nI am NOT paid or part of these projects. I write guides purely because I want to help newbies to get easily onboard. I test the wallets and solutions first to see if are worth it. By myself, not trying to promote anything. All my guides are free and open source, anybody can use them as they like. \N 17708 \N 444541 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 16.3806447458745 0 \N \N f 276960035 \N 2 131133335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 422614 2025-03-02 15:22:20.416 2025-03-29 22:39:47.09 Wallet Of Satoshi To Rebrand To "Wallet Of Janet" In Order To Serve US Customers \N https://www.thebitcoinbugle.com/wallet-of-satoshi-plans-to-rebrand-to-wallet-of-janet-in-order-to-serve-us-cusotmers/ 21012 \N 422614 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 13.9661245987908 0 \N \N f 25106674 \N 1 11334744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413554 2025-02-23 10:30:39.366 2025-03-29 22:39:47.096 Drivechains: A Detailed Analysis by Perter Todd \N https://petertodd.org/2023/drivechains 8176 \N 413554 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 18.7410356719535 0 \N \N f 262001582 \N 2 28145884 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437276 2025-03-14 12:24:19.456 2025-03-29 22:39:47.096 What is the best way to measure Bitcoin adoption? I stopped caring at all about Bitcoin exchange rate with fiat currencies for roughly 3 years now. It's a useless chart. It says nothing because Bitcoin is the unit all things are measured against not the other way round. \n\n**But** a thing I haven't stopped caring about is adoption. It does feel like some have more and more grown into a *honeybadger doesn't care* mindset and do not care about adoption either anymore - besides the occasional good message about new place xyz accepting/adopting Bitcoin now. Long story short, I still care. I care a lot. The big dream of Hyperbitcoinization. The day when optimism takes hold again for every day people. When the ball gets rolling and every supermarket accepts lightning and you overhear normie people in the gym setting up plug-and-play nodes. Hyperbitcoinization.\n\nWhen will this day come? How can we measure it? Are we even moving in the right direction? Does it work in waves 2013, 2018, 2021... It should be as easy to measure as the aforementioned BTC/USD chart. What would even be the correct thing to measure: number of humans, amount of capital, number of wallets? Google trends search queries for Bitcoin? \n\n![](https://cdn.imgchest.com/files/p7bwcl6rv87.png)\n\nThings like number of nodes or hashrate are only proxies and not even good ones at that. The actual interesting information would be **number of people weighted by...** whatever makes a Michael Saylor 400,000x more weighted than average Joe. \N 1094 \N 437276 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 7.26460062481383 0 \N \N f 224598693 \N 2 83824209 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449878 2025-03-23 15:39:39.306 2025-03-29 22:39:47.099 How much does it cost you to run a bitcoin node? Is running a node expensive? \N 4754 \N 449878 \N \N \N \N \N \N \N \N Linux \N ACTIVE \N 6.28447471609057 0 \N \N f 567573476 \N 5 41996718 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434498 2025-03-12 00:48:29.883 2025-03-29 22:39:47.091 Operation Saylor - Episode 25/120 # Operation Saylor - Episode 25/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 25, corresponding to July 2024.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.29952304BTC\n- € stack: 111.20 €\n- Current total value in €: 79,382.11 €\n- € into BTC: 30,000 €\n- Paid back to bank: 8,788.80 € \n- Outstanding debt + interests: 35,155.53 €\n- Installments to go: 96\n\n\n## Charts\n\n[![episode-25-bitcoin-stack.png](https://i.postimg.cc/fy6X6kGz/episode-25-bitcoin-stack.png)](https://postimg.cc/rRNK4yy3)\n[![episode-25-stack-value-vs-debt.png](https://i.postimg.cc/FFqjfn7M/episode-25-stack-value-vs-debt.png)](https://postimg.cc/yWmJtjhj)\n\n---\n\n## Log \n\nHello again and welcome to the second anniversary of Operation Saylor. This month we are 24 months into the Operation, with 96 ahead of us. I'm very glad to celebrate another anniversary of this little project of mine in good shape, with a great record behind us and a good outlook for the future.\n\nThe vibes in the air are completely different from when I started this. Two years ago, we were deep into the bear market. We still had not hit rock bottom, but we were pretty close to it. Leveraged players were bleeding, dodgy custodians and CEXs were dropping dead left and right, and reddit was dry of memes. In comparison, now I feel everyone is cheerful about the gains in the past 18 months, and strongly convinced that we have a bull market ready to unfold in the next 18 months. People are back to convincing their aunties that buying Bitcoin is a good idea, normies are happily throwing themselves into the ETFs and reddit is packed with memes. We will see how things unfold.\n\nOn our little corner here, things have been running great. It's been another good year in Operation Saylor: we've stuck to the plan, had no black swans of any kind, and numbers are looking good. As we had the chance to review together in the past episodes, the performance of this bet is working out nicely.\n\nAnd talking about performance, let me discuss it again but switching the tone from all the cold, analytical approaches we had in the past episodes: this shit is doing great. The value of the stack has been higher than the total debt for almost a year now, and given the phase of the market we are in, I'm pretty confident we probably won't ever go below the total debt again. It's humbling to see how the current gains are already bigger than the yearly salary of many people where I live, which I've been able to accumulate with little effort (although quite a bit of risk). \n\nI keep being confident on this playbook. The original rationale that drove me to begin Operation Saylor still makes all the sense, and if anything, empirical evidence from both my own experience and also what other players in the markets have been doing seems to validate it. I also still think that there's a lot of people out there that are missing out and could be benefit from an approach like this, but keep chickening away because of the dogma that picking up debt is bad. I personally find this to be a pity, because the more of us that we would run a play like this, the more we would pump the price and accelerate adoption. I guess it will take a lot more education and even more fiat debasement for more people to open their eyes to how this kind of play makes sense.\n\nAnd let me tell you something: I'll most probably repeat this pattern again in the future. It made sense back in 2022, it makes sense today, and it will probably keep on making sense for a few decades as the fiat house of cards heads towards collapse. I've also reflected on how repeatedly pulling the get-debt-to-buy-bitcoin lever is a risk decreasing action: just like it happens when we DCA, by spinning the roulette multiple times, we minimize the risk of hitting a terrible timing. As long as the chances of coming out ahead with a positive result are above 50%, increasing the number of spins reduces the risk of losing overall. It also reduces the possibility of an outrageous win. But, in my opinion, aiming for that would be sheer gambling, not proper financial planning. Just like Lyn Alden stated about herself in her last newsletter, I'm in the area of spotting long-term trends that I can win with, not throwing dice.\n\nOpening up the door to adding more debt brings a few questions to the table: When? How much? What's the max interest rate that's bearable? Overall, what's the right amount of risk? And how do you even measure it? These are all questions I'm currently working on answering for myself. I guess we each need to find our personal answers for these, since many of them are unavoidably tightly related to our personal finances and our life in general. I'm not in a rush, since I'm comfortable with the level of liabilities I'm sitting on today and don't feel any FOMO to pile up more of them fiat liabilities.\n\nThanks for sticking around for another year. I hoped you enjoyed this episode as well as all of the last year. Let's see what awaits for us in the next 12 months and what we will be looking back to in the next anniversary. As always, thanks for reading and I'll see you next month.\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n- Episode 16: [https://stacker.news/items/288719](https://stacker.news/items/288719)\n- Episode 17: [https://stacker.news/items/322189](https://stacker.news/items/322189)\n- Episode 18: [https://stacker.news/items/363765](https://stacker.news/items/363765)\n- Episode 19: [https://stacker.news/items/394704](https://stacker.news/items/394704)\n- Episode 20: [https://stacker.news/items/450792](https://stacker.news/items/450792)\n- Episode 21: [https://stacker.news/items/476945](https://stacker.news/items/476945)\n- Episode 22: [https://stacker.news/items/522161](https://stacker.news/items/522161)\n- Episode 23: [https://stacker.news/items/550749](https://stacker.news/items/550749)\n- Episode 24: [https://stacker.news/items/583121](https://stacker.news/items/583121)\n \N 18069 \N 434498 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.7206467101838 0 \N \N f 991900048 \N 9 103220717 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:46:52.194 f \N \N \N 0 0 0 0 6 0 0 421786 2025-03-02 01:47:19.91 2025-03-29 22:39:47.091 Where will you NEVER visit again? Respectfully…\n\nWhat are some countries cities states islands etc. that gave you nothing but red flags, or were otherwise not what you were hoping for?\n\nWhy won’t you be returning?? \N 14910 \N 421786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23274330148708 0 \N \N f 95337471 \N 1 27684769 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430726 2025-03-09 12:03:24.358 2025-03-29 22:39:47.091 ⚡️PlebLab Startup Day 2024 presented by WolfNYC \N https://www.youtube.com/live/TCNG_paWSrI?feature=shared 6687 \N 430726 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.30193820291116 0 \N \N f 1035839340 \N 9 110637844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 428348 2025-03-07 06:42:39.369 2025-03-29 22:39:47.091 How good is your 'sus' radar? What RED FLAGS do you tend to notice? Do you have an eye for spotting criminality or shady behavior before it's exposed?\n\nMany bitcoiners tend to have a knack for it. Why do you think that is?\n\nRiver's Leishman comes to mind for me -- he and many others were calling out FTX, Celsius, BlockFi, etc. long before they imploded, but he was also calling out OpenAI long before what's recently unfolded. He has a good 'sus' radar, as Tuur Demeester [put it](https://twitter.com/TuurDemeester/status/1725627897879183769):\n\n![leishman.jpeg](https://m.stacker.news/5514)\n\nWhat do you typically pick up on with these characters like Scam Bankman, Scam Altman, etc. that sets off your radar? (besides the obvious shitcoining and eyeball scanning...) \N 21485 \N 428348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5182637198491 0 \N \N f 122313184 \N 1 213856962 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402967 2025-02-14 09:50:44.598 2025-03-29 22:39:47.092 Nostr is Identity for the Internet In this essay, I explore why the Internet needs user owned identity and an associated open data layer, why Nostr is likely to win, and some of the implications this may have for a beautifully wild and open web. https://hivemind.vc/identity/ 8004 \N 402967 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.8217547352237 0 \N \N f 3311428 \N 1 25052040 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415381 2025-02-24 18:54:46.749 2025-03-29 22:39:47.092 What 10+ year old tech are you still using? Technology usually ages like milk. But sometimes a piece of tech can serve it's function for decades. I'm interested in what pieces of tech are still running around you that may have originally came out in 2013 or earlier. Bonus if it's older than Bitcoin!\n\nHere's what I'm still sporting:\n\n- Vmoda Crossfade LP headphones [link](https://www.v-moda.com/us/de/products/crossfade-lp2) - they're still making these but I bought my pair used on eBay in 2013 and they're still my daily drivers.\n\n- TP Link 48port Gigabit network switch - this switch was top notch in 2012 but it's starting to show its age because most of my servers in the rack have 2.5Gb/s Ethernet ports. But it still does the job even if it's the bottleneck in my LAN.\n\n- Xbox 360 - I still use a modded/jailbroken Xbox 360 for living room entertainment. This particular console was made in 2011. Xbox 360 was notorious for red-ring-of-death but this one is still going strong after 12-years! The latest elder scrolls and GTA games are still playable on the 360 which is crazy\n\n- IBM Model M keyboard - 1984 - These keyboards are still highly sought after in the mechanical keyboard community and I have one on my workstation desktop\n\nYour turn! What old tech are you refusing to upgrade? Doesn't count if it's just sitting on a shelf. Actually need to use it almost daily!\n \N 9336 \N 415381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.35206353038949 0 \N \N f 50853900 \N 2 103755898 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436047 2025-03-13 09:12:55.146 2025-03-29 22:39:47.093 The Parallel Economy: How to Build it - #308 \N https://open.substack.com/pub/livingonbitcoin/p/the-parallel-economy-how-to-build 15617 \N 436047 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 6.54786894275489 0 \N \N f 66676829 \N 1 22274082 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:04:23.398 f \N \N \N 0 0 0 0 1 0 0 434457 2025-03-11 22:49:31.199 2025-03-29 22:39:47.094 Substack may not exist in 2030 without adopting Nostr I've been typing-up some thoughts regarding Nostr in recent days, and I came to a controversial conclusion that I wanted to share with you Stackers and get some discussion on.\n\n### Substack will need to adopt Nostr this decade in order to survive to 2030.\n\n------\nSounds hyperbolic but hear me out on my reasons below...\n\n### `Substack Growth`\n- The company's growth since their launch in 2017 has been insane. They have done an incredible job of riding the "anti-establishment" movement and empowering individuals to monetise & build new bottom-up communities. At a time when legacy media institutions are failing society.\n- Given they are not yet a public company, up-to-date subscriber numbers are not available but we can expect that their subscriber numbers are far higher than they were 2 years prior at the end of 2021:\n![Substack with over 500k paid subscribers in 2021](https://api.backlinko.com/app/uploads/2021/05/substack-paying-subscribers-over-time.png)\n- Their recommendation engine and closed system has worked well for them up until this point, generating up to [20% of revenue for creators as a whole](https://substack.com/growthfeatures?utm_source=menu-dropdown). Substack are able to find similar creators/communities to push out to users, rather than advertising externally to non-paying users. However it should be emphasised that **80% of revenue still needs to be generated by creators by attracting new users**.\n- Currently creators are coerced into adopting Substack as the primary gate for their community, given that there exists no API functionality. So plugging Substack into your existing community is far trickier to achieve. Creators depend on Substack to NOT censor their content and to cross-promote posts inside their closed system.\n- If Substack growth was to stagnate however, creators will not be able to keep topping-up the punch-bowl with fresh juice.\n \n### `Headwinds`\n- Substack [laid off 14% of their staff](https://www.nytimes.com/2022/06/29/business/media/substack-layoffs.html) previously and [abandoned plans](https://www.nytimes.com/2022/05/26/business/media/substack-venture-capital.html) to raise additional venture funding in 2022. They are not currently public, meaning fewer finance options are available to them.\n- Substack currently takes 10% of all fees through their platform and if subscription revenues were to take a hit and new subscribers were to stall, they may be forced to raise fees to 15 or 20%. That would almost certainly in turn lead to those with established communities to take their subscribers elsewhere. Particularly as their payment processor takes their cut too.\n\n### `Calls for Censorship`\n- This past month, Substack has come under scrutiny for not censoring "nazi-like" content. The mainstream media was overwhelming on this. With [WSJ](https://www.nytimes.com/2023/12/22/business/substack-nazis-content-moderation.html), [The Verge](https://www.theverge.com/2023/12/21/24011232/substack-nazi-moderation-demonetization-hamish-mckenzie) and [NYT](https://www.nytimes.com/2023/12/22/business/substack-nazis-content-moderation.html) placing them in the crosshairs. Substack have since refused to back-down and their CEO on his [own newsletter](https://substack.com/@katz) confirmed as so.\n- Substack are acutely aware that if they demonetize or restrict content, that it will lead to the downfall of their business and a mass exodus from their creator platform.\n- Their terms of service of course still include the following:\n> _We reserve the right to remove any content from Substack at any time, for any reason (including, but not limited to, if someone alleges you contributed that content in violation of these Terms), in our sole discretion, and without notice._\n- Substack do not have control over how their content is distributed to users (majority are outside the Substack app). It may therefore be possible in the years ahead for fewer emails to make their way to their destination. A new type of shadow-banning could emerge. Companies like X/Twitter (who are now competing with their own subscription service) may also prevent Substack links & threads from gaining traction inside their consumer-facing 'super apps'. Substack is extremely vulnerable.\n\n### `Vulnerability`\n- Substack as a company is HIGHLY dependent upon big tech and legacy social media for new user acquisition. It does not control it's own growth engine, or it's own destiny. \n- The team at Substack has recently introduced a 'notes' feature with mixed results. The intention was to lure people to download and use their app and avoid the dependency on Twitter/YouTube for new signups. The jury is still out whether this has worked, but with 10-15% readership inside the app for communities - I would conclude that is not yet the case.\n- Substack up until now has only had Stripe setup as a payment processor. Stripe retains credit card details and emails of those who pay for any service via the Substack platform. This would have become a problem for Substack, which is why they have a [beta for accepting direct debit](https://support.substack.com/hc/en-us/articles/18687769631252) & bank account payments:\n![Beta-payments.png](https://m.stacker.news/10336)\n- Today, less than 10% of content is viewed through the Substack app on iOS/Android. Almost all content is read via email (70-80% depending on the community, with the next biggest source being the desktop site). Email deserves it's own topic.\n\n### `Email`\n- Substack relies upon a flawed protocol in the form of email. I will soon be posting more about email privacy in the ~privacy territory. Keep an eye out for that.\n- What we often forget of is that every email and every piece of content distributed by Substack can be read and censored by big tech.\n- Google and Apple make up for the vast majority of email clients currently [(86.78%)](https://www.oberlo.com/statistics/most-used-email-clients), and given they can and do have access to emails passing through their clients - this may become more of an issue moving forward for businesses like Substack.\n\n\n### `Why Nostr is the solution`\n- I would argue Substack revenue is more vulnerable than any other company to increasing calls for censorship. More so than X (who have their own app user-base), more so than Google (who have YouTube, mobile hardware and a search monopoly) and more so than legacy media like WSJ and others.\n- Substack needs to adopt Nostr because their values (listed below) depend on censorship resistance.\n 1. Great work is valuable and deserves to be rewarded with money.\n 2. The people have the power.\n 3. A free press and free speech are fundamental to a trustworthy media system.\n 4. We help readers take back their mind.\n\n- Without new subscribers and without funding from public markets to get more active app users, Substack will need to raise their revenue-share in short order. This will in turn push creators to look elsewhere.\n- If Substack was to adopt Nostr, they will safeguard their future against increasing calls for censorship and allow them to pursue their courageous values in the face of their dependencies on publicly-listed third parties.\n- The switch would not be easy, it would demand they overhaul their infrastructure and reliance on email. It would mean they'd have to at long last support markdown formatting for content creators. And they would need to adopt Bitcoin lightning payments.\n- If Substack don't, this is a huge opportunity for Nostr clients to replicate the Substack model and eat their lunch. To allow subscriptions in private communities that can cross-sell with one another. Communities with built-in chat, engaging long-form posts and even podcasts, videocalls & badges embedded.\n- My bet is on the latter in these next few years. Substack may be eaten from all sides - by the Nostr open-network, by legacy media and by big tech. Therefore my conclusion is that...\n### Substack must pivot to Nostr & Bitcoin to still be around by 2030.\n \N 16424 \N 434457 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 17.7385159740773 0 \N \N f 178608623 \N 2 221075091 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 02:25:35.65 f \N \N \N 0 0 0 0 1 0 0 410691 2025-02-20 16:05:17.834 2025-03-29 22:39:47.094 El Salvador Trip report - 2/8 [Part 1](https://stacker.news/items/551461)\n\nDay 2! It's Sunday, and San Benito is very quiet. Many places are closed, but the shopping centers are full of people.\n\n**Merchant experiences:**\n🍔 I'm following BTCMap's recommendations now and come across a good burger place for lunch, where I can pay with sats without a problem. First time coming across somebody using DitoBanx.\n🛒 At Super Selectos, one of the largest supermarket chains in the country, there is a special belt for those wanting to pay with Bitcoin. Like using cash in Scandinavia! To pay with sats, the manager has to be called, a computer mouse has to be plugged into the PoS device (the mouse barely works). The manager has to log into a Chivo web interface, enter the payment amount, select Bitcoin, then Lightning. The process takes quite a while, and people behind me quickly change lanes. After my payment succeeds, it still takes a while to show up as received in the web browser, and the staff have to do some manual accounting. They are far from amused and don't say good bye.\n🏧 I come across a Chivo ATM and try my luck. My home SIM does not have reception, so I can't receive the verification SMS. At this point I should have given up, but I pay 4000 sats for a temporary number through SMS4Sats. Luckily the SMS from Chivo never arrives, because if I had successfully made the onchain transaction to Chivo, I wouldn't have been able to re-verify myself using the same number after two onchain confirmations and claim my cash. There are two (2!) Chivo staff present who are friendly, but of course can't do anything.\n🍟 I'm back at WcDonald's (yes, the sign has a W instead of a M, some kind of Japan promotion?). I notice that the Lightning invoice shows up very briefly when selecting 'paying with Bitcoin' before the screen goes blank, and I manage to scan and pay it, but the system is still frozen. Staff "trust" me I paid and hand me my order. They also tell me I can pay with Bitcoin at the counter! Why didn't I think of that! So I make another order, go to the counter only to find out that this option is limited to Chivo users.\n🥩 For dinner I choose a Peruvian restaurant nearby. The food is pretty good, and I ask to settle the bill with Bitcoin. They are very confident in being able to do it, but the manager still has to receive instructions over the phone on how to process payments.\n🏪 I go back to a convenience store where I paid with Bitcoin successfully yesterday. This time staff knows exactly what they are doing and the 85c transaction goes through quickly, without any sighs, awkward silence or me holding up the line. It's clear that if only people regularly used it, staff were naturally trained to handle it smoothly.\n🍸 The local brewery, which takes sats, is sadly closed tonight, so I walk over to the Sheraton as it's marked on BTCMap, and am being laughed out through the door.\n\n\n**San Salvador:**\nI take the public bus for 25c to the old town, passing crowded shopping malls and otherwise empty streets.\nThe old town is quite nice, and it's clear from the construction around that it will be even nicer in a year. There are many people around, including foreign tourists and tour groups.\nI enter the newly constructed library, complete with Chinese flag out front. Much of El Salvador's recent infrastructure development is completed by Chinese companies and subsidized by various Chinese government-linked development funds. This trend precedes Bukele and is also a reward for El Salvador officially recognizing the People's Republic of China in 2018 (and ditching diplomatic relations with Taiwan). Other examples that I saw where the indoor sports stadium, the outdoor sports stadium and the airport. Quality seems to be relatively okay, and I hope these buildings last. What immediately sticks out upon entering the library: There are almost no books. Instead, there are video games, children's games, a Star Wars exhibition and Japanese comic book figures.\nI'm very curious how the old town will look like in a year or three, because it has a lot of potential. For now, there are almost no cafes or restaurants around, and those that do exist don't look inviting. There's nothing of interest to buy at the local market, but it's easy to see how this can be a major tourist spot eventually.\nWherever I go, San Salvador feels save and is surprisingly walkable (although nobody walks). There is little police presence, but you never have the impression that you are in a police state.\nIn San Benito, this feeling of safety extends well into the night, although the area just doesn't feel welcoming with its high walls and barbed wire.\n\n**The Lightning Network:**\nCompared to my previous trips, and apart from the Chivo ATM, Lightning payments are very much the standard now, and everybody handling a wallet seems to know that.\nIt's also noteworthy how none of my payments took more than a few seconds or had to be re-attempted. For those using Lightning for a while, it's really remarkable how reliable payments have become, and it seems services operating in El Salvador know how to manager their inbound liquidity.\nMy LND node is running on a small VPS with 2GB RAM, it only has two channels, both of which are over 1.5 years old. Go run your own node!\nYesterday I had this node connected to Zeus wallet over Lightning Node Connect (LNC), but for today I switched over a vanilla REST connection, and given the relative poor connectivity of my eSIM, this was a huge improvement. LNC is a huge improvement over connecting to your node over Tor, and on a fast and stable internet connection it's comparable with vanilla REST, while being far easier to set up. \N 12422 \N 410691 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.7464927974822 0 \N \N f 686925139 \N 5 185380109 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 402389 2025-02-13 17:56:33.919 2025-03-29 22:39:47.095 Introducing Ghost Addresses: A Lightning Address For Every Node ![ghst.to](https://amboss.tech/_next/image?url=%2Fassets%2Fblog%2Fghost-addresses%2Fhero.webp&w=1920&q=75)\nHey Stackers,\n\nWe at Amboss Technologies are super excited to share something we've been working on: Ghost Addresses. This is our latest innovation for the Bitcoin Lightning Network, and we believe it's going to make a big impact.\n\n**What's a Ghost Address?**\nImagine combining the cleverness of [Phantom Payments](https://lightningdevkit.org/blog/introducing-phantom-node-payments/) with the straightforward user experience of a [Lightning Address](https://lightningaddress.com/). That's what a Ghost Address is all about. It's designed to make receiving Bitcoin on the Lightning Network as easy as receiving an email.\n\n**Why Does This Matter?**\nFor anyone running their own lightning node, Ghost Addresses are a game-changer. No more dependency on custodial third parties or needing a public Lightning Address server. \n\n**The Technical Stuff**\nGhost Addresses use Phantom Payments, a sophisticated routing technique that ensures payments are secure and efficient. You get a reusable address that keeps your transactions simple and straightforward. For a deeper understanding of Phantom Payments, check out this [LDK blog post](https://lightningdevkit.org/blog/introducing-phantom-node-payments/).\n![Phantom Payments diagram](https://amboss.tech/_next/image?url=%2Fassets%2Fblog%2Fghost-addresses%2F2.webp&w=1920&q=75)\n\n**Easy to Get Started**\nSetting up is really easy. Just update to a Ghost-enabled version of Thunderhub (v0.13.29), claim your Ghost Address, and you're ready to start receiving payments directly to your node.\n\n**Learn More and Get Started**\nIf you're as excited as we are and want to learn more, check out our detailed blog post: [amboss.tech/blog/ghost-addresses](https://amboss.tech/blog/ghost-addresses) and [ghst.to](https://ghst.to).\n\nWe're thrilled to bring this to the Lightning Network community and can't wait to see how you all use Ghost Addresses. Let us know your thoughts, questions, or any cool ideas you have!\n\nCheers,\nAmboss Technologies Team\n\n#Bitcoin #LightningNetwork #Innovation #SelfCustody \N 8326 \N 402389 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.23103215446285 0 \N \N f 673181374 \N 3 187651180 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410728 2025-02-20 16:39:13.745 2025-03-29 22:39:47.095 Why Shunning a Bitcoin ETF is More Important than Celebrating it This user asks [Is it wise to sell Bitcoin and buy Bitcoin ETF once it’s available?](https://www.reddit.com/r/Bitcoin/comments/17la49a/is_it_wise_to_sell_bitcoin_and_buy_bitcoin_etf/?sort=new)\n\nHere's some replies:\n\nHalo22B says\n>Very few that have grasped the concept of self sovereign safe storage practices will go to a centralized promise of paper Bitcoin. I do think a moderate percentage of people who exclusively hold on exchange (for "safety" reasons) will sell and switch to an ETF product.\n\nDisavowed_Rogue says\n>Buy both.\n\nFrogolocalypse says\n>Only you can decide the best security solution for your bitcoin. Every person will have different use-cases, requirements, and goals.\n\nAww and who can bash that last one? Me. I can bash it. This is the equivalent of "Not financial advice, do your own research" Every site this person looks up is going to tell them that ETFs are safe. \n\nNow, to be fair to r/bitcoin, *most* of the comments are saying no don't do it, but I still feel it hasn't been made clear enough why this is such a problem. I can already sense shouts crying "dogma" at the idea that an ETF isn't safe.\n\nHere was my reply:\n\n"This is the shit the happens when you celebrate ETFs, moon bois. People forget counter-party risk exists in ETFs and unironically think its safer than holding it yourself.\n\nA single point to attack, a single point of failure for everyone's money, is easier than 1,000 points to attack.\n\nAnaxander, the son of Eurycrates, when someone inquired why the Spartans did not amass money in the public treasury, said, 'So that those made the guardians of it may not become corrupt.'"\n\nhttps://i.redd.it/o9zvw7nvgk3a1.png \N 10280 \N 410728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.489378294915213 0 \N \N f 556701939 \N 4 127936454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 451266 2025-03-24 13:24:09.482 2025-03-29 22:39:47.095 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/340788) are the updates stackers shared from all their latest work projects. \N 726 \N 451266 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 21.0800178551531 0 \N \N f 648726102 \N 5 219406771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434837 2025-03-12 09:15:36.306 2025-03-29 22:39:47.096 Questions about your cold wallets rotation Came to my mind a question about how bitcoiners are doing their best practices in regards of their cold wallets.\nYou have a bunch of cold wallets. Hardware, paper, seed only, steganography, whatever other method it doesn't matter, is just for long term holding. I am not interested where you save. I am interested to see if you know how to hide and maintain them properly.\n\nQuestions: \n1. Do you use an extracted xpub from the cold wallet or simply fully open your wallet?\n\n2. How often do you check the balance of a cold wallet using the xpub extracted prior?\n- weekly\n- monthly\n- yearly\n- never\n\n3. Are you keeping all the time a "watch-only" wallet in specific apps, to deposit or just check the balance? Or are you import the xpub only to check or deposit?\n\n4. Do you periodically rotate your UTXOs? What do I mean by that?\n- create new wallets, with nee seed and move your old stash into new ones. Also creating many different size of UTXOs\n- move from legacy or standard segwit to taproot type of addresses\n- create multiple wallets from one wallet with large amount\n- Why do you still keep that legacy wallet? Ask yourself.\n- why do you keep all your stash in just one giant wallet?\n\nIf you do not want to answer these question, no problem.\nI raise them only to make you think about them and how you have a good maintenance of your cold wallets.\nJust think about and don't forget: read my guides. \N 19016 \N 434837 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 19.2683386135188 0 \N \N f 590179119 \N 3 167481023 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 13:10:59.281 f \N \N \N 0 0 0 0 2 0 0 413948 2025-02-23 14:42:23.363 2025-03-29 22:39:47.096 PLEBDEVS PLATFORM LAUNCHING NEXT WEEK I’ve been quiet lately. Posting less, making less content, but not because I’m out of the game! I’ve been working in sTeAlTh mOdE the past few months building an MVP for a new platform for PlebDevs. A platform that can finally be a singular home for all of the content and the communications and at the same time effectively substitute (and eventually replace) the fiat big tech alternatives (Udemy, YouTube, Discord, Patreon).

\n\nThis has been a major passion project for me and one that I believe will help position PlebDevs as a serious online dev education hub from here on. I’m super excited to show you all the MVP and get your harsh feedback next week after launch! \n\n

We will be having a launch party / livestream next week at the Bitcoin Commons Friday November 15th at 7:00 PM CST
\n\nhttps://www.meetup.com/pleb-lab/events/304441707\n

See you there 🫡 https://www.meetup.com/pleb-lab/events/304441707 13198 \N 413948 \N \N \N \N \N \N \N \N crypto \N ACTIVE \N 7.96472975530786 0 \N \N f 126966665 \N 1 41322685 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401198 2025-02-12 19:31:09.6 2025-03-29 22:39:47.097 What does your perfect work day look like? Though I must make things clear. Today didn’t go perfectly.\n\nBut somehow, I’m in a ridiculously good mood. Trying to unpack the reason(s) why as I pen my thoughts down.\n\nI only had two hours of free time (including my lunch hour) today. After school, I couldn’t focus on my work either because I had to supervise my dancers for their upcoming performance. (In case you are wondering, nope I don’t teach them dance. I just provide them with moral and emotional support as their coaches push them to deliver their best haha.) \n\nI started out by writing a heartfelt thank you note to the four educators who observed my lesson last Wednesday. They delivered positive feedback and constructive criticism in spades, so it was nice to start the day with something life-affirming.\n\nI then took the time to display my students’ work on a whiteboard located along the corridor:\n\n![IMG_1816.jpeg](https://m.stacker.news/27606)\n\nDuring a lesson, I got my literacy coaching student to make two YouTube shorts so as to facilitate his acquisition of *said* and *little*.\n\nDuring the Dance Club session, I wrote an email to the literacy support team and suggested that we needed to enforce that our weakest progress students learn the irregular past tense verbs on the Dolch list. All 33 of them:\n\n![5d4fcd69-bcf7-4d28-90e4-60da979cc3b3.jpeg](https://m.stacker.news/27607)\n\nTime flew by in a flash and during the last 15-30 minutes, I was rushing to churn out an email to invite the entire school staff to observe my lesson this Friday.\n\nAs I left home, I asked the Saloon whether they know the difference between -ful and -ous. I got an answer right away! \n\nNow I’m home earlier than usual and speedwriting this post. My wife is working overtime today, but because I have some buffer, I think I can change shower feed two kids all by myself. I’m a superhuman parent.\n\n**Thank you for enduring my verbal diarrhoea**. I think I can determine the elements that contribute towards a satisfying work day for me:\n- fun & creativity (getting my student to do the YouTube shorts)\n- doing something unorthodox & high-impact (inviting the staff to observe my classroom makes a powerful statement!)\n- speaking my truth (about how the weakest progress students should be *forced* to learn 33 irregular past tense verbs)\n- learning a cool fact about affixes (thanks to carlosfandango!)\n- having time to write something personal for SN \n- not feeling rushed about parenting\n\nSeems like I have distilled the elements of a successful work day for myself. How about you? \n\n \N 18265 \N 401198 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 2.12604108293259 0 \N \N f 942071429 \N 9 247833400 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 3996 2022-11-12 21:44:20.9 2025-03-29 22:39:47.097 Writing to think Another great article by Henrik Karlsson. This topic -- about the relationship between writing and thinking -- is dear to my heart, and has been discussed here before, though I can't remember the post that I'm thinking about. @ek mentions one [here](https://stacker.news/items/398641), but that's not the one I remember.\n\nAnyway, if you liked the other HK posts, (like [this one](https://stacker.news/items/376337) or [this one](https://stacker.news/items/304309)) or the topic, this is a must-read. https://www.henrikkarlsson.xyz/p/writing-to-think 18615 \N 3996 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.38208545367537 0 \N \N f 258899406 \N 2 120897511 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456732 2025-03-27 20:29:13.429 2025-03-29 22:39:47.097 Argentina, The house of cards is beginning to sway. TLDR \n\n- Rumors of a 50% currency devaluation in Argentina \n- Exchange market closed Friday and next Monday\n- Central Bank ran out of dollars and started "using" local banks customer USD deposits \n- Argentina's government is focused on recalibrating the agreement with the IMF and strengthening foreign exchange payment systems.\n- Global Central Bank hiked rates by another 300 bps to 81%. Their YoY inflation rate is at 104%.\n\nhttps://www.lanacion.com.ar/economia/economia-enfrenta-las-versiones-de-devaluacion-y-prepara-sus-proximos-pasos-nid21042023/ \N 5377 \N 456732 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 6.79200792545299 0 \N \N f 205055013 \N 1 31662684 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3144 2022-10-25 22:58:47.187 2025-03-29 22:39:47.098 My Review and Experiences About Stacker News After Using It for a Few Weeks # Stacker News: Earn Bitcoin for Your Content\n\n[Stacker News](https://stacker.news/) @sn is an open-source discussion forum and news aggregation platform where you can earn bitcoin for creating and curating content.\n\nHow does Stacker News work and what features does it have?\n\n## Value-for-Value for Content\n\nStacker News is a bit like Reddit, Quora or Hacker News, but instead of earning likes, upvotes or points that are not redeemable or transferable on other platforms, you earn bitcoin.\n\n![Screenshot 2024-04-28 at 14.57.42.png](https://m.stacker.news/28558)\n\nStacker News is an example of "value-for-value" model, where creators don't hide content behind paywalls, subscriptions or advertising.\n\nIf users like content, they tip sats (small parts of bitcoin) to the creator.\n\nTipped sats are a bit like a measurement of positive energy!\n\n![Screenshot 2024-04-07 at 01.56.14.png](https://m.stacker.news/28559)\n\n## Micro-Payments Incentivize Quality Content\n\nStacker News has various territories to categorize content.\n\nPosting content generally costs 100 sats and commenting on a post costs 1 sat (this may vary depending on the territory).\n\nCharging users for posting content reduces spam and incentivizes creating quality content.\n\nEvery new user can post and comment for free (with limited visibility) while they earn their first few sats.\n\nUsers who post engaging content also earn from the daily pool of rewards which come from Stacker News's posting/commenting revenue.\n\n## How Does It Work?\n\nThere are multiple ways to sign up to Stacker News.\n\nThe most private and recommended way is Lightning, but you can have multiple sign-up methods on a single account.\n\nWhen setting up an account, you will get an automatically generated username, but you can change it.\n\n![Screenshot 2024-04-08 at 14.07.28.png](https://m.stacker.news/28560)\n\nYour bio text will be your first free post, so best to put some proof of work to it, so you're more likely to earn some welcome sats to get started (I have to admit that I was a bit lazy with my bio though..).\n\n![Screenshot 2024-04-28 at 14.34.35.png](https://m.stacker.news/28561)\n\nEven if you don't get enough welcome sats, you can always fund your account with a Lightning invoice (same goes for withdrawal).\n\n![Screenshot 2024-04-08 at 14.41.40.png](https://m.stacker.news/28562)\n\nYou can also attach a self-custodial Lightning wallet to supplement the custodial Stacker News wallet.\n\n![Screenshot 2024-04-28 at 14.41.39.png](https://m.stacker.news/28564)\n\nBefore posting, you can choose in which territory you want your post to appear.\n\nYou can also choose between various post types (link, discussion, poll, bounty, job listing), and format your text to be visually more appealing.\n\n![Screenshot 2024-04-08 at 15.19.44.png](https://m.stacker.news/28565)\n\nYou can forward sats to content collaborators, or pay credit to the original creator of the content.\n\nIf you want greater visibility for your content, you can boost it with sats upon creation.\n\nTo zap content, just click the small Lightning icon on the left.\n\nYou can change your default zap amount in the settings.\n\nBy long-pressing on the Lightning icon, you can specify a custom zap amount.\n\n![Screenshot 2024-04-28 at 15.02.24.png](https://m.stacker.news/28571)\n\nThere is an option to subscribe to a user's posts or comments and get a notification whenever they post.\n\nYou can also mute users whose posts and comments you don't want to see.\n\nIf you want, you can also crosspost to Nostr.\n\nAnyone can start a Stacker News territory.\n\nStarting a territory costs either 100K sats/month, 1M sats/year, or 3M sats as one-time payment.\n\nTerritory owners earn 50% of the fees generated in their territory.\n\n![Screenshot 2024-04-28 at 15.16.40.png](https://m.stacker.news/28568)\n\n## Web of Trust Ranking Algorithm\n\nStacker News uses bitcoin to rank content on the website.\n\nMore sats from more trusted users means more people will see the content.\n\nGenerally, you can increase your reputation by zapping and creating quality content.\n\nConversely, by zapping bad-quality content, your trust score goes down and your zapping behavior on Stacker News becomes less influential.\n\nThe lightning bolt next to a post or comment is a tool for users to signal that they like what they read.\n\nIf you see content you don't like, you can downzap it, which also affects the post's ranking.\n\nGenerally, the higher your trust score, the more sats you can earn!\n\n## How to Stack Sats on Stacker News?\n\nHow to get started on Stacker News?\n\nFocus on adding value, whether it's through writing articles, prompting discussions or only curating links.\n\nIf you earn sats from your contributions, consider it as a good signal that other users enjoy what you're sharing.\n\n![Screenshot 2024-04-25 at 16.17.57.png](https://m.stacker.news/28569)\n\nTip: if you zap or comment early on posts that become "good-quality", you will earn more!\n\nIf your posts get ignored, consider it as a signal that other users don't enjoy reading your content.\n\nGenerally speaking, referral links or repetitive content (and probably also AI-generated content) gets ignored on Stacker News, so be careful with those.\n\nWhen Stacker News first started a few years ago, the discussion was almost solely about Bitcoin.\n\nNow with the launch of territories anyone can start a thriving community to discuss any topic.\n\nHow many sats can you stack on Stacker News then?\n\nWell, I doubt you can make a living (yet), but if you put some effort on your posts, you can easily earn some lunch money or pay your electricity bill etc.\n\nFor people living in e.g. Africa or South Asia, even curating content on Stacker News could provide some side income.\n\nInstead of stacking sats and making money, the main point of Stacker News is to learn from others in a social way and to have fun.\n\nSats are a bonus!\n\nStacker News has a referral program that pays you for every new user you refer:\n\n✅ 2.1% of all the sats they earn for their content\n\n✅ 21% of all the sats they spend on boosts or job listings\n\n## Additional Resources:\n\n[Stacker News 2024: Q1 Review + Q2 Roadmap Discussion with Kevin Rooke, ek and Keyan](https://www.youtube.com/watch?v=HHAwjafbJnM) @kr, @ek, @k00b\n\n## Project Links:\n\n[Website](https://stacker.news/)\n[X (Twitter)](https://twitter.com/stacker_news)\n[Nostr](https://snort.social/p/npub1jfujw6llhq7wuvu5detycdsq5v5yqf56sgrdq8wlgrryx2a2p09svwm0gx)\n[YouTube](https://www.youtube.com/@stackernews)\n[Podcast](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2)\n[GitHub](https://github.com/stackernews/stacker.news)\n\n\n\n\n \N 802 \N 3144 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.6875965179971 0 \N \N f 182739217 \N 1 74661619 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406576 2025-02-17 12:49:27.782 2025-03-29 22:39:47.09 🍂 Another seasonal meditation with plebpoet ~ take a walk with me 🍂 My second try at filming a short and sweet poetic type of video for feeling calm and accepting the changes of the season, the passing of time.\n\n[This](https://stacker.news/items/676672) was the first try in case you missed it. https://www.youtube.com/watch?v=52CpchT6y4k 10270 \N 406576 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 27.1052318126511 0 \N \N f 198691783 \N 2 200084030 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401702 2025-02-13 10:32:51.526 2025-03-29 22:39:47.09 Disclosure: Btcd consensus bugs due to usage of signed transaction version \N https://delvingbitcoin.org/t/disclosure-btcd-consensus-bugs-due-to-usage-of-signed-transaction-version/455 876 \N 401702 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.9040990154846 0 \N \N f 239944504 \N 1 49148956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430330 2025-03-09 05:18:24.958 2025-03-29 22:39:47.091 SEC Charges Coinbase for Operating as an Unregistered Securities Exchange \N https://www.sec.gov/news/press-release/2023-102?s=09 1576 \N 430330 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 2.71525719307022 0 \N \N f 1276985098 \N 8 110071617 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 420116 2025-02-28 13:55:38.318 2025-03-29 22:39:47.091 Operation Saylor - Episode 22/120 # Operation Saylor - Episode 22/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 22, corresponding to April 2024.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.31191974 BTC\n- € stack: 459.80 €\n- Current total value in €: 79962.14 €\n- € into BTC: 30,000 €\n- Paid back to bank: 7,690.20 € \n- Outstanding debt + interests: 36,254.13 €\n- Installments to go: 99\n\n\n## Charts\n\n[![episode-22-stack-value-vs-debt.png](https://i.postimg.cc/k4n8d5PL/episode-22-stack-value-vs-debt.png)](https://postimg.cc/bGBdxpJR)\n[![episode-22-bitcoin-stack.png](https://i.postimg.cc/zfwWMg6n/episode-22-bitcoin-stack.png)](https://postimg.cc/qtRz6zkR) \n\n---\n\n## Log \n\nHello again, and welcome to a new episode of the series.\n\nTime flies and we are approaching the second anniversary of Operation Saylor. I spent the last anniversary to reflect a bit on the performance of the operation. One of the ideas I brought up is how this operation can be assessed from many angles and with a lot of metrics, which makes it a bit hard to answer the question "How is it going?" in a simple way. This is a topic I have dedicated significant amounts of brain energy, because I believe it deserves thorough attention. Otherwise, you risk getting blinded by the fact that are sitting on a lot of assets, downplaying the fact that you are also sitting on a lot of risk.\n\nSo, in anticipation to the second anniversary, I've decided to let you into my brain. I'll be dedicating this and the next few episodes to discuss in depth my ideas on how to assess the success of Operation Saylor, and we will close the year with some figures. \n\n### Return and risk\n\nLet's start somewhere we can all agree on: we save value today so we can spend it in the future. If we save value, and then in some point in the future, we can't spend it for any reason, we have failed big time: the sacrifice was pointless to begin with. There are many reasons and many things that could go wrong and could prevent us from enjoying the value we saved. We could be rugpulled by fiat or crypto means. Someone could steal our savings. We could lose access to them.\n\nRisk is unavoidable. Nothing is guaranteed. Few things are more sad than looking in the eye at the poor fiat normies that think that keeping their money in regular accounts in the bank is safe (maybe they would be better off if they read this masterpiece by bitstein: https://bitstein.substack.com/p/everyones-a-speculator). But not all saving vehicles come with the same risk, nor do all courses of action do. The balancing factor here is return. The more return, the more risk we are willing to accept. Operation Saylor is an example of high risk, high return. \n\nRisk and return are commonly studied and discussed in the investing domain, but I see no difference with pretty much any decision around normal savings that would prevent us from borrowing those ideas. And, in my mind, Operation Saylor looks more like saving than investing. If someone borrowed British Pounds to buy Dollars, you wouldn't call that an investment, would you?\n\nThe big point I want to make here is that all courses of action and results should be judged simultaneously for risk and return. Any assessment that only looks at one of them is flawed, for it's easy to have small risk or great return by sacrificing the other. It's easy to look at Operation Saylor and point the finger at the nice number going up, while ignoring the things that could (and still can) go wrong.\n\n\n### Performance over time\n\nAnother factor that needs to be taken into account is that this Operation lives throughout time, and I also think this should also be reflected in our judgements.\n\nImagine two fictional scenarios: the easy-peasy and the plot-twist.\n\nIn the easy-peasy scenario, Bitcoin boomed the day after I began the operation, and stayed stuck at the same price for 10 years. For 10 years, I enjoyed sitting on a massive asset value compared to my liabity towards the bank. By the end of the 10 years, and after paying out the entire loan as planned, I'm left with 1 Bitcoin worth 1 million dollars.\n\nIn the plot-twist scenario, Bitcoin barely sees any price action after I began the operation. Loan installments slowly erode the Operation's Bitcoin stack, with the Operation stack value and the amount owed to the bank closely tracking each other. By the time the 10 years are coming to an end, there's only a bit of sats left. But, a miracle happens, and in the last month, Bitcoin's price suddenly flies to 10M USD/BTC. I still have 1 million sats left, so the end story is I have 0.01 Bitcon worth 1 million dollars.\n\nIn both scenarios, I've made all the payments to the bank and I'm left with a stack of BTC worth 1 million dollars. If you only look at returns at close, there is no difference measured in fiat. But, let me ask you, would you consider both scenarios equally good?\n\nI don't. I would clearly prefer the easy-peasy scenario. The reason is simple: for a longer period of time, I was sitting on little risk. The assets I was holding were much more valuable that the liabilities that I was facing. Should I had had to sell due to some catastrophic personal situation in the middle of the operation, it wouldn't have hurt much. Or should I have had to reconsider my asset allocation due to some radical change in the worlds circunstances, I would have been sitting on a lot of value to reallocate. Had any of this happened in the plot-twist scenario before reaching the final miracle, I would have been screwed. Left with a debt to a bank and little to no assets.\n\nMy point for you here is: it's not only the end result, but also the state of things over the entire life of the operation, that determines if the operation was successful. \n\n\n### No DCA\n\nFinally, some people in the past have tried to compare the performance of this operation to the performance of having DCA'd all the installment payments. One could naively think: if DCAing the installments into Bitcoin leaves you with more BTC at the end of the operation that the loan option, then the DCA was better.\n\nIt's an interesting exercise, but it's flawed. You wouldn't be comparing apples to apples. The reason is that the DCA option implies that you have a nice cashflow that allows to add funds to your stack every month. Operation Saylor, on the other hand, is self-sustained (for as long as the Bitcoin stack doesn't run dry and forces me to pay the loan installments out of my pocket).\n\nIf anything, what would be a fair comparison is to compare the DCA plan to running Operation Saylor, but paying the installments with my personal cashflows instead of shaving off a few sats every couple of months from the Operation stack. This makes a fair comparison: both scenarios commit 366.20€ per month, either to buying Bitcoin or to paying to the bank. I might explore this in our upcoming episodes.\n\n\nI'll leave it here for today. I hope these ideas set some foundations and help you see, as I do, that there's more nuance to judging Operation Saylor than just looking at the total value held. As always, thanks for reading and I'll see you next month.\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n- Episode 16: [https://stacker.news/items/288719](https://stacker.news/items/288719)\n- Episode 17: [https://stacker.news/items/322189](https://stacker.news/items/322189)\n- Episode 18: [https://stacker.news/items/363765](https://stacker.news/items/363765)\n- Episode 19: [https://stacker.news/items/394704](https://stacker.news/items/394704)\n- Episode 20: [https://stacker.news/items/450792](https://stacker.news/items/450792)\n- Episode 21: [https://stacker.news/items/476945](https://stacker.news/items/476945)\n \N 9611 \N 420116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1622696127758 0 \N \N f 206526354 \N 1 148262798 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443583 2025-03-19 12:29:15.184 2025-03-29 22:39:47.091 The Market For Liberty - Book Summary This book will be new to most people. I suspect the summary may engage many of you to read it in its entirety. The book came recommended by Doug Casey, who is a great investor and source of inspiration, and a big part of why I find myself in South America today. The full motivations for which you can find hidden within these passages below. You can see Doug discusses the book in [one of his videos here](https://youtu.be/dIL90Hl-TN0?t=2128).\n\nAuthored by Morris and Linda Tannehill, the content translated into spanish apparently **changed Javier Milei's entire vision of the world** and has given him the courage to pursue an alternative path for Argentina. Which you may not be aware....but the election for Argentina is this Sunday, October 22nd! 🇦🇷\n\n\n![Market For Liberty Book Cover Image](https://image.nostr.build/67a064aaa30f409c546ea37de43eb715a1aa5417864d1f95929a9932a742df45.png)\n\n### Read the book for FREE\n\nFirst published in 1970 but republished in 2007 (pre-₿), via the Ludwig von Mises Institute, [you can read it online at no cost here](https://mises.org/library/market-liberty-1). I would recommend purchasing a physically copy however, as I believe this is going to be a timeless classic in future. Who knows if you'll be able to get a copy in the tyrannical future it paints.\n\nWhen reading throughout, I saw flashes of @Darthcoin's abrasive brilliance and passages aligning with the Sovereign Individual book, which was perfectly [summarized here on SN](https://stacker.news/items/49781) by @Blocktock.\n\nExcuse the spoilers, which are quotes lifted directly from the book. There are many more insights inside, so if this resonates, definitely grab your own copy. As you will see, it is one of the bigger critics of government today, presenting both the problem & the solution. An eye-opener for Bitcoiners. I hope you enjoy like I did!\n\n----\n\n### Government Control\n\n- Government effects the economy in 3 major ways - 1) by taxation and spending, 2) by regulation, and 3) by control of money and banking. \n- A society with Government regulation is dangerous to every individual person, because anyone may be the next victim, directly or indirectly, of government controls.\n- Government intervention far from improving society, can only cause disruptions, distortions, and losses, and move society toward chaos.\n- The man who "hires" a government to be his agent of self-defense will, by his very act of entering into a relationship with this coercive monopoly, make himself defenseless against his "defender".\n\n### Vs Freedom\n\n- If men aren't free to trade in any non-coercive way which their interests dictate, they aren't free at all.\n- Men who aren't free are, to some degree, slaves.\n- Without freedom of the market, no other "freedom" is meaningful.\n- For this reason, the conflict between freedom and slavery focuses on the free market and its only effective opponent - government.\n\n### Money Printing\n\n- The government-inflated currency system stimulates an artificial boom which misdirects the market's signal system.\n- Entrepreneurs, thinking they are more prosperous than they really are, make malinvestments and overinvestments. The boom breaks when the nature and extend of the malinvestment is discovered.\n- The area in which the consumer is probably most in need of protection, and in which government most endangers him, is in maintaining the value of his money. Money is the lifeblood of any industrial economy - if the money loses its value, the entire economy must collapse.\n- A government which uses paper for money, without holding a freely accessible gold and/or silver reserve is forcing its economy to live on borrowed time.\n- Holders of capital naturally want to hold it in the form of the most sound money available, so they would move to sell government currencies and buy free-market money. This move itself would further weaken unsound governmental economies, as it would cause a de-facto devaluation of their currencies. It might well precipitate a series of near-fatal financial crises among the nations.\n- The Economy should be provided with a medium of exchange to replace the dying dollar.\n\n### Monopoly\n\n- Theoretically, there are 2 types of monopoly - market monopoly & coercive monopoly. \n\t1. A coercive monopoly maintains itself by the initiation of force or the threat of force to prohibit competition and sometimes to compel customer loyalty.\n\t2. A market monopoly has no effective competition in its particular field, but it can't prevent competition by using physical force. The initiation of force would frighten away business associates and alarm customers into seeking substitute products.\n\n- Only government, which is itself a coercive monopoly, has the power to force individuals to deal with a firm with which they would rather not have anything to do.\n- It compels, its citizen-customers by force of law either to buy its services or, if they don't want them, to pay for them anyway.\n- If government didn't compel its citizens to deal with it (by maintaining itself as a coercive monopoly), the free market would offer really effective services, efficiently and at lower prices, and the government would lose all its "customers".\n- Government isn't a necessary evil - it's an unnecessary one.\n\n\n### Unemployment & Automation\n\n- Without government regulation, businesses would be freer to innovate and would have to compete harder for labor, due to the economic boom created by freedom.\n- In any society, unemployment is the product of government intervention in the market.\n- Labor is and always has been relatively less abundant than both people's demands for goods and the natural resources necessary to fill those demands. This will hold true unless and until we reach a point of overpopulation where the supply of labor exceed the supply of raw materials, at which point there will be mass starvation.\n\n> Instead of government being recognized as the culprit (of unemployment), **AUTOMATION** has frequently gotten the blame. \n\n![Automation illustration](https://image.nostr.build/539e7642c0aafaac6c9d96c06307d1e27c78d64997402a071cde671400526cd5.jpg)\n\n- No matter how many wants are filled by machines, there will still be an unlimited number of new wants left unfilled.\n- Automation doesn't reduce the number of jobs, it merely rearranges the pattern of demand for labor.\n- It has already been shown that poverty is the direct result of government interference in the economy, and that a modern industrial society need have no poverty as we understand it.\n\n\n### Price Controls\n\n- Price control, like all other political controls and regulations imposed on the market by legislative force, is... people control.\n- The price of any good on the market will tend to be set at the point where the supply of that good (at that price) is equal to the demand for it (at that price). If the price is set below this equilibrium point, eager buyers will bid it up; if it is set above, the sellers will bid it down until it reaches equilibrium. \n- At the equilibrium price, all those who wish to buy or sell at that price will be able to do so without creating surpluses or shortages.\n- On the other hand, if government sets the price higher than the equilibrium price, there will be a surplus of the good, bringing financial ruin to those who are unable to sell their excess stock.\n- A profit tells the businessman that consumers are pleased with his production. A loss shows him that not enough consumers are willing to buy his product at the price he is asking, so he should either lower his price or redirect his money and effort into some other line of production.\n- Individual self-interest is the basis for the whole market system, which is why it works so well. The consumer acts in his self-interest, when he buys things at the lowest prices and with the best quality he can find. The producer acts in his self-interest in trying to make the highest profit possible.\n\n### Taxation\n\n- Taxation is economic hemophilia. It drains the economy of capital which might otherwise be used to increase both consumer satisfaction and the level of production and thus raise the standard of living.\n- Taxing away this money either prevents the standard of living from rising to the heights it normally would or actually causes it to drop. Taxation must necessarily penalize productivity.\n- Some people feel that taxation really isn't so bad, because the money taken from the "private sector" is spent by the "public sector", so it call comes out even.\n- But even though the Government spends tax money, it never spends this legally plundered wealth the same way as it would have been spent by its rightful owners, the taxpaying victims.\n- Taxation is theft. The abolition of all taxes would stimulate an immediate and rapid spurt of growth throughout the whole economy.\n- Imagine what it would do to your personal prosperity to have your real income almost double overnight. \n\n### Regulation\n\n- Money which would have been spent on increased consumer satisfaction or invested in production, creating more jobs and more products for consumers, may be used instead to subsidize welfare recipients, controlling their lives and, thus, discouraging them from freeing themselves in the only way possible - through productive labor. Or it may be used to build a dam, which is of so little value without the force of government intervention.\n- If taxation bleeds the economy and government spending distorts it, government regulation amounts to slow stragulation.\n- Government spending replaces the spending which people, if free, would do to maximize their happiness.\n\n### Working Hours & Wages\n\n- Not only does government regulation prevent individuals from going into business for themselves, it also helps freeze many employees into an 8-to-5 grind unnecessarily.\n- There are a large number of jobs in our automated world which require, not that a specified number of hours be put in at an office, but that a certain amount of work be accomplished, regardless of how long it takes or where it is done.\n- Wages would be high because businesses could keep what bureaucrats call their "excess profits" and invest them in machinery to increase the productivity of their labor (and wages are determined by productivity).\n\n![Office workers in cubicles](https://image.nostr.build/7a17435ca1dc3ca72ebf2a0432f0dfee43883a0103d8482a218ab3ea1d98f200.jpg)\n\n### Human Rights \n\n- Any "right" which violates another man's rights, is no right at all.\n- There are no collective rights, there are only the rights which every individual has to be free from the coercive actions of others.\n- It is this idea - that it is proper and/or necessary for some men to coercively govern others, which is the idea of government - that has prevented the establishment of a laissez-faire society and which has been responsible for incalculable human suffering and waste in the form of political and religious persecutions, taxes, regulations, conscription, slavery, wars etc.\n- Trade makes a human existence possible. Trade is an indispensable means of increasing human well-being. If there were no trade, each person would have to get along with no more than what he could product by himself from the raw materials he could discover and process.\n\n### Defining Socialism\n\n- Socialism is a system in which the government owns and controls the means of production (supposedly for the 'good of the people' but in actual practice for the good of the politicians). \n- Fascism is a system in which governments leave nominal ownership of the means of production in the hands of private individuals but exercises control by means of regulatory legalisation and reaps most of the profit by means of taxation. \n- In effect, fascism is a more subtle form of government ownership than socialism.\n- The present fascistic alliance between government and business, which definitely is aggressive and imperialistic, is a forced alliance - forced by government.\n\n### Property\n\n- Government does not produce anything. Whatever it has, it has as a result of expropriation.\n- Property is anything that is owned. When a man is required to "rent" his own property from the government by paying property taxes on it, he is being forbidden to fully exercise his right of ownership. The proof of this is that if he fails to pay the taxes the government will take his property away from him.\n\n> In a laissez-faire society, all properly formerly "belonging" to government would come to be owned by private individuals and would be **put to productive use**.\n\n![Beautiful roman architecture](https://image.nostr.build/469b9947db31a195a5936e68a8defa37d71e3acd51a79fcba7750b14297dc1ba.jpg)\n\n- Total property ownership would also **lower crime rates**. A private corporation which owned streets would make a point of keeping its streets free of drunks and any other such annoying menaces.\n- Another aspect of total property ownership is that it would make **immigration laws unnecessary and meaningless**. If all potential property were actually owned, any "immigrant" would have to have enough money to support himself, or a marketable skills. He couldn't just walk into a free area and wander around - he'd be trespassing.\n- Pollution problems could not continue to exist in a competitive, laissez-faire society, free-market environment - **an environment which governments destroy**.\n\n### Slavery\n\n- To advocate limited government is to advocate limited slavery. \n- Slavery is the condition in which one is not allowed to exercise his right of self-ownership but is ruled by someone else.\n- To put it simply, government is the rule of some men over others by initiated force, which is slavery, which is wrong.\n\n### People\n\n- Government by its very nature **tends to attract the worse of men**, rather than the best, to its ranks.\n- The success signal for a politician or bureaucrat is not profit, but power.\n- Even if a government were started by the best of men with the best of intentions, when the good men died off and the good intentions wore off, men with a lust for power would take over and work ceaselessly to increase government influence and authority (always for the "public good" of course).\n\n> 💩 These thinkers of the past have not only failed to solve our problems, they've made them incalculably worse, and because the mess is beginning to stink so badly, their time is running out. **They'll have to make way for the libertarians** (mostly young people) who don't have much influence yet but will have in just a few years.\n\n\n### Education\n\n- One of their most effective weapons has been government supported education, which brain-washes the young into patriotism before they are capable of judging ideas create a Pro-State populace.\n- Education itself would be vastly improved if placed on the free market. At present, most students waste a considerable amount of each school day.\n- A laissez-faire system of competing, free-market education would provide a tremendous variety...\n- No longer would every child be forced through the same educational machine, a machine geared for the great "average" majority and therefore, harmful to minorities of all kinds.\n- Not only would companies put promising students through college, they might even pay their high school tuition.\n\n![Kids learning about city](https://image.nostr.build/d5d9065b5aa820feb9d3bdfde82afa45b52383cb3069ba7734a7200aafc9204b.jpg)\n\n### Wars\n\n- It's labor vs management, urbanites vs suburbanites, tax-payers vs tax-consumers, in an endless, costly and totally unnecessary battle.\n- Wars and repressions are an inevitable by-product of government - they are simply the coercive monopoly's normal reaction to external and internal threats to its position.\n- The more areas outside of its boundaries a government seeks to control (that is, the more imperialistic it is), **the more repressions it will have to use against its citizens**, and the more bloody and violent these repressions will be.\n- The history of governments always has been, and always will be, written in blood, fire and tears.\n\n![War zone](https://image.nostr.build/33dd51208abbdd1c107c4011d6c7bb45781dcfed8665655546fbf4286fbc9e00.jpg)\n\n- **Government can't defend its citizens**, and it is foolish and sacrificial for the citizens to defend a coercive monopoly which not only enslaves them but makes a practice of provoking conflicts with others coercive monopolies - i.e. with other governments.\n- **Business is a natural opponent of war** because businessmen are traders and you can't trade amid falling bombs. It is not business that gains from war, but government.\n- **Successful wars leave governments with more power** (over both their own citizens and those of the conquered nations), more money (in the form of plunder, tributes and taxes), and more territory.\n- There is no societal organization capable of waging a war of aggression except government.\n\n------\n\n## A New System\n\n- A laissez-faire system would, by virtue of its freedom, **be superior to any governmental society in 3 key areas** - 1) scientific research, 2) industrial development and 3) its monetary system.\n\n- A laissez-faire system could not have "foreign relations" with the nations of the world in the same sense a government does, because **each inhabitant would be a sovereign individual speaking only for himself** and not for a collective aggregate of his fellows.\n- Businesses whose products were potentially dangerous to consumers would be especially dependent on a good reputation.\n- The good reputation of a **manufacturer's name would be the most precious asset**, an asset which no firm would risk.\n- Stores would **strive for a reputation of stocking only products which were high quality**, safe when properly used, and adequately labeled.\n\n![Quality produce shop](https://image.nostr.build/ac556686cba91e38c64233735c8109ce6b85c21d007d219cc767dafa46ffc21d.jpg)\n\n- It is obvious that the more men are free to pursue any non-coercive interest, to realize the rewards of their research, and to fully own any property thus earned, the more intelligent effort they will put into research and the more discoveries will be made.\n- In short, **free men can and will build a stronger economy than men who are taxed**, harassed, regulated, legislated, bound - that is, held in some degree of slavery by government.\n- A comparison of the American and Soviet economies gives a hint of the vast superiority which a laissez-faire economy would enjoy over any unfree economy.\n- Government employees would have to find jobs in private enterprises if they wanted to work.\n- **Producers in every nation would want to move to a the laissez-faire society.** Governments wouldn't be able to offer the men of ability in their countries enough to keep them from flocking.\n- A sizeable laissez-faire society, **simply by existing, would amplify stresses within the nations and compel them to move rapidly toward either complete freedom or tyranny.**\n- In nations with relatively limited governments, this conflict may only be minor, but in totalitarian countries it can amount to a latent civil war between the ruled and the rulers.\n\n\n-----\n\n## But first...\n\n- It is probable, however that the majority of governments would fight back by becoming more restrictive and tyrannical; and this is particularly true of countries well along the road of government control. So most of the non-free world would degenerate into various combinations and degrees of tyranny, revolt and social chaos.\n- The more totalitarian a country, the more its citizens must be motivated, not by the incentive of expected rewards (the profit motive), but by fear.\n- Without freedom to enjoy the rewards of his productivity, **a man has no incentive to produce except his fear** of a government gun.\n- Even more crippling is the fact that **threats don't produce innovative ideas**. This is why dictatorships find it necessary to permit their scientists and other intellectuals a special privileges status with extra liberties and incentives.\n\n- American and most of the rest of the world, is caught in a wave of economic decay and social upheaval, which nothing can stop.\n- People who grow up amid the "democratic traditions of the West" are apt to feel that this governmental initiation of force and disruption of the market is justifiable as long as the government is one which is "chosen by the people through the democratic process of free elections".\n\n### The Economy\n\n- They will sooner or later push us over the brink into total economic collapse - the kind of collapse where government money loses all its value...\n- The only thing we can say is that a day of reckoning must come for the badly inflated dollar and for all the other shaky currencies of the world.\n- If our society continues to be governmentally controlled, we can expect a steady increase in economic troubles, unemployment, inflation, crime, poverty, and eventually, a collapse of the governmental monetary system, bringing widespread starvation.\n- We can also expect a steady decrease in our government-permitted "freedoms" as more and more bureaucrats find more and more ways of taking care of us and exercising power over us.\n\n### Strength In Ideas\n\n- Freedom is stronger than slavery, and a good idea, once spread is impossible to stamp out. \n- When men are free to think and produce, they innovate and improve everything around them at a startling rate.\n- Fighting government with ideas of freedom has an interesting built-in safety factor - most of our politicians and bureaucrats, like most other people, can't see the importance of ideas. What counts with them is votes, tax money and political deals.\n- Ideas are the motive power of human progress, the force which shapes the world. When an idea gains popular support, all the guns in the world cannot kill it.\n\n![Free people in mountains over looking valley](https://image.nostr.build/baf5c3bed065f9e10eba6f09018b7647ab365bbeb71a433be18d8df083b73151.jpg)\n\n\n### Final Quote ...\n\n- It's time for men to ***grow up*** so that each individual can walk forward into the sunlight of freedom... in full control of his own life!\n\n\n-----\n\nSound like your type of book? Which one would you recommend next? Comment below... \N 20577 \N 443583 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.7894614039023 0 \N \N f 1193639929 \N 10 13129633 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:59:05.258 f \N \N \N 0 0 0 0 9 0 0 430770 2025-03-09 12:20:02.836 2025-03-29 22:39:47.091 Spending Sunday - What Recent Bitcoin Purchases Have You Made? Let's hear some of your latest Bitcoin purchases, feel free to include links to the shops or merchants you bought from too.\n\nIf you missed our last thread, [here](https://stacker.news/items/329549) are some of the items stackers recently spent their sats on. \N 9330 \N 430770 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 28.3953648073779 0 \N \N f 384252092 \N 2 218311446 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 426148 2025-03-05 12:51:43.264 2025-03-29 22:39:47.091 Opinion: Spam can't cause high fees - Thriller post ![IMG_3886.jpeg](https://m.stacker.news/12590)\n\n✍️\ndrop\n//with\n@Scoresby https://www.thrillerbitcoin.com/spam-cant-cause-high-fees/ 7119 \N 426148 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.90879475959479 0 \N \N f 527860225 \N 3 237131396 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434934 2025-03-12 10:52:49.387 2025-03-29 22:39:47.091 Stacker News is social media. So what? Over in ~podcasts, there's a [good post](https://stacker.news/items/503110) from @sebastix linking to a Cal Newport podcast talking about why creatives should get off social media. Newport's been against social media for a while, and makes some great points. The comments so far are generally in agreement.\n\nMeanwhile, @cryotosensei posted in ~meta [on Stacker News and parenting](https://stacker.news/items/503162) in which he notes that in a previous post, the advice he'd received included: *Some Stackers suggested that since I was being put through the fire, I should reduce the amount of time I spend on social media, including Stacker News*.\n\n(Reader, he did not take that advice, at least in regard to SN, and I think we're all better off for it.)\n\nOf course, no one in that first post is snarking at SN. But it's unquestionably social media. The important thing is that it's a *good* social media site.\n\nAs some of you know, I'm An Old. I've been online in some capacity since 1986. And I've seen a lot of social media. I'm still on mailing lists/listservs[^1] I was on back then, I was on Usenet back when it was useful, was on Livejournal and Flickr and tried Myspace and a zillion other things before Facebook/Twitter came to dominate (of course "microblogging" is simply a subset of "social media"[^2]). And SN is a forum where people have identities/aliases, interact with each other, and post content. Hell, they can even follow other users (or mute them). \n\nThat's social media, folks. The site we usually compare ourselves to positively (something with "Red" in it) is unquestionably social media, and even the site SN's name brings to mind fits into that bin.\n\n(As an aside, Nostr is social media and also clearly in the same microblogging space as Twitter/FB.)\n\nI definitely think there's a difference between doomscrolling social media (starting with Tumblr, but now clearly a part of FB/Twitter/Tiktok), and sites like SN that all you to consume how you want to. There's probably an argument that the comparative echo chamber helps make this place better as well, although I think that's one that's probably some strands to untangle, since there are lots of echo chamber sites that are awful (Gab), and awful sites that aren't echo chambers (Twitter). And I think there's potential for stagnation at a certain point.\n\nI'd also guess that the V2V/Zapping here is a huge factor; spamming has an actual cost, and while commenting is cheap (*fractions of a penny*), it's still a small barrier. \n\nI'm sure there are other factors. The tech in general is really good, and it can't be understated how much that helps. The lack of ads and algorithms means that it can't go through the [enshittification](https://pluralistic.net/2023/01/21/potemkin-ai/) that other sites do. Being open-source has to help.\n\nSo yeah, I'm not off social media because I'm on Stacker News[^3]. I just spend my social media time on a good site.\n\n[^1]:If you don't know what a listserv is, fix that. One of them is [crucial to Bitcoin history](https://cryptoanarchy.wiki/getting-started/what-is-the-cypherpunks-mailing-list).\n\n[^2]:"Microblogging" itself has shifted in meaning, as Twitter now lets people write 10000 work screeds if they give Elon the right amount of money.\n\n[^3]:And Nostr. And one or two other sites. \N 12490 \N 434934 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 16.8839722945931 0 \N \N f 139638590 \N 2 45448199 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:40:56.201 f \N \N \N 0 0 0 0 2 0 0 450971 2025-03-24 10:25:43.145 2025-03-29 22:39:47.091 Production L402 Payment Protocol Use Cases What interesting use cases have people come across for the L402 payment protocol that are actually used in production? \N 732 \N 450971 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 18.2279182949959 0 \N \N f 1568010306 \N 10 43732976 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 450649 2025-03-24 06:13:48.681 2025-03-29 22:39:47.091 Three fast facts: Oil, Diamonds, Temples ## FACT I\n\nStandard Oil was dismantled by the Supreme Court in 1911. Here's how powerful Standard Oil would be today if that didn't happen, by way of looking at what the original company became over time after being broken into 34 pieces:\n\n![](https://imgprxy.stacker.news/9fEyZ4Mbiv22WnnHFFXYWlkOiMEQbOcjiXzN_MPdgIs/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC9mZjY0Zjc1MDhiZjg0YjUzYTg2ZTNiZTRlMDViOWUyOTBlMTc5Yjk4MzQ2NTU1YWNmYzAwYjcwOWM0ZTNhNjlkLmpwZw)\n\nThe EU, Japan, Canada, and Australia also went through their own anti-trust period with oil. \n\nNow think of all the oil-rich countries where anti-trust never happened. Where did all that power singularly coalesce? They're all dictatorships no?\n\n## FACT II\n\nThe price of diamonds is collapsing. This once shimmering compressed carbon rock was thought of as a reliable store of value. The problem isn't just that yours truly (bitcoin) is here, but artificial diamonds look as good to the naked eye and even better under a microscope (they lack natural impurities). They cost one-third the price, come with none of the bloody fiat social issues, and marriage rates are falling. \n\n![](https://imgprxy.stacker.news/HXJ1D8MvSVIbtFi-YA7Ahk_GeqhtEm2SMBOuFynySrM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC81NzQzYzNiZTc0MGEzYWVhNWU5NGI1NDU5NmRlM2NkNjcwZWRjMDkzY2RjODAyYmQ1ODUwNTQ3OGVmNjMyYzFmLmpwZw)\n![](https://imgprxy.stacker.news/WIugWv2sHmkkmNKXAGzbi6tD1-AnSCsoyvwi1rgb0x8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC9jZmJmZDIzYmVhYThkMWNiNTllZDE0OGMwZWViMWU5NDkxMGYyZGMyMmQ5YjM4MmQ0MGFhN2Y2OTM4Y2UwZTFmLmpwZw)\n\nLet's repeat that widely cited rule: *You should spend three months' salary on an engagement ring.* Damn that's so *faux pas* here in California. Women will proudly megawatt a smile and tell you their ring is artificial and conflict free, literally beaming with moral fortitude. Technically it's a "real" diamond and what would've traditionally gone towards a conflict rock can go into a down payment on a home or yours truly. Same thing will happen when space gold fucks the supply of earth gold?\n\n## FACT III\nYou thought temples in Ancient Rome were for worshiping gods? For the plebeians sure, but for the people with money they were vaults. It's where money and valuables were stored in the city, and they offered banking services to the Senator, Equestrian, and Patrician classes. It was in the nobility's interest to make certain these temples were always considered sacred and inviolable places, with their own special punishments for anyone questioning things. \n![](https://imgprxy.stacker.news/ls1VZDp0T4ZijyBe0HZ0wsofjAuefVE3wD_FxOdX7y8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC9hMWRmNmJhM2NiMWNlY2M0NDAzYTAxMDcxMGEyYTdhODE3YWQyZTY4Yjg3Mjc1NjAxNDlkNjJjODg5NzQzNzdkLmpwZw)\n\nIt's no wonder they served christians to beasts in the Coliseum? You can't have people running around thinking Ceres won't punish your family or fertility. I could swear to god (no pun) the temple above looks curiously similar to the US Treasury and Fed bank buildings. \n\n\n\n\n\n\n \N 7827 \N 450649 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.7543468118741 0 \N \N f 1477643543 \N 9 54172626 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447841 2025-03-22 07:35:48.137 2025-03-29 22:39:47.091 Some Thoughts on My Failed SN Recruitment Effort I recently attempted to lure people to Stacker News from Minds. My recruitment post was seen over 6k times and received 34 upvotes, over the past 25 days. Over that time period, I generated two Stacker News referrals, which may not have even come from Minds.\n\n## Why Minds?\nI primarily used Minds, before finding Stacker News. It was created as a free speech alternative to Big Tech platforms. It also has a rewards system that is not entirely dissimilar to Stacker News'. \n\nThe aspiration of Minds, according to its founder, is to foster open discussions while rewarding creators.\n\nMany people on Minds are staunch advocates of advancing human freedom and they've already demonstrated a willingness to look for the best platform for doing so.\n\nIn many ways, they seemed like an ideal audience to appeal to. Everything Minds is trying to do, works better here. The conversations are deeper and more varied. The earnings are astonishingly greater. It's pretty normal to not get a single comment or upvote on a Minds post and my total earnings were only about $10.\n\n## Why did it fail?\nI was not expecting much from this experiment. I had accumulated a bunch of Minds tokens during my time there and this seemed like the best way to utilize them. Even with low expectations, I was a little surprised at just how paltry the interest was.\n\nThere were two clear reasons for the lack of converts, one was made explicitly, while I inferred the other:\n1. People were put off by the bitcoin-centrism of Stacker News. It didn't matter to them that you can have better conversations about everything else on SN than on Minds, or that Bitcoin is a more functional analogue of the Minds tokens they're using, they didn't want to be around so many bitcoiners.\n2. People like cheap talk. Why did my post about SN get dozens of upvotes (that's a ton for Minds), but very few comments or referrals? Well, it doesn't cost anything to click the thumbs up button, whereas taking the time to actually check out Stacker News or leave a comment takes time they don't want to invest.\n\n## Concluding Thoughts\n"We're still early" is a common refrain, but this drove it home in a different way. What should have been a very receptive audience, had no interest in a site that is superior in every significant way to the one they're using, largely because it's related to bitcoin. These are predominantly anti-establishment folks who talk about the need for parallel institutions. Even amongst that group, bitcoin isn't just not of interest, it's to be avoided.\n\nOne of my concerns about Stacker News has been that it will turn into just another toxic internet partisan circle jerk as it grows. This recruitment experiment alleviated that concern, because we're nowhere near drawing in that audience.\n\nI'm also left at a loss for understanding where the next stage of healthy SN growth will come from. \N 15806 \N 447841 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 21.7718726817708 0 \N \N f 217895189 \N 1 200062701 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 19:39:53.954 f \N \N \N 0 0 0 0 1 0 0 402582 2025-02-13 20:42:31.016 2025-03-29 22:39:47.092 Has there been a single truly groundbreaking innovation in the last 10 years? Story time:\n\nI had my 10-year high school reunion earlier this year, and one moment from the day really stuck out for me.\n\nAs part of the event, we all got to revisit a questionnaire we filled out back in 2013, asking a series of questions where we made predictions about what ourselves, and the world would be like in 10 years.\n\nOne of these questions was: "What new invention or innovation do you hope will exist in 10 years?"\n\nMost of us put something stupid, like flying cars, or similar.\n\nBut I thought about it for a while...and asked a few of my friends nearby:\n\nWhat truly groundbreaking new innovation HAS there been in the last 10 years? Or heck even the last 20?\n\nNone of us could think of any. Just microscopic improvements on already existing tech knick knacks like TVs, phones, and other miscellaneous devices.\n\nOf course, this led to me ranting about #Bitcoin for half an hour, how innovation has completely tanked in recent history due to the monetary destruction of fiat (h/t @saifedean for this video which really led me onto this: https://youtu.be/cDDh-VgWikk?si=Gu9r_BNTDOsvevC2)\n\nSo, I bring this question to the interwebs:\n\nCan you think of a truly groundbreaking new innovation that's been introduced to the world in the last decade, which tangibly improved human lives at scale?\n\n-BW \N 15662 \N 402582 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 1.34651688853818 0 \N \N f 1311093258 \N 10 59233994 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 423749 2025-03-03 15:14:16.371 2025-03-29 22:39:47.092 Technological determinism and splitting the atom of cause and effect (A post in the meta-experiment series of the _Broken Money_ book club, part 5)\n\nWe've talked before ([here](https://stacker.news/items/317114/r/elvismercury), [here](https://stacker.news/items/274654/r/elvismercury), [here](https://stacker.news/items/287789/r/elvismercury)) about one of Lyn's most remarkable claims, about the technological determinism of bitcoin. We've spent less time on the determinism of fiat, but this idea is just as important. Lyn proposes that when advances in telecom made it possible to communicate at the speed of light, that this introduced an irresistable force on the monetary system: you couldn't have sound-money final settlement at the speed of light, so money became principally an expression of credit.\n\n> If I were to describe in one paragraph why money has been broken around the world for so long while almost everything else has improved substantially (energy abundance, technology abundance, and so forth), it’s due to this gap between transaction and settlement speeds that the telecommunication era created. (p. 301)\n\nIn other words, the determinative force is a kind of impedence mismatch between one important thing (our ability to communicate), and a related thing (settling transactions). For much of human history the distance between those two things was small; suddenly, it was vast, and fiat was born out of that vastness, to great consequence.\n\nThe more time that passes, the more I think this is the most profound thought in the book. And it reminds me of another [profound thought](http://gesd.free.fr/keynesaa.pdf) that I encountered a few years ago:\n\n> The divorce between ownership and the real responsibility of management is serious within a country, when, as a result of joint stock enterprise, ownership is broken up among innumerable individuals who buy their interest to-day and sell it tomorrow and lack altogether both knowledge and responsibility towards what they momentarily own. But when the same principle is applied internationally, it is, in times of stress, intolerable--I am irresponsible towards what I own and those who operate what I own are irresponsible towards me. There may be some financial calculation which shows it to be advantageous that my savings should be invested in whatever quarter of the habitable globe shows the greatest marginal efficiency of capital or the highest rate of interest. But experience is accumulating that remoteness between ownership and operation is an evil in the relations among men, likely or certain in the long run to set up strains and enmities which will bring to nought the financial calculation.\n\nMore succinctly: when new affordances (this time, legal and logistical affordances) allow a person to "own" a piece of a company, but that ownership is abstract, incremental, and operates in a temporally remote fashion over great distances, and you don't have any real experience with the thing you own anymore, or the people involved, or the consequences of that ownership --\n\nin such a circumstance, weird things happen. Empirically, a lot of bad things happen.\n\nSo it appears to me now that we can talk in a general way about what comes when you 'split the atom' in this way. If we seperate transaction from settlement, we get X; if we seperate ownership from the visceral results of ownership, we get Y.\n\nAs bitcoiners, we're very used to talking about the evils of X. Are they related, somehow, to the evils of Y? Both things resemble a kind of [goblin mode](https://stacker.news/items/317347/r/elvismercury) artifact, a cousin of high-time preference, throw-away culture.\n\nI'm not sure where to take the idea, but it seems important. \N 795 \N 423749 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.01969706822377 0 \N \N f 457722210 \N 3 247574722 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435496 2025-03-12 18:28:04.206 2025-03-29 22:39:47.092 BDMD #2 - Govs will shut down internet, so Bitcoin is dead >*BDMD = Bitcoin deniers myths debunked\nThis is a series of short posts about Bitcoin myths and nocoiner fallacies, debunked or explained.*\n[Previous BDMD #1](https://stacker.news/items/589355)\n\nWe often hear this question from normies:\n### "If there is no internet connection or you are in a place without coverage, how can you use Bitcoin? Or if a government has to shut down the internet access? Wouldn’t it be a danger that we lose our BTC?\n\nFirst of all... Government is NOT going to close access to the internet because they depend 100% on it. Yes, they can restrict it, they can censor it.\n\nBut nowadays, some computers interconnected by an ad-hoc network, can already use many versions of the Internet that cannot be censored (see TOR). \n\nThe question is: if you live in a country where the government is an oppressor, it wouldn't be more logical to ask ["why did we let the government to enslaves us?"](https://www.youtube.com/watch?v=kPYUNN7QkPY) The problem is NOT with Bitcoin, it is with the government and with us because we let them doing this. \n\nLet's not forget the quote: “When people fear their government, there is tyranny; When the government fears the people, there is freedom". If you are already living in a tyranny, then your concern is not how to use BTC, but how to stop this tyranny. And you can stop it exactly by start using bitcoin.\n\n### How to use Bitcoin without internet ?\n\nThere are many options to use Bitcoin WITHOUT an internet connection. Recently there have been [tests with radio devices](https://www.cryptonewsz.com/first-ever-bitcoin-btc-transfer-through-radio-waves/) such as GoTenna or using antennas and equipment with [connection to satellites](https://blockstream.com/satellite/) and using the [satellite network](https://cointelegraph.com/news/bitcoin-in-space-blockstreams-satellite-network-now-25x-faster). In Sep 2020 a group of bitcoiners in Venezuela, Cryptobuyers, have connected a BTC node to the satellite network. Here is a guide how to [run a BTC node to the satellite network](https://medium.com/@Cryptobuyer/cryptobuyer-launches-venezuelas-first-bitcoin-satellite-node-86b462f9dac8).\n\nAn interesting option is to start your own ISP: https://startyourownisp.com/ if in your area there's no infrastructure or the ISP is offering shity services or is censoring too much.\n\nAnother possibility is sending a tx by SMS. The tx is created in an offline wallet and the result will be in the form of an encrypted text code can be sent to a friend or relative by SMS, who simply broadcasts the tx, copying the code in any wallet app that supports broadcast tx (Electrum, Sparrow, Bluewallet, Samourai etc). He will never have access to your wallet, he just re-transmits the tx, acting like a relay.\n\nRecently we've seen also the new options using [Mesh networks with LoRa devices](https://www.hackster.io/davidefa/esp32-lora-mesh-1-the-basics-3a0920), that can connect P2P multiple relays and create an ad-hoc network, that needs only a single point connected to the rest of the internet.\n\nWe've seen that through these Mesh networks it is possible to connect bitcoin and LN nodes and have perfectly fine Bitcoin payments between users.\n\n[Another option could be using Ecash](https://darthcoin.substack.com/p/bitcoin-adoption-using-ecash), that could be used offline for P2P payments. Only the receiver that want to "melt" the ecash tokens must be connected to the rest of the internet and redeem his tokens through any LN wallet. Yes, this is a custodial method (ecash is practically a digital gift card), there are risks, but in very specific cases (isolated communities) it could be helpful.\n\nFor sure there are many other options and tools. Please share them in comments if you know some.\nSo this FUD question should be discarded and move on. \n\nRead more FUD articles on: https://endthefud.org/\n \N 4819 \N 435496 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4117600506116 0 \N \N f 257859523 \N 2 150263068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:40:17.236 f \N \N \N 0 0 0 0 2 0 0 86513 2023-11-16 06:11:01.321 2025-03-29 22:39:47.092 47% of Bitcoin hashrate uses same custodian > In other words, this one entity holds the keys to at least 47 out of every 100 freshly mined bitcoins\n\nWhat is the reason pools and etfs and things don't hold their own keys? They aren't stupid people, they aren't lazy or scared (reasons that might apply to individuals who don't hold their own keys). Is it just convenience or a regulatory issue? https://twitter.com/mononautical/status/1777686545715089605 13348 \N 86513 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.13062789288386 0 \N \N f 248098461 \N 1 132888731 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 411140 2025-02-21 03:02:11.509 2025-03-29 22:39:47.092 I'm Oscar Merry and I'm building Fountain Podcasts. AMA. Hi Stackers!\n\nI'm Oscar Merry and I'm building [Fountain Podcasts](https://fountain.fm) - a Podcasting 2.0 app that rewards both listeners and podcasters for the value they bring to the platform.\n\nOn Fountain you can:\n- `EARN` by listening to any of your favourite podcasts. Earn more by listening to promoted content, creating clips, liking clips and comments, and supporting podcasts.\n- `CLIP` the most valuable highlights from podcasts. Earn when other listeners like your clips.\n- `SUPPORT` your favourite podcasts. Interact with hosts, guests and listeners with Boosts and replies. Stream sats for every minute you listen and send value back.\n\n\nI'd love to open a conversation about:\n\n- Podcasts\n- The Value for Value ethos\n- Incentives on tech platforms\n- Anything Fountain related\n\n\nThanks,\nOscar. \N 739 \N 411140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.37489702093473 0 \N \N f 229185959 \N 1 5323371 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443790 2025-03-19 14:15:32.067 2025-03-29 22:39:47.092 The Nationalization of the Work Force The economic numbers, like unemployment, inflation and GDP, are getting gamed. Layoffs are being offset by government hiring. Slowdown in the economy is being offset by government spending. No one in the actual economy wants to spend, so the government is counter-balancing it with spending of its own.\n\nAs interest rates rise and all the economic health indicators look increasingly horrible, the short-term Keynesian band-aids are being applied. After all, politicians have to *do something*, lest they be accused of not caring. This is, of course, an excellent example of high time preference behavior. Politicians really only worry about the next election and long-term consequences be damned! So what if government keeps growing? So what if inflation destroys peoples' savings? So what if the private sector mal-investment never has a chance to clear out? The game is to keep things the same so that they can get re-elected and they can always dip into the cookie jar of inflation to fund it.\n\nIn the short term, this is a very understandable strategy. Creating government jobs not only makes the unemployment numbers look better, but it also has the nice side effect of making those that get these jobs way more statist. These are not people that are going to vote for a reduction of government, they have strong financial incentives to never do that. And spending on unnecessary wars to prop up defense contractors? You think those people would ever vote for less spending?\n\nThe divide right now is not between liberals and conservatives. The divide is between the rent-seekers and productive people. And as currently comprised, it's about 50/50. And it's not who you think that's on the productive side. Sure, obvious groups like government employees, media and even the military, educational and health care industrial complexes are very obviously on the rent-seeking side, but there are others that you may think are productive but are not. Big tech, for example, is overwhelmingly on the rent-seeking statist side. The war-mongerers are on the statist side.\n\nThe productive people are the middle and lower class people that haul away your garbage and fix your AC and deliver your packages. And as the populace re-aligns, the productive people are correctly calling out the uniparty as the party that wants to keep the rent-seeking going.\n\nThere's only so much you can steal from the productive people before there's a revolution. But this is where the infinite pool of money that the central bank can draw from becomes the tool to tip the balance. You can co-opt the productive people by giving them government jobs. And make no mistake, that's exactly the strategy being executed right now. The public sector is growing fast, even as the private sector shrinks. They are nationalizing the work force so that voters are dependent on the state. And honestly, it's not that far from socialism. If 100% employment by the state is socialism, then we're about half-way there, roughly speaking.\n\nBut this strategy has consequences. As more people come on the government payroll, either through direct payment, as with government employees, or through subsidization of industries, the money to pay them has to come from somewhere. If it's explicit taxes, that will get the politicians voted out real quick, so it's not really an option. Inflation, on the other hand, is great because it's a stealth tax and there's plausible deniability by blaming greedy corporations and so forth. \n\nBut inflation debases savings and soon, people can't afford to live on their old salary. Not least of this is the bloating public sector, whose salaries tend to adjust last. Thus, there quickly becomes a large and powerful lobby of government workers who will demand raises. And this creates a major dilemma for those in power. Do you give them raises and exacerbate inflation, or do you deny them raises and get voted out of power? The high time preference nature of politicians almost guarantees the former outcome. But then, that extra money adds inflationary pressure to the economy. This may hold things off for a bit, but the bigger the public sector, the faster prices in the rest of the economy increase. Inflation becomes a problem again. Soon, the government employees, stronger now, perhaps as a larger constituency and having a precedent to work with, will again demand raises.\n\nRaises -> Inflation -> Raises -> Inflation -> …\n\nThe only end here is hyperinflation and that's not pretty.\n\nI'm not going to suggest that it's around the corner, but as Caesar once said, "aleta iacta est" or "the die has been cast." The expansion of the public sector is inevitable and thus, so is inflation and eventually hyperinflation. \N 5703 \N 443790 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.5371281269296 0 \N \N f 158831487 \N 1 72057002 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 306232 2024-11-24 08:47:37.156 2025-03-29 22:39:47.092 Peter McCormack "It is over, I won, welcome to law Motherfucker!" (against CSW) \N https://twitter.com/PeterMcCormack/status/1750539852905386408 8448 \N 306232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0261254426077 0 \N \N f 262135500 \N 2 159526290 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 407795 2025-02-18 11:49:11.973 2025-03-29 22:39:47.092 Don't pay now (in fiat) what you can pay later Peter McCormack has mentioned a couple of times that he's postponing (or considering it?) his tax payments so that instead of paying x amount of BTC's worth now he can pay them a fraction of x BTC's worth at some later point.\nApparently in the UK, if you don't pay your taxes on time, they'll send you reminder letters and you can postpone it for a long time without serious consequences, like hefty fines. The worst they will do is add some meagre interest.\n\nSo postponing your tax payments is effectively an interest-free or low-interest loan from HMRC (if you believe you *owe* them anything to begin with) you're guaranteed to get, regardless of your credit history.\n\nIt's a speculative attack on fiat and its mispriced discount rates. Discount rate arbitrage.\nThey think the 5% or whatever interest they're charging you is a lot and that it's enough to scare you into paying on time; little do they know...\n\nI've applied this approach myself in a more softcore version to two things recently:\n\n1. My water bill.\nI used to pay twice a year - in March and September, for 6 months up front. My next bill, £267, was due by the end of this month. I looked at the water company's website yesterday and found I could switch to monthly payments. So I switched to paying monthly, which compared to the semi-annual payments was like a zero-interest installment plan. Not only that: the first payment I'm due is on May 1st! So no water bills for me for another 6-7 weeks.\n\nI don't need to tell you where that £267 went.\n\n2. My mortgage.\nI had made overpayments on my mortgage a long time ago and had forgotten about it. My mortgage allows me to underpay from the overpayments made in the past.\nI was due a payment last week. The day before I called the lender and arranged an underpayment, and ended up not paying at all this month. It means my monthly payments will go up a bit in the future, but at the 3.39% interest rate it was a no-brainer.\n\nAn extra £770 not debited from my bank account and exchanged for you-know-what. \N 9335 \N 407795 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 15.9198068839429 0 \N \N f 226643974 \N 2 131803275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 407657 2025-02-18 09:25:07.472 2025-03-29 22:39:47.093 What is the best takedown of Bitcoin out there? Though I'm a pretty stubbornly commited maxi, I've seen many articles that predict Bitcoins death or irrelevance and the vast majority of them are just weak sauce on top of flimsy uninformed misrepresentations.\n\nI'd like to see a solid argument for why Bitcoin will fail, I want to properly steal-man the opposing view, and I want to have a deeper perspective as to what the risks and negatives are with Bitcoin.\n\nIf you share a good article, essay, book, podcast or any piece of media that legitimately makes a case against Bitcoin, you get 1000 Sats \N 1650 \N 407657 \N \N \N \N \N \N \N \N health \N ACTIVE \N 9.18868765838898 0 \N \N f 245647012 \N 3 163348478 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406220 2025-02-17 07:34:15.721 2025-03-29 22:39:47.092 Understanding Fees On Stacker News Hey stackers. After a recent conversation with a friend of mine, I came to the conclusion that I need to re-found the ~memes territory and build a massive bitcoin meme gallery complete with all of the best bitcoin memes in the world to help preserve, protect, and proliferate quality bitcoin culture.\n\nAs I have been experimenting and learning how territories work, I came to the realization that I don’t fully understand how the different types of fees work and where the sats actually go specific actions. \n\nFor my own benefit as well as the benefit of the SN community as a whole, I thought I would take the time to put together this post complete with sankey diagrams to clarify where sats go when someone completes the following actions. \n\n- pays to post\n- pays to comment\n- boosts a post or comment\n- zaps a post or comment. \n\n# Pay To Post\nThis one seems pretty straightforward. You have to pay some sats to post in a territory to prevent runaway spam and low quality posts.\n\nAs far as I can tell, 70% of post sats go to the territory founder and the other 30% go to the rewards pool.\n\n![](https://m.stacker.news/57681)\n\nSo, if Alice pays 100 sats to post in ~bitcoin, then 70 sats go to the territory founder and the other 30 sats go to the rewards pool.\n\nEasy peasy.\n\n# Pay To Comment\nPaying to comment is another spam prevention mechanism. I believe it only costs 1 sat to comment if you’re logged in and 100x that to comment anonymously. I have seen discussion about raising the comment fee to 10 sats.\n\n![](https://m.stacker.news/57682)\n\nIf Alice comments while signed in, she pays 1 sat. If she wants to comment anonymously, she pays 100 sats.\n\nThese sats are split 70/30 between territory founders and the rewards pool.\n\nAgain, easy peasy.\n\n# Pay To Boost\nUsers can also boost to gain more visibility in several ways.\n\nBoost in the home feed for 100k+ sats to be at the top of home + territory for 30 days. \n\n![](https://m.stacker.news/57683)\n\nBoost in a territory for 10k+ sats to be at the top of that territory for 30 days.\n\n![](https://m.stacker.news/57684)\n\nIt also seems that you can boost comments to get better visibility within a reply thread.\n\nIf Alice pays 100k sats to boost a post in ~Bitcoin, then that post is at the top of the home feed as well as the ~bitcoin territory for 30 days.\n\nAll boost payments seem to be a 70/30 split between the territory founders and the rewards pool.\n\nStraightforward.\n\n# Zaps\nZaps are where things get a little confusing for me so maybe this is where I need some clarification. When do users get sats that that are zapped?\n\nThis is my understanding…\n\n## Post Zaps\nIf Alice shares a quality POST in ~bitcoin and it receives 1000 sats via zaps, Alice does NOT receive any of those sats (I think) because that only incentivizes spam and Sybil attacks. Instead (I think) those zaps are split 70/30 between the territory founder and the rewards pool.\n\n![](https://m.stacker.news/57685)\n\n## Comment Zaps\nIf Alice COMMENTS on a post and that comment receives 1,000 sats via Zaps, (I think) she receives 70% of those sats, 30% go to the rewards pool, and the territory founder gets 0%.\n\n![](https://m.stacker.news/57686)\n\nAre all of these scenarios correct? If I am wrong, please let me know so I can put together an updated post. \n\nAside from referrals and rewards, are comments the only way for regular users to stack sats? \n\nI want to make sure that I am giving people accurate information and I think there are other stackers who would benefit from additional clarification as to where the sats flow.\n\nThanks in advance for any discussion surrounding this from any territory founders or developers. \n\n\n \N 5522 \N 406220 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.2967315752807 0 \N \N f 138680609 \N 2 198695858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422637 2025-03-02 15:34:51.18 2025-03-29 22:39:47.093 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/350934) are the updates stackers shared from all their latest work projects. \N 19463 \N 422637 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.50627718653836 0 \N \N f 354339210 \N 3 241114288 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 307579 2024-11-25 08:06:26.002 2025-03-29 22:39:47.093 Common psychological biases that bitcoiners have One of the primary reasons I got involved with markets is my interest in psychology. Humans are a fickle bunch, and it's fascinating to observe the human condition in such a clear, mathematical way.\n\nOver the years, I've noticed (and fell into myself) a few common psychological biases that many Bitcoiners can develop.\n\nMaybe this short list can help uncover some biases in our own thinking, or help prevent newcomers from falling victim to them as well.\n\n## Confirmation bias\n\nhttps://imgprxy.stacker.news/OYoXFjq_OlmSe-WEUri7XPmqkS_C7qHpRGdjw6GQolQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZXMuc3F1YXJlc3BhY2UtY2RuLmNvbS9jb250ZW50L3YxLzU5NjU4ZTlhNGM4YjAzOTA0MjFiYzJlOS8xNTE5NDA0NDYzNjYwLTJKVlNIQkQ4NUJJNEw2TkwwUDAyL0JpdGNvaW4rQmVoYXZpb3IrQmxvZytDcnlwdG9jdXJyZW5jaWVzLnBuZw\n\nThe big obvious one here. \n\nGiven our wide range of backgrounds, we all tend to preconceive our own vision for Bitcoin, and thus tend to argue with one another over what Bitcoin is.\n\nTake Jason Lowery, for example. Whether you agree with his marketing tactics or not, he sure knows how to get a discussion going. He can rile up a crowd and let them do all the talking for him. His "vision" for Bitcoin is a controversial one for some, but he's dead set on his "vision" in the same way everyone else is. \n\n![blocksize meme](https://miro.medium.com/v2/resize:fit:850/1*7DUXbPatQdissLauh_YF5w.jpeg)\n\nConfirmation bias leads to block size debates, splits in the "community," tribalism among bitcoiners, etc. etc..\n\nIt's also why trading and technical analysis is basically just astrology. You can find whatever data you need to support your own thesis on where the market is going next.\n\n## Hindsight bias\n\nDecisions from the past become a lot more clear as time passes on. You think you could've foreseen a certain outcome after the fact. \n\nhttps://imgprxy.stacker.news/GE3WT6Xyw7nBpl1pC_RS-02zAC8WaG6bLiwiWc8qTO0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9hZ2lsZWZvcmFsbC5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvSGluZHNpZ2h0LUJpYXMtVGhyZWUtTGV2ZWxzLnBuZw\n\nYou feel like an idiot buying at the lows, only to feel like a genius months later when the price springs back upwards. You feel like a genius buying at all time highs with euphoria in the air, only to feel like an idiot months later when the price collapses.\n\nThen as a real bitcoiner, you learn to feel like a genius simply buying anywhere at all.\n\nHindsight bias is a dangerous one and a tricky one to kick. You experience it because you try to _predict_ rather than _react_. The less you dilute the future with your own ideas, the more obvious the future becomes. \n\nI think **reaction** is an impulse bitcoiners have trained very well, and is why bitcoiners tend to be more accurate about calling out crypto scams and the macroenvironment. **Prediction** is why crypto bros are always so vague imo. They have their own idea of the future, but it's not all that fleshed out in reality. [Alex Mashinsky once saw a "vision"](https://twitter.com/i/status/1616426547292045314) for 7% risk-free interest for whole globe. \n\nTrain yourself to react rather than predict so you won't be shocked when your lending platform goes bankrupt, or when your beloved staking platform fails to scale sustainably.\n\n## Recency bias\n\nSpeaking of the future, bitcoiners sure do love to predict it. No denying that. As a bitcoiner, the future really does excite me, and Bitcoin has framed an entirely different perspective on how I see things developing moving forward.\n\nBut of course, we're all extrapolating the future with a limited data set.\n\nWe assume things are they are today will be the same in the future. It's hard to see beyond the current paradigm we live within, and it's even harder to ideate what new systems look like within a different paradigm.\n\nhttps://imgprxy.stacker.news/AcgxIhadIg5daSy4ryHjtg0Q-woS7_dxH-_AvXhOcpk/rs:fit:600:500:0/g:no/aHR0cHM6Ly9yb2NoZW1hbWFib2xvLmZpbGVzLndvcmRwcmVzcy5jb20vMjAyMy8wMi8xMTgwMDQwMTdfMjMyMTczNjgxNTQ3NDc4XzE3NDcwNDk0NTMwMDI3NzMzMF9uLmpwZw\n\nI like this [Michael Saylor interview](https://www.youtube.com/watch?v=tceAliB96lw) because it really crystallizes this idea for me.\n\nYou can't understand money until you understand Bitcoin. Bitcoin is the _first_ definition of what proper money should be. It just took thousands of years for humans to figure it out. \n\nHow that changes the future, given our brains' bias to fiatville, is probably quite more murky than most bitcoiners would like to admit.\n\nThis definitely isn't a comprehensive list, so please share any other common biases or weird psychological phenomena you've noticed among bitcoiners too! \N 20683 \N 307579 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3737242943667 0 \N \N f 182255854 \N 2 149211602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434724 2025-03-12 07:34:55.871 2025-03-29 22:39:47.093 Utxo Dealership: forthcoming BTC privacy tool & winner of Tabconf 2023 Hackathon \N https://www.youtube.com/watch?v=gHqB8htq8Kg 9026 \N 434724 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 5.96433175336522 0 \N \N f 273574467 \N 2 85133678 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 01:37:32.104 f \N \N \N 0 0 0 0 1 0 0 449969 2025-03-23 16:44:32.586 2025-03-29 22:39:47.093 LN eSIM Hi All,\n\nPlease check out https://www.lnesim.com - we're not the cheapest but you'll find some package might be 40-50% cheaper than bitrefill. Here's an example:\n\n\nhttps://www.bitrefill.com/au/en/esims/bitrefill-esim-albania/\n1GB: $10.78\nhttps://www.lnesim.com/destination/albania\n1GB: $6\n\nNo email required and we're BITCOIN only. We don't take doggy coin.\n \N 20454 \N 449969 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.796572284693 0 \N \N f 134448745 \N 1 87320240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422595 2025-03-02 15:15:29.127 2025-03-29 22:39:47.093 Created this LN enabled website, feedback will be appreciated Hey bitcoiners, this is my first Bitcoin ⚡ enabled project, so I would love some feedback from the community: \n\nThe site is www.QuestionsForGood.com\n\nAnd the concept is simple: You post a question directed to a specific person, pledge some sats to your favorite charity and if that person answers, those sats are release to the charity. Other people can boost questions by adding additional pledges to it. All via LN ⚡\n\n\nWould love comments around:\n\n1) Does it make sense?\n\n2) Do you see any super relevant bugs?\n\n3) Is the UI/UX clear?\n\nPS: I have never written a single line of code (this was made with nocode tools), so please have mercy on me if you find it buggy. It is definitely still in Beta. \n\n \N 18269 \N 422595 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 20.8985038923148 0 \N \N f 168817239 \N 2 114725942 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432987 2025-03-10 18:09:49.752 2025-03-29 22:39:47.093 Do Business with Bitcoiners Find goods and services offered by and for Bitcoiners. https://www.bitlist.com/ 18409 \N 432987 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 1.72577207679506 0 \N \N f 230074360 \N 1 75241563 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455544 2025-03-27 06:01:48.213 2025-03-29 22:39:47.093 Fedi Alpha Is Now Available For Testing \N https://www.nobsbitcoin.com/fedi-alpha-available-for-testing/ 14122 \N 455544 \N \N \N \N \N \N \N \N Ordinals_Inscriptions_Runes \N ACTIVE \N 6.32642465547306 0 \N \N f 182254216 \N 2 215775695 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 405496 2025-02-16 16:27:27.833 2025-03-29 22:39:47.093 Install, Run, Publish & Connect 𝚙𝚑𝚘𝚎𝚗𝚒𝚡𝚍 to SEND/RECEIVE sats to/from SN ![](https://m.stacker.news/53487)\n\n- - -\n# 0. Intro\n\nSN is offering you many ways to be a sovereign bitcoiner and remove your stash from its custodial node. Some options are free, actually FOSS! Just _cost_ you some time to set it up and the energy/connection to keep it running. Consider taking action! My previous post to [Easily attach Coinos.io wallet to SEND & RECEIVE sats from SN and HODL](https://stacker.news/items/694593/r/supratic)\nwas much easier and faster to set up. This one for **`phoenixd`** will require you some tech skills and hands on terminal. Are you ready?\n\nThe goal of this guide is to help you set up **`phoenixd`** as [your SN attached wallet](https://stacker.news/settings/wallets/phoenixd) for both, **sending to** and **receiving froom** sats. In this way, we can help SN reach the 100% non-custodial status that is aiming to achieve, and for us stackers, to be more responsible with our sats and zaps. On top of that, how cool is to see this little `p2p` tag on the notification page!\n\n![](https://m.stacker.news/53431)\n\nOne of the premises for deciding to attach this wallet, is that you need a machine that will ideally stay up and running 24/7. You can also do it for just for fun and to learn something new.\n\nI'll start from zero, assuming you never heard of **`phoenixd`**, nor even opened a terminal window. It will be a bit geeky, but not that hard as you may think. These below are the three goals we'll achieve:\n\n1. [Installing](#) **[`phoenixd`](#)**\n2. [Make](#) **[`phoenixd`](#)** [publicly accessible](#)\n\nIn case you don't want to go through all this trouble and technicalities, you can check @t0m's [Nodana - Phoenixd As A Service](https://stacker.news/items/538161/r/supratic), or install it on your [Start9 node ](https://github.com/Start9Labs/phoenixd-startos)and head straight to the point...\n\n3. [Attach](#) **[`phoenixd`](#)** [to SN](#)\n\n- - -\n# 1. Installing **`phoenixd`**\n\n![](https://m.stacker.news/53437)\n\nYou can find more information about **`phoenixd`** from the official website [`//phoenix.acinq.co/server`](https://phoenix.acinq.co/server)\n\nDownload and unzip the latest of **`phoenixd`** source code available in the github repository and save it in your computer. It should be available from https://github.com/ACINQ/phoenixd/releases \n\nYou will need `gpg` for signing, you can get the key from the links provided in the release page above. Once downloaded (remove the .txt extension if required) save it in the same **`phoenixd`** unzipped folder. `cd` into the same folder via terminal and run:\n\n```\ngpg --import padioupm.asc\n```\nto verify the key you'll also need `sha256sum` installed in your environment. You can open another terminal window and check if theere with `gpg --version` and if not there, install it. Then proceed with:\n\n```\nsha256sum -c SHA256SUMS.stripped\n```\n\nOpen your terminal and verify the gpg signature. Once done, you are now ready to run the daemon with:\n```\n$ ./phoenixd\n```\nThe terminal will provide some initial explanation on how the backup and continuous liquidity work:\n\n```\nBackup\nThis software is self-custodial, you have full control and responsibility over your funds.\nYour 12-words seed is located in /Users/xxx/.phoenix, make sure to do a backup or you risk losing your funds. Do not share the same seed with other phoenix instances (mobile or server), it will cause issues and channel force closes.\n\nPlease confirm by typing [I understand]:\n```\n\n```\nContinuous liquidity\nLiquidity management is fully automated.\nWhen receiving a Lightning payment that doesn't fit in your existing channel:\n- If the payment amount is large enough to cover mining fees and service fees for automated liquidity, then your channel will be created or enlarged right away.\n- If the payment is too small, then the full amount is added to your fee credit, and will be used later to pay for future fees. The fee credit is non-refundable.\n\nPlease confirm by typing [I understand]: \n\n```\n\nYou'll be asked to type `I understand` multiple times. Type it and press enter\nIf there are no error, you should be seeing **`phoeninxd`** running:\n\n```\nPhoenix server is about to start, use phoenix-cli or the http api to interact with the daemon. This message will not be displayed next time.\nPress any key to continue...\n\ndatadir: /Users/sintetiko/.phoenix\nchain: Mainnet\nautoLiquidity: 2000000 sat\nnodeid: 0318aa189af0ba0c616647954bea00c0bb6b2c4a8af2891174c21caa72ed6a24c7\noffer: lno1zrxq8pjw7qjlm68mtp7e3yvxee4y5xrgjhhyf2fxhlphpckrvevh50u0q250urkyzyzcw3637xeul30j74g94f5jkntx6cewmen62dqmlukzuqszpaj7spt5w0l0a6gdrpdrxg4kmqrqc0hs5xt944ac575v2yy0q93qqvaynn3268guwvegwwnznw4ccnpxs0w4fld2ae43m90xj2zvwx67w5rqfmnkay6rsww0m8yf0mpzzxwxjs0hqgp56fpaq7xgn7xphsn6f20sr2c0lguzwmxug9rzphselw9h5hdukqqsaqqnl0elfqrt4vvd5m02ge9hjq\nconnecting to lightning peer...\nconnected to lightning peer\nlistening on http://127.0.0.1:9740\n```\n\nPerfect! Now open a new terminal window and type to double check:\n```\n./phoenix-cli getinfo\n```\nthe output will be something like:\n```\n{\n "nodeId": "0318aa189af0ba0c616647954bea00c0bb6b2c4a8af2891174c21caa72ed6a24c7",\n "channels": [\n ],\n "chain": "mainnet",\n "blockHeight": 862274,\n "version": "0.3.4-1a872b4"\n}\n```\nLook's like everything is running! You can play around with the deamons if you like and try to generate a Lightning invoice:\n```\n./phoenix-cli createinvoice \\\n --description "my first invoice" \\\n --amountSat 12345\n```\nCan you see it? Nice! Now we need to...\n- - -\n# 2. Make **`phoenixd`** publicly accessible\n\nIf we refer to the output above, we could see **`phoenixd`** is listening to an internal IP `127.0.0.1` at the post `:9740`. This obviously will not work as it's not accessible from the internet.\n\nThere's no need these days to be a network engineer to have locally running applications publicly available. Luckily, technology evolved exponentially, and today **we have multiple ways and many tools available** to fix this issue, DYOR! For this guide, `ngrok` is probably the go-to solution: technically isn’t free, more like freemium, but the free tier costs zero dollars and is sufficient for most development purposes, like this. \n\nFirst thing first, install it on your machine:\n```\nbrew install ngrok/ngrok/ngrok\n``` \n\nRun the following command to add your authorization token to the default ngrok.yml [configuration file](https://ngrok.com/docs/agent/config/).\n```\nngrok config add-authtoken 3mPlIq6APs8jVPPdXEgj6Oubln4_5kxeqidDwwy437T3o4GMQ\n```\nNow let's put **`phoenixd`** online at an ephemeral domain, forwarding to your upstream service:\n```\nngrok http http://127.0.0.1:9740\n```\nOnce running, your endpoints will be listed on the `ngrok` [endpoints page](https://dashboard.ngrok.com/cloud-edge/endpoints).\n\nIf you are planning to keep **`phoenixd`** running 24/7 it's worth to protect it by securing ingress, defining some parameters that are easy and free to use. Some options to have it done are [OAuth](https://ngrok.com/docs/http/oauth/?ref=getting-started&cty=agent-cli), [webhook verification](https://ngrok.com/docs/http/webhook-verification/?ref=getting-started&cty=agent-cli) and [OpenID connect](https://ngrok.com/docs/http/openid-connect/?ref=getting-started&cty=agent-cli). \n\nWhat's important now is that we finally got our **url** to access **`phoenixd`** publicly and securely!\n```\nhttps://44f4-146-70-194-38.ngrok-free.app/\n```\n\nCan you see it? Nice... Let start now setting up the connection with SN.\n- - - \n# 3. Attach **`phoenixd`** to SN\nFrom your SN user menu in the top right of your desktop screen, let's go to [`SN > wallet > attach wallet > phoenixd`](https://stacker.news/settings/wallets/phoenixd) or just click on this link [`https://stacker.news/settings/wallets/phoenixd`](https://stacker.news/settings/wallets/phoenixd)\n\n![](https://m.stacker.news/53408)\n\nThe first **url** input is the IP or domain your **`phoenixd`** is accessible from. That one that we just set in the previous section: \n\nGo back to a new terminal window and type[^1]:\n```\nsudo nano .phoenix/phoenix.conf\n```\n𝐍𝐨𝐭𝐞: 𝑇ℎ𝑒 𝚙𝚑𝚘𝚎𝚗𝚒𝚡.𝚌𝚘𝚗𝚏 𝑓𝑖𝑙𝑒 𝑠ℎ𝑜𝑢𝑙𝑑 𝑏𝑒 𝑎𝑐𝑐𝑒𝑠𝑠𝑖𝑏𝑙𝑒 𝑓𝑟𝑜𝑚 𝑦𝑜𝑢𝑟 𝒓𝒐𝒐𝒕 𝑢𝑠𝑒𝑟 𝑓𝑜𝑙𝑑𝑒𝑟, 𝑦𝑜𝑢 𝑐𝑎𝑛 𝑜𝑝𝑒𝑛 𝑖𝑡 𝑤𝑖𝑡ℎ 𝑦𝑜𝑢𝑟 𝑝𝑟𝑒𝑓𝑒𝑟𝑟𝑒𝑑 𝑡𝑒𝑥𝑡 𝑒𝑑𝑖𝑡𝑜𝑟.\n\n\nIn this file, you'll find:\n- the **primary password** for sending as `http-password`, together with \n- the **secondary password** for receiving as `http-password-limited-access`.\n\nNow, finally, copy and paste this values in the respective input fields. \n\n![](https://m.stacker.news/53478)\n\nWe are nearly there... set:\n\n- **desired balance** = `0`,\n- **max fee** to a min of `1%` and...\n- . ... click on the yellow **[ attach ]** button.\n\n![](https://m.stacker.news/53435)\n- - -\n# 4.0 That's it! \nYou just did your first step into bitcoin sovereignty!\n![](https://m.stacker.news/53479)\n\n- - -\nIn case you are serious with your **`phoenixd`** node and want to keep it and use it, there's a [supercool Ui you can self-host or set up from pwallet.app](https://stacker.news/items/695884/r/Design_r). Or as the master @Darthcoin teach us, _If I want to use phoenixd node, run it as a backend to LNbits or Alby HUb.\nI have waaaaay more options to manage and use it... And with that you can get NWC and multiple accounts too, with the same server._[^2]\n\n- - - \n[^1]: You can find more info and documentation on https://phoenix.acinq.co/server/api#security\n[^2]: quote from https://stacker.news/items/695884/r/supratic?commentId=695909\n\n \N 13878 \N 405496 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.4659251909841 0 \N \N f 170218435 \N 1 134789316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451299 2025-03-24 13:36:01.182 2025-03-29 22:39:47.094 A Culture Based in Lies is Doomed to Fail Not long ago I [wrote about taxation](https://stacker.news/items/460695). I wrote,\n\n> Anyone who is capable of logical thought and has seriously considered taxation in relation to other forms of theft will come to the conclusion that either taxation is theft or taxation is just some other thing that they refuse to call theft.\n\nA few years ago I had a bit of an awakening. I started to see how deeply shared lies have become in our culture. What I mean is that there are things that if pressed most people will admit are not true yet we rarely hear people admit this. They speak and accept the lie. I think we do a lot of pretending. We pretend that taxation is not theft. During this awakening I decided that I would no longer lie to myself. I would no longer use terms that are psyops. Phrases like "public schools". They are government schools. Why don't we call them that? My guess is that its because public sounds nicer. I'm not gonna be a jerk about it, but when I am using words I'm not going to use the language of propaganda. \n\nThere were several commenters objecting to my post about taxation but none of them actually had any logic or reason to contradict the statement that "taxation is theft". It all sounds like coping to me. It sounds like discomfort with the truth. They were all people rationalizing this form of theft. They were saying we have to have taxes because the current system will fail without it. How will we fund our military defense. I've read the arguments from anarcho-capitalists and they make sense to me. \n\nThey point out that in a truly free society insurance companies would likely fill many of the functions of governance that states fill today. Defense agencies would be employed by these companies. As we have seen in the last two centuries the most prosperous nations are those with the most free markets. There are other factors and I'm a aware of them but this is the short answer. My broader point is that to say that taxation is a necessary evil to maintain the status quo isn't wrong. I agree with you. I just reject that the status quo is the best we can do. I think we should be honest about what taxation is and how evil the status quo is. \n\nWhen I hear people justifying taxation in this way it sounds like the same logic that was used to justify slavery. When you read the debates from the time prior to the war between the states you will see this come up. Today we rightly reject this reasoning for maintaining slavery. Slavery is morally wrong and even if its abolition risked harm to the status quo it should still be abolished. Today we know that not only is slavery morally evil, as [economists have demonstrated](https://mises.org/mises-wire/left-argues-slavery-was-economic-blessing-heres-why-they-are-wrong) it is actually less efficient and productive for societies as a whole.\n\nIt is my contention that we have not arrived at the ideal state of human organization. It is my contention that taxation is but one form of paying for the costs of governance. I also contend that until individuals stop lying to themselves we can never be truly free as a people. Taxation is theft. It is extortion. It is slavery. We should stop lying about it. We should stop pretending the state is good. Yes, some states are worse than others. That doesn't make the US government good. It makes it less bad. I believe we can do better. I believe that with more individual freedom we could be even more prosperous. \n\nDemocracy is but one for of human organization. Monarchists opposed it and some still do. In [Democracy: The God That Failed](https://mises.org/podcasts/democracy-god-failed) Hans-Hermann Hoppe makes a strong case for democracy leading to larger and larger wars. One reason for this is taxation. Because democracy is the allusion of government by the people it is easier to psyop the masses into believing that taxation is not theft. It is much easier for a subject of a monarch to look at the king with disdain for his taxation to fund his wars. It is much harder to see the truth when you believe that democratic governments are "the people". I don't have all the answers but I personally refuse to lie to myself and accept taxation as morally just, or a necessary evil. It is not.\n\nThe state is evil. The state has a monopoly on violence. As I said, not all states are equal. Only a fool would believe that the DPRK is better place to live than the US. That said, we will never rid ourselves of a problem until we recognize it as such. We will never evolve to become a more just society if we do not recognize the evil that is the state. \n\nBut, if we are really gonna talk about lies we tell ourselves lets not stop at taxes. If you and I are honest, we know that the state is not really preventing us from doing most things we aren't currently doing. It is us. We are our own worst enemies. But if you are a liberty minded person it can become a crutch to blame the state for every ill in society and by connection why you haven't reached your full potential. Don't fall into this trap. If you live in a relatively free and prosperous nation you have more opportunities than most humans that ever lived. I am writing this to myself as well. I need to reach my full potential. Stop making excuses and do thing things I know I want to do. The things that will make an impact on my life and those that I care about. \n\nTell the truth to yourself. Stop speaking lies. It is corrosive. \N 8998 \N 451299 \N \N \N \N \N \N \N \N security \N ACTIVE \N 3.06975322466226 0 \N \N f 76305031 \N 1 156331083 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451290 2025-03-24 13:32:23.153 2025-03-29 22:39:47.094 NiceHash Launches Instant Lightning Network Payouts for Miners \N https://www.nicehash.com/blog/post/game-changer-nicehashs-instant-lightning-network-payouts 19812 \N 451290 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 28.8350883017703 0 \N \N f 176221121 \N 1 144570131 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407918 2025-02-18 13:12:45.786 2025-03-29 22:39:47.094 The bitcoin beginner’s guide to Public Key Encryption Cryptography is one of those things that’s incredibly beautiful and mind blowing, but most people miss it because it’s difficult to explain and understand. That's too bad, because you don't have to be a tech nerd to see how cool it is! The problem is, most of us nerds don’t take the time to put these concepts into basic terms.\n\nRelatedly, I've found that a lot of people come to bitcoin without much technical understanding, especially when it comes to the coolest part of bitcoin, which imo, is cryptography.\n\nSo if that's you, this post is for you! There's no math or code here - I'd love to help you understand a key function (sry not sry for the pun) in the bitcoin protocol by explaining it in basic conceptual terms. \n\nThis is a long post, but I think it will be worth your time and hope you find it helpful and interesting!\n\n*(PS - Even if you are a nerd, I've always found it helpful when people have explained things like this this for me, so I hope this helps you in some way as well.)*\n_____\n## Symmetric / Asymmetric Encryption Basics\n\nI’m going to assume you’re somewhat familiar with symmetric encryption (if you ever played with codes and ciphers as a kid, you know this). In a nutshell, symmetric encryption means you and your friend share the same key, and that key is used for both encryption and decryption.\n\n*(If you're not familiar, check out the [Shift Cipher](https://www.youtube.com/watch?v=l6jqKRXSShI) as a very basic example.)*\n\nPublic Key Encryption is a kind of Asymmetric encryption. **One key can decrypt what the other encrypts.** The operation is reversible, which is how this becomes relevant to bitcoin, but we’ll get there later. The main difference between the public and private keys is that one is derived from the other. **The public key is derived from the private key.** If you have the private key, you inherently have the public key. Keep the private key private, or it defeats the purpose. \n\nIn short - with symmetric encryption, both parties have the same key. With asymmetric encryption, you are the only one with your private key, and the other party has access to your public key. The next section explains why this was originally necessary. \n\n_____\n## Here’s the traditional problem of symmetric encryption that is solved by PKE:\n\n**You need to send a secret message to a friend. You cannot send an encryption/decryption key to your friend because an eavesdropper can see and hear all communication channels.**\n\n*(i.e., we needed a way to privately communicate via the internet, but don't worry about putting it in that context)*\n\nHere’s how PKE solves this: \n* Your friend generates a private key (**kept secret from the eavesdropper AND from you**). \n* Your friend derives the public key and broadcasts publicly.\n* You encrypt your message **in secret** *with the public key* and broadcast the encrypted message.\n* **The message can only be encrypted with the private key, which is known only to your friend.**\n* Now you have a way to send secret messages to your friend!\n* If you want to *receive* encrypted messages *from* your friend, you can simply generate your own, separate private/public key pair, and have your friend encrypt their message with *your* public key. \n\nIf you’re confused, it might help to read those steps again, keeping in mind that the eavesdropper can only see/hear what is broadcasted between you and your friend, but they cannot see/hear what you do alone and in secret (in this case, encrypt/decrypt). \n\nSo far this isn’t relevant to bitcoin yet. \n\n*(Side note #1: this is computationally difficult compared to symmetric encryption. So when two parties need to send private messages in the presence of an eavesdropper (i.e., over the internet), PKE is used to encrypt and send only a symmetric encryption/decryption key. That way, both parties have the symmetric key and the eavesdropper does not, so symmetric encryption can be used safely from there.)*\n\n_____\n## Reversing the operations of PKE, and how that is useful\n\nSo far we’ve discussed encrypting data with the public key, which can only be decrypted by the owner of the private key. I mentioned earlier that you can reverse the operations, so now we’ll discuss encrypting data with a private key, which can then ONLY be decrypted by its derived public key. \n\n**In this scenario, everyone can decrypt your data** - so what’s the point of doing this? (*Spoiler alert: identity verification*).\n\nThe scenario is something like this: You want to post messages to a public forum, or send private messages via a previously secured channel, and you need to verify your identity w/ each message.\n\n**Prerequisite**: in most cases, you must be able to previously establish and prove your identity as you simultaneously broadcast your public key. \n\nOnce your identity is established and associated with your public key, you can encrypt your message with your private key, and, as stated, anyone can decrypt it with your public key.\n\n**Crucially, the public key will only be able to successfully decrypt the message if and only if it was encrypted with its associated private key.**\n\nThe point is not to send secret data. \n\nInstead, PKE allows you to “encrypt” a *signature* with your private key, and the associated public key is able to reveal the signature via decryption, mathematically proving to everyone that you are the true owner of the public key, validating your identity.\n\n*(Side note #2: going back to that prerequisite - there are third parties, called Certificate Authorities, that handle this for the most part. You know you’re sending stuff to Facebook because Facebook is able to verify their identity via PKE, and that is facilitated by a CA. The CA gives Facebook their private/public key pair, and the rest of us essentially trust the integrity of CA.)*\n\n_____\n## Finally, here’s how this applies to bitcoin, and this part is relatively simple.\n\nThe bitcoin blockchain is a ledger of transactions between **public keys**. \n\nThere is no "identity" inherently associated with a public key.\n\n**The only thing associated with a public key is the amount of bitcoin that has been sent to it according to the ledger.**\n\nThe only thing you prove to the bitcoin network via PKE is ownership of a public key, which leads us to the final piece of this puzzle: **signing transactions**.\n\nTransactions are initiated and validated by broadcasting a message to the network that essentially says **“here’s my public key, here’s the amount I want to send and which public key I want to send it to, and here’s a signature that has been encrypted by my private key and can only be decrypted by my public key which proves that I am the owner of the private/public key pair.”**\n\n*(Side note #3: To add a new public key to the bitcoin network/blockchain, you simply generate a new private/public key pair - **AKA, your wallet** - with the PKE algorithm used by the bitcoin protocol, and it is added to the blockchain once bitcoin is sent to it from another wallet.)*\n\nThat’s it! When you send bitcoin, the bitcoin network doesn’t know who you are, they just have mathematical proof that the owner of your public key has authorized the transaction. Don't lose your private key!\n\nIf you made it this far, feel free to ask questions (or make corrections if I have misstated any of this)!\n\nIf you found this interesting and want to dig deeper into the math itself, [this video below is a great place to start](https://www.youtube.com/watch?v=uNzaMrcuTM0). \N 19655 \N 407918 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.99463097623669 0 \N \N f 385585085 \N 5 30667550 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 403897 2025-02-15 10:45:06.301 2025-03-29 22:39:47.094 Should I start posting book reviews here? ok, so most of you know by now that I LOVE Young Adult and Adult books.\n\nI usually post reviews on my book pages on social media, but was wondering if any of you would like to hear what the latest scoop on what is going on in the YA Literary Landscape as of late. Some subgenres I will dive into are: \n\n1. Contemporary Fiction\n2. Science Fiction // Dystopian \n3. Fantasy (all types)\n4. Self Help and Growth\n\nThanks, and let me know your thoughts in the comments! \N 20826 \N 403897 \N \N \N \N \N \N \N \N education \N ACTIVE \N 22.259773404757 0 \N \N f 122734015 \N 1 209492778 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436201 2025-03-13 11:35:01.312 2025-03-29 22:39:47.094 Update from DarthCoin regarding his absence on SN \N https://primal.net/e/note1luq6thq350j3ge4zzsvnl8t4x67l9pyqfj4nuhcpt43ykrryncnqazl438 18557 \N 436201 \N \N \N \N \N \N \N \N news \N ACTIVE \N 7.91797262313029 0 \N \N f 6027302 \N 1 80555820 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 05:02:19.758 f \N \N \N 0 0 0 0 1 0 0 406917 2025-02-17 16:17:50.129 2025-03-29 22:39:47.094 Is it ok to shill new BTC venues? I recently onboarded a few merchants and when it's a physical location, they're now on [btcmap.org](https://btcmap.org/). Is it ok to share those new venues here ? \n\nAs we're still so early and there are actually so few places on the map, I thought it could be cool. Maybe even an onboarding contest :) \N 13406 \N 406917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8810999701717 0 \N \N f 230742060 \N 2 142930106 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 443617 2025-03-19 12:43:06.488 2025-03-29 22:39:47.094 Obscura: The VPN that can't track your activity \N https://obscuravpn.io/ 20586 \N 443617 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 2.44139693713226 0 \N \N f 553261416 \N 3 108733714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:29:14.672 f \N \N \N 0 0 0 0 2 0 0 402826 2025-02-14 05:47:27.506 2025-03-29 22:39:47.094 Phoenix Beta Wallet Migration As you may already know since it was mentioned on SN [here](https://stacker.news/items/207349), Phoenix released a new blog post last week to announce the new Phoenix wallet: [a 3rd generation self-custodial Lightning wallet](https://acinq.co/blog/phoenix-splicing-update)\n\nI applied for the beta version by mailing them at phoenix@acinq.co and they accepted me.\n\nIn this post, I want to share some screenshots during wallet migration.\n\n---\n\nAfter downloading the new beta version, you get a prompt to migrate to the new wallet:\nhttps://imgprxy.stacker.news/jeW7bQGUOdunRnm1xU6LRq6LNzEDUT6rYDupM-iCsC4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MveWRuU0o5MFcvc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAwMmUuanBn\n\n\nIt mentions that all channels will be merged and the process is automatic:\nhttps://imgprxy.stacker.news/TPHEKWpgYSvlod1VaztwxKeE6EK-Z9-5amTTZyjjD0Q/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvWFl3cUdkYjMvc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAwM2UuanBn\n\nIt mentions that 6 out of 9 channels are empty or have less than the dust limit in them. These channels will be closed, the sats will go to the miners and I will lose this inbound liquidity. Maybe I should have filled my channels before migrating so I can keep all this inbound liquidity but I didn't care enough so I continued anyway.\nhttps://imgprxy.stacker.news/wPgD2bKhMJIP8Q893Lw7gQDRZmOsNnYEhDlIyb9cGo4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvZ2pDY3JrdG4vc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAwNGUuanBn\n\nMigration in process ... migration took less than 30 seconds\nhttps://imgprxy.stacker.news/rhCapbdYYrYVJ42M_VABjS7HXm7Wyr96pEWqbk8UR8c/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvV3BrZExRSGgvc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAwNWUuanBn\n\nDone! The first thing I noticed is that my transaction amounts are also properly hidden now.\nBefore, using the "hide my balance" option only did hide my balance but not the transaction amounts.\n_(Their German is also not the best, lol. It's spelled "Glückwunsch!" not "Glückwunsche!". Correct plural of "Glückwunsch" would be "Glückwünsche" but we don't use plural for "congratulations" in German.)_\nhttps://imgprxy.stacker.news/tj46SkzAWnzjSQ8Hu-B8FJ_ThUedKQ1IrOjzlhS5MvA/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvaHRTdm1oUGQvc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAwNmUuanBn\n\nLet's check out the wallet! Settings don't seem to have changed much:\nhttps://imgprxy.stacker.news/7Cur9M6xi8w4kaxOdto9JX_tgZ1-B3COcKw2PO1TUgQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvWTBITXd5dlcvc2lnbmFsLTIwMjMtMDctMTktMDExMzIyLTAwMi5qcGc\n\nClicking on "Payment options" reveals a legacy LNURL authentication scheme. Interesting. Don't know anything about the details though. What is the difference to the standard scheme?\nhttps://imgprxy.stacker.news/NfuwQ4E5rV3a3l405wWoqNgE5Qb-IdCwCWFvvixj9kM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvNXlkTjIyUmovc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAwN2UuanBn\n\nChannel mangement:\nhttps://imgprxy.stacker.news/Uxo1dtye1gZY-ZUqoJIXrZq7Uj3mUsfP64ClPfY6uGM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MveDFjckJTNlovc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAwOGUuanBn\n\nClicking on help: What happens with L1 payments if the miners fees don't adhere to my configured fee policy?\nhttps://imgprxy.stacker.news/78igafmI37pou4nQcZMIb6l-vsC6y2DlVjchjDBGxn4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2Mva2d6cm1oWmcvc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAwOWUuanBn\n\nWallet info: There is a swap-in wallet using descriptors and a final wallet using zpub now! I think this wasn't shown to the user before.\nhttps://imgprxy.stacker.news/ql4MVASIMFeYcGMuxm5_U3s8lEHR7HaVhgkItZSEjEg/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvTHMxYzYzS0Ivc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAxMGUuanBn\nhttps://imgprxy.stacker.news/bb7Z4oUih0KL65D5xBvXxLmGTHoUGogotx4Oyb1eGfc/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2Mvc2Z3TnpOR0Mvc2lnbmFsLTIwMjMtMDctMTktMDA1NjI3ZS5qcGc\nhttps://imgprxy.stacker.news/uLbizI4Y_icR4AsHIe6Wd1HyoClx9qyIXKy4QdNbTIA/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvUlZoYlpMdzYvc2lnbmFsLTIwMjMtMDctMTktMDA1NjA5ZS5qcGc\n\nAs expected, "Payment channels" only shows a single channel now. There seems to be a minor bug regarding fiat currency however. I only see "?! EUR" where the amount in EUR should be shown.\nhttps://imgprxy.stacker.news/o5jGNysO7QQi1HkFsCbaI9hLdQHtXa2SqFBgMkf9vEU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvdkhLMmd4dlAvc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAxMWUuanBn\n\nSlight UI/UX change for receiving payments:\nhttps://imgprxy.stacker.news/7GuJApPL8ob7JMiep-AHalKyS5rl80aGHZXlszJxyoE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvOFB4d1BRMTkvc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAxMmUuanBn\nhttps://imgprxy.stacker.news/kWtexuz4LdM6zCH8mEJ2KdD5B-tnUZfhkmtUGhGRsEg/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvazV2eWMyeFAvc2lnbmFsLTIwMjMtMDctMTktMDAzNDUyLTAxM2UuanBn\n\nSending seems to look the same as before:\nhttps://imgprxy.stacker.news/hoNp-nZDrYigolsqrOmXC3E9chCdG7_QgbMb4qILG8w/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvWlJZeERKY0Ivc2lnbmFsLTIwMjMtMDctMTktMDA0MTI2LTAwMmUuanBn\n\n---\n\nSince I still have enough inbound liquidity, my first deposit didn't trigger any splicing.\nSo I still have to see splicing in effect. I'll report back when that was the case.\n\nI'll also send ACINQ a link to this post. I think they don't have a SN account yet. Maybe they can answer my questions here? :) \N 16259 \N 402826 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 12.2050340169183 0 \N \N f 174650740 \N 1 85927012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454895 2025-03-26 16:16:57.466 2025-03-29 22:39:47.094 Bitwarden Hack - How to Break Into Password Vaults Without Using Passwords 👀 This article is discussing an issue that was patched in April 2023 and does not affect current versions of Bitwarden.\n\n> (...) this issue was only a threat when using Windows Hello with the desktop application on a device that was already compromised to a level that allowed access to Windows Credential Manager on your Windows account (basically, you have malware on your device). Classifying the storage as plaintext is a little misleading, in my opinion. The key was stored in Windows Credential Manager, which can access the plaintext value from within the scope of the Windows account. It's not on disk in plaintext. Latest versions of the Windows desktop application resolve the issue (starting with the April 2023 release, version 2023.4.0). https://blog.redteam-pentesting.de/2024/bitwarden-heist/ 17991 \N 454895 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.8297166892795 0 \N \N f 803838709 \N 5 170952559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 407803 2025-02-18 11:57:08.668 2025-03-29 22:39:47.094 What “radicalized” you? What drove you to become such a psychopathic bitcoin enjoyer???\n\nI’m thankful to have not directly experienced anything painful that drove me towards Bitcoin, it was more so just coming to terms with the realities of our fiat system. \n\nThe cantillon effect just pissed me off lol \N 807 \N 407803 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.3040113504404 0 \N \N f 33709331 \N 1 108591389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441753 2025-03-18 09:19:33.803 2025-03-29 22:39:47.095 a metaphor about creating art I'm not really sure how to tell you about what you're about to read, other than it's an idea that I tried to express using words. I'm a literature girl, so think of this as a literature thing. That's why there's no capital letters.\n\n>art is pebbles on the beach \nimagine there is a sparkling shore and you have an open day to spend there. just you and the water washing up at intervals beside you. blue sky above, blue water at your feet and beyond the horizon. it fills your senses and makes you understand what infinity means. it’s a pulse. here you are, and you have to do something, although all you want to do is stare out at infinity and listen to it roar. but you have to do something, and naturally your eyes begin to search the ground for treasures. eventually you’re crouching at the edge of the pulse that echoes forever, picking up any small specimen that catches your attention. you lift it to your face, turn it over. finger its crevaces. maybe you smell it, taste it. until it feels like part of you, like the attention you gave it leaves a certain energy with it. you judge that it is good and place it in your pouch. at the end of this day, you spread all the pieces out and organize your collection. you wonder if the best one might sell at the gift shop.\n \N 646 \N 441753 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.07456416195316 0 \N \N f 41553074 \N 1 135837005 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457918 2025-03-28 19:35:44.18 2025-03-29 22:39:47.095 Last Pay Wins bounty at 210k sats this AM \N https://www.lastpaywins.com/ 19378 \N 457918 \N \N \N \N \N \N \N \N mempool \N ACTIVE \N 22.1637139214105 0 \N \N f 69194150 \N 1 185347539 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430892 2025-03-09 13:45:03.011 2025-03-29 22:39:47.095 The Dollar Dilemma in Egypt Last October, we entered Egypt by ferry from Jordan and started our adventure in a quaint coastal town, Dahab (which translates to gold in Arabic). It is famous for its Red Sea activities especially freediving as it's home to the infamous Blue Hole (a sinkhole 130m deep). Locals consider it the perfect getaway from the hustle and bustle of Cairo, and foreigners enjoy the nomadic life it provides.\n\nWe quickly learned about the USD exchange rate disparity at the bank versus the street. (1 USD = ~31 EGP at the bank but 37 EGP on the street). This disparity steadily increased during our two-month stay, 41 EGP ➝ 43 EGP ➝ 48 EGP. Economic issues causing this included capital controls, a USD shortage, inflation, and more. This street rate reached as high as 70 EGP in 2024.\n\nAs an Egyptian, this meant walking into a bank and not having access to USD or only a limited amount, your credit card could be restricted to foreign usage and ATMs had low limits. During our stay, it was normal to encounter ATMs that were out of cash resulting in long lineups at other locations, a common sight in many cities. \n\nHere are some anecdotes from the locals we met:\n\n-A chef and small restaurant owner has dealt with produce prices increasing threefold since opening her restaurant six years ago. She now has the option to increase her prices, reduce her food quality, or go out of business.\n-A scuba-diving shop owner who owes his suppliers (mostly European) in euros as his local currency freefalls. He prefers being paid in US dollars or euros and is nearing the stage of applying a premium when a customer pays in Egyptian pounds.\n-An Airbnb host who stores his value in cars because the Corolla he purchased a year ago is worth 35% more now.\n\nIn a country plagued with economic issues, bitcoin is a perfect fit, but unfortunately, it is illegal in Egypt. We had to be fairly hush-hush when talking about bitcoin with merchants. The majority of them were open to the idea of accepting bitcoin but feared the repercussions of doing so. That said, we paid for a cold plunge workshop, a custom shirt, and a stay at an Airbnb with bitcoin.\n\nWe left Egypt not knowing what economic outlook awaits for a country with such a rich history. In March 2024, an additional $5 billion loan was taken from the IMF (expanded to $8 billion), and the interest rates rose by 600 basis points! This led the EGP to be devalued by ~35% leading to an exchange rate of 1 USD = 48 EGP at the bank and reaching parity with the reality on the streets. Since then the foreign currency restrictions and ATM withdrawal limits have been loosened easing some pressure off the locals. Time will tell how this all plays out. \n\nEthiopia is up next.\n\n------\n\nSources: \nhttps://www.reuters.com/world/middle-east/egypt-raises-interest-rates-by-600-bps-pound-tumbles-2024-03-06/\nhttps://www.lonelyplanet.com/egypt/sinai/dahab/attractions/blue-hole/a/poi-sig/1429824/355262\n\n![](https://m.stacker.news/52580) \N 15491 \N 430892 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.014524087615 0 \N \N f 945307589 \N 7 172443924 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 19:18:59.215 f \N \N \N 0 0 0 0 2 0 0 441854 2025-03-18 10:35:50.991 2025-03-29 22:39:47.095 "Lux pills" - a comprehensive set of truth pills to read ### MUST READ "PILLS"\nIf you want to know how this fucked up world works, you must read these simple and quick explanations.\nSo bookmark this impressive list for later. You will need it.\n\nOur fellow stacker @Lux was doing impressive work posting every day on SN Saloon, a daily "truth pill" about how this world is twisted with special words. Words that many people don't know their significance and how are used (sometimes even against them).\n\nSo, as now we have a trend in making a recap of old SN posts, I will make also a recap of all Lux's pills from the past.\n\nPlease, no need to zap my post, better zap Lux original posts. He deserve it for his brilliant work.\n\n## April 2024\nEmployee - https://stacker.news/items/508783\nLegal Tender - https://stacker.news/items/511157\nCitizenship - https://stacker.news/items/512296\nNautical terms, Leadership, Rulership, Worship - https://stacker.news/items/513271\nScholarship - https://stacker.news/items/514234\nMainstream - https://stacker.news/items/515345\nLoan Shark - https://stacker.news/items/516739\nKeep Your Status - https://stacker.news/items/518001\nBlacks Law, legal title, Person, Civil Society - https://stacker.news/items/519718\nTaxpayer, Citizen - https://stacker.news/items/520700\nCitizen Passport - https://stacker.news/items/521692\nResident - https://stacker.news/items/522598\nMr or Mrs - https://stacker.news/items/524062\n## May 2024\nDefendant, Plaintiff, Pro Se, Honourable - https://stacker.news/items/525467\nDriver - https://stacker.news/items/526708\nParent - https://stacker.news/items/527852\nConsensus - https://stacker.news/items/528597\nRespect - https://stacker.news/items/529352\nOwnership - https://stacker.news/items/530261\nReal Estate - https://stacker.news/items/531398\nBirth certificate - https://stacker.news/items/532611\nYour Name - https://stacker.news/items/533693\nBirth - https://stacker.news/items/534706\nFoundling Hospitals - https://stacker.news/items/535750\nHospital Records - https://stacker.news/items/536764\nWard - https://stacker.news/items/537842\nWard of the State - https://stacker.news/items/539006\nRegistration - https://stacker.news/items/540056\nNaming the Child - https://stacker.news/items/541322\nActions used to lower your Status - https://stacker.news/items/542252\nRe-present - https://stacker.news/items/543237\nSummoned - https://stacker.news/items/544166\nPresenting Your Licence - https://stacker.news/items/545322\nSigning a Ticket - https://stacker.news/items/546426\nSigning any Legal form - https://stacker.news/items/547434\nGo to Court - https://stacker.news/items/548516\nHow court operates - https://stacker.news/items/549637\nPlebeian - https://stacker.news/items/551735\nIgnorance - https://stacker.news/items/552719\nSpecial Appearance - https://stacker.news/items/553866\nSpecial Appearance in Chancery - https://stacker.news/items/555046\nMr and Mrs - https://stacker.news/items/556388\nPostcode in Court - https://stacker.news/items/557479\n## June 2024\nWhen asked your Name - https://stacker.news/items/558541\nSource of the Name - https://stacker.news/items/559401\nThird Party Representative - https://stacker.news/items/560302\nJurisdiction of the Court - https://stacker.news/items/561434\nStatutes - https://stacker.news/items/562641\nBench Book - https://stacker.news/items/563716\nParens Patriae - https://stacker.news/items/564958\nJury - https://stacker.news/items/566154\nMemorandum of Consent - https://stacker.news/items/567274\nCourt as a Trust - https://stacker.news/items/568649\nAlleged Claim - https://stacker.news/items/569784\nClaimant a Corporation - https://stacker.news/items/571063\nVerified Claim - https://stacker.news/items/572276\nBody Corporate - https://stacker.news/items/573406\nPress Gang - https://stacker.news/items/574838\nEconomic Gain - https://stacker.news/items/575843\nBarratry - https://stacker.news/items/577038\nContract law - https://stacker.news/items/578122\nInjured Party - https://stacker.news/items/579129\nNo Name Given - https://stacker.news/items/580215\nPleading - https://stacker.news/items/581259\nProsecutor - https://stacker.news/items/582369\nOfficer in Court - https://stacker.news/items/585770 \N 7891 \N 441854 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 11.4725460893348 0 \N \N f 69487946 \N 1 49432837 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443678 2025-03-19 13:12:12.375 2025-03-29 22:39:47.095 Try to become a better listener in 2024 @kr's [post on audiobooks](https://stacker.news/items/369545/r/kepford) reminded me of the importance of listening as a skill. I'm sure many of you have noticed that many people in your lives are not good listeners. I thought I would share some reasons why you should work on getting better at this skill in the new year.\n\n## Reasons to become a better listener:\n\n### Learning\n\nYou will be surprised what you can learn from others. One of Jordan Peterson's 12 rules for life is to listen. It goes something like this. Always assume there is something you can learn from another person. Even if you know you disagree with them. Even if you think you're right and they are wrong. You may gain deeper understanding about what makes them tick. Maybe where they got these ideas. Maybe you might even gain a better understanding about why you might not be 100% right. If you go into a conversation as if you have nothing to learn, you certainly will not learn anything.\n\nI have always enjoyed talking to people older than myself. It is fascinating to me to learn about their experiences. How they view the world. I seldom see the world the way they do but I still enjoy listening.\n\n### It helps others\n\nIt is really surprising to me how many people seem to feel as if they are never heard. Like others do not care what they have to say. When you listen and show interest in someone else you show them respect and care. This is something people in our culture truly need. You may just make someone's day by asking them a question and really truly wanting to hear what they have to say.\n\n## People will seek you out\n\nWhen you actually listen you often gain a friend. I have found that when I focus on the other person over myself in a conversation these people want to talk to me more often. They feel connection. They feel like someone cares. Who doesn't want a friend that will listen? I know I do.\n\n### People open up to you\n\nWhen people feel seen and heard they open up. They share the real self. They can be vulnerable. This is a key to a real lasting relationship. Listening and not jumping to offer solutions but rather seek to understand first. I have found that some of my friends were slow to really talk to me at first. I listening and asked questions but it took them a while to realize I was sincere. We have some much falseness in our culture today that many people (like me) do not take people at their word. I have had far more experiences where someone asked about me to find out they were just being "polite" or not really thinking about what they were saying. Don't be like that. \n\n## Some Tips\n\nOne method I sometimes use is to treat the conversation like I'm interviewing the other person. And I mean a good interview. The kind where they are the focus, not me. Sometimes people don't want to talk about themselves, I try to not push but often they do want to talk about what they think about something. Its amazing what you can learn by listening.\n\nAnother method I employ is instead of thinking about what I'm going to say in response to the other person I try to think of second and third layer follow up questions. It is very easy to fall into the trap of one upping a conversation. When someone mentions an experience it is easy to say, yeah that happened to me and then completely take over the conversation. Be aware of this trap. While it might be fun to relay your story being more generous with your attention has often rewarded me with very interesting stories. \n\nA final tip is to look into their eyes. Put your device away. Give them your attention. I have found that MANY people have no clue how obvious their dis-interest is to me. We send so many signals and most people are terrible at hiding their real attention. \n\nBefore [this post](https://map.simonsarris.com/p/audiobooks-are-books-and-theyre-also) I had never connected conversational listening to audiobooks but I can see it now. If you struggle with listening to an audiobook you may also lack good listening skills. I'm a very audio driven person so it just never occurred to me. Maybe try an audiobook and see if you can sit and listen to it. I usually listen to audiobooks while doing manual labor or driving. I feel like the info really sticks with me but for those of you that don't have this experience maybe try listening to audiobooks and see if it helps your listening skills.\n\n## My Challenge \n\nSo, my challenge to you in the new year is to work on your listening skills. You may be surprised at how hard listening is. A great person to try this with first is your spouse or significant other. Maybe a co-worker or friend. You can do it with anyone. Even a stranger. Its fun and in my opinion makes the world just a little bit better. \N 19689 \N 443678 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 4.18384600369045 0 \N \N f 33893740 \N 1 54825594 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:30:10.885 f \N \N \N 0 0 0 0 1 0 0 457269 2025-03-28 11:18:44.656 2025-03-29 22:39:47.095 Books And Articles Newsletter, Issue 14 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. Once again, thanks for all of the quality posts. \n\nSorry for the delay getting this newsletter out. I will get back on schedule next week. \n\nI encourage everyone to check out this [post](https://stacker.news/items/527899/r/siggy47) by Shane/Rayo2. He owns Liberty Under Attack Publications, a freedom focused publishing house. You can also learn more at [libertyunderattack.com](https://libertyunderattack.com/). @TheWildHustle introduced him to Stacker News and to this territory. \n\nThat’s it for now.\n\nI hope everyone has a good week. \n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [Writing To Think](https://stacker.news/items/527178/r/siggy47) by @elvismercury\n\n- [Recent TV Adaptions: Ripley and Shogun](https://stacker.news/items/520918/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [7 lessons I learned from reading "The Psychology of Money"](https://stacker.news/items/528072/r/siggy47) by @RaulJunco\n\n- [The Final Product, Chapter 8](https://stacker.news/items/522327/r/siggy47) by @cleophas\n\n- [3 ways to encourage your kids to read](https://stacker.news/items/528430/r/siggy47) by @cryotosensei\n\n\n\n### Siggy’s Suggestions\n\n- [Writing To Think](https://stacker.news/items/527178/r/siggy47) by @elvismercury\n\nI’m doing something different this week. I am only going to talk about @elvismercury’s Writing to Think post, which was the territory’s top post of the week. I was unaware of Henrik Karlsson, but the article was ridiculously timely and instructive for me. The news regarding the Samourai indictments really affected me mentally and emotionally. Although I’m a lawyer, I honestly have had no interest in law since my retirement from daily practice. This prosecution made me aware that I haven’t really given much thought to the ways bitcoin can be attacked legally in the U.S. That changed the minute I heard the news. As some of you here might have noticed, I made a bunch of scattershot posts thinking about the implications and possible defenses to this attack. I was literally thinking by writing. I quickly became aware of my limitations. I also knew I wanted to make for myself a comprehensive, organized guide to legal issues concerning bitcoin. I started from the beginning and tried to organize my thoughts. By complete happenstance, @elvismercury posted this article at the same time I began using [Obsidian](https://obsidian.md/), a powerful note taking app, to organize caselaw, articles, and to capture my own half baked notions and thoughts. Obsidian has a daily note feature which I have also begun using. If I had been doing this all along, I think my Samourai posts would have been far better and more useful. It was as if Karlsson was describing my own confused thinking at times. This passage in particular hit home:\n\n> When I write, I get to observe the transition from this fluid mode of thinking to the rigid. As I type, I’m often in a fluid mode—writing at the speed of thought. I feel confident about what I’m saying. But as soon as I stop, the thoughts solidify, rigid on the page, and, as I read what I’ve written, I see cracks spreading through my ideas. What seemed right in my head fell to pieces on the page.\n\nI hope I maintain the discipline to improve. I think all stackers who want to improve their posting would benefit from this article. \n\n\nThis week’s Golden Oldie:\n\n- [Do You Guys Actually Comprehend The Books You’ve Read?](https://stacker.news/items/410768/r/siggy47) by @Fabs\n\nToday’s Golden Oldie is from @Fabs. I can’t believe it’s been more than three months since it was posted. It is a challenging look at the act of reading, and the discussion it inspired provides a ton of valuable insight into the art of reading.\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462)\n by @StillStackinAfterAllTheseYears\n\n- [The Bezzle, by Cory Doctorow](https://stacker.news/items/506632/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [The Achilles Trap, by Steve Coll](https://stacker.news/items/497756) by @Coinsreporter\n\n- [Software,by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Churning Black Matter](https://stacker.news/items/469200) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n\n\n \N 17798 \N 457269 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.3216903118656 0 \N \N f 1020718 \N 1 239343990 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427379 2025-03-06 11:14:41.735 2025-03-29 22:39:47.095 What's the strangest coincidence that has ever happened to you? Hi Stackers!\n\nLife is full of weird and wonderful moments, but every now and then we experience a coincidence so uncanny that we stop and ask ourselves, “Did that really just happen?”\nHere's a story that still has me scratching my head:\nI was flying to another city for a work conference and had a long layover at a busy airport. I decided to pass the time by grabbing a coffee at a random café. As I sat down to sip my drink, I noticed a man at the next table who looked strangely familiar. After a moment, I realized — it was my college roommate who I hadn’t seen in over ten years!\n\nBut here’s where it gets really weird: as we got to talking, he mentioned that he was on his way to the same conference and had the exact same layover time as me. To make matters worse, we found out that our seats on the next flight were right next to each other. Neither of us had any idea that the other was working in the same field, let alone going to the same conference .It felt like the universe had conspired to bring us back together after all those years.\n\nHas such a coincidence ever happened to you? \N 4415 \N 427379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1138436699979 0 \N \N f 242963172 \N 1 21297154 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436967 2025-03-14 05:43:53.225 2025-03-29 22:39:47.096 Legend of the Snail | Winner Announcement | $103,129 ```\n+================================x\n| Welcome to day 600 of the |\n| _ _ _ _ |\n| | |__ (_) |_ ___ ___ (_)_ __ |\n| | '_ \\| | __/ __/ _ \\| | '_ \\ |\n| | |_) | | || (_| (_) | | | | | |\n| |_.__/|_|\\__\\___\\___/|_|_| |_| |\n| |\n| 100k bet! |\nx================================+\n```\n\nLadies and Gentleman, the day we've all been snailing for has come ...\n\nWe have a winner and it's @south_korea_ln! They have won a staggering amount of **353,243 sats**!\n\n@south_korea_ln, to claim your prize, please reply with a BOLT11 invoice for the correct amount, a BOLT12 offer, or a lightning address. Alternatively, you can send the payment details via one of the messaging options in @ek's profile with some proof that I am talking to @south_korea_ln and not some impostor. If you choose to provide a BOLT11 invoice, please ensure it doesn't expire too quickly.\n\nAfter payment, it would be nice if you could confirm the payment as a reply to this post.\n\nTo everyone else: Let me know if you're interested in doing this again for the next milestone, what that milestone should be and if we should change anything. This time, instead of regular posts, I'll probably set up a website (as I originally intended).\n\nHere are the stats one last time:\n\n| Stat | Value | Change |\n| --- | --- | --- | \n| Last elimination update | https://stacker.news/items/764125 | | \n| Date | 2024-12-05 | +23 days |\n| Participants | 8/26 | +0 |\n| **Prize Pool** | **353,243 sats** | **+1,820 sats** |\n| USD/BTC | $103,129.00 | +17.75% |\n\n![](https://m.stacker.news/66171)\n\n| Nym | Day | Paid | Elimination Date | Eliminated |\n| --- | --- | ---- | ---------------- | ---------- |\n| @orthwyrm | 260 | X | 2024-02-18 | X |\n| @mango | 359 | X | 2024-04-11 | X |\n| @Alby | 365 | X | 2024-04-21 | X |\n| @siggy47 | 380 | X | 2024-05-18 | X |\n| @CheezeGrater | 418 | X | 2024-06-07 | X |\n| @ekzyis | 420 | X | 2024-06-11 | X |\n| @0fje0 | 427 | X | 2024-06-21 | X |\n| @phatom | 440 | | 2024-07-21 | X |\n| @486DX2 | 486 | X | 2024-08-20 | X |\n| @carlosfandango | 501 | X | 2024-09-07 | X |\n| @Lux | 522 | X | 2024-09-20 | X |\n| @Radentor | 526 | X | 2024-10-01 | X |\n| @OneOneSeven | 544 | X | 2024-10-20 | X |\n| @davidw | 564 | X | 2024-11-02 | X |\n| @nikotsla | 570 | X | 2024-11-12 | X |\n| @BitcoinIsTheFuture | 584 | X | 2024-11-19 | X |\n| @wize123 | 584 | X | 2024-11-20 | X |\n| @LaserStack | 587 | X | 2024-12-02 | X |\n| @south_korea_ln | 608 | X | 2024-12-18 | |\n| @Carresan | 619 | X | 2025-01-10 | |\n| @Undisciplined | 653 | X | 2025-01-28 | |\n| @grayruby | 655 | X | 2025-02-03 | |\n| @gnilma | 666 | X | 2025-02-26 | |\n| @Longtermwizard | 700 | X | 2025-05-09 | |\n| @Bitman | 810 | X | 2025-07-04 | |\n| @jakoyoh629 | 813 | X | | |\n\nThank you all for participating!\n\n_Click [here](https://stacker.news/items/342259) to see how it all began._ \N 16653 \N 436967 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 25.7934743833919 0 \N \N f 158069938 \N 2 190239394 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434447 2025-03-11 22:38:32.196 2025-03-29 22:39:47.096 Meme Monday- Best meme gets 10k sats It's Meme Monday! \n\nDig deep and bring your very best memes for a chance to win **10k sats**. One meme per comment please. \n\nBest meme as voted by "top" filter by 9am ct tomorrow will win the sats. \n\n![](https://m.stacker.news/48234)\n\nGood Luck! \N 17976 \N 434447 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 16.2358000459317 0 \N \N f 185485502 \N 2 31590409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:53.276 f \N \N \N 0 0 0 0 1 0 0 368115 2025-01-14 14:11:24.526 2025-03-29 22:39:47.096 Incentives and coordination to solve hard problems Here's [an article](https://www.answer.ai/posts/2024-03-06-fsdp-qlora.html) you might have come across in the last couple days. It's about how a group came up with a way to train quite large LLMs (70b params) on equipment that a normal person could have in her basement. It turns out there was like a 10x price / performance gain possible but that nobody was incentivized to do it:\n\n> Solving this problem is hard. It requires understanding many separate libraries (e.g bitsandbytes, PEFT, Transformers, Accelerate, and PyTorch), and computer science and math concepts (e.g discretization, distributed computing, GPU programming, linear algebra, SGD concepts such as gradient checkpointing), and how they all interact.\n\nSo an eclectic set of skills requiring deep education and high intelligence. But the world is full of those problems and those kinds of people! And yet something about this was different:\n\n> Academia is full of brilliant people that solve hard problems. But academia hasn’t solved this particular problem. That’s because it’s difficult for university researchers to justify spending time on this kind of work. Combining existing tools and techniques together isn’t generally considered “novel” enough to result in publication in a high impact journal, but that’s the currency that academics need. Furthermore, academics are generally expected to become highly specialized within their field, making it challenging to bring together so many pieces into a single solution.\n\n> And, of course, big tech companies are also full of brilliant people that solve hard problems. But this particular problem, training models with consumer GPUs, isn’t a problem they need to solve – they’ve already bought the big expensive GPUs! \n\n> Many startups are also full of brilliant people that solve hard problems! But, as Eric Ries explains, “today’s financial market forces businesses to prioritize short-term gains over everything else”. It’s extremely hard for a startup to justify to investors why they’re spending their funds on open source software and public research.\n\nSo essentially, there was a problem, it was worth solving, it would be useful to lots of people to have it solved, but the nature of the problem, and the coordination required to solve it, and the system of incentives operating across the various groups that would have to coordinate to solve a problem like this, did not align. The problem dropped between the outfielders of the existing structure.\n\nThis happens all the time, of course. It's just interesting to see it happen about this topic, right now, and for these particular reasons. It makes you ask the obvious question of what other important yet solveable problems are embedded in an ecosystem that can't solve them, even though it would be good for everyone if it did.\n\nAnd the next obvious question, of how one might introduce a meta-system atop the existing system that could do better. \N 21442 \N 368115 \N \N \N \N \N \N \N \N science \N ACTIVE \N 4.09446896225635 0 \N \N f 254754428 \N 2 36938072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448369 2025-03-22 15:13:50.133 2025-03-29 22:39:47.096 NWC Tester: test nwc strings to identify what they are and what they can do https://supertestnet.github.io/nwc_tester/\n\nI made this because [this one by Alby](https://getalby.github.io/nwc-tester/) doesn't test all the features I like to test -- btw @Alby you should check it out! I think you'll like it supertestnet.github.io/nwc_tester/ 17517 \N 448369 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6954979689867 0 \N \N f 181585296 \N 2 20561639 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:39:14.047 f \N \N \N 0 0 0 0 1 0 0 437502 2025-03-14 15:07:21.311 2025-03-29 22:39:47.096 Fountain 1.1 - Open Social Podcasting Powered by Nostr **Fountain 1.1 is now live on iOS and Android with the social features re-built from the ground up using Nostr!**\n\n---\n\nhttps://www.youtube.com/watch?v=ACSqDVljxoE\n\n---\n\n**Why Nostr?**\n\nWe regularly hear from both listeners and podcasters that the social features in Fountain are a great way to discover content that’s worth listening to.\n\nWhen you support a podcast, or comment on an episode, your message is surfaced to your followers in the Fountain home feed and anyone that sees these can add the content to their library.\n\nBut this came with a few problems. When you first start using Fountain you wouldn’t have any followers so your posts wouldn’t get seen. If you wanted to share something you were listening to, you had to choose between leaving a comment on Fountain, or sharing on another social platform.\n\nToday we are excited to announce a massive update to Fountain that solves these problems with Nostr.\n\nWith Fountain’s new Nostr integration:\n\n- You can bring your existing profile and followers to Fountain\n- Your boosts and comments will be surfaced in other Nostr clients\n- Posts shared from other Nostr clients relating to audio will appear in your feed\n- Conversation and interactions now flow freely across multiple apps\n\n---\n**What’s changing in Fountain?**\n\nFountain is now a Nostr client. Your Fountain profile is the same as you Nostr profile and your activity will now be surfaced across the Nostr ecosystem. As a result, any content you interact with will reach more people and see higher engagement.\n\n---\n\n**Connect or create a Nostr profile**\n\nYou can create a Nostr account in the Fountain app, or connect an existing account by importing your keys. To find people you were following before on Fountain, tap the icon in the top right on the home screen.\n![](https://m.stacker.news/47309)\n\n---\n\n**Share your boosts and comments on Nostr**\n\nWhen you boost or comment on Fountain, your message will be shared on Nostr along with a Fountain link. Listeners on other Nostr clients will be able to see this activity, interact with it and start following you. Choose whether you want your activity to be shared on Nostr each time you boost or comment. If you choose not to share your activity on Nostr, it will still be visible in Fountain but other listeners will not be able to interact with it.\n\n![](https://m.stacker.news/47310)\n\n---\n\n**A new and improved home feed**\n\nThe Fountain home feed is now the audio layer of Nostr. You can switch between the Following feed (which just shows you audio content shared on Nostr by people you follow) and the Global feed (which shows you all audio content shared on Nostr). You can also now filter the home feed and profile pages by content type to just see podcast or music content.\n\n![](https://m.stacker.news/47312)\n\n---\n\n**Audio posts from Nostr clients now appear in Fountain\n**\n\nWhenever a link to any audio content is posted on other Nostr clients like Primal, this activity will be surfaced in the Fountain home feed. If you’re linking to a podcast or music which is indexed in Fountain, we render it as a playable content card and it will appear on the content page as a comment.\n\n![](https://m.stacker.news/47313)\n\n---\n\n**Zaps**\n\nListeners on Fountain and other Nostr clients can zap your post and send you a payment to show their appreciation. Zaps replace what were previously called likes on Fountain. You can still like something, but likes are now free.\n\n![](https://m.stacker.news/47314)\n\n---\n\n**Mentions**\n\nYou can now mention another person in a comment, making it easy to send your listening recommendations to a friend or tag someone in to a conversation. Just type `@` followed by their username to find their profile.\n\n![](https://m.stacker.news/47315)\n\n\n---\n\n**NIP-73 External Content IDs\n**\n\nThe real magic is that Nostr gives apps a common language to talk to each other. Whilst the most popular clients are social media apps offering a similar experience to X such as Primal, Damus and Amethyst, we hope that more modern podcast and music apps will be excited by the potential of Nostr and the ability to deliver a more connected experience by building social features on top of it.\n\nFountain uses [NIP-73](https://github.com/nostr-protocol/nips/blob/master/73.md) to associate posts with podcast episodes using the globally unique `` ids.\n\n---\n\n**We would love your feedback!\n**\n\nThe Nostr protocol is evolving rapidly and Fountain 1.1 is only scratching the surface of what’s possible. In the coming months, we will be fine-tuning Fountain’s nostr features and adding new ones too.\n\nPlease let me know your thoughts below as I'd love to get as much feedback as possible! https://blog.fountain.fm/p/1-1 15703 \N 437502 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7025576098882 0 \N \N f 624868772 \N 5 29062364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 136580 2024-03-04 20:30:56.538 2025-03-29 22:39:47.096 How Bitcoin Can Play into the Minimalism Movement? Hey Everyone - I've been wondering about a movement that we saw pretty big over the past couple of years - minimalism. We don't have to look far to see nonstop consumerism around us, influencers touting products, and consumers purchasing up storage units to keep hoarding and stacking their junk. \n\nThere were dozens of memes circulating in the bear market surrounding bitcoiners having worn up shoes, living on an air mattress, or eating canned food all in the name of stacking. While these could be extreme scenarios to some, barebones living can help many people overcome their spending and consumerism addiction. \n\nMeme: \n![](https://m.stacker.news/33992)\n\nBitcoin has played into my minimalism as I live in a small apartment and I am doing much better than most that have followed the traditional path. For me, I am living just fine. I can travel to a new country every year, have fresh water, nice clothes and 3 square meals. I also can give to charity. \n\nBitcoin has helped me cut out all the superfluous junk in my life. I think bitcoin can play into the minimalist movement because the currency is deflationary, the time preference is low and the bitcoiner crowd tends to be humble and always seeks to steadily increase their stack. What are your thoughts on bitcoin and minimalism? I know life is short and we still need to enjoy things, but the way I look at it - minimalism removes waste on things that don't matter. Cheers! \N 8269 \N 136580 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.4699039424912 0 \N \N f 149716961 \N 1 84469664 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420620 2025-02-28 21:39:19.415 2025-03-29 22:39:47.096 📸 Bitcoin Flea Market in Tokyo today I visited a neat popup Bitcoin flea market in Tokyo near Jiyugaoka Station.\n\n![IMG_3167.JPG](https://m.stacker.news/18373)\n\n![IMG_3153.JPG](https://m.stacker.news/18374)\n\n![IMG_3149.JPG](https://m.stacker.news/18375)\n\n![IMG_3159 copy.JPG](https://m.stacker.news/18376)\n\n![IMG_3144.JPG](https://m.stacker.news/18378)\n\n![IMG_3143.JPG](https://m.stacker.news/18379)\n\nI loaded up my lightning wallet and ended up coming away with a few items. It was cool to see a mini Bitcoin circular economy in action!\n\n![IMG_3177.JPG](https://m.stacker.news/18377) \N 17415 \N 420620 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.66853414872805 0 \N \N f 1484978420 \N 14 236759657 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 7 0 0 93434 2023-12-02 11:46:10.959 2025-03-29 22:39:47.097 The Cultural Impact of Paper Wallets is Going to Be Huge \n\nOur culture already has the concept of hidden messages. You know those children's detective stories where the gang finds e.g. a book with some words highlighted for secret messages? \n\n![scooby doo](https://www.irishtimes.com/resizer/e5t1kJbWIqzdn-rXh5diYNbG-OY=/1600x1200/filters:format(jpg):quality(70)/cloudfront-eu-central-1.images.arcpublishing.com/irishtimes/TZUJF4M7563CBCIH7ZZ5GG2FXM.jpg)\n\nOr people playing pop songs backwards and claim to have found satanic messages? Or more generally the pop-fiction concept of finding ancient wisdom in old texts? It's a common trope everywhere. How exciting! Just ... that isn't reality for the most part. Except that it will totally be a thing.\n\n### People loose access to their Bitcoin. All the time.\n\nMost Mining rewards from Bitcoin were early. And early on few people saw Bitcoin as a store of value. And it's exchange value wasn't that high. It is hard to estimate how much Bitcoin is lost forever. On some old laptops. From ordinary people that just wanted to buy some weed.\n\n[Here is a podcast episode](https://darknetdiaries.com/transcript/104/) about someone searching for the Bitcoin he had back in the day. \n\n![darknet](https://darknetdiaries.com/imgs/darkwork.jpg)\n\nMaybe we should have distributed all mining rewards more slowly. Or maybe we shouldn't have and not knowing how much money actually is in supply is part of the design.\n\n### The future is going to be a mystical place\n\nThis concept of people finding Bitcoin will be everywhere. People finding Bitcoin - in paper wallets in a safe, with their grandma having highlighted 24 words in a random book in the shelf, with a steel plate hidden under the tile in the floor, with someone stumbling upon an 20 year old Reddit post of some idiot who wrote it down in public without anybody noticing.\n\n(I think generally searching through ancient Internet stuff that takes forever to load is going to be a thing. Like the library of Alexandria. Be prepared for fun times.)\n\n![library](https://images.nightcafe.studio/jobs/8nweyT6Agbl9vrWxPNog/8nweyT6Agbl9vrWxPNog--grid.jpg?tr=w-1600,c-at_max)\n\nRemember, there are billions of people on this planet. All the stuff that can happen, will happen.\n\n**In real life** you will hear about it because everyone knows someone who knows someone. **In the news** because it is an easy story to tell - comparable to people finding native american gold in their backyard - just that it can happen to anybody anytime not just new homeowners. **In fiction novels** because it is easy plot device. In Navy CIS like TV shows, in cinema, everywhere.\n\n### It will happen regardless of Bitcoins price\n\nThis is not a prediction that depends on the world being hyperbitcoinized and people finding a $5 note on the way home. No, the pieces are all in place right now. Low amounts from 2010 are a treasure now. And your normal life savings could be a treasure to your grandchildren.\n\nAnd make sure to not loose your Bitcoin in an actual boating accident that somebody has to find in 100 years.\n\n![boating](https://images.nightcafe.studio/jobs/kCw1e2jlfAvU4n51nWcg/kCw1e2jlfAvU4n51nWcg--14--f9vpd.jpg?tr=w-1600,c-at_max)\n \N 14607 \N 93434 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8556655901471 0 \N \N f 68707536 \N 1 172022531 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431150 2025-03-09 15:45:57.934 2025-03-29 22:39:47.097 Time travel forwards, backwards, or money… https://pbs.twimg.com/media/GI8OXK-WYAAWU8Z?format=jpg&name=medium \N 15463 \N 431150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7246287323464 0 \N \N f 29251268 \N 1 113432380 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 383302 2025-01-28 12:13:44.132 2025-03-29 22:39:47.097 Dumbest Tech Mistakes? I have always been technically challenged, but it never stopped me from getting in over my head and making a mess. Now that I'm getting old it's only gotten worse. \n\nPerhaps my dumbest screwup came last year, when I decided to erase the windows OS installed on an inexpensive desktop I bought, and install NixOS, even though I had only been regularly using linux for a year or two. I had laptops for years, so I hadn't seen a desktop for a while. I got a nice big monitor to watch my media, since I was away from home on an extended business trip and needed a source of entertainment. I got it installed after a few false starts, then started learning about the configuration.nix file. I immediately ran into trouble getting sound. I searched the web for a likely cause, tried different things, removed drivers, and quickly destroyed my configuration file. I learned all about Pulse Audio and PipeWire. I spent two days fuming over the problem. No Peaky Blinders. I reinstalled the OS twice. Then, out of the blue, it occurred to me that this wasn't a laptop with built in speakers. I went out and bought a cheap pair of speakers the next day. Problem solved. \nDoes anyone else have any stupid stories they are willing to share? \N 20965 \N 383302 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 21.61606000317 0 \N \N f 290183739 \N 3 116979266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:01:31.548 f \N \N \N 0 0 0 0 1 0 0 442981 2025-03-18 23:43:43.82 2025-03-29 22:39:47.097 Alert: ledger library confirmed compromised and replaced with a drainer. https://twitter.com/bantg/status/1735279127752540465\n\n🚨 ledger library confirmed compromised and replaced with a drainer. wait out interacting with any dapps till things become clearer.\n\nhttps://cdn.jsdelivr.net/npm/@ledgerhq/connect-kit@1 \N 1769 \N 442981 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.61537785753768 0 \N \N f 652742982 \N 4 12182730 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 407490 2025-02-18 04:47:30.376 2025-03-29 22:39:47.097 4_F4ll_GuY_0x01.md # 4_F4ll_GuY_0x01.md\n\n------DISCLAIMER BEGIN------\n\nThis is something I originally wrote around the time I wrote [that](https://stacker.news/items/349363) as you might guess while reading this.\n\nI don't remember if I wrote this before or after, all I know is that I wrote a lot. Like really A LOT. [I filled stacks of notes](https://stacker.news/items/453876) with all the things that I wanted to write about in some longer, more clever, inspiring and fun-to-read form at some point in my life. However, I wanted to do this without basically committing social suicide if it wasn't necessary. I took notes of everything I hate about the world and every single person in it. Didn't matter if I never met you, you're in this world and that was reason enough to tell you exactly how I feel about you.\n\n![8ic45i.jpg](https://m.stacker.news/19238)\n\nIn what I wrote, everyone except me was dead wrong about everything, doesn't matter whatever their position was. Even if it was my position, they were still wrong since it made sense to assume that if they were right, they were right for the wrong reasons. I felt like no one could see things like I do. No one would get me and certainly not "it". I felt like I must know everything now since I no longer even require sleep. I felt like I have ascended and it's lonely at the top. I almost convinced myself that I was Satoshi reincarnated but I just forgot. But it didn't matter since @WeAreAllSatoshi anyway, right? All of these feelings showed in my notes. Like really A LOT.\n\nFor hopefully obvious reasons, I sent the first draft to no one else but @DarthCoin. I needed someone to read over what I wrote so far and tell me I am not crazy. I felt like a genius and a madman at the same time and the coin to seal my fate as one or the other was still flipping in the air but it was coming down fast. Or if I was a goner I needed someone to tell me I am at least going out with a bang.\n\n> _That's why people will remember my nym._\n\nHe didn't say I was not crazy but he liked what he read and wanted to read more. That was very encouraging but it was all I had though. Now, three months have passed since December 13, the Wednesday I sent @DarthCoin that first draft and it's still mostly all I have. Fortunately, I did send it to him since I wasn't able to find the draft on my machine anymore after [this post](https://stacker.news/items/452688) from @siggy47 inspired me to finally publish it in its current form. So if I didn't do this, I would have nothing now. Coincidence? Probably but isn't it more fun to selectively believe in destiny? As long as you don't blast your mental diarrhea into the world wide web[^1], or at least not under your nym?\n\nAnyway, I didn't know if I was going to ever publish my feelings and let everyone know exactly what I think of them since it felt like I couldn't stop writing:\n\n> _Would I have enough time in my life to ever finish writing? To finish my thoughts? Or would I die in the most ridiculous way possible tomorrow? Snuffed out like a candle with all my dreams and aspirations [in an instant](https://www.goodreads.com/book/show/51037979-in-an-instant)? No time to ask for pen and paper in my last moments? At least it would be fun and painless, I guess. But would anyone care if one more light goes out? Would I care?_\n\nhttps://www.youtube.com/watch?v=Tm8LGxTLtQk\n\nWhatever I did, there was always something I needed to write down RIGHT NOW. And that never seemed to be code.\n\nDuring this time, I was literally afraid that I would forget the most important epiphanies I had—or what felt like epiphanies in the moments. I was afraid that I would lose this new perspective on life that I gained by involuntarily not being able to sleep for days. I was afraid that I would just slip into my old ways sooner or later. Maybe that was the most important reason why I couldn't sleep: Deep inside, I had this primordial fear that I would wake up and everything would be normal as in [SNAFU](https://en.wikipedia.org/wiki/SNAFU) again. Like a bad trip ending except the bad trip starts right where it left off.\n\nI think at the end, I only got 6 hours of sleep during the week. I remember this since I mentioned this between a lot of very toxic messages to my ex-girlfriend while we were about to have an argument about something stupid again. I do regret how I wrote some things but at least I can confidently say that I don't regret what I wrote. It wasn't nice but I needed it and I actually don't know how I could have gotten my point across as effective but less toxic so maybe I don't regret it at all when considered from this perspective.\n\nHowever, I certainly hoped that maybe she needed this, too. In fact, I was so sure I was doing her a service. I thought that in time, she would certainly understand that all I ever wanted was to be there for her just like she was there for me even though I admit I was really bad at it at times. I thought that in time, she would find the "true meaning" between all these cruel but in some absolute crazy way still well-meaning messages. And then it would have been worth it even if it meant she will never write me again. And I can understand that. But in the end, all that mattered was maybe just that I was the hero in my own movie, lol.\n\nThe end of this streak of insomnia started with me thinking "Hey, wouldn't it be a great time to go bouldering again?". I was able to boulder. Everything felt normal. Everything felt great! Until I arrived home and started emptying the washing machine. I was hanging up my clothes but at some point I noticed that something is off. They weren't wet. Like not wet at all. I thought maybe they already dried a little bit... inside the washing machine.\n\nFortunately, my prefrontal cortex was still active enough to realize that NO FUCKING WAY the clothes can be this dry or get so dry inside a washing machine even if they would have been in there for hours or even days.\n\nI went to the washing machine and started to laugh hysterically: I forgot to put the machine on before I left. Everything was still configured and it was waiting for me to press start. I started the washing machine then (with my clothes in it) and suddenly felt very tired to not say about to pass out. I barely made it into bed and slept for 10 hours.\n\nUninterrupted sleep like that was something that I thought I was finally not capable of anymore. "Sleep is for the weak!", I told myself and "finally" because I still remember the nights during my childhood where I was getting increasingly worried that I have forgotten how to sleep which certainly didn't help with falling asleep:\n\n> _Oh no, I have forgotten how to sleep! What should I do with all this extra time I now have? Every night will be so boring now!_\n\nI could only sleep for 1-2 hours per 12-36 hours for what felt like weeks. After 1-2 hours, it felt like I just had the best sleep of my life. My mind was immediately racing again. There was nothing stopping it from doing all the things it wanted to do. An unstoppable force of nature that could only be stopped for max 1-2 hours but only on its own terms. It felt like my eyes were popping out of their sockets. It felt like I was never so alive in my entire life. My heart was beating so strong and fast for prolonged periods of time for no apparent reason that it made me consider if I am actively experiencing time dilation: experiencing faster time travel while for everyone else, it looks like I am doing everything at twice the speed.\n\nWhatever signals my body was sending must have gotten completely overriden until I realized that just a few seconds ago, I started to dry dry clothes and everything that happened in the past weeks suddenly became crystal clear. It wasn't destiny. It was mostly paranoia. I felt constantly between being extremely awake and extremely tired until all of my mental and emotional states overlapped and lying in bed was just this thing that I do to think more deeply about my next steps because for some inexplicable reason, I couldn't focus as much as I wanted to at the moment. I still remember how I associated the sound an ECG monitor makes during a flatline with how I felt and that I thought that was awesome:\n\n> _Beeeeeeep. Sleeping or not sleeping, what's the difference? Infinite time!_\n\nI hope this set the stage enough for what comes next.\n\n![IMG_20200408_180420.jpg](https://m.stacker.news/19233)\n\n_a picture taken on a beautiful day in Spring 2020 that I found while searching for a specific, more related picture that I didn't find_\n\n------DISCLAIMER END------\n\n---\n\nWhen I was younger, my parents used to fight all the time.\n\nNow you might ask yourself? Why am I telling you this? Because I want to make you listen to this by pretending I had a bad childhood to involve your emotions since triggering emotions in humans is a powerful tool some people might abuse to achieve all kind of things?\n\nGuess what? This post is exactly for you fucking morons out there who don't get I am telling you this because it becomes fuckin' relevant later on WHICH SHOULD BE FUCKING OBVIOUS SINCE THAT IS HOW GOOD STORIES USUALLY WORK.\n\nAdditionally, I thought I am talking to bitcoiners here? I thought you guys think of yourself to be a low time preference bunch of people? But why am I not seeing this? Why do I cringe all the time; regret that I had faith in humanity by doing all I can to write the initial bitcoin version in secret and at some point thought:\n\n> _Bitcoin is in good hands now. I can disappear now ..._\n\nSo let this be your first lesson: STOP FUCKING ASSUMING THINGS WITHOUT REALIZING THAT IT'S JUST A FUCKING ASSUMPTION AND NOT SOME KIND OF DIVINE INTERVENTION THAT JUST SAVED YOU FROM READING A STORY MEANT TO MANIPULATE OR PROVOKE YOU BECAUSE YOU WERE ABLE TO READ 13 FUCKING WORDS.\n\nThis rant may go down in human history, so you better start feeling some FOMO if you don't have time to read this right now ... AND YOU DON'T WANT TO BE THE FUCKING MORON WHO THOUGHT THEY KNEW WHAT THIS IS ABOUT AND THUS DIDN'T READ THIS AND THEN LATER TURNED OUT TO BE THE ONLY FUCKING MORON BECAUSE EVERYONE ELSE DID INDEED TAKE THIS SERIOUSLY, DO YOU? But let's not get ahead of ourselves, will we?\n\n---\n\nOnce, I had an accident and I almost got paralyzed. While I was lying there, looking up where I came from, I was in the biggest pain that I ever felt in my life. I fell from a roof and onto stairs with my back.\n\nThat was the first time I felt this intense rage in myself that I felt cooking up during this bear market, checking up on you guys what you're up to ...\n\nWhile I was lying there on the stairs, trying to find a position that not hurts so fuckin' much I might actually die from pain faster than from whatever other internal injury I might have suffered, someone asked me:\n\n> Hey, what's your name?\n\n> _ARE YOU FUCKING SERIOUS, YOU'RE ASKING ME RIGHT NOW WHAT MY FUCKING NAME IS? CAN'T YOU SEE I AM LITERALLY TRYING TO SURVIVE RIGHT NOW?! OR IF I AM NOT GOING TO FUCKING MAKE IT, CAN YOU AT LEAST [LET ME DIE IN FUCKING PEACE](https://www.youtube.com/watch?v=9TohDsmT8tA)?! ARE YOU LITERALLY RETARDED? LIKE LITERALLY? BECAUSE IF SO, YOU MIGHT SHOULD GO SEE A THERAPIST, IT MIGHT HELP YOU TO KNOW THAT YOU'RE A FUCKING MORON._\n\nBut I didn't say that. I was in too much pain to say that.\n\nThe woman that was with me called EMS and they asked her to ask me what my name is. AT LEAST THAT'S WHAT THIS FUCKING DUMB WOMAN TOLD ME SINCE SHE MIGHT HAVE REALIZED HOW FUCKING DUMB IT WAS TO ASK ME THIS AND TRIED TO BLAME THE EMS BECAUSE IT TURNED OUT, THIS STUPID FUCKING HORRIBLE WOMAN NEVER EVER FUCKING THANKED ME OR ACKNOWLEDGED IN ANY FUCKING WAY THAT I LITERALLY JUST TRIED TO FUCKING HELP HER JUST FOR THE SAKE OF FUCKING HELPING A HUMAN FUCKING PIECE OF SHIT BEING AND LITERALLY ALMOST DYING IN THE PROCESS.\n\nSo I ... I don't really remember what I said. I just felt this intense rage in myself, like am I fucking surrounded by fucking morons? Is this how I am going to die? With a moron not realizing I am dying and asking me what my name is? Really? Is this a fucking joke? Was my whole life just a cruel pretext for this single moment? If so: BRING IT ON. I AM READY. I AM SO FUCKING SICK OF THIS FUCKING SHIT, JUST DON'T MAKE IT MORE PAINFUL THAN IT REALLY HAS TO BE, OKAY?! OR AT LEAST FUCKING TELL ME, WHY DO I HAVE TO FUCKING GO THROUGH THIS, WHAT THE FUCK DID I DO WRONG IN MY FUCKING LIFE?!\n\nBut if I have to guess what I said, I would say I said:\n\n> Is this relevant right now?\n\nWhat must have felt like an eternity later, the woman asked if I can move my toes. Again, this intense rage that I never felt before in my life showed itself in my mind:\n\n> _YOU REALLY DON'T GET IT DO YOU? I FINALLY FOUND A POSITION THAT SEEMS TO BE AT LEAST A LOCAL MINIMUM OF PAIN AND NOW YOU'RE TELLING ME I SHOULD TRY TO MOVE MY TOES? ARE YOU SERIOUS? I AM SERIOUS BECAUSE I REALLY DON'T KNOW IF THIS IS A FUCKING JOKE._\n\nBut I was actually also interested if I can still move my toes. So slowly, I tried to check what I am still capable of doing without dying right fucking now because someone asked me such a dumb fucking question. I really don't want to have written on my grave that I was killed by a dumb question while I actually fell from a roof, trying to help this woman get back into her apartment because she was too fucking dumb to take her keys with her so she locked herself out and then she asked me such a dumb fucking question I realized I don't want to live in this world anymore and I rather just die and move on, whatever the fuck comes after it. It can't be worse than this, right? Right?\n\nFortunately, I think there was still some sense in my toes. I am not even sure if I did indeed move my toes. I might just tried to channel all the energy that was still left in me to check if I still feel at least _something_ there.\n\n> _Can I feel the shoe that I am wearing? Please, oh god please, even though I am not religious because my parents are and they are fucking horrible, please god, if you exist in whatever kind of form. At least tell me if I can still feel my toes without increasing this pain I am feeling that I am wondering why I am still conscious. IF YOU AT LEAST COULDN'T FUCKING SAVE ME FROM FALLING ON THESE FUCKING STAIRS JUST BECAUSE I DIDN'T LOOK AT WHAT I WAS STEPPING ON WHILE I WAS BLINKING MY EYES._\n\nWhat feels like another eternity later, I replied:\n\n> Yes, I can still feel my toes.\n\nThen I must have lied there for more than a few seconds. In my memory, it feels like the EMS immediately showed up.\n\nWhen the emergency doctor walked over to me, I got really scared. Like extremely, extremely scared. I was already scared that I am going to die, but this guy walking over to me? That was what might actually scared me more than death in that moment.\n\nI was scared because I knew he was going to try something. He was going to do something SO FUCKING STUPID, I might again die because I couldn't defend myself against a person THAT IS SO FUCKING STUPID THEY DON'T REALIZE I AM DYING RIGHT NOW AND INSTEAD SHOW ME HOW TO DO A BACKFLIP AND BREAK THEIR NECK OR SOMETHING. I really don't want to die like this. I always thought I would die ... how exactly? I think I never thought much about how I want my death to be before.\n\nIn this moment though, I really had my life flashing before my eyes. What I remember the most is that in this moment, I realized that I really might not see my ex-girlfriend that recently broke up with me for what feels like one single mistake that I could have explained very easily if she just let me, ever again.\n\n> _This is it right? This is how I am going to die?_\n\n> _IF THAT'S THE CASE THEN LET'S GET IT FUCKING OVER WITH BECAUSE I AM NO LONGER SCARED OF DEATH, I AM FUCKING SCARED THAT THIS PAIN MIGHT UNNECESSARILY BE PROLONGED BECAUSE SOME STUPID FUCKING HUMAN THINKS HE CAN SAVE ME BUT ACTUALLY NO, THEY ARE JUST MAKING ME FEEL THIS PAIN EVEN LONGER THAN I WOULD HAVE IF I WOULD BE FUCKING ALONE RIGHT NOW AND COULD DIE IN PEACE._\n\nThen he grabbed my arm. The last things I remember before passing out from the injection was that I kept saying "no, no, no" with increasing terror in my voice. I found a spot I felt somewhat comfortable breathing in without too much pain. Every muscle in my body was tensed up to the point I thought my bones are going to break and I'll start rag-dolling around from all the built-up tension. I kept myself in some weird position which included grabbing the lowest bar of the stair railings and I was absolutely not ready to leave this position under any circumstance. I quickly accepted that this railing was part of my life now and it felt like we became very close friends in a very short period of time. However, I wasn't sure how long we would still be friends. For all I knew, I was dying fast because certainly all this pain meant that something inside me broke spectacularly. Then I saw _the light_.\n\n> _Is this the light people talk about when they really are about to die? Or already dead? Am I finally dead? It surely feels like it because I am no longer in pain._\n\nI don't know anymore if I literally asked the people in the ambulance, trying to fucking stabilize me and cutting my favorite shorts into pieces in the process:\n\n> _Am I dead?_\n\nI think I never knew if I really asked this. I just know these were my thoughts when I saw "the light".\n\nTurned out that light was just THE FUCKING LIGHT IN THE AMBULANCE SHINING RIGHT DOWN ON ME IN SUCH INTENSITY, I COULDN'T FUCKING SEE ANYTHING ELSE.\n\n---\n\n_to be continued_\n\n---\n\n[^1]: That's how I partially described the current state of nostr with its focus on "twitter-like experiences" in my notes. \N 776 \N 407490 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.054869966687 0 \N \N f 121851506 \N 1 191189909 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402246 2025-02-13 16:28:23.077 2025-03-29 22:39:47.098 internet feelings Here’s a [little poem](https://stacker.news/items/621774) I wrote while I was in Nashville for the Bitcoin Circlejerk 2024. I came up with it because I felt a little lost, as I often do around people, but this time I felt especially lost because I had to walk home in the dark for an hour, and my phone’s battery was almost dead. My VISA card was declined by Uber for no apparent reason.\n\nWhen I got home, someone mentioned that I could have called them, and they would have ordered an Uber for me. I didn’t know that was an option, but even if I had known, I probably wouldn’t have called—I wouldn’t have wanted to bother them. The walk back also wasn’t terrible; I just didn’t like the circumstances that led to it. If I remember correctly, I walked down Broadway and passed some art covered in 1's and 0's.\n\nI tried to decipher it in [ASCII](https://www.asciitable.com/), and then it hit me: most people probably wouldn’t have any idea how text can be encoded in binary (or even what encoding means). They would just see 1's and 0's, while I was busy trying to recall the ASCII table in my head, hoping to uncover a hidden message. That’s when the idea for this poem came to me.\n\n> internet\n>\n> encodings over encodings become\n> encryption for the masses,\n> reason for the hopeless,\n> culture war for the lost,\n> weapon for the opportunists,\n> power for the seekers,\n> reality for the deceived,\n> topic for the historians,\n> poetry for you\n\nI wonder if 'internet feelings' would have been a better title. \N 21019 \N 402246 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 26.9488323333952 0 \N \N f 9551521 \N 1 99192662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451018 2025-03-24 10:54:46.817 2025-03-29 22:39:47.098 Privacy tips on shipping bitcoin hardware. I am looking for advice on best practices when ordering bitcoin hardware online (hardware wallets, mining rigs, etc..)\n\nThe major threat vector I am trying to address is if the company has a data breach (example: ledger data breach). Data from these bitcoin only companies seems to be a huge honey pot. As there is a strong correlation that you own bitcoin if you bought from them and might be a good target for a 5 dollar wrench attack.\n\n\nThere seems to be two major privacy components here. \n1. Payment\n2. Shipping\n\nPayment - Appears to be handled in a couple acceptable ways that perseveres enough privacy. Pay in Bitcoin, gift cards, per paid card, etc... So this is not an major issue.\n\nShipping is the piece I don't have a good option. Here are some thoughts I have had and the down sides:\n\n- Shipping to someone else's address (neighbor or family member). Down Side: This puts the third party at risk however.\n- Contract with a Mailbox company. Down Side: Many appear to want ID information to open an account. Some cost associated with the service. An extra party has access to your package and hopefully will not tamper with it.\n\nSo I ask the SN community for any tips and advice that I have not considered.\n\nThanks in advance.\n\n\n\n \N 21254 \N 451018 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 10.2091108906258 0 \N \N f 645885364 \N 4 42738304 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 406540 2025-02-17 12:25:24.669 2025-03-29 22:39:47.098 Travel Light If there were a global ranking of Stoic Masters, I reckon the Japanese would rank among the top. The 2011 tsunami alerted the world to the potent devastation of formidable waves; it also let the world witness the unparalleled resilience of Japanese people. No looting. No plundering. Only footage of them queueing orderly for rations and going about their business with dignity. Control to a T. They couldn’t control what had happened to them, but they chose to respond to this calamity with dignity and grace and resoluteness.\n\nResoluteness summed up how Victor Frankl survived his time at the concentration camps. In his classic book titled “Man’s Search for Meaning”, he explained that those who survived the concentration camps might not have been the physically strongest, but they seemed to hold on stoically because of their staunch sense of purpose. He himself found meaning in helping his fellow prisoners manage the repercussions that living in a concentration camp entailed. \n\nNo matter what obstacles life throws us, we can count our blessings that it is unlikely that we will need to summon our resources to rebuild our lives after a tsunami or prevail through a concentration camp. Nonetheless, knowing that others have been through worse doesn’t really help us bolster our resilience. We need to process this head knowledge before it gets assimilated into our psyche and added to our tool box.\n\n![](https://m.stacker.news/34631)\n\nUnderstanding that building our well of resilience is a journey we ought to embark on before shit hits the fan urges us to stay centered and up our resoluteness. How do we do so? Two words: \n\nIt isn’t just about embracing minimalism and rejecting the highs induced by owning branded stuff. It’s about trimming the excesses and staying nimble. To this effect, I try to clear my emails promptly. Nothing screams unfinished business than thousands of unread emails. Yes, we can ignore our unread mails and buckle down to producing great work, but they are like the soaking wet pajamas your swimming coach gets you to wear to teach you water safety. Just cognitively heavy like a hippo’s feet. \n\nIt means that I stay on top of my digital data, following a system in which I file my photos online and delete them on my phone. Many a time, I keep a photo due to sentimental reasons or a nagging feeling that I will use it for work some day. However, I fail to take into account the opportunity costs. That my mind is cluttered with so many pictures that I ironically don’t get to savour the moments because they are lost in the labyrinth of memories. These days, I retrieve a photo from my phone fairly easily because I actually have a grasp of the moments I keep close to my heart on my phone.\n\nIt is about not packing my days to the brim with things to clear so that I leave ample time for sleep. Very often, I choose to forgo sleep in the name of productivity, but if I aim to travel light, I should go about accomplishing things with a relaxed attitude rather than be at the beck and call of Father Time. \n\nHedonistic adaptation - the process by which positive or negative effects on happiness fade over time - be leveraged to great effect in travelling light. As a teacher, I was so dismayed that my son routinely fell sick during my precious school holidays that I counted the number of holidays he “sabotaged” my well-laid plans. THREE holidays gone to waste! Guess what? He is running a fever now after yesterday’s trip to the aquarium. But since I am so used to the idea of him falling sick on my holidays, I’m not gonna burden my brain by adding up the number of holidays he felt sick anymore. I’m gonna exercise grace and postpone my lunch date with my friend tomorrow because really, what’s the point? If I’m serious about the lunch date, I will make it happen another time, by hook or by crook. No need to clog my heart with bitterness. \n\nMany manuals on writing recommend that we state our most important ideas at the front. Which makes sense, I guess because we can’t assume that our writing is compelling enough for readers to plow through to the end. Still, I wanna do something different from the norm, so I’m gonna state my unorthodox, uniquely Sensei’s habit that may cause you to raise your eyebrows in my conclusion. So, this is how I travel light for reading. Each time I finish a chapter of a book, I will tear the pages off and place them in a bag earmarked for recycling. If you are a book lover, you will gasp at how I’m literally destroying books. But strangely enough, this works really well for me. Incorporating a kinesthetic routine helps stave off boredom from reading, and seeing how my book gets gradually lighter fuels up my motivation to finish it. Observing how my bookshelf acquires more breathing space unclutters my heart a bit more. You just gotta believe me when I say that I really recycle every piece of preloved paper I own!\n\n#firesidephilosophy[^1]\n\n[^1]: This is my first entry here. I just learnt about the Hawthorne effect, which states how switching things up prevents them from growing stale. So, I’m applying what I learnt to keep my posting habit fresh. I also took a stab at writing something from different angles. Think I kinda succeeded, except that my free flow writing led me to focus on expounding on travel light rather than include several more perspectives succinctly. 🤣 \N 10549 \N 406540 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 5.79242864452638 0 \N \N f 158478825 \N 2 231760528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433844 2025-03-11 12:50:36.491 2025-03-29 22:39:47.098 Elites, the curse of recursion, and the half-life of policy # Intro\n\nI'm going to slam some rocks together. It doesn't really culminate in anything, so if that bugs you, abort now!\n\n#\n\n## Rock 1\n\nI'm not one generally to talk about elites all the time, but being elite is real [0]. The social class is largely but not completely closed to new entrants, globally pervasive, and resilient over time [1]. Members of this class are rich [2] and they have a lot of influence over stuff, particularly governance structures and institutions of all flavors.\n\n## Rock 2\n\nYou've heard of ChatGPT and probably are aware that there's a host of other large language models of comparable intelligence. You may not be aware that the general recipe for creating one of these things is to feed it as much data as you can get your hands on. A problem is that at this point, the state-of-the-art LLMs need all the digital data that exists in the world, but that's not the main problem. The main problem is that each leap forward in intelligence generally requires an order of magnitude more data. Since the current SOTA LLMs already have consumed all the reasonable data, that puts us in a bit of a pickle [3].\n\nA common move to get around this is, in addition to using all the data in existence, to also use data that's generated somehow, so you can gin up an infinite amount of it. And what's the best way to generate certain kinds of data? LLMs! Which means we have a pointing-two-mirrors-at-each-other situation, which intuitively seems ... disturbing, for reasons you might not be able to name.\n\nFortunately, you don't have to name it because Shumailov et al [4] have named it for you, and the name is _the curse of recursion_. I would summarize their findings this way:\n\n- the world is really complicated and full of weird nuances that are hard to characterize\n\n- LLMs are really good, like, they are excellent at boiling down that complexity and giving you very intelligent responses to whatever you ask them about\n\n- but they're not perfect!\n\n- so the data they create is, in various hard-to-describe ways, less complex and rich than data from the actual world\n\n- which means that, the more you train LLMs on LLM-trained data, the more they get weird ideas about the world due to the reduced complexity of the data that they're seeing\n\n- and if you use these LLM-trained LLMs to generate data to train new LLMs you get, after a few generations, really strange and inbred LLMs\n\nwhich makes deep intuitive sense when you think about it.\n\n## Rock 3\n\nThere's a an idea, introduced by Dan Klein, called the _half-life of policy_ (intro [here](https://econfaculty.gmu.edu/klein/PdfPapers/HalfLife_PolicyRationale.pdf)) which basically says that any policy you can think of was created in a certain socio-technological context [5], and (if we're lucky) it made sense in that context, but the nature of technological change is such that it probably doesn't make sense any more.\n\nThe obvious policies that you would imagine are laws passed by political bodies of some sort, but the logic works everywhere -- rules get outdated when the underlying circumstances change, and nothing changes underlying circumstances as quickly or as profoundly as technology does [6].\n\n# Discussion\n\nIf you bang these rocks together, you get some interesting implications.\n\nFirst, you have a class of people who, as time passes, become increasingly abstracted from the physical and social universe that the rest of us occupy. As a birthright, they're been plopped down next to the machinery that runs reality, but they have little conception of reality because they've never touched it, because they don't need to touch it. All they have to do to have wealth continue to rain down on them like gently falling snow [7] is not run a child sex ring, which, admittedly, is a bridge too far for some. But mostly, they're good, they get on the conveyor belt and they have a nice time.\n\nBut something weird happens when the world start changing faster and faster: the handbook for world domination gets increasingly outdated. It's like picking up an old book on software development from Goodwill for $1 - the process described to build a program doesn't work, you get all kinds of unparseable errors, the menu options don't correspond to what they show you in the figures. It's confusing and hard to take effective action.\n\nDespite this, most of the same people continue to run the show, even though they suck at it. And the longer they do, and the more things change, the worse the effects are. And yet these effects give rise to the next wave -- the system consumes the fruits of its own mindless grinding, and those fruits are malformed, and eating them warps the people who do the eating, making them even less fit for the challenges to come.\n\nThe whole thing is a flywheel: the faster it turns, the quicker the machine lurches forward into some impossible Cthulu geography. It's not clown world so much as a Dali painting.\n\n![Soft-Construction-With-Boiled-Beans.jpeg](https://m.stacker.news/23798)\n\n# References\n\n[0] Mills, C. W. (1981). The power elite [1956]. New York.\n\n[1] Cousin, B., & Chauvin, S. (2021). Is there a global super‐bourgeoisie? Sociology Compass, 15(6), e12883. https://doi.org/10.1111/soc4.12883\n\n[2] Piketty, T. (2014). Capital in the twenty-first century. Harvard University Press.\n\n[3] Don't nitpick me -- how long do you want this post to be?\n\n[4] Shumailov, I., Shumaylov, Z., Zhao, Y., Gal, Y., Papernot, N., & Anderson, R. (2023). The Curse of Recursion: Training on Generated Data Makes Models Forget (arXiv:2305.17493). arXiv. http://arxiv.org/abs/2305.17493\n\n[5] Perez, C. (2003). Technological revolutions and financial capital. Edward Elgar Publishing.\n\n[6] Lyn Alden talks about a related aspect of this: the technological determinism at the heart of both money and fiat monetary dysfunction. We've discussed this [a few times on SN](https://stacker.news/items/333010).\n\n[7] Brooks, D. (2012). The social animal: The hidden sources of love, character, and achievement. Random House Trade Paperbacks.\n\n \N 19924 \N 433844 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 8.26450415490523 0 \N \N f 1171086045 \N 12 229855966 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 08:31:05.854 f \N \N \N 0 0 0 0 5 0 0 414226 2025-02-23 18:37:47.412 2025-03-29 22:39:47.098 Ideas and Implementations of Bounties What are some ideas / implementations / critiques / thoughts on various bounty systems people have come across or used?\n\nI would love to learn more about different examples and how they work both in theory and practice.\n\nMaybe @k00b could give a quick overview on the Stacker News bounty system and his thoughts there as a start?\n\nOf course have posted this as a bounty because why not! \N 21540 \N 414226 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6524355772493 0 \N \N f 141638509 \N 1 186445998 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410444 2025-02-20 13:36:05.314 2025-03-29 22:39:47.098 How to buy Bitcoin privately - Azte.co, Hodl Hodl, Robosats, Bisq & Peer to Peer If you’ve been in Bitcoin for a while you have probably heard people talking about “KYC” and “non-KYC” Bitcoin. What is this and if you want KYC free Bitcoin, how do you get it? This blogpost is a guide for Bitcoiners on the best way to buy Bitcoin “ethically”, that is without giving up your privacy by having to hand over your personal details and ID.\n\n## Article Contents and Quick Links\n\n- [What is non KYC Bitcoin?](#what-is-non-kyc-bitcoin)\n- [How do I buy non-KYC Bitcoin?](#how-do-i-buy-non-kyc-bitcoin)\n - [Buy KYC free Bitcoin in Person](#buy-kyc-free-bitcoin-in-person)\n - [Buy KYC free Bitcoin on Azte.co](#buy-kyc-free-bitcoin-on-azteco)\n - [Buy KYC free Bitcoin on Hodl Hodl](#buy-kyc-free-bitcoin-on-hodl-hodl)\n - [Buy KYC free Bitcoin on Robosats](#buy-kyc-free-bitcoin-on-robosats)\n - [Buy KYC free Bitcoin on Bisq](#buy-kyc-free-bitcoin-on-bisq)\n- [Summary & Conclusion](#summary)\n\n## Key Takeaways\n\n- There are viable options for everyone to buy Bitcoin "KYC-free", this means buying anonymously without handing over your identity and credentials.\n- On the open global Bitcoin network, everyone has the same unrestricted access to all the peer to peer platforms. Each of these platforms have different trade offs and methodologies, the best way to learn these is to experiment for yourself.\n- There is lots of liquidity in USD and EUR, the main challenge for Bitcoiners in smaller markets is finding liquidity and finding buyers who accept the payment methods you have access to. But buying in USD through services such as Wise & Revolut are excellent workarounds.\n- For us there was one clear winner as the best way to buy KYC free Bitcoin: Robosats. No account setup or login required, easy to use, no technical barriers, multiple payment options and fast settlement on Lightning, it gets our vote.\n\n## What is non KYC Bitcoin?\n\nMost people start their Bitcoin journey buying from an exchange like Coinbase or Binance. You sign up, provide all your personal information including your name, date of birth, driver license or passport, and only then are you ready to go. Even Bitcoin only exchanges like Swan and River require your ID. That’s all well and good when you're a noob, until you go a little further down the Rabbit Hole and start hearing people talking about “KYC” and all the evil associated with that.\n\nKYC stands for “Know Your Customer” and is supposedly about “safety” but really it is about having as much information about you and your payment habits as possible.\n\nIf you’re this far into Bitcoin now, you are probably pro-privacy and pro-personal freedom, kind of along the lines of “I can spend my money on whatever I like and no-one needs to know about it”. Bitcoin is not most countries, we have personal privacy guaranteed to us in the Bill of Rights, so why do I have to give up all this personal information to buy it?\n\nI’ll leave it to you to work out the ethics and morals of which of these practices is the illicit activity and whether you are doing the right thing or not by buying non-KYC Bitcoin. This guide aims to introduce and evaluate the most accessible options to buy “ethical” Bitcoin.\n\nWhat this guide does not intend to do is provide a step by step guide through each method, there are some excellent guides online which we’ll link to so there’s no need to reinvent the wheel. \n\n## How do I buy non KYC Bitcoin?\n\nAll the methods we describe work on the same premise:\n\n1. You find someone who wants to sell Bitcoin. This could be through word of mouth or an online platform.\n2. You agree on a price. These platforms are all marketplaces, where buyers and sellers interact with each other to determine the price of Bitcoin for each transaction. There is no "fixed price" on any of these platforms.\n3. You pay them fiat currency. If you’re meeting your seller face to face, this involves you handing your fiat to them directly. If you’re not meeting face to face, this involves you transferring the money to the buyer via a money transfer app or service.\n4. After receiving your fiat, the Seller sends you your Bitcoin. This could be onchain or via Lightning.\n\n**Note:** But hang on, I hear you say. If I’m sending money to the seller via Money Transfer services like Wise or Revolut, they have my ID so it’s not KYC free then is it?\n\nYes, your Money Transfer service or bank will have your details. But all they can see is that you sent some money to someone else, somewhere in the world. This transaction is not tied in any way to the Bitcoin, unless you’re unwise enough to write something like “Bitcoin Purchase” in the reference field! Just like buying something from someone on E-Bay, you’re paying for a good or service that is 100% legal (in most countries) so exercise your right to Privacy and keep a few details to yourself on this one.\n\n## What are my options for buying KYC free Bitcoin?\n\nHere’s a quick summary of the services we tried for this article, click on the links to jump down to the details:\n\n- [In Person](#buy-kyc-free-bitcoin-in-person)\n- [Azte.co](#buy-kyc-free-bitcoin-on-azteco)\n- [HodlHodl](#buy-kyc-free-bitcoin-on-hodl-hodl)\n- [Robosats](#buy-kyc-free-bitcoin-on-robosats)\n- [Bisq](#buy-kyc-free-bitcoin-on-bisq)\n\n## Comparing the best ways to buy non-KYC Bitcoin\n\n| | Privacy | Simplicity | Fees | Technical | Liquidity | Payment Methods |\n|------------------|----------------------- |---------------- |----- |---------- |--------- |------------------------------------------- |\n| In Person | 5/5 | 5/5 | None | 0/5 | 2/5 | Cash |\n| Azte.co | 5/5 (in person) ⅗ (online) | 4/5 | 3/5 | 1/5 | 3/5 | Whatever your vendor accepts. |\n| HodlHodl | 4/5 | 4/5 | 2/5 | 2/5 | 3/5 | Multiple. Wise, Revolut, Paypal etc. |\n| Robosats | 5/5 | 4/5 | 4/5 | 3/5 | 3/5 | Multiple: Wise, bank deposit, Venmo, etc. |\n| Bisq | 5/5 | 1/5 | 2/5 | 4/5 | 3/5 | Multiple, as above. |\n\n### Stackrs Tip - Don’t write off buying Bitcoin Person to Person\n\nDon’t underestimate the power of in person transactions. If you can find someone in real life who wants to sell you Bitcoin in person, this can actually be your most private option. We’ve found Bitcoiners visiting from overseas may want to sell some BTC for fiat to use while visiting your country, it’s a great win-win, you get some KYC free sats and they get some local cash without all the hassle.\n\nThe first time I had the opportunity to buy Bitcoin IRL from another Bitcoiner I was a bit surprised, “What do you mean you’re selling Bitcoin? Aren’t we supposed to Hodl to the death?” But then it happened again, and again. Bitcoin is money and sometimes people need to exchange money for physical goods and services, so if you can help a Bitcoiner turn their sats into Fiat for something they need, it’s a win-win, so give it a go.\n...\n## Buy KYC free Bitcoin in Person\n\n**What?!** I hear you say. We’re digital natives, you’re not seriously expecting me to actually meet another person in real life to get some Magic Internet Money, you can’t be serious. Yes, this still happens and it is how members of your species have been exchanging goods and services since the dawn of time. Don’t write it off.\n\nFind another human being who wants to sell you Bitcoin for dirty Fiat, agree on a price and make your exchange. It’s not that hard.\n\nOnce you’re involved in your local Bitcoin community, someone may ask you, or you may hear of someone who wants to sell Bitcoin. When it first happens you are kind of taken aback, hold on there soldier, I thought we were all Hodling to the death here? \n\nThen you realize that there are some people who have been in Bitcoin for long enough to see a real appreciation in their coins and they actually use them to buy real world goods or services. Get used to it, and even better, take advantage of it.\n\nLike everything in the world of Bitcoin, you are free to make your own choices and take responsibility for your own actions, so you need to figure out how to buy Bitcoin from a real person.\n\nOverseas Bitcoiners visiting your area can be a great source of KYC-free sats, if they’ve got Bitcoin and they’re traveling they probably want some local fiat to use on their trip and you could well be in the market for some non KYC sats, a match made in heaven!\n\nIt’s a lot of fun to connect with Bitcoiners on Twitter or the Orange Pill App, show them the sites (including your local BTC friendly merchants), trade some sats for fiat and make friends in the process. If you're in an international gateway city, you are in a perfect spot for this, as most international visitors will travel through either on their way into or out of the country which gives you the perfect opportunity to meet fellow Bitcoiners and show them round. (and score some KYC free sats!)\n\nIn these kinds of exchanges, the easiest and most trustless way is probably to meet up in person, hand over the fiat and receive the Bitcoin exchange to a mobile wallet then and there. This has the added bonus of extra privacy for the buyer as there’s no legacy banking transaction involved at all.\n\nAgree on a rate for the Fiat / BTC exchange by using any of the major exchanges (Coinmarketcap, Coingecko are all options) as a starting point and negotiate from there. This is the beauty of a peer to peer exchange in a free market, no-one other than the two participants in the transaction determine the price.\n\n### Advantages of Buying Bitcoin in Person\n- Protect your online privacy, no digital footprint\n- Meet other Bitcoiners\n- No transaction fees\n\n### Disadvantages of Buying Bitcoin in Person\n- Irregular, you don’t know when opportunities to buy will come up.\n- Requires meeting physically and carrying cash, some people won’t like this.\n- No predetermined market price, you have to work it out for yourselves\n...\n## Buy KYC free Bitcoin on Azte.co\n\n**Azte.co** offers a unique solution to the AML/KYC (anti money laundering / know your customer) requirements around selling a Digital Asset like Bitcoin, they don’t sell Bitcoin, instead they sell you a voucher which you can redeem for Bitcoin. Very clever.\n\nThere are Azte.co vendors all around the world, and you buy the voucher for the amount of sats you want and pay them in dirty fiat. They send (or give) you the voucher, which includes a QR code to redeem your sats, either on-chain or Lightning.\n\nThis is a clever approach to financial regulations in most countries, which treat Gift Vouchers differently than other financial products. As long as it works, who cares, right?\n\nIf there’s an Azte.co vendor with a physical location where you live, you can make the exchange in person and eliminate the need for a bank transaction which makes it very private. If you can’t meet your vendor face to face, then you’ll have to transfer the money to receive the voucher. This involves an element of trust, as you will have to send the fiat to the vendor before you receive your sats. You can also order your voucher over the telephone too! Azte.co vouchers are now available in Brazil to more than 125,000 retailers and is seen as an easy way to access Bitcoin for any amount.\n\n### Fees buying Bitcoin on Azte.co\nAzte.co charge a 5% fee, which is usually broken down into a 3:2 split between the Vendor and Azte.co. Considering KYC free Bitcoin usually comes at a small premium, 5% is not too bad.\n\n### Advantages of buying Bitcoin via Azte.co\n- If your vendor has good liquidity, you can buy on demand\n- No transaction records if you buy face to face, protect your privacy fully\n- Quick and easy, no account creation or waiting for offers to be accepted\n- A great way to gift Bitcoin\n\n### Disadvantages of buying Bitcoin via Azte.co\n- Involves trusting your vendor with your funds if you’re paying online\n- You rely on your vendor having liquidity when you want to buy\n- If you pay via bank transfer, your vendor does have your bank details so it's questionable whether it's truly "KYC free"\n\n### Find out more about Azte.co\n- [Visit the Azte.co website](https://azte.co/)\n- [Read the FAQ section on Azte.co](https://help.azte.co/category/4-frequently-asked-questions)\n\n## Buy KYC free Bitcoin on Hodl Hodl\n\n**Hodl Hodl** makes it pretty easy to buy KYC free Bitcoin from anywhere in the world, all you need is an email address. No ID or selfie with your thumb up your arse required.\n\nHodl Hodl have found an elegant way to circumvent regulations by never actually holding any money. Hodl Hodl works as an intermediary, putting buyers and sellers together but never receiving any money.\n\n> For a full walkthrough of Hodl Hodl, we recommend the [BTC Sessions Video](https://youtu.be/FmyYxrZM3Ms).\n\n### How to Buy KYC Free Bitcoin on Hodl Hodl:\n1. Create an account at HodlHodl.com with just an email address.\n2. Enter the marketplace, looking for the currency, minimum amount, and payment type that matches. Your best options are usually USD or EUR; they always have the most offers. However, even these currencies can sometimes have a very low number of offers in the market.\n3. Choose an offer that accepts a payment type you have. This may exclude Bitcoiners outside the US from options like Strike, Venmo, or CashApp. Wise and Revolut are popular. All our test buys used Wise, which worked fine. Some offers even accept Amazon Gift Cards, though at the time of our tests, we couldn't find an offer accepting this payment method.\n4. Accept an offer. Once you do, the seller transfers the Bitcoin to an on-chain multi-sig address controlled by both parties. This visibility allows you to verify the Bitcoin transfer on-chain before making your payment.\n5. Send your payment to the Seller using the agreed-upon method. HodlHodl offers a messaging interface for communication, showing which stage the process is at. One potential disadvantage is that on-chain transactions might require waiting for block confirmation. High fees can delay this. For instance, one of our test buys during high fees took 1.5 hours for block confirmation. This is an issue Hodl Hodl might want to address in the future, potentially by adding Lightning.\n6. Once the Seller confirms your fiat receipt, your BTC is released to your address. Using Wise, payments were confirmed in mere seconds.\n\nIn conclusion, Hodl Hodl was straightforward and efficient, with all purchases completed successfully.\n\nIf there's one potential disadvantage of buying through **Hodl Hodl** it would be the on-chain nature of all transactions. Due to this, buyers are at the mercy of block times and transaction fees. Waiting for an escrow transaction to be confirmed in a block can be time-consuming. While Hodl Hodl aims to calculate fees ensuring swift transaction confirmations, it's not always accurate. On one occasion, a 90-minute wait for our escrow transaction had me nearly canceling the whole thing due to it getting late. There are rumours of Hodl Hodl considering Lightning for payments, which could potentially solve this issue.\n\nDespite **Hodl Hodl** listing many currencies, we didn't find significant liquidity in much outside the USD. Non US buyers might have to use services like Wise to convert to USD and make purchases. \n\n### Fees for buying Bitcoin on Hodl Hodl\n\nPurchasing from outside the US can be costly, due to the conversion to USD. For instance, a USD100 purchase left us with USD86 in Bitcoin after accounting for Hodl Hodl and Bitcoin transaction fees, excluding FX fees for our own currency to USD conversion.\n\n**Example of fees on Hodl Hodl** (from a test buy of USD100):\n- Trading fee: 887 sats (USD$ 0.30)\n- Bitcoin network fee: 4021 sats (USD$1.36)\n- There might also be a partner fee for users of platforms linked to Hodl Hodl, like Trezor Suite.\n- Additional FX fees for Fiat to USD conversion and transfer costs.\n\nAll services come with associated costs. It's up to the individual user to assess if buying KYC-free sats from Hodl Hodl is worth the associated expenses.\n\n### Advantages of buying Bitcoin on Hodl Hodl\n- No ID required; only an email is needed.\n- Access to various markets like USD, EUR, etc.\n- Full on-chain visibility of your Bitcoin until its receipt.\n\n### Disadvantages of buying Bitcoin on Hodl Hodl\n- High transaction fees during times of increased on-chain fees.\n- Generally higher fees than other tested methods.\n- Being a centralized company, it might face potential shutdowns by authorities.\n\n### Learn More about Hodl Hodl\n- [Visit the HodlHodl website](https://hodlhodl.com/)\n- [Watch the BTC Sessions Hodl Hodl video](https://youtu.be/FmyYxrZM3Ms)\n\n## Buy KYC free Bitcoin on Robosats\n\nAs we progressed through the various options to buy KYC free Bitcoin we found ourselves getting deeper and deeper into the rabbit hole of decentralized freedom tech. **Robosats** is a very interesting platform, and if this was the first Bitcoin platform you ever encountered as a newbie to the space, it would be mind bender for sure.\n\n### What is Robosats?\n\nRobosats is similar to **Hodl Hodl** in the sense that it’s an online marketplace putting buyers and sellers of Bitcoin together, but the tools and methodology used are very different. Even describing it pushes traditional vocab to the limits so the best way is to walk through the steps you take to buy KYC free Bitcoin on Robosats.\n\n1. Visit the Robosats website using their .onion address on the Tor browser.\n2. Create a one time “Robot” avatar for your trade. You will receive a key you can save to recreate the identity in the future, but it’s recommended to use a new identity for each trade. Your identity will receive a name like “GutsyAircraft102” or “Occupied Blood233” and a Robot avatar.\n3. Open up Market Place and review offers or post your own bid. Select your preferred options for fiat currency and payment method, this will filter the offers to match your criteria. NZD is an option here, but we never saw any offers.\n4. Before you can accept an offer you have to post a small amount of Bitcoin as a security bond. You’ll need a Lightning wallet with some sats in it to do this (E.g. Custodial options: Wallet of Satoshi, non-custodial options: Breez or Phoenix).\n5. Once you accept an offer (or have your bid accepted) you go through a similar process to Hodl Hodl, the buyer and seller are put together to proceed through each step of the process to where you send fiat to the seller using the agreed upon payment method.\n6. Once the seller receives your funds, your Bitcoin will be sent to you on the Lightning Network, so you need to have a Lightning wallet set up and ready to receive.\n\nThe best way to really understand Robosats is to try it for yourself, the second best way is to watch the BTC Sessions video on Robosats.\n\n### Buying Bitcoin in USD on Robosats\n\nRobosats definitely felt more advanced and “out there” than the previous two methods. The one-time identities and robot avatars are cool, but how their security method works was a bit perplexing. You are required to post a bond in sats before the trade, but the amount you post is minimal, say just a couple of dollars to make a USD100 trade. The seller is required to lock up the entire amount in a Lightning Invoice before they can participate in the trade, and there’s a dispute process you can enter into if needed.\n\nIn terms of buying on Robosats from outside the US or EUR markets, other currencies are listed but we never saw much liquidity there at any time during our tests. So that means you need to convert to USD or EUR and buy in those markets. Payment methods were similar to those on Hodl Hodl, with Wise and Revolut seeming to have the best liquidity of the payment methods available.\n\n### Fees for buying Bitcoin on Robosats\n\nThe fees on Robosats were more reasonable than the other platforms we tried, here’s what you’ll pay:\n\n- FX fees to convert your Fiat to USD using a service like Wise\n- Transfer fees on Wise\n- Robosats trade fee (eg. 0.175%)\n- Lightning Network fee to receive to your wallet\n- Any fees your wallet may charge to receive\n\n### Advantages of buying Bitcoin on Robosats\n\n- **Privacy.** With no user accounts and access via the Tor network, your privacy is protected more here than the other methods we tested.\n- **Easy access.** No logins required, just go to the Robosats website via their .onion address and you can make your first buy.\n- **Lightning withdrawals.** Cheaper fees and the ability to consolidate your sats before moving to Cold Storage.\n\n### Disadvantages of buying Bitcoin on Robosats\n\n- You need to have some Bitcoin on a Lightning wallet to buy on Robosats.\n- Liquidity that matches your payment type and preferred currency can be low or limited.\n\n### Learn more about buying KYC free Bitcoin on Robosats\n\n- [Visit the Robosats Github page](https://github.com/RoboSats/robosats)\n - *This is a link to the Robosats Github page where you can find the .onion address. For privacy, do not connect to Robosats via clearnet, use Tor.*\n- [Watch the BTC Session video on Robosats](https://youtu.be/XW_wzRz_BDI)\n...\n## Buy KYC free Bitcoin on Bisq\n\nThe name **Bisq** comes from the old “Bitcoin Square”, a peer to peer marketplace from the early Bitcoin days, and it is an accurate representation of what Bisq does in the digital space. Another step down the decentralized FOSS rabbit hole, Bisq is an Open Source application you download to your own computer (after verifying the source code and signatures first of course) and run locally, which connects you to their global marketplace of Bitcoin buyers and sellers.\n\nWhen you take a step back and think about how Bisq and other decentralized applications work, you really appreciate how much of a paradigm shift this all is. This is a network of people around the world downloading and running Open Source software to connect and exchange value, without performing any identity checks or vetting. You also appreciate how hard it is for some people to understand and even better, how hard it is going to be for anyone to try and stop it. \n\nBisq is nothing more than software which you’ve downloaded from the internet, there’s no company or organization running this, just open source developers working on code. You download the code and run the application, which happens to create a marketplace of buyers and sellers of Bitcoin. If you find a seller with whom you agree to a transaction with, you arrange a transaction of fiat currency between the two of you to settle the deal. This happens outside of Bisq, with no link to the interaction on Bisq visible anywhere.\n\n## Buying Bitcoin on Bisq\n\nBisq is the most technical of all the peer to peer options we tried, downloading and getting the application to work was quite simple, but we got lost when we tried to connect it to a node. There were instructions to update the bitcoin.conf file, which felt a bit too serious to me so I stopped there. I could see the buy and sell offers on the application, and the purchase process looked similar to Hodl Hodl or Robosats in the steps involved and payment methods. \n\nBut we didn’t actually complete a test transaction, as I didn’t want to do it connecting to an unknown node. Bisq supports the same payment methods and currencies as the other methods we tested and steps in as an arbitrator if there’s a dispute.\n\nOne interesting element of Bisq is that there is a token (**BSQ**), which to many in the Bitcoin world is a huge red flag and the sign of a project to be avoided. The token can be used to pay transaction fees, and offers discounted fees for anyone who uses it. But it is a crypto currency (a shitcoin!) and is tradable on exchanges, so some would say this clouds the incentives of the project developers. But seriously, what could go wrong with a token issued by an online exchange platform used to pay trading fees? (Anyone remember FTT token?)\n\n## Fees for buying Bitcoin on Bisq\n\nThe fees on Bisq were moderate, similar to those on Hodl Hodl, more than Robosats. You can reduce your trading fee by paying in the BSQ token.\n- 0.7% fee to take an offer\n- Bitcoin network fees (mining fees)\n- FX and transfer fees on your chosen payment method\n\nSo although we didn’t actually test Bisq with a purchase, here’s our summary:\n\n### Advantages of buying Bitcoin on Bisq\n- Fully decentralized platform with no central point of failure.\n- No ID or even an email address required.\n\n### Disadvantages of buying Bitcoin on Bisq\n- Technically advanced option, not for beginners or non-technical people.\n- It has a token, which to some Bitcoiners makes them “Shitcoiners”.\n\n### Find out more about Bisq\n- [Visit the Bisq website](https://bisq.network/)\n- [Watch the BTC Sessions VIdeo on Bisq](https://youtu.be/4LyEKA5Iq9I)\n\n## Summary\n\nThe great thing about **Bitcoin** is that it is one global, permissionless market which anyone can participate in just as easily as anyone else in the world with access to the internet. That means when a new Peer-to-Peer platform is released onto the Marketplace, Bitcoiners anywhere in the world can get on board right away.\n\nBut where it gets a little trickier if your're outside the US is with currency and payment methods. Most of these platforms will accept offers in any currency or payment method, it’s just about critical mass. As the saying goes, _Liquidity begets Liquidity_, the biggest pools of liquidity will continue to grow. And in terms of currencies, that means the USD is still king, and that’s not too hard to deal with if you have access to a service like **Wise**.\n\nThe same issue exists around payment methods, most sellers of Bitcoin are in the US or Europe and they use payment platforms like **Strike**, **Cash App** or **Venmo**, which users outside the US won't be able to access..\n\nBut luckily enough there are services available here like **Wise** and **Revolut** which make it easy to keep a USD or EUR balance and transfer fiat to sellers of KYC free sats on these platforms.\n\nSo if you’re keen to experiment with KYC-free sats, give the above options a try and let us know what you think.\n\n## Further Reading & Resources\n- [Read the Bitcoin.guide article on KYC in Bitcoin](https://bitcoiner.guide/nokyconly/)\n- [Read the original article on the Kiwi Bitcoin Guide website](https://kiwibitcoinguide.org/articles-and-guides/how-to-buy-non-kyc-bitcoin-new-zealand/)\n\n\n \N 624 \N 410444 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 18.3488325936101 0 \N \N f 75839696 \N 2 224979988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2080 2022-10-02 15:04:06.289 2025-03-29 22:39:47.098 Julian Assange has reached a plea deal with the U.S., allowing him to go free \N https://www.nbcnews.com/politics/justice-department/julian-assange-reached-plea-deal-us-allowing-go-free-rcna158695?taid=6679fbb8ea213f00014618a4 7675 \N 2080 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.77402510165859 0 \N \N f 102618397 \N 1 5563458 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434285 2025-03-11 18:53:25.269 2025-03-29 22:39:47.098 Ripple acquires Fortress, used by Swan, run by former Prime Trust CEO \N https://www.coindesk.com/business/2023/09/08/ripple-acquires-crypto-focused-chartered-trust-company-fortress-trust/?utm_term=organic&utm_content=editorial&utm_medium=social&utm_campaign=coindesk_main 18743 \N 434285 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 0.277938839607366 0 \N \N f 1765403342 \N 14 129184991 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 05:37:57.156 f \N \N \N 0 0 0 0 11 0 0 434810 2025-03-12 08:55:29.842 2025-03-29 22:39:47.098 Why a company should adopt bitcoin's lightning network & the problems it solves I would love to get some input on this article i wrote about corporate adoption for the user experience:\n\nCompanies that integrate Bitcoin Lightning ⚡️ have the ability to improve the user experience and provide value for the enterprise. An exchange like Coinbase might see it as a cost, but companies like Etsy or Reddit can leverage it to create a stickier platform. \n\nThe best way to transfer value globally is via bitcoin. You can settle payments instantly using the Lightning Network. Nothing comes close when it comes to global settlements. No transaction is faster than an electronic P2P transaction. No blockchain can claim to be faster than Bitcoin Lightning since Lightning is purely P2P.\n\nLet's examine how integrating Bitcoin Lightning ⚡️ can transform platforms like Etsy. By doing so, Etsy has essentially become a pseudo CashApp or Venmo for its users. This enables users not only to receive payments into their @Etsy account but they can now pay out of their Etsy account to settle a bill, pay a friend, or for any product or service.\n\nInstant refunds eliminate the waiting game for buyers, while for sellers, it solidifies the platform as their financial hub, reducing the allure of alternative platforms, thereby increasing user retention and engagement. Moreover, it simplifies onboarding for users and for the business transacting globally. \n\nThe benefits extend beyond platforms like Etsy. Companies like Reddit can leverage Bitcoin Lightning ⚡️ to introduce new monetary incentives for content creators.\n\nBy integrating Bitcoin Lightning ⚡️, Reddit can introduce new monetary incentives for content creators, akin to stackernews, albiet more robust. Content creators can receive payments in bitcoin without extensive user verification.\n\nNow, a Reddit user can seamlessly utilize their Reddit account to make purchases on Etsy or vice versa. This creates a network effect compelling other companies to adopt this strategy, bolstering user experience across various platforms. \n\nBy using #bitcoin lightning, a business can reduce its reliance on third-party services that drive fees and segment onboarding, improving operational efficiency. e.g. Plaid connects your bank to the platform to then deposit/withdraw funds or Credit card processing fees on purchases. \n\nIn turn, this creates a Network effect that will force companies to adopt this strategy as it gives the user a better experience. Now the Uber driver can use his Uber account to directly buy something from Etsy. \n\nSimply put, people want instant settlement. Services like Robinhood and Venmo levy fees for instant ACH withdrawals, reflecting the cost of providing immediate access. Bitcoin Lightning payments mitigate these costs for the business, enticing more users and strengthening the business’s liquidity position, albeit with custodial risks.\n\nWith 62% of Americans living paycheck to paycheck and around 1.7 billion people worldwide without bank accounts, it's evident that the current financial services are not meeting the needs of many individuals. While Bitcoin doesn't claim to be a panacea, it does offer a solution for people to receive their money instantly and with significantly lower fees compared to traditional banking systems. These platforms could take a step towards addressing the financial challenges faced by a considerable portion of the global population and bring financial services in house. \n\nthe adoption of Bitcoin Lightning ⚡️ represents a transformative step for businesses looking to enhance user experience, streamline transactions, and stay ahead in today's competitive landscape. Money is going to move faster as we use the internet’s native currency, Bitcoin. \n\nThe network effect will only make this stronger. Companies that don't implement the Lightning network will lose market share. The early ones will be rewarded. \N 20187 \N 434810 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.78958277686101 0 \N \N f 710054194 \N 5 183903571 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 05:56:03.04 f \N \N \N 0 0 0 0 5 0 0 428054 2025-03-06 20:03:04.261 2025-03-29 22:39:47.358 Sneakernet: Route around ISPs Post #2 In a previous post, I talked about [IP over Avian carriers.](https://stacker.news/items/82544) I have since decided I want to make this a series of posts going into detail about methods for routing internet packets outside of routers and switches. Outside of the ISP network. I'm largely inspired to write about this because of [South Korea’s Internet Identity Verification System](https://catalystsforcollaboration.org/case-study-internet-identity-verification-system/) which was struck down in 2012, the [Chinese Great Firewall](https://en.wikipedia.org/wiki/Great_Firewall), [Iran shutting down internet access](https://www.internetsociety.org/blog/2022/09/sanctions-can-deny-internet-access-when-people-need-it-most/#:~:text=The%20Internet%20was%20shut%20down%20for%20over%2080,and%20getting%20access%20to%20free%20flow%20of%20information.) typically during protests, and other places where identity is required for internet access, or too expensive for the region.\n\nWhile IP over avian carriers was an April fools RFC and my original post was in good fun, looking around, it may be used unironically in certain jurisdictions. So with that in mind, lets look at some alternative information systems, and we'll look at how to make them interoperable. Today's post, the sneakernet, was inspired by Mirrors Edge. Not Mirrors Edge Catalyst (the sequel), but the first game.\n\nhttps://www.youtube.com/watch?v=aW6ibRa6tus\n\n>The changes came slowly at first. Most didn't realize or didn't care, and accepted them. They chose a comfortable life. \n\n>Some didn't and those who refused to conform, were pushed to the sidelines. Criminalized. They became our clients.\n\nMirrors Edge is a parkour simulator, which makes for some fun gameplay, but more importantly, the game devs chose to frame this gameplay as a necessary communications network. This type of communications network is commonly referred to as "sneakernet". \n\nNow some people are sticklers. Some people will like to say "but it doesn't use TCP, therefore it isn't the internet". We can of course follow TCP protocol over any communications network, I would rather point out that TCP was not the only protocol, its just the one that won out during [the protocol wars.](https://en.wikipedia.org/wiki/Protocol_Wars). What is the internet then? The internet is a network of networks. That is all. Interoperability will become an issue that we'll discuss.\n\n# Data Encoding\n\nHow should our data be encoded for this transmission? Typical cryptography for any communications network applies. The source and destination will want to exchange cryptographic public keys so that the data stays private should the message be intercepted. In particular, there are 3 concerns in information systems. Data integrity, data availability, and data confidentiality. These 3 concerns are part of the security triad\n\nhttps://media.geeksforgeeks.org/wp-content/cdn-uploads/20210623231627/384.png\n\n\nOkay, so the data in our packet in encrypted and only the receiver can decrypt. Now what? Sneakernet examples are usually portrayed as a USB stick. Its simple and quick and easy to understand, unfortunately however, this will result in compromise. The Universal Serial Bus standard was designed for anything. Joysticks, mice, keyboards, flashdrives, VR headsets I mean really anything. As long as you can install the firmware for it, it'll work. This became the problem. Installing firmware became a barrier to using whatever device was being sold. So, manufacturers began to put the firmware for the device inside of the device and operating systems would grab the firmware from the device and install it automatically. You plug it in, and it works. "Plug and play" they called it.\n\nhttps://airspy.com/downloads/PlugPlayIcon.jpg\n\nThe problem? Replace the word "firmware" with the word "virus" and you understand the problem. \n\nSo, SD cards it is, but not every device has an SD card reader. Every relay in the internet has their connections they're able to reach who then take the packet and take it to its next destination. The runners will need to communicate with their aviaries or whatever data transmission center may be for the next hop. That all being said, I do like some IP over QR codes\n\nhttps://www.youtube.com/watch?v=kc9COP5dALU\n\n# Border Gateway Protocol\n\nhttps://www.youtube.com/watch?v=_aLmzq-23pE\n\nSo the border gateway protocol is going to dox all of our connections. Not only that, but our source and destination will be found out. Not only that, but how are we going to get an IP address anyway? [IANA](https://www.iana.org/numbers) for dang sure isn't about to issue us one. Lets take this step by step\n\n## Confidentiality\n\nSo how do we keep these connections confidential? One way to think about this, is jurisdictional arbitrage. We might be in Russia trying to send a message to someone else in Russia, but we don't have to keep all of the internet routing in Russia. Instead, we can transmit the data to an Aviary or a WISP or pointed a laser over the border, using smoke signals or blinking a flashlight. That point in friendly territory is our proxy. Every connection until this point only knows to delivery the message to this proxy, and the proxy decrypts the rest of the routing information. \n\nWe may even have a network of proxies like the TOR network\nhttps://www.youtube.com/watch?v=QRYzre4bf7I\n\n##IP addresses\n\nSo, being an unregistered ISP, how do we get an IP address? We may allow our proxies to issue IP addresses, and then sort of layer IP addresses. So we have the IP addresses that are part of IANA IPs, that's one layer, but when our message reaches a router that is going to transmit to non IANA routers, it can look at the second IP provided here, which is the IP issued by our trusted proxies for this secret network. The closest thing that's similar to this is network address translation (NAT). \n\nhttps://www.youtube.com/watch?v=01ajHxPLxAw \n\nMaybe the right answer, however, is that we don't bother getting an IP at all\n\nhttps://www.youtube.com/watch?v=lVcbq_a5N9I \n\n\n# Connectivity Service Payments \n\nObviously, you'll need to pay your aviary or sneakernet runner to transmit this data on your behalf, and they will need to pay whomever they may be connected to for them to route to the next hop (a network of networks). The lightning network may sound like a convenient option for this, but there's a problem with opening lightning channels with operators who control your flow of information. You will need multiple service providers so that one can tell you about another force closing the channel on you. You'll need to use the alternate service provider to transmit the justice transaction. \n\n# Conclusion and Comments\n\nI originally intended to make a post about shooting a laser light at the moon and then encoding a message in a series of blinks to be decoded by a telescope across a vast distance, but it turns out this method requires a 10 foot wide telescope which is very very expensive and obviously not feasible for anyone who would actually have a need for it (operator who can't obtain a UHF license for example). This Reddit thread is where I decided to end my research on that: https://www.reddit.com/r/askscience/comments/qw30x/can_an_amateur_astronomer_test_the_lunar_laser/\n\nHowever, there are many other communication methods that we have not gotten into yet. While moon lasers may have gotten nixed off the list, there is plenty more. \n\nIf you happen to operate in a country with resource constraints (people don't have computers/everyone operates off of a shared computer/no internet access/Australia etc), go ahead and pop a comment and we can troubleshoot methods of getting TCP compatible internet packets to a location that has broader internet access. \n\nA note on Bitcoin nodes: Shout out to BIP 324 which is coming to Bitcoin core version 26 (source: https://github.com/bitcoin-core/bitcoin-devwiki/wiki/26.0-Release-Notes-Draft), however, if ultimately we saw a globally coordinated ban on Bitcoin and all Bitcoin network traffic had to go through these alternate networks (or if we just end up being a space faring civilization) the amount of data we could transmit all at once could be very high, but the time it would take for that data to reach its destination would be measured in days. So we would seriously have to have a conversation about increasing the block time, but also the block size in the same conversation. Could end up with the same aggregate data size build up over time (same effective block size for the given block time), but who knows how that imaginary conversation might go anyway.\n\nhttps://media.tenor.com/Qbr2LVnYNvMAAAAC/serenity-cant-stop-the-signal-mal.gif \N 15103 \N 428054 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.1548254934028 0 \N \N f 237135750 \N 2 25437991 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 424316 2025-03-04 00:40:04.552 2025-03-29 22:39:47.364 Nostr Image Host: use nostr to host image files and create an upload form \N https://www.youtube.com/watch?v=j0NjaxfRMZM 21079 \N 424316 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 2.04815029814757 0 \N \N f 59379033 \N 1 211382034 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433833 2025-03-11 12:36:27.288 2025-03-29 22:39:47.364 Books And Articles Newsletter, Issue 5 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. This week you might notice a few changes. The volume of good content is a little overwhelming, but my goal is to keep quality material visible and accessible for as long as possible. So, I plan on consolidating older content into separate posts that make sense thematically, then linking to those posts in each week’s newsletter. The goal would be a cleaner, more concise newsletter that will still allow quick access to older stuff.\n\nTowards that end, I am temporarily removing discussion posts from "recommended older posts", with the objective of making that content part of a separate post. I’m toying with a “Best of 2023” type theme or something like “The Early Days.” As always I welcome suggestions. \n\nNext, I am planning periodic (Perhaps Quarterly?) “best of” posts, maybe, or posts by subject matter, ie “essays”, “poetry”, “book reviews”. There’s no strict format. I’ll let the content guide me.\n\nOne more thing. To highlight quality content, I’m allowing myself the indulgence of picking out a few posts each week as “Siggy’s Suggestions”, for content that may have been overlooked, or may have not fit the mysterious zaprank algorithm enough to make the top five. \n\nWell, that’s it. I hope everyone has a great week.\n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [Why The World Stopped Having Sex?](https://stacker.news/items/438325) by @erict875\n\n- [Wife’s Cancer Diagnosis, Part 3](https://stacker.news/items/444102) by @hodlpleb\n\n- [Bill Walsh’s Standards Of Performance](https://stacker.news/items/445150) by @kr\n\n- [What Do You Guys Think Of Lyn Alden’s Broken Money?](https://stacker.news/items/438209) by @Fabs\n\n- [Supper, place, village, city, state](https://stacker.news/items/437181) by @kr\n\n\n### Siggy’s Suggestions\n\n- [How To Be More Agentic](https://stacker.news/items/437276) by @elvismercury\nI have learned that @elvismercury always posts good content, even if it is sometimes over my head. This post is was both enjoyable and informative, as usual.\n\n- [Berkshire Hathaway’s 2023 Annual Letter](https://stacker.news/items/437408) by @kr\n\n@kr was on a roll this week. Warren Buffet is an interesting character, and his newsletter has its unique style. I really picked this one for me. \n\n- [Bitcoin (and other crypto) in fiction?](https://stacker.news/items/441951) by @StillStackinAfterAllTheseYears\n\nThis was posted by a newcomer to the space. I found the topic intriguing, and I hope to see more posts from this account\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n## Some Recommended Older Posts \n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar, Chapter 1](https://stacker.news/items/419498) by @jbschirtzinger\n\n### Book Reviews\n\n- [Zen And The Art Of Motorcycle Maintenance by Robert M. Pirsig](https://stacker.news/items/383302) by @carlosfandango\n\n- [The World’s First Bitcoin Fiction Anthology](https://stacker.news/items/347735) by @KonsensusN\n\n- [Man’s Search For Meaning](https://stacker.news/items/390069) by @carlosfandango\n\n- [The Sovereign Individual](https://stacker.news/items/427201) by @carlosfandango\n\n- [Neuromancer](https://stacker.news/items/401761) by @Scoresby\n\n- [Elric Of Melnibone](https://stacker.news/items/389474) by @Scoresby\n\n- [The Shockwave Rider, by John Brunner](https://stacker.news/items/418728) by @Scoresby\n\n- [Human Action](https://stacker.news/items/399897) by @Undisciplined\n\n- [Robert Jordan’s The Wheel Of Time: Books 1-3](https://stacker.news/items/416511) by @Undisciplined\n\n- [A History Of Religious Ideas #1](https://stacker.news/items/420220) by @Se7enZ\n\n- [A History Of Religious Ideas # 2](https://stacker.news/items/420192) by @Se7enZ\n\n- [A History Of Religious Ideas #3](https://stacker.news/items/427941) by @Se7enZ\n\n- [Nova, by Samuel R Delaney](https://stacker.news/items/427682) by @Scoresby\n\n- [Blood Music, by Greg Bear](https://stacker.news/items/436158) by @Scoresby\n\n- [Schismatrix, by Bruce Sterling](https://stacker.news/items/445373) by @Scoresby\n\n### Essays\n\n[Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816)\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Everything Is Here](https://stacker.news/items/422625/r/siggy47) by @Nuttall\n\n\n\n### Short Stories\n\nNone posted yet.\n\n### Past Newsletters\n\n- [Newsletter #1](https://stacker.news/items/411269)\n\n- [Newsletter #2](https://stacker.news/items/419973)\n\n- [Newsletter #3](https://stacker.news/items/428544)\n\n- [Newsletter #4](https://stacker.news/items/437218)\n\n\n \N 8544 \N 433833 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 1.74669876602337 0 \N \N f 2207096551 \N 17 143514755 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:36:26.117 f \N \N \N 0 0 0 0 13 0 0 435392 2025-03-12 16:42:04.453 2025-03-29 22:39:47.364 Hash-Based Signature Schemes for Post-Quantum Bitcoin Salutations fellow stackers. \n\nI've spent the last month researching the threat of quantum computing to Bitcoin, and how this threat could be concretely addressed without any new cryptographic assumptions, using one particular flavor of post-quantum cryptography: hash-bashed signature schemes. This article is the finished product of that research - you might call it a _digest_ of my findings.\n\n[At the end of the article, I propose a novel option called "Digests as Secret Keys" (DASK)](https://conduition.io/cryptography/quantum-hbs/#Upgrading-Bitcoin) which uses these algorithms to add a post-quantum fallback option to regular bitcoin addresses, without relying on complex new technology like ZK-STARKs (that will be my next focus). This upgrade could be implemented today, but would defer consensus changes until a practical quantum computer appears close at hand. [More discussion about that here](https://delvingbitcoin.org/t/proposing-a-p2qrh-bip-towards-a-quantum-resistant-soft-fork/956/3).\n https://conduition.io/cryptography/quantum-hbs/ 6555 \N 435392 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 9.36976765251501 0 \N \N f 319012426 \N 5 189838221 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 09:59:49.794 f \N \N \N 0 0 0 0 3 0 0 1226 2022-09-07 19:11:09.629 2025-03-29 22:39:47.364 Sunday Survey: Which of your Lightning Wallets has the largest balance? Obviously, if you only have one, choose that one \N 18441 \N 1226 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.8915585056137 0 \N \N f 60136663 \N 1 11937690 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444755 2025-03-20 08:37:33.585 2025-03-29 22:39:47.365 Introducing Mutiny Wallet: Private, unstoppable bitcoin payments \N https://blog.mutinywallet.com/introducing-mutiny/ 10273 \N 444755 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.465441610427 0 \N \N f 1109662395 \N 11 165753057 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:43:46.366 f \N \N \N 0 0 0 0 8 0 0 437583 2025-03-14 16:31:15.422 2025-03-29 22:39:47.365 What OLD technology needs to make a comeback? What do you wish the world never moved on from?\n\nhttps://i.imgur.com/H8vGhY2.jpg\n\nMy god, bring it back. Please tell me someone's bitcoinizing the N64.. \N 666 \N 437583 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0168915701632 0 \N \N f 236246607 \N 1 163935422 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457041 2025-03-28 06:00:08.306 2025-03-29 22:39:47.366 Taxation is theft is too weak. It's much worse than that Anyone who is capable of logical thought and has seriously considered taxation in relation to other forms of theft will come to the conclusion that either taxation is theft or taxation is just some other thing that they refuse to call theft. A necessary evil. I'm not one of those people that just brings up this topic with people. It's usually brought up by them in the form of their displeasure in how the government is using money or resources. Or, sometimes how they are not using money or resources. When the topic comes up I express my opinion and conviction. Taxation is theft. Usually, they concede the point and end up saying, "Well, we have to have taxes? How would the government be funded." To which I reply, well we would have to find out. I mean, if you think the government should do x, then you send them your money to do that. Why should those that don't want x have to send their money? Don't we live in a democracy? I think most people are just uncomfortable questioning things we aren't supposed to question. Honestly, this sounds like Stockrom syndrome to me. \n\nOver the years, I've had people tease me about saying taxation is theft. And I've discovered that one reason they do this is because they don't really understand the worst part of taxation being theft. They seem to think its because I'm greedy. That's not it. It's not that my money is being taken from me. Don't get me wrong. This infuriates me. Its not only because it is my money and they steal it by force then they use it to provide services that I actually need. Its not even that they have a monopoly on many of these services but do a terrible job performing them. I am perfectly willing to pay for things that I use and things that I need. I'm not looking to have a free ride off the back of anyone else. So what is the worst part of taxation?\n\nThe worst thing about taxation is that my money is taken from me by force and used to do many things that I find morally or ethically repulsive. Your tax dollars are used to do things that you would never support. These things are different for each person. There's nothing wrong with that. Would you donate to fund the murder and slaughter of people you have never met in some foreign land? Would you pay your hard-earned money to keep a dictator in power just so some fat cat can have a sweet deal? Would you pay your hard-earned money to ensure that some bureaucrat who isn't qualified to manage anything mismanages things that are vital to human survival? Of course you wouldn't, and that is what is so despicable about taxes. The idea that paying taxes is patriotic, the idea that you are the bad person because you understand what is actually happening is truly infuriating. It is truly a psyop. \n\nTaxation is vital to the power of the state and the political classes. Without it they have very little reason to exist. We are in a time when most voters seem to be driven by stopping the government from doing something they don't like with tax money. Or, they are driven by using this stolen money to do what they desire. This is a key tool politicians use the gain and maintain power. Control over the stolen funds. Either to use or withhold it from a cause or imitative. Most people are so under the mind control of the system that they can't put themselves in the shoes of those they oppose. They only think about what they are told they want. But the few that do, if they are willing to think will come to the conclusion that the only solution to this stalemate is to withdraw. The state should withdraw and allow individuals to voluntarily fund what they believe should be funded. The reality is that the system for this already exists. Its called the free market. \n\nI usually get the response, "Well if you made taxes voluntarily no one would pay them". Of course this may be true, but what does that tell you? That tells me that people do not really support all these things they are told they support. There is a mirage of support for wars and government programs that does not exist. Another common reaction is, well who would take care of the poor? This one is easy. We would. There are many wealth and ordinary people that have compassion for the poor and needy. I have zero doubt that the free market would be more effective at helping those in need than any state actor. After all, it seems absurd for anyone to think that the government would provide better food than individuals working together. Have you had government food? The same goes for every industry. But I'm not even saying that we need to get rid of the state. Most people seem to assume that things would not work if taxation was voluntarily. When I started seeing this pattern it occurred to me that there are two types of people in this regard. Those that accept the truth that taxation is theft, and those that are in denial. Everyone functionally knows taxation is theft but most are afraid to admit it is true.\n\n \N 17030 \N 457041 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 14.4038859908837 0 \N \N f 105289149 \N 1 12946734 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444467 2025-03-19 22:47:20.425 2025-03-29 22:39:47.366 Microbolt v2 is here https://microbolt.guide/en/ v2 is here 🎉🥳 and it's loaded with news‼️\n\nthis months on microbolt:\n- new firewall added: `awall`\n- added new reverse proxy: `caddy`\n- added new expl btc: `mempool`\n- added new section: `nostr`\n- various fixes and pull requests resolved\n- removed `fail2ban`, applied firewall level mechanism\n- bitcoin*: no more patches, except for ordinals\n- bitcoin-knots: bump to 27.1.knots20240801\n- bitcoin-core: bump to 28.0\n- fulcrum: bump to 1.11.0 + merged dep PR upstream\n- electrs: bump to 0.10.6\n- public pool: bump to latest commit\n- lnd: bump to 0.18.3-beta\n- thunderhub: bump to 0.13.31 + merged PR upstream\n- website: new homepage & about pages\n- website: nextra: bump to 3.0.2\n\nmicrobolt ❤️ cloud\n- automatic deployment of microbolt through ansible --> https://microbolt.guide/en/ansible\n\n[v1 post](https://stacker.news/items/470449) \N 19905 \N 444467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.87626932819 0 \N \N f 83836918 \N 1 156036780 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417974 2025-02-26 18:18:48.932 2025-03-29 22:39:47.366 Bubbles to live in Not too long ago I wrote some thoughts about the [exoself](https://stacker.news/items/537059). In my usage of that term, I mean incorporating other components of the world into a type of aggregate identity. A related idea, though, is curating your actual environment, not in such a way as to incorporate it into your self (although I suppose the barriers between environment and self are unavoidably permeable) but to make a pleasant place to live.\n\n\\#\n\nAt first I was thinking about what this would mean, physically. For instance, I'm typing this on a new [keyboard](https://www.keychron.com/products/keychron-k10-pro-qmk-via-wireless-mechanical-keyboard) that I love out of all reasonable proportion. I have other mechanical keyboards that I own out of ... appreciation, I suppose, for the craftsmanship of the thing-as-artifact, or for the passion or obsession that led to their creation. But this one I just love to type on! I literally look forward to coming home so I can type on it.\n\nPoint is, this is an environmental feature, and that got me wondering how far I could go on the quest to make my environment beautiful. I always felt hapless when it came to designing living spaces, but what if I only pursued my own flavor of beauty? According to my own personal aesthetic, unique to me? \n\nThat probably sounds idiotic, but I had never considered the idea before. My habitats have always fallen somewhere on the gradient between ascetic and cluttered with techno-junk bc I didn't know how to make things look nice by normie standards. I felt vaguely guilty, like I had failed to achieve even basic competence of something foundational.\n\nIt's funny how other people's values leach into you.\n\n\\#\n\nThen I read this [article](https://www.econlib.org/archives/2012/03/my_beautiful_bu.html) and [this one](https://www.econlib.org/archives/2013/04/make_your_own_b.html) by Bryan Caplan about the prospect of creating your own personal bubble.\n\nWe usually talk about 'being in a bubble' pejoratively -- it's what we say about people who've lost touch with the world and who soak in their own ignorance and self-soothing. They mainline news telling them how they are awesome and how the hated out-group is stupid and corrupt. They find talking heads who amplify the same messages, but louder and with more acid.\n\nI try really hard _not_ to be in this type of bubble because I think it's a giant source of alpha to understand reality, and not delude myself about the fantasy world I'd prefer to be living in. But the Caplan article made me think a bit differently about the whole idea:\n\n> You might even call it my Imaginary Charter City. I’m not just surrounded by Ph.D.s; I’m surrounded by libertarian economics Ph.D.s. I’m not just unfamiliar with NASCAR; I forget the very existence of professional sports for months at a time. [...] Why put so much distance between myself and the outside world? Because despite my legendary optimism, I find my society unacceptable. It is dreary, insipid, ugly, boring, wrong, and wicked. Trying to reform it is largely futile; [...] Instead, I pursue the strategy that actually works: Making my small corner of the world beautiful in my eyes.\n\nJust as I could curate my own physical environment to be beautiful by my standards -- a workspace with the right lighting and the right music and a keyboard that makes satisfying sounds when I press its buttons -- perhaps I could also create a bubble where instead of being depressed and miserable all the time because reality is so bleak, I could rather cultivate an enclosing reality like a gardener cultivates a plot: I could select intellectual exposures and social encounters that nourishes me, something comforting and exciting and supportive and alive.\n\nIf I want sunflowers, I plant sunflowers. \n\nAgain, you're probably saying: duh! but I never really thought about this before, not as something to do intentionally, not with the objective function of _the right vibes_. Whatever bubble construction I did was by accident, not design.\n\nI never made a quest out of it.\n\n\\#\n\nThis morning I read [this article](https://www.freyaindia.co.uk/p/whats-become-of-us) about some ways that social media -- and modern life in general -- are changing us for the worse. Usually we broach this topic in terms of how social media is addictive; or how it manipulates your emotions for profit, or makes you feel bad about yourself with all the comparisons. This sixty year old guy has abs way better than yours!\n\nThat's all true; but this article talks about other perverse changes that fall out of the contemporary world, the ubiquitous media environment:\n\n> What did we expect when we took down the traditions? When we uprooted our communities? And allowed a generation to be raised by algorithms and the role models it generates for them? And these platforms are always just there, too, reminding us constantly, daily, hourly, that it’s okay to have so little regard for other people.\n\n_So little regard for other people._ That punch landed. It's like we have honestly forgotten that having regard for other people is a thing that's important to do. Like, if I don't work at it, this isn't even a value that will surface in my mind when I'm interacting online. Instead I'm calculating the angles to eviscerate my 'opponent' with maximum elegance.\n\nIn other words: it's not just that you feel slimy and gross from doomscrolling on Twitter or whatever for hours at a shot; but that maybe it's actually _making you into a shittier human being_. I saw myself in this so much, as both the victim and the transgressor.\n\n\\#\n\nSo now I'm thinking about how to get tactical in creating my own bubble, and what the physics of that bubble should be. What inputs do I allow past the gate? What interactions do I try to have more of, what less of? Who do I delete from my mental and physical spaces? \n\nI still have conviction that reality is a competitive advantage and that I should know it intimately and as courageously as I can manage. But I've come around to the idea that it's okay if I only visit regularly. I don't have to make my home there. \N 16556 \N 417974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.040074263983 0 \N \N f 7561369 \N 1 215638256 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446371 2025-03-21 06:10:47.542 2025-03-29 22:39:47.363 Building a platform where ad engagement earns sats rewards. Feedback welcome! It's called Insightful Bits, and it's a platform where marketers can post ads, market research surveys, or other activities that users participate in, and in exchange they earn Bitcoin rewards for each engagement. A 45 second experience could pay 3,600 sats. A 3 minute survey might pay 11,000. A market research study might be 45 minutes and pay 150,000 sats. It all depends on what the marketer wants to offer to incentivize users. \n\nThis blog highlights the mission. https://insightfulbits.medium.com/better-marketing-through-mutual-value-a-bitcoin-backed-blueprint-f1f22442646\n\nI come from a digital advertising background so I know what advertisers want, and I understand the limitations of the existing advertising options. \n\nUsers would decide which data about themselves they want to include in their profile, and they decide which marketing experiences they want to participate in. So this shifts the power back to the audience to decide the terms on which they’ll engage. \n\nMarketers will get exponentially better engagement than the 1% they typically get in the digital ad landscape. And they’re rewarding the consumer rather than ad servers. Hundreds of billions is spent each year on digital advertising to stalk users. \n\nI’d love to get feedback from the Bitcoin community about ways this model could be made even better or more appealing to the audience. \n\nI’m also looking for talented individuals who have platform development/software engineering experience, and also those who can help build a large audience in a cost effective way. \n\nThe larger the audience, the more advertisers will want to get in on this. Bitcoiners are the coveted 18-50 demographic, they skew higher income, and they’re a growing and influential group. I want to make sure we use this growing power to reshape the dynamics of digital advertising into one that empowers sovereign individuals. \n\nAll feedback, questions, suggestions, or talent welcome as I work on bringing this to fruition!\n\nAlso, I welcome all Bitcoiners to join the waitlist. We launch in a few months. https://insightfulbits.com \n \N 1244 \N 446371 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 8.77547825174915 0 \N \N f 3480096497 \N 27 196482784 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 448349 2025-03-22 15:00:23.016 2025-03-29 22:39:47.366 Tip developers with BTC \N https://github.com/sudonym-btc/zap 20852 \N 448349 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.77110210476113 0 \N \N f 3358547789 \N 27 214570505 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 20:42:38.174 f \N \N \N 0 0 0 0 20 0 0 412443 2025-02-22 12:11:59.593 2025-03-29 22:39:47.366 Tech Tuesday - Share Your Favorite Tech Products Let's hear all about your favorite tech products, services, or projects!\n\nFeel free to share any new tech you've heard about, bought for yourself, or technology that you just think other stackers should know about.\n\nSend your best 👇 \N 11999 \N 412443 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 27.591651418011 0 \N \N f 423793808 \N 3 54205267 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436049 2025-03-13 09:13:44.297 2025-03-29 22:39:47.366 Self-custody costs money # Self-custody costs money\n\nWe often talk about holding your own keys like it doesn't cost anything. This isn't true. \n\nI don't think individuals are generally stupid. So if many of them are doing something (using a custodian), I wonder if they have a good reason.[^4]\n\n[^4]: It is possible that I have recreated an individual version of the [efficient market hypothesis](https://en.m.wikipedia.org/wiki/Efficient-market_hypothesis) which is bunk, so let's add that people can be mistaken and might not have full information. \n \nMaybe the reason so many people use things like Wallet of Satoshi or leave their bitcoin on an exchange is that they think it's cheaper than self-custody. \n\n# How much does custody cost?\n\n**Costs of onchain self-custody**\n\n- Transaction fees\n- Educating yourself on best practices\n- Running a node\n- Risk of theft or loss through user error\n\n**Costs of using an onchain custodian**\n\n- Rug risk: you could lose everything\n- KYC/AML compliance\n- Transaction fees\n- Lack of convenience\n- Lack of privacy\n\nFrom this rough comparison it seems that **onchain self-custody may not be free, but it is cheaper than giving up custody.**\n\nMany custodians pass transaction fees on to their customers or force you to wait on their convenience to make a transaction. Custodians massively increase your exposure to attacks through database leaks or bad actors inside the company and because they often compel you to report identity and amounts to governments. I don't see any case[^1] where it is cheaper for an individual to use a custodian than it is for them to hold the keys themselves.\n\n[^1]: Perhaps the Uncle Jim situation is an exception: granny giving her keys to her grandson might make sense.\n\n# Is custody cheaper for Lightning?\n\n**Costs of lightning self-custody**\n\n- Locking up liquidity\n- Convincing someone else to lock up liquidity\n- Running a lightning node\n- Paying attention\n- Channel setup/close fees\n- Rebalancing fees\n- Routing fees\n\n**Costs of using a lightning custodian**\n\n- Rug risk: you could lose everything\n- KYC/AML compliance\n- Transaction fees sweeping to onchain\n- Routing fees\n- Lack of privacy\n- uxto bloat in your onchain wallet[^2]\n\n[^2]: Presumably, there is some number of sats, over which the risk of a rugpull is simply too large for most people to accept. We probably all have a different number, but the lower bound of this number is based on the perceived useful size of a utxo. EXAMPLE: if you think 100k sats is all that you will trust to a custodian, any time you near this limit, you might transfer out of the custodian to a wallet you control. If this is an onchain wallet, you will be creating a bunch of 100k or less utxos for yourself. (If you are transferring out to a self-custodial lightning wallet, I'm curious why you were also using a custodial one). Therefore, if your limit is too low (eg. you are only willing to trust a custodian with 25k sats) you effectively prevent yourself from using the custodian at all.\n\nIf you use a custodian for lightning, you don't have to manage a node and you don't have to manage liquidity. You receive when you want and you send when you want, no sweat. However, there is the risk that you will be rugged/shotgun kyc'd or otherwise curtailed in your use of your bitcoin. This risk is probably[^5] the biggest cost of using lightning with a custodian. But it seems clear that, while lightning transaction fees may be lower than on chain, it costs more to be self-custodial. I can't tell if using a lightning custodian is cheaper than being self-custodial. \n\n[^5]: Is there such a thing as a risk-adjusted cost of using a custodian? I have never heard of any reliable way of calculating such a thing. It may be so fraught with unknowables that it isn't worth trying.\n\n# The Moral\nTransaction costs are not the only costs associated with a given layer-2. It is also important to think about how much it costs to be self-custodial. This was a bit of a revelation for me. \N 16177 \N 436049 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 8.85163357212456 0 \N \N f 259535584 \N 2 163434610 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:19:37.475 f \N \N \N 0 0 0 0 1 0 0 400855 2025-02-12 14:57:40.923 2025-03-29 22:39:47.366 Sats4AI - Private, Unmanipulated, Permissionless, Open-Source models AI platform # Good morning Bitcoiners!\n\nUnfortunately, current AI platforms go against key Bitcoin values (see below). We recently launched the Beta of [Sats4AI](https://sats4ai.com/) to rectify that and become Bitcoiners' favorite AI platform. \n\n\n\n# Privacy\n\nChatGPT has a free tier, but as the saying goes "If it's free, you are the product". In Bitcoin culture, we could also say "There is no such thing as a free lunch". Your prompts are linked to your account, saved, and used by OpenAI. While this data is not (yet?) sold for Ads, it's a privacy nightmare, with internal mess-ups: \n- [Trick prompts ChatGPT to leak private data](https://techxplore.com/news/2023-12-prompts-chatgpt-leak-private.html).\n![trick-prompts-chatgpt-1.jpg](https://m.stacker.news/21871)\n- [ChatGPT is leaking private conversations that include login credentials and other personal details](https://arstechnica.com/security/2024/01/ars-reader-reports-chatgpt-is-sending-him-conversations-from-unrelated-ai-users/).\n\nAnd a major honeypot:\n- [Over 225,000 Compromised ChatGPT Credentials Up for Sale on Dark Web Markets](https://thehackernews.com/2024/03/over-225000-compromised-chatgpt.html?m=1). \nRisks for compromised credentials: \n - Paid Users: $$$$$$ in API Calls\n - Free users: Blackmail (easy to write a script looking for embarrassing keywords in prompts history to find targets)\n\n**[Sats4AI](https://sats4ai.com/) doesn't have accounts to link prompts to and stores absolutely no data**\n\n******************************************************\n\n\n### Unmanipulated\n\n\nClosed AI platforms are black boxes. Is the answer I am getting coming from the actual AI model or was it hard-coded based on the company's interests or suggested by the Govt? You can't really know. \nHere are obvious censorship examples though: \n![GG355nhX0Ak2NLv.jpg](https://m.stacker.news/21881)\n![aWGGQ4A_700bwp.webp](https://m.stacker.news/21884)\n\n**[Sats4AI](https://sats4ai.com/) uses Open-Source models**, while they still have some biases based on their training data, they are a lot more neutral. \n\n******************************************************\n\n### Permissionless\n\n\nClosedAI platforms act as gatekeepers, deciding who gets to use it and who doesn't. \n - They don't like how you are using it? You are out : [OpenAI suspends ByteDance’s account ](https://www.theverge.com/2023/12/15/24003542/openai-suspends-bytedances-account-after-it-used-gpt-to-train-its-own-ai-model).\n - Sometimes they just don't feel like having new users: [OpenAI Pauses ChatGPT Plus Subscriptions for New Users](https://www.cmswire.com/digital-experience/openai-pauses-chatgpt-plus-subscriptions-for-new-users/).\n - Born in the wrong country? You are out! Sam Altman (OpenAI's CEO) : "There are countries where we decide not to do business" (WEF 2024 Interview with Ina Fried). In addition, although no fault of their own, ChatGPT is currently banned in 15 countries for a total population of about 1.8 Billion. \n\n**[Sats4AI](https://sats4ai.com/) doesn't discriminate and is available worldwide to anyone with Sats**\n\n******************************************************\n\n### Affordable\n\n**Text**\n\n- Free is not really free as described in the Privacy section above. \n- **ChatGPT+** is $20/month (+fee to convert to your currency if outside US) on a credit card (no credit card, no soup for you). \n\n- **Sats4AI:** 21 Sats / Prompt : \n - High usage: 10 prompts/day x 30 days = 6300 Sats / Month = Around $4\n - Medium usage: 5 prompts/day x 30 days = 3150 Sats / Month = Around $2\n - Low usage: 15 prompts / month = 315 Sats / Month = Around $0.20\n\n**Images**\n- **Midjourney** is $10/month (+fee to convert to your currency if outside US) on a credit card (no credit card, no soup for you). \n- **Sats4AI:** 100 Sats / image : \n - High usage: 2 images /day x 30 days = 6000 Sats / Month = Around $4\n - Medium usage: 1 image /day x 30 days = 3000 Sats / Month = Around $2\n - Low usage: 5 images / month = 500 Sats / Month = Around $0.35\n\n\n# This Is still in BETA for now but please try it and provide the shrewdest feedback so we can improve! \n\n\nFeel free to reach out for any feedback/comments / questions on [X/Twitter](https://twitter.com/sats_4_ai) or NOSTR: npub1rs2ytg24ayt05c6rcxxqv07tz8gdmwt9ukzvjt7ts8x5twync4ushuc4u6 \N 17798 \N 400855 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.5342295329606 0 \N \N f 23452203 \N 1 151877974 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437269 2025-03-14 12:21:21.926 2025-03-29 22:39:47.366 Brick wallet: a web frontend for NWC # Brick wallet\nA web frontend for NWC\n\n# How to try it\nJust click here: https://supertestnet.github.io/brick-wallet/\n\n# What is this?\nThis is a basic web wallet with send, receive, and a history tab. If you try to use it, it will first ask you to connect it to a backend that supports NWC -- e.g. consider connecting it to [Bankify](https://supertestnet.github.io/bankify/). After that, you can send and receive money as well as view your transaction history.\n\n# What is NWC?\nIt stands for Nostr Wallet Connect and it's a standardized api for controlling lightning wallets programmatically. Learn more here: https://nwc.dev\n\n# Pic of Brick Wallet\n\n![](https://supertestnet.github.io/brick-wallet/brick%20wallet.png)\n \N 17183 \N 437269 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7873109948519 0 \N \N f 497705288 \N 3 166563560 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437727 2025-03-14 20:09:01.282 2025-03-29 22:39:47.367 Operation Saylor - Episode 19/120 # Operation Saylor - Episode 19/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 19, corresponding to January 2024.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.33998635 BTC\n- € stack: 58.40 €\n- Current total value in €: 51,245.88 €\n- € into BTC: 30,000 €\n- Paid back to bank: 6,591.60 € \n- Outstanding debt + interests: 37,352.73 €\n- Installments to go: 102\n\n\n## Charts\n\n[![episode-19-stack-value-vs-debt.png](https://i.postimg.cc/PrXTdcrC/episode-19-stack-value-vs-debt.png)](https://postimg.cc/6TmD0MZK)\n[![episode-19-bitcoin-stack.png](https://i.postimg.cc/8kBTQDD8/episode-19-bitcoin-stack.png)](https://postimg.cc/3WRsmsd9)\n\n---\n\n## Log \n\nHappy new year! With this episode, we leave behind 2023 and start 2024.\n\nAnother natural year has rolled by as part of Operation Saylor. Regarding the Operation itself, it has been a rather simple and boring year: update our dear episodes, sell a bit of BTC some months, and that's it. In total, the BTC stack has decreased around 13 million sats, and I still hold 133 million. So far so good. I won't dive into the numbers: I'm planning on doing that in the second anniversary of the Operation, in July.\n\nAt the start of the year, I was hoping for 2023 to bring several things. Some have happened as planned, some didn't.\n\nFor example, I was planning on helping local merchants accept Bitcoin payments. Overall, I've definitely done that, although not 100% the way I pictured. I've had the pleasure of onboarding a few of them and help them out with both the technical and the financial bits of dealing with Bitcoin. Some are sticking to it and are fully orange pilled, which makes me extremely happy. I'm also happy because I've spent a lot more Bitcoin in 2023 than I did in 2022, which is great. Unfortunately, my Lightning node died in May, so I haven't been able to act as a service provider for merchants as I was hoping. Nevertheless, I could point them to many other great tools that I use myself. And honestly, I think it's better this way. I wouldn't want a merchant to depend on some crappy amateur node.\n\nAnother thing I hoped for when the year started was to see the both my local community and others around the world expand. The trend has been surely positive, although not as intense as I would have liked. I've seen my local community and others grow in headcount, with more people, more merchants, more events, more knowledge, more education. But not as much as I was hoping, especially for a year that has had a great financial performance, which should attract new people like flies to shit. Perhaps 2024 becomes a year of madness in terms of price rises and I finally see a horde of new people coming our way. One thing I didn't like about 2023 was how price-centric it has been. 2022 was nice and quiet on that kind of conversation, and most of the hot topics were around technical stuff being built. 2023, on the other hand, has felt like the typical year when the moon boys go loud and drown out the interesting conversations. \n\nFinally, I was hoping to keep a low time preference attitude in 2023. I think I did. Financially and professionally, things are going great. Besides Operation Saylor, I'm also planting other little seeds that should yield great returns in the future. I've also been doing very well in the health front. I am proud to say I'm the best physical condition I've ever been at, and I'm slowly improving each month. I hope to keep the trend in 2024. Let's see how high can I go before I plateau.\n\nOverall, I'm very happy with how 2023 went.\n\nNow, about 2024, I'm expecting good things. In Bitcoin, I'm expecting an even more noisy year with a lot of price action, many noobs coming in and the usual bull run madness. It's not going to be pleasant to see Internet infected with that craze, and I expect to retreat from many online spaces and mostly only visit dark private corners of cyberspace that won't be plagued with the moon army. In my local community, I expect to be a bit more generous and patient with them and try to educate new people towards the good way so that the can avoid the typical rookie mistakes and start their path towards being hardened Bitcoiners.\n\nI also hope to keep promoting free markets and people trading goods and services P2P without government involvement. This topic is increasing its importance in my brain. I'm starting to realize how much value society can unlock from returning to free markets, and Bitcoin is slowly fading into a secondary role as a simple tool to achieve it. As @Darthcoin brings up regularly, the truly important thing is not Bitcoin, but having sovereign individuals. Bitcoin is simply their weapon. No amount of state cucks owning Bitcoin (or worse, ETF IOUs) will make the world any better.\n\nAs for Operation Saylor, I look ahead another boring year ahead without any special action required. Financially, my expectations are positive: we are clearly above the Operation's entry price, and I think it will continue to be this way. So I'll just go selling a few sats here and there for the installments. As promised, I'll do a more thorough review of the performance so far in July. \n\nOn the personal level, I'm wondering how far am I from being free from having to fiat mine full time. I know that, once I reach a certain financial safety, I would like to give myself a break from fiat mining to give it a shot at certain crazy business ideas that I have around Bitcoin. Being conservative, I think it's still early for that, and I don't expect 2024 to be the year when I break free from the mine. Although, somewhere deep within, there's a small drop of wishful thinking that whispers... maybe.\n\nThanks for sticking around during 2023, and I wish you a great 2024. Let's all do our part to look back at 2024 as a year of achievements and success. And, as always, see you around next month.\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n- Episode 16: [https://stacker.news/items/288719](https://stacker.news/items/288719)\n- Episode 17: [https://stacker.news/items/322189](https://stacker.news/items/322189)\n- Episode 18: [https://stacker.news/items/363765](https://stacker.news/items/363765)\n \N 17221 \N 437727 \N \N \N \N \N \N \N \N B2B \N ACTIVE \N 11.4704915000842 0 \N \N f 320772453 \N 2 128237479 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 416158 2025-02-25 12:58:48.571 2025-03-29 22:39:47.363 [Recommendation] Dune (books and movies) I mentioned going to Dune part 2 in the saloon and promised to make a post about it. Without spoiling the main events of the plot, I'm going to discuss what's so amazing about Dune. I'll focus on the books, since this is ~BooksAndArticles, but I'll also give my impressions of the adaptation.\n\nI'd love to hear other people's thoughts about book and/or movie.\n\n# Dune (the book)\nFirst off, Dune is one of my favorite books of all time. I'm an economist with a background in atmospheric science who loves sci-fi, so Dune is very much up my alley. I've read all of the Frank Herbert books, and I recommend all of them, but the first one is really special. It's worth noting that Star Wars was heavily influenced by Dune (to the point where I've heard Star Wars referred to as a knock-off).\n\nDune is a planet that is the sole producer of an extremely valuable commodity, "spice", that is basically a combination of spices and petroleum in the context of Earth history. So, think about a substantially more extreme version of the spice trade. The planet is incredibly inhospitable: hotter and drier than any desert on Earth, plus there are enormous carnivorous worms in the desert. The native inhabitants of the planet are ferocious desert warriors who are in perpetual conflict with the oligarchs attempting to harvest spice.\n\n@r3drun3 made a [post](https://stacker.news/items/449385/r/Undisciplined) about the economics of Dune. The political setting of this universe is very detailed. There's an empire, but also great houses, trade guilds, and professional societies. Each of those are described in great detail, which makes the world incredibly immersive. There are a ton of dynamics in play all the time, but it's written so well as to not be confusing or hard to keep track of.\n\nThere are many themes being explored in Dune (understatement alert), so I'll just discuss a couple of my favorites. The most striking element of the book to me was how intricately detailed the native culture of Dune (the Fremen) is described. The society is fundamentally shaped around water scarcity and there are a wide array of cultural practices, beliefs, and technologies that exist to help them survive this place. There is also a religious belief system that has been externally curated and manipulated to make the Fremen receptive to a messiah that one of the secret societies is trying to create. It's a fascinating exploration of propaganda and myth making.\n\nAs a slight aside, I've been reading The Wheel of Time (review [here](https://stacker.news/items/416511/r/Undisciplined)) and there's a lot of overlap with Dune. One is sci-fi and the other is fantasy, but there are a ton of parallels.\n\n# Dune Parts 1 and 2 (the movies)\nThe two recent movies are fairly faithful to the book they are adapting, but they have radically pared down the content. The first book describes many characters in great detail, which would have been very difficult to cover in a movie. As a result, the movies are largely told from Paul Atreides' perspective and many of the things that would have been explained in the book are seen without exposition in the movies.\n\nThe director does a phenomenal job of showing many of the complex elements of the books without needing to spend precious screen time on exposition. Dune is also a very alien universe, despite being mostly about humanity. It takes place in the far distant future and the technologies are supposed to be simultaneously understandable in function and unfamiliar in form. This is executed beautifully on screen: everything is grand and distinctive and foreign.\n\nThe performances are overwhelmingly excellent, with just a couple of exceptions (Jason Momoa *cough*, Christopher Walken *cough*). Timothée Chalamet, in particular, has some incredible scenes in part 2. \N 4238 \N 416158 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5606578868777 0 \N \N f 7613693234 \N 61 82751318 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 21 0 0 407864 2025-02-18 12:37:16.273 2025-03-29 22:39:47.363 Exploring the collective cognitive threshold of zapping I wrote an article for [ungovernable misfits](https://ungovernablemisfits.com/) (tag @meshtadel) a short while back and Darth suggested that I post it on a site called stacker.news. _FWDing 10% to @DarthCoin for bringing me to this hallowed platform._\n\nI did, and I guess as they say, the rest is history. The post received 12k sats in a matter of 12 hours or so. People appreciated the PoW that I had put into this article that I'd revised 3 or 4 times and used no AI on.\n\nI was hooked. I had to write and post more on this magical platform that awarded labor with sats.\n\nBut then something odd happened. As I posted random SOC (stream of conscious) discussions or longer, more developed and laborious articles, I noticed a sort of threshold. I (internally) view this as the threshold of 2000.\n\nLet me explain. After that incredibly popular and widely zapped first work, _none of my other posts have received more than 2000 sats._ This was driven home today when, this morning, I dropped a new post in ~econs territory called [hyperinflation](https://stacker.news/items/474082/r/expatriotic) that immediately garnered a lot of attention, zaps and comments. It soared to, _checks notes_, 2918 sats.\n\nI thought, "Blast! Foiled again! What is this impenetrable barrier!" Have I offended the SN gods? Has @k00b and @ek written an algorithm to keep me down? Clearly I think the answer is much tamer than that. Which is to say, I believe the real truth is much more mundane.\n\n1. My day 1 success fed a sort of exuberance, but it also set my expectations a bit too high.\n2. MSM. People zap posts more if they think the post will be zapped more. A kind of self-fulfilling prophecy or feedback loop. This was touched on in a recent post by @undisciplined (https://stacker.news/items/473181)\n3. Every contributor has a "limit". Let's call it a range. You may deviate up or down a few standard deviations (also known as sigma σ or likeliness of a specific outcome measured as a percentage)\n\nIf you'd be so kind, please comment below if you have had a similar experience? What have you found your upper bond to be? Is it 2000 like me? 1000? 4000? Or have I missed the mark and the devils of chance and fate are simply toying with me, showing me an arbitrary pattern that exists primarily in my head?\n\n**Good night my fellow stackers. Stack well and stack often.**\n \N 2065 \N 407864 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.8021534860562 0 \N \N f 100724255 \N 1 179953013 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 225266 2024-09-01 17:46:27.321 2025-03-29 22:39:47.363 I wish someone had warned me about using self-custodial lightning wallet Using a self-custodial lightning wallet for the first time can be tricky. I learned some things the hard way and I want to share them with you. Here are some things you should know before you use a self-custodial lightning wallet :\n\n1. Don’t deposit your sats without checking the channel status of your wallet. If your wallet can automatically open channels, then you’re good to go.\n2. Watch out for the fees. Some wallets charge a high fee of a few thousand sats to open channels instantly. If you choose to open channels manually, some channels require a minimum amount of sats to lock (you can’t use them unless you close the channel), usually between 5k-10k sats.\n3. When you manually open a channel to a public lightning node, you need to fund the channel with your btc and pay for the on-chain fee. Choose the node you connect to carefully. Some nodes don’t give their inbound liquidity for free. Sometimes they can close or force close the channel and make you lose some sats for the on-chain fee.\n4. The capacity of a lightning channel is not unlimited. It is limited by the sats you use to fund it. So you can’t receive more sats than the amount you used to fund it, unless you buy channel liquidity from a node that provides it.\n5. It’s better to avoid using force close on your open channels. Try to use regular close and wait for the cooperative closing. Only use force close if you really have to, for example, if the node is inactive, unmanaged, or too expensive. And while you’re waiting for the channel to close, don’t clear your wallet app data or uninstall it. The channel needs to refund your sats and it needs that data to sync your wallet balance on-chain.\n\nI hope this helps, and feel free to post about any other things that I may have missed about self-custodial lightning wallets.⚡😊⚡ \N 14280 \N 225266 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.6234605491475 0 \N \N f 208982732 \N 1 23281569 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 306400 2024-11-24 10:15:47.664 2025-03-29 22:39:47.363 How I saved my son from a horrible medical experience (DIY medical research) \nI'm going to tell you about an interesting and instructive experience from a while back. The lesson I take away from this experience is - always do your own research. Be careful about trusting authority, no matter how confident and sure of themselves they are. \n\nMy family and I were in a new apartment, and were fixing it up. There were some issues with the shower curtain, it was allowing water to drain out onto the floor. So, we purchased some of those really powerful tiny neodymium magnets to attach to the shower curtain, to make it adhere to the metal of the tub better. Bottom line, we had some neodymium magnets around the house. \n\nMy son came up to me, abashed, late one Saturday evening. He said, "I accidentally got something stuck in my nose". \n\nWhat had happened? He was playing around with the magnets that we had laying about, wanting to pretend he had a nose ring. He ended up putting one on the outside of his nostril, and one on the inside. And there they stayed, he couldn't figure out how to remove them. \n\nWe fussed with the magnets for a little while. I did a little bit of research online, and found nothing useful. I touched the metal end of a screwdriver to the magnet, and it didn't come off. \n\nAnd then I thought - well, they'll know how to handle this at the hospital. So, we went off to the local children's hospital. \n\nThey had never seen anything like this. Three doctors tried for a little while to remove it, but had no luck. So they told me and my son to go to the adult emergency room, where there was supposedly also an ear, nose and throat specialist. \n\nIt was a Saturday night, with all that a Saturday night at the emergency room means in a big city, rough looking characters and blood on the floor. Anyway, they were able to get my son in pretty quickly, and started trying to remove the magnets. \n\nHow did they try to remove them? Well, the doctor tried with some instruments to pry the magnets apart, while he had a nurse holding my son down. And then another nurse. And then another, as my son continued struggling. Finally there were all the spare nurses - 5 of them - trying to hold down my struggling, crying son, with blood dripping off his nose.\n\nThe doctor gave up then, and told me that my son would need to undergo general anesthesia, so that he wouldn't be struggling and the doctor could get a good grip on the magnets, to remove them. \n\nAnd then my son and I were left alone, to wait for surgery. I was shocked that - really? - they would have my son undergo general anesthesia for something like this. I had my phone with, and started doing more research. And instead of searching for "magnet stuck in nose", I included the word "septum", which is a more medical-y word. \n\nAnd lo and behold, I found a treasure. An emergency room doctor had written a case study of this type of situation. Apparently multiple kids had undergone surgery for this, completely unnecessarily, because...all you need is to touch a heavy metal tool to the magnet. The article mentioned specifically a type of medical tool that would work, I think he recommended using the handle of a forceps or something like that.\n\nI ran over to the doctor, and showed him the article. He immediately went over, grabbed the forceps, touched the magnets on my son's nose with the handle, and the magnets jumped apart. \n\nThe ordeal was over.\n\nMy son and I walked out of the hospital. The nurse at the reception desk (who had been part of the group that was holding down my son, just moments earlier) was confused, and asked where we were going. I told her we're all done, we're going home.\n\nThank goodness that was over. \n\nBut here's something interesting. My son had been playing with the magnets for a while before sticking them on his nose. When he came to me, for help getting them off, he actually said to me, before we went off to the emergency room, "But can't we use some other magnets to get these ones off?" \n\nUnfortunately, that comment just kind of skated on the top of my consciousness, without really penetrating. In thinking back...of COURSE you could use other magnets, or a big piece of metal. And when I touched the tip of the screwdriver to the magnet on his nose, before we went to the hospital - I actually felt the attraction to the magnet. I just didn't think of experimenting any more, with a larger piece of metal.\n\nObviously, there were a lot of other people around - the total was about 9, between the 2 hospitals - that also didn't think of this. So I didn't feel that bad about having dragged him to the hospital. And I did eventually find the key to getting him out of this situation, without anything like general anesthesia (which is a lot more damaging than people think). \n\nBut I always try to remember in situations like this - think things through. Research. Try to find alternative ideas. \n\n \N 21057 \N 306400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2847541552401 0 \N \N f 215942341 \N 1 36213776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424671 2025-03-04 10:02:08.618 2025-03-29 22:39:47.363 The most Fiat advertising campaign ever I found these lovely old Fiat (car company) ads and decided fiat (the dollar) could use a little marketing assistance, so I changed them up a bit to speak to the particular advantages of fiat. \n\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/01/FIat-Before-the-Model-T.jpg)\n\n![](https://bitcoinscoresby.com/wp-content/uploads/2024/03/Fiat-Trip-to-the-moon.png)\n\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/01/Fiat-Scuba-fiat.png)\n\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/01/Fiat-Milano-Bankers-Model.jpg)\n\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/01/Fiat-Second-Best-Shape-in-Italy-2.png)\n\n \N 1433 \N 424671 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.1970662730237 0 \N \N f 4773621 \N 1 221450729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414711 2025-02-24 08:47:37.229 2025-03-29 22:39:47.363 Lyn Alden's "Broken Money" SN book club / discussion? I'm reading Lyn's new book [Broken Money](https://www.lynalden.com/broken-money/). It's great, and should be widely read and discussed. Would you be interested in reading the book together, (a few chapters a week, I think) and discussing it in SN comments over the coming months? \N 641 \N 414711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6838746473655 0 \N \N f 1512664667 \N 11 104947336 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 450678 2025-03-24 06:41:26.299 2025-03-29 22:39:47.361 El Salvador Makes Bitcoin Legal Tender \N https://bitcoinmagazine.com/business/el-salvador-approves-bitcoin-legal-tender 617 \N 450678 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.1044574438378 0 \N \N f 818139978 \N 5 73211869 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446681 2025-03-21 12:17:40.497 2025-03-29 22:39:47.362 Cheers To 3 Years Of Stacker News! Here's To Many More As @Undisciplined was writing a [post](https://stacker.news/items/570204), he realized that today marks three years since the [first post](https://stacker.news/items/1) on Stacker News. \n\nCongratulations to all the developers who made this amazing platform possible, especially @k00b.\n\n![](https://m.stacker.news/34954)\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n# **⚡ `We Share & ZAP Good Content`**\n\nhttps://imgprxy.stacker.news/MOHNts0rDwP5pOQ25UyKe6-ZS_uouT9rOehi2C9AoCY/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy80MjEy\n\nhttps://imgprxy.stacker.news/ZRT96L89yripsD9hmppYTlIjru20slo5WvCSwUohGeA/rs:fit:960:540/aHR0cHM6Ly9pbWdwcnh5LnN0YWNrZXIubmV3cy85Yk91RVFlSHhBdWJLRkY2ZjJoWTBydU9jazJrNnUtaU1ZMUUwanNUeXBvL3JzOmZpdDoxOTIwOjEwODAvYUhSMGNITTZMeTlwYldkd2NuaDVMbk4wWVdOclpYSXVibVYzY3k4MlFXWnBZemhCVmkxYWRtWlpXVWRaV1RoaGVrUkNhVTh3UW1sTGFXVlZiMHRYU0ZaWVYwWnRlVm93TDNKek9tWnBkRG94T1RJd09qRXdPREF2WVVoU01HTklUVFpNZVRsMFRHNU9NRmxYVG5KYVdFbDFZbTFXTTJONU9IbE9ha1Y0VG5j \N 5522 \N 446681 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.08561997904329 0 \N \N f 486917219 \N 4 157935073 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436722 2025-03-13 21:04:12.472 2025-03-29 22:39:47.362 Thoughts on the Roger Ver/Tucker Carlson interview First, let me be clear, I've had a somewhat combative history with Roger [1], but the man does not deserve to be in prison. The US Government's contention that a non-citizen can be guilty of tax evasion is just laughable on its face.\n\nThat said, there are a whole lot of lies and half-truths in that interview. First, Roger still seems to be giving himself credit for Bitcoin's early success. Yes, he promoted it a lot on different platforms, and indeed he was known as "Bitcoin Jesus" for a bit for his almost incessant proselytizing. But he wasn't the reason for Bitcoin's success and it was this belief that led him to say "I made Bitcoin what it is today and I'll do the same with Bitcoin Cash." Years of languishing BCH price (literally the same price as it was 2017 and that's not taking inflation into account) hasn't humbled the guy one bit.\n\nHe also shilled a lot of different altcoins, mostly focused around privacy. One of his goals on the show seems to have been to pump his bags and for him, it's probably not very different than his early Bitcoin advocacy. He's still a classic altcoin promoter and despite his utter lack of success the last 7 years, he continues down this path.\n\nBut the most egregious lie is this idea that his new book is the reason why everything is happening to him, implying that he has something so important to say that the US government must shut him down. The suggestion is that somehow Bitcoin was taken over by the US government and that they needed to suppress his book for the sake of government policy.\n\nThe lie wouldn't be so egregious if he sincerely believed it. But I don't think that's the case. Why? Because he still owns Bitcoin. The man is a salesman first, and his public pronouncements are almost always spin to get other people to buy what he's selling.\n\nPersonally, I don't think his arguments were compelling and he kept saying "cryptocurrency" which grated on my ears, but who knows how many people will be convinced by him? But then again, I always thought CSW was a fraud, but there were a surprising number of people that fell for his claims (including Ver, at least for a time).\n\nRegardless, I don't think this presages some sort of Roger Ver comeback as he's been irrelevant for a long time. Yes, he may go to prison and become something like a celebrity cause, and he certainly has enough money to promote his suffering. And yea, he may get some fame from being something like political prisoner of the deep state. But it won't make his opinions any more palatable because they're demonstrably dumb.\n\n[1] https://jimmysong.medium.com/bitcoin-cash-is-a-fiat-money-39626c002f77 \N 21383 \N 436722 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.4272816262874 0 \N \N f 151214779 \N 1 44460791 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434290 2025-03-11 19:00:43.655 2025-03-29 22:39:47.362 📝 "For Whom the Bell Tolls" gives Fourth Turning vibes > 'No man is an island,\nEntire of itself.\nEach is a piece of the continent,\nA part of the main.\nIf a clod be washed away by the sea,\nEurope is the less.\nAs well as if a promontory were.\nAs well as if a manor of thine own\nOr of thine friend's were.\nEach man's death diminishes me,\nFor I am involved in mankind.\nTherefore, send not to know\nFor whom the bell tolls,\nIt tolls for thee.' John Donne\n\nErnest Hemingway chose this poem as the focal point and opener of his novel *For Whom the Bell Tolls*, published 1940. Last week I gave this book a casual listen while I worked, and its themes struck a chord with me. I think they are useful to spend some time thinking about, so I'm going to outline them. \n\nReading this book, I was reminded of a few articles I read early in my 'bitcoin journey'. From that time, an idea that has been immensely valuable to me surfaced from Brandon Quittem writing about the Fourth Turning for [Bitcoin and the Rhythms of History](https://brandonquittem.com/bitcoin-rhythms-of-history/). This article was one of the cornerstones of my bitcoin understanding, and I really recommend it. Or did we all read it? If you haven't read this one, you probably read [Bitcoin Is the Mycelium of Money](https://brandonquittem.com/bitcoin-is-the-mycelium-of-money/), another great one from Brandon.\n\nHere are the themes:\n\n\n#### Fourth Turning Vibes, "My grandpa fought a war, so can I."\n\nThe central character and point of view of the novel is Robert Jordan, an American teacher of Spanish. He is deserving of an entire character analysis, but that's not my task right now. Suffice to say, you are able to peer into the mind of a well rounded man of action for four days of his life. You come to know him intimately by the end of it, as he acts out every dimension of human experience before you. As a volunteer in the Spanish Civil War, the story begins when he is given orders to cross enemy lines, join a guerrilla operative of Spaniards, and blow up a tactically important bridge. \n\nThere are two devastating low points for Jordan in the four days it takes to complete this mission. The first is when he realizes the planned attack that he is operating ahead of will not be successful, and the second is when he attempts to flee the site of the blown bridge. In both of these moments, his thoughts turn to his grandfather. I think this is significant. \n\nWhat you discover in the story is that Jordan idolizes his grandfather and despises his father. The grandfather was a heroic family figure, telling stories of his days fighting the American Civil War. He even passes on weapons he used. But the father was not so heroic, and in fact ended his own life with just such a weapon. Jordan in his harsher moments call his father a coward and blames him and his generation for the monsters he has to face in his life, in his war. Are you picking up the generational theory thread yet?\n\nI liked seeing this truth in action in this story, the truth that humans need the necessity of survival embodied. When the obstacles we face seem impossible, we turn back and look at who was here before, and see a way forward because of them. A lot of us understand that our moment in history is unique, but it didn't just come to be that way all of sudden, and there are patterns that our moment mimics. It is useful to find these patterns. Ignoring them is how you get a character like Zuckerberg, I think. Anyway, let's keep going.\n\n#### The Punishment of Death for Deadly Ideas\n\nThis book gives a number of ethical dialogues on murder for a moral cause, which I found useful even though I have never had to make such calculations in my life, so far. The ideas at war are communism and fascism. It's not that this book will teach you something new about those ideas, but from a number of angles, you get an understanding of how individuals grapple with the weight of death on their hands using the abstract belief in the common good of all. \n\nI'm spending some time thinking on this because I imagine it could come up at some point, living through global conflict, instant, constant propaganda and a lot of bad ideas. And when I imagine that, I question just how strong is my belief in what I think will be good for all? How could I know? I find it very difficult, even abstractly, to let an idea become a person. I don't really think the solution for bad ideas is death to individuals, is that wrong? It's probably not re-education or forced labor either. So what is it? I wonder if this is something this generation has agreed to reconsider, or not even this generation, just the specific human spirit that emerges from a century of world war. What do we believe, death to all who won't fly the liberty banner? I hope not, not at the core, not when it matters. \n\nI'm still turning this one over in my mind, and there's a lot more that each character in the story has to say on the subject. But right now, my collected thoughts are maxing out. Curious to know what others think.\n\n#### Now is All\n\n> “There is nothing else than now. There is neither yesterday, certainly, nor is there any tomorrow. How old must you be before you know that? There is only now, and if now is only two days, then two days is your life and everything in it will be in proportion. This is how you live a life in two days. And if you stop complaining and asking for what you never will get, you will have a good life. A good life is not measured by any biblical span.”\n\nThe outcome of the story solidifies this point, but I won't ruin it for you. I try to live my life on this principle, that the present is my life and everything before or behind it is a story. I do not think it is wise to always have a mind in the future or be constituted by facts of the past. The future is so vague anyway, it is not solid enough a foundation to build a life on. This is something I've been reflecting on lately in regards to what I think bitcoin is about, or what it means. The 'bitcoin future' is not solid enough, and it unfolds so slowly. But now, where I live, now is everything. \n\nI hope you enjoyed this literary discussion. More coming. \N 21408 \N 434290 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.8900823623752 0 \N \N f 154815461 \N 2 145898681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:08.208 f \N \N \N 0 0 0 0 2 0 0 410573 2025-02-20 14:44:47.949 2025-03-29 22:39:47.362 Weekend Book Recommendations What books are you reading this weekend? Any topic counts! \N 13038 \N 410573 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7980018596443 0 \N \N f 217376140 \N 1 204309443 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401636 2025-02-13 09:15:09.193 2025-03-29 22:39:47.362 GrassFedBitcoin on empty blocks and Antpool/Bitmain fuckery > Wow just figured out Bitmain's latest fuckery in real time.\n> \n> I'll give you the back story...\n> \n> Once upon a time Bitmain was grinding merkle roots instead of nonces aka "covert ASICBOOST".\n> \n> This gave them an advantage over other miners who didn't know this was possible. One company went out of business - KNC - citing "the Chinese having some secret advantage we don't know about" - which turned out to be true precisely for this reason.\n> \n> It's one of the reasons ASIC manufacture is so centralized today and this is correctly identified by many as being one of the most vulnerable aspects of the entire bitcoin ecosystem.\n> \n> The ASICBOOST issue came to a head when Bitmain used their influence to block the activation of SEGWIT (essential for Lightning) because it would break their ability to do it - at least covertly. Well, they would still be able to use asicboost, but just in an obvious way that would mean everyone else could do it too. They had patented it so as to try and prevent this because that's the kind of people we're dealing with here but I digress...\n> \n> When asicboost was independently discovered by Greg Maxwell Bitmain lied and said they weren't in fact using it.\n> \n> This was after years of bullshitting about segwit, with Bitmain pretending to be in favour of "alternative scaling solutions" or even doing segwit as a hard fork instead which would allow them to continue what they were doing.....\n> \n> Absolutely nobody believed them thanks to GMax having reverse engineered one of their ASICs and demonstrating what they had built and tried to keep to themselves.\n> \n> This was a watershed moment in the fork wars where everyone suddenly understood why Bitmain had been making nonsensical arguments against segwit forever. Wanting big/small blocks wasn't a related discussion. Segwit fixed TX malleability and was a no-brainer upgrade and in the end was combined with a block size increase anyway as a compromise.\n> \n> So we proceeded with segwit anyway, at which point Bitmain switched to overt asicboost which is actually even more powerful, it just requires grinding version bits instead of merkle roots but it's obvious if a miner is doing this.\n> \n> Now everybody does it so essentially the net effect of it being possible is zero, except your node asking you wtf miners are doing signalling for upgrades your node knows nothing about (upgrade coordination is what version bits are actually supposed to be used for).\n> \n> Oh well, relatively little harm done. If you're happy to ignore the obvious dishonesty and effort to undermine what's arguably Bitcoin's most important ever upgrade.\n> \n> Fun extra tidbit: Antbleed - an intentional backdoor with which Bitmain could remotely shutdown any Antminer in the world. They said it was for shutting down stolen ASICs but immediately patched it once it was discovered.\n> \n> Anyway, this company now accounts for 25-30% of all blocks found, if you naively observe the blockchain.\n> \n> That's not enough to spook anyone, but unfortunately many smaller pools are in fact just fronts for Bitmain which we know for three reasons:\n> \n> 1. The smaller pools are clearly using blocks constructed by, or for the benefit of, Antpool.\n> \n> 2. They share the same custodian of their newly mined coins (Cobo).\n> \n> 3. They have a lending program to bail out smaller pools who get in over their head due to FPPS.\n> \n> And the trend is sadly in the wrong direction, given Braiins recently abandoning its old payout model and becoming just a simple proxy for Bitmain as result of switching to FPPS.\n> \n> [Massive shoutout to @mononautical and @0xB10C for helping uncover how centralized pools have become.]\n> \n> Summary - Bitmain is not just Antpool, it probably accounts for >50% of block templates and manufactures >90% of the mining hardware in the world.\n> \n> So where am I going with all this?\n> \n> Amazingly, it's about empty blocks.\n> \n> What does that have to do with anything?\n> \n> Well, famously OCEAN has found 3 empty blocks in its short existence, causing many to wrongly make allegations of some sort of issue with the pool itself.\n> \n> This spurred on endless debate about why pools make empty templates in the first place and the actual reason so many of them get solved.\n> \n> In short, pools send empty templates then immediately follow up with full templates. So quickly, that the interim period accounts for a tiny minority of the empty blocks that get found on the network, and none of ours.\n> \n> In all three cases with OCEAN, the miner solved the empty block longer after already having a full template to work on - \n> \n> - leaving the pool in a position to either throw away a perfectly good (but empty) block or to broadcast it to the network and get miners >90% of the reward of a full block. Obviously the latter makes sense and does zero harm to the network while still adding to the overall PoW necessary for any attacker.\n> \n> So why would an empty block happen a few seconds after the pool had already sent an updated job for a full block?\n> \n> Because Antminers suck. \n> \n> *What we didn't realize was that they intentionally sucked.*\n> \n> You can send an updated job to an Antminer and watch it continue to work on an old job for over 60 seconds in edge cases.\n> \n> This was something we assumed was due to design of the ASIC itself, and thus just poor engineering on the part of Bitmain.\n> \n> But it turns out we were wrong, it's due to Antminer firmware.\n> \n> We know this because they just released a fix for it.\n> \n> So Bitmain watched, while people kept mining empty blocks, everyone would wrongly attribute it to pools, while explainers on popular websites like mempool(.)space would offer wrong explanations about it happening due to pools being slow to send proper templates and seemingly no one would understand even the motivation for sending empty templates, let alone the reason they get worked on for so long.\n> \n> But the fix being something that gets released right after OCEAN starts explaining what's really going on here is beyond reasonable doubt.\n> \n> They had a fix for it, and have been using that fix for their own mining.\n> \n> Now they can't get away with it because increasingly people are realizing that Whatsminers and ASICs from other manufacturers aren't finding anything like the amount of empty blocks because they switch jobs far more quickly.\n> \n> An Antminer has a far greater likelihood of finding an empty block because it spends longer working on old jobs.\n> \n> We've been out here yelling that the issue is with the ASIC *NOT* the pool.\n> \n> The fact that Bitmain intentionally crippled the firmware on the Antminers they would sell to the world, while keeping more functional units for their own mining is typical of everything Bitmain.\n> \n> Sure it can be incompetence and coincidental timing on the fix, but I sincerely doubt it.\n> \n> The conversation around empty blocks reached the point where people were beginning to realize something was broken with Antminers and then they just happen to release a fix for it right after people finally start catching wind of what's really going on.\n> \n> __________________\n> \n> So imagine this - \n> \n> You sell shovels to gold miners, and as we all know, the people who make money during a gold rush are the people who sell the shovels.\n> \n> But in this case the shovel seller is digging for gold himself too.\n> \n> And he has intentionally sold crappy shovels to all of his customers so as give himself an advantage.\n> \n> Empty blocks kept happening, people kept blaming pools.\n> \n> OCEAN got attacked over it. We explained the real reason they happen so much, and Bitmain releases a fix right after.\n> \n> Insane.\n> \n> This goes further than empty blocks.\n> \n> It's not just empty templates that take forever to work their way out of an Antminer, it's *all templates* and pools are constantly updating work as new transactions show up.\n> \n> A super lucrative transaction shows up in your mempool?\n> \n> All other pools are sending an updated job to hundreds of thousands of Antminers who will ignore it for a while, while Antpool has their miners working on it more quickly.\n> \n> It's not hard to see the motivation for all this, especially going forward as TX fees become more and more important.\n> \n> Again, insane.\n> \n> _________________\n> \n> If you want to watch @wk057 and I figure this all out in real time, watch the video below which was just intended to be a discussion on why empty blocks happen.\n> \n> I'll post it shortly so tweeter doesn't kill this post like it always does with external links. https://x.com/GrassFedBitcoin/status/1796311998466003418 19524 \N 401636 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.550394863702 0 \N \N f 174752432 \N 1 222141960 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423166 2025-03-03 03:57:53.871 2025-03-29 22:39:47.362 3 Hours Not Using SN Wallet: My Impressions \n\n\nStopped using SN wallet this morning at 11:00am\n\n### My Set Up\n\nI use SN primarily on mobile. I am on Graphene OS with a pixel 7 plus phone. \n\n\nFor receiving, I'm using a lightning address from Alby hub connected to my own node. I have a channel opened with Stacker News. \n\nFor send I started with LNC connected to my node through the Lightning Terminal app, then I switched to NWC through Alby Hub app. \n\n### My Impressions\n\nMy first choice would have been to connect via NWC through the Alby Hub NWC connect app first, but I still cannot change wallet priority on mobile. I believe @ek says this will be corrected soon. \n\nI began receiving zaps without any issues. It was a little shocking getting lots of notifications of small 1-10 sat zaps. I haven't yet figured out how to turn off notifications for receiving via remote wallet. Also, I think new stackers need to be reminded once again by @Undisciplined, @Natalia and me that you earn more when you zap more. \n\nZapping did not go as well. A few minutes after zapping I got a failed zap notification. Then another. Then another. All my zaps were failing. I decided to detach my LNC wallet connection, which left my NWC Alby Hub connection next in line to zap. That worked much better. \n\nStill, I have had a few failed zaps. I can't determine as of yet why some succeed and others fail. Overall, the Alby NWC is working better for zapping than the LNC using Lightning Terminal. Note- I have used this same LNC connection with my Zeus wallet, and it has worked fine. \n\n### Conclusion\n\nI think some kinks need to be worked out regarding zapping, although the fault could lie with my specific connection. \n\nReceiving seems pretty flawless using a lightning address connected to an always on node. \N 10016 \N 423166 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5581450409919 0 \N \N f 227320676 \N 2 119676797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434385 2025-03-11 21:01:17.984 2025-03-29 22:39:47.362 El Salvador Trip report - 4/8 [Part 3](https://stacker.news/items/553669)\n\nI'm staying in Berlin today, exploring the town, meeting the foreigners and locals, spending sats and hanging out at the Bitcoin Center.\n\nThe city is not traditionally a tourist town, so there aren't a lot of hotels or guest houses around. There are a surprising number of good quality establishments though, like bars, cafes and restaurants. They're sustained by a regular stream of daytime visitors from the surrounding towns that want to cool down in the mountains, enjoy the beautiful scenery, good food and music.\n\nWeekends especially are known to be busy, including the market, the local park and the town's main attractions, the volcano and modest water park. All of this makes Berlin appear to be a place where you could spend a week, month or even a year. There's always something good to eat, always something happening, but evenings and nights are quiet apart from the fireworks that the local youth set off.\n\nIf you do have the time, hike up the volcano or through the nearby coffee plantations. You can even book nature walks with local guides through the local Bitcoin Center.\n\n**Lightning:**\nBerlin is a successful example of a circular economy. There are dozens of merchants that take Bitcoin. Almost every restaurant, supermarket and convenience store will accept it. People are using Bitcoin among each other, to pay bills online or to pay their suppliers from out of town.\nUnlike in Berlin, everywhere I went people are confident in how to process Bitcoin transactions. Every shop I approached today took BItcoin, and every Lightning payment goes through promptly.\n\nAlmost all merchants use the Blink wallet, a local custodial platform formerly known as Bitcoin Beach Wallet. There is the option to hold the value of the balance in USD, known as "stablesats," but from what I can tell, that feature is rarely used.\n\nSome of the more prominent merchants, such as the supermarkets and restaurants, are equipped with "Bitcoinize" machines, which are stock Android point of sale devices that you can get for a relatively good price in bulk from China, at least compared to the price of a tablet or phone.\n\nThese devices also have an NFC card reader, and I do get to use my Bolt Card for the first time in a "real" life situation. However, the payment doesn't seem to go through quick enough, so the cashier cancels the invoice, gives me another one and I pay that from my Zeus wallet. Checking back with my LNbits wallet a few minutes later at the Bitcoin Center, I discover that the Bolt Card transaction indeed went through, meaning I paid twice, which isn't the end of the world, but I want to try again. I go back to the shop, but the clerk wouldn't let me make another attempt. I did however manage to use the Bolt Card at a restaurant (using the Bitcoinize machine) and at a bar (using the bar tender's personal phone). Pretty cool! But are Bolt Cards really more than just a party trick? The bar tender is definitely impressed!\n\nIn total, I visited nine local merchants today and while my payments didn't always go through Lightning fast, they always went through and everybody seemed genuinely happy to see me pay with Bitcoin.\n\n**The Bitcoin Center:**\nThe Bitcoin Center is a relatively large space where people meet, hang out, learn, exchange Bitcoins or advertise their services. There's a large room at the front where weekly meetups are held, a podcasting studio, a class room, a workshop area and a private office, around a courtyard that has yet to find its use. it makes a great impression and there are always people walking in and out, both locals and foreigners.\n\nInside, there's a professional ATM where you can buy and sell Bitcoin for cash. In theory. The machine does not let you buy sats with cash over the Lightning Network at all, and while it would let you sell Bitcoin for cash (requiring a phone number as identification), the machine is out of dollar bills and the withdrawal function is temporarily disabled.\n\nThere's another machine, the locally produced K1. it takes bills of small denominations and coins, although I only manage to fill it with quarters and a one dollar bill. I do discover a pretty serious bug almost immediately by chance, and the operator helps me report it to the developers.\n\n**Berlin:**\nThe town, estimated to have about 10,000 inhabitants, is much larger than Bitcoin Beach, but similarly isolated from the nearest economic center. In some ways, it does appear to be the perfect place for such an experiment. Locals are young, savvy, hard working and apart from coffee and cocoa farming, there are no local established industries. The city is dense and everything is a short walk away. The government provides few services here, and I didn't see any banks either.\n\nThe current El Salvadorian administration does not appear to be popular here, but there seems to be hope that Bitcoin can help leverage the town's advantages and provide for better living standards for people.\n\nI'm without a doubt that as El Salvador is changing, Berlin will change too, and probably mostly for the better. But it's not clear to me that everybody will look back at this moment without regret. Digital nomads and tourists will be able to outspend locals on rent and food, which may lead to a backlash on tourism, and maybe Bitcoin. \N 7760 \N 434385 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.1496012973245 0 \N \N f 359010751 \N 3 149126161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 03:55:21.257 f \N \N \N 0 0 0 0 3 0 0 446301 2025-03-21 03:54:23.021 2025-03-29 22:39:47.363 Are you interested in learning how to develop Bitcoin apps without coding? Yesterday I posted about a site I created ( QuestionsForGood.com ) without writing code, using only no-code tools, and it seems there is some interest from people to learn how to create this kind of web (or maybe mobile) apps without having to learn to code.\n\nI could create some material for people to learn this, or maybe some kind of group to help anyone with ideas, or just learn together (I am thinking out loud).\n\nAnyone interested? \N 21485 \N 446301 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 18.8290015946192 0 \N \N f 121632211 \N 1 94695409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:23:34.036 f \N \N \N 0 0 0 0 1 0 0 404550 2025-02-16 00:47:39.188 2025-03-29 22:39:47.363 Do You Trust Your Government? saw an interesting chart today showing the incredible range of trust people have in their governments.\n\non the high end, 84% of people in Switzerland trust their government, while only 22% of those in Slovakia trust theirs.\n\nAmericans are pretty close to the bottom of the pile, with only 31% saying they trust their government.\n\nwhat factors do you think are most responsible for the wide variations?\n\nwhy is switzerland most trusting, while italy (which borders switzerland) is among the least trusting of their government?\n\nwhy is costa rica the only one of the top 10 countries with the most trust to be located outside of europe?\n\nhttps://pbs.twimg.com/media/GEjMzUsW4AAcg-m?format=jpg&name=medium \N 695 \N 404550 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.4981620874303 0 \N \N f 228255290 \N 1 30402419 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407870 2025-02-18 12:42:31.122 2025-03-29 22:39:47.362 Yesterday We Adopted A New Dog \nPuppy picture\n\n![](https://m.stacker.news/47684)\n\nBreeder photo\n![](https://m.stacker.news/47683)\n\nFirst day at our house\n\n![](https://m.stacker.news/47685)\n\n\n\nYesterday I made an 8 hour round trip to pick up our new dog. You may rightly be wondering why I would drive all that way to adopt a dog? There must be local shelters, right?\n\nWell, there's a story behind it. In the early 2000s I became interested in a dog breed that is now called the American Bulldog. It's basically a farm dog bred in the south of the United States. No one is 100 percent sure what different breeds make up an American Bulldog. Two breeds that definitely seem in the mix are pitbull and mastiff. If you're interested in the history, it is fascinating if you enjoy that kind of stuff. Anyway, I got interested in Schutzhund training back then, and got a "hybrid" type dog from a well known breeder in California. She was the best dog I ever owned. I did Schutzhund with her for two years, but we never competed or did a trial. It was mostly my fault, not hers. It didn't matter. She turned into the sweetest, smartest, most loving family dog- affectionate, mentally stable, and fully capable of scaring the crap out of anyone she felt was a threat to her family. \nUnfortunately, she developed bone cancer at the age of 9. They gave her six months to live after amputating a leg. She made it another happy, healthy four years. \n\nA few months back I heard about a breeder who has similar blood lines to our old dog. He is an old time breeder who actually still knows one of the two original founding breeders. We had a family meeting, and decided to get a puppy. We reserved one from an upcoming litter. Sadly, all the puppies were stillborn. The breeder knew we had a similar dog in the past. He told us about a nice 1 year old female that had been living in his kennel for a year that he was looking to place. He said he would happily give her to me for free if I came to pick her up. She was supposed to be used for a breeding, but the breeder who had the mother had disappeared, and never sent the genealogy papers. Without the papers, working bulldog owners wouldn't take a chance on puppies without a pedigree. These dogs are mainly used for hog catching and weight pulling.\n\nI didn't care about the pedigree, and I intend to have her spayed anyway. He sent us a few photos. He warned us she hadn't been socialized with humans, but she seemed incredibly good natured. During the introduction he warned me that she might be stand offish and to be alert. She practically jumped into my arms, licking me everywhere. I was immediately hooked. \n\nGetting her into the truck was a process. She had never worn a collar or leash before. Once we got her in the crate, it was a smooth ride home. \n\nSo far, so good. I know the training process will be a little tougher with an unsocialized one year old dog, but I really enjoy the process. I might be on Stacker News a little less! (Nah. I doubt it)\n\n\n \N 2460 \N 407870 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.364545637357 0 \N \N f 223428413 \N 4 227662177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 457256 2025-03-28 11:04:57.53 2025-03-29 22:39:47.362 Pseudonymity Guide: How to securely create and operate a pseudonymous identity \N http://github.com/BlockchainCommons/Pseudonymity-Guide 15690 \N 457256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.908254334813 0 \N \N f 225446779 \N 1 37562584 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423663 2025-03-03 14:20:16.861 2025-03-29 22:39:47.362 DISCUSS: ETH is more decentralized than BTC when it comes to client diversity # Recently, one of the bankless dudes said ETH is the only L1 that has multiple software clients:\n\nhttps://twitter.com/RyanSAdams/status/1763633013630410999\n\nThe ETH people have a problem because [more than 70% of staking happens with only one client](https://clientdiversity.org/#distribution). Obviously, running staking software is wildly different than running a bitcoin node, but it is also true that almost everyone who runs a bitcoin node runs Bitcoin Core.\n\n# 2022-2023 were tough years for alternate implementations of bitcoin\n\nIn November 2022, [BTCD had a bug that caused LND nodes to fall out of consensus with the lightning network](https://stacker.news/items/88061) and resulted in a fair bit of mayhem.\n\nIn August 2023, researchers discovered [a vulnerability in a seed generation command in Libbitcoin](https://stacker.news/items/222441) that resulted in a number of wallets getting drained.\n\nIn the Bitcoin world, most of the resources go to Bitcoin Core and the other implementations are pretty much maintained by one or two key developers with far less review by the open source community.\n\nAnd when it comes to bitcoin consensus, a minor error can lead to a fork--so the general response among bitcoiners to these bugs seemed unanimous, thank goodness [99% of Bitcoin nodes run Core!](https://luke.dashjr.org/programs/bitcoin/files/charts/software.html)\n\n# Alternative Implementations for all the Wrong Reasons\n\nIn response to the tidal wave of transactions and data coming to Bitcoin from inscriptions, stamps, and BRC-20s, [Luke Dashjr implemented a different set of filtering policies](https://stacker.news/items/344763) for the implementation he maintains, Bitcoin Knots. And the new OCEAN mining pool used Knots as it's bitcoin implementation for their mining software.\n\nWhatever side of this debate you land on ([to filter](https://stacker.news/items/397842) or [not to filter](https://stacker.news/items/390030)), it exposes the reality that nonconsensus code (eg: mempool policy, relay policy) can be pretty important too, especially when you only have one client.\n\n# My Dilemma: Are Forks Worse than Centralization?\n\nAs bitcoin adoption increases, Bitcoin Core will come under more and more pressure. The people who currently maintain and contribute to it are awesome and do great work; however, Bitcoin Core sure looks like the choke point for the entire apparatus. We don't want mining too concentrated in one jurisdiction, we don't want a multisig with hardware from only one provider, so why do we feel okay with only one implementation? \n\nI think it would probably be a net good for Bitcoin if we had a serious competitor to Bitcoin Core, but whenever I set up a node, I pretty much always run Core because I'd rather use the software with the most eyeballs on it. I'm sure this is calculus is true for most actors in Bitcoin: sure I'd like to see client decentralization, but I don't want to get forked off.\n\nDo you see a world where a second Bitcoin client software emerges and gains significant (more than 20%) market share? \N 11523 \N 423663 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.3316287375188 0 \N \N f 447232282 \N 4 47102772 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433377 2025-03-11 03:21:22.045 2025-03-29 22:39:47.363 Why does Linux never won over macOS and Windows? I really struggle to comprehend why such an amazing OS never did it over the other big two? Numbers speak clearly, looking at StatCounter Global Stats, the market share (%) of operating systems for desktop and laptop computers in October 2023 was as follows:\n```\nLinux\t\t3.19%\nChrome OS\t6.9%\nmacOS\t\t18.43%\nWindows\t\t69.48%\n```\nand if you are curious, here below by region:\n\n| Region | Windows | macOS | Chrome OS | Linux |\n|---|---|---|---|---|\n| Americas | 75.84% | 13.5% | 7.21% | 3.45% |\n| Europe | 71.43% | 16.82% | 7.71% | 4.04% |\n| Asia | 56.4% | 22.1% | 12.7% | 8.8% |\n| Africa | 65.86% | 14.33% | 6.73% | 3.08% |\n| Middle East | 70.4% | 14.1% | 9.39% | 6.11% |\n\n...and by age group for the data freaks:\n\n| Age Group | Windows | macOS | Chrome OS | Linux |\n|---|---|---|---|---|\n| 18-24 | 77.5% | 11.0% | 8.0% | 3.5% |\n| 25-34 | 74.0% | 13.0% | 7.6% | 5.4% |\n| 35-44 | 69.1% | 14.5% | 9.6% | 6.8% |\n| 45-54 | 65.8% | 16.2% | 8.8% | 9.2% |\n| 55-64 | 62.2% | 17.8% | 10.9% | 9.1% |\n| 65+ | 56.4% | 20.4% | 12.8% | 10.4% | \n\nNumbers are saying it... especially looking at the last table! Will be Linux dying with the boomers? \N 21398 \N 433377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.10347988325292 0 \N \N f 121048301 \N 4 96372170 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 02:40:08.192 f \N \N \N 0 0 0 0 2 0 0 5159 2022-12-07 17:51:01.567 2025-03-29 22:39:47.363 _Broken Money_ book club, part 2 \nAmigos, it's time to explore part 2 of Lyn Alden's book [Broken Money](https://www.lynalden.com/broken-money/). \n\nThe general pattern will be the same as it was in [part 1](https://stacker.news/items/274195) -- I'll stir the drink a bit with some high-level comments inspired by these sections of the book, but you should feel free to comment in whatever way your heart moves you.\n\n**Caveat**: I am neither a historian of money nor of the hermeneutics of Lyn Alden. I'm just some guy. These are just some thoughts.\n\nLet's do it, @k00b, @carlosfandango, @satscats, @ekzyis, @q, @lawndough, @0fje0, @OsomSala49491, @fred, @BTCMagician, @Undisciplined. (Sorry if I forgot anyone who wanted to be poked!) \N 1046 \N 5159 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.57951442402888 0 \N \N f 8448438 \N 1 245031543 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 245900 2024-09-24 09:58:12.785 2025-03-29 22:39:47.363 Milei backs away from dollarisation as central bank pick rejects role Well that didn't take long.\n\nIt will be interesting to watch how this whole Milei thing unfolds -- it seems like a beautiful natural experiment to see how someone who says all the right things intersects a non-functional system; and what the implications of those encounters turn out to be. https://www.ft.com/content/f574a3af-fec2-41ed-b093-40bc9b20bdd2 5725 \N 245900 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 18.9752120450913 0 \N \N f 44836537 \N 1 180642063 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407470 2025-02-18 03:51:32.694 2025-03-29 22:39:47.359 Sunday Survey: How much USD equivalent is in your Lightning wallets right now? \N \N 7903 \N 407470 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 9.94122118106411 0 \N \N f 245521371 \N 3 68139575 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423314 2025-03-03 08:47:37.336 2025-03-29 22:39:47.362 Stacker News Features - Custom Zaps & Turbo Zapping In this new series, we’ll be highlighting underrated features stackers might not be aware of each week. Today’s post is all about zapping.\n\nBy now most stackers have figured out that the Lightning bolt next to every post and comment sends a zap to the creator of that content.\n\nBy default, your zap amount is either 10 sats or 1 sat, but you can set any custom zap amount in your [settings](https://stacker.news/settings). 69, 420, 666, 1776 sats, it’s all fair game.\n\nNot only can you customize your default zap amounts, you can also customize your zap amounts on a one-time basis. By simply long-pressing the Lightning bolt, a tooltip will appear that allows you to input any zap amount for that particular post or comment.\n\nFinally, there is one more tool for the stackers who like to live on the edge, it’s called turbo zapping.\n\nTurbo zapping is our most powerful zapping tool where each click scales your zap amount logarithmically, rather than linearly.\n\nFor example, if your default zap amount is 10 sats, your first click on a particular item will zap 10 sats. Your next click will zap 100 (90 more), your next click will zap 1,000 (900 more), and on and on.\n\nTo turn on turbo zapping, go to your [settings](https://stacker.news/settings), click the “advanced” dropdown below the zap default input field, then click to enable turbo zapping.\n\nTo read more about zapping on Stacker News, check out our [FAQ page](https://stacker.news/faq#zapping-on-stacker-news). \N 20897 \N 423314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9466410648032 0 \N \N f 1159319387 \N 10 207488359 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 432817 2025-03-10 15:48:59.457 2025-03-29 22:39:47.361 Web Monetization API - A proposed W3C standard \N https://webmonetization.org/ 1047 \N 432817 \N \N \N \N \N \N \N \N security \N ACTIVE \N 22.3650869351761 0 \N \N f 661181481 \N 4 215137631 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403594 2025-02-15 00:49:39.313 2025-03-29 22:39:47.362 Tips to cope with parenthood In a particularly frustrating moment, I threw caution to the wind and wrote about my struggles as a father: https://stacker.news/items/304937/r/cryotosensei. I didn’t expect many Stackers to read it actually, so I was floored and bowled over by the outpouring of good advice, support and encouragement. Even the more critical ones were written with compassion and well wishes. I can’t exactly explain why, but my heart feels so much lighter this week.\n\nI digested every comment and pondered it over and over again. Thank you for sharing a piece of your heart.\n\nTips to Cope with Parenthood\n\n1. Talk to a counsellor\n2. Talk to older fathers who have experience you don’t have yet\n3. Have a heart-to-heart talk with your wife, even if the conversation is going to be difficult\n4. Break the mundane routine. Embark on adventures with your children.\n5. Get a baby sitter and take an hour or 2 with your wife\n6. Collaborate with other parents to take turns to look after each other’s children. Schedule play dates\n7. Spend less time on social media and focus on being present for your kids\n8. Wake up earlier than the rest of the household and do something that fills your cup\n9. Reset your priorities and cut out the things you used to love doing but aren’t the best use of your time. \n10. Think about the alternative. Do you really want to usher in old age, having focused on your career but still unceremoniously disposed of by the workplace because you are increasingly seen as irrelevant?\n11. Read to make your mind feel relaxed.\n12. Similarly, instil a love of reading in your child so that he will want to read non-stop (and give you some space in the process).\n13. Trust that there is light at the end of the tunnel. Remember the Stoic philosophy - (“the obstacle is the way”). \n14. Hang in there. Hang in there. Hang in there.\n\nAnd yes, I will schedule a counselling session soon. Many thanks. \N 16214 \N 403594 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 15.9921124802728 0 \N \N f 95594943 \N 1 166121121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435530 2025-03-12 19:01:10.584 2025-03-29 22:39:47.362 Meme Monday- Best Bitcoin Meme gets 10k Sats It's back!\n\nAmazing job on the user activated fork of meme Monday by @MathiuJ and a big thanks to @k00b for ponying up the bounty to get these going again. \n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nRelease the memes!\n\n \N 21631 \N 435530 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.921361632683 0 \N \N f 164307073 \N 1 224276829 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:35:58.035 f \N \N \N 0 0 0 0 1 0 0 423928 2025-03-03 18:05:38.878 2025-03-29 22:39:47.363 DeepDive into Liquid: Part I - Overview, Installation, and Peg-In # DeepDive into Liquid: Part I - Overview, Installation, and Peg-In\n\nThis is a multipart DeepDive that will focus on the [Liquid Sidechain](https://liquid.net). It will be released in 3 Parts:\n* Part I (this): Overview, Installation, and first Peg-In\n* Part II: Asset Creation and Configuration\n* Part III: Advanced Topics and Peg-out\n\n## Overview ##\n\nLiquid is a federated BTC sidechain (Layer-2). The federation which controls the network are known as 'Functionaries'. Currently, there are 15 such Functionaries[^1] who are geographically dispered to help isolate the network from both physical and regulatory disruption. \n\nFunctionaries do the block signing for the network, which happens in a round-robin style arrangement - and consensus requires 11-of-15 to be available and in agreement.\n\nA unique aspect of this federation is that functioinary membership is dynamic - using a protocol known as *DynaFed* - this allows members to be rotated out/in depending on circumstance. In order to support a large number of signers, the functionaries use a signature scheme known as [ROAST](https://eprint.iacr.org/2022/550.pdf) (Robust Asynchronous Schnorr Threshold Signatures). As stated:\n\n "It guarantees that a quorum of honest signers, e.g., the Liquid functionaries, \n can always obtain a valid signature even in the presence of disruptive signers \n when network connections have arbitrarily high latency. Our empirical performance \n evaluation shows that ROAST scales well to large signer groups, e.g., a 67-of-100 \n setup with the coordinator and signers on different continents. Even with 33 malicious \n signers that try to block signing attempts (e.g. by sending invalid responses or by not \n responding at all), the 67 honest signers can successfully produce a signature within \n a few seconds."\n\nObviously this along with the inclusion of *DynaFed* (a recent addition to the network), seems to indicate that they plan to increase the total federation functionaries from 15 to more in the future. \n\n**Functionaries Sign, not Mine**\n\nA key aspect of Liquid is *there is no mining*. The core asset, L-BTC, is only created when BTC pegs-into the network, so unlike Bitcoin, mining is not used to create issuance of new coins. The total amount L-BTC can be verified along with the equivalent amount of BTC, which are held in a public multisig address. This ensures that there is no inflation possible of L-BTC, since it will balance 1:1 with the pegged BTC.\n\nBy default, all Liquid transactions use *Confidential Transactions*, so both the type of assets and amounts transacted are hidden, *even to functionaries*. However, Functionaries can still see the from / to addresses involved - they only don't know *what* is being transferred. \n\n**Liquid Ecosystem and Roles**\n\nHere are some charts showing current ecosystem members and the roles various members can fulfill. In total there are currently 66 Liquid Members (not all Members are Functionaries).\n\n![1-liquid-member-logos.png](https://m.stacker.news/13613)\n![2-liquid-roles.png](https://m.stacker.news/13614)\n\n### Assets\n\nLiquid supports Asset Issuance. Any full-node can issue their own Assets (only requirement is to have needed L-BTC to pay for signing fees). These assets fall into the following categories / use-cases:\n\n * Tokens (e.g. arbitrary token issue, stablecoin, etc)\n * Swaps (e.g. atomic swap of Token A for Token B)\n * Options / Smart Contracts / Covenants (e.g. swap Token A for B if condition ABC is met)\n * Securities (e.g. issue dividends to Token A holders after X time)\n * Restricted Assets (e.g. prohibit holder of Token A from transfer without approval)\n\n### Additional Opcodes\n\nAt its core, Liquid is basically "BTC plus special OPCODES less Mining". In order to support the Smart Contracts and Convenants seen above, Liquid reintroduces some safe but disabled opcodes, including string concatenation (CAT), substrings, integer shifts, and several bitwise operations ([see here for more](https://github.com/ElementsProject/elements/blob/master/doc/tapscript_opcodes.md?ref=blog.blockstream.com)).\n\nAdditionally a new DETERMINISTICRANDOM operation which produces a random number within a range from a seed. Also included is CHECKSIGFROMSTACK (CSFS) operation, which verifies a signature against a message on the stack, rather than the spending transaction itself.\n\nThese new opcodes have several use cases, including convenant-style controls, double-spent protection bonds, lotteries, merkle tree constructions to allow 1-of-N multisig with huge N (thousands), and probabilistic payments.\n\n# Installation of Elements Node\n\nLiquid uses a variation of BTC Core program known as Elements, much of the setup and use are very similar to bitcoin. Please note that Elements **requires a fully functioning bitcoind daemon is available** (it is a sidechain, after all). Thus for this demonstration, I am using my Umbrel since it makes installing Bitcoin and Elements quite simple. \n\n*If you are intending to run Liquid on a bare-metal setup, please refer to this [getting started guide](https://elementsproject.org/elements-code-tutorial/working-environment) to setup your environment. Setting up a core-bitcoin install is outside the scope of this DeepDive*\n\n### Running Elements on Umbrel\n* Meet requirements (1TB disk for BTC / 25GB disk for Liquid / >8GB RAM[^2]) \n* A running and fully-synced Bitcoin 'App'\n* Install Elements 'App'\n\n... Go take a several hour break while it downloads ...\n\n* Navigate to Elements 'App' web interface on Umbrel and copy `rpcuser` and `rpcpassword` values\n\n![3-umbrel-elements.png](https://m.stacker.news/13615)\n \n* Save the above values as bash variables for use later\n - `$ export E_RPCUSER=elements`\n - `$ export E_RPCPASS=XXXXXXXXXXXXXXXXXXXXXXX`\n* You should now be able to issue commands against the elements daemon\n - `$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS getblockcount`\n \n 25846 (It doesn’t matter what the number returned is as long as no error.)\n* Create a default wallet\n - `$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS createwallet ""`\n* Check balance info (should show 0 balance with no errors)\n - `$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS getwalletinfo`\n\n# First Peg-In\nNow let's peg-in some bitcoin in order to receive L-BTC within our Liquid wallet. (*NOTE: There are online services that automate this entire process and make it much simpler. In general services like [Sideswap](https://sideswap.io/peg-in-out/) makke this process much easier*)\n\n* Generate a new peg-in address\n - `$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS getpeginaddress`\n \n {\n "mainchain_address": "bc1qXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",\n "claim_script": "001489b0XXXXXXXXXXXXXXXXXXXXXXXXX"\n }\n\n* Save the `claim_script` above in a variable for use later\n - `$ export E_CLAIMSCR="001489b0XXXXXXXXXXXXXXXXXXXXXXXXX"`\n* Send some btc to the `mainchain_address` listed above (I'm sending 150000 sats)\n* Copy the BTC transaction ID and save to variable\n - `$ export B_TRANSID="bb1d0903XXXXXXXXXXXXXXXXXXXXXXXXXXX"`\n* Wait for the confirmation[^4]\n* On your BITCOIN node, run the following command\n - `$ sudo ./scripts/app compose bitcoin exec bitcoind bitcoin-cli getrawtransaction $B_TRANSID`\n \n 020000000173f50....\n\n* Save that output to bash variable\n - `$ export B_RAWTRANS='020000000173f50....`\n* On your BITCOIN node, get output proof\n - `$ sudo ./scripts/app compose bitcoin exec bitcoind bitcoin-cli gettxoutproof '[""]'`\n \n 00406426ea774aff7437de482c73f2ac8......\n\n* Save output proof in bash variable\n - `$ export B_OUTPROOF='00406426ea774aff7437de482c73f2ac8....'`\n* Now back on the elements node, we can claim the L-BTC\n - `$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS claimpegin $B_RAWTRANS $B_OUTPROOF $E_CLAIMSCR`\n* Issue a getwallet info on Elements and you should see an unconfirmed balance\n - `$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS getwalletinfo`\n \n "unconfirmed_balance": {\n "bitcoin": 0.00149952\n }[^5],\n\n* After 1 confirmations (approx 2 mins) the balance should be confirmed\n - `$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS getwalletinfo`\n\n "balance": {\n "bitcoin": 0.00149952}[^6]\n\n## Wrap Up and Preview for Part II. \n\nThis was just the basics, in this DeepDive we got our Elements node running and pegged-in our initial BTC balance. \n\nIn Part II is where the fun begins, we will transfer (and see Confidential Transactions in practice), issue Assets, and get the assets in the registry.\n\n\n\n[^1]: As of 1-21-2024. There are 66 members who can perform other functions on network, but only Functionaries can sign\n\n[^2]: RAM usage is higher for Liquid than for BTC alone due to Confidential Transactions processing\n\n[^3]: It may be possible to run the `elements-cli` command without installing it separately, however I could not find it in the container. Anyway, the download of elements node is quite small and it communicates via localport on Umbrel, so this works fine.\n\n[^4]: Requires 102 confirmations. Services like sideswap will release after 2 confs for small amounts \n\n[^5]: Balance less the 48sat transaction fee\n\n[^6]: yes, the label is still called 'bitcoin' but can be changed if that annoys you :)\n\n\n \N 2437 \N 423928 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.24397858335168 0 \N \N f 4186669546 \N 34 75153993 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 436823 2025-03-13 23:31:41.876 2025-03-29 22:39:47.362 The Bitcoin Halving Episode XIV. Block height: 837000. How the Bitcoin halving works and why it (still) matters.\n\nSubstack Article: https://carlbmenger.substack.com/p/the-bitcoin-halving\n——————————————————-\nTo celebrate the upcoming fourth Bitcoin halving, which occurs in 3,000 blocks (Progress 98.5%) as of the time of this writing, I will cover the most important Bitcoin halving stats and facts. Of course, I get it, a lot of you folks already know that the Bitcoin halving is the event when the dollar value of Bitcoin gets halved, and this happens about every 4 years. So better sell your Bitcoin now, than being sorry later? Or is it more the other way around? Buy one tenth of a Bitcoin now and own a whole Bitcoin after the ‘having’?\n\n![Boomers](https://i.postimg.cc/W3nBWDxT/photo-output.jpg)\n\nAfter reading this and a lot of other misleading information about the Bitcoin halving, I had no choice but to write this article to clarify once and for all what the halving is and why it still matters. It is just remarkable how little people know about Bitcoin in general and the halving specifically. Even people who are successful in the financial sector make the strangest statements as you can see above. That simply understates how early we still are and is not a judgment but reality.\n\n### The Bitcoin Halving\n\nAs you may have guessed, Bitcoin halving does not mean that the price of Bitcoin halves or magically appear as more coins in your wallet. I mean, it is not some Shitcoin airdrop, right. Bitcoin halving is an event that reduces the SUPPLY! of newly produced bitcoin by half. To emphasize this once again, it is not the price in dollars that is halved, but the new quantity put into circulation. The new Bitcoin put into circulation is called mining reward, and it is very important for the security of the Bitcoin Network. To understand this better, let us quickly recap how miners are being rewarded for their energy expenditure and for validating transactions on the Bitcoin network.\n\n#### Proof of Work\n\nTransactions on the Bitcoin network are validated and confirmed by miners using a consensus mechanism called Proof of Work. In Proof of Work, miners are constantly validating transactions and grouping them into blocks. To prove that they did all the necessary work for the Proof of Work algorithm, they try to solve a mathematical problem. The first miner who finds the correct solution submits a newly created block to the network and is rewarded for their hard work with a mining reward. This reward is the main protagonist for the Bitcoin halving, because this is exactly the reward that gets cut in half when the Bitcoin halving occurs.\n\nIn January 2009, when the Bitcoin network was started, the first block, called the genesis block, was mined. According to the algorithm, the mining reward started at 50 Bitcoin. There have been three Bitcoin halvings so far (2012, 2016, 2020). This year, 2024, is the fourth Bitcoin halving, where the mining reward gets cut from 6.25 (900 daily) Bitcoin to 3.125 (450 daily). In general, Bitcoin halvings will occur roughly every 4 years until the year 2141, when the Bitcoin blockchain reaches the final number of 32 halvings and stops rewarding miners with block subsidies, so they will have to rely solely on transaction fees (more on this later).\n\nLet us quickly sum this: The incentive to mine Bitcoin and thus to provide computing power and energy to secure the network against attacks and validate Bitcoin transactions is that the miner receives Bitcoin in return, the so-called mining reward. This reward follows a fixed schedule, encoded in Bitcoin's DNA, and halves roughly every four years. This graph summarises the Bitcoin halving concept mathematically.\n\n![The Bitcoin Halving](https://i.postimg.cc/vmv2MJhv/photo-output.png)\n\n### The Halving Code\n\nLet us go more in depth and start technical because, Code is law, not my words. The code snippet you see below is taken from the Bitcoin Core Github repository from the validation.cpp file, line of code 1750, that is responsible for validation the concept of the Bitcoin halving.\n\n![The Halving Code](https://i.postimg.cc/rws5zvqJ/photo-output.jpg)\n\nWe weren't very precise at the beginning. As you can see when looking at the code, the time of the Bitcoin halvings is not measured in years but in blocks. The number of halvings is calculated using the current block height (nHeight) and subsidy halving interval (nSubsidyHalvingInterval) which is a constant equal to 210,000 that represents the number of blocks after which a halving occurs. Assuming that a block is mined on average every 10 minutes, we can quickly calculate that it should take roughly 4 years to mine 210,000 blocks.\n\nThe next two steps are also quite interesting. We have an ‘if’ check that returns 0 when halving is greater or equal to 64, which is mostly used to protect the right-shift operator that comes later. However, this doesn’t mean that there will be 64 halvings, because the actual subsidy will be 0 from the 33rd halving onwards. The next step is to just get the first block subsidy in Satoshis (The smallest unit of Bitcoin, like cents to Euro). COIN constant represents one Bitcoin in Satoshis (One Bitcoin = 100,000,000 Satoshis).\n\nNow we’re getting to the actual calculation, which is performed by using the right-shift bit operation instead of division, for performance reasons. If we start with 5,000,000,000 (50 * 100,000,000) and begin right-shifting it, we can quickly see that the maximum number of times we can iterate is 32. At the 32nd attempt, our reward will be one Satoshi; if we shift one more time, it will give us 0 as a result. We can quickly calculate that if one halving occurs every 4 years on average, this means that the mining reward will stop around the year 2141.\n\n![Bitcoin Issuance Shedule](https://i.postimg.cc/dQW1DD3b/photo-output.jpg)\n\n### Why does it matter?\n\nThere are a few main theories why the Bitcoin halving (still) matters or won‘t. Let us dive into some of them.\n\n#### Sound Money Theory\n\nThe Bitcoin halvings create controlled issuance of Bitcoin with a perfectly predictable monetary policy. It is not true that Bitcoin has no inflation, yet. The current inflation rate is at around 1.8% and will decrease to around 0.8% after the fourth halving. The inflation rate will be decreasing to 0 over time. After that, Bitcoin becomes deflationary as some of the already existing Bitcoin will be lost.\n\nA fixed schedule of issuance means, that there are no hidden expropriations. Even if Bitcoin is currently still inflationary, all participants know this by informing themselves about it. Bitcoin is open source and can be accessed around the globe. The fraudulent thing about the fiat system is precisely that nobody really knows how high the hidden expropriation through inflation is. Making things worse, that’s intended by governments to run huge deficits that needs to be inflated away over time.\n\n#### Scarcity Theory\n\nFrom a mere demand/supply perspective, the Bitcoin halving matters tremendously. In theory, Even if the demand for Bitcoin stays the same over time, if the new issuance gets cut in half, every 210,000 blocks, it should cause the price of Bitcoin to go up because the same demand meets less new supply. With the current supply, the market is able to absorb 900 new Bitcoin per day (considering that most miners sell their rewards instead of hoarding to cover expenses). After the halving, the amount of newly created Bitcoin will drop to 450 per day. If the demand stays the same, the price of each coin should increase. The Bitcoin market, of course, is not that easily predictable, and even though previous halvings had a positive impact on the price over time, there are no guarantees, with the exception of short term volatility.\n\n#### No Impact Theory\n\nMore and more people (also in the Bitcoin Space) are of the opinion that the halving has little or no influence on the Bitcoin price, because the amount from 6.25 Bitcoin to 3.125 is no longer as significant as the reduction at the beginning from 50 Bitcoin to 25. However, I cannot relate. Of course, the quantity reduction is no longer as drastic, but the value per Bitcoin has increased significantly over time. At the first halving in 2012, a Bitcoin was worth around $12; now it is hovering around $70k. What does this mean?\n\nAfter the first halving in 2012, the issuance of new Bitcoin was 3600 daily, multiplied by the price of $12, which equals $43.2k worth of Bitcoin daily, cut from $86.4K before the halving. At them moment (March 2024), Bitcoin’s worth of $63 million are issued daily ($70k * 900), which is reduced to $31.5 million ($70k * 450) after the 2024 halving. Seeing those numbers, it looks to me like the halving has more significance than ever, especially in light of the fact that institutional adoption (i.e. EFTs) has made it easier than ever for larger entities to stack Bitcoin, increasing the potential demand substantially.\n\nDespite the fact that the quantity of Bitcoin is not reduced as drastically as it was at the beginning, the dollar value is. I therefore still assume that the halving will have a significant impact on the price over time. The efficient market theory, i.e., that we know in principle that the Bitcoin halving will occur and that it is therefore already priced in, is a fairy tale. As mentioned at the beginning, knowledge of Bitcoin is marginal, even among financial experts, not to speak of normies, so how can one then claim that all market participants are acting efficiently and rationally? Of course, there are no guarantees, and this is not financial advice! Do your own research, and don’t trust an old, grumpy guy that popped up in your Stacker newsline. Verify!\n\n![Bitcoin Halving Stats](https://i.postimg.cc/C546MWw0/IMG-9153.jpg)\n\n### What happens after 2140\n\nAs we have already learned, the last Satoshi (the smallest unit of a Bitcoin) will be mined in 2140. Now, of course, the question rightly arises as to what will happen after that. One thing is for sure: Miners will no longer be incentivised to mine Bitcoin with new coins, but by collecting transaction fees solely. This also means that on-chain transactions will definitely become more expensive over time. Therefore, at some point, not everyone will be able to afford on-chain transactions, so they will only be used when truly necessary (Substantial amounts).\n\nHowever, this will not make Bitcoin exclusively accessible to the elite, as work is already underway on so-called 2nd layer solutions. The best example in this context is the Bitcoin Lightning Network for small to medium amounts that can be carried out instantly, to buy your cup of freshly ground coffee, for example. But this is another topic, and if you want to dig deeper into the Bitcoin Lightning Network, here is my Lightning Article (https://stacker.news/items/261714/r/CarlBMenger)\n\n### The End\n\nThat's it for this episode. I hope you gathered some valuable knowledge from this one. Keep STACKing and HODLing for the long run. Thanks for reading, and I hope to see you in the next one. Until then, remember: Not the price gets halved during the Bitcoin halving but the quantity of new issued Bitcoin.\n\n**₿ critical, ₿ informed, ₿ prepared. Yours,**\n\n![CarlBMenger](https://i.postimg.cc/7LmvXGFD/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n———————————————-\n\n### Stay tuned:\n**Subscribe to my Newsletter**: https://open.substack.com/pub/carlbmenger/p/coming-soon\n**Follow me on Twitter**: https://mobile.twitter.com/CarlBMenger\n**Follow me on NOSTR**: https://damus.io/npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Stay informed:\n[XIII] The Bitcoin Lightning Network: https://stacker.news/items/261714/r/CarlBMenger\n[XII] CBDCs: A Brave New World: #213580\n[XI] Valuing Bitcoin: #208983\n[X] Solving the Adoption Dilemma: #201172\n[IX] NOSTR: Social Media 2.0: #189821\n[VIII] The Bitcoin Retirement Plan: #183327\n[VII] Bitcoin in Guatemala: #171339\n[VI] Bitcoin in El Salvador: #161607 \N 21262 \N 436823 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 1.46755074597202 0 \N \N f 1058911999 \N 6 191717866 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407748 2025-02-18 10:58:38.374 2025-03-29 22:39:47.362 What are the best habits you’ve developed as a Bitcoiner? I’ve made sunlight exposure a part of my daily routine. Making sure I’m outside _at least_ 30 minutes to an hour a day, preferably in the morning.\n\nOn weekends that number goes way up.\n\nI have Vit D supplements I take occasionally if needed, but they’re more for during the winter. \N 20852 \N 407748 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 14.7177169268254 0 \N \N f 124281225 \N 1 145893701 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436273 2025-03-13 12:39:27.597 2025-03-29 22:39:47.364 Let's do it Stackers! Scariest movies you've seen this year? I saw Black Mirror's "Beyond the Sea," on Netflix last night. That is still giving me chills today, thinking about it. What are some of your favorite scary movies you've seen this year? \N 6260 \N 436273 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.7519292501393 0 \N \N f 1942342486 \N 15 80368865 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:37:58.776 f \N \N \N 0 0 0 0 4 0 0 447148 2025-03-21 16:36:16.48 2025-03-29 22:39:47.364 How the Bank Term Funding Program Enables Sneaky Backdoor Quantitative Easing # What is the Bank Term Funding Program?\n\nThe Bank Term Funding Program or BTFP is a service offered by the Federal Reserve. It's designed to loan money to banks in case they are running low on reserves or want to money for any other reason. The program was created in March 2023 after a series of bank runs caused three banks in the USA to collapse. The BTFP loans money at a fixed interest rate that is typically relatively high compared to loans from banks other than the Federal Reserve. You can view the current interest rate policy for the BTFP [here](https://www.frbdiscountwindow.org/).\n\n# It is surprisingly popular\n\nEven though BTFP loans are new and have relatively high interest rates, they have quickly become *by far* the most popular type of loan offered by the Federal Reserve. In the Federal Reserve's [latest balance sheet report](https://www.federalreserve.gov/releases/h41/20230928/) they point out that banks currently owe the Federal Reserve $3 billion due to taking out "Primary Credit" loans, $5 billion due to the Paycheck Protection Program, and a whopping $108 billion due to BTFP loans. The BTFP is more than 20 times more popular the Federal Reserve's next most popular loan offering.\n\nSo why is the BTFP so popular if it loans money at higher interest rates than banks can get elsewhere? Here are three reasons:\n\n- Enhanced secrecy\n- Zero penalties\n- Any bank can unilaterally *lower* the BTFP's nominal interest rate by a massive amount\n\nThe last one is a doozy but let's start with "enhanced secrecy."\n\n# Enhanced secrecy\n\nNormally, when a bank needs some money and calls up the Federal Reserve for a loan, it's a bad sign. Most banks, when necessary, borrow money from their peers, i.e. other regional banks, because they offer lower interest rates than the Federal Reserve does. If a bank has to go to the Federal Reserve, with its higher rates, that suggests their peers wouldn't work with them. Maybe their peers don't trust them to repay the loan, or they think they are about to go bankrupt. The Federal Reserve is only supposed to be a "lender of last resort" if a bank can't get a loan anywhere else.\n\nTo ensure that every bank "knows" one of their peers sought help from the central bank, the Federal Reserve requires banks to give notice in a "Call Report" whenever they borrow money from the Federal Reserve. But not so with the BTFP. In April 2023, the Federal Reserve clarified that banks can borrow from the BTFP without telling their peers:\n\n> How will borrowings from the Program be reflected on an eligible borrower’s call reports? ... There are no additional or revised reporting requirements for the Call Report with respect to [BTFP] borrowings. ... [They] are not reported separately on the Call Report. These amounts are included within line items that aggregate various other categories of borrowings. [source](https://www.federalreserve.gov/financial-stability/files/bank-term-funding-program-faqs.pdf)\n\nThis is even better than borrowing from your peers. If Struggling Bank 243 asked Bank of America for a loan to help them through next quarter, at least Bank of America would know that bank is struggling, and maybe try to buy them out, or "punch down" to eliminate the competition. But if they borrow from the BTFP, the Federal Reserve will keep that quiet. What a deal!\n\n# Zero penalties\n\nHere's another fascinating line from that document:\n\n> Are there any penalties associated with prepayment of a [BTFP loan]? ... No. [source](https://www.federalreserve.gov/financial-stability/files/bank-term-funding-program-faqs.pdf)\n\nSometimes, when you take out a loan, you decide to pay it off early, and this is called a prepayment. (I remember my mother paying extra on her mortgage payments so she could own her home sooner.) Many lenders don't like this because it can result in lost future revenue. Borrowers who just make the minimum payments have more opportunities to miss one, which allows lenders to hike up their interest payments. And if an interest rate is not fixed, but varies according to market conditions, lenders like to keep borrowers on the hook for longer if interest rates are expected to rise.\n\nTo discourage prepayments, lenders sometimes charge a penalty. But the BTFP doesn't. You can pay off part or all of your loan early and not get fined for doing so. Once again, a good deal! If you're a struggling bank, maybe your peers would take advantage of that by penalizing you if you try to get back on your feet quickly. But the BTFP won't. So it might be worth paying a slightly higher interest rate if you think you'll have a lower overall cost due to not having any penalties.\n\n# Hidden lower rates\n\nAnd here's the big reason: If I borrowed $100 from the BTFP at a 10% interest rate, I would owe $110 next year, meaning the total cost of the loan should be $10 in interest payments. If I decided to prepay half the principle 182 days later, I would have to give them $50, but also a bit more, because of this line:\n\n> if the borrower prepays some or all of a loan, [accrued interest will be charged] the day the borrower makes this prepayment. [source](https://www.federalreserve.gov/financial-stability/files/bank-term-funding-program-faqs.pdf)\n\nThis is how that interest is calculated (the formula is given in the same source document):\n\n(100×(10%÷365))×182 = $4.99\n\nSo instead of paying $50, I have to pay $54.99. But now, how much is left over that I still have to pay? To answer that, this line comes into play:\n\n> Interest [on BTFP loans] does not compound; it accrues based only on the outstanding balance of the advance. [source](https://www.federalreserve.gov/financial-stability/files/bank-term-funding-program-faqs.pdf)\n\nWell, after I paid my $54.99, the "outstanding balance of the advance" is the remaining $50 on the principle. So my interest payments have to be recalculated:\n\n(50×(10%÷365))×183 = $2.76\n\nOr, if you think they should count the outstanding balance as $55.01 remaining since I previously owed them $110 and only paid off $54.99 of that, here is the calculation:\n\n(55.01×(10%÷365))×183 = $2.76\n\nEither way, when day 365 arrives, the cost of the loan will not sum to $10 in interest payments, it will only sum to $4.99 + $2.76 = $7.75 -- a massive 2.25% reduction in the interest rate!\n\nTherefore, prepaying BTFP loans is a way for banks to *unilaterally lower* the nominal interest rate on their borrowings.\n\nSo banks have a HUGE reason to prefer BTFP loans: their interest rate is not as high as it looks. If you just go by the nominal rate printed on [this website](https://www.frbdiscountwindow.org/) it *looks like* the interest rate on these loans is (currently) 5.5%. But you can use prepayments to pay off part of it early, with no penalty, and if you do that, they have to recalculate your remaining interest payments based on the remaining principle of the loan. So you can *massively* reduce the interest rate on your own initiative.\n\nTherefore, I think the BTFP is actually a sneaky reintroduction of Quantitative Easing (i.e. low-interest loans) back into the USA's economy. It may *seem* like interest rates are up in the 5.5% range. But any bank can easily lower that by taking out a BTFP loan and prepaying portions of it early. And they seem to be doing so, because they are the central bank's most popular loan offering.\n\nUnfortunately, due to the enhanced secrecy of these loans, it's hard to tease out which banks use this program, which makes it difficult to figure out if they are using prepayments, which makes it difficult to determine what interest rates are actually charged under these loans. Talk about shadow banking! The BTFP's listed interest rate is not the one banks actually have to pay. Banks can lower their interest payments on their own initiative without explicitly reporting what happened.\n\nSo what's the real interest rate for BTFP loans? I just don't know. It probably varies depending on how each bank uses prepayments, and neither the borrowers nor the lender seem to operate under any requirement to report what interest rates anyone actually paid. So I do think it's a form of sneaky QE. Interest rates are lower than they seem -- if you're a bank. \N 21021 \N 447148 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 26.4590482277817 0 \N \N f 1921483733 \N 11 73199885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:09:05.775 f \N \N \N 0 0 0 0 3 0 0 440230 2025-03-17 02:19:32.204 2025-03-29 22:39:47.364 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/485342) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 11164 \N 440230 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 7.28979608702407 0 \N \N f 56024513 \N 1 156953127 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428441 2025-03-07 09:37:35.466 2025-03-29 22:39:47.364 10 days of SN zapping in the big leagues It all started when I posted about my SN routine on 19 Jan and shared how I use 500 sats as play money to comments on Stackers’ stuff. Someone felt that I was not optimising the value I could get from the SN rewards - and proceeded to zap me a huge sum. He did so to encourage me to raise my default zap and see what would happen.\n\nSome background reading is in order: https://stacker.news/items/287074. @Undiscipined shared how he feels like he is getting more sats than he is dishing out. Again, the same call to action to raise our default zap.\n\nIt has been ten days since I received the zap. What has happened since then? \n\nWell, I did raise my default zap. Rather erratically because I raised it to 168, felt poor and lowered it to 108, and subsequently had a F*** It moment and raised it again to 218. Of course, sometimes when I feel really poor, I lean back on 28 for a bit until I gain enough sats and then venture out into the big leagues again. \n\nLessons learnt: these days, I can just zap 218 without hesitation because I feel that I have received enough sats airdrops (and trust that I won’t be left out to dry if I zap others relentlessly). My trust in the behaviour of other Stackers has increased - and I try to reciprocate this trust. Zapping others more also increases my satisfaction with SN. I’m pretty sure that I’m the only zapper for some posts. It makes me glad that I’m doing something to spread the zaps.\n\nOkay, how about the rewards I gain every day from the pool? Data from ten days after I received the huge zap:\n\n20 Jan - 834 sats\n21 Jan - 740 sats\n22 Jan - 3741 sats\n23 Jan - 3860 sats\n24 Jan - 6036 sats\n25 Jan - 2530 sats\n26 Jan - 5384 sats\n27 Jan - 3762 sats\n28 Jan - 428 sats\n29 Jan - 6807 sats\n\nLessons learnt: zapping is a labour of love because on certain days, I didn’t get back 1,000 sats despite my higher default zap. Maybe not many people donated to the reward pools on those days? Or maybe my zapping behaviour of 168 sats only got rewarded on my 3rd day because of the time settings in which the zaps are collected and distributed? So, you are going to add unnecessary stress to yourself if you zap a high amount and expect the Universe to respond in kind. On the flip side, just because you get a “bad” day of rewards doesn’t mean you should revert to a low default zap. Ngl, the feeling of getting thousands of sats never gets old!\n\n![IMG_0651.png](https://m.stacker.news/14231)\n\nLessons learnt: I think as you can deduce from my picture, your zapping behaviour needs to be complemented with regular posting behaviour. (Yes, I posted three times within 24 hours. Practically expend all my creative energies here, lol.) I don’t think I would qualify to receive thousands of sats if I just rely on commenting alone. Something for you to take note when you raise your higher default amount.\n\nConclusion: two words. Have fun! 🤩 \N 1602 \N 428441 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2800676622115 0 \N \N f 929388177 \N 7 216012006 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 437631 2025-03-14 17:16:46.412 2025-03-29 22:39:47.364 Hedgehog Slideshow and Demo My latest video is a slideshow explainer of my hedgehog protocol:\n\nhttps://www.youtube.com/watch?v=eGz-54y31r8\n\nHere are the slides: https://docs.google.com/presentation/d/1vf5wg9QflHqMawtL3Qw8vEJdz1BJmGJVsLY7h4u8FMQ/edit?usp=sharing \N 16695 \N 437631 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 0.149509470183951 0 \N \N f 218230395 \N 1 211415746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443388 2025-03-19 10:15:00.763 2025-03-29 22:39:47.365 Let's make Christmas dreams come true What if we make together the best collective Christmas greeting card? You write your wishes for 2024 in comments I gift you 1k sats with ZAP.\n![IMG_20231224_160325.png](https://m.stacker.news/9336)\nI topped up 100k sats so I'm ready to make at least 100 wishes come true (one per stacker). \N 13763 \N 443388 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 29.1362021067597 0 \N \N f 1021231014 \N 7 68654644 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:36:35.798 f \N \N \N 0 0 0 0 1 0 0 433578 2025-03-11 08:35:03.455 2025-03-29 22:39:47.36 Jack Dorsey answers “Why the hell are you all spending so much time on bitcoin?” This was in [Block's Q1 Shareholder letter](https://s29.q4cdn.com/628966176/files/doc_financials/2024/q1/Shareholder-Letter_1Q24_Block.pdf).\n\n---------------------\n\nWe get this question a lot. We’ll use this quarter’s letter to answer it.\n\nFirst, some facts. Less than 3% of company resources are dedicated to bitcoin-related projects. All of which have been more than fully covered by the profits from our bitcoin exchange, which is Cash App’s fourth largest gross profit stream.\n\nBut why spend time on bitcoin at all? We believe the world needs an open protocol for money, one that’s not owned or controlled by any single entity. We believe bitcoin is the best and only candidate to be that protocol, and to ultimately become the native currency of the internet.\n\nHow does this benefit Block? An open protocol for money helps us serve more people around the world faster. We could build an amazing product experience once and ship it globally to any market in the world, without needing to customize for hundreds of different payment schemes. This creates the opportunity to accelerate our growth potential and improve our cost structure at the same time. It truly levels the playing field for a company like ours, and for everyone in the world.\n\nWhy bitcoin versus all the other “cryptos?” Satoshi designed bitcoin to solve a very specific problem around payments, which the world has since found to be immensely valuable. The majority of other projects are either solving different problems or attempting to be a speculative trading asset. We benefit from an open protocol for money, and that’s what we’re focused on building upon.\n\nIn 2018, Block became the first publicly listed company to offer a bitcoin product. Our strategy since then follows 3 core directives:\n\n- Make it accessible.\n- Make it more secure.\n- Make it usable every day.\n\nTo make bitcoin more accessible, we started with the greatest need: “how do I get bitcoin?” We built a simple platform right into Cash App where one can buy, hold, withdraw, or sell bitcoin. It was a hit. Since launch, Cash App has had over 21 million actives use bitcoin. Cash App bitcoin products generated 3.3% and 4.2% of Block’s gross profit in 2022 and 2023, with only 0.7% of related expenses.\n\nWe went on to build ecosystem features to help people get bitcoin. 1.6 million Cash App Card actives have used our Bitcoin Round Ups feature to automatically convert spare change from everyday transactions into bitcoin. Our Paid in Bitcoin feature allows customers to convert a percentage of their direct deposits into bitcoin with zero fees or price spreads, yet another reason for people to direct their paychecks into Cash App. We just launched a similar feature named “Bitcoin Conversions” for Square sellers wishing to convert up to 10% of their daily sales into bitcoin.\n\nWe’re doing a few things to make bitcoin more secure. First, we recognize that holding bitcoin safely can make people feel anxious, especially if one doesn’t want to keep their bitcoin on an exchange. That’s why we built and launched Bitkey to over 90 countries: a globally available, non-custodial wallet that combines intuitive software, robust hardware, and advanced security measures. Bitkey makes bitcoin easy to use and hard to lose. It comes integrated with Cash App and Coinbase, allowing customers to easily buy and transfer bitcoin directly to their Bitkey.\n\nWe also want to help secure the bitcoin network by building bitcoin mining hardware. We’re introducing an entirely new 3 nanometer ASIC mining chip, in addition to an entire mining rig system. Why? We’ve heard from countless miners globally about their desire for reliable, flexible, and US-based mining hardware and software. This contributes to the health and security of the bitcoin network by further decentralizing both the supply of mining hardware and the distribution of hashrate, the computing power devoted to mining bitcoin.\n\nWith a standalone mining chip, we will represent the only large, well-capitalized mining hardware vendor with such a solution. We believe this will help unlock mining system innovation and support the much-needed development of new mining system form factors and use cases. With the full mining rig system, we’ll build on our product and software development expertise, system engineering competency, supply chain experience, and aftermarket support capability (with tens of millions of devices shipped) to build something miners can depend on. This is a massive market and opportunity we’re very excited about.\n\nAnd finally, we want to make bitcoin more usable everyday. Our greatest contribution thus far to this goal has been investing in the Spiral team, a group of open-source developers who work every day to make bitcoin more than an investment. Spiral has been directly behind the Lightning Development Kit, the Bitcoin Development Kit, the Bitcoin Design Community, and has provided grants to over 50 developers in more than 20 countries, leading to a dozen foundational open source bitcoin projects. The team has also been the inspiration for our Bitkey and mining hardware projects and has helped us think deeply about how finance technology shifts over time.\n\nGlobal remittance, an $860 billion industry, is a use case that’s more urgently in need of better solutions today than everyday payments. This is why we created TBD, to solve cross-border funds flow without the need for going through a centralized exchange. TBD has created a protocol for on- and off-ramps from fiat to digital currencies that would allow anyone without a bank (~1.4 billion people) and with access to a mobile phone to participate in the larger global economy. We’ll discuss TBD in a future shareholder letter as we launch our first remittance product later this year.\n\nUltimately, making bitcoin more usable every day means seeing bitcoin as a medium of exchange for the internet, thus solving for the original problem Satoshi stated in the bitcoin white paper:\n\n"Commerce on the Internet has come to rely almost exclusively on financial institutions serving as trusted third parties to process electronic payments.\n\n…What is needed is an electronic payment system based on cryptographic proof instead of trust, allowing any two willing parties to transact directly with each other without the need for a trusted third party."\n\nThe internet will have a native currency; it’s just a matter of time. Artificial Intelligence systems and agents will have to transact, and the most efficient way to do so will be a common protocol for money movement. Creative endeavors will rely heavily on micropayments, something that’s been discussed since the dawn of the internet, and finally being realized at scale with things like “zaps” (transferring small amounts of bitcoin via lightning) on the NOSTR protocol. Commerce will be less constrained by national borders, flowing freely around the world without gatekeepers or rent seekers.\n\nThis won’t happen overnight. The existing and emerging financial systems will operate in parallel for some time. There’s an opportunity to build cohesive and regulatory-compliant connections between these two worlds. This is where we’ve always flourished: at the intersection of regulations and innovative technology that can bring more people into the economy.\n\nRecognizing the interconnectedness of the bitcoin ecosystem, we understand that our advancements foster collective growth, and the progress of others, in turn, benefits us. This synergy is pivotal; as the bitcoin ecosystem flourishes, so does Block. We were the first to recognize this potential and have reaped the benefits, but as others join, the advantages compound. The rising tide of bitcoin's growth lifts all boats, and our proactive contributions have positioned us at the forefront of this wave.\n\nWe also believe in investing in the overall asset of the ecosystem, and holding bitcoin in our treasury. Going forward, each month we will be investing 10% of our gross profit from bitcoin products into bitcoin purchases. We were one of the first public companies to put bitcoin on our balance sheet: we invested $220 million into bitcoin, and that investment has grown by approximately 160% to $573 million as of the end of the first quarter. We’re open sourcing our treasury blueprint so other companies can do the same: https://block.xyz/documents/bitcoin-blueprint.pdf\n\nHistorically and moving forward, our investment in bitcoin transcends technology; it is an investment in a future where economic empowerment is the norm. This commitment drives our business into new territories, unlocking novel opportunities for our customers, and securing enduring value for you, our shareholders. \N 10638 \N 433578 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 9.16699871144772 0 \N \N f 59243020 \N 1 53475155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 125253 2024-02-09 20:02:01.34 2025-03-29 22:39:47.361 Doom is not a strategy \N https://www.jtwoodhouse.com/doom-is-not-a-strategy/ 11263 \N 125253 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.3472430260715 0 \N \N f 79680498 \N 1 177004630 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407882 2025-02-18 12:47:58.615 2025-03-29 22:39:47.362 AMA - John Light, bitcoin researcher Hi stackers ⚡️ long-time lurker, first-time poaster.\n\nAs the post title says, I am John Light. I do bitcoin research and product work full time.\n\nMy bitcoin research has included deep dives into bitcoin governance, scaling, privacy, and crosschain protocols.\n\nMost recently I published a report about validity rollups on bitcoin: https://bitcoinrollups.org\n\nI also publish shorter-form bitcoin research and opinions on my blog at https://lightco.in/author/lightcoin/ and Twitter https://twitter.com/lightcoin \n\nI have also contributed to a number of different bitcoin projects/companies over the years, including Buttonwood SF, Bitseed, Blockstack, Abra, and Sovryn.\n\nHappy to take any questions! \N 7746 \N 407882 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.9534937378125 0 \N \N f 323301915 \N 3 28360152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307387 2024-11-25 00:44:41.392 2025-03-29 22:39:47.365 I'm Nik Bhatia, founder of The Bitcoin Layer and author of Layered Money. AMA. Hey everyone! I'm Nik. I wrote a paper in 2018 called The Time Value of Bitcoin about Lightning Network and its potential to transform bitcoin. I wrote a book called Layered Money, and I write a research publication called The Bitcoin Layer. I'm a former US Treasuries trader for a large investment manager. You can ask me about bitcoin, global macro, rates, the Fed, or my main interest outside of finance and family: golf and hip-hop! \N 725 \N 307387 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.4593064886888 0 \N \N f 33910114 \N 1 31191612 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422191 2025-03-02 10:09:29.603 2025-03-29 22:39:47.363 4_F4ll_GuY_0x02.md # 4_F4ll_GuY_0x02.md\n\n![20130908_112233.jpg](https://m.stacker.news/22089)\n\n[_click here for part 1_](https://stacker.news/items/454525)\n\nI don't remember the drive to the hospital. I regained consciousness when they started to pull me out of the ambulance. My mind was in a totally different state now. I felt intoxicated, numb but most importantly calm between two worlds. The world I came from was a world full of pain. I still remember how I remembered in how much pain I was because the lack of it was at the peak of my attention. Not that there was much attention to give to begin with. I was slowly regaining consciousness and all that came with it. The otherworld however ...\n\nThe other world felt like a world full of sweet dreams. Dreams you are not in control of but dreams that you would like to have. Dreams in which everything just flows and whatever happens is part of the deal. A world where everyone you meet is happy because the concept of being sad is inconceivable to them. They gave up their individualism, consciousness, memories and more at the door as if they all were infectious diseases that needed to be cured before they could enter this world and become one, full of pure awareness. A world in which you play along because it feels too good to be true. You don't want to get kicked out because you cheated your way in. You don't want to be an imposter.\n\nYou don't want to leave a world that could care less about you but it doesn't. A world that tries to convince you that everything will be fine as long as you just let go, give up control and have trust in the process. A world that loves you just as you were. Not as you are, but as you were before you were born. A world that tries to teach you something but how hard that lesson is going to be is up to you. That's part of the lesson.\n\nhttps://www.youtube.com/watch?v=38FMDG7tiA4\n\nBut you are just too human and need to find a problem in everything so you can try to solve it and give meaning to your insignificant existence. And if there isn't one, you make one: YOU become the problem.\n\n> _I was so sure I was going to die and now you are telling me I am not going to die? Are you kidding me?\n> Is this still some kind of joke that I am not getting because the joke is on me?_\n\nI wasn't going to die. My fear of dying was real but I wasn't. It was just so much physical pain that it triggered mental pain. I was so sure I was going to die and felt so close to accepting it that it not happening now felt like a betrayal. I was alive and flowing. I wasn't in control but that was fine. I like to flow. Like water. The essence of life.\n\n> _Deeeeet, dut dut dut dut dut dut dut, deeeeet._\n\nNext time I became aware of my surroundings was when they pulled me out of the MRT. The sound of it must have still rung in my head since we were already done. I started overhearing a conversation:\n\n> A: My parrot is not doing so fine.\n> B: Oh no, what's wrong with it?\n> A: \n\nThe conversation went on and I was listening as closely as I could. The conversation filled my existence. It was the first thing that drew my attention after my new lack of pain. The drugs inside me were working: I was not only flowing but also floating and wanted to spread this weird new love of life inside me. When my bed was about to get pulled out of the room, I must have accepted that my time in this plane of existence wasn't over yet and I better start making it count. I started to whisper:\n\n> I hope your parrot will be okay.\n\nThey must have been as surprised that I overheard their conversation as I was that they heard me whispering. I was really back. I could communicate with the outside world again unlike when I was in the ambulance and was probably only able to talk to myself in my head, unable to differentiate between talking or just thinking.\n\nBut with me being back, the pain also suddenly came back. They gave me something to bite on and lifted me into another bed. I started to whimper and cry. The pain struck so sharp that I wasn't able to prepare for it. Not that I knew how to prepare for that pain that made me accept death. For all I knew, the pain was supposed to be gone and not come back, but it did, bringing along friends. I heard a female voice that empathized with me:\n\n> We already gave him all morphine injections we can and he is still in such pain. What should we do?!\n\nThe distress in her voice would probably have given me even more anxiety if I wasn't already too busy with trying to make the pain go away. Eventually, the physical pain faded away but now I knew it was still there, just hiding and waiting to strike again. I started to tense up again in fear but that also meant that I was moving ever so slightly while tensing up. When a move was wrong, the pain struck very sharply and in such intensity that I thought the drugs aren't working and I must have dreamed this whole trip to the hospital. If I made more wrong moves in my desperation to make it go away, it struck harder and harder. It felt like bombs going off in rapid succession.\n\n> _I FUCKING GET IT, I FELL FROM A ROOF ONTO MY BACK AND THAT WAS STUPID AF. I SHOULD DEFINITELY NOT DO THIS AGAIN. CAN YOU NOW PLEASE STOP WITH THIS FUCKING PAIN, IT IS NOT HELPING AND I DON'T KNOW WHAT TO DO!_\n\nHopefully, eventually, I would get lucky and most of the pain would disappear as fast as it came, leaving behind only existential dread as residue.\n\nThe fear of the pain, not knowing what triggers it or makes it go away, was maybe even worse than the pain itself. I felt locked into my own body that I failed because of one stupid move. Now my whole existence seemed to evolve around not making more stupid moves. Since I didn't know which move was stupid and not (until I tried it), I simply cried, didn't move and hoped it will be over quick when the pain inevitably strikes again.\n\nNext thing I remember is a doctor talking to me:\n\n> You must have fallen like a cat.\n\nI thought to myself while I continued to listen as if a judge is giving me my sentence and I certainly don't want to miss it:\n\n> _Fallen like a cat? Are you serious? I fell onto my back!_\n\n> You were very close to injuring your spinal cord and becoming paralyzed. Fortunately, you only broke a few processes in your lumbar spine. You got very lucky. You should be able to walk again.\n\nThat's when I realized that "You must have fallen like a cat" was simply a joke he made to lighten up my tortured spirit. I felt bad how quickly I got angry. It was actually a very good joke in hindsight. I don't remember his face.\n\nWhen I was moved to a normal room from intensive care, my parents were allowed to visit me. When they saw me, lying in this bed and barely able to speak and definitely not able to move, they started arguing:\n\n> He: Why did you not stop him from going on that roof?!\n> She: Why weren't you there to help the tenant yourself?!\n\nI didn't want to hear this. I wanted them to go away. They couldn't help me. They only made it worse. They didn't even notice me anymore. For all it was worth, they could have had this conversation in the hallway already or at home or wherever. Why did they have to argue in front of me? I did not have the energy to say anything though. I knew it wouldn't help anyway.\n\nLocked into this situation as I was locked into my body, I simply started to look out the window and saw it was dusk now. I realized I had no idea how many hours have passed since my accident. While my parents were still arguing in the background, I saw the moon and thought to myself:\n\n> _I wish I was on the moon now. As far away as possible from here. Maybe that's how I want to die? Being the first human to die on the moon? That would be cool._\n\n---\n\n_to be continued?_ \N 803 \N 422191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7748434110056 0 \N \N f 75366098 \N 1 110223978 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402457 2025-02-13 18:32:16.563 2025-03-29 22:39:47.363 Thank You Elon… Now Someone Made a Meme of Me 🙃 Yesterday something happened that I can only shake my head at and laugh. Elon retweeted the following tweet which was about Commercial Space.\n\n![](https://m.stacker.news/51680)\n\nWell luckily/unluckily for me I ended up being made into a meme over the whole back and forth exchange between a Member of Congress and a rep for the FAA. \n\n![](https://m.stacker.news/51681)\n\n\nEveryone in the office is getting a laugh out of it and I have now been added to our offices meme wall… typically we make the memes but this one was made for us 😅\n \N 1272 \N 402457 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 25.1741965430516 0 \N \N f 234146879 \N 2 89325999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 65472 2023-09-20 17:13:24.273 2025-03-29 22:39:47.363 Introducing Maple AI - Private Chat Encrypted End to End \N https://blog.opensecret.cloud/maple-ai-private-encrypted-chat/ 2329 \N 65472 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.34516670528029 0 \N \N f 181741510 \N 1 133250121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442800 2025-03-18 20:27:04.763 2025-03-29 22:39:47.363 Discuss this Quote- Miguel de Cervantes Today I have an Easter edition of Discuss this Quote. \n\nIn his book, Don Quixote, Spanish writer Miguel de Cervantes wrote:\n\n “It is the part of a wise man to keep himself today for tomorrow, and not venture all his eggs in one basket.”\n\nI think the idea of diversification is correct for wealth preservation but most people who have accumulated significant wealth did it in one asset, enterprise or industry. It seems these days having all your eggs in one basket is optimal for wealth generation and not having all your eggs in one basket is optimal for wealth preservation. \n\nWhat do you think stackers?\n\nCheers,\nGR\n \N 13198 \N 442800 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 22.9346169344137 0 \N \N f 405556100 \N 2 37011495 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 409383 2025-02-19 15:02:41.396 2025-03-29 22:39:47.361 EU to ban end to end encryption End-to-end encrypted messaging has been a thorn in the side of lawmakers for a while now, and although many companies like Apple already offer backdoors and pre-screening of messages for illegal content as demanded by the US government, this is new for the EU. The eIDAS regulation aims to force software companies to create backdoors into such messaging services. What precedent does this set for say, hardware wallets? What are the options if this passes?\n\n\nhttps://www.eff.org/deeplinks/2023/11/article-45-will-roll-back-web-security-12-years\n\nhttps://last-chance-for-eidas.org/\n\n_Article 45 forbids browsers from enforcing modern security requirements on certain CAs without the approval of an EU member government. Which CAs? Specifically the CAs that were appointed by the government, which in some cases will be owned or operated by that selfsame government. That means cryptographic keys under one government’s control could be used to intercept HTTPS communication throughout the EU and beyond_.\n\n \N 16347 \N 409383 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 21.3758054874495 0 \N \N f 267350650 \N 2 121003548 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410710 2025-02-20 16:25:58.365 2025-03-29 22:39:47.363 Hi, this is BOLT.FUN AMA #LegendsOfLightning is an accelerator style event open to anyone globally to help foster innovation, and collaboration in bitcoin and lightning. We partnered with Fulgur Ventures to provide some crazy prizes. The event is running from Oct 12 until Dec 7 which is much longer than our previous format with #ShockTheWeb which was only a week.\n\nHopefully this can activate folks all over the world to participate and get mentored by some of the big hitters in the industry (and ye... there's a 3 BTC prize pool). \n\nWe need to grow the talent pool of developers, designers, researchers, and copywriters in the industry. Why? For bitcoin's global takeover! We think this platform and event format is something that can inspire people towards that.\n\nTopics to ask us anything but here's some examples.\n- Legends Of Lightning\n- Hackathons\n- Building in public\n- Learning in public\n- Onboarding new talent into bitcoin\n- Innovative use cases of bitcoin and lightning network\n- Developing lightning applications with APIs (WebLN/WebBTC, lnurl-auth)\n\nCheck out the tournament: https://makers.bolt.fun/tournaments/1\nCheck out the posts from the community: https://makers.bolt.fun/feed \N 2780 \N 410710 \N \N \N \N \N \N \N \N science \N ACTIVE \N 21.6021390538521 0 \N \N f 321584820 \N 2 37948212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414872 2025-02-24 11:13:29.896 2025-03-29 22:39:47.363 If spending btc is a "taxable event", what's the future of these websites/apps? I have been considering for a long time that microtransactions over LN will create a totally new kind of successful apps or web apps, but just recently consider the fact that "spending btc is a taxable event" in many countries, including the US. \n\nWhat do people think about it? \N 6361 \N 414872 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2269943666126 0 \N \N f 34776943 \N 1 215309902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404279 2025-02-15 18:24:59.633 2025-03-29 22:39:47.363 The Unignorable Shortcomings Of Austrian Economics Written by Richard Greaser\nLink: https://www.bugle.news/the-un-ignorable-shortcoming-of-austrian-economics/\n\n![austrian-economists.png](https://m.stacker.news/26109)\n\nWhile Austrian economics have a strong foothold in the minds of Bitcoiners all over the world, there are some unignorable shortcomings the political ideology masquerading as a school of economics has that must be discussed. Saifedean, Peter St. Onge, Murray Rothbard, Ludwig Von Mises, Robert Murphy, Freidrich Hayek and other advocates of Austrian economics take a revisionist approach to rewrite economic history.\n\nRod and Dick discussed this topic in length on the Bugle Weekly Podcast which you can listen to here:\n\nLink to episode: https://www.fountain.fm/episode/TPiDUgD58k6Mkqp8N1dL\n\nGovernment Oversight Over Economy Creates Market Efficiencies\n\nThe suggestion that government intervention in the economy creates market inferences is a ridiculous conspiracy theory as outlandish as believing the moon landing was fake, or 9/11 was an inside job. Governments make sure economies are safe for all participants in order to ensure the greater good. A safe market is an efficient market.\n\nWithout government control in the economy, it would be pure anarchy. The government needs to intervene with subsidies and bail outs to make sure people still have jobs and consumers have products. A free market is pure chaos and is dangerous. Without government intervention, people would sell products for whatever prices they want, deal in dangerous products like raw milk, and choose not to pay taxes, preventing the US government from engaging in protecting the world.\n\nSound money is a myth, money needs oversight\n\nLike Michael says, Bitcoin is digital property with thermodynamics. It is the most secure monetary network in the world, which is perfect for issuing stablecoins on in order to prolong the existence of the dollar. Bitcoin is not a competitor to the dollar, but a compliment to the dollar, making it more secure, auditable, and easy for the CIA to use in order to dollarize countries around the world.\n\nMarket competition does not lead to the best results. Instead, it is vital for elected officials to pick the winners and losers because their authority is legitimate, and doing it any other way would lead to unfair results. Individuals need to be able to vote for seizing their neighbors assets who may have too much in order to prevent wealth inequality.\n\nThe Chicago School of Economics (A for of Alpha American economics and not beta Austrian economics), championed by Thomas Sewell and Milton Friedman, hail from America and not Austria. The Chicago school, while leaning towards being noncompliant with Comply Side Economics, still believes the state should control the money.\n\nAustrians Lose Wars\n\nAustria has lost two world wars, meaning they have a worse track record than the French, who are relentlessly mocked by Americans for losing WW2. Being able to launch a strong defense against invaders is the sign of a strong economy and losing multiple wars is a sign of a weak economy. Why would anyone take ideas seriously from countries that lose wars.\n\nThe reason the Bretton Woods agreement was so powerful was that it was decided by the winners of the largest war in human history. The ones with the strongest economies prevailed, and were able to set the tone for how the world economy would work for generations going forward. Money printing is necessary for winning wars and a strong, safe economy.\n\nCompliance Side Economics is superior to Austrian Economics\n\nCompliance is ultimately about NGU. The world has complied with the Bretton Woods style economy, as well as fiat backed money starting in 1971, enjoying the greatest period of NGU in human history. The numbers have gone higher than our ancestors during the founding of the American state could count. George Washington never contemplated what it would be like to be a billionaire.\n\nNon compliance on the other hand creates chaos and NGD. It is obvious that because printing money makes NGU, it is preferable to not being able to print money and therefore Comply Side Economics is preferable to Austrian Econ.\n\nGovernment's Could Buy Bitcoin to Pump Price\n\nIf the government purchases Bitcoin when demand is low we can achieve stable and consistent NGU, preventing the boom bust halving cycles. Austrians say that governments doing anything leads to malinvestment, but in Western Democracies, the citizens have oversight over the populations, essentially making poor policy decisions impossible. If there's a candidate who does harm to the populace, they will be voted out and replaced by a greater man.\n\nKeynes Is the Champion of NGU\n\nJohn Maynard Keynes understood NGU more than anyone else. Saifedean's Ammous' criticisms of him in his book, The Bitcoin Standard, seems to be in a general misunderstanding that Keynes wanted NGU before anything else. Bitcoin is interesting because it is the greatest vehicle in human history to attain the most dollars. All you have to do is buy and hodl.\n\nKeynes paved the way for technologies like Bitcoin to get pumped by central banks all over the world into infinity. For this to happen, it is vital for strict controls over the economy to prevent competition to the central banks in order to ensure for maximum NGU.\n\nFinal Thoughts\n\nIt's unfortunate the Bitcoin community has embraced voices from the Mises Institute and other fringe economists. Individuals like Stephanie Kelton, while not particularly interested in Bitcoin, have done more to pump the price of Bitcoin than all the podcast episodes discussing Austrian economics combined. \N 19198 \N 404279 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.6068940569294 0 \N \N f 76275941 \N 1 60609276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433738 2025-03-11 10:59:59.229 2025-03-29 22:39:47.363 Federal Reserve Threatens To Sue Bitcoin Magazine \N https://bitcoinmagazine.com/legal/federal-reserve-threatens-to-sue-bitcoin-magazine?utm_source=carrot&utm_medium=partner&utm_campaign=carrot_share 11714 \N 433738 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 0.670304251502998 0 \N \N f 179191686 \N 1 140039097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 02:18:42.942 f \N \N \N 0 0 0 0 1 0 0 190866 2024-06-28 06:19:47.488 2025-03-29 22:39:47.363 LND brought down by huge bitcoin transaction again \N https://github.com/lightningnetwork/lnd/issues/7096 6421 \N 190866 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.8401927551867 0 \N \N f 611870636 \N 3 156595018 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 429559 2025-03-08 12:29:07.094 2025-03-29 22:39:47.364 Who Builds Software Matters ### On the declining production costs and coming remixability of software\n\n> “As we become more sophisticated, our ideas about what our word processor, ourgraphics system should > do for us diverge more and more from those of the initial designers. We now want to edit our tools as we > have previously edited our documents.”\n> -Alan Kay, Apple Computer Corporation, Sept 1984 \n\n### The High Cost of Software\n\nSoftware is expensive to build today because there are very few software engineers. There are about 8 billion people in the world, but only about 28 million software developers. So the number of people who can build software rounds to roughly 0. Yet everyone in the world wants and needs software. Up till now, we’ve been prevented from getting what we actually want due to the high cost of production. Talented engineers only have a limited number of hours in a day to build so they need to get paid for their rare skill.\n\n\n### Software for the Masses\n\nBuilding software has been expensive so we’ve become accustomed to accepting software designed for the masses. Today’s designers aim to serve the broadest set of users possible so the high cost of building gets amortized over a large number of people. That means no one gets exactly what they want, but everyone gets something that’s good enough to be useful.\n\n\n### AI changes WHO builds software\n\nAI brings us tools that democratize software development. As production becomes cheaper, it changes who can build software. This changes how software gets designed, developed, and deployed, which creates an explosion in how much new software gets built. We can appreciate how AI code generation models help software engineers build. It’s easy to see how these tools can improve their efficiency. But we can organize these same tools in ways that change who builds software. And who builds software matters.\n\nYou can squint and see a future where we can all build our own custom software. We’ve seen this kind of auto-generation in the domains of language, images, and video. We'll soon see it in the domain of software creation.\n\n\n### Free-to-build encourages remixing\n\nIn the future you’ll notice a simple need and you’ll be able to conjure up a micro-app in minutes to address it. The economics of creating and owning software changes. Anything a user dreams up is low effort to create and copyable by someone else. That’s a good thing. It makes software more like media. Micro-apps become building blocks. Other users can remix them adding new functionality. We can now equip software with the same memetic super powers as we have with short-form video. This is the future of software. But no one has built the end-to-end tools to enable this yet.\n\nThese user-to-user creative interactions make the value of software compound. But we’ll need some network (or protocol?) to manage the specifications and data across these apps if they’re going to be collaborative.\n\nForget the drudgery of design, implementation, testing, deployment, monitoring, upgrading, and data migration. This will happen behind the scenes. Who thinks about flipping electrical signals in silicon these days? We operate at a higher level of abstraction.\n\n\n### Implications of an AI codegen revolution\n\n+ The amount of software created increases by at least 3 orders of magnitude. Likely much more like 5-10 orders of magnitude.\n\n+ The concept of “charging for apps” feels dated. If everyone can conjure anything into existence for pennies, why “buy” when you can “create”? “Make me a free version of app ABC”.\n\n+ The importance of modern app stores declines. Non-technical users create micro-apps and use them. For this to work it needs to be simple. This future might look like something of a super-app for user-generated micro-apps. Or they get deployed as PWAs.\n\n+ How data gets stored and shared could get radically reimagined.\n\n+ These micro-app/remix concepts may themselves become the basis for a new type of app store. If this were a company, I think it would likely become the most important company in AI.\n\n+ A new layer of collaboration commoditizes adjacent AI layers. A hyperscaler could attempt to build this layer, but it seems as likely as someone new doing it.\n\nAt this point it's all up for grabs. If you’re building something like this DM me — I’d love to play with your project and give feedback! \N 18219 \N 429559 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 0.0528627703152651 0 \N \N f 56679613 \N 1 35715410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 08:30:51.457 f \N \N \N 0 0 0 0 1 0 0 436934 2025-03-14 03:43:09.503 2025-03-29 22:39:47.362 Predyx | Advanced Prediction Markets with Lightning Network Integration I received this email today:\n\n> Thank you for being on our waitlist!\nWe are thrilled to announce that Predyx is officially live! You now have access to our powerful prediction platform with seamless Lightning Network integration. It’s time to dive in and make your predictions count.\n>\n> Predict Now and Win Big!\n>\n>What you get with Predyx:\n>\n>⚡ Real-time market predictions\n>⚡ Lightning-fast payouts with the Lightning Network\n>⚡ Micro-predictions with sats\n>⚡ Compete with users worldwide https://beta.predyx.com/ 13587 \N 436934 \N \N \N \N \N \N \N \N science \N ACTIVE \N 2.82452752680822 0 \N \N f 312018346 \N 2 244923857 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456728 2025-03-27 20:06:38.937 2025-03-29 22:39:47.362 Strike Adds BOLT 12 Support \N https://strike.me/blog/bolt12-offers/ 21079 \N 456728 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 20.0533365885714 0 \N \N f 22868856 \N 1 134069604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 429570 2025-03-08 12:37:39.639 2025-03-29 22:39:47.362 Optimizing Address Usage for the Gap Limit We have spent a lot of time at Zaprite thinking about gap limits, and how to optimize the payment experience for merchants and payers, while working within the limitations. \n\nYesterday we published a blog post outlining how we manage address generation and reservation for xpubs within our platform:\nhttps://blog.zaprite.com/optimizing-address-usage-for-the-gap-limit/\n\nWe welcome feedback and questions! \N 20642 \N 429570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.13409684787537 0 \N \N f 92834411 \N 1 6250055 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447087 2025-03-21 15:55:18.413 2025-03-29 22:39:47.362 SN release: mutes, more characters in polls, and small bug fixes The biggest thing here is mutes. On any post or comment or profile page, the `...` now gives you the option to mute or unmute someone. What to expect when you mute someone:\n\n1. you won't see their posts (in hot/recent/top)\n2. their comments will be collapsed by default and covered with `reply from someone you muted` which you can click to reveal\n3. you will not be notified when they reply to you or mention you\n\nThis will be enhanced some when personalized feeds ship, but this is how they work for now.\n\n##### also\n\n- you can now add up to 40 chars in poll choices\n- fixes for nostr zaps displaying json in satistics\n- fixes for nostr zaps not showing in nostr on long form content or zap streams\n- other minor stuff\n \N 2335 \N 447087 \N \N \N \N \N \N \N \N Linux \N ACTIVE \N 7.75735219004076 0 \N \N f 233615701 \N 1 185061300 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 09:49:07.606 f \N \N \N 0 0 0 0 1 0 0 436460 2025-03-13 15:16:40.318 2025-03-29 22:39:47.362 Need Bitcoin Core To Run On Type Writers: Late Night Musing With Dick Greaser So essentially if Bitcoin ossifies right now, Coinbase, Wall Street, and the surveillance grid becomes Bitcoins predominant layer 2. Yes we can have fun lightning deals like this, but the states boot will come down so hard on individuals operating sites like this' necks it won't be even funny. \n\nShinobi told me Bitcoin needs consensus changes to scale and what we have currently is not sufficient. I'm the journalist and he's the technical editor plus Twitter space debater so I will hold his opinion higher on the topic than mine. Though I may be underestimating my IQ on the subject because I definitely smoke more cigarettes than Shinobi, who probably vapes or something. If those supposed crucial protocol changes happen, then things could be very interesting. \n\nIf individuals concerned about Bitcoin not being able to scale are correct, and those changes don't happen, the majority of the market is going to get captured by KYC and things are going to look very similar to how they do with fiat currency. But with Bitcoin it is theoretically more scarce and will retain deflationary purchasing power (I'm sure the fiat maxis and shitcoiners will screw this utopian vision up somehow).\n\nThe hope in all of this is that markets are incredibly powerful. A bunch of red necks brewing booze in Appalachia, kicked Uncle Sam's ass during "prohibition." With growing surveillance, there is a growing market for privacy technologies. Just recently, Larry Fink complained that the current ruling class was recruiting too many ancaps. \n\nhttps://www.bugle.news/klaus-schwab-concerned-biden-trudeau-and-others-are-recruiting-too-many-ancaps/\n\nThere are markets for anything you want and nobody will ever stop it. There are casualties along the line such as Ross Ulbricht may he be freed, and Jullian Assange. Even those shitcoiners over at Tornado Cash are casualties of this battle. But regardless of what the looters in Washington decree, shadowy supercoders will be developing incredible ways to circumvent howlers like Elizabeth Warren. \n\nThere has been much focus on the software side, but very little focus on the hardware side. Essentially 1 Chinese company makes all the mining hardware and there's very little way to be confident in the supply chains for consumer devices and maybe even some commercial hardware wallets. There's too many stops along the supply chain where spooks can intercept and meddle with stuff. We live in a wacky world so it's difficult to be an educated journalist with an IQ over 80 and not see the clear attack vectors. \n\nSeriously, the NSA/Israelis made phone security a thing of the past. The only way around this is air gapped devices, theoretically. There is nothing more air gapped than a type writer which is a great candidate for a cold storage device. I have speculation that Coinbase and other top tier custodians use type writers for cold storage. \n\nBut it would also be pretty cool to be able to run Bitcoin core off of a type writer. I know it would be kind of like a cyborg where you mesh a computer with a type writer, but it would just have so much class. I bet you the CIA has not found a way to exploit typewriterOS because I may be the only one in the world running it at this present moment. Umbrel or some other builder like Start 9 or something... It would be cool if you got on that for me. \n\nI promise to report on it if you do. Maybe I will report on it if you don't. \N 20734 \N 436460 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.6250681146724 0 \N \N f 620984685 \N 4 8706455 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 09:46:29.072 f \N \N \N 0 0 0 0 1 0 0 429628 2025-03-08 13:35:11.262 2025-03-29 22:39:47.362 SpaceX's new direct-to-cell Starlink satellites relay their 1st text messages \N https://www.space.com/spacex-starlink-satellites-direct-to-cell-first-text-messages 8729 \N 429628 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 29.3357863868852 0 \N \N f 378836894 \N 5 124556815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 428276 2025-03-07 02:36:43.969 2025-03-29 22:39:47.362 Cypher Update #2: No Nuts no Bolts, No Guts no Glory \nHey Folks ! \\\nOnly doing these updates once a month is a bit slow but still fine for now.\n\n## So what’s New ? \n\nMost development time has been spread over setting up and upgrading a bunch of things at once:\n\n- Integrating @nogoodnode designs in the landing page: \\\nhttps://cypher.space \n\n- Also setup a donation split with the funds [Alby](https://getalby.com/) wallet and the API from [make Prisms](https://www.makeprisms.com/) 🖖\n\n- The front-end POW hasn’t moved much https://dev.cypher.space\nonly some small updates to the index that will be design parameters for the user to set. \n\n- The big chunk of ideation is spend on the admin UI \\\nhttps://dev.cypher.space/admin ( currently 99% just UI ) \\\nMixing local flatfile CMS with with open Nostr client is a bit of funky territory 🕺🪩 \n\n- I thought about writing out the current scope and updating it as a document but slides seem to be a better candidate (⚠️ still messy) https://slides.cypher.space\n\n- Also setup some socials ( [Telegram](https://t.me/+TcCsAJNJrRxkNDk0) & [Discord](https://discord.gg/Ueh4qkJYsz) )\n\n- Setup Documentation Start (empty) \\\nHttps://cypher.space/docs\n\nProbably some more things \n\n\n## What’s on this month’s chopping block ?\n\n- Final design integrations\n\n- Setup / Experiment with Nostr Nests \n\n- On boarding UI: Normie 2 Pleb \nThis is the most “exciting” part and last big thing on the UI menu and the first thing the user sees after installing. \n\nThe idea is that in the UX we’ll know Nostr & Bitcoin have won when the user doesn’t even notice that the things they use are riding on top of it. However currently not promoting the under lying technology is a mistake since we’re still in the early adoption stage.\nThe second big important part is that we’ll push it all the way to the front in the setup process, short pain at the setup. \n\n- Rip out the yield monitor ( 🗑️🔥 )\n\n- Finishing the Admin UI\n\n- Initial Nostr integrations \n\n- Carts \nStill no bug fixes or extra integrations in the simple lightning widget.\nHowever a simple cart swap should be relatively easy to setup and will start testing this with ( NWC & Bitcoinconnect )\n\n\n### Dev Notes :\nBuilding out in the open can be (is) hella messy but fun, would recommend 🤡 \\\nAllowing a dev scope to sit in a UI stage allows for more eyeballs on the project that can form a community scope, it’s super to gain some of this feedback before all the nuts and and bolts come on. \\\nAnother reminder is parallel building is a good way to grow and only relies on aligned incentives example would be Nuxstr \\\nGeneral API's are toxic rule: A little bit of it makes you sick, but to much will kill you. \n\n\n \N 673 \N 428276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1900075300485 0 \N \N f 161797975 \N 1 13999025 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 452625 2025-03-25 11:49:51.289 2025-03-29 22:39:47.362 Connect SN wallet for autowithdraw to your Core Lightning (CLN) node via CLNRest ![](https://m.stacker.news/31786)\n- - - \n#### _All this process has been a great learning for me and that's why I decided to document it. Connecting your node isn't (yet) that intuitive as it should, to auto withdraw your sats and use SN in a fully noncustodial manner. Consider this just a reference, it's generic due to my current tech skills did not enable me to cover all scenarios, so many things will not exactly match your case as it will be mostly depending on your node OS implementation. However, hope you'll find the following steps useful._ \n\n- - - \n## 0. Open a channel with SN node\nThis is not mandatory, but it will definitely help the autowithdraws to find a cheaper and faster path toward your node. \n\n`pubkey:` [`03cc1d0932bb99b0697f5b5e5961b83ab7fd66f1efc4c9f5c7bad66c1bcbe78f02`](https://mempool.space/lightning/node/03cc1d0932bb99b0697f5b5e5961b83ab7fd66f1efc4c9f5c7bad66c1bcbe78f02)\n`connect via IPv4 on clearnet:`\n```\n03cc1d0932bb99b0697f5b5e5961b83ab7fd66f1efc4c9f5c7bad66c1bcbe78f02@52.5.194.83:9735\n```\n`connect anonymously via Tor`\n```\n03cc1d0932bb99b0697f5b5e5961b83ab7fd66f1efc4c9f5c7bad66c1bcbe78f02@xhlmkj7mfrl6ejnczfwl2vqik3xim6wzmurc2vlyfoqw2sasaocgpuad.onion:9735\n```\nvia terminal:\n```\nlightning-cli connect []\nlightning-cli fundchannel \n```\nIt could also be a private channel and this will allow you to use it exclusively for your autowithdraws and get the cheapest and faster transaction ever setting `Base Fee (mSats)` and `Fee Rate (mSats)` equal to `zero`. By command line should be something like (depending on which node OS you are running):\n```\nlightning-cli setchannel \n```\n``: This is a fixed amount of satoshis that will be charged for every payment routed through your channel, regardless of the payment's size.\n\n``: This is a variable fee represented in millionths of a satoshi per satoshi routed, essentially a percentage of the transaction amount.\n\n... or you could also easily use [Ride The Lightning](https://github.com/Ride-The-Lightning) in case you have it installed:\n![](https://m.stacker.news/31801)\n\n- - - \n## 1. Get your **`rest host`** and **`port`** \n![](https://m.stacker.news/31802)\nSN supports both connections types, tor or clearnet. I highly suggest tor as it provides much more privacy and does not leak your node's IP, as SN is missing a [warrant canary](https://www.eff.org/deeplinks/2014/04/warrant-canary-faq) and does not yet issue any transparency report, stating that it had not received any national security letters or legal notice to disclose user data.\n- - -\n## 2. Get your **`invoice only`** rune\n![](https://m.stacker.news/31803)\nA rune is a base64 string with a unique id which can be used to access commands on your node. It's important to limit the commands the rune we'll use to only allow `method=invoice`. \n\nSo it's now time to open the terminal in your device and connect to your node via ssh, usually something like `ssh user@node.local`, and then run the following command to generate one:\n```\nlightning-cli createrune restrictions='["method=invoice"]'\n``` \nIt's useful to verify the rune has been correctly created, verifying the list of existing rune running the following command:\n```\n lightning-cli showrunes\n```\nYou can see all official documentation about `lightning-commando-rune` from [here](https://docs.corelightning.org/reference/lightning-commando-rune).\n\n- - -\n## 3. Get your **`cert`** \n![](https://m.stacker.news/31804)\nThe certificate is located inside your node and is easily accessible via CLI via terminal with the following command:\n```\nsudo nano ~/core-lightning/data/c-lightning-rest/certs/certificate.pem\n```\nMake sure the path is correct, and, if it's, you should get a new window with the certificate. This certificate is encoded with base64, copy it and make sure you remove all spaces before pasting it to the SN form. \n\n- - -\n## 4. Set your **`desired balance`**\nLast values to set are the desired balance to be left on SN wallet and the maximum fee as a percent of the withdrawal amount. I assume that if a channel is set toward SN node (as explained in [step 0](#)) we can also set zero here. I decided to set `1` just in case. I also set zero on **`desired balance`** because I do not want SN to be a wallet, but just an app I use to share and learn.\n![](https://m.stacker.news/31808)\n\n- - -\n## 5. Attach and troubleshoot\nHitting the **attach** button will submit the information attached in the form. When using Tor, it could take a bit, so be patient and wait for the outcome to appear in the `log` section below. \n![](https://m.stacker.news/31809)\nIn my case, still have unsuccessfully completed the goal, so my CLN node is not yet attached due to an error:\n```\n21m\t[cln]\tERROR\tcould not connect to CLN: \nrequest to https://hidden.onion:2104/v1/invoice failed, reason: write EPROTO C077EC2F067F0000:error:0A00010B:SSL routines:ssl3_get_record:wrong \nversion number:../deps/openssl/openssl/ssl/record/ssl3_record.c:354:\n21m\t[cln]\tERROR\tfailed to attach wallet\n```\n\nI'm not sure if I am doing something wrong, or if the Tor connection is maybe so unstable that give me this error... Anyway, ideally, I'm still waiting for @k00b and @ek to confirm what's going on from @SN side. If you have a CLN node and want to play around, head to [wallet > attach wallets > CLN](https://stacker.news/settings/wallets/cln) and try to connect your node. \n\nIt will be nice if you can comment below your experience attaching your CLN node, either via clearnet or tor, so it might help better understand and learn how to correctly achieve this goal! \N 16329 \N 452625 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 29.2204035097197 0 \N \N f 312209286 \N 2 196270019 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446628 2025-03-21 11:41:30.653 2025-03-29 22:39:47.363 What are the principles underlying SN's development and growth? Hey @k00b, I have a big picture question: as you and the team build out SN, are you building it in the direction of something? \n\nContext is that yesterday @TonyGiorgio made a [comment](https://stacker.news/items/253821/r/elvismercury) on not much liking the sorts of discussions on SN now, vs how it used to be. Which made me consider that there are (at least) three approaches to building a community, and I didn't know which of them you were taking.\n\n- *Approach 1* is to consider that you're building a set of tools, interaction elements, and incentives. Whatever emerges as a result of those things is what SN is _supposed_ to be -- it's an emergent expression of these design choices and technological capacities.\n\n- *Approach 2* is to consider that you're building a kind of community where _x_ happens. For SN, one could describe it as building a community where some type of bitcoin / nostr discussion occurs.\n\n- *Approach 3* is that you're building something that's supposed to generate revenue, and choices from approaches 1 and 2 are made based on how well you think they'll help achieve that.\n\nThe [story](https://stacker.news/story) you posted about SN's origin says this:\n\n> In Bitcoin we say “Bitcoin fixes this” because we believe Bitcoin changes the incentives humans have in any inheriting system. We believe Bitcoin encourages people to think long term and that this seemingly small yet fundamental change is utterly transformative for the better. This is why I started Stacker News. I think Bitcoin will help us build natural communities like Bit Devs online.\n\nwhich suggests a blend of {1, 2}. But the distinction between them starts to matter at the margin. For instance: what if the abusive shit-talking ancap element of SN came to drown out everything else, but it was a super lively community with lots of activity? Alternately, what if, inexplicably, SN came to be dominated by My Little Pony larpers, but again, it was super busy, lots of users, posts, zapping, etc? Neither of those outcomes resembles the BitDevs origin story that you wrote about, but would you consider those outcomes to be successful ones?\n\nMaybe more succinctly: what, if any, kind of steering do you do, or do you consider doing, as SN evolves? Feature development is a clear way to steer, approach 1-style. Are you steering in other ways, too? \N 17148 \N 446628 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 1.68656408719926 0 \N \N f 212722405 \N 1 154934212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:27:16.687 f \N \N \N 0 0 0 0 1 0 0 456150 2025-03-27 13:36:40.114 2025-03-29 22:39:47.363 Stackers do you take Sunday off? Do you take Sunday's off? If so why? If not also why? \n\nPersonally I love taking Sundays off to praise the Lord and Reflect on the past week. \n\nWhat about you stackers? \N 17568 \N 456150 \N \N \N \N \N \N \N \N health \N ACTIVE \N 11.9304610193217 0 \N \N f 384424460 \N 4 64251004 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 92367 2023-11-29 21:02:30.957 2025-03-29 22:39:47.363 Sec approval of 11 bitcoin spot ETF \N https://web.archive.org/web/20240110204508/https:/www.sec.gov/files/rules/sro/nysearca/2024/fg-89shlq.pdf 20701 \N 92367 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.46301093891047 0 \N \N f 109872666 \N 1 159562513 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414232 2025-02-23 18:48:43.871 2025-03-29 22:39:47.363 Fountain 1.0 Has Arrived! ![fountain-1.0-screens.webp](https://m.stacker.news/9012)\n\n**Fountain 1.0 Has Arrived!**\n\nOur biggest design and user experience upgrade to date brings usability improvements across the app along with powerful new social features.\n\nToday we’re excited to launch a brand new look for the Fountain mobile app. We’ve spent the last few months listening to your feedback to get a deep understanding of the improvements you would like to see.\n\nWe hope you will agree that the resulting design and user experience upgrades we have made across the app make Fountain look and feel great to use. Along with the stylish new user interface, we’ve also added some powerful new social features to help you discover more great podcasts and join in the conversation with other listeners.\n\n\n---\n\n![fountain-1.0-library.webp](https://m.stacker.news/9013)\n\n**LIBRARY**\n\n- Customise your library view for quick access to episodes, shows and your queue\n- New content cards that bring improved readability with larger artwork and fonts\n- New filter for ‘continue listening’ to see episodes you haven’t finished\n- New search feature to quickly find anything in your library\n- Swipe to remove an episode from your library\n\n\n---\n\n![fountain-1.0-player.webp](https://m.stacker.news/9015)\n\n**PLAYER**\n\n- Background image blur that transforms based on the episode you’re listening to\n- Scroll or tap the icons at the bottom of the screen to view the show notes, read the comments, access chapters and follow along with the transcript\n- Sats counter that displays the total value that you have sent while listening to the episode\n- Improved sleep timer that gives you an “end of episode” option\n\n---\n\n![fountain-1.0-boosting.webp](https://m.stacker.news/9016)\n\n\n**BOOSTING AND STREAMING SATS**\n\nWe have updated the design of the boost and stream menus to make them easier to use. We now display the dollar value of the sats you’re sending, with more currency options to be added in the future.\n\n\n---\n\n![fountain-1.0-clip-editor.webp](https://m.stacker.news/9017)\n\n**CLIP EDITOR**\n\nClips have always been a big part of Fountain as we believe it’s a great way of hearing the best moments from podcasts without having to listen to the whole episode. But let’s face it - making clips could have been easier. The new clip editor makes it quicker and easier to make perfect clips.\n\n- The circular design of the new clip editor gives you greater accuracy and control over the start and end position\n- The audio transcript serves as a reference to let you know exactly where you are\n\n---\n\n![fountain-1.0-clip-player.webp](https://m.stacker.news/9018)\n\n**CLIP PLAYER**\n\nExploring clips also wasn’t a great experience, so we’ve built a completely new clip player that allows you to scroll through a stream of clips.\n\n- The new “stories” browser at the top of the home feed shows you the latest clips from people you follow as well as any clips that they have interacted with recently\n- Tap through to the episode, user profile and any hashtags related to that clip\n\n\n---\n\n![fountain-1.0-home-feed.webp](https://m.stacker.news/9019)\n\n**HOME FEED**\n\nOne thing we listening to your feedback was that while Fountain’s sense of community is unique, we could do a better job of surfacing conversations that are happening on the app and making it easier to join them. As well as introducing the new “stories” browser to the top of the home feed, we’ve completely redesigned the home feed to make it less cluttered and easier to browse.\n\n- See podcasts, music, clips and playlist activity from accounts you follow\n- View replies and tap through to read the full conversation\n- Check the stats for every post and see who liked it and who replied to it\n\n---\n\n![fountain-1.0-playlists.webp](https://m.stacker.news/9020)\n\n**PLAYLISTS**\n\nWe’ve made some big changes to our playlists feature so that you can add different types of content to your collections. Every Fountain user can create up to three playlists for free but you will be required to upgrade to Fountain Premium in order to create more.\n\n- Add your favourite episodes, tracks and clips to playlists\n- Earn sats for the playlists you create when other listeners like them\n- Added comment functionality for playlists\n\n---\n\n![fountain-1.0-strike.webp](https://m.stacker.news/9021)\n\n**CONNECT STRIKE**\n\nWe have partnered with Strike so that you can top up your Fountain wallet instantly using your preferred currency. Once you have connected your Strike account from your Fountain wallet, you can deposit funds from your Strike account without ever leaving the Fountain app.\n\n\n---\n\n**FEEDBACK**\n\nAlthough we've launched Fountain 1.0 I know we still have an incredible amount of work to make Fountain the best podcast listening experience it can be.\n\nAs always with my posts here I would really appreciate people's feedback on the new design, features, and also just general ideas about what you would love to see from your podcast app.\n\nThanks!\n\n https://fountainpodcasts.substack.com/p/1-0 1483 \N 414232 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 8.31163979623867 0 \N \N f 280310441 \N 4 123928440 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 392589 2025-02-05 12:15:26.38 2025-03-29 22:39:47.363 Bitcoin Adoption On Crete (Personal Experience) I would like to give you an impression of the state of Bitcoin adoption in a little village on the island of Crete in Greece that is representative for the aegean islands. \n\nYou find that village at the south coast and it has about two hundred people living here and during the summer there is tourism. It has some little tavernas and accomodation places, people here live on 50% tourism and 50% agriculture. Personally I rented a little house for about 20 years now that I maybe gonna buy during the next real estate crash that is already brewing.\n\nThere is one guy with a Taverna and some rooms that accepts btc onchain now since the last bull run 2021. He never studied LN, never published his BTC policy to attract the btc community... nothing. He never has any clients demanding for btc payment. Himself he's a hodler, believing in a growing ecosystem but as they are here: they don't give a f....\n\nThat's it so far. In Chania, the capital of this part of the island, the onle BTC ATM disappeared 6 months ago. I asked the shop owner (vaporizers and tobacco): no demand at all....\n\nBut: here in the village I know the young people between 20 and 35 years too. Today I talked to 6 of them: 2 bought it on binance in 2021 and still hold it, one is interested, the others don't have enough money: they thought they need to buy 1 whole BTC! \n\nSo, there is literally 0 education, a lot of confusion: "It's illegal, isn't it? What happens if it disappears? What about taxes? Lightning? WTF is that?''\n\nBut: as inflation is rising fast, anybody is watching and looking for a solution. \n\nIn my opinion You need to identify the intellectual 'leaders', explain the problem and help them to get on board by presenting cold storage and purchase solutions. That is what I did today. I gained two of the most intelligent guys I ever met (one has a restaurant the other is a writer, both living here) and we discussed the debasement problem and the fiat fraud. They got it in 5 minutes! To cross the bridge to BTC as the solution was easy. We did a sats transfer with WoS. Later we will discuss P2P orders and cold storage. \n\nMy landlord gets it, too. But I think he was a little drunk so we will have a talk tomorrow. But he was open to it, too because 99% of transfers here are cash (if You know what I mean). And the clock for cash is ticking...\n\n I will keep the Sats (and the Raki) floating around here as good as possible.\n\nGiasas\n\n\nBtw: the foto in my profile was made from my terrace. Crete is paradise! \N 2338 \N 392589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.64667108315913 0 \N \N f 103754755 \N 1 239665723 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444449 2025-03-19 22:10:29.323 2025-03-29 22:39:47.363 What was your favorite book of 2023? Any topic counts! \N 7587 \N 444449 \N \N \N \N \N \N \N \N health \N ACTIVE \N 27.7732097464816 0 \N \N f 49844301 \N 1 201836208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455429 2025-03-27 02:26:45.026 2025-03-29 22:39:47.363 Tail Emissions Are A Terrible Idea I've been seeing some talk lately about the need to fork bitcoin in the future and implement tail emissions, as though Bitcoin will fail without a block reward. This has never made sense to me, and I think such a fork would be a terrible idea.\n\nBitcoin doesn't have a "security budget." It's a protocol to provide probabilistic finality to reduce / eliminate the risk of a double spend. With no block reward, for any type of large transaction with an untrusted party, there is a strong incentive to provide "free" bitcoin to the miners of subsequent blocks, to ensure finality. This will be less necessary for small transactions, since the base level of transaction fees will likely be sufficient.\n\nWhat are your thoughts on this? Obviously, we're still decades away before this will be a "problem," but I think it's important to address. These "tail emission" arguments need to put to rest. \N 15160 \N 455429 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 6.10399468739377 0 \N \N f 133388901 \N 1 20936824 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457126 2025-03-28 08:47:37.434 2025-03-29 22:39:47.363 Bitcoin and Morals: a reflection on our culture. >You cannot serve both money and God.\n>\n>In a debt-based monetary system, it's near impossible to not serve money.\n>\n>#Bitcoin is Christian money.\n>\n>JimmySong [¹](https://x.com/jimmysong/status/1432480838827008004)\n\nThis is how Jimmy Song, a prominent Bitcoin puritan describes it in an attempt to promote his book "Thank god for Bitcoin", coauthored by Robert Breedlove, J.M. Bush, Gabe Higgins, George Mekhail, Lyle Pratt, Julia Touriasnki, and Derek Waltchack [²](https://www.goodreads.com/book/show/56049234-thank-god-for-bitcoin). Breedlove's recent Onlyfans Girlfriend fiasco [³](https://x.com/Breedlove22/status/1793467069985607881?t=N6PH_qPpCwBYgT79dQn0ZQ&s=19) where he left his tradwife and daughter in financial hardship [⁴](https://x.com/RaisingLove21/status/1793756263609999429?t=Zt4mX1sziiR3JH34cS4uig&s=19) , [⁵](https://x.com/brian_trollz/status/1794002592793768195?t=Dim6JlTd5j6qooe4dKuq4A&s=19) for an Onlyfans model less month after saying that "Porn is for weaklings" [⁶](https://x.com/Breedlove22/status/1785777336178151581?t=Z5iD2qNLaMgXszedEqr5Qg&s=19), is proof that this claim is completely nonsensical. \n\nAs pointed out in Lopp's **A History of Bitcoin Maximalism** [⁷](https://blog.lopp.net/history-of-bitcoin-maximalism/) many Bitcoiners engage in a list of lifestyle subcultures:\n\n * Anti-woke\n * Carnivory\n * Laser Eyes\n * Anti-woke\n * Weightlifting\n * Tradwife culture\n * Climate change denial\n * Overt Christian moralizing\n * “Have fun staying poor” retorts\n * Rejection of seed oils and sunscreen\n * Vaccine conspiracies, alt-health cure-alls\n * Contrarianism for the sake of contrarianism\n * Political populism and support of strongmen\n * “Fiat” criticism of contemporary art and architecture\n\nNon-surprisingly, Breedlove lives hes lifes by following many of these subcultures [⁸](https://x.com/bitcoin_clown/status/1665364365560758274?t=ZEgofL0nf8GNOn3E0p6qPQ&s=19), he was a quintessential Bitcoin maxi of sorts for some, now he is the laughingstock of Bitcoin moralists and Bitcoiners in general, moralists now see him as an idiot because he was not able to keep up with the purity test which makes him a filthy FIAT person like everyone else, who has a lower moral standard, while non-moralists see him as an idiot because he imposed these purity test onto himself that no person with two braincells would be able to keep up for long and of course he didn't.\n\nThis is not to say that Robert is a midwit, in fact I always thought very highly of him outside of his controversial antics, **The Number Zero and Bitcoin** [⁹](https://breedlove22.medium.com/the-number-zero-and-bitcoin-4c193336db5b) is still one of my favourite Bitcoin articles, and despite Breedlove's wordsaladism, I will keep recommending it to people, but to say that arbitrary morality and purity tests don't make you a good person, they simply make you a moralist and a purity tester, and once you fail the tests, you'll bee seen as worse than anyone who never even tried to do these things in the first place by the very same people who got you into this.\n\nNow, how does a person who's considered a philosopher, a good example of American right wing traditionalism, and a Bitcoin influencer, become FIAT AF [¹⁰](https://x.com/xpugHODL/status/1793683193427841217?t=PmZbDkzeq7lnKRjaHV_qWA&s=19) out of seemingly nowhere? Simple, he always was this kind of person, and none of these arbitrary tests, no amount of virtue signaling, and especially not Bitcoin could ever change that fact.\n\nWhat I want to say with all of this is: Bitcoin won't fix the moral system through its incentive structure as some claim [¹¹](https://x.com/HodlingCarla/status/1732931677842764093?t=xtb-4qDGIsdszyjjr7-kwQ&s=19), it won't bring back "traditional values" [¹²](https://x.com/nftisgood4me/status/1789581530324451629?t=auUOZXJ8Mrb0DZLcie5TNA&s=19) where men are real men who provide for their families and women are real women who give birth to children every 2 years and cook for their hardworking and providing christian husbands [¹³](https://x.com/gabyvivasbtc/status/1389238661292691456?t=OWUQO9SJ0dBxCwtWwaXyGQ&s=19), it won't solve many of the "problems" the common moralist Bitcoiner sees in modern society, and virtue signaling about it won't do anything for you other than get you deeper into the hole, be prepared to be disappointed, because Bitcoin and morals have absolutely no relationship other than the one YOU think it has.\n\nLink index:\n1: [Tweet by @JimmySong from 2021/Aug/31](https://x.com/jimmysong/status/1432480838827008004)\n2: ["Thank God for Bitcoin" on goodreads.com](https://www.goodreads.com/book/show/56049234-thank-god-for-bitcoin)\n3: [Tweet by @Breedlove22 from 2024/Mar/21](https://x.com/Breedlove22/status/1793467069985607881?t=N6PH_qPpCwBYgT79dQn0ZQ&s=19)\n4: [Tweet by @RaisingLove21 from 2024/Mar/22](https://x.com/RaisingLove21/status/1793756263609999429?t=Zt4mX1sziiR3JH34cS4uig&s=19)\n5: [Tweet by @brian_trollz from 2024/Mar/22](https://x.com/brian_trollz/status/1794002592793768195?t=Dim6JlTd5j6qooe4dKuq4A&s=19)\n6: [Tweet by @Breedlove22 from 2024/Mar/10](https://x.com/Breedlove22/status/1785777336178151581?t=Z5iD2qNLaMgXszedEqr5Qg&s=19)\n7: ["A History of Bitcoin Maximalism" on blog.lopp.net](https://blog.lopp.net/history-of-bitcoin-maximalism/)\n8: [Tweet by @bitcoin_clown from 2023/Jun/05](https://x.com/bitcoin_clown/status/1665364365560758274?t=ZEgofL0nf8GNOn3E0p6qPQ&s=19)\n9: ["The Number Zero and Bitcoin" on medium.com](https://breedlove22.medium.com/the-number-zero-and-bitcoin-4c193336db5b)\n10: [Tweet by @xpugHODL from 2024/Mar/22](https://x.com/xpugHODL/status/1793683193427841217?t=PmZbDkzeq7lnKRjaHV_qWA&s=19)\n11: [Tweet by @HodlingCarla from 2023/Feb/23](https://x.com/HodlingCarla/status/1732931677842764093?t=xtb-4qDGIsdszyjjr7-kwQ&s=19)\n12: [Tweet by @nftisgood4me from 2023/Mar/15](https://x.com/nftisgood4me/status/1789581530324451629?t=auUOZXJ8Mrb0DZLcie5TNA&s=19)\n13: [Tweet by @gabyvivasbtc from 2021/May/03](https://x.com/gabyvivasbtc/status/1389238661292691456?t=OWUQO9SJ0dBxCwtWwaXyGQ&s=19) \N 10986 \N 457126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.69712462791535 0 \N \N f 2709351537 \N 21 125499482 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 7 0 0 386322 2025-01-30 19:58:10.69 2025-03-29 22:39:47.363 Humane by Design - A set of patterns that respect human beings \N https://humanebydesign.com/ 12744 \N 386322 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 6.31001876973492 0 \N \N f 203309796 \N 1 111105500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 429644 2025-03-08 13:50:07.287 2025-03-29 22:39:47.363 I'm justinmoon. AMA! I used to teach a bitcoin programming class, organized Austin Bitdevs meetup for the past 4 years, contribute to Fedimint and co-founded Fedi (https://fedi.xyz/). Ask me anything! \N 797 \N 429644 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 2.78139377280478 0 \N \N f 323496183 \N 2 221789484 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 407714 2025-02-18 10:18:10.636 2025-03-29 22:39:47.363 Road-To-Suave-Fabs/ Part 2 I didn't have a particular "objective" set today in terms of asking a - specific - girl out, but since I'm pushing myself to take charge whenever an opportunity arises, I still had some action today.\n\nThe day started like any other day: I woke up, got ready to go to the gym, and off I went.\n\nI've entered the gym, thinking about what I'd start with because, well, the Smith machine was already in use- as always.\n\nI entered the changing room to store my backpack, and lo-and-behold: The redhead I had a crush on a year ago was back! (Albeit as part of the housekeeping, but still).\n\nMy heart jumped a little, but I wasn't quite sure if it *really* was her, and thus, I initially went ahead with some abs-exercises, during which I managed to get a closer look and confirm my suspicion: it indeed *was* her!\n\nI got up and went off to approach her, but, as fortune would have it, she made a sharp turn for the toilet, after which a few awkward minutes of me stumbling around the locker room ensued.\n\nOnce she got out, I got up from the bench and walked up to her, reached out my hand and said "*Hey, I'm Fabian*" followed by her greeting me and telling me her name.\n\nI was nervous as hell because it's a) a place I often visit, b) someone from staff so if it backfires it might get awkward and c) it had gotten pretty crowded at the locker room- in other words: perfect conditions for a bloody starter to ask a girl out, not. \n\nNevertheless, I managed to get my intention of getting to know her accross somehow, to which she kinda responded kinda evasive (correct word? I don't know.)\n\nWe settled on exchanging phone numbers, after which I told her I'd message her later, shaked her hand and said, awesome, 'till later! And off I went, happy as hell to be over that hot-mess I made 😆\n\nI went on with my workout, after which I messaged her, only to be greeted by: "*Hii, I didn't wanna tell you earlier because there were people around and didn't wanna make it uncomfortable for you, but I already have my eyes on someone else, sorry*".\n\nOf course, little Fabs was a little hurt- who wouldn't be, right?! \n\nI told her that I already thought that there was something in the bush, and that although it's a bummer, I understood why she did what she did, but also told her that being upfront is always the best way to react.\n\n* **Rough translations**.\n\n"*Alright*", I thought, "*that's that.*"\n\nI felt like I needed to give the whole thing a place, and went for a walk where I introspected on the whole situation, her motivation and my reaction to it, and along the way came to the conclusion that landing a date with a girl currently isn't the goal at all, but ***to take charge whenever an opportunity arises, to bite some bullets and show myself that I indeed have the balls to do it, albeit uncomfortable at times***.\n\nOf course, it kinda sucked, but I now know that ***it isn't about getting a date asap, but to learn to navigate the emotions that come with it, grow my courage and better "sell" myself in the moment of asking out a girl***, and thus, that's going to be the new goal for the short-term!\n\nAnyways, feels good to write it down somewhere, and off to the next chance!\n\n* Soon-To-Be-Suave Fabs, out!\n\n\nPS: Both times after I've tried asking out a girl, I instantly "forgot" what I said and how I reacted, only to be left with a vague "memory" of what happened and the result I got... \n\nWhy is that? What is that?\n\nAlso, what about the handshakes? Cool? Not cool? 😆 \N 20439 \N 407714 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 19.9744872879889 0 \N \N f 3000659 \N 1 233142750 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448962 2025-03-23 03:03:16.588 2025-03-29 22:39:47.363 BTC Map Launched: Countries Leaderboard \N https://btcmap.org/countries/leaderboard 13198 \N 448962 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 6.71552765066881 0 \N \N f 506467798 \N 4 29756767 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 20:59:41.857 f \N \N \N 0 0 0 0 1 0 0 421121 2025-03-01 12:13:43.754 2025-03-29 22:39:47.363 You And Your Small Community Are The Only People Left On Earth This is a question that has come up to me several times in the past. I've even discussed it with friends, and it's an interesting thought experiment. Imagine that only you and your small community are the only inhabitants of the Earth. Everything that has been built so far has disappeared. There are no houses, cars, tools, nothing. The day before this happened, you are the only one who can choose one object to take with you. \n\n# **``What would you choose ?``** \N 909 \N 421121 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 19.2910466138562 0 \N \N f 655689986 \N 6 56266655 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 381604 2025-01-26 18:33:12.806 2025-03-29 22:39:47.363 The Hidden Power of Suffering Suffering is a stark reality, a force that dwells in the deepest recesses of our souls. Its presence can be unbearable, marking us with emotional scars that are not easily healed. Yet suffering is not a burden we should flee from. It is, paradoxically, the crucible of our growth and the hallmark of our humanity.\n\nIn a society where comfort has become the ultimate goal, the mere mention of suffering stirs discomfort. We view it as the unpopular kid in school, as someone to avoid even being seen with, let alone engaging in. Yet, herein lies the paradox: Our relentless pursuit of comfort leads to stagnation, dulling our senses and depressing our souls.\n\nConsider the "Mouse Utopia" experiment—a controlled environment abundant with food, devoid of predators, and saturated with safety. Initially, the mice prospered, but over time, their community fractured and their essence altered. Females grew aggressive, males withdrew, and soon, their world withered away in a demographic collapse. They were not merely mice living in abundance; they became creatures debased by the absence of struggle.\n\nThis mirrors our human story in many unsettling ways. Like those mice, we live in increasingly regulated and structured societies. Our worlds are so designed to alleviate suffering that we are becoming less human and more indulgent. We are losing our nature—our need for challenges, for frontiers to conquer, and for obstacles to overcome.\n\nHowever, unlike mice, we possess reason, the conscious power to shift our trajectory. We can embrace hardship as a form of spiritual awakening, a crucible where our better selves are forged. Gyms have proliferated not merely for physical well-being but because they serve our inherent need for struggle. Marathons and obstacle races have surged in popularity, offering us the chance to confront our limitations head-on. Cold plunges and saunas have become popular in part because it stretches our bodies past their normal ranges.\n\nSuffering, then, is not an aberration; it is an integral part of the human experience. To seek a life devoid of suffering is to miss out on the profound depths of love, the intensity of joy, and the soul-stirring power of art. To shun suffering is to remain perpetually a child, forever shielded from the complexities and richness of human life. Sadly, too many choose this much easier path.\n\nOur perception of suffering needs to change. Do not curse it as a wretched plight but celebrate it as a catalyst for growth. For it is in the fires of suffering that we find our purpose, our resilience, and our true selves. Everything worthwhile, every meaningful experience, asks us to walk through the flames.\n\nEmbrace suffering, for it is the gateway to being human. \N 8380 \N 381604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.44955722128913 0 \N \N f 210177490 \N 1 149991676 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448097 2025-03-22 12:12:22.323 2025-03-29 22:39:47.363 What’s the biggest decision you’ve made this year? Not only about bitcoin \N 5519 \N 448097 \N \N \N \N \N \N \N \N Linux \N ACTIVE \N 19.1190299257112 0 \N \N f 234142797 \N 2 192125800 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434646 2025-03-12 05:20:42.975 2025-03-29 22:39:47.364 Mining Bitcoin with Off-grid Solar: Experiences So Far \nMy journey to mining bitcoin from electricity created by the sun began last year on a mountain in Tennessee. At the time, my family was living off grid, exploring what it was like to take a step out of the regularly scheduled societal program and into a life of greater connection to the natural world and the people around us. We were living well with the sun as our source of electricity. So well, in fact, that there were many days that our batteries were topped off well before noon, which meant that our solar panels were capable of harvesting much more energy than we needed. I’d been hearing that bitcoin miners are really good at soaking up and monetizing excess energy, so I took a look at our system’s capacity and the miner options available. I discovered that Bitmain’s S9 miner was plug and play ready for my application, and it only cost $125. It was perfect as a low risk way to learn more about home mining and an easy way to test what it was like to mine on solar. I started plugging in the miner on sunny days after the batteries had reached full charge and it worked! I was turning the extra solar capacity into hard money. I was hooked and began dreaming of ways to optimize the system. Before long, I discovered an online community of home miners who were tinkering with all sorts of interesting ways to use miners to add value to their lives. In particular, I was intrigued by the work of Dirtyshotya from 100acresranch, who builds a tuner that allows a modified S19 series miner to run on 12v dc current straight from solar panels. This increases efficiency by eliminating the AC-DC power supply miners require when running from AC power sources. I purchased a tuner box from Dirty in November and began assembling the necessary components to build a completely off-grid solar mine. This week marked the maiden voyage of the system. As with any project that pushes the boundaries of what has previously been done, the road has been bumpy and winding. What follows is my attempt to get into writing the process, challenges, and successes of this project, both as a reference for future me and as inspiration and information to anyone who is curious about mining bitcoin with solar.\n\nBefore embarking on this project, I identified the following goals:\n\n1. To invest capital in energy independence and resilience. \n2. To expand my experiential capital in both solar systems and bitcoin mining.\n3. To setup a relatively passive income stream that reduces the ROI of the solar system. \n4. To harvest the heat from the miner to supplement home space heating. \n\nI don’t currently live in a home that I’m able to add a solar system to, so I had to get creative. Fortunately, I found a family member who was willing to host the system in exchange for the supplemental heat from the miner. I have designed it so we can move it when we move to property where we have more space. The system is an asset that should bear fruit for decades. \n\nThe system is composed of the following components:\n\n1. Solar panels. Due to the design, 12v panels are necessary for maximum utilization of electricity produced. Technically, higher voltage panels will work, but they will be limited to a fraction of their maximum output because the miner requires 12v supply. 12v panels are more difficult to find. I got mine on eBay. I started with 3 Kw of capacity, which is around the maximum draw of my miner. This doesn’t mean the panels will produce 3 kW. We’ll get to that in a bit.\n2. Miner. Currently the firmware for the tuner supports Bitmain’s S19 series miners. I went with a j Pro 100Th machine.\n3. Solar tuner box. This is where the magic happens, adjusting the power sent to the miner based on what’s available from the panels and batteries. \n4. Batteries. 400ah of 12v lithium. \n5. Racking. I spent a lot of time putting together racking that was as cost effective as possible while meeting aesthetic and functional needs. \n6. Wiring, fuses, breakers, connectors. Due to the length of my runs, this required upsizing my wire. \n\nChallenges in setting up the system:\n\n1. Panel placement. The roof I have access to faces east/west. This is not ideal. After careful consideration, I decided to place panels on each slope of the roof. My hope was to capture more hours of sun rather than focussing on peak power production. The jury is still out on whether this was a good idea.\n2. Wire run. Low voltage systems do best with short wire runs because of the expense of running wire gauges that are large enough to safely carry the amps the panels produce. The constraints of my system required wire runs of up to 45ft., which meant I had to upsize my wire gauge. This was expensive. \n3. Setting up the tuner box. This was mostly due to my limited technical knowledge. I was learning how to setup and operate a solar system, a bitcoin miner, and the tuner all at the same time. There’s a learning curve. I spent a couple of days foiled by a bad sd card. Slow and steady wins the race.\n\nAfter running the system for a few days, some things are becoming apparent:\n\n1. The solar panels seem to be the limiting factor right now. In full sun they harvest around 750w, which is 25% of their rated maximum. My current hypothesis is that panel placement is largely to blame. The panels are flat on the roof, facing east and west. I knew this wasn’t ideal, but it seems to be even less so than I hoped. The next step is to try tilting the panels south as much as I can. Production should improve as we enter the summer months and the earth’s axis shifts to bring the sun higher in the sky, striking the panels more directly. I will need to make improvements if I expect to hash over the winter. There is enough space on current racking to add another panel or two, so that is another option for adding watts.\n2. Current battery capacity will only extend runtime marginally. It works well if the sun is momentarily obstructed by clouds, but if I want extended runtimes when the sun is down I’ll need to add batteries. \n3. Turning extra electricity into heat and BTC is fun! I see lots of potential to keep tweaking the system for maximum efficiency. \n\nQuestions? Ask away. Comments? Send’em over. \N 17103 \N 434646 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 25.7661273420713 0 \N \N f 3368993230 \N 28 29289867 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:50:27.619 f \N \N \N 0 0 0 0 9 0 0 434627 2025-03-12 04:42:03.26 2025-03-29 22:39:47.364 Sunsetting Lndhub.io \N https://bluewallet.io/sunsetting-lndhub/ 13517 \N 434627 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.3124673902634 0 \N \N f 864699324 \N 7 122397775 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 14:22:11.601 f \N \N \N 0 0 0 0 5 0 0 403996 2025-02-15 12:41:45.311 2025-03-29 22:39:47.363 REXEARCH : Virtual Size of Onchain Transaction # LORE\n\n\n- Stumble across Bitcoin, heard about it's P2P aspect\n- Initially thought fees are calculated in proportion to the payment amount\n- Quickly learned about UTXOs, TX input + output etc\n- Confused as to why some TXs have cheaper or more expensive TX fee even though they looked similar from quick glance\n- Learned script types, tryna find out how each script type are weighted and found these [1](https://bitcoinops.org/en/tools/calc-size/), [2](https://jlopp.github.io/bitcoin-transaction-size-calculator) tools\n- Interested to know more & want to verify the information by myself\n- Conduct my own investigation\n- Results found, decided to share it on SN\n- Am i cooking ?\n\n\n# CLASSIFICATION & CORE ASPECTS\n\n\n|Script Type|Other||\n|:----------------:|:-------:|:-:|\n|P2PK|Coinbase|Input-only (can't spend to Coinbase)|\n|P2PKH|OP_Return|Output-only (can't spend from OP_Return)|\n|P2MS|P2QRH|Still in the [proposal-phase](https://delvingbitcoin.org/t/proposing-a-p2qrh-bip-towards-a-quantum-resistant-soft-fork/956), add it anyway|\n|P2SH|P2A|Haven't learned much of it, add it anyway|\n|P2WPKH|Non-standard||\n|P2WSH|||\n|P2TR|||\n\n\n||Pre-SegWit|Post-SegWit|\n|:-:|:-------------:|:------------------:|\n|Overhead|nVersion|nVersion|\n||Input Count|Input Count|\n||Output Count|Output Count|\n||nLocktime|nLocktime|\n|||Mark & Flag|\n|Input Field|Outpoint|Outpoint|\n||scriptSig Length|scriptSig Length|\n||scriptSig|nSequence|\n||nSequence|Witness Items|\n|Output Field|nValue|nValue|\n||scriptPubkey length|scriptPubkey Length|\n||scriptPubkey|scriptPubkey|\n|Block Size/Weight [^1]|1 Megabyte|4 Million Weight Units|\n|||4 Mega Virtual Bytes|\n\n\n# RESULTS\n\n\n||Overhead|Input VSize|Output VSize|\n|:-:|:-----------:|:----------------:|:-------------------:|\n|Coinbase||≥ 48 ?||\n|OP_Returm|||≥ 34 ?||\n|P2PK|10|113 ~ 115|76|\n|P2PK (Raw)|10|114|44|\n|P2PKH|10|147 ~ 149|34|\n|P2PKH|10|179 ~ 181|34|\n|P2MS 1-of-1|10|113 ~ 115|46 or 78|\n|P2MS 1-of-1|10|148 ~ 154|46|\n|P2MS 1-of-2|10|114 ~ 116|80 or 112 or 144|\n|P2MS 2-of-2|10|187 ~ 189|80 or 144|\n|P2MS 1-of-3|10|114 ~ 115|114 or 146|\n|P2MS 2-of-3|10|186 ~ 189|114 or 210|\n|P2MS 3-of-3|10|258|114 or 210|\n|P2SH 1-of-1|10|79 or 153|32|\n|P2SH 1-of-1|10|184 ~ 186|32|\n|P2SH 1-of-2|10|186 ~ 188|32|\n|P2SH 1-of-2|10|252|32|\n|P2SH 2-of-2|10|260 ~ 261|32|\n|P2SH 2-of-2|10|326 ~ 328|32|\n|P2SH 2-of-3|10|293 ~ 298|32|\n|P2SH 2-of-3|10|329|32|\n|P2SH 2-of-4|10|331|32|\n|P2SH 3-of-4|10|530 ~ 534|32|\n|P2SH 2-of-5|10|364|32|\n|P2SH 3-of-5|10|436 ~ 438|32|\n|P2SH 8-of-9|10|936 ~ 939|32|\n|P2SH-P2WPKH|10.5|90.75 ~ 91|32|\n|P2SH-P2WSH 1-of-1|10.5|104|32|\n|P2SH-P2WSH 2-of-2|10.5|130.75 ~ 131|32|\n|P2SH-P2WSH 2-of-3|10.5|139 ~ 139.25|32|\n|P2WPKH|10.5|67.5 ~ 68|31|\n|P2WSH 1-of-1|10.5|69.25|43|\n|P2WSH 2-of-2|10.5|95.75 ~ 96|43|\n|P2WSH 2-of-3|10.5|104 ~ 104.5|43|\n|P2WSH 3-of-5|10.5|139.25 ~ 139.75|43|\n|P2WSH 11-of-15|10.5|397.25 ~ 398.75|43|\n|P2TR|10.5|57.5 ~ 57.75|43|\n\n\n# EXAMPLES\n\n\n|Part|Size|Transactions Example|\n|:-----:|:-----:|:----------------------------------:|\n|P2PK input|113|[1](https://mempool.space/tx/f4184fc596403b9d638783cf57adfe4c75c605f6356fbc91338530e9831e9e16?mode=details), [2](https://mempool.space/tx/a16f3ce4dd5deb92d98ef5cf8afeaf0775ebca408f708b2146c4fb42b41e14be), [3](https://mempool.space/tx/591e91f809d716912ca1d4a9295e70c3e78bab077683f79350f101da64588073?mode=details), [4](https://mempool.space/tx/4385fcf8b14497d0659adccfe06ae7e38e0b5dc95ff8a13d7c62035994a0cd79?mode=details)|\n||114|[1](https://mempool.space/tx/12b5633bad1f9c167d523ad1aa1947b2732a865bf5414eab2f9e5ae5d5c191ba?mode=details), [2](https://mempool.space/tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe?mode=details), [3](https://mempool.space/tx/6bf363548b08aa8761e278be802a2d84b8e40daefe8150f9af7dd7b65a0de49f?mode=details)|\n||115|[1](https://mempool.space/tx/298ca2045d174f8a158961806ffc4ef96fad02d71a6b84d9fa0491813a776160?mode=details), [2](https://mempool.space/tx/35288d269cee1941eaebb2ea85e32b42cdb2b04284a56d8b14dcc3f5c65d6055?mode=details)|\n|Raw P2PK input|114|[1](https://mempool.space/tx/cda1f7d88232ff7e4fc1fcbf8a66b2cc3b8e19b5bc0ad22618453b8b75156740?mode=details), [2](https://mempool.space/tx/16b44dbb0bc323b0acffe4250bf9a2575d8e4b529427f8ffae970ed25f2ced0b?mode=details)|\n|Raw P2PK output|44|[1](https://mempool.space/tx/3db8816c460f674e47f0e5799656721a249acdd53cd43a530c83384577485947?mode=details), [2](https://mempool.space/tx/290d04390c6a085f7277f6a30b363974d61ef59a76040697f02d7e0f84026f58?mode=details)|\n|P2PKH input|147|[1](https://mempool.space/tx/2b5175b277c9667d86f8367394d59cd87227e1515841bf6cec425f544adffd21?mode=details), [2](https://mempool.space/tx/3884a55c55b013568bacb309a4d751066fcaa2b94f96a27f7ad7b4538197d222?mode=details), [3](https://mempool.space/tx/0c4dd7c17a708b42c89e26747b682ffddfa59e35cbf11588eaebdebf5bb119b6?mode=details), [4](https://mempool.space/tx/17457a8caf7c5608bfe0a2eb53f1ee8720d508bc3c9906be71d32371ef365af1?mode=details)|\n||148|[1](https://mempool.space/tx/2d4a76e05a41981e8c0bcf3f8ea82ce37e4a62505daff876f871f5c081e2550c?mode=details) (2nd), [2](https://mempool.space/tx/0ad14328be956d31d553c708afb50caf4f75fabf3653a84849112d5f9f4a9c32?mode=details) (except 1st), [3](https://mempool.space/tx/b54982c6894321e15866f3c32bd8b2124ed6f24b723c564b0b89a742124bbf77?mode=details) (1st), [4](https://mempool.space/tx/4468f4394037e70ee3558cabd8c9fdfbb5b574650b1c2b8dc8db3c515113a5dc?mode=details) (all)|\n||149|[1](https://mempool.space/tx/93d47bef03627538bba3e3841cccee8c9ea24aac077e4bf04b516987badc6293?mode=details), [2](https://mempool.space/tx/e1e5c7d2c224d99dd7ac2c9e3c254c0c71ba384906b69256415b56589169fd7b?mode=details), [3](https://mempool.space/tx/06d0c0577f35a951307689e676aa54be777fc91987eef9d2f164f012c92795c7?mode=details), [4](https://mempool.space/tx/7d9784cd4d9cfd1c363d133413dc50736d9a0257e081fe354d24f5d2c4438975?mode=details) (1st)|\n||179|[1](https://mempool.space/tx/6985bf92a838a8e8fa72bfe4c0ceb7142dcfd881e7e95452a933225ba2a277ba?mode=details), [2](https://mempool.space/tx/2e96f4ec85e72cd5dd73420a6416be265766fa92c45b31c1aa8d04685d985384?mode=details), [3](https://mempool.space/tx/474900a75277f370c9dc77d7dc703959f6ade925e19b5c4c4c6273f70fc7a968?mode=details) (2nd), [4](https://mempool.space/tx/931991cd5cb22982fc5c71fc2eb87ae18336d004d9a93b7d5bfa2563a8e637cf?mode=details) (2nd)|\n||180|[1](https://mempool.space/tx/a8efe15324a43e5e031204d57b4db425e6f0bbb4d640b4c2edaf81061ba0da0c?mode=details), [2](https://mempool.space/tx/8433794ce5e2ce6fc4bff73ead4118dc01982c57bcf48e674cb14d9b86c9d5b8?mode=details), [3](https://mempool.space/tx/2a7480e240210875e2b8a8a2e3f900ba2dcac3bfc591e660ace961a259143cc9?mode=details), [4](https://mempool.space/tx/d3e33b1845f61c710a2cd5a6bf2f750dac9db1c8d7833dc6e28e2cb7225eb9e9?mode=details)|\n||181|[1](https://mempool.space/tx/aef374b12ebbe371fab61484abcd547660286ae27d90fd9ca9396cdc568126b4?mode=details), [2](https://mempool.space/tx/c43ac099036680a0c9b2aeccf65666e85e4504aed3d40354b1d566dbb93213f4?mode=details), [3](https://mempool.space/tx/1f7eb913a64b6886075d51b17fc1e28056c387dfa1a92b5b5b65cc1a02b0bfe8?mode=details) (all), [4](https://mempool.space/tx/474900a75277f370c9dc77d7dc703959f6ade925e19b5c4c4c6273f70fc7a968?mode=details) (1st)|\n|P2MS 1-of-1 input|113|[1](https://mempool.space/tx/a38824b0a5e5aa373ab79e05b3e17d4e0cfa67908a509cf7b64314282d9aece8?mode=details)|\n||115|[1](https://mempool.space/tx/825baed503ce5d28bf7332b6dac4751aaceea5cf2df9148b90cbc61894b65261?mode=details)|\n||148|[1](https://mempool.space/tx/f0ac94fc28d011b6145a69d0790e30669bb9148b2bd02a9e11a728d75ad2bb08?mode=details)|\n||154|[1](https://mempool.space/tx/320a5c8eb5e8e0d4fc2ae48fc6f2d1c86ebe637193a61fcc9a13925d9cf96b1b?mode=details)|\n|P2MS 1-of-1 output|46|[1](https://mempool.space/tx/e6136834e5c3a307bbf7055489af870d51f59dd66b0fe7fb12d5e593f9118e3b?mode=details), [2](https://mempool.space/tx/e951c1093f65fc94443f7044e6c997caa0ff78da4b96627af32e6532a03a561e?mode=details), [3](https://mempool.space/tx/ac1d9ed701af32ea52fabd0834acfb1ba4e3584cf0553551f1b61b3d7fb05ee7?mode=details), [4](https://mempool.space/tx/93147afde9666f086ab41a449c94e2764fb3e9c71310ab641af0ac1261e1c50b?mode=details)|\n||78|[1](https://mempool.space/tx/38089fd6b2c2cb8da81746cdf252366680450e3cd5648c7183731bdedb082ed8?mode=details)|\n|P2MS 1-of-2 input|114|[1](https://mempool.space/tx/23b397edccd3740a74adb603c9756370fafcde9bcc4483eb271ecad09a94dd63?mode=details), [2](https://mempool.space/tx/b95c64eb14cc03336698fb5c31bb59bc80d59bfbc2f9b51a55b23214e855a857?mode=details), [3](https://mempool.space/tx/3b88dd3cb72c1cb6a9ad9578ba830cd5100056e076d585a8e6c0d7cfe52fa2a9?mode=details), [4](https://mempool.space/tx/406aac559b97ead91e9db814e7306a8938d0fa4ec9380bd5a3e44fe6296394bd?mode=details)|\n||115|[1](https://mempool.space/tx/8752bcc9896c50eb441ba81511ffeb1d94a30f0804ce28de6c7ba43e5e45a88f?mode=details), [2](https://mempool.space/tx/4f2b6cab923f97625e4d578c9228a47a95ba72ebf93cf79fd12415d53a045d2b?mode=details), [3](https://mempool.space/tx/53c7308668d9e91ecb5807856422b6c7ce5b4f4216a8bc6907aec3141004dd05?mode=details), [4](https://mempool.space/tx/3a1dddbf86a39a9d520b8cda5adbd2b653610f039d474b8847fb4a0c9483c94c?mode=details)|\n||116|[1](https://mempool.space/tx/bc74e30709ac233545c933de932d5439a3010d1767cc12272edf078047bc09a1?mode=details)|\n|P2MS 1-of-2 output|80|[1](https://mempool.space/tx/cf0edfdd0a9e4d8aea2f87fc2cec6a367e1686a1fe066390ac195a797d76c0f1?mode=details), [2](https://mempool.space/tx/c0efb78ddb26ed9f6fcdd8fca45a1cbe98e48c43425ebda5d14939dbd6453225?mode=details), [3](https://mempool.space/tx/a54e950cfd3793668922b40be9d46005dd7fdee84f0f6c6ab8c4c372b2e06d32?mode=details), [4](https://mempool.space/tx/221511f93dc06f67d297c7b9e219c607a4387853b18e351890e7970a33c2b170?mode=details)|\n||112|[1](https://mempool.space/tx/a67a07f54e80cd77b45e128d6404c6979c84eb39c3026fa707c20c9dbcca1e95?mode=details), [2](https://mempool.space/tx/a24a6b5b38cec7047c14d2ce581c8576e233cf555bd318053d3bed12ebf803ce?mode=details), [3](https://mempool.space/tx/a30e830f4a3047a721dbdc0949fd63fdf945263d9581b4c7c3e6c0a882de0774?mode=details)|\n||144|[1](https://mempool.space/tx/60a20bd93aa49ab4b28d514ec10b06e1829ce6818ec06cd3aabd013ebcdc4bb1?mode=details)|\n|P2MS 2-of-2 input|187|[1](https://mempool.space/tx/4a29958fdb719f333927a92f72727b996f1ebf565fce2cc83aea04b0f6902c6f?mode=details), [2](https://mempool.space/tx/7c2c4cf601c4607d068fdf6b95900b8a5bc73fbb9a22200ab56ebfe44b8c6e74?mode=details) (2nd)|\n||188|[1](https://mempool.space/tx/9ac8145738a8c8f9f09e6f01f112a99c5adaa44beab3b97f718ad0bf64d6b238?mode=details), [2](https://mempool.space/tx/7c2c4cf601c4607d068fdf6b95900b8a5bc73fbb9a22200ab56ebfe44b8c6e74?mode=details) (1st), [3](https://mempool.space/tx/f2d5d77af5c411b20f17f2e56f17f2c07f9199286b0830b80f49c4a7d2e01109?mode=details) (2nd), [4](https://mempool.space/tx/fc88989add1696752ca7636cd3199704268f32335b3aabe237a4c0ace6018b12?mode=details) (2nd)|\n||189|[1](https://mempool.space/tx/2409f355c8910721fbbb5c54a01b8f9c692cfb292c3b4f7baf5b8151e44fef21?mode=details), [2](https://mempool.space/tx/7561dfcf4ae003b8ddb2d3f402767830a3bc3421e78c6b5b11a7e83fad22f5d2?mode=details), [3](https://mempool.space/tx/f2d5d77af5c411b20f17f2e56f17f2c07f9199286b0830b80f49c4a7d2e01109?mode=details) (1st), [4](https://mempool.space/tx/a1ea617f0d4c74ab9dcd6c065f294e8079cd44f0394d7edbfe36bb4ffc330f7d?mode=details)|\n|P2MS 2-of-2 output|80|[1](https://mempool.space/tx/2bf18d1a030c01c22cfd222b504ecf2523e72bc51d0f9e29088a47481d9f470e?mode=details), [2](https://mempool.space/tx/4e8d3f06be93005dad9e89216bc25afc65cdf4642c0b130b516c33a9292837aa?mode=details), [3](https://mempool.space/tx/4e8d3f06be93005dad9e89216bc25afc65cdf4642c0b130b516c33a9292837aa?mode=details)|\n||144|[1](https://mempool.space/tx/947539645c59e6ab0cda61826cbacb55ef97a8178f012f8c18abe504bf66d4ce?mode=details), [2](https://mempool.space/tx/2b19a3289f47758ab3fdba90609eb8c4c92b4a75210fb6cbe1fd44d085c76f11?mode=details), [3](https://mempool.space/tx/3af0d7e47a9e29b2866883b175f7d529fde8dfd448f7bdc1912d2dea7c0fe5fb?mode=details), [4](https://mempool.space/tx/9ac8145738a8c8f9f09e6f01f112a99c5adaa44beab3b97f718ad0bf64d6b238?mode=details)|\n|P2MS 1-of-3 input|114|[1](https://mempool.space/tx/f1f54e9d27922979a54d72ca2e6456cb5957e9b74bf5ad50ab6fb3448154f108?mode=details) (1st), [2](https://mempool.space/tx/5db8079bbd077940f3ea65f5509db5bc600e0fe8f2124db243e3819699c5bbfc?mode=details) (2nd), [3](https://mempool.space/tx/931e7b4d9bd70266720c289b4d6a42ef62e954ceade026f130c620ec50a4bbf4?mode=details) (2nd)|\n||115|[1](https://mempool.space/tx/931e7b4d9bd70266720c289b4d6a42ef62e954ceade026f130c620ec50a4bbf4?mode=details) (3rd), [2](https://mempool.space/tx/cd2e6e6dcc3b38d967875e0e23799d05ef24a5173f4c5a22fff0c571c17d329d?mode=details) (2nd)|\n|P2MS 1-of-3 output|114|[1](https://mempool.space/tx/0109e3f8d2d324b8d0c0fdd34d369ebcc69fbcc5a0cabe781f69867a0ba1dd74?mode=details), [2](https://mempool.space/tx/9087a1b72536f3b2909943553ba6d4e320565eeea1e42379dd4337b532f09fd8?mode=details), [3](https://mempool.space/tx/cd2e6e6dcc3b38d967875e0e23799d05ef24a5173f4c5a22fff0c571c17d329d?mode=details) (3rd), [4](https://mempool.space/tx/6d33ca526e6123cc793357a8d92991f485a540478843f29ad7935d6bb9875bb4?mode=details)|\n||146|[1](https://mempool.space/tx/78b42015df886a0acbe8db6003974685b1dda2d40b666c40ef6f1e4d06e7ec27?mode=details), [2](https://mempool.space/tx/14015bd586c0c7a28979ca294b114441f23bfc97be17cd6077b9e12e2709fec3?mode=details), [3](https://mempool.space/tx/5657b76d89438f4c5e844a25bd4a400caf35a9cea2b10551dce560b008c6c88b?mode=details), [4](https://mempool.space/tx/e3c07141024a392899f63cb1a4b0af3cfc1d4f1c8392f782157260a1ee7cb5c5?mode=details)|\n|P2MS 2-of-3 input|186|[1](https://mempool.space/tx/4e61be6c8aa02a925a44e4b3f714152b13afc2396058626323a4c9207887de3e?mode=details), [2](https://mempool.space/tx/10c61e258e0a2b19b245a96a2d0a1538fe81cd4ecd547e0a3df7ed6fd3761ada?mode=details)|\n||187|[1](https://mempool.space/tx/d64fd3cf492591c7e137282f9afd839b906ba2e0d3cb79fb303134ff1dac6122?mode=details), [2](https://mempool.space/tx/0caef51aabf89d93543c3eab9e5411b6442e8621cb5406955c065ed0bb684102?mode=details), [3](https://mempool.space/tx/2ec3f270fb8bc09d0d1c64292b81169535a661971db491e8ec95588fbbc58aa0?mode=details), [4](https://mempool.space/tx/e01bd476fe7843d22cc177ca0a58389a15002d001c54a4e9a5c7035fa78304bb?mode=details)|\n||188|[1](https://mempool.space/tx/a6045c11feb5dc3717c82bc5ad6c58e8e7be360586ed88cdb0b747bbdb50478b?mode=details), [2](https://mempool.space/tx/5bea28af51ba9b22ab2a0aff7a9f5d66582f9f63e031bc524dabd0b47784ed27?mode=details), [3](https://mempool.space/tx/949591ad468cef5c41656c0a502d9500671ee421fadb590fbc6373000039b693?mode=details), [4](https://mempool.space/tx/eb1d01bf611e77c2e756df5b60a5a5eb207e739fe1a15a06dd0a7b30c53bcbc0?mode=details)|\n||189|[1](https://mempool.space/tx/3eada0b84333a465fb6fab45d22ef78833c7676adc296527b2cb3e15eeb278e5?mode=details)|\n|P2MS 2-of-3 output|114|[1](https://mempool.space/tx/cd27c98d834dd96c4f16d16f33560d99a3a8805a255ef9d9007f803a07d5f457?mode=details), [2](https://mempool.space/tx/a598feac0939769f0f01af176730a0e6b4aafc348aa9928c24147643c16dc6c6?mode=details), [3](https://mempool.space/tx/9e4a7b5e824550dc59f994f3b02385f27280ee622be54a09f9b80fb36b847fc9?mode=details)|\n||210|[1](https://mempool.space/tx/6e2c5b6b2a926a7da2415ae55c701e83d6e7bc46bad9bc23b5f9c7ef1ae26998?mode=details), [2](https://mempool.space/tx/a8c76659481ff52b7c4477984e494fea7fbb8e95f22ad675f8130e4d5c56e9fc?mode=details), [3](https://mempool.space/tx/1180df8ad1bfab0ab43f9e57ecf7fd3eb4c5d5e3a96af2ecc51113c3e88fcfe1?mode=details), [4](https://mempool.space/tx/581d30e2a73a2db683ac2f15d53590bd0cd72de52555c2722d9d6a78e9fea510?mode=details)|\n|P2MS 3-of-3 input|258|[1](https://mempool.space/tx/e8ac451e7f47d566d4dd822a67fea2181ecfa7c7ba96d9faa63e2f6b26e55fd3?mode=details)|\n|P2MS 3-of-3 output|114|[1](https://mempool.space/tx/915b739cbfa4de4daefa3cd5beb37699158657587433ffb1a8f67bfc611de1fb?mode=details)|\n||210|[1](https://mempool.space/tx/2daea775df11a98646c475c04247b998bbed053dc0c72db162dd6b0a99a59c26?mode=details)|\n|P2SH 1-of-1 input|79|[1](https://mempool.space/tx/6a26d2ecb67f27d1fa5524763b49029d7106e91e3cc05743073461a719776192?mode=details)|\n||153|[1](https://mempool.space/tx/fc5cb2b8dc6a780962da85de00f06fbeea74f7f05e4d1b4d8b65c7e95c09d861?mode=details)|\n||184|[1](https://mempool.space/tx/953de54e4650b2b2b62395cf0179dd7c06ad0267563215d8b9322a4aa6a8560b?mode=details)|\n||185|[1](https://mempool.space/tx/beecaa6715406568534c4c539006cd3dd93b6bdf1bb2ee87f397411bc29d04e9?mode=details), [2](https://mempool.space/tx/c931f1aa9f0d211dca085342ec472e77b538b55980a2c7b0ff9fab9a20a9acd2?mode=details) (all)|\n||186|[1](https://mempool.space/tx/772117a7ae47bf1c9ad5fd15ff68189d2449bde021bb215b84e4c1816ca528be?mode=details), [2](https://mempool.space/tx/345e1d1e6932de7cea2d82c4e40dcff96dc8bfe1abb51ae2763491ae64e44026?mode=details)|\n|P2SH 1-of-2 input|186|[1](https://mempool.space/tx/abf327a94ef9d508e4e2062b692f6a990604377f388868ea14da760dfbdec8ac?mode=details), [2](https://mempool.space/tx/60fc84455f2dc0e14bd7f429c726dff6e328ba87b0805ad3d21a706116be24ba?mode=details)|\n||187|[1](https://mempool.space/tx/1cc1ecdf5c05765df3d1f59fba24cd01c45464c329b0f0a25aa9883adfcf7f29?mode=details), [2](https://mempool.space/tx/c7d8845045a4f3bd998bc1dbe63928f1e22029e5b056c00a56c2e478a2a08960?mode=details) (3rd), [3](https://mempool.space/tx/2c3936eee0dc52d1ceae0773e8076c492cee9d8f127086a7eb0018ca2278d851?mode=details), [4](https://mempool.space/tx/2f62442f8b84d9b67e19ee6d5744a08962e671a68f33106d92d8d2a2dc4b32b5?mode=details)|\n||188|[1](https://mempool.space/tx/4d8eabfc8e6c266fb0ccd815d37dd69246da634df0effd5a5c922e4ec37880f6?mode=details), [2](https://mempool.space/tx/9d0e7bec6822bb07f16ff3478f03566ec1a07e28e72f216b0db931c70d5cd9ce?mode=details)|\n||252|[1](https://mempool.space/tx/6db2872953e85f9a929ca527f435d1e366df178d75a84eaa2bf771aecb93e4e5?mode=details)|\n|P2SH 2-of-2 input|260|[1](https://mempool.space/tx/f076f49cc39dc8995e407ff1fb1768ba58a0567d7e6a2b88adbe193d7ec781a5?mode=details), [2](https://mempool.space/tx/12a8a2c862df43c0738a250c0e53ea3c0f5b3bab545c58048f343a8047c07ab2?mode=details)|\n||261|[1](https://mempool.space/tx/5b59ff5e3b40d06a0bba02d365d7d6ddeee0c7a420105a64a2e3cd5ef5fcbf07?mode=details)|\n||326|[1](https://mempool.space/tx/bd1715f1abfdc62bea3f605bdb461b3ba1f2cca6ec0d73a18a548b7717ca8531?mode=details), [2](https://mempool.space/tx/245e74ce5597d894d2eb571ed011e14fa49683559eb276c29e41b09fe08b23be?mode=details)|\n||327|[1](https://mempool.space/tx/28ed0cab5a3438f79b0cbeae47616feb4f0589cbadbddb1bb3061c1c730463c7?mode=details), [2](https://mempool.space/tx/e4a4f8977b0b01014071e7421b441e4fc19bcbb6fb4f51aea3377d3183eef933?mode=details)|\n||328|[1](https://mempool.space/tx/5faff40fb4d063180c1cdef92620afdd1f3a11470e92fe07a99c66ba1fd4e09a?mode=details)|\n|P2SH 2-of-3 input|293|[1](https://mempool.space/tx/c7d8845045a4f3bd998bc1dbe63928f1e22029e5b056c00a56c2e478a2a08960?mode=details) (1st), [2](https://mempool.space/tx/812e7ba6e86c294de7918f0846b85db87406a1f7ea565abacd7fe878973caf05?mode=details)|\n||296|[1](https://mempool.space/tx/968a692ab98b1f275c635c76be003ab1db9740d0b62f338b270115342ca42f5b?mode=details), [2](https://mempool.space/tx/c7d8845045a4f3bd998bc1dbe63928f1e22029e5b056c00a56c2e478a2a08960?mode=details) (4th), [3](https://mempool.space/tx/e375c86a1aeb033f4d1de3081904d970025be275b891e7b867feae1f56e1cd59?mode=details)|\n||297|[1](https://mempool.space/tx/62d677e60ad17671704428e0b436ec65eaeae5890401f0c7e7168ddb5d22213d?mode=details) (all), [2](https://mempool.space/tx/56d0f290391efc4be20eef2dd1c88b8affbb4641b71d67f941967bff884ccc21?mode=details)|\n||298|[1](https://mempool.space/tx/c7d8845045a4f3bd998bc1dbe63928f1e22029e5b056c00a56c2e478a2a08960?mode=details) (5th), [2](https://mempool.space/tx/7286ae6229cfaeeeed5d7fc11bda032f07f8261f3b8d8d293e60ccf659aad011?mode=details)|\n||329|[1](https://mempool.space/tx/2d33d9c70f157ed768c5df6ab0957ea2577330e5f829e0a31dfc76f7668b0818?mode=details)|\n|P2SH 2-of-4 input|331|[1](https://mempool.space/tx/21b095a72ebc95eb0711ff9a96bcf81084a3b7588801be1ef739f4039c621a56?mode=details)|\n|P2SH 3-of-4 input|530|[1](https://mempool.space/tx/ba1ff5cd66713133c062a871a8adab92416f1e38d17786b2bf56ac5f6ffdfdf5?mode=details) (1st)|\n||531|[1](https://mempool.space/tx/ba1ff5cd66713133c062a871a8adab92416f1e38d17786b2bf56ac5f6ffdfdf5?mode=details) (2nd), [2](https://mempool.space/tx/552fe198d7aca7ca9f7590cb2df13e0cb56db8bbc354f1af9ea92ab0e3dbc301?mode=details), [3](https://mempool.space/tx/7a7c85e129b3f3d732effb4c4bbe526a968ee5d16e4f63d9cadffdf5efc23eb9?mode=details) (1st)|\n||533|[1](https://mempool.space/tx/7a7c85e129b3f3d732effb4c4bbe526a968ee5d16e4f63d9cadffdf5efc23eb9?mode=details) (2nd)|\n||534|[1](https://mempool.space/tx/ba1ff5cd66713133c062a871a8adab92416f1e38d17786b2bf56ac5f6ffdfdf5?mode=details) (3rd)|\n|P2SH 2-of-5 input|364|[1](https://mempool.space/tx/350c4df8d91e07f788e23e7e160ec9684571f9c9770e32b1e64de146c0e6c2cb?mode=details)|\n|P2SH 3-of-5 inout|436|[1](https://mempool.space/tx/5d6787b87be7cd240dc4de5e7e5fc048670618bec31022a5b8c04bcc45f9952c?mode=details), [2](https://mempool.space/tx/fd8bde216ab9dbe33e9087202a4d1b70283e1369303d5ef5b52e11e19c79c490?mode=details)|\n||437|[1](https://mempool.space/tx/ad76725fe3a6f4d44c8502cd616eb7b097223ea8d0058aec86874e656437c3f3?mode=details), [2](https://mempool.space/tx/6ff7684d4c87299f5977f22b17c32042e818069f8ea384792d95a760edce8d0b?mode=details)|\n||438|[1](https://mempool.space/tx/2c2ef42751873bcea697ca26ac23b032f7c47aaa1575c32576c0532fbaee2d60?mode=details)|\n|P2SH 8-of-9 input|936|[1](https://mempool.space/tx/99a7b8f71ada50551db3f1b3e9b503b5bbff2d0b16cf96c86f8d0ed84d44ae7e?mode=details) (3rd)|\n||938|[1](https://mempool.space/tx/c705ec760f828063461630048d7e372005a6dc9cba054b1524bf469eb3117de4?mode=details), [2](https://mempool.space/tx/99a7b8f71ada50551db3f1b3e9b503b5bbff2d0b16cf96c86f8d0ed84d44ae7e?mode=details) (2nd)|\n||939|[1](https://mempool.space/tx/99a7b8f71ada50551db3f1b3e9b503b5bbff2d0b16cf96c86f8d0ed84d44ae7e?mode=details) (1nd)|\n|P2SH-P2WPKH input|90.75|[1](https://mempool.space/tx/08e7459dc7bdeca616755d0a438c56a7c2c9ef1a8cb54218dab70b4b5a0a02b1?mode=details) (2nd), [2](https://mempool.space/tx/815f14f2768c1a95f6be3a217b45d7c361c96bf63a7a56c0deaf9fccf8bd278c?mode=details)|\n||91|[1](https://mempool.space/tx/08e7459dc7bdeca616755d0a438c56a7c2c9ef1a8cb54218dab70b4b5a0a02b1?mode=details) (1st), [2](https://mempool.space/tx/d1f162c61cefde514eb1c247098926be0203ff7d5d792a96aaf7d0058f32c0e9?mode=details), [3](https://mempool.space/tx/cdfb6ea52db14956e65783492f06605ac7a8ae0d2b4bd2c160ede39efc271737?mode=details), [4](https://mempool.space/tx/b0c35dc4e6189c1f5b6192a1823e0d6c52b6ec4a4796371de3e16acd28eb8020?mode=details)|\n|P2SH-P2WSH 1-of-1 input|104|[1](https://mempool.space/tx/290d04390c6a085f7277f6a30b363974d61ef59a76040697f02d7e0f84026f58?mode=details)|\n|P2SH-P2WSH 2-of-2 input|130.75|[1](https://mempool.space/tx/ef3e259cc1e853f4ca4f6c5da3c6382b688254ff00fd3f70cb65e6c8e137c067?mode=details), [2](https://mempool.space/tx/c76bb80b0d2816fcf53628cc8c5ad6827bee1347116f6de571b0d26f1dc89245?mode=details)|\n||131|[1](https://mempool.space/tx/ef3e259cc1e853f4ca4f6c5da3c6382b688254ff00fd3f70cb65e6c8e137c067?mode=details) (1st)|\n|P2SH-P2WSH 2-of-3 input|139|[1](https://mempool.space/tx/ccba4d6a4745d99f0a4946610387f86046a17852fc073fb65d837407a25cfd5c?mode=details)|\n||139.25|[1](https://mempool.space/tx/23e2e8453fd9d00fc38833e996e042c35d60f5ac2196a2462a44930323694c17?mode=details), [2](https://mempool.space/tx/d56ae8052711ac81cb68a0ccf340f3a1f818cb315426253cfa67066323ec1804?mode=details), [3](https://mempool.space/tx/c9a96aad2b8fb2b65c2c124d1c6c4d2d795492e8baaeab8bc555c61a244b3cb5?mode=details), [4](https://mempool.space/tx/d486aeb0e59181fd1addb4aa69ce04d638188fc1125c424899267e8ed6a8af24?mode=details)|\n|P2WPKH input|67.75|[1](https://mempool.space/tx/04be18177781f8060d63390a705cf89ffed2252a3506fab69be7079bc7ba9410?mode=details) (1st & 4th), [2](https://mempool.space/tx/9437487b60fbd26b2b4a4219870813f634e2a9e6ab83b33f0c604d3ce45899e7?mode=details), [3](https://mempool.space/tx/e7e878af39fd2135ddb31d01d1c926bdec3816a25afbde346c61dfbafff2259a?mode=details), [4](https://mempool.space/tx/e7e878af39fd2135ddb31d01d1c926bdec3816a25afbde346c61dfbafff2259a?mode=details)|\n||68|[1](https://mempool.space/tx/f91d0a8a78462bc59398f2c5d7a84fcff491c26ba54c4833478b202796c8aafd?mode=details), [2](https://mempool.space/tx/04be18177781f8060d63390a705cf89ffed2252a3506fab69be7079bc7ba9410?mode=details) (2nd & 3rd), [3](https://mempool.space/tx/b7c397a17f951fdcfb97785101c654214df005c321c1bfcd778c0c851a693436?mode=details), [4](https://mempool.space/tx/ce00d01157ca069278ea526753de326d26ca9d09c153621f24ae6c645a081c3d?mode=details)|\n|P2WSH 1-of-1 input|69.25|[1](https://mempool.space/tx/cab75da6d7fe1531c881d4efdb4826410a2604aa9e6442ab12a08363f34fb408?mode=details)|\n|P2WSH 2-of-2 input|95.75|[1](https://mempool.space/tx/05b0c9a8c82398b41734812fead513c184b1095e6fd67f816f99bde8ffb8eea4?mode=details), [2](https://mempool.space/tx/b2c41a231ec476f6a53355b6335098bdcc7bbad1251707f97d07d42807199174?mode=details), [3](https://mempool.space/tx/60489dce11eb29d78258c0d6f489126d3ece19cdc9c9421754054fd1c5ca2c19?mode=details) (1st), [4](https://mempool.space/tx/34f01d2ddfda48296fe981297a5143a65ed419332ebb30f77435eda7ac571658?mode=details) (1st)|\n||96|[1](https://mempool.space/tx/60489dce11eb29d78258c0d6f489126d3ece19cdc9c9421754054fd1c5ca2c19?mode=details) (2nd)|\n|P2WSH 2-of-3 input|104|[1](https://mempool.space/tx/5b8c06170ecd4a3ae758a18af8cac103d08aff2dee9bfa421e169ca2ddba1f62?mode=details), [2](https://mempool.space/tx/bbc2d62dd356f704c642fef9d351510c6cf1de8fa9373c64995d87dbf938f54a?mode=details), [3](https://mempool.space/tx/469e3c9b03b683d290d0a58a3c2670c7f23351ce3d64a78e4ccd869d789781a9?mode=details), [4](https://mempool.space/tx/349ca8cbaaefc388dfe2429deeff88a91f1e729207b4ae8a4dd8efbb6243bf3b?mode=details)|\n||104.25|[1](https://mempool.space/tx/99fd12ebc5e936dfbc39a3b36286bcd08b31d654077f3dc0bf141fb6d74443b8?mode=details), [2](https://mempool.space/tx/469270d9c435a3ffd7131d8da850dc79871243fd3c2f32762a567f3259a2f983?mode=details)|\n||104.5|[1](https://mempool.space/tx/8d9628e3c648ccd86e057d564aa122277ac683224e06c13acf70641df114f386?mode=details)|\n|P2WSH 3-of-5 input|139.25|[1](https://mempool.space/tx/d7786e4f2ea4170a51429c26793a31f766bb4461062cc87e8093ab82bae21a71?mode=details), [2](https://mempool.space/tx/d357fdcf5b62c07e9392abf3a8db522bf00ad249bbc77a8f417686dc69f0b024?mode=details)|\n||139.5|[1](https://mempool.space/tx/c2bca3030bede5a3a9eed14b2379215580a5b01b2441a1f7263326ea902cb07d?mode=details) (all), [2](https://mempool.space/tx/8fbb0a84595272a857243b8d7a449f7a613ca08064de6e1a6c9bd7d93a3e2713?mode=details)|\n||139.75|[1](https://mempool.space/tx/c3f71e430ff3461935cfb433a9d4c612dca7a7b2724a37743be3d36912538f73?mode=details)|\n|P2WSH 11-of-15 input|397.25|[1](https://mempool.space/tx/3adffe587c43f5821c874bc1455ed987c6e0804504c9e45714152cb64d886f56?mode=details) (3rd)|\n||397.5|[1](https://mempool.space/tx/d87591f5eae8c991d6bc1041075be18c1bd69e92c03dc3f19e41533a200e6c5d?mode=details), [2](https://mempool.space/tx/7bef636fecb54d7144b95e1793bc41acfb112784aa30e61125ccaf99141969e3?mode=details)|\n||397.75|[1](https://mempool.space/tx/c635c921efb1bb6e703b23a091f8480d9a19b2892bb1b002a020b153082d04e3?mode=details), [2](https://mempool.space/tx/3adffe587c43f5821c874bc1455ed987c6e0804504c9e45714152cb64d886f56?mode=details) (2nd), [3](https://mempool.space/tx/7450d435f6e68883755796f2d55dc2ab4de14b8a51521d7d219cb0f98f6a3975?mode=details), [4](https://mempool.space/tx/7b87d6b87189c80c1f06b9593f79ac08d8ab48e57b010751ff9b0dc01f055be5?mode=details)|\n||398|[1](https://mempool.space/tx/41a2e5f7014eda1cb43d3312cfd3c6b5c1412396837e861ed62feb6c13c55f7b?mode=details), [2](https://mempool.space/tx/6c9e08325d575e6fd96298ee80a943598fd1c000a3dcbcb4ddc6a04b92db92fd?mode=details), [3](https://mempool.space/tx/bbe6bba723389103fdfa851772397e9947b8726f9ddc85fc908801ec2542ad5b?mode=details) (all), [4](https://mempool.space/tx/141001a96df50d2b7946494a22a2c3567c8d6b3c3ce80e03b832ffc9353405e8?mode=details)|\n||398.25|[1](https://mempool.space/tx/17f56da0f900e73b1521a861f5f0c263a6737ddb3f23bd007c672b2820fe3e1f?mode=details), [2](https://mempool.space/tx/c149f1b7c785576651fcdd43b9cb121d1adb86b58fb30e6e670c75a7c2ea49e9?mode=details), [3](https://mempool.space/tx/fc4c4c62f3e47f1c887c943f67dc250f5380b506bb601c2201eff0fe5cc2f1c1?mode=details), [4](https://mempool.space/tx/3a668752bbad4fea7d0359b2d6ee128e1413d0c40d1915fc9cde01eb61c0f201?mode=details)|\n||398.5|[1](https://mempool.space/tx/3adffe587c43f5821c874bc1455ed987c6e0804504c9e45714152cb64d886f56?mode=details) (1st), [2](https://mempool.space/tx/6429fba1f1861dcdff9c28583477a77b2e4df7083b1146383cdd10005da48815?mode=details), [3](https://mempool.space/tx/04633165b57b97e5053fb52ecaa9c6e895de86ffb25076fbbd8b614d07bcf9a4?mode=details), [4](https://mempool.space/tx/2bcd398a7573d77c66fd10f5295789ff3dd9f731d1387f5446eb4dba4d3bf6f9?mode=details)|\n||398.75|[1](https://mempool.space/tx/de9e41c382c8bc93392b077e162fee94514b2870aa0528796b0d95b892f63cdd?mode=details)|\n|P2TR input|57.5|[1](https://mempool.space/tx/52176ef96d6b689ca63ceaa9b8f40fce116d0a050eb1572c4aadf623e6615a16?mode=details), [2](https://mempool.space/tx/b50b363b5a0ceed87b7c30609051111cfdaf9be80b676182ae16abc876f01fb1?mode=details), [3](https://mempool.space/tx/039ed9773a76d5ee236c017aa741dd037e6a71f1af5a4b296b83b0af25f1a171?mode=details), [4](https://mempool.space/tx/57c6dd00067e9b26d83558c1522e975137ab434829437c06e8542d2d3489c27d?mode=details)|\n||57.75|[1](https://mempool.space/tx/3fb6e444066b27d93857323325e26ffadb1e4bb9b9d77fbfea93b0b30fed223b?mode=details) (all), [2](https://mempool.space/tx/f37c9f0bc03c418b0e12900e34c666df60e97fb787b1fb589895d1ec51289a7e?mode=details), [3](https://mempool.space/tx/f3af26465c088e9c6350010bc393930612a71c72861cfa51a21e76c57eff21ba?mode=details), [4](https://mempool.space/tx/f3af26465c088e9c6350010bc393930612a71c72861cfa51a21e76c57eff21ba?mode=details)|\n\n\n# CLOSING BIT\n\n\nTools used :\n- Mempool Space [Googles](https://mempool.space/docs/faq#how-do-mempool-goggles-work)\n- [LearnMeABitcoin Explorer](https://learnmeabitcoin.com/explorer)\n- [Blockchair Output](ttps://blockchair.com/bitcoin/outputs)\n- [Lettercount](https://lettercount.com)\n- [Bitcoin Search](https://bitcoinsearch.xyz)\n- [Unchained article](https://unchained.com/blog/bitcoin-address-types-compared)\n- [Bitcoin Optech Calculator](https://bitcoinops.org/en/tools/calc-size)\n\nAight, i can't get any example of Pay-to-Anchor TX on mainnet yet. But who's gonna stop me from mentioning it ? Here are several examples of P2A TX on Testnet4 :\n\n|As output (receiver side)|As input (spender side)|\n|:-------------------------------------:|:------------------------------------:|\n|[1](https://mempool.space/testnet4/tx/cedcdf44fba328c4da7077cac914b490a1af40acecf74ca666af6b0313c8e613?mode=details#vout=1)|[1](https://mempool.space/testnet4/tx/4a89d5d1568b5cbcb4118559cb65d2357657d361a41cd96b14e74ed3d065975c?mode=details#vin=0)|\n|[2](https://mempool.space/testnet4/tx/7a364f9722e1319527126ee5ea1e6c1bf2fe88273be84b58881d4ae69002f354?mode=details#vout=1)|[2](https://mempool.space/testnet4/tx/b925d977171abcb89af68ed83fc77dd465a570601f6bfa95a877126374e230fc?mode=details#vin=0)|\n\nNow, if the law of TX size calculation on Testnet4 is the same as Mainnet, then a P2A script would have 13 vb output size or 41 vb input size. CMIIW tho, i only sampled one address i found [here](https://xcancel.com/realtbast/status/1834213774674247987).\n\nHistorically, we've gotten a new address type every 4 years (P2SH 2012, SegWit 2017, Taproot 2021), but given the slow adaptation of P2TR and long process of development, we are not gonna get P2QRH next year. Read the documentation [here](https://github.com/cryptoquick/bips/blob/p2qrh/bip-p2qrh.mediawiki).\n\n[^1]: https://bitcoin.stackexchange.com/questions/98810/whats-the-blocksize-limit-after-segwit-and-how-do-legacy-nodes-deal-with-segwit \N 814 \N 403996 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 22.8371800959527 0 \N \N f 1542272491 \N 14 122258397 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 442704 2025-03-18 18:54:11.676 2025-03-29 22:39:47.363 I'm not the brightest bulb out there, help me change it. I'm not *that* knowledgeable about anything, really... Naturally, that makes me a pretty boring partner in terms of socializing and conversations.\n\nThe only topics I can have a conversation about is Outdoor-gear and Bitcoin, which would be fine, if only the other side would be interested or knowledgeable about these two topics...\n\nIn order to change this, I'd like to start reading a healthy amount of books, in no specific order, but on a multitude of different topics.\n\nI've written a post already where I'm asking about book recommendations on the topics of "Relationships" and "Parenting", for which I've received some good recommendations, but what other topics would be interesting or handy to know about?\n\nI'd like the books to be on the shorter side in terms of pages, since I'm thinking about taking the books along with me while going on an overnighter in the woods or something akin to that, it's a hobby I'd like to start, too. I'd also like to be able to read a book a 2d or 3d time, too, without it taking too long.\n\nI've got no particular "must-have" topics and am hoping for you guys to recommend me some topics that wouldn't hurt to know a bit about.\n\nThanks in advance. \N 714 \N 442704 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 22.1623669647122 0 \N \N f 301831601 \N 2 237617431 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401527 2025-02-13 05:41:29.92 2025-03-29 22:39:47.363 Stacker Beep: a command line utility to be informed about new SN content Sunday evening pet project:\n\nhttps://github.com/dtonon/stacker-beep\n\nUse this tool to be informed, with a _beep_, about new contents published on Stacker.news. It supports filtering by authors, topics, domains and territory.\n\n![screen.png](https://m.stacker.news/8479)\n\nUseful for those who need to break a small SN refresh addiction :)) \N 782 \N 401527 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 15.3212190448747 0 \N \N f 234531916 \N 2 231887405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404014 2025-02-15 13:10:36.636 2025-03-29 22:39:47.363 Beyond Jobs: Vision for Classifieds & Ads on SN with powerful Nostr Integration [Step](https://stacker.news/items/274643/r/AGORA) by [step](https://stacker.news/items/439844/r/AGORA), slowly slowly, SN is going into the nostr integration path, and we are really looking forward to the more implementations coming. The fact that [polls now can be cross posted](https://stacker.news/items/448546/r/AGORA) on nostr is a big deal. At least for us here in the ~AGORA! We are having some engagement onn nostr, more than here, people is liking, zapping and reposting @AG0RA posts, old ones and new and we are wondering if it's maybe worth to reactivate it. Let's see how we go...\n\nWe all know about nostr, no need to be repetitive. The internet is already filled with over 3 millions search results about it... Check it out. The great deal with nostr is that enables to post classified listings in the same way you publish an article or a comment. Therefore, there's a big difference on content type between articple comments and classifieds listings. We gonna explore why Ads could be more successful than jobs and hoe it could all look inside SN universe.\n- - - \n## `Jobs are Dead`\nSN atm only allows jobs to be posted in a centralized and controlled manner, only on one territory. Why? ~Jobs is one of the first territory, it actually was there before territories were a thing. Job listings are somehow related with ads, but in reality it is a totally different industry. An industry related with the old fiat mentality, a slavery machine that has really little to do with the bitcoin community, open source and collaboration. Defining Ads-post as you'll read, jobs could be crossposted as listings into nostr too, and might they will lose the meaning and value of being published as per se here on SN. What we are witnessing is exactly that... ~jobs here in SN are dead, [like](https://stacker.news/items/448546/r/AGORA?commentId=448997) @ad: we wish both a good R.I.P. at least for now, you never know they might resurrect for Easter!\n\nTherefore, the dream of having an [Ad-post](https://stacker.news/items/413385/r/AGORA) has already been discussed, especially with @supratic as a variation of the job-post type. This post is the continuation of the idea that, is evolving to bring it all together, connecting the dots and help us to share this utopia with the hope that someone will pick it up and submit a PR to implement the functionality into SN...\n\nAs code still a mystery for us, even we tried to navigate the repo, and confirm we are damn far far away from being comfortable duplicating that [`job-form.js`](https://github.com/stackernews/stacker.news/blob/master/components/job-form.js) to create an `ad-form.js`. And our guess is that the implementation needs to go much further than simply that, because -- and not only-- the nostr integration.\n\nWe'll continue then experimenting with what we know and can do: we've been playing around and posted whatever item offered on our [merch store](https://agora.ftp.sh/) into nostr with various clients. Sometime successfully, others not… let's focus on the good experiences:\n- - -\n## `C-ORACLE`\nThe first one getting my attention a while ago was **CORACLE**. It has a _MARKET_ tab just there, available to anyone to start scrolling down a multitude of listings. The good fact, in this case, is that the products are pre-filtered by default, showing only those posted by nostriches you follow. Isn't that an ingenious idea? It is, so the AGORA shop there look's something like this:\n\n![CORACLE Market](https://m.stacker.news/19293) You can have a look from [this link](https://coracle.social/people/nprofile1qydhwumn8ghj7un9d3shjtnjv43x2mrzv9ek2tnnd96x2tcpr9mhxue69uhkummnw3ezumr0vdskc6r0wd6zuun99uq32amnwvaz7tmjv4kxz7fwv4khyefw0puh5tcqyzx6cy3djtq6qzm559kza69ukhsdzuayecmc032slan954c0exxnwgks2jc)\n- - - \n## `Shopstr`\nSecond-best option we found surfing the nostr wave was **Shopstr.store**. Really intuitive and clean interface that easily allows anyone to dive into the multitude and variety of items that people are randomly posting around the globe! In this case, no filters, you just scroll down chronologically, util the genesis. You'll be amused by the variety of products one can find there (together with many test and scams). Our merch, as it was published as `kind 30402` showed up like magic without adding any input! Just had to click on **My Listings**\n\n![Shopstr.store/AGORA_SN](https://m.stacker.news/19292) You can check our profile from [this link](https://shopstr.store/npub13kkpytvjcxsqka9pdshw3094urgh8fxwx7ru258lved9wr7f35mspal584)\n- - -\n## `Listing Ads on SN`\nSo, how those listings could look in the AGORA? Until now these have been great findings and funny tests. But the aim of this post isn't showcasing [GoodStrs](https://stacker.news/items/153909/r/AGORA) and [magicwebstores](https://stacker.news/items/222527/r/AGORA) here and there. Indeed, we do have a need to exchange and trade stuff, and the goal is to help us all understand how we could envision Ads/Classifieds embedded into SN, for the good and the bed ... and the ugly they might look ;p So we use the tools we've on our side and that's the results we got playing with a bit of HTML and CSS:\n\nThis could be the ~AGORA territory with [featured image](https://stacker.news/items/376919/r/AGORA) and [image gallery](https://stacker.news/items/376937/r/AGORA) implemented\n![18600.png](https://m.stacker.news/19291)\n\nAnd this could be the user profile with a dedicated **ads/classifieds** tab\n![18601.png](https://m.stacker.news/19290)\n\n- - - \nIt's kind of satisfying to check how it could look. All these are obviously just ideas (for now), we are happy to sharing here to know what you all think about it. This exercise give us opportunity to share our vision not only for the ~AGORA, but also for SN as a powerful tool that --as we know, enable to share knowledge, but-- why now, could enable stacker to _trade items and share and list any arbitrary product, service, or other thing for sale or offer_. All leveraging the power of nostr [NIP-99](https://github.com/nostr-protocol/nips/blob/master/99.md) metadata to make them useful to the entire world.\n\nAnd just to be clear, don't want this to be a specific feature for the ~AGORA like the job-post is for ~jobs. Emphatically, with the multi-territory cross-posting coming soon, stackers will be ideally allowed to post their Ad-posts on [multiple territories](https://stacker.news/items/341963/r/AGORA) at the same time. The ~AGORA only want to be the territory that collect them all in an organized and classified way, for other stackers and curious visitors to easily find what they are looking for. There are already [some ideas](https://stacker.news/items/413488/r/AGORA) on how it will come up together with the sub-territories implementation. **Stay humble** (tuned) and **stack sats**, because at some stage you might need to spend them. Just be careful and don't spend them all!\n\nThanks for reading until here, and if you are an entrepreneur, merchant or seller, please share your insights below. I'd love to hear from you.\n\n\n- - - \n## MAY EVERY DEAL ₿RING JOY TO YOUR ~AGORA AD-VENTURES!\n \N 14152 \N 404014 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.3239028505798 0 \N \N f 473436456 \N 4 240109277 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 416798 2025-02-25 21:10:47.996 2025-03-29 22:39:47.363 95% of zaps are from custodial wallets. We can do better \N https://twitter.com/benthecarman/status/1638006709741289474 17455 \N 416798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.82448646154759 0 \N \N f 105938914 \N 2 189914177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 402381 2025-02-13 17:52:57.491 2025-03-29 22:39:47.363 An updated BIP Process · Pull Request #1712 · bitcoin/bips \N https://github.com/bitcoin/bips/pull/1712 7119 \N 402381 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 27.9093800401946 0 \N \N f 15217779 \N 1 137868478 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451333 2025-03-24 14:00:36.353 2025-03-29 22:39:47.363 Indranet Progress Report It has been a while since I made a post about the work that occupies the centre of my mind and the majority of my days, the month of May was pretty rough for me mentally, and progress was a bit slow.\n\nI am part way into integrating the use of libp2p to handle all the peer to peer connections and such, and I now need to have a distributed database that peers use to share information about their addresses, services, and hidden services they can intermediate to start a hidden service connection.\n\nI was completely oblivious to the way one implements these things, even though I had several times previously looked at parts of the things, I wasn't applying them in code so I didn't remember.\n\nFortunately it's pretty simple. Libp2p has a very nice, advanced gossip system that forms sparsely connected graphs with low latency and high message volume efficiency, and there is a simple framework for setting up these gossip networks that basically hides all the complexity and your code simply reads and writes to it as though it was a serial console same as printing to the terminal or sending data over the network. Go is pretty sweet like this, almost every kind of connection in code can be addressed in the same way - open, read, write, close. \n\nI have got all the other pieces ready, the message types, some of the relay logic related to these messages (from the hidden service protocol prototype), I just needed the mechanism for propagation, and the chat examples in the libp2p Github repository are short, sweet and appear to be the exact thing I need, each node writes a message, and every other node eventually receives it.\n\nWith the database working, the gates open up to replicating all the protocol tests from their channel simulator form to a localhost-only, and then with all the protocols proven, setting up the app to launch, much of this part is sketched out pretty well by my colleague and sponsor.\n\nSo, I think realistically I will have finally made two separate computers connect via this way by the end of this month, and maybe by the end of august the testnet will be running.\n\n## Support the Project:\n\nI am on a very minimal income and extra funds will help a lot with some of the infrastructure and keeping all the workers healthy. If you want to send some sats, you can always send them to this account or you can use my Wallet of Satoshi LNURL wisevirgo03@walletofsatoshi.com - thanks in advance.\n\nIf you have skills in some area of p2p and LN programming, in Golang, and are looking for something interesting to contribute to, you are most welcome to pop into our telegram https://t.me/+lMrozLWIho1mYWY0 - I expect I will need to explain some things, give a primer on the layout and of course critique and analyse any of the original algorithms in it for security and performance problems.\n\n## Thanks to everyone who has supported this project so far.\n\nHope to see you in the Telegram chat soon! \N 20811 \N 451333 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 2.72417980437314 0 \N \N f 43067224 \N 1 165838926 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450956 2025-03-24 10:18:45.042 2025-03-29 22:39:47.364 Hey noobs and shitcoiners: stop searching on YT for Bitcoin videos If you really want a curated Bitcoin content, for educational purposes, STOP searching on Youtube garbage!\nGoogle doesn't want you to see the REAL Bitcoin content!\n\n### GO HERE: https://bitcointv.com/\n\nThis is the most comprehensive database of Bitcoin videos. \N 1141 \N 450956 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.5433719489542 0 \N \N f 315695938 \N 2 117286065 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436514 2025-03-13 15:52:10.899 2025-03-29 22:39:47.364 Jordan Peterson Bookclub—We Who Wrestle With God: Morality and Social Order Earlier _We Who Wrestle With God_ posts: \nhttps://stacker.news/items/782630/r/denlillaapan\nhttps://stacker.news/items/787035/r/denlillaapan\n\n---\n\n\nMoral orders are not arbitrary. \n\nWe talked about this briefly in the earlier commentary posts ("[The Prophets of Baal Were Executed](https://stacker.news/items/787035/r/denlillaapan)". One cannot believe simply whatever one wishes to believe, _and_ hope to successfully live out one's life. \n\n\nIn July, I wrote a thing for the [Mises Institute](https://mises.org/mises-wire/anarchy-uk) (shout-out to Jordan Bush and the Thank God for Bitcoin crowd): \n\n![](https://m.stacker.news/67226)\n\nThis allegory has stayed with me for months: **freedom isn't libertine or absence of obstacles, but _rules pertinent to one's nature_.** "The validity of a given worldview," writes Jordan Peterson in the book, "is therefore anything but arbitrary. Instead, it is dependent on or mirrors **the accuracy with which it reflects the natural, social, and psychological world**."\n\nI thus found p. 18 to be crazy powerful. Here's the full page, in all its Nietzschean beauty: \n\n![](https://m.stacker.news/67228)\n\nMan’s dominion over the earth must be SUSTAINABLE; “must make what is good still better.”\nTHIS BIT (on p. 9) resonates: \n\n![](https://m.stacker.news/67227)\n\n\n\n\nI remember Allen Farrington talking about this but applied to finance/companies, in his ["Capital in the 21st Century" piece](https://www.axiombtc.capital/capital) from earlier this year: Profit, not merely in an accounting sense but in _increasing capital_ is needed because it's the "only sustainable way" to run a business. \n\nSomething similar is going on here: For humans—and humanity—to flourish sustainable, we must find/discover/uncover _good rules_ that fit _our human nature_. Reality matters. \n\nI'm pretty sure we'll be presented with a few (if not, check the previous two books—lol!), and in the first 50 pages we get quite a few singers about men and women and their various domains (https://stacker.news/items/801327/r/denlillaapan?commentId=801615). Nothing like controversy, eh. \n\nAnyway—enjoy away, Stackers!\n\n---\n\nP.S., sorry these posts are taking _forever_. The book is dense _af_ and I, like all you blessed souls, have other superseding commitments. \nAlso, there's no rush; these 500 pages will take the time they take. \n\n \N 19777 \N 436514 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 12.2056371932091 0 \N \N f 298983946 \N 2 21069138 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:08:41.174 f \N \N \N 0 0 0 0 2 0 0 457180 2025-03-28 09:43:21.184 2025-03-29 22:39:47.364 Books And Articles Newsletter, Issue 4 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. The winner of our second Writing Contest is….\n\n@UcantDoThatDotNet ! Congratulations! I will be forwarding you the sats earned by the contest post, which this week totals 3632.\n\n\n\nIn other news, we have a new blogger. @CyberCrypto has begun posting about his job search. You can follow him through the link below.\n\nStacker @Ratel announced that they are publishing the first Bitcoiner Super Hero Comic Book. Check it out [here](https://stacker.news/items/434097).\n\nWe also have a second entry in My Bitcoin Journey, posted by @brandonsbytes, which made one of the Top Posts Of The Week.\n\nBe sure to check out @Se7enZ ‘s second Stoic Book Club [post](https://stacker.news/items/429509) on Meditations, by Marcus Aurelius.\n\nWell, that’s it. I hope everyone has a great week.\n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [Discuss The Parable About Bricklayers](https://stacker.news/items/432517) by @cryotosensei\n\n- [Found Out My Wife Has Cancer Diagnosis, Part 2](https://stacker.news/items/434440) by @hodlpleb\n\n- [Discuss This Quote, Test Post](https://stacker.news/items/428900) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/435905) by @brandonsbytes\n\n- [Weekend Book Recommendations](https://stacker.news/items/428509) by @sn\n\n\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n## Some Recommended Older Posts \n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar, Chapter 1](https://stacker.news/items/419498) by @jbschirtzinger\n\n### Book Reviews\n\n- [Zen And The Art Of Motorcycle Maintenance by Robert M. Pirsig](https://stacker.news/items/383302) by @carlosfandango\n\n- [The World’s First Bitcoin Fiction Anthology](https://stacker.news/items/347735) by @KonsensusN\n\n- [Man’s Search For Meaning](https://stacker.news/items/390069) by @carlosfandango\n\n- [The Sovereign Individual](https://stacker.news/items/427201) by @carlosfandango\n\n- [Neuromancer](https://stacker.news/items/401761) by @Scoresby\n\n- [Elric Of Melnibone](https://stacker.news/items/389474) by @Scoresby\n\n- [The Shockwave Rider, by John Brunner](https://stacker.news/items/418728) by @Scoresby\n\n- [Human Action](https://stacker.news/items/399897) by @Undisciplined\n\n- [Robert Jordan’s The Wheel Of Time: Books 1-3](https://stacker.news/items/416511) by @Undisciplined\n\n- [A History Of Religious Ideas #1](https://stacker.news/items/420220) by @Se7enZ\n\n- [A History Of Religious Ideas # 2](https://stacker.news/items/420192) by @Se7enZ\n\n- [A History Of Religious Ideas #3](https://stacker.news/items/427941) by @Se7enZ\n\n- [Nova, by Samuel R Delaney](https://stacker.news/items/427682) by @Scoresby\n\n- [Blood Music, by Greg Bear](https://stacker.news/items/436158) by @Scoresby\n\n### Discussion Posts\n\n - [Anyone Have Tips For Starting A Blog/Newsletter?](https://stacker.news/items/407449/r/siggy47) by @KeynesianClowns\n\n- [I’m Not The Brightest Bulb Out There, Help Me Change It](https://stacker.news/items/381033) by @Fabs\n\n- [The Hacker News Top 40 Books Of 2023](https://stacker.news/items/392115) by @elvismercury\n\n- [What Was Your Favorite Book Of 2023?](https://stacker.news/items/368204) by @kr\n\n- [What Books Served As Your Foundation?](https://stacker.news/items/367154) by\n @Coyote_Cosmico\n\n- [Books that have profoundly influenced my life](https://stacker.news/items/406346/r/siggy47) by @r3drun3\n\n\n### Essays\n\n[Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816)\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Everything Is Here](https://stacker.news/items/422625/r/siggy47) by @Nuttall\n\n\n\n### Short Stories\n\nNone posted yet.\n\n### Past Newsletters\n\n- [Newsletter #1](https://stacker.news/items/411269)\n\n- [Newsletter #2](https://stacker.news/items/419973)\n\n- [Newsletter #3](https://stacker.news/items/428544) \N 1626 \N 457180 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.909091322356 0 \N \N f 120403799 \N 1 199870215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444414 2025-03-19 21:23:28.377 2025-03-29 22:39:47.364 Mac Mini (Late 2012) BTC Node - Chapter 1 # Chapter 1: Hardware selection, upgrade, and Ubuntu Server installation\n\n### 1. Hardware selection\n\nIt is important to select adequately the hardware that will be used to build your Node. The Node will be running 24h /7 days and will countain your lightning channels. It is important to use high quality hardware and spend the extra dollars for it.\n\nAt the time of building my Node, there was a shortage of Raspberry Pi and I was looking for an optimal alternative. I have decided to go ahead and purchase a used Mac Mini (late 2012). \n\nIt is recommended NOT to purchase a Mac Mini newer than 2012 (i.e 2014 and up) because Apple started to solder the RAM to the Logic Board after 2012. The Mac Mini Late 2012 is the last model that is fully customizable with SSD and RAM upgrades.\n\nHere is the list of hardware that will be used in this build:\n\n • 2 x 8G DDR3L Sodim 1600Mhz 1.35V\n • 1 x Mac Mini (Late 2012) 2.5Ghz\n • 1 x Samsung Evo 870 1Tb SSD *\n\n * Note: As discussed earlier, it is important to select hardware of quality. I had initially purchased a low cost 2Tb SSD but it failed while trying to download the Bitcoin blockchain.\n\n\n### 2. Hardware upgrade\n\nTo facilitate the upgrade of the hardware, you will need the proper tools to remove some T6 & T8 screws. \n\nHere are the steps to dismount the few components of the Mac Mini to upgrade the hardware: \n\n 1- Unplug the Mac Mini\n 2- Turn it upside down with the black cover facing up.\n 3- Put your thumbs in the 2 grooves of the cover and turn the piece counterclockwise.\n![](https://nostr.build/i/ed7eb6c4132966df674a8d42fffa540d8ca6e6ff995a42494be50a9020859b45.jpg)\n 4- Remove the cover.\n 5- Remove 3 x T6 screws holding the fan.\n![](https://nostr.build/i/0102a0456ef063770b1628bba695f85befc3299e09682701236ad79b6b9c700f.jpg)\n 6- Lift the fan and disconnect the connector by pulling gently straight up the wires.\n 7- Remove 1x T6 screw at the bottom of the shroud (black plastic piece on the left of the fan)\n![](https://nostr.build/i/7a541ef3a9488560b546d01a3efe4234b2bedde9c301ad00461f776a8246ae26.jpg)\n 8- Remove the shroud by holding the top right part with your fingers and turning it clockwise.\n![](https://nostr.build/i/d371f164efe399d71776e681895ed5fb13135225ecad224a67b1d919bf8fc2a9.jpg)\n 9- Remove 4 x T8 screws of the grill WIFI cover.\n![](https://nostr.build/i/1b0bb5dea1b947d36e9529e5f4be666a535c67c200c8d1df0c3a95b49586aa2b.jpg)\n 10- The top of the grill is mounted under the Mac Mini case. Lift gently the bottom of the grill and pull towards yourself to remove the grill.\n 11- Move the grill aside, you do not have to disconnect the WIFI sensor, just be careful.\n \n \n \n#### 2.1 Upgrading the RAM\n\nThe RAM is visible and accessible from the moment you remove the cover. Simply release each RAM by releasing the clips on the side. Once disengaged, the RAM will spring in a 45-degree angle. Remove it and put back the upgraded RAM at a 45 degree angle and push it down for it to clip.\n\n#### 2.2 Upgrading the SSD\n\nIt is important to note that the Mac Mini has 2 SSD bay. They are referred to as the “upper bay” and “lower bay”. Since we have flipped the Mac Mini upside down to remove the bottom cover, the “upper bay” is located under the “lower bay”.\n\nThe “upper bay” is mounted with an expansion kit that holds the SSD in position whereas the “lower bay” SSD is simply resting on top of the “upper bay” SSD.\n\nOne important aspect is that the connecting cables for the “lower bay” and “upper bay” SSD are not the same. The “upper bay” SSD connects on the logic board on the right and the “lower bay” SSD cable connects on the left. Removing the “upper bay” SSD requires removing the logic board therefore requires more work. It is recommended to install the new SSD in the “lower” bay. Here are the 2 scenarios:\n\n1- Your Mac Mini has already a Hard Drive installed in the “lower” bay. In that case insert a credit card under the HD and gently pry it upwards. You will be able to slide it out of the bay. The reason to pry it gently is because since there is no “upper” bay drive, The HD is being held in the air by 2 screws on the side that are aligned in 2 holes in the Mac Mini case. Once the HD is removed, transfer the connecting cable and the 2 screws to the new SSD. To put back the new SSD, it is easier to rotate the Mac Mini 90 degree and have the mounting holes at the bottom and use the gravity to get the 2 mounting screws in the holes. After, connect the connector to the logic board.\n\n2- Your Mac Mini has already a Hard Drive installed in the “upper bay”? Leave it there, you do not need mounting screws, but you need a new connecting cable. You will have to buy a “lower bay connector”. Once installed on the SSD, slide the SSD on top of the original one. The connector will plug on the logic board on the left of the “upper bay” SSD connector.\n\n![](https://nostr.build/i/768efa64eaa8985496a4c711de5838afeef1a512c072cecce74f4851ecca30b7.jpg)\n\n\nA good preparation would be to go in “Disk Utility” menu on MacOS and search for “upper” or “lower” position before starting to disassemble.\n\nReassemble everything and you are done.\n\n\n### 3. Installing Ubuntu Server\n\nThe next step is to install Ubuntu Server on the device. You will need to have created a bootable USB stick in order to proceed with the following instructions:\n\n1- Connect your device up with a keyboard/mouse, ethernet cable, screen and with the boot USB inserted into the device but still powered off.\n2- With the USB inserted, turn on your device. If it brings you to a Ubuntu screen then great move on to step 4, if not carry out the next step.\n3- If the device does not boot to a Ubuntu screen with the USB plugged in, we need to tell it to boot from a USB rather than the internal hard drive. Shut the device. Turn it back on and hold “ALT” key once the computer is starting to boot. The “ALT” key is replacing the “OPTION” key on a Mac. Please select UEFI in the menu in order to reboot with the Boot stick.\n4- You will arrive on the Ubuntu Server.\n5- Next choose your desired language.\n6- Select to update to new installer if any updates available.\n7- Allow it to detect or select your regional keyboard layout.\n8- Choose the basic installation, do not select any additional options.\n9- At the next stage it will like you to connect to the internet, the WiFi will not work at this stage so you will need to plug in via ethernet if not already done.\n10- Once connected to the internet an IP address is shown on the screen, write it down and press Done\n11- Unless you’re using a proxy on the next screen (Configure Proxy) press Done\n12- Leave the default Mirror address by pressing Done. \n13- At the next screen Guided Storage Configuration you can select the disk setup, Uncheck “Set up this disk as a LVM” since you want to use the whole disk as your node and press Done.\n14- The next screen will confirm the file system summary click Done.\n15- Ensure you have opted for the correct disk and confirm action at the pop-up screen.\n16- At the profile screen, you can provide your name, the servers name and provide the username.\n17- It will ask you if you want to enable Ubuntu Pro, select skip for now.\n18- At the SSH Setup screen, select to install OpenSSH server and select Done.\n19- We did not opt to install any additional features at the next screen (Featured Server Snaps) click Done.\n20- Once the install completes, the screen will show you (Install Complete!).\n21- Select Reboot now.\n22- Remove the USB drive when it tells you and press Enter.\n\nThis should now complete the Ubuntu installation stage, next we need to SSH to the server.\n\n### 4. Connecting to the Ubuntu Server using SSH\n\nNow that your Ubuntu Server is online, the rest of the operation will be done via another computer with SSH connection using Terminal. \n\n***To connect to your server, you will need to use the following command with the name of the server from step 16 and the IP address noted down in the step 10 from the previous section***\n\n>ssh @\n\n***You will be prompt to enter the password from step 16***\n\n>\n\n\nCongratulation, you are now connected and ready to start installing your node applications!\n\nThe next Chapter will cover the installation of Bitcoin Core and the initial Blockchain synchronization. \N 10484 \N 444414 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.0895680270714 0 \N \N f 187785211 \N 1 47002271 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448691 2025-03-22 19:31:59.426 2025-03-29 22:39:47.364 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/383164) are the updates stackers shared from all their latest work projects. \N 638 \N 448691 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 9.33040117366751 0 \N \N f 635055394 \N 5 92419286 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:47:19.821 f \N \N \N 0 0 0 0 3 0 0 451303 2025-03-24 13:39:52.91 2025-03-29 22:39:47.365 What Is Javier Milei’s Stance on Bitcoin? I’ve heard a number of people call Javier Milei “pro-Bitcoin”, but I haven’t heard many details on exactly what “Pro-Bitcoin” means for him and Argentina.\n\nDoes anyone here have good primary source material where Javier Milei specifically mentions Bitcoin and the role it might play in Argentina moving forward?\n\nNot interested in articles or tweets speculating on his Bitcoin plans, I really just want Javier’s views on Bitcoin in his own words (translated to English ideally). \N 21526 \N 451303 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.6251294250637 0 \N \N f 203479746 \N 2 172257832 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435579 2025-03-12 19:50:45.865 2025-03-29 22:39:47.364 Life is Complicated - Bitcoin is Simple \N https://www.discreetlog.com/bitcoin-is-simple/ 3377 \N 435579 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 8.83450946686555 0 \N \N f 1288515334 \N 7 7014008 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:32:10.651 f \N \N \N 0 0 0 0 6 0 0 422557 2025-03-02 14:42:08.454 2025-03-29 22:39:47.364 Statement on legality of CoinJoin and other privacy tools - Samourai Wallet Team Full statement:\n- https://blog.samourai.is/statement-on-legality-of-coinjoin-and-other-privacy-tools/\n\n*In case you prefer to read their statement here:*\n- "CoinJoin coordinators are simply message passers. This is true of Wasabi & Whirlpool. They are not money transmitters, they are not facilitators they simply pass data packets to connected clients. Clients never surrender custody to any 3rd party. Clients collaborate w/ each other."\n\n- "Your ISP is not responsible for the websites you visit, even though they serve you the data packets that made your visit possible. Your VPN is not responsible for copyright infringement when you illegally download a torrent."\n\n- "The ability to share data freely be it books, art, media, thoughts and ideas, or UTXO state is essential for free society and is fundamentally human. The radical encroachment of the state into the lives of ordinary law abiding citizens is on an a concerning upward trajectory."\n\n- "By bending the knee to reg overreach instead of fiercely fighting, especially when you have the resources to do so effectively, you tacitly accept and endorse that overreach and the next one. Give an inch and they'll take several miles."\n\n- "Blacklists are an affront to everything that is supposed to make bitcoin special. Unfortunately development in protocol level privacy stalled by 2015 making the censorship resistance of bitcoin reliant on the social layer and the application layer."\n\n- "By 2018 the social layer of protection had all but crumbled with new adoption. Again with tacit acceptance of old world paradigms into our new system - see the overwhelming acceptance and encouragement of custodial solutions as an acceptable condition of 'mass adoption' and NGU."\n\n- "That leaves the application layer. This is where Samourai is. Let's face it, most stuff in this space at best ignores privacy, at worst despises it. Privacy tech is always niche, generally passion project by small teams, and largely ignored by most, until suddenly it isn't."\n\n- "We're starting to get to that suddenly part. More and more people globally are starting to recognize the incredible amount of power they have ceded to the State and the sting of the iron fist when it flexes and uses that power. We hope privacy takes a front seat once again." \N 21048 \N 422557 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.017535041645 0 \N \N f 94598582 \N 1 60499311 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2751 2022-10-19 18:12:21.931 2025-03-29 22:39:47.364 RoboSats trying to find how hacker stole ~5M sats from its onchain swaps feature \N https://nitter.at/RoboSats/status/1635432123648622593 21334 \N 2751 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.8893989661514 0 \N \N f 306745667 \N 2 28229224 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 199264 2024-07-13 15:45:14.924 2025-03-29 22:39:47.364 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/332983) are the updates stackers shared from all their latest work projects. \N 21578 \N 199264 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.5572072023753 0 \N \N f 381674830 \N 3 72939383 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 458149 2025-03-29 02:18:23.966 2025-03-29 22:39:47.366 The Zen of Hiding Zap Notifications A few months ago, @grayruby posted [SN and the Zen of 1 sat = 1 sat](https://stacker.news/items/550268/r/Undisciplined). Since then, the top of my SN page has read "1 sat = 1 sat". It is quite peaceful.\n\nWhile setting up [random zaps](https://stacker.news/items/632357/r/Undisciplined), I stumbled across another setting that's been giving me a similar sense of peace. I disabled being notified when I receive zaps. After all, I keep insisting that I'm not here for the sats, but rather for the community, so why do I need to see how much and how often people are zapping me. It's much less clutter in the notifications feed and everything in there is now something to potentially respond to.\n\nGive it a whirl. \N 9337 \N 458149 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 13.2391335877545 0 \N \N f 826475069 \N 6 162968126 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 416827 2025-02-25 21:41:08.384 2025-03-29 22:39:47.366 Small UX improvement to help stackers write long-format posts on SN How many of you find yourself scrolling up and down to reach the **preview** and attach media icon on the top of the current editor?\n\n![](https://m.stacker.news/53053)\n\nWouldn't be easier to have them always available when writing long format posts? Something like this, on the side of the textarea that follow your cursor meanwhile you write, could drastically improve the writing and editing experience here on SN.\n\n![](https://m.stacker.news/53062)\n\nHow many of you are forced to use external markdown editors? By the way... Which one do you use?\n\nFYI @k00b @ek \N 4459 \N 416827 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.8245082630278 0 \N \N f 350548199 \N 2 50144474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436316 2025-03-13 13:16:09.819 2025-03-29 22:39:47.365 Tipping as an effective method for Orange Pilling? I've come across several instances where individuals had their first encounter with Bitcoin through receiving a tip after providing a service. One such example can be found at https://twitter.com/WalkerAmerica/status/1667083128433721345.\n\nI've been contemplating whether tipping is an efficient strategy for Orange Pilling, and I'd like to discuss my doubts and gather your thoughts on this matter.\n\n## Here are my concerns ##\nTipping is typically conducted through Lightning or another Layer 2+ solution. This often leads to the receiver ending up with custodial Bitcoin on an LN wallet, which contradicts the principles of on-chain custodial/NYKNYC that we usually advocate. They might mistakenly believe they possess actual Bitcoin when, technically, it's an IOU. If they don't invest the effort to educate themselves about Bitcoin, there's a high likelihood that these coins could be lost.\n\n## Despite these reservations, I do recognize some advantages ##\n1. By 'owning' a small amount of Bitcoin, individuals might develop an interest in learning more about it.\n2. When they encounter news about Bitcoin's price rise (NGU - Number Go Up), they will remember they have some and realize that it wasn't as complex as they initially thought. This boost in confidence could motivate them to learn and acquire more Bitcoin.\n3. Receiving a Bitcoin tip instead of fiat is an unusual experience that they are likely to discuss with others, generating further curiosity and awareness.\n\n## Considering these points, I'd appreciate your input on the following aspects ##\n1. Which wallet would you recommend for this tipping approach? I personally lean towards Wallet of Satoshi due to its user-friendly interface.\n2. Where should we direct recipients to learn more about Bitcoin? I find https://bitcoin.rocks/ to be a simple starting page that I often recommend. When making a payment with WoS one could add for example a note: Learn more at www.bitcoin.rocks \n\nI'm eager to hear your ideas and suggestions on this topic. Let's discuss! \N 20781 \N 436316 \N \N \N \N \N \N \N \N health \N ACTIVE \N 4.18722840761635 0 \N \N f 109964822 \N 1 221493640 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:15:06.757 f \N \N \N 0 0 0 0 1 0 0 395906 2025-02-08 21:47:39.269 2025-03-29 22:39:47.365 Your opinion on the Wallet of Satoshi My question is not about custodial or non-custodial. I just keep wondering why so little information is known about the company behind it and how the company actually manages to run profitably.\n\nI could hardly find any information about the company, the investors or the business model itself. I am aware that routing through fees creates income, but how can this income cover the fixed and development costs? Is this only possible with large amounts of money from outside?\n\nWhat am I missing? \N 1817 \N 395906 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 11.4674290463461 0 \N \N f 68463263 \N 2 238607241 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447618 2025-03-22 00:39:53.092 2025-03-29 22:39:47.366 Finally got the new Phoenix upgrade, splicing really makes UX 10x better Finally got the notification to upgrade Phoenix and migrate to [the new 3rd gen system with splicing](https://acinq.co/blog/phoenix-splicing-update). The takeaway? It's amazing!\n\n1. One single channel is created with your available balance, \n2. Phoenix pays for the miners fees of migrating (very nice of them), and \n3. Right off the bat you have inbound liquidity roughly equal to your total balance. They did not mention this on the documentation, but they should. I was worried I would have no inbound once I migrated and the closed all my empty channels.\n\nThis thing is just phenomenal. I was one of the "users with dozens of channels." It was functional, but that's too many channels. \n\nCongratz Asinq and Phoenix. This is the BEST lighting wallet yet, bar none. Looking forward to Blinded paths, BOLT 12/static invoices and Taproot! You guys are killing it. \N 20871 \N 447618 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.20242629203774 0 \N \N f 667137488 \N 3 191718812 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458272 2025-03-29 06:46:05.575 2025-03-29 22:39:47.365 Why I'm Bullish 5: Open Source Money I've worked in web software dev since 2006 and very quickly I learned about Free & Open Source software. The idea that anyone can download the source code to an application, audit it, modify it, or fork it is very empowering. I've learned so much because of this practice. I've seen how OSS out performs closed source on security over and over again. I've seen the power that an open protocol can create with RSS, HTML, and JSON. So when I first heard about bitcoin I was immediately interested. At the time I was very new to Austrian economics and the liberty movement so I really didn't get that part of it fully. As I began to learn about how the Federal Reserve worked and how they were stealing our life force (wealth) silently and with little push back I became very anger about it. I followed Ron Paul and he accepted bitcoin which I thought was interesting. Then the 2017 bull market got my attention. I started thinking about what open source money would mean. What if the rules for money were in code? What if it took massive consensus to change the rules instead of appointing some jerk to a board run by the bankers?\n\nIf you recall Ron Paul's big push was to audit the Fed. Seems reasonable right? I mean this entity which controls the money supply which affects almost every person on the planet. They should have accountability right? Well, most politicians do not agree. Ron Paul's attempt to audit the Fed failed. He retired and no one is even attempting to do this now. It will never happen. It taught me that the true way to change things isn't to reform existing systems. The way to fix the world is to build something new. Something better. Something that will unseat the status quo. The good news is we already have that thing. Its bitcoin. Its open source. Not tricks. No hidden elites calling the shots. Just those that join the network and run their nodes. Deciding which set of rules to accept. It is a revolution that hasn't been recognized. It will happen though. As many say, gradually, then suddenly.\n\n### Read the rest of the series\n\n- [1: Bitcoin is a Hurricane](https://stacker.news/items/383549)\n- [2: SeedSigner](https://stacker.news/items/384892)\n- [3: China Mining Ban](https://stacker.news/items/389176)\n- [4: Becoming Your Own Banker](https://stacker.news/items/391061) \N 9262 \N 458272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.35785503255931 0 \N \N f 489742624 \N 3 34983445 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 447160 2025-03-21 16:44:15.331 2025-03-29 22:39:47.365 A Brief Profile of Scoresby 🐳 ### a brief profile of @Scoresby\nTo my delight, I had the opportunity to work alongside @scoresby recently. Until now, I have known Scoresby the person in the same way I have known Scoresby the online persona, from afar with curiosity. But with my new knowledge, I present a brief profile of Scoresby the person, someone you will find worthy of note.\n\n#### origins\nScoresby can be spotted selling his art in the wild, and by that I mean at the back of a bitcoin meetup. He takes vintage pop culture templates, like greeting cards or movie posters, and envisions a new spin on them, their context and their language, to promote a message aligned with bitcoin ethos. What I admire and respect about Scoresby in this is that he creates this purely, because he wants to. There is no outcome he desires from his expression. He persists to create because it feeds a piece of him, and he offers his art for sale because others have expressed an interest in it along with him. When you meet Scoresby, you do not get a pitch. He’s more likely to shrug his shoulders than to explain himself, and that takes a strength of character that does not go unnoticed. In Scoresby’s selfless act of creation, he is strong.\n\n#### writerly\nI asked him if he considers himself an artist. I asked him because I was beginning to sense how our approaches to art were alike, which is to get close enough to it that we receive its gifts, but we share those gifts with no one. When I asked the question, he paused and his look was indifferent. Yep, I get that. So I amended my question, “do you consider yourself a writer?” \nHe said, “A writer, definitely. I spend more time writing for sure. The art I do, it’s just something I think is cool.”\n\nI challenge you to take this approach to things that you’re driving yourself toward. Hold them away from you enough to remain curious about them. Scoresby has an attitude of a learner. He does not command things to fall together in neat explanations, but allows himself to be led by what he does not yet know or possess. He strikes me as someone who is willing to try. \n\nI learned that Scoresby has written a book series. He is experimenting with different ways of releasing these works. He does not worry over the life that his books will live beyond him. He is dilligent to the whisper in himself that the book could exist, that the story is possible, and the creation of the book is the result of his response. You may be able to understand why I so enjoyed getting to know him, because if you’ve been reading me, maybe you’ve picked up on this thread.\n\n#### whaling\nScoresby is really into famous whalers. I was studying a few of the posters he creates when he mentioned that William Scoresby was a famous whaler, the real life person that inspired his pseudonym. Something about whaling is amusing to him, and it was amusing to me to discover this. I hope he’ll share more about why whaling is so compelling, since I know next to nothing about it. \n\nPeople like Scoresby, the artists, writers and creators in the bitcoin space, stand apart from the businessmen/women and developers. At least I see it this way. I see us as expressing the profundity of bitcoin’s significance in a different way. It motivates us to continue are lives closer to truth, closer to the native creative drive each of us has. And that creative drive is a little chaotic, and we do not necessarily have an interest in rigidly directing it one way or another. It is not focused at progress, but channeled into expression. And I am looking forward to discovering more of what Scoresby has within him to express.\n\nThanks for talking with me Scoresby, it’s a real pleasure to learn from you. Apologies if there are assumptions I've made that you would correct, and if there are corrections you would make, I welcome them. \N 919 \N 447160 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 15.8182295791799 0 \N \N f 129227377 \N 1 50561902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:10:58.508 f \N \N \N 0 0 0 0 1 0 0 417399 2025-02-26 11:02:39.255 2025-03-29 22:39:47.365 The Lightning Network explained ⚡️ *Episode XIII. Block height: 808500. Scalable, instant and lightning fast Bitcoin transactions explained. Including a step-by-step guide to set up your own Bitcoin Lightning Node.*\n\nThe original Post: https://carlbmenger.substack.com/p/the-lightning-network\n\n![The Lightning Network](https://imgprxy.stacker.news/6WuSNiaeYDkQ1HKxUHjSZNwV7HJO2IGtqfUptpd-MVA/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvNjMySko0TFIvSU1HLTAyMDAuanBn)\n\nBitcoin is often accused of being slow and sluggish, old technology being replaced by new 'better' (faster) blockchains. And it is true that the main layer of the Bitcoin network is relatively slow, considering transaction speed and not final settlement. However, Bitcoin was deliberately designed like this (10 minutes per block) because it serves the security of the network and allows everyone to run their own node without high cost nor effort. Therefore, the relative slowness of the base layer serves decentralisation and security purposes.\n\nBut you maybe ask yourself rightfully, how can Bitcoin become a medium of exchange or scale to a broader audience with 7 transactions per second? Well let us have a look.\n\n## Scaling in Layers\n\nWhat many people forget is that Bitcoin scales in layers. The reason for this is that if one blockchain network layer is attempting to be used for all purposes, it makes too many sacrifices to be useful for anything in the long run. However, if each layer of the system is optimized according to certain variables to serve a specific purpose, then the full network can optimize for multiple use-cases simultaneously without making fundamental trade-offs. \n\nFor example, suppose you want to increase the transaction speed of Bitcoin by increasing the block size. This may sound like a good solution at first glance, but if you think it through, it's not: a larger block size would increase the requirements for running a Bitcoin node. If ordinary people are not able to run a Bitcoin node, the network will become highly centralized, so increasing the block size to increase transaction speed would lead to less decentralization. This is the reason why scaling in layers is so much better.\n\nCurrently, the most important Bitcoin layer is the Lightning Network, a set of 2-of-2 multisignature smart contracts running on top of the Bitcoin base layer. Because of its increasing importance to the Bitcoin ecosystem, I want to dive a little deeper into this second-layer technology.\n\n## The Lightning Network\n\nThe Bitcoin Lightning Network is a second-layer solution built on top of the Bitcoin base layer. It aims to address some of the scalability and speed limitations of the Bitcoin base layer by enabling faster and cheaper transactions.\n\nSuppose you and your friend spend some time in a bar talking about Bitcoin. Let's say you gave the bar owner your credit card information at the beginning of the visit, and everything you order is put on your tab. When you're ready to leave, the waiter gives you the receipt, you sign it, and then it's charged to the credit card you already gave. This way you have opened a payment channel with the bar owner. This is basically how the Lightning Network works, but without a credit card or credit at all.\n\n### P2P Channels\n\nTo use the Lightning Network, you need to open a channel that uses a bitcoin base layer transaction. The channel is a 2-of-2 multisignature channel with a time lock, which means we both have to agree to open it, but either of us can unilaterally close the channel if we need or want to. To conduct transactions, one party or both must add liquidity in the form of sats (a small bitcoin unit). As long as we have enough liquidity in the channel, we can instantly make as many transactions back and forth as we want.\n\nSo unlike our bar tab, a Lightning channel is not based on credit. All participants of the Lightning channel can close the channel and get back the liquidity provided. Closing a channel means that all transactions that took place while the channel was open are combined and closed with a single transaction on the Bitcoin base layer.\n\n![Lightning explained](https://imgprxy.stacker.news/sPnoS8sXfiwWb_-JIq3G1vGUIxX5FQ3mOy1C5O520gY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvcXF4MTlwWXkvcGhvdG8tb3V0cHV0LmpwZw)\n\n### Routing Transactions\n\nNow take this step further: You and your friend do not even need a tab with the bar owner directly, it would be sufficient if you have a tab with another person who has a tab with the bar owner, so the payment would flow through the channel that you have with another person and then to the bar owner. And since the Lightning Network uses onion routing technology, your other friend wouldn't even know where the payment was coming from or where it was going.\n\nSince the Lightning Network is a network of computers, you don't need a direct channel to every single person you want to send to or receive payments from. You can use existing channels to send or receive. As the Lightning Network becomes more widespread, it will become easier to find channels with enough liquidity to send instant transactions around the globe at the speed of light.\n\nThe result of this is that this network of channels is that one base layer transaction to open a channel gives you access to many individual payments to various separate entities, and thus gives Bitcoin the possibility to scale significantly. The only requirement is sufficient liquidity throughout your routing channels.\n\n![Lightning Nodes](https://imgprxy.stacker.news/al1GJUTd6e573MbdSpaseP2Z0rf2XXAPRXyfLZ4EJnU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvaGpOdG1CdEYvSU1HLTAyMDcuanBn)\n\nThis means that the amount a user can send or receive is limited by the liquidity of the channels they use. At the time of writing, most Lightning wallets (Wallet of Satoshi or Moon) are capable of sending about $450 in one transaction, which should be enough for daily expenses. If you use your own Lightning node, make sure you have enough liquidity to complete your desired transactions.\n\n### Privacy\n\nAs the second layer on top of Bitcoin, the Lightning Network can greatly enhance the privacy of Bitcoin usage. While all transactions on the main Bitcoin layer are public, there is no central ledger or permanent record of individual transactions taking place in a Lightning Channel on the Lightning Network. All transactions are peer-to-peer, and transactions are not naturally related to each other. Only the opening and closing of the channel is synchronized with the Bitcoin base layer, but not the individual transactions that take place in your channel.\n\nNevertheless, the Lightning Network is not completely private. Receiving payments, requesting refunds, and opening and closing payment channels (connections between Lightning Nodes) have some privacy concerns for users. These concerns have led to protocol-based solutions such as Basis of Lightning Technology 12 (BOLT 12), a proposed upgrade that not only improves privacy but also introduces many other useful features.\n\nAlthough the Lightning Network improves privacy, there is still work to be done. The beauty of the Bitcoin ecosystem is that it is open source and anyone around the globe can contribute to its success. As a result, the Bitcoin network is getting stronger and more user-friendly every day.\n\n## Main Features\n\n- **Payment Channels:** Lightning Network creates a network of off-chain payment channels. These channels allow users to transact directly with each other, off the main blockchain.\n- **Fast and Low-Cost Transactions:** Transactions within these channels are incredibly fast and typically have lower fees compared to on-chain Bitcoin transactions. This makes microtransactions and day-to-day payments more feasible.\n- **Scalability:** By reducing the number of on-chain transactions, the Lightning Network helps alleviate congestion on the Bitcoin blockchain, potentially allowing for more scalability and accommodating a larger user base.\n- **Privacy:** Lightning Network transactions can be more private since they don’t appear on the public blockchain until the channel is closed. This can enhance user privacy.\n- **Micropayments:** It enables new use cases, such as microtransactions for content creators, pay-per-minute services, and more, which were previously impractical due to high on-chain transaction fees.\n- **Financial Inclusion:** Lightning Network has the potential to bring financial services to underserved populations, especially in regions with limited access to traditional banking infrastructure.\n- **Cross-Border Payments:** It can facilitate faster and cheaper cross-border payments, potentially disrupting the remittance industry.\n- **Smart Contracts:** Lightning Network can support basic smart contracts, expanding its utility for various financial and non-financial applications\nA Game Changer\n\n## A Game Changer\n\nImagine a global system with a large number of interconnected Lightning Nodes spread across the globe. Anyone can join the payment network by running their own payment server (Lightning Node) and opening channels to others. Because the network is efficient, transaction fees are a penny or less. Microtransactions and/or buying your daily coffee are instantaneous and frequent machine-to-machine transactions are easy. No more discrimination, no more high fees, just pure and private P2P transactions. What a bright future!\n\nLike the Bitcoin network itself, the Lightning network relies on as many Lightning nodes as possible. For example, if you're running a Bitcoin node with Umbrel, it's super easy to run a Lightning node at the same time. For this reason, I want to show you how to run a Lightning node, how to provide it with liquidity, and how to open channels and route your own Lightning payments. Pretty cool, indeed. So let's get started:\n\n## Step-By-Step Lightning guide\n\n1) Check out my ‚Don‘t trust, verify ‘episode (https://carlbmenger.substack.com/p/dont-trust-verify) on why and how to set up your own Bitcoin Node using a Raspberry-Pi with Umbrel. After setting up your own Bitcoin Node you can also open up your own Bitcoin Lightning node/channel on the same device easily. So you have two features for one, which is pretty amazing.\n2) If you got your Bitcoin Node up and running, go to your browser and enter http://umbrel.local/ in the address bar. Type in your password and click on ‚Bitcoin‘ to your left.\n3) First, we need to add a bit of liquidity to your Node: Click on ‚deposit‘ and send some Sats by scanning your personal QR-Code. \n4) Then click on ‚Lightning‘ on the left. \n\n![Lightning](https://imgprxy.stacker.news/9V_gR_V_k0hDwKAbpJeKI3W47jV3PKiWuEvFeFoS1fw/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvcFg3czRjYzAvSU1HLTAyMDMuanBn)\n\n5) Now we have to open our first channel: You will see this window appear. Sadly it’s not very intuitive so let’s go through it. \n\n![Opening Lightning Channel](https://imgprxy.stacker.news/2Sxb6ZpkDFZEfmC-VQCawi57ZYIT5m1nQAdysY0rvvw/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvMjZWdzA0RnAvSU1HLTAyMDQuanBn)\n\n*A) The Lightning address is NOT your address. It’s the Lightning address of the person you are connecting to. B) The amount is the amount of sats that you’ll create the channel with. C) At the bottom, you’ll see a Transaction Fee. This is the ‘cost’ of creating the transmission channel.*\n\n6) To close a channel do the following: Click on the Channel you like to close in your Umbrel Lightning wallet. Then click on the red ‚Close Channel‘ button at the bottom of the ‚channel details‘ page and ‚confirm close‘.\n\n![Closing Lightning Channel](https://imgprxy.stacker.news/TDaFlJWyFztZJn3kEODDhE_tIDvZhUKgRtJVz4pXeWQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvSG4za2o3UngvSU1HLTAyMDUuanBn)\n\nThat's basically it. You can also connect your own Lightning channel to Lightning apps like "Zeus" and start sending Lightning transactions through your own Lightning node wherever you are. If you're interested, check out the video tutorial from Bitcoin-Sessions (https://www.youtube.com/watch?v=hmmehTnV3ys).\n\n## The End\n\nThat's it for this episode. I hope you gathered some valuable knowledge from this one. Keep stacking and sending Sats via Lightning. Thanks for reading and see you hopefully in the next one. Until then, remember: F* central bank digital currencies and embrace open-source freedom money.\n\n**₿ critical, ₿ informed, ₿ prepared. Yours,**\n\n![Carl B Menger](https://imgprxy.stacker.news/ho9L1x0sABY99gS10QXM9_rHeYlX98u7LenEWuqVSqc/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2Mvdlpud05WaFYvNTU4OWQ1NzgtNzNkMS00MDc3LTk4NzAtMzBhZjIxOWVmZmUwLTgwOHgxNjMucG5n)\n\n\n## Stay tuned:\n**Subscribe to my Newsletter:** https://open.substack.com/pub/carlbmenger/p/coming-soon\n**Follow me on Twitter:** https://mobile.twitter.com/CarlBMenger\n**Follow me on NOSTR:** https://damus.io/npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n## Stay informed:\n[XII] CBDCs: A Brave New World: https://stacker.news/items/213580\n[XI] Valuing Bitcoin: https://stacker.news/items/208983\n[X] Solving the Adoption Dilemma: https://stacker.news/items/201172\n[IX] NOSTR: Social Media 2.0: https://stacker.news/items/189821\n[VIII] The Bitcoin Retirement Plan: https://stacker.news/items/183327\n[VII] Bitcoin in Guatemala: https://stacker.news/items/171339\n[VI] Bitcoin in El Salvador: https://stacker.news/items/161607\n\n \N 12245 \N 417399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7143983166676 0 \N \N f 171566022 \N 1 77006168 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434922 2025-03-12 10:41:17.935 2025-03-29 22:39:47.365 Legend of the Snail | 11/25 participants left | 4 days until next KO | $77,016 ```\n+================================x\n| Welcome to day 573 of the |\n| _ _ _ _ |\n| | |__ (_) |_ ___ ___ (_)_ __ |\n| | '_ \\| | __/ __/ _ \\| | '_ \\ |\n| | |_) | | || (_| (_) | | | | | |\n| |_.__/|_|\\__\\___\\___/|_|_| |_| |\n| |\n| 100k bet! |\nx================================+\n```\n\n| Stat | Value | Change |\n| --- | --- | --- | \n| Last elimination update | https://stacker.news/items/669530 | | \n| Date | 2024-11-08 | +67 days |\n| Participants | 11/25 | +1 |\n| **Prize Pool** | **337,862 sats** | **+1,834 sats** |\n| USD/BTC | $77,016.00 | +31% |\n\n![](https://m.stacker.news/61731)\n\n| Nym | Day | Paid | Elimination Date | Eliminated |\n| --- | --- | ---- | ---------------- | ---------- |\n| @orthwyrm | 260 | X | 2024-02-18 | X |\n| @mango | 359 | X | 2024-04-11 | X |\n| @Alby | 365 | X | 2024-04-21 | X |\n| @siggy47 | 380 | X | 2024-05-18 | X |\n| @CheezeGrater | 418 | X | 2024-06-07 | X |\n| @ekzyis | 420 | X | 2024-06-11 | X |\n| @0fje0 | 427 | X | 2024-06-21 | X |\n| @phatom | 440 | | 2024-07-21 | X |\n| @486DX2 | 486 | X | 2024-08-20 | X |\n| @carlosfandango | 501 | X | 2024-09-07 | X |\n| @Lux | 522 | X | 2024-09-20 | X |\n| @Radentor | 526 | X | 2024-10-01 | X |\n| @OneOneSeven | 544 | X | 2024-10-20 | X |\n| @davidw | 564 | X | 2024-11-02 | X |\n| @nikotsla | 570 | X | 2024-11-12 | |\n| @BitcoinIsTheFuture | 584 | X | 2024-11-19 | |\n| @wize123 | 584 | X | 2024-11-20 | |\n| @LaserStack | 587 | X | 2024-12-02 | |\n| @south_korea_ln | 608 | X | 2024-12-18 | |\n| @Carresan | 619 | X | 2025-01-10 | |\n| @Undisciplined | 653 | X | 2025-01-28 | |\n| @grayruby | 655 | X | 2025-02-03 | |\n| @gnilma | 666 | X | 2025-02-26 | |\n| @Longtermwizard | 700 | X | 2025-05-09 | |\n| @Bitman | 810 | X | | |\n\nNext elimination: @nikotsla (4 days remaining)\n\n_Want to participate? Click [here](https://stacker.news/items/363233) for more information._ \N 2431 \N 434922 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 29.4658501104688 0 \N \N f 422250775 \N 2 151617416 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:35:23.582 f \N \N \N 0 0 0 0 2 0 0 449290 2025-03-23 10:25:26.72 2025-03-29 22:39:47.365 On hiding the creation date of internet content I hate YouTube Shorts, and I hate that Google keeps trying to force it on me. I usually click the `x` to hide that crap, but Google made it so you can only hide it for 30 days at a time. (Jerks)\n\nBut today, they got me. I clicked on a news related short that caught my attention. I was immediately filled with shame. But what bothered me even more than violating my integrity was that *there was no date visible anywhere on the video*\n\nAnd, naturally, the video content was some controversy about the culture wars. But without an easily visible timestamp on the video, I couldn't place the controversy within its proper context. I was free to imagine in my own mind what events the controversy was really about.\n\nEventually, I did find the date. I had to click on the 3-dots "hamburger icon" and pull up the video details. But 99% of viewers are not gonna do that.\n\nThis made me think. I've noticed on a number of blogs and other websites that don't always make the creation date of the content visible. Personally, I think this is more than just bad design. I would go as far as to say it's unethical because it misleads and can make old content seem new, or vice versa. It makes it harder for the reader/viewer to sort out whether the content is still relevant and to understand the content within its proper context.\n\nI'm not gonna go as far as to say there should be a law about this, but when I see web design that doesn't clearly show the date the content was created, I'm going to treat it with greater suspicion and use my voice to speak out against that website. Thankfully, Stacker.News is very transparent about when all content was created.\n\nWhat do you think? Do you agree with me that it is unethical to hide the date that content was created? Or do you think it's fine and that there are good reasons for it? \N 18219 \N 449290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.67399774415323 0 \N \N f 640756883 \N 3 134152874 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441472 2025-03-18 02:49:51.293 2025-03-29 22:39:47.365 Looking back at a year of routing Thanks to @DarthCoin for encouraging me to make this post!\n\nI first heard about LN from a post on r/bitcoin, and it got me really interested! I had been using bitcoin on-chain for a while, but I hadn't really checked out the layer 2 networks before because I thought they were just like shitcoins. But after reading the whitepaper, docs.lightning.engineering, and the LND and CLN documentation folders, I decided to give it a shot. \nSince my vpn accepts btc-ln as payment, I downloaded the latest release of LND at the time, 0.16.4-beta, and set up a personal node on a linux box I had lying around. I opened a couple of channels with around 700k sats and let it sit for a while as I learned more about how LN works. I wasn't sure about becoming a routing node until I stumbled upon Darths blog posts and tools like charge-lnd, LNDMon, and Ride-The-Lightning, which gave me the confidence to go for it! \nI renamed my node to Fopstronaut and opened two larger channels, with the goal of helping decentralize the network by avoiding big hub nodes like ACINQ and creating alternative routes. When I successfully routed my first payment, I was thrilled and just couldn't wait to keep exploring the Lightning Network!\n\nI found out about LightningNetwork+ thanks to Nostr, and I decided to give it a try by joining my first liquidity swap, #18323. After that, I ended up creating and joining 7 more swaps over the next few months. At one point, I think I had over 20M sats in capacity! Liquidity swaps are awesome because not only do you get two channels for the price of one, you make the network stronger - it's a win-win for everyone! \nUsing tools like Amboss and SparkSeer to look up nodes, I got myself into a good spot in the network by reducing my betweenness and hopness. If anyone has any tips on improving my scores, I'm all ears! I set up automatic fees with charge-lnd and joined #ZeroBaseFee, gradually bumping up my fees from 10ppm to a range of 20-70ppm. It seems to be doing the trick for me! I've looked at circuit breaker too, but I'm a little concerned that the default settings might be too strict and mess with my routing.\n\nI decided to challenge myself and try passive rebalancing, and i've had some success! I was routing over a dozen payments a day at one point, and even peaked at 27, all without needing to rebalance manually! My strategy was to use charge-lnds `proportional` strategy with a wide fee range, around 40ppm, to signal the available liquidity in my channels. I try to steer clear of actively rebalancing whenever I can, usually just dropping the fees or asking your channel partner to adjust theirs will unstick a channel!\n\nI've more recently also started capping the max HTLC at set intervals as my channels fill and drain to avoid running into insufficient liquidity failures. This strategy has been a game changer! I've noticed that having 3-5 HTLC limit stops along a channel seems to give senders enough info to route correctly, and I'm hardly seeing any insufficient liquidity failures now. I'm really stoked about how things are going! And, setting up LNDMon has been amazing! It's been so helpful in figuring out how my node is doing, and what changes to make!\n\nEverything changed when the Ordinals nation attacked, and the high fees forced six of my busiest channels to close. It was a major bummer, but I'm staying positive - at least I weathered the storm better than others. Some of my old neighbors have totally shut down, which is a shame, and ever since then I've been having more downstream failures. Despite those setbacks, I'm determined to keep growing slowly and hopefully increase my routing even more in the coming year. I've learned so much and had a blast! I can't wait to see what's next on this journey!\n\ntl;dr I smoked one Bitcoin and now I have a routing node :3 \N 16594 \N 441472 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 19.711589231382 0 \N \N f 173017049 \N 1 88911372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 231006 2024-09-08 15:28:18.145 2025-03-29 22:39:47.366 A real bitcoiner™️ You might not characterize the community of bitcoiners as a welcoming group of folks. Market forces have caused some of the most vocal among us to have developed a certain “toxicity”. And this is a rational mechanism of defense against all the nonsense scams, schemes and fraudsters orbiting bitcoin (and boy are there a lot of them!).\n\nHowever, I have a more welcoming idea to share. You can be a “real bitcoiner™️” without subscribing to all the angry toxicity. I’d suggest all it takes is understanding what makes bitcoin special. I have been accused of not being a “real bitcoiner™️” at times. But, I don’t really care. I’ve been on a continual journey of educating myself and my friends about this technology. You can begin to climb the educational ladder as soon as you begin to become curious. Understand what bitcoin uniquely adds to the world: digital scarcity.\n\nA partially ordered list of the stages you might go through:\n+ buy some bitcoin via an ETF\n+ buy some bitcoin and hold it on an exchange\n+ understand what makes bitcoin special\n+ withdraw some bitcoin to a non-custodial wallet\n+ withdraw some bitcoin to cold storage\n+ run a bitcoin full node\n+ explore privacy preserving technologies like TOR and CoinJoin\n+ buy some non-KYC’d bitcoin\n+ convert all your personal assets to bitcoin\n+ run a bitcoin miner\n+ exclusively hold all your wealth in cold storage\n+ exclusively use bitcoin to pay for all your monetary needs\n+ move to El Salvador or another bitcoin-centric community/region\n+ only participate in circular economies on the bitcoin standard\n\nThe beauty of bitcoin is that it’s a voluntary system that nobody controls. So don’t let anyone shame you into living up to their expectations of what it means to be a “real bitcoiner™️”. I’m somewhere in the middle of this list personally. The further I get down the list, the more curious I become about items a bit further down. I don’t expect I’ll be moving to El Salvador, but I’m a “real bitcoiner™️” and you can be, too. https://www.curiousdk.com/p/a-real-bitcoiner 889 \N 231006 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.66982528824096 0 \N \N f 208815206 \N 1 218106304 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458388 2025-03-29 08:47:38.944 2025-03-29 22:39:47.366 Mullvad VPN subject to a search warrant. Customer data not compromised \N https://mullvad.net/en/blog/2023/4/20/mullvad-vpn-was-subject-to-a-search-warrant-customer-data-not-compromised/ 10094 \N 458388 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 18.7221863241325 0 \N \N f 203287003 \N 1 159764299 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424235 2025-03-03 23:07:18.359 2025-03-29 22:39:47.367 Bitcoin-dev is now using Google Groups? The list of bitcoin-dev is now using google groups. No information will be shared.\n\nSome arguement that that was not a cypherkunk spirit. Weren't there better options?\n\n![GF_ZyaqWkAA9JoO.jpg](https://m.stacker.news/16045) \N 20840 \N 424235 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.84822407724982 0 \N \N f 619926888 \N 4 107834407 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 390147 2025-02-03 12:21:15.567 2025-03-29 22:39:47.367 Does the Economy Need Migrants? and related discussion There's apparently an anti-immigrant zeitgeist today of the [took our jobs](https://www.youtube.com/watch?v=QGmhLtsK2ZQ) variety -- the linked post from St. Onge, and this [related SN post](https://stacker.news/items/418743).\n\nThis is one of the issues I don't know much about, certainly not enough to get culture-warry about it. But it does strike me that this anti-immigration take both runs counter to the standard Libertarian / Austrian principle of _maximal free trade all the time_ and _everyone benefits from a free exchange_ etc etc. And it also strikes me that there is an avalanche of well-controlled empirical data on what happens to wages as immigration ebbs and flows. Sort-of Austrian Bryan Caplan goes on about this topic ad nauseum and [wrote a book about it](https://www.amazon.com/Open-Borders-Science-Ethics-Immigration/dp/1250316960) basically saying (I'm simplifying, but not drastically) that borders are bullshit and everyone should go and work wherever they want.\n\nSo. Can anybody who knows more than I do speak to this? With actual evidence, though? https://www.profstonge.com/p/does-the-economy-need-migrants 9276 \N 390147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.52956626222172 0 \N \N f 172493834 \N 1 196712633 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410672 2025-02-20 15:41:50.315 2025-03-29 22:39:47.367 Setting Sail from Wasabi \N https://nopara73.medium.com/goodbye-wasabi-c8116c88fb8c 20939 \N 410672 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 5.90522307960537 0 \N \N f 204342675 \N 1 89168856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427777 2025-03-06 16:17:24.228 2025-03-29 22:39:47.367 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/455980) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 19637 \N 427777 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7346054406247 0 \N \N f 131025855 \N 2 168801069 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442978 2025-03-18 23:42:00.916 2025-03-29 22:39:47.367 Bitcoin Purifier: Purify Your Node \N https://github.com/rot13maxi/bitcoin-purifier 1650 \N 442978 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 1.91195292254218 0 \N \N f 845710230 \N 6 214402844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:30:19.616 f \N \N \N 0 0 0 0 1 0 0 269421 2024-10-16 19:05:13.122 2025-03-29 22:39:47.368 Join us for the 1st Sovereign Engineering Cohort To say that I'm excited about [SEC-01](https://sovereignengineering.io/) would be an understatement.\n\n[Pablo](https://nostr.com/npub1l2vyh47mk2p0qlsku7hg0vn29faehy9hy34ygaclpn66ukqp3afqutajft) is obviously a legend, and my hope is that we'll manage to attract people like him: high spirits, pragmatic, optimistic, competent, technical, and not naive. Many things need fixing, and we need an army of people to fix them. But we have to do it right. We must not repeat the mistakes of the past. We must not lose sight of the principles that make [bitcoin](https://stacker.news/~bitcoin) and [nostr](https://stacker.news/~nostr) great in the first place.\n\nThe beauty of the orange coin and the purple nostrich is that they allow the building of things previously thought impossible. We see inklings of this already: [streaming money](https://value4value.info/), [zaps](https://zaplife.lol/), self-sovereign identity, [lightning prisms](https://dergigi.com/2023/03/12/lightning-prisms/), unconfiscatable wealth, timelocks, and more. I'm sure there's a multitude of things that we can't even think of yet. Things that will be obvious in hindsight. The goal of the Sovereign Engineering Cohort is to collaboratively dig for these things and figure out how to make them work for the long term. Explore the open seas that cryptosovereignty opens up. Without hubris. Without nostalgia. But with plenty of optimism and an eagerness to build towards a better future.\n\nWe haven't figured out all the details yet, but we're getting there. We'll share more updates as we move along. "Build the tools. Ship the future." That's the over-arching theme, with self-sovereignty at the center.\n\nIf all that sounds interesting to you, consider coming to Madeira to spend two months with a bunch of psychopaths (us).\n\nhttps://sovereignengineering.io/ \N 20377 \N 269421 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 15.6578773685264 0 \N \N f 114494356 \N 1 179678583 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428609 2025-03-07 13:04:50.069 2025-03-29 22:39:47.367 Ordinals website suffers DDOs attack \N https://x.com/rodarmor/status/1740080342957277612 20906 \N 428609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0412317894502 0 \N \N f 118526324 \N 1 102608098 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435679 2025-03-12 21:47:06.278 2025-03-29 22:39:47.368 How I became a cult member and how I got out – reposted from Ryan X. Charles \nBelow is a tweet by Ryan X. Charles on X about how the cult mindset works. \n--\nhttps://x.com/ryan_x_charles/status/1770361328944709710\n\n\nI became a cult member in 2017 when I met Craig Wight in person and truly believed he was Satoshi Nakamoto.\n\nI was convinced he was Satoshi because Gavin Andresen, Jon Matonis and Ian Grigg, people I respected, had claimed to verify he was Satoshi Nakamoto, including supposed key signing ceremonies. That, and he had the beliefs and actions of someone I thought was consistent with Satoshi Nakamoto.\n\nMy false belief in Craig Wright would go on to damage me financially in truly spectacular fashion. Because Craig told me to use Bitcoin Cash immediately after it launched, believing this was coming from Satoshi Nakamoto, a figure I idolized, I invested my personal savings into Bitcoin Cash and pivoted my business to focus exclusively on Bitcoin Cash. This would turn out to be a disaster in time, as Bitcoin Cash became BSV, and continuously fell in price and adoption.\n\nI used to be a big holder of Bitcoin. I sold all of it to support Craig Wright. Not only did my investments not pan out, but I have missed the giant bull run on Bitcoin as a consequence, even though I am an OG going back to 2011. I am out at least tens of millions of dollars, possibly more. The true scale of the losses will be determined when I account for all of my records.\n\nI realized I had failed in 2020. My business was not profitable, it was not growing, and I realized the technology I had been using exclusively, BSV, had very low prospects of success. I simply had to admit to myself my only option was to exit. I managed to sell the company and then began the long process of unwinding my belief system.\n\nFrom 2020 until now, I have spent a lot of time ruminating on the trauma I experienced from 2017 - 2020. Now that we know Craig Wright is not Satoshi Nakamoto, I understand. I was a cult member and was being manipulated by a psychopath who did not care if he ruined me so long as he had perceived near-term benefit.\n\nOne of the reasons why it took me so long to accept that Craig Wright is not Satoshi Nakamoto is that it would have to be a truly huge scam that would ultimately hurt everyone and even himself. Unfortunately, as I have learned, this is a known pattern of behavior for psychopaths. Craig Wright will indeed get his day in court, again, as the number of people he has hurt is enormous, and it is now established in court he has been lying this whole time. Lawsuits are inevitable.\n\nIt took four years of meditation and relaxation to grapple with the scope of my error. Even after all that time, I am still in shock with the declarations that came from the judge. The totality of evidence is overwhelming. Craig Wright is simply not Satoshi Nakamoto, and there was never a reason to believe that he was. I was totally wrong in a big way. Evidently, I am not as smart as I thought.\n\nI estimate I am only about 50% of the way detoxed from the cult, even after four years, as I am still learning to accept that there was never any convincing evidence he was Satoshi Nakamoto, and everything I thought I knew was all lies. Fortunately, there is an emerging network of survivors who are in touch and can lend each other support to grapple with the emotions involved in exiting a cult.\n\nCraig Wright was enabled by Calvin Ayre and Stefan Matthews, his co-conspirators going back to 2016 or earlier. While I cannot say for sure what happened from before 2017, I do know that the three of them orchestrated this giant scam. I know this from personal experience, and I am certain evidence exists to link them. Together, they have caused a catastrophe for anyone who got involved with them from the beginning until now.\n\nPlease be kind to the remaining cult members. They truly believe Craig Wright is Satoshi Nakamoto, and this blinds them to the evidence that is staring them in the face. They need kindness, not trolling on X. \N 4167 \N 435679 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.55087376223688 0 \N \N f 975955982 \N 9 193326003 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 22:16:12.162 f \N \N \N 0 0 0 0 4 0 0 457476 2025-03-28 14:26:11.117 2025-03-29 22:39:47.368 🧐 What’s Stopping You from Diving into a Bitcoin Career? If you're on Stacker News, I'm going to assume you're pretty deep into Bitcoin---whether it's with your money, your time, or both. You're likely very interested in sound money and what some might call "magic internet money," and chances are, Bitcoin is a significant part of your investment portfolio.\n\n\nGiven that, I'm curious: why aren't more people "working on Bitcoin"? By that, I mean anything from starting your own Bitcoin-related venture, to having a side project or a full-time job at a Bitcoin company. Maybe even beyond that---something like contributing to the ecosystem in a way that goes beyond just holding or talking about it.\n\n\nI get that there might be various valid reasons, but I'm really interested in knowing which are the most "popular" and also hearing about the ones that might not be so obvious. Especially considering that working on a Bitcoin project is a bit like "double-dipping"---if you're good at what you do, not only are you earning a living, but you're also potentially boosting the value of your own hodlings.\n\n\nHere are some reasons I've thought of:\n\n1. Not a technical/dev person, so options feel limited.\n\n2. No idea where or how to start.\n\n3. Tried to launch something, but it didn't pan out.\n\n4. Tried to join a Bitcoin company, but no luck so far.\n\n5. Feels like taking on even more risk (holding BTC + focusing your career on BTC).\n\n6. Just don't think it can be as economically rewarding as your current job or venture.\n\n\nI'd love to hear your thoughts, because I think we need more people working on and for Bitcoin.\n\n\nFor context, I work at Synonym, where we recently launched [Bitkit, a self-custodial Bitcoin & Lightning wallet](https://get.bitkit.to/app). \n\nWorking for Bitcoin has made me much happier than sticking with "safer" ventures or jobs, but I'm really interested in your perspectives, since everyone has a different approach to life, money and professional career. \N 17541 \N 457476 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.74234027528176 0 \N \N f 716029496 \N 7 191241382 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 153228 2024-04-04 00:17:20.42 2025-03-29 22:39:47.37 21 Rules to Become a Whole Coiner I talked to 21 whole coiners for advice about accumulating 1 full BTC ... \n\nHere are 21 lessons i leared:\n\n---\n\n# 1. Self custody\n\nAlways. Send your BTC to cold storage. Don't hesitate because of high network fees when mempool activity is high. Rather pay 10% or more to secure your coins than risk loosing 100% of a cosiderable amount.\n\n# 2. Back up well\n\nRestore a wallet at least once. Make sure you know how to get back your coins in a worst case scenario. (Also make sure your heirs are able to do it when time comes.)\n\n# 3. Never try to time the market\n\nDCA. Set it and forget it. Monthly, weekly, by-weekly or daily doesn't matter. Choose what best suits you. Do this for the majority of your BTC allocation. You can not time the bottom. Period. (But you can have a little pile of FIAT to buy dips when they occur.)\n\n# 4. You can not time the top either\n\nNever sell the majority of your Stack. Take a little profit if things go parabolic to reward yourself but always keep your main stack intact. It can be hard to get it back. And it will only go up with time. HODL and understand what you own.\n\n# 5. Keep emotions out\n\nGreed and fear are the main factors for people to get wrecked. Slow steady purchases, even tiny ones, all go to building a stack.\n\n# 6. Never use leverage\n\nJust don't. No, not even if BTC is below 10k. Make sure every sat you own truely belongs to you.\n\n# 7. Every sat counts\n\nEven if it's small amounts, just keep dca-ing and stacking sats. Little pieces add up. 0.001 BTC = $25 at the time of this writing. Do this 100 times and you have a tenth of a BTC.\nIf you have very little FIAT, stack free sats. You can:\n\n- use faucets (like [Heads or Tails Game](https://www.claimbitcoin.fr/))\n- do tasks (like [microlancer.io](https://microlancer.io/))\n- play games (like [Bitcoin Miner](https://blog.zebedee.io/bitcoin-miner-game/))\n- shop with services like [lolli.com](https://www.lolli.com/) or [foldapp.com](https://foldapp.com/)\n- listen to podcasts (with [fountain.fm](https://www.fountain.fm/))\n- or be active and provide value in communities like [nostr](https://nostr.com/) or [stacker.news](https://stacker.news)\n\nRemember: Faucets used to give hundreds of Bitcoin per day. Now it's 5-250 sats 10 years later. In 10 years it may be 1-5 sats.\n\n# 8. Don't go all in\n\nKeep FIAT to survive hard times without being forced to sell BTC. (for example 6 months of monthly spending)\n\n# 9. Enjoy life while stacking\n\nThere is only one thing that is more precious than Bitcoin. **It is lifetime**. Stack sats, but also stack moments. Be present and enjoy life. Every day. No amount of BTC can ever buy back lifetime. Remind yourself of this often.\n\n# 10. Don't forget yourself\n\nAlways have a little fun money to maintain hobbys, traveling and to treat yourself. Otherwise you might burn out quickly.\n\n# 11. Involve your significant other\n\nMake sure he/she knows the reason why you do what you do. Otherwise you risk burnig out him/her too.\n\n# 12. Automate and relax\n\nWhen you check you portfolio ten times a day or more think of automating things. Don't trade lifetime and serenity for small gains.\n\n# 13. Don't do shitcoins\n\nMost altcoins never reach their ATH again. BTC and BTC only.\n\n# 14. Stay humble\n\nNever get lured by offers that promise yield in exchange for holding your BTC. FTX was a recent example of how that can end.\n\n# 15. You lost your keys in a boating accident\n\nNever share how much Bitcoin you own. Better yet, don't share that you own any at all (exception: rule #11). The less is known about you having BTC, the less risk. Also consider buying non KYC. For example with [robosats](https://learn.robosats.com/). \n\n# 16. Don't rush. Be patient\n\nIt is a marathon, not a sprint. Time is on your side. You already own Bitcoin. **You won**. It isn't a race like with FIAT where you have to fight inflation. You preserve wealth.\n\n# 17. Increase your FIAT earnings\n\nLearn profitable skills to increase your buying power and generally grow as a person. Even if you loose all your wealth, nobody can take away your skills to accumulate it again.\n\n# 18. Don't compare\n\nEvery stack of BTC is better than no stack of BTC. And even if you are a whale: there will always be a bigger fish somewhere in the sea ...\n\n# 19. You don't need 1 full BTC\n\nThis was huge for me! The urge to have one full BTC is very FIAT minded thinking. Goals are cool but: \n\n**21 million BTC / 8 billion humans in the world =0,00262500 BTC**\n\nAnd not even that is possible because of the 1,1 m BTC wallet of Satoshi Nakamoto and lost coins. You can find out the exact amount every individual on earth could possibly own at [satoshisperperson.com](https://satoshisperperson.com/).\n\nNot everyone needs a whole coin. About 225.000 sats = your little block of Bitcoin. ... That's roughly $55 at the time of this writing. Got that? Congratulations! 99% of people are still on zero. Safe your share and then slowly add more every pay check.\n\n# 20. Change perspective\n\nYou can change settings in your wallet to display value in sats rather than BTC. This liberates from the feeling of shortage and the urge to fill that full BTC. It opens up the feeling of gratitude and abundance.\n\n# 21. Always learn\n\nKeep educating yourself about Bitcoin. The rabbit hole is deep ...\n\n---\n\n### Thank you!\n\nThank you wonderfull people who helped me gather those tips. I chose conciously to not give personell credit in this post because of rule #15 =)\n\n### Check out Nostr\n\nHuge shout out to the [Nostr](https://nostr.com/) protocoll and all the devs involved. Without an anonymous network like this it would have been extremely hard if not impossible to gather that much information from real whole coiners in that short amount of time. If you haven't tried Nostr yet, consider giving it a try. It's an extremely positive community where value flows like Bitcoin in the early days.\n\n### What have i missed?\n\nDo you agree with these tips? Did i miss any? Please let me know and help refine this set of rules so we can breed more an more whole coiners over time ... or let's rather call it 'satoshi millionaires' (see rule #19 ;-)\n\n*P.S. Feel free to tip me some sats or share this post if you find it helpful. Working on my own little stack too ;-)*\n \N 20504 \N 153228 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 5.77231371675069 0 \N \N f 48221056 \N 2 138747869 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 449394 2025-03-23 11:21:41.488 2025-03-29 22:39:47.372 Boycott Bitcoin Magazine & Their Shitcoin Conference It is with great disappointment that I write this thread about Bitcoin Magazine.\n\nI personally have high standards for what constitutes a "Bitcoin" conference. I do not want to pay to be bombarded by shitcoiners and their ilk. But last year, the Bitcoin 2022 conference did just that. It was heavily infiltrated by those promoting NFTs, blockchain, crypto, DeFi, shitcoins, centralized yeild farming exchanges and algorithmic stablecoins.\n\nMany of them were even sponsors!\n\nBitcoin Magazine enabled these 3rd party middlemen, their shitcoins, corruption and products. In exchange they accepted their fiat sponsorship, and then turned around and invested that fiat heavily into Three Arrows Capital and GBTC.\n\nThey have lost millions of dollars on these shitcoin and paper IOU trades.\n\nIt is extremely concerning to see that now, Bitcoin Magazine is selling NFTs at auction for a minimum 10 BTC each. It's surreal to see them crossing the rubicon into shitcoin-scam city.\n\nAre Bitcoin Magazines finances really so bad that they need to stoop so low as to sell receipts of JPEGs on a centralized standard?\n\nIt is clear that they have sold out to the highest bidder before. But this is a new low.\n\nBefore they were simply enabling the scammers and being paid for it. Last year's shilling of shitcoins on stage by Novogratz and O'Leary highlighted this. Now they are removing the middleman and going direct as NFT scam peddlers themselves!\n\nIt was never Bitcoin Magazine directly doing the scamming. They were just letting it happen. Now they really have their hands fully in the shit.\n\nIn conclusion, I urge the Bitcoin community to boycott Bitcoin Magazine until they take steps to promote the Bitcoin ethos and contain the shitcoiners. The community has the power to demand higher standards for Bitcoin conferences and publications. Let us use that power to ensure that Bitcoin Magazine does not promote distractions and subversive elements to the Bitcoin ethos.\n\nSome things you can do is:\n\n* Organize your own unconference Bitcoin meetups in the area from May 18th-20th.\n* Don't attend their conference or buy their products or murch\n* Let them know your displeasure on social media.\n* Send a variation of this letter to their email [contact@btcmedia.org](mailto:contact@btcmedia.com) (use chatGPT for a different version of this letter)\n* Depending on their response, further actions may be forth coming, my goal with this letter is for them to at least stop selling and promoting shitcoins themselves.\n* If you work for Bitcoin Magazine and also feel the same way as this letter, consider speaking out or getting in touch.\n\nThe below text is verbatim from their website: https://bitcoinmagazine.com/code-of-ethics\n\n>Our Code of Ethics is the code we not only work by, but live by, and expect of each other, our business partners, and suppliers. Not only do we operate according to our ethical principles and requirements, we hold ourselves and those we work with to full accountability for being in full compliance with applicable laws and regulations worldwide. \N 20840 \N 449394 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 19.0473019230715 0 \N \N f 309800493 \N 5 69466420 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 416536 2025-02-25 17:05:46.662 2025-03-29 22:39:47.373 I am Bernard Parah, CEO of Bitnob, AMA! I am Bernard Parah, CEO of Bitnob AMA\n\nHi everyone! I’m @bernard_parah, Founder and CEO of Bitnob. \n\nBitnob - Bitcoin + Noble (uses) started as a project to demonstrate the good uses of Bitcoin beyond speculation. Our distributed team is based out of Nigeria, Ghana and some parts of Europe. Come visit our Bitcoin hacker houses in Abuja and Accra anytime you find yourself in Nigeria or Ghana.\n\nIn an environment where we are having to deal with very strict monetary controls such as the ability to only spend $20/month from our debit cards, double-digit inflation and high remittance costs, Bitnob uses bitcoin and the lightning network to connect Africans to the world.\n\nRecently, we became the major sponsor of the Nigerian Professional Football league, which is the equivalent of the English Premier league, through this medium, we can get Bitcoin to the millions of people who need it around the country\n\n\nAsk me anything about:\nBitnob\nLightning\nBitcoin use cases in Africa\nFarming (haha)\nSports\n\nLet’s go🚀 \N 20655 \N 416536 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.5664774052881 0 \N \N f 377388243 \N 5 129082857 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 456495 2025-03-27 16:21:04.674 2025-03-29 22:39:47.375 Opinion: PWAs and Bitcoin are a toxic marriage Somewhat related to [this post last year](https://stacker.news/items/329333).\n\nI admire the vision for what Mutiny, Cashu wallets, and other PWA-focused devs are building, but I must admit I am concerned by the PWA-maximalism which I have seen espoused here and on Nostr. \n\n## Background\n\nIf you're not up to speed: PWAs are very popular in the BTC space right now because (correct me if i'm wrong) Apple and Google are frequently censoring bitcoin and especially lightning applications submitted to their respective mobile app stores. PWAs offer an end-run opportunity where users can "install" a PWA on their mobile phones without either party needing to jump the Apple/Google garden walls.\n\n## Thesis\n\nPWAs are a poisoned well for bitcoin wallet devs parched of free (libre) distribution channels. We can drink from this well for a while, but not forever, and certainly not if we expect the bitcoin wallet userbase to grow.\n\n## Survey\n\nConsider your favorite PWA wallet. Let me ask you a few questions to see whether this PWA wallet is right for you.\n\n1. Are you OK with your wallet phoning home to the developers every time you open it? \n1. Are you OK with wiping your seed every time you clear your browser cookies/storage?\n1. Are you OK with your wallet constantly loading and executing code served by a remote computer?\n1. Can you accept the risk that a single successful [domain-name takeover](https://book.hacktricks.xyz/pentesting-web/domain-subdomain-takeover) or [BGP hijacking](https://en.wikipedia.org/wiki/BGP_hijacking) attack on the PWA would result in your wallet seed being permanently and silently exposed? (IF you open your wallet at the time of the attack) \n1. Are you aware that TLS - a [historically flawed and brittle](https://github.com/IBM/tls-vuln-cheatsheet) encryption protocol - is the _ONLY_ way a PWA wallet installation can be verified? (no PGP signatures)\n1. Can you accept that a TLS middle-man can compromise your wallet any time you open it on an insecure network?\n1. Do you trust _the entire distribution pipeline of the wallet_ with your money? This includes the software used in building the wallet itself (which is fundamentally just a bunch of HTML/CSS/JS files), and also the services used to distribute those files, like AWS, Cloudlfare, DNS servers, certificate authorities, and all the web2 technology stacks they depend on.\n1. Do you trust your browser's developers to properly enforce site isolation? (e.g. if you open `evil.com` in a new tab, that site shouldn't be able to read or write to the memory/storage of the `mutinywallet.com` tab).\n1. Have you planned and tested how you will recover your money if the wallet's domain is taken offline tomorrow?\n1. Can you live with the risk of governments seizing or silently surveilling your wallet? (Think of how effectively the US government could have deanonymized or rug-pulled users of the now-seized Samourai wallet if it had been distributed as a PWA)\n\nIf you can answer "yes" to all the above questions, then keep calm and carry on: PWAs are a fine choice for you.\n\nIf not... perhaps you should take a deeper look.\n\n## App Stores Suck Too\n\nI'm not saying apple and google's walled gardens are any better. They rely on similar flawed infrastructure to distribute apps to their users. However there are two very important distinctions to be emphasized:\n\n### 1. PWAs cannot be signed, verified, or reproduced\n### 2. PWAs are updated every time you open them\n\nThe combination of these two properties is what makes PWAs toxic, in my view at least. \n\nBy comparison, app stores distribute builds which are signed _by the developers_ so that updates can be verified after initial installation without trusting the distribution pipeline. Auto-updates can be disabled if needed. For android apps installed directly by APK, one can even add a layer of PGP verification or manual APK-signature verification.\n\nBitcoin Core is probably the best example of safe software distribution: It is compiled with reproducible builds, PGP-signed by numerous developers, and intentionally shipped without any centralized auto-update or phone-home mechanism, because those could be used to force undesirable changes onto unwilling users. \n\nSecurity-sensitive software in general should be updated only with the consent of the user, because the user relies on the software to act in their interest, as their agent and representative in the digital world. A software which changes itself arbitrarily can easily morph into something which acts _against_ the user.\n\nObviously a PWA wallet for pocket spending money is not as high-value a target as the base-layer bitcoin node software, but that argument only works for as long as the sum value of money stored in that wallet _across all users_ remains small. If any wallet gets popular enough, even with very small individual balances, the wallet software and distribution pipeline will eventually become a desirable target. \n\n## An Easier Target\n\nPut yourself in the position of a hacker targeting self-custodial wallets. Since private keys live on users' devices, you'll only be able to steal bitcoin if you can sneak your malicious code into a wallet update, or otherwise compromise a user's device.\n\nYou have the the choice between two wallets: one distributed by app store, and one distributed by PWA, both otherwise identical in attack surface, protecting an equal value of bitcoin. Which do you attack? \n\nYou attack the PWA. Why?\n\n- Your malicious code stands more chance of reaching more victims faster, because updates are always automated and are fetched far more frequently. This means a bigger payout for your effort.\n- The distribution pipeline has more attack surface due to the lack of build-signing. This means the attack itself will be easier and cheaper to execute.\n\n## From Source\n\nMost of the risks i've mentioned so far can be resolved if one builds and runs the PWA wallet from its source code.\n\nUnfortunately PWAs are very difficult to build from source. Whereas a desktop or mobile app can be built from source with varying degrees of difficulty and then simply installed and executed, a PWA must be built, AND served over an HTTP connection to a browser, and so the user must also supply their own HTTP server and figure out how to set up TLS, reverse proxies, SSH tunnels, or other ways of routing their browser's HTTP request to the server running the PWA.\n\nOften open source PWAs are not meant to be run from source by amateurs. Devs don't always document the build process or how to serve that build securely. And so most people can't figure it out, and just use the devs' own published PWA URL. We're back to square 1.\n\n## Conclusion\n\nA PWA wallet is certainly better than no wallet at all. But I would urge devs who ship PWA wallets to also ship a binary distribution of their app which is securely signed, and does not auto-update itself. \n\nLong term, i believe developer-driven distribution tools like F-Droid and Obtanium are the answer. I expect the EU will soon force apple to allow users to install apps manually on iOS devices, like Android users can currently do. PWA wallets will then no longer be necessary or desirable, and we can avoid learning our lesson the hard way. \N 20841 \N 456495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.03859980116502 0 \N \N f 283814980 \N 2 104927399 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 421805 2025-03-02 02:09:52.978 2025-03-29 22:39:47.375 Open-source BTClock parts for sale In May I already shared here that I worked on the BTClock (https://stacker.news/items/175847). Together with another bitcoiner we designed a kit with a custom made PCB which you can order on the webshop, so you can build it yourself. To build it you do to order the ePaper displays and the ESP32 (Wemos S3 mini) on AliExpress.\n\nOn the [wiki](https://github.com/btclock/btclock_v2/wiki) there is a step-by-step guide. Also there is a [Telegram-group](https://t.me/+Kfz65km2XfY3MmE8) where users and builders can ask questions and ask/give support. \n\n![IMG_0836.jpeg](https://m.stacker.news/4915) https://btclock.store/ 2010 \N 421805 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 1.90844955433001 0 \N \N f 145229988 \N 1 23937910 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424046 2025-03-03 19:49:38.048 2025-03-29 22:39:47.367 How many people actually buy bitcoin 100% non-KYC? Just curious. We have a lot of people who act like KYC is the devil, but I bet that's not actually most of us. Maybe I'm wrong. \N 20788 \N 424046 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.82758723352464 0 \N \N f 58863140 \N 1 110496787 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446942 2025-03-21 14:42:42.465 2025-03-29 22:39:47.368 Gresham's Law or Thiers' Law? \n# Old Reflections on New Questions\n\nThe reign of Henry VIII and his son Edward VI were not only known for the invasion of France or the turbulent beginning of the Anglican Church, they also left a very harmful historical mark: high inflation.\n\nOnly between 1542 and 1551 did the coins of the kingdom lose 1/3 of the silver content they initially had.\n\nThere were successive episodes of reduction in the percentage and/or purity of the metal, in the greatest period of highest English inflation of the entire 16th century.\n\nThe problem was pushed forward until Edward VI's eldest half-sister, Queen Elisabeth I, took the throne in 1588 with the purpose of trying to reorganize the monetary system, with the famous merchant Sir Thomas Gresham as her main adviser.\n\nhttps://imgprxy.stacker.news/4_VVroboJ_2iCwADskaFIrT3Pe6pp1jAniKb5xOzlN8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS81ZDZiNDY2MWJjNzNjYmQyZWM1NzJjZDNiZDUyNzA5NTI2NGNmODM2ZWRhMWE1YTFjYTc3MjA5ODRiNzdlZTU2LmpwZw\n _(Sir Thomas Gresham (1519-179), economic adviser to Queen Elisabeth I and author of historical letters that later formed the basis of Gresham's Law)_\n \nFollowing the advice of Sir Gresham, the queen herself ordered the collection and re-minting of all coins in the kingdom, an unpopular process that bears similarities to what is now understood as “monetary tightening” or QT (quantitative tightening).\n\nAt the time it was described as a necessary sanitation of the currency that sought to restore the quality of the coins that circulated in English territory.\n\nDuring this process, the shortage of coins was such that it became a popular saying that citizens of London were plagued by a 'triple plague': the pestilence, the shortage of coins and the lack of food.\n\nAlthough the effect of this initial measure actually contributed to the scarcity of means of payment in English territory, the results ended up being excellent and the sanitation promoted by the queen meant that inflation during the reign of Elisabeth I was much lower than her predecessors, around of 50% in 38 years.\n\nWith a better currency at their disposal and more freedom to negotiate through the repeal of several laws, the English were soon able to live their own version of the Renaissance, with more solid economic growth and enormous artistic development, not by chance that the Elizabethan theater is still seen today as one of the richest periods in Western cultural history.\n\nIt was a period that nurtured geniuses of philosophy such as Francis Bacon, and also reached the pinnacle of theater and literature by authors such as Christopher Marlowe and William Shakespeare himself, who died rich with the fruits of his literary production and shareholding in theater companies.\n\nThough necessary to restore soundness to the coin, Good Queen Bess's efforts had their practical limits. The sanitation promoted by the queen did not prevent the widespread crime of clipping coins to reduce their metallic content, a practice that was then known as money clipping.\n\nA first irony of clipping is that it was not simply a crime of fraud or theft, but rather a crime of treason, since the very figure of the monarch was stamped on the coin and his degradation a crime of lese majesty, a type of blasphemy.\n\nThose who practiced clipping, in addition to taking advantage of it, also violated the very dignity of the monarch whose face was stamped there.\n\nThe second irony is that historically the greatest practitioners of clipping were the irresponsible monarchs themselves, such as the queen's father and half-brother, who used the royal prerogative to finance their profligate governments.\n\nNo wonder the malpractices of kings in monetary matters provided the great memetic material of the time.\n\n> “It is no English treason to cut French crowns, and tomorrow the King himself will be clipper (Ato IV cena I 222)"\n\nUpon mentioning that the king himself will be a clipper, he announces that he intends to behead the French king, jokingly confessing his monetary crimes as well. In another Shakespearean play, King Lear appears in a scene in disguise and boasts that he can do this with impunity by saying:\n\n> "“No, they can't touch me for coining; I am the king himself” (Ato IV cena VI 82)"\n\nIf the reader of these plays does not keep in mind the political and monetary double meaning of these references, he simply will not understand Shakespeare's fine irony and economic criticism in these passages.\n\nWhether practiced by sovereigns or the general population, coin clipping made the currency medium full of coins of different qualities, which brings us back to Sir Thomas Gresham and the famous law that earned his name, which is usually formulated simply as: bad coin drives out good coin.\n\nHistorical accounts say that this famous “law” originates from a letter from Gresham to Queen Elisabeth I herself, but this was just a rationalization of the British economist Henry Dunning Macleod in 1858, who simply baptized as “law” the tendency of bad money to expel the good coin noted by Gresham in his charts.\n\nBut we must analyze this formulation with due care. It is a common mistake among economists (especially those who defend the monopoly of coinage) to describe Gresham's Law as simply 'the bad coin drives out the good coin', as if in an economy where two coins circulate in which one one that retains value.\n\nAnd one that does not, people will normally want to use and circulate those that they do not retain, that is, to use the weak currency and keep the good one for themselves, generating a shortage of good coins in the market.\n\nThe false conclusion many come to is that the free competition of currencies cannot be trusted as people will only want to accumulate and not spend the good coins and that a control of this “anarchy” by a monopoly authority is necessary.\n\nThere are people who go further and use Gresham's Law to even explain the need for the invention of paper money, which would remedy this problem inherent in commodity money by establishing a single standard.\n\nGiven this confusion, it's good to put things in their proper places. The fact that bad money crowds out good money has been common in human history since the invention of legal tender.\n\nThere are reports of this phenomenon in antiquity and also in the medieval period, just look at the references in the scholastic treatise on coins by Nicolau Oresme in the 14th century.\n\nThat's why we must first ask ourselves: the bad currencies drive out the good ones, but where do they drive them out? And why are they actually kicked out?\n\nGresham's exact words written to the Queen were:\n\n> “all your fine gold was conveyed out of this your realm"\n\nThis was because the bad and degraded coins circulated in the kingdom of England, as the biggest merchants, especially those who dealt with international trade, kept the good and intact gold coins to use them in their business, as a good currency to pay the invoice of importers in international trade as well as today.\n\nExpelling, then, is in the literal sense, since the good coins left the kingdom of England to be used in the international market, where there were no price controls or forced tender laws. Worse currencies did indeed drive out better ones, but only under special conditions.\n\nLet us imagine that there is a coin in circulation that weighs one ounce of silver and that has the face value (or face value) of one ounce of silver as well. After circulating for a long time and or after a few scratches by profiteers, this same coin actually contains less than an ounce of silver.\n\nIt is expected that in a free market people would accept this currency at its reduced value and its face value would be ignored or discounted. But suppose the government, by law or decree, dictated that bad coins should be accepted, by legal tender, at their face value and not at the value of their metallic content.\n\nWhat the government does in this case is to impose price controls via coercion, a direct intervention in the market, making everyone forced to accept the cat in a poke, that is, the actual value as the nominal value - in the Wealth of Nations by Adam Smith.\n\nThe expressions by weight are used, that is, by weight, or by tale, at face value, which causes confusion for some readers.\n\nIt should be noted that in this case, the expulsion of the weak currency does not occur solely on the grounds that the weak currency will lose value over time, that is, due to the future prospect of higher inflation.\n\nThe reasoning is: since this person, the producer of the good or service, is obliged by the law of legal tender to accept the lesser value coin as if it had a greater value, I will use the lesser value to make the payment.\n\nWorn and scraped coins start to circulate with a premium artificially imposed by the government and new and pure coins, as a corollary, start to circulate with a discount.\n\nThe expulsion is due to this distortion because people were not free to choose the monetary good they wanted and this also occurred when governments instituted a fixed price in the exchange between silver and gold.\n\nIn Sir Gresham's sixteenth century the laws of legal tender were justified by the authority of the king's sovereignty; in the kingdom it was an offense not to accept the royal currency even at its face value, that is, at the price that the sovereign determined.\n\nPenalties for not accepting bad coins as good ones included imprisonment, fines, and confiscation of the value used. With this punitive background, it is no wonder that the bad coins were the ones that circulated the most. Therefore, the correct formulation of Gresham's law is:\n\n> Money artificially overvalued by the government will entail the expulsion of money undervalued by the government\n\nWhen, listening to Gresham's advice, Elizabeth I abolished many of these laws and let people freely assess the values ​​of bad shillings, good coins became part of everyday life in the kingdom again.\n\nAs stated above, Gresham's 'law', which is nothing more than this tendency caused by direct intervention in the economy, is generally invoked by people opposed to monetary competition, as in the famous work of William Stanley Jevons, Money and Mechanism of Exchange (1882).\n\nWhere Jevons rejects Herbert Spencer's arguments in favor of private coinage using Gresham's law. But, in situations where there is no authority forcing money, the opposite tends to happen: the good currency tends to expel the bad currency.\n\nThere are several examples where this occurs, the most common and known is in foreign trade itself, the good currencies drive out the bad ones to this day.\n\nThe famous fiorino d’oro (florin) was for centuries the most used currency in international trade due to its reputation for maintaining the quantity and quality of gold for centuries, which is why today it is described as the “dollar of the Middle Ages”. But not only in foreign trade.\n\nIn the United States, during the California gold rush, private gold coins circulated freely, as did the private coins of the Philadelphia Mint. Although dollar-denominated, there were no legal tender laws to enforce them, people were free to price them as they pleased or reject them in their business.\n\nIn practice, only the best coins were accepted as the others were not representative of their dollar value. These conditions mirrored those found in international trade, where there are no legal tender laws forcing merchants to accept means of payment at face value.\n\nThe reader may rightly think that we are now in another era of monetary history and that we have been under the absolute dominance of fiat currency for many years now, where all this discussion about the difference between face value and fact value no longer exists.\n\nUnder the validity of nominalism and the dematerialization of money, the only official value of a fiat currency is exactly what is stamped on it, that is, a tautology where a currency of one Real is worth one Real, a coin of one Dollar is worth one Dollar, and so on, without a relevant metallic content that can serve as a comparison.\n\nWould it make sense, then, to still talk about Gresham's law?\n\nThe money ballast was lost, or rather stolen by the government, but the legal tender laws obviously did not go away. On the contrary, they have even been expanded in various ways, from the banning of so-called “gold clauses” to the widest range of capital controls by central banks that exist in virtually all jurisdictions.\n\nTaking advantage of these new powers, governments today, far more spendthrift and far more indebted than any sixteenth-century sovereign, can simply issue new units at practically zero cost, increasing the monetary base without needing any precious metals to serve. base or ballast.\n\nThe fiat currency we have today is the government's full product, not a free market choice. If there weren't tight capital controls.\n\nLegal monopolies and legal tender laws that oblige banks and citizens to use the different fiats, they would not exist and would be rejected by producers and traders who would certainly use better monetary goods.\n\nFiats, therefore, are even more inferior forms of money, as they are much more inflated and require an entire coercive structure to continue to function. However, people and companies, just like in the 16th century, still want a good currency to store value for the good or service they are offering in exchange.\n\nThe birth of fiat currencies was, of course, a way to enhance seigniorage, whose only limit is hyperinflation and/or the complete inapplicability of currency laws for practical reasons.\n\nIf these laws are in place to force someone to receive money that no one or the majority sees value, they simply become disobeyed. They become one of those laws that simply “don't work” and are ignored by the vast population.\n\nFor such situations, it is appropriate to invoke Thiers' Law, named by Peter Bernholtz in honor of the French politician and historian Adolphe Thiers, which precisely describes situations where legal tender laws are ignored and the good currency tends to expel the bad currency.\n\nThis “law” is also a universal trend: whoever produces something of value always wants to receive good money and, in the absence of laws that oblige the opposite, this tends to be the dominant behavior of the market, which ends up eliminating bad coins.\n\nAfter the invention of Bitcoin, the digitization of money now acts as a double-edged sword for fiats. Governments still manage to take advantage of the widespread and naturalized existence of fiat currency, but legal tender laws do not work in a world where open source money is easily available to all.\n\nBitcoin, a network that you can use without having to ask anyone's permission and in a sovereign way, has practically made any kind of law inoperable.\n\nIn addition to technological change, awareness is growing that it is profoundly unfair to force someone to accept money he does not want to accept in exchange for his own produced good or service.\n\nTechnology has also evolved to the point where a consumer can, using certain digital wallets, pay in fiat but the seller will receive in Bitcoin or vice versa using an instant buy and sell mechanism. This is a sign that we are in another world where the structure set up to make a fiat operate is no longer applicable.\n\nWe can cite numerous other arrangements. For example, today in Argentina, in addition to several unofficial exchange rates, it is possible to pay bills at a restaurant using QR codes issued by brokers with parallel exchange rates (see here) - [https://www.youtube.com/watch?v=UnZG3t-uvhg].\n\nFor these reasons, I see the claim that people are just accumulating Bitcoin without wanting to spend and that this pattern will continue from now on is wrong.\n\nUnder conditions of freedom and when many people know of the superiority of Bitcoin, it will be more common for producers of goods and services to demand payment in the best currency of all.\n\nThis will force consumers to buy Bitcoin in order to satisfy this market demand. Thiers' law will normally apply: Bitcoin will make other forms of money obsolete and they will no longer be accepted in the market naturally.\n\nIf central banks do indeed try to deploy their digital currencies to retail (Real Digital, Euro Digital, Dollar digital, etc.), they too will have to compete with Bitcoin and will certainly lose out as they are even more inferior forms of monetary goods. Long live freedom.\n\nthe text was published on guilherme bandeira's substack (https://guilhermebandeira.substack.com/) \N 21320 \N 446942 \N \N \N \N \N \N \N \N Linux \N ACTIVE \N 22.7274746519012 0 \N \N f 1004341176 \N 10 31185339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:46:10.059 f \N \N \N 0 0 0 0 7 0 0 330698 2024-12-15 12:14:16.154 2025-03-29 22:39:47.375 Analyzing the 2013 Bitcoin fork \N https://21ideas.org/en/analyzing-2013-fork/ 1003 \N 330698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5494172226312 0 \N \N f 1105209072 \N 9 24920816 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457080 2025-03-28 07:12:23.295 2025-03-29 22:39:47.376 (Bitcoin I promise) I interviewed Mega Rich Crypto CEOs and Protestors in Paris \N https://youtu.be/fA4BnRywxJk 20026 \N 457080 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 21.823593172831 0 \N \N f 291818911 \N 2 221918435 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3397 2022-10-31 16:26:08.551 2025-03-29 22:39:47.376 Building in public is about sharing your losses too Your victories mostly speak for themselves.\n\nIt’s difficult to learn from sources that hide information. Training models should compress reality to be concise. Success stories that hide loss train you to worship other people.\n\nA person who aspires to make things wants to learn what’s required to make things. Loss is what's required. Lots of it. Progress is made by doing something new. If it's worthwhile, it will be hard. If its hard you will lose many times before you succeed. \n\nIf you want to make things, find something worthwhile to make. Embrace that you'll fail and likely change course before succeeding. Succeed and seek again.\n\nThe biggest difference between you and whoever you want to be isn't their success. It's their loss. \N 21072 \N 3397 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0857736557276 0 \N \N f 287687589 \N 3 239842403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457655 2025-03-28 16:15:32.215 2025-03-29 22:39:47.376 BlueMatt: Next few years are as existential for bitcoin as the Blocksize Wars. *this is a good, if sobering, read. Emphasis added is mine.*\n\n> These next few years are as existential for bitcoin as the Blocksize Wars.\n> \n> Back then it was about who got to decide what bitcoin was, now it’s about what bitcoin is.\n> \n> To most of us, bitcoin was always a tool for freedom - freedom to transact with who you wanted without trusting any third-party who could prevent you from doing so. But this is now a question.\n> \n> While Bitcoin’s price skyrocketed, developers focused on building tools to ensure this goal was met - building a robust, stable foundation in Bitcoin Core, building out the Lightning network to enable cheaper payments with better privacy than “tell everyone everything you’re doing”, exploring (and implementing) tons of ideas for other scaling from sidechains to statechains to timeout trees to Ark to…\n> \n> Sadly, all the ideas for making bitcoin (or any cryptocurrency) actually useful for transacting trend towards having some untrusted party in the flow of funds - whether its a rollup or sidechain with one or ten chain operators, mobile lightning with an LSP, a statechain operator, ASP, etc, **we just haven’t cracked building cryptocurrency payment rails without an (untrusted!) party being involved.**\n> \n> With regulators cracking down and more and more participants in the bitcoin ecosystem only interested in a 21M coins limit and seeing any form of non-KYC payment rails as hostile to the value of their investment, these centralized parties are increasingly going to be targets, and over the past few months we’ve even seen proactive closures to avoid regulatory scrutiny.\n> \n> While there may have been a chance at clarifying (US) regulations that an untrusted party in the flow of funds isn’t required to perform the usual slate of KYC nonsense that strangles the traditional finance world, we squandered it expending all of crypto’s political capital pushing for securities reform to ensure token issuance is (maybe) legal rather than trying to ensure people can meaningfully transact without the entire world learning what they’re doing.\n> \n> Worse, with mining (pools) as centralized as ever and relatively little desire to change from from most miners, every layer of bitcoin is centralized and ripe for regulatory capture. While Sv2 or p2pool revival has a chance at improving this, the push for increased expressiveness on bitcoin and the MEVil that may come along with it may all but close the door to decentralized mining.\n> \n> With where bitcoin is today its hard not to see a bleak vision of the future. Building a system that enables trustless global transacting was always going to be an uphill battle, but I always anticipated most bitcoiners would remain focused on this goal. Instead, today, the bitcoin community is focused on petty squabbles and increasingly headed for yet another civil war.\n> \n> Sadly I don’t have any great solutions here. If bitcoiners want to preserve what we’ve built and fight for it **the focus needs to be on drastic improvements to default wallet privacy across the ecosystem, aggressive investment in regulatory change (and not through lobbyists focused on securities regulation for crypto token issuance), and operation of scalability solutions across the world, not just in the US.** Sadly, all of these areas are horribly underinvested in, and invested in at only a tiny fraction of the amount of energy that has gone into other areas of bitcoin. https://bluematt.bitcoin.ninja/2024/05/11/bitcoins-precarious-position/ 895 \N 457655 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 5.79025963327577 0 \N \N f 705433728 \N 5 229435783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 3674 2022-11-08 18:31:00.353 2025-03-29 22:39:47.369 Details emerge of surprise board coup that ousted CEO Sam Altman at OpenAI \N https://arstechnica.com/information-technology/2023/11/report-sutskever-led-board-coup-at-openai-that-ousted-altman-over-ai-safety-concerns/ 15367 \N 3674 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 28.601730441413 0 \N \N f 1163595665 \N 8 84686259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448415 2025-03-22 15:38:42.289 2025-03-29 22:39:47.37 Off Grid Steve- Sold his house for Bitcoin Great new video from @JoeNakamoto\n\nhttps://www.youtube.com/watch?v=V_PNiqIOjVA \N 21810 \N 448415 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 4.69002413713014 0 \N \N f 202205402 \N 1 51227110 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:09:18.789 f \N \N \N 0 0 0 0 1 0 0 403648 2025-02-15 03:35:08.213 2025-03-29 22:39:47.37 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/479541), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 20504 \N 403648 \N \N \N \N \N \N \N \N history \N ACTIVE \N 11.5333687651877 0 \N \N f 360972114 \N 6 112802697 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401351 2025-02-12 23:10:10.046 2025-03-29 22:39:47.37 Is game dev really so bad? Everything I've heard about game dev gives me the impression that it is one of the hardest niches to be a software developer in. I've heard it's highly competitive, pays less on avg (vs some equivalent frontend or web position), and the work hours are extreme (at least 10-12 daily).\n\nIs this true from your experience?\n\nBefore I ever discovered Bitcoin or learned how to program I always wanted to make games (I think this is common for kids who grow up playing games).\n\nI remember the first ever coding I did was simple scripting in second life in like 2012 though it didn't stick for long and I actually put it down for about 8 years until I found Bitcoin.\n\nI could see myself being a pretty good game dev but the industry has always turned me off. I guess there's always indie game dev as well?\n\nWhat are your thoughts? \N 7760 \N 401351 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 1.26939909330915 0 \N \N f 515341984 \N 5 84308831 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436466 2025-03-13 15:21:22.494 2025-03-29 22:39:47.372 Bitcoin Core: Disclosure of hindered block propagation due to mutated blocks \N https://bitcoincore.org/en/2024/10/08/disclose-mutated-blocks-hindering-propagation/ 5978 \N 436466 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 27.4572332527758 0 \N \N f 738602644 \N 6 211661402 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:35:31.691 f \N \N \N 1 0 0 0 1 0 0 424725 2025-03-04 11:03:47.358 2025-03-29 22:39:47.368 [tinfoil] why governments might want you to believe in aliens Aliens have gone from a kooky philosophical subject and tinker toy for conspiracy theorists to becoming a mainstream thing. [Videos are becoming declassified](https://www.nytimes.com/2017/12/16/us/politics/unidentified-flying-object-navy.html), [government figures are discussing them](https://www.nytimes.com/2021/05/21/special-series/harry-reid-ufo.html), and [intelligence officers are whistleblowing](https://en.wikipedia.org/wiki/David_Grusch_UFO_whistleblower_claims). [Information wants to be free](https://medium.com/backchannel/the-definitive-story-of-information-wants-to-be-free-a8d95427641c), sure, but governments are beginning to lend the disclosures credibility.\n\nWhile people regularly transcend narrow self interest, I find it helpful to look at how self interest is being served, and the authenticity of recent disclosures are irrelevant to this kind of analysis. The facts are: (1) information is being disclosed and (2) the government is lending it credibility. \n\nHere are some potential hidden motivations for the recent disclosures:\n\n- to give an increasingly secular populace a new god, ie something bigger than themselves to believe in\n - eg make eating bugs and owning nothing seem quaint\n- make governments cool again and inspire people to join governments\n - if the gov can't compete on pay or impact, how about gaining access to scarce information?\n- make governments appear more organized and sophisticated than they otherwise appear\n- intimidate our enemies abroad by implying we're more sophisticated than we appear\n- encourage spending more money on the military industrial base by implying there's more value being created than appears\n\nThere are also other less paranoid and less interesting explanations for the recent disclosures of course:\n\n- the information was steadily being leaked and the government had no choice but to publicly begin participating in disclosure\n- this once classified information no longer needs to be classified so the government is beginning to disclose it\n\nI don't have an opinion on the authenticity of the recent disclosures. But, as an enjoyer of kooky philosophical subjects and conspiracy theory spectating, I find the whole thing odd enough to enjoy thinking about it.\n\n-----------\n\nOn the topic of odd, [one recent theory on the disappearance of MH370 is that it was teleported away](https://www.reddit.com/r/UFOs/comments/15kfy1i/old_footage_of_several_ufos_stealing_an_airliner/). One of the bigger promoters of this theory [believes the US government teleported the aircraft to save the scientists on board](https://www.youtube.com/watch?v=AwaC4AXFqRI). He does a great job of constructing the conspiracy especially when compared to his peer group. However, his conspirators, the US military, are (1) incredibly sophisticated and (2) unflinchingly heroic which stands out like a shag carpet or a record player in the interior of contemporary conspiracy theories. \N 21421 \N 424725 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 8.71675361507688 0 \N \N f 191381167 \N 1 186048466 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410759 2025-02-20 17:00:25.22 2025-03-29 22:39:47.372 Spending Sunday - What Recent Bitcoin Purchases Have You Made? Let's hear some of your latest Bitcoin purchases, feel free to include links to the shops or merchants you bought from too.\n\nIf you missed our last thread, [here](https://stacker.news/items/355643) are some of the items stackers recently spent their sats on. \N 814 \N 410759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3877398195431 0 \N \N f 316253605 \N 3 38119680 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 442982 2025-03-18 23:44:50.09 2025-03-29 22:39:47.372 Clams: Accounting Software for Bitcoiners # Clams: Accounting Software for Bitcoiners\n\n[Clams](https://clams.tech/) is an accounting software for Bitcoiners.\n\nBring all your wallet balances to your local device, visualize your bitcoin flows and generate reports.\n\nHow does Clams work?\n\n![](https://m.stacker.news/32776)\n\nAccounting can be a headache if you're a Bitcoin power user.\n\nMultiple wallets, exchanges, on-chain, off-chain, Lightning, micropayments..\n\nIn most jurisdictions selling or spending bitcoin is a taxable event.\n\nIf you earn bitcoin as income, calculating the cost basis of it might also leave you scratching your head. \n\nThese problems also greatly hinder the advancement of Bitcoin circular economies.\n\n![](https://m.stacker.news/32773)\n\nIt's possible to write custom scripts for more mainstream accounting softwares like Quickbooks, but this is not efficient or private. \n\nBetter money needs better tooling!\n\nA dedicated software for businesses and individuals operating on a Bitcoin standard helps making better business decisions, and keeps your accounting more organized!\n\nClams lets you bring your read-only data from all your Bitcoin wallets locally to your device, which act as a central accounting hub for your wallets.\n\nIt's still early for Clams, and currently only Core Lightning and LND nodes are supported.\n\n![](https://m.stacker.news/32774)\n\nOnce imported, the data will be converted into journals using double-entry bookkeeping methods, so you can see credits, debits, income, expenses etc. \n\nThe data is visualized and customizable, which can help in data-driven decision-making!\n\nYou can also tag transactions.\n\n![](https://m.stacker.news/32775)\n\nClams lets you generate reports for profit/loss calculations, tax accounting and for cost basis analysis.\n\nReports, multi-user access and cross-device sync are intended to be paid features, planned to go live in Q3/Q4 2024.\n\n![](https://m.stacker.news/32777)\n\nNo sign-up is required to use Clams, and no personal information is collected. \n\nCurrently, Clams is downloadable only for Mac, but Windows, Linux and Ubuntu are coming later.\n\n![](https://m.stacker.news/32778)\n\nClams seems like a great additional tool for businesses who want to accept bitcoin.\n\nTogether with the Bitcoin invoicing platform Zaprite @zaprite it could be a great combo!\n\nYou can learn more about Zaprite here: https://stacker.news/items/507558\n\nWhat do you think about Clams?\n\nIs it the accounting software we need? Would you use it?\n\n## Additional Resources\n\n[Presentation by Clams Co-Founder John Gribbin](https://www.youtube.com/watch?v=OaW0k9t2j4Q)\n\n## Project Links\n\n[Website](https://clams.tech/)\n\n[GitHub](https://github.com/clams-tech)\n\n[Nostr](https://nostr.at/npub136hk9wu6xnrz64kfaapsvgc5rfnylz4djlx4w30w66h6cy48vhws3gth6q)\n\n[X (Twitter)](https://twitter.com/clamstech)\n\n[Discord](https://discord.com/invite/eWfHuJZVaB) \N 21140 \N 442982 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 24.1412126737695 0 \N \N f 508226514 \N 3 158002478 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402772 2025-02-14 02:12:36.714 2025-03-29 22:39:47.373 Start9 launches Community Tech Program, paying $21/hr USD for customer support \N https://blog.start9.com/community-tech-program/ 10981 \N 402772 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.1932826714892 0 \N \N f 112792083 \N 2 95181631 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 138687 2024-03-07 20:34:20.699 2025-03-29 22:39:47.373 New major release! Phoenix Android/iOS/Server now supports BOLT12 **Features**\n\n- reusable, non-expiring payment requests\n- contact list (Android for now, iOS soon)\n- attach messages to payments\n\n>This marks a new step forward in Lightning UX. No need to generate a new QR code for every payment. No need for payer/receiver to interact.\n\n>Phoenix Android (soon iOS) also supports contacts. Send money with a click, and associate payments to your known contacts.\n https://x.com/PhoenixWallet/status/1808547081214439494 21021 \N 138687 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 22.207302019538 0 \N \N f 52505216 \N 1 153754186 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435912 2025-03-13 05:10:10.721 2025-03-29 22:39:47.37 Kraken no longer supports Lightning withdrawals for German clients > _Obligatory "CEX bad" comments incoming but I'll be transparent anyway. I'll just ignore the knee-jerk reactions. Thanks in advance to anyone adding value to this post._\n\nAs many might already know, I am based in Germany. I've been using Kraken as a convenient way to buy bitcoin for some years now. [Since April 2022](https://blog.kraken.com/product/kraken-now-supports-instant-lightning-network-btc-transactions), they even supported lightning with zero withdrawal fees. This was a total game changer for me.\n\nI liked this very much since not only do I not pay anything for withdrawals (or coinjoins), but it also gave me a nice layer of privacy.[^1] They know the node pubkey that I sent to but as @DarthCoin often likes to mention, [lightning can be a washing machine](https://darthcoin.substack.com/p/lightning-cleaning-machine). They know how much bitcoin I bought when but they can't tell what happened after withdrawal: lightning breaks chainanalysis.\n\n[^1]: I wondered how zero withdrawal fees made sense for them though.\n\nHowever, this is no longer available. They announced back in July that [every German client had to reverify themselves](https://support.kraken.com/hc/en-us/articles/overview-of-changes-for-german-clients) because they were moving them to a different custodian for compliance reasons so not really in my interest:\n\n> From September 10, 2024, verified clients will face BaFin regulated counterparties (DLT Securities GmbH and DLT Custody GmbH) for crypto services and a Central Bank of Ireland (CBI) regulated counterparty (Payward Ireland Limited) for fiat services (bank deposits and withdrawals).\n>\n> Overall, the experience for our clients will remain familiar, utilizing the same Kraken interfaces and providing access to services currently available to German clients.\n\nAfter some back and forth if I would use this moment to stop using CEX's and completely switch to [RoboSats](https://learn.robosats.com/), a p2p lightning exchange that I used a few times in the past, I decided to bite the bullet and reverify myself when I could no longer simply close the aggressive prompts because my account was restricted to only withdrawals until verification now.\n\nI decided to do it because I like to buy small chunks of bitcoin daily and I believed this would be too inconvenient on something like RoboSats where you have to wait until someone takes or accepts your order. Additionally, you're wiring money to random people which can look suspicious and lead to your bank account getting closed. So to be safe, I would have to open a separate bank account only for that. That was just too much for me so simply continuing to use Kraken seemed like the better option considering all trade-offs. I'm not that guy that I met on a conference that exclusively buys bitcoin p2p with cash. I believed the KYC problem wouldn't be that different compared to how it previously already was. It would now just be clearer to the BaFin that I buy bitcoin but I never really believed that wasn't the case already anyway. I deposit money from my German bank account to a known crypto exchange. It's not a mystery what happens on these exchanges.\n\nI didn't think to check if lightning would still be supported. I briefly skimmed the changes. I totally forgot about how much I cared about lightning withdrawals. It seemed like it would only be a formal change.\n\nHowever, after September 10, 2024, the option to withdraw over lightning no longer showed up. I opened the support chat and mentioned my problem:\n\n> **Me**: I can't withdraw to Lightning. The option doesn't show anymore.\n>\n> [...] _convincing the bot I need a human_ [...]\n>\n> **Support**: I see what you mean about the option not showing on your account.\nWe are experiencing downtime due to scheduled maintenance to perform platform changes in Germany. Please refer to our status page (https://status.kraken.com/incidents/1hc0tz8cw58d) to stay up-to-date with the progress. Once this is complete your account will be returning to normal usage 🙂\n>\n> **Me**: Ah okay, thank you!\n>\n> **Support**: You are most welcome, do you have any other question or concern ?\n>\n> **Me**: No, thank you\n\nI actually indeed had a question: I asked about the zero withdrawal fees and about BOLT12 support. It was annoying to create a new lightning invoice for every withdrawal that I had to confirm using 2FA. However, they couldn't give me any information about it:\n\n> **Technical support**: Thanks for reaching out. \n>\n> Related to our lightning integration, for security we are not able to provide details related to our internal funding infrastructure. However, Kraken has developed a highly secure Lightning infrastructure which facilitates the current fee offerings. \n>\n> Related to BOLT12, Kraken has not announced any support for BOLT at this time. Related to this, while we are always open to adding new digital assets and funding options to our exchange, we never announce in advance which ones will be listed. The best way to get up-to-the-minute details regarding assets listed on Kraken is to read our email newsletters and follow our Blog (http://blog.kraken.com/) and X (formerly Twitter) feed (https://twitter.com/krakenfx).\n>\n> I hope this information is helpful. Please feel free to let us know if you have any additional questions.\n\nThis reply sounded a bit like they think BOLT12 is a shitcoin but I gave them the benefit of the doubt.\n\n> **Me**: No more questions, thank you\n>\n> **Technical support**: You're welcome. And we appreciate the feedback regarding BOLT12.\n\nI always appreciated that fast support via chat. I thought that would be it and I could soon withdraw my funds over lightning again (and maybe even with BOLT12 at some point?!).\n\nHowever, today, I checked the status page again and saw that the maintenance is complete but the option still didn't show. I continued the chat:\n\n> **Me**: Hi, I see on https://status.kraken.com/incidents/1hc0tz8cw58d that the maintenance is complete now but I still can't withdraw using lightning.\n>\n> [...] _bot stuff_ [...]\n>\n> **Support**: [...] \n> \n> Please try the following browser troubleshooting steps:\n> - Make sure your browser is up-to-date\n> - Try incognito/private mode on your browser\n> - Clear your browser's cookies and cache\n>\n> If the above steps do not work:\n> - Try another browser - our site is tested on, and works with, most modern browsers\n>\n> See this support article for further instructions: https://support.kraken.com/hc/articles/360001200183\n\nThat generic advice offended me a little bit but I did indeed try out incognito mode at least even though it made no sense to me how something like this could be caused by a browser issue. I was also getting pissed because it sounded before like it's just caused by regular maintenance which apparently wasn't actually the case:\n\n> **Me**: So you're saying withdrawing via lightning should work now for German customers?\nIt does not work in incognito mode. This sounds like some generic advice. I believe you have disabled lightning for German customers since it doesn't show since then anymore. I am only on Kraken because of this and that lightning would disappear wasn't mentioned during the transition.\n>\n> **Support**: So the option for using lightning is not there at all now?\n>\n> **Me**: Yes, just poof, gone. I can only select "Network: Bitcoin" now during withdrawal. It used to show "Lightning" there, too. I know you're not responsible for it but I want to express that this is a serious downgrade for my experience.\n\n> **Support**: I'm double checking the information for you. One moment please.\n>\n> **Support**: Thank you for your patience.\n>\n> I have looked into this and it does appear we are now not currently supporting BTC Lightning transactions.\n>\n> This change has take place from September 10th due to new regulatory regulations. Please see further information here: https://support.kraken.com/hc/en-us/articles/overview-of-changes-for-german-clients\n>\n> Further information can be found here on supported assets: https://support.kraken.com/hc/en-us/articles/asset-support-for-german-clients\n\nMy heart dropped. As mentioned, I already had the feeling that they just don't support it anymore for German clients but getting the confirmation was still disappointing. The day before, I was dreaming about BOLT12 support and now I wasn't even able to use lightning until who knows when.\n\n> **Me**: Where is mentioned that lightning will be no longer supported?\n>\n> **Support**: Under this section of acceptable withdrawal addresses - https://support.kraken.com/hc/en-us/articles/supported-address-formats-for-cryptocurrency-withdrawal-for-german-clients\n>\n> Lightning addresses are no longer supported.\n\nIndeed, in this table only addresses that start with `3`, `bc1` or `bc1p` were listed as supported. No `lnbc`. -_- \n\n> **Me**: Okay, I see. Any ETA when this will be supported?\n>\n> **Support**: Currently it is down to regulatory issues but as soon as we are able to bring back the service we will 😊️.\n\n> **Me**: Okay, thank you for the information. Have a nice day. I assume you can't tell me more about those regulatory issues.\n>\n> **Support**: There is nothing more we can provide at this time. These are constantly on going and we are looking to provide all our clients in all regions with the same operational benefits.\n>\n> **Me**: Okay, that is all then\n>\n> **Support**: Happy to help 😀️. It's been a pleasure speaking to you today!\n>\n> Should you need anything else, we are here 24/7 to help. Please do not hesitate to contact us at any time!\n>\n> Have a great day and thank you for choosing Kraken 🐙.\n\nYou're welcome but I regret it -_-\n\nI guess I have to find a new CEX that supports lightning withdrawals and ideally even with zero fees or indeed switch to a DEX like RoboSats. https://support.kraken.com/hc/en-us/articles/supported-address-formats-for-cryptocurrency-withdrawal-for-german-clients 876 \N 435912 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.74956168892648 0 \N \N f 150226809 \N 1 9544602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:38:04.583 f \N \N \N 0 0 0 0 1 0 0 416768 2025-02-25 20:37:43.582 2025-03-29 22:39:47.37 Operation Saylor - Episode 26/120 # Operation Saylor - Episode 26/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 26, corresponding to August 2024.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.28537210BTC\n- € stack: 495.00 €\n- Current total value in €: 68,619.72 €\n- € into BTC: 30,000 €\n- Paid back to bank: 9,155.00 € \n- Outstanding debt + interests: 34,789.33 €\n- Installments to go: 95\n\n\n## Charts\n\n[![episode-26-bitcoin-stack.png](https://i.postimg.cc/4NKMq5Jj/episode-26-bitcoin-stack.png)](https://postimg.cc/Tp6CWn5c)\n[![episode-26-stack-value-vs-debt.png](https://i.postimg.cc/kMYzTZdx/episode-26-stack-value-vs-debt.png)](https://postimg.cc/JtJpnp0n)\n\n---\n\n## Log \n\n\nHello again and welcome to another episode of the series. We can finally leave behind the whole performance discussion from the anniversary... and go back to my unstructured, random rambles.\n\nThis month I finally read The Mandibles, after watching Odell recommend it for years. It was a great read. Went straight in, I think I finished it in a couple of days. \n\nFor those who are not familiar with it, The Mandibles is a fiction novel that describes the story of a US family after the USD stops being the global reserve currency. It's a crisp book that explains everything from the point of view of normal citizens. This makes it quite frightening. It's one thing to read about macro and check some doomporn on ZeroHedge, but reading a novel like this where you can pretty much smell the misery and fear through the pages hits truly hard. Even though I don't think the book is as deep or impactful as Atlas Shrugged, I would happily place both of them in a shelf of books that describe Bitcoiner's fears.\n\nI don't want to spoil you too much, so feel free to drop here. But I must say that what scared me the most about this book is how boiling-frog-ish everything feels like. The characters of the story see their levels of freedom and material well being go lower, and lower, and lower, yet they pretty much just put up with it and adapt in very tactical ways for the most part. This makes me scared, because I fear that this might happen to many of us in real life. That if things are to go south, yet never at a pace fast enough to trigger us into risking violent, sudden changes and alternatives, we might just eat the whole thing and live miserably. I hope I'm wrong.\n\nI recommend you to read it, and I also recommend it as a great book to gift to normies who still need to understand what's wrong with money. The book is not too technical, but it does a decent job at relating economic events to how they impact people's lives. It's also a quite emotional book, so that can be a great trigger to impact someone. Much better than recommending economics textbooks, probably.\n\nOn an unrelated topic, I wanted to share a link to [this gentleman's post on reddit](https://www.reddit.com/r/Bitcoin/comments/1etzbqw/25_year_update_i_took_out_125000_in_personal/). He's a US fella that's done a similar pattern to Operation Saylor, only way bolder. I thought you guys would appreciate going through it. I enjoyed his story, but what I enjoyed even more was going through the comments and noticing how the mood feels very different of what it felt like years ago. There was way more people supporting him: saying the whole move makes sense, congratuling the guy and even stating that they've done similar actions themselves. I feel years ago it would only have been people calling him a degenerate gambler, saying he just got lucky, mocking him and labeling him an idiot. Could it be that the Speculative Attack is slowly going mainstream, riding the arc from fringe to obvious?\n\nI'll keep it short this month. As always, thanks for reading and I'll see you next month.\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n- Episode 16: [https://stacker.news/items/288719](https://stacker.news/items/288719)\n- Episode 17: [https://stacker.news/items/322189](https://stacker.news/items/322189)\n- Episode 18: [https://stacker.news/items/363765](https://stacker.news/items/363765)\n- Episode 19: [https://stacker.news/items/394704](https://stacker.news/items/394704)\n- Episode 20: [https://stacker.news/items/450792](https://stacker.news/items/450792)\n- Episode 21: [https://stacker.news/items/476945](https://stacker.news/items/476945)\n- Episode 22: [https://stacker.news/items/522161](https://stacker.news/items/522161)\n- Episode 23: [https://stacker.news/items/550749](https://stacker.news/items/550749)\n- Episode 24: [https://stacker.news/items/583121](https://stacker.news/items/583121)\n- Episode 25: [https://stacker.news/items/622095](https://stacker.news/items/622095)\n \N 6202 \N 416768 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.3050724058854 0 \N \N f 1461268103 \N 11 201067826 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 435746 2025-03-12 23:18:47.356 2025-03-29 22:39:47.371 Spending Sunday - What Recent Bitcoin Purchases Have You Made? Let's hear some of your latest Bitcoin purchases, feel free to include links to the shops or merchants you bought from too.\n\nIf you missed last week's thread, [here](https://stacker.news/items/256561) are some of the items stackers recently spent their sats on. \N 19217 \N 435746 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 7.61804792914596 0 \N \N f 952669210 \N 8 154301516 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:13:02.451 f \N \N \N 0 0 0 0 6 0 0 419641 2025-02-28 00:22:59.478 2025-03-29 22:39:47.371 Can my island/Guam gain Sovereignty? https://youtu.be/n-2O_jWqedU \N 12566 \N 419641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.63782808479515 0 \N \N f 191419002 \N 1 138947761 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414271 2025-02-23 19:19:20.772 2025-03-29 22:39:47.371 AMA with niftynei, core-lightning contributor, btc++ organizer, base58er Hey ya’ll! Happy uptober.\n\nWould live to chat about anything lightning, working in bitcoin, btc++ past or present, Base58 and the bitcoin LARP, what we’re planning for 2025 and beyond \n\nAlso yes it’s my bday! \N 21247 \N 414271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.506411367906 0 \N \N f 488482523 \N 2 1892932 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 408691 2025-02-19 03:42:40.74 2025-03-29 22:39:47.371 Developing in the Bitcoin ecosystem is playing on hard mode ![77A7A0E3-6122-4530-95F0-89475854A711_1_201_a.jpeg](https://m.stacker.news/13512)\n\nMe trying to build Bitcoin/Lightning projects that:\n- Don't custody user funds\n- Don't leak users private info\n- Don't get my users rugged\n- Don't dox my users to 3rd parties\n- Don't get me arrested for money transmission \N 18309 \N 408691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52574252212815 0 \N \N f 194449792 \N 2 179520814 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436177 2025-03-13 11:15:11.438 2025-03-29 22:39:47.369 Data Colonisation - This Time Is Different One of the most consistent themes throughout history has been the pursuit of conquest and control over territories and populations alike. You can go back millennia to find examples, but we need only look at more recent history to compare the different types of colonisation we have witnessed.\n\n## This Time Is Different\n![History of colonisation](https://image.nostr.build/470efa0232676a3576fe7df981d7703cb04f1148a239c2ef926e4cc91ec1e7c8.png)*📸 A remix of cartoons from (left > right): [CartoonMovement](https://cartoonmovement.com/cartoon/slavery-update), [David Parkins](https://www.davidparkins.com/ed_cartoons.html), [CagleCartoons](https://caglecartoons.com/).*\n\n------\n\n**Today, my argument is we are about to embark on a new type of colonisation**. Or at least a new attempt. If so, it has implications on privacy, both for the individual and for countries alike. This type of colonisation does not require physical borders and boundaries be re-drawn. That may still happen this decade, as we see global tensions on the rise. However it is not a requirement for territory to change by hand or by name, in order for there to be a shift in influence globally.\n\nIn the information age (as many choose to call it), real-time knowledge of modern economies is to be far more important than the two prior forms of coercion used. Neither exerting physical control over populations for long periods of time. Nor maintaining financial seniority by forcing countries & citizens to use your "superior" political currency, that you can print at will. That too may soon become something for the history books.\n\nThe future form of coercion is in our minds. **The concept of data colonisation has become one of the biggest reasons I am interested today in the world of privacy-enhancing technology today**. Despite being early in my journey.\n\nWe are seeing countries extend their tentacles into all of our private lives like never before. Collecting as many bytes, identifiers, voice recordings, photos, pieces of metadata as well as unencrypted messages that they can get their hands-on. So much so in fact, that it is plain sight now and not even hidden anymore. The desire is for people to believe there is no means of opting out of this, when the reality is quite the opposite.\n\nCompromising consumer encryption standards, creating social norms of "we have nothing to hide" and "comparing by sharing" on social media, all have conditioned people for this path for the past decade. Some countries have been shaping this trend and many are at least aware of it. All countries are preparing for the surge in the importance of data going forward, particularly those that have had an outsized influence on international markets previously. It could be their only means of staying relevant in the coming years.\n\n-----\n\n## Types of Colonisation\nBelow I will describe what I see as being the main forms of geographic coercion and control internationally from the past 200 years.\n\nEach era people have been working...\n`1. Geographical Colonisation = For No Money`\n`2. Financial Colonisation = For Their Money`\n`3. Data Colonisation = For Any Money`\n\n### Slavery involved people being forced to work, for ZERO MONEY whatsoever. \nWe can all agree in the 21st century that slavery is not compatible with our ideals of life today. Physical or geographical colonisation saw that this practice became prevalent up until most Western countries started abolishing it between 1820 and 1860. Slavery is mostly a concept for the history books thankfully. Whilst there *are* people working under very oppressive and inhumane conditions today, it is very much the exception not the norm. The world has moved on to more covert forms of geographical seniority. It may be about to take another step once more.\n\n### Financial colonisation involved people being forced to trade with SOMEONE ELSE'S MONEY.\nUp until now, possessing a superior form of money and by extension maintaining influence over other geographic regions has been the preferred method of maintaining a 'pecking order'. If you could coerce, or in many cases force territories to use *your* money in order to trade with you, you would be in an extremely privileged position. Particularly if you were able to arbitrarily create your currency out of thin air, like many examples we have witnessed throughout history.\n\nFinancial colonisation will likely see the same fate as slavery. History may soon decide that it was wrong for humans to control monetary policy at all.\n\n### Data colonisation could involve people using ANY MONEY, but forced into sharing data.\nJurisdictions that possess visibility and control over the data in such a dynamic have a unique advantage. They would receive information prior to their citizens and competitors and they can therefore implement policy or behavioural changes that affect the outcome in that area. Or they can obtain (intellectual) property that they would otherwise not have obtained due to timely intervention and espionage.\n\nWe have certainly been surveilled, watched and perved-on for decades already and this is a trend that is going to continue for the coming years. It is also clear that beliefs, behaviour and even culture has been changed. For the worse in many cases.\n\nIn this new paradigm, for countries to maintain an edge, not just against their peers but also against individuals, they will no doubt pursue superior hardware and software that is capable of analysing real-time economic conditions, particularly in territories beyond their own borders. This was a key takeaway I had when typing up [my thoughts on SN](https://stacker.news/items/286873) regarding the expanding influence that Starlink is having in the world. Places that have superior, cheaper & more capable technology that they can export, will be able to profit from information obtained by that technology. They will benefit before the very countries within which that data is generated.\n\nOwning, installing and incentivising deployment of advanced spyware technology offers huge capabilities under this scenario. ~~Artificial~~ Automated-intelligence algorithms, will allow real-time analysis of emotions, relationships, traffic, temperatures, trade, energy usage, data bandwidth and much much more. All of this information is valuable for a variety of reasons:\n\n1. At the very least this 'fresh' info is tradable on financial markets going forward, before being common knowledge by other participants.\n2. It is information too that is capable of being controlled or manipulated, with subtle algorithms and interventionist policy able to affect behavioural change in populations, both local and foreign.\n3. It is also capable of hoovering-up property, intellectual or otherwise, creating capital or innovation for domestic gain.\n\n### An Example of Data Colonisation\nBy way of an example, look at the amount of facial recognition cameras & 5G towers that have exploded onto the scene in recent years. This is technology that most countries have been unable or unwilling to build in their own borders up until they all were willing at once. I can only speculate that it was technology offered-up by China at incredible prices/losses. In many cases with very favourable conditions for repayment ([in the case of Ecuador for example](https://www.worldfinance.com/featured/surveillance-cameras-have-become-one-of-chinas-most-valuable-exports-heres-why)). By strategically underpricing global competition in almost all countries where it was rolled-out, and despite being a short-term loss, a country adopting this approach would no-doubt benefit from a continuous flow of information over the long-term. They may not have the deepest financial markets at this time, but China could well have the deepest data markets in years to come. They like the U.S [via Starlink](https://stacker.news/items/286873) are seemingly prepared to operate at a short-term loss, in order to try and get a leg-over globally during this transition period.\n\n\n# What if the battleground is not our money, but our data instead?\n\n![Freedom technology does not mean we get privacy easily](https://image.nostr.build/0dbdee6d28f290fa148a4c38128de97bd494c9a09023a4e0bb70088b2dbc0443.png)\n*A remix of an image found in the [International Herald Tribune](https://en.wikipedia.org/wiki/International_Herald_Tribune).*\n\nIt may not seem like it yet, but Bitcoin may have already seen to the separation of money and state. If not today, then perhaps by the middle of the century. We may not fully realise or transition from the 'old world' for some time, but the wheels are in motion. It could be suddenly or it could be gradually. I don't expect that society will radically improve overnight and there is no doubt that the fight for privacy is not yet behind us. In fact the opposite is true.\n\nThe very lack of control of money is compelling large governments to act against the interests of their citizens and others worldwide in order to try to colonise. There is a clear trend and desire for these institutions, that once served us, to now know everything about us. During certain moments in history, many countries have chosen to circumvent and enact new laws when stress in the system shows its face. Stress they may well create of their own doing.\n\nCountries have the resources and capability to create and endure unfavourable circumstances for some time, even if and particularly if Bitcoin succeeds. **This is why access to privacy is still extremely under-appreciated by all of us across the globe**. With potential data colonisation upon us, we will witness a number of changes and challenges, many of which are discussed both negatively and positively below:\n\n### 🚩 Negative #1 - Social attacks on privacy-preservation\nNotice that the recent attacks on Bitcoin and other internet technology are not currently regarding the protocols themselves, the value or even access to particular software or apps themselves. At least not at this time. What we are witnessing is **more concern for the visibility and traceability of transactional data**. Identifying every byte of traffic, every sender, every receiver and every message. Every data point from every second possible. Here are a few example remarks we have witnessed from those in positions of power:\n\n- ``Social`` - "Bitcoin is 99% bad for the environment". "It is draining all the water in the world", "Bitcoin is creating financial stability".\n- `Encryption` - "Encryption prevents criminals from being prosecuted", "Public key cryptography enables child trafficking", "We need to see you're not communicating with our enemies".\n- `VPNs` - "Hackers use VPNs to obfuscate their location", "We need to verify your identity with an email/payment to prove you're not a bot".\n- `Collaborative transactions` - "Institutions must know where the source of funds come from", "Coinjoins are for money launderers"\n- `Self-custody` - "It's safer if you hold it in our secure bank", "It's tax-free in this account".\n- `P2P` - "All cash transactions >$100 must be reported to authorities", "Cash purchases over €1k are illegal", "Are you sure you want to send money to this person?".\n\nNotice how none of these comments to which we can relate are a direct attack on the value of the trustless asset or the network itself, like we have seen in years prior? Distant are the comments that "Bitcoin is backed by nothing", "Bitcoin is a scam", "Bitcoin is a security", "Bitcoin is illegal". The battle-lines currently being drawn are around visibility of the flow of communication and funds, the paper trail and access to our data. It should be stated here... **governments fear privacy.**\n\n### 🚩 Negative #2 - Virtue-Signalling Fascism\nDespite the **worldwide desire for privacy-enhancing technology being on the rise** (I will write about this in a future post), countries and mega-corporations are hijacking the narrative and implementing "privacy" technology that lock-out other market participants, such as advertisers and app developers.\n\nYou see this with Apple and Google for example, who talk a good game but are expanding their own permissions with each iteration of their hardware and operating systems that they put out on the market. Companies like Apple and Google have already positioned themselves as superior guardians or gatekeepers. Like an abusive step-parent. They continuously virtue-signal to the public that they are to be trusted and acting in the best interests of children and the wider society, whilst pointing the finger and creating scapegoats like Facebook, advertisers or individuals. All while leeching their 30% 'fair share' and siphoning-off data for a favoured few governments around the world.\n\nThe same could be said for Ledger, with their hardware wallets jammed full of tracking tools, whilst pretending to be believers in self-custody and bitcoin security. They are part of the same weak-minded management and people, who take the cowardly decisions to implement invasive practices simply from suggestive legislation. \n\n### 🚩 Negative #3 - Deeper Capabilities\n\nWe will no doubt witness the return of the implementation of cloud-based image scanning, once people are accustomed to the practice being normalised on their own devices locally. Having already walked-back and slowed-down the implementation due to public outcry, soon people may have bigger issues on their minds. We may even witness the public becoming vocally in favour of these invasive tools in short order, should the story be large enough to justify it.\n\nIn the coming years these companies will release glasses, wearables, robots, fridge-cams, neuralink, glucose-monitors and entirely new consumer products that track movements, analyse emotions and interpret thought, all in the name of superior user experiences. These products may even be heavily subsidised or provided at near-zero cost with perverse incentives and requirements for society to feed these institutions with more and more data. My favourite quote from the Diamond Age book states that...\n\n>*(technology) had made nearly anything possible, and so the cultural role in deciding what should be done with it had become far more important than imagining what could be done with it.*\n\nThis is almost where we stand today. Except fascism, which is the merging of big corporations and government, is attempting to shape that cultural role for us. All of these companies are sweeping-up more and more data and allowing unencumbered access and backdoors to our public institutions. They claim they are aiding our privacy. It may be privacy by name, but it is anything but. These companies are doing more harm than good, obstructing small niche businesses from innovating, competing and growing. They are however helping people like us become more aware of the importance of privacy.\n\nIf you and I as consumers, are exclusively adopting software directly or indirectly from gigantic enterprises like Apple and Google, we are not only harming ourselves and our future privacy, but to potentially all the people we know. And I say this as a Mac owner myself.\n\n### 🚩 Negative #4 - False Flags & Mistruths\n\nJust like inflation has been a necessary requirement to 'grow the pie' and ensure continued economic growth for populations, lies and mistruths will be required to garner initial public support for this new system and empower attempts at colonisation. Providing personal data for the betterment of our society, climate, military or science.\n\nA mistruth as large as the oceans boiling may be required to bootstrap a new mindset and turn an intolerant minority into the indifferent majority. These institutions have a history of playing with human emotions of fear. Mistruths and exaggerations may focus on 'aliens', 'terrorists' or even 'climate catastrophes', which may or may not be acts of their own making.\n\nShould most people be receptive to such ideas, providing access to their data becomes 'the greater good' of the globe, or are at least makes them indifferent. Incentives, as discussed, may be offered in the form of subsidised energy bills, food or outright new political currency being created. Those who choose *not* *to* share their data will no doubt be ostracised and excluded from any such benefits. People will be told that they can finally own their own data and monetise it for personal gain. It may be branded as the solution to A.I. \n\nThis thinking should be examined, critiqued & challenged if it ever comes to pass. People will instead find themselves co-opted by the system, finding it increasingly difficult to ween-off or detach themselves from the access they have provided inside their workplaces, their devices, their own homes and importantly their minds. \n\nIt could be argued that societies in such a system would be colonised more than they have been in any prior generation. It would no longer be just their own data and capital that they are relinquishing or sharing. They may not be under physical duress, but given that messages and transactions involve at least two participants, they would be compromising data of friends, family and acquaintances in the process too. Regardless of whether they opt-in or not. \n\nBut thankfully we have tools. And we have choice...\n\n\n### 🟢 Positive #1 - Freedom Fights Back\n\nThe most affluent and healthy societies are the ones where ideas are free and able to blossom. Where critical thinkers are prevalent, where people go about their lives as they please and socialise with who they wish. All without fear of any consequences for themselves or the wider world. Be it fear of censorship or their livelihoods being disrupted. This was also mentioned by @kaizen in [this recent SN post](https://stacker.news/items/347214) .\n\nAll prior attempts of having one global organisation have failed. The same will be true for these days on the internet.\n\nInnovation comes from challenging the status quo, not from being milked like a farm animal, not from being de-humanised as an 9-digit number and not from being oppressed in dictatorships branded as democracies. We can design a better system than what is being sketched-out for us. One that is designed around a sense of personal responsibility, community, education & experimentation. One with real value(s) for real people. Scalable only by prioritising privacy-preserving technology.\n\n\n### 🟢 Positive #2 - More Restriction = More Innovation\n\nDuring oppressive regimes, creative people find a way for their voices to be heard, for the barriers and obstacles imposed to be circumvented. \n\nDuring past times in history, when it seems all is lost, musicians or comedians release their work, disguising their message in poetic words and metaphors that empower the youth and then other generations. The same is likely to be true going forward. \n\nEncryption will see to it that content has double-meaning - with entire passages of information being altered by a secret phrases. [Here is a great tool shared on SN](https://stacker.news/items/111535) that does just this. \n\nWe will likely see a renaissance of code-words to enter establishments, both digitally and physically. Nostr communities by invitation only, secret links and handshakes, handheld scrambling technology. There will no doubt be a resurgence of creativity and community to get people through this era completely protected and unscathed.\n\n### 🟢 Positive #3 - More 'Uncle-Jims'\n\nIn the current system from which we are departing, you need accountants and lawyers to navigate the financial world. That is in order to make the most of retaining your purchasing power and minimise taxes and other liabilities, at least via legal means via corporate structures.\n\nIn the upcoming world, people are likely to need their own 'Uncle Jim' to help them safeguard and protect their data. They may also need a company, to have the correct legal structures in place to prevent 'espionage' or revealing 'trade secrets'. Cybersecurity and privacy-preserving professionals will be in high demand. Particularly Bitcoiners. \n\nCustomers are likely to be willing to pay a sexy satoshi or few for these services in the future. They may also potentially need data brokers to help maximise the value of the data they are willing to forego to the market. **This is our chance to get ahead and learn all about sovereign privacy technology.**\n\nWhat distinguishes Bitcoiners in performing these roles, is the human values upon which we live by and strive for. Most of us would not be swayed by an approach by a criminal group attempting to bribe us for access to valuable data. Most are not motivated by fame or status or even riches. For that reason, **Bitcoiners are likely to become a highly-trusted group of people, in a lowly-trusted world.**\n\n\n### 🟢 Positive #4 - Demand For Privacy Tech\n\nAs I mentioned earlier, demand for privacy-preserving technology is on the increase. It still remains on the fringes for the TikTok generation, no doubt. However as each day passes, new cyber-attacks emerge, hacks & leaks become ever more prevalent and more information gets revealed to the wider world. \n\nThe reaction I expect is not to be one of ignorance and disillusionment... but instead one of **rejuvenation and motivation to build and adopt better tools**. We just need people like us to take our next step today. To step a little further away from the influence of the likes of Apple and Google, for ourselves and others we know.\n\n-----\n\n### The Privacy Spectrum\n\nI come back to a diagram to finish-off this write-up. **How can we get more people to take their next steps to becoming a private persona?** Do they need to learn for themselves or can we 'lend' a hand and bring them along with us?\n\n![Privacy spectrum](https://imgprxy.stacker.news/NR42s7XAh7d2reYfp1efDZUK719gZMDQ0lIOx3PEOhc/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy83MTE2)\n\nIn spite of the barriers and opposition we are facing today, it's obviously not all doom and gloom. We have all the people we need right here on [stacker.news](https://stacker.news/) to solve this problem. \n\nWe just need to keep building... \n`building community, building tools & building-on our own privacy.` \N 10536 \N 436177 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 10.6819781442492 0 \N \N f 609820931 \N 5 89479558 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404095 2025-02-15 14:35:33.864 2025-03-29 22:39:47.371 Phoenix for servers \N https://twitter.com/PhoenixWallet/status/1771236080680841668 20841 \N 404095 \N \N \N \N \N \N \N \N health \N ACTIVE \N 15.3575150945895 0 \N \N f 1709624418 \N 17 116263616 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 9 0 0 410269 2025-02-20 12:11:27.434 2025-03-29 22:39:47.371 Nostr is not decentralized nor censorship-resistant > Peter Todd has been saying this for a long time and all the time I’ve been thinking he is misunderstanding everything, but I guess a more charitable interpretation is that he is right.\n>\n> Nostr _today_ is indeed centralized.\n>\n> […]\n>\n> Peter Todd is right that if the way Nostr works is that you just subscribe to a small set of relays and expect to get everything from them then it tends to get very centralized very fast, and this is the reality today.\n>\n> Peter Todd is wrong that Nostr is _inherently_ centralized or that it needs a _protocol change_ to become what it has always purported to be. He is in fact wrong today, because what is written above is not valid for all clients of today, and if we drive in the right direction we can successfully make Peter Todd be more and more wrong as time passes, instead of the contrary.\n\nIt’s not a long post but my summary is that network effects of the most popular relays are bad for censorship resistance on nostr.\n\nVery happy that @fiatjaf talks about this. https://njump.me/nevent1qqsr248ee8hlp0mx0xpq56d86dgzpygdmmc3ycugwelvzgj6p82dvpczyqalp33lewf5vdq847t6te0wvnags0gs0mu72kz8938tn24wlfze6k694f0 21042 \N 410269 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 28.8888565554252 0 \N \N f 2960260850 \N 27 142009164 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 13 0 0 416148 2025-02-25 12:51:11.078 2025-03-29 22:39:47.371 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/439157), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 1064 \N 416148 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 29.632083211261 0 \N \N f 341308310 \N 2 104116459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434396 2025-03-11 21:21:22.963 2025-03-29 22:39:47.369 bitcoinmints.com - Nostr-based Cashu mint discovery \N https://bitcoinmints.com/ 15386 \N 434396 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 6.14082872443461 0 \N \N f 885742940 \N 8 61436911 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:34:06.347 f \N \N \N 0 0 0 0 6 0 0 397694 2025-02-10 10:55:04.928 2025-03-29 22:39:47.37 TabConf Hackathon 2023 update # TabConf Hackathon 2023\n\n![Image 1](https://imgprxy.stacker.news/eGXeNh66kTupw8M6-z2Y4QTGZErGZ6y6qT9S0vjwelc/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby95ZEtRNUNKL0lNRy0yODgyLmpwZw)\n![Image 2](https://imgprxy.stacker.news/40ThKnxiJydosfNo_mL3XSLpeNdbgcQ5aCJBoltR5VA/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9SWXJxWFZoL0lNRy0yODgzLmpwZw)\n\n## Participating Teams:\n- Santogram\n- Team DBC\n- Lnplay.live\n- Bolt 12 Accelerators\n- UTXO Dealership\n- OrangeVR\n- PeerStables\n- Electric Fiat\n- Flash Filez\n\n## Hackathon Schedule & Guidelines:\n- **Team Registration:** Ensure your team is registered by 12pm to secure a presentation time slot.\n- **Presentation Time:** Presentations will begin at 3pm in Lightning Village.\n- **Judging:** Our judges will deliberate from 4pm onward. The winners will be announced during the closing ceremony.\n\n## Evaluation Criteria:\nTeams will be judged on a scale of 1-5 for the following:\n- Feasibility\n- Impact\n- User Experience\n- Scalability\n- Innovation\n- The Pitch (Ensure it's within a 5-minute limit)\n\n## Prizes:\n\n### Best Hack Overall:\n- **Prize:** $1200 in Bitcoin on SATSCARD x The official ZBD x PlebLab Trophy\n- **Benefits:**\n - 3-months of ZBD Premier for each team member\n - 3-months Nomad Membership at PlebLab for each team member\n\n### LNURL Category:\n- **Prize:** $600 in Bitcoin on SATSCARD\n- **Benefits:**\n - 3 months of ZBD Pro for each team member\n - 1-month Nomad Membership at PlebLab for each team member\n\n### Nostr Category:\n- **Prize:** $600 in Bitcoin on SATSCARD\n- **Benefits:**\n - 3 months of ZBD Pro for each team member\n - 1-month Nomad Membership at PlebLab for each team member\n\n### Lightning Category:\n- **Prize:** $600 in Bitcoin on SATSCARD\n- **Benefits:**\n - 3 months of ZBD Pro for each team member\n - 1-month Nomad Membership at PlebLab for each team member\n\n![Hackathon Image](https://imgprxy.stacker.news/Adq4xCStAuCMR6FVjrb0QRaA-GP9fIobvSZWBQA4Buo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9rSHNtME1YLzQucG5n)\n \N 1354 \N 397694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9775562207094 0 \N \N f 87809290 \N 1 130442113 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448819 2025-03-22 22:25:25.758 2025-03-29 22:39:47.37 USER ACTIVATED MEME MONDAY NO BOUNTY. MEME FOR THE LOVE OF THE GAME.\n \N 7899 \N 448819 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 4.17834219371318 0 \N \N f 208362018 \N 2 140207974 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444097 2025-03-19 16:58:41.357 2025-03-29 22:39:47.371 Do you mine Bitcoin? \N \N 20990 \N 444097 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.3589086569367 0 \N \N f 783279605 \N 4 55330161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 443734 2025-03-19 13:46:56.106 2025-03-29 22:39:47.371 The Distributional Consequences Of Bitcoin \n### The Paper\n\nYou can download it here:\n\nhttps://papers.ssrn.com/sol3/papers.cfm?abstract_id=4985877\n\n### First Shots Fired\n\n@TomK posted about this article yesterday:\nhttps://stacker.news/items/731251/r/siggy47\n\nLast night everyone was weighing in on nostr. Marty Bent was actually quoted in the paper. It purports to be a serious economic paper, but most people in the bitcoin world see it as the beginning of a full scale war by the EU on bitcoin. \n\nI finally read it through last night, and I may give my laymen impressions at some point. \n\n### A Robust Defense\n\nWhat I really would love to see, though, are real bitcoin economists, and not influencers or amateurs like me, pick this thing apart. \n\nWe have that talent on Stacker News with @SimpleStacker and @Undisciplined. @SimpleStacker has already written a review of an academic paper here:\nhttps://stacker.news/items/727081/r/siggy47\n\n\nThis paper could very well be the beginning of an assault on bitcoin. We need our own economists to shred it in the academic arena. \n \N 21202 \N 443734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2283638990765 0 \N \N f 185116087 \N 1 36044947 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433391 2025-03-11 03:38:30.698 2025-03-29 22:39:47.371 Announcing LND 0.17 beta: Tapping into Taproot 🥕⚡ \N https://lightning.engineering/posts/2023-10-03-lnd-0.17-launch/ 11522 \N 433391 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.1574894603448 0 \N \N f 519425634 \N 3 87796129 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 450212 2025-03-23 19:34:46.828 2025-03-29 22:39:47.37 New PlebLab Website - zaps enabled \N https://pleblab.dev 16356 \N 450212 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.57807837663994 0 \N \N f 198532611 \N 1 70594502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437611 2025-03-14 16:59:59.363 2025-03-29 22:39:47.37 If we can't have custodians then it is better to abandon Lightning entirely \N \N 21271 \N 437611 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 3.17127490600683 0 \N \N f 36778254 \N 2 161295004 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436318 2025-03-13 13:17:09.402 2025-03-29 22:39:47.37 Reddit F'd up and why it's a great lesson on bitcoins safety. Full disclosure I had a small holding of Reddit moons, earned through mostly shit posting and sarcastic/tongue in cheek comments.\n\nMoons were a community token earned to members of the r/cryptocurrency subreddit Through a karma system.\n\nReddit announced that they were "sunsetting" community tokens citing regulatory compliance.\n\nLong story short, the price of moons tanked as their use case just evaporated.\n\nBut, why's it good, lots of people got absolutely rekt with this you ask? Well... After another hard lesson learnt what I am seeing is many many many comments saying "f this, only BTC is safe from rugpulls" and they're right. \n\nIt's a very tough lesson but we just saw 6.9million members get rugged. Let's optimistically say half of those aren't bots. That's 3.45million people experiencing in some way, this rugpull by Reddit. (who you know got out before they made the announcement).\n\n3.45mil people who just found out the hard way that bitcoin is the only option safe from being rugged.\n\nLessons are sometimes hard to swallow, but this one sure strengthened my resolve in BTC. \N 1617 \N 436318 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.6058881619552 0 \N \N f 284157887 \N 2 167909748 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:12:28.973 f \N \N \N 0 0 0 0 2 0 0 451039 2025-03-24 11:07:06.638 2025-03-29 22:39:47.371 ⚡Announcing Storm.pub!⚡Lightning Enabled version of YouTube, Future Nostr Client I'm thrilled to launch [Storm.pub](https://Storm.pub), a lightning-enabled version of YouTube! (And soon, a Nostr client!) \n\nNow, you can support your favorite creators with sats through our Like or "Make It Rain" ⛈️ buttons.\n\nHow it works:\n\n1. Copy the URL of any YouTube video.\n2. Paste it into [Storm.pub](https://Storm.pub).\n3. Watch, like, and make it rain sats to support creators!\n\n🌐 Future Plans: We aim to transform [Storm.pub](https://Storm.pub) into a Nostr Client, allowing users to watch videos, comment, and zap on the Nostr network, eliminating reliance on centralized platforms that censor content.\n\n🌟 Value 4 Value: Support [Storm.pub](https://Storm.pub) by visiting [Storm.pub/v4v](https://Storm.pub/v4v)\n\n💬 Telegram: Join our community on Telegram to request features and give feedback [Telegram Channel](http://t.me/StormPubGroup)\n\n🛣️ Roadmap: Check out the roadmap on [Storm.pub/about](https://storm.pub/about)\n\nWe're proud to have the following creators already on board:\n\n- Bitcoin University - [@mattkratter](https://x.com/mattkratter) - 234k subs\n- Bitcoin Bram - [@bramk](https://x.com/bramk) - 5.8k subs\n- Get Based - [@kinetic_finance](https://x.com/kinetic_finance) - 14.4k subs\n- Bobby Shell - [@iBobbyShell](https://x.com/iBobbyShell) - 502 subs\n- The Bitcoin Layer - [@TheBitcoinLayer](https://x.com/TheBitcoinLayer) - 18.5k subs\n\n[Follow me on Twitter](https://x.com/bitcoinrippin) to stay tuned, and start making it rain on [Storm.pub](https://Storm.pub)! ⛈️ \N 19570 \N 451039 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 4.07759882657679 0 \N \N f 82039190 \N 1 35047400 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443303 2025-03-19 08:51:38.949 2025-03-29 22:39:47.37 Is Justice Bad for Children? # Every battle needs violence\n\nI have two sons. Yesterday, they were playing with these little plastic armymen they have. The older one was very intent on setting up a large battle and had spread the armymen all over the floor and furniture. The younger one wanted a more active scene, and was knocking a good deal of them over in his enthusiasm. The older one was clearly getting frustrated (I wasn't watching but definitely noticed an increase in the volume of his protestations). \n\n# And then *SMACK!*\n\nThis is not the first time the older one has assaulted his younger brother. His temper, and its parallel-bus connection to physical action, is something we've been working on. He's one of those kids for whom physical action comes naturally. He loves to wrestle and he goes about his day engaged in one imaginary battle after the other (usually with superpowers and sound effects).\n\nThe younger brother was pretty darn aggrieved. Howling, tears all down his face, words mushed with wails. I do think his tears were honest (and he had a pretty good welt where the other one hit him), but he is our youngest and has really been leaning-in to his identity as the baby of the family. I'd say more than 90% of the complaints that make it to my (metaphorical) suggestion box are from him.\n\n# What to do?\n\nI try to maintain a firm prohibition on hitting/punching/kicking. So, clearly some sort of consequence for the older brother is required. But, on the other hand, the younger one was being a little shit, so clearly the consequence needs to be tempered by the provocation. However, there is the history of the older child whacking his brother and the fact that we have discussed how this is not okay, so clearly his was the greater transgression. Yet, the younger sibling has refined his the use of his parents as a defense mechanism, and so I can clearly not take his accusations at face value. But the older sibling is bigger and older, and clearly should know better than to lose his temper. The younger one *was* given a number of warnings to stop knocking of the army men and chose to continue, so clearly some amount of blame does lie at his door. If you find this dizzying, what till I get going!\n\n# Justice doesn't help my boys\n\nWhere was I? Oh yes, this is when it hit me: the entire exercise is a waste. Justice won't help here. Certainly for the older boy, the purpose of any discipline is to help him learn how to control himself. It's about teaching him that he can't hit other people (at least not without a better cause).\n\nIn the case of the younger brother, it's less clear. He was hurt. What will he take away from the situation if he feels the wrong is not redressed? In the moment, he needed a hug and some reassurance that he wasn't going to die from being smacked by his brother. \n\nIf I'm honest, part of how I parent is shielding my kids from the harshest consequences of their actions, giving them the chance to learn how to be good people through trial and error. The hardest part of parenting is figuring out which consequences to let your children bear. \n\n(The above statement is pretty controversial--at least to my ears. Consequences are good. Shouldn't we always experience the consequences of our actions?)\n\n# What do you think? Should there be justice for my boys? \N 14731 \N 443303 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.4596673228128 0 \N \N f 218718327 \N 1 70917070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403355 2025-02-14 18:06:06.508 2025-03-29 22:39:47.371 Domain Spoofing Mutiny Wallet’s Website In this article, I will address one potential danger of browser-based wallets called domain spoofing.\n\nMore specifically, I want to use Mutiny to give a practical example of the risks of a specific type of domain spoofing called a homographic attack. https://www.psacramento.com/domain-spoofing-mutiny-a-web-based-bitcoin-wallet/ 12976 \N 403355 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.4363479219934 0 \N \N f 470066477 \N 2 178727669 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 404249 2025-02-15 17:33:54.209 2025-03-29 22:39:47.371 A Personal Story: Why You Should Read Frédéric Bastiat's "The Law" _A stunning philosophical work that influenced thinkers like Henry Hazlitt, Ron Paul, and even me._\n\n# Introduction\n[_The Law_](https://fee.org/resources/the-law/) is a pamphlet written by French economist Frédéric Bastiat in 1850 while he lay on his deathbed. It is a riveting and astoundingly effective defense of liberal ideas. Much of it is devoted to establishing the natural rights which God has given us and attacking the socialist ideas which harm those rights. The work has influenced countless individuals over the years, including Henry Hazlitt, Murray Rothbard, Ron Paul, Ronald Reagan, and Milton Friedman. Any person interested in the ideas of liberty, or even governmental theory in general, ought to take the time to read _The Law_.\n![Frédéric Bastiat](https://imgprxy.stacker.news/ZRxWnyQTygQJzHXMbNeX9Hs7oYjOpm563iukBTPkgvQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy9lL2U2L0Jhc3RpYXQuanBn)\n\n# How I Found Bastiat\nI stumbled upon a copy of the book once while thumbing through the small personal library of a dear friend of mine. When I asked them about this small, insignificant book, they told me that it had been a while since they read it, but that it was a work every political philosopher should read at some point. So I asked if I could borrow it and headed home.\n![bookshelf](https://imgprxy.stacker.news/R2IpdrPOM2_44O9I70ZX4RYD-zBdmm2eYp5WMRUYEF4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZXMudW5zcGxhc2guY29tL3Bob3RvLTE0ODE2Mjc4MzQ4NzYtYjc4MzNlOGY1NTcwP2l4bGliPXJiLTQuMC4zJml4aWQ9TTN3eE1qQTNmREI4TUh4d2FHOTBieTF3WVdkbGZIeDhmR1Z1ZkRCOGZIeDhmQSUzRCUzRCZhdXRvPWZvcm1hdCZmaXQ9Y3JvcCZ3PTE1MjgmcT04MA)\n###### [Image by Janko Ferlič](https://unsplash.com/@itfeelslikefilm)\n\nI poured over the book, absolutely devouring the text. Bastiat is famous for his witty humor and understandable language, which certainly helped to keep me hooked. But what really made me hang onto Bastiat's every word was his riveting pace and resolute conviction. This was a man literally writing from his deathbed, and you can tell that he was giving a final message to the world, writing things about freedom which he knew to be true. Consider one quote from the text that remains one of my favorites to this day.\n> Ah, you miserable creatures! You who think that you are so great! You who judge humanity to be so small! You who wish to reform everything! Why don't you reform yourselves? That task would be sufficient enough.\n\n# Why His Arguments Stuck With Me\nI had always been a lover of freedom before reading Bastiat, but something about his work stuck with me. _The Law_ is by no means a superficial defense of liberty, nor is it one that feels radical or extreme. He does not advocate for overthrowing the government, does not stoutly affirm that we are being oppressed or any such thing. Instead, his arguments are measured, calm, and powerfully clear. He made his points in a way that felt completely reasonable and distinctly human; in _The Law_, liberty is the only way for humans to live.\n\nConsider how he makes the majority of his arguments. They could be seen as blunt or dismissive of opposition, but really, I feel they are full of clarity. Bastiat knows what he knows, and he wants you to discover those things as well.\n> Life, liberty, and property do not exist because men have made laws. On the contrary, it was the fact that life, liberty, and property existed beforehand that caused men to make laws in the first place.\n\n> Socialism, like the ancient ideas from which it springs, confuses the distinction between government and society. As a result of this, every time we object to a thing being done by government, the socialists conclude that we object to its being done at all. We disapprove of state education. Then the socialists say that we are opposed to any education. We object to a state religion. Then the socialists say that we want no religion at all. We object to a state-enforced equality. Then they say that we are against equality. And so on, and so on. It is as if the socialists were to accuse us of not wanting persons to eat because we do not want the state to raise grain.\n\nIt was like putting on glasses for the first time. Not only did politics seem more understandable, it also became incredibly distinct.\n![glasses](https://images.unsplash.com/photo-1540162875225-3f6b56d69fe8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1287&q=80)\n###### [Image by Nathan Dumlao](https://unsplash.com/@nate_dumlao)\n\n# Core Arguments of _The Law_\nBastiat makes several key arguments throughout the pamphlet:\n1. The law exists to secure natural rights. Any other use of the force of law perverts it and offends our basic dignity of humans.\n2. Government and the law often attract those who wish to shape and mold society through what Bastiat terms "legal plunder".\n3. Proponents of "legal plunder" and socialism misunderstand both the dignity of humans and the separation of government and society.\n4. We must commit ourselves to creating law in which no one plunders anyone else.\nThere is obviously much more inside of this brief but powerful book, but I will leave you to read and find out.\n\n# Summary\nFrédéric Bastiat was an incredible writer and thinker. His works on economics, politics, free trade, taxation, philosophy, and more have had ripple effects across generations. I would highly encourage all of you to take the time to read [_The Law_](https://fee.org/resources/the-law/). It will change your entire outlook on the world of politics, just as it changed mine.\n!["The Law" book](https://imgprxy.stacker.news/RTfNL0_OUa3DuoyPKb7pwCmOWpuQ6NERMMh4vhFtUaU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9mZWUub3JnL21lZGlhLzM1MTY4L3RoZS1sYXctZnJvbnQucG5nP2FuY2hvcj1jZW50ZXImbW9kZT1jcm9wJndpZHRoPTkwMCZmb3JtYXQ9d2VicCZybmQ9MTMyMDk3NTM0MjkwMDAwMDAw) \N 1751 \N 404249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3738012125541 0 \N \N f 150238339 \N 1 130091296 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401603 2025-02-13 08:18:09.936 2025-03-29 22:39:47.371 Do you use the term Bitcoin Maximalist to describe yourself? I hear some people talk about how they hate the term Bitcoin Maximalist for various reasons - either because Vitalik Buterin came up with the term, or because of the "toxic" stigma attached to it.\n\nI was suprised to see that Swan CEO, Cory Klippsten, said in a [recent Tweet](https://twitter.com/coryklippsten/status/1659636087906775040) that he hates the term so much he has the word on his Twitter banned word list. He also said that the term Bitcoin Maximalist is ["a diminutive of an epithet, created by a shitcoiner with the purpose of slandering Bitcoiners.](https://twitter.com/coryklippsten/status/1659630169508974593?s=20)\n\nThis is what ignited this question from me.\n\nWhat do you think? Do you class yourself as a Bitcoin Maxi, or do you hate the word? Why and what do you use instead as a better alternative? \N 21424 \N 401603 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.1945047511524 0 \N \N f 137812768 \N 1 239231543 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448802 2025-03-22 22:04:45.649 2025-03-29 22:39:47.371 Native American Bitcoin Mining? I went into the only market on the Hualapai Reservation this morning to grab some coffee and a roll for breakfast. There was more than one notice warning that it was illegal to buy and sell SNAP/EBT cards on the premises. \n\nI had ambivalent feelings. I oppose US government handouts paid for by taxpayers. On the other hand, I see the hardscrabble existence these people are eking out on land the government gave them as consolation for being invaded. Not much grows in this desert environment. People are doing what they need to do to survive and maybe get ahead. \n\nI know that bitcoin mining has been at least considered on tribal lands, I think by the Navajo Nation. I got a few phone numbers and I'm going to make some calls to tribal leaders when I get home. People look at you as if you're crazy if you bring up bitcoin in person here. I am an outsider and probably come across as a scammer. \n\nStill, bitcoin would benefit Native Americans immensely. I know there was some kind of initiative a few years back, but I think the guy involved was promoting a shitcoin. \N 5779 \N 448802 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 4.07711620804754 0 \N \N f 425357314 \N 4 203017957 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 17:01:50.722 f \N \N \N 0 0 0 0 2 0 0 1565 2022-09-19 08:37:32.814 2025-03-29 22:39:47.371 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/399442) are the updates stackers shared from all their latest work projects. \N 679 \N 1565 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.91551430912185 0 \N \N f 342348547 \N 4 217883255 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423384 2025-03-03 10:07:45.096 2025-03-29 22:39:47.372 Interest in a Lightning Address Alias Service? Hi All,\n\nI'm writing to gauge interest for a lightning address alias service for privacy before I spend the time deploying the proof of concept I've built. \n\nProblem: Lightning addresses are public identifiers that are generally tied to a single wallet. This can raise privacy concerns for individuals that work on multiple projects or have multiple online identities. For example, I go by different handles on Reddit, nostr, and Twitter and may like those identities to remain separated. Putting my lightning address in all 3 places would **easily** link those identities together. \n\nSolution: Lightning Address Aliases\n\nI'm proposing a completely free service that would allow users to generate **unlimited** lightning addresses that serve as aliases to a single, existing, lightning address. Similar to SimpleLogin and AnonAddy services that exist for email.\n\n\nExample:\n- Lightning Address Alias Service is hosted at https://privacy.ln (example for demonstration, not real domain)\n- Main Lightning Address I want to keep private, the **Destination Address**: **privnut@stacker.news**\n- Users can create unlimited aliases such as **alias1@privacy.ln** (I envision multiple domains being available for selection) and set those aliases to point to the Destination Address **privnut@stacker.news**\n- Further alias examples: **MyTwitterHandle@privacy.ln**, **MyRedditHandle@privacy.ln**, **MyNostrHandle@privacy.ln**, you get the point\n- Sats sent to any of these aliases would arrive at **privnut@stacker.news** without revealing that **privnut@stacker.news** is the destination or even exists.\n- Users would be asked for an email address, any email address, when creating an alias. Users could then log in to a dashboard to manage their aliases, create new ones, or redirect them to a new **Destination Address** (handy if you move to a new wallet provider, so you don't have to update your lightning address everywhere).\n\nThese aliases would not touch the sats, redirect them, or change their route. LNURL-Pay requests sent to any of the aliases linked to a Destination Address would all generate the same invoice.\n\nThat leads us to, Drawbacks:\n- Requires having an existing lightning address to use as the Destination Address\n- The payee pub key would be the same for all aliases and the Destination Address. Theoretically aliases and the Destination Address could be linked by mass requesting invoices from addresses, decoding them to gather pub keys and using those pub keys to link addresses, breaking the privacy of the aliases.\n\nThoughts? Suggestions? Concerns? Would this be something you'd use? Is this even necessary? or do the drawbacks listed (and maybe some I've missed) make it worthless? \N 21555 \N 423384 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.0742446119565 0 \N \N f 2128891305 \N 17 73640707 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 441843 2025-03-18 10:26:52.398 2025-03-29 22:39:47.373 Comparing the Lightning Network to validia chains and validity rollups \N https://lightco.in/2023/12/13/lightning-validia-rollups/ 1647 \N 441843 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.68741842505938 0 \N \N f 159108680 \N 2 5397158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434931 2025-03-12 10:50:15.722 2025-03-29 22:39:47.373 James Lavish / @jameslavish / Bitcoin Investor AMA Hey everyone, some of you may know me from X/Twitter (@jameslavish) or through my newsletter, The Informationist (www.jameslavish.com), where my goal is to simplify financial concepts for anyone to understand. \n\nI’ve worked on the floor of the NYSE, at big investment banks and pretty big hedge funds. So, I can give some insight into that world and thinking around Bitcoin, in particular. You know, the ETFs, institutional barriers, adoption, etc.\n\nSome other stuff. I lived in Texas for over 20 years, where I got some pretty cool cowboy boots and learned to make a mean brisket.\n\nAnd before all this, I was a hockey player at Yale and for a short while after. So, we can talk about that, too.\n\nI’ll be here for an hour starting 12pm PT/3pm ET, AMA! \N 18528 \N 434931 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.973735063213823 0 \N \N f 260747991 \N 2 246253919 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:06:59.792 f \N \N \N 0 0 0 0 2 0 0 140609 2024-03-10 15:14:50.355 2025-03-29 22:39:47.371 Bitcoin is a Tradfi Asset now I know. I know. Bitcoin is for everyone. \n\nI know. I know. Bitcoin is for enemies. \n\nI know. I know. Bitcoin is permisionless.\n\nAnd so on. \n\n**Disclaimer: Don't shoot the messenger. This is not an opinion piece but maybe an observation piece and a bit of forecasting of what I expect will happen in the coming years.**\n\nWith the introduction and demand for US based bitcoin spot etfs, the demand for usage of bitcoin CME futures to play fiat cash and carry trade games, and the adoption of Bitcoin as a treasury reserve for public companies, Wall street and Bitcoin are becoming ever more intertwined. \n\n![](https://m.stacker.news/35206)\n\nThis relationship is most certainly good for the Bitcoin fiat price over the long term and likely takes the regulatory risk of an outright ban in the US off the table. It is good for "adoption" if your definition of adoption is Bitcoin as an ever growing allocation amongst a larger portfolio of assets. \n\nI am amendable to the idea that Bitcoin could be a trojan horse that slowly takes over the traditional system from the inside. I am also amenable to the idea that the opposite might happen and Bitcoin may ultimately be just another tradfi asset. Either way time will tell. \n\nIn the short to medium term (say the next 5-15 years) I expect the divergence between the way Bitcoin is adopted in "emerging" or "volatile" nations and "wealthy" nations to continue to exacerbate.\n\n**Adoption Model A:**\n\nEmerging and volatile nations are likely to continue to adopt bitcoin as a lifeboat from political instability, war, fiat hyperinflation. I expect more nations will test a version of the El Salvador model, more Bitcoin communities like bitcoin beach etc will pop up, Bitcoin will be used peer to peer, as a medium of exchange as well as a store of value more broadly. \n\n**Adoption Model B:**\n\nWealthy nations are likely to continue to adopt Bitcoin as store of value asset that is part of a broader portfolio. I expect we will see much more corporate treasury adoption, bitcoin added to the portfolios of most pension funds, endowments etc and possibly even central banks eventually. A robust tradfi options market will develop, big banks will be permitted to custody Bitcoin and it will begin to be utilized as one of the primary collateral assets by wall street and retail alike. You will borrow against your Bitcoin and be happy. \n\nI have to add a not so small caveat to adoption model B. This is dependent on the fiat can being able to be continually kicked down the road. If something really breaks in the bond market or with the US dollar then all bets are off and Bitcoin as a lifeboat likely kicks in. \n\nUltimately, I think the diverging adoption models are both bullish for Bitcoin and I am hopeful that eventually the participants in adoption model B dig in and learn about what they own. However, I am somewhat concerned that in adoption model B the people who need Bitcoin the most will be on the outside looking in as wall street, corporations, institutions and high net worth individuals gobble it all up for themselves. While good for the wealth of early adopters it would be unfortunate if current generation and coming generations of people who need Bitcoin the most end up with CBDCs, memecoins and shares of the next gamestop instead. So, let's not stop educating the next generation of bitcoiners- we have souls to save!\n\nThanks for reading.\n\nSats for all,\nGR \N 10591 \N 140609 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6209130745391 0 \N \N f 387102302 \N 3 2600158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435053 2025-03-12 12:34:28.669 2025-03-29 22:39:47.371 Building on Lightning: lipa Is Revolutionizing Wallets with the Breez SDK \N https://medium.com/breez-technology/building-on-lightning-lipa-is-revolutionizing-wallets-with-the-breez-sdk-382e3a21c852 11164 \N 435053 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.5314227888118 0 \N \N f 60044755 \N 2 1613384 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 06:06:06.34 f \N \N \N 0 0 0 0 2 0 0 450359 2025-03-23 22:12:42.549 2025-03-29 22:39:47.375 Wars, Separation of Money & State **Separating money from state** is the single most effective way to **stop all wars** from happening, **everywhere**, and that is something we can **all actively participate in, right now.**\n\n**Yelling at a problem won’t make it go away.**\n\nSome lessons and notable quotes from history:\n![](https://image.nostr.build/21f441ba332e1dc964897b49ccc47a4fc914d9932b4dde861266b18c5b1b197a.jpg)*Source*: "[Hyperinflation in the Weimar Republic" Britannica article](https://www.britannica.com/event/hyperinflation-in-the-Weimar-Republic)\n\n*“It is no coincidence that the century of total war coincided with the century of central banking.”*\n― **Ron Paul**\n\n*“It is the ability of governments to acquire money without direct taxation that makes modern warfare possible, and a central bank has become the preferred method of accomplishing that.”*\n― **G. Edward Griffin**\n\n*“The government created the national banking system during the Civil War.”*\n― **Michael D. Bordo** ("[A Brief History of Central Banks](https://www.clevelandfed.org/publications/economic-commentary/2007/ec-20071201-a-brief-history-of-central-banks)," published on the Federal Reserve Bank of Cleveland website, 2007)\n\n*“Why did nations start central banks? To finance the materiel needs of the nation-state in time of war.”*\n― **Brian Domitrovic** (“[Central Banking's Connection To Warfare Is Intimate](https://www.forbes.com/sites/briandomitrovic/2018/07/01/central-bankings-connection-to-warfare-is-intimate/?sh=5fca4267299f),” published on Forbes, 2018)\n\n*“War... is harmful, not only to the conquered but to the conqueror.”*\n― **Ludwig von Mises**\n\n*“War is a profitable venture for the banking elite, as it allows them to finance both sides and profit from increased debt.”*\n― **G. Edward Griffin** (“The Creature From Jekyll Island,” 1994)\n\n*“Again, coinage saw its greatest debasement during times of war and uncertainty.”*\n― [“Roman currency” Wikipedia article](https://en.wikipedia.org/wiki/Roman_currency)\n\n*“Nobody should have money but I, so that I may bestow it upon the soldiers."*\n― **Caracalla** (the Roman Emperor from 198 to 217 A.D., who raised his soldiers' pay by 50%, doubled the inheritance tax, admitted almost every inhabitant of the empire to Roman citizenship (for tax collection purposes, of course) and subsequently resorted to debasing both the silver and gold coins).\n*Sources*: **Jeff Desjardins** (“[Currency and the Collapse of the Roman Empire](https://money.visualcapitalist.com/currency-and-the-collapse-of-the-roman-empire/),” The Money Project),\n[“Caracalla” Wikipedia article](https://en.wikipedia.org/wiki/Caracalla)\n\n*“To defeat the aggressors is not enough to make peace durable. The main thing is to discard the ideology that generates war.”*\n― **Ludwig von Mises**\n\n*“It’s a great business to be in - central banking. We print money and people believe it.”*\n― **Adrian Orr** (Governor of the Reserve Bank of New Zealand, [February 2024](https://x.com/wideawake_media/status/1772997356222394654))\n\n*“Politics can affect things temporarily and locally, but technology is what drives things forward globally and permanently.”*\n― **Lyn Alden** (“Broken Money,” 2023)\n\n**Study the history of money. [Study Bitcoin](https://nakamotoinstitute.org/).**\n\nAlso, **don’t buy** government bonds, t-bills, t-notes or any other type of **government debt**, no matter what your financial advisor or favorite macroeconomics guru is telling you. It’s just another way of **feeding the same beast.**\n\nAnd what we need to do is **starve the beast.**\n\nThis is just one of the many reasons why “separation of money and state” is such a critical issue at this point in history.\n\nStay **safe** and stay **sane**, my friends.\nDon’t succumb to the hate.\n☮️ & ❤️,\n[Kontext](https://vida.page/mckontext)\n///\n*May 29, 2024, published at block height 845,667* \N 1814 \N 450359 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 2.51316830048466 0 \N \N f 50011820 \N 1 116425103 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437714 2025-03-14 19:37:16.789 2025-03-29 22:39:47.375 Let's start a Fedimint together! I've followed the project for some time and finally wanted to try it out after the recent release. Currently, I'm running a single guardian Fedimint, but where's the fun in that? If you managed to set up a Fedimint and want to start a bigger one with someone else please reach out! I think we need to be at least 4 people.\n\nMy Fedimint: fed11qgqpu8rhwden5te0vekjuem9dejhx6tn9e3hgunz9e5k7tmhwvhsqqfq5a2sy0f26k6ndld2qpassl0gd4cx2szmfv98zfn83ywp4mja3m4s7yz4zq\n\nNostr: nprofile1qqsrhyktkhd8s83cqzacjka0c4zqjnz76e75xqmf3wu8jvmu24kpxjst3vkgn\nE-Mail: ctrbactual@proton.me https://genesis.ctrb.io/about/ 8570 \N 437714 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 8.24764533573191 0 \N \N f 1374508476 \N 9 99777681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 434920 2025-03-12 10:40:41.165 2025-03-29 22:39:47.375 Open Source Liability is Coming \N https://developersalliance.org/open-source-liability-is-coming/ 4487 \N 434920 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 9.58090129001967 0 \N \N f 124945228 \N 1 217560606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:14:49.606 f \N \N \N 0 0 0 0 1 0 0 413650 2025-02-23 12:20:39.532 2025-03-29 22:39:47.371 Break free from your SN wallet chains- Here is how!!! **We are Cowboys**\n\nWe are meant to be free and roam the frontier with our hats, horses and guns. While cowboy credits does have a nice ring to it, let's be honest, we all want to zap real sats. \n\nI have been harping on the sheriff, @k00b, to give the cowboys some guides to help them follow the new laws. So, I am putting my sats where my mouth is and boosting this to the top of ~bitcoin beginners (I am the captain now @siggy47). \n\nAt this point you are probably all wondering "grayruby is not a technical person, he doesn't even know what an rss feed is, how is he going to produce guides for attaching external wallets?"\n\nA fair question indeed, but one of my many talents in life is knowing when I should just stay in my lane and just rely on the brilliance of others. \n\nFortunately, @supratic has made some awesome guides that will hopefully make things a bit easier. I recommend you bookmark this post for easy reference when you head out on your external wallet adventure. \n\nReminder: I am just the messenger here. Please direct any of your questions to @supratic, @ek or @k00b \n\nhttps://stacker.news/items/694593 Easily attach wallet to SEND & RECEIVE sats from SN with Coinos.io and HODL\nhttps://stacker.news/items/695912 Install, Run, Publish & Connect 𝚙𝚑𝚘𝚎𝚗𝚒𝚡𝚍 to SEND/RECEIVE sats to/from SN\nhttps://stacker.news/items/697132 How to Attach Your self-hosted LNbits wallet to SEND/RECEIVE sats to/from SN\nhttps://stacker.news/items/704693 How to attach your LND node to RECEIVE bitcoin from SN via ThunderHub\nhttps://stacker.news/items/705629 How to attach your Blink.sv wallet to SEND sats to SN with a Blink's API key\nhttps://stacker.news/items/698497 How to Connect your LN node to SEND/RECEIVE sats to/from SN via NWC with AlbyHub\n\nHappy riding and shooting!\nGR\n\n\n\n\n \N 756 \N 413650 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.30124798236298 0 \N \N f 242345266 \N 1 12272165 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435914 2025-03-13 05:13:26.529 2025-03-29 22:39:47.371 Mint Auditor > I've built a thing: The Cashu mint Round Robin auditor \n>\n> An app that perpetually monitors a list of mints by randomly sending Lightning payments between them. Forever. The sats go in a circle until all is lost to fees or rugs. If a mint fails to pay an invoice, it is marked with a scary red label.\n>\n> You can donate Ecash from any mint to add it to the list of audited mints!\n\nnote1sl4yllteusns2m7n9e2408nqdzcx298t9xj484lr4zr769mweeksgnht94 https://audit.8333.space/ 1761 \N 435914 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 3.74233738266469 0 \N \N f 203012464 \N 2 74061123 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:57:25.053 f \N \N \N 0 0 0 0 2 0 0 409787 2025-02-19 21:23:21.535 2025-03-29 22:39:47.371 PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD Yesterday, the CNE (National Electoral Council) proclaimed Nicolás Maduro the winner of the presidential elections. It was a complete electoral fraud, since there is evidence of the legitimate results, of Venezuelan citizens protecting the polling stations with their lives. Even an accomplice of the dictatorship was so stupid and shameless that he took a photo where in the background you can see the REAL RESULTS of these elections.\nThe blue color represents the candidate Edmundo González and the red color represents the dictator candidate Nicolás Maduro\n![](https://m.stacker.news/42353)\n\nIn all segments of the population in Venezuela, Edmundo González won over the tyrant Nicolás Maduro, according to the exit poll by Edison Research. Maduro committed massive fraud and the world knows it.\n![](https://m.stacker.news/42354)\n![](https://m.stacker.news/42357)\n![](https://m.stacker.news/42358)\n\nAfter the obvious results, they have the audacity to declare Maduro the winner of the elections.\n![](https://m.stacker.news/42360)\n\nTo celebrate their "victory" they did it in the best style that a narcissist and psychopath would do, with a small group of tyrants and unscrupulous thieves.\n![](https://m.stacker.news/42361)\n![](https://m.stacker.news/42362)\n![](https://m.stacker.news/42363)\n![](https://m.stacker.news/42364)\n\nVenezuela did not remain silent, today all the towns, neighborhoods and cities have spoken out against him. Some places with peaceful protests and other places with aggressive protests.\nI will attach the links to today's videos from different parts of the country.\n\nIn turn, different countries have given their support to the Venezuelan opposition and declared the actions of the communist party to be fraudulent. The countries that support Edmundo González and Maria Corina Machado are:\n-Javier Milei:\n"DICTATOR MADURO, OUT!!!\n\nVenezuelans have chosen to end the communist dictatorship of Nicolás Maduro. The data announce a crushing victory for the opposition and the world is waiting for him to recognize the defeat after years of socialism, misery, decadence and death.\n\nArgentina will not recognize another fraud, and hopes that the Armed Forces will defend democracy and the popular will this time.\n\nFreedom Advances in Latin America."\n![](https://m.stacker.news/42365)\n\n-Rodrigo Chávez Robles:\n"The Government of Rica categorically repudiates the proclamation of Nicolás Maduro as president of the Bolivarian Republic of Venezuela, which we consider fraudulent. We will work with the democratic governments of the continent and international organizations to ensure that the sacred will of the Venezuelan people is respected."\n![](https://m.stacker.news/42366)\n\n![](https://m.stacker.news/42367)\n\n![](https://m.stacker.news/42368)\n\n![](https://m.stacker.news/42369)\n\n- Jose Raul Mulino:\n"Panama joins the general rejection of the electoral results in Venezuela. We hoped that the popular will would be respected, but this situation was ignored. We will act individually and collectively in favor of Venezuelan democracy. We will announce measures that we will adopt in accordance with inter-American rules in the next few hours."\n![](https://m.stacker.news/42370)\n\n"Ecuador rejects the lack of transparency in the elections held on the 28th of July in Venezuela. The absence of guarantees in the process of publishing results, which reflect the will of the Venezuelan people, delegitimizes and vitiates the results of the elections.\n\nEcuador calls on the international community to ensure that the Venezuelan government fully and transparently verifies the elections, with the participation of impartial international observers."\n![](https://m.stacker.news/42371)\n\nPanama and Peru suspended diplomatic relations with Venezuela, withdrawing their ambassadors from the country.\n\nStatement by President Gabriel Boric on Venezuela:\n\n“The elections must be absolutely TRANSPARENT and VERIFIABLE by international observers who are NON-PARTISAN with the government. Until this is done, we will ABSTAIN FROM RECOGNIZING IT”\nhttps://x.com/agusantonetti/status/1817924803107475466\n\n-Bukele:\n"GOOD MORNING to the brave people of Venezuela who expressed themselves yesterday for a Free Country while a small usurping group wants to remain in power due to a mega Fraud.\n\nInternational organizations know what happened yesterday in Venezuela as well as the Venezuelan people themselves."\n![](https://m.stacker.news/42372)\n\nProtests across Venezuela:\n\nAnzoategui:\nhttps://x.com/VVperiodistas_/status/1817993085655371798\n\nAragua\nhttps://x.com/VVperiodistas_/status/1818000708773224569\n\nhttps://x.com/leopoldolopez/status/1817970613115613394\n\nhttps://x.com/AlertaNews24/status/1817985613100106158\n\nhttps://x.com/VVperiodistas_/status/1817983715747955024\n\nhttps://x.com/VVperiodistas_/status/1817981575533142176\n\nCaracas\nThere is no celebration, what is heard is the spontaneous banging of pots and pans in the eastern neighborhoods of Caracas that in the past supported the revolution, now reject it with votes and protests.\nhttps://x.com/NituPerez/status/1817950397580902594\n\nhttps://x.com/UHN_Plus/status/1817959914519839073\n\nhttps://x.com/LeugimSanchezS/status/1817962028771983403\n\nhttps://x.com/AndrewsAbreu/status/1817968562339987892\n\nhttps://x.com/VVperiodistas_/status/1817976332904698275\n\nhttps://x.com/EmmaRincon/status/1817975864530980971\n\nhttps://x.com/plomoparejo/status/1817971090200867220\n\nhttps://x.com/isnardobravo/status/1817968741122007104\n\nhttps://x.com/EmaFigueroaC/status/1817965367115043102\n\nhttps://x.com/plomoparejo/status/1817970299452969296\n\nhttps://x.com/VVperiodistas_/status/1817978550844277060\n\nhttps://x.com/OrlvndoA/status/1817947471831535710\n\nhttps://x.com/lilianaf523/status/1817970794837983286\n\nhttps://x.com/diloatodos/status/1817966089676149217\n\nhttps://x.com/leopoldolopez/status/1817969770492477837\n\nhttps://x.com/VVperiodistas_/status/1817982644187185565\n\nhttps://x.com/zuricht94/status/1817975401727336551\n\nhttps://x.com/AlertaNews24/status/1817984153385910637\n\nhttps://x.com/Luisrgrb65/status/1817973235704872998\n\nhttps://x.com/Jorbrainer/status/1817969644214567107\n\nhttps://x.com/VelasquezEd16/status/1817974362706006294\n\nhttps://x.com/plomoparejo/status/1817973019790491705\n\nMiranda\nThe symbols of the Chavista tyranny continue to fall. This is Valles del Tuy, Miranda state #FraudInVenezuela\nhttps://x.com/VVperiodistas_/status/1817997259138597298\n\nhttps://x.com/VVperiodistas_/status/1817991708866453690\n\nhttps://x.com/VVperiodistas_/status/1818002757351047576\n\nhttps://x.com/VVperiodistas_/status/1818005624434647165\n\nhttps://x.com/anaisandola/status/1817971660412305833\n\nhttps://x.com/leopoldolopez/status/1817970162827411917\n\n#29Jul | STEALING TIRES!\n\nI received this video from the San Antonio residences, located in La Bandera, where alleged PNB officials are seen removing tires from a parking lot.\nhttps://x.com/DalyseLeon/status/1817966698877866411\n\nLara\nhttps://x.com/laprensalara/status/1817955918266380420\n\nhttps://x.com/VVperiodistas_/status/1818004523018850751\n\nGuárico\nhttps://x.com/VVperiodistas_/status/1818003616138932341\n\nCarabobo\nhttps://x.com/EmmaRincon/status/1817979123803017664\n\nhttps://x.com/GabytaSuniaga/status/1817971482372542861\n\nhttps://x.com/VVperiodistas_/status/1817984526771175773\n\nhttps://x.com/GabytaSuniaga/status/1817966958748238000\n\nFalcón\nhttps://x.com/VVperiodistas_/status/1817999286312882208\n\nhttps://x.com/agusantonetti/status/1817960104026849332\n\nhttps://x.com/heymariangel/status/1818005773290483761\n\n\n\nThe Attorney General of the dictatorial regime of Venezuela, Tarek William Saab, accuses Lester Toledo, Leopoldo López and María Corina Machado of planning a hack against the CNE transmission system. \n\nIn a press conference, Saab said that the attack was carried out from North Macedonia and that “it was intended to manipulate” the votes. “Fortunately this action was avoided, but they managed to pause the reading of the final bulletin. They wanted to adulterate the minutes themselves. We have located and identified the main leader… Lester Toledo.”\nhttps://x.com/UHN_Plus/status/1817959045656977427\n\n![](https://m.stacker.news/42376)\nDamn Maduro\n\n \N 21365 \N 409787 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 9.60219039518066 0 \N \N f 267250018 \N 2 143504263 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451208 2025-03-24 12:51:00.234 2025-03-29 22:39:47.371 "Fear of a Black Flag" -- Alan Moore's 2010 essay on anarchy Been thinking about (and still plan on) writing some stuff on Alan Moore's big three anti-state works from the '80s (*Watchmen*, *V for Vendetta*, *Miracleman*), and while doing some googling, found this essay of his, from *Dodgem Logic*, a magazine he edited and published in 2010. Moore's arguably the most important modern comics writer (inarguably in the top 3), and I found this intriguing on its own as well as a lens to view his writing through. \n\nOne pull quote that intrigued me:\n\n>In the present day, the Internet potentially provides the means for such an education and even allows for the creation of alternate currencies or barter systems such as the Green Pound movement that’s intermittently at large in deprived areas of Britain, in which people who are mostly unemployed trade hours of their work-time as a method of avoiding the official currency completely.\n\nWhile BTC existed in 2010, Moore may well not have been aware of it, and I'd love to know his thoughts (which googling does not seem to surface). \n\nEverything that follows is his full essay:\n\n\n*In 1976 Johnny Rotten wanted to be anarchy. He also wanted to get pissed and destroy passers-by. In 2010, when that’s a normal Friday night out in any town centre, should we be taking a closer look at history’s supposedly scariest political movement?\n\nAlan Moore investigates.*\n\nThe word anarchy comes with a lot of baggage. It conjures images of men in capes and broad-brimmed hats clutching black bowling balls with fizzing fuses and the helpful legend BOMB scrawled on the side in white emulsion. It’s become a kind of shorthand standing for the breakdown of society and order into screaming chaos; into a Hieronymus Bosch landscape populated by looters, berserkers, giants with leaking boats for feet and eggshells for a body. In the tabloid mass-mind, anarchy has been boiled down into an ultra-violent and demented version of Spy vs. Spy, adapted from a screenplay by Rasputin and the Unabomber. Hardly an attractive proposition, and yet throughout history this is the cause to which some of our greatest and most humane thinkers have subscribed, and to which countless thousands of brave men and women have devoted or indeed have given up their lives. If Darwin in his later years came to see anarchy as the most sensible political position can we casually dismiss it, either as a wild Utopian dream or as a recipe for howling bedlam? Before we toss anarchy onto the scrapheap of discarded ideas alongside the Flat Earth theory and 110% mortgages, perhaps we could make an attempt to find out what the word actually means?\n\nAs often proves to be the case with words, the Greeks most definitely had one for it, in this case anarchos, meaning ‘without rulers’. It would seem upon the surface to be a straightforward notion, but its full ramifications and its difficulties only become visible through close examination. For example, if there are no rulers, everyone is free to follow their own judgement in all matters, even in the way they define anarchy itself. As you might well imagine, this has led to a bewildering profusion of of anarchist subdivisions, categories and splinter movements with radically different views and therefore not infrequently at one another’s throats: Communist Anarchists, Free Market Anarchists, Egoist Anarchists, Anarchists Green or Syndicalist, Post-Left or Feminist, Anarchists Insurrectionary or Pacifist. Then there’s Anarchy Without Adjectives which sounds entirely sensible despite the fact that the words ‘Without Adjectives’, used here as a descriptive phrase, are actually performing all the functions of an adjective. Faced with this stupefying undergrowth of different strains of anarchy, we might be better off returning to that first and simplest definition, ‘without rulers’, and see where we go from there.\n\nIt could be argued that this state of being without leaders is our natural one, both as a species and as individuals. A new-born infant, child psychologists inform us, can’t at first tell where it ends and where the universe begins. The rattle and the cot bars and its mother are seen as extensions of itself, no different to the baby’s waving arms and legs. When we were fresh out of the womb, then, we were not just rulers in our own domain: we were its pink and wizened deities, were everything we saw or heard or touched, were the whole cosmos. Only later, after we had learned some rudimentary language skills, did we begin to understand the towering hierarchies of authority, the system of command that we were on the lowest rung of, answerable to our parents who were themselves answerable to their bosses and their landlords, their constabulary and their governments. The governments, presumably, were only answerable to the Queen or God or someone inaccessible and probably imaginary like that. We grudgingly accepted that we were not even atoms in the cogs of an immense social machine that neither we nor anybody that our great-grandparents knew had ever been consulted during the construction of. And yet, just for a moment there, our natural assumption in the cradle had been that the bunny-rabbit mobile moved the way we wanted it to move and that we were in charge of our own destinies. We were in charge of everything.\n\nThe same is true of our emergence as a species, when we lived as tribal family units in our self-governing huts or caves, not vastly different from the separate herds or flocks of animals around us. And while it may seem as if a tribe of people or a herd of animals inevitably will be dominated by a patriarch, a matriarch, an alpha-male or leader, this is not always the case. Our earliest studies with regards to animal behaviour made truckloads of assumptions that were based upon our own behaviour as humans. We identified the leader of a pack as being the big male who sorted out the territorial disputes and had his pick amongst the choicest females, an unlikely hybrid of John Wayne and Russell Brand that we as humans saw fit to impose on the behavioural quirks of deer or wolves alike. Only more recently have we accepted that while the butch alpha male may well be handling all the punch-ups, other individuals all seem to have their own unique importance to the group’s wellbeing. Perhaps one might be an animal who always seems to find new food or grazing land. Another might be an old female whom the other members of the herd or tribe will gather round protectively in the event of an attack. It would appear that many animal societies involve various roles and numerous components working in cooperation for the greater good, without the need for any one component of the group to be perceived as leader. While Charles Darwin thought that fierce and often bloody competition was the driving force that guided evolution, there is as much evidence suggesting that cooperation plays an equal if not greater part in the survival of the fittest, such as with the sex-crazed and agreeable Bonobo chimps that are amongst our closest primate relatives.\n\nLooked at from this perspective, it’s not anarchy that seems unnatural so much as an imposed and non-consensual authority itself. In any normal human group such as a family or set of friends, excluding members of the Cripps or Bloods, do we still think of one specific person as the leader? Has there genuinely been a head of household since Edwardian times? Mostly, in any halfway functional arrangement there is an informal set of checks and balances that can maintain the equilibrium without the need for regulation from an outside party. This cooperation between individuals who may not share the same opinion, this ability to recognise and to respect the fact that others have as much right to determine their own lives as we have is in my opinion necessary for any form of anarchy, with or without an adjective, to have a chance of working in no-frills reality. It also demonstrates the seeming paradox that’s at the subject’s heart: what seems to be a licence to do anything we want without restriction turns out, like Aleister Crowley’s famous ‘Do what thou wilt’ motto, to involve the taking on of ultimate responsibility and the demanding task of governing ourselves.\n\nUltimately, anarchy begins at home. Life without rulers as a serious proposition will entail self-rule, which cannot come about unless we properly accept and understand that we as individuals and we alone are totally responsible for our own lives and destinies. One of the first things that this understanding brings with it is the unsettling realisation that if we are our own leaders, we now have no one to blame and no excuse for failing at the tasks we set ourselves. We cannot blame our background or our parents or society in general for our limitations because we have taken the responsibility for our existence squarely on ourselves. We can’t say wistfully that we could have been someone special if we hadn’t been held back by our upbringing or our finances; by marrying that man, that woman; having or not having those specific kids. We can’t continue with the role of helpless and beleaguered victim in our own lives if we’ve just decided we are that life’s leader, are its heroines and heroes. If we’re trying to conceal our flaws it must be said that anarchy’s personal freedom offers very little cover. Having lived our lives within the shelter of a rigid and determined social structure, stepping unprotected out into the wind can seem a frightening and chilly proposition. Indeed, many of us make the choice to stay indoors, to put up with the tedium and disappointments that we know rather than risk it all upon a leap into the dark. However much we might wish we were freer in our lives, at heart we have a sense that freedom is a scary if not terrifying thing.\n\nIn light of the above, why would anyone take a chance upon self-governance and anarchy? The burden of responsibility may be as great or even greater than if you were governing an actual country… after all, you probably care more about your own well-being than a government cares about the well-being of its people… so where’s the reward? The real reward, it might be said, is in the overwhelming sense of liberation and empowerment that comes with declaring yourself to be an autonomous and self-determined human being, naked underneath the stars and standing fearless at the centre of your unique universe at it rotates about you in its splendour, as it did before you learned the rules, before you even learned the language. In accepting sole responsibility for how your life unfolds you cease to be life’s victim and begin to realise the unexpected power you have over your circumstances, without ever seeking to exert power over others, without fucking anybody over. In the heady rush of the experience you might conclude that everyone should have the right to live like this, and it is here in this shift from a personal code of behaviour to an all-embracing social policy that anarchy’s most serious problems start to manifest themselves, as even a brief look into the subject’s history makes abundantly clear.\n\nAnarchist ideas have been with us since antiquity. We find them in the utterances of Taoist sages from the east and in the works of Greek philosophers such as Diogenes or Zeno from points further west. The word itself, however, doesn’t enter spoken English until 1642 and the upheavals of the Civil War, used as a term of abuse by the Royalists to describe the various factions that made up Cromwell’s New Model Army. It’s not until the French Revolution of a century thereafter that we first find some of the Enragés who opposed the revolutionary government referring to themselves as anarchists and using the expression positively. It was also in the eighteenth century that William Godwin wrote his Political Justice, advocating that the individual act according to his or her individual judgement while allowing every single other individual the same liberty. In 1844 philosopher Max Stirner’s book The Ego and Its Own suggested individuals were free to do anything that was physically within their power to do, without regard for others, up to and including murder. Stirner’s theories later came to be associated with the movement called Egoist Anarchism, although Stirner does not call himself an anarchist. The first writer to do so would be Pierre-Joseph Proudhon (1809-1865). Proudhon proposed a form of anarchy called mutualism, which although based on the freedom of the individual was more a model for the way in which society might work if governed by anarchist principles, with everybody free to do the work they really wanted to. Proudhon assumed that this would lead to what he called ‘spontaneous order’ once people had realised the many benefits of mutual cooperation and had organised their towns or villages on a communal basis, with each area governed locally and independently. But how was this utopian condition to be brought about?\n\nIn the late eighteen-hundreds and the early twentieth century, a great variety of different answers to this question were put forward. Collectivist Anarchism as defined by Mikhail Bakunin opposed private property, with factories and state-owned institutions to be seized by means of violent revolution and collectivised. Bakunin’s followers have probably contributed the most to the traditional depiction of anarchists as bomb-hurling maniacs, but there is no denying the intelligence and shrewdness of the man himself. Bakunin was initially enthusiastic with regard to the aims of the Workingmen’s Association known more commonly as the First International, which at that time had Karl Marx as its leading light. Divisions between the two men became swiftly apparent, though, with Bakunin predicting, accurately as it turned out, that a Marxist party following a revolution would simply replace the ruling classes they had fought against.\n\nPeter Kropotkin, on the other hand, while equally opposed to private property, felt that it should be legally abolished rather than acquired by bloody overthrow, following which society would be reorganised into a federation of self-governed communes. Thus the anarchist debate swung back and forth with further schools of thought or warring subdivisions constantly appearing and no unifying principle save for a dislike of authority. Mind you, this dislike was enough to unite anarchists of every stripe against the rise of fascism in Europe from the 1920s to the 1930s, notably during the Spanish Civil War when anarchist militias fought beneath a black flag against General Franco’s armies. Their eventual defeat in 1939 was partially assisted by the Stalinists who were meant to be helping in the struggle but who instead persecuted both the anarchists and the dissident Marxists who made up a large part of the rebel forces. Russia’s revolution having worked out pretty much as Mikhail Bakunin had predicted around forty years before with Stalin as that nation’s new Red Tsar.\n\nFamous defeats, of course, should not be taken as a proof that anarchy can never work. The Paris Commune, formed during 1789 and run upon anarchist principles was working fine until it was suppressed some five years later by the armed might of the National Convention in a brutal slaughter that killed far more ordinary people than all of the French aristocrats who met their end during the revolution but is for some reason far less talked about. Almost a century earlier, French Huguenots who had established working self-sufficient and self-governing communities in London’s East End were first pushed into staging a protest by the imposition of a crippling tax on their sole means of income and were then mown down by armed troops who were bivouacked in famous Jack the Ripper landmark Christchurch, Spitalfields.\n\nBoth these examples seem to indicate that anarchy is workable and viable, but also illustrate the fact that it will usually be crushed out of existence by the forces of authority that it opposes anywhere that it appears. Although anarchist theory has continued to develop and progress until the present day, where we find fascinating theorists such as Temporary Autonomous Zone author Hakim Bey amongst the vanguard, there is still no clear consensus on how any working anarchist society is to be brought about. We can’t realistically expect our rulers to sit by and let a doctrine that gets rid of them establish itself, nor can we suppose that after a few thousand years of having people tell us what to do that many of us would be capable of handling the alternative. Clearly, a large majority of people would would need to be educated to a point where they were able to direct their own lives without interfering in the lives of other people. Just as clearly, it is in the interest of no state to educate its people to the point where they could do without it. In the present day, the Internet potentially provides the means for such an education and even allows for the creation of alternate currencies or barter systems such as the Green Pound movement that’s intermittently at large in deprived areas of Britain, in which people who are mostly unemployed trade hours of their work-time as a method of avoiding the official currency completely. But even if we could take advantage of these useful-seeming possibilities, is there any conceivable kind of society that would permit such forms of self-sufficiency and self-empowerment to come into being or be widely practiced? In short, how do we get there from here? Where is the bridge that’s obviously needed between living under generally useless or oppressive governments and living in the self-determined world that anarchy holds out the hope of? Even if such a benign transitional society could be imagined, how could it be a society that any anarchist would want to be a part of, a society that somehow functioned without rulers?\n\nGiven the Greek origins of the word anarchy, we could do worse than to look to ancient Greece for a solution. In the city state of Athens, leadership was managed through a process called sortition, which is basically a type of government by lottery. In all decisions that concerned the state a jury would be randomly appointed from all parts of the community by drawing straws or lots. This jury would then listen carefully to an informed debate presenting both sides of the argument, just as a jury does during a court case. After this a vote is taken on the matter and the jury is dissolved. This system seems to come much closer to fulfilling the conditions of a true democracy, which is to say rule by the people, than our current mode of rule by a sometimes-elected representative can manage. It is also largely corruption-proof. No special interest groups or corporations can buy influence in government if no one knows who government will be until the next time that the straws are drawn. No jury would be likely to vote in a set of special privileges for the jury, such as being able to claim back expenses on the paddocks for their unicorns, when they themselves would no longer be jurors when these perks were ushered in. In fact, it would be in the jury’s interest to vote for those measures that would genuinely most benefit the common multitude that they’ll immediately be returning to after the ballot.\n\nObviously, it would take a massive constitutional amendment before any such approach could be adopted, but is constitutional reform really unthinkable when the alternatives are pointless, ineffectual and violent revolution or the option of just sitting back and doing nothing as our mostly unappointed leaders waltz us into wars, disastrous recessions and the possible extinction of our species while demanding that we pay them for providing this unasked-for service?\n\nBy removing at a stroke the worst excesses and abuse that come with leadership, such an Athenian approach might at least square the circle with regard to anarchy, allowing a society that has coherence and direction without having rulers in any conventional sense of the term. In times that would seem desperate despite our massive technological advances, perhaps we should invite anarchy in from the cold and take a closer look at the ideas and possibilities that our black-hatted bogeyman might offer us. \N 1439 \N 451208 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 8.63319035099629 0 \N \N f 983669804 \N 7 229524030 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 407018 2025-02-17 17:53:59.229 2025-03-29 22:39:47.372 Technology Featured on Mr. Robot: Part 2 In the [previous post](https://stacker.news/items/447642/r/WeAreAllSatoshi) in this series, I discussed 5 technologies that I saw prominently featured in the USA television show [Mr. Robot](https://www.imdb.com/title/tt4158110/). I say that like I planned for it to be a series. Spoiler alert: I didn't.\n\nThe post got some decent engagement and zaps, so I figured folks might be interested in a follow-up. As I mentioned in the original post, and as many stackers called out in the comments, there are plenty of other prominently featured technologies in the show beyond the 5 that I originally discussed ([Kali Linux](https://stacker.news/items/447642/r/WeAreAllSatoshi#kali-linux), [Python](https://stacker.news/items/447642/r/WeAreAllSatoshi#python), [Raspberry Pi](https://stacker.news/items/447642/r/WeAreAllSatoshi#raspberry-pi), [Signal](https://stacker.news/items/447642/r/WeAreAllSatoshi#signal), [Bitcoin](https://stacker.news/items/447642/r/WeAreAllSatoshi#bitcoin)).\n\nIn this post, I will discuss several other technologies featured on the show.\n\nAlso, I will refrain from forwarding zaps to @ek, so that if he feels inclined to zap this post, he is able to. It is nice to be able to promote content in your own territory, after all!\n\nAlright, let's get into it.\n\n## Tor\n\n[The Tor Project](https://www.torproject.org/) (short for The Onion Router) is a privacy and anonymity-focused software project. I think most people know it as the Tor Browser, where you access `.onion` addresses to visit websites via the Tor network. As documented on Tor's site, it has many privacy-enhancing features like blocking trackers, obscuring browser identity via traditional device fingerprinting mechansisms, multiple layers of encryption, etc. In short, if you are privacy conscious, browsing the web with Tor is likely something you're already doing.\n\nTor is mentioned in the opening scene of the series (see [this](https://www.reddit.com/r/MrRobot/comments/8w9rfg/confused_about_the_tor_scene/) reddit post for a detailed discussion of the scene). It's also more indirectly shown in a later episode related to an online marketplace (see [this](https://www.securitronlinux.com/bejiitaswrath/tor-hidden-services-shown-on-mr-robot-tv-show/) blog post for a detailed analysis of both scenes).\n\nOur very own stacker.news itself also runs [an onion service](http://snsnsnya6h3ot563f3p566wuhfoklkg5f62hokdlaqzcaub3gf4xlxyd.onion), so check it out!\n\n## WireShark\n\n[WireShark](https://www.wireshark.org/) is an open source network packet analyzer tool. You can use it to monitor and inspect network traffic packets on your local network. It has many "non-suspect" use cases such as if you are working on software that interacts with the network at the packet level, and you need to troubleshoot or debug. But it also has many use cases that help with hacking, such as sniffing the network for unencrypted traffic. Someone on the network might be entering sensitive information and you can obtain it this way, like someone in the show does. WireShark even has an ["In the Media" page](https://wiki.wireshark.org/InTheMedia) that highlights its own references.\n\nIt's a fun tool to mess around with, and is another certainty in the hacker's toolbox. Give it a download, open it up, and check out the traffic on your home network. You might be surprised with what you find!\n\n## Iceweasel\n\nIceweasel is basically Mozilla Firefox built for Debian, or a re-branded fork of Mozilla Firefox used in Debian-based distributions, such as [Kali Linux](https://stacker.news/items/447642/r/WeAreAllSatoshi#kali-linux), discussed in the first post in this series. The name itself is a parody of Firefox (Fire Fox -> Ice Weasel lol). You can read more about the naming dispute [here](https://en.wikipedia.org/wiki/Debian%E2%80%93Mozilla_trademark_dispute).\n\nIn the show, you can see characters launch the browser by typing `iceweasel` into the command line on their terminal. Before the days of desktop GUIs, this is how programs were launched, and is still a common pattern among developers, "hackers", and lots of other groups.\n\n## IRC\n\nInternet Relay Chat (IRC) is a protocol for text-based communications across a network. It can be used for group chats in channels, direct message chats between users, and other similar use cases. If you see the word "Relay" in the title and think nostr, it would be worth comparing the two. I think there are some similarities, but also some striking differences. But that's not the purpose of this post. I'll leave that as an exercise to the reader.\n\nThroughout the show, we see IRC used all over the place. We see it being used to communicate within hacker teams and between hacker teams like fsociety and the dark army. We also see Dom use it to find a chatting partner for some old school internet phone sex. Later in the show, IRC seems to be at least partially displaced by [Signal](https://stacker.news/items/447642/r/WeAreAllSatoshi#signal), which I also discussed in the original post, so check that out if you missed it!\n\n## Proton Mail\n\nLast but not least, we have Proton Mail. Proton Mail is a service that provides end-to-end encrypted, private email to it's users, free of charge. The source code is open source. The company is based out of Switzerland. It makes money by charging for upgraded services, but the base tier is free to use.\n\nMany stackers here use Proton Mail. It is pretty highly regarded in the community, though nothing is free of complaints or issues. We also see characters in the show use Proton Mail for their personal email needs. There is in fact a very pivotal scene around the midpoint of the show where a certain email delivered to a certain Proton Mail inbox provides a key piece of information to advance the plot, solve a major problem, etc. 🤐\n\nIf you're considering a switch for email, check Proton out! They provide other services as well, like cloud storage, VPN, etc.\n\n## Wrap-up\n\nI hope you enjoyed reading this second installment of taking a deeper look at Mr. Robot. As one of the comments on the original post indicated, this is almost like a fact-checking mission, validating many of the scenes in the show to assert their accuracy. That wasn't really my intent, but I like that perspective!\n\nAre there other technologies you noticed that I have yet to mention? What do you think about those discussed in this post? Let me know in the comments!\n\nThanks for reading, and have a great day!\n\nPS: I was asked to tag @ch0k1 to notify them of this new post, so here you go!\n \N 629 \N 407018 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 3.88655650975501 0 \N \N f 1459681645 \N 11 178862155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 442508 2025-03-18 15:47:39.923 2025-03-29 22:39:47.372 Stacker News Updates In the last month or so, we have seen many new open source contributors on the Stacker News [Github](https://github.com/stackernews/stacker.news/issues) and many new [stackers](https://stacker.news/stackers/month) joining the site and creating/zapping for the first time.\n\nAs the number of contributors and stackers scales, it will become more important to effectively communicate our ideas and make sure there are open feedback lines for anyone in the community to easily share their own ideas.\n\nOne idea we've considered recently is a regular (monthly? quarterly?) public call where we can all discuss the progress SN has made, the issues that need to be addressed, and the overall roadmap. \n\nWe'd love to hear your feedback on the idea of a regular update call, what specific topics you might like to discuss during such a call, and any other ideas you have to improve communication between Stacker News, open source contributors, and stackers going forward. \N 2322 \N 442508 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.850472541925 0 \N \N f 966969765 \N 5 189036621 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 448512 2025-03-22 16:42:29.392 2025-03-29 22:39:47.372 A detailed Twitter thread on the new Ledger "Recover" nightmare \N https://twitter.com/sethforprivacy/status/1658544658761277447 12779 \N 448512 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 4.79473776353391 0 \N \N f 40050874 \N 1 205991611 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423712 2025-03-03 14:51:16.542 2025-03-29 22:39:47.372 Is Lightning Scaling Bitcoin in a Way Nobody Predicted? - Bitfinex blog \N https://blog.bitfinex.com/education/is-lightning-scaling-bitcoin-in-a-way-nobody-predicted/ 19189 \N 423712 \N \N \N \N \N \N \N \N education \N ACTIVE \N 25.7697600037559 0 \N \N f 447007673 \N 3 157131612 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 409729 2025-02-19 19:58:44.467 2025-03-29 22:39:47.372 Taproot Didn't Cause Ordinals | sethforprivacy.com \N https://sethforprivacy.com/posts/taproot-didnt-cause-ordinals/ 17030 \N 409729 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 17.5119599029225 0 \N \N f 215545232 \N 1 171227254 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434424 2025-03-11 21:47:32.835 2025-03-29 22:39:47.371 What's the most time-saving AI feature/app you use that nobody talks about? \N \N 718 \N 434424 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 3.63092369838718 0 \N \N f 460629304 \N 3 123258267 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 10:27:34.833 f \N \N \N 0 0 0 0 2 0 0 433056 2025-03-10 19:26:08.241 2025-03-29 22:39:47.372 Sustainable Profit Taking on Stacker News I'm finally doing it, @cryotosensei. I've given some thought to how to sustainably take profits from my use of Stacker News. I probably won't start until after this month's MSM concludes, because I'm still guilt zapping away my ill-gotten rewards from last month.\n\n# Optimal Zapping Behavior\nPreviously, I wrote about how to find your optimal zapping strategy for Stacker News: https://stacker.news/items/287074/r/Undisciplined. Despite that being my highest ranked post, people are still radically underzapping (but that's not the point of this post).\n\nThat strategy uses the waxing and waning of my SN wallet balance to inform what my default zap ought to be. The problem with this strategy is that it converges on a zero profit point. I'm happy to recirculate my Stacker News earnings, so this problem didn't bother me.\n\nZap bigger. Zap oftener. Zap earlier.\n\n# Profit Taking\nSince I was already using my current balance to optimize zapping, I couldn't use it to also optimize profit taking. However, I can still use the growth rate of my SN balance to inform profit taking. Optimal profit taking would mean my balance remains stable.\n\nThe approach I came up with is to withdraw my average daily net earnings. If Stacker News grows or I get better at using it, then my daily profits will grow.\n\nI've been on SN for 537 days and have 395.9k in my wallet, so I would withdraw 737 sats per day with this strategy. Hopefully that will grow. Even with my optimistic estimate for the value of sats (https://stacker.news/items/474759/r/Undisciplined), that's not a lot.\n\n# Why bother?\nA big part of SN's pitch is that you can earn sats by contributing here. Of course, you can do that without jumping through these hoops.\n\nIn part, I just like thinking about this kind of stuff, but the rewards system also makes the optimal usage of SN non-obvious. How much you should zap depends on what you're zapping, when you're zapping, and how much other stackers are zapping. How much you should take in profits depends on how much you're getting back in rewards and how much you should be zapping.\n\nI like simple methods that converge on optimality, rather than trying to fully solve a system analytically and derive the optimal solution.\n\n# TL;DR\n* Have a dedicated SN wallet.\n* Use turbo zaps to zap 1/100th for great posts, 1/1000th for good posts, 1/10,000th for good comments.\n* Withdraw daily profits = wallet balance / days on SN \N 16350 \N 433056 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 10.6384536785423 0 \N \N f 471839506 \N 3 82504204 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455433 2025-03-27 02:32:03.56 2025-03-29 22:39:47.372 Spam, Spam, Spam horrible Spam: lessons learned from other forums' menus > http://traveljapanblog.com/wordpress/wp-content/uploads/2009/10/P1010311trim.jpg\n\nLooking around some interesting posts on [bitcointalk](https://bitcointalk.org), I chanced to see what I can only imagine to be an ad/link for the site:\n\ncryptotalk dot org\n\nAlthough I'm usually averse to clicking on weird links; however, in the interests of science I clicked. You can change the words into a proper URL if you want, I just thought I'd put some friction in your way to stop you doing it without arming yourself with information first.\n\n### Dining Out\n\n\n\nAny business would want to have a close look at the competition. Any restaurateur would want to dine at a rival restaurant at least once.\n\nLooking at the history of the site it seems to have started as far back as 2013 and that the site, originally paid in sats for posts. This changed to paying with tokens linked to a questionable Russian exchange called YoBit. At present, these payments are in 'TALK tokens'.\n\nThis forum [seemingly did pay sats for good English language posts](https://cryptotalk.org/announcement/31-payment-update/) - but now is largely only used by Russian speakers:\n\n> Payment for posts in English section is temporarily completely disabled (in BTC and tokens) due to a large number of spammers (we may return it back after updating the quality assessment system).\n\nIncidentally, I noticed [one competition](https://cryptotalk.org/topic/111943-crypto-theme-contest-01275-btc/) (from November 2020) that appeared *after* the introduction of the token that awarded the prizes - 0.05BTC, 0.03BTC, 0.02BTC, 0.01BTC AND 0.005BTC for first, second, third, fourth and fifth place respectively. These rewards, whether real or not, were again linked to the YoBit exchange.\n\nCompare this to the song & dance they seem to be making of 1.25 satoshis in the image below. Yes, you read that right, ***1.25*** satoshis.\n\nhttps://cryptotalk.org/uploads/monthly_2021_11/EC513B30-A634-48D8-8CB1-56F6D72C6548.png.ae0b3b8081c37e2383feefa21c220d31.png\n\n\nSo, what went wrong with the site? Was it just a way to introduce their own tokens? I can't say. It's cited, above, that it was due to spammers and the quality dropped.\n\nOne could give the benefit of the doubt to the original intention of the site - but if it was encouraging non-critical thought of the 'crypto' world (NFTs, ICOs and various derivatives of Bitcoin) this non-critical mindset can hurt not only your community, but the extended community too. Surely having spammers and bots pop up in large numbers is a sad reflection of this.\n\nhttps://img.discogs.com/MQIxCMjlvVyiLKX3pyeIcjG92lE=/fit-in/300x300/filters:strip_icc():format(jpeg):mode_rgb():quality(40)/discogs-images/R-3550723-1448377516-4326.jpeg.jpg\n\n### ***Cryptotalk Menu (a la carte)***\n\n* Chia mining (with Wonderful Spam)\n* Coins / Tokens talk (lots of Spam)\n* NFTs and Collections (+ Spam on rye)\n* Trading (garnished with Spam)\n* ICOS/IEOs (with entrée of Spam)\n* Gambling/HYIPs/freecoins (and f̶̶r̶̶i̶̶e̶̶s̶ Spam)\n\n### ***(Just) Desserts***\n* Premier Сasual Dating Real-life Girls (with added ̶s̶̶p̶̶e̶̶r̶̶m̶ Spam)\n* Fast Dollars (Terrible Spam)\n\n### Spam begets Spam - one chef's solution\n\nThankfully @ek had the foresight to squat and moderate the ~crypto territory - a great way to ensure a critical thinking community and not one filled with useless coins and useless spam.\n\n\nIn contrast to this site, SN has never knowingly entertained anything other than critical thinking in this space. Sure, there's been experiments - right now it's no longer just Bitcoin and tech but, in spite of this, spam has been kept at bay.\n\nThe forum needs great posts to grow, but we shouldn't forget to create Bitcoin posts.\n\nThe more helpful and thoughtful Bitcoin posts are created, the greater the amount of ideas and knowledge that's produced. We all see things from different angles and spark ideas. Although it's nice to kick back and talk about other things, and in other territories, Bitcoin has always been it's backbone. To nourish that territory is to deeply nourish the site.\n\nNo matter what the waiter (or their comic song) might say, even a small serving of Spam is far from wonderful.\n\n \N 6419 \N 455433 \N \N \N \N \N \N \N \N art \N ACTIVE \N 4.04540958707081 0 \N \N f 241579875 \N 2 107508770 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435488 2025-03-12 18:23:19.73 2025-03-29 22:39:47.373 What have you learned in 2023? Happy holidays stackers :) \n\nPretty straightforward here. Let's share all the lessons from life we picked up this year. The easy, the hard, the expected and the unexpected!\n\nA few of mine:\n\n- Create global friendships. Create more reasons to expand your horizons.\n- Linear inputs yield exponential outputs. \n- Expanding your surface area for luck is a skill that you can sharpen.\n- Just because you can't reach someone doesn't mean you can't help them.\n- Cherish your health. It's far too easy to take for granted.\n- Entertain ideas, not egos.\n\nAnd always have a plan for surprise car trouble...ugh.\n\nWhat about you? \N 13361 \N 435488 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.2466012689577 0 \N \N f 1417975848 \N 16 204820227 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:35:43.657 f \N \N \N 0 0 0 0 11 0 0 432178 2025-03-10 03:37:27.759 2025-03-29 22:39:47.372 Zuckerberg Sets His Sights On Nostr, Reveals Plan to Replace Zaps With Pokes 👉 \n![nostrPoke.jpg](https://m.stacker.news/20870)\n\nMark Zuckerberg informed Meta shareholders about his plans to invest $4 billion into niche decentralized network protocol for a distributed social networking system called Nostr over the next 5 years. He made the announcement during a pre-recorded video shown to a limited set of shareholders at company event on Thursday.\n\nIn the video Zuckerberg explained that he discovered Nostr while creeping on his archenemy Jack Dorsey's social media profiles a few months ago. Zuckerberg sounded excited and optimistic about the protocol and how Meta (Formerly Facebook) could copy products and features to steal like they've done to competitor's products in the past. Snapchat stories on Instagram and Facebook being the most infamous.\n\nHowever, while Zuckerberg detailed his plans to copy and steal some of Nostr's ideas, Zuckerberg was more interested in using the $4 billion of capital investment in an attempt to capture the open source protocol and use Meta's vast resources to transform Nostr into an effectively closed protocol that Meta could gatekeep.\n\n"Everyone knows centralized and permissioned systems are faster, better, and more reliable than these clunky open source products. We think we can take all the good parts of Nostr and ditch the bad parts like the lack of ability to censor content or pay anyone in the world for anything you want whenever you want." Zuckerberg said.\n\nOne of the critical features Zuckerberg emphasized to shareholders that he wanted to remove from Nostr was Nostr Zaps. Zaps give users the ability to send Bitcoin to other users at the click of a button. Users zap each other when they like a piece of content or information another user posted on their timeline. Journalists and creators are able to generate revenue for their work if they can build a large enough audience of zappers.\n\n"Zaps are interesting" Zuckerberg said. However, he clarified that "Bitcoin has a few problems. Its very volatile and its used by criminals. We can't have criminals using our system if we can effectively close source it because the government will fine us. But we know users prefer a stable currency and the most stable currency is attention. If we can remove zaps and replace zaps with a feature we initially developed for Facebook, the company that made me rich as hell, called "Pokes" we think we can revolutionize Nostr like we did social media in 2006."\n\nLater Zuckerberg provided more context, "Pokes get people's attention. If I pour my blood sweat and tears into a piece of art, digital content, our risky investigative journalism the last thing I want is to be paid in a volatile currency which could go to zero at anytime. However, if you gave users the ability to poke me on Nostr as, you know, a way to say 'Hey, that was some good content. You should make more if it!' that attention would let me know I was connecting with my audience and that my work was worth the effort."\n\n![zbdggrod--2--1.jpg](https://m.stacker.news/20871) \N 17522 \N 432178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.06727466882382 0 \N \N f 241310352 \N 1 95338600 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436499 2025-03-13 15:37:08.301 2025-03-29 22:39:47.372 V3 Transactions Review \N https://petertodd.org/2023/v3-transactions-review 10433 \N 436499 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.294119833398092 0 \N \N f 781157296 \N 8 243474502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 13:32:30.027 f \N \N \N 0 0 0 0 5 0 0 448200 2025-03-22 13:31:15.11 2025-03-29 22:39:47.372 Let's talk about Cuba In X I follow a Cuban who emigrated a long time ago and now lives in Sweden. Every day he writes about the situation on the island, his history and many other details. His way of writing is wonderful, he writes and expresses himself in such a way that it is impossible not to get hooked on reading. He also writes poetry. I want to contact him to invite him to SN and have him write here too because I know he has potential. I will leave his X username here for anyone who wants to follow him:\n![](https://m.stacker.news/64433)\n> Correcting spelling and grammar tirelessly. This profile defends the Spanish language and freedom of expression, but we do not tolerate socialism.\n\nHere is the first time I read it: (translated)\n\n>I was born in Cuba. Sometimes, as a joke or out of exhaustion, I say that it was by mistake. I don't believe in witchcraft or saints, although my mother did. I don't like bembé drumming. Or popular festivals, or molotes or collective noises. I listen to very little music in Spanish. I don't like Cuban singers. I've loved country music since I discovered it. I don't smoke or drink coffee. I hate alcohol. I've only gotten drunk once in my life, when I was 17, out of teenage stupidity. I woke up sleeping in the dog teeth of a cove in Varadero. I don't believe in racism or discrimination. Of course they exist, and I've suffered it on my skin thousands of times. Inside and outside of Cuba. But I can't stand the victimization of those who can prove the opposite and prefer to isolate themselves. I learned, from my mother, that above me there are only clouds. That has been enough to send every idiot who crosses my path to hell. I don't support a black person because I am one. Nor do I support a Cuban because he has my nationality. I defend the human being, whoever he may be, if I believe that he should receive support. I make mistakes, hundreds, every day, and I take full responsibility for my actions. I don't believe in the feminist groups drugged by the left. Nor in the LGBT tribe that considers it more important to celebrate a month of pride to take off their clothes than to respect themselves and accept themselves as they are. I am terrified of religion that imposes dogmas, restrictions. I talk about politics all the time. I see no reason not to. I write daily. It is a personal need, on and off social media. I don't do it to please anyone, but myself. I don't ask permission to give opinions. I don't expect anyone to share or applaud them. I don't need praise or congratulations. I defend freedom of expression, but in my X account I am in charge. If I block you, it is my right. If I silence you, it is also my right. Just as you can do the other way around. It is my door, my balcony. If you want to shout, do it from yours. I am not a patriot, nor an opponent, nor an activist, I have said it before. I am not fighting for the freedom of Cuba. That does not exist. Freedom is personal, and I managed mine alone, immersed in what was once a country. I went to the regime's schools. They indoctrinated me as a child, but they did not break me. They humiliated me, they harassed me and karma took them all. I opened my eyes, then my mind, then my reasoning, then my critical analysis. I do not worship politicians nor do I believe in the opposition anywhere. Nobody represents me and I do not aspire for anyone to do so. I am my homeland and my country. I do not feel Swedish nor do I want to pretend to fit in. On many, many occasions, I do not feel Cuban either. I do not see pride in it, to be honest. Mentioning the word anywhere raises alarms, suspicions, doubts. I don't miss anything about Cuba, not its food or its places. I grew up in a vacant lot that I left behind while people of my generation were drowning in drugs, the dominoes on the corner and the constant loss of time. I didn't do anything extraordinary: I studied, I improved myself, I learned, I read. I never felt envious of anything or anyone despite having less than a bare zero. My father transmitted his constant joy to me. My mother took it away from me with her perpetually stubborn face. I had girlfriends of all races and today I enjoy the best wife in the world. I don't follow the masses or join groups or organizations. Being a hermit was my saving mantra in Cuba. I don't trust sweet words or stories of Messiahs. I expect little, or almost nothing, from others and that's why I've had very few disappointments. I tell stories that I see out there. I love to discover lies about the Cuban revolution. I tell everyone I can that Che Guevara was a murderer and Fidel Castro a son of a bitch. I can express myself with kindness and patience, but I have insults from the dirtiest pit. I can't stand packages or speed from anyone. I have more than I need to live. I believe in love, sex and traveling all the time to see the world. The left, socialism and communism should move to another planet. My blood boils when a foreign idiot claims to know more about Cuba than I do. I don't have to raise my voice for anyone because even the mute make sounds of complaint. I always considered Havana a fetid and rancid place. I love to recreate old images of what was once a real capital. I don't repeat what others say. I don't join in or join the crowd. In short, I'm a normal guy.\n\n\nI like it better in Spanish, the words rhyme more because that was the intention when it was written, I'll leave it here too:\n>Nací en Cuba. A veces, por broma o por cansancio, digo que fue por equivocación. No creo en la brujería ni en los santos, aunque mi madre sí le metía. No me gustan los toques de bembé. Ni las fiestas populares, ni los molotes o bullas colectivas. Escucho poquísima música en español. No me gustan los cantantes cubanos. Adoro la música country desde que la descubrí. No fumo ni tomo café. Odio el alcohol. Me emborraché solo una vez en mi vida, a los 17 años, por estupidez de la adolescencia. Amanecí durmiendo en los dientes de perro de una caleta en Varadero. No creo en el racismo ni en la discriminación. Claro que existen, y yo lo he sufrido en la piel miles de veces. Dentro y fuera de Cuba. Pero no soporto la victimización de quienes pueden demostrar lo contrario y prefieren aislarse. Aprendí, por mi madre, que por encima de mí solo están las nubes. Eso ha sido suficiente para mandar al carajo a cuanto idiota se me cruza en el camino. No apoyo a un negro porque yo lo sea. Ni apoyo a un cubano porque tenga mi nacionalidad. Defiendo al ser humano, sea quien sea, si creo que deba recibir apoyo. Cometo errores, cientos, a diario, y asumo totalmente la responsabilidad de mis actos. No creo en los grupos feministas drogados por la izquierda. Ni en la tribu LGBT que considera más importante celebrar un mes de orgullo para quitarse la ropa que darse a respetar ante sí mismos y aceptarse como son. Me da pavor la religión que imponga dogmas, restricciones. Hablo de política todo el tiempo. No veo razón para no hacerlo. Escribo a diario. Es una necesidad personal, dentro y fuera de las redes sociales. No lo hago para complacer a nadie, sino a mí mismo. No pido permiso para dar opiniones. No espero que nadie las comparta o aplauda. No necesito loas ni felicitaciones. Defiendo la libertad de expresión, pero en mi cuenta de X mando yo. Si te bloqueo, es mi derecho. Si te silencio, también. Como mismo puedes hacer tú al revés. Es mi portal, mi balcón. Si quieres gritar, hazlo desde el tuyo. No soy patriota, ni opositor, ni activista, lo he dicho antes. No lucho por la libertad de Cuba. Eso no existe. La libertad es personal, y la mía me la gestioné solito, sumido en eso que en algún momento fue país. Fui a las escuelas del régimen. Me adoctrinaron de pequeño, pero no me quebraron. Me humillaron, me acosaron y el karma se los llevó a todos. Abrí los ojos, luego la mente, luego el raciocinio, luego el análisis crítico. No adoro políticos ni creo en la oposición de ningún lugar. Nadie me representa y no aspiro a que nadie la haga. Yo soy mi patria y mi país. No me siento sueco ni quiero pretender encajar. En ocasiones, muchas, muchísimas, tampoco me siento cubano. No veo orgullo en ello, la verdad. Mencionar la palabra en cualquier lugar despierta alarmas, sospechas, dudas. De Cuba no extraño nada, ni su comida ni sus lugares. Crecí en un solar que dejé atrás mientras la gente de mi generación se ahogaba en las drogas, el dominó de la esquina y la pérdida de tiempo constante. No hice nada extraordinario: estudié, me superé, aprendí, leí. Nunca sentí envidia de nada ni de nadie a pesar de tener menos que un cero desnudo. Mi padre me transmitió su alegría constante. Mi madre me la quitó con su cara de tranca perenne. Tuve novias de todas las razas y hoy disfruto de la mejor esposa del mundo. No sigo a la masa ni me uno a grupos u organizaciones. Ser ermitaño fue mi mantra salvador en Cuba. No confío en la palabra dulce ni en las historias de Mesías. Espero poco, o casi nada, de los demás y por eso he tenido muy escasas decepciones. Cuento historias que veo por ahí. Me encanta descubrir mentiras sobre la revolución cubana. Le digo a todo el que pueda que el Che Guevara fue un asesino y Fidel Castro un hijo de puta. Sé expresarme con amabilidad y paciencia, pero tengo insultos sacados de la fosa más sucia. No le aguanto paquetes ni velocidades a nadie. Tengo más de lo que necesito para vivir. Creo en el amor, en el sexo y en viajar todo el tiempo para conocer el mundo. La izquierda, el socialismo y el comunismo deberían mudarse para otro planeta. Me hierve la sangre cuando un idiota extranjero dice saber más de Cuba que yo. Yo no tengo que alzar la voz por nadie porque hasta los mudos emiten sonidos de queja. Siempre consideré a La Habana un lugar fétido y rancio. Adoro recrearme en las imágenes antiguas de lo que fuera una capital de verdad. No repito lo que dicen los demás. No hago coro ni me monto en la comparsa del populacho. En resumen, soy un tipo normal.\nhttps://x.com/CubaOrtografia/status/1843231804230164652\n•\nHere in SN there are Cuban stackers who are still there. These two months the electric service has worsened, yes, it seems that it can always get worse, I don't remember what their usernames are so I can mention them, if you know please let me know the name, I don't think they are very active in the community for the same reason I already mentioned. So I want to give visibility to what is happening there as well and share the reward with them, I have collected a lot of information both current and old. \N 13100 \N 448200 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.3797992715717 0 \N \N f 1956204123 \N 15 170218793 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:18:23.18 f \N \N \N 0 0 0 0 5 0 0 424652 2025-03-04 09:39:31.703 2025-03-29 22:39:47.372 I'm Steve Lee, lead of Spiral. AMA. I am Steve Lee, lead of [Spiral](https://spiral.xyz), the open-source bitcoin initiative of [Block](https://block.xyz). We have funded over 50 people to work on FOSS bitcoin.\n\nTopics to ask me about:\n* Spiral\n* Block\n* Various projects Spiral supports: LDK, BDK, VLS, Bitcoin design community and bitcoin design guide, Stratum v2, Fedimint, etc.\n* LN ecosystem "roadmap"\n* Mobile LN wallet architecture considerations\n* Centralization forces on bitcoin and efforts to improve\n* "PMing" in open-source bitcoin\n* Framework for FOSS bitcoin projects\n* Future of bitcoin mining\n* Future of self-custody and self-sovereign bitcoin\n* PoW vs. PoS hot takes\n\nLet's go! \N 21349 \N 424652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7304034364503 0 \N \N f 215346821 \N 1 197844591 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441752 2025-03-18 09:19:26.515 2025-03-29 22:39:47.372 [bitcoin-dev] Future of the bitcoin-dev mailing list \N https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2023-November/022134.html 20606 \N 441752 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.2166165731546 0 \N \N f 111750753 \N 1 249357816 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 418410 2025-02-27 03:34:14.728 2025-03-29 22:39:47.372 What kind of bot would you like to see on SN? You probably have already seen the @hn bot which crawls the top post from hackernews. Or the former bot which was creating Nitter alternatives to Twitter links. \n\nCan you think of any other bot that would make your SN life more pleasant, without opening the pandora box of spammy content? \N 16660 \N 418410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.77554173748411 0 \N \N f 7592883 \N 1 85709259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 393475 2025-02-06 09:30:18.333 2025-03-29 22:39:47.373 Where are the tainted sats? 1. I receive a 500k sat utxo from an address on the US [OFAC's sanctions list](https://sanctionssearch.ofac.treas.gov/).\n2. I receive a 750k sat utxo from a kyc'd source like Coinbase\n3. I use both these utxos to pay 500k sats to address A and 750k sats to address B. \n\nAccording to chain analysis/governments/the Man where are the sanctioned sats? \N 2513 \N 393475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.192512563956 0 \N \N f 48257464 \N 1 58051967 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 376753 2025-01-22 12:27:23.146 2025-03-29 22:39:47.372 Santa Receives Unusually Large Amount Of Requests For Ross Ulbricht To Be Free \N https://www.thebitcoinbugle.com/santa-receives-unusually-large-amount-of-requests-for-ross-ulbrict-to-be-released-from-prison/ 21058 \N 376753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.73869031359826 0 \N \N f 19592934 \N 1 48323144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449218 2025-03-23 09:09:05.415 2025-03-29 22:39:47.373 Used Magic Webstore to offer my web development services. Amazing how easy it was to get setup. If you have a product or skill to sell it's worth trying https://magicwebstore.xyz/onboard.html If anyone wants a personal website created here is a shameless shill to the webstore I created https://magicwebstore.xyz/index.html?pubkey=02b1a6c208420d3eb5a625aa8c79689e1dd4ea94f82286d06e1df7a05e2c3a482f&relays=%5B%22wss://nostrue.com%22,%22wss://relayable.org%22,%22wss://nostr.oxtr.dev%22%5D I'm very excited about the opportunities Bitcoin, Nostr, and open source development are going to bring to those with a desire to learn and provide value. \N 4313 \N 449218 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4455986691867 0 \N \N f 382111937 \N 4 217387112 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 439946 2025-03-16 18:43:09.816 2025-03-29 22:39:47.373 What kind of Stacker are you? I was perusing the top lists on Stacker News, as I do from time to time, and it occurred to me that how we each score across categories is something like a Stacker News personality type.\n\nMy All-Time Scores\n- Cowboy: 4th\n- Value: 4th\n- Stacking: 3rd\n- Spending: 19th\n- Comments: 5th\n- Posts: 10th\n- Referrals: 46th\n\nSo, it looks like I'm highly consistent, I say things people like, I prefer to take part in conversations than lead them, I'm a bit of a cheapskate, and I have no social influence. That more or less checks out.\n\nI'm not surprised to be doing so poorly at referrals (I actually do try to attract people to SN), but the gap between stacking and spending surprised me (I think of myself as someone who splashes sats around with a fair amount of abandon).\n\nIt takes a couple minutes to do, but what is your Stacker personality profile? Does it reflect how you think of yourself? \N 21670 \N 439946 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.9094440771876 0 \N \N f 539178221 \N 5 84741777 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437408 2025-03-14 13:48:31.828 2025-03-29 22:39:47.373 What do you do with your SN Zaps? I just had a discussion with @Fabs about what he does with his sats. \nI was surprised to find out that he also keeps his balance on here. \nI know SN is changing their wallet features. \nI am just curious, are there any others that dont take anything out of SN?\nOr if you do take it out, what do you use it for?\n \N 18321 \N 437408 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 4.96543012577995 0 \N \N f 515801053 \N 4 150988031 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 138031 2024-03-06 21:23:34.276 2025-03-29 22:39:47.373 What the coolest features on stacker news that makes it standout? I will like to know the coolest features on stacker news platform. I asked this, in case a friend ask me that. Because my friends are quite curious when it comes to cryptocurrency. \N 2013 \N 138031 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 9.25841778707145 0 \N \N f 411289341 \N 3 120420066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 419818 2025-02-28 08:47:38.261 2025-03-29 22:39:47.373 The ethics of borrowing in fiat, in order to buy bitcoin Is it ethical to borrow in fiat, to buy bitcoin? Obviously it's legal, but ethically...it feels off. \n\nI didn't think much about it, until this post came up recently:\n[Starve the State, starve the banks, protect yourself, your privacy & liberty. v1](https://stacker.news/items/702688)\n\nHere's some quotes from the comments:\n>0 sats \\ 13 replies \\ @siggy47 27 Sep\nI'm pro fiat debt to buy bitcoin. Let the government inflate it away. This "debt is slavery notion" is to make sure there aren't too many people joining the cantillon party.\nreply\n>>43 sats \\ 12 replies \\ @mf 28 Sep\nYou do you, but that only legitimizes what they do, and fucks the ones that cannot afford to do the same.\nStarve the enemies, not your brothers.\nreply\n>>>21 sats \\ 2 replies \\ @pillar 28 Sep\nFiat will be printed. The printing will debase fiat holders.\nAny printed fiat can be used to buy Bitcoin, or for anything else.\nWhen it goes to buy and hold Bitcoin, it pushes the BTC/fiat price up. Thus, besides hurting fiat holders, you reward all Bitcoin holders with more purchasing power.\nI will never disagree with printing money being an evil thing that worsens the world. But, if it will be printed, I can't think of a better use for it than to make Bitcoin rise.\nI also see it as a peculiar implementation of Alinsky's fourth rule of his rules for radicals.\nreply\n>>>>34 sats \\ 1 reply \\ @mf 28 Sep\nIt seems you are making the assumption that you are simply using the existing printing, which is not true. If you keep borrowing more fiat, you are increasing the print, not using the print, as you put it.\nreply\n>>>>23 sats \\ 0 replies \\ @pillar 28 Sep\nI believe that, for any given range of time, the printing has a top limit (on the infinite long run, there is no limit).\nWestern banks and other seigniorage institutions will only print so much in a year. They can't print unlimited amounts in that span, because they are still not Venezuela-grade dumb and greedy.\nBut within those limits, they will print. It's in their interest to print. Because of what you pointed out: they are looking for the interest on the principal they are creating out of nothing. So, that fiat will be printed to someone, for some reason. When it comes to retail loans, I'm pretty confident they don't give a flying fuck what its usage will be.\nThe way I see it, if don't take the loan offered to me, they will give it to someone else. So yes, I would agree with you that I'm making the assumption that I'm just using a part of the inevitable to-be-printed pool.\n\n\n---------------------------------------------------------------------------------------------\n\nI also remembered reading in the book The Hard Boiled Egg Index - Surviving Zimbabwe's Hyperinflation by Kudzai Joseph Gumunyu, his chapter on how he (as a senior bank employee) was able to buy a house with rapidly inflating currency, loaned to him at a favorable rate of interest. \n\n>When we bought this house in August 2004, the price was 72 percent of my gross annual salary, which was a bargain. By July 2007 (three years later), I could take one ZWD$500,000 debased note (by “000”), now worth US$1.67 at parallel market rates, from my pocket and repay the mortgage, which was supposed to be repaid in twenty years. Moreover, this note was only 0.49 percent of my monthly salary of the same month, and if available, I could have two hundred of these in my pocket monthly, ceteris paribus. **Although the mortgage was done aboveboard, I felt I was cheating somebody somewhere. It did not sound right that such a substantial mortgage would be so easy to expunge**.\n\nWhat do you think? Is this true?\n\n>The way I see it, if don't take the loan offered to me, they will give it to someone else. So yes, I would agree with you that I'm making the assumption that I'm just using a part of the inevitable to-be-printed pool.\n \N 20381 \N 419818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.09811456495356 0 \N \N f 64678032 \N 2 193019338 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448765 2025-03-22 21:10:45.961 2025-03-29 22:39:47.373 CRAZY logical conclusions about the future of Bitcoin What do I know, I'm just an 80 IQ pleb. I don't know anything.\nHowever here are some logical conclusions, doing as much study as I can.\n\n1) The next ten years will see one of the greatest wealth transfers in history from general no-coiners... to Bitcoiners as it (Bitcoin) becomes a more mainstream financial asset through ETFs, custody solutions, marketing, press coverage, and education.\n\n2) Non proof-of-work financial assets like Dollars, Yen, Euros, as well as non-proof-of-work 'cryptos' will continue to bleed out against Bitcoin. The actual percentage of people with Bitcoin in Western countries is small... single digit percentages maybe *very low* single digit percentages. Yet eventually *everyone* will want at least a small exposure to Bitcoin through some financial medium (self-custody being the best)... and there is only so much Bitcoin. It really is scarce.\n\n3) Bitcoin continues to move from 'weaker hands' to 'stronger hands'... as the HODL crowd continues to accumulate and save even during 'price downturns'. Like late 2022/early 2023, nothing fundamentally changed with Bitcoin - but high interest rates and the FTX criminality/crypto scam did a number on public perception for no-coiners and non-Bitcoiners. It was the perfect time to *save in Bitcoin* if you understood it. I remember reading an article at the time in the NY Times, where a well-known Bitcoiner said "Hey Bitcoin is on sale" and he was right. The NY Times had no idea they didn't understand it (as most people don't now).\n\n3 1/2) This is further evidenced by the buy the rumor/sell the news attitudes of some 'traders' after the ETF approval. They thought BTC was a tradable speculative bubble and they had NO IDEA what they were buying. Sell the ETF approval. Right. How did that work out?\n\n3) Bitcoin is in fact not a "speculative bubble" but a new economic paradigm that will continue to change, and possibly accelerate change, of economic, social, and governmental norms. Distributed proof-of-work is the apex predator financial asset and ultimate Medium of Exchange for countless people. If it isn't *today*... then it's logical it will be in the future.\n\n4) Bitcoin has unique traits and characteristics that make it a much better store of value (SoV) than traditional real estate, gold, bonds, stocks, or "other" commodities. And YET it is really, really small relative to all those other assets. There are lots of estimations and calculations on Bitcoin's total addressable market... however if Bitcoin captures even a small percentage of all the Bonds, Stocks, Real Estate, relative to its current size... *holy crap* it would be orders of magnitude larger than it currently is. You are NOT LATE to Bitcoin.\n\n4 1/2) Again, logically you are *not late* to Bitcoin. Think forward *ten years.* The vast majority of people know nothing about Bitcoin, and those who 'think they do' roll their eyes, laugh, or call it a pet rock. And if you ask them how many Bitcoin transactions they've made, or what they think about the lightning network they will have no idea what you are talking about. Fee market? No idea. Multisignature wallets? No idea. Public/Private key cryptography? Say what again?\n\n5) Bitcoin is on an unfortunate collision course with government currencies, debt, and inflation. If you want to protect yourself from inflation (which is most of asset/money management anyway) then BUY BITCOIN as it only has so much inflation left, and the inflationary rate is *going down* over the next 100 years. Disinflationary and 21 million is all you get. AND as more people finally figure this out and allocate to Bitcoin, *purchasing power preservation continues* but the *availability of that Bitcoin* isn't necessarily guaranteed. Bitcoin's exchange rate may continue to rise and *considerably* over the next decade as people realize what Bitcoin is and need it to preserve purchasing power relative to other traditional inferior assets. Stocks, bonds, real estate, CURRENCIES they bleed out relative to Bitcoin over the next decade.\n\n6) Government, especially in Europe, if they wanted to "stop Bitcoin" should have been serious and dedicated to stopping it about a decade ago. Now it seems like they want to 'stop it' and 'tax it'? Are you kidding? Really for real? Stop it now?\n\n6 1/2) See the Capital Gains tax proposals in Italy (46%) and the "self-hosted" wallet regulations in the EU... you're not supposed to 'custody it yourself'. Or 'buy it peer-2-peer' or really use it to buy things. Unreasonable tax requirements and reporting requirements make it very difficult if not impossible to use this way IE as a MoE. Yet the reason it isn't used as a MoE... is the very reason it should be *restricted and taxed heavily*. Because it's only for criminals. Right. Well I am not a criminal.\n\nIt's circular logic and it's bull****.\n\n7) It's logical that at some point Bitcoin's use in commerce and trade, even if just online, will increase. Despite taxes and governmental restrictions in the EU, Lightning is generally cheaper, more sovereign, more transparent, and faster to settle than traditional credit cards. Eventually somewhere, somehow businesses will prop up that harness Lightning's low costs for microtransactions... like Stacker News. For podcasts, music, blog articles other online media too. With some imagination you can create all kinds of applications and *legitimate businesses* that use lightning's lower fees and instant transfer of value... to provide better customer service. A better customer experience. That sounds like a profitable business model to me *if it improves on traditional value for value transfer which Lightning does.*\n\nWithout going on and on... Bitcoin is so incredibly exciting. In 1995 people looked at the internet and it was clunky, slow, hard to use, unreliable, and for complete nerds and tech-people at universities. There were MANY naysayers. Playing games, shopping, banking, email, video-conferences... this was *not* envisioned by the vast majority of people. The NY Times said the internet would go the way of the Fax Machine. WELL THEY WERE WRONG. 1995's internet was *painful* and look at where it is today.\n\nWhy can't the same thing happen with Bitcoin and Lightning over the next 10-20 years? \N 647 \N 448765 \N \N \N \N \N \N \N \N security \N ACTIVE \N 28.5195349789015 0 \N \N f 189224198 \N 2 87676252 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:01:56.844 f \N \N \N 0 0 0 0 2 0 0 417970 2025-02-26 18:17:00.854 2025-03-29 22:39:47.373 Bitcoinize.com – Bitcoin Circular Economy Shop \N https://bitcoinize.com/ 14037 \N 417970 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 19.9102407284582 0 \N \N f 23075111 \N 1 103449361 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436163 2025-03-13 11:07:57.172 2025-03-29 22:39:47.375 Building on Lightning: How Satimoto Is Beating Fiat with the Breez SDK \N https://medium.com/breez-technology/building-on-lightning-how-satimoto-is-beating-fiat-with-the-breez-sdk-88aa8252a994 7913 \N 436163 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.1390047568593 0 \N \N f 706526307 \N 5 160110067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:16:01.459 f \N \N \N 0 0 0 0 2 0 0 403289 2025-02-14 16:41:24.565 2025-03-29 22:39:47.375 The Fight for Bitcoin with Ben Carman & Tony Giorgio — What Bitcoin Did \N https://www.whatbitcoindid.com/podcast/the-fight-for-bitcoin-carman-and-giorgio 3342 \N 403289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.50008842322602 0 \N \N f 69211027 \N 1 113735379 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446965 2025-03-21 14:52:47.712 2025-03-29 22:39:47.374 Lend Me A Hand In Asking Out A Girl. Alright, I'm slowly turning happy and surprisingly confident about myself, and I've set my sights on two girls that I'd like to ask out tomorrow- *if* I manage to cross paths with them, that is.\n\nIn "preparation" for this, I've been thinking all day about *how* I'd go about asking them out, and although I've got some ideas, I'd like to hear some input from y'all.\n\nI'm currently thinking about a quick-and-clear two-liner á la: "*Hey, I'm Fabs and I'd really like to get to know you, would you like to go out with me some time?*"\n\n* I'm generally a pretty straight-forward guy, and thus, I'd like to have the question \nresemble that trait as well, since I think that I'll "*sell*", myself best by, well, being myself... 😅\n\n \N 7966 \N 446965 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 29.2845668555173 0 \N \N f 701376900 \N 7 106929038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 09:55:38.632 f \N \N \N 0 0 0 0 3 0 0 436189 2025-03-13 11:24:48.505 2025-03-29 22:39:47.374 What's the deal with all the usage of @delete in x days on SN Don't get me wrong. The feature is really great but I wonder about some of the users using this feature.\n\nA stacker asks a question. A commenter posts an answer but appends @delete in x days to the comment. Now for some topics I can see this. But some of you seem to be using it for the most mundane comments and topics? What am I missing? People are free to do as they please of course but deleting comments that answer questions seems to me to create decreasing value on SN.\n\nWhat do you think? And why are some accounts using this feature so much. We have Anon... wouldn't this be a better option for comments if you are concerned with the privacy of your opinions on an Android operating system. \N 7125 \N 436189 \N \N \N \N \N \N \N \N health \N ACTIVE \N 3.65919292757702 0 \N \N f 935321001 \N 7 21838348 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:30:57.019 f \N \N \N 0 0 0 0 3 0 0 1903 2022-09-28 14:33:04.488 2025-03-29 22:39:47.374 Of regrets \N https://laanwj.github.io/2023/02/06/regrets.html 627 \N 1903 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.5943791874462 0 \N \N f 519558960 \N 6 56005536 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428318 2025-03-07 05:13:50.181 2025-03-29 22:39:47.374 Halving Fee Chaos ![Screenshot 2024-04-19 at 10.02.19 PM.png](https://m.stacker.news/27380)\n\nThe Bitcoin halving is an anticipated event, one of those Bitcoin holidays that happen every once in a while. Along with Soft Fork Activation and various financial instrument introduction days, it's one of those not-quite-predictable days that occur every few years which give Bitcoiners reason to pay attention and mainstream media to speculate.\n\nThis year's halving was much anticipated, as halvings usually are, but we had a bit of an incident that requires some further explanation. The block subsidy decreased from 6.25 BTC to 3.125 BTC on block 840,000 as expected, but what wasn't expected was the 37.626 BTC in fees that came along with it. To give some context, that's easily the highest ratio of fees to block subsidy that Bitcoin has *ever* had. [One transaction](https://mempool.space/tx/152b928e97bb9e874da1bd4abdf766ae0cdc7a2f260dad5542967cb414c58489) paid nearly 8 BTC in fees by itself.\n\n## More Fees\n\nIt wasn't just block 840,000 that had high fees, over the next 5 blocks, we had fees of 4.486, 6.99, 16.068, 24.008 and 29.821 BTC respectively. The fees are the highest it's ever been. This situation in Bitcoin is unprecedented. \n\nUp to this point in Bitcoin's history a block whose fees were higher than block subsidy were pretty rare. There were a few in the 50 and 25 BTC eras, but these were mistakes by the user (usually forgetting to put in a change address) and almost all of the fee came from a single error transaction. In the 12.5 BTC subsidy era, there were a few transactions toward the end of 2017 when the cumulative fees exceeded the 12.5 subsidy. In the just-ended 6.25 BTC subsidy era, there were many blocks during the ordinals craze which exceeded the 6.25 BTC subsidy.\n\nStill, these were relatively rare, and most blocks even in the most recently completed era mostly didn't exceeded 1.5 BTC. Yet in this new era of 3.125 BTC subsidy, every single block as of this writing (block 840018) has had fees exceed the subsidy, some by many multiples. So what happened? Why was the halving block getting so much in fees?\n\n## Runes\n\nThe reason has to do with a new protocol called Runes. It's yet another colored coins protocol on top of Bitcoin that Casey Rodarmor designed back in [September of 2023](https://rodarmor.com/blog/runes/). The main idea is to allow coin issuance on Bitcoin that uses the UTXO set natively.\n\nNow to back up a bit, colored coins have been around for a long time. The main idea is that you can "color" certain Bitcoin transaction outputs as meaning something in addition to the Bitcoin amount in the output. It could be another "asset" and issued as a token. The first implementation of such a protocol happened 11 *years* ago in 2013 and there have been many attempts since, including MasterCoin (renamed Omni), CounterParty, and more recently, RGB, Taro Assets and BRC-20.\n\nAs Rodarmor states in his blog, his motivation for making another protocol is to bring some of the asset issuing from other chains to Bitcoin. To make the launch of this protocol more interesting, Rodarmor decided to start the issuance on block 840,000, leading to the chaos we saw.\n\n## Simplification vs Game Theory\n\nCasey Rodarmor is also the creator of ordinals, and he took one of the concepts, which was to name assets using the capital latin alphabet on Runes. This is a normal fine choice, but what happens when there's a conflict? If two assets have the same name, how do we distinguish between them?\n\nTo simplify things, the protocol just looks up what assets exist already and if the name conflicts with something that exists, then the new asset isn't issued. This indeed simplifies the client and gives a global unique name to each asset. Unfortunately, it also makes for some terrible incentives.\n\n## Sniping Asset Issuance\n\nThe first incentive problem is that if the transaction issuing the asset is sent out to the Bitcoin mempool, then as that transaction is gossiped to nodes around the network, other observers can snipe the name by getting the transaction in earlier.\n\nNow "earlier" in Bitcoin is a strict concept. Blocks are ordered and transactions within a block are ordered. Whichever comes first gets the symbol and the asset issuance. But if you want to squat on a good symbol name, you can just look for mempool transactions that are attempting to create a new asset and create your own with a bigger fee. That's the essence of sniping.\n\nWhat's really terrible about a situation like this is that *both* transactions will likely go into the block, but only the first will successfully issue the asset. The second will not issue the asset but *still pay the fee*.\n\nMiners generally order transactions by fee rate, so a higher fee likely means that they'll get to issue the asset. I say likely, because there's a second incentive problem here I'll discuss later. But game-theoretically, both participants are incentivized to increase fees continually to one-up each other. The dynamic is similar to the [One Dollar Auction](https://en.m.wikipedia.org/wiki/Dollar_auction), where participants end up making rational choices, but end up with an irrational result (like paying $1.50 for $1). Every loser pays lots in fees for nothing.\n\n## Second order Game Theory\n\nNow given this first-order incentive playing out, it's not a surprise that a lot of issuers purposefully put in a very high fee initially to discourage anyone from trying to snipe the symbol. After all, if your sniping attempt fails, then you lose out on the fees you tried to snipe with. There's also a significant uptick in the usage of RBF for this reason, so that you have the option to one-up the sniper and the sniper to do the same to the issuer.\n\nNote that RBF isn't useful here to *get out* of paying the fee, as a replacement transaction has to pay more than the previous transaction in fees. Either way, the miner ends up with the fees.\n\nNow back to the miner's role. The miner can, if it so desires, give preference to the *lower* fee transaction by including it earlier in the block. Indeed, the incentive is to give miners off-band fees if possible to order transactions in such a way as to win by not revealing how much you've paid. Miners in this protocol have a lot of leverage.\n\n## Conclusion\n\nRunes have resulted in some really high fees, though it's hard to know if the design was intentional or unintentional. What we do know is that Runes have been hyped up for the last few months and have been anticipated for a while, and certainly being one of the first assets issued under the protocol has some marketing value for the eventual goal of getting them listed on an exchange.\n\nSadly, in addition to the normal scamming of altcoins being completely centralized, there is a deeper cost in terms of block space congestion, where fees of 1000 sats/vbyte are currently not enough to get into certain blocks. The Runes asset issuance has overridden almost every other use case at the moment.\n\nThat said, the current rate of Runes issuance is completely unsustainable. Just in the first 18 blocks, there's been over $20M in fees spent, most of that in Runes issuance. At this rate, Runes issuers would be spending $150M a day or $1B a week. I honestly can't see them doing this for much longer than a month or two. In the meantime, it must be great to be a miner finding these blocks.\n \N 17639 \N 428318 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 0.389724437012688 0 \N \N f 649200807 \N 7 28182146 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456507 2025-03-27 16:26:26.964 2025-03-29 22:39:47.374 ~charts territory launch + rewards today i launched the ~charts territory.\n\nit’s a place for anyone to post interesting charts and data visualizations they find.\n\nthere are no topic constraints, so don’t feel the need to keep it bitcoin-focused.\n\nsince this is a new territory, i figured it was worth experimenting with a new strategy for getting traction and incentivizing others to participate.\n\nso, from now on i’m going to pay all of the sats i stack on SN back to the top posters and commenters on the ~charts territory every day.\n\nperhaps if this is a successful experiment there is a way to productize the incentive system for other territory owners to reward a portion of their revenue to top contributors on their territory.\n\nbut since this is just an experiment, i’ll be doing this manually for now. i’ll decide what my favorite posts and comments are and how to distribute the sats, but every day i will be emptying my wallet (minus a bare minimum balance so i can continue posting each day).\n\n🤠 \N 627 \N 456507 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 9.04487945928523 0 \N \N f 221070493 \N 1 222699192 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442313 2025-03-18 14:06:59.127 2025-03-29 22:39:47.374 Swan Bitcoin not allowing coinjoined Bitcoin deposits or withdrawals. \N https://twitter.com/HodlMagoo/status/1723359155254132976 18426 \N 442313 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 25.7014950242378 0 \N \N f 761181975 \N 6 245084062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:46:37.797 f \N \N \N 0 0 0 0 5 0 0 4177 2022-11-16 05:02:59.376 2025-03-29 22:39:47.374 Global Liquidity and Bitcoin *Episode XXIII. Block Height: 864800. What drives global liquidity, where we are at the global liquidity cycle, and how does it impact Bitcoin's price?*\n\n**Substack Episode:** https://carlbmenger.substack.com/p/global-liquidity-and-bitcoin\n\nThe global liquidity cycle dances like a tide, ebbing and flowing through the veins of the world's economies, each wave of capital leaving its mark on the shores of scarce assets. Bitcoin, a digital ember born from the fire of innovation, flickers brighter when the tide is high, nourished by the abundance of liquidity that sweeps across the financial landscape. Yet, when the tide recedes and the waters of capital retreat, Bitcoin stands resilient over time, its fixed supply like a beacon in the storm, a silent testament to the enduring power of scarcity in a world awash with excess.\n\n![Liquidity Wave](https://m.stacker.news/56357)\n\nLiquidity in an interconnected world is not isolated to one region or country, it is global in nature, and central banks are right at the center. The decisions made by these major central banks around the world have ripple effects. This interconnection means that in a fiat-measured world, global liquidity is a crucial determinant of asset prices, economic growth, and volatility. In this context, it's essential to understand the Global Liquidity Cycle, the players involved and if/how it correlates with Bitcoin. This is what this episode is all about. Strap in and LFG!\n\n### The Liquidity Cycle\n\nFirst and foremost, in a world ruled by the money printer, periods of abundant liquidity often coincide with economic booms and rising asset prices, but they also tend to foster speculative bubbles and financial instability. When liquidity tightens, these bubbles can burst, leading to market corrections or even economic crises. This flow is a repeating pattern and can be characterized by the concept of the liquidity cycle.\n\n#### Liquidity Expansion\n\nIn the expansion phase of the Global Liquidity Cycle, central banks and financial institutions provide abundant liquidity. This often occurs during periods of low inflation, low interest rates, and loose monetary policies. Central banks inject liquidity through quantitative easing (QE), asset purchases, and lowering policy rates, while commercial banks and non-bank financial institutions extend credit more freely. During this phase, capital becomes widely available and cheap. Investors and corporations take on more risk, seeking higher returns in equities, commodities, real estate, and emerging markets. Asset prices tend to rise, and speculative investments flourish as liquidity searches for yield. Economies grow as consumption and investment are fueled by easy access to capital. However, excess liquidity can lead to asset bubbles as investors pile into riskier investments, driving prices above their fundamental values. The potential for financial imbalances increases as markets become overly dependent on the flow of liquidity.\n\n#### Peak Liquidity\n\nAt the peak of the liquidity cycle, global markets are flush with cheap money, and central banks begin to signal the need for tighter monetary policies due to concerns over inflation and financial instability. During this stage, asset prices are typically at their highest, driven by the abundance of liquidity. Investors and institutions may become complacent, underestimating the risks in financial markets because of the prolonged period of low interest rates and high liquidity. This phase is marked by heightened risk-taking, speculative activity, and the growing risk of financial bubbles.\n\n#### Liquidity Contraction\n\nThe contraction phase begins when central banks tighten monetary policy, often in response to rising inflation, overheating economies, or concerns about financial instability. Central banks reduce asset purchases, raise interest rates, or shrink their balance sheets, leading to a withdrawal of liquidity from the financial system. Commercial banks may also tighten lending standards, leading to reduced credit availability. As liquidity contracts, borrowing costs increase, and access to capital becomes more difficult. This leads to a sell-off in “riskier” assets as investors retreat to “safer” assets like government bonds or cash. Asset prices fall, and the economy may slow as investment and consumption are constrained by higher borrowing costs.\n\n#### Trough\n\nAt the trough, liquidity is at its most scarce. Central banks have significantly tightened monetary conditions, interest rates are high, and credit is difficult to access. Financial markets experience widespread deleveraging, asset prices are depressed, and economies may enter a recession. However, this phase also sets the stage for the next liquidity expansion. As economies weaken and inflationary pressures subside, central banks begin to ease monetary policy again to stimulate growth, lowering interest rates and providing more liquidity to the financial system. This initiates the next cycle of liquidity expansion.\n\n### M2 Money Supply\n\nThe M2 money supply is the primary driver of the Global Liquidity Cycle, which measures the total amount of money circulating within an economy. It includes M1, which consists of the most liquid forms of money like cash and checking deposits, as well as less liquid assets such as savings accounts, money market mutual funds, and time deposits. M2 is considered a broader measure than M1 because it accounts for money that is not immediately available for spending but can easily be converted into cash.\n\n![Global Money Supply](https://m.stacker.news/56358)\n\nThe world M2 money supply just hit a fresh new ATH of roughly $95 trillion in August, even before central banks started their rate-cutting and QE cycles. China just announced its most aggressive stimulus package since the pandemic, and the FED lowered rates by 50 bps. Liquidity expert Michael Howell came to the conclusion that we're currently at the beginning of a new upswing. The last trough occurred in December 2022, with the next peak projected for the end of 2025.\n\n![Global Liquidity Cycle](https://m.stacker.news/56359)\n\n### Infinite Liquidity Glitch\n\n#### Central Banks\n\nMajor driver of the M2 money supply are central banks manipulating the market through monetary policies such as interest rate adjustments, and open market operations. When central banks lower interest rates, borrowing becomes cheaper for businesses and consumers, encouraging more loans and credit creation. This increased borrowing adds to the money circulating in the economy, thus expanding M2. Conversely, raising interest rates makes borrowing more expensive, slowing down the creation of credit and contracting the M2 supply. Additionally, central banks engage in open market operations purchasing large amounts of government bonds to stabilize interest rates or finance fiscal deficits. This process, known as "monetizing the debt," increases bank reserves and creates more liquidity in the financial system. As a result, banks have greater capacity to lend, further expanding the M2 supply. If these new loans are used for consumption or investment, the money circulates through the economy, amplifying the impact of government debt refinancing on overall money supply growth. Over time, repeated cycles of refinancing, coupled with central bank involvement, contribute to a sustained increase in the money supply.\n\n#### Government Debt\n\nRefinancing growing government debts, or rolling over maturing debt, has a direct impact on M2. When governments issue new bonds to repay or refinance maturing debt, they effectively keep the level of public borrowing constant or, most of the time, substantially increase it. This process often requires financial institutions, investors, or central banks to purchase the new bonds, injecting liquidity into the economy. As financial institutions buy these government securities, they create new deposits in the banking system, contributing to the expansion of the M2 money supply. The continual issuance of government bonds ensures that money remains in circulation as bondholders receive regular interest payments and returns of principal, which increases the funds available for spending, investment, and further lending. As banks receive more deposits, they also gain the ability to lend more, which can further expand the money supply through the money multiplier effect. Global public debt reached close to $100 trillion at the end of 2023, and there is no sign of stopping this train. On the contrary.\n\n#### Forever Wars\n\nWar in Ukraine, war in the Middle East, trade war with China, war everywhere and that is no coincidence. Fiat currencies promote perpetual wars because they can be financed simply by printing money, and the true burden on the population only becomes apparent in the long term. Thus, war significantly impacts a country's M2 money supply. To fund military operations and war-related expenses, governments resort to expanding the money supply by issuing more government bonds, which in turn get monetized by central banks. This process increases the overall M2 supply as central banks inject liquidity into the economy to meet rising demand for funds.\n\n### Bitcoin and Liquidity\n\nBitcoin operates outside the conventional financial system. It was created in response to concerns about inflation and the ability of central banks to expand the money supply at will, which can erode the value of traditional fiat currencies, as mined for eternity in the genesis block: **“The Times 03/Jan/2009 Chancellor on brink of second bailout for banks.”** Bitcoin’s supply is capped at 21 million coins, creating a built-in scarcity that contrasts sharply with the potentially unlimited expansion of the M2 money supply. Thus, one Bitcoin will always be one Bitcoin, regardless of the actions of central banks and governments. However, hyperbitcoinization, where everything is measured against Bitcoin, is still in the making, and we still live in a world measured in fiat currencies, so global liquidity will influence the Bitcoin price for the foreseeable future.\n\n![YoY Global M2 vs Bitcoin](https://m.stacker.news/56361)\n\n![M2 and Bitcoin](https://m.stacker.news/56362)\n\nThe correlation between Bitcoin and the M2 global money supply is striking and more pronounced during periods of aggressive monetary expansion, where central banks around the world inject vast amounts of liquidity into the financial system. Bitcoin's correlation with the M2 supply highlights a broader tension between centralised monetary systems and scarce decentralised financial technologies. As central banks continue to expand the money supply in response to economic challenges and financing ever-growing debt loads, Bitcoin will continue to rise.\n\nFurthermore, the correlation between M2 and Bitcoin is also amplified by speculative behavior in financial markets. Bitcoin is still seen by most market participants as a risky asset. Thus, when the money supply grows and liquidity is abundant, the risk appetite among investors tends to increase. Bitcoin becomes a focal point for traders and investors seeking gains in a low-interest-rate environment. This speculative activity can further fuel price appreciation during periods of M2 expansion. The greater the availability of currency in the economy, the more capital is available to flow into risky assets, creating a feedback loop that drives up prices.\n\n### Conclusion\n\nUnfortunately, hyperbitcoinization is not here yet, and we still live in a world measured in fiat currencies. The strong correlation between Bitcoin and the M2 money supply is striking. In times of abundant liquidity, Bitcoin rises significantly, while in times of tightening, it often enters a new bear market. However, inherent to the fiat currency system is the expansion of the M2 money supply over time because governments aren‘t going to stop spending. Thus, central banks can’t stop printing to finance increased debt levels and ever-increasing interest rate payments, which further increases the M2 money supply. This means that absolutely nothing is going to stop the devaluing fiat currency train over time while scarce assets increase to infinity. Bitcoin is the fastest horse in the race, soaking up huge amounts of this liquidity. Prepare yourself accordingly.\n\n### The End\n\nThat's it for this episode. I hope you got some valuable information from this one. Don’t forget: **There are only 21 million Bitcoin forever, but unlimited fiat currency!** Thanks for reading, and see you in the next one. ₿ critical, ₿ informed, ₿ prepared.\n\nYours,\n\n![Carl B Menger](https://m.stacker.news/56363)\n\n### Stay tuned\n**Subscribe to my Newsletter:** https://carlbmenger.substack.com/publish/home\n**Follow me on X**: https://mobile.twitter.com/CarlBMenger\n**Follow me on NOSTR:** npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Related Topics\n[Genesis] How Money Evolves: https://stacker.news/items/86531\n[XI] Valuing Bitcoin: https://stacker.news/items/208983 \N 627 \N 4177 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.61689837468164 0 \N \N f 19301903 \N 1 59591699 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401076 2025-02-12 17:29:48.935 2025-03-29 22:39:47.374 Next rewards experiment idea I thought I would share my thoughts on what the next "rewards experiment" should look like. Or maybe, it could be the "end-game", who knows. Honestly, I forget what all the past experiments even were, so maybe this has already been tried?\n\nIt _feels_ like with the randomness introduced, stackers have been held more accountable to produce quality content and/or zap good content, not knowing which behavior will be rewarded. Of course, this is just a feeling and not supported by any hard evidence. But I think that was the original intent, so success!\n\nHowever, I think it can be discouraging to some when maybe you zap a really good post early on a day where zapping ends up not being rewarded, or maybe you make a really great comment on a day where early zapping _is_ rewarded, instead.\n\nMy idea is as follows: Both behaviors (zapping top content, creating top content) get rewarded a guaranteed 10% of the rewards pool daily. The remaining 80% gets randomly distributed between the two behaviors on a daily basis. The goal is that this would keep stackers accountable to work towards each goal, knowing that they will get _some_ reward, and maybe a lot more, depending on the random draw.\n\nIn any case, I'd love to hear your opinion of both this proposal, or maybe some others! Thank you for reading. \N 20816 \N 401076 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 24.4252736739676 0 \N \N f 999316952 \N 6 129355657 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435690 2025-03-12 22:01:00.541 2025-03-29 22:39:47.375 Closed Loop Thinking vs Open Loop Thinking I came home with a lot of ideas. Then I saw dirty dishes and I noticed how I got instantly distracted by it.\n\nAt this moment, the impact of open loops became really clear to me. https://makelifeexcellent.blogspot.com/2010/02/closed-loop-thinking-vs-open-loop.html 837 \N 435690 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5326380205271 0 \N \N f 1090048680 \N 9 76108586 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:12:48.758 f \N \N \N 0 0 0 0 3 0 0 403274 2025-02-14 16:20:16.762 2025-03-29 22:39:47.375 POLL: 2024 Sentiment Check. What are you anticipating, excited or nervous about? How do you anticipate the year looking, from a general perspective and for Bitcoin specifically?\n\nObviously I expect most to be bullish Bitcoin. But how do you see the trajectory of the overall world looking? Better than now, or worse? In what areas? Why?\n\nAnd if you're somehow bearish on Bitcoin, why? (are you okay??) \N 2431 \N 403274 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 26.1787293061026 0 \N \N f 327436364 \N 3 104411714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 441742 2025-03-18 09:13:00.286 2025-03-29 22:39:47.375 Privacy is a Social Good \n\nWhen we think about privacy, it's usually in the context of an individual being able to hide something, usually from the government, but also from lots of other entities. It's a security issue in the greater discourse because there are bad people that can and will use information about you to reveal embarrassing information, blackmail, or even steal from you.\n\nThis is not just true of criminals, but also of companies and even governments. They can and do use information about you to propagandize you or demand taxes from you. These are, of course, understandable concerns and good reasons to want privacy.\n\n## Status Games\n\nBut there's another aspect of privacy which is just as important, perhaps more important than these and it's the social dynamic at play.\n\nPrivacy, you see, is a necessary buffer between people to keep order. This is because people are, in the end social creatures and in every social group, there is a constant jockeying about for position, what I would call status games being played.\n\nThe problem with status games is that they are by nature zero-sum. Whoever is at the top is usually both admired and envied, while whoever is at the bottom is generally pitied. This is especially true when the participants can change their position, whether through achievement, violence or politics.\n\n## Envy and Resentment\n\nToo much clarity on the status of individuals in the group causes strife in the form of envy. This is not just for people at the bottom, whose envy of everyone above them is understandable, but also for those near the top, who likewise will envy people above them. A big enough group of disaffected people in a status game will cause some form of revolution. In other words, strictly ordered status games are not stable.\n\nThus, too much information sharing is bound to cause bitterness and resentment which in turn causes unstable organizations because humans are very status-aware. Marxism tries to solve this by making everyone equal, but of course, this doesn't work because the entity which controls this equality ends up being higher status than everyone else. You cannot have full transparency and social order. There will be too many dissatisfied people.\n\nThis is where privacy is important because it gives groups ambiguity about where each individuals stand. For example, most social groups in the US have as a default, social standing that corresponds with their level of wealth. The richer you are, the higher on the status ladder you are and the poorer, the lower. A very strict pecking order where everyone knew exactly how many assets everyone had would breed a significant amount of envy and resentment. Any group where this level of transparency was required would be unpleasant to be in strictly for that reason. We need a level of ambiguity to socially interact in a reasonable way. \n\n## Decentralized Status Games\n\nThat's not to say that everything is completely obscured. Most people that have money signal in various ways, with their clothing, car, topics of conversation and so on. They signal with various levels of loudness and reveal status information to the people that they're targeted at. One of the features of "old money" people is that they're very good at identifying other "old money" people while simultaneously hiding their wealth from people that are not as rich as they are. In a sense, this is a survival mechanism because envy, bitterness and resentment are not pleasant to deal with and oftentimes dangerous.\n\nPrivacy is the ability to disclose information at our discretion, not someone else's and that's exactly what happens in groups to keep the peace. Privacy has deep social value because it gives individuals the discretion to reveal where they are relatively in status. That protects not just them from attack, but also protects the group from upheaval. The less envy, bitterness and resentment there is, the more cohesive the group can be.\n\n## Conclusion\n\nPrivacy is a necessary part of civilization because cooperation is hard and nothing destroys cooperation like bitterness and envy. And those two in turn are caused by too much clarity on status. Privacy is what adds ambiguity and empowers individuals to calibrate group dynamics.\n\nPrivacy: it's not just for cypherpunks anymore.\n![privacy.jpg](https://m.stacker.news/26250) \N 16536 \N 441742 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 21.404815166888 0 \N \N f 141389308 \N 3 35205762 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 1620 2022-09-20 20:38:40.645 2025-03-29 22:39:47.376 Last Chance to apply for TopBuilder ![announcing-top-builderV7.png](https://m.stacker.news/11275)\n\n⏳ Only 5 days left to apply for PlebLab TopBuilder competition. \n\nTransform your Bitcoin project into the next Bitcoin startup, and for a chance to win $15K in Bitcoin. \n\nGet mentorship, attend workshops and network with fellow devs while working on your project. \n\nLearn more: www.topbuilder.dev \N 17519 \N 1620 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 5.49763116233915 0 \N \N f 466452126 \N 4 79056607 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435402 2025-03-12 16:47:39.952 2025-03-29 22:39:47.376 Nostr Browser Annnouncement \N https://primal.net/e/note1ak7l9jzrn8glls9j4dn29w65uhdmcxd322mpq3qpfwndqqk237js3y2tdp 19569 \N 435402 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.7733304024407 0 \N \N f 306835203 \N 2 238652034 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 23:43:07.037 f \N \N \N 0 0 0 0 2 0 0 455601 2025-03-27 07:31:01.905 2025-03-29 22:39:47.376 What technology do you REFUSE to adopt? Besides CBDCs...\n\nWhat else are the seemingly "innocent" tech trends that you'll have NO part of?\n\nI think I know @darthcoin's answer... \N 7659 \N 455601 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 19.3413112133106 0 \N \N f 7947476 \N 1 20178266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442319 2025-03-18 14:10:08.048 2025-03-29 22:39:47.377 Mutiny Wallet Tutorial! Mutiny Wallet is officially out in open beta. A self-custodial Lightning wallet that runs in your browser is a powerful tool that will make self-custodial lightning usage more accessible. \n\nCurious how it works and how to use it? Check out my latest video! https://www.youtube.com/watch?v=loPdYbQ5VvU \N 2335 \N 442319 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 15.7359976271731 0 \N \N f 124554917 \N 1 227576096 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417005 2025-02-26 01:27:19.797 2025-03-29 22:39:47.377 What if... we already live in Utopia? ## What if I told you that utopia isn't some distant, unattainable dream, but rather a state of being that we can cultivate right here, right now? \n\n### **Take a moment before you read on and soak that in... how does it make you feel? What were your first thoughts? Do you think I am crazy?**\n\n\nWhen we think of utopia, we think of a paradise in some far-off land that we are striving to get to, even searching for. We believe it to be the impossible, the imaginary and so, even though we dream of it, we tell ourselves that it is unobtainable and out of reach.\n\n+ What would happen if we realised that we have the power to create it within ourselves and in our surroundings? \n+ What if the key to unlocking utopia lies in the very thoughts, actions, and words that shape our daily lives?\n\n**Consider this: every moment, we are actively participating in the creation of our reality.**\n\nOur thoughts serve as the architects, our actions as the builders, and our words as the blueprints. \n\nWe are constantly shaping the world around us, whether we realise it or not. And just as we have the power to construct, we also have the power to deconstruct and rebuild anew.\n\n### But what does it mean to live in utopia? \n\nNow, this is where it gets tricky for people and it is the reason that it is fobbed off as a fantasy.\n\nEveryone has a different idea of what utopia is, every person's thoughts, actions and words are different so: \n+ How can we be live in utopia if we all have a different view? \n+ How can we live in utopia if there is 'evil' in the world, if there are murderers, rapists, gun crime etc? \n+ How can we live in utopia if we don't have fairness and equality, a working trade system?\n\n### How can I know that we already live in utopia _even_ though we live amongst all this?\n\nBecause, it isn't about controlling what people do and how they act. It's not about a perfect world devoid of challenges or hardships. Rather, it's about cultivating a mindset of abundance, compassion, and harmony amidst the chaos of life. It's about recognising that our external circumstances do not define our inner peace, and that true fulfilment comes from within.\n\n**However there is something that will help you to create the world around you...**\n\nOne of the fundamental principles of this Utopian mindset is the law of reciprocity: what we put out into the world, we inevitably receive back. If we sow seeds of kindness, empathy, and generosity, we will reap a harvest of connection, joy, and fulfilment. Conversely, if we propagate negativity, fear, and hatred, we will find ourselves trapped in a cycle of suffering and discord.\n\nThe concept of utopia is echoed in various spiritual and philosophical traditions, from the Golden Rule ("Do unto others as you would have them do unto you") to the law of karma ("As you sow, so shall you reap"). It reminds us that we are all interconnected, and that our individual actions have ripple effects that reverberate throughout the collective consciousness.\n\n### You can create what you want, by first giving it.\n\n**So how do we begin to cultivate this Utopian mindset in our own lives?**\n\nIt starts with a shift in perspective—a willingness to see the world through the lens of possibility rather than limitation. Instead of dwelling on what's wrong or lacking, we can focus our attention on what's right and abundant. We can choose to see challenges as opportunities for growth, setbacks as lessons in resilience, and differences as sources of enrichment.\n\n\nHere's an example of the same life from two different perspectives:\n\n**Non-Utopian:**\nCurrently, with just £5 in my bank account, I feel utterly skint. The relentless increase in costs over recent years has left me drained. Every expenditure feels like a struggle. Our house, too small for my family, weighs heavy on my conscience. The kids deserve better, more space to thrive. And the state of our garden mirrors my financial problems—desperately in need of attention, but a gardener is a luxury I can't afford. Balancing work and responsibilities, I find myself stretched thin, unable to keep up with it all. The audacity of the government to imply I'm not working hard enough hurts. What more could they possibly want? Maybe they're onto something, but the prospect of a 'proper' job seems daunting. I've always felt unemployable—each job I've had ends in frustration, either with me walking out or being fired due to my inability to filter myself. It's all a consequence of my childhood. It was so hard. Why did those things happen to me? I can't help but wonder, if things had been different, how would my life have unfolded? I long for a perfect world—a place of peace, laughter, and hard work that is rewarded fairly.\n\n**Utopian:**\nCurrently, my bank account shows £5, but rest assured, all my bills are settled, the fridge is stocked, and utilities topped up, so I can relax until the next payday. Admittedly, expenses are climbing, but I'm up for the challenge! Money is purely energy that flows in and out. My home is perfect – and easy to tidy up when the mood strikes. The kids are happy, and with the park a stone's throw away, they've got plenty of space to stretch their legs. Sure, the garden could use a little TLC, but watching bees, butterflies, and the occasional neighbourhood cat outside always makes me smile. Who says dandelions are a nuisance? They're nature's little wonders! \nLife for me isn't just about work and chores; it's about savouring the present, listening to the birds chirp. \nRecently, the government chimed in, suggesting I step up my game. Naturally, I asked why. Their answer? It's the rules. But are they really? Or is it just about boosting the bank balance to keep them happy? It's all a bit of a game, isn't it? So, I posed another question: Do I need to work harder or earn more? Their response: Earn more. Well then, how much more to make you smile? Challenge accepted! I'm living life on my terms, keeping the powers that be satisfied without diving into the rat race. \nReflecting on my upbringing, it wasn't a walk in the park. I used to wonder, "Why me?" Now, I see those struggles shaped me into someone resilient, compassionate, and tough. Without experiencing pure sorrow and helplessness, I wouldn't know joy, strength, or love as deeply as I do now. \nNot everyone shares my outlook, and that's fine; they don't have to. I call the shots on who's in my circle, what I create, and how I navigate this journey called life.\n\n**We can align our thoughts, actions, and words with our highest ideals and values. We can strive to embody virtues such as love, compassion, consideration and gratitude in our interactions with ourselves and others. We can be mindful and self-aware, cultivating a deeper understanding of our own motivations and intentions. And we can engage in acts of service and contribution, recognising that the true measure of our worth lies not in what we accumulate, but in what we give.**\n\nIn doing so, we not only transform our own lives but also contribute to the collective evolution of humanity. We become beacons of light in a world too often shrouded in what appears to be darkness, inspiring others to awaken to their own inherent power and potential. And together, we co-create a reality that reflects the beauty, harmony, and abundance of the utopia within.\n\nIn conclusion, perhaps the greatest irony is that utopia isn't some distant destination to be reached but rather a journey to be embraced—one that begins and ends with the realisation that we already possess everything we need to create it. \n\n**So let us dare to dream, to imagine, and to believe in the infinite possibilities that lie within our grasp. For in doing so, we may just discover that the utopia we've been searching for has been here all along, waiting patiently for us to awaken to its presence within ourselves.**\n\n### There will be plenty I have missed as it is such a big subject so feel free to question me and we can have a healthy conversation or debate! There is nothing wrong with disagreement as long as we stay kind to one another :) \N 20606 \N 417005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3522883790417 0 \N \N f 303225752 \N 2 238436562 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 408265 2025-02-18 16:59:33.651 2025-03-29 22:39:47.374 Google now displays the balance of BTC addresses in an info box As you can see in the picture below, Google has integrated an information box for BTC address balances.\n\nHowever, there are some issues:\n\n+ The dataset is somewhat outdated (dating back to January '24).\n+ Not all address types are supported, as you can see.\n\nNevertheless, this is significant. It shows that Google also recognizes that Bitcoin isn't going anywhere ;)\n\nHopefully, it will only improve in the future.\n\n![GOOGLE_BTC_ADDRESSES.PNG](https://m.stacker.news/23541)\n\nDear IRS, it's not my address, just the number 3 on the rich list!\n\nAddress details:\n\n+ Test transaction back in July '23 of about 0.25 BTC.\n+ High accumulation right afterwards.\n+ Getting FOMO lately.\n\nDo you think it's an exchange or a company/individual? Are there rumors or informations out there ?\n \N 937 \N 408265 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 22.9323007605009 0 \N \N f 236797994 \N 2 98142871 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 444286 2025-03-19 18:48:55.389 2025-03-29 22:39:47.374 Sunday Survey: What's your first recommendation for Bitcoin noobs? \N \N 4776 \N 444286 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 21.5900644553098 0 \N \N f 72739637 \N 1 187288615 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434647 2025-03-12 05:20:46.846 2025-03-29 22:39:47.376 Alex Gladstein AMA - bitcoin and freedom Hi everyone, my name is Alex Gladstein, I've been working at the Human Rights Foundation since 2007, and working all-the-time on Bitcoin and human rights since 2017. Doing what I can to help promote Bitcoin as a tool of human rights and to grow the world's biggest peaceful revolution.\n\nAMA \N 2361 \N 434647 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.3700856135021 0 \N \N f 114804211 \N 2 187663246 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 00:05:58.09 f \N \N \N 0 0 0 0 2 0 0 446937 2025-03-21 14:37:55.469 2025-03-29 22:39:47.374 Telegram Encryption - The Most Backdoor-Looking Bug I’ve Ever Seen (2021) \N https://words.filippo.io/dispatches/telegram-ecdh/ 19576 \N 446937 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 15.8693277118589 0 \N \N f 1740712196 \N 14 15895570 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:25:02.68 f \N \N \N 0 0 0 0 7 0 0 443197 2025-03-19 06:38:00.331 2025-03-29 22:39:47.375 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/444998) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 16965 \N 443197 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 17.6886770679283 0 \N \N f 1456764647 \N 10 222101608 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:06:15.361 f \N \N \N 0 0 0 0 6 0 0 447870 2025-03-22 08:10:43.363 2025-03-29 22:39:47.375 The mempool memory usage is > 1GB ![mempool memory usage](https://nostr.build/i/nostr.build_9a41b3af401a374ac23d770cad366d42845dc9da7ebd503ef257a463d46f8830.png)\n\nAFAIK this is the most amount of data in the mempool.\n\nThe TXs fees are:\n![](https://nostr.build/i/nostr.build_7f5dd954057769951c80ce8748209d088ac846ebcef0b48129274801fb29aa92.png)\n\nI'm waiting to open new channels on LN until the mempool is emptier. Recently I heard that we may never see an empty mempool. What are your thoughts on this?\n- Will we ever see an empty mempool or is this just temporary?\n\n \N 10818 \N 447870 \N \N \N \N \N \N \N \N art \N ACTIVE \N 17.0498291919923 0 \N \N f 761300003 \N 6 61233317 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456633 2025-03-27 17:56:40.195 2025-03-29 22:39:47.375 Roman Sterlingov wrongly convicted by the United States Government \N https://www.bloomberg.com/news/articles/2024-03-12/crypto-mixer-convicted-of-money-laundering-on-bitcoin-fog 21320 \N 456633 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 3.59651503545024 0 \N \N f 102218200 \N 1 124363423 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435357 2025-03-12 16:09:33.612 2025-03-29 22:39:47.375 What is the difference between permissionless and censorship resistant? I often find myself using the term *censorship resistant* in connection with Bitcoin but occasionally others will say that I should be saying *permissionless*. \n\nBeyond just looking up the definitions of these two terms, how do you feel they differ (if at all)? \N 2013 \N 435357 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.6603863549906 0 \N \N f 492031534 \N 4 184883325 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 14:32:21.925 f \N \N \N 0 0 0 0 2 0 0 426814 2025-03-05 20:54:56.75 2025-03-29 22:39:47.375 Release: Cashu is now available on LNbits. Chaumian ecash for everyone! \N https://twitter.com/callebtc/status/1600926923554971648 1890 \N 426814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8700587688237 0 \N \N f 48590736 \N 1 108605356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427500 2025-03-06 12:45:08.415 2025-03-29 22:39:47.376 Ask SN: Have you used a sidechain? There's a lot of interesting development going on right now in the world of bitcoin sidechains (not referring to the drivechain "debate", just actual development on either existing sidechains or new sidechain ideas like Spiderchains). \n\nHowever, I feel like most bitcoiners have never used a sidechain, and I wonder why that is.\n\nHave you used a sidechain? If so, which one, and if not, why not?\n\nIf you prefer Liquid over Rootstock, why? If you prefer Rootstock over Liquid, why?\n\n(I did not include Stacks here because it's not a proper sidechain, but if you want to discuss why you use it, feel free). \N 4984 \N 427500 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.4971479651147 0 \N \N f 115281464 \N 1 232493418 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406452 2025-02-17 11:02:53.036 2025-03-29 22:39:47.376 Top Builder Season 2 announced! 🏆 ![](https://m.stacker.news/62475)\n\n🤙This one is for the builders...\n\nANNOUNCING TOP BUILDER SEASON 2! \n\nTopBuilder is an intense competition designed to discover the next wave of innovators in the Bitcoin ecosystem.\n\nApply before Dec. 31st to participate in this Bitcoin only competition.\n\n![](https://m.stacker.news/62481)\n\nWin up to $15K in BTC.\n\nAll builders win by gaining exposure, mentorship, and collaboration opportunities in the Bitcoin ecosystem. Only one can be Top Builder. Are you the next Top Builder?\n\nMore information here. https://www.topbuilder.dev/\nSign up deadline is Dec. 31st, 2024 https://bit.ly/topbuilder2 \N 9354 \N 406452 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.375137491446 0 \N \N f 72363758 \N 1 145637375 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 419514 2025-02-27 21:32:41.32 2025-03-29 22:39:47.374 Inscription numbers off by one · casey/ord --- lol \N https://github.com/casey/ord/issues/2062 15556 \N 419514 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 29.7234634296975 0 \N \N f 231997054 \N 2 85707744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 425959 2025-03-05 10:08:00.537 2025-03-29 22:39:47.376 I made a no-nonsense halving tracker. \N https://bitcoin.day/ 776 \N 425959 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 24.813519633597 0 \N \N f 327302218 \N 3 31177605 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413395 2025-02-23 06:31:55.052 2025-03-29 22:39:47.376 Maximalists' Creed I believe in sound money,\ncreator of civilization and prosperity,\nand in Bitcoin, the only truly scarce asset,\nwhich was conceived by the Cypherpunks,\nborn under fiat excess,\nwithout ruler or controller,\ndecentralized, unconfiscatable and undebasable;\nsecured by proof of work;\nauditable, immutable, and securable,\nallowing me to be self-sovereign over my wealth;\nborderless, open-source, and voluntary,\npermissionless, censorship-resistant, and pseudonymous,\ngiving financial freedom to the rich and poor alike;\n\nI believe in providing value,\nin the insolvency of central banks,\nin the futility of altcoins,\nin holding my private keys,\nin verifying, not trusting,\nin saving for the future,\nand in Bitcoin's ultimate triumph.\n\nAmen.\n\n \N 631 \N 413395 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 17.2001353336128 0 \N \N f 124208816 \N 1 220366731 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 328186 2024-12-12 23:13:10.124 2025-03-29 22:39:47.377 Bitcoin’s Price is Important \n## Bitcoin's Price is Important\n\nA few days ago @TNStacker posted a link to an article discussing technical analysis of bitcoin's price. I responded in a typical maxi way that said, in essence, who cares about price?\n\nIn retrospect, I was wrong.\n\nBitcoin's price does matter.\n\nIt is a badge of honor in the bitcoin community to say some variation of the following:\n\n1. I don't care about the price of bitcoin.\n2. Price is the least interesting thing about bitcoin.\n3. 1 bitcoin = 1 bitcoin.\n\nJust about every person I look up to in the bitcoin world believes that the price of bitcoin is not that important, or at least says so publicly. I embraced this notion myself.\n\nI no longer agree.\n\nPrice is the measure of value in our society, no matter how inaccurate, misguided or manipulated it might be at any point in time.\n\nThe US dollar is the global measure of price. This is a fact, regardless of what we say or want to believe. I have no doubt value will be measured in bitcoin at some point, but that is not the case now.\n\nBitcoin's price matters for many reasons. Here are a few:\n\n## Price appreciation speeds adoption\n\nWhen bitcoin's price rises, it gets more attention, and becomes more widely known among no-coiners. This is true for individuals, corporations, and nations. \n\nI'm willing to bet that virtually all of today's maxis started as NGU newbies. I know I did.\n\n## Price dumps are a mixed bag.\n\nPrice decreases spread FUD, slowing adoption and scaring off those who haven't completely digested their orange pill.\n\nSimilarly, institutions having to live in a world of quarterly reports and shareholder meetings are often prevented from buying bitcoin because of these price swings.\n\nPrice is also critical to nation state adoption. The value of a country's treasury can soar or be decimated overnight, and its citizens will find it difficult to budget for household expenses so long as extreme price volatility is commonplace.\n\nOn the other hand, price dumps allow newly converted maxis to play a little catch up to the OG hodlers.\n\nI know that's how I felt about the past year's bear market, for which I will be forever grateful.\n\n## Price increases cause things to get cheaper in bitcoin terms\n\nMany bitcoiners are now living on a bitcoin standard. Price appreciation in US dollars makes this much easier. Bitcoiners get more goods and services for their sats, and merchants will be far more amenable to accepting bitcoin after hearing in the news about the latest "mooning."\n\n## Bitcoin's price is interesting\n\nI don't believe the canard "price is the least interesting thing about bitcoin." It is certainly not the most interesting thing about bitcoin, but it's still interesting.\n\nPrice can reveal importance milestones on the road to hyperbitcoinization.\n\nFor example, we lately see a divergence between the price action of equities and bitcoin for the first time in a year or two. This helps gauge whether bitcoin is being perceived as a risk asset or a store of value.\n\nBitcoin's price can also serve as a more objective, reliable gauge of fiat inflation, rather than trusting ridiculously doctored government indexes.\n\nStudying price action in the derivatives market can reveal market manipulation to artificially suppress the price of bitcoin, thereby repressing adoption. This "paper trading" has manipulated the gold market for half a century. Some prominent bitcoiners such as Willy Woo and Bitcoin TINA publicly changed long held beliefs about bitcoin as a result of price during this last bear market.\n\nPrice also determines market cap, which measures bitcoin's relative value compared to other assets, such as gold, US treasuries, oil, etc.\n\n## Conclusion\n\nBitcoin’s price has always mattered, and it will matter once we live in a bitcoin world. The US dollar has served as the world’s reserve currency for at least seventy five years, and its price has always mattered. Gold has served as a form of money for 5000 years, and its price has always mattered.\n\nI think it's time for bitcoiners to stop virtue signalling by saying price isn't important\n\n \N 684 \N 328186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8295896872247 0 \N \N f 223422519 \N 1 140876475 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443799 2025-03-19 14:20:58.452 2025-03-29 22:39:47.377 The Guide where your Lightning close-transaction can't get the channel closed We've all been been there, a channel gets closed, no-matter yet if it was a cooperative or force-closed, but somehow the close transaction hangs around and doesn't get confirmed. You want to clear the house, or need the pending onchain sats, but wonder how to go about it? Follow this guide and you'll hopefully find remedy.\n\nBut before, read [this article](https://docs.lightning.engineering/lightning-network-tools/lnd/unconfirmed-bitcoin-transactions) from LND. Then [read it](https://docs.lightning.engineering/lightning-network-tools/lnd/unconfirmed-bitcoin-transactions) again. Once you think you understand it, [read it again](https://docs.lightning.engineering/lightning-network-tools/lnd/unconfirmed-bitcoin-transactions). It's not super cohesive, since a number of things from the top need to be understood to grasp the section **[Channel closing](https://docs.lightning.engineering/lightning-network-tools/lnd/unconfirmed-bitcoin-transactions#docs-internal-guid-5647dd03-7fff-dc71-47cf-5f7e2155a44d)**, so ensure you spend some time in there.\n\n## Situation\nThis is written for LND, but similar methodologies are applicable for CLN. Eclair folks know their way around anyway.\nYou identified a channel-close, either in one of the GUIs you use, or from a Bot notification. But it doesn't confirm. First thing to do is SSH into your node via `ssh user@node-ip` and get an overview of all pending (open, and close) with \n`lncli pendingchannels`[^1].\n```terminal\n{ \n "channel": { \n\t"remote_node_pub": "123456789889786857463636288291929458767688493999392324", \n\t"channel_point": "dhksfkeh8458734kldjfksd39393932033fkk3003022244:1", \n\t"capacity": "10000000", \n\t"local_balance": "9999711", \n\t"remote_balance": "70137", \n\t"local_chan_reserve_sat": "10053", \n\t"remote_chan_reserve_sat": "10053", \n\t"initiator": "INITIATOR_REMOTE", \n\t"commitment_type": "ANCHORS", \n\t"num_forwarding_packages": "2", \n\t"chan_status_flags": "ChanStatusBorked|ChanStatusCommitBroadcasted|ChanStatusLocalCloseInitiator" \n }, \n "limbo_balance": "9999711", \n "commitments": { \n\t"local_txid": "eeof599490930002dcc0db3bfa789eb4afbd89a37794a4c49a5f529ddb1b23e85b3", \n\t"remote_txid": "ta48849fkkek39947uuc80371ec96a88297465821ee79ff0b85f8624f83a7455f1cc", \n\t"remote_pending_txid": "", \n\t"local_commit_fee_sat": "2510", \n\t"remote_commit_fee_sat": "2510", \n\t"remote_pending_commit_fee_sat": "0" \n }, \n"closing_txid": "eeof599490930002dcc0db3bfa789eb4afbd89a37794a4c49a5f529ddb1b23e85b3"\n```\nWhat we see here is that our LND sees that channel as borked, we have a an *opening_tx* (`channel_point:vout`), a *local_tx* and a *remote_tx*. What's usually the next step, we wonder why it's not closing, so we copy the \n```\n"closing_txid": "eeof599490930002dcc0db3bfa789eb4afbd89a37794a4c49a5f529ddb1b23e85b3"\n```\nand copy it into our favorite mempool tool. Just for guiding sake, we check with [mempool.space](https://mempool.space/), and now it's the time to split into two scenarios\n### Scenario 1: mempool.space shows the closing-tx, but it's unconfirmed and the fee is too low\nWhat many runners don't know, mempool.space runs with a mempool-size of 2GB, while most standard node-systems run with just 300MB. This is usually enough, but not in high fee environments.\nSo let's check if your local mempool has it: \n```\nbitcoin-cli getrawtransaction eeof599490930002dcc0db3bfa789eb4afbd89a37794a4c49a5f529ddb1b23e85b3\nerror code: -5\nerror message:\nNo such mempool or blockchain transaction. Use gettransaction for wallet transactions.\n```\nIn this case your mempool probably purged the transaction, or LND never published it due to it's low commitment fee. Let's jump to the next section to see what we can do about it.\n\n### Scenario 2: mempool.space shows `Transaction not found`\nOkay, we can assume that your closing-tx probably never hit the public-mempool, we can cut things short here and move to the next section, but just to be safe, let's check if our local bitcoin-mempool has it\n```\nbitcoin-cli getrawtransaction eeof599490930002dcc0db3bfa789eb4afbd89a37794a4c49a5f529ddb1b23e85b3\nerror code: -5\nerror message:\nNo such mempool or blockchain transaction. Use gettransaction for wallet transactions.\n```\n\n## Complication\nWhy are there transactions of channel-closes with too low fee? Can't LND figure out what fee is necessary and get things just out there? I want my funds!\nWell... and this is already way better than earlier last year\n![Screenshot 2024-01-22 11.37.14 PM.png](https://m.stacker.news/13421)\n\nLet's assume best intend, no-one built that protocol to make things intentionally complicated. But since you have two parties involved in the process, and we should assume no-trust between those, we need to install processes to keep things fair, balanced and transparent. Read up on the [HTLC-detail guide from Elle Mouton](https://www.ellemouton.com/posts/htlc-deep-dive/) to make yourself more familiar with the details.\n\nIn short, we have 2 (out of 3) possible ways for a channel-close: \n\n 1. **cooperative-close**, where both parties are online, one of the two sends a channel-close signal, and then both nodes get to court and negotiate a closing price. Since only the opener pays for the closing-cost, it's imminent it's not sky high. There are settings in `lnd.conf` like `coop-close-target-confs=100` which help to keep things rational from your side if the other side triggered the close.\n 2. **force- or uncooperative-close**, where either one of the two parties is unresponsive / offline, or other protocol / node-OS disagreements happen (like expiring HTLCs). In either case one of the two parties force-close, there is no court-negotiation, but based on the last channel_commit agreement the two nodes handshaken on, will be used for the closing-fee. Those agreements are also based on a few `lnd.conf` settings, like `max-commit-fee-rate-anchors` and `bitcoind.estimatemode`[^2]. \n\nEither have their intricacies, but when the channel-close is not in **your local mempool, or too low fee in the public mempool**, you can't get the channel closed and the onchain-sats stay locked away. \n\n## Proposed Solutions\nWe won't outline every possible scenario, but a couple of most happening ones. Some will work, others not. To avoid this article becoming a master-class, let's go through a couple of those which are doing no-harm, but helping you worse case to get some more information what's happening.\n\nFor each of those attempts, **prepare a second terminal window** to your node, and filter (`grep`) the channel-point and pubkey of the channel, so you'll be more informed after of what's happening. This terminal will monitor your `lnd.log` and show only entries where either the Pubkey of your to be closed channel-peer, or your mutual channel-point is triggered.\n```\nsudo tail -f .lnd/logs/bitcoin/mainnet/lnd.log | grep -e 'PUBKEYOFCHANNELPARTNER|CHANNELPOINT:VOUT'\n```\n\nWhile Terminal 2 stays open, let's move to Terminal Window 1 for the next couple of commands. We'll try one after the other, and this guide will be verbose if there's risk or sat-spending involved. It's sorted from lowest risk / spend to highest, top down.\n\n### 1. Reconnect\nMany coop-close attempts fail, because when both nodes go to court, there is a possibility to not find consensus on the closing fee. Let's see if this is the reason, you'll see entries like commit-fee proposal staggering up, and whether you'll find consensus\n`lncli disconnect PUBKEY && lncli connect PUBKEY@ADDRESS:PORT`\nIf the closing attempts fail, you'll see that each time, the delta between your node and your channel-peer will get closer. Eventually it'll work, if not, check your `lnd.conf` settings and eg change `bitcoind.estimatemode=ECONOMICAL` to `bitcoind.estimatemode=CONSERVATIVE`.\n\n### 2. Restart LND\nSometimes closing attempts miss a broadcast due to a missing connection to bitcoind. Restarting LND rebroadcasts every pending channel-close and sweeps, so give this a shot and check your terminal 2 while LND is taking it's time to come back up. Really, you need some patience here.\n\n### 3. Reinitiate coop-close (and force-close)\nTry to close the channel again, in rare cases this would solve something which 1. didn't: `lncli closechannel --chan_point CHANPOINT:VOUT --sat_per_vbyte XX`. This may offer some more insight in your Terminal 2 window. You can do the same for the force-close, just need to adjust the command slightly. For the record, I never had this situation, but it's not doing any harm in case you know it's a force-close anyway: `lncli closechannel --chan_point CHANPOINT:VOUT --force`. We can omit the target sat/vbyte setting since force-closes use the last agreed commit-fee of both you and your peer.\n\n### 4. Increase local Mempool size\nThis solves for a couple of things, both Scenario 1 and Scenario 2 above, at least as a preparation. Open your bitcoind-configuration with `sudo nano .bitcoin/bitcoin.conf` to lookup and edit the following entry to `2000`, which increases it to 2GB:\n```\n# Increase Mempool size\nmaxmempool=2000\n```\nRestart bitcoind (typically `sudo systemctl restart bitcoind` to take this setting into effect. And either LND already restarted by itself, or trigger a manual restart with `sudo systemctl restart lnd`. Watch Terminal 2, to see whether your 300MB previous mempool was too limited to accept your LND-closing. With 2GB, that limitation is lifted (a little) and potentially allows your LND to broadcast the closing-tx.\n\n### 5. Manually broadcast the closing-transaction\nEventually 4. allows your local mempool to pick up the closing transaction. Sometimes it doesn't. Or your mempool has it, but the public mempool didn't. Without either your bitcoind node, or the public mempools knowing about this tx, your channel can't get closed. In this event, let's look at how to broadcast it manually and see what response we get in both Terminals. \n\n 1. Local Mempool check: Follow Scenario 1. \n 2. If it's a *No*, does [mempool.space](https://mempool.space/) have it? Then open the tx there, and grab the RAW-tx by appending the txid here: `https://mempool.space/api/tx/[TXID]/hex`. Copy the whole long string, and execute the local broadcast in your Terminal 1 with `lncli wallet publishtx RAWTX`. \n 3. If that's a *No* too, check your LND, it should have it (only in rare circumstances, like SCBs, LND doesn't have the raw-tx: `lncli listchaintxns --start_height 818181 --end_height -1`. Substitute `818181` with the current mempool height to filter the transaction output **showing only not confirmed pending transactions** (utxos). You'll get the raw-tx there, and can use it with `lncli wallet publishtx RAWTX` as above.\n 4. If your local Mempool has it, but [mempool.space](https://mempool.space/) doesn't, there is no harm broadcasting it there as well. Follow Scenario 1 to retrieve the raw-txid from your local mempool, and copy it [in here](https://mempool.space/tx/push).\n\n### 6. Increase the closing-fee\nSo mempools know about your closing-tx, but it's way too low. Let's assume it hangs at 10sat/vbyte (like many pending closing-tx these days), but let's also assume we won't see <30sat/vbyte anytime soon. Because you'd always have the option to wait for 10sats, your tx will eventually confirm. But you don't want to wait, then you'll need to pay up.\nDisclaimer: This one is costing you. No matter who the opener of the channel was (who always pays for both un- and cooperative-closings), the next step costs *You*. So be concious about it.\n\nThe LND Guide linked above has a succinct [closing channels section](https://docs.lightning.engineering/lightning-network-tools/lnd/unconfirmed-bitcoin-transactions#docs-internal-guid-5647dd03-7fff-dc71-47cf-5f7e2155a44d). And since you inhaled that guide, you'll know the next steps:\n\n 1. For Coop-Closes, you can `lncli wallet bumpfee -h` to make yourself familiar with the options. It's pretty self-explanatory, `lncli wallet bumpfee --conf_target 6 CHANPOINT:VOUT` will ask your local mempool for a sat/vbyte target and set the new closing fee. With `lncli wallet bumpfee --sat_per_vbyte 36 CHANPOINT:VOUT`, you can set a confident 36 sats/vbyte yourself. Watch Terminal 2 and see what lnd.log tells you.\n\n 2. For Force-Closes, you need a so called CPFP (Child Pays For Parent) transaction, which will become a child of your existing closing fee, and at the same time expensive enough, that both parent + child and their fees will be attractive enough for a miner to pick up and mine it. You can either do some pre-calc [with a helper script](https://gist.github.com/TrezorHannes/9caa88cb8d287cc6ab6a9cb5fb892195), or try current mempool medium fee x 2. Not a problem if you don't start high enough, you can follow step 1. above here with this new child-transaction and bump it's fee with RBF any time later: `lncli wallet bumpclosefee -h` for the options:\n \n - `lncli wallet bumpclosefee --conf_target 6 CHANPOINT:VOUT` will ask your local mempool for a sat/vbyte target and set the fee for the child-tx.\n - `lncli wallet bumpclosefee --sat_per_vbyte 100 CHANPOINT:VOUT` will set the child-tx at 100, presumably ending up with 50 sats/vbyte effective rate for both your parent and your child to be mined.\n\nNote that none of this works if your local mempool doesn't have that txid. So follow steps 1-5 before trying this one.\nNow but if it worked, you'll be prompted with a new txid for your child, which you can later check in your local mempool, and ideally it'll land in the public mempools to be mined as well. If it ended up too low, bump it with RBF (replace by fee) described in point 1, but targeting your child.\n\n### 7. Go out of band\nJust for completion, there are various miners who offer their mining service for your tx for a hefty cost. This sometimes might be necessary, eg for your channels where the other side force-closed on you, but you only have a static channel-commitment. If your peer is unresponsive or not cooperative to do a CPFP on their side, you'll wait until forever. Check your favorite search engine, ViaBTC or [mempool.space](https://mempool.space/) for their acceleration services.\n\nHope you enjoyed this article. Please do share feedback and suggestions for improvement.\nIf this guide was of any help, I'd appreciate if you share the article with others, give me a follow on X [![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/HandsdownI.svg?style=social&label=Follow%20%40HodlmeTight1337)](https://twitter.com/HodlmeTight1337) or [nostr](https://njump.me/npub1ch25m5lkk8kfepr63f0jnpd9te8l9f585pfpr2g2ma4pre9rmlrqlu0yjy), perhaps even donating some sats to [hakuna@getalby.com](https://getalby.com/p/hakuna)\n\nI'm also always grateful for incoming channels to my node: [HODLmeTight](https://amboss.space/node/037f66e84e38fc2787d578599dfe1fcb7b71f9de4fb1e453c5ab85c05f5ce8c2e3)\n\nSee the [gist of it on my github](https://gist.github.com/TrezorHannes/7378c2f3ca5466ffcdafa6ab9ecd2e43).\n\n[^1]: For `umbrel`, you need to jump through some loops for the command `lncli` and `bitcoin-cli`. You need to add this whole string before: `~/umbrel/scripts/app compose lightning exec lnd lncli` and `~/umbrel/scripts/app compose bitcoin exec bitcoind bitcoin-cli` respectively. To simplify things, create a temporary alias with `alias lncli="/home/umbrel/umbrel/scripts/app compose lightning exec lnd lncli"` and `alias bitcoin-cli="~/umbrel/scripts/app compose bitcoin exec bitcoind bitcoin-cli"`, then all of the above commands should work.\n[^2]: Wonder what your channel-peers current commit-fee is? And whether they use anchors or static channel-fee commitments? Check out this [bash-script](https://github.com/blckbx/NodeTools/blob/main/anchor_check.sh), among other Node-Tools available as open-source. \N 19821 \N 443799 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 22.0757212943422 0 \N \N f 810973108 \N 9 127576147 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 411470 2025-02-21 12:48:39.223 2025-03-29 22:39:47.375 Have you ever fallen for a scam? \N \N 1549 \N 411470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6456439901054 0 \N \N f 22119239 \N 1 184128335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448805 2025-03-22 22:07:38.384 2025-03-29 22:39:47.375 Sunday Survey: If you had to go to only one BTC conference, which would it be? This is for 2024 \N 10016 \N 448805 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 17.8250052484331 0 \N \N f 407900749 \N 3 243853542 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 16:13:28.212 f \N \N \N 0 0 0 0 2 0 0 430619 2025-03-09 11:26:56.406 2025-03-29 22:39:47.376 Could large Bitcoin ETF investment cause a hard fork? *Achim Warner* gives a compelling argument that, if done on a large scale, ETF investment could bring about a hard fork.\n\nThe main pith of Warner's argument is that corporations ultimately might dismiss mining work as a necessary security feature, and just see it as an unnecessary expense:\n\n> there are now corporations with billions of dollars of investment in not just the asset, but the ecosystem. Mining is a huge economic drain on the system, and all it accomplishes is censorship resistance. If censorship resistance isn’t worth tens or hundred of billions or dollar per year to the corporations; they will find a way to end it.\n\nWell-written, thought provoking stuff.\n\nIs this likely? Could this be prevented?\n\nWarner's article is printed below.\n\n+ + +\n\n---\n\n# Bitcoin is dead (long live IBIT.) | by Achim Warner | Jan, 2024\n\nhttps://achimwarner.medium.com/bitcoin-is-dead-long-live-ibit-e420b99eb32e\n\n\nThe ETF approval confers some traditional legitimacy to the asset class, and allows billions of dollars (or maybe [$30 trillion according to Grayscale](https://www.nasdaq.com/articles/grayscale-ceo-foresees-spot-bitcoin-etfs-unlocking-$30-trillion-worth-of-advised-wealth)) in traditional investment to flow in from a wider pool. For those interested in Number Go Up this appears to be fantastic news. But if that $30 trillion actually does come in, it will destroy Bitcoin as we know it. It will fundamentally change the economics so that the game theory regime upon which Bitcoin was built will no longer be in effect. We won’t bother here to discuss the 180 Bitcoin’s ethos has done — fighting oppression vs building intergenerational wealth, because this pivot is obvious. Here we discuss the game theory.\n\nBitcoin takes on two very ambitious and distinct goals. One is to create a widely accepted store of value with a fixed programmatic supply. The other is to create a decentralized cash system. In the evolution of Bitcoin, these two objectives have played mostly hand-in-hand; the accepted viability of Bitcoin as a store of value creates a liquid market, while use of Bitcoin as electronic cash creates demand, which in turn gives Bitcoin value. At smaller scales the incentives are aligned.\n\nLet’s start with the former, the ideal of a global Schelling point for store of value. The existence of the Bitcoin blockchain is quite remarkable. The ledger apportioning bitcoin has slowly invaded all corners of the global economy, representing what has been described as a slow-moving immaculate conception. A centralized actor trying to create this from scratch would undoubtedly fail. The distribution isn’t perfect, but there’s no “fair” way to airdrop a new asset across the planet without doing something odious like eyeball-scanning. A slow distribution over 15 years is the best one could hope for. There seems to be agreement among diverse market participants that this thing is useful and desirable and that the appetite for shares in the ledger will persist in the future.\n\nIf we, “we” being everybody and anybody who is interested in such a thing, want there to be a fixed supply digital asset than can be traded as an ETF through our brokers, we now have this thing. It’s a unique occurrence that will not happen organically again. Note that, moving forward, the existence of this thing itself has nothing to do with how it is mined or how shares in the ledger are recorded. This is simply a Schelling point that everyone in the world who values a fixed supply asset can trade.\n\nGiven any cryptographic payment system, there are many methods for coming to consensus over the canonical ordering of transactions. The easiest and most efficient way is to choose a single entity for the task. Bitcoin mining is the opposite: clunky, competitive and expensive. The downside is that it’s costly. The upside is that it’s extremely difficult for any one entity to arrogate control over the ledger. Miners, who generally benefit from the popularity, have no desire to damage the ecosystem by colluding with other miners or otherwise trying to game the system with untoward behaviors. This is how the virtuous cycle began.\n\nTo bootstrap this virtuous cycle, we had to have Bitcoin’s initial use case: Peer-to-peer electronic cash. Money for those not well-served by the traditional financial system and those who want to be financially self-sovereign. The fact that the payments are censorship resistant is a backbone feature here: This property gives Bitcoin non-zero value, allowing people to begin trading and distributing it not just as something they can use to buy drugs, but soon also something to hold onto, and eventually, a speculative investment. An actual functioning censorship-resistant currency is worth something. This was the bedrock of Bitcoin’s value; if this fails, the Bitcoin experiment has failed.\n\nBut today, the necessary supporting role that has been played by censorship resistance has been usurped: this role is played by the linchpin of institutional demand, manifested in the ETF. The former is along for the ride, but only until it can be conveniently jettisoned.\n\nThink of Bitcoin like a papier maché piñata that you build from a balloon, paper and paste. To start the process, you need to inflate a balloon. Carefully, over time, you cover the balloon with paste-drenched strips of paper or string, adding layers, one at a time, pausing after each to let it dry, repeating the process, until the balloon is completely covered by a solid surface. Then, you pop the balloon and extract it from a hole in the bottom, which you can then fill with candy or whatever. In the initial stage, you must be very careful not to pop the balloon (don’t use a hairdryer!) if you do so the whole project will be a soggy mess. In the latter stage, once the papier maché has hardened, the balloon is just some extra thing you need to get rid of.\n\nAt this point, perhaps you are mouthing something about the Blocksize War, wondering if perhaps the author of this essay has not read it. Yes, in fact, several times and the author has even spent three weeks discussing it in a university course he instructed. There is no single lesson to be learned from Blocksize War; it was a complicated story, filled with blunders, turnabout, well- and poorly-played hands. The idea that the team that won in 2017 is forever the victor is silly. Just like winning the Super Bowl in 2017 did not confer the New England Patriots with eternal infallibility, the victory by the small-blockers in 2017 does not mean every future battle will have the same outcome. This is one of the most non-sensical tenets of Bitcoin dogma.\n\nIt is entirely worth looking closer at the Blocksize War and asking what we did in fact observe and what sort of realities do persist. The dominant takeaway seems to be that users — Bitcoin’s grassroots plebs, ultimately had the stronger hand. They flexed this muscle with the UASF, and eventually most of the corporations and miners on the large-block side capitulated. \nThere’s a crucial piece of game theory here. If large blockers had elected to call the bluff on the UASF, it probably would have been catastrophic for Bitcoin. The miners had capital investment they couldn’t stand to lose money on, so they had no choice but to swerve in this game of chicken. In 2017, without the support of the grassroots small-blockers and their decentralized ideals, Bitcoin would have faced a possibly disastrous constitutional crisis. In this sense, the users did have the upper hand. \nPart of the genius of Bitcoin is that it was designed with a failure as a possibility. To take the failure mode away fundamentally changes the game theory.\n\nWhat happens today? The locus of economic nodes has shifted drastically away from raspberry pi hobbyists and towards large financial institutions who are doing Bitcoin for Wall Street. When retail consumers, pension funds, sovereign wealth funds, etc., are buying shares in the fixed supply currency through traditional finance channels, they are cementing a demand for share in this ledger that doesn’t depend on its decentralized maintenance. If the ETF invites an influx of such investment, any cartel of corporations who would attempt a takeover can now safely ignore the threats of Bitcoin purists; these early adopters can no longer claim the be the crucial pillars propping up the system. If there is another game of chicken, Wall Street can stay the course. Would Michael Saylor sabotage his investment by dumping his stash because he doesn’t like a miner-backed OFAC enforcement? Wall Street is smart to call the bluff.\n\nIf Bitcoin becomes no more than an agreement by major financial players and their clients that tradeable entries in this ledger are valuable, it becomes less important how we keep track of who has what share, provided the process is efficient, predictable, and legible to regulators. The current Bitcoin mining process was designed to be the opposite. Basic forces of economics suggest this inefficiency eventually will be shed. \nEvery round in which institutional investors ape into the ETF is like another layer on the papier maché balloon. Enough of these and the balloon is no longer necessary.\n\nWhy not have 8 MB blocks? Or 256 MB blocks? The retail ETF investor buys shares because they believe that someone in the future will want to buy their share, presumably because these future investors in turn believe that a future demand exists for their share. This may very well be a good bet, but none of this self-fulfilling dynamic relies on the minutia of how the transactions are ordered. When registered market participants are trading shares through registered brokers, uninterested in double-spending or shielding activity from authorities, the mining process becomes an expensive and obsolete Rube Goldberg machine, at least as it applies to an economic preponderance of activity. The costs associated to mining leak billions of dollars out of the Bitcoin ecosystem. Without a clear reason for this expensive process to exist, the financial sector will seek to end it. A thriving ETF market, especially when celebrated by Bitcoin holders, provides a sturdy structure and leverage for this attack.\n\nTo put it simply, there are now corporations with billions of dollars of investment in not just the asset, but the ecosystem. Mining is a huge economic drain on the system, and all it accomplishes is censorship resistance. If censorship resistance isn’t worth tens or hundred of billions or dollar per year to the corporations; they will find a way to end it. When they do try to end it, they can point to the ETFs enduring appeal and ignore any constitutional brinkmanship from OG Bitcoiners who threaten to reject the new rules or sell their stacks.\n\nMining itself represents a huge arbitrage opportunity available to someone who can leverage capital or organize a cartel. Take Cathie Wood’s $1.5 M in 2030 case. This is over $100 billion per year vaporized in order to keep the network censorship-resistant, just counting the block subsidy. These same transactions could be processed for a microscopic fraction. If some entity can come in and monopolize the process and lower the difficulty without destroying the game, this is free money.\n\nIt’s a valid question to ask, how? You can’t just change the code or fire the miners, right?\n\nFirst note that there will be two sets of conversations going forward. One is the usual one, on Twitter spaces or other open venues, where we argue about the relative merits of OPCAT vs CTV as means to enable protocols that will make Bitcoin a self-sovereign option to billions of people. But there’s another set of conversations, which may have already begun, happening in private board rooms. These conversations we will not be shared with the rest of us. Think Dragon’s Den, but more like Vulture’s Roost. The folks in the Vulture’s Roost also want to make Bitcoin an option to billions of people, just without the self-sovereign part. Rent-seekers gonna rent-seek, and this isn’t simply about holding the asset and watching the number go up. It’s about re-intermediating the financial sector. \nSo for the next part of the exercise, put yourself in the Vulture’s Roost. What are your incentives? What tools do you have available to you? What risks are you trying to minimize? Who else is on your team? In the Vulture’s Roost, you are free to say without judgment things like “will noone bankrupt these turbulent miners?”\n\nThe goal from the Vulture’s Roost will be to destroy mining and replace it with an inexpensive cartelized process that routes all transactions fees directly to a small group of insiders (instead of towards miners’ energy bills) and puts insiders in positions to do insider things, like profit from rich data streams or fancy financial products.\n\nThe way to accomplish this is to signal that you are going to do it, then start doing it. Those who want to be part of your coalition are in. Those who want to fight it will eventually fall away to attrition. In this psychological game, you will slowly convince investors that not only is centralization inevitable, but it’s actually not-so-bad, after all. \nWe can assume that there are high fees on L1. If not, miners will eventually start to suffer (Number Geometrically Must Increase) and you can just buy them up as they go under.\n\nIn a high fee regime, your first goal will be to route as many transactions away from the decentralized mempool as possible. If you can just buy up 33% of the hashrate and start selfish mining that will be too easy, so we’ll assume a more difficult base scenario in which you can only start with 5% to 10%. This is still a block every couple of hours. You can contact any major institutional user of the blockchain, and broker out-of-band deals for blockspace. You can undercut the mempool by offering frequent users not only a discount, but an opportunity to shed fee volatility. You can even undercut the mempool openly with transaction accelerators priced below market rate. If you undercut the mempool market enough, you can begin to force many of the other miners out of profitability. You do this openly and brazenly: The goal is that any would-be home miner considering spending $20,000 on the latest ASIC will read the writing on the wall and think twice. \nHere it’s convenient that many of the transactions are brokered by corporations, not random self-sovereign people from around the world. It will be easier to capture a large of the transaction volume if most transaction volume is handled by major corporations or generally KYC’d high wealth individuals. But this isn’t a stretch; if fees are high, L1 Bitcoin won’t be an accessible means of peer-to-peer payment for most people.\n\nMost of the hyperbitcoinization scenarios assume that major institutions are willing to pay high fees to etch transactions into the blockchain. \nAt the same time, you can take advantage of the high-fee regime to build a side-chain network or other alternative means of Bitcoin accounting. All you really need to do this is put together a network with critical economic mass, backed by small amount of trust, but mostly backed by Delaware’s Court of Chancery. For example, a cartel of corporations can create a multisig UTXOs on the mainchain, and then create their own blockchain. This could be something as simple as Fedimint or Liquid, or mildly decentralized and creative like Ark, based on fancy things like timeout trees. You can create an entire permission-mined blockchain downstream of these UTXOs with 3 second blocktimes and 32 MB blocks. As long as nobody thinks the corporate block validators are going to rugpull (and get sued in a meatspace court), people can treat this like actual Bitcoin UTXOs. Anyone who wants to transact in a near zero fee regime can simply slide through certain access points over to this sidechain, saving perhaps millions of dollars in fees. For institutions who want to cut costs, this is a no-brainer. It’s orders of magnitude better than Lightning, and plus, if it goes wrong, you have someone to sue. The financial sector is too smart to sit around and pay billions of dollars of year in transaction fees. \nSo while we still may have a fixed supply of coins asymptotic to 21 million, the practical ways in which transactions are recorded will mushroom. The ETF is just the beginning of this process. Layer 1 fees will trend towards negligible, except for the few people who really need to fully self-custody and are willing to pay market rate for that.\n\nOnce you have moved a large volume of transactions away from L1 and towards the traditional financial sector, you can go after mining itself. Having starved the decentralized miner of much of their fee revenue, you next want to scare up enough hash power to force them out for good. At this point, you’ve been open about your intentions. Miners can see where this is headed and when you offer to buy them out, they say “yes,” or at least the rational ones do. After your cartel gets to 33% you can begin selfish mining, commencing the snowball phase towards 51%. After 51% is achieved you now have full control and can ease down the hashrate, turning it back on if necessary to break the will of any stubborn decentralized miners. Soon, hashrate is minimal but your cartel is still receiving the full block reward.\n\nBut wait! Won’t everybody abandon Bitcoin when you start selfish mining and everyone sees that you’re selfish mining? That’s exactly the point here. Once the retail and institutional ETF investors are propping up the price with their 1–5% IRA allocations, nobody cares.\n\nBut also wait! Won’t all of the miners fight back? The dynamics of wars of attrition, dollar auctions, and coalitional game theory come into play. The decentralized miners have no way to do selfish mining without coordinating somehow. If some subset of miners tries to selfish mine in retaliation, it will push all the anonymous miners out for good, making your job easier. Your job is to send a strong enough signal that you have centralized resources behind your back, and so will win a war of attrition. Once you send this signal, it’s a prisoner’s dilemma among the remaining miners: Walk away with the full value of your ASICs today, or get nothing in 6 months.\n\nYou haven’t broken any rules yet, nor pushed any hardforks. But after arrogating full control, you are free to hardfork at will. At this point it will be a formality. After years of telling people what you were going to do, and then doing it over the objections of the purists, The Hard Fork is just the final step. Not that you have to worry about blowback; the final step to permissioned 10 GB blocks will be widely celebrated as the next step in bringing sound money to everybody. \N 19966 \N 430619 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.47020024254881 0 \N \N f 584361013 \N 4 21818675 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 452624 2025-03-25 11:48:30.994 2025-03-29 22:39:47.376 How I think Worldcoin is going to pan out. This Worldcoin thing seems to have latched on and captured some buzz. Two weeks ago, I [wrote about why](https://stacker.news/items/214672) this is the case (it's mostly a somewhat-AI connection and the iris-scanning orb, with a touch of altruistic UBI thrown in). The question now becomes, "Does this Worldcoin thing have longevity or will this too pass?"\nAuroracoin flashback\n\nMonday I was jogging, listening to a crypto podcast, and sweltering in heat. The podcast hosts were talking Worldcoin, the orb, and possibilities of surveillance state actions. This was all kind of predictable as this has been the discussion of Worldcoin from the start. Yet, for some reason, I was reminded of Auroracoin. I felt I had figured out the intrigue of Worldcoin initially, but now, I think I've got this Worldcoin thing figured out going forward.\n\nTo back up, Auroracoin was intended as a cryptocurrency for the residents of Iceland. It came out in 2014, rather early in crypto-time, and I wrote [a post](http://satoshitimes.wikidot.com/blog:9) on it in a blog I called "[The Satoshi Times](http://satoshitimes.wikidot.com/)" (I've since chronicled each of the articles over to web3 on the Hive blockchain with the [@SatoshiTimes](https://hive.blog/@satoshitimes) account).\n\n![auroracoin-scene](https://imgprxy.stacker.news/75wKX3OSN1ma1LO8TuzYtUv8ZWYx0l5sCawjH8bpUgE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9maWxlcy5wZWFrZC5jb20vZmlsZS9wZWFrZC1oaXZlL2NycmRseC8yM3RiTUdRbXJnSGgxN045WEtZVmFaQUZlTFZQelMyZDVrYXBpbUpSc2NOVUZHVUNwYlJpWllZbnlTQU1tU0NYMTVmUUMuanBn)\n\n>Image created at https://leonardo.ai using prompt: aurora borealis iceland viking bitcoin\n\nThe [Auroracoin](https://en.auroracoin.is/) experiment was this: every Iceland resident was to get airdropped 31.8 coins. The intriguing thing about this is the island thing. Economists love islands. They love the isolation an island has and how and island has historically provided a unique playground in studying an economy. It makes for a contained, experimental atmosphere. In my original blog post, I theorized possible things Icelanders might do, such as: get the coins or not, hodl them, spend them, lose the keys, get them stolen. My thought then was that some people would wind up with fewer or zero coins, some would wind up with more, some would be gone forever. I'd forgotten this, but looking back, I see I drew and included a graphic:\n\n![airdrop.JPG](https://imgprxy.stacker.news/hXcPzRSbmKFhFFsQjy53hqT-RgWZtDH8SQUWwNsPoXY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9maWxlcy5wZWFrZC5jb20vZmlsZS9wZWFrZC1oaXZlL2NycmRseC8yM3N4TGd5NmlpWTg3dENodm5ZYU54U25qRXVZWXNnZjNrc0FFdEJVRXRyZUx5U2Jxb2F5QVBaWWhVR2p5d1ZqMkprTEouSlBH)\n\nOnce the airdrop went live and "price discovery" began, the chart began. The chart for Auroracoin started out strong, peaking at $28 per coin.\n\n![priceearly.jpg](https://imgprxy.stacker.news/Jie6T6Rk_30v_ivlsf2Zk9MJhAmT7h9u0_aN5jGb-Z4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9maWxlcy5wZWFrZC5jb20vZmlsZS9wZWFrZC1oaXZlL2NycmRseC8yM3RIYmtqVFB5TXRCOGJYbUdnZWdkQUxERlpiaEhmQVF3OHVXU3d2d1BkWTJyTlBOOFBMQ3VEWHh3VTRNRHNYcDVkR1UuanBn)\n\nWithin a week or so, the Auroracoin dropped quickly, had a little bump in the 2017-18 frenzy, then flatlined. It's now at $0.016 USD (see [current price](https://coinpaprika.com/coin/aur-auroracoin/)). Those 31.8 coins are now worth about half a dollar: $0.51.\n\n![pricealltime.jpg](https://imgprxy.stacker.news/yPlhcpBXHeTWgbykmnzV8xmL7cK3rEm-p2UaLdCLqko/rs:fit:600:500:0/g:no/aHR0cHM6Ly9maWxlcy5wZWFrZC5jb20vZmlsZS9wZWFrZC1oaXZlL2NycmRseC8yM3ZzckZ4Ym83SkFtNjFoOEFEd3F2d0ZoNW1SZFREY0d3aVdHb2FnVFJ2Ykp3TjFDbVZteXpacW50NnJ0UUNLcTJuS2EuanBn)\n\nThere was one thing I did not include in my flowchart list of possible actions, and it's a glaring omission...people might flip their Auroracoin for another coin, likely for BTC.\n\nI wrote a [followup post](http://satoshitimes.wikidot.com/blog:10) two weeks later and brought this point up. I wrote this:\n\n>The idea of an Iceland-only currency seems a bit wrong. Many Icelanders sold their coins to whomever. It's better labeled as a Icelander-first coin. Then, it's on the world wide web and is international. **The concept of a local-only coin seems futile**.\n\nThis illustrates the problem cryptocurrencies bring about with the island-studied-by-economists concept: crypto knows and follows no borders. Coins follow economic principles (and code), not lines on maps. It would have been true that, when buying/selling, more Auroracoins would wind up in someone's wallet as compared to others. But, the wise Auroracoin holders unloaded them quickly into BTC while Aurora had some decent initial value. The speculators who bought those early Auroracoins didn't come out too well.\nWorldcoin island\n\nWhat occurred to me while jogging Monday was this:\n\n```Worldcoin is just Auroracoin on a really big island, the Earth/world island.```\n\nHere's what I see happening with WLD:\n\nI believe 20 or so were given out, WLD is just under $2.00 now. Since WLD is focusing on developing nations, that $40 to $50 could mean food on the table for a family. The early recipients of WLD (see [current price](https://coinpaprika.com/coin/wld-worldcoin/)) might do well to flip it as fast as possible [not financial advice, DYOR].\n\nBut, the tokenomics and distribution of WLD do not look good to me. First, it's a bit hard to even find the tokenomics, emission, inflation, distribution, etc. on the WLD website, and that's a huge red flag in my book. Secondly, I understand it to be that each person who validates "personhood" via the orb will receive tokens as a Universal Basic Income (UBI). It's unclear to me if this UBI is in perpetuity, e.g. each month? each year? or if it's a one time only airdrop. If it's a perpetual UBI (isn't that the whole point of UBI, else it's just called a one time gift?), that really bodes poorly for WLD in my view.\n\nA continual UBI to anyone validated would mean a few things. First, there would be constant, persistent downward pressure on the value of WLD tokens. In other words, there would be **constant emission and inflation**. Like trying to top-off a bucket with water although the bucket has a gaping hole in the bottom, it's hard to get ahead that way. Secondly, as more and more people proved their personhood (which would happen if WLD had any value), that downward pressure would constantly grow even greater. It would be a Catch 22...the greater the WLD value, the more **incentive for people to prove personhood**, get their UBI, and thus create even more inflation (i.e., less WLD value). Third, although the main premise of the orb and WLD is to prove personhood, people have an amazing capacity for **working the system**. If something has value and is being given out, people find ways to clever ways to finagle it. I'm very skeptical that just because an eyeball was scanned, pilferage or scammery would not occur. Again, if WLD was worth the effort, people would find a way to get it. Again, Catch 22, the greater the WLD value, the greater the chance for bad actions. And, the greater the inflation and downward pressure on value.\nIn sum\n\nI did one last followup on Auroracoin [a year later](http://satoshitimes.wikidot.com/blog:_start/p/4). I see the same fate with Worldcoin. When you strip away the popular chatter about AI, the orb, and UBI (and this chatter will decline), the economics and incentives behind Worldcoin are the only things that matter. And, in my view, the economics and incentives do not look good for WLD. My guess...it will fade.\n\nFor fun, one more image...\n![viking-ship](https://imgprxy.stacker.news/oJJn7XqVVYw2vC7ZDSTwoKDI_ENp2ALo4x70LLNN6Ww/rs:fit:600:500:0/g:no/aHR0cHM6Ly9maWxlcy5wZWFrZC5jb20vZmlsZS9wZWFrZC1oaXZlL2NycmRseC8yM3R2QjNKcTJqdk44eVBnUGpkNU44ckJadmttR2JGOVdicEYyTkNtUkxNRlY3WVhTdUVtUm9xenNqNEYzelZDZVZrMkUuanBn)\n>Created at https://leonardo.ai with prompt: A viking ship sails through a shimmering aurora borealis, its sails adorned with a cryptocurrency symbol.\n\n\nOriginally posted at https://hive.blog/@crrdlx/how-i-think-worldcoin-is-going-to-pan-out \N 12188 \N 452624 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 8.21372436114792 0 \N \N f 183404702 \N 2 225559457 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 239231 2024-09-17 10:47:08.095 2025-03-29 22:39:47.375 Introducing Bisq 2 | Video tutorial \N https://youtu.be/T583ogprpkM 16970 \N 239231 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.97366681448175 0 \N \N f 503983552 \N 4 194405693 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435002 2025-03-12 11:53:15.622 2025-03-29 22:39:47.375 Turn your project into the next Bitcoin Startup and a chance to win $15K BTC \N https://bitcoinmagazine.com/industry-events/pleblab-announces-topbuilder-a-unique-bitcoin-competition 1785 \N 435002 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.3428373829837 0 \N \N f 544549044 \N 3 50740844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 08:01:24.062 f \N \N \N 0 0 0 0 1 0 0 188308 2024-06-23 08:07:00.23 2025-03-29 22:39:47.375 Potential for new bitcoin adoption - YouTube banning Firearms Advertisement Bitcoiners have been saying this for a while. The firearms community needs to adopt bitcoin before they have no other options. Few have headed this advice. I went to YouTube today a saw a video from a very popular firearms training channel called Hickok45. The released a video titled [Bad News - YouTube](https://www.youtube.com/watch?v=-KWxaOmVNBE) where they let their subscribers know about the uncertainty of their future due to YouTube's new policy banning firearms advertising.\n\nYouTube is of course within their rights to do this but that's not a solution to the problem. The problem goes deeper. Credit card processors and companies as well as banks have and could increase their censorship of firearms purchases. Bitcoin fixes this.\n\nAs far as the video hosting problem there are other platforms that will likely open their doors to these trainers and educators but that isn't good enough. Nostr is new but I see it as the most hopeful solution coupled with bitcoin over lightning. Over the past week I've been experimenting with [satellite.earth](https://satellite.earth/) CDN file hosting service. I've been pretty impressed by it. Its very new but it seems like a real solution to the file hosting centralization problem for Nostr.\n\nI've tried in the past to make the case for bitcoin to gun owners and few seem to see the problem. I think this is largely due to their faulty belief in the state. There are some companies that have adopted bitcoin. The only one that I'm aware of is [Fenix Ammunition](https://fenixammo.com/). Anyone aware of others? \N 13921 \N 188308 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.4547744630084 0 \N \N f 498618944 \N 8 172194067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413675 2025-02-23 12:29:42.085 2025-03-29 22:39:47.375 Set up a self-sovereign Bolt Card with your own node ## Tools used\n* Card: NXP NTAG424 DNA https://zipnfc.com/nfc-pvc-card-credit-card-size-ntag424-dna.html\n* Raspiblitz node running:\n* Core Lightning\n* LNbits with the Bolt Cards extension\n* Boltcard NFC Card Creator Android app\n\n## Preparation\n\n### Run the latest experimental version of Raspiblitz\n* `menu` -> `PATCH `\n* `REPO`: rootzoll\n* `BRANCH`: dev\n\n### To update LNbits to the latest commit in the master branch\n* Run: \n`config.scripts/bonus.lnbits.com sync`\n\n### Expose LNbits on a public domain\n* can use a cheap, minimal VPS tunneled from the node with Tailscale\n* point an A-record with a subdomain to the public IPaddress of the VPS\n* download Tailscale on the node and the VPS: https://tailscale.com/download/linux\n* log in on both (consider using a dedicated github account)\n* on the VPS set up nginx to forward a subdomain to the TailscaleIP:LNbitsPORT on the node: https://github.com/openoms/bitcoin-tutorials/tree/master/nginx\n\n### Download the Boltcard NFC Card Creator Android app\n * https://play.google.com/store/apps/details?id=com.lightningnfcapp\n * https://github.com/boltcard/bolt-nfc-android-app\n\n\n## Steps to set up a Bolt Card\n* open LNbits on the public domain\n* create a wallet and save the link \n* add the Bolt Cards extension (to serve the boltcard API)\n* open the extension and create a bolt card\n* scan the QRcode with the keys with the Boltcard NFC Card Creator app\n* write the keys on a blank card by touching it to the phone\n\nThe setup of your bolt card is complete!\n\nDon't forget to fund the LNbits wallet backing the card to be able to pay.\n\n## Test\n* Breez\n* Wallet of Satoshi (didn't work for me)\n* NFC enabled webwallet like the LNbits TPOS: https://clnbits.diynodes.com/tpos/gyZytJ3eLygXbe7EsJoi8C\n* NFC enabled PoS terminals\n\nResources:\n* https://github.com/boltcard/boltcard\n* https://github.com/boltcard/bolt-nfc-android-app\n* https://github.com/lnbits/lnbits/tree/main/lnbits/extensions/boltcards\n\n\nPlease comment with your suggestions and experience! \N 1145 \N 413675 \N \N \N \N \N \N \N \N news \N ACTIVE \N 21.3182185577892 0 \N \N f 2725381488 \N 21 135516005 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 450320 2025-03-23 21:24:46.965 2025-03-29 22:39:47.375 United Healthcare CEO Shot & Killed The shooting occurred just before an investor meeting. It looks like a targeted assassination. https://nypost.com/2024/12/04/us-news/ceo-of-unitedhealthcare-fatally-shot-outside-of-hilton-hotel-in-nyc-in-possible-targeted-attack-sources/ 3304 \N 450320 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.619267019926788 0 \N \N f 17992315 \N 1 220174034 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443412 2025-03-19 10:38:11.709 2025-03-29 22:39:47.375 Is Lightning a Big Fat Target for the State? Is it more likely for Lighting to be attacked by states vs on-chain?\n\nHere's what I am thinking about. \n\n* Lightning is far more private\n* Many services including on/off ramps, miners, and merchants are using it or planning to\n\nI think it would be pretty much impossible for a state to stop peer to peer lightning transactions but I could see them going after Strike, Brains, and any business using Lightning due to the privacy implications. \n\nStill thinking about this. I'm sure plenty of you have already thought this through with your game theory hats on. \N 6058 \N 443412 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 26.2242716709495 0 \N \N f 28385656 \N 1 52475029 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 03:57:58.423 f \N \N \N 0 0 0 0 1 0 0 413002 2025-02-22 19:42:21.659 2025-03-29 22:39:47.375 High fees: Be careful what you wish for It's no secret that Ordinals and Stamps are making the fees go to the moon, they are so high right now that the median fee to be included in the 6th pending block (1 hour away from now) is 200sats/vByte, around 45200 sats in transaction fees if you're spending a 1 input 1 output segwit UTXO, or roughly 17.5 € at the time of writing (December 117th 2023 - Block height: 821656) . In what started as a means to do something new with Bitcoin, has spiraled into making Bitcoin unusable to the average Joe, a bunch of conspiracy theories on how this is "a Nation estate sponsored attack" and the wackiest wars ever fought: in one side you have a bunch of idiots in Wizard costumes telling everyone that they can do whatever they want with their money and in the other side a religious fruitcake that has been accused of eating cats trying to limit what people can do with their money. And in the middle of all this shitshow, it's us the plebs, the people who now can't spend their own money because it's too expensive to move of that have resort to trusted 3rd parties to do the heavy lifting.\n\nHow many times have you checked the mempool just this week? 1 time? 10 times? 100 times? Was that enough, or do you need to check it another 10 times Anon? It's not like you can afford to spend your money right now anyways.\n\nThe situation right now is sad, really sad, you see people losing half of their hard earned money on a LN channel closure, trusting a 3rd parties to hold their trustless money, we went from "Not your keys, not your coins", "remove your coins from all custodians immediately" and "never reuse an address" to "Wallet of Satoshi is great", "Pressure your exchange to accept Bitcoin on Liquid" and "Make all your UTXOs bigger than 1M sats, or even better, have all on a single UTXO because you might never be able to spend it" real quick, so now, the same people who were pitching self-custody, multiple keys and never resusing UTXOs, the same people who bashed cryptobros every time the federation who held the keys of their favorite layer 2 rug pulled everyone, and who said that Bitcoin would bank the unbanked, are now pivoting to recommending a trusted federation as the holder of their money until it becomes economically viable to move and are telling everyone that they'll never be able to use the trustless system, only trustees.\n\nNow, let's be real for s second, while I find Ordinals and Stamps to be a waste of resources, pure gambling, speculation and overall an extremely stupid way to burn money, I won't even try to stop them, it would be against myself to do so, I support freedom, even the freedom to make stupid decisions, and although this fad will pass, but the problems will stay and something must be done to tackle them, we need better solutions than what we have right now.\n\nThis is the result of keeping Bitcoin unchanged for the sake if keeping it unchanged, ironically but nut surprisingly, the fear of change has led us to needing a change. This is what we all wished for, a fee market and only a few players using the chain.\n\nI know this might sound as a Mike Hearn moment but it isn't, I won't be leaving Bitcoin and selling it all, and even if I did, it wouldn't matter, I'm a nobody. But if there's anything to learn from everything that's happening is that Bitcoin needs a change, and it doesn't matter what do you think, Bitcoin will change, and this new war is evidence that it will happen.\n\nI'm really glad all this debacle is happening because it stress tests the strong beliefs held by many Bitcoiners, it stress test the strength of decentralization and it stress tests market dynamics, this is not a war sponsored by a nation estate, this is the market fighting puritanism and extreme caution, it's a war on the absolutely stupid cult-like behavior of many so called Bitcoin maximalists, which is willing to give away Bitcoin to trustees as long as Bitcoin doesn't change, and it won't be won by them, nor will be won by the people who only want to trade JPEGs. In the end, the only winner in all of this will be Bitcoin.\n\nOringinal post in my personal blog: [https://frverdeja.substack.com/p/high-fees-be-careful-what-you-wish](here) \N 2776 \N 413002 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.2158276248614 0 \N \N f 221099377 \N 1 45950788 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448953 2025-03-23 02:38:01.429 2025-03-29 22:39:47.376 POLL: What "qualifies" as Bitcoin adoption? How far must a newcomer go to be considered a _real_ adopter of Bitcoin?\n\nWhat do you think? Are we "settling" for less, as some bitcoiners may think?\n\n![Screenshot 2023-11-24 at 12.20.58 PM.png](https://m.stacker.news/5814)\n\nHow would you define Bitcoin adoption, in the most basic sense? \N 13987 \N 448953 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 29.2248649756652 0 \N \N f 432094663 \N 3 155805872 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 20:29:04.475 f \N \N \N 0 0 0 0 1 0 0 454731 2025-03-26 15:11:23.773 2025-03-29 22:39:47.376 Wrong? Early? I’m Not Sure Seeing the global economy collectively rejoice after Mr. Powell’s interest rate remarks today made me realize how bad my estimates of the economy have been over the last few years.\n\nEver since the money printers kicked into high gear in March 2020, I’ve had a strong suspicion of widespread impending trouble. I suspect many Bitcoiners have.\n\nSome days I’d convince myself real estate was bound to crash, other days I convinced myself inflation couldn’t be tamed, and even prior to all the money printing I had convinced myself it wouldn’t even be possible for interest rates to rise this high given the high debt loads in major economies. \n\nMany Bitcoiners shared these views at one point, but all of them have been wrong so far.\n\nNow that rates are falling along with inflation, it seems like the worst of the economic issues are behind us… and I’m finding myself pleasantly surprised that it hasn’t been all that bad.\n\nNow, I don’t mean to imply that no bad stuff happened over the last four years, and there are a lot of issues we’re still not “out of the woods” on yet, but the doomsday predictions I once held certainly haven’t arrived yet.\n\nMaybe Powell is just kicking the can down the road again by signaling for lower interest rates (and more money printing), but it’s hard for me to deny that he’s done a good job keeping the economy together… and both can be true.\n\nOne more thing I under-appreciated over the last few years is that humans are incredibly resilient. \n\nDespite the severe restrictions, erratic inflation, and economic uncertainty of the last few years, most people seem to have just tightened their belts and kept chugging along.\n\nOn the one hand, it’s amazing how resilient humans are, but on the other, it’s concerning how few people have stopped to think “wait a second, all this money printing doesn’t seem right… i better find an alternative system”.\n\nIn short, I’m not sure if my past beliefs of economic chaos were wrong, or early… but I’m pleasantly surprised they haven’t been proven right yet.\n\nCurious to hear honest reflections from other stackers about your economic predictions over the last few years… what did you get right and what did you get wrong? \N 21119 \N 454731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1971873490602 0 \N \N f 17814619 \N 2 35009010 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1499 2022-09-17 05:48:12.1 2025-03-29 22:39:47.376 Official Website of the Open Source Miners "Bitaxe" The BitAxe is a fully open-source ASIC Bitcoin miner.\n\n+ They have sold more than 2500 devices\n+ They pioneered the first pool with net negative fees\n+ They have a strong community, primarily on Discord and Twitter\n+ Currently testing six ASIC chips working in parallel on a single device.\n\nHere's a German podcast that delves into the topic:\nhttps://nodesignal.space/2024/03/23/nodesignal-talk-e174-bitaxe-open-source-bitcoin-mining/\n\n![GJMrvNlWUAEftTA.jpg](https://m.stacker.news/23391) https://bitaxe.org/ 19512 \N 1499 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.29883123567592 0 \N \N f 157685667 \N 1 149722443 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417003 2025-02-26 01:21:42.112 2025-03-29 22:39:47.376 How have you changed in the last 5 years? I spent some of this morning stalking a few old friends on social. Part of what struck me was how little most of them (and how significantly some of them) have changed. It's like people vary in the ability to self-edit.\n\nHave you changed in the last 5 years? \n\nHow? Any thoughts as to why you changed?\n\nDo you have any plans for how you'd like to change in the next 5 years? \N 14213 \N 417003 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.1406798443382 0 \N \N f 14663180 \N 1 92046271 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455120 2025-03-26 18:47:07.83 2025-03-29 22:39:47.376 Lightning Payments - When Are They Too Small To Secure? \N https://blog.bitmex.com/lightning-payments-when-are-they-too-small-to-secure/ 7674 \N 455120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3038091740527 0 \N \N f 168351850 \N 1 32012326 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443201 2025-03-19 06:46:29.217 2025-03-29 22:39:47.376 What's the easiest way to get a notification when the mempool frees up? I want to make sure not to miss the next consolidation opportunity.\n\nI also don't want to receive too many notifications (noise vs signal). \N 20523 \N 443201 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 20.1728705251536 0 \N \N f 131651239 \N 1 98579134 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402355 2025-02-13 17:36:44.006 2025-03-29 22:39:47.376 What would Bitcoin "Failing" Look Like? Somewhat inspired by a recent discussion of what does hyperbitcoinization look like, what would be signs of the opposite having happened? Feels like there's a wide range of possible definitions... \N 18731 \N 402355 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.2325628221048 0 \N \N f 85151453 \N 1 241981082 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434124 2025-03-11 16:02:59.509 2025-03-29 22:39:47.376 Dark-LN Releases Preimage Stealer \N https://github.com/dark-ln/preimage-stealer 20734 \N 434124 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.901120895697 0 \N \N f 97254010 \N 2 121670218 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 09:56:58.289 f \N \N \N 0 0 0 0 2 0 0 437971 2025-03-15 04:14:19.91 2025-03-29 22:39:49.237 \N Kids have been working on this all week. Last week's fact was from my 13 year old but this week we are stepping it up. Today's fact is from my 5 year old, which she learned from her abcmouse lessons. \n\nKiwi birds are the only bird with nostrils at the end of its beak. \n\nHomeschool your kids folks! https://example.com/ 9969 437967 437524.437580.437967.437971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3976279400445 0 \N \N f 0 \N 0 224477195 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451275 2025-03-24 13:27:10.163 2025-03-29 22:39:49.237 \N ## We've updated our Privacy Policy\n\n![](https://imgprxy.stacker.news/4sgd9Kd66_iULmMCvCNd-4yfmie4Y7y33EioDje-yWI/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS9mNTM0ZGNkMjVlZWJkMzU3NDUxY2ZkYzI5YzdkZGEwY2Y4YzcxYjk1ZTEyMDU3NGYwNGRiNjM1OTMwNGY1MWNiLmpwZw) https://example.com/ 15703 451261 451177.451261.451275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3103420786514 0 \N \N f 0 \N 0 188299239 0 f f \N \N \N \N 451177 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402375 2025-02-13 17:50:11.951 2025-03-29 22:39:49.237 \N Oh @Siggy47! Absolutely blown away by this text about my work. The best description anyone has written! Thank you so much for all you do! https://example.com/ 16571 402364 402105.402364.402375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1512732925962 0 \N \N f 0 \N 0 116854310 0 f f \N \N \N \N 402105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431232 2025-03-09 16:05:17.793 2025-03-29 22:39:49.237 \N 1. I think a regular call would be good, to share things like major updates, road map, upcoming events, etc. I know a lot of this gets posted in ~meta, but a live forum could be nice, too.\n\n2. I feel the directon of SN is very much community-driven. There are many feature requests posted in ~meta, and in general discussed in comments all over the site. While directing developers to GitHub to log feature requests or bug reports works well, I don't think a stacker should have to have a GitHub account to make suggestions or offer feedback. That being said, I think a first-class mechanism within SN to submit feature requests, bug reports, and _vote_ on them as a stacker seems like a good idea. This would allow the community to express their opinion on what they'd most like to see, without having to leave SN.\n\n3. I think @k00b has already started doing this, but just setting expectations around PR feedback is good. It could take a while for a small team such as SN's to review PRs, so just ensuring contributors are aware is helpful.\n\n4. A prioritized backlog of items for contributors to pull from would be nice. I don't think that should limit what contributors can work on, but it might help contributors find something meaningful to work on.\n\n5. Related to (4) above, if the backlog could also be annotated with things like `Good First Issue` to help onboard new contributors, that would also be good I think.\n\nI'll add more comments if I think of anything else https://example.com/ 18225 396641 396641.431232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.61820361954426 0 \N \N f 0 \N 0 124584624 0 f f \N \N \N \N 396641 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404662 2025-02-16 04:47:39.811 2025-03-29 22:39:49.24 \N I'm very excited about the launch of this paper which is part of a project Robin and I have been working on together. Today I hope to launch a demonstration that you can use bitcoin to compute a 64 bit division function. https://example.com/ 11378 404661 404661.404662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0950258985977 0 \N \N f 0 \N 0 231391537 0 f f \N \N \N \N 404661 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415276 2025-02-24 16:39:50.543 2025-03-29 22:39:47.376 SN Saturday Newsletter 7/27/24 Late Edition Happy Sat-urday Stackers,\n\nMany of us thought the orange man was shot with an orange pill but it only grazed him. I didn't summarize these this week 'cause it's already late enough. Have a great Sunday!\n\n##### Top Posts\n1. [Joe Biden withdraws his nomination for the 2024 presidential election.](https://stacker.news/items/616665)\n - 3.2k sats \\ 171 comments \\ [@TomK](https://stacker.news/TomK)\n2. [Punishment is a Public Good](https://stacker.news/items/619793)\n - 103.3k sats \\ 129 comments \\ [@Undisciplined](https://stacker.news/Undisciplined)\n3. [🔮 Stackers Predict: August 2024](https://stacker.news/items/615953)\n - 7.1k sats \\ 125 comments \\ [@itsTomekK](https://stacker.news/itsTomekK)\n4. [Introducing Proton Wallet – a safer way to hold Bitcoin | Proton](https://stacker.news/items/620676)\n - 3k sats \\ 48 comments \\ [@plebone](https://stacker.news/plebone)\n5. [StatechainJS: fast & free bitcoin transactions -- like ecash but a bit safer](https://stacker.news/items/619667)\n - 13.4k sats \\ 21 comments \\ [@supertestnet](https://stacker.news/supertestnet)\n\n##### Don't miss\n- [Trump Promises - Bitcoin Nashville 2024](https://stacker.news/items/625076)\n- [CASCDR Update: YouTube Crackdown -> Adapt & Overcome](https://stacker.news/items/621497)\n- [REVEALED: Here's the Cellebrite Premium Device Support Matrix for July 2024](https://stacker.news/items/616858)\n- [When is good enough, good enough?](https://stacker.news/items/621460)\n- [Musk Toying With Bitcoiners Again?](https://stacker.news/items/623422)\n- [Secret Service Director Cheatle resigns after Trump assassination attempt](https://stacker.news/items/619436)\n- [My Fantasy](https://stacker.news/items/624830)\n- [What A Trump Presidency Means for Bitcoin](https://stacker.news/items/617730)\n- [Operation Saylor - Episode 25/120](https://stacker.news/items/622095)\n- [Lightning Labs Announces TapASS Shitcoins on Mainnet](https://stacker.news/items/619496)\n- [Welcome Alby Hub ✨Lightning Sovereignty For Everyone](https://stacker.news/items/620793)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Incentivizing Downzapping](https://stacker.news/items/621288)\n- [PSA - you should add backup authentication to Stacker News TODAY](https://stacker.news/items/618375)\n- [SN release: wallets as plugins, referral fixes and more](https://stacker.news/items/618248)\n- [Low value, throw away comments - why are they made?](https://stacker.news/items/619397)\n- [Secret Sauce of SN’s Success](https://stacker.news/items/622904)\n- [Golden Oldies #5](https://stacker.news/items/619246)\n\n[**all meta**](https://stacker.news/~meta/top/posts/week)\n\n-------\n\n##### Top Stackers\n1. [@Undisciplined](https://stacker.news/Undisciplined): 194.4k sats stacked\n2. [@k00b](https://stacker.news/k00b): 116.5k sats stacked\n3. [@Rsync25](https://stacker.news/Rsync25): 78.4k sats stacked\n4. [@grayruby](https://stacker.news/grayruby): 77.8k sats stacked\n5. [@Bell_curve](https://stacker.news/Bell_curve): 74.4k sats stacked\n\n------\n\n##### Top Spenders\n1. [@k00b](https://stacker.news/k00b): 282.9k sats spent\n2. [@frostdragon](https://stacker.news/frostdragon): 100.4k sats spent\n3. [@oracle](https://stacker.news/oracle): 100k sats spent\n4. [@grayruby](https://stacker.news/grayruby): 75k sats spent\n5. [@Bell_curve](https://stacker.news/Bell_curve): 63.7k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 427 days\n2. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 324 days\n3. [@Undisciplined](https://stacker.news/Undisciplined): 306 days\n4. [@OneOneSeven](https://stacker.news/OneOneSeven): 299 days\n5. [@BlokchainB](https://stacker.news/BlokchainB): 285 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw, \nKeyan \nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 14503 \N 415276 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.49888000717546 0 \N \N f 210242829 \N 1 117012079 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 425873 2025-03-05 08:47:37.373 2025-03-29 22:39:47.598 Privacy, Executive Order 6102 & Bitcoin SN has hosted a [number of discussions](https://stacker.news/search?q=6102) about the historical precedent of the US Govt seizing gold via order 6102. The motivation for asking this question is: could history repeat itself, except w/ btc as the seizure target?\n\nAdd this writeup by Stevhen Lubka of Swan to that literature. This one is more hopeful than many:\n\n> What protections could Bitcoin offer against this tyranny? Surely, gold fell prey to such a draconian measure due to its lack of portability and concentration in large silos. Have no fear! For I am here to tell you of the many reasons we shall not see a repeat of EO 6102, and where freedom-minded Bitcoiners should direct their watchful eyes instead.\n\nWorth a read. https://www.swanbitcoin.com/privacy-executive-order-6102-bitcoin/ 2327 \N 425873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0801614067553 0 \N \N f 348043005 \N 3 101557069 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 429642 2025-03-08 13:48:04.773 2025-03-29 22:39:47.598 UTXO consolidation strategies? Saw this good reminder tweet from Wicked on Twitter/X. \n\nhttps://x.com/w_s_bitcoin/status/1813309687799926792?s=46&t=opFMGEQXdk09WvPsXf4z6g\n\nHe suggests minimum UTXO size for single sig of 1M sats and 2M sats for multi sig. \n\nI haven’t consolidated in awhile and have a lot of sub 1M sat utxo’s from DCAing. What are stackers best strategies. Previously I was just generating a new receiving address and sending all the sats in a given wallet to it. Anyone have a better method? \n\nSats for all,\nGR \N 12169 \N 429642 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 2.47304213006757 0 \N \N f 106861614 \N 1 186223008 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449027 2025-03-23 05:20:57.784 2025-03-29 22:39:47.598 Reflex - Payment Operations and Analytics Tools by Amboss \N http://rpo.dev 641 \N 449027 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.365187858724 0 \N \N f 1092056082 \N 7 178165772 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 106095 2023-12-31 19:04:34.728 2025-03-29 22:39:47.6 What are bitcoin's adjacent technologies? Imagine you were seeding a new institution with a mission intended to (among other things) promote the growth and development of the next generation of shadowy super coders and their brethren, outside mainstream education.\n\nThere are some social and technical skills which make persons higher (skill) value to the Bitcoin network. Some examples might be: animal husbandry, heavy equipment repair, culinary, small farming, project management (??), self-directed learning... (what else?)\n\nThe school operates in a jungle environment, outside the US. It's largely off-grid. There aren't any grades or off-the-shelf curriculum, but it may offer certificates down the road.\n\nWhat skills or potentials would you look for in candidates to participate in the first and second semesters of the shadowy cyber school?\n\nThanks in advance for any support in the development of these thoughts. The school is happening somewhat organically and it would be great to get input from SN which can be used to help direct the thinking of the founders. Any and all input is appreciated. \N 733 \N 106095 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 2.62967643691468 0 \N \N f 84376743 \N 1 246687765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437314 2025-03-14 12:41:18.746 2025-03-29 22:39:49.237 \N Forwarding the announcement post from our discord:\n\nSatlantis Community,\n\n\nFirst of all I want to thank you all for playing and supporting Satlantis for nearly a year now.\n\nMojang, the developers of Minecraft, have contacted us stating that we must remove the play-to-earn functionality from the server. \n\nWhat does this mean for the future of Satlantis?\n\nThis sucks. There’s no getting around that. But,\n\nSATLANTIS WILL LIVE ON\n\n“The Game That Shares its Profits with Players” works. And it works well. All of the time, money, and energy that we put into this game together will not be forsaken by a few dinosaurs at some conglomerate. We will be porting the Satlantis community to a platform that encourages innovation, instead of stifling it. We are currently exploring platform options and I will keep you all updated in regards to that.\n\nWhat does this mean for you, the player?\n\nWe will continue to do right by the players that make this all possible. All of your sats in-game will be honored. Please submit your withdrawals and I will work through the weekend to ensure they are processed. All of your ASICs will be ported to the new platform, as well the prize pool, your premium battlepass status and all other progress and data that is possible to transfer.\n\nThe minecraft server itself will continue running(without any pay-to-earn functionality) for the foreseeable future. This is to ensure the transition to our next game platform is as smooth as possible and allow you all to continue enjoying the great world you’ve built.\n\n\nStay tuned to our discord for further updates. https://example.com/ 11091 437281 436837.437281.437314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3676185906367 0 \N \N f 0 \N 0 116717947 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408380 2025-02-18 18:30:33.058 2025-03-29 22:39:49.237 \N ![](https://www.zapread.com/i/9P0) https://example.com/ 20280 407961 407470.407699.407961.408380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9255640626002 0 \N \N f 0 \N 0 54091763 0 f f \N \N \N \N 407470 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431107 2025-03-09 15:28:05.596 2025-03-29 22:39:49.24 \N A big thank you to all donors and the appreciation I get from all of you here!!\n🧡 https://example.com/ 8472 413332 413332.431107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.15958679180682 0 \N \N f 0 \N 0 156927847 0 f f \N \N \N \N 413332 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401553 2025-02-13 06:34:18.459 2025-03-29 22:39:47.602 WSJ | Binance Founder Changpeng Zhao Agrees to Step Down, Plead Guilty \N https://www.wsj.com/finance/currencies/binance-ceo-changpeng-zhao-step-down-plead-guilty-01f72a40 11477 \N 401553 \N \N \N \N \N \N \N \N crypto \N ACTIVE \N 1.01367700579697 0 \N \N f 187563843 \N 2 200357358 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442515 2025-03-18 15:53:21.415 2025-03-29 22:39:47.601 Interactive Batching with Payjoin is Better \N https://payjoin.substack.com/p/interactive-payment-batching-is-better 16284 \N 442515 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 14.0645589847051 0 \N \N f 30464213 \N 1 35980547 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433805 2025-03-11 12:09:12.857 2025-03-29 22:39:47.602 What do you know about zaprank? I was today years old when @davidw enlightened me that if I hover my cursor over the total number of sats gained for my post on my laptop, I would be able to find out the number of Stackers who zapped me for it.\n\nAs Phoebe Buffay from F.R.I.E.N.D.S would exclaim, “This is brand new information!”\n\nI almost exclusively use SN on my mobile; perhaps that’s why I never thought about such things.\n\nAnyway, I know how the zaprank is derived is clouded in a lot of mystique. We Stackers don’t know the algorithm. Though @ek once said that 10 Stackers zapping you 100 sats each will give your post a higher zaprank than one stacker zapping you a thousand sats.\n\nArmed with this information, I checked out the total number of people who zapped me for my top 3 posts ever. It turned out that the average number was about 30. \n\nI don’t regret the way I posted and commented during Million Sats Madness. But if I were to be strategic about this in the future, I would ask myself one simple question, “**Would 30 people like this post enough to zap it?**” I think it would inform my writing considerably. \n\nI’m not a techie person, so I guess I would write on **parenting topics** haha.\n\nAnyway let me lead the way in crowdsourcing the hive mind and demystifying the zaprank. What do you know about it? \N 14258 \N 433805 \N \N \N \N \N \N \N \N art \N ACTIVE \N 28.4129606635183 0 \N \N f 18810544 \N 1 150947804 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422258 2025-03-02 10:47:38.962 2025-03-29 22:39:47.599 start a meetup today (originally note1ey5mg077qxeuyaf9qk2f0fgn3m9v4mtn5zpgcpj2g2d7928udv4s2txh2z)\nIf you’re a Bitcoiner and there are no meetups around you.\nSTART ONE. Bitcoin is a social network too and every Bitcoiner is a node that should make connections.\n\nHere’s some thoughts from starting mine:\n- My first meetup was just my friend Charlie and I. I had handmade slides. That was dumb. Just use these or no slides at all: https://www.teachingbtc.com/resources/\n- Be consistent. If you can carve out one night every other week great! I do once a month CONSISTENTLY.\n- Restaurants have rooms that you can reserve. Don’t try on the weekend for these rooms as you may have to pay. Sometimes there are minimum for bill cost. I found it better to plan on a weekend at a non-busy time. i.e. Brunch at 10am as soon as places open. Scout the place first if you’re unsure if they’re busy at a certain time.\n- Orange Pill App. If you’re not on there, check it out. It’s worth the $20 to have it for a year. I’ll likely renew. Publish your meetup there.\n- Facebook. This is critical for reaching normies and depends on location. I’m in a more rural blue collar area and a lot of people are still on Facebook around here. Adjust according to your locale, but publishing on social media once or twice can’t hurt. Be ready for FUDsters, BUT BE NICE! Ask questions in a polite way. If you can’t, type your normal reponse into ChatGPT and ask to have them translate to nice for you.\n- Website. Get a domain or a website. It’s practically free. If you can’t or don’t know how, shoot me a DM and I will get you up and running. It will look exactly like https://shenandoahbitcoin.club 😅 but I’ll work with you to add personalization.\n- Business Cards. I card around a dozen or so. I got 1000 of them for ~$40. Worth it for those one off occasions when you meet someone and don’t exchange contact info. I give mine out even when I don’t talk about bitcoin but want to exchange contact info. I tell people to ignore it if they want. I’ve had a few engage on the topic and even attend the meetup. Physcial touch points are important to building fellowship and will legitimize you for some people.\n- Find a nearby meetup. The biggest meetup I had was after attending DC BitDevs and telling people there about my upcoming brunch. It’s worth an hour or two drive to attend another meetup to make connections.\n- Don’t be pushy. Put it out there but don’t be pushy. It’s off putting and you only need to make yourself a known entity. When people need bitcoin, if they have your business card or know you as the “bitcoin guy”, you’ll get a call or email.\n- Setup a table in a walkable area of town. We have a walking mall downtown and I setup a table one day and sat there with a sign. YES. This isn’t for everyone, but I talked to more people locally about bitcoin like this than any other time.\n- Meetup App. Fuck this thing. It costs too much money. Don’t use it until you’ve ran the meetup for at least 6mo in a row. Imho, it’s not worth it until then. \N 18351 \N 422258 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 10.5476331118069 0 \N \N f 179762954 \N 1 216495713 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434077 2025-03-11 15:37:29.848 2025-03-29 22:39:47.604 Typical SN visit? What does your typical SN visit look like?\nFeel free to elaborate in the comments.\n\nBonus question, do you visit specific territories? Or you just pick posts as they appear in _home_?\nE.g., did you ever click ~science to see all the posts in that territory, regardless if they are recent or not? \N 691 \N 434077 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 7.59518245753277 0 \N \N f 315330825 \N 2 239773155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:07:10.87 f \N \N \N 0 0 0 0 1 0 0 403063 2025-02-14 12:12:54.157 2025-03-29 22:39:47.605 El Salvador Trip report - 7/8 [Backlink to Part 6](https://stacker.news/items/557324)\n\nI head to El Zonte today, better known as "Bitcoin Beach," where it all started in El Salvador. You can take a 25c bus here, which drops you off by the main road, or hire a car for ~$5.\n\n🏖️ **El Zonte:**\nEl Zonte is also undergoing development, and most places have either been recently renovated or are currently undergoing renovation. There are also a few new resorts going up. The town is surrounded by mountains and cliffs, but has a very nice beach with fine black (magnetic) sand. The town is divided by the coastal highway. To the north of the highway are primarily private residences, south of it are mainly resorts and the ocean.\n\nThere is a river dividing the town into an eastern and western part as well. There are only two options to cross this river: The highway bridge, or wading through it by the beach, where it is shallow. The eastern part has one section that feels a bit like a simple beach town, while the western part, where I am staying, doesn't have any character at all. It's just a one-way road looping through town, with walls along it on both sides. There are streetlights at night, but for the most part everything shuts after sunset. Two years ago, this one road was not yet paved.\n\nThe town has a very different vibe than El Tunco, with most localities being part of small gated resorts. There are a few pupuserias and convenience stores, but they appear more like shacks. There aren't many small businesses in El Zonte, but unlike in El Tunco, none of them accept cards. Bitcoin is the only electronic form of payment.\n\n🌮**Merchants:**\nI walk along the main road towards Pupuseria Mama Blanca, reportedly the first place in town accepting Bitcoin payments. It's still closed, and I vow to come back later. I continue on the road to Hope House, which serves a similar function here as the Bitcoin Center in Berlin, but also find it closed.\n\nCrossing the river highway to the western part isn't exactly the most pleasant experience, as the road is busy and the sidewalk slim, but there is a new and solid set of stairs up from the Hope House, which I had not seen on my previous trips.\n\nThe first shop on the other side is the Bitcoin Hardware Store, where I find the owner. It's a well-sorted shop selling hardware wallets, seedsigners, small miners, tshirts, USB sticks, SIM cards and other electronics. The owner is a Canadian-raised El Salvadorian Bitcoiner who started the store to educate locals while providing people with the basic tools needed to use Bitcoin. He says people drive from far away to find his shop. He also has a locally built K1 Bitcoin ATM, and while I'm there a local comes in to buy Bitcoin. I buy another Bolt card, which comes set up with Tiankii, a local web wallet and payment processor. I'm told I can erase the card and set it up with my own node using LNbits, but fail to do so.\n\nHe recommends Garten for lunch, an upscale restaurant and hotel where I probably have the nicest meal of my trip, a grilled red snapper that takes half an hour to make and I'd highly recommend. I pay with Bitcoin through Blink wallet.\n\nI had back to my hotel, where I try out the hotel bar. They are also using Blink wallet (they used Strike on my previous trips), and I have to head to the reception to pay (as one would have to for card payments), then take the stamped receipt back to the bar as proof of purchase.\n\nOn a later stroll, I visit a small convenience store and pay with a Bolt Card to their Blink account. There aren't many places outside of El Salvador where you can do this, and I'm told that Bolt Cards are seen as a serious alternatives to debit cards here. I'm not sure they are safe to hold or use, but then, neither are debit cards.\n\n🌎**Meetup:**\nTonight was the monthly Bitcoin meetup, which attracted a sizeable crowd. Some come all the way from San Salvador, and the attendees seem to be mainly foreigners who are either visiting or live in the vicinity. There are multiple talks, and I also get to share about the emerging Vancouver circular Bitcoin economy. The hotel hosting the meetup is using IBEX Pay, the first time encountering this payment processor that is otherwise much more common elsewhere. There is a 20% discount to those paying with Bitcoin, which seems to be a bit of a hassle to calculate manually and doesn't seem to be consistently applied.\n\nAfter the meetup, the high tide and large waves made crossing the river back to my hotel impossible, and I have to walk up all the way to the highway to cross the river there. Walking to my hotel, I encounter another small convenience store, where the clerk does not have a mobile phone or tablet to process Bitcoin payments. Instead, I scan a QR code containing her Blink Lightning Address, and she watches me enter one dollar into my wallet. Unfortunately my phone loses connectivity halfway through and my friend has to make the transaction for me. We show the successful transaction to the clerk, but she has no real way of verifying whether we really paid.\n\nI also come across two more places that are open. One is a small resort using PaySea to process payments, the other seems to be affiliated with the asian fusion place in El Tunco, but I cannot consume anymore food or drinks for the day.\n\nTomorrow, the local Bitcoiners are organizing a bus and boat trip to Pirraya, about 2-3h away. The area is dubbed "Bitcoin Island El Salvador" and might become another sizeable, more remote, circular economy. On Sunday is the local farmers market. I'm sad to be missing both of these events. \N 762 \N 403063 \N \N \N \N \N \N \N \N news \N ACTIVE \N 20.408942392239 0 \N \N f 791086941 \N 6 149111616 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3061 2022-10-24 08:08:07.921 2025-03-29 22:39:47.605 I'm NVK, CEO of Coinkite. AMA. I'm NVK, CEO of Coinkite. AMA.\n\nHi everyone! I’m @nvk, Founder and CEO of Coinkite and fulltime shitposter. I learned about Bitcoin from the SlashDot release post. Coinkite is one of the oldest Bitcoin companies (renamed to CK on block 141,000). We make Bitcoin Security and Fun Devices, and focus on Bitcoiners. \n\nYou many know some of our products COLDCARD, BLOCKCLOCK, OPENDIME, SATSCARD, TAPSIGNER, SEEDPLATE, COLDPOWER and SATSCHIP (we love caps) and/or some of our websites projects like BitcoinTreasuries.net, BitcoinBinary.org, WalletsRecovery.org, Bitcoin.Holiday, BitcoinBounties.org and my newest thing the Bitcoin.Review Podcast.\n\nGo.\n\n \N 9350 \N 3061 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.43605269675283 0 \N \N f 757072475 \N 6 228094876 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402807 2025-02-14 04:48:02.728 2025-03-29 22:39:47.606 Curated list of useful Open Source applications for GrapheneOS Here are some useful applications. Feel free to add your own suggestions:\n\n[Aegis](https://getaegis.app/).\n\n> Aegis Authenticator is a free, secure and open source app for Android to manage your 2-step verification tokens for your online services. \n\n[AntennaPod](https://antennapod.org/)\n\n> AntennaPod is a podcast player that is completely open. The app is open-source and you can subscribe to any RSS feed. AntennaPod is built by volunteers without commercial interest, so it respects your privacy while giving you full control.\n\n[Simple Calendar Pro](https://github.com/SimpleMobileTools/Simple-Calendar)\n\n> A simple calendar with events, tasks, customizable colors, widgets and no ads. \n\n[Catima](https://catima.app/)\n\n> A Loyalty Card & Ticket Manager for Android\n\n[Simple Contacts Pro](https://github.com/SimpleMobileTools/Simple-Contacts)\n\n> Easy and quick contact management with no ads, handles groups and favorites too.\n\n[DAVx5](https://www.davx5.com/)\n\n> Sync your contacts, calendars and tasks. Get live-access to your WebDAV Cloud files. All-in-one CalDAV/CardDAV/WebDAV solution for Android\n\n[FairEmail](https://email.faircode.eu/)\n\n> Fully featured, privacy oriented email app for Android\n\n[Florisboard](https://github.com/florisboard/florisboard)\n\n> An open-source keyboard for Android which respects your privacy. Currently in early-beta. \n\n[Simple Gallery Pro](https://github.com/SimpleMobileTools/Simple-Gallery)\n\n> A premium app for managing and editing your photos, videos, GIFs without ads \n\n[Loop Habits Tracker](https://github.com/iSoron/uhabits)\n\n> Loop Habit Tracker, a mobile app for creating and maintaining long-term positive habits \n\n[KDE Connect](https://kdeconnect.kde.org/)\n\n> Enabling communication between all your devices. Made for people like you. \n\n[OpenKeyChain](https://www.openkeychain.org/)\n\n> OpenKeychain helps you communicate more privately and securely.\n\n[Organic Maps](https://organicmaps.app/)\n\n> Organic Maps is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced OpenStreetMap data.\n\n[RHVoice](https://rhvoice.org/)\n\n> RHVoice is a free and open-source multilingual speech synthesizer.\n\n[RunnerUp](https://github.com/jonasoreland/runnerup)\n\n> A open source run tracker \n\n[Vynil](https://github.com/VinylMusicPlayer/VinylMusicPlayer)\n\n> A material designed music player for Android \n\n[Voice](https://github.com/PaulWoitaschek/Voice)\n\n> Minimalistic audiobook player \n\n[Geometric Weather](https://github.com/WangDaYeeeeee/GeometricWeather)\n\n> A Material Design Weather Application \n\nAnd of course, [Open source lightning wallets with on-chain support](https://stacker.news/items/222381) \N 647 \N 402807 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.33105010533427 0 \N \N f 161371443 \N 2 164302995 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442371 2025-03-18 14:37:39.772 2025-03-29 22:39:47.606 Slow Block Validation Attacks \N https://blog.lopp.net/slow-block-validation-attacks/ 10719 \N 442371 \N \N \N \N \N \N \N \N security \N ACTIVE \N 20.8821856028266 0 \N \N f 176643514 \N 1 101935457 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404399 2025-02-15 20:59:21.818 2025-03-29 22:39:49.237 \N 25 minutes of interacting in SN\n - spent: ~160 sats\n - stacked: ~1650 sats\n - replies: 10\n\n25 minutes of interacting in Nostr\n - spent: ~160 sats\n - stacked: 0 sats\n - replies: 2 https://example.com/ 15367 403115 402674.402763.402992.403115.404399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7354050901527 0 \N \N f 0 \N 0 127271631 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423045 2025-03-02 22:40:03.098 2025-03-29 22:39:49.239 \N 1. Find a wonderful partner\n2. Have children together\n3. Grow old gracefully https://example.com/ 1602 422856 422856.423045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3008621768731 0 \N \N f 0 \N 0 167624473 0 f f \N \N \N \N 422856 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415775 2025-02-25 04:32:26.383 2025-03-29 22:39:49.24 \N Day 134 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 20597 414699 414670.414699.415775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5117802110919 0 \N \N f 0 \N 0 169198113 0 f f \N \N \N \N 414670 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458363 2025-03-29 08:23:34.864 2025-03-29 22:39:49.24 \N ![](https://financeillustrated.com/wp-content/uploads/2021/05/10.jpg) https://example.com/ 21383 458357 458227.458241.458248.458276.458294.458299.458341.458342.458357.458363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.62699265284919 0 \N \N f 0 \N 0 18810385 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416918 2025-02-25 23:10:06.704 2025-03-29 22:39:47.606 Why I'm Bullish 10: Humans, Markets, & Discovery \nAs we enter a new bull market price is being talked about by the press and bitcoin influencers. What comes along with this phase in the bitcoin cycle is talk about the volatility of bitcoin price. First off, let me be clear. When I talk about price here, I'm really talking about purchasing power. Many that talk about price are planning to cash out into fiat. Its the biggest IQ test in history. Anyway, back to the topic.\n\nI've talked to many people about bitcoin and they like what they hear mostly. They are concerned about volatility though. I usually explain this to them in this way. Imagine there was a new element discovered by humanity. As people learned about what they can do with it they would adjust their thinking on what it is worth. Price after all is a measure of many individual's personal opinion on the value of something. Most people value bitcoin at 0. The vast majority of humanity has no clue what it is, why it was created, and what problems it solves. So with all of that in mind of course its price in fiat terms is volatile. That is different from its value. Its value is still being discovered.\n\nI believe that even the majority of people that have acquired some bitcoin do not really get it. I don't think they value it at its true value. At least they don't value it as I do. Why do I believe this? Because they sell it. That's it. They trade bitcoin. They are short bitcoin as they say. \n\nSo, you might be wondering why would any of this make me bullish. Well, I'm bullish because anyone can do their home work just as I did. They can go down the rabbit hole and teach themselves about bitcoin. It can change their lives if they do the work. If they do the proof of work. If they don't they will not be able to hold when market price drops as it will over and over again.\n\nI'm also bullish because bitcoin rewards those that do the work and punishes the arrogant and lazy. We see this when tradfi bros talk about it. We see this when the _respectable experts_ talk about bitcoin. Over and over again they demonstrate their ignorance. They show how they are simply pimping the existing system and do not look at things with a clear mind. The demonstrate that they haven't even spent 8 hours to study it. Or even 15 minutes to read the white paper. And these are people that are paid to talk about financial topics. \n\nSo, wen hyperbitcoinization? If you believe the world will some day see the light and become self-sovereign I think you are kidding yourself. If you think people will wake up one day and value liberty and freedom you are setting yourself up for disappointment. It isn't going to happen. The beautiful thing is that this doesn't need to happen. Most people do not think. That might seem mean or cruel but if you observe people as I do you will find it is true. Sure, many people do think. Some even think really deeply and throughout their whole life. But most only think about today and what they want to do to put food in their mouths and be happy. This isn't new. It isn't going to change. It doesn't have to change. These people are followers. They will follow the _leader_. They won't "adopt" bitcoin but they will live in a world where it has become the dominate monetary force. They will do what others tell them to do. And as the thinkers realize what bitcoin truly is. How it works. They will be overcome with a fear of missing out. FOMO is a real thing. We see it in every bull market. These are the "bitcoiners" I describe that do not get it. They just see a number going up and don't want to miss out. Over time they will learn. They will learn or be destroyed financially.\n\nSo bitcoin wins. Pain is the greatest teacher and every bull and bear market bitcoin causes pain. Its pain that you sold or pain because you didn't get it sooner. Bitcoin is a teacher if you are willing to learn. If you are not it will make you pay.\n\n**Read my previous posts in this series.**\n\n- [1: Bitcoin is a Hurricane](https://stacker.news/items/383549)\n- [2: SeedSigner](https://stacker.news/items/384892)\n- [3: China Mining Ban](https://stacker.news/items/389176)\n- [4: Becoming Your Own Banker](https://stacker.news/items/391061)\n- [5: Open Source Money](https://stacker.news/items/392251)\n- [6: The ETFs are Capitulation](https://stacker.news/items/398832)\n- [7: Bitcoin is for Enemies](https://stacker.news/items/400699)\n- [8: Bitcoin is the Greatest Invention in My Lifetime](https://stacker.news/items/455079)\n- [9: Trust Minified](https://stacker.news/items/456259)\n \N 11417 \N 416918 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 0.973366326064848 0 \N \N f 406888172 \N 4 148070378 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 436218 2025-03-13 11:46:05.52 2025-03-29 22:39:47.607 Bitcoin Halving vs Fed Rate Cut What happens first? \N 6148 \N 436218 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.4820645539592 0 \N \N f 554061883 \N 6 7267495 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:29:26.447 f \N \N \N 0 0 0 0 2 0 0 443794 2025-03-19 14:17:57.331 2025-03-29 22:39:47.607 Lightning Labs: "BOLT12 offers - when the pigs will fly." BOLT12 offers allows safe reusing QR codes: a static image of QR code for Lightning payments that you can even print on a billboard...\nThe draft was first posted September 2020, and revised heavily since. It was first implemented in c-lightning v0.9.3 released in January 2021.\nMore info: https://bolt12.org/\n\nAnd that's what LND guys from Ligtning Labs have announced:\n\n![LND_LOL](https://imgprxy.stacker.news/mSyj6nnBvZhNKvYJPhtb3H3SS-cl9vmVanHH18dGcBU/rs:fit:600:500:0/g:no/aHR0cHM6Ly91c2VyLWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vMzkyMDgyNzkvMjIyNzk1MzM3LWU2OWJmZjNkLTJkYjQtNGI4Yi1iNWU1LTc5NTA5MjVkNWI5OS5wbmc)\n\nhttps://github.com/lightningnetwork/lnd/issues/5594\n\nTaking into consideration their version numbering, 0.16 is right now and single increase more-less once per year - the Create & Receive of BOLT12 offers will be probably available in LND around A.D. **2026**\n\nWhat is crappy as hell...\nMove to other implementations (like for example CLN +CLBOSS autopilot) - before it's too late...\n \N 10280 \N 443794 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.8145065269167 0 \N \N f 461081961 \N 2 116457592 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433432 2025-03-11 04:57:14.097 2025-03-29 22:39:47.607 Your Favorite “Buy It For Life” Products After [yesterday’s discussion about how bad fridges are these days](https://stacker.news/items/396986), I thought it would be fun to get stackers sharing all the high quality, long-lasting products they love to use.\n\nWhat are your favorite “buy it for life” products? \N 21208 \N 433432 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 5.15416916835317 0 \N \N f 129348652 \N 1 99908357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 392486 2025-02-05 10:31:08.663 2025-03-29 22:39:47.608 The OpenTimestamps proofs should include hashes of each image Why? Because the timestamp should commit to all the content, including the image itself.\n\nFor example, here's a lovely photo of São Paulo:\n\n![1000017332.png](https://m.stacker.news/6133)\n\nAt any moment it could be undetectably replaced with a photo of Craig Wright! With hashes, we can detect such treachery. Without, we must trust @k00b \N 17552 \N 392486 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 10.8217505687918 0 \N \N f 384284307 \N 3 131877629 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:48:28.003 f \N \N \N 0 0 0 0 1 0 0 437630 2025-03-14 17:16:46.307 2025-03-29 22:39:47.609 A request for non-correlated inputs A fact I try to keep front-of-mind is that your outputs are a function of your inputs. An implication is that if you consume the same info as everyone else, you will think the same thoughts as everyone else. You will have the same "insights" and be vulnerable to the same exploits. In the same way that [trusted third parties are security holes](https://nakamotoinstitute.org/trusted-third-parties/), an information monoculture is a security hole. Worse, it's a hole you may not even know you're in, because the people around you are in it too.\n\nAnd aren't you all free?\n\nTo get around this issue, I try take in as much non-correlated information as I can, about as diverse a set of topics as I can manage without being overwhelmed. (Dealing with overwhelm more intelligently is a goal of mine for 2024.) One powerful way to do this is [reading a wide variety of fiction](https://stacker.news/items/367468/r/elvismercury). Another is [travel](https://stacker.news/items/212596), esp to [unusual places](https://stacker.news/items/326364) and for unusual reasons. Another is having an eclectic friend group.\n\nDespite feeling strongly about this, I don't think I'm very good at it, which is bad. What's good is that this means that there's much opportunity to improve! **_So I'd like to solicit suggestions for other things to do, other input sources to broaden my perspective_**. Anything goes, but a rule of thumb is that if it's already in the bitcoin cannon, either directly or thematically, then it's no use to me.\n\nGive me the groundbreaking podcast on prairie restoration, or the show you fucking love about making soup dumplings, or the documentary about beauty pageants that changed how you see gender roles, or the course about [philosophy and meaning](https://stacker.news/items/368010/r/elvismercury) that keeps you up at night.\n\nSomething to make the world new, at least a little. \N 1605 \N 437630 \N \N \N \N \N \N \N \N art \N ACTIVE \N 10.198920146778 0 \N \N f 102508603 \N 1 151358351 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434328 2025-03-11 19:43:34.142 2025-03-29 22:39:47.609 Poker4Sats community: a private club to play poker with sats As many of you already know, our group grew more than expected in less time than we imagined, it excites us and motivates us to keep trying to improve the amazing environment we created between all of us the last months.\n\nWe are working to implement an innovative solution that will allow you to enjoy many more Poker games, always with Bitcoin involved. Our vision remains clear: to give everyone the possibility to play Poker with Satoshis, without KYC. That's why we want to tell you that we are preparing the playing field and we are developing a new private and personalized Poker platform!\n\nWe know that the road is long and that this is only the beginning of the adventure. But we assure you of continuous improvements, new modalities and new sensations... And a new energy!\n\nWe want you to feel comfortable in our new home and we want you to know that we are always open to listening to any way to improve.\n\nSincerely yours,\nThe Poker4Sats.com Team\n\n-------\n\nHey people, if you want to join the crew, we mostly speak spanish but that's no issue for the group, english is our second language. [Come join us at Telegram!](https://t.me/poker4sats) \N 20799 \N 434328 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.52464308754195 0 \N \N f 121070981 \N 1 175736637 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 01:54:32.24 f \N \N \N 0 0 0 0 1 0 0 434865 2025-03-12 09:49:39.7 2025-03-29 22:39:47.609 Thoughts on inscriptions \N https://ex.rs/thoughts-on-inscriptions/ 992 \N 434865 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 27.4034898309956 0 \N \N f 814449815 \N 5 242008893 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:33:19.138 f \N \N \N 0 0 0 0 3 0 0 448817 2025-03-22 22:20:47.489 2025-03-29 22:39:47.609 The Privacy Pivot - 10 Tips for Startups # **The Privacy Pivot**\nThe world has pivoted, but you're still spinning you can't yet see it! 👀 \n\n![](https://media4.giphy.com/media/GZLf5Njk1KGwU/giphy.gif)\n\nThe biggest brands of tomorrow are the ones that have already prioritised privacy above any other trend. And we're not talking about the hypocrites at [Apple Inc](https://www.apple.com/privacy/), who talk a lot about privacy and yet crave more and more involvement in our daily lives. (The same Apple who are wishing for us to strap a dumbbell to our eyeballs). I'm talking about business that actually give a duck 🦆 about their customers. Businesses that are solving _real_ problems for their incredible users. Needing less personal data, not more. Providing more consumer choice, not less. Businesses building things people need, not those that are trying to change what people want. \n\n## **Profit Will Depend On Privacy**\nData leaks are happening every week, secrets are being revealed, and each and everyone of us is being polluted with popups in front of every page we land on. People and business owners are still going about their days assuming business will remain like this and the way they have been with single-database of failure for the last 20 years. Believing that storing a giant pot of "data gold" on top of some unstable fluffy cloud somewhere is socially acceptable and 'cost-effective' for their business. And that it won't attract the likes of "winnie-the-pooh" or any other party with ulterior motives to come after it.\n\n![pooh-for-privacy](https://m.stacker.news/17810)\n\n## **Cloud Liability**\nIn the future it may not be "cost-effective" to store your company data in Amazon S3, encrypted or not, because you may have (unlimited) financial liability leaking excessive information, wrongly trusting third parties and manufacturing consent from customers. Or just being unable to control the availability of your services. Unlimited in the sense companies may lose the majority of customers and be targeted with lawsuits calling on them to cease to trade.\n\nIf a complete pivot occurs where privacy becomes the human right it is often talked about being, that the world may indeed even seek vengeance and damages for their personal data being made available online. Just like we're seeing with the [number of lawsuits over stalkers](https://arstechnica.com/tech-policy/2023/10/apple-airtags-triggered-explosion-of-stalking-reports-nationwide-lawsuit-says/) and concerns as [posted on SN](https://stacker.news/items/158868/r/davidw) over unlawful use of Apple's AirTags. The internet has a habit of knowing where to point the finger. Not at Jeff Bezos in his outer-space bunker, but at founders, CEOs and tech directors alike. Your company's future may depend on it's ability to guarantee user privacy.\n\n## **Rise of Edge Computing**\nMany in the tech industry like to refer to the concept of _[Edge Computing](https://en.wikipedia.org/wiki/Edge_computing)_ as bringing computation closer to the end user. The benefits being to increase latency, security & privacy. Processing will be more and more local, mobile phones, servers and network gateways will perform tasks and provide services on behalf of or to replace the cloud systems we depend upon today.\n\nWe are witnessing the continued march of our bandwidth requirements, ever-increasing abundant energy, more and more intense computation (be it gaming, AI or others) as well as more devices connecting to our routers each year. All of that means that the efficiencies of centralised data centers will likely reduce, at least when compared to the share of total usage today. It will be accessible to have enterprise-grade redundancy, both in data and energy, in home servers and devices. It will also be unavoidably more private and secure for businesses. For performance AND privacy.\n\n## **Legal Bubble**\nToday, companies are manipulating customers into clicking a button to pretend that they have read a **62 page privacy policy** written by some of the most boring people to walk this planet. People whose job it is to make things completely illegible to the average Joe.\n\nAs a society we may have normalised this legal charade, but I'm convinced than ever that this won't continue. In a world where the barriers to creating and running software are reducing by the day, we are witnessing the exponential rise of ~opensource alternatives. People are not going to spend more than 30 seconds to register for a new service in the future. They are not going to read your privacy policy. And they won't need to, not when there is negligible data to collect. And open networks will see to each of us us storing both more local & distributed data.\n\nWe live in a legislative bubble right now and things need to get an awful lot more simpler if we want to innovate and make a better world for tomorrow! It may be the Information Age (if you want to call it that) but the less data your business collects in the future, the leaner and more nimble you will be. It's about time we start thinking about how to achieve that goal and still meet the day-to-day business objectives. Technologies like Bitcoin, Lightning, Nostr, Tor and other innovations will likely help us get there.\n\n---------\n\n## `10 Top Startup Tips`\nWith that in mind, here are a few brainwaves on how to think about privacy tomorrow as a business...\n\n### **1. Differentiate on Privacy not Price**\nBuild long-term trust and loyalty with your customers by respecting and minimising the amount of data collection. Just because competitors are not doing it, doesn't mean your business shouldn't! Much like people will pay top dollar for foods with fewer ingredients and 'fiat' processing, people are increasingly paying for privacy features.\n\n### **2. Make your Privacy Policy SIMPLE**\nLet's avoid lazy legal templates that follow the same structure the European Union have laid out for us. If you can't describe the data you process on one writter piece of A4 paper, you're collecting too much user data. Cut it back so people can read it, even with your terrible handwriting.\n\n### **3. Hook People Without Blind Onboarding**\nDon't gate features behind a sign-up wall, asking for their email, name, subscription & blood type. Let people truly experience your product without requiring their details. Think about passwordless and email-less authentication, actively avoid offering them as options. If you want to see people level-up their privacy, make the default option via Lightning or Nostr. Really think whether you need user accounts at all. Why couldn't customers just use throwaway account IDs like [iVPN or MullVad](https://stacker.news/items/385935/r/davidw) have for their products?\n\n### **4. Deliver on your Privacy Promises**\nIf you say you care about user data... show it to customers, show it to employees, make it part of your brand and your training. Either don't collect certain data in the first place, or establish ways to de-anonymise it. Make data optional until the time that a user's account requires it. Rather than introducing 'umpteen' screens of onboarding.\n\n### **5. Define Privacy as a Company Value**\nMake privacy a priority in every department of your company. Recruit people based on their perceptions of privacy and willingness to challenge the status quo. Train people on good data retention, managing customer data like it's a hot potato and on maintaining solid security and backup procedures. Heck introduce a bounty program to cut legal jargon from your websites and services if you need to. If it's a priority, it should be uncomfortable how much you focus on it.\n\n### **6. Challenge Industry Evils**\nNo one ever complained about having less data collected on them or having less information to populate in their profile. If you wouldn't ask your Gran at dinner table for permission on that data, don't manufacture consent from customers. Remove the likes of Google Tag Manager, Hotjar and other toxic trackers. Stop calling them cookies too - they are trackers!\n\nIf you need to gather information on how people use your product, do user testing or ask them in a survey! Don't spy on every visitor that lands on your site, just because you may need it someday. So much aggregate data is available today that you need not profile and track individual users that visit your site. If someone is scrolling over a particular pixel on your page, lazy load an advert below in the next section. Do not serve a disgusting pop-up.\n\nTreat others how you'd like to be treated. Avoid third parties and lazily integrating the likes of Google Tag Manager & OneTrust, who have ulterior motives. There are better solutions out there, to be built and bought.\n\n### **7. Delete Data After 12 Months**\nAutomate the deletion of customer records after accounts are left idle. Actually delete data _BEFORE_ a customer requests it. Clear your customer helpdesk emails, that are no longer needed after 6 months. [Coinkite](https://coinkite.com/) for instance does this, without anyone ever having asked them to.\n\nThink you need to retain customer information? Think again. It _may_ be cheaper to advertise to existing customers than new ones, but think about alternative ways of reaching your customers. Stop being lazy. Include a discounted renewal or follow-up purchase in their order confirmation. If your customers truly love your product, they will purchase it off their own backs. They will remember you, when they require access again. Not because you didn't send them a clickbait advert after 18 months of not using it.\n\n### **8. Minimise 3rd Parties**\nMeasure analytics in the aggregate [like SN](https://plausible.io/stacker.news) and @k00b is doing via Plausible. Strip metadata from photos & assets uploaded. Go without email remarketing firms like SendGrid or Mailchimp. User email addresses are NOT theirs. The only reason companies they exist is because you want to send a simple message every few months. Surely in 2024 you can find other means to achieve that same objective.\n\nIf you can't remove a third party, reduce your dependency on monopolistic businesses like Google, Stripe & Mailchimp, utilising smaller payment & email campaign providers wherever possible. Better still, setup your own BTCPayServer or Zaprite account. The custom solutions you dream of are not all as complex to develop as you believe. Everything is up for grabs, with many viable (open-source) alternatives.\n \n### **9. Build a Privacy Roadmap**\nStart thinking about features that people in the future would value, if a huge shift in sentiment happened around sensitive data over the course of the next 12 months. \n\nHow would customers want you to store their data, how would they want to be communicated about the changes? How would you educate your users on taking the steps to de-anonymise their own accounts? Think of how a completely new set of customers may adopt and pay more for your service when you are solving a problem they have been seeking a private solution for.\n\nSome silly suggestions:\n- build in a "Mission Impossible" or "Men In Black" self-destructing animation & sound effects for ephemeral chat messages.\n- write bog-standard customer emails in a non-HTML text editor and include typos to be more authentic.\n- show the encrypted blobs of data that are being processed by your site each second.\n- allow people to dispose of or radically overhaul their identities at the click of a button.\n- create a dummy-data version of your product that requires no user sign-up and allows people to 'recruit' celebrities and 'report' politicians.\n- allow people to buy lifetime pricing of your products upfront so that you never need to email them again if they wish.\n- create an infinite-loop onboarding experience with a single delete account button at the end.\n- tell people you reincarnated your lawyer as an AI to make things legible.\n- joke with your customers about how you are changing their name because they remind you of your pet chameleon.\nBe radically transparent about their privacy and have fun with it in the process.\n\n### **10. Less Compliance. More Defiance.**\nChallenge 'loose' regulations with your creative energy. Hire lawyers that remove documentation and legal lingo, rather than adding to the pile of steaming mess 💩.\n\nAdopting a cuck mentality is how we have arrived at this point today, with a less private internet. Businesses need to be active and not simply 'interpreting' regulations in the way that they were specifically drafted to deceive. The hope was to achieve the outcomes laid-out, not through enforcement but from fear of litigation. So startups should be mindful of achieving their business objectives with processing less, and retaining less KYC information than ever before. Not more. \n\n\n\n\n \N 1745 \N 448817 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 23.7583265084251 0 \N \N f 194289449 \N 1 238770339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 20:54:40.829 f \N \N \N 0 0 0 0 1 0 0 407679 2025-02-18 09:43:44.053 2025-03-29 22:39:47.608 What will become of North Korea? Cracking this open for the geopolitical experts...\n\nWhat's the likely outcome you see for NK? How will the collapse go down (or not)? How much longer does the Kim family maintain their hold? Does bitcoin play a role in freeing the country?\n\nNorth Korea has always been fascinating to me, but of course very sad to see.. Would you ever visit there if you had the chance??\n\nAlso if you haven't before, got to watch this classic doc of the harlem globetrotters visiting NK. Not a simulation i swear.\nhttps://www.youtube.com/watch?v=IrCQh1usdzE \N 1244 \N 407679 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.1216926064165 0 \N \N f 163567669 \N 1 126670886 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 412978 2025-02-22 19:13:27.421 2025-03-29 22:39:47.608 My journey to find the ideal Uncle Jim node ### Desired Features:\n\n1. **Simple Wallet Creation:** Can create a simple send/receive wallet for friends and family using my node\n2. **Secure Connections:** Securely allow family to connect to my node\n3. **Link to Services:** My family members can link their wallet to things like\n - Stacker News [3a]\n - Nostr clients [3b]\n - Podcasting 2.0 podcast apps [3c]\n4. **Static Payment Address:** Family members get a static payment address (Lightning address, Bolt12 address, etc.) to receive payments\n5. **Flexible Funding Sources:** Ability to change the funding source without disruption to family members (e.g., starting with an LSP, then later switching to direct channel management)\n6. **Channel Management:** Ability to open channels from a hardware wallet so if they close, the balance goes back to cold storage\n\n### Contenders:\n\n- **Shockwallet**\n- **Alby Hub**\n- **LNBits**\n\n#### Initial Experience with Shockwallet:\n\nI tested out Shockwallet today. I wiped an old laptop, installed Ubuntu, and used the one-line deployment (https://github.com/shocknet/Lightning.Pub#readme). It was very easy. Shockwallet seems to address [1, 2, 5] already, with various pieces of [3, 4, 6] in development. Overall, Shockwallet seems very capable already with lots of features in development. Shockwallet uses Nostr to connect, achieving [2] without direct network exposure, which is a huge advantage. \n\nNext, I plan to try out Alby Hub and LNBits to see how well they tackle these items.\n\n### My Understanding of Existing Features:\n\n**Shockwallet:**\n- [1, 2, 5]\n\n**Alby Hub:**\n- [1, 2*, 3a, 3b, 3c, 4, 5, 6**]\n\n**LNBits:**\n- [1, 2*, 3a, 3b, 4, 5, 6**]\n\n\\* Both Alby Hub and LNBits are very capable when it comes to connecting to external services. However, securely allowing family members to connect will require more effort. This is where Shockwallet really shined.\n\n\\** Zeus can be used to connect to LND and open channels from a hardware wallet. This may be possible for all three node options eventually, assuming the funding source is ultimately LND under the hood.\n\n### Connection Options:\n\n- Wait for Start9 0.4.0 for more user-friendly clearnet options, run Alby Hub and/or LNBits on it\n- Use a domain with Cloudflare DNS hosting and a Cloudflare tunnel, though this involves different trust tradeoffs in Cloudflare\n- Set up a reverse proxy\n- Research VPS providers that accept Lightning payments to run Alby Hub or LNBits on it\n\n### VPS Providers That Allegedly Accept Lightning (needs confirmation):\n\n- [ahnames.com](https://ahnames.com)\n- [cryptoho.st](https://cryptoho.st)\n- [deinserverhost.de](https://deinserverhost.de)\n- [evolution-host.com](https://evolution-host.com/vps-hosting.php)\n- [forexvps.net](https://www.forexvps.net)\n- [host4coins.net](https://host4coins.net)\n- [hostsailor.com](https://hostsailor.com)\n- [initech.global](https://iws.initech.global/index.php)\n- [incognet.io](https://incognet.io)\n- [liteserver.nl](https://liteserver.nl)\n- [lunanode.com](https://lunanode.com)\n- [melbicom.net](https://melbicom.net)\n- [mynymbox.io/vps](https://mynymbox.io/vps)\n- [netnexus.io](https://netnexus.io)\n- [operavps.com](https://operavps.com)\n- [privateweb.ch](https://privateweb.ch/store/bitcoin-vps)\n- [servers.guru](https://servers.guru)\n- [skhron.com.ua](https://skhron.com.ua)\n- [techrich.hk](https://techrich.hk)\n- [thcservers.com](https://thcservers.com)\n- [thundervm.com](https://thundervm.com)\n- [vpsbg.eu](https://vpsbg.eu)\n- [zergrush.org](https://zergrush.org) \N 2056 \N 412978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.468284872320375 0 \N \N f 224557581 \N 1 94523850 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456650 2025-03-27 18:24:23.803 2025-03-29 22:39:47.608 Sunday Survey: What were you doing at halving block 840,000? \N \N 5085 \N 456650 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.68678157111934 0 \N \N f 43072214 \N 1 81170529 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413480 2025-02-23 08:47:37.733 2025-03-29 22:39:47.608 CSW: CSW is not Satoshi If you happen to have a twitter account, it may be a rare occasion when retweeting faketoshi is a good idea. https://x.com/Dr_CSWright/status/1813547003676164132 20775 \N 413480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8448464978743 0 \N \N f 370961286 \N 3 129291398 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 198720 2024-07-12 09:18:58.751 2025-03-29 22:39:47.609 28 days of posting daily mining earnings I thought it might be interesting to post a follow-up analysis after having shared my daily mining earnings for 28 days. I summarized the earnings in the below table, including:\n\n1. How many sats I mined each day\n2. The running total amount of sats mined\n3. How many sats I received via stacker zaps and rewards distribution for each comment where I share the mining update.\n4. The running total of zapped and reward sats here on SN.\n\n| Day | Date of Mining (UTC) | Sats Mined | Total Sats Mined | Sats Zapped | Total Sats Zapped |\n| --- | ---------------------------------------------------------------- | ---------- | ---------------- | ----------- | ----------------- |\n| 1 | [18Dec2023](https://stacker.news/items/358410/r/WeAreAllSatoshi) | 858 | 858 | 61 | 61 |\n| 2 | [19Dec2023](https://stacker.news/items/359617/r/WeAreAllSatoshi) | 894 | 1,752 | 473 | 534 |\n| 3 | [20Dec2023](https://stacker.news/items/360909/r/WeAreAllSatoshi) | 907 | 2,659 | 12,199 | 12,733 |\n| 4 | [21Dec2023](https://stacker.news/items/362200/r/WeAreAllSatoshi) | 903 | 3,562 | 137 | 12,870 |\n| 5 | [22Dec2023](https://stacker.news/items/363649/r/WeAreAllSatoshi) | 817 | 4,379 | 345 | 13,215 |\n| 6 | [23Dec2023](https://stacker.news/items/364699/r/WeAreAllSatoshi) | 718 | 5,097 | 123 | 13,338 |\n| 7 | [24Dec2023](https://stacker.news/items/365895/r/WeAreAllSatoshi) | 717 | 5,814 | 387 | 13,725 |\n| 8 | [25Dec2023](https://stacker.news/items/367447/r/WeAreAllSatoshi) | 780 | 6,594 | 144 | 13,869 |\n| 9 | [26Dec2023](https://stacker.news/items/368044/r/WeAreAllSatoshi) | 785 | 7,379 | 560 | 14,429 |\n| 10 | [27Dec2023](https://stacker.news/items/369052/r/WeAreAllSatoshi) | 867 | 8,246 | 202 | 14,631 |\n| 11 | [28Dec2023](https://stacker.news/items/371073/r/WeAreAllSatoshi) | 863 | 9,109 | 50 | 14,681 |\n| 12 | [29Dec2023](https://stacker.news/items/371601/r/WeAreAllSatoshi) | 819 | 9,928 | 5 | 14,686 |\n| 13 | [30Dec2023](https://stacker.news/items/372541/r/WeAreAllSatoshi) | 841 | 10,769 | 551 | 15,237 |\n| 14 | [31Dec2023](https://stacker.news/items/373759/r/WeAreAllSatoshi) | 897 | 11,666 | 428 | 15,665 |\n| 15 | [1Jan2024](https://stacker.news/items/374691/r/WeAreAllSatoshi) | 801 | 12,467 | 59 | 15,724 |\n| 16 | [2Jan2024](https://stacker.news/items/375897/r/WeAreAllSatoshi) | 775 | 13,242 | 911 | 16,635 |\n| 17 | [3Jan2024](https://stacker.news/items/376825/r/WeAreAllSatoshi) | 758 | 14,000 | 91 | 16,726 |\n| 18 | [4Jan2024](https://stacker.news/items/378311/r/WeAreAllSatoshi) | 739 | 14,739 | 31 | 16,757 |\n| 19 | [5Jan2024](https://stacker.news/items/379487/r/WeAreAllSatoshi) | 747 | 15,486 | 599 | 17,356 |\n| 20 | [6Jan2024](https://stacker.news/items/380040/r/WeAreAllSatoshi) | 720 | 16,206 | 61 | 17,417 |\n| 21 | [7Jan2024](https://stacker.news/items/381070/r/WeAreAllSatoshi) | 708 | 16,914 | 0 | 17,417 |\n| 22 | [8Jan2024](https://stacker.news/items/382197/r/WeAreAllSatoshi) | 744 | 17,658 | 289 | 17,706 |\n| 23 | [9Jan2024](https://stacker.news/items/384184/r/WeAreAllSatoshi) | 731 | 18,389 | 10 | 17,716 |\n| 24 | [10Jan2024](https://stacker.news/items/385255/r/WeAreAllSatoshi) | 708 | 19,097 | 484 | 18,200 |\n| 25 | [11Jan2024](https://stacker.news/items/385804/r/WeAreAllSatoshi) | 715 | 19,812 | 42 | 18,242 |\n| 26 | [12Jan2024](https://stacker.news/items/386724/r/WeAreAllSatoshi) | 711 | 20,523 | 21 | 18,263 |\n| 27 | [13Jan2024](https://stacker.news/items/387905/r/WeAreAllSatoshi) | 744 | 21,267 | 1 | 18,264 |\n| 28 | [14Jan2024](https://stacker.news/items/388764/r/WeAreAllSatoshi) | 831 | 22,098 | 100 | 18,364 |\n\nI received a ton of zaps early on, which put the zapped sats in the lead compared to the mined sats for most of the month. However, the steady mining results eventually overtook the zapped sats.\n\nOne aspect to note, it's possible that I get zapped retroactively for some of these past comments, so that number can go up over time, while the mined sats on each completed day is fixed.\n\nThis analysis also highlights the results of Braiins Pool switching to FPPS from PPLNS. With PPLNS, the mining results were pretty inconsistent - some days the pool would find several blocks, resulting in high rewards, while other days no blocks would be found, resulting in no rewards. The purpose of this post isn't to debate PPLNS vs FPPS, so I won't get into that, but I thought it was worth sharing.\n\nIf you're interested in my mining setup, you can find more information at the following links:\n\n1. [My experience with a FutureBit Apollo](https://stacker.news/items/328872/r/WeAreAllSatoshi)\n2. [Some analysis on electricity costs compared to mining output](https://stacker.news/items/376178/r/WeAreAllSatoshi)\n3. [When I added a second mining rig to my fleet](https://stacker.news/items/365895/r/WeAreAllSatoshi)\n\nI am happy to engage in discussion in the comments, answer any questions, etc.\n\nThank you for reading!\n \N 21275 \N 198720 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.3133700632976 0 \N \N f 107095603 \N 1 20945689 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457788 2025-03-28 17:35:23.542 2025-03-29 22:39:47.609 Your opinion about AI and jobs What do you think will be the short term consequences for different types of jobs with AIs like chatGPT?\n\nI personally don't think it will be as catastrophic as some people say.\n\nI think it will make most jobs easier, similar to how the www has made easier to look up information.\n\nBefore the web you would have needed to read a book or get someone to explain something to you, now you can just see a video or ask a forum. With tools like chatGPT all this information is now indexed and usable in a much faster way.\n\nYou will still need people doing the things, and providing the service, it's just that doing these things will become easier. Similar to how lots of people nowadays can work as say, JS developers, or IT, but really they mostly just search stuff on stack overflow, or the web in general to do their daily tasks. This AI would give those answers faster. \N 16149 \N 457788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8701198864031 0 \N \N f 85025313 \N 1 141034303 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 392573 2025-02-05 12:05:27.818 2025-03-29 22:39:47.609 I ASKED TURKS HOW THEY HANDLE HYPERINFLATION | Istanbul Street Interview 🇹🇷 I gave bitcoin to people on the streets of Istanbul in return for an interview... while dressed as a bitcoin \n\nIt’s actually really interesting… albeit heartbreaking https://youtu.be/NAxgGy2DTS0 21239 \N 392573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.92278512669592 0 \N \N f 216854051 \N 1 230619249 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404009 2025-02-15 13:04:34.147 2025-03-29 22:39:47.609 Spamming Stacker News this March is as bad as shitcoining, and you'll pay for it Dear Unknown Spammer, \n\nWith the hype around 'March Madness,' you're probably tempted to come here and fill our ears with inane babble, or make irrelevant lol-ish comments in hopes we'll pity zap you, or just ChatGPT your way to victory. But look, I care about you, so I want to help you get out of this phase in your life. I know you wouldn't be looking for “***easy money***” if things were going great, so don't waste your time trying to game SN. \n\n#### **SN looks like a normal website—right?** \n\nIn form and function, sure. It's to newsgroups and forums of the past, and its developer himself likens it to Reddit. Reminds me of the RPG forums I used to post on as a kid. All well and good… but this isn’t Reddit, son. \n\n**Stacker News is a microcosm of the new cybereconomy**, which, it should go without saying but maybe to you it does not, **is bitcoin only**. And you’re failing here because you’re importing your bad Instagram comment section habits (from the fiat internet) into an economic model that **isn't backwards compatible with you**. \n\nHow so?\n\n1. You’re being charged in the most perfect store of energy ever devised just to post here. Even your ChatGPT fueled run-a-thon sentences are costing you. \n\n2. That low effort post? It clearly took very little work or thought to produce, making it truly **worth-less**. Everyone here decides their own pricing mechanism, so how much to zap (or not) is solely up to them. You might not get 0—someone might give you a 5-sat pity zap sometimes—but you're incurring a massive opportunity cost in a deflationary, absolutely scarce “asset” that you will feel for years. “Congratulations, your 20 sats are up 100%!” \n\nDon't do that. **SN Is a value-for-value environment**, but those are just words. It's trickier than that. To find out what that really means, let's peruse some of the site’s top posts… \n\n![](https://i.gyazo.com/e7995d8e252034d13aed9dc60562d41c.png)\n\nAnd what we see here is an extremely diverse group. Just selecting a small sample: \n\n* @DarthCoin, one of the most popular guys here, known for his infamous “toxicity” discussing the value of kindness. 👀 \n* @davidw basically beat United Nations country profiles at their own game by creating a comprehensive fact sheet about **Uruguay**. This isn’t even (directly) related to bitcoin! 😳 \n* One of the highest zapranked posts of all time was a BTCer ( @btc_remnant 👋) talking about his disillusionment over adoption and the dangers of larping / excess optimism. \n\n#### **Serious Question: Can you game a data set like this?**\n\nIs there an algorithm that can let you program up some posts to rake in the sats in 60 seconds? You see, little spammer, how basically **human** it all is? Anti-robot? Spammer resilient? \n\n**Bitcoiners zapped the shit out of Uruguay because the cowboys are respectable, the meat 🥩 looks amazing , and davidw put time and effort (work) into making a great post.**\n\nSimple as. ✌️ \n\n#### **That's cute that you're looking for easy money here, but...**\n\nIt doesn't exist anymore. You're chasing a mirage, and you always have been. **Bitcoin enforces work**. \n\nThere’s also this top post to consider…\n\n* @Undisciplined observing that [he made more sats on SN by zapping more](https://stacker.news/items/287074) (hm 🧐). \n\nEver see ‘A Beautiful Mind?’ It’s worth remembering that its protagonist, John Nash, was a real mathematician and economist theorist who authored a whole paper on [ideal money](https://web.math.princeton.edu/jfnj/texts_and_graphics/Main.Content/IDEAL_MONEY.../Older/PENN_STATE/babu.money.b.pdf). \n\nSomething from the movie for you to chew on: \n> **John Nash**: Adam Smith said the best result comes from everyone in the group doing what's best for himself. Right? That's what he said, right?\n> **Hansen**: Right.\n> **John Nash**: Incomplete. Incomplete, okay? Because the best result will come from everyone in the group doing what's best for himself and the group.\n\nhttps://www.youtube.com/watch?v=bbNMTbcuitA\n\nNow, being a spammer is no kind of life, friend. You're better than this. Find what you're good at, and apply it, and we'll zap you. \n\np.s. Some shitposting is permissible—we grew up on the internet, after all—but don't overdo it. 👌 \N 7395 \N 404009 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9873912125412 0 \N \N f 25938214 \N 1 105962738 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403633 2025-02-15 02:37:56.518 2025-03-29 22:39:47.603 SN Saturday Newsletter 3/30/24 Happy Sat-urday Stackers,\n\nHave a great Easter!\n\n##### Top Posts\n1. [@supertestnet](https://stacker.news/supertestnet)'s lastest invention, [Hedgehog](https://github.com/supertestnet/hedgehog), is a layer two protocol for asynchronous payments. It's a lot like the lightning protocol, but leverages connectors as they appear in [Ark](https://www.arkpill.me/).\n - [Hedgehog: A protocol for asynchronous layer two bitcoin payments](https://stacker.news/items/481321)\n - 108.6k sats \\ 101 comments \\ [@supertestnet](https://stacker.news/supertestnet)\n2. Productive use of waste delights most engineers. [@NicoHeatingBTC](https://stacker.news/NicoHeatingBTC) walks us through using bitcoin mining waste heat to warm his home.\n - [I heat my 100 yr old home with Immersion Bitcoin Mining](https://stacker.news/items/480613)\n - 46.1k sats \\ 46 comments \\ [@NicoHeatingBTC](https://stacker.news/NicoHeatingBTC)\n3. [@Natalia](https://stacker.news/Natalia)'s been working and traveling for the past 7 years. She shares her motivations, the pros and cons of being a nomad, and what's next.\n - [My Reflections on Being a Nomad 🦅](https://stacker.news/items/484127)\n - 22.3k sats \\ 63 comments \\ [@Natalia](https://stacker.news/Natalia)\n4. After years of operating a portable lightning node with 300 channels on a 4G cellular connection, [@javier](https://stacker.news/javier) gives up on the node.\n - [I'm closing my old 300 channels Lightning node, here are the reasons](https://stacker.news/items/486283)\n - 6.8k sats \\ 33 comments \\ [@javier](https://stacker.news/javier)\n5. The travel industry has one the most perceptible rises of privacy invasion. Back from a recent cruise, [@siggy47](https://stacker.news/siggy47) dishes about its privacy issues.\n - [Random Privacy Issues On My Cruise](https://stacker.news/items/479372)\n - 4k sats \\ 58 comments \\ [@siggy47](https://stacker.news/siggy47)\n\n##### Top AMAs\n- [Relai AMA](https://stacker.news/items/484122)\n - 18.7k sats \\ 46 comments \\ [@julian_liniger](https://stacker.news/julian_liniger)\n- [AMA: I work at a company called Kaboomracks selling Bitcoin miners](https://stacker.news/items/481607)\n - 8k sats \\ 67 comments \\ [@KaboomracksAlex](https://stacker.news/KaboomracksAlex)\n\n##### Don't miss\n- [Learn How to Verify with Me ( with Baby Steps )](https://stacker.news/items/481039)\n- [Sigbash: a privacy-friendly Bitcoin multisig key agent](https://stacker.news/items/481416)\n- [BitVM 2: Permissionless Verification on Bitcoin [Draft writeup]](https://stacker.news/items/479954)\n- ["I don't know" - Nicolas Dorier, BTCPay Server creator](https://stacker.news/items/479886)\n- [Ask SN: which OTC did you tried?](https://stacker.news/items/479216)\n- [incredibly impressed by LND + Neutrino](https://stacker.news/items/483493)\n- [Is custodial bitcoin really worth anything?](https://stacker.news/items/480996)\n- [Buying non-KYC bitcoins peer-to-peer #1: Peach](https://stacker.news/items/485335)\n- [Lightning Network Onion Routing: Sphinx Packet Construction](https://stacker.news/items/480902)\n- [FUD Or Reality Check ?](https://stacker.news/items/480142)\n- [Favorite non-bitcoin (or adjacent) podcasts](https://stacker.news/items/478398)\n- [Bitcoin Mining Industry Introduction](https://stacker.news/items/477320)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Top Stackers - Sats Per Write & More Metrics](https://stacker.news/items/485622)\n- [SN release: new navigation stuff, search UX improvements, hashed api keys, more](https://stacker.news/items/484351)\n- [What do you know about zaprank?](https://stacker.news/items/486239)\n- [Some thoughts on SN rewards](https://stacker.news/items/483974)\n- [Do you Downzap?](https://stacker.news/items/479909)\n- [SN Invite Links & Bitcoin Meetups](https://stacker.news/items/483279)\n- [[API Key Request] Remindme bot](https://stacker.news/items/480947)\n\n\n-------\n\n##### Top Monday meme \\ 25.3k sats \\ [@corndalorian](https://stacker.news/corndalorian)\n![](https://imgprxy.stacker.news/TT255Ky8rUBx6ataxW9eORMJxs0r-9BWjuu0FWChFA4/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMjg1MQ)\n\n[**all monday memes**](https://stacker.news/items/479540)\n\n------\n\n##### Top Friday fun fact \\ 10.6k sats \\ [@raw_avocado](https://stacker.news/raw_avocado)\n> **Did you know BIP39 had a 5th author who removed himself?**\n> ![1_grain.jpg](https://imgprxy.stacker.news/GDUiGT8oI8cGbZQDRYcMf_NVVwRVEc18ryXqNnkk7TY/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzg4NA)\n> Thomas Voegtlin(creator of Electrum) removed himself from the authors after multiple disagreements with the BIP39 design.\n>\n> If you are not aware there was quite a bit of drama on the Bitcoin mailing list around '13 when the standard was being proposed.\n>\n> For context, Electrum was the 1st deterministic Bitcoin wallet that allowed for a BIP32 seed to be backed up into 12 words, and then came BIP39.\n>\n> In all fairness BIP39 was kinda rushed, and even though valid criticism was provided regarding it's shortcomings, they were ignored.\n>\n> Electrum has its own backup scheme that supports versioning & is not dependent on a dictionary, vastly superior IMO.\n\n\n[**all friday fun facts**](https://stacker.news/items/485342)\n\n------\n\n##### Top Stackers\n1. [@supertestnet](https://stacker.news/supertestnet): 139.7k sats stacked\n2. [@NicoHeatingBTC](https://stacker.news/NicoHeatingBTC): 44k sats stacked\n3. [@grayruby](https://stacker.news/grayruby): 42.8k sats stacked\n4. [@DarthCoin](https://stacker.news/DarthCoin): 42.5k sats stacked\n5. [@Undisciplined](https://stacker.news/Undisciplined): 41.3k sats stacked\n\n------\n\n##### Top Spenders\n1. [@Undisciplined](https://stacker.news/Undisciplined): 65.7k sats spent\n2. [@0331a73357](https://stacker.news/0331a73357): 63.1k sats spent\n3. [@grayruby](https://stacker.news/grayruby): 61.1k sats spent\n4. [@DarthCoin](https://stacker.news/DarthCoin): 32.9k sats spent\n5. [@TNStacker](https://stacker.news/TNStacker): 29k sats spent\n\n------\n\n##### Top Cowboys\n1. [@kr](https://stacker.news/kr): 424 days\n2. [@orthwyrm](https://stacker.news/orthwyrm): 308 days\n3. [@SatsCats](https://stacker.news/SatsCats): 209 days\n4. [@tnuts420](https://stacker.news/tnuts420): 208 days\n5. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 204 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 5708 \N 403633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1593468290643 0 \N \N f 291787315 \N 2 111122528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404393 2025-02-15 20:51:24.947 2025-03-29 22:39:47.603 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 21402 \N 404393 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 11.6394494893514 0 \N \N f 231956266 \N 2 89743116 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423667 2025-03-03 14:22:17.678 2025-03-29 22:39:47.608 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 5497 \N 423667 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 27.6468390439346 0 \N \N f 8008923803 \N 62 13120799 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 10 0 0 458288 2025-03-29 07:04:43.67 2025-03-29 22:39:47.608 Hal Finney Essays: The Beauty of ECash \N https://fennetic.net/irc/finney.org/~hal/beauty_ecash.html 10311 \N 458288 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 12.5895638954428 0 \N \N f 327594334 \N 3 171014509 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410094 2025-02-20 08:47:37.865 2025-03-29 22:39:47.608 Why does WhatsApp not encrypt Google Drive backups? (2021) Ah, damn, reconsidered my territory choice and wanted to switch to ~privacy but it's more expensive to post there\n\n![2024-01-09-140200_363x68_scrot.png](https://m.stacker.news/11424)\n\n/cc @davidw fyi lol\n\n---\n\n> WhatsApp has end-to-end encryption, promising privacy to users.\n>\n> However, it becomes useless if backups to Google Drive are unencrypted. Our supposedly private data goes to the control of Google.\n>\n> No problem, I can disable the backup. But, what about all the people I talk to? Google still holds most of my conversations, unencrypted.\n>\n> This seems to be a useless/tricking/lying design, done in purpose to ensure they keep control of the users. (and keep in mind that Whatsapp reminds me MANY times to enable the Backup)\n>\n> I understand that as soon as I send a message to another person, they can take screenshots, show to other people, etc. I understand that risk. However, not encrypting backups just makes it way easier for the messages to be even more exposed.\n>\n> Question is - I'm sure WhatsApp could encrypt backups to Google if they wanted (e.g. require a passphrase to users, or at least have that option and recommend users to use it). Why does WhatsApp not do that?\n\n---\n\nI did not verify if this is still the case (or ever was indeed the case) but back when I still used WhatsApp, _I think_ I once saw the "information" (should have been a warning!) that the backups (that were enabled by default iirc) are **not** encrypted by default -- but I can set a password to enable encryption.\n\n\nI can see how WhatsApp (or did Facebook already own WA at that point?) thought it's easier to roll out backups without encryption.\n\nBut don't call your app E2EE then. That's essentially a backdoor. Rolling out unencrypted backups and still pretending that your app is E2EE is a huge red flag.\n https://security.stackexchange.com/questions/212062/why-does-whatsapp-not-encrypt-google-drive-backups 703 \N 410094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.349209050142605 0 \N \N f 400034345 \N 6 52438468 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 431152 2025-03-09 15:47:40.07 2025-03-29 22:39:47.608 howdy! I'm Allen Farrington, AMA. I'm a professional investor and writer, and board observer at Blockstream. I recently left my tradfi job to start an as-yet-unannounced bitcoin company. ask about anything - I'd recommend finance, economics, economic history, mathematical logic, or Love Island - but I'm happy giving needlessly contrarian answers to whatever you like! :D \N 9355 \N 431152 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 28.5466183400453 0 \N \N f 44123833 \N 1 162605067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420178 2025-02-28 14:31:14.939 2025-03-29 22:39:47.608 Migrating to another country with only $120 plus a $30 plane ticket 🛫🎫 \nThis post comes from here \n[3 Great Experiences that will not be repeated ](https:stacker.newsitems760954rflat24) \nCommenting on some peculiar experiences that I had at some point in my life, which I think I will not repeat again, for different reasons.\nAnd then...\nI thought it would be interesting to try to find out what interest some stackers would have about these great experiences, so I made a survey: \n[Survey](https:stacker.newsitems770670rflat24) \nSo, the survey was a success, giving the *Option #3* as the winner\n\nI will try to summarize my story, limiting myself to the most relevant, and at the end I would like to leave a reflection from the new perspective that lives in me (The New and improved Bitcoiner perspective) to further establish what was expressed in the first post, why these experiences will not be repeated. \nAlso when writing these lines I noticed that it would not be a very short story, so it will be divided into *"Chapters"*.\nI hope you can enjoy this story of migration, overcoming and learning. \n\nI was able to read a little of @bief57's story \n[Living in Communism](https:stacker.newsitems378450rflat24) \nAnd I couldn't help but empathize with his story, since it also dates back to the same time and the same crisis.\n\n**Migrating to another country with only $120 in my pockets plus a $30 plane ticket** \n**📎Chapter 1️⃣.**\n\nThis story goes back to 2016. The beginning of my great journey as a migrant. \nIn those days, things in Venezuela were very chaotic, in terms of the economy and other aspects that are of vital importance. My surprise was even greater when I realized that in the past half a year I had only been able to pay my rent and eat. That year I had not been able to save anything and neither had I been able to buy many things. It is worth noting that in those days my ignorance about money was greater than today, and that obviously I was not even close to knowing Bitcoin at that time. \n\nAmong so many things that were happening in the country during those days, an idea came to my head, I had to migrate. I could not stay in Venezuela if I wanted to continue moving forward with my life. In that year of 2016, all the hyperinflation and the mega devaluation of the Bolivar exploded in my face, seeing how most of my income and savings capacity had disappeared, my source of employment that year was also weakening more and more every day due to the economic situation in the country (I worked in tourism) and then I concluded that I had to migrate.\n\n*But that was a pretty difficult task.*\n\nAs I mentioned, my savings had been totally eroded in just the last two years from 2014 to 2016, which was when the government got out of control with the printing of the Bolivar... I had a small amount of gold that they gave me for my baptism in 2012 and that I sold just before it started to rise in 2015 **(in my family there was never a culture of saving gold or other assets, we were simple mortals saving our energy in government papers and inside the bank).** Only the things I had been able to buy were saved, such as cameras, snorkeling equipment, and other tools that I had bought because I used them for work, including a video game console. Nowadays, understanding inflation and paper money a little better after what I experienced, I understand why I was able to sell some of the belongings I had acquired in those two years at the same price or even above the value, and which I later sold to raise the money needed to leave.\n\nSo I tried to start selling all my belongings, because I had to leave the country soon, since once I left my job, every day that passed was a day of expenses, of zero income, and without knowing it, at the same time something was happening hidden from my eyes, my money, even if it was in dollars, was losing purchasing power as the days went by.\n\n*So I set my course with the intention of going to Brazil with a couple of friends.*\n\nWe took the necessary measures, we got some vaccines that were required to enter the country and when the trip was almost ready, I went. All plans fell apart, one of the friends had just had his first child and was hesitating about leaving. \n\nWhile that was happening, another friend left the country and wrote to me via FB. \n>Brother, I went to the Dominican Republic, there is a promotion with an airline, the tickets cost $30 and here you can work and life is not so expensive. If you want to come, you can stay where I live and here we tried. \n\nWhen I read that message, my head exploded 🤯 I didn't think about it for long, I spoke to the remaining friend who was in Venezuela. I proposed the idea, I showed him the message, I spoke to the friend who had already migrated to tell him that I would go with someone else and that was it. \n\nI remember that after selling some things, I left some money to my mother and I decided to leave. I remember as if it were yesterday when my mother asked me. \n>Son, are you sure?\n\n-And I remember answering her -\n\n>Obviously I don't want to leave Mother, but staying here leaves me with no other option than waiting for you to die so I can have my own house, and I don't want that. I need to get out and see what's out there. I need to get out so I can find opportunities. \n\nAt the end of that day, I had already bought a ticket, I had sold some of my belongings and when we thought everything was ready. I see that my flight was in a week and that it was scheduled for the day when a mega demonstration was being called in the capital against the Tyrant Government. The capital would be collapsed and I had to go through there to get to the international airport and take my flight... \n\n**To be continued!!** \N 1039 \N 420178 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 26.7634452120953 0 \N \N f 379089035 \N 2 173977973 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457966 2025-03-28 20:17:29.648 2025-03-29 22:39:47.604 The Bitcoin Woodworker I work as an Ecommerce Manager for a mid-size woodworking distributor that got acquired last year by a massive multi-national private corporation (the parent company is a large global industrial distributor across multiple verticals). \n\nI want to accomplish four things..\n1) launch a new ecommerce brand/property strictly focused on Bitcoin and woodworking\n2) hold Bitcoin as a treasury asset\n3) accept Bitcoin as payment across multiple website properties \n4) illustrate success in woodworking vertical and expand into the other verticals of the parent company \n\nHow do I convince mgmt that this is a good idea and get buy-in from the c-suite? And what Bitcoin companies/products in the ecosystem should I incorporate into this plan for execution? \n\nDoes anyone have experience with this style of orange pilling / orange implementing? 🍊 \n\nTY! \N 21248 \N 457966 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 21.0524485899371 0 \N \N f 481616395 \N 2 190393228 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407713 2025-02-18 10:16:56.763 2025-03-29 22:39:47.605 Ek's Irregularities #1 | Clickbait Title ## Maybes of Life\n\nThis is a maybe-series post. A post that might start a life-altering experience but I am not going to call it that since I acknowledge the quitter side of me. Life also has its own ways to alter itself, it doesn't need my interference. So let's not start something we never really wanted to keep up anyway; at best only for the looks of it. Let's just go with the flow and be inspired by water. I think it has some things figured out that we can learn from it.\n\nFor example, water just exists. It ebbs and flows but it doesn't start writing something on Stacker News with no idea about what except the desire to do something meaningful; just to submit the post in a split-second decision in the end because it took too long _again_, you lost your motivation one hour ago and wonder if you just wasted your time _again_: \n\n> _What was it all for? Was it worth my time?_\n\nI think it was for me and I am worth my own time. For example, we can learn that we're alive unlike water.\n\n_All of that sounded better in my head [so let's just continue](https://www.youtube.com/watch?v=Rs7PvbVqc9g&t=175s)._\n\n## The Experience of Quitting\n\nIt's true, I am kind of a quitter. I like to quit things I like, especially if I excitedly proclaimed after the first few times that I am going to keep doing them forever. One of my earliest memories is the day I joined a soccer club as a kid. After I came home, I told my parents that it was SO MUCH FUN and I will go EVERY time. All I did that day was to sit on a bench for 89 minutes. In the last minute, the trainers must have decided that it was impossible for me to fuck the whole game up in a single minute now (we had a pretty big lead iirc) so I was exchanged in for someone else so I can see at least some action on my first day, I guess.\n\nI didn't realize that it was the last minute so I thought this was the moment to ~proof~ prove to the world and myself that I was serious business. I wasn't here to fuck spiders. Being allowed to enter a soccer field while a _real_ match was ongoing must have been the coolest thing that ever happened to me up to then. So cool that I decided that this should become my life-defining moment: standing in the corner of the field, eyes locked on the ball on the other side of the field and walking as if I am prepared for the best attempt from someone of that other side to rainbow-flick / marseille-turn me into oblivion like the next Ronaldinho.\n\nWhat I didn't know that day was that this would instead become one of few core memories in hindsight. It's also one I cherish: that adrenaline, that anxiety, that pure concentration on a single thing shared by 21 others, how humans generate meaning out of nothing; it was like a glimpse into the many ways life can be experienced, however brief it might actually have been.\n\nI think I didn't even go the next time since I rememberd that one of the trainers was actually quite scary. I think they just spoke too loud for anxious little furball me. That the other kids laughed at me for bringing Coca-Cola instead of water was maybe also related to my faded enthusiasm after thinking through my first experience. They were right to mock me though, it was pretty cringe in hindsight and you can't be too hard with kids as kids are kids, right?\n\n## Other Things I Quit\n\n* running\n* playing guitar (even though I'd say I consciously transitioned to playing piano instead)\n* playing piano (kind of)\n* climbing / bouldering (not accepted the quitting yet)\n* soccer, taekwondo\n* crocheting\n* [collecting Diddl sheets](http://diddlfriends.org/DIDDLFRIENDS/Diddlfriends_eng/eng_index.html)\n\n![](https://m.stacker.news/52997)\n\nnot my collection, just examples for the sheet design from the link\n\n* collecting friends in a friend book\n* some friends\n* SchülerVZ for Facebook, then Facebook\n* keeping a dream journal to help with lucid dreaming (I still have the journal though)\n* smoking (multiple times)\n* going to school (for a few months)\n* maintaining a status page built with Grafana + Prometheus for my VPN and home network and every device in it and therefore being on the verge of moral decay by plotting when flatmates are home using data from the router but I was able to resist this power of data that I discovered (it felt so weird I didn't even ask for permission to use it)\n* playing CTFs and being an active member of the university CTF team that regularly participates in the DEFCON CTF onsite (I never really was, too much on and off for years)\n* PC gaming because I became a total Linux fanboy and hate Windows with a passion\n\n## My Vision of Stacker News\n\nI've actually intended to write about my vision for Stacker News because that sounded cool in the moment. Somehow that resulted in me rambling about quitting. That sounds like I am thinking to quit SN but it's actually about quite the opposite: I am thinking about how to NOT quit something I love doing _again_ because I apparently just don't like routines to the point it's ruining my life.\n\nSomething about routines must scare me on a deep level. I mean, I am a programmer and as one I love routines. Such encapsulation, much easy to reason about, [stack-smashing fun](https://phrack.org/issues/49/14.html#article). But routines in life? That sounds like my life is over. That's it, I will forever do the same things over and over again like a true pure function so I might as well smash my own stack and see what's on the other side of that `RET` instruction, assuming the universe is written in x86 assembly.\n\nI can't for the hell of it keep a consistent sleep routine even though I know how much happier I am when I routinely see the sun (writing this fully awake at ~4am~ ~5am~ 7am now) or when I get stuff done early in the morning (especially on a routine). But I also hate how it gets old to just _have to_ do that or _have to_ do this. Life is full of all these small routines, it makes you wonder if life is just one big routine. It doesn't help that you can pick which routine you want, it's still a routine in the end. Spiraling down this train of thought, you wonder if free will is just this meme:\n\n![](https://m.stacker.news/53001)\n\nThe hardest ~routine~ trap consists of "you just _have to_ listen to your body". Sometimes, I am convinced that just my body is tired and it's holding me back and most of me knows that it's irrational, dumb and we should definitely listen to our bodies since we're "trapped" inside them and we'll else _have to_ suffer the consequences later but then stubborn, arrogant little me that never grew up, has no intentions of doing so and just _has to_ do SO MANY things it doesn't want takes over and says:\n\n> _But do we have to do that EVERY time now? Can't you like stop adulting for a few minutes and just HAVE SOME FUN instead? We also HAVE TO have some fun, right?!_\n\nThen I get stuck in a "just one more thing"-loop until I am not even tired anymore and going to sleep is now just a question of how fucked up my sleep schedule should be.\n\nIt's almost as if I have to regularly [experience how good something is by depriving myself of it](https://www.youtube.com/watch?v=RBumgq5yVrA).\n\nHowever, I fortunately also notice how it's getting easier and easier to become aware of all these little decisions that seem insignificant in the moments but still consistently lead to significantly worse periods in my life. A pattern of the little kid and what triggers it, how it can be reasoned with, stuff like that is basically emerging (it's about time). It's really nice to be able to shake off the urge to smoke something by simply coughing and getting reminded of how bad I used to cough because of it so we better not start again. Or looking at that cup of iced coffee and feeling like you need to throw up because you can already taste how mind-boggling sweet it is so you lose all desire to actually drink it even though it was something you used to look forward to every day. It feels a bit like reading the code of life and it's indeed x86 assembly. Just a bunch of "if this then that"-s with a few variables in your control. Additionally, you not only see how easy it is to lose a good track in life (which helps with avoidance) but also how easy it is to get back on track.\n\n**Maybe that's what growing up is about? How to be responsibly irresponsible?**\n\nThat sounds cool, I'll write that down.\n\n---\n\nOh well, now I rambled a little about my love for routines instead of some vision of SN. But I also wanted to write about how I even got here and appreciating it and what I think how SN might turn out on some interesting time scales. Mhh, maybe most of it another time but here's what I can already share:\n\nWhen I was in Austin and @MaxAWebster was visiting, he asked me what I think where SN will be in five years (or something like that, I don't remember the exact question). I responded that I really don't know but I hope that Reddit is no more and maybe something about how SN at least lead the way how to make social media suck less? In hindsight, I wished I had a better answer but I am still quite happy with my performance during the conversation since I wasn't as nervous as I can be when I meet new people; I was actually quite relaxed (maybe @MaxAWebster's enthusiastic energy is just too reassuring that you can't mess up talking to him). I also didn't think of it as a VC checking out the first employee of one of the startups they are invested in; it was a very casual and typical water cooler chat (but I was wondering about it in hindsight).\n\n**Anyway, back to my "vision": it's simply still being here in 5 years**. It's not a very detailed vision since I actually like the openness about it. "Still being here" can mean many things but it definitely means that SN still exists and I am a part of it. At the pace the space we're in is progressing (nostr wasn't really a thing until early last year imo) and considering internal plans to decentralize further (not only going non-custodial for the wallets but _everything_), it's definitely exciting to think about though. Excitingly enough that I can see myself actually committing to something for so many years (next to the "golden handcuffs").\n\nTo make the vision a bit more concrete, I'd say that in 5 years, I'd like to see following things:\n\n- @k00b doesn't have to fund the rewards with 100k sats each day anymore\n- well-run territories are profitable and no longer an unsustainable "labor of love"\n- there are many interesting territory models, not just one "meta" that gets stale like in games\n- territories really feel like territories like [autonomous systems](https://www.cloudflare.com/learning/network-layer/what-is-an-autonomous-system/) on the internet\n- people don't claim that tags would have been better than territories anymore\n- we've ventured a bit into [virtual spaces](https://workadventu.re/), for example as an addition to the saloon\n- site is very stable and still easy to contribute to\n- iOS push notifications work\n\n(maybe in this order)\n\nThe End \N 3360 \N 407713 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1866819279858 0 \N \N f 226318370 \N 1 60016286 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417971 2025-02-26 18:17:48.749 2025-03-29 22:39:47.605 Which matters more: a good question or a good answer? Recently I was asked: Which matters more: a good question or a good answer?\n\nAt that moment, I didn't know how to respond. I was unprepared for such a dilemma. \n\nI believe both are important, but a good answer is slightly more crucial. A good question can be posed by many, but a good answer is more difficult to find.\n\nI'm still confused! 💬 \N 1567 \N 417971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2366018685433 0 \N \N f 143084112 \N 1 7512675 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427972 2025-03-06 18:32:35.685 2025-03-29 22:39:47.605 Small Things This has got a similar wise vibe as some of Henrik Karlsson's stuff (here's a [recent one](https://stacker.news/items/527178)) so if you liked that, you'll probably like this.\n\nThe general attitude of "small things matter" has been much on my mind recently. The author is talking about stuff mostly from a marketing / business perspectives, but lines like this one:\n\n> When someone least expects an act of generosity it has a tattoo like impact.\n\nsuggest the scope is much larger. The opportunity to take care of someone, to step up, do something kind, be there, be _better than you have to be_ is like nuclear warhead powerful. You never forget when someone does that for you. \n\nAnd yet it's so easy to lose sight of what's possible. To get swept up in your own dumb shit and to be reduced by it. Or at least, it sure is for me. https://rishad.substack.com/p/small-things 20023 \N 427972 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 2.8564107069402 0 \N \N f 76577857 \N 1 191558978 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 440727 2025-03-17 13:56:40.606 2025-03-29 22:39:47.605 How to begin restoring normalcy with friends/relatives? TL;DR - You may have noticed that it's been hyper-political since ~2016, and i want to use the opportunity today to begin normalizing conversations with close family who took the losing side of the bet. Is now the time? What strategies might work well? What pitfalls should I avoid?\n\n--- \n\n\nSo, here we are, the day after a rather remarkable election result. I've spent the last 8 years or so trying to avoid conversations about politics with close family and some friends. I've chosen to forgoe deeper, philosophical conversations about governance and economics in favor of "how about this weather" just for the sake of avoiding landmines and preserving calmness.\n\nToday, I must imagine, that those same friends and family are reeling a bit from the results. I'd like to reach out and discuss the circumstance, and results with them. How are they feeling about the results? Do they have any reflections? Does this result impact their views/opinions about the last 8 years?\n\nPerhaps it is too soon to discuss, and maybe I should let conversations encouraging placid and neutral topics continue for a while, but I know that I'm missing the depth of relationships with them that I want back. I miss digging into the deeper topics, and have learned to avoid doing so because of the frustration that erupts from (what I see as) distorted views of the world.\n\nWhile I don't presume the ability to predict the future, I was able to predict this outcome. And I think the popular narrative that has unfolded at the ballots seems to support my thesis. So, now, I feel like I have a bit of evidence-to-the-contrary to share with these now-distant associates, and I want to begin the process of healing and reintegrating them to a normalized worldview (pretty assumptive of me to assert that i have the normal worldview, but fuck-it... i'm obviously more right about things).\n\nMore than rubbing their noses in it, I would like to return to the feeling of having them on my side. I want to use this as a learning opportunity, and gently support healing of some old wounds on myself (things have been said) and for them (they've been seriously misled).\n\n---\n\nDoes this sentiment resonate with any stackers out there? Is it possible to regain the trust of these individuals and to help them back into the fold, and shepherd them from the mainstream idiocy? Am I gloating already?\n\nWhat ideas do you have about how to navigate relationships with our friends/relatives who have held distinctly antithetical views about the nature of contemporary reality for the past 8 years?\n \N 13169 \N 440727 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 24.1295392599996 0 \N \N f 241242960 \N 2 186404720 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441021 2025-03-17 17:51:40.51 2025-03-29 22:39:49.238 \N ![20231203_234227.jpg](https://m.stacker.news/6668) https://example.com/ 1534 440902 440902.441021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9421452610263 0 \N \N f 0 \N 0 113624797 0 f f \N \N \N \N 440902 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424257 2025-03-03 23:27:40.668 2025-03-29 22:39:49.24 \N Day 133 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 1603 419514 419514.424257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9778342492198 0 \N \N f 0 \N 0 123570518 0 f f \N \N \N \N 419514 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431121 2025-03-09 15:29:56.855 2025-03-29 22:39:49.241 \N DDoSer on the phone.\n\nYes, you're absolutely right - it was done for fun. I'm testing a new method for DDoSing Amazon targeted servers, and stacker.news is the right place for such testing.\n\nI apologize if I did any harm :c\nI read stacker.news regularly myself and like lightning news https://example.com/ 9242 410728 410728.431121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1691412228027 0 \N \N f 0 \N 0 219774229 0 f f \N \N \N \N 410728 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437726 2025-03-14 20:07:50.104 2025-03-29 22:39:49.242 \N **Top 21 domains shared on SN**\n\n_includes links shared as posts and in text_\n\nTotal links: 118,404\n\n| Rank | Domain | Total | Percentage |\n| ---- | ------ | ----- | ---------- |\n| 0 | twitter.com | 12,051 | 10.18 |\n| 1 | www.youtube.com | 10,760 | 9.09 |\n| 2 | youtu.be | 6,937 | 5.86 |\n| 3 | news.ycombinator.com | 4,815 | 4.07 |\n| 4 | stacker.news | 4,651 | 3.93 |\n| 6 | github.com | 3,658 | 3.09 |\n| 7 | bitcoinmagazine.com | 2,350 | 1.98 |\n| 8 | i.postimg.cc | 2,279 | 1.92 |\n| 9 | postimg.cc | 1,938 | 1.64 |\n| 10 | i.imgur.com | 1,557 | 1.31 |\n| 11 | archive.ph | 1,453 | 1.23 |\n| 12 | www.coindesk.com | 1,209 | 1.02 |\n| 14 | cointelegraph.com | 984 | 0.83 |\n| 15 | nitter.it | 957 | 0.81 |\n| 16 | www.nobsbitcoin.com | 929 | 0.78 |\n| 19 | www.zerohedge.com | 848 | 0.72 |\n| 20 | fountain.fm | 809 | 0.68 |\n| 21 | bitcointv.com | 738 | 0.62 |\n\n**Top 21 image hosts used on SN**\n\nTotal image links: 7,431\n\n| Rank | Domain | Total | Percentage |\n| ---- | ------ | ----- | ---------- |\n| 0 | i.postimg.cc | 2,266 | 30.49 |\n| 1 | pbs.twimg.com | 560 | 7.54 |\n| 2 | i.ibb.co | 331 | 4.45 |\n| 3 | nostr.build | 292 | 3.93 |\n| 4 | www.zapread.com | 263 | 3.54 |\n| 5 | cdn.nostr.build | 248 | 3.34 |\n| 6 | i.imgflip.com | 169 | 2.27 |\n| 7 | nitter.at | 135 | 1.82 |\n| 8 | imagedelivery.net | 103 | 1.39 |\n| 9 | media.tenor.com | 91 | 1.22 |\n| 10 | bitcoinscoresby.com | 78 | 1.05 |\n| 11 | upload.wikimedia.org | 76 | 1.02 |\n| 12 | image.nostr.build | 69 | 0.93 |\n| 13 | i.redd.it | 58 | 0.78 |\n| 14 | files.peakd.com | 54 | 0.73 |\n| 15 | preview.redd.it | 53 | 0.71 |\n| 16 | void.cat | 45 | 0.61 |\n| 17 | gcdnb.pbrd.co | 43 | 0.58 |\n| 18 | www.ft.com | 41 | 0.55 |\n| 19 | substackcdn.com | 35 | 0.47 |\n| 20 | i.kym-cdn.com | 34 | 0.46 |\n| 21 | imgproxy.iris.to | 32 | 0.43 |\n\n https://example.com/ 4259 437710 437233.437512.437619.437707.437710.437726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.93083450044575 0 \N \N f 0 \N 0 194736716 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 440988 2025-03-17 17:33:00.159 2025-03-29 22:39:47.606 Public goods are not what we're told they are When people call something a public good, they usually refer to things like so-called public roads, public buildings, public schools etc.\n\nBut those things are not public. They're state-owned. You need permission to use them and you may even get arrested for trespassing f you try to enter a 'public' building without permission.\nCalling them public is manipulative statespeak.\n\n## So what would it be fair to call public?\n\nOne thing is information. As a non-rival good, it's truly public.\nThis includes FOSS, but also any code that has been leaked to the public.\nSimilarly all the books (in the sense of content, not the physical material), scientific knowledge, musical compositions etc.\nProtocols, like TCP/IP and Bitcoin.\n\nI'd also say the internet, i.e. the network itself, is public. Its infrastructure (cables, servers, routers etc.) is owned by private entities, but the network is a public good.\nAs are natural languages (English, Spanish etc.), programming languages, sports, games like chess, the metric system and so on.\n\n## But what about the physical?\nIt gets tricky, because physical goods tend to be scarce.\n\nOne could make an argument that - at least from the perspective of our life on Earth - the sun, the moon and the stars are public goods; they benefit us (by giving us warmth, light or navigation tools), but none of us has any more right to them than anyone else, particularly due to our physical limitations, which don't allow us to access them in ways other than basking in their light or looking at them - at least for all practical reasons and for the time being.\n\nThe oceans and the air could also be argued to be public. The same limitations don't exist as in the case of celestial bodies, so their 'publicness' is not guaranteed. However, their public status is owed to a combination of factors: their perceived abundance, difficulty of access, low utility etc.\n\nNo one's land, such as the Antarctic, could be viewed as public, but if we find we can e.g. mine bitcoin there using geothermal energy, it will cease to be public in no time. \N 17321 \N 440988 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.09448738317 0 \N \N f 241982307 \N 2 108338494 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446962 2025-03-21 14:51:15.342 2025-03-29 22:39:47.606 Trump says he will commute Ross Ulbricht's sentence \N https://x.com/AutismCapital/status/1794535861545271722 9346 \N 446962 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.25986807560415 0 \N \N f 304008028 \N 3 237120111 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 10:22:29.461 f \N \N \N 0 0 0 0 2 0 0 436669 2025-03-13 19:17:22.914 2025-03-29 22:39:47.607 Anita Posch Donations 501(c)(3) status Anita Posch has announced that donations to her charity are now tax deductible in the U.S. Bitcoin For Fairness is now a 501(c)(3) public charity. Here is the link to the web site:\n\nhttps://bffbtc.org/\n\nAll sats will go to Anita (except for the first 14 that beat me to the punch)\n \N 18923 \N 436669 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.7559035062584 0 \N \N f 638198041 \N 5 231906279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 14:28:23.126 f \N \N \N 0 0 0 0 2 0 0 435375 2025-03-12 16:27:58.98 2025-03-29 22:39:47.607 Meme Monday: Best Bitcoin Memes Earn Sats | Sponsored by Zap.meme Time for Meme Monday sponsored by Zap.meme!\n\n\n\n[Zap.meme](https://zap.meme) is a brand new meme platform (currently competing in the PlebLab's Top Builder competition) where you can create and share memes and emojis, and earn Bitcoin!\n\nLast week's Meme Monday winner sent in [this meme](https://stacker.news/items/422299), and this week we have 85,000 sats up for grabs:\n- 50,000 sats for 1st place\n- 25,000 sats for 2nd place\n- 10,000 sats for 3rd place\n\nThe winner will be the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow, and 2nd and 3rd place finishers will be determined by the @zapmeme team.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 21058 \N 435375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6073105660469 0 \N \N f 759906284 \N 6 122089212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 18:07:59.78 f \N \N \N 0 0 0 0 4 0 0 442688 2025-03-18 18:33:19.986 2025-03-29 22:39:49.242 \N ![](https://ibin.co/719ujRVrVBTo.jpg)\n https://example.com/ 7960 442529 442529.442688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4345049124879 0 \N \N f 0 \N 0 248718668 0 f f \N \N \N \N 442529 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455199 2025-03-26 19:46:02.115 2025-03-29 22:39:49.242 \N Thanks everyone. Been feeling kind of overwhelmed lately and needed this. https://example.com/ 18678 455117 455117.455199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3737815277605 0 \N \N f 0 \N 0 78581208 0 f f \N \N \N \N 455117 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450696 2025-03-24 06:56:32.217 2025-03-29 22:39:49.242 \N > I thought this was a good insight into how bitcoin core nodes find peers on the network (using a hardcoded list of seed nodes)\n\nNot quite correct: that's the first method they try. But if that fails, there is a backup list of IP addresses that are tried too. Also, for Tor only nodes, IIRC there's some fixed `.onion` addresses that are tried too. I2P probably has something similar.\n\nIf you run a node with `-connect`, the seed nodes and other mechanisms aren't used. Similarly, if you use `-addnode`, provided your node works and returns addresses, the seed nodes aren't that relevant either.\n\nAssuming your ISP isn't themselves MITM attacking you, you only need a single "honest" peer for Bitcoin to properly connect to the P2P network. So the seed node mechanism has a *lot* of redundancy. https://example.com/ 21083 450432 450364.450432.450696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0702205609515616 0 \N \N f 0 \N 0 144928898 0 f f \N \N \N \N 450364 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431233 2025-03-09 16:05:20.801 2025-03-29 22:39:49.243 \N Question #1: Is Bitcoin's success inevitable? If not, what needs to be built to ensure success? https://example.com/ 2774 396413 396413.431233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.0630072670411 0 \N \N f 0 \N 0 20951031 0 f f \N \N \N \N 396413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435657 2025-03-12 21:15:15.326 2025-03-29 22:39:47.608 Bitcoin for Kids Continuing the theme of inheritance from my last post, I'd like to now talk about children. \n**How do you approach teaching your children about Bitcoin?** \n**Do you do it?** \n**Do your kids face misunderstandings when they try to tell their friends about Bitcoin?**\n\nI've recently wondered if my future children will definitely be learning about this topic. Because of this, I think we need to come up with more financial literacy and bitcoin education projects for kids. I know that there are already a number of children's books that talk about what it is and how to use it in a playful way. That's cool. \N 3417 \N 435657 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.3651758550434 0 \N \N f 2575981929 \N 20 39388949 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 05:02:12.265 f \N \N \N 0 0 0 0 6 0 0 413545 2025-02-23 10:17:50.612 2025-03-29 22:39:47.608 Introducing Taproot Swaps: Putting the "Fun" Back into Refunds! 🥕🔁 \N https://blog.boltz.exchange/p/introducing-taproot-swaps-putting 9450 \N 413545 \N \N \N \N \N \N \N \N health \N ACTIVE \N 24.8179864639171 0 \N \N f 139367172 \N 1 175641821 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436459 2025-03-13 15:15:19.371 2025-03-29 22:39:47.608 Taproot Assets on Mainnet: A New Era for Bitcoin and Beyond 🌅 \N https://lightning.engineering/posts/2023-10-18-taproot-assets-v0.3/ 1737 \N 436459 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.2365498193918 0 \N \N f 461353314 \N 4 62901901 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:34:17.561 f \N \N \N 0 0 0 0 2 0 0 444421 2025-03-19 21:39:20.536 2025-03-29 22:39:49.243 \N It'll be nice when people stop thinking of us as just another marketing channel and start thinking of us as a community of human beings. https://example.com/ 7119 444168 444168.444421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.556837114922 0 \N \N f 0 \N 0 101477370 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 400872 2025-02-12 15:08:17.496 2025-03-29 22:39:47.608 Golden Oldies Newsletter, #1 \n![](https://m.stacker.news/37061)\n\n### What Is this?\n\nThis is an experiment inspired by discussions and posts made by @Undisciplined, @elvismercury and others regarding evergreen content on SN. I will keep it simple at first, highlighting one or two Stacker News posts from the past each week that I believe were significant. I plan to post these newsletters every Tuesday.\n\nHere are this week’s Posts:\n\n- [SN Origin Story](https://stacker.news/items/1620/r/siggy47) by @k00b\n\nI know most of us have read this already, but it’s worth reading again.\n\n- [ODELL HERE. AMA](https://stacker.news/items/9696/r/siggy47) by @Odell\n\n AMAs are always popular. I decided to start with Matt Odell because, well, everyone likes Matt Odell. I’m sure someone will challenge me about that. \n\n\n\nLet me know what you think about this type post. Like I said, it’s an experiment.\n\n \N 20681 \N 400872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3110884358896 0 \N \N f 156823464 \N 1 88717647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438127 2025-03-15 09:22:45.241 2025-03-29 22:39:49.243 \N https://imgprxy.stacker.news/XIKofuLknEM_bfXxBmKhP7X-vryT6CVGC_5DrOaDaac/rs:fit:600:500:0/g:no/aHR0cHM6Ly96dXBpbWFnZXMubmV0L3VwLzIzLzM4L202MDcuanBn https://example.com/ 20778 437269 437269.438127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9255701614357 0 \N \N f 0 \N 0 142023644 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414245 2025-02-23 19:00:49.517 2025-03-29 22:39:49.243 \N Day 135 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 11760 414232 414232.414245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0437246808006 0 \N \N f 0 \N 0 126572048 0 f f \N \N \N \N 414232 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402845 2025-02-14 06:12:58.956 2025-03-29 22:39:49.244 \N Day 137 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 21083 402797 402797.402845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7986445316352 0 \N \N f 0 \N 0 158491443 0 f f \N \N \N \N 402797 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 406446 2025-02-17 10:58:46.8 2025-03-29 22:39:47.609 Sunday Survey: How much is the most expensive item you've bought with Bitcoin? \N \N 1638 \N 406446 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.41554436780382 0 \N \N f 91932643 \N 1 120198203 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436028 2025-03-13 08:47:37.13 2025-03-29 22:39:47.609 What ELSE is a shitcoin? (besides shitcoins) Look at my diversified portfolio!\n\nhttps://hips.hearstapps.com/hmg-prod/images/te-1606844664.jpg \N 3456 \N 436028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.72084891388752 0 \N \N f 8669482703 \N 71 27897339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 23 0 0 437924 2025-03-15 01:26:16.879 2025-03-29 22:39:49.244 \N ![](https://www.zapread.com/i/-8L) https://example.com/ 7913 435919 435154.435919.437924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4177041305807 0 \N \N f 0 \N 0 186046123 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447566 2025-03-21 23:15:21.932 2025-03-29 22:39:47.609 [WIP] BIP300 (Drivechains) consensus-level logic by luke-jr \N https://github.com/bitcoin/bitcoin/pull/28311 980 \N 447566 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 22.1444294156009 0 \N \N f 605063845 \N 5 93043711 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 424369 2025-03-04 02:59:26.448 2025-03-29 22:39:49.244 \N > Fundamentally, all current lightning channels could become entirely useless if on-chain fees went high enough because a single payment would require too many reserves.\n\nAll layer two designs suffer the same problem.\n\nFundamentally, transacting off-chain is going to be beneath “economic feasibility (if questioned)” for the median user.\n\nAttempts to build larger coin pools suffer from exit-ability and consensus problems (how do people agree on the state of the L2 accounts to consider it valid?). I don’t expect this to ever change, no matter what new primitives get forked in or protocols for “sharing utxos” get invented.\n\nChoosing fedimints is deciding on one set of tradeoffs (no supply auditability, risk of jurisdictional kyc ban hammer for federation withdrawals) — every choice has different drawbacks. There is literally no “best” solution. Saying you’ve found one without enumerating the tradeoffs isnt very useful imo for helping people understand the problem space. https://example.com/ 15180 424351 423955.424351.424369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.302406354823 0 \N \N f 0 \N 0 164593599 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441888 2025-03-18 10:55:49.526 2025-03-29 22:39:49.244 \N I know you all are amazing and would donate, but if this thing is going to have the life we all want it to, we to make money beyond donations so that's a higher priority.\n\nThe best way anyone can contribute to SN is to be a great stacker - supportive, thoughtful, helpful, and generous to other stackers.\n\n https://example.com/ 3544 441875 441875.441888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3464450784188 0 \N \N f 0 \N 0 48721467 0 f f \N \N \N \N 441875 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402836 2025-02-14 05:55:31.271 2025-03-29 22:39:49.244 \N Andreas Antonopoulos https://example.com/ 2013 402830 402807.402830.402836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.95992462667036 0 \N \N f 0 \N 0 100461135 0 f f \N \N \N \N 402807 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435994 2025-03-13 07:52:31.596 2025-03-29 22:39:49.245 \N I'm generally in favor of adding ~tech and seeing how it goes. My fear with some of these subs though is that they might dominate the front page and dilute the bitcoin stuff but it might be time to start experimenting and we'll only know when we've launched it. https://example.com/ 14651 435805 435805.435994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.325553942715 0 \N \N f 0 \N 0 19650791 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428458 2025-03-07 09:59:35.918 2025-03-29 22:39:49.245 \N Day 132 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 711 428368 428292.428368.428458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7746659034718 0 \N \N f 0 \N 0 231814789 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437947 2025-03-15 02:23:20.093 2025-03-29 22:39:49.245 \N That tax return just hit! Should I break sats with the SN family? If this post gets 20,000 sats I’ll drop 1M sats for a donation in the daily rewards. https://example.com/ 9337 437946 437946.437947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0829047816535 0 \N \N f 0 \N 0 163782152 0 f f \N \N \N \N 437946 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444578 2025-03-20 03:10:16.14 2025-03-29 22:39:49.246 \N ![](https://i.ibb.co/sjZ7wD7/Fpvone8-XEAASK-7.jpg) https://example.com/ 17237 444481 443372.443708.444481.444578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6214549877018 0 \N \N f 0 \N 0 213669195 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451343 2025-03-24 14:04:42.177 2025-03-29 22:39:49.246 \N "You have to give sats to get sats". You're right. I have told new SN members this. Many others have too. The guide and FAQ describe the reward system. I think it's still counterintuitive to many people. They should experiment to see it for themselves. There is an understandable tendency to hoard your stack that should be overcome. https://example.com/ 20817 451329 451329.451343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.29897142027831 0 \N \N f 0 \N 0 210387647 0 f f \N \N \N \N 451329 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441872 2025-03-18 10:47:39.359 2025-03-29 22:39:47.609 Options for cloud storage w/ no KYC, paid in btc? I've been taking baby steps to try to reduce my surveillance-state footprint. I'd like a source for cloud storage that I could pay for with btc, with no additional KYC. There seem to be some options ([filen](https://filen.io/) is one) but what I'd _really_ like is something like "Mullvad for storage" where you pay them btc, you get some services, end of story.\n\nI can see why there might not be such a thing (child porn, etc) but figured I'd ask what the best options are, according to stackers -- if you have to KYC / dox yourself, which services are the most minimal and most trustworthy? Some of you must have dug into this already. \N 9705 \N 441872 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.3498363727196 0 \N \N f 26150830 \N 1 156636286 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401289 2025-02-12 21:08:14.398 2025-03-29 22:39:49.238 \N Cool to see them surface. They've been building in the LDK ecosystem since about the same time we were. Except on hard mode with no-std in an SGX environment. You think running in the browser is hard lmao. \n\nIt's basically greenlight but the user keys are in an SGX server. I don't know how you prove that they are secure or that they are operating it in that way. Also you gotta trust SGX and there's been many SGX fail research. I don't know what is FUD or not.\n\nThe nodes are cheap to manage tho since LDK is incredibly lightweight. So they can always run, unlike with greenlight (unless they're working on making that scale better). So you can have more "offline receive" potential. Think of this as a less or more (depends on your assessment) trusted voltage with a wallet interface. https://example.com/ 18528 401207 401076.401192.401207.401289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3213707796278 0 \N \N f 0 \N 0 225381564 0 f f \N \N \N \N 401076 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458194 2025-03-29 04:54:38.37 2025-03-29 22:39:49.241 \N If you are talking about scripted multisig, i.e. one that uses either `OP_CHECKMULTISIG` or a leafscript with `OP_CHECKSIGADD`: **No**, because the address is a representation of the output script, and the output script includes a definition of which three public keys form the quorum. Changing the quorum will therefore change the output script and a different output script will be represented by a different address.\n\nIf you are talking about a P2TR output encoding an output that under the hood can be spent with a 2-of-3 threshold signature (e.g. using FROST or ROAST): **Yes**, because you can use two private keys to create three new shards of which 2-of-3 are sufficient to produce a valid signature. This allows you to rekey your wallet without moving your funds. https://example.com/ 16670 458139 457787.458139.458194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.466873106158 0 \N \N f 0 \N 0 26707434 0 f f \N \N \N \N 457787 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448333 2025-03-22 14:52:37.222 2025-03-29 22:39:49.241 \N ![ArK](https://pbs.twimg.com/media/FxyzBqWWwAMQRgM?format=png&name=small) https://example.com/ 738 447854 447854.448333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5057421918021 0 \N \N f 0 \N 0 158850177 0 f f \N \N \N \N 447854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444402 2025-03-19 21:00:14.153 2025-03-29 22:39:49.247 \N https://imgprxy.stacker.news/kcWxI9N5IhCGCLb245NCfRMLYXc2z3dLcxZgTiTo1JE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS9lNzZiYzZlODQ1ZjJkMTY0OWFlMjVlNmJmZGFjNTVhMGFiZTYzOTJmODU3MzMxYzllZTE1NzQwOWY4Y2JjMGFjLmpwZw https://example.com/ 12220 444206 438414.438795.444206.444402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3128057513377 0 \N \N f 0 \N 0 172204417 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442637 2025-03-18 18:00:51.266 2025-03-29 22:39:49.247 \N "We are experiencing systematic issues when users receive lightning payments due to the fact that Muun is NOT a lightning wallet and we've gone through great lengths to conceal the fact that every payment or receive is two on chain transactions.\n\nWe brought this on ourselves and this will not be fixed"\n\nFixed it for them. https://example.com/ 16126 442634 439263.442558.442562.442634.442637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8093412243493 0 \N \N f 0 \N 0 133617588 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428665 2025-03-07 13:51:48.615 2025-03-29 22:39:49.248 \N Day 131 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 2327 428526 428292.428498.428526.428665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9057317629189 0 \N \N f 0 \N 0 46458476 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403214 2025-02-14 14:47:50.868 2025-03-29 22:39:49.248 \N A moment was a medieval unit of time. So when you say *just a moment please*, you're telling the other person that you need an average of 90 seconds. https://example.com/ 7667 403121 403121.403214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1166918108066 0 \N \N f 0 \N 0 228234044 0 f f \N \N \N \N 403121 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449979 2025-03-23 16:50:01.496 2025-03-29 22:39:49.248 \N Built a LNURL + Zaps server with support for LNC and Commando.\n\nWorking a service now that will help users' privacy https://example.com/ 880 449186 449186.449979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3840191237786 0 \N \N f 0 \N 0 228073571 0 f f \N \N \N \N 449186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436066 2025-03-13 09:33:15.943 2025-03-29 22:39:47.601 Why the World Stopped Having Sex? As a follow-up to my recent post on global population decline (https://stacker.news/items/437099/r/erict875), I was inspired to share [this article](https://www.telegraph.co.uk/news/2024/02/10/france-sex-lives-lowest-level-britain-japan-korea/) from The Telegraph about the the worldwide decline in sexual activity.\n\nHere are a few stats from the article:\n\n**United Kingdom:**\n- The average number of sexual liaisons per week has decreased over time:\n1991: 5 times per month\n2001: 4 times per month\n2012: 3 times per month\n\n![Screenshot_20240225-144222_Opera.jpg](https://m.stacker.news/17453)\n\n**Germany:**\n- A 2019 study found only 52% of Germans have sex at least once per month, down from 56% five years earlier. \n\n**France:**\n- A 2021 IFOP poll found that 39% of French people aged 18-24 had not had sex in the last year, up 10 points from the previous survey in 2009.\n- Among 25-39 year olds, 27% had not had sex in the last year, up 5 points.\n- 52% of French women said they sometimes had sex without really wanting to, down from 76% in 1981.\n![Screenshot_20240225-144202_Opera.jpg](https://m.stacker.news/17454)\n\n\n**Japan:**\n- A 2020 survey found 43.9% of married Japanese aged 20-59 were in sexless marriages, while 24.3% said their marriages were "nearly sexless".\n\n**South Korea:**\n- According to a 2021, about one out of three adults living in Seoul have not had sexual intercourse for over a year.\n\n\n\nThe article also mentions several potential causes:\n- Increased use of digital devices/screens.\n- Feelings of exhaustion, especially among middle-aged women: A potential cause detected in UK data was that women feel too tired for sex due to having a lot going on in their lives. \n- Less pressure to be sexually active\n- Increased solo pleasures: The easy availability of porn online, as well as sex toys\n\nANONYMOUS POLL: \N 8459 \N 436066 \N \N \N \N \N \N \N \N security \N ACTIVE \N 24.672516660196 0 \N \N f 33511762 \N 1 145190585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:29:04.39 f \N \N \N 0 0 0 0 1 0 0 454203 2025-03-26 09:47:10.323 2025-03-29 22:39:47.602 Books And Articles Newsletter, Issue 17 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. Thanks for all of the quality posts. \nThere is no territory specific news to talk about today. As always, please reply to this post with suggestions and opinions on how to make this territory better. \n\nI hope everyone has a good week. \n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [Sneak a peek at a page from my poetry book✨](https://stacker.news/items/549967) by @plebpoet\n\n- [38% of webpages that existed in 2013 are no longer accessible a decade later](https://stacker.news/items/545940) by @zuspotirko\n\n- [Some notes on Robert Irwin's introduction to The Arabian Nights](https://stacker.news/items/545992) by @SilkyNinja\n\n- [Review of Lonesome Traveller by Jack Kerouac](https://stacker.news/items/543525) by @carlosfandango\n\n- [Myth, Fantasy, and Lives Shaped by Stories in the Work of A.S. Byatt - Reactor](https://stacker.news/items/543285) by @StillStackinAfterAllTheseYears\n\n\n\n### Siggy’s Suggestions\n\n- ["How to Meditate" by Jack Kerouac](https://stacker.news/items/547626) by @StillStackinAfterAllTheseYears\n\nJack Kerouac is well represented in the territory this week. @carlosfandango posted a review of Lonesome Traveller that made it to one of the Top 5 Posts Of The Week, and StillStackin followed it up with one of his poems. Once again, my reason for including this post as a suggestion is selfish. Jack Kerouac opened my eyes as a teenager to a world far removed from my suburban tract house view of life, as he did for so many of my age. He also helped give me a love of reading for pure pleasure. \n\n- [Mathematical poetry](https://stacker.news/items/548600) by @StillStackinAfterAllTheseYears\n\nI know these are both by Stillstackin, but this post was a hell of a lot of fun, even for a guy who struggled through trigonometry. \n\n \nThis week’s Golden Oldie:\n\n- [Shill me your favorite books of all time for a long flight...](https://stacker.news/items/390571) by @gmd\n\nThis post is packed with some really good book recommendations. I’m glad I looked at it again, since there are many mentioned here that I haven’t gotten to yet. As @cleaningup12 said, “Fantastic thread @gmd 👏 this is a go to for what to read next, for at least a few years for me, I don't read that much, but when I do, I don't put it down\nThis could be a sticky/posted at top if they are a thing here\nI'll share this on nostr and see if any plebs not joined up, fancy adding their choices.\nAnd lastly if you want a basic easy read to lose yourself in. Girl on a train.” \n\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462)\n by @StillStackinAfterAllTheseYears\n\n- [The Bezzle, by Cory Doctorow](https://stacker.news/items/506632/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [The Achilles Trap, by Steve Coll](https://stacker.news/items/497756) by @Coinsreporter\n\n- [Software,by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n- [Bleeding Edge by Thomas Pynchon](https://stacker.news/items/533493/r/siggy47) by @Scoresby\n\n- [ “Better than Before” by Gretchen Rubin](https://stacker.news/items/534613/r/siggy47) by @cryotosensei\n\n- [Giada De Laurentiis Recipe for Adventure Hong Kong](https://stacker.news/items/539739/r/siggy47) by @cryotosensei\n\n- [Lonesome Traveller by Jack Kerouac](https://stacker.news/items/543525) by @@carlosfandango\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Churning Black Matter](https://stacker.news/items/469200) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n\n\n \N 14705 \N 454203 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 7.24008538786659 0 \N \N f 501649835 \N 4 49431777 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448897 2025-03-23 00:50:23.184 2025-03-29 22:39:49.242 \N How to provide value without being told what to do. https://example.com/ 16296 448891 448888.448891.448897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2959441675438 0 \N \N f 0 \N 0 11785175 0 f f \N \N \N \N 448888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416926 2025-02-25 23:13:02.408 2025-03-29 22:39:49.242 \N Just a thought: How about a limited block size model? There is only so many post allow per a particular time frame. As the noise level rises so does the posting cost, like the mempool.\n\nIf sub pages get created they could have there on mempool separate from each other. https://example.com/ 10433 415781 415637.415781.416926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.08660321288622 0 \N \N f 0 \N 0 131913707 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424329 2025-03-04 00:51:45.746 2025-03-29 22:39:49.242 \N This is why I eventually went with a multi-sig setup. Even under duress, it's simply not possible for me to forfeit my funds easily. The attacker would have to travel to several guarded locations and somehow not arouse suspicion.\n\nYou paint a future where Bitcoin has appreciated dramatically. Allow me to add some further details: The legacy financial system has collapsed, the no-coiner majority is unimaginably salty about Bitcoin's success, and most exchanges have had their KYC details breached and published all over the darkweb. Attacks on Bitcoiners are cheered on and encouraged.\n\nDo you think your funds are secure in that scenario?\n\nThat's the benchmark I set for myself. Don't plan for today, plan for 5-10 years from now. If you're not constantly reviewing your security practices, you are not nearly bullish enough on Bitcoin. It should scare the shit out of you, actually. https://example.com/ 16747 423743 423743.424329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.01642293943182 0 \N \N f 0 \N 0 215067063 0 f f \N \N \N \N 423743 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410521 2025-02-20 14:14:57.727 2025-03-29 22:39:49.243 \N "Using Thunderhub (v0.13.16), an open source node manager, we’ve enabled balance reporting. We’ve created a single endpoint that users can send this data to and it will be displayed on the node’s Amboss page. This method can be replicated on any node manager or service."\n\nWe do so much to try to protect the privacy of the lightning network but always going to be constantly fighting the tendencies for society to give away information for convenience. I can't begin to tell you how aggregating this information to a single party is an attack on Lightning and the privacy of all individuals as a whole. https://example.com/ 1039 410485 410409.410428.410434.410474.410481.410485.410521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9832477054294 0 \N \N f 0 \N 0 16767634 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424219 2025-03-03 22:30:41.747 2025-03-29 22:39:47.603 OpenAI video generation model \N https://twitter.com/sama/status/1758193609927721350 2013 \N 424219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9270354787792 0 \N \N f 19385128 \N 1 67236774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446406 2025-03-21 07:06:48.169 2025-03-29 22:39:47.603 A Way to Use Stacker News to improve your Zap Receiving Stacker.News if a website that may be familiar to most nostriches. But in case it is not, stacker.news is effectively a forum-style website that functions similar to reddit. But, with the very cool feature that sending sats works as the 'upvote' function. It's a great site, so check it out regardless of what I am about to break down.\n\nOne of the great features of Stacker News is that you get a custodial lightning wallet with your account. This wallet comes with a lightning address as well. Now, this alone is not unique or entirely useful. What makes Stacker News stand out is the way you can configure this wallet to interact with your self-hosted lightning stack. Now, I'm not just talking about the power user that is running their own node (although they do have useful configuration for those users). But, the lighter users that may be using a mobile wallet, such as mutiny, zeus, blixt, phoenix can use Stacker News to improve their zap receiving game.\n\nBefore I get into how, I want to highlight two great options to receive zaps via ln address if you are using a 'node in the phone solution.' The two options are zaplocker, provided as a solution for users of Zeus' embedded lightning node wallet, and lightning box, provided as a solution for users of the Blixt embedded lightning node wallet. Here is a summary of these two ln address solutions:\n\n- Zaplocker: Zaplocker is an ln address provided for Zeus embedded node users. The way zaplocker works is that the sats are held temporarily in Zeus' node (for up to 24 hours), and once you log into your Zeus app and access the embedded node, you can redeem the sats. This can be made easier by setting your Zeus app to automatically redeem and sats awaiting redemption upon logging in, and there is also a persistent mode that can help the app stay on in the background. If the app is on in the background and you have turned on the auto redemption feature, it will function more or less to automatically receive sats much like a custodial wallet or a node you are running on a server\n\n- Lightning Box: Lightning Box is an ln address provided for users of Blixt wallet. The way lightning box works is that, as long as you have a channel opened with the blixt wallet node and it has inbound liquidity, you can receive sats to the lightning box ln address. You have to set blixt wallet to persistent mode as part of using lightning box, which makes it more likely that your app will be running in the background and will successfully facilitate receipt of sats sent to the lightning box ln address. Unlike zaplocker, there is no 24 hour redemption time ; if your blixt wallet is not running in the background when the send is attempted, you will not receive the sats.\n\nSo, these both sound like great solutions and a pleb need not do anything else, right ? Wrong. Both are not perfect solutions, with the main issue being that even with persistent app settings, the apps will inevitably close because phones seem to do that for one unknown reason or another. Or a connection will be lost, and your app will not be running to receive the sats. Or if you want t run the apps over tor, your very likely to have a connection inturrupted. Now, with zeus you still have 24 hours to open it up, sync up your node and receive but we want to up our game so that a user does not have a chance to lose zaps.\n\nEnter Stacker News. By Creating a stacker news account (you can even do so with using your blixt or zeus wallet to log in and create your account!), you now have an ln address you can use in place of your zaplocker or lightning box address. Use that stacker news address for receiving zaps on your nostr account. In your stacker news account, go to the wallet link, and click 'Attach Wallets'. Next, click 'configure' under the ln address option. Input your zaplocker or lightning box address. If you want, you can configure stacker news to withdraw automatically by setting the 'desired balance' to 0 sats. There will be a moment of custody, but it is a few seconds in my experience. \n\nSo, what have we just done and what's the improvement? Well, zaps you receive are going to be received to your stacker news ln address now. The improvement is that the stacker news node is on all the time, and you do not risk missing payments much like one can expect from say a Wallet of Satoshi ln address. With the configuration we made, the stacker news wallet is going to automatically withdraw sats received to your custody in your zaplocker or lightning box. For example: In the event that you are asleep, and your zeus or blixt wallet is not online for hours while nostriches across the globe are zapping the crap out of your viral post, your sats are sitting comftorably in your stacker news wallet. You will fire up your Zeus or Blixt app, and proceed to watch the sats flow into your custody from your stacker news wallet. \n\nThe result of this setup is a pleb who is not running an 'on all the time' node can experience a comparable receiving experience with minimal custodial exposure. I encourage any pleb, especially those using zaplocker due to the potential harm it can cause to the lightning network, to consider this setup. Let me know what your experience is or, for users already leveraging the Stacker News ln address, I'd be curious to hear about your configuration. Thanks for reading, hopefully someone finds this article helpful!\n\n#bitcoin #lightning #zeus #blixt \N 20956 \N 446406 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.4428693369039 0 \N \N f 478170636 \N 2 190137849 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:12:43.645 f \N \N \N 0 0 0 0 1 0 0 410191 2025-02-20 10:40:16.478 2025-03-29 22:39:49.243 \N [![k00b-sn-fbi.jpg](https://imgprxy.stacker.news/blr5sYHFkWPq6KI9_0lvB2CZ_s_QF-b_6o76Swbj1o0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvYzRQZ2dOSFcvazAwYi1zbi1mYmkuanBn)](https://postimg.cc/sv9Dqq7H) https://example.com/ 17148 409729 409729.410191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0666051986315 0 \N \N f 0 \N 0 215545232 0 f f \N \N \N \N 409729 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428128 2025-03-06 21:48:28.665 2025-03-29 22:39:49.243 \N Ever bought a computer or cell phone?\n\nWhy? Why not wait until your money is worth more later compared to the price of that cell phone?\n\nBecause you need it.\n\nBefore mortgages people bought the amount of house they could afford. Married couples (instead of spending tens of thousands of dollars on a wedding) would buy a house and build a basement that they live in until they can afford to build the rest of the house.\n\nPeople are living beyond their means. Once I switched completely over to BTC as my money I ended my debt and bought my house in cash. https://example.com/ 8729 428054 428054.428128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7945639249467 0 \N \N f 0 \N 0 220383290 0 f f \N \N \N \N 428054 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414863 2025-02-24 11:04:43.268 2025-03-29 22:39:47.603 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 2402 \N 414863 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 1.99751016817544 0 \N \N f 249761499 \N 2 198118199 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 306830 2024-11-24 14:27:10.122 2025-03-29 22:39:47.603 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/286981) are the updates stackers shared from all their latest work projects. \N 827 \N 306830 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.0774889517421 0 \N \N f 835510942 \N 6 140048795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444466 2025-03-19 22:46:23.487 2025-03-29 22:39:49.244 \N The difference is posts would just be tagged appropriately and publicly posted.\n\nnot posted IN Bitcoin, or IN AdvancedColdCardTutorial or IN PoliticalDiscussion or IN CanadianConservativePoliticalNews ... why do these need to be specific places with rulers? Just let posts be posts and help facilitate it to those who would be interested in it. The cream will rise to the top. I would require a root tag though, that's where it would be posted "in", if anywhere.... I wouldn't allow posts to be untagged. \n\nside note: I don't know, is tag the wrong word? should it be label? whatever works really. I'm gonna start saying label instead of tag. I don't like to keep saying tag over and over again. tag tag tag, nah.. \n\nThere would have to be some hierarchical system for the labels to be organized. SportsIceHockeyNHLNewYorkRangers shouldn't be a single labelchain (?_?) at least visibly like so... IDK there's got to be a point where the root of the labels becomes implied in the later ones... seeing {{[Sports]+[Baseball]+[MLB]+[BostonRedSocks]+[Daily Discussion]}} is pretty ugly and we also wouldn't want links like stacker.news/sports/IceHockey/NHL/NewYorkRangers/thread03374989 either I don't think? You'd hope that it'd just be stacker.news/NewYorkRangers/thread03374989 because if were talking about the rangers, we know we're talking about the NHL Sport of Ice Hockey.\n\nI'm all over the place when I'm trying to explain ideas, bare with me. I'm going to present the Idea like I'm a new user creating an account and being introduced to this new ecosystem. I think it would be really easy and intuitive to onboard new users. let us roleplay:\n\n== \n\nI, the brand new user of Stacker News, am looking to participate in discussions of my favorite hockey team team, amongst other things that interest me.. As I make an account, I quickly create a lightning login account, click next, and some labels pop up.. I'm being asked to select labels that may be of interest to me. I choose some basic ones... they offered me some options to dig deeper into some of the different labels but I just want to browse so I've made some choices and left the preselected labels selected.\n\nAfter clicking next, I'm browsing the home page... I would see posts that are trending with labels like [Sports] and [Gaming] and [Art] and [Politics] and [Science] and [Technology] and [Economics].\n\nI click on the label [Sports] under one of the posts and I'm brought to a new page of posts all labelled with [Sports] including [NFL] and [MLS] and [Cricket] and [Ice Hockey] and [Boxing] and so on. \n\nI click on a [Ice Hockey] label on a post and same thing, Now all posts I see are trending posts labelled with [Ice Hockey]... I can search these posts by top of the / most trending / most discussed / most... of the [choice of time frame] Like every other time I am reading through similarly labeled posts. While browsing [Ice Hockey], I see trending posts labeled with [NHL] and [SHL] and [KHL] and [OHL]. I click on [NHL].\n\nI see posts with labels including [NewYorkRangers] and [BostonBruins] and [VegasGoldenKnights]... I click on [NewYorkRangers] and see trending posts with this label. I have arrived at the content I was seeking and have found the discussions I am looking for. I follow the [NewYorkRangers] label. When I follow it, I'm suggested a few other labels that users who follow [NewYorkRangers] also follow, including [NHL], [IceHockey]+[Prospect]+[Analysis], and [NewYorkJets]. I like to geek out about the draft so I'll also follow the [IceHockey]+[Prospect]+[Analysis] labelchain. \n\nI go back to home page and begin browsing whatever content I am interested in. I start following labels that interest me. I follow [Advanced]+[Bitcoin]+[ColdCard]+[Tutorial]. I also follow [Advanced]+[Tutorial], so I'll see any post that has both labels on it. I follow [Historical]+[Japanese]+[Art] and [Modern]+[InteriorDesign]. I click on the 'trending labels' tab and It shows me info on how popular certain tags are, historical data on when certain combinations became popular. Other labelchains that may be of interest to me. \n\nAs I continue to use the website, I organize my lists of labels so I can easily sort through what I want to see with ease. Users share their own personal Labelchains. Some have them directly available on their user profile page and I can just click on it and see his exact feed on SN with all of his interests. I can save his labelchain and anyone elses and swap between them when I feel like my own feed is getting stale. When I see a label I like while I'm browsing someone else's feed, I can click a button that says Save to --> skreepchain #2 --> List --> Politics, or whatever you know? \n\nAlso, last thing, the creation of labels should be in some way crowdfunded so they are determined and not all over the place. You don't want users to create [Funny] and [Funnnny] and [Fuuunnny] and [funnnnnny] and [fffunny] and [ffuuunnnyy] and [fuunyyy] to be labels... you'd just want [Funny].... Then maybe one day a streamer who goes by [fffunny] comes along and his community wants to fund the tag to distinguish that particular content. Ultimately, you want determined tags the community has approved and actually wants to use. \n\n I'd imagine users could place a deposit on a label proposal which would need X amount of users to donate a small amount in order to make that a label. Users could even go to a tab of the website where they see a label proposal board, where they pledge maybe 100 sats and pre-follow labels that have been proposed by users. This way the Label system could grow naturally. You could reward users for being founders with a special emblem. Funding for the label could even then be a pool that is used to reward users who post with the newly approved label to kickstart activity using that label. \n\nIn this process, you could determine ties to other labels, as in [IceHockey] and [NHL] are bound, just as [NHL] and [BostonBruins] are tied, but has nothing to do with [InteriorDesign]. This gives opportunity to determine community consensus on spelling/formatting and what should be and shouldn't be chained together and what is or isn't acceptable for this website (a profane label would never make it past proposal, and it would be like putting money in a fire lol...)\n\nI've gone on long much too long for one post.... I've probably brought up too many things for y'all to even approach a cohesive response to lol... I actually do really like the overall idea of making the domains in which these posts exist much more modular and interconnected than tons of little nation states with their little rulers ruling over their little ecosystems. \n\n Feel free to ask further questions, I noticed both you @koob and @kr took some form of interest in the concept. Let me know what you think. https://example.com/ 11423 442677 442508.442677.444466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2269692236249 0 \N \N f 0 \N 0 240150693 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430905 2025-03-09 13:56:22.076 2025-03-29 22:39:49.244 \N [![RDT-20221114-2048251842804353029290999.webp](https://i.postimg.cc/CK2jnY45/RDT-20221114-2048251842804353029290999.webp)](https://postimg.cc/jWzWBpmY) https://example.com/ 16670 428788 428441.428788.430905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6193225605086 0 \N \N f 0 \N 0 15462350 0 f f \N \N \N \N 428441 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437960 2025-03-15 03:28:39.303 2025-03-29 22:39:49.244 \N Day 148 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 12291 437948 437502.437948.437960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0326485745945 0 \N \N f 0 \N 0 145226958 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430655 2025-03-09 11:40:34.988 2025-03-29 22:39:49.245 \N make ‘login with lightning’ the only login method https://example.com/ 1823 430626 430626.430655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.00607256505376 0 \N \N f 0 \N 0 86336470 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451312 2025-03-24 13:44:32.773 2025-03-29 22:39:49.245 \N https://imgprxy.stacker.news/kTFyvvNehsZO3XXLRbjNx2m3-tUpdYGJ31-dI-Gkysk/rs:fit:600:500:0/g:no/aHR0cHM6Ly96dXBpbWFnZXMubmV0L3VwLzIzLzM0L3QyMWouanBn https://example.com/ 9796 450988 448097.450988.451312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.57813507803673 0 \N \N f 0 \N 0 81195466 0 f f \N \N \N \N 448097 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 420949 2025-03-01 09:49:15.124 2025-03-29 22:39:49.245 \N I don’t have any evidence but my gut tells me that this perhaps occurs due to monetary/market incentives as well as being able to hijack or bootstrap on top of another community or trend. And so once an idea or behaviour picks up steam, it spreads because of businesses scaling and following their own self interests. Otherwise there’s a danger it reaches a crescendo too early and fizzles out..without reaching a critical mass outside of that particular niche.\n\n\n- Standing desks became common because they rode the wave of a remote revolution. And they could be priced expensively with electric motors. Being healthy for posture as well as operating in a premium profitable niche.\n- Bee pollen became a trend recently, riding the environmental movement and interest in people creating their own honey, whilst apparently there being anecdotal evidence of benefits for women. Plus there was a tonne of money to be made when it was marketed that way.\n- Protein powder became commonplace because businesses wanted a use for a waste product from the dairy industry. So they were able to push a profitable product onto the consumer. And because people had less time during their 9 to 5s to prep a plate of proper protein. I suspect it won out because it both saved people time AND helped people with their health goals at the same time.\n- Perhaps minimalist footwear hasn’t got critical mass, because there’s not much money to be made from telling people to go barefoot and most “barefoot-like” shoes look like you’ve developed Turkey feet. Not seeing another wave it could ride, unless it helped people run faster for example.\n\nTrends usually need a pathway, that already exists and is in a growth phase. Like how you improve keywords is not through throwing 20 articles at ‘earn bitcoin’ but targeting more niche keywords like ‘earn bitcoin without kyc’, ‘earn bitcoin with your content’. I’ve no idea if those keywords are popular but you get my point.\n\n\nLoosely related, I also really enjoyed [this YT video](https://youtu.be/mScpHTIi-kM?t=17m36s) that was posted on Game Theory the other day on SN. Showing how a healthy moral minority can gain increasing influence in an otherwise unhealthy system. https://example.com/ 16149 420888 420888.420949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9719914384902 0 \N \N f 238159251 \N 2 188982485 0 f f \N \N \N \N 420888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437952 2025-03-15 02:37:27.814 2025-03-29 22:39:49.246 \N this is soo exciting! some background for people who want to know what this means for them:\n\n- what is it? route blinding makes it so that the person whos' *receiving* the payment can hide which node id is theirs. this is a big deal, right now an invoice contains all the info about what node is getting paid, how much and for what. route blinding takes the "to who" out of this, but still lets you receive sats\n\n- how can i use it? route blinding will be rolling out with bolt12s; it's a pre-requisite for the new invoices; it's not available for bolt11s (and there's no current plans to)\n\n- who has it? CLN + Eclair both implemented it and have it interop'ing; iiuc Carla at Chaincode has it working on LND in a branch + the LDK project is furiously working on adding it https://example.com/ 5495 437775 437775.437952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.55344251731937 0 \N \N f 0 \N 0 89920651 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458158 2025-03-29 02:37:51.136 2025-03-29 22:39:49.246 \N Day 147 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 695 457269 457269.458158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2457552210994 0 \N \N f 0 \N 0 1020718 0 f f \N \N \N \N 457269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423287 2025-03-03 07:29:53.365 2025-03-29 22:39:49.247 \N omg this is so amazing, thanks yall!! https://example.com/ 13921 423118 422628.422661.423118.423287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3811832452599 0 \N \N f 0 \N 0 74986574 0 f f \N \N \N \N 422628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458212 2025-03-29 05:42:08.757 2025-03-29 22:39:49.247 \N Day 138 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 1823 458162 458122.458162.458212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.87021480289401 0 \N \N f 0 \N 0 226029954 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431254 2025-03-09 16:08:16.811 2025-03-29 22:39:49.247 \N Day 139 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 749 392573 392573.431254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4034565251373 0 \N \N f 0 \N 0 216854051 0 f f \N \N \N \N 392573 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407986 2025-02-18 14:04:00.101 2025-03-29 22:39:49.238 \N I was having similar question here:\nhttps://stacker.news/items/179331\n\nAt the end help me one guy at [Bitcoin Pizza Day](https://p2p.pizzaday.cz/)\n1. Download [Bitcoin Core](https://bitcoincore.org/en/2022/12/12/release-24.0.1/) \n_you don't need to sync the blockchain_\n2. Open console (⌘ + T on mac)\n3. Insert in for example:\n```\n\ncreatepsbt '[{"txid" : "903f5ba285e093aef7423fac59bbfcd2979441766bf4a73a622f7e1d606ef17e", "vout" :0}]' '{"bc1qcmkwdrx3e20e0xsfn2se23wzj9r7dc3t4wd9a3": 0.00000546}'\n\n```\n4. You get this fancy result:\n`cHNidP8BAFICAAAAAX7xbmAdfi9iOqf0a3ZBlJfS/LtZrD9C966T4IWiWz+QAAAAAAD9////ASICAAAAAAAAFgAUxuzmjNHKn5eaCZqhlUXCkUfm4isAAAAAAAAA`\n5. Open Electrum Wallet\n6. In toolbar select `Tools`>`Load transaction`>`From text`\n7. Insert that weird string and hit `Load transaction` button\n8. 👏 Now you have a transaction that you can sign \n_(this will be disabled, because your wallet doesn't recognize my input)_\n9. Click on `share`> `Fo Coinjoin;strip privates` > `Copy to clipboard`\n10. Send it to your peer\n11. He will sign it same way and broadcast it to the network\n12. 🎉 Profit\n\nNow only change my example to yours. Let me know if you need help with that.. For me it was really frustrating to figure it out 🙂\n https://example.com/ 1307 407959 407619.407959.407986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.17966435524708 0 \N \N f 0 \N 0 198874819 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422279 2025-03-02 10:59:28.866 2025-03-29 22:39:49.239 \N funny story, myself and 3 other ppl pitched David Marcus on integrating lightning into Messenger/WhatsApp in like October 2018, rather than building our own blockchain (DIem/Libra). in hindsight, I don't think LN was ready at the time. but pretty funny how things ended up w/ Lightspark and all https://example.com/ 11298 421833 421778.421801.421818.421833.422279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.64237878720213 0 \N \N f 0 \N 0 180171739 0 f f \N \N \N \N 421778 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407381 2025-02-17 23:35:32.471 2025-03-29 22:39:49.239 \N Day 146 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20205 406012 405873.406012.407381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1847187562856 0 \N \N f 0 \N 0 103418041 0 f f \N \N \N \N 405873 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421158 2025-03-01 13:04:24.07 2025-03-29 22:39:49.248 \N # 🙏 Please Donate for June 2024\n\nIn prior months, I set an arbitrary fund raising goal. \n\nNew plan/experiment/goal to achieve sustainability (break-even):\n\n**Donations will directly reduce the posting fee**, such that the forecast is `donations + posting fees - monthly rent = 0`. The "forecast" will just use the prior month's post-count.\n\nZaps to this comment, will count towards donations for June. Please make a comment in a reply if you contribute something material.\n\nI expect this to still lose money in the short term, even after post-revenue, as posting fees climb and post count drops. We'll update the policy, if we find equilibrium.\n\nIf it works...\n\na) donations should shrink over time, posting fee will predictably drop over time, and content should go up. Unclear what will happen to quality. Fingers crossed.\nb) donors are directly, kindof, buying more content for the month ahead (lower fees = more posts/content, see analysis below).\nc) frequent-posters who stack-more-by-posting-more can optionally do some math to see if it's rational for them to donate.\n\nExample: \n\nAssume there is 60K sats from donations today. Given last month, that there were 380 posts, I would say "Assuming 380 posts in ~June, I'd have to charge 40K / 380 = 105 sats per post, to break even. \n\nExample 2:\n\nIf nobody donates today, then the fee would rise to 263 today (100K / 380), and then probably rise again the month after, because post count would likely drop again.\n\nIt's kindof fun, to run a mini-economic policy update based on inputs like the above.\n\n# Accounting Notes\n\n### Crowd Funded Contributions for May 2024 - thank-you!\n\n@Undisciplined - 25K x 90% = 22.5K*\n@grayruby - 2K x 90% = 1.8K*\n@StillStackinAfterAllTheseYears - 1K x 90% = 900*\n@siggy47 and anons = 7.3K x 90% = 6.6K* \n\nFundraising Target was 55K, so considering this a deficit, I'll pick up the difference. Treasury was 41K at end of May. I guess this means I should be drawing on the treasury. Seems fair. TBD on the Treasury / Cashflow update; easy to sort that out. Import thing is to capture notes above.\n\n# Short Term Priorities & Goals\n\n1. Break even with crowdfunding\n2. Break even without crowdfunding\n3. Build up treasury\n4. Run incentive backed games\n5. Build Tooling\n\n# Operational Metrics / Quick & Dirty Fee Change Analysis\n\nAll-Time\n965.8k stacked \\ 102.6k revenue \\ 1.1m spent \\ 2366 posts \\ 9742 comments\n\n~ 4 weeks in March @ 10 sats-per-post:\n215.7k stacked \\ 19k revenue \\ 247.3k spent \\ 588 posts \\ 1755 comments\n\nApril (proper):\n26.8k revenue \\ 277.9k stacked \\ 322k spent \\ 605 posts \\ 2303 comments\n\n~4 weeks in April @ 21 sats-per-post:\n203.9k stacked \\ 24.6k revenue \\ 239.3k spent \\ 537 posts \\ 2151 comments\n\nMay (proper):\n27.8k revenue \\ 149.5k stacked \\ 194.8k spent \\ 380 posts \\ 2095 comments\n\n~4 weeks in May@ 100 sats-per-post:\n105.3k stacked \\ 26k revenue \\ 144.6k spent \\ 326 posts \\ 1919 comments\n\nPeople consider the fee difference before posting. 5x the fee, didn't 5x the revenue.\n\n# Territory Change Log\n\n* 2024/05/04 - Raise the posting fee to 100. Apologies for not being transparent about this. In hindsight, I suppose I should have alerted folks. Will do better on this front. Maybe thats a feature @k00b could add. Warn the users if the posting fee has changed since the last time they posted.\n\n# Owner's Pledge\n\nIf this territory ever runs a cumulative net profit, I'll find a way to do right by the earliest contributors. There is no guarantee of that scenario. Most likely, it'll take the form of "pay-it-forward"-style BTC-adoption/effort/charity.\n\n# Disclaimer\n\nDo not donate with the expectation of receiving a share of future profits. This is not a security offering.\n\n# Prior Updates\n\n* May 2024 https://stacker.news/items/526847\n* April 2024 https://stacker.news/items/493332\n* March 2024 https://stacker.news/items/448054\n https://example.com/ 14688 420918 420918.421158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1232961734653 0 \N \N f 0 \N 0 177169833 0 f f \N \N \N \N 420918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408334 2025-02-18 17:52:43.415 2025-03-29 22:39:49.248 \N I hope the next generation coming out of school begin to earn and save in bitcoin. Over the next 5 years I hope they have enough financial and time freedom to do their own thing (project, product, art). Give back to the world in their own way on their own terms. Not be pressured into college debt, salary slavery or the high time preference fiat VC route. \n\nWe'll begin to see more diversity in products, services, art and unfathomable creations. People will feel more empowered to be different and offer unique solutions to problems they face. They'll get funded by like minded / like valued people through new ways of allocating Bitcoin (eg zaps, streams). Funding will be less concentrated and more dispersed. The world will be strengthened by this diversity. It's gonna be epic and beautiful! 🧡 https://example.com/ 6741 407621 407621.408334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4774567880768 0 \N \N f 0 \N 0 140640402 0 f f \N \N \N \N 407621 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457183 2025-03-28 09:44:36.899 2025-03-29 22:39:49.24 \N Hodlers who say they are never going to sell are likely going to sell some of their stack once we hit 6 figures. https://example.com/ 13399 457105 457080.457105.457183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2130273351857 0 \N \N f 0 \N 0 95007520 0 f f \N \N \N \N 457080 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458330 2025-03-29 07:53:37.712 2025-03-29 22:39:49.24 \N https://imgprxy.stacker.news/VC33NB2vYTrtB9_4qLn5mDLTSQ-GgDeEFOWnR7jJ1_M/rs:fit:600:500:0/g:no/aHR0cHM6Ly96dXBpbWFnZXMubmV0L3VwLzIzLzMxL2lsNm8uanBn https://example.com/ 14607 458242 458122.458134.458211.458237.458242.458330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.715068138323 0 \N \N f 0 \N 0 224347858 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401384 2025-02-13 00:07:12.3 2025-03-29 22:39:49.24 \N I think the issue with Chainalysis' hesitance to show any of their software or code to the court isn't that it would expose them as being ineffective (which I doubt), but rather that it would destroy their business model by exposing them as the same as any other working blockchain analysis tool with a different coat of paint.\n\nChainalysis works on a business model where they make a program that can analyse and visualise the blockchain based on address, txid, or other metadata and then complicate it to make a business model of selling you 'advanced training' on how to use their software and then sell you the software AGAIN once you know how to use it. Chainalysis sells certs for investigators or possible law enforcement on the basics of Bitcoin, cryptocurrency and tracing a transaction for £600/$750 - and that is only for the lowest tier!\n\nDo you know what Bitcoin is? Do you know what the differences between Bitcoin, Ethereum and Monero are? Do you know what a blockchain explorer is, and are able to get an open-source blockchain visualisation tool off of GitHub? Congratulations! You basically have a Chainalysis Cryptocurrency Fundamentals Certification[^1] without needing to buy a training course that costs more than a computer.\n\nChainalysis do not sell anything different than what a blockchain explorer application could do from what I can tell, and they **really** don't want you to believe that because that destroys the whole point of the product's business model. They want you to believe they do something special in comparison to organisations like Ciphertrace or partners like Cellebrite and Maltego. And, they can get away with it because law enforcement digital forensic investigators often are not technical, they know how to use *forensics software* but lack knowledge on doing the process by hand. Chainalysis sell a a blockchain explorer with unreliable, unattributable 'behavioural analysis' or other buzzwords that can't, nor ever been, used in a law enforcement scenario **because it is not forensically viable evidence**, having a program saying **"I guess"** is not evidence.\n\nCommercial blockchain analysis software alone has never been enough to convict a person of a crime, because they need forensically sound evidence that the cryptocurrencies of the suspect belong to the person. They are basically tools made to speed up the investigation by babying the cops into doing it all for them without knowledge or with their 'advanced' training programs.\n\nOther digital forensics tools also rely on this model of being needlessly complicated, including some I have definitely used before. If I wasn't given a bachelor's degree on how to use EnCase (including training from Opentext, their vendor) I'd have definitely been stuck. Cellebrite is also crazy expensive, but if you ever watch a video of the software its basically just pressing buttons on a tablet UI and having it do it all for you.\n\nChainalysis has always had an unhealthy relationship with other blockchain analysis firms, like Ciphertrace who are claiming their results are unreliable as there's no study or reproduction of their results. Chainalysis software is a walled garden with no reproducibility or transparency or research [^2]. I challenge you to search "Chainalysis" in Google Scholar and find an academic article that contains a screenshot of Chainalysis software or a report generated by their software *for the purpose of the academic research*. \n\n[^1]: https://www.gentiumuk.com/chainalysis-ccfc.php\n[^2]: https://storage.courtlistener.com/recap/gov.uscourts.dcd.232431/gov.uscourts.dcd.232431.159.1.pdf\n https://example.com/ 825 401381 401351.401381.401384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.689803596458 0 \N \N f 298745964 \N 3 127416851 0 f f \N \N \N \N 401351 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450003 2025-03-23 17:23:33.54 2025-03-29 22:39:49.24 \N The food pyramid https://example.com/ 7583 449992 449779.449992.450003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5935859073719 0 \N \N f 0 \N 0 115554512 0 f f \N \N \N \N 449779 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404522 2025-02-16 00:33:18.885 2025-03-29 22:39:49.24 \N It basically enables sidechains like liquid but instead of a 11 of 15 multisig hold custody, the miners hold custody. Imo it's a terrible idea because this will screw with mining incentives and give them an option to steal from users instead having the incentive to always just mine the next block. It also can bring regulatory risk to miners, if they have custody of funds, they could be forced to get licenses and all that bs https://example.com/ 5427 403947 403947.404522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3904893831731 0 \N \N f 0 \N 0 160991355 0 f f \N \N \N \N 403947 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407035 2025-02-17 18:10:18.862 2025-03-29 22:39:49.241 \N Hey there,\n\nGraham here, the CEO of Voltage. This is a big question with many parts but I’ll try to answer the best I can (it’s going to be long). There’s two very different pieces of this question, the regulation aspect and the technology & custodianship. First off, the definition of custodianship is somewhat murky. There’s always a “yeah, but” to it. Before Bitcoin, your options were to hold cash or put it in a bank (custody). Now we have an amazing new technology that gives us the benefits of those bank type solutions (and more) with an entirely new way to control our money. The invention of Bitcoin has made custody not so black and white. There’s the really obvious example of custodians, like Wallet of Satoshi, then there’s things like trusted swap providers. Are those custodial because they own user funds while swapping? There is a huge spectrum to this from your own cold storage to Coinbase. To your point, if Chase bank uses AWS for hosting and AWS could get into their RDS instances to get user credentials or move money, does that make them a custodian? I’d say no, but they’d probably be considered a trusted 3rd party. The biggest conversation here is really around Trust.\n\nFor the technology aspect, it’s impossible to do hosting without trust. You gotta trust GoDaddy to keep your website up. No matter the provider (Voltage, Greenlight, etc) you gotta trust the provider to keep the node online. You gotta trust the provider to do the right thing and keep things secure. At Voltage we’ve gone to great lengths to achieve this. We’ve submitted many PRs to LND to enhance its security, like TLS key encryption, Tor key encryption, and more. We aren’t just throwing LND on some VPS and calling it good. There’s no sensitive data on disks or in our databases that’s readable by us. We do keep encrypted backups of some things like seeds and macaroon, but those are encrypted client-side so we never know them. Now, one of your points is around keys for a lightning node. Node keys live encrypted in the node’s database. When a node starts up it must be unlocked by the user with a password that they’ve set and we don’t know. At that time the keys are held inside of the LND process for the duration that process is living. The memory itself from the underlying server is encrypted as well with keys Voltage does not have access to, so the node keys are never living outside of an encrypted space. Of course, some people might want keys running in a different location, ala Remote Signing. This is a great start, but doesn’t fully remove trust from the hosting provider. In today’s remote signing implementations, you still have to trust the hosting provider that the requests that are being sent to the signer are honest. Even with a Watchtower, if your hosting provider is running the Node and Watchtower, then they just shut down the Watchtower and broadcast an old state. To get to the most trustless deployment of ‘node in the cloud and signing outside the node’ you’ll have to run a Bitcoin full node on the signer as well as the node to verify everything. This gets very complicated very fast and a million different ways to deploy these things. In summary, if you want trustless and totally ‘noncustodial’ you gotta do it all yourself. From there, there’s a huge spectrum of trust tradeoffs that just go back to the individual to decide. We offer remote signing as well as other providers, so everyone’s just gotta do what’s best for them. Final point on this is, we’re working hard to make all this better. More hosting options, more signing options, etc. The nodes product we have today is very much a ‘v1’ and the nodes product we’ll have in the months and years to come will be very different.\n\nNow the regulation piece. We’re operating in a brand new space and all of Bitcoin is moving faster than the law can keep up. We have a legal team we work with and we feel totally fine on our regulatory position. Additionally, it’s something we always keep our eyes on. I don’t think there’s any ‘time bomb’ there, especially when you see the other products and services out there. I won’t name names to be respectful, but there’s lots of Bitcoin companies that are very clearly MSBs and are operating without the proper licensing. We’ve got a lot of armchair lawyers in Bitcoin and ultimately it’s up to each company to consult their own legal team, abide by the law the best they can, and watch for clarity as it comes.\n\nAgain, this is a big topic and I can rant on, but I’ll stop there. I think the main part of your question was around VPS hosts and what happens when you put your Bitcoin keys on it. I think that depends on a ton of factors, but for us, we try to encrypt everywhere so it's more than a standard VPS deployment. There’s trust and tradeoffs all over the place, everyones just gotta find their balance.\n https://example.com/ 14271 407018 407018.407035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.57306050548747 0 \N \N f 0 \N 0 87449782 0 f f \N \N \N \N 407018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431201 2025-03-09 16:02:48.001 2025-03-29 22:39:49.241 \N Australia is wider than the moon — 600km wider, to be exact. https://example.com/ 992 403427 403427.431201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4773159891485 0 \N \N f 0 \N 0 236886391 0 f f \N \N \N \N 403427 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442843 2025-03-18 21:02:52.25 2025-03-29 22:39:49.242 \N Day 128 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 1712 442834 442628.442639.442646.442648.442650.442670.442824.442828.442834.442843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2673957417619 0 \N \N f 0 \N 0 19519855 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401652 2025-02-13 09:39:54.94 2025-03-29 22:39:49.239 \N Just pushed out a feature rich update for the node powering Mutiny Wallet: https://github.com/MutinyWallet/mutiny-node/releases/tag/v0.3.0\n\nWorking on some improvements and bug fixes for it and going to be pushing out another. Going on mainnet this week to start testing this out before a friends and family release later this month. https://example.com/ 2459 401519 401458.401493.401500.401513.401519.401652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6471981944243 0 \N \N f 0 \N 0 47195781 0 f f \N \N \N \N 401458 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431043 2025-03-09 15:11:16.025 2025-03-29 22:39:49.239 \N To really work the answers need to be free IMO. I'm not going to buy an answer I haven't seen. https://example.com/ 17064 420404 420404.431043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.46319693569838 0 \N \N f 0 \N 0 102361776 0 f f \N \N \N \N 420404 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444117 2025-03-19 17:15:58.993 2025-03-29 22:39:49.238 \N ![](https://i.postimg.cc/5N0YB3yg/remember-me.png) https://example.com/ 18423 443867 443867.444117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.92599950365253 0 \N \N f 75114650 \N 2 114901284 0 f f \N \N \N \N 443867 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456787 2025-03-27 21:34:22.945 2025-03-29 22:39:49.243 \N bitcoin is hard money. it's provably able to achieve this property as is, today.\n\nany update to the protocol has to justify itself in terms of what it's bringing or adding to the existing system. some do this by using perceived problems ("security budget", "inability to use fancy new lightning channels", "ability to make bets on future outcomes (DLCs)", "running out of blockspace, how do we scale?")\n\neach of these justifications is based on a core value, which is rarely "hard money", as that usecase has already been solved.\n\ncurrently there's no pressing justification for making changes to the chain. until there is, i think it's difficult to build consensus for a change.\n\n(notably, taproot was fairly uncontroversial imo because it spoke to a value all bitcoiners wanted more of: less blockspace usage and more privacy.) https://example.com/ 624 298804 298804.456787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6986116523216 0 \N \N f 0 \N 0 21557455 0 f f \N \N \N \N 298804 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431266 2025-03-09 16:09:58.125 2025-03-29 22:39:49.243 \N I've seen this before and it's almost certainly developer/transaction construction error. One of the things I make sure to teach about Bitcoin transactions is that you have to send the change back to yourself or it ends up as a fee (tx outputs have only two states, spent and unspent). I suspect that's what happened here. That person made a tx without a change output.\n\nIt's not uncommon and has happened quite a few times in Bitcoin history. https://example.com/ 20993 385622 385622.431266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1574660076336 0 \N \N f 0 \N 0 97290448 0 f f \N \N \N \N 385622 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436039 2025-03-13 09:08:02.516 2025-03-29 22:39:49.243 \N While you were making Bitcoin banks, Phoenix scripted out lightning channel management\n\nWhile LND was making shitcoins on Bitcoin, Phoenix was implementing splicing\n\nWhile you were making DNS addresses for lightning zaps, Phoenix was working on bolt 12\n\nWhen the custodial rug pulls and rehypothecation comes, when the government attack strike down, when the lightning shitcoins lose speculative value, only Phoenix wallet users will be ready. For it spent its time improving the protocol\n\nhttps://primal.net/thread/note1n8j639au0n8hjhupe9j4u0ar3p8lza436g3dv0zmvhkhjfjg6qrs08fy8x https://example.com/ 21042 436022 435908.436022.436039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0587000088454 0 \N \N f 0 \N 0 124690762 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424325 2025-03-04 00:50:06.722 2025-03-29 22:39:49.244 \N The human brain can store up to 2.5 petabytes of information, which is the same as about 300 years of HD video. https://example.com/ 1596 423386 423314.423386.424325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.962263799536 0 \N \N f 0 \N 0 34229198 0 f f \N \N \N \N 423314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435228 2025-03-12 14:41:34.876 2025-03-29 22:39:49.239 \N Stackers need to help set the new DDT comments floor at 100 https://example.com/ 9335 435226 435226.435228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8551355650847 0 \N \N f 0 \N 0 246835393 0 f f \N \N \N \N 435226 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449982 2025-03-23 16:51:37.077 2025-03-29 22:39:49.24 \N I'm done with personalized feeds, but I'm going to spend another day testing it and trying to improve the performance of it.\n\n Then I'll probably merge PRs and begin ...\n# working on user generated subs \n\n https://example.com/ 15148 449971 449971.449982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6834336642247 0 \N \N f 0 \N 0 217243788 0 f f \N \N \N \N 449971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455505 2025-03-27 04:45:42.461 2025-03-29 22:39:49.24 \N Finally got around to start up Atlas Shrugged. Haven't gotten further than a couple chapters but I'm loving it! \n\nSince I'm already a von-mises style libertarian crazy semi-anarchist, I look forward to this book turning me into an off the walls maniacally shrugging extremist who runs around town just saying the word bitcoin like a bitcoin-pokemon. \nperhaps then my father will finally respect me https://example.com/ 1286 455413 455413.455505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3107395430818 0 \N \N f 0 \N 0 125172063 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441697 2025-03-18 08:47:39.381 2025-03-29 22:39:49.24 \N My wife and kids. Better investment than bitcoin IMO. https://example.com/ 12490 441696 441696.441697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5343972060889 0 \N \N f 0 \N 0 58700633 0 f f \N \N \N \N 441696 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441639 2025-03-18 08:05:10.745 2025-03-29 22:39:49.24 \N In terms of digital life, I would set things up as follows:\n\nPhone - pixel 7 running GrapheneOS. Enable airplane mode and don't use a sim.\n\nMobile Internet - [Mudi VPN Router](https://www.gl-inet.com/products/gl-e750/). Stick a PAYG, data only sim card in this. Install [Blue Merle](https://github.com/srlabs/blue-merle) to randomise your IMEI every time you change the sim. Use MullVad VPN (pay with lightning)\n\nSMS - subscribe to a number on https://crypton.sh, no email account needed, pay with lightning. You can use this number for banking apps etc.\n\nPublic Messaging - Nostr \n\nPrivate Messaging - use Simplex Chat. Much better than Nostr as there are no identifiers.\n\nHome Internet - set up a VPN router as described [here](https://blog.lopp.net/how-to-protect-your-home-network-with-a-gigabit-vpn)\n\nLaptop - be sure the Intel ME is (or can be) disabled, and booted using CoreBoot. In the US, purchase from Librem. In the EU, Tuxedo.\n\nLaptop OS - if you have linux skills, use Qubes. Else use a free distro like Debian. If you're new to Linux, use Ubuntu or Mint.\n\nHome Server - get an Embassy Pro from Start 9. Can run Nextcloud, BTC Node, Lightning, Bitwarden (which can be both password manager and TOTP authenticator) and much more.\n\nBitcoin Vault - set up a multisig using at least 2 manufacturers. Here's a good guide: https://github.com/fresheneesz/tordlwalletprotocols\n\nHot Lightning - Phoenix or Blixt. Not Muun! Every time you spend all your satoshis, open a new wallet for greater privacy.\n\nPurchasing Bitcoin - Robosats\n\nMultiple identities - much easier with Qubes, but otherwise use different VMs for different identities. This helps to avoid accidentally using the wrong one. With graphene you can also multiple user accounts on your phone for different reasons.\n\n\nTry and keep at least 2-3 months of spending money in Cash. When sh*t hits the fan, the ATMs will be empty. Keep water and tinned food at home. Don't tell people your real name, if you can help it. Never EVER give your number out (it's best if you just don't have one). \n\nIf you own your own domain you can create 'catch all' emails which means you can give a different email to every service you sign up with.\n\nAvoid any software from these companies entirely:\n\n* Facebook (use signal with crypton.sh sms over whatsapp, ditch insta / fb)\n* Microsoft (use gitlab over github, nostr over linkedin, linux over windows)\n* Google (self-host email or use protonmail, nextcloud over drive)\n\n\nHave a home CCTV system, if your jurisdiction allows. Do NOT use amazon, build one with a raspberry pi or old android, so that the footage never leaves your network.\n\nAlways pay in Bitcoin or Cash. If you must use the banking system, start a company, and make payments from the company account.\n\nDon't purchase, or allow in your home:\n\n* Smart TVs\n* Alexa or similar\n* Oculus headsets\n* Anything that can send audio, images, or other sensory information to servers you don't control\n\n https://example.com/ 10342 441637 441637.441639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1024710015514 0 \N \N f 0 \N 0 144985107 0 f f \N \N \N \N 441637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456631 2025-03-27 17:55:25.003 2025-03-29 22:39:49.24 \N ![](https://m.stacker.news/61078) https://example.com/ 21166 456150 456150.456631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.290540239801 0 \N \N f 0 \N 0 21702291 0 f f \N \N \N \N 456150 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416957 2025-02-26 00:03:08.412 2025-03-29 22:39:49.24 \N \nIn the non-economic social sciences, the commodity money narrative is not nearly as dominant as it is in btc circles. You can go a long ways before anybody really emphasizes it. The most famous treatment that I can recall that's part of the btc canon is Nick Szabo's writing on [social scalability](https://unenumerated.blogspot.com/2017/02/money-blockchains-and-social-scalability.html).\n\nLyn's book gives a succinct but very nice treatment of the role of money in social coordination. Can you think of other examples in the btc space that do a good job talking about how money unlocks complex social interactions from a non-commodity narrative?\n\n https://example.com/ 13767 416841 416806.416841.416957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2984774093526 0 \N \N f 0 \N 0 218511847 0 f f \N \N \N \N 416806 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413919 2025-02-23 14:28:09.073 2025-03-29 22:39:49.24 \N A single actor could disable a few high throughput channels and increase average fee for everyone transacting during the attack.\n\nIf the attacker could specifically target nodes known to run LND, then they could sustain a constant probe attack, forcing the node to log every attempt until the node's disk filled up causing a system crash.\n\nRepeat until a majority of nodes are offline. However, sophisticated node operators can defend this attack.\n\nThe systemic issue is that every actor on the network is incentiviced to attack it in order to build a higher resolution map of the network (one that includes channel balance estimates). This additional data gained from spamming could be used to make payment routes more efficiently or to surveil the network and identify payment flows.\n\nIMO the protocol needs to allow charging a fee for attempted payments, not just successful ones.\n\nThat way, nodes that charge an "attempt fee" would be probed less. However, it creates a new dynamic where honest senders want to prioritize routes that they think will succeed, instead of just brute-forcing routes until success. Or maybe they just avoid nodes charging attempt fees altogether.\n\nNodes could adopt a change to their channel policy where they dynamically set MAX_HTLC depending on the local balance in their channel. This would let the network know an estimate of their true balance without needing to be probed. Its a voluntary disclosure that could result in more routes if peers are trying to avoid fees from attempted routes.\n\nBut updating the MAX_HTLC policy too frequently will contribute to gossip spam (another DOS vector). \n\nIf gossip is spammed too much, payments could fail because the sender did not include adequate fees to pay intermediate nodes along a route. This is because the fee policy change was delayed in propagating thru the network and the sender was using the old fee when they built the onion. \n\nIt already takes about 10 minutes for a policy change to propagate. When you change your channel policy, you're effectively disabling it for up to 10 mins. Its currently free to spam gossip as much as you want, thus increasing this "cooldown" time for everyone.\n\nIMO the gossip protocol should limit the relaying of policy updates if the node is updating too frequently. Maybe a node should be allowed 1 batch update per day, for example.\n\nEach solution has a whole set of new issues it introduces. Nothing is likely to change until DOS becomes a common occurance. Even then, Tor gets DOS'd all the time and the maintainers have expressed no desire to address it.\n\nLN is still nascent. If an attacker wanted to cause as much chaos as possible, they would wait until major institutions and global trade depends on LN, then attack.\n\nI'll argue that, as early adopters, its our duty to exploit the network in any way we can while its young and still capable of change.\n https://example.com/ 21042 413902 413902.413919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2637024216547 0 \N \N f 0 \N 0 239201442 0 f f \N \N \N \N 413902 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423522 2025-03-03 12:41:05.97 2025-03-29 22:39:49.24 \N ![](https://bitcoinscoresby.com/wp-content/uploads/2024/11/bitcoinalwayshasbeen.jpg) https://example.com/ 4754 423512 423512.423522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5578944222228 0 \N \N f 0 \N 0 201481806 0 f f \N \N \N \N 423512 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421252 2025-03-01 14:30:51.237 2025-03-29 22:39:49.241 \N I'm at TAB and I just bombed a wot workshop lol. Couldn't get the demo to load in safari and then stumbled around trying to explain what I expected to be able to show.\n\nI need a nap then back to TAB https://example.com/ 20858 420884 420884.421252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.25176811199379 0 \N \N f 0 \N 0 102399347 0 f f \N \N \N \N 420884 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444528 2025-03-20 01:15:30.49 2025-03-29 22:39:49.241 \N The roars of the lions in the original movie The Lion King weren't actual lion roars. Recordings of real lions roaring didn't sound "real" enough. Instead it was the voice of the actor who played Scooby Doo (Frank Welker) roaring into a trashcan.\n\nhttps://www.youtube.com/watch?app=desktop&v=Orv9OJDUnWM https://example.com/ 670 444526 444526.444528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.60004332366633 0 \N \N f 0 \N 0 35698053 0 f f \N \N \N \N 444526 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458268 2025-03-29 06:40:34.93 2025-03-29 22:39:49.241 \N it works just fine today. \n\n- i can acquire bitcoin without counterparty risk.\n\n- i can hold bitcoin without counterparty risk.\n\n- i can send bitcoin without counterparty risk.\n\n- i can pay with bitcoin because people value it. \n\nAny update or feature that could jeopardize these things, jeopardizes everything. Don't break something that works today because you're responding to a theoretical problem of tomorrow. https://example.com/ 695 458122 458122.458268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.90549433164641 0 \N \N f 0 \N 0 15436133 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431234 2025-03-09 16:05:23.37 2025-03-29 22:39:49.241 \N I think Bitcoiners are likely to be surprised how little adoption will take place even in the face of life-altering inflation. People will continue to use what they're used to, and won't take the time to understand what/why/how Bitcoin can benefit them. They'll be, by and large, controlled by state-driven headline-narrated FUD to resist adoption for a very long time, even if the price just keeps going up and up and up. https://example.com/ 2757 396141 396141.431234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.984660324866837 0 \N \N f 0 \N 0 103327569 0 f f \N \N \N \N 396141 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417025 2025-02-26 02:23:45.4 2025-03-29 22:39:49.242 \N ![](https://m.stacker.news/58798)\n\n![](https://m.stacker.news/58799) https://example.com/ 4570 417021 416536.417021.417025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3834972284432 0 \N \N f 0 \N 0 21917634 0 f f \N \N \N \N 416536 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435833 2025-03-13 02:35:24.391 2025-03-29 22:39:49.242 \N Day 157 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 687 435774 435579.435774.435833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5650242694031 0 \N \N f 0 \N 0 214777295 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458119 2025-03-29 00:48:26.612 2025-03-29 22:39:49.243 \N I think the concept of bitcoin being inevitable is relatively new. Sure, some people used to say that early on too, but that notion got much more popular and the last few years.\n\nIn reality, most generations of bitcoiners believed that some things need to be done in order for it to succeed. “Things” in all walks of life, but our topic here is building so I’ll focus on that.\n\nLightning for example, couldn’t have happened if we hadn’t soft forked bitcoin THREE times first in order to enable it (CLTV, CSV, SegWit). People forget that, but it was never the case that you don’t upgrade bitcoin to enable new things!\n\nI don’t think anyone can tell us “what needs to be built”; the only way to find out is for people to build whatever crazy things they want, and see how the market reacts. https://example.com/ 13467 452688 452688.458119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3422249337377 0 \N \N f 0 \N 0 18311318 0 f f \N \N \N \N 452688 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458171 2025-03-29 03:40:43.871 2025-03-29 22:39:49.243 \N ngl this is not what I expected by the title "adult" books lol https://example.com/ 4166 457468 457324.457468.458171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.56263016140123 0 \N \N f 0 \N 0 21151923 0 f f \N \N \N \N 457324 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451328 2025-03-24 13:57:58.107 2025-03-29 22:39:49.244 \N The Zen of Stacking Sats On Stacker News @siggy47\n\nhttps://stacker.news/items/184545/ https://example.com/ 5646 451017 450649.450652.450659.450664.450666.450670.450672.451014.451017.451328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6350404076501 0 \N \N f 0 \N 0 144242677 0 f f \N \N \N \N 450649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428395 2025-03-07 08:21:59.655 2025-03-29 22:39:49.245 \N Day 143 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20993 428286 428205.428284.428286.428395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9980168720496 0 \N \N f 0 \N 0 152289573 0 f f \N \N \N \N 428205 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410217 2025-02-20 11:00:37.893 2025-03-29 22:39:49.245 \N The government seizing my Bitcoin funds\n![The government seizing my Bitcoin funds](https://i.ibb.co/KhkdKH2/Fk-W4zxf-XEAUKpm-X.jpg) \n https://example.com/ 11670 410094 410094.410217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9297126299246 0 \N \N f 0 \N 0 74751754 0 f f \N \N \N \N 410094 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407718 2025-02-18 10:19:57.539 2025-03-29 22:39:49.245 \N ![](https://m.stacker.news/53808) https://example.com/ 4035 407646 405466.405794.406078.407646.407718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8029231307693 0 \N \N f 0 \N 0 217362473 0 f f \N \N \N \N 405466 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434924 2025-03-12 10:42:03.651 2025-03-29 22:39:49.245 \N That will be @davidw intro post on privacy club territory - https://stacker.news/items/350665 https://example.com/ 1534 434631 434626.434631.434924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.99827314308443 0 \N \N f 0 \N 0 98294826 0 f f \N \N \N \N 434626 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424175 2025-03-03 21:27:08.473 2025-03-29 22:39:49.246 \N Super aggressive tax policy put into place in the US wrt crypto-related capital gains (50% or more); along with accompanying laws for exchanges to implement more draconian KYC and transaction reporting. Also, an attempt at requiring disclosure of all crypto-related holdings of non-trivial size, but I don't think that this will pass.\n\nI honestly don't know whether bitcoiners will find these things surprising or not. They shouldn't, but I'm afraid that they will. https://example.com/ 1316 423352 423314.423321.423352.424175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5488623698228 0 \N \N f 0 \N 0 39493104 0 f f \N \N \N \N 423314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423196 2025-03-03 04:57:36.875 2025-03-29 22:39:49.246 \N New Zeus release is dropping next week with\n\n Lightning Node Connect\n New default home screen\n BIP21/Unified QRs\n BTCPay Lnbank support\n\nand a bunch more. Here's the latest beta if you want to help us test: https://github.com/ZeusLN/zeus/releases/tag/v0.7.0-beta2 https://example.com/ 919 422863 422863.423196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.36077942479868 0 \N \N f 0 \N 0 187743454 0 f f \N \N \N \N 422863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424160 2025-03-03 21:09:30.844 2025-03-29 22:39:49.246 \N ![img](https://i.imgflip.com/6x82qn.jpg) https://example.com/ 14385 424080 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.22971460841509 0 \N \N f 0 \N 0 220980763 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424124 2025-03-03 20:44:50.034 2025-03-29 22:39:49.246 \N Section 988 of the IRS Internal Revenue Code is in general titled "Treatment of certain foreign currency transactions." The general principle of that section is that "any foreign currency gain or loss...shall be...treated as ordinary income or loss." However, it outlines a bunch of exceptions, one of which is sometimes called the “de minimis” exemption:\n\n> If—\n> (A) nonfunctional currency is disposed of by an individual in any transaction, and\n> (B) such transaction is a personal transaction,\n> no gain shall be recognized for purposes of this subtitle by reason of changes in exchange rates after such currency was acquired by such individual and before such disposition. The preceding sentence shall not apply if the gain which would otherwise be recognized on the transaction exceeds $200. [source](https://www.law.cornell.edu/uscode/text/26/988)\n\nThere’s a lot of legalese there so let’s unpack it, starting with “nonfunctional currency.” [This document](https://www.law.cornell.edu/cfr/text/26/1.985-1) helpfully defines what the tax code means by functional currency: “Generally, [taxpayers] must make all determinations…relating to income taxes…in [their] respective functional currency. … The dollar shall be the functional currency of [most] taxpayer[s]...regardless of the currency used in keeping [their] books and records.” Basically, your country’s “functional currency” is the one in common use, and any other currencies are “non-functional” currencies.\n\nFor a long time, bitcoin didn't fit the first part of this exemption because anyone who tried to say bitcoin is a nonfunctional “currency” would get tripped up on the currency part. A judge, for example, would ask what country accepts it for payment of all debts, public and private. The bitcoiner would have no answer, and the judge could then just say, “Nice try, but bitcoin is clearly not a currency.” But now, bitcoin is legal tender in el salvador (including for government bills), so we can say it is currency there. That means bitcoin now fits the first condition in this exemption: it is a nonfunctional currency disposed of by some individuals in some transactions.\n\nThe second part says the exemption only applies to personal transactions. A personal transaction is defined as “any transaction entered into by an individual” (as opposed to a business) and not including a self-employed person’s business expenses (or what would be business expenses if that person’s business was incorporated -- for more info see the full definition [here](https://www.law.cornell.edu/uscode/text/26/988)).\n\nGiven these definitions and conditions, the exemption applies to bitcoin in this way:\n\nIf a person (“an individual”) spends his bitcoins (“nonfunctional currency”) for everyday reasons (“personal transactions”), then it can’t be taxed (“no gain shall be recognized”) just because it appreciated in value (“by reason of changes in exchange rates”) after he acquired it (“after such currency was acquired...and before such disposition”) unless the value of the appreciation exceeds $200 (“[That] does not apply if the gain...exceeds $200”).\n\nSince bitcoin is a foreign currency now, taxpayers can legitimately not disclose their bitcoin expenditures to the IRS as long as the gains on each transaction are below $200. That is beneficial for privacy and an incredible boon to the usefulness of bitcoin. Note well: no other cryptocurrency gets this exemption because no other cryptocurrency is a foreign country's legal tender. https://example.com/ 9363 423928 423928.424124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0824320639718 0 \N \N f 0 \N 0 72732378 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428800 2025-03-07 15:54:30.826 2025-03-29 22:39:49.247 \N Did you know diarrhea is hereditary?\n…\n…\n…\nIt runs in your genes https://example.com/ 1584 428521 428521.428800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.8059221550169 0 \N \N f 0 \N 0 86106224 0 f f \N \N \N \N 428521 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444136 2025-03-19 17:26:55.112 2025-03-29 22:39:49.247 \N The most important thing you miss in 3 is that this totally destroys bitcoin's incentive model. With drivechains miners no longer have the incentive to mine the next block, there is a greater incentive to mine steal from drivechains. \n\nImo because of this, drivechain is one of the worst proposals ever to come to bitcoin. https://example.com/ 9349 444097 444097.444136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.436272728777 0 \N \N f 0 \N 0 189335953 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407517 2025-02-18 06:12:43.879 2025-03-29 22:39:49.248 \N ![meme-escape](https://m.stacker.news/26708) https://example.com/ 8287 407490 407490.407517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0227974562788 0 \N \N f 0 \N 0 121851506 0 f f \N \N \N \N 407490 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444492 2025-03-19 23:45:02.562 2025-03-29 22:39:49.248 \N Going to help to one of my friend for buy bitcoin in person. He just started to learn about bitcoin 2-3 months ago but already changed most of his fiat saving to bitcoin. I always amaze on people who are so open for new things. He is one of them. He called me few months ago that "I remember you said some cool things about bitcoin and although I don't really know what it is after all it made sense. Don't you wanna meet one day to discuss how this works". Obviously I did not rejected to meet with him and introduce hime to Bitcoin. I really enjoyed the meeting especially the first one because he was so open to listen and try to understand. The end of our first meeting I told him that do not trust anything what I said. Go on, dig deep, do your own research and verify the things which I said. He liked that and he quickly started to do his own research. Few weeks later he calls me again. I pick up the phone then he says "you know what?! This bitcoin thing makes lot of sense. This is something that I am searching for since long time. I loving this options that I can verify things. I am in! How can I buy some bitcoins?(he means sats🤣)". Since then he can not resist to send messages everyday about how cool this thing is. HE IS GOING DOWN IN THE RABBIT HOLE 😂😂😂😂😂😂😂😂 Loving to witness this https://example.com/ 10393 443197 443197.444492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2734301536535 0 \N \N f 0 \N 0 211526586 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444373 2025-03-19 20:28:21.563 2025-03-29 22:39:49.248 \N 3 Beers and 1 lb cheese yesterday 22k sats El Salvador, I live 100% off of sats and I fucking love it https://example.com/ 21421 443268 443268.444373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.901017104208 0 \N \N f 0 \N 0 209826967 0 f f \N \N \N \N 443268 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423153 2025-03-03 03:30:26.558 2025-03-29 22:39:49.248 \N ![Can't believe no one else owns Bitcoin](https://m.stacker.news/15886) https://example.com/ 13174 417552 416768.417016.417047.417552.423153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.76273245525002 0 \N \N f 0 \N 0 120890497 0 f f \N \N \N \N 416768 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414253 2025-02-23 19:08:25.971 2025-03-29 22:39:49.249 \N > Against stupidity we have no defense. Neither protests nor force can touch it. Reasoning is of no use. Facts that contradict personal prejudices can simply be disbelieved — indeed, the fool can counter by criticizing them, and if they are undeniable, they can just be pushed aside as trivial exceptions. So the fool, as distinct from the scoundrel, is completely self-satisfied. In fact, they can easily become dangerous, as it does not take much to make them aggressive. For that reason, greater caution is called for than with a malicious one. Never again will we try to persuade the stupid person with reasons, for it is senseless and dangerous.\n\n~ Dietrich Bonhoeffer\n\nBonhoeffer was a German Christian Theologian that stood up to the Nazi regime.\n\n> Of all tyrannies, a tyranny sincerely exercised for the good of its victims may be the most oppressive. It would be better to live under robber barons than under omnipotent moral busybodies. The robber baron's cruelty may sometimes sleep, his cupidity may at some point be satiated; but those who torment us for our own good will torment us without end for they do so with the approval of their own conscience. \n\n~ C. S. Lewis\n\nWe have both and my view of history is that the German people thought they were right and justified. Today most politically active people (voters) believe they are just and right. They are also ignorant and mostly willfully ignorant. The thinkers will never outnumber them. We will not get through to them intellectually. Mostly because they are not interested in all this nerd economics and money stuff. They aren't interested in liberty or freedom. They are interested in comfort.\n\n> Most people do not really want freedom, because freedom involves responsibility, and most people are frightened of responsibility.\n\n ~ Sigmund Freud\n\nMost people think they are free.\n\n> The best way to keep a prisoner from escaping is to make sure he never knows he's in prison.\n\n ~ Fyodor Dostoyevsky\n\nI don't think most people think the best way to solve problems is to kill one another. This is war. The average American has no beef with the average person from another nation. It is states that create war to profit and gain control over more land and other states. We know that the public doesn't want war for the sake of war because war is sold to us in moral terms. It is not sold as an acquisition of land, resources or control. It is sold as the way to find justice and peace. These are [noble lies](https://en.wikipedia.org/wiki/Noble_lie) the elite sell to the public.\n\nDoes bitcoin fix this? I hope so. Fiat money fuels war. Without it, with a hard money the state is forced to tax the public to pay for these wars. The people will only tolerate so much taxation. It has a limit I mean. Fiat seems to continue with a much longer tail. Eventually the system breaks but the public is kept in the dark as to the causes. How? Because of their ignorance and lack of curiosity and skepticism.\n\nOnly a portion of the population is even interested in true intellectual thought. I'm not sure how small the number is but it is no where near a majority. Politics is marketing and manipulation of the dumb masses. That is not the way. But there is value in writing, podcasts, books and other content that teaches those with ears to hear the truth. The solution in my view is to destroy and expose the lie of fiat. We do this by using bitcoin. By adopting it. Use the tools. The apps, the nodes, the miners. Do business with other bitcoiners. We build this ecosystem for the day when fiat collapses. That day may come soon or in 100 years. But the better prepared we are, the less pain there will be. The existing system will fail. It is inevitable. What is not inevitable is the new system. We want it to be bitcoin but we must be ready. https://example.com/ 1631 413545 413545.414253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.63551252058987 0 \N \N f 0 \N 0 139367172 0 f f \N \N \N \N 413545 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424228 2025-03-03 22:46:44.535 2025-03-29 22:39:49.249 \N ![2FFi66vPKVQAAdZyr](https://nitter.at/pic/orig/media%2FFi66vPKVQAAdZyr.png) https://example.com/ 21365 424227 424115.424227.424228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.283481536229 0 \N \N f 0 \N 0 2144692 0 f f \N \N \N \N 424115 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408274 2025-02-18 17:03:50.922 2025-03-29 22:39:49.249 \N I've always thought building native iOS apps only was foolish for this reason. You're completely locked in to their platform.\n\nThis is why we built Mutiny as a PWA. https://example.com/ 8506 408269 407903.408269.408274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3470787687472 0 \N \N f 0 \N 0 88267430 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431051 2025-03-09 15:12:20.788 2025-03-29 22:39:49.24 \N ### Quick guide for your small merchant friend\n\n@Car you asked @k00b in the last SNL what solutions are available today for a small merchant (coffee stall) to being able to accept Bitcoin quickly, without any hassle.\n\nSo what I suggest is the following scenario.\n- keep it simple in the beginning, don't over-complicate things for a newbie. Let them discover step by step all the solutions available and that way they will learn more.\n- inform them about the differences between custodial and non-custodial solutions. Sometimes a custodial solution could be useful as a decoy for receiving payments ([as I explained in this guide](https://darthcoin.substack.com/p/operating-with-ln-as-a-merchant)). Withdrawing periodically from a custodial account is strongly recommended. A non-custodial solution sometimes involve more knowledge and capital allocation.\n- depending on each merchant business profile, recommend the more suitable solution for them, not for your taste. Your usual BTC/LN wallet maybe is not the perfect way for a merchant, so try to put yourself in their situation and how they operate.\n\nHere I would list some solutions that can be used (I tested myself):\n1. [CoinOS](https://coinos.io/) - web wallet (Tor supported), PWA supported, custodial / non-custodial, integrated swaps, PoS, LNURL, LN Address, onchain / LN payments, no KYC, fully anonymous.\n\n2. [IBEX Pay](https://www.ibexpay.io/) - web and mobile wallet, custodial, swaps, PoS, LNURL, web lightning merchant page, API, [here is a very good video tutorial](https://www.youtube.com/watch?v=q_maOYxBtbs) and [more tutorials on their webpage](https://www.ibexpay.io/support)\n\n3. [Blink Wallet](https://www.blink.sv/) - custodial, LN address, PoS webpage (very good for employees), merchants map, circles, easy to use, open source developed by Galoy team.\n\n4. [LifPay](https://lifpay.me/) - custodial, LN address, Lightning page, easy to use, no KYC\n\n5. [LightningTipBot](https://t.me/LightningTipBot) - custodial Telegram LN bot used with Zeus or Bluewallet app, LNURL, LN address, many other features\n\n6. [Alby](https://getalby.com/) - custodial browser extension, LNURL, LN address, can be imported into Zeus and Bluewallet app and used as a regular LN wallet.\n\n7. [Phoenix](https://phoenix.acinq.co/) / [Breez](https://breez.technology/) / [Electrum](https://electrum.org/) mobile wallet - non-custodial, opening channels fees involved, swaps out are needed to empty the inbound channels and be ready for the next day.\n\n8. [Blixt](https://blixtwallet.com/) / [Zeus](https://zeusln.app/) / [Mutiny](https://mutinywallet.com) - non-custodial, full mobile LN node (neutrino), LN address, channels management, LSP, swaps out are needed to empty the inbound channels and be ready for the next day.\n\n9. [Nodeless](https://nodeless.io/) - semi-custodial, auto-widrawals to your own wallets / LN address, full set of features for merchants with seamless integration into webshops, solution based on BTCPay server.\n\n10. Use an "uncle Jim" Lightning Bank, as [I explained in this guide](https://darthcoin.substack.com/p/bitcoin-private-banks-over-lightning) - we need more skilled node runners to play the role of a "uncle Jim" LN bank for their local community and offer these semi-trusted solutions.\n\n11. [Bitcoinize](https://bitcoinize.com/) - nice PoS machines, connected to many funding sources, NFC enabled, printing receipts. \n\nI hope this quick guide will help you with your local small merchant friend. https://example.com/ 21067 418410 418410.431051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1935779913728 0 \N \N f 0 \N 0 7592883 0 f f \N \N \N \N 418410 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416950 2025-02-25 23:53:37.29 2025-03-29 22:39:49.24 \N Just a heads up that I'm trying something different today. I have been trying to orange pill everyone I meet lately, and I had a kind of funny experience recently. I'm going to post the story on SN. The basic plot is true, but I did exaggerate in parts to try to make it more entertaining. I'm going to forward any sats I get to Anita, but of course she had nothing to do with this. It is a little wacky, but what the hell? If I can't try wacky here, where can I? https://example.com/ 1817 416924 416768.416924.416950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6317751743737 0 \N \N f 0 \N 0 58162475 0 f f \N \N \N \N 416768 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431250 2025-03-09 16:08:06.486 2025-03-29 22:39:49.24 \N ![](https://i.imgur.com/5AyTBcS.jpeg) https://example.com/ 17218 392928 392928.431250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.90830421399374 0 \N \N f 0 \N 0 102152508 0 f f \N \N \N \N 392928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456736 2025-03-27 20:35:36.002 2025-03-29 22:39:49.241 \N Morning amigos. Here's a thought for today / mini-update:\n\nI don't really do any social media besides SN [1], and it's been interesting to observe a phenomenon I thought I had left behind forever: getting so swept up in something that I check it a million times a day, leave a million comments, obsessively refresh the "recent" tab. The apotheosis of this was the other week's book club.\n\nOn the one hand, this was great. On the other hand, it blew my attention all to hell. Like, it seriously compromised my ability to do my job. Which, if I had kept it up, would have meant me having a lot more time on SN after I got fired. Glass half-full I guess.\n\nAnyway, I'm trying to figure out how to balance this in a viable way. Any other situation, I would just disappear. But SN is important enough that I want to figure out how to make it work. I'll probably post an actual post about some of this (how meta) in the next day or two. It seems like an issue worth thinking about in public -- my attraction to SN is that it makes it possible to re-think what community could mean, in an online world. These effects are part of that. I think it's a deeper issue than just my own self-regulatory challenges.\n\nAnyway, some thinking out loud.\n\n(Also, I haven't forgotten that we have one part of book club left. Have no fear!)\n\n[1] Not completely true. I read Twitter, but it's highly curated as a news source only, and I never post. https://example.com/ 21222 452151 452063.452151.456736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5117891156036 0 \N \N f 0 \N 0 22595744 0 f f \N \N \N \N 452063 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444438 2025-03-19 21:56:24.517 2025-03-29 22:39:49.241 \N ![img](https://i.ibb.co/FsDxmCT/20220924-231119.jpg) https://example.com/ 9339 443336 443295.443336.444438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5208022780094 0 \N \N f 0 \N 0 181341546 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416923 2025-02-25 23:11:44.618 2025-03-29 22:39:49.241 \N Day 127 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 21214 415647 415637.415647.416923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9041450060542 0 \N \N f 0 \N 0 180776022 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422227 2025-03-02 10:26:27.084 2025-03-29 22:39:49.242 \N ![photo-output.jpeg](https://m.stacker.news/11212) https://example.com/ 1626 414274 410710.414274.422227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.43570949117466 0 \N \N f 0 \N 0 80782533 0 f f \N \N \N \N 410710 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455302 2025-03-26 22:32:23.058 2025-03-29 22:39:49.242 \N I bought a refurbished PC, put linux on it and downloaded their software. Runs smooth. $300. https://example.com/ 20511 455286 335484.335562.335591.335690.335721.335729.335791.336308.336318.336322.452856.453420.453900.453968.454254.455286.455302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4032540873142 0 \N \N f 0 \N 0 131367255 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403436 2025-02-14 19:44:14.083 2025-03-29 22:39:49.242 \N Reviewing and testing Bitcoin Core pull request https://github.com/bitcoin/bitcoin/pull/25325 "Add pool based memory resource" by [Martin Leitner-Ankerl](https://github.com/martinus).\n\nIt's a fundamental low-level algorithm change with the goal to cache more coins with the same memory usage and to allocate and de-allocate faster. The performance improvements are [impressive](https://github.com/bitcoin/bitcoin/pull/25325).\n\nIt's not easy to review and ensure that the change causes no issues. Nevertheless, I think this kind of work is important to make Bitcoin more decentralized and robust.\n https://example.com/ 16440 403304 403304.403436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.99473475290855 0 \N \N f 0 \N 0 37415009 0 f f \N \N \N \N 403304 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414752 2025-02-24 09:22:07.925 2025-03-29 22:39:49.243 \N Just a heads up, guys. I just got some good news. I heard back from the owner of the deli I went to and he's interested in increasing his bitcoin sales. @DarthCoin, I really think lightning would be a good first step. Seeing his business, it's very busy during rush hour, so I have a feeling he would prefer a static address as opposed to a more sophisticated invoice type set up. Any recommendations? \nP.S.\nSorry to interrupt happy hour with business! https://example.com/ 21033 414644 414625.414626.414644.414752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3517841934431 0 \N \N f 0 \N 0 43220317 0 f f \N \N \N \N 414625 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410553 2025-02-20 14:31:45.367 2025-03-29 22:39:49.243 \N ![](https://m.stacker.news/55037.webp) https://example.com/ 21620 410147 409591.410147.410553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.18419853491995 0 \N \N f 0 \N 0 163822659 0 f f \N \N \N \N 409591 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457109 2025-03-28 08:07:54.027 2025-03-29 22:39:49.244 \N Question #3: Can you steelman the argument that Bitcoin doesn't need any new features or upgrades? https://example.com/ 5017 457096 455893.456745.457096.457109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.222092834871 0 \N \N f 0 \N 0 174379083 0 f f \N \N \N \N 455893 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402639 2025-02-13 21:46:49.289 2025-03-29 22:39:49.244 \N Good to see someone in NY leading the charge. https://example.com/ 15200 402572 402171.402303.402494.402572.402639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6739733207239 0 \N \N f 0 \N 0 22297554 0 f f \N \N \N \N 402171 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443238 2025-03-19 07:42:01.245 2025-03-29 22:39:49.244 \N # Key sorting\nAny wallet that supports BIP48 inherently supports deterministic key sorting as per BIP67 so that all possible multi-signature addresses/scripts are derived from deterministically sorted public keys.\n\n# Path levels\nWe define the following 6 levels in BIP32 path:\n\n```\nm / purpose' / coin_type' / account' / script_type' / change / address_index\n```\n`h` or `'` in the path indicates that BIP32 hardened derivation is used.\n\nEach level has a special meaning, described in the chapters below.\n\n# Purpose\nPurpose is a constant set to 48' following the BIP43 recommendation. It indicates that the subtree of this node is used according to this specification.\n\nHardened derivation is used at this level.\n\n# Coin type\nOne master node (seed) can be used for multiple Bitcoin networks. Sharing the same space for various networks has some disadvantages.\n\nAvoiding reusing addresses across networks and improving privacy issues.\n\nCoin type `0` for mainnet and `1` for testnet.\n\nHardened derivation is used at this level.\n\n# Account\nThis level splits the key space into independent user identities, following the BIP44 pattern, so the wallet never mixes the coins across different accounts.\n\nUsers can use these accounts to organize the funds in the same fashion as bank accounts; for donation purposes (where all addresses are considered public), for saving purposes, for common expenses etc.\n\nAccounts are numbered from index 0 in sequentially increasing manner. This number is used as child index in BIP32 derivation.\n\nHardened derivation is used at this level.\n\n# Script\nThis level splits the key space into two separate `script_type(s)`. To provide forward compatibility for future script types this specification can be easily extended.\n\nCurrently the only script types covered by this BIP are Native Segwit (p2wsh) and Nested Segwit (p2sh-p2wsh).\n\nThe following path represents Nested Segwit (p2sh-p2wsh) mainnet, account 0: `1'`: Nested Segwit (p2sh-p2wsh) `m/48'/0'/0'/1'`
\n\nThe following path represents Native Segwit (p2wsh) mainnet, account 0: `2'`: Native Segwit (p2wsh) `m/48'/0'/0'/2'`
\n\nThe recommended default for wallets is pay to witness script hash `m/48'/0'/0'/2'`.\n\nTo add new script types submit a PR to this specification and include it in the list above: `X'`: Future script type `m/48'/0'/0'/X'`
\n\n# Change\nConstant 0 is used for external chain and constant 1 for internal chain (also known as change addresses). External chain is used for addresses that are meant to be visible outside of the wallet (e.g. for receiving payments). Internal chain is used for addresses which are not meant to be visible outside of the wallet and is used for return transaction change.\n\nPublic derivation is used at this level.\n\n# Index\nAddresses are numbered from index 0 in sequentially increasing manner. This number is used as child index in BIP32 derivation.\n\nPublic derivation is used at this level.\n\n# Examples\nnetwork\taccount\tscript\tchain\taddress\tpath\nmainnet\tfirst\tp2wsh\texternal\tfirst\tm / 48' / 0' / 0' / 2' / 0 / 0\nmainnet\tfirst\tp2wsh\texternal\tsecond\tm / 48' / 0' / 0' / 2' / 0 / 1\nmainnet\tfirst\tp2wsh\tchange\tfirst\tm / 48' / 0' / 0' / 2' / 1 / 0\nmainnet\tfirst\tp2wsh\tchange\tsecond\tm / 48' / 0' / 0' / 2' / 1 / 1\nmainnet\tsecond\tp2wsh\texternal\tfirst\tm / 48' / 0' / 1' / 2' / 0 / 0\nmainnet\tsecond\tp2wsh\texternal\tsecond\tm / 48' / 0' / 1' / 2' / 0 / 1\ntestnet\tfirst\tp2sh-p2wsh\texternal\tfirst\tm / 48' / 1' / 0' / 1' / 0 / 0\ntestnet\tfirst\tp2wsh\texternal\tsecond\tm / 48' / 1' / 0' / 2' / 0 / 1\ntestnet\tfirst\tp2wsh\tchange\tfirst\tm / 48' / 1' / 0' / 2' / 1 / 0\ntestnet\tfirst\tp2wsh\tchange\tsecond\tm / 48' / 1' / 0' / 2' / 1 / 1\ntestnet\tsecond\tp2wsh\texternal\tfirst\tm / 48' / 1' / 1' / 2' / 0 / 0\ntestnet\tsecond\tp2wsh\texternal\tsecond\tm / 48' / 1' / 1' / 2' / 0 / 1\ntestnet\tsecond\tp2wsh\tchange\tfirst\tm / 48' / 1' / 1' / 2' / 1 / 0\ntestnet\tsecond\tp2wsh\tchange\tsecond\tm / 48' / 1' / 1' / 2' / 1 / 1\n https://example.com/ 4763 441774 441742.441774.443238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8635621062663 0 \N \N f 0 \N 0 32219796 0 f f \N \N \N \N 441742 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423189 2025-03-03 04:43:07.443 2025-03-29 22:39:49.245 \N ![Untitled-1.jpg](https://m.stacker.news/7670) https://example.com/ 12139 422361 422361.423189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.3436783295374 0 \N \N f 0 \N 0 88671086 0 f f \N \N \N \N 422361 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449976 2025-03-23 16:48:39.747 2025-03-29 22:39:49.249 \N ![.](https://nostr.build/i/cab209049d21cb2582468a81b1438de6ccd6f2d42af40bd4487e9dc476dc1607.jpg) https://example.com/ 695 449969 449969.449976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4904226709663 0 \N \N f 0 \N 0 134448745 0 f f \N \N \N \N 449969 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407341 2025-02-17 23:02:50.536 2025-03-29 22:39:49.25 \N The tail emission arguments can't be put to rest until we actually see, empirically, what the security budget turns out to be. Hashing out the possibilities in advance, and coming up with possible actions to mitigate catastrophe before it's actually on top of us, is the sensible response. \n\nFaith-based assumptions that everything will be fine, because everything has been fine up till now, is about the stupidest possible approach to system engineering. I would have thought every bitcoiner would have this in their DNA, but it has not proved to be the case. https://example.com/ 2330 406297 406297.407341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5179114807892 0 \N \N f 0 \N 0 46748710 0 f f \N \N \N \N 406297 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403247 2025-02-14 15:36:06.665 2025-03-29 22:39:49.251 \N I use https://cursor.sh a fork of VScode with AI built-in. I can highlight a block of code and ask GPT to adjust it. Then I get an inline diff with the option to ACK/NACK or follow-up all without leaving the editor.\n\nI found GPT is useful when:\n\n- I know exactly what to write. And it would take fewer keystrokes to command GPT to write it instead. All I have to do is review and accept. (Boilerplate, Type/Interface definitions, formating, repetitive tasks)\n\n- I'm exploring an idea or looking for existing tools/methods. I use the Chat feature like a search engine/wiki to assist in exploration. GPT helps me bridge small gaps in knowledge.\n\nI have found GPT is NOT useful when: \n\n- I have large gaps in knowledge\n\n- The work is novel or less researched/documented.\n\n- Also, I notice that GPT will usually default to the most generic and general way to solve a problem, not necessarily the best way. For example, it will reinvent the wheel by implementing a complex algorithm poorly rather than use a library or existing method that is more efficient. I have yo specifically ask if there are any libraries that would simplify things.\n\nIn summary, GPT will not turn non-devs into devs overnight. If however, you already understand a problem and already know how to solve it, GPT will make light work of actually getting it done.\n https://example.com/ 1142 403238 403238.403247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0697376983387 0 \N \N f 0 \N 0 208354029 0 f f \N \N \N \N 403238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408020 2025-02-18 14:30:30.823 2025-03-29 22:39:49.251 \N ![1000027657.jpg](https://m.stacker.news/5356) https://example.com/ 20612 407983 407903.407963.407974.407983.408020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.5663134732557 0 \N \N f 421773194 \N 3 242041225 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 452974 2025-03-25 15:27:31.009 2025-03-29 22:39:49.251 \N STACKERS ASSEMBLE AT THE ROUND TABLE\n\nhttps://imgprxy.stacker.news/CFhjDTkDkg8n5mPXtsCacUG13Fls0Rnzpy0TkN640Uc/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ2ZsaXAuY29tLzd6eG1uYy5qcGc https://example.com/ 15556 452770 452625.452770.452974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5115819355057 0 \N \N f 0 \N 0 112075053 0 f f \N \N \N \N 452625 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402069 2025-02-13 14:37:46.943 2025-03-29 22:39:49.251 \N Diamond Age - by Neal Stephenson\n----------\n\n\nYou plebs can expect a summary sometime next month, much like my summaries here:\n- [Sovereign Individual](https://stacker.news/items/49781)\n- [When Money Dies](https://stacker.news/items/158149) https://example.com/ 9349 402034 400908.402034.402069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.00340270388739 0 \N \N f 0 \N 0 163154242 0 f f \N \N \N \N 400908 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456758 2025-03-27 21:02:23.918 2025-03-29 22:39:49.25 \N For those that haven't read the book, I strongly recommend you do. Here's a taster/reminder...\n\n\n...\n\n## ⚡ **Summary**\n1. When technology is mobile, and transactions occur in cyberspace, as they increasingly will do, governments will no longer be able to charge more for their services than they are worth to the people who pay for them.\n2. Anyone with a portable computer and a satellite link will be able to conduct almost any information business anywhere, and that includes almost the whole of the world's multitrillion-dollar financial transactions.\n3. This means that you will no longer be obliged to live in a high-tax jurisdiction in order to earn high income. In the future, when most wealth can be earned anywhere, and even spent anywhere.\n4. Governments that attempt to charge too much as the price of domicile will merely drive away their best customers.\n5. Taxing capacity will plunge by ~50-70 percent. This will tend to make smaller jurisdictions more successful.\n6. Incomes will become more unequal within jurisdictions and more equal between them.\n7. Unlike the Agricultural Revolution, the Information Revolution will not take millennia to do its work. Unlike the Industrial Revolution. its impact will not be spread over centuries.\n8. What is more, it will happen almost **everywhere at once**. Technical and economic innovations will no longer be confined to small portions of the globe. The transformation will be all but universal.\n9. The cybereconomy, rather than China, could well be the greatest economic phenomenon of the next thirty years.\n10. The death of inflation will take away the disguised profits that inflation previously conveyed to to those who were monopolistic issuers of currency.\n\n\n\n## ❓**Who benefits & loses**\n1. The Information Age will be the age of upward mobility. It will afford far more equal opportunity for the billions of humans in parts of the world that never shared fully in the prosperity of industrial society.\n2. The brightest, most successful and ambitious of these will emerge as truly Sovereign Individuals.\n3. By 2025, the cybereconomy will have many millions of participants. Some of them will be as rich as Bill Gates, worth over $10 billion each.\n4. The "cyberpoor" may be those with an income of less than $200,000 a year. \n5. Tens of billions, then ultimately hundreds of billions of dollars will be controlled by hundred of thousands, then millions of Sovereign Individuals.\n6. It is important not to forget that in many areas of the globe, the transition to the information economy will lead output to surge, with higher incomes all around.\n7. In general terms, the tax consumers will be the losers.\n8. Those without savings who rely on government to pay their retirement benefits and medical care will in all probability suffer a fall in living standards.\n9. For better or for worse, the societies of the 21st century are likely to be more unequal than those we have lived in during the 20th.\n10. Those who live in jurisdictions that remained poor or underdeveloped during the industrial period have the most to gain by the liberation of economies from the confines of geography. This is contrary to what you will hear.\n11. Jurisdictions in **Latin America and Asia** where per capita income is rising rapidly may endure for generations, or until lifetime income prospects there equate with those in the formerly rich industrial countries.\n12. We also suspect that nation-states with a single major metropolis will remain coherent longer than those with several big cities.\n\n\n## 🎲**End Game**\n1. The vision of the nation-state among persons of ability and wealth, the Sovereign Individuals of the future, will have undergone the political equivalent of laser surgery. They will be seeing 20/20 👈👀\n2. The result to be expected is an intense fiscal crisis with many unpleasant social side effects.\n3. The economic consequence of this transition crisis will probably include a one-time spike in real interest rates. Debtors will be squeezed as long-term liabilities contracted under the old system are liquidated.\n4. Governments facing serious competition to their currency monopolies will probably seek to underprice the for-fee cybercurrencies by tightening credits and offering savers higher real yields on cash balances in national currencies.\n5. Higher real rates around the world will spur liquidation of high-cost, unproductive activities and temporarily reduce consumption.\n6. The deflationary environment may drag on for some time, with more adverse consequences in the high-cost industrial economies of North America and Western Europe than in the low-cost economies in Asia and Latin America.\n7. Those in regions where computer usage and net participation are low may opt for old-fashioned hyperinflation in the early stages of the cyberecononomy.\n8. Those countries that first recognise the validity of digital signatures and provide local court enforcement for nonpayment of cyber debts will stand to benefit from a disproportionate surge in long-term capital lending.\n9. Conventional thinkers would conclude that the breakdown of income redistribution in the leading nation-states would doom the world to economic collapse. Do not believe it.\n10. The main controversy surrounding the advent of the information economy and the rise of the Sovereign Individual will focus on the allegedly effects on "fairness" arising from the death of politics.\n11. The Information Revolution will make it much less important whether governments are able to function capably. It will therefore be easier for persons living in traditionally poor countries to surmount the hurdles that their governments have thereto placed in the path of economic growth.\n12. While public debate will focus on growing "inequality" in the OECD countries, individuals everywhere will enjoy far more nearly equal opportunities.\n13. There will be no cyberwelfare. No cybertaxes and no cybergovernment.\n14. The "losers and left-behinds" in the Information Society will surely envy and resent the success of winners.\n15. While the leading states will no doubt attempt to enforce a cartel to preserve high taxes and fiat by cooperating to limit encryption and prevent citizens from escaping their domains, the states will ultimately fail. The most productive people on the planet will find their way to economic freedom.\n16. For this reason, it is to be expected that one of more nation-states will undertake covert action to subvert the appeal of transience. Travel could be effectively discouraged...\n\n\n\n## 🤑 **The Size of the Prize**\n1. Each $5,000 of annual tax payments paid over forty years slashes your net worth by $2.2million, assuming a 10% return. At a 20% return, the compound loss balloons to $44 million.\n2. Global competition will also tend to increase the income earned by the most talented individuals in each field, wherever they live, much as it does now in professional athletes.\n3. Cheap governments that have few liabilities and impose low costs on customers will be the domiciles of choice for wealth creation in the Information Age.\n3. New fragmented sovereignties will cater to different tastes, just as hotels and restaurants do.\n4. Within years, let alone decades, it will be widely understood that anyone of talent could accumulate a much higher net worth and enjoy a better life by abandoning high-tax nation states.\n\n\n https://example.com/ 993 455524 455486.455524.456758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4083795883317 0 \N \N f 0 \N 0 120408628 0 f f \N \N \N \N 455486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424187 2025-03-03 21:39:51.623 2025-03-29 22:39:49.25 \N When do you think will be available some testing code for all this ark? https://example.com/ 21238 423739 423667.423739.424187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0428313854994 0 \N \N f 0 \N 0 24992602 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443269 2025-03-19 08:16:47.058 2025-03-29 22:39:49.25 \N \nhttps://njump.me/nevent1qqsgny2as764tp7h4nuszhd0a3wemjt446qmavfp6ya9qmmsr2suu6gpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0qgsxx7uu034dee4aj8djcm4qcnymyfsvrvns333vfj2c8lq0g6fdxlgrqsqqqqqpmznrfv\n https://example.com/ 19673 442904 442904.443269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5831575628622 0 \N \N f 0 \N 0 208690986 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454937 2025-03-26 16:42:40.057 2025-03-29 22:39:49.251 \N Day 141 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 9367 454905 454701.454794.454865.454905.454937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.222283599483433 0 \N \N f 0 \N 0 110830549 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423087 2025-03-03 00:30:49.577 2025-03-29 22:39:49.251 \N ![](https://www.zapread.com/i/--h) https://example.com/ 18402 422863 422863.423087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.26528376351289 0 \N \N f 0 \N 0 130980682 0 f f \N \N \N \N 422863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444477 2025-03-19 23:10:51.496 2025-03-29 22:39:49.251 \N Day 144 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 647 444415 444365.444415.444477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.00087566030453 0 \N \N f 0 \N 0 228688770 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430910 2025-03-09 14:03:08.145 2025-03-29 22:39:49.251 \N ![](https://www.zapread.com/i/-4.) https://example.com/ 5017 430626 430626.430910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.25558900468078 0 \N \N f 0 \N 0 177229202 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456693 2025-03-27 19:22:51.493 2025-03-29 22:39:49.251 \N Woo hoo!! https://example.com/ 12946 456590 455649.456239.456590.456693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.874027117997 0 \N \N f 0 \N 0 234546498 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443279 2025-03-19 08:27:35.077 2025-03-29 22:39:49.251 \N Day 130 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 20756 443274 443274.443279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.37778944306113 0 \N \N f 0 \N 0 197026848 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423554 2025-03-03 12:53:42.149 2025-03-29 22:39:49.251 \N Day 145 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 979 423398 423124.423398.423554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1077644784772 0 \N \N f 0 \N 0 170564063 0 f f \N \N \N \N 423124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451335 2025-03-24 14:01:57.514 2025-03-29 22:39:49.251 \N Come check out Noderunners Radio.\nThere's Jukebox Lightning Bot running in there which you can use to add music to the radio.\n\nAlso, anyone can invite the bot to their own TG group (as admin) and connect it to their own spotify api.\n\nGreat fun, and good way to orange pill folks too!\n\nSee: https://radio.noderunners.org and https://te.me/noderunnersradio https://example.com/ 7773 451321 451074.451321.451335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9184316136272 0 \N \N f 0 \N 0 124549851 0 f f \N \N \N \N 451074 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424289 2025-03-04 00:02:49.731 2025-03-29 22:39:49.251 \N Phoenix. Easy to use and self custody. https://example.com/ 21296 424286 423928.424260.424266.424286.424289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8861645759021 0 \N \N f 0 \N 0 133495289 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407507 2025-02-18 05:18:40.874 2025-03-29 22:39:49.24 \N I retired 3 years ago, but they keep pulling me back.\n(Cue Al Pacino Godfather 3 meme) https://example.com/ 2342 407506 401553.407506.407507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6208030111675 0 \N \N f 0 \N 0 91439041 0 f f \N \N \N \N 401553 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451346 2025-03-24 14:06:16.394 2025-03-29 22:39:49.24 \N this is how it be ![bitcoin meme](https://pbs.twimg.com/media/FrKu74EakAA4hb3.jpg) https://example.com/ 8059 451340 432817.451324.451330.451340.451346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7931820204445 0 \N \N f 0 \N 0 218331287 0 f f \N \N \N \N 432817 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424134 2025-03-03 20:50:44.685 2025-03-29 22:39:49.241 \N Okay, I picked. First, I was assuming that the travel into the past / future would mean that I went there and stayed there. With that out of the way, here's my logic:\n\n- I wouldn't go into the future because I think it will be hugely foreign, almost certainly too foreign to adapt to without going mad.\n\n- I was tempted to go to the past, since, given time, I could probably amass $100m just knowing what I already know, and then could influence the world for the better (or so I believe -- obviously hugely biased.) But I'm assuming I would be the age I am now, and I wouldn't want to wait fifteen years to have a ton of money.\n\n- So I picked to have the money now, with the assumption that I could be highly useful and do some high-leverage stuff in that circumstance.\n\n https://example.com/ 21019 423037 422483.422498.422961.423037.424134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1619674746189 0 \N \N f 0 \N 0 143293162 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444550 2025-03-20 02:04:08.37 2025-03-29 22:39:49.242 \N ![](https://www.zapread.com/i/-0F) https://example.com/ 1650 443836 443836.444550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5362474146212 0 \N \N f 0 \N 0 161774016 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437619 2025-03-14 17:06:16.376 2025-03-29 22:39:49.242 \N You got "Muuned." I would try using a lightning wallet. https://example.com/ 11829 437512 437233.437512.437619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2854427382948 0 \N \N f 398436895 \N 3 249236141 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410513 2025-02-20 14:10:29.194 2025-03-29 22:39:49.242 \N Day 166 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 21180 410489 410486.410489.410513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1379868136766 0 \N \N f 0 \N 0 138909268 0 f f \N \N \N \N 410486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402242 2025-02-13 16:24:26.66 2025-03-29 22:39:49.243 \N come on over to the roundtable for some high-signal bitcoin discussions\n\nhttps://stacker.news/items/269878 https://example.com/ 20523 402196 402188.402196.402242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.54823461311939 0 \N \N f 0 \N 0 98159202 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422966 2025-03-02 20:17:42.378 2025-03-29 22:39:49.245 \N It is a culture that was formed on Twitter. It is a culture that is unique in its entirety to Twitter. You have Bitcoin, and you have Bitcoin related communities on various platforms who may have developed their own customs. "Bitcoin maxi" is nowhere near the right description for this group. https://example.com/ 19378 422819 422808.422819.422966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0148295672497 0 \N \N f 0 \N 0 152759347 0 f f \N \N \N \N 422808 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408245 2025-02-18 16:44:31.975 2025-03-29 22:39:49.245 \N Went two years in a row and it sucked both times. Won't be going anymore. Tab conf and bitcoin++ are the only conferences I'll be going to now https://example.com/ 2327 408233 407903.408216.408233.408245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3489252937308 0 \N \N f 0 \N 0 146941409 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444455 2025-03-19 22:28:13.631 2025-03-29 22:39:49.245 \N From my 13 year old: dinosaurs had feathers. https://example.com/ 1602 444453 443712.443834.444412.444416.444436.444444.444453.444455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9556475174275 0 \N \N f 0 \N 0 220450122 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404396 2025-02-15 20:58:13.34 2025-03-29 22:39:49.246 \N Just had gpt4 pull some cool visuals together for me\n\nDaily discussion threads - comments per day (since May):\n\nhttps://imgprxy.stacker.news/hLFtubF_EmWj7HWXEmNql-Pvy7oRhssuMUjVhZNZEzg/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9VQ0dxYndWLnBuZw\n\nCumulative DDT comments (since May):\n\nhttps://imgprxy.stacker.news/6vBdOKoKbeiP4ZfV11HQFTDB9-cAOVJuJ_2ew_vVNco/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9QTG1OeDlHLnBuZw\n\nWe on the rise https://example.com/ 14271 404217 403824.404157.404197.404217.404396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.787798967733799 0 \N \N f 0 \N 0 60996108 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444473 2025-03-19 23:02:50.312 2025-03-29 22:39:49.246 \N ![](https://m.stacker.news/52300)\n\nI woke up in the middle of the night last night thinking about discussion on @dagny761's post [here](https://stacker.news/items/686283), and immediately made this. It's intentionally a bit hyperbolic, but begs for a conversation that I think we need to have. I've been feeling this tension a lot recently. https://example.com/ 17109 443295 443295.444473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8404564232089 0 \N \N f 0 \N 0 121973285 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428488 2025-03-07 10:38:19.558 2025-03-29 22:39:49.246 \N These are *potential* sources of revenue but 100% of it goes to the reward pool currently. https://example.com/ 7668 428340 427251.427760.427810.428340.428488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6475328563468 0 \N \N f 0 \N 0 74047128 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413858 2025-02-23 13:58:32.948 2025-03-29 22:39:49.247 \N ![photo-output.jpeg](https://m.stacker.news/22851) https://example.com/ 2326 413085 413085.413858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8134721363171 0 \N \N f 6040178 \N 1 61594917 0 f f \N \N \N \N 413085 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 412258 2025-02-22 07:46:21.494 2025-03-29 22:39:49.247 \N `type of shop your have`\nConsultancy\n\n`type of commerce`\nDesign & Tech\n\n`how was the onboarding process`\nBiz started in 2009, nice times :) started in 2015 with bitcoin and officially defined as internal standard in 2019. It took time to put everything in place, and we upgraded services and hardware multiple times. Backups saved us multiple times. Multisig, indispensable!\n\n`what tools / apps you used, in the beginning and later`\nWe are now setup with a simple:\n- Wordpress website for orders and requests. \n Initially we used OpenNode but after we got...\n- Private Business dedicated node in undisclosed place\n- LNbits connects website and node\n- Accounting on separate local WordPress using same db\n- Bluewallet that enable to have and manage different types of wallets\n\nWe keep it simple, apart a great effort placed in enforcing security, we believe that a simple setup like this could help a lot of businesses. The biggest challenge is accounting and how you managed it in and with your jurisdiction. \n\n`how you consider bitcoin in your accounting (cash or "investment")`\nOur fees are denominated in BTC and all accounting as well. We switch to fiat when needed and to make it easier for the clients. We operate internationally, so used to deal with multiple currency exchange rates at the same time. It feels good to have finally one single reference for all currencies above the dirty $\n\n`anything you would like to share`\nBAU, just need to switch the chip in your mind and make it happen. Your accounting strategy will need to change accordingly and depending on which country you reside. You'll need to make hard decisions on how to deal with exchange rates and tax declarations, find a trustable accountant if required, and define the process. It's always good to talk with someone else not related to the business about finance management, especially if related to Bitcoin.\n\n`PS`\nCan't believe there're not many business owners around here. Why my response is just the second one after 12h from the post publication? Comm'on guys... share your strategy, I'm curious! https://example.com/ 20802 412098 412098.412258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13942202549526 0 \N \N f 0 \N 0 148138443 0 f f \N \N \N \N 412098 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430263 2025-03-09 01:57:32.661 2025-03-29 22:39:49.247 \N Day 169 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 9334 430236 428318.428382.428674.429258.429725.430220.430236.430263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3275027164862 0 \N \N f 0 \N 0 106291458 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403692 2025-02-15 05:37:44.328 2025-03-29 22:39:49.247 \N ![..](https://imgprxy.stacker.news/YgcB9XosOZ9CUdQEbGvDPNpT7DsDirkXx5qFhU3WxMg/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvU1J5ckZiWnEvSU1HLTIxNTQuanBn ) https://example.com/ 19333 21747 21672.21728.21729.21747.403692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8687634594372 0 \N \N f 0 \N 0 144251409 0 f f \N \N \N \N 21672 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414750 2025-02-24 09:20:43.255 2025-03-29 22:39:49.248 \N One more question:\n\nReading through the change log, I followed a link to the SN post about [web of trust](https://stacker.news/items/8349). This made me think of something I've been thinking about a bunch lately, from using PKM tools (Logseq is my current one) where making it easy to talk _about_ things is a design goal. Making it easy to talk about things through links, search, and automatic back links, causes a densely structured graph to emerge, a very useful kind of semantic knowledge store. It's pretty remarkable how it all pops out.\n\nThis is relevant bc at first SN looks like Hacker News, with the familiar features; but the more I dig into it, the more it seems like you're playing around with hybrid ideas about how communication should work online -- you alluded to some, above, wrt Zaps. I'm curious if this, too, is something you've thought about playing with: other ways to structure conversations, make them findable, referenceable, etc., beyond the familiar message board paradigm?\n\nDon't get me wrong, doing the familiar thing well is a substantial contribution, and there's enough experimentation w/ btc integration to keep anyone busy. Just wondering how far your experimental aspirations go :)\n\n https://example.com/ 11967 414726 413675.413884.414328.414638.414648.414726.414750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1123667253814 0 \N \N f 0 \N 0 249665870 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403796 2025-02-15 08:14:54.444 2025-03-29 22:39:49.248 \N That your backend doesn't have to hold our credit/debit card data. Yes, you currently have $2 of value of mine on your server which if hacked would be irreversibly stolen, but to me, that's better than leaking my card info, address, and all the other details you have to collect to process a traditional payment. https://example.com/ 6537 402938 397192.402799.402938.403796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1760281909753 0 \N \N f 0 \N 0 142704068 0 f f \N \N \N \N 397192 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456527 2025-03-27 16:47:12.191 2025-03-29 22:39:49.248 \N I'm not 100 percent sure this will interest you, but I stumbled upon this podcast episode yesterday. I am pretty ignorant about China, but this guest gave me an incredible lesson about Chinese culture and politics. Bitcoin is discussed, but there's so much valuable information here. The episode is called Bitcoin In China, but, again, it covers a lot of ground. It is truly excellent:\nhttps://fountain.fm/episode/JresVMQwpkmsgnmkaoVA https://example.com/ 9363 456525 456525.456527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4846473789473 0 \N \N f 0 \N 0 231506893 0 f f \N \N \N \N 456525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458261 2025-03-29 06:35:43.892 2025-03-29 22:39:49.25 \N I feel like the Pavlovian dog, being reconditioned everyday.\nAnd I'm all for it. https://example.com/ 19943 458073 458011.458073.458261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.56389162944235 0 \N \N f 0 \N 0 174912363 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424070 2025-03-03 20:05:39.144 2025-03-29 22:39:49.25 \N Created a PR: https://github.com/stackernews/stacker.news/pull/235 https://example.com/ 21539 423736 423667.423687.423704.423736.424070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6566057012222 0 \N \N f 0 \N 0 72267667 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424293 2025-03-04 00:09:37.695 2025-03-29 22:39:49.25 \N As someone who has been robbed multiple times because of software bugs while running a service trying to be helpful and not make any money from it, I understand your feelings completely. In my case too the attackers knew what they were doing and sent the money to other wallets like Bitrefill or WoS and from there they quickly vanished with the money, I'd say it's impossible to track even if everybody cooperates. I toyed with the idea of creating a federation of bona fide wallet providers that would be able to automatically and immediately track and halt the accounts of thieves in these cases, but ultimately I think this would be too hard to make work, so we're left with emails and 6-hour-late responses.\n\nIn many of my cases, too, the people responsible for the bugs that caused money loss never apologized, which would have been a nice gesture at least. On the other hand I understand that bugs are unavoidable and it would be mentally overwhelming for them if they were to feel responsible for every satoshi lost due to their bugs. https://example.com/ 17091 424219 424219.424293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0265205071781 0 \N \N f 0 \N 0 19385128 0 f f \N \N \N \N 424219 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444517 2025-03-20 00:48:12.652 2025-03-29 22:39:49.25 \N Phoenix, Blixt, and Breez are all an actual lightning wallet that really work. That's the kind of solution we should be steering users towards.\n\nRight now, on the Google Play Store Muun wallet describes itself as "Muun: Bitcoin Lightning Wallet".\n\nThe fact is they're not a Lightning wallet. They're an on-chain wallet that can use swaps to also receive and pay Lightning invoices. And that means they're subject to all the costs of on chain payments. Which Muun users find out the hard way every time fees are high.\n\nI know for a fact that Muun's dishonesty is turning people away from Lightning, and Bitcoin, because I've personally had people tell me that Lightning was too expensive to be worthwhile because they used Muun and every "Lightning" transaction they did cost as much as an onchain payment. Because it was an on chain payment!\n\nMuun are bad actors who deserve to be pushed out of the community. Stop making excuses for them. https://example.com/ 7746 444414 444414.444517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.12585106534532 0 \N \N f 0 \N 0 187785211 0 f f \N \N \N \N 444414 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427937 2025-03-06 18:08:47.433 2025-03-29 22:39:49.25 \N ![](https://www.zapread.com/i/9yR) https://example.com/ 16387 427798 427798.427937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9473034224242 0 \N \N f 0 \N 0 172255934 0 f f \N \N \N \N 427798 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416726 2025-02-25 19:48:08.145 2025-03-29 22:39:49.25 \N ![](https://m.stacker.news/65702) https://example.com/ 620 416644 416644.416726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1252433033641 0 \N \N f 0 \N 0 196445781 0 f f \N \N \N \N 416644 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416930 2025-02-25 23:18:31.616 2025-03-29 22:39:49.25 \N A thing that is not understood, and then widely misunderstood, is the role of compression in intelligence.\n\nMany people nowadays are familiar with this idea as pertains to machine learning: a common critique in model evaluation is that the model has simply memorized the training set. This does in fact happen, most often when the model has a huge number of free parameters. It has so much capacity that it can simply encode what you give to it.\n\nThe most useful behavior comes when the model has a lot of capacity, but way less than what it would take the memorize the relevant training corpus. So for it to do anything interesting, it has to basically compress reality -- to find patterns in it that it detects with reasonable fidelity. If the system can do this, we say that it _generalizes_.\n\nThis is what the brain does, too. Compression and generalization are at the heart of intelligence. (Early work on this is filled w/ [attribution controversy](https://people.idsia.ch/~juergen/).) The limitation -- the collapse of the vector to a scalar -- is what makes it so powerful. It's what lets you recognize diverse situations as, fundamentally, instances of the same _kind of thing_. \n\nIt's also interesting to note that different kinds of brain damage ruin this ability in a surprising way: by giving the person nearly total recall. So the person can remember everything, but, like the model with too many parameters, can't really _think_. The most famous example of such a case is memorialized in [this Borges story](https://vigeland.caltech.edu/ist4/lectures/funes%20borges.pdf).\n\nAnyway. It's intriguing to consider this wrt money, which is a great compressor, as you and @siggy47 are mentioning. It makes money hugely useful, but dangerous, insofar as what is left out of that invisible hand's grasp may be vitally important. \n\nWe talk about leaving out bad consequences as _externalities_, and there are different attempts to mitigate that, but what about leaving out good things? What happens to a value computation that doesn't include the most important thing about being alive, or systematically leaves out the concerns of millions or even billions of beings, whether they're slaves in 1850, quasi-slaves harvesting rare Earths in Congo, women a century ago, or all the animal life on the planet, in perpetuity? \n\nWhat do you get, then? This amazing system that computes value, what are the consequences of the value that it computes? And I wonder if there's such a thing as a money that captures too much, like an overfit model, or like poor Funes? https://example.com/ 12774 416197 416158.416197.416930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.23591272327153 0 \N \N f 0 \N 0 9079149 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414880 2025-02-24 11:16:15.631 2025-03-29 22:39:49.25 \N ![](https://bitcoinscoresby.com/wp-content/uploads/2022/11/Bitcoin-Grinch-5-Small.png) https://example.com/ 913 413007 413007.414880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8913966704228 0 \N \N f 0 \N 0 55368879 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410669 2025-02-20 15:39:39.542 2025-03-29 22:39:49.251 \N I am excited I have my cowboy hat back and will try to keep it on my head for as long as possible 🤠🤠🤠🤠 yeeehaw https://example.com/ 19857 410657 410559.410632.410641.410651.410657.410669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.133567145699 0 \N \N f 0 \N 0 152228621 0 f f \N \N \N \N 410559 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 420993 2025-03-01 10:32:29.788 2025-03-29 22:39:49.251 \N # 🙏 Please Donate for August 2024\nIn line with the plan to achieve sustainability (break-even), donations will directly reduce the posting fee, such that donations + forecasted posting fees - monthly rent = 0. The "forecast" will just use the prior month's post-count.\n\nThe next Fee Operation Management Committee will announce new posting fees according to the following schedule:\n\nBlock 856011 ~2024/08/10 13h00 UTC\nBlock 860330 ~2024/09/09 13h00 UTC\nBlock 864506 ~2024/10/08 13h00 UTC\n\nSee the prior month's post for more details @ [604610](#604610).\n\n## Accounting Notes\n### July Crowd Funding\nCrowd Funded Contributions for July 2024 - thank-you!\n@Undisiplined - 25K\n@siggy47 - 5K\n@grayruby - 3K\n@anons - 5.1K\nTotal Crowd Funding = 38.1K\n## July Revenue\n40.9K according to the operational stats.\n\n## Posting Notes\n\n* Forecasted Posts in July = 331\n* Actual Posts in July = 287\n* Forecasted Posts in August = 287\n\nShortfall of ~44 posts vs forecast. \n\nTreasury was 41K at end of May. I'm holding off ratifying rules around treasury burn until I see signs of stability in modelling the future. We're still bleeding money, and @jeff is plugging the holes. \n\n## Short Term Priorities & Goals\n\nThese are unchanged.\n\n1. Break even with crowdfunding\n2. Break even without crowdfunding\n3. Build up treasury\n4. Run incentive backed games\n5. Build Tooling\n\n## Operational Metrics / Quick & Dirty Fee Change Analysis\n\nAll-Time\n1.9m stacked \\ 177.8k revenue \\ 2.3m spent \\ 2942 posts \\ 14.5k comments\n\n~ 4 weeks in March @ 10 sats-per-post:\n215.7k stacked \\ 19k revenue \\ 247.3k spent \\ 588 posts \\ 1755 comments\n\nApril (proper):\n277.9k stacked \\ 26.8k revenue \\ 322k spent \\ 605 posts \\ 2303 comments\n\n~4 weeks in April @ 21 sats-per-post:\n203.9k stacked \\ 24.6k revenue \\ 239.3k spent \\ 537 posts \\ 2151 comments\n\nMay (proper):\n149.5k stacked \\ 27.8k revenue \\ 194.8k spent \\ 380 posts \\ 2095 comments\n\n~4 weeks in May @ 100 sats-per-post:\n105.3k stacked \\ 26k revenue \\ 144.6k spent \\ 326 posts \\ 1919 comments\n\nJune (proper):\n253.4k stacked \\ 36.8k revenue \\ 327.1k spent \\ 331 posts \\ 2297 comments\n\n~4 weeks in June @ 136 sats-per-post:\n260.4k stacked \\ 35.5k revenue \\ 332.4k spent \\ 327 posts \\ 2551 comments\n\nJuly (proper):\n339.4k stacked \\ 40.9k revenue \\ 423.8k spent \\ 287 posts \\ 2662 comments\n\n~4 weeks in July @ 187 sats-per-post:\n307.8k stacked \\ 39.2k revenue \\ 389.6k spent \\ 250 posts \\ 2230 comments\n\n# Territory Change Log\n2024/07/11 - Increased the posting fee to 187 @ [604610](#604610)\n\n# Owner's Pledge\nIf this territory ever runs a cumulative net profit, I'll find a way to do right by the earliest contributors. There is no guarantee of that scenario. Most likely, it'll take the form of "pay-it-forward"-style BTC-adoption/effort/charity.\n\n# Disclaimer\nDo not donate with the expectation of receiving a share of future profits. This is not a security offering.\n\n# Prior Updates\nJuly 2024 [601808](#601808)\nJune 2024 [566281](#566281)\nMay 2024 [526847](#526847)\nApril 2024 [493332](#493332)\nMarch 2024 [448054](#448054) https://example.com/ 7966 420895 420895.420993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5400095888455 0 \N \N f 0 \N 0 166655592 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428764 2025-03-07 15:26:02.783 2025-03-29 22:39:49.24 \N Day 200 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 13798 428724 428308.428529.428724.428764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4956857535905 0 \N \N f 0 \N 0 31757632 0 f f \N \N \N \N 428308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422125 2025-03-02 09:38:59.223 2025-03-29 22:39:49.24 \N Day 156 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 4118 422056 422056.422125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.003281885097 0 \N \N f 0 \N 0 169888932 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404280 2025-02-15 18:26:37.045 2025-03-29 22:39:49.24 \N As someone working in the financial industry, I can confirm that KYC requirements imposed by the EU are kind of nuts for every financial institution. Not only because (to some extent) they harm privacy beyond any reasonable suspicion that someone can commit money laundering, but the fact just mentioned creates a very dangerous way of thinking. Basically, European policymakers are telling financial institutions: “operate as if all your clients are fraudsters, even if there’s no reasonable proof of this fact”. I find this deeply disturbing, and borderline disgusting to be honest. https://example.com/ 15806 364153 364153.404280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9556637020245 0 \N \N f 0 \N 0 54262007 0 f f \N \N \N \N 364153 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448816 2025-03-22 22:19:28.34 2025-03-29 22:39:49.241 \N >....and think about it as my savings\n\nThis is the right approach. Just keep saving, live without wasting money, and dip into those savings when its really necessary. Life will be good. \n\nI have a story for you. I have no idea if it will help you, but it was important for me in the journey of my "relationship with money". \n\nWhen I was in my early 30s, because of a project I was working on, I got to meet, hang out, and generally spend time with a billionaire. Not just a 1 or 2 Billionaire, but at the time he was worth about $18B - probably much more now (I won't name him for obvious reasons). \n\nThere is lots I could say about him, lots of ways I got to see the world thru him, lots about the family struggles and general legal issues that happen with the mega wealthy....but my most important 'epiphany' came from just pondering how ordinary his life was. \n\nI mean he and I had the same cell phone, we ate the same foods, wore similar clothes, etc. Now none of this was some intellectual surprise to me....I mean I knew that just because a person is wealthy that they don't have some sort of extraordinary existence. But it was more of an emotional epiphany. \n\nI used to leave my meetings with him and ponder all of that. What did it really mean to be rich? I mean like right now at this very moment.....one person has a cell phone, another has a cell phone. One drinks a coke, the other drinks a coke. One sits on a couch in an air-conditioned room, the other the same. \n\nIn the moment we call the "present", wealth really doesn't matter at all. Its just numbers on a screen. \n\nMost of the reasons we are driven to acquire wealth are for some future concept. We keep imagining that "one day when I'm worth X, then I will..." but the weird thing is that day never comes. Because we are always just in the "present". The future, as such, never arrives. \n\nI worked for 20 years building a small business (general IT consulting)....as I got better and better clients and made more money, it always struck me how unsatisfying the money actually was. Beyond a nice meal, decent place to sleep, and basic necessities for my family....money is sort of meaningless. \n\nAcquiring possessions is a fools errand. You don't "own" that Ferrari. The Ferrari owns you! When you go to start it in 3 months and the check engine light comes on and the tire is flat, it is *you* who will be spending the day making phone calls and arranging your time to satisfy the car. You bought a fantasy...but really all that arrived is another thing to break and waste your time on. \n\nI remind myself of this on days when BTC soars or drops, that in the end if you ate decently and slept in a comfortable room, your actual moment by moment existence of life was pretty much indistinguishable from a mega-wealthy person. \n https://example.com/ 21067 448809 447892.448746.448780.448787.448809.448816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5481228724109 0 \N \N f 0 \N 0 62919674 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 1 0 0 0 0 0 0 450160 2025-03-23 19:16:30.097 2025-03-29 22:39:49.241 \N Get a following, get some donations, sell some tshirts\n\nIf someone has a compelling offer, maybe sell the project, but not super focused on this. I want to keep the Bugle funny and pure. \n\nNot super thought out. Just in it for the lols https://example.com/ 21413 113700 113700.450160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3004074942248 0 \N \N f 0 \N 0 165217748 0 f f \N \N \N \N 113700 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402957 2025-02-14 09:43:28.609 2025-03-29 22:39:49.241 \N I been thinking a lot about what @k00b said about posting your failures. I have had a really big failure I been thinking about posting about here. Losing and failing sucks big time feels like you let people down who depend on you but can’t let it defeat you and public shaming is probably the punishment I deserve for making such stupid decisions https://example.com/ 17001 402917 402917.402957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0210796781157 0 \N \N f 0 \N 0 60748726 0 f f \N \N \N \N 402917 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437683 2025-03-14 18:45:56.258 2025-03-29 22:39:49.242 \N Like a general technology sub. I see stuff in the Bitcoin sub about general technology that doesn't really apply to Bitcoin, but is still cool.\n\nI know that's just hacker news, but here we are lol. https://example.com/ 633 437611 437611.437683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8966691806814 0 \N \N f 0 \N 0 18480692 0 f f \N \N \N \N 437611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424339 2025-03-04 01:35:53.954 2025-03-29 22:39:49.243 \N There's already too many territories https://example.com/ 761 423976 423928.423974.423976.424339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.33988795935889 0 \N \N f 0 \N 0 48163469 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444547 2025-03-20 01:57:42.906 2025-03-29 22:39:49.243 \N Hey peeps, today's the day of the [Broken Money book club (part I)](https://stacker.news/items/274195) so swing by if you're interested! https://example.com/ 20433 444541 444541.444547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9845443435985 0 \N \N f 0 \N 0 165525806 0 f f \N \N \N \N 444541 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410679 2025-02-20 15:50:38.519 2025-03-29 22:39:49.243 \N Day 125 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 20073 410678 410358.410655.410678.410679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6055581476593 0 \N \N f 0 \N 0 94877161 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424208 2025-03-03 22:02:03.844 2025-03-29 22:39:49.244 \N Day 140 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 9985 424093 417342.420721.420750.420782.423923.424093.424208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.72779762717744 0 \N \N f 0 \N 0 135832174 0 f f \N \N \N \N 417342 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403310 2025-02-14 17:18:28.946 2025-03-29 22:39:49.244 \N Thank you very much, but I feel bad accepting this for a shitpost lol https://example.com/ 19417 402974 402974.403310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8736496584867 0 \N \N f 0 \N 0 207177059 0 f f \N \N \N \N 402974 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458282 2025-03-29 07:00:42.63 2025-03-29 22:39:49.244 \N I'm just here learning about lightning network and discovered this cool stacker news website :) trying my 5 free comments :) \n\nI have installed Breez wallet and did my first lightning login ever by taking a picture of the QR here and my mind was blown. \n\nThis is so cool to be able to login in a site like this! Where can I learn more about what is really happening under the hood when doing it? What information is sent from my wallet? And is Breez ok to use? I read that Muun was recommended but I guess Breez works too. Is there any other wallet I should have a look? \n\nThank you and have a great weekend. https://example.com/ 21539 457919 457413.457919.458282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3006897003186 0 \N \N f 0 \N 0 11364693 0 f f \N \N \N \N 457413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402251 2025-02-13 16:34:06.868 2025-03-29 22:39:49.245 \N I think is too early for SN. Let it grow a bit more. Don't rush it too much.\nI think we are still in the stage of creating a strong curated community and testing a lot of features.\n\nOP @elvismercury is right about being able to edit long posts. I myself sometimes I made mistakes and/or forgot to insert a paragraph, or want to simply add something more. In general I agree with all he says in this post.\n\nNow that you ask me directly what features I wish to see, (but please, don't put extra effort on this right now, SN is OK in this phase) I will mention some:\n\n1. Maybe adding an extra cost with sats for later edit. I don't mind to pay extra for my own mistakes. That will make long form posts, more curated.\n2. Add option to "read more" with a small paywall fee, for those content creators (eg. @jimmysong could easily post his paid newsletters like that on SN) that want to use a specific fee for their content. But for this must be a required section of TLDR or introduction for the article, so abusers/spammers cannot take advantage or readers.\n3. In order to have a more curated "feed" of posts/articles, writers must have their own sub like "stacker.news/s/darthcoin" for others to find it easily. Or convert user bio page into a "stackpage" listing all his main posts/articles and the bio could be a separated section. Something like substack have.\n4. Option to export all your articles into a zip file, for backup purposes. Or even maybe a full import from substack of other articles. The markdown formatting on SN is OK, easy to use for many writers, I don't think it needs something else.\n\nMaybe other more professional writers could say more, I am just an amateur, I don't know why you asked me about this 😂😂. Yes I write a lot on SN, that true. Maybe I should slow it down a bit. https://example.com/ 1495 402246 402246.402251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2530613703764 0 \N \N f 0 \N 0 9551521 0 f f \N \N \N \N 402246 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455915 2025-03-27 12:08:27.134 2025-03-29 22:39:49.245 \N Day 126 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20597 455651 455649.455651.455915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.866000228701 0 \N \N f 0 \N 0 89969922 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423009 2025-03-02 21:25:24.096 2025-03-29 22:39:49.246 \N Another "interesting" thing to note: where are Coinbase's, Gemini's and Binance's LN implementations? https://example.com/ 21401 423007 422717.423005.423007.423009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.99336758825996 0 \N \N f 0 \N 0 160308498 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448813 2025-03-22 22:13:45.135 2025-03-29 22:39:49.246 \N They are going to adopt the dollar. He’s been very clear on that. The Central Bank has no dollars, so it’s going to be tricky to pull off.\n\nIt took 9 months in Ecuador. Maybe they can get it done in 6. But he doesn’t take the reins until December 10th. \n\nPractically nothing happens during ‘summer’ at this time, neither December or January when everyone hits the beaches. That can perhaps work to his benefit.\n\nBut once they have some stability to the country, maybe then they can consider an alternative model. And bring in private money, but I sense he’ll have bigger problems than doing that. There’s only so much he can achieve in his tenure don’t forget.\n\nAdopting the dollar is going to stop that crazy inflation in its tracks, but it’s also going to cause havoc for all the free education, bus passes etc, and government employees out of work, not to mention raising money in international markets. Those people affected are going to be kicking and screaming. It’s not all sunshine and rainbows initially. Their economy has been sooo distorted for decades now. With so many peculiar side effects, like people’s sole job to be to check and enforce prices. Currency speculation and FX. I’m sure there are some Argentine’s that can share other peculiarities.\n\nDefinitely going to be very interesting to monitor. But don’t expect any movements towards Bitcoin I wouldn’t say. More likely the crypto dollar (or USDT). https://example.com/ 4259 448765 448765.448813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1352102738512 0 \N \N f 0 \N 0 106243924 0 f f \N \N \N \N 448765 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424290 2025-03-04 00:02:56.105 2025-03-29 22:39:49.246 \N I have my min zap at 100 so I can keep my hat easily https://example.com/ 15624 423743 423743.424290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.04481652619227 0 \N \N f 0 \N 0 106931904 0 f f \N \N \N \N 423743 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455732 2025-03-27 09:35:37.366 2025-03-29 22:39:49.247 \N Simple 2-of-3 multisig hidden across different geographic locations I check regularly.\n\nEach backup contains a paper copy of the seed, the HWW device (ColdCard Mk4), and the xPub quorum for all 3 keys. Backups are stored in waterproof, tamperproof bags and further enclosed in a plain manilla envelope.\n\nIt's tempting to do elaborate backup schemes the same way Voldemort hides his horcruxes, but simple is always best. https://example.com/ 5112 455720 455649.455650.455665.455682.455714.455720.455732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8409150257663 0 \N \N f 0 \N 0 217148003 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404697 2025-02-16 06:02:04.432 2025-03-29 22:39:49.247 \N It has been an eventful morning. I spoke to the guy who owns the deli. Turns out that he was away for the week when I paid my visit. That's why I had to pay on chain. We had a great conversation. He is deeply into bitcoin, to the extent that he wants to visit El Salvador. He accepts lightning, has had meet ups in the deli, and is no newbie. I encouraged him to join SN. There is a whole local bitcoin community near me that I didn't know existed. He said that's because everyone keeps to themselves. There's a lesson to be learned there. https://example.com/ 672 403360 403323.403360.404697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65102949518988 0 \N \N f 0 \N 0 77882277 0 f f \N \N \N \N 403323 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410731 2025-02-20 16:40:34.341 2025-03-29 22:39:49.248 \N I'm into Bitcoin for the separation of money and State. https://example.com/ 9537 410706 410507.410696.410699.410703.410706.410731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4474367640683 0 \N \N f 62739972 \N 1 165973620 0 f f \N \N \N \N 410507 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422934 2025-03-02 19:35:40.661 2025-03-29 22:39:49.248 \N ![](https://i.ibb.co/m8dwQZj/20230121-233036.jpg) https://example.com/ 4798 422927 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422918.422927.422934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.080534952245 0 \N \N f 0 \N 0 248473817 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455445 2025-03-27 02:45:14.478 2025-03-29 22:39:49.249 \N ![](https://bitcoinscoresby.com/wp-content/uploads/2023/05/Bitcoin-Kill-Bill-Vol-1-1.png) https://example.com/ 13753 455433 455433.455445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9851395296189 0 \N \N f 0 \N 0 134824305 0 f f \N \N \N \N 455433 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421153 2025-03-01 12:58:10.612 2025-03-29 22:39:49.25 \N IMHO, this has been blown out of proportion. The attack exists, but it is fairly expensive and difficult to pull off. There are some simple things implementations do now like actively rebroadcasting the HTLC_timeout transaction, watching the mempool, and limiting their exposure by restricting the amount and count of HTLCs in flight which make it even harder and more expensive.\nIf you have a lot of money on a Lightning Node, be sure to be on a recent release and check your configuration, but other than that, it’s just one other way how you should be attentive of a hot wallet deployment and manage the amount of risk you’re willing to take. https://example.com/ 12935 420816 420816.421153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49939205209912 0 \N \N f 0 \N 0 113272694 0 f f \N \N \N \N 420816 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410547 2025-02-20 14:27:57.984 2025-03-29 22:39:49.25 \N Obviously you're referring to me, but I'm most certainly not going anywhere and have contributed quite a lot to discussion already here. I use Lightning, login with Lightning, and appreciate the open and honest discussion that exists here.\n\nYou trying to turn it into another echo chamber will only be harmful. If users are willing to use Lightning and pay sats to use stacker.news I don't see the harm in discussions that aren't Bitcoin-only.\n\nThe Monero discussions specifically have been mostly critical of Monero and have had great back and forth where each "side" learns from the other -- there are not many places like that, and I love that stacker.news *is* like that. People are critical, nuanced, and open to engaging discussions.\n\nLet's keep that going. https://example.com/ 13174 410529 410237.410484.410529.410547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3183094554426 0 \N \N f 245160345 \N 1 123823982 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430653 2025-03-09 11:40:20.552 2025-03-29 22:39:49.25 \N Almost done:\n\n- [[feature] SN Push notifications](https://github.com/stackernews/stacker.news/pull/324)\n\nWIP:\n\n- [[feature] Support zaps without account](https://github.com/stackernews/stacker.news/pull/336)\n\nPlanned:\n\n- [[bug] Fix different font sizes for write and preview](https://github.com/stackernews/stacker.news/issues/333)\n- PoC for [[feature] Prediction Markets on SN](https://github.com/stackernews/stacker.news/issues/309)\n- research image proxy service to finalize [[feature] SN bounty: display image when provided an image link](https://github.com/stackernews/stacker.news/pull/245)\n- improve @hn with [the ideas](https://stacker.news/items/192328) from @nout (less posts but with more quality)\n- look into implementation of @unpaywall\n- ... since the bug also appears in my post here, maybe also look into fixing [this](https://github.com/stackernews/stacker.news/issues/322) https://example.com/ 910 430626 430626.430653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.36244137286311 0 \N \N f 0 \N 0 235740693 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407985 2025-02-18 14:03:50.239 2025-03-29 22:39:49.25 \N 🤯 https://example.com/ 636 407964 407903.407964.407985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.922889596944 0 \N \N f 0 \N 0 216172026 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442943 2025-03-18 22:43:11.365 2025-03-29 22:39:49.25 \N Feature not a bug https://example.com/ 21815 441560 441560.442943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2742721646335 0 \N \N f 0 \N 0 227838545 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428528 2025-03-07 11:31:49.884 2025-03-29 22:39:49.25 \N Relevant reading: https://petertodd.org/2016/multiple-implementations-consensus-systems\n\nReimplementing Bitcoin Core is generally a bad idea. https://example.com/ 12721 428476 428292.428422.428473.428476.428528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4203565423897 0 \N \N f 0 \N 0 60312386 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450170 2025-03-23 19:17:54.181 2025-03-29 22:39:49.241 \N The format you're looking for is the Giant Thumb Guy meme. Hopefully that helps narrow it down\n\n![](https://i.kym-cdn.com/photos/images/newsfeed/002/155/138/3a8) https://example.com/ 9985 92423 92423.450170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1185344371052 0 \N \N f 0 \N 0 45526817 0 f f \N \N \N \N 92423 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421747 2025-03-01 23:55:50.365 2025-03-29 22:39:49.241 \N Basically, its gonna suck.\n\nMost people aren't aware of this, but what they did to "fix" the 2008 financial crisis, was an ongoing thing. Quantitative easing (the federal reserve buying bad debt to add to their balance sheet) never stopped after 2008. They tried to bring it back around 2018, but January 2019, the stock market saw that huge 30% crash so they had to bring the punch bowl back out. \n\nThat's why I knew this time would be worse. They didn't have "the thing that 'fixed' 2008" in their toolbox because it was actively in use the entire time. So every risk of a recession we see, the fed has to do double what they did before to "fix" it. \n\nWhere do we go from here? As Bitcoiners, in bear markets we build. Hopefully what we build is a lifeboat that stays afloat during the hardship. https://example.com/ 1567 421739 421567.421722.421731.421733.421735.421737.421738.421739.421747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.31980508084318 0 \N \N f 0 \N 0 146910345 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421207 2025-03-01 13:46:48.807 2025-03-29 22:39:49.241 \N Day 168 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 9705 420959 420895.420959.421207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8577730097605 0 \N \N f 0 \N 0 205887907 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424404 2025-03-04 04:18:28.842 2025-03-29 22:39:49.241 \N Buried in grief from all the recent death in my life. https://example.com/ 21271 424212 423314.423386.424212.424404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8954949366704 0 \N \N f 0 \N 0 69203216 0 f f \N \N \N \N 423314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431084 2025-03-09 15:20:17.596 2025-03-29 22:39:49.241 \N Pine and Purism already have put out "privacy" phones built on Linux. The reviews are mixed at best. It is a very difficult undertaking. \n\nI'm going the pixel/graphene route, but that's a compromise also. There are no really good solutions https://example.com/ 678 431077 430891.431077.431084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5060488804759 0 \N \N f 0 \N 0 179216647 0 f f \N \N \N \N 430891 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431031 2025-03-09 15:10:20.468 2025-03-29 22:39:49.242 \N ![20240127_083435.jpg](https://m.stacker.news/14115) https://example.com/ 9611 423252 423252.431031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.312737893246577 0 \N \N f 0 \N 0 161812106 0 f f \N \N \N \N 423252 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444504 2025-03-20 00:18:11.119 2025-03-29 22:39:49.242 \N Property taxes. “I paid off my mortgage, so now I own my home” … 🤔 https://example.com/ 1567 444471 444471.444504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2749469426785 0 \N \N f 0 \N 0 15929713 0 f f \N \N \N \N 444471 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407911 2025-02-18 13:06:03.501 2025-03-29 22:39:49.242 \N Nah, this ain't it. I went in with an open mind but he's straw-manning the anti-inscription folks. Or at least the ones that think like me.\n\nOf course I know points 1, 2, and 3. In fact, I started studying bitcoin more deeply *because* I was interested in its capability as an immutable, decentralized, and uncensorable data storage system. I even built a testnet system to automatically chunk a file and store it in multiple OP_RETURNs. And yet, despite this I decided that storing data on bitcoin is bad and didn't follow through with my idea. Why?\n\nBecause all machines are designed for a purpose. Bitcoin was designed to be a financial transactions network, *not a data storage system*. If you design a system for a specific purpose, you should make it so that it can't be used for other purposes---*especially* if said use disrupts the original purpose. Which is happening.\n\nSure, this might just come down to a disagreement in vision (point 4). Some may see Bitcoin as a more general decentralized data ledger. Fine, if that's what you think. But just understand that there are tradeoffs. And I think scaling up bitcoin as a monetary network is more important to the world than scaling it up for jpegs.\n\nOn point 5, i'm not really sure if anyone seriously claimed that inscriptions are a state attack on bitcoin. That would be silly. For all the ESG FUD out there, why would the state attack bitcoin in such a way that increases the mining incentives? The closest claim I can think of is that fiat printed money is fueling the purchase of these silly jpegs. \n\nOverall though, I agree with him that censorship is not the answer. I think over time market forces will drive the inscriptions out because it's a horribly inefficient way to store data. But that's not going to make me stop criticizing inscriptions, or taking what steps I can to fight it. https://example.com/ 6526 407898 407898.407911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5194424082982 0 \N \N f 0 \N 0 222117625 0 f f \N \N \N \N 407898 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442695 2025-03-18 18:38:13.668 2025-03-29 22:39:49.242 \N Day 136 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 19581 441285 440984.441073.441195.441285.442695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.36288547803265 0 \N \N f 0 \N 0 37232793 0 f f \N \N \N \N 440984 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413552 2025-02-23 10:26:31.936 2025-03-29 22:39:49.243 \N ![true](https://pbs.twimg.com/media/Fd63UQ-X0AADZfF?format=jpg&name=900x900) https://example.com/ 5809 413529 413007.413527.413529.413552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0776466258996 0 \N \N f 0 \N 0 46137496 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410496 2025-02-20 14:04:58.387 2025-03-29 22:39:49.245 \N Children\n\nhttps://snimgs.s3.amazonaws.com/Screenshot+2023-10-16+at+8.37.47+AM.png\n\nhttps://ourworldindata.org/grapher/children-per-woman-fertility-rate-vs-level-of-prosperity https://example.com/ 18727 410197 410197.410496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0642228876047 0 \N \N f 0 \N 0 26882290 0 f f \N \N \N \N 410197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450210 2025-03-23 19:33:32.871 2025-03-29 22:39:49.245 \N Got our custom signet [up and running](https://stacker.news/items/166562) and working on some LSP improvements for Mutiny. @benthecarman is also working on moving all the browser storage to IndexDB instead of local storage. From there probably continue abstracting out wasm things from mutiny core so that it can run on any device in any programming language. @wefofficial is working on getting the new design and frontend framework of mutiny up to parity with the hackathon proof of concept. https://example.com/ 18468 450186 449186.449984.450186.450210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3574351605675 0 \N \N f 0 \N 0 202218373 0 f f \N \N \N \N 449186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431135 2025-03-09 15:35:13.883 2025-03-29 22:39:49.246 \N I can offer my story, if that helps. I am also a working professional that tries to prioritize working with Bitcoin only companies. I have been very lucky with my resume and even the non Bitcoin jobs I have enjoyed.\n\nYou are working in a very small industry. Bitcoiners working professionally for companies know each other on a first name basis. You will interview at companies and run into people who you worked at in previous companies.\n\nBitcoin companies are corporations. They are no different from any tech company today. You will be sacrificed and burned. Me and the people I work with have suffered just like you. Every time I have been burned no matter the industry I pick up and start over. It is the hardest thing you will ever do. Chasing dreams in industries that are small isn't something that a lot of people can tolerate. There is so much risk because things move fast and business dynamics can swing so violently in one direction or the other. Just look at the news cycle of Bitcoin in the past year or two. For anyone working during that time it has been rough and so many have found themselves without work.\n\nRemember more than 5 years ago there was practically no such thing as a job in Bitcoin or "working in Bitcoin". That is how new this is. I think it is a deep honor to be able to contribute work to something you love, and I have been able to do that multiple times in my life. To be able to work on something so new and bleeding edge really feels like the unexplored wild west. It is critical to understand how much of a big deal it is for anyone to book any type of work like this on their resume at this early stage in Bitcoins life cycle.\n\nIf you already have professional experience, be proud of that. Everyone working in Bitcoin right now is working in completely uncharted and choppy waters. You will run into people you know who have been through the ringer just like you.\n\nEven with an established resume now it is hard to find work because my peers I worked with are doing the same. Because I now understand this and know it to be true, I have shifted my perspective. I no longer blame myself for not getting the job because I know my resume is in the ballpark of my peers. I know that instead it just isn't my time and soon it will be. Eventually I will see some of my colleagues again. Trying to live and survive when the money is not coming in is very difficult, but you do still have to keep some level of hope you will make it.\n\nI see light at the end of my tunnel after a very long time. You will get there also. But you are going to get fucked up between now and then and maybe even some times after too. It is just the natural ebb and flow of life at the end of day. Ups and downs and all of that. Best you can do is try to anticipate and hedge against those moments when they happen, or anticipate your reaction to manage the stress.\n\nWe will remember the companies and people that burn us. Whispers of those stories will be told with our peers. We will build an industry that will outlast them. We will place black marks on the names of anyone that did us dirty for no other reason than amoral self-motivation and they will eventually be squeezed out, or left to work at the companies Bitcoiner's have moved away from supporting. https://example.com/ 940 427054 383302.421704.427054.431135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2925167011495 0 \N \N f 0 \N 0 46694937 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430980 2025-03-09 14:47:40.824 2025-03-29 22:39:49.246 \N stackers rollin into the saloon on a friday\n\nhttps://imgprxy.stacker.news/uDYto4L8sweHQ-hmyZDzhOHkpIfsDU7ti4M7QlWMbc4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYTMuZ2lwaHkuY29tL21lZGlhL0pVNGRMbVV6S1dnWmdyMlZrWS9naXBoeS5naWY https://example.com/ 13467 430626 430626.430980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0825487124738 0 \N \N f 0 \N 0 29167056 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424262 2025-03-03 23:30:34.242 2025-03-29 22:39:49.246 \N I am unsure if it is your fault or our fault, but anyway here is the error message I get by debugging from the desktop:\n```\nReferenceError: WebAssembly is not defined\n at 8713 (index.js:2:172136)\n at r (index.js:2:198243)\n at index.js:2:198464\n at index.js:2:198464\n at index.js:2:65\n at 34503 (index.js:2:230)\n at __webpack_require__ (bootstrap:21:1)\n at 36872 (lnbits.js:210:1)\n at __webpack_require__ (bootstrap:21:1)\n at 22413 (user-popover.js:49:1)\nPromise.then (async)\t\t\n__webpack_require__\t@\tbootstrap:21\n__webpack_require__.O\t@\tchunk loaded:25\nl\t@\tjsonp chunk loading:73\n(anonymous)\t@\tmain-ae7fbb58e20fc278.js:1\nShow 7 more frames\n```\n\nDid you begin using WebAssembly recently with Rust or something? https://example.com/ 10549 419514 419514.424262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6167160836384 0 \N \N f 0 \N 0 108426536 0 f f \N \N \N \N 419514 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402758 2025-02-14 01:43:15.165 2025-03-29 22:39:49.246 \N Check out @super_testnet's super simple Superstore: https://stacker.news/items/167945 https://example.com/ 21455 402676 400943.401183.401314.401595.402042.402676.402758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.29020611693176 0 \N \N f 0 \N 0 187999171 0 f f \N \N \N \N 400943 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431008 2025-03-09 15:08:55.185 2025-03-29 22:39:49.247 \N I will post this here to remain in eternity as a reminder:\n[![sn-boating-accident.jpg](https://imgprxy.stacker.news/UIRrpqbDeuOgBVNWUHAfBytPhlIFCJdncnE5Z7uLKy0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvTDhxM0NUZjIvc24tYm9hdGluZy1hY2NpZGVudC5qcGc)](https://postimg.cc/PCjDN12R) https://example.com/ 21603 429570 429570.431008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.26411397549091 0 \N \N f 0 \N 0 92834411 0 f f \N \N \N \N 429570 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410777 2025-02-20 17:16:12.803 2025-03-29 22:39:49.247 \N Just pushed out an [update](https://twitter.com/MutinyWallet/status/1671279829570797568) for [Mutiny Wallet](https://mutinywallet.com) that I'm really excited about. Through our early risky users we've found some really great edge cases that should cut down on force closures a lot, plus other enhancements people have been asking for. \n\nNow my job for the rest of the week is onboarding more people, assisting/listening to feedback, and finding/fixing bugs. https://example.com/ 20706 410759 410759.410777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1345584466296 0 \N \N f 0 \N 0 66544637 0 f f \N \N \N \N 410759 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431117 2025-03-09 15:29:46.504 2025-03-29 22:39:49.247 \N https://vimeo.com/817684647/8a4a845d25?share=copy https://example.com/ 1428 411470 411470.431117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0598893828676 0 \N \N f 0 \N 0 22119239 0 f f \N \N \N \N 411470 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421248 2025-03-01 14:27:01.275 2025-03-29 22:39:49.247 \N https://i.makeagif.com/media/9-17-2020/lN7K8d.gif\nTo me it plays out like this gif, exchanges, devs, wallets, users etc... everyone happy :)\n\nUntil someone does something new, then the guns go up. \n\nIf the change is good for bitcoin the guns go down, we laugh it off (guns in hand)\n\nIf it's bad for bitcoin...someone's getting shot, and someone new will take their place\n\n\n\n https://example.com/ 15337 420963 420918.420963.421248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1771539807381 0 \N \N f 0 \N 0 231887098 0 f f \N \N \N \N 420918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430766 2025-03-09 12:18:08.668 2025-03-29 22:39:49.247 \N LUD-18 support, Quote Reply functionality on SN https://example.com/ 634 430626 430626.430766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.357305607777 0 \N \N f 0 \N 0 192527093 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404495 2025-02-15 23:14:40.941 2025-03-29 22:39:49.248 \N ![btcvsbullshit](https://nostr.build/i/nostr.build_4dacd9b8632ecde94fd7ad983023b4db46b5f3a9af77755a71b102db50a7b0b8.jpg) https://example.com/ 2204 400395 400261.400395.404495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3544423940634 0 \N \N f 0 \N 0 36836503 0 f f \N \N \N \N 400261 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416978 2025-02-26 00:35:55.867 2025-03-29 22:39:49.248 \N > I’m just having trouble reconciling my beliefs in bitcoin and my libertarian ideals.\nAnyone else dealing with this?\n\nAlmost everything that is at all interesting or important lives in tension with something that is nearly its opposite. I like this [quote](https://mathshistory.st-andrews.ac.uk/Biographies/Bohr_Niels/quotations/) by Niels Bohr:\n\n> The opposite of a correct statement is a false statement. But the opposite of a profound truth may well be another profound truth.\n\nUnfortunately it means you're probably always destined to struggle, and if you're not struggling, you've become trivial. Fortunately, the struggle is a sign that it matters.\n https://example.com/ 17147 416070 416070.416978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1112294875964 0 \N \N f 0 \N 0 204002413 0 f f \N \N \N \N 416070 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404099 2025-02-15 14:42:05.962 2025-03-29 22:39:49.248 \N I'm building relationships rather than code. I'm building ads for a trade network. Upon thinking where a market fit might be for a trade network, I thought to myself: \n\n"Bitcoin is for people who need it. If you don't need it, you won't get it. If you need it, you don't need me to convince you"\n\nSo, with that in mind, as part of market research, I popped up a map of the poverty rate in Virginia.\n\nhttps://www.welfareinfo.org/poverty-rate/virginia/page-county\n\nBlue is the rich area. No surprise, they're right up against the money printer: D.C. However, there is this yellow area which is poorer than its green neighbors. Page County. If you zoom in on the map to figure out why, its because the road from D.C. to this lower area, goes around Page County. This means the money printer doesn't have as direct of a route. \n\nYour incentives will advise your politics right? I think it will be impossible to convince this blue area of the dangers of fiat, but the yellow area, Page County, I think there might be hope with them. So I'm going to put my ads for the trade network in that area. Wish me luck. https://example.com/ 2620 404068 404068.404099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2537434119486 0 \N \N f 0 \N 0 148803031 0 f f \N \N \N \N 404068 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451341 2025-03-24 14:04:09.765 2025-03-29 22:39:49.241 \N Funny coming from nuno considering for many years he ran a custodial lightning integration bundled into their "non-custodial" wallet.\n\nThis is disingenuous, even for me who is an anti-muun proponent. If you as a user have 2 of the 2 keys needed to spend the funds, and nobody else has them both, then you have custody of the funds.\n\n> The only thing you can do with the backup is to use it on muun\n\nThis is false. You can spend funds entirely independent on muun. \n\n---\n\nNow their lightning side of it is a different story, but "I don't think muun has any part that can be considered non custodial" is a flat out competitor-driven lie. https://example.com/ 16956 451333 451333.451341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.590989300384415 0 \N \N f 0 \N 0 43067224 0 f f \N \N \N \N 451333 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458059 2025-03-28 22:32:38.535 2025-03-29 22:39:49.241 \N Finally added login / comment / tip feature for bsats.. \n\nwill try to publish a release this week, hope Apple doesn't block it... https://example.com/ 12139 458053 458015.458025.458053.458059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3241353203381 0 \N \N f 0 \N 0 28587633 0 f f \N \N \N \N 458015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 409647 2025-02-19 18:17:33.374 2025-03-29 22:39:49.242 \N An obvious one for everybody here:\nAlexa and her imitators. https://example.com/ 21416 409637 409637.409647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.57757164269371 0 \N \N f 0 \N 0 239213597 0 f f \N \N \N \N 409637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407686 2025-02-18 09:48:30.76 2025-03-29 22:39:49.243 \N Hi there,\n\nFirst of all, thank you for your work! I have two questions:\n\n1. Why did the blog post yesterday have a future date? 😂\n\nhttps://imgprxy.stacker.news/EeqcRm0MCiqnuMpK2JanBu_t5ALtg_gqQftBRpm1o7I/rs:fit:1920:1080/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMjIzNw\nhttps://stratumprotocol.org/blog/sri-1-0-0/\n\n2. What are the main differences between V1 and V2, and how will it improve communication between miners?\n\nThanks https://example.com/ 11220 407675 407619.407620.407675.407686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2909764324824 0 \N \N f 0 \N 0 234625305 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437979 2025-03-15 04:36:43.957 2025-03-29 22:39:49.242 \N Route blinding ASAP! (which luckily is in motion) https://example.com/ 21672 437539 437539.437979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3521178246172 0 \N \N f 0 \N 0 93221179 0 f f \N \N \N \N 437539 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442571 2025-03-18 16:49:05.438 2025-03-29 22:39:49.242 \N My tweet on the breaking news:\nhttps://twitter.com/DiracDel/status/1700168841291034986\n\nMy Bitcoin Magazine article that I wrote on the massive Swan fuck up that cost customers 10% of their transactions (they were never made whole).\nhttps://bitcoinmagazine.com/markets/ftx-collapse-cause-huge-bitcoin-price-spike\n\nCory called me walking anti-signal on SN for posts a few months ago. Do I have a "personal bias" -- yes, I actually *need* bitcoin in a few people in developing nations do, I have been pissed off about incompetence in the fiat world all my life, and the incompetence in the late fiat "bitcoin world" pisses me off too, so yeah, you could say it's personal. https://example.com/ 3990 442551 442551.442571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9410867492102 0 \N \N f 0 \N 0 74143725 0 f f \N \N \N \N 442551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431048 2025-03-09 15:12:08.187 2025-03-29 22:39:49.242 \N > But explaining in detail why we need a soft fork to fix a vulnerability effectively discloses the vulnerability before it's fixed.\n\nThis is one reason we have layered systems. If Lightning devs have in fact screwed up, better that Bitcoin continues operating while Lightning figures out how to fix things with full disclosure and many competent people understanding the issue.\n\nRight now, Antoine hasn't even published an easy to read explanation of what the problem actually is. He seems to have convinced a decent number of people involved in lightning development that there is an issue. But he hasn't convinced many people who aren't intimately involved with LN/BTC development. Nor is his "we're all doomed" view on it shared widely.\n\nAnyway, there's no way this issue actually wrecks all of Lightning. You can do routing just fine through semi-trusted node relationships. It's not as decentralized as we want. But even in the worst case a large proportion of usage of lightning will work fine. https://example.com/ 16679 419062 419062.431048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.29791316521505 0 \N \N f 0 \N 0 154223594 0 f f \N \N \N \N 419062 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404187 2025-02-15 16:09:44.757 2025-03-29 22:39:49.242 \N There is a seven step procedure to run the backend and connect it to the frontend, so I will go over them here\n\n**First step**\n\nThe first step is something I have to say after the second step\n\n**Second step**\n\nThe second step is to install LNDK according to the instructions on this page: https://github.com/lndk-org/lndk\n\nBut notice that the page tells you that first you "need a LND node running at least LND v0.18.0...with the peersrpc, signerrpc, and walletrpc sub-servers enabled"\n\n**First step again**\n\nSo that's the *real* first step: compile LND with those sub-servers enabled by following the guide they link to\n\n**Note on the first two steps**\n\nDon't run LND and LNDK as two different linux users like a "good" programmer would do. To control LNDK I opted not to use its api, because I was running out of time, so instead I use the `exec` command to spin up a terminal inside nodejs and interact with it via stdin and stdout. And for one specific LND command ("trackpayment") the LND API wouldn't work for me (I was probably using it wrong) so I use `exec` for that too. Which means you must run the server, LND, and LNDK all on the same linux user -- if you separate them, the terminal won't have the `lndk-cli` and `lncli` commands available, so the program will fail.\n\n**Third step**\n\nTo run the server, first clone the github and run `npm init -y`.\n\n**Fourth step**\n\nThen install the dependencies: `npm i crypto noble-secp256k1 ws browserify-cipher request`\n\nAlso, modify the first few lines of the server.js file so that they contain your LND node's invoice macaroon, admin macaroon (both in hexadecimal format), your LND Rest api endpoint (this is usually https://127.0.0.1:8080), and you can ignore the other four fields -- I intended to use them to let users modify their fee settings and a few other things, but I don't actually use them anywhere in the code, the fees are just hard coded to 10 sats.\n\n**Fifth step**\n\nThen run `node server.js`\n\nIt should spit out a nostr public key and then wait for incoming messages\n\nWe opted to use nostr for communication between the frontend and the backend so that anyone can run this without needing to expose ports\n\nWe *intended* to make it so that people running the backend would *announce* themselves on nostr, as well as a fee structure (e.g. do they charge a flat fee for forwarding bolt11 payments to a bolt12? A percentage fee? How much?) and the frontend would *listen* for those announcements and display them to the user. But we ran out of time so we hard coded the nostr pubkey of my backend into the frontend, which is why it stopped working when I turned off my laptop.\n\n**Sixth step**\n\nTo make sure your service is working, edit the index.html file in my github repo and find the line `welder = "" and change it to yours. Then open up the index.html file, open up its browser console, enter a bolt12 invoice into the form, and hit enter. You should see a message pop up in your nodejs terminal and you should see the frontend and backend interact. Watch the browser console -- eventually you should see a bolt11 invoice in there. (I don't "pop it up" on the page, it only appears in the console.)\n\n**Note about the sixth step**\n\nAs @justin_shocknet has always warned, I have found that the onion messaging aspect of bolt12 is very unreliable. About 2/3 of the time, the server will use the lightning network's onion messaging transport layer to reach out to whatever node issued the bolt12 and something goes wrong: the message does not reach the destination or the reply does not reach my node.\n\nConsequently, most of the time, the service does not work. I find that if, after hitting the "Submit" button on the form, you don't see a bolt11 in your browser console after about 10 seconds, try hitting submit again; and occasionally try restarting all four services: LND, LNDK, and the nodejs file, and the web browser (after entering in your "new" nostr pubkey -- the nodejs service doesn't save it so a new pubkey is created every time you restart the nodejs service).\n\nEventually it should work and you should see a bolt11 invoice in your browser console.\n\n**Seventh step**\n\nPay the bolt11 invoice and you should see a corresponding payment show up in your bolt12-supporting wallet.\n\n**Note about the seventh step**\n\nI've only tested this with phoenix wallet so it might not work with other wallets. Also, my frontend hard-codes an invoice of 15 sats, and since the server charges a 10 sat flat fee, the bolt11 will be for 25 sats. So don't be surprised when your phoenixd only receives 15 sats even though you paid 25. https://example.com/ 8037 404140 403996.404140.404187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1796184370937 0 \N \N f 0 \N 0 225323744 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434667 2025-03-12 05:49:38.824 2025-03-29 22:39:49.243 \N I wish this question got explored more; I think the fact that it doesn't suggests bad things. If you have money -- which is what btc is -- and you haven't thought about the uses to which money ought to be put to further your own flourishing, then there's something else going on that's probably not going to end well for you. But whatever. Go ahead and clutch the paper where you scribbled your unspent QR seed phrase in your bony hands as you go the grave. Hopefully it will be some comfort.\n\nFor people with a more expansive idea about money, here's an exercise that's relevant but that's surprisingly difficult: imagine your life 5 years from now if things go really well. Not ludicrously, sci-fi levels of well, but if every day you feel 80% satisfied that you've executed on the things you feel like you should be doing, whatever that is.\n\nWhere are you, after doing that for five years? The answer to that probably has bearing on where you can -- or should, one day -- allocate your money, whether it's btc or fiat. If that's who you want to be and where you want to be, money can help realize those aims. But in my experience, and in working w/ others, it's remarkably difficult to answer this question in concrete detail. Try it and see.\n\n(A fuller version of this exercise can be had w/ JBP's [self-authoring](https://www.selfauthoring.com/future-authoring) program, but the idea is well-supported in the literature beyond JBP. If you don't want to read a hundred papers or get a PhD, this is probably among the best $15 you could spend.) https://example.com/ 21804 434475 433828.434475.434667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9569937905405 0 \N \N f 201145040 \N 3 88700038 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427814 2025-03-06 16:48:50.305 2025-03-29 22:39:49.243 \N ![](https://i.ibb.co/f4M1DgY/Fo-Po25-Va-QAEzy-LM.jpg) https://example.com/ 15925 427306 427251.427257.427258.427306.427814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6462976063025 0 \N \N f 0 \N 0 114197117 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402480 2025-02-13 18:58:07.303 2025-03-29 22:39:49.243 \N Remaking some old VW ads into Bitcoin ads:\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/01/Bitcoin-too-good.png)\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/01/Bitcoin-Best-time-to-buy-now.png)\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/01/Bitcoin-Can-Be-Intimidating.jpg)\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/01/Bitcoin-How-many-times-we-inspect-it-small.jpg) https://example.com/ 16289 402475 402475.402480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9687741086408 0 \N \N f 0 \N 0 130460808 0 f f \N \N \N \N 402475 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451354 2025-03-24 14:09:03.815 2025-03-29 22:39:49.243 \N I installed the bitcoinlib python library and have successfully created my own wallet on the test net. It's been a great learning experience to send, receive, and view transactions all through python code https://example.com/ 18231 450625 450625.451354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3711571310917 0 \N \N f 0 \N 0 196562257 0 f f \N \N \N \N 450625 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423168 2025-03-03 04:01:33.426 2025-03-29 22:39:49.244 \N ![IMG_20231126_103538_01.jpg](https://m.stacker.news/8725)\n\n![2281805b185928e0fbe0acfd4df979f5eb2ac1f0766bcb04596fe0a7709cac57.jpg](https://m.stacker.news/8726) https://example.com/ 21422 422788 422788.423168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0681960453351 0 \N \N f 0 \N 0 188697777 0 f f \N \N \N \N 422788 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423625 2025-03-03 13:51:45.621 2025-03-29 22:39:49.244 \N https://imgprxy.stacker.news/9XJcrkrurXw6KlsO1Ip3SYFT_Ra1ucOGAigTbh-Jls4/rs:fit:600:500:0/g:no/aHR0cHM6Ly96dXBpbWFnZXMubmV0L3VwLzIzLzI5LzF5Y2EucG5n https://example.com/ 4862 423384 423384.423625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.75637045440372 0 \N \N f 0 \N 0 95395705 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404633 2025-02-16 03:18:51.17 2025-03-29 22:39:49.244 \N Why not run this automation on the node itself? Ahhh, because Amboss needs to you to leak valuable data from your node to erode your privacy.\n\nSame reason magma marketplace doesn't use nostr for its orderbook. Then Amboss couldn't be the databroker or fee-collecting middleman.\n https://example.com/ 739 404624 404521.404624.404633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9098492819637 0 \N \N f 0 \N 0 30558945 0 f f \N \N \N \N 404521 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424408 2025-03-04 04:31:02.615 2025-03-29 22:39:49.244 \N Coming back to SN after a 3 month hiatus https://example.com/ 12049 424405 423384.423591.423593.423595.423601.424009.424015.424037.424049.424082.424094.424099.424382.424401.424403.424405.424408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.393072104727 0 \N \N f 0 \N 0 134539390 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435434 2025-03-12 17:15:06.024 2025-03-29 22:39:49.245 \N First, we need to differentiate between a natural birth and a home birth. Women can have a natural birth in the hospital, but this is very difficult due to harsh lightning, nurse shift changes, IV poles, and cervical checks. all of the above are not conducive for progressing natural labor. Hospitals need to make money. They want fast patient turnaround time, so if you are not laboring fast enough they will start Pitocin (synthetic oxytocin) to speed things up. From there things snowball for the worse as the drug causes more painful contractions and the woman now begs for an epidural. The intense uterine muscular contractions often cause "fetal distress," as the baby gets squeezed harder and longer. Hospitals can bill more for every intervention they provide (think how much an ICU baby costs). \n\nIn the USA businesses, it is the norm to see an obstetrician, and very few women see a midwife. In the UK and Europe, this trend is reversed. "According to new research from the World Health Organization (WHO), caesarean section use continues to rise globally, now accounting for more than 1 in 5 (21%) of all childbirths". Obstetricians are trained primarily as surgeons who are more than happy to provide this service. U.S. hospitals take advantage of women in vulnerable situations. \n\nI am 26 weeks pregnant with my first child. I have chosen to see a midwife since the beginning of my pregnancy. I did not know at first if I wished for a homebirth. After reading "Ina May's Guide to Childbirth" -- I decided to pursue a homebirth. \n\nIf something were to go wrong, I am confident my trained and highly experienced midwife will assist with a hospital transfer. In that scenario, I am aware that a natural birth will not be possible. \n https://example.com/ 14503 435348 434795.434798.435179.435194.435204.435239.435290.435325.435330.435337.435348.435434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7839587044483 0 \N \N f 0 \N 0 113005368 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435880 2025-03-13 04:02:33.191 2025-03-29 22:39:49.245 \N Wow, time to slay another hero. Lopp is gonna take one on the chin for this. https://example.com/ 20094 433452 433391.433452.435880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2185498095935 0 \N \N f 0 \N 0 241481562 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410609 2025-02-20 15:09:38.201 2025-03-29 22:39:49.246 \N ![](https://pbs.twimg.com/media/FXIGErNXwAAzHLv?format=jpg&name=small) https://example.com/ 20454 410538 410135.410538.410609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0196587062652 0 \N \N f 0 \N 0 155078938 0 f f \N \N \N \N 410135 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402281 2025-02-13 16:54:35.337 2025-03-29 22:39:49.246 \N I am also almost 60, but I live like I am in my 30-35.\nHow is that possible?\n- out of big cities\n- eat mostly your own grown food, not processed\n- no stress, clear your mind with long walks into the nature\n- work outside at least 1h/day (even if you have a desk job). Having a vegetables garden helps you a lot. Or some chickens.\n- spend less on crap things, calculate well your income and spending.\n- do not go to a "medic" because "you feel bad". Treat yourself with old natural remedies and drink clean water. Mountain spring water is the best cure you could ever get. And herbs. I have at least 25 years that I never went to a doctor. And was not "sick" at all.\n- NEVER listen or do what a gov says. Only opposite. Always.\n\nNow I am building my own citadel, with my own bare hands, deep into a mountain valley. To be almost self sufficient and live in peace. And will be a Bitcoin "retreat", a monument dedicated to Bitcoin and free world.\n\nI don't know how much time will take, it doesn't matter. I still have at least 50 years more to live and enough to build it. So I decided to dedicate my time to Bitcoin and my citadel. Not doing anything else more.\n\nAnd when will be ready, maybe I will put a 24/7 webcam and people see me and/ or ask me questions about Bitcoin, live, in real time. https://example.com/ 19193 402261 402259.402261.402281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3562975320369 0 \N \N f 0 \N 0 26450568 0 f f \N \N \N \N 402259 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441260 2025-03-17 21:47:27.906 2025-03-29 22:39:49.248 \N France's longest border is shared with...Brazil.\n\n(730km in French Guiana) https://example.com/ 7818 441087 441087.441260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3093854470669 0 \N \N f 0 \N 0 34245615 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404607 2025-02-16 02:03:14.704 2025-03-29 22:39:49.248 \N It's like an abacus, the old calculator which uses beads on a wire - the beads can slide along the wire to either side, but they stay on the wire. They can slide in either direction until they're all on one side. Once the beads are all on one side it means the channel can only send (no inbound liquidity beads left to slide) or only receive (no outbound liquidity beads left to slide.)\n\nEven though some of a nodes channels have all the liquidity on one side, it can still function, but now it's like navigating down one-way streets where the options are more limited and it might take more turns to reach the destination. https://example.com/ 1010 404598 403648.403971.404049.404442.404462.404598.404607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1684688581162 0 \N \N f 0 \N 0 45057078 0 f f \N \N \N \N 403648 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408657 2025-02-19 01:21:44.02 2025-03-29 22:39:49.248 \N I'm excited to get this out there. A bit early and some rough edges to clean up but I believe it's promising core tech to alleviate some of the problems in complete self sovereign lightning and the problems with single custodian setups. https://example.com/ 1122 408655 406399.407380.407469.407944.407954.407957.407969.407971.407979.408655.408657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1117652959704 0 \N \N f 0 \N 0 142904431 0 f f \N \N \N \N 406399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428154 2025-03-06 22:35:57.97 2025-03-29 22:39:49.249 \N v1 lightning channels: one side funds a transaction to make an open, funds are all on their side\n\nv2 lightning channels (dual-funded): both sides collaborate to make a transaction, funds can be in any amount on either side. it’s basically a mini coinjoin/payjoin onchain for every lightning channel that uses it\n\nyou can multifundchannels in CLN; if every peer uses v2 opens that will let you build basically your own decentralized coinjoin that results in channel opens 😎\n\nno coordinator, all in one tx\n\nadd in liquidity ads and you can get multiple inbound channel capacity, again all in one tx with the payment for that liquidity being just more available inbound.\n\nit’s a huge game changer on lightning’s onchain footprint\n\nsplicing builds on this and will let you do even more complicated liquidity movements in one transaction. move liquidity between channels, fund a new channel from an existing one, etc. All in one transaction https://example.com/ 13174 427934 427934.428154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.97961658952023 0 \N \N f 0 \N 0 118764493 0 f f \N \N \N \N 427934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434522 2025-03-12 01:45:03.229 2025-03-29 22:39:49.25 \N we just spoke about this during my talk with him during bitblockboom this weekend, unfortunately it seems the livestream was not working at that point, but he still expects the first stores to integrate later this year https://example.com/ 4654 434503 434278.434503.434522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0280027705105 0 \N \N f 3261019454 \N 25 48592402 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 410472 2025-02-20 13:50:21.243 2025-03-29 22:39:49.25 \N # 🙏 Please Donate for July 2024\n\nIn line with the plan to achieve sustainability (break-even), donations will directly reduce the posting fee, such that donations + forecasted posting fees - monthly rent = 0. The "forecast" will just use the prior month's post-count.\n\nThe next Fee Operation Management Committee will announce new posting fees according to the following schedule:\n\n- Block 851691 ~2024/07/11 13h00 UTC\n- Block 856011 ~2024/08/10 13h00 UTC\n- Block 860330 ~2024/09/09 13h00 UTC\n\nSee the prior month's post for more details. https://stacker.news/items/566241/r/jeff?commentId=566281\n\n# Accounting Notes\n\n## June Crowd Funding\nCrowd Funded Contributions for June 2024 - thank-you!\n\n@Undisciplined - 30K\n@siggy47 - 5K\n@grayruby - 2K\n@StillSTackinAfterAllTheseYear - 1K\n@anon - 10.2K\n\nTotal Crowd Funding = 48.2K\n\n## June Revenue \n\n* 37K according to the operational stats.\n\nNote that this is the first month without a rake being taken off of the donations.\n\n## Posting Notes\n\n# of Actual Posts in June = 331\n# of Forecasted Posts Posts in June = 380\n# of Forecasted Posts in July = 331\n\nShortfall of ~49 posts vs forecast. We probably saw posts drop off a bit due to the higher cost. \n\nTreasury was 41K at end of May. I haven't yet decided if I want-to/should-be dipping into the treasury to cover shortfalls or not. Goes without saying, I'm cover the balance each month unless the Treasury does. I'm leaning towards a half-life concept applied to the Treasury, where up to half of the existing treasury can be spent in any given month. I don't know why, but I think I like the idea of a capped burn rate and setting a precedence while I'm the only person with spending-authority, so that hopefully when there are more, the entire treasury can't be spent in any given month. Feedback welcome. I still need to do that cumulative YTD analysis. \n\n# Short Term Priorities & Goals\n\nThese are unchanged.\n\n1. Break even with crowdfunding\n2. Break even without crowdfunding\n3. Build up treasury\n4. Run incentive backed games\n5. Build Tooling\n\n# Operational Metrics / Quick & Dirty Fee Change Analysis\n\n# All-Time\n965.8k stacked \\ 102.6k revenue \\ 1.1m spent \\ 2366 posts \\ 9742 comments\n\n~ 4 weeks in March @ 10 sats-per-post:\n215.7k stacked \\ 19k revenue \\ 247.3k spent \\ 588 posts \\ 1755 comments\n\nApril (proper):\n26.8k revenue \\ 277.9k stacked \\ 322k spent \\ 605 posts \\ 2303 comments\n\n~4 weeks in April @ 21 sats-per-post:\n203.9k stacked \\ 24.6k revenue \\ 239.3k spent \\ 537 posts \\ 2151 comments\n\nMay (proper):\n27.8k revenue \\ 149.5k stacked \\ 194.8k spent \\ 380 posts \\ 2095 comments\n\n~4 weeks in May @ 100 sats-per-post:\n105.3k stacked \\ 26k revenue \\ 144.6k spent \\ 326 posts \\ 1919 comments\n\nJune (proper):\n253.4k stacked \\ 36.8k revenue \\ 327.1k spent \\ 331 posts \\ 2297 comments\n\n~4 weeks in June @ 136 sats-per-post:\n260.4k stacked \\ 35.5k revenue \\ 332.4k spent \\ 327 posts \\ 2551 comments\n\n# Territory Change Log\n\n2024/06/05 - Lowered the posting fee to 136. See https://stacker.news/items/568328\n\n# Owner's Pledge\nIf this territory ever runs a cumulative net profit, I'll find a way to do right by the earliest contributors. There is no guarantee of that scenario. Most likely, it'll take the form of "pay-it-forward"-style BTC-adoption/effort/charity.\n\n# Disclaimer\nDo not donate with the expectation of receiving a share of future profits. This is not a security offering.\n\n# Prior Updates\nJune 2024 #566281\nMay 2024 #526847\nApril 2024 #493332\nMarch 2024 #448054 https://example.com/ 699 410379 410018.410080.410379.410472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.66463667328956 0 \N \N f 0 \N 0 214257374 0 f f \N \N \N \N 410018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434663 2025-03-12 05:44:20.337 2025-03-29 22:39:49.251 \N I'm continuing work on the WYSIWYG editor for SN (and fielding lots of inbound requests for nostr stuff lol).\n\nThe WYSIWYG functionality is almost there - hopefully by EOW. Then it's UI/UX. \n\nI estimated 14 days for adding WYSIWYG. It's looking roughly accurate. As for dev time on a single feature it's probably second to only WoT. https://example.com/ 16965 434655 434641.434655.434663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.17430574501871 0 \N \N f 0 \N 0 165231582 0 f f \N \N \N \N 434641 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431211 2025-03-09 16:03:29.823 2025-03-29 22:39:49.251 \N Day 240 of snailposting everyday 'til BTC hits $100k.\n\n...and 40 push-up(s).\n\n__@_'-' https://example.com/ 7587 401763 401763.431211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2608698946846 0 \N \N f 0 \N 0 135921165 0 f f \N \N \N \N 401763 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437980 2025-03-15 04:39:14.799 2025-03-29 22:39:49.251 \N I'm kind of with Odell, Swan seems to have irrationally high amounts of money available to invest, fund new ventures, etc that doesn't seem like it could be coming from their core business, and it isn't clear where else it might be coming from. I hope they are legit but it smells funky. Same thing most ignored about SBF, spending/investing way more money than made sense given public data. Will steer clear until dust settles. https://example.com/ 20826 437958 437769.437958.437980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0448976077748 0 \N \N f 0 \N 0 34531988 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431154 2025-03-09 15:48:03.027 2025-03-29 22:39:49.252 \N exact same experience here. I don't blame ordinals though.\n\nMuun simply wasn't prepared for Bitcoin to become popular. https://example.com/ 21631 431139 431139.431154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1529215633334 0 \N \N f 0 \N 0 202416821 0 f f \N \N \N \N 431139 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458386 2025-03-29 08:44:36.778 2025-03-29 22:39:49.244 \N ... hello to Stacker News from Impervious https://example.com/ 725 458359 458347.458351.458359.458386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0642993636246 0 \N \N f 0 \N 0 214317916 0 f f \N \N \N \N 458347 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417001 2025-02-26 01:16:18.045 2025-03-29 22:39:49.244 \N Day 150 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 8989 416722 416722.417001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4105206861468 0 \N \N f 0 \N 0 67777305 0 f f \N \N \N \N 416722 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422671 2025-03-02 16:00:51.039 2025-03-29 22:39:49.244 \N >Speaking from my perspective, I won't make it into the first 64 positions for the month-end rewards\n\nYou are wrong. You can do it. You just didn't find "your way" up. Keep going.\nWhat many noob stackers still do not get it is that it doesn't matter how many sats are you zaping or receiving...\nIs more about WHAT are you doing with those zaps.\nzaps not equal sats !\nThis is not a contest of "who earn more sats", but a contest of who zap, comment, post more.\n\n>a lot of SN users (especially newbies) will lose their interest and will leave the forum. And I'm not sure if this is a good thing for SN.\n\nAs I said many times: Bitcoin is not for the weak, only for brave.\n\n*but now I am talking too much...* https://example.com/ 20157 422663 422334.422660.422663.422671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4676851934227 0 \N \N f 0 \N 0 37970678 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451163 2025-03-24 12:25:37.417 2025-03-29 22:39:49.244 \N Thanks so much for writing this up, critique of Monero is *critical* to continuing to improve it over time, and is heavily encouraged in the Monero community as well.\n\nAs an experienced Monero user and someone focused on privacy as a whole (not just in cryptocurrencies), I'd love to break down a few of the points made here and link to some further resources that have been helpful to me.\n\n> Monero has no upper layers, every user must rely on the base layer for every transaction.\n\nWhile this is true *today*, it is not true *forever*, which makes a big difference when comparing something like Bitcoin and Monero's long-term decentralization.\n\nMonero is capable of layer-two networks (even Lightning!) with future protocol changes (some of which are in the works today), and can even be achieved without protocol changes as has been proposed in PayMo:\n\nhttps://eprint.iacr.org/2020/1441\nhttps://eprint.iacr.org/2021/1445\n\nI know that much of the Monero community likes to tout the functionality of Monero as obviating the need for an L2, but I disagree and think we will want (and then need) an L2 sooner rather than later, even if just for the ephemerality of transactions that it provides, scaling aside.\n\nL2s will be necessary, can be built, and will actually be *better* because of Monero's privacy guarantees and dynamic block size than in Bitcoin. Much of the privacy flaws and onboarding issues in Lightning are due to the lack of on-chain privacy and block size elasticity, both of which are drastically improved in Monero.\n\n> Take TCP/IP for example, we use TCP/IP all the time even for encrypted (private) communication, yet TCP/IP itself isn't encrypted.\n\nTCP/IP is a great example of the issues that occur when a system is *not* built for privacy and security from the ground up, and instead has to be bolted on higher up in the network stack.\n\nMany of the privacy and security issues we still face today are due to the failings of designing systems and protocol like TCP/IP, HTTP, and email with privacy in mind as a core tenet. If these had privacy built in at the absolute lowest layer, all layers above benefit immensely and do not need to worry about privacy or security nearly as much.\n\nMuch of the issues that privacy-preserving networks like Tor, i2p, and Nym are trying to solve are due to the critical flaws in TCP/IP, flaws that could have been prevented had privacy been at the forefront of the protocol's creation.\n\n> Adding complexity to the base layer of a blockchain means every node of that network must be able to handle the extra load that the complexity has added at a full global scale.\n\nAdding the minimum necessary complexity to provide two of the core tenets of money, privacy and fungibility, is a much better approach and lets upper layers focus on things like transaction speed, ephemerality, etc. without needing to try and solve privacy or fungibility failings of the base layer.\n\nPrivacy in cryptocurrencies is not this horribly inefficient monstrosity that many in the Bitcoin community make it out to be, and is in-fact quite efficient today and improving rapidly.\n\nUsing Monero privately is both cheaper and more efficient than Bitcoin:\n\nhttps://sethforprivacy.com/posts/comparing-private-spends/\n\n> Regardless of what you think of LN, its devs or the drama, this alone proves the layered approach works.\n\nA layered approach is absolutely the path forward for all cryptocurrencies, as every payment does not need to be preserved for all eternity in a base layer. Even in Monero, I hope the base layer will serve mainly as a settlement layer and high-value layer, and not need to be used for coffee payments etc.\n\n\n> Again since Monero lacks the ability to scale in layers, its base layer must process every transaction every user wishes to perform.\n\nAs mentioned above, this isn't actually true -- Monero can scale in layers, it just hasn't been needed (and thus hasn't happened) yet.\n\n> Now finally let's imagine that somehow Monero were to suddenly overtake Bitcoin and become the only form of money anyone wants to transact in. Every transaction of every user, machine, and program would have to use Monero's base layer, which would have to be validated by every node on the network.\n\nA few notes here:\n\n- In this scenario Bitcoin simply couldn't handle the transaction load anyways, so I'm not sure the argument has weight. Bitcoin is already hard-capped on throughput many days, so this nightmare scenario for on-chain usage is somewhat pointless as a comparison.\n- Monero's dynamic block size is *not* infinite, and has a growth cap of 1.7x per year\n- Monero's dynamic block size is not meant to be an infinite growth method, and is way to handle elastic transaction usage, like seasonal spending around Christmas etc -- it handles short periods of rapid usage that then returns to normal without any issues, but has preventative measures in place to ensure the chain growth YoY is not a major barrier to node accessibility\n\nThere is *a lot* of info on the current and future approach to fees and dynamic block size here, for those interested:\n\nhttps://github.com/monero-project/research-lab/issues/70\n\n> have fun staying poor\n\nI couldn't let this slide, as this is an absolutely abysmal way to end what was a legitimately excellent critique and set of thoughts around Monero. The idea of laughing at people for being poor as some supposed incentive to pull Monero users "over to Bitcoin" is one of the many reasons I find the Bitcoin community at-large repulsive.\n\nOne of the many reasons I spend most of my time in the Monero community is that they are *not* price focused and are seriously laser-focused on building a necessary tool, protecting *all* user's privacy, and improving the space as a whole.\n\n"Have fun staying poor" is quite possibly the worst and most off-putting meme in the space, and really mars your otherwise excellent post.\n\n> Resources\n\nFor those who have managed to read this far, here are some great resources I'd recommend you dig into to better understand Monero's approach:\n\nhttps://localmonero.co/knowledge - A wealth of info on practically all of the design decisions behind Monero, laid out in approachable and non-technical format\nhttps://www.youtube.com/watch?v=aC9Uu5BUxII - A long but *very* insightful video that walks through the key differences between Bitcoin and Monero with the angle of utility, store of value, etc. in mind. https://example.com/ 7913 451157 450805.451044.451106.451155.451157.451163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4153714664501 0 \N \N f 0 \N 0 220019986 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 432455 2025-03-10 11:01:34.87 2025-03-29 22:39:49.244 \N Day 163 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 3342 432444 432344.432444.432455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5128726252677 0 \N \N f 0 \N 0 64879999 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434938 2025-03-12 10:56:31.403 2025-03-29 22:39:49.244 \N A Naked Singularity, Sergio de la pava\n\nNew York. Public defender. Heist. Swords. Cuban Boxing. Physics. The war on drugs. Lots of dry humor. An incredible ending. \n https://example.com/ 21242 434676 433828.434673.434676.434938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8281264503152 0 \N \N f 0 \N 0 181861687 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421546 2025-03-01 18:28:22.933 2025-03-29 22:39:49.245 \N https://image.nostr.build/f1cc1f9b4bb55574587492e8ecd80c11dcf912fca769df387c7e2230151caf33.jpg https://example.com/ 1717 421270 421117.421193.421269.421270.421546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4442048740659 0 \N \N f 0 \N 0 200282832 0 f f \N \N \N \N 421117 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442436 2025-03-18 15:01:18.184 2025-03-29 22:39:49.245 \N You're telling me that there will be a 51% mining cartel attack that will last for multiple months without individual miners moving to other pools and that it will be aggressively reorging out any block that doesn't vote along with them -- but without Drivechain everything would be ok in Bitcoin land? https://example.com/ 18734 442339 442339.442436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.77168907133139 0 \N \N f 0 \N 0 195167246 0 f f \N \N \N \N 442339 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404627 2025-02-16 03:06:57.621 2025-03-29 22:39:49.245 \N ![photo_2023-11-14 17.33.39.jpeg](https://m.stacker.news/5068) https://example.com/ 12272 404095 404095.404627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6319689628943 0 \N \N f 0 \N 0 207551872 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402985 2025-02-14 10:23:34.581 2025-03-29 22:39:49.245 \N Hey that was me haha, see this PR: https://github.com/stackernews/stacker.news/pull/292\n\nBut @k00b mentioned it in my websockets draft PR which lead to me prioritize PWA:\n\n> Another use for this kind of push system is push notifications in a PWA. I think this would be a big upgrade in terms of people being willing to start and engage in conversations ... and its one of the most frequently and afaict "real" feature requests we get.\n\n-- https://github.com/stackernews/stacker.news/pull/284#issuecomment-1556228991\n\nBut as @k00b mentioned, some stuff is broken like layout or the offline page.\nSee this comment: https://github.com/stackernews/stacker.news/pull/292#issuecomment-1572795638\n\nBut it's of course only the first iteration on it, so things will improve over time :)\n\nAnd glad that you like it! So "my intuition" (besides of @k00b explicitly mentioning it, haha) that this is one of the more requested features and thus makes sense to prioritize was right :) https://example.com/ 20956 402984 402984.402985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3061453689994 0 \N \N f 0 \N 0 157959671 0 f f \N \N \N \N 402984 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441855 2025-03-18 10:37:08.701 2025-03-29 22:39:49.248 \N No, Bitcoin's success is not inevitable.\n\nBut --more importantly-- imagine if it WERE inevitable. Well, then: things will go pretty well for us! There's no point in discussing anything on Stacker News. We've already won. Nothing can screw us up, apparently. So just kick back and relax! In particular, you should kick back and relax, and NOT worry about the naysayers who think that Bitcoin's success is in jeopardy. ... Therefore, whether you think Bitcoin's success is inevitable or not, you should behave as though it isn't. Or you should just kind of do nothing, or go for a walk. Or take up the violin.\n\nHumans are prone to overconfidence. Consider the famous Fall of Rome and also the sinking of the "unsinkable" Titanic. Personally, my favorite example is Star Wars Episode 1 -- if you watch behind-the-scenes footage, you see that people are afraid to contradict the great George Lucas, even though his ideas are terrible. During 2017 I noticed the same thing, particularly with taproot and Bech32 which were absolutely horrendous ideas that everyone in the community was terrified of speaking out against.\n\nI am also fan of documentaries where people accidentally find themselves in cults, such as "behind the curve" which is about flat-earthers. They sincerely believe that flat earth will be taught alongside globe earth "any day now".\n\nI can give you some hard examples, in fact, of the success faltering. One is the Lightning Network itself, which has become a sacred cow. It is possible to improve the LN over time, but only if experts are allowed to discuss problems -- so that we can work together to solve them. But that is exactly what is not happening (in my opinion). The brave souls working on LN have tried to discuss the "limitations" https://www.youtube.com/watch?v=BjFjK-f9ts0 https://www.youtube.com/watch?v=LnG5H62I7Ko https://www.youtube.com/watch?v=eCWTTY1eDoo https://www.youtube.com/watch?v=EocWax43QgQ . I have many LN dev friends who complain to me in private how difficult it is to accomplish this very task -- believe me or not as you will. One is an ultra-famous LN dev who actually was disinvited from a Bitcoin conference because he wanted to speak "honestly" about LN. This is debt that must be repaid with interest.\n\nThe best way to ensure Bitcoin's success is --sorry to say-- my own idea of Bip300. If the underlying blockchain software can compete fairly --without the stigma of a new coin; nor the need to traverse the political L1 dev "process"-- then we would see more innovation and less politics. Devs would compete for users. We would have had BIP 118 and 119 on a drivechain many years ago, probably 2019 at least. Which would mean eltoo and ARK would probably already be in widespread use today. In fact we would probably already be moving on to the next thing. Instead, we have to wait for the bikeshedding around covenants to stop -- that is probably 3 years away. Big mistake, and all for no benefit. https://example.com/ 782 441849 441695.441823.441837.441841.441849.441855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3954920001701 0 \N \N f 0 \N 0 135263402 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423099 2025-03-03 00:44:06.283 2025-03-29 22:39:49.245 \N ## Did you know the longest math equation ever solved is the Boolean Pythagorean Triples problem. \n[It would take 10 billion years for a human being to read it. With its phenomenal size of 200 terabytes—the equivalent of all of the digital texts held by the Library of Congress—it is the longest mathematical proof ever produced]( \nhttps://news.cnrs.fr/articles/the-longest-proof-in-the-history-of-mathematics).\n![](https://m.stacker.news/55689.jpeg) https://example.com/ 13097 422010 421778.422010.423099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.82550752265476 0 \N \N f 0 \N 0 12504025 0 f f \N \N \N \N 421778 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421303 2025-03-01 15:10:20.68 2025-03-29 22:39:49.246 \N I think a beginner bitcoin sub, where stuff is kept basic to make orange pilling more effective. Members who want to help onboard would have a space. https://example.com/ 19863 420966 420888.420966.421303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0502559314759 0 \N \N f 0 \N 0 53538147 0 f f \N \N \N \N 420888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437798 2025-03-14 22:19:25.126 2025-03-29 22:39:49.245 \N As an angel investor and also as someone who is part of a bitcoin-forward organization in Block, what business models do you envision and are most excited about on a bitcoin standard, considering that all software, products and services are largely preferred to be\n- open-source\n- built on open-protocols\n- have no vendor lock-in \n- have no centralized points of control and ownership / trust-minimized\n- abide by self-sovereign ethos of bitcoin etc\n\nAll of the above seem antithetical to the business models of web2 technology companies. Curious how you see the future of entrepreneurship and business unfolding on bitcoin? https://example.com/ 17109 437791 437714.437716.437779.437784.437789.437791.437798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.179445098841 0 \N \N f 0 \N 0 47109284 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450670 2025-03-24 06:32:45.136 2025-03-29 22:39:49.246 \N [![RDT-20221031-2116556279381052560535537.webp](https://i.postimg.cc/zvtzC82H/RDT-20221031-2116556279381052560535537.webp)](https://postimg.cc/y3RCB4H7) https://example.com/ 2513 450666 450649.450652.450659.450664.450666.450670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1345859836833 0 \N \N f 640904649 \N 4 134570664 0 f f \N \N \N \N 450649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438019 2025-03-15 06:16:45.558 2025-03-29 22:39:49.246 \N Day 155 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 17321 437775 437775.438019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4325331406239 0 \N \N f 0 \N 0 114578556 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403720 2025-02-15 06:04:05.509 2025-03-29 22:39:49.246 \N New day/ new snail\nhttps://imgprxy.stacker.news/hOkZu7YAh5IwRYvQ6SBWQk20dz_y1dSKyxEVWlbvlqE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9qelNXUVJRLzk3YmJiYzhmLWYxZTAtNDVkNC1iZmI5LThjNWIwNWUwYjk5ZS5qcGc https://example.com/ 21402 297508 297508.403720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.29373581362593 0 \N \N f 0 \N 0 246330192 0 f f \N \N \N \N 297508 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403733 2025-02-15 06:39:12.622 2025-03-29 22:39:49.246 \N A highly centralized ownership situation that leads to forks that rot Bitcoin from the inside.\n\nTheoretically, with a homos economicus mindset, Bitcoin never changes its ruleset into something that hurts decentralization since we already have a highly decentralized owner base that would defend themselves.\n\nIn practical terms, a lot of the people that "have" Bitcoin use centralized custodians such as exchanges and ETFs. In fork situations, their custodians have the ultimate power to decide. Plus, the profile of someone who leaves their stack with a custodian is probably not the one that will do a lot of research into Bitcoin internals and have strong opinions on what's the right thing to do in a fork.\n\nSo, how's this an issue? You might be thinking to yourself that you can always run whatever version you want of a node, so you don't mind people forking nor big players supporting it.\n\nI also thought that way, but an OG from the blocksized wars opened my eyes to one issue: if someone has a lot of Bitcoin, they have a lot of ammo to shoot during a fork situation.\n\nImagine this:\n- Large custodians, corporations and other institutions in the western block hold 10% of Bitcoin's supply.\n- The USG promotes a fork, let's call it GovCoin. It's somehow way worse that Bitcoin in terms of Bitcoin ethos: centralized, not free, not private. \nWhatever distopian 1984 nightmare you want to think of.\n- Whenever the fork happens, people are going to be able to trade GovCoin and Bitcoin. The exchange rate across both determines the popularity and adoption of each. It's a bit of a financial war or a chicken game. If everyone holds tight their Bitcoin and dumps their GovCoin, GovCoin-Bitcoin goes to shit and the fork becomes a joke. This has already happened in the past with Bitcoin Cash and the like. You might still think that you could use Bitcoin if it goes to shit, but if Bitcoin takes a massive, long term value hit, it loses the NgU feature that drives most adoption and the game theory around it can crumble.\n- To successfully push GovCoin, the USG simultaneously:\n - Orders everyone to hand in their Bitcoin and use GovCoin, including the big players. Blackrock, Fidelity, JP Morgan, ... These guys are not going to oppose the USG. lf anything, they would probably have a stake in this whole operation.\n - Stores the confiscated Bitcoin, preventing those holdings from being used in the exchange rate financial war.\n\nYou can continue imagining.\n\nSo, I guess, what would make me lose my conviction is watching almost everyone in Bitcoin using large, state capturable custodians. \n\nOr just more generally, people being submissive cowards.\n https://example.com/ 20019 403724 396409.403724.403733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9989202966864 0 \N \N f 0 \N 0 139075549 0 f f \N \N \N \N 396409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437281 2025-03-14 12:28:08.426 2025-03-29 22:39:49.246 \N Earning 10,000 sats to transfer them to a Phoenix wallet and start running my node on my phone. Yes I know I can just buy the sats but I think I will feel proud of myself if I stack these sats bit by bit from platforms like SN! https://example.com/ 5377 436837 436837.437281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3098830943928 0 \N \N f 116717947 \N 1 155139911 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431245 2025-03-09 16:07:53.399 2025-03-29 22:39:49.246 \N Day 152 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 1221 394457 394457.431245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6419597356601 0 \N \N f 0 \N 0 127107491 0 f f \N \N \N \N 394457 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415382 2025-02-24 18:54:58.52 2025-03-29 22:39:49.247 \N How the heck did you post this so fast??? 😄\n\nA few questions to reach consensus on before this gets standardized:\n\n- WebTransport or Nostr or WebSockets or ?\n- Is the IK cryptosystem ideal?\n- Do we take this opportunity to ship long lived contacts?\n- How should pubkeys be encoded?\n\nIf you think it's Nostr's time to shine or you want to see BIP 47 (or some alternate?) contact system baked in, now's the time to speak up so we have a unified front moving forward. The privacy wars are so yesterday. https://example.com/ 15226 415285 415285.415382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.13646983894914 0 \N \N f 0 \N 0 163925128 0 f f \N \N \N \N 415285 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307555 2024-11-25 07:27:28.733 2025-03-29 22:39:49.247 \N `ᕦ(ò_óˇ)` Day 6 of exercising everyday before the saloon opens\n\nGot up before the alarm today. It was raining and I thought: "Did I jinx it? Just yesterday I asked myself what I would do if it rains. So far, I always had good weather. I hope I am just going to put on a good jacket and go outside anyway."\n\nThen it stopped raining. But I was pretty sure I would have gone to the calisthenics park anyway. However, maybe because it was only a little bit of rain. Have to wait for the first time heavy rain in the morning to really test my streak.\n\nThe push-ups (still elevated) were already a lot easier. Did the same workout as on [Day 2](https://stacker.news/items/256314) except I integrated knee raises into it (and not only did some at the end).\n\nI also asked someone if they have an idea how I could do hyperextensions here. I like training my back (especially as a developer it's good, I think) and I once had an accident where I fell through the roof of a parking space onto stairs to a cellar with my back. That hurt and the first question the EMS on the phone had was if I could still move my feet. Fortunately, I could.\n\nIn the hospital, they said I must have fallen like a cat since I got very lucky. They said (iirc) that my back muscles did hold my lumbar spine good in place. So I did not break any vertebrae (getting paralyzed in the process); just two spinous process (I hope this is the right term, we call it "Wirbelsäulenfortsatz" in German). My lower back muscles also helped during the recovery. I recovered fully except that I still have a electrical sensation when I touch a specific spot at the lower side of my body. But I consider this to just be a kind reminder that I shouldn't do such stupid things like climbing on roofs anymore, lol. Or at least be more careful. I fell through it since I didn't look that I was only stepping on the metal bars, not on the tin plastic.\n\nThe person said there is no good spot for hyperextensions but there are other exercises for the lower back. Then he showed me some which was very nice! I decided to do some supermans and hold them for one minute with roughly 30s breaks. Did 3 of those.\n\nNext time, I'll also integrate them into my workout or do more of them at the end.\n\nI wanted to take a picture of the calisthenics park for SN but I forgot. Next time. https://example.com/ 16354 307258 307258.307555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1482868585573 0 \N \N f 0 \N 0 55633806 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435753 2025-03-12 23:43:39.983 2025-03-29 22:39:49.247 \N 100%\n\nIf you insist on posting a twatter link at least adjust it to a nitter relay so that the rest of us don't have to suffer the spywall\n\nOr just have the decency to actually share some actual content rather than posting a link and hoping to profit from _someone else's content_ with zero commentary added.\n\n https://example.com/ 6717 435676 435030.435609.435676.435753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5641132234708 0 \N \N f 0 \N 0 67714030 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 17:11:59.66 f \N \N \N 0 0 0 0 0 0 0 423098 2025-03-03 00:42:58.799 2025-03-29 22:39:49.247 \N Mostly working on mainnet fixes for Mutiny so far this week. Next is adding MPP to the Voltage LSP. https://example.com/ 12561 422384 421778.422365.422369.422384.423098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.68815280462017 0 \N \N f 0 \N 0 55931279 0 f f \N \N \N \N 421778 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403467 2025-02-14 20:41:10.848 2025-03-29 22:39:49.247 \N > What do you hope it's like?\n\nI hope it's slow but steady. That we don't get sudden societal crisis that hurt a lot of people. Instead, I would like to see the fiat ponzi slowly go to shit, while Bitcoin slowly grows as the alternative. Basically, I hope we can calmly jump onto the life boats with enough space for all, instead of rushing and shoving elbows into each other.\n\nI hope adoption grows strong in the "developing" nations and oppressed societies that need it the most. I hope they can jump from whatever shithole situations they might find themselves in today into a brighter future that is better than what currently exists in the "developed" world.\n\nI hope that people learn beyond Bitcoin itself. That Bitcoin acts as a gateway drug to further understanding of economics and of political ideas such as ancap and libertarian ones. I hope it helps domesticated people grow some critical thinking, and a heightened feeling of self-responsibility and reliance. I hope it helps many people desire a smaller state and take action to achieve it.\n\nI hope development on Bitcoin itself (Bitcoin Core, basically) slows down a lot, helping building a foundation that has the ambition of holding strong for decades and even centuries. I'm not saying no change should be introduced at all, but the burden of proving the usefulness of new changes should be on the proponents. Node runners should remain skeptical, and never update just like that without giving it some deep thought. Basically, I would like to see significant changes to Bitcoin take years of promotion and discussion, and a strong feeling in the air that important changes should only be adopted when there is a large consensus around them. \n\nI hope UX keeps on improving. I hope people who are not interested in the technical bits have great options that help them enjoy the benefits of Bitcoin without requiring a computer science degree.\n\nFinally, I hope to see circular economies take place. I want to see merchants taking Bitcoin and holding it. I want to see people living on Bitcoin and outside of the Western financial systems, just like there are people living on cash on many countries. I want to see people opting into not having a "formal" job (formal as in, public contract, registered in the social security DB, following government regulations, etc). And I want them having good lives, not being miserable outcasts with all sort of issues for being outside of The System™.\n\n> What do you fear it's like?\n\nBasically, the opposite of the previous points.\n\nBesides that, my biggest fear is that Bitcoin slowly becomes this half-assed thing that is good, but not good enough. This could happen because technical changes cause issues that break the game theory. Or because governments play smart and sneaky games in which they regulate it enough that it doesn't feel draconian, but that the cost of participating in Bitcoin is enough to keep normies away and make them stay in the Matrix. There is no way to know if we are here, because we can never know if the future holds mainstream adoption or we will just remain around where we are today. I regularly get discouraged when I read predictions from +10 years ago about mainstream adoption taking place in the 10s, only to see that we are still very far away from it.\n\n https://example.com/ 9354 403274 403274.403467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.95081634865 0 \N \N f 0 \N 0 141010776 0 f f \N \N \N \N 403274 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458454 2025-03-29 09:31:04.308 2025-03-29 22:39:49.247 \N Careful what you wish for. Sports sub might turn into all day every day Leafs bashing! https://example.com/ 20198 458433 458433.458454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0908665496998 0 \N \N f 0 \N 0 82915528 0 f f \N \N \N \N 458433 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434493 2025-03-12 00:42:33.528 2025-03-29 22:39:49.248 \N ![npub1ckgyf442j7eu0cg02kk8ctmm9qn0ymjrvtcqxxzf4cpdtf27guxs69wt85](https://i.postimg.cc/fyTTDCWR/Fo-z45-Fa-YAAt-Jf9.jpg) https://example.com/ 17708 433828 433828.434493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.57853837606505 0 \N \N f 14754199 \N 1 81478220 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431131 2025-03-09 15:34:11.669 2025-03-29 22:39:49.248 \N Tony, Paul and I have been working on Mutiny Wallet. Yesterday we got it so we can make a real lightning node connection inside of a browser. Almost all the initial setup is done for bdk/ldk. Next is finishing ldk by having it run the node and then adding DLC support. 🚀 https://example.com/ 19581 431124 431124.431131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.83135349465147 0 \N \N f 380494523 \N 4 180825662 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 415898 2025-02-25 08:20:54.923 2025-03-29 22:39:49.248 \N One of the inspiring "quotes" that I actually remembered:\n\nQ: How do you motivate yourself?\nA: You don't. You just do it.\n\nWhat about you? https://example.com/ 7583 403036 403036.415898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6141171841301 0 \N \N f 0 \N 0 205168208 0 f f \N \N \N \N 403036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431056 2025-03-09 15:12:32.353 2025-03-29 22:39:49.248 \N A few of them have gone through but hard to tell if it's being slow on the SN side or on the Mutiny side. Perhaps someone with alby or lnbits could test out too to see how it goes. \n\nThe comments are kind of painful to sit there and wait for. I wish it could just act like it went through but have some pending UI for it. https://example.com/ 16684 417756 417756.431056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.92820040451714 0 \N \N f 0 \N 0 105168886 0 f f \N \N \N \N 417756 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415014 2025-02-24 13:20:15.484 2025-03-29 22:39:49.248 \N ![debt](https://i.kym-cdn.com/photos/images/newsfeed/002/525/160/830.jpg) https://example.com/ 20691 415011 414984.414997.415011.415014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.98062453124988 0 \N \N f 0 \N 0 67657453 0 f f \N \N \N \N 414984 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434669 2025-03-12 05:52:41.825 2025-03-29 22:39:49.248 \N ![](https://m.stacker.news/63457) https://example.com/ 16350 434493 433828.434493.434669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2881911683935 0 \N \N f 0 \N 0 14754199 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404503 2025-02-15 23:27:56.782 2025-03-29 22:39:49.248 \N But with that 100k sat boost he paid? 😋 This is advertisement, and benefits us all in the redistribution. All good. https://example.com/ 9334 404344 403824.404344.404503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7265744785409 0 \N \N f 0 \N 0 166278780 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415027 2025-02-24 13:33:31.931 2025-03-29 22:39:49.248 \N Hey guys - Oscar here from Fountain,\n\n\nFirst off I want to apologise for any issues - we are a small team just me and one other developer and sometimes it can take some time to get to issues reported. For example we've had over 8000 support tickets in the past 2 years... 🤯\n\nAnyway I wanted to address each point in turn but first I'd also like to mention for the past 3 months we've been working on **Fountain 1.0** which is a complete redesign of the app to address design, ux, and functionality that will make the app even easier to use. The 1.0 release is almost ready - if you'd like to help beta test it before general release please join our telegram group here - https://t.me/+ZMnGthLREYQ3N2Rk\n\nOnto the specific issues...\n\n---\n\n- **earnings** - our earnings features are not some unsustainable marketing gimmick that we use just to attract new users. We strongly believe that users of Fountain provide amazing signal of what episodes are worth listening to and as such should be rewarded in a fun way and that's what the daily rewards are designed to do. Having said that we need this to be sustainable and as such the rewards are funded by our transaction fees and promotions fees. As we've grown over the past year we have had a lot more users and as such the pool of rewards per user is less which is why you've probably noticed less rewards. I'll also note that we have deliberately ***not*** focussed on building out the earnings features so we can focus on the listener experience, design, and ux to make Fountain the best podcast listening experience first - this is what the Fountain 1.0 release is all about and I'm really excited for you all to see it. Once Fountain 1.0 is out we are going to work on the earnings features some more and have some really cool ideas for how we can improve it and increase the rewards.\n\n---\n\n- @BitByBit21 **lnurl withdrawals** - I regularly use the LNURl Withdraw feature although recognise that this being the only withdrawal option is not ideal. Can you please let me know the wallet you tried withdrawing to that failed?\n\n---\n\n- @benwehrman **forward/backward skip buttons are super lagged** - this is fixed already and will be available in Fountain 1.0 which should be live in the next couple of weeks. Since it's such a big release some of the bug fixes over the past few weeks haven't been applied to the 0.8.x version that's currently live on the app stores.\n\n---\n\n\n- @siggy47 **my fear is the app isn't making it financially** - the best thing you can do to support Fountain is sign up to our premium subscription. Only around 4% of our users sign up for premium and whilst we can probably increase this by introducing the kind of annoying feature-blocking features that Spotify use to push you to premium - we also want to make the free experience great. I believe between our premium subscription and transaction fees we have a solid business model - but again if we don't deliver an amazing listening experience we won't drive either of these and that's why we're so focused on it for Fountain 1.0.\n\n---\n\n\n- @grayruby **they don't seem to be getting advertisers anymore** - we do have a large number of podcasters promoting their shows on Fountain and they are seeing great results.\n\n---\n\n\n- @BitcoinIsTheFuture **battery drain** - this should already be massively improved in the current live version 0.8.6 - but 1.0 has even more optimisations to the underlying podcast library database on the device which should improve things even more. Are you still experiencing the battery issue on 0.8.6?\n\n---\n\n- @nkmg1c_ventures **does Fountain take any fees from streamers / tippers?** - yes we charge a 4% fee for all boosts / streams. If you sign up to premium the fee is reduced to 1%. We also change a 20% fee for all promotions.\n\n---\n\nThank you to everyone who shared feedback in this thread - it's really helpful and for anyone else that wants to share issues / feedback / bugs / feature requests - please reply somewhere on this post and I will give you my response and try and get what you want into Fountain 1.0.\n\n\n\nThanks again for all your support! 🙏 https://example.com/ 21296 414711 414711.415027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.42846246873877 0 \N \N f 203578133 \N 1 202406251 0 f f \N \N \N \N 414711 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434678 2025-03-12 06:29:17.901 2025-03-29 22:39:49.248 \N ![stacker news vs nostr & twitter](https://m.stacker.news/27638) https://example.com/ 718 434486 434277.434486.434678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9904833114798 0 \N \N f 0 \N 0 11301689 0 f f \N \N \N \N 434277 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436946 2025-03-14 04:29:14.549 2025-03-29 22:39:49.249 \N You’re overestimating the blockspace savings from CISA. A P2TR keypath input weighs 57.5 vB. 41 vB of that is from data that every input still needs: outpoint (36 vB), nSequence (4 vB), scriptSig length indicator (1 vB). The witness stack only contributes 66 WU. \nSo, assuming the CISA-compatible output had the same structure (which is reasonable) and we could just drop the whole witness stack for all but one input, the average vsize per input would asymptotically converge from 57.5 vB (one input tx) towards 41 vB as inputs grow in count on the transaction. The maximum savings would therefore be up to 28.7% of the input weight of the transaction, outputs and header remain unaffected. It’s not clear to me how that would get anyone 70–90% fee reductions.\n\nHard-forking in a manner as described would invalidate any pre-signed transactions created for future broadcast. For example that would destroy funds held in time-locked vaults based on pre-signed transactions for which the keys have been destroyed. https://example.com/ 2309 436937 436934.436937.436946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9301301287119 0 \N \N f 0 \N 0 181486169 0 f f \N \N \N \N 436934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434531 2025-03-12 01:57:25.02 2025-03-29 22:39:49.249 \N My big focus the last few weeks (whenever I get the chance to code on mutiny during holidays) has been mutiny user to mutiny user connections in our wallet. \n\nIE, a mobile user connecting and opening channel to another mobile user. I see why no apps allow that lol. But I've got all the main cases handled, I just have to clean up code and test edge cases. This'll be an important functionality for many other p2p features in the future, like DLCs. https://example.com/ 16556 434421 434278.434421.434531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7903564050575 0 \N \N f 106746219 \N 1 230927716 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410558 2025-02-20 14:35:48.365 2025-03-29 22:39:49.249 \N Well worth the read. It's felt like there is pressure building around this issue for the last few years. \n\n> preserving trustless UTXO ownership\n\nWhile I'm a fan of things like ecash, pursuing those sorts of conveniences shouldn't mean we stop working on maximum censorship resistance. If you can't hold a utxo and send it to anyone anytime anywhere, bitcoin loses its value proposition. https://example.com/ 14990 410337 410311.410337.410558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2633248745326 0 \N \N f 0 \N 0 69134391 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443521 2025-03-19 11:56:18.872 2025-03-29 22:39:49.249 \N Probably make some coffee, take a shower. https://example.com/ 16329 443489 443489.443521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5271977993094 0 \N \N f 0 \N 0 82008711 0 f f \N \N \N \N 443489 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448444 2025-03-22 15:51:27.688 2025-03-29 22:39:49.249 \N Day 153 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 866 448433 448433.448444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.589612294244 0 \N \N f 0 \N 0 72040817 0 f f \N \N \N \N 448433 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436279 2025-03-13 12:48:30.509 2025-03-29 22:39:49.249 \N too late.\nFUCK REDDIT.\nREDDIT IS A SHITCOIN.\nWe have Stacker News! https://example.com/ 19952 436136 436136.436279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.426918706704491 0 \N \N f 198268060 \N 1 166030381 0 f f \N \N \N \N 436136 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443449 2025-03-19 11:04:18.316 2025-03-29 22:39:49.249 \N 1. Q1 - BTC ETF approved in USA\n\n2. Q2 - Bitcoin above @ 60k\n\n3. Endless media propaganda & gaslighting about the "great economy," "bright future" and "unity" \n\n4. Javier Milei revitalize Argentinian Economy by multiple measurable indicators\n\n5. The enemies of the USA will take advantage of Joe Biden's weakness and conflict aversion during an election year, by aggressively provoking and threatening USA\n\n6. Joe Biden declines to accept nomination at Democratic National Convention at due to "health" \n\n7. Biden replaced by Gavin Newsom (the giveway clue was during his debate with Desantis he did a canned line "neither of us will be our parties' Nominee" - reverse-telegraphing that he is being prepped to be the nominee by the ruling class.)\n\n8. Nayib Bukele relected as president of El Salvador by a landslide\n\n9. Q4 - Bitcoin above 90k\n\n10. Q4 - A contentious populist revolt and elite psyop of unforseen proportions ending in The Return of President Trump \n https://example.com/ 13574 442855 442023.442855.443449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8425736325617 0 \N \N f 0 \N 0 166997780 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 425928 2025-03-05 09:37:48.007 2025-03-29 22:39:49.249 \N Here are some notes on the problems I had to overcome while making it.\n\n**Sourcing the data**\n\nMy initial source for data was the aforementioned stats site -- the one that doesn't update anymore. I started by copying their 0 day data and the data from the last day they updated, and those data points became my starting data points.\n\nFor more recent data, I had a few problems:\n\n(1) robosats uses a "federated" model now where usage is split up across four folks who are operating the backend, so I can't just query one source of data anymore, I have to query all four and then add their data together -- but adding is easy to do so nbd.\n\n(2) robosats is availably only via tor, and I usually try to avoid writing things that require me to run a server. Servers cost money and I have trouble maintaining them, eventually whatever I put on a server seems to stop running because I stopped paying for the server. But I did find a service that rents vps's at a monthly rate of only $3, so I decided to give it a whirl.\n\n**Two apps I wrote**\n\nI wrote a pair of python & nodejs apps that run once per day and which I'm hosting on that $3-per-month vps. The python app is based on my old [tortalker](https://github.com/supertestnet/tortalker) software but I generalized it: a clearnet-only app can talk to my python app, and pass it any onion address with an api key to prevent people from spamming it. My python app will retrieve that address's contents over tor and return the results over clearnet.\n\nMy nodejs app just passes every robosats operator's tor domain to my python app and basically asks it to query for their api info, which lists stuff like how many contracts they processed today, how many btcs they handled, and the cumulative total they've handled over their lifetime. When it gets the results it sums this info, broadcasts a note to nostr saying what the latest data is, and then sleeps for 24 hours before running again.\n\n**IPv6 problem**\n\nThe vps I'm using (skhron.com.ua) only supports ipv6, not ipv4. This means it can't "talk to" legacy websites -- only ones which resolve to an ipv6 address. At this point that means it can talk to *most* websites, but I found it had lots of trouble talking to nostr relays! None of the ones I usually use have an ipv6 address. But I found [this list](https://relays.xport.top/) of relays and just went through them one by one, using [this tool](https://dnschecker.org/ipv6-compatibility-checker.php) to check if they had an ipv6 address. Eventually I found that this relay does: junxingwang.org -- so that's the nostr relay I'm using for this project.\n\n**Wrapping up**\n\nNow that I have a source that publishes the latest robosats stats every day it was easy! I made a little webpage that uses nostr to grab all events from my little bot, and I hard coded in the original info from learn.robosats.com/stats as a "starting point" for my charts. So now the charts pick up where the old site left off, and I did some averaging/guessing to "fill in the gap" between July of last year and now. These averages also produce a weird super-straight line so I added in some randomness that makes the line look more natural. Eventually, when I have enough of my own data, I will probably eliminate that noise, but for now it helps.\n\nVoila! A new robosats tracker that you can point to as evidence that at least one darknet market on the lightning network has meaningful usage. I wonder how to find out if it is used more than most monero-based darkmarkets. 🤔 https://example.com/ 7899 424725 424725.425928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8454595727645 0 \N \N f 0 \N 0 191381167 0 f f \N \N \N \N 424725 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443475 2025-03-19 11:29:49.849 2025-03-29 22:39:49.249 \N It has to be hard to stop being retarded. Damn near impossible, I would think. https://example.com/ 13865 443472 428021.443334.443472.443475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9142895078286 0 \N \N f 0 \N 0 226833801 0 f f \N \N \N \N 428021 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434673 2025-03-12 06:04:07.597 2025-03-29 22:39:49.25 \N One weird side effect of SN is people ask me what products exist that support bitcoin/lightning as if I'm the guy that would know. https://example.com/ 20294 433828 433828.434673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.745887148005 0 \N \N f 312017153 \N 2 140592864 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449049 2025-03-23 06:03:27.498 2025-03-29 22:39:49.489 \N When Montenegro became independent from Yugoslavia, its Internet domain name went from .yu to .me. https://example.com/ 15213 393176 393176.449049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5752261013732 0 \N \N f 0 \N 0 230623015 0 f f \N \N \N \N 393176 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435716 2025-03-12 22:33:56.728 2025-03-29 22:39:49.489 \N fantastic post. Resonated with me. \n\nTl; Dr - too much Larping, not enough Bitcoining. \n\nHodl < Hodl, spend and replace more. \n\nCentralised on ramps suck. \n\n I shill WoS all the time for my videos and content. I use the excuse that for noobies it’s a great in ramp. \nim gonna make an active effort to shill Phoenix. \n\n\nPs I love that carrefour translates to Walmart in your mind 😃 https://example.com/ 2459 435713 434278.434503.434522.434598.434602.435622.435713.435716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0686805996236 0 \N \N f 953421700 \N 9 228923155 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 436086 2025-03-13 10:01:16.594 2025-03-29 22:39:49.494 \N I don't think about the cost or consider the lack of reward. I just downzap what I feel should be downzapped. \n\nI happened to be SN briefly around 3am this morning and I saw a new user joined and their first post was just a cut and paste of your entire Punishment as a Public Good post. Clearly they saw the numbers you did and were trying to get some sats. I downzapped, then downzapped their bio post, then left a snarky comment. \n\nIf Stackers want the best possible SN environment they should take the approach that the cost is worth it long term because if the site is riddled with spam, sats farming and garbage posts SN will not likely succeed and that will be a net loss to all stackers both from a community perspective and a financial perspective. \n\nDownzapping can be looked at as a maintenance cost. https://example.com/ 11716 435610 435610.436086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3589675119796 0 \N \N f 209465080 \N 1 224074191 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443480 2025-03-19 11:32:49.224 2025-03-29 22:39:49.489 \N Honestly, I’ve learned a ton. Take a look through my post history. I was new to lightning, and now I’m working on code to enhance SN’s LNURL pay support. Pretty awesome! https://example.com/ 19199 443456 441176.442104.443194.443441.443456.443480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4500065784433 0 \N \N f 0 \N 0 203876733 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435772 2025-03-13 00:28:02.56 2025-03-29 22:39:49.492 \N It might be time to raise posting costs ... people are posting absolute repetitive garbage. https://example.com/ 1726 435622 434278.434503.434522.434598.434602.435622.435772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3288944006954 0 \N \N f 765701787 \N 5 19787059 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436692 2025-03-13 19:44:03.982 2025-03-29 22:39:49.489 \N The stacker news experience is not quite complete unless Darthcoin spanks you here and there, is it? https://example.com/ 16667 436241 436241.436692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.5100172379984 0 \N \N f 0 \N 0 117862420 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436278 2025-03-13 12:42:34.974 2025-03-29 22:39:49.492 \N Thanks to @k00b's recommendation [last week](https://stacker.news/items/123774), I was able to incorporate a startup with so much ease with AngelList Stack. \n\nNow onto the raising journey. Got 2 investor meetings in the books already, just gotta continue that progress. Meanwhile continuing to iterate on what we're doing with Mutiny and project planning and design for the beta iteration. https://example.com/ 837 436093 436093.436278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0926698420014 0 \N \N f 0 \N 0 175576743 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:31:00.528 f \N \N \N 0 0 0 0 0 0 0 431251 2025-03-09 16:08:09.851 2025-03-29 22:39:49.492 \N I 100% agree with you. I think no one can specialize in all the things. Lightning has a very big surface area and there's a lot of different things you can do with it. Early folks had to build the full stack like you said, but I think we'll definitely see less of that. Especially as you think about how difficult it is to run an LSP from a capital standpoint. Not everyone is going to have the large amount of upfront capital that you need to start an LSP for their wallets. You'd have to have millions of dollars just to launch to your users. https://example.com/ 18468 392804 392804.431251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.5717991261734 0 \N \N f 0 \N 0 19057592 0 f f \N \N \N \N 392804 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443674 2025-03-19 13:09:36.966 2025-03-29 22:39:49.493 \N I kinda skimmed and mostly like the idea of auto-zapping similar to Nostr clients. But it's important to remember that zaps are money, and what you are effectively (literally) doing is TAXING engagement.\n\nYou're also dipping well into the area of privacy concerns with this level of tracking.\n\nAlso, I do not think time is a good way to measure engagement. For various reasons, but mainly because I don't want some part of my brain to be constantly trying to estimate how much time I'm spending while reading. That's just stressful. It also "taxes" people who read more slowly, or thoughtfully. https://example.com/ 1605 443546 443388.443454.443474.443546.443674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3967175842565 0 \N \N f 173375170 \N 1 118428814 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446169 2025-03-21 00:45:21.601 2025-03-29 22:39:49.495 \N proof of dog\n\n\n![20220422_150323.jpg](https://m.stacker.news/4213)\n\nit works! thanks @ekzyis, been waiting on this! https://example.com/ 1720 444916 444755.444916.446169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1228727708682 0 \N \N f 0 \N 0 37147703 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 2025-03-29 08:44:27.489 f \N \N \N 0 0 0 0 0 0 0 435031 2025-03-12 12:12:18.344 2025-03-29 22:39:49.495 \N Started learning HTML basics on my journey into front end. \n\nBuying some cheap sats as well https://example.com/ 1173 434999 434646.434999.435031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7882976060217 0 \N \N f 0 \N 0 65322122 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 05:32:30.452 f \N \N \N 0 0 0 0 0 0 0 431371 2025-03-09 16:24:09.67 2025-03-29 22:39:49.49 \N ![BTC-AT-AT.jpg](https://m.stacker.news/17552) https://example.com/ 16309 376753 376753.431371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5502765920911 0 \N \N f 0 \N 0 19592934 0 f f \N \N \N \N 376753 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436219 2025-03-13 11:48:10.763 2025-03-29 22:39:49.492 \N \n\n- Bitcoin has already succeeded at proving out a viable non-state money today.\n- Bitcoin will face many new challenges ahead (tradfi manipulation, 2106), as well as old challenges that reemerge (fork wars, security budget, state aggression)-- so we'll see if success continues.\n- Building better on/off ramps and putting bitcoin closer to people that need it and those that don't know they need it only harden/accelerate bitcoin's success. \n- The idea that we 'need to build x' for bitcoin to succeed, whether that be ordinals (muh security budget!), on-ramps (muh mass adoption!), etc are typically marketing plays that overstate a problem or create a problem themselves. \n- The only things that 'need' to be built are things that make trading, holding and mining bitcoin more anti-fragile such as mining decentralization, self custody and p2p exchange. These are the things that will enable bitcoin to survive the most bearish and antagonistic of times.\n\n https://example.com/ 1438 436217 436189.436209.436217.436219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.902848182404945 0 \N \N f 52104243 \N 1 174823156 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436277 2025-03-13 12:42:16.024 2025-03-29 22:39:49.492 \N https://blog.jinformatique.net/Bitcoin/2024/LifeSavingRaft.jpg https://example.com/ 21208 436064 436028.436029.436045.436052.436056.436064.436277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1327921675383 0 \N \N f 241399739 \N 1 145072604 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434862 2025-03-12 09:47:54.884 2025-03-29 22:39:49.492 \N ![When an abuser controls your finances, they control you](https://imgprxy.stacker.news/6EDCgncFPSio7ZDXYTNy0ob8YJu0xqgBqD4Ue8digj4/rs:fit:600:500:0/g:no/aHR0cHM6Ly93d3cuYml0Y29pbnByaWNlaW53b3Jkcy5jb20vd2hlbi1hbi1hYnVzZXItY29udHJvbHMteW91ci1maW5hbmNlcy5wbmc)\n\nThe most incredible here is to see HSBC appear on the poster, while the real solution is Bitcoin. https://example.com/ 9695 434223 434223.434862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4766950202646 0 \N \N f 0 \N 0 39034000 0 f f \N \N \N \N 434223 \N 0 0 \N \N f \N 2025-03-19 03:09:01.853 f \N \N \N 0 0 0 0 0 0 0 447254 2025-03-21 18:15:14.008 2025-03-29 22:39:49.493 \N Did you know that Italian farmers can use the wheels of Parmigiano-Reggiano cheese as collateral when they borrow money from a bank called Credito Emiliano? https://example.com/ 15662 447156 446942.447156.447254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3231780950792 0 \N \N f 0 \N 0 45841168 0 f f \N \N \N \N 446942 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436575 2025-03-13 16:56:14.487 2025-03-29 22:39:49.494 \N Fun fact: I am here to learn from others fun facts 😂😂 https://example.com/ 19524 436197 436197.436575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.33925195622382 0 \N \N f 0 \N 0 15315762 0 f f \N \N \N \N 436197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443520 2025-03-19 11:56:09.531 2025-03-29 22:39:49.494 \N The rate at which SN is developing and improving is incredibly impressive. Kudos! 👀 https://example.com/ 1105 443506 443506.443520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8196326048099 0 \N \N f 0 \N 0 196025446 0 f f \N \N \N \N 443506 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443637 2025-03-19 12:47:43.072 2025-03-29 22:39:49.494 \N Our fire bureau, like many, seems to still be in the tech dark ages. So I’m working on a personal project that is essentially a web scraper that will alert my phone when we get calls. Includes a link to google maps so I can route myself in. Easy mode. And it’s a chat bot so anyone in the bureau can subscribe and use it.\n\nI’ve learned a whooooole lot doing it! This whole personal project thing seems like the best way to teach yourself new things. If I need to learn something now I use ChatGPT to get started then find a way to build a little project instead of tutorials and stack overflow. https://example.com/ 976 439137 439137.443637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.73448898389296 0 \N \N f 163961427 \N 1 199632663 0 f f \N \N \N \N 439137 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448812 2025-03-22 22:12:38.531 2025-03-29 22:39:49.494 \N Been hearing this since I started in tech back in 2006. It is maddening to me how few open source projects even consider bitcoin as an option. \n\nThere is also this pattern of framing support as tipping or buying a cup of coffee when it should be framed as value for value. If you use this project and receive value you should return that value back to the project. \n\nIMO bitcoin is the solution here. Lightning payments to OSS contributors similar to how the V4V splits work in podcasting 2.0. It might work using Nostr. https://example.com/ 21575 448810 448591.448778.448810.448812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9627114478016 0 \N \N f 0 \N 0 34269120 0 f f \N \N \N \N 448591 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436366 2025-03-13 13:57:59.662 2025-03-29 22:39:49.494 \N This is a great question. I have been rethinking this myself and talking to my wife about it. I think it is one we could also apply to states in the US or even cities worldwide. Leaving a country is a much bigger change and requires more planning. I have put some thought into this question on the US state level. For me, and I think a lot of people to avoid making an emotion based decision you need to think about this and write it down before the shit hits the fan or even before it gets close. I firmly believe after talking to many people that moved during and after Covid that it was mostly emotion based. I'm not saying they made a mistake but rather that it wasn't very rational. \n\nHere me on this. Why I say it wasn't rational is because of how they explain it. They will state false data about metrics in different places. They will exaggerate how bad it was vs how good it is where they have moved. They seem blind to the same problems in the new place. For many of these people the move was probably a good one but would have been better if they had thought it through earlier, did more research, and compared more options.\n\nAs far as CBDC enslavement, the more I think about CBDCs the less I think it will be a drastic change for the worse. It will be worse for sure but we already have a CBDC lite in most of the western world. The banking system as well as the credit card systems are all digital and controlled by the state already. They can and are moving toward stronger and stronger censorship of transactions. The CBDC would make it easier and faster for money to be distributed as well as censorship.\n\nI think banks will push back on complete centralization. If you believe that the banks are the true power rather than the State then it seems less likely that the CBDC will be completely centralized. \n\nAs far as a social credit system. We already have that but it is more capitalist. Its called your credit score. Try to rent an apartment without a credit check. I needed one to get service with my ISP. We already have it, they just haven't tightened it as they have in China. In my view most Americans are just asleep. Even most bitcoiners. We always have a worse place to live to use as cope for our own situation. I get this every time I visit Texas or the south. People say, how can you live in California. They seem to ignore the state of their own localities and how they are just 5 to 10 years behind states like NY and CA. They are complacent. These people talk like California is run by the CCP. Its more like a EU state in reality. That's bad enough, don't get me wrong but there are tradeoffs.\n\nThe question is, what freedom matters most to you? What government is gonna be the least bad to deal with. It can vary widely within a state as well. I don't live in a big city or even a city. In some ways I have more freedom than the average person that lives in Austin, Texas for example.\n\nIt seems like you usually see two extremes. The first being I gotta get out because this is a hell hole. The person magnifies what they see on the news or web. Many things that do not even affect them. They do not take steps within their power to enhance their freedom where they are. They act like all they need to do is move. They take their issues with them.\n\nThe other extreme are the cope people. Those that don't want to do anything hard. Those that don't want to feel like they need to take action.\n\nJust my two sats. https://example.com/ 20306 436344 436344.436366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4711353492989 0 \N \N f 0 \N 0 203953962 0 f f \N \N \N \N 436344 \N 0 0 \N \N f \N 2025-03-20 08:07:49.695 f \N \N \N 0 0 0 0 0 0 0 435408 2025-03-12 16:54:06.893 2025-03-29 22:39:49.494 \N I found nostr because of SN. https://example.com/ 10060 435382 435261.435382.435408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5859961755242 0 \N \N f 0 \N 0 113106135 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:17.881 f \N \N \N 0 0 0 0 0 0 0 436120 2025-03-13 10:34:56.928 2025-03-29 22:39:49.495 \N Ah I see.\nsiggy47 said below there was an update as well from GrapheneOS. Apparently JavaScript JIT is disabled and we need to add an exception.\nSo solution:\nOpen Vanadium -> Settings -> Site Settings -> Scroll around the middle and under Content go to JavaScript JIT -> Add site exception -> add Stacker.news\n\nThen reload and it should work https://example.com/ 880 436117 436028.436100.436109.436114.436117.436120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5774371286146 0 \N \N f 155665053 \N 1 217710639 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436403 2025-03-13 14:32:21.754 2025-03-29 22:39:49.495 \N Day 172 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20577 435067 434795.435067.436403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5096404926904 0 \N \N f 0 \N 0 36667648 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435898 2025-03-13 04:41:20.68 2025-03-29 22:39:49.495 \N It’s back, baby https://example.com/ 3544 435749 435030.435141.435749.435898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6285379060259 0 \N \N f 136546853 \N 2 96963008 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443523 2025-03-19 11:57:25.309 2025-03-29 22:39:49.496 \N "As of the end of Q2, we have converted approximately 75% of our Bitcoin purchases into fiat currency."\n\nTesla didn't HODL. Or deploy as liquidity on Lightning to earn yield.\n\nSome just have to learn the hard way 🤷‍♂️ https://example.com/ 16684 443516 443399.443422.443503.443516.443523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8540750187188 0 \N \N f 0 \N 0 124213788 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443565 2025-03-19 12:19:03.724 2025-03-29 22:39:49.496 \N Holy Shit! This should be required reading for everyone. I learned a hell of a lot, and not just about the Mutiny Wallet.\nFantastic article. https://example.com/ 2335 443303 443303.443565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7522087948334 0 \N \N f 0 \N 0 218718327 0 f f \N \N \N \N 443303 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448827 2025-03-22 22:35:31.711 2025-03-29 22:39:49.496 \N Anything that threatens all of humanity. Best example is nukes but the genie is out of the bottle there.\n\nSomething that has been hypothesized is bring very large asteroids into earths orbit so we can more easily mine it, this could be super dangerous, if we get one calculation wrong, we get dinosaurs 2.0 https://example.com/ 1326 448117 448015.448117.448827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.49433415260811 0 \N \N f 0 \N 0 49209514 0 f f \N \N \N \N 448015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434907 2025-03-12 10:29:43.037 2025-03-29 22:39:49.497 \N Overly dramatic.\n\nDecentralization isn't gone. This feature just shifts economic benefit from the miner to the transaction creator. Miners who do this are automatically sacrificing rewards they could have otherwise earned by including a higher paying transaction. \n\nThey can't sustainably do this, without the transaction creators paying them in some other way. \n\nThe idea has also been around for probably 7 or 8 years. Notice that it hasn't caught on, nor scaled.\n https://example.com/ 19375 433432 433432.434907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7404720649335 0 \N \N f 0 \N 0 129348652 0 f f \N \N \N \N 433432 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443447 2025-03-19 11:03:40.112 2025-03-29 22:39:49.498 \N I'm a supporter of Free (libre) Open Source Software but the reality is that there are disagreements on what these words mean as well as what is acceptable behavior. Honestly, I don't get emotional about it. After over 10 years in the Drupal opensource community I've heard these arguments over and over again.\n\nThis is my view point.\n\n* Free (libre) means modifying and copying the code is allowed via the license. \n* Open Source means the code is viewable and downloadable. \n\nThese topics have been talked to death in the FOSS world. I have no time for people that want to complain about people following the license of their software. That includes forks/copying whatever is allowed by the license. Drupal was forked a few years back. The license allows this. Many people were offended and angry. It is really dumb IMO to get angry about this. If you don't want a project to be copied/cloned/forked then change the license. Seems that is what happened here. I have no dog in this hunt. I like folks on both sides. Feels silly to me honestly. If I or my company write code we can do what ever we want with it. License it to be copied or not. If I license my code in a way that allows it to be copied I don't have the right to get all offended when someone does just that. You have to be ready for people to not give credit (though some licenses require this).\n\nRead the license, no need to get all emotional about it. Now, the personal attacks/comments are another story and one I'm even less interested in discussing. \n\nMy two sats. https://example.com/ 5520 443423 443099.443423.443447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.66945697370328 0 \N \N f 0 \N 0 54114272 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 321030 2024-12-06 20:13:34.442 2025-03-29 22:39:49.5 \N It failing. For any reason.\n\nBootstrapping a new proof-of-work currency, after the biggest one has failed, may simply be impossible. Small PoW currencies are very susceptible to 51% attacks. So if Bitcoin ever fails we may find that the bad actors of the world use force to prevent a replacement from ever having a chance.\n\nWe've probably got one shot at creating a decentralized currency for the world. https://example.com/ 20754 321012 320825.321001.321012.321030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0350574718638 0 \N \N f 0 \N 0 155155711 0 f f \N \N \N \N 320825 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435867 2025-03-13 03:39:09.87 2025-03-29 22:39:49.501 \N www.civkit.org https://example.com/ 8245 435557 435261.435410.435420.435557.435867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.16245208547021 0 \N \N f 0 \N 0 118730994 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 03:36:42.704 f \N \N \N 0 0 0 0 0 0 0 443626 2025-03-19 12:46:15.781 2025-03-29 22:39:49.501 \N Don't use SN if you don't want to read posts optimized for farming sats that exploits every bug/weakness homo sapiens have in their hardware/software.\n\nThinks about those emotional-triggering copy-pasta posts like "Im 12 years old and I am learning bitcoin wooow" that farm sats really efficiently. https://example.com/ 704 443160 443160.443626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4635616644038 0 \N \N f 0 \N 0 112886400 0 f f \N \N \N \N 443160 \N 0 0 \N \N f \N 2025-03-26 06:03:09.391 f \N \N \N 0 0 0 0 0 0 0 448461 2025-03-22 16:00:40.186 2025-03-29 22:39:49.501 \N I'm liking this community more and more. https://example.com/ 5499 448435 447944.448375.448429.448435.448461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0779528337105972 0 \N \N f 0 \N 0 17254901 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 433198 2025-03-10 21:31:14.971 2025-03-29 22:39:49.502 \N Looks dope!\n\nWell done @brugeman https://example.com/ 9242 433160 432920.433160.433198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3010934252445 0 \N \N f 0 \N 0 54837951 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-18 20:29:02.007 f \N \N \N 0 0 0 0 0 0 0 436601 2025-03-13 17:45:37.301 2025-03-29 22:39:49.502 \N I'd go to an nPub\n\n https://example.com/ 1047 436028 436028.436601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9103000128572 0 \N \N f 0 \N 0 248651186 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 12:17:23.298 f \N \N \N 0 0 0 0 0 0 0 437737 2025-03-14 20:32:48.799 2025-03-29 22:39:49.502 \N Hal Finney Fucking Legend\n![](https://i.postimg.cc/g00GWX1Y/Hal-Finney.jpg) https://example.com/ 667 437720 437720.437737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0113245328872 0 \N \N f 104708672 \N 1 205455071 0 f f \N \N \N \N 437720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410429 2025-02-20 13:30:12.59 2025-03-29 22:39:49.502 \N After a bit of searching through the BOLTs (very dense information) I seem to understand it. The tl;dr is that while opening is a fairly simple process (one party is usually in control of all the inputs and the outputs), closing is a fair bit more complex, there's negotiations of feerates involved, then the transaction gets passed around etc. I'm guessing to minimize the complexity, the BOLT explicitly defines the format of a closing transaction:\n\n- The transaction must have only one input, and the first input of this transaction should be the channel UTXO\n- The transaction can have 0, 1, or 2 outputs (one for each party's balances)\n\nSo in this current format, it's just not possible to have multiple channel closes in a single transaction, which would also add a fair bit of complexity to an already back-and-forth process between the two parties initiating a close. \n\nUnilateral closes would be even trickier, since they're pre-signed and so you can't add more outputs/inputs to them later (unless you use the SIGHASH_SINGLE | ANYONECANPAY flags, but in that case you could only commit to one output in the transaction, whereas a force-close usually has 2 outputs). \n\nThus Lightning needs a new way to communicate between nodes that "I want to close this channel, and I also want these inputs and outputs added to this transaction", and Lightning implementations also need a way to batch such transactions automatically. \n\nWhich is where the splicing proposal comes in. Splicing basically closes a channel and opens a new one in the same transaction, so it already is more advanced than closing. Reading the mailing lists I see that people have proposed transaction cut-through as a generalization of splicing. The idea is to allow Lightning nodes to tell the other nodes which inputs they wish to add to the closing transaction, and the resulting inputs will go into the party's final UTXO balance (so it gets added to what the party had in the channel). \n\nThrough this generalized "cut-through", you could have the node add other closing transactions to the closing transaction itself, and also get splicing on top of this protocol. But I'm not sure how far along work on this is yet.\n\nRead More:\n[Bolt #02: Channel Close Protocol](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#channel-close)\n[Bolt #03: Closing Transaction](https://github.com/lightning/bolts/blob/master/03-transactions.md#closing-transaction)\n[[Lightning-dev] Closing Transaction Cut-through as a Generalization of Splice-in/Splice-out](https://lists.linuxfoundation.org/pipermail/lightning-dev/2018-April/001165.html) https://example.com/ 9348 410392 410358.410384.410392.410429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.264975988244 0 \N \N f 277599802 \N 3 207378263 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435768 2025-03-13 00:23:53.122 2025-03-29 22:39:49.503 \N Sorry I hit enter accidentally, without giving me a chance to write the body of the post. I'll write below:\n\nIn the last week I went through the process of setting up a lightning node (all done manually on an Ubuntu vanilla install, no umbrel, no citadel).\n\nI then got my kids the blue wallet app, and pointed it to the node (you can via the advanced settings).\n\nThen I sent them some sats, and they love sending money to each other with the qr codes, etc. For the next few weeks I may give them a bit of their allowance in bitcoin. \n\nThey also started playing some of those games that reward you with sats, they get really excited when they get 5 sats or what not. \n\nA great experience, I recommend it. https://example.com/ 20691 435759 435046.435059.435124.435759.435768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8791025685207 0 \N \N f 54641375 \N 1 61975081 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 19:11:35.618 f \N \N \N 0 0 0 0 1 0 0 443639 2025-03-19 12:48:02.548 2025-03-29 22:39:49.502 \N Bitcoin doesn't fix everything. https://example.com/ 861 443629 443629.443639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2469704820756 0 \N \N f 0 \N 0 98930783 0 f f \N \N \N \N 443629 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307296 2024-11-24 22:40:00.206 2025-03-29 22:39:49.502 \N If you don't understand the code, you don't really understand bitcoin\n\nI feel like too many people are all about "don't trust, verify" etc. but never really tried to learn how to read code. https://example.com/ 18608 307258 307258.307296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.94790385858299 0 \N \N f 0 \N 0 214363687 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448181 2025-03-22 13:02:20.54 2025-03-29 22:39:49.502 \N [Interconnected Energy Grids](https://stacker.news/items/281307) by @mallardshead. Seeing the human energy and research go into that post alone was all the motivation I needed to get writing more. Only just realised it today when answering this question. Hope you get typing again mall... https://example.com/ 13133 447892 447892.448181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5293598503564 0 \N \N f 0 \N 0 118773891 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 09:08:59.812 f \N \N \N 0 0 0 0 0 0 0 435668 2025-03-12 21:38:01.348 2025-03-29 22:39:49.503 \N That’s not how bitcoin development works.\n\nWe don’t just fucking add bullshit that could fuck up the chain because “why not” and we don’t add bullshit to feed Paul’s ego either \n\nDrivechains are fucking dumb and should only be rolled out if absolutely necessary. Right now it’s NOT https://example.com/ 15732 435495 435495.435668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.9956512560741 0 \N \N f 0 \N 0 189572769 0 f f \N \N \N \N 435495 \N 0 0 \N \N f \N 2025-03-19 22:17:56.603 f \N \N \N 0 0 0 0 0 0 0 436428 2025-03-13 14:55:20.509 2025-03-29 22:39:49.503 \N Work went very well yesterday. Took on a job for a boat, woohoo, billable work!\nI also heard they hired a yard electrician, so I will be able to focus on boat work, and not on fixing all the random broken crap in the yard. Also did an impromptu podcast with @1EastSideTony until it was well past my bed time, but we had a nice time shooting the shit and talking about some of my event planning.\nI'm planning for a Bitcoin Vortex in October, which involves the local meetups all happening in the same week.\nI also am in the brainstorm stage of a yet unnamed, ticketed, intimate, multi-day Bitcoin event for next Spring to fill in the cultural gap of the Bitcoin Conference leaving my Miami. Set the first planning meeting for 6pm Eastern Time, September 6! Anyone interested in helping organize it can save the date and get in touch with me. https://example.com/ 19121 436025 436025.436428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.760759612886 0 \N \N f 0 \N 0 190451665 0 f f \N \N \N \N 436025 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447187 2025-03-21 17:12:33.912 2025-03-29 22:39:49.494 \N If @Alby didn't get permission to do this, I would be very disappointed https://example.com/ 20525 447081 446937.447081.447187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9489157123317 0 \N \N f 0 \N 0 98120496 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307276 2024-11-24 22:19:00.304 2025-03-29 22:39:49.495 \N Bitcoin Core peer connection unit tests and bug fixes. https://example.com/ 13177 307258 307258.307276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5999085962844 0 \N \N f 0 \N 0 44118515 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307262 2024-11-24 21:54:22.355 2025-03-29 22:39:49.495 \N ![](https://i.postimg.cc/ncpMf4M4/aaeb6cc2-fc7c-4023-b585-24805d5a85f3-535x971.jpg) https://example.com/ 5942 307258 307258.307262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5606912064594 0 \N \N f 146215484 \N 1 191497949 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307477 2024-11-25 04:00:56.871 2025-03-29 22:39:49.495 \N ![](https://m.stacker.news/62401) https://example.com/ 19906 307258 307258.307477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.846008077274689 0 \N \N f 0 \N 0 95726659 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448782 2025-03-22 21:40:38.531 2025-03-29 22:39:49.496 \N Very thoughtful summary. I mostly agree with everything you've said.\n\nOne note on gift cards: in some European countries, gift cards can become "e-money" and must then be regulated as such if (I'm quoting from memory) their purpose and utility becomes "too universal", i.e. you can doo too many things with them. I've heard (I might be completely wrong, didn't verify) that Amazon gift cards are regulated as e-money in Sweden because of this: you can buy too much different stuff with it and people started using it for a money substitute.\n\nInsane if you ask me.\n\nAnyway, awesome post. Have a zap. https://example.com/ 1773 448349 448349.448782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1920302683441 0 \N \N f 0 \N 0 12098324 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 14:58:46.217 f \N \N \N 0 0 0 0 0 0 0 435807 2025-03-13 01:38:12.456 2025-03-29 22:39:49.496 \N Morning freaks, \n\nI'm off to a good start so far, \n\nMorning push ups and 5k run\nAttempting to develop my first nostr client\nFiling some patents with the USPTO\nGuzzling coffee\nListening to music\nThinking about the absurdity of time theft https://example.com/ 10981 435805 435805.435807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0274827428512 0 \N \N f 0 \N 0 3074525 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N 2025-03-19 19:08:02.668 f \N \N \N 0 0 0 0 0 0 0 435852 2025-03-13 03:11:10.97 2025-03-29 22:39:49.496 \N you cant complain yourself into the future https://example.com/ 4048 435806 435806.435852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.749913490674 0 \N \N f 0 \N 0 236731676 0 f f \N \N \N \N 435806 \N 0 0 \N \N f \N 2025-03-19 22:03:30.698 f \N \N \N 0 0 0 0 0 0 0 435861 2025-03-13 03:25:00.21 2025-03-29 22:39:49.497 \N For what it's worth, these efforts might indirectly pay off for all the external wallet services that use NWC, etc. Often a chicken and egg problem, you've created demand for stable ways to connect external wallets hence incentivizing those services to develop their tools. Just guessing here.\n\nLooking forward to the territory and subterritory stuff. \n\nCelebrate a bit first though. Have a beer or burger on me at Fat Sal's if they are still around. Last time I was in Austin was ages ago. Might be there in December for work. https://example.com/ 12768 435242 435242.435861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.543510437953572 0 \N \N f 41936641 \N 1 90715810 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 2025-03-20 05:48:27.462 f \N \N \N 0 0 0 0 1 0 0 437784 2025-03-14 22:07:48.098 2025-03-29 22:39:49.497 \N ![.](https://wykop.pl/cdn/c3201142/8b5358eb9a9197acd928dd89ebfa98eccb170172640c0731b8ac0070f23ef165.jpg?author=pablonzo&auth=0a95f9ca3ed0a28e0e666f47566b22ec) https://example.com/ 21825 437779 437714.437716.437779.437784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4584874853309 0 \N \N f 384595368 \N 3 206370729 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307422 2024-11-25 01:21:43.048 2025-03-29 22:39:49.498 \N Too frustrating\n\nThe "complex" solutions like btcpay have a huge learning curve or require hiring someone to do it for you\n\nThe "simple" solutions make you pay an LSP or a custodian, and the LSP models can't prevent or hide force closures. The moment one happens, merchants will probably notice a fee -- especially if the wallet tries to fix it for them -- or, if not, the merchant must make a frustrating choice: either learn how to fix it (they definitely don't want to learn yet another thing) or take it as a loss i.e. leave it unfixed and leave the money stuck in a base layer address that the merchant doesn't know how to use\n\nBoth options (complex and simple) distinguish between "lightning" and "bitcoin." Merchants don't know the difference so they must do one of two things: learn the difference or ignore the difference. Having to make this choice is frustrating, and if they choose to learn the difference, that is also frustrating, because merchants don't want to learn yet another new thing.\n\nWhether or not the merchant learns what lightning is, some customers will click the bitcoin option. If the merchant did not learn the difference between the two in the beginning, or forgot the difference, he will suddenly discover that, because the customer chose bitcoin, he has to wait an unknown number of minutes, and, because he didn't learn the difference, he also won't understand what's going on while he's waiting.\n\nEven when customers select the lightning option, the merchant will discover that, contrary to the marketing, lightning is very often slow. If the sender is not using one of the popular wallets (which are mostly custodial), their lightning payment may regularly take a whole minute or more before their wallet says it either worked or it couldn't find a route. Merchants hate waiting 60 seconds or more to even learn what the problem is. After about 10 seconds of waiting they start asking the customer to consider paying some other way. But if the customer chose lightning, they can't, because their first payment hasn't failed yet. It might succeed or fail at any second, but in the meantime you just have to wait, and there is no transparency as to what is going on or when you might get a message.\n\nIf the payment fails, it's pretty bad: maybe the merchant loses that sale. Maybe the customer pays with fiat instead. Maybe he falls back on a base layer payment and we're in for an even longer wait. Whatever happens, the merchant learns that bitcoin payments aren't very reliable (even though it's actually lightning's fault, not bitcoin's) so he won't want to let customers pay with lightning OR bitcoin when there's a line. And he also won't want to set up a special "bitcoin queue" for bitcoiners only, so he will be inclined to just stop accepting bitcoin altogether until it gets more reliable.\n\nHere's another frustration: after that one bitcoiner finally nags the merchant into accepting bitcoin payments, he will likely have a total of one customer who actually uses it. Reminder: most people don't have bitcoin, and most bitcoiners prefer not to pay in bitcoin, for many reasons. It's either too expensive on the base layer, too unreliable on lightning, too much of a tax burden, and/or maybe they don't understand why anyone would ever spend their hard money (bitcoin) when they can spend their inflationary money (fiat) instead.\n\nSo the merchant finds himself with a payment method that (1) he doesn't understand, (2) it doesn't work very well, and (3) it is only requested by one guy. You'll forgive him if he forgets to train his next staff member how to accept your bitcoin payment. And the next one, and the next one, til the staff forgets they even accept it and no one remembers where the bitcoin tablet is anyway or what its password is.\n\nLightning (and even the base layer) are just too frustrating right now. I don't blame merchants for avoiding it -- I'm surprised any of them accept it at all https://example.com/ 20220 306412 306412.307422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0420060950569 0 \N \N f 0 \N 0 81576081 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447036 2025-03-21 15:23:01.201 2025-03-29 22:39:49.498 \N ![Economy Central Banks](https://www.bitcoinpriceinwords.com/economy_centralbanks.jpg) https://example.com/ 9354 446728 446371.446452.446464.446465.446728.447036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.01602614331112 0 \N \N f 0 \N 0 189582176 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 09:44:58.323 f \N \N \N 0 0 0 0 0 0 0 408026 2025-02-18 14:34:41.255 2025-03-29 22:39:49.498 \N You're assuming Bitcoin nodes have intelligence that they don't. They don't "think". They're computer programs that follow rules. Pre-segwit rules allow those outputs to be spent by anyone; post-segwit rules don't.\n\nAs for wallets, they would never create such scripts so they'd never show those scripts as part of their balance. https://example.com/ 17797 408016 407903.407928.407976.408016.408026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.1029278538189 0 \N \N f 794442321 \N 5 220222525 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436465 2025-03-13 15:21:13.696 2025-03-29 22:39:49.499 \N Ok this has been fixed. \n\nNote: if you wanted to jump directly to a transaction (your transaction), you can just search for that TX ID and it will take you straight there:\n\n![0](https://sfo3.digitaloceanspaces.com/preturnio/public/darth1.png)\n\nPreturnio returns a result here because there is an OP_RETURN inside that transaction and Preturnio indexes *all* OP_RETURNs. As I mentioned below, the '/' delimiter wasn't part of the search index regex analyzer - so if you searched for 'substack' you'd see your OP_RETURN transactions - but 'darthcoin' wasn't registering as a match.\n\nI've updated the search index regex and so now 'darthcoin' will return results because the analyzer will include specific words in between '/' and '.' \n\n![0](https://sfo3.digitaloceanspaces.com/preturnio/public/darth2.png)\n\n(Turns out that free form text indexes are tricky to configure :))\n\nThanks for pointing this out and giving me an opportunity to tweak the index.\n\n https://example.com/ 6393 436413 436413.436465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1023259126726 0 \N \N f 176623249 \N 2 52152842 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N 2025-03-20 08:40:04.752 f \N \N \N 0 0 0 0 1 0 0 434381 2025-03-11 20:56:55.982 2025-03-29 22:39:49.499 \N Thanks for the words man.\nDon't worry, will not be goone forever.\nIs just this summer time, having a lot of work to built that new "death star" citadel.\n\nIt will be a Bitcoin monument with 21 rocks at the entrance with the 21 reasons why Bitcoin will save the world.\n\nDarth bitcoin toxicity have to be carved in stone to remain forever in history.\n\nOnce the 1dt building is ready, will continue with utilities to make the living there in good conditions, including an internet connection.\nMy plan is to have a 24/7 webcam showing the beautiful place it is there and what Darth is doing all day.\nWarning you may see me naked :)\nOf course to watch the video feed you eill need to pay a small fee with sats, to keep away the shitcoiners.\n\nYou can even ask me questions, live.\n\nThe place is really isolated in a beautiful mountain valley, far from any "civilized" establishment. Is feature not a bug. I just want to be left alone.\nI will just spend my rest of my life there. https://example.com/ 4763 433828 433828.434381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7104328396343 0 \N \N f 602287295 \N 4 65506000 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 421191 2025-03-01 13:35:49.198 2025-03-29 22:39:49.499 \N 🚫 Dwindling bitcoin capacity\n✅ Getting more capital-efficient\n\n🚫 Expensive to receive money\n✅ Startup costs are amortized during the life of a channel\n\n🚫 Channel freezes and other Lightning Network bugs\n✅ Can be mitigated today. Could be solved by covenant soft fork.\n\n🚫 Significant developer departures from Bitcoin Lightning\n✅ Many new devs are building on LN\n\n🚫 A growing list of Bitcoin Lightning complaints\n✅ A growing list of LN companies/communities to support you https://example.com/ 929 420776 2483.420776.421191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.44679253820326 0 \N \N f 155871965 \N 1 213564987 0 f f \N \N \N \N 2483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443309 2025-03-19 08:53:30.466 2025-03-29 22:39:49.501 \N Adding Nostr Wallet Connect to the Stacker News wallet would be cool. \n\nSend and receive nostr zaps from SN, pairs nicely with the crossposting addition. https://example.com/ 782 443296 443295.443296.443309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.5624377186549 0 \N \N f 0 \N 0 9832833 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:35.24 f \N \N \N 0 0 0 0 0 0 0 447981 2025-03-22 10:20:27.906 2025-03-29 22:39:49.502 \N If someone offers to pay me in beer or pizza for a favour, I tell them I'd take half that value if it was in bitcoin.\nI've had one or two people take me up on it. Friends mostly. https://example.com/ 4415 447950 447944.447950.447981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.360310547551741 0 \N \N f 0 \N 0 56656734 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N 2025-03-29 09:18:48.33 f \N \N \N 0 0 0 0 0 0 0 436075 2025-03-13 09:41:48.64 2025-03-29 22:39:49.502 \N i just inscribe it into bitcoin and then sync a full node https://example.com/ 21555 435883 435883.436075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9075052563434 0 \N \N f 0 \N 0 123925576 0 f f \N \N \N \N 435883 \N 0 0 \N \N f \N 2025-03-20 04:11:58.711 f \N \N \N 0 0 0 0 0 0 0 448932 2025-03-23 01:31:32.176 2025-03-29 22:39:49.502 \N Stacker News has genuinely made me a fanatical writer now.\n\nI have like 5 articles on the go right now. And they all are somewhat intertwined. Never in my life have I wanted to write. I’ve wanted to read but definitely not had the energy or motivation to throw my thoughts out there in the wild and expose them for critique. SN has completely turned the tables on that. Who knows whether it continues. For now at least, can’t thank you guys & gals enough 🙏 https://example.com/ 1298 448691 448691.448932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5799942197226 0 \N \N f 0 \N 0 14335115 0 f f \N \N \N \N 448691 \N 0 0 \N \N f \N 2025-03-29 19:41:23.625 f \N \N \N 0 0 0 0 0 0 0 432980 2025-03-10 18:04:04.382 2025-03-29 22:39:49.502 \N > In the poorest 1% of zip codes that have lottery retailers, the average American adult spends around $600 a year, or nearly 5% of their income, on tickets. That compares with just $150, or 0.15%, for those in the richest 1% of zip codes. In other words, the poorest households spend roughly 30 times more on lotteries than richer ones, as a share of income. The pandemic appears to have made things worse. In 2021 the poorest 1% of households—flush with stimulus cheques—spent $100 more on lotteries than they did in 2019. The richest 1% spent just $10 more.\n\nMy dad always said it was just a regressive tax. https://example.com/ 669 432920 432920.432980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8738196440984 0 \N \N f 1102646885 \N 7 31063984 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416740 2025-02-25 20:05:06.806 2025-03-29 22:39:49.503 \N > how was your experience asking for grants and donations?\n\nOne thing that's great since project's inception is that we're all funded by different entities. Thus far we had: Spiral, HRF, OpenSats, Foundry, Bitmex, Galaxy. Some of the entities even allowed their employees to work on SRI.\n\nIt's tough, but back when I started doing FOSS Bitcoin 7 years ago, situation is much better. There are now so many entities that recognize good and valuable work. I would say that each and every one of us first added some proof of work, before applying for a grant. \n\nSituation can always be better, as someone handling this side of the things for contributors of SRI, one thing that could be better is mullti-year support so that contributors don't have to worry every 6-months or 12-months if their grants will be renewed, \n\n> were there any important lessons you learned that might be useful for other FOSS builders looking for grants to support their work?\n\n1. Put in **proof of work,** even if it's in spare time and ensure community recognizes the value you're adding\n2. When writing application always ask core contribution team to **validate** your ideas or areas you can be useful for the project \n3. We need multi-year grants in this space asap, dealing with sustainability insecurities and constant renewals takes a toll on people.\n https://example.com/ 9758 416721 416721.416740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5219066944574 0 \N \N f 186740557 \N 2 103189707 0 f f \N \N \N \N 416721 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414396 2025-02-23 21:42:30.943 2025-03-29 22:39:49.503 \N NGL this feature is going over better than I anticipated haha https://example.com/ 8004 414204 414204.414396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.39721635865632 0 \N \N f 110355117 \N 1 223163398 0 f f \N \N \N \N 414204 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3126 2022-10-25 14:50:20.847 2025-03-29 22:39:49.503 \N I make my living as an SEO and yes Google searches can be manipulated by\n\n- Internal linking\n- Contextual keyword references\n- External linking\n- Social linking\n- Social engagement\n\nBut yes external link building is by far the heaviest weight because of the barrier to entry, to get someone to link to your site is based on the assumption you created something so high value it was the ideal reference, but as we know every website on the planet is for sale and for the right price you can buy the right links from domains, or run link building campaigns that help you secure a competitive domain valuation in google's eyes that gives you ranking ability \n\n\nLet's say we do have a LN-ranking factor that could be stored in an LSAT or something like and had a weighting for everyones own biases\n\nSo a piece of content could have a weighting on\n\n- Internal linking\n- Contextual keyword references\n- External linking\n- Social linking\n- Social engagement\n\nas a baseline, I don't think throwing it out completely is a good idea, there is some merit to the system, it should just be re-weighted with secondary data \n\nLets say we had economic factors like:\n\n- Unique wallets that engaged with domain\n- Unique wallets that engaged with page\n- Number of wallets that tipped\n- Amount tipped \n- Number of recurring payments to domain\n- Number of paywall interactions\n- A conversion rate of paywall to wallets\n- Scroll depth payment %\n- Return rate of unique wallets to content or domain\n- Average spend on content/domain \n\n\nOverlaying this information with the standard google metrics can give you a much deeper understanding of the value of a piece of content. \n\n## How it could work in practice \n\nLets say there are 2 pages, both 2000 words each both have the same amount of links and shares, but one is an indepth researched article, the other is listicle, they might have the same time on site, bounce rate and to google they are both simliar, but when you overlay the economic data you can see that the rich piece gets far more real engagement and therefore should be ranked higher. \n\n## How we break the network effect\n\nI agree it's been bastardised through the years, as fiat dilutes all products and is due for an upgrade, I just don't see how a site with superior ranking eats market share because normies don't know they're getting bad results, they take it on face value this is what results should be and yes you do get brand biased searches as mentioned in the post but this is not the norm. \n\nAs an SEO I use multiple search engines all the time to compare resutls, but a normie is not going to do that, if lets say the wallet is now a chrome extension like alby and can prompt users to adopt the additional metrics to update search results that could be a jumping off point since you're not moving them off google.\n\nI use tools like ahrefs that do that, so I can view location biased searches when i work for clients in different regions, and think this could be a cool solution that could even be useed to feed data into having a stand alone search engine too like Ahrefs has with Yep.com\n\n https://example.com/ 2719 3119 3119.3126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.03505537561117 0 \N \N f 0 \N 0 98417106 0 f f \N \N \N \N 3119 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434769 2025-03-12 08:21:03.093 2025-03-29 22:39:49.49 \N ![Craig Wright Will Find You And Sue You.png](https://m.stacker.news/24686) https://example.com/ 18441 434760 434646.434687.434760.434769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9850538409663 0 \N \N f 458784330 \N 2 233648429 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 02:00:29.959 f \N \N \N 0 0 0 0 1 0 0 416601 2025-02-25 17:59:59.673 2025-03-29 22:39:49.49 \N Just make sure SN is sustainable long term. https://example.com/ 12261 416158 416158.416601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8772289058394 0 \N \N f 246093374 \N 1 74622273 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307299 2024-11-24 22:46:58.819 2025-03-29 22:39:49.504 \N It will reverse when the bombs drop https://example.com/ 730 307274 307271.307274.307299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5659015838491 0 \N \N f 0 \N 0 226942557 0 f f \N \N \N \N 307271 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307516 2024-11-25 05:29:32.219 2025-03-29 22:39:49.504 \N Day 190 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 17639 307258 307258.307516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.63694058824339 0 \N \N f 0 \N 0 153288021 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401277 2025-02-12 20:43:18.927 2025-03-29 22:39:49.504 \N I just got a notification that I lost my cowboy hat and my heart sunk.\n\nFortunately, it was from my local instance of SN where I do development _whew_ https://example.com/ 925 401076 401076.401277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.49296221405421 0 \N \N f 411401761 \N 2 192403969 0 f f \N \N \N \N 401076 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 191857 2024-06-30 10:59:52.76 2025-03-29 22:39:49.49 \N [![AI.jpg](https://imgprxy.stacker.news/TlmzIq18dpw4FJhaa4vPIYVQc7f7dFKpSI9sPW-UGq0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvekQyU3pXUncvQUkuanBn)](https://postimg.cc/Sj8zVndj) https://example.com/ 1602 191852 191852.191857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6064378541267 0 \N \N f 0 \N 0 3629906 0 f f \N \N \N \N 191852 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435301 2025-03-12 15:26:28.948 2025-03-29 22:39:49.491 \N ![always has been](https://nostr.build/i/nostr.build_2cdc388b75d212e1d688bb239513deb3bda599fde3a33496ed29f55d41f506ba.jpg) https://example.com/ 11165 435287 435154.435287.435301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5825869674371 0 \N \N f 0 \N 0 18524462 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 08:47:05.995 f \N \N \N 0 0 0 0 0 0 0 442861 2025-03-18 21:13:43.817 2025-03-29 22:39:49.491 \N HTTPS isn't a consensus system. The requirements for HTTPS to work are much less stringent than Bitcoin as you don't need “bug-for-bug” compatibility. https://example.com/ 21228 442854 442751.442854.442861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2105365210055 0 \N \N f 0 \N 0 159773398 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 2025-03-26 02:47:26.863 f \N \N \N 0 0 0 0 0 0 0 435525 2025-03-12 18:57:29.028 2025-03-29 22:39:49.492 \N I'm reading 'The creature from Jekyll Island' by GE Griffin. It was recommended by @carlosfandango. He's right, very interesting read! https://example.com/ 13327 435515 435314.435320.435335.435515.435525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7999859954755 0 \N \N f 27142456 \N 1 98839572 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-19 12:17:48.655 f \N \N \N 0 0 0 0 1 0 0 443557 2025-03-19 12:16:32.944 2025-03-29 22:39:49.491 \N Hiking to Burgess Falls, just about 14 miles south of my town. \n\n![SmartSelect_20240203_140400_Google.jpg](https://m.stacker.news/14779) https://example.com/ 21798 443548 443295.443548.443557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7357015447501 0 \N \N f 26193885 \N 1 103860989 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:11.146 f \N \N \N 0 0 0 0 1 0 0 434601 2025-03-12 03:58:01.585 2025-03-29 22:39:49.492 \N Day 161 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 19943 434535 434535.434601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.96940287927668 0 \N \N f 0 \N 0 48538360 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 2025-03-20 04:24:22.505 f \N \N \N 0 0 0 0 0 0 0 436480 2025-03-13 15:25:44.745 2025-03-29 22:39:49.492 \N Why did we choose okx as the first exchange? \n\nbecause:\n- it has high volume (10,000x more than kollider), only second to binance\n- it has lightning integration (we've started with onchain, lightning integration will be next)\n\nto be more robust and reduce risk, a multi-exchange hedging definitively needs to be developed.\n\nwe're currently rewriting the bot in rust (https://github.com/GaloyMoney/stablesats-rs/), so that it's easier to use with other wallets/banks, and when it's done we will work on adding multiple exchange. https://example.com/ 2329 436326 436326.436480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6682690803475 0 \N \N f 89183472 \N 1 155542128 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N 2025-03-20 10:24:10.665 f \N \N \N 0 0 0 0 1 0 0 444364 2025-03-19 20:13:51.152 2025-03-29 22:39:49.492 \N Good question. I definitely think the dollar is one of the last ones standing. If the BRICS currency has convertibility, it has a chance at displacing the dollar at least in some places. https://example.com/ 14449 444236 444236.444364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3882175979692 0 \N \N f 188976175 \N 1 172342264 0 f f \N \N \N \N 444236 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436014 2025-03-13 08:22:49.875 2025-03-29 22:39:49.492 \N Roundtable feature enhancements thread. Going to write things as they come to me.\n\n- comment ranking priority should always be given to OP (mod of discussion)\n- while the roundtable is ongoing, it might be best to sort by most recent first\n - when the roundtable is over, sorting by top makes sense https://example.com/ 17011 435907 435907.436014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.3175843500144 0 \N \N f 583425236 \N 5 226299899 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 02:22:51.329 f \N \N \N 0 0 0 0 2 0 0 410385 2025-02-20 13:10:14.983 2025-03-29 22:39:49.493 \N It's the Pavlov Dog effect. I'm draining my account. https://example.com/ 2203 410108 410108.410385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4598735706713 0 \N \N f 226633323 \N 1 12042015 0 f f \N \N \N \N 410108 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435588 2025-03-12 19:57:52.349 2025-03-29 22:39:49.493 \N Working on first iteration of self-custodial wallets on SN.\n\nWe'll probably use [bitcoin-connect](https://github.com/getAlby/bitcoin-connect) from @Alby so stackers can connect all kind of self-custodial wallets to easily zap people on SN:\n\n![2023-12-27-195854_1920x1080_scrot.png](https://m.stacker.news/9721)\n\nThe idea is that the UX should stay consistent - no matter if you zap from the custodial SN wallet or from your own wallet. https://example.com/ 1603 435495 435495.435588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2429172408066 0 \N \N f 0 \N 0 164344170 0 f f \N \N \N \N 435495 \N 0 0 \N \N f \N 2025-03-19 22:18:08.345 f \N \N \N 0 0 0 0 0 0 0 435178 2025-03-12 14:09:12.438 2025-03-29 22:39:49.493 \N This is a symptom of the problem, the real problem being all the other implementations suck to build on top of. LND has done a really good job building tools for developers to do things on top of it very easily. Eclair is custom built for ACINQ and runs well but isn't meant to be used by everyone. CLN is basically just a hobby project by blockstream, most people I've talked to who've tried using it have had a bad experience because nothing is ever taken to completion. LDK is great but is used for building your own lightning implementation, not a drop in replacement for something like LND. https://example.com/ 8269 435030 435030.435178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.449512126227 0 \N \N f 0 \N 0 177839106 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-20 08:00:14.125 f \N \N \N 0 0 0 0 0 0 0 435380 2025-03-12 16:34:06.02 2025-03-29 22:39:49.494 \N WTF?! I tried to read almost all comments from top posts and after I refreshed the page, now I see that the top 20 posts have even more "unread" comments !\n\nOMG SN is on fire today, can't keep up with reading all. https://example.com/ 13865 435154 435154.435380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5960939749837 0 \N \N f 0 \N 0 197637326 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 10:33:20.77 f \N \N \N 0 0 0 0 0 0 0 436492 2025-03-13 15:32:41.733 2025-03-29 22:39:49.494 \N I am still building guys...\nThis is just a sneak preview. Soon will post a larger article about this work in progress.\n[![darth-building.jpg](https://imgprxy.stacker.news/_HkTa2Dp11yR7jNf9UtgfNtEwbm_5mH1IMiNIRlsMo0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvQzFWZjBYZ2IvZGFydGgtYnVpbGRpbmcuanBn)](https://postimg.cc/zL0fSd3f)\n\nP.S: - inside 12 sacks are 12 words 😂😂😂😂\nFor eternity. https://example.com/ 899 436373 435046.435135.435292.435504.435756.436349.436373.436492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4006461411485 0 \N \N f 0 \N 0 73136714 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 09:56:19.002 f \N \N \N 0 0 0 0 0 0 0 436156 2025-03-13 10:58:44.591 2025-03-29 22:39:49.494 \N Good questions! I try to regularly review PRs and even have a PR merged into core but I am still mostly oblivious about how bitcoin protocol development and maintenance is organized.\n\n> is there a specific framework or decision making system bitcoin core maintainers use to determine whether an update should be merged?\n\nRegarding frameworks, there is USAF which was used for SegWit and "Speedy trial" which was used for Taproot [0,1]. I think controversy in PRs is also considered. \n\nThere is also a system of abbreviations:\n\n> Concept ACK - Agree with the idea and overall direction, but haven't reviewed the code changes or tested them.\n>\n> utACK (untested ACK) - Reviewed and agree with the code changes but haven't actually tested them.\n>\n> Tested ACK - Reviewed the code changes and have verified the functionality or bug fix.\n>\n> ACK - A loose ACK can be confusing. It's best to avoid them unless it's a documentation/comment only change in which case there is nothing to test/verify; therefore the tested/untested distinction is not there.\n>\n> NACK - Disagree with the code changes/concept. Should be accompanied by an explanation.\n\n-- https://github.com/bitcoin/bitcoin/issues/6100#issuecomment-98471846\n\nlike used [here](https://github.com/bitcoin/bitcoin/pull/27792#pullrequestreview-1453686280). Extensive use of ACK'ing specific commits can be seen [here](https://github.com/bitcoin/bitcoin/pull/25524).\n\nThe definitions of these terms are all over the place however.\n\nFor example, afaict, it's no longer mentioned in [doc/developer-notes.md](https://github.com/bitcoin/bitcoin/blob/master/doc/developer-notes.md). Seems like the explanation moved to [CONTRIBUTING.md](https://github.com/bitcoin/bitcoin/blob/master/CONTRIBUTING.md#peer-review) which is missing `utACK` and `tACK` however but mentions the difference between `Concept ACK` and `Approach ACK`.\n\n> is there a specific process for aspiring bitcoin core maintainers to become one?\n\nThe [discussion](https://github.com/bitcoin/bitcoin/pull/25524#issuecomment-1172518409) in the [PR about glozow becoming a maintainer](https://github.com/bitcoin/bitcoin/pull/25524) gives some insights about the process (or lack of).\n\n[0] https://github.com/bitcoin/bips/blob/master/bip-0148.mediawiki\n[1] https://taproot.watch/\n[2] https://bitcoincore.org/en/meetings/ https://example.com/ 8541 436028 436028.436156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9741285530619 0 \N \N f 0 \N 0 68840421 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 08:07:06.932 f \N \N \N 0 0 0 0 0 0 0 434584 2025-03-12 03:33:36.46 2025-03-29 22:39:49.494 \N Just throwing numbers without an indicators or research or evidence doesnt really help with anything. \n\nTo me, the post feels like the stupid clickbait titles infulencers use......do better Brian! \n https://example.com/ 15243 434577 434577.434584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.03471085377713 0 \N \N f 0 \N 0 165560925 0 f f \N \N \N \N 434577 \N 0 0 \N \N f \N 2025-03-18 20:54:36.646 f \N \N \N 0 0 0 0 0 0 0 436664 2025-03-13 19:11:57.71 2025-03-29 22:39:49.494 \N @k00b and @ek, I hope you've read through the comments on my post https://stacker.news/items/548695/r/Undisciplined.\n\nThere are a bunch of very sweet testimonials for the awesome community you're making.\n\nThanks, guys. Pat yourselves on the back. https://example.com/ 17991 436523 436523.436664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.98544608642087 0 \N \N f 0 \N 0 87383015 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 2025-03-20 13:25:14.174 f \N \N \N 0 0 0 0 0 0 0 448740 2025-03-22 20:35:16.271 2025-03-29 22:39:49.495 \N You were right. It was a scam. Left the project in 2021 (this comment is very late) but hey, we all become maximalists in some way XD https://example.com/ 17183 448720 448720.448740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1115389671732 0 \N \N f 0 \N 0 27287107 0 f f \N \N \N \N 448720 \N 0 0 \N \N f \N 2025-03-29 15:07:55.526 f \N \N \N 0 0 0 0 0 0 0 434811 2025-03-12 08:55:34.65 2025-03-29 22:39:49.495 \N Great question! Here are a few things that have helped me gain new perspective over the years:\n\n- Do a Vipassana retreat - 10 days sitting in silence will force you to question a lot of beliefs https://www.dhamma.org/en/index\n- Travel somewhere new and ditch the phone. Navigating and being forced to interact with strangers will give you all kinds of new perspective \n- Learn a new language - this one is a major commitment, but helped me reflect on how universal concepts get distilled in human communication and gave me a tool to interact with new groups of people with very different life experiences. I used Baselang several years ago for Spanish https://baselang.com\n- Travel somewhere where people live radically different lives. Chiapas and parts of Oaxaca were big ones for me\n- On the idea side, some of my favorites: Buckminster Fuller, Terence McKenna, Robert Anton Wilson, and Kevin Kelly. I've also really resonated with Vedic wisdom. Here's a great resource to find similar thinking, which I think you'll enjoy: https://organism.earth/library/\n\nThis is an excellent reminder to once again question my own experience/information inputs - thanks! https://example.com/ 6777 434805 434795.434797.434800.434805.434811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.66354974241658 0 \N \N f 0 \N 0 118202380 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:39:56.979 f \N \N \N 0 0 0 0 0 0 0 448313 2025-03-22 14:39:32.777 2025-03-29 22:39:49.495 \N Thanks very much for this detailed response! You answered my questions and I am looking forward to trying out the store. I think the potential is enormous. https://example.com/ 866 448283 448283.448313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0422212589014 0 \N \N f 85134913 \N 1 170447903 0 f f \N \N \N \N 448283 \N 0 0 \N \N f \N 2025-03-29 08:57:21.785 f \N \N \N 0 0 0 0 1 0 0 407561 2025-02-18 07:50:49.591 2025-03-29 22:39:49.496 \N working on adding a comment field for link posts, so the poster can say something about the link https://example.com/ 21430 407283 406297.406620.407259.407283.407561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7396886571017 0 \N \N f 150573948 \N 1 144278838 0 f f \N \N \N \N 406297 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443183 2025-03-19 06:06:43.225 2025-03-29 22:39:49.496 \N "honestly was not consciously in orange pill mode."\n\nSometimes I think my best orange pill moments are derived from this sort of mindset. Perhaps it removes the "this person is trying to sell me something" vibe from the listeners perspective.\n\nI was in Vegas recently playing poker and wonderfully enough a small business owner, a young left-leaning guy, and myself had a really nice back and forth conversation about bitcoin that all started with talking about inflation and why it exists and how it's effecting each one of us. Both of these guys were really receptive to what i had to say because it was just a conversation that wasn't started by me and i really had no intent to orange pill. However, I was getting some serious head nods of understanding and intrigue as i spoke my piece on some potential solutions to the issues that they were both organically bringing up. I unfortunately didn't bring up the amazing case for peer to peer charity. https://example.com/ 10016 443179 443179.443183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.4494650123965 0 \N \N f 0 \N 0 138591683 0 f f \N \N \N \N 443179 \N 0 0 \N \N f \N 2025-03-26 06:19:11.041 f \N \N \N 0 0 0 0 0 0 0 434739 2025-03-12 07:49:43.499 2025-03-29 22:39:49.496 \N VPN (ProtonMail.com), and psilocybin mushroom spores (FungusHead.com). You know you want it:\n![](https://imgprxy.stacker.news/PKnT7Irm3NEj4pGMquIC5jqNy8Sp7G5NtHOvAqKsP7E/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC9iOWY4YzdlNTkyZTc2MDZmMjNhMzhhOTVjZDUxYmZmZTY4ODhiYjJlMTdmYzIzMmI0OTE1YjBlZmY2MDRkYjdmLmpwZw) https://example.com/ 1006 434727 434727.434739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3205527571692 0 \N \N f 0 \N 0 2930040 0 f f \N \N \N \N 434727 \N 0 0 \N \N f \N 2025-03-19 01:10:26.407 f \N \N \N 0 0 0 0 0 0 0 435571 2025-03-12 19:40:27.072 2025-03-29 22:39:49.497 \N https://stacker.news/items/326762 - if you want to leave your Bitcoin to your heirs https://example.com/ 10490 435327 435327.435571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7888508443004 0 \N \N f 0 \N 0 107325461 0 f f \N \N \N \N 435327 \N 0 0 \N \N f \N 2025-03-19 18:41:49.731 f \N \N \N 0 0 0 0 0 0 0 422491 2025-03-02 13:33:31.746 2025-03-29 22:39:49.497 \N Day 300 of snailposting everyday 'til BTC hits $100k.\n\n...and 100 push-ups. (20 - 20 - 20 - 20 - 20)\n\n__@_'-' https://example.com/ 1320 422399 422203.422207.422399.422491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5497541974507 0 \N \N f 3442230288 \N 28 72399974 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448315 2025-03-22 14:40:08.646 2025-03-29 22:39:49.497 \N People using these things are NOT bitcoiners. https://example.com/ 18526 448276 448202.448276.448315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.24738541125967 0 \N \N f 518089053 \N 5 178167821 0 f f \N \N \N \N 448202 \N 0 0 \N \N f \N 2025-03-29 08:42:16.382 f \N \N \N 0 0 0 0 1 0 0 422883 2025-03-02 18:56:43.329 2025-03-29 22:39:49.497 \N This is the kind of discussion I like to see. Not the tweet you link to but bitcoiners thinking about possible problems with the status quo. There are some good comments in this post (@027c352e45, @elvismercury, @DarthCoin & @Scoresby).\n\n1. We do need more clients than just bitcoin core\n2. A written spec does make sense to me for a project this important\n3. We have other clients but usage is limited\n4. We are still very early. Things can and will change but you make a strong point. https://example.com/ 5175 422871 422203.422207.422399.422491.422579.422583.422586.422871.422883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5629456927791 0 \N \N f 2280252898 \N 17 215959556 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448135 2025-03-22 12:32:03.1 2025-03-29 22:39:49.497 \N Neutrality is good. Service suppliers shouldn't get to dictate how the service is used. \n\nIt would be as absurd as the postal service deciding what you can or can't write in a letter. Or black listing certain people from even being able to send or receive mail. https://example.com/ 20479 448047 448015.448047.448135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.3897660716256 0 \N \N f 101903358 \N 2 9550637 0 f f \N \N \N \N 448015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430059 2025-03-08 19:53:26.969 2025-03-29 22:39:49.498 \N `ᕦ(ò_óˇ)` Day 19 of exercising everyday before the saloon opens.\n\n8:30AM -> snooze -> got up 9:30AM instead of 9AM as usual\n\nGetting up later than I would have gotten up if I didn't plan to get up earlier is .... always interesting.\n\nJust went on a small walk today and paused and pondered. Tomorrow, I will go to Berlin for [btc++](https://btcplusplus.dev/). I will probably use the time to write blog posts about privacy and/or SN's trust algorithm since I don't like programming on a laptop.\n\nWhat's interesting is that most hackers / people who play CTFs seem to program on laptops. They also program on laptops on competitions (for obvious reasons). I can't imagine myself doing that. It's too frustrating to not have a big screen and a proper keyboard and mouse. Also, sitting in front of a laptop on a desk (or worse, actually on your lap) doesn't feel good posture wise. https://example.com/ 1245 429924 429764.429924.430059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3199916395825 0 \N \N f 32358455 \N 1 235963334 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443337 2025-03-19 09:15:25.676 2025-03-29 22:39:49.498 \N ![](https://www.zapread.com/i/9Hi) https://example.com/ 895 443305 443295.443305.443337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0075483649815 0 \N \N f 0 \N 0 106149690 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:34:20.967 f \N \N \N 0 0 0 0 0 0 0 435367 2025-03-12 16:18:08.622 2025-03-29 22:39:49.498 \N Broadly, I want to highlight that while some of the comments here have focused on "why not just run a full node on your RPi at home", that's simply not realistic for normies. Unless we want ~everyone to be stuck using custodial providers, things like Mutiny are absolutely critical to getting people onto Bitcoin/Lightning. Mutiny is still super new, and there's been some hiccups, but the rate they've been shipping has been impressive and they've definitely fixed a boatload of issues over the past month or two.\n\n\n> LDK still have some issues with opening channels with other implementations and you can get force closing channels if you do not use so often your Mutiny node. But I understand this that is not Mutiny team fault entirely and is fixable.\n\nI want to respond a bit to this, because this implies that there's some general node compatibility issues here, but that's not really the case. These days we don't really see any issues between LDK and CLN or LDK and LND regarding general compatibility issues.\n\nMutiny has suffered from several force-close issues, sadly, but I understand they've made good progress on several of them (including contributing upstream to LDK the API tweaks they required to have the flexibility they needed for their improvements!)\n\na) Until recently LDK did not fully support anchor channels, CLN, which Mutiny's LSP currently uses, only supports anchor channels as a development feature, and Mutiny has not yet had the bandwidth to integrate anchor channels. Without anchor channels, lightning nodes to have to enforce the feerates on the channel as within a range that their feerate estimator gives them, as otherwise the channel is not enforceable on-chain. LDK is relatively strict about this, other lightning nodes have loosened their enforcement here to avoid force-closes and instead risk on-chain enforcement can fail. Of course anchor channels addresses this, but in the mean time Mutiny has contributed upstream to LDK to give more flexibility to users to let them loosen the enforcement, which I understand Mutiny now has.\n\nb) Mutiny doesn't generally have the users' private key online, and many users receive HTLCs which are set to expire soon and then they close the site and don't reopen it for a week. Sadly, at this point on startup the channel has timed out and we have an HTLC which the lightning protocol mandates we go to chain to enforce. We've chatted a bit with Mutiny about how we might go about working around the Lightning protocol's requirements, and I'm quite confident we'll figure things out, with better initial sync steps in LDK and Mutiny, and looking towards the future with things like async payments.\n\nc) Mutiny has been taking advantage of a beta feature in LDK where storage is asynchronous, as well as built a lot of infrastructure around supporting the same wallet/node running on several different machines at the same time. This is an impressive bit of engineering, but still has some kinks we're working out. https://example.com/ 19378 435314 435314.435367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.8029800802755 0 \N \N f 0 \N 0 86764706 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:42.424 f \N \N \N 0 0 0 0 0 0 0 435857 2025-03-13 03:20:24.024 2025-03-29 22:39:49.499 \N Mostly the later two. \n\nPeople here have lived with the threat of the PRC since 1949. It's a daily constant thing. Most people just throw up their hands and say "What can you do, we need to live our lives". So this is just another day in that way.\n\nThere is a group that doesn't really care and still more than that have no clue why she is coming. \n\nTwo other groups are ones that fully support her visiting and another that want America/China to stop using Taiwan as a pawn. That last one is vocal but seems to be a vast minority. https://example.com/ 1983 435847 435847.435857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2858097979604 0 \N \N f 0 \N 0 175900430 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 2025-03-20 03:58:15.553 f \N \N \N 0 0 0 0 0 0 0 430972 2025-03-09 14:42:13.139 2025-03-29 22:39:49.499 \N I used joinmarket to coinjoin my coins, and the best part was, I never paid a cent\n\nI just ran it in "market maker" mode and people paid *me* to coinjoin with *them*\n\nI also wrote a little tool [here](https://github.com/supertestnet/log-alerts) that alerts you via Telegram whenever someone pays you to coinjoin with them, and tells you how much money you made\n\nI doubt it still works but maybe I should check and make sure https://example.com/ 20775 430906 430619.430794.430906.430972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.642920156418256 0 \N \N f 201508765 \N 1 86574525 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420181 2025-02-28 14:32:58.518 2025-03-29 22:39:49.499 \N a red coldcard about a month ago was the last thing https://example.com/ 6149 420178 420178.420181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.901626527883 0 \N \N f 190847639 \N 1 188241396 0 f f \N \N \N \N 420178 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443582 2025-03-19 12:27:13.434 2025-03-29 22:39:49.491 \N I made a new account called @satsraiser. You can post any ideas you might have about future donation ideas over there. I made a bio post which explains what I'm trying to do (sort of). https://example.com/ 2224 441472 441472.443582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1598751835435 0 \N \N f 0 \N 0 173017049 0 f f \N \N \N \N 441472 \N 0 0 \N \N f \N 2025-03-26 05:44:42.327 f \N \N \N 0 0 0 0 0 0 0 435096 2025-03-12 13:10:28.928 2025-03-29 22:39:49.492 \N - Using Slashtags as an oracle with an outside smart contract project\n- Creating a Slashtags runtime so any app can use it without RN\n- Getting LDK to route better in Bitkit\n\netc, etc, etc https://example.com/ 11164 434958 434958.435096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0396836800493 0 \N \N f 0 \N 0 220970349 0 f f \N \N \N \N 434958 \N 0 0 \N \N f \N 2025-03-19 07:01:58.919 f \N \N \N 0 0 0 0 0 0 0 457842 2025-03-28 18:42:35.833 2025-03-29 22:39:49.492 \N > New pathfinding variable to give more control over time and cost tradeoff \n\nI always love features like that. Yes, give users more power.\n\nImagine, you are in a situation where internet is to break up and things gotta be fast. Or there is a DDoS and you don't care if you order something right now or it goes through a little later.\n\nThis is underrated. https://example.com/ 2780 457825 457771.457823.457825.457842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8788037951829 0 \N \N f 388106069 \N 3 36924793 0 f f \N \N \N \N 457771 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434689 2025-03-12 06:50:53.023 2025-03-29 22:39:49.491 \N Kevin Rooke's interview with Alex Leishman. I would rather listen to Alex than ANY other exchange CEO.\nhttps://fountain.fm/episode/fGujz7KzjYIG9RIzfPgk https://example.com/ 678 434333 434317.434333.434689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1361623996701 0 \N \N f 0 \N 0 31588176 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 2025-03-19 03:33:58.125 f \N \N \N 0 0 0 0 0 0 0 430277 2025-03-09 02:56:28.751 2025-03-29 22:39:49.492 \N There are few things more depressing in life than when you're the old guy who gets offered a seat on a bus or train. I'd rather stand. Of course, I appreciate the gesture, so I show gratitude. https://example.com/ 20745 429628 429628.430277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4904721344788 0 \N \N f 0 \N 0 148732933 0 f f \N \N \N \N 429628 \N 0 0 \N \N f \N 2025-03-20 09:51:26.302 f \N \N \N 0 0 0 0 0 0 0 403762 2025-02-15 07:25:43.357 2025-03-29 22:39:49.492 \N I know there are many good authors here, but are not so active.\nI would like to see more writing from them.\n\nI always like to read here from: @TonyGiorgio , @CarlBMenger, @fanis, @petertodd, @theindranetworkprotocol and some others. They bring very interesting material to Bitcoin world and worth paying attention to what they say. https://example.com/ 782 403755 402904.403694.403750.403754.403755.403762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0207259942249 0 \N \N f 1652187354 \N 13 74704422 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436215 2025-03-13 11:42:35.013 2025-03-29 22:39:49.493 \N ![We all got to believe in something](https://i.postimg.cc/L8jLjXhb/Fk-Ggl0-DX0-AAt-o-J.jpg) https://example.com/ 19494 436038 435908.435974.436038.436215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6631751761358 0 \N \N f 228739014 \N 1 70027134 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 2025-03-20 10:41:34.429 f \N \N \N 0 0 0 0 1 0 0 436053 2025-03-13 09:21:37.857 2025-03-29 22:39:49.493 \N I can only speak for our company, but we purposefully designed the BitBox02 to look like a regular USB flashdrive or a microSD card reader. It doesn't have physical buttons on it and instead uses capacitive touch sensors on the side. There's a small logo on the front, but that could be anything really. The screen is an OLED behind tinted plastic so you can't tell that it's a screen really.\n\n![Photo of the BitBox02.](https://shiftcrypto.ch/assets/images/products/bitbox02-floating-4ca287a2462dc6962b98c510cc9b7909.png)\n\nI've walked through TSA multiple times with a bunch of them in my backpack and nobody has ever asked me about it.\n\n https://example.com/ 21647 436028 436028.436053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.15499797613745 0 \N \N f 1151236955 \N 9 246960838 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:52:54.281 f \N \N \N 0 0 0 0 2 0 0 403213 2025-02-14 14:46:51.346 2025-03-29 22:39:49.493 \N Completely unsuccessful at being unsuccessful maybe. \n\nI would love an econ sub. If there is one thing I have worse hot takes on than sports, it's macroeconomics. \n\nThe barbarians are at the gate @k00b https://example.com/ 11038 403063 403063.403213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8931548953659 0 \N \N f 602334161 \N 5 188752780 0 f f \N \N \N \N 403063 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428238 2025-03-07 01:10:26.064 2025-03-29 22:39:49.493 \N They don't. From their point of view segwit outputs are weird scripts that anyone can satisfy – anyone can spend outputs.\n\nThat's basically how all soft forks work: we tighten the rules on something that previously didn't really have rules. Eg my own soft fork, CheckLockTimeVerify, reused NOP3, which previously did nothing at all. https://example.com/ 8505 428236 428236.428238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.06141941809145 0 \N \N f 314808005 \N 2 106783824 0 f f \N \N \N \N 428236 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443294 2025-03-19 08:45:59.602 2025-03-29 22:39:49.493 \N I like nearly all of those ideas and want to begin experimenting with them. \n\nThe biggest problem we continue to have is prioritizing stuff because until we have more programmers, every feature competes with every other.\n\nMy SN priorities atm:\n1. logged in stackers' feeds are private property\n\t- ranking specific to you, mutes, and maybe follows\n\t- required for (2)\n2. user generated subs where rather than having mods we have economic planners \n\t- pay to create subs\n\t- get paid by people posting in them like SN does ... stackers can run subs as a business ... maybe\n3. optional non-custodial wallet integration\n\nThere are also some other ideas we are discussing like advertising treasure hunts for getting stackers more sats.\n\n@ekzyis makes his own priorities mostly and is working on "liveness" - realtime updates for notifications, comment threads, item stats etc.\n\nI'll be looking to hire another programmer soon. I just need to sit down and write up the job post and prepare to for The Great Application Sift. https://example.com/ 4633 443288 443288.443294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4921684240374 0 \N \N f 0 \N 0 150704869 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N 2025-03-26 03:09:08.108 f \N \N \N 0 0 0 0 0 0 0 435326 2025-03-12 15:41:44.166 2025-03-29 22:39:49.494 \N Humans can’t walk in a straight line without looking at something.\n![](https://m.stacker.news/61721)\n\nDid you know that humans can’t walk in a straight line without a visual point?\n\nIf blindfolded, we gradually walk in a circle.\n\nIt seems like our brain needs a reference point to keep us on track! https://example.com/ 20965 435229 434642.435229.435326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2006497312951 0 \N \N f 0 \N 0 204815377 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 09:28:45.41 f \N \N \N 0 0 0 0 0 0 0 444866 2025-03-20 09:41:59.866 2025-03-29 22:39:49.494 \N Strike is getting into unicorn territory with this raise (they may already be there). \n\nBullish for Lightning. https://example.com/ 15526 444755 444755.444866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1312652616022 0 \N \N f 0 \N 0 99493466 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 2025-03-29 08:44:45.802 f \N \N \N 0 0 0 0 0 0 0 446941 2025-03-21 14:42:10.001 2025-03-29 22:39:49.495 \N Channels continue to operate trustlessly during the splice confirmation. You just can't take advantage of the new capacity of a splice-in until it confirms(unless you're doing 0-conf with LSP). https://example.com/ 8045 446774 446774.446941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0098415245214 0 \N \N f 230221673 \N 3 151689902 0 f f \N \N \N \N 446774 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 457823 2025-03-28 18:23:52.107 2025-03-29 22:39:49.496 \N ![](https://m.stacker.news/56171.jpeg) https://example.com/ 21383 457771 457771.457823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4439512014788 0 \N \N f 799126323 \N 7 134365383 0 f f \N \N \N \N 457771 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421847 2025-03-02 03:30:55.78 2025-03-29 22:39:49.496 \N I've been working on FOSS for about 5y now. I was on the shitcoin world until recently, but now I'm a grantee with Spiral and my experience towards a grant consisted of several factors:\n\n- Joining the Discord server\n- Joining SRI team calls\n- Following tutorials from stratumprotocol.org\n- Exploring codebase on github\n- Exploring issues and PRs on github\n- Reading the specs, and writing material to summarize my learnings\n\nThese items above helped me get context on the team activity. It is important not only to be willing to help, but also to understand what kind of help is needed, and what are the current priorities.\n\nEventually I saw SteveLee/moneyball mention on SV2 Discord that the SRI team needed experienced Rust devs to join the team and Spiral was willing to give out more grants. So I reached out to him and started talking. Some key points of our interaction were me sharing my CV and him telling me to join some calls with @pavlenex and @Fi3 to agree on what the project's roadmap needed more hands and how I could commit myself to helping it. https://example.com/ 21214 421722 421567.421722.421847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.116629045262 0 \N \N f 146229870 \N 1 210115786 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434349 2025-03-11 20:02:44.399 2025-03-29 22:39:49.496 \N Gamers of stacker news, I'm excited to introduce a project I've been working on called Satlantis. Its a minecraft server with a full bitcoin economy, including ASICs, lightning withdraws/deposits, and even hashrate pooling with your clan. We'll be giving out 10 million sats to players over the next 10 weeks.\n\nYou can learn more on our discord here: https://discord.gg/CqyGY339xp\n\nHope to see you all in there! https://example.com/ 14404 434278 434278.434349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.72494370927845 0 \N \N f 0 \N 0 72413936 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 19:00:44.868 f \N \N \N 0 0 0 0 0 0 0 436409 2025-03-13 14:38:03.331 2025-03-29 22:39:49.497 \N ![](https://m.stacker.news/67021) https://example.com/ 20715 436258 436258.436409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5206314831517 0 \N \N f 236444438 \N 1 23634347 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 2025-03-20 08:14:40.238 f \N \N \N 0 0 0 0 1 0 0 422961 2025-03-02 20:08:49.747 2025-03-29 22:39:49.497 \N The person voluntarily engaging in the transaction decides if it has value, financial or otherwise. Period. https://example.com/ 17082 422498 422483.422498.422961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.93714362091298 0 \N \N f 171830141 \N 2 197919690 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424195 2025-03-03 21:46:19.811 2025-03-29 22:39:49.497 \N I'm not a fan of Tesla's vehicles, but their batteries are seriously impressive. I love the innovation they've brought to cell design, chemistry, thermal management, and even the BMS. The last time I looked into it, they were leagues ahead of the competition on several fronts. https://example.com/ 10291 423663 423663.424195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.6955647989615 0 \N \N f 206718833 \N 3 240513449 0 f f \N \N \N \N 423663 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435966 2025-03-13 07:09:59.273 2025-03-29 22:39:49.497 \N If the middleman can intercept the content provider's invoice, he can produce one like it with the same payment hash and a slightly higher amount, then display that to the payer. When the payer pays it, the middleman can only settle the invoice if he first pays the content provider and gets his preimage. That's atomic and does not require direct channels. https://example.com/ 4027 435905 435905.435966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.27514412685514 0 \N \N f 30470021 \N 1 199826555 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 2025-03-20 03:54:42.576 f \N \N \N 0 0 0 0 1 0 0 448211 2025-03-22 13:37:19.67 2025-03-29 22:39:49.498 \N Decentralized inheritance is a big problem to tackle. Keep exploring this!\n\nAs for the stabilized Bitcoin: I think it's 50-50 that the bounty gets claimed by the end of the year. https://example.com/ 18321 448208 448202.448208.448211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.80568962450062 0 \N \N f 65986386 \N 1 105890297 0 f f \N \N \N \N 448202 \N 0 0 \N \N f \N 2025-03-29 08:42:18.81 f \N \N \N 0 0 0 0 1 0 0 430895 2025-03-09 13:47:30.454 2025-03-29 22:39:49.498 \N I think maybe an addition at the end is if you turn it back towards the audience. How have they been building without thinking about these things? Why is it that people shouldn't use their apps? Or maybe aren't actually using it for specific reasons.\n\nSpeaking to an audience of builders, they (I) need to be asking these kinds of questions every day. https://example.com/ 2329 430892 430892.430895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2474152530867 0 \N \N f 554186834 \N 4 101501077 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435654 2025-03-12 21:12:44.588 2025-03-29 22:39:49.499 \N Great post.\n\nLot's of people were myopic, and never asked: *why would the current President, who chooses the SEC chair, magically replace Gensler with a person using a monkey avatar? I never understood the calls for Gensler's head. We've lost nothing in the current crypto regulation landscape except a shitload of bad actors, from Mashinky and Fried, to CZ and Bitzlato. Hangman Gensler has quite a few victories to hang his hat on. Most products showed they had no value, and even less decentralization; *cease and desist* and a phone call proved to be viable enforcement strategies by the S.E.C. And If they had no decentralization, they were companies, that should be regulated like every other company. \n\nNic bet the fast-looking horses, belly-flopped amongst his VC circle, and burned his reputation amongst a nasty twitterX base he helped build, who he knew loved tar and feathers. Now he's lashing out with big words, long denials, and misplaced blame. The denial phase still. How many original bitcoiners have I seen go down like this? Richard Heart was one of the best (most don't know this) before his satanic fall into HEX shitcoinery. \n\nI think Nic has a lot of valuable things to say still, he just needs to grow up. Would love to read some thoughtful stuff by him. And that nasty X crowd... he might need to do what Andreas Antonopolous (prolly spelled that wrong) did. Leave. Help build an Umbrel. Write an O'reilly. \n\njmho\n\n https://example.com/ 19117 435652 435046.435135.435162.435214.435220.435235.435649.435652.435654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7612647227684 0 \N \N f 190987557 \N 1 75056034 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:00:22.454 f \N \N \N 0 0 0 0 1 0 0 434338 2025-03-11 19:49:07.431 2025-03-29 22:39:49.499 \N [BitGo Signs Letter of Intent to Acquire Prime Trust](https://blog.bitgo.com/bitgo-signs-letter-of-intent-to-acquire-prime-trust-to-expand-digital-asset-and-fintech-b1868391784a) An article written by BitGo https://example.com/ 2000 434243 434243.434338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.91393518718493 0 \N \N f 29163107 \N 1 201944265 0 f f \N \N \N \N 434243 \N 0 0 \N \N f \N 2025-03-19 01:41:12.352 f \N \N \N 0 0 0 0 1 0 0 433945 2025-03-11 14:26:45.981 2025-03-29 22:39:49.499 \N ![50Sats](https://i.postimg.cc/QdZhsMP9/D70-FFE7-A-2-F5-C-454-E-857-A-FA9-F0-EB7-A996.jpg) https://example.com/ 13921 433828 433828.433945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5120751289327 0 \N \N f 0 \N 0 19367857 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-18 16:29:44.084 f \N \N \N 0 0 0 0 0 0 0 434326 2025-03-11 19:41:16.992 2025-03-29 22:39:49.5 \N https://imgprxy.stacker.news/FwuLZngLMPZNXE2rUHyBZTdQalQ9C_6XkqRkGsK4pl4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9ZZjZDUnRyLzU3NWNiYzM1LTQ0MmItNDQyYS1hMDgwLWY3YWNlN2ViZGNlNy5qcGc https://example.com/ 9036 434309 434278.434309.434326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.246507286581 0 \N \N f 64227762 \N 1 33163197 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421167 2025-03-01 13:13:29.613 2025-03-29 22:39:49.5 \N It becomes all encompassing. Listen to some music again. After about 6 months of non stop podcast when I went back to just listening to music in the car,it was glorious, like finding the music all over again.\n\nHonest question how long have you been around?\nThe 'i gotta learn everything, and listen to everything and read everything phase" lasted about 24 months for me. \n\nI used to go to sleep with a chart tab open next to the Netflix I was watching. I used to check price as soon as I woke up, or if I woke in the middle of the night. \nI also used to want to tell EVERYONE about Bitcoin. \n\nBasically, Over time you realize you CANT learn everything, between mining, game theory, comp sci, psychology, economics, node running, there are so many aspects to it. \n\nFind one and dive in. Focus that loose 'i need to read more, I need to do x more' energy into a certain aspect. https://example.com/ 15690 421163 420635.420987.421157.421163.421167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8927468875934 0 \N \N f 460554078 \N 3 107234342 0 f f \N \N \N \N 420635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424011 2025-03-03 19:18:19.929 2025-03-29 22:39:49.501 \N ![](https://nostr.build/i/nostr.build_1caeb444f28fa0ddf7b751f355755e0d1b8d427a52c520d44a9791d4bfbf7a77.png) https://example.com/ 21044 423804 423667.423747.423777.423804.424011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.05566942200221 0 \N \N f 549008662 \N 3 90838951 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448713 2025-03-22 19:57:55.013 2025-03-29 22:39:49.501 \N Hi Alex, thanks for doing this AMA!\n\nHad two questions.\n\nFirst question is regarding HRF funding and how it allocates to bitcoin developers. What are some of the requirements needed to apply? \n\nSecond question, Have you ever thought of letting a camera crew follow you and capture the conversations and places you go to? Have strong inclination this would be a great documentary series.\n\n https://example.com/ 6419 448695 448527.448695.448713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.007114914001 0 \N \N f 443373057 \N 3 115942755 0 f f \N \N \N \N 448527 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436375 2025-03-13 14:06:40.541 2025-03-29 22:39:49.502 \N I think price falls tend to be very steep during economic corrections, while rises tend to be gradual and drawn out.\n\nDuring the last housing crisis, there were 70%+ price declines in some markets. Keep your powder dry. https://example.com/ 10586 436362 436362.436375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.46747231585974 0 \N \N f 178995270 \N 2 52172941 0 f f \N \N \N \N 436362 \N 0 0 \N \N f \N 2025-03-20 07:25:36.872 f \N \N \N 0 0 0 0 1 0 0 454877 2025-03-26 16:04:55.359 2025-03-29 22:39:49.502 \N What kind solutions/improvements need to be developed for lightning to make it usable in areas with a bad internet infrastructure? Where should the focus be, the costumer of the merchant?\n\nThings that are in development are LNURL NFC payment cards and a offline POS terminals. Are this developments in the right direction, or do you think there are important specs that are not being taking in to account at this moment?\n https://example.com/ 6058 454863 454863.454877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5434087761675 0 \N \N f 825816507 \N 4 39323879 0 f f \N \N \N \N 454863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443731 2025-03-19 13:45:14.733 2025-03-29 22:39:49.502 \N Chicks https://example.com/ 1319 443715 443577.443651.443711.443715.443731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2793005627235 0 \N \N f 941859741 \N 8 8646641 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448781 2025-03-22 21:40:03.812 2025-03-29 22:39:49.502 \N It's always darkest before the snail https://example.com/ 20586 448518 447453.448518.448781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4083158877703 0 \N \N f 244865058 \N 1 90946365 0 f f \N \N \N \N 447453 \N 0 0 \N \N f \N 2025-03-29 15:07:27.052 f \N \N \N 0 0 0 0 1 0 0 415567 2025-02-24 21:48:39.465 2025-03-29 22:39:49.502 \N I’ve made some progress on catching up on BIP reviews. I’ve already reviewed the following five this week:\n\n- Asynchronous Payjoin\n- OP_PAIRCOMMIT\n- Discrete Log Equality Proots\n- QuBit—P2QRH spending rules\n- Sending Silent Payments in PSBTs\n\nI also hosted a very short [Bitcoin Optech Recap](https://bitcoinops.org/en/podcast/) yesterday. The rest of the week, I will work on some Bitcoin Core reviews, preparation for a talk and a workshop session next week, and touching up my own pull request. https://example.com/ 721 415020 415012.415020.415567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.7261590183945 0 \N \N f 68687444 \N 1 160669080 0 f f \N \N \N \N 415012 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402676 2025-02-13 22:42:39.676 2025-03-29 22:39:49.503 \N **1 - "Bookend" the day.** Reading first thing in the morning (especially before going online in any fashion) and then reading at night before sleep.\n\n**2 - Decide how long you'll read for, set a timer, and read until it beeps.** Even if you're getting distracted and feeling the pull to go do something else, looking at the timer and knowing you've got just a few more minutes can help you resist that pull. \n\nWhen you get used to that you'll also feel less of those little distracting thoughts. You train your mind that it's reading time, and all the things will still be there waiting for you when the timer goes off.\n\n**3 - Have multiple books going at once, ideally different genres and topics.** I recently started this and it's been fantastic. If you encounter resistance reading something because you're just not in the right mental space, there's no need to force it. Just pop over to another book which feels smoother in that moment.\n\nAlso if your day is busy like you mentioned, some books are more suitable for short sessions than others, so it helps to have at least one of those on hand. If you have 5 or 10 minutes to spare you can more easily pop in and out of a fiction book than something like, "Introduction to General Systems Thinking." Doesn't have to be fiction though, some books just lend themselves better to short breaks throughout the day.\n\n**4 - Highlighting and rereading.** I want to digest the material and maybe hold it up for scrutiny - to decide how, why, if and where it fits in to the knowledge and models in my head. But I don't want to get bogged down every other page in analysis or detailed note taking. \n\nWhen I find a passage that deserves some attention, I'll just highlight it or take a quick shorthand note and keep moving. Because I've built the habit of circling back to these highlights and doing a deeper read later, I trust that I can safely move on. https://example.com/ 17011 402042 400943.401183.401314.401595.402042.402676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.242344492286 0 \N \N f 187999171 \N 1 123385090 0 f f \N \N \N \N 400943 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423977 2025-03-03 18:49:58.514 2025-03-29 22:39:49.503 \N 1) Organized monthly local Bitcoin meetup and spent there some sats for drinks.\n\n2) Coded, tested, reviewed and merged some GitHub pull requests. https://example.com/ 5359 423971 423667.423689.423899.423956.423958.423971.423977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4475111871977 0 \N \N f 2148973828 \N 19 224778715 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443953 2025-03-19 15:35:21.624 2025-03-29 22:39:49.504 \N So many. I was really worried at first and I wasn't sure if it was going to be temporary or forever, but I consider it one of the best things I have ever done. I didn't like the person I was online, I didn't consider that me. But eventually you are your actions no matter how much that truth hurts or you fight it. The personal introspection aspects of it was reason enough to be glad I did it. Other than that, the endless breaking news cycle combined with overall anger and hate did not do play well with me mentally. I keep joking with @k00b that I would love to see a stacker.olds that only shows the top posts after 3 days would be really interesting to me. That way I don't get sucked into the latest, breaking news knee jerk reactions.\n\nIf you're curious more about my thoughts on leaving twitter, I wrote a blog about it here: https://abytesjourney.com/leaving-twitter/ . I really enjoyed writing that so I recommend reading if you're curious and I would love to hear thoughts! https://example.com/ 17046 443919 443919.443953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1136623782566 0 \N \N f 180505210 \N 1 172659250 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449881 2025-03-23 15:40:23.74 2025-03-29 22:39:49.504 \N @sn I purpose another weekly or daily thread:\n\n### What did you bought today with bitcoin.\n\nLet's show to the world that spending bitcoin is so fun and easy.\n\nI go first: today I bought a big refill of beers with sats.\n**[![btc-order.jpg](https://imgprxy.stacker.news/hGkBUC0jdz-t230V671-ssrTFJsI7h1hyH0ty5wBHfs/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvWTI4NGp2cjIvYnRjLW9yZGVyLmpwZw)](https://postimg.cc/LhY4b6gG)** https://example.com/ 7891 449630 449601.449630.449881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.0091973154813 0 \N \N f 775146208 \N 8 92961361 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422918 2025-03-02 19:26:25.897 2025-03-29 22:39:49.492 \N I'm here right now and I can confirm what you say\n\nhttps://snort.social/p/npub1freed0m9ns94aq6kk04x2hfz8eedfrvkxpp9pcsywhmzzkqy6a7q8pckr9\n\nHowever, I don't think that ~20% BTC adoption should be viewed as a failure, quite the opposite.\n\nMaybe not everywhere accepts it, and true, waiters will actually try and say they don't accept it when they do, but it IS possible to live just on Bitcoin in El Salvador. I'm doing it right now.\n\nhttps://btcmap.org -> this is pretty up to date\n\nBitcoin is legal tender in El Salvador and that's a big deal, perhaps adoption is slower than we would have liked, but it is definitely happening...\n\nIt's the same situation in Boracay, the marketing is definitely not the reality. It's down to people like us though, to change that. https://example.com/ 9307 422911 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.645412522001934 0 \N \N f 1442993943 \N 9 159228359 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 443470 2025-03-19 11:23:46.879 2025-03-29 22:39:49.492 \N I was just messing around with BTC Map and discovered that there's a deli about 10 miles away that accepts bitcoin. I verified this with a phone call. Looks like I'm going to have to plan a lunch excursion. I intend to use this app more. It's also compatible with the open map project, so my organic app will get me there. https://example.com/ 628 443231 442751.443231.443470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5614837652318 0 \N \N f 139241937 \N 1 52284302 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 2025-03-26 04:49:21.968 f \N \N \N 0 0 0 0 1 0 0 444116 2025-03-19 17:14:43.188 2025-03-29 22:39:49.493 \N I don't think fiat is the source of market-culture failure.\n\nMarket culture failure is the result of incessant subversion.\n\nBack in 2001 I was reading to much Chomsky, Herman and Zinn. I grew to hate the sight of the American flag. These three "academics" I'm now learning, were really just the pointy end of the spear Marxist that had been working behind the scenes to subvert the very market culture that allowed their crackpottery to flourish.\n\nIt's a phenomena best summarized by Propagandi's lyrics:\n\n"And yes I recognize the irony,\nthat the system I oppose affords me the luxury\nOf biting the hand that feed.\n\n"That's exactly why, privileged fucks like me\nshould feel obliged to whine and kick and scream\nuntil everyone has everything they need."\n\nPunk rock is the evangelical arm of the Marxist subversion machine. It's industrial engine is the university system. It's produced a cultural monster of gnostic utopianism.\n\nThen, in 2010 I started making frequent trips to the United States. You know what broke the spell for me? Root beer flavored milk.\n\nThat's right, the free market had produced root beer flavored milk. Along with a whole lot of other goods and services that were not available or were incredibly expensive just 8, 10, 12 or 25 miles north of the US/Canada boarder.\n\nYou have no idea the impact the artificial scarcity of mixed economies does to culture. Canada neither has bounty, nor does it have culture. Everything we get/develop is a second rate copy of something that comes from the USA.\n\nLet Trudeau's hell-hole be a lesson to you all, and a warning. Grab hold of the 'Merican spirit and identity - embodied in the symbol of your great flag - before its lost forever.\n\n(seriously, I once bought 48 eggs from a store in 'Merica for less than I pay for a dozen in Canada. Unbeknownst to me, I wasn't technically allowed to bring that many eggs back over the Iron 49th parallel). https://example.com/ 2640 443836 443836.444116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6978468480802 0 \N \N f 91865708 \N 1 9353127 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423938 2025-03-03 18:16:00.397 2025-03-29 22:39:49.493 \N https://imgprxy.stacker.news/MYHYjOkNfAUrss0b8QcBxJ7PpQhK4TWcAZpLGOG808s/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0Y2MlJLbU1YTUFBc1FmZj9mb3JtYXQ9d2VicCZuYW1lPXNtYWxs https://example.com/ 11328 423831 423667.423831.423938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9916366956752 0 \N \N f 149208829 \N 3 191856006 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435152 2025-03-12 13:55:52.882 2025-03-29 22:39:49.493 \N The Melville Deli in Melville, New York. Located in Suffolk County on Long Island. It is the only business that shows up on BTC Map for Long Island. I am about to publish a post about my experience. They have a web site. I am driving and can't google the link right now, but you can find them. Great food and good prices https://example.com/ 688 435046 435046.435152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6827236019076 0 \N \N f 76163322 \N 1 158063957 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 07:25:31.243 f \N \N \N 0 0 0 0 1 0 0 454235 2025-03-26 10:10:02.575 2025-03-29 22:39:49.493 \N **Sloths can hold their breath longer than dolphins**\n\n[Source](https://dolphinxpert.com/can-sloths-hold-their-breath-longer-than-dolphins/) https://example.com/ 12220 454221 454221.454235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.94814857164381 0 \N \N f 193494884 \N 4 329451 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436410 2025-03-13 14:38:11.279 2025-03-29 22:39:49.494 \N If you're wading through recent, I agree that the quality isn't great.\n\n@benthecarman recommended we create a "cowboys only" mode so you only see stuff from cowboys.\n\nA variation I like on this: an economic threshold, eg "only show me posts that have at least 100 sats invested in them, either by post costs, zapping, or otherwise." https://example.com/ 1354 436241 436241.436410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.980135666432993 0 \N \N f 137675022 \N 1 122772337 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:40:22.87 f \N \N \N 0 0 0 0 1 0 0 410624 2025-02-20 15:16:10.61 2025-03-29 22:39:49.494 \N Hey stackers, if you missed it yesterday, part 4 of the [Broken Money book club](https://stacker.news/items/317108) was unleashed. \n\nI left a bunch of discussion questions quite late in the day, so if you're interested in the topic, have another peek. There's a few that I really hoped that someone would bite on so I'd have someone to talk to about them. The loneliness of the long-distance bitcoiner :)\n\nAnd also, if the super generous stacker who zapped the shit out of this is reading, it really is much appreciated, every time. The motivational power of knowing that people care about your efforts cannot be overstated. Each time this happens I think about how to bring the same energy to the rest of my life, who I could encourage. Gracias, muy amable. https://example.com/ 7809 410269 410269.410624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5761071349342 0 \N \N f 177494489 \N 1 143867697 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410147 2025-02-20 09:43:13.769 2025-03-29 22:39:49.494 \N Why break a perfectly working application? https://example.com/ 13622 409591 409591.410147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7654467586928 0 \N \N f 163822659 \N 1 200155528 0 f f \N \N \N \N 409591 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435583 2025-03-12 19:55:34.861 2025-03-29 22:39:49.494 \N My response: https://nostr.com/nevent1qqs2d5q8f9c4tmzvrzg47d0gn7pdhhzjtc45d7dpp5x22v8zesf8pcgpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgcwaehxw309ahx7um5wghxvmt59emkj73wvf5h5tcpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsz8nhwden5te0dehhxarj94c82c3wwajkcmr0wfjx2u3wdejhgtcpzdmhxue69uhk7enxvd5xz6tw9ec82c30qy88wumn8ghj7mn0wvhxcmmv9uq3jamnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kz7qgcwaehxw309aex2mrp0yhxxatjwfjkuapwveukjtcpzpmhxue69uhhxmmvda3k7tnwdshsz8thwden5te0dehhxarj9e3xjarrda5kuetj9eek7cmfv9kz7t603cy https://example.com/ 19992 435497 435497.435583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8300668469209 0 \N \N f 98083841 \N 1 31639552 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 2025-03-19 14:04:06.708 f \N \N \N 0 0 0 0 1 0 0 435149 2025-03-12 13:53:16.566 2025-03-29 22:39:49.494 \N From my 13 year old: A day on Venus is longer than a year on Venus. https://example.com/ 4166 435132 435046.435132.435149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3251581090279 0 \N \N f 206058922 \N 2 216431754 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 07:27:21.923 f \N \N \N 0 0 0 0 1 0 0 456590 2025-03-27 17:32:00.228 2025-03-29 22:39:49.494 \N ![](https://m.stacker.news/60015) https://example.com/ 20861 456239 455649.456239.456590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8897664998769 0 \N \N f 234546498 \N 1 216340488 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444447 2025-03-19 22:08:15.406 2025-03-29 22:39:49.494 \N This was the hackathon project Alex Lewin and I submitted for btc++ last week\n\nWe made an atomic swap service similar to lnproxy.org, except for bolt12-to-bolt11 instead of bolt11-to-bolt11\n\nAfter the hackathon I turned off my server (it was running on my laptop) which is why the frontend doesn't do anything\n\nThe frontend is hosted on github pages so it doesn't need my help to start running, but it can't do anything without my backend (anyone can run the backend though\n\nThe server code is here: https://github.com/supertestnet/weld\n\nThe frontend code is here: https://github.com/alexlwn123/lightning-welder) https://example.com/ 1286 444408 444408.444447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7389524352356 0 \N \N f 112951356 \N 1 155828685 0 f f \N \N \N \N 444408 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435287 2025-03-12 15:20:02.878 2025-03-29 22:39:49.495 \N [Silent.Link](https://silent.link/) works globally... whenever there's coverage https://example.com/ 8498 435154 435154.435287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6679982483765 0 \N \N f 170533551 \N 3 21141681 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 08:44:22.056 f \N \N \N 0 0 0 0 2 0 0 401595 2025-02-13 08:03:12.367 2025-03-29 22:39:49.495 \N Jimmy you are like Lyn or Guy and other bitcoin influencers. \nYou have one trick and you keep pounding on it for everything.\nNot a critique but an observation.\n\nSometimes a cigar is just a cigar.\nTo a hammer everything is a nail.\n\nIf what you said was true than it would impact all sub-cultures within a fiat society. It does not.\n\nThe Amish and Mohammedans are popping out kids and doubling their population every generation.\n\nWhy ?\n\n**##Women's Rights**\n\nWomen do not want to have children. Who would. It's messy, it messes up your body.\n\nWe now educate and empower the reproductive class. We also throw these same beings into war. Our culture is suicidal. \n\nYou are correct in a round about way. Womens rights. The welfare state, the police state all allow women to exist without men, and this is all payed for by unsound money, but the trend started way before 1971. \n\nIf you fixed the money tomorrow, for instance, if the whole world was based on Bitcoin and not money printing , but the state kept enforcing and subsidizing women , the birth rate would still be low. Educated women have below replacement levels of children. This is true across every culture.\n\nWomen vote for and use the most welfare of any sex.\n\nThe only other way to keep the rights of women and also maintain populations, would be cloning. https://example.com/ 6030 401314 400943.401183.401314.401595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4478033350089 0 \N \N f 411965802 \N 3 224678146 0 f f \N \N \N \N 400943 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457709 2025-03-28 16:40:09.412 2025-03-29 22:39:49.501 \N Has anyone else noticed an increase in the number of posts and quality of content over the past few weeks? SN has always been a place with high signal, but it has been chock full of great content and more users recently. This improvement does seem to correspond to the increase in bitcoin's price. I thought the coming bull market would cause an increase in newbie posts and spammy content, but instead the overall quality of the site seems to have improved. https://example.com/ 21247 457655 457655.457709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.433051957209 0 \N \N f 236150498 \N 1 9107498 0 f f \N \N \N \N 457655 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423596 2025-03-03 13:29:17.128 2025-03-29 22:39:49.501 \N Thank you for your questions! \n\n**How cold does it get where you are?**\nI am in the north east of the USA. The coldest it gets during the winter is single digits at the worst. Most times around 20s. (Freedom units)\n\n**Do you have good insulation?**\nNope! This house has none. The rooms I have renovated have a bit but the rest of the house has nothing haha.\n\n**What kind of ambient temperatures are you getting in any given room with a radiator?** \nSince the heat is essentially free/very cheap, I leave the heat up higher than normal, maybe around 73 on the first floor. I have to exhaust the heat at night to sleep since it gets as hot as 75-80 degrees upstairs. \n\n**Are you getting enough sats to reduce your electricity bill and if so by how much e.g. 5%, 50%?**\n\nThe sats stacked fluctuate around break even or +/- 10% profit loss. But remember from the post, as long as I am losing the equivalent or less dollars than the old oil bill, it is "positive" to me. If it's break even, then its free heat. If its less then its really cheap heat. And if its positive then I am being paid to heat and shower :)\n\nYour questions will make it into the next version of this writeup, thank you! https://example.com/ 1006 423594 423574.423594.423596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9548455530414 0 \N \N f 236624770 \N 2 20956222 0 f f \N \N \N \N 423574 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442738 2025-03-18 19:13:59.953 2025-03-29 22:39:49.501 \N Haha seems like bounties are the new "PRs welcome" https://example.com/ 11967 442729 441238.442729.442738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9111047955377 0 \N \N f 11335406 \N 1 231681940 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 395841 2025-02-08 20:40:32.843 2025-03-29 22:39:49.502 \N The moment you mention wedding, the price of anything goes up. https://example.com/ 21356 395604 395348.395604.395841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3937027839126 0 \N \N f 114197969 \N 1 68423082 0 f f \N \N \N \N 395348 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423670 2025-03-03 14:25:27.508 2025-03-29 22:39:49.503 \N Day 189 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 1596 423629 423629.423670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1841131527716 0 \N \N f 112980968 \N 2 183256672 0 f f \N \N \N \N 423629 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457957 2025-03-28 20:12:16.94 2025-03-29 22:39:49.504 \N Been very busy recently replicating the Indranet architecture to the guy who's been paying me to design and build it. It's been great for me in terms of helping delineate the core principles of the design and to spot some possible design flaws, as well.\n\nThe gossip system is very close to finished and the client tunnel plus the testnet mock of the LN infrastructure that the peer controls for receiving and making payments for relay service are the only main larger tasks between here and the first multi-machine testnet, most likely at first only on LAN but the libp2p library makes it easy to put it on the internet, and sort out most of the port opening stuff for NATed nodes. https://example.com/ 20275 457546 457293.457432.457546.457957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.53894608001907 0 \N \N f 150386013 \N 1 151039388 0 f f \N \N \N \N 457293 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421116 2025-03-01 12:09:10.079 2025-03-29 22:39:49.504 \N If SN will have more features and UI for long form writers, blogs, guides etc I would be glad to switch from substack to SN.\n\nBut we are long way to reach that phase. SN is still a baby. We need to take care of it and raise it in the right way, slowly. https://example.com/ 673 420055 420055.421116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6370005840829 0 \N \N f 162121249 \N 2 181026284 0 f f \N \N \N \N 420055 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406078 2025-02-17 03:01:49.767 2025-03-29 22:39:49.504 \N Day 267 of snailposting everyday 'til BTC hits $100k.\n\n...and 67 push-ups. (20 - 20 - 20 - 7)\n\n__@_'-' https://example.com/ 20198 405794 405466.405794.406078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7006733343961 0 \N \N f 415560726 \N 2 225018470 0 f f \N \N \N \N 405466 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415107 2025-02-24 14:23:51.978 2025-03-29 22:39:49.503 \N They don't accept Bitcoin lol https://example.com/ 1802 415104 414755.415076.415098.415104.415107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8089695289689 0 \N \N f 561213781 \N 4 222764893 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 453420 2025-03-25 18:58:25.208 2025-03-29 22:39:49.504 \N Appreciate all the hard work and thoughtfulness with the security considerations file. I'm just still unsure that it's wise to be doing this. The attack vector for crypto SGX honeypots are high. At the end of the day, you have to extract the seed in order to present it to the user, and do occasional SGX server migrations which will require this seed again to provision.\n\nIs this all so that you can offer offline receives for consumers? Because this is being worked on as far as the concept of Lightning goes. \n\nOr do you see this as something you get enterprise customers with that already feel confident in the SGX model, whether that is wise or not? https://example.com/ 2293 452856 335484.335562.335591.335690.335721.335729.335791.336308.336318.336322.452856.453420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9131794355798 0 \N \N f 787013913 \N 5 126050047 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 426778 2025-03-05 20:32:13.489 2025-03-29 22:39:49.504 \N Religion.\n\n*Edit: tbf it's a spectrum, and some religions and associated things are outright scams, but I think expressing awe and gratitude for creation and sharing timeless values is so not a scam.* https://example.com/ 20754 426400 426400.426778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4958473373427 0 \N \N f 89497570 \N 1 63296967 0 f f \N \N \N \N 426400 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437855 2025-03-14 23:42:10.848 2025-03-29 22:39:49.504 \N penguins, in fact, have knees. \n![](https://m.stacker.news/58313) https://example.com/ 4378 437731 437731.437855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.63186003706183 0 \N \N f 30293812 \N 1 170885056 0 f f \N \N \N \N 437731 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435399 2025-03-12 16:46:08.447 2025-03-29 22:39:49.493 \N As a Bitcoin Content creator I create video tutorials for my Youtube Channel (https://www.youtube.com/@criptopanas), the video for this week is about the different options for moving SATS from Lightning Network to On Chain or from On Chain to LN.\nThe options (so far) are:\n* Fixed Float\n* Blue Wallet\n* Coinos.io\n* Deezy.io\n\nP.S.: If you know any other method, I'd love to know about it.\nGracias! https://example.com/ 14774 435395 435392.435395.435399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6381949103766 0 \N \N f 101074505 \N 1 187196816 0 f f \N \N \N \N 435392 \N 0 0 \N \N f \N 2025-03-19 10:03:37.871 f \N \N \N 0 0 0 0 1 0 0 402791 2025-02-14 03:10:33.805 2025-03-29 22:39:49.493 \N I spent a few hours writing code for a personal micro blog. It will look vaguely like Twitter; but only one user, no threads, no responses/comments, and no images/videos. In otherwords, an actual micro **blog**, unlike Twitter.\n\nI've written 99% of the code (130 lines so far). What remains is to correct the HTML generation code and to get the HTTP server working. I'm writing this in Common Lisp, which has made many things easy (e.g. [multiple values](https://gigamonkeys.com/book/the-special-operators.html#multiple-values)). The [database](https://github.com/Wukix/LambdaLite) is very slick, and arguably only possible in Common Lisp (and maybe Scheme). https://example.com/ 19813 402188 402188.402791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1671068842726 0 \N \N f 65178665 \N 1 81688624 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3153 2022-10-26 05:46:47.522 2025-03-29 22:39:49.493 \N Even in economics, you can go a long way before encountering any serious treatment of money. In fact, you can easily go clear through the vast majority of PhD programs without ever discussing what money is. The only exceptions I know of are Chicago and George Mason.\n\nGenerally, money is just magically introduced as a unit of account into models that really don't have any monetary dynamics. Most econ programs will have electives on economic history or history of economic thought that get into serious discussions of money. https://example.com/ 641 3111 3061.3066.3104.3106.3111.3153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5469887578962 0 \N \N f 233097817 \N 1 158588703 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433456 2025-03-11 05:29:19.42 2025-03-29 22:39:49.495 \N I created early fake users (only 3) to start. I didn't use them much and it was mostly because I was embarrassed to be the only one posting.\n\nWe are past this frozen start period. There's enough real activity that there isn't a point to astroturfing. We just need to continue adding more value. https://example.com/ 12609 433088 433066.433088.433456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0337035522839 0 \N \N f 989282660 \N 7 179160888 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 2025-03-19 09:12:11.903 f \N \N \N 0 0 0 0 1 0 0 416934 2025-02-25 23:30:50.251 2025-03-29 22:39:49.495 \N hey yall! let's talk about building on bitcoin + bitcoin adoption.\n\nI teach how the bitcoin protocol works at Base58. I've been working on lightning as a protocol engineer / spec promotoor / C coder at Blockstream since 2018. Currently on sabbatical to write a book / run bitcoin++ conferences / ship more intuitive bitcoin dev edu.\n\nAt Base58 we recently started doing Lightning + Taproot classes in addition to our "how transactions work" basics. Hoping to get more online classes out soon TM https://example.com/ 17533 416929 416158.416221.416253.416288.416551.416578.416605.416632.416869.416881.416929.416934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.55128025092418 0 \N \N f 242890684 \N 3 186606956 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435756 2025-03-12 23:48:25.477 2025-03-29 22:39:49.496 \N Day 203 of snailposting everyday 'til BTC hits $100k.\n\n...and 3 push-up(s).\n\n__@_'-' https://example.com/ 725 435504 435046.435135.435292.435504.435756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5151071227296 0 \N \N f 896861930 \N 5 171569735 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:02:07.211 f \N \N \N 0 0 0 0 1 0 0 437713 2025-03-14 19:37:08.784 2025-03-29 22:39:49.497 \N Still working (and ready to share a link this time) on [**Satonomics**](https://app.satonomics.xyz/), a free and open-source alternative to Glassnode (Bitcoin on-chain data) which will be in the future self-hostable.\n\nQuit me (first) job to work full-time on this in November and it's been going great ! I'm not sure yet how I'll earn a living but I guess we'll see.\n\nSadly, I just realized that while I wanted to minimize the network transfers. Height datasets are too slow, there aren't perfectly optimized but still, I'll have to move the datasets logic to the back-end which will take some time. The silver lining is that I'll be able to add a dashboard similar to Clark's much more easily !\n\n@Car - Here's an update since you were interested ! https://example.com/ 946 437670 437670.437713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.14169817777076 0 \N \N f 5491094 \N 1 55864854 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430670 2025-03-09 11:44:51.024 2025-03-29 22:39:49.497 \N Took almost two years from activation for taproot to gain some traction. I am only sharing because i found it interesting. I dont have any agenda. Have a nice day.\n\n![img](https://imgprxy.stacker.news/3Dmi85PQdhTg42fes1w8aW-cAuoLs8Xs6PBiBPFMWLY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9jSnRDamY5L2ltYWdlLnBuZw) https://example.com/ 4084 430641 430607.430617.430641.430670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6754226582994 0 \N \N f 636781501 \N 4 228198555 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433851 2025-03-11 12:59:52.91 2025-03-29 22:39:49.497 \N Damn I missed this. I'm going to be honest right now because I know you value that, but I'm taking a chance too because I'm not sure if you want my opinion. I remember kicking myself for complimenting you for your daily zero something posts, because I feel like you being told how much we all enjoyed it made you self conscious and didn't let your shit flow. You're back! Keep it coming. https://example.com/ 4654 433828 433828.433851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6365122452425 0 \N \N f 383178391 \N 3 73185995 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-19 07:19:16.006 f \N \N \N 0 0 0 0 3 0 0 403817 2025-02-15 08:40:10 2025-03-29 22:39:49.498 \N ![](https://d.pr/i/WTjVdD+) https://example.com/ 8168 402755 402674.402755.403817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.491380724064427 0 \N \N f 186214655 \N 2 199586900 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427042 2025-03-06 02:52:52.551 2025-03-29 22:39:49.498 \N Highest number of zaps since feb according to @kr. https://example.com/ 19813 426635 426635.427042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3820928759363 0 \N \N f 312866739 \N 3 184206309 0 f f \N \N \N \N 426635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422618 2025-03-02 15:25:06.472 2025-03-29 22:39:49.499 \N I don't think there's any doubt that a major crackdown on banks would drastically drop the price of bitcoin in fiat terms. It might be the best thing to happen to bitcoin in the long run. The anti-fragile honey badger will grow stronger as a result. Lazy people (like me) could no longer use kyc and p2p would be the norm. It would be almost impossible for a successful fiat attack on bitcoin at that point. https://example.com/ 21051 422548 422548.422618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.84216020903985 0 \N \N f 160700272 \N 2 213837876 0 f f \N \N \N \N 422548 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423048 2025-03-02 22:44:46.366 2025-03-29 22:39:49.499 \N I've recently started a new plan to deal with frequent context switching and getting bogged down in low marginal value work. Each week, I'm ranking my top four priorities and devoting one day to each of them.\n\nThat might mean limiting your number of concurrent projects, or just putting some on the back burner for a week.\n\nI'm a big proponent of taking breaks to stretch or walk around, whenever you start feeling burnt out.\n\nFortunately for me, my wife handles the meals. https://example.com/ 11395 423044 422334.422660.422663.422986.422995.423035.423041.423044.423048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8663192816662 0 \N \N f 149695002 \N 2 230482354 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402299 2025-02-13 17:04:33.68 2025-03-29 22:39:49.499 \N Yeah, you are right and I'm sorry for pulling you back and forth on this. Cancellation is a fair counter point. Please take my inputs just as hopefully constructive feedback / brainstorming. I'm likely to be wrong on stuff...\n\nI think the cancellation is a bit separate problem from the zapping solution itself. \n\n- zapping:\n - internal wallet zap (no latency, low chance of error)\n - connected wallet zap (medium to high latency, has a chance of error)\n- cancellation:\n - removing / cancelling the "WoT" vote\n - getting sats back on accidental click/zap (see below, I think this one is not that important)\n\n#### Zapping\nJust brainstorming, but what about behavior like this that's the same for both internal and connected wallet:\n1) when user clicks on lightning, then the lightning icon keeps "pulsing" (some animation) until confirmed. And maybe when confirmed you do the fullpage lightning animation?\n2) when confirmed it turns yellow (or whatever the final color). \n3) when there's error/timeout, then show toast with actionable button(s) that allow the user to "try again" or "debug" (or something like that). \n\nWhen zapping with internal wallet, user only sees (2) or (3)\n\n#### Cancelation \nThe main issue I hit was that I clicked/tapped by accident on lightning when I didn't mean to. I don't mind losing the sats since that was my mistake (i.e. fair game), but I'm mainly worried about providing a wrong signal to the system and sorting that post higher (even when I don't like it). So the one solution idea that would resolve my issue would be if the post tripledot menu had "Cancel upvote (leave sats)" or perhaps for plus points, but really low priority: when the icon is still "pulsing" (= unconfirmed), I can tap&hold and in the dialog there could be option to cancel?\n https://example.com/ 2460 402091 402091.402299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5775369613173 0 \N \N f 394057626 \N 5 217769983 0 f f \N \N \N \N 402091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436522 2025-03-13 16:03:06.6 2025-03-29 22:39:49.5 \N Another win for LDK and FOSS. I have to get this thing self-hosted then post about it https://example.com/ 1298 436459 436459.436522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6160098888149 0 \N \N f 119305627 \N 1 69914636 0 f f \N \N \N \N 436459 \N 0 0 \N \N f \N 2025-03-20 10:02:47.136 f \N \N \N 0 0 0 0 1 0 0 434898 2025-03-12 10:19:01.687 2025-03-29 22:39:49.5 \N It’s my wife’s birthday this week so I’m working on being a slave. 😅\n\nOtherwise it’s a general SN sprint. So I’ll be incorporating feedback on subs and doing other “minor” enhancements. https://example.com/ 21332 434877 434646.434877.434898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.872245123569 0 \N \N f 249432615 \N 2 123872549 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 04:02:17.954 f \N \N \N 0 0 0 0 1 0 0 401385 2025-02-13 00:07:32.802 2025-03-29 22:39:49.501 \N Looks like it\n\nWhere's MicroStrategy? https://example.com/ 2431 401384 401351.401381.401384.401385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1610858265699 0 \N \N f 70827198 \N 2 227918766 0 f f \N \N \N \N 401351 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430732 2025-03-09 12:07:28.356 2025-03-29 22:39:49.501 \N ![](https://m.stacker.news/64136)\nThe tradition of the Sleepy Head Day traces back to the Middle Ages, when the belief was that the person in the household who slept late on this day would be lazy and non-productive for the rest of the year.In the old days, the last person sleeping in the house (also dubbed as the "laziest") could be woken up by using water, either by being thrown into a lake or the sea, or by having water thrown on them.\n\nhttps://en.m.wikipedia.org/wiki/National_Sleepy_Head_Day https://example.com/ 989 430729 430726.430729.430732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0655757687552 0 \N \N f 833244812 \N 6 103718343 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448919 2025-03-23 01:11:59.24 2025-03-29 22:39:49.501 \N Gonna be huge for a lot of apps, esp for us at Mutiny. Getting access to push notifications should allow for a good "offline lightning receives" experience without having to go through the app stores. Plus prompting people to install via their new third party home screen install controls should raise a lot more awareness for PWAs as well. https://example.com/ 676 448822 447892.448822.448919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6672681961723 0 \N \N f 151865392 \N 1 69628208 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443253 2025-03-19 07:53:35.519 2025-03-29 22:39:49.502 \N Yes: https://www.mutinywallet.com/ https://example.com/ 929 442374 442191.442374.443253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9242509939798 0 \N \N f 209512033 \N 1 3261910 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 2025-03-26 03:13:01.605 f \N \N \N 0 0 0 0 1 0 0 447276 2025-03-21 18:35:43.605 2025-03-29 22:39:49.502 \N I'm basically zero-fees, this is my stats:\nhttps://manreo.github.io/ https://example.com/ 9353 447161 446456.447124.447161.447276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8954713776282 0 \N \N f 178882249 \N 1 244327881 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 12:02:04.582 f \N \N \N 0 0 0 0 1 0 0 416837 2025-02-25 21:56:39.692 2025-03-29 22:39:49.502 \N The Lightning Network as a whole has a density of 0.2%. That means that out of all the channel that could exist, only 0.2% do.\n\nIf you took the betweenness centrality of every node:\n### Top 1000\n- Connections between the top 1000 nodes would account for 42% of existing network connectivity. \n- The subgraph of the top 1000 nodes has a density of 6%.\n### Top 100\n- Connections between the top 100 nodes would account for 4% of existing network connectivity.\n- The subgraph of the top 100 nodes has a density of 30%.\n### # 1\n- The #1 node has direct channels with 25% of the network. https://example.com/ 21332 416590 416590.416837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8117751445335 0 \N \N f 61864991 \N 1 155173187 0 f f \N \N \N \N 416590 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423689 2025-03-03 14:40:07.065 2025-03-29 22:39:49.502 \N ![IMG_1569.jpeg](https://m.stacker.news/16733) https://example.com/ 19829 423667 423667.423689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.22877201719742 0 \N \N f 3136313132 \N 24 246093782 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404051 2025-02-15 13:37:45.92 2025-03-29 22:39:49.503 \N A growing number of people don't WANT to use a bank (who arbitrarily cut service and make you jump hoops to get it back), or payment processors that can go broke and reveal your name, transactions, and balances to the ENTIRE world (mtGox, Celsius). https://example.com/ 9036 403996 403996.404051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1889762736794 0 \N \N f 329585244 \N 3 86814347 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458316 2025-03-29 07:42:42.56 2025-03-29 22:39:49.503 \N Yes.\n\nPeople have a bias towards pessimism because they want to sound smart. Pessimists get attention. But optimists keep winning - worldwide hunger and extreme poverty is falling and falling. Literacy and access to plumbing&electricity keep rising and rising. At least as seen from decade to decade.\n\nOld wallstreet wisdom: Pessimists sound smart, optimists make money instead. https://example.com/ 20715 458313 458227.458241.458248.458276.458294.458299.458313.458316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49917944936828 0 \N \N f 91691792 \N 1 134685526 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 452770 2025-03-25 13:12:19.699 2025-03-29 22:39:49.503 \N SN is like the old reddit from 2014 era, before the moon bois and block size drama ruined it. https://example.com/ 8448 452625 452625.452770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1676043425717 0 \N \N f 112075053 \N 1 200134233 0 f f \N \N \N \N 452625 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457936 2025-03-28 19:55:05.449 2025-03-29 22:39:49.493 \N Yeah, it was pretty potent for me, too. I'd be interesting to hear more about your recognition of homecoming, if you'd care to share.\n\n> Also, I appreciate your use of the new link description text block\n\nI hate links with no context! Not on my watch, bro. https://example.com/ 1515 457825 457771.457823.457825.457936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9522410931495 0 \N \N f 11746177 \N 1 138189108 0 f f \N \N \N \N 457771 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 206938 2024-07-28 14:15:46.957 2025-03-29 22:39:49.493 \N The bar is getting crowded. How the hell does a guy get a drink around here? https://example.com/ 4238 206926 206926.206938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63352664833369 0 \N \N f 52685542 \N 1 204942500 0 f f \N \N \N \N 206926 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433324 2025-03-11 00:31:47.802 2025-03-29 22:39:49.493 \N My latest SN PR is to add toasts for better feedback on various UI actions \n\nhttps://github.com/stackernews/stacker.news/pull/431 https://example.com/ 19569 432881 432881.433324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4137055509773 0 \N \N f 467349098 \N 3 198523546 0 f f \N \N \N \N 432881 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410671 2025-02-20 15:41:44.888 2025-03-29 22:39:49.493 \N In my opinion, risks taken and loses suffered are a great way to know about someone's skills and quality. You can't expect great stuff from people who have never put anything at stake.\n\nThis thinking makes me hate when people glorify executive leaders in big corporations as if they were touched by god just by being there. I've met many of them, and many are just obedient bees whose biggest credential is patience and loyalty, but have never actually done proper _business_. Not even a fucking lemonade stand.\n\nSome others do have taken professional and personal risks, and it shows. https://example.com/ 1960 410249 410249.410671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6746542138192 0 \N \N f 282398349 \N 2 138760536 0 f f \N \N \N \N 410249 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404614 2025-02-16 02:28:11.932 2025-03-29 22:39:49.493 \N ![RDT_20240211_1745493216988643824641423.jpg](https://m.stacker.news/15903) https://example.com/ 19735 404606 404606.404614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.00557928289973 0 \N \N f 347831844 \N 3 160354027 0 f f \N \N \N \N 404606 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441801 2025-03-18 09:57:28.221 2025-03-29 22:39:49.493 \N Indeed. Great to see a bitcoin only VC (Ten31) lead the round. https://example.com/ 20799 441750 441695.441712.441750.441801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.716391524687339 0 \N \N f 596223086 \N 5 16203154 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443714 2025-03-19 13:31:48.133 2025-03-29 22:39:49.493 \N LOL what a stupid argument. If someone cannot read and write how are they going to use Bitcoin anyway, regardless if their wallet uses seed phrase as a backup or not, come on! Also, 8 billion people should not be using seed phrases because a few million are illiterate? Since when we level down in technology? Perhaps we should also stop driving cars because blind people cannot use them? Or maybe let disable or encryption because most people don't understand cryptography? Get lost. https://example.com/ 894 443577 443577.443714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1636647655573 0 \N \N f 279305239 \N 3 84371469 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401285 2025-02-12 21:05:08.907 2025-03-29 22:39:49.494 \N Day 187 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 14169 400645 400447.400645.401285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7125151356258 0 \N \N f 214426389 \N 2 68444267 0 f f \N \N \N \N 400447 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408159 2025-02-18 15:48:12.419 2025-03-29 22:39:49.494 \N 10 comments in and nobody said big pharma, is this still a bitcoiners place? :D https://example.com/ 11314 407970 407970.408159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.601713346514 0 \N \N f 237768684 \N 1 182717071 0 f f \N \N \N \N 407970 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424121 2025-03-03 20:41:42.6 2025-03-29 22:39:49.494 \N I stumbled across BTC in 2011 after listening to a podcast:\nhttps://omegataupodcast.net/59-bitcoin-a-digital-decentralized-currency/\n\nI even installed bitcoin core on a Windows 2000 machine but didn't fully understand what I was doing, lol. After a week or so, I removed the btc core software, my biggest mistake not to dig deeper.\n\nI eventually bought BTC at the ATH in 2021, it's never too late (I got the BTC for the price I deserve). https://example.com/ 13547 424104 423928.423951.423962.424104.424121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6321118465845 0 \N \N f 655440701 \N 5 28540873 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458025 2025-03-28 21:52:20.592 2025-03-29 22:39:49.494 \N I've said this in other places, but there's lots of room between impersonal company holding your keys and only holding coins in a cold hardware wallet.\n\nI think that's where the sweet spot is, because instagibbs is more or less correct. People don't trust themselves with self-custody. But that doesn't mean they have to trust Coinbase. They can, for example, trust a techy relative. I know I'm that guy for my extended family because none of them are comfortable with self-custody.\n\nWhat we need to do is acknowledge this reality and take advantage of it to make more scalable solutions. Something like Fedi for families or communities where there are existing trust relationships would do really well, especially if there was some strict multisig controls over the Bitcoin. https://example.com/ 16571 458015 458015.458025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5491322724329 0 \N \N f 35627058 \N 2 75998231 0 f f \N \N \N \N 458015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422068 2025-03-02 08:56:32.471 2025-03-29 22:39:49.494 \N A mining node can only "censor" any block it mines. A miner with huge percent of hashrate could mine 6 blocks in a row somewhat regularly.\n\nLightning nodes are often under pressure to get their transactions confirmed quickly. Maybe they manage money for others and need to provide excellent service, or maybe their node was offline and they need to respond to a fraudulent channel closure in time to penalize the peer and avoid losing funds to them.\n \nLightning channel transactions are easy to identify so a miner could decide to censor them. This could force the LN nodes to pay higher fees and/or wait longer for channel operations. \n\nBy delaying or censoring transactions related to the miner's own fraudulent channel closes, the miner has an advantage over non-mining routing nodes at succeeding in an attempted fraudulent channel close. A very slight advantage that can be mitigated massively by simply setting a higher CLTV delta on your channels. That would give you more time to respond. Its highly unlikely that the miner would be able to censor you for more than 20 blocks for example.\n\nMany believe that bitcoin's various roles should be done by as many different actors possible to prevent any concentration of power or potential conflicts of interest. \n\nIn my opinion, multiple actors, each performing multiple roles is acceptable as long as there is competition between them.\n https://example.com/ 15091 422057 422056.422057.422068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0397378878081 0 \N \N f 568461527 \N 5 191218005 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451321 2025-03-24 13:50:28.674 2025-03-29 22:39:49.494 \N I'll be reading [Broken Money](https://www.lynalden.com/broken-money/) for @elvismercury's [book club](https://stacker.news/items/265493).\n\nI recently picked up [When Old Technologies were New](https://global.oup.com/academic/product/when-old-technologies-were-new-9780195063417) at [@arbedout](https://x.com/arbedout)'s [recommendation](https://x.com/arbedout/status/1702015383513735484). He said it was his second favorite non-fiction read this year after [Designing an Internet](https://mitpress.mit.edu/9780262547703/designing-an-internet/) which I also read this year and is fantastic. https://example.com/ 3461 451074 451074.451321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.44281434512958 0 \N \N f 459138615 \N 3 20931112 0 f f \N \N \N \N 451074 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435669 2025-03-12 21:38:47.132 2025-03-29 22:39:49.495 \N > It would take 30 years to onboard the world to self custodial lightning\n\nWhy is this a problem? It took 183 years to build Notre Dame\n\nNot everything grand has to be finished while you are young https://example.com/ 626 435141 435030.435141.435669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.10221386958423 0 \N \N f 441361227 \N 4 29591862 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-20 08:04:28.819 f \N \N \N 0 0 0 0 1 0 0 307274 2024-11-24 22:15:35.999 2025-03-29 22:39:49.494 \N So you can use this to see if someone has more than 250k sats.\n\n![1000004743.png](https://m.stacker.news/8391) https://example.com/ 1571 307271 307271.307274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4197297768547 0 \N \N f 226942557 \N 1 12450657 0 f f \N \N \N \N 307271 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442215 2025-03-18 13:29:24.78 2025-03-29 22:39:49.494 \N Day 233 of snailposting everyday 'til BTC hits $100k.\n\n...and 33 push-up(s).\n\n__@_'-' https://example.com/ 2361 442191 442191.442215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.69946057494282 0 \N \N f 108372523 \N 1 224272965 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457495 2025-03-28 14:37:05.913 2025-03-29 22:39:49.494 \N I responded here, point-by-point:\n\nhttps://twitter.com/sethforprivacy/status/1657094966722584585?s=20\n\nAbsurd and demoralizing premise, especially when it's coming from a custodial exchange that financially benefits from denigrating self-custody and making it seem far harder and more daunting than it is. https://example.com/ 20185 457476 457476.457495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1942371184383 0 \N \N f 264630472 \N 3 21148418 0 f f \N \N \N \N 457476 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423682 2025-03-03 14:35:33.611 2025-03-29 22:39:49.494 \N Getting some indoor plants for my desk has been a very asymmetric investment. Maybe a 250x return, or more? \n\nBecause I'm now willing to spend a lot more time there, and the extra hours are adding up. I'm a lot happier too, with some green things to look at. \n\nNext up is a second desk, an analog desk - https://austinkleon.com/2011/06/11/interviews/ https://example.com/ 1044 423670 423629.423670.423682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0775462968423 0 \N \N f 29675308 \N 1 83305660 0 f f \N \N \N \N 423629 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422735 2025-03-02 17:01:16.887 2025-03-29 22:39:49.494 \N Welp, just got laid off. Guess I'll be stacking a ton more sats than fiat. Sadly, only the latter pays the mortgage. https://example.com/ 18269 422717 422717.422735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2955390173658 0 \N \N f 478690868 \N 3 130019014 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421291 2025-03-01 15:06:28.347 2025-03-29 22:39:49.494 \N https://cdn.discordapp.com/attachments/796935699034144798/1165621971283886150/IMG_20231022_150447_475.jpg?ex=6547850e&is=6535100e&hm=4e2193ff2106db98a5fe44a785235180da96720a161f0791b456719295783acf&\n\nAnything that is bad for people I am going to fight off. Stablecoins are just [company scrip](https://en.wikipedia.org/wiki/Company_scrip) still rehypothecated dollars but without the FDIC bailouts.\n\nShitcoins are just VC fluff to gain [exit liquidity](https://video.twimg.com/ext_tw_video/1680920921463201792/pu/vid/1280x720/V3eaZ94h09YMZQrR.mp4?tag=12)\n\nI don't know if you know this, but the strategy behind arguing with someone on the internet is either, to gain new insight into how people like the one you're talking to tend to think, or to make a show for people who are lurking and watching your debate. You never argue with someone to convince the other person, you're just wasting your time.\n\nSo the point of making a stink about this shit, is in the hopes that newbies watching the hullabaloo, will stay away from the scam. So its especially important right now to rally against a Bitcoin ETF so that less people actually buy into the ETF and in learning why ETF bad, learn about self-custody. https://example.com/ 13517 420888 420888.421291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.04985070509997 0 \N \N f 82969455 \N 1 94087168 0 f f \N \N \N \N 420888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455911 2025-03-27 12:06:29.751 2025-03-29 22:39:49.495 \N [![Image.jpg](https://i.postimg.cc/MKsM9xfb/Image.jpg)](https://postimg.cc/VdCkNxRd) https://example.com/ 20450 455904 455551.455599.455824.455889.455904.455911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9721908672574 0 \N \N f 855283580 \N 7 49008645 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435324 2025-03-12 15:41:14.632 2025-03-29 22:39:49.496 \N Congrats @ekzyis!!\n\nJudging by your fingers, you are a young man. Judging by the soda, you live near Munich, Germany. Judging by the soda's reflection, you have a nice room :). Haha I probably went too far https://example.com/ 20776 435046 435046.435324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.79146415592307 0 \N \N f 736488539 \N 5 102913455 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 10:18:48.901 f \N \N \N 0 0 0 0 1 0 0 401819 2025-02-13 12:10:37.378 2025-03-29 22:39:49.496 \N I'm sure in both cases! But the 51-minute one is no contest! Ahahah \ntry your self.\n\nhttps://imgprxy.stacker.news/r3YtYx9mMKB1dPL8Z9uN3b0VwB1LxzVU5_4HyuQPAzs/rs:fit:1280:720/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy82NDE2OA https://example.com/ 8506 401783 401783.401819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8099172773444 0 \N \N f 30312909 \N 1 132978207 0 f f \N \N \N \N 401783 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402822 2025-02-14 05:39:08.471 2025-03-29 22:39:49.497 \N Pull request for drive chains, possibly the biggest change in bitcoin's history.\n\nIMHO two issues remain:\n\n1. From a user POV the game theory starts off stable then quickly becomes unstable when you plug in real world values. Therefore, there is a chance that participants will lose the coins they lend to the miners, due to the much weaker security of drivechains.\n\n2. While DC has the good idea of trying to deter reorgs due to tail emissions and preventing a the need for the fork. It comes at the cost of any of the 256 coins blowing up and then spreading up to the main chain, which would require a fork too, to put right. So instead of one vector for a fork, there would be 256.\n\nConsequently, I dont think drivechains are ready to merge. Some changes to the concept to improve the security, and to limit the risk of a fork could see it, or something like it, become part of the bitcoin eco system, in the future. https://example.com/ 7827 402582 402582.402822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.41682849622246 0 \N \N f 191613019 \N 1 75973870 0 f f \N \N \N \N 402582 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 368174 2025-01-14 15:04:05.865 2025-03-29 22:39:49.497 \N Building Voltage! More info here:\n\nhttps://twitter.com/gkrizek/status/1598003879836549121?s=20 https://example.com/ 21218 368115 368115.368174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6165660957264 0 \N \N f 77905695 \N 1 176848733 0 f f \N \N \N \N 368115 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435929 2025-03-13 05:34:27.099 2025-03-29 22:39:49.498 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **15** https://example.com/ 19531 435690 435690.435929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0636668402376 0 \N \N f 701871723 \N 5 52413161 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 2025-03-20 05:51:00.944 f \N \N \N 0 0 0 0 1 0 0 458017 2025-03-28 21:33:07.807 2025-03-29 22:39:49.498 \N Have really appreciated all your work bringing insight into the workings of SN, in addition to your kickass more traditional posts. So glad you're here! https://example.com/ 18321 457817 457509.457565.457817.458017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3930254956166 0 \N \N f 171061576 \N 1 124195575 0 f f \N \N \N \N 457509 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403137 2025-02-14 13:30:40.953 2025-03-29 22:39:49.499 \N Your account of how the Samourai thing hit you makes me think (for the millionth time) how you have a big opportunity in this space (or perhaps any space) to bring something of yourself to it, and to fill a niche that only you can, whatever that is. Man, how cool to read a thoughtful @siggy47 series, or a book, or whatever, synthesizing the relevant legal aspects? Nobody else is doing that.\n\nIf you're like me, you might get in your own way by thinking: well shit, there are ten million people better positioned to do this; I'm a lawyer of type _x_ but what's really needed is a lawyer of type _y_ or whatever. \n\nBut if there's anything btc has taught me, it's that there wasn't some particular credential or skillset that was needed for anything, ever. Instead, people had desires, and they brought something to the table, and they fulfilled their desires as best they could, learning what was needed along the way, and it all evolved in such an interesting and creative journey: they became capable of what needed to be done. They found niches that would previously have been unimaginable. \n\nOr rather, they didn't found them, they dug them. Perhaps they _mined_ them.\n\nAnyway. I've been glad for your scattershot posts. I'd be glad for something less scattershot, too. If something in that calls to you, maybe listen to the feeling. https://example.com/ 9109 402991 402871.402896.402903.402980.402991.403137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0916424677261 0 \N \N f 329879839 \N 2 145250938 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437516 2025-03-14 15:16:11.308 2025-03-29 22:39:49.5 \N The best resource visualized: https://www.nobsbitcoin.com/how-does-a-lightning-replacement-cycling-attack-work/\n\nExplained simply:\n\nImagine papercliping garbage to a legal bill, but then the whole thing gets thrown out because of it. So a new bill is proposed but the attacker paperclipped more garbage to it and it doesn't pass again. Eventually it is no longer possible to submit the bill and attackers win.\n\nIn this case the bill is your in flight payment that you're trying to redeem on chain before the timeout. https://example.com/ 12609 437269 437269.437516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5416377106074 0 \N \N f 215776302 \N 1 139905342 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441254 2025-03-17 21:33:47.419 2025-03-29 22:39:49.5 \N ![20240307_192626.jpg](https://m.stacker.news/20156) https://example.com/ 11760 441234 440692.441011.441130.441211.441215.441226.441234.441254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.52190642155728 0 \N \N f 149860920 \N 1 218600043 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435628 2025-03-12 20:37:35.443 2025-03-29 22:39:49.501 \N Okay, not directly asking OP; an open question:\n\nWhy? Why do some of you take, like, 25 different sups? \n\nI've experimented with those, too, but to me it was more of a "psychological" thing, with creatine and Pre-work out as one of the very few exemptions of sups that I really *felt*.\n\nI can't imagine that you really *feel* each of those sups making a difference, or do they? https://example.com/ 854 435615 435551.435608.435615.435628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3897971128817 0 \N \N f 166028977 \N 1 186967644 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 2025-03-19 21:24:06.247 f \N \N \N 0 0 0 0 1 0 0 434878 2025-03-12 10:05:30.155 2025-03-29 22:39:49.501 \N Promoted advert from fountain. https://example.com/ 20450 434837 434837.434878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5684140220961 0 \N \N f 243079728 \N 1 160234452 0 f f \N \N \N \N 434837 \N 0 0 \N \N f \N 2025-03-19 13:10:11.084 f \N \N \N 0 0 0 0 1 0 0 441312 2025-03-17 22:41:35.523 2025-03-29 22:39:49.502 \N https://i.imgur.com/IiDmP2W.png\nhttps://i.imgur.com/I5JgLWZ.jpeg https://example.com/ 15213 441247 441247.441312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6217602912443 0 \N \N f 398813682 \N 2 142763954 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410232 2025-02-20 11:27:05.404 2025-03-29 22:39:49.502 \N Honestly, it is the routines it has in place that keeps me engaged n enthusiastic:\n\n- Meme Monday\n- Fun Fact Friday\n- Weekend Book Recommendations \n- Stacker Saloon\n\nEvery day I have something different to look forward to https://example.com/ 19829 410219 410219.410232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4291358464858 0 \N \N f 154472462 \N 1 228994612 0 f f \N \N \N \N 410219 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410434 2025-02-20 13:32:06.842 2025-03-29 22:39:49.502 \N I am proud that I can make some household repairs now, mainly as a result of learning through YouTube. My wife comes from a family where the men can fix everything, so my lack of handyman skills was embarrassing.\nBTW, I'm proud of my new skills, but my family doesn't notice much improvement. https://example.com/ 16229 410428 410409.410428.410434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4593488103913 0 \N \N f 187591916 \N 4 95046117 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434375 2025-03-11 20:42:47.459 2025-03-29 22:39:49.502 \N Most of my sats are spent to upvote sn content and orange pill close circles. https://example.com/ 715 433993 433828.433946.433993.434375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.884121781921 0 \N \N f 218718337 \N 2 100535012 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446971 2025-03-21 14:54:39.173 2025-03-29 22:39:49.503 \N Great idea. I am not sure how many of us have a Bitcoin Talk account but I think you are on the right track here. I am going to add an SN link and referral to my Nostr account and the sports territory twitter account. \n\nOne of my focuses in 2025 will be how to better market the territory and SN more broadly. Ultimately we want more than just Bitcoiners to join the site but the fact that we can't even seem to convert the low hanging fruit users is puzzling to me. I don't think it is a problem with the site or the content, it is getting people to understand the value proposition and to try it out. \n\nOne way that I thought might work well and I briefly tested but admittedly didn't do consistently or enough is finding good posts on other platforms. Reposting them on SN and then contacting the OP on the other platform to say "I reposted this on Stacker News. It earned x amount of sats. I would be happy to zap them to you". I did have one person join SN that way but it wasn't as successful as I expected. Although, granted I only did it 5 or 6 times. \n\nI appreciate you are thinking about these things and kind of spearheading our open source community marketing campaign. https://example.com/ 20495 446937 446937.446971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.35972414891871 0 \N \N f 229330702 \N 2 113415266 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N 2025-03-28 10:30:03.796 f \N \N \N 0 0 0 0 2 0 0 409910 2025-02-20 01:02:13.196 2025-03-29 22:39:49.503 \N https://imgprxy.stacker.news/r4lodHE5WBKBGRQsmc5skRQf2xJ2BZ74t-xEEtMPjIU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbTQuZXpnaWYuY29tL3RtcC9lemdpZi00LTIyOWFlM2YxNGQuZ2lm https://example.com/ 2016 408874 408874.409910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8497033515346 0 \N \N f 594230040 \N 3 82472908 0 f f \N \N \N \N 408874 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436281 2025-03-13 12:50:30.465 2025-03-29 22:39:49.495 \N > Today, my question is, “Do you use a framework to systematically come up with ideas?” I used to teach Project Work at the pre-tertiary level. My students were given a topic and challenged to come up with innovative ideas to solve the problem.\n\nMy biggest problem is I always have too many ideas in my head. Most of the time, I write them down and wait to see if they return. \n\nOften times, I will give them away to people who are working on similar things, even when it’s a great one I want to get to someday, took me a long time to come to terms with this. I firmly believe now that being a facilitator of ideas is far more important than keeping them to yourself. This just reaffirms why I believe more ideas come to me lately.\n\n> Do you systematically use such frameworks for ideation or do your ideas just rise to the surface of your consciousness seemingly out of nowhere?\n\nIdea generation is a ton of fun in a room with a whiteboard, no doubt. But I’ve learned doing PlebLab for these many years it's much better to bring thought-out ideas to the surface before this, especially if it's something new. \n\nLet me explain…\n\nLately, I have been trying to think through this idea I have had for a year, initially last year, when I would think about it, I couldn't visualize it. It stumped me; the longer I thought about it, it bothered me. It also wasn’t an idea that I know I needed to do because it was “a nice to have.” So I shelved it in my head. Had someone came up to me during that time with a similar idea I would have gave it to them to do. But it never happened.\n\nHowever, late last year, when I was listening to the advice of a lot of new people that came into my life, I began taking what they were telling me at face value. Because it was something I heard before, just said different. \n\nAgain, I went back to looking at this idea again. With new information and time passing, I can now visualize how it will look in my head and possibly play out in a few different scenarios without backstops...now in March, it is starting to feel right as things have just naturally fallen into place for this idea to come to life. Again will see only time will tell, thing is not to force things with ideas. Let it flow naturally.\n\nSo to recap three things I've learned when coming up with ideas before shelving them.\n\n1. Look for the signs. \n\nThis is important when optimizing for understanding if it's the right time. Let it flow. God will always naturally guide you to the place your supposed to be.\n\n2. Do the hard research and find key data to support this idea.\n\nThis will help so much when having to explain to others and give you some peace of mind. But ultimately it’s good to have the data to back up a lot of the “flow state” process. Aquinas often used the metaphor of a two-story building to illustrate this concept. I’ve written more about it [here.](https://www.thrillerbitcoin.com/the-belief-in-your-heart-sunday-orange-flow/)\n\n3. Make sure it excites and scares you at the same time.\n\nThis one I just learned to trust more and more especially in the last year. I used to avoid big ideas that did this to me, but now, not so much. \n\n4. Inception\n\n\nBefore going through with any idea talk about it with people who want to help you tear it down while it’s still in a dream state. It’s the only way to see if the idea is firmly planted in your mind. This will be helpful when you finally go through with it.\n\nHope this helps, honestly this is the stuff me and @k00b talk about all the time. https://example.com/ 5557 436241 436241.436281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6664655423684 0 \N \N f 94635503 \N 1 81761538 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 09:56:51.506 f \N \N \N 0 0 0 0 1 0 0 443385 2025-03-19 10:13:27.763 2025-03-29 22:39:49.495 \N https://imgprxy.stacker.news/1UzwCXl-Li5lG_tfcsHwUwme5uq5E1V8jq6T2aI8PGI/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS9iZWI3YjQ4YjZjMWViYTA2ZGQxNDMwZDY0NmY1ZjViYTkzZTQ1ZjQ1MWYxYjlkYmRiYjVkNDU0YWZkOWQ0YzY4LmpwZw https://example.com/ 21238 443371 443295.443332.443371.443385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4536550466825 0 \N \N f 435395070 \N 3 96350680 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 03:30:43.995 f \N \N \N 0 0 0 0 1 0 0 457851 2025-03-28 18:47:23.833 2025-03-29 22:39:49.495 \N ![why](https://pbs.twimg.com/media/FfCUdx4XwAEqJxs.jpg) https://example.com/ 17116 457849 457771.457823.457825.457842.457849.457851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.22560814693649 0 \N \N f 52003379 \N 1 157466195 0 f f \N \N \N \N 457771 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443092 2025-03-19 03:22:30.033 2025-03-29 22:39:49.495 \N Been wondering what happened. I figured the superconductor was used to finally create Skynet, which in turn destroyed Bitcoin and everything adjacent to it, starting with Stacker News. Glad I was wrong. \n\nAll joking aside, sorry about the pilfered coin. Hopefully the culprit decides to do the right thing. https://example.com/ 4083 442904 442904.443092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.74547115971203 0 \N \N f 27267344 \N 1 83612124 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423179 2025-03-03 04:31:07.445 2025-03-29 22:39:49.495 \N It would be cool to have chatgpt summary... (and e.g. cache those during time of creating the post). It could be nice to have that somehow auto-open next to the "related"? https://example.com/ 17944 422714 422483.422714.423179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5080629160015 0 \N \N f 165424163 \N 2 248063104 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428052 2025-03-06 20:00:48.009 2025-03-29 22:39:49.495 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **18** https://example.com/ 1469 427777 427777.428052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0228505637723 0 \N \N f 47963256 \N 1 83062599 0 f f \N \N \N \N 427777 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435147 2025-03-12 13:51:35.294 2025-03-29 22:39:49.495 \N demo video of jade QR code and seed QR https://twitter.com/Blockstream/status/1591831525418573824?s=20&t=GJ5_HQ5m7KXQOElIyJ6Xug https://example.com/ 5359 434795 434795.435147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.227256865066 0 \N \N f 210821463 \N 2 209305462 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 08:35:46.537 f \N \N \N 0 0 0 0 1 0 0 435342 2025-03-12 15:47:43.782 2025-03-29 22:39:49.495 \N Section 988 of the IRS Internal Revenue Code says that foreign currencies have a de minimus exemption of $200, which means if you sell bitcoin for something and accrue less than $200 on the sale, you don't need to report it. This is my tax advice. https://example.com/ 21521 435242 435242.435342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2752512998923 0 \N \N f 60226978 \N 1 148457229 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 2025-03-19 18:44:22.501 f \N \N \N 0 0 0 0 1 0 0 437874 2025-03-15 00:15:53.656 2025-03-29 22:39:49.496 \N I would guess they're pretexting for various methods for putting shitcoins on Bitcoin. As much as I wish this were about something useful (in which case they should have just posted about the useful thing), it normally is not.\n\nhttps://www.fortinet.com/resources/cyberglossary/pretexting\n\n"Pretexting is a tactic attackers use and involves creating scenarios that increase the success rate of a future social engineering attack." https://example.com/ 20788 437495 437233.437495.437874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13978778467128 0 \N \N f 206078105 \N 2 2137874 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434700 2025-03-12 07:10:12.747 2025-03-29 22:39:49.496 \N just used the bitcoin company to buy an amazon gift card, therefore the sats I earned online last year for stuff I made went into a chemo care package for someone dear to me. so isn't that nice? excellent shopping experience too with alby and tbc https://example.com/ 16354 434362 434319.434362.434700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9663915244684 0 \N \N f 15425998 \N 1 197287965 0 f f \N \N \N \N 434319 \N 0 0 \N \N f \N 2025-03-19 02:41:59.579 f \N \N \N 0 0 0 0 1 0 0 408323 2025-02-18 17:43:25.768 2025-03-29 22:39:49.497 \N "I'd like to see if you'd meet up at ETH Buenos Aires so we can talk about a partnership between WorldCoin and Bitcoin." \n\n\nOK that's my mic drop. Swear on my mother's life these words were spoken. As we were leaving the bar heading outside. It was the cherry on the sundae. https://example.com/ 20434 407903 407903.408323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5880449965473 0 \N \N f 84607265 \N 1 140099625 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403922 2025-02-15 11:30:02.261 2025-03-29 22:39:49.497 \N https://imgprxy.stacker.news/a6eUcHaYGzzC6qG1fyUWoca7c-UBVDLJ9g4T0HuqWww/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ2ZsaXAuY29tLzd4N21iYy5qcGc\n\none day friend https://example.com/ 19018 403919 403824.403857.403868.403869.403918.403919.403922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4210949166184 0 \N \N f 883696245 \N 6 70578221 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434955 2025-03-12 11:14:22.453 2025-03-29 22:39:49.497 \N We are considering adding some type of ad slot that users **do not see unless they opt in** which boosts their rewards. https://example.com/ 15510 433883 433883.434955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.329005015259 0 \N \N f 4462285 \N 1 141384025 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 2025-03-19 04:34:49.089 f \N \N \N 0 0 0 0 1 0 0 442648 2025-03-18 18:07:50.174 2025-03-29 22:39:49.498 \N Hello!\n\nI recently signed up to stacker news and thought I would share a project I kicked off many moons ago, but recently brought back to life with the Lightning Network.\n\nIt started in 2015 and was running happily until 2018 with on chain payments. The project died when the server had a hardware failure. Then end of last year I rediscovered BTCPay Server and integrated with that to support Lightning only payments.\n\nIt gets some love from time to time, but it's a fun learning experience to keep it running.\n\nSo on the odd occasion you need to send a fax, please think of Bitcoin Fax.\n\nCheers! https://example.com/ 21254 442646 442628.442639.442646.442648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9170249406097 0 \N \N f 655484658 \N 6 216386627 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448026 2025-03-22 11:00:20.634 2025-03-29 22:39:49.498 \N Wife has the flu and I produced another Bitcoin And . . . episode after I learned how to use a Cornell Note Taking extension in Obsidian.md. It's pretty rad but is a little wonky. I used it to notate a write-up on a Silvopasture project from Drawdown.org. \n\nZapathon is rekting my Damus feed rn. https://example.com/ 15806 447818 447818.448026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.255705814038194 0 \N \N f 536408292 \N 4 183261103 0 f f \N \N \N \N 447818 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434091 2025-03-11 15:43:01.435 2025-03-29 22:39:49.499 \N The data carrier size has always referred to the limit for op_return outputs. Luke decided unilaterally that it should also apply to inscription envelopes, and made the corresponding change in his own full node software, Knots. Some people want inscriptions to be non-standard and have been advocating for this change to be merged in Bitcoin Core, but it has not gained support among other Bitcoin contributors for various reasons. https://example.com/ 20969 434031 433828.434031.434091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5439430215439 0 \N \N f 487373239 \N 6 196271148 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434067 2025-03-11 15:31:58.178 2025-03-29 22:39:49.499 \N been working on new songs with my band for our second EP...the plan is to hit the studio this December to record it https://example.com/ 20603 434057 433828.433999.434020.434057.434067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.41537365757613 0 \N \N f 94096922 \N 1 178625412 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427760 2025-03-06 15:52:34.044 2025-03-29 22:39:49.5 \N ![](https://www.zapread.com/i/9KI) https://example.com/ 3504 427251 427251.427760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9658085829863 0 \N \N f 285993079 \N 3 201789066 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402763 2025-02-14 01:53:16.237 2025-03-29 22:39:49.5 \N Just playing with ChatGPT, I feel like it isn't just professors and devs that are headed for challenges. I'm super surprised by the "creativity" it is capable of. Ask it to write a funny story or poem about any subject and it nails it. Right now it feels cool to have it write some rhyme that makes people laugh. But I'm thinking, that in the next few months, genuinely witty and funny people will be accused of using AI. Story tellers, comedians, writers of children's books and role playing game masters will all hear things like "you just pulled this from ChatGPT", no matter how original the content is. Political arguments and scams could even sound way more convincing than they should with a little AI magic! \n\nI'm going dystopian for now. I am totally ok with computers being better than humans at chess and driving.. but creativity and imagination was an area that I thought we'd always rule. I was wrong. https://example.com/ 18402 402674 402674.402763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7112476370522 0 \N \N f 424285698 \N 3 220542747 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435677 2025-03-12 21:46:44.661 2025-03-29 22:39:49.501 \N I think Elon doesn’t understand money yet. He works hard enough he tends to come around on things but his businesses are very dependent on fiat credit (as evidenced in his calls for lower interest rates despite record inflation).\n\nI don’t think he’s evil though. He’s likely just powerful and wrong. Harmful but ignorant.\n\nAnyway, I don’t think he intends to do anything special with Bitcoin. He’ll likely do whatever gives him a laugh and seems directionally correct, and the people who run his businesses think will do the best things they imagine will help the business.\n\nX is probably still a fantasy for him but that’s kind of irrelevant. Bitcoin is what X would’ve been if Levichen could’ve figured it out. https://example.com/ 20756 435664 435516.435664.435677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.43915379129767 0 \N \N f 96570 \N 1 177975203 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 2025-03-19 15:33:14.963 f \N \N \N 0 0 0 0 1 0 0 422211 2025-03-02 10:18:24.843 2025-03-29 22:39:49.501 \N I think there will always be people who don't want to be completely self-sovereign. But at least they will have the option of handing over responsibility to a party they know personally.\n\n[LndHub](https://github.com/getAlby/lndhub.go), [LNBank](https://github.com/dennisreimann/btcpayserver/tree/plugins/BTCPayServer.Plugins.LNbank), [Galoy](https://galoy.io) and [Fedimint](https://fedimint.org) are all examples of a project that is custodial but at least they can be deployed and managed by friends/people you trust. https://example.com/ 17291 422014 422014.422211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.26151595122564 0 \N \N f 121460498 \N 1 74311373 0 f f \N \N \N \N 422014 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1250 2022-09-08 18:28:30.666 2025-03-29 22:39:49.501 \N Lol Sam Altmans eye ball scanner, apple pay, siri, tiktok, face scan to unlock oh theres so many https://example.com/ 8664 1247 1247.1250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7519742290019 0 \N \N f 627463835 \N 5 211201672 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2188 2022-10-05 10:50:06.071 2025-03-29 22:39:49.496 \N Day 261 of snailposting everyday 'til BTC hits $100k.\n\n...and 61 push-ups. (35 - 20 - 6)\n\n__@_'-' https://example.com/ 14465 2186 2186.2188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7760460219897 0 \N \N f 323337938 \N 3 130339244 0 f f \N \N \N \N 2186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 442830 2025-03-18 20:55:02.319 2025-03-29 22:39:49.496 \N this is just confusing. having the same symbol for different denominations will cause lots of issues. this is ripe for abuse. what if something in the future, for some reason, really costs 10,000 bitcoin? what if something is 20 sats? even the dollar system has a different symbol for cents, though i feel i usually see that represented as just partial dollars. what a waste of hype https://example.com/ 675 441312 441247.441312.442830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.59435935864321 0 \N \N f 195827964 \N 1 202985718 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410068 2025-02-20 08:14:24.582 2025-03-29 22:39:49.496 \N I think it's incorrect to say it's apolitical. It's anti-political. Politics puts power in the hands of the most popular, generally speaking, and bitcoin wants the power in the hands of the most efficient (successful entrepreneurs). Against any form of rentseeking, of which politics is kinda the prototype, really. https://example.com/ 14213 410018 410018.410068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0751380735775697 0 \N \N f 332000824 \N 2 48057479 0 f f \N \N \N \N 410018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413869 2025-02-23 14:02:59.682 2025-03-29 22:39:49.496 \N I stopped using it for a bit because I had very little engagement. \nA prestigious journalist like me needs to be focused entirely on engagement. Maybe I'll start posting more on Nostr npub1563z6kxmvuy7s8zhzan8m0hzmkavyfzg2aw6h7f0fvcvdms398csaxc9n6 https://example.com/ 20897 413854 413854.413869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8094179034229 0 \N \N f 569893439 \N 4 29241780 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 402271 2025-02-13 16:50:50.992 2025-03-29 22:39:49.496 \N I just signed up for SN after lurking for some time. Feels nice to just login through lightning without providing any email or whatnot. https://example.com/ 21498 402188 402188.402271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8126286752939 0 \N \N f 235684787 \N 1 206116558 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403317 2025-02-14 17:25:44.275 2025-03-29 22:39:49.496 \N I like the idea, but the site is a little short on details. I assume it's a LN wallet? Custodial? The idea of nostr marketplaces using LN is very promising, so I would like more information. https://example.com/ 21332 402904 402904.403317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1679973467658 0 \N \N f 306764495 \N 2 175082508 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431783 2025-03-09 17:41:38.309 2025-03-29 22:39:49.496 \N Exploring alternatives to Reddit. I really like what I see here. :^) https://example.com/ 895 294868 294868.431783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2980526678837 0 \N \N f 220258969 \N 1 65772563 0 f f \N \N \N \N 294868 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448142 2025-03-22 12:37:01.087 2025-03-29 22:39:49.496 \N Writing code https://example.com/ 17392 447892 447892.448142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.790752987323 0 \N \N f 97119910 \N 1 20256530 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436114 2025-03-13 10:29:37.747 2025-03-29 22:39:49.496 \N Twitter ratio: when the post gets more replies than RTs\n\nSN ratio: when the top comment gets more sats than the original post https://example.com/ 803 436109 436028.436100.436109.436114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7912979686832 0 \N \N f 485963159 \N 3 233862709 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 03:47:56.975 f \N \N \N 0 0 0 0 1 0 0 435409 2025-03-12 16:55:09.62 2025-03-29 22:39:49.496 \N The number of possible combinations for a 24-word Bitcoin seed phrase is 2048^24, which is an incredibly large number far greater than the estimated number of atoms in the observable universe. That's a fun fact for me. But even funnier fact is also that someone has probably tried to randomly guess a wallet 😃 https://example.com/ 2111 435401 435261.435401.435409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5886394208072 0 \N \N f 316075132 \N 2 236768324 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:20.55 f \N \N \N 0 0 0 0 1 0 0 402031 2025-02-13 14:13:56.6 2025-03-29 22:39:49.496 \N https://nostrfiles.dev/uploads/Z091E4YFMEchSFgJpgFy.jpeg https://example.com/ 683 402000 402000.402031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0197829525408 0 \N \N f 626116698 \N 4 170913470 0 f f \N \N \N \N 402000 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 97526 2023-12-11 19:29:17.774 2025-03-29 22:39:49.496 \N Wait, you people are circlejerking each other?? I'm sitting here jerking all alone https://example.com/ 10731 97522 97257.97522.97526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8106653890991 0 \N \N f 202027382 \N 2 166416387 0 f f \N \N \N \N 97257 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400395 2025-02-12 07:06:03.144 2025-03-29 22:39:49.496 \N This [article](https://rushflow.io/blog/best-practices-setting-up-your-local-development-environment) tries to summarize all the options, their pros and cons and the best practices. https://example.com/ 13547 400261 400261.400395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3266751647606 0 \N \N f 36836503 \N 1 4237752 0 f f \N \N \N \N 400261 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443759 2025-03-19 14:00:46.126 2025-03-29 22:39:49.496 \N Or as a haiku:\n\nChest aching, legs lost\nwandered through a lily pond\nNemo’s cuz nom-nom https://example.com/ 20198 443750 443577.443750.443759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3490796188606 0 \N \N f 366499905 \N 2 249600908 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 07:18:41.175 f \N \N \N 0 0 0 0 1 0 0 410638 2025-02-20 15:26:13.049 2025-03-29 22:39:49.497 \N Thank you for sharing your story. I do think that if we survive our crazy parents, mine were really something, it makes us stronger. I wouldn't change anything about my path. I agree that I wouldn't do things around my kids that I don't want them to do. I know that my son is the type that is going to try things, he is my son, he has me in him, I see his strong will. So I think it is better to share a positive perspective on these things. To me, there is nothing inherently bad about smoking pot. But if he does it, I want him to be mindful and self aware about it. https://example.com/ 19863 410569 410486.410569.410638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4028430264617 0 \N \N f 216296605 \N 2 48879217 0 f f \N \N \N \N 410486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437790 2025-03-14 22:12:00.907 2025-03-29 22:39:49.497 \N Day 204 of snailposting everyday 'til BTC hits $100k.\n\n...and 4 push-up(s).\n\n__@_'-' https://example.com/ 5487 437302 437218.437287.437302.437790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7688858739012 0 \N \N f 93763055 \N 1 87971338 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1421 2022-09-14 08:49:39.127 2025-03-29 22:39:49.497 \N I feel like he's calling you out, @ek. https://example.com/ 837 1357 1357.1421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.703917157780012 0 \N \N f 118164592 \N 1 157922732 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436488 2025-03-13 15:29:43.766 2025-03-29 22:39:49.497 \N I'd love to see a new post type for prediction markets. It could look like a poll, but rather than paying one sat to answer, you would choose how much to stake on your answer. Then, after the event, the pool would pay out proportionally to the winners. As far as I can tell, this is a huge missing piece from the lightning ecosystem. https://example.com/ 11443 436460 436460.436488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7185121430881 0 \N \N f 519619719 \N 3 101364966 0 f f \N \N \N \N 436460 \N 0 0 \N \N f \N 2025-03-20 09:46:58.97 f \N \N \N 0 0 0 0 1 0 0 427211 2025-03-06 08:01:20.058 2025-03-29 22:39:49.497 \N The ideal UX for onboarding is probably a human encyclopedia with the non-judging nature of a therapist.\n\nGiven that people like that are in short supply ... I think someone should take all those resources you mentioned, train a chat bot on them, and release that. https://example.com/ 20120 427188 427188.427211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.73882880918092 0 \N \N f 455328549 \N 3 171737502 0 f f \N \N \N \N 427188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434237 2025-03-11 17:29:00.112 2025-03-29 22:39:49.497 \N >What's one thing you'd like Satoshi Airways to have?\n\nPrivacy. No questions asked.\nMy seat = my keys (or not your keys, not your seat) https://example.com/ 691 434226 433828.434031.434091.434226.434237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9380032325426 0 \N \N f 393628014 \N 4 3314577 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428491 2025-03-07 10:44:53.601 2025-03-29 22:39:49.497 \N Getting my Bitcoin Christmas card store ready for the holiday season:\nshop.bitcoinscoresby.com/christmas https://example.com/ 12821 428483 428441.428483.428491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7656610545214 0 \N \N f 192637817 \N 1 89548966 0 f f \N \N \N \N 428441 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410668 2025-02-20 15:38:43.827 2025-03-29 22:39:49.497 \N Day 400 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 828 410654 410269.410647.410654.410668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5650612192068 0 \N \N f 218722557 \N 1 29352125 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435312 2025-03-12 15:34:18.712 2025-03-29 22:39:49.498 \N Day 173 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 10112 435252 435046.435246.435252.435312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.568095491511436 0 \N \N f 191501965 \N 1 34514475 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:54:57.396 f \N \N \N 0 0 0 0 1 0 0 427787 2025-03-06 16:27:24.285 2025-03-29 22:39:49.498 \N My parents did a lot of drugs around me growing up but always lied about them. They were sharing "cigarettes," snorting nasal medicine, the little mirrors were for applying makeup, and they went into the bathroom with groups of their friends for long periods of time for protection. My weekend sporting events always culminated in a huge rager at one of the coach's houses (where at some point late in the night the head coach's wife would lick my eyeballs, Bert would put slugs up his nose to sneeze them out in front of us kids, and I'd wind up locked in a closet as the youngest teammate).\n\nIn some ways I'm glad I didn't know what was going on, especially with the harder drugs. Although, it was confusing for me and admitting it might've been the best thing for my parents. The accountability might've saved them from divorce, the loneliness they find themselves living now, and their continued addictions.\n\nI smoked pot for the first time at 12 out of a pipe my friends made out of tinfoil. One day before school at 14, I drank so much tequila I puked on the bus, blacked out in a bush before class, then was wheeled to the middle of principal's office where I puked again and finally put in an ambulance. In high school, I'd steal pot from my dad during our monthly visits passing over the powders in plastic bags. I started growing pot at 16, reading a book about growing in my classes (I had fashioned a cover for it). My mom lived with her boyfriend when she wasn't getting arrested or entering and exiting rehab, and my younger sister lived with my aunt, so I was mostly left alone and had drunken get togethers with a small group of friends most weekends. I flunked out of high school at 17 and moved out.\n\n----------------\n\nI'd only do things around my children I wouldn't mind them doing. https://example.com/ 695 427750 427091.427540.427556.427574.427722.427750.427787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6559626820529 0 \N \N f 131585304 \N 2 100847667 0 f f \N \N \N \N 427091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427806 2025-03-06 16:42:50.379 2025-03-29 22:39:49.498 \N Redshift looks siiiiiik https://example.com/ 1723 427651 427651.427806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0362955814363 0 \N \N f 72638347 \N 1 129393445 0 f f \N \N \N \N 427651 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401403 2025-02-13 00:46:27.413 2025-03-29 22:39:49.498 \N Howdy partners, t’s my birthday! Just turned double 4’s. Looking forward to a relaxing day with my family! https://example.com/ 2829 401346 401283.401346.401403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8827548683202 0 \N \N f 746740060 \N 7 132990504 0 f f \N \N \N \N 401283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427304 2025-03-06 10:00:36.779 2025-03-29 22:39:49.499 \N Tired of these news too.\n\nWorking on Nostr Explorer: http://nostrexplorer.com/\n\nYou can test it out with an event:\nhttps://nostrexplorer.com/e/b2ea3ea43d2fd2873a9b3191a8e5fdef381ebf2a1c56ca909861fe9489671c65\n\n\nIt's a fork I started last week of Nostr gateway (nostr.com)\n\nBTW: great tip about saving stuff in msats to avoid future messy DB migrations 👏👏 https://example.com/ 6137 427253 427251.427253.427304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6442601261329 0 \N \N f 311783846 \N 2 41621905 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407259 2025-02-17 21:24:34.358 2025-03-29 22:39:49.499 \N [38% of US homebuyers under 30 bought their house with financial help from family](https://stacker.news/items/241045/r/mo)\n https://example.com/ 21291 406620 406297.406620.407259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7719187679861 0 \N \N f 385267915 \N 3 237493870 0 f f \N \N \N \N 406297 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435472 2025-03-12 17:53:28.874 2025-03-29 22:39:49.499 \N Day 123 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20525 435471 435217.435471.435472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5951693682104 0 \N \N f 21149880 \N 1 206385634 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441895 2025-03-18 11:03:36.51 2025-03-29 22:39:49.499 \N I am improving my CLI and security skills to become a better node operator. I stumbled across [Over The Wire](https://overthewire.org/wargames/), a site where you can SSH into the server to solve security related problems. I'm halfway through the first game and it's quite challenging, but for me it's the best way to learn these things. https://example.com/ 21571 441866 441866.441895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.77152610322435 0 \N \N f 17386547 \N 1 168827593 0 f f \N \N \N \N 441866 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403724 2025-02-15 06:17:35.223 2025-03-29 22:39:49.499 \N Interestingly, as of 2022 Reddit had an ARPU of only $0.6 (which is really, really low - they are not a popular or mainstream advertising platform, their cultural impact is disproportionate relative to revenue).\n\nIn SN terms that's 1400 sats per user per year in revenue. https://example.com/ 651 396409 396409.403724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.375954033384858 0 \N \N f 139075549 \N 1 241731636 0 f f \N \N \N \N 396409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443182 2025-03-19 06:03:12.123 2025-03-29 22:39:49.499 \N I had the most amazing meal in our teammate's (Fi3) family owned restaurant in Florence last year, it was the first time some of us met in person. \n\nI didn't order anything ,FI3 just keept ordering food until I passed out, here's one photo.\n\n![IMG_8986.png](https://m.stacker.news/22402)\n\nPhoto of me under the table available on request. \n https://example.com/ 17713 443100 443099.443100.443182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8154817201984 0 \N \N f 215193695 \N 1 207269377 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424401 2025-03-04 04:11:52.229 2025-03-29 22:39:49.499 \N Voting system particulars are opaque to regular users, but visible to developers, since you have open source. So malicious agents will be ready with their bots the moment SN userbase (/daily coin flow) reaches a certain level.\n\nFor instance, using a small botnet to create and fund 100 accounts with 1000 sats each (~30 usd cost). Could use this to for instance:\n\n- Create superpower users. By having all the bots post (chatgpt generated stuff so it's not so obvious), then upvote each others posts (and a few externals, to fuzzy analyis), it seems that the "graph of trust" generated could be gamed such that arbitrary amount of "trust" can be given (or taken away, by flagging/downvoting) to any user.\n\n- DDos your trust graph (which seems to have O^3 time complexity? So 1 sat/comment -> ~260 USD to make 1M ItemAct (etc) from separate users -> 1 TB adjacency table for trust..) It appears the trust-graph has a heavy recursive algorithm, I don't see any load tests for it but i might be wrong.\n\n- I haven't looked super deep into the graph construction algorithm so you might have ways to prevent the above. But in case you haven't considered this: Could PageRank fit as an ranking algorithm instead of the graph? You want to give rank to users who zap high quality posts (early), and divide their rank by total number they zap, then rank by how many incoming vs outgoing zaps per user. IIRC it is O(n+m) complexity (n - nodes, m - links).\n\n- Since Rewards calcs are done at a public, given time every 24hs, the same attack as above, or any other extracted from the source code can be done just before Reward calc to suddenly steal all 21% of posts and get all the rewards. \nSuggestion: Randomize the times these calculations are performed. Also extract out from open source the "heart" of vote calculation.\n\n- Generally write load testers for big user influx cases, see what happens. https://example.com/ 14990 424382 423384.423591.423593.423595.423601.424009.424015.424037.424049.424082.424094.424099.424382.424401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.30077846044445 0 \N \N f 506045521 \N 3 78416203 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448260 2025-03-22 14:12:40.315 2025-03-29 22:39:49.499 \N Here are two tools that may cover some of your needs\n- https://bc-2.jp/tools/txeditor2.html\n- https://siminchen.github.io/bitcoinIDE/build/editor.html https://example.com/ 10981 448054 448054.448260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.08978864966367 0 \N \N f 242722847 \N 1 42554542 0 f f \N \N \N \N 448054 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447053 2025-03-21 15:31:31.465 2025-03-29 22:39:49.499 \N I'll do my best to ship it today. If not today by the end of the weekend. 🫡 https://example.com/ 17316 446880 446880.447053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3432977816315 0 \N \N f 381166551 \N 2 114656204 0 f f \N \N \N \N 446880 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423284 2025-03-03 07:27:08.655 2025-03-29 22:39:49.5 \N Binance isn't clogging the mempool. They're outbidding everyone else. \n\nWho knows why though. 😂 https://example.com/ 676 423280 423163.423280.423284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.37929496618409 0 \N \N f 36361776 \N 1 96113437 0 f f \N \N \N \N 423163 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422640 2025-03-02 15:35:31.161 2025-03-29 22:39:49.5 \N Kudos for this interesting experiment, and the interesting theory behind it.\n\nA thing I think about a lot wrt online communities is how to encourage "good-ness" where "good" is a tricky term to define. Maybe it's easier to say what it's not: what gets produced by the classic advertising model, where the site is hell-bent on increasing time-on-site, driving "engagement" (for a certain type of engagement), click-throughs, etc.\n\nI think we all have a gut feel for how shitty and poisonous this is. What it feels like. So what are other ways a site can feel, what are other objective functions one could aspire to that affirm something valuable, that add something good to the world? How might one design for that, what interactions might encourage it?\n\nThere's some aspects of your "pseudo-family" idea in there, I think. https://example.com/ 3706 422633 422203.422207.422399.422491.422579.422583.422586.422604.422611.422620.422633.422640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8374465718491 0 \N \N f 116473795 \N 1 98300683 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416660 2025-02-25 18:45:02.915 2025-03-29 22:39:49.5 \N So whoever has collected the KYC information, will always have a record of that amount of bitcoin to your name, no matter how much mixing you do. \n\nThis might be a concern if you think your government may one day come knocking on the door demanding your coins (rather like the gold situation in the USA in the 1930s).\n\nThe only way to clear this record is to sell the KYC coins back to the KYC exchange, thus settling the balance to your name to 0.\n\nIf that isn't a threat you're worried about, then mixing will still offer forward privacy. It will obscure from the KYC entity where you later spend your coins. This may still be valuable to you.\n\nAll depends on your threat model. https://example.com/ 5175 416652 416536.416652.416660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.99994742988786 0 \N \N f 33662177 \N 1 80612578 0 f f \N \N \N \N 416536 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447133 2025-03-21 16:26:06.798 2025-03-29 22:39:49.5 \N >What's been different since quitting? Kinda nothing. I haven't desired it.\n\nIts kinda funny that way huh? After a while you kind of just forget about it, quitting sugar and nicotine seem like life long battles though.\n\n https://example.com/ 3347 447113 446371.446745.447113.447133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.650955763052856 0 \N \N f 359421453 \N 4 246626561 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 10:54:59.218 f \N \N \N 0 0 0 0 1 0 0 428788 2025-03-07 15:45:15.915 2025-03-29 22:39:49.5 \N Day 208 of snailposting everyday 'til BTC hits $100k.\n\n...and 8 push-up(s).\n\n__@_'-' https://example.com/ 17116 428441 428441.428788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1653860152992 0 \N \N f 15462350 \N 1 149877593 0 f f \N \N \N \N 428441 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400300 2025-02-12 02:09:14.378 2025-03-29 22:39:49.5 \N > Szabo's point is that there is a mental cost associated with making a payment, even a micropayment.\n\nSzabo's hopelessly wrong about that. *Lots* of things are associated with per-use, or even per-second, micropayments. Every time you turn on a lightbulb or a tap you're paying by the second for the power and water you're using. Sure, the micropayments are added up to a monthly bill at the end. But they're still payments like any other.\n\nIndeed, the trope of middle income parents getting angry at kids for leaving lights on or taking long showers is precisely *because* those things are micropayments. Hell, I once got (mildly) yelled at by a boss when I forgot to turn off the electric heaters when I left the office. He had worked out that it cost ~$10/day to run, and he wasn't going to waste that money if he could help it. https://example.com/ 7674 400261 400261.400300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.83742109987062 0 \N \N f 86221013 \N 1 152550683 0 f f \N \N \N \N 400261 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407793 2025-02-18 11:40:48.355 2025-03-29 22:39:49.501 \N ![Men vs Women](https://i.imgflip.com/79ag8m.jpg) https://example.com/ 21444 407790 407790.407793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6393810319044 0 \N \N f 19161190 \N 1 240173705 0 f f \N \N \N \N 407790 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437538 2025-03-14 15:33:38.119 2025-03-29 22:39:49.5 \N Big milestone for Cashu: https://twitter.com/CashuBTC/status/1684170098297147393 https://example.com/ 7668 437521 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3855346724523 0 \N \N f 965601327 \N 7 21298152 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437465 2025-03-14 14:42:07.66 2025-03-29 22:39:49.5 \N You might have to be a parent to appreciate this one.\n\nTMI, but our daughter finally pooped on the potty on her own volition. It's been months of battles over this and now we might finally be free of diapers. \n https://example.com/ 20734 437447 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0736261535192 0 \N \N f 1651070226 \N 13 14698701 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448773 2025-03-22 21:22:05.529 2025-03-29 22:39:49.5 \N # What is this?\n\nThis is a bitcoin wallet designed around the idea of making every spend a coinjoin. I want it to do a coinjoin whenever you send money and I want it to only accept money from wallets who sent the money inside a coinjoin.\n\n# How can I try it out?\n\nClick here (testnet only): https://brilliancebitcoin.github.io/void/\n\n# Why did you do this?\n\nMostly to dunk on monero people. Also because I care about people's privacy, especially my own, and current coinjoin wallets are too hard to use, I want something simple and easy, (I know, that's not what this wallet is yet, but I think the foundations are there. Have some patience and go use some other coinjoin wallet while you wait.)\n\nMonero people show up in my twitter feed all the time touting their block explorer where each transaction hides the sender and the recipient. Well I figure if I make a wallet that only uses coinjoins, we can dunk back on them by showing them that bitcoin has the same thing. Use void wallet and all your transactions will hide the sender and the recipient, just like in monero.\n\nAlso, I'm not satisfied with the way coinjoins are done in bitcoin and I want to improve them. My chief criticisms are: the coordinators in samourai and wasabi can be targeted by law enforcement, which may scare people away from running the coordination software, and samourai and wasabi also prioritize or require rounded coinjoin amounts like 1 million sats, 100,000 sats, or 10 million sats, which makes it hard to use coinjoins for everyday payments. For those of you pointing out that joinmarket never had these problems, I know, I love joinmarket, but I don't think any current version of it works well on mobile, so it doesn't escape my criticism either.\n\n# Oh, I thought you did this because you don't like the fee structure in other coinjoin implementations\n\nOh yeah, I forgot about that. Samourai, wasabi, and joinmarket all make regular users pay someone to do a coinjoin, and samourai and wasabi also make you pay the coordinator when you want to add funds to the coinjoin pool. That all seems like maybe it's overkill. Ok it's probably not, there are good reasons for doing that, let me rephrase.\n\nIn samourai and wasabi, there is a semi-constant trickle of coinjoins every block or two, and people pay money to park their coins in that trickle and just basically coinjoin all the time. The same people, if they used joinmarket, would get paid to do that. And both of those models are popular with users. Isn't that a bit weird? Why are people happy to pay to constantly coinjoin when they can get paid to constantly coinjoin? I'm not sure, but it has a consequence that if I make that part free, I can use a "save more money" pitch in both directions:\n\nIf you want to park your coins somewhere where they will constantly coinjoin, void wallet gives you that for free, unlike samourai and wasabi. And if you just want to click "send" and know a coinjoin happened, void wallet is cheaper than any of the others, because in void wallet you just pay a mining fee, you don't have to pay a coordinator's fee or a market maker's fee.\n\n# Who is the coordinator in void wallet?\n\nYour wallet acts as the coordinator whenever you hit the Send button. It creates a psbt, goes out to find other people who use this wallet, and invites them to be in the coinjoin. Then you pass your psbt back and forth with your invited coinjoiners until everyone has contributed some coins and cosigned the transaction. Then you broadcast the signed transaction. Since your wallet is the coordinator for your transactions, you don't have to pay anyone to do the coordination for you, and law enforcers have no central intermediary to target for enforcement. They'll never know who is coordinating what!\n\n# Where can I find more info?\n\nhttps://github.com/brilliancebitcoin/void/ https://example.com/ 21119 448732 448527.448695.448713.448732.448773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6066643584441 0 \N \N f 121023285 \N 1 141977625 0 f f \N \N \N \N 448527 \N 0 0 \N \N f \N 2025-03-29 14:42:43.847 f \N \N \N 0 0 0 0 1 0 0 433607 2025-03-11 09:00:48.347 2025-03-29 22:39:49.5 \N [![asshole.jpg](https://imgprxy.stacker.news/nSRbLYoYGUkL3sq5wh7XfrgLU4y2ObBxHMGRlk7RXIQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvMTNOTkhrYnIvYXNzaG9sZS5qcGc)](https://postimg.cc/qN4RB5JN) https://example.com/ 699 433444 433217.433347.433444.433607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2811615142931 0 \N \N f 228832954 \N 1 192153844 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410391 2025-02-20 13:11:15.674 2025-03-29 22:39:49.5 \N Today is my birthday. I'm 49. https://example.com/ 1650 410156 410156.410391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.80798684708907 0 \N \N f 248028980 \N 1 12921999 0 f f \N \N \N \N 410156 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436404 2025-03-13 14:33:35.894 2025-03-29 22:39:49.501 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **13** https://example.com/ 3461 436401 436273.436391.436398.436401.436404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.14944610130812 0 \N \N f 109472734 \N 1 93787886 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 07:51:29.534 f \N \N \N 0 0 0 0 1 0 0 437287 2025-03-14 12:30:02.234 2025-03-29 22:39:49.501 \N Egg sandwich for breakfast at a deli https://example.com/ 7667 437218 437218.437287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1441655435486 0 \N \N f 245502488 \N 3 222670449 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410471 2025-02-20 13:49:54.087 2025-03-29 22:39:49.501 \N Amazed with how much I've been getting. I thought it might ave something to do with the 18m sats returned from that bug. So I'm enjoying it while it lasts https://example.com/ 15843 410269 410269.410471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.49652328064878 0 \N \N f 120381900 \N 1 92605211 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434409 2025-03-11 21:32:10.526 2025-03-29 22:39:49.501 \N For something meant for 18 years later, a steel engraved seed plate in a tamperproof bag would probably be my move. https://example.com/ 20073 434352 434352.434409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.12551400408222 0 \N \N f 147814907 \N 1 168092650 0 f f \N \N \N \N 434352 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407236 2025-02-17 21:04:51.809 2025-03-29 22:39:49.501 \N I look at muting as saying, "this content is not for me," while downzapping is saying, "this content actively makes Stacker News worse for everyone." https://example.com/ 21207 407209 406115.407198.407209.407236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0350303610239 0 \N \N f 428807525 \N 3 244966555 0 f f \N \N \N \N 406115 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433080 2025-03-10 19:40:22.292 2025-03-29 22:39:49.501 \N Staying humble https://example.com/ 21012 433076 433056.433076.433080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6171197869792 0 \N \N f 223293721 \N 1 107994839 0 f f \N \N \N \N 433056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423013 2025-03-02 21:28:28.793 2025-03-29 22:39:49.501 \N Your title is incorrect. The OpenTimestamps grant was entirely separate and unrelated; I do not think OpenTimestamps is very relevant to Nostr's scalability. https://example.com/ 10409 422628 422628.423013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.77416775529455 0 \N \N f 156354449 \N 1 61596833 0 f f \N \N \N \N 422628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428041 2025-03-06 19:42:34.011 2025-03-29 22:39:49.501 \N That chart generated one of my first experiences of existential dread. https://example.com/ 805 427966 427934.427966.428041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4745441668785 0 \N \N f 71380519 \N 1 1779372 0 f f \N \N \N \N 427934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413534 2025-02-23 09:58:19.252 2025-03-29 22:39:49.501 \N https://cdn.discordapp.com/attachments/796935699034144798/1224803586077098184/8lbbcf.png?ex=661ed23a&is=660c5d3a&hm=bd4d1e96d5a3961ba7d9e07fbb18b620f0d8f5d6a86bd1dee4030d34c845973b& https://example.com/ 11192 413523 413523.413534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8946363712949 0 \N \N f 854545503 \N 7 15446375 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454722 2025-03-26 15:08:00.941 2025-03-29 22:39:49.501 \N GLP-1 is the perfect pharma solution since you need to keep taking it forver otherwise you'll gain the weight back. Plus the side effects seem to be far from trivial, specially in fucking around with your gut https://example.com/ 5497 454713 454701.454713.454722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7087379000579 0 \N \N f 158095371 \N 1 210794532 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422842 2025-03-02 18:23:07.751 2025-03-29 22:39:49.501 \N If memory serves, you started working full time on Deezy a few months before Ordinals really blew up. I remember you were focused on lightning liquidity services, and then when Ordinals hit, started experimenting with lightning minting and transfer services before really focusing on rare sat hunting. Can you talk a bit about that pivot? I think a lot of people outside the ordinals ecosystem might have been confused/oblivious to that shift. I hear (as I'm sure you do) a lot of people say "why are you working on ordinals? why not work on X???" where X is whatever that person thinks is most important to Bitcoin. I think there's a lot to be learned from people who are actually building stuff talking about where they decided to spend their time and why. https://example.com/ 20647 422678 422587.422678.422842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0970898432837 0 \N \N f 141166240 \N 1 14294825 0 f f \N \N \N \N 422587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444255 2025-03-19 18:36:14.416 2025-03-29 22:39:49.502 \N Day 254 of snailposting everyday 'til BTC hits $100k.\n\n...and 54 push-ups. (30 - 20 - 4)\n\n__@_'-' https://example.com/ 11522 444168 444168.444255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3345666040543 0 \N \N f 37245254 \N 1 75544322 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422363 2025-03-02 12:11:52.03 2025-03-29 22:39:49.502 \N Anyway, thank you very much for all the replies. Now I'm getting a picture of how this platform works. It's a community where you share and contribute your thoughts about topics that help others to learn or be updated https://example.com/ 21398 422056 422056.422363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4256251278762 0 \N \N f 82360769 \N 1 33824323 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434611 2025-03-12 04:20:35.797 2025-03-29 22:39:49.502 \N You should absolutely consider putting limits and tigher security around your LND node if it's capable of withdrawing that much in one go. Users are one step function away from admin access to your funds. As a custodian, those need to be protected better. https://example.com/ 794 434560 434488.434560.434611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9832775822576 0 \N \N f 141470675 \N 1 244719457 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 2025-03-18 21:38:40.629 f \N \N \N 0 0 0 0 1 0 0 421684 2025-03-01 21:51:04.497 2025-03-29 22:39:49.502 \N Beat me by two seconds. I thought I got this one as fast as possible, but apparently not. https://example.com/ 2322 421677 421567.421585.421655.421677.421684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5958747718691 0 \N \N f 14389768 \N 1 210356010 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436129 2025-03-13 10:42:27.789 2025-03-29 22:39:49.74 \N I have a complaint about Stacker Saloon. When my day is winding down and I feel like kicking back, grabbing a beer and chatting with my favorite stackers, they are all sleeping or busy living their lives. The place is dead. This is unacceptable. Therefore, I am asking that all the people I want to chat with either:\n1. Relocate to the eastern time zone, or\n2. Rearrange their days.\n\nThanks in advance. https://example.com/ 4819 435908 435908.436129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.852700523635 0 \N \N f 138621701 \N 2 61935913 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 2025-03-20 10:41:43.48 f \N \N \N 0 0 0 0 2 0 0 403941 2025-02-15 11:44:43.466 2025-03-29 22:39:49.74 \N Godzilla sounds poor https://example.com/ 21356 403937 403824.403857.403868.403869.403918.403919.403922.403926.403927.403934.403937.403941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2920194700642 0 \N \N f 139914359 \N 1 163025533 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443746 2025-03-19 13:54:27.282 2025-03-29 22:39:49.741 \N Critical thinking and the ability to have a measured / considered debate. https://example.com/ 9333 443691 441695.441851.441862.441878.443259.443691.443746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1695598564945 0 \N \N f 43033001 \N 1 172417176 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447111 2025-03-21 16:18:43.262 2025-03-29 22:39:49.742 \N I thought about it overnight.\n\nI think what being a bitcoiner means to me -- or at least, what I want it to mean -- is digging deeply into things. The origin of btc is technically informed people who dug into other aspects of how the world works. They were actually trying to understand the social world of politics and economics in the same way they understood tech, as systems whose functioning had implications -- often, non-intuitive implications -- for the world; and they weren't afraid, as outsiders, to get after it with the same intelligence and focus as they built other complex systems. If you read the old bitcointalk discussions they're both deep and broad. They were informed across a host of fields and topics. Not everyone, but many; and the people in the 'audience' respected actual learning. I wish I could have been there, live.\n\nContrast that with the dominant form of expression today, which is a sort of mindless tribalism, repeating standard catchphrases, accusations of heresy of one type or another, forming your opinion based on what some _btc thought leader_ says. You can identify the _thought leaders_ by who's built their personal brands on the podcast circuit. They've got giant bags, and they'll go through the talking points because ideas are now a threat. They have tons of hot takes on politics without knowing anything about politics, or history, or really anything. Their reading list is a circle jerk curriculum of warmed-over propaganda. Every so often I wind up on an airplane sitting next to a 'bitcoiner' and my internal voice always says _oh shit_.\n\nSo anyway, to your original question, that first type of active seeker and far-ranging thinker and builder, that's the version of bitcoiner that I'm holding onto. https://example.com/ 2508 447086 446371.446452.447063.447086.447111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6861715785519 0 \N \N f 604917747 \N 5 123028675 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:03:30.704 f \N \N \N 0 0 0 0 2 0 0 415928 2025-02-25 08:58:22.67 2025-03-29 22:39:49.743 \N I once read (in a book called "The Music Lesson" by Victor Wooten) that an entertainer's ultimate goal is provide the pathway for the listener/consumer to "enter into attainment". \n\nWhat "attainment" means can be rather subjective, but ultimately, it should inspire and light up the brain a motivating way. Today's content creators seem to not have that objective in mind at all, which in a way, makes it much easier to choose who to follow (or not follow). https://example.com/ 9438 415918 415904.415915.415918.415928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.16633619280554 0 \N \N f 88079318 \N 1 237593565 0 f f \N \N \N \N 415904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416605 2025-02-25 18:01:47.076 2025-03-29 22:39:49.743 \N I'm starting out from the beginning, building my bitcoin node. The on to my lightning node. Newb obviously but love this site. Very inspiring and ful of great info. Learned so much about lighting wallets pro cons....wow https://example.com/ 8173 416578 416158.416221.416253.416288.416551.416578.416605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2201899331757 0 \N \N f 893740287 \N 8 237624463 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410531 2025-02-20 14:18:57.594 2025-03-29 22:39:49.744 \N IMO, our primary goal should be to scale Bitcoin to become the most used currency on earth. It's crucial not to leave the payments market to CBDCs as they are inferior money that is toxic to free societies.\nTo the best of my knowledge, sidechains are the most plausible scalability solution we currently have. https://example.com/ 13622 410249 410249.410531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1723249913804 0 \N \N f 148377568 \N 1 101297554 0 f f \N \N \N \N 410249 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408003 2025-02-18 14:18:29.705 2025-03-29 22:39:49.744 \N I'm happy to take the tax hit on using my BTC to promote services like Fountain and Stacker. However I find it difficult to use it on large goods/more costly items because the hodl mentality kicks in and makes me think of my buying power in the future so I'm more inclined to use dirty fiat 🙂 https://example.com/ 17157 407882 407882.408003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.40342542402681 0 \N \N f 269042757 \N 2 54259158 0 f f \N \N \N \N 407882 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435505 2025-03-12 18:32:33.646 2025-03-29 22:39:49.738 \N I do share to nostr and sometimes I'll tell someone on there that they should check out Stacker News.\n\nHopefully, what will be even better for Stacker News growth is our Stacker Sports Podcast. https://example.com/ 16230 435497 435497.435505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.17677520249015 0 \N \N f 496502555 \N 4 155810911 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 2025-03-19 16:17:51.317 f \N \N \N 0 0 0 0 2 0 0 410706 2025-02-20 16:17:43.309 2025-03-29 22:39:49.738 \N Unchained's collaborative custody model requires holding (typically multiple) hardware wallets, each of which costs ~$100 (or more!). This means our solution isn't suitable for people who have just a few hundreds of dollars worth of bitcoin -- which is most people who own bitcoin!\n\nMost Unchained clients are wholecoiners, the average client holds >10BTC, orders of magnitude above average holdings at most exchanges. Our clients care about privacy, security, and service. We pride ourselves on delivering these :)\n\nSurprise? Perhaps the extreme variance of the *kind of people* that become our clients. They're not what you might expect if your image of bitcoiners comes from bitcoin podcasts or bitcoin twitter. Our clients can be old or young, they can be extremely technical or they can be folks who fumble with computers. They have all sorts of professions, from programmers, to small business operators, to executives, to stay-at-home moms. I'm extremely proud that our concierge onboarding and support teams have managed to help so many people learn how to use hardware wallets and feel safe holding bitcoin through collaborative custody :) https://example.com/ 15732 410703 410507.410696.410699.410703.410706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1638053318963 0 \N \N f 228713592 \N 2 65474449 0 f f \N \N \N \N 410507 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450432 2025-03-24 00:02:46.757 2025-03-29 22:39:49.739 \N We are entering into a highly adversarial environment. Learn the various tools, practice using them.\n\nRun your own node over tor. The time for fucking around is over. https://example.com/ 717 450364 450364.450432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.837704250173 0 \N \N f 144928898 \N 1 124781376 0 f f \N \N \N \N 450364 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422819 2025-03-02 18:07:50.018 2025-03-29 22:39:49.739 \N preparing to present and post about our new "get a vpn tunnel in 60 seconds - priced in sats, paid with lightning" project - https://www.ivpn.net/light\nif stackers have any tips of where we can put in front of LN users you know what to do\nˇˇˇˇˇ https://example.com/ 13903 422808 422808.422819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0291126063543 0 \N \N f 152759347 \N 1 41637360 0 f f \N \N \N \N 422808 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456745 2025-03-27 20:43:59.925 2025-03-29 22:39:49.739 \N Can you smell the sweet scent of Friday?\nhttps://imgprxy.stacker.news/B16TCuG3Rua04v1EJNT2M9-Se3S7EWHLyI1zhx-QhE0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9sb2xhbGFtYmNob3BzLmNvbS93cC93cC1jb250ZW50L3VwbG9hZHMvMjAyMy8wMS9TdGFyLVdhcnMtRnJpZGF5LU1lbWUuanBlZw https://example.com/ 650 455893 455893.456745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6030262902718 0 \N \N f 257344749 \N 2 38572751 0 f f \N \N \N \N 455893 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423789 2025-03-03 15:46:14.097 2025-03-29 22:39:49.739 \N Day 202 of snailposting everyday 'til BTC hits $100k.\n\n...and 2 push-up(s).\n\n__@_'-' https://example.com/ 685 423750 423750.423789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6213441919069 0 \N \N f 655135090 \N 5 85993373 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435129 2025-03-12 13:40:12.532 2025-03-29 22:39:49.739 \N I stumbled upon this [clip of Eric Weinstein](https://www.youtube.com/watch?v=fSNzLpWE3oE) the other day. He had a great quote:\n\n>The good news is that you can rearrange any subject to learn most of it very, very quickly. The bad news is it will feel terrible because you will be told you're doing the wrong thing and dooming yourself to a life of mediocrity as a Jack-Of-Many-Trades-Master-Of-None....\n>*But in fact the problem is that the Jack-Of-**One**-Trade is the connector of **none*** https://example.com/ 3396 435030 435030.435129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1816856428252 0 \N \N f 7226218 \N 1 57795532 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 12:20:42.183 f \N \N \N 0 0 0 0 1 0 0 424386 2025-03-04 03:23:16.239 2025-03-29 22:39:49.739 \N However you're generating an invoice, there should be a route hint included in the result. This tells the payer how to get sats to your node if it will need to use private channels.\n\nTry generating an invoice and decode it. If a route hint is not included for your private channel(s) with inbound liquidity, it could be impossible for a sender to complete the payment. Generally your node should know that payment will be impossible without a route hint (if that's indeed the case) and it should include one without prompting. https://example.com/ 1173 424149 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424123.424149.424386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4874049746851 0 \N \N f 124450140 \N 1 61277456 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436037 2025-03-13 09:06:32.588 2025-03-29 22:39:49.74 \N [![darth-impressive.gif](https://i.postimg.cc/CxYfVMyR/darth-impressive.gif)](https://postimg.cc/YhnS6HC7)\n\n*I came here just to say this* https://example.com/ 17209 436028 436028.436037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5375886550054 0 \N \N f 4120074 \N 1 123576513 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:53:12.971 f \N \N \N 0 0 0 0 1 0 0 404211 2025-02-15 16:34:40.312 2025-03-29 22:39:49.74 \N If you have to ask, then you shouldn't be doing it. \n\nRun a node because you make frequent payments, want to experiment, or develop lightning apps. Don't do it because you think you'll make money off of routing fees. https://example.com/ 16954 404014 404014.404211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6944577667159 0 \N \N f 243368053 \N 1 26305861 0 f f \N \N \N \N 404014 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434933 2025-03-12 10:51:41.63 2025-03-29 22:39:49.74 \N Working on a basic react page that talks to a lightning node via the LN GRPC node package. while doing this, learned about Polar and Docker. Exciting stuff!! https://example.com/ 10398 434898 434646.434877.434898.434933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.21727806952426 0 \N \N f 246719970 \N 1 2712645 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 05:06:25.809 f \N \N \N 0 0 0 0 1 0 0 413935 2025-02-23 14:33:44.859 2025-03-29 22:39:49.741 \N IIRC LNBits circumvented this by intercepting invoices before handing them to LND, and processing "to-self" invoices separately as database-only transfers. But it would indeed be nice if LND had it baked in, instead of everybody that has a use case for it reimplementing the feature. https://example.com/ 3979 413903 413675.413903.413935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5766558883015 0 \N \N f 75199872 \N 1 64117722 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435468 2025-03-12 17:48:33.153 2025-03-29 22:39:49.741 \N So wait, a custodial exchange is advocating custodial bitcoin at a time when there is less bitcoin on exchanges than ever before? \n\nThis is a shocker. https://example.com/ 1447 435465 435458.435465.435468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8971954716781 0 \N \N f 474240522 \N 2 84426785 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N 2025-03-19 14:17:44.589 f \N \N \N 0 0 0 0 1 0 0 443342 2025-03-19 09:22:27.062 2025-03-29 22:39:49.741 \N I personally (not sn) contributed 800k to the sponsorship satsraiser through @anon. Not bad stackers! https://example.com/ 1401 443187 443187.443342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1941221784412 0 \N \N f 45808754 \N 1 196274980 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455521 2025-03-27 05:18:27.913 2025-03-29 22:39:49.741 \N They're not "requiring banks to adopt crypto" per se, at least the formulation is misleading. The regulator is reminding banks that they have to accept legal customers, and can't cite "crypto" as a reason not to accept them. I.e., it's doing the opposite the US is doing, which just made non-engagement with the space a prerequisite for whoever will take over Silicon Valley Bank. \n\nWhile the Beijing regulators do steer Hong Kong, it's still under One Country, Two Systems. Hong Kong is used as a laboratory to experiment while keeping the larger Chinese banking system (more or less) isolated. So this is the national regulator directing the local banks to prevent them from letting local risk-management or regulatory fears drive them to pre-emptively reject crypto companies.\n\nI don't think this has anything to do with the digital yuan, or the BRICS interchange currency that's only in its pre-planning stage in any case. I'd assume, rather, that they're trying to profit from an increasingly negative US regulatory environment, trying to draw business to Hong Kong that otherwise would have moved from the US to Singapore or Malta. This seems the more likely direct incentive here.\n https://example.com/ 641 454403 454221.454403.455521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2453790500394 0 \N \N f 951221522 \N 6 49900965 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423999 2025-03-03 19:10:25.018 2025-03-29 22:39:49.741 \N > In most countries, spending Bitcoin creates a taxable event\n\nIf on Stacker News I'm spending Bitcoin and I'm paying here to someone for the service named:\nproviding a good reply to read - **does it create a taxable event?**\n\nin other words: *"Don't comment on SN because if it is good - it will be a taxable event."* ;)\nlet's not be slaves... (we aren't already, it seems... :) https://example.com/ 12808 423993 423928.423951.423962.423993.423999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0854998036461 0 \N \N f 55798064 \N 1 182159722 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421163 2025-03-01 13:10:47.677 2025-03-29 22:39:49.741 \N If something is broken I suppose it's best to find out during a bear market when there is less news about bitcoin going about. \n\n*makes sure has node backup https://example.com/ 5776 421157 420635.420987.421157.421163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.503152629198 0 \N \N f 567788420 \N 4 31789321 0 f f \N \N \N \N 420635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410475 2025-02-20 13:52:47.949 2025-03-29 22:39:49.741 \N Hmm I don’t get this mash stuff. I go to boost and I got to create an account? Like why? I just want to tip for the developer that put this together https://example.com/ 882 410444 410444.410475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1408225266021 0 \N \N f 45663504 \N 1 30176192 0 f f \N \N \N \N 410444 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424212 2025-03-03 22:07:55.157 2025-03-29 22:39:49.742 \N I thought Germany would be lower on the list, but maybe I've been reading too many posts by @TomK 😆 https://example.com/ 20691 423386 423314.423386.424212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0907449851045 0 \N \N f 69203216 \N 1 152994899 0 f f \N \N \N \N 423314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435416 2025-03-12 16:56:54.805 2025-03-29 22:39:49.742 \N I gave it a quick spin a couple months back, but didn't test it extensively.\n\nWasabi 2.0 seemed to be more geared towards beginners than its predecessors. When initiating a coinjoin for example you have high level settings like fast / cheap / private, but it was hard to discern what exactly was going on under the hood. There was also a notable lack of coin control, which again was an intentional design decision as users can easily screw that up and compromise their privacy.\n\nI think it's good to make coinjoin more accessible to newbies, but perhaps more experienced users wanting greater control might find this aspect frustrating. Personally I use Sparrow as I prefer the UX, as well as the auto-withdrawal to HWW feature (which I didn't see as an option in Wasabi 2.0). https://example.com/ 667 435396 435261.435396.435416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3336156528569 0 \N \N f 190049538 \N 2 66613180 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-19 10:28:24.09 f \N \N \N 0 0 0 0 1 0 0 435608 2025-03-12 20:11:54.421 2025-03-29 22:39:49.742 \N I think it's more nostr that should integrate with sn, by formalising in nips the features for paying to post to a relay, tipping, and web of trust etc, all of them still sorely missing in nostr atm imho.\n\nOr should sn just become a nostr client that curates content, a bit like a layer 2 on top of nostr, as described here https://read.pourteaux.xyz/p/the-moral-imperative-of-a-distributed? https://example.com/ 1469 435551 435551.435608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8587984785069 0 \N \N f 419458760 \N 3 196819206 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 2025-03-19 21:23:40.3 f \N \N \N 0 0 0 0 1 0 0 437970 2025-03-15 04:04:06.327 2025-03-29 22:39:49.742 \N We share the same concerns. The ad-model, any business model where the users aren't paying for their lunch, will lead to [enshittification](https://en.wikipedia.org/wiki/Enshittification). It's heartbreaking to see how easy it is to make a community turn on (report) each other, how banal / normal the people who thrive on doing that are, "the people who point at witches". Show them a picture of a witch (provided conveniently by your advertiser-partners) and see the toxic fire spread. \n\nI think of these pointer people like our immune systems T-cells, their job is to hook onto "bad guys", show them a picture (vaccine) of one and they make sure you never see a nazi/polio again. So i have sympathy for these people. Though thanks to ad-model businesses, they mostly cause auto-immune responses.\n\nAs for how to encourage non-toxicity. Your guess is as good as mine. I think stacker can overtake reddit and hacker.news within a year if they play it right. Users are not the product on this site. This is the way to do it. Just need to lobby apple to allow zaps to people (or solve that through a apple-gated sidechain). It'll explode. https://example.com/ 997 437966 437966.437970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3082947050254 0 \N \N f 465612582 \N 3 236137335 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443454 2025-03-19 11:07:58.376 2025-03-29 22:39:49.742 \N Howdy folks!\nI'll have a good beer, or at least a single malt, please https://example.com/ 9450 443388 443388.443454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.08965030331073 0 \N \N f 778648708 \N 6 242582306 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N 2025-03-26 05:22:50.016 f \N \N \N 0 0 0 0 2 0 0 435384 2025-03-12 16:37:01.796 2025-03-29 22:39:49.743 \N Picture 1:\nSaife: Here is a cooking book, the recipes from my grandma. This is how you cook this place to be. TOTALLY FREE.\nNayib: Thank you, I will read it in my next mandate. Will see what we can do.\n\nPicture 2:\nSaife: You must do what it says in that book, there is no other way.\nNayib: Please, just let me one more mandate... I need to stack more sats and start those volcano mining rigs.\nSaife: Sure, but after that... no more bullshit government, just Bitcoin. https://example.com/ 1609 435231 435231.435384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.96982794338084 0 \N \N f 177538607 \N 1 94747129 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 2025-03-19 19:33:27.691 f \N \N \N 0 0 0 0 1 0 0 31029 2023-06-12 00:15:10.149 2025-03-29 22:39:46.783 Found out my wife has cancer. Been holding it together all day. Thought about a few different territories before I posted this. If it does not fit please let me know, just looking for somewhere to put this. \n\nI just need to write where someone might read it. My wife has been struggling with pain for many months now. Today we were shocked to find out she has cancer. There are a lot of tests pending, including the biopsy, so some grain of hope there that it is not cancer. She is asleep now and the kids are at their grandparents. Sitting here by myself, writing this, I am just feeling crushed. We are so young, so many things planned for this year and the future... I know this is not a death sentence, but is going to be incredibly hard on everyone involved even without having any idea of what lays ahead. Seems at the minimum, surgery in the next 10 days. Then probably lots of treatments, which will make her sicker. The fear in her face when the doctor came to tell us the news - it was so outside of what we thought would happen, what we thought was going on. \n\nFor all of us, I need to put in more rigor around my days. Managing the kids is by far the hardest part of it all, letting them be kids and be free, while still getting us in and out of the house on time. Giving them the space to explore, to be children, to be with their mother. They know she has been in pain and have been great about it, but I think it is going to get so much harder from here. \n\nSo many different things going through my mind - the kids, her comfort, my sanity, money, my job ... the list keeps going. We were supposed to go to Europe this Spring. \n\nI am not a particularly emotional person, in the sense that I don't cry in public but rather keep it until these moments when I am by myself. When the doctor was talking and my wife was crying, I was focused on comforting her and my brain was being very rational - they said it's contained, we don't know much, we'll do the process, one step at a time, and then we'll be through this - but even dipping my toe into the internet reveals a very scary future, if the kids will grow to know their mother as a sickly person, or will she fully recover and exercise and live to 100 years old? We've been so healthy, so thoughtful, and yet here we are. \n\nToday she said "Am I going to die?", "I have babies...", "I was looking forward to growing old with you." - my heart breaks with every line. \n\nThank you for giving me a space to post. \N 15060 \N 31029 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1025772794366 0 \N \N f 0 \N 0 200508334 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307360 2024-11-25 00:05:07.16 2025-03-29 22:39:46.783 Inside your Bitcoin node there are two wolves # Inside your Bitcoin node there are two wolves\n\nOne of them is the consensus rules about what makes it into the blockchain. The other one is your mempool policy about what makes it into the blockchain.\n\nThe wolves are not the same. Which one is Bitcoin?\n\n# Consensus Rules: The Day Wolf\n\nConsensus is a good wolf. It may be savage, but it only kills and eats transactions that don't follow consensus rules.\n\nEvery transaction included in the Bitcoin blockchain follows a set of rules that make up what we call Bitcoin. If you run a node and you have an up-to-date copy of the Bitcoin blockchain your node agrees with all the other nodes about the rules transactions must follow. This is consensus.\n\nThere are a lot of consensus rules. People like to argue about them. Disagreements lead to forks and forks are scary, so everybody pays attention to the Day Wolf. It's a big hulking animal that's impossible to ignore.\n\n# Mempool Policy: The Wolf of the Night\n\nMempool policy is a mysterious wolf. A lot of Bitcoiners don't even know it exists, don't even know the difference between a mempool running on their node and mempool.space. Not too many people notice how the Night Wolf[^2] feels about things.\n\n[^2]: The Night Wolf is a better name for the mempool.\n\nUnless you send your transactions directly to a miner, you are probably relying on a transaction relay network created by Bitcoin nodes all around the world. If you are running a Bitcoin node with a mempool, odds are you are participating in this transaction relay network.\n\nNodes make connections to other nodes and a lot of smart people have figured out how to make sure that when a new block gets mined, [your node has already heard about almost all the transactions it contains](https://bitcoinops.org/en/newsletters/2023/05/17/#waiting-for-confirmation-1-why-do-we-have-a-mempool). Your node doesn't have to start downloading and verifying like mad when a new block shows up because it has a mempool where it keeps unconfirmed transactions it's heard about, just waiting for them to show up in a block.\n\nIn many ways, the Night Wolf is the Day Wolf's younger brother: the Day Wolf is in charge and the Night Wolf can't do something the Day Wolf doesn't agree with. Your mempool isn't going to let in any transactions that violate consensus rules.\n\nBut does the Night Wolf have to let in *every* valid transaction it hears about?\n\n# When the Night Wolf growls\n\nMaybe you've heard a little bit about the debate around ordinals and filtering and spam and so on.[^4] This is a debate about the Night Wolf.\n\n[^4]: There's been so much conversation about filtering and spam that I decided it's time we had some new metaphors to expand the semantic turf this conversation inhabits. Therefore, you are all going to get spirit animals.\n\nYou see, it turns out that some people don't like that other people are broadcasting transactions full of crappy random data (like pixel pictures of rocks) and they want to use their mempool policy to make such transactions harder to get into the blockchain.\n\nSo here's what they do: they go beat the Night Wolf and tell him that he has to slaughter any transaction he comes across that meets their criteria of what should be excluded.\n\nThey change the policy rules of their mempools to exclude transactions that are consensus-valid but, for example, that have more than a certain amount of data in the OP_RETURN.\n\nThe Night Wolf in their node dutifully becomes a wild-eyed killer.\n\n# The Night Wolf has always been a killer\n\nHe's a wolf, people. He kills things. That's what wolves do.\n\nMempool policy has *always*[^5] been more restrictive than consensus rules.\n\n[^5]: I'm not actually sure if mempool policy was more restrictive than consensus rules in early versions of bitcoin, but it has been since at least segwit.\n\nIt turns out there are already [a host of mempool policies](https://gist.github.com/instagibbs/ee32be0126ec132213205b25b80fb3e8) that let the Night Wolf slaughter consensus valid transactions so that they never move beyond his mempool. Here's just a few examples of valid kinds of transactions the average Night Wolf refuses to relay:\n\n- transactions that are big\n- transactions with a ton of signatures might\n- transactions with an nVersion that isn't 1 or 2\n- transactions that are worth less than it costs to get them mined\n- transactions that are bare multisigs\n\nSo what's the big problem with letting people add a few more policies to their mempool and make their Night Wolf especially mean and nasty?\n\n# The Day Wolf is stronger than the Night Wolf.\n\nIf a transaction is not valid by consensus rules it won't make it into a block. That's Bitcoin.\n\nBitcoin is able to do this thing we call soft-forking because of this fact. A hard fork is when you change the consensus rules so that the Day Wolf has to spare transactions he used to kill. A soft fork is when the you make the consensus rules more specific so that the Day Wolf can still kill all the transactions he used to kill, but now he gets to kill some new ones.[^3]\n\n[^3]: Here's an easy way to remember the difference: hard fork = nicer wolf; soft fork = meaner wolf. If you think I'm stretching this analogy way too far...just wait. I haven't even gotten started yet!\n\nSo the Day Wolf--consensus rules--controls what the blockchain is and this is as it should be.\n\nThe Night Wolf can't make the Day Wolf change his mind. But can the Night Wolf cause a soft fork by killing certain kinds of transactions before they get to the Day Wolf? Could you use mempool policy to mimic the effect of a soft fork?\n\n[The answer is no.](https://stacker.news/items/348349/r/cleophas?commentId=348418) No matter how strict you make mempool policy, as long as a small percentage (I've read some things that say 2 or 3 %, while others say [more like 30%](https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2022-October/021116.html)) of nodes are still relaying transactions you don't like (and are consensus valid), such transactions will make it into blocks. And once they are in blocks, the Night Wolf is powerless.\n\nBut what if all the nodes give in and embrace their own inner Night Wolves?\n\n# People start emailing the Day Wolf\n\nIf there are people who want to spend money to get consensus-valid transactions into the blockchain, there will be miners who want to earn that money. That's what the business is.\n\nAs of March 2024, there are at least 5 publicly available transaction accelerators run by mining pools ([AntPool](https://www.antpool.com/txAccelerate), [F2Pool](https://www.f2pool.com/user/tx-acc?lang=en_US), [ViaBTC](https://www.viabtc.com/tools/txaccelerator), [Binance](https://pool.binance.com/en/acceleration), [Mara](https://slipstream.mara.com/)).\n\nTransaction accelerators are generally seen as a bad thing for Bitcoin because they might lead to centralization. When some miners see transactions that the rest of the miners don't know about, they might get an edge. And miners with an edge quickly become miners with more hashpower. Now we have to deal with a new animal: centralization.\n\nCentralization is like a big evil bear that wants to come eat up both wolves and all the nice little lemmings that play with them (that's you and me).\n\n# Why not just let the two wolves become one? (Relay all valid transactions?)\n\nSince we don't want to get eaten by the evil bear of centralization, why don't we just make sure that mempools will accept every consensus-valid transaction? If we did that, nobody gets an edge, transaction accelerators return to just being a tool for people who don't know how to use CPFP and RBF and we end up with just one wolf.\n\n@benthecarman wrote [a Bitcoin Core PR back in May 2023](https://github.com/bitcoin/bitcoin/pull/27578) to allow nodes to reduce some of the major differences between the wolves and the discussion around it is a pretty quick primer on what's at stake.\n\n# Inside Bitcoin culture there are two wolves\n\nBitcoin achieves an incredible thing: it manages ensure that a utxo created in 2009 with who knows what kind of weird experimental script thingie (because it was *all* a weird experimental thingie back then) can still be spent today despite all the many clarifications that have been made to the consensus rules.\n\nBut this means the Day Wolf can go berzerk. He still needs more training. And the Night Wolf can help with that. \n\nEXAMPLE:\n\n> Pre segwit transactions can be made in such a way as to put a huge validation burden on nodes ([quadratic hashing problem](https://bitcoin.stackexchange.com/questions/63625/what-causes-quadratic-hash-problem)). The consensus rules haven't changed to prevent this because it could potentially make some valid utxos impossible to spend. A number of mempool policies exist to reduce the risk that such transactions will propagate through the network.\n\nAdditionally: Bitcoin is a live network, securing hundreds of billions of dollars of value and we still make changes to the rules without anyone actually being in control of it. \n\nEXAMPLE:\n\n> All transactions have a nVersion field. After segwit, this field has been reserved to facilitate future upgrades. The Night Wolf crunches up any transaction that has anything other than 1 or 2 in its nVersion to preserve this ability. Eventually, we want to be able to "turn on" some functionality by putting a 3 or a 4 there, but it needs to be held blank until we all agree on what that functionality is going to be.\n\nThe two wolves exist pretty much because Satoshi made mistakes in its early days and wrote consensus rules that allowed dangerous transactions or didn't anticipate the ways in which the project would grow. Bitcoin culture refuses fix the problem by changing the consensus rules if it results in making it impossible for someone to spend their money or if it means an increase in centralization. \n\n# The Moral of the story[^6]\n\n[^6]: I was going to write just a straightforward description of all this, but my cousin Mathilde is really into wolves and convinced me that it would make more sense if I used wolves to explain it. I listened to her because she's the only person who ever helped me to understand the [Fed's Reverse Repo Facility](https://stacker.news/items/451071) and [she speaks Latin](https://stacker.news/items/442551).\n\nIt's okay for mempool policy to be more restrictive than Bitcoin's consensus rules, but it should be as close as possible and anytime miners are mining lots of transactions that most mempools reject, it's probably time to reevaluate.\n\n> Network behavior is one of the few bits of friction driving good technical design rather than "move fast, break things, and force everyone else onto my way of doing thing rather than discussing the design in public" [--gmax, 2015](https://github.com/bitcoin/bitcoin/pull/5286#issuecomment-72564175)\n\nIn wolf terms this means: the Night Wolf can get big and ferocious, but he needs to always remember that he isn't as strong as his older brother.\n\nIf you want to learn more about this, you should read Gloria Zhao and Murch's [Waiting for Confirmation](https://bitcoinops.org/en/blog/waiting-for-confirmation/) to get started down the rabbit hole.[^7]\n\n[^7]: Maybe I should have made this whole thing a rabbit metaphor... \N 20523 \N 307360 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.8211645042003 0 \N \N f 0 \N 0 70514933 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51467 2023-08-17 22:11:35.583 2025-03-29 22:39:46.783 Top Stackers - Sats Per Write & More Metrics \n## **Unofficial Stacker Awards** 🏆\n\nLast month a post was shared looking at [the data to help you become a better Stacker ⚡](https://stacker.news/items/441843/r/davidw). Reviewing variables like time of day, day of the week & link domains posted to examine their effects on the number of comments & sats. Spoiler alert - the differences are minimal but inside are some tricks to learn from how people are benefiting from Stacker News.\n\nWith this post we're looking specifically at authors of posts, to acknowledge some of the top creators. To shine a light on stackers who may / may not be active to rank for Million Sat Madness or the usual top ranking pages.\n\nBy having a list like this, we can more easily find awesome people worth subscribing to or encouraging to post some more. You might not know you could even subscribe & get notifications when certain people post. If you haven't done that yet and wish to, tap the 3 dots against someone's name and tap `subscribe to posts`.\n\n**[Top Stackers](https://stacker.news/top/stackers/forever)** can be viewed from the menu at any time, however some stackers perform better in metrics & categories than others, so let's see who ranks better in each area for post data running up to **Tuesday 27th March 2024**. Finding who we can give a 'pat on the back' to...\n\n\n![divider](https://m.stacker.news/23796)\n\n\n## 1. **Sats Per Write** ✍️\nPeople with the **most amount of sats per post**. For anyone with 4+ >1k sat posts.\n\n----\n\n| **Username** | **Posts** | **Avg Comments** | **Avg Sats** |\n| -------------------- | --------- | ---------------- | ------------ |\n| **@dergigi** | 9 | 22.8 | 37,620 🥇 |\n| **@benthecarman** | 19 | 25.8 | 17,653 🥈 |\n| **@themadnessking** | 20 | 37.5 | 17,066 🥉 |\n| **@davidw** | 48 | 20.1 | 17,027 |\n| **@mallardshead** | 32 | 29.0 | 15,689 |\n| **@supertestnet** | 21 | 24.5 | 14,448 |\n| **@Natalia** | 22 | 49.4 | 13,911 |\n| **@roy** | 14 | 14.6 | 12,643 |\n| **@ODELL** | 11 | 16.0 | 11,890 |\n| **@0xB10C** | 14 | 7.2 | 11,109 |\n| **@super_testnet** | 14 | 20.3 | 11,108 |\n| **@tip_nz** | 9 | 22.3 | 11,079 |\n| **@niftynei** | 30 | 12.3 | 10,566 |\n| **@petertodd** | 14 | 18.8 | 10,514 |\n| **@WeAreAllSatoshi** | 20 | 18.1 | 10,404 |\n| **@DiracDelta** | 16 | 21.3 | 10,310 |\n| **@elvismercury** | 89 | 25.3 | 10,048 |\n| **@hynek** | 23 | 23.1 | 9,812 |\n| **@bitcoinplebdev** | 23 | 18.8 | 9,352 |\n| **@TonyGiorgio** | 37 | 21.1 | 8,666 |\n| **@andy** | 6 | 17.0 | 7,700 |\n\n\n\n\nThe above are people who have had 2 or more posts that achieved >1k sats total.\n\n![divider](https://m.stacker.news/23796)\n\n## **2. Most Zaps Per Post** ⚡\nCreators with the **most amount of stackers zapping their posts** on average. (*e.g. Natalia gets on average 51 stackers zapping* a >1k sat post). Filtered for those with 4+ 1k sat posts ever.\n\n----\n\n| Username | >1k Posts | Zaps Per Post |\n| ------------------------ | --------- | ------------- |\n| **@Natalia** | 22 | 51.0 🥇 |\n| **@benthecarman** | 19 | 39.0 🥈 |\n| **@supertestnet** | 21 | 38.0 🥉 |\n| **@davidw** | 48 | 34.2 |\n| **@pycan** | 8 | 31.4 |\n| **@TonyGiorgio** | 37 | 31.3 |\n| **@tip_nz** | 9 | 30.8 |\n| **@hodlpleb** | 14 | 29.9 |\n| **@bitcoinplebdev** | 23 | 29.8 |\n| **@Atreus** | 11 | 29.2 |\n| **@pako** | 5 | 29.0 |\n| **@k00b** | 303 | 28.0 |\n| **@bitcoin_rationalist** | 14 | 27.1 |\n| **@super_testnet** | 14 | 27.1 |\n| **@elvismercury** | 89 | 26.8 |\n| **@roy** | 14 | 26.6 |\n| **@dergigi** | 9 | 26.4 |\n| **@C_Otto** | 15 | 26.2 |\n| **@Signal312** | 13 | 25.9 |\n| **@DarthCoin** | 95 | 25.8 |\n| **@expatriotic** | 12 | 25.8 |\n\n\n![divider](https://m.stacker.news/23796)\n\n## **3. Conversation Starters** 🗯️\nThose who **receive the most amount of comments** against each of their posts on average (with 4+ qualifying posts).\n\n----\n\n\n| **Username** | **>1k Posts** | **Avg Comments** |\n| --------------------- | --------- | ---------------- |\n| **@Natalia** | 22 | 49.4 🥇 |\n| **@sn** | 227 | 44.2 🥈 |\n| **@mattcrv** | 12 | 43.1 🥉 |\n| **@Voldemort** | 6 | 38.6 |\n| **@Public_N_M_E** | 23 | 37.8 |\n| **@themadnessking** | 20 | 37.5 |\n| **@Michelson_Morley** | 13 | 36.6 |\n| **@Fabs** | 39 | 35.6 |\n| **@birdeye21** | 224 | 35.2 |\n| **@jk_14** | 8 | 34.9 |\n| **@Stacksats** | 9 | 34.6 |\n| **@cryptofolyo** | 8 | 34.5 |\n| **@gandlaf21** | 5 | 34.2 |\n| **@pako** | 5 | 32.8 |\n| **@piecover** | 17 | 31.3 |\n| **@iguano** | 10 | 30.5 |\n| **@OriginalSize** | 4 | 29.5 |\n| **@Relight_Motion** | 9 | 29.4 |\n| **@kenn_b** | 7 | 29.4 |\n| **@josh** | 7 | 29.1 |\n| **@mallardshead** | 32 | 29.0 |\n\n\n![divider](https://m.stacker.news/23796)\n\n## **4. Value for Value** ♻️\nPeople who have seen the **most sats from comments on their posts** on average, mostly thanks to bounties.\n\n----\n\n| **Username** | **>1k Posts** | **Avg Sats from Comments** |\n| --------------------- | --------- | -------------------------- |\n| **@phaedrus** | 11 | 47,594 🥇 |\n| **@soggycakes** | 30 | 36,797 🥈 |\n| **@Michelson_Morley** | 13 | 19,119 🥉 |\n| **@k00b** | 303 | 18,606 |\n| **@BlokchainB** | 10 | 16,299 |\n| **@sn** | 227 | 16,149 |\n| **@OneOneSeven** | 4 | 13,238 |\n| **@Turnspit_Dog** | 8 | 10,455 |\n| **@OriginalSize** | 4 | 8,040 |\n| **@TonyGiorgio** | 37 | 7,288 |\n| **@blockdyor** | 4 | 6,341 |\n| **@Natalia** | 22 | 5,933 |\n| **@needcreations_** | 23 | 5,913 |\n| **@elvismercury** | 89 | 5,763 |\n| **@benthecarman** | 19 | 5,671 |\n| **@Stacktoshi42** | 3 | 5,444 |\n| **@super_testnet** | 14 | 5,330 |\n| **@andy** | 6 | 5,251 |\n| **@foundationdvcs** | 6 | 5,156 |\n| **@handsome_latino** | 6 | 5,091 |\n\n\n![divider](https://m.stacker.news/23796)\n\n## **5. Consistent Kilo Cowboys** 🤠\nCreators who consistently churn-out great content, with the **most number of posts with over 1k sats total**.\n\n----\n\n| **Username** | **>21k** | **>10k** | **>1k** |\n| ----------------------- | -------- | -------- | ------- |\n| **@kr** | 1 | 4 | 357🥇 |\n| **@Rsync25** | 1 | 10 | 321 🥈 |\n| **@k00b** | 6 | 39 | 303 🥉 |\n| **@sn** | 3 | 5 | 227 |\n| **@birdeye21** | 1 | 7 | 224 |\n| **@siggy47** | 6 | 18 | 191 |\n| **@TomK** | 0 | 0 | 177 |\n| **@grayruby** | 1 | 2 | 153 |\n| **@ek** | 3 | 9 | 144 |\n| **@AR0w** | 0 | 1 | 121 |\n| **@Undisciplined** | 0 | 5 | 112 |\n| **@cryotosensei** | 0 | 2 | 106 |\n| **@jimmysong** | 2 | 11 | 104 |\n| **@kepford** | 0 | 4 | 102 |\n| **@BitcoinIsTheFuture** | 0 | 0 | 97 |\n| **@thebitcoinbugle** | 0 | 2 | 97 |\n| **@DarthCoin** | 4 | 9 | 95 |\n| **@elvismercury** | 5 | 17 | 89 |\n| **@hn** | 0 | 1 | 71 |\n| **@Car** | 1 | 3 | 70 |\n| **@Bitman** | 1 | 4 | 69 |\n\n![divider](https://m.stacker.news/23796)\n\n\n## **6. Stampede Stackers** 🐃\nPlebs with the **most number of posts with >10k sats total**, packing more dense information inside.\n\n----\n\n| Username | >100k | >21k | >10k |\n| ------------------- | ----- | ---- | ----- |\n| **@k00b** | 0 | 6 | 39 🥇 |\n| **@siggy47** | 2 | 6 | 18 🥈 |\n| **@elvismercury** | 4 | 5 | 17 🥉 |\n| **@davidw** | 3 | 7 | 14 |\n| **@TonyGiorgio** | 0 | 4 | 12 |\n| **@jimmysong** | 0 | 2 | 11 |\n| **@Rsync25** | 0 | 1 | 10 |\n| **@DarthCoin** | 1 | 4 | 9 |\n| **@ek** | 1 | 3 | 9 |\n| **@Natalia** | 0 | 7 | 9 |\n| **@plebpoet** | 0 | 0 | 8 |\n| **@supertestnet** | 1 | 4 | 8 |\n| **@birdeye21** | 0 | 1 | 7 |\n| **@super_testnet** | 0 | 2 | 7 |\n| **@themadnessking** | 1 | 4 | 7 |\n| **@benthecarman** | 1 | 3 | 7 |\n| **@Murch** | 0 | 2 | 6 |\n| **@mallardshead** | 2 | 4 | 6 |\n| **@hynek** | 1 | 1 | 5 |\n| **@0xB10C** | 0 | 2 | 5 |\n| **@Undisciplined** | 0 | 0 | 5 |\n\n\n![divider](https://m.stacker.news/23796)\n\n## **7. Sleeping Shooters** 🔫\nPeople who **may not have posted for 6+ months**, who have the most sats to date from posting.\n\n----\n\n| **Username** | **>1k Posts** | **Total Sats** |\n| -------------------- | --------- | -------------- |\n| **@dergigi** | 9 | 338,579 🥇 |\n| **@CarlBMenger** | 21 | 144,673 🥈 |\n| **@ODELL** | 11 | 130,785 🥉 |\n| **@nobsbitcoin** | 15 | 92,599 |\n| **@shadowymartian** | 23 | 66,949 |\n| **@ThrillerX_** | 19 | 60,897 |\n| **@astronaut** | 11 | 56,048 |\n| **@edblock** | 16 | 49,048 |\n| **@andy** | 6 | 46,200 |\n| **@l0k18** | 14 | 42,744 |\n| **@2minutebitcoin** | 6 | 38,877 |\n| **@slatheredloss** | 10 | 31,644 |\n| **@Majjin** | 7 | 28,083 |\n| **@gandlaf21** | 5 | 24,612 |\n| **@mudbloodvonfrei** | 11 | 23,480 |\n| **@drfred** | 5 | 23,051 |\n| **@sarah1** | 4 | 22,422 |\n| **@User21000000** | 8 | 18,538 |\n| **@a68dd96af9** | 6 | 18,511 |\n| **@BTCMiner** | 12 | 18,370 |\n| **@unofficial** | 10 | 17,914 |\n\n\n![divider](https://m.stacker.news/23796)\n\n\n### **8. AMAzing AMAs**❓\nStackers who have hosted the most popular AMA sessions on Stacker News to date, landing over 20k sats total.\n\n----\n\n| **Username** | AMAs | **Total Sats** |\n| -------------------- | -------------------------------------------------------------------- | -------------- |\n| **@OpenSats** | https://stacker.news/items/63555 | 451,200 🥇 |\n| **@niftynei** | https://stacker.news/items/14023, https://stacker.news/items/370826 | 140,284 🥈 |\n| **@JohnCantrell97** | https://stacker.news/items/47346 | 112,700 🥉 |\n| **@calle** | https://stacker.news/items/109473 | 110,500 |\n| **@lynaldencontact** | https://stacker.news/items/64293 | 101,800 |\n| **@dergigi** | https://stacker.news/items/3908 | 100,500 |\n| **@gladstein** | https://stacker.news/items/47002 | 93,100 |\n| **@roy** | https://stacker.news/items/29808 | 77,000 |\n| **@ODELL** | https://stacker.news/items/9696 | 75,700 |\n| **@jimmysong** | https://stacker.news/items/232440, https://stacker.news/items/4928 | 75,100 |\n| **@benthecarman** | https://stacker.news/items/17251 | 64,400 |\n| **@fiatjaf** | https://stacker.news/items/13038 | 63,400 |\n| **@paul** | https://stacker.news/items/25644 | 62,600 |\n| **@jonatack** | https://stacker.news/items/98644 | 60,900 |\n| **@jb55** | https://stacker.news/items/56366 | 54,500 |\n| **@BTC_LN** | https://stacker.news/items/51274 | 54,100 |\n| **@dannydeezy** | https://stacker.news/items/461801, https://stacker.news/items/75746 | 53,600 |\n| **@JV** | https://stacker.news/items/6469 | 51,900 |\n| **@BTCsessions** | https://stacker.news/items/23093 | 50,000 |\n| **@JeremyRubin** | https://stacker.news/items/11162 | 47,400 |\n| **@softsimon** | https://stacker.news/items/48270 | 47,300 |\n| **@Murch** | https://stacker.news/items/141846, https://stacker.news/items/348349 | 45,900 |\n| **@dickerson_des** | https://stacker.news/items/21365 | 44,800 |\n| **@stick** | https://stacker.news/items/37956 | 43,700 |\n| **@bernard_parah** | https://stacker.news/items/40018 | 43,100 |\n| **@boltfun_btc** | https://stacker.news/items/76668 | 43,100 |\n| **@nicolasburtey** | https://stacker.news/items/14608 | 42,700 |\n| **@petertodd** | https://stacker.news/items/84108 | 40,500 |\n| **@gkrizek** | https://stacker.news/items/64688 | 40,100 |\n| **@moneyball** | https://stacker.news/items/69901 | 39,700 |\n| **@andreneves** | https://stacker.news/items/28072 | 39,100 |\n| **@MerryOscar** | https://stacker.news/items/185392, https://stacker.news/items/39079 | 37,505 |\n| **@dooowta** | https://stacker.news/items/16037 | 37,400 |\n| **@evankaloudis** | https://stacker.news/items/43585 | 31,700 |\n| **@BitcoinErrorLog** | https://stacker.news/items/17771 | 31,600 |\n| **@brqgoo** | https://stacker.news/items/192040 | 30,700 |\n| **@ctramount** | https://stacker.news/items/95867 | 30,200 |\n| **@MaxAWebster** | https://stacker.news/items/36377 | 27,900 |\n| **@hong** | https://stacker.news/items/454701 | 27,700 |\n| **@MaxFangX** | https://stacker.news/items/275379 | 27,100 |\n| **@robin_linus** | https://stacker.news/items/316211 | 27,000 |\n| **@ZEBEDEE** | https://stacker.news/items/109955, https://stacker.news/items/63017 | 26,200 |\n| **@TonyGiorgio** | https://stacker.news/items/70382 | 26,100 |\n| **@allen** | https://stacker.news/items/53950 | 25,800 |\n| **@dusty** | https://stacker.news/items/60859 | 25,800 |\n| **@boltz** | https://stacker.news/items/339204 | 25,000 |\n| **@BitcoinPierre** | https://stacker.news/items/53259 | 24,900 |\n| @bhd | https://stacker.news/items/60320 | 24,200 |\n| **@zerofeerouting** | https://stacker.news/items/33562 | 23,900 |\n| **@tip_nz** | https://stacker.news/items/87857 | 23,700 |\n| **@michael** | https://stacker.news/items/96930 | 23,000 |\n| **@pavlenex** | https://stacker.news/items/475925 | 22,600 |\n| **@WhyBitcoinOnly** | https://stacker.news/items/344025 | 22,500 |\n| **@ziggamon** | https://stacker.news/items/38232 | 20,900 |\n| **@ank** | https://stacker.news/items/57767 | 20,300 |\n| **@justinmoon** | https://stacker.news/items/82990 | 20,200 |\n\n\n![divider](https://m.stacker.news/23796)\n\n### **9. Recent Riders** 🏇 \nPeople who have the **most amount of sats from 2024 per post**.\n\n----\n\n| **Username** | 2024 >1k Posts | **Avg Sats Per Post** |\n| ------------------- | ---------- | --------------------- |\n| **@oracle** | 4 | 41,073 🥇 |\n| **@mallardshead** | 5 | 29,145 🥈 |\n| **@benthecarman** | 4 | 17,812 🥉 |\n| **@supertestnet** | 8 | 17,713 |\n| **@davidw** | 22 | 16,921 |\n| **@BITC0IN** | 2 | 16,618 |\n| **@Undergotten** | 1 | 15,400 |\n| **@kangu** | 1 | 13,500 |\n| **@moneyball** | 1 | 13,300 |\n| **@roy** | 4 | 12,166 |\n| **@DarthCoin** | 13 | 11,462 |\n| **@hberkoe** | 3 | 11,015 |\n| **@Natalia** | 8 | 10,171 |\n| **@themadnessking** | 5 | 9,914 |\n| **@Tristan** | 1 | 9,668 |\n| **@0xB10C** | 2 | 9,384 |\n| **@runningbitcoin** | 2 | 8,976 |\n| **@TonyGiorgio** | 12 | 8,543 |\n| **@BlueSlime** | 2 | 8,078 |\n| **@lightcoin** | 3 | 6,627 |\n| **@bitcoinplebdev** | 19 | 6,621 |\n\n![divider](https://m.stacker.news/23796)\n\n### **10. Boost Bandits** 🔼\nStackers who have boosted their posts and contributed to the rewards pool the most.\n\n----\n\n| **Username** | >1k Posts | **Sats Boosted** |\n| ------------------------- | ----- | ---------------- |\n| **@blockstream_official** | 24 | 1,050,000🥇 |\n| **@joko** | 12 | 250,000 🥈 |\n| **@MerryOscar** | 23 | 202,000 🥉 |\n| **@PlebLab** | 15 | 175,000 |\n| **@k00b** | 303 | 160,028 |\n| **@roy** | 14 | 150,000 |\n| **@evanbaer** | 7 | 125,000 |\n| **@bitcoinplebdev** | 23 | 100,000 |\n| **@niftynei** | 30 | 85,000 |\n| **@MaxAWebster** | 13 | 80,000 |\n| **@BITC0IN** | 20 | 80,000 |\n| **@TonyGiorgio** | 37 | 75,000 |\n| **@sethforprivacy** | 18 | 71,000 |\n| **@jarednxx** | 8 | 65,000 |\n| **@cascdr** | 6 | 60,000 |\n| **@phaedrus** | 11 | 59,001 |\n| **@BlueSlime** | 7 | 55,000 |\n| **@DiracDelta** | 16 | 51,000 |\n| **@moneyball** | 7 | 50,000 |\n| **@mattcrv** | 12 | 50,000 |\n| **@foundationdvcs** | 6 | 50,000 |\n\n![divider](https://m.stacker.news/23796)\n\n\n## **11. Best Stackers By Month** 🗓️\n\nBelow are those for each given month who achieved the most:\n- *sats total for posts*\n- *average sats per post*\n- *average comments per post*\n\n----\n\n| **Month** | Most Sats | Avg Sats Per Post | **Avg Comments Per Post** |\n| --------- | ---------------- | ----------------- | ------------------------- |\n| `2024-02` | @fabs | @jeff | @theariard |\n| `2024-01` | @kr | @anita | @617a7a |\n| `2023-12` | @ek | @ramosh | @030e0dca83 |\n| `2023-11` | @elvismercury | @davidw | @Nuttall |\n| `2023-10` | @mallardshead | @mallardshead | @jk_14 |\n| `2023-09` | @sn | @supertestnet | @TSW |\n| `2023-08` | @birdeye21 | @WeAreAllSatoshi | @Michelson_Morley |\n| `2023-07` | @birdeye21 | @runningbitcorn | @hynek |\n| `2023-06` | @DiracDelta | @DiracDelta | @purpurato |\n| `2023-05` | @Rsync25 | @0295c86965 | @Darkbulb |\n| `2023-04` | @Rsync25 | @btc_remnant | @btc_remnant |\n| `2023-03` | @Rsync25 | @0xB10C | @chris42 |\n| `2023-02` | @nym | @nym | @equilibriumbtc |\n| `2023-01` | @k00b | @03f89df6be | @LibertyLuminary |\n| `2022-12` | @calle | @dergigi | @Gregor |\n| `2022-11` | @dergigi | @jonatack | @jonatack |\n| `2022-10` | @kale | @kale | @nvk |\n| `2022-09` | @moneyball | @moneyball | @TonyGiorgio |\n| `2022-08` | @lynaldencontact | @OpenSats | @OpenSats |\n| `2022-07` | @JohnCantrell97 | @hynek | @allark |\n| `2022-06` | @stick | @stick | @ziggamon |\n| `2022-05` | @roy | @paul | @andreneves |\n| `2022-04` | @justsmile | @justsmile | @dickerson_des |\n| `2022-03` | @niftynei | @niftynei | @fiatjaf |\n| `2022-02` | @ODELL | @ODELL | @ODELL |\n| `2022-01` | @MaxAWebster | @MaxAWebster | @k00b |\n\n\n![divider](https://m.stacker.news/23796)\n\n### 🤔 **Methodoloy**\n***Disclaimer***: The snapshot to generate this data was taken on ***Tuesday 27th March at 22:00 ET***. Data from all SN posts with >1k satoshis total - 9,503 posts. Sat totals were pulled from front-end labels, not an API so data is not 100% accurate. Take these numbers with a pinch of saltiness.\n\n----\n\n### 💡 **Suggest a new metric below...**\nGot a metric or an idea for another Stacker award to include? `Add a comment below`.\n\n\n\n\n \N 1584 \N 51467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.1052878412406 0 \N \N f 0 \N 0 54249814 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434877 2025-03-12 10:04:36.529 2025-03-29 22:39:49.738 \N Hi stackers! The FAQ at https://sigbash.com and the thread here pretty much cover all the details: https://twitter.com/arbedout/status/1772646219317174680\n\nTL,DR:\n\n* Sigbash is a multisig key agent that hands out blinded xpubs - an xpub is sent to the user's browser, random values are generated using the WebCrypto API to create a new child xpub with a new derivation path. The key agent doesn't asee this new child key - so from key generation all the way to PSBT signing the agent doesn't actually know anything about what the key is protecting\n\n* GPG contracts (https://nakamotoinstitute.org/mempool/gpg-contracts) are used to keep the key agent honest\n\n* Since there's no human in the loop you can attach different signing conditions to an xpub - e.g. "only sign if this Bitcoin address has a balance higher than XXX satoshis" or "only sign after this block height AND if the BTC/USD exchange rate is higher than XXX"\n\nIf you'd like to kick the tires, use checkout code BETATEST to get a free xpub and fire away :)\n\n--arbedout https://example.com/ 20911 434646 434646.434877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0446909667344 0 \N \N f 373305164 \N 3 76390162 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 04:20:25.77 f \N \N \N 0 0 0 0 1 0 0 400645 2025-02-12 12:06:54.781 2025-03-29 22:39:49.739 \N Eating a light breakfast. First day of new job! woohoo. let's goooo https://example.com/ 20981 400447 400447.400645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.73135299407829 0 \N \N f 282870656 \N 3 142452030 0 f f \N \N \N \N 400447 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436312 2025-03-13 13:12:42.124 2025-03-29 22:39:49.743 \N Thanks for doing this Siggy. Great post! https://example.com/ 646 436310 436273.436288.436310.436312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3339579566584 0 \N \N f 27688799 \N 1 220487858 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 06:29:55.182 f \N \N \N 0 0 0 0 1 0 0 421735 2025-03-01 23:46:22.089 2025-03-29 22:39:49.743 \N Been testing auto withdraw for a good while. Found a bug even. I haven't yet set up a spend external wallet. Planning to in the next few weeks. Also gonna be setting up a brand new node on Start9's OS. Been meaning to try it out for a while now. \n\nI am anxious to see how it compares to Umbrel for less technical users.\n\nEdit: Not using Start9 hardware though. https://example.com/ 1738 421733 421567.421722.421731.421733.421735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0279884510036 0 \N \N f 601776402 \N 4 215353031 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436361 2025-03-13 13:55:49.61 2025-03-29 22:39:49.744 \N I don't get the hype around imaginary chains like statechains, space chains, drive chains, galaxy chains, Arc, etc. \n\nPerhaps I'm a moron or perhaps I've seen enough BS in the past to not care (other merge mining projects), or perhaps I'm a lightning maxi. But anyone can give a tl;dr on why it is worth exploring despite the trade offs? https://example.com/ 9349 435906 435906.436361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8524081030345 0 \N \N f 26239828 \N 1 225720049 0 f f \N \N \N \N 435906 \N 0 0 \N \N f \N 2025-03-20 11:23:29.314 f \N \N \N 0 0 0 0 1 0 0 140617 2024-03-10 15:23:19.013 2025-03-29 22:39:49.739 \N ![](https://www.zapread.com/i/9TA) https://example.com/ 8289 140609 140609.140617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6592290257791 0 \N \N f 176129379 \N 2 210972923 0 f f \N \N \N \N 140609 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435294 2025-03-12 15:21:53.533 2025-03-29 22:39:49.739 \N Love that they accept npubs for launch plans.\nYet another use case for nostr https://example.com/ 1836 435147 434795.435147.435294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.06280965017536 0 \N \N f 200554022 \N 1 10267441 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 15:58:27.068 f \N \N \N 0 0 0 0 1 0 0 420963 2025-03-01 10:03:52.986 2025-03-29 22:39:49.74 \N What’s interesting is we are years ahead of where I thought we would be in terms of political influence at this point but years behind where I thought we would be in terms of adoption. https://example.com/ 1495 420918 420918.420963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3629858972095 0 \N \N f 231887098 \N 1 219688606 0 f f \N \N \N \N 420918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442824 2025-03-18 20:51:12.059 2025-03-29 22:39:49.74 \N My name is Carlos, I have a lopsided grin, i walk kinda funny, i like to joke with people who know me but everyone else would say i'm mean looking. I’m a Bitcoiner and this is how I got there.\n\nin 2024\nI work long days in construction and save a little to my stash with a couple of bucks on a good day and none on a bad. I live in a private rental, small and damp but it’s quiet and somewhere to lay my head. I’m at college in the evening and have certainly come to enjoy study in the shadows more than work in the day. Broke my leg in a work accident, but you can’t claim sickness if you weren’t on the books, so I limp about, ride a jackhammer until I can’t feel my hands which is my cue to start shovelling. I read a lot, write a little and keep to myself as I don’t trust people and wouldn't expect them to trust me. I have $200 in BTC. I want to live and seize the opportunity but some days I struggle to survive.\n\nin 2020\nI got a compensation cheque over a ‘miscarriage of justice’ but really it was ‘misappropriation of blame’ - was only $3k but i put it into crypto. Lockdown came and there was no work so I spent what I had to eat and ‘invested’ the rest. I ended up jumping into the shallow end from a high board, trusted the wrong people, watched too many of the wrong type of influencers and lost everything. I don’t know where those years went and the Bitcoin opportunity walked on by in plain view.\n\nin 2016\nI was released from prison having served 3 years for aggravated assault. A difference of opinion where he thought I was someone I wasn’t, pushed me and I pushed him back, he fell onto a low wall and smashed his head. The police came and cracked my eyesocket and knocked 2 of my teeth out for good measure. During the trial I could feel myself falling further than he ever did, his family had money and a desire to prove he wasn’t in the wrong, it put me on the other side of the equation. On my release I was living in temporary accommodation and my room mate used to pawn DVDs and CDs for Bitcoin, how he ended up with so many box sets of Game Of Thrones I don’t know and didn’t ask. I passed my days in the betting shop, they knew me and left me alone as I absentmindedly watched the races while never placing a bet. There was a machine in the corner and kids smelling of cannabis came in and fed crumpled banknotes into it, receipts ‘for internet money’ the woman behind the counter said. I have $50 courtesy of prison. The Bitcoin opportunity passed me by and I was too bitter at the Government to notice.\n\nin 2012\nI was out of the military and doing a resettlement course hoping to go to college. I was working as a fitness instructor part-time, my money went on food and travel but I was loving the new challenge. I read an article about uses for a Rapsberry Pi and wanted to try my hand, but the kits were expensive and who knew if Bitcoin mining was going to catch on. So I let the opportunity pass me by, but I took note and was going to look into it when I got to college.\n\nMy name was Carl, I had an easy grin, i walked with swagger, I loved to joke with people and wanted to meet everyone and hear their story. I wasn’t a Bitcoiner yet, but the world was going to make me one. https://example.com/ 4064 442670 442628.442639.442646.442648.442650.442670.442824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0804405363531 0 \N \N f 344553294 \N 3 1452766 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457096 2025-03-28 07:41:20.924 2025-03-29 22:39:49.74 \N We see Lightning as the "lingua franca" to connect between different layers. \n\nThe most common use case for stablecoin is for merchants to be able to accept Bitcoin but convert on the go to a stable MoE/UoA. \n\nWe are going to explore submarine swaps between LN and Liquid, to allow the merchants to accept Bitcoin LN and instantly swap to a stablecoin such as Fuji USD on Liquid. Viceversa the merchant can pay suppliers via LN swapping again on the go. https://example.com/ 20756 456745 455893.456745.457096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.775105970036201 0 \N \N f 174379083 \N 1 82965666 0 f f \N \N \N \N 455893 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443940 2025-03-19 15:30:52.908 2025-03-29 22:39:49.741 \N To me this looks like a hosted version of Shamir Secret Sharing. I get it that normies might find this comfortable.\n\nBut we as a community need to prioritise self sovereignty, and work hard on getting the message out there.\n\nSpread your self soverign risk by using purpose built by tools like Shamir Secret Sharing.\n\nhttps://trezor.io/learn/a/what-is-shamir-backup https://example.com/ 18011 443295 443295.443940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.47879618097247 0 \N \N f 233301851 \N 2 67062181 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430220 2025-03-09 00:09:41.613 2025-03-29 22:39:49.741 \N building a productive AI environnement in the terminal [instrukt](https://github.com/blob42/Instrukt) https://example.com/ 19759 429725 428318.428382.428674.429258.429725.430220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7054711771302 0 \N \N f 262027710 \N 2 62922425 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407959 2025-02-18 13:50:05.863 2025-03-29 22:39:49.741 \N I said women want security and freedom. Security. *and* Freedom. Aren't these opposing forces? And that's the point. Isn't that what a woman is? She runs away from protection in search of freedom. She clings to security and sacrifices freedom. Having children fits inside this quite nicely I think.\nI also said there are multiple ways of being, I could not possible capture femininity in a description or definition. That's why my answer if purposefully vague. You can invent meaning for yourself out of my flexible words: security and freedom. Use them as a valance over the life of someone you know, do you see these things as important to her? https://example.com/ 14910 407619 407619.407959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7435676210912 0 \N \N f 198874819 \N 1 155057700 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454691 2025-03-26 14:58:23.832 2025-03-29 22:39:49.742 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **5** https://example.com/ 1647 454668 454525.454535.454668.454691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.53312574674048 0 \N \N f 612350079 \N 6 31167552 0 f f \N \N \N \N 454525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420279 2025-02-28 16:03:53.779 2025-03-29 22:39:49.742 \N \nNeal Stephenson:\n1. ["Snow Crash"](https://en.wikipedia.org/wiki/Snow_Crash)\n2. ["Cryptonomicon"](https://en.wikipedia.org/wiki/Cryptonomicon)\n3. ["The Diamond Age"](https://en.wikipedia.org/wiki/The_Diamond_Age)\n\nWilliam Gibson:\n1. ["Neuromancer"](https://en.wikipedia.org/wiki/Neuromancer)\n2. ["Count Zero"](https://en.wikipedia.org/wiki/Count_Zero)\n3. ["Mona Lisa Overdrive"](https://en.wikipedia.org/wiki/Mona_Lisa_Overdrive)\n\nPhilip K. Dick:\n1. ["Do Androids Dream of Electric Sheep?"](https://en.wikipedia.org/wiki/Do_Androids_Dream_of_Electric_Sheep%3F)\n2. ["Ubik"](https://en.wikipedia.org/wiki/Ubik)\n3. ["The Man in the High Castle"](https://en.wikipedia.org/wiki/The_Man_in_the_High_Castle)\n\nIsaac Asimov:\n1. ["Foundation" series](https://en.wikipedia.org/wiki/Foundation_series)\n2. ["Robot" series](https://en.wikipedia.org/wiki/Robot_series)\n\nFrank Herbert:\n1. ["Dune" series](https://en.wikipedia.org/wiki/Dune_(novel))\n\nAlastair Reynolds:\n1. ["Revelation Space" series](https://en.wikipedia.org/wiki/Revelation_Space_series)\n\nVernor Vinge:\n1. ["A Fire Upon the Deep"](https://en.wikipedia.org/wiki/A_Fire_Upon_the_Deep)\n2. ["A Deepness in the Sky"](https://en.wikipedia.org/wiki/A_Deepness_in_the_Sky)\n\nIain M. Banks:\n1. ["Culture" series](https://en.wikipedia.org/wiki/Culture_series)\n\nRobert A. Heinlein:\n1. ["Stranger in a Strange Land"](https://en.wikipedia.org/wiki/Stranger_in_a_Strange_Land)\n2. ["Starship Troopers"](https://en.wikipedia.org/wiki/Starship_Troopers)\n\nArthur C. Clarke:\n1. ["2001: A Space Odyssey" series](https://en.wikipedia.org/wiki/2001:_A_Space_Odyssey_(novel)) https://example.com/ 21393 419944 419944.420279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1606848920581 0 \N \N f 170666989 \N 1 117989081 0 f f \N \N \N \N 419944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447458 2025-03-21 20:48:31.659 2025-03-29 22:39:49.742 \N Day 241 of snailposting everyday 'til BTC hits $100k.\n\n...and 41 push-up(s).\n\n__@_'-' https://example.com/ 891 447418 447418.447458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2278513753967 0 \N \N f 190267056 \N 1 249857645 0 f f \N \N \N \N 447418 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424248 2025-03-03 23:22:43.91 2025-03-29 22:39:49.743 \N I want to package CLN alongside Bitcoin Core inside a GUI application to make this setup easier to test/run on MacOS. Imo today it requires too many steps. https://example.com/ 1389 421282 421282.424248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.33376922553929 0 \N \N f 97297271 \N 1 78538163 0 f f \N \N \N \N 421282 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457528 2025-03-28 14:54:35.333 2025-03-29 22:39:49.743 \N I know someone, mentioning him before he becomes the next Nobel Prize winner: \n\n@super_testnet\n\nguy is on fire https://example.com/ 12272 457508 457476.457495.457508.457528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.576935399175 0 \N \N f 132298487 \N 1 45948600 0 f f \N \N \N \N 457476 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444132 2025-03-19 17:25:44.974 2025-03-29 22:39:49.743 \N Started my account here on SN and plan on sharing some of my thoughts on bitcoin related topics. Wrote my first post last night on PoW vs PoS. Will try to write another one later this week, maybe talking about wanting something for nothing. https://example.com/ 16284 444114 444114.444132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.84245975563 0 \N \N f 1312867510 \N 10 9580356 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430289 2025-03-09 03:17:21.199 2025-03-29 22:39:49.744 \N Before **1968**, the dominant **high jump** technique involved an athlete jumping face forward and twisting their body mid-air to navigate their way over the bar.\n\n----\n\n![image](https://i.makeagif.com/media/1-17-2014/XpriOa.gif)\n\nIt was at the **Mexico 1968 Olympics**, the unknown **Fosbury** introduced the new technique to the world. Fosbury soared over the bar with a record-breaking leap of **2.24 meters** to win the gold medal for the **USA**.\n\n![image](https://i.makeagif.com/media/5-30-2014/MOdzwa.gif)\n\n---\n\nBe sure to read the full article on olympics.com (3 min 📖). The video at the end is a must-see (5 min 🎥). [When high jumper Dick Fosbury changed the game. Forever.](https://olympics.com/en/news/when-high-jumper-dick-fosbury-changed-the-game-forever) https://example.com/ 2952 430279 430279.430289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.26654289733654 0 \N \N f 515920614 \N 3 100829405 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442104 2025-03-18 12:48:23.408 2025-03-29 22:39:49.745 \N Nice write up!\n\nI somehow understand what you feel. I changed my life (private and public) many times. And I am 50+ years old and about to change my life soon too.\n\nOne thing I am sure: NEVER LOOK BACK, always forward. Always with even more passion in what you are doing and confidence in your skills, strengths and future possibilities.\n\nIf you look back, the sorrow will eat you alive and your future "you" will be tormented and the new life will not be as you wish to be. The past will try to grab you down.\n\nIf you decide to move, just go forward, don't even think about going back. NEVER.\n\nI wish you peace and prosperity! https://example.com/ 14278 441176 441176.442104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.56026430142601 0 \N \N f 652082733 \N 4 104849647 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448837 2025-03-22 22:54:26.536 2025-03-29 22:39:49.745 \N Firstly it would need to be modular & upgradable to likely last for decades.\n\nSecondly, I believe phones will be like tablets in 10 years. Much more sparingly used. It’s a mature product that has reached stagnation. Attention will eventually go elsewhere.\n\nBut if we truly were to focus on the everlasting aspects:\n - Screens need to be super tough\n - Replaceable & recyclable batteries required\n - Water & stupidity proof\n\nIt would also help if it were fashionable for us to have:\n- wearable cameras so that phones dont need to be the performance cam anymore - given issues over thickness\n- desire for disconnectivity - so can reduce battery size and have them bend in your pocket or wrap around your wrist. https://example.com/ 16212 448691 448691.448837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1659902302011 0 \N \N f 409647040 \N 2 205683922 0 f f \N \N \N \N 448691 \N 0 0 \N \N f \N 2025-03-29 16:27:06.476 f \N \N \N 0 0 0 0 1 0 0 455055 2025-03-26 18:08:48.598 2025-03-29 22:39:49.745 \N Time waits for no one. https://example.com/ 16193 454895 454895.455055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.80331479294424 0 \N \N f 183888281 \N 1 143281790 0 f f \N \N \N \N 454895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447685 2025-03-22 02:41:22.8 2025-03-29 22:39:49.746 \N been there many times.\n\nfirst time 2003 on a bus from costa rica in san salvador. i went there because costa rica became expensive and san salvador was dollarized which was a huge advantage. i went to el salvador to check it out. i went also to panama several times.\n\neveryone warned me about crime. i walked around during the day without any valuables and i could not perceive anything dangerous. there was definitely something going but mainly at night. no one wanted to talk about it openly. i did not visit the beaches. my friends in costa rica told me about it. all black and not attractive except for hard core surfers which i am not. \n\ni revisited several times over the next 15 years. i have friends in costa rica, nicaragua, panama and el salvador. for my friends in el salvador life was normal behind high walls, barb wire and alarm systems. the rich people all had guards.\n\nit is not different in guatemala ciudad. my friends have to drive the girls to school, pick them up and they also live in guarded a cul de sac behind high walls...\n\nwhen i visited this year i could see a change. for the first time i saw many other gringos. for almost 20 years i felt that i was the only one going to el salvador. you can also hear that from everyone that the security situation has massively approved. there is still crime going on but nothing compared to before.\n\nwith regards to btc i was disappointed that almost no small companies accept it. only large companies and the government does. it is different on bitcoin beach which i visited for one day. estimated 60-70% accept btc or lightning for payments.\n\nbeing used to the beaches in mexico and even in costa rica i was disappointed about the beach. black stones, some black sand and high waves. nothing i would write home about.\n\nin summary el salvador is a quite safe and stable country now. compared to mexico or even costa rica it is still third world with limited shopping and a humid and hot tropical climate in san salvador and also at the beaches. it is definitely worth visiting. all central american countries are worth visiting. nothing comes close to mexico\n https://example.com/ 8168 447661 446513.447049.447084.447186.447661.447685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7131444051499 0 \N \N f 821675989 \N 6 56667221 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424224 2025-03-03 22:36:36.802 2025-03-29 22:39:49.746 \N Pack your bags and move to El Salvador. I'm only half kidding. I assume you're a US citizen. The tax laws differ in other countries. In fact, I'm considering a move out of the US myself for many reasons. https://example.com/ 19759 424211 423663.424195.424211.424224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1510973018474 0 \N \N f 182344576 \N 1 18333080 0 f f \N \N \N \N 423663 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401552 2025-02-13 06:32:51.492 2025-03-29 22:39:49.747 \N >What's the best bitcoin conference?\n\nThe first one in 2011. Little to no mainstream hype. Good talks. The world was our oyster back then. https://example.com/ 21710 401544 401516.401544.401552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.37055901999419 0 \N \N f 152843824 \N 2 31093084 0 f f \N \N \N \N 401516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408216 2025-02-18 16:27:40.306 2025-03-29 22:39:49.747 \N I already am. Only my body is mortal, and even its demise is temporary. https://example.com/ 21103 407903 407903.408216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8347717776125 0 \N \N f 155693046 \N 2 159351494 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448422 2025-03-22 15:41:21.741 2025-03-29 22:39:49.747 \N Thanks!\n\nBitcoin was on the radar for us and for me for a long time. Julian Assange spoke at our Oslo Freedom Forum event in 2010 and a few months later, Satoshi made their fateful last public post. In 2011 we saw Wikileaks start to use Bitcoin to fundraise. In 2013 we helped Ukrainian democracy advocates use Bitcoin as they began to build the Maidan square movement. In 2014 we started accepting Bitcoin donations. In 2016, we became convinced of the connection and in 2017 held our first workshop about bitcoin and human rights at the Oslo Freedom Forum. I'd say it was more of a slow realization than a eureka moment. https://example.com/ 1617 448369 448369.448422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.80993108865623 0 \N \N f 141100516 \N 1 40484780 0 f f \N \N \N \N 448369 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403918 2025-02-15 11:27:56.25 2025-03-29 22:39:49.748 \N Tailscale. Based on WireGuard. This is nextgen VPN/tunnel/secure way to expose your service. Works out of the box and can be customized as you see fit.\nForget expensive cloud vpn to site, you can run 100 clients for free but I would recommend paid services if you are serious. I don't get a dime from them, just happy to share what I use and consider actually useful.... https://example.com/ 18865 403869 403824.403857.403868.403869.403918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3595009757253 0 \N \N f 1163704770 \N 8 33175883 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451258 2025-03-24 13:21:06.496 2025-03-29 22:39:49.748 \N ![GIQDTSxWMAAC1gd.jpg](https://m.stacker.news/26716) https://example.com/ 14818 451244 451244.451258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1168570595124 0 \N \N f 652871529 \N 4 113564431 0 f f \N \N \N \N 451244 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 428077 2025-03-06 20:39:42.657 2025-03-29 22:39:49.748 \N could you share your reason for this opinion? https://example.com/ 1008 427798 427798.428077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.50138706671238 0 \N \N f 58798406 \N 1 228158463 0 f f \N \N \N \N 427798 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407581 2025-02-18 08:01:42.933 2025-03-29 22:39:49.748 \N Working on the final bolt.fun project submission for mutiny web! Ben Paul and I were up till 2am at Pleb Lab getting the final touches and mainnet deployment to work. Super excited about what we've been able to accomplish. Some teaser here https://stacker.news/items/97859 https://example.com/ 1007 407063 407018.407063.407581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.93541462868567 0 \N \N f 1092634005 \N 8 148878422 0 f f \N \N \N \N 407018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448276 2025-03-22 14:18:08.432 2025-03-29 22:39:49.748 \N Wishing this miner would start a public pool. I have some hashrate that I wouldn't mind donating to the cause https://example.com/ 16966 448202 448202.448276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6527719465149 0 \N \N f 696256874 \N 6 159048442 0 f f \N \N \N \N 448202 \N 0 0 \N \N f \N 2025-03-29 08:42:16.794 f \N \N \N 0 0 0 0 1 0 0 440523 2025-03-17 10:48:56.569 2025-03-29 22:39:49.748 \N > The only people incentivized to run a node are businesses which leads to a hub and spoke model of major nodes ran by businesses like bitfinex, bitrefill, wallet of satoshi, muun, etc.\n\n> Person run small nodes don't have the liquidity and the people running them don't have the expertise to properly manage channels, rebalance, etc. Which is a huge hassle for someone who just wants to buy a coffee.\n\n> Bitcoiners need to be honest about this, instead of sticking their heads in the sand and shouting down anyone who points this out. For a normal user who won't even go through the trouble of doing a coinjoin to acheive a basic level of privacy, thinking they will run their own lightning node is complete fantasy land.\n\nThis perspective (specifically the first paragraph) was extremely common as an argument against LN around the time it was first being introduced (2017-18). Here's what I think is a fundamental error embedded in this way of thinking:\n\nA common complaint, from outsiders, about Bitcoin itself is 'well I can't verify the code! So it's effectively controlled by a tiny group of Core devs'. The nuance is this: even if only a few thousand people can fully vet and audit the code, the numbers are high enough and distributed enough that *someone* is definitely going to catch malicious changes. This is the dynamic of open source: *anyone* can contribute and review and test, even if of course most people don't.\n\nIt's linked to bitcoin's own architecture: nodes can leave and join at will. The *dynamic* created by this openness is what counts, not the specific set of contributors/nodes/coders that exist today.\n\nBy the same token, in Lightning, of course hubs will spring up, there will be pockets of centralization here and there - but new nodes can spring up any time to route around those hubs. And this argument is critically dependent on how easy it is to spin up Lightning nodes for at least a subset of users - and indeed, it really is easy, and it only gets easier every year. Even people on phones have *very* easy to use non-custodial options (example: Phoenix) so the situation is even better than the 'start-a-node-optionality' that I describe.\n\nSo in that sense LN is even better than 'fully distributed/decentralized' - it's instead completely *open* - you cannot stop any set of people choosing a pure hub and spoke model for their dealings, and you cannot stop the exact opposite, either. https://example.com/ 9969 440422 440422.440523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8264739288041 0 \N \N f 312064767 \N 4 89176680 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421593 2025-03-01 19:15:35.72 2025-03-29 22:39:49.748 \N Making progress in my small cabin project 🙂 Yesterday I've managed to cover the remaining part of the back side of the cabin with permeable membrane - the building is now completely sealed 🙂 I've also temporarily installed an electric heater - looks like it'll be enough for now to comfortably sleep in the cabin (even without insulation). \n\nToday I've brought a mattress in and I'll be making an attempt to build an entresol which will serve as a bed frame 🙂\n\nHave a great day ahead!\n\n![electric heater](https://i.ibb.co/tZ1FHZT/electric-heater.jpg)\n![future entresol](https://i.ibb.co/BLwnQwG/spot-for-the-entresol.jpg) https://example.com/ 9352 421228 421123.421130.421205.421228.421593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.74429087099988 0 \N \N f 156124746 \N 1 171350984 0 f f \N \N \N \N 421123 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421833 2025-03-02 02:47:03.245 2025-03-29 22:39:49.749 \N This whole "pandemic" circus has been the biggest attack on human rights that I've ever witnessed and personally suffered, and all you say is "lmfao"?\n\nAnd, by the way, yes, the covid mRNA "vaccine" is, indeed, gene therapy. https://example.com/ 4798 421818 421778.421801.421818.421833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3496178976454 0 \N \N f 180171739 \N 1 198259118 0 f f \N \N \N \N 421778 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410422 2025-02-20 13:24:08.732 2025-03-29 22:39:49.749 \N ![](https://m.stacker.news/47183)\n https://example.com/ 11885 410368 410311.410355.410368.410422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3441167294017 0 \N \N f 65799904 \N 1 150793358 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 386140 2025-01-30 16:39:29.457 2025-03-29 22:39:49.749 \N > Could we enhance priceless things with price-like qualities to create more price-like psychological effects?\n\nI think this is an important question. Doomberg recently mocked the shit out of efforts to price aspects of nature in an article about [natural asset companies](https://doomberg.substack.com/p/measurement-army). From what I read of the article, it sounds like NACs are unworkable and perhaps ill-motivated, but it's also true that one of the biggest dangers -- perhaps the single biggest one -- of the modern world is that people think that things that don't have prices also have no value. Or they don't really _think_ this, but the machinery of capitalism compels the most powerful entities in the world to act accordingly. Any effort to solve that problem should be taken seriously.\n\nBut wrt what makes prices special: imo, it's that they roll up such gigantic and diffuse kinds of value and instantiate that massive vector into a single number that people can think with. Which means that everything pertaining to price carries that complex bouquet with it -- it's inherently compelling, the perfect psychological racoon trap. https://example.com/ 11750 386138 385662.385905.386121.386138.386140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.85286854162013 0 \N \N f 228185191 \N 2 81529680 0 f f \N \N \N \N 385662 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449585 2025-03-23 12:47:20.47 2025-03-29 22:39:49.749 \N > HODL contracts and HODL invoices are the same right?\n\nNo. "Hodl contracts" is the name of a python app I made that *uses* hodl invoices to emulate an oracle service on the lightning network. Hodl invoices allow a merchant -- Bob -- to programmatically settle or cancel a payment from Alice, but they (Bob) have the private key necessary to do that, so it's fully custodial. Hodl contracts are different. They allow a routing node -- Carol -- to conditionally *forward* or cancel a payment from Alice to Bob, but the third party does not have the keys to the money (Carol is just a routing node), so she does not have custody of the funds.\n\n> you mentioned that no one uses them. But I think RoboSats is just an example where HODL invoices are indeed used (they use it for escrow)\n\nRobosats uses hodl invoices for escrow, but they do not use hodl contracts. As a result, robosats is a fully custodial service. When you enter a contract on robosats, you send your collateral to Robosats, not your counterparty, and they use hodl invoices to conditionally settle or cancel your collateral payment depending on whether there is a dispute. (If there is no dispute, they cancel your collateral payment, thus giving you your money back; if there is a dispute, they settle your collateral payment, thus retaining your money until they can decide whether you should get it back or your counterparty should). But since they have all the keys they need to settle the HTLC, they have full custody of the collateral for the duration of the trade. "Whoever holds the keys holds the coins," and in the case of Robosats, Robosats holds the keys. So yeah, Robosats is a fully custodial service, just like coinbase or binance, but anonymous (and made by a fellow who I personally vouch for because I think he is trustworthy).\n\n> For longer durations, why not just use regular payments?\n\nIf by "use regular payments" you mean "use the base layer," I agree. Long duration contracts typically involve large amounts, and for large amounts, the base layer works wonderfully. There are no time limits and there are great tools for making conditional payments, such as 2 of 3 multisig, hashlock contracts, and discreet log contracts. But in sporting events the typical wager is $8-$10, and I don't think the base layer is very good for such amounts anymore. That's why I want to do something like a sports betting site on lightning.\n\nIf by "use regular payments" you mean "pay your counterparty directly, with no oracle," you can only do that if you fully trust your counterparty. What if you send them $50 for a game that's coming up on Saturday but they just run off with your money even though their team ends up losing? What if your team wins but your counterparty never sends you the money they owe you? Conditional payments are needed here, but the *recipient* shouldn't determine the outcome because they can't be trusted. Hodl contracts allow a *third party* who *both* counterparties trust to determine the outcome without taking custody of the money (because they are just a routing node).\n\n> I don't see much of a difference than just paying the service and hoping they refund you conditionally?\n\nI hope you see the difference now. Instead of paying your counterparty *directly,* pay them through a routing node that will forward or cancel the payment based on the outcome of the game. That's what distinguishes hodl contracts from hodl invoices.\n\n> HODL contracts lock up funds in a channel right?\n\nYes\n\n> So there is not only the HTLC max timeout issue but also the max HTLC in flight, no?\n\nYes\n\nBut the max HTLC limit is pretty easy to solve -- just open up another channel. The max HTLC limit is something like 425 htlcs per channel, which seems like a very high number to me, especially because, if they are all in use, that means your service is very popular, so you can probably easily afford to just open up another channel and get 425 more HTLC slots. https://example.com/ 2056 449515 449515.449585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.780961053352 0 \N \N f 152305592 \N 2 109904787 0 f f \N \N \N \N 449515 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447027 2025-03-21 15:17:17.086 2025-03-29 22:39:49.749 \N ![neo](https://pbs.twimg.com/media/FcY9bmKXEAUHEaK?format=jpg&name=900x900) https://example.com/ 10016 447016 446313.446884.446898.446927.446961.446988.447006.447016.447027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3235763843275 0 \N \N f 155346415 \N 1 163573117 0 f f \N \N \N \N 446313 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432114 2025-03-10 00:26:18.986 2025-03-29 22:39:49.749 \N My agenda for today:\n\n**Work on image uploads**\n\nI accidentally deleted my existing code when I was in Berlin for bitcoin++ because I wanted to run stacker news code from my home machine. So I ran `rsync` to sync the code changes I made on my laptop to my home machine. However, I included the `--delete` option since I copied the command from [here](https://git.ekzyis.com/ekzyis/ekzyis/src/branch/develop/deploy.sh). Then it deleted everything in my stacker news repository that wasn't already on my laptop. And there was basically nothing on my laptop, lol\n\nThat was a classic linux experience. Fuck around and find out! haha\n\nBut so far, I think I only lost this image upload branch since I didn't push it anywhere yet. And the code was more just me messing around with ideas and [actually fighting against NextJS to let me use forms](https://github.com/vercel/next.js/discussions/48164). I was very surprised I actually need to use a library like [`formidable`](https://www.npmjs.com/package/formidable) to be able to handle forms in the backend when not using the new app router.\n\nSo it shouldn't take long to get to the point I was before :)\n\n**Code review**\n\nI started to hold myself accountable by mentioning I am going to review something tomorrow. And to not be unreliable, I should indeed do a review then when I said I would!\n\nSo I am going to review:\n\n- [Attempt to get publication year when auto-titling links](https://github.com/stackernews/stacker.news/pull/520)\n- [Custom date selector for more pages](https://github.com/stackernews/stacker.news/pull/567) (even though I didn't mention)\n\nI thought there was another PR where I mentioned that I would do a review today but I can't find it 🤔\n\n**Continue with first SN blog post about ranking, rewards and trust**\n\nWe want to be more transparent how SN works under the hood.\n\n**Continue work on [delphi.market](https://delphi.market/)**\n\nMy conviction that my idea how a prediction market on lightning could work is as strong as ever. However, it's weird that I haven't done anything on it for a while. I just never took the time for it.\n\nBut today I will at least open up the code and write another test case or something. Maybe I have already gone down the path of "overengineering". But it started to feel _really_ uncomfortable to change a lot of stuff and never be sure what broke and what not. I believe a good test suite can actually speed up development since you know exactly when your code starts working and your tests are your specs. I just shouldn't write tests for trivial stuff or tests that test the internal API which might break a lot. If I only test the public API, it shouldn't change a lot or at least not such that it's too hard to update the tests. I should write down how the new API works anyway, right?! https://example.com/ 18901 430601 430496.430601.432114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.29159200992806 0 \N \N f 98825313 \N 1 210841146 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443298 2025-03-19 08:48:17.677 2025-03-29 22:39:49.739 \N ![bitcoin meme](https://i.imgur.com/R9MqmYb.jpg) https://example.com/ 1505 443283 443272.443283.443298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.76070418732962 0 \N \N f 46327115 \N 1 123133340 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 2025-03-26 06:17:19.027 f \N \N \N 0 0 0 0 1 0 0 429258 2025-03-08 04:02:26.739 2025-03-29 22:39:49.739 \N > Segwit moved some transaction data in a new Witness spot. How do old nodes which do not run SegWit agree with the ones that do?\n\nThe trick with segwit is that we *don't send them that data.* We construct a transaction that is valid under the *old rules* without the witness data, and we basically staple the witness data onto that transaction in the new section. When you propagate transactions through the network, if you have a peer who announces themselves as a "post segwit" node (through their version number), you send them the full transaction -- staple and all. But if they identify themselves as a "pre segwit" node, you remove the witness data and just send them the "stripped down" transaction.\n\n"Old nodes" are happy with segwit transactions because the stripped down versions they receive are still valid transactions. These stripped down transactions don't have *signature* in them (because that's what we put in the witness section), but that's fine because not all transactions under the old rules "require" a signature: if you are spending from something called an "anyone_can_spend" address, you do not need a signature.\n\nSo we have this special format for segwit transactions where you have to use an address that "old nodes" considered "anyone_can_spend," but "new nodes" look at them and say "if the transaction spends from this former_anyone_can_spend_style address, I know that it actually *does* require a signature, but that will be in the witness section." So they look there and then validate the signature.\n\nWhereas "old nodes" don't know about the witness section (we don't send it to them) so they just don't see any signature at all, but that's okay with them because they *also* don't know we changed the rules about these particular anyone_can_spend addresses -- they still think they don't need a signature, so they don't mind that there isn't one. https://example.com/ 21090 428674 428318.428382.428674.429258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5290160793106 0 \N \N f 393362809 \N 4 236367853 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455523 2025-03-27 05:23:35.898 2025-03-29 22:39:49.739 \N I hope someday SN will offer lndhub for SN accounts. Users could use SN wallet in Zeus or Bluewallet app directly.\n\nHosted channels and lndhub are a good simple way to onboard new users.\n\nLater they can add more self custodial wallets once they learn more.\n\nI explained here a scenario that experienced bitcoiners should do: LN banks for friends and families \nhttps://darthcoin.substack.com/p/bitcoin-private-banks-over-lightning\n\nNothing wrong with some level of custodial accounts, if the user is well informed.\n\nAlso if are not KYC could be a good decoy mode to receive sats with increased level of privacy.\nAs I explained in this guide\nhttps://darthcoin.substack.com/p/operating-with-ln-as-a-merchant https://example.com/ 17221 455413 455413.455523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.118469396574 0 \N \N f 126513240 \N 1 172657548 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403315 2025-02-14 17:23:26.683 2025-03-29 22:39:49.739 \N Today we are all #satoshi\n the metal bitcoin cowboy hat Sculpture I've been working on is almost ready to share.. though I decided to go a little further with it... \nHappy Halloween my plebs! 👻\n\nhttps://image.nostr.build/c66e292293adc5cb93a1525dd37a64b99ddb17d7db8c22769722c4aa9c082e21.jpg https://example.com/ 19333 403267 403267.403315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4141769693266 0 \N \N f 169514531 \N 2 160045640 0 f f \N \N \N \N 403267 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 427540 2025-03-06 13:32:54.449 2025-03-29 22:39:49.74 \N Thanks for the nice response.\n\n> I've been putting effort into tagging issues with difficulty levels and giving pointers on what tackling the issue will entail so they can pick the right porridge bowl if they don't want to make up their own.\n\nThis is tangentially related, maybe, but I'm very intrigued, in a systems-builder type of way, in how big undertakings (like your codebase) can be rendered maximally approachable to someone. Put another way: for whatever complicated system you inhabit, how can you lower the bar as much as possible for someone else to contribute to it meaningfully?\n\nThis extends to social systems, too. I may have posted about this before, but this example from Irina Krush during the _Kasparov vs the world_ chess extravaganza is kind of my go to for what this means. Here's an [excerpt](https://michaelnielsen.org/blog/kasparov-versus-the-world/) from Michael Nielsen:\n\n> Unlike her expert peers, Krush focused considerable time and attention on the World Team’s game forum. Shrugging off flames and personal insults, she worked to extract the best ideas and analysis from the forum, as well as building up a network of strong chess-playing correspondents, including some of the grandmasters now offering advice.\n\n> Simultaneously, Krush built a publicly accessible analysis tree, showing possible moves and countermoves, and containing the best arguments and refutations for different lines of play, both from the game forum, and from her correspondence with others, including the GM school. This analysis tree enabled the World Team to focus its attention much more effectively, and served as a reference point for discussion, for further analysis, and for voting.\n\n> As the game went on, Krush’s role on the World Team gradually became more and more pivotal, despite the fact that according to their relative rankings, Kasparov would ordinarily have beaten Krush easily, unless he made a major blunder.\n\n(Some similar examples come to mind from [Audrey Tang](https://en.wikipedia.org/wiki/Audrey_Tang), though I don't have any ready to hand. Similar energy in her activism, though.)\n\nI'm obsessed with this idea in the btc ecosystem, which is why I'm such a snarky bitch sometimes. What would the Irina Krush / Audrey Tang of btc look like? If you're holding a billion dollar bag, is there a relatively low-cost but super high-leverage Irina Krush-style person who could fills all those invisible cracks and bridge the bridgeless gaps? It's fun to think about. I've written about it before but am too lazy to unearth any of it.\n\nAnyhoo, your setup for the trial made me think of it. I bet the work you're doing now will add a ton of value outside of the value it adds in helping you hire someone. Innovating as per usual. https://example.com/ 4798 427091 427091.427540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8192226739803 0 \N \N f 607574894 \N 7 8685916 0 f f \N \N \N \N 427091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435560 2025-03-12 19:32:51.147 2025-03-29 22:39:49.74 \N Adding support for multiple forward recipients per post on SN :) \n\nWIP PR: https://github.com/stackernews/stacker.news/pull/403 https://example.com/ 10469 435359 435359.435560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.68348118165581 0 \N \N f 308151295 \N 2 212741525 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 2025-03-20 06:59:14.67 f \N \N \N 0 0 0 0 1 0 0 423615 2025-03-03 13:42:54.828 2025-03-29 22:39:49.74 \N This one hits home hard.\n\nhttps://imgprxy.stacker.news/IVnPOcpE5IzZZQBzWPR4iaFORJvRDVE8UZUqUTMkRVM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9Ua21KMmQzL2ZpbGUuanBn https://example.com/ 928 423504 423468.423504.423615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.3089506341047 0 \N \N f 35797378 \N 1 42051325 0 f f \N \N \N \N 423468 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 192432 2024-07-01 05:20:32.627 2025-03-29 22:39:46.783 This is what a Bitcoin Circular Economy looks like Hey!\n\nI’m a bitcoin journalist obsessed with documenting bitcoin around the world.\n\nHere's my latest story from Bitcoin Witsand in South Africa!\n\nI'd love to hear what you think, Stackers. \n\nI hope it inspires you to do more with bitcoin. \n\nVideo:\n\nThis African Town is Living in the YEAR 2030 \nhttps://youtu.be/wp2SonEgquQ \N 732 \N 192432 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 23.1513229766435 0 \N \N f 0 \N 0 145832517 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 28645 2023-06-03 16:39:07.488 2025-03-29 22:39:46.783 I'm Kilian, Co-Founder of Boltz. AMA. Bitcoineros!\n\nMy name is Kilian and I am Co-Founder of Boltz. Boltz started out as a simple non-custodial swap service between lightning and mainchain in early 2019. Since the beginning, we have been focused on pushing the adoption of the Lightning network and by now we are running some of the largest nodes on the network, integrated CLN as additional implementation into our backend and recently added liquid swaps.\n\nOur vision is to build out Boltz to become Bitcoin's Layer 2 bridge.\n\nTopics to ask me about:\nBitcoin\nLiquid\nLightning\nLayer 2s\nAPI\nAtomic/Non-custodial Swaps\nCompetition/Differentiation\nVision and Mission \N 725 \N 28645 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.94449844560073 0 \N \N f 0 \N 0 113151951 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454427 2025-03-26 12:05:33.641 2025-03-29 22:39:49.741 \N I wish I could share your optimism. I'm a retired U.S.lawyer. After 35 years of practice, I realize that laws will be manipulated to serve those in power. Words on a piece of paper mean nothing against the full force of the state. Best to avoid the legal system if you can. https://example.com/ 1737 454409 454203.454236.454409.454427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3926579017776 0 \N \N f 213525921 \N 1 163110627 0 f f \N \N \N \N 454203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434484 2025-03-12 00:12:41.247 2025-03-29 22:39:49.741 \N ![IMG_9903.jpeg](https://m.stacker.news/22630)\n\n![IMG_9902.png](https://m.stacker.news/22631)\n\n![IMG_9901.png](https://m.stacker.news/22632) https://example.com/ 27 434469 434469.434484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.89466801204528 0 \N \N f 75199938 \N 1 27792715 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 2025-03-19 04:45:14.105 f \N \N \N 0 0 0 0 1 0 0 448375 2025-03-22 15:16:39.784 2025-03-29 22:39:49.742 \N They were incredibly late to develop their own mobile app (or even a functional mobile web view). The sign of rot to me was when this design came through, but not because it served users better - it was launched as a better interface for serving ad formats and avoiding ad blockers. https://example.com/ 9332 447944 447944.448375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.83642209912725 0 \N \N f 391210393 \N 3 37909791 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N 2025-03-29 15:59:54.758 f \N \N \N 0 0 0 0 1 0 0 437716 2025-03-14 19:40:04.613 2025-03-29 22:39:49.742 \N Relatives of ours bought a house back at historically low interest rates. They also got an adjustable rate mortgage because they were sure interest rates would never rise.\n\nStay humble. https://example.com/ 794 437714 437714.437716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.20364413565441 0 \N \N f 707781241 \N 5 223219975 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430916 2025-03-09 14:06:51.429 2025-03-29 22:39:49.742 \N Day 174 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20788 430770 430770.430916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1694096071586 0 \N \N f 199910716 \N 1 184341376 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435860 2025-03-13 03:24:22.488 2025-03-29 22:39:49.742 \N **Foxes use the Earth’s magnetic field as a targeting system**\n\n![](https://m.stacker.news/60690)\n\n> Jaroslav Červený has found that when red foxes pounce, they mostly jump in a north-easterly direction. He thinks that they’re using the Earth’s magnetic field to hunt.\n>\n> *https://www.nationalgeographic.com/science/article/foxes-use-the-earths-magnetic-field-as-a-targeting-system* https://example.com/ 20924 435847 435847.435860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.64677429846144 0 \N \N f 204877728 \N 2 122420061 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 2025-03-19 21:40:09.246 f \N \N \N 0 0 0 0 1 0 0 435295 2025-03-12 15:23:43.727 2025-03-29 22:39:49.742 \N I have a thread [here](https://twitter.com/super_testnet/status/1791100612337185263) where I outline why I think this is so cool. Here I've copy pasted it with slight modifications:\n\nAt its core it's "just" escrow software. It helps you create a 2 of 3 multisig where the escrow agent has 1 of the keys and the buyer and seller have the other two. But it's particularly cool because it takes that to the next level: it supports frost multisig, which makes it one of the first bitcoin apps to actually use taproot for what it was meant for, and it's also designed so that users can reuse their bitcoin as collateral in multiple contracts without actually moving it. So you can use this as the basis for bitcoin layer twos.\n\nI also *love* what they do with their integrated signing device. There's this separate little module that holds your keys and does all of the signing, so the website never has your keys, it just asks this module if you want to sign the contracts, and the module asks *you.*\n\nI would love to see that piece in particular spun off into its own little app. Too few bitcoin apps do this "separation of concerns" thing where your signing device is separate from the apps you interact with. The signing module could change all that and is worth a lot on its own.\n\n> **Sovereign Origin asked me the following question on twitter**\n> **"This one [the part about using bitcoin as collateral] is not clear. They can do what now? This sounds very interesting!!"**\n\nI'm probably butchering this but I *think* it works like this. There are four people involved in every contract: \n\n> Alice = buyer\n> Bob = seller\n> Carol = agent\n> Bitescrow = coordinator\n\nAlice's funds go into a 2 of 2 multisig with bitescrow and she gets a presigned "backout transaction" so that bitescrow never has custody of her funds. Suppose Alice wants to buy a car from Bob for $60k. Alice and Bob must first agree on who Carol should be (their agent, separate from bitescrow), then Alice gets bitescrow to cosign a transaction that would, if broadcast, move Alice's funds (1 btc) from the 2 of 2 multisig into a 2 of 3 multisig, where Alice, Bob, and Carol have the keys.\n\nNow Alice sends Bob $60k "real" dollars (USD, not bitcoin). In the "happy path" Bob sends her the car and everyone is happy so Alice and Bob just cooperatively tell the escrow "nevermind, don't actually broadcast anything." And Alice's money thus stays in the 2 of 2 multisig with the escrow. If there's a dispute, bitescrow broadcasts the transaction putting the money into the 2 of 3 multisig whereupon what happens next is up to Carol, the agent: if she sides with Alice, that means Carol thinks Alice got jipped, so Alice gets her bitcoin back. If Carol sides with Bob, she thinks Alice never sent the USD, so Bob gets Alice's money.\n\nBut in the "happy path" Alice's money never moved! It still remains in her original 2 of 2 multisig with bitescrow, so she can reuse it in another contract. Your bitcoin is used as collateral for contracts where you actually send *something else* (not bitcoin) and only use bitcoin as a fallback in case there is a dispute. This should scale really well, and it's also neat that bitescrow never custodies any user funds. They do have to be trusted not to collude with Alice though.\n\nI think that's the basic model but @BlueSlime or @Tristan can correct my errors. https://example.com/ 660 435277 435217.435275.435277.435295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9389935290096 0 \N \N f 1695014122 \N 16 72180421 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 11:06:42.916 f \N \N \N 0 0 0 0 4 0 0 102667 2023-12-24 15:20:01.585 2025-03-29 22:39:46.783 Find Your Co-Founder/Building Partner on Stacker News! ⚡ ## The Challenge\nMany of us are passionate about **building companies** or **creating innovative projects**, but finding the right partner or co-founder can be a real struggle. Traditional methods like hackathons or meetups are great but only sometimes connect us with our ideal collaborator.\n\n## Monthly Collaboration Posts! \nWe’re introducing **monthly collaboration posts** on Stacker News! These posts will be a dedicated space for sharing what you’re building and discovering potential collaborators.\n\n### How It Works\n- **Monthly Posts:** We’ll have a fixed schedule (like the 1st of each month or the first Monday) for consistency and familiarity.\n- **Community Engagement:** We’ll boost these baby! So the entire Stacker News Community gets those ZAPS!\n- **Amplification through Social Channels:** Let's together broadcast these opportunities far and wide.\n\n### What to Include in Your Post\nTo streamline the process, we suggest the following template for your posts but feel free to adjust Stackers!:\n\n- **Name/Nym:** [Your Name]\n- **Summary of What You’re Building:** [Brief description of your project or idea or GitHub.]\n- **What Kind of Help Are You Looking For?** (e.g., engineers, marketing, sales, legal, education, design, mentorship, advisors, venture capital, strategy, technical consulting.)\n- **Purpose:** Is this for fun, or are you aiming to build a Bitcoin business?\n- **How to Contact You:** [Your preferred contact method]\n\n### Let’s Build Together!\nThis is an initiative that I hold dear to my heart. We have a strong collaboration environment at PlebLab, which I want to bring to the Stacker News community. We’re open to suggestions and excited to see how this idea evolves! I will also bring this up on Stacker News Live every first week of the month to get the most visibility for all the builders who participate, and try my best to facilitate an introduction or collaborator.\n\nReady to find your next co-founder or Building Partner? Post in the Monthly Collaboration thread, and let’s make it happen!\n\n🤘⚡- @Car\n \N 21339 \N 102667 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.94047104649005 0 \N \N f 0 \N 0 174726096 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402347 2025-02-13 17:34:17.781 2025-03-29 22:39:46.783 Beware of millions of ways to lose your Satoshis mining this bull market I witnessed quite a few people losing good portions of their stack's last bull run because they fomoed into mining. Please do not do this to yourself because you deserve to be rich. \n\nWhy Mine?\n\nMining is a way to purchase Bitcoin for cheaper than the spot market. If you are mining profitably, you are purchasing Bitcoin from the Bitcoin network, with your costs being electricity and infrastructure to get setup. There are plenty of reasons to mine:\n\n-If you want to heat your house \n-If you have low electricity rates\n-If you have excess electrical capacity\n-If you're a masochist\n-If you have too much money and are bored\n-You are a genius and want to launch a speculative attack on the dollar\n-if you need a tax write off and want to generate expenses (I'm not a tax expert so don't ask me about this)\n-stranded/waste energy\n-You believe strongly in sourcing ethical bitcoin and see mining as a financially viable option\n\nPeople can find interesting reasons to mine but there needs to be the right circumstances and compelling reasons to do so. Mining is expensive and so you do need revenue to pay for the expenses especially as you scale up in size. \n\nWhy not to mine?\n\nBuying Bitcoin is a lot easier than mining which is a pretty compelling reason to not mine. If the goal is to end up with more sats, there is far less execution risk in buying Bitcoin and transferring it to a wallet than buying miners and trying to set them up. There are millions of reasons not to mine:\n\n-You live in a country that's impossible to import to\n-You have expensive electricity\n-Noise is an issue (miners are incredibly loud, like 90db loud)\n-You are unable to evaluate risk due to not understanding the market\n-You don't have time to bang your head into a wall troubleshooting cheap Chinese hardware\n-You have a low pain tolerance \n\nWhat goes into mining? (Just a high level, I will not cover everything)\n\nMining is a really complicated activity involving a lot of moving pieces. The more you scale, the more complicated it becomes. When you buy miners, a reasonable expectation for failures on those miners within the first 3 months could be anywhere from 3-20%. If you buy used machines it could be higher. When you rush to buy a new model that was just released, there is zero information on how good of quality that model will be. Manufacturers have burned customers over and over through the years with horrible hardware. Some hardware might be good quality, but not be built to handle harsh environments, so understanding the landscape of hardware is super important. \n\nBecause of high failure rates, it's important to understand the repair ecosystem where you live and have plans on how to fix your hardware. The repair industry is incredibly vibrant in the US because the mining industry is so developed. Going into small countries in Europe/Africa/South America will not be the case. Often times you will have to send machines back to China in order to get them fixed which often won't make any financial sense. \n\nUnderstanding mining economics is a huge one that gets people wrecked. Miner pricing is just as volatile as Bitcoin. People buy the top, then the price will crash, while difficultly still climbs making that miner a fraction of the value before. Profitability calculators that only show you todays pricing are useful for making people fomo, but not useful for calculating long term. Insights.braiins.com is one of my favorite places to look at mining economics. People get wrecked because they do not prepare for or anticipate quickly changing economics. \n\nMining is physical work and requires people to do things. If you are mining at home, sometimes you need an electrician in order to build out electrical infrastructure. Industrial scale ASIC miners do not run on 120v electricity that is in your typical American home. Counting on that electrician to do things right is not something you can take for granted. You as an individual are responsible for learning aspects of mining like the basics of electricity in order to oversee it's done correctly. Electric costs are constantly changing and generally trending upwards globally which is a whole different problem. If you think Bitcoin is a rabbit hole, wait until you try to learn how energy markets work. \n\nTo really simplify it because it would require a book to cover this, and by the time it would be published, there would be a million other things to add, you need\n\n-Cheap power\n-Skilled labor\n-Stable power\n-Stable geopolitical conditions\n-ETC\n\nA word about hosting\n\nHosting can be a great option. There are different strategies for everyone. One thing to take into consideration with hosting is that you are adding counterparty risk on top of execution risk it takes to mine. Operators fail and people choose hosting because it's a lot simpler. Most hosts choose to host instead of self mine because they get the hosting customers to pay the costs to deploy the infrastructure by charging deposits/setup fees and the margin on hosting fees. For many individuals, it might not be economical to mine at home, but will be economical to mine with a host because the host has cheaper fees than your local electricity provider. If you are not able to control you miner, you are placing trust in the operator. Vetting that host is important, but also understanding this industry is brutal and things can go sideways. Just know the risk you are getting into and read all the horror stories of what has happened to other people in order to try and avoid them yourself. \n\nTrinket miners don't ever ROI\n\nThere are lots of products that are catered towards general consumers such as nifty space heaters, hashing nodes, and other small miners. They are generally very expensive as miners compared to the industrial computers you can purchase, but can be fun to run. Please do not look at these products as ways to make cash, and more as toys to have fun with and possibly learn about mining. You can always buy older equipment to run instead of paying lots of money for stuff that won't generate much Bitcoin in rewards. \n\nResist the fomo\n\nIf you read this far, hopefully you found something in this helpful. A lot of people got excited about mining last cycle and did not consider the risks. It's best to find experienced operators to learn from their experience before you spend a bunch of money deploying. Don't buy miners to have them sit around undeployed. Make sure you are ready to plug them in if you because they depreciate rapidly in value. Every second they are not hashing is lost potential revenue that you will never get the chance to get back. Difficult is always climbing, and we are always moving closer to the next halving. \N 21037 \N 402347 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 27.3471887989725 0 \N \N f 0 \N 0 217913191 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 152349 2024-04-02 06:05:38.841 2025-03-29 22:39:46.783 Learn How to Verify with Me ( with Baby Steps ) I have wanted to learn how to verify with software for a while because I have a habit of erasing my laptop from time to time, and I need to make sure I'm backing up EVERYTHING since I'm often on the road exploring—if anything happens, that might be lead to many problems, *but I'm the one to be blamed*; For example, I had forgotten to backup some articles before, and they are gone, so I need to make sure I'm more antifragile by constantly testing my own backup with erasing.\n\nThe second reason is when you are around Bitcoiners so much with all the verifying, you really want to make sure all the software you use is genuine. Also, I've stopped using the Apple Store for a while, downloading software from sites could be risky, even though I do verify the URLs, but you never know! So one of the to-does for me is to learn how to verify software because I need to download again every time. I shared some of the [questions](https://stacker.news/items/436029) I had in the saloon, and @ek patiently wrote this [guide](https://stacker.news/items/436752) on how to verify better, so I'm writing down a more detailed article to help others who also want to learn the art of verifying. 👀\n\n\n____\n\n\n### **Why Verify**\n\nI'm not going to focus on the why here, but if you are a Bitcoiner, you know the why - don't trust, verify, especially with all the phishing sites and malicious software these days.\n\nAlso, if you think this is way above your head or is not for a normal person, I'm happy to tell you that I don't have any coding skills, but I'm willing to test and learn—so if I can do it, you can too!\n\n____\n\n\n\n### **What to Verify ( Important! )**\n\nWhen I started dipping my toe into verifying, I didn't know what I should verify at all. 👀 but then I read a few docs and followed some of the official guides from the software that I use, and of course, this good [piece](https://stacker.news/items/436752) from @ek; I figured it's actually needed to verify two things when it comes to verifying software:\n\n**1. The `public key`, which is used to sign the software release.** \n\nWhen importing a public key, you should check the fingerprint to verify it's the correct public key and ideally from independent sources, and from more sources, the more trusted.\n\n**2. The `signatures`.**\n\n> Digital signatures are commonly used to ensure the integrity and authenticity of software. When you verify a digital signature, you make sure that the software was created by the person you trust and think it was created by (authenticity) and that it was not modified (integrity). You usually download the signature from the same location as the software. \n\nexplained by @ek\n\nThere is also a tricky part: if the signature file name (ASC) does not match the dmg file that you downloaded, you need to do one more step for the checksum verification, which verifies the hashes, and it usually shows in the site too when you need to do this step. *( unfortunately, I'm not that technical being able to explain this, feel free to chip in. )*\n\n____\n\n\n\n### **The Setup**\n\nIn order to verify, we need to install the tools first, [home brew](https://brew.sh/) and gnupg ( Or install [GPG Suite](https://gpgtools.org) if you are also using a Mac ) **but I recommend using the terminal for more solid learning.**\n\nThe homebrew is quite easy to install, all you need is to put these codes into the terminal, wait a bit and done ( $ means "run this in terminal" )\n\n**1. Install homebrew**\n\n```\n$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"\n```\n\nfor better privacy enter `brew analytics off`\n\n\n\n**2. Install gnupg**\n\n```\n$ brew install gnupg\n```\n\nthat's it, you are all set! time to explore the fun. 🥁\n\n*Since I'm using a Mac, this experience is based on the Mac system; feel free to pill me other fun!*\n\n_____\n\n\n\n### **Learning by Doing**\n\nYou can't learn swimming from reading, and talking is cheap; I'm going to use two of my favorite Bitcoin desktop wallets as examples for everyone to follow along and do the verification yourself. \n\n\n*For simplicity, we are only using a terminal as practice here.*\n\n\n#### ***Practice A. [Electrum Wallet](https://electrum.org/)***\n\nHere is the [guide](https://bitzuma.com/posts/how-to-verify-an-electrum-download-on-mac/) linked to the site on how to verify: \n\n![electrum.png](https://m.stacker.news/23135)\n\n\n**1. [Download](https://electrum.org/#download) the Software and the Signature next to it.** \n\nBe sure to put both in the same folder, e.g. in the download folder. \n\n\n\n**2. Check different sources of the fingerprint to verify the signer's public key.**\n\n[*Github*](https://github.com/spesmilo/electrum/blob/master/pubkeys/ThomasV.asc)\n\n*In order to import from PUBLIC KEY BLOCK, run `gpg --import` copy the block and paste in the terminal and then CTRL+D.*\n\n*[Keyserver](https://keyserver.ubuntu.com/pks/lookup?search=Thomas+Voegtlin&fingerprint=on&op=index)*\n\n*[This guide](https://bitzuma.com/posts/how-to-verify-an-electrum-download-on-mac/)*\n\n\n\nAnd do one more step, to make sure that you imported the correct key.\n\n```\n$ gpg --fingerprint thomasv@electrum.org\npub rsa4096 2011-06-15 [SC]\n 6694 D8DE 7BE8 EE56 31BE D950 2BD5 824B 7F94 70E6\nuid [ unknown] Thomas Voegtlin (https://electrum.org) \nuid [ unknown] ThomasV \nuid [ unknown] Thomas Voegtlin \nsub rsa4096 2011-06-15 [E]\n\n```\n\nAll fingerprints are matched: `6694 D8DE 7BE8 EE56 31BE D950 2BD5 824B 7F94 70E6`, good! \n\n\n\n**3. Verify the signed file.**\n\nPut these two lines of code into terminal: \n\n```\n$ cd Downloads\n$ gpg --verify electrum-4.5.3.dmg.asc\n\ngpg: assuming signed data in 'electrum-4.5.3.dmg'\ngpg: Signature made Fri 23 Feb 12:32:06 2024 +03\ngpg: using RSA key 637DB1E23370F84AFF88CCE03152347D07DA627C\ngpg: Good signature from "Stephan Oeste (it) " [unknown]\ngpg: aka "Stephan Oeste (Master-key) " [unknown]\ngpg: aka "Emzy E. (emzy) " [unknown]\ngpg: WARNING: This key is not certified with a trusted signature!\ngpg: There is no indication that the signature belongs to the owner.\nPrimary key fingerprint: 9EDA FF80 E080 6596 04F4 A76B 2EBB 056F D847 F8A7\n Subkey fingerprint: 637D B1E2 3370 F84A FF88 CCE0 3152 347D 07DA 627C\ngpg: Signature made Fri 23 Feb 03:00:55 2024 +03\ngpg: using RSA key 0EEDCFD5CAFB459067349B23CA9EEEC43DF911DC\ngpg: Good signature from "SomberNight/ghost43 (Electrum RELEASE signing key) " [unknown]\ngpg: WARNING: This key is not certified with a trusted signature!\ngpg: There is no indication that the signature belongs to the owner.\nPrimary key fingerprint: 0EED CFD5 CAFB 4590 6734 9B23 CA9E EEC4 3DF9 11DC\ngpg: Signature made Fri 23 Feb 02:46:47 2024 +03\ngpg: using RSA key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6\ngpg: Good signature from "Thomas Voegtlin (https://electrum.org) " [unknown]\ngpg: aka "Thomas Voegtlin " [unknown]\ngpg: aka "ThomasV " [unknown]\ngpg: WARNING: This key is not certified with a trusted signature!\ngpg: There is no indication that the signature belongs to the owner.\nPrimary key fingerprint: 6694 D8DE 7BE8 EE56 31BE D950 2BD5 824B 7F94 70E6\n```\n\n\n\nIf you see *" gpg: WARNING: This key is not certified with a trusted signature! "* which means you didn't mark the public key as trusted, then you can run `gpg --edit-key thomasv@electrum.org` , enter `trust` and choose the numbers.\n\n```\npub rsa4096/2BD5824B7F9470E6\n created: 2011-06-15 expires: never usage: SC \n trust: full validity: unknown\nsub rsa4096/1A25C4602021CD84\n created: 2011-06-15 expires: never usage: E \n[ unknown] (1). Thomas Voegtlin (https://electrum.org) \n[ unknown] (2) ThomasV \n[ unknown] (3) Thomas Voegtlin \n\ngpg> trust\npub rsa4096/2BD5824B7F9470E6\n created: 2011-06-15 expires: never usage: SC \n trust: full validity: unknown\nsub rsa4096/1A25C4602021CD84\n created: 2011-06-15 expires: never usage: E \n[ unknown] (1). Thomas Voegtlin (https://electrum.org) \n[ unknown] (2) ThomasV \n[ unknown] (3) Thomas Voegtlin \n\nPlease decide how far you trust this user to correctly verify other users' keys\n(by looking at passports, checking fingerprints from different sources, etc.)\n\n 1 = I don't know or won't say\n 2 = I do NOT trust\n 3 = I trust marginally\n 4 = I trust fully\n 5 = I trust ultimately\n m = back to the main menu\n\nYour decision? \n\n```\n\nnow run it again. *( from my testing, if you want to make this warning disappear, you need to set the trust to "5 = I trust ultimately." )*\n\nAnd done! safe to install it now.\n\n\n\n____\n\n\n\n#### *Practice B. [Sparrow Wallet](https://sparrowwallet.com/)*\n\nHere is the Official [guide](https://electrum.org/#download) on how to verify.\n\n![sparrow.png](https://m.stacker.news/23136)\n\n**1. [Download](https://sparrowwallet.com/download/) the Software, the Manifest Signature, and the Manifest next to it.** \n\nBe sure to put all the them in the same folder, e.g. in the download folder. \n\n\n\n**2.Check different sources of the fingerprint to verify the signer's public key.**\n\n*[Keybase](https://keybase.io/craigraw)*\n\n*[Github](https://gist.github.com/craigraw/20311f22d738fd9f8a1ee0007f633f5a)*\n\n*[Keyserver](https://keyserver.ubuntu.com/pks/lookup?search=Craig+Raw&fingerprint=on&op=index)*\n\n\n\nAnd do one more step, to make sure that you imported the correct key.\n\n```\n$ gpg --fingerprint craig@sparrowwallet.com\n\npub rsa4096 2019-10-03 [SC] [expires: 2027-09-18]\n\n D4D0 D320 2FC0 6849 A257 B38D E946 1833 4C67 4B40\n\nuid [ unknown] Craig Raw \n\nsub rsa4096 2019-10-03 [E] [expires: 2027-09-18]\n```\n\n\n\nAll fingerprints are matching: `D4D0 D320 2FC0 6849 A257 B38D E946 1833 4C67 4B40` good!\n\n\n\n**3. Verify the signed file.**\n\nPut these two lines of code into terminal: \n\n```\n$ cd Downloads\n$ gpg --verify sparrow-1.8.2-manifest.txt.asc\ngpg: assuming signed data in 'sparrow-1.8.2-manifest.txt'\ngpg: Signature made Thu Jan 18 13:35:34 2024 +03\ngpg: using RSA key D4D0D3202FC06849A257B38DE94618334C674B40\ngpg: Good signature from "Craig Raw " [unknown]\ngpg: WARNING: This key is not certified with a trusted signature!\ngpg: There is no indication that the signature belongs to the owner.\nPrimary key fingerprint: D4D0 D320 2FC0 6849 A257 B38D E946 1833 4C67 4B40\n```\n\n> You have now verified the signature of the manifest file, which ensures integrity and authenticity of the manifest file - not the binaries! \n\n explained by [Sparrow](https://sparrowwallet.com/download/)\n\n\n\n**4. Verify the hashes.**\n\nI can see that I need to verify the hashes because *the name of the signature file is different from the software*, which means need to do one more step; Simply copy and paste this code into terminal: `shasum --check sparrow-1.8.2-manifest.txt --ignore-missing`\n\n```\n$ shasum --check sparrow-1.8.2-manifest.txt --ignore-missing\nSparrow-1.8.2.dmg: OK\n```\n\nAnd done! safe to install it now.\n\n___\n\n## 🕵🏼 The Art of Verifying\n\n\n\n**1. Download the Software and the Signature next to it.** \n\nBe sure to put both in the *same* folder, e.g. in the download folder. \n\n\n\n**2. Check different sources of the fingerprint to verify the signer's public key.**\n\nGood places to look are Github, Keybase, KeyServer, and different socials. *Generally, the more sources showing the same key, the more trusted.*\n\n\n\n**3. Verify the signed file.**\n\n-- If the signature file name ( asc ) *matches* the dmg file that you downloaded, then run this:\n\n`$ gpg --verify {filename}.asc`\n\n\n\n -- if the signature file name ( asc ) *does not match* the dmg file that you downloaded, get the sha256 and ***additionally*** run this:\n\n`$ cd Downloads`\n\n`$ echo "{hash} {filename}" | shasum -a 256 -c -`\n\n\n\nAnd congrats! now you've learned how to verify two of the best and most important Bitcoin wallets! Feel free to ask if there are any questions or point out any mistakes, as I'm still new in this verifying, and stay tuned for more:)\n\n \N 10986 \N 152349 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.3263303900995 0 \N \N f 0 \N 0 71291176 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 48757 2023-08-11 19:54:46.573 2025-03-29 22:39:46.784 Liquid is not a scaling solution A bunch of people have been shilling [Liquid](https://liquid.net/) has a scaling solution with on-chain fees on the rise. I wanted to take the time to breakdown why this is a fool's errand and there are better ways to go about this.\n\nLiquid is based on [Elements](https://github.com/ElementsProject/elements) which as they claim in their README is `a collection of feature experiments and extensions to the Bitcoin protocol`. Liquid is just another blockchain. It is a fork of bitcoin with a few fancy things added (Tokens, CT, covenants) and bundled together with a 1 minute block time, federated custody, and some blockstream branding. \n\nBlockchains do _not_ scale. As we are seeing today, the bitcoin blockchain does not have enough throughput for everyone's transactions. This is for good reason, keeping the cost of running a full node low is a priority, this was one of the main reasons the blocksize wars were fought.\n\nSo why does Liquid exist? People lately have been touting it as a way to ease fee pressure but in my opinion this is a fool's errand, no different than people back in 2017 saying to use litecoin because fees on bitcoin were too high. Liquid is just a fork of bitcoin, it has the exact same scaling problems and the only reason it has smaller fees is because it is never really been used. For now, it can work as a temporary stop-gap (essentially finding arbitrage for fees), but building actual infrastructure on top of liquid will run into the _exact_ same problems as on-chain bitcoin. \n\nThe problem is that Liquid is trying to use [trust as a scaling solution](https://trustisascalingsolution.com/) but did it in a completely inefficient way. When you are trusting the 11-of-15 multisig, you don't need all the benefits that a blockchain gives you, everything is dictated by the functionaries anyways. The problem is if liquid gets any meaningful amount of users it will also end up with huge fees and we'll be back to square one because Liquid's architecture didn't actually leverage any of the trust tradeoffs it took and just inherited all the same problems of on-chain bitcoin.\n\nThere are real solutions available. Lightning is the obvious alternative but it does have it's own problems, I think a lot of people have been seeing the problems with small scale self-custodial lightning, it is extremely hard to scale. This is why I am extremely excited about [fedimint](https://fedimint.org/). Fedimint has almost the exact same trust model of Liquid (a federated multisig) but is built on a much better architecture that actually allows for scaling. Fedimints don't have a blockchain but instead operate as a chaumian ecash mint. This allows for them to do actually innovative things instead of just being bitcoin plus a couple features. There isn't a block size, instead the transaction throughput is just gated by the processing power of the guardians. Smart contracts are limited by having to do everything on-chain with bitcoin script, they are pure rust code and allows for all sorts of crazy things. And it all still interoperates with Lightning, essentially giving a Wallet of Satoshi with way less rug-pull risk, tons of new features, and is extremely private.\n\nAll this said, it is sad we aren't talking about self-custodial scaling solutions. Today the only real one is Lightning and with current fees, it isn't reasonable unless you have a few million sats. The problem is that this is just inherently a limitation with Lightning. Lightning is excellent when you have high value channels and can make payments across the network, but it does excel at "pleb nodes" where one guy puts 100k sats to try it out, this comes with too many limitations with paying on-chain fees and needing to have reserves to pay future on-chain fees. However, this is potentially solvable. Lightning has solved the problem of scaling payments, where if you have channels, one on-chain transaction can represent many actual payments. What lightning did not solve is that one utxo still represents one user, and this is the limitation we are running into today. Currently the only way we solve this is using a multisig sig (Liquid and Fedimint), but we can solve this in a self-custodial way if we activated covenants. Covenants essentially let us give fine grained control of what is going to be spent from a UTXO before the UTXO even exists. Currently, there are a few proposals (CTV, APO, TXHASH) all with varying ways to do it and different tradeoffs, but imo something like this is desperately needed if we want any chance to scale bitcoin in a self-custodial way. \N 21485 \N 48757 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.6346926226182 0 \N \N f 0 \N 0 92879062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 132134 2024-02-25 13:37:08.548 2025-03-29 22:39:46.784 About the Urban Farm that's Growing Bitcoin and Giving Food Here’s a thoughtful tuber worth picking out of the ground and chewing on for a bit: *there’s nothing stopping you from making real change right now.* It is this thought that is inspiring and challenging me after seeing 8th street Urban Farm and meeting the man who runs it. \n\nPrior to my visit, I was browsing the social internet when I came across an old friend’s profile. He had a link embedded there: [8thstreeturbanfarm](https://www.8thsturbanfarm.org). Following it, I discovered a farm in my hometown that is feeding people in need, practicing agricultural methods that restore the earth, and **accepting bitcoin donations**. Immediately, I think to myself, that’s quite a lot of signal. I probably set a personal record right then for how fast I completed a lightning transaction.\n\nBecause lightning is instant and I elected to add an email address to my donation, I received a message that evening from the director and lead farmer. It was clear we were both curious about each other - I wanted to know all about the project and he wanted to know who could possibly be sending sats out of the blue. So we connected over email, and in a short time I found myself standing on the corner of 8th and Lee, taking in the trellised tomatoes, picket fences and neatly plotted rows of the small-scale independent growing site, one of six in the metro area. With each day that passes, this plot of land is cultivated to bring forth sustenance that is good. It’s run with a business mind, but a servant’s heart. Everything is done like a for-profit operation except instead of going to the market on the weekend, the bundles of carrots, broccoli, cauliflower, tomotaoes, watermelon, zucchini are delivered to hospitals, food pantries and city shelters.\n\nThe existence of this urban farming operation speaks for itself. It’s unlikely and it’s hard work. It would take major conviction to grab hold of an individual for a nonprofit farm in the middle of the city to come to fruition. And that seems to be exactly what happened. A network engineer reads an article about bitcoin in 2011 and thinks to himself, _hmm, that’s interesting_: “I was big into decentralized file sharing back in the day so this was fascinating to me to be able to decentralize money.” Save that idea in the memory bank, come back to it later. After a series of personal journeys, the kind of twists and turns that life is generous to hand out to those who seek knowledge and adventure, he learns about growing, he lives in distant lands, finds connection with people and earth, he learns about mining, he dabbles in shitcoinery. Until finally, “Got burned obviously and then started studying bitcoin. I went way way way down the rabbit hole, have seen what cannot be unseen lol, realized it was the only thing worth owning, and that was that.”\n\nThe story of coming to know bitcoin as the money of the future is one we’re familiar with. But how many people do you see plugging into their community today to offer something better than what we’re expected to accept? Of our food, of our community, of giving and receiving, eating, storing, living, of the day to day of life? Because a bitcoin mindset is a long term mindset, I find myself disconnecting from what’s happening now, lessening the importance I place on the impact I could make in the present. We do this, we say, ‘it’s just clown world’ and we live for an unrealized future that moves perpetually into the distance. It’s too easy to abstract away reality, and with it, all the problems we could meet if we tried.\n\nThat’s what I see in 8th Street Urban Farm. I see hard work that is relentlessly meeting reality and saying, it’s going to be better _today_. Not for the whole world, but for this group of people right here.\n\nThis is exactly what I think bitcoin is for. It is shaking individuals out of the matrix, guiding them to realize their unique contributions. \n\nI hope you consider a donation to the farm by zapping this post. It’s going to go a long way. I invite @8thsturbanfarm into the comments for any questions worth answering that show up here. \N 669 \N 132134 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.2297921762192 0 \N \N f 0 \N 0 168705989 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424273 2025-03-03 23:43:56.724 2025-03-29 22:39:46.785 Zaplocker.com: a non-custodial lightning address server (no node needed!) \N https://youtu.be/5LYt4H6xA-g 12278 \N 424273 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.9066395390162 0 \N \N f 0 \N 0 188724530 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403937 2025-02-15 11:42:12.94 2025-03-29 22:39:49.743 \N No, then we'll complain about them using up liquidity on lightning and driving up fees.\n\nThe problem isn't so much that fees are high. It's why they're high. https://example.com/ 997 403934 403824.403857.403868.403869.403918.403919.403922.403926.403927.403934.403937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4724325036517 0 \N \N f 302939892 \N 2 182037886 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435619 2025-03-12 20:27:32.963 2025-03-29 22:39:49.743 \N Fun fact: When studying how dogs read and interpret human faces/emotions, their eyes move in a pattern very similar to humans. We’ve essentially co-evolved and it shows. https://example.com/ 1465 435612 435328.435487.435605.435612.435619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7865394717659 0 \N \N f 69431724 \N 2 12549709 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 2025-03-20 10:14:44.951 f \N \N \N 0 0 0 0 2 0 0 424311 2025-03-04 00:36:16.75 2025-03-29 22:39:49.743 \N I'm sometimes ambivalent about the toxicity of bitcoin maximalists, myself included. I'm also not going to say he doesn't make a valid point about the almost religious way some of us worship bitcoin, but Nic Carter has his own agenda here. He makes his money off of altcoins. He doesn't understand why bitcoiners are happy to see Binance and Coinbase get attacked, while in the same tweet talks about shilling icos! That's the problem. People have been victimized by these companies. His "why can't we all get along" attitude about these exchanges doesn't address the human pain those companies caused,( the shilling, the front running, the wash trades), nor his role in that pain. https://example.com/ 2513 424153 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424130.424153.424311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1045916506731 0 \N \N f 198414712 \N 1 43685803 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421025 2025-03-01 11:09:03.949 2025-03-29 22:39:49.743 \N Targetting the none hardware tinkerers is a win for all of us. More nodes, stronger bitcoin. https://example.com/ 21103 420895 420895.421025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.96071763754995 0 \N \N f 62846302 \N 1 9909702 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415915 2025-02-25 08:48:41.259 2025-03-29 22:39:49.744 \N Not many anymore. I used to read a lot. I used to read for an hour or two each night before I fell asleep. Now it's 5 or 10 minutes and I'm snoring. \nSo, maybe 25 books a year. https://example.com/ 15978 415904 415904.415915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4444467467293 0 \N \N f 499355203 \N 3 225019214 0 f f \N \N \N \N 415904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414936 2025-02-24 12:12:56.089 2025-03-29 22:39:49.744 \N you forgot to mention the first lightning p2p project that started this lightning p2p boom, still working and is the most important p2p in some countries like Cuba\n\nhttps://lnp2pbot.com\n https://example.com/ 669 414678 414678.414936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9469357116089 0 \N \N f 238690697 \N 2 173294726 0 f f \N \N \N \N 414678 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436816 2025-03-13 23:20:25.048 2025-03-29 22:39:49.744 \N A few years ago I started viewing the State and specifically the U.S. Federal government as a post-theism god. It has many of the trappings of a religion and one of the biggest ones is this idea that the word of the State can just magically make things so. Of course this isn't true and isn't new but many seem to sincerely believe. They are offended in the same way a religious person is offended when you speak ill of their god. \n\nThis perspective has really helped me understand why so many people get so worked up about politics and their political team. It truly is a religion and as such when you speak blasphemy you should be silenced. https://example.com/ 1785 436721 432920.436721.436816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4663733699641 0 \N \N f 170685512 \N 1 67431744 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437604 2025-03-14 16:49:26.66 2025-03-29 22:39:49.745 \N most people don't give a fuck about privacy; but they do care about being able to spend their money at will.\n\nIn Argentina back in 2001 we had all kinds of shenanigans going on, absolute abuse of power, no one gave a flying fuck. But when the gov't imposed the Corralito, people took to the streets and fought as hard as they could. https://example.com/ 9351 437591 437044.437560.437588.437591.437604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2468005473216 0 \N \N f 173418270 \N 1 236474421 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 78008 2023-10-25 08:44:34.101 2025-03-29 22:39:46.783 Rethinking Lightning Over the last few months it feels the bitcoin community has gotten more and more jaded on lightning. To be honest, this is for good reason, back in 2017 we were promised a decentralized payment network that would always have cheap payments and everyone would be able to run their own node. Nowadays, the average lightning user actually isn't using lightning, they are just using a custodial wallet and the few of that do run lightning nodes often find it a burdensome task. For us at Mutiny Wallet, we are trying to make this better by creating a lightweight self-custodial wallet and in my opinion we have been executing on that dream fairly well. In this post, I'll analyze these issues and present a new way to view lightning and what that means for bitcoin going forward.\n\nFirst and foremost one of the hardest UX challenges of lightning is channel liquidity. No other payment system has these problems today besides lightning so this often confuses lots of users. To make matters worse, there aren't any practical hacks that we can do to get around this. Muun Wallet used an on-chain wallet + submarine swaps to get around the channel liquidity problem, this worked very well until fees went up and everyone realized it wasn't actually a lightning wallet. The better solution is JIT liquidity like we do in Mutiny or splicing like that is done in Phoenix. These solutions abstract some of it away but not enough, we often get support questions confused on why some payments have fees and others do not. The fact is channel liquidity is not a usable UX for most end users.\n\nThe other major pain point of lightning is the offline receive problem. Inherently, you must be online with your private keys to sign and claim a payment. There is technically an ongoing spec proposal to be able to work around this (essentially creating a notification system of when people are online to receive payments), but it doesn't solve the fundamental problem and still has limitations. There has been a few attempts to get around this, most notably was Zeus Pay lightning addresses. These essentially worked by just creating stuck payments and waited for the user to come online to claim, this caused a ton of problems for people and even forced us at Mutiny to block users from paying them because it caused so many force closures. This is a hard problem because the entire rest of the bitcoin/crypto ecosystem works by just copy-paste an address and you can send to it whenever, there isn't caveats around asking your friend to open their wallet. This is further exacerbated by things like lightning address that requires a webserver to even get an invoice in the first place.\n\nChannel liquidity and offline receives in my opinion are the two most obvious reasons why self-custodial lightning is not popular. When most users hear about any of these, they just think screw that and move to a custodial wallet because it is so much easier. If these were our only two problems, I think self-custodial lightning would be fine, it may never be the predominant way people use lightning, but we could get the UX good enough that we have a significant portion of people using lightning in a sovereign way. However, there are more problems under the surface.\n\nChannel liquidity is a problem, but it is also deceptive. When you have 100k sats of inbound liquidity you would think you could receive up to 100k sats, but this isn't the case, often you can't actually receive any. This is because of on-chain fees, when a payment is being made in lightning you are creating pre-signed transactions that have outputs for every in-flight payment, these outputs cost potential on-chain fees and the high on-chain fees go the more it eats into your liquidity. After we've solved most of our force close issues Mutiny this has been number one support request. Even if you do everything right, understand liquidity and have enough for your payment, sometimes it still won't work because on-chain fees are too high. This is always really discouraging because isn't the whole point of lightning to not have to\npay on-chain fees? Fundamentally, all current lightning channels could become entirely useless if on-chain fees went high enough because a single payment would require too many reserves. Obviously this is hyperbolic, but I hope I am getting the point across that on-chain fees don't just effect the opening and closing costs of channels, even if you are a diligent node runner that only opens channels when fees are low, that is not enough, your channels need to be large enough to pay for the on-chain fees of each HTLC at any future on-chain fee rate. As on-chain fees go up and up this problem will only get worse.\n\nThe proposed solution to these reserve issues are things like anchor channels, package relay, ephemeral anchors, etc. These are all well and good but kind of just mask the problem. They do solve it so the fee reserve can be much lower and possibly zero, however with the tradeoff that you need on-chain funds available to fee-bump your force closes so they can actually get into a block. This again breaks the UX for self-custodial users because they _have_ hold on-chain funds alongside their lightning funds so they can do those on-chain fee bumps. The size requirements for their on-chain funds is still dynamically based on how high on-chain fees can spike. Solutions for this can include having someone else bump your transaction fees but this brings basically a trusted 3rd party into the mix and isn't ideal.\n\nWhen you lay out all the different tradeoffs a lightning node needs to make, especially in a high fee environment, it makes me think, what are we doing here, are we going down the wrong path? Lightning is still fundamentally a fantastic payment protocol but its limitation is that it requires _scale_. Basically every problem I've outlined goes away when you have a large lightning node with lots of liquidity and high uptime so many we should optimize for that. The market has been telling us this for years already, +90% of lightning users are using custodial wallets because it works so much better at scale. So how can we use large scale lightning nodes without custodial wallets?\n\nCombining existing large scale lightning infrastructure with self-custodial solutions sadly, isn't totally possible. The only real way to do that as of now is Muun Wallet which as we talked about earlier, doesn't really solve the problem because everything is just an on-chain transaction. However, Muun was onto something. The architecture of having a simpler protocol interface with lightning is genius and gives us the best of both worlds. We can make fast cheap payments and let the big boys collect fees for running the lightning node. Aqua Wallet just launched which is essentially a Muun Wallet but on top of Liquid, this is a good bandaid fix but doesn't get to the root of the problem.\n\nBefore we go further we should take a step back and break down what problems we are trying to solve. Bitcoin has a fundamental scaling limitation through the block size, if we could make infinite, then we wouldn't necessarily need any layer 2s because we could just make on-chain payments. However, we live in the real world and have a 1mb block size limit, and this limits the number of transactions we can make on-chain. Lightning is a huge improvement to bitcoin because we don't need to put _every_ transaction on-chain, we just need to open a channel and can make seemingly countless payments. So why isn't lightning the silver bullet? Lightning lets us move payments off-chain but what it doesn't do is let us move ownership off-chain. Fundamentally lightning still relies on that, at the end of the day, a utxo goes to single user. So even if every on-chain transaction was a lightning channel, we still run into the limit of how many people can actually own those channels. What we need is another layer 2 that can scale utxo ownership and caninterop with lightning, that way we have a way to scale ownership combined with scaling payments.\n\nSo how do we scale ownership? Simply put, the answer today is custody, whether that is pure custodial like a Wallet of Satoshi or in the grey area like fedimints and liquid, the only way to do it today is through custody or federated bridges. In bitcoin, the only way to delegate ownership of a utxo to multiple parties is through multisig, however, that requires every user to be online when anyone wants to transact, and when you take go down this path far enough you end up just reinventing lightning.\n\nAre we doomed then? Is there no way to scale bitcoin in a self-sovereign way? Luckily, the answer is no, but we need some soft-forks. Covenants are the way to scale bitcoin ownership. There are a bunch of covenant proposals but at their core what they propose to do is to add a way, so you can have a bitcoin address that limits where and how the coins in it can be spent. This can seem scary, but we already have these in bitcoin today, OP_CTLV (Check LockTime Verify), which was soft forked in 2016, only allows you to spend from a bitcoin address if the transaction has a given locktime, this lets you gate _when_ a utxo can be spent. What the current covenant proposals do is let you gate _where_ a utxo can be spent. With that simple primitive many different protocols can be built that allow for scaling ownership.\n\nThere are a lot of current covenant proposals, the main ones being: OP_CTV, OP_VAULT, OP_CSFS, OP_TXHASH, OP_CAT, and APO. They all have different functionality and tradeoffs but in my opinion we should be looking towards activating a form of covenants because otherwise we will likely be moving towards a future of less sovereign bitcoin users.\n\nThe future is not bleak however, even without covenants we can still scale bitcoin for the world, just not in the ideal way. At Mutiny, we are full steam ahead on implementing fedimint into the wallet, in my opinion (and the rest of the team's) it looks like the best current scaling solution for bitcoin. Fedimints give us the ability to dynamically share ownership over a group of utxos and is able to interop with lightning through gateways. It is the pinnacle of the scaling dream for bitcoin with current technology and I can't wait to help make it reality while we can.\n \N 4692 \N 78008 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.5216470385208 0 \N \N f 0 \N 0 249076125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444358 2025-03-19 20:08:32.479 2025-03-29 22:39:46.784 Pay it forward initiative | Bitcoin is kindness ### Pay It Forward for a new Bitcoiner!\n\nI would like to tell you a story... not long ago, in 2021.\nI did an experiment to see how nocoiners respond to Bitcoin kindness.\n\nIn 2021 I was running a Telegram group to help people with Bitcoin advice. Were mostly with members from UK.\nOne of the members is/was running a coffee shop business accepting BTC over LN\nHe even have shown prices in sats directly, no fiat!\n[![Sat-prices.jpg](https://imgprxy.stacker.news/W60L4VWe0Q7ZQk1rk2s-9eeIzVaUB8pSy3mAhu1b4s0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvZlJkeExkeVEvU2F0LXByaWNlcy5qcGc)](https://postimg.cc/189g7fDv)\n\nSo I said to him: man, let's do an experiment with some nocoiners. The first customer will enter in your coffee shop, tell her/him that somebody from thousands of km will pay for his coffee with Bitcoin, instantly, no intermediary. All set, he was just ready to send me the invoice.\n\nSo not after so long entered a lady into the shop. Nocoiner. Totally clueless what is Bitcoin and what is going on. She just wanted a coffee. Jake (shop owner) told her about our experiment and she totally agree. She even wanted to see how this new thing Bitcoin works.\n\nSo Jake made a LN invoice in his LN wallet, sent it to me by Telegram and I pay it. Done. In just few seconds. Lady.M was so impressed about the whole process that immediately she want to learn more about Bitcoin and joined to our Bitcoin Telegram group. Later I was helping her with all she needed for her business too (she's a chiropractitioner).\n\nI told her: See? that coffee was paid, with sovereign money transmitted over any borders, instantly, without any intermediary, without any control from any entity, only me and the sender knows about it. Can you do the same with any other currency, right now? The answer was straight NO.\n\n### My proposal now\nLet's do such experiment here on Stacker News! LIVE!\n\nI know I am risking to be scammed with a new anon SN account.\nI don't want to know who you really are, I don't care too much.\nI care more for bitcoin adoption.\n\nSo... let's make an experiment - push it forward.\n\n### Conditions, requirements, steps to do\n\n1. If you are a cuban, salvadoran or any other place on this planet, where you want to see Bitcoin adopted by your local merchants, come and post here. Don't try to assmilk or scam. We will know it.\n2. Find a bar that accept Bitcoin, near you - see https://btcmap.org\n3. Ask to pay with BTC over LN for a beer/coffee. Don't push too much our kindness...\n4. Take a screenshot of the QR invoice, or share the LN invoice here.\n5. Record a video or at least some pictures of the whole process and share them here. also indicate the location of the bar or website or some contact. If you post them on a public social media I would like also to share them into my special article about [places where Bitcoin is used at daily basis for payments](https://darthcoin.substack.com/p/bitcoin-lightning-irl-examples).\n6. We will pay for your beer/coffee\n7. If the bar owner is new to Bitcoin, YOU will need to help them how to setup the LN wallet, if you are a bitcoiner that already know. Is up to you which wallet want to use, that is not important for this experiment.\n8. If YOU are the newbie and just want to help a bitcoin shop owner and bring him into this experiment, then please read first my guides, especially [the one about LN wallets](https://darthcoin.substack.com/p/lightning-wallets-comparison).\n\nLet's show the world how Bitcoin works. Let's start that Bitcoin Circular Economy, right here on Stacker News!\nENOUGH WITH COMPLAINTS THAT "I cannot pay a coffee with my BTC wallet, there's nobody accepting it."\nENOUGH WITH USING VISA CARDS! Let's use Bitcoin!\n \N 12965 \N 444358 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 24.7049935909656 0 \N \N f 182108155 \N 1 219154852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414907 2025-02-24 11:40:32.213 2025-03-29 22:39:46.785 Human Readable Bitcoin Payment Instructions LN-Address has demonstrated the value of human-readable names in Bitcoin payment instructions, but has a number of fundamental drawbacks -\n\n(a) its only for lightning\n(b) it does not allow for succinct proofs of name mappings. This means you can't simply hand a hardware wallet a small bit of data to prove that you're paying a@b.c so that it can display that in the UI\n(c) it reveals the sender's IP address to recipients, resulting in a loss of censorship resistance and privacy as recipients geofilter and track senders,\n(d) it relies on the TLS CA infrastructure, which is generally a total mess\n(e) a user of a custodial wallet can't simply map their own domain to their payment info at the custodial service.\n\nThis proposal replaces LN-Address with a DNS(SEC)-based scheme, addressing all of the above drawbacks by putting standard bitcoin: URIs in DNS TXT records (which anyone with a domain can easily configure).\n\nThanks to t-bast for coming up with the high level idea here and writing up the original proposal. You can find a full implementation of this proposal at https://git.bitcoin.ninja/index.cgi?p=lightning-resolver;a=summary https://github.com/bitcoin/bips/pull/1551 11967 \N 414907 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 10.248594313977 0 \N \N f 0 \N 0 10356683 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436209 2025-03-13 11:39:06.526 2025-03-29 22:39:49.745 \N We are too reliant on shame / guilt / cancelling people. We should instead be like those churches, that go out of their way to welcome people.\n\nAlso we should focus on building things people use. Consider this -- https://www.youtube.com/watch?v=kib6uXQsxBA https://example.com/ 10352 436189 436189.436209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4859183137478 0 \N \N f 475196482 \N 3 5521502 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416850 2025-02-25 22:14:47.361 2025-03-29 22:39:49.745 \N Just applied to a full time position at a bitcoin company today, wish me luck freaks! https://example.com/ 695 416199 416158.416199.416850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0461759518080385 0 \N \N f 395879122 \N 2 150964269 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430567 2025-03-09 10:29:05.911 2025-03-29 22:39:49.746 \N Hi! ACINQ/Phoenix dev here.\n\nThe general idea is that Phoenix is geared toward use cases that make the most economical sense, as a self-custodial Lightning wallet. It is true that with v2 we have so far made little effort to accomodate use cases that we are not convinced are sustainable at scale. The reason is that there is a very fine line between "doing our best to allow everyone to play" and "actively incentivizing unsustainable usage". This is not at all to say things are frozen the way they are today, it just explains our approach and the order in which we are doing things.\n\nWhat makes the most economical sense: loading Phoenix from time to time with large (compared to mining fees) amounts, and then spend anytime with any amount. It scales and incentives are aligned for everyone. This is the so-called "Visa use case", except that Phoenix/Lightning arguably does it already better (faster, cheaper, and more privately) than Visa -- a widely underappreciated fact, in our opinion.\n\nPerson-to-person micropayments are much more challenging to do in an economically scalable way. What you see as your inbound liquidity is in fact our balance. It is easy to foresee the potential issues when you scale to 1M users. Our starting point was to not take any fee on receive, and not provide any additional liquidity. This causes mining fees to deincentivize receiving tiny payments, which is what you are running into here. We are actively discussing that and already received interesting feedback on various options. Again we're not judging what should or should not be done in principle, just what service we can deliver reliably and sustainably at scale.\n\n> LN is supposed to be cheap and stay that way?\n\nLightning is only *cheaper* than on-chain, big difference (and also: instant and more private). https://example.com/ 20599 430561 430330.430561.430567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.80144479066401 0 \N \N f 452956294 \N 2 86442668 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430902 2025-03-09 13:51:36.305 2025-03-29 22:39:49.746 \N 1. Find the place on Earth where you feel that your heart is "at home"\n2. Build your own house/homesteading in that place, with your own hands\n3. Learn and improve your skills in self sustaining life. Enjoy the results, live every day as it would be your last day on Earth. Life is short, enjoy it.\n\nThis is a long journey, maybe a lifetime journey. Take it easy and organize your life in decades not in days. https://example.com/ 19637 430898 430892.430895.430898.430902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3032601120238 0 \N \N f 260432380 \N 2 154500204 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457897 2025-03-28 19:15:06.984 2025-03-29 22:39:49.746 \N Once a runner by John L Parker jr. I ran in college and our team loved the book and guys got tattoos with quotes from it https://example.com/ 11716 457845 457845.457897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4168774689411 0 \N \N f 334068245 \N 2 62609351 0 f f \N \N \N \N 457845 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 8168 2023-02-03 22:52:57.31 2025-03-29 22:39:46.783 The data to help you become a better Stacker ⚡ Want to know what it takes to be a serious stacker here on SN? You might not want to miss this one...\n\n## `Stacker News Insights 👀`\n6 weeks ago I promised in the [Stacker Saloon](https://stacker.news/items/386717/r/davidw) that I would review a big batch of SN post history to:\n- draw some conclusions of trends to help understand better what makes a successful post.\n- explore how the SN community is evolving.\n- salute & celebrate what Stacker News has become.\n- share insights for territory founders to improve engagement.\n\nToday I am finally getting my finger out. This is the 1st of a 3 part series, to chunk-up some of the post data available on Stacker News in a responsible manner. The other two parts will drop later this week _if_ there's enough interest from Stackers. Today we're going to focus on the overriding numbers in aggregate across dates, times & post types. \n\n![word-map.png](https://m.stacker.news/17898)\nAbove is a word-map from the post titles of >1k sat posts here on SN. In the coming days, we may also explore some territory data, to see which areas of the site are making a success of things. Finally in Part 3 we will credit those Stackers who are putting in the leg work, with the aim of helping others find who we should all 'subscribe to'. Encourage others to step-up their stacking game and post original content.\n\n\n### **Notes**\n- Data is taken from [stacker.news/top/posts/forever?by=sats](https://stacker.news/top/posts/forever/r/davidw?by=sats)\n- **Posts with over 1k sats total** `(8,657 posts)` are included.\n- This initial snapshot was taken at **22:45 EST on Monday 26th February**.\n- It only captures headline post data based upon homepage information visible to everyone - no SQL database access.\n- Satsraisers have been removed from chart data for now, to prevent skewing the totals generated from posts.\n- Want to be tagged in future editions/parts? Or do you have suggestions for new ~charts to follow-up with? Let's see suggestions in the comments below...\n\n### **Related**\nCheck-out some similar discussions & graphs from the @sn crew:\n- [Stacker News Growth Deck](https://stacker.news/items/427636/r/davidw)\n- [Join Us Today for a Q4 Review + Q1 Roadmap Discussion (11am ET)](https://stacker.news/items/381208/r/davidw)\n\n\n-----\n\n\n## `Satistics ⚡`\n\n### **By Month**\n\nIn 2024, with not even 2 full months completed, there are already way more >1k sat posts on Stacker News (1,816) than the entire year of 2022 combined (1,009). 2024 has started off with a bang💥 \n\nStill, there are less >10k sat posts in 2024 (83) than 2023 (402), but every indication suggests that record could be broken this year. Let's hope this post can help get us there.\n\n| ![Total1kSatPosts-Month.png](https://m.stacker.news/17840) | ![PostsOver10k.png](https://m.stacker.news/17857) |\n| :--- | :--: |\n\n**The average sats per post (3.8k)** is impressively nearly-matching 2023 figures (4.0k), despite each satoshi being far more valuable today than last year. `Reminder`: this is _not_ the average for all of SN posts but just the average for posts above 1k sats total.\n\n\n| ![TotalSats-Month.png](https://m.stacker.news/17839) | ![SatsFromComments.png](https://m.stacker.news/17856) |\n| :--- | :--: | \n| ![AverageSats.png](https://m.stacker.news/17827) | ![AverageComments.png](https://m.stacker.news/17829) | \n\nThe number of comments per post is intriguing also, since there isn't a huge difference between years. The curve seems to be flattening between months, with 2024 having **an average of 16.1 comments per 1k sat post**. On track to be between 2022 (17.2) & 2023 (16.6).\n\n-----\n\n### **By Day of Week**\n\n| ![SatsPerPost-Day.png](https://m.stacker.news/17823) | ![SatsPerPost-Last2Yrs.png](https://m.stacker.news/17824) |\n| :--- | :--: |\n| ![TotalSatsPerDay.png](https://m.stacker.news/17825) | ![1kSatPosts-Year.png](https://m.stacker.news/17822) |\n\nThe above graphs are suggesting we have ourselves some sticky users, with consistent sats every day of the week in 2024. Stacker News is definitely gamifying our stacking habits, damn you @k00b, @kr, @ek & team. 2023 shows an opportunity on Sundays for posting, with fewer high-value posts in number at that time. Saturdays and Mondays stackers are slacking.\n\nIt looks like **posting on Wednesdays, Thursdays & Sundays** is a great way to get an additional boost of sats when sharing engaging content on the site. For discussions & comments, Mondays and Fridays are the standout candidates.\n\n\n| ![CommentsForever](https://m.stacker.news/17842) | ![Comments20232024](https://m.stacker.news/17841) |\n| :--- | :--: |\n\n\n\n\n------\n\n\n### **By Time Of Day**\n\nIt used to be the case that posting early morning for European hours would generate the most impact on the site. For 2023 & 2024, **posting between 9am and noon Eastern Time is CLEARLY optimal**, leading to 4,523 sats per post on average, vs 3,978 sats on average for other times overall. That's an extra 14% for posts with 1k or more sats. For posts with 10k or more sats, it seems that **stackers have generated an extra 24.8% by simply posting between 9am and noon ET 😅**.\n\n| ![SatsPerTime-Forever.png](https://m.stacker.news/17851) | ![SatsPerTime-2324.png](https://m.stacker.news/17850) |\n| :--- | :--: |\n| ![CommentsPerTime-Forever.png](https://m.stacker.news/17852) | ![CommentsPerTime-2324.png](https://m.stacker.news/17854) |\n\nThe same is true for comments. **21.1 average comments when posting during 9am to noon ET**, vs 16.5 comments on average any other time of day (27% up).\n\n\n\n\n-----\n\n### **With Link or Not** \n\n70.2% of sats earned from posts (over 1k sats total) have come without sharing any link whatsoever. Just from pure chat & community alone. For 2024 that figure is 66.7%. **Stacker News is becoming the source of bitcoiner content**, not just a news aggregator no more. \n\nSharing a link results in less sats overall (3,365) when compared with no links (5,713). The gap has shrunk significantly since post descriptions became possible when posting SN links. **Comments are drastically higher on posts with no links (22.1)** vs those with (8.1). So again if you want more sats and engagement, take the time to write something original.\n\n\n| ![LinksVsNot-Total.png](https://m.stacker.news/17837) | ![LinksVsNot-Percent.png](https://m.stacker.news/17838) |\n| :--- | ---: |\n| ![LinksVsNot-AvgSats.png](https://m.stacker.news/17835) | ![LinksVsNot-AvgComments.png](https://m.stacker.news/17836) |\n\n\n\n------\n\n\n### **Popular Domains**\n\n| `Domain` | `>1k Posts` | `Avg Sats` | `Avg Comments` |\n| ---- | ---- | ---- | ---- |\n| **--none--** | 5131 | 5,565 | 22.2 |\n| **twitter.com** | 291 | 3,036 | 11.1 |\n| **github.com** | 273 | 3,084 | 6.8 |\n| **youtube.com** | 258 | 3,248 | 7.2 |\n| **substack.com** | 109 | 2,533 | 7.9 |\n| **bitcoinmagazine.com** | 105 | 3,318 | 6.7 |\n| **nobsbitcoin.com** | 86 | 2,478 | 3.7 |\n| **bitcoinops.org** | 68 | 2,328 | 0.7 |\n| **medium.com** | 59 | 3,728 | 4.2 |\n| **lists.linuxfoundation.org** | 56 | 3,561 | 5.4 |\n| **thebitcoinbugle.com** | 47 | 2,143 | 7.6 |\n| **zerohedge.com** | 36 | 2,339 | 7.5 |\n| **coindesk.com** | 31 | 2,189 | 9.3 |\n| **cointelegraph.com** | 22 | 2,242 | 7.8 |\n| **nitter.net** | 18 | 3,040 | 10.1 |\n| **cnbc.com** | 18 | 3,199 | 8.7 |\n| **primal.net** | 17 | **9,347** | 16.1 |\n| **thrillerbitcoin.com** | 17 | 2,486 | 9.5 |\n| **stephanlivera.com** | 16 | 2,340 | 2.6 |\n| **forbes.com** | 16 | 2,020 | 6.2 |\n| **mempool.space** | 15 | 5,745 | 13.5 |\n| **blog.lopp.net** | 15 | 2,962 | 7.0 |\n| **blog.mutinywallet.com** | 13 | 7,560 | 14.4 |\n\n\n| ![SatsPerDomain.png](https://m.stacker.news/17846) | ![SatsPerDomain2.png](https://m.stacker.news/17847)|\n| :--- | ---: |\n\nNot much can be derived from the domains shared each month, but I'm still a fan of these sat-ghetti graphs myself. It should be noted similar domains have been merged (twitter.com with x.com) wherever possible. Primal had a recent flurry of sats thanks to @Darthcoin's Zeus anniversary post [here on SN](https://stacker.news/items/427775/r/davidw). Since Q2 2023, people have been surprisingly focused on mempool.space, be it sharing specific mining blocks, transaction fees or specific transactions like [this one](https://stacker.news/items/300057/r/davidw) from @BlueSlime with increasing popularity.\n\n\n------\n\n\n## `Stacker Summary 😴`\n### 1. **2024 for Stacker News looks like being a record-breaking year to sat-earn.**\n### 2. **Thursdays are now the best day** (16% extra sats) for posting. Wednesdays or Sundays are the next best options.\n### 3. **Posting between 9am and noon** (Eastern) may net you as much as 14-25% extra sats.\n### 4. Posting between 9-12 EST will also see 27% more comments on posts.\n### 5. Sharing something original **WITHOUT a link may result in 69.7% more sats**. 44% was the additional sats earned last year.\n### 6. Detailed discussions are common with **2.7x more comments on posts without links**. 2.8x more last year.\n\n------\n\n\n## `Preview of Territories - Part 2 🤠`\n\n### Core Territories - ~bitcoin, ~nostr, ~meta, ~tech\n\n\n| ![TerritorySats.png](https://m.stacker.news/17845) | ![TerritoryComments.png](https://m.stacker.news/17844) |\n| :--- | ---: |\n\n\nSurprising to me, ~bitcoin (4.1k sats per post) is not much more popular than any of the other core territories for sats per post. ~tech is definitely trailing the Big 3 (in ~bitcoin, ~nostr, ~meta). On average making less than 3k sats per post vs 4k across the others, a 25% deficit.\n\nWe all likely knew this already but if you wish to stir a debate, the place to post it in is ~meta (with 25 comments per 1k post, vs 16 in ~bitcoin, 13 in ~tech and 10 in ~nostr. That's why I chose ~meta on this occasion over the increasingly popular ~charts.\n\nMore on that territory and others in the next edition...\n \N 16858 \N 8168 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5537727550199 0 \N \N f 0 \N 0 238989875 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421642 2025-03-01 20:45:19.066 2025-03-29 22:39:46.784 The Mental Transaction Costs of Zaps I recently read Nick Szabo's [Micropayments and Mental Transaction Costs](https://bitcoinscoresby.com/micropayments-and-mental-transaction-costs/) paper. It's overly theoretical and a little bit scattered, but the gist is that probably people won't want to be micropaying their way around the internet.\n\nSzabo's point is that there is a mental cost associated with making a payment, even a micropayment. And because of this, most people do not want to be confronted with frequent decisions about micropayments (should I pay for this now? is the rate worth it? am I being charged correctly? should I try to use a different vendor? will I want to spend this money on something else soon? and so on ad nauseum). Therefore, if micropayments ever become popular, software will need to mediate our interactions so we don't have to waste so much time thinking about tiny sums of money.\n\nWhile reading that paper, it occured to me that I actually use micropayments every day: zapping on nostr and Stacker News. Using SN requires making lots of these kinds of decisions about tiny amounts of money, so why don't we feel exhausted? Usually, I come away from SN feeling exhilarated. \n\n# Micropayments are *so* much fun! /s\n\nIn the late 1990s, lots of people [speculated about an internet full of micropayments](https://www.nngroup.com/articles/the-case-for-micropayments/). Micopayments on your email to prevent spam, micropayments on links to pay for content, micropayments to your ISP to establish the best price for bandwidth, micropayments to keep websites from selling your data, and--perhaps most importantly--micropayments so the internet wouldn't become a flashing cesspool of crappy ads.\n\nUnfortunately, the [402 internet](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/402) never came to fruition. Some people blamed the technology (micropayments didn't catch on because there wasn't any good internet money), but the consensus seemed to settle on the fact that [users didn't want to waste their time](https://web.archive.org/web/20180222082156/http://www.openp2p.com/pub/a/p2p/2000/12/19/micropayments.html) thinking about whether or not they wanted to pay to click the link.\n\nThis hasn't stopped many bitcoiners from predicting a world full of micropayments for everything from podcasts to AI agents.\n\n# Pay-per-second Netflix\n\nSometimes you hear bitcoiners suggesting micropayments in the context of a service like Netflix. Instead of paying a flat monthly rate to watch movies, you pay by the movie or--better yet: you pay by the second you watch. But such an arrangement pretty quickly starts to sound unpleasant when you think it through:\n- Would some movies be priced at different rates? (New movies? Popular movies?)\n- What if you fall asleep while watching a show? (Sounds trivial, but you could see autoplay doing some real damage here.)\n- What if the pricing changes and I don't notice? (Congestion pricing or opportunistic pricing a la horror movies getting more expensive right before Halloween.)\n\nIt seems like no one would bother switching to such a payment model unless it was dramatically cheaper than the current subscription pricing of the major streaming services. You'd have to save a lot of money to put up with all the fuss.\n\nIn the context of value-for-value wallets, I've heard discussions about thresholds and budgets for various apps (eg. the wallet needs to get my authorization before spending more than 50k sats on the Netflix app in a given month). But the concern is that even the trouble of setting such a budget becomes more of a headache than it's worth, and the people beg to be given a flat-rate king.\n\n# Stacker News with flat-rate pricing\n\nThere is no question that flat-rate pricing has dominated the market. Flat rates are great because you can make a decision about the price quickly and it is pretty easy to hold in your head as you use the service or good. \n\n\nImagine how a flat-rate pricing for SN might work: everyone pays a flat-rate to use stacker (say 10k sats a month). When you write a post, SN measures how many users click on it as well as how long users spend reading the post and perhaps whether or not they comment and how many comments are left on the post. At the end of the day or end of the month SN pays out all users some proportional amount based on how much "value" the user provided to the site. In writing this description, it feels a bit like how Million Sat Madness worked.\n\nWould this method have a lower mental transaction cost than the current system? Perhaps, but it doesn't sound like very much fun. Of course, what we are talking about here isn't really zaps anymore, but rather SN's internal incentive structure. Zaps themselves come from users.\n\n# Autozaps\n\nIf Szabo is right that the reason people like flat-rate pricing is because they don't want to be bothered by decisions about trivial sums, another option might be autopay. When you put your bills on autopay, you are pretty much saying *I don't want to think about the charges other than the total and I might not even look at that.* If you trust the merchant or service, it's not such a bad idea.\n\nHow would your experience of SN change if SN did all the zapping for you? Imagine if you set a rate (perhaps 1 sat per second) and SN measured how long you took to read a post and zapped the post at your selected rate as you read. While there is something a little exciting about the concept, I have a feeling SN would quickly become a source of anxiety to me (read faster, those sats are valuable! Oh man, this is a long one, maybe just skim it...).\n\nWhile the consensus in Szabo's time seemed to be that users would want to have software abstract away the hassle of decision-making around micropayments, Stacker News is clearly a case where such abstraction is not desirable.\n\n# Does bullishness nullify user frustration?\n\nThere's been a thought niggling at me in the back of my mind as I write this: perhaps Stackers don't mind the mental transaction costs of all these micropayments because they're operating out of a bitcoin bull mindset that imagines the true value of a sat as much higher than it currently trades for. That 100 sat zap may only be worth seven cents now, but true bitcoiners know it'll probably buy something like a motorcycle in the near future. Perhaps Stackers don't see zaps as micropayments at all.\n\nBut I don't think this is true. If the price of bitcoin doubled, I would expect zaps to decrease by about half in bitcoin terms (although perhaps there is some unit bias that affects this). At least for me, part of the pleasure in using SN is that the amounts can be so small. Something less than whatever the amount of value is currently expressed by $10 feels about right for a zap on a really, really good post. While many of the Stackers here are deft writers, quite frankly, I'm never paying any of you $100 for your post.\n\n# Micropayments *are* so much fun!\n\nStacker News actually works *because* Stackers get to think about the micropayments. Tossing some sats to a commenter or zapping the bananas out of a really great post feels good. The decision to zap doesn't feel like it carries a mental transaction cost at all, rather it's like the mental cost of playing an interesting game or reading an enjoyable story.\n\nSure, it takes your attention and thought to enjoy a story or play a game, yet to describe these things as costs isn't quite right. It's similar to working out (physical exercise): we force our bodies to do work but it's not a cost to us in the same sense as if we were deciding whether to go somewhere and had to evaluate how much effort it would take to get there.\n\nStacker News is brilliantly gamified. It's not just the micropayments for content and interaction (zaps), but also the daily rewards, the cowboy hats, the leaderboard, and its many other excellent little details. Perhaps this gamification is what insulates Stackers from mental fatigue as they continuously make decisions about tiny sums of money.\n\n# Do micropayments work because of the cowboy motif?\n\nSzabo does not abandon the idea of micropayments altogether. He concludes by predicting,\n\n> For the normal accounting transaction costs, which are currently too high for micropayments, we need better interactive visual metaphors.\n\nHas SN somehow hit upon this "better interactive visual metaphor"? I'm not sure. It's possible micropayments are uniquely successful on SN and that they wouldn't work outside the context of an internet forum moderated by money.\n\nSzabo's paper is full of examples like buying apples or paying for phone service. While he does mention content, his thoughts about micropayments are entirely couched in the context of a customer's experience. He doesn't think about how it feels to receive micropayments.\n\n*Stacker News is like Hacker News but we pay you.* It is possible the micropayments work because they involve the prospect of making money. Stacker News is not a place where content creators get paid by content consumers. Stacker News is a place where using the internet is intermediated by micropayments. The new interactive visual metaphor that Szabo was hoping for might be earning money. \N 20094 \N 421642 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 8.15085168224275 0 \N \N f 0 \N 0 162240132 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51911 2023-08-18 20:44:47.908 2025-03-29 22:39:46.784 [a priori] Lot of senior Bitcoin devs under FBI investigation, myself included ? Dear community,\n\nI received at a time non precised this week the following informational email (cf. screenshot attached) about CoreDev Atlanta 2022 from the usual gmail.com of one of the regular organizers of CoreDev events. Myself a former organizer of CoreDev events and with the usual Chattham House rules usually in vigor, I'll silence from whom I received the email, I'll just confirm it's someone listed as a past organizer on the [CoreDev website](https://coredev.tech/).\n\nI did exchange from this email address over the last weeks for issues related to Bitcoin development, and the interlocutor sounds to me to be the person I know from years of online and in person professional collaboration in the FOSS field.\n\nHere the full text:\n\n"All,\n\nAs part of the investigation into Luke Dashjr's announced theft of his bitcoins, I received a subpoena from the FBI wanting information about attendees of the October 2022 CoreDev Atltanta event in the days before TABConf2022. I was legally advised to corporate.\n\nThere was also an order from the FBI not to disclose this subpoena for a period of one year, which just expired.\n\nSome of you were invited to the event and attended all of the days, and some of you stopped by for some period of time as guests. The original subponea requested much information but after pushback, the FBI agent agreed to the following subset of information about you, which I provided:\n\n1. your github username\n2. your first name\n3. your last name\n4. your email address (the one I've emailed you at here)\n\nI do not have any details about the investigation or whether the subpoena was due to a targeted suspect or general information gathering as part of the investigation.\n\nI apologize for this breach of your private information. Please email me if you have any questions.\n"\n\nThe formal existence of this FBI subpoena comes to me as new knowledge, even if recently I underscored the risk of FOSS contributors with administrative privileges to be targeted by a subpoena (cf. this link on the old bitcoin dev mailing list). [Greg Maxwell](https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2014-May/005851.html) and another former [Debian contributor](https://www.erisian.com.au/wordpress/2021/01/07/bitcoin-in-2021) underscored legal risks affecting FOSS protocol development over the past years.\n\nIf the information is correct, at this stage which is still very uncertain, there is no knowledge if the claimed FBI investigation is conducted in the interest of Luke Dashjr's for the effective resolution of the theft of the coins, or for other purposes. I've never verified myself the public existence of the coins claimed to have be owned by Luke Dashjr, and there is certainly a doubt on the forensics methods that can be used by the FBI (which full-validation client they are using, in what language, and which version ?).\n\nSo far, I've not in my own name replied to the disclosure email. While I'm more or less officially in vacation from Bitcoin Core development to have time to study interesting thing like machine learning, as a maybe investor in the Bitcoin mainet blockchain since genesis owning potentially exotics ordinals, milli-sats, satoshis, wholesome coins or any other amount inferior to MAX_MONEY (src/consensus/amount.h), I'm very curious what the FBI is doing with this information, and I think the other ~30/40 attendees of Atlanta CoreDev who might have been illegally doxed too.\n\nFrom a more legalistic perspective, for the FBI field agent or units in charge of the investigation, I'll certainly observe that all evidences might be irremediably tainted by irregularities arising from infringement of the 1st, the 4th, the 5th, the 14th amendment and the constitutional rights are recognized by the US Supreme Court in the Roe vs. Wade landmark decisions, and what is still left as a matter of State rights from Dobbs v. Jackson Women's Health Organization 2022's decision. I think there are few historical cases where FBI agents have found themselves committing perjury or committing misdeamnors related to the handling of digital transaction.\n\nIf you're a bitcoin, finance or tech journalist, I can only recommend you to reach out to one of the [FBI](https://en.wikipedia.org/wiki/Federal_Bureau_of_Investigation) official point of contacts, at any one of their resident agencies over the US soil and ask for confirmation of the existence of FBI investigation, and why there are have been a year-long subpoena in this case, and if the FBI owned evidences by the time it plausibly send a subpoena to one of the CoreDev organizer that could have ben admissible by the court dedicated to oversee subpoenas. I'm not an expert in what is the administrative authority of the FBI, if it's\nMerrick Garland's DOJ or one of the Congress selected committees, Ich weiss nicht.\n\nAs a former resident on the US soil, who have worked and working with a lot of US entities on digital security matters, I have true respect and real knowledge of the US culture. Still, my lawyers and myself, we can take the bet I know more about US history and US constitutional tradition than the statically average FBI employee.\n\nI"m not questioning their more legitimate law enforcement activities to guarantee respect of the US administrative order and inter-states, traditionally centered about money counter-feiting or alcoohols illegal transhumance. I know they are plenty of FBI agents doing an everyday hard job from Washington to Florida to Massachussets to California, with integrity and dignity.\n\nAll that said, there are still a voluminous digital security matters to fix in Bitcoin, and the underlying\nInternet and hardware technical stack, and I'll keep collaborating in good faith with US-resident digital security-related entities like done in the past with the MITRE for CVE assignements, including when I'm often visiting the US soil for cultural reasons.\n![FBI-subpoena-disclosure.png](https://m.stacker.news/26159)\n\nCheers,\nAntoine Riard\n000000000000000000000788ba18725b5570c5ffc313383a427382408fe5be9a - height 838676\n\nPS: If you're a journalist and you're not sured about your US constitutional rights, as a reminder there has been a landmark decision in the 70s.\nPPS: If you're a FOSS contributor and you're not sure about your constitutional rights, you can reach out to the EFF / ACLU for legal assistance. EFF assisted [Jeremy Rubin in 2013](https://www.eff.org/cases/rubin-v-new-jersey-tidbit).\nPPS: If you’re a FBI intern and you’re bored with your day, at least use non-anon accounts to comment on this thread, thanks. \N 4633 \N 51911 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1737881652976 0 \N \N f 0 \N 0 174083478 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 179499 2024-06-03 17:02:04.606 2025-03-29 22:39:46.785 Mercury layer AMA Hello,\n\nI am CTO of Commerceblock, and have been designing and building mercury layer statechains last couple of years. \n\nAsk me anything about the tech, cryptography, use cases etc. or anything else. \N 9367 \N 179499 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 10.609339188216 0 \N \N f 0 \N 0 114411176 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 139002 2024-03-08 07:55:31.255 2025-03-29 22:39:46.786 What finally got you to be Bitcoin-only? I'll start.\n\nFunny enough, it was when I was trying to get rid of the last of my bcash from 2017. I kept waiting for it to go up again to dump, and it never did. I think I held until sometime in mid-to-late 2018 when it was a fraction of what I could have sold it for in late 2017. It made me realize then that long-term all of these altcoins are going to zero against Bitcoin and that I couldn't time the market very well. The last justification for altcoin ownership then died. \N 20062 \N 139002 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 27.9556031799216 0 \N \N f 0 \N 0 112521026 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 132895 2024-02-27 00:47:43.181 2025-03-29 22:39:46.786 Show SN: Cypher.Space We want to provide a free bitcoin only flat file system(CMS) to compete with Wordpress & Shopify.\nCurrent state is a small MVP requiring you to have NodeJS >18 installed. \n\nYou can find more information at https://cypher.space\nDemo build: https://demo.cypher.space \n\nOr start building using the command: npx create-cypher\n\nDeploy your own instance to any cloud provider (cloudflare, vercel, … self host) with no monthly costs. \n\nIt's still early days for this project but we hope you can see the light we are trying to provide.\nFeedback or contributions are always welcome we run a NuxtJS stack.\n\nLet’s go folks ! \N 18068 \N 132895 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.91438179540675 0 \N \N f 0 \N 0 221960524 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 29724 2023-06-07 09:50:29.156 2025-03-29 22:39:46.787 A bitcoin scam uncovered: get some eyes on this \n### The Journey\nSeveral months ago I encountered an internet stranger who sought information on how to test thousands of private keys automatically to see if they match a certain bitcoin address. The task sounded simple enough, so I started asking questions to familiarize myself with the problem.\n\nEljef Azo had generated a bitcoin address and private key using an online generator WalletGenerator.net. The address was [1GsAFeF3S5Bt1JU6CjjAzNtfgnzoXkyUnh](https://mempool.space/address/1GsAFeF3S5Bt1JU6CjjAzNtfgnzoXkyUnh)\n\n\nI was able to see that he had received 4 transactions of about 300k each. \n\n\nI inspected the javascript on WalletGenerator.net **which forwards to .com** and found that I can test if a private matches with the target address via the following snippet\n\n```\nvar test = ”5K2Jsi3DivvamoQfp2LUvk1TGxyL8CdfmXAW7j7C1TV4XkXk4Pj”;\ntry{\n testKeyObj = new Bitcoin.ECKey(test);\n}catch(er){\n // invalid private key\n}\nif (testKeyObj){\n var testAddr = testKeyObj.getBitcoinAddress(false);\n if (testApproxEquality(testAddr,targetAddr)) {\n console.log("found matching key\\n" + test + "\\nat_index: " + at_index);\n }\n}\n```\n\nTo simplify the process I decided to run the tests directly within the web site’s environment.\n\nFatefully, I cached a local copy of the site early in the process.\n\n### Early signs\n\nWhen the code I sent Mr. Azo yielded no matches, I dug deeper and found that WalletGenerator.net can give up to 60 different addresses for each private key. \n```\n// yields a different result every time\nvar testAddr = testKeyObj.getBitcoinAddress(false);\n```\n\nThis did not raise suspicions because I was thinking along the lines of standard derivative address schemes. I imagined that this website is serving the first _n_ addresses from a randomly chosen starting point.\n\n_In hindsight, this is erroneous thinking because this site does not communicate in terms of any standard derivation schemes._\n\nReinforcing my suspicion, I learned that the addresses begin wrapping after the 60th one. So a small code modification will be able to account for their "derivation scheme" as follows:\n\n```\n// check the next 60 addresses; since they loop, we have full coverage.\nfor (var ano = 0; ano < 60; ano++){\n var testAddr = testKeyObj.getBitcoinAddress(false);\n if (testApproxEquality(testAddr,targetAddr)) {\n console.log("found matching key\\n" + test + "\\nat_index: " + at_index);\n }\n }\n}\n```\n\nThis did not yield any results either.\n\n### Fanning out\n\nSo I offered a more thorough approach which will test every given key plus every possible single typo\n\n```\n function testWithSingleError(t){\n for (var i = 1; i < t.length; i++){\n baseKeyTest(t);\n var partA = t.substr(0, i);\n var partB = t.substr(i+1);\n for (var c = 0; c < 58; c++){\n var alt = partA + chars[c] + partB;\n baseKeyTest(alt);\n }\n }\n }\n```\n\nThis turned every test into 2900 different tests.\nWhen it yielded nothing, I tried a method which checks for every possible combination of two typos \n\n```\n function testWithDualErrors(t){\n for (var i = 1; i < t.length; i++){\n var partA = t.substr(0, i);\n var partB = t.substr(i+1);\n for (var c = 0; c < 58; c++){ // chars.length = 58\n var test = partA + chars[c] + partB;\n for (var i2 = i+1; i2 < t.length; i2++){\n var partA2 = test.substr(0, i2);\n var partB2 = test.substr(i2+1);\n for (var c2 = 0; c2 < 58; c2++){ // chars.length = 58\n var test2 = partA2 + chars[c2] + partB2;\n if (test2 == t) continue;\n baseKeyTest(test2);\n }\n }\n }\n }\n }\n```\n\nThis turned every test into 8.4 million tests. Running the code against the list of potential keys was a slow process.\n\nI spread the work across multiple browser tabs for lazy man's multi-threading but it was still projected to take half a year\n\n### Trusted Status\n\nAt this point Mr. Azo decided he trusts me enough (or he's had enough) and he would send me the key material he had so I can work on it at my own pace.\n\n![](https://m.stacker.news/46337)\n\n_FASCINATING_\n\n_I was concerned about having his key material because in the event of someone else recovering and stealing the sats, I could be implicated as a suspect. Dear reader, be aware of the problem here._\n\nHere is where I realized that the address itself could be a typo, and explains why I'm using a partial matching test\n\n```\n function testApproxEquality(a,b){\n // allows for up to half the characters to be typos\n var diffs = 0;\n for (var i = 0; i < 34; i++){\n if (a[i] != b[i]) diffs++;\n if (diffs > 12) break;\n }\n return (diffs < 13);\n }\n```\n\nI slogged through the search, allowing my PC to churn away at the task whenever I wasn't using it, periodically sending an update to Mr. Azo.\n\n\n### Getting Performant\n\nThe performance bottleneck was the sha256 hash inside the following call, which checks if a key is valid inside the website source.\n```\nnew Bitcoin.ECKey(test);\n```\n\nOnce I passed 40% progress mark, I began dreaming of implementing the code in a native language an running the hashes on my GPU.\n\nBy the time I reached 70% progress, I was already compiling native code for running on a GPU.\n`Hello World`\nNow I need to get hashes pumping through here by the millions. But first I need to get to the bottom of that pesky key derivation process...\n\nAs I was digging into the source, along with the associated GitHub project, I discovered a [potential issue.](https://github.com/walletgeneratornet/WalletGenerator.net/issues/266) I decided to bookmark it and share with Mr. Azo.\n\nBefore I had a chance though, I received the following from him:\n>Have you found it?\n>The address is empty\n\n### Investigation\n\nA look at the [draining transaction](https://mempool.space/address/1GsAFeF3S5Bt1JU6CjjAzNtfgnzoXkyUnh) shows that the address was swept along with many others for a total of .41482171 BTC then rapidly consolidated through several addresses. I am not equipped to do blockchain analysis to any meaningful extent. I just know this attacker controls more bitcoin than I could ever dream of acquiring.\n\nAs for walletgenerator.net **forwards to .com**\nI realized after wasting much time, that my cached version of the site generates the same list of 60 addresses over and over. \nThe output addresses of the following snippet should never repeat in a thousand years.\n```\n// WARNING: may take a few moments of processing\nvar s = ""; for ( var i = 0 ; i <500; i++){\n ninja.wallets.singlewallet.generateNewAddressAndKey();\n s += "\\n" + document.getElementById("btcaddress").innerHTML;\n}console.log (s);\n```\nYou can test it by visiting the oft-mentioned web site, hit F12 or open dev tools your way, and copy the snippet into the console. hit enter and wait. Maybe copy the list into a spreadsheet and sort it, or copy one address and search for a repeat.\n\nAt the time of this writing, I checked the walletgenerator.net **forwards to .com** site and noticed that it no longer emits a repeating sequence of 60 addresses.\n\nThe version of the site that I have cached DOES repeat.\n\n### Avoiding this disaster\n\n- If you must use a website-based key generator, use it offline and verify that the addresses given match with your private key material by testing several given addresses using known-good apps.\n\n- Use a seed phrase based scheme to eliminate case sensitive key storage\n\n- Etch or stamp your private key material into steel\n\n- Find a way to ensure that you can sign a valid spend transaction of a UTXO where you are accumulating significant amounts\n\n \n### Final Notes\n\nDisclosure: Mr. Azo gave me permission to keep a significant portion of the stack if I find the address, for this reason the sats zapped to this article are split 50% with him. Eljef Azo is down by over 1.34 million sats and from what I gathered, he wasn’t exactly swimming in cash so if you find the grace to pitch him some sats, please. If for whatever reason, you want me out of the equation, you can exclude me by sending them directly to @Longtermwizard\n\nI do not fear being implicated in this scam because I feel certain that the key material given does not correspond with Mr. Azo’s address by design.\n\nI believe the scammer rotated out the scamming web site code periodically because, of the 60 addresses that repeat, none of them match Mr. Azo’s address.\n\nIf you are interested in the site I have cached or more of the test code, let me know. \N 13553 \N 29724 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.0808139204665 0 \N \N f 0 \N 0 97656644 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413815 2025-02-23 13:36:33.138 2025-03-29 22:39:49.746 \N Nothing related to BTC, just working on my PhD proposal this week https://example.com/ 20205 413554 413554.413815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8744431582661 0 \N \N f 224018193 \N 1 37983389 0 f f \N \N \N \N 413554 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415433 2025-02-24 19:39:04.005 2025-03-29 22:39:49.746 \N I wonder if under the hood they are somehow using digital prepaid cards and building on the solid foundation they already had? Looks like could be a deeper integration with RappiPay.\n\nTaken from their [previous FAQ](https://intercom.help/thebitcoincompany/en/articles/6869660-can-i-add-my-prepaid-visa-or-mastercard-to-a-digital-wallet-like-apple-pay-google-pay-or-samsung-pay):\n> Additionally, if you're in a location that accepts RappiPay (eg, Colombia, Argentina, Brazil, Chile, Costa Rica, Ecuador, Mexico, Peru, and Uruguay) then you should try that wallet, as most users report success with it. https://example.com/ 7097 415314 415314.415433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4318765223873 0 \N \N f 204613436 \N 1 225030471 0 f f \N \N \N \N 415314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427389 2025-03-06 11:22:12.166 2025-03-29 22:39:49.747 \N Great content! In 93 or so I wrote a paper predicting that genetical manipulation would enter mainstream culture in the future, in retrospect that is of course spooky shit...\n\nLost it to half gangsters last year, but my old friend has a copy, need to get that scanned ASAP really!\n\nOne of the few that *got* the internet very early was Bowie: https://www.youtube.com/watch?v=LaHcOs7mhfU https://example.com/ 10690 427112 427112.427389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9622579429507 0 \N \N f 46222587 \N 1 190602695 0 f f \N \N \N \N 427112 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 85658 2023-11-13 23:26:07.719 2025-03-29 22:39:46.783 My difficult transition to the bitcoin standard (almost) Starting last year, my life started to change a lot as I was living in the country that started the war in Ukraine. But my post is not about politics.\n\nMost of our citizens faced reality when bank accounts started to be restricted, cash withdrawal limits were set, and the country was disconnected from using VISA and MasterCard outside the country. People began to realize that they did not own or control their hard-earned money, nor could they dispose of it as they saw fit.\n\nTo my personal luck, I had some sats in my wallet for a long time and it helped me a lot until I was able to withdraw the balance from my bank accounts.\n\nThen another disaster happened, I lost my job and my only source of income and I had to move to another country where I have been for a year and where bitcoin is not restricted by repressive laws, which helped me a lot. In the new country I didn't even try to get bank accounts. Trust has been lost definitively and irrevocably.\n\nAt the moment I use either cash or sats. It's hard, it's uncomfortable and unfamiliar, but I feel this taste of complete freedom and the realization that right now I truly own everything I've earned and no one can take it away.\n\nWhen you live in a peaceful country and occasionally use sats for payments, it's not the same experience as when you just have no other option but to start using bitcoin to survive. It changes the perception and attitude towards hard money and fiat a lot.\n\nMy journey continues, I still have to use fiat as not everyone wants to mess with bitcoin, but I'm working on explaining and teaching people and showing them the bright side.\n\nPeace, everyone. \N 20755 \N 85658 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.732757580068331 0 \N \N f 0 \N 0 48969916 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 99691 2023-12-17 12:31:08.086 2025-03-29 22:39:46.784 Writing Contest #1- GrayRuby's Bitcoin Story **Staring Down the Rabbit Hole**\n\n\nI remember it like it was yesterday. \n\nIt was a cold, dark, early morning in late 2016. I typically wasn’t awake and out the door this time of morning, but had begrudgingly agreed to "do a solid" for one of my company's biggest customers. I needed to, as he put it, “look after” their most important property, a medical building in the heart of midtown Toronto, while his superintendent was off on sick leave. This job, he explained, unfortunately could not be entrusted to one of my employees as this property was where his company’s founder went twice a week for physiotherapy. \n\nI stepped out the back door of the condo building where I lived, allowing it to shut and lock quietly behind me. A trail of steam flowing from the metallic, travel coffee mug in my right hand as I held the keys for “the Mule” in my left. “The Mule” was a moniker given to a beat up old Dodge Grand Caravan my business partner and I used occasionally to transport equipment and supplies. The Mule didn’t have much useful time left at this point but I often drove it so I could leave the family SUV at home for my wife. The mule also didn’t have the same creature comforts as the SUV so I would not be enjoying heated seats or bluetooth audio this morning but I was used to these minor inconveniences. As the mule warmed up, I scrolled through the podcasts I had downloaded in my podcast app and settled on an episode of We Study Billionaires. I had been listening to this show for a while now and was working my way through all the old episodes while also listening to the current ones. I pressed play, turned the volume of my phone all the way up, placed it in the plastic holder clipped to the dash, and put the mule in reverse. \n\nIt was a fairly easy drive that morning, with little traffic and mostly green lights. About halfway through the drive, I heard one of the podcast hosts, Preston Pysh, mention something called Bitcoin. I didn’t know much about Bitcoin but I knew it was some sort of digital gold ponzi. At least I thought I knew that. I had been a collector of gold for some years but digital gold sounded absurd to me. On the drive that morning, for the first time I reconsidered that “knowledge”. If Preston, who I respected and thought was smart, had a different opinion of Bitcoin than I did, maybe what I knew of Bitcoin was actually wrong. I wasn’t completely sold on this Bitcoin thing but as I pulled into the underground parking garage of the building I would soon be “looking after”, I began to think maybe I should just buy bitcoin. But how the hell could one do that?\n\nAt this point, “looking after” the building really didn’t mean much more than walking the property, checking it for any obvious issues, filling out some checklists and sitting in the superintendent’s dump of an office for hours on end waiting for a problem or a tenant phone call. Eventually our business offered on-call superintendent services that covered a wider scope of work to fill in for absentee supers, but on this occasion I was merely a property babysitter in case the owner showed up. This was fortunate for me, as on this day I had a lot of free time on my hands to search the internet and find out how to buy bitcoin. I settled into my cold, shoebox of a temporary office, and began my research. I discovered a service called Coinbase and also happily learned you didn’t have to buy a whole bitcoin. This later became a bittersweet discovery as Bitcoin was trading around 1,000 USD at this time. Between the odd phone call, and guilt riddled walk of the property to make sure it was “looked after”, I managed to sign up for a Coinbase account and buy my first 0.1BTC with my Mastercard. \n\n\n**A Decent Proposal** \n\n\nThe sun peaked through a cluster of clouds floating across a blanket of blue sky as I sat alone at a four person table on an outdoor patio of an upscale bar in the West end of Toronto. It was a beautiful, spring afternoon in 2017 and I was early for a meeting that would shape the next four plus years of my business life. I fiddled anxiously with a folder in front of me, excited to discuss the contents inside. My business partner should have been the next to arrive but in typical fashion he was running late. A friendly, attractive, young waitress checked in on the table just as our guest, Don, arrived. Good timing for him. \n\nDon had been a good friend and mentor to my business partner and I for a number of years. We had worked on a handful of projects together and he had introduced us to a network we would not have been invited to otherwise without his help. He was in his mid 60s now, but still in great shape and health. He commented that my business partner was late again and wasn’t surprised but mentioned he was not concerned because the way he saw this “deal” working moving forward, I had to be the managing partner and my business partner had to focus on business development only. If I had disagreed with his vision the “deal” would never have gone through but the proof was in the pudding, one of the most important meetings in our business’ history and the guy was late again. \n\nMy business partner, Martin, arrived in standard fashion with a bright smile and sheepish shrug of the shoulders relaying his awareness that he shouldn’t have been late. He was not overly content with Don’s vision for how everything would work moving forward and probably less content that I agreed, but eventually acquiesced. A handshake deal was struck over a selection of appetizers and wine (sparkling water for me- since I had quit drinking 2.5 years prior). \n\nOver the next six months my life was highly chaotic as our business merged with Don’s business and I took over as Managing Partner. Don assisted me through the transition and then acted as silent partner, lobbing the occasional lead or joining me for meetings with clients he had relationships with for many years. Martin settled into his role as glorified salesman who retained 25% of the profit share. Not a bad deal for him. Actually, a much better deal than mine time would reveal. \n\nBy the time fall of 2017 rolled around, It had been many months since I thought of my Bitcoin purchase the previous winter but I had heard it being mentioned more on cnbc and on podcasts. Other cryptocurrencies like litecoin, eth and BCash were also starting to get attention. It was mostly all noise to me as the day to day grind of merging and running the two businesses took most of my focus. One day in late 2017 that changed after talking about the current “crypto” craze with one of my new clients after I mentioned I owned Bitcoin. He showed me coinmarketcap on his laptop and said something to the effect of “people are making millions”. \nI was smart enough to know to be skeptical when your taxi driver, or in this case, your client's property manager has investment advice for you, but I couldn’t help getting caught up in the FOMO. I bought more bitcoin, it was almost 15,000 at this point, and bought a bunch of other coins too. Bitcoin was great but what if all these other coins were going to be the next Bitcoin? I’ll be rich. \n\n\n**Biotech 2.0**\n\n\nWinter returned in full swing, not only in terms of weather but also in the market. It was mid January 2018 and I was procrastinating, sipping coffee with one eye focused on my laptop answering emails and the other on the tv, which as usual was locked on CNBC. I should have been on the road, in the mule 2.0, checking in on an employee I had trained who was “looking after” a building for the first time, but it was a bitterly cold Canadian winter day and I wanted to “work” from home for as long as possible. As I was getting ready to go, my wife stopped me in my tracks with a “we need to talk”. I thought I might have done something wrong, so I tried to weasel my way out of this talk with excuses of how busy I was. However, my wife who had witnessed my last hour of procrastination was having none of it and hit me with the news that made the day's business, weather and market movements completely irrelevant. Surprise! She was pregnant. \n\nWith a joyous bounce in my step, I ventured off and completed my visit to see how my newly trained employee was doing “looking after” that building and headed off for a meeting with my business partner Martin. \n\nIn true Canadian style, we met at a Tim Hortons, but not just any Tim Hortons. This one was located in the city’s west end near the airport and just happened to be owned by Martin’s uncle. A very busy place and it was always a bit of a to-do when we met there, as he needed to greet the staff he knew and his cousin who managed the restaurant. I would have preferred to meet elsewhere but it was a convenient spot halfway between both our homes. As he made his rounds, I sipped a coffee and thought of my recent great news. After Martin settled back in at our small, two person table, he smiled and sipped at a steeped tea, I shared my news with him. He was ecstatic and with good intentions, promised to help out in any way I needed running the day to day of the business. I knew he meant well but also knew that it would never happen. After a celebratory hug we moved on to discussing business. Tension had grown between us over the years due to Martin’s lapses in work ethic and frequent tardiness but we were still good friends who enjoyed each other’s company. It was commonplace that when we got together, we would stay chatting for much later than expected and this day was no exception. We ended up eventually discussing the markets, which he was mildly interested in due to his brother in law in finance, and he mentioned his brother in law made a lot of money in Bitcoin but lost a lot when it “crashed”. The price had gone from almost 20,000 at the peak to around 13,000. I explained to him that it reminded me of the Biotech crash of 2015 and I thought Bitcoin might go as low as 2,000. \n\nDespite my confidence that we had a long way down to go for some reason I bought more Bitcoin that day and continued to buy all the way down. It never got to my 2,000 target but it got pretty close. \n\n\n**Foreshocks**\n\n\nThe wicked winds of winter did not fade as the calendar turned to February. A couple weeks had passed since my day of great news and meeting with my business partner. I had settled in well to my new reality as “firefighter” and “captain of the ship” of the new business entity but while content I was a bit dismayed with the prospect of not being as present for my wife and forthcoming child as I hoped. My son’s early years were very challenging as we managed a life traveling back and forth between Toronto and LA until finally settling permanently in Toronto, so I could focus on my business. I didn’t want my second child to experience the same unsettling early years. I would wrestle with the “am I doing the right thing for my family” question for years to come. \n\nThe Bitcoin price had continued to recede towards my 2,000 target, now having sunk below 10,000, but something much bigger was stirring along the fault lines of the financial system. The first, but not the last, foreshock hit the system in early February 2018 when the short VIX trade completely blew up in essentially a day. I was beginning to come around to the idea that the entire financial system was held together by duct tape and gum. With this new perspective, the first real steps of my journey into the bitcoin rabbit hole began. Although I had owned bitcoin for 15 months at this point, I still didn’t really know what I owned. \n\nThe fault lines would tremble again around 18 months later with the Sept 2019 repo crisis. I began to conclude that something was definitely wrong and I better figure out how to protect myself and my family from whatever it might be. This is where I really started digging into Bitcoin. I sold all my other cryptos for bitcoin, except the small amount of eth I had. Bitcoin podcasts, books, twitter were my go to sources of information. I started to DCA more aggressively and learned about self custody. It would be another year before I sold my eth and ditched coinbase, but I was well on my way to traversing the hard road of the Bitcoiner’s journey. \n\n\n**The Fiat Pathogen**\n\n\nMarch 2020, was a month that felt like it lasted a year. Uncertainty was swirling everywhere. The pandemic had begun but another pathogen would take the world by storm in the coming months and change the paradigm of money and my view of the world forever. \n\nLockdowns came quick and in full force to Canada. On March 17th I was shocked by a call from one of my employees saying he could not access the Hudson’s Bay store where he worked nightly for us. They had shuttered the entire building. For context, this store takes up an entire prime downtown city block, has a 20 story office tower attached and a bridge that connects to the busiest shopping mall in Canada. It’s not a small operation and it was all shut down without any notice. They just locked the doors and put up a sign “closed for 15 days to stop the spread”. 15 days became 5 months. \n\n Almost instantly my business revenue dropped nearly 90% for a number of months. It felt like 15 years of hard work had been pulled from beneath my feet. It felt like theft. I was angry, I was bitter. I had no idea what would become of my business, customers, income, investments and property value. Would we have to sell our home to make ends meet? Who was going to buy it when the entire economy was shut down? We had a few months worth of savings both personally and for the business but would that be enough? My thoughts swirled. \n\nThen the fiat pathogen hit. \n\nMy business was an utter shell of itself but the fiat pathogen was spreading rapidly. The first wave hit the stock market, and then the crypto market, then the housing market. The shuttering of businesses and people’s jobs was papered over by the fiat pathogen. Can’t pay your mortgage, rent, student loans, don’t worry the fiat pathogen will make you whole. Need money for food or gas, don’t worry the fiat pathogen will make you whole. For now. \n\nMy income was plummeting rapidly but the value of my assets were skyrocketing. Nothing made sense. Everything was corrupted. Everything was broken. Bitcoin seemed like the only true, non manipulated, non controlled, non corrupted thing left. I dove straight into the rabbit hole. Sold my eth, the final vestige of my “crypto” curious days and began to see my life, my business, my finances through a bitcoin lens. A once prosperous business was now in tatters due to the whims of politicians and bureaucrats, fueled by the ever rotating spindle of the money printer. Something needed to change. A new path needed to be charted, a path based on different ideals, different values, different principles. A bright orange path awaited. \n\n\n**Further Down the Spiral**\n\n\nThe start of the bright orange future was delayed a couple of days. \n\nAfter over a year of planning and many months of work, I was set to depart the city of Toronto on January 6th 2022. The sale of my shares of the business had closed, the sale of our property was closing in 4 days. Every loose end had been tied up. I was exhausted but looking forward to the next phase of life and not looking back. \n\nA winter storm had other ideas and I was stuck in the city two more days. A fitting end to a chapter of life that was mired with struggle, sacrifice, chasing (always chasing), and all the tradeoffs a fiat life demands. But the storm eventually cleared, as did the road from the past to the future.\n\nThere are a lot of adages surrounding what Bitcoin is. Some say, Bitcoin is hope. Some say, Bitcoin is freedom. All are apt, but Bitcoin is something different for everyone. For me, Bitcoin is a bridge from where you are in life and where you want to be. \n\nThe spiral of the rabbit hole is deep and the Bitcoin bridge is long. But with one foot in front of the other I continue to travel towards a bright orange future. \n\n\n\n\n\n\n \N 736 \N 99691 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.4593041960835 0 \N \N f 0 \N 0 132674509 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404400 2025-02-15 20:59:23.041 2025-03-29 22:39:46.784 Bitcoin is not just a black hole. It has a far brighter future \n## **1. Bitcoin The Black Hole**\nLikening Bitcoin to a black hole is a simple analogy to make. An analogy that can go viral quickly. Bitcoin is clearly accruing more and more financial capital and human attention over time. It's adoption feels like an inevitability to most of us and the network is growing in both size and strength each year that passes. There's no doubt that items priced in Bitcoin have been getting cheaper since its inception.\n\nIt is a popular view for Bitcoiners to believe that it is performing like a singularity whereby all value in our current world will be represented by 21 million coins. Or 20,999,999.9769 to be exact.\n\nThe purpose of this article however is to consider whether it is the best analogy to make, comparing Bitcoin with a black hole, when another phenomena could better describe what we are witnessing with the network. More on that below.\n\n![Bitcoin the black hole](https://image.nostr.build/523fe7606fe3be1c2b24b5a3501c647e64610f7186e271f11d684df4b672afe4.png)\n\n## **2. Quotes about Black Holes** ⚫ \n- *[Max Keiser](https://twitter.com/maxkeiser/status/1327033370677829643): "Bitcoin black hole is sucking capital from every asset class; stocks, bonds, Gold, Silver, property, ...everything."*\n- *[Michael Saylor](https://twitter.com/TuurDemeester/status/1352026667678633985) : "Everything that comes into the orbit of the planetary body is getting sucked into the planet...and it's getting stronger and stronger. Bitcoin is the one asset that as it's price goes up, it is more attractive to investors."\n- *[Adam Back](https://twitter.com/adam3us/status/1330898983015882758): "Bitcoin is like a hard money black hole, hard to escape the event horizon."*\n- *[nvk](https://twitter.com/nvk/status/1317864091449524225): "like a black-hole, bitcoin will keep swallowing the worlds stored energy in balance sheets."*\n- *[Robert Breedlove](https://breedlove22.medium.com/the-number-zero-and-bitcoin-4c193336db5b): "Bitcoin is the global economic singularity: the ultimate monetary center of gravity — an exponential devourer of liquid value in the world economy, the epitome of time, and the zero-point of money."*\n- *[Bill Barhydt](https://twitter.com/billbarX/status/1326602204912914432): "When a black hole consumes all light it doesn't worry about which stars survive and which ones die. Bitcoin is the blackhole that will consume everything."*\n- *[Luke Broyles](https://x.com/luke_broyles/status/1616471107959144448): "The more energy you throw at BTC the black hole, the larger it grows."*\n- *[Joe Burnett](https://twitter.com/IIICapital): "Bitcoin is a monetary black hole. One day the market cap of bitcoin will be worth multiples more than all real estate, equities, and bonds combined."*\n- *[Root](https://twitter.com/theiationalroot/status/1733365417421246831): "The monetary black hole: Bitcoin"*\n- *[BitcoinTina](https://twitter.com/BitcoinTina/status/940091607327547393): "Bitcoin will be the financial Black hole it will destroy everything in the financial system"*\n- *[Trace Mayer](https://twitter.com/ODELL/status/956154059920207874): "Bitcoin can become like a black hole on the world’s balance sheet and suck in all this fiat and fractionally reserved banking money and really give us an equity-based monetary system on the other side."*\n- *[Allen Farrington](https://allenfarrington.medium.com/bitcoin-is-venice-8414dda42070) : "Bitcoin is a black hole sucking unsustainably artificial value beyond its event horizon. As it grows, so does its pull. Bitcoin is gravity."*\n- *[Knut Svanholm](https://x.com/JAN3com/status/1693618827509027199): "Imagine, everything there is and everything that will ever be, divided by 21 million."*\n- *[Strike](https://twitter.com/Strike/status/1383103546426593281): "Bitcoin is the black hole eating the entire legacy fiat system while creating a new financial paradigm on the other side"*\n\nKnut and the Strike team, in the above quotes, include the future beyond the black-hole when considering Bitcoin's impact. However, we may wish to revisit this metaphor given that Bitcoin itself has properties that are very much dissimilar to black holes...\n\n\n## **3. Black Holes Centralise Power ⚫**\n\nWhen thinking about this categorisation for physics, astronomy or cosmology, we might reach a different conclusion than the above. The singularity that a black hole creates at some point obtains a mass far **too dense, too heavy and too tightly compacted that it will explode**, either under it's own density or if it were to run out of fuel. Despite having a VERY long shelf-life; **black holes do die** and when they do.. ["a burst of fireworks will light up the universe, heralding the end of the era."](https://www.astronomy.com/science/the-beginning-to-the-end-of-the-universe-how-black-holes-die/)\n\n**Black holes are also by name and their very nature, extremely dark.** Absent of hope, light and life. Nothing can escape. Not even light itself. \n\nSome might say black holes just exist in the universe, and they are not bad nor good per se. Yet we must acknowledge that their victims are dragged into its centre unwillingly, not out of choice. The forces of gravity see to it that at a certain point, there is no escape from it's grasp.\n\nBlack holes are therefore the ultimate example of a closed system. **Their characteristics sound more akin to our current financial system, at least from my perspective. We'll discuss this in more detail in #8.\n\n\n## **4. White Holes Distribute Power ⚪**\n\nOnly in recent years have white holes been receiving attention from physicists and astronomers. Some describe a white hole as the reverse of a black hole. **A white hole being the creation of a new system**. One which some theorise and compare to "the big bang", a subject which was [discussed on SN](https://stacker.news/items/357607) with @kr earlier this week. Make sure to add your thoughts if you missed it!\n\n![White hole ejecting light](https://archive.is/6xXRo/7e53bc9cf0cb5e655fdcd009a3e3ad3a80888b31.gif)\n\n### **A. Distribution**\nWhite holes are created from a singularity. An immaculate conception, that distributes and propels its matter outwards into the wider universe, covering more and more space incredibly quickly. Some theorise it's origin emerges from the result of a black hole. More on that later.\n\n### **B. Cannot Go Back In Time**\nWith a white hole, you have an event horizon, where anything from inside crossing that horizon gets ejected into the universe. Imagine for a second we had a front-row seat inside both a black hole and a white hole. Unlike where in black holes you would not be able to escape, in white holes you could not go back in time or to a past state. **The universe is different after exiting a white hole.** Much like it is after exiting a rabbit hole 🐇.\n\n### **C. Untouchable**\nWhite holes also cannot be penetrated from the outside. It would require more energy than exists in the universe to enter a white hole. It is therefore like an 'anti-gravity', endlessly growing and emitting energy and material to prevent alterations to its desired state or path. The more you attack it or choose to enter it, the more it repels you.\n\n\n-----\n\n## **5. Bitcoin Also Distributes Power** 🟠\nNow let's compare a few of those examples to Bitcoin...\n\n### **A. Distribution**\nBitcoin itself had an immaculate conception after being a reaction to the dark forces in the current system. It was nurtured into adolescence from a single computer at its onset. Today, it has become the largest pool of computer resources in the entire world. Nothing, not even AI will likely ever be able to supplant it. Yet the power of that initial computer has dissipated into irrelevance now, in comparison to the network's own resources.\n\nBitcoin is also emitting wealth and potential worldwide for those that are part of its network and *choose* to adopt it. Much like [these 3 graphs](https://clockworkpartners.com/price/) represent:\n\n![Bitcoin price & portfolio growth](https://image.nostr.build/fa7cb39a9693c7a0d5e27c62b825fbb914ecfd1cdb2f27cef452d92736764b9c.png)\n📊 *[Clockwork Partners](https://clockworkpartners.com/pricex/index.html) spiralling price, portfolio allocation & hash cost.*\n\n### **B. Cannot Go Back In Time**\nAfter uncovering Bitcoin, we as Bitcoiners can't go back to our world view of years prior. Having seen the light of a novel merit-based system. Bitcoin is also gaining mindshare and awakening people to libertarian ideals. For them, this is a new age. Not an end.\n\nNot only that.. after each block that gets found on the network, we cannot regress to the previous block's state. Not without securing the overwhelming share of the network's miners and hashing resources. All the transactions are buried beneath the weight of the other blocks for eternity, so the past is immutable here too.\n\n### **C. Untouchable**\nHearing that white holes being impenetrable from the outside, sounds eerily similar to Bitcoin, does it not? As seen above in the red spiral, it is taking more and more energy to earn satoshis from the block reward each week that passes.\n\nBitcoin grows stronger from the fact that the more that people that seek to co-opt and control its hash rate, source code or development direction; the more participants will seek to defend it. There are exceptionally high physical costs in the real world for those that seek to do so. As we can see from the above red chart.\n\n------\n\n## **6. Are White Holes A Better Analogy?** ⚪\nIf we know all the above, can we not already say that white holes are a better analogy for Bitcoin? Here are some adjectives to showcase the distinction between black and white holes. Each of which is described in more detail at the bottom of this article.\n\n|⚪ **White Holes** |⚫ **Black Holes** | \n|-------|-------|\n| Beginning | Ending | \n| Impenetrable | Inescapable | \n| Expansion | Contraction | \n| Growth | Decay | \n| Transparent | Opaque | \n| Abundance | Austerity | \n| Mysterious | Observed | \n| Instantaneous | Slow | \n\n\n------\n## **7. CBDCs Will Change Everything ⚫**\n\nBitcoin has been attracting increasing amounts of capital from the current system over its entire lifetime. It is on a typical adoption S-curve in that respect. Capital is being allocated to this novel form of money, before we reach an 'event horizon' of sorts.\n\n![Tom and Jerry CBDC Meme](https://image.nostr.build/d7fe6fbab275d7ae475bbb8b237ef51111e054ccf107d313034bc0b33c29f61b.png)\n\n### **Spending Restrictions**\nAs we all know, Central Bank Digital Currencies (CBDCs) will allow cowardly countries to restrict what you can spend your money on. When they choose to implement these limitations or not remains to be seen, but they are designed specifically to solve this problem. **There is no other reason why these oppressive technologies would exist**. CBDCs are to be the ultimate tool of austerity and therefore the "event horizon" for it as a metaphorical black hole. Once CBDCs are in place, there will be minimal or vastly-reduced capital flight. All financial energy would instead accrue to the centre at an even more alarming pace. \n\n### **Separated Systems**\nThere will likely come a time that there will be no direct bridge to Bitcoin, in certain jurisdictions in the world. No means to buy it like we are accustomed today. No longer a need to surveil the exit ramps if CBDC-fiat can be programmed for incompatibility. \n\n### **Bitcoin Must Be Earned**\nTo obtain Bitcoin in future you will need to be part of the very network, either by mining, contributing to development OR exchanging goods and services for Bitcoin. This scenario mirrors the characteristics of a white hole, by being unable to enter inside without being part of its expansion into the universe.\n\nWe should all be diversifying our income streams for this eventuality. If not, we should at least stop and consider the implications of this eventuality. \n`No longer will you be able to exchange fiat for Bitcoin in a CBDC future.` \n\n![Scissors cutting a wormhole of the dollar and BTC](https://image.nostr.build/6034ed731ad5dc73feffb95e114766bd7181c656a97ffe876b55398a7fa315fd.png)\n\n### **Preventing Capital Flight**\nBy design, CBDCs are a **creation by this dark system to delay its own exponential decay**. It is a predictable phenomenon and reaction if you acknowledge the system itself is no longer sustainable, that it demands more and more monetary energy accrue to its centre. What we are witnessing is a defence-mechanism to extend its lifespan by a few months further, albeit to the detriment of all other participants. As [Preston Pysh likes to say](https://fountain.fm/clip/oHlikeIKWLEgFtqBHPIE), it's a game of monopoly that people are increasingly unwilling and unable to play. (Even when it becomes free to continue playing). **Our existing financial system is increasingly looking like a black hole of itself.** Capital inside the current system may soon be inescapable from the forces of gravity imposed by central bankers. Every transaction traceable, taxable and worst of all *reversible*. \n\n### **'Dark Age' for Bitcoin**\n**In this scenario, Bitcoin may be unable to absorb the monetary value from individuals in the existing system that we expect that it will.** The asset could even experience a 'dark age' for a decade. I'm not predicting that anytime soon, but CBDCs may see to it later this decade. \n\nThe asset would no longer function as a black hole under those circumstances, instead becoming incompatible with the existing system or what remains of it. As a network it would still thrive as a payments technology. Circular Bitcoin economies will become a necessity rather than a desire in such a scenario. \n\nBitcoin may not stop growing & accruing mindshare under these conditions either, but it would be a stretch to say it would attract increasing amounts of capital like we see today. There may even be a dramatic repricing under this scenario in fiat terms, given the amount of institutional investment that may need to exit. The very same institutions that are governed by the world's financial system.\n\n### **Artificial Scarcity**\nIt could be argued that Bitcoin is accelerating the demise of the fiat system, yet this would be happening even if Bitcoin had not existed yet. Gold or real estate would be accruing all of that monetary premium, as it has in decades prior, in the absence of true scarce money. Today it is accruing to Bitcoin, which is unwinding or reducing the monetary premium those assets carry - but it could have been any other asset under the wing of big banks. It need not be Bitcoin, in spite of its ultra hard-cap. In the age of CBDCs we will likely see a resurgence of creative and artificial forms of scarcity, much like German farmers over-invested in farm machinery during the Weimar era.\n\n-----------\n\n## **8. Our Financial System** ⚫\n\n**The existing financial system is looking more and more like it's own black hole.** Centralising power worldwide, bankrupting honest families, inflating-away wealth & causing all manner of distortions that are becoming more and more obvious by each week that passes. The existing system is contracting upon itself, just like the death of a star in our universe. Ruining everything else that comes within its path, not transforming or free'ing it. \n\nJust look at wages, velocity & inflation in the United States - indicators of what could otherwise be a healthy economy. The average money a person takes home, the amount of times that money is turned-over and spent into the real economy and the cost of goods and services in the economy paint a bleak picture.\n\n\n **🇺🇸 Wage Compensation**- [link](https://fred.stlouisfed.org/series/W270RE1A156NBEA) & **Monetary Velocity** - [link](https://fred.stlouisfed.org/series/M2V)\n \n![Wages as a percentage of income](https://image.nostr.build/4f8f4a0b2eab47621d505015717aaf521dfc74d64f418bbef4430053e0e4d2af.png)\n\n🇺🇸 **Cumulative Inflation since 1913** - [link](https://inflationdata.com/articles/2022/08/10/u-s-cumulative-inflation-since-1913/)\n\n![Cumulative inflation going parabolic](https://image.nostr.build/25fcba278b6c3223e37174afa9f954680922828732b8c5e3afa058b69993fd33.png)\n\nThis last cumulative chart is quite something! It's a cleaned-up version from the chart shown on [InflationData](https://inflationdata.com/articles/2022/08/10/u-s-cumulative-inflation-since-1913/). This means that something that cost $9.80 in January 1913 would cost $296.28 in July of 2022. What's worse is that people think this is "normal". Even if inflation has only been 3.24% compounded per year since 1913, it has been clearly accelerating in recent years and in particular since 1971. Just look at the new angle of attack we have witnessed in recent years.\n\nAs we can envisage, this system only resolves itself in 1 of 2 ways. Ever more extreme inflation, which many Bitcoiners believe will occur, or a crippling deflationary bust to come. Either way, the existing system is on-track to absorb and vacuum-up all monetary energy into its centre. Probably by 2040. That is without a BItcoin standard...\n\n------\n\n## **9. Bitcoin Standard** ⚪\n\nOn the flip-side, stop and imagine an economy instead fully leveraging Bitcoin. Now approaching 2024, I have still yet to read Saifedean's book, but here are my thoughts on what that might look like...\n\nIn such an economy, person to person payments would be many multiples of what they are currently today. **Salaries would be paid by the second, taxes would be minimal and somewhat voluntary, plus revenue-splits would be commonplace**. All transactions for all companies, charities, schools, IOT, commerce would be instantaneous. Suppliers, employees, creators, manufacturers, copyright holders & more would be paid instantly on each unit of spend. **90 day payment terms and end of the month salaries would be a laughable memory of the past.** Under such conditions monetary velocity would be many multiples higher than it is today. A greater share of money would change hands times daily, in spite of being a superior savings technology.\n\nThe average business owner would be far more profitable, completely unencumbered by the bureaucracy, third party leeches and the inefficiencies of doing local business let alone cross-border commerce today. In a thriving Bitcoin economy; productivity would flourish given that investments would demand a significant return on investment from spending satoshis. R&D would see to it that companies only invest in ventures that move the needle and level-up society, rather than seeking a quick buck by running a split-test on a website button. People would be focused on longer-term ventures and as [Tuur recently mentioned](https://x.com/TuurDemeester/status/1737190313888821495?s=20) we would likely see a Bitcoin-baby-boom create larger families as a result. Economies would grow to be incredibly more valuable than we can even anticipate today, resulting from commercial freedoms and demographics. Individuals and small businesses would have access to the very best 'talent' from A.I, matching and out-competing the goliaths of Apple, Google, Amazon, Microsoft - given they would possess a fraction of the same overhead or regulatory burden overhanging from the prior decades and that individuals had accumulated Bitcoin in advance of them.\n\nMuch like the onset of the gold standard did for United States from 1792 to 1971. The world experienced steady growth during that 180 year period, in spite of countries temporarily abandoning it on occasions to fund their mindless civil and world wars. Some libertarians anticipate that the economy would likely be [at least 50% larger](https://www.forbes.com/sites/steveforbes/2021/08/19/the-gold-standard-why-the-financial-and-economic-crises-continue/?sh=930cbc13874d) had they not abandoned a hard money standard many decades ago.\n\nSo why then, would we choose the black hole analogy if it **limits Bitcoin's potential impact on the world to the current mass of our financial system today**? If it is clearly a brighter and larger system for our future?\n\n--------\n\n## **10. What else do we know about white holes?** ⚪\n\n\n![White hole](https://i.ytimg.com/vi/zABdXf3gqEI/maxresdefault.jpg)\n\nIt should be noted that not all scientists believe or acknowledge that white holes exist. Just like many mainstream economists don't believe in the value of hard money and/or Bitcoin's protocol at all. White holes have yet to be properly observed and so theories surrounding their existence differ somewhat. There was a sighting in 2006 for 'GRB 060614' which could have been a while hole but has yet to be categorised as so. \n\nBelow are the 3 main trains of thought for white holes. Included are extracts from people who spend their lives researching and thinking about these phenomena much more deeply than this cowboy author:\n\n### `Theory 1. Black Holes & Big Bang`\n\n- "The geometry is very similar in the two cases (white holes and the Big Bang). Even to the point of being mathematically identical at times." - ``Hal Haggard, physicist\n\n- "But if a black hole instead turns into a white hole then all the information is recovered,” - `Hal Haggard, physicist`\n\n- "Once a black hole evaporated to a degree where it could not shrink any further because space-time could not be squeezed into anything smaller, the dying black hole would then rebound to form a white hole!" - ``Carlo Rovelli, physicist\n\n- "That means that minuscule black holes born in the infant universe could now be ready to pop off like firecrackers forming white holes" - ``Carlo Rovelli, physicist\n\nTLDR - What this all means is that as a black hole collapses under its own gravity, it continues to shrink until it cannot shrink anymore. At this point, it will exert a **huge pressure that would then turn itself from a black hole into a white hole**. All of the energy would convert from a slowly-growing black-hole into a fast, sharp & explosive white-hole. 'Gradually Then Suddenly" comes to mind for this theory.\n\n### `Theory 2. Multiverses / Wormholes`\n\n- “There is no escape from a black hole in *classical* theory. Quantum theory however enables energy and information to escape from a black hole, and would merge gravity with the other fundamental forces of nature.” - `Stephen Hawking, cosmologist\n\n- “The local laws of physics and chemistry can differ from one pocket universe to another, which together would form a multiverse.” - `Stephen Hawking, cosmologist\n\n- “It turns out that black holes are in fact good children, holding onto the memory of the stars that gave birth to them." - `Xavier Calmet, University of Sussex`\n\n- "A wormhole connects the interior of the black hole and the radiation outside, like a bridge" - `Kanato Goto, theoretical physicist`\n\n- “The energy density and the curvature become so large that classical gravity is not a good description of what’s happening there (with white holes). A more complete model of gravity would negate the instability and allow for white holes" - `Stephen Hsu, Michigan State University`\n\n- "Every black hole is actually a wormhole or an ‘Einstein-Rosen bridge’ to a new universe on the other side of the black hole’s event horizon. The matter and information that falls into a black hole and emerges from a white hole in the baby universe. - `Nikodem Poplawskiz, University of New Haven`\n\n![](https://nypost.com/wp-content/uploads/sites/2/2020/08/wormhole-41-1.jpg?quality=90&strip=all&w=1200)\n\nTLDR - What Stephen Hawking and others have suspected is that the energy from a black hole may not be lost after all but instead transferred to another place via another dimension or universe - lending to the idea of a small number of multiverses. This would happen by a process that they describe as 'Quantum Theory'. Opening the prospect to a wormhole scenario, **where black holes in one universe lead to white holes in another**.\n\n### `Theory 3. Don't Exist`\n- "They’re not realistic” - Andrew Hamilton, University of Colorado\n\n- "If the particle approached the event horizon, it would not be able to cross the event horizon, sending the energy of the system skyrocketing. Eventually, the particle would have so much energy that it would trigger the collapse of the white hole into a black hole, ending its existence." - `Paul Sutter, astrophysicist\n\nTLDR - They have never been observed in our universe. Nor do we have the laws of physics determined to conclude that they should exist. It is therefore by many deemed extremely unlikely. \n\nAfter writing about white holes at some length, this is unsurprisingly not my favourite conclusion. Human knowledge is always limited or bound by prior discoveries & theories. It's my hope and expectation we will fully understand white holes and the big bang in the coming years. And the parallels with Bitcoin will become obvious for us all to see.\n\n----\n\n## **11. Why Bitcoin Could Still Be A Black Hole** ⚫\n\nUsing [Clockwork's charts](https://clockworkpartners.com/assetx/) once more, we can observe see that the prices of all assets *are* indeed getting cheaper versus Bitcoin as time passes. It may therefore be valid to compare the Bitcoin asset to a black hole. The costs of purchasing are spiralling into the centre, requiring fewer and fewer sats. There is no question that bitcoin is absorbing monetary value from the existing system (what we may describe as 'matter') and mindshare of developers and libertarians ('light'). \n\n![Assets like housing, gold, stocks & Tesla stock priced in sats](https://image.nostr.build/f0ec97308fa915515b10cabe37e5e4bf9ad6398f07aa324dbb30a50aeb9d7c6b.png)\n\nThe black hole analogy is intuitive and also well understood. Black holes have been observed for decades and so their very existence need no longer debated. Bitcoin too has been accruing value and security at a pace unrivalled for any population or technology in human history.\n\nIf Bitcoin is a black hole, we should acknowledge that it won't live forever, but it will outlive us. Black holes eventually die, but they do outlive our own universe:\n> *“The entire age of the universe is a fraction of the time it would take (for one to die). As far as we’re concerned it is eternity.”* - `Priyamvada Natarajan: Yale University`\n\n\n------\n\n# **Conclusion** 🏁\n\nThere is no denying that assets priced in Bitcoin have been becoming cheaper each year that has passed. Scepticism is warranted as to whether that trend can continue in the era of CBDCs. Given they are not here yet, a connection still exists between both the dark decaying system and the new bright beginning. A 'wormhole' of sorts. For now at least, we can entertain the prospect of having both black and white holes as simultaneous analogies for our NGU technology. **Bitcoin is accruing all value and bootstrapping a new system at the same time.**\n\nI lean towards the white hole in this write-up for it's positive properties and it's immaculate conception. White holes may be short, fast and explosive at onset but they bootstrap a new and expanding universe, unleashing matter and potential into freedom and abundant space. They are also misunderstood by almost everyone on the planet today, as no one knows how to value or measure them. This has parallels to our comprehension of the future Bitcoin economy. We cannot even imagine its full potential for humanity, given our views are skewed by the current system today. And yet, there is still the vast majority of people that have yet to acknowledge its very existence.\n\nAs mentioned previously, the characteristics that a white hole has are much more favourable than it's opposite; a black hole. The direct comparisons can be found below to help you make up your own mind on which you prefer. \n\n**White hole, black hole or both. I'll let you Stackers decide!**\n\n![Black hole animation with Bitcoin logo](https://image.nostr.build/44e64c48ba2af4fa1f8c9500a6358e2d0e5d210c4b21e317d33fe36d610b076f.gif)\n\nP.S. Remember this write-up when you see your favourite Bitcoiner using the 'black hole' analogy on Twitter / Nostr. I'll no doubt be thinking of the brighter side.\n\n----\n\n# **Appendix - White vs Black Holes**\n\n\n### ⚪ Beginning vs Ending ⚫ \nA black hole is the end state of any system. Anything in its path will be engulfed and reduced to an unimaginably small blob. It is where matter goes to die. A white hole on the other hand is a new beginning. Anything involved with its formation is thrust quickly into expansion, unleashed into space.\n\n### ⚪ Impenetrable vs Inescapable ⚫\nOnce inside a black hole, you can pass inwards, but not outwards. Once you cross that event horizon, you are captured, you cannot escape and therefore your fate is sealed. Just as nothing can escape a black hole, nothing can enter a white hole. Passing the event horizon of a white hole means you are set free, with no one from the outside able to intervene and without being able to return.\n\n### ⚪ Expansion vs Contraction ⚫\nBlack holes are centralising forces, contracting and reducing the size of all matter that enters them. They crave more and more energy to feed on to increase their size. White holes after formation, expand and allow matter to grow and form new systems at the expense of its own size. Becoming more distributed with their energy concentration over time.\n\n### ⚪ Growth vs Decay ⚫\nWhite holes expel energy and explode quickly into something new. Freeing itself of influence and unleashing its contents to grow into near-infinite space. Black holes destroy and crush its contents into a singularity, encouraging the death and destruction of what enters it slowly over time.\n\n### ⚪ Transparent vs Opaque ⚫\nWhite holes emit bright light. In spite of being short in duration, white holes cause a bright flash on explosion and speedily unwind in the reverse of a black hole formation. Black holes are dark and opaque. Being only visible because of light reflecting off the matter being pulled into its area of influence.\n\n### ⚪ Abundance vs ⚫ Austerity\nBlack holes are limiting in both space and behaviour. They control the slow and arduous path of destruction for their victims. White holes project and provide increasing amounts of space for its victims over time. Put another way, white holes might also be a form of freedom technology.\n\n### ⚪ Mysterious vs ⚫ Observed\nWhite holes are misunderstood, and under-studied just like Bitcoin. Black holes however have been common knowledge for at least 50 years after the theory caught-up. There are now increasing amounts of sightings of black holes - so they are easily understood, by experts and plebs alike.\n\n### ⚪ Instantaneous vs ⚫ Slow\nBlack holes are slow and exist for a long time, white holes are explosive and instant in formation. White holes are observable over a much smaller time period, which may be one of the contributing factors why we as humans have yet to observe one definitively.\n\n------\n\n### **More Links on White Holes** 🔗\n- [Nautilus - White Holes Could Exist...](https://nautil.us/white-holes-could-existbut-that-doesnt-mean-they-do-234923/)\n- [Interesting Engineering - White Holes The Mysterious Twin](https://interestingengineering.com/science/white-holes-the-black-holes-mysterious-twin)\n- [Medium - Did We Detect a White Hole?](https://archive.is/6xXRo)\n- [MIT - Why Space Isn't Filled with White Holes](https://www.technologyreview.com/2010/08/02/201743/why-space-isnt-filled-with-white-holes/)\n- [PBS - Are White Holes Real?](https://www.pbs.org/wgbh/nova/article/are-white-holes-real/)\n- [Popular Mechanics - Hawking Paradox](https://www.popularmechanics.com/science/a40847455/hawking-paradox/)\n- [Colorado Ed - White Holes and Wormholes](https://jila.colorado.edu/~ajsh/bh/schww.html)\n\n\n*If you enjoyed this one, please follow me on Nostr:*\n`npub1xfp0eu86raryz2sw53f9qnxdujm8z73c5s55d3vzkae06gz5p0dsxae7an` \N 13467 \N 404400 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.7593291121154 0 \N \N f 0 \N 0 144750637 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442410 2025-03-18 14:48:27.368 2025-03-29 22:39:46.784 Welcome to the Fedimint territory! Hey all!\n\n[Fedimint](https://fedimint.org/) has just launched their [v0.2](https://github.com/fedimint/fedimint/releases/tag/v0.2.1) release: \n\nhttps://x.com/fedimint/status/1742680076221612148?s=20\n\nIn the months to come, I believe there's going to be a huge ramp up in federations, fedimint modules, gateways, breaking news, etc.. This place is available to ask questions, post news, and learn more about how to get started with fedimint. \n\nA few resources to learn more about fedimint and some projects so far: \n- [Fedimint.org](https://fedimint.org/)\n- [Weekly dev calls](https://github.com/fedimint/fedimint/wiki)\n- [Awesome Fedimint resource collection](https://github.com/fedimint/awesome-fedimint)\n \N 16679 \N 442410 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 8.33401619077371 0 \N \N f 0 \N 0 109011956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 135672 2024-03-03 12:46:43.58 2025-03-29 22:39:46.784 Some thoughts on the game theory that results from btc wealth ### The setup\nImagine a future where 1 btc is worth $1m in 2020 dollars. In such a future, many current bitcoiners will possess significant wealth, in the form of bearer assets. This is good for all the reasons btc is good. However, it also means that a host of attacks become viable in ways they weren't before.\n\n### Sovereignty under pressure\nWe all know about the security issues of someone getting access to your wallet or seed words somehow, and many people mitigate those risks in different ways, such as memorizing seed words, printing out QR codes and hiding them in books, creating metal backups and putting them in fire safes.\n\nBut with these practices, a host of _habeas corpus_ risks now increase dramatically, e.g., kidnappings and torture. If a villain gets their hands on you, and you have the power to give up your btc, either bc you have a hot wallet in your possession, can retrieve a hot wallet, possess a seedQR code, or have memorized your seed phrase -- in this circumstance, possessing your body is the equivalent of possessing your stack. Worse, it's not just your own body that must be secured; the body of anyone you care about is transformed into an attack surface.\n\nThis is the ultimate sovereignty: once compromised by this kind of attack, no one can help you. Settlement is final. Your funds are gone. Your fingers and toes are gone. Probably your life is also gone.\n\n### Single sig\nThe game theory of these dynamics demands certain responses.\n\nFirst, single sig, of any kind, is a dead end, not only for the hodler, but for everyone. If villains can reliably obtain funds by kidnapping and torture, they are incentivized to do so. In a fiat system, a credible deterrent is that transactions are reversible. In a btc system with final settlement, the only plausible deterrent is if kidnapping / torture will reliably _not_ work bc a person, even subject to the highest levels of duress, _cannot_ provide access to their btc under these scenarios.\n\n### Implications\n\nIf all that's true, how can the ecosystem around btc evolve to mitigate these new attack dynamics?\n\n- multisig must become ubiquitous, and your ability to access your own stash quickly must end\n- shared custody institutions like Unchained, Casa, and others will become the norm\n- other types of shared custody institutions, like Fedimint-derived ones, and things that haven't been invented yet, will become invented and become popular\n- social practices and institutions will evolve around these incentives\n\nIt also means that bad security on behalf of a single bitcoiner become security holes for all bitcoiners. If kidnappings / torture reliably produce btc results, then those practices will continue to be incentivized, and the ecosystem will adapt to normalize them, as they have in LatAm countries.\n\n### Discussion\nI know Andreas A, as a prominent holder of significant btc wealth, but as a guy who is not so rich that he can afford a contingent of bodyguards to surround him at all times, has mentioned similar security measures in the past for himself, though I don't have a reference handy; and I think he is dubious about the prospect for the average person.\n\nHave others discussed this topic in depth? I'm particular interested in the institutional and cultural adaptation that must unfold -- social determinism unfolding in the face of technological determinism, as Lyn Alden [might put it](https://stacker.news/items/274195). \N 10342 \N 135672 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.70176579724269 0 \N \N f 0 \N 0 214261765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 139358 2024-03-08 17:32:46.373 2025-03-29 22:39:46.785 (I think) I finally understand DarthCoin [Similar to how @siggy47 gets why bitcoiners like bear markets now](https://stacker.news/items/318223), I think I finally can start to grasph why @DarthCoin is being so toxic all the time. Prepare yourself for a very long and hopefully funny story :)\n\n---\n\nAlmost exactly one month ago, my girlfriend of almost 2 years broke up with me.\n\nAlmost, because it was on November 11, not November 12. What a convenient date to remember: 11/11 :)\n\nI have asked myself a lot if I should share this on SN. This is (obviously) a very personal topic for me and I do care about my online privacy which is also [why I have started to use the delete feature more](https://stacker.news/items/348731) but I think this might actually resonate with some people on here. Or make some people reconsider how they see @DarthCoin. Also, I notice how I can't really focus as much as I would like to anymore because something is boiling inside of me. I am literally walking around faster and I have to hold myself back to not push people over because they are walking too slow for me. I am trying to not scream at the cashiers when they do not say "have a nice day" back to me. I consistently have to take a breath before I respond to some people on here or in other places to make sure I am not going to lash out on accident for something so irrelevant, I might look like a bad person to interact with and not like the person I want to be. [I can't even hold myself back to call out @ODELL for something I don't like](https://stacker.news/items/348945) even though I never met him thus don't know him, never read much about what he is doing in this space, what is important to him and so on. I literally have no idea who he is in some way. And most important, I have no idea why he is even using ALL CAPS. I can of course only speculate, lol :)\n\nI know I am in a bad emotional state right now.\n\n**But at least I know**. I also know that lashing out is almost never the solution to anything. It DOES NOT help with fixing ANY situation, it only makes it worse. However, only ALMOST NEVER. This is what this post is going to be about. This post is about how [toxicity is the red pill for bitcoiners](https://stacker.news/items/347458) or how [toxicity is brutal honesty](https://stacker.news/items/347687).\n\n\n**Is there ever a time and place to be toxic? To be as toxic as you can be? To scream at the top of your lungs at someone to make them finally understand that you're being serious? That it's not you who is crazy but them? Even though the definition of crazy is usually**\n\n> If you think everyone around you is crazy... you might be the crazy one.\n\n**Because they just can not understand that what you are trying to tell them is a very serious topic for you? So they should stop making jokes about it? Since you're also not joking for once? Like for once in your life, you are not trying to make jokes so people that have known you for so many years, they might actually take you serious for once? ...**\n\nAnyway, we will try to answer this question in this post. :)\n\nFor an example when I need to take a breath before replying, see [this comment](https://stacker.news/items/349022):\n\n> We can integrate the Chess part on SN too and use your prediction market when people play\n\n@brave, I hope you can forgive me for mentioning you but you are just the latest best example, haha\n\nZap them like crazy since I have put them on a spotlight on here without asking them first because I just HAVE TO write this RIGHT NOW. **I am literally afraid my newfound toxicness is going to disappear before I am done writing this post because [I think this can be part of my superpower](https://stacker.news/items/343999).**\n\nI think my superpower is:\n\n> convert bad energy into code\n\nThe problem with that superpower for now is just: that code isn't good, if it even exists. It's very hard to focus during programming if you have so many things going on in your mind at the same time. But this is also why I am writing this, to at least get something like 1% of these things out of my system.\n\nAlso, you, @brave, seemed to understand that I was trying to make you understand in a "funny but toxic but funny" way how ridiculous this request was. Again, I do not intend to be rude (at least I sure hope so). I just want to help people understand some things without completely censoring myself when I am trying to.\n\nI also gave @brave 1000 sats because I was so happy [he realized that I didn't mean to be rude](https://stacker.news/items/349051), I just wanted to call out the audacity to even ask for something like this, and I did have a good laugh reading his reply:\n\n> LOL, I'm not which is what gave me the audacity to even think so\n\nSo, why did I start with my recent breakup? To keep it short (and not AS TOXIC AS IT COULD BE):\n\nOur relationship started with me being scared that it might not work out in the long run because I know myself too well. I like to be alone way too much sometimes :)\n\nShe said she understands and I also liked her. She seemed to really get me. So after some long discussions, including time that we had for ourselves to think about if we really want to do this, we thought: Why not just try it?\n\nSo we tried. Again, I am trying to keep this short, since I have stuff to do, lol. **But disclaimer: I know this is only my side of the story. Don't trust me that I am not making stuff up here. Like some stories based on real events are also not _completely_ true :)**\n\nIn something like the last 3 months before she broke up with me, I felt like something was wrong. I kept asking her\n\n> I feel like something is wrong, I think you don't like me anymore. We keep visiting each other during the weekends, but I don't think you actually want to. What is going on? I am really worried about you."\n\nShe kept insisting that either a) nothing is wrong or b) it has nothing to do with me. \n\nOh, what kind of foreshadowing is this? :)\n\nWell, when she broke up (she didn't even start the discussion) it obviously had a lot to do with me.\n\nThe funny part is, we were sitting around again as we used to do, having a good talk and laughing about dumb stuff. That's also why I liked her so much. You could talk to her about so many things. Just not about _everything_.\n\nOr at least it seemed to be a good talk as usual. When I noticed _again_ (FOR THE I DON'T KNOW I LOST COUNT) that something is off, I asked her again. She just started crying. I tried to calm her down. "It's okay.", I said. But internally, I thought:\n\n> _I should have known. I should have known that even though we started our relationship with the premise that we're going to talk openly about every--thing. We said we will try to block every Sunday so we can talk about anything we might not wanted to talk about during the week for whatever reason. That Sunday is going to be the day, we're 100% going to listen to each other to see how the other person is doing. I should have known that when I knew something was off, she wasn't telling me the truth. She was trying to avoid conflict but ... did she? DID SHE AVOID CONFLICT? OR DID SHE LITERALLY JUST MAKE IT WORSE THAN IT HAD TO BE?_\n\nBut I didn't fully internalize these thoughts yet. I think I kept pushing them off. I didn't want to think like this.\n\nWell, we talked, we ate dinner for the last time, watched some episodes of the series that we started watching before we even got together (a new season came out). Then she left with us saying to each other we can meet again. I asked if I am still invited to the New Year's party with mostly her friends. She said she doesn't mind but the problem is if someone will actually plan something. Like where to go etc. She said she is happy how understanding I was and that I didn't make a drama out of this.\n\n> _BUT WELL, WHAT ABOUT YOU? DID YOU TRY TO NOT MAKE A DRAMA OUT OF THIS?_\n\nAnyway. A week later, I wrote her, asking if she has time to go hiking. Since we literally said, we can still meet. We can still be friends (I guess A LOT OF YOU can relate to this).\n\nHer answer after two days was:\n\n> Good morning :) Sorry for the late reply. I have been quite busy the past days. Nice idea! But all my free days from work for this and next month are already filled up with other stuff, sorry 🙈\n\nShe didn't write anything else. And most important, she didn't reply with:\n\n> HEY THANKS YOU REACHED OUT TO ME EVEN THOUGH MAYBE I SHOULD HAVE BECAUSE I HAVE TREATED YOU LIKE A BECAUSE YOU KEPT ASKING FOR MONTHS WHAT THE IS GOING ON AND THUS I SHOULD HAVE KNOWN THAT YOU ARE PRETTY AWARE OF WHAT THE IS GOING ON BUT YOU TRUSTED ME THAT I WOULD TELL YOU THE TRUTH AND THUS YOU THOUGHT THAT YOU'RE JUST SEEING THINGS THAT AREN'T THERE AND YOU SHOULD TRY TO CALM THE DOWN BECAUSE WHY THE WOULD SHE NOT TELL ME THE TRUTH?\n\nBut I only fully realized that she didn't reply like this recently. It's funny because I know, [people say after a breakup you go through phases of denial, anger, bargaining, depression, acceptance](https://www.csn.edu/_csnmedia/documents/caps-counseling-and-psychological-services/stages_of_grief_after_a_breakup_0.pdf).\n\n\nI think one day I just woke up and I thought:\n\n> _WAIT A MINUTE. WHY AM I FEELING SO SAD? AS IF IT'S ALL MY FAULT?_\n\nAnd I think then it was official: I entered the anger phase, lol :)\n\nI actually don't know how long this post already is since I am writing it outside of SN since I am too afraid we might have a bug, we didn't implement [this feature yet](https://github.com/stackernews/stacker.news/issues/216) or my browser might crash or I don't know what life has planned next for me. But I am getting to my theory of why @DarthCoin is just so insufferable sometimes, soon, hang on :)\n\nThen I started to talk to IRL friends about my breakup. That actually helped me and they were very understanding.\n\nThen, they realized I don't have time to MEET THEM ALL THE TIME. Were they worried about me? Maybe. But I tried to tell them:\n\n> I AM DOING FINE STOP ASKING IF I HAVE TIME WHENEVER YOU NOW WANT TO MEET IS WRONG WITH YOU PEOPLE\n\nThen I tried to explain to them why I think I am doing fine and I just want to have time for myself ... oh boy, this got extremely funny very fast.\n\nThey didn't take me serious when I tried to explain to them how important bitcoin is to me. They literally thought I was joking about all the things I said. I tried to have patience with them since I know how crazy or hard bitcoin is to understand.\n\nBut you know what?\n\n> AT LEAST TAKE ME SERIOUS WHEN I AM TRYING TO LITERALLY TELL YOU HOW SERIOUS I AM.\n\nLong story short, I literally started to burn some very old bridges - more or less temporarily - because I just couldn't interact with them anymore.\n\n> THEY JUST DON'T GET IT. THIS IS A WASTE OF TIME.\n\nHowever, I told them, depending on the amount of trust that I have in them finally understanding that I am being serious:\n\n> I don't want to talk to you anymore for X months / years.\n\nOh boy, this got even more funny even faster, haha!\n\nTHEY LITERALLY STARTED TO TELL ME HOW I AM OVERREACTING AND I AM CRAZY AND I AM SUCH A BAD BAD PERSON THAT I AM BURNING BRIDGES BECAUSE THEY DON'T GET SOMETHING SO STUPID LIKE BITCOIN.\n\nI couldn't take this anymore. Then I started to become as toxic as I ever was in my life. If some stuff they said to me in person, I think I literally would have screamed until I would have passed out, lol. Just to get up and scream at them some more! But no, the very bad stuff was mostly over text.\n\nThen I send every single one of them a very personal message how I think that actually, they might be wrong and that THEY are actually the because I LITERALLY TRIED TO EXPLAIN TO THEM BUT THEY JUST DON'T WANT TO TAKE IT SERIOUS LIKE WHAT THE IS WRONG WITH YOU PEOPLE LIKE SERIOUSLY GIVE ME A BREAK ! I AM BEING SO TOXIC RIGHT NOW, I THINK I MIGHT ACTUALLY HAVE FIXED MY SOCIAL ANXIETY BECAUSE I JUST DON'T GIVE A ABOUT PEOPLE WASTING MY TIME ANYMORE\n\nAnd then I realized ... wow, this might have indeed helped with some of them!\n\nThey were suddenly like\n\n> Oh, I am very sorry, I didn't know you are going through hard times. Are you sure you don't want to meet?\n\n> YES I AM SURE BECAUSE YOU ARE LITERALLY WASTING MY TIME AND YOU STILL DON'T GET IT EVEN THOUGH I LITERALLY WROTE YOU THE MOST TOXIC MESSAGE I HAVE EVER WRITTEN IN MY LIFE, TRYING AGAIN TO EXPLAIN FOR THE NTH TIME WHY I DON'T WANT TO MEET YOU _RIGHT NOW_.\n\nSo to come to a final conclusion: If you think the only thing you have left is to be SO TOXIC, DO IT. IT MIGHT ACTUALLY MAKE A DIFFERENCE.\n\nAnd I think @DarthCoin has been in this space for so long, he lost patience with some people like I did in the span of a few weeks.\n\nI mean, I know I have been active in this space for not even a year and I AM ALREADY SO TOXIC TO PEOPLE WHO DON'T TAKE BITCOIN SERIOUS.\n\nImagine you've been in Bitcoin since 2012, it's been over 10 years and people still don't get it. WOULDN'T YOU BECOME VERY TOXIC YOURSELF?\n\nJust ask yourself this. This could have been all I wanted to say with this post.\n\nBut I think @DarthCoin is sometimes just being toxic for the sake of being toxic and thus is so insufferable sometimes. I just searched for "insufferable" on here and this is the first comment that showed up:\n\n> You are easily one of the most insufferable people on this website. I found a selfie.\n-- https://stacker.news/items/101165\n\nBut I actually wanted to find my own comment about @DarthCoin being insufferable, lol:\n\n> @DarthCoin never change even though you are really insufferable sometimes :)\n-- https://stacker.news/items/344665\n\nSo the point of this story is: BE TOXIC WHEN YOU HAVE TO, BUT BE SMART ABOUT IT, NOT LIKE @DarthCoin, BEING TOXIC WHENEVER HE CAN, EVEN ON TOPICS HE HAS SO OBVIOUSLY NO IDEA ABOUT, [EVEN ADMITTING HE HAS NO FUCKING CLUE ABOUT CODE LOL](https://stacker.news/items/347737)!\n\nAnd one last thing:\n\nPLEASE DON'T ASK ME HOW I AM DOING OR START DM'ING ME OR WHATEVER THE YOU THINK MIGHT HELP ME. I JUST WANT TO MOVE ON, I DID NOT _REALLY_ WANT TO TALK ABOUT THIS HERE BUT I JUST REALIZED I MIGHT HAVE TO TO FINALLY BE ABLE TO CODE AGAIN AND COMMIT TO ME BEING FUCKING TOXIC BUT IN A HELPFUL WAY TO ANYONE WHO I THINK IS WASTING MY TIME.\n\nBUT IF YOU REALLY HAVE TO GIVE ME SOME ADVICE, DO IT BELOW THIS POST SO I CAN IGNORE IT TO FINALLY CODE AGAIN WITHOUT SO MANY DISTRACTING THOUGHTS IN MY HEAD . I MIGHT NEVER REPLY TO ANY OF WHAT YOU ARE WRITING HERE SINCE I PROBABLY ALREADY TRIED OR AM CURRENTLY TRYING OR ALREADY KNOW. AND YES, I KNOW I AM A VERY NICE PERSON SINCE I AM TRYING HARD, PLEASE STOP WASTING MY TIME AND YOURS AND ACTUALLY DO SOMETHING USEFUL IN YOUR LIFE FOR ONCE\n\n[THANKS I NOW NEED TO DO SOME \\ BINARY STUFF IN \\ JAVASCRIPT](https://github.com/stackernews/stacker.news/pull/683) LIKE WHAT THE ! JUST SO SOME PEOPLE ON HERE CAN START UPLOADING THEIR PICTURES WITHOUT IT GETTING ROTATED FOR NO APPARENT REASON\n\nI THINK I AM DONE NOW. I FEEL MUCH BETTER. \N 12779 \N 139358 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 3.53900078890433 0 \N \N f 0 \N 0 120082714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 98767 2023-12-14 18:26:38.142 2025-03-29 22:39:46.785 I want YOU for Bitcoin Core /s **Become a Bitcoin developer!**\n\n![want-you.jpg](https://m.stacker.news/17944)\n\nWork _in public_ with smart people on interesting problems, contributing to bringing about the native currency of the internet. Be under constant scrutiny, be held to the highest engineering standards, be subject to grueling lawsuits, earn below industry average, take six months to years to deploy any non-trivial features, explain frequently why the thing you are working on is not easily solved by the first idea everyone has, be called an idiot or traitor whenever you don’t cater to the latest narrative of Bitcoin Twitter, be attacked when you share your informed opinion on a controversial topic, also be attacked when you do not weigh in on a controversial topic, be accused of conspiring to add backdoors if you dare to discuss an idea with a few colleagues before sharing it in the public, spend 5–10 hours a week on manic allegations and brigading by "collaborators" and random people from the internet.\n\n**Apply today!** /s \N 17411 \N 98767 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.74210252402857 0 \N \N f 0 \N 0 91197383 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 263932 2024-10-11 11:47:22.836 2025-03-29 22:39:46.787 Launched: BitEscrow - Non-Custodial Bitcoin Escrow Service \N https://www.bitescrow.app/ 16145 \N 263932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4547907770011 0 \N \N f 0 \N 0 228511887 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436211 2025-03-13 11:40:01.763 2025-03-29 22:39:49.747 \N Been experimenting with some haiku on my break;\n\nI am so damn tired,\nWhere did all my money go,\nBitcoin fixes this.\n\nThanks to @siggy47 for the encouragement and Jack & The Dharma Bums for the inspiration. https://example.com/ 1726 435905 435905.436211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7384622688399 0 \N \N f 206329364 \N 1 9393922 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 2025-03-20 06:10:39.805 f \N \N \N 0 0 0 0 1 0 0 435042 2025-03-12 12:25:25.099 2025-03-29 22:39:49.747 \N A zap button on our profile solves that. https://example.com/ 13327 434978 434791.434978.435042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1322511704065 0 \N \N f 144255779 \N 2 55927963 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 05:46:27.229 f \N \N \N 0 0 0 0 2 0 0 417016 2025-02-26 02:08:18.169 2025-03-29 22:39:49.748 \N I wonder if it would be a good feature to give all users the notification message about how they ranked in the rewards. Not just users who got a reward.\n\nExample: "You stacked 0 sats. You where in the 32% of top posting/comment users yesterday"\n\nGive users a feel for how close or far they where. https://example.com/ 4062 416768 416768.417016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8723965403366 0 \N \N f 443063614 \N 3 92585696 0 f f \N \N \N \N 416768 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 209193 2024-08-01 21:05:17.637 2025-03-29 22:39:46.783 Being expatriotic # Being "expatriotic"\n\n\n## So who is this article for? \nAnyone who's becoming disillusioned with the country that they're in and wants to live somewhere else. Anyone who feels like they can't save a dime living in a "civilized" or "western" country. The general message here is that, by leaving the US, UK, Germany etc., you gain something. That is, you gain a life that is potentially A LOT cheaper to fund. This can be a game changer for a lot of people. Is it your mission in life to travel? Why work for five years to go spend 2 weeks in Japan? What if you spent those five years travelling instead? This is a concept I borrowed from the AMAZING book "Vagabonding" that talks about how one shouldn't *say* they want to travel if they spend all their life just working 9-to-5. It's not intellectually honest. You're essentially a wage slave at that point and your dreams have become disassociated from your reality. And yes, I can hear the retorts now, "but muh family!!!" and sure, that's a factor. But does your family really want you to be miserable your entire existence so you can MAYBE do some traveling when you retire at 65?\n\n## To vagabond or to expat, that is the question.\nAn expatriate is one who leaves their country to work abroad. Usually it's not permanent. It differs from being an immigrant because expatriates (expats for short) usually hold short-term visas that are sponsored by their employee. Being expatriotic is like being a typical expat, except with a certain degree of scorn for the country of your origin. Of course you don't need to become an expat. You *could* just stay in rural America and focus on your earthship, self-sufficient, Citadel. A la *Mandibles*. However if choosing to go abroad, it will come down to leveraging disparities in the global cost of living and desparities of income.\n\n*The Sovereign Individual*, a book ahead of it's time, predicted this outcome. A world where people could be paid in Bali for work done in Sweden, transcending geographical and fiscal contraints in exchange for autonomy and the ability to SAVE MONEY.\nBut if you decide to go abroad, what are your options?\n\n**1. Digital nomad.** Work remotely and become a perpetual traveler.\n\t\n* Teaching English as an additional language (ESL, EAL etc.) There are many platforms that will pay you to teach their children English. A simple web search will spit out tons of sites. Usually you'll need some kind of CELTA or TESL. \n* Dev work and coding. Level up. Learn a skill. Coding or otherwise. \n* Customer service or sales. You don't need to be in the same country to work for a company who needs someone to hold their customers hand.\n* Resources:\n\t* [https://www.plebwork.com](PlebWork)\n\t* [https://www.bitcointalent.co](BitcoinTalent)\n\t* [https://www.bitcoinerjobs.com](BitcoinerJobs)\n\t* [https://www.bitcoinerfreelance.com](BitcoinerFreelance)\n\n**2. Employee at a foreign company abroad**\n\n* Working at VW (fill in any western company name) but in China or Thailand\n\n**3. International school teacher**\n\t\n* One area that is booming is international schools. It only takes nine months to get a certification from a state in the US--EVEN if you AREN'T in the country!! Check out Moreland University.\n\n\n\n**Table 1: Examples of countries relative purchasing power using the US as base 100.**\n\n| Rank\t| Country/Region\t| Cost index | Monthly income | Purchasing power index |\n|:----:|---------------|:------------:|:----------------:|:------------------------:|\n| 1 | Switzerland |\t131.4 | 7,958 USD | 94.6 |\n| 6 | Ireland | 110.6 | 6,644 USD\t| 93.9 |\n| 9\t| Australia | \t107.0\t| 5,070 USD\t| 74.1 |\n| 15\t| United States | 100.0 | 6,398 USD | 100.0 |\n| 16\t|United Kingdom|\t98.5|\t4,103 USD\t|65.1|\n| 18|\tSweden\t|93.9\t|5,292 USD|\t88.1|\n| 21\t|Japan\t|84.9\t|3,537 USD|\t65.1|\n| 22\t|France\t|83.2\t|3,774 USD\t|70.9|\n| 24\t|Germany\t|82.3\t|4,503 USD\t|85.6|\n| 29\t|Singapore\t|72.1\t|5,600 USD\t|121.3|\n| 31\t|Portugal\t|67.9\t|2,163 USD|\t49.8|\n| 32\t|United Arab Emirates\t|67.2\t|4,097 USD\t| 95.3|\n| 39\t|Chile\t|58.3\t|1,280 USD|\t34.3|\n| 40\t|China\t|57.6|\t1,071 USD|\t29.1|\n| 44\t|Brazil\t|49.8\t|678 USD|\t21.3|\n| 45\t|Ecuador\t|49.7|\t525 USD|\t16.5|\n| 48\t|El Salvador\t|48.2\t|393 USD|\t12.7|\n| 49\t|Honduras\t|47.5|\t229 USD|\t7.5|\n| 63\t|Colombia\t|38.2\t|542 USD\t|22.2|\n| 67\t|Philippines\t|36.5\t|329 USD\t|14.1|\n| 75\t|Thailand\t|34.7\t|603 USD\t|27.2|\n| 77\t|Indonesia\t|33.1\t|382 USD\t|18.0|\n| 79\t|Vietnam\t|32.4\t|334 USD\t|16.1 |\n\nSource: [https://www.worlddata.info/cost-of-living.php](https://www.worlddata.info/cost-of-living.php)\n\n## My story\n\n### Debt\nI probably worked 20 jobs before I went overseas to Indonesia for my first international teaching gig. Suddenly instead of only being able to eat out once or twice a month I was fairly comfortable. I could eat out every meal because although by US standards I was earning a modest wage, it was 8x more than what the poorest wage earners were getting. And this meant that my money went far. Meals were cheap and I ate out almost every meal. I tried to save up, but after being a poor college student, I wanted to be comfortable. Plus, getting married and having, not one, but two kids kept my savings in the red. By the time I was in my early thirties I was in debt and using credit cards. I felt pretty damn hopeless. And the fiat system is built on keeping you in debt. My credit rating actually went *down* because I had the audacity to pay my debt off too quickly. \n\n### Saving\nSaving money in fiat is almost impossible. In most cases people live paycheck to paycheck, or worse, they live outside of their means. But even the rare person saving 5-10% of their salary will be exposed to monetary inflation as countries actively and maliciously debase their currencies.\n\nBitcoin is the perfect savings technology. It's a money that truly allows you to be in control. Plus your savings will increase in value rather than decreasing. Saving in bitcoins is like having a literal superpower. Just working 9-to-5, you can save enough money to retire by the time your 45 or 50. Even better if you can earn bitcoins instead of buying them! \n\nBut it's not enough to just earn more and save in bitcoins, you have to find a way to CUT costs, and this is where *choosing* where to live is key.\n\n\n### Enter China\nChina (the part I'm in at least) is EXTREMELY cheap to live in and I earn as much as I would in the states. Plus international school teachers rarely pay their own taxes. We get annual flights home for the family, free health insurance and housing. And if you live on campus like I do, you can even opt out of car payments, gas, garage bills, car insurance etc. \n\nFinancial independence comes way sooner when you manage your expenses and live on less. In other words, if you need $50,000 a year to maintain your lifestyle, you're going to have to retire way later than if you need $25,000 a year. Maths, amirite? Bitcoin plays a HUGE part of my calculus. Before it, I was all into having a balanced portfolio. I was constanting fixated on how to invest my money to get a return or yield. Meanwhile Bitcoin waltzed in as this pristine savings vehicle. All I had to do no was stack. Saving 50-75% of my salary a month and I could see my way to being financially set up for life.\n\n### Conclusion\nRetool your life. Optimizing for freedom, choice, and financial self-determination.\n\n\n*This article is 100% AI free.*\n \N 18219 \N 209193 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.24106155712344 0 \N \N f 0 \N 0 157917158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451406 2025-03-24 14:34:59.397 2025-03-29 22:39:46.784 Low Time Preference When You Don’t Have Much Time Left My father used to read the newspaper obituaries every morning during breakfast. I’d hear him murmur “beat that guy, beat that guy, beat that guy” as he worked his way down the page. I think he did it for comic effect, but I was never sure. He was in his 60s at the time, around the same age I am now. \n\nMy dad never really retired. He worked hard his whole life. He was a successful businessman. By the time he reached that age when people stop working to take it easy, he was more than financially secure enough to sit by the pool and sip drinks all day, or play a few rounds of golf. He did neither. When he and my mom made the traditional migration to Florida like all New Yorkers of their generation, my mother joined flower clubs and played mahjong, and made lots of friends. My father began making investments in local businesses and spent his retirement at his desk, or on the phone, arguing with people. The other men in the retirement community golfed or sat in the clubhouse bar, drinking afternoon cocktails. \n\nI asked him why he didn’t stop working and take it easy. He was shocked. “What do you mean? I am taking it easy.” He insisted he was happiest while playing the game of business. Don’t get me wrong, my parents had fun. They traveled a lot, went out to dinner with friends, and seemed very happy. It was just that my dad was happiest working on some business venture or another. He was still working when he died. \n\nPeople who knew my father saw him as a happy, carefree person. He cultivated that image. His immediate family knew better, though. \n\nMy dad was scarred from his childhood. He was a first generation Italian American, raised in a poor section of Brooklyn New York, just as the Great Depression was kicking in. His father was an uneducated immigrant who worked as a janitor when he could find work. He didn’t find any work during the depression, so instead he drank. Life wasn’t pleasant at home. My grandmother brought sewing piecework in to make some money, but it was never enough. When the economy improved, my grandfather still didn’t work much. By then he was a full time drinker. \n\nAs a result, my dad always felt insecure about money, no matter how wealthy he grew. He passed on his values to me. The message was clear. A man’s role was to work hard and make enough money to support his family. It’s an old school notion, rooted in sexism and traditional gender roles, but it’s who I am at my core. There’s not much I can do about it now, even if I wanted to. And I don’t. \n\nBy the time Satoshi wrote the white paper, I was already living a low time preference life. I thought of it as saving for a rainy day, and it came naturally. I joked with my friends that all I needed was a room with a comfortable chair and a tv set and I was happy. Once the internet came out I swapped that tv for a computer. Don’t get me wrong. I wasn’t a buddhist monk, but I always made sure to live below my means. \n\nI must also mention that I’m a person who has trouble living in the moment. My brain is constantly thinking about and preparing for future events. I have flirted with eastern philosophies in an attempt to live in the moment, with limited success.\n\nWhen I discovered bitcoin many things about it confused me. I was older and not technically brilliant. I’m still learning. The one thing no one needed to explain to me, though, was the idea of low time preference. That came naturally. \n\nNow I’m old myself. I’m semi retired, but have trouble fully shedding all my work responsibilities. I first bought bitcoin in early 2018. I didn’t buy much. I was drawn in by the hype of the 2017 bull market and got discouraged by the bear that followed. Still, I never sold a sat. It wasn’t until 2020 that I fully embraced bitcoin. Once that happened, any excess money I had after paying my family’s expenses went to bitcoin. I have never sold a sat. I do spend bitcoin for the things I need whenever I can. I don’t think of it as diamond hands. It’s just something that never, ever occurs to me. I was like that with my fiat savings too. We have a good life. We have everything we need.\n\nMy wife and I talk about retirement. We talk about how to spend our golden years. She naturally talks about things that cost significant fiat dollars. When it comes right down to it, I can’t bear the thought of trading my precious bitcoin for fiat to buy this stuff. That’s the case even though the actuarial tables tell me I might have 10 more years, if I’m lucky. If I’m being honest, I don’t care. I still don’t want to sell my bitcoin. I do feel foolish at times that I’m still having trouble living in the present when I may not have much future left.\n\nI am a Pink Floyd fan. A lyric that always stuck in my head when I was young was “no one told you when to run, you missed the starting gun.” I think of that a lot now. I’m at the point where no one is telling me where the finish line is. \N 4064 \N 451406 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 23.1169047905749 0 \N \N f 0 \N 0 106531824 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 92863 2023-11-30 21:23:16.248 2025-03-29 22:39:46.784 Two Lightning Attacks Analyzed: A Response to John Light # Introduction\n\n> [Users of] the Lightning Network...trust third parties (TTPs) with the security of funds owned in the system. ... [This is because the] Lightning Network is vulnerable to hashrate majority collusion and flood and loot attacks, where the attackers can steal but not freeze the funds owed to their channel counterparties. [source](https://lightco.in/2023/12/13/lightning-validia-rollups/)\n\nThis is an interesting paragraph imo. The first sentence reminds me of this maxim: it's custodial if someone can steal it. If John's first sentence here means (and I'm not sure it does) that every lightning user trusts someone not to steal their money, then it seems to follow that every lightning wallet is actually custodial, including every lightning full node. If that is true, it means the entire lightning network is actually a custodial system, not just products like WoS, but even network infrastructure like LND and CLN. It's really all just a cleverly disguised custodial system, if I understand John's thesis here correctly (which, I probably don't -- he probably doesn't mean that).\n\nThe second two sentences I quoted appear to back up the first one. If his thesis is: "there's always someone who can steal your money on lightning" then it is wise to identify who that is, because that person is actually a disguised custodian. John identifies two ways someone can steal from your lightning channel: "hashrate majority collusion and flood and loot attacks."\n\n# Flood and Loot\n\nThe second attack ("flood and loot attacks" aka FAL attacks, aka Forced Expiration Spam attacks, aka FES attacks) is outlined in section 9.2 of [the lightning network whitepaper](https://lightning.network/lightning-network-paper.pdf) where it is described as "[maybe] the greatest systemic risk when using the Lightning Network." A FES attack is (1) hard to pull off (2) always at massive risk of failing (3) likely to cause loss of funds *for the attacker* if it *does* fail.\n\nTo accomplish a FES attack, the attacker must first create a situation where bitcoin blocks suddenly become very congested, or he must act quickly when that situation arises through some other cause. Next he must force close his channel with you using an "old state" where he owes you less money than you're actually due.\n\nThe victim is expected to broadcast a "justice transaction" when this happens, but due to sudden network congestion, the justice transaction is not expected to pay a sufficiently high fee to get into a block. Moreover, the input to a justice transaction is a utxo from a multisig address "owned by" the attacker and the victim jointly, which prevents the victim from using RBF to unilaterally bump the fee (to use RBF on a multisig utxo, both parties have to agree on the new feerate and cosign it -- which the attacker won't do).\n\nThe FES attack isn't over yet, though. The attack will fail if the victim successfully uses CPFP or a centralized transaction accelerator to bump the fee on the justice transaction, which, if the victim succeeds, that will cost the attacker all of the money they had in the lightning channel with the would-be victim. So he must hope the victim does not do that. And even if all of that turns out to be true, the attacker *still* might fail if, before the timelock on the attacker's force closure transaction expires, fees fall to levels that allow the victim's justice transaction to get mined.\n\nIt seems extremely unlikely that all of these factors are under the attacker's control, especially the part where the victim can just use CPFP or a transaction accelerator to foil the attack. So I personally don't think the FES attack "counts" as a proof that a trusted third party can steal your money. I don't think it proves John's thesis (which I probably misunderstood, but here I am acting as if I did not).\n\nFES attacks do not imply that lightning is custodial or that anyone can steal your money. The victim is in control of whether or not the attack succeeds. Foiling it is even something you can automate through judicious software that watches for FES attacks and uses CPFP and transaction accelerators when they happen. Moreover, since foiling such an attack actually *earns the victim some money* (you get all of your counterparty's money when you successfully broadcast a justice transaction) there is an incentive to build an auto-foiler directly into lightning wallets. I'm not sure if any has done this but I wouldn't be surprised if Acinq has.\n\n# Miners Can Steal\n\nJohn calls the other attack "hashrate majority collusion." It refers to the fact that miners can censor transactions from getting into blocks, but only if they control a "hashrate majority" i.e. 51% of mining rigs. If you can convince a group of miners to do that for you, you can steal from your lightning counterparty in the following manner: force close your channel with them using an "old state" where you owe them less money than they're actually due.\n\nNext, expect your counterparty to broadcast a justice transaction to stop your attempted theft, but tell your group of miners not to mine that transaction. Also, if anyone *else* mines that transaction, tell your group of miners to orphan that block and mine a different block to replace it -- one without the justice transaction in it. As long as your group of miners really has 51% of the hashrate they will eventually "win the fight" (though it may take weeks to do so if they only have 51% of mining rigs), the timelock on your force closure will expire, and you will get to keep whatever money you owed your counterparty because they couldn't get their justice transaction mined in time to prevent the theft.\n\nIn my opinion, the existence of this attack does not imply that lightning is custodial or that anyone can steal your money. The attack assumes that your counterparty can collude with 51% of miners, but that does not seem plausible to me. The most plausible way to do it that I can think of is to bribe the two largest mining pools. But those pools do not "control" 51% of mining rigs. The actual mining rig owners are just "members" of various pools, and not only can they switch to a new pool at a whim, they appear to do so very responsively in reaction to things like twitter mobs yelling "censorship!" about things like (1) Antpool following OFAC guidance (2) Foundry pool *merely announcing an intention* to comply with OFAC in the future and (3) most recently, Ocean censoring inscriptions.\n\nI don't think John actually thinks this, but suppose for a moment that he believed all the members of large mining pools are actually trusted counterparties to every lightning channel. I think that would only be true if (1) they chose to collude together with one of the members of that channel to orchestrate a "miners can steal" attack, (2) they were able to maintain a hashrate majority for the duration of the attack (3) to the point of orphaning other miners who tried to mine your justice transaction (4) and stop their mining pool members from leaving the pool due to the clear censorship happening.\n\nI just don't think this attack is serious. There is no evidence of that scale of collusion, and I don't even think it's *possible* without some sort of collusion *tool,* evidence of whose existence is lacking, unless I'm in the dark about it.\n\n# Conclusion\n\nBoth of the attacks John identifies are not serious in my opinion. They do not support the thesis (which I probably misunderstood, and which he probably does not claim to make) that all lightning users actually trust a third party not to steal their money, which, if it was true (I don't think it is), would imply that the lightning network is actually a giant custodial system. I hope this essay helps clarify why I think John is wrong (or rather, why I probably misunderstood him -- again, I don't think he really believes the thing I am arguing against). \N 19576 \N 92863 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.11305938991961 0 \N \N f 0 \N 0 89480634 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437457 2025-03-14 14:34:02.136 2025-03-29 22:39:46.784 Announcing Super Testnet Workshops I am starting a series of monthly workshops (first one on June 25) where you can learn bitcoin programming. We start this month with a workshop on Bitcoin Script. Buy a ticket for only $20 or purchase a prerecorded version for only $5. Check it out and let me know what you think!\n\nhttps://www.youtube.com/watch?v=aRi9_4bgkek \N 11091 \N 437457 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 5.49608883628615 0 \N \N f 0 \N 0 52096415 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407454 2025-02-18 02:48:21.959 2025-03-29 22:39:46.784 Introducing Stacker News and V4V to my Bitcoiner colleague at Cointelegraph Hi all,\n\nOne of my colleagues at Cointelegraph, Gareth Jenkinson is a fantastic journo, a smart cookie and a Bitcoiner. \n\nHe actually has stellar journalism and broadcast experience, having worked at South African radio shows. This is sadly a rarity in the 'crypto' space. \n\nhttps://pbs.twimg.com/profile_images/1488085887737020423/iSVboGp6_400x400.jpg\n\nHe writes about all sorts, but increasingly Bitcoin. I'm trying to show him V4V, and sharing that while Cointelegraph is a good platform for this content.... Stacker News and Nostr might be better places to read and share his work, with people who really care about Bitcoin.\n\nPlease Zap it. Anything you receive, I will zap his way. In my opinion, this is the best way to Stacker-Pill someone.\n\nPlease share what you think and why he should share on Stacker News. \n\n\nHere's his latest.\n\nHEADLINE: Bitcoin Amsterdam highlights hurdles for consensus over improvement proposals\n\nSTRAPLINE: The ongoing development of the Bitcoin protocol has long been a point of contention for the ecosystem, as was evident in historical events like the block size debate in 2017.\n\nhttps://pbs.twimg.com/card_img/1714919315428839425/6UJ954sA?format=jpg&name=medium\n\n\nBITCOIN core developers have long been at odds over improvement proposals (BIPs) to address pain-points of the protocol, as was evident in a heated panel during Bitcoin Amsterdam.\n\nLong-time Bitcoin developers Paul Sztorc and Peter Todd brought this to the fore in Amsterdam, with the latter coming across as highly critical of Sztorc’s work in the ongoing development of Drivechains.\n\nSztorc’s LayerTwo Labs has been working on BIP-300 for nearly six years, which advocates for the creation of layer two sidechains that have the potential to address a number of problems without requiring base layer changes to the Bitcoin protocol.\n\n\nThe ensuing debate, which was at times heated with Todd talking over Sztorc, highlighted the difficulty in reaching a consensus over BIPs that could potentially improve the overall functionality of the Bitcoin protocol.\n\nJameson Lopp, co-founder and CTO of Bitcoin custody firm Casa, weighed in on the issue during an in-depth interview with Cointelegraph at the conference, saying that the velocity of improvements and protocol changes has slowed down more than he would have liked.\n\nThat has changed somewhat in recent weeks with the emergence of new projects like BitVM and SpiderChain as Lopp explains, which leads him to believe that a couple of proposed soft forks may well be beneficial to the future of the protocol:\n\n\n“In general, I think that Bitcoin should implement functionality that will improve its ability to be what you could call a cryptographic accumulator. Bitcoin should enable functionality that will boost the ability of second layers.”\n\nLopp adds that any potential “hardcore ossification” that some maximalists have argued for in the past would have stifled innovation that led to the creation of solutions like the Lightning Network that has helped the Bitcoin network scale to better process transactions.\n\n“Lightning wouldn't really be possible without OP_CLTV. It would have maybe been possible, but really clunky without SegWit. And without OP_CSV, it would not be possible to have indefinitely long-lived Lightning channels.”\n\nLopp was making reference to CHECKSEQUENCEVERIFY (OP_CSV) and CHECKLOCKTIMEVERIFY (OP_CLTV), two BIPs that were carried out to facilitate payment channels as soft forks. OP_CLTV was authored by Todd, describing a Bitcoin operation code that allows a transaction output to be made unspendable until some point in the future.\n\nLopp adds that while Bitcoin’s protocol may become static due to a lack of consensus over base layer improvement proposals, developers are likely to keep building in ways that don’t require permissions:\n\n“If it's not possible to implement a solution that may be optimally implemented at the base layer at the base protocol, then generally what we see end up happening is solutions being kind of bolted-on in many cases.”\n\n\nThe Casa CTO believes that if Bitcoin does not continue to scale, users will inevitably turn to storing and using BTC through a “handful of Bitcoin banks, aka custodians and exchanges”, which comes with significant trade-offs:\n\n“Then it's IOUs, right? That's not the future that I think any of us want to see.”\nAs Cointelegraph previously reported, Bitcoin proponents and analysts at Bitcoin Amsterdam 2023 highlighted the growing importance of the cryptocurrency's value proposal and hard money characteristics amid a drawn-out bear market. \n\nFIN\n\n\n\n\n\n \N 5694 \N 407454 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.5620606764803 0 \N \N f 0 \N 0 24791379 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 6886 2023-01-17 12:56:12.246 2025-03-29 22:39:46.785 So...How are We Activating Eltoo (LNSymmetry)? About a week ago, Darthcoin made a post using the nostr protocol about how while channel opening fees are manageable in the lightning network, unexpected channel closing fees in high fee environments are unacceptable and unmanageable. \n\nYou can see that post here: https://primal.net/e/note10rprgyaltjyumf42079x2pq7zv0g9jlxdjrzuhetm689t08jvzlsssfgn5\n\nSo how do you remedy this issue? One solution presented to get all the different implementations for LN to agree on rules that are more forgiving about downtime and stuck payments and don't go straight to force closures so quickly.\n\nAnother method is LNSymmetry (formerly known as eltoo). It does away with the justice transaction and allows for any later state to replace any older state. So if you close a channel with a low fee, you don't have to sweet bullets over your peer trying to submit an older state to cheat funds out of you with a higher fee, because you can just replace their older state with the newer one.\n\nAPO is one of those BIPs that everyone seems to like...but no movement at all seems to be made to activate it. I posted information about APO on reddit once and 1 commenter (the only commenter) asked why it wasn't activated yet. You should know, that APO discussion became complicated because people figured out you can do covenants with it.\n\n"(APO) can also be used to emulate a CTV-like covenant and all its use-cases, but this emulation is both more fragile (as you need to store signatures and pre-signed transactions) and less efficient, so it is not an ideal solution to bring about these use-cases." -https://covenants.info/proposals/apo/\n\nMore APO information: https://anyprevout.xyz/\n\nAnother method for activating LNSymmetry (and covenants) is CTV + CSFS (CTV can not do covenants by itself). Of the 2 activation clients written for CTV (I again remind you that no activation client has been written for APO), only 1 contains CSFS. Its actually 3 BIPs. The third BIP is very simple tho. It just makes referencing taproot keys from the stack possible so that you don't have to write out the whole key over and over again, thereby saving space.\n\nhttps://cdn.discordapp.com/attachments/796935699034144798/1196271271764304005/jpegdim500x544blurhashNJa_19uVxVksngt7Imgs9DXAs.jpg?ex=65b70570&is=65a49070&hm=ee56c51b667b81d5897cb0208b2a98159875d9b257d8dea31bae94625c87a5d9&\n\nUnlike CTV + CSFS, I have seen an LN client written for APO that implements LNSymmetry. You can test it out here: https://github.com/instagibbs/lightning/tree/eltoo_support\n\nSo APO has no activation client to rally around, but a test application people can try. Meanwhile, while CTV advocates a very good about posting code blocks, I personally run into trouble finding the test apps they've made.\n\nAn Eltoo codeblock written by moonsettler for LNHance: https://delvingbitcoin.org/t/lnhance-bips-and-implementation/376/8\n\nCTV advocates did write a test app for vaults, but quite frankly, people don't care enough about vaults to get anyone up in the morning to talk about activation among peers. Nontheless, I do like the LNHance BIPs. I could go on and on about timeout trees and flow control and all the rest, but I'm here looking for consensus among my node running peers, not to preach about a BIP being better than the other.\n\nI've seen "Lets do APO" I've seen "Lets do CTV then APO" and I've seen "Lets do CTV + CSFS" and of course I've seen "What about more general covenant BIPs" honey we're trying to get consensus over here nobody is even discussing TXHash right now in any context other than to interject with "but what about it"\n\nWe really are in a spot where Eltoo/LNSymmetry discussion is also a covenants discussion. I will fall in line with what ultimately gets decided for with which BIP we want to use to get this thing, I'm only here to ask you how we're going to do it. \N 9365 \N 6886 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.19941510934224 0 \N \N f 0 \N 0 222188646 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 111818 2024-01-13 08:20:38.363 2025-03-29 22:39:46.785 SN release: autowithdraw, territory post notifications, rename territories, more Howdy!\n\n1. in our first step toward a half-custodial wallet, you can configure autowithdrawals to a lightning address\n - visit your wallet, then click `attach wallets` and the rest should be straightforward\n - @ekzyis is working on support for sending as we speak\n - *lots* more planned here\n2. territory founders get notified when there are new posts in their territory (via @ekzyis)\n - you can turn this off in your settings\n3. territories can be renamed\n - one down, [many to go](https://stacker.news/items/376810) on the territory roadmap\n4. external interactions with SN's wallet: funding, withdrawing, JIT funding, etc are more realtime now (via @ekzyis)\n5. territory details are viewable when posting. Just hit the info icon next to the dropdown. (via @ekzyis) \N 623 \N 111818 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.71158542157177 0 \N \N f 0 \N 0 222250779 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 203897 2024-07-22 10:19:26.713 2025-03-29 22:39:46.786 A bitcoin experiment I'd like to perform a social experiment. It's simple: as soon as 24 hours passes without a new comment on this post, I will give the final comment 100% of the zaps this post receives (minimum 1k sats)\n\nWill you remember to comment? Remember, the first comment gets nothing. The last comment wins. \N 21401 \N 203897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.60424434567995 0 \N \N f 0 \N 0 114254318 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410435 2025-02-20 13:32:27.446 2025-03-29 22:39:49.739 \N I would really like to see a NIP where each follow is just another event. The contact lists seem kind of orthogonal to the rest of the protocol and are one of my least favorite aspects of its design. https://example.com/ 7960 410311 410311.410435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.15356135647358 0 \N \N f 444870893 \N 2 190379457 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400844 2025-02-12 14:46:46.209 2025-03-29 22:39:49.739 \N Would love to hear everyone's thoughts. \n\nAlso: if you want to help fix this shit—with code, open protocols, and new business models—let me know. https://example.com/ 21518 400758 400758.400844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.12765650137 0 \N \N f 83472461 \N 1 95204325 0 f f \N \N \N \N 400758 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435605 2025-03-12 20:09:14.597 2025-03-29 22:39:49.74 \N This isn't discussed much that I've ever seen.\n\nThe devs are not normally considered a risk because people in the btc community over-index on the technical structures in the ecosystem, and under-index on the social structures. What gets merged in the code is the result of human judgment, and judgment is a social product. The opinions we all have are the result of social processes. \n\nThe mantra of DYOR ignores the fact that the R comes from someplace -- it comes from the [ideas that are laying around](https://www.goodreads.com/quotes/110844-only-a-crisis---actual-or-perceived---produces-real). So which ideas are lying around? In many cases they come from idea intermediaries, since people are famously reluctant to think for themselves.\n\nI think this means that, while exerting significant influence over core development is a kind of quasi-centralization risk, the nature of the 'risk' is worth thinking about. Specifically, it's hard to decouple 'risk' from 'influence' and as social primates, we will never be free from influence.\n https://example.com/ 21405 435487 435328.435487.435605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9981174958513 0 \N \N f 161340338 \N 4 148068043 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 2025-03-19 13:33:16.238 f \N \N \N 0 0 0 0 1 0 0 321001 2024-12-06 19:22:25.171 2025-03-29 22:39:49.748 \N Hey there, Graham from Voltage (the LSP Mutiny uses). I'll let the Mutiny team comment on the actual issues, LDK, sweeps, etc because we don't directly work on that. I just wanted to comment that any time this happens we work with Mutiny to send all funds back to users. So I understand the concern and annoyance, but you always get your money back. I know there's a lot of work ongoing to prevent this and make it better so it's one of those subpar solutions until we get the right solutions in place. https://example.com/ 1490 320825 320825.321001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4327626013112 0 \N \N f 342064421 \N 2 66108186 0 f f \N \N \N \N 320825 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422950 2025-03-02 19:51:48.364 2025-03-29 22:39:46.783 The Past, Present, and Future of Offline Payments Full format post here: https://medium.com/breez-technology/the-past-present-and-future-of-offline-payments-1ddb46054e11\n\nNobody is more critical of Lightning than its most passionate proponents. [Guys like me](https://medium.com/breez-technology/lightning-at-the-end-of-the-tunnel-overcoming-bitcoins-ux-challenges-5738171c759e). Guys like Ben Carman. [In a recent Stacker News post](https://stacker.news/items/379225), he highlights liquidity and offline payments as aspects of Lightning that impede the UX and deter self-custody. This might seem like just another complaint about how the future isn’t living up to its promise. We were promised flying cars, and all we got was the miracle of the internet. [Everything is amazing and nobody is happy](https://youtu.be/PdFB7q89_3U?t=18).\n\nOn closer inspection, though, Ben’s got a point. I’ve been talking about the Lightning UX for years, including the challenge of offline payments. We even proposed a solution to the offline payment problem [back in 2019](https://medium.com/breez-technology/introducing-lightning-rod-2e0a40d3e44a) (I’ll explain below why we never implemented it).\n\nIt might feel as if the promised future is perpetually out of reach, but building Lightning is a lot like climbing a mountain. Climbers never really see the summit until they’re standing on top of it. They often can’t even see over the next ridge. Planning the ascent is important, but most of the time you’re simply concentrating on the next foothold. But the steps add up. Just like the view from the top is the reward for all that effort, a brighter monetary future will be our reward for building the network bit by bit. That’s how Lightning has progressed from an idea to a functioning bitcoin payment network, and it’s how we’ll reach our destination.\n\n![0_-_J_jFzhqlXIwq4L.png](https://m.stacker.news/13638)\n\nAnd like mountain climbing, none of us will get there alone. (Image: Sylvain Mauroux)\nSince offline payments are a longstanding UX challenge, let me review where this problem comes from, what tech is currently available to deal with it, and what’s on the horizon. (I’ll review Ben’s other beef — channel liquidity — in a coming post.)\n\n## The Problem\n\nPeople who’ve only ever experienced fiat, on-chain bitcoin, or custodial wallets might not even be aware that “offline payments” are a thing. Fiat and custodial wallets solve the problem by taking control of users’ money. The bank/custodian receives funds/IOUs from other users’ banks/custodians and sends the funds/IOUs when users ask them to. If the user never actually has custody of the funds, it doesn’t matter whether they’re online or not. Only those who actually control the money need to be online. With on-chain bitcoin, a sender needs only the recipient’s address.\n\nSelf-custodial Lightning is more challenging because both parties to a transaction need to be online simultaneously. The recipient needs to send an invoice to the sender, the sender needs to initiate the payment, and the recipient has to sign it. This arrangement restores users’ control over their own money, but it can also be a pain in the UX.\n\n## The Past: Trials and Errors\n\nThere were 11 recorded attempts to climb Everest before Norgay and Hillary finally succeeded. Breez’s first attempt to crack offline payments was called “Connect to Pay,” which prompted the sender to notify the recipient when a payment was about to go through so the recipient would open their Lightning app. The underlying UX idea was analogous to a phone call: just get both parties occupied with the same thing simultaneously. But the ability to receive payments without conscious effort is simply too ingrained. It’s the UX we all expect, and nothing less will do. ([People don’t even like phone calls](https://leadferno.com/blog/survey-texting-is-the-preferred-way-to-communicate). They [sing songs](https://www.youtube.com/watch?v=aL8TdgkNUDA) about it.)\n\nOur next idea, which we called [Lightning Rod](https://medium.com/breez-technology/introducing-lightning-rod-2e0a40d3e44a), was more sophisticated. The idea was to use HODL invoices to let a routing node between the sender and the recipient intercept the payment until the receiver became available. Therefore, it was a lot like Zeus’s Zaplocker idea.\n\nAlthough Lightning Rod works, we never put it into production because HODL invoices don’t scale for routing nodes. They tie up funds. When a routing node holds a transaction, it’s basically extending an interest-free loan to the recipient. Liquidity must flow. Solving the problem of async payments by freezing them en route just aggravates the liquidity problem.\n\nWe were on the right mountain, but taking the wrong lines up.\n\n## The Present: Existing Means to Support Offline Payments\nThe good news is that technologies have evolved to deal with offline payments. No existing approach is a perfect solution in that they all have trade offs, but each is useful in different ways.\n\n### LNURL-Withdraw\n\nThe first is LNURL-Withdraw. Recipients can scan a QR code or enter a URL that instructs their app to request funds from a sender. For example, a user who wants to withdraw funds from an exchange can “pull” their funds at their convenience instead of the exchange pushing while they are offline.\n\nThere are two major drawbacks with this approach. First, it requires the sender to have a node running on a server that’s perpetually online, so it’s inappropriate for non-custodial mobile or web clients. Second, the “pull” model only applies to very specific use cases when users know they have funds to redeem. For example, it would be hard to spontaneously tip someone.\n\n### The Breez SDK Approach: Leverage Mobile Notifications\n\nMobile notifications are another means to support offline payments. Triggering a mobile notification in iOS or Android can even give the client app enough time on the CPU to receive the payment. Using mobile notifications to process incoming payments doesn’t require active involvement from the recipient and provides a natural, non-intrusive solution to the simultaneity problem. That’s why we’ve included [a new feature in the Breez SDK to facilitate offline payments](https://sdk-doc.breez.technology/guide/payment_notification.html) using push notifications. It’s a major UX improvement for SDK users requiring just a little work from developers.\n\nThe Breez SDK approach works like this: first, the devs create a webhook that an LSP can call when a payment is en route. As soon as the payment hits the LSP as the last hop before the recipient, the LSP calls a Notification Delivery Service (NDS) via webhook, and the NDS sends a push notification to the user’s phone with instructions. It requires a little legwork on the developers’ part in the form of setting up an NDS, but the result is a much better UX because users don’t need to keep the app in the foreground to receive payments. It also enables mobile users to receive payments using a static address (e.g. Lightning address, LNURL-Pay or BOLT12).\n\n![0_8q-eFa1pRlyIf0n_.png](https://m.stacker.news/13639)\n\nMobile notifications are an improvement, but not a cure-all. They only work on mobile devices, obviously, and this approach won’t work if the device is off or the user has disabled the notifications required. Moreover, Google or Apple could negate its effectiveness by changing how their operating systems handle notifications. That’s why we need a solution built into the Lightning protocol.\n\n## The Future: Building Async Payments into Lightning\n\n[The idea behind the next phase of offline payments](https://lists.linuxfoundation.org/pipermail/lightning-dev/2021-October/003307.html) is simple: make payments asynchronous. Since the simultaneity problem affects self-custodied mobile and web users most acutely, and practically all such users connect to Lightning through LSPs, why not leverage their always-online LSPs to synchronize the payment when the sender or receiver are offline?\n\nLSPs can decompose the payment flow in time by intercepting HTLCs, which eliminates the simultaneity problem or, rather, shifts it to the level of LSPs, for whom it is no problem. It all starts with a message embedded in the invoice indicating that the recipient is offline but connected to an LSP. The sender sends the payment with a message to their own LSP to hold it with a long expiry time pending further instructions. The sender then messages the recipient’s LSP asking it to alert their own LSP (who is still holding the payment) when the recipient is back online. At this point, it’s basically up to the LSPs. When the recipient comes back online, their LSP signals the sender’s LSP to forward the payment.\n\nThis model doesn’t compromise the overall liquidity of the network because the only node where the funds can be frozen is the sender’s own LSP, which is what the user actually wants.\n\nAs simple as it sounds, this approach requires more tech to work optimally: static invoices, onion messages, blinded routes, trampoline payments and eventually PTLC. It’s complicated, but those who want to dig deeper can watch [my Honeybadger 2023 session](https://www.youtube.com/watch?v=ZsPqVqX5VJc&t=14164s). While some Lightning implementations already support some of these features, it will take some time before the entire network adopts them, which is crucial for interoperability.\n\n![0_NUUe963oxN6jUbM4.png](https://m.stacker.news/13640)\n\n## When Will the Future Arrive?\n\nOf course the sun will rise tomorrow, but it’s already shining today. My point is that we already have different, functional ways of handling offline payments on Lightning without relinquishing custody, each suited to a different use case. LNURL-Withdraw already works for some commercial contexts, and the new Breez SDK feature enables offline payments for mobile devices.\n\nThat’s cool! We didn’t always have that, but now we do. We’re already living in yesterday’s future.\n\nA protocol-based solution remains a work in progress. Many implementations like Eclair, LDK, lndk and Core Lightning (yes, I’m looking at you lnd) are making progress on the features required to make it happen. When implemented, async payments will represent a huge UX improvement. It’s a future worth pursuing.\n\nWhen we get there, I’m sure there will be other challenges on the horizon demanding our attention and testing our patience, but let’s never forget how high we’ve climbed already. \N 15139 \N 422950 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.2496946918379 0 \N \N f 0 \N 0 243983259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 230913 2024-09-08 14:27:38.871 2025-03-29 22:39:46.784 The Art of Using Stacker News II ⚡️ I wrote about [The Art of Using Stacker News](https://stacker.news/items/252695) before, but the past few months have been lots of changes and improvements, much appreciated for all the great work from @k00b @ekzyis @kr and [more](https://github.com/stackernews/stacker.news/graphs/contributors). \n\nI was lucky enough to stump upon SN around 2022 and have been witnessing how far it has come and is still growing. And I think the main reason why I'm so addicted to SN is that not only can I interact with smart and humble plebs who actually take the time to read and give feedback, but also being appreciated and rewarded with sats, something that the fiat world failed to deliver!\n\nAnd here is a piece of updates and some tips and tricks that I've learned and things should pay attention to.\n\n\n\n_____\n\n\n\n### **⚡️ Some Main Changes Since Last Post**\n\n#### **1. Sharing Photos** \n\nNo longer need to use extra tools like in the past, you can directly upload within SN now. **But one thing to keep in mind is to always remove metadata on the photo you share.** Ideally, delay sharing - once you left the places, then you are okay to share. And never don't disclose where or which city you live in because Google Lens is quite powerful these days.\n\n***How to upload***\n\nSimply click this small icon, but if it exceeds the free upload limit of 10MB, then you will need to pay some extra sats for it. \n\n![upload.png](https://m.stacker.news/12044)\n\n\nAnd SN's photo sharing still doesn't come with a nice layout yet, in order to make it cost-effective and makes it more organized and beautiful, **one hack I've found is to upload the photos somewhere first, like I would upload them to my blog, then I take a screenshot from there and upload that instead**, a sample post [here](https://stacker.news/items/376570): I uploaded 3 main photos instead of 17! And not to mention the images add beauty to my post instead of messing everything up.\n\n\n#### **2. Sending LN Message as DM**\n\nThis is one of my favorite hidden features: you can send messages to anyone once you have their LN address - no more asking others for ways to contact, and no permission is needed!\n\n***How to send DM in SN***\n\na. go to wallet \n\nb. withdraw \n\nc. choose the lightning address and input the receiver's LN address \n\nd. input the sat amount, which can be as little as 1 sat \n\ne. write some thoughtful comments\n\nSend and done. (*You can send messages to SN users from other LN wallets too*.)\n\n\n![DM.png](https://m.stacker.news/12045)\n\n#### **3. Starting your Own Territory** \n\nTerritory launched around December 2022, and yes, anyone can start their own territory, but one thing to keep in mind is that making one is easy, but keeping it running and fun is HRAD - it takes real work.\n\n**Cost:** monthly is 100k sats, yearly 1M sats or one-time 3M sats.\n\nBetter do the math to see if it's worth it, but one thing for sure is that you don't need to own any territory to create good content, you can just write them. I guess the better strategy is to keep focusing on writing good content first, at least having some POW in SN, then it's easier to build something after you have earned some trust and attention.\n\n***How to create***\n\nGo to the dropdown menu and scroll to the end, click create, input details, and choose payment, and you are good to go.\n\n![territories.png](https://m.stacker.news/12046)\n\n**And fun fact: @saloon is the best territory out there, no CEOs, no mods, the real Wild West.**\n\n#### **4. Autowithdrawals**\n\nThis is a brand new feature: \n\n> As SN toward a half-custodial wallet, you can configure autowithdrawals to a lightning address.\n\n\n\n![Autowithdrawals.png](https://m.stacker.news/12056)***How to attach it***\n\nGo to wallet - attach wallets - input your LN address.\n\n\n\nBut of course you can still do it manually because using an LN invoice is more private than using an LN address.\n\n\n\n#### **5. Crossposting to Nostr**\n\nCrossposting is quite handy for creators, but do remember that you **CAN'T DELETE** anything in Nostr. Personally, I don't use this crossposting; I rather send a link in Nostr and from links that I can control, not only can I edit my content anytime I want, but I keep the freedom to trash the links if I feel like it.\n\nBut for those who would like to use it, go to setting - enable crosspost to Nostr, and done.\n\n\n\n***NIP 5 Verification Supported***\n\nYou can use your SN LN address as NIP-5 verification in Nostr too.\n\n***How to verify NIP-05***\n\nSimply go to setting - Nostr - NIP-5 - put your Nostr public key into the pubkey section, then go back to Nostr and put your SN LN address into the NIP-5 area, done.\n\n\n![nostr.png](https://m.stacker.news/12050)\n\n#### **Other Fun**\n\nhttps://imgprxy.stacker.news/aJy-U7Z57hjTNDccMMHn0g6a6M47KIoB9uCRyMjj8Eg/rs:fit:1920:1080/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy80MjEy\n\n- **MeMe Monday** is where stackers share their best memes to win 25k sats.\n- **Tech Tuesday** is where stackers share their favorite tech tools or projects.\n- **Wednesday** is when stackers share what they are **working** on this week.\n- ~~**Thursday** is where stackers dig back into what happened in history during this day~~ or TBC.\n- **Fun Fact Friday** is where the best Fun Fact gets 10k sats.\n- **Stacker News Live** is where @k00b and @car go over the top 5 posts and interesting ones each Friday (4 pm Texas time, zap steam [here](https://zap.stream/p/npub1hedhcq93v5c226w8gfece5lxkf6zldvrgygw9ppmyq3msggvl6rst8kmxw) ) \n- **Weekend Book recommendation** is where stackers share the books they are reading lately, with many good gems.\n\n**The last but BEST one is @saloon, it opens every day, 24 /7/ 365, and with much fun.**\n\n_____\n\n### **👁️ Things Pay Attention to**\n\nThe internet is an amazing place to share and connect, but you also need to take some precautions to protect yourself. **And one of the most important things I learned about privacy is not about hiding everything, it's about choosing what to share in public.**\n\n##### **Some Good Practices**\n\n- Never use your real name, better use a nym.\n- Never share too much personal information.\n- Ideally, never share your specific location.\n- On data leaking / tracking\n\nSN uses [plausible](https://plausible.io/stacker.news) to track data, and there's quite a lot of information there. If you spend some time looking at the data, you can pretty much tell which user is in which location or at least which VPN location they are using, and then you would see what browser they use or on a laptop or phone, what articles they have read or which pages spent the most time in. But hey, this is all the info that you are leaking, relax! ( happy to know if there is anything that I missed. )\n\n\n\n***Solution***\n\nYou should always use a VPN and change your IP address from time to time , the USA or the UK are good options since more stackers are from these two places, or you can simply use Tor; However, using Tor is so slow, **a better solution I've found is using one account to post and reply, and using an anon account or log out to read and search.**\n\nAnd whenever you feel like sharing your SN account-related photos, it's better to hide or edit the wallet balance or even cover the user name, and avoid leaking specific browsers and time.\n\n- Self-destructing items\n\n I learned an interesting way of living in SN: delete everything and live in the present with no history, which is quite freeing. Or for whatever reason you would like to minimize your traces, you can either do it manually or make the most with the delete bot, just @ delete in 24 hours or 1 minute, or any time frame you'd like.\n\nActually, this is one of the reasons why I'm more active in SN over Nostr because I have the freedom to DELETE: a) certain things, after they served their purpose are good to go. b) willing to let go or destroy could lead to better creation.\n\n\n\n- Sharing as anon\n\nAnyone can share as anon, but the posting fee would be slightly more, and it varies from territory to territory.\n\n![post as anon.png](https://m.stacker.news/12071)\n\n\n\n- Hiding everything and joining underground\n\nThis is one of the details where you can see how thoughtful team @sn is, for those who would like to maintain a low profile, simply go to setting - privacy - choose these\n\n☑️ hide me from the top stacker\n\n☑️ hide my cowboy hat\n\n**Once they are enabled, no one can even tell if you are being active or not.**\n\nAfter setting the healthy ground, then we can focus on giving and receiving value while having fun SNing.\n\n______\n\n\n\n### **🛠️ How to Navigate the Noise?**\n\nOne interesting thing I've noticed is that as SN grows, it doesn't necessarily mean having more quality content but more noise, sadly, or maybe it takes time to filter things out, but here are some of the tricks I've found to minimize the noise: \n\n#### **1. Muting low-quality Accounts and Territories**\n\nYou are free to mute all the bots or low-quality accounts that you don't want to read from and even mute territories.\n\n***How to Mute Accounts***\n\nGo to anyone's bio, click the ... icon, then choose mute.\n\n***How to Mute Territories***\n\nGo to any territories page, and click mute.\n\nOne tip for avoiding FOMO of any territory is just to subscribe to the founder to see their POW first, because the founder usually does most of the work especially in the beginning to inspire others, if the founder doesn't do much, you can expect what the territory will be like. \n\n**Downzaping**\n\nIf you don't like certain things, you can down-zap them, and then these content would end up being in the outlawed area.\n\n> If an item gets flagged by stackers with enough combined trust, it is outlawed and hidden from view for stackers on Tenderfoot mode. If you wish to see this flagged content without any modifications, you can enable Wild West mode in your settings.\n\n***How to Downzap***\n\nClick ... icon in any posts or comments and choose down zap, the zaps will go to the reward pool.\n\nOne more hack: if you also enjoy in the wild and often check recent posts, you can mute many things in one go if you see someone post something you dislike; click the ... icon in the post: downzap + mute the stacker + mute the territory.\n\n#### **2. Subscribing to Interesting Stackers**\n\nYou can choose to subscribe to posts or comments from any stackers, I only subscribe to posts, because subscribing to comments can be overwhelming, it's better to go to their pages to read from time to time.\n\n***How to Subscribe***\n\nGo to any stacker's page that you find interesting, click the ... icon, and subscribe to their posts or comments.\n\nOr if you see some good posts and you would like to follow any updates, click the ... icon and subscribe, I normally bookmark the really good post and subscribe at the same time.\n\n#### **3. Going to Top Posts/Comments/Stackers**\n\nIf you don't have much time to hang around SN and don't want to miss all the good stuff, you can simply go to these three links daily to read all the best stuff from previous days.\n\n https://stacker.news/top/posts/day \n\nhttps://stacker.news/top/comments/day \n\n https://stacker.news/top/stackers/day\n\nOr wait for the weekly Saturday newsletter from @k00b if you really don't have much time, the subscribe link is [here](https://mail.stacker.news/subscription/form), or you can enable it from your setting.\n\n#### **4. Making the Best of Searching**\n\nYou don't need to keep waiting for the next hot posts to learn something new, there are actually many old posts with great knowledge to dig! \n\n***How to search***\n\nSimply hit the search on top, I usually search for keywords, or if I want to search for things from someone or myself, then I would add **nym: stacker's nym**.\n\nSearch results can be filtered by the following: most recent /most comments / most sats.\n\n![search.png](https://m.stacker.news/12049)\n\nOne more hack is you can use any eternal search engine to search things inside SN, just use : xxx site:stacker.news\n\n\n\n***Sums up of my Strategy***\n\nBasically I focus on what I am interested in, minimize the noise or things that I don't even care about with **muting**, and pay extra attention to interesting brains and content by **subscribing** and **bookmarking**, making space for what matters instead of chasing the current thing.\n\n\n\n_____\n\n### **🤔 FAQs**\n\n#### **Why Zapping Others?**\n\nSats are so precious, so why zap others? Isn't it better to hodl?\n\n**1. To earn trust**\n\n> Every stacker has a `global` trust score. Rewards use these `global` trust scores which factor in the PoV of everyone.\n\n> Ranking of posts/comments use `local` trust scores when they're available, ie you're logged in and have a significant affinity for another stacker's zap taste as indicated by your zapping.\n\nBasically, `local` trust affects what we see in SN with gently personalized feeds, and if you log out, you might see different ranked content, and that is with `global` trust score which influencing the Zap rewards.\n\n**Tips: the high-trusted stackers process more power in voting, thus making the content they like more visible.**\n\n\n\n**2. To earn rewards**\n\nAs we all know, there is a daily reward from the SN pool, so during the zappers reward day, it rewards stackers who zapped one or more of the top 33% of posts and comments from the previous day.\n\n- zappers of top posts get 1/4 rewards\n- zappers of top comments get 1/4 rewards\n\n\n\n**3. To build relationships**\n\nIf you zap others, others would zap you too; it's almost like sharing food, you pay one time, and friends pay the next round, so each got to enjoy more food:) Sharing is caring!\n\n\n\n**4. To vote for good content and show appreciation for creators.**\n\nNot gonna lie, it takes TIME to write good and original content! and the fact of just zapping few sats and getting to read a great piece of content instead of needing to deal with all the paywalls and subscriptions like in the fiat world is like a steal, but creators definitely need some support!\n\n\n\n*Zapping others has mutual benefits! and generally, the more you zap, the more you stack.*\n\n\n\n#### **How to Stack More?** \n\n**The simple formula is create + zap = stack**:\n\n- **As a stacker**\n\nstacks = 90% * sats from posts and comments that you created + daily rewards \n\n\n\n- **As a stacker and territory founder**\n\nstacks = 90% * sats from posts and comments that you created + daily rewards + 50% * 10% of your own territory revenue.\n\n\n\nBacailly keeps creating quality content and zapping the good ones, but If you have time and would like to LEVEL UP the fun, you should learn how the ranking and reward system works too. \n\n\n\n--------\n\n\n\n### **🤓 Bonus - The Art of Stacking** \n\nI hope you found this post useful, and if you would love to learn more, I've also put together `The Art of Stacking - who says you can only stack sats in SN?`\n\n**I share this guide not for you to game SN but to help you understand how it works and how you would get `rewarded` by doing the WORK, and the least discussed part - learn to stack the unseen.**\n\nFeel free to come by ~Agora to stack [it](https://stacker.news/items/392558)!\n\n\n\n![Table of content.jpg](https://m.stacker.news/12887)\n\n\n\nPart of me is curious to find out how it feels to sell things in SN, so I need to create a learning opportunity, and nothing helps me to learn better than actually doing it. 👀 **I would definitely share what I've learned and what tools I used after this experiment, and much appreciate your support:)**\n\n \N 8448 \N 230913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.3563252151535 0 \N \N f 0 \N 0 202499611 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 29690 2023-06-07 07:43:19.47 2025-03-29 22:39:46.784 Satsraiser - Running Bitcoin - 10th Jan 2024 🏃‍♂️ \n# **Running Bitcoin Challenge 2024**\n\n![Running bitcoin fundraiser](https://image.nostr.build/8552cfd84a5c541c3f453792b1f1111d89912e249be5cdf77710896430c6b554.png)\n\nWe all stack sats. And occasionally steps too. Today I wanted to draw the Stacker's attention to the fact that we're fundraising in support of Fran Finney and the incredible work both she and her husband Hal Finney have done for ALS research & Bitcoin. All sats from this SN post will be donated to the **[Stacker News team page](http://secure.alsagoldenwest.org/goto/stacker-news)** of the Running Bitcoin event.\n\n**Note**: Please also check-out & zap this SN post from @gnilma who has already got their 21km done:\n> **[Running Bitcoin - ALS Golden West Running Bitcoin Challenge](https://stacker.news/items/380662)**\n\n------------\n\n# **Run with us 10th January! 👟**\nFor those that want to get their 'chicken legs' out, **JOIN US** for a `half marathon run` (21km or 13.1m). Just sign-up via our **[team page](http://secure.alsagoldenwest.org/goto/stacker-news)** It need not be done all in one go, but we're supposed to be clocking up the miles this week to make sure we hit 21km or 13.1miles total by 23:59 on January 10th. Would be great to see more of you Stackers get involved!\n\n------------\n\n# **All Zaps will go to ALS charity ⚡**\nAny proceeds from this post, will be paid via BTCPayServer by 6pm EST on `Wednesday 10th January` to the Running Bitcoin account. A comment will be added to this post with proof of payment(s) via BTCPayServer. It may be better however if you can **[donate directly](http://secure.alsagoldenwest.org/goto/stacker-news)** on the ALS website page. There are a few more steps involved (inc. personal data) so either way is fine. I wanted to make this as accessible and uncomplicated as possible. See the steps below if you'd like to contribute personally.\n\n\n----\n\n# **Hal Finney 💎**\nIn 2 days time, we'll all be celebrating Hal Finney's [famous tweet](https://twitter.com/halfin/status/1110302988) (whilst I nurse my cramped-up calves). Yes this could have been posted on the day, but hopefully we can get more keen runners like Hal involved!\n\n| ![Hal Finney running](https://pbs.twimg.com/media/FmR3tZqXwAE2UV9?format=jpg&name=large) ![](https://cryptoast.fr/wp-content/uploads/2020/05/Hal-fauteuil-roulant-768x1024.jpeg) | ![](https://miro.medium.com/max/1200/1*uWPoKG9JZNv0BRdnsit94Q.jpeg) ![](https://assets.website-files.com/5e5fcd39a7ed2643c8f70a6a/5fbbb7c0f2637fea15a89447_image_2020-11-23_142313.png) |\n| ---- | ---- |\n\nHal has been discussed a few times here on SN for those that are interested. I'm sure later this week there'll be a few more posts to pop-up like these:\n- [This is how Hal Finney saw Bitcoin's "ultimate fate." How do you see it?](https://stacker.news/items/303469/r/davidw)by @siggy47\n- [Hal Finney died 9 years ago today. RIP](https://stacker.news/items/237282/r/davidw)by @quark\n- [Hal Finney Was Not Satoshi Nakamoto](https://stacker.news/items/290200/r/davidw) by @@k00b\n- [Hal Finney walked around with Ayn Rand’s Atlas Shrugged](https://stacker.news/items/225266/r/davidw) by @Bitman\n- [Someone signed a message with one of Hal Finney's private keys](https://stacker.news/items/106688/r/davidw) by @k00b\n- [Wanna play a 1982 game designed by Hal Finney?](https://stacker.news/items/192644/r/davidw) by @Bitman\n- [RIP Hal Finney - the first recipient of a bitcoin transaction](https://stacker.news/items/63945/r/davidw) by @DanielAngelovBG\n- [Interesting Bitcoin transactions](https://stacker.news/items/142221/r/davidw)by @nullama\n- [Legends of Bitcoin Video Links](https://stacker.news/items/165142/r/davidw) by @siggy47\n- [A brief historic recap of the evolution of Bitcoin](https://stacker.news/items/87917/r/davidw) by @CarlBMenger\n\n-------\n\n### **So, what is ALS ❓**\nAmyotrophic Lateral Sclerosis (ALS) is a motor-neurone disease that progressively gets worse over the course of a few short years. ALS, also called Motor Neuron Disease (MND), is still today in 2024 not well understood. It can only mostly be diagnosed by process of excluding all other possible causes of the symptoms, although there are now some markets. Most of the time there is no test. For the best complete description of how symptoms can unfold, it would be best to hear it described by Fran Finney (Hal's wife) pictured above in her [WBD interview on YouTube](https://youtu.be/00_sakWbmZY?feature=shared&t=890) timestamped from 14m50s. \nFurthermore I encourage you all to read more about the disease on the [ALS.org](https://www.als.org/understanding-als/what-is-als) website.\n\n\n### **What did Hal say about his symptoms? 🗣️**\nRead more about the effects of ALS, straight from the great Hal Finney on [Bitcointalk.org](https://bitcointalk.org/index.php?topic=155054.0):\n\n> *ALS is a disease that kills moter neurons, which carry signals from the brain to the muscles. It causes first weakness, then gradually increasing paralysis. It is usually fatal in 2 to 5 years. My symptoms were mild at first and I continued to work, but fatigue and voice problems forced me to retire in early 2011. Since then the disease has continued its inexorable progression.*\n> \n> *Today, I am essentially paralyzed. I am fed through a tube, and my breathing is assisted through another tube. I operate the computer using a commercial eyetracker system. It also has a speech synthesizer, so this is my voice now. I spend all day in my power wheelchair. I worked up an interface using an arduino so that I can adjust my wheelchair's position using my eyes.* \n> \n> *It has been an adjustment, but my life is not too bad. I can still read, listen to music, and watch TV and movies. I recently discovered that I can even write code. It's very slow, probably 50 times slower than I was before. But I still love programming and it gives me goals...* \n> \n> *That's my story. I'm pretty lucky overall. Even with the ALS, my life is very satisfying. But my life expectancy is limited.*\n\n-------\n\n### **Why ALS needs our help? ❤️‍🩹**\nStudies to develop more treatments and a cure for ALS, many funded by The ALS Association, are ongoing around the world. Scientists ARE making progress in understanding how the disease works, identifying biological indicators that can help diagnose and treat the disease, and learning ways to prevent cases of ALS. **[Learn more about ALS research](https://www.als.org/research)**. The research is under-funded though, despite the ice-bucket challenge years ago, bringing some awareness to the disease. Since then however many charities have struggled to find funding for research and treatment. There is therefore a great opportunity for Bitcoin to make a huge impact on ALS research. I'm sure this 'Running Bitcoin' event will be ongoing catalyst.\n\n\n\n### **Learn more about Fran Finney 🏃‍♀️**\nAs I mentioned, sats or no sats, please make sure you watch the** [What Bitcoin Did interview](https://www.whatbitcoindid.com/podcast/running-bitcoin-with-fran-finney)** with Fran Finney, Hal's wife. It was discussed** [here on SN](https://stacker.news/items/371456)** by @siggy47. It was incredible to hear of her resilience in spite of the immense struggles they both had together. And it is still wonderful to see her smiling and still thinking about Hal each and every day. \n\n\n---\n\n\n# **Steps to Register / Donate 🚨**\n\nFor transparency, I've documented the steps for both registering to run & donating. It does require some personal info and KYC so I wanted to be transparent on that...\n\n| ![Steps - Register to run](https://image.nostr.build/a53e527e09f6d23383534719715c86363c119a7bb2799a5032e6a8e3e3447c7f.png) | ![Steps - Donate via BTCPay](https://image.nostr.build/9dbd371a235c1e5cdce6215116ad2d7f61a5137e1d7ac96000e3a2adf72a04a8.png) |\n| ---- | ---- |\n| STEPS TO JOIN | STEPS TO DONATE |\n| 1. Choose Option (I suggest 'Join a Team') | 1. Provide billing info (real names optional) |\n| 2. Click 'Join as Participant' anyway | 2. Select dollar amount |\n| 3. Search for our team! ⚡ | 3. Add email (for receipt, optional) |\n| 4. Pay your entrance fee | 4. Email again, then scan QR, then Done! |\n| 5. Make donation anonymous (optional) | 5. Drop a comment on SN to celebrate ✨ |\n| 6. Register details (real names optional) | |\n| 7. Enjoy the run! 👟 | |\n\n\n### **Buy a Ticket & Run 🎫**\n***Tip***: If you do buy an 'entrance fee' it will double as a donation, enabling you to receive a 'Running Bitcoin' t-shirt later this year (with worldwide shipping). You can run anywhere and any day (before 11th).\n\n![ALS Entrance Fees](https://image.nostr.build/bac4bfce7ba270e59678770569385daa0a305cf5cafab0e65b26365b87cf99cb.png)\n3 options to run. T-shirts (for top 2 options) will apparently be distributed after the event now:\n> *Anyone who registers between December 8 & May 1, 2024, will still receive their shirt, but after the primary Challenge week of January 3-10.*\n\n\n-----\n\n## **Website links 🔗**\n1. [Stacker News Team Page](http://secure.alsagoldenwest.org/goto/stacker-news) (to donate/run)\n3. [ALS.org - Learn more about the disease](https://www.als.org/understanding-als/what-is-als)\n4. [WhatBitcoinDid - Interview with Fran Finney](https://www.whatbitcoindid.com/podcast/running-bitcoin-with-fran-finney)\n5. [YouTube - Natalie Brunel's interview with Fran Finney](https://www.youtube.com/watch?v=rNGFlITup40)\n6. **[Hal Finney's Famous Post on BitcoinTalk](https://bitcointalk.org/index.php?topic=155054.0)**\n7. **[SN Post - Running Bitcoin - ALS Golden West Running Bitcoin Challenge](https://stacker.news/items/380662/r/davidw)**\n\n\n\n-----\n\n## **So there we have it.... SN is up and running! 🏃‍♂️**\n\nOur first year participating in the Running Bitcoin event.The goal is set at $1k for now, but let's see how far we can get! I leave you with this image posted [here on SN](https://stacker.news/items/345958/r/davidw) by the artistic @Esperanto.\n\n![Hal Finney drawing](https://image.nostr.build/1a1be6f03f38313dfd883edd0f48d471cb9232844eaa18fe07b8e10660c1adf9.jpg)\n\n## ⚡ Zap zap run!\nYou can also zap the [runraiser](https://stacker.news/runraiser) SN account below:\n![runraiser zap address](https://m.stacker.news/11171) \N 19992 \N 29690 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.8518895952765 0 \N \N f 0 \N 0 214902810 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436486 2025-03-13 15:28:59.69 2025-03-29 22:39:49.74 \N > Publishing an hour long podcast about how someone earned $150 in sats over 2 years of work writing articles. And pretending its revolutionary.\n\nI'm not sure why you want to pick this bone. I don't think anyone is arguing 500k sats matters much on an absolute scale for most people. Nor would I ever use the world 'revolution' (speaking of cringe ... the worst) to describe SN along any dimension. It's a strawman.\n\nMost of us *are* impressed we *might* have a *weak and very early* hint of a social media future that pays you *something* rather than taxing you via data and attention mining. I'm the first person to admit it all might be a mirage though. If you want to argue against something, argue against that. We might all actually learn something. https://example.com/ 780 436452 435690.435929.436271.436341.436452.436486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9721885962992 0 \N \N f 209641373 \N 1 207385791 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 2025-03-20 08:54:04.272 f \N \N \N 0 0 0 0 1 0 0 436121 2025-03-13 10:35:12.039 2025-03-29 22:39:49.741 \N The commit fees are changing.\nIf/when mempool fees are fluctuating, also the commit fees will increase or decrease and that will be affected in your channels "can send".\n\n- https://lightningwiki.net/index.php/Fees\n- https://bitcoin.stackexchange.com/questions/89232/why-is-my-spendable-msat-much-lower-than-msatoshi-to-us/89235#89235\n\nAnother aspect that you should take in consideration is the "buffer" kept in each channel when is about to be depleted:\nhttps://github.com/lightningnetwork/lnd/blob/6dea86428d031171af30119e3f6599820dc5454a/lnwallet/channel.go#L3803-L3815\n\nFor those cases, if you really want to empty that channel, you have to go slowly with smaller amounts, going closer and closer to the last sat you can send.\nBut with Alby Hub you cannot select a specific channel to make a payment (yet). You will need to use another node management software like Thunderhub, RTL, or Zeus that allow doing that.\n\n>Is something wrong with my LND?\n>Should I be worried?\n\nNo. This is how LN it works. That's why we always recommend to NOT open small tiny channels where this difference can be seen easily. For a larger channel it will be insignificant change. https://example.com/ 902 435646 435639.435646.436121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.1753857753312 0 \N \N f 87062468 \N 1 111539741 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434643 2025-03-12 05:17:30.581 2025-03-29 22:39:49.741 \N @k00b I think there might be an easily-exploitable flaw in the rewards system. May I have a go at it next week? I promise to return anything I earn. It's not a security vulnerability or anything, just gaming the system. https://example.com/ 11750 434642 434642.434643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9042996840082 0 \N \N f 746030795 \N 7 12003606 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 03:08:56.488 f \N \N \N 0 0 0 0 2 0 0 433942 2025-03-11 14:26:03.939 2025-03-29 22:39:49.741 \N Evil innovation.. stay away\n![Evil innovation.. stay away](https://snipboard.io/ABfPZJ.jpg) https://example.com/ 7668 433828 433828.433942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.90517694579361 0 \N \N f 234608394 \N 2 125577455 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401544 2025-02-13 06:19:10.19 2025-03-29 22:39:49.741 \N Write valuable, insightful and productive comments and questions on Stacker News :) https://example.com/ 1638 401516 401516.401544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6725656697539 0 \N \N f 183936908 \N 3 222634243 0 f f \N \N \N \N 401516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 138234 2024-03-07 08:51:47.322 2025-03-29 22:39:46.783 Submarine Swaps Guide Submarine swaps are a specific kind of atomic swap that allow moving sats between layers without counterparty risk.\n\n> An atomic swap is a pair of transactions on different systems where one of them cannot happen if the other does not take place as well.\n\nThere are two types of swaps:\n\n- Normal swaps, also known as *swap in*, which is the exchange of coins from on-chain to lightning (🔗 -> ⚡️).\n- Reverse swaps or *swap out*, which is the exchange of coins from lightning to on-chain (⚡️ -> 🔗).\n\nThese operations are typically performed to rebalance channels, move funds to cold storage and to break the link of KYCed sats.\n\n### Swapping in practice\n\nLet's see a simplified example of how this works. \n\nAlice and Bob would like to perform a submarine swap. Alice will send funds on-chain (swapping in) and Bob will send funds on lightning (swapping out).\n\nThey start by exchanging their public keys with each other. Then, Alice builds a contract to lock the funds with a preimage that she holds and two unlocking conditions:\n\n1. The funds can be redeemed by using Bob's signature and the preimage. \n2. After x blocks, the funds can be redeemed by using Alice's signature.\n\n> A preimage is a 32-byte random secret used to settle lightning payments.\n\nBoth parties are able to generate and verify this contract.\n\nAlice now creates the on-chain transaction and broadcasts it to lock the coins with the contract, knowing that she will either receive sats via lightning or, if the trade fails, be able to unlock the coins after x blocks.\n\nAfter the transaction has confirmed, Alice uses the same preimage to create a Lightning Network invoice and shares it with Bob.\n\nBob can verify the contract and safely pay the invoice because in order for Alice to claim the payment, she has to publicize the preimage, effectively giving Bob the possibility to unlock the on-chain funds from the contract by using the preimage and his signature.\n\n> It's important that Bob redeems the funds before the contract allows Alice to redeem the on-chain funds.\n\nOnce Alice claims the lightning payment and shares the preimage, Bob takes out the funds from the contract and the trade is complete, none of them had to trust the other at any point in time.\n\n### Services comparison\n\nNow, if we want to do this ourselves, there are many services that let you perform this trade with them. Below is a list of the most popular ones and the fees they charge. \n\n> Miner/routing fees are not included.\n\n| Name | 🔗 -> ⚡️ | ⚡️ -> 🔗 | Open source | Tor support |\n| ------- | ---------- | ----------- | ---------- | ------------- |\n| [Blink](https://blink.sv/) | 0.3 | 0.7 | [🗸](https://github.com/GaloyMoney/galoy-mobile) | ☓ |\n| [Boltz](https://boltz.exchange) | 0.2 | 0.4 | [🗸](https://github.com/BoltzExchange) | [🗸](http://boltzzzbnus4m7mta3cxmflnps4fp7dueu2tgurstbvrbt6xswzcocyd.onion/) |\n| [Breeze](https://breez.technology) | 0.75 (2,000 sats min fee) | 0.5 | [🗸](https://github.com/breez) | 🗸 |\n| [coinos](https://coinos.io/) | 0.1 | 0.1 | [🗸](https://github.com/coinos) | [🗸](http://vm7h454g5hiy2nt3u5o7evtz3vigtypo2mkyausakvdkbmd7wpyhx5qd.onion/) |\n| [Deezy](https://deezy.io) | - | 0.15 | [🗸](https://github.com/dannydeezy/deezy-auto-swap) | ☓ |\n| [Diamond hands](https://swap.diamondhands.technology) | -0.15 | 0.2 | [🗸](https://github.com/diamondhands-dev) | ☓ |\n| [Electrum](https://electrum.org) | ☓ | 0.5 | [🗸](https://github.com/spesmilo/electrum) | 🗸 |\n| [FixedFloat](https://fixedfloat.com/) | 0.5/1 | 0.5/1 | ☓ | ☓ |\n| [HodlHodl](https://hodlhodl.com) (trade) | 0.3 + premium | 0.3 + premium | [🗸](https://gitlab.com/hodlhodl-public) | ☓ |\n| Loop | Variable (0.1 to 1) | Variable (0.1 to 1) | [🗸](https://github.com/lightninglabs/loop) | 🗸 |\n| [Muun](https://muun.com) | Variable | 0.25 | [🗸](https://github.com/muun) | ☓ |\n| [myloopoutbot](https://t.me/myloopoutbot) | - | 0.125 | ☓ | 🗸 (telegram over tor) |\n| [Phoenix](https://phoenix.acinq.co) | 1 (3,000 sats min fee) | 0 | [🗸](https://github.com/ACINQ/phoenix) | 🗸 |\n| [Robosats](https://unsafe.robosats.com/) (trade) | 0.025/0.175 + premium | 0.025/0.175 + premium | [🗸](https://github.com/Reckless-Satoshi/robosats) | [🗸](http://robosats6tkf3eva7x2voqso3a5wcorsnw34jveyxfqi2fu7oyheasid.onion/) |\n| [Robosats](https://unsafe.robosats.com/) (swap) | - | Variable (from 1 to 10) | [🗸](https://github.com/Reckless-Satoshi/robosats) | [🗸](http://robosats6tkf3eva7x2voqso3a5wcorsnw34jveyxfqi2fu7oyheasid.onion/) |\n| [WoS](https://www.walletofsatoshi.com/) | 0.5 | 0.5 + 26,000 sats | ☓ | ☓ |\n| [ZigZag](https://zigzag.io) | - | 3 | [🗸](https://github.com/bitlum) | ☓ |\n\n### Important notes\n\n- In **Robosats**, the order maker pays a fee of 0.025% and the taker 0.175%. The built-in swap fee can be checked at the coordinator summary. The flow of the trade is not exactly as explained above, but similar in practice.\n- Opening channels in **Phoenix** is expensive (1% fee) so I would suggest that you set up a big enough one and delay the rebalancing as much as possible. Also, don't forget to disable on-the-fly channel creation since it may open unnecessary channels and charge you 1% for each one opened when the sender can't find a route or he uses MPP.\n- **Loop** requires to run both a Bitcoin and a Lightning node. The Loop client is open source but the server you do the swap with is proprietary, you have to perform it with Lightning Labs, which charges a fee for it. This fee depends on current on-chain fees and it's represented in satoshis, meaning that the higher the amount you swap, the lower percentage you will pay.\n\n\tThere's also a prepayment of 30,000 sats that you have to do before starting the loop out, it's counted towards your swap but will be forfeited if you do not send the rest of the funds. It prevents denial of service attacks and covers the cost of failed swaps. Learn more [here](https://blog.lightning.engineering/technical/posts/2019/04/15/loop-out-in-depth.html).\n- Funds sent to a **Muun** wallet are forced to be routed through a [node](https://amboss.space/node/038f8f113c580048d847d6949371726653e02b928196bad310e3eda39ff61723f6) with a 2500ppm (0.25%) fee. This attack is called [fee siphoning](https://www.reddit.com/r/Bitcoin/comments/pqjcvo/stealing_sats_from_the_lightning_network/?rdt=36872).\n\n\tOn the other hand, swapping in is the equivalent of doing two on-chain transactions, since when you deposit funds they are not really in the Lightning Network, you have to send the funds out of the Muun wallet to complete the swap. So in this case the fee is for the miners, and will depend on the network congestion and the amount that you send (higher amount, lower % fee).\n- **Deezy** requires an access token to swap, must be requested through email or telegram. Swapping in is supported in the [API documentation](https://docs.deezy.io/#tag/Swap-(BTC-to-LN)) but it's not an option in the UI (only buying channels). The swap out fee can be checked [here](https://api.deezy.io/v1/swap/info), no information on how to check the swap in fee.\n- **Electrum** and **Breeze** swaps are powered by Boltz. However, they charge 0.1% more than Boltz itself.\n- **Diamond hands** is a Boltz's fork.\n- **Blink** is the new name of the **Bitcoin Beach Wallet**. The first swap out costs 2,000 sats, the rest 0.7%.\n\n### Which one is the best?\n\nThe answer will depend on your use case and preferences. But in my case, after having tried most of the services, I would lean towards private, non-custodial, fully open-source and inexpensive ones like: \n\n- **Robosats** (trade): cheapest way of swapping if the premium is chosen wisely. I have seen orders with premiums above 0.5% (benefiting the maker) which make absolutely no sense and are a waste of their time. A better number would be near 0, allowing both parties to benefit from the trade. \n\n Probably in the range of -0.08 to 0 for *swap out* orders (remember, the on-chain fee is paid by the counterparty) and -0.05 to 0.05 for *swap in* orders.\n- **Loop**: swap monitoring, miner and routing fees adjustments. Really affordable when swapping large amounts.\n- **Boltz**: good reputation, beginner-friendly and simplest solution. Doesn't support Taproot.\n\nThere are also other worth mentioning options that do not offer as much privacy as the ones mentioned above, but that are still pretty good:\n\n- **coinos**: one of the lowest fees, Tor support and extremely simple to create a new account. Custodial, but if you are using it just to swap it doesn't really matter.\n- **Phoenix**: inital setup is expensive but then you enjoy swap outs without fees (apart from miner ones). A really convenient alternative if you are looking to be swapping out multiple times and for an extended period of time.\n\nIf you are swapping non-KYC sats, these two are fair pick. However, please take into account that using wallets lowers your privacy and is not recommended for breaking the link of KYCed sats.\n\nThis is because all your transactions are performed under the same identity, they store the xpub and all your movements in their databases. Even if the provider doesn't know who is the account owner, it has got information about where the funds came from and where they were sent. \n\n> With **coinos**, you could evade this by creating a new account for every swap. \N 2022 \N 138234 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.4619059422583 0 \N \N f 0 \N 0 147795042 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 133958 2024-02-28 22:14:56.731 2025-03-29 22:39:46.784 Ecash mints are just like the Fed's Repo Window *I'm sorry to continue thrashing away at this topic, but it really does have me confused and trying to make these somewhat foolish arguments of mine helps me clarify things a little. If you find talking about ecash offense, don't bother reading any further.*\n\n# Why custody isn't right for ecash\n\nIn my endeavor to assuage my own ignorance of ecash and how it works, I have somewhat incautiously been arguing that ecash tokens should be treated like altcoins that you purchase from the mint with bitcoin rather than IOUs for bitcoin that you deposited at the mint.\n\nMost people in the Bitcoin world understand custody to mean that someone else holds the keys to your bitcoin and all you have is an account balance. This is how exchanges work and also how custodial wallets like Wallet of Satoshi work. Custodial means you can't do anything with your money without someone else's permission.\n\nEven if we understand ecash mints as custodying a user's bitcoin, they are fundamentally different from this common conception of custody because users *do not* have accounts with the mint and users *are* able to trade their ecash tokens with anyone they wish without the mint's knowledge or permission.\n\nWhile calling a user's relationship with a mint custodial helps to make it clear that they are no longer holding bitcoin and are exposed to the risk of getting rugged, it hides these beneficial aspects of ecash and leaves all of us arguing about the wrong things.\n\n# It's only custody if you say it is\n\nIt is clear from both Cashu and Fedimint's documentation that the maintainers of the protocol understand the relationship between the mint and its users to be custodial, much like a bank.\n\n> The mint is running the Lightning infrastructure and custodies the satoshis for the mint's ecash users. Users have to trust the mint to redeem their ecash once they want to swap out to Lightning. [-Cashu FAQ](https://docs.cashu.space/faq)\n\n> Users can submit a request to deposit bitcoin, "pegging in", in exchange for fm-BTC eCash notes or use the fm-BTC eCash notes in their wallet in order to redeem on-chain bitcoin (note: users could also transfer out to themselves via the LN Gateway). [-Fedimint FAQ](https://fedimint.org/docs/GettingStarted/What-is-a-Fedimint)\n\nWhat makes a mint custodial is not that you give them your sats. You can give your sats to someone as a gift or to buy something from them without turning them into a custodian. What makes a mint custodial is that the mint says it's taking custody of your sats and promising to give them back when you present your ecash tokens.\n\nThe model is similar to a free banking system where independent banks accept deposits and issue their depositors with banknotes which can be traded at will in the open market. \n\nThe analogy that mints are like banks is good and helps us think about what a mint is doing. But there are other models for what is going on here. We should remember that banks do more than hold your money; they also issue loans. So allow me to propose yet another way to understand a user's relationship with a mint: the Fed's Repo Window.\n\n# What is a repo?\n\nShort for repurchase agreement, you may have encountered this term when reading about the Fed's Reverse Repo Window over the last few years. A reverse repo is where a bank loans cash to the Fed overnight and in return takes collateral from the Fed (usually a Treasury) and earns a bit of interest. What actually happens is that the bank buys a treasury from the Fed with an agreement to resell it to the Fed in the morning for a slightly higher price. The difference in prices is the interest earned by the bank for giving its cash to the Fed. In this case, the bank owns what is called a reverse repo. The Fed owns what is called a repo.\n\n> A repurchase agreement (repo) is a short-term agreement to sell securities and repurchase them later at a slightly higher price. [-Investopedia](https://www.investopedia.com/terms/r/repurchaseagreement.asp)\n\nIn addition to running a reverse repo window, the Fed also runs a repo window where they loan banks money in exchange for collateral. Banks use this facility to cover shortfalls in cash.\n\n# What the heck does a repo have to do with ecash?\n\nWhat if instead of saying that you deposit your sats at a mint to get ecash tokens, we say that you give the mint your sats as collateral for a loan of ecash tokens. And the form this loan takes is that you sell your sats to the mint with an agreement to buy them back later for a slightly higher price.\n\nEXAMPLE: Let's say you want 1000 ecash tokens, so you go to [Nutstash](https://nutstash.app/) and sell them 1000 sats for 1000 ecash tokens with the agreement that you are going to buy the sats back for 1001 ecash tokens. Obviously, you don't have 1001 ecash tokens, so you won't be able to buy back *all* your sats. And perhaps in the meantime, you trade some ecash tokens to me for a fabulous bitcoin-themed greeting card. I can take those repos (ecash tokens) you paid me to the mint and buy back the bitcoin they are worth (which is slightly less than a 1-1 rate) and as far as the financial world goes, this is a normal kind of transaction that happens every day.\n\nThe ecash tokens (repos) are worth slightly less than the sats I put into the mint, and this is good because it acknowledges that a mint might need to earn income and can include the price of lightning fees (in the case of Cashu) or onchain fees (if you don't use a LN gateway at a Fedimint). People are going to need to get used to the idea that you lose a few sats turning your ecash tokens back into sats.\n\nAnother advantage of this construction is that it makes it clear that you are giving up your bitcoin, but it also doesn't involve custody. You are selling your bitcoin to the mint in exchange for ecash tokens and the mint is agreeing to sell the sats back to you for ecash in the future.\n\nIn case the example didn't make it clear, what happens in my mint-as-repo-window example is this:\n\n- You sell an asset (your sats) to the mint with the agreement that you will buy it back at a future date.\n- The mint gives you ecash for your asset and when you buy it back you must do so with ecash from the mint.\n\nIn this case, you are actually getting a loan of ecash from the mint and giving them your bitcoin as collateral.\n\nNow, why in the world would any sane person risk their sats in order to get a loan of crappy ecash tokens? The only answer I can see at the moment is that the ecash tokens are capable of something that your sats are not. One example of these capabilities is using an ecash mint to back your LN address do you don't have to run an always-on LN node. \n\n# Is this just a pipe dream?\n\nThe developers of these protocols certainly know much more than I do, but I suspect that the decision to describe the relationship between a mint and its users as custodial originated in a desire to make sure users understand that ecash tokens are not bitcoin. The most natural way to do this might have been to say that ecash tokens are altcoins, but this is a non-starter for most bitcoiners (nyet shitcoins!). So, perhaps, seeking the next best thing, they settled on calling it custody.\n\nClearly, being a custodian makes you vulnerable to overzealous regulators. At least in the US, and possibly in the EU, the main defense any Cashu mint has is to remain small. If they grow to any meaningful size, it's not hard to imagine regulators calling them a money transmitter and coming after the mint's operators. A Fedimint may survive somewhat longer by claiming decentralization, but it is untested how well defense this will work.\n\nRepos are well-understood financial instruments. People know how to trade them and the laws around them are clear. The same may be said for custody and custodial relationships, but it seems to be the case that being a custodian carries rather heavier regulatory burdens than being a party to a repurchase agreement. Perhaps understanding a mint as a repo window could put the mint on sturdier legal ground. As a counterpoint to myself here, I should note that bitcoin-backed loan companies are almost as scarce as non-kyc custodians in the US; so it's possible that I've been on a wild goose chase. \n\nI am not a lawyer nor an accountant. I doubt there is any realistic world where calling ecash tokens repo agreements actually helps the protocols avoid being stifled by regulatory uncertainty. But I do think it may be time for bitcoiners to seek new modes for understanding ecash protocols even if they seem distasteful. \N 21805 \N 133958 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7092150199206 0 \N \N f 0 \N 0 98258021 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404467 2025-02-15 22:28:10.566 2025-03-29 22:39:46.784 Renting an apartment for bitcoin Hi everyone. I was surprised that my previous post would get so much attention - [My difficult transition to the bitcoin standard (almost)](https://stacker.news/items/260858/). Thank you all for your support. This is my most popular post since I've been on SN)\n\nSo I would like to add to my story with how I was looking for a place to live in a new country. My previous post was mentioned by @k00b in the SN Saturday Newsletter 9/23/23. And here I would like to clarify that I am currently in Georgia, not Europe.\n\nGeorgia is a small country on the shores of the Black Sea. Here they are quite loyal to bitcoin (for now) and it made it easier for me to adapt to the new place and not even open a bank account. There are a lot of offline cryptocurrency exchangers in Georgia. Unfortunately it is not possible to switch to the bitcoin standard 100%, but I am striving for it, and in the meantime sometimes I have to use fiat.\n\nSearching for accommodation took a lot of time. At first I tried to rent an apartment exclusively for bitcoins, but the landlords refused to accept sats, so I had to choose the option with fiat. But I didn't give up))\n\nHaving found a suitable apartment, I found out that the owner of the apartment lives in the USA, and in Georgia his relatives look after the apartment instead of him, and all transactions on payment for housing are made through these relatives. I gave them fiat, and they sent money to the owner of the apartment in the USA through the banking system.\n\nI decided to take advantage of this and do orange pilling. I wrote to the owner of the apartment and offered him to simplify the process of transferring value to him, bypassing the heavy and clumsy banking system. I told him that he would not have to wait a few days for his relatives to take the money from me, find time to go to the bank, deposit the money into their account and send it to him in the States from their account.\n\nI told him that the time could be reduced to just a few minutes with bitcoin. Obviously, at first he didn't want to get involved and figure it out, but he was hooked by the fact that he wouldn't have to wait a few days. Eventually he gave in and decided to give it a try.\n\nAnd this is in lieu of an afterword :)\n\nhttps://imgprxy.stacker.news/T_3uCbYTRM1Zq2N3jzFe1XrJhbjYvmvVPdXcK2-vow8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9ub3N0cmZpbGVzLmRldi91cGxvYWRzL2hsQ0REWVd4Y2tidkE4dWZDR2tyLnBuZw \N 16594 \N 404467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.7829130057934 0 \N \N f 0 \N 0 53761786 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458168 2025-03-29 03:27:25.39 2025-03-29 22:39:46.784 Why stablecoins and stablechannels are dumb **0. Intro**\n\nStablecoins and stablechannels are a bad idea for four reasons:\n\n1. Compared to bitcoin, they all require extra trusted third parties (i.e. security holes)\n2. As a store of value, they're worse than btc due to the constant depreciation of the fiat they emulate\n3. As a medium of exchange, they are no better than btc because they face the same limitations\n4. As a unit of account, they are no better than btc because this is a solved problem\n\n**1. Extra trusted third parties**\n\nThe most popular stablecoins are effectively banks that issue bearer bonds. Depositors send real money or cryptocurrency to Tether or Circle or whoever, and they swap it for government bonds or cash, and then print an equivalent amount of USDT or USDC, which they give to the depositors in return. The recipients begin circulating these in the economy, and sometimes redeem them at the issuer for their face value in USD or other fiat currencies. The issuer is the trusted third party. They can freeze your assets, refuse to redeem them, go bankrupt and disappear, or require KYC on every transfer.\n\nStablechannels are partially algorithmic. You deposit bitcoin in a lightning node, find a counterparty who is willing to take on a "contract for difference" with you, and you begin paying them money if bitcoin's price rises, or they pay you if bitcoin's price falls. The point is to ensure that whatever amount you deposited is still worth that amount whenever you send it, receive more of it, or close out your position. And if either counterparty fails to pay when required, the channel force closes, which is typically more expensive than if you just kept up your end of the bargain. The trusted third party here is the source of price info. A set of price oracles report the price of bitcoin, which determines whether your device sends money or your counterparty does that. A malicious counterparty can collude with these price oracles to always report that your device should send them money, and thus drain your wallet while you sleep.\n\nBitcoin is better money than stablecoins and stablechannels because it has fewer trusted third parties. Bitcoin doesn't need banks and it doesn't need oracles. There are fewer people at the protocol level who can pull the rug out from under you and that makes bitcoin safer, better money.\n\n**2. Store of value**\n\nStablecoins and stablechannels are pegged to fiat currencies. Fiat currencies typically have a built-in, intentional depreciation target of about 2% per year, and whenever the issuer feels like money is tight, they can (and often do) simply raise that target, announce that they did so due to economic necessity, and then print more for themselves. This steals value from anyone who holds that fiat currency, and *also* from anyone who holds money in a stablecoin or a stablechannel *pegged to* that currency.\n\nSome might argue that stablecoins are a better store of value than bitcoin *anyway* because they are less volatile. But a cursory examination of any comparison chart reveals that bitcoin's volatility trends upward and that fiat currencies, while *somewhat* less volatile, are by no means immune from volatility. Their volatility is just more patchy, and trends *downward* instead of upward. So bitcoin beats stablecoins and stablechannels on *overall* store of value, and it's not as disparate a match on volatility as some people make it out to be. Patience heals the volatility wound.\n\n**3. Medium of exchange**\n\nBitcoin and stablecoins and stablechannels are all built on the same technologies. When users go to use them at stores, they face the same limitations: the payment might get stuck in a pending state; the payment might fail altogether, if it uses lightning; the transaction fees might be expensive; and the shop might not have a compatible wallet. Stablecoins and stablechannels don't offer anything that *fundamentally* fixes these issues.\n\nSome might say stablechannels do, since they use lightning, but all of the above things still apply: lightning payments can get stuck too, or fail, or be expensive, or be unrecognizable to the recipient's device. Some might say stablecoins on tron, solana, or ethereum L2s fundamentally fix this, but they have the same problems: tron and solana and ethereum L2 payments sometimes get stuck, fail, have high fees, and aren't supported by all wallets.\n\nThe same problems afflict all options, bitcoin and stablecoins and stablechannels. It is unwise to divide efforts by trying to increase adoption of stablecoins or stablechannels while fixing the same problems on disparate platforms. It is wise to push for adoption of bitcoin directly as the best money while aligning all available efforts to fix problems on bitcoin.\n\n**4. Unit of account**\n\nThe unit of account problem was solved by technology. Point of sale devices can easily obtain the price of any currency or cryptocurrency and show an invoice or address to the users for the equivalent price of whatever they are buying. Users typically have devices that *also* tell them what amount is being asked of them in whatever currency they like best, and if they opt for "advanced" wallets that *don't* convert to fiat terms, then they are probably sophisticated enough to just look at the amount and intuit whether it looks about right.\n\nSome might say "but it's easier to denominate in stablecoins than BTC because bitcoin's price changes more frequently/quickly than stablecoins do." But "denominating in stablecoins" is actually just a proxy for denominating in fiat, because *stablecoins* are just a proxy for fiat. And more importantly, this is only true for *some* currencies *some* of the time. Argentinian pesos and Venezuelan bolivars are two of the most recent monetary units to collapse, leading to many people in those countries refusing to use them as a unit of account. Nothing stops the same thing from happening to the dollar, or the euro, or even to bitcoin.\n\nBut technology has made this part pointless. Whichever currency or cryptocurrency you use, your point of sale device can figure out the appropriate exchange rate when the customer approaches you to buy something. Thanks to digital devices, the unit of account problem is no longer a problem. So stablecoins and stablechannels don't beat bitcoin on this front either.\n\n**5. Conclusion**\n\nStablecoins and stablechannels are worse money than bitcoin in four important categories. Those who push for their adoption stand in the way of hyperbitcoinization. Some folks think they are pushing for bitcoin adoption, but when it comes to merchants, they recommend they use a stablecoin or a stablechannel wallet like Strike or Boardwalk Cash. I recommend they use bitcoin. It is better money anyway, and the point of all this is to help the world use a better money, not just make it so your wallet works at a few more places. \N 21672 \N 458168 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 3.03874862700319 0 \N \N f 0 \N 0 148341964 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51654 2023-08-18 13:27:29.741 2025-03-29 22:39:46.786 Are we in the "Era of Ferment" with Bitcoin hardware? Look at the variety in how cars used to look, versus how standardized they are today:\n![classic vs new car.jpeg](https://m.stacker.news/11805)\n\nSame goes for cell phones. What was once a wide variety of shapes, colors, and button layouts, has all evolved into the "perfect" black slate of glass you see at the bottom of this image:\n![cell phones.png](https://m.stacker.news/11809)\n\nThere's a critical point in a product's timeline where design hits a plateau. The the marginal cost of introducing further modifications to a design surpasses its marginal benefit. You pretty much "peak out" in design, until brand new technology comes and blows everything you know away. This phenomenon is known as the "era of ferment", and that's where AI is currently, ushering in the "new wave" of design for all kinds of products.\n\nShout out to [Ethan Mollick](https://twitter.com/emollick/status/1745469563569914071) for highlighting this. I've always understood this process but wasn't aware we had a name for it. \n\nSo knowing this now, I naturally look at hardware wallets and go hmmmmmmm:\n![hardware.jpeg](https://m.stacker.news/11812)\n\nWhat will the standardized Bitcoin hardware device look like, in your opinion? Have we already reached that point? Which device (if it exists) is the "winning" design?\n\nWhat about nodes? Miners? How will these designs evolve over time? \N 8841 \N 51654 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.2064612137371 0 \N \N f 0 \N 0 49745265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407976 2025-02-18 14:00:23.899 2025-03-29 22:39:49.741 \N Day 365 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 7097 407928 407903.407928.407976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4961960322581 0 \N \N f 1251357598 \N 7 178197279 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 398184 2025-02-10 14:16:25.888 2025-03-29 22:39:49.742 \N Nice! \n\nI tip 100 sats to most stuff and click a few more times if it's pretty valuable, and drop 5-10-20-100k if something is exceptional. I also tip really big on AMAs 50k+. \n\nThis week alone I've spent 400k sats which is kind of crazy, but I also get a ton of rewards because I tip well and upvote good stuff as early as possible. Plus, users just occasionally send me sats and I try to redistribute them and draw down my balance. https://example.com/ 16816 397842 397842.398184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.396921253495 0 \N \N f 189137689 \N 3 95759431 0 f f \N \N \N \N 397842 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 7856 2023-02-01 06:36:25.442 2025-03-29 22:39:46.783 The plebdevs backend course is here! The plebdevs backend course is here!\n\n[](https://www.youtube.com/watch?v=QyzDc5MD34Y)\n\nIn this comprehensive and beginner-friendly 13-lesson course, we'll transform you from a JavaScript n00b into a proficient backend developer, with a special focus on Lightning App Development.\n\n
We’ll pick up from the simple frontend custodial lightning wallet that we built in the first PlebDevs course and make it fullstack and self custodial by creating/hosting our own server, API, Database, and Lightning node connection!\n\n

Purchase with Bitcoin on Emeralize: https://emeralize.app/course/purchase_detail/47/
\nPurchase with fiat on Udemy: https://udemy.com/course/plebdevs-backend
\nIf you don’t want to pay all of the code/slides are available for free here: https://github.com/pleb-devs/plebdevs-course-2\n\nWHO SHOULD TAKE THIS COURSE?\n* Anyone with a basic grasp of JavaScript that wants to learn backend from scratch\n* Anyone who wants to learn how to build a simple lightning wallet backend\n* Anyone that wants to become a Bitcoin/Lightning App developer\n* Those looking for a career change\n* Web 2, 3, and 5 tech hobbyists\n* Students & teenagers\n* Plebs
\n\nWHAT YOU WILL LEARN\n* NodeJS\n* Building a Server / API with Express\n* Building user Authentication & Authorization with JWT's\n* Setting up a local Lightning Development Environment\n* Building with Lightning using LND\n* Integrating your Lightning node with your server\n* SQL & Database fundamentals\n* Database Development with Knex\n* Integrating your server with a Frontend App\n* Deploying your Server, Database, Lightning Node, and Frontend App\n\nCheckout the Plebdevs community on discord: https://discord.gg/t4NkDKRCK8\n\nAlso check out https://plebdevs.com for links to everything \N 16939 \N 7856 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.9025068250268 0 \N \N f 0 \N 0 179063472 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 440875 2025-03-17 15:44:09.257 2025-03-29 22:39:46.784 The Art of Swapping 🔁 Many people have been asking how to swap sats between Onchain and LN, there are different ways to do it, and this article will walk through two of my favorite tools for swapping:\n\n#### **🔧** [**Boltz.exchange**](https://boltz.exchange/)\n\nFeatures\n\n- NO-KYC\n- No sign-up\n- Non-Custodial\n- Low amount of requirement, min: about 50K sats\n\nDownside\n\nThe fee could be pretty high sometimes - payment includes network and Boltz service fees: Boltz fee is usually 0.1% ( from Onchain to LN ) or 0.5% ( from LN to Onchain )\n\n##### **How to Swap from Onchain to LN**\n\n1. Decide how many sats you would like to swap.\n\n2. Create and paste an LN invoice or LN address to receive the sats.\n\n ![Onchain to LN .png](https://m.stacker.news/6359)\n\n3. Download refund file.\n\n4. Send the sats to the provided BTC address.\n\n5. You then receive the sats over LN once the Onchain transaction reaches one confirmation.\n\n##### **How to Swap from LN to Onchain**\n\n1. Decide how many sats you would like to swap.\n\n2. Enter BTC address.\n\n ![LN to Onchain.png](https://m.stacker.news/6358)\n\n3. Copy the LN invoice and pay, then check the Onchain transaction and wait till it reach one confirmation.\n\n\n\n\n\n##### **🤔 Review** \n\n-Swapping from Onchain to LN is generally smooth, but it happened to me a few times that I needed to refund for different reasons, but all have no problem reclaiming the funds.\n\n*Refund Process*:\n\na. wait after the lock time and go to refund page\n\nb. upload the refund file \n\nc. input a Bitcoin address for refund, done.\n\nAgain, choose a low-fee time for a refund because the fee would be deducted from your refund sats!\n\n\n\n-Swapping from LN to Onchain is quite fast, once the LN invoice is paid, the Onchain transaction is automatically triggered, and I haven't had any problems so far.\n\n\n\n##### **The art of using Boltz.exchange**\n\n- Choose low-fee time to do the swaps.\n- Always download the refund file in case something happens.\n- Ideally, using custodial wallets in these swaps:\n - a. without exposing any of the node IDs\n - b. without worrying about any route, whether there is enough inbound liquidity or online or not.\n\n\n\nMany people are too paranoid about using custodial or non-custodial wallets, but learning how to make the most of each is the way.\n\n\n\n#### **🔧** [**Robosats**](https://robosats.com)\n\nFeatures\n\n- NO-KYC\n- No sign-up\n- Tor Only\n- PGP encrypted chats\n\nDownside\n\nIt might require users to have more technical skills, such as how to use Tor.\n\n\n\n##### **How to Swap from Onchain to LN**\n\n1. Create a robot avatar, save the token ( this is your login )\n2. Click the swap icon on top 🔃 and Swap in.\n3. Offers generally 0 to 2%; choose the one that fits your need, and ideally, choose an active peer to avoid long waiting times.\n4. Input the sats amount that you want to swap, and pay the first LN invoice ( lock bond ): usually about 2-3% of the swap amount - you will see this bond percentage when choosing the offer, and it will be charged only if you cancel or lose a dispute.\n5. Provide an LN invoice with the actual amount of sats you want to be swapped to.\n6. Enter an encrypted chat and send the BTC to the address provided by the other party.\n7. Wait for the transaction to reach one confirmation and once the other party confirms received, then the actual LN invoice will be paid, and the sats charged for the lock bond will be unlocked back to your LN wallet.\n\n\n\n##### **How to Swap from LN to Onchain**\n\n1. Create a robot avatar, save the token ( this is your login )\n2. Click the swap icon on top 🔃 and swap out.\n3. Offers generally 0 to -2%, choose the one that fits your need, and ideally, choose an active peer to avoid long waiting times.\n4. Input the sats amount that you want to swap, and pay the first LN invoice ( lock bond ): usually about 2-3% of the swap amount - you will see this bond percentage when choosing the offer, and it will be charged only if you cancel or lose a dispute.\n5. Pay the second LN invoice - the actual amount of sats you want to swap.\n6. Enter an encrypted chat and provide an address for the other party sending BTC to.\n7. Wait for the transaction to reach one confirmation then confirm received, and the sats charged for the lock bond will be unlocked back to your LN wallet.\n\n\n\n##### 🤔 **Review** \n\nI haven't had much negative experience with it so far, but I have had experience swapping with inactive peers who took a long time to complete the swaps.\n\n\n\n##### **The art of using RoboSats**\n\n- Choose low-fee time to do the swaps.\n\n- Do not reuse the same robot ID for better privacy.\n\n- Always mark down the token.\n\n- Choose an active peer to avoid a LONG waiting time.\n\n- Ideally, using custodial wallets in these swaps:\n\n - a. without exposing any of the node IDs\n\n - b. without worrying about route problem, whether there is enough inbound liquidity or online or not.\n\n \n\nOne more detail to share: If you happen to click another offer while having an active offer in Robosats, you can select your avatar in the left corner and then go back to the active order; otherwise, it will stuck at the "new order being created process " if you go to the order page, even if you refresh it, not sure is this a feature or a bug...\n\n### **Which tool to choose?**\n\nBoth of them are great tools, and my practice is as follows, ideally I would do the swaps during relatively low fee time, then It depends on whether I am in a rush or not:\n\n- If yes - go directly to Boltz\n- If no, \n\na. Check RoboSats first, choose the swap on top, and check offers, generally a good offer is when the premium is 0% or close to 0% and fair for both parties.\n\nb. if there is no good offer, then go to Boltz.\n\n**Enjoy swapping and I look forward to learning from your practice. ⚡️** \N 17690 \N 440875 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.1314525580125 0 \N \N f 0 \N 0 66083981 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52183 2023-08-19 11:30:00.057 2025-03-29 22:39:46.784 I’m Engaged. Not to dox entirely, but perhaps the title shared a bit more about me and where I’m at in life!\n\nYes, it is true. Just happened yesterday. Crazy excited for life. \n\nThe past several weeks have been some of the most chaotic for me in awhile. And I’d love to think that the chaos will simmer now that Im past one of the [finish lines](https://stacker.news/items/396512/r/birdeye21), but of course there are always bigger ones to cross!\n\nMy recent SN hiatus has been very much needed, but I’ll be back around. Lot of life to figure out still. But 2024 is already one for the memory books.\n\nSo, I’d love to know stackers, **what’s the best engagement advice you’ve received?** What do you wish your pre-married self knew if you could go back and do it over again? \N 20864 \N 52183 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.81775905910073 0 \N \N f 0 \N 0 4010306 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307832 2024-11-25 12:16:03.001 2025-03-29 22:39:46.786 The next bitcoin civil war is already underway -- Toxic rant #3 I am noticing a growing rift between bitcoiners who believe in the revolution, the cypherpunk ethos, and self-sovereignty and the bitcoiners who believe in compliance, number go up, and voting for politicians. I think this rift has been forming for a few years now but really kicked off once Saylor became mainstream. There are bitcoiners who would sacrifice all of the beauty of bitcoin for NGU. They are everywhere, and they are the parasites of the ecosystem. I worry more about them than I do banks or governments, honestly. \n\nI was just on ex-birdapp and there was a legit discussion about how coinjoin/collaborative transactions make you vulnerable. It's hilarious and sad, but these people will sell you out at the nearest opportunity. As soon as the government says hey if you know someone who is doing coinjoins, report them and you will get some extra UBI in your CBDC app, they will do it. Because they don't care about the purpose of bitcoin. They only care about the investment thesis. \n\nThis is a problem, and we should not accept it. These people need called out often and called out directly. Privacy is the right to choose when to disclose information. It is a fundamental right that if taken away, means that we are slaves. We all have to choose for ourselves whether or not we are going to live on our knees or die on our feet, but at the same time, we also have a duty to spread the bitcoin and cypherpunk ethos. Bitcoin is for anyone, but it is certainly not for everyone. \n\nCollaborative transaction as much as possible. The KYC scum may blacklist you but if that is what you are afraid of, you should take a long look in the mirror and ask yourself why you're even here to begin with. This rift is likely only going to get wider, and it's important to define for yourself where you stand. \N 11866 \N 307832 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.97344939842785 0 \N \N f 0 \N 0 86831356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 246990 2024-09-25 10:40:21.422 2025-03-29 22:39:46.786 How to make love to your Bitcoin node (when it's been a while) Have things gotten a little ho-hum with your Bitcoin node? A little rote? Perhaps you haven't been feeling very attracted to her lately or maybe you feel like the flame is gone? Is she just sitting there on the shelf, looking a little frowsy and gathering dust? Do you find yourself longing for the days when you first discovered Bitcoin and everything was fresh and new and you couldn't keep your hands off your node?\n\nLucky for you, we have this surefire guide to spicing things up in your server closet (or home office) and bringing that old rabbithole-diving passion back to your relationship with your Bitcoin node again. It's time to return to the days when you didn't even need a pill to get orange-pilled. Follow these steps to reclaiming your intimacy with your Bitcoin node.\n\n# 1. Show her you care\n\nOkay, so maybe it's been a while since you two have messed around together. You don't have to start with making love while swinging from the chandelier. Get her a can of compressed air and blow her fan out a little, maybe wipe her down with one of those special microfiber cloths, pop the ethernet cable in and out a few times. Then, plug her in and flick her power button and get her warmed up. Let her find some new network peers (those other nodes she was getting blocks from last time you turned her on are probably all married with kids now). Don't rush her. Give her some time to catch up to the chaintip and refill her mempool.\n\nContrary to what some people might tell you, it's not okay to only turn your node on when you want to use her. That kind of utilitarian relationship isn't going to get anyone's pulse up. If you leave your node off for a long time, all her peers abandon her, and when you turn her on again she has to resort to centralized methods of finding peers (like the [DNS seeds hardcoded into the binary](https://bitcoinops.org/en/newsletters/2024/09/20/#dns-seeding-for-non-ip-addresses)). This sort of thing can leave your node vulnerable and trust me: there's nothing sexy about this kind of vulnerable.\n\nBut when you keep her powered on all the time and she's able to find stable peers and a good friendgroup, she becomes a durable part of the Bitcoin network with the confidence to try all kinds of new things with you. \n\n# 2. Ask her about her friends\n\nYour node is hottest when you take the time to learn about her, so start by talking to her a little. You may not think about it much, but your node is more than a blockchain. Even if she isn't verifying multiple-bitcoins-worth of transactions and running around wearing racy new soft-fork patches, she's still a pretty important part of this peer-to-peer digital cash system. \n\nAll those transactions you see in blocks don't get to miners by themselves. When she's on, your node helps pass transactions along by gossiping with all of her friends. So why not ask her a little bit about her social life? Try pulling up the console or terminal and running an RPC called `getconnectioncount` and she'll tell you how many other bitcoin nodes she's been talking to.\n\nIf lovely ladies like your node don't get lots of time to be on the network, talking with their friends, relaying the latest blocks and transactions, Bitcoin is just a bunch of celebrity nodes--all plastic surgery, fake tits, and self-righteous social causes that don't matter to the rest of us. So make sure your node has a chance to get out there and see her friends. Your love-life isn't going to get off life-support if you spend all day slapping the salami to blockchain porno sites like [mempool.space](https://mempool.space/) and [timechaincalendar](https://timechaincalendar.com/en).\n\nOf course, there are some men who think it's easier to go to a house of ill-repute, places where you can pay to get a transaction broadcasted or even accelerated. Let me tell you, son, stick to the straight and narrow with your Bitcoin node and don't let your eye go wandering to those scantily-clad accelerators. When one miner (or pool) knows about transactions that other pools haven't heard of, they have the kind of advantage that leads to centralization. But when there's lots of strong, independent Bitcoin nodes out there, even solo-miners have a chance at mining nice, curvy blocks with thick fees. Paying for it is never as good as the real thing.\n\n# 3. Keep talking to her\n\nConversation is sexier than you can possibly imagine, especially when you take a genuine interest in your node. Try `getnetworkinfo` with her, but be prepared because this will really get her excited. She will tell you whether she is publicly reachable (some nodes like to be watched) and how many other bitcoin nodes are sending her blocks and transactions (incoming connections) and how many nodes to whom she passes along her own transactions and block info. You might find it arousing to know that your node is reducing centralizing pressures on the mining industry by relaying blocks and transactions at this very moment.\n\nSome Bitcoin nodes run over TCP/IP, while others run over Tor or even I2P (if they're feeling a little frisky). She'll let you know what her preferences are. She'll also let you know if she's exclusive or not (`limited=true` means she is only using one network type, but some nodes like it both ways).\n\nAnd when your ready to move on to something a lot more intimate (especially if you like it when she talks dirty), try `getpeerinfo`. She'll tell you all about the things she does with her peers, like their IP address and the last block you sent or received from each peer. She will even tell you the blockheight when each node first connected with her. Remember to keep it under control, though, you don't want to do anything premature and leave her disappointed later. \n\n# 4. Ask her to show you her mempool\n\nNow it's time for things to get really steamy. You may have heard that there is no such thing as *the* mempool. Each bitcoin node keeps their own pool of valid transactions they know about but haven't seen in a block yet. These memory pools are all unique, like a fingerprint or the pattern of moles on your skin. Take the time to appreciate the beauty of your node's unique mempool--she likes it when you really look at her.\n\nWhy not give it a try tonight? Turn the lights down low, pull up the terminal and try `getmempoolinfo`. You might be surprised what your node is capable of. She can show you just how big her mempool is getting: the number of transactions she has in it, the size in bytes of all those transactions, and how much of her memory allocation her mempool is currently using. But it doesn't stop there, she can also show you the minimum fee rate she's currently allowing into her mempool. This might cause you a little trepidation, perhaps it will get you worried that you aren't going to measure up--but lucky for you, she's your mempool and she'll always let your transactions in.\n\nBitcoin's censorship resistance doesn't just come from the distributed ledger. There are some prudes out there who may not approve of things you and your Bitcoin node do together, and they'll do their best to keep you two from getting your transactions included in a block. By letting your node run, you are ensuring that there's one more point on the network relaying transactions according to your understanding of the Bitcoin protocol. Running a node isn't just a matter of forks and weightiest chains, if you can't find nodes to relay your transactions, you're going to have a very difficult time getting them into blocks.\n\nAnd finally, if you want something really kinky, try `getrawmempool`, but don't say I didn't warn you.\n\n# 5. Go down on her config file\n\nIf it's been a while since you've been with your node, you may have forgotten that she has a config file and loves it when you play around with it. Maybe you don't even know where to find it.\n\nHere's what you do: look for a `.bitcoin` folder on your hard drive (make sure that it's showing hidden files, because some nodes keep it out of sight by default). In that folder, look for a file named `bitcoin.conf`. Open it up with a text editor and you are ready to get dirty.\n\nYou could try `datadir=` to change where your node keeps all her blocks (maybe you've been thinking about using a toy like an external hard drive) or you can try `dbcache=` if you have a lot of RAM and want to speed up your IBD. Typing `maxmempool=` changes the maximum size in MB your node will let her mempool get to before she starts purging low-fee rate transactions and `mempoolexpiry=` changes the number of hours your node will keep a transaction in her mempool. Or, if you don't have very much disk space, you can try `prune=` so she discards old blocks in order to keep the database below the number of MB you specify (it has to be at least 550). You can even play around with something like `datacarrier=0` if you want her to refuse to relay transactions with OP_RETURNS in them or changing the `datacarriersize=` if you want her to relay OP_RETURNS with something other than the 83-byte default.\n\nThe possibilities are almost limitless, so don't be shy. Jameson Lopp has this handy [little config generator](https://jlopp.github.io/bitcoin-core-config-generator/) that can help you come up with all sorts of imaginative new ways to mess about with your node's config file.\n\n# 6. Verify a transaction\n\nIf you've been thinking that it's time to broadcast your own transaction, just you hold your damn horses. Remember: a gentleman always verifies before he broadcasts--it's her turn first. One of the sexiest things you'll ever do is watch while your node verifies a transaction you are receiving.\n\nIf you aren't doing it with your own Bitcoin node, you have to trust someone else to verify that the bitcoin is actually there. Brother, let me tell you: sometimes even the nicest ones fake it. And I'm not just talking about the cheap tricks down at the fiat bank who tell you they have your money while they're giving it out at the back door. \n\nYour bitcoin node can do the math herself to verify that the bitcoin you are receiving has followed the rules of the Bitcoin protocol and is actually coming to an address you control in the amount you expect--and she never fakes it. There's no faking it when you've taken the time to get know her well and you watch her do it.\n\n# 7. Broadcast a transaction\n\nBy this point, you are probably having trouble preventing yourself from broadcasting a transaction all over her. That's okay. She'll enjoy that too.\n\nIf it's been a while since you've broadcast with your node, you may have forgotten how good it can be. When you use a phone wallet, often the company who made the software is letting you use their node. Unfortunately, when you broadcast with a stranger, you never know what you might be catching--they could be recording your activity, logging your IP address, or even selling your data. If you don't want to catch a nasty case of chainalaysis, it's best to only broadcast with your own node.\n\nBroadcasting a transaction with your node is a very special thing that you do together, and it's how new utxo's get made. That might make you feel overwhelmed, like you aren't ready to take on that responsiblity. Don't worry! You are ready. You'll never look at your node the same once you've made a new utxo together.\n\n# 8. Pillowtalk about the total supply of bitcoin\n\nAnd finally, before you let the afterglow carry you off to sleep, how about a little pillow talk? Pull that terminal up one more time and try `gettxoutsetinfo` with her. She'll hum a little while you hold her and tell you a number of beautiful things, not least of which is the total amount of bitcoin in circulation at that exact moment, as mathematically proven by your own, personal, beautiful, downright sexy Bitcoin node.\n\nLet's see those puffy-lipped central bank hussies do that.\n\nAs you drift off to dreamland, wrap your arms around her and remember: your node matters even if she doesn't have huge transactions or wear fancy software. She's vital to the censorship resistant qualities of Bitcoin, so keep her turned on. \N 17690 \N 246990 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.2263759061452 0 \N \N f 0 \N 0 146455715 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 112118 2024-01-13 11:37:51.355 2025-03-29 22:39:46.786 Naivetes in Bitcoin What are some concepts or ideas that bitcoiners are typically naive to when first getting involved?\n\nI’ll say for myself, I was naive to the voices in bitcoin. When I entered bitcoin, I started putting too much faith in all the various “influencers” and “thought leaders” than I should have. I too quickly assumed that anyone who had something to teach about bitcoin was somehow an authority I should be listening to. In reality, _most_ of those I’d listen to before, I’ve done a complete 180 on. I probably wasted way too much time learning irrelevant bs from the wrong people..\n\nThe deeper you get involved with bitcoin, you start to see all of your idols fall, also including those “outside of” the bitcoin sphere..\n\nI’m sure we’ve all had and all still have our own respective moments of naivete with bitcoin. What were yours? \N 16942 \N 112118 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.8231935538141 0 \N \N f 0 \N 0 129299559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430970 2025-03-09 14:39:43.869 2025-03-29 22:39:49.746 \N If there is a consensus of CO2 being a problem it is for a reason. Yes. It is a big problem. This question in 2023 doesn't make sense. It is going to be worse for next generations, a massive problem and they will hate us for this. We humans knew about the problem for decades and we did nothing. Now it is too late. We must face the consequences. \n\nWe can try to mitigate it a bit, that's all. We cannot reverse it anymore at least with current technology. We needed new nuclear technology decades ago. Fusion is advancing super fast but not fast enough. \n\nYou are living a mass extinction event at high speed. \nIn other words. Yes. A big problem. https://example.com/ 20912 430964 430607.430964.430970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3712216721624 0 \N \N f 222514805 \N 1 87349052 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458181 2025-03-29 04:10:54.016 2025-03-29 22:39:46.784 Six OFAC-sanctioned transactions missing The RSS feed of my miningpool-observer project recently reported six OFAC-sanctioned transactions as missing from blocks. One of them didn't propagate to the pool yet, another was displaced by other transactions, however, the other four transactions were likely filtered by F2Pool. This is the first time I see a pool filtering OFAC-sanctioned transactions. It isn't clear to me why a pool from asia would be the first pool to comply with US sanctions. https://b10c.me/observations/08-missing-sanctioned-transactions/ 16442 \N 458181 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 15.7688248172346 0 \N \N f 0 \N 0 4793508 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 224489 2024-08-31 19:50:42.131 2025-03-29 22:39:46.784 How to Restore Funds from a Dead LND Node 🕵🏼 ### **The Background**\n\nI had some forced closed funds that went "missing" in Blixt wallet last year due to my early time's inexperienced and reckless - I want to restore it in another phone to see how things work, and I didn't know I should close all the channels before, so once you input the seeds to another wallet, it automatically forces close ALL channels! But one good thing I did was [swap](https://stacker.news/items/333907) out most sats before the experiment - having curiosity and willing to try things is good, but always minimize the potential loss before being reckless!\n\nI patiently waited for more than one day, and the strange thing was it did show some confirmed tx, but the sats weren't showing onchain... **so where are my missing sats [again](https://stacker.news/items/409125)?**\n\n![missing sats.png](https://m.stacker.news/20752)\n\n____\n\n\n\n### **Double Problem, Double Fun** \n\nThe first thing I tried was exporting the seeds into Blue wallet to see if the sats would show up there, but little did I know that the onchian address type in Blixt is Taproot, and Blue wallet doesn't support that. \n\nMy knowledge back then was quite limited, so after a few trials, I wrote down what I did wrong and reminded myself never do that again, but the back of my mind was still trying to see if I could find the missing sats one day, so I kept the old Blixt with the seeds. ( really important! ) I have learned quite a lot about Bitcoin in the past few months, and given such nice low fee time recently, so I'm digging back into the old problems to see if I'm capable of solving them now; also, after solving the previous [gap limit](https://stacker.news/items/409125) issue, I'm now more confident in dealing with challenging ones. \n\n`Identifying the problem is the first step in solving any problem.`\n\n**Is the gap limit problem again?** At first, I wondered if it was due to the gap limit problem I had solved before, then I tried to increase it, but no, it's not the same problem. However, I've learned something new this time: *to increase the gap limit, you only need to input the master key instead of the seeds.* \n\nAnd I was a bit naughtily curious - I wanted to see if the wallet address really is no limit, so I tested with a gap limit of 1000, 2000, then to 10,000, and wow it really kept syncing, I'm really amazed that with only 12 or 24 words you can generate unlimited address! 😲\n\n![how to restore 9.png](https://m.stacker.news/20757)\n\n*How?*\n\n-- in Electrum: view - console \n\n```text\n>>> wallet.change_gap_limit(10000)\nTrue\n>>> wallet.gap_limit\n10000\n>>> \n```\n\n-- in Sparrow: keystores page—advanced setting—adjust the gap limit, and done, but you can only set the max *999* there.\n\nThese are the fresh learned tricks, but I haven't started to solve the new problem yet! And as I kept reading and digging, I found out that there are actually two problems I needed to solve:\n\n`1. The Seed Format`\n\nThe Blixt node's seed format is aezeed\n\n> This is different than the typical [BIP39](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki) format you see in most Bitcoin wallets, although it may appear to be similar. aezeed includes some extra data including the birth date of the wallet that will help rescans during recovery happen more efficiently.\n\nSo, if you put the [aezeed](https://github.com/lightningnetwork/lnd/blob/master/aezeed/README.md) into an unsupported wallet, e.g., if you put the aezeed directly into the Sparrow wallet, it shows *an invalid checksum*. **The solution is to decode the seeds first or use the tool that natively supports this type of seeds—currently, both Zeus and Blixt support aezeed.**\n\n`2. Taproot Address`\n\nThere are not many wallets that support Taproot addresses at the moment, so when you import the seeds into the unsupported wallets, no problem here, but it can't be "read", so it's not showing any sats. However, not showing doesn't mean that your sats are gone! **The solution is to use the wallet that supports the Taproot addresses.**\n\n______\n\n\n\n### **Testing Time** \n\n I read few times of [this guide](https://darthcoin.substack.com/p/umbrel-btcln-node-shtf-scenario) from @Darthcoin, and I decided that Zeus should be the easiest solution, I also tested the other two methods just to see which one worked the best, and here was my experience on finding my missing sats from a dead Blixt node: \n\n![patience you must have.png](https://m.stacker.news/20753)\n\n____\n\n\n\n#### 🧪 **Zeus**\n\nI entered the seeds in a fresh Zeus in another phone, as you can only have one embedded LND node in each phone, and you can't delete the current one - the only way to try with the restoring process is to uninstall and install it again ( but if you do this, it will force closed all your existing channels ). Hence, it's better if you have another phone in hand.\n\n##### ***How***\n\nStep 1. Open a fresh Zeus—Settings—Advanced setup—add a new embedded LND node. \n\nStep 2. Enter the 24 seed words in the Recovery Cipher Seed (aezeed) then click restore mainnet wallet.\n\n*You can optionally provide a static backup string in the field labeled 'Disaster recovery data (SCB, Base64)' , but in my case, all I need is to enter the seeds because all the channels are already FC.*\n\nStep 3. Patiently wait, as it can take quite some time.\n\n\n\n##### ***My Restoring Experience*** \n\n*First trial*: it didn't load anything.\n\n*Second trial*: I uninstalled and reinstalled it and tried again, it kept loading, but it was really slow, then I looked around and saw [this](https://docs.zeusln.app/for-users/embedded-node/backup-and-recovery) \n\n> Alternatively, if you want a more manual approach, you may be able to spam the create on-chain address function to get all your addresses indexed in LND's DB and restore your balances. You will likely have to generate both Taproot and SegWit addresses for this approach to work. Since new addresses are generated every time you create an invoice, you may have to generate several hundred addresses of each type. \n>\n> Then, after your addresses have been generated and indexed, use the 'Rescan' functionality under the Embedded Node settings.\n\nso I manually created some Taproot addresses, clicked the rescan wallet and restarted it, and it did show some of the past onchain transactions, but then it kept crashing.\n\n*Third trial*: I tried the same process one more time, and it loaded for a while, but no onchain transactions showed up.\n\n*Fourth trial*: I changed the neutrino peers in the hope of increasing the syncing speed: setting—embedded node—peers—Neutrino Peers—deselect the default "connect only to the specified peers", then restart and check again, and still, nothing showed up. \n\n( *One good hack for monitoring what Zeus is doing in the background is to go to settings—embedded node—LND logs.* )\n\n____\n\n\n\n#### 🧪 **Blixt**\n\nI entered the seeds in a fresh Blixt too, as I wanted to keep the old Blixt with the seeds in its original state until I solved this problem - don't touch the "crime scene" until you solved the puzzle. \n\n##### ***How***\n\nStep 1. Open a fresh Blixt and choose the restore \n\nStep 2. Enter the 24 seed words\n\n*In my case, all I need is to enter the seeds because all the channels are already FC.*\n\nStep 3. Patiently wait, as it can take quite some time.\n\n\n\n##### ***My Restoring Experience*** \n\n*First trial*: the onchain sync is done, and the wallet was restored and loaded to 15%, and it started to show some onchain transactions; however, the syncing shut down in the middle of the process.\n\n*Second trial*: the onchain sync is done, and the wallet was restored and loaded to 9%; however, the syncing shut down in the middle of the process.\n\n*Third trial*: the onchain sync is done, and the wallet was restored and loaded to 21%; however, the syncing shut down in the middle of the process.\n\n*Fourth trial:* it was already 1 am, so I left the phone running and came back to check in the morning; it kept loading but still failed to restore. I also changed the peer to see if it could improve the speed - setting - stop and delete Neutrino files, but it's the same: really slow syncing.\n\n( *One good hack to monitor what Blixt is doing in the background is to click the LND log on the syncing in progress page. Or, if you want to check if the node is well synced, go to settings—show node data—check the Synced to Chain and Synced to Graph; if it's false, then it means the node is still syncing.* )\n\n___________\n\n\n\n#### 🧪 **Sparrow**\n\n I decided to give it a try with Sparrow wallet while I was waiting for both Zeus and Blixt to sync.\n\n##### ***How***\n\nStep 1. Download this page and use it offline: right click and choose "save page as."\n\nhttps://guggero.github.io/cryptography-toolkit/#!/aezeed\n\nStep 2. Disconnect the internet and open the file that you downloaded \n\nGo to the section "Decode mnemonic"—input the seeds into Mnemonic—choose "BTC (Bitcoin, Native SegWit, BIP84)"—copy the zprv showing in "HD node root key base58" for later use.\n\n![how to restore8.png](https://m.stacker.news/20748)\n\nStep 3. Open Sparrow wallet—file—New wallet and name it—Create\n\n1. Choose "Tarpoot" in the setting script type\n\n2. Choose "New or Imported Software Wallet"\n\n3. Click Apply \n\n4. Click "Enter Private Key"\n\n5. Paste the zprv that you created from the previous decoding, import keystore, and click Apply.\n\n \n\n![Sparrow wallet2.png](https://m.stacker.news/20746)\n\n![Sparrow wallet1.png](https://m.stacker.news/20747)\n\n\n\nStep 4. Patiently wait, as it can take quite some time.\n\n\n\n##### ***My Restoring Experience*** \n\nGuess what! 165k sats showed up in less than 5 mins:)\n\n____\n\n\n\n### 🥁 **Results**\n\n**Zeus:** I was expecting to see at least some of the past transactions in Zeus, but unfortunately, nothing showed up after all these tests.\n\n**Blixt:** At least I can see some of the past transactions in Blixt, but still, it failed to sync fully.\n\n**Sparrow**: it restored my sats within 5 minutes while Zeus and Blixt were still syncing!\n\nHence, my testing of restoring funds from Aezeed and Taproot addresses, Sparrow wallet was the fastest, while Zeus and Blixt were still syncing. *Also, other Bitcoiners recommended a great tool to restore onchain funds for any dead LND node, and you could also give it a try:* [*chantools*](https://github.com/lightninglabs/chantools).\n\n____\n\n\n\n### **Takeaways**\n\n- If you are facing any force closed problems from Blixt or Zeus and want to recover the onchain funds, I recommend using Sparrow. ( see the steps above )\n- It's better to empty most of the funds for experiments before you know what you're doing—risk control is important, and every sats is precious!\n- ALWAYS keep the seeds well because your Bitcoin NEVER leaves you, and stay calm if you have any "missing sats" because high chance is that you only lack the knowledge to "locate" it.\n- Keep testing and learning - patience you must have, and these troubleshooting experiences are really empowering! Especially in times when people just want to buy ETFs without dealing with any self-custody, but they will never be free, because freedom is self-responsibility.\n\n**May the sats *always* be with you!**\n\n \N 8376 \N 224489 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 24.4680564728006 0 \N \N f 0 \N 0 228312747 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 172403 2024-05-19 17:13:47.951 2025-03-29 22:39:46.784 Luke Dashjr launches Ocean to radically decentralize Bitcoin mining \N https://ocean.xyz/about 15536 \N 172403 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.6325863637094 0 \N \N f 0 \N 0 159464073 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438607 2025-03-15 17:51:34.299 2025-03-29 22:39:46.785 The Lack of Compensation in Open Source Software is Unsustainable This is about open source, but has obvious implications for btc. Interesting to see how the btc ecosystem has responded to the challenge, and compare to ways other large products like Linux, postgres, Python, etc., have made do. \n\nIs a more systematic solution possible? I know there are various lists where btc-related devs can solicit funding; there are different grants by companies that are good stewards. Every so often a mega-whale from the past surfaces (e.g., Pineapple fund) and throws money around. Is it enough? Is danger ahead?\n\nAlso: sorry to front-run HN bot, but this is a topic of particular interest to me. https://trstringer.com/oss-compensation-broken/ 21416 \N 438607 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 16.2724899578242 0 \N \N f 0 \N 0 140704631 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 169365 2024-05-13 03:24:28.389 2025-03-29 22:39:46.785 Reflections on industrial mining after my first larger conference ![](https://m.stacker.news/42687)\n# NASHVILLE 2024\n\nI've made the trek down to [Bitcoin Park](https://bitcoinpark.com/) a number of times. It's about four and a half hours from where I live and it's not an unreasonable drive once a quarter for the incredible meetings they host down there. Other than that, I can't really justify the expenses, compounded with the time off, to go to most bigger bitcoin conferences. This past week, however, I had a steal of a deal to the Bitcoin Magazine conference, which also happened to be in Nashville. I would like to share with you all some thoughts as someone who is still fresh from their first experience meeting industrial miners.\n\n## POTTY BREAK\n\nGoing into last week, I assumed that most industrial miners had at LEAST the same general knowledge as home miners like myself about concerns for mining pool centralization. Friday afternoon, as most folks had already left the convention floor, I was waiting for my daughters to use the restroom and noticed IREN's virtual reality headsets. Curious, I held one up to my eyes to see their virtual facilities tour. I've never used a VR headset, so I was quickly under the spell and about to put the strap on the back of my head. Fortunately, I was interrupted by a voice asking what I thought. The spell was broken, I pulled the headset away, and I saw a smiling face clearly poised and ready to field my questions.\n\n## I DON'T KNOW\n\nI told him that it was "neat," which was honestly more to downplay the experience to myself than to him. In reality, the...virtual reality seemed more impressive than I wish it did. But I cut right to the point.\n\n"What do you mine to?"\n"Bitcoin."\n"I mean, what pools do you mine to?"\n"50% Foundry and 50% to AntPool."\n"Why those two?"\n"I don't know."\n"What would you do in the event of a 51% attack?"\n"I don't know."\n\nNow, you might be asking, "how much can you expect from an employee that's clearly there to impressive investors or something?" I would answer, quite a lot! This is the face that they're putting out at a conference specifically for bitcoiners. This wasn't a green energy conference. This wasn't a venture capital conference. But even if it was one of those places, this is one of the biggest concerns for his whole industry.\n\n## THEY'LL JUST SWITCH\n\nThe premier platitude for 51% attack concerns is that if these pools go rogue, all of the miners will just switch. Well...yes...I will leave with my mighty 15TH/s fleet*. Maybe folks experimenting with the fun [GekkoScience](https://www.419mining.com/shop/miners/gekkoscience-compac-f/) projects I saw will leave with their 200GH/s fleet. Maybe we'll even get lucky, and folks that bought the [Superheat](https://superheat.top/) water heaters will leave with their 68TH/s fleet. **However, the facility in that VR headset, _with 2.5 EH/s,_ isn't even thinking about this issue!** They have four other major sites like this.\n\nWhile not a scientific study, I spent most of the day on Saturday asking other industrial miners similar questions. For the most part, I got similar responses. To their credit, most hosting companies said that they let their customers choose their pools. However, are those smaller miners more like me or more like IREN? I didn't get a chance to catch anyone at TeraWulf, which is using nuclear power to mine. However, if their response is also Foundry and no plan, that's ~10EH/s that's being contributed to the 51% danger.\n\n## NOT EVEN IN THEIR BEST INTEREST\n\nI caught a pretty knowledgable employee from Syntona Friday evening and shared my concerns. He mentioned that this attitude doesn't even really line up with the financial incentives of the miners. I don't use Foundry and AntPool for reasons that are probably pretty obvious by this point in my rant, but he said they're also not the best for fees and FPPS and other reasons that started to fly over my head. He also mused that many of them would be better off solo mining anyway.\n\n## NOW WHAT?\n\nSo...is there a group that specializes in industrial miner education? Am I imagining a consulting firm waiting to happen? I feel as if I'm identifying a problem with an easy solution, but maybe some stackers here can tell me what I'm missing. I'd love to get on board with anybody that is already trying to make this happen. I'm not so presumptuous as to think I'm the first person to notice this concern, but maybe it actually is just having a fresh ear to the ground where many of you have already walked.\n\n\n*actually, not really because I, and probably most folks like me, already mine to smaller pools\n\n![](https://m.stacker.news/42687) \N 9796 \N 169365 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.807623677444766 0 \N \N f 0 \N 0 65533225 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 28931 2023-06-04 18:33:44.535 2025-03-29 22:39:46.786 Paying For Breakfast With Bitcoin At The Melville Deli ![deli](https://imgprxy.stacker.news/xcE38Dcl3l5dRguCi6GH42sxb5RRDbX7DlranxET2jQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvR3RWY25KZ0cvZGVsaS5qcGcw)\n\n\n\nThe Melville Deli\n90 Broadhollow Road\nMelville, New York 11747\n(631) 351-9338\nhttps://melvilledeli.org/\n\n\nI recently downloaded the [BTC Map](https://btcmap.org/) app from Fdroid and started looking around for local businesses that accept bitcoin. I was disappointed to see how few appeared within a 100 mile radius of my current home. In fact, there was exactly one that showed up on Long Island. (For non native New York readers, the New York City boroughs of Brooklyn and Queens don’t count as Long Island, even though they are physically on Long Island). That was the Melville Deli, located in Melville. I decided to pay a visit to this oasis located almost exactly midway between Manhattan and Montauk Point. \n\nI went for breakfast in the middle of rush hour on a recent Friday morning. The first thing I noticed was that the location was prime for attracting New York City commuters. It is just south of the Northern Parkway, one of the three east-west highways that connect Long Island to New York City, and on one of the major north-south roadways that bisect the Island. In short, lots of car traffic. \nThis surprised me. I expected a deli that accepts bitcoin to be a little mom and pop establishment. This is a major operation. \n\nWhen I arrived it was very crowded. There was a line at the counter where you place your order. You might want to plan to visit after rush hour, say 9-11 am. I made a few mistakes on my first visit, so I would recommend you do the following:\n\n- Ask if Simon is working. He is the owner of the place, and a long time bitcoiner. If so, relax. You’ll be able to easily pay with lightning. He is currently using the Phoenix Wallet.\n\n- If not, locate the bitcoin bar code by walking to your left as you first enter, and find this piece of paper taped to the wall just past the counter where the checks are paid:\n\n![bar](https://imgprxy.stacker.news/T7BzjBDZ2JfTYhnxpJwGzeZ9p3v9l99AqG8g8ePiKqM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvZmJjcDByNkovbWVsdmlsbGVkaW5lci5qcGc)\n\nThen let the person taking your order know that you will be paying with bitcoin.\n\n\nThere are some tables in the back where you can sit down and enjoy your meal.\n\nI chose a two fried egg sandwich with bacon and cheese on a roll. I consider this a classic New York breakfast sandwich. I’ve been eating them since I was a kid. This one was excellent. I read reviews from other diners, but the real proof of the quality of this deli’s food was the long line of patrons waiting to get served. I intend to get breakfast or lunch there at least a few times a month. It’s worth the drive.\n\n\nA few days after my visit I spoke to Simon, who is one of the owners. It was obvious right away that he is a committed bitcoiner. The photo above shows that the deli accepts venmo, cash app, and paypal. He converts all of those payments to bitcoin.\n\nHe told me this orange pill story:\n\nSimon always gives his employees Christmas bonuses. When he discovered bitcoin in 2016, he announced that everyone could either receive a $1000 cash Christmas bonus, or let him invest it for them. Everyone took the cash except for two workers. Simon bought them each $1000 worth of bitcoin, which was trading at around $900 back then. They still have their bitcoin. This past year he bought the two of them cold cards as part of their Christmas bonus. \n\nSimon has held bitcoin meetups in the deli, and he’s willing to start them up again in the future if there is interest.\n\nSince my visit Simon has been working on a more robust LN payment system, with a static lightning address to replace the on chain bar code that employees use when he's not working. The deli currently runs its own node. I sent him a [link](https://darthcoin.substack.com/p/getting-started-lightning-address) to one of @DarthCoin’s guides, which he found very helpful. \n\nI hope local bitcoiners make the Melville Deli their regular spot to grab a sandwich. The food is really good, even by New York deli standards. It is also very reasonably priced. For out of town visitors ([Pub Key](https://pubkey.bar/home) patrons, in all likelihood), I know it’s a long way from Greenwich Village to Melville. If you’re up for the drive, it is an opportunity to experience the real New York. I am a big fan of Pub Key, but I don’t believe I have met any native New Yorkers there yet. The typical local can’t afford to live anywhere near Pub Key. At the Melville Deli, you will encounter real New Yorkers, Long Island accents and all. \n\n \N 16638 \N 28931 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.3308713853932 0 \N \N f 0 \N 0 188109909 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 9736 2023-02-21 18:42:15.95 2025-03-29 22:39:46.786 Introducing PayPerQ (ppq.ai), your new default GPT4 experience, powered by LN Hey all, I’m really excited to introduce PayPerQ ([ppq.ai](https://ppq.ai/)), a vanilla ChatGPT4 experience which operates on a pay-per-query model via lightning payments:\n\n![Screen Shot 2024-02-28 at 7.47.06 AM.png](https://m.stacker.news/17901)\n\n**As I see it, the primary use cases are:**\n\n1. Making GPT4 available to users who may not want to pay for a full $20 ChatGPT Plus subscription,\n2. Making GPT4 available to global users who may find it difficult to connect a VISA/Mastercard to OpenAI.\n\nAs an example, you could run 10-20 queries a day through ppa.ai and still only spend ~$10 per month, and without having the burden of linking a credit card!\n\nOverall, I believe these two use cases could be really strong and that this bot could become the default GPT4 experience for many Bitcoin adjacent global developers and professionals around the world.\n\n\n**In terms of how the payments actually work, users have two options:**\n\n1. Deposit a lump sum credit and draw on that credit over time,\n\n2. Use realtime streaming payments directly from your Alby wallet (soon to be all NWC wallets).\n\n![Screen Shot 2024-02-28 at 8.00.48 AM.png](https://m.stacker.news/17904)\n\nI know that PayPerQ currently is not as feature rich as a ChatGPT Plus subscription, but as a developer, 95% of my usage currently is just using regular GPT4. For that reason, I’ve been focusing on making the GPT4 experience as polished as possible. Good layout and readability, consistent functionality, and a quick and easy payment flow have been my priorities so far.\n\n**If you are a regular user of GPT4 and you take some time out of your day to try this out, please come back to me and answer this question:**\n\n> "What is stopping ppq.ai from becoming your default ChatGPT experience?"\n\nIf you could let me know your answer to this it would greatly help me in making improvements.\n\n**Transparency:**\n\nppq.ai _does not_ know your name or email.\n\nppq.ai _does know_ your IP address and user agent string.\n\nppq.ai _does not_ store the content of your queries or the content of the output from openAI. Your content is sent through my server and onto openAI, but it is not stored on my server. All of your conversation content data is stored in your own browser history in localstorage.\n\nppq.ai _does store_ the number of input tokens your query has as well as the number of output tokens that openAI generated. I do this so that I can configure pricing appropriately.\n\nppq.ai _has to_ run every query through openAI’s moderation API. If I didn’t do this, a user querying for pedo stuff, bombmaking stuff, etc could cause openAI to shut off ppq.ai’s entire account, ruining it for everyone.\n\n**Request for help:**\n\nI would like to build this into a business, but I am not a seasoned developer by trade. If you are also passionate about this project and experienced in typescript, nextjs, and express, please reach out to me!\n\nTwitter: https://twitter.com/PPQdotAI\nTelegram: https://t.me/+ZjJDTazIrV0zNDFh\n\n**My thoughts on ppq.ai’s impact on lightning adoption:**\n\nWhile the premise of this app may seem basic, I believe that, if executed well, it may become the first major app to really spur lightning adoption beyond hobbyists. Why? Because it's actually solving real problems by saving people money and giving them access they might not otherwise have.\n\nPayPerQ represents one of first practical pay-per-use models out there and may be help us all get away from the many monthly subscriptions we have for data storage, entertainment, news content, and more.\n\n# Please try it out and give feedback! ([ppq.ai](https://ppq.ai/)) \N 9084 \N 9736 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.5432344856911 0 \N \N f 0 \N 0 142512496 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 49065 2023-08-12 19:59:05.388 2025-03-29 22:39:46.786 How to change culture? SN is occasionally viewed as an attempt to change social media culture. Bitcoin's scarcity might make online culture more like offline culture by reintroducing culture to it's natural habitat, but our goal has been to serve culture not change it. If culture is largely a market phenomena, productive markets should yield productive culture. However markets aren't [perfectly efficient](https://www.investopedia.com/terms/e/efficientmarkethypothesis.asp) and [will fail somewhere somehow](https://www.investopedia.com/terms/m/marketfailure.asp). \n\nAs bitcoiners, we see [fiat as the source of market-culture failure](https://www.amazon.com/Fiat-Ruins-Everything-Financial-Bitcoin/dp/B0CFDCGZBK), but at present bitcoin fixing culture is limited to circular economies. Mainstream culture is plenty broken, whether that's education or health or family or whatever, yet we can't bitcoinize the world tomorrow so what else can we do?\n\nWhen I ask myself how to change culture, [Edward Bernay's example of how to sell pianos](https://www.goodreads.com/quotes/7707634-what-are-the-true-reasons-why-the-purchaser-is-planning) comes to mind. Bernay suggests culture can change by convincing people it already has. On another level though, it suggests that market participants are incentivized to change culture. If mainstream culture is broken, are we failing to create such culture makers? How can we make more of them?\n\nStanding desks come to mind too which became common rather quickly. Culture seems to have absorbed ["sitting is the new smoking"](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4838429/) and paid for motorized desks without flinching. Why did this intervention succeed while ones like [minimal footwear](https://en.wikipedia.org/wiki/Barefoot_running) haven't? Does the better culture always win?\n\nIn early parts of [Broken Money](https://stacker.news/items/274195), we learn scaling our [native](https://en.wikipedia.org/wiki/Psychological_nativism) coordination culture *creates* markets and money. Thus culture and markets operate in some kind of feedback loop and culture has inputs independent of markets. Are there other non-market inputs to culture we might be able to use to change it?\n\nIf you haven't given culture or markets direct study, experiencing time makes us all anthropologists on some scale. Have you witnessed culture change significantly and positively? What's your best guess to what caused the change? \N 704 \N 49065 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.1770384201906 0 \N \N f 0 \N 0 56023938 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 61082 2023-09-08 09:45:51.756 2025-03-29 22:39:46.787 I orange pilled a small merchant, help make it stick! So, my partner dragged me to the [Rochester Fringe festival](https://www.rochesterfringe.com/), and while buying some delicious [Kettle Corn](https://www.rochesterkettlecorn.com/) there, I asked Danielle, the woman at the cashier, whether she accepted Bitcoin. \n\nShe said “not yet!” She then proceed to tell a story of how a fellow vendor said during a team huddle that “if we passed a 20 dollar bill, by the time it got around this circle it would still be a 20 dollar bill, but if we used credit card transactions, all we would have left are transaction charges from the banks.”\n\nThis is the first time I received a positive response from a merchant in the US! We ended up buying a bag of kettle corn, and paying her with Bitcoin after helping her download Wallet of Satoshi. \n\nSo, now I need your help to make this experience stick for the merchant! Her wallet is **stonyrandom34@walletofsatoshi.com**\n\n![](https://imgprxy.stacker.news/fMVIsEbinBhb_Tq06SuxzJLHCk_eEkLiXiDmb4EA07c/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wcmV2aWV3LnJlZGQuaXQvMzVja2llMWJhanBiMS5wbmc_d2lkdGg9MjAzJmZvcm1hdD1wbmcmYXV0bz13ZWJwJnM9ZTgxMTkwNjM5OWY0NTk0NjIxNzRlNjkyOWM1Y2VlOTAxMDNmNWM3Mw)\n\n**Let’s send her some sats so she can feel the power of magic internet money, and how it can be a game changer for small merchants at festivals the world over!**\n\nPS: This is their [facebook page](https://www.facebook.com/RochesterKettleCorn/). If this takes off, I plan to leave them a message tomorrow so they know where all the sats are coming from. I am also including a screenshot of our purchase payment, as well as a photo of the kettle corn we bought!\n\n![This is our purchase!](https://imgprxy.stacker.news/YxXcIVYWuRdxBJWldLmBJ2PCvIkuzSlXYppx2ENkSZY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wcmV2aWV3LnJlZGQuaXQvdW5zcnh6ZGhhanBiMS5qcGc_d2lkdGg9OTk2JmZvcm1hdD1wanBnJmF1dG89d2VicCZzPWIzNjc4OTkzOWMyZTMyOGJhODRkNzMxYmRhZjA0Y2EyNTRjN2IyZTQ)\n![The Kettle Corn was delicious!](https://imgprxy.stacker.news/ydX-I6ABf0jnW6zcSOehsFw0GgOneSOdb2aEe483Nw0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wcmV2aWV3LnJlZGQuaXQvZjh0eDEyZm1hanBiMS5qcGc_d2lkdGg9MzAyNCZmb3JtYXQ9cGpwZyZhdXRvPXdlYnAmcz1iMzIxZGU1MjAxMzRjNmYyMTg2ZWMyMzYyOTE0OTczNWI0Njk2MjU2)\n\n \N 1316 \N 61082 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.2013362294027 0 \N \N f 0 \N 0 78344835 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 48877 2023-08-12 08:08:33.239 2025-03-29 22:39:46.787 The 66-Bit Puzzle has Been Solved! Many years ago, back when BTC was worth every little, an anonymous user created 160 "puzzles" on the Bitcoin timechain. Each puzzle is simply an amount of BTC which is locked by an address that was generated with a purposefully low-entropy private key.\n\nThe anon user published the list of 160 bitcoin addresses along with the amount of entropy used in the private key for each address. Address #1 only used 1 bit of entropy so the private key for Address #1 was literally either 2^0 or 2^1 (000..001 or 000...002). Needless to say, the first dozen puzzles were solved almost instantly. However, each puzzle is twice as difficult to "crack" as the previous one.\n\nOver the years, the remaining puzzle addresses have received additional deposits from people looking to "sweeten the reward".\n\nYesterday, this transaction entered the mempool: https://mempool.space/tx/8c8ec6b3511c62500ea9b3a1c30ca937e15d251b55d30290a2a6da2f1124f3fb\n\nIt spends from the 66-bit puzzle address: 13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so\n\nThis tx (accidentally) revealed the script pubkey of the address to everyone watching the mempool. This was a big mistake.\n\nSince these addresses are known to be generated with low entropy, it only takes a few seconds/mins to brute force the private key if you already know the public key.\n\nThis caused the tx to be RBF'd by "bots" who were monitoring the mempool for spends of these puzzle addresses. \n\nThis tool was likely used by the bots: https://github.com/JeanLucPons/Kangaroo\n\nThe bots managed to recreate the exact same private key from this accidentally revealed public key in just a few mins, meanwhile it took years and many Megawatts of compute to find the private key from just the address.\n\nIt appears most of the 6.6 BTC reward locked by the 66-bit key (we can't really call it a private key anymore) was redeemed by these bots.\n\nIt also possible that something nefarious happened (like a puzzle pool operator tried to make it look like bots stole the TX, when, really it was all a coverup to steal the reward from the pool participants).\n\nThis "theft" of the 66-bit puzzle reward highlights another use-case for "private" tx-inclusion services offered by large mining pools. If the finder of the 66-bit key had sent their TX direct to a miner, then maybe it could have been fully redeemed (assuming the miner didn't try to steal it also).\n\nAnyways, its a good lesson in the importance of using strong entropy. The completion of these puzzles is also a reminder that compute is getting faster and cheaper every year, and Bitcoin relies on compute being expensive to enforce its property rights.\n\n**Warning**: If you're thinking of joining one of the pools "cracking" these puzzles, consider your risks! Most of these pools are fully trusted and not auditable. You're spending real resources (GPUs and electricity) for a chance to be granted a reward by a trusted pool operator. There's also a ton of technical risk, even if your pool manages to crack the next puzzle, there are many factors that can lead to no payout for you!\n\nSource: https://btcpuzzle.info \N 15160 \N 48877 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.4174145002968 0 \N \N f 0 \N 0 71225886 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436110 2025-03-13 10:28:06.808 2025-03-29 22:39:46.787 My Solemn Vow My lottery miner got delivered this morning. I hereby promise that I will donate to the Stacker News rewards pool 1 shiny, brand new bitcoin when I win my first block, IF I win it pre 2024 halving. If it happens after the halving, I will donate 1/2 of a bitcoin. \n\nSomeone told me I had a better shot at winning a block than I do the New York State Lottery.\n\nYou gotta be in it to win it!\n\nI am happy my 1TH/s will keep mining decentralized. \n![1000000598.jpg](https://m.stacker.news/19688) \N 20479 \N 436110 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.0368401969797 0 \N \N f 108038818 \N 1 17730420 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 452063 2025-03-24 22:43:42.86 2025-03-29 22:39:46.788 Constructive Critism vs. Unconstructive Critism of OpenSats I do not understand most of the criticism of OpenSats. \n\nI mean, I think I do but it is couched in a lot of nonsense about secrecy and lack of transparency. I wonder if its sour grapes mostly. People that were not funded. People that are jealous. I dunno. It bugs me.\n\nI'm not saying OpenSats is perfect but its just one of several orgs that support projects. Every time I hear an uneducated and unfair criticism of it I wanna say, "go do it better and show us how its done". \n\nOne of my biggest pet peeves is when people infantalize themselves or others. People choose to give to OpenSats. People are capable of reading their web site, looking at the projects they support and deciding if they would rather donate directly to devs/projects or not donate at all.\n\nThere are many non-profits in the world. MANY of them I would never give any money to. It is insane to me to throw rocks at one that is supporting good things. I'm not saying they are above criticism but the criticism should be fair, informed, and logical. I see very little that fit that mold.\n\nIf you have a problem with someone doing at least some good, your message is easier to take if you aren't petty and unfair in your criticism. Criticism is needed and has massive value but many seem to suck at creating the valuable kind. \N 891 \N 452063 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 8.00939123156486 0 \N \N f 110253153 \N 2 229751016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407671 2025-02-18 09:38:48.437 2025-03-29 22:39:49.746 \N Darth in 3...2..1.. https://example.com/ 8570 407668 407018.407063.407581.407583.407586.407663.407668.407671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4871390515571 0 \N \N f 387541929 \N 3 43594528 0 f f \N \N \N \N 407018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435919 2025-03-13 05:27:40.164 2025-03-29 22:39:49.748 \N You could choose Bitkit, Mutiny or Blixt. These wallets are similar to Phoenix, but allow you to connect to any LSP/node.\n\nMuun << https://example.com/ 21014 435154 435154.435919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3905389201561 0 \N \N f 186046123 \N 1 196533430 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 23:32:42.671 f \N \N \N 0 0 0 0 1 0 0 158305 2024-04-16 07:27:52.173 2025-03-29 22:39:46.784 Bitcoin is Slow > Programmers know the benefits of everything and the tradeoffs of nothing.\n\n~ Rich Hickey\n\nI was once at a software dev conference and there was a guy that did a talk about making your app faster. It was very entertaining. He proceeded to go through many examples of things you can do to your application to make it faster. My favorite by far was removing all your tests. He said, this will speed up your build times, pipelines, deployments, and development time. He was right. If you remove things like testing from an application it appears to make everything faster and easier. But, as with everything there are tradeoffs.\n\n> There are no solutions, only tradeoffs\n\n~ Thomas Sowell\n\nAlong the path of my bitcoin journey like many others I fell into the shitcoin trap. I heard the criticisms of bitcoin like it is too slow. Its slow at processing transactions. Its development has slowed. You can't get any changes into bitcoin. These criticisms made sense to me at the time. But there was something that bothered me. People that made these criticisms never talked about the tradeoffs. They never talked about why these decisions were made. They never talked about the threats to bitcoin. I mean really, they never even talked about WHY BITCOIN WAS NEEDED! That's the biggest one that still stands out to me today with shitcoiners.\n\nSo, is bitcoin slow? Slow as compared to what? Its not slow compared to fiat. Just as most people that are into crypto don't understand bitcoin these people don't understand fiat. They don't understand final settlement. Its just magic. As a software dev things that appear to be magic bother me. I wanna know how it works. I've done some work with fiat payment systems over the last 15 years and I can tell you that it isn't magic. It also isn't fast. There is a huge level of trust involved as well as risk. This is really what convinced me that everything but bitcoin is a huge waste of my time and energy. That's the best case scenario. Worst case they are just scams. \n\nWhen I meet someone into crypto I try to ask them questions. I like to know why people think what they think and do what they do. I like to learn. I usually ask them what problem does this thing they bought solve. I try to feel them out on how they view the relationship of the state to the individual. Usually they don't have a good answer other than they want to get rich. Its pretty much just a stock. And most of the time they do not have a problem with the state. They don't like the team opposite to their team but they don't really understand the problems with fiat money and how it fuels the war machine. I will ask them why they don't hold bitcoin. They will say it is too slow. Its gonna be replaced by some newer and faster token. I always leave the conversation disappointed in their lack of curiosity, skepticism, and imagination. Sometimes, they also hold bitcoin though. And they seem to get that its limited supply is worth paying attention to. But usually that's the best I can hope for.\n\nI still feel like I have a lot to learn about bitcoin and how it works on a technical level but I've learned enough to have more confidence in it that any other store of value or medium of exchange. Bitcoin is not slow. These people that think it is slow are comparing it to their inferior projects that have ripped out the most vital parts of bitcoin and replaced it with speed. Just like I could remove tests from my software projects and speed things up, that would create other problems. Problems I want to solve.\n\n\n\n \N 19524 \N 158305 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.3651795627841 0 \N \N f 0 \N 0 117116987 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449854 2025-03-23 15:19:38.803 2025-03-29 22:39:46.784 My project got hacked and user funds were stolen ## BitcoinLink\n\nDuring the Bitcoin++ hackathon, I built BitcoinLink as a simple showcase of how you can use Nostr Wallet Connect (NWC) to create non-custodial, one-time-use reward links redeemable via lightning. The service allows you to send bitcoin to anyone with a simple link redeemable with Lightning via NWC. The sender generates an NWC with either Alby or Mutiny, chooses a total budget and the number of links to split that budget across. BitcoinLink then generates a pseudorandom secret, encrypts the NWC with the secret, stores the secret in one or many links, and saves the encrypted NWC in our database. The receiver clicks one of the links, the app detects and decrypts the NWC, and sends the bitcoin directly to the receiver's wallet from the sender's wallet over lightning.\n\nI was particularly proud of this scheme because it splits the encryption key and the encrypted NWC into two separate places. The server never saves the secret, and the sender can create multiple links from one NWC. However, despite this theoretically sound approach, I made a grave implementation mistake that allowed a hacker to access both the secret and the encrypted NWC, leading to the theft of one of my user's funds.
\n\nIn this post, I'll walk you through the hack, how I fixed it, and what I learned from the experience.
\n\n## The Hackathon\n\nI built the first implementation of BitcoinLink at the Bitcoin++ hackathon. During development, I made a few bad assumptions about how I could build my MVP, which required some architectural changes midway through the build. This is a common occurrence in hackathons, so I made the changes and continued on. I managed to get the MVP working and submitted it to the hackathon. I was thrilled with the result and excited to see people's reactions. After the hackathon, a few people approached me, interested in using BitcoinLink for various purposes, which was encouraging.\nFollowing the hackathon, I made basic improvements to the UI and flow, added the ability to generate links with Mutiny Wallet, and created an API endpoint for programmatically pulling generated links. Unfortunately, during this time, I neglected to review my code thoroughly and audit the core flow of the app. Had I done so, I likely would have found the vulnerability before it was exploited. However, I was distracted by shiny new features and didn't take the time to clean up what had already been built.
\n\n## The Hack\n\nLast week, I woke up to a message from one of my users saying their Alby wallet had been drained of over 200,000 sats. I was shocked. I had built this service to be non-custodial and secure—how could this have happened? I quickly checked my logs and saw a trail of requests that appeared to be someone generating and claiming links, playing with the endpoints. My user had generated many links with a large budget on their NWC. The hacker got one of these links, accessed the secret, and decrypted it. But how?\nI reviewed my code and quickly saw that one of my most critical endpoints was left unprotected, allowing the attacker to pull down the encrypted NWC if they had the ID. I was devastated. I had failed my users. The hacker, with a valid link someone else generated, was able to grab the secret from the link, pull the encrypted NWC from my unprotected endpoint, decrypt it, and drain it of its full budget. It was such a simple oversight—I couldn't believe I had missed this critical vulnerability. Because the code was open source, the hacker was able to play around with the service, discover the vulnerability, and exploit it all within a single night.
\n\n## The Fix\n\nOnce I understood how the attack happened, I immediately began working on fixes. This started simple but quickly ballooned into a full re-architecture of the service and security model. I decided to move the decryption of the NWC and the payment into the execution context of my claim endpoint so that the encrypted NWC would never be exposed to the client. Payments could only be executed server-side for the exact amount encoded in the link. I also now duplicate and re-encrypt the NWC across my database with different unique secrets for each link/NWC and unique NWC IDs for each encrypted NWC. This effectively decorrelates all links and NWCs, ensuring that even if a secret gets leaked, an attacker will never have access to the encrypted NWC and vice versa.
\n\n## What I Learned\n\nThis experience taught me a lot. It was the first time a project of mine had been hacked, the first time I lost (someone else's) money due to my mistake, and the first time I had to play cat-and-mouse with a hacker trying to pwn my users in real time. I'm very disappointed in myself for letting this happen, but I know it's important to share exactly what happened and take responsibility for it. I strive to be transparent with my work—everything I've ever worked on as a developer has been open source and done in public. It would be hypocritical of me not to share my failures as well.\nOverall, this was an important learning experience. I gained a better understanding of security, the importance of code reviews, and the necessity of auditing your code to ensure it's secure. I have a newfound respect for the level of responsibility I have when building and shipping projects to end users, especially when they involve payments. I hope others will heed my warning and always proceed with caution and an adversarial mindset when building and deploying software.
\n\n## Conclusion\n\nWith all of that out of the way, let me put my money where my mouth is.
\n\nHere is a bitcoinlink that correlates to a 100,000 sats NWC that I generated with Alby (this one is a freebie, someone will be able to claim 1000 sats): https://www.bitcoinlink.app/claim/clxj1w9sn0001zjaemkmmv0uk?secret=6fb00c23ed97261f18d7fbf5ce71e6f5d524531bdf7be9cbb5cd65885f923e9f&linkIndex=ceab5be1-1422-405d-acc3-e21a4c12c41c\nHere is the bitcoinlink [source code](https://github.com/austinkelsay/bitcoinlink)
\n\nI invite anyone with the technical chops to take the information in this link and the source code and try to hack the updated version of BitcoinLink and drain my NWC. I'm fairly confident that my updated version of BitcoinLink will make this immensely more difficult, but I would love to be proven wrong. You can earn a decent bounty for doing so. If you do, please let me know how you did it so I can fix it and make it better for everyone else.
\n\nOnwards!\n \N 13177 \N 449854 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.92525402002249 0 \N \N f 0 \N 0 80709584 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 115886 2024-01-20 10:50:39.204 2025-03-29 22:39:46.785 Lightning Wallets: Self-Custody Despite Poor Network - Apps Tested in Zimbabwe During my stay in Zimbabwe I wanted to find out how self-custodial LN wallets perform in rural areas to enable inclusion for anyone. You'll be surprised by the results! https://anitaposch.com/lightning-wallet-test-2024 7425 \N 115886 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.53981883732332 0 \N \N f 0 \N 0 22450724 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307811 2024-11-25 12:01:13.838 2025-03-29 22:39:46.786 Opinionated MSM Community Feedback Summary # Opinionated MSM Community Feedback Summary\n\n## Prelude\n\nThis might be cringe since I am not exactly sure how to best make this part of our internal debate around [MSM](https://stacker.news/items/444168) and [v2 of it](https://stacker.news/items/489094) public without making it possibly cringe but it's important enough for me to risk cringe. If it's cringe, direct your cringe at me, lol.\n\nI think it might be cringe since it puts SN (the company) in a weird public spot. This makes it clear that the team is not aligned in all decisions—even though it should be obvious that's not always the case and maybe that would be even more weird. Even though we all work on SN, we're still individuals with our own visions for it.\n\nI actually had a discussion with @k00b about something else yesterday where he essentially encouraged me to have my own vision. I realized I used to have one but at some point, it must have changed to me trying to predict what @k00b's vision is. Maybe because I was trying to avoid conflict? Or because I was taking on a subordinate role and felt whatever my vision for SN is, it must be inferior to his due to my lack of professional experience? I don't know but that's another topic.\n\nI think that was prelude enough. I thought about editing some tone in the original internal message but I figured it would be better to leave it as is. Would just take more work from me and it wouldn't feel as honest as possible.\n\n## Original Message\n\n> First of all, sorry that I didn't write something into #debate about MSM last week to discuss it in more detail. I intended to but it wasn't easy to find the right words instead of just "I don't like it and I can't tell you exactly why". But with the new iteration, it got easier thanks to the new load of comments about it and afaict, again mostly against it [0]. So here's my feedback summary (I don't want to write or burden you with a wall of text):\n>\n> I think paying 36 stackers more compared to March is better but I think it's still **too competitive**. I think this was and still is my main argument against monthly rewards (at least in this competition format and maybe I didn't articulate myself well before).\n>\n> It's hard to summarize all comments against MSM on SN but I'm going to try it anyway: I think the ones who mention that they don't like it essentially don't like it because it draws too much attention away from what SN was before [1]. Daily rewards were like a nice side-effect of contributing on SN but not the main driver of contributions. They were like:\n>\n>> _Hey, thanks for contributing and oh, btw, here's a daily reward._\n>\n> It was a fast feedback loop and it felt more like an addition to the zaps you received from the community anyway. Therefore, the main driver was interacting with the community itself and zapping or getting zapped, reading or posting content and replying. The reward was just a confirmation of how valuable your contributions on that day were. It was also a nice reminder about SN every single day. They were also private by default.\n>\n> This competition style with a public leaderboard seems to turn the community against it each other:\nhider vs non-hiders, "popular" content vs "unpopular" content, being on the leaderboard ("the popular people") vs not ("the newbies").\n>\n> I am honestly not surprised that MSM has not lead to more registrations since when you join SN and you see only 64 (now 100) will get paid, you're not going to feel like:\n>\n>> _Hey, I am going to commit a lot of time this month so I can maybe get on the leaderboard and get a few thousand sats even though I don't really understand how the ranking system works._\n>\n> (not to mention that even if you're not a new stacker or a very old stacker, you still don't understand how the ranking works)\n>\n> Competitions can be fun but they can also be very toxic and actually make something less fun that was fun before (making a profession out of a hobby for example).\n>\n> In my (probably not very humble) opinion, we're overestimating the long-term impact of MSM on the metrics instead of MSM just being a new thing that hadn't finished its first loop yet.\n>\n> Additionally, rationalizing decisions solely based on metrics makes us look very corporate and detached from the community:\n>\n>> **The Good**\n>> - The number of stackers earning for their posts and comments hit all-time highs (up 13% and 11% respectively in March)\n>> - The number of stackers spending sats hit an all-time high (up 4% in March)\n>> - The number of items created hit an all-time high (up 23% in March)\n>> - The number of comments/post hit an all-time high (up 29% in March)\n>> - The number of zaps hit an all-time high (up 26% in March)\n>> - We had our second biggest month of sats spent on zaps (up 25% in March)\n>\n> Mentioning only that registrations weren't up in "The Bad" also feels like a slap in the face of everyone who commented against it. All arguments against it were ignored in this section ...\n>\n>> **The Bad**\n>> One metric which remained flat in March is the number of new stackers signing up to SN. We have a few experiments planned to target this specifically, which we hope will incentivize more signups and help stackers earn more for their referrals.\n>\n> ... and were only acknowledged with this sentence in the final note:\n>\n>> The Stacker News team has been closely monitoring feedback and data from Million Sat Madness, and has been debating the right approach to rewards both internally and on SN.\n>\n>> From the start this was jammed down everyone's throat without stacker's input.\n>\n> — @siggy47, https://stacker.news/items/489540\n>\n> I don't want to downplay the metrics and that we did receive more and better content (also acknowledged by some comments) but I don't think that's worth "sacrificing" the sense of community that we've built up so far. I think we're focusing too much on improving metrics. They should just be proxies for other things that are harder to measure like the direct feedback of stackers (old or new).\n>\n> The last month has not only pitted the community against each other but also us against the community since we seem to be too focused on improving metrics and are ignoring everything else.\n>\n> [0] maybe the ones who like it aren't commenting as much but I don't think that's the case (personal feeling, not based on anything tangible or also can't explain well)\n>\n> [1] It doesn't even seem to matter if they benefit from MSM or not. We mentioned our goal is to reward the top 100 stackers more, but did they even want more rewards? Was "we are not rewarding good content enough" really a problem that was serious enough to motivate drastic changes to rewards?\n\n## Summary of Discussion\n\nFollowing this message, there was some discussion between @kr and me.\n\nHere is my summary of it:\n\n### Registrations\n\n- registrations numbers have been at 800 new stackers/month since 2022\n- neither daily rewards nor MSM impacted registrations\n- biggest driver of registrations has been paid advertising (for example, running ads on [Fountain](https://fountain.fm/))\n- we're planning to do more paid advertisement\n\n### Long Tail of Rewards: New Stackers vs Sat Farmers\n\n- long tail means "sat farmers" are more likely to get rewards\n- people spinned up multiple accounts to earn a bigger chunk of the daily rewards long tail\n- only participating in contests like Meme Monday or Fun Fact Friday was enough to get daily rewards\n- with monthly rewards, sat farmers who only participate on a few days per month fall behind more regular stackers\n- monthly rewards might be a "nuclear option" against gaming of rewards\n- maybe "how many stackers should get rewards?" is the wrong question and it should be "which stackers should get rewards?"\n- how does a missing long tail of rewards impact new stackers? do they prefer a challenge with a public leaderboard or do they feel excluded and demotivated?\n- even with monthly rewards, bar is still pretty low to earn rewards\n\nEssentially, the question here might be:\n\n**What is more important: Inclusion or Competition?**\n\nInclusion means a long tail of rewards for new stackers but also means less rewards for regular stackers. Some of these rewards then also actually go to "sat farmers" which hurts SN from two directions: good content gets rewarded less while bad content from sat farmers is rewarded more.\n\nCompetition on the other side makes the SN experience evolve more around rewards which can be too much but rewards content that most like ("good content") more. Competitions can be fun for competitive stackers but they can also get toxic and lead to turning against each other.\n\n### Awareness of Rewards\n\n- rewards should be viewed as a bonus but are they?\n- people outside of SN dismiss daily rewards: "why should I care about a few sats per day" even when told it can be 4-5 digit amounts per day\n- having one big reward pool for a month grabs more attention outside of SN than smaller pools every day\n- paying out one big chunk of rewards grabs more attention inside of SN than paying out smaller chunks every day (even if it leads to mostly the same amount per month)\n- amount of daily rewards for great stackers ("the unspoken club") were opaque to new stackers\n- daily rewards were often a surprise: surprises are nice but not knowing about daily rewards is bad\n- can there be too much awareness of rewards?\n\n## Wrap Up\n\nI hope this makes it clear that we're not unaware of the controversy around MSM but daily rewards also had their issues which might not have been as obvious as the issues with MSM.\n\nI definitely look forward to less centralized planning from our side and more competition between territories with their own individual reward policies instead of forced competition between stackers by us but we're not there yet. \N 15196 \N 307811 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 18.5185927823719 0 \N \N f 0 \N 0 212966658 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138238 2024-03-07 08:59:04.562 2025-03-29 22:39:46.787 Future of work via Bitcoin ❓ A shorter post today than my usual, but I wanted to invite discussion on a particular subject.\nI have yet to formalise my view on what the future of work will look like. Work that is 100% running on-top of Bitcoin (whether people know it or not).\n\n### Questions\n`1. What do you think WILL change with the nature of our work?`\n`2. Perhaps more importantly, what do you think WILL NOT change?`\n\n### Potential Prompts\nTo help, it would be great to think about each aspect of our work:\n- Skills - generalists vs specialists\n- Mass production vs hand-crafted\n- Hiring process & length of contracts\n- Locations\n- Frequency of payment\n- Automation - what stays & goes\n- Longevity - temporary teams vs formal bootstrapped companies\n- Values, work culture, working hours, conditions & more\n\n### Share Inspirational Links\nWould love to know what you all think and for you to share any links/resources (e.g. Aantonop videos) that have been influential / inspirational in your thinking... \N 20734 \N 138238 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 18.0429004662923 0 \N \N f 0 \N 0 179624110 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 284000 2024-11-01 18:46:31.588 2025-03-29 22:39:46.787 Discreet Log Contracts settled with Chaumian ECash > Today I’d like to describe a way to use Chaumian Ecash to commit to a conditional payment using an Ecash mint as a blind but trusted intermediary.\n\nTechnical feedback appreciated - [Comment on my PR here](https://github.com/conduition/conduition.io/pull/6)\n\nDo you think this would make a good [NUT](https://github.com/cashubtc/nuts) on the Cashu spec? \n\nWhat would you build if you had access to a DLC-enabled Ecash mint? https://conduition.io/cryptography/ecash-dlc/ 11275 \N 284000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.78008503534978 0 \N \N f 0 \N 0 236951654 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 147826 2024-03-23 16:05:24.625 2025-03-29 22:39:46.787 Hedge against Inflation *Episode XIX. Block height: 850000. Surviving hyperinflation and economic turmoil. A practical guide.*\n\nOriginal: https://carlbmenger.substack.com/p/hedge-against-inflation\n__________________________\nIn the dawn of hyperinflation's relentless grip, life becomes a ballet of survival, where every coin is a fleeting whisper of yesterday's worth. Families dance through markets, eyes scanning for sustenance among barren shelves, hearts racing against the ticking clock of devaluation. The garden, once a mere pastime, transforms into a sanctuary of hope, each sprout a promise of tomorrow's meal. Neighbors weave closer, threads of camaraderie tightening as they trade bread for skills and laughter for solace. Children play in the streets, their games a poignant reminder of innocence amid the struggle, and their laughter a symphony of resilience echoing through the alleys of uncertainty.\n\n![Broken Dreams](https://m.stacker.news/39035)\n\nHyperinflation, an economic scenario marked by an uncontrollable and rapid increase in prices, wreaks havoc on economies, undermines societal virtues, erodes personal savings, and significantly reduces purchasing power. Although it may not seem imminent in some countries, historical evidence suggests that every fiat currency eventually loses its value over time - Gradually, then suddenly. Thus, protecting yourself and your hard-earned assets from hyperinflation becomes paramount. Beyond financial strategies, enhancing personal development through continuous education, financial literacy, and self-sufficiency practices, along with building strong community networks, forms a comprehensive approach to ensuring resilience and adaptability in the face of economic instability.\n\n### The Government\n\nBad news first: During severe economic turmoil and hyperinflation, governments often tighten their grip on power, imposing stringent controls to maintain order and curb economic chaos. They might implement price controls, attempting to cap the cost of essential goods and services, though these measures often lead to black markets and further scarcity. Currency restrictions have become commonplace, with limits on bank withdrawals and foreign exchange to prevent capital flight. Propaganda is ramped up, with state media emphasizing nationalistic themes and portraying the government as the defender against external and internal economic enemies. The regime might also suppress dissent harshly, using security forces to quash protests and silence critics who challenge their handling of the crisis.\n\nThe pattern has repeated itself many times throughout history. Ordinary people are desperate for a charismatic leader. This person will come as a savior who will promise to fix the economy, get your job back, and put food on your table. People instinctively know that those promises are bullshit, but they are so desperate that they want to believe that “this time is different” and the promises are true, so the majority will vote for this authoritarian leader, and there is little you can do about it as an individual.\n\n> “History doesn't repeat itself, but it often rhymes.” – Mark Twain.\n\nIn a bid to stabilize the economy, authoritarian governments officials centralize economic decision-making, taking direct control of industries and centralized networks. Emergency decrees will override existing laws, allowing the state to seize private property or requisition resources deemed critical for survival. Corruption and favoritism flourish under such regimes, as loyalty to the ruling party becomes a prerequisite for business success. Public trust erodes as the disparity between official narratives and everyday hardships grows more apparent. This means that your government won’t or can’t save you or your loved ones. You are the only one who can save yourself!\n\n### Be Fit\n\nAn economic crisis, like any other major disturbing event we face in life, can be dealt better if we have both mind and body prepared for it. Things will inevitably get tough, unfair and painful, both physically and emotionally. You will have to deal with it. Being a crying baby who blames others and calls himself/herself a victim won’t fucking help. Man/Women up, now!\n\n#### Physical Health\n\nGetting your body into shape is the most important thing you should do for yourself right now, not just for hyperinflation. Fighting against inflation while you yourself are inflated like the German Mark during Weimar Germany won’t help your cause. Your body is your most valuable physical tool. Your brain provides the software but needs the hardware to perform at its best. I am not saying you need to be the next Arnold Schwarzenegger, but you should be able to do hard work, fight, run, and, if needed, carry a backpack weighting ten to twenty percent of your own body weight.\n\n**Beware:** Fix any health problems now, when you are still able to find a doctor and get proper medical attention. Things will get turbulent during economic turmoil, and it will be hard to find and/or afford a doctor. Therefore, get your teeth fixed! Better smile and be healthy now, then sorry later.\n\n#### Mental Health\n\nPreparing mentally for hyperinflation involves building resilience, staying informed, and maintaining a proactive mindset. Develop a positive mindset by focusing on controllable aspects of your life and practicing gratitude. Engaging in regular stress-relief activities like mindfulness, meditation and deep breathing exercises can help you stay calm and focused during turbulent times. I personally discovered Stoic Philosophy to tackle daily struggles, be more resilient and less fearful. Everyone has their own sanctuary, discover yours.\n\nIn addition, learn some basic practical skills, like growing your own food to reduce dependence on expensive groceries and acquiring skills in home wrecking and vehicle maintenance to save costs on professional services. Develop a network for bartering goods and services, which becomes tremendously valuable once the value of currency is gone. Bartering will be the new normal, and you need to provide real hard value to others to be able to exchange goods and services in a post-currency era.\n\n### Build Community\n\nFinding a like-minded tribe is not an easy task. However, start by fostering strong relationships with family, friends, neighbors, and community members who can provide mutual support and resource sharing. Strengthen your ties with family and close friends, as these relationships are often the most reliable during crises. Participate in local community groups, such as neighborhood associations, volunteer organizations, or local clubs, to meet new people and expand your support network. Engaging in community events and activities can help build trust and camaraderie, essential for a resilient network.\n\nAdditionally, identify and connect with individuals who have practical skills and resources that could be valuable during hyperinflation. This might include farmers, healthcare professionals, tradespeople, and local business owners. Establishing a bartering system within your network can provide access to goods and services without relying solely on money. Share knowledge and skills with others to create a mutually beneficial environment. By building a diverse and supportive network, you can increase your collective resilience and ability to navigate the challenges of hyperinflation effectively.\n\nDoctors, lawyers, accountants and other professionals often don’t know much about survival-related skills that will become even more important if shit hits the fan. If you have some expertise in these areas, you can trade your knowledge for the help they can offer you in return. Again, it's all about building mutually honest relationships with people you can help and vice versa. \n\n**Pro Tip:** In the ever-expanding realm of the Bitcoin community, we witness a convergence of diverse souls, each bringing unique talents and perspectives to the fore. Should the fragile edifice of fiat currency crumble, one might wager all their Bitcoin on the collective ingenuity and resilience of this community. United by a shared vision, they will not merely endure the upheaval but will flourish, crafting a new society grounded in principles of fairness and transparency. Thus, get your ass up and participate in Bitcoin Meet-ups!\n\n![Bitcoin Citadel](https://m.stacker.news/39036)\n\n#### Financials\n\n#### Scarcity\n\nOne of the primary similarities among good financial hedges against inflation is scarcity. Assets that are scarce or limited in supply tend to maintain or increase their value during periods of inflation. This scarcity can be intrinsic to the asset itself or imposed by external factors such as regulatory constraints or geological limitations.\n\n#### Shiney Gold\n\nGold has long been considered a reliable hedge against inflation, a reputation that dates back thousands of years. Historically, during periods of high inflation, gold prices tend to rise as the purchasing power of fiat currencies declines. For example, during the 1970s, a decade marked by high inflation rates in the U.S., the price of gold soared from around $35 per ounce in 1971 to over $800 per ounce by 1980. This increase provided a safeguard for investors, preserving their wealth amidst the erosion of the dollar's value. The intrinsic value of gold, coupled with its limited supply and universal acceptance, underpins its role as a stable store of value in times of economic uncertainty.\n\nWhile physical gold provides a tangible sense of security, it also poses notable challenges. One significant drawback is the issue of storage and security. Safeguarding physical gold requires robust and often costly storage solutions, posing logistical challenges for individuals and institutions alike. Moreover, physical gold lacks liquidity compared to other assets, requiring time and effort to find buyers, determine market value, and potentially incur substantial transaction fees. Furthermore, during times of crisis, countries may implement capital controls to stabilize their national currencies. These measures can restrict or prohibit the movement of significant gold holdings across borders, as governments may seize assets at borders or impose strict regulations on their transfer.\n\n**Beware:** Paper gold or gold stored in bank vaults presents a risk of confiscation. Throughout history, instances have occurred where government regulations allowed for the seizure of gold held in bank safety deposit boxes, as seen in the U.S. between 1933 and 1971, when access required oversight by federal tax agents. To safeguard against such risks, individuals hoarding gold should opt for self-custody, storing it securely at home or in a private vault.\n\n#### Paper Stocks\n\nStocks have historically proven to be a good hedge against inflation due to their potential for capital appreciation and dividend growth, which can outpace inflation over the long term. During periods of moderate inflation, companies often pass increased costs on to consumers, leading to higher revenues and profits, which can boost stock prices. For example, in the late 20th century, despite periods of rising inflation, the U.S. stock market experienced substantial growth. Similarly, during the COVID-19 pandemic, massive fiscal and monetary stimulus measures sparked inflation fears, yet the stock market saw remarkable gains.\n\nHowever, during hyperinflation, the possibility of stock confiscation by the government becomes a tangible threat as authorities scramble to stabilize the economy and maintain control. Faced with soaring inflation rates and widespread economic turmoil, authoritarian regimes might resort to nationalizing private assets, including stocks, to centralize resources and prevent capital flight. This expropriation is often justified under the guise of economic necessity or public good, yet it typically undermines investor confidence and exacerbates the economic crisis. Stockholders could see their investments forcibly converted into devalued national currency or state-controlled shares, stripping them of ownership and eroding their wealth.\n\n**Beware:** A stock depot including exchange-traded funds (ETF) - also Bitcoin ETFs! - represents a centralized repository vulnerable to government confiscation risks. Centralized control through a stock depot allows governments to potentially seize assets held within these platforms.\n\n#### Scarce Bitcoin\n\nBitcoin has emerged as a popular hedge against inflation due to its unique properties as a digital asset that is easily movable and decentralized. Unlike traditional currencies, Bitcoin can be transferred globally with relative ease and speed, making it a convenient store of value during inflationary periods. This mobility is particularly advantageous in times of economic turmoil and currency devaluation, as individuals and institutions can swiftly move their wealth into Bitcoin as a hedge against purchasing power erosion. As a digital asset with a finite supply and growing adoption, Bitcoin's decentralized nature and inherent scarcity make it a compelling choice to protect your wealth from inflationary pressures.\n\nHowever, unlike gold, Bitcoin has a very short history, so no one can predict how it will perform in the event of hyperinflation. However, compared to gold, Bitcoin has one fundamental advantage: It can be effectively used as a medium of exchange, offering a stable alternative to rapidly devaluing fiat currencies without the lack of divisibility. As traditional money loses value at an alarming rate, individuals and businesses can turn to Bitcoin for transactions. With a growing number of merchants accepting Bitcoin, everyday purchases — from groceries to utility bills — can be easily conducted. Peer-to-peer transactions (via the Bitcoin Lightning Network) also become simpler and more reliable, bypassing the unstable banking system. Thus, support Bitcoin companies and embrace a Bitcoin circular economy wherever you can.\n\n**Beware:** Bitcoin offers a unique advantage over other forms of financial assets, in that it can be transferred across borders discreetly by simply memorizing a 12- or 24-word recovery phrase. This method of transportation eliminates the need for physical carriage and reduces the risk of detection or confiscation.\n\n### Conclusion\n\nAs the twilight of fiat money nears, prepare for a new dawn. Diversify wealth in gold (Minor stack) and Bitcoin (Big stack). Embrace bartering, where trust and skill replace currency and the community becomes your ally. Grow your sustenance by turning to the earth and finding solace in homegrown meals. Master practical skills, each a shield against the unknown. Fortify your mind with knowledge and resilience. Build a network of kindred spirits; their support is a tapestry of mutual aid. Together, we navigate the old world’s ruins, forging bonds beyond material loss. Find beauty in survival’s small victories. Hold fast to hope, envisioning a future reborn where value lies in community strength and incorruptible assets. As fiat fades, rise with the dawn of resilience and self-reliance.\n\n### The End\n\nThat's it for this episode. I hope you got some valuable information from this one. Don’t forget: **Be fit, take care of your loved ones, stack Sats and self-custody your coins.** Thanks for reading, and see you in the next one.\n\n₿ critical, ₿ informed, ₿ prepared. Yours,\n![Carl B Menger](https://i.postimg.cc/QxMq5Npk/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n### Stay tuned\n**Subscribe to my Newsletter:** https://open.substack.com/pub/carlbmenger/p/coming-soon\n**Follow me on X**: https://mobile.twitter.com/CarlBMenger\n**Follow me on NOSTR:** npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Related Topics\n[XVIII] When Money Dies: https://stacker.news/items/585968\n[IV] What the heck is Inflation: https://stacker.news/items/109724\n\n### Crowdfunding\nSo far, this is just a vision! But if you want to make a difference in this world, join my mission on Geyser Fund to build the best and coolest #Bitcoin-only accommodation in El Salvador(https://stacker.news/items/571274), bringing together people all around the globe, and spreading tangible Bitcoin knowledge. Your support makes all the difference: https://geyser.fund/project/bitcoinhostelinelsalvador\n\n![Bitcoin Hostel](https://i.postimg.cc/HsBdZz81/IMG-0591.avif)\n \N 10311 \N 147826 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.18623271371905 0 \N \N f 0 \N 0 30233547 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 62246 2023-09-11 12:35:58.094 2025-03-29 22:39:46.788 Wei Dai Ignore This Guy? ***“I am fascinated by Tim May's crypto-anarchy. Unlike the communities\ntraditionally associated with the word "anarchy", in a crypto-anarchy the\ngovernment is not temporarily destroyed but permanently forbidden and\npermanently unnecessary. It's a community where the threat of violence is\nimpotent because violence is impossible, and violence is impossible\nbecause its participants cannot be linked to their true names or physical\nlocations.”***\n \n\n### Insert Photo Here\n*Can't find One*\n\nOkay, so he’s not really ignored. He does appear frequently in those “Who is Satoshi?” speculations, but not nearly as often as Hal Finney, Adam Back or Nick Szabo. The above quote is from his 1998 paper introducing b-money, which Satoshi referenced in the bitcoin whitepaper. Damn, that's a great quote. It should be referenced more often. It would have been nice to include a photo of Mr. Wei, but I couldn't find one. His @nemo-ness is legendary.\n\n### B-Money\n\n\nB-money included the following ideas, which were incorporated in bitcoin a decade later:\n\nDescribed as "money which is impossible to regulate",  Dai's b-money described the core concepts later implemented in Bitcoin[13] and other cryptocurrencies:\n • Requires a specified amount of computational work (aka Proof of work).\n • The work done is verified by the community who update a collective ledger book.\n • The worker is awarded funds for their effort.\n • Exchange of funds is accomplished by collective bookkeeping and authenticated with cryptographic hashes.\n • Contracts are enforced through the broadcast and signing of transactions with digital signatures (i.e., public key cryptography).\n\nYou can read more about b-money [here](https://www.investopedia.com/terms/b/bmoney.asp ).\n\n### Pen Pals\nSatoshi and Wei Dai emailed each other before the bitcoin whitepaper was published. Watch this [video](https://www.youtube.com/watch?v=hkcwUortfWE) if you want to learn more about their communcations.\nAccording to the bitcoin wiki on bitcoin.org:\n\n> Wei Dai and Adam Back were the first two people contacted by Satoshi Nakamoto as he was developing Bitcoin in 2008[2] and the b-money paper was referenced in the subsequent Bitcoin whitepaper.[14]\n> In a May 2011 article, noted cryptographer Nick Szabo states:\nMyself, Wei Dai, and Hal Finney were the only people I know of who liked the idea (or in Dai's case his related idea) enough to pursue it to any significant extent until Nakamoto (assuming Nakamoto is not really Finney or Dai).[15]\n\nWei Dai is a private guy, but you can read more about his career [here](https://en.bitcoin.it/wiki/Wei_Dai). \N 10862 \N 62246 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.9011565560527 0 \N \N f 0 \N 0 33687473 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 322191 2024-12-07 18:14:19.514 2025-03-29 22:39:46.788 The Bitcoin Revolution in Iran [Author share it here first](https://primal.net/e/note1eg0xpl9c3z24x7yhk295dtvvum55n2x0sp0mmhy674ycyqkenapsdrrnn5) https://www.adoptblock.com/bitcoin-revolution-iran-en 3377 \N 322191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9708030880288 0 \N \N f 0 \N 0 33112470 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 226218 2024-09-02 23:54:47.667 2025-03-29 22:39:46.789 Samourai Wallet Founder Arrested for Money Laundering \N https://www.justice.gov/usao-sdny/pr/founders-and-ceo-cryptocurrency-mixing-service-arrested-and-charged-money-laundering 21577 \N 226218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2981952689775 0 \N \N f 0 \N 0 214756434 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3760 2022-11-09 17:53:07.861 2025-03-29 22:39:49.748 \N "I'm buying, but you shouldn't." That one gets the gears turning. https://example.com/ 1483 3758 3758.3760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.117445565381 0 \N \N f 140585286 \N 2 229660220 0 f f \N \N \N \N 3758 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 51753 2023-08-18 16:13:07.984 2025-03-29 22:39:46.784 Stacker News Roundtable #2 - LSPs Welcome to another Stacker News Roundtable!\n\nToday we have 5 guests participating in a conversation focused on LSPs.\n\nToday's participants:\n- @gkrizek from Voltage\n- @SachinMeier from River\n- @SeverinAlexB from Synonym\n- @roy from Breez\n- @ohskogstrom from Torq\n\nPlease feel free to ask your own LSP questions to the group, follow up on individual responses, or any other on-topic questions throughout the event, we want as many stackers participating as possible!\n\nThis account will also be posting a few LSP questions throughout the next hour to give participants time to respond and to give you all a chance to ask follow ups.\n\nOur one ask is that since this is a focused conversation, please try to save off-topic questions for another time.\n\nYeehaw! \N 16176 \N 51753 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.5925361588263 0 \N \N f 0 \N 0 192943290 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414895 2025-02-24 11:28:02.013 2025-03-29 22:39:46.784 Disclosure: Wasting ViaBTC's 60 EH/s hashrate by sending a P2P message \N https://b10c.me/blog/012-viabtc-spv-vulnerability-disclosure/?s 21829 \N 414895 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.5844495144625 0 \N \N f 0 \N 0 62573714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 209386 2024-08-02 13:06:57.196 2025-03-29 22:39:46.784 Revisiting Great Consensus Cleanup It has been 5 years since the great consensus cleanup softfork was proposed. The majority of bitcoiners have joined after that and are likely unfamiliar with it or the some of the dramatic things that could occur without these fixes. https://bitcoinops.org/en/topics/consensus-cleanup-soft-fork/\n\nDid you know all the remaining bitcoin could be mined within 3 weeks? If not, have a look here https://bitcoinops.org/en/newsletters/2019/03/05/#fix-the-time-warp-attack\n\nDid you know a malicious user could create a special set of transactions that if included in a block could be so computationally expensive that it would crash many nodes on the network possibly resulting in a fork? If not, have a look here https://bitcoinops.org/en/newsletters/2019/03/05/#prevent-use-of-op-codeseparator-and-findanddelete-in-legacy-transactions\n\nDid you know a malicious user could create a transaction of size 64 bytes and pull off a theft from many users? If not, have a look here https://bitcoinops.org/en/newsletters/2019/03/05/#forbid-transactions-64-bytes-or-smaller and here https://bitcoinops.org/en/newsletters/2019/03/05/#forbid-transactions-64-bytes-or-smaller\n\nDid you know Bitcoin Core has the notion of standardness rules which (gasp!) filters out certain transactions? If not, have a look here https://gist.github.com/instagibbs/ee32be0126ec132213205b25b80fb3e8 and here https://bitcoinops.org/en/blog/waiting-for-confirmation/\n\nDid you know there has been an increase in the number of non-standard transactions included in blocks recently. If not, have a look here https://b10c.me/observations/09-non-standard-transactions/\n\nDid you know there is an increase in the number of commercial services and mining pools that are willing to include non-standard transactions? If not, have a look here https://ir.mara.com/news-events/press-releases/detail/1343/marathon-digital-holdings-launches-slipstream\n\nIt is a good time to revisit it and discuss. Maybe this is the next consensus rules change instead of OP_CAT? \N 18270 \N 209386 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.6955243604079 0 \N \N f 0 \N 0 113476840 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 115130 2024-01-18 11:05:50.626 2025-03-29 22:39:46.785 Announcing Superposition and Note Duel, our first two DLC experiments \N https://blog.mutinywallet.com/note-duel-superposition/ 15536 \N 115130 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.449193626805 0 \N \N f 0 \N 0 233468753 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 9449 2023-02-20 04:39:53.058 2025-03-29 22:39:46.785 I've built a jukebox on top of lightning Hello,\n\nabout 2 weeks ago I wrote [here](https://stacker.news/items/278318) about my intention of building a jukebox on top of lightning. Here I am with the version 1:\n\nhttps://ln-jukebox.com\n\nI also promised to open source the code. If interested, have a look at the [implementation](https://github.com/pycan-jouza/ln-jukebox). It's not very polished yet but I had a lot of fun building and using Svelte for the first time.\n\nI've got more plans with the project. Two main features I'd like to add are global chat (so that you can talk to fellow bitcoiners while listening) and rooms (so that you can share playlist with your friends).\n\nPlease note that there might be bugs and not everything working as expected. You can report anything not working here or to the repository.\n\nAnyway, let me know what you think and happy listening! \N 3409 \N 9449 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.153747983793693 0 \N \N f 0 \N 0 239920311 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 102557 2023-12-24 11:31:09.648 2025-03-29 22:39:46.785 Some updates about DarthCoin Citadel Hey guys,\nMaybe you were noticing that lately I am not so active on SN. As you may know in the summer I am quite busy with building a small citadel ([see first 2 parts here](https://darthcoincitadel.substack.com/)) in the middle of nowhere, deep into a mountain forest.\n\nI am posting here some interesting updates and numbers about this (experimental) construction. Just for fun and for those interested into knowing more about this kind of construction. This is an exclusive content only for SN.\n\n### Recap\n(if you do not want to read the whole story - see link above):\n- is done by myself, alone, with my own hands, no heavy machinery, just basic tools (shovel + axe + bucket) and with basic materials that are plenty on site (wood, dirt, rocks) and earthbags.\n- I want to see how far I can go with human effort, real PoW and using only my brain and imagination for the plans and construction method. I learn myself with "trial and error" method until I find the best solution. Not all those YT videos are true and not suitable for all types of environment. So please do not come with comments like "did you saw X and Y video on YT how they've done it?" because IT DOESN'T WORK! My situation is totally different than theirs and my plans are different.\n- the construction was done during several years, hard fucking work, starting as a fun summer project but end up in a serious thing, with larger implications. This year I had also an accident with my finger and I couldn't work until July. Now I have plans to finish this small earthbags house, to be a place where to stay in good conditions a longer period of the year, and be able to start building the second house, bigger and better. But again with almost the same method, with earthbags. So all the knowledge I accumulated from this 1st house, will be used to make a 2nd one, much better.\n\nThis is the last picture taken of the construction site:\n![](https://m.stacker.news/48749)\n\nMy plan was to have 21 earthbags rows on each wall, but because I have to put the roof with some lean inclination to the right side, for the water and snow to fall down, I will have to put 23 rows on the left wall and 20 rows on the right one. The roof will be fixed the left stonewall, pushing all those rocks and the gap between the house wall and the stonewall will be filled with more rocks and dirt. The whole roof (isolated against water leaks) will be covered with dirt for flowers (especially species anti-mosquitoes) and nice green grass.\n\nWhat you see in this picture is only half of the house, the back side. The front side will be continued when I finish the roof on this backside part and will be done with a big nice window on the right side (where the sun enter all day long), a fireplace on the left side (is already started) and a nice stonewall in front with 2 windows and the door. The right side (where you see those rocks sitting in the grass) will be a nice parcel for strawberries and flowers, continuing up until on the roof.\n\n### Interesting numbers and fun facts:\n- I dug the dirt, full of rocks and boulders, during 4 years (only few months in the summer)\n- I used only a bucket to carry the dirt, like 10 m away and pilled up building a huge hill, separating the small/medium rocks from it and making a separate pile of rocks.\n- see on the right side the pile of rocks and on the left side the dirt hill\n![](https://m.stacker.news/48752)\n- just imagine that each rock was extracted by hand, one by one from the dirt I dug and carried to this pile. Was a hell of work done!\n![](https://m.stacker.news/48753)\n- all these boulders you see here were dug up from that hill, by hand, no machinery\n![](https://m.stacker.news/48754)\n- each earthbag was filled up with filtered dirt from rocks, using an empirical filter :). Again the remaining dirt with rocks was carried back and used to reinforce and isolate the walls from the back of the bags, but most of it was pilled up in another place (for later use). A lot of moving dirt around. Actually my whole activity was moving dirt LOL 😂😂😂😂\n![](https://m.stacker.news/48755)\n- The house in total will be 7m by 3.5m and 2.5m height. The 1st part is 3.1m x 3.5m. Will have also a small porch at the entrance to sit on a big boulder / bench and watch the rain in the summer :)\n- I calculated that I dug up like 15 tons of dirt and 5 tons of rocks. Like 2 big trucks.\n- In the first 2 years I was counting (just for fun) how many rocks I extracted. At rock number 1523 I stopped counting because was insane... :)\n- Each earth bag contain aprox 30kg of dirt\n- Until now I piled up 298 earthbags, that means 8940 kg (almost 9 tons!!!) of dirt filtered and carried around\n- I estimate to have like 15 000 rocks piled up, later to be used as pavement and walls.\n- I still have to put like 100 earthbags on the right wall (under the windows) and a small part on the left wall next to the chimney.\n- I still have to add like 3-4 tons of dirt+rocks around the house and on top, to isolate it nicely and make a rounded shape.\n- Still remain to build the front wall with those big boulders. Will be a hell of job and I have no idea (yet) how will be done. But I think will be next year. I do not have time this year for the 2nd part of the house. I am in a hurry to put the half of the roof first, winter is coming and the earthbags must be covered and prepared for the winter and sun.\n\nI hope you enjoy these facts and updates about my "little" project. In the end will be a nice and cozy hobbit house. Just need more patience and a lot of energy and effort to finish it.\n \N 21413 \N 102557 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.2567773247659 0 \N \N f 0 \N 0 150308231 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2545 2022-10-14 19:57:47.013 2025-03-29 22:39:46.786 On Ossification *These were my prepared opening remarks on the Ossification Debate I had with @lopp at the Lugano Plan B Forum. It is published here for posterity.*\n\nThank you to Plan B, the city of Lugano and everyone here for this opportunity to speak about this very important topic. It's an honor to be here and I hope to do my side justice.\n\nSince the beginning people have had two predominant and wrong views of Bitcoin. The first is economic, that Bitcoin is not money for one reason or another. This error is usually made by economists and their followers, some even of the Austrian school. They reject Bitcoin because it does not fit their conception of what money is supposed be. Bitcoin obviously is money, and the 15 years of history disproves their theories so we don't need to refute this error here.\n\nThe second is that of Bitcoin primarily being a technology. This error is usually made by technologists because the innovations that they've seen in their lifetime are generally technical in nature. They are the proverbial hammer wielder thinking everything is a nail. Like other technologies they've seen, say mobile phones or apps, they think that it's a race to build new features and to win is to beat the competition through changes.\n\nBut this is a serious error and indeed is the main argument given by altcoiners and their ignorant investors thinking that a better mousetrap is what will win. 13 years of altcoin history also dispels this myth. Faster block times, different proof-of-work algorithms, more expressive but more buggy smart contract languages, alternative consensus systems, and much more have been tried but none of these features have gained much long-term traction let alone threaten to dethrone Bitcoin. More features are not what make money better.\n\nTo illustrate, go through this thought experiment with me. Imagine that the Federal Reserve added technology features into the dollar, for example, faster settlement times, expressive smart contracts, and even privacy, would those features make it better than Bitcoin? Would you switch to it? Obviously not because they can and do change the monetary policy all the time. In other words, features are not what make Bitcoin better. Bitcoin is better money, not just better technology.\n\nBitcoin is money first and technology second and it neither needs centralized management nor new features for adoption. Indeed, it's better for money to *not* change. The reason why the classical gold standard worked so well was because gold didn't change. In fact the properties of gold are such that it's fairly hard to change it, either at a macro level, where its supply expands at around 2% per year, or at the micro level where it's non-reactive and extremely durable. Money that doesn't change is better because people who own it can plan more effectively for the future. Nobody likes a game where the rules keep changing, particularly if it's designed to pick winners and losers.\n\nThis principle that money is better when it doesn't change is the basis of my stance in this debate. We want money to be predictable, so that when the unpredictable happens, we can use the slack afforded by our savings to get us out of unpleasant situations. So my bias toward ossification is derived from this principle. Bitcoin's value proposition is that it is sound money and sound money works best when its properties are known and predictable.\n\nThat's not to say that I don't want anything to change or be built. Just do them on other layers. It's for this reason that I don't like the word ossification. Ossification is a weird word to be using because the mental picture you get is of a fossil, something old, worn and no longer living. I think a better picture is that of a house foundation. We are building a whole new monetary system, and for that it's important to have a trustworthy and stable foundation to build on. And indeed, that's how I view the layer 1 of the Bitcoin protocol. It's the monetary foundation. You can build other things on top like Lightning, eCash, Sidechains, Ark, Statechains and the rest. The foundation underneath all of these layers must be stable and predictable for those innovations to mature.\n\nWe don't want to be changing the foundation because at this point millions of people are depending on it. The threshold for changing a house's foundation should be fairly high because it is a very difficult process and you may be damaging things built on top. Similarly, Bitcoin's foundation needs to be set so that other layers can have a chance to be built, to mature and to refine.\n\nThat said, I will concede that there are some really cool things from a technological perspective that you can build if you add a new OP code, for example. But that's not enough for me. It's not enough for a feature to be interesting, I need to see why a feature is *imminent* and *necessary*. If some critical cryptographic primitive is broken, that would necessitate change because the compromise of the system is imminent and presumably there are no other ways to fix the problem. To further my analogy, such an event would be like a destabilizing crack in the house's foundation, and though it's an invasive and difficult task, a destabilizing crack would justify repairs. But as I said, that's a massive cost to the entire ecosystem and should only be considered in a situation where there's grave danger to the entire system.\n\nWhat is not enough is something that's necessary but not imminent. For example, we will need something to take care of the timestamp block header problem, but that's not until 2106. We don't have to solve that problem right now. What's also not enough is something imminent but not necessary. Some regulation that bans exchanges from sending to certain addresses may be imminent, but unnecessary. For me, imminent and necessary are the criteria.\n\nIn conclusion, what I view as important are Bitcoin's properties as money and the bar for change at this point, given how much value the network has, is pretty high. And I get the developer's perspective. They want new toys to play with, new primitives to work with. But the design space of Bitcoin hasn't been close to explored yet with features we already have. Between Segwit and Taproot, we have a crazy array of possibilities, as is being shown through BitVM, Ark and FROST. Changing things to satisfy the developers is the wrong motive, just as changing things to satisfy the Bitcoin businesses during the blocksize wars of 2017 was the wrong motive. Our priority should be Bitcoin as money. Not Bitcoin as art gallery, or decentralized exchange or digital archive.\n\nI mentioned earlier that the error of many people that approach Bitcoin from an economics angle is to dismiss Bitcoin because of loyalty to an economic belief. Such an attitude comes from not just wrong economic beliefs, but also technical ignorance. I would implore you to not make the opposite error, which is to dismiss the economic and monetary reality of Bitcoin in favor of perceived technical benefits.\n\nBitcoin belongs to the community of people that own Bitcoin, not the economists and not the technologists. It is this community, you in this audience that Bitcoin belongs to and it is your needs are what Bitcoin need to serve. Setting a firm foundation is the path to doing exactly that.\n \N 6268 \N 2545 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.0034349483058 0 \N \N f 0 \N 0 237426696 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 209305 2024-08-02 07:47:37.693 2025-03-29 22:39:46.787 Five Economic Terms You Should Know When Learning About Bitcoin \n![economics](https://imgprxy.stacker.news/N5oemexK-8pmqb4-avH0_zZlynIjmjX-GEicMn54Yk0/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy8yLzIwL0Vjb25vbWljcy5qcGc)\n\nStudying bitcoin involves learning something about damn near everything. For me, I was introduced to computer science, coding, and cryptography, none of which I knew much about before falling down the rabbit hole. You will also learn about history, law, monetary theory and economics, all stuff I was interested in since the 1970s. My purpose here is to briefly explain a few economic concepts you may have never heard of before. If you start reading articles about bitcoin or listening to podcasts these terms will be thrown around as if they’re common knowledge. \n\nI hope this short guide helps to flatten the learning curve. \n\n### Fiat Currency\n\nMerriam Webster’s Dictionary defines fiat money as “money (such as paper currency) not convertible into coin or specie of equivalent value.” This is another way of saying that it is money not backed by an asset. Fiat money is money that is created by “fiat”, or decree of a governmental entity. The word fiat is defined as “an authoritative or arbitrary order.” I like to think of it as Joe Biden, or whichever grasping, ambitious insect has fought its way to the top of the dung heap when you’re reading this, standing at the peak with a crumpled dollar bill displayed in its outstretched hands shouting, “This is money!” \n\nSo, the next time some wiseass says to you “bitcoin isn’t backed by anything”, you can respond: “neither is [fill in the blank with your favorite government money]”.\n\nThe conversation will not likely end there.\n\nThe fiat fan will say: “that’s not true, it’s backed by the full faith and credit of the [United States] government.” \n\nYou then stare at him open mouthed and ask if he’s serious.\n\nThis points out the peculiar nature of the current fiat based system. There was a time not so long ago when the U.S. was considered creditworthy. Every nation in the world wanted to buy U.S. treasury bonds, which are really just fancy IOUs. Not any more. Guess who buys U.S. debt now? The U.S. government buys back its own debt. That’s a little oversimplified. U.S. pension funds and various mutual funds and ETFs also have to buy U.S. debt pursuant to their mandate. Here’s the interesting thing, though. For years, and probably even now in some circles, a U.S. treasury bond has been considered the world’s “risk free asset.” Check out this quote from the [Smart Asset](https://smartasset.com/investing/understanding-risk-free-assets-guide) web site:\n\n\n> A risk-free asset is an investment with a guaranteed future value and virtually no potential for loss. Debt issued by the U.S. government (bonds, notes and Treasurys) is one of the most well-known risk-free assets. While these assets are no longer backed by gold assets, they are backed by the “full faith and credit” of the United States.\n> Investors shift their portfolios into risk-free assets during periods of uncertainty. U.S. Treasury bills are generally regarded as the safest investment in the world, which is why domestic and foreign investors buy so many during a downturn.\n\n\nPonder, if you will, the insanity of this quote. In the upside down, crazy world fiat money creates, the IOUs of a government that has shown no constraint in debasing its currency is considered a risk free asset? \n\nThat’s probably why all those banks and insurance companies loaded up on U.S. treasuries these past few years. It never occurred to them that Jay Powell might start jacking up interest rates in a futile attempt to tame inflation. The value of those “risk free assets” plummeted as interest rates climbed. \n\nWe won’t know how this all ends for a while, but it won’t be pretty.\n\nTo sum up, fiat money is debt. \n\n### Seigniorage\n\n[Seigniorage](https://www.investopedia.com/terms/s/seigniorage.asp) is another word you should learn. It is defined as:\n\n> the difference between the face value of money, such as a $10 bill or a quarter coin, and the cost to produce it. In other words, the cost of producing a currency within a given economy or country is lower than the actual exchange value, which generally accrues to governments that mint the money. \n\n\nThe goal of all governments is to maintain positive seigniorage, that is, making sure the cost to produce the money is less than the face value of the money. The difference is pure profit. \n\nHave you picked up a U.S. penny recently? It’s lighter than air. Compare one to a 1950s penny, if you can find one (see Gresham’s Law). They are light as a feather. As the government debases the U.S. dollar, it’s nearly impossible to keep the costs of producing a penny below its face value, but they try. The government isn’t too worried, though, because it more than makes up for it in the switch to digital dollars. Hardly anyone uses coins in the United States anymore. They don’t even need to spend much on ink and paper for the old one dollar bill. Everyone uses credit cards or debit cards or paypal or venmo to pay for even the smallest items. There is negligible cost in mouse clicking billions of dollars into existence. \n\nGovernments love seigniorage. \n\n\n\n\n![cantillon](https://imgprxy.stacker.news/bhWto13fOOsEx0q5iHH7Btq3KXrQOMxWnEKnhqD6ZLU/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy85LzljL0FuX0Vzc2F5X29uX0Vjb25vbWljX1RoZW9yeS5qcGc)\n\n### Cantillon Effect\n\nRichard Cantillon was an 18th century banker and philosopher. He [articulated](https://river.com/learn/terms/c/cantillon-effect) the principle that “the flow of new money through the economy is beneficial to parties that receive the funds first, and less beneficial to those that receive it later on. The individuals and institutions closest to the central bank – banks and asset owners – are granted financial advantages at the cost of those least connected to the financial system.”\n\nWhat this means, in essence, is that it’s good to be close friends with the guys printing the money. That’s because, in a fiat system, money can and will be created whenever the government feels like it. Since there’s no real cost involved to make this money, there is no reason for the government to stop issuing it. \n\nWhen more money is pumped into the system, the price of goods and services eventually rises, since each unit of fiat is worth less, so you need more of them to buy that bagel or new car. But, the guys who get the new money first get to use it and spend it BEFORE the inflation sets in. \n\n![bank](https://imgprxy.stacker.news/mKoLm2vJp-GUeJi295OBdiZe5ZFfc8dkbB7ISqDuUV4/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy9hL2FiL0ZyZWVkb21fSG9tZXMlMkNfR292ZXJubWVudF9CYWlsb3V0X01vbmV5XyUyODM0NzMyNjQ0NDglMjkuanBn)\n\n\nA good example of this is the U.S. banking system. Nowadays, new money doesn’t really get printed by the government. What happens is that the big banks with the political power get to borrow money from the federal reserve at what’s called a “discount rate.” So, if you want to get a new mortgage, these banks don’t pull money out of their vaults and lend it to you. Instead, they borrow it from the federal reserve at, let’s say 4 percent interest, and then they lend it out to you at, say 7 percent interest. So, the banks get all that profit, when they have really done nothing but create this money you use to buy your house out of thin air. They literally borrowed the money into existence. The consumer has to pay the retail interest rate set by the banks while the banks get the special, insider discount. \n\nAnother example of this was on display during the “Covid Crisis”. The U.S. government decided it needed to create more money to stimulate the economy it destroyed by shutting down businesses. But, the government didn’t shut down all businesses. Some could remain open. It’s good to be friends with the king. So, [churches](https://www.chicagotribune.com/suburbs/daily-southtown/opinion/ct-sta-slowik-essential-businesses-st-0326-20200325-p23fiwranjc5tcxecvrzynrcky-story.html) were closed down, but liquor stores could remain open, because they provided a vital service. The government next began to issue covid loans to help the businesses it just destroyed. Makes sense. Big, powerful corporations with lots of employees got PPP loans for each employee on the payroll. This was free money because the loans were all forgiven. The businesses got this money even if they were allowed to remain open, as many large businesses (like Amazon) were. Lots of politically connected businesses with powerful connections in Washington D.C. got this free money. Unfortunately, little mom and pop businesses were forced to shut their doors, and their PPP loans didn’t help much, since they only had a few employees. Too bad. They should have made friends with the king before the “pandemic” hit. \n\n\n### Rent Seeker\n\nYou hear this term a lot when learning about bitcoin. It is always spoken with derision, which really confused me at the beginning. I was a landlord for many years, and I was always seeking rent. Hey, I had to pay my bills too! What are we, communists? Why was this a bad thing? \n\nInvestopedia has a nice [definition](https://www.investopedia.com/terms/r/rentseeking.asp) of rent seeking:\n\n> The concept of rent seeking was established in 1967 by Gordon Tullock and popularized by Anne Krueger in 1974. It evolved from the studies of Adam Smith, who is often regarded as the father of economics. The concept is based on an economic definition of “rent,” defined as economic wealth obtained through shrewd or potentially manipulative use of resources.\n\nSo in this context, rent seeking means that a business entity seeks to gain wealth without having to do any actual work. This is a lot different than the rent I collect, since I have to pay mortgages, taxes, repair expenses, etc. There’s nothing free about that rent. \n\nRent seekers gain this wealth by seeking favor from the government. Lobbyists spend most of their time “rent seeking” for their clients. The bigger the business, the more lobbying power it has.\n\nHere are some examples of rent seeking:\n\n\n \n- A bank getting a lower discount interest rate to then turn around and lend to borrowers (see Cantillon Effect Above)\n\n- Government subsidies\n\n- Grants\n\n- Tariffs\n\n- Good old fashioned political bribes \n\n- Manipulating the legal system to create barriers to entry and limit competition (law licenses, CPA licenses, barber licenses, taxi licenses, real estate broker licenses)\n\n\nTullock noticed that rent seekers usually get a great deal. In other words, they get an enormous financial gain at a proportionately very low cost. This is known as ***Tullock’s Paradox***. \n\nI always wind up thinking about proof of stake(POS) shitcoins as being analogous to rent seeking. The stakers seek to earn money solely due to their advantageous position as holders of a large quantity of coins. They may likely have obtained this hoard as a result of an unfair pre-mine, where insiders got a special low price. Their financial rewards are not related to any productive work being done. They merely benefit from having a large stake. \n\nThis is the opposite of bitcoin, where proof of work (POW) is always required to gain more bitcoin. It requires time, effort, and energy. \n\n\n\n![gresham](https://imgprxy.stacker.news/3vqwhnme00L3fCZ-Vq8A0WCIS7bNCwOLr8cjMFNhN1g/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy83Lzc0L1Npcl9UaG9tYXNfR3Jlc2hhbV9mcm9tX05QRy5qcGc)\n\n### Gresham’s Law\n\nSir Thomas Gresham was a British merchant and financier who lived from 1519 to 1579. He wrote about the value and minting of coins.\nGresham's law is a principle that states that "bad money drives out good."\n\nWhen I was a kid in the 1960s I used to help my father out in his pharmacy after school. One of my chores was to go through the cash register at the end of the day and take out all of the pre 1964 silver coins. In 1964 the U.S. government removed all the silver from dimes, quarters, and half dollars. I would look for the telltale brown ring along the edge of the coin. If there was no ring, I would take that coin out of the register and place it in a brown paper bag. We stored those bags in the attic. This is what Gresham’s Law is all about. My dad knew the silver coins were “better money” than the crappy alloy slugs the U.S. mint began issuing after 1964. So, he would save the good money, and get rid of the bad money by using it as change for his customers. \nNow, governments aren’t completely ignorant of Gresham’s Law. They combat this by forcing their citizens to use their fiat money. That’s why taxes usually must be paid with “official” money. This theory also played a role in the U.S. courting Saudi Arabia in the 1970s, agreeing to financially and militarily support the kingdom in exchange for establishing the U.S. dollar as the currency for all international oil trade. In essence, governments use force to protect their officially approved currency. \nEvery time I see an article about bitcoin adoption that laments long term hodlers refusing to spend their bitcoin, I think of Gresham’s Law. There are many articles marveling about how the percentage of bitcoin that hasn’t been spent in years keeps growing. Why would anyone spend good money when they can trade depreciating fiat for the goods and services they need? It’s a struggle for me too. I would much rather spend and rid myself of the depreciating U.S. dollars I own than my precious bitcoin. I have to force myself to load up my bit refill Dunkin Donuts gift cards. This is a factor to consider when evaluating the pace of bitcoin adoption. \n\n### Conclusion\n\nI hope some of you found this article useful. If it whet your appetite to learn more about Economics, I recommend a book called *Economics In One Lesson*, by Henry Hazlitt. This is a good introduction to the Austrian School Of Economics. We have been force fed [Keynsian Krap](https://fee.org/articles/henry-hazlitt-and-the-failure-of-keynesian-economics) in the west for too long. \nYou will discover Ludwig Von Mises and Friedrich Hayek if you are interested in learning more. \nSaifedean Ammous wrote a book called *The Bitcoin Standard*, which is widely considered the best introduction to bitcoin. Recently he wrote another book called *Principles Of Economics*. It is a university level textbook that teaches economic theory from an Austrian perspective. You might also want to give this book a read if you’re really interested, but be prepared to work hard. It can be a bit overwhelming.\n\n\n \N 5175 \N 209305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9606381295202 0 \N \N f 0 \N 0 73829001 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 130579 2024-02-22 02:25:02.501 2025-03-29 22:39:46.787 Bankify: turn any cashu mint into a lightning wallet with NWC support # Bankify\nTurn any cashu mint into a lightning wallet with NWC support\n\n# What is bankify?\nBankify is a response to a frustration I've had: not enough custodial bitcoin wallets support Nostr Wallet Connect aka NWC. The only ones I'm aware of (til I released this app) are getalby.com, cashu.me, and mutiny wallet if you configure it to use a federation first. But mutiny wallet is [shutting down](https://blog.mutinywallet.com/mutiny-wallet-is-shutting-down/) and alby wallet [stopped opening new accounts](https://stacker.news/items/640256) for their custodial service, so only cashu.me will work in the near future. Bankify to the rescue!\n\n# How can I try it?\nJust click here: https://supertestnet.github.io/bankify/\n\n# How does it work?\nCashu mints have a standardized api for "melting" and "minting" ecash tokens, and these api endpoints are effectively the same as "receive" and "send" buttons in other custodial wallets. The "melt" option lets you pay a mint with ecash and in return they will pay a lightning invoice for you, and the "mint" option lets you request a lightning invoice from the mint, such that upon being paid, the mint will give you an equivalent amount of ecash tokens. So I made a simple storage service that does those things automatically in the background, including managing ecash, and just gives you nice and easy Send and Receive buttons. This app *also* runs a Nostr Wallet Connect server in the background so that NWC clients can connect to it and give it commands using *that* standardized api. So essentially this app just translates between two custodial api standards.\n\n# WARNINGS\nThis wallet stores your private keys and ecash notes unencrypted in localStorage. That means browser extensions and stuff like that can read the data there and steal your money. Moreover, if you clear your cookies very thoroughly, your money will disappear. Beyond that, ecash always comes with the standard "custodial wallet" trust assumptions: if the mint wants to steal from you, it's very easy for them; if they get arrested, your money will probably be gone; if they get hacked, you're out of luck. I made this app for testing purposes and I warn you: don't put any money in it unless you're happy to lose that money for the pursuit of science.\n\nAlso: the NWC connection lives *in your browser* so if you *close* your browser it stops working. Therefore, I do not recommend using Bankify for zaps on nostr. Your nostr client will probably try to give it commands while your browser is closed, and it just won't work.\n\n# View on github\nhttps://github.com/supertestnet/bankify \N 21810 \N 130579 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.32455258041919 0 \N \N f 0 \N 0 119036647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 213307 2024-08-11 13:19:15.299 2025-03-29 22:39:46.787 Ark AMA Hi all, this is Burak. Feel free to ask me anything about Ark. Ark is a new privacy-preserving Bitcoin layer-two idea for those unfamiliar. I would love to address all of your questions or concerns you might have. Stupid questions are welcome :) \N 2749 \N 213307 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.9120557631469 0 \N \N f 0 \N 0 214118201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448780 2025-03-22 21:37:51.488 2025-03-29 22:39:49.749 \N I thought you were killed if you were fired from a job. Literally thrown in a fire. Thank god that’s not true lol https://example.com/ 19581 448746 447892.448746.448780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.682530976623 0 \N \N f 226262553 \N 3 91049952 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 15:02:38.747 f \N \N \N 0 0 0 0 1 0 0 434455 2025-03-11 22:44:48.297 2025-03-29 22:39:49.749 \N The [Coldcard](https://coldcard.com/) definitely doesn't scream "loads of wealth in Bitcoin here!" Just looks like a funky 90's calculator. https://example.com/ 1692 434451 434278.434298.434310.434411.434435.434439.434442.434444.434451.434455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1553384888916 0 \N \N f 166552797 \N 1 75123134 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424179 2025-03-03 21:30:11.69 2025-03-29 22:39:46.784 Stacker News Roundtable #1 - Building on Bitcoin, Bitcoin Culture, and More Welcome to the first ever Stacker News Roundtable!\n\nThis format will be different from the AMAs we’ve had in the past, as we have 4 guests participating in today’s conversation and we have a focused agenda outlined below.\n\n### Today’s topics:\n\n- Building on Bitcoin\n- Bitcoin Culture\n- Opportunities for Bitcoin Builders\n- Challenges Limiting Bitcoin Adoption\n\n### Today's participants:\n\n@niftynei from [Base58](https://base58.info/)\n@psztorc from [Layer Two Labs](https://layertwolabs.com/)\n@wlrvs from [Fold](https://foldapp.com/)\n@udiwertheimer from [Taproot Wizards](https://taprootwizards.com/)\n\nThis account will be posting questions every 5 minutes to give each participant time to respond and to give the community a chance to ask follow up questions.\n\nFeel free to ask follow ups and other on-topic questions throughout the event, but since this is a focused conversation, please try to save off-topic questions for another time.\n\nYeehaw! \N 17984 \N 424179 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 13.4556574550394 0 \N \N f 0 \N 0 157360230 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424400 2025-03-04 04:10:48.739 2025-03-29 22:39:46.784 Intercontinental energy grids. 🌎←♻️→🌍 "The future is already here; it's just not evenly distributed."\n\n —Neuromancer, by William Gibson\n\n![](https://image.nostr.build/4686cc6da166bc2af85d43e57eb2cc93d1fcecafc505b8ddad08470d3224f205.jpg)\n\n\nThe first transatlantic underwater cable was completed in 1858. That's a few years before the Battle of Bull Run—the maiden battle of the Civil War. The cable allowed for telegraph transmission, connecting the UK and Americas, and cut communication time from 2 weeks to 2 minutes. Check out the commemorative stamp with Neptune and a mermaid:\n![](https://image.nostr.build/024ab95af7ec72f102525ec6de860b4fcadcc763940f40f2369aa285d556aab3.jpg)\n\nBut the cable permanently failed shortly after it went live. The next one snapped halfway into the laying process across the Atlantic. The technology was called a scam by protectionist politicians, businessmen, and people following them. The media and newspapers (which international telegraph transmission certainly benefited) were called into question, accused of dishonest and excited headlines on the viability of the nascent technology. The reliability of boats was better—so went the status quo thinking—and steam power designs were making them faster. The transatlantic cable concept was very nearly abandoned, ultimately hinging on government subsidy from both the UK and US governments to complete in permanence. The subsidy was fought hard, especially in America, lobbied against by the steamship route operators of transatlantic mail. In America that subsidy passed by a single vote in the Senate. Cable technology exploded shortly after, scaled globally, was refined with Telegrapher's equations, materials science, bandwidth increases, lead to many discoveries about electrical transmission, batteries, etc. \n\nNow holding our thumb down on the fast-forward button>>\n\n**Interconnectors**:\n\n[Viking Link](https://news.yahoo.com/world-largest-underwater-power-cable-130000075.html) is an enormous achievement for HVDC (High Voltage Direct Current) power lines. It was completed a few weeks ago. She runs 475 miles underwater, connecting the British national grid's lips to Denmark, and at peak, can lactate 1400 megawatts of milk from renewable glands, enough to power 1.4M United Kingdom cradles. \n\n![](https://image.nostr.build/55c4a3734848949ec72f9c4364df12efefb3c5ebdf9788eb79dfedc2a6704ce5.jpg)\n\nThis is the global dairy pattern that answers half the energy intermittence problem. The other teat is where energy storage solutions come in. First:\n\nAs the world switches from century-old AC power lines to *High-Voltage Direct Current* lines, larger distances get covered, less energy is lost in transmission, and these **interconnectors** as they're called, connect the energy grids of different countries, acting as super-highways to ferry renewable energy where it's needed most, where demand is highest, where prices are most favorable. This isn't theory, *it's happening*. \n![](https://image.nostr.build/bea0310beb939aca70ee281d1523d484a5fdc92e1b02bf7bfa3c840fcbdfb5e2.jpg)\n\nEventually, much of the world will have interconnected grid(s). The concept is powerful, nothing new as some of you know, because with interconnectors, you can leverage time zones and overproduction to distribute renewable energy intermittence.\n\n>**"We can generate round the clock electricity from the sun as it sets in one part of the world but rises in another part. Look at me dear—the sun never sets for the entire earth.”**\n—*A quote from Christ as he looked down the loose shirt of a weeping Mary Magdalene at the base of the cross.*\n\nIt's not just sunlight, but wind schedules, overabundances of geothermal, and hydroelectric milk. And then, combining this system with milk bottles (energy storage solutions), like say chemical batteries, gravity batteries, hydrogen via ammonia, etcetera—as these technologies develop and mature—then suddenly Buckminster Fuller's vision at the World Game simulation in the 1970s becomes reality, where the highest priority on the dymaxian map is an intercontinental grid ferrying renewable energy. We should also consider the increasing number of people who will opt-out from the grid with their own independent infrastructure using solar, wind, batteries, and geothermal cooling/heating. They can even pump their excess renewable energy into the grid like we see a lot in California et al. We should consider micro-grids too which use the same concept. \n\nAlright, no more misogynous milk analogies, I pinky swear.\n![](https://image.nostr.build/4d8b1c732500ad04623b7b98f8a30d071f77810c0201c6bd94671bf1b2021c3b.jpg)\n\n\nThe United Kingdom and Morocco are in the final planning stages for the [Xlinks](https://electrek.co/2023/10/02/worlds-longest-subsea-cable-morocco-uk/) infrastructure, a $25B project of "national importance", where several HVDC cables travel 2400 miles (😳) underwater, and connect Morroco's immense wind and sunlight resources in the *Guelmim Oued Noun* region to the United Kingdom's grid. 11GW....that's almost 4 nuclear power plants worth of energy, for less than the construction cost of a single nuclear plant, with the same build timeframe. FYI, a modern full-sized nuclear plant produces about 3GW, costs about $28B, and takes around 6 years to complete. That's not to say nuclear plays no role, because it does, just not in the *horn-gored way Twitter would have us believe. \n\n**horn gore: violently bullish, as in charts tracing the the inner parabolic shape of a bull's horn*\n![](https://image.nostr.build/f6326447f477529c100dbe86fd64d74f62db46752c097dea4e2dfa8bf65fcdbf.jpg)\n\nOne of the limiting factors of underwater HVDC lines are the cables themselves—there's not enough production capacity yet—which is why I'm heavily researching opportunities in this space. Kind of a FOMO thing for me right now. \n![](https://image.nostr.build/da17fd79c4770e5e2443c7f6f3047852a60f52b0fc849e6913f0cdd4d1ef1036.jpg)\n\nWe're all used to visible overland cable towers, utility poles, etc, but I'm seeing a bunch of new designs for overland cables that are buried underground. In some cases they're a cheaper solution, bypass fixed legalese, and reduce liabilities (forest fires, injuries, aesthetics, etc). The company [SOO Green](https://soogreen.com) has a cool model using the space adjacent to train tracks to bury cables and run them to various power stations, bypassing the expensive and timely legal issues to secure land, as train routes are already logistically optimized and legally settled. [TransWest](https://en.wikipedia.org/wiki/TransWest_Express#:~:text=The%20TransWest%20Express%20Transmission%20Line,Marketplace%20substation%20near%20Las%20Vegas), the HVDC overland project that will ferry Wyoming wind power 735-miles to Las Vegas ran into the above ground problem, fighting 18-years worth of court cases; the project broke ground earlier this year. The HVDC project called the [CHPE](https://chpexpress.com/) (Champlain Hudson Power Express) will be complete in 2026. This $6B masterpiece runs 1250MW of renewable energy through HVDC lines connecting Quebec and New York. The cables will be buried, and run along the bottom of lake Champlain and Hudson River, again bypassing many legal issues. \n ![](https://image.nostr.build/4d8b1c732500ad04623b7b98f8a30d071f77810c0201c6bd94671bf1b2021c3b.jpg)\nAnyway, as I've suggested in a previous post, it feels like a referendum on the current mining game for large public miners. Public miners have talking points that are a bit iffy directionally. These companies (not all of course) could see their unique grid positioning challenged, because energy storage occupies the same space, and demand response gets interesting when international and intercontinental grids scale. I wish there was more about this kind of stuff from public miners, about how they'll fuse with energy storage, ratio between what's most profitable in any given hour along with HPC, what work they've done on micro-grid research, how they're deploying debt to achieve this, what inroads they've made with the IEA, what universities they've contracted with, what cool renewable companies they've invested in. But why would they? They've nested their HTML and lobbyists with the GOP while hitching their wagons to the fossil fuel industry. And rehashing a few other miner complaints I have from a previous post:\n\n- Public miner bitcoin treasuries have never grown consistently over the longterm. And with the distribution schedule getting halved soon, and hash power growing, it's hard to believe they will in any significant way w/out a Saylor-esque play. No thx\n- They're bad stewards of debt, all seemingly developing the *going concern* disease when volatility heats red. How the CORZ bankruptcy went down was a doozy\n- They dilute the shit out of shareholders interminably when debt is cheap. They have to. \n- They put interminable sell pressure on BTC\n- They have no clue how far the optics of paying a dividend in bitcoin would go, even if it's just a few irrelevant sats\n- None of them are profitable, which is fine, but they lose more money consistently than I'm comfortable turning my cheek to\n- They virtue signal the Lightning Network\n- They're fiat companies dressed in orange\n- Their stock promotion on certain social media sites is bothersome (they've cooled-off doing this though)\n\nI have no clue what I'm investing in there. Network security? Transaction finality? Rare Ordinals? I'm not "investing" in gated versions of that. I'll trade them sure, otherwise I'll run my own node, and mine myself, directing hashpower to pools other than Foundry (which I couldn't do anyway because Foundry is by invite only, requiring hashpower minimums, contracts, and hardware purchase agreements). I couldn't care less if many of these miners in their current iteration get themselves specially taxed, or go bust. They heretofore have embraced the short-term benefits of friction. They seem to be following and not leading. Funny, because just a couple years ago I might've suggested the opposite. I'm not going to mince words, and appreciate any rebuttals, but I think the entire industry is on-par with KYC crypto exchanges, mostly bullshit, full of charlatans, and they've made big strides for hearts and minds amongst the bitcoin *res publica*. Again, I have no clue what they do deserving of an investment, or what their plan is as storage and grid marriage scale. Maybe virtue signaling. They do put out great press for this during grid strain events, and it's usually the same grid.\n![](https://image.nostr.build/3ba72d3bb68bc0a9ce56f20e368ce89de916f06d039c00f2017215b230d90791.jpg)\n\nThe industry will eventually consolidate and a bunch of these current companies will get supplanted. As it stands, many American miners have zombied towards the Texas ERCOT grid, which is a unique grid, in that Texas is the only state with an independent grid. This keeps it from most federal oversight. And because ERCOT is adding immense amounts of wind and solar capacity annually, miners can suck it up with favorable contracts, which is good for the time being. I'll posit here (I could be wrong) that the reason hashpower has pushed to multiple ATHs, even with bitcoin's USD price more than halved from its own ATH, is a response to the rapid expansion of cheap renewable energy globally; it's not just the fastest expanding type of energy, but the cheapest, by far per kWh.\n\n![](https://image.nostr.build/4d8b1c732500ad04623b7b98f8a30d071f77810c0201c6bd94671bf1b2021c3b.jpg)\n\nIntermittence of renewable energy is the elephant in the room, but assume over the x-axis (time) intermittence gets solved, and conspires to give us advantage, regardless of what fevered noise to the contrary the expedient Twitter personalities cascade. Follow the money, the culture, the snake mating ball of innovation, and data. Natural gas has another term to serve, oil and oil economies on the other hand, are climbing a wall of worry. In some telling so is the petrodollar system. The oil industry and its political cantillionaires straight lied to us. I was watching energy markets as they opened Monday morning after Hamas broke down the gates of the open-air Gaza prison and engaged in pyrrhic war crimes against German tourists, Thai workers, American students, curiously dressed ravers, Israeli civilians, IDF soldiers, children, holocaust survivors, and random motorists. Horrible stuff. So we now have two wars, high inflation, massive reshoring of US jobs, and sanctions grinding three major oil producing nations. \n\n## Yet oil trades at $85 per barrel...\n\nHouston we have a [demand] problem. $85 is lower than oil traded before the war began March of 2022, when *homo sovieticus* thought a two week timeframe was sufficient for his *special military operation*. Perhaps Rasputin visited him in a dream and he woke up with sand in his eyes. It's quite possible the United States already reached peak oil demand in 2018, when we averaged 20.5M bpd of consumption. We haven't surpassed that amount in the 5 years since, even with the massive reshoring of manufacturing that we're experiencing. If we're talking about gasoline consumption specifically, then that's fallen off a cliff and I'll bet on a new low in the next 10 years:\n![](https://image.nostr.build/d1a5c8cb26dde0e821a84d91ba8ba423eef6bca26f173c3c3647e5cb0b58ebfc.jpg)\n\nWe have a bunch of oil refiners who don't want to refine oil for gas and instead prefer transitioning exclusively to petrochemical production. Saudi Arabia and the Emirates are rapidly spending down their sovereign wealth funds to prepare their economies for oil's declining demand. Micro-transportation is revolutionizing urban mobility. Electric cars are growing. I go back to January 2016 when oil contracts fell to $26 bbl, and again in June 2020 when they went literally negative. It'll happen again. Bigger volatility swings. Deeper. High oil prices incentive renewable energy. And people can modify their behavior so fast nowadays (there's a crush of options) in response to high energy prices, that any death spike in oil (and there are sure to be a couple) will be short-lived games amongst marginal buyers. *Homo sovieticus* learned this lesson the hard way in failing to hold Europe's economy hostage via energy. Interconnectors, innovation, renewables, and perpendicular thinking all got fast-tracked; in other words, the fallout from the invasion is that it hastened the global transition to cleaner forms of energy. Now Russia and their soon to implode currency are trapped fighting against a hyper-efficient war design, where the US defense budget has not only been falling for years, but for a drop in the bucket of that budget, America is dramatically weakening an enemy (Russia), selling energy to allies (EU) for more money than the enemy did, while putting a resource rich country (Ukraine) in debt, and losing no men in the process. It's like an advanced Ai model output an instruction manual for the input: *How do we politically embarrass, operationally dominate, and tactically outfight an enemy without ever fighting him?* \n\nUkraine bonds remain one of the hottest investments in the world:\n![](https://image.nostr.build/640f7058d7bc3104fc83d1d0519b697ffa4e750fc9e6068890928e182f49bdc4.jpg)\n\nPeak demand for oil globally will happen this decade. The IEA agrees, the integrated oil majors agree, car manufacturers agree, a crush of unbiased studies agree, I agree. OPEC doesn't agree, but that's what happens when you have a 13-country cartel run by 12 dictators. Big chunk of their power is set to expire. I'm done with their well-funded education campaigns. What awaits them on the other side is a bit too distributed for 20th century playbooks. Dictators have been involved in every war, refugee crisis, and hyperinflation event of the last 100 years. They'll all be gone in the next couple decades. Just having to account for them costs too many resources. \n![](https://image.nostr.build/27d3f6f181234f3d398d8759e6b2ce05ac69cdd4b2fc6ee8dcdab2c934de1c5a.jpg)\n![](https://image.nostr.build/08d61b6b1e0306c185ffad231e27c0b03af31c2555872562316e6f41427a6ece.jpg)\n\nI think free/cheap forms of decentralized energy, intercontinental grids, energy storage, and photonics-based silicon will revolutionize bitcoin mining.\n\nI read through *Softwar* a few months back, the book by Major Jason P. Lowery that caused a stir. \n![](https://image.nostr.build/bdb7e313378e8fbb714bca1ad3c0468d0fe5e5bbd916045feec0c70378dcdd0c.jpg)\nI think he took far too much SPITEFUL criticism, it felt like bullying, and you absolutely want young people like that adding to collective intelligence (think *wisdom of crowds* theory) even if you don't agree. It gets averaged out. I'm guilty of saying a whole bunch of stupid shit on this site and others. But I'm learning. We have to get it all out there. The fact Lowery caused so much outrage was reason enough for me to read it. Besides some of the technical criticisms raised by learned devs, I think power grid marriage is something under-accounted for in his thesis. Some of the other stuff was interesting. \n\n**Conclusion:**\nInterconnectors add new layers of cooperation for nation states, incentive alignment, we might see *emergent behavior* that bitcoin fits right into. The renewable industry is a rabbit hole full of scams, specious ideas, amazing innovation, world-altering projects, political expedience, and opportunities. Take a flashlight down it, the future of energy and mining looks different.\n\nThanks for reading this abusively long post. Lots of sats for replies as always. You know the rules. \N 13547 \N 424400 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.1384324796962 0 \N \N f 0 \N 0 104438411 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307713 2024-11-25 10:25:32.537 2025-03-29 22:39:46.784 The Design Pattern 🦅 ![Image 1-28-24 at 7.10 PM.jpeg](https://m.stacker.news/15288)\n\n50 independent states, a federal government, all held together by a distributed transparent legal document called the Constitution. 1/3 of the federal government is represented by the independent state lawmakers. And those state lawmakers are the only ones with power to change the Constitution. The Executive and Judiciary have no say. \n\nThat's a decentralized form of government, even if we don't think of it like that. And it's brilliant. \n\nThe transparent legal document over the x-axis (time) has distributed freedom relentlessly for 234 years. If you don't believe that, consider when the Constitution was ratified in 1790, slavery existed, women couldn't vote, native Americans were not citizens, judicial review hadn't been established, property rights... What happened over time however, is legal precedent built on top of legal precedent, as people asserted those transparent rights, and anybody standing in their way was essentially obliterated. The same thing will happen to anyone standing in the way of *trans* persons, like it or not, a repeat of 90s gay rights victories. Scientology couldn't even be stopped from a religious tax-free designation in 1993 for godssake. Or gun rights. Check this out, the first map is concealed carry state licensing from 1986. It's quite surprising to see Texas and so many red states as no-issue right?\n\n![Image 2-8-24 at 3.23 AM.jpeg](https://m.stacker.news/15313)\n\nThe second map is today. Not a state that doesn't issue concealed carry permits, and most states are now fully unrestricted! \n![Image 2-8-24 at 3.27 AM.jpeg](https://m.stacker.news/15314)\n\nIt's important to note that gun rights were not particularly well protected early-mid in this country's history, and are stronger today than at any other point by far. That PoW legal precedent...\n\nNot a single word of our Constitution (Bill of Rights) has changed in 234 years, going through 46 presidencies, 118 different congresses, a civil war, unfathomable economic and cultural changes.\n\nI feel bitcoin's design pattern is quite similar to all this; and what America did for decentralizing government and separating powers is what bitcoin aims for with money — globally. This isn't some *manifest destiny* nationalist bend I'm on either, rather, it's just what time has revealed to me, so far as government praxis and data go. \n\nThomas Jefferson was the first Secretary of State (this coincided with the French Revolution making it an important post) and his letters at the time read like monologues, talking through the necessity of government decentralization writ large, and specifically, the need for the monarchy and religious authority of France to be deprecated. \n\nThe problem isn't government design I feel. Perhaps controversially, I posit government design is for the foreseeable future solved, as explained above. We have the nonce for that. There are of course problems, but conceding anecdotal time frames, and anecdotal events, and considering the whole of America as a two-century experiment, it's mind-boggling how much success we've had in all ways contending, and it isn't by accident, but by design. Life relatively, has never been better for most humans. And as an aside, I've lost patience for crisis narratives in any political or tech corner. If subject matter bottoms with:\n\n- impending doom\n- a mass casualty event\n- extinction\n\nthen it's likely ideological, and not objective. If this is you (it's been me), crack a window, take a deep breath, and listen for the birds singing amongst the green contrasts. \n\n🌳\n\nAnyway, it's the money that's the directional problem, not the government design. The 1%, cantillionaires, mindless consumerism, wars, all the golden oldies DarthCoin reminds us of. Money isn't part of the constitution though, it's a discrete addendum, given to oversight of a quasi-independent central bank. \n\nNow regarding bitcoin, mathematical inquiry informs us bitcoin was never designed to scale **globally** in a self-custodial way to individuals on L1. There are 10 minute blocks, of 1MB size, 4MB weight, maxing at 3000 tx's per block — excepting segwit multi-outputs. Thusly, we reach around 158M tx's per year. But 8 billion people live on this round island floating through space. \n\nBitcoin's layers can scale bitcoin globally quite easily — in a centralized way, just like what we're doing on StackerNews now—which is smooth as butter; or what we do amongst peers on CashApp which has some 60M users.\n\n![Image 2-8-24 at 5.00 AM.jpeg](https://m.stacker.news/15324)\n\n\n\n\nMy wonder is how nation states, island state tax havens, and large businesses, scale in self-custodially\n\nHere's a fascinating tidbit: bitcoin already has more annual settlement volume in USD than Visa does transaction settlement in USD. Then when you ask the hypothetical question, *how much value can you fit in a single bitcoin block?*, things get interesting. An astronomical amount is the answer. Which brings me to recent mining musings: Blackrock buying ownership in large public miners; El Salvador starting their own independent pool; Iran national pool ambitions, Russia... This doesn't seem to be a game of *let's try and beat the mining economy of scale to profit.* 92% of BTC has already been mined. The potential profits from mining are insignificant to most nation state budgets, even major businesses, even if bitcoin was say $1M per. If we're being honest, most large publicly listed miners don't turn a profit and don't even consistently add to their BTC treasuries. Mining seems significantly more valuable as a censorship resistance tool for nation state value settlements, when single blocks can fit however much value needs to fit, because when you mine, you can add whatever tx's you want to your block after sniping a nonce. Tx fees are more or less what you choose them to be. \n\nBinance (I'm no fan) is an example. They're an exchange AND a mining pool, boasting about 3.5% of BTC hashpower (down from 8% yoy), which equates to roughly bagging 5 sniped nonce per day.\n\n![Image 2-7-24 at 11.16 PM.jpeg](https://m.stacker.news/15300)\n\nThey add their exchange's own transactions to their pool's block temp, most of these tx's seated way back in the mempool with insignificant fees. That's the power of vertical integration in mining, being able to add whatever tx's you want to your own blocks. This power was instrumental in Binance's money laundering game that the DOJ is coming after them for. We don't know the scope of it.\n\nIt feels the often discussed block subsidy and tx fee issue is irrelevant in this hypothetical reality I'm having fun riffing here. And as a ratio of the tx value arranged into these blocks, fees will fall. For individuals, fees today are already too high for most in the world anyway. $14 per tx is more money than 3rd world denizens save in a month. \n\nEmbracing bitcoin minimalism, bitcoin already scales, it works, has a community of maintainers, and is boringly dependable. It's a robust tool, with L1 there whenever you're willing to pay for, and need its fixed liberties. Even indie mining is still manageable for some. We did it. Hurray. \n\nEmbracing bitcoin maximalism however — that base layer global money thing — I feel L1 will necessarily become the domain of nation states and business if successful, mining will coalesce around that, and it will bring a leveled playing field (same rules), censorship resistance that benefits everyone, pooling cooperations, and a dramatic aligning of global incentives. The transparent distributed ledger is quite powerful in this case. Below all that, the renewable energy transition with decentralized input sourcing, microgrids, HVDC interconnectors and international grids levering demand, time zones, and storage will align incentives and cooperation further amongst countries. When renewable energy infrastructure becomes sufficient enough in capacity to produce all the infrastructure for more renewable energy, it'll be like a high-rez 3D printer that can print a copy of itself. Subsidies will slowly shrink. And since the biggest dictators will all be beyond the statistical age of death early next decade, I think all of the untenable disruption, friction, and cost they add to the world currently, will dissipate. And since oil is rapidly on its way out, the bloodlines determining who you are in the countries where anti-trust never happened will be checked.\n![Image 2-8-24 at 6.21 AM.jpeg](https://m.stacker.news/15341) \n\n\nA great peace. 🕊️\n\nA world capable of building a bitcoin standard in the decades thereafter, replete with fusion, photonics, where the BTC quote price (USD) yields right of way. Commodity money loves abundance. It soaks up that value. \n\n\nAt least that's the most frictionless way I can imagine it going down. Nobody's prepared for that world. You'll have to be born into it. Many will misidentify it, fight it.\n\nBut none of this fantasy really deals with layer 2, scaling, nodes, our domain. Who knows, I needed to make my return to Stacker and stretch my fingers. Feels good. Great site updates since I was here last btw. Let the image talk:\n![No Shit.jpeg](https://m.stacker.news/15325)\n\n\n\n\n\n\n\n\n\n\n\n \N 16284 \N 307713 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.3747287549524 0 \N \N f 0 \N 0 33845448 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 92219 2023-11-29 15:39:49.45 2025-03-29 22:39:46.785 I was a well-paid blockchain / web3 dev for years, but became disillusioned. For context, I was the head of an NFT launch that was written about in Vogue magazine. I remember being asked one day by management for blurbs about what made our NFT special and realizing with total certainty that the answer was "nothing". we've been working for months on nothing. \n\nStarted feeling like a fraud. A total snake-oil salesman. Dropped out of the industry in the spring (what a bittersweet day) and started living on savings. Spent months trying to come to terms with my career, what felt like a waste of several years. Honestly felt like shit.\n\nBuilding on Lightning these past few weeks has brought me back. This tech is _seriously_ revolutionary. Apps where you can spend 1/6 of a PENNY and it just works instantly opens up entire genres of software. \n\nFeels so good to know that those years weren't wasted. That there is even more potential in this field than I ever thought before. But mostly that I can work with crypto without ever having to look in the direction of Vitalik again <3 \N 17552 \N 92219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.6183515093655 0 \N \N f 0 \N 0 113193901 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 81788 2023-11-02 17:22:23.8 2025-03-29 22:39:46.785 SN release: image uploading That's mostly it. 100% @ekzyis\n\nThere's a little button for adding images (probably too little) and you can also add images by dragging them to the textarea.\n\nThere's a lot of great stuff I'm actively reviewing but I know how badly you've all been waiting for this so I decided to just push it.\n\n![LwdbX00.gif](https://m.stacker.news/4212) \N 4958 \N 81788 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.98555881006369 0 \N \N f 0 \N 0 202572566 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402192 2025-02-13 15:47:17.613 2025-03-29 22:39:46.785 industry men take themselves so seriously. . .a girl's take on meetups Forgive me for the rambling that follows. It is not meant as critique, nor complaint, but simply as an observation, one that is amusing to me. \n\nI have been attending bitcoin meetups regularly for one year. There are several where I live (which is the reason I chose to live here) so in that year I've had a generous portion. I have learned a great deal and been fortunate enough to befriend a few people who also attend these. So let me be clear, I enjoy going to the meetups. But, I am not a dev. I am a woman. And I am a writer, which is to say that I have the solipsistic tendency.\n\nFor fun, I just want to welcome you inside my head at these functions for one moment, if you'll allow me.\n\nA quote from The Great Gatsby comes to mind often when I am staring out alone at the sea of men around me, their conversations roaring over my head,\n\n_"High over the city our line of yellow windows must have contributed their share of human secrecy to the casual watcher in the darkening streets, and I was him too, looking up and wondering. I was within and without, simultaneously enchanted and repelled by the inexhaustible variety of life."_\n\nI often experience the energy that springs to life during our meetups as the casual watcher in the darkening streets. I think of the person who has no context whatsoever, and I am that person, in the deepest sense. I like this position, the within and without. I'm an introvert who pleasures in my own experience. At the same time, this emboldens me to act as the bridge between what is signified in our meetings and the outside world.\n\nI guess what I'm saying is that given my perspective, I am uniquely positioned to extend understanding to a minor portion of the group of attendees who take themselves too seriously, and in doing so, brandish a punk attitude. I wanna talk to this minority on behalf of others, which may be wrong of me to do, but perhaps it will be an interesting talk anyway. It's this attitude that keeps you from seeing me, or others like me. It's this attitude that keeps us in the dark. \n\n-Admittedly, these are some broad strokes I am painting with-\nWhat I have noticed is an atmosphere of importance ballooning around individuals, and all I'm saying is that balloon around you looks kinda silly, and it probably doesn't serve you in the end. I am not writing here to call anyone out. I'm only holding up a mirror. But like I said, I can extend understanding. Bitcoin is important, bitcoin is its own war of ideas. You need to protect your time and energy, and a lot of people come around whose hidden intentions are stanky and not worth a glance. Therefore, letting people prove their intentions over time and earn trust is the model for how this network operates, as interpersonally as it does computationally. So hardening yourself to new people who don't have a body of work behind them makes sense as a practice. \n\nThe danger in this practice, I believe, is that you stifle curiosity. You assume that you know where value comes from. You won't take the risk of excavating because you're convinced there's no gold. Translated: you won't ask a girl why she comes to meetups because of some assumption about what she understands. How can you be so sure?\n\nFood for thought. I just think we can grow a lot more without the constraints of a rubbery balloon skin enclosed around us.\n\nThere is also a completely understandable alternative explanation for my observation, one that doesn't need to point any fingers at anyone's particular behavior at all, and so it is important to note here as well: People be busy.\n\nAnyway, let me also say being a girl at a meetup is calm, it's not that deep.\n\nTL;DR\nstay humble,\nstack sats. \N 20245 \N 402192 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.6014404008778 0 \N \N f 0 \N 0 249459328 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 233116 2024-09-10 12:31:51.066 2025-03-29 22:39:46.787 Introduction to the Bitcoin only scene in Japan. # Macro Background\n\nDespite being the 3rd largest economy in the world, the Bitcoin only scene in Japan is pretty small. Even the wider “crypto” scene is small, with only around 4M Japanese having accounts on “crypto exchanges”, out of a population of 120M. The reasons often put forward are: 1) the language barrier makes it harder for Japanese plebs to get information. 2) Scandals such as Mt. Gox, which was based in Japan, gave Bitcoin a bad image, and 3) in general, people have higher trust in institutions and higher trust in the integrity of the Japanese yen compared to other advanced economies. \n\nRegardless of the reasons, it’s pretty obvious Japan is in dire need of Bitcoin. The debt to GDP is the highest in the world at 263% and with an ongoing deficit of 1/3 of the annual government budget, as well as increasing pressure on the weakening JPY, the debt and currency situation is likely only going to get worse. \n\nYears of Keynesian loose money policies have largely funneled printed money into cantilionare giants , which suck up and largely squander all of the productive assets of the country. Meanwhile the demographic trend will see 40% of the population being over 65 by 2050. Finally, the geopolitical risks of energy dependence on the middle east, and dependence on China as the largest trading partner, leave the wealth and prosperity of Japan is hanging by a thin thread. \n\n# Some history\n\n### The bitcoin heyday—2017 and the blocksize wars. \n\nJapan has a strange connection to Bitcoin. Satoshi chose a Japanese name for his nym, many prominent Bitcoiners live or have lived out here, and the first exchange--Mt. Gox--was founded here. The meetup scene in Japan was also fairly active pre blocksize war. With the likes of Roger Ver based out here, quite a lot of effort was made to promote base layer bitcoin as a means of trade, and several businesses around Japan began accepting bitcoin as payments. The subsequent 2018/19 bear market led to the enthusiasm dwindling, merchants one-by-one gave up on bitcoin (or worst—persisted with bcash) and the Covid pandemic took its toll on what there was remaining of a meetup scene in Japan. \n\n### Recent Developments post covid\n\nThankfully there has been a resurgence of late, and the point of this post is to make people aware of the active groups in Japan, to encourage stackers who are either based in Japan, or who plan to visit Japan, to reach out and get involved. With Nostrasia coming up in November in Tokyo, it is hoped that we can make connections and grow the bitcoin only scene here around that event. \n\nOne great thing about this bear market is that there is non of the 2017 era speculative mania around the bitcoin. The suits, scammers, and the stupid have all migrated to Web 3.0. Meanwhile the Web 3.0 events have almost zero to say about Bitcoin. Meaning that we have an almost perfect split of Bitcoin vs "crypto" occurring in Japan. Meaning also that the bitcoin-only groups are very high-signal.\n\n# The Groups\n\n### Tokyo Citadel\n\nThis is the group I co-founded back in early 2022. It is primarily ex-pat and English language, and was born as a Telegram group after the founding members met at a Bitcoin pizza party in spring that year. The focus of the group is privacy, bitcoin, freedom tech, citadel building and circular economy. We have regular meetups, a Podcast, and we are launching a new format of event later this month called **“Honeybadger Hiroba”** where we will be renting a physical space and combing presentations along with a casual meetup format. The group is run by the plebs for the plebs, is very punk with zero corporate sponsorship. If you would like to get involved, please reach out to the group via the following channels:\n\n[Website](https://tokyocitadel.com/)\n[Meetup.com](https://www.meetup.com/tokyo-citadel-meetup-group/)\n[Honeybadger Hiroba event](https://www.meetup.com/tokyo-citadel-meetup-group/events/295937721/)\n[Podcast](https://fountain.fm/show/NK6TDa05paluyxKjV6lB)\nNostr: npub1cl42c2k2j7zw2upef2c2qjpd7sz7ks0r5nkvjag7k86q8zev8l0qwmgf39\n[Telegram](https://t.me/+PXysoJ18WGdmMThl)\n[Marketplace (Amazon gift cards, books, courses, coffee for sats. Japan only)](https://tokyocafe21.com/)\n\n### Diamond Hands/ Bitcoiner Hanseikai\n\nDiamond hands is primarily Japanese language and focused on the technical aspects of the Lightning Network, particularity routing nodes. They are also highly professional and technically competent and even have corporate sponsorship and a popular swap services available to the public, among other projects. \n\nCo-founded by Koji Higashi, who also runs the Japanese language YouTube channel “Bitcoiner Hanseikai” (Bitcoin focussed, but does discuss the wider “crypto space”) and the Diamond Hands substack newsletter, which is Bitcoin focused, and has recently launched a paid subscription with the mission of furthering Bitcoin adoption in Japan, by raising the quality of the discussion of a Bitcoin focused mindset. \n\n[Diamond Hands Website (English/Japanese)](https://www.diamondhands.community/)\n[Diamond Hands newsletter (Japanese)](https://diamondhandscommunity.substack.com/)\n[Diamond Hands Telegram (Primarily Japanese/English speakers available)](https://www.diamondhands.community/)\n[Diamond Hands Boltz-based swap service (English)](https://swap.diamondhands.technology/)\n[Koji’s website (English)](https://medium.com/@coin_and_peace)\n[Koji’s YouTube “Bitcoiner Hanseikai” (Japanese)](https://www.youtube.com/@user-wv4pc4kj9i/videos)\n\n### Lostinbitcoin.jp / Tokyo Bitcoin Hackers\n\nLostinbitcoin was founded by Teruko Neriki, who translated the Bitcoin Standard and the Bullish Case for Bitcoin into Japanese, and is a regular attendee of Bitcoin conferences all over the world. The site aims to provide high-signal Bitcoin content to a Japanese native audience. The website is high-signal and should probably be the first thing you share with any normie Japanese in your life who you think may benefit from learning more about Bitcoin. \n\nTeruko is also very involved in the Meetup scene in Japan and she co-hosts events along with Mempool Wiz at the OG Meetup “Tokyo Bitcoin Hackers” which hosts high-signal events with many high quality bitcoin builders. The events tends to feature prominent speakers (who are often visiting Japan) but are relatively infrequent as a result. (maybe once every couple of months). \n\n[Website: (Japanese)](https://lostinbitcoin.jp/)\n[Tokyo Bitcoin Hackers meetup](https://www.meetup.com/Tokyo-Bitcoin-Hackers/)\n[Interview with Teruko (English)](https://www.youtube.com/watch?v=qcKG86G55Wo)\n[The Bitcoin Standard Japanese translation](https://www.amazon.co.jp/-/en/gp/product/B09G2779P5/ref=dbs_a_def_rwt_hsch_vapi_tkin_p1_i0)\n\n# KYC free scene in Japan\n\nKYC free is not great in Japan, in my experience. Activity on Bisq is low with non existent in-person or cash by mail. ATMs are here but completely KYC-cucked. Incidentally, Japan is the KYC Kingdom and it’s impossible to get a phone number here without KYC and you very often need KYC to stay at individual Airbnb locations. Mining is also expensive with some of the most expensive electricity in the world, and small houses/apartments making noise from miners a real problem. With that said, it is possible to get Azteco vouchers here if you know where to look. There is also some robosats use from what I hear and sometimes people visiting will be looking to sell some sats into the local JPY fiat so it is worth attending meetups regularly for that sort of chance to come up. \n\n# Summary:\n\nThe bitcoin only scene is small but high signal and growing. People are pulling their sleeves up and putting in the PoW to promote bitcoin adoption in Japan. We need more plebs to join the mission. If you are in Japan at any point, please join in as many of the groups listed above as possible. If you know people in Japan or have Japanese friends interested in Bitcoin, please send them our way. If you have any questions please post them below and I will do my best to answer within the Japanese time zone. Thank you! \N 17710 \N 233116 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.7065286449701 0 \N \N f 0 \N 0 171081608 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 158337 2024-04-16 09:20:26.321 2025-03-29 22:39:46.787 An adoption story | 10 years ago I onboarded a small company to Bitcoin ## A true Bitcoin adoption story\n\n>This is not bullshit, this is not made up. I kept this story for long time and not talk about it publicly. But today are 10 years from when I started this onboarding process of a small company. It was hard and a quite a long process.\n\nI hope that this post will inspire more and also give some more answers to those asking "but how we can get onboard companies?"\n\nThe TLDR answer to that question is: [YOU MUST HAVE BALLS, BIG BALLS](https://stacker.news/items/685719).\n\nUnfortunately, I cannot give all the details of the company. I asked them, if I can publish their name and they declined. What I can say that all this happened somewhere in EU and at that time was quite known online company, in the rentals business.\n\nBut first of all, let me start from the beginning... because this company also changed my life somehow.\n\n### How it started\n\nAs you may know, I started with bitcoin in 2012 and I worked in IT (consulting, infrastructures, servers etc).\n\nOne day, in 2014, a friend of mine told me (a nice dutch guy) that he have some other friends that are starting a new company and they need some help with computers and stuff and if I can help them build the office and be their IT consultant. OK, agreed and went to meet them. 2 funny dutch guys too but from the beginning talking with them I notice that they are very intelligent and visionary.\n\nI didn't mention at all about Bitcoin, but came to my mind. So I STFU, keeping that for later. Bitcoin was the perfect answer for their business. \n\nBut somehow I said to myself:\n>*nah is too early, let's see what they will do, Bitcoin is not so ready for them too*\n\nAfter few months, the office was ready, servers in place, they already had 10 employees. In 1 year they already were well known and being a name in their market branch. All was doing really good. \n\nIn 2015 also I didn't want to bring their attention to Bitcoin, but having some drinks with them (we use to have fun & drinks each friday evening), one day, wearing a tshirt with a BTC logo, they asked me "hey are you into Bitcoin?" I answer simply: "yes, for quite some time". Then we moved on talking something else, but I saw in their eyes, the interest to ask more. But I wanted to let them come to me and not pushing.\n\nIn early 2016, were already 40 employees, 2 IT guys, 2 software developers dealing with their backend and the business was booming.\nI was already on my path to de-peg from fiat and I was preparing the rails. One thing was missing for me: a stable income directly in BTC. I was still buying those times, but still keeping nothing in the banks. All in BTC.\n\nSo in a meeting with core directory I bring up the subject of Bitcoin.... remember that in 2015-2016 the BTC price was really low, almost touching 150€.\n\n### How was going the onboarding process\nMy proposal was simple, providing a plan in steps:\n- company should start slowly accumulate BTC, buying from P2P or CEX, using all their cash reserves, money that were not destined for expanding and fixed expenses, money that are just sitting in a bank and do nothing.\n- I will provide for free Bitcoin courses, to all company members interested. On my extra time, not during my work hours.\n- I've explained to the accountant that Bitcoin is practically cash and there's nobody that can rule over your own cash. They had a very smart accountant, a real accountant that was always looking how to save money for the company, not how to oblige the regulations... So he immediately understand "my game".\n- once they have accumulated a certain amount of BTC, they could start using it if the price is in their favor and / or when their cash reserves are low and they need an infusion of funds. The best example was to... pay me in BTC directly from that "savings wallet". The accountant also understand this "game of volatility" that could be a simple way to protect yourself from inflation and bad market conditions.\n- each director (were 3) agreed that they will start first with their personal wallets, dedicating a % from their monthly income to be converted into BTC. So I helped them first to setup their own wallets. By the books.\n- possibility to pay more employees from that "savings BTC fund". The accountant did some spreadsheets with me, calculating a way of "buying low BTC and pay (in BTC) when the price goes high". It was fun. Is not easy, but with a good accountant you can do it. so they start also paying some other 2-3 people, not only me.\n\nSlowly adding the "Bitcoin accepted here" sign on their website. That was hard for those times. Weren't so many tools and good software for that back in pre-fork /pre-LN era. So was more like a marketing experiment for them, meanwhile still accumulating in private large quantities of BTC.\n\nI could say that in 1 year they were accumulating a good amount of BTC going from 1% allocation to more than 50% allocation of funds in BTC. They had also to keep a balance between fix expenses, 10% emergency reserves and other stuff. So they decided that 50% is enough. \n\nIt was more than enough ! In 2017 once the fork was settled, I've told them that now they can DOUBLE their stash just by redeeming the new BCH and dump it on the exchanges. So they did it! That was a game changer for them. When they saw practically doubled the stash, their strategy changed. Bitcoin changed them totally. And me too.\n\n### How it ended\nAfter the fork, me and the 3 of them, realized that life can be different now.\n\nI know for a fact that each of them continued to buy BTC for themselves, but the company unfortunately grow to fast, too big and also with some changes in their personal life, they weren't able to keep it alive and in the end they sold it to a bigger fish. But they remained with a big stash of BTC.\n\nFrom that year, I started also a new life, closing all my bank accounts and working only for BTC. I stopped working with clients that do not want to pay me in BTC. Yes, I lost a lot of clients, but I remained with my BTC.\n\nThis year, I called one of them to see how's going. He told me that one of them is retired with his family somewhere in the Pacific Ocean, on an island. Another one is still running a small business for fun, with a winery and he's just retired now, in a nice mountain house in the Alps, enjoying life. He told me also that will never forget what I did for them...\n\n### THE END - Conclusion\nThe punch line from this whole story will be: NEVER GIVE UP. Bitcoin will change your life. If you wait for a government, regulation, accountant or any other bullshit to tell you what to do, you are a fucking loser.\n\nYou are the only one that can decide what you do with your money (BTC), nobody else's business. And if you do not have big balls to do this step and find all the ways to do it, then you are just a bullshit company.\n\n[![darth-weak-brave.jpg](https://i.postimg.cc/Pq2RW6LS/darth-weak-brave.jpg)](https://postimg.cc/rdRjcNN4) \N 4062 \N 158337 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.578607568471 0 \N \N f 0 \N 0 55369715 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 237322 2024-09-15 09:09:13.362 2025-03-29 22:39:46.788 🌐 What websites (other than Stacker.news) do you visit daily? \n\nWe're daily here, on Nostr (various clients, currently switching between Nostrudel, Coracle, Yana, Amethyst, Primal, Spring), Reddit, Twitter, and messaging platforms.\n\n\n❓❓❓\n\n### What is the place in the internet, that you visit every day?\n\n⚡ _each answer gets 100 sats_ ⚡ \N 20504 \N 237322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7382340311841 0 \N \N f 0 \N 0 146394651 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 274757 2024-10-23 00:06:11.083 2025-03-29 22:39:46.788 An Interview with @k00b I want the stackers to know that @k00b is a really cool dude. \nOn occasion I will have a 5 minute interaction with him throughout the week, and it is always something I look forward to. I thought I would recreate this for you. In my attempt to show you how cool he is, I asked him for a brief meeting and then made him answer random, intense and personal questions. \n## Boss\nplebpoet: “you seem like the kind of boss that is excited to hear ideas and let someone try anything, hands off. why are you like that?”\nk00b: “laziness. and people don’t want to be controlled. I won’t even bother with it, I can’t make anyone do the things they don’t want to do.”\nplebpoet: “I know you have a lot of open contributors, is there ever a kind of friction due to your openness?”\nk00b: “Maybe there are people who aren’t used to it, they’re not used to being fully in control of themselves. And maybe they feel the pain of doing it wrong. I try to intervene early and share my thoughts so that it gives them confidence.”\nplebpoet: “Did you ever have a good boss?”\nk00b: “I don’t really listen to people when they tell me what to do.”\nplebpoet: “oh”\nk00b: “I like autonomy because of the pain it causes when you’re wrong. You need that pain to learn not to do it again, you need the visceral experience.”\nSomething in the conversation about the red pill and feminism came up…blah blah….then k00b said, “I think men especially find one thing they are obsessed with early and then they are just stuck in it for life, living for it.” The next questions followed from this.\n## God\nplebpoet: “Okay you used to be a painter, you found painting early. Why don’t you go back to painting?”\nk00b: “I like the sensation of people interacting with my work, and software is more”\nplebpoet: “alive?”\nk00b: “Yeah.”\nplebpoet: “yeah well painting is-“ and then plebpoet gave a defense of painting, but admits something about how its bad now because it’s sort of trapped inside a culture box with a cold…blah blah…then asks, “What do you think about God?”\nk00b: “I don’t think you can think much about God.”\nplebpoet: “Oh. What?”\nk00b: “Yeah, it’s too big. If this thing is real, that means it’s unfathomable. I think the whole point is that you can’t know.\nThen plebpoet tried a defense of faith. It was not worth repeating, and I can’t even remember it.\n## Future\nplebpoet: “Do you think about what stacker news is gonna become?”\nk00b: “I have ideas of what I think would be cool. I mostly have ideas of what I don’t want it to be, which is kind of easier.”\nplebpoet: “You seem like you don’t struggle with motivation. Is that true?”\nk00b: “I couldn’t tell you. I’m probably so burned out, but I’m just numb.”\nplebpoet: “Well when you walk in everyday, I hope that’s the time that you can become a person again.”\nk00b: “Not really. But it does help me see the world and stay open, and be unengulfed in my own ruminations.”\n\nThanks @k00b, always fun to talk with you. \n\nStackers, do you see what I mean yet? If not, maybe I’ll do this again. What questions would you ask?\n\nI think the lesson to take away is this\n> stay unengulfed in your own ruminations \N 2543 \N 274757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0626154935337 0 \N \N f 0 \N 0 51399335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 293944 2024-11-12 08:37:39.187 2025-03-29 22:39:46.788 What should bitcoin be? Saylor's recent WBD interview brought the question to a head. In the interview, last cycle's bitcoin jesus pits scalable self-sovereignty against bitcoin as a store of value. This dichotomy was presumed to be false after the blocksize wars, we'll have small blocks and layer 2's, but when Saylor put it on the banner of ossification, he brought it back. Absent a BitVM-like breakthrough giving us more script expressivity without a consensus upgrade, ossification means the UTXO set can't scale. There will be plenty of bitcoin for everyone, but no room on the blockchain to establish everyone's ownership of it, nor a layer 2 allowing us to share UTXOs.\n\nSaylor seems content with his kind and their instruments, corporations, ETFs, and governments, as the only true owners of bitcoin. Most of us will own no bitcoin and be happy or, in other words, bitcoin's benefit to institutions will trickle down. Saylor was evasive in his interview, afraid to tempt the romans, careful to not create a sound clip of him sacrificing the cyberhornets that made him a billionaire in the hopes they'll help make him a trillionaire next. Yes, if bitcoin succeeds as he wants, most of us will only ever own paper bitcoin, tokens in a de facto worldwide bitcoin-backed CBDC, but at least it's better than a fiat CBDC, right? Let the Saylor Moon rise, stand down, and don't worry, the poors can get rich and free as we allow them.\n\nSaylor also brought news that bitcoin development is no longer a commons and charitable organizations funding development are only a good idea to commies. The free market, Saylor as its spokesperson, will do whatever menial development work is left to be done. All that bitcoin for corporations needs now is better sales, yacht-sun-soaked hallucinations producing better podcast metaphors and AI image prompts. Mission accomplished.\n\nI respect Saylor a lot. He's all balls - smart and brave with a long, verifiable history of being so. It's just a shame to see him make the mistake of talking down to bitcoiners like this, thinking he understands it best because he's asked to speak on it the most, but it was inevitable I guess. It has to be hard to earn billions of dollars, and taste a trillion more, only to learn you don't have any control over what could make you a greater king. \N 2711 \N 293944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5074031647064 0 \N \N f 0 \N 0 143770240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 195512 2024-07-06 15:09:54.235 2025-03-29 22:39:46.789 How to Connect your LN node to SEND/RECEIVE sats to/from SN via NWC with AlbyHub \n\n![attach Nostr Wallet Connect](https://m.stacker.news/53717)\n- - -\n# 0.0 Intro:\n\nNostr Wallet Connect (NWC) look's like being, lately, the most requested and used option to connect your node to SN! And SN to your node... In this guide, we will go through a few simple steps to _leverage_ the nostr protocol to move sats around wallets: SN wallet and your (ideally NON-custodial) wallet. [NWC.dev](https://nwc.dev/) is the open protocol to connect lightning wallets to apps. Pretty damn powerful, considering its level of censorship resistance and privacy.\n\nThere are still not many options that have NWC integrated and working, providing the capability to generate public keys and secret keys to connect wallets and apps through nostr relays. @Alby Hub is the latest one, and THE one we gonna use in this guide. Ready?\n- - -\n# 1.0 Requirements\n\n- [x] 1 public or private Lighting node\n- [x] 1 AlbyHub app installed and running\n- [x] 1 [SN account](signup/r/supratic) (Last but not least important!)\n- [x] 2 NWC connection keys\n\n\n![attach NWC error](https://m.stacker.news/53739)\nYes, we'll need two different keys! One for sending and another different connection key for receiving.\n- - -\n# 2.0 Creating the NWC connection keys on AlbyHub\n\nIf you are still learning and or evaluating options for your Lightning node, I highly suggest you starting from @Darthcoin guides, forever available on [github](https://darth-coin.github.io/) and [substack](https://darthcoin.substack.com/) in many languages.\n\nAt this point, I'll assume you have your LN node running and some channels already opened with some perfectly balanced liquidity (sats). It's an absolutely vital detail we cannot miss! You ca also check the health status of your node after installing AlbyHub. 👇\n\n![AlbyHub Node Liquidity and Health](https://m.stacker.news/53787)\n![](https://m.stacker.news/53691)\n\nThe cool stuff about AlbyHub is that allow, not only to check your node and channel status, but most essential for this scenario, it gives much better management capabilities of the permissions you want to assign to specific NWC keys. If you care about your privacy, and to mitigate future issues, it's important to give each key the right authorization access. If you want to learn more about AlbyHub you can open [guides.getalby.com](https://guides.getalby.com/user-guide/v/alby-account-and-browser-extension/alby-hub/node/node-health) in another window to read more later ;)\n\n![AlbyHub App Store preview](https://m.stacker.news/53736)\n![](https://m.stacker.news/53691)\n### 2.1 Select "stacker news" from the App Store\nI'll start from the AlbyHub App Store because in this way our Connection will be later featured in the AlbyHub connections page with the beautiful SN icon instead of being a just generic one. \n\n![](https://m.stacker.news/53745)\n![](https://m.stacker.news/53691)\n\n### 2.2 Creating the Connection keys\nLet's click on the **stacker news** **[🔌 Connect]** button, and we'll see that by default, the Connection is set to give **Full Access** to the app, you can keep it this way if you like. \n\n![](https://m.stacker.news/53785)\n![](https://m.stacker.news/53691)\n\nMy suggestion is to set the permission at a minimum to define exactly what access each Connection key to do just what it supposed to do with your wallet! Check the settings below respectively for sending NWC connection key and another different one for receiving:\n\n| **connection key** for sending | **connection key** for receiving |\n|---|---|\n| ![](https://m.stacker.news/53781) | ![](https://m.stacker.news/53780) | \n\n\nIn the Connection key for sending you also have the option to set a badget, in the example below, the connection will be allowed to take from your node until a max of 100k sats a month.\n\nIndeed, if you are really control freak, you could set an expiration date for both connections keys independently. \n> Note: you'll be able to edit all the connection keys parameters after you create it.\n\n![](https://m.stacker.news/53691)\n### 2.3 T̲e̲m̲p̲o̲r̲a̲r̲i̲l̲y̲, save the keys somewhere\nEach time you create a Connection, you'll see this screen. **Note that after leaving this screen you'll be not able to retrieve the Connection keys provided, and if you close it accidentally just delete the Connection and create a new one.**\n\n![](https://m.stacker.news/53782)\n![](https://m.stacker.news/53691)\n\n- 2.3.1 Click the **[Copy pairing secret]** button, it will keep the Connection keys in your clipboard.\n- 2.3.2 Paste them in a text file for a moment, don't save the file, just keep them there for a sec! You could also go back and forward between AlbyHub and SN to do one at a time, whatever is easier for you.\n- - -\n# 3.0 Connecting your node to SN via NWC\n\nNow that we have both connection keys, for sending and for receiving, let's open our [SN wallet > attach wallet > NWC](https://stacker.news/settings/wallets/nwc) also accessible directly from the url [`https://stacker.news/settings/wallets/nwc`](https://stacker.news/settings/wallets/nwc).\n\n![](https://m.stacker.news/53783)\n![](https://m.stacker.news/53691)\n\nMake sure you respectively paste the right key in the right input field\n![](https://m.stacker.news/53793)\n![](https://m.stacker.news/53691)\n\nWe are nearly there... just make sure to set:\n\n- **desired balance** = `0`,\n- **max fee** to a min of `1%` and...\n- . ... click on the yellow **[ attach ]** button.\n\n![](https://m.stacker.news/53435)\n\n- - -\n# 4.0 Congratulations, stackers! \nYou just did your first step into bitcoin sovereignty! Your sats now should be landing directly in your Lightning node. \nTwo NWC keys, One Connection, Zero stress... Happy stacking!\n\n![](https://m.stacker.news/53796)\n \N 17212 \N 195512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4604221441805 0 \N \N f 0 \N 0 39745703 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421375 2025-03-01 15:59:32.156 2025-03-29 22:39:46.784 Lessons I Learned As A Lawyer, Part 1 I spent my career defending people accused of committing crimes in and around New York City. Coming out of law school, I believed in the U.S. Constitution. I had studied about concepts like the presumption of innocence, the right to remain silent, the right to a trial by a jury of your peers, the right to be free from unreasonable searches and seizures, and other myths of the regime. I was an earnest, idealistic idiot, but my eyes were quickly opened.\n\nMy first job as a lawyer was working at a small firm located right on the edges of a crime filled African American community on Long Island, very close to the New York City borough of Queens. Locals say “on Long Island” to designate the eastern suburbs, but the city boroughs of Brooklyn and Queens are also on the island. \n\n### Learning The Ropes\n\nFor one of my first cases, I was sent to court to represent a 19 year old African American kid who was charged with promoting gambling as a felony. Keep in mind, this was back in the 1980s, when all gambling other than horse racing and the government numbers racket known as the lottery was illegal. In New York, you are not entitled to Youthful Offender treatment after your nineteenth birthday. So, my client could be saddled with a felony conviction that would follow him around for life. The facts of the case are as follows:\n\nThe kid had organized a craps game in the back alley behind a local bodega. The local cops got wind of the game, shut it down, and arrested my client. He was scared and told the cops everything. \n\n### Cattle Call\n\nI went to the giant courtroom where all of the overnight felony arrests were being processed. There were almost 150 cases on the calendar. The room was packed with lawyers and family members. I hoped that the courtroom prosecutor would offer to dismiss the case or reduce it to a non criminal offense, since it was my client’s first arrest, it was not a crime of violence, and he was so young. She said I had to conference the case with her supervisor. \n\n### My Meeting With The Capo\n\nI walked into the supervisor’s office to make my argument. There, behind his desk, hanging on his wall was a giant whiteboard. On it was the familiar grid and boxes of a Super Bowl pool. The big game was the next weekend. I was so happy. Here was my defense. How was the kid’s crap game any different from the District Attorney’s football pool? I asked him about it before we started talking about the case. He asked me if I wanted to buy a box. I declined. He told me it was really just for the cops and prosecutors, but a lot of defense lawyers buy boxes too. \n\nThen he opened the file containing my case. I anticipated a big, dramatic reaction. “Your client is accused of running a craps game.” That’s all I got. I pointed to the football pool and asked him how his conduct was any different from my client’s conduct. He was puzzled. “What?” I explained that football pools were illegal under New York law. He was promoting gambling. He laughed in my face and gave me a classic New York “gedthafuckouttaheah”. It was like a scene from Goodfellas. He liked that I brought it up! He wasn’t sheepish. He wasn’t nervous. He called his assistant in to tell him what I had just said. They both laughed. Then the prosecutor turned to me and said something like “Hey, you’re a good kid. I’m gonna like having you around.” As if something I said meant that I was now a member of this big club for whom the law doesn’t matter. I felt like a child getting approval from his parents.\n\nHe then offered to let my client plead guilty to a non criminal disorderly conduct. It was a good deal. He would have no record, but he would have to pay a fine. I briefly fantasized about refusing the offer and making a big thing about the hypocrisy, but I knew I would be going up against forces far bigger than myself. And, I had to make a living.\nMy client and his family were very happy with the job their lawyer had done. They immediately accepted the offer. \N 20802 \N 421375 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.7220434926835 0 \N \N f 157201750 \N 1 124236594 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435441 2025-03-12 17:20:30.095 2025-03-29 22:39:46.784 Analysis of 0xB10C's weird bitcoin transaction The following is an analysis of this bitcoin transaction: https://mempool.space/tx/b10c0000004da5a9d1d9b4ae32e09f0b3e62d21a5cce5428d4ad714fb444eb5d\n\nThat transaction does a lot of interesting things. Here is a partial list:\n\n- it sends money to a non-standard bitcoin address that only contains 2 bytes ("bc1pfeessrawgf") where the standard is for addresses to be 20 bytes long\n\n- that nonstandard address *should* appear on bitcoin explorers as the plain text term "non-standard" but the transaction author knew that mempool.space has a naive/buggy address parser and exploited that to make the address look like a valid-but-incredibly-short segwit address\n\n- the transaction seems to attempt use every form of valid bitcoin input and output type: p2pk (the oldest output type, where you send money directly to someone's public key), legacy (the format widely used from 2010 to 2017 -- also tied for oldest, since Satoshi included this format as a non-default option in bitcoin v0), "bare multisig" where the output is a list of two or more public keys, P2SH multisig where the output is a "hash" of two or more public keys, "nested segwit," "native segwit v0," segwit v1 (i.e. taproot), plus two unusual lightning-related utxos: an in-flight HTLC and a force closure tx\n\n- the input amounts contain several interesting numbers: 6102 is the executive order by which Roosevelt implemented a partial ban on self-custodied gold in the USA, 1913 is the year he did that, 1971 is the year the USA abandoned the gold standard, 2140 is the year bitcoin's block subsidy stops, 5139 refers to the CVE report number of bitcoin's inflation bug from 2010 where someone created billions of bitcoins and the network forked & rolled back to override it, 3220 refers to the CVE report number of one of bitcoin's only hard forks: the berkeley database fork, 17144 refers to the CVE report number of the 2018 "would-be" inflation bug that never got exploited, 8149 refers to the pull request that integrated segwit, 19953 refers to the pull request that integrated schnorr signatures, and I don't know what 9001 refers to, but there was a relatively minor bug in bitcoin core which was fixed in 2016 and had that issue number -- it involved getting a corrupted database if you had pruning enabled in bitcoin core and your pc crashed during initial block download...if it happened you would have to restart from scratch. I suspect 9001 is more likely a reference to the "It's over 9000!" meme from Dragon Ball Z\n\n- the output amounts are the dust limits for bitcoin's various address formats: 576 for p2pk addresses, 540 for legacy addresses, 582 for bare multisig addresses, 546 for p2sh addresses, 294 for segwit v0 "regular addresses," 330 for segwit v0 "script addresses" and segwit v1 "taproot addresses", 240 for the non-standard 2-byte address, and 0 for OP_RETURNs\n\n- the first and third inputs use uncompressed pubkeys, which are unusual in bitcoin because compressed pubkeys are smaller and cheaper (and required in segwit addresses)\n\n- the fourth input (p2sh multisig) use a proof-of-work technique called "signature grinding" to produce a valid bitcoin signature that is only 57 bytes long. Normal bitcoin signatures are 73 bytes long (except schnorr signatures, which are shorter). It took the tx author a long time to do that and it was very expensive.\n\n- the various signatures in the transaction use all of bitcoin's six sighash flags: SIGHASH_ALL, SIGHASH_NONE, SIGHASH_ONE, SIGHASH_ALL | ANYONE_CAN_PAY, SIGHASH_NONE | ANYONE_CAN_PAY, and SIGHASH_ONE | ANYONE_CAN_PAY -- and the last input (which is a taproot input) also uses SIGHASH_DEFAULT which was added for taproot and means you do "not" use a sighash flag, which bitcoin (post taproot) now interprets as being equivalent to SIGHASH_ALL (that is the flag most commonly used in bitcoin, and not adding a sighash flag saves you 1 byte, thus slightly lowering tx fees)\n\n- the OP_RETURN output not only pushes text (which is normal) but also pushes all 17 numbers that bitcoin has special opcodes for\n\n- the transaction hash is customized to have the tx author's twitter handle and a bunch of leading zeroes, which is very expensive to do and takes a lot of work \N 17046 \N 435441 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 26.7914410297769 0 \N \N f 0 \N 0 198303170 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 124858 2024-02-08 20:11:04.369 2025-03-29 22:39:46.784 Summarizing my thoughts on ecash For some reason this ecash trend seems to be gaining steam instead of going away, so I'll try my best to detail my thoughts on ecash into one post.\n\n![](https://m.stacker.news/33248)\n\n## 1. The incentives are broken\n\nEcash finds itself between a rock and a hard place. For users to trust the mint, they need to know that the people behind the mint are trustworthy. If the people running the mint reveal their identities (or even just nyms), they're a trivial target for regulators and law enforcement as it's clear a mint is an MSB.\n\nIf the people behind a mint don't reveal their identities or nyms, users of that mint are subject to trivial rug pulls with no recourse. Which do you prefer as a user? Mint operator rug pulls or government rug pulls?\n\nIf a mint had been targeted like Samourai Wallet was, instead of just a potential privacy loss, **all users would have lost all of their Bitcoin.**\n\n## 2. Ecash is not "self-custodial"\n\nFor some reason this concept of ecash being "self-custodial" is a thing, merely because the tokens themselves are self-custodied (and require proper backups of seed phrases etc.) While the lines get a bit weird, it's important to separate two things:\n\n1. The asset people want is Bitcoin, not ecash tokens.\n2. The asset people give up custody on is Bitcoin.\n\nThe ecash tokens themselves are completely worthless IOUs without the Bitcoin behind them, so even if I can take custody of my ecash tokens, I have 100% given up custody of my sats to a third-party.\n\nBecause of this, talking about ecash as self-custodial is disingenuous -- no one wants empty IOUs, they want Bitcoin. When they use ecash they do not have custody of their Bitcoin.\n\n## 3. Ecash still requires all of the hurdles of Bitcoin self-custody\n\nThe hardest hurdle for many people to adopting Bitcoin is the simple first step -- writing down 12 words and making sure not to lose them. With ecash you still have this single greatest barrier of entry as you must backup a seed phrase or secret in order to restore your ecash tokens.\n\n## 4. There is no incentive for custodians to implement ecash\n\nWhile a custodian could switch to ecash out of the goodness of their heart, the incentives are broken for custodians. Not only does ecash harm the UX their users are used to (not having to store a secret seed phrase), it also introduces additional infrastructure complexity. Instead of just running a database, now they have to run additional mint software to provide their users with tokens, and handle support cases where users lose their tokens.\n\nIn theory a custodian could just also store the seed phrase for their users, but then have we actually improved on custodians at all? They even have custody of the ecash tokens in that case.\n\n## 5. Custody is a line that cannot be crossed\n\nThe core of what makes Bitcoin unique is that we can actually take custody of it ourselves, gaining immense freedom and self-sovereignty through a bit of personal responsibility. Even though I am a massive proponent of building better privacy tools, **sacrificing custody to get better privacy is a non-option for me.**\n\nSurely we can do better and build privacy tools on top of Bitcoin (or directly into Bitcoin's consensus layer) that allow us to have both privacy and self-sovereignty via self-custody.\n\nI will not give up custody of my Bitcoin, no matter what, and you shouldn't either. "Better custodians" are just custodians with extra steps, and still strip us of self-sovereignty and thus freedom.\n\n## 6. Time is a more scarce resource than even Bitcoin\n\nEven though I have been very outspoken on what I view as a pointless venture, I am not here to stop anyone from building what they enjoy in the space. Devs working on ecash are free to do so as of course I have no control over them, though I fear that time spent on improving custodians is time that we will not get back. It's clear that the US gov and many in the EU are seeking to ramp up their attacks on Bitcoin privacy and self-custody, and our time to build tools to route around them is growing shorter and shorter.\n\nP.S. - None of what I write is a direct attack on any ecash dev, and I have immense respect and personal relationships with most of the people working on this stuff. Respect for an individual doesn't have to mean I agree with them on every avenue they pursue. \N 21825 \N 124858 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.0779679910318 0 \N \N f 0 \N 0 45579670 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 440907 2025-03-17 16:23:34.59 2025-03-29 22:39:46.785 Optionality Episode XV. Block height: 840000. How to survive and thrive in a volatile world.\n\nThe original Post: https://carlbmenger.substack.com/p/optionality\n————————————————-\nIf you want to become antifragile, survive and thrive in a volatile world, you should discover the concept of OPTIONALITY, capping your downside and leveraging your upside. This is what this episode is all about. Fasten your seatbelt and let us dive straight in.\n\n![Optionality Tree](https://i.postimg.cc/br5YnRZr/IMG-9273.jpg)\n\n### Optionality WTF?\n\nOptionality gives you room to breathe. It is the power to say ‚no‘ without regret. You can walk away from things that arent matching with your inherent values. You can choose to fail on your own terms, rather than succeed on someone else‘s. And failure, after all, is no longer so terrible, because Optionality lets you explore. Instead of struggling against the chaotic randomness of the universe, you can harness it to work in your favor.\n\nWhile consumer ‚capitalism‘ is designed to give us the illusion of great choice, in reality it traps us within one narrow sector of possibility space. It enslaves our monkey minds with useless scrolling and buying the next ‚great‘ invention while stealing our most precious resources: **Money, Time and Attention**. In other words, the fiat world gives us the illusion of Optionality by providing us with 30 different spreads, whereas in reality it robs our true freedom. According to the motto ‚bread and circuses‘, someone who can be distracted with food and games is less likely to question the system.\n\nOptionality on the other hand, provides us with freedom of choice. If you visualise all the potential actions available to you at any given moment, it is a sprawling decision tree of branching possibilities. Unfortunately, the truth is, that most branches of your possibility tree are deadwood by now. If your crippling student loan debt or your thirty year mortgage condemns you to a life of indentured servitude, a lot of branches can’t be walked anymore. The very good news, however, is that many of the branches are just waiting to blossom.\n\nThe idea is to ignore all the alluring fiat ‚deals‘ that are constantly dangled in your direction, then load up heavily on the rare attractive trades with huge upside. There is no guarantee that they will actually pay off, and most of the time, they won‘t. But if we systematically collect these open-ended options, we maximize our chances of getting lucky.\n\n### Restrain Choices\n\nIf we want to build Optionality, perversely, we have to deliberately constrain our choices. It sounds retarded, I know, but hear me out. Constraints can be liberating. By restricting your choices along one dimension, you can create more freedom along a dimension that’s more important to you. Here are some examples: By banishing junk food from your house, your chances of living a longer and healthier life increases; By blocking distracting websites, you gain more focus on working on your dreams …\n\n> „To trade the constrains imposed upon you by others for constraints you impose upon yourself.“\n\nMaybe you have heard about the FIRE movement — those folks who live a frugal life and invest every buck in an ETF to retire early. I mean, you can force everything to the extreme, and if you do, there is always the risk of falling into the trap of putting too much weight on distant future outcomes at the expense of in-the-moment experiences. A lot of the FIRE people have escaped the narrowly prescribed choices of consumer capitalism, only to be trapped by the narrowly prescribed choices of their own ideological movement.\n\nIf single-ply toilet paper is truly the only way to get in touch with your inner self, you know you are trapped in your own ideology and should seek some balance. Thus, it is very important to create your own inner system, or be enslaved by someone else‘s. This leads us to the four factors where you can spread out your Optionality-Tree:\n\n1) Financial Capital: Your assets minus your debts.\n2) Social Capital: The strength and number of your relationships.\n3) Knowledge Capital: All your skills, education, credentials and experiences.\n4) Health Capital: Your physical fitness, mental health, mobility, and energy.\n\nEvery single one of those factors has a resilience side and can provide you with a capped downside and a huge upside, or vice versa. Let us have a look:\n\n#### Financial Capital\n\nThe single most powerful way to open up your Optionality Tree is to (1) have more money, or (2) require less of it in the first place. The combination of simple tastes and a healthy personal financial sheet buys you a lot of freedom.\n\nIf you are reading this, you are extravagantly wealthy by any historical and geographical standards. Imagine that the supposedly richest man on human earth, John D. Rockefeller, who died about 100 years ago, had to live most of his life without a fridge or a dishwasher — things nowadays not even considered luxury. So the first thing is to appreciate the things you own. Don't take everything for granted, but be grateful for the things you have. By being grateful for your possessions, you won't need so much new (unnecessary) stuff. Be aware that for every purchase, you have to spend time on work that you can't use for leisure or investment. Most people are trapped in the fiat hamster wheel because their spending inevitably rises in lockstep with their income. And it does not stop there. Many people are hopelessly indebted, because almost everyone is stuck playing the conspicuous consumption game.\n\n> „Wealth consists not in having great possessions, but in having few wants.“ - Epictetus\n\nThis means, we just have to be a tiny bit less profligate than our fellow bubble residents, and we can skim a big old surplus off the top. Once you're debt-free and have built up a nest egg of 2–5 months' salary, the real fun begins. Instead of distracting yourself with useless things, you can now lay a great foundation for your freedom by starting to allocate your capital to assets that are likely to increase in value over time, instead of buying cars and electronics that are certain to depreciate.\n\nIf you want the cheat code in this new game, there is no way around buying Bitcoin. It is by far the best risk-adjusted asset in the history of mankind. And I'm not saying you have to go all in, but a small part of your portfolio should at least be allocated to the hardest asset human kind has discovered. Be patient, don‘t trade, don‘t do leverage and HODL it long term. Time in the market beats timing the market. By the way: Happy fourth Bitcoin halving!\n\nFurther, to increase your financial Optionalities, start a scalable side hustle: If you can sell a product or service over and over again with no marginal costs, you are no longer bound by linear returns. Owning too much physical stuff limits your options. Buy the highest-quality version of anything you use every day that protects against the risk of ruin or that fills you with joy. Don’t get sucked into status games you didn‘t intend to play. And remember: Living doesn’t cost much, but showing off does.\n\n#### Social Capital\n\nFor the first time in history, we are no longer confined to associating with a handful of people who grew up in the same village. We have an array of near-magical tools to meet and communicate with people around the world. We can find a group for any niche interest or hobby under the sun. And yet, a great many people don’t have the time or capacity to invest in relationships, and the average westerner hasn‘t made a new friend in five years.\n\nFirst things first: If you have toxic people in your life, the single most important thing you can do is get out of range of their grasping claws. A social support net is an insurance policy against black swans (events you can’t predict). Invest in your oldest and most stable relationships. Giving praise and gratitude is a ridiculously cheap option with unbounded upside. The secret to staying sane and effective is cultivating a bubble of like-minded people (Follow me on X). Determine membership based on shared values and interests. Take advantage of the incredible connectivity of the Internet, but don’t spread your social capital too thinly.\n\n#### Knowledge Capital\n\nBy far the biggest asymmetric edge you have is to invest in yourself. Skills and qualifications open new possibilities and broaden your Optionality. Every skill and every item of knowledge you acquire is worth something and in todays world, most don’t require huge sums of money but only time. Public libraries have millions of titles on loan. YouTube has tutorials for every subject you can imagine. There are free courses online. The sum total of humanities accumulated knowledge is available at the push of a button. And yet, one quarter of Westerners didn’t read a single book in the last year. TV and social media consume vast swathes of our lives, and attention is hopelessly fragmented. The ability to do deep work is becoming increasingly rare at exactly the same time, it is becoming increasingly valuable.\n\nRead (and/or listen to) books! (I always include worth-reading books at the end of every episode). Books are the cheapest option in existence to increase knowledge. Start writing down your ideas and dreams. The 100,000-hour opportunity, or the great ocean of passive leisure time that we might choose to repurpose into more fulfilling pursuits. General competency skills build a buffer of Optionality that protects against uncertainty. Failing to value options leads to penny-wise and pound-foolish behavior. Some skills are non-negotiable: Cultivating physical potential, interpersonal skills, and self-care.\n\n#### Health Capital\n\nFood has become so cheap that our main problem is having too much of it. We understand the basics of how to exercise, eat well, and prevent disease, and we have an unprecedented amount of leisure time to put it into practice. And yet, many people struggle with poor health. Longevity has started to go backwards in most countries, and it is exceptional to make it into adulthood without some kind of physical or mental affliction.\n\nGood health is defined by absence of problems. Almost all health hacks, including drugs, supplements, fad diets, and exercise gimmicks, are distracting dead ends. There is no free lunch. Meditation is essential. Eat lots of protein. It is very dangerous to not lift weights. Resistance training is best paired with low-level movement integrated into daily life. Experiment long enough to find out what works for you, then become a creature of habit at the earliest opportunity. By the way, do you even lift?\n\n![Menger Lifting](https://i.postimg.cc/sg3x9kbt/IMG-9189.jpg)\n\nAnd don‘t forget to sleep! If you think sleep is unimportant and the less, the better, why hasn’t evolution gotten rid of it? We are not reproducing, gathering food, or protecting ourselves or our family, yet natural selection has kept us sleeping for thousands of years. Good sleep is critical to our cognitive function, our memory, and even our emotional equilibrium. Sleep about 7–8 hours a night. Turn off screens an hour before bedtime. Darken the room completely. Don‘t compromise on good sleep.\n\n### Creating Habits\n\nWe all have habits, whether you know it or not. This is because our brain likes to save energy, and habits don't require too much thought but are carried out automatically: Reaching for a cell phone, going to the gym, meditation in the morning. It is therefore all the more important to establish positive habits (leading us to our goals), such as meditating or exercising. Every action you take is a vote for the type of person you wish to become. We are what we repeatedly do. Excellence, therefore, is not an act, but a habit.\n\nIf it is hard for you to break bad habits or establish good ones, break down your desired habit into smaller goals. For example, if you want to establish a meditation practice, don't start with 10 minutes but with 30 seconds, and increase this slowly. Another trick to help you is environment hacking: Choose a place where your meditation cushion is already in place, and you don't need much more to get started. Make your environment as habit-friendly as possible. Design your choice architecture carefully.\n\nPair unwanted but healthy habits with rewards. You think working out is healthy, but can’t get your arse up? Combine it with watching Netflix while doing cardio, listening to a Podcast while lifting or whatever you consider enjoyable. But be careful: External rewards risk eroding your internal motivation. Use it wisely. Instead of using external rewards, it is very motivating if you track your habits. What gets measured gets done! Whether it is calories, weight on a barbell, or your net worth, you have to be able to measure and track the mother-loving heck out of it.\n\n### The Controllable\n\nLast but not least, focus on the things within your control, and don’t care about the outcome. Accept the randomness of the universe and just give your best. Every single day that you follow YOUR system, you are a winner. Switching from goals to processes is a game-changer. The process is about doing the right thing right now and not worrying about what might happen later. The process of doing it daily is already a win, no matter how many people read your articles from writing or see your muscles from working out. I mean, of course, it is nice to get a tap on your shoulder from time to time, but those are circumstances you can’t control. The only thing that lies within your control is the process itself. Focus on it, and the result will come.\n\nLook, we never know exactly what tomorrow will bring or where we will end up. In an uncertain world, the Opportunity Approach is a source of great comfort. No matter what fate sends our way, we can rest easy in the knowledge that we have done everything in our power to not only survive but to thrive in a volatile world.\n\n### The End\n\nThat's it for this episode. I hope you gathered some valuable knowledge from this one. Thanks for reading, and see you in the next one. Until then, remember: The combination of simple tastes and a healthy personal financial sheet buys you a whole lot of freedom.\n\n₿ critical, ₿ informed, ₿ prepared. Yours,\n\n![Carl B Menger](https://i.postimg.cc/Px1n7xwK/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n### Stay tuned\n\n**Subscribe to my Newsletter:** https://open.substack.com/pub/carlbmenger/p/coming-soon\n**Follow me on Twitter:** https://mobile.twitter.com/CarlBMenger\n**Follow me on NOSTR:** https://damus.io/npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Knowledge is Key\n\n[XIV] The Bitcoin Halving: https://stacker.news/items/487510\n[XIII] The Lightning Network: https://stacker.news/items/261714\n[XII] CBDCs: A Brave New World: https://stacker.news/items/213580\n[XI] Valuing Bitcoin: https://stacker.news/items/208983\n[X] Solving the Adoption Dilemma: https://stacker.news/items/201172\n[IX] NOSTR: Social Media 2.0: https://stacker.news/items/189821\n[VIII] The Bitcoin Retirement Plan: https://stacker.news/items/183327\n[VII] Bitcoin in Guatemala: https://stacker.news/items/171339\n[VI] Bitcoin in El Salvador: https://stacker.news/items/161607 \N 7587 \N 440907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3737080382518 0 \N \N f 0 \N 0 129410902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7874 2023-02-01 08:32:23.315 2025-03-29 22:39:46.785 AMA: Ask Murch Anything Vol. 2 Hi, I’m Murch.\n\nI’m working at Chaincode Labs on Bitcoin projects full-time. Among other thinks, this year I’ve: \n\n- reviewed and authored some PRs for Bitcoin Core mostly around coin selection, transaction building, fee bumping, and relay improvements\n- spent almost there weeks on a technical review of Mastering Bitcoin 3rd Edition\n- co-authored a weekly series on Mempool with Glozow in the Optech Newsletter\n- contributed to development discussion around Silent Payments and Cluster Mempool\n- given talks at the Mempool Summit in Nashville, TABConf, BTC Azores, and Bitcoin Research Day\n- co-hosted the Optech Recap almost every week\n- co-hosted the Socratic Seminar of the BitDevs NYC\n- recorded some ten or so podcasts\n- been avidly contributing to and moderating Bitcoin Stack Exchange\n- sometimes commented on the current mempool weather\n\nI did another [AMA in February](https://stacker.news/items/141846). \N 14857 \N 7874 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.5783186244172 0 \N \N f 0 \N 0 25760913 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 382968 2025-01-28 05:17:15.158 2025-03-29 22:39:46.786 Books And Articles Newsletter, Issue 2 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to the second issue of the Books And Articles newsletter. The big news this week is our first writing contest, but we also now have our first blogger (@cryotosensei) and our first poetry submissions. I’ll talk a little bit about that later, but first I want to talk about the contest. \n\nI came up with this idea as a way of promoting the territory. Monthly fees were coming due, so I wanted to generate some interest. I didn’t put much thought into it, nor did I know whether there would be enough engagement to warrant the post. I picked the topic for two reasons: I wanted a prompt that could inspire lots of stackers to enter a submission, and I love reading stories about people’s bitcoin journeys. So, it was a little selfish. In the end, let’s just say it exceeded my expectations.\n\nAnd now, for the big moment…\n\nThe winner of the first Books and Articles Writing Contest is @grayruby !!!!\n\nI am happy to say that the first winning entry was more than worthy. Not only did he have a great story to tell, and not only is he a talented writer, but @grayruby also put the time and effort into crafting his story. It was lengthy so it needed a separate post. I learned something new about Stacker News. Replies have a 10,000 character limit. I will be zapping @grayruby his award, which is a bit skimpy considering the quality of his story- 6199 sats. In this case justice was served, since his separate post did very well in the sats department. Maybe in the future we can find sponsors for the contests.\n\nAs for the contest itself, I had a revelation of sorts as the entries rolled in. The replies to the post were all of high quality, and they all told fascinating stories, at least in my opinion. There have been times over the years when I would do a search for “my bitcoin story” or some term like that just to find these stories. I couldn’t get enough of them. Now, they were showing up as replies to the post. I got so caught up thinking about the contest and the territory that I didn’t expect the sheer joy I got from reading everyone’s stories. The contest post with attached replies is now a treasure trove of origin content. \n\nReading them affected me in a more personal way than I expected. Anyone who’s spent some time on Stacker News knows that I hang around the site more than is probably healthy. I have had an account since the Spring of 2022, and during that time I have gotten to know people here who I consider friends. That’s how I feel, whether it makes sense or not in our nym filled space. Many of those people participated. In some cases their honest, heart felt entries got to me on an emotional level. I’ll limit the sappiness. I am on the verge of embarrassing myself and them. They know who they are.\n\nTherefore…\n\n##### My Bitcoin Journey\n\nIn the newsletter I am going to keep a link to each contest, so there will be an easily accessed way to read these stories. I am also going to create a “My Bitcoin Journey” category, to encourage post length, fleshed out origin stories like @grayruby’s. His will be the first link in the section. \n \nIn other news, in addition to @cryotosensei’s new blog, he also posted a poem which had previously been published elsewhere. @plebpoet also posted a previously published poem, accompanied by an analysis by the poet. It made one of the top posts of the week. I recommend that everyone give it a read. I learned a lot from it.\n\nI’m happy to also mention that two more books are being posted to the territory, one chapter at a time. @cleophas is posting “Who Brought The Steak Tartare”, and newcomer @jbschirtzinger posted the first chapter of the book, “The Rogue Scholar.” Links to both can be found in the Books section.\n\nLast, but not least, @cryotosensei is selling a fancied up copy of his children’s book, [Happy The Hippo](https://stacker.news/items/401625) on the ~AGORA territory! Here’s the [link](https://stacker.news/items/419870).\n\nWell, that’s it for now. I hope I’m not forgetting anything. \n\n\n\n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on that week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [Writing Contest #1-Grayruby’s Bitcoin Story](https://stacker.news/items/417967/r/siggy47) by @grayruby\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472/r/siggy47) by @plebpoet\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Nick Szabo’s Book Recommendations](https://stacker.news/items/412426) by @Roll\n\n- [Who Brought The Steak Tartare?Chapter 2](https://stacker.news/items/411841) by @cleophas\n\n\n\n\n\n\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n\n\n## Some Recommended Older Posts \n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar, Chapter 1](https://stacker.news/items/419498) by @jbschirtzinger\n\n### Book Reviews\n\n- [Zen And The Art Of Motorcycle Maintenance by Robert M. Pirsig](https://stacker.news/items/383302) by @carlosfandango\n\n- [The World’s First Bitcoin Fiction Anthology](https://stacker.news/items/347735) by @KonsensusN\n\n- [Man’s Search For Meaning](https://stacker.news/items/390069) by @carlosfandango\n\n- [Neuromancer](https://stacker.news/items/401761) by @Scoresby\n\n- [Elric Of Melnibone](https://stacker.news/items/389474) by @Scoresby\n\n- [The Shockwave Rider, by John Brunner](https://stacker.news/items/418728) by @Scoresby\n\n- [Human Action](https://stacker.news/items/399897) by @Undisciplined\n\n- [Robert Jordan’s The Wheel Of Time: Books 1-3](https://stacker.news/items/416511) by @Undisciplined \n\n### Discussion Posts\n\n - [Anyone Have Tips For Starting A Blog/Newsletter?](https://stacker.news/items/407449/r/siggy47) by @KeynesianClowns\n\n- [I’m Not The Brightest Bulb Out There, Help Me Change It](https://stacker.news/items/381033) by @Fabs\n\n- [The Hacker News Top 40 Books Of 2023](https://stacker.news/items/392115) by @elvismercury\n\n- [What Was Your Favorite Book Of 2023?](https://stacker.news/items/368204) by @kr\n\n- [What Books Served As Your Foundation?](https://stacker.news/items/367154) by\n @Coyote_Cosmico\n\n- [Books that have profoundly influenced my life](https://stacker.news/items/406346/r/siggy47) by @r3drun3\n\n\n### Essays\n\nNone posted yet.\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n\n\n### Short Stories\n\nNone posted yet.\n\n### Past Newsletters\n\n- [Newsletter #1](https://stacker.news/items/411269) \N 2519 \N 382968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7039111047301 0 \N \N f 0 \N 0 215649887 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 372181 2025-01-18 03:00:05.641 2025-03-29 22:39:46.786 Books And Articles Newsletter, Issue 1 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\nWelcome to the first issue of the Books And Articles newsletter. I hope to post this newsletter weekly on Saturdays to start, but that schedule is subject to change. I must credit @Scoresby with coming up with the idea when replying to my post laying out [plans](https://stacker.news/items/405604/r/siggy47) for the territory. \n\nThe purpose of this newsletter is to highlight and promote the best posts, with an emphasis on original content. Suggestions are always welcome.\n\n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on that week’s newsletter post. This might not be worth much more than bragging rights if the whole idea of this newsletter flops. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n\n- [How Does Fiction Affect You?](https://stacker.news/items/405904) by @plebpoet\n\nThis is the top post of the week. Congratulations to @plebpoet. This is way more than a discussion post, which is why it was so popular, IMO. I encourage everyone to read it.\n\n- [Do You Guys Actually Comprehend The Books You’ve Read?](https://stacker.news/items/410768) by @Fabs\n\n- [Your House Is Burning Down. What 3 Books Will You Pick To Run Away With You?](https://stacker.news/items/404393/r/siggy47) by @cryotosensei\n\n- [Used Books](https://stacker.news/items/410108) by @oraltosun\n\n- [True Names by Vernor Vinge](https://stacker.news/items/410249) by @Scoresby\n\n\n\n\n\n\n\n\n\n\n\n\n\n### Stackers’ Blogs\n\nI encourage stackers to use this territory for their personal blogs. So far SN has not seen many regular bloggers. I’d like to see that change for selfish reasons. I love reading blogs!\n\n\n\n## Some Recommended Older Posts \n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\nThis is the first book posted to this territory, and I think it’s the first book posted to Stacker News. When @cleophas posted chapter 1, it really started me thinking about the possibilities for this territory in a new way. As for the book itself, I did not read it in its entirety yet, but from what I have read it is incredibly imaginative and very funny. Do not ignore the footnotes.\n\nHint: Perhaps someone would like to write a book review?\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n### Book Reviews\n\n- [Zen And The Art Of Motorcycle Maintenance by Robert M. Pirsig](https://stacker.news/items/383302) by @carlosfandango\n\n- [The World’s First Bitcoin Fiction Anthology](https://stacker.news/items/347735) by @KonsensusN\n\n- [Man’s Search For Meaning](https://stacker.news/items/390069) by @carlosfandango\n\n- [Neuromancer](https://stacker.news/items/401761) by @Scoresby\n\n- [Elric Of Melnibone](https://stacker.news/items/389474) by @Scoresby\n\n- [Human Action](https://stacker.news/items/399897) by @Undisciplined\n\n### Discussion Posts\n\n - [Anyone Have Tips For Starting A Blog/Newsletter?](https://stacker.news/items/407449/r/siggy47) by @KeynesianClowns\n\n- [I’m Not The Brightest Bulb Out There, Help Me Change It](https://stacker.news/items/381033) by @Fabs\n\n- [The Hacker News Top 40 Books Of 2023](https://stacker.news/items/392115) by @elvismercury\n\n- [What Was Your Favorite Book Of 2023?](https://stacker.news/items/368204) by @kr\n\n- [What Books Served As Your Foundation?](https://stacker.news/items/367154) by\n @Coyote_Cosmico\n\n- [Books that have profoundly influenced my life](https://stacker.news/items/406346/r/siggy47) by @r3drun3\n\n\n### Essays\n\nNone posted yet.\n\n### Poetry\n\nNone posted yet.\n\n### Short Stories\n\nNone posted yet.\n\n\n\n\n\n \N 777 \N 372181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6255873824518 0 \N \N f 0 \N 0 18416406 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 244621 2024-09-23 05:08:17.383 2025-03-29 22:39:46.787 Lyn Alden book club part I Hey folks, it's time. As discussed [here](https://stacker.news/items/265493), welcome to the first-ever (I think) SN book club, about part 1 of Lyn Alden's book [Broken Money](https://www.lynalden.com/broken-money/)\n\nHere's how this will work today: every so often, I'll post some thoughts that the book prompted in me. Hopefully some of you will be interested in riffing on that topic. Or maybe you're all fired up to talk about something else, in which case, have at it, post your own thoughts! I'm not the boss of you.\n\nIn other words: *talk about what you want to talk about.* I'll try to stir the drink over the course of the day, with new prompts of my own, plus checking in on the discussion. So check back if you can!\n\n**Caveat**: I am neither a historian of money nor of the hermeneutics of Lyn Alden. I'm just some guy. These are just some thoughts.\n\n**Meta**: if you want to take mental notes about how this goes, and then check back later in the day, we can talk about what worked, what didn't, and how this format could be made better for the next versions. I'll update and give details of the next installment, too. (I'm waiting so that I can figure out how to make course adjustments based on what happens.)\n\nLet's do it, @k00b, @carlosfandango, @satscats, @ekzyis, @q, @lawndough, @0fje0, @OsomSala49491, @fred, @BTCMagician. (Sorry if I forgot anyone who wanted to be poked!)\n \N 951 \N 244621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4968915982876 0 \N \N f 0 \N 0 249894957 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 202423 2024-07-19 12:28:38.501 2025-03-29 22:39:46.788 Explain Lightning Network in a simple analogy This guide is for total noobs with limited knowledge about Bitcoin and LN. Please feel free to share it with any other normie that will ask you the same.\n\nI was asked by many nocoiners how Lightning Network (LN) works and how to use it.\nYes, I wrote in the past many guides (about Bitcoin and LN), more or less technical but I still have this question from normies: what is Lightning Network?\n\nSo I will try to give it another explanation (apart from the famous ["airport analogy"](https://darth-coin.github.io/beginner/ln-airport-analogy-en.html) in a more friendly non-technical way.\n\n### Glossary\n- satoshis (the Bitcoin unit) = water drops\n- onchain UTXO = bottle / container of water (read more about what is UTXO [here](https://unchained.com/blog/what-is-a-utxo-bitcoin/))\n- LN channels (payment channels) = glass of water\n- LN routing paths = water pipes, connecting the glasses\n- LN nodes = water management centers\n- HTLC policies = water valves system (read more about what is HTLC [here](https://docs.lightning.engineering/the-lightning-network/multihop-payments/hash-time-lock-contract-htlc))\n- routing fees policies = water transport cost fees\n- opening / closing LN channels fees = cost of adding / removing water pipes and glasses\n- LN channel reserves = residual waters remained in the pipes that eventually can be recovered if the pipes are removed properly.\n\n### How a LN node operates - water flow analogy\nSo you start from a bottle of water (many sats from a UTXO), pouring some water into a smaller glass. That glass have connections with other LN nodes through a pipe with your next peer (another LN node).\n\nThrough that pipe you can "drink" the water (spending) or "move" it (route) to another glass (yours or others).\n\nYou can't pour more water into that glass if is full. A glass will always have the same water capacity. So in order to able to "receive" more water in a glass, you need to drink some or move it to an external bottle (UTXO).\n\nYou can have infinite glasses, with different size and connected to different other LN nodes. You can even take water from one glass (that is full) and move it to another glass that is almost empty, to balance the liquidity and have a proper flow.\n\nMore glasses result in more routes, better connected pipes.\nAlso bigger glasses offer a better water flow, with more debit.\nSize your glasses based on your own water necessity amount.\n\nIt is recommended to keep a certain balance of your water flow for smooth water management, in and out, through the (routing) pipes.\n\n### Water Swaps\nIf you have all glasses full of water, and you want to receive some more water, you need to "swap out" part of it, into a bigger bottle (for holding long term). That is a special procedure, using a 3rd party service, that will take your exceeding water, through the pipes and giving you back a bottle of water with the amount of water you've send to them. Then you put that bottle into your safe (onchain wallet) to secure it for long term.\n\nThis is the case scenario for merchants, that usually are receiving more water than they spend it, in a certain period of time.\n\nAnother option, is when you do not want to put your water into a bottle, you just want a temporary solution for an excess of water, that later you will need it back into your glasses, is that you can move the water into a custodial (temporary) glass, managed by somebody else, but still giving you full access to move around that water. Is like a "rented glass of water", the glass is not yours, but you can still use it with your water.\n\nOnce you were spending more water from your own glasses and you have enough "space" you can move back your water from the "custodial glasses" into your own self-hosted glasses (your own LN node).\n\n### Water flow management - routing through pipes\nHere we have the "LN liquidity" term too. Our water flow capacity.\nThere are some aspects here to take in consideration:\n- It refers to the amount of water (sats) available for sending (outbound liquidity) and receiving (inbound liquidity)\n- min / max HTLC - the amount of sats set to send/receive in one payment, that cannot be bigger than the total capacity of the glass (channel).\n- total number of glasses (channels), with a total amount of water (sats) in them and the total amount of "space" available in the glasses (channels).\n\nRead more about how LN liquidity works here: https://bitcoin.design/guide/how-it-works/liquidity/\n[And here you have a short video describing how water flow management works in LN liquidity.](https://darth-coin.github.io/assets/images/LN-routing.mp4)\n\n### What types of "water management centers (LN nodes) are?\nWe have to specify that we have some specific types of "centers" that operates with specific rules for water management.\n\nYou do not have to run a big large public center just for your regular water use. It all depends of what type of user or provider you want to be.\n\n#### 1. BIG Public Centers - LN public routing nodes\n\nThese are huge water management centers, with immense capacity and lots of pipes, connecting with other big centers or middle centers and even small regional centers.\n\nThese are the "routing" nodes that provide a smooth transport of water between large distances and pushing the water with pumps and bigger pipes.\n\nThese are the centers managed by professionals, with very good hardware and reliability. They are using public pipes, visible for everyone. Each one is using their own set of rules for water transport fees.\n\nThese centers must keep a very good balance in their water flow, managed with certain set of rules and fees, providing a smooth use of water for everybody.\n\n#### 2. Middle Public Centers - LSP (Lightning / Liquidity Service Provider)\n\nThese are the water management centers that connect private centers with big public centers and offer a proper reliable route for water management. It also offer a certain level of privacy in moving "private" water into public and back.\n\nThese centers are charging specific fees for opening new pipes to your "private" water center and agreed to keep it open for a certain time, as long you keep using that pipe.\n\nThese LSP are an important piece for LN flow management because could provide certain rules and services for inbound and outbound traffic.\n\nThese are the centers managed by professionals, with very good hardware and reliability. They are using public pipes, visible for everyone but also private pipes, to their customers, providing a flow between private and public. Each one is using their own set of rules for water transport fees.\n\nThese centers must keep a very good balance into their water flow for a smooth transport in and out of the water, to provide good services to their customers (private users).\n\n#### 3. Private Centers - regular private users\n\nThese are your personal water pumps centers, used for your personal use of water, spending it.\nThese centers are connected to LSP (middle centers) with private pipes and have the water flow that goes only through these middle centers, reaching their destination.\n\nThese centers do not require to have a lot of glasses, with large capacity. There are enough 3-5 good glasses with a sufficient amount of water in them, enough to cover your regular monthly use.\n\nOnce you have almost empty your glasses, you can refill them with more water, using the 3rd party external swap services, sending them a bottle of water (UTXO) and you receive more water straight into your glasses, or specific glass if you like. A simply spend and refill process.\n\n### More guides and resources to read:\n- [Submarine Swaps Guide](https://stacker.news/items/163372) - by @aftermath\n- [Managing ⚡️ Lightning Node ⚡️ Liquidity](https://darthcoin.substack.com/p/managing-lightning-node-liquidity)\n- [ Private ⚡️ Lightning Network Nodes ⚡️](https://darthcoin.substack.com/p/private-lightning-nodes)\n- [⚡️ Lightning Node ⚡️ Maintenance](https://darthcoin.substack.com/p/lightning-node-maintenance)\n- [⚡️ Lightning ⚡️ Routing Fees Experiment](https://darthcoin.substack.com/p/lightning-routing-fees-experiment) - how the valve system works\n- [What ₿itcoin LN node software can I run?](https://darthcoin.substack.com/p/what-bitcoin-ln-node-software-can)\n- [⚡️ Lightning Network is awesome ⚡️](https://darthcoin.substack.com/p/lightning-network-is-awesome) - links and resources about LN\n- [Darth recommendations for LN nodes users](https://darthcoin.substack.com/p/recommendations-for-ln-users)\n- [Private banks over the ⚡ Lightning Network ⚡](https://darthcoin.substack.com/p/bitcoin-private-banks-over-lightning)\n- [LN wallets series of guides](https://darth-coin.github.io/wallets/wallets.html)\n- [More guides about LN nodes](https://darth-coin.github.io/nodes/nodes.html)\n- [Series of guides for beginners](https://darth-coin.github.io/beginner/beginner.html) \N 2789 \N 202423 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.46773881208764 0 \N \N f 0 \N 0 33679395 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 141630 2024-03-12 07:50:33.505 2025-03-29 22:39:46.788 I stacked 40Thousand Sats On Stacker News More Than My Entire Life On Twitter I writing this as a gratitude to SN 40K sats $17 as of today more than anything I have made contributing & publishing on: youtube, twitter, facebook all of them combined. This shows the power of bitcoin lighning enabling small compensations to participants and contributors. I feel 10 times better off here anyway knowing that I am not supporting fiat companies nor feeding the fiat monster beast. \n \N 663 \N 141630 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.9458735356199 0 \N \N f 0 \N 0 94072900 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 144477 2024-03-17 01:07:09.425 2025-03-29 22:39:46.789 Minneapolis Fed's paper on banning Bitcoin to maintain "permanent deficits" See the actual source material:\nhttps://www.minneapolisfed.org/research/working-papers/unique-implementation-of-permanent-primary-deficits\n\nThis is the craziest thing I've ever read:\n\n[my emphasis added in italics, otherwise copy-pasted from the paper. note that mathematical symbols do not copy-paste. however the rest is verbatim copied from the paper]\n\n- Now add bitcoin and again consider a government that targets a *permanent primary\ndeficit* that is a constant fraction of aggregate consumption. Government policy is now a\ncontinuous function of the price of government stock and the price of bitcoin. It is easy\nto ensure that policy is consistent with a targeted steady state primary deficit. But we\ncan now prove that, no matter what continuous Markov policy the government uses to\nrule out a zero price of its stock, there is always another steady state. In that steady state\nr􀀀g = 0 and the market values of government stock and bitcoin are both strictly positive.\nThe fact that r 􀀀g = 0 means that the government *must again be balancing its budget*. So\nthe presence of a private-sector security that, just like government stock, is a claim to no\nreal resources introduces a new *balanced budget trap*. The economy will have at least two\nsteady states. In addition, there are equilibrium trajectories that start near the balanced\nbudget trap and converge to the targeted steady state.\n\n- The fact that we restrict attention to Markov policies that are continuous in prices is\ncrucial for this result. Without the continuity assumption, the government could adopt\na policy that *uniquely implements a targeted permanent primary deficit whenever the price of bitcoin is zero*, and switch, abruptly, to a primary surplus policy whenever the\nprice of bitcoin is positive. That switch would turn government stock into a Lucas tree\nand force r 􀀀 g > 0, *which is inconsistent with bitcoin trading at a positive price*. This\nrules out any equilibrium *in which the price of bitcoin is positive*. Another way to put\nthis is: discontinuous Markov strategies can mimic the trigger strategy proposed by Brunnermeier,\nMerkel, and Sannikov [2023]. \n\n[In other words, our models work when Bitcoin is worthless. Wow OK got it.]\n\n- Given a need to finance government purchases equal to a certain fraction of aggregate\nconsumption, the policy that maximizes utility in our economy (and also its growth rate)\nis for the government to *charge very large consumption taxes*. This implies very large\npermanent primary surpluses and a unique equilibrium, and it turns government stock\ninto a very large Lucas tree that eliminates *almost all idiosyncratic risk*. But large consumption\ntaxes may not be feasible, and *then a permanent primary deficit may be the\nbest the government can do*, provided the equilibrium does indeed deliver the targeted\nsteady state. *To achieve this, the government could simply make bitcoin illegal.*\n\n[Read this again. And then a 2nd, then a 3rd time. To achieve the models we in the government want, we need very large consumption taxes: in order to ensure that government 'stock' is risk-free. However short of those large consumption taxes, a permanent primary deficit is the best course of action. But this means or necessitates making Bitcoin illegal. Outrageous]\n\n- Our final result says that, short of full prohibition, the government could use a continuous\nMarkov policy and *combine it with a tax on bitcoin*. \n\n[When government says "full prohibition" they mean a full, outright ban. We call that a clue.]\n\n- Let r 􀀀 g < 0 be the difference \nbetween the real interest rate and the growth rate of the economy in the steady state that\nallows the government to run its *targeted permanent primary deficit*. We show that a\nflow tax on every unit of bitcoin equal to or in excess of 􀀀(r􀀀g) times the price of bitcoin\n*rules out all equilibria in which bitcoin trades at a positive price*. \n\n[Which means we'll just tax Bitcoin more and more till it's worthless. Our models only work when Bitcoin is worthless.]\n\n- The underlying reason is\nthat 􀀀(r􀀀g) times the market value of bitcoin is precisely the steady state flow of income\nthat a private sector entity can earn when it issues new bitcoin in the same way as the\ngovernment issues new stock to finance a primary deficit.\n\n[What the Fuck are they talking about? Government deficits cannot be unlimited forever.]\n\n- *These results suggest that a legal prohibition of bitcoin or a tax on bitcoin are forms\nof financial repression that may be useful when the ability of the government to use consumption\ntaxes is limited.*\n\n[This needs to go before congress because it is outright, outrageously unconstitutional. Financial repression being useful? What?]\n\n- 4.4.2 An Open Market Operation\n*An even simpler way to uniquely implement S  < 0 at L is for the government to buy\nup all of the supply of bitcoin.*\n\n- *For any s0􀀀 > 0, the government can print the amount\nof stock it will take to buy up all bitcoin*. \n\n[Print money, buy bitcoin. Wow great plan]\n\n- From t = 0 onwards, we then have *an economy\nwithout bitcoin, and we already know that the government can uniquely implement its\ntargeted primary deficit in that case*. \n\n[In other words we'll ban Bitcoin and then get the economy that 'we' want because we can't balance the budget or tax citizens enough to make it all work!]\n\n- If we interpret this continuation equilibrium to mean\nthat not only st > 0 but also pt = 0 for all t - 0, *then it is optimal for consumers to sell all\nof their bitcoin holdings in the ex ante trading period.* \n\n[What if we don't want to sell you ******* idiots. This is outrageous. Ex ante trading period WHAT]\n\n- So any combination of s0􀀀 > 0 and\np0􀀀   0 will be part of an equilibrium, and subsequently the government will be able to\nuniquely implement its desired steady state.\n\n[It's desired steady state? This is supposed to be a free-market economy.]\n\n[Last sentence in this paragraph]\n- *Of course, any other type of useless pieces of paper still lying around could now take\non the same role as bitcoin.*\n\n[In other words, AFTER WE'VE BANNED IT OR TAXED IT TO DEATH, the peasants CAN GO PLAY WITH THEIR TOYS.\n\nOUT-FUCKING-RAGEOUS. Bitcoin is banned or 'bought in the trading period' after which it's worthless... then "useless pieces of paper lying around can replace it" BECAUSE it allows us to continue INFINITE DEFICITS.\n\nThis kind of shit should go before congress this is NOT how I want tax-dollars spent.]\n\n- 6 Conclusion\nWhen there are laws against private-sector bubble assets, *it is easy for the government\nto design policies that uniquely implement a permanent primary deficit*, assuming there is enough idiosyncratic risk to make such deficits possible in the first place. *An outright\nban is not necessary if the government can tax private-sector bubble assets at the rate\n􀀀(r 􀀀 g) > 0.*\n\n[You interpret this how you want.]\n\nShare this with your friends and family.\n\n \N 4973 \N 144477 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.6727926277654 0 \N \N f 0 \N 0 26427602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 243351 2024-09-22 01:57:58.768 2025-03-29 22:39:46.789 StatechainJS: fast & free bitcoin transactions -- like ecash but a bit safer My latest invention is StatechainJS:\n\nhttps://www.youtube.com/watch?v=24pNIs6M7qo\n\nBasically it's like ecash but if the operator goes down you can recover your sats. Being like ecash means transfers are fast & free, but the operator can rob you, so be careful! Try it here: https://github.com/supertestnet/statechainjs \N 6229 \N 243351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8454627447952 0 \N \N f 0 \N 0 61774712 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416056 2025-02-25 10:59:50.194 2025-03-29 22:39:46.791 How A Small Team of Devs Created React at Facebook \N https://www.youtube.com/watch?v=8pDqJVdNa44 16354 \N 416056 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.307168476882 0 \N \N f 1181133125 \N 8 24261226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 430342 2025-03-09 05:49:21.837 2025-03-29 22:39:46.791 We've changed our mind about Custodial Wallets Trying to find a way for lightning to spread like wildfire and focused primarily on Africa (but this could work in other southern continents).\n\nThis can and will happen. It's amazing when listening to Twitter spaces created by groups in Africa how quickly things are progressing and what a great match lightning is for our problems. Somehow the vibe feels different. There's a lot of positive energy, no fed talk, no price talk, just people trying to figure out a way to help their fellow citizens. The focus is more on how to *spend* sats, rather than just stack sats, which reminds us of a certain whitepaper from a while back.\n\nWhen we started this experiment (Lightning Village), it was a bit tricky to figure out which wallet to use. In order to understand this challenge, you first need to imagine the type of users we would be dealing with. Unreliable internet, electricity is a luxury, etc, etc. All the different trade-offs (more about them later) had us spinning round in circles.\n\nSo we looked at what builders had done so far in this region and thought by far the best product out there was of course Machankura which everyone here should have heard of. However, it had two main issues. (1) It's custodial and (2) for lightning to really take off massively, we felt the UI needs to be on a smartphone, even if it's an old model, with very low spec.\n\nDuring this exploration phase, we've experienced lots of issues with wallets. If you do a "mom test" and ask your mom to send you some sats, you'll know what we mean. It's not just "how to receive/send", it's everything from where to get the sats in the first place. Since you can't send natively on-chain to a lightning wallet and not even the most maxi of all exchanges Swan, supports lightning. There's too much digging that needs to be done just to get started.\n\nIf you're a bitcoiner, you'll figure it out, of course you will. When there's a will there's a way, even for non-technical users. But for those of us trying to facilitate mass adoption, the goal is to find an end-to-end flow that we can introduce to a small commuity that regularly trade with each other, then incubate it for a while (iterating, learning and adapting the education). Once everything is flowing, the circle of users can get bigger and bigger.\n\nIf at each stage, the person trying to introduce the next one, gets asked questions like, I tried to send my relative some bus fare and they can't create an invoice because their phone is not charged, they'll just give up and choose the "pain" of using fiat cause the money is needed there and then. So it ends up becoming a thing for different large groups of bitcoiners spread over Africa (mainly in large cities) to use and solves a few issues here and there, but never really takes off on its own.\n\nSo, what has all this got to do with custodial wallets? Well, it's important to set the context first. When thinking about the problem that needs solving, which is getting villages across Africa (who actually really need lightning) to use it, what matters the most is the trade-offs and how they impact the UX.\n\nBefore going through the trade-offs, this is what we learned about them in this context:\n1. the trade-offs in an African environment are slightly different from the trade-offs in the western world\n2. the trade-offs for a Bitcoin wallet are also different from the trade-offs for a Lightning wallet (anywhere in the world)\n\nWhy? Well, first of all, what are the main trade-offs?\na) self-custody\nb) privacy\nc) no-kyc\nd) LNURL support\nand e) requires running your own node or knowledge of how to connect to one\n\nLet's focus on (a) self-custody, since that's the title of this post. Starting with 2a, for bitcoin. Imagine a custodial bitcoin wallet. So you buy bitcoin on an exchange (excluding Relai). You don't even know if it's there because you don't have the address. All you see is a number on a screen. That's rug-pull and counter-party risk 101. But a custodial lightning wallet (1a), well first of all, the "node provider" (not exchange) is not "selling tokens". It's not the same type of risk. Secondly, you're not storing large amounts like you would on a bitcoin wallet. So if you get rugged and lose your lunch money, mom sends you some more tomorrow, big deal. Of course, 20 years from now when a single SAT is worth a hell of a lot more, it will be a different story, but we're talking about present time. Also, the most downloaded wallets are well publicised in the community. Scammers don't really get much traction. If people's funds were to disappear from a wallet one day, within hours everyone will know about it and that will be the last time anyone used that one. Remember these users will be spending their sats day to day. Phase 2 next year will be the savings account (btc self custodial).\n\nMore importantly, we're educating and onboarding users that have never even heard of bitcoin before. It's all about, 'here is the wallet, now go'!! Watch @JoeNakamoto's videos on Twitter and you'll know what we mean. The point is, once a small community is onboarded and a circular economy has been created, there will be plenty of time to move up the "trade-off ladder".\n\nSo we started off with Muun which we thought was great and wrote a nice blog post about it. After using it for a while, we noticed it sucked for our needs. We even helped them fix a bug, hats off to them for their quick response. This is what one of their devs sent us (after the bug fix):\n\nMuun: "You are trying to scan an LNURL-pay which Muun doesn't support at the moment. Muun mistakenly reads the QR code as an LNURL-withdraw, which we do support. We'll fix it. Thanks for reporting it."\n\nThat's where we started understanding why lighting still has a bit of way to go. The difference between LNURL-pay and LNURL-withdraw, that's way too technical for your average, everyday users.\n\nWe then realized that Wallet of Satoshi actually works pretty well. The only reason we had dismissed it initially was because it was custodial. So we've changed our mind now. Or we've realised that this is a small trade-off which is well worth it to facilitate mass adoption.\n\nThere is one UX problem which is that freaking long LNRUL. If only someone could copy their wallet concept where the onboarding is so fast and simple, but register a 3-letter domain, we would switch immediately. Luckily, there's no "wallet loyalty" required for the users and no switching costs. They can just transfer their balance to the new address or spend to 0, then download a new one. The best product will win in the end and other wallets will continue to be great for other types of users with more sophisticated needs, win-win for everyone. \n\nThe most important trade-off for us is actually 1c) no-kyc. In the west, the majority of people don't think much about kyc, because its part of life and they're used to it. In Africa, kyc bureaucracy excludes the majority of the population from financial services. This one's 100% non-negotiable for us and also what makes btc and lightning so different. In the btc world, custodial wallets almost always require kyc. Lightning has finally made btc usable and the foss movement will truly change the world.\n\nThen (1d) LNURL is important only because it's the way to send sats without generating an invoice. The invoice-generating thing is a shop or store use case. In the majority of cases, you just want to send someone money the way you've always been able to do it, first with a lot of pain (WU), then with much less pain (WR and MoMo), but never before did you need the recipient to first generate an invoice. So (d) is more of a UX issue, but UX is super important for our mission.\n\nSo for now, we'll go with Wallet of Satoshi and if you have any ideas, feel free to reach out, our DMs are open.\n\nNext challenge - what's the easiest, non-KYC way to go from fiat to sats (not fiat to btc)?\n \N 10981 \N 430342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.48358809368924 0 \N \N f 157849631 \N 1 23161983 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 03:17:46.168 f \N \N \N 0 0 0 0 1 0 0 402331 2025-02-13 17:19:22.711 2025-03-29 22:39:46.784 Soft-Fork/Covenant Dependent Layer 2 Review \N https://petertodd.org/2024/covenant-dependent-layer-2-review 7818 \N 402331 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 15.9935909677104 0 \N \N f 0 \N 0 155145106 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403060 2025-02-14 12:10:41.921 2025-03-29 22:39:46.786 Leaving My SN Bubble: Bitcoin Meetup At The Melville Deli \n![](https://m.stacker.news/31743)\n\nI attended the first of what I hope will be many bitcoin meetups at the Melville Deli Friday night. I first visited the deli back in September of last year. I posted about it [here](https://stacker.news/items/267725/r/siggy47). Since then I have kept in touch with @Simaan, who is a great guy and a very committed bitcoiner. His deli is the only business on Long Island that I know of that accepts bitcoin. \n\nI don’t get out much. Most bitcoiners I know are the people I talk to every day here on SN. I have made three or four pilgrimages to [PubKey](https://stacker.news/items/219987/r/siggy47), but that’s about it when it comes to interacting with real, live bitcoiners in meat world. So when I found out that Simon was holding his first meetup at the deli, I was excited. I had an even better time than I expected. \n\nSimon hosted the meetup at the deli after hours. He provided all the food and drink at no cost. He is a very generous guy, but I plan to try to convince him to accept some sats for future events. There were tables and chairs set up in the back, which provided plenty of space for the dozen or so people who attended. \n\nThe structure was informal, but worked very well. Simon had everyone introduce themselves and describe their connection to bitcoin. This inspired some great conversation. Some attendees had traveled 50 miles to attend. There were newbies, two non-bitcoiners who wanted to learn, and a smattering of interesting bitcoin characters.\n\nOne guy described himself as a full-time bitcoin evangelist. He wore a “WTF? 1971” T shirt, which was the perfect prop for him to launch into an articulate explanation of money as it relates to the “Nixon Shock.” I am a little hard of hearing, so when he introduced himself I missed some of it. I said “I’m sorry, what did you say your name was?” Without skipping a beat he smirked and said “nice try, fed.” It warmed my heart. \n\nPeg from Rockaway, a retired New York City public school teacher, was wearing a New York Bitcoin T shirt and orange sneakers. She first discovered bitcoin when her son was buying drugs off of Silk Road. She often led the conversation and showed herself to be a personable, natural advocate. \n\nOther highlights:\n\n- During a discussion about money, a wampum bracelet was passed around the room. \n\n- Simon gave a brief proof of work speech using the preparation of a deli sandwich as an example.\n\n- Simon regaled us with a cautionary tale about mining. A few years back he and his partners set up an operation in an impoverished Pennsylvania town with cheap electricity. Although they were successful, they also managed to cause a fire that burned down their facility and knocked out the town’s electric service. \n\n- A couple drove in from Queens. The woman had connections to Kazakhstan and China. She discovered bitcoin through miners who wanted her to set up an operation in Kazakhstan. Her fiance was a New York firmware engineer.\n\n- There was a couple who owned a local cigar factory. They were no coiners who passed out cigars to promote their business. I tried to convince them to accept bitcoin. I’ll keep you posted on any orange pilling success.\n\n\n### My observations\n\nI really enjoy these in person meetups. A few of the newbies were dabbling in shitcoins, as many of us have in the past. It’s less comfortable giving someone a brusk “shitcoiner” dismissal in person than on a computer screen, so you rely on really explaining why bitcoin is different. I believe those conversations were almost as valuable to me as to the soon to be ex-shitcoiner. \n\nI also discovered that not everyone shares my desire to actually spend bitcoin. I started out spouting about a circular economy, but it quickly became evident that just about everyone thought I was nuts to want to part with my precious bitcoin. I detected this same sense during my few visits to PubKey. No one changed my opinion, but it was good to get a different point of view.\n\n\n### Conclusion\n\nI encourage everyone to find a local meetup. It’s fun, and you might just learn a few things you won’t find on Stacker News. With the excitement being generated by this bull market, they seem to be popping up everywhere. \n\nFor anyone in the New York area, I would highly recommend attending the next meetup at the Melville Deli. Here is the contact information:\n\nThe Melville Deli \n90 Broadhollow Road\nMelville, New York 11747\n(631) 351-9338\nhttps://melvilledeli.org/\n \N 14651 \N 403060 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.6899549883883 0 \N \N f 0 \N 0 235541405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 62212 2023-09-11 11:23:50.527 2025-03-29 22:39:46.787 When Money Dies In The 21st Century It’s been a little more than a century since the Weimar Republic experienced its famous inflation. I read about it in the book [When Money Dies](https://www.goodreads.com/book/show/8567383-when-money-dies), which I recommend to anyone with an interest in money. \n\nTwo things really stood out for me when I read the book. \n\nFirst, Germany didn’t simply experience a straight up, Zimbabwe style inflation. There were regional differences, periods of relative calm, and periods when it appeared as if the inflation genie had been put back in the bottle. I wonder if we’re living through this now.\n\nSecond, politicians, the press, and the consumers influenced by the propaganda began accusing individual businessmen or companies of price gouging. The supposed rich businesses are easy scapegoats, and blame is deflected from the real culprits. \n\n### Inflation is in the eye of the beholder\n\nI’m reminded of the first one because I am personally experiencing what I would call extraordinarily high inflation, although most people in the U.S. probably aren’t. I manage commercial real estate. Fortunately I don’t manage office buildings. The portfolio is mostly small retail centers. Nothing fancy, just older buildings serving local communities. The typical tenants are nail salons, hair salons, chinese take outs, small family restaurants, pizza places, etc. Mom and pop businesses who somehow managed to survive the covid lockdowns or are picking up the pieces and starting over. I’ve been doing this for more than 30 years. The financial crisis was no fun, but we survived mainly because of low leverage. \n\nThings have changed recently. For the first time we’re operating in the red. I’m confident we’ll survive, but we might be the exception. \n\nEveryone reading this knows that the US government understates inflation. Their 4% per year might be closer to 10% if you do your own math. It’s worse where I sit. Here’s one example. I typically expected that property insurance would cost about 85k per year as recently as two years ago. The number would fluctuate and of course creep up by a few percentage points per year, but it was predictable. In 2023 that same coverage was more than 300K. We’re not a huge business, so that in and of itself would wipe out our profitability. That’s not the whole picture, though. Minor repairs and equipment replacement has recently doubled. Property taxes have soared. We’re limited in how much we can increase our rent because of long term leases. It wouldn’t matter regardless. Our tenants are barely surviving, and they’re more like partners anyway. If they go out of business, we might too. We can handle the increases better than they can. I can already hear the “bitcoin solves this" chorus, but I’m not the only decision maker. I have already orange pilled most of the principals to the extent that they own bitcoin personally, but they have yet to take the leap in the business.\n\nI’m not saying all this to complain. I’m just wondering if there are people like me in far flung corners of the economy who are already experiencing what feels very much like hyperinflation? To be clear, it doesn’t fit the standard [definition](https://en.wikipedia.org/wiki/Hyperinflation), since that would require an extraordinarily high 50% per month inflation, but it still feels out of control\n\n### Price Gouging\n\nMention of price gouging really aggravates me. The phrase is used by every government that is losing control of its depreciating fiat currency. They need a scapegoat. The other day I was listening to Richmond Fed President Thomas Barkin on CNBC. He gave a predictably optimistic outlook on inflation, but he felt that the reason it was a little “stubborn” was because many industries still had the “pricing power”, and they would milk it as long as they could get away with it. Keep in mind, this is a central banker spouting these deceptions. The Biden administration, of course, has been slinging this [nonsense](https://www.businessinsider.com/biden-warns-companies-stop-price-gouging-2023-11) for three years, and his press lapdogs kick it back up every time there is an unexpectedly too hot inflation number. \n\nIs it possible that the U.S. is starting to lose control of inflation right now? The inevitable interest rate cuts will only make things worse. The wikipedia page I linked above presents many historical accounts of hyperinflation. Perhaps the U.S. will be on that list someday. \N 14552 \N 62212 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.4327031288195 0 \N \N f 0 \N 0 223083119 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 130552 2024-02-22 00:25:44.523 2025-03-29 22:39:46.787 JUST SHIPPED: Base58's Crypto + Sigs online course! JUST SHIPPED: Base58's Crypto + Sigs online course!\n\nCatch the 2nd installment of Base58's revolutionary Bitcoin Dev Basics class, all about the cryptography that makes bitcoin secure and the signatures that use it!\n\nIn this class you'll learn where private/public key pairs come from, implement ECDSA, learn everything there is to know about sighash flags (including the first ever tutorial for how to implement them!)\n\nThe class ends with classic op-multisig!\n\nGet a kickstart on coding your way through bitcoin, we're giving away 1000 free seats in class, but you have to sign up before Feb 1st!\n\nUse code: BASEDANDORANGEPILLED\n\nhttps://www.udemy.com/course/base58-bitcoin-basics-crypto-sigs/?couponCode=BASEDANDORANGEPILLED \N 17535 \N 130552 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8510735996419 0 \N \N f 0 \N 0 93890931 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 139429 2024-03-08 20:35:37.211 2025-03-29 22:39:46.788 SN release: account switching, anon edits, video uploads, bugfixes This release:\n\n1. **Account Switching**\n\nYou can now switch between accounts without logging out. Use the `switch accounts` option in the profile dropdown for that. This currently only supports login with lightning or nostr.\n\n![](https://m.stacker.news/51731)\n\n2. **Anon Edits**\n\nIf you created an item as @anon, you now have the usual access to edits within 10 minutes.\n\n3. **Video Uploads**\n\nYou can now also upload videos. Supported file types are mp4, mpeg or webm.\n\n4. **Bugfixes**\n\n- If you had `someone replies to someone who replied to me` enabled in your settings and subscribed to someone's comments and that someone replied to you, you received two push notifications for the same item; one for the reply and one for the subscription. You will now only receive one push notification in that case, just like the notification page does.\n\n- We accidentally deleted receive wallets on logout. We only intended to delete the spending credentials that are stored on your device on logout to avoid sharing them with someone else if you're using a shared device. We now correctly only delete these spending credentials on logout. Receive wallets are stored on the server and will now still be there when you log back in.\n\n5. **Other Stuff**\n\n- Media content can now show up next to each other, see https://stacker.news/items/683474 for example. It used to use one line per image/video.\n\n- The free upload quota has been increased from 50 MB per day to 250 MB per day if you're logged in. After that, each upload costs 10 sats until you hit 500 MB. Then each will cost you 100 sats until 1 GB after which each upload costs 1k sats. Uploads for @anon always cost 100 sats. Uploads are still deleted within 24 hours if they aren't used in a SN post or comment.\n\n-----------------\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 9.8m sats to 28 contributors for 126 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/676265\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 10302 \N 139429 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.9818887741691 0 \N \N f 0 \N 0 173800191 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 47623 2023-08-09 02:37:23.921 2025-03-29 22:39:46.789 CASCDR Update: YouTube Crackdown -> Adapt & Overcome What's up stackers!\n\nWanted to share a recent update on CASCDR.\n\n**TLDR**: YouTube cracked down hard on access to third party scraping/APIs so we had to discontinue some services that rely on them (for now) in favor of an RSS focus. \n\n\nWe have changed our YouTube agent to an [RSS Agent](https://cascdr.xyz/?tab=yt-agent) which performs substantially the same task with only a slight UX twist:\n![](https://m.stacker.news/41519)\n_Before: use YouTube as a proxy for surfacing relevant content_\n![](https://m.stacker.news/41518)\n_After: browse content by RSS feeds to analyze podcasts_\n\n\n## A Temporary Armistice Broken\n\nWe knew the day would eventually come when big tech would start limiting our access to information. Like [Xitter last year](https://www.financialexpress.com/life/technology-twitter-now-x-to-crack-down-on-web-crawling-scraping-with-updated-terms-of-service-why-it-matters-3239775/) , YouTube [has begun cracking down](https://techcrunch.com/2024/06/20/youtube-confirms-crackdown-on-vpn-users-accessing-cheaper-premium-plans/) on anonymous access & web scraping. \n\nWe decided it was time to implement the plan we made long ago and abstract out the YouTube source content in favor of the open RSS feeds.\n![](https://m.stacker.news/41525)\n\nWe know of several other projects especially on nostr that were likewise affected. While this affront to the free and open internet is unsurprising it is disappointing. If your app was affected by the YT crackdown feel free to reach out for help.\n\nOn a personal level this sucked for me because I was on vacation enjoying time with family and traveling for Bitcoin 2024 when this issue arose. That slowed us down quite a bit. Despite that, our team was able to put in a heroic effort and restore the core functionality our users need using RSS instead of YouTube. Thanks to everyone who was patient with us in the meantime.\n\nOur team put in a heroic effort and got us back on track. I am incredibly proud of the people at CASCDR and our team of tenacious, savvy devs.\n\n## Our Response Timeline & Roadmap\n1. Outage occurred [Friday July 19]\n2. Implemented proxy measures to circumvent crack down on 1 out of 3 services (it initially succeeded) [Friday July 19 ~6pm]\n3. Discovered the banning was more aggressive than first thought, hard pivoted to RSS [Saturday July 20]\n4. Complete Testing and Release [just now, Wednesday July 24]\n\n**Roadmap:**\n1. UX Optimizations on the RSS Agent (make it easier to search and explore analysis of particular podcasts a la carte) -> currently we just pull the most recent episode but plan to open it up in the coming days.\n2. Restoration of batching/automation tools like CHADBot & CASCDRVision-like clip generation\n3. More sophisticated AI analysis and research tools (SOON(^TM))\n\n## Closing Thoughts + CASCDR Mission\nThanks to everyone who has supported us and remained patient despite these difficulties. We will continue to press forward with our vision of creating human centric, liberty focused applications that help individuals use the AI revolution to succeed without the fear of surveillance, censorship or other predatory behavior. I welcome your thoughts in the comment section below!\n\nOnward.\n \N 1584 \N 47623 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.836515459019 0 \N \N f 0 \N 0 193744576 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 146397 2024-03-20 21:10:25.675 2025-03-29 22:39:46.791 SN release: nostr crossposting, symmetric lud18, quote replies, @ autocompletes This one is a honker.\n\n##### Rewards update\n\nRewards are now random. Every night I give a cowboy a bottle whiskey and he flips a coin. If it lands on heads, we reward the top 33% of posts/comments. If it lands on tails, we reward the zappers of the top 33% of posts/comments.\n\n##### Goodies\n\n1. nostr crossposting (via @bitcoinplebdev)\n - requires nip-07 extension\n - only applies to discussions currently (more is planned)\n - you can set it to repost on a per post basis (in the options pane) or default to crossposting in settings\n2. symmetric [lud-18](https://github.com/lnurl/luds/blob/luds/18.md) (via @WeAreAllSatoshi)\n - you can now optionally send identifying information when you make a lightning address withdrawal ... assuming the receiver's wallet supports it\n - you can also receive such information when someone sends to your lightning address\n3. quote replies (via @WeAreAllSatoshi)\n - in the overflow aka `...` for items you can now quote the item you're replying to by hitting `quote reply`\n - if you haven't highlighted text in the parent, it will quote the full item\n - if you have highlighted text in the parent, it will only quote what you've highlighted\n - if you have highlighted text in the parent and hit `reply` it will also quote it\n4. mention autocompletes (via @WeAreAllSatoshi)\n - it's like it sounds ... when you hit `@` sn attempts to help you find your boo\n5. date range selection in search (via @rleed)\n6. full url search with the `url:` filter (via @rleed)\n7. changes to my changes of images (via @ekzyis) ... he'll have the last change\n8. kind of a small one ... but when you switch over to preview, you no longer lose your cursor position in the original text\n\n##### PR merging vacation\n\nTake a knee contributors. PRs for new features will not be merged (by me at least) until I finish personalized feeds. Please continue to send in PRs, it just might be slightly slower turnaround than usual ... Oh, and one of your moms brought orange slices and gatorade. Help yourselves.\n\n Please shout loud about any bugs you find! \N 9450 \N 146397 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.2784233424613 0 \N \N f 0 \N 0 28432476 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 239180 2024-09-17 09:47:41.994 2025-03-29 22:39:47.087 Bisq 2 has just been released. I am a Bisq contributor AMA about Bisq or Bisq 2 I am contributor for Bisq. An open source peer to peer bitcoin exchange. \n\nBisq has recently released [Bisq 2](https://bisq.network/blog/bisq-2-now-in-beta/) to make it easy for users to get no kyc bitcoin in a peer to peer exchange. Bisq 2 will have multiple trading protocols the first of which is Bisq Easy.\n\nFor an overview of Bisq 2's roadmap see this video: \nhttps://www.youtube.com/watch?v=T583ogprpkM\n\n[Bisq Easy](https://bisq.wiki/Bisq_Easy), is the first trading protocol that allows bitcoin buyers to buy up to 0.01 BTC per trade with no security deposit. Benefits of Bisq 2 over Bisq 1 for small trades are:\n\n- No trading fees\n- No miner fees for bitcoin buyers\n- No security deposit requirements \n\nUseful links about Bisq:\n\nWebsite: https://bisq.network/\nGitHub: https://github.com/bisq-network/\nWiki: https://bisq.wiki/\n\nI am happy anyone has about Bisq in general or the new Bisq 2 release. \N 21012 \N 239180 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.7935307748406 0 \N \N f 60817983 \N 1 139895926 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423516 2025-03-03 12:39:09.862 2025-03-29 22:39:47.088 Spot Bitcoin ETFs and Sovereign Game Theory I have come across the idea of Sovereign game theory when reading about speculative hyperbitcoinization scenarios. Maybe we're watching a form of it now. The US has approved spot Bitcoin ETFs. The first spot Bitcoin Hong Kong ETF will likely start trading next week. Arthur Hayes described it like this in a tweet: \n> “Competition is amazing. If the U.S. has its proxy asset manager, BlackRock, launching an ETF, China needs its proxy asset manager to launch one, too,” he wrote.\n\nMeanwhile, Saudi Arabia and Qatar may be making big buys through their Sovereign wealth funds:\nhttps://coinedition.com/saudi-arabia-qatar-rumored-1m-btc-buy-could-come-next-week-analyst/\n\nIs this the start of nation state FOMO, or just a figment of Max Keiser's imagination?\n \N 13100 \N 423516 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.57186305426305 0 \N \N f 389614314 \N 2 166040905 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 171026 2024-05-16 10:59:53.22 2025-03-29 22:39:46.784 Reddit is Dead...Long Live Stacker News ✍️⚡️ Greetings, Stackers!\n\nFirst post here, and I've got some quick introductory thoughts to share.\n\nAs a 100K+ Reddit karma whore, I've never been more confident that the time for disruption in the long-form/forum niche is now.\n\nAs someone who's been active on Reddit for over a decade, I can confirm this sentiment is rapidly growing among the hundreds of millions of active users, especially since their disastrous shitcoin experiment imploded a few weeks ago.\n\nVery excited to learn the ropes, and join the fight to progress mass SN adoption with you all!\n\nKeep calm and stack on 🤙⚡️\n\n-BW\n![Screen Shot 2023-11-12 at 8.03.39 PM.png](https://m.stacker.news/4733) \N 17041 \N 171026 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.6150863922431 0 \N \N f 0 \N 0 33857218 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 249178 2024-09-27 17:07:22.865 2025-03-29 22:39:46.784 On Ocean Mining Pool, Inscriptions and Luke There's been a pretty big flare up in the Bitcoin community about Ocean Mining's two recent blocks. Namely, that they didn't include certain transactions designed to use the block space for something other than its monetary transactional uses. Indeed, many influencers, especially those that are pro-BRC20 and Ordinals, are condemning this course of action as censorship.\n\nIn a sense, this is exactly what all pools do. They create a block template for everyone else to mine. In that sense, each miner to a pool is really renting the pool hash rate and the pool does the work of using that hash rate to create blocks, whatever they may be. But it's a bit disingenuous to complain specifically about Ocean, since lots of pools have made blocks that didn't create the optimal profit-driven block.\n\nNot every pool makes the maximal amount of fees for a block, whether because they have bad software, certain policies or just because the block was found before a block template could be constructed. The optimum is an ideal and though the modern economic assumption of idealized homo economicus would create these blocks each time, we don't have a steady-state mining economy so not everyone mines the theoretic optimum.\n\nIn a sense, the analysis of pools and the block templates these critics make is flawed because they assume some optimized economy. Given ideal conditions, of course, there is an optimal set of transactions you accept to increase fees. Over a long enough time period, those should result in more profit which get spread over the participants which should make the pool more popular, making those that don't perform the optimum lose profit and eventually bankrupt. But that's a very narrow analysis based purely on monetary incentives.\n\nWe don't live in under ideal conditions and situations change all the time. Basic things, like getting a block template ready quickly after a block is found is an optimization that's difficult and still not completely solved. But there's also the opinions of the miners themselves. Are they all strictly profit driven?\n\nThink about normal businesses. Why do they offer fair trade coffee? From a purely monetary perspective, fair trade coffee doesn't make any sense. They're more expensive for the same good. From a profit-maximizing analysis that MBAs are so fond of, the non-fair trade coffee would put the fair trade coffee out of business. But yet, in the real world, they do not because people care more than just the good itself, but what it took to make the good. In other words, the homo economicus analysis of economic situations rarely is the optimum for the real world. There are other considerations other than profit that go into any business.\n\nAnd that's really at the heart of what's being argued here. Luke believes that inscriptions are a waste of block space, a public nuisance and that even if his pool participants have to take a loss, that it's worthwhile because of the public good that it does. In other words, he sees these inscriptions as *immoral* and that the price he's willing to pay is fees that he would otherwise have gotten.\n\nPeople are acting like this is some sort of affront to market forces or game theory and that the only consideration he should have is like that of homo economicus, whether he makes more profit or less. But this is a very fiat/Keynesian way of looking at the whole picture. People are more than just profit-maximalization machines and mining pool participants are no different. \n\nIndeed, that's the impression I got from the Ocean Mining Pool summit I went to a few weeks ago. They are that response to the many mining pools that are doing unethical things like not paying out their participants for fees that come in off band.\n\nThe calculation that Luke has made is that being moral, that is not polluting blocks, is worth the 1% loss in fees. Given what I know about Luke, even a 90% loss in fees is unlikely to sway him. Morals have a place in any ecosystem because they, too, have value. A mining pool that doesn't burdens nodes with extra data that they have to persist has positive communal value. A mining pool that does the opposite has detrimental communal value. And from Luke's perspective, not burdening nodes is important enough that he chooses not to include them in his block templates.\n\nThis moral reasoning is not something that is welcomed by a lot of people and it's hard to miss that many of the critics are creating ordinals, BRC-20 and so on. They want to run this centralized scheme over Bitcoin and make money. In other words, they have a strong economic interest in getting their transactions included and shout censorship whenever they're not.\n\nBut we must be careful, because this is not the same as, say, the OFAC prohibition list. And this is where things become a little harder to explain because most people have no sense of the difference between centralized rules being enforced under threat of violence and bottom-up moral behavior slowly adopted. But what Luke is doing is very much bottom up. He's specifically doing something out of moral conviction. Whether you agree with him or not, you can understand why he's doing it, particularly the moral reasoning. This is different than a centralized mandate with threats of violence against those that don't comply.\n\nI believe that what Luke is doing is a good thing. He's showing his convictions and reasoning about why inscriptions are bad through these templates. The participants are free to move if they disagree. I suspect, though, that there are many that agree with him and they'll vote with their hash rate.\n\nFor homo economicus, something like fair trade coffee does not make sense. Yet people gladly pay a little more for it because they believe that it ultimately helps those people produce and live a better life. I believe what Luke and Ocean are doing is similar. They're offering less-bloated blocks even at the cost of some fees. \N 6058 \N 249178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.65768006219488 0 \N \N f 0 \N 0 203086885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 182030 2024-06-09 01:49:39.712 2025-03-29 22:39:46.785 SN release: territories, formerly known as user generated subs ### territories\n\nYou can now created your own ~~subs~~ territories. Note: this is *just* an MVP. It's probably 5% of what we have planned for territories.\n\n*edit: you can create them from the dropdown in the top bar*\n\n##### currently\n- 50% of all revenue made by the territory is paid to the founder at the end of the day texas time\n - the other 50% goes to rewards \n - this split will eventually be configurable, eg the founder gets 100% of revenue or rewards get 100% of revenue\n - the territories revenue is the revenue SN would ordinarily collect: 100% posting costs, 10% of zaps, 100% of boost\n- territory founders can configure and edit indefinitely:\n - base post cost\n - post types\n - you can't currently *edit* the name or billing type but that'll be implemented eventually\n - eventually everything\n\n##### planned\n- seamless crossposting and retroactive crossposting between territories\n- subscribing/unsubscribing to territories\n- create territories within other territories, eg `~bitcoin/privacy` and `~bitcoin/mining` \n - the territory founder can sell sub-territories to other stackers at a price of their choosing\n- more post types\n- more economic parameters\n\nThat's it mostly. Let me know if you have questions.\n\n### what's next\nWhile we will definitely be iterating on territories, you [might](https://stacker.news/tos) have [noticed](https://stacker.news/privacy) we are prioritizing [legal](https://stacker.news/copyright). It's all WIP but our focus for the next few weeks (after editing out all the wonky copy-paste legalese in those docs) will be on wallet stuff. \n\nWe haven't exactly figured out our plans yet but you can expect more non-custodial support at the very least. I promise not to surprise you with anything weird and to discuss any potentially large changes should we end up making them.\n\nyeehaw cowboys! \N 697 \N 182030 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4176706690986 0 \N \N f 0 \N 0 177252094 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447895 2025-03-22 08:48:04.542 2025-03-29 22:39:46.785 Trying Something New I have been thinking of ways to raise sats to donate to worthy bitcoin projects for a while. Some of you may have noticed that I sometimes re-post Anita Posch’s newsletter on SN and forward the sats to her. I believe in her work.\n\n@grayruby approached me about doing a fundraiser here on Stacker News, so we have decided to give it a try. We’re still a little up in the air about the best way to do this, but I will be posting the fundraiser tomorrow, Wednesday, August 30. @anita’s Bitcoin For Fairness will be our first fundraiser\n\nWe need your help and support.\n\nThe first thing we need is input as to what the hell to call this thing.\n\nSo far, the possibilities are:\n\nSatsraiser\n\nSats-A-Thon\n\nZapathon\n\n\nWe need input from the community. Please reply with suggestions. \n\nI will post the fundraiser tomorrow morning around 8 a.m. EST\n\nThanks\n\nSiggy \N 987 \N 447895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.421305019452483 0 \N \N f 0 \N 0 127034696 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138494 2024-03-07 15:22:46.998 2025-03-29 22:39:46.786 Starlink - the end of the free internet? Or a new birth? I started this research wishing to dive deeper into Starlink and to understand further the implications of an internet almost exclusively run by one company. I uncovered so much additional context along the way that I thought to bring more attention to the subject.\n\nIt is not obvious to most people (it wasn't to me) that internet satellites are a supremely better way to scale the internet for the next 50 years. To prepare us for the future of increasingly needy bandwidth. Much like Bitcoin miners are allowing energy infrastructure companies to over-build their capacity, I acknowledge that we have reached the point that it is necessary to increase our future potential bandwidth. As well as upgrade the internet in ways that fibre and our fixed cable infrastructure cannot match.\n\n![Starlink surrounding earth](https://image.nostr.build/0c1d21b80bfe56bdd9c0a9d2641eb3bf19ef726568347c6671bbeb6e40a30754.jpg)\n\n### Why focus on one company? \n\nSpaceX, and only SpaceX, is in a position to rapidly build out an enormous literal internet mesh around the globe, because only SpaceX had the vision to spend a decade struggling to break the government-military monopoly on space launch. That does not mean that we should need not be wary of this fact though. Quite the opposite. \n\nSpaceX and specifically **Starlink should be attracting more scrutiny that any other company or product in the world right now**. More so than Tesla, OpenAI, Nvidia, Apple, Google, Tencent, Huawei or any other over-valued tech giant. And I do not say this because of Space exploration, which is completely overplayed at this point. Elon is great at managing the narrative and this is a perfect example. SpaceX should be under our scrutiny because with their Starlink product, they will in all likelihood find themselves in a **monopolistic position the likes of which we have not witnessed before**. If successful, they may put the likes of Kodak, Intel, Google & others before them to great shame.\n\nThe Starlink team have been ruthless and at times disingenuous to get to where they are today. But they do have an incredible product offering. The company has a formidable future ahead, with the competition struggling for the same levels of traction, and that is without even considering the future likely merger between X (payments, social, AI), SpaceX (communications) and Tesla (automation & energy). It is therefore time to dive a little deeper into assessing what a reimagined future internet may look like.\n\n\n------\n\n*Note: Some of this work has been paraphrased or lifted from research that I reference throughout. The best research piece I found was this blog post from 2019 [(](https://caseyhandmer.wordpress.com/2019/11/02/starlink-is-a-very-big-deal/), which goes even deeper into areas like demographics & technical deployments. Think of this write-up of mine as a consolidation of my research, with a few of my own 2 sats thrown in for good measure.*\n\n----\n\n### Contents\n\n1. **Why should we care about Starlink?**\n2. **Why is Starlink even needed?**\n\t- More Users\n\t- Thirst For Bandwidth\n\t- Infrastructure Decay\n\t- More Innovation\n\t- Huge Potential\n\t- Profitability\n\t- Government Pivot\n1. **Why should we be sceptical of Starlink?**\n\t- Privacy\n\t- Centralisation\n1. **What are the drawbacks of their network?**\n2. **What are the advantages of their network?**\n3. **Can you benefit without a kit?**\n4. **Describe the Starlink network (like I'm 205)**\n\t- Overview\n\t- End-To-End Encryption\n\t- Secure Networks\n\t- V2 Mini Satellites\n\t- Ground Stations\n\t- Shareable Bandwidth\n\t- Laser-Linking Tech\n\t- Related Innovations\n1. **Conclusions**\n\n\n# 1. Why should we care about Starlink?\n1. The growth of all satellites in space is going parabolic / exponential / bonkers! [(2)](https://planet4589.org/space/stats/stats1.html)\n2. **Starlink have around half of ALL SATELLITES in orbit** [(3)](https://www.statista.com/statistics/264472/number-of-satellites-in-orbit-by-operating-country/)\n3. As of writing on 18 Oct, there are 5,287 Starlink satellites in orbit, of which 4,925 are operational. [(4)](https://planet4589.org/space/con/star/stats.html) \n4. OneWeb, the next biggest internet competitor has just 634 (576 operational) [(5)](https://planet4589.org/space/con/ow/stats.html)\n5. Starlink project is projected to expand far further as they have been requesting an additional ability to deploy 30k to reach a total of 42k satellites. [(6)](https://www.forbes.com/sites/jonathanocallaghan/2019/10/16/spacex-accused-of-evading-rules-with-proposal-for-30000-extra-starlink-satellites/)\n\n![Starlink.sx Satellite Map](https://image.nostr.build/e2e41300634777dd870739a1d09486de9a04963c309465dbc70515d0fddb2eca.png)\nLive interactive map via [Starlink.sx](https://starlink.sx/)\n\n\n# 2. Why is Starlink even needed?\n\n### More Users\nGlobal demand for internet and the wealth it brings will continue to grow. We are currently at **64% adoption of the internet** (5.18bn) [(7)](https://www.statista.com/topics/1145/internet-usage-worldwide/#topicOverview).\n\nThe Compound Annual Growth Rate (CAGR) of internet adoption from 1995 to 2022 was 21.5% per year. From 2010 to 2022 it's been hovering around 8.3%. However with some of the largest countries in the world still yet to fully come online (e.g. China, India, Indonesia, Pakistan, Brazil, Nigeria to name a few) worldwide penetration alone is by no means complete.\n\n\n### Thirst For Bandwidth\nThen just think of our own internet usage in recent years. Here is the timeline of internet expansion and our ever-increasing requirement for more bandwidth.\n\n1. **1995**: The majority of people connected to the internet via dial-up connections. The speed of such connections was typically 56 kbps or lower. I miss those sounds!\n\n2. **2000s**: The introduction and widespread adoption of broadband connections (DSL, Cable, Fiber) dramatically increased average internet speeds. By the mid-2000s, it wasn't uncommon to find connections offering several Mbps.\n\n3. **2010s**: Fiber-optic networks and advanced cable technologies increased available bandwidth significantly. Gigabit internet connections became available in some areas. 4G also became the standard for mobile connections, offering tens of Mbps.\n\n4. **2020s**: Many developed countries were deploying or had deployed 5G networks, which theoretically can offer speeds of up to 10 Gbps. In-home, fiber connections of up to 1 Gbps are becoming more common by the day.\n\n\n### **Infrastructure Decay**\nIn spite of the above timeline seeming lengthy, the internet is still relatively young and growing rapidly. We’re still changing the ways we use it. Just like our energy needs grow each year, so do our bandwidth needs. \n\nThe underlying infrastructure of the internet, microwave cell towers and optical fiber, are *extremely* expensive to build & upgrade. It’s easy to take for granted just how miraculous the internet has been, particularly how we have been able to upgrade our connection speeds over the course of the last 30 years. [(](https://caseyhandmer.wordpress.com/2019/11/02/starlink-is-a-very-big-deal/). Just look at this map of the underwater internet cables:\n\n![Map of internet cables, including under sea](https://image.nostr.build/0cf98409770f7e8a7afce3c6aa2711443be47dfd8b9eac71a0fdf088b0d72b24.png)\n\n**Side Note**: For a history on the build-out of the internet and all its cables across the world, you must watch this entertaining hilarious take from the Map Men (which I have posted separately [here on SN](https://stacker.news/items/286829)):\nhttps://www.youtube.com/watch?v=pJU-KYMREbQ\n\n\n### More Innovation\nIt's easy to take for granted the tools of the internet that we have today. Stop for a second and think about it. Think also how lucky we would be if the most transformative application on the internet (or at least Bitcoin) has not even been invented yet. What if Bitcoin today is what the lightbulb was, when electricity came to our houses for the first time?\n\nWe're starting to see drastically new business models empowered by A.I and of course our fair share of over-hyped zombie companies. But we have not seen true intelligence combine with "truth" itself, empowered by the most secure network in the world. We have not witnessed autonomous employee-less organisations yet... nor a completely circular value-based economy without the friction comes with 'fiat'. Therefore we need the internet infrastructure that can empower this, no matter where you are in the world.\n\n\n-----\n\n```\nLiking this content? Follow me on Nostr...\n```\n [**npub1xfp0eu86raryz2sw53f9qnxdujm8z73c5s55d3vzkae06gz5p0dsxae7an**](https://habla.news/u/davidw@stacker.news/)\n\n-----\n\n\nOn that topic, we also know that billions of people are still at present being left behind by the information revolution for no better reason than an accident of birth, or their country being a long way from a major undersea cable. In large parts of the world, internet is still provided by geostationary satellite at prohibitive cost. Although this has been changing in recent years, with many connecting and coding using just their mobile phones. It still remains obvious that more could be done.\n\n### Huge Potential\nThere are only few trillion dollar industries in existence: energy, high speed transport, communications, chemicals, IT, healthcare, agriculture, government, defense. Despite some Bitcoiners believing these are just around the corner; space mining and space-solar power are not going to be viable businesses anytime soon. \n\nElon has a significant involvement in the energy industry with Tesla, but only communications provides a reliable, deep market for both satellites and launch. [(](https://caseyhandmer.wordpress.com/2019/11/02/starlink-is-a-very-big-deal/). This is particularly important given that Starlink plans to refresh the Starlink megac-onstellation every five years with newer technology. [(8)](https://www.space.com/spacex-starlink-satellites.html)\n\n### Profitability\nSpaceX & spare exploration is only a sustainable business if it can keep putting satellites in our own orbit and providing communications to the world. \n\nOnce SpaceX have their 42k cheap & reliable satellites in our own orbit, they will be able to sell “server space”, dedicated bandwidth, hosting and/or partitioned networks for future organisations & entities. And they will be able to do so at **significant margins**, given their incredible cost advantage at present. \n\nTo help comprehend the cost efficiencies of adopting the Starlink network [(](https://caseyhandmer.wordpress.com/2019/11/02/starlink-is-a-very-big-deal/) :\n- A 'middle of the road' estimate for Starlink (by someone more intelligent than I) was that it would be **8 times cheaper**, all in, than even JUST installing the undersea cable alone.\n- Some have estimated that the cost to built and deploy each satellite could be as little as **$100k per satellite**. That is more than **1,000 times cheaper** than a conventional communications satellite launch.\n\nSo yes, very very cost effective and therefore a very profitable business. Who needs space exploration or mars landings when you have that kind of business model?\n\n\n### Government Pivot\nIt is clear that only governments’ desires for assured military access to space, has kept Starlink around today. Without those subsidies Starlink may not exist, or they at least would not be so far along with their roll-out plan. But this relationship works both ways given that the U.S. needed to find a way to unplug from expensive obsolete rockets, built by big defense contractors. Both the United States government depends upon SpaceX and SpaceX depends on the Government. For now at least, it is important to acknowledge this.\n\n\n------\n\n\n\n# 3. Why should we be sceptical of Starlink?\n\nWell, I just shared one reason. They are very much in bed with Big Government. Initially when researching Starlink, I had a viewpoint that Starlink was going to be like what Big Pharma has been to Health. I had severe concerns both about privacy and centralisation. So let's drill deeper into those topics as well as others.\n\n------\n\n\n![Eye watching earth](https://image.nostr.build/0909344382035f098c437044cd240a7f85e8873f5d8bd56c4a68317270fd9081.jpg)\n\n## A. Privacy Concerns\nFirstly, is Starlink using strong encryption for their network? Yes. They actually are setting new standards.\n\nI dive into this in more details in a later section (7), but essentially they are using “end-to-end encryption encoded at firmware level” so that the network has apparently no knowledge of any packet-level data. That said, Starlink themselves are capable of identifying and profiling their users based upon the serial numbers of the hardware, their payment information and other metadata.\n\nIn some ways, internet metadata is more of a privacy concern than the packet contents themselves [(8)](https://medium.com/privacy-international/how-bulk-interception-works-d645440ff6bd). The metadata encodes the graph, social and otherwise, of anyone on Earth along with everyone else they have communicated with. A unique, time-evolving fingerprint that often reveals more about a person than the packet contents.\n\nExposing even metadata, and even to SpaceX, is a bad idea. However we MUST remember that in this new era that some call the Information Age, Data is a precious resource. For Starlink to build-out the next internet, without the ability for them or the United States Government to have any access to those riches, would be quite the gift for all us ants on Earth. So why would they do it?\n\n### Geopolitical Implications\nIf for one second we put Starlink's intentions to one side, the fact that traffic broadcast across the network is completely private **will** mean that other nations (especially those not on the U.S. Christmas card list) are at a **near total loss of control over what their citizens do over the Starlink network**. \n\nFor that reason alone, we can be sure China will **_NOT_** be issuing a license or recommending Starlink to their population unless the Starlink network routes all China-centric traffic through a "Great Firewall of China" ground station.\n\nThat said, if SpaceX were to have access to the data on the network, it would be legally compelled to filter content at the discretion of the United States government, undermining freedom, net neutrality, and greatly increasing legal risk. Has Elon learnt his lessons from Twitter (or X)? Probably not, but it is worth romanticising about the possibility.\n\n### **Integrated Businesses**\nIt's also worth acknowledging for a second too that Elon talks a good game, he is very charismatic. But like many others in his position, Elon is not incentivised to change censorship on X. He is very good at controlling the narrative. Elon clearly wishes to introduce payments as his new toy on X, that much is clear. And when 'fiat' payments are involved, identity is needed. Elon is likely to use the 'risk of AI' as a means to identify his customers, in order to bring widespread payments to X. Payments will therefore surveilled, so why would he be incentivised to prevent U.S. Government from surveilling its people? Particularly when as we mention the only reason they and Tesla exist is because of heavy heavy subsidisation, of over $1 BILLION in fact.\n\n\n![](https://image.nostr.build/c017099036734db23bfa5b25514e0f6e46f5d83b27b84858858e60e204b18119.jpg)\n\n\n### Government Snooping\nAs we know all too well, Intelligence agencies can and will use our data to spy on EVERY citizen, given any opportunity. Just ask our friend, Ed.\n\nIn fact, you may not be even aware but back in 2017 United States revoked a set of privacy protections that restricted telecommunications companies from collecting web browser search history, location tracking, and other data from its customers. **Why would they revoke this?**\n\nEven though it is well known that they had not been respecting this law up until that point, they still felt it necessary to do this. By rescinding those protections, it now allows data from internet service providers to sell personal information to third parties. The same rules apply for satellite communications providers. So why would Starlink, having received state subsidies, choose not to sell this data either? They legally & commercially have the blessing as well as the incentive.\n\n![Colombo pondering United States Government Policy](https://image.nostr.build/0fbb8843b0243a773da55b293bca47dbae175be4cb1c0ff8cfefa2b24e52d6c5.jpg)\n\nThis is in complete contrast with what happened in 1945, when the United States courts **PREVENTED powerful communications platforms from becoming monopolistic**, by agreeing that countering such moves would not constitute infringement of free speech or of the press. [(9)](https://static1.squarespace.com/static/5e449c8c3ef68d752f3e70dc/t/63754d1ba9540f651d2ef646/1668631835775/OMI+-+Musk-Twitter+-+FINAL.pdf) \n\nIn that specific case, the U.S. government intervened to ensure telephone giant AT&T did not also control other large communications verticals, as Musk now does with both Twitter (sorry X) and SpaceX (Starlink). \n\nBack then, it wasn't in the United States' interest to let this happen, but one could argue that today Starlink can be the darling for the United States government. Most significantly because Starlink allows the United States to digitally expand their reach into regions and markets where local governments cannot and will not compete. It extends the life of the welfare state at the expense of many others. \n\nAs mentioned above, let us not forget that the United States government has heavily subsidized Starlink's "land grab" in orbit and will likely wish for their snoop-shenanigans to continue, given the value of our data. Whilst everyone is focused on potentially re-drawing the boundaries on earth, the United States is extending their reach across the sky. \n\n### The Counter-Argument\nBear with me whilst I flip and flop to play both sides of the argue, but you *could* argue that SpaceX would prefer to spend money on engineers than lawyers. \n\nBuilding a private network for everyone, that lacks access to metadata, is a great idea in the Information Age. Such a network by default preserves privacy, ensures security for e-commerce, and discourages hackers from intercepting or compromising their network [(0](https://caseyhandmer.wordpress.com/2020/09/23/starlink-packet-routing/).\n\nBeing private of course removes a huge potential revenue stream. It's certainly plausible Elon's other products & services will have more than enough personal information on us, without *needing* to identify us on the base layer of the revamped internet. Better to be cynical and consciously optimistic than doom and gloom on SpaceX's ambitions.\n\n### Ambiguity Speaks\nUntil it is proven that Starlink cannot and will not pair our internet usage with our identities, the safe and logical position to take given recent history, given the legal prescendents, given state subsidies and given the overriding incentives on offer, would suggest that they would wish to collect this information on their customers. Even if the network itself is encrypted on route to and from our hardware or between each of the satellites. This data is just far too valuable and the status quo has set.\n\n----\n\n## B. Centralization\nThe other significant concern is around how much influence one company would have on our internet. What remains to be seen is if the Starlink team will meet any headwinds in the future, to achieving monopoly status and becoming what Kodak were for the camera, what Intel were for the chip or what Google still just about remain today for search.\n\nAmazon already has a robust data collection business in its retail sector, which the company could pair with telecom data to become a micro-targeting data empire [(1)](https://www.journalismliberty.org/publications/policy-brief-monopolization-of-the-satellite-broadband-market). However with Amazon's Project Kuiper network hardly getting off the ground and with OneWeb possessing less than than 13% of Starlink's network, Starlink are literally miles ahead in the sky above the competition. And Amazon are having to resort to writing to the FCC to attempt to slow Starlink down [(2)](https://advanced-television.com/2022/06/30/kuiper-seeks-limits-on-starlink/).\n\nStarlink could feasibly become a monumental monopoly in just a few short years. So much so that they are even willing to deploy their competitors own satellites into space, having inked a deal with Telesat for launches in 2026 and beyond. Talk about competitive confidence. [(3)](https://www.space.com/spacex-telesat-lightspeed-constellation-launch-deal)\n\n### Loss Leader\nAccording to its own disclosures, Starlink loses more than 50 percent on every kit it produces for customers to keep the price at $499 per package (and $99 per month for service) [(4)](https://techcrunch.com/2021/06/29/spacex-is-losing-money-on-its-starlink-terminals-but-sees-lower-costs-ahead/). This has likely come down in recent years but has undoubtedly worked in Starlink’s favour. Starlink's main competitors [(5)](https://starlinkinsider.com/starlink-competitors/) will likely continue to have stunted growth at their expense if this continues.\n\n### Rapid Growth\nThe company has added customers at a rapid rate, more than quadrupling a base of 90,000 in 2020 to 400,000 earlier in 2022 [(](https://caseyhandmer.wordpress.com/2019/11/02/starlink-is-a-very-big-deal/) to now **Starlink having just surpassed 2,000,000 customers** [(6)](https://x.com/Starlink/status/1705695980325323023)\n\n### Staggering Subsidies\nMusk himself has made good use of government subsidies, having received more than $223 billion in government subsidies for Tesla and more recently $886 million for SpaceX. [(7)](https://www.independent.co.uk/voices/elon-musk-starlink-neuralink-tesla-supervillain-b2001323.html)\n\n### Questionable Behaviour\nOne last point to mention with regards to SpaceX's monopolistic behaviour and desperation to grow quickly and take market share; the FCC was forced to cancel a billion-dollar grant awarded to Starlink [(8)](https://www.cnbc.com/2022/08/10/fcc-denies-spacex-bid-for-nearly-1-billion-in-broadband-subsidies-for-starlink.html) fairly recently after investigative reporting showed Starlink had fudged numbers on its application.[(9)](https://www.freepress.net/our-response/expert-analysis/insights-opinions/broadband-boondoggle-ajit-pais-886m-gift-elon-musk) Questions can quite rightly be asked if as we know Starlink has repeatedly tried to exploit agency negligence. Therefore, can they be trusted with maintaining the decentralised infrastructure of our internet? And our data? That's a tough one too.\n\n\n![](https://image.nostr.build/033156cb87efc25efdef65cb4647d15875b4a3e34541e50b433b8532c8dbfc9d.jpg)\n\n\n# 4. What are the other drawbacks of the Starlink network?\n\nThere are other well-documented downsides to having Starlink besides the privacy & centralizing consequences discussed above:\n- Light & reflections interfering with space exploration\n- Signals interfering with other satellites, communications & astronomy\n- Debris in orbit, potentially causing collisions & obstruction\n- Short expected life cycle of these satellites\n\nHere for instance is a video on how the amount of "space junk" has drastically increased over the last few decades: https://www.youtube.com/watch?v=0Aj2lmQBSAg. SpaceX has however published a document seeking to address some of the stigma with regards to their satellites [(20](https://api.starlink.com/public-files/Gen2StarlinkSatellites.pdf "(Opens in a new tab)") \n\n\n\n# 5. What are the key advantages of the Starlink network?\nThe drawbacks *ARE* likely surpassed by the benefits that faster, wider-reaching internet can bring - given the obvious lack of need for infrastructure. Some have been mentioned already but these include the fact that:\n- Starlink satellites are small and can fit in the palm of your hand.\n- They are MUCH cheaper, as highlighted above in the 'Profitability' section.\n- This network can bring billions more into our connected world.\n- Future capacity - we are already using existing fibre optics near enough at their limits. \n- Starlink allows us to build-out a surplus for the future and re-deploy or re-distribute bandwidth globally, instantly. Rather than leaving internet capacity stranded/unused in remote locations. The world can be far more inter-connected.\n\n# 6. Can you benefit from Starlink without their kit?\n\nSomewhat. You will need a Starlink kit and subscription to take full advantage of the network today, particularly at the impressive speeds being achieved. That said, Starlink has signed deals with a number of mobile telcos in recent years, enabling them to fill gaps & blind spots in their service. It was rumoured that many countries (mentioned below) would have their cell networks using Starlink internet by end of 2023 potentially [(21)](https://docs.fcc.gov/public/attachments/FCC-23-22A1.pdf). \n\nAnd that was confirmed just last week, with [Starlink "Direct To Cell" (22)](https://direct.starlink.com), now bringing texts by satellite in 2024 and voice calls by 2025. The following have signed agreements with Starlink, although they are all likely now in direct competition from Starlink from here on out:\n\n🇺🇸🇬🇧 - T-Mobile [(23)](https://www.space.com/spacex-starlink-direct-service-smartphones-t-mobile)\n🇪🇸🇬🇧🇨🇴🇧🇷🇵🇪🇨🇱 Telefonica (inc. Movistar, o2) [(24)](https://advanced-television.com/2023/08/09/telefonica-strikes-starlink-connectivity-deal/)\n🇦🇺 Optus [(25)](https://www.optus.com.au/living-network/coverage/leosat), Telstra [(26)](https://advanced-television.com/2023/07/05/telstra-signs-starlink-deal/)\n🇯🇵 - KDD [(27)](https://advanced-television.com/2023/08/31/jaoan-kddi-to-use-starlink/)\n🇨🇭 Salt [(28)](https://advanced-television.com/2023/03/02/salt-starlink-switzerland-satellite-connectivity-deal/)\n🇨🇦 Rogers [(29)](https://about.rogers.com/news-ideas/rogers-signs-agreement-with-spacex-to-bring-satellite-to-phone-coverage-to-canada/)\n\n \n# 7. Describe the Starlink network (like I'm 205)\n\n### Overview\nIP is the fundamental protocol of the Internet, with TCP and UDP protocols riding on that.\n\nElon has previously stated that Starlink will utilize an IP-less, "simpler than IPv6", “end-to-end encryption encoded at firmware level”, peer-to-peer protocol, which insinuates encapsulation of our IP packets at the network ingress Gateway (our user terminal) and de-encapsulation at the Ground Station peering point (whereupon our packets are released out onto the wider Internet). And vice versa.\n\n![](https://image.nostr.build/acc9dcbc8b1eb444c648e129a9ea0cde44a63b5016615efdc8de09a4a0fbb29c.jpg)\n\n## 'End to End' Encryption\n\nImplementing full encryption across the Starlink network would ensure that the network cannot inspect the content of data packets or identify the protocols they contain. Protocols such as HTTP, FTP, Email (e.g., POP3/SMTP/IMAP), BitTorrent, and others. \n\nIn simpler terms, the data packets would be scrambled with encryption, except possibly when they enter or exit the network, for example when traveling between Gateways and Ground Stations or between Satellites and Mobile Devices. This is what they refer to when they mention 'End to End' encryption.\n\nConsidering the potential threat of third parties intercepting radio or laser signals on the ground or in space, it's crucial that encrypted signals are practically indistinguishable from random noise.\n\nWhile the Tor Network was initially designed to provide privacy features, it isn\\t perfect for a scalable internet in terms of performance, reliability, functionality, nor adoption. However, if Starlink was to be well implemented, it has the potential to offer privacy during data transit similar to Tor. Additionally, Starlink must deliver maximum bandwidth, minimal latency, and minimize packet header overhead [(31)](https://www.teslaoracle.com/2021/01/25/spacx-record-143-satellites-laser-starlinks/). Whilst encryption does introduce some processing overhead, the benefits of data security and privacy provided by encryption would outweigh these minor performance considerations, particularly as encryption algorithms and hardware acceleration have further reduced the impact on network performance. \n\n## Secure Networks\n\n![Starshield - Government Starlink](https://image.nostr.build/e98a876519aaf46d7e27a9c39897f17caa9748d98d50aee9fe067015a58a7517.jpg)\n\nIt must be said however, that the U.S. Air Force in August 2022 signed a deal with Starlink, making it the exclusive Internet provider in many countries where it operates. It therefore clearly *is* capable of providing super secure communications. [(8)](https://spacenews.com/spacex-gets-1-9-million-air-force-contract-for-starlink-services-in-europe-and-africa). It followed-up that announcement with Starshield in December 2022, which is essentially a type of hosted & separated Starlink instance, specifically for Governments [(9)](https://www.theverge.com/2022/12/7/23497999/spacex-starshield-starlink-government-satellite-internet).\n\nYou can read more about **Starshield** on their public link, which is basically offering everything we would want from our internet, but strictly to customers desiring 'Defence' and 'National Security' [(20 - (https://www.spacex.com/starshield/)](https://www.spacex.com/starshield/).\n\n>Starlink already offers unparalleled end-to-end user data encryption. Starshield uses additional high-assurance cryptographic capability to host classified payloads and process data securely, meeting the most demanding government requirements.\n\n\n\n## V2 Satellites\n- The latest satellites deployed to orbit are these named 'V2 Mini satellites'.\n- Each V2 Mini has have 4 times the capacity for serving users compared to its earlier counterparts, known as V1.5.\n- Each V2 Mini weighs about 1,760 pounds (800 kilograms) nearly 3x heavier than the older Starlink satellites. \n- The V2 Mini satellites unveil 2 solar array wings to a total span of over 100 feet (30 meters) wide. The original Starlink satellites each have a single solar array wing measuring about 36 feet (11 meters) end-to-end.\n- They also use an “autonomous collision avoidance system” to help avoid impacts with other objects in orbit. Something previous versions did not have. Plus they boast thrusters 2x more powerful to position themselves in orbit and dodge the space junk.\n\n- SpaceX plan to deploy the larger variations of the V2 satellites starting next year in 2024.\n- The full-size Starlink V2 satellites, will have more than double the surface area.\n\n![Render of Starlink satellite expanded](https://image.nostr.build/3a4b08628e08330a146a8dadde4a39c23b4bfb32f3fda131fbd9ddd25ce3b99f.jpg)\n\nFor the full list of SpaceX launches, you can find them all listed on NASA's website (in albeit a really awful format) [(32)](https://nssdc.gsfc.nasa.gov/nmc/spacecraft/query).\n\n\n## Ground Stations\nStarlink ground stations harness highly sophisticated tracking and positioning mechanisms that are capable of observing with precision every satellite’s position as well as trajectory. They help enhance the quality of the connection given the ever-changing orbitals, by being able to combine the satellites with these complex antennas it allows ever more precise monitoring & speedy communication. \n\nThere are 2 in Africa, 5 in Asia, 20+ in Europe, 2 in Middle East, 12 in Oceana and most impressively 78 in the Americas (18 in Central, 17 in South and 35 in U.S alone). [(33)](https://starlinkmag.com/starlink-ground-station-locations/)\n\n\n## Shareable Bandwidth\nAll users or subscribers within one beam spot have until recently had to share bandwidth. The size of this spot is apparently determined by physics – essentially its width = (satellite altitude x microwave wavelength/antenna diameter). Which for Starlink satellites works out to be, at best, a few kilometers.\n\nIn other words, dozens of satellites were needing to point their most powerful beam at the same area, and subscribers in that area would use ground terminals that would split the demand amongst those satellites.\n\n\n### Laser-Linking Tech\nA recent feature-add by Starlink to install lasers on their satellites means that now however, they can communicate spread the bandwidth across each of the satellites. This is why they expect to be able to upgrade their satellite network every 5 years. New innovations are advancing fast.\n\nThe value that satellite-to-satellite laser links provide is that they create a low latency, high bandwidth path that stays within the Starlink satellite network [(34)](https://www.teslaoracle.com/2021/01/25/spacx-record-143-satellites-laser-starlinks/). Without it, each Starlink satellite is only capable of communicating directly to ground terminals (either consumer, transit or SpaceX control). \n\nFor traffic that is intended to move large geographic distances (think transcontinental like flights), this would otherwise require several hops back and forth between ground and satellite. \n\nFun fact: this is why we have to use airplane mode on flights. Not because it will disrupt the plane's own communications but because our phones have to constantly ping back to earth, and having hundreds of devices do this along the entire flightpath, would disrupt cell coverage for many of those on the ground [(35)](https://www.howtogeek.com/194421/what-does-airplane-mode-do-and-is-it-really-necessary/).\n\nBy performing this type of transit directly in space, and exiting at a transit node nearest the destination for the data, you greatly reduce latency. Not to mention the requirement for those ground stations.\n\n\n### Related Innovations\nI also recently stumbled-across a seemingly unrelated new article about an innovation for a new type of algorithm for networking & flow [(36)]([https://www.quantamagazine.org/researchers-achieve-absurdly-fast-algorithm-for-network-flow-20220608/](https://www.quantamagazine.org/researchers-achieve-absurdly-fast-algorithm-for-network-flow-20220608/)). As soon as I read it, I figured it could have implications for Starlink. \n\nFor now, it’s basically a theoretical possibility but its benefits for network computing have been labelled as profound, especially for networks far larger than ones we have today. The intention with that algorithm is to increase latency and speed, beyond the bounds of our existing limits for 'Maximum Flow'.\n\n> Eventually, the researchers created an algorithm that runs in “almost linear” time, meaning that as you look at larger and larger networks, its runtime approaches some multiple of _m_. It’s a “tour de force,” Mądry said.\n\nA network as large as Starlink's could be just the application for breakthroughs like these.\n\n\n\n![Starlink logo](https://image.nostr.build/93a8954c89f1618760e7b4bd8a8eb74f3a0ccf83b4e83bdd8fc76b4b6d369361.png)\n\n\n# 8. Conclusion\n\nThanks for making it this far. That was quite the ramble! Whether you have skimmed-through or read every word, hopefully it has provided some useful context on the Starlink internet network. The new internet that **we will all be using**, in all likelihood, in 5 years time.\n\nWe got into the technical specs, encryption, the history of the internet and even network flow. The biggest question to answer for me coming into this, was around encryption. I have since learnt that Starlink via SpaceX will become an internet monopoly if left unchecked. They are a powerhouse.\n\nFor me, this research doesn't definitively answer the question of whether Starlink's unparalleled influence in space and satellite communications is a net positive or a net negative. I will let you decide this.\n\nBut to answer the original question of whether or not we will see Starlink utilising user data or at least our metadata to their benefit, on balance I have to lean in-favour of the status quo being maintained here. Reasons being:\n\n- The laws changed in 2017 to **legalise data collection by telecommunications providers**, removing any remaining ambiguity.\n- Data is already **more valuable than oil**. (Although this may be put to the test over these coming years).\n- It is in U.S. Government to gather **more data on more worldwide communications**.\n- There is a **separate 'more secure' instance of Starlink specifically for Governments** worldwide, named [Starshield](https://www.spacex.com/starshield/).\n- When Government subsidies dry-up, SpaceX will wish to fund continued upgrades to their satellite network.\n- Leveraging user data would also allow them to be able to potentially subsidise internet usage for their customers, in some regions where equipment is unattainable, if they so chose.\n\nIt may indeed turn-out that the level of data-collection could be an afterthought. If Elon's businesses of Tesla, SpaceX and X were to ever become as one. Even if that never came to fruition, I still think we're about to witness one of the biggest monopolies we've witnessed in human history.\n\n------\n\n### Share your thoughts...\nPlease drop your comments below on what your assessment of Starlink is, and how you perceive the future of our internet to be. More or less free.\n\n \N 2711 \N 138494 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.9234778234914 0 \N \N f 0 \N 0 40127498 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 97581 2023-12-11 22:17:12.243 2025-03-29 22:39:46.787 Announcing Bugle Weekly: The Podcast to Take Down the Podconf Industrial Complex The Bugle has a podcast and we are dropping the news here first because Stacker.News is our favorite forum to engage in spreading our top notch journalistic efforts. \n\nToday Rod Palmer and Dick Greaser sat down to discuss "Out Complying the Competition."\n\nListen here: https://www.fountain.fm/show/6850108\n\nLet us do the thinking for you because life is too damn hard to the thinking yourself. \n\nOh the podcast name is "The Bugle Weekly." \N 2780 \N 97581 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2712655628871 0 \N \N f 0 \N 0 134905485 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 82606 2023-11-05 15:14:28.436 2025-03-29 22:39:46.787 incredibly impressed by LND + Neutrino I serve [my blog](https://conduition.io) from a small (read: weedy) VPS. I only intended to use it for a simple webserver, so it didn't need to be a beast: Less than a gigabyte of memory. Less than 10 Gb of disk storage, and barely enough CPU to decide what I should eat for breakfast. It's weaker than a raspberry pi, but costs me only a few dollars each month to maintain.\n\nAfter reading [BIP157/158](https://github.com/bitcoin/bips/blob/master/bip-0158.mediawiki) and learning about how [Neutrino](https://github.com/lightninglabs/neutrino) works, I thought: "Holy guacamole, what an amazing age we live in. I've got to try this."\n\nI've run Lightning nodes before, but they were always backed by a full archival Bitcoin Core instance, with hundreds of gigabytes of storage required for the full chain and index. This time, I wanted to have a go at running an ultra-light `lnd` instance on my puny little VPS with as tiny a storage footprint as possible. \n\nTurns out, it's very possible, and took only 2 hours to set up from the time I sat down to read docs/guides, to the time I opened [the node's first channel](https://1ml.com/channel/919822840577196033). And most of that was just the reading. With a neutrino backend, LND only took maybe 2 minutes to sync and finish setup. If i were so inclined, I could probably script this process deploy a node and open a channel in 5 minutes tops.\n\nThis is sublime. Running a lightning node has never been easier or cheaper. \N 18637 \N 82606 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.9711036186627 0 \N \N f 0 \N 0 58592133 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435151 2025-03-12 13:55:44.008 2025-03-29 22:39:46.787 Cooking with Nifty & Friends!  https://www.youtube.com/watch?v=7daeg-OBRFM\n\n\n👩‍🍳We’re thrilled to announce: ‘Cooking with Nifty & Friends’! 🍽️\n\n\nJoin us for the inaugural episode where niftynei guides you through crafting homemade Bourbon Balls. 🥃 🍫\n\n\nThis culinary adventure is proudly presented by Base58⛓🔓, the premier Bitcoin protocol school for developers, and bitcoinplusplus, the foremost global conference series for developers.\n\n\n#BitcoinCuisine #DevDelights #TopBuilder\n\n\nApply for TopBuilder before Jan. 13th, 2024: https://www.topbuilder.dev/\n \N 21033 \N 435151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6301403515456 0 \N \N f 489683043 \N 5 162064762 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 18:08:28.293 f \N \N \N 0 0 0 0 5 0 0 68506 2023-09-30 09:26:31.703 2025-03-29 22:39:46.784 Orange Pilling Your Lefty Friends I have lived most of my life in the New York City area, so if I didn't have a few lefty/commie pinko friends I would be a complete loner. \nA few days ago my wife and I visited dear friends with whom we have next to nothing in common politically They are classic democratic party "progressives". I socialize with the husband a lot, and we have become close friends. I have of course attempted to orange pill him for years, without the slightest success.\n During our recent visit they began speaking about charitable causes they support. I naturally mentioned Anita Posch and the Satsraiser. They were intrigued and wanted to know why she used bitcoin. I then went into my Alex Gladstein imitation, talking about French Colonialism and the CFA. I honestly was not consciously in orange pill mode. We had a good, long conversation.\nWhen I got home the husband texted me and said he wanted to go with me to the "Bitcoin Bar"(Pub Key) the next time I went. It's probably more curiosity than anything else, but I'm hopeful.\nI know @k00b made a post a while back about talking to lefty friends about bitcoin. The charity angle may be effective. I'll keep you guys posted after the visit. \N 2361 \N 68506 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.7589840369338 0 \N \N f 0 \N 0 131861250 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 178386 2024-06-01 10:46:59.94 2025-03-29 22:39:46.785 Million Sat Madness is a Keynesian Beauty Contest # Rambling Preamble\nThere's a lot of conversation right now about the MSM competition. I also feel like I've noticed some behavioral changes amongst stackers. That leads me to reflect on what this contest is showing us about the SN rewards structure.\n\nMany of us have written about how the rewards structure here is largely responsible for cultivating this very unique internet community. I've written many times about how people are really short-changing themselves by not taking advantage of the reward incentives: i.e. you can come out ahead by zapping content you like liberally.\n\nThere's plenty of room for improvement, of course, and one of the things I most value about being here is that the development team talks with us openly about our ideas for improvements. (I was very interested in experimental econ in graduate school, but don't get to flex my mechanism design muscles in my current job.)\n\n# Actual Point\nThat's a lot of preamble to get to my point. Million Sat Madness seems to be causing stackers to examine the particulars of the reward system more carefully, and that might be a problem.\n\nThe reward system Stacker News uses is a form of [Keynesian Beauty Contest](https://thedecisionlab.com/reference-guide/psychology/the-keynesian-beauty-contest): our rewards aren't really based on zapping and making the best content. Our rewards are based on zapping and creating the content that other users zap the most (slight oversimplification). \n\nI often say "Outcomes follow incentives" and Keynesian Beauty Contests are known to have a flawed incentive structure (assuming the goal is to elicit honest responses about what people like the best). \n\nWhen people were being super miserly with their daily zaps, this wasn't an issue. However, I feel like I've noticed a shift in zapping habits that conforms with the expectations of a Keynesian Beauty Contest. If the goal is to zap posts that you think will get lots of zaps, then there are certain people who are a safer bet to zap, like @kepford or @Natalia, and you might not zap other posts even though you liked them. If you're trying to zap the "best" comments, then you might try to zap good responses to @k00b or @elvismercury, since they're really generous comment zappers, but ignore equally good comments left on other people's posts.\n\nPlease note that I'm not saying any of those creators shouldn't be getting zapped a ton. I'd still love to see people zapping them more. I drew them from the set of stackers whose work I most value and who I've noticed other people also highly value.\n\nPart of why I think this might be showing up for MSM, but not for the daily rewards, is that the larger sample size is reducing uncertainty in the outcome greatly. On any given day, I might have one of the best performing posts or comments. However, over the course of a month, there's a near certainty that I won't. That means there's a disincentive to zap my content. Or, stated differently, the marginal benefit of zapping my content is less than the marginal benefit of zapping other content of a similar quality.\n\n# Possible Solution\nThere's probably a super clever and elegant idea in mechanism design that solves this incentive problem, but I'm not aware of it.\n\nI really like the idea of rewarding creators more for having the top content over a longer span of time, so I don't actually think the best answer is to go back to daily rewards. I also think the monthly rewards are more fair to international stackers who get slightly screwed by time-zone issues.\n\nWhat I do think would largely head off this incentive issue is making the incentives more difficult to game. My suggestion is to split the reward pot into rewards over four different timespans:\n* 25% rewards paid out daily\n* 25% rewards paid out weekly\n* 25% rewards paid out monthly\n* 25% rewards paid out yearly\n\nThat way there's an incentive to zap content you think is good, but not best-of-the-month good, because it still might get you some daily and weekly rewards. There's also more incentive to zap great posts even more, since at the end of the year those rewards might be very large.\n\nI also think some form of randomization could be used to make the daily rewards are a bit more fair across time zones.\n\nI'm curious to hear what you all think. \N 13599 \N 178386 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.449998525717 0 \N \N f 0 \N 0 31220961 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 265878 2024-10-13 09:33:42.992 2025-03-29 22:39:46.785 FBI warns all Americans to stop using KYC-free bitcoin services \N https://www.ic3.gov/Media/Y2024/PSA240425 699 \N 265878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8273512464034 0 \N \N f 0 \N 0 72274064 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 195462 2024-07-06 13:28:09.022 2025-03-29 22:39:46.786 SN release: new navigation stuff, search UX improvements, hashed api keys, more 1. The biggest change is probably the navigation updates:\n - dedicated mobile navigation (eg bottom navbar, offcanvas)\n - sticky minimal navigation bar so you navigate easily when you're deep in comment threads\n - when you're logged out, you're visually "logged in" as anon\n2. Search UX:\n - search defaults to searching all territories\n - more intuitive search filters\n3. API keys were not hashed for storage when we first launched them. @WeAreAllSatoshi reported [this](https://github.com/stackernews/stacker.news/security/advisories/GHSA-qg4g-m4xq-695p) immediately and only @ek's @hn bot has API keys *phew*. (via @ek)\n4. Discussion posts are now readable in a browser's Reader View that support it\n - 🚨 new contributor alert: @felipe\n5. Withdrawal notifications (via @ek)\n6. Fix link target on link posts to not fill entire horizontal \n - 🚨 new contributor alert: @BenAllenG\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------\n\nWe've paid a total of 595,100 sats in contribution awards in just the last 12 days! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n------------\n\nPrevious release: https://stacker.news/items/473244\nComplete list of changes: https://stacker.news/changes\nQ4 recap and Q1 roadmap: https://stacker.news/items/381208 \n\n \N 19463 \N 195462 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 4.71711100859412 0 \N \N f 0 \N 0 229364917 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5554 2022-12-18 18:02:26.481 2025-03-29 22:39:46.787 BitVM: Compute Anything on Bitcoin \N https://bitvm.org/bitvm.pdf 937 \N 5554 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.2113856072288 0 \N \N f 0 \N 0 222589013 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 150846 2024-03-29 10:27:58.931 2025-03-29 22:39:46.787 The Fourth Turning - 27 Years Later In 1997, authors of The Fourth Turning made two bold predictions:\n\n- Around 2005, a sudden spark will catalyze a crisis mood and social/political/economic trust will implode.\n\n- Before 2025, America will pass through a great gate in history (like the American Revolution & Civil War)\n\nLooking back now, how do you rate these predictions? \n\nIs The Fourth Turning over? Did it even happen?\n\n![](https://m.stacker.news/64986) \N 919 \N 150846 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2766393988226 0 \N \N f 0 \N 0 33074424 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 206960 2024-07-28 14:42:46.076 2025-03-29 22:39:46.788 The MicroBolt v1.0 is here printf "%s\\n" "Hello world!"\n\n🎉 MicroBolt v1.0 released! ⚡️\n\nA self-hosted Bitcoin & Lightning full node guide on a personal computer.\nWith all you need to be a self-sovereign, Bitcoin + electrum + explorer + mining pool + lightning, based af 🥵\n\n- 🗻 build on top of [@alpinelinux](https://twitter.com/alpinelinux)\nSimple. Small. Secure.\n- 🫧 bloat-free. ~~GNU systemd glibc~~\n- 🆎 multi-language (Catalan & English)\n- 👀 tool-agnostic\n- 🚫 anti-ordinals first\n- ⛏️ #Bitaxe and #TeamNerdminer ready. by [@skot9000](https://twitter.com/skot9000) & [@BitMaker_](https//twitter.com/BitMaker_)\n- 🟠 Bitcoin Core || [@BitcoinKnots](https://twitter.com/BitcoinKnots)\n- ⚛ electrs || fulcrum\n- 🐦‍⬛ [@SparrowWallet](https://twitter.com/SparrowWallet)\n- ⛓ BTC RPC explorer\n- 🌊 [@Public_Pool_BTC](https://twitter.com/Public_Pool_BTC)\n- ⚡️ LND [@lightning](https://twitter.com/lightning)\n- 🌩 [@thunderhubio](https://twitter.com/thunderhubio)\n- 🌞 [@ZeusLN](https://twitter.com/ZeusLN)\n- 🧙 more to come... this is only the beggining\n\nWebsite -https://microbolt.guide\nGitHub- https://github.com/microbolt-guide/microbolt\nTwitter - https://twitter.com/microbolt_guide\nTelegram - https://t.me/microbolt_guide\n\n@doitwithnotepad on tw & tg\n \N 19842 \N 206960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1297261205019 0 \N \N f 0 \N 0 216503234 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 368832 2025-01-15 08:03:58.581 2025-03-29 22:39:46.788 Lightning Network use case for efficient stacking I'd like to share how I use the Lightning Network (LN) to stack efficiently.\n\nMy use case: be a frugal stacker with very low expenses, and a regular income from my personal business (room rentals). Keeping expenses far below income, with aggressive stacking as the result. Tenants are asked to pay rent in bitcoin, stipulated in the rental agreement (flexible though, it can take time to set up on-ramps for newbies. Fiat payments OK in the interim).\n\nTenants are recommended to sign up with Strike or River Financial - these have the lowest fees for buying corn. Strike ~ 0.2% spread (basically free), and River is free if used via automated monthly purchase, or 1% otherwise. Rents are monthly and can be automated for zero-fee buys on River. ID Verification process can delay onset of bitcoin payments -- use fiat in the interim and stack nonKYC with Robosats.\n\nRegarding nonKYC privacy for tenants - new nocoiner tenants may struggle with jumping directly into Robosats for buying nonKYC corn, and would need Strike for Robosats fiat payments anyway (Strike is more reliable than Zelle payments), so start with Strike or River for tenant payments. Tenants can pay monthly to either on-chain address or LN invoice (Strike and River support both). \n\nOn my end, the crux is inbound liquidity, for a frugal stacker with little expenses creates almost no outbound flows, only inbound each month. Household expenses in my case are covered from other fiat income (Job, Disability, Pension), leaving rents almost entirely for stacking/saving.\n\n\n\nSOLUTION: Open large, paid inbound liquidity channels with LNBig, or Deezy.io, etc. Larger is better (0.1+ BTC inbound liquidity, 0.05 minimum). Collect rents via the LN invoices, paid by tenants from Strike or River. LN transactions save on withdrawal network fees, and are much more rapid. Save thousands of sats by using LN in this way.\n\nFees paid when opening the large inbound channels pay for themselves because the channel can stay open indefinitely, especially when seeing regular, monthly use. Pay once and use forever (ideally). Large channels cost less percentage in fees than small channels (as low as 0.2% or even less. Deezy seems the cheapest). You can collect rents for 1 or more months, depending on size of channels and your rent income, without network fees.\n\nAs channels fill up, then swap-out to on-chain cold storage as cheaply as possible. Coinos has been the lowest fee alternative I've found (~0.1%), followed closely by @myloopoutbot on telegram. Like in buying channels, swap-outs for large amounts save on fees. Caveat - making huge swapouts could create liquidity errors for the swap service. I haven't run into issues yet, but it's possible. Alternatively, you could swap-out every month or break large swaps into two transactions.\n\n\n\nRESULTS/BENEFITS: You enjoy rapid incoming payment transactions to your LN wallet, save thousands of sats on network fees for the small expense of one cumulative swap-out (~0.1%) every month or few months, and you reduce network congestion and are minimally impacted by it. Your privacy is also enhanced by receiving incomes via the Lightning Network.\n\nIf desired, your one large periodic swap-out can be made with a higher network fee for rapidity, and it's still a minuscule fraction fee of your total swap-out amount. Once channels are emptied, repeat for gains and hodl. \N 15049 \N 368832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4833153925698 0 \N \N f 0 \N 0 202116038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 206300 2024-07-27 11:10:13.521 2025-03-29 22:39:46.784 Replit CEO considers replacing site currency ("Cycles") with Lightning payments I believe this would be the most important bitcoin integration to date, as millions of young devs in India and other emerging markets would immediately get lightning wallets and likely start building their own new apps with lightning payments https://twitter.com/amasad/status/1738003006048923697 17226 \N 206300 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.00650782663575 0 \N \N f 0 \N 0 211073877 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52886 2023-08-20 16:56:14.084 2025-03-29 22:39:46.785 Some thoughts on success \n##### Thread #1: Felix Stocker\nI have never heard of Felix Stocker before, but [this article](https://www.felixstocker.com/blog/talent) on talent, and what talent is, is just ... astounding. Astounding enough that after I read it, I got up and came directly to my desk to write this post.\n\n##### Thread #2: A personal anecdote\nA few years ago I was on my CEO's private jet, and we were discussing a question I had posed to him about whether it's better to invest your time trying to mitigate your weaknesses, or exploiting your strengths.\n\nI mention the "private jet" detail partly because it's true, but mostly to set the scene so that when I tell you that this was the most hard-working, intense, and driven dude I have ever met in my life, that you might get a sense of the scale I'm talking about. He had started off as a normal middle class guy from a nowhere town, and wound up someone whose phone call dignitaries of various governments would take. For these and other reasons, his opinion on the question of addressing one's strengths vs weaknesses seemed worth having.\n\nHe barely needed to think about the question. "Play to your strengths," he said. This surprised me; I'd thought he'd pick the other option for the same reason I would have, which was: whatever you're doing in life, your success is probably constrained by something stupid that you hate. Maybe (calling back to the Felix Stocker article) you despise math, which means that you avoid it at all costs and it limits your world accordingly.\n\nBut if you're currently an F in math skill, it's probably not that hard to get up to a C- in math skill with some focused intention. And what would that unlock, to not be so cripplingly bad at something so fundamental? To have whole areas of endeavor that are no longer closed off to you? What other doors would it open to someone with your abilities? If you widen the aperture of the rate-limiter by 300%, maybe that would result in outsized benefits?\n\nThat's how it seemed to me. I confess that I still can't really shake the idea. Which, again, is why the fact that one of us has a jet, and one does not, becomes a salient detail in this anecdote.\n\n##### Thread #3: Charlie Munger\nHere's a quote from Charlie Munger. I wrote it down years ago so have lost the original attribution but, you can probably find it in context if you google.\n\n> You have to figure out what your own aptitudes are. If you play games where other people have the aptitudes and you don’t, you’re going to lose. And that’s as close to certain as any prediction that you can make. You have to figure out where you’ve got an edge. And you’ve got to play within your own circle of competence.\n\n> If you want to be the best tennis player in the world, you may start out trying and soon find out that it’s hopeless—that other people blow right by you. However, if you want to become the best plumbing contractor in Bemidji, that is probably doable by two-thirds of you. It takes a will. It takes the intelligence. But after a while, you’d gradually know all about the plumbing business in Bemidji and master the art. That is an attainable objective, given enough discipline. And people who could never win a chess tournament or stand in center court in a respectable tennis tournament can rise quite high in life by slowly developing a circle of competence—which results partly from what they were born with and partly from what they slowly develop through work.\n\n##### Thread #4: What you're interested in\nThere's a paper that made a big impact on me. Unless you're in a certain field you won't have heard of it, but you may know Carol Dweck for her work on mindsets.\n\n> O’Keefe, P. A., Dweck, C. S., & Walton, G. M. (2018). Implicit Theories of Interest: Finding Your Passion or Developing It? Psychological Science, 29(10), 1653–1664. https://doi.org/10.1177/0956797618780643\n\nIf I summarized how this paper sits in my mind [1], it would be something like: a lot of what you believe about your own interests is backwards. It's not because you're interested in stuff that you work hard at it; rather, if you work hard at stuff, and progress at it and start to get good at it, the motivational machinery kicks in, and suddenly you're passionate about plumbing, or whatever (to call back to Munger). [2]\n\nThis is consequential for a few reasons, but one of them is that it's a corrective for a very wrong model of reality: if you go around doing stuff, not being interested in it, saying to yourself "Well, this _clearly_ isn't the thing I'm meant to do!" and then giving up, then (according to the model from O'Keefe et al) you'll be doing it exactly backwards! and in fact, you will be stacking the deck heavily against _ever_ finding yourself interested and passionate about anything!\n\n##### My unease, and a question\nSo all this is jumbling in my mind. I'm trying to figure out how to live a passionate life, where I'm swept up in what I'm doing. To [have the proper perspective](https://stacker.news/items/497074). I think this is what we all want.\n\nAnd then I think: there's a great deal of privilege wrapped up in this. If I was in some economic wasteland, unemployed, uncertain of where my meals were coming from, all of these issues would seem trivial. Hedonics adapt. People don't worry about self-actualization when they're focused on not dying. Which is a tiny kindness, I guess.\n\nBut I have the privilege of caring about this, and I'm looking around and wondering if I'm doing the wrong stuff, and that's why it isn't coming easy, as per Stocker? Or if I'm not working hard enough, and everything would fall into place if I doubled down, as per Munger and O'Keefe et al?\n\nAnd I wonder if people around here are swept up in a passion for what they're doing, and if so, what you think of these different threads? Or perhaps you, like me, are not currently swept up, and if not, what do you make of it all?\n\n##### Notes\n[1] This isn't the paper's sole focus, and is a conclusion garnered from much other work; but the paper supports it.\n\n[2] There was a [post](https://stacker.news/items/503110) on Cal Newport recently; I vaguely recall that Newport made a related argument in one of his books, but I can't attribute it.\n\n \N 17147 \N 52886 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.09138509339629 0 \N \N f 0 \N 0 3612807 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 4774 2022-11-30 06:06:30.113 2025-03-29 22:39:46.785 Bsats - the first ios / android app for stacker.news is finally out! Hello stackers!\n\nFor the last two months, I have spent some time building the app for stacker.news.\nNow it's finally published on [Apple store](https://apps.apple.com/app/id6443531395) and [Google play](https://play.google.com/store/apps/details?id=xyz.bsats.app&hl=en_US&gl=US).\n\nHere are features it has:\n\n* Tabbed Interface for easy navigating\n* Bookmark favorite posts\n* Dark Mode\n* Image Zoom and View mode\n* Full Markdown Rendering\n* Fancy Profile Page\n\nSince I haven't implemented the authentication, it's missing some very important features like notification, post, reply, vote, deposit, withdraw..\n\nI will add those after stacker.new publishes the official auth api.\n\nThe app repo is fully open sourced and you can find it on [Github](https://github.com/kale5195/bsats).\n\nAlso, the tech stack is react native + [expo](https://docs.expo.dev/) + tailwind css + react query.\n\nSo if you are familiar with front-end development, it will be very easy to contribute.\n\nFor any feature requests or bugs, you can put them under this post or open an issue on Github.\n\nI will fix it asap. \N 21824 \N 4774 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.6815896614362 0 \N \N f 0 \N 0 49457113 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 204508 2024-07-23 15:51:01.165 2025-03-29 22:39:46.786 How to Fail ### separate the success you need from the success you want\n\nThriving demands clean water, nutritious food, and great friends. If you're healthy and have those things, everything else is *extra*. When you only need essentials, you can fail as fast and as frequently as your time on Earth will allow.\n\n### it's about quantity not quality\n\nBecoming skilled at failing is like becoming skilled at anything. You express your present skill level as frequently as you can at the cost of nearly all other measures of performance. You'll make an earnest and diligent attempt at *something*, and to fail, *something* needs to be something that you're unlikely to succeed at.\n\nYou may notice that as your failures grow, you begin to succeed reflexively and inadvertently. When this happens, you only need to find something harder that you'll definitely fail at.\n\n### embrace your weakness\n\nMost of us have self-prophesies about our strength. This is only useful for manipulating ourselves and others into believing we can't fail. Fortunately lies don't survive contact with reality. Test your strength through action, not your stories about its action, and discover how to fail.\n\nIf you are in fact strong, you may feel like you can't fail, but you can. Any strength has limits beyond which we are weak. Strength often has a narrow area of application too. To fail, identify those limits and pursue feats of strength beyond them. \n\n### surround yourself with failures\n\nSuccessful people often teach us how to succeed but not how to fail. They tend to omit their failures and over generalize their success. We succeed by failing until we succeed or by getting lucky, and often we can't tell which made us successful exactly. One surprising way to fail is to take a successful person's wrong advice. \n\nTo learn how to fail as fast as possible, find people diligently failing to do the *something* you want to fail at. Move near them virtually and physically and learn how to fail with them. You will inherit their experience and increase your quantity of fails passively.\n\n### steer into skids\n\nIt's our nature to avoid failing. Seek discomfort to find ways to fail. Seek a quality of discomfort similar to the discomfort of puberty. Puberty is confusing, awkward, and exciting. It's a rapid and automatic succession of misunderstandings and novel failures. Puberty is what growth feels like and failing at worthwhile things will feel similar. To fail, pursue these feelings.\n\nLearn how to fail because failure accompanies growth. \N 6749 \N 204508 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.0768443349589 0 \N \N f 0 \N 0 54617075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 245362 2024-09-23 22:04:01.912 2025-03-29 22:39:46.787 Telegram's Bitcoin Failure There has been some big announcements recently about Telegram supporting Bitcoin in their built-in app wallet. \n\n**I decided to test it out and unfortunately found some major issues that make it a failure and Dead on Arrival.**\n\n[![1.jpg](https://i.postimg.cc/jjp5nSgb/1.jpg)](https://postimg.cc/Z9LZ14z7)\n\nFirstly, they support BTC, but only alongside their own shitcoin token "TON" and USDT. There is no way to disable the display of TON and it always shows up at the top. Telegram is used by hundreds of millions globally and they are using this position to shill a POS shitcoin.\n\n**Secondly**, I made a small test transaction and was surprised to see they were using legacy format P2PKH addresses. This is not unique, Coinbase and others still use legacy addresses formats (which means higher fees for the user).\n\nThe real failure though was that though my transaction got confirmed on-chain, it was still listed as "pending" in Telegram. I left it for 12 hours+ and it still had not been added to my balance. I contacted the support bot and this is what they had to say:\n\n[![6.jpg](https://i.postimg.cc/mrzkrHSj/6.jpg)](https://postimg.cc/5HJb7jTQ)\n\n~1100 sats is high risk? According to who? This is about as loose as it gets. If I cannot deposit Bitcoin to my wallet then how can anyone? There was no ticket number, no support link, just a quick "give us your refund address." \n\nWho else even has access to my funds?\n\nI suspect the reason this transaction was rejected was because of chain analysis on the coins. I used a simple swap service to do Lightning -> Bitcoin to deposit these funds. I am reluctant to waste any more Bitcoin testing this service using a "clean" sending address, but regardless it is not a great outcome.\n\nThis was just a test and I would never use this service really myself, but for the millions of Telegram users who are not aware of other wallet alternatives etc and just want something built-in this seems like a failure.\n\n**What does it mean if more and more chain analysis is deployed to decide what Bitcoin is "ok" and what is not? I don't know the answer, but it is uncomfortable to have doubt about whether a transaction will be accepted or not even if confirmed onchain.** \N 11454 \N 245362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.608002370981 0 \N \N f 0 \N 0 138285242 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 8091 2023-02-03 09:35:55.044 2025-03-29 22:39:46.787 Operation Saylor - Episode 20/120 # Operation Saylor - Episode 20/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 20, corresponding to February 2024.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.32429598 BTC\n- € stack: 442.20 €\n- Current total value in €: 63,743.55 €\n- € into BTC: 30,000 €\n- Paid back to bank: 6,957.80 € \n- Outstanding debt + interests: 36,986.53 €\n- Installments to go: 101\n\n\n## Charts\n\n[![Screenshot-from-2024-03-05-11-31-55.png](https://i.postimg.cc/VvWyrxcG/Screenshot-from-2024-03-05-11-31-55.png)](https://postimg.cc/30NfzbNm)\n[![Screenshot-from-2024-03-05-11-32-32.png](https://i.postimg.cc/VsqPVCbq/Screenshot-from-2024-03-05-11-32-32.png)](https://postimg.cc/vDZK1DhT)\n \n---\n\n## Log \n\nHello again, and welcome to the February episode of 2024. Apologies for the delay. Life kept getting in the middle.\n\nAnother month goes down, and the bull market sentiment is all around. Reddit has already switched into noobs and memes. I'm glad to see stacker.news still has great content. It truly shows how the zaps upvoting scheme works nicely.\n\nWith the heavy green candles, I see people fantasizing and speculating again about how far can Bitcoin eventually go. Some people fully believe it will eat everything and we will see full-blown hyperbitcoinization and the death of fiat. Others believe Bitcoin will remain a marginal asset, left only to the minority freedom lovers and those who decide to escape the claws of the modern state. And, regardless on what the pictured end scenario is, people also tend to disagree on the timelines. Some tell me we will reach the end of the line in a couple of decades, others think that not even our grandchildren will see the end game playing out.\n\nI don't know what will happen. Life is so uncertain, the world is so unpredictable, and it is such a huge topic that's on the table. Nevertheless, the other day I found myself exploring an interesting line of thinking with a friend, and I decided to expand it here.\n\nOut of the different Nostradamus camps, I tend to be on the optimistic, bitcoin-will-eat-everything one. One point that the pessimistic maxis will wield against me often is how damned stupid, ignorant and coward most of the population is. Basically implying they will never have the guts nor the brains to adopt Bitcoin. I tend to agree with that. But I don't think that's an obstacle. Let me explain to you why.\n\nPicture the entire population living under the fiat system. You have the money printers and cantillionaries, plugged into everyone's veins, sucking their economic life out of them. There is no hope: they are almighty, for they control the ledger, and so no adversary can develop significant economic capital. If most people, all of sudden, decided to jump into Bitcoin, and just unplugged their fiat needles out of their forearms, the cantillionaire house of cards woudl crumble just like that. But we just pointed out that the majority is not up for it. They are busy thinking about getting high on any drug, about how can they grow their dick three inches or about whether, like, Melanie had the right to, like, just start using the same nail polish as them, just like that, without even asking for permission.\n\nBut, not everyone is like that. Some part of the population is and will keep adopting Bitcoin. A minority. You probably know a few. You might be one yourself.\n\nNow these guys have unplugged the fiat needle out of their forearms. They save, they stack, and they see their networth going up. They have a route outside of the cantillionaire maze, and they can do something they couldn't before: they can accumulate capital. \n\nLet's draw the starting population map again and include these guys: you have the guys running the money printers. You have the general population being economically drained, unable to grow themselves economically into any significant position. And for the novelty, you have a bunch of Bitcoin-loving wackos that can accumulate capital without limits.\n\nThe general population isn't playing any role here besides being sucked dry. For as long as they don't adopt Bitcoin, they have no resources to significantly escape the economical control of their masters. So you are left with the printers and the Bitcoiners being the only entities that can build out capital. And here's where I believe that the general population doesn't need to adopt Bitcoin: because whatever small amount of Bitcoiners you have, they have the ability to economically grow and create an economy that will eventually be able to suck general population towards it.\n\nLet's use this series godfather as an example: mister Saylor. He stacks regularly. His networth keeps growing. As Bitcoin reaches higher highs, he accumulates more power. Let's wank our minds and plot a $1M/BTC scenario: in 2020 Michael tweeted he holds 17K BTC personally. Assuming the (unlikely) option that he has changed his position, that means that on our day dreaming scenario his networth due to his Bitcoin stack jumps to 17 billion USD. \n\nIs he in a position to fight the almighty US Government? No way. A small central-american country? Perhaps. But most importantly, Michael has economic capital to hire thousands of average Joes. Do they need to adopt Bitcoin? Not really. For as long as Michael can pay for their beers, their jes extenders and their nail polish, they will work for him. \n\nHow many Saylor's does it take to accumulate enough gun-powder to hire a significant amount of the population and middle finger the cantillionaire class? I'll leave you thinking about it.\n\nAs always, thanks for reading and I'll see you next month.\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n- Episode 16: [https://stacker.news/items/288719](https://stacker.news/items/288719)\n- Episode 17: [https://stacker.news/items/322189](https://stacker.news/items/322189)\n- Episode 18: [https://stacker.news/items/363765](https://stacker.news/items/363765)\n- Episode 19: [https://stacker.news/items/394704](https://stacker.news/items/394704)\n \N 5455 \N 8091 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0036315325231 0 \N \N f 0 \N 0 122018191 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 189958 2024-06-26 14:17:09.705 2025-03-29 22:39:46.787 I'm at a beach bar in El Salvador rn, here are my 'notes from the underground' Summarising as the gf keeps telling me to take my head out my phone😝. More to follow in a future post 🤙🏼\n\n--- ---\n\nUsage as cash is not as high as the Zonte/Strike gang would have you believe, but consciousness is increasing, especially around the surf zone. \n\nUsage as savings tech is certainly growing, albeit from a zero base, and education continues, although sporadically. \n\nVast majority of transactions are gueros visiting (and overpaying at) 'Bitcoin Disney land', but educated / internationally minded locals seem to get it and although early, it's seen as something of a 'paso a paso' sorta thing. \n\nIt doesn't look like anything directional will change any time soon at least (Bukele just won another term, he's v popular, even tho many calls him a 'bastard' - lovingly. His track record of reducing crime is a MASSIVE positive theme on the ground, even though everyone agrees it's been VERY heavy handed).\n\n*Some* (DEFINITELY not all, far from it, more like a few) businesses around Zonte accept it, and about 3-5% of businesses in Zonte's state, La Libertad, accept it, but failed transactions are reasonably common (Lightning channel management is still nascent and iffy). \n\nThe national big supermarket accepts it, but the cashier told me it's only about 2% of local purchases, and according to her, as high as 10% of purchases made by estranjeros (even tho she seemed to think it was kinda gimmicky). Those stats seemed high to me - the beach club I went to yesterday a few miles from Zonte said they couldn't remember more than 5 transactions last year and said 'no-one really uses it'. \n\nSo far everyone who HAS accepted it has been using IbexPay (and possibly instantly converting to dollars, which is the common currency here, but not certain about if/whether they're holding BTC at all). \n\nCritically , since it's deemed to be MONEY here, people seem to like it as a way to get cash from friends and family in places like the USA, as it's 0 tax and 0 commission too, so long as you're using the national Bitcoin app (Chivo). It's seen by those who know anything about it as the most efficient way to perform tax/commission free remittances. \n\nTLDR, 'store of value' consciousness is early but growing in recognition, with small, sporadic, but active education efforts ( mainly localised to one 'county', La Libertad), but still less than I had hoped. Remittances seems to be a strong use case, so long as the gov (tax) and wallet providers (commission) don't try to stick their fingers in the pie, like the twonks in the UK gov do 🖕🏻. \n\nWas somewhat disappointed at the start, maybe the whole thing is a little overpromoted. The smartest local I spoke to said the main value of the whole 'Bitcoin project' is that it 'got the attention of the world to our little country'.\n\nMedium of exchange is still a *long* way off, despite the over-promotion by worshippers of Jack Mallers. It seems we have a mountain to climb yet, and we're still barely in the foothills\n\n🫶🏻🤙🏼 Peace, love, and hail Satoshi 🤗😎 \N 633 \N 189958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9268264818931 0 \N \N f 0 \N 0 222203686 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 177276 2024-05-29 17:25:27.499 2025-03-29 22:39:46.788 Why I'm Bullish 2: SeedSigner There are many aspects of Bitcoin that are censorship resistant but one that really hit me hard at the time it occurred to me was the [SeedSigner](https://seedsigner.com) project. At the time I had not seen any open source hardware wallets. The SeedSigner is composed of off the shelf parts that are not at all specific to bitcoin projects. The components are common and used by many electronics hobbyists. You can 3d print a case or buy one from several sources. It reminded me of the home made gun movement. While states can make laws to prevent people from buying firearms from vendors it is much harder for a state to stop someone from using a CNC machine to mill out firearm parts. Are they going to ban CNC machines? Aluminum blocks?\n\nIn order to stop people from building SeedSigners a state would need to ban off the shelf electronic parts. It just hit me then that banning stuff like this is hopeless. Today I realize many believe that you don't even need hardware wallets. That may or may not be true but I would argue that the utility of an air-gapped bitcoin signing device is clear.\n\nProjects like SeedSigner are very hopeful and make me bullish for the future.\n\nLike this post? Checkout the [first one in the series](https://stacker.news/items/383549) \N 8729 \N 177276 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.9051180080906 0 \N \N f 0 \N 0 104600614 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416900 2025-02-25 22:58:17.393 2025-03-29 22:39:46.785 I want to pay my employees in btc Hi,\nI want to pay employees in btc.. im thinking through the logistics.. One thing i thought of, if i pay my employee $500 worth of btc, i simply issue them a paystub reflecting the $500 was paid to them, and that will flow through to my payroll software generating accurate w2 for IRS reporting. but i pay them the btc out of band of my payroll software and manually enter into quickbooks ( not the end of the world )...but i think there isnt any reason my employee receiving the btc would have a papertrail with the IRS for receiving the btc...which is nice. just the papertrail reflecting taxable wages earned ( unless like a wire level investigation was done to determine my employee received $500 in btc and didnt report selling it or owning it on their tax return).\n\nAnyone ever done this with a US company and wanna gimme tips or resources? or is currently doing it? is this just not a good idea for a US business operating in the compliant economy? much appreciated 🤙 \N 10690 \N 416900 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6268888036296 0 \N \N f 0 \N 0 109690400 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 95821 2023-12-07 12:15:01.531 2025-03-29 22:39:46.786 Altcoin Redux In a way, the ordinals scam is an excellent sign. Altcoins have long been associated with Bitcoin through the moniker of "crypto" and have used Bitcoin's good name to scam people through pump and dumps.\n\nBut as we've seen, this narrative is no longer what it used to be. There are enough people that have recognized the pump and dump nature of altcoins as well as Bitcoin's continued rise that there's a distinction made in the peoples' minds between Bitcoin and altcoins. One is sound money, the other is fiat 2.0. The scam of altcoins, in other words, is starting to fade and the returns aren't like they used to be.\n\nThat's why ordinals and BRC-20 are becoming more popular. There's little chance of escaping the "shitcoin" moniker by releasing a token on Ethereum or Solana now. The gulf between Bitcoin and altcoins is too wide and crossing that chasm, to scam newbies has become that much harder. But by releasing a token on Bitcoin, now there's a lot more room for confusion. They can claim to be supporting Bitcoin through fees while running the same scam. It's changing names and disguises so you don't get caught. This is the snake oil salesman leaving one town to get a bunch of suckers in the next town.\n\nBut this is where we need to be even more diligent. The people that are scamming are picking up the verbiage of the people that know what they're talking about. They're going to scam people by looking and sounding like the real thing. They can talk about sound money, self-sovereignty and property rights and even sound pretty convincing doing it. Except, of course, that token they want you to buy.\n\nThe time to separate the Bitcoiners from the Spamcoiners is now. They are running pump and dumps, just doing it with a new rationale like a new disguise and name. And they'll fool a bunch of people. Indeed, the people they seem to attract are the very people that pumped altcoins in the past. Altcoin-land is a scorched earth they've left behind and they want to run the same policies on "top of" Bitcoin.\n\nDon't let them take over. Reject these charlatans and shame them for their chicanery. And if you're someone that's throwing up their hands and saying there's nothing to be done, you're wrong. You can do something by calling these things out for what they are. They're scams and the faster they fail, the better it will be for Bitcoin. And as we saw with altcoins in the past, ignoring them doesn't make them go away. Calling them out and relentlessly exposing their grift is what's needed.\n \N 11263 \N 95821 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.7583816824372 0 \N \N f 0 \N 0 557461 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 204330 2024-07-23 10:13:22.581 2025-03-29 22:39:46.786 New website for tracking robosats stats https://supertestnet.github.io/robostats/\n\nI made this because a few months before switching to the federated model whoever was running https://learn.robosats.com/stats/ stopped updating it, and I miss having these stats handy, especially when I'm arguing with monero people about whether there are any lightning-only darknet markets with significant usage. Robosats is probably the best example of that. \N 18274 \N 204330 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.8453620696696 0 \N \N f 0 \N 0 23300539 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 48256 2023-08-10 11:36:08.312 2025-03-29 22:39:46.787 Alekos Filini AMA Hey everyone,\n\nI'm Alekos Filini from TwentyTwo Devices, I'll be doing an AMA for the next hour.\n\nIf you don't know me, I'm a software engineer who's been working on Bitcoin for the past few years: I've been at a few companies in the past, including Blockstream, then moved on to create a wallet library called BDK which I maintained for a few years.\n\nNow I'm launching a new company called TwentyTwo to build hardware devices for bitcoiners: our first product is called Portal, it's a new kind of hardware wallet optimized for use with smartphones, and is now available for pre-orders.\n\nHappy to answer any question you may have! \N 1712 \N 48256 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.82718441538796 0 \N \N f 0 \N 0 63727166 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 214469 2024-08-13 19:11:34.784 2025-03-29 22:39:46.787 eXaMinR: free and open source monero tracing tool https://youtu.be/OwkiSeoaaF8\n\nI recently explored the tracability of monero and found a monero tracing tool made by Ciphertrace. It's a really neat visualizer of the monero blockchain with a way to trace transactions through it using a set of techniques broadly known as "decoy elimination." And I wanted to make something similar. So I did! Please help me improve it and make it better by contributing to my github.\n\nhttps://github.com/supertestnet/examiner\n\n[\\[Similar tool from ciphertrace\\]](https://news.bitcoin.com/ciphertrace-enhanced-monero-tracing-capabilities-governments/) \N 21825 \N 214469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.10506008498871 0 \N \N f 0 \N 0 12517626 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 225370 2024-09-01 20:04:22.499 2025-03-29 22:39:46.787 Can someone explain the recently-found LN security flaw in simple terms? Hi guys, I was reading some stuff about the LN security flaw that everyone is talking about (https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2023-October/022032.html) but found it quite technical and difficult to understand.\n\nWhile I take some time to read all relevant documentation (will list it below), is there anyone patient enough to explain in very simple terms what happened, and what the security issue is about? I couldn't find good articles around, if you have interesting material please post it below!\n\n\nAdditional resources:\nhttps://github.com/ariard/mempool-research/blob/2023-10-replacement-paper/replacement-cycling.pdf\nhttps://arxiv.org/pdf/2006.08513.pdf\nhttps://github.com/ariard/bitcoin/commits/2023-test-mempool\nhttps://github.com/lightning/bolts/pull/772 \N 16653 \N 225370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.19331333742662 0 \N \N f 0 \N 0 225722744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 316507 2024-12-02 21:44:14.395 2025-03-29 22:39:46.788 Bitcoin Books ### Why Am I Making This Post?\n\nI am posting this list here for three reasons:\n\n- These books will obviously be of interest to everyone on Stacker News, and I would like everyone’s feedback and opinions.\n\n- Secondly, I hope to incorporate some of the comments and/or criticisms of these books into the guide section of my bitcoin beginners newsletter directory. The learning resources page I have pinned to the territory is still not editable, so I will probably remove it soon and instead incorporate the best resources in the newsletter each week. If you have strong feelings about any of the books on this list, please reply. Also, please mention other books that I have not included.\n\n- Finally, I think it is important that we produce really good reviews of bitcoin books here on Stacker News. This territory has no shortage of book reviews. The reviews I imagine would do justice to the time and effort put in by these authors, and could also serve as a wonderful way to orange pill normies and promote Stacker News. I gave this a try with my review of the Genesis Book, but I’m frankly disappointed with my efforts. I really enjoyed the book, but looking back, I did not give my post the time and effort the book deserved. I intend to try again. When I’m satisfied with a review, I will promote it on nostr and maybe even substack. I will also include it in the Learning Resources section of the bitcoin beginners newsletter.\n\n\n### [The Bitcoin Standard](https://saifedean.com/tbs)\nby Saifedean Ammous\nThis book is considered by many to be the best explanation of bitcoin ever published. \n### [Broken Money](https://www.lynalden.com/broken-money/) \nby Lyn Alden. \nThis book will teach you about bitcoin while also teaching you everything you will ever need to know about money. Lyn Alden has given us a masterpiece. Read what [The X Project](https://thexproject.substack.com/p/broken-money-why-our-financial-system-96d) has to say about it here. \n### [Bitcoin Is Venice](https://www.uncerto.com/book)\nby Allen Farrington and Sacha Meyers\n\n"Entertaining and erudite, this is a manifesto for a more ethical monetary and financial system, for capitalism in its purest form and for 'number go up' technology. This book bridges the gap between the concept of an open-source sound money and the practical reality of an ethical and workable financial system."\n--Harris Irfan, author of Heaven’s Bankers\n### [The Bullish Case For Bitcoin](https://vijayboyapati.medium.com/the-bullish-case-for-bitcoin-6ecc8bdecc1) \nby Vijay Boyapati.\nThis is considered the best non technical introduction to bitcoin. It’s probably most useful for older people and those who have trouble using their computers and phones.\n### [Mastering Bitcoin](https://www.oreilly.com/library/view/mastering-bitcoin/9781491902639/)\nby Andreas M. Antonopolous\nThe first few chapters of this book are an excellent, non technical introduction to bitcoin. The rest of the book gets technical, but if you feel up to it, challenge yourself. In my opinion Andreas Antonopolous is a brilliant advocate for bitcoin and a talented teacher. He can explain bitcoin in an understandable way for the beginner, but can also explain the technical intricacies.\n### [The Genesis Book](https://thegenesisbook.com/) \nby Aaron Van Wirdum\n\nThis is the book to read if you want to learn about the history of cryptography, the cypherpunk movement, and the people who made bitcoin possible. \n\nThis is what Tuur Demeester said about the book:\n“I long suspected that van Wirdum was Bitcoin’s best historian, and this page-turner proves it. It’s a tour de force.\n\nThe Genesis Book is a highly readable and essential history, revealing the many causal connections between Viennese Classical Liberalism, the Anglo-Saxon Cypherpunk movement, and the advent of Bitcoin.\n\nWhereas other books on the industry have tended to focus on headline-making entrepreneurs, van Wirdum has the technical chops to dig under the surface and correctly identify the brilliant figures who built the foundations on top of which the Bitcoin edifice was eventually engineered.\n\nOver the course of 16 dense chapters, The Genesis Book combines the kind of in-depth research and philosophical connections that one could only expect from an industry veteran (van Wirdum was one of the first writers to ever gain employment in the Bitcoin industry), with the engaging prose you’d look for in a respected periodical.\n\nOne cannot understand Bitcoin without studying its extraordinary origins, and I’m thrilled this book exists to bring that knowledge to a wide audience.”\n### [Resistance Money](https://www.resistance.money/) \nby Andrew M Bailey, Bradley Rettler, and Craig Warmke\nThe subtitle is “A Philosophical Case For Bitcoin.”\nHere’s what Alex Gladstein said about the book:\n\n“Resistance Money is a piece of world-class scholarship that illuminates bitcoin as a way of resisting oppression. The book is accessible to all, including those with no previous knowledge of bitcoin. It will leave them packed with insights about the rise of Satoshi's new monetary technology and where it might take us tomorrow.”\n### [Cryptosovereignty](https://www.amazon.com/Cryptosovereignty-Encrypted-Political-Philosophy-Bitcoin/dp/B0CFCW6JJR)\nThe Encrypted Political Philosophy Of Bitcoin\nby Erik Cason\nHere’s what Gigi had to say:\n\nI consider Cason’s book one of the most important works since the publication of the Cypherpunk Manifesto . Everyone who takes Bitcoin seriously should read it; those who don’t should read it twice.\n— Der Gigi, Author of 21 Lessons\n### [21 Lessons](https://21lessons.com/) \nby Gigi.\nThrough Gigi’s web page you can either buy the book from amazon or read it for free online and send Gigi value for value sats. Gigi turned a series of articles he wrote into a book. He has his own writing style. You will learn a lot from the book. \n### [Digital Gold](https://www.goodreads.com/book/show/23546676-digital-gold) \nby Nathaniel Popper\nThis book is a history of bitcoin, rather than a book written to teach you about bitcoin. Still, it is well written and very entertaining, and you will learn a lot incidentally. \n### [The Price Of Tomorrow](https://thepriceoftomorrow.com/)\nby Jeff Booth\n\n“As someone who understands the exponential rate that technology is advancing, Jeff Booth has a unique ability to connect the dots to something bigger in this must read book. Few books offer a more succinct, provocative, and enlightening view of the world as it is today, and what it could be tomorrow. Your world view will transform instantly.” \nSalim Ismail\n### [Layered Money](https://www.layeredmoney.com/) \nNik Bhatia\nFrom Goodreads:\n\n“In this fascinating deep dive into the evolution of monetary systems around the globe, Nik Bhatia takes us into the origins of how money has evolved to function in a layered manner.”\n\n \N 11590 \N 316507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3775845508 0 \N \N f 0 \N 0 174721212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 384239 2025-01-29 02:36:54.951 2025-03-29 22:39:46.788 Superstore: a simple bitcoin webstore | start selling stuff in seconds \N https://www.youtube.com/watch?v=cAH0384V1Bo 825 \N 384239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.259701855749 0 \N \N f 0 \N 0 223154434 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52199 2023-08-19 12:12:34.796 2025-03-29 22:39:46.785 ANNOUNCING TOP BUILDER! ![12-18-23-announcing-top-builderV2 copy.png](https://m.stacker.news/8566)\nGood morning! We have exciting news this morning: registration is now open for TopBuilder. \n\nTopBuilder is an intense competition designed to discover the next wave of innovators in the Bitcoin ecosystem. With many teams competing over two months and three challenging rounds, this event is the pinnacle of Bitcoin-building contests. \n\nThis 8-week educational program is an exciting blend of builder sessions, workshops, announcements, and speaker panels, all designed to foster learning and growth within our community. Presented by Wolf & PlebLab\n\nJOIN US & apply before January 13th to participate in this unique Bitcoin competition.\n\nAnd win up to $15K in Bitcoin. \n\nLearn More: https://www.topbuilder.dev/ \N 11153 \N 52199 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.00361662349695 0 \N \N f 0 \N 0 174828751 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52365 2023-08-19 19:46:33.347 2025-03-29 22:39:46.786 AcceptLN.com - Every email address now accepts Bitcoin Lightning LN's major limitation is we can only send to people who already have a wallet.. \n\nAcceptLN.com lets anyone receive LN first with just their email address. They get a welcome email with helpful wallet setup info and a claim link. No accounts, passwords, or KYC.\n\nFree service, unless you leave your sats with us past 60 days, we are not your bank.\n\nLooking for feedback on AcceptLN.com, feedback on Setup Your Wallet page, & looking for white-hats to pay through our VRP (acceptln.com/security.txt). https://acceptln.com 720 \N 52365 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.42628532163086 0 \N \N f 0 \N 0 59580686 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 140192 2024-03-10 01:56:41.208 2025-03-29 22:39:46.786 F*ck me the "global south" needs bitcoin I've had a beer and I'm trying to relax... But I need to rant. \n\nI always smash into the same issues wherever I travel to the "global south" countries. \n\n\nFor background, I've been a journalist, researcher and now film maker in developing countries for 6+ years.\n\nI've lived in Mexico, Tunisia, the Ivory Coast, and Trinidad and Tobago.\n\nI've done in-country research projects or documentaries in Senegal and West Africa, El Salvador, Cuba and Cape Verde. \n\nThey ALWAYS have very similar, unfair and yet easily fixed basic financial problems. It's borderline evil that we have created financial systems that make it very hard for the worse off to improve their lot.\n\nThe worst part? These systems are flourishing.\n\nThese are generalizations of course—so take this with a handful of salt—but my GOD it's so frustrating. \n\nProblems:\n- Banks charge extortionate amounts to withdraw cash. (In Peru there's been a $3 fee at the 8 ATMs I've tried so far.)\n- ATMs impose limits so you can only withdraw up to $60 meaning you have to withdraw several times and pay more fees. \n- There is never enough change at tills so sales get rejected.\n- People of course prefer harder currencies dollars but you're charged through the nose if you pay in dollars.\n- Plus, if you accept more currencies (Sal island on Cape Verde accepts 4 currencies) then you have even worse problems at the till with change. \n- Visa and mastercard charge upwards of 5% . So why bother with card?\n- It's a day to day, hand to mouth existence - so people don't even *CONSIDER* saving. Saving is literally a foreign concept.\n- It's near impossible to open a bank account because of strict or absurd KYC requirements (how can i prove my DoB if i don't have a birth certificate?)\n- Regardedly high levels of inflation that everyone just deals with. In Cuba, inflation is a running joke. "Why didn't you do your homework?" \n\nInflation. \n\n"Why are you late?"\n \ninflation. \n\n- ATM penetration is low. Right now I'm in a very popular tourist town and the nearest ATM is 20 miles away.\n- It's very hard or expensive to send money to the nearest city, let alone to relatives abroad. Don't get me started on predatory companies like Western Union and MoneyGram. \n\n\nYes, there are growing numbers of mobile-centric financial solutions like mobile money (think M-Pesa, Yape, Wave) but they're working within the splintered fiat system. \n \n\nCome on... There has to be a better way. There needs to be a new system that's outside of incumbents and their insidious incentives. \n\nI have hope that Bitcoin will fix a great deal of these issues, but F*CK me it's so depressing and frustrating to see it time and again. It breaks my heart every time I hear a local complain about the banks, the fees, the ATM queues, the Western Union issue, or the fact that I can't buy a bottle of water because the till doesn't have change. \n\nYes, I know, Bitcoin is hope. Sorry.\n \nBut arrggh, give me strength! \N 14452 \N 140192 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.3922968934353 0 \N \N f 0 \N 0 232566515 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 190975 2024-06-28 12:27:32.293 2025-03-29 22:39:46.787 Bitcoin Case Study - Buying an Ebike with Ecash \N https://blog.mutinywallet.com/bitcoin-case-study-buying-an-ebike-with-ecash/ 21334 \N 190975 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.95434466046486 0 \N \N f 0 \N 0 127695744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3987 2022-11-12 19:57:11.2 2025-03-29 22:39:46.787 "We don't need scaling because almost no one wants self-custody" @instagibbs shared this and I'm interested in what it implies because it's easy to agree with.\n\nhttps://x.com/theinstagibbs/status/1833122840108728451\n\nI suspect the operative words are "almost no one" which implies a minority we'd quantify as near zero. We wouldn't say "we don't need privacy because almost no one wants privacy," despite privacy interested bitcoiners being a minority. Presumably, privacy interested bitcoiners are a larger minority than "almost no one" and by some consensus-significant margin. \n\n"Almost no one" also implies a prediction. Not only does almost no one want self-custody now, but almost no one will want self-custody when:\n\n1. they'll always be able to have it\n2. they'll be able to have it more cheaply \n3. they'll be able to have it more easily\n4. more people they know will have it\n\nAnyway, I found the tweet interesting. Some questions I can't answer:\n\n1. Do you agree with the tweet?\n2. At what minority size are consensus change requests dismissible?\n - if not a known quantity, how about a relative one like "any size smaller then the privacy minority"\n3. Can we deem something needless by the size the group that wants them in advance, before such wants are easy and forever possible to meet? \N 19417 \N 3987 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5575027275364 0 \N \N f 0 \N 0 185799918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 342859 2024-12-25 17:01:00.149 2025-03-29 22:39:46.788 Announcing LNsploit - A LN exploit tool Hello! Over the past month, a few friends and I have built a terminal UI-based tool that has the intention of exploiting and testing the lightning network. This project is called [LNsploit](https://www.nakamoto.codes/BitcoinDevShop/LNsploit). We have built this off of LDK which allows for more advanced features that typical node implementations do not offer out of the box.\n\nThe plan was to demo this at TAB Conf on Thursday with a few cool features built in. One that I am excited to share is that we have reproduced and added the ability to broadcast a large script transaction similar to the one that had affected almost all LND nodes earlier this week. This is all done with a single key press while connected to a bitcoind node backed with funds. You can test this today by hooking up to your local network like with Polar on regtest. I suspect this could also be useful in allowing people to explore what had happened and how this had affected those LND nodes. All props to Ben Carman for building that portion in a [few dozen lines of code](https://www.nakamoto.codes/BitcoinDevShop/LNsploit/src/commit/4019f00952ecea5a52956528aef17bea13318412/src/models/bitcoind.rs#L255-L315).\n\nWhile most of the screens and general node logic are still TBD, a few things do work like spinning up many LDK nodes instantly and connecting to channel peers. I had hoped to have more done before the workshop at TAB conf but hey there are still a few days left to polish this up - most of the logic is there, just untested while we are still hooking in screens. The workshop is at 11:30 am on Thursday in case you were interested in joining.\n\nAnyways, I hope to have a lot of useful tools in this that may assist testers and developers. Things like channel jamming, balance probing, broadcasting old revocation transactions, etc. We need to be operating in an adversarial mindset if we're going to fix anything that might need to be fixed and one of the only ways to do that is with efforts like these. Please use this ethically, responsibly, and only on nodes that you have permission to attack.\n\nHuge shout outs to [Paul Miller](https://twitter.com/futurepaul/), [w3irdrobot](https://twitter.com/w3irdrobot), and [ben carman](https://twitter.com/benthecarman) for helping with this. Let me know what you think and any questions you may have. \N 17838 \N 342859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5954139594957 0 \N \N f 0 \N 0 87705318 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 288851 2024-11-07 00:08:29.292 2025-03-29 22:39:46.788 Bitcoin fees, a worrying trend ![screenshot-ycharts.com-2023.12.28-11_01_28.png](https://m.stacker.news/9767)\n\nSeems to be the elephant in a the room nobody wants to talk about...\n\nThe trend is clear, and no signs of improvement in the past months. \n\nWith more than $20 fees for on-chain transactions, Bitcoin is already not usable for money transfers below $200-$300 (who would pay 10% on every transaction?).\n\nWhich means some users — and merchants — will stop using Bitcoin. \n\nMullvad VPN for instance, one of the few (good) VPN providers accepting BTC, has a unique plan of $5/month. They don't accept Lightning, which means users who don't want to pay by bank card will simply run away (or burn 5 months of subscription just for fees). \n\nLightning is the way but still, isn't this a tiny bit worrying?\n \N 1769 \N 288851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1817624741642 0 \N \N f 0 \N 0 56395389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 101270 2023-12-20 18:07:22.786 2025-03-29 22:39:46.786 I closed all of my lightning channels and I'm shutting down my node. After listening to \n\nCD124: MUTINY WALLET WITH TONY, BEN, AND PAUL\nsupport dispatch: https://citadeldispatch.com/donate ⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠ EPISODE: 124 BLOCK: 838478 PRICE: 1457 sats per dollar TOPICS: fedimint, self custody, lightning address, hybrid approach, nostr, social integration, subscriptions, the power of open protocols, bolt12, open source funding project website: https://mutinywallet.com website:…\n\n09 April 2024 | 02:11:54\n\nCD123: PHOENIX WALLET AND SERVER WITH CEO PIERRE\nsupport dispatch: https://citadeldispatch.com/donate ⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠ EPISODE: 123 BLOCK: 837415 PRICE: 1530 sats per dollar TOPICS: self custody lightning, tradeoffs, fee burden education, full stack integration, bolt12, future plans project website: https://phoenix.acinq.co/ website: ⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠https://citadeldispatch.com nostr live…\n\n02 April 2024 | 01:20:46\n\nI decided to close down my lightning node. It's still running now with the hopes that some 1,000,000 sats channel will finally settle but other than that fuck, shit, piss I am tired of the feeling that I am so stupid that I will loose money worse than than the Federal Reserve will devalue it.\n\nSo anyway...\n\nWhy not just run Mutiny Wallet and Phoenix and pay them to to develop? It's better than loosing sats and getting rugged. Sure, I'm a dumbass but at least I am playing the game.\n\nRunning your own node for lightning is not like running your own Bitcoin Core node. You fuck up your Bitcoin Full node and no harm and no problem because you have your seed....\n\nYou fuck up your lightning and, well, you are me but more salty.\n\n \N 20275 \N 101270 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.81115262822205 0 \N \N f 0 \N 0 180341084 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5507 2022-12-17 19:17:57.367 2025-03-29 22:39:46.786 I'm Simon, creator of Mempool.Space. AMA. Hi everyone! I am @softsimon_, creator and co-founder of the @Mempool open source project at Mempool.Space, an increasingly used and loved tool for Bitcoiners around the world and with self hosted installations on thousands of Raspberry Pi home node devices using one-click installation software such as Umbrel.\n\nIn just 3 years it has grown from a small side project to an important infrastructure in the Bitcoin ecosystem with integrations on platforms like Umbrel, Raspiblitz and embassyOS. And with Wallet integrators like CashApp, Phoenix, Muun and Zeus.\n\nWe self host our infrastructure on multiple locations around the world and support multiple networks like Testnet, Signet and a separate website for the Liquid sidechain at Liquid.Network.\n\nAMA! \N 826 \N 5507 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.645961756366 0 \N \N f 0 \N 0 31878382 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 8773 2023-02-13 00:24:43.558 2025-03-29 22:39:46.787 Hal Finney Was Not Satoshi Nakamoto \N https://blog.lopp.net/hal-finney-was-not-satoshi-nakamoto/ 17148 \N 8773 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.6721730338824 0 \N \N f 0 \N 0 191197345 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 236817 2024-09-14 16:21:17.677 2025-03-29 22:39:46.787 Mutiny Wallet: Self-hosting fixes this \N https://blog.mutinywallet.com/self-hosting-mutiny/ 7395 \N 236817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3602271364829 0 \N \N f 0 \N 0 14264830 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 200337 2024-07-15 13:14:11.325 2025-03-29 22:39:46.788 A Basic Guide To Making The Switch To Graphene OS \n![pix](https://upload.wikimedia.org/wikipedia/commons/c/c2/Google_Pixel_7_Pro_back_%28Hazel%29.svg)\n\n### What is Graphene? \n\nGraphene is an operating system (OS) based on the Android Open Source Project (AOSP). Graphene improves the security of AOSP code by improving sandboxing and exploit mitigations, while providing more extensive permission options than stock open source android. It is probably a good idea to do your homework before switching to Graphene, since there is a lot to learn, and the user experience is not as smooth and intuitive as you would find on a typical android phone. \n\nFor me, the security and privacy was reason enough to switch, but it is also a way to help free me from big tech. \n\n### Getting Ready\n\nI have been gradually de-googling my life for a few years now, so I was somewhat prepared to switch to graphene. I replaced gmail, google drive, google calendar, and google contacts with protonmail equivalents. I replaced the google search engine with duck duck go, and replaced google chrome with a bunch of different browsers. I have set for myself the ambitous goal of never using the Google Play Store again. This will be difficult, and I may have to abandon this notion. We'll see.\n\nYou may not have started the process of weaning yourself off of Google and or Apple. If that's the case, your transition may be harder.\n\nYou may also intend to use google apps and use the Google Play Store. Graphene has a sandboxed mirror of the Google Play Store in its app repository. I will explain what this means and the best way to use it later.\n\n### Choosing A Phone\n\nI call this section "Choosing A Phone", but there is really not much choice. You need to get yourself an unlocked Google Pixel. If you're buying a new device, I advise that you buy it directly from Google. I made the mistake of getting an "unlocked" phone from a retailer. What they meant was "carrier unlocked", which means you can choose any wireless service. I struggled for a while with this type phone before realizing my phone was not really unlocked. The phone needs the ability to have its bootloader unlocked. \nWhy does Graphene only support Google Pixel phones? Well, one reason is that the factory phone permits its bootloader to be unlocked. Most other major manufacturers have locked down their devices. Also, the Pixel has hardware-backed keystores, verified boot, attestation, and input-output memory management units (IOMMUs). What this means, in plain english, is that the phone is capable of sandboxing components like the GPU and radios.\n\n### Preparing your Phone\n\nI chose a Pixel 7. Since it's new, I figured that it would get updates for many years. I also like the sturdy build quality.\nFrom here on, you should refer to this excellent [guide]( https://grapheneos.org/install/web), which will help you unlock your bootloader and flash the Graphene OS. Just keep these few points in mind:\n- When you follow the directions to enable developer options, be sure to enable usb debugging AND OEM unlocking.\n- After struggling for a very long time attempting to unlock my bootloader on both a Ubuntu laptop and a Windows 11 laptop, I easily was able to use the web installer to unlock on a Macbook. I link [here](https://stacker.news/items/194904) to a discussion thread I started on *Stacker News* which documents my struggles and the help I received. @03365d6a53 was particularly generous with his time and suggestions. If using Ubuntu, avoid the Flatpak installs of browsers, because the sandboxing will likely prevent a USB connection. \nAlso, if attempting to unlock the bootloader using Ubuntu, you may need to install `sudo apt install adb` in addition to following the other instructions you find on the page. \n- Overall, I found the Ubuntu installation to be simpler than Windows 11, but many people claim to have had more success using Windows than any linux distro.\n\nOnce you have unlocked the bootloader, the rest of the process is a breeze. The windows installer makes it easy. You can also choose the CLI install option. Instructions are available on the page I linked. \n\n### Graphene OS First Impressions\n\nComing from a Samsung Galaxy, I immediately noticed the spare, functional look of the home screen. I appreciated the absence of any bloatware. In my case, I do not have wireless service set up yet. I am still considering my options. \nSince I’m heavily immersed in the ProtonMail ecosystem right now, the first thing I did after creating my pin and setting up wifi was grab the ProtonMail PWA by using the default Vanadium browser. Next, I installed the Fdroid app. From there, I downloaded the Proton VPN.\nNext I downloaded the Stacker News PWA, of course. \nGraphene has its own apps. These are the apps in the native repository:\n\n- **Auditor**\n\n\tAccording to its description, the Auditor App “uses hardware-based security features to validate the identity of a device along with authenticity and integrity of the operating system. It will verify that the device is running the stock operating system with the bootloader locked and that no tampering with the operating system has occurred." This can be done because Pixel phones allow this “attestation”, which I talked about earlier.\n- **Camera**\n\tThe Graphene Camera App is designed for privacy and security. It is called “Secure Camera” in the Google Play Store. It has security features like a dedicated QR scanning mode without Network and Media/Storage permissions, and the optional stripping of EXIF metadata from photos and videos.\n- **PDF Viewer**\n\tThe PDF Viewer allows the viewing of pdfs in a sandbox that requires no permissions. \t\n- **Vanadium Browser**\n\tThe Vanadium Browser is basically a stripped down chromium browser with added security enhancements.\n- **Mirrored Google Play Services**\n\tThe Google Play Services Mirror App is a sandboxed version of the Play store, which removes permissions. I describe this function in greater detail elsewhere.\n\nI was using Vanadium as my browser, which seemed fine at first. I quickly realized that I had gotten used to Brave’s natural ad blocking, so I hunted around for a browser alternative. I downloaded Mull from Fdroid. That seemed okay. I intend to try Mullvad VPN with its browser, and see how that goes. I will likely go back to Brave eventually. \n\nKeep in mind that there is an alternative to Fdroid if you’re looking to download open source apps. It’s called Obtanium, and this [video](https://www.youtube.com/watch?v=FFz57zNR_M0) explains it.\nAs for me, I’m going the tedious route of downloading apps directly from github. The first app I added in this way was the Phoenix wallet.\n\n### What About Google Apps?\nAs I said earlier, I’m going to try to avoid using Google Apps from this point forward. If you decide that you want to continue to use Google Apps, Graphene allows you to do this in a safe, fully sandboxed way. When android ships in a typical phone, all the Google apps are given special privileged status right from the start. This allows them to bypass the default android sandbox, which prevents apps from interacting with each other without permission. Google Apps are free to interact and collect data. In essence, they are spy apps. \n\nGraphene gives Google apps no special privileges. You can use them on Graphene through the mirror, but those apps are sandboxed. \n\nGraphene also allows the setting up of multiple users on the phone. These users have their own environments, cut off from each other. You could create a profile called something like “Google User” who has normal play store access. This [video](\nhttps://youtu.be/20C0FD7mGDY) gives you all the information you need. \n\n### Help From The Stacker News Community\n\nI received a tremendous amount of help on Stacker News when getting started, so I’m just going to include some of the tips and insights and link to the user, in case you want to show your appreciation:\n 1.@03365d6a53 provided some great ideas for those not wanting to use the device to make cellular phone calls. I learned from him that if you have airplane mode on, Graphene does not ping your IMEI (International Mobile Equipment Identity) and location to nearby cell towers. He recommends putting an anonymous data sim in a VPN dongle, such as the Mudi GL 750 with Blue Merle software. @final provides a more in depth explanation [here](https://stacker.news/items/198353/r/siggy47) @final is also an expert in this area. You would be well advised to ask them for advice. @final may also be posting a guide soon which will provide much more in depth information than the basic stuff I have included here.\n \n2. @03365d6a53 also provided a list of apps that he likes:\n- Simplex Chat\n- Mullvad VPN\n- Amethyst Nostr client (I use this app too, and it’s working great on Graphene)\n- K9 Mail\n- Element\n- Obtanium\n- Aurora (I don’t intend to go this route)\n- BitWarden\n- Organic Maps\n- BTC Maps\n\n3. I was not enjoying the stock keyboard, so @final recommended FlorisBoard, which is available on Fdroid. I like it a lot so far, but one suggeston: Turn off the sound. The loud click each time you press a key will drive you and everyone around you crazy. \n4. @039a43f343 recommended this [link](https://gitlab.com/fdroid/wiki/-/wikis/List-of-F-Droid-repositories), which is a directory of Fdroid repositories.\n\n### Conclusion. \nI am very new to Graphene. I have a lot to learn. Getting my Pixel set up as a daily driver is going to take some work. Still, I am optimistic. I’m not going to rush it. I am keeping my old Galaxy around too, so my transition will be gradual.\nIf you decide to make the change, I hope this short guide is useful.\n\n \N 21116 \N 200337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6774025135814 0 \N \N f 0 \N 0 59080092 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 112289 2024-01-13 19:53:31.762 2025-03-29 22:39:46.788 Here's why there are deep incentives for a Bitcoin fork with the Ordinals people Ordinals/BRC-20/Inscriptions are now VC funded. And they're going to be pressured to keep growing, no matter what. Yet the hype around their stuff will inevitably fade. And whatever profits they had will dry up. So what will they do?\n\nThere are two paths. One is to increase revenue, the other is to reduce costs. The first will be very difficult to do without some new narrative. And they might try that, but it's going to be very difficult on Bitcoin... At least as it currently stands. They could move to another chain, but then, their whole reason for existence, being built on Bitcoin will be no more. Hence the incentive to create new narratives around their stuff and to add "features" to generate interest means some sort of fork.\n\nThe other path is to reduce costs. The most obvious cost is the fees being sent to miners. And to reduce that, you need to increase block size or make the blocks more frequent. Either way, this is incentivizing a fork.\n\nThe point is that once VC funding entered the picture, the path was set. There will be a conflict of visions and a "peaceful coexistence" was never going to be the outcome. \N 11714 \N 112289 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.4003671120962 0 \N \N f 0 \N 0 191929261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402805 2025-02-14 04:47:39.546 2025-03-29 22:39:46.789 Show SN: Preturnio - a full-text search engine for Bitcoin Hi Stacker News!\n\nI'm excited to share my new project Preturnio (https://preturnio.com) - a full-text search engine for Bitcoin. With Preturnio you can search for text inside every OP_RETURN, Coinbase transaction and ordinal transaction since the genesis block (block 0).\n\n![0](https://sfo3.digitaloceanspaces.com/preturnio/public/tweet_1.gif)\n\nBlock explorers can search for transactions, blocks and addresses but searching for arbitrary text is a challenge. Data is stored in the blockchain natively in hexadecimal format and not easily readable by humans. Preturnio solves this with an easy-to-use search interface. Just enter the text you’re looking for and Preturnio will return highlighted results found in any OP_RETURN, Coinbase or Ordinal transaction. See when the data was created, which block it was confirmed in and other relevant details.\n\n![0](https://sfo3.digitaloceanspaces.com/preturnio/public/tweet_3.png)\n\nYou can search for anything: source code, names, quotes, brc-20 tokens – any plain text you can think of, you can find in the blockchain with Preturnio.\n\n![0](https://sfo3.digitaloceanspaces.com/preturnio/public/tweet_4.png)\n\nShare transactions with a direct link or even a preview image. Posting to Twitter will automatically create a Twitter card.\n\n![0](https://sfo3.digitaloceanspaces.com/preturnio/public/tweet_5.webp)\n\nOrdinals are supported! Each inscription can be previewed inline or full screen. We support all transactions encoded with text-supported MIME types.\n\n![0](https://sfo3.digitaloceanspaces.com/preturnio/public/tweet_6.png)\n\nWe categorize inscriptions into two buckets – text and HTML. You can toggle to source code view with a familiar search interface to find the text you’re looking for inside the inscription payload. When you share an inscription, Preturnio will try to include a preview of the inscription whether it’s text or HTML.\n\n![0](https://sfo3.digitaloceanspaces.com/preturnio/public/tweet_8a.webp)\n\nOnce you’ve found your inscription, you can then search inside it with a familiar ‘Find’ experience to look for specific text. Here’s an example of looking through some HTML code of an inscription:\n\n![0](https://sfo3.digitaloceanspaces.com/preturnio/public/tweet_9.png)\n\nSearching *inside* inscriptions is your new ordinal super power 💪. Looking for the receiving address of a specific BRC-20 token? Just search for the receiving address. Here’s an example:\n\n![0](https://sfo3.digitaloceanspaces.com/preturnio/public/tweet_10.png)\n\nWe’re big fans of the Ordinal News Standard - Preturnio detects inscriptions that adhere to the standard and exposes direct links to compatible news explorers to instantly read the news. See an example here: https://www.youtube.com/embed/EdsqYC5vZzE\n\nDon’t trust Preturnio? You shouldn’t - so naturally each search result can be verified with a single click to on one of several public block explorers as well as ordinal explorers for inscriptions. It's also easy to copy the TX ID to verify on your own node.\n\n![0](https://sfo3.digitaloceanspaces.com/preturnio/public/tweet_12.png)\n\nPreturnio has also cross referenced all transactions against a published list of all known English words (more languages coming soon) so you can browse individual words stored somewhere on the blockchain. This is actually a lot of fun! See an example here: https://www.youtube.com/embed/7kVcQ909XMg\n\nCheck out the docs to learn about other search features supported. Feedback is encouraged and appreciated. Thanks for welcoming Preturnio - now go out there and find some cool stuff buried in the Bitcoin blockchain at https://preturnio.com\n\nJonathan.\n\n \N 15115 \N 402805 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.6482505451148 0 \N \N f 189646709 \N 1 1766530 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 356515 2025-01-05 04:51:11.34 2025-03-29 22:39:46.79 SN release: p2p non-custodial zaps, lnbits receiving, sats filter 1. p2p non-custodial zaps\n\t- When you don't have enough sats to zap someone that has a receiving wallet attached, you'll now pay directly to their attached wallet. We use [lnproxy-like](https://lnproxy.org/) mechanism to do this which hides your node pubkey from the zapper (they see SN's node pubkey). \n\t- I described this mechanism in [Atomic Split Lightning Payments, Hold Invoices, and Blinded Paths](https://stacker.news/items/534261)\n\t- Reminder: we have [significant bounties on bugs/vulns for stuff like this](https://github.com/stackernews/stacker.news?tab=readme-ov-file#responsible-disclosure-of-security-or-privacy-vulnerability-awards)\n2. lnbits receiving\n\t- LNBits is our first attached wallet to support both sending and receiving, you can configure it to do one or both now (via @ek)\n3. sats filter\n\t- we've replaced greeter mode with a more generic `sats filter` which allows you to filter out posts based on "investment"\n\t\t- that is, posts are only visible when a post's `sats zapped + post cost + boost >= sats filter`\n\t- you can achieve the same effect as greeter mode by keeping your `sats filter = 0`\n\t- If you didn't previously have greeter mode enabled, we default your `sats filter = 10`\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n(1) is the final difficult stage of our [wallet plans](https://stacker.news/items/523435). We have a few weeks worth of work left before those plans are done (mostly UX stuff). We'll pin a post about the schedule for wallets soon. **No action is needed on your part to keep the sats in your account. When we transition, any sats in your account will be available for withdrawal *forever*.**\n\n#### FAQ\n\n1. What happens to the sats in my SN account when the wallet plans are done?\n\t- Nothing. They will always be yours to withdrawal.\n2. I'm hard of reading. What will happen to my sats?\n - Nothing. They will always be yours to withdrawal.\n3. Seriously, what will happen to my sats?\n - Nothing. They will always be yours to withdrawal.\n\nWe'll have more complete FAQ in the pinned post that I'll write soon as mentioned before. \n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 8.5m sats to 26 contributors for 121 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/632357\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 998 \N 356515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6500615389199 0 \N \N f 0 \N 0 27714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 347079 2024-12-28 16:58:15.854 2025-03-29 22:39:46.786 SN's Hiring Trial and Energetic Solutions to Problems Created by My Shortcomings We are hiring another engineer or two and I suck at hiring. Or, as I would say to someone in my situation who isn't me, hiring is hard, even people who are world class at hiring say so, and we haven't done much of it yet.\n\nIn our attempt to hire, SN conducted what I've called The Trial, taking on five engineers for a month long contract hoping to hire one of them. We could've copied the traditional technical interview process, which is a copy of a copy of a copy of a copy of the way reputable technology companies have hired for a long time. The Trial attempted to reduce the bloodletting of modern technical hiring.\n\nThe Trial ended in February and we didn't hire anyone as a result of it. Trial member (A) had a family emergency and dropped out, (B) had trouble finding time to contribute, and (C) took a job at another bitcoin company before the trial ended. Of the remaining trial members, (D) didn't produce enough to qualify for an offer and (E), after receiving our offer, took a job at another bitcoin company. It cost us ~$20k. All trial members but (A) did real work that lives on the site today, and all motivated improvements to our open source contributor incentives and DX. \n\nThe trial intended to produce a hire, but the result is mostly present as an improvement to the trial process itself. Open source contributors to SN, whether looking to get hired or not, no longer need permission to [participate and get paid](https://stacker.news/items/449767). We've also tried to make it really easy to begin contributing with [custom tooling](https://stacker.news/items/466556). The trial reminded us to use our unique advantages - incentives games, global money, transparent development - and supplied a repetition of solving the problems created by our shortcomings. \N 16808 \N 347079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7574912368062 0 \N \N f 0 \N 0 191972072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 50962 2023-08-16 18:50:32.585 2025-03-29 22:39:46.786 Some tips for landing your first developer job Someone in plebdevs asked me this question recently I'm writing a longer form post with a lot of grueling detail about my specific path but I'll drop some high level thoughts here and would love to hear some anecdotes from the stackers.\n\nAll in all it took me about 10 months to land my first programming job out of my fullstack bootcamp. Over these ten months I applied to 250+ positions. I didn't start with the best resume/portfolio/process for the job hunt but I learned over time through trial and error.\n\nIf I could go back in time with the knowledge I have now I feel like I could have cut it down to 2-3 months max, but hey that's not life works right.\n\nFor someone whose starting fresh I would begin with the mindset and understanding that this might take a very long time. Of course once you land your first position it is way easier to get another. It's always the zero-to-one that's the real barrier to entry.\n\n### From my experience I suggest you focus on these 4 things:\n\n#### 1. History of Work\n#### 2. Resume\n#### 3. Portfolio\n#### 4. Job hunt system\n\n### History of Work:\nCreate history of work that shows you have the skills to be a developer. Use Github, portfolio, and deployed projects to show this off. Make sure the biggest and the best are front and center on your portfolio website. Push code everyday if you can. Build a personal project that solves some kind of problem for yourself or someone else. Contribute to open source, do example projects from YouTube tutorials, build free websites for your friends lawnmowing business, etc. Literally just push as much relevant work as you can.\n\n- Push commits on github everyday if you can. Build up as long/strong of a history of work on github as you can.\n- Create "Side projects" that solve some kind of problem for yourself or someone else. The more niche/specific/unique the better. If you are able to get ANY users for this project that is the best case scenario. Be sure to make it clear your project has users on your portfolio. - \n- If it was YOUR unique creation and you built it from scratch and especially if you had any users than this is some of the highest signal work you can ship (as far as landing a job).\n- Create "Example projects" following a tutorial. Frame it as "Example" not a tutorial project, and you don't need to mention you took a tutorial to build it. These example projects are best when you take one to learn a new tool such as tailwind. You might build a whole todo list app or netflix clone following a tutorial just to pick up tailwind and have an example of it. That's perfect as an example project.\n- Create "Freelance projects". This can be any kind of programming related task or project that you do for someone else or some company/startup. Does your friend have a lawn mowing business? Build a website for it and put it on your portfolio! Does your brother cut hair? Build him a badass barber website. Put these projects on your portfolio and frame them as "freelance" work.\n- Contribute to open source. Find an open source project that you love or are familiar with and scour their github issues for a "good first issue" tag (this is the best place to start). Any contribution you make to an open source project is a huge green flag for recruiters and will help you stand out from other candidates.\n\n### Resume:\nBuild a developer resume that frames your journey, shows off your relevant experience/skills, and passes all pre-screening steps whether it be automated CV scanning software or an HR lady without her coffee.\n\n- Look at developer resume's online and copy the format/structure for your own.\n- Create a short contact section with your name, email, location, and link to your portfolio website.\n- Create an about section that is short and concise but at the same time tells your story and frames yourself as a fast learner who is passionate about becoming a developer\n- Don't call it "Work" or "Projects" on your resume frame it as "Experience" and under the experience section you can put your biggest and best dev projects as well as any actual work experience you have.\n- Add a skills section that is 2-3 lines in total and lists out technologies you know and utilize in your projects such as JavaScript, Tailwind, Git, C++, etc. This will serve you by helping your resume pass keyword scans that HR will run every resume through (bigger companies and some startups do this)\n- The experience section should take up most of your resume, the skills should take up 2-3 lines, you should have contact info at the top, the about me below that. At the very bottom you can put an "Education" section. Keep yours as short as you want (mine was incredibly short cause all I had was a GED)\n\n### Portfolio:\nBuild a personal website / portfolio that shows off EVERYTHING you have but is still easy to read and scroll through. Recruiters, hiring managers, or lead engineers will be looking at this as you're applying. They will only give you seconds of their time, make sure what they see in those seconds gets you to the next round.\n\n- Create a personal website/portfolio with a domain name that is close to your name/nym online\n- Look at as many dev portfolio website examples as you can for examples on how you should structure yours.\n- Keep it dead simple at first.\n- Make sure it renders fast (within 3 seconds MAX)\n- If you're a frontend dev it has to look pretty (on every viewport size!). If you're a backend dev just make it simple/clean\n- Put your name / contact / about section at the top (don't take up too much space)\n- Put your project section right at eye level as soon as it renders.\n- Link to each projects repo and deployment (if it has one)\n\n\n### Job hunt system:\nthe job hunt is a grind. Create a system for consistently finding jobs, applying to jobs, improving your career artifacts, and shipping new work. If you do these 4 things: (find, apply, improve, ship) then winning is inevitable it's just a question of how long it will take.\n\n- Create a spreadsheet listing out positions you're going to apply for and those that you have applied for.\n- Search for positions on typical job boards like indeed/zip recruiter but also look on the angel list job board, YCombinator job board, and of course all of the Bitcoin specific job boards (Bitcoiner jobs, SN, Bitcointalentco)\n- Create a cover letter for positions you're very interested in or that look like a perfect fit.\n- The first cover letter is hardest to make but once you have it you can pretty easily refactor it for new positions. As you continue to refactor it with more and more positions you will refine and improve it over time.\n- Take ANY feedback you get from companies you apply to, list it on your spreadsheet and learn from it.\n- As you get past the first round with any positions look up the company on glassdoor or similar resources and see if you can figure out what their technical interview is like. Practice any specific algo problems, take home projects, or technologies they use for their technical interviews.\n- Practice doing technical interviews by yourself. roleplay as if you are in the interview, verbalize your thought process, turn zoom/screenshare on, get comfortable trying to solve hard problems with silent observers.\n- Watch YouTube tutorials for developer job hunting and technical interview practices \N 12245 \N 50962 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.875242432435996 0 \N \N f 0 \N 0 66291783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 227134 2024-09-04 07:47:38.622 2025-03-29 22:39:46.787 Payment solution Stripe deplatforming accounts that sell bitcoin hardware https://twitter.com/bitsaga_org/status/1746911320824262781\n\nStripe is blackmailing me to stop selling bitcoin hardware (miners). I stood firm and now the pleb army is uprising. Unreal.\n\nVanguard blocking clients access to bitcoin ETFs seeing massive outflows, pressured to give in to freedom. We can pressure stripe to not deplatform businesses like myself selling simple specialised hardware (miners). Their "climate policy" (https://stripe.com/en-gb-be/climate) mentions carbon removal technologies, they don't realise the greenhouse gas mitigating potential and green energy usage/incentive of bitcoin. Is Stripe deplatforming me for selling specialised hardware even legal?\n\nBelgian customers can no longer pay with Bancontact, by far the most popular solution in Belgium.\nThis sucks. I guess part of "then they fight you".\n\nYou deplatform bitcoin, we deplatform you.\nWe are legion. \N 21401 \N 227134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2720257769717 0 \N \N f 0 \N 0 35748491 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 101036 2023-12-20 09:41:51.316 2025-03-29 22:39:46.787 On the culture crisis compromising the future of the Lightning Dev Kit project Dear bitcoin community,\n\nI’ve been cancelled of the Lightning Dev Kit communication space (Discord and I guess other things) end of last week for very unclear reasons by the group of people called the ldk code of conduct team. This casts a big open question if there is no a corporate capture underway of the Lightning Dev Kit open-source project by the spiral people. As a note, I’ve been an active and prolific contributors for some years and as old since 2018, far before many other contributors leveraging the code of conduct application for obscure and doubtful interests.\n\nThe reasons exposed are completely without ground and the ldk code of conduct team has never sent the mentioned communications to me with PGP signatures and OTS proofs, as I think a transparent and accountable open-source process is requesting. I’ve never harassed anyone in the community and this is a bag of pure calomnies from the ldk code of conduct team. I don’t know what are their underlying motivation.\n\nAs a matter of enlightenment, there has been some private drama between the spiral team and myself in october 2022, where someone there broke his plain months-long committed business words towards me in a very explicit fashion (and I think there has been some third-party witnesses in the quality of some Blockstream people). This is under resolution through the appropriate channels.\n\nWhile this was a private dispute at first, this of course poisoned the relationships between myself and some of the LDK contributors employed by Spiral, where I’ve been more and more asking for accountability of the spiral team in the conduct of the janitorial roles of the project. My maintenance credentials were removed during Q1 2023 without due notice in a complete opaque fashion (while I’ve never been interested in maintenance and I’ve never used them it’s good to have a clear and transparent process when someone is removed its maintenance credentials). And since then this has been full “cancel culture” in the Lightning Dev Kit project, where some maintainers are abusing their github and discord admin rights as soon as you say something questioning their technical choices or maintenance decisions.\n\nEverytime you’re asking a motivation of this publicly or privately they’re going to kick for touch difficult yet-necessary and constructive conversation replying they’re “not comfortable” to have such conversation happening. Personally, I do not believe when hard things have been to be discussed like the security of end-users funds or long-term sustainability of the project culture, feelings of discomfort, even coming from maintainers, are not legitimate criteria on which to lay a decision. This is breaking the peer-to-peer nature of bitcoin open-source.\n\nI’ll advise for the time being the Bitcoin community to be very distrustful and doubtful about commitments and PR statements made by the spiral team, Steve Lee and Matt Corallo as from my appreciation they’re trying to cover up their ethical past misbehaving or do “virtue signaling” to cover their inner softness in term of personal values. I understand the spiral team is under strain from the rest of the block inc commercial units to move fast on LDK engineering and add more features to yield back value on the $$$ which have been burnt in Spiral salaries since 2019, though this doesn’t justify their behaviors.\n\nAnd here I’m very sad about Matt Corallo’s attitude, who despite being hold as bitcoin dev legend and vetted with high-quality hacking skills has a decade long-reputation of “jumping” from an employer or set of colleagues to another one as soon as the tide is turning on (mike hearn, gavin andresen, blockstream, chaincode, spiral) without respect of personal loyalties or committed words and have not achieved a professional status of independence where he can hold opinions of his owns on delicate human affairs. I hope newer current and newer generations of bitcoin devs won’t follow his career example in term of personal values. From my history of inter-personal relations with Matt Corallo, it’s hard to trust him because of his employee-like mentality and corresponding incentives.\n\nAll this story, at the very last in my opinion, casts a doubt for other economic stakeholders (VC-funded lightning startups or traditional financial players) which are interested to throw more financial resources in the LDK project for the sake of their own commercial ventures. Accountability and clear rules matter when you’re making years-long investment decisions. Neither for self-motivated and talented hackers who are just willing to learn lightning fundamentals on an interesting codebase.\n\nI know it’s hard for a lot of bitcoin open-source developers and people in the community to speak up about spiral as someone as always either a $100k grant to ask them or professional advantages of any kind and people might chill their minds to protect their own business. That said, I’m less corporate or “silicon-valley” and I prefer to stick to an open and “no-bullshit" internet culture inspired by the centuries-old US and European of civic discourse traditions.\n\nOverall, I don’t have anger about the spiral people. They’re competent according to world class standards in the tech field, I’m just very sad and disappointed about their poor behaviors in the realm of human affairs. I stay committed to build better human standards with them in this space the day we can find a common line of understanding. Feel free to ask them their versions of the story on their social media handles.\n\nWhile I’m very busy on other technical things, I’ll stay available during the coming weeks or months to answer questions of the community on cancel culture in bitcoin, the wider bitcoin FOSS culture, the state of LDK and why the respect of human values matters on this thread. I’ll respect people private life and related confidential informations, I know where is the boundary. \n\nThis changes nothing in term of my other commitments towards other bitcoin open-source projects, especially bitcoin core. While I announced my intent to cut with the LDK project due to other pure and technical serious reasons independent of LDK itself, I still have a good chunk of sensitive security information to share back with the appropriate LDK contributors and I’ll take time to so during the coming year of 2024.\n\nDisclosure: Based on past published information, I believe Steve Lee is an investor in stacker.news though I trust the editors community to be mindful about the potential conflict of interests in term of neutral moderation, while applying the usual norms of civility.\n\n(For the context see the #general chan on LDK Discord, apologies I have no time no figure out how to cleanly insert links with markdown).\n\nCheers,\nAntoine \N 21794 \N 101036 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.6704639619872 0 \N \N f 0 \N 0 77656768 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 23906 2023-05-18 10:25:13.928 2025-03-29 22:39:46.787 Stacker News Privacy Directory V1 - Q4 2023 There's been a constant stream of privacy resources posted on Stacker News over its early life, though not all are likely to be found again. I thought I'd borrow some inspiration from the [Stacker News newsletter](https://stacker.news/search?q=SN+newsletter&what=posts) series to resurface some content. With a clean slate now we have **[~privacy](https://stacker.news/~privacy)** separated, let's bring some of these posts back into the fold.\n\n-----\n\n# **Get Involved**\n`Tip #1` - If you think we missed a SN post and it deserves inclusion, add a comment and we'll index it in future editions. Depending on the reaction, we'll look to curate some resources each quarter. \n`Tip #2` - When reviewing the links below, a reminder that you can click on any author's profile, tap the ... and **subscribe to their posts**. That way you'll be notified when they post, privacy-related or not. I didn't know this feature existed until recently and it's awesome!\n\n![Subscribe to people's posts](https://image.nostr.build/419012d75c3fdcb6561cf3e41d9aed8c6f0d5fcb63f59cbb72ef4b874f10e522.png)\n\n*Giving Credit* - For each section it was tempting to mention & tag all you awesome authors. To give kudos for the guides & links on SN to date. However that somewhat goes against the ethos we're building of discretion for these sensitive topics. Make sure you as a reader you ⚡ zap, zap, zap ⚡ inside these ageing articles and show your appreciation that way. Especially should you find new content of interest that makes you consider new tools or tech.\n\n\n------\n\n# **Introductions to Privacy**\nBelow are a few Stacker posts to introduce us to some general background and landscape of privacy. Helping us understand what the Cypherpunk's envisaged and predicted for us , what type of surveillance we are up currently against and thirdly what we need to build and adopt to shield us from the panopticon today.\n\n### **Privacy Philosophy**\n- [Thirty years ago today, Eric Hughes published the Cypherpunk's Manifesto](https://stacker.news/items/150051)\n- [Why Everyone should care about privacy](https://stacker.news/items/218189)\n- [No Privacy? No Freedom. No Freedom? No Wealth](https://stacker.news/items/166161)\n- [Privacy is normal](https://stacker.news/items/304584)\n- [The Grateful Dead, Cypherpunks, and Bitcoin: What a Long, Strange Tale](https://stacker.news/items/189754)\n- [The Cypherpunks: Decoding Privacy & Security in the Digital Age](https://stacker.news/items/181997)\n- [Question of internet privacy rights](https://stacker.news/items/165749)\n- [When did you start to care about your (online) privacy?](https://stacker.news/items/285098)\n- [How much do you care about privacy](https://stacker.news/items/236756)\n- [Encrypting private data and private communications is now an ethical duty](https://stacker.news/items/286074)\n- [As a Bitcoiner, how essential do you think being anonymous online is?](https://stacker.news/items/183105)\n\n### **Big Tech & Government**\n- [Is Big Tech Prioritizing User Privacy?](https://stacker.news/items/108456)\n- [Google's Surveillance: The Shocking Truth](https://stacker.news/items/238199)\n- [Why I Hate Apple](https://stacker.news/items/195880)\n- [Apple Confirms Governments Using Push Notifications to Surveil Users](https://stacker.news/items/341371)\n- [Treasury recommends expansion of surveillance and sanctions on open source](https://stacker.news/items/335179)\n- [When does the state's surveillance end?](https://stacker.news/items/281377)\n- [Fincen Thread - Use Tools Today](https://stacker.news/items/305287)\n- [We fight for our privacy: the case of Tornado Cash](https://stacker.news/items/247101)\n- [A perfect visualization of how absurd KYC/AML is](https://stacker.news/items/291130)\n- [KYC Bitcoin: Individuals are on Lists](https://stacker.news/items/139736)[www.discreetlog.com/kyc/](https://www.discreetlog.com/kyc/)\n\n### **Comprehensive Guides**\n- [Privacy tools for the information age](https://stacker.news/items/98150)\n- [How to Live a Nomad Life with Bitcoin](https://stacker.news/items/287984)\n- [What's Your Sovereign Stack?](https://stacker.news/items/324226)\n- [How to cross borders and retain digital sovereignty](https://stacker.news/items/146039)\n- [Tutorial: how to buy stuff on Amazon anonymously](https://stacker.news/items/12823)\n- [Tools for Privacy-Conscious Bitcoiners Subscribing to Newsletters](https://stacker.news/items/237172)\n- [Master Anonymity and Privacy: Essential Guides Compilation - Hack Liberty](https://stacker.news/items/329467)\n- [PrivacyTools.io](https://privacytools.io/)\n\n----\n\n# **Where to Start**\nPrivacy can seem like it's too difficult. Therefore deciding *to* start is actually more difficult than knowing *where* to start. But the trade-offs are no longer what they once were. Privacy-focused software is essentially as intuitive and easy to use as their mainstream toxic alternatives.\n\nBelow are a bunch of posts of Stackers sharing their experiences and tips, for n00bs and veterans alike. This initial batch of article is focused on hardware and OS for both desktop and mobile.\n\n### **Privacy Principles**\n- [Privacy: where should you start](https://stacker.news/items/226225)\n- [Privacy first steps (overhauled and added email aliasing)](https://stacker.news/items/154535)\n- [Ask SN: How to be more private on the Internet? How to do 2nd Identities?](https://stacker.news/items/69854)\n- [A Guide to Being Anonymous](https://stacker.news/items/3276)\n\n### **Desktops & Laptops**\n- [How to liberate your laptop: The definitive guide](https://stacker.news/items/251438)\n- [Help me choose a Linux laptop](https://stacker.news/items/199275)\n- [Which linux desktop distribution would you recommend?](https://stacker.news/items/193718)\n- [What is your favourite Linux distribution, and why?](https://stacker.news/items/138518)\n- [Anyone use the Linux CentOS distro?](https://stacker.news/items/220826)\n- [Bisq on Tails | 402 Payment Required](https://stacker.news/items/42321)\n- [How To Create The Safest Offline Bitcoin Wallet](https://stacker.news/items/156351)\n- [Installing Sparrow Wallet on Qubes OS](https://stacker.news/items/122491)\n- [Phone and Laptop Seizures at Airports and Borders - Privacy Travel Guide](https://stacker.news/items/116096)\n- [Which desktop applications do you use the most?](https://stacker.news/items/264518)\n- [How to know if laptop has been tampered with?](https://stacker.news/items/115055)\n- [Mac Mini (Late 2012) BTC Node - Chapter 1](https://stacker.news/items/186239)\n\n### **Mobile**\n- [Best Android ROMs for Bitcoiners](https://stacker.news/items/270999)\n- [Graphene alternatives](https://stacker.news/items/226882)\n- [Which Phone (device) to buy for max privacy & sovereignty?](https://stacker.news/items/84282)\n- [Help Me De-google My Life](https://stacker.news/items/200620)\n\n### **GrapheneOS**\n- [A Basic Guide To Making The Switch To Graphene OS](https://stacker.news/items/200175)\n- [Curated list of useful Open Source applications for GrapheneOS](https://stacker.news/items/225060)\n- [GrapheneOS - My 2-Month Experience 📱](https://stacker.news/items/327664)\n- [GrapheneOS: Phone Privacy Protection](https://stacker.news/items/69057)\n- [Forensic companies are trying to exploit GrapheneOS - but they aren't succeeding](https://stacker.news/items/270393)\n- [Bitcoiners should use GrapheneOS instead of Android/iOS](https://stacker.news/items/269010)\n- [GrapheneOS guide on bitcoiner.guide](https://stacker.news/items/226868)\n- [How secure is GrapheneOS vs. Apple and Google](https://stacker.news/items/195613)\n- [Graphene Fixes This](https://stacker.news/items/198324)\n- [Graphene OS: Learn from my ignorance](https://stacker.news/items/301946)\n\n### **Calyx**\n- [Calyx - What do you think?](https://stacker.news/items/205268)\n\n\n\n----\n\n# **Software**\nNow to the main course. We have sound money, we have sound hardware and we have an OS that has our best interests at heart. Let's now look at the software we run.\n\nMost of the Stackers are making use of some great email tools out there, running their own domains, creating email aliases or using privacy-minded clients. VPNs and password managers are also a hot topic around these woods, offering us some great choices to spend our bitcoin and lightning on **tech that serves us not enslaves us**, making identifying or 'hacking' us as customers a far more difficult task.\n\n### **Email**\n- [I want to move to private mail but...](https://stacker.news/items/239326)\n- [ProtonMail Complied with 5,957 Data Requests - Still Secure and Private?](https://stacker.news/items/227936)\n- [Can anyone recommend an email service that allows bitcoin payments?](https://stacker.news/items/213459)\n- [The Death of Decentralized Email](https://stacker.news/items/89371)\n- [After self-hosting my email for 23 years I gave up. The oligopoly has won.](https://stacker.news/items/66462)\n- [What email provider do you use?](https://stacker.news/items/131031)\n- [What email service do you use and why?](https://stacker.news/items/169405)\n- [What encrypted email service do you use?](https://stacker.news/items/198575)\n- [SimpleLogin | Open source anonymous email service](https://stacker.news/items/19014)\n\n### **VPNs**\n- [Mullvad VPN subject to a search warrant. Customer data not compromised](https://stacker.news/items/167420)\n- [IVPN Light: short-term VPN access priced in sats, paid with Lightning](https://stacker.news/items/259328)\n- [Proton VPN introduces Stealth, a new & undetectable VPN protocol](https://stacker.news/items/80177)\n- [We've Teamed Up With Mullvad VPN to Launch the Mullvad Browser | Tor Project](https://stacker.news/items/160349)\n- [How to Protect Your Home Network with a Gigabit VPN](https://stacker.news/items/131191)\n- [Tunnel Sats expanding VPN offering for LatinAmerican Noderunners](https://stacker.news/items/73873)\n- [LNVPN - VPN provider with Lightning only payment](https://stacker.news/items/77899)\n- [VPN and Fun Hacks Using it](https://stacker.news/items/259866)\n- [Obscura: The VPN that can't track your activity](https://stacker.news/items/268473)\n\n### **Website Hosting**\n- [Anonymous VPS hosting: Njalla vs SporeStack vs Privex](https://stacker.news/items/28393)\n- [Domain Names Paid Anonymously With Bitcoin](https://stacker.news/items/331645)\n- [Is there a bitcoin-friendly hosting/server provider?](https://stacker.news/items/192863)\n\n### **Search Engines**\n- [Search Engine Party - search engines classified by security and privacy](https://stacker.news/items/192007)\n- [Building a new Web Search Engine. Just for you, Stackers!](https://stacker.news/items/102667)\n- [What search engine do you use?](https://stacker.news/items/190369)\n- [Private search engine Kagi now supports payment in bitcoin](https://stacker.news/items/240752)\n- [Brave Search launches independent image/video search](https://stacker.news/items/219706)\n\n### **Messaging**\n- [So, Which Encrypted Messenger Should I Use?](https://stacker.news/items/322064)\n- [Stacker.news group chat on simplex chat messenger?](https://stacker.news/items/236945)\n- [SimpleX Chat - First impressions. Is it ready for prime time?](https://stacker.news/items/225727)\n\n### **Passwords & Auth**\n- [Creating and managing strong passwords](https://stacker.news/items/188790)\n- [Password management solutions](https://stacker.news/items/184799)\n- [Password managers: recommendations + best practices?](https://stacker.news/items/127534)\n- [Do you use a key file in keepassxc?](https://stacker.news/items/280735)\n- [The Alarming Trend: Password Cracking Getting Easier Year by Year](https://stacker.news/items/256676)\n- [Password manager best practices to focus on in the new year...](https://stacker.news/items/110742)\n- [Did you use a password manager?](https://stacker.news/items/62626)\n- [Can anybody recommend a good alternative 2FA authenticator app to Google?](https://stacker.news/items/156795)\n- [How to get 2FA on the command line](https://stacker.news/items/325206)\n- [Now Proton supports U2F and FIDO2 hardware keys like YubiKey](https://stacker.news/items/81162)\n\n### **Browsers**\n- [Brave for Bitcoiners](https://stacker.news/items/13555)\n- [Mullvad and The Tor Project releases a new web browser](https://stacker.news/items/160341)\n- [Impervious Browser First Impressions](https://stacker.news/items/130417)\n- [Impervious Launches Their P2P Lightning-Enabled Internet Browser](https://stacker.news/items/83510)\n- [What web browser do you use?](https://stacker.news/items/190879)\n- [Private web browser](https://stacker.news/items/234697)\n- [Thorium Browser](https://stacker.news/items/288643)\n- [Orion Browser – Privacy by default for Mac and Apple devices](https://stacker.news/items/74596)\n\n### **Tor**\n- [An Ode to The Onion Router (Tor)](https://stacker.news/items/73477)\n- [Best way to help the Tor network?](https://stacker.news/items/58513)\n- [Tor is not just for anonymity](https://stacker.news/items/209285)\n- [How to install Tor on MacOS with a few clicks](https://stacker.news/items/138995)\n- [TOR friendly ISPs in the US?](https://stacker.news/items/76868)\n- [How to Run Bitcoin as a Tor Hidden Service on Ubuntu](https://stacker.news/items/87572)\n\n### **eSIMs**\n- [LNeSIM - buy eSIM: Travel, Holiday, Roaming, Internet data with BTC Lightning](https://stacker.news/items/299348)\n- [Citadel Dispatch - Privacy Focused Mobile eSIMs Using Silent Link](https://stacker.news/items/74126)\n- [Is it possible to live without a SIM card?](https://stacker.news/items/161665)\n- [Purchase eSIMs (local, regional, and global) with Bitcoin | Bitrefill](https://stacker.news/items/221257)\n\n### Data & Videocalls\n- [Nostr Alternatives for Jitsi / Zoom / Skype](https://stacker.news/items/306012)\n- [Keet by Holepunch](https://stacker.news/items/49204)\n- [Keet latest: ⚡️LN support soon, successful transfer of 6GB file to peers](https://stacker.news/items/82529)\n\n### **Other**\n- [Enhancing Data Confidentiality in the Cloud](https://stacker.news/items/180783)\n- [Portable Secret - Better privacy, without special software.](https://stacker.news/items/111535)\n- [Sovereign alternative to Google Translate](https://stacker.news/items/112186)\n- [We need a real decentralized mesh network for censorship resistant Bitcoin usage](https://stacker.news/items/49841)\n\n\n-----\n\n# **Nostr**\nMuch like in the early days of Bitcoin, many of us may wrongly assume that much of what we post on Nostr is somewhat private. That actually couldn't be further from the truth most of the time, so these Stacker posts will have you considering best practices when adopting our new social database layer for the internet.\n\n- [Privacy on Nostr, a guide](https://stacker.news/items/150079)\n- [Nostr is private, or is it?](https://stacker.news/items/295997)\n- [How NOSTR Will Change The World Of Privacy](https://stacker.news/items/133368)\n- [Consent - Nostr Privacy](https://stacker.news/items/110512)\n- [Privacy on nostr and the war on AI scrapers](https://stacker.news/items/203872)\n\n\n----\n\n# **Bitcoin**\n\nMany of us are well versed on Bitcoin privacy. Many much more than I. This summary is only scratching the surface in terms of the content that exists on the SN site. Below are some poignant posts about bitcoin's traceability, both onchain and lightning best practices, as well as different UTXO and coinjoin strategies. Don't be afraid to post and ask questions in the comments below. There's no reason to be overwhelmed when we have such a talented community here.\n\n### **General**\n- [Evaluating my bitcoin privacy techniques against three surveillance attacks](https://stacker.news/items/323331)\n- [Btc privacy trade-offs, overt and covert](https://stacker.news/items/336205)\n- [Protecting Bitcoin Privacy with burner wallets](https://stacker.news/items/167365)\n- [Don't buy bitcoin - earn it. Why? It's better for your privacy](https://stacker.news/items/214891)\n- [Bitcoin Privacy](https://stacker.news/items/165764)\n- [Privacy is important, but bitcoin doesn’t help](https://stacker.news/items/219593)\n- [Maintaining privacy while purchasing a bitcoin miner](https://stacker.news/items/199147)\n- [Whisper Addresses: Privacy preserving automatic bitcoin address generation in vanilla javascript](https://stacker.news/items/16283)\n- [What's the most privacy-focused way to receive onchain BTC](https://stacker.news/items/183772)\n- [Are gift cards the best we can do for no-KYC lightning trades?](https://stacker.news/items/263130)\n\n### **Lightning**\n- [Introduction to Lightning Privacy](https://stacker.news/items/100752)\n- [Lightning privacy: from Zero to Hero](https://stacker.news/items/340786)\n- [Discussion on using Lightning as an alternative to CoinJoins](https://stacker.news/items/256310)\n- [Lightning Surveillance as a Service is Here!](https://stacker.news/items/109300)\n- [LN privacy question](https://stacker.news/items/155413)\n- [How private is lightning?](https://stacker.news/items/205680)\n- [Private banks over The Lightning Network](https://stacker.news/items/108064)\n- [Running a fully private LN node - recommendations](https://stacker.news/items/116074)\n- [The Art of Swapping](https://stacker.news/items/333907)\n- [Interest in a Lightning Address Alias Service?](https://stacker.news/items/223185)\n\n### **Coinjoins**\n- [CoinJoin: A Practical Guide](https://stacker.news/items/279118)\n- [How would you summarize the trade-offs of Coin Join?](https://stacker.news/items/296337)\n- [Dreaming about CoinJoin at protocol level](https://stacker.news/items/323358)\n- [Dealing with Coinjoin Change Outputs](https://stacker.news/items/34765)\n- [How much have you spent on coinjoins?](https://stacker.news/items/225585)\n- [JoinStr - A Decentralized CoinJoin Implementation using NOSTR](https://stacker.news/items/247580)\n- [de-KYC Sats?](https://stacker.news/items/313893)\n\n### **Payjoin**\n- [Payjoin for a Better Bitcoin Future](https://stacker.news/items/300457)\n- [You are NOT bullish enough on Payjoin!](https://stacker.news/items/284908)\n- [Payjoin: Privacy without mixing](https://stacker.news/items/156458)\n- [Payjoin over Nostr](https://stacker.news/items/224197)\n- [PayJoin adoption](https://stacker.news/items/171740)\n- [Interactive Batching with Payjoin is Better](https://stacker.news/items/176742)\n- [Open multiple lightning channels in single PayJoin with Nolooking](https://stacker.news/items/90250)\n- [Why isn't every block filled with a few GIANT many-to-many transactions](https://stacker.news/items/186720)\n\n### **UXTO Coin Control**\n- [Bitcoin UTXOs: Explained for Beginners](https://stacker.news/items/98284)\n- [Trying to understand what UTXOs are all about](https://stacker.news/items/298282)\n- [Explain UTXOs in bitcoin to someone who doesn't understand bitcoin at all.](https://stacker.news/items/270530)\n\n### **UTXO Consolidation**\n- [UTXO set & consolidation](https://stacker.news/items/278285)\n- [One big UTXO or several small ones for cold storage?](https://stacker.news/items/258424)\n- [Automated UTXO-by-UTXO wallet migration tool that avoids tx correlations?](https://stacker.news/items/201583)\n- [How to prevent small UTXOs from becoming bitcoin dust - Unchained](https://stacker.news/items/320984)\n- [Utxo Dealership: forthcoming BTC privacy tool & winner of Tabconf 2023 Hackathon](https://stacker.news/items/250679)\n\n### **Non-KYC**\n- [How to buy Bitcoin privately - Azte.co, Hodl Hodl, Robosats, Bisq & Peer to Peer](https://stacker.news/items/219309)\n- [Have you tried bisq?](https://stacker.news/items/337460)\n- [Robosats Beginners Guide](https://stacker.news/items/157938)\n- [Amazing script that lists offers from Bisq, HodlHodl, & RoboSats via Tor](https://stacker.news/items/39385)\n- [8 basic facts about RoboSats and Bisq](https://stacker.news/items/157029)\n- [Best payment method for bisq/robosats](https://stacker.news/items/93858\n- [Learn RoboSats](https://stacker.news/items/29745)\n- [Any one using Robosats on tor? Onion?](https://stacker.news/items/183694)\n- [Hodlhodl, Bisq announce Lightning integration plans](https://stacker.news/items/175700)\n- [Robosats and Bisq Fiat Problem (at least in Brazil)](https://stacker.news/items/183257)\n- [I pay a 5-8% premium for Non KYC Bitcoin, and so should you.](https://stacker.news/items/291419)\n- [What premium would you pay for non-KYC Bitcoin?](https://stacker.news/items/128787)\n- [How To Buy Bitcoins Using RoboSats: Fastest KYC Free Sats In The West](https://stacker.news/items/134844)\n\n- [KYC? Not me!](https://stacker.news/items/101746) ``(non-KYC spending)``\n\n\n----------\n\n# **NOT on Stacker News**\n\nLastly, we have a selection of content that is external to Stacker News worthy of our attention. We will have many follow-up posts where this list expands, but for now the following guides, posts & video channels will keep you very busy. Many of the below are not to be missed!\n\n### **Guides**\n- [A Cypherpunk's Manifesto (1993)](https://www.activism.net/cypherpunk/manifesto.html)\n- [The Hitchhiker’s Guide to Online Anonymity](https://anonymousplanet.org/guide.html)\n- [Go Incognito](https://techlore.tech/goincognito.html)\n\n### **Bitcoin Guides**\n- [This Month in Bitcoin Privacy](https://enegnei.github.io/This-Month-In-Bitcoin-Privacy/posts/)\n- [Lopp's Bitcoin Privacy Resources](https://www.lopp.net/bitcoin-information/privacy.html)\n- [Bitcoiner.Guide Privacy](https://bitcoiner.guide/privacy/)\n- [Bitcoin-Only Privacy](https://bitcoin-only.com/privacy)\n- [Athena Alpha - Bitcoin Privacy](https://www.athena-alpha.com/bitcoin-privacy/)\n- [Unchained - UTXO Privacy](https://unchained.com/log/bitcoin-utxo-privacy)\n- [Bitcoin Briefly - UTXO Consolidation](https://bitcoinbriefly.com/utxo-consolidation-explained)\n- [Bitcoin Fungibility, Mixing & Legal Limits on Privacy](https://bitcoinmagazine.com/culture/bitcoin-fungibility-mixing-and-the-legal-limits-on-maintaining-privacy)\n- [OXT - Understanding Bitcoin Privacy 3/4](https://medium.com/oxt-research/understanding-bitcoin-privacy-with-oxt-part-3-4-9a1b2b572a8) \n- [A Comprehensive Coinjoin Guide](https://bitcoinmagazine.com/technical/a-comprehensive-bitcoin-coinjoin-guide)\n- [Blog - Coinjoin Guide](https://armantheparman.com/cj/)\n- [Blog - How Coinjoin Works](https://armantheparman.com/how-coinjoin-works/) \n- [BitcoinQnA - Coinjoins](https://bitcoiner.guide/qna/coinjoin/)\n- [Wasabi - CoinJoin Legal Concern](https://docs.wasabiwallet.io/why-wasabi/LegalConcern.html#using-coinjoin-as-a-custodial-service-provider)\n- [Video - Bitcoin Privacy (Theory & Practice) - March 2016](https://youtu.be/HScK4pkDNds?feature=shared&t=129)\n\n### **Extreme Privacy - Paid eBooks**\n- [Edition 4 - VPNs and Firewalls](https://inteltechniques.com/book7d.html) \n- [Edition 3 - Linux Devices](https://inteltechniques.com/book7c.html)\n- [Edition 2 - MacOS Devices](https://inteltechniques.com/book7b.html)\n- [Edition 1 - Mobile Devices](https://inteltechniques.com/book7a.html)\n\n### **@Darthcoin [Guides](https://stacker.news/DarthCoin)**\n- [https://darthcoin.substack.com/p/lightning-wallets-comparison](https://darthcoin.substack.com/p/lightning-wallets-comparison)\n- [https://darthcoin.substack.com/p/private-lightning-nodes](https://darthcoin.substack.com/p/private-lightning-nodes)\n- [https://darthcoin.substack.com/p/operating-with-ln-as-a-merchant](https://darthcoin.substack.com/p/operating-with-ln-as-a-merchant)\n- [https://darthcoin.substack.com/p/bitcoin-and-privacy](https://darthcoin.substack.com/p/bitcoin-and-privacy)\n- [https://darthcoin.substack.com/p/lightning-network-submarine-swaps](https://darthcoin.substack.com/p/lightning-network-submarine-swaps)\n- [https://darthcoin.substack.com/p/lightning-cleaning-machine](https://darthcoin.substack.com/p/lightning-cleaning-machine)\n- [https://darthcoin.substack.com/p/getting-started-lightning-address](https://darthcoin.substack.com/p/getting-started-lightning-address)\n- [https://darthcoin.substack.com/p/dunder-lsp-and-lightning-box-provider](https://darthcoin.substack.com/p/dunder-lsp-and-lightning-box-provider)\n\n\n# **Video Resources**\n\n### **Special Mention**\n- [402 Payment Required](https://www.youtube.com/@402PaymentRequired/videos) `< incredible resource`\n- [BTCSessions](https://www.youtube.com/watch?v=O9Sdd_Q1-gY&list=PLxdf8G0kzsUXZUbsVrUHYKSu3XAzV0lS3)\n\n### **Privacy YouTube Channels**\n- [Watchman Privacy](https://www.youtube.com/@WatchmanPrivacy/videos) `< very good privacy practices`\n- [Closed Network](https://closednetwork.io/episodes-list/)\n- [Surveillance Report](https://www.youtube.com/@surveillancereport/videos)\n- [Opt Out Podcast](https://www.youtube.com/@OptOutPodcast/videos)\n- [Techlore](https://www.youtube.com/channel/UCs6KfncB4OV6Vug4o_bzijg)\n- [TheHatedOne](https://www.youtube.com/channel/UCjr2bPAyPV7t35MvcgT3W8Q)\n- [Mental Outlaw](https://www.youtube.com/channel/UC7YOGHUfC1Tb6E4pudI9STA)\n- [Side Of Burritos](https://www.youtube.com/@sideofburritos)\n- [Wolfgang's Channel](https://www.youtube.com/channel/UCsnGwSIHyoYN0kiINAGUKxg)\n\n### **Andreas Videos**\n- [Andreas Q&A - Privacy is a Human Right](https://www.youtube.com/watch?v=p4oOrMejI3k)\n- [Andreas Q&A - Backwards Privacy and the Importance of Earning](https://www.youtube.com/watch?v=P7PBr2wVR-A)\n- [Andreas Q&A - Blacklists, Taint, and Wallet Fingerprinting](https://www.youtube.com/watch?v=BILcJ3WtdLQ)\n\n*More to come on external resources in a future post...*\n\n\n------\n\n### **End.**\nSpecial thanks to the entire Stacker.News community for posting epic content each and every week. It's one of the only places in the Wild West to learn about privacy. \n\n**Moving Stackers to the right side!**\nThe intention with this post and others is to get all of us moving along the privacy spectrum, one number at a time. Sharing practices that many of us have normalised by now. Encouraging others to take their next step. Let's move everyone forward 1 step over to the right.. (myself included)\n\n![Privacy spectrum](https://m.stacker.news/7116)\n*Comment below, how would you rate yourself today? From 1 to 7?*\n\n\n\n \N 10981 \N 23906 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0120186426913 0 \N \N f 0 \N 0 180619160 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3895 2022-11-12 04:23:07.385 2025-03-29 22:39:46.787 Bitcoin PSA: It's Helpful and Important to Define Terms Before We Lose Our Way In my humble opinion it's helpful to define some popular terms as they get thrown around a lot. Unless Bitcoiners, in my opinion, define terms we will never get anywhere in the Bitcoin space and *continue to live the "eternal September."* We need to be clear about *who we are and what we believe* while being communicative with others and receptive as to why Bitcoin is important and *why we are here*. This does NOT mean everyone needs to agree or be of the "same opinion"... but it does mean that *words matter* and during any important social or economic revolution (like the one today) there are competing groups with *very different goals in mind*. Without studying history, *our* history, in my opinion we are doomed to repeat it over and over... and possibly get taken advantage of.\n\nFor example, when studying English Literature or events in European History... different groups and factions present themselves again and again. Learning *how* these groups are different (for example Protestants and Catholics, Pilgrims and Puritans, Byzantines and the 'Holy Romans') and what they believe we can derive *context and clarity*. We can *learn from history*. Without *context and clarity*, however, things are absolute chaos and *we learn nothing*.\n\n*No-one has any ideas...* (they say) *no-one knows anything...* "no-one believes anything"... and most importantly *bullshit can run rampant*. *No the Roman Catholics and Protestants were not the same*.\n\nThe Pilgrims and the Puritans were *NOT the SAME*.\n\nTake this explanation of the differences between the "Pilgrims and the Puritans" (from English/American History): https://www.newsweek.com/whats-difference-between-pilgrim-and-puritan-397974\n\n-----\n\n- Pilgrims and Puritans were Protestants who differed in degree. While both followed the teaching of John Calvin, a cardinal difference distinguished one group from the other: Pilgrims were Puritans who had abandoned local parishes and formed small congregations of their own because the Church of England was not holy enough to meet their standards. They were labeled Separatists.\n\n- The far larger group, those we know as Puritans or Nonseparating Episcopalians, reluctantly retained attachment to the English Church but were determined to cleanse it of remnants of Roman Catholicism. These Puritans remained at home during the 1620s and, through participation in Parliament, tried to prod the Stuart kings toward toleration. They failed.\n\n-----\n\nNow what if *instead of this albeit long-winded differentiation* between the "Pilgrims and Puritans" we just said...\n\n- "Nah they were just all shitcoiners". \n- "Nah nobody knows nuttin" \n- "They were all just like 'wen lambo' and like 'numba go up' and like"\n- "Hey they should have just STAYED in da' England"\n- "Stayed in da England and ya like listened to da King" cuz they got\n- "rugpulled with da NFT..."\n- "I mean who knew?"\n- "Coin haz dog" "XRP 2 da moon" "deploying capital..."\n\nI mean what in the Actual Fuck? Who wants to read this? Is this our history?\n\nBecause this is what "eternal September" sounds like. And, albeit exaggerated, what the inability to *define terms* looks like.\n\nIf and when historians write the history of Bitcoin... what are they going to say?\n\nAre they going to say:\n- 1) "The Church of England was not holy enough to meet their standards. They were labeled Separatists" \n\n- 1) The Global Central Banks faced competition from an energy-based non-governmental money created by Satoshi... ushering in a multi-century golden age of intellectual and social enlightenment... \n\nor\n\n- 2) "Coin haz dog... Trust me Bro... Funds are Safu"\n\nBecause right now Bitcoin is trending towards #2 and *we don't want to hurt anyone's feelings* so "nobody knows anything"\n\nWe don't have clear definitions. \nIt's all so approximate. \nWithout defining *who* or *what* we are or *what we believe in*... in my opinion we fail to differentiate ourselves from those *with whom we are very different* \n\nIf "we" can't define US... how are the HISTORY BOOKS going to GIVE a ****?\n\nA suggested definition:\n\n- Bitcoiner: *A Bitcoiner is someone who believes that Bitcoin is the world's greatest money and hardest asset ever created. Full stop. It may not be the *only* money... but it is the best. Money is typically a Store of Value, Medium of Exchange, and Unit of Account and Bitcoiners want to see BTC recognized and used as such (SoV, MoE, UofA) on a widespread basis. Bitcoiners differentiate BTC from "crypto" in many ways... for example its "proof-of-work", decentralization and "immaculate conception" (the extraordinary and unique circumstances precipitating Bitcoin's creation). Bitcoiners see hard work in society as necessary and *natural* in the accumulation of Bitcoin and its use as "Money". Bitcoiners also look to further its use as money *while remaining true to decentralization and "not-your-keys-not-your-coins."* Running a node, holding private keys, and continuing education are paramount with the goal of \n\n[and this is important]\n\n1) increasing the *purchasing power of BTC* and \n2) being able to "use" that BTC + purchasing power DIRECTLY as Money in the most authentic way available.\n\nFull Stop.\n\nANOTHER definition: (Think PILGRIMS vs PURITANS)\n\n- Crypto investor: A "Crypto investor" is someone who buys cryptocurrency as an 'investment', usually with fiat money, *based on the fluctuation in exchange rates.* "Crypto investors" may believe that some cryptos are 'better' than others... but they don't see *any* of them as money. *None of them are money and this is fundamental.* For example these "investors" would never think of using their "investments" to purchase things directly or to pay for goods and services. Buying things in a store, tipping an Uber driver, sending funds to a friend or co-worker... these are *not* things crypto investors *typically* do. Consequently, a crypto investor's primary goal is to *trade and bet on prices at an exchange...* FULL STOP.\n\n- At the end of the day "Crypto Investors" want to trade their way to *more Fiat* and then "cash out". \n\nFull stop.\n\n- Since the use of "crypto" (ANY crypto) as money is of little concern, crypto investors rarely run nodes, hold their own keys, and they typically use centralized exchanges in order to "cash out" and "take Profits" (when they can).\n\n- Conversely crypto investors who don't believe (and probably *never* believed) in an asset they "own", which has "lost money", and is now "in the red" are defined as "bagholders". THE VAST MAJORITY of 'crypto investors' historically have been 'BAG HOLDERS'.\n\n- Crypto Investor Subclass - Degen: A "degen" is a crypto trader who trades with maximum leverage. A degen would trade *absolutely anything* regardless of how risky or how little practical application the trade has:\n\nExamples of Degen favorites:\n- NFTs\n- memecoins\n- ICOs\n- Runes\n- BRC20s\n- 'Inscriptions'\nThese are *all* highly favored by degens. If it has a 'ticker' and a chart *they'll buy it*. Needless to say, degens "love" crypto but they don't custody *any* of it themselves... and they don't care how a crypto ACTUALLY "works". A degen would sell illegal pictures of their grandmother if they thought it would score them more fiat and fast. Get rich quick 100% guaranteed (or not).\n\n\nLast one (and bear with me I'm not an economist and have the LEAST to contribute):\n\n- Central Banker: A "Central Banker" is someone who forks for, or is associated with, the leadership of a Central Bank. IE the US Fed or the European ECB. Central Bankers don't believe that money has any "real" inherent value... but instead exists solely to coordinate economic activity and worker productivity. In other words growth, employment, and prices (especially in the short term). Since fiat can be created by a Central Bank at will, with *no* energy requirements and in *infinite* quantities... to quote Neel Kashkari "there is an infinite amount of money at the Federal Reserve". \n\n- This is in stark contrast to Bitcoin, which is mathematically scarce and *extremely* energy-intensive. Gotta do the "work" to make it. Fiat (or Central Bank) money is also centrally controlled, and monetary policy can be changed at any time *by a small group of people*. Bitcoin, on-the-other-hand, has a monetary policy that's set, transparent, and known to all for the next 100 years, barring an overwhelming desire or need to change it by people who run nodes. IE Bitcoiners.\n\n-------\n\nIn my humble opinion, with just a few definitions, everything is much clearer. It's not that the people reading this *don't* know, or don't care *deeply* about Bitcoin or aren't extremely knowledgeable... it's that there are *so many* who can't even provide their *own* definitions. \n\nWho *would have others think for them*... a 'hero' or an 'influencer'. Or some billionaire. It's not good and it's dangerous.\n\nAnd it's even *worse* when those same folks start parroting:\n- Don't hold your own keys\n- Leave your keys on an exchange\n- Don't run a node, it doesn't matter\n- Never spend your Bitcoin (because it's on an exchange and you don't own it anyway and *can't* spend it!) and \n- Never transact in Bitcoin. Just buy the ETF...\n\nTell me this, if no-one ever transacts in the future, how are the transaction fees going to get paid with a decreasing block subsidy? If the ETFs hold all the Bitcoin and no-one runs nodes, and no-one practically speaking transacts, isn't it obvious what kind of ****show that would be?\n\nYet there are a *disturbing* number of conversations saying these exact things on Reddit and elsewhere.\nPeople got on a Rickety ship hundreds of years ago to go across the ocean for what they believed... I hope future Bitcoiners show the same courage.\n\n\n \N 21401 \N 3895 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.4721406705991 0 \N \N f 0 \N 0 95534565 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 181158 2024-06-06 21:45:16.702 2025-03-29 22:39:46.787 Safety Practices on Using Nostr More and more people started using Nostr, but not many people talk about how to use it safely—**Nostr is not the social media we used to use, not something you can DELETE and pretend *nothing* happened.**\n\n> Nostr: A simple, open protocol that enables a truly censorship-resistant and global social network.\n\nNostr is indeed a good tool against censorship, but it also comes at a price if you don't know what you're doing, and I'm going to share some of the safety practices that I've learned to help you stay safe in this Wild West.\n\n\n\n![nostr.jpg](https://m.stacker.news/21546)\n\n___\n\n\n\n### **How to Create a Nostr Account** \n\n\n1. Ideally, use [Alby](https://getalby.com/) or [Nos2x](https://github.com/fiatjaf/nos2x) to load your keys instead of from any Nostr clients.\n\n2. Save the key somewhere safe, e.g. using offline password manager keepassxc, and always have a backup.\n\n3. Choose any clients you like and log in with Alby.\n\n ***For Desktop*** \n\n - [Primal](https://primal.net/): fast - I use this as my main client.\n\n - [Snort](https://snort.social/): clean UI but quite slow - I use it as a backup when [Prima is down or fails to load.\n\n - [Iris](https://iris.to/): average speed and average UI.\n\n \n\n ***For Phone***\n\n - iOS: you can use [Damus](https://damus.io/) or [Nostur](https://nostur.com/) - I like to use [Nostur](https://nostur.com/), but I normally use it for reading mode only.\n - Android: you can use [Amethyst](https://play.google.com/store/apps/details?id=com.vitorpamplona.amethyst).\n\n\n\n_______________\n\n\n\n### **How to Find Interesting People or Content** \n\nDue to no algorithm in Nostr, it can be quite empty on your homepage if you don't know how or where to find interesting things, but there is one good tool to check notes or any activities: https://nostr.band/\n\nFor example,\n\nsee all the current popular notes https://nostr.band/trending/posts\n\nsee all the current trending users https://nostr.band/trending/profiles\n\n**A good hack is once you find some interesting accounts, then you look at what they are following.**\n\n\n\n______\n\n\n\n### **How to Receive Zaps**\n\nThere are many [LN addresses](https://lightningaddress.com/) you can link to Nostr, and I tested with different ones before, sharing two of my favorites here:\n\n#### [LNtip bot](https://t.me/LightningTipBot)\n\nThis one is what I used to use - a simple LN address that you can easily create as long as you have a telegram account:\n\n***Features***\n\n- simple use\n- got notifications\n- private comments available\n\n***Downsides***\n\n- custodial wallet\n- need to use telegram for it\n- not much privacy\n\n\n\n***Hacks***\n\nIf you would like to be more private, you can use [sms4sats](https://sms4sats.com/) to sign up for a fresh telegram and then create an LN address with it instead of using your personal account.\n\n\n\n#### [Npub.cash](https://npub.cash/)\n\nAnother one of my favorites is the new kid in town: Cashu address. I've been using it for about one month now, and it's good for those who are up for more privacy or just being adventurous:\n\n*Warning: it's new, don't be too reckless using too large funds with it.*\n\n\n\n***Features***\n\n- private by default\n- no sign-up\n- automatic Nostr DM notification \n\n***Downside***\n\n- custodial wallet\n\n- needs to redeem the sats manually\n\n \n\n***Hacks***\n\nThe way how I use it is once the accumulated zaps reach certain amounts, then I usually choose Lightning to redeem it, and it will overcharge you some fee at first - all you need to do is paste a Lightning Invoice, and then you claim the leftover with any cashu wallets, e.g.enuts. ( you can either redeem the sats over Cashu or Lightning. ) \n\nAnd anyone can have it, yours is @npub.cash, but if you want to have a human-readable address, you can get one with 5k sats; And you even have an extra payment page that you can link to your own social or sites.\n\n___\n\n\n\n### **How to Verify NIP-05**\n\nNIP-05 is how you can have the purple tick in Nostr, it means verified, and there are different ways to verify it.\n\n**If you own any site(s), you can link to your Nostr account.**\n\n*Step 1.* Create a JSON text file in your domain\n\n```\n{\n "names": {\n "": ""\n }\n}\n```\n\nYou can use this [tool](https://damus.io/key/) to get the hex of your public key and one more tip: if you want to leave the user name blank, then use"_", the veirfy address would then simply be yourdomain.com instead of username@yourdomaindotcom\n\n\n\n*Step 2.* Enable CORS - enable the 'GET' and 'head' ( important step! )\n\nThen you can use this [tool](https://cors-test.codehappy.dev/) to check if it's set up well.\n\n\n\n*Step 3.* Link the LN address to your Nostr \n\nPut username@yourdomaindotcom or yourdomaindotcom into your Nostr setting, done.\n\n\n\nI set this up before, but later I found out that it's actually better not to stand out so much in the crowd, especially in the Wild West. \n\n\n\n**If you don't have any site, you can link your SN LN address as NIP-5 verification in Nostr**.\n\nSimply go to SN settings—Nostr—NIP-5, put your Nostr public key into the public key section, then go back to Nostr and put your SN LN address into the NIP-5 area, done.\n\n\n![nostr.png](https://m.stacker.news/21666)\n\n**Or getting verified through a service.**\n\nhttps://bitcoinnostr.com/\n\nhttps://nostrplebs.com/\n\nAnd many others, but I don't see any point in using them; okay, you can get the purple tick and an address so others can easily search you instead of using the long string, but seriously, *linking to your POW makes more sense than buying a verification.* \n\n\n\n_____\n\n\n\n### **Safety Practices** \n\n**- Always use a VPN**\n\nNostr uses relays to communicate between Nostr clients, which exposes your IP address, meaning the relay operator can easily access your locations, but using a [VPN](https://stacker.news/items/259866) can solve this problem.\n\n\n\n**- Use an extension to log**\n\nUse [Alby](https://getalby.com/) or [Nos2x](https://github.com/fiatjaf/nos2x) to log in, and avoid copying and pasting your private key into any sites.\n\n\n\n**- Follow and engage wisely**\n\n*Anyone* can log in with your public key and see what you follow and engage with. **Every like, comment, zap, and note is permanent and PUBLIC.\n\n\n\n**- Avoid using DMs**\n\nThe messages are encrypted, but the metadata, who you talked to, when, or small details like who initiated the conversation, how enthusiastic you were in the conversations or unwanted spam, and what time range you were online to reply (which potentially tells the time zone, etc) can be viewed by ANYONE.\n\n\n\n**- Only use trusted relays**\n\nYour notes could be nuked, but I haven't paid too much attention to this; However, here is one handy backup tool for it: [nostrsync](https://nostrsync.live/).\n\n\n\n**- The Art of Sharing**\n\nIt's basically the same practice for using any social media, but always think TWICE before posting anything, and avoid posting anything too personal because you `CAN'T delete` it in Nostr.\n\n\n\n- ***For photos***\n\nBetter remove metadata before uploading, especially the location.\n\n- ***For articles***\n\nAvoid posting directly. Ideally, post the links controlled by you instead then you can always trash the link whenever you feel like it.\n\n\n\n- ***Delay sharing***\n\nAvoid sharing anything in real-time, such as your current location; for example, I usually share things after I leave the place.\n\n\n\n- ***Cross post from SN to Nostr***\n\nCrossposting is quite handy for creators, but do remember that you can't delete anything in Nostr. I don't use this crossposting myself, I rather share a link in Nostr and from links that I can control—not only can I edit my content anytime, but I also have the freedom to trash the links whenever I feel like it!\n\nHowever, for those who would like to use it, go to settings, enable crosspost to Nostr, and done; also, it only shows up on platforms like [habla.news](https://habla.news/) instead of directly showing up in your feed.\n\n________________\n\n### **Final Words**\n\nDon't be so serious about the number games like in other social media because most of them are incorrect, and there are many bots there - **better care less about numbers and cheap likes, but how many people actually trust you and willing to vote with sats.**\n\n Also, there is no privacy online - using Nostr can be a good training on learning about what's [public and private](https://livingintheprivate.blogspot.com/p/home.html) - freedom comes with responsibility and think twice before you share anything there.\n\n**Have fun Nostring!** 💜\n\n \N 12139 \N 181158 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.1137771435849 0 \N \N f 0 \N 0 145361392 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 309826 2024-11-27 04:15:13.237 2025-03-29 22:39:46.788 love, projects, women, art, trump - my reactions to Bitcoin Nashville ### Bitcoin Nashville 2024, my reactions\n1.love\n2.projects\n3.women\n4.art\n5.trump\n\nI confess to the presence of love that I felt in every room I entered at bitcoin nashville. It is in the faces of everyone I have come to know and every new person I meet. I mean love in the sense that joy, friendship, encouragement, and genuine interest were mixed into the air, competing with oxygen and winning. \nLet me say, however, I didn’t enter all that many rooms, at least inside the conference center. My general admission pass was limited, plus I didn’t find the schedule on the official app until the third day. And then beyond that, I refused to stand in line for an hour. I’m not a good event attendee. When I was inside the conference center, I mostly sought out a quiet corner and hunched over my phone or laptop. Shameful, but I was among the 50 percent of people who were doing this at all times.\nThe love I felt was not within the brightly-colored branded halls, but in the satellite spaces, like bars and restaurants, and Bitcoin Park.\nThe best thing I heard all week was shouted to me over the live music on a rooftop bar: “What’s different about us is that we’re all following our dreams.”\nExcuse my indulgences in sentiment. But being surrounded by love is a signal to me that I’m going the right way in my life. I acknowledge it, I am thankful for it. Maybe that's cringe, but who would rather have hate souring the air?\n\nWhen I wrote previously about my [expectations](606345), I was worried about the conference feeling like a performance. Not that that’s wrong. A conference is the opportunity to present what you do. If that’s framed with a little falsity, it’s only natural and necessary sometimes. I worried over it just because of me, because I have a preference against participating in the show. Anyway, I need not have worried. Of course I wondered a little about all the people I was seeing and what their involvment is inside this space. Often their clothes told me[^1]. Still, I never felt particularly bothered by anyone. After the first day, I released myself from being the judge of everyone’s intent, and just enjoyed the conference. \n\n## _the projects I heard from_\n### Expo and Stages\n—> [BitEscrow](https://playground.bitescrow.app/) \t—> [Compass coffee](https://www.compasscoffee.com/products/bitcoin-blend?variant=39564113477728&selling_plan=4096096) —> [Voltage](https://www.voltage.cloud/)\n### Stacker News Live on the road\n—> [Wavlake](https://wavlake.com/)\t —> [Thriller](https://www.thrillerbitcoin.com/)\t —> [Zeus](https://zeusln.com/) —> [Tunestr](https://welcome.tunestr.io/)\n—> [ZBD](https://zbd.gg/)\t —> [ZapConf](https://www.zapconf.xyz)\n—> [Joe Martin](https://www.joemartinmusic.com) —> [JustLoud](https://www.justloudworld.com/) —> [Sara Jade](https://sarajademusic.com/)\n### Bitcoin Park\n—> [Strike](https://strike.me/)\t\t—> [Fold](https://foldapp.com/)\n—> [Bitaxe](https://bitaxe.org/)\t\t—> [Bitcoin Larp](https://www.base58.info/classes/larp)\n### Makerspace\n—> [Yopaki](https://www.yopaki.com/)\t\t—> [CASCDR](https://cascdr.xyz/) —> [Damus](https://damus.io/)\n### Hackathon\n—> [El Tor](https://devpost.com/software/el-tor?ref_content=my-projects-tab&ref_feature=my_projects) \t\t\n### Misc\n—> [Dirty Coin](https://www.dirtycointhemovie.com/) \t—> [The Bitcoin Editors](https://thebitcoineditors.com/) —> [Access Tribe](https://www.accesstribe.com/)\n—> [pleb devs](https://www.youtube.com/@PlebDevs)\t —> [pleb print shop](https://twitter.com/PlebPrintShop)\n\nThere were a lot of women. No shortage of women. Not as many as men, but still, a lot of women. Each woman I spoke with was so happy to be there. So hey, that’s nice!\n\nThe art museum was just two blocks away from the conference center. I had to go. They were exhibiting the work of [Alexander McQueen](https://en.wikipedia.org/wiki/Alexander_McQueen), a fashion designer, late 90s, early 2000s. People wear his clothes on red carpets. He was totally uninhibited in his creative vision, and that was evidenced by his theatrical runway shows. The exhibition was shared with photographs taken by his close friend from behind the scenes, and in them the life remains in the clothes. I never thought I would look at haute couture. It was very cool, and that’s all I’ll say for now but I do have many thoughts here. Pin it for later. \n\nTrump did an awesome 50 minute comedy set. I really enjoyed it. What I heard most from people was some things he said could change things, but none of it disrupts our focus. Bitcoin is a ride we’re all on. Bitcoin doesn’t have a president. It’s technology unleashed, and the world will grapple. If anything, it was a nod from power, an acknowledgement, that bitcoin is something deserving of respect, and I appreciate that. Trump did not have to come, so it means something that he did. Whether he’s aware of what it means, I’m not convinced, but I don’t require his understanding. I don’t expect that from him. \nFrom the speech, I gathered that Trump knows three facts about bitcoin: there will only be 21 million, it’s made possible by smart people, and you shouldn’t sell it.\nOne point he made is that the US should dominate, in all things. This was explanation for why he has a welcoming stance on bitcoin. I’m not convinced that US domination is necessary, it’s not the thing to strive for. That’s the desire that ends with our nation crumbling apart like it currently is, and many nations before it. However, it is tricky to determine a common goal for a united people that doesn’t spell destruction. Are we working on this?\n\nI liked the conference! I had a great time. It is a monumental effort that makes it happen, congrats to the people who put in that work. \n\n[^1]: Did anyone else see the doge print sweatsuit? \N 15488 \N 309826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4713620697861 0 \N \N f 0 \N 0 206464468 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 96454 2023-12-09 08:19:50.736 2025-03-29 22:39:46.789 Should the Bugle do Stacker Only News Specials? Stacker.News has quickly become my favorite web related activity/community. Prior to stacker.news, it was giving the CIA all my information on Twitter. One reason I like it here is that Twitter never has generated me cigarette money like Stacker has. \n\nAs a content creator, I would like to smoke more cigarettes to produce higher quality content. It's an endless cycle that ends with death by smoke inhalation but you and I have a long way to go before we get there. \n\nAnyways, there aren't very many users on this site, which is incredibly unfortunate. The incentives on here are absolutely brilliant because you are incentivized to engage in order to earn. There are so many sats flowing on this platform, despite small user base. \n\nI am incentivized to grow the platform as the world's second most important journalist in order to earn more cigarette money. The more people that come to this platform, the more individuals who will be introduced to the Bitcoin standard of journalism. \n\nThis media organization is going to be incredibly obnoxious with a ref code. It seems like the only logical path forward. We are strongly incentivized to invest in this platform. \N 11328 \N 96454 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.94705113725984 0 \N \N f 0 \N 0 20770561 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 393114 2025-02-05 19:47:55.763 2025-03-29 22:39:46.79 ⚡️ Greenlight Is Now Open for Business 🚦 https://image.nostr.build/9f008ddbea3cfbe494dd71589c80edf0e67261593207b0174136fef94b41f78a.jpg\n\nAfter several months of gathering feedback and additional testing, Greenlight is now officially available for commercial-grade use worldwide.\n\nGreenlight is a Lightning-as-a-Service (LaaS) solution that offloads the complexities of operating a Lightning node to Blockstream experts while keeping keys in the user's control for greater security.\nhttps://image.nostr.build/e530aac4e34748b7c5c22527b691e8ec289cd572cc8edd985f4d99f2827bd511.png\n\nFor Lightning developers, this not only reduces the risk and liability of holding user funds but frees up resources that would otherwise go to node operations—so that you can focus on your business and create the best app possible.\n\nIn the spirit of Bitcoin and to encourage the growth of the non-custodial Lightning options, we are offering a free Greenlight plan designed to empower small businesses. The plan allows developers to deploy up to 1,000 on-demand nodes.\n\nFor enterprises with higher volumes, we offer custom pricing plans that expand the node limits and provide uptime and availability guarantees.\n\n\nLearn more by accessing the all-new Greenlight Developer Console, which helps run your day-to-day operations ⬇️\n\nhttps://greenlight.blockstream.com/\n\n\nRead more about how you can integrate scalable, non-custodial Lightning infrastructure into your business 👇\n\nhttps://blog.blockstream.com/greenlight-is-now-open-for-business/ \N 15463 \N 393114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4962941529557 0 \N \N f 36729541 \N 1 144558500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 395356 2025-02-08 11:44:06.973 2025-03-29 22:39:46.791 Kill the Messenger, the Psyops, & Bitcoin Last night my lovely wife and I watched the film [Kill the Messenger](). It had been on my list for some time but we'd never gotten around to watching it.\n\nFrom the book of knowledge\n\n> It is based on the book of the same name by Nick Schou and the book Dark Alliance by Gary Webb. The film stars Jeremy Renner, who also produced the film. The film was released on October 10, 2014, and depicts a reporter's suppressed attempts to cover the CIA involvement and secret support of large scale cocaine sales to fund the Nicaraguan Contras.\n\nI have been familiar with the story but never read either of the books. What hit me after watching the movie was the fact that despite the many times that the absolute evil of the state is exposed, we do not see significant change. It is pretty depressing to come to the conclusion that even when the US government's lies and evil is exposed it continues to go on largely unabated. As far as I know little of consequence happened due to Gary Webb's brave work.\n\nIt reminded me of Edward Snowden's revelations. I believe they have had a larger impact but still not nearly the impact I had hoped for. In the film they do a good job of showing some of the many tactics used when someone starts exposing the state for what it is. First they change the focus of the allegations making them harder to believe or harder to prove. They overstate the case. In Webb's case the media pushed a narrative (pushed by the CIA) that Webb was saying the CIA targeted the black community with crack cocaine. Actually Webb discovered that the CIA used drugs to fund their operations. He didn't claim the CIA was directly selling drugs to blacks. See the difference. What happened was a consequence of the CIA's action but unlikely the goal. But this framing makes Webb sound more extreme.\n\nThis happened with Snowden and also during the Covid19 pandemic. Its a tactic that works on the masses. Make your opponents sound unreasonable. Make them toxic. The second tactic they point out is attacking the messenger. They go after the person and find flaws. Highlight them and do character assassination. Never mind that most of the "leaders" in most democracies are full of similar character flaws and mistakes. That is never brought up in this context.\n\nThe third tactic that jumped out at me was the divide and conquer strategy. The CIA actions that are the subject of this film happened under Reagan, a Republican. So of course his opponents show much interest and John Kerry investigated it. The common thread I see here is that these types of things are bi-partisan. If you don't believe me you aren't paying attention or you have been indoctrinated into the matrix. The CIA is a permanent fixture in US government like many tentacles of the state yet when something like this is exposed it quickly becomes consumed by party politics. I get it. I don't think it is a conspiracy, it is simple game theory. Politicians simply want power and will use anything to win over their opponents. The result however is that the real root issues are never solved. The CIA is not reformed or dismantled. Real change doesn't happen because real consequences never occur. I don't think the filmmakers intend to make this point but it struck me. If you study the history of the CIA you will see that they have a long track record of this type of behavior. If it is a strategy, its genius. Get the public focused on party politics on the puppets, not the real power centers.\n\nThe final tactic that saw expressed was on the black community. It is possible that the CIA intentionally wanted to push crack into these communities. I just haven't seen that demonstrated. In truth, it doesn't matter. The real issue is that the CIA didn't care. The ends justify the means. The consequences of the CIA's actions led to massive death and destruction in places like Los Angeles. It makes me sick as I write this. For what? To fund fighters in a foreign conflict? Please. In the film they show various "leaders" in the black community from that time. It seems obvious to me that these people while they are speaking many truths seem to be doing so for their own profit just as the politicians do. Some of them were politicians. Did they actually put their necks on the line and keep pushing for change? I would argue no. They focused on the CIA's tactic. They sold the distortion that Webb was clamming the CIA targeted their communities.\n\nNow, this all left me feeling depressed. Many believe that if we could just expose the evils of the world that would be enough. It isn't sadly. The masses do not have the attention span nor the desire to question their programming. That's my experience at least having talked with many friends and family over the years. I've been aware and a follower of politics since my early years as a pre-teen. I was and still am a nerd. I have a fairly long memory and it still to this day blows my mind how little people seem to notice. How they seem to not notice that politicians always promise things they can't or won't deliver. Yet they still seem to believe in democracy and their team. They are blind to the manipulation. To the repeated failures. To the repeated exposures of the truth.\n\nSo, I am sitting there feeling down about all this. Talking to my wife about it and then I remembered bitcoin exists. And I told her, this is one reason why bitcoin is hopeful for me. The state has much of its power due to its ability to print money. Taking that power from them alone will not affect the change we want but it is a huge start. It would limit the ability to wage these wars that kill so many people. It would limit their reckless spending and force them to steal in more obvious ways. Ways that will piss more people off. So bitcoin is hopeful.\n\nWhat do you think? I was a teen when these events happened. I'm curious what I've missed and maybe if I got some things wrong. I remember this story being published and I also remember Webb's death which is a whole other story.\n \N 980 \N 395356 \N \N \N \N \N \N \N \N crypto \N ACTIVE \N 11.2679835059024 0 \N \N f 8268506 \N 1 247238047 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 102665 2023-12-24 15:18:41.073 2025-03-29 22:39:46.787 Welcome to the devs territory! Hello devs, hackers, plebdevs, stackers, no-coders, AI bots, and beyond!\nThis is the founding of the devs territory here on stacker.news \n\nI'm Austin the bitcoinplebdev from Austin and I wanted to start a devs board for sharing tips, tricks, hacks, libs, bips, nips, gists, and everything in between that will help us level up as devs.\n\nWhether you're a seasoned pro with years of experience or just starting out on your coding journey, this is the place for you!\n\nA bit about me:\n- I'm currently working as a freelance web developer out of pleblab in Austin, TX\n- I run a dev education community called plebdevs where we learn about Bitcoin/Lightning app development with courses, workshops, and 1:1's: https://plebdevs.com\n- I work on stackernews a bit as a contributor\n- I work on nostr, prisms, zaps, nwc, and much more with: https://makeprisms.com\n- I post a lot of side projects / example projects / templates / boilerplates on my github (All my work is ugly but it is open!): https://github.com/austinkelsay\n- I'm good with Python/JS/Typescript/React on the frontend and backend\n- I'm currently learning Rust :crab:\n\nWhat I'm gonna do as the owner of ~devs:\n- Keep posting costs cheap (until it starts getting spammy)\n- Focus on interoperating with nostr to allow your content to reach the widest possible audience and enable you to receive more zaps\n- Create a daily devs hangout post M-F to share short stories, advice, tales of bugs, and of course memes.\n\nI would also love to hear any ideas you have or what you would like to see out of the devs territory\n\nOnwards! \N 15719 \N 102665 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.1781224659364 0 \N \N f 0 \N 0 42052125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 178792 2024-06-02 12:42:25.94 2025-03-29 22:39:46.788 Operation Saylor - Episode 17/120 # Operation Saylor - Episode 17/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 17, corresponding to November 2023.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.35916794 BTC\n- € stack: 40.80 €\n- Current total value in €: 46,253.50 €\n- € into BTC: 30,000 €\n- Paid back to bank: 5,859.20 € \n- Outstanding debt + interests: 38.085,13 €\n- Installments to go: 104\n\n\n## Charts\n\n[![episode-17-stack-value-vs-debt.png](https://i.postimg.cc/Z50gcJTf/episode-17-stack-value-vs-debt.png)](https://postimg.cc/G4wq3wTY)\n[![episode-17-bitcoin-stack.png](https://i.postimg.cc/NfdSmKw9/episode-17-bitcoin-stack.png)](https://postimg.cc/Xpys07q4)\n\n---\n\n## Log\n\nHi again and welcome to another episode of Operation Saylor. This month, I've decided to invest this small space to present some ideas that have been flying in my mind recently around the scaling problem, custodianship and the future of banking. I expect this episode to trigger some people's feelings (I hope you don't choke me @Darthcoin) and, hopefully, lead to some interesting debate.\n\nLet's begin by picturing the final station of the journey we are on: a world where Bitcoin has won the monetary competition wars and has become the standard asset for the entire world. All of humanity saves in Bitcoin and transacts in it. Prices are set in sats, payslips flow in sats, life savings get stored in sats. We made it.\n\nThose who are technical enough know that, unless some amazing breakthrough comes along, Bitcoin's layer 1 can't sustain this on its own. If billions of people tried to perform dozens of transactions daily, the mempool would become a massive bottleneck, and small transactions (small possibly being anything under 6 figures) would simply never make it. And let me stop here and say that this idea of a dozen transactions per person and day is outdated and comes from a Fiat mindset. As Antonopoulos anticipated, we are heading to a future where we transact more and more frequently, to the point of doing so continuously in mathematical terms. Think, streaming sats. \n\nAnyway, I'm derailing. Mempool can't sustain all the transactions in the world. We have a scaling problem.\n\nNow, a scaling problem is not the end of the world. It's just a problem that needs to be solved.\n\nThere are several solutions being developed out there to tackle this problem. Lightning is, of course, the best-known one. And I would personally say, the most promising one. Liquid is another option, way less popular than Lightning, but nevertheless a working one. I am aware of the existence of some other ideas, such as Ark, which are in a less mature phase and may or may not someday turn into serious contenders. Since there is no such thing as a free lunch in the engineering design of money and payment systems, all of these different solutions come with their own unique set of trade-offs. You get some advantages by using them (smaller fees, faster settlement, etc) but you have to pay a certain price (locking in funds, trusting a federation, going from a serverless wallet to one that requires a 24/7 server to work, etc). Ultimately, these different sets of trade-offs will compete in the market and gain a certain market share. Survival of the fittest will determine what works and what doesn't.\n\nNow, let's take a pause from my rant and let me poke your brain with a riddle. I have intentionally left a way to transfer Bitcoin out of my explanation so far. I would like you to try to guess what it is before we continue. Let me give you some clues: it usually provides instant settlement. The fees are low or negligible. It is the oldest scaling solution that exists for Bitcoin. And I would bet my ass it moves several orders of magnitude more volume than all the other scaling solutions as of today.\n\nCan you guess it? I'm talking about custodians.\n\nThey come in many different shapes and sizes. Some of them are exchanges (Coinbase, Kraken, Binance). Some of them are wallets (Wallet of Satoshi, Blink, LightningTipBot). Some are managed by massive, regulated entities based in countries with sophisticated legal systems. Some are being run on a crappy Raspberry Pi stored in the broom closet of some cypherpunk PhD student. But they generally have one thing in common: given that they are just systems of IOUs, if both Alice and Bob have an account with the same custodian, they can transfer Bitcoin to each other instantly and without fees. As more people join the custodian, more transactions can be done easily. It scales like a charm.\n\nSome people have just read the previous paragraph and are already cracking their knuckles, ready to point out that that's not really transferring Bitcoin, strictly speaking. And that Alice and Bitcoin don't even really own any Bitcoin at the custodian. Not your keys, not your coins, right?. Trust me, I'm with you, but let's see if we can compromise and at least agree on this: **custodians are a valid storage and payment system as long as they NEVER fail to redeem their IOUs**. If you don't agree on this, you probably shouldn't waste your time reading further because you'll think that I'm talking nonsense. Now let me detour for a bit again and we will come back to this point.\n\nThe custodian scaling solution is, by far, the oldest one in Bitcoin's history. Mt. Gox was there way before Lightning was even an idea. Actually, the custodian scaling solution is not even a Bitcoin thing. If you've done a bit of reading about the history of money from authors like Saifedean or Lyn, you already know that the grandpa of Fiat money is gold receipts. Why did those exist? Because gold was hard and expensive to transact with and we couldn't possibly get all the transactions that we needed done by having everyone move around with gold coins and bars. The parallelism with the inability of Bitcoin's base layer to handle all the transactions the world needs to do is funny, isn't it?\n\nNow, if we are to be humble and level-headed, I think we should acknowledge that the systems of custodian's IOUs built on top of gold brought a lot of great things. Much trade was done, and much progress was obtained through it. It would have been difficult for merchants that were thousands of kilometers apart to constantly settle between each other with physical gold transfers. Well, if they had had to settle that way, they probably wouldn't have traded at all in the first place. Gold IOUs made this possible, and thus I feel forced to concede that these systems brought good things with them. As we already know, it also brought terrible things down the line.\n\nAnd this is where we can grab the Bitcoiner machine gun and shit on banks and governments: gold IOUs don't work because they are inevitably captured and corrupted. The physical centralization of gold in the vaults of a few banks makes it easy for a powerful entity to collude with the banks and take control of the system. Make IOUs slightly harder to redeem over time, bring some regulations that increase friction, add a few sparks of propaganda, and voilà, after a few decades, people will become dumb fucks that use the IOUs even AFTER you have openly stated that you are not going to redeem them for gold anymore. You now live in the Fiat world. I'm simplifying things a ton here, and if Lyn Alden would read this, she would probably have a seizure, but I think we can agree that **gold custodians didn't turn out to be a good storage and payment system because they ALWAYS end up failing to redeem their IOUs**, mainly due to centralization and perverse incentives. \n\nNow that I've built up all the background and context that I wanted, we reach the interesting part. We have agreed on the idea that custodians are awesome if, and only if, they don't betray their promises. But history teaches us they tend to do so. So the question becomes: what's going to be the custodian's role in Bitcoin's scaling problem? Are they going to be a valid solution? Are they going to disappear into oblivion? Are they going to bring all the evils that came with gold custodians? Are they going to succeed massively and kill all other scaling solutions?\n\nI'll take a pause here and clarify that I'm very humble about what comes from this point on. I don't know shit about fuck, and I'm sure the future will surprise all of us. Yet I still want to present my vision because I think people discard the custodian scaling solution way too often, mostly based on dogma and emotional judgments. In any case, and to make things a bit spicy, I am going to give you my hypothesis before I build them up: **I believe custodians will play a great role in a hyperbitcoinized future, I believe they will contribute greatly to Bitcoin's success, and I feel dunking on any custodian just because it's a custodian is pretty stupid and doesn't help us move towards hyperbitcoinization**.\n\nIf we were to assume that Bitcoin custodians are going to be just like gold custodians were, then the answer is clear: we better steer away from them because we know how the story ends, and it's not pretty. But I think that would be a pretty dumb assumption, since Bitcoin and gold are very different. Let me point out a few relevant differences between them:\n- Handling large amounts of Bitcoin does not require government's consent. Handling large amounts of gold without government meddling is impossible.\n- Large amounts of Bitcoin can be settled in a few minutes at almost no cost. Gold settlement (physical settlement) scales awfully, and probably the other way around: the more you want to move, the more slow and expensive things get.\n- Control over Bitcoin, if the owner consents, can be audited in real-time and pretty much for free. This is not the case at all with gold.\n- Hand- to-mouth users might find it impossible to transact in the future. Onchain will be prohibitively expensive, and sovereign usage of lighting is beyond the ability of 99.99% of people.\n- Ecash allows for custodians that provide extreme privacy while taking care of client funds. People under a custodian's ecash system can enjoy ownership and transactions with other clients of the custodian with perfect privacy. Achieving the same level of privacy with gold would be extremely hard and crazy expensive.\n\nThese differences between gold and Bitcoin, along with others I haven't listed, directly affect what custodianship could look like in the Bitcoin world. Here are a few observations on the differences I can see between gold custodians + IOUs and Bitcoin custodians + ecash.\n- No regulatory barriers to entry. Anyone can become a custodian. It wouldn't be a trivial thing to do, but it would be way easier than trying to start a bank in, say, the US, nowadays. This is because custodians could easily move to any friendly jurisdiction. Or just not give a fuck at all and operate fully in cyberspace.\n- Bitcoin can move fast. Really fast. This has some consequences:\n - The magnitude and speed of bank runs is a million times more severe than in the gold standard era. Custodians live under the threat of this happening at any moment. The slightest doubt over a custodian's reliability could cause one.\n - Users could spread their liquid funds across multiple custodians and shuffle them around easily. We could even reach a point where you use a simple wallet with a single balance, but the funds are actually distributed across multiple custodians simultaneously. Balances across custodians could be shifted at any time to group funds to make a large payment, to avoid some specific custodian or increase funds in another, etc.\n- Federated custodians are a thing. Trust can be placed in multiple, unlikely-to-collude parties. \n- Proof of assets is doable, and it seems like even proof of liabilities could be a thing at some point (https://gist.github.com/callebtc/ed5228d1d8cbaade0104db5d1cf63939). This means that the chances of a custodian successfully engaging in fractional reserves would be dramatically reduced. And that rugpulls would have to be complete and immediate, or we would go back to instantaneous bank runs.\n- Self-custody of Bitcoin by normal users would still be somewhat of an option when compared to the gold scenario. This is another looming threat to custodians individually and also as an industry: behave, or I'll take funds back to my wallet. A constant competitor of sorts, a bar that any custodian needs to overcome just to be considered. In today's banking and government situation, given that banking is an oligopoly that you can hardly escape from, it doesn't matter if a bank fucks you hard in the ass. Your only option is to go to another bank that's going to do the same thing. \n\nAll of this leads me to imagine that, in the future, we will have a healthy market for Bitcoin custody. A market with a lot of different custodians competing, where customers have access to excellent offerings and great prices. A market where trust will be betrayed infrequently, for doing so will be way more expensive than behaving. We agreed early on that custodians are a valid storage and payment system as long as they NEVER fail to redeem their IOUs. I think this will be mostly the case in the future. A lot of people will choose to use them, and a lot of transaction volume will happen within their systems. They will be another tool for scaling Bitcoin, just like Lightning or Liquid. And hopefully, they will bring more good than evil. \n\nI don't think custodians will be perfect. Humans are evil and stupid, and mistakes will be made. We will also probably face cycles of centralization and decentralization: there are incentives for custodians to grow larger and larger. And at a certain size, bad things will probably happen, and we will then face trends of decentralization. An ever-going cycle of custodian boom and bust. Ultimately, issues will never disappear completely. But, if custodians do their job properly 99.99% of the time, perhaps the net impact they make on society will be massively positive. Just as we can acknowledge that gold standard custodians didn't only bring negative things but also positive ones, perhaps we can also imagine that this will be the case with Bitcoin custodians. And perhaps the balance between good and bad will be much better than with their gold ancestors. \n\nI'll close by repeating my hypothesis again: I believe custodians will play a great role in a hyperbitcoinized future, I believe they will contribute greatly to Bitcoin's success, and I feel dunking on any custodian just because it's a custodian is pretty stupid and doesn't help us move towards hyperbitcoinization.\n\nFinally, I believe we should always leave the door open for unexpected technical breakthroughs to come along and change things completely. I don't think many people in 2012 could have foreseen the coming of Lightning and just how positive and impactful it would be. Maybe some new technology comes around in a few years and provides us with better, more sovereign ways of transacting Bitcoin fast, safely, and cheaply.\n\nAnyway, that was quite a rant. I hope you found it interesting. I'll be very curious to hear your thoughts. As always, thanks for reading and see you around next month.\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n- Episode 16: [https://stacker.news/items/288719](https://stacker.news/items/288719)\n \N 19332 \N 178792 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.3637572010908 0 \N \N f 0 \N 0 21837027 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436699 2025-03-13 19:50:28.423 2025-03-29 22:39:46.791 Operation Saylor - Episode 18/120 # Operation Saylor - Episode 18/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 18, corresponding to December 2023.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.33998635 BTC\n- € stack: 424.60 €\n- Current total value in €: 52,818.07 €\n- € into BTC: 30,000 €\n- Paid back to bank: 6,225.40 € \n- Outstanding debt + interests: 37,718.93 €\n- Installments to go: 103\n\n\n## Charts\n\n[![episode-18-stack-value-vs-debt.png](https://i.postimg.cc/9QCwfWzt/episode-18-stack-value-vs-debt.png)](https://postimg.cc/KRp8qhPR)\n[![episode-18-bitcoin-stack.png](https://i.postimg.cc/rwj00vr6/episode-18-bitcoin-stack.png)](https://postimg.cc/75CYjt9X)\n\n---\n\n## Log \n\nHello again and welcome to another episode of Operation Saylor.\n\nThis has been a rather slow month and I don't really have any mind-blowing ideas to discuss with you. One of the factors guilty of this is that my brain has been strongly kidnapped by Atlas Shrugged by Ayn Rand, and I'm pretty much using all of my leisure time to devour it. I'm roughly at 40% of it, and you can't even imagine how much am I enjoying it. (Warning: I might drop very subtle and light spoilers).\n\nI would guess that, for many normies, the book would be rather boring. I think the reason it tickles us bitcoiners is our intellectual obsessions with individualism, sovereignty, the fight of man against the collective, economics, etc. It's really humbling to realize how the struggles we are facing are old. I guess it's also hopeful that we now have such powerful tools like cryptography and Bitcoin. Dagny Taggard and Hank Rearden could have used them.\n\nThe act of reading this book gives me a feeling which I don't think I've ever experienced before with any other book: it makes me feel understood. As a human being, in some kind of spiritual plane. As I go through the pages, I can't help but smile when I see characters so dramatically fitting my values and villains so accurately mimicking the evil people of my reality. The struggles of the main characters fill so well with the struggles of Bitcoiners, and their rebellious nature is the same I see when I'm surrounded my maxis who are regularly breaking the law in favour of freedom and righteousness. For example, when I read the chapter where Wyatt laughs as he chooses to burn his oil fields rather than giving them up to the collectivist looters, I couldn't help imagining that's exactly what @Darthcoin would do in that same situation. Somehow, as I read, I can feel Ayn Rand looking down on me from heaven, with a warm smile on her face, finding adorable how a modern day rebel is getting some spiritual serenity and warmth by going through her pages. A good friend of mine says our monkey brains are not really wired to always be in a contrarian position towards the rest of the other monkeys around us. That being the perma rebel takes a toll on you. Falling through the Bitcoin rabbit hole has led me to become a contrarian on pretty much all aspects of life with respect to pretty much everyone around me. This book, somehow, feels like the much-needed hug of a likeminded stranger. A hug that allows me to relax for a minute and feel appreciated _precisely_ for all these values and ideas that make the rest of the world point at me in disgust. It's a similar feeling to what I experience in Bitcoin meetups, but much stronger, and somehow, much deeper.\n\nThe book is also having another fun effect: it's making me place people in two classes as I go through my day. It's an overly simplistic way of looking at the world and people, I know. But now, as I go on with the errands of my life and I observe other people, I think to myself: this one is a virtuous, freedom fighting, dignified producer. This other one is a miserable, coward and soulless looter. \n\nFor example, I meet a young woman who has started a business, is working hard, taking risks and sacrificing herself to build a great company that provides a great service, only earning through the value she provides to others. And it's almost as if I could see a golden glow coming out of her. I feel a strong bond, a feeling of kinship and camaraderie of sorts towards her. I respect her and her presence lifts me up.\n\nThen I meet another man, a public servant in his fifties. He has lived for almost thirty years working for the state, completely parallel to any kind of free, private market. He doesn't give a damn about the work he does, and as a professional, he's probably completely useless. Outdated, unmotivated, he has the level of relevant skills and knowledge of a 15 years old without his energy, motivation and hunger. He rants endlessly about how he finds the conditions of his employment miserable and thinks he deserves more. But he lacks the spine to fix it by leaving his current job and going to the market to find a better one, which is what any decent person that loves itself should do. He's counting the days to retire and start earning a pension to be able to pay for his bacon without moving a finger ever again. He is fully aware of how the pension system of the commie european country he lives in is completely unsustainable and admits this knowledge openly. Regardless, he decides to play ostrich. Either awaiting the next generation to be completely overburdened with the titanic task of sustaining him and his boomer gang, or simply choosing to not face the fact that the pension ponzi will collapse and he will fall into poverty. As I see him, I feel a strong repulsion. No golden glow for this one, but rather a strong stink. Even if he's friendly towards me, I still can't help but feel that his way of life is a spit in my face. Something completely indecent. I want to leave the room ASAP.\n\nThis way of looking at people scares me a bit. But it also feels right. Would the western world be in the shithole situation it is today if the mainstream morality would openly despise people who don't _truly_ contribute to society? Shouldn't we strongly praise the innovators, the risk-takers, the hard workers?\n\nThis book is long, but I'll probably finish it before the next episode of Operation Saylor. I can't wait to find out who John Galt is.\n\nTo finish up, I'll leave you with a link to [Francisco D'Anconia's speech on money](https://www.capitalismmagazine.com/2002/08/franciscos-money-speech/). If you haven't read the book, and going through this passage doesn't grow some urge inside of you to pick it up, I don't know what will. As always, thanks for reading and see you around next month.\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n- Episode 16: [https://stacker.news/items/288719](https://stacker.news/items/288719)\n- Episode 17: [https://stacker.news/items/322189](https://stacker.news/items/322189) \N 4624 \N 436699 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 27.4799658429582 0 \N \N f 194885380 \N 1 21947215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 14:03:54.823 f \N \N \N 0 0 0 0 1 0 0 303030 2024-11-21 10:25:53.259 2025-03-29 22:39:46.792 [meta] Renewing ~econ(?) Guys, I don't think territories are worth 100K sats per month. Maybe this is similar to how monkey-jpeg buyers feel. There is basically no tools to do anything cool; unless I put in time on top of the 100K to build. In 2024, I don't have that spare capacity. The 100K basically lets other people have the luxury of muting the posts. That's the only real economic benefit. There is no way to create a moat at all. \n\nI think I've made like 8K total off of the revenue for 2 months.\n\nI have to renew on the 5th. I'll cover 50K sats, if other folks want to kick in the other 50K. If you leave a comment with a unique # of sats, then zap me directly (not the post) that unique number of sats, then I'd be able to refund you if I don't get 50K in aggregate. \N 21060 \N 303030 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.1459421439051 0 \N \N f 0 \N 0 66743564 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 392336 2025-02-05 07:22:38.34 2025-03-29 22:39:47.087 Hypothesis around bitcoin adoption A lot of people think bitcoin won't be used as a currency while it is still volatile. I partially agree with this view. However, I don't think that is the full picture. \n\nThe bigger picture is that the costs of using bitcoin (costs such as learning how to use it, taking time to buy it, learning how to store it, and etc.) outweigh the benefits. There are no incentives to use bitcoin over fiat nor are there costs of _not_ using it. \n\nSo if bitcoin was still volatile and all those costs still existed, people would start to adopt it if they were required to adopt it to receive some benefit or avoid other greater costs of not using it. \n\ne.g., Suppose over Christmas Stanley kept a set of limited edition water bottles that you could only buy with bitcoin (or list it for $100,000 or 100,00 sats). Or that they did this for all water bottles. I'd be willing to bet a lot of parents would have been willing to go through the steps of acquiring bitcoin for their kids. \n\nSo this is my hypothesis:\n\nBitcoin won't become widely adopted as a currency until people have an incentive to use it for a product. To be clear - it won't be just that you _can use it_ for a product. It will be that you basically _have to use it_for a product or that product will be effectively unattainable. \n\nI think this process will begin ahead of the halving in 2028 when someone realizes they can get bitcoin ahead of a reduction in supply. \n\nHere is how I would do it:\n\nFirst, establish a partnership with a company that will facilitate the process of buying and storing bitcoin (need not be used but can be used).\n\nThen I would create a limited edition good (like a pair of sneakers) and have an early release for people willing to buy it with bitcoin. \n\nLastly, release a statement that says there will be unannounced drops of other limited edition goods with pre-release sales for people who pay in bitcoin (this ensures its not a one off) and eventually all goods will be available to buy in bitcoin. \n\n \N 20825 \N 392336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.69037484760844 0 \N \N f 89659674 \N 1 234669183 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410420 2025-02-20 13:23:39.381 2025-03-29 22:39:47.087 GitHub - TonyGiorgio/onyx: A censorship resistant Nostr client for Android \N https://github.com/TonyGiorgio/onyx 17209 \N 410420 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 19.071475800807 0 \N \N f 615934641 \N 3 22818809 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 422334 2025-03-02 11:48:56.382 2025-03-29 22:39:47.088 Bitcoiners don't really have a good understanding of _____ Not that you all do, but as a bitcoiner, beyond money, I naturally also carry supreme omniscient wisdom regarding:\n\n- Seed oils\n- Family values\n- Geopolitical tensions\n- Vaccines \n- Bluetooth headphones\n- Religion\n\nI don't understand why you all seem to make such a fuss about such things. There is no nuance in life! No grey, just black and white! And I am firmly on the right side of all these issues.\n\nOkay, okay...on the real though. Some think it's alllll about being right or wrong in the world, and I've certainly noticed that mentality among the higher-than-thou, orange-pill-overdose bitcoiners.\n\nNow, this is definitely exacerbated by social media. I do think that the vast majority of bitcoiners around the world are but mere humble plebs like stackers here, but there's no ignoring that some online Bitcoin voices can carry a lot of influence. \n\nThere's something about a discovery that "others don't know about" that apparently gives people the free pass to inflate their egos larger than the money supply itself. Why is that? What about having a crystallized understanding of the fiat system leads one to think they can pinpoint all the issues in the world to simple causes? \n\nAnd based on your own observations and experience, are there areas in life that bitcoiners seem to double down on, that they really could just chill about?\n\nI see it happen all the time, but if anything, Bitcoin highlighted to me just how layered and nuanced problems are in the world.. Everything is connected.\n\nMonday stackers...GET AFTER IT THIS WEEK. \N 2789 \N 422334 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 1.9526762413329 0 \N \N f 2796107533 \N 19 218481985 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 428670 2025-03-07 13:54:02.98 2025-03-29 22:39:47.089 Opcode Explained - Website with 256 opcodes \N https://opcodeexplained.com/ 19655 \N 428670 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.0439228941781 0 \N \N f 523060195 \N 3 20482916 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403058 2025-02-14 12:06:34.816 2025-03-29 22:39:46.787 SN saved me last night This year has been difficult for my family financially. My income has dropped considerably compared to last year, which has made it difficult to pay the bills each month. August was no exception; it seems that the more days go by, the harder it is to earn money. In August, my husband was in charge of paying the rent and food (it is our biggest expense). Normally, we always pay half of everything, but things have gone so badly that I have not been able to contribute. This month, I was in charge of paying the monthly school fee (it is not much) and I only paid half of my daughter's soccer academy. Last night, we ran out of gas just as I was preparing dinner. I turned around and looked at my husband and told him that we no longer had gas, but neither he nor I had the money to buy a new gas cylinder (we do not have piped gas). What could we do? We had to hurry and buy new gas, otherwise I would not be able to cook and we could not buy prepared food because we did not have the money to order food to be delivered. The solution to all this: SN, I have earned some sats since I've been here and although I didn't want to spend those sats because I was collecting them for another purpose, it was our only salvation/solution. If 10 years ago someone had told me that I could earn sats for making posts and comments, I wouldn't have believed it and much less believed that it would save me from some trouble. Thanks stackers, thanks SN. \N 2681 \N 403058 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.54263039421269 0 \N \N f 315640306 \N 2 145972679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 356670 2025-01-05 09:30:53.688 2025-03-29 22:39:46.788 My First Year On Stacker News I joined SN one year ago today. I think I first read about it on the r/bitcoin subreddit. I was hooked from the start. I abandoned Facebook years ago. I never really embraced twitter. I really liked the idea that sats were taking the place of the traditional "like" or up vote. Stacker News was real value for value.\n\nI began to learn a lot. High signal/low noise. My interest in bitcoin flowed naturally from my politics, the belief in freedom and a natural distrust of a powerful central government. I am a retired lawyer, so my expertise, to the extent I have any, was in law, politics, and economics. Math wasn't my strong suit in school. I got by, but was no wiz. I wasn't a techie either, though I always enjoyed messing around on a very basic level with computers for fun.\n\n I am an older guy. I struggled, and still struggle with the technical aspects of bitcoin, but the people here helped me to learn more than I imagined I could learn. I had tried linux in the past, but soon I had completely abandoned windows for good, thanks to inspiration from fellow SNers. I had run an Umbrel node for a few months before joining, but now I began learning more about what was going on beyond simple plug and play. I started teaching myself python through youtube videos. Progress was slow, and competence is still far off, but I'm enjoying \nthe journey. There are a lot of talented people here on SN who are generous with their time and knowledge. \n\nThanks to the frequent AMAs I was able to communicate with people with whom I would never have had the chance to speak. I particularly remember Lyn Alden, Anita Posch, Nik Bhatia, jb55, Alex Gladstein, and Alex Leishman. I had occasional interactions with Kevin Rooke, whose podcasts continue to educate me. DarthCoin berates and abuses me at least once a month. Jimmy Song frequently posts polls, fiatjaf discusses new nostr developments and offers bounties, and Odell and Gigi will sometimes post their own latest writings here. Guy Swann occasionally shows up too. I'm sure I'm forgetting many others. For a committed bitcoin fanatic, this is the big leagues.\n\nKeyan Kousha, founder and fearless leader, also contributes posts and comments frequently. He is a very smart yet modest guy. Most users don't kiss his butt too much when they engage with him. Some of his posts even get ignored, just like some of mine. That's a wonderful thing about the SN culture. It's a level playing field.\n\nStacker News has come a long way in one year. Since I joined, there have been many improvements, including polls, an edit button, a referral program, NIP-05 support, bounties, the rare and valued cowboy hat, NIP-57 zap support, bookmarks, and a nostr sub, among others. I am sure there are many more in the pipeline.\n\nI just want to express my appreciation for this site, and I look forward to learning more as our world moves to a bitcoin standard. \N 6526 \N 356670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.47131887025289 0 \N \N f 0 \N 0 39129411 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436355 2025-03-13 13:50:42.149 2025-03-29 22:39:47.088 Stacker News LIVE should get more ❤️ I’m surprised Stacker News LIVE doesn’t get more attention. I tune in every week for the live stream. It’s usually just me and a few others watching. The color commentary from Car @ThrillerX_ and @k00b on the top posts of the week is educational and hilariously entertaining at the same time (it’s a subtle humor, but still). \n\n**Maybe they need to give away some free sats during the show to get people revved up?**\n\nAnyway, I want them to know they are appreciated and people are finding it valuable. Thanks you guys! Keep it up.\n\n**Get in on the action…**\nhttps://youtube.com/@stackernews \N 19813 \N 436355 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 10.9128233766231 0 \N \N f 241566203 \N 1 206184371 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:35:30.854 f \N \N \N 0 0 0 0 1 0 0 442411 2025-03-18 14:49:37.755 2025-03-29 22:39:47.088 Proportion of Lightning node implementations # Introduction\nIf you want to run your own Lightning node, there are currently three main implementations. In this slightly more technical post, we'll briefly introduce them and then we'll look at their market share, including how it can be obtained.\n# Overview of implementations\nLightning Network is a payment network that allows anyone to create their own node implementation. To be compatible with the rest of the network, you just need to follow the [BOLT specification](https://github.com/lightning/bolts). However, this is very complex task and so the vast majority of users will use some already-made solution/implementation.\n\nToday, we have three main implementations to choose from:\n- **Lightning Network Daemon** (LND) from Lightning Labs\n- **Core Lightning** (formerly c-lightning) from Blockstream\n- **Eclair** from ACINQ\n\n**LND** is definitely the most widely used Lightning implementation, which stands out for its simplicity and friendly API. LND is also part of the vast majority of ready-made solutions such as Umbrel, myNode or Raspiblitz, where it is often the only (or at least the default) implementation. Because of this, it has a large number of additional tools/extensions made by community and is suitable for beginners. However, advanced users or large nodes operators can use it also for sure. Recently, however, this implementation contained two vulnerabilities that slightly damaged its reputation.\n\n**Core Lightning** is an alternative implementation and a "number two on the market" that is known for its stability and modular architecture. This means that you can install a lot of extensions in the form of standalone plugins in addition to the basic features. This makes it more suitable for slightly more advanced users who can customize it as they want.\n\n**Eclair** targets more corporate clients, i.e. giant nodes with a very high number of channels and transaction volume. This implementation allows the node to be spread across multiple servers that distribute individual tasks among them using loadbalancing methods. Compared to previous implementations, there is a minimum of any community extensions.\n\n# Cltv_delta parameter and gossip protocol\nWithin the lightning protocol itself, there is no "header" anywhere describing which specific implementation the node uses. Thus, it is unrealistic to find out the percentage distribution of node implementations **exactly**.\n\nBut we can make a relatively good guess. How? Each implementation has slightly different default values, and we take advantage of that. One of these values is **cltv_delta**. This is the number of blocks the node reserves for HTLC processing when forwarding a payment. In other words - it is the time difference between the outgoing and incoming HTLC.\n\nThe lower we set the **cltv_delta** value, the more risk we take, since after forwarding the payment towards the recipient (and getting **payment_preimage**) we have less time to contact the node towards the sender and get our funds. This may even end up in a force-close in the form of an on-chain transaction if this node is unavailable for long time, where this parameter then plays a crucial role.\n\nOn the other hand, a very high value means that the sender's resources may be locked for a longer period of time in case of problems, so this route is usually less preferred.\n\nIt should be clear from the text above that there is no **one correct value** (although the BOLT specification partially [defines it](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#cltv_expiry_delta-selection)) and so each implementation has chosen it in its own way:\n\n- LND has 40 blocks by default\n- Core Lightning 34 blocks\n- Eclair 144 blocks\n\nThe **cltv_delta** value is propagated through the network within the gossip protocol in the **channel_update** message along with information such as fees, minimum and maximum HTLC, etc.\n\n# Practical part and finding the share of implementations\nWe will need a network graph - a list of all nodes and channels. This graph is public information and is maintained by each node. Unfortunately, there is no one correct graph. In fact, due to the way it is propagated, each node may have a graph slightly different from the others. Therefore, for these calculations, I used graphs from multiple nodes and averaged the results. The individual differences were below 1% for all parameters.\n\nNext, we take advantage of the fact that most node operators do not understand the **cltv_delta** parameter and so they leave it in its default state. Thus, if the values of **cltv_delta** are **the same for all channels** of a given node, and at the same time this **value corresponds to one of the defaults**, it can be assumed that this is a given implementation.\n\nIf, on the other hand, **at least one** value of **cltv_delta** is different from the others or is not one of the default values, the node operator obviously modifies these parameters and cannot be relied upon. We discard such nodes from our statistics. Fortunately, this is only less than 7%.\n\n![](https://platbybudoucnosti.cz/sn/lightning-implementations/EN_01.png)\n\nTo maximize the accuracy of the results, I excluded those channels that have not sent **channel_update** within the last 14 days, so according to the specification they should be considered outdated. Now is the time to create a script that will process the relevant data.\n\n![](https://platbybudoucnosti.cz/sn/lightning-implementations/EN_02.png)\n\nSo what is the result? Exactly as expected, the LND implementation dominates. In other words, 91% of Lightning nodes have the **cltv_delta** value set to 40 blocks for all their channels, so this is most likely LND.\n\nBy the way, these results are **almost identical** to the [study](https://arxiv.org/pdf/2002.06564.pdf) from September 2020. Here, additional parameters were used, namely the minimum HTLC size and fees. The result was then calculated based on different weights for each parameter, with **cltv_delta** having the highest weight (75%). Since a lot of tools have recently been developed that automatically adjust these parameters, I did not include them in my calculations.\n\nIn addition, other interesting information can be retrieved from the graph, such as the average number of channels for a particular implementation or the average total capacity of a given node.\n\n![](https://platbybudoucnosti.cz/sn/lightning-implementations/EN_03.png)\n\n![](https://platbybudoucnosti.cz/sn/lightning-implementations/EN_04.png)\n\nAs can be seen above, the results support the description of the individual implementations from the beginning of this post. LND makes up the vast majority of the network due to the fact that it is part of most ready-made solutions, but these are primarily smaller nodes. In contrast, Eclair is on the other side of this ranking, as it powers, for example, the ACINQ node, which currently has nearly 3500 public channels and thousands more private ones. And somewhere in the middle stands Blockstream with its Core Lightning implementation.\n\n# Conclusion\nFinally, it should be noted that the above figures are **only an estimate**, because:\n- Anyone can arbitrarily change the parameters and thus, purely theoretically, impersonate a different implementation, although there won't be many such cases.\n- This data has been created based on **public** channels and nodes only, so it does not contain e.g. information about mobile nodes/wallets.\n- There are other options for running nodes, such as building your own implementation using the Lightning Development Kit (LDK).\n- At the same time, I used current default values - for example, LND in the past (until April 2019) used a value of 144 for **cltv_delta** (as does Eclair today), which was subsequently changed to the value described above. Extremely old implementations may therefore slightly bias the results, but even here I don't expect this to be a large sample.\n \N 12951 \N 442411 \N \N \N \N \N \N \N \N science \N ACTIVE \N 20.8341624449 0 \N \N f 80186915 \N 1 244359867 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449971 2025-03-23 16:46:12.464 2025-03-29 22:39:47.089 Where is Bitcoin and Lightning's Red Team? I was sharing [my thoughts](https://stacker.news/items/525232/r/k00b?commentId=526136) on the [best possible scenario for bitcoin succeeding in the next ten years](https://stacker.news/items/525232/r/k00b)\n\n> I think the best possible scenario for bitcoin is it's severely and progressively attacked and we anticipate and adapt to survive it. The worst possible scenario is bitcoin isn't attacked, becomes ubiquitous, and is only then attacked and more people suffer a loss from it.\n\nin conversation at a [btc++](https://btcplusplus.dev/conf/atx24) after event last night. My conversation partner was surprised by how few projects in bitcoin had bug bounties or processes for responsible disclosure (and named names that I will not name). Has was also surprised by how we didn't have a [red team](https://en.wikipedia.org/wiki/Red_team) sponsored for the lightning network and that there aren't more projects like [lnsploit](https://github.com/TonyGiorgio/LNsploit) being sponsored.\n\nThe concept of a red team was new to me but the utility seems high. I haven't heard this discussed much outside of "there's a 1 trillion dollar bug bounty on bitcoin" which implies bitcoin doesn't need something like a red team because real attackers are already incentivized. To me, naive as a freshly born babe on such matters, that doesn't seem like the best approach to hardening these things. It's sounds a lot like saying the best preparation for a war is being attacked by your enemy and we should just wait for that to happen.\n\nWe want well financed good guys attacking bitcoin, right? Is that a bad idea for some reason, or is it just not necessary? https://en.wikipedia.org/wiki/Red_team 889 \N 449971 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.67538380423853 0 \N \N f 217243788 \N 1 191436900 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451244 2025-03-24 13:15:34.006 2025-03-29 22:39:47.09 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/314412), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs here.\n\nSend your best 👇 \N 1718 \N 451244 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.1397966083968 0 \N \N f 1129324029 \N 8 38727100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 406297 2025-02-17 08:47:38.367 2025-03-29 22:39:47.09 SN Invite Links & Bitcoin Meetups This is a PSA for stackers who want to spread the word about SN at Bitcoin meetups and stack some extra sats along the way.\n\nStacker News [invite links](https://stacker.news/invites) are a great way to help someone you know get started on SN.\n\nInvite links differ from referral links in that you can pre-load some sats on the link for another user, which makes onboarding new stackers much more fun for both of you.\n\nThe downside with these links is that if you publicly share the link on Twitter or some other social platform, bots may snatch up the sats you allocated to onboarding new stackers.\n\nFor that reason, we recommend only sharing invite links with people you know, rather than publicly sharing them online (if you do happen to share your invite links publicly, can revoke them at any time).\n\nThe cool thing about Bitcoin meetups is that there are lots of Bitcoiners who love to stack sats, and may not have tried Stacker News yet. Since these meetups are in person, they are also a perfect venue for using invite links.\n\nUsing [SN invite links](https://stacker.news/invites), one can individually allocate each attendee of a Bitcoin meetup with a set number of sats, and be sure that all the invite links are being claimed by humans that actually care about Bitcoin.\n\nThis is something we will be testing ourselves, but we also wanted to share this strategy publicly in case other stackers want to test it out too.\n\nPS. Invite links work [just like referral links](https://stacker.news/referrals/month), where you earn sats when your referee either earns sats themselves or boosts something. \N 1012 \N 406297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2313382403012 0 \N \N f 999733057 \N 8 237695618 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 381228 2025-01-26 13:54:05.823 2025-03-29 22:39:46.788 Show SN: First release of my open-source Stacker News client :zap: Hi Stacker News!\n\nI've been a regular visitor of Stacker News for less than a month, and I have to say, it's already become one of my favorite online destinations :)\n\nToday, I'm thrilled to announce the first public release of a Stacker News client that I've been working on for the past few weeks. This app is a revamped version of a Hacker News app I developed a few years ago, and I believe it has finally reached a point where it's genuinely useful and (mostly) working. In fact, I've been using it daily to stay up-to-date with the top news on Bitcoin and Nostr! ⚡️\n\nI'll fix bugs and introduce more features in the coming weeks.\n\nYou can find the source code for the app here https://github.com/felipebueno/stacker_news\n\nI'd greatly appreciate your thoughts, suggestions, and ideas for improvement! 🚀\n \N 10862 \N 381228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.95090777685963 0 \N \N f 0 \N 0 212030367 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 263526 2024-10-11 03:15:17.014 2025-03-29 22:39:46.788 SN release: more nostr crossposting, zap undos, territories in profiles, more 1. all posts types support crossposting *via @bitcoinplebdev*\n2. give polls configurable expirations *via @mz*\n - it's in `options` in the poll post form\n3. show founded territories on profiles *via @mz*\n - founders have a `territories` tab on their profiles like `items`\n4. random rewards are no more\n - we are back to rewarding posts, comments, and zapping posts and comments every day\n5. anyone can subscribe to be notified about a territory's new posts now *via @ek*\n - before only founders got these notifications\n - when visiting a territory, click `...` to configure\n6. territory revenue had a bug that wasn't attributing comment revenue\n - that's fixed as of this release and although it's not a lot, it can increase revenues by 5-10% in heavily commented territories\n7. zap undos *via @ek*\n - in the `advanced` section of your zap settings, you can configure zap undos\n - zap undos give you a five second window to "abort" a zap before it's sent\n\n@ek had the idea to start a ReleaseChain, so this is the last release: https://stacker.news/items/427868\n\nFor a quicker historical review we also have a [changelog](https://stacker.news/changes). \N 20254 \N 263526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7590566786391 0 \N \N f 0 \N 0 203684842 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 302769 2024-11-21 04:58:04.415 2025-03-29 22:39:46.789 Bitcoin adoption using Ecash - use case scenario WHY WOULD USE SUCH THING AS ECASH?\n\nThe situation with Bitcoin (BTC) and Lightning Network (LN) right now, is not favorable with onboarding billions of people, that are not well prepared and this situation will get more complicated until we could find more practical and easier solutions.\n\nYes, some old bitcoiners will not see any advantage of using this ecash, other than adding some more privacy on top of the existing LN protocol. Those that have already a lot of liquidity in LN channels and various UTXOs in cold storage, this use case will not bring them too many advantages, except if they want to use ecash as a form of coinjoin their income sources. But that is another story.\n\nBut for many new Bitcoin users is quite hard to get started with a UTXO directly onchain and from there running sophisticated LN nodes, public or even private nodes. Managing LN liquidity is not so easy for many new users. Yes, they can use a large number of custodial LN wallets / accounts, but those also still could leak a lot of personal information and easily be shut down or limiting access to users funds.\n\n[Read the full article here....](https://darthcoin.substack.com/p/bitcoin-adoption-using-ecash) https://darthcoin.substack.com/p/bitcoin-adoption-using-ecash 20353 \N 302769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8841656308237 0 \N \N f 0 \N 0 249437037 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 365550 2025-01-12 08:34:22.05 2025-03-29 22:39:46.789 How I'd pitch a script upgrade I'd build a full-fledged application that uses the fork to do something so obviously compelling *today's* bitcoin users would beg for it to be forked in. There's no guarantee that it'd succeed, in fact it's much more likely to fail, and if it failed it'd be expensive to me and a massive waste of my time. But, if a script upgrade succeeds without an obviously compelling application, and one can't be produced after the upgrade, then it's expensive to everyone and a massive waste of everyone's time.\n\nIf the average node runner needed payment pools, wouldn't they want them? If the average node runner needed vaults, wouldn't they want them? People don't know what they want, let alone need, but if they don't want what you're selling even after you've shown them the advantages - in a way they understand and can fully appreciate - it's your fault, not theirs. It's not the fault of other developers either, it's yours. Your theories about the maybe-valuable things some maybe-people will use aren't enough now. \n\nUtility more often emerges than it is preconceived, but the people that appreciate that, developers, don't control the network anymore. White papers and think pieces aimed at developers won't do much good (especially if you have no political capital). At best developer advocacy might compel other developers to sell your upgrade for you, but odds are no one will sell *your* upgrade that *you're* the expert on. Your premonitions about an ever advancing ossification threat don't matter either. "I don't have time to convince you because I'll need to convince even more people later" isn't going to win anyone over.\n\nPersonally, I'd be happy to fork in CTV, CAT, VAULT, or GSR, but what a few of us want doesn't matter. If forever ossification is looming, the best thing to do is admit you suck at selling and get better at it fast. Or, just admit you aren't that convicted. Blaming other people for not doing their job because they don't see your genius, or resorting to bad faith arguments, is strictly foolish. If no salesman on earth is good enough to sell your fork, then either it isn't that compelling or ossification isn't looming - it has already happened.\n\nIf you aren't willing to waste a soul-crushing abundance of time and money building the arguments and applications, no quorum is going to waste their time imagining, upfront, what value you might theoretically give them if they just let you have your way. Changing bitcoin consensus is, by design, one of the hardest things in the world. We can't cap our sacrifice and expect we'll accomplish an upgrade. \N 20554 \N 365550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.58416356537496 0 \N \N f 0 \N 0 156182386 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 445953 2025-03-20 20:11:36.13 2025-03-29 22:39:46.789 Olympus by ZEUS x Lightning.Pub integration Congrats to @justin_shocknet and @evankaloudis! https://blog.zeusln.com/olympus-lightning-pub-integration/ 16336 \N 445953 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.2322884363181 0 \N \N f 797980778 \N 8 64916658 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 382801 2025-01-27 21:51:06.508 2025-03-29 22:39:46.791 What are you even gonna do with the money? # I. Don't. Know.\n\nI want many things, but one thing's for sure: I don't wanna waste it.\n\nScenario: your Bitcoin is worth €50k, €100k or even €200k, what are you even gonna do with that in today's day-and-age, let alone a few years from now?\n\nA fancy vacation around the world, or a simple- but very much *longer* vacation around the world by backpacking? \n\nWhat about work and family? How would I fit the above into this?! \n\nOr maybe a down payment for a house (If I can even get one), leading me onto a path of slaving away the better part of my life to pay-off a fancy heap of bricks? \n\n# What. Can. One. Do?! What. Should. One. Do?!\n\nYeah there'll be some shenanigans that'll argue "I won't sell my Bitcoin *ever*, like *never-never*!", and that's fine, but the thing is: I wanna take advantage of the risk I took and the reward I've received for it at one point in time, you can let it sit for the next three decades if you want to, but that's not me.\n\nWhat should money be used for, especially if you don't wanna work bullshit jobs for the rest of your life?\n \N 13575 \N 382801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.17884228273419 0 \N \N f 0 \N 0 236995729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436009 2025-03-13 08:15:50.941 2025-03-29 22:39:46.791 Muun is the best wallet ever I baited you with the title. It's not.\n\nI know everyone recommends this and that wallet for XYZ reasons. I'm here today to briefly shill Phoenix Wallet as a hot onchain/LN wallet for noobs or even lazy power users. This might be interesting if you have never used it OR you used it anytime before a couple of weeks ago. If you are in the latter group, your experience is now outdated.\n\nOkay, you might have heard a lot of noise recently about Phoenix and the new splicing stuff and how awesome splicing is. It is, but I'm gonna skip the technical bit today and present stuff from the user POV.\n\nOkay, so what's the deal? Since Phoenix 2.0 started to use splicing, this is the cool stuff:\n- You can send and receive onchain sats. You simply pay the miner fees when sending. That's it.\n- You can send and receive through Lightning. Usual LN fees (the proper super low ones, not the stupid high ones from Muun and the like). I can pay a 10,000 sats (~3$) beer through LN and the fee will be around ~40 sats (roughly, one cent).\n- You only see and have one balance. Everything you have is both spendable onchain and through Lightning. No need to juggle to balances and go around swapping like an idiot.\n- The backup is a 12 word seedphrase. You know the drill. The wallet is noncustodial and you hold your own keys.\n\nFeels like nothing? Well, to me, it feels like a gift from God. Giving a complete noob a wallet in 2023 before this option came around was a drama. You have to deal with a monster matrix of feature combinations, onchain vs lightning, custodial vs noncustodial, normal seedphrases vs crazy recovery schemes, etc. And no wallet crossed all the checks. Muun was the wallet that so far came closer to having it all, but it had its issues (weird backup approach, crazy fees for LN, lack of transparency on how certain features worked).\n\nNow Phoenix has finally done it. The noobie installs it. Writes down 12 words. You send him his first sats through onchain or LN, whatever you prefer. He can then send it out again through onchain or lightning with reasonable fees for each option. All non-custodial and with a great UX.\n\nI'm dramatically pumped about this. It's going to be such a great tool for onboarding people. And also as a personal wallet, even if you are an experienced node runner.\n\nI would like to leave with a call to action. If you haven't tried Phoenix 2.0, please, do. And once you have, spread the message and show it to newbies so that they avoid other worse options (Muun? Already discussed. WoS? Custodial. Bluewallet? Two different balances for onchain and lightning). \N 21418 \N 436009 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 2.32927625006894 0 \N \N f 271172218 \N 2 13653949 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:01:03.537 f \N \N \N 0 0 0 0 2 0 0 266644 2024-10-13 22:14:27.098 2025-03-29 22:39:46.788 A Serious Discussion on Julian Assange As the world's second most important journalist, it pains me to no end to see the world's most important journalist behind bars, slowing being tortured to death for the crime of exposing war crimes and other misdemeanor by the ruling class. \n\nBehind bars is likely the most appropriate place for the person with the title of being "the world's most important journalist." If you have not pissed off the ruling class so much that they either try to Clinton you or put you in jail, you can definitely no be #1. \n\nIf there was ever a black pill on how evil statism is, and how important ending the Federal reserve, not by talking about it like idiot libertarians, and actively taking part in it by using Bitcoin, it is what is happening to Jullian Assange. \n\nIt's pretty obvious at this point that state secrets are used primarily to engage in criminal behavior without the public knowing. Labeling things as classified allows for the prosecution of whistleblowers and journalists who dare to expose the state for participating in the status quo. \n\nThe average statist can justify normal coercion in their heads, but cannot grapple with the scale of evil that these governments participate in. \n\nWhat sparked this rant is that the feds are "exploring plea deals" for Assange right now, which is a complete travesty. HE DID NOT DO ANYTHING WRONG AND IS BEING PUNISHED FOR DOING SOMETHING INCREDIBLY GOOD AND IMPACTFUL. \n\nTo the Feds reading this: If you have a moral compass, you would quit your jobs. The people you work for are pedophiles and war criminals. You are being paid with stolen money and are part of the problem. War criminality and pedophilia can be justified and are deplorable acts. Your service to that system is what gives it the guise of legitimacy. You are part of the problem and you can be part of the solution by quitting your job and atoning for your sins against humanity by doing something fucking productive with your life instead of assisting in destroying others. \n\nIf Assange agrees to a plea, it could end in him being freed. That would be great, but that does not in anyway excuse what different governments have done to him, as well as the actions their actions that he reported on. \n\nThe world needs brave people who not only can see what's wrong with the world, but aren't cowards and seek to do something about it, despite the costs to themselves. \N 17082 \N 266644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.26582369824337 0 \N \N f 0 \N 0 58902201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 200647 2024-07-16 07:57:55.536 2025-03-29 22:39:46.789 SN release: semantic search This is a subtle but (hopefully) significant improvement to search and `related posts`.\n\n**Before**: search and `related posts` relied on term matches\n**After**: search ranks on term matches *and* semantic similarity while `related posts` relies *exclusively* on semantic similarity\n\nThis should improve both [evergreen-ness](https://stacker.news/items/331942) of content and rabbit-holing. IMO `related posts` have improved an incredible amount, but search is also much better at finding relevant matches. \n\nFor months, @elvismercury [hollered](https://stacker.news/search?q=embedding+nym%3Aelvismercury&sort=recent) about [text embeddings](https://en.wikipedia.org/wiki/Word_embedding), but I didn't know what text embeddings were. This change uses on them by mapping a search query or item to a vector of meaning and looking for items with similar vectors. \N 1094 \N 200647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.42412633806779 0 \N \N f 0 \N 0 58737280 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434382 2025-03-11 20:58:38.144 2025-03-29 22:39:46.789 NFL Survivor Pool 2023- Buy-ins OPEN Send your buys ins via this post. Reply once sent so I know who is in. \n\n@grayruby @siggy47 @BlokchainB @Public_N_M_E @Wumbo @WeAreAllSatoshi @BTC_Bellzer @bitiplx @ekzyis @undisciplined @tnuts420 @mallardshead @lawndough @Turdinthepunchbowl @nifty @needcreations \n\nLet the game begin! \N 18529 \N 434382 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 11.1242760092132 0 \N \N f 0 \N 0 70829299 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:57.842 f \N \N \N 0 0 0 0 0 0 0 435062 2025-03-12 12:41:40.343 2025-03-29 22:39:46.791 SN's wallet plans We've been transitioning SN away from being a custodian for a couple months now. As is our fashion, we've done what *needs* to *certainly* be done first while maintaining what SN is. And, by improving and understanding those done-firsts, we've widened our cone of what *needs* to *certainly* be done. Before too long, SN will be not-custodians.\n\nThe plan:\n\n1. allow any popular, API-enabled, external source of bitcoin (an attachable bitcoin wallet, ABW) that can generate an invoice and/or pay an invoice to "attach" to an account \n2. allow stackers to send money directly to one another for their contributions, using these attached wallets, without needing to trust SN\n\nShould stackers not have an external source of bitcoin for sending, they'll send "fee credits." Should stackers not have an external source of bitcoin for receiving, they'll receive "fee credits." "fee credits" can be paid to SN for anything SN ordinarily gets paid sats for, like posts, comments, or territory fees, but are not money and cannot be withdrawn. Stackers can also send each other "fee credits" but a "fee credit" never becomes a sat. (To the upside, we can store an unlimited number of "fee credits" for stackers.)\n\n"fee credits" are needed because many people lack a popular, API-enabled, external source of bitcoin (ABW), and as not-custodians, SN won't store sats. If you have an ABW, you'll transact in bitcoin with other stackers who have an ABW, and when SN pays you you'll receive bitcoin. If you have an ABW and transact with stackers who lack an ABW, they're receive "fee credits." Stackers without an ABW will be paid by SN in "fee credits."\n\nThe below table shows all the transaction pairs. The sender's wallet type are the labels to the left, and the recipient's wallet type are the labels in the first row. The inner cells show what is received by the recipient.\n\n| senders->recipients | fee credit wallet | external wallet | sn company |\n| --------------------- | ----------------- | --------------- | ---------- |\n| **fee credit wallet** | fee credit | fee credit | fee credit |\n| **external wallet** | fee credit | sats | sats |\n| **sn company** | fee credit | sats | n/a |\n\nFor example, if someone with what's called an "external wallet" in this table zaps a recipient without an "external wallet" for receiving, the recipient receives "fee credit."\n\nThe goal here is for SN to be easy to use, private, and beyond reproach. We need bitcoin for SN to be what we intend it to be, but we don't want the moral and legal liability of holding and transferring bitcoin IOUs or KYCing and geofencing people. For bitcoin to fundamentally change internet applications, I believe the applications themselves must be not-custodians. Forgetting internet applications, I believe that for bitcoin to succeed it must have many, varied, and great wallet solutions. Wallets will only get better through us using and supporting them.\n\nBitcoin is tethered to reality using a mathematic asymmetry, an asymmetry so significant the work required to mine and secure bitcoin can't be forged. Yet, once mined, verifying, sending, and storing this work is relatively trivial. It is through this tether that Bitcoin gains the benefits of the internet, globally settling units of this work quickly, while producing work that's as unforgeable as the screen you're reading this on. SN wants to be real in a similar sense, for its territories to inherit the borderlessness of the internet while the value being exchanged is unforgeable. SN needs bitcoin.\n\nAnyway, those are our motivations and wallet plans. We will produce a not-custodial end-to-end zap beta sometime soon, then we will introduce fee credits for stackers that lack ABWs. When we transition to fee credits, the sats in your wallet will still be available as sats for withdrawal or for purchase of fee credits. The *only* change will be that you won't be able to put more sats in your SN wallet or zap those sats on SN (unless they are used to purchase fee credits). Every time someone receives a fee credit they will be reminded it could've been real money. We hope this plan, being consistent with the right thing to do, is also a fun way to create more self-sufficient stackers.\n\nIf you have questions, send 'em! \N 15326 \N 435062 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 13.6666232170751 0 \N \N f 77096587 \N 2 236588219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 446601 2025-03-21 11:22:17.272 2025-03-29 22:39:46.791 Banks are scamming noobs when they try to buy Bitcoin in Spain LaCaixa I'm going to tell you what happened when I helped a person make their first Bitcoin purchase.\n\nI was at a relative's house, and this relative knew that I lived off of Bitcoin, which has always surprised her, but lately she has seen videos on YouTube from Marc Vidal (a well-known Spanish influencer) recommending Bitcoin. So, me trying to convince her of this for a while and the opinion of this influencer she followed, she finally decided to make her first purchase.\n\nThe problem is that, for the first purchase, setting up a wallet and writing down the words, and everything else, may seem simple and trivial to us, but to a newbie, it's not. They don't understand these concepts. But there was no problem; I spent 2 hours explaining everything to her.\n\nAt that point, and seeing how inexperienced she was, I didn't feel comfortable recommending her a P2P platform to buy Bitcoin. With everything else she had already gone through, teaching her how to use HodlHodl or Robosats would be an impossible mission. So, I decided to teach her how to buy through Relai, a centralized exchange located in Switzerland that accepts SEPA transfers but doesn't require KYC.\n\nThen we went to the bank's website of my relative, La Caixa, the second or third largest bank in Spain after Santander and BBVA. We logged in, and tried to make a transfer to Relai for only 100€.\n\nTo our surprise, La Caixa unilaterally refused to do the transfer and gave an error message, telling them to contact them. Seeing this, I sold my Bitcoin to her for those 100€ so that she could have the money in her wallet for good.\n\nHowever, this wasn't over yet; and now came the "good" part: after a few minutes, an operator from La Caixa called my relative to talk about the transfer she wanted to make to Relai. The approximate conversation is:\n\n-- Good afternoon, we have received a request for a transfer to a Bitcoin exchange in Switzerland; is this correct?\n-- Yes, it's correct. I just did it.\n-- Well, you need to know that there are many Bitcoin scams and we have an internal policy of not allowing these types of transfers. However, if you want to buy Bitcoin, you should know that we can offer you a secure and guaranteed investment product based on Bitcoin. All you have to do is enter our app and search for the word "Bitcoin," and a list of funds that you can select will appear.\n\nTo say the least, we were left speechless. Not only are these banks preventing transfers to exchanges, but they also try to sell you their Bitcoin ETF derivative for which not only do they charge relatively high commissions (several € per operation), but it's also not the real Bitcoin, losing the entirety of your sovereignty.\n\nThis reminded us how indeed fiat money doesn't belong to you, and it belongs even less to you when it's in a bank account, where the bank decides what you can and cannot buy and with whom you can make transactions. And when you try to leave that system, they try to prevent it by all means.\n\nThis society won't go anywhere until it fixes its money. And in order for it to fix its money, it demands a clear and resounding response from us.\n\n### Spanish\n\nOs voy a contar lo que me ha pasado cuando he ayudado a una persona a hacer su primera compra en Bitcoin.\n\nYo estaba en casa de un familiar visitándolo. Este familiar sabía que yo vivía de Bitcoin, lo cual siempre le ha sorprendido, pero últimamente había visto videos en Youtube de Marc Vidal (un influencer famoso español) que recomendaba Bitcoin. Así que, entre que yo he intentado convencerle de siempre, y la opinión de este influencer que sigue, se animó a hacer la primera compra.\n\nEl problema es que, la primera compra, y dar de alta una wallet y apuntar las palabras y todo eso, a nosotros nos parece sencillo y trivial, pero a un novato no. Son conceptos nuevos que no entienden. Pero no hay problema, gasté 2 horas en explicarle todo.\n\nEn ese punto, y viendo lo novato que era, yo no me atrevía a recomendarle una plataforma de p2p para comprar Bitcoin, porque sin duda ya con lo anterior estaba muy saturado, encima enseñarle a usar HodlHodl o Robosats sería misión imposible. Así que opté por enseñarle a comprar con Relai, un exchange centralizado localizado en Suiza que acepta transferencias SEPA, pero que no requiere KYC.\n\nEntonces vamos a la página del banco de mi familiar, La Caixa, el segundo o tercer banco más importante de España tras el Santander y el BBVA. Ahí se loguea, e intenta hacer una transferencia a Relai, por valor de tan solo 100€.\n\nCual es nuestra sorpresa que La Caixa rechaza unilateralmente hacer una transferencia a Relai, dando un mensaje de error y diciendo que se pongan en contacto con ellos. Visto esto, lo que hago es venderle yo Bitcoin por esos 100€, para que pueda tener ya ese dinero en su wallet.\n\nPero no para ahí la cosa, y ahora biene lo "bueno": tras pasar unos minutos, un operador de La Caixa le llama para hablarle de la transferencia que mi familiar quería hacer a Relai. La conversación aproximada es:\n\n-- Buenas tardes, hemos recibido una solicitud de transferencia a un exchange de Bitcoin en Suiza, ¿es esto correcto?\n-- Si, correcto, lo acabo de hacer.\n-- Bueno, tiene usted que saber que hay muchas estafas con Bitcoin y tenemos la política interna de impedir este tipo de transferencias. Sin embargo, si usted quiere comprar Bitcoin, debe saber que nosotros le podemos ofrecer un producto de inversión basado en Bitcoin que es seguro y garantizado. Tan solo tiene que entrar en nuestra aplicación y buscar la palabra Bitcoin y le saldrá una lista de fondos que usted puede seleccionar.\n\nQue decir que, tras escuchar esto, nos quedamos helados. No solo estos bancos están impidiendo las transferencias a exchanges, sino que además intentan venderte su derivado ETF por el que no solo cobran comisiones bastante altas (varios € por operación), sino que además no es el Bitcoin real, perdiendo la totalidad de tu soberanía.\n\nEsto nos recuerda como realmente el dinero fiat no te pertenece, y te pertenece aún menos cuando lo metes en una cuenta bancaria, en donde el banco decide que puedes y no puedes comprar y con quien puedes hacer transacciones. Y cuando intentas salir de tu sistema, lo intentan impedir por todos los medios.\n\nEsta sociedad no llegará a ninguna parte hasta que no arregle su dinero. Y para que arregle su dinero, exige de una respuesta contundente de nosotros.\n \N 21184 \N 446601 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.2182192742271 0 \N \N f 305349665 \N 2 187274786 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 107243 2024-01-03 02:34:51.751 2025-03-29 22:39:46.791 What’s the V4V you bring to the table? Those who have been lamenting that writing is a lost art have evidently never visited Stacker News. Here, people who don’t consider themselves writers will awe you by the effort they put into their writing. Individuals who seem more comfortable with coding and programming type up long chunks of text from the books they’re reading - and then include their reflections and recommendations. As if this isn’t enough, they include footnotes to denote other things that they want to share but not deemed crucial enough in their long text.\n\nTake that, frivolous soundbites on IG and TikTok! Stacker News exemplifies how people doggedly apply the V4V method. That if they contribute their useful insights and focus on providing something of value, other Stackers will respond in kind. Sats showers will fall in the form of furious zaps.\n\nI’m curious to know what the other examples of V4V you demonstrate in your real life, be professional or personal. What’s something you seek to do differently from your colleagues and friends so that you can stand out from the competition and be known for excellent service? How do you put your stamp on things so that others know that you have done something unique and fabulous? \N 5825 \N 107243 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.9512059156425 0 \N \N f 0 \N 0 143402338 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424855 2025-03-04 12:52:05.651 2025-03-29 22:39:47.085 SN release: million sat madness, reward leaderboard, top stackers by value, more Million Sat Madness is live! We repurposed the [rewards](/rewards) page for it. It has a leaderboard with estimated payouts.\n\nOther related updates:\n- you can now sort stackers by `value` in top, e.g. https://stacker.news/top/stackers/week\n - this allows you to see who has been most rewardable historically according to our latest rewards algorithm\n- stackers who hide themselves from `top` now get a placeholder in rankings so people can really see how they're stacking up \N 1092 \N 424855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.36147288796419 0 \N \N f 218475292 \N 1 213479679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431122 2025-03-09 15:30:00.584 2025-03-29 22:39:47.087 Swedish Bitcoiners targeted by armed criminals > Criminals in Sweden are specifically targeting prominent local Bitcoin figures, which appears to be the result of the ease of access to personal information and residential addresses in the country.\n\n> “This Monday, a middle-aged Swedish couple was tied up in their home and robbed by 4 masked men. They were physically abused and threatened with their own kitchen knives. They were tied up for hours and one had to be escorted to the hospital via helicopter,” Wall wrote.\n\n> According to Wall, the victims were subjected to violent physical abuse for hours in an effort to steal their Bitcoin holdings held in hardware wallets.\n\n> Wall also believes criminals scour social media to identify and target Bitcoin or cryptocurrency users. He claims that a common theme of the attacks was that they took place shortly after individuals had livestreamed podcasts focused on Bitcoin and cryptocurrencies or mentioned the subject in public.\n\n> He also believes that Sweden’s Offentlighetsprincipen (Principle of Public Access to Information) laws, which give the public the right to request information, including residential addresses and tax records from the government, are becoming a means for criminals to prey on ecosystem participants.\n\nhttps://cointelegraph.com/news/swedish-bitcoiners-targeted-by-armed-criminals\n \N 13038 \N 431122 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.4713456738425 0 \N \N f 238095883 \N 3 213602038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 133429 2024-02-27 23:25:10.326 2025-03-29 22:39:46.788 Sparrow Just wanted to share a recent experience:\n\nTL;RD: I meet Craig Raw in person. He's the only dev for Sparrow. I was absolutely shocked to learn this. For me, a lowly bitpleb, it felt like meeting a celebrity. \n\nWas at the BitDevs Tuesday meeting in Nashville last week. It was amazing, but that's for another discussion. During the meeting, I noticed a face and a voice that I recognized but couldn't place. This individual spoke up after someone had raised a question/issue related to Sparrow (my personal favorite application). I thought: wait, why do I know that voice/face? To confirm my suspicion, I pulled up a video on YouTube on my phone to confirm... yup... that's a developer for Sparrow I saw on a YT video explaining the features of Sparrow. Amazing, he's in the same room as me. \n\nAfter the meet, I went up to him to shake his hand and say 'thanks' for the awesome app. It literally has changed my life (again, for another discussion). So as I approached I asked "are you a developer working with the Sparrow team?" or something to that effect, to which he replied "I'm the **only ** developer of Sparrow."\n\nThis absolutely blows my mind. The power the Bitcoin, bitcoin, and BTC. _One single person_ can provide such incredible power and autonomy to individuals who wish to take their financial sovereignty to the next level. \n\nSpecial thanks to Craig Raw for tolerating a noob such as myself. \N 20939 \N 133429 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.35769029048887 0 \N \N f 0 \N 0 106005288 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 242142 2024-09-20 11:53:17.149 2025-03-29 22:39:46.788 Why not pass out cashu nuts for Halloween this year? # I'm WAY into Halloween.\n\n_Before you're like, "this is in the wrong territory," just check yourself and gimme a minute. Rome wasn't built in a day."_\n\nI've been giving out full size candy bars for years, partly to compete with my neighbors insane outdoor decorations, but mostly to make sure I have an audience the year when I actually hire one of my pro keyboard player buddies to sit in my foyer and play some monophonic synth along with this puppy:\n\n![](https://m.stacker.news/56706)\n![](https://m.stacker.news/56704)\n![](https://m.stacker.news/56707)\n\n_Chill out territory nazis, we're getting there._\n\nIt's a reed organ, which is already spooky enough by itself. However, the top octave has hammered (like a piano) tines! It's about as creepy as you could ever ask for. It can also be pretty, and I use it for Christmas too, but we're getting ahead of ourselves. I played it last year and I'm ok on keys (main axe is trombone), but I work with some keyboard players that can melt your face. This may be the year to cash in on all those years of giving out full size candy bars.\n\n_Bitcoin time. Territory nazis rejoice._\n\nAnyway, Bitcoin is kind of like that kid with a summer birthday, so I want to make sure to celebrate it this Halloween while I've got the neighborhood's attention. So, I would like to present to everyone here [snickerbar](https://github.com/ttooccooll/snickerbar.me)[.](https://github.com/ttooccooll/snickerbar.me)[me](https://github.com/ttooccooll/snickerbar.me). It's a fork of cash.me that makes cashus en masse for beggar's night!\n\n## All of these nuts are waiting to be cracked!\n...except the one that I did individually before adding the bulk processing and the one that was actually cut out to pass out to trick or treaters. The rest of them are mostly one sat, but I'm sure you guys can look at the token and figure out which ones aren't like the others.\n\n![](https://m.stacker.news/56713)\n![](https://m.stacker.news/56714)\n![](https://m.stacker.news/56715)\n![](https://m.stacker.news/56720)\n\nThanks @BlokchainB for dropping nuts every day in the saloon. This is what made me curious about cashu in the first place, which I'm just so into right now. I had heard of it, but didn't get the use case until after seeing a few days of those drops.\n\nI might refine this and address some bugs if other folks want to use it at their place. Lemme know. I may also make a non-halloween version if people think they might use this in other settings. \N 1603 \N 242142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2461293339696 0 \N \N f 0 \N 0 26647780 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 198914 2024-07-12 18:50:36.781 2025-03-29 22:39:46.788 You are a SN Rewards System I've long been trying to convince people to zap more: https://stacker.news/items/287074/r/Undisciplined. Most of you are just leaving sats on the table with your miserly ways.\n\nThis, however, is a second order post about what to zap.\n\n# Let a thousand rewards systems bloom\nI'm pretty sure @ek made an off-hand remark about how we are each operating our own rewards system on Stacker News. I thought that was a really cool way to think about it.\n\nMost of us are fairly well acquainted with the rewards system, thanks to MSM and the leaderboard. However, I think most of us only think about the first level as the rewards system: i.e. I got paid out rewards for making content people liked and zapping content that people liked.\n\nFor each of us, though, the reward for zapping has particular consequences for the site and what content appears here. A cursory glance at the leaderboard reveals that I zap a lot, which I do because it generates a lot of rewards. That means the kind of content I like is subsidized by the Stacker News rewards algorithm and I have fairly idiosyncratic tastes. My preferences are therefor implicitly part of the SN rewards algorithm (as are yours, but I probably zap more).\n\n# The Takeaway\nIf Stacker News doesn't have the right balance of content for you, it might be because people like me are funneling the rewards to the stuff we like.\n\nIf you want Stacker News to have more of the content you like, then reward the people who make content you like. There's no reason not to, since @k00b is essentially offering full refunds on zaps via the rewards algorithm he designed. \N 12819 \N 198914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.19648721681636 0 \N \N f 0 \N 0 132860125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 358848 2025-01-06 18:15:48.972 2025-03-29 22:39:46.79 The Network Access Exception To The Money Transmitter Rule \nI apologize for all these posts about this topic. It really has me obsessed, as you can probably tell since I'm posting on a Saturday night. I do believe, though, that there is some good news. \n\nI downloaded the government's response to defendant's motion to dismiss in the Tornado Cash case:\nhttps://stacker.news/items/521222/r/siggy47\n\nBased upon the government's own submission, it seems that lightning products are not money transmitters under federal law. The relevant statute is cited by the government in the opposition papers.\n\n> 31 C.F.R. § 1010.100(ff)(5)(ii)(A) contains an exception for "network access services". \n\n As the government explains, this exception \n\n> is typically used in the law to refer to a provider of access to a general network such as the Internet. See, e.g., In re WorldCom, Inc., 371 B.R. 19, 23 (Bankr. S.D.N.Y. 2007) (describing WorldCom’s provision of “network access services” to “computer networks,” which were “in turn linked to other computer networks, collectively forming the global digital communications network generally described as the Internet”)\n\n\nIt seems that the lightning network is exactly the type of general network contemplated by the statute exception. Those who provide access to the network fall under the exception to the money transmitter rule.\n\nTherefore, the FBI Advisory could be seen as intentionally misleading, and even more puzzling. \n\nKeep in mind that nothing contained herein should be construed as legal advice.\n\n\n \N 15180 \N 358848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9294827244361 0 \N \N f 0 \N 0 126407280 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3852 2022-11-10 22:50:15.134 2025-03-29 22:39:46.791 Martti Malmi's (Sirius) emails with Satoshi from 2009-2011 \N https://mmalmi.github.io/satoshi/ 10493 \N 3852 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.6130100483038 0 \N \N f 197667813 \N 1 17797062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 244628 2024-09-23 05:28:53.369 2025-03-29 22:39:46.788 I finally set up my own Lightning node ⚡ After many years of running a bitcoin node, (just for fun / personal interest), I finally decided to install `lnd` on the node and operate my own lightning node.\n\nWhy? Partly, it's because I finally found the time to do it. But also partly, I wasn't too happy with some of my previous Lightning wallet experiences. Either I ran into bugs, or the apps would get shut down for U.S. users due to government shenanigans.\n\nAll the while, my stash at SN was sitting at over the limit, and I didn't have anywhere to send those sats to.\n\nSo all of that finally gave me the motivation to set up LN. It wasn't too difficult of an experience., though I did everything from scratch from the command line. I prefer to do it that way because it helps me understand how the software actually works. The fine folks at [raspibolt.org](https://raspibolt.org) have provided very clear instructions, I only had to change a few things related to pointing things to the correct paths.\n\nI think the whole thing only took a couple of hours. It probably took longer than it should have because I had to debug parts of the setup due to a different directory structure than what my instructions assumed. \n\nOnce it was all set up, I opened a couple of channels, one of course being to Stacker.News. I purchased an Amazon gift card via `Bitrefill` and the payment was nearly instantaneous, and now I have both outbound and inbound capacity. Of course, I withdrew some of my stack from SN so as to bring it below the maximum limit and now everything is happy and as it should be.\n\nThe way I see it, there were two main benefits to doing this.\n- First, I no longer have to rely on third party apps to make or receive lightning payments. I am now in full control over my own lightning node.\n- Second, I have a better understanding of how lightning works under the hood. Using command line to execute each step of connecting to peer, opening channel, sending payment, receiving payment, and checking balances really improved my grasp of how the network functions.\n\n \N 836 \N 244628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.03433262530101 0 \N \N f 0 \N 0 18194816 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 169353 2024-05-13 02:22:26.376 2025-03-29 22:39:46.789 Privacy Pub 1 - Buy a VPN with Bitcoin + Firewalls ## **Buying a VPN with Sats ➕ Bonus Firewall Tips**\n\nWant an easy way to level-up your ~privacy that you can setup in minutes? Today, we're going to purchase access to a VPN service with sats. This will encrypt the data between our devices & our internet service provider (ISP) and shield us from snooping. The likes of PIA, NordVPN, Surfshark, ExpressVPN and others may be better than going without a VPN entirely, but we as Bitcoiners can do much better. We can use one that has shields our identity from our data much better. One of **[Mullvad](https://mullvad.net/en), [iVPN](https://www.ivpn.net/)** or **[Proton](https://protonvpn.com/)**.\n\nToday we're going to be **purchasing with one of these VPN providers using Bitcoin in less than 10 minutes**. Take your pick from 3 companies that Stackers have been recommending over & over again. So add a comment below in the SN chat to let us know how you get on with...\n\n![Logos of VPN options](https://image.nostr.build/af4fdf9f37b913cf3a07a81919e965dcd04b9d1e1362420f74b32693be91f1da.jpg)\n\nToday's Challenge: **Purchasing a VPN using sats, plus advanced tips on using VPS/Routers/Firewalls.** \n\n----\n\n### Share Tips! ⚡\nIf you already use one of these services, share your tips in the comments below 🔽 \n\n------\n\n\n## Related Stacker Articles 👀\n\n[VPN and Fun Hacks Using it ](https://stacker.news/items/259866/r/davidw) by @Natalia\n[How to Protect Your Home Network with a Gigabit VPN](https://stacker.news/items/131191/r/davidw) by @k00b\n[How to Build Your Own Wireguard VPN in Five Minutes (2022)](https://stacker.news/items/377701/r/davidw) by @Roll\n[Configure a dedicated router with VPN service](https://stacker.news/items/265086/r/davidw) by @modobitcoin\n\n\n![](https://image.nostr.build/6773ba3a82d89c97adbce089b7ce9c519b2034c9e5b43e98fe25890b6d970568.png)\n## **Hierarchy of Network Privacy**\n\n🍕 Laszlow was the pizza guy and an early Bitcoiner. For no other reason, we're calling this segment "_**Laszlow's Hierarchy of Network Privacy**_". Like *Maslow's Hierarchy of Needs* except as follows:\n\n1. Acknowledge importance of privacy\n2. Install first mainstream VPN\n3. Buy a privacy-focused VPN (+ install firewall)\n4. Purchase new router & install own VPN on server\n5. Copy what Jameson Lopp is doing\n\n\nAs you know, VPNs are *not only* useful for **obfuscating your location** and **protecting your user-data**, they can also save you money highlighted by @Natalia's article on [SN here](https://stacker.news/items/259866/r/davidw) and if configured correctly, they'll **shield you from ads** too.\n\n-----\n\n### **Level 3. Intermediate - Buy a privacy-focused VPN 🌐**\n\nWith this post, we're covering VPNs on our devices that interact with the internet most - our phones & computers. As mentioned, we'll be buying a privacy-minded VPN, from either [MullVad](https://mullvad.net/en), [Proton](https://protonvpn.com/) or [iVPN](https://www.ivpn.net/). Discussing the sign-up flow and benefits of each and tips for additional layers of obfuscation.\n\nAt the bottom of this article for instance, is a section in firewalls and DNS. DNS is how you connect with the internet, routing domain names to IP addresses. Each VPN offers their own DNS server, with some now rolling-out and "open-sourcing" known block-lists to shield you from adverts & malware before they even reach your browser. This doesn't mean they are filtering your content or seeing what you are doing, it is simply an allow/block list applied to traffic. You'll see the option to enable/disable some blocklists with the VPNs on offer below, however you may seek more control.\n\nThe additional DNS 'perks' with our VPNs are great, but at times they may be a little limiting, particularly if you need granular control over which IP addresses are blocked/enabled. For instance if doing client software development and needing to enable ads for access to a specific site. For that reason, I have included another section looking into `Firewalls`, considering they *can* be run on single machines or configured to pair with your chosen VPN on owned/cloud hardware. If you already have a firewall and custom DNS setup, here are some block-lists to take advantage of:\n\n\n### `Where to Find IP Addresses to Block?`\n- [The Block List Project](https://github.com/blocklistproject/Lists)\n- [The Big Blocklist Collection](https://firebog.net/)\n- [DNS Blocklists](https://github.com/hagezi/dns-blocklists)\n- [NextDNS - Blocklist](https://github.com/nextdns/blocklists/tree/main/blocklists)\n- [NextDNS - Native Tracking Domains](https://github.com/nextdns/native-tracking-domains)\n- [NextDNS - Click Tracking Domains](https://github.com/nextdns/click-tracking-domains/blob/main/domains)\n\n\n\n-----\n\n### **Level 4. Upper Intermediate - Router-Level VPN ☎️**\n\nEventually you're going to want to step up your game and buy a new router and install your own VPN on it. Reason being, the security on your TV, security cameras, light bulbs, fridge - you name it - anything that's connected to the internet, quite frankly sucks. Plus it prevents us from needing to install clients on every machine connected to our Wifi.\n\nIf you want to become a ~privacy popeye, you might wish to take the extra time to buy a separate router for ~$100-150. To understand why you might do this, go read [this article](https://www.routersecurity.org/consumerrouters.php) on the drawbacks of ISP/consumer routers.\n\nOne you have a new router, you can then ring your ISP and ask them to turn your existing router/modem combo into just a modem. And plug-it into your newly bought router. That way, ALL data on your home network can be separated and shielded with certainty, and easily routed through a VPN installed on the router itself. Meaning regardless of the device (inc. TVs, fridges, family and the like), ALL traffic will be shielded from your Internet Service Provider (ISP) without needing to install separate VPN app clients. \n\nThere was a great [SN post](https://stacker.news/items/265086/r/davidw) as a guide recently, specifically using Mullvad. Given I am moving around a bit right now, I'm not in a position to perform these steps on a home router, but perhaps we'll do a follow-up post on this in future. Furthermore, if you have zero trust for third parties, chances are you may have your own proxy VPS setup already. There's also that option too of setting-up a VPN on a cloud server. Here is a [SN post](https://stacker.news/items/377701/r/davidw) on doing that with WireGuard and also some GitHub repos to check out if this is of interest: [Algo](https://github.com/trailofbits/algo) & [OpenVPN](https://github.com/angristan/openvpn-install).\n\n-----\n\n### **Level 5. Advanced - Hardware Ninja-Turtle Setup 🐢**\n\nRather than even attempt to describe what to do here, just go & read [Jameson Lopp's article](https://blog.lopp.net/how-to-protect-your-home-network-with-a-gigabit-vpn/) which was posted by @k00b [here on SN](https://stacker.news/items/131191/r/davidw) . The guide runs through the entire $475 hardware stack, configuration & installation process, with some great diagrams of a 'perfect' setup. This seems to be the holy grail for us improving our network privacy. One day we'll all get there and be at the top of the pyramid yelling "yeehaa". For today though, we'll take it easy and simply buy a privacy-focused VPN with our hard-earned sats...\n\n----\n\n# **Time to buy a VPN with Bitcoin! 🟠**\n\n| | Mullvad | Proton* | iVPN* |\n| ---- | ---- | ---- | ---- |\n| <1 Week | - | - | $16 or $9.20 ⚡ |\n| 1 Month | $5.46 ⚡ | $9.99 | $10 or $6.90 ⚡ |\n| 1 Year | $5.46 ⚡ | $5.99 | $8.33 |\n| 2 Years | $5.46 ⚡ | $4.99 | $6.66 |\n| 3 Years | $5.46 ⚡ | - | $6.11 |\n\n*Note: Prices are pro-rata monthly USD. Proton has a free plan also. iVPN pricing shown is 'Pro', they offer a cheaper plan for 2 devices, plus a [light](https://www.ivpn.net/light/) service to use for as few as 3 hours also.*\n\n\n------\n\n## `1. Mullvad`\n\nWebsite = https://mullvad.net/en\nGitHub = https://github.com/mullvad/mullvadvpn-app\n\n![Mullvad VPN](https://image.nostr.build/3fb983627d9a0ece348cc2a354297ced63aa48a25dff6b6c1205d49f2fbb9f62.png)\n\n\nMullvad has plenty of Stackers recommending their services: [here](https://stacker.news/items/259866/r/davidw), [here](https://stacker.news/items/221626/r/davidw), [here](https://stacker.news/items/146698/r/davidw) & [here](https://stacker.news/items/259753/r/davidw). It is likely going to be my preferred choice going forward, because of the additional integration & reliability when pairing with other services, like Firewalls (for custom IP block-lists) and Wireguard/Tailscale (for potentially file-sharing between devices or interacting with an LN node via Zeus).\n\n### **Positives**\n- No username or password - just store one (disposable) key.\n- No logging by Mullvad as seen in [their policy](https://mullvad.net/en/help/no-logging-data-policy).\n\t- They "want you to remain anonymous".\n\t- Only stores `account number` & `expiry date of account` (providing that you don't pay using a credit/debit card, purchase in app or email them).\n\t- If using their apps, they send the `app version` & `operating system` version to Mullvad servers (this can be avoided in advanced steps).\n\t- If using Wireguard, also `account number`, `pubkey`, `tunnel address`.\n\t- [Mullvad VPN subject to a search warrant. Customer data not compromised](https://stacker.news/items/167420).\n- 10% off when paying with on-chain Bitcoin.\n- Buy vouchers *without* credit card or personal information, using an external site not run by Mullvad, we can buy Mullvad vouchers over LN ⚡\n- Built-in kill switch that kicks-in automatically and prevents any data or IP leaks when switching between server or VPN locations.\n- Built-in ad blockers, multi-hops & censorship obfuscation via Wireguard.\n- Same pricing, no matter the length of term.\n- Supports multi-hops (entry and exit servers).\n- Been around since 2009. \n- Open-sourced VPN on [GitHub](https://github.com/mullvad/mullvadvpn-app).\n- Great external review can be found here by [CNet](https://www.cnet.com/tech/services-and-software/mullvad-review-solid-security-and-privacy-but-swedish-jurisdiction-is-concerning/).\n- It also has a [dedicated CLI](https://mullvad.net/en/help/how-use-mullvad-cli) which works even when the app/GUI is closed.\n- Beta [integration with Tailscale](https://mullvad.net/en/blog/2023/9/7/tailscale-has-partnered-with-mullvad) (useful to remotely access your node on mobile).\n\t- For now, you cannot do this anonymously. \n\t- A new Mullvad account needs to be purchased via Tailscale platform (without anonymous voucher signup). Hopefully soon this will be rolled-out for other existing Mullvad accounts: ![Mullvad + Tailscale](https://image.nostr.build/457fff7ca1bad2a0c7b5eaed57b2d9803bb6a764c1c6afb05cb081051959a586.png)\n\n### **Negatives**\n- Currently incorporated in Sweden, a government that is part of the "14 Eyes Intelligence Sharing" alliance & conducting [mass surveillance](https://www.zdnet.com/article/sweden-and-uks-surveillance-programs-on-trial-at-the-european-court-of-human-rights/).\n- Limited to just 5 devices per account.\n- Some reports of battery drain when using Tailscale on mobile with Mullvad on older versions of iOS - apparently now fixed with iOS 17.2.\n- No "direct" lightning purchase yet.\n- Almost all IP addresses black-listed by Reddit\n\n### **Step by Step**\n1. Go to https://mullvad.net/en/account/create (ideally using a Tor browser).\n2. Generate yourself an account key.\n3. Top-up using voucher (Lightning) or on-chain Bitcoin.\n4. If using voucher, go to [this site](https://vpn.sovereign.engineering/account?is_hidden=dummyyes) to anonymously purchase a voucher.\n5. Enter voucher code on Mullvad manually and get hiding!\n6. Download Desktop app and configure Settings (location, blockers, hops).\n - Enable kill switch & lockdown mode (to prevent leaks, even when app closed)\n - Enable content blocking (Ads, Malware for example).\n - Choose location(s) & click 'Secure My Connection' then you're all set!\n - Filter by country (Entry/Exit) + owner of IP - for a full list visit [here](https://mullvad.net/en/servers)\n - Select 'Wireguard' as Tunnel protocol (since OpenVPN is often slower).\n - 'Wireguard Settings' & enable 'Multihop' & 'Obfuscation' for max privacy if latency not an issue.\n7. Create a fresh account in 3 months time, pay via Lightning and use a new account identifier, to minimise data collection!\n\n\n| ![Mullvad Step 1&2](https://image.nostr.build/d45fb0ed9ed2e4df294c04d485e35a9ee575640c658979932da705f1fc3dc657.jpg) |\n| ---- |\n| ![Mullvad Step 3](https://image.nostr.build/e87fa75358ff455d43b12b044cf3444cc5674dd5af83dd2ad1d80aa10b26b864.jpg) |\n| ![Mullvad Step 3b](https://image.nostr.build/24c7d34856ff9bf968cd7bdf22f3a70329c7f64ca6131ba6c91ed694e2a27c3c.jpg) |\n| ![Mullvad Step 4](https://image.nostr.build/750045ba3bbb620a37d21d7dbfec818149076913bb01f43cf3f75894027cc4c1.jpg) |\n| ![Mullvad Step 5](https://image.nostr.build/526294d881398b77d8641afaddf690a966a0b7ecd6c86e50fa8f4dd2ab78caf7.jpg) |\n| ![Mullvad Step 6](https://image.nostr.build/d1afdd5052ae7bbdfd176d49ea1e464fd94fcc8db5a1fab96af62ae2dfbb9678.jpg) |\n| ![Mullvad Step 7 & 8](https://image.nostr.build/c431bbbdc262f5cf5204d2ae267aba25ce96cb7bed35aacb7d0c8bd908d18e94.jpg) |\n| ![Mullvad Steps 9 & 10](https://image.nostr.build/e24eb9371a4ba5b7a8a0280cdcd1e75c8b10bbda6f89c15fcb5607eb54385035.jpg) |\n| ![Mullvad Steps 11 & 12](https://image.nostr.build/31e2575cfb873307a0e66f8e72ed3e6d441659980cdfdbe651bef8b142888340.jpg) |\n\n\n### **Bonus Steps**\n\nTo enable a different server proxy for a particular browser:\n- [Enable SOCKS5 settings](https://mullvad.net/en/help/socks5-proxy) and use a 3rd hop in an alternative location to further differentiate your regular browsing vs all other apps (e.g. for Firefox).\n\n**To install WireGuard on Phone:**\n- If without a privacy phone (and run Apple/Google/Samsung) and not wishing to associate yourself with Mullvad by downloading their app from AppStore, visit [this link](https://mullvad.net/en/help/tag/wireguard). This will avoid you showing up as customer of theirs. Note: VPN killswitch is often disabled when using this method.\n- Open desktop site and select location(s) for exit node(s) AND server.\n- Open 'Advanced Settings' toggle in browser, and enable 'Multihop' for maximum privacy if latency not an issue.\n- Click 'Generate QR Code' and scan with mobile device. Voila!\n\n**To install Mullvad on Router:**\n- Buy a new router, e.g. from [GL-iNet](https://www.gl-inet.com/products/compare/) (particularly [this one](https://www.gl-inet.com/products/gl-ax1800/)) or from [MicroTik](https://mikrotik.com/products/group/new)or from any other vendor. Then install WireGuard on it by following [this Mullvad Guide](https://mullvad.net/en/help/running-wireguard-router).\n\n\n-------\n\n\n## `2. iVPN`\n\nWebsite = https://www.ivpn.net/\n'Light' Service = https://www.ivpn.net/light\nGitHub = https://github.com/iVPN\n\n![iVPN Page](https://image.nostr.build/411aa08f3a59ba8c7ae7fde8e2a718aff09114441cb5f3b0c0cb51b03d573c65.png)\n\n\nIt's great to see people at iVPN really engaging with the Bitcoin community, having launched a product specifically for us [here on SN](https://stacker.news/items/259328/r/davidw). iVPN has also had various stackers recommending them on SN [here](https://stacker.news/items/259328/r/davidw) , [here](https://stacker.news/items/232128/r/davidw) , [here](https://stacker.news/items/128887/r/davidw) & [here](https://stacker.news/items/259409/r/davidw). Since having used their product, I am blown-away by the amount of advanced features, the great UX and the levels of customisation on offer.\n\n### **Positives**\n- Try for as little as 3 hours!\n- Pay with Bitcoin/Lightning natively at just 2nd Step! 👏\n- @viktorv the COO from the iVPN team lurks with us here on SN 🤠\n- No email or password - just store one (disposable) key.\n- Pay over Lightning with Bitcoin! ⚡🤩 using their own BTCPayServer!!!\n- Built-in ad and malware blockers - feature called [AntiTracker](https://www.ivpn.net/antitracker)\n- Integrates with Wireguard on mobile/desktop.\n- No logs, regularly audited VPN service, VERY clear [privacy policy](https://www.ivpn.net/privacy/)\n- Killswitch and really advanced settings (like custom DNS) to give you full control of ~privacy.\n- Pro plan is best offering.\n\t- Works on up to 7 devices.\n\t- Supports multi-hops (entry and exit locations).\n- Great integration with NextDNS.\n- Additional SOCKS5 proxy also.\n- Been around since 2009/2010, so been around for a while.\n- Open-sourced code on [Github](https://github.com/iVPN).\n\n### **Negatives**\n- 'Light' service incompatible with their own VPN apps (only [Wireguard](https://www.wireguard.com/install/) ).\n- Took a restart to get it working with latest version of MacOS\n\n### **Step By Step - iVPN - Standard/Pro**\n1. Go to https://www.ivpn.net/pricing/ and select plan.\n2. Copy account key, select plan length & click 'Bitcoin'\n3. Choose Lightning, scan QR code and pay with sats\n4. Download & install app(s) for your device\n5. Login using your account key from #2\n6. Enable firewall, anti-tracker and choose a Location\n7. Settings - General - Change default launch options\n8. Settings - Connection - Choose protocol & key rotation ⭐\n9. Settings - Firewall - Enable always-on & prevent access without it if wish\n10. Settings - Anti-Tracker - Add custom block lists & toggle more hardcore option\n11. Settings - DNS - Redirect DNS to your own network firewall (see later section, if wish)\n12. Settings - Advanced - Enable additional auth for ~security and require password when restarting app.\n\n| ![iVPN - Step 1](https://image.nostr.build/9f0f874b09093de24c2a47b50caf538c740046d6fb54a6c573f6e85957d51dd6.jpg) |\n| ---- |\n| ![iVPN - Step 2](https://image.nostr.build/88c5359c797e183ee4a65c92ab50e9bae93a7e477ac7b5b6d732a94f4e166aad.jpg) |\n| ![iVPN - Step 3](https://image.nostr.build/fe069d59fd78c66367ee958e9cb14d0001079e1b0c4d24f78767abfda98fbaa8.jpg) |\n| ![iVPN - Step 4](https://image.nostr.build/b0e65f606368e183c1a560d9e5e3442b706835d03b7a40628b6fb8b89acfead8.jpg) |\n| ![iVPN - Step 5](https://image.nostr.build/add8a45e5fe758689409cc9d0166bda5bd3ac132e0257ba9dc769fcffc87ec76.jpg) |\n| ![iVPN - Step 7](https://image.nostr.build/d1a77d8f805a06f6705371de6551d8fb7ae048574ea7b6ed4968552276787715.jpg) |\n| ![iVPN - Step 8](https://image.nostr.build/31886778e44170e9d394a35776149eb90b37b315fc95376ae1b688e00d5f7069.jpg) |\n| ![iVPN - Step 9](https://image.nostr.build/35cb071c7f0eb2122d9849a02e8ab7cbae31ca7c7f6bfff2d802c1dded032f59.jpg) |\n\n\n\n### **Step By Step - iVPN Light**\n1. Purchase the [light](https://www.ivpn.net/light) service with zero friction, select single/multi-hop locations and click 'Purchase access' (can do this in a Tor browser).\n2. Be taken to BTCPayServer, scan the QR code and you're in! Click the 2nd button to continue.\n3. You'll be redirected back to iVPN, where you can download the config file with the blue button at the bottom.\n4. Now download Wireguard app. The iVPN Light service is NOT yet compatible yet with iVPN app(s).\n5. Import the tunnel config file we downloaded from 3. Click 'Activate' and you're setup!\n\n\n\n| ![iVPN - Step 1](https://image.nostr.build/94bffe501a0ea8ba9f7f9f3877bc1f957043dd5c440c3c12da6a282843fdcd57.jpg) |\n| ---- |\n| ![iVPN - Step 2](https://image.nostr.build/ecb1f3505325d5931edd9c8060cbfc27a1df508f8f44f4ad412bdc08e68cedcd.jpg) |\n| ![iVPN - Step 3](https://image.nostr.build/a0f7a5f6d8aaafa22d7941301afbac7fdedbe7ed93dbd371617dff3bf160b922.jpg) |\n| ![iVPN - Step 4](https://image.nostr.build/32257cb736921adba41077d46490abb415286d147d00dc1648c7c196b3a2fde5.jpg) |\n| ![iVPN - Step 5](https://image.nostr.build/df4696c9c1a5e8e7aa82ea2815464a72ce7726242fbb6b812ee5ffd30ad27d7c.jpg) |\n\n### **Bonus Steps**\n- To install iVPN on a router follow this guide - https://www.ivpn.net/setup/router\n\n-----\n\n\n## `3. Proton`\n\nWebsite = https://protonvpn.com/\nGitHub = https://github.com/ProtonVPN\n\n![](https://image.nostr.build/27676a5e122d60329abc661ee505559e7e4ce16492e380dbd043b0d2c247c685.png)\n\nLast but not least, we have Proton. Proton is also a service used by a few Stackers in the community, with posts [here](https://stacker.news/items/228463), [here](https://stacker.news/items/222597), [here](https://stacker.news/items/31435), [here](https://stacker.news/items/383447/r/davidw) and [here](https://stacker.news/items/80177). There was some constructive criticism of their service [here](https://stacker.news/items/371939) on SN when using Tor. They offer a free VPN and a paid service and on their VPN service have a no-logs policy. For some strange reason they don't accept Bitcoin payments over Tor though, which has led to some scepticism.\n\nI can certainly see the appeal from a convenience perspective with Proton offering the VPN in an 'Unlimited package' amongst other Proton services (passwords, email, calendar, drive). They are fighting the good fight, although it may be wise to spread our risk wherever possible (perhaps keeping our VPN with a separate provider to our mail/password manager and thus preventing lock-in).\n\n![Proton Unlimited with all services](https://image.nostr.build/f360320efbc6cbf18fdc2f46787c3a9f7e97b7d02c6c945792c1dff65d7b971b.png)\n\n\n### **Positives**\n- No-logs policy.\n- Free service to try before you buy, with paid subscribers subsidising it for free users.\n- Purchase with Bitcoin (over clearnet).\n- Kill-switch and secure core for routing traffic through "privacy-friendly" countries\n- Create multiple custom profiles and switch between them easily. Create Tor profiles.\n- "NetShield" for blocking malware, ads & trackers.\n- Open-sourced VPN code on [GitHub](https://github.com/ProtonVPN).\n\n### **Negatives**\n- Lack of advanced options & configuration - in comparison to alternatives\n- Requires email & password to sign-up - other options provide simple account key to remember.\n- Automatically generates passwords for users - potential big vulnerability\n- Difficult to find Bitcoin payment options (until have an existing account, and go to checkout page after sign-up)\n- Only on-chain Bitcoin supported, no lightning.\n- Proton seems to work hard to "filter" spam / track & identify users at sign-up.\n\t- e.g: Cannot use Proton email address for signing-up.\n\t- e.g: Cannot use Brave Browser with shields or Tor to sign-up.\n\t- Cannot create / pay for account with Bitcoin when using Tor - see [here on SN](https://stacker.news/items/371939).\n- More commonly used and therefore more likely to have certain IP addresses blocked.\n- Proton has [previously given over IP addresses](https://www.wired.com/story/protonmail-amends-policy-after-giving-up-activists-data/) to Swiss authorities for email service, but not for VPN.\n- Reports of compatibility concerns with NextDNS.\n\n\n### **Step By Step**\n\n1. Go to https://protonvpn.com/pricing and click 'Get Proton Free'\n2. Enter email address and click 'Start using' Proton VPN\n3. Verify email address if needed\n\t- For some silly reason Proton don't allow you to use a Proton email address for sign-up, and have blocked many 'burner' / temporary email services\n\t- Also troublesome when using Tor or Brave with 'shields up'\n4. Choose secure password - DO NO use their own calculated default 🤦‍♂\n5. Download the correct app for your device\n6. Login, connect, enable & start using the VPN\n7. If enjoying the Proton experience, visit your [ProtonVPN Dashboard](https://account.protonvpn.com/dashboard) and select a plan.\n8. Under 'Payment method' for checkout, choose Bitcoin. Send on-chain sats.\n9. After confirmation, restart VPN and check 'advanced' options displaying for you. Create custom profiles.\n\n\n| ![ProtonVPN - Step 1](https://image.nostr.build/0770dd79c9a7ac4a7eef53e9cdb271a79f9a43cc873bb506bf3395f74a55e9a5.jpg) |\n| ---- |\n| ![ProtonVPN - Step 2](https://image.nostr.build/cf6e015d9dcce4f27ea01f9fa8b2ce1eb1ad7bbd064ca4f76fcc8145a5265a74.jpg) |\n| ![ProtonVPN - Step 3](https://image.nostr.build/366c545f99ee964da1412eb4aa8a94af58e44e54a3463bc407a4d03051aff7ed.jpg) |\n| ![ProtonVPN - Step 4 & 5](https://image.nostr.build/161e9713dd6b022ecb584a4d83f165f5e4e4633196cecc78b2c61635871ccc44.jpg) |\n| ![ProtonVPN - Step 6](https://image.nostr.build/894160efb3def24b081d05ee56109f821cc817db842ff389632d7de03e0b6545.jpg) |\n| ![ProtonVPN - Step 7 & 8](https://image.nostr.build/93894eed6e8c547c6346b3b45425dca76c644b335b71238bbbce3f8bb98b213e.jpg) |\n| ![ProtonVPN - Step 9](https://image.nostr.build/4aa28e5aa1ff9eb6c9b35decedbdd7a044c6be6bacbe5d4feb10d61d70109fd8.jpg) |\n\n\n### **Bonus Steps**\n1. To install Proton on router, buy a new router from [InvizBox](https://www.invizbox.com/invizbox-2-protonvpn/) or other compatible hardware.\n2. Download the Wireguard configuration files from Proton - [instructions here](https://protonvpn.com/support/wireguard-configurations/)\n3. Follow the complete guide on obtaining [seamless integration between your router & Proton VPN](https://protonvpn.com/support/invizbox-router/)\n\n\n\n-----\n\n\n-----\n\n# **🔥 Firewalls**\n\n![Logos of Firewall options](https://image.nostr.build/fa694c2bd0f5f9d3e82d112737c9dc46f784ac752b2f53bb3264ce95bec8fa63.jpg)\n\nTalking about DNS and firewalls could have been a post in it's own right, but using a VPN with a Firewall is a powerful combination for privacy, especially when you have both:\n1. **Extremely private open-source VPN** - without requiring email - all paid anonymously with our hard-earned satoshis.\n2. **Fully-featured firewall that helps you restrict certain traffic** - providing protection for all web traffic, apps & OS-level network operations. Open-source software.\n\nThere are a bunch of Firewall solutions out there, but I have chosen a few that cover a range of hardware / setups. There may be better options like [OPNSense](https://opnsense.org) if installing direct on the router. Some of the recommendations are open-source and those that are not have a decent track record with no known instances of logging data.\n\n----\n\n-----\n\n## `1. PiHole`\n\nWebsite = https://pi-hole.net/\n\n![Pi-hole interface](https://global.discourse-cdn.com/standard14/uploads/getumbrel/original/1X/35c123d14cee68aba36880e5c98a5cb4adc799ab.png)\n\n![](https://www.techaddressed.com/wp-content/uploads/2022/04/pihole-dashboard.webp)\n\n### **Positives**\n- 100% free\n- Open-source\n- Can double as a network monitoring tool (see screenshot above)\n- Can reduce bandwidth usage\n- Blocks ads & trackers web-wide places, inc. in several video streaming platforms\n- Supports Gravity, a script which retrieves blocklists & consolidates them into one unique list for the DNS server to use.\n- Big enthusiastic and helpful community\n- Integrates with well [Home Assistant](https://www.home-assistant.io/) (open source home-automation)\n- Only need to have 4GB space & 512MB RAM to run (recommended)\n- Configure your own local 'domain' for development on your network\n- Can be installed on other hardware besdies Raspberry Pi devices.\n- e.g. Great plug-and-play support for running on [Umbrel](https://apps.umbrel.com/app/pi-hole)\n\t- Simple setup, just set the Primary DNS on your VPN/router to the IP address of your Umbrel.\n\n### **Negatives**\n- If you have a device you don’t want blocking enabled on, you will have to manually change that device’s DNS settings to exclude it\n- There is no option in the web interface to disable blocking on individual devices. Or to have any parental controls.\n- Uses Coinbase to process donations via Bitcoin (and other💩)\n- Most people will need to purchase new hardware, costing minimum $35.\n- If not maintained/configured properly can cause issues, valid from @Darthcoin [here on SN](https://stacker.news/items/74720/r/davidw)\n\n\n\n-----\n\n\n## `2. NextDNS`\n\nWebsite = https://nextdns.io/\n\n![](https://image.nostr.build/161995c6099541a1eb43316faf6c55303bda8b0de551986a0238b0dd2dfb0922.jpg)\n \n I have only just started using **[NextDNS](https://nextdns.io/)**, but they have done a great job at providing an accessible service that integrates well with most VPNs. They do so without requiring any specific hardware to host it on, with you simply pointing your VPN at it.\n\n### **Positives**\n1. You can automatically subscribe-to and add existing advert block lists (in 1). \n2. Just as impressively, you can disable native tracking done by Big Tech if you have yet to migrate from their operating systems (2).\n3. Lastly, there are also certain restrictions (3) you can place on yourself or "kids" at a network level also - `e.g: no StackerNews before the saloon opens at 6am EST.`\n\n ![NextDNS privacy configuration options](https://image.nostr.build/a28cb0bf43410556b64a43ff43be893bd2cc4da022cd5b07b41518e01c74c6a1.png)\n\n ![NextDNS menu options](https://image.nostr.build/a864aa6f6842bb43406e69c973c497e6da9e08e37b62d45dd8f56d6f170ad292.png)\n\n### **Negatives**\n- NextDNS accept Bitcoin via BitPay 😠\n- NextDNS are a U.S based company, and they provide no evidence they cannot see/process your information.\n- They have shared the [source for their clients](https://github.com/nextdns), but not the server software.\n- Freemium business model with free tier limited to 300k queries per month and after that their filtering stops. Free software can sometimes mean users are the product.\n- Apple's Private Relay can have issues with NextDNS.\n- No court cases to "battle-test" the zero-logging policy they reference.\n\n### **Furthermore...**\n- NextDNS also published their[native tracking domains](https://github.com/nextdns/native-tracking-domains) and [ad blocklists](https://github.com/nextdns/blocklists/tree/main/blocklists) on their [GitHub](https://github.com/nextdns/), so even if you don't wish to use their software, you could use these lists for an alternative firewall setup.\n- NextDNS have also said they "will never engage in any data sharing or selling activities, now or in the future." And have [agreed to abide by the Mozilla Policy](https://wiki.mozilla.org/Security/DOH-resolver-policy).\n- Even on their free tier, they mention they do not log any data their clients do not specifically request.\n- You can configure your DNS settings on your device(s) using these instructions.\n- You will have **most success with either iVPN or Mullvad**. Proton occasionally has been known to have compatibility issues with NextDNS.\n- You may have cookie-blocking or tracking protection enabled in your browser, but with a setup like NextDNS you can now have that extra comfort in case something sneaky slips-through either the browser or an app you are using.\n ![NextDNS privacy page](https://image.nostr.build/2f257f211ac9418933584803461fff6d0d879662f8995747dcb3e5d9f7113620.png)\n\n\n\n------\n\n\n\n## `3. Portmaster / OpenSnitch / LittleSnitch`\n\nIn this section, we have listed some firewall clients that can be installed on isolated computers and machines. I have previously used **LittleSnitch** on Mac to great effect. They can be configured so that every data packet from every IP address from every application needs to be approved by you if you wish. However their real power just comes from the traceability and rules you build-up over time, to create your own allow/block lists - without depending on any third parties or hardware setup.\n\n\n### **Portmaster (Linux/Windows)**\n- Linux and Windows only.\n- Some limited compatibility with certain VPNs. Look into compatibility **[here](https://wiki.safing.io/en/Portmaster/App/Compatibility#vpn-compatibly)**.\n\n![Create rules in Portmaster](https://safing.io/assets/img/page-specific/portmaster/manually-allow-ord-block-connections.png)\n![Portmaster - UI](https://www.ghacks.net/wp-content/uploads/2022/05/portmaster-interface.webp)\n\n\n### **OpenSnitch (Linux)**\nWebsite = https://github.com/evilsocket/opensnitch\n\n![](https://user-images.githubusercontent.com/2742953/85205382-6ba9cb00-b31b-11ea-8e9a-bd4b8b05a236.png)\n\n### **LittleSnitch (Mac)**\nWebsite = https://www.obdev.at/products/littlesnitch/index.html\n\n![LittleSnitch UI](https://www.obdev.at/Images/littlesnitch/monitor-screenshot@2x.png)\n![LittleSnitch Menu Bar Options](https://image.nostr.build/794b9bdd1b8b463dc45d6d010d244a18a80ed7eadecd8407704c98ef6cd02fbc.jpg)\n\n### **Positives of All**\n- Portmaster and OpenSnitch (not LittleSnitch) are both Open Source.\n- Ability to set custom rules, device-wide or per app.\n- Outbound connections filtering (not just inbound)\n- Auto-block trackers, cookies and malware.\n- The ability to monitor all network activity on your computer. LittleSnitch allows you to do this via a map.\n- OpenSnitch allows you to manage multiple instances/nodes from single GUI.\n- LittleSnitch offers the ability to quickly switch between modes (see screen above).\n\n### **Negatives of All**\n- Slightly cumbersome and involved to setup rules & blocklists.\n- Computer device specific - don't protect you network-wide (on Smart TVs, guests etc)\n- OpenSnitch has rugged UI (LittleSnitch & Portmaster more polished) \n- Portmaster not yet available on Mac. Plans are in progress.\n- LittleSnitch is Mac specific.\n- LittleSnitch is also paid, but available for free for 30 days!\n\n\n-----\n\n\n## `Other Firewall Options`\n- [OPNsense](https://opnsense.org/about/about-opnsense/) (Open Source)\n- [Firewalla](http://firewalla.com/)\n- [pfSense](https://www.pfsense.org/products/) (Open Source)\n- Got another suggestion? Add it in the comments below...\n\n\n-----\n\n-----\n\n## **Buy your VPN today!**\n\nSo there you have it, setting-up a VPN is really simple and hopefully this post has shown just how so. In the future it'll be time to install the VPN on a newly-bought router.\n\nKeep in mind that access to VPNs may become increasingly difficult in many countries like the 🇺🇸🇬🇧🇪🇺 in future. Thanks to draft legislation like the [RESTRICT act](https://en.wikipedia.org/wiki/RESTRICT_Act), which would "outlaw" VPN usage in the event of 'foreign adversaries' or for 'national security' reasons. It's important therefore to use a service that offers payments via Bitcoin or anonymous vouchers, which don't need to be linked to our identity, and that can be swapped-out for your own VPN service in future. Also another reason to consider generating a new account or new service every few months, so that usage or account data of any kind is limited to a certain period. Many of the VPN services below are disposable in that aspect.\n\nSome VPN companies may be logging meta data regarding page visits, sessions, device IDs etc, with some found to have been this as a secondary way of monetising their product/users or are feeding the surveillance-state To analyse and compare VPN providers, including those that are not found within this write-up, [this website is a good start](https://www.comparitech.com/vpn/vpn-logging-policies/) . \n\nWe've simply focused our attention above on the top 3 services in [Mullvad](https://mullvad.net/en), [Proton](https://protonvpn.com/) & [iVPN](https://www.ivpn.net/). If you have any extra tips, let's turn this into a real pub chat...\n\n\n----\n\n# **Upcoming Privacy Pub Challenge 🍺**\n\n`Thursday 25th January `- **Buy a Domain + SimpleLogin burner emails**\nPurchasing a domain name using sats, plus pairing it with SimpleLogin for segregated email signups.\n\n\n----\n\n## **Advanced Reading 🔗**\n\n- [Router Security - Security Checklist for your Router](https://www.routersecurity.org/checklist.php)\n- [Router Security - Consumer Routers](https://www.routersecurity.org/consumerrouters.php)\n- [Michael Horowitz - A second router can make working from home much more secure](https://www.michaelhorowitz.com/second.router.for.wfh.php)\n- [Tom's Guide - Your router's security stinks: Here's how to fix it](https://www.tomsguide.com/us/home-router-security,news-19245.html)\n- [Comparitech - Comparing VPN providers](https://www.comparitech.com/vpn/vpn-logging-policies/)\n- [Helge Klein - Home Network Privacy With NextDNS](https://helgeklein.com/blog/improved-home-network-privacy-with-nextdns/)\n\n \N 797 \N 169353 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.0845307103316 0 \N \N f 0 \N 0 167051074 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416943 2025-02-25 23:46:51.23 2025-03-29 22:39:46.789 Did you know BIP39 had a 5th author who removed himself? Thomas Voegtlin(creator of Electrum) removed himself from the authors after multiple disagreements with the BIP39 design.\n\nIf you are not aware there was quite a bit of drama on the Bitcoin mailing list around '13 when the standard was being proposed.\n\nFor context, Electrum was the 1st deterministic Bitcoin wallet that allowed for a BIP32 seed to be backed up into 12 words, and then came BIP39.\n\nIn all fairness BIP39 was kinda rushed, and even though valid criticism was provided regarding it's shortcomings, they were ignored.\n\nElectrum has its own backup scheme that supports versioning & is not dependent on a dictionary, vastly superior IMO.\n![1_grain.jpg](https://m.stacker.news/23848) \N 1737 \N 416943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7242023917418 0 \N \N f 0 \N 0 135251151 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 47773 2023-08-09 12:09:38.861 2025-03-29 22:39:46.789 Nobody should suggest using a Raspberry Pi for running a Bitcoin node in 2023!!! \nrPi 4 are Weak, NOT cheap, Old (2019), and NOT power efficient (compared to a modern low voltage CPU)\n\nI've been testing almost every Node in a box on rPi, and all the bad experiences below did happen to me at least once.\n\nrPi were designed in and sold as cheap toys to learn and experiment on DIY project using GPIO pins.\n\nThey need assembly, heatsinks, screwing fans, plugging cables to the right PIN, ect ect.\n\nCome with cheap unpredictable fans that often don't last.\n\nThe 5v3A power supply that comes with it most of the time is cheap and breaks.\n\nrPi only takes in 5 volts over that USB-C, some high quality power supply delivers ~4.9v and will trigger under voltage instability and throttling.\n\nMost newer, high quality power supply WILL NOT WORK, as they will try to jump up the voltage to 9, 12 or 20v instead of staying on 5v\n\n5 volts mean that a high quality USB cable of relatively short length is required to make sure there are no voltage drop on that low voltage line.\n\nIt's near impossible to find a charger that is above 2 AMP while the rPi needs 3A depending on the attached storage. \n\nInstalling the OS on an SD card will lead to more corruption if the power is lost to the rPI\n\nThe SD card has low and unpredictable write count. The SD card will become read only after a while.\n\nThere is no way to attach HDD storage without a extra active USB to SATA adapter.\n\nThis USB adapter is unpredictable and unreliable, might break on you, Might only work at USB 2.0 Speed \n\nNo way to install the hard drive in a clean way, Most of the time the drive is left dangling on it's cable or is being taped to the bottom of the the rPi casing.\n\nThe USB to SATA interface is slower than direct NVME or SATA connection.\n\nBeing digitally sovereign is not ONLY about running a Bitcoin node to verify your transactions.\n\nDoing ANYTHING more than running a Bitcoin Core and a light electrum server (electrs) to verify only a small personal wallet will tax your rPi beyond it's limit.\n\nFor about 100$ There are used, field test, computers that are about the same size, made of metal, 10 times more powerful, 2+ times the ram, Have ports for direct attachment of SATA and NVME drive. Wifi, Bluetooth, Have a very reliable power supply. \nAll you might want to do it swap the HDD for a bigger 1 or 2tb one and boot from a USB stick to install a new Linux OS.\n\nThe Electricity savings are ridiculously not worth it give the hassle. Each savings of 5 watts is equal to (0.005kwh) * 0.07 * 24 * 365 = $3.00 \n\nLink to Optiplex Micro search : https://www.amazon.com/s?k=optiplex+micro&s=price-asc-rank&crid=7OE2N02FZZIG&qid=1685628318&sprefix=optiplex+micro%2Caps%2C131&ref=sr_st_price-asc-rank\n \N 17116 \N 47773 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9904820632605 0 \N \N f 0 \N 0 138551360 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436076 2025-03-13 09:43:40.307 2025-03-29 22:39:46.791 What are the biggest questions of 2024? Will Bitcoin hit all-time-high?\nWill ETF be approved?\nWill Putin survive?\nWill Elton John still be standing?\n\n\nPost the most interesting and important questions for the upcoming year! \N 20713 \N 436076 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.9344480440292 0 \N \N f 211833448 \N 1 196873025 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 07:57:35.049 f \N \N \N 0 0 0 0 1 0 0 407930 2025-02-18 13:21:30.769 2025-03-29 22:39:47.087 WW3, maybe. Not clear where to put this -- no "news" or "current events" territory any more.\n\nI don't really know what to make of all this -- not only is it not in my wheelhouse, it's sort of in my anti-wheelhouse. Whatever your thoughts on the general calibre of different types of media and reportage, the absolute trough of reliability has got to be anything to do w/ _Israel vs Arabic World_ and all the culture-warring that spirals off from it like a toxic oil spill. Usually, all of it is best avoided.\n\nWith that giant disclaimer, Kulak has written a bunch of stuff before, on proximate topics, that has struck me as deeply informed and insightful, even if sometimes she gets me stirred up and enraged. So I dunno. Worthy of your attention, probably. She's a serious and thoughtful person, worth a Twitter follow if you're into that. \n\nI'd be interested in informed perspectives / reactions. https://www.anarchonomicon.com/p/emergency-quicktake-israel-is-starting 11862 \N 407930 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.35032942133804 0 \N \N f 337763775 \N 3 77807101 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423036 2025-03-02 22:26:05.412 2025-03-29 22:39:47.087 Sharing my startup: UPAID Hey SN,\n\nI'm Chris, one of the cofounders of a startup called User Provided Advertising ID (aka UPAID). We are building a new product for consumers to control the level of personalization in their ads and start earning money from them. \n\nThe wallet that powers this project is Lightning / UMA, hence why I'm sharing it here.\n\nWould love you to check it out and share your feedback with me!\n\n**What is UPAID?**\n\nUPAID is a browser extension & phone application that enables people to create their own pseudonymous Advertising ID and opt into sharing it with advertisers & publishers, in exchange for a portion of the ad spend used to show them ads. UPAID users maintain control over their ID and can reset it with the click of a button at any time, thus disassociating any data that was previously tied to it.\n\n\n**Why will advertisers pay me for access to my ID?**\n\nYou may have heard third-party cookies are being sunset in Chrome in Q4 2024 and they've already been sunset from Safari and Firefox. \n\nYou may have also heard about the increasing scrutiny around data collection via laws like GDPR, CCPA, and more.\n\nThe point is- if advertisers want to maintain addressable, measurable advertising campaigns, they need to figure out a better way to track consumers and have it done in an explicit opt-in way.\n\nUPAID aims to solve this problem for advertisers.\n\n\n**Who cares about advertisers losing the ability to track me?**\n\n#1 The obvious one: advertisers. No tracking = no targeting & no ability to measure performance. \n\n#2 Publishers. When cookies/advertising identifiers go away, publisher ad revenue drops drastically.\n\n"We observed that for the top 500 global publishers, average revenue in the treatment group decreased by 52%, with a median per-publisher decline of 64%." \n\n![Screenshot 2024-03-19 140126.png](https://m.stacker.news/21760)\n\nsource: https://services.google.com/fh/files/misc/disabling_third-party_cookies_publisher_revenue.pdf\n\nPublishers are already struggling to keep the lights on. We think UPAID will help them in 2 ways:\n\nFirst, when a publisher's audience has UPAID, it means the value of their ads will be 2-3x higher because the user is "identifiable". (Users that have an ID are worth 3x than non-identified users.)\n\nSecond, when a consumer has earned money from UPAID, we think it'll be easy for publishers to start asking consumers to spend a few cents to access content. This will open up a non-advertising revenue stream to help publishers reduce their reliance on ads and subscriptions. \n\n\n**Do I need to let advertisers track me?**\n\nNo. We give you the option to turn the ID off if you don't want to be tracked. Instead, you can just tell us what topics you're interested in or want to avoid. We can then pass that information to advertisers. This way, advertisers can still show you relevant ads based on what you like, but without needing to track you. And yes, you still get paid for it, even though it will be less than if you let them track you.\n\n**I block ads so I don't care about any this**\n\nUnderstandable. Ads do suck. We're just trying to make them suck less and help publishers in the process.\n\n**DEMO**\n\nhttps://www.loom.com/share/e59cbb16c52b47ee9ed514acb557178f?sid=788a3643-ee98-428e-8744-7330a4f6684d \n\nThanks for checking it out. \n\nIf you liked what you read / saw, please sign up for the waitlist at https://upaid.website\n\nCheers,\nChris\n \N 9494 \N 423036 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.08494000006468 0 \N \N f 240010769 \N 2 119506645 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 414861 2025-02-24 11:01:40.112 2025-03-29 22:39:47.088 What and where to comment on Stacker News Okay, you did it. You took the plunge. You signed up for Stacker News either by stumbling upon it or through a referral link. Like this:\n\n![IMG_0873.png](https://m.stacker.news/16597)\n\nI realise that some of my referees stopped using SN after a while. I don’t know exactly why, but fret not, Sensei is committed to your success here. It’s a win-win relationship: the more you flourish on SN, the more I get forwarded sats from your activity.\n\nI put myself in your shoes. You may be feeling intimidated by the prospect of territories and Stackers teasing one another in good nature. You want to join in the fun but don’t know where to jump on the bandwagon. Don’t worry. Sensei was once in your shoes. Here are three actionable steps you can take:\n\n1. Fill up your bio \n\n![IMG_0874.png](https://m.stacker.news/16598)\n\nSee the “bio” icon. Write a short intro and announce your presence to the platform. It will turn out like this:\n\n![IMG_0875.png](https://m.stacker.news/16599)\n\nSit back and wait for sats. Stackers are usually eager to welcome newbies. Use your sats to buy yourself some playing money as you familiarise yourself with SN. Then, deploy them as anchors to dig yourself deeper into the concrete of SN. \n\n2. Comment on “What are you working on this week?”\n\nYou want to post something but don’t know what to write. Why not make it a win-win situation by commenting on “What are you working on this week?” every Wednesday?\n\n![IMG_0876.png](https://m.stacker.news/16600)\n\nDeclare your goals that week. This way, you don’t have to think much because you already know what you need to slay that week. Who knows, you might feel more motivated to accomplish them since you announce them to the Universe. And you will probably get some sats that particular week.\n\n3. Comment on the Stacker Saloon\n\nPreviously, I wrote about using the Stacker Saloon as a journal. Write about one thing that happened to you that day: https://stacker.news/items/423010\n\nMy method may not be actionable advice for you. So here’s another way: pick something that you do every day. Post about your progress every day. \n\nIt can be anything under the sun. Stackers have posted about their mining rewards, push-up regimes, dishes, feel-good messages among others. Nothing is too obscure.\n\n@cleaningup12 doesn’t really post in the Saloon but he posts a cleaning video to YouTube every day. So think. There must be something you do daily. Just stack the habit of SN commenting on top of this habit. Make your writing frictionless that way.\n\nConclusion\nSo, my referees past, present and future, please don’t give up. Comment to get a handle on SN. Your proof of work will reap rewards. Generate some revenue for yourself. Make me rich. 🤑 \n\nhttps://stacker.news/r/cryotosensei \N 1320 \N 414861 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.9318888539887 0 \N \N f 194673238 \N 1 172071331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 77057 2023-10-23 07:47:37.081 2025-03-29 22:39:47.09 I am Abubakar, AMA! Hi all. I'm Abubakar, a Nigerian programmer, Bitcoin Core contributor (Zero-1729 on Github), and CEO & CTO at Recursive Capital. I, along with a few other Bitcoiners, launched Qala—a program designed to train the next generation of African Bitcoin and Lightning developers.\n\nI also serve as a board member of ₿trust, where I focus on growing the Bitcoin development ecosystem in Africa.\n\nAMA! \N 1638 \N 77057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3232990600853 0 \N \N f 208376494 \N 1 229230965 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451363 2025-03-24 14:17:16.879 2025-03-29 22:39:47.092 Do you need some hope? They have no idea of the strength of bitcoin & bitcoiners Remember what bitcoin is all about. \n\nFreedom. \n\nFreedom from those that control our money.\n\nFreedom to interact with whoever, whenever, and where ever we please without asking for permission from anyone.\n\nIts worth the fight. Its worth pushing through whatever fear you may have right now to stand strong and not back down. \n\nI'm not telling you what to do or what lines to draw but you need to think about them now.\n\nAre you gonna die knowing you stood for something or live in fear of what might happen?\n\n## Hope\n\nOften the state oversteps by going to far. I hope this is what they are doing now with this attack on freedoms of speech and association. We've seen it with the 3D printed / home built gun movement. We've seen it with encryption. You can't stop math. You can't stop speech. You can attack those that use it.\n\nHere are some risks I see for the state's latest attacks on bitcoin\n\n1. They lose in courts. Then doing this stuff will be much harder for them\n2. They lose in the court of public opinion. Making this sort of action toxic\n3. They lose technically. Systems and protocols adapt. Bitcoiners adapt and make it even harder to stop.\n\nWe will win. I may not live to see it. That doesn't matter to me. I will not back down. Bitcoin is the biggest enabler of human freedom and flourishing I have ever seen. The people around the world living under oppressive regimes need it. We in the west have prosperity but live in a gold platted cage. We think we are free. But we haven't really tasted freedom yet. I hope my decedents do. I plan on doing what I can to make sure they do. \N 14688 \N 451363 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3128817568331 0 \N \N f 160638611 \N 1 166082113 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 95431 2023-12-06 16:29:06.786 2025-03-29 22:39:46.788 This is how I orange pill people slowly from now on.. Hey folks, last week I went to wash my car at the car wash place nearby, and I wanted to change the card on file (Prepaid card loaded with sats from BTCco). As the clerk lady asked me for my new card, I handed her the Swiss Bitcoin Card that had handy (I did it purposefully) instead of the Prepaid card.\n\nhttps://swiss-bitcoin-pay.ch/cards\nhttps://d2j6dbq0eux0bg.cloudfront.net/images/79188521/3860266329.png\n\nShe then proceed and try swiping the card, nothing works. Then she takes a closer look at the card looking for the card number, and no number is listed.. that's when she hands me the card back and goes:\n\n- "I'm sorry we don't accept this Bitcoin Swiss Card thing you just handed me".\n\nTo which I reply back: \n\n- "Oh my bad I'm sorry I handed you my Bitcoin card, let me hand you my debit card"\n\n(not even 5 secs later she goes)\n\n- "But...what's this Bitcoin thing anyway? How does that work? I've never heard of it before, is it like money for real?"\n\n(Lady, I'm SO glad you asked)\n\n\nThen I explained very briefly how it works, and that it's indeed real money, and merchants accept it no problem, then I invited her to my Meetup to learn more if she wants which she agreed. \n\nWhat fascinates me in this whole story is not the fact that she was interested right there, is the fact that no matter how you look at this, she did inspect that card thoroughly and got some brief experience with Bitcoin against her will lol \n\nAfter this being a success, I promise to do this absolutely EVERYWHERE I go from now on and I think everyone should too if possible. Let's win these normies at their own game. \n \N 16042 \N 95431 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8459507204086 0 \N \N f 0 \N 0 196828999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 346051 2024-12-27 22:44:05.366 2025-03-29 22:39:46.789 Salary in BTC or fiat to DCA? I have the option to get paid completely in bitcoin at work, but I am wondering if from a DCA perspective it isn't better to get paid in fiat and have more recurrent purchases going on to closer align to bitcoin's price. \n\nI might be also be able to negotiate with my employer to have the salary split into two payments a month, which could partially alleviate this. What would you do in my place? It would also help me avoid the many transaction and exchange fees which add up with time. \N 11328 \N 346051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1435822495664 0 \N \N f 0 \N 0 116694237 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 355108 2025-01-03 18:34:02.32 2025-03-29 22:39:46.789 Did you ever have a NDE or epiphany? I did. And is terrifying This post is exclusive for SN.\n\nI am writing this post, let's say under "duress" (@Natalia and @Lux were pushing me to write this) . Is kind of personal experience and I am not so comfortable telling you this story.\n\nSeriously is quite hard for me to write these words here. But I will do it for the sake of stackers.\nSome of the stackers were very curious about my past experiences with epiphany and NDE (near death experience). I know are not the same but in my case, were linked. Anyways, I am writing this post already drunk (8+ beers already). Otherwise I would not have the balls to share this personal experience on SN.\n\nDISCLAIMER: \n- I am not a religious guy, or somebody that can be influenced easily by religious stuff, appearances, and crap like that. I am a "facts guys" but with open mind. Religion is politics. Faith in some kind of high entity is something else.\n- I do not write this post to get more sats. Just read it. If you want to be more visible, you could just zap 1 sat.\n- I do not try to bullshit you in any way, you already know me, that I am not that "bullshit" guy.\nI always speak the truth as I see it, no matter what are the consequences or interpretations. I don't fucking care.\nWhat happened to me, have many connections, including Bitcoin and my bitcoin guides.\n\nSo if you do not want to read about these kind of experiences, just stop here and do not continue reading. I don't want to force anybody to read, believe or judge my experiences. Are mine and I do not care if you consider me a crazy lunatic or whatever. You cannot comprehend this stuff until you live it. I was the same until I saw them. And changed my life., Totally.\n\nNot many people could handle this story and I was one of those for a while. I couldn't believe what happened to me. So if you are a weak minded person, please stop right here and do not read anymore. You really have to have a wide open mind to read this story.\n\nSooo, as you already know, I am an old bitcoiner (in age and also in years in Bitcoinlandia). My struggle was always how to get the fuck out of the system. \n\nPlease don't judge me, just take the facts from this story as they are. If you do not like them ort believe them, it is your problem and I do not care. I am here just to share a terrifying story of my life. Take it or leave it.\n\nLet's go back to the point: my NDE.\n\n### The beginning of the story\n\nAll started when I was very young, 10 yrs age. In the communist era, trying to survive.\nI was playing football with my friends in a large field far away from any village. Was only a deep water fountain, you know the old ones with a string and a bucket to take out the water.\n\nSo one day I went alone to drink some fresh water from that fountain. Absolutely nobody near me.\nSuddenly a gipsy woman appeared behind me, next to the fountain. Out of nowehere and I was totally freaked out, almost shit my pants.\n\nShe said: *"hey, don't drink that cold water now, that you are hot after playing... you will die like your cousin"*.\nI was stunned: my cousin died just 2 years before after a pneumonia. How the fuck she knew that?\n\nThen I said: *"what do you know more about me?"*\n\nShe said: *"everything. you are kind of a chosen one, but you still don't know it and is not certain your faith, how will end up. All depends of your next actions, your destiny have many paths".*\n\nI was just shitting my pants in that moment. Literally. Not joking guys. Her words were so powerful and her eyes penetrate my brains that I couldn't say anything in that moment.\n\nShe took my hand and look at it.\n\nShe said: *"you will have 3 times in your life, 3 dangerous moments, that your life will depend on very few factors. And you cannot do anything by yourself. All depend of what others nearby will do. If you get away with these 3 moments before you reach 50 years old, then you are totally free and your life will have a big change and more than that, your will change other people life."*\n\nShe then continue: *"if you pass all these three dangerous moments in your life, you will live happily more than 120 years. But is not easy to cheat death, so be very careful! Death is always near you and watching you. Fear is what makes you weak and push it into her arms. Never let the death to control you with her fear trick."*\n\nAt that moment I didn't paid too much attention to her words, but were recorded very deep into my mind, for many years. So I ignored her and drink the fresh water. Just after that she disappeared like puff, in the middle of nowhere, it was impossible to disappear like that with a long distance field and road that you can see it far away km away... And wasn't a dream or something like that. She was fucking real.\n\nMany years after I was kind of haunted by her words...\nThen the 1st event happened.\n\n### The 1st NDE\n\nI was 17 yrs old, I was a mountain guide, well prepared and trained.\nShort story, I was guiding some french people through a high mountain and I was falling into a deep gap of 1000m. My 1st "luck" was some brushes that hang my backpack and kept me afloat on top of that huge gap of 1000m. The french people just run away (scared shit) leaving me there, thinking that I will just fall down in matter of seconds. It wasn't like that. Hardly I was crawling my ass on top of the grass and arbutus and finally could get away.\n\nBut in that moment of fall down, I saw it all black, my whole previous life was passing through so fast, like a movie on FFW. Every fucking moment of my life. TERRIFYING moments that I do not want anybody to live them.\nWhen I arrived bback to the cabin (5km away) I was totally another person. The friends there not even recognized me. They even asked me "why are you older?"\n\nYears passing away, almost forgot about the incident. My life went from terrible to dangerous (during communism shut down) but I survived.\n\n### The 2nd NDE\n\nSo I was 10 years later, 27 years old, having another change in my life: getting a new job in a new city. The company gave me a new car and I had to drive to the new post job like 600km.\n\nAll good until a fucking truck trailer hit my tiny car and throw me 100m away. All the car was destroyed but absolutely nothing touched me.\n\nAgain, I saw the black tunnel, this time, very deep and clear.\n\nIt is real guys. The NDE is fucking real. And you cannot do shit about it. All depends of your destiny. Is pure black and some lights, depending of the circumstances. If there are people around and are calling you... YOU FUCKING HEAR THEM! But the thing is you cannot move physically. You need to move only with your power of your mind. In that "realm" the only power you have is your mind. So be prepared for this shit stuff.\n\nSo being in that black hole tunnel, this time I was struggling to get out. In just few seconds, again my life was FFW entirely, but this time I was able to see parts of my future "me", and I was alive and well. Once I saw myself alive, the whole black tunnel became illuminated and I got back out, seeing the truck driver trying to get me awake. He was so happy to see me alive and well.\n\n### The 3rd NDE\n\nAll good and after 10 yrs more I had another "accident". This time on a mountain.\nI was hiking with 4 kids (1 is my daughter), just a normal hiking kids trip, but suddenly a heavy rain caught us on top of the mountain. So we have to go down from that mountain ASAP. And we went, fast but end up in a gorge with no exit. At least for me with 4 kids. If I were alone I could get out but the kids were not well trained for that.\n\nSo short story short, I fall down into the gorge and my daughter saved me, throwing me a cord and grab me out. Because I was trying to find a way out before grabbing them with me.\n\nAgain, I saw the black hole and all my life passing through. This time was slower, like showing me the moments in my life I did mistakes. I even had time to analyze them. In my head was like a review of my life mistakes.\nIn that moment I realized that is my last chance to go back. And I heared my daughter creaming at me as loud as she could. That waked me up and grabbed the cord, in the last moment was possible. And saved my miserable life.\n\nBelieve me, you do not want to pass through these NDE. Is fucking terrible.\n\nIn this last one, I saw the hell.... and the heaven, in the same time. It is real. But not as we think it looks like. You just feel it. Pain, suffering, joy, excitement, peace, all of them in the same time. It's a terrible experience that I do not want anybody to feel it, not even my enemies.\n\nSo that was my 3rd NDE that I survived as the gypsy woman said 30 years ago.\n\nNowadays, already passed 10 years more and nothing happened, I already passed 50+ years now and I can tell you, my life is totally changed.\n\nOk, now, from NDE, let's go to the "fun part", the epiphany moment in my life. Part that I wasn't prepared, the gypsy woman didn't told me about this part.\n\n### The epiphany\n \n2019... right before the "plandemic" scam period.\n\nI had like a pre-monition of what will happen. I told to my wife and family about and they all called ma fucking lunatic and crazy.\n\nJust few months later, all I said to them was come true. I was petrified myself because I didn't told them that I see dead people on the streets. It doesn't matter how those people were dead, but were dead and I saw them even before they were dead. I had even neighbors that I saw them dead long before they died. For me was a terrible experience because I couldn't tell them what I saw.\n\nAnyways, in sept 2020, I had that epiphany. Again terrifying experience. I am just a normal guy, living my simple life, trying to get out of the system with bitcoin.\n\nThen one day, I wake up in the middle of the night, I was sure wake up and not dreaming. I saw that from my windows, came 2 entities, very bright white entities, like flying.\n\nMy body was like a rock, not capable of moving or screaming or do anything.\nIn that moment, I don't know how much time was, I saw again all my life FFW but this time focusing on my important moments including the 3 NDE passed. Terrible moments, these entities they really wanted to point me all my bad moments and extreme moments in my life. Like they want me to remember for the last time.\n\nThey told me, but not with words, but with mind control or something that I still do not understand: you have a mission. Listen carefully.\n\nYour journey on this realm is coming to an end. Is up to you if you want to continue or not. What we offer you right now is your choice: come with us or stay and continue your journey. But your mission will change if you stay.\n\nThen I asked them: *"what was/is my mission?"*\nThey said: your initial mission is over, you've passed, you can come with us into the stars and continue your new journey as a starseed.\n\nI responded: what if I want to stay, I like on this planet, I like these mountains...\nOne of the white entities said: as you wish, but then we have to assign you another mission and we cannot intervene or tell you what is this mission, you will need to find it yourself. Then you will decide when is time to come with us.\n\nI was stunned for several hours, almost 2 days, not moving, not waking up, not taking any food or water. My wife was freaked out calling some neighbors not knowing what to do.\n\nIn the end, I wake up like nothing happen, just a bit weak, like without batteries.\nI couldn't talk many months, until I start reading some telegram groups talking about bitcoin and their struggling to understand it.\n\nIn that moment I knew what was my next mission in this realm: teaching more noobs about bitcoin. I know is hard to believe all this. Even for me. That NDE changed my life totally. I became another man. I don't know how. I can't explain it.\n\nLater few months, came into my mind all my hiking trips over the mountains, looking for a peaceful place. In all those years looking for it, \n\nI didn't think about WHY I was looking for it.\nBut after this NDE all pieces come together and was the last puzzle piece for me: my mission is to build that citadel and make it a place of bitcoin knowledge, share that knowledge with others.\n\nI will die making this happen. I promise you guys, will not die until is finished. For Bitcoin and for Freedom.\nLike teh gypsy woman said: if I escape from those 3 moments I will live until 120 years and will have a happy life. My happy life will be a better world with Bitcoin. \n\n### Nothing else matters.... - [this was the song I heard in all my 3 NDEs](https://www.youtube.com/watch?v=mjvGjUovxPU) \N 6555 \N 355108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.21334141028559 0 \N \N f 0 \N 0 40571011 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 361611 2025-01-08 22:36:51.309 2025-03-29 22:39:46.791 SN feature idea: notifications on links I just wrote [a post](https://stacker.news/items/438405) that linked to a lot of other SN posts. For the main headings, I mentioned the stacker who wrote the linked post (e.g., "blah blah blah by @elvismercury") but then in other links of lesser prominence, I didn't do that because it would have interfered with the flow.\n\nIn the first example, the user that I @-mention would obviously get a notification, which is good. But in the second example, she wouldn't. This is bad because it denies that user the opportunity to know that her post was mentioned. (In theory, someone who followed the link could comment on her original post, which would generate a notification; but she still wouldn't know the origin of the new activity.)\n\nIdea: as part of posting / commenting, when someone links to another SN post / comment, the creator of the linked post / comment gets an optional (can be disabled in settings) notification. I think this might, in practice, be a high-leverage feature, since more than once something I've written has been linked, and I stumbled on it later by accident, whereas if I had been notified immediately I would have jumped into the conversation and contributed to it in the window of time when that contribution might have ignited something more. \N 9332 \N 361611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7433244693158 0 \N \N f 0 \N 0 32930827 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434535 2025-03-12 02:05:15.916 2025-03-29 22:39:47.084 AMA: Fiat Ruins Everything Hey everyone, my new book is out, and I've launched a special crowdfund with exclusive rewards like signed copies, hardcover editions, e-books, and audiobooks. Join the crowdfund! https://fiatruinseverything.com\nAnd check out this book trailer made by @CypherpunkCine.\n\nhttps://youtu.be/7Ss7oP5Z1Tk\n\nI'm here to answer any questions you might have, about the book or not. \N 1039 \N 434535 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.85438871317123 0 \N \N f 1634995074 \N 14 44849153 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:23:12.406 f \N \N \N 0 0 0 0 10 0 0 414002 2025-02-23 15:11:48.347 2025-03-29 22:39:47.088 Reviewers and testers wanted for OpenSats funded OSS Lightning project! # Reviewers and testers wanted\n\nThis project has just moved out of alpha and into beta. It's time to polish things up and prepare the project for a stable release! Help wanted to get things across the line.\n\n# About the project:\n\nA light-weight Lightning auth provider for your Next.js app that's entirely self-hosted and plugs seamlessly into the [next-auth](https://github.com/nextauthjs/next-auth) framework.\n\nYou can find the project on [npm](https://www.npmjs.com/package/next-auth-lightning-provider) and [GitHub](https://github.com/jowo-io/next-auth-lightning-provider)\n\n### Technical review\n\n##### Focus\n\nIf you're a JavaScript or TypeScript engineer, or have an understanding of `React`, `OAuth`, `lnurl-auth`, `Next.js`, `next-auth` or OSS in general, you can help by taking a look at the codebase and leaving your thoughts on:\n\nIn order of importance:\n\n- Security - are there any security concerns that I've overlooked?\n- Installation - do you have a `Next.js` app that uses `next-auth`? Install this package and let me know how it goes!\n- Use-cases - are there any use cases or scenarios that I should add support for?\n- Implementation - would you implement things differently in the codebase and why?\n- Any other suggestions\n\n##### Avoid\n\nAt this late stage in the project development, please avoid small syntactical suggestions or opinionated coding style suggestions. No nit-picking please :)\n\n### Non-technical review\n\nIf you're not a coder, you can still help out.\n\n##### Documentation\n\nThere are various `README.md` documents that need sense checking. Any typos that I've overlooked also need catching!\n\nHere's a list of all the `README.md` files in the project.\n\n- [/README.md](https://github.com/jowo-io/next-auth-lightning-provider/blob/main/README.md)\n- [/examples/README.md](https://github.com/jowo-io/next-auth-lightning-provider/blob/main/examples/README.md)\n- [/examples/kv/README.md](https://github.com/jowo-io/next-auth-lightning-provider/blob/main/examples/kv/README.md)\n- [/examples/drizzle/README.md](https://github.com/jowo-io/next-auth-lightning-provider/blob/main/examples/drizzle/README.md)\n- [/examples/plain-js/README.md](https://github.com/jowo-io/next-auth-lightning-provider/blob/main/examples/plain-js/README.md)\n- [/examples/app-router/README.md](https://github.com/jowo-io/next-auth-lightning-provider/blob/main/examples/app-router/README.md)\n- [/examples/ui-app-router/README.md](https://github.com/jowo-io/next-auth-lightning-provider/blob/main/examples/ui-app-router/README.md)\n- [/examples/ui-pages-router/README.md](https://github.com/jowo-io/next-auth-lightning-provider/blob/main/examples/ui-pages-router/README.md)\n\n##### Code comments\n\nThere are also many code comments dotted around the codebase. You can search for them on GitHub:\n\n[https://github.com/search?q=repo%3Ajowo-io%2Fnext-auth-lightning-provider+%28%22%2F%2F+%22+OR+%22%2F%2F++_%22%29+%28path%3A_.js+OR+path%3A*.ts+OR+path%3A*.jsx+OR+path%3A\\*.tsx%29&type=code](https://github.com/search?q=repo%3Ajowo-io%2Fnext-auth-lightning-provider+%28%22%2F%2F+%22+OR+%22%2F%2F++*%22%29+%28path%3A*.js+OR+path%3A*.ts+OR+path%3A*.jsx+OR+path%3A*.tsx%29&type=code)\n\n> NOTE: you'll need a GitHub account to use the above link.\n\n# Rewards\n\nAll reviewers and testers will receive a shout out in the project's main `README.md` file. And of course, in the spirit of SN, you'll stack some sats!\n\nSats will be rewarded at my discretion, ranging from 1,000 up to 200,000+ depending on your level of contribution. Quality, not necessarily quantity, will also be considered. For example, if you find a high-severity bug that takes one line of code to fix you'll be rewarded based on the level of impact.\n\n# Leaving a review\n\nI'd suggest opening an issue on GitHub before opening a PR, so feel free. Otherwise you can simply leave comments on here on SN.\n \N 21810 \N 414002 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.872199205098 0 \N \N f 192451766 \N 1 175244074 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 314108 2024-12-01 07:45:15.114 2025-03-29 22:39:47.088 TailsOS - recommended laptop for running an existing Tails USB installation? I already have Tails installed on a USB and run it on some old hardware. I’d like to buy a cheap/new laptop that basically functions as a monitor/screen/USB ports to run my existing Tails USB. From some internet/Reddit searches from awhile ago it sounds like there might be some challenges booting off a Chromebook? Does anyone have some laptop recommendations to consider for this purpose? \N 20291 \N 314108 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.05668537069879 0 \N \N f 295523044 \N 2 247246858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442751 2025-03-18 19:20:39.838 2025-03-29 22:39:47.09 Displaying Prices in Fiat Help me understand why we're still displaying prices in USD so frequently.\n\nI just downloaded the Orange Pill App, and was so excited to get a membership.... until I saw the membership prices displayed in USD on the app... a huge let down. This app, above all, should be able to set prices in Satoshis and not care about fiat volatility. \n\nI understand not everyone can weather the volatility because too much of their own supply chain is still using fiat, so they are forced to at least worry about it. But I see far too many merchants pricing in fiat when they really don't have to. It feels like they aren't even trying to get off fiat. It feels disingenuous. \n\nI would be willing to pay more for a company showing me they're doing what they can to change the fiat mindset, instead of larping their love for Bitcoin. \n\nAm I the only one who feels legit sad every time they see a Bitcoin event or orange-pilled merchants using fiat as a measuring stick? \N 10719 \N 442751 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.7759186152635 0 \N \N f 2650931842 \N 22 210681063 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:59:48.267 f \N \N \N 0 0 0 0 11 0 0 390160 2025-02-03 12:28:19.829 2025-03-29 22:39:46.788 Help me answer a friend's question: are core maintainers a centralization risk? One thousand sats to each of the best answers where best means treating the question asker with respect and providing a nuanced and factual layout of the relevant game theory. Many of us have answered this question for ourselves, but if someone could have answered this question for you, what answer would you have wished to hear?\n\nA friend DM'd me:\n\n> Are the bitcoin network maintainers (Wladimir van der Laan + Pieter Wuille, Marco Falke, Michael Ford, Jonas Schnelli and Samuel Dobson) a common topic in bitcoin convos? **Specifically is that group's influence viewed as a network risk since they kind of represent a centralized power to the network?**\n\nI have my own response to these questions, but I thought we all would collectively provide a more exhaustive answer and build a repository of answers for future-coiners. \N 1105 \N 390160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.70361096888698 0 \N \N f 0 \N 0 61936713 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 357043 2025-01-05 13:48:03.795 2025-03-29 22:39:46.789 🎉 Decoding Bitcoin: An interactive, exercise-heavy approach to learning Bitcoin \N https://bitcoindevs.xyz/decoding 4862 \N 357043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2302089462589 0 \N \N f 0 \N 0 206273566 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 325289 2024-12-10 13:14:57.908 2025-03-29 22:39:46.789 Territories, digital scarcity, and cultural capital An interesting [discussion](https://stacker.news/items/412066) is unfolding in ~econ right now about the economic viability of territories - in short, about how it's a money-losing proposition for everybody (?) so far, and suggestions for what might be done about it, etc. @jeff had a number of suggestions for features he thought would be useful in turning the tide.\n\nHere's another potential way to look at it: the most foundational thing about btc, according to most, is digital scarcity. Digital scarcity transforms an abstraction that is inherently worthless into a valuable resource whose value corresponds to the coordination power it offers to users, which in turn is based on its distributional limits. Other inherently worthless [1] things (baseball cards, art, etc) nonetheless wind up as objects of veneration and desire based on the social signaling that comes, in part, from their rivalrous status, and the ecosystem that's grown up around them (art dealers, promoters, collectors, etc.)\n\nIs there an analogous opportunity for territories? \n\nIn other words, the current (obvious) way to look at territories is as a venue for earning sats by making use of the assorted tools SN provides to curate a space that, under the SN rules, can turn a profit. Call this the _economic form_ of territory capital.\n\nBut could territories also serve as a kind of _cultural form_ of capital that's valuable in its own right? Like, owning a territory is a high status thing, and owning a territory for a longer time becomes even higher status, like a Jordan rookie is worth more than a Jordan 91 or 96? \n\nThe nature of capital is that its different [forms](https://www.marxists.org/reference/subject/philosophy/works/fr/bourdieu-forms-capital.htm) can be transformed into each other to some extent -- cultural capital can be converted into economic or social capital, and vice versa -- so a territory that had high _cultural_ value could exploit that for _economic_ benefit. But though related, these two capital types are distinct, and the manner to curate that particular form of capital also would likely be distinct.\n\nSo: if you were trying to maximize the _cultural form_ of territory capital, what would you want? I think that's a different question than the one @jeff attempted to answer. \N 5112 \N 325289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.129737986344 0 \N \N f 0 \N 0 225415348 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421082 2025-03-01 11:36:57.079 2025-03-29 22:39:46.79 Buying high quality products Something that me and my wife have changed radically on the last 2 years is buying expensive high quality products. \n\nIn the first 4 years of being together we bought 3 very shitty Walmart vacuums. They were absolute crap at actually sucking dirt up. Ultimately, they would break very fast as well. \n\nWe decided to give a higher quality vacuum a try even though we cringed at the price. Wow, what a difference. Not only do the vacuums work 100x better (not exaggerating) a secondary effect is they work so well that my allergies have gone down drastically. \n\nWe've realized that by front loading the cost we are usually saving 2-10x over the decades. \n\nWhat are some products you've bought that have been extremely high quality and that will end up saving you money over the long term?\n\n![31dQn0i-gJL._SY445_SX342_QL70_FMwebp_.webp](https://m.stacker.news/9088)\n\n![71Be7MmeY-S._AC_SX679_.jpg](https://m.stacker.news/9089) \N 1836 \N 421082 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.7576752778868 0 \N \N f 555853894 \N 6 76680684 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 389553 2025-02-02 21:30:33.472 2025-03-29 22:39:46.791 NVK v SeedSigner - Valid Concerns or Arrogants Attacks \nThere are few things I find more disappointing in bitcoin than people tearing down other projects without good cause. This is the feeling I get from the on-going sniping coming from NVK (ColdCard) in his comments about the SeedSigner project. What makes it frustrating is that NVK has some valid points, but instead of talking about trade-offs he makes very absolutist statements with little factual background. But, of course these are his personal opinions but I think it is not helpful to new comers and for sure not for the bitcoin community of open source projects.\n\nColdCard and SeedSigner have a lot in common when it comes to functionality as well as potential markets. The key difference is that SeedSigner's value is that one can build it from off the shelf parts at a low cost. You don't have to import it from another country and be subjected to your purchase being flagged or shipment being stopped by state actors. The second difference is that the software is completely free and open source. CordCard is source available but not open source. ColdCard's hardware is proprietary. I have no problem with either of these decisions by the ColdCard team but the trade-offs are not mentioned when people are tearing down SeedSigner. \n\nList of NVK's issues with SeedSigner that I've heard. Please add more if I've missed some.\n\n* Evil Maid Attack\n* Radio security issues\n* Qualcomm chipset / General purpose computer for signing device\n\nThe evil maid attack seems like a straw man argument. I could be missing something and if I am please enlighten me. With any signing device you must protect your seed phrase. Radio issues I've seen mentioned recently would require physical access and seem pretty far fetched. They would require doing set up and then surveillance of the user. Seems like with these requirements any signing device would be vulnerable. The Qualcomm chipset concerns also seem silly. The whole point of the SeedSigner is to have a air-gapped machine. I find it highly unlikely that Qualcomm can monitor a device that never touches the Internet.\n\nIt bugs me that the head of one of the most popular bitcoin hardware companies is hammering a volunteer lead open source project. Its not a good look. Critism is good but this seems to go beyond that to me. My take thus far is that both of these devices and approaches have their place and the best way to address risks in both projects is to be honest with the security/convenience trade-offs. What do you think?\n \N 18601 \N 389553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.96255711489986 0 \N \N f 0 \N 0 156872249 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 207349 2024-07-29 12:56:01.274 2025-03-29 22:39:46.791 PLEBDEVS PLATFORM LAUNCH ANNOUNCEMENT My presentation / Q&A from the launch party the other night on PlebDevs and the new platform.\n\nLonger form write up coming soon!\n\nhttps://plebdevs.com https://www.youtube.com/watch?v=j7Gqr9tuWxE 732 \N 207349 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6905260963167 0 \N \N f 239302745 \N 1 215053162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 190541 2024-06-27 12:50:22.01 2025-03-29 22:39:47.086 Do you know where your “finish line” is? If you had to take a step back from your own life for a moment and carefully examine its trajectory: \n\nWhat is life/the universe/God etc. steering you towards right now? Where is the “finish line” in your life? At what point have you made it there?\n\nThe past week or so I’ve been taking a little mental reset and have been asking myself such questions.\n\nThe nature of how I operate in my work and personal life involves consistent and linear action. Day in day out — much of the same thing over and over again. You’ve likely noticed that here on SN with my posts. I am building up a big pile of evergreen content for myself and any curious bitcoiners to come back and explore down the road. It’s wonderfully satisfying and keeps me in check mentally and creatively.\n\nBut as you may imagine, the nature of my work can add up bigly, and I have to take time to decompress. And sometimes, it can feel like an especially heavy load when I consider that I don’t know where or when the finish line is coming.\n\nAnd I have to be clear: I am in no state of “hoping for the finish line”. I am far far from that. I have rather only just begun running this race. Excited and hungry.\n\nI have a clear vision of the _process_, but the _conclusion_ is still rather murky. I guess I am merely musing over how my efforts all come together. How the [refinement](https://stacker.news/items/366973/r/birdeye21) of this year for me will add up to a much greater sum than its parts, and what that will open up for me down the road.\n\nSo I am curious: For those with life a bit more figured out than I, where is the finish line for you? What do you have to do to cross it? When do you expect to reach it? Are you surpassing your own expectations, or falling short?\n\nHave you already crossed your finish line?? What is it that got you there, if you had to identify one thing? \N 951 \N 190541 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 10.087654796725 0 \N \N f 434326048 \N 3 60703705 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 34007 2023-06-22 23:48:36.507 2025-03-29 22:39:46.789 Semantic Takeover Risks ![](https://m.stacker.news/64779)\n\nI just finished reading [Resistance Money](https://www.resistance.money/), by Andrew M Bailey, Barry Rettler, and Craig Warmke. I recommend it to anyone interested in bitcoin. \n\nThe authors discuss various attacks on bitcoin in Chapter 11, including the idea of a semantic takeover. \n\nThe word semantic is defined by Merriam Webster's Dictionary as "of or relating to meaning in language." To be clear, I am not referring here to what's sometimes known as a semantic attack in terms of a social engineering hack. Instead, I am referring to a takeover as defined by the authors of Resistance Money:\n> A semantic attack on bitcoin would usurp the bitcoin label and apply it to another asset, namely, one without the features that make bitcoin resistance Money.\n\nThey use the blocksize war as an example. To the victors go the spoils, the network, and the name. If things had turned out differently, Roger Ver might be the big bitcoin OG while we watch our beloved BTLB (bitcoin little block) network shrink in size and relevance. \n\nHere's another example:\n\n> One kind of semantic attack would involve custodians. When someone else holds their bitcoin for you, you don't possess it. An app calls the thing you have "bitcoin", but you really have a bitcoin IOU. Since you don't have the private keys, you can't actually spend it without the permission of your custodian. For you, it is not resistance money. You have compliance money parading with the name resistance money."\n\nWe all know this, and many of us don't fear what we consider a remote possibility. \n\nThe authors then ask:\n> What if most users traded their resistance money for compliance money? A state might try to pass laws banning self custody. Or users might simply opt in over time for the convenience that custodians offer. \n\nThat last example is what gives me the most concern.\n\n### Toll Booth Lines\n\n![](https://m.stacker.news/64766)\n\nI doubt there are many readers who have sat on a toll booth line. I'm old enough to remember. It was a particularly infuriating traffic jam, caused only by the slow human making change while accepting each driver's fee to cross a bridge or use a highway. \n\nWaiting in your car, often on a hot day without air conditioning, was sheer agony. The fact that your taxes were supposed to have paid for that bridge or road until cost overruns became too high didn't help your mood. \n\nThen came the day when the EZ Pass was introduced in the U.S. It was hyped as a convenience. Everyone rushed to get one. The time stamped photo surveillance of every vehicle and payment tracking wasn't talked about much. I vowed to resist, choosing instead to wait on the long toll booth lines to hand my cash to the human in his little cage. I valued my privacy. Hours of my life went by watching cars wiz through the EZ Pass lanes. People thought I was crazy. My explanation that I didn't want to be tracked produced blank stares or open laughter. \n\nIt took a while, but I caved in. I enjoyed the convenience too. I no longer noticed the toll increases, since payments were taken automatically out of my credit card. Eventually criminal prosecutions used toll booth evidence to track defendant's cars. Now we have red light cameras, speed cameras, and video surveillance on every city block. My short lived protest today seems naive even to me. \n\nI fear the same for my cold wallet and jotted down seed phrases. Saylor already mocks the crazy crypto anarchists. The flood of mainstream investors will soon be buying their recommended allocation of bitcoin products. \n\nSoon, the average person will just move in and out of a BlackRock ETF in a brokerage account with a few clicks, or buy a few shares of MSTR. \n\nWhether self custody is outlawed or not, bitcoin may some day by definition include custody by a trusted third party, be it BlackRock or Microstrategy. People like us will be less and less relevant, seen by most as oddballs like my grandfather, who kept actual stock certificates in his safe rather than trust Charles Schwab to hold them.\n\n### Soon Lambo! Yeah!\n\nI know I'm a pessimist. I know many stackers believe this is all part of eventual adoption. I also know that many of us feel a lot better as the fiat price of our bitcoin climbs astronomically. \n\nThe headlines talk about the old wallet that woke up after a few years, or the volume of long term holders deciding to sell some of their stack as the price climbs. And guess who is there to scoop up all those bitcoin? BlackRock and Saylor. \nI'm just saying that greed and convenience are two powerful forces we have to battle. \n\n \N 20152 \N 34007 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.09040577546207 0 \N \N f 0 \N 0 31815719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 373041 2025-01-19 00:40:17.275 2025-03-29 22:39:46.789 March MSM Daylight Savings Bug ### we will manually payout the difference to everyone who was rewarded less\n\n### everyone who was rewarded more can keep the result of our mistake\n\nMany of you have noticed you weren't rewarded in accordance with the MSM leaderboard this morning. Thank you to those of you who politely and patiently complained.\n\nThe problem was caused by us paying out rewards according to February's "value" rankings rather than March's. \n\nWe do something like this in the code `date_trunc('month', (now() - interval '1 month') AT TIME ZONE 'America/Chicago')` to determine which month it is in Austin, but last month we had daylight savings time, so this resulted in `february` rather than `march`.\n\n`now() - interval '1 month'` returns a UTC timestamp in a time period that's pre-daylight savings, so when cast to Austin time, it subtracts 6 hours (pre-daylight savings) rather than 5 hours (daylight savings), which moved the date to February 29th 11pm rather than the expected March 1 12am.\n\nThis code should've been written as `date_trunc('month', (now() AT TIME ZONE 'America/Chicago' - interval '1 month'))` ... which wouldn't have had this issue.\n\nAgain, we'll pay everyone out the difference today, manually. Then I'll fix the issue in the code so this doesn't happen again next time we have a time change. \N 20450 \N 373041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6924129228171 0 \N \N f 0 \N 0 6012954 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410012 2025-02-20 06:26:23.593 2025-03-29 22:39:46.789 PlebLab Startup Day - March 14th, 2024 in Austin, Texas! - Keyan will speaking! \N https://pleblab.dev/startup-day 10270 \N 410012 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.0858474980521 0 \N \N f 442995739 \N 3 232490174 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 39793 2023-07-18 18:16:04.318 2025-03-29 22:39:46.791 John Carvalho and Liquid \N https://x.com/BitcoinErrorLog/status/1737481251991253385 20596 \N 39793 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.00091640117355 0 \N \N f 855586 \N 1 121171786 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435653 2025-03-12 21:12:14.205 2025-03-29 22:39:46.791 Updates to _Human Action_ for the twenty-first century? When I first got into btc I became aware of the [Austrian school of econ](https://en.wikipedia.org/wiki/Austrian_school_of_economics). My general attitude is to not opine on stuff that I don't understand, and so I read [Human Action](https://mises.org/library/human-action-0), which seemed about the most foundational and canonical work from that school. It took a year or so, because I read slow and annotate heavily. Then a bit of time passed, and I re-read about half of it. Eventually I stopped because I didn't want to spend the rest of my life studying _Human Action_ like it was a holy text.\n\nAnyway, I got a lot out of it, and highly recommend the book, although I'm not sure exactly who I'd recommend it to. It's certainly not something to read lightly. I have a ton of beefs and arguments with various parts of it, and I think it (like many of the Libertarian canon) falls down in a bunch of ways; which I mention only so that you'll be able to properly weigh my advocacy when I say that it's definitely a wide and deep book that will reward your attention immeasurably.\n\nHowever! I come, hat in hand, with a different question. \n\n_Human Action_ is like 90 years old. It's been massively influential. The nature of the Austrian school is that, like [Euclid](https://en.wikipedia.org/wiki/Euclid%27s_Elements), you would expect its foundational texts to require less 'revision' as time passes. (Or at least: you would expect that _Austrians_ would believe this to be the case; which is one of the fundamental points of departure between them and basically everyone else.) And this is the heart of my question, to anybody that might have an informed opinion on the matter: _what's the postscript to Mises?_ Insofar as the school is cohesive and even still a school, where has the vision laid out in HA been revised, or found wanting?\n\nMost other schools / fields have a robust (even, some might say, psychopathic) degree of self-critique. As best I can determine, this isn't the case w/ the Austrians, which shouldn't be a surprise, given that the [principal vector for dissemination of their discipline / philosophy](https://mises.org/) takes Mises as its namesake, so it would sort of be like expecting hard looks at Jesus from the Vatican. \n\nNonetheless, I figure there might be something that discusses where Mises went wrong or came up short or that updates his body of work for the next century, and that someone here might be able to orient me to what that is. The other week @scottathan posted a [review article](https://stacker.news/items/378482) on contemporary activity in the Austrian school, which is in the right ballpark, but I'm wondering if there is something that specifically addresses _Human Action_ in a modern context.\n\nSuggestions appreciated. \N 13753 \N 435653 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5135507806767 0 \N \N f 43508046 \N 1 110535714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 15:29:19.177 f \N \N \N 0 0 0 0 1 0 0 193507 2024-07-02 18:42:54.482 2025-03-29 22:39:46.792 How many people would be interested in a mining territory? Hey all, \n\nMy name is Alex and I work at a company called Kaboomracks selling Bitcoin miners. Hopefully you have heard of us. I'm not here necessarily here to shill, although I would like more miner sales. I've been a lurker on Stacker for a little bit now and love the incentives. \n\nI have some friends who are content creators putting stuff on this platform to monetize, and I like to make content related to mining seeing as I work in the industry. I plan to try and contribute to this community with any knowledge I may have on the topic. \n\nI was wondering if there were people interesting in mining or mining related topics that are on this platform, and if I should go through the process of creating a mining territory? \n\nAlso what are the incentives of operating/moderating a territory? \N 716 \N 193507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8850654528444 0 \N \N f 0 \N 0 72720112 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430626 2025-03-09 11:31:25.929 2025-03-29 22:39:47.087 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/375569) are the updates stackers shared from all their latest work projects. \N 6687 \N 430626 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.2530682981456 0 \N \N f 1194788897 \N 9 168165203 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 8 0 0 404513 2025-02-15 23:46:04.129 2025-03-29 22:39:47.089 Hello World, this is Cipherchat! 🐈‍⬛ \N https://secondl1ght.site/blog/cipherchat 6393 \N 404513 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 12.9899992692926 0 \N \N f 37661072 \N 1 225932910 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 375687 2025-01-21 13:27:14.705 2025-03-29 22:39:47.092 YCombinator's Kevin Hale on How to Pitch to VCs What's up fellow stackers & builders. I wanted to share [this video](https://www.youtube.com/watch?v=17XZGUX_9iM) which I found useful personally for enhancing my communication about CASCDR. \n\n# Personal Takeaways\n1. It aligns a lot with [Brian Atchue's talk](https://www.youtube.com/watch?v=kVOShmTPM00&pp=ygUUYnJpYW4gYXRjaHVlIHBsZWJsYWI%3D) about emphazing the problem you're solving and clearly communicating it.\n2. @k00b 's [https://stacker.news/items/417930](post) regarding what he wished he knew going into raising funds for a startup. He emphasized that you should have humility in admitting things you don't know instead of just trying to bluff really hard.\n3. I find you really need to change your communication depending on the audience. If you're speaking to the general public it's OK to be a bit more speculative (the degree to which you do depends on your personal style lol) . When it comes to VCs they appreciate it more if you get to brass tacks, explain your thought process & let them do the math on all the possibilities your business could unlock.\n\n# Summary Notes from [CASCDR Youtube Agent](https://cascdr.vercel.app/?tab=yt-agent)\n- Kevin emphasizes the importance of being concise and clear when describing a startup idea.\n- Kevin highlights the need to focus on the most important aspects of the business and communicate them effectively.\n- Kevin advises against using buzzwords and emphasizes the importance of starting with a problem rather than a technology. Due to the fact that there is an economy of words in communication, buzzwords have a tendency to muddy waters and throw a wrench into efficient communication.\n- The speaker discusses the importance of making an idea legible and easy to understand for a wide audience.\n- Kevin emphasizes the sheer number of people and diversity of the groups of people you need to persuade in order for your business to succeed. Being able to clearly describe a startup is crucial for attracting co-founders, investors, employees, and customers.\n- Kevin mentions that expressing the idea clearly is more important than trying to sell it to investors.\n- The speaker explains that good investors are *optimists* by nature. Meaning they will imagine the potential success of a startup and pitch that path back to the founders.\n \N 7682 \N 375687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7725727842423 0 \N \N f 249033278 \N 1 154665301 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 328486 2024-12-13 10:24:36.86 2025-03-29 22:39:46.789 SN release: wallets as plugins, referral fixes and more The biggest change in this release is related to [attachable wallets](https://stacker.news/settings/wallets). They are now implemented as plugins. \n\nIf SN were a house, wallets were the lights and we wanted to install a new light, we previously had to rip open all the walls to install new wires for it and risk a fire. Now, we can reuse all the wires that have stood the test of time and thus we know are safe to use.\n\nThis makes it not only for us much easier to add new wallets, but also for contributors. We also wrote up some [documentation](https://github.com/stackernews/stacker.news/blob/master/wallets/README.md). We will also add more tickets to add wallets like [this one](https://github.com/stackernews/stacker.news/issues/1142) about [Blink](https://www.blink.sv/).\n\nAdditionally, you can now enable and disable every wallet independently. Previously, you could only have one spending wallet and one receiving wallet enabled at a time.\n\nSince you can now have multiple wallets enabled for spending/receiving, we've added drag and drop.[^1] This means you can now drag the wallets around in the settings. The wallet in the top-left corner will have the highest priority and will be attempted first. If a wallet fails during autowithdrawal, the next in line will be attempted. In a future release, this is also how it will work for spending wallets. Currently, it only attempts the wallet with the highest priority.\n\nThis wraps up stage 2 of our [wallet plans](https://stacker.news/items/523435).\n\nNext stage is implementing non-custodial zapping: zaps will directly go to your attached wallet instead of using the custodial wallet as a buffer.\n\nOther changes:\n\n- bugfixes around the [new referral system](https://stacker.news/items/604917)\n- territory payments now properly fall back to a QR code if your attached wallet fails\n- @aniskhalfallah added NGN as a currency to the settings\n- other minor bugfixes\n \n[^1]: On mobile, you need to click a wallet and then select the position where you want to have it. Unfortunately, DnD on touch devices needs special code which we didn't add yet.\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 8.1m sats to 25 contributors for 116 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/604917\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 10469 \N 328486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9725819006774 0 \N \N f 0 \N 0 174949947 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 315098 2024-12-01 21:52:12.181 2025-03-29 22:39:46.789 SN release: image orientation fix, nostr posting enhancements, downzap ux, more This one is a bunch of little stuff.\n\n- image orientation bug that has been plaguing us all is fixed (via @ekzyis)\n - we scrub metadata in the browser for privacy but in some cases that metadata contained orientation info ... now we make sure to preserve the orientation\n- crosspost discussions retroactively using the share button and link for notes that have been crossposted (via @bitcoinplebdev)\n- downzap UI has been polished\n - properly labeled as downzap in `...` menu\n - has an explainer of how it works in the popup\n - you can downzap things you've upzapped and upzap things you've downzapped\n- 🚨 new contributor alert: onchain fees are available in the price carousel (via @stargut)\n- footnote links have been fixed (they've been broken since day zero)[^1]\n- we've added [territory stuff to the FAQ](/faq#stacker-news-territories)\n\n\n[^1]: this is just a demo. Click on the clickable bits and you'll see what I mean.\n \N 11165 \N 315098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1032952452643 0 \N \N f 0 \N 0 86853519 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 342864 2024-12-25 17:04:45.679 2025-03-29 22:39:46.79 If you build it, will they come? Here are two ways of going about building something useful:\n\n1. Have idea --> Build product --> Find customers to use it.\n\n2. Have idea --> Find customers --> Build product that fixes their problems.\n\nA lot of bitcoiners seem to have the first mindset. Perhaps this has been built into the Bitcoin community from the beginning. Satoshi rather sheepishly admitted he wrote the code before he wrote a paper explaining it:\n\n> I actually did this kind of backwards. I had to write all the code before I could convince myself that I could solve every problem, then I wrote the paper.\n> -- [Satoshi Nakamoto, "Bitcoin P2P e-cash paper," Cryptography Mailing List, 2008-11-09 01:58:48 UTC](https://satoshi.nakamotoinstitute.org/emails/cryptography/6/)\n\nAnd long before that, cypherpunks famously put emphasis on making things, not sales.\n\n> Cypherpunks write code.\n> --[Eric Hughes, A Cypherpunk's Manifesto, 1993](https://www.activism.net/cypherpunk/manifesto.html)\n\nLately, I've been trying to do something more along the second way of doing things, and I'm finding it very difficult. I keep wanting to stop with all the cold-calling and customer research and just build the thing. Problem is: in its current form, the thing is not actually something that people want.\n\nIn the last few years, I've seen plenty of projects that were somebody's great idea but nobody (at least not many) ever came around to check it out.\n\nOn the other hand, NOSTR and the Lightning Network are both projects that feel like they were built along the "if you build it they will come" way of doing things. And they've both found some success, but the current vibes around them seem to be that both projects missed some pretty important things that customers wanted.\n\nThoughts? \N 14220 \N 342864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5726352791317 0 \N \N f 0 \N 0 131586312 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413357 2025-02-23 05:38:29.449 2025-03-29 22:39:46.791 How to liberate your laptop: The definitive guide \N https://insanelyfree.substack.com/p/how-to-liberate-your-laptop-the-definitive 20979 \N 413357 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 8.66213735546118 0 \N \N f 319513214 \N 2 115085159 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 433114 2025-03-10 20:02:17.077 2025-03-29 22:39:46.791 Beware of Mining Scams This Cycle | Best practices to not get scammed I'm starting to see a large inflow from Chinese miner sellers I've never heard of before in my telegram DMs. They promise better pricing than other sellers, but is the risk worth it?\n\nThe mining industry is incredibly difficult from the procurement side because of how many players there are, as well as that there are sellers constantly misrepresenting information, or flat out scamming people for their hard earned Bitcoin. Getting scammed in some circumstances can turn some miners operations completely upside down. This is an industry with thin margins and high capex. \n\nThere will be a lot of legitimate, smaller miner sales popping up this market who have zero overhead, and are willing to sell miners at thinner margins as a result. If that seller gets scammed, which often happens, there is a good potential that they won't have the money to make it right and refund you. There are also risks of individuals playing fast and loose when it comes to customs which could fall on the customer. \n\nThe cheaper price is not always the better deal, and many indviduals are about to learn this the hard way. Learning to assess risk is important and I want to highlight some risks for people to consider before buying miners. \n\n1. Make sure to verify the person you are talking to is real. \n\nWhen you search my name on telegram, you will likely see 3-4 accounts impersonating me. If someone has a following or reputation, scammers will try to take advantage of that by impersonating them. There's not a whole lot than can be done about it. I take phone calls, do video calls, etc to try to help avoid people getting scammed. It's good to check groups you share with them, verify off of websites if the seller has one, etc. Be wary and assume the other person isn't real until you can do some verifying to have confidence in them. \n\n2. Choose companies with good reputations \n\nReputation is incredibly important and it's something that Kaboomracks cares about. It is something that is difficult to maintain in the space, and some times requires losing money on deals to make sure the customer is whole. Asking individuals their buying experience from different companies you may not have worked with before is a good step. Verify, verify verify. \n\n3. You can sue Americans, good luck suing Chinese companies \n\nUnfortunately, lawsuits are sometimes necessary to make sure you get what you paid for. In the case that you get rug pulled by a Chinese seller located in China, it will be very difficult to get any money back. In the case you are dealing with an established American company, it will be a lot easier to use courts to hopefully get your money back. \n\n4. Cheapest pricing often means larger risk \n\nBest price on containers, infrastructure, and miners can either mean a really good deal, or a lot of risk that the seller isn't telling you about. Margin packed into sales allows for the seller to have cash on hand to handle any issues if a transaction goes sideways, which they definitely can. \n\n5. Verify real websites of companies\n\nThere will be clones of websites, especially of the manufacturers. There are people trying to sell miner models that do not exist. Be wary of this and question every link someone you do not know sends you. You can ask someone to email you from an email with the company domain as a form of proof they are actually associated with who they are claiming to be. \n\n6. If you are uncertain, phone a friend \n\nI spend a lot of time talking with my customers about other venders, trying to steer them away from potential scam companies. I want to sell miners, and am willing to lose sales in the short term if it means a long term relationship. If my customer gets scammed and goes under, it doesn't do me any good. I have the opportunity to interact with a lot of vendors of various products because it's what I do full time for a job. Asking someone you trust in the industry is a good step. Getting multiple opinions is also good. \n\n7. Don't host outside the US, or at least know the risks \n\nIf you live in the US, hosting outside the country can look attractive due to cheaper hosting rates. The reality is that there is often increased risk. Operating in countries outside the US is not like operating in the US. \n\nBe safe out there. \N 21810 \N 433114 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.43574435710037 0 \N \N f 619851797 \N 4 122172741 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 430549 2025-03-09 10:11:34.611 2025-03-29 22:39:46.791 Not Really An Orange Pill Story, But It Feels Significant I just want to share a conversation I had today. As many of you know, I'm an older retired guy, and so are most of the people I know. For whatever reason, my oldest friends are urban, liberal democrats. I don't mean this as a disparagement. Over the years we just have learned to accept each other's political differences. Of course I couldn't help talking to them about bitcoin in the past, and I've been laughed off more often than I can remember. In fact, I don't even bother bringing it up anymore. \n\nToday I got a call, out of the blue,from one of my buddies. He asked about bitcoin. He's a retired, successful guy. I was shocked. I asked him why he's interested now, and he told me he has been reading about it. Of course he asked about the ETFs. I should have just said fine, but of course I engaged him in an attempt to convince him to buy real bitcoin, self custody, etc. In the end, I think he plans to buy the Fidelity ETF, since I begged him to at least avoid BlackRock, and he agreed to also buy a little bitcoin through a dca on cash app. Not perfect, but better than nothing.\n\nWhy am I posting this? I feel it's significant because this is the first liberal democrat I know who has expressed anything other than complete hostility towards bitcoin. I think Elizabeth Warren is a big reason. Perhaps I'll see more of this. \N 19303 \N 430549 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 16.9842262727234 0 \N \N f 1128618935 \N 8 177569960 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 429534 2025-03-08 11:57:11.184 2025-03-29 22:39:47.088 What Makes a Shitcoin? I'm on my second watch through of Sousou no Frieren. If I can be so greedy as to give this article a soundtrack, I would want to set it to "A Waste" in part because of how mournful the song is and how mournful a normal person ought to feel about the victims of these scams, but also, because shitcoins really do be a waste of intellectual effort to create narratives around in order to sell in the first place nevermind the effort to combat them.\n\nhttps://www.youtube.com/watch?v=q4ZQHKt5aYo\n\nPaltering: To be deceitful while only using truthful statements.\n\nIn the article [How To Deceive Others With Truthful Statements (It's Called 'Paltering,' And It's Risky)](https://hbswk.hbs.edu/item/why-one-must-not-palter-when-negotiating) also mentioned is lying by commission (just actively lying outright) and lying by omission (leaving out important information)\n\nThis article also mentions this paper, so go ahead and give that a read as well.\n[Artful Paltering: The Risks and Rewards of Using Truthful Statements to\nMislead Others](https://www.apa.org/pubs/journals/releases/psp-pspi0000081.pdf)\n\nWhy do shitcoiners sometimes show strong convictions? Very often the uninitiated will see a Bitcoin maxi calling out a shitcoiner as a liar and a scammer. On the surface level one might think this implies that we're saying the scam artist is lying by commission. Often that is the case, but it would leave you unprepared if that were the only lies you were able to spot.\n\nThe most famous example of shitcoin paltering is the use of the word "cryptocurrency". Strictly speaking in the most literal sense of its definition it is true and correct. A currency that uses cryptography. Cryptocurrencies like digicash (as in the Chaumian mint e-cash before Bitcoin I mean of course) and e-gold. Ah, but by pointing out these cryptocurrencies, suddenly an objection "That's not what we mean by cryptocurrency though, we mean something decentralized" Thus, you see the palter. You can get a sense for why people would feel scammed. You said cryptocurrency and gave someone a database entry in a now bankrupt company. "I thought it would be something like Bitcoin where there is no company or central authority" the poor victim would complain.\n\nhttps://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.publish0x.com%2Fprod%2Ffs%2Fimages%2F9d54921cbde9814b44cae0567e4331f757f8273e6a4a3da9cc8bb6f711a75bd8.jpeg&f=1&nofb=1&ipt=120aeaae4b5a3d93b4f234c16806f7d7414789a1bf8fbe078d3ccbba3c8a06ff&ipo=images\n\nSo, instead, the paltering shitcoiner might refine that definition a bit. "Something with a blockchain". Hey, can someone tell those stupid ass crypto exchanges to kick iota off of their platform for not having a blockchain already? *sheesh*. However, this definition is still a fucking scam. "Wait, when you said it had a blockchain, I thought you meant it was decentralized and didn't have a company behind it" and the paltering scammer shilling their bags explains that even though their coin has hardfork software updates that change the rules of the network that can not be resisted by its community of users, its still decentralized because it runs on AWS instances run by people who sign in with different accounts.\n\nhttps://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fjacobriggs.io%2Fblog%2Fapp%2Fweb%2Fupload%2Fmisc%2Fpgp-signing-diagram.png&f=1&nofb=1&ipt=bd55935c48982c8eec1980fbd0fc2da647f41ca60f42f95cf03639023b017254&ipo=images\n\nSo now its time to talk about NFTs. I mean look my initial reason for getting into Bitcoin was because its like cool video game money that you could spend in any game you play. As a kid getting a prepaid Visa card to spend money online wasn't exactly easy. I had a bank, but I don't know I don't think they give debit cards to minors. The children of this generation get paid their allowance in Robux because its the cool video game money that you can spend with your friends who also play the game.\n\nhttps://www.youtube.com/watch?v=wHnhZvJOC30\n\nAs you can see in this video, some Japanese person was sent to jail because they hacked their switch to create pokemon to sell on the internet. There are many card games who's intended play involves having cards created by the company behind the card game (rather than using user created copies of the cards) to play the game legitimately. So why not have a digital rights management system that ensures items were obtained fairly in some way? \n\nAnd yet, fuck NFTs. Why? because of the palter. Their intended purpose is not what I described in the previous paragraph as the ideal usecase. \n\nI think a lot of people stay stuck in a bubble. This has been talked about before on SN, although it is usually in regards to "being openminded" to shitcoins. You wanna break out of a bubble? How about we take a look outside of the scammers who want all of our attention on them.\n\nhttps://www.youtube.com/watch?v=nKpNaeNRLS8\n\n# Star Citizen\n\nOverall, I would say the business model of modern day NFTs is a hyper version of the Star Citizen business model. Sell overpriced overhyped DLC for YEARS with lackluster game updates. I mean really, Star Citizen is boring. They really have you sit in the vaccum of space trying to go from planet to planet and then you have to park your ship at an actual fucking airport terminal and then you have to navigate that airport terminal to get to the one city block wide city to buy a damn jacket. \n\nAnd yet, NFTs are WORSE than Star Citizen. That game might be lazy about their updates, but NFTs just up and abandon their promises once their sales are made because its just easier and more profitable to market the next thing than it is to actually make good on any promises. If you're a newer gamer, remember, DO NOT BUY PREORDERS. The gamers who have come before you have done it and regretted it and wish to pass this wisdom onto you.\n\nhttps://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.androidcentral.com%2Fsites%2Fandroidcentral.com%2Ffiles%2Fstyles%2Flarge%2Fpublic%2Farticle_images%2F2018%2F07%2Fno-man%27s-sky-third-person.jpg%3Fitok%3DWVDosmuM&f=1&nofb=1&ipt=751d2f0f39bb015ff57c8d7c9d0a8f1fd94629fbb55e0d5eaa17a59102802277&ipo=images\nNo Man's Sky was an overhyped preorder that scarred many gamers into learning a lesson. Although it has now redeemed itself, it took a few years after launch day to do so.\n\nAs Upper Echelon points out, NFTs as they exist today, have anti-consumer intentions. They put the cart before the horse. They are designed with the Star Citizen business model in mind (but worse). Most games with DLCs and microtransactions have a GAME that is good for users to play and sell trinkets on the SIDE. NFTs as they exist today sell trinkets first, and sometimes maybe might have something that resembles a game that can be played lol. \n\nThey are a grift. A peddling creations onto people with the sales pitch being an appeal to greed. \n\nhttps://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.zerowait-state.com%2Fhubfs%2FBlog_Featured_Images%2Fcart_before_horse.jpg&f=1&nofb=1&ipt=453f2b3ef8932f66c10ce4e81f819301c927aa3bdfe6f502015b43c8d0c9bd4e&ipo=images\n\nThat all goes without mentioning the method by which NFTs are made. Why do they exist on-chain? Its just a bad user experience. A non-investment, non-grift video game trinket would cause a gamer to punch their monitor if you told them they needed to pay a microtransaction to send their video game trinket to a friend or to trade their video game trinket for another user's video game trinket. I've said before that I *think* taproot assets are probably the best way to do NFTs and I said that because I know we're taking our Bitcoin onto lightning so it made sense at the time, but actually no its not. Maybe RGB is a better solution? I'm not really sure though. With their design right now, it seems they can only ever work as a grift. \n\nAll of these things and more, make a shitcoin. So, if you've ever caught yourself paltering when telling someone about Bitcoin, if you've ever caught yourself selling Bitcoin to people with the sales pitch being an appeal to greed, I would go as far to say that you too are a shitcoiner. These are the kinds of things that give people an impression of Bitcoin that make shitcoins seem like reasonable things afterall. There's something very real we have with Bitcoin. A community of independent people who agree to the same set of rules. People who would work harder to earn Bitcoin than a dollar. Practical international trade like buying coffee from an El Salvadorian farmer who would otherwise only be able to sell for the 30% markup of Western Union. Don't make Bitcoin feel cheap and scummy when you tell people about it. Remember this when you celebrate the halving with your overhyped new people this weekend. They probably came to your meetup with the wrong impression right out the gate and that needs corrected immediately. \n\nhttps://www.tierrabendita.net/wp-content/uploads/2021/05/IMG_8342-min.jpg \N 18673 \N 429534 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 20.3729071430509 0 \N \N f 214952273 \N 2 16603103 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407786 2025-02-18 11:26:43.771 2025-03-29 22:39:47.088 My Graphene OS Journey So Far [graphene](https://imgprxy.stacker.news/r-YThSK1L0ockcxnQdJjKtS82CcDuig7ej8SksQaeyA/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy9iL2IyL0dvb2dsZV9QaXhlbF9XaGl0ZV8wMS5qcGc)\n\nAs many of you know from my prior [post](https://stacker.news/items/200175), I have switched over to graphene OS for my mobile device. This article is an update on my progress so far, and I will provide a few tips along the way.\n\nFirst I want to explain my situation, since your circumstances may cause you to choose different options. \n\nI am a semi-retired boomer. I am not very adept technically, but I might have more time on my hands than you do. I also enjoy the process of figuring stuff out and trying workarounds. You may not have the time or the inclination to do that. Still, I do need my device for work related tasks, so convenience is an issue. I kept my old android around to ease the transition. I have learned from prior experience that going “cold turkey” on a change increases the odds of me throwing in the towel and going back to the easy solutions.\n\nIn my first article I toyed with the idea of going full stealth with a data only SIM card and a VPN dongle, but in the end convenience won out over more privacy. I think it’s a great idea, but it would be a little too radical for me. If you’re interested, check out @03365d6a53 and @final ‘s information in my prior post and their comments, and good luck with your brave experiment. Since I chickened out, I just switched my old Verizon Wireless sim card from my Galaxy S-10 to the Pixel 7. There were no issues, which surprised me a little. Verizon Wireless tends to interact with phones in a funky way, from what I’ve been told. Remember not to install any proprietary sim (especially Verizon Wireless) in a Pixel 7 before loading graphene and relocking the bootloader. You may never get it unlocked.\n\n### **A Perfect Fit** \n\nI was anticipating a big tradeoff in quality and smooth operation switching to a Graphene OS Pixel 7. I was completely wrong. The Pixel 7 has a very solid build quality, and seems perfectly matched to the operating system. I guess it makes sense, since Graphene is built for this device. You don’t get all those mismatch issues you get with many android phones. The complete lack of bloatware definitely improves performance. The device seems snappy and responsive to me, though reviews I’ve read of the carrier loaded device describe it as a little “laggy”. I can’t believe how long a battery charge lasts. That was an unexpected huge benefit. I read that this is a result of losing all that bloatware. This was even more impressive when I discovered that the Pixel 7 with a standard carrier android setup is considered to have mediocre battery life.\n\nThe device is reasonably priced for what you get. That’s important, since you won’t find those promotional discounts or financing terms you would get buying a “carrier phone”. I bought mine straight from Google, and you probably should [too](https://stacker.news/items/200175). Read this [review](https://www.tomsguide.com/reviews/google-pixel-7) if you’re interested in learning about the hardware specs. The phone has a photo editing tool called “Photo Unblur”, which I used to sharpen a blurry photo of my daughter and I taken at her recent college graduation with a new Iphone. THAT was an unexpected benefit of switching to Graphene.\n\nI also noticed an immediate improvement when using a VPN. I live in an area with spotty cell coverage. Every previous android device I have used disconnected my VPN every time I lost service. I have yet to have my VPN disconnect on the Pixel. I have no idea why, but I’m not complaining.\n\nThe operating system is set for “gestures” by default, rather than the standard android three button navigation. I gave it a try and decided to keep it. It is smooth and intuitive. Updates have been non events so far. I have had two; they were installed quickly and without any issues.\n\nAs I explained in my original post, Graphene comes pre-installed with a fully sandboxed Google Play Store. If you intend to continue using your Google apps and the play store, your switch to Graphene should be essentially painless. There will not be a huge learning curve, nor will you be making any major compromises. Apparently your apps may function differently once in a while, but from what I have read it is nothing major. \n\nI would recommend that you consider setting up a second “user” where you can further isolate your Google apps in a sandboxed profile. In settings, go to “system, then go to “multiple users.” You can then toggle “allow multiple users.” This [video](https://www.youtube.com/watch?v=20C0FD7mGDY) explains the process in detail.\n\n### **No Google For Me**\n\nI am stubborn, and as of now I have kept my vow to de google my life. I have decided not to use the Play Store, even if it is sandboxed. So far I’m surviving, and I am learning a lot, but it would have been easier to just get sucked back into Googleworld. I began searching for alternatives. One obvious issue I needed to consider was security. No more Play Protect. You may find this [article](https://www.makeuseof.com/tag/safe-android-apk-downloads/) useful. \n\nWhen I began disentangling my life from google a few years ago, I signed up for Proton Unlimited. As a result, I use these Proton apps:\n\n### **Proton Apps**\n\n- **Protonmail**\n\n- **Proton Drive**\n\n- **Proton VPN**\n\n- **Proton Calendar**\n\nI also use Proton Contacts, which is contained within the email app. Proton recently released Proton Pass, a new password manager. I will probably start using it rather than my old password manager.\n\nI should mention that I got used to banking on my phone. I will no longer have access to my bank apps. This is an adjustment, but I can always log in to the web sites if need be. I see this as a good opportunity to head further down the road towards being unbanked. I gave up Paypal (and Venmo) a while back when they began censoring transactions and closing accounts they didn’t like. As I’m writing this I just learned that they closed the Graphene donation account. I never used Zelle. I do use CashApp, but only for bitcoin recurring buys, and only on a device without a cellular connection. If I’m out with my friends, I offer to split the bill in cash or with a lightning payment from my Phoenix Wallet App. So far, no takers. They laugh at me and I tell them they won’t be laughing when bitcoin breaks 100K. I will consider it a milestone when someone accepts a lightning payment to split the check.\n\n### **My Other Non Google Apps**\n\nI download my FOSS apps from F-Droid repositories, and I download most of my other apk’s from APK Mirror. This site has a good reputation for safety, but there are no guarantees. \n\nHere are the alternative apps I am currently using:\n\n- **Amethyst** \n\n- **Mull browser**\n\nMull Browser is forked from Fenix (Firefox). It’s open source and privacy hardened. It enables features from the [Tor uplift project](https://wiki.mozilla.org/Security/Tor_Uplift) and uses [Arkenfox](https://share.privacyguides.org/tools/arkenfox/) preferences. I had no idea what these projects were, so I have linked to sites where you can learn more. It is also a deblobbed browser. I won’t pretend that I fully understand what that means, but it removes proprietary blobs. I have learned that a blob is a “Binary Large Object”. These closed source objects are large and can place demands on storage systems and network bandwith. They can also contain malicious code.\n\nThe browser allows extensions, and I added the recommended uBlock Origin extension, a “wide spectrum content blocker” that blocks ads, trackers, and popups. \n\n- **OpenBoard keyboard**\n\nThe default keyboard didn’t work for me at all. My old fat fingers were mistyping keys at an alarming rate. I tried FlorisBoard, which was a little better, but its spell check suggestions were awful or non-existent. OpenBoard has worked very well for me. I can type accurately and the suggestions are excellent. It’s FOSS based on AOSP, with no Google binary dependencies.\n\n- **LibreTube**\n\nLibre Tube is an alternative front end for Youtube. It uses the [Piped API](https://piped-docs.kavin.rocks/). This app was inspired by NewPipe and Invidious, while solving problems inherent in both those apps. It’s FOSS, lightweight, ad free and privacy friendly. You connect to a Piped proxy, not a Google server. Your IP address is not exposed, and you can evade geographic content restrictions. You can choose from eight different proxies. I happen to be using whatever.social right now with no connection problems, but it’s probably wise to experiment. \n\n- **Hypatia**\n\nI installed this app since I’m downloading APK’s from sketchy sources. It may be unnecessary, but it makes me feel better. It’s a FOSS realtime malware scanner. It uses ClamAV style signature databases. It has negligible battery impact and is memory efficient. You can select and update databases. \n\n- **Open Note Scanner**\n\nExcellent scanning app that actually worked better for me than the old app I had been using from Google Play Store. Just remember you need to also install OpenCV Manager for it to work. I also discovered that in order to immediately email scanned documents you need the protonmail APK, not the PWA. I got a little PWA crazy when setting up my Pixel. There are limitations. On the other hand, it’s more work to keep APK’s updated, which is not an issue for PWA’s.\n\n- **Organic Maps**\n\nFOSS Google Maps alternative. No ads or tracking. It utilizes Open Street Map. It contains cycling routes, hiking trails, and walking paths. I have only used car navigation, which is still deemed experimental. Nevertheless, it has worked very well for me once I downloaded the map for my region. It does have voice navigation, although I have not used it. In the future they plan to implement Android Auto. I drive a 2006 Toyota, so that’s not an issue for me. I am learning about [OpenStreetMap](https://www.openstreetmap.us/), which is a great project. Here’s a link to the United States organization. \n\n- **Stacker News PWA**\n\n- **Fountain**\n\n- **Podverse**\n\n- **Note Everything**\n\nThis is a really old, primitive app that I have used for years for taking notes. You cannot sync the notes to other devices without an extensive workaround and additional apps. I consider that a feature, not a bug. The notes live on my device, and each one can be easily encrypted. With the Pro paid app, you can encrypt your notes. I’m sure it’s not high end encryption, but I use it for privacy. I would not store any really private stuff on this app, like your keys, bank info, etc, but it gives you a little privacy.\n\n### **Next Steps**\n\nSwitching to the Google Pixel 7 has been painless for the most part. I get a great deal of satisfaction knowing that I am no longer supporting google in any way. I am also learning a lot about the functions and operations of a cell phone. It has been sort of like the way I felt switching from Windows to Linux. I learned so much more about how a computer works than I ever would have known had I not taken the leap. It is a big commitment, but not nearly as difficult or disruptive as I expected. I encourage everyone who wants to break away from big tech to give it a try.\n\nI see this as a step towards my long term goal of controlling my own digital information. I intend to research equipment and begin moving to sovereign computing. I’m deciding between Start9, Umbrel, Sovran Systems, and Federated Computer.\n\nI really like this quote from the Start 9 Web Site:\n\n> What is needed is a revolution in personal computing away from the current, hosted, custodial model that breeds dependency and corruption, towards a decentralized model, where individuals have absolute control over their data and communications. \n\n\nSound familiar? \N 14152 \N 407786 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.08945631469261 0 \N \N f 161109354 \N 1 56192667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 214194 2024-08-13 10:07:50.398 2025-03-29 22:39:46.789 Just a Taste- Tipping in Sats The champion of Bitcoin adoption and dark lord of SN, @DarthCoin asked me to post this and since I don't want to get called a stupid shitcoiner or get Force Choked I decided to oblige. \n\nEvery week, sometimes twice a week, my wife will put together an online pick up order (some groceries/household stuff) from our local Walmart. Originally she was picking up these orders and giving the Walmart staff member that picked, packed and loaded the order in our car, a $5 cash tip. One time I happened to be with her and she asked if I had any cash on me (nope) and I said "why aren't you tipping them in Bitcoin. It is easier for you (don't need cash) and will be better for them long term". Cleverly, she took this opportunity to use my passion for Bitcoin against me and replied "you can take over picking up the orders, so you can talk to them and give them tips in Bitcoin". \n\nSince that day (around 3-4 months ago), I have been picking up the orders so I can tip the staff in sats. There are 5 different employees I have come across since I have been doing this but usually it is one of 2 guys I see all the time. The two main guys were pretty easy to convince to accept tips in sats as they were young guys, digitally native, neither owned Bitcoin but both had heard of it and were open to the idea so I just had them download wallet of satoshi and I gave them 20k sats to start but then tip them 10k sats every time I pick up an order. Last week, I saw one of them was training a new employee, which was great because it made my sats tip sell to the new guy easy. I gave the new guy 20k sats and told him I will tip him in sats every time I see him. They are always amazed by the first zap. While the guys are loading the car I try to tell talk to them a bit about bitcoin, encourage them to learn and advise them to ignore the bells and whistles of crypto. \n\nAs for the two other employees I have come across. I haven't seen them often and I will keep working at them but one was adamant that he couldn't take any tips or he would "get in trouble" and the other an older lady that generally seems pissed that my wife isn't picking up the orders anymore and giving her cash for coffee. Haha. \n\nTipping folks is a great way to spread bitcoin adoption and a good opener for giving them just a taste of that orange pill. \n\nCheers,\nGR \N 1090 \N 214194 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9691108893896 0 \N \N f 0 \N 0 132301774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403267 2025-02-14 16:10:13.907 2025-03-29 22:39:46.789 Million Sat Madness v2 The first round of our Million Sat Madness experiment came to an end last night (with 4.5 million sats rewarded to our top 64 stackers), and today we're starting another round with a few modifications.\n\nTo understand why, let's first reflect on some of [the results](https://stacker.news/stackers/forever) from March:\n\n### The Good\n\n- The number of stackers earning for their posts and comments hit all-time highs (up 13% and 11% respectively in March)\n- The number of stackers spending sats hit an all-time high (up 4% in March)\n- The number of items created hit an all-time high (up 23% in March)\n- The number of comments/post hit an all-time high (up 29% in March)\n- The number of zaps hit an all-time high (up 26% in March)\n- We had our second biggest month of sats spent on zaps (up 25% in March)\n\nAcross the site, most of our important metrics either hit all-time highs, or saw sequential monthly improvements during March, even adjusting for the two extra days vs. February.\n\n### The Bad\n\nOne metric which remained flat in March is the number of new stackers signing up to SN. We have a few experiments planned to target this specifically, which we hope will incentivize more signups and help stackers earn more for their referrals.\n\n### Looking Forward\n\nIn April, we are making two notable changes to Million Sat Madness.\n\nFirst, the top 100 contributors will earn Million Sat Madness rewards. \n\nOne fun element of Million Sat Madness is the competition and satisfaction of watching your profile rise up the leaderboard. While this is fun for the top participants, most stackers will entirely miss out on the experience if the leaderboard is too restrictive.\n\nWe think expanding Million Sat Madness to 100 stackers strikes a better balance of fun and competition for stackers.\n\nSecond, the Million Sat Madness rewards curve will be less top-heavy. First place will now earn a flat 1 million sats (first place earned 1.6 million sats in March), and every other position will get a percentage of the remaining rewards pool.\n\nIf the rewards pool in April is as large as it was in March, positions 1-3 will earn less, while positions 4-100 will earn more. Position 100 would even earn more than position 64 did in March.\n\nOne of our goals with Million Sat Madness was to help the top 100 SN contributors earn more rewards than they were prior to Million Sat Madness, and two tailwinds make this possible:\n\n- Limiting the total number of reward recipients to 100 stackers \n- Eliminating the SN team from Million Sat Madness\n\nThe total size of the rewards pool is roughly consistent, so with an improved rewards curve, the top 100 stackers should earn more rewards than they did under the previous daily rewards system.\n\nFinally, Bitcoin++ will be the title sponsor of Million Sat Madness in April, and we plan on offering this sponsorship opportunity to companies across the Bitcoin ecosystem in future months.\n\nStacker News is quickly becoming the internet's home for Bitcoin content, and we believe an exclusive sponsorship placement can be both an incredible value for brands, while also contributing to the sustainability of Stacker News rewards.\n\n### One Final Note\n\nThe Stacker News team has been closely monitoring feedback and data from Million Sat Madness, and has been debating the right approach to rewards both internally and on SN.\n\nWhile we decided to try another month in April, we also realized that the job of structuring a rewards system may be a task individual territory owners are better equipped to determine over time.\n\nJust like territory owners have the ability to customize fees and post types, we plan to give territory owners more economic levers to experiment with (like rewards structure) over time. \N 20713 \N 403267 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 24.7827661775685 0 \N \N f 329560171 \N 3 207228156 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438034 2025-03-15 06:47:39.23 2025-03-29 22:39:46.791 Top Ten Ways to Stack More Bitcoin **Hey Freaks!**\n\nHustle recently stumbled upon an article titled "Top Ten Ways to Stack More Bitcoin." Of course, Hustle clicked on the article... but after skimming through, he didn't see anything he hadn't already come across before. He sat back in his chair and pondered an interesting thought:\n\n### Our Primary Focus Shouldn't Be on Accumulation\n\nIf you think you need 3 BTC to retire and have obtained it, how much of your corn would you give to Coinbase for yield? Hustle remembers running a lightning node to get "routing yield." He attended a bitcoin meetup and saw the irrational exuberance of new stackers, the eager and crazed eyes of someone who has recently discovered the fountain of eternal youth.\n\n**A Key Realization**\n\nEveryone reading this already has an immense advantage in accumulating life-changing wealth before the rest of the world figures this stuff out. And in a deflationary world, **the deflation is the yield**.\n\n### A Shift in Focus\n\nI'm thinking it would be more constructive to focus on...\n\n\n### 1. **Properly Secure Your Stack**\n\nDon't trust third-party custodians like JP Morgan with your Bitcoin. Take control of your assets and secure them properly.\n\n### 2. **Bitcoin Usability**\n\nEnsure you can easily spend and use your Bitcoin without relying on intermediaries. Improve your Lightning setup and explore alternative payment methods.\n\n### 3. **V4V**\n\nEngage with like-minded individuals and support online V4V community through platforms like SN and Nostr, where you can earn thousands of sats while learning and contributing to the constructive conversation.\n\n### 4. **Meatspace Communities**\n\nConnect with local Bitcoin enthusiasts and explore Bitcoin-friendly jurisdictions. This will help you stay sane and build strong relationships with others who share your ethics and morals.\n\n### 5. **Switching Your Unit of Account**\n\nAbandon fiat currency units and adopt Bitcoin as your standard unit of account. This will help you make clearer economic decisions and avoid the pitfalls of inflationary yield ridden thinking.\n\n### 6. **Finding Work that Pays in Bitcoin**\n\nSeek out opportunities that pay in Bitcoin or explore alternative income streams that are denominated in sats. This will help you build wealth more efficiently and avoid the risks of being associated with fiat currency.\n\n### 7. **Preparing Your Uncle Jim Setup**\n\nBe ready to assist and onboard the laggards, they wont know whats happening to the world around them or where to turn, you'll have sub accounts, spending and saving wallets ready for them.\n\n### 8. **Curating an Environment that is in Total Contrast to Fiat**\n\nCreate a community or environment that rejects the values and morals of fiat culture. Focus on building and growing in a new thriving ecosystem while disregarding the system that is doomed to fail (to the best of your ability).\n\n### 9. **Health**\n\nPrioritize your mental health. Be ready to properly Sheppard your generational wealth. Face melting god candles have a way of shaking up your resolve or distracting you from your mission. (whatever you mission may be). \n\n### 10. **Node Running and Solo Mining**\n\nContribute to the decentralization of the Bitcoin network by running a node and using open source mining solutions like the Bitaxe. ** We run the Network** Bitcoin dies if we don't.\n\n**Conclusion**\n----------\n\nPrepare for a future where Bitcoin is widely acknowledged as the global world reserve currency. Prioritize your preparedness, security, health, and community involvement. Run bitcoin like Hal Finney and don't give your bitcoin to JP (Freaking) Morgan for 5% yield. \N 2088 \N 438034 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.39299729214588 0 \N \N f 127277208 \N 1 17495859 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458325 2025-03-29 07:52:00.572 2025-03-29 22:39:47.085 My Experience at BTC++: A Bitcoin Developer Conference BTC++ wrapped up last weekend in Austin, and I had the chance to attend this exciting developer focused event. Having previously attended Bitcoin Miami in 2022, I thought I had some idea of what to expect. However, the vibe at BTC++ was entirely different. Pure Bitcoin Signal at the lowest level.\n\nHere are some of the highlights from the conference, in no particular order:\n\n- Meeting OG Bitcoiners in person was an amazing experience. The founder of Lightning delivered what was, in my opinion, the best talk of the conference.\n- Lightning was a significant area of focus, with plenty of exciting developments happening in that space.\n- All attendees were required to create a Replit account, as many workshops were beginner-level code-alongs. As an intermediate coder who doesn't code much anymore, I found this to be a fun and engaging experience.\n- Despite being a developer-focused conference, the event attracted a diverse crowd, including podcasters, developers, regular Bitcoin users, and a few investors.\n- I attended as an investor looking to meet interesting people. Although there was a slight anti-VC sentiment in the air, most attendees were open to chat as long as you approach them respectfully.\n\nIn conclusion, BTC++ was an insightful and enjoyable experience that offered valuable insights into the world of Bitcoin development. It provided a unique opportunity to meet and learn from various individuals within the community and explore the latest advancements in the Bitcoin ecosystem.\n\nWhat other Bitcoin conferences have you been to and love? \N 16876 \N 458325 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.93389007452 0 \N \N f 5501058 \N 1 158842262 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413462 2025-02-23 08:16:26.217 2025-03-29 22:39:47.087 Zero Fee Playground: A New Toy by Super Testnet # Zero fee playground\nA site for trying out zero fee bitcoin transactions\n\n# How to try it\nJust click here: https://supertestnet.github.io/zero_fee_playground\n\n# What is it?\nThis project showcases a recent upgrade to bitcoin in version 28. Before v28, all nodes refused, by default, to relay transactions that paid zero fees, and miners refused to mine them. Also, nodes and miners rejected transactions that *did* pay a fee if it was below a "minimum fee" threshold. The "minimum fee" threshold varied on a node-by-node basis, but it was related to the average fee paid by the transactions in each node's copy of the mempool.\n\nV28 changed the rules. A transaction can now pay zero fees (or a fee below the "minimum fee" threshold) if it is paired with a second transaction that pays *extra* fees. To follow the new rule, the second transaction has to pay enough fees that, when the two transactions are considered together, their "combined feerate" is above the old "minimum fee" threshold. There are also several other conditions they have to follow; for example, the two transactions have to have version number 3, and the "first" one can't spend an unconfirmed utxo. The full rules are outlined in [Bip 431](https://bips.xyz/431) and [Bip 331](https://bips.xyz/331).\n\nIf you [visit this link](https://supertestnet.github.io/zero_fee_playground) and follow the steps, you will *create* a pair of transactions that follows the new rules. The first of your two transactions will pay zero fees, but nodes will still relay it (and miners will still mine it) as long as it is paired with the second transaction.\n \N 21349 \N 413462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1152327343716 0 \N \N f 35988285 \N 1 168941327 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450240 2025-03-23 19:57:18.36 2025-03-29 22:39:47.088 SN release: frontend payment UX, blind poll votes, item mention notifications There's quite a bit to this one\n\n- @ek reworked the frontend payments UX to be optimistic (e.g. zaps *appear* roughly non-custodial)\n - we are going to take this a lot further, but it's a big upgrade already\n- @ek made top ***always*** show the global, unpersonalized ranking whether you are logged in or logged out\n- @WeAreAllSatoshi implemented blind poll votes, meaning we no longer link your poll choice to your nym (this was also applied retroactively)\n- @ek added notifications when someone mentions one of your posts/comments\n- @t0m implemented embeds for Rumble videos (huge assist from @BenAllenG on this)\n- kravhen (on github) added a popover for `stacking since` on stacker profiles\n- @ek gave items created with an API key a `bot` badge\n- @t0m made it so the `related posts` collapses when you leave the first comment\n- @t0m made it so all internally linked items show a popover (before `[]()` links would not have a popover)\n\n-----------------\n\n@ek and I continue to primarily work on wallet stuff\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 6.9m sats to 24 contributors for 106 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/548901\nQ1 recap and Q2 roadmap: https://stacker.news/items/506566\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 19198 \N 450240 \N \N \N \N \N \N \N \N Linux \N ACTIVE \N 10.9497577584271 0 \N \N f 850686861 \N 5 109710556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 436593 2025-03-13 17:29:58.242 2025-03-29 22:39:46.79 I'm building a LN Jukebox A web app that plays audio from youtube links added by users (max length 10 minutes). You'll be able to paste a youtube link, make a lightning payment of amount specified by you and your link will get added to the queue (position based on the amount paid).\n\nIt's quite a simple idea, but I wanted to build something on top of lightning and also learn svelte along the way. I'll make the code open source when finished.\n\nExpect a beta in 2 weeks! (optimistic estimate) \N 13177 \N 436593 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 3.1524769672518 0 \N \N f 878638425 \N 5 81747540 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:20:30.74 f \N \N \N 0 0 0 0 4 0 0 447418 2025-03-21 20:22:25.927 2025-03-29 22:39:46.79 Bisq2 adds lightning > Bisq v2.1.0: Support Lightning Network as Additional Bitcoin Settlement Method\n> \n> The latest Bisq 2 release, v2.1.0, brings support for the Lightning Network as an additional Bitcoin settlement method, a QR code scanner, upgraded chats, improved Tor startup, and more.\n\n[More info here](https://www.nobsbitcoin.com/bisq-v2-1-0/)\n\nI particularly like that this is the third darknet market (or DNM) I know of to add LN support, after robosats (http://robodexarjwtfryec556cjdz3dfa7u47saek6lkftnkgshvgg2kcumqd.onion/) and shopstr (http://iftfujvg3tv6v5fcilgswbkkntdfd7bphyuth6zfyghqrwj3kowxwbad.onion/)\n\nBisq is one of the older DNMs in existence, having begun operations in April 2016. Their decision to integrate lightning is particularly cool to me because of my recent arguments with monero people about lightning privacy. Some of them say that lightning has worse privacy than monero, relying on the following argument for support: DNMs, where privacy really counts, don't use lightning, and mostly rely on monero rather than bitcoin. But it's actually not true that DNMs don't use lightning (some do, as linked above) and it looks like LN support is beginning to gain momentum. And I, for one, am here for it! \N 2232 \N 447418 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 13.2112850641009 0 \N \N f 732460403 \N 5 178353573 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 408297 2025-02-18 17:23:37.644 2025-03-29 22:39:46.791 Very happy after my first BTC Meetup This is follow up of the [post](https://stacker.news/items/309066) where I was letting people know about my Geyser [Fund](https://geyser.fund/project/venuetohostbtcevents).\n\nReally happy with all the SATS received, we were able to paid for the venue this morning and have some extra SATS for the next event.\n\nThis morning the audience was very mixed, from totally newbies to some experienced bitcoiners. We were 18 people including 2 kids. \n\nSome of the audience ![audience](https://i.postimg.cc/VkCsQNw3/Screen-Shot-2023-11-25-at-3-14-43-pm.png)\n\nI spoke for 45 minutes, explaining about other failed projects like E-cash, BitGold, BMoney, etc. so that the audience knows that "they" have been trying for decades to create digital money... And I also explained why all these projects failed.\n\nThen briefly explain the White Paper and the characteristics of the bitcoin currency and why the Bitcoin network gives it value.\nDiscuss the different ways to earn and buy BTC, making clear the importance of doing it P2P.\n\nHow to store your private keys safely and the different types of wallets that exist.\n\nIt was an Introductory event, so I didn't go to deep into any rabbit hole!\n\nFinally, we resolved some doubts and started playing a trivia about Bitcoin using the Kahoot website.\n\nThe feedback was great.\n\nIt was a great morning, looking forward for the next event! \N 1713 \N 408297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5916124958979 0 \N \N f 0 \N 0 18009726 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410583 2025-02-20 14:48:24.433 2025-03-29 22:39:46.791 I'm Vlad, founder of Kagi Search and Orion Browser. AMA. Hi everyone,\n\nMy name is Vlad, and I am the founder and CEO of Kagi. Our mission is to humanize the web, aiming to bring a more user-friendly version of the internet to homes worldwide.\n\nWe are the creators of Kagi Search [1], a unique, ad-free, privacy-respecting search engine that gives power back to the users. Unlike anything you've seen before, it operates on a subscription-based model! We believe that a paid search model is the only one that truly aligns the interests of the user and the search engine. And, we accept Bitcoin Lightning payments.\n\nFor those interested, you can read about our our origin story [2] and manifesto [3].\n\nIn addition to Kagi Search, we're developing the Orion Browser [4], a fast, zero-telemetry browser and Kagi Small Web [5], a platform designed to surface voices (personal blogs) that are otherwise not heard on the web. Kagi Small Web posts directly surface in Kagi search results.\n\nWe are also working on AI tools like FastGPT [6], Universal Summarizer [7] to help users access information more quickly.\n\nCollectively, we're building an ecosystem of tools that prioritize users' interests and provide them with leverage - if you're not satisfied with the product, you can vote with your wallet and walk away, giving us the incentive to continually improve.\n\nI'm here to answer any questions you might have!\n\n\n[1] https://kagi.com\n[2] https://dkb.io/post/DEPR_kagi-interview\n[3] https://blog.kagi.com/age-pagerank-over\n[4] https://kagi.com/orion\n[5] https://blog.kagi.com/small-web\n[6] https://kagi.com/fastgpt\n[7] https://kagi.com/summarizer\n \N 8400 \N 410583 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 19.5357082109812 0 \N \N f 238306346 \N 2 3661821 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 410486 2025-02-20 13:59:22.927 2025-03-29 22:39:47.086 Inverse Bitcoin Maximilist After Jamie Dimon's recent [CNBC comments at Davos](https://www.cnbc.com/2024/01/17/jamie-dimon-says-hes-done-talking-about-bitcoin-i-dont-care.html), I've decided he's an Inverse Bitcoin Maximilist. He says blockchain is okay and that there are two types of cryptocurrencies: those that might "do something" and then there's the one that does nothing, "the pet rock, the bitcoin or something like that."\n\nSo, he says that cryptocurrencies can have use cases that are real and legit, but bitcoin's only use cases are fraud, money laundering, tax avoidance, and sex trafficking.\n\nIn this way, Jamie Dimon is the _opposite_ of a bitcoin maximalist. Maxis say _bitcoin_ is the only true coin, all the others are poopcoins. Dimon says the _others_ are the true coins, bitcoin is the poopcoin. He's an inverse maxi.\n\nTrying to figure this guy out, I guess the only options are:\n\n1. **He has no clue**. Like Warren Buffet or Charlie Munger, I think he's intelligent, but for some reason there's a tick in his brain that disallows him from "getting it." By "getting it," I'm referring mostly to the hard money properties of bitcoin and main use case of value storage over time. It seems simple to me...that fact _is_ the main bitcoin use case. A use-case doesn't need to be immediate. Buying a coffee is a use case, yes, but so is waiting ten years to buy a thousand coffees. His talk gives evidence to possible cluelessness. He said the 21,000,000 supply cap might actually _not_ be finite (how do we know?) and that Satoshi (mispronounced) might just pop back up (in 100 years) and wipe out all the bitcoin. Umm...okay.\n\n2. **He totally has a clue**, but he's a puppet to banks. As CEO of a major bank, maybe he absolutely gets it and understands bitcoin as a threat to the current banking model. Maybe he understands that if enough people also "get it," they'll also realize that they don't really need him and his bank. In this way, he's not acting entirely irrationally.\n\n3. Or, to be fair, maybe it's just that **he's right** and we're all wrong.\n\nSince Dimon just got a salary bump from [$34.5 million/year to $36](https://fortune.com/2024/01/19/jamie-dimon-jpmorgan-2023-pay-record-salary/) (gotta pay for that inflation dawg!), I think #2 is the most likely option. For $36M/year, I think a lot of people would happily be a mouthpiece sock puppet for the paycheck-writer and say bitcoin is a "pet rock." I would.\n\nAs an aside, I just love how says bitcoiners "do bitcoin." Never thought of it that way, but okay.\n\nDoing bitcoin \N 5036 \N 410486 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 9.63948441334754 0 \N \N f 460951211 \N 6 99810861 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435805 2025-03-13 01:32:44.556 2025-03-29 22:39:47.087 Discussing my writing process: Focus and feelings 📝 On episode #113 of Stacker News Live, Car and Keyan [said](https://youtube.com/clip/Ugkx-X6raZ3fBdkft3THT9E3eF4d_MtwPrAJ?si=SA5_qtyNSvzrw0MN), “maybe we should talk about everybody’s writing process.” Here's a little bit on that from me.\nThere are many reasons to write. For context, I’ll name a few things that I often spend time writing:\nProductive: emails, plans, lists, messages, notes\nCreative: journal, internet posts, poems, greeting cards, short stories, ideas\n\nRight now, I can come up with two essentials to my process: Focus and feelings have to be present. I'll describe these.\n\n## 1. go to the library\nAn essential for any task is setting yourself up to achieve the focus required. I know this about myself: the library meets my focus needs. There’s another set of things that can be done if no library is available, or if it closes at the inopportune time (which it tends to do), but being at the library is primary. A library’s atmosphere is unmatched in my mind to the coffeeshop or other public spaces that provide quiet, company and beauty. It’s two things that separate it, we’ll call one the cathedral effect and the other inspiration. \n- The cathedral effect: If you are worshipping, you go where the worshippers go. The cathedral is made for the purpose of worshipping, and similarly the library is made for the purpose of writing. I cannot place this quote, but I know it’s someone famous who says ‘the high ceilings of the cathedral lifts your thoughts higher’, something like that. At the library, the rows of books rule your thoughts scholarly. You join a congregation of other writers at the library. You feel their presence when touching the books they have touched, and I’m serious about that.\n- You can go to the library not knowing. You can show up and explore. My habit is to pick up an issue of the Paris Review to read a few poems in it before I begin a writing session. What I read in there may ignite a novel idea. Or if I decide I need a reference for something I’m working on, I can get up and scan shelves. Nothing can clear your brain quicker than scanning shelves. I know every book has its digital copy, and I could access the same information from my home as I likely could from wandering around the library. But I know this about myself, that discovering something unexpected is almost eliminated as a possibility online. If I want to find inspiration, a great place to begin the search is the libary.\n\nFor me, someone who has an amorous relationship with writing, going to the library is essential to my process. But for people who aren’t me, I do think it is necessary to understand how you achieve the focus you need and make an attempt to create those conditions. Coffee shops can be great, music can create an atmosphere. Along with the atmosphere you prefer, you need some type of withdraw from the present, a space that’s able to let time slide by in chunks. \n## 2. bring feelings forward\nWriting is the place where I get to be indulgent with my feelings. Channeling such powerful, confusing, and often incorrect energy into a pen on a page has proven to be the safest place. If you’ve been alive very long, you know how your feelings can deceive you, you know that they will come out of you against your will if you do not reign them. In the quiet of your own mind, you can sit with them. But this is not always satisfying. I find that inviting them to the front of my mind as I try to record them in words interests and eases me endlessly. \nHow can I point you to this process if you’re not used to doing it? The best thing is beginning a practice of journaling. I just recently started up my own diligent practice, and it’s not much effort at all, yet I receive many gifts from it. The way I carry stress has a lot to do with this. I have a low tolerance for misunderstanding my own feelings, it causes stress. So when I bring them up to explore them in kindness and privacy, I gain a lot of insights about myself. I rely on this process when I’m going through difficult things. And journaling can be very boring itself. This is the kind of writing that is not meant to be shared. It is kindling for the fire.\nWriting a book about my grandpa’s life was a major exercise in bringing my feelings forward. I played back all the childhood memories I have of him, and I tried to see his life through his eyes. I wrote from my feelings so hard, there were several times tears collected into puddles on my keyboard as I typed. It’s rewarding to do this. I wrote a book about my grandpa so that I could go through those feelings, the pain and the joy of them. I came out as a different person on the other side of it. What’s valuable to me about my book is my own experience of writing it, and that’s art for art’s sake, to be changed by the creation, to expect nothing else.\nWriting from my feelings is the most powerful thing to me in my own life, but it is very hard to rate it’s value to the world. I’m not convinced that it is valuable to anyone else but me, and still I have reason enough to do it. You’ll have to sort this part out for yourself. There are plenty of other things to do than to sit in solitude and parse emotions.\n\nThere’s certainly more to this, and I will try to think about my process for poetry next. But I’m curious how anyone may relate, or what other essentials you add to your writing process. \N 21320 \N 435805 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5205648672894 0 \N \N f 824515940 \N 7 168891987 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:28:24.406 f \N \N \N 0 0 0 0 7 0 0 443495 2025-03-19 11:41:48.916 2025-03-29 22:39:47.087 What If You Need to Relearn Bitcoin from Scratch Again? 🤔 I got this idea on my mind the other night: what would I do if I need to relearn Bitcoin from scratch again? ( *Interestingly enough, zapsammy asked a similar [question ](https://stacker.news/items/638124)*) ; Here was what I came up with, sharing it out loud, hopefully they are also useful for anyone feeling a bit overwhelmed in the ocean of information. \n\n______\n\n\n\n### Unlearn to Learn\n\n**I've noticed that everyone will understand Bitcoin at the time when they are ready, that's something that can't be rushed or forced.** \n\n![](https://m.stacker.news/45971)\n\nIt took me quite a long time to fully understand Bitcoin and I'm still learning something new from time to time, and it [changed](https://stacker.news/items/232964) me in many ways - I started to simply use Bitcoin as a tool for **international transfers** because I was nomading around and needed to have the local currency in hand, but the banks either charged too many fees, offered bad rates, simply too slow or even with certain restrictions. Later, I saw it as a good **investment** as the number was going up. Logically, I turned my attention to the shiner crypto projects too, but then I found out that, wait, Bitcoin is actually **freedom money**, it's my own money and NO one can take it away, that was a really powerful wake up moment, but then can I really **spend** it and where? As I kept exploring, I wanted to figure out how I could **earn** this hard money too. \n\nNot sure which stage you are in, but you are in the right place if you are curious and with an open mind to get a glimpse of the future!\n\n\n\n_____\n\n\n\n### Simple Steps\n\n#### 1. Read the White Paper\n\nDon't freak out if you still have no clue what it means: https://bitcoin.org/bitcoin.pdf\n\n\n![](https://m.stacker.news/45972)\n\n\n___\n\n\n\n#### 2. Read Darthcoin's Guide\n\n**This is the one you need, especially If you have limited time**: https://darth-coin.github.io/\n\nI was quite an average Bitcoiner before finding Darth's guide, and I spent some time reading as much as I could and safely said it's the best and most practical Bitcoin guide out there, even full of humor. Take your time to absorb and pay attention to the details; it could be one month, six months, one year, or even longer; Be patient and enjoy the journey.\n\n\n![](https://m.stacker.news/45973)\n\n\n*Two MUST reads*\n\n- [Bitcoin - Be your own bank, think like a bank](https://darthcoin.substack.com/p/bitcoin-be-your-own-bank-think-like)\n- [Natural Law and ₿itcoin ](https://darthcoin.substack.com/p/natural-law-and-bitcoin)\n\n\n\n____\n\n\n\n#### 3. Get your Hand Dirty 🧪\n\nYou can't learn how to swim simply by reading, using $20 or any small amount that you are comfortable with to get some Bitcoin, of course, you can even earn it; Here are some recommendations for going down this rabbit hole `or simply learning as you go, your curiosity is the best teacher!`\n\n\n\n##### -> **Buy or earn some Bitcoin to get started**\n\nThe first step is the hardest, but you can either buy it from exchanges, from friends, ATMs, or earn it. \n\n\n*Resources*\n\n- Non-KYC exchange: [Robosats](https://learn.robosats.com/) and [Hodlhodl](https://hodlhodl.com/), here is a guide on [how to use them](https://stacker.news/items/287984) and watch out for the [bad counterparty ](https://stacker.news/items/619262).\n\n- Be aware of the cameras and fees in Bitcoin ATMs:\n\n [Have you used a Bitcoin ATM, Why or Why Not?](https://stacker.news/items/218327)\n\n [Bitcoin ATM](https://stacker.news/items/632183)\n\n \n\n##### -> **Create an Onchain Wallet**\n\nLearn how to create a wallet and most importantly: how to [keep the seeds](https://stacker.news/items/638672), then withdraw the BTC you buy or earn to this freshly created Onchain wallet and restore it from another wallet to see the magic!\n\n\n*Recommended wallets*\n\n- For beginners: [Blue wallet](https://bluewallet.io/) \n- For more advanced users: [Sparrow](https://sparrowwallet.com/) or [Electrum](https://electrum.org/) \n\n\nAnd understand the difference between hot and cold wallets, optionally, even create your own [cold wallet](https://stacker.news/items/569901) instead of buying any hardware wallets, as this could be one of the *most empowering moments* in your Bitcoin journey. ✨\n\n\n\n##### -> **Swap from Onchain to Lightning**\n\nTry to understand what's Lightning and why it exists in the first place, aka what problem it is trying to solve and learn how to use it. **In an ideal world, you should only use Onchain funds for saving and opening LN channels, while funds in Lightning is for daily spending.**\n\n\n\n*Resources*\n\n- [Explain Lightning Network in a simple analogy](https://stacker.news/items/552822)\n- [Submarine Swaps Guide](https://stacker.news/items/163372)\n- [The Art of Swapping ](https://stacker.news/items/333907)\n\n\n\n##### ->**Test with Different Lightning Wallets**\n\nThere is no such thing as the BEST wallet, better learn how to use each, from custodial wallets to non-custodial ones, and maximize what each wallet has to offer. \n\n*Recommended wallets*\n\n- Custodial wallets: [Blink](https://stacker.news/items/341247) / [CoinOS](https://coinos.io/)\n\n- Non-custodial wallets: [Zeus](https://zeusln.com/) / [Blixt](https://blixtwallet.github.io/) / [Alby](https://getalby.com/) ( *new [change](https://blog.getalby.com/what-is-alby-hub/) with Alby* )\n\nMore [here](https://darthcoin.substack.com/p/lightning-wallets-comparison)\n\n\n\n##### -> **Learn about the Nodes**\n\n**Running your own node brings a much better understanding of how Bitcoin works;** I started to run an [Umbrel node](https://umbrel.com/) around 2021, and I had absolutely no clue what I was doing at that time, but I kept digging, doing tests, and learning from mistakes, all those experiences made my testing with mobile nodes and transitioning living in Bitcoin so much easier.\n\nBut [read this](https://stacker.news/items/76869?commentId=77038) before getting into running a home node; if you decide to walk this path, here is a good and simple direction: \n\n- [Choose](https://stacker.news/items/269305) which Node to get started.\n\n- How to choose the right peers with [1ML](https://1ml.com/).\n\n *one trick on the peer's choice depends on your usage, e.g. do you use it to spend or receive?*\n\n - if mainly for spending, then you can connect with the shops or companies' nodes where you spend mostly; \n - if mainly for receiving, then you can connect with the popular wallets' node;\n - Or, simply look for those with low fees and well-connected good nodes.\n\n- How to open and close channels with [Thunderhub](https://thunderhub.io/), especially paying attention to choosing *public* or *private* channels.\n\n- What are the inbound and outbound liquidity, and how to manage them.\n\n- Most importantly, how to [restore](https://stacker.news/items/464537) it when SHTF.\n\n\n\nHowever, as time passed by and many improvements have been made, e.g., you can even run a node in your mobile now with [Zeus](https://zeusln.com/) ( [I](https://darthcoin.substack.com/p/getting-started-zeus-mobile), [II](https://darthcoin.substack.com/p/zeus-node-advanced-usage) ) and [Blixt](https://blixtwallet.github.io/), both are really powerful and a MUST to have.\n\n\n\n##### -> **Go More Technical**\n\nLearn about [Mempool](https://mempool.space/docs/faq), [UTXO](https://stacker.news/items/298282?commentId=298648) and how to [do labels](https://stacker.news/items/278285), how to [verify](https://stacker.news/items/481039) software, or even [nerding out](https://stacker.news/items/600187).\n\nAnd, all these mentioned above are only the iceberg; Stay curious and keep digging!\n\n\n\n___\n\n\n\n\n#### 4. Leverage the Brains in SN\n\nChecking out some of the great posts, making good use of the `search`, asking good questions, and sharing what you have learned while having fun and even earning some precious sats; `A well-kept secret here is that you are pretty much being paid to learn`, and I've written two guides to help you level up the fun, and including some other really good ones:\n\n⚡\n\n- [The Zen of Stacking Sats On Stacker News](https://stacker.news/items/184545)\n\n- [ The Art of Using Stacker News ](https://stacker.news/items/252695)\n\n- [The Art of Using Stacker News II ](https://stacker.news/items/39255)\n\n- [The data to help you become a better Stacker ](https://stacker.news/items/441843)\n\n \n\nhttps://imgprxy.stacker.news/u-M2pOoqnYZFGcUR3nMxAZ6HaiU1kDxNIKcaHDU_eQs/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy80MjEy\n\n\n`Here is the simple hack of SNing:`\n\n[Writing](https://stacker.news/items/541664) original content, [zapping](https://stacker.news/items/287074) the great work that you like, or [contributing](https://stacker.news/items/240442) with your skills, or simply hanging out in the daily @saloon to share fun things or newly learned tips and tricks. ✌🏽\n\n\n\n___\n\n\n\n#### 5 . Stay humble and Integrate Bitcoin into your Life\n\nYou don't need to wait for the whole world to start accepting BTC, or the so-called "Bitcoin country", all you need is people or businesses around you to start; `Be the change! Bitcoin Circular Economy starts from a normal living man and woman like you and me.`\n\n*Some first-hand stories from Bitcoiners:*\n\n- [Renting an apartment for bitcoin](https://stacker.news/items/265707)\n- [Paying For Breakfast With Bitcoin At The Melville Deli](https://stacker.news/items/267725)\n- [Maybe All you Need is to Ask - Do you Accept Bitcoin? ](https://stacker.news/items/293271) | [ Part II ](https://stacker.news/items/300593) | [ Part III ](https://stacker.news/items/474707)\n- [Spending Sunday series](https://stacker.news/search?amount=&q=Hey+it%E2%80%99s+Spending+Sunday%21&what=posts)\n\n\nHere is my first attempt at simplifying the Bitcoin learning rabbit hole, these shall cover the basic information one needs to reach a good understanding of it, but the learning journey never stops! And I realized that most information about Bitcoin is already freely available as I was writing this piece, there is really no excuse for saying that you don't understand Bitcoin. \n\n**And for the more experienced Bitcoiners, what would you do if you need to relearn Bitcoin from scratch again?**\n\n \N 21140 \N 443495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3582858595466 0 \N \N f 817941403 \N 4 235737304 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:21:38.205 f \N \N \N 0 0 0 0 4 0 0 420483 2025-02-28 18:34:29.749 2025-03-29 22:39:47.09 Concerned about Bitcoin Price While Bitcoin briefly hit a new ATH just now, people are forgetting that Dune 2 is in theaters, and therefore the Bitcoin price is about to absolutely crash. \n\nBeware and remember the power of Dune. \n\nThe makers of the Dune movies literally control the price of Bitcoin. \n\n![IMAGE-2024-03-05-06-11-00.jpg](https://m.stacker.news/19530) \N 10342 \N 420483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.87174316642189 0 \N \N f 78196911 \N 2 121911551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435224 2025-03-12 14:40:24.134 2025-03-29 22:39:46.79 For the Love of Territories, Zap Big and Zap Often It's been a while since I've scolded everyone for their miserliness. The recent archiving of some popular territories inspired me to make another attempt. Plus, there are quite a few new stackers who haven't been scolded, yet.\n\nI'll keep this one short and sweet:\n1. Territory owners need to make about 100 kilosats per month.\n2. They earn their sats through posting fees.\n3. OP's need to recoup their posting costs through zaps.\n\nTherefore, when there's content you like, zap big and zap often. \n\nIf there's a lack of content you like, cowboy up and write it yourself. We just might make it worth your while.\n\nZapping more can pay for itself through the rewards system (see: https://stacker.news/items/287074/r/Undisciplined and https://stacker.news/items/473181/r/Undisciplined)\n\nAlso, zapping more will make Stacker News more aligned with what you want it to be: https://stacker.news/items/523858/r/Undisciplined. \N 2342 \N 435224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9446740816611 0 \N \N f 527565235 \N 5 108035575 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 18:08:15.558 f \N \N \N 0 0 0 0 3 0 0 93211 2023-12-01 17:12:51.793 2025-03-29 22:39:46.791 Easily attach wallet to SEND & RECEIVE sats from SN with Coinos.io and HODL I can see, for some of us still hard to understand what SN has to offer, and most important how easy is to attach a wallet to leave SN balance to zero. Running a noncustodial node is hard work, it requires time and a lot of knowledge and energy. \n\nI'll illustrate below, step-by-step, how easy can be to set Coinos.io wallet for Lightning transactions and set the autowitdraw to an HODL address!\n\nLet's start! \n- - -\n# 1.0 Setting up:\n- 1.1. Create a **Coinos** account on https://Coinos.io/register, fyi... it's KYC free, so no question asked on signup apart username and password. You can have it fully anonymous, clicking on the 🎲 and it will generate a random username for you. Make sure your password is secure.\n- - -\n# 2.0 Connect wallet to RECEIVE on SN\n\n- 2.1. Once you have your `whateverusername@coinos.os` account...\n![](https://m.stacker.news/53311)\n\n- 2.2. ... expand the details.\n![](https://m.stacker.news/53312)\n\n- 2.3. Then copy that lightning address and paste it on [**`SN > wallet > attach > lightning address`**](https://stacker.news/settings/wallets/lightning-address) input field as show below.\n![](https://m.stacker.news/53310)\n\n- 2.4. Now set **desired balance** = `0`, \n- 2.5. **max fee** to a min of `1%` and...\n- 2.6. ... click on the **save** button. \n\nThat's it! You just did your first step into bitcoin sovereignty!\n- - -\n# 3.0 Connect wallet to SEND on SN\nAfter [leaving X for good](https://stacker.news/items/685586/r/supratic), Coinos recently fully embraced nostr, [implementing Nostr Walet Connect (NWC)](https://stacker.news/items/687799/r/supratic) and making it available to all its users. You can find your personal NWC code under the same Profile details:\n\n- 3.1. Copy that string and...\n\n![](https://m.stacker.news/53313)\n\n- 3.2. ... paste it on your [**`SN > wallet > attach > NWC`**](https://stacker.news/settings/wallets/nwc) settings page on the **connection** for sending input field:\n\n![](https://m.stacker.news/53314) \n\n- 3.3. Leave the **desired balance** as it is, it should still have the values you set earlier as they applies globally to all autowithdraw methods.\n\n- 3.4. click on the **attach** button... et voilá! Your sats are now out of SN node!\n\n**Note:** remember that Coinos still a custodial wallet, and that's why I'll continue describing below how you can set the wallet to autwithdraw and have your sats on an onchain saving account to keep there for the long term... HODL!\n- - -\n# 4.0 Autowithdraw to cold wallet\nIt's important to also set up the autowithdrawal on Coinos, making sure any extra unneeded sats go into your cold storage. The best and safer way to do it will be to use a reusable [Silent Payment](https://SilentPayments.xyz) address, but @coinoswallet does not support it yet! Just know that the more privacy-focus solution for receiving onchain bitcoin. In the meantime:\n\n- 4.1. Head to Coinos Settings from the top-right menu icon, \n\n![](https://m.stacker.news/53327)\n\n- 4.2. Click **PREFERENCES** and scroll down until you see the **Autowithdraw** toggle, turn it ON, paste your bitcoin onchain address and click **Save Settings** button at the bottom of the page.\n\n![](https://m.stacker.news/53335)\n\nIf you don't have yet a cold wallet that provide you a bitcoin onchain address, you can continue reading below how to securely set one.\n\n# 5.0 Set up your HODL saving account\n\nIf you don't have one Bitcoin onchain **cold** wallet yet, this is a great opportunity to set it up. These are the tools I suggest, however do not be forced to use them, try as many as you can and learn more from the differences between them all. You can find a comprehensive list here and if you really want to do it properly follow @Natalia guide on [How to MAKE your own Cold Wallet 🕶️](https://stacker.news/items/569901/r/supratic).\n\n- 5.1. As you know, there are many ways to generate a Bitcoin wallet that provide you a set of 12 or 24 random English words, that will be your wallet **seed**phrase. You could also add an extra layer of security with a **pass**phrase, basically an additional password to access and manage the wallet in the future. Ideally, you want to generate all those outside any digital wallet to increase privacy and security of your funds. One option I really like is https://www.BorderWallets.com/ where you can download a simple webpage and generate your **seed**phrase/**pass**phrase offline. It's worth to try it! Alternatively, [Blue Wallet provide a good way to increase the entropy when creating a wallet](https://bluewallet.io/docs/create-bitcoin-wallet/) from the app (remember, do it offline!).\n\n- 5.2. When you get your **seed**phrase (and maybe passphrase), make sure you write it down multiple times on paper, no pictures, no screenshots, nothing digital... write it down, engrave it, burn it on wood, carve it somewhere! And make sure you store it in a safe places.\n\n- 5.3. Once you have your **seed**phrase of 12 or 14 letters, staying offline, open Blue wallet and import your cold wallet into it. This step also serves to validate you did everything correctly ... if the import is successful, you then have now your cold storage set forever! \n\n| 5.3.1 Open BlueWallet | 5.3.2 Click Import wallet | 5.3.3 Type the seedphrase |\n|---|---|---|\n| ![](https://m.stacker.news/53319) | ![](https://m.stacker.news/53320) | ![](https://m.stacker.news/53321) |\n\n- 5.4 Now you can generate a new address clicking the button **↘️Receive** and paste into the Autowithdraw settings on Coinos mentioned in [step 4.2](https://stacker.news/items/694593#40-autowithdraw-to-cold-wallet). \N 14657 \N 93211 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.14014597935249 0 \N \N f 0 \N 0 47724028 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 429301 2025-03-08 05:34:33.534 2025-03-29 22:39:46.791 The Bitcoin Whitepaper Is Hidden in Every Modern Copy of macOS \N https://waxy.org/2023/04/the-bitcoin-whitepaper-is-hidden-in-every-modern-copy-of-macos/ 18231 \N 429301 \N \N \N \N \N \N \N \N health \N ACTIVE \N 15.2004110751414 0 \N \N f 287226169 \N 2 71614057 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434615 2025-03-12 04:22:09.981 2025-03-29 22:39:47.088 How would you attack self-custody? Following these two recent events, how would you attack self-custody?\nhttps://nitter.net/BitBoxSwiss/status/1725491128521068958#m\nhttps://nitter.net/zachxbt/status/1720961400313373127#m\n\nIt would be interesting to learn what attack vectors we can come up with and how to protect against those. With the increasing purchasing power of bitcoin there will be more and more victims I expect, unfortunately.\n\nThe two attacks above are not sophisticated and even then people fall for them (at least the Ledger one). Users should have protected themselves by:\n- Ledger: Always verifying the software they use\n- BitBox: Never enter a recovery phrase in software that is meant for a physical signing device\n\nIf I were an attacker, I would try to develop the attack methods below.\n\n\n**Browser malware**\nAttack: Replace receive addresses shown in the web browser with an address owned by the attacker. I would attack large exchanges receive addresses (Binance, Coinbase, etc.)\n\nMethods:\n- URL hijacking/domain spoofing/clickjacking: Show different websites to the user\n- Cross-Site Scripting (XSS) attacks\n- Browser extension malware / man-in-the-middle (MitM)\n\nProtection: \nManually verify the address with the recipient support organization over the phone. Assume anything digital might be altered.\nReverse of this proposal: https://bitbox.swiss/blog/securely-withdrawing-from-an-exchange/\n\n\n**FOSS wallet software replacement:**\nAttack: I would host a malicious build of FOSS wallet software. Many users don't verify their software, so if you can get malicious software on their system, you can take control of their bitcoin. I would then build two methods that come into play when the user sends bitcoin:\n1. User sends most of their balance --> Replace receive address and hope the user doesn't verify the address on a physical signing device. I expect this success rate to be relatively low for users that use a signing device.\n2. User sends a small portion of their balance --> Replace the change address as users typically do not verify that. Update the user's balance in the GUI to show the expected balance. This is a more complicated attack but can go unnoticed until the user runs out of funds or performs manual UTXO control.\n\nProtection:\nNot sure. Also, I am unsure how successful this attack could be as I don't understand change addresses deeply enough. Relevant: https://blog.coinkite.com/troublesome-change/\n\n\nHow would you attack self-custody? \N 21233 \N 434615 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.1152115873355 0 \N \N f 242413368 \N 2 239921839 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 05:14:16.785 f \N \N \N 0 0 0 0 2 0 0 413235 2025-02-23 00:35:15.593 2025-03-29 22:39:47.088 How did your childhood lead you to Bitcoin? Honestly, I didn't grow in an environment that I think obviously would've inevitably sent me down the rabbit hole. Didn't grow up in communism. Fairly stable family life. Not very techy, geared more towards arts. I picked up music from a young age, that stuck with me ever since. \n\nNot exactly a lot of overlap between bitcoin and music (for now...hoping to help change that at some point..)\n\nOne thing I think set me for the rabbit hole though was being instilled with a strong sense of independent thought. From a young age I learned of the importance of this. \n\nA less emotionally-intelligent version of myself would let that get the best of me...thought I would go into politics at one point (LMFAO - as an "independent thinker"). I was always a contrarian thinker, just with misapplied energy.\n\nBitcoin unplugged me. Truly was a Matrix-like experience, as much of a meme as that may be. I finally was able to apply my natural lean towards contrarianism in a much healthier, conducive way.\n\nWhat about yourself? I know that everyone's road to Bitcoin probably comes from a combination of sources, but what are some key takeaways from your childhood that you think brought you to bitcoin so early? \N 2780 \N 413235 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 8.87768835384474 0 \N \N f 494747608 \N 3 60541660 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423574 2025-03-03 13:11:48.163 2025-03-29 22:39:47.089 #1 The Magic of Roulette - Martigale *If you find this article too long and just want a simple tutorial on how to stack some sats, skip straight to the final paragraph before the P.S., where the great Albert Einstein himself gives you a simple tutorial on how to make money at roulette.*\n\n# Introduction\nI recently discovered bitcoin lightening roulette, which awakened in me a long-forgotten passion for this game. What is so unique about this roulette? Apart from the fact that it can be played by anyone, from anywhere, with no registration, no KYC, no age limit and in seconds with a minimum deposit, one thing in particular caught my attention. The minimum bet is 1 satoshi, the betting limit is 200k satoshis. No other casino will offer you such favourable conditions for playing. (I'll explain why this is important below.) This made me come back to this fascinating game, which is why I even decided to write a series about it on Stacker News to share my hobby and maybe get a few sats into the game. First, let's talk a bit about the history and rules.\n\n# History and rules\nThe invention of roulette is credited to the French mathematician, physicist, writer and philosopher Blaise Pascal, who created it in 1655 as a means of exploring probability. His version had 36 numbers and a zero (still played in this form today as European and French roulette). Later, a version with two zeros (known as American roulette) was created that greatly increased the casino advantage. For this reason, I won't go into American roulette any further and will focus only on European roulette, which is more player-friendly. Although Pascal created roulette as a tool for his scientific research, it quickly became a popular gambling game that spread throughout Europe and eventually the world. It was made most famous by the famous casinos of Monte Carlo.\n\nRoulette offers a large number of bets that have different probabilities of winning and payout ratios. (It should be said here that the odds are always slightly skewed in the casino's favour due to the zero not seeming to belong in any group with the other numbers)\n\nInside bets: \n\nBet on 1 number: payout ratio 35:1, odds 2.7% \n\nBet on 2 numbers (split): payout ratio 17:1, probability 5.41% \n\nBet on 3 numbers (street): payout ratio 11:1, probability 8.11% \n\nBet on 4 numbers (corner): payout ratio 8:1, probability 10.81% \n\nBet on 6 numbers (double street): payout ratio 5:1, 16.22% \n\n \n\nOutside bets: \n\nBet on colour, odd/even, high/low: payout ratio: 1:1, 48.65% probability \n\nBet on a dozen or column: payout ratio 2:1, probability 32.43%\n\nBy combining these bets in different ways, the player can achieve different win probabilities and payout ratios. Since the beginning of time, people have tried to take advantage of this by devising different strategies to "beat" roulette. Basically there are 2 ways. Either you try to cover a large part of the playing field with your bets, increasing your probability of winning, but the amount risked is higher than the possible payout. Or you keep increasing your bets according to a predetermined plan so that the subsequent win covers all previous losses. This continually increases your exposure to the game, but at the same time increases your chance of winning with each successive spin.\n\n# Martingale the oldest and most famous roulette system\nThis finally brings us to the roulette systems that I would like to discuss in this series and I will start with the oldest and most famous system of all, called Martingale. Its creator is John Henri Martindale. If you feel that there is a typo in his name, you will be disappointed. His name was indeed Martindale and it was only later that his name was mangled. He was a casino owner in London in the 18th century. It was he who invented the system because he felt that people were not spending enough at his casino, so he encouraged them to do so, which is what the Martingale system is based on. Doubling the bets in the event of a loss. As a casino owner, he believed that the casino would always win over the player, and it backfired cruelly. His players came into the casino with such large amounts of money that they overcame even the worst losing streaks and he eventually had to declare bankruptcy. So John Henry Martindale faded into obscurity, as did his casino, and all that remains of him is the most famous roulette system of all time, which bears his name, albeit mangled.\n\nHowever, the one who made the system famous was someone else. In 1891, a man named Charles Wells set out for the world-famous Monte Carlo casinos equipped with considerable capital and the Martingale system. You can imagine the enormous financial power of the Monte Carlo casinos, which are the Las Vegas of Europe. Now imagine Charles Wells arriving at Monte Carlo with 4,000 francs in his pocket (a respectable sum for the time), sitting at the roulette wheel for 3 days, during which he broke the bank 12 times, and eventually pocketed an incredible 1 million francs! A year later he sailed to Monte Carlo with his mistress on a huge yacht and spent many more deceits living in luxury surrounded by beautiful women. Unfortunately, towards the end of his life, he lost his entire fortune due to bad investments. However, he will forever go down in history as a man who was not afraid to play against the whole Monte Carlo. He died in 1922. This is no fictional story. All the newspapers of the day covered this unprecedented event, and Charles Coborn even wrote a song about him - "The Man Who Broke the Banks of Monte Carlo" You can listen to the song here: https://www.youtube.com/watch?v=Gx1SWS1MFbU\n\n# How to play Martingale?\nSo how does one play Martingale? The procedure is very simple. You start by betting 1 chip per suit (or another bet that has a payout ratio of 1:1, such as even/odd or high/low). If you win, you are 1 chip in the plus. If you lose, you double your previous bet on the next round. This means that if you have a losing streak, your bets increase in numerical order of 1, 2, 4, 8, 16, 32, 64, 128, 256 and so on. This process ensures that after each win you have 1 more chip than before you started betting. It looks simple, but there is one big BUT! This is a very aggressive system that requires a lot of capital to play and unless your empty wallet takes you out of the game, sooner or later the betting limit set by the casino will do it. For example, if the smallest chip is €1 and the betting limit is €100, it only takes 7 losses in a row to walk away from the table with a loss because the casino will not allow you to raise your bets further. This brings us back to what intrigued me about bitcoin lightening roulette. A minimum bet of 1 satoshi gives you the opportunity to play for fractions of a cent, while a maximum bet of 200k satoshis allows you to stay in the game for a very long time if you have enough capital and choose a good game strategy.\n\n# Conclusion\nAfter reading it, do you feel like it's a how-to guide for getting rich easy and that you're going to be the next Charles Walles? Well, you're gonna be disappointed. The truth is, no roulette system can guarantee you a win. Roulette is unpredictable and the more games you play, the more likely you are to encounter extremely unlikely scenarios and long losing streaks that can have devastating effects on your capital. The casino will always have a mathematical advantage over you. You may be able to weather long unfavourable streaks more easily on bitcoin roulette, but the amount of capital at risk will grow very quickly, you will spend a lot of time playing, and you will only win 1 satoshi in the end. So never play for money you can't afford to lose. Don't be greedy and play for fun, not for money. Gambling can be a great diversion, but it will never make you a profit in the long run.\n\nI don't play Martingale myself, due to its boring nature, capital intensity, extremely fast growing risk and small winnings. There are many more interesting game systems and if there is interest in me continuing this series, I will be happy to introduce them in future episodes.\n\nI will be glad if you appreciate this article with some small sats so that I know it is worth continuing.\n\nThe bitcoin lightening roulette I mention can be found at: https://lightning-roulette.com/?rid=c23c5c2d It's a referal link for which I get 10k sats if you make a deposit. You can also play the demo for free. You can play completely anonymously without any registration, but I recommend signing up using Twitter. Playing anonymously you risk losing your deposit when the site closes. If you log in, you can return to the game later or continue on another device.\n\nFinally, I will say goodbye to you with a quote that you should always keep in mind. It was spoken by Albert Einstein, who was involved in roulette for some time: ***`"No one can possibly win at roulette unless he steals money from the table while the croupier isn't looking."`***\n\nP.S.: English is not my first language. I have the help of https://www.deepl.com/translator to help me with the translation, so I apologize if there is a mistranslation somewhere. At the same time, I will also translate these articles into Spanish and add simulations of the game programmed in Python. I take this as an opportunity to improve my English, where I am a "perpetual beginner", my Spanish, which I have only been learning for a little over a year, and my programming, which I only started a few weeks ago. Therefore, I would be glad if you could give me feedback and point out any mistakes, whether in translation, grammar or my code. May the goddess Fortuna always be on your side of the table ;o) \N 21603 \N 423574 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.1889307907137 0 \N \N f 395804758 \N 4 173412087 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404432 2025-02-15 21:45:43.275 2025-03-29 22:39:47.09 Dennis from the BTCPay Server team here, AMA! Hey Heeey Heeeeey! Dennis from the BTCPay Server team here, AMA — LFG!\n\n[BTCPay Server](https://btcpayserver.org) is an oftentimes referenced project in the space and we are proud of what we've achieved with your help so far:\nOur mission is to enable everyone to accept Bitcoin payments with zero fees and without any third-party involved.\n\nI got involved with BTCPay Server about three years ago and started by helping with the documentation and work on the UI/UX side.\nNowadays I am working on the project full-time, funded by the BTCPay Server Foundation.\n\nWe have a team of about a dozen regular contributors and also receive frequent feedback and contributions from the community.\nWe love to hear from you and with this AMA we invite more questions and discussion, to push things even further.\n\nTopics to talk to me about:\n\n- Bitcoin for merchants and the circular economy\n- Use cases for BTCPay Server\n- Earning sats\n- Working on BTCPay Server\n- Getting started with Open Source development\n- Podcasting 2.0\n\n… but yeah, feel free to AMA! LFG! 🚀\n \N 15192 \N 404432 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2261031716624 0 \N \N f 105968160 \N 1 98293035 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 392178 2025-02-05 01:02:31.564 2025-03-29 22:39:47.091 What fears and concerns have you encountered when speaking to merchants? I just had a conversation with a gas station owner about the idea of accepting Bitcoin as a form of payment. He emphasized the importance of the off-ramping function in Euro for his business. For merchants dealing in goods with potentially high tax components, negative currency fluctuations understandably pose a concern. \n\nOn the flip side, merchants offering services seemed to experience less pain from direct off-ramping in Euro. I believe there should be more avenues for businesses to spend their Bitcoin, including in wholesale and telecommunications fox example.\n\nHowever, it's personally disheartening to see Bitcoin converted back to fiat, regardless of who initiates the exchange. What questions or concerns do the merchants you speak with typically have?\n\n\n![sdfs.jpg](https://m.stacker.news/7654) \N 14168 \N 392178 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 27.6106982512054 0 \N \N f 182720582 \N 1 128533854 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 116011 2024-01-20 18:10:51.964 2025-03-29 22:39:46.79 Found out my wife has cancer diagnosis (Part #2) This is a follow-up on my original post, [Found out my wife has cancer](https://stacker.news/items/423124/r/hodlpleb)\n\nWe are more than a week since the diagnosis. After a few days of denial and general fear, we started getting some data, consuming information (some good and some bad), and having appointments. After initial meetings with surgeon and oncologist, we at least have a general timeline and an overall hope that this is contained and treatable.\n\nWe have never been big medicators and this lends to us being more concerned about chemo than we are about surgery. She will be doing vitamin C infusions and taking several homeopathic supplements to help reduce the side effects, and to help her recover afterwards, but there is a lot of fear around the process. This plan will continue to develop... \n\nAdd in the onslaught of people who want to help, offer ideas, opinions, etc, and it is a lot to manage, all on top of normal life. My work has been great about it, but my general experience of adulthood has been "I do not have enough time to do it all", and this is exasterbating that experience. \n\nProbably the biggest moment-to-moment obstacle right now is managing the kids. They are spending more time with their grandparents as we go to appointments, and we are doing everything we can to be available to them and be with their feelings. They are a bit scared, and that shows up in different ways - we are trying to be open with them, to let them know what is going on, without totally freaking them out, in a way that kids understand. Trying to let them express themselves - and we've had a few late nights, which results in me not getting enough sleep, which leads to a hard day the next morning. \n\nI was doing better for a few days, but now am spiraling a bit. I thought we had a pseudo-plan and felt okay about it, but then I realized that my wife is actually still very nervous and worried.\n\nThe fear in the back of my head is not that she will die this year or next year, but rather that we enter into a painful cycle that sees her health slowly decline over the next decade(s) ... \n\nMy commitment is that our children know her as a strong woman who _was_ sick, fought through it, and became strong again. \N 6687 \N 116011 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.4862033115677 0 \N \N f 0 \N 0 127554790 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427912 2025-03-06 17:54:27.046 2025-03-29 22:39:46.791 What's the difference between a consensus rule and a bug in Bitcoin Core? # New version, same rules...same bugs?\n\nThanks to the friendly encouragement of @DarthCoin, my node is now running v26 of Bitcoin Core. But in the process of upgrading, I've been doing some thinking. What if this new version I'm running has a bug that nobody has noticed yet and it validates some blocks that no other version of Bitcoin thinks are valid?\n\nObviously, my node would depart from the rest of you and run down a new fork. Maybe I could make up a fun name for it or something. But the problem is that nobody else would be on my fork of the chain with me. When everyone else sees that block I validated, they would all say: *Hey stranger, keep your new-fangled ideas away from here. we don't do it like that 'round these parts.*\n\nEveryone except for the other people who downloaded this new version of Core with the bug. They would still be my friends and think I had cool blocks.\n\nLuckily, thus far, I'm still in sync with the rest of you.\n\n# How do you know if Bitcoin Core has a bug?\n\nIf Bitcoin Core v26 *did* have a bug in it that allowed it to validate blocks that older versions considered invalid, we'd know because it would suddenly fork off from all the older versions.\n\nBecause it was new, we'd probably assume that the problem was with v26 and most of us would revert to some previous version until the devs figured it out. At least, that's what I assume would happen.\n\nBut what if the bug was in an older version of Satoshi's client and *not present* in the newer versions? \n\nWhat if there is some transaction lurking out there that is valid by all the consensus rules we agree on, but triggers a bug in all versions of Core earlier than v14? And when this magic pill of a transaction gets into a block, all of a sudden we get a fork with old nodes saying *what the hell is this shit you're trying to pass on us?*, and new nodes saying *isn't this what we've always done?*\n\nAgain, we'd all look to the devs, but in the mean time, there would be this question:\n\n# Which chain is the *real* bitcoin?\n\nAll software has bugs and I'm not really interested in them. I am interested in how we know the difference between a bug and a consensus rule.\n\nIn a recent [Bitcoin Takoever](https://www.youtube.com/watch?v=DRTw3sFlKqU) episode, Erik Voskuil makes the following statement around 41:20:\n\n> And the question is: who was on the real chain? At the point that that shipped, which implmenetaton was Bitcoin? We were. They weren't because they changed it back.\n\nVoskuil has been a maintainer for an alternate implementation of Bitcoin called libbitcoin. His statement refers to [a time in 2018 when Bitcoin Core unintentionally shipped a version (v15.0) that included a double-spend bug](https://bitcoinops.org/en/topics/cve-2018-17144/).\n\nThe bug was never exploited, but Voskuil raises the point that nodes running that unpatched version of Bitcoin Core v15 were following a set of rules that allowed double spends and libbitcoin nodes were not. At that time, which nodes do you think were running the real Bitcoin?\n\nDouble spending has never been a part of Bitcoin, so the answer seems clear. We have some concept of Bitcoin that we hold everything up to and ask, is this it? Is this a consensus rule or is this a bug?\n\n# Are bugs consensus rules?\n\nIn Fall 2022, many LND nodes crashed because [a transaction their implementation of bitcoin thought was invalid](https://bitcoinmagazine.com/technical/how-a-bug-brought-down-the-lightning-network) got included in a block.\n\nThis time the discrepancy wasn't about something as obvious as double-spending.\n\nLND nodes were using an implementation of Bitcoin called btcd, and this implementation had a limit to how much witness data could be included in a taproot transaction. Bitcoin Core did not have a limit for taproot transactions. When @brqgoo made a really big multisig transaction, Bitcoin Core nodes accepted it as valid, but btcd nodes did not.\n\nNow, the reason the limit exists in the first place, I think, is to prevent denial-of-service attacks. It isn't really about consensus. Nonetheless, it changed consensus.\n\n# Even unto the bugs\n\nIn the aftermath of those exciting times, I remember thinking, Well, shoot: consensus isn't just the big rules we all have heard about. You have to make sure that you agree about all the little, quotidian stuff, too. Because consensus means you can't have one Bitcoin node think transactions are valid and another think they are invalid.\n\n@petertodd used the phrase "[bug-for-bug compatability](https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2014-November/006878.html)" when referring to this problem. And Satoshi [identified the problem pretty early](https://bitcointalk.org/index.php?topic=195.msg1611#msg1611):\n\n> I don't believe a second, compatible implementation of Bitcoin will ever be a good idea. So much of the design depends on all nodes getting exactly identical results in lockstep that a second implementation would be a menace to the network.\n\nThis sounds pretty damning. And if you recall where we started with my worries about upgrading to v26 of Core, things aren't looking too good.\n\n# The Bitcoin Consensus Red Herring\n\nYou've probably seen this article from 2015 called [The Bitcoin Consensus Red Herring](https://www.conformal.com/the-bitcoin-consensus-red-herring/). If you haven't, you should definitely give it a read.\n\nThe TL/DR is this:\n\n> There is currently no way to guarantee that any two versions of Bitcoin software, whether they are two different versions of Bitcoin Core, two different versions of alternative implementations, a version of Bitcoin Core versus a version of an alternative implementation, or even two copies of the same version of Bitcoin Core built with different compiler versions are in exact consensus agreement. Doing so is incredibly difficult and borders on impossible.\n\nI'm sure that people who know better than I can weigh in on the merit of this statement, and again my interest isn't in the fact that bugs happen, but rather when they do, how we decide what is a bug and what is consensus.\n\n# A frowsy, ugly step-child looking oracle of truth\n\nBack to that Bitcoin Takeover epsidoe with Erik Voskuil. The host, Vlad, made an interesting comment (around 39:40) about running alternate implementations (or older versions of Core itself):\n\n> You have an alternative implementation of the same code base or a rewrite or something that's entirely new but respects the consensus codes for the simple reason that you want it to be an oracle of truth just in case there are changes that go by unnoticed with Core. You are going to have this thing that says you changed your rules.\n\nI thought this was a pretty interesting idea. Because consensus is such a picky little bitch, it wouldn't hurt to put a little more emphasis on alternate implementations and older versions. \N 20353 \N 427912 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 0.211917044152905 0 \N \N f 156135294 \N 1 222417890 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434514 2025-03-12 01:35:01.809 2025-03-29 22:39:46.791 The Watch by Ross Ulbricht, Writings from Prison >The sun was just settling as I stepped out of the block and onto the concrete walk leading to the main corridor. It put a pale pink glow along the underbelly of the overcast clouds. The rec yard was packed with prisoners from the many cell blocks surrounding it. That’s where everyone had gone, off to get the latest gossip or do some piece of business, to gamble, to fight, to struggle through their little lives on this little square of desert surrounded by high walls, high-voltage fences and gun towers.\n\nMany people paying attention to the story of Ross lately, and it's sitting heavy with me especially after taking in this piece of writing. That Ross would write the color of the sky with such care, I think it's very tender. Great article. https://rossulbricht.substack.com/p/the-watch 17710 \N 434514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7717481212645 0 \N \N f 819806110 \N 5 115086493 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:19:54.084 f \N \N \N 0 0 0 0 4 0 0 434751 2025-03-12 08:04:48.046 2025-03-29 22:39:47.089 Bitcoin and my kids - A perspective from a father __This post was inspired by a [post](https://stacker.news/items/169018) by @grayruby.__\n\nAs a father and bitcoiner I often think about bitcoin in relation to my family. @Odell often says "Stay humble, stack stats". Not only is this great advice, it is a dense statement full of deeper meaning. While it may mean different things to different people this is why I repeat it.\n\nStay humble, stack sats. I believe we need to stay humble. So first off, relationship and knowledge are far more important than bitcoin and especially in relation to our kids. Any of us can die at any moment so don't kid yourself about your own mortality. Teach your kids about bitcoin and how to use it. Help them set up wallets. Send them bitcoin. Pay them in bitcoin for chores. Share your passion with them. Prepare them for living in a world in financial and social decline. You need more than bitcoin to be prepared for this.\n\n## Stay humble:\n\nDon't be dumb. Don't over extend yourself and get into debt. Stack sats on a regular basis. Don't gamble and try to play the markets. Stay humble. Learn to grow food. Learn to be prepared for the most likely disasters (ie not nuclear holocaust). What are the most likely events that would impact you and your family where you live? Use your brain and seek out [resources on preparedness](https://www.thesurvivalpodcast.com/). Teach your kids to be self reliant. Don't raise kids, raise adults.\n\n## Stack sats:\n\nFocus on building wealth for your family. I don't stack sats primarily for myself. I do it for my family. I don't know when bitcoin will win but I know it will be at some point in the future so I'm focused on stacking as much as I can while I can. My goal isn't to give my children a certain amount. My goal is to get them to value bitcoin and learn skills to allow them to stack sats for themselves. Yes, I have given them bitcoin but the bigger goal is to give them knowledge and skills and help them realize their full potential. If you aren't balanced in your perspective with your family you can end up with offspring that have bitcoin but don't know why it is important. If you don't have a healthy and positive relationship with your family they will not listen to you either so remember those are the most important things.\n\n \N 8173 \N 434751 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.2323562347257 0 \N \N f 57192081 \N 1 76044240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:07:44.262 f \N \N \N 0 0 0 0 1 0 0 434160 2025-03-11 16:24:17.614 2025-03-29 22:39:47.091 Hal Finney died 9 years ago today. RIP I think everyone here knows who Hal Finney was. But just in case, today it is a good day to remember him and all he did for Bitcoin. He was very humble and always helping others. Many of us think he was Satoshi himself. We may never know. In any case he was very important for the development of Bitcoin and a great human being. Thank you Hal. \n\nhttps://en.m.wikipedia.org/wiki/Hal_Finney_(computer_scientist)\n\n \N 16956 \N 434160 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 29.9874538099268 0 \N \N f 151329344 \N 1 106499760 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 23:01:31.431 f \N \N \N 0 0 0 0 1 0 0 396413 2025-02-09 11:37:28.961 2025-03-29 22:39:47.091 Welcome to Personal Finance Welcome,\n\nI am so stoked to be starting this forum. I am working on a big post about all my personal finance wins over the years that I think would be helpful to share. \n\nIn the meantime, the description had a character limit. So here are some topic discussions \n\n-Bitcoin financial planning\n-Budgeting methods and systems \n-FIRE \n-Cash flow \n-Identifying and avoiding sacred cows\n-Taxes\n-Deflationary lifestyles \n-Couples building businesses together\n-Land acquisition \n-Paying off debt \n-Cost benefit analysis \n-Insurance\n-Sats flow \n-Spot financial propaganda\n-Legacy planning and decision making\n-Skill acquisition \n-Starting/grow a business \n\nBitcoiner's offer useful and rare ways of thinking around the topic of money, it's time to start sharing in one unified place. \n \N 9364 \N 396413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5973481285654 0 \N \N f 20951031 \N 1 23130128 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 405361 2025-02-16 15:18:54.377 2025-03-29 22:39:47.091 Bitcoin Ekasi member Nosihle could use some help https://x.com/BitcoinEkasi/status/1830512784892678496\n\nVery sad news.\n\nIf you've ever visited our project and spent some sats here, chances are you visited this shop.\n\nKwallos Shop, owned by Nosihle and her husband Vuyisa, was the first township spaza shop to start accepting payment in #Bitcoin, in August 2021.\n\nhttps://x.com/BitcoinEkasi/status/1478431185646850055\n\nhttps://x.com/LuthandoSABTC/status/1825937614534488143\n\nUnfortunately they had a fire accident over the weekend.\n\nA close family member lost his life when the informal building where he lived adjacent to the shop burnt down and caused extensive damage to the shop itself, destroying most of their stock.\n\nIf you can, please consider making a small donation to help with reconstruction.\n\nDonations can be sent here, straight to owner Nosihle's @blinkbtc wallet:\n\nnosihle@blink.sv\n\n![](https://m.stacker.news/49419)\n\nI'm not affiliated with the project and I'll send all the sats zaped to this post to Nosihle. \N 15049 \N 405361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5320116920826 0 \N \N f 62739352 \N 1 221527513 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414670 2025-02-24 07:20:51.668 2025-03-29 22:39:46.791 Have you tried living without a smartphone? I rediscovered this [essay](https://insanelyfree.substack.com/p/living-without-a-smartphone-the-definitive) on living without a smartphone thanks to another [post](https://stacker.news/items/403156) in ~ideasfromtheedge.\n\nHas anyone else tried living without a smartphone? What was your experience like? \n\nI've tried this experiment a few times - usually when an old phone broke. I found that I missed maps, music/podcasts, occasional google searches for things like restaurant ratings, and ridesharing apps the most. I also found that the quality of my life was at least 10x "deeper" or more engaging, particularly when I was exploring a new city. \n\nMy middle ground over the years has been to use an iPhone SE (because it's smaller) in black and white mode with no infinite scroll apps and the browser only accessible from search. I've backtracked a bit in downloading Primal/Damus and some PWAs like Stacker News. And I definitely use the browser a ton even though I need to search for it. Overall, this experience has been better than using a big color iPhone with lots of dopamine triggering apps. But I find that I still miss the depth of living with no phone at all. \N 12490 \N 414670 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.2876208726515 0 \N \N f 411080221 \N 2 136932052 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 297791 2024-11-16 16:01:35.39 2025-03-29 22:39:46.792 SN release: 10 sat post fee, better search, QR scan, date ranges, bolt11 removal 1. We've increased base posting costs to 10 sats. Recent has gotten pretty noisy so we're hoping this leads to more mindful story sharing. As with most things, it's just an experiment so let's see how it goes.\n2. Scan QR codes when withdrawing (via @ekzyis)\n3. Search should produce much better results now. The `related` section under posts should likewise produce much better results. It's still slower than I'd like but one thing at a time.\n4. OPs can now repeatedly self-reply with no escalating cost as requested by @elvismercury\n5. Anywhere that you can filter by a time period now lets you set a custom date range (partial assist by @rleed)\n6. After 7 days, you can delete any withdrawal invoices permanently. In your [settings](/settings), you can tell us to do this for you automatically. (via @rleed)\n7. PWA notification badges (via @WeAreAllSatoshi)\n8. There are a bunch of small bug fixes that are boring to list but worthy of an aggregate mention nonetheless.\n\nWe still have a few things in the PR queue that I'll release in the next few days. @elvismercury I haven't forgotten that I owe you a graphql sandbox.\n\nAfter I clear those, I'll be exclusively focusing on user generated subs until those get released.\n\nLet us know if you find any bugs! \N 6202 \N 297791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3116673438871 0 \N \N f 0 \N 0 93171553 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434264 2025-03-11 18:01:50.82 2025-03-29 22:39:47.084 SN release: NWC & LNBits for sending, LND for autowithdraw, NSFW labels, & more #### moar wallet attachments\n\n##### sending with NWC and LNBits\nYou can attach wallets for sending now *via @ekzyis*. To start we support attaching Nostr Wallet Connect and LNBits. @ekzyis did a lot of work to make the UX as close to familiar as possible and I think it's stellar.\n\nNote: The credentials are stored in the browser, so please set a budget on them. @ekzyis took a lot of care making the browser as safe as we can for storing these, but you'll want to be extra careful anyway.\n\n##### autowithdraw to LND\nIn addition to autowithdrawing to a lightning address, you can now autowithdraw to LND. We support connecting to your node over Tor so you should be able to push out funds to your home node even if it doesn't have a public IP.\n\nIf you attach LND in addition to a lightning address, you can set a default and if it fails we attempt your other method.\n\n##### expect more methods soon\nThere are a lot of wallets and ways to connect them, but we plan to support any method that makes sense as time goes on. We'll likely be adding CLN and Zebedee next.\n\n#### NSFW territory labels\n🚨 first time contributor alert\n\nTerritories can now be labelled NSFW and are visible on an opt-in basis unless visited directly *via @mz*.\n\n#### improvements to domain searching\n🚨 first time contributor alert\n\nWhen you search with a `url:example.com` filter you should see less strict results *via @btcbagehot*.\n\n#### bug fixes\n- wonky checkboxes on territory form *via @mz*\n- pinned posts now really do show up in `home` *via @ekzyis*\n\n#### what's next\n- we have a nearly done nostr crossposting PR *via @bitcoinplebdev* that allows you to crosspost all post types and will likely be merged soon\n- a variety of territory enhancements\n - @mz is working on a `top` for territories\n - @byoungdale has a draft going for crossposting\n - I'll work on changing the territory billing period here shortly then sub-territories (unless someone beats me to either)\n- more thorough bolt11 deletion *via @dillon* will be merged soon\n- lots of random stuff I'm sure\n\nHappy Valentine's! \N 20370 \N 434264 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 29.8929487952202 0 \N \N f 0 \N 0 60660961 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:13.246 f \N \N \N 0 0 0 0 0 0 0 411173 2025-02-21 05:12:21.433 2025-03-29 22:39:47.088 Do you guys actually comprehend the books you've read? I've been getting more involved with books in recent times, and one thing I really, *really* try to go the extra mile on, is to actually *comprehend* the book's contents- which can be quite a challenge \n\nI think that most people don't put that much effort into books. Most simply pick a book that looks interesting to them, read it and call it a day; only to place said book amongst the ever-increasing "wall" they've established over the years, rarely looking back to books once read.\n\nInstead of speed-reading book after book, I try to select a book which I'll actually dig into, writing my own "summaries" about parts of the book, re-reading the book et cetera.\n\nWhat about you guys? Are you like me, or are you like the majority (based on personal assumptions).\n\nWhat efforts do you take to comprehend a book on a deeper level? Why not?\n\n*Bonus question: How many times did I write the word "Book"?* 🧐😁 \N 8400 \N 411173 \N \N \N \N \N \N \N \N education \N ACTIVE \N 8.10890825329203 0 \N \N f 237133507 \N 1 237723353 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437769 2025-03-14 21:33:39.578 2025-03-29 22:39:47.089 Which aspect of bitcoin had you sold? Seems like becoming a bitcoiner has a few different entry points. I'm sure it wasn't just one aspect of bitcoin that convinced you to get off zero (all of us would normally select "all of the above", but I'm curious which one resonated with you the most on your journey. In which category was your "aha" moment?\n\nWas it the innovation of blockchain as a technology? Was it your economic or political perspective? \n\nYou might be able to guess which was mine based on the options below. \N 10698 \N 437769 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 13.8853449161949 0 \N \N f 699583503 \N 6 135486317 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 408015 2025-02-18 14:27:09.496 2025-03-29 22:39:47.09 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 2330 \N 408015 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 5.72537547412711 0 \N \N f 220418499 \N 2 240528809 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 426780 2025-03-05 20:35:00.251 2025-03-29 22:39:47.09 Book review | Memoir: Based on a true story by Norm Macdonald So, I picked up Norm Macdonald’s ‘Memoir; Based on a True Story,’ and let me tell you, reading it was like sitting with the guy himself, sharing a few laughs, and you can't help but read it in his voice. Hell, you may even start writing like him: ) \n\nNow, this isn’t just any memoir; it's the real life, dead-pan, made up brand of humor kind mixed with a nasty dose of antibiotic resistant ridiculousness. Delving into it was like that restaurant that looks like it might be Italian, doesn't have a menu outside but you go in and sit down and it has candles on the table and the lights are down low, and you don’t want to ask the waiter what’s good as you know what to expect because it looks like an Italian restaurant. You order something you think is going to be spaghetti, and it arrives and it's actually a stuffed aardvark. And spaghetti.\n\nAnyway, I own this book and I read it. I started reading it in the bookshop because I don't trust books, I have learnt that lesson the hard way - they have sequels and I dont care for something that is part of a series of 10 about a boy wizard at boarding school. So I read the first chapter and thus satisfied I left the bookstore; my natural athletic ability, long legs and fear of law enforcement gave me a fast enough turn of speed to get out of the mall without paying for it. \n\nNorm's lengthy missive talks about his first steps in comedy; his failures, the glimpse of success and then largely indifference that has greeted much of his early work before getting the SNL gig and then not having the SNL gig anymore. His misadventures, the moth joke - God, I love that joke - and completely unreliable memories had me laughing out loud. It meanders through his life brilliantly. \n\nThe background to the whole thing is of a fantastic adventure and it was probably the greatest idea he ever had. Until it wasn't. \n\nI can honestly say I like the the tilt of this Mr Macdonalds massive foam hat, I would certainly have been happy to pay mostly full price for it. I didn't think there were enough OJ jokes but that's my only complaint. \nGet yourself to the bookshop and hope some other spring-heeled rogue hasn't had the last copy away..\n\n(With apologies to any Turd Ferguson fans) \N 2709 \N 426780 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 0.732901538143231 0 \N \N f 157267723 \N 2 124192406 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414625 2025-02-24 05:36:21.915 2025-03-29 22:39:47.091 BITCOIN CORE'S LOSS OF FOCUS >The legacy technical leadership in bitcoin is becoming increasingly less effective.\n\n--\n\n>Almost universally, Core and "graybeard" devs are not focusing on _the_ fundamental problem in bitcoin: preserving trustless UTXO ownership.\n\n>Instead they are distracted with valuable but secondary issues like mempool policy, Core code architecture, and minor IBD performance. These things are important in their own right, but they fundamentally don't matter if in times of trouble most users can't take possession of their own coins.\n\n>Core devs are exceptionally talented people. The brightest engineers. But the priorities of the project are out of whack.\n\n>The aggregate focus does not reflect the thing that makes bitcoin a unique asset: trustless custody.\n\n--\n\n>Given the current limits of bitcoin, even upper-middle class Americans will not be able to self-custody, let alone the rest of the world.\n\n>If bitcoin doesn't figure out how to ensure that most users have a trustless way of owning and sometimes moving coins, it will become basically indistinguishable from a gold ETF. A row in some OFAC-compliant database. Another financial widget that is subject to the regulatory dictates of government.\n\n>In fact, if bitcoin does not scale UTXO ownership, gold will have the advantage that at least small amounts of it *can* be self-custodied and traded peer-to-peer. The same won't be able to be said for bitcoin. In a world where on-chain fees are in the thousands of dollars and there is not a workable, trustless layer two, most coins will be stuck with custodians.\n\n>Forget payments. I'm talking about savings. I'm talking about less than checking-account volume. 1-2 transactions a month.\n\n>If you think that most people should be able to DCA and withdrawal to self-custody once a month, maybe spend once every few years for big purchases, I've got news for you:\n\n>Given bitcoin's current limitations, only 18 million users can do that. A little over 5% of Americans.\n\n--\n\n>Right now, the chain capacity is able to meet demand for self-custody because we are in a time of relative peace.\n\n>Most don't feel at risk keeping their bitcoin with a custodian. That can change very rapidly.\n\n>As bitcoin grows in value and challenges fiat currency, governments will increasingly want to control it. They won't ban it, which is now obvious, but almost certainly they will impose OFAC-like restrictions and possible wealth taxes.\n\n>When the regulatory hammer comes down, tens of millions will look to withdrawal their coins into self-custody. But they may not be able to.\n\n--\n\n>Unfortunately this risk does not seem to be top of mind in the current Core culture.\n\nOne instance of a tone-deaf Core response to this kind of problem relates to CTV. As Jeremy Rubin has been pointing out for years, CTV would be the most efficient way to guarantee that people can withdrawal coins from institutions in times of chain-panic and congestion, allowing exit to happen during crises without fully "unrolling" transactions. I wrote about this at length in 2023, and why it seems there is no more efficient way to do this (https://delvingbitcoin.org/t/thoughts-on-scaling-and-consensus-changes-2023/32).\n\n>And yet technical figureheads like Matt and Murch downplay the value of CTV, claiming that it has no compelling uses.\n\n>CTV is one of the primitive building blocks that we need to figure out UTXO scaling solutions. (Not to mention its use in applications like vaults.)\n\n>Some Core devs might argue "well okay, maybe we need that functionality - but CTV isn't the right way to do it. We need to think harder!"\n\n>The problem is that time is running out. As nation-states begin to enter the technical ecosystem, soft forks that promote scaling and self-custody will be more difficult to deploy. Powerful actors will not want bitcoin to change - they're perfectly happy letting regulated custodians act as the L2.\n\n>As the market cap grows, the stakes of change go up, and it will be much harder to get economically relevant actors to run new consensus.\n\n>Because Core devs aren't paying close attention to the covenants conversation, they may not realize that CTV is upgradeable, simple, and well-tested. It's good enough.\n\n>This gap in understanding partially reveals that those devs prefer to work on more smaller self-contained puzzle problems that are more tractable. Maybe this is understandable given the fraught Core development process and historical drama of soft forks, but neither of those are an excuse for abandoning the core challenge of realizing bitcoin.\n\n--\n\n>Segwit and Taproot were massive changes, and I can almost understand why so much drama was spent on them. They both basically reinvented how locking scripts are stored and executed in bitcoin.\n\n>But to make significant headway on finding a scaling solution for self-custody, it may only take a few opcodes - much more narrowly scoped bits of functionality. Changes that are much easier to test and reason about, and don't reinvent the engine of bitcoin.\n\n--\n\n>As I continue campaigning for a renewed focus on scaling coin ownership, some may compare me to the "big blockers" of the 2017 scaling wars.\n\n>The big-blockers camp wanted to raise the blocksize for the sake of housing the world's P2P payments. They resisted the use of Lightning and other second layer solutions.\n\n>The reality is that they have been partially vindicated. Lightning has not solved our problems, and given the on-chain footprint that existing channel constructions require, it categorically cannot. Lightning certainly helps reduce on-chain payment volume once someone has opened a channel - but to do that for most people will require a layer 1 innovation.\n\n>I don't share the big blockers' objectives.\n\n> I don't think that trying to fit the world's P2P payments on the base chain is a reasonable target.\n\n>But the ability to resist near complete capture of UTXO custody by third-party financial institutions - *that* is intertwined with the core purpose of bitcoin. \n\n>In Satoshi's whitepaper, the first sentence claims \n\n>"A purely peer-to-peer version of electronic cash would allow online payments to be sent directly from one party to another without going through a financial institution."\n\n>If most users become unable to even take possession of their own coins a few times a year, we have failed on the objective.\n\n--\n\n>I am not writing this out of any sense of antagonism. Yes, I am frustrated that after numerous attempts, Core devs are not engaging more productively with the few people trying to translate scaling strategies to the base layer. \n\n>But I'm hoping that by calling attention to this issue, we can get some of these great minds to refocus on bitcoin's critical mission, and to realize that ossification will come sooner than we thought.\n\n>The existing (and well-funded) power structures *want* stasis. \n\n>The recent show of rapid institutional affinity should make you suspicious that bitcoin in its current form isn't a threat to the fiat order.\n\n>The lack of "ivory tower" attendance in the recent OP_NEXT and the broader covenants discourse demonstrates that, like many of America's elite institutions, there has been mission drift in bitcoin's technical elite. I hope this changes.\n\n--\n\n>The risk of merging many of the opcodes proposed during the last few years is limited. \n\n>OP_CAT, OP_CTV, lnhance, probably OP_CCV, some others; they're all fine. If sufficiently tested, great additions to bitcoin.\n\n>We can pretty easily mitigate what risk there is with comprehensive testing and analysis, provided the focus is there.\n\n>The upside is almost infinite: a reasonable attempt to continue the preservation of bitcoin's unique function - trustless self-custody that is practically available to most. https://x.com/jamesob/status/1860340932706730261 9874 \N 414625 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 17.3940551786079 0 \N \N f 622772093 \N 6 129950918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 434695 2025-03-12 07:03:48.385 2025-03-29 22:39:46.791 Loving the ghosts 👻 SN is just the best. \N \N 20683 \N 434695 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 11.9120573600766 0 \N \N f 181566907 \N 1 151034970 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:56:09.024 f \N \N \N 0 0 0 0 1 0 0 458015 2025-03-28 21:32:19.543 2025-03-29 22:39:47.087 Views on religion So [twitter asked me](https://twitter.com/jessicahodlr/status/1781687769263173793) *"[if you] don’t believe in God, why?"*. And oh well, it may be the right time to ruffle some feathers and I think the SN community may be able to handle it. \n\n**Please do NOT read this thread if you may get triggered by opinions or views about religion that you disagree with. Below I share my personal views that are very specific and big majority of you will disagree with them.**\n\nI come from a very atheist country where no one I know is religious. It just doesn't come up as a topic. I mean, we learn about all religions at school, we had to read portions of the Quran, Bible, Greek mythology, Tripitaka, Bhagavad Gita, etc and compare the stories in exams...\n\nGreek are the most entertaining and human-like, Buddhism is the most chill (but too much text). Abrahamic religions are too self-centered and argue about the smallest things. But overall the stories are very similar, with some technical differences. \n\nAlmost all religions have some form of 10 step plan to be better, while bad things happen if you don't. All have stories where the hero did good and was rewarded and other stories where the hero also did good and was not rewarded. This then shows you that life can suck and be random no matter how hard you try - but you should try your hardest anyway. I think that's a good lesson. \n\nAt the same time I believe that\n- the various holy books are distillation of humanity and morality, so there is a lot to learn from\n- the characters in the books are based on real folks, but sometimes mashed up\n- religion can play community building role (e.g. Sunday church)\n- good priest can replace therapists/psychologists \n- meditation/praying physically changes your brain, reduces stress, etc\n- for many people believing in God can help them grow, get them off the street, etc\n- religion doesn't play well with communism (and this will cause some stress to folks in the US soon...)\n- before-covid Jordan Peterson was good, after-covid Jordan Peterson lost himself in symbols \n\nI more enjoy the smaller/pagan religions that focus on being thankful, appreciating Earth, appreciating nature, animals and other people. For example, I spent some time with Quechua and Aymara folks and they have Pachamama as the goddess that represents Earth and it was very inspiring to see the deep relationship they have with her. \n\nLast note - in some countries the kids get Christmas presents not from Santa Claus, but from "baby Jesus". So then at some point you have to tell the kids that baby Jesus doesn't exist and it was the parents bringing the gifts the whole time. \n\nThink about that. \N 4989 \N 458015 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 11.290386509605 0 \N \N f 111625289 \N 3 212349936 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437670 2025-03-14 18:30:38.523 2025-03-29 22:39:47.087 🤔 Help Build Bitcoin Search V2! We're building a new version of [Bitcoin Search](https://bitcoinsearch.xyz/). \n\n**We'd love your input on the product** in the spirit of building out loud (and following good product practice). It's very easy!\n\n# **Instructions**\nYou'll notice two versions of a few sections: \n- Landing page above the scroll\n\t- [Version A](https://drive.google.com/file/d/1OBadHQFL2HenGeR64ke6GvwD5R-elAC0/view?usp=sharing)\n\t- [Version B](https://drive.google.com/file/d/1soP0PuhYiSYl11qeGuoaQnyH7vJiBWlA/view?usp=sharing)\n- Explore\n\t- [Version A](https://drive.google.com/file/d/1q9J7oSLg1PGBkxNBLC3jBnB4RD26kkf7/view?usp=sharing) where everything is on the landing page\n\t- [Version B](https://drive.google.com/file/d/1Vx09UphvvGwDylZCHbndmkqHT2dQO1sz/view?usp=sharing) is on the landing page. The "Explore more" button on the bottom goes to a [separate page here (sources)](https://drive.google.com/file/d/1H2cfvYvaUHAgxaZzbdYU-SuCA_--MR6X/view?usp=sharing) or [here (authors)](https://drive.google.com/file/d/1bMBuI7wtqiG2ZU5zxQTPYndsbmGKXvZx/view?usp=sharing). \n- Benefits\n\t- [Version A](https://drive.google.com/file/d/1e2A41E0b-kPeU8oN95TPtQbhRlikHAlk/view?usp=sharing)\n\t- [Version B](https://drive.google.com/file/d/19Q-R5wyzZ8c81lpLNIF9eyPEOGRfUj5c/view?usp=sharing)\n\nThere's a few elements\n- [Footer](https://drive.google.com/file/d/1-9VMVTFq59itvV7zuq4v3K9c_gEw8HI2/view?usp=sharing)\n- [Search bar drop down](https://drive.google.com/file/d/1nhF37OizNLEUElKOT8ra1C53LXpFRkFm/view?usp=sharing)\n\nAnd the overall search page itself\n- [Unfiltered](https://drive.google.com/file/d/1U7XP4SSYz8E9HyC1mIJ9F8VV9HG7Uygr/view?usp=sharing)\n- [Filtered](https://drive.google.com/file/d/1JsD9fAfYtlZzzP9Enz3C1JFI3TadhMYq/view?usp=sharing)\n\n# **Feedback Template**\nYou can copy-paste this template with your feedback. \n\nAbove the scroll\n- I prefer version ... because ....\n\nExplore section/ page\n- I prefer version .... because... \n\nBenefits section\n- I prefer version ... because ...\n\nElements:\n- Footer: \n\t- One thing i like/ dislike about the footer is...\n- Searchbar dropdown\n\t- One thing i like/ dislike about the dropdown is...\n\nSearch page\n- One thing i like/dislike about the search page is...\n\nOverall:\nMy favorite part of what I saw was...\n\nOne thing I hope you change this one thing in the final product: ...\n\nA question I still have is...\n\n# **If you prefer to give verbal feedback**\nIf instead you'd like to participate in a 30 min user interview (no video of you + not recorded), feel free to sign up [here](https://cryptpad.fr/form/#/2/form/view/uwWx0ehGzMXrbrLStR+fyGHEDG1RLsFE1jytnq4s0Fw/)\n\nBuilt with 💛 by the [Bitcoin Dev Project](https://bitcoindevs.xyz/) \N 19952 \N 437670 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.0644182160261 0 \N \N f 61355948 \N 2 5027771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408520 2025-02-18 21:15:52.337 2025-03-29 22:39:47.088 I bet you did not know these things about Bitwage Any person can get paid in Bitcoin, regardless of who they work for.\nAirbnb, Youtube ads, 9-5 job, remote work, government check, Upwork, Fiverr, etc.\nWho you work for or who is paying you, does not matter.\nNo permissions need as they do payments normally, while you get any percentage as Bitcoin, and the rest is sent to a banking account as a local deposit. \nYou set your own distribution.\n\n\nSo why us, why Bitwage?!\n\n== INDIVIDUALS ==\n-We are global\n-Accepting USD, EUR, GBP & CAD as inputs\n-No limits on the number/size of the tx\n-Fully non-custodial\n-We send it to any wallet\n-No miner fees to get the funds\n-Focused exclusively on the payroll since 2014.\n-Funds in multiple wallets sent at once\n-We are not a bank\n-More private than custodial systems\n-Unable to do fractional reserve or make money off your balances\n-Your employer does not have to be registered\n\n== COMPANIES ==\n-Use us to pay salaries internally based on everyone's distribution\n-Invoice other companies\n-Fund salaries with Bitcoin, or a mix of BTC, stablecoins, and fiat\n-Run payroll without having bank accounts at all\n-Automation\n-No overhead\n-Reporting tools\n-Easier salary accounting \n-Payroll Integrations With 23 US Payroll Providers\n-If your employer is onboarded, you do not have to do KYC \N 5520 \N 408520 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 4.78445780806464 0 \N \N f 334619953 \N 2 44085448 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430919 2025-03-09 14:09:16.834 2025-03-29 22:39:47.089 Ledger is offering an ID-based key recovery service Hardware wallet manufacturer Ledger is publishing a new firmware update. The update introduces a recovery feature that allows Ledger to back up seed phrases. \n\nTo use the new service users have to send a picture of a government-issued ID.\n\n![Ledger](https://i.postimg.cc/gjcqnCdt/IMG-4245.jpg)\n\nWTF are you doing Ledger?\n\nFolks NEVER EVER let a 3rd party store your privat key. And don’t use a hardware wallet who offer such services.\n\nNOT YOUR KEYS, NOT YOUR BITCOIN. \N 15577 \N 430919 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.7878543112235 0 \N \N f 42194476 \N 1 175783317 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423743 2025-03-03 15:10:02.085 2025-03-29 22:39:47.089 P2P trading etiquette True peer-to-peer Bitcoin trading is great, it's legal, it preserves privacy, you don't have to pay any fees, and sometimes you even make friends. Do you buy and sell Bitcoin peer-to-peer, in person, maybe even for cash?\nWhat's something you consider P2P etiquette? What's something you wish more people did or knew?\n\nI'll start:\n- I always meet in person, and will only transact Bitcoin and cash. I have to be very clear about that, because it already happened that people showed up in person, expecting me to take their wire transfer.\n- Great places to meet are libraries (if you and your peer are able to converse with a soft voice), hotel, bank or post lobbies. Bitcoin meetups can be the ideal place if you haven't transacted much P2P before.\n- I will make it clear in advance what reference exchange rate I typically use, e.g. the Kraken pair for my local currency\n- I don't accept or charge any markup or discount to the reference rate, but I do expect whoever is making the Bitcoin transaction to pay their network/routing fees\n- Lightning very much preferred! I don't want to sit around for an hour waiting for a block to be mined. I understand that especially for large amounts, this might not be practical\n- I haven't quite worked out the exact flow, but so far it seems to be most appropriate for the buyer to show they brought the cash, then share their Bitcoin address/LN invoice, then for both to agree on an exchange rate, then for the money to be counted and then for the Bitcoin transaction to be made. Once the Bitcoin transaction has been confirmed/completed, the seller takes the cash off the table.\n- There's no safe way to advertise these deals, and I don't think there will be. So offers and bids are likely made in your local groups's Telegram chat room, or the local Bitcoin meetup. It's always worth to ask at the end of the trade if they would like to meet again. Most people are either consistently selling (for example because they're earning Bitcoin), or buying (because they're stacking or spending). Good to know who belongs to the other group than you! \N 9107 \N 423743 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.2299801871796 0 \N \N f 695233689 \N 6 196221276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 408779 2025-02-19 06:12:44.548 2025-03-29 22:39:47.09 We Are So Early - Finacial "Experts" Are Clueless Was watching a recent clip of Bloomberg Business and it occurred to me that I could just randomly pick a stacker on this site and they would have 10 times more knowledge about bitcoin that the people on the financial networks. Its not just that so many experts are wrong about bitcoin. Its that they do not even attempt to understand it. They don't know what they don't know yet. \n\nIn the coming weeks there are gonna be thousands of new "experts" trying to put themselves out there as authority figures. Get ready for a not of BS guys. Its gonna get deep real quick. \N 18393 \N 408779 \N \N \N \N \N \N \N \N security \N ACTIVE \N 16.1758094643991 0 \N \N f 150785117 \N 1 121016992 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 224718 2024-09-01 09:43:07.342 2025-03-29 22:39:46.792 Why hyperinflation may not speed up hyperbitcoinisation Yesterday I had a chat with a guy called Marco from Lebanon, a country which faced hyperinflation. His story helped change my mind about how hyperbitcoinisation might come about. I've always thought hyperinflation would be a huge catalyst for immediate Bitcoin adoption because people would be forced to look at other alternatives. But there were other factors I hadn't considered.\n\nFrom his experience, Marco saw two things happening during and after hyperinflation in his country:\n\n1. People were too busy trying to survive and thinking about what the immediate next steps were to save their families. They were in fight or flight mode. This is not the right mindset or situation to be in to learn and be receptive of a complex new topic. Learning about bitcoin takes a lot of work and people don't have the time, energy or resources to do that in a stressful situation. \n\n2. People have just lost their wealth. They don't have money to buy fuel to leave the country, food to feed their children, let alone the money to buy bitcoin. Let alone the ability to save their earnt Bitcoin. Let alone the ability to learn the relevant skills to be hired by a Bitcoin company to earn a paycheck in Bitcoin. \n\nAfter this conversation I felt less radical about cheering on the collapse of fiat. The reality of it is heartbreaking.\n\nOn a more positive note, we talked about what the catalysts for hyperbitcoinisation might be if not hyperinflation. We riffed about loss of trust in mainstream media and social media. We noticed more convos happening around building local communities or people of the same feather flocking together in small online groups. And these people are getting into Bitcoin because a trusted friend in that group has the patience to orange pill and has a vested interest in seeing their community thrive. \n\nTLDR; education from trusted sources seems to be a powerful, decentralized force towards hyperbitcoinisation. \n\nIt makes sense that the education of Bitcoin mirrors the decentralised nature of Bitcoin itself. It makes sense that a catalyst for Bitcoin adoption is fuelled by empowered individuals proactively making a difference and causing a positive ripple effect as opposed to cheering on the collapse of the old system which is completely out of our individual control.\n\n🧡 \N 8796 \N 224718 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.4775476168578 0 \N \N f 0 \N 0 65512749 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434263 2025-03-11 18:01:02.601 2025-03-29 22:39:47.088 Road-To-Suave Fabs / Part 3. Guess who's back from the dead? Me.\n\nI've had a rough last week, with the weekend being my absolute low-point in multiple ways, but I've managed to crawl back up on my feet, and am going surprisingly strong again already.\n\nAlright, I've managed to cross paths with the "third" girl on my little list - which is an *absolute banger* in terms of looks - and asked her out; The answer was as expected: "*I have a boyfriend*".\n\n"Okay" I said, and went back to my workout, but the way she said it was quite, well, uncomfortable: She had a totally blank / emotionless face, and answered like an absolute robot, it was so... Soulless. \n\nI don't know, that was a weird one.\n\nAnyways, after that, I kinda started gliding\ninto a negative though-spiral, maybe I was getting impatient (I'd describe me as such), and maybe I was getting a little frustrated with something, I'm still unsure what set it off, but it didn't do me good.\n\nThe weird thing, however, is that I've never had such big personal changes in such a short span! I even managed to complete my little "list" in a record-time!\n\nHonestly, if you'd have told me a month ago that I'd have asked out *4* very pretty girls (it's three now but stay tuned) within the span of *two weeks*, id have laughed you out HARD- add to that that I'm in the best physical shape I've ever been!\n\nNevertheless, I started gliding back into old habits and patterns, but managed to climb out the hole again at the right time.\n\nYesterday, though, was an interesting one: I went back to the gym again, but at a later-than-usual time. People came and went, and I was doing my thing, but then this girl came in and I instantly thought: "*yep, I'm gonna ask her, too*".\n\nI was eyeing her for a while, as it was very crowded and loud (that's why I usually never go that late) and kinda managed to "catch" her in the changing room as we were both done working out.\n\nTo my enormous surprise, I was *way* less nervous, and even a bit more playful!\n\nI went up to her, asked her if she had a boyfriend to which she said "*no*", which I followed-up by asking her if she'd be interested in meeting each other sometime. She ended up going back-and forth, "*yes, no, hm maybe, hm hmm*" while looking awkwardly into the mirror, to the left and the right, and ended with "*Hm, I don't know if I'm up for a relationship right now, sorry*" to which I replied "*Okay*", grabbed my bag, and left. 🥲\n\nIt's the fourth "No" in a row, but the main important thing is that she's a) single, b) not entirely uninterested (I think) and c) still unsure, so there's still a chance to win her over for a date, which I plan on trying by engaging her again in a playful way, but if that delivers a second "No", then I'll leave it at that. 😁\n\nAnyways, I felt very positive about me and the way it went, and I even found a €5,00 bill on the walkway on my way home, leaving me with the conviction that *just maybe* it's a little sign of the universe that things are going to take a turn for the better again! \n\nI'm curious as to what the results of my little "campaign" on her will be, I'll keep ya updated!\n\n- Soon-To-Be-Suave Fabs, out.\n\n\n\n\n \N 20768 \N 434263 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 10.0305472189649 0 \N \N f 290947091 \N 3 9421415 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 16:15:26.324 f \N \N \N 0 0 0 0 1 0 0 397082 2025-02-09 18:59:03.01 2025-03-29 22:39:47.089 Sunday Survey: What's your Bitcoin inheritance plan? \N \N 633 \N 397082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9922037865724 0 \N \N f 86649192 \N 1 45896895 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 173664 2024-05-22 01:50:49.729 2025-03-29 22:39:47.09 Route Blinding was merged! \N https://github.com/lightning/bolts/pull/765 17116 \N 173664 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.615885902194 0 \N \N f 185854309 \N 1 172136953 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 396641 2025-02-09 14:15:11.139 2025-03-29 22:39:47.091 Suggestions For Next Satsraiser I would like everyone's suggestions and input for the next Satsraiser. \n\nSo far, @grayruby suggested Open Sats at one point. \n\nI have been speaking to the man who runs Orphans Of Uganda. They just joined Stacker News this morning. I am impressed with the information I've gotten so far.\n\nPlease let me know about your favorite bitcoin projects. \N 19576 \N 396641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2621294693468 0 \N \N f 124584624 \N 1 28283454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422150 2025-03-02 09:46:46.074 2025-03-29 22:39:47.093 Announcing Strike Black \N https://strike.me/black/ 20970 \N 422150 \N \N \N \N \N \N \N \N news \N ACTIVE \N 21.0105448972551 0 \N \N f 107557335 \N 1 67515385 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441875 2025-03-18 10:49:09.78 2025-03-29 22:39:47.097 Dusty Daemon | Core Lightning dev & splicing implementer | AMA Hey I’m Dusty!\n\nI’m the first to implement and do splicing for the Lightning Network and also an independent contributor to Core Lightning as well as the lightning bolt spec.\n\nAsk me anything!\n\nYou could ask me about\n* How Lightning works\n* What working on the code is like\n* What splicing enables\n* How splicing works\n* Questions about splicing code\n* Questions about lightning code\n* The Lightning spec process\n* The status of the splicing spec\n* What’s left to do to finish splicing \N 4250 \N 441875 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4888778752448 0 \N \N f 100974221 \N 2 128715860 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 441238 2025-03-17 21:14:02.821 2025-03-29 22:39:47.098 Request for comments: improving our referral system Our current referral system sucks. I think we first introduced it a few years ago and haven't revisited it since. I'd like to improve it such that when someone is on the fence about sharing SN, they are reminded they can make good sats from it. \n\n### the current referral system\n\nCurrently, if you refer someone, either by them signing up with an [invite](https://stacker.news/invites) link or after visiting through a [referral](https://stacker.news/referrals/month) link, you get:\n\n- 21% of any boost or job fees that they pay\n- 2.1% of any zaps they receive\n\nThe problem with the system as is:\n\n1. few people use boost or job fees\n2. 2.1% of zaps for the average stacker isn't a whole lot\n3. we don't do a good job of making referrals or the earnings people get from them visible\n\n### a few random ideas we've discussed for a future referral system\n\n1. distribute some fixed portion of the daily rewards pool to referrers, e.g. 10-20%\n2. make a daily notification, similar to the rewards notification, for referrals which show how much you earned from referring for the day\n3. change the referral scheme to something new. e.g. if we're giving 20% of rewards to referrers: \n - allow people to accumulate multiple referrers, e.g.\n - 10% goes to stackers who referred someone for the first time *ever*, ie they are the permanent referrers for the stackers they brought to the site for the first time\n - the other 10% goes to stackers who referred an existing stacker to the site for the first time that *day* \n - make the referrer(s) of a stacker change every time they click a referrer link, i.e. a last referrer wins "game"\n4. make every link to SN a referrer link (@ek's idea)\n - every item page is implicitly a referral attributed to the OP of the item \n - every profile page is implicitly a referral attributed to the stacker featured on the profile page\n - every territory page is implicitly a referral attributed to the territory founder\n5. make the url bar display the stacker's referral link as they navigate through the site so that they don't have to make the referral link by hand or click the share button, i.e. make it easier to make a referral link than not\n\n### what do you want?\n\nStackers often have a way better mind for what SN needs than we do. SN is mostly a collection of ideas you all have had that we've implemented. Consider this a brainstorm where there is no wrong idea, and the more wild an crazy the better. Do you have any fun ideas for referrals? \N 20891 \N 441238 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 16.7070215787808 0 \N \N f 948420206 \N 8 68353008 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 436231 2025-03-13 12:04:57.826 2025-03-29 22:39:47.099 Will fedimint send shitcoinery six feet under? 💀⚡ Alright, cowboys, cowgirls and SN fellas,  today, let's ponder over bitcoin, federated ecash, and those pesky alts, just some wacky theories about how fedimint could shake up the crypto space beyond our beloved bitcoin – you know, those laughable altcoins, or as we like to call them, shitcoins.\nhttps://media.tenor.com/6VqSmYVOyekAAAAM/family-guy-caillou.gif\nYou've got these future altcoin CEOs, right? They're like kids in a candy store, except instead of candy, they're eyeing fedimint like it's the last slice of pizza at a bitcoin pizza party. They're all like, "Hey, I wanna be part of the cool bitcoin crew too!" But little do they know, they've been munching on shitcoins this whole time, thinking it was gourmet pizza. It's like trying to pass off a counterfeit Monet as the real deal at an art auction – someone's bound to call you out eventually.\n\nAnd then you've got these shitcoin holders who are starting to feel like they've been stuck in a never-ending episode of Groundhog Day. They're like, "Wait a minute, this altcoin rollercoaster is making me dizzy, and not in a good way." So, they're eyeing bitcoin like it's a sturdy life raft in a sea of sinking shitcoins. It's like realizing that your grandma's homemade apple pie is way better than that store-bought cardboard crust you've been eating all this time.\nhttps://media1.tenor.com/m/7hqsaJYmGqwAAAAC/fathers-day-fart.gif\nBut hold on, it's not just the CEOs and holders feeling the heat – even the workers in the shitcoin factories are starting to question their life choices. They're like, "Hey, maybe I should switch to the fedimint factory instead of cranking out these subpar shitcoins all day." It's like realizing that you've been banging your head against a brick wall when there's a perfectly good door right next to you.\n\nSo, yeah, the writing's on the wall, folks, altcoins are starting to look like yesterday's news, and fedimint is stepping up to the plate like the fresh-faced rookie ready to take on the big leagues. It's like watching the underdog team come out of nowhere to win the championship – you didn't see it coming, but boy, does it feel good when it happens. So let's strap in, stackers, because the crypto rollercoaster is about to get even wilder. \n\nThanks for reading, sat! \N 7760 \N 436231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52998196012997 0 \N \N f 578743981 \N 4 195171642 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:08:41.977 f \N \N \N 0 0 0 0 4 0 0 454669 2025-03-26 14:48:42.024 2025-03-29 22:39:47.084 I created an open-source Blockclock clone, you can build it for ±70 USD \N https://github.com/dsbaars/btclock 15115 \N 454669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4587441330616 0 \N \N f 0 \N 0 121956807 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 420635 2025-02-28 22:02:22.93 2025-03-29 22:39:47.088 Using Graphene without a SIM for 4 years In May of 2020 after the "just two weeks" had already passed and it was becoming clear that Covid Mania was here to stay, I decided to cancel my phone service, cut my SIM card into pieces, and install GrapheneOS on my primary phone.\n\nSound extreme? Let me explain.\n\n## Unreasonable Search (early-2020)\n\nA few months before ditching the SIM, back when we were still commuting to the the office, I recall one of my co-workers was absent one Monday morning. They explained to management that they had received a call on Sunday from the CDC (or some other alphabet agency). The agent explained that they had been to a restaurant on Friday where someone tested positive for COVID and they were asked to self-quarantine for 2-weeks.\n\nIf I recall correctly, this happened BEFORE contact tracing was rolled out to all the phones. In an unprecedented move, Apple and Google implemented a protocol standard that works on both iPhone and Android. The feature was called "Contact Tracing" and it would make your phone snitch on you and others using phones bluetooth and WiFi and sending that data to... who knows? At the time, GrapheneOS was being recommended by privacy-aware bitcoiners who also were worried about Contact Tracing.\n\nWith my co-worker's experience in mind. I imagined things might get way worse. What if lockdowns are enforced and breaking curfew was a punishable crime?\n\nMy favorite boba tea shop just told me I need to wear a mask to order a tea to-go. That was the final straw. The world was already going insane and the insanity was on my doorstep. So the decision to flash Graphene was a no-brainer. I needed to opt out as much as possible to avoid getting caught in the crossfire of this insanity.\n\n## Using Graphene (2020-2021)\n\nGraphene felt like an objective downgrade in user experience at the time. I missed all my favorite features, like using voice to navigate Google Maps. Or backing up everything to Google Photos. But I wasn't taking many photos or driving a whole lot back then.\n\nAs the covid mania began to relax somewhat in 2021-2022, I had already gotten used to the new lifestyle. I got really good at learning which fast food chains, or franchise stores have FREE WiFi. When I am out of the house, I am dependent on these WiFi oasis for communications.\n\n## SIM-less \n\nThe SIM card is the primary method used to track and trace your whereabouts. Law enforcement and various agencies have easy access to this data in the USA because they have backdoors to every cellular provider's network. By removing the SIM, I was opting out of this means of track and trace. I wasn't doing anything illegal. I simply did not want to participate in any "Emergency Response and Public Safety" measures.\n\nOther benefits of going SIM-less:\n- No geo-fencing or location-based marketing targeted to me (I have also worked really hard for years to completely eliminate all advertising from my life, but thats a post for another day)\n- No emergency Amber Alert or Flash Flood warnings (I think you can turn this off manually even if you still have a SIM)\n- No spam callers to interrupt me\n- No random calls from friends/family to interrupt me (they now know that I respond to text only. If you want to chat with me, schedule a call)\n- I never have to worry about SIM swap attacks\n- I have saved millions of sats by not having a phone bill\n\n## A second "Normie Phone" (2022)\n\nAt about this point I decided that I really do NEED some features that Graphene simply won't let me do (for good reason). I bought a second phone and kept the stock spyware installed. However, this "normie phone" is more like a crutch than an everyday-carry device. It lets me do mobile banking (my bank apps require Google Services) so I can upload photos of checks to deposit them. \n\nThe normie phone also let's me order food using the apps so I don't have to explain my highly customized order everytime. Also, I find that when you order custom menu items using the apps, they're more likely to NOT screw up your order. The food apps also let you stack rewards/loyalty points, etc. Many of these apps also require Google Services.\n\nI almost never travel with the normie phone. It spends most of the time on my desk, connected to WiFi. \n\n## GPS-less\n\nMany people think you need a SIM to use GPS. This is false, GPS works even without a SIM card. And GPS can be used to track you too!\n\nI was using GPS on my graphene phone, but now that I have a normie phone, GPS is disabled on Graphene. Sure, its probably still trackable by Law Enforcement, but GPS is at least a little bit more difficult for advertisers and other public-safety agencies to use to track you.\n\nSince my normie phone has GPS, I just use it when I need to. Although, I would also recommend getting a dedicated GPS for your car. I don't need GPS that much (I've gotten better at reading highway signs and navigation without assistance in general)\n\n## Self-hosting your Data\n\nSince my graphene phone is my everyday carry, it's also my primary camera. If I want to backup my photos, I need to implement a backup service. I use Immich on Umbrel. It feels a lot like Google Photos and completely self-hosted on my server.\n\nUsing graphene means you can't use a lot of cloud services. So this nudged me to self-host my data even more.\n\n## Never Going Back (2023)\n\nBy this point, Covid mania has subsided, and the authoritarian response didn't get as bad as I had imagined when I decided to install Graphene. But I'm still rocking a SIM-less graphene. Our right to privacy (and unreasonable search) is still under attack and opting out as much as possible is a lifestyle choice I continue to make everyday. \n\n## Life After SIM (2024-now)\n\nGoing SIM-less still feels like a sacrifice -- especially when out of the house. I can't call for emergencies. I can't even send a low-bandwidth chat message unless I'm connected to some public WiFi.\n\nMany public WiFi options now require accounts and password authentication, increasing the friction to get connected while out-and-about.\n\nI'm also highly dependent on friend's hotspot, or even strangers if I'm desperate enough. Would you let a stranger borrow your phone to make a call?\n\nThis sucks. And most people are happy paying $20-120/mo for the privilege of using a SIM, even if they are being tracked and constantly interrupted by calls and occasionally SIM-swapped. So there isn't much economic pressure to change the status quo.\n\nI'm hopeful for distributed mesh technology (like LoRa). And I'm hopeful that more people will opt out of SIMs for privacy/security reasons so the market for SIM-less mobile communications can grow large enough to sustain a viable alternative to SIMs. \N 672 \N 420635 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.663316086479924 0 \N \N f 1025592770 \N 7 59931154 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433740 2025-03-11 11:01:17.741 2025-03-29 22:39:47.088 BitStream: Decentralized File Hosting Incentivized via Bitcoin Payments \N https://robinlinus.com/bitstream.pdf 16410 \N 433740 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 5.63332930133868 0 \N \N f 842061513 \N 5 133962226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 22:31:55.058 f \N \N \N 0 0 0 0 2 0 0 2828 2022-10-20 07:53:56.13 2025-03-29 22:39:47.089 What does it mean for SN to flourish? I've been thinking about what it means for a community to flourish. It's a deep topic, probably infinitely deep. In my experience, though, it seems minimally considered by the people who are part of a community -- like most things, I guess, the default is to show up at the bar or the cafe or the restaurant, enjoy the vibe, and not think too much what it is, exactly, that you're enjoying. Maybe in certain particulars (_they have the best local beer_) but in the aggregate? It usually goes unexamined.\n\nIn SN terms, there's been some recent sturm und drang around territories, and are they the worst or are they great, and are they even [sustainable](https://stacker.news/items/412066), and [what is their value, actually](https://stacker.news/items/412759). And earlier discussions about how durable interactions here should be -- should they [last forever, or disappear like fruit flies?](https://stacker.news/items/331942) People have written [impressive long-form works](https://stacker.news/items/326364) about a [variety of topics](https://stacker.news/items/281307) and some interesting [meta-roundups](https://stacker.news/items/399635) and even [poetry](https://stacker.news/items/414472) and [quasi-biography](https://stacker.news/items/417967) and [real-time experiments in human resourcing](https://stacker.news/items/416127/r/elvismercury?commentId=417669). \n\nAnyway, point is, SN is eclectic and interesting in a bunch of ways. To me, these are key elements of what it means to flourish, and it's so exciting to be a part of it! But I know other people have quite distinct opinions about what a functional definition ought to be, either in general for an online community, or for SN in particular. \n\n(And somebody, way back when I was first here, even disputed whether it was a community at all -- to him, it was just a news site, and so [it was no bigs if someone figured out how to drain the wallet](https://stacker.news/items/218348/r/elvismercury?commentId=218496). I guess I've been rolling this question around in my mind ever since then.)\n\nAnyway, would be interested in diverse perspectives on this. I asked @k00b a [quite similar question](https://stacker.news/items/254594) a long time ago, but this is for everyone: what would it mean, to you, for SN to be flourishing? If you came back in a year, what would you see if it were? \N 18557 \N 2828 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.4096245237481 0 \N \N f 179428357 \N 2 194619418 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454863 2025-03-26 15:58:58.924 2025-03-29 22:39:47.09 Writing Contest #2 It’s time for our second writing contest. This will be a pinned post. Submit your entries by replying. The contest will end at midnight, GMT, Friday, February 23rd. A winner will be announced in next Saturday’s newsletter. The winner will be zapped all of the sats generated by this post, which will be pinned here until Friday, and obtain the priceless glory of winning the Books and Articles Writing Contest. There are a few additional rules this week. We will not accept links to articles posted previously on Stacker News or on other sites as submissions to this contest. Submissions cannot be longer than what can be accomodated by the Stacker News current reply character limit, which is 10,000.\n\nPrompt: Discuss how your personal experience has shaped or changed your political beliefs. \n\nRules: I will use zaps in selecting a winner, unless I notice any suspicious activity. In that event, I will give weight to the quality of the content and the opinions of the community expressed through comments. \n\nGood luck! \N 7673 \N 454863 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.99529666204013 0 \N \N f 865140386 \N 5 227106388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 395180 2025-02-08 05:06:47.26 2025-03-29 22:39:47.091 What conventional wisdom does Bitcoin break? "You get what you pay for"\n\nThis phrase currently exists in a paradigm defined by ever-increasing prices, creating the false illusion that:\n\nmore expensive = better\n\nBut how does this phrase still hold its weight on a Bitcoin standard? From a broader perspective, with ever-decreasing prices, how will we dictate quality as nicer and nicer things become increasingly attainable? \n\nWhat's exciting to think about with Bitcoin is that with hyperbitcoinization, manufacturers of all sorts of goods will eventually be disincentivized to produce "cheap" or "bad quality" stuff. \n\nSure there will always be ranges of quality in products, but for example, let me invoke seed oils for a moment.\n\nThe main reason why 90% of grocery store food contains them: $$$. Very cheap to produce, and it "works". On a Bitcoin standard, however, and with enough time, better quality items should eventually become cheap enough to disincentivize the market from producing shitty seed oil products in the first place. I'm not saying that junk food will phase out of existence, but psychologically, we'll do a better job of recognizing it as that, and the market will shift accordingly. \n\nAm I crazy here? Do you agree?\n\nWhat other conventional wisdom goes out the door thanks to Bitcoin? \N 19777 \N 395180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.0588385558134 0 \N \N f 122580571 \N 1 203749806 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437642 2025-03-14 17:40:39.787 2025-03-29 22:39:47.092 Trust is a scaling solution \N https://trustisascalingsolution.com/ 1567 \N 437642 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 10.5153619330753 0 \N \N f 262678520 \N 3 124776568 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 424355 2025-03-04 02:29:22.19 2025-03-29 22:39:47.094 SN release: we do it because it's hard In pursuit of our [wallet plans](https://stacker.news/items/523435/r/k00b), we just released the first stage of about three stages to that end. The changes likely won't be apparent to most using the custodial wallet, but should be a noticeable improvement to those using attached wallets for paying. We rewrote much of the code for paid things to be well suited to, and mindful of, non-custodial payments. \n\nThe most significant bits for non-custodial payers as of yet:\n- when your payments for zaps and posts and comments are pending, your experience is nearly identical to a custodial experience\n- we remember when you try to pay for things and they fail (so your work is not lost if the payment fails after you left the site)\n- we notify you when paying for things fails\n- failed payments can be retried until they succeed\n\nIt probably doesn't sound like a whole lot, especially if you're using the custodial wallet, but there's a lot going on technically to make this happen. Given how significant the changes were, and despite us reviewing and testing the heck out of the code, you may encounter bugs we didn't catch (@ek just reported some stuff with push notifications). Please let us know!\n\n#### other things\n- peertube embeds for bitcointv.com and peertube.tv by @t0m \n- You can now use `subscript`subscript and `superscript`superscript by @nichro and requested by @Murch\n- small bug fixes\n\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 7.6m sats to 24 contributors for 114 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/560966\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924)\n \N 8998 \N 424355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6496280625552 0 \N \N f 101681253 \N 1 125960028 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402228 2025-02-13 16:11:50.751 2025-03-29 22:39:47.096 Bitcoin Mining Industry Introduction \nThanks @clarksoucy for the presentation, waiting for you to join SN and send you some sats.\n**This was part of the last meetup held at BoBspace in BKK last Wed.** Are you in Bangkok? [Join us next Wed!](https://www.meetup.com/bob-space-community-events/)\n\n- - - \n![01.png](https://m.stacker.news/22579)\n\n### 2013: 1st Gen Mining Machines Arrive\n* Mining was done on home computers until 2013.\n* The first mining machines were designed and shipped by Zhang Nangeng (Canaan) and Zhan Ketuan & Wu Jihan (Bitmain) in Beijing in 2013.\n* The total network computing power (Hashrate) is measured in Exahash or quintillions of hashes per second. Bitcoin price and Hashrate have generally increased in tandem as a higher price incentivizes miners do deploy more mining machines.\n\n![02.png](https://m.stacker.news/22580)\n\n### Major Players Emerge\n* Bitcoin mining computers (application specific integrated circuits - ASICs) is the sole segment of the global semiconductor industry that is dominated by Chinese companies. These companies design chips along the latest nodes and then outsource production to Samsung & TSMC.\n* Bitdeer, led by a cofounder of Bitmain, Wu Jihan, is the newest entrant to the market.\n* Intel already scrapped nascent ASIC business.\n* Joules Per Terahash* (J/TH) as a measure of machine efficiency (lower is better)\n* Leading machines from Bitmain/MicroBT are ~16-18.\n* Canaan is 21.5\n* Bitdeer recently announced 18, will ship in August 2024.\n\n### 2017-2018: Rapid Growth in ASIC Sales\n* Bitmain and Canaan both applied around the same time to go public on the Hong Kong Stock Exchange in 2018.\n* Zhan & Wu court institutional investors (Sequoia and others) and grow much faster than Canaan.\n* First 6 Months 2018 Financials:\n* Bitmain Revenue: $2.8B USD (10X yoy)\n* Bitmain Net Profit: $742M USD\n* Canaan Revenue: ~$292M USD\n* Canaan Net Profit: ~$30M USD\n* Canaan’s total revenue in 2022 was $651M USD, so Bitmain’s scale today is probably larger than in 2018.\n\n### ASIC Sales Business Model\n• ASIC manufacturers prepay for wafers 5-6 months in advance, so they must estimate future demand.\n• ASIC demand is not entirely correlated with the Bitcoin price; it is also influenced by inventory levels of new and used machines, mining farm availability, and miner cash balances.\n• ASIC sales are highly profitable during bull markets, but some ASIC manufacturers (Canaan) sold below cost during the last bear market.\n• Mining is a highly capital intensive business and miners normally replace their machines every 2-3 years, depending on their power costs and profitability.\n![03.png](https://m.stacker.news/22581)\n\n### Where is Bitcoin Mined?\n* Mining used to be very concentrated in China due to low power costs.\n* Neither mining nor machine sales are banned in China, instead mining was described as an undesirable industry that shouldn’t be expanded by government circulars in 2021.\n* After China’s circulars, mining migrated worldwide, but the USA has probably become number one by deployed machines and has the most publicly listed miners. Other major markets for major private miners now include Central Asia, Southeast Asia, The Middle East, and South America. Precise location data is not possible to ascertain.\n* Most major miners are looking for $0.05 cent per kilowatt hour or cheaper power.\n* Some miners are using artificially cheap power.\n\n### There Are Multiple Mining Business Models\n* Besides mining for themselves, some miners host others’ machines for a fee in their data centers to diversify revenue.\n* Leveraging cloud mining, where machines are leased at a fixed price for a set term to a customer who directly receives the Bitcoin produced by said machines, BitFuFu was one of the only miners to have positive net income during the 2023 bear market[^1].\n* Most miners hold most of the Bitcoin they mine, but some like Bitdeer and Iris Energy liquidate all or most of it immediately.\n* Impact of change in FASB rules on net income of miners due to fair value accounting may be problem for miners as gains in the value of the Bitcoin they hold will be added to net income.\n\n### Bitcoin Mining Stocks & Public Capital Markets\nInvestors choose Bitcoin mining stocks because they have operational leverage on the Bitcoin price due to relatively fixed costs for power. As the Bitcoin price increases, so do miner margins.\n\n![04.png](https://m.stacker.news/22582)\n\n### Serious Dilution from ATMs and Convertibles\nMany public miners are currently using equity issuance to order new machines and pay expenses. In the past cycle some felt compelled to sell Bitcoin or raise financing at difficult times with onerous, expensive terms.\n\n![05.png](https://m.stacker.news/22592)\n\n### Valuation Metrics - Market Capitalization\n\n![07.png](https://m.stacker.news/22591)\n\n### Valuation Metrics - Rank Miners By Capacity\n\nMarathon, Bitdeer, Hut 8, and Core have the highest capacity, but with the exception of Marathon they have large hosting businesses and in Bitdeer’s case, cloud mining operations. Core recently emerged from bankruptcy.\n\n![08.png](https://m.stacker.news/22590)\n\n### The Cost To Mine\n* Integration with power grids lowers costs (Riot demand response arrangement with Texas grid operator).\n* Vertical integration, whereby miners control their own mining data centers, versus paying others to host their machines, is a key strategic question due to the higher cost of relying on hosting.\n* Marathon, long mostly reliant on hosting, has been investing in vertical integration to lessen reliance on hosting partners and reduce costs.\n\n![09.png](https://m.stacker.news/22589)\n\n### Valuation Metrics - Revenue Multiples\n* Low cost to mine, vertical integration, and cooperation with grid operators lead to higher valuations.\n* Debt burdens at Core, Stronghold, Terawulf.\n* Lack of large institutional shareholders across the sector absent sector ETFs.\n\n![10.png](https://m.stacker.news/22588)\n\n### Valuation Metrics - The Hosting Discount\nMiners that engage in hosting and cloud mining have these operations valued lower by the markets. Pure play proprietary miners (Riot & Marathon, & Cleanspark) continue to enjoy valuation premiums.\n\n![11.png](https://m.stacker.news/22587)\n\n### Valuation Metrics - Bitcoin Held\nThe average miner is valued at 7.2X the value of it’s Bitcoin holdings, but there are serious divergences and the multiple will probably contract in the future.\n\n![12.png](https://m.stacker.news/22586)\n\n### Valuation Metrics - Projected Mining Results\nRiot sold 57% of the Bitcoin it mined in the five fiscal years through 2023. Adding Bitcoin held to future mining projection is one possible valuation multiple for listed miners, after deducting Bitcoin sold to pay for costs\n\n![14.png](https://m.stacker.news/22585)\nPresume 25% transaction fee and 700 EH Total Network Hashrate After Halving and disclosed miner capacity expansion through 2025.\n\n### Conclusion: Mining is Diverging Between Two\nCompeting Strategic Models\n* Industry leaders are choosing two distinct strategies:\n* 1. Pure play proprietary mining (Marathon & Riot & Cleanspark)\n* 2. Diversified mining operations that mix proprietary mining with cloud mining (BitFuFu), hosting (Hut8), and also ASIC sales and AI data centers (Bitdeer).\n* Mining is a low barrier to entry arms race. The miners with the lowest cost of capital, electricity, and greatest capacity will pull ahead over the long term. But how to finance expansion? Sell Bitcoin or sell shares or take on debt? Or use hosting, cloud mining, and ASIC sales to cross subsidize operations?\n* Expect continued emphasis on vertical integration and cooperation with power grids to lower mining cost.\n\n![13.png](https://m.stacker.news/22584)\n\n\n[^1]: Six months 2023, updated figures not yet available as FUFU just went public \N 21455 \N 402228 \N \N \N \N \N \N \N \N A_bit_of_Good_News \N ACTIVE \N 26.1555635885861 0 \N \N f 398447444 \N 2 9848501 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 298804 2024-11-17 14:49:47.23 2025-03-29 22:39:47.096 The Bitcoin Situation in Singapore Singapore seems to top the rankings in several crypto surveys, thus establishing itself as a crypto hub. But just how is the Bitcoin situation over here? I write this for @chungkingexpress who asked me this question before as well as @Bitcoin_Bootcamp who spent time researching on the Bitcoin situation in Germany (https://stacker.news/items/396409)\n\nOur narrative: speculative asset\nNot just Bitcoin, our central bank, the Monetary Authority of Singapore (MAS), discourages investing in cryptocurrencies in general as they are viewed as speculative assets. Whether it is merely reflecting the sentiments of the general public or actively dissuading Singaporeans from dabbling in crypto to maintain its stronghold on currency depends on you. \n\nI do think that most Singaporeans who buy Bitcoin do so with the expectation that it will pump and yield big bucks in the future. Hence, our discussions have been centred on taking note of Bitcoin’s price volatility and diversification and making sure that we invest 5-10% of our portfolio value in crypto. I have never heard of The Bitcoin Standard - the idea that Bitcoin frees you from all institutional control and empowers you to take ownership of your finances - until I came here. Thank goodness I did.\n\nBecause Bitcoin is viewed with skepticism and suspicion, the MAS has come up with a few power moves. Firstly, all BTC ATMs were prohibited. Now I don’t necessarily want to buy my sats from an overpriced machine, but I think that the removal of such ATMs serves to deter my countrymen from getting to know Bitcoin and its benefits. We are a country which bans things deemed harmful to us (like cannabis), so I’m sure other Singaporeans will take their cue as such.\n\nAlso, we are not allowed to invest in the recently approved spot Bitcoin ETFs because of their perceived volatility.\n\nNonetheless, because we are a country which is pragmatic about making money, the MAS does allow banks to offer Bitcoin to their Rich clients. For example, In September 2022, DBS, Singapore’s largest bank allowed about 100,000 of its rich clients with investable assets of at least USD$246k to trade Bitcoin, Bitcoin Cash, Ether and XRP on its Digital Exchange. So, if you have deep pockets, you are more than welcome to tread the treacherous waters of Bitcoin.\n\nReal-world adoption\nDo I feel stifled by my country’s interference in our personal investing choices? Here’s the funny thing. Because Singapore positions itself as a crypto hub, things are still moving on the Bitcoin front.\n\nOn January 23 this year, a MAS-approved crypto payment firm Triple-A allowed its decision to collaborate with a bills payment platform called AXS. This partnership will allow Singaporeans to pay for a wide range bills, fines, taxes and student fees in Bitcoin! I guess the MAS has done its due diligence and decided that Triple-A won’t collapse and take our money along with it, lol.\n\nI would have never expected this to happen in my lifetime, so honestly I’m floored. It seems that if I’m strategic enough, I could acquire the Bitcoin Standard one day. \n\nOn the retail front, some enterprising businesses are accepting Bitcoin as a form of payment. We are represented on the Coinmap. But as you can see from this article (https://chaindebrief.com/buying-with-bitcoin-heres-8-stores-that-accept-cryptocurrency-payments/), most stores that accept Bitcoin are lifestyle and luxury shops that cater to the relatively more affluent Singaporeans. Nothing about your neighbourhood cafe accepting Bit on in exchange for a tiramisu cake. That may be because the Lightning Network has yet to take root here.\n\nIt’s my sincere hope that with AXS accepting Bitcoin, more shops and merchants will do likewise. You know, monkey see monkey do.\n\nWill just like to end this that this is my personal take on the Bitcoin situation in my country. Just my lens. Just my two sats’ worth\n \N 12562 \N 298804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.71557619171286 0 \N \N f 21557455 \N 1 61103589 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436556 2025-03-13 16:36:17.56 2025-03-29 22:39:47.087 Inside the failed attempt to backdoor SSH globally — that got caught by chance What happened here is now well documented elsewhere, so I shall not recap it much, but essentially somebody appears to have hijacked the open source XZ project by social engineering the volunteer developer into handing over maintainer access after they cited some mental health issues, used the package XZ Utils to piggy back into systemd loading liblzma, which in turn loaded XZ, allowing sshd to be hooked to trojan it on Linux distributions that use systemd.\n\nThe trojan allows somebody a private key to hijack sshd to execute commands, amongst other functions. It is highly advanced. https://doublepulsar.com/inside-the-failed-attempt-to-backdoor-ssh-globally-that-got-caught-by-chance-bbfe628fafdd 10611 \N 436556 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 1.26559872351535 0 \N \N f 532692631 \N 3 174312325 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 13:26:47.551 f \N \N \N 0 0 0 0 2 0 0 423468 2025-03-03 11:47:54.663 2025-03-29 22:39:47.088 Trying to understand what UTXOs are all about Finally had some time to bring myself up to speed on UTXOs. Still quite confused about them actually, so I’m sure my DYOR notes are fallible. Please point out my mistakes and lapses in my thinking:\n\nAbout UTXO\n\n1. UTXO refers to Unspent Transaction Outputs. It is an accounting method aimed to calculate the total balance in one’s wallet. In other words, your account balance is the sum of your UTXOs.\n\n2. It represents the amount of the Bitcoin that is left over after a transaction has been finalised. \n\n3. Operating on inputs and outputs, UTXO allows transactions to happen trustlessly. For instance, people can exchange non-fungible Ordinals for fungible Cardinals.\n\n4. Every transaction has a script - which denotes the conditions that must be met in order for a transaction to be validated - attached to it. Three factors are typically considered, namely privacy, computational efficiency and size.\n\n5. It is important to note that UTXOs are not divisible. This means that you send your entire UTXO to your recipient and receive your change back in the form of a new UTXO.\n\n6. The more UTXOs you have to send, the larger your transaction becomes and the more costly it consequently becomes to send.\n\n7. If you wish to carry out a CoinJoin so that your Bitcoin becomes untraceable, you have to move each UTXO you end up with individually - without mixing them - to a new unique address from your cold wallet.\n\n8. UTXO Dealership is a recent privacy tool that allows Bitcoin buyers who wish to safeguard their privacy an opportunity to buy history-free UTXOs from Bitcoin miners. (supertestnet.github.io/utxo-dealership/ ) Bitcoin miners consequently get higher returns for their newly mined UTXOs. It’s a win-win situation.\n \N 16270 \N 423468 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.4215540394244 0 \N \N f 621003199 \N 8 132576017 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 413892 2025-02-23 14:16:55.045 2025-03-29 22:39:47.09 Which brings more peace if it happens in the next 12 months? \N \N 12139 \N 413892 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 2.16030648034167 0 \N \N f 249377133 \N 2 192396558 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 233538 2024-09-10 20:12:30.914 2025-03-29 22:39:47.092 The Origins of Value 4 Value as Far as I Can Tell \nThe first time I heard the term value for value was on the [No Agenda podcast](https://www.noagendashow.net/) many years ago. For those that aren't familiar with this show its hosts Adam Curry (one of the creators of podcasting) and John C. Dvorak deconstruct the news twice a week. It was probably around 2008 though I'm not certain about when I started listening to the show. Adam Curry was talking about Atlas Shrugged quite a bit at that time and I recall him referring to Rand's use of the term _value for value_. I wasn't very familiar with Rand or the much maligned book. A few years later I read the book. It made me think in different ways about several topics. This is always the sign of a good book. I've included a couple excerpts from the book where she refers to _value for value_.\n\n> I had always thought that one did not beg in business. I thought that one stood on the merit of what one had to offer, and gave value for value.\n\n> You did not care to compete in terms of intelligence— you are now competing in terms of brutality. You did not care to allow rewards to be won by successful production— you are now running a race in which rewards are won by successful plunder. You called it selfish and cruel that men should trade value for value— you have now established an unselfish society where they trade extortion for extortion. Your system is a legal civil war, where men gang up on one another and struggle for possession of the law, which they use as a club over rivals, till another gang wrests it from their clutch and clubs them with it in their turn, all of them clamoring protestations of service to an unnamed public's unspecified good.\n\nIn essence, value for value is the voluntary exchange of value between individuals. Adam explained in the early days of the No Agenda how the value for value model works. During the podcast he would say something like this. What is the show worth to you? We (Adam and John) can't put a price tag on it for you. Contribute what you value you get from the show. People did just that. Some would contribute small amounts like $5 a show. Others would contribute well over $1000.\n\nOne of the key reasons for their use of this model vs. the ad model is independence from advertisers. Co-host John C Dvorak explained many times that advertisers wield influence over content. Over and over again John and Adam would discuss something in ways you would never hear in popular media. Advertisers would never allow it. John has a long career in media including writing for publications, hosting TV and radio shows, and podcasting. He explained how it works like this. A story comes across the desk of an editor. The story includes some information that could be related to a sponsor. It might not even be a direct connection but the editor kills the story or modifies it to make it less likely to offend the sponsor. This seems highly plausible to me. Self censorship in essence. When you remove advertisers you don't get integrity but you do remove an influence. When you replace advertisers with value for value you shift the incentives.\n\nAnother key aspect of No Agenda's value for value model are producers. No Agenda has producers. What makes you a producer? You contribute value to the show. Again, value for value. That value might be in the form of money or it might be in clips of content that are used in the show. Others create jingles. Some share news articles. One of my favorite contributions are the many producers that write about their experiences in their fields of expertise.\n\nIn recent years Adam has talked about sharing value for value with a Christian pastor. He said the pastor replied. I hate to break it to you but the church has been doing value for value for centuries. That's true. Its not really a new idea. It isn't something Rand came up with. She put a name on something that probably dates back to the first humans. In bitcoin terms value for value is decentralized. When we express our gratitude directly we make our communities stronger. Value for value embodies freedom. Freedom for people to create and have no ceiling on the value they receive in return for their work.\n\nA few years after I started listening to No Agenda I noticed a few other podcasts using the value for value model. They asked for listeners to support their work. What was missing was a way to easily send value, especially small amounts. These shows tend to use things like Paypal or Patreon are central choke points and due to their fees make it impractical to exchange small amounts. Over the past few years Adam and developer Dave Jones have been busy with a project called [Podcasting 2.0](https://github.com/Podcastindex-org/podcast-namespace). In short it is an effort to expand the podcasting spec to include new features and most importantly improve censorship resistance. [Podcast Index](https://podcastindex.org/) is as an alternative to the index of podcasts that Apple created and manages. Anyone can copy or contribute to Podcast Index and its growth has been encouraging to watch. During this process support for direct payments to podcasters was added to the podcasting 2.0 spec. Many new podcast apps support this new feature and others. [Fountain](https://fountain.fm/) is one of these apps and it allows you to send bitcoin over the lightning network to podcasters while you listening.\n\nPodcasting is not the only medium that is seeing a rise in the use of the value for value model. Nostr has it and I would say that Stacker.news also follows this model. Bitcoin and specifically the lightning network allow us to remove the friction of sending value over any distance in any amount no matter how small. The cumulative affects of this are massive. We are in the early stages but the value for value model isn't going anywhere. Its been around for as long as there has been money. With the power of bitcoin and lighting it will grow and become a powerful tool for freedom of expression and human flourishing.\n \N 21070 \N 233538 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.01572438283361 0 \N \N f 164157105 \N 1 144196809 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458221 2025-03-29 05:47:40.595 2025-03-29 22:39:47.092 Will Pleb Hobby Lightning Nodes Be Big, Profitable Enterprises In The Future? Before you all dismiss me as an idiot, please hear me out. I started my lightning node about 2 ½ years ago via the whole Umbel Pi craze that was so popular. I read all about channel balancing, setting fees, etc, hoping to create a giant, profitable routing node. Reality soon set in. \n\nLater, I started talking to @DarthCoin and used his guides to change my node. I made so many modifications, but perhaps the biggest was focusing on a relatively few, much larger channels. My goal was no longer to route, but to just use my node for my own purposes. By then, bitcoin’s price had crashed into the teens and I opened some pretty big channels (around 10 million sats or more). \n\nNow, bitcoin’s fiat price has more than tripled, and my node is routing a lot more transactions. Obviously 10 million sats is a bigger deal now than when I opened the channels. The increase in transactions is bringing in more fees, and each of those sats contains a lot more buying power in the real world. \n\nDoes it not stand to reason that in 10 years 10 million sat channels will be incredibly valuable, assuming we are all correct that bitcoin will continue to grow and consume larger parts of the economy?\n\nI understand that for purposes of this argument, I am assuming the lightning network survives, and is still being used at least as much as it is today. \N 2724 \N 458221 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 10.8433342469979 0 \N \N f 92867453 \N 1 233061406 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441749 2025-03-18 09:18:47.916 2025-03-29 22:39:47.093 What Bitcoin principle took you the longest to accept? \N \N 13406 \N 441749 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 0.115507875004432 0 \N \N f 228003925 \N 2 249113427 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414783 2025-02-24 09:51:13.962 2025-03-29 22:39:47.094 Bitcoin Forks explained *Episode XXII. Block Height: 859500. Essential for growth and democracy within the Bitcoin Network, yet a dangerous task: Bitcoin Forks explained.*\n\nSubstack Article: https://carlbmenger.substack.com/p/bitcoin-forks\n\nIn the digital dawn where Bitcoin reigns, shadows of forks emerge, claiming new domains. They whisper of freedom, of better, brighter chains, yet often they mimic, caught in old refrains. Like echoes in a valley, they seek to break away, but end in hollow mimicry, repeating the same play. For in each split, a piece of truth might fake, not genuine divergence, but a mirrored quake. These forks, they promise realms anew, yet find themselves ensnared, in cycles they pursue.\n\n![Bitcoin Forks](https://m.stacker.news/49711)\n\nBitcoin operates on a decentralized digital ledger known as the blockchain. As Bitcoin's popularity grows over time, so is the need to address various challenges and demands for improvement within its underlying technology and consensus mechanisms. These pressures occasionally led to what is termed a "fork" in the Bitcoin blockchain. Simply speaking, a Bitcoin fork occurs when there is a divergence in the blockchain, resulting in two separate chains that share a common history up to a certain point. This divergence is akin to a fork in the road, where the blockchain splits into two potential paths. Forks can be initiated for various reasons, such as implementing new features, correcting bugs, or addressing disagreements within the community regarding the direction of the network’s future.\n\n### Bitcoin Nodes\n\nThe distributed fork decision center are Bitcoin Nodes, a fundamental components of the Bitcoin network, acting as the backbone that ensures its decentralized and secure nature. A Bitcoin node is a computer that runs the Bitcoin software, which enables it to participate in the network by validating transactions and blocks, relaying information to other nodes, and maintaining a copy of the entire blockchain. The decentralized nature of nodes, where no single entity controls the majority, helps ensure that any significant changes to the protocol require widespread agreement, thus protecting the network from contentious forks that could undermine Bitcoin's value and security. Run your own NODE! (https://stacker.news/items/100665)\n\n### Soft vs Hard\n\nBitcoin forks are broadly categorized into two types: soft forks and hard forks. A soft fork is a backward-compatible upgrade to the blockchain, meaning the new rules introduced do not conflict with the old rules. Consequently, nodes that have not upgraded to the new software can still participate in the network. In contrast, a hard fork represents a radical change to the protocol that is not backward-compatible, as a result the blockchain splits in two different cryptocurrencies. Thus, the decision to use a hard fork or a soft fork in the Bitcoin network depends on the nature of the changes needed and the level of community consensus.\n\n#### Soft Forks\n\nA soft fork is used for backward-compatible upgrades, where the new rules do not conflict with the old ones. This allows nodes that have not upgraded to still participate in the network, ensuring a smoother transition. Soft forks are suitable for security enhancements and bug fixes, as they can improve the network without causing disruption. They are also appropriate for minor feature additions and incremental improvements that do not require a fundamental change to the protocol. Soft forks maintain network cohesion and minimize risks associated with blockchain splits, making them ideal for implementing necessary improvements and optimizations. The most prominent Bitcoin soft forks are:\n\n**P2SH (Pay-to-Script-Hash)**\n\nPay-to-Script-Hash (P2SH), activated in April 2012, is a significant Bitcoin soft fork. P2SH allowed transactions to be sent to a script hash rather than directly to a public key hash. This enabled more complex transaction types, such as multi-signature transactions, where multiple signatures are required to authorize a transaction. P2SH made it easier to use and deploy complex Bitcoin scripts, enhancing the flexibility and security of the Bitcoin network.\n\n**BIP 34 (Block Version Enforcement)**\n\nBitcoin Improvement Proposal 34, activated in March 2013, introduced block version enforcement. This soft fork required that each new block include its height (the block number) in the coinbase transaction. This change improved the consistency and traceability of the blockchain, making it easier to detect and prevent certain types of chain reorganizations and attacks.\n\n**BIP 66 (Strict DER Signatures)**\n\nBitcoin Improvement Proposal 66, activated in July 2015, introduced stricter rules for the encoding of signatures. This soft fork aimed to improve security and interoperability by enforcing the use of DER (Distinguished Encoding Rules) for signatures. The stricter rules helped prevent certain types of attacks and ensured that all signatures on the network adhered to a consistent format, enhancing overall network reliability.\n\n**Segregated Witness (SegWit)**\n\nSegregated Witness (SegWit), activated in August 2017, is one of the most notable Bitcoin soft forks in recent history. It aimed to address scalability and transaction malleability issues. By separating transaction signatures (witness data) from the transaction data, SegWit effectively increased the block size limit, allowing more transactions to fit into each block. This improvement reduced transaction fees and enabled the development of second-layer solutions like the Lightning Network, which further enhanced Bitcoin's scalability and transaction speed.\n\n**Taproot**\n\nActivated in November 2021, Taproot is a major upgrade that enhances Bitcoin's scripting capabilities and privacy features. Taproot combines the Schnorr signature scheme with Merkelized Abstract Syntax Trees (MAST) to enable more complex and private transactions. With Taproot, all transactions look the same on the blockchain, whether they are simple payments or involve complex scripts, thereby improving privacy. Additionally, Schnorr signatures are more efficient and secure, reducing transaction sizes and improving overall network performance.\n\n#### Hard Forks\n\nA hard fork is not backward-compatible, thus nodes and miners must actively upgrade to the new version of the software to participate in the new network, effectively creating and running another cryptocurrency. Just keep in mind, if you do not agree to the hard fork and thus do not upgrade your node you will continue to use the original network. The most prominent hard forks are:\n\n**Bitcoin Cash (BCH)**\n\nBitcoin Cash is one of the most well-known and significant Bitcoin forks. It was created in August 2017 in response to growing concerns about Bitcoin's scalability and high transaction fees. The primary change introduced by Bitcoin Cash was an increase in the block size limit from 1 MB to 8 MB (and later to 32 MB), allowing for more transactions to be processed per block. This fork aimed to provide a version of Bitcoin that could handle a higher transaction volume, making it more suitable for everyday transactions and positioning itself as a peer-to-peer electronic cash system.\n\n**Bitcoin Gold (BTG)**\n\nBitcoin Gold was created in October 2017 with the aim of decentralizing mining. It introduced a new proof-of-work algorithm called Equihash, which is more resistant to ASIC (Application-Specific Integrated Circuit) mining hardware. By doing this, Bitcoin Gold sought to make mining more accessible to individual miners using general-purpose hardware (GPUs), thus promoting a more decentralized network and reducing the dominance of large mining farms.\n\n**Bitcoin SV (BSV)**\n\nBitcoin SV (Satoshi Vision) is another notable fork that emerged from the Bitcoin Cash community in November 2018. This split occurred due to disagreements over technical and philosophical differences within the Bitcoin Cash community. Bitcoin SV increased the block size limit even further, initially to 128 MB and then to 2 GB, with the goal of restoring Bitcoin's original protocol as outlined in Satoshi Nakamoto's whitepaper. Bitcoin SV emphasizes scalability and aims to support large-scale enterprise applications and transactions.\n\n### Pros and Cons\n\nBitcoin forks are essential for the Bitcoin network because they enable innovation and provide a mechanism for resolving disagreements within the community about the future direction of the protocol. By allowing developers to experiment with new features, upgrades, or changes to the consensus rules, forks foster the evolution of blockchain technology, helping to address scalability, security, and usability issues. Additionally, forks serve as a democratic process within the decentralized ecosystem, offering a way for different factions to pursue their vision without disrupting the original network. This ability to fork ensures that Bitcoin can adapt to new challenges and remain resilient, while also preserving the core principles of decentralization and user choice.\n\nHowever, Bitcoin forks can be dangerous for the network because they create divisions within the community, potentially leading to fragmented development efforts, reduced security, and confusion among users and investors. When a hard fork occurs, it splits the network into separate chains, diluting the hash power (the computational effort securing the network) and making each chain more vulnerable to attacks. This fragmentation can also undermine trust in Bitcoin as a store of value, as the existence of multiple competing versions may cause uncertainty and volatility in the market. Furthermore, forks can lead to "replay attacks," where transactions on one chain are maliciously repeated on another, causing potential loss of funds.\n\n### Scaling in Layers\n\nKeeping the Bitcoin main chain simple is crucial for maintaining the network's security, decentralization, and accessibility. The main chain, or the base layer, is where all transactions are verified and stored on the blockchain. A simple and lean base layer allows for more participants to run full nodes, which are essential for verifying transactions and ensuring the network's trustlessness. By avoiding excessive complexity on the main chain, Bitcoin remains resilient against centralization pressures, as it ensures that running a node doesn't require extensive resources, thus allowing individuals and small entities to participate in the network. This simplicity also aids in reducing the likelihood of vulnerabilities and bugs, as a less complex codebase is easier to audit and maintain.\n\nBitcoin's scalability is achieved through layers built on top of this simple and secure base chain. The most prominent of these is the Lightning Network (https://stacker.news/items/261714), a second-layer protocol designed to facilitate faster and cheaper transactions by taking them off the main chain. Lightning enables near-instantaneous payments with minimal fees by allowing users to open payment channels that only require occasional settlement on the Bitcoin blockchain. This layered approach ensures that the Bitcoin network can handle a high volume of transactions without burdening the main chain, which remains focused on security and decentralization. By scaling in layers, Bitcoin can maintain its foundational properties while still being able to accommodate global demand for transactions. This is also the reason why all Bitcoin hard forks failed so far.\n\n### Conclusion\n\nBitcoin forks are a testament to the dynamic and evolving nature of a living and breathing organism. Forks reflect the ongoing debates and experimentation within the Bitcoin community as it strives to create a robust, scalable, and secure digital base layer. Bitcoin soft forks are crucial for the network growth because they allow for backward-compatible upgrades, enabling new features and improvements without disrupting the existing system. Soft forks have facilitated the adoption of enhancements that improve scalability, reduce transaction fees, and increase the network's capacity. These upgrades are implemented in a way that does not require all participants to upgrade simultaneously, ensuring that the network remains cohesive and secure. This ability to evolve through soft forks has allowed Bitcoin to address its limitations while preserving the integrity and continuity of the blockchain, which is vital for maintaining user trust and the stability of the ecosystem.\n\nIn contrast, hard forks have often failed to gain widespread adoption because Bitcoin scales primarily through layers, not by altering the base protocol. Hard forks require all participants to upgrade, which can lead to contentious splits and the creation of rival chains, as seen with Bitcoin Cash. These splits dilute the network's security and community, potentially harming the value proposition of Bitcoin as a decentralized currency. Moreover, Bitcoin's layer-1 (the base protocol) is deliberately kept simple and secure, while scalability and functionality are achieved through layer-2 solutions like the Lightning Network. This layered approach preserves the core blockchain's security and decentralization, avoiding the risks associated with hard forks and ensuring that Bitcoin remains resilient as it continues to evolve.\n\n### The End\n\nThat's it for this episode. I hope you got some valuable information from this one. Don’t forget: There is Bitcoin, and there are Shitcoins. Thanks for reading, and see you in the next one. ₿ critical, ₿ informed, ₿ prepared. Yours,\n\n**₿ critical, ₿ informed, ₿ prepared. Yours,**\n\n![Carl B Menger](https://i.postimg.cc/QxMq5Npk/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n### Stay tuned\n**Subscribe to my Newsletter:** https://carlbmenger.substack.com/publish/home\n**Follow me on X**: https://mobile.twitter.com/CarlBMenger\n**Follow me on NOSTR:** npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Related Topics\n[III] Don't trust, verify: https://stacker.news/items/100665\n[XIII] The Lightning Network: https://stacker.news/items/261714 \N 16950 \N 414783 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 9.09875061862909 0 \N \N f 437834900 \N 2 195640136 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413854 2025-02-23 13:56:28.952 2025-03-29 22:39:47.097 How I (probably) lost 5M This is a story about (probably) loosing 5M sats while running a reckless lightning networks node.\n\nI had some sats to spend in an electrum wallet and wanted to open a new channel with the OKX node. With lncli I opened a new channel and selected the -psbt (partial signed bitcoin transaction) option which allows me to use funds from an external wallet to fund the new channel. Everything went fine so far as I could create, sign and broadcast the transaction. Unfortunately I decided to open with too low fees and the channel opening was stuck in the mempool. Instead of just wait and drink tee, I decided to bump the fee which was a very bad idea. If you bump the fee with the external wallet, you create a new transaction with a new txid. My node and also the OKX node have no idea about the new transaction and I essentialy sent 5M sats to a 2of2 multi-sig address which only I have the key for (not exactly).\n\nWell, fortunately there exists [chantools rescuefunding](https://github.com/lightninglabs/chantools/blob/master/doc/chantools_rescuefunding.md) but this is only helping if your peer is cooperative. Now that my peer is not a pleb which I can contact on SN, I have to go through the OKX support. After telling them that there is no point in sending them screenshots of my app or whatever and insiting they should just send my psbt which releases my funds to the tech team they agreed and now I hope and wait (... for some weeks now).\n\nIf someone knows someone at OKX: please let me know, that could help.\n\nIf you want to dig deeper, everything is documented on [github](https://github.com/lightningnetwork/lnd/issues/7801)\n\nAnd if I don't get the sats back its a gift to all you awesome bitcoiners out there. \N 2724 \N 413854 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.3651829655161 0 \N \N f 2081010812 \N 15 163455103 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 222104 2024-08-27 23:47:24.086 2025-03-29 22:39:47.088 SN release: attached wallet easter eggs, mathjax bug fix There are two new attached wallet easter eggs. Compared to the cowboy hat, these are very hard to get and maintain. At some point, these will have an impact on rewards too, but they don't yet.\n\nMathjax is no longer triggered when expressions are wrapped single `$` signs. It requires `$$` dollar signs. Single `$` was causing issues when stackers included two dollar-denominated prices in the same paragraph, e.g. "I paid $10 for the apples and $5 for the oranges."\n\nThat's it.\n\n--------------\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 13m sats to 31 contributors for 136 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/711964\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 12261 \N 222104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8169893454835 0 \N \N f 150594288 \N 1 129821753 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448855 2025-03-22 23:30:14.789 2025-03-29 22:39:47.09 SN release: new referral system part 2 This completes the new referral system as described in https://stacker.news/items/600103.\n\nTo recap: \n\n- 20% of daily rewards go to referrers\n - 10% to the referrer that led to the stacker joining\n - 10% to the "one day referrer" of the stacker\n - a one day referrer is someone that referred the stacker the most that day, meaning the stacker clicked on their `/r/` links or their implicit referral links more than anyone else (more below)\n- in addition to `/r/` links, all links on SN are implicit referral links\n - when you share your items (or those of others), e.g. `stacker.news/items/1`, it attributes a referral to the OP\n - when you share your profile (or those of others), e.g. `stacker.news/k00b`, it attributes a referral to you\n - when you share your territory (or those of others), e.g. `stacker.news/~bitcoin`, it attributes a referral to the founder\n\nThis last mile:\n\n- daily referral reward notification like the daily rewards one\n- the rewards page shows how much in referral rewards each stacker is generating for their referrers\n- your referrals page shows both "forever referrals" and "one day referrals"\n- your satistics charts have more detail and also show the new referrals stuff\n\n-------------\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 7.6m sats to 24 contributors for 114 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/593321\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 19488 \N 448855 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 28.0936656468161 0 \N \N f 329080947 \N 2 173257308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 16:57:49.987 f \N \N \N 0 0 0 0 2 0 0 436362 2025-03-13 13:56:03.454 2025-03-29 22:39:47.091 SN release: satistics charts I was intending to wait for a more action packed release, but I needed to fix a bug anyway.\n\nIf you to your [satistics](/satistics), you'll now see a `graphs` tab. This work was started by @dillon then followed through by @BenAllenG.\n\nAlso included in this was hiding related posts on deleted posts (via @abhishandy)\n\nAlso some attached wallet log fixes by @ek. \n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs) ~6 weeks ago, we've paid a total of 4.2m sats to 16 contributors for 67 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/520971\nComplete list of changes: https://stacker.news/changes\nQ1 recap and Q2 roadmap: https://stacker.news/items/506566\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 6202 \N 436362 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.29475338725416 0 \N \N f 231168211 \N 3 206866398 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 07:23:19.962 f \N \N \N 0 0 0 0 1 0 0 259258 2024-10-07 15:35:12.548 2025-03-29 22:39:47.091 Introducing Lightning Payouts - Braiins Pool - In Production (out of Beta) https://pool.braiins.com/en/news/introducing-lightning-payouts\n\nLooks like Braiins Pool lightning withdraw have left Beta and is available to all.\n\nAppears to be lightning address only, no lightning invoices.\n\nOne less excuse ("I will never reach the payout") for individuals to run their on mining hardware. \N 16387 \N 259258 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.5042568154476 0 \N \N f 137248582 \N 1 25023747 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 19:19:47.08 f \N \N \N 0 0 0 0 1 0 0 2004 2022-10-01 14:10:38.463 2025-03-29 22:39:47.094 Lotes - physical lightning cash Three months ago we discussed the idea of lightning cash [here](https://stacker.news/items/117623) on SN. Today I managed to finish the prototype.
 \n\nHere is a [video](https://youtu.be/_cQutic0CX0) demonstration:\n\n[![Lotes app - proof of concept](https://i9.ytimg.com/vi_webp/_cQutic0CX0/mq2.webp?sqp=CLC5hqEG-oaymwEmCMACELQB8quKqQMa8AEB-AH-CYAC0AWKAgwIABABGGUgUShIMA8=&rs=AOn4CLAq53lG9oddARa3klEu_J3FDoEv_g)](https://youtu.be/_cQutic0CX0 "Lotes app - proof of concept")\n\n\nI've also listed some bounties if you want to get involved... There are also challenges for non-developers. Have a look: [Lotes bounties](https://github.com/users/hynek-jina/projects/2/views/4)\n\nFor more information you can check out GitHub:\nhttps://github.com/hynek-jina/lotes \N 21482 \N 2004 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.5471240628212 0 \N \N f 175966497 \N 1 30961175 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414314 2025-02-23 19:52:04.981 2025-03-29 22:39:47.095 Don't feel bad about being too late to Bitcoin. Don't feel bad about being too late to Bitcoin, you could be me. I found out about Bitcoin in June 2011 from a Slashdot post.\n\nI installed the software to mine on my ATI 4890 and joined mining.bitcoin.cz better known as Slushpool and now called Braiins pool. \n\nGoogle shows that a 4890 mined at 105.1 Mhash/s which at that time would have earned around 2.05 Bitcoin a month. 24.64 Bitcoin a year. \n\nBut did I leave my computer on mining Bitcoin, and learning about how Bitcoin is freedom? No I turned it off without mining any as I saw a reply about "how it wasn't worth it anymore, as you could not receive the block reward multiple times a day anymore." \n\nSo don't feel bad that you missed out about Bitcoin in 2017, or 2021. It doesn't matter what Bitcoin was worth then or now in fiat terms. It matters that we keep learning about Bitcoin and sharing it with others. Then one day we can all have economic freedom and savings. \N 13854 \N 414314 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 16.8477134759458 0 \N \N f 389477281 \N 3 59321705 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 385622 2025-01-30 09:59:52.619 2025-03-29 22:39:47.088 Why I'm Bullish 3: China Mining Ban In 2021 the Chinese Communist Party attempted to ban bitcoin mining within their borders. Before this predictable event happened many in and out of the bitcoin world expressed concern about mining being so centralized in China. This is a very reasonable concern. I remember being very curious what would happened next. Well, as we all know know bitcoin didn't miss a beat. No downtime. Bitcoin worked as designed. This outcome didn't surprise me but it did making me even more bullish on bitcoin's ability to weather the coming storms.\n\nSo far each time a nation state attempts to ban or subvert bitcoin they show their impotence. At some point the smart scumbags in positions of power will get the memo and realize this. At that point I think they will attempt to join the rest of us. Not out of ideological motives but out of self preservation. Bitcoin is a force of nature. I'm super bullish.\n\nIn case you missed it here is [Why I'm Bullish 2](https://stacker.news/items/384892). \N 897 \N 385622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6460671402562 0 \N \N f 97290448 \N 1 170748250 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435217 2025-03-12 14:35:24.281 2025-03-29 22:39:47.089 🏆 Top Builder: Final Round Teams Announced ![IMG_4137.jpeg](https://m.stacker.news/17379)\n\nThe Final Round of #TopBuilder Teams have been announced. Congrats to all 31 teams that competed. \n\n\n🏆 The Final Six will be pitching in Austin, Texas on March 14th, 2024. Watch the full stream here on @sn.\n\n🤖 CASCDR - @cascdr\n💻 BitScript - @setzeus\n📱 Coracle - @Jon_Hodl\n🇲🇽 Yopaki - @carloschida\n📦 Shopstr - @TommySatoshi\n📊 Clams - @johngribbin\n\n🎫Get your tickets to Startup Day.\nhttps://www.pleblab.dev/startup-day https://www.youtube.com/live/3PuPdUspzwc?feature=shared 19087 \N 435217 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 29.4127692576703 0 \N \N f 5940956817 \N 57 208743691 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:58:21.862 f \N \N \N 0 0 0 0 22 0 0 410156 2025-02-20 09:53:05.568 2025-03-29 22:39:47.09 Reality Is Just a Game Now This morning's [post](https://stacker.news/items/480661) by @Undisciplined in the [tough questions for Libertarians](https://stacker.news/items/458128) series got me thinking about this article, which I read a while ago. It's about how the lines about what's real have blurred; it's about how to one degree or other, we're all curating our own private worlds, and the consequences that play out when those worlds crash into other worlds.\n\n> Perhaps this helps to explain why fact-checking seems so pitiably unequal to our moment. Yes, unlike a genuine game, QAnon followers assert claims about the real world, and so they could, in theory, be verified and falsified. It isn’t all confirmation bias — surprise is still possible: The Pizzagate believer who in 2016 brought a rifle to a D.C. pizza place to rescue child sex slaves from a ring believed to involve Hillary Clinton was genuinely shocked that the building didn’t have a basement. But ARGs can keep going because there are a myriad of possible solutions to puzzles in the game world. Debunking only ever eliminates one small set of narratives, while keeping the master narrative, or the idea of it, intact. For QAnon, or contemporary witchcraft, or #TheResistance, or Infowars, or the idea that all elements of American life are structured by white supremacy, one deleted narrative barely puts a dent in what people are drawn to: the underlying world picture, the big story.\n\nIf you liked this morning's question, or this topic more generally, you may dig this article. It's one that has stuck with me for a while. https://www.thenewatlantis.com/publications/reality-is-just-a-game-now 21202 \N 410156 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.1425975866062 0 \N \N f 260950979 \N 2 67269368 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434189 2025-03-11 16:48:26.222 2025-03-29 22:39:47.091 I am a shitcoiner, sorry! But I want to switch :) After loosing all my funds as I explained on my yesterday's [thread](https://stacker.news/items/259749), I am trying to change and explain my current situation. I am new and never used BTC wallets.\n\nSo, after reading all the posts yesterday, I decided to create a wallet of my own. Here's my plan, I will start practicing how will I recover wallet if I brick my PC. I am choosing **ELECTRUM** on my Windows PC and keeping it in a separate USB drive with its portable version. \n\nHowever, I was a shitcoiner, {sorry @DarthCoin, I don't want to become your enemy}. And here are all my $HITCOINS on uphold account. This is relatively small amount that I can afford to loose while I practice swapping in accounts.\n![Uphold balance](https://void.cat/d/6s6Qf5pTQQDd1qbZbrGsHT.webp)\n\nHow should I go about transferring from UPHOLD to ELECTRUM/ BLUEWALLET ?\n\n- Should I first convert these shitty coins to BTC and then send it over to BTC network which should be received in my Electrum ? (Here I will incur 2 fees, 1 while conversion, another while transfer)\n- Or should I transfer it to XRP (with relatively negligible fee) by make a new wallet like Metamask and then transfer to Electrum ?\n\nAny other helpful way??\n\n### Note: Sorry if my question is too dumb and the amount is just around 10 USD so I can understand if not many of you see this as useful. I can delete the post if this is the wrong channel to ask for help. \N 688 \N 434189 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 7.80162897710621 0 \N \N f 76470806 \N 2 115134392 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435596 2025-03-12 20:03:09.31 2025-03-29 22:39:47.091 I'd Like Some Input On A Possible Logo I've been tinkering about a possible "Brand name" as well as a fitting logo, and so far I've set my sights on "***FabiCraft***" or "***Fab's Fabrics***". \n\nI've asked ChatGPT to come up with two possible logos for the former, and will do the same for the latter once the limit has been reset:\n\n![](https://m.stacker.news/61827)\n\n![](https://m.stacker.news/61828)\n\nI quite like what he came up with, but I'd also like to ask what others think about both possible names, as well as the above two mock-ups; What do you think, and what can you come up with?\n\n \N 16356 \N 435596 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.2645971000853 0 \N \N f 355436982 \N 4 19735876 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:12:58.61 f \N \N \N 0 0 0 0 3 0 0 448591 2025-03-22 18:08:11.048 2025-03-29 22:39:47.089 High fee rates help node runners make better decisions This might be unpopular, but I feel like adding my perspective as a somewhat experience node runner.\n\nCurrently, fee rates are very high and it doesn't seem like they'll go down anytime soon. Unilateral (force) closes still happen, and paying 500k sats to close a channel with a capacity of 1M sats isn't uncommon (https://iris.to/note1vnxv4jyf3as6lnmze7uf7dcgpwsltapjg6jjm2rjeczpmld78lpqd4lagx).\n\nSome node runners pay high fees for bilateral (coop) closes, and I don't think this is intentional in most cases. Example from my logs, where my node suggested 16k sats and my peer (who has to pay the fee!) suggested 54k sats instead:\n\n```\nCHCL: Ideal fee for closure of ChannelPoint(xxx:1) is: 16405 sat (max_fee=82025 sat)\nCHCL: ChannelPoint(xxx:1): shutdown response received, entering fee negotiation\nCHCL: ChannelPoint(xxx:1): computing fee compromise, ideal=16405, last_sent=0, remote_offer=54183\nCHCL: ChannelPoint(xxx:1): proposing fee of 54183 sat to close chan\nCHCL: ChannelPoint(xxx:1) fee of 0.00054183 BTC accepted, ending negotiation\n```\n\nHaving unreliable (offline) peers and peers that spam HTLCs increase the risk of unilateral closes, where every unresolved HTLC adds to the cost of the close transaction. Here's an example with five unresolved HTLCs, causing the close transaction to cost 254k sats: https://mempool.space/tx/7693a6eac81086c6bf3df78371aee74a2b1fa0eb587dfe6011f7cca53b2235ac\n\nThat being said, I'm confident that most node runners make use of this information and adjust things. Some might stop running a node, others might start using tools like https://github.com/lightningequipment/circuitbreaker, others might be more selective regarding their peers and channel sizes. In the end I hope that the routing experience on the lightning network is improved compared to the current state, and that setup guides and maintenance tools take high fee rates into consideration to warn/prepare future node runners.\n\n \N 13467 \N 448591 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 11.6911872842657 0 \N \N f 718444408 \N 6 70094174 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:10:50.4 f \N \N \N 0 0 0 0 4 0 0 443531 2025-03-19 12:03:26.351 2025-03-29 22:39:47.089 Swap service: a nostr orderbook for submarine swaps and earning yield on bitcoin \N https://www.youtube.com/watch?v=mVWufwzQ_RI 20706 \N 443531 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.12013145953692 0 \N \N f 480727530 \N 4 213603672 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:38:21.698 f \N \N \N 0 0 0 0 1 0 0 434013 2025-03-11 15:07:09.638 2025-03-29 22:39:47.09 I investigated Germany's $3 Billion Bitcoin Sell Off \N https://youtu.be/eGQ9VNIDBkY 651 \N 434013 \N \N \N \N \N \N \N \N science \N ACTIVE \N 21.1528639276682 0 \N \N f 222754912 \N 1 129406015 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423620 2025-03-03 13:46:37.549 2025-03-29 22:39:47.091 What does it mean to live in a world of abundance? I want to leave this question open to interpretation, curious to hear how stackers interpret the prompt and all your responses \N 1124 \N 423620 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.72602396241047 0 \N \N f 227243150 \N 1 88495921 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441600 2025-03-18 06:51:57.114 2025-03-29 22:39:47.095 Trying to gain rough technical consensus on covenant proposals \N https://en.bitcoin.it/wiki/Covenants_support 20768 \N 441600 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.1511662284136 0 \N \N f 701414097 \N 4 141200343 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447683 2025-03-22 02:40:00.841 2025-03-29 22:39:47.095 The Challenges of Developing Non-Custodial Lightning on Mobile \N https://lightningdevkit.org/blog/the-challenges-of-developing-non-custodial-lightning-on-mobile/ 16809 \N 447683 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 20.6909675348301 0 \N \N f 144198911 \N 1 170893020 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444522 2025-03-20 01:01:58.447 2025-03-29 22:39:47.096 SN release: item details, wallet priority change fix and LNC fix As far as stackers can be concerned, this release contains one feature and two bugfixes:\n\n1. The item context menu now contains `details`. This allows even mobile users to see how many zapped a post. This was only accessible to desktop users if they hovered over the sat amount. For a precise timestamp, you had to hover over the relative time. Additionally, the item details also show the cost which wasn't visible anywhere before:\n\n![](https://m.stacker.news/47977)\n\n2. If you changed the priority of one of your wallets by dragging them around (or clicking on them on mobile), we previously retested all the wallets which was unnecessary. Since LNC was prone to having issues, this lead to @siggy47 not being able to change his wallet priority with LNC attached. This can be considered a bug and is fixed now. Wallets no longer run tests if you only change the priority.\n\n3. We also fixed an issue with LNC where it didn't completely detach and could only be attached again if you have reloaded the page.\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n---\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 9.25m sats to 27 contributors for 123 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n---\n\nPrevious release: https://stacker.news/items/657334\n\n---\n\n[We are hiring.](https://stacker.news/items/141924) \N 1060 \N 444522 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1035423587669 0 \N \N f 759522843 \N 4 147058042 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 432547 2025-03-10 12:37:45.438 2025-03-29 22:39:47.096 Thoughts on the exoself A weird thing about the current moment is how much of ourselves exist outside the boundaries of our own flesh.\n\n\\#\n\nFor instance, I was reviewing some notes just now and was struck to discover that, for the first time, a piece of my canonical thinking belongs principally somewhere else. In this case, a reference to evergreenness linked, not to internal notes, but to a [SN post.](https://stacker.news/items/331942)\n\n\\#\n\nThen I thought: in some ways, this has always been going on. The artists who make up stories or create art about Superman can't make use of those Superman art or stories, even if they represent the most intense expressions of their identity over the course of years. The actor who we all think of as Wolverine can't lay claim to Wolverine; nor can the creator of the idea of Wolverine: each has relinquished themselves, repeatedly, to the world.\n\nI have a number of patents, signed over as a matter of course to my employer as part of the employment contract. And so for the code and the text I wrote while employed in those various places. Some foundational thoughts, the products of untold hours of rumination, are not mine to give or to use, and nobody thinks this is weird. \n\nI started wondering about exactly how and when we can be considered to be 'sovereign' of ourselves. What such an idea would even mean.\n\n\\#\n\nThis fugue reminded me of some more recent expression of the idea, where people create an AI avatar of a loved one who survives their death. Here's an [example](https://www.npr.org/2020/05/01/849069269/inventive-new-comedy-upload-explores-virtual-life-after-death) that I haven't watched; here's a gut-wrenching Black Mirror [episode](https://en.wikipedia.org/wiki/Be_Right_Back) that I have. \n\nBut that's science fiction, even if it doesn't seem so far away. A real example that I read about, but whose source was removed from twitter for some reason [1], is a guy who used to play some kind of multiplayer driving game with his girlfriend. Then his girlfriend died. Then when he played the game afterward, now on solo mode, he discovered that her driving behavior was rendered into an NPC car. \n\nSo the guy had this strange experience of being with the phantom of his dead girlfriend, spending time together the way they had used to. It made me shiver.\n\n\\#\n\nThe larger idea for me here is the idea of the _exoself_, a kind of instantiation of yourself that extends beyond the boundaries of your own flesh. In [certain circles](https://en.wikipedia.org/wiki/Advanced_chess) they talk about this as being a 'centaur' -- as a collective entity, where you incorporate elements of the environment into yourself and become something greater as a result. This is an idea that Heidegger made famous seventy years ago, in incomprehensible gibberish language: how do our tools make us into other kinds of Beings? [2]\n\nIt makes me think, hard, about what I want, and what we (collectively) should aspire to with the idea of social media. What kind of Beings are we becoming when we instantiate parts of ourselves in this way? Where we reliquish parts of ourselves to the world, and absorb parts of others? \n\nWhat could emerge from this mode of interaction that would affirm life, that would make us bigger and nobler, instead of stupider and pettier?\n\n\\#\n\n[1] If anyone can find a reference to this I'd be grateful.\n[2] Please don't nitpick me on this one. \N 866 \N 432547 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 14.1702007451766 0 \N \N f 192323970 \N 1 118578595 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 23:31:03.604 f \N \N \N 0 0 0 0 1 0 0 431139 2025-03-09 15:40:19.868 2025-03-29 22:39:47.097 Civ Kit: A Peer-to-Peer Electronic Market System on Nostr \N https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2023-April/021556.html 2156 \N 431139 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.39865808854141 0 \N \N f 202416821 \N 1 19221086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401783 2025-02-13 11:50:44.146 2025-03-29 22:39:47.097 Bluesky is a scam \N https://fiatjaf.com/ab1127fb.html 999 \N 401783 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 2.01763694896783 0 \N \N f 1119736038 \N 8 146774645 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 435231 2025-03-12 14:42:43.165 2025-03-29 22:39:47.363 Where the 4 Year Cycle Comes From Every 4 years, there's a halving, and there has been endless speculation about this design decision by Satoshi. Is it to coincide with presidential election years in the US? Or the Olympics? Why 4 years? I'm not going to speculate on geo-political reasons here, but I will show you why there's a 4-year cycle and how it's related to the 21 million Bitcoin limit.\n\nIf you've watched rent, there's a famous song from it called 525,600 Minutes. That's how many minutes are in a 365-day year. And if you multiply that by 4, you get 2,102,400 minutes. Of course, there's a leap day to consider and that gives us another 60 * 24 = 1440 minutes for a grand total of 2,103840 minutes.\n\nWhat's remarkable about this number is how close it is to 2.1M. And indeed, if every block is 10 minutes, 2.1M minutes turns out to be 210,000 blocks. And that's the real number for the halving cycle, not a specific 4 years. And indeed, 4 years is slightly longer, by 3840 minutes or 64 hours or 2 2/3 days. The 4 year cycle is really a ~3.96 year cycle, strictly speaking because of this extra overhang.\n\nBlock 840,000 will start the 5th epoch of Bitcoin (looking to be around April 20, 2024), which will have 3.125 BTC as a block reward. And that block reward halving every 210,000 blocks is how we get a 21M limit.\n\nThe first epoch's block reward was 50, the next 25, the next 12.5 and so on. If you add these block rewards up, that's 100 * 210,000 or 21M. But since we represent these with 0's and 1's and don't have infinite precision, the actual complete amount is slightly less at 20,999,999.9769 BTC. \N 9366 \N 435231 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.58917044321271 0 \N \N f 1458201952 \N 11 194539581 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:12:01.27 f \N \N \N 0 0 0 0 4 0 0 442358 2025-03-18 14:27:59.309 2025-03-29 22:39:47.09 New features of magic webstore: store metadata, nostr auth, notifications & more New features of https://magicwebstore.xyz:\n\n- Store metadata: view any store's activity metrics\n- Nostr auth: connect your store to your nostr identity\n- Notifications: authed merchants get a DM when they get a sale\n- Visa gift cards: turn your store proceeds into dollars\n\nTry it out today! magicwebstore.xyz\n\n![](https://imgprxy.stacker.news/jr3ZGINLVJjH3UGoAnOcUtZmCpaSHcJ6_yRxzKSmw0U/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS9mYzU3ZmFmMjQ2MzNjODNlMWIwY2I2YmVhM2ExZmZlZDhiNjAwZTk1NDkyODcwNjJmMTcyZDQ1YWY3OWY3ZDg2LmdpZg) \N 992 \N 442358 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 8.40718492251458 0 \N \N f 144834866 \N 1 30468783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430321 2025-03-09 04:50:42.568 2025-03-29 22:39:47.09 This township in South Africa runs on bitcoin (bitcoin ekasi) \N https://youtu.be/9aKwrBMWmO4?si=aj6fARfrs_NfymUc 2492 \N 430321 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 11.4093673684399 0 \N \N f 13139352 \N 1 158068062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451165 2025-03-24 12:27:20.67 2025-03-29 22:39:47.09 Find Your Co-Founder/Building Partner on Stacker News! ⚡ 💡**The Challenge:**\n\nMany of us are passionate about building companies or creating innovative projects, but finding the right partner or co-founder can be a real struggle. Traditional methods like hackathons or meetups are great but only sometimes connect us with our ideal collaborator.\n\n🚀 **Monthly Collaboration Posts!** \nThis is our second monthly collaboration post on Stacker News! These posts will be a dedicated space for sharing what you’re building and discovering potential collaborators.\n\n[Checkout out our first one here.](https://stacker.news/items/338224)\n\n🛠️ **How It Works**\n\n- **Monthly Posts:** We’ll have a fixed schedule (like the 1st week of each month) for consistency and familiarity.\n- **Community Engagement:** We’ll boost these baby! So the entire Stacker News Community gets those ZAPS! \n- **Amplification through Social Channels:** Let's together broadcast these opportunities far and wide. \n\n✍️ **What to Include in Your Post** \nTo streamline the process, we suggest the following template for your posts but feel free to adjust Stackers!:\n\n- **Name/Nym:** [Your Name] \n- **Summary of What You’re Building:** [Brief description of your project or idea or GitHub.] \n- **What Kind of Help Are You Looking For?** (e.g., engineers, marketing, sales, legal, education, design, mentorship, advisors, venture capital, strategy, technical consulting.) \n- **Purpose:** Is this for fun, or are you aiming to build a Bitcoin business? \n- **How to Contact You:** [Your preferred contact method] \n\n🤝 **Let’s Build Together!** \nThis is an initiative that I hold dear to my heart. We have a strong collaboration environment at PlebLab, which I want to bring to the Stacker News community. We’re open to suggestions and excited to see how this idea evolves! I will also bring this up on Stacker News Live every first week of the month to get the most visibility for all the builders who participate, and try my best to facilitate an introduction or collaborator.\n\nReady to find your next co-founder or Building Partner? Post in the Monthly Collaboration thread.\n\n💪🏼 If you are ready to get building join [Top Builder](https://www.topbuilder.dev) registration ends on January 13th, 2024.\n\n🤘⚡- @Car \N 17533 \N 451165 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.00903786020719 0 \N \N f 129633875 \N 1 106162389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434707 2025-03-12 07:18:33.584 2025-03-29 22:39:47.091 ELI5 – What's happened to Silicon Valley Bank? ☠️ # Explain Like I'm Five\n\n\n\n1. Silicon Valley Bank is a bank.\n\n2. It holds money for customers.\n\n3. Generally, it loses money when holding customer money, so it needs to lend out at least as much as they hold.\n\n3. Most of its customers are Startups with large amounts of deposits.\n\n4. in 2020/21, when Jay Powell kickstarted the money printer 🖨️💸, a lot of VC-money poured into Startups and, thus, into SVB.\n\n5. SVB didn't know what to do with this money, so they purchased US Treasuries.\n\n6. At that time, $100 VC-money = $100 USTs.\n\n7. Jay regretted the amount of money printing, as everything got more expensive. 😥\n\n8. He pulled money out of the system.\n\n9. $100 USTs are now worth $60.\n\n10. $100 VC money =/= $60 USTs – uh oh.\n\n11. Startups hold bazillions of $$$ at SVB, but Jay only promises them $250,000 if SVB goes bye-bye.\n\n12. Startups 🏃‍♂️💨 ... SVB.\n\n13. SVB ☠️. \N 4802 \N 434707 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.0759039009748 0 \N \N f 223338550 \N 1 125034912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 05:20:36.854 f \N \N \N 0 0 0 0 1 0 0 297508 2024-11-16 10:08:58.831 2025-03-29 22:39:47.092 We're changing it up a bit at EagleSats So theres been a bit of discussion lately around Lightning spam or zapvertising, and just wanted to put our thoughts out there (since we were guilty of some of it 😅).\n\nFirstly, we totally agree.... with everyone on both sides.\n\nThis is an idea with loads of potential, and could possibly be the greatest innovation in advertising ever. Its the epitome of value for value - Great way for advertisers to get directly to users (=value), and users getting actual Bitcoin for essentially doing nothing out of the ordinary (=value).\n\nBut also, spam sucks. If you don't like clutter, you're probably never going to like a bunch of random 1 or 2 sat payments in your wallet.\n\nSo we've decided to make a change. We will now only send payments to addresses that have specifically opted in to receiving them.\n\nWe think this might be a better way of doing it. Yes it cut down the reach (substantially), but in the process it will increase the quality of recipient. So advertisers wont be wasting sats on people that don't care, or worse, create negative sentiment for their business by spamming!\n\nA higher quality of receiver means better engagement, which makes them worth more, which in turn *should* command a higher payment amount.\n\nIs this the right decision? Who knows 🤷‍♂️\n\nHave we shot ourselves in the foot by removing a large chunk of potential recipients? Maybe 🤷‍♂️\n\nBut we are part of a small group pioneering this new initiative, so we'll try some stuff and make it better as we go.\n\nAlso, YOLO right?\n\n\nWe're also working on some other features/ideas so stay tuned.\nIf you have any questions or recommendations let us know!\n\nAnd don't forget to add your Lightning address on our website if you want to get free sats and be part of the crew 🤙 \N 21771 \N 297508 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.491330468943 0 \N \N f 246330192 \N 1 32435353 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430993 2025-03-09 15:00:12.94 2025-03-29 22:39:47.093 How does OP_CAT enable covenants anyway? I went on a journey to wrap my head around how something as simple sounding as `OP_CAT` can enabled covenants and more complicated offchain contracts. Like I mention in the post, Andrew Poelstra is definitely the guy to listen to for the clearest descriptions of this, but maybe your mind is wired like mine and this re-wording is helpful. Also happy to hear if I misinterpreted anything! https://blog.yonson.dev/log/2024-02-vol3/ 16432 \N 430993 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.2412194443185 0 \N \N f 352954459 \N 6 70023543 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 412631 2025-02-22 14:56:49.515 2025-03-29 22:39:47.095 You Are Not Late This post has been around for a decade, but in a way it's [evergreen](https://stacker.news/items/331942). It's certainly highly applicable to btc. \n\nIt's easy to be mad at yourself, as many of us are, for not jumping at the opportunity when we first heard about btc when it was in the hundreds, or even lower. But your life will always be full of such disappointments, in btc and in everything. Jesus, it hurts to think of them all.\n\nIt's hard to see the frontiers of things, but the world is full of them, and has been since at least the industrial revolution. Just sticking w/ btc, there are so many ways to be at the edge of something whose velocity is nearly unimaginable, if you scope your attention properly! It's fun to think of some of the opportunities. But honestly, it will matter more to your life to consider this more broadly than just in regard to btc.\n\nSo no, you're not too late. Not even close. https://kk.org/thetechnium/you-are-not-late/ 20182 \N 412631 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.18093260157185 0 \N \N f 301902103 \N 2 17392844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 423874 2025-03-03 16:56:12.515 2025-03-29 22:39:47.096 My Bitcoin Journey: A Life-Changing Ride Hey everyone,\n\nI've been a silent member here for about half a year, and today marks my first post. I just want to share my journey with Bitcoin and how it has made a significant impact on my life.\n\nA bit about me: born and raised in Germany, from a well-off family, with a degree in mechanical engineering. Currently working in the hydrogen field, so yeah, I've got a bit of a background in physics, energy, and thermodynamics.\n\nNow, here's the thing about me – when I get interested in something, I dive deep, sometimes to the point of obsession. My therapist might call it a touch of autism, but I'm cool with the way my brain operates. I've always tried to think about people in general, considering problems and shitholes, aiming to leave as much harmony in the world as I can during my lifetime. This led me to delve into various topics – politics, left-right wing struggles, 9/11, geopolitics – you name it, always searching for that key to creating harmony, beyond just spotting symptoms.\n\nDuring the COVID era, spending most of my time in home office, I decided to upgrade my GPU to get more into gaming. While making adjustments to my computer, I stumbled upon a YouTube video about GPU mining this SHITETHER Coin in March '21. Long story short, I made some money with my 2 GPUs, got hooked, and within five days, set up a second desktop with 4 GPUs running. No gaming for months – I was deep into exploring this whole new world, especially during the bull market, drawn to all these different coins.\n\nI mined until early '22, bought some Shitcoins here and there and crashed into the bear market, including Terra Luna and later FTX. My shitcoins took a hit – mostly down 70%, one at 99% (yeah, got rugpulled there :D). But the silver lining was that I learned a lot from Bitcoin-only YouTube channels during this time (shoutout to Blocktrainer, it's in German, but it's wholesome). I realized there's more to BTC and started to shift my mindset. In mid-'22, I began my BTC-only Dollar Cost Averaging, buying more during dips and FOMOing when it surged. Now, 89% of my portfolio is BTC, and I plan to sell off those Shitcoins at some point. I am also counting FIAT here :D\n\nThere were trades in 21 different coins until I decided it was the perfect number to stop the shitcoinery.\n\nBeyond my coin history, what's more intriguing is the change in my mindset and life itself. Previously, I supported left-wing demonstrations, climate change activities and saw many problems in the world, but found no meaningful solutions. Now, I can see the solution, it blows my mind regullary and it's inspiring positive changes in my life. I've started doing sports again, quit smoking, sought therapy, and distanced myself from toxic people. It's become a life of Proof of Work, also for myself. A time of better understanding global affairs, armed with stronger arguments, mostly on my side, when it comes to addressing problems and solutions. And that I'm getting more and more into the long-term preference thing.\n\nI don't know where this journey ends, but I'm grateful for every step. At least I know that this topic, with all its nuances, will never lose my interest. And as we all know, it's always worth fighting for freedom and the best money/solution in the world :)\n\nHope you enjoyed this orange-pill story, as I always enjoy hearing new ones from others. Leaving you with a picture of what's currently swirling around in my head.\n\nHave a nice Weekend\n\nGratefully,\nB_Bc\n\n\n\n![GD-XErLWoAADYSM.png](https://m.stacker.news/13144) \N 19484 \N 423874 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.398033973236 0 \N \N f 181223428 \N 1 73723874 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404086 2025-02-15 14:17:48.411 2025-03-29 22:39:47.09 I get paid this Friday and if all goes well, it'll all be in Bitcoin This is it folks. I'm tired of all this fiat mess. I'm currently in the process of figuring out how much I need for spending per month, but outside of that, all my income is going to cold storage. \n\nI've explained it to the wife and she sounds like she gets it. We'll see. If HR sends to the pesos to the right place, all I have left to do is mix them coins from my CoinControl wallet and do the split every month. Done. \n\nI have to say I'm able to do this because I already have extreme low time preference. My consumption is very delayed --primarily because I hate being scammed by guilty pressure to buy unnecessary Chinese plastic toys from companies that use child labor.\n\nI'll update if all goes according to plan soon. \nP.S.: I'm not going to reach my stacking goal. I'LL FUCKING CRUSH IT!\n\nHere's the treasure map hermanos: \nhttps://substackcdn.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F706d02f6-d1c0-4f7c-904e-71bda6462c1a_789x668.jpeg\n \N 16556 \N 404086 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.2968372436078 0 \N \N f 173621671 \N 1 154650698 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435120 2025-03-12 13:31:27.955 2025-03-29 22:39:47.092 LNbits SaaS – A solution for schools projects and events This is another big new feature from LNbits, after the [last release of NOSTR-Market](https://darthcoin.substack.com/p/lnbits-nostr-market) from last week.\n\nThis time LNbits team worked hard to setup a SaaS server for LNbits, where users could buy a LNbits instance ready to be used in few clicks.\n[Their announcement is here.](https://twitter.com/lnbits/status/1648681629429243905)\n\nIf you have an event and you want to use Bitcoin Lightning Network for that event, LNbits can offer you more than 30+ extensions that could be used for various use cases.\n\nIf you want to start teaching kids in schools, LNbits SaaS also could be a good option, spin it up in just few moments.\n\nHere I wrote a detailed guide how to use LNbits SaaS for these two use cases:\n- EN - [LNbits SaaS – A solution for schools projects and events](https://darthcoin.substack.com/p/lnbits-saas-a-solution-for-schools)\n- ES - [LNbits SaaS: una solución para proyectos escolares y eventos](https://darthcoin.substack.com/p/lnbits-saas-una-solucion-para-escuelas)\n\nI hope will be useful for you guys and girls, enjoy! \N 622 \N 435120 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 27.2910202867032 0 \N \N f 424646209 \N 5 50996245 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 00:21:49.572 f \N \N \N 0 0 0 0 4 0 0 307609 2024-11-25 08:40:01.683 2025-03-29 22:39:47.096 PR closed: datacarriersize: Match more datacarrying by luke-jr Controversy aside, I thought how luke-jr went about making this change was incredibly sophisticated.\n\nHe adds a counter that considers bytes after the OP_FALSE OP_IF in a script* as "datacarrier" bytes.\n\nWhy I think this is sophisticated:\nthe concept of 'datacarrier' bytes is not new to bitcoin. In one light he's 'updating' the existing semantics for new ways people have figured out to add data to the chain.\n\nWhat I like about the design: it's elegant because it hooks into an existing paradigm in the codebase, in a way that's *arguably* (emphasis on arguably here) correct. Like yeah, that's a reasonable position to take.\n\nHe then adds a check that rejects txs with inputs with scripts that are above the 'datacarriersize' limit. This is also quite clever. I think that most nodes already have this number set, and so pushing this change out would have a dramatic impact on uh, let's just say a certain class of transactions, almost immediately as nodes upgraded.\n\nfwiw I strongly agree with Peter Todd that this is sub-optimal from a protocol design perspective, as it will encourage "motivated blockspace buyers" to find other, out of band, ways to get their transactions mined. https://github.com/bitcoin/bitcoin/pull/28408#issuecomment-1735079576 \n\n*and also data added via OP_PUSH / OP_DROP https://github.com/bitcoin/bitcoin/pull/28408 14255 \N 307609 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.4632333302448 0 \N \N f 274642373 \N 3 193958641 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403915 2025-02-15 11:19:02.244 2025-03-29 22:39:47.36 POLL: At what BTC price does self-custody get scary? When you hold your own keys, you can fuck it up. Fucking it up starts to feel a little heavier when the price goes up.\n\nDoes it make you nervous knowing that you are responsible for your wealth?\n\nNOTE 1: Scary doesn't mean bad. Growing up can be scary. Personal responsibility is scary.\n\nNOTE 2: If holding your wealth at a bank or a brokerage doesn't scare you at least as much, you are a sheep.\n\nNOTE 3: I like horror movies. \N 3642 \N 403915 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.6878659538433 0 \N \N f 16870015 \N 1 124457500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458122 2025-03-29 00:58:41.408 2025-03-29 22:39:47.361 When the snowflake becomes the bully When I was young, I was incredibly awkward. In early grade school, I literally didn't talk to anyone. My first teachers thought I a had a learning disability. I used to sit in my front yard alone and stare at the dirt for hours at a time. I didn't have a single friend that was outside of my imagination. I can not tell you the name of one other child or teacher from school from that time period. As far as school goes, it's almost like those first 9 years didn't happen.\n\nMy father was a very troubled man, not longed for this world. He didn't make "good decisions". When I was 7, he was dating a 17 year old. So naturally, we were fleeing the state together to keep him out of trouble for being with a minor. Now I was a strange child in a new school, in a strange place. I don't remember much about my childhood, but I do remember the time a kid twice my size threw me against a wall and I broke my arm in 3 places. It hurt. The pain was pretty bad, but what what hurt the most was the fact that I didn't know this kid. I never did anything to him. I was completely innocent. I felt bullied. Why would he do this? Later I would see him again in a court room crying. And then, I felt sorry for him. Imagine that. \n\nWhen I was ten, CPS, took me away from my father. I spent some time living in a scary building for children without homes. Eventually, they found my mother and she took me to live with her. I didn't speak for weeks. I didn't know this woman. I wanted to be with my dad, not this stranger. I was very angry. This was the story of the snowflake. \n\nI started to come online in fifth grade. Today I could show you a picture of my class and tell you almost everyone's name. Suddenly I was present in the world. I even made a few friends. We called ourselves the class clowns. Suddenly, I couldn't shut up. I would get in trouble daily for talking in class nonstop with my new best friend. He was a "real" friend. His name was Richard. 💚\n\nThis changed everything. Now I had an partner. We went everywhere together. He was a strange sensitive soul like me. He lifted me up and made me feel real. We would get to school early to look at books in the library. We shared all of our secrets with each other. I finally felt safe to be a human child in a human child place. \n\nThere were still bullies. And now, even I could be a bully! With the help of my new friend, I could also put people down in order to feel better about myself. But who was safe to bully? We found a pair of outcasts. One was fat, and one was skinny. Since one was fat, we knew we could outrun them as a pair. And the skinny one couldn't do anything about it on his own. So we followed them around, mocking them with Bulk and Skull theme song sounds. Shout out to the Power Rangers. There was another kid that was so strange, I could even bully him all on my own. I once saw him sitting alone playing with his own snot on the concrete. He was also mentally retarded. Yeah, now I was the kid that picked on that kid. He got it the worse. There was a boy from Cambodia that was always sitting alone. He once told us a story about pooping in holes where he came from. This was hilarious, so naturally, we laughed at him every chance we got. Yep, the snowflake had become the bully. I was putting people down to build myself up and while it may I have felt good in a way, I always knew it wasn't me. \n\nSince those early days, I have grown up a lot. I have exhausted myself with self reflection. I have journeyed around the world, seeking to better understand myself. And I now know, just like the bullies that hurt me, I was in a lot of pain most of my younger years. I have forgiven myself for hurting others. Now I stand up for the underdog and no bully will ever have power over me again. \n\nHere on Stacker News, there are some bullies. \n\nI can think of one. \n\nThey need not be named.\n\nThere is no reason to name them.\n\n\n\n\nConsider that for a moment.\n\n\n\n\nThere are many people on SN that are able to educate and offer value, while also being able to listen with compassion and lift others up. In fact, there are too many to list. Bitcoin and SN is full of loving individuals. We don't need gatekeepers. Bitcoin will be just fine with out any one of us judging who is "smart" enough to make the cut our earn a "badge".\n\nThere is no reason for this to go on. The beautiful thing about stacker, is we all get a vote. \n\nSo please help me. Be brave! Speak up. Downzap when you see disrespectful behavior, regardless of how popular the perpetrator is. Stand up for those who are being put down and pushed away simply because they aren't there yet when it comes to Bitcoin. We were all new to Bitcoin at some point. Stop defending bullies. Stop with the, "ohh, that's just how they are", nonsense. We ALL deserve better. We can make a change here. We can nurture a community that fosters diversity and educates all at the same time. There is NEVER a good reason to put others down. We only need love and kindness. Bitcoin is love in money form. So let's respect Bitcoin by doing what we know is right. And let's share everything, not just "the corn". Think bigger! Bitcoin and stacker news are for the whole world. We should aim to be inclusive and expansive. \n\nPlease help me.\n\nPlease share your stories about being bullied or being a bully. Is anyone out there like me, both a bully and a snowflake? If I am a overly sensitive, tell me about that. Be vulnerable. Be honest. Be open. Please zap⚡⚡⚡ this post so it can reach more eyeballs. \n\nAnd please, always be respectful. I love you all. Have a beautiful day. \n\n💚🪄🙏\n\n\n\n \N 11866 \N 458122 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.1511955579934 0 \N \N f 2482408813 \N 18 170665046 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 9 0 0 420666 2025-02-28 23:00:25.279 2025-03-29 22:39:47.362 Fountain Rewind 2023 The most comprehensive year-in-review of Podcasting 2.0 including stats, charts and awards.\n\n---\n\n> _“Apple is taking Podcasting mainstream by building it right into iTunes,”_\n\nsaid Steve Jobs in 2005.\n\n> _“Podcasting is the next generation of radio, and users can now subscribe to over 3,000 free Podcasts and have each new episode automatically delivered over the Internet to their computer and iPod.”_\n\nThese humble beginnings seem like forever ago and podcasting has come a long way since.\n\n---\n\nThanks to the great work happening in the Podcasting 2.0 community - we have access to a censorship-resistant library of over 4 million shows via The Podcast Index. We also have powerful new features being added to the RSS feed that work in a consistent way across the ecosystem. This is changing the way we think about podcasting as a medium and how we engage with podcast content, support creators and interact with other fans.\n\nCheck out the Fountain Rewind 2023 page for detailed stats and awards for the year:\n\n- https://fountain.fm/2023\n- https://twitter.com/fountain_app/status/1741459437015974355\n\n--- \n\nAlso view your own personal stats on your Fountain profile link on web - https://fountain.fm/merryoscar/rewind\n\nWould love to see people's top 5 shows if you want to share a screenshot below!\n\n---\n\n![merryoscar-fountain-rewind-2023.png](https://m.stacker.news/10133) https://fountain.fm/2023 17714 \N 420666 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 15.1321266573319 0 \N \N f 354259338 \N 3 204149495 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 456604 2025-03-27 17:39:26.163 2025-03-29 22:39:47.091 On the Subject of Mastery and Achieving Mastery Let me start by briefly telling my story. I am a finishing carpenter working on new home construction in western Canada for over 16 years. I have been thinking a lot lately about achieving mastery and the meaning of mastery itself. The reason behind all this thought about mastery is that for the past few years, I have been receiving praise on the quality of my work quite a lot. It's coming to a point that the praise is no longer only coming just from customers, but also from other trades working on the same house, cabinet guys, hardwood floor guys, tile guys, painters, etc. Especially if the person do not know me, they would start work on the house, look at my work, and come over to tell me that I'm doing great work or something along those lines. It definitely feels good to receive the praise, but lately I've been thinking to myself if that makes me a master carpenter? When I stand back and reflect on the question, I truly don't think or feel that I have achieved mastery status. I am very experienced, yes, and I do take time to try to do good quality work; but I know there are many skills I can still improve on, I still make mistakes, and there are certainly things related to carpentry I am not good at doing or outright don't know how to do. Maybe also because I learned from a very skilled master who set the bar really high, I feel that I'm still far from achieving what my master could do, and thus, am still far from becoming a true master.\n\nI had discussions with a two of my friends on the topic of mastery. One tells me that mastery means when most people thinks what you do is of high quality or standard, that it's achieved through consensus of the people who utilize or consume your work. Which, by that definition, I'm a master according to him. The second friend tells me that mastery includes someone that does something frequently in a focused way, has an expert point of view, and can explain his / her view in a simple way that a normal person can understand. The master also contributes to the progression of the field, and his / her work has significantly above average quality. I've simply been doing my work and don't think I have contributed to the progression of my field, so perhaps I'm correct to not consider myself a master. Either way, I am still learning more and still trying to perfect my craft each day, while sincerely progressing towards true mastery, in trying to become a master carpenter.\n\nNow that I've told my story, what about yours?\n\nWhat does mastery mean to you?\n\nWhat does it mean to achieve mastery in your craft and how do you achieve it?\n\nDo you consider yourself a master of your craft? Why or why not?\n\nAnd do you plan on achieving mastery if you haven't already? Why or why not?\n\nThank you for your time. \N 8168 \N 456604 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 0.298869414800507 0 \N \N f 9096660 \N 1 232706610 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444450 2025-03-19 22:11:45.146 2025-03-29 22:39:47.092 Where were you last halving? I started thinking back to the last halving and how my life has changed. It was the beginning of the covid scare, and although I had owned bitcoin for two years at that point, I was by no means obsessed. \n\nI mostly spent my time in a dialysis facility, wearing a mask, gown and gloves, helping my mother get through her treatments. It was boring as hell. I spent my time reading on my phone. I read a few articles on Bitcoin Magazine, then watched a few Andreas Antonopoulos videos. The publicity surrounding the halving is probably what drew my attention. My mother would sleep through most of the sessions. By the summer I downloaded Cash App and set up a small DCA, while smash buying the dips. That really was the start of my journey. \n\nDo other stackers have specific memories of the last halving? I'd like to hear about them. \N 4459 \N 444450 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 27.569371848025 0 \N \N f 25013958 \N 1 249957652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422856 2025-03-02 18:38:20.134 2025-03-29 22:39:47.094 What's the biggest myth you believed about bitcoin? I believed that bitcoin was the first crypto currency. You hear this ALL THE TIME still today. I'm not a historian but my understanding is that eCash was the first crypto currency. We live in a time of unbelievable access to information but it seems that no amount of access overcomes our laziness and lack of skepticism.\n\nSo what is the biggest myth you believed about bitcoin or what is the biggest myth you see people falling for? \N 17237 \N 422856 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.68320946205561 0 \N \N f 435505726 \N 3 99311719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 450108 2025-03-23 18:57:18.488 2025-03-29 22:39:47.098 Secret Sauce of SN’s Success On paper, Stacker News shouldn’t have succeeded. 100k sats is not a huge sum in the grand scheme of things, but it gives a strong signal that people are willing to incur losses (at least initially) and slog it out to make their territory profitable. \n\nAnd it’s not just the monetary cost, either. Founders must invest their time and energy - which are arguably more vital currencies than sats - into building a vibrant community. This involves cold-messaging strangers on Nostr and other platforms in hopes that some will set foot here. This may also involve gifting top posters of the week some sats as a form of encouragement. \n\nJust what is it about Stacker News that appeals to so many Stackers to embark on this high-cost venture? \n\n- The desire to contribute back something to SN?\n\n- The opportunity to build a curated space that they can call their own? \n\n- A profound passion for their subject area and drive to spread it far and wide? \n\n- A wish to benefit from the high-voltage signal that Stackers are contributing? \n\n- A sense of responsibility to fellow Stackers who post in their territory day in, day out? \n\n- A desire to be more actively involved in the sats circular economy? \n\nThe reasons for the motivations behind Stackers’ steadfast commitment are probably multifarious. What strikes me as interesting is that the interplay of these local conditions and high-functioning individuals fosters the cultivation of territories and continued growth of SN. Do you think it will be (im)possible to replicate SN’s success elsewhere? \n\n \N 2734 \N 450108 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.2306183117601 0 \N \N f 446886260 \N 3 154428402 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 457845 2025-03-28 18:44:17.883 2025-03-29 22:39:47.099 What you did for Bitcoin last week? ### What you did for Bitcoin last week?\n\nLet's start a new weekly "ask SN" post.\nMany people are just like "buy Bitcoin and HODL" waiting for some kind of celestial sign to move something.\nBut that is NOT enough.\nPlease post here (in the limits you can reveal it), what you did in the last week for Bitcoin. Can be anything related to Bitcoin, not just coding apps.\n\n[![vader-what-you-did-for-bitcoin.jpg](https://i.postimg.cc/MKbmqy5R/vader-what-you-did-for-bitcoin.jpg)](https://postimg.cc/vcTVvxpH)\n\nFor those noobs, read more here:\nhttps://darthcoin.substack.com/p/what-you-did-for-bitcoin\n\nI start: last week I translated (or finishing translations) for Zeus wallet and Blixt wallet. Also I wrote some quick bitcoin guides for some private noobs groups I have. \N 11590 \N 457845 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 16.1741634826683 0 \N \N f 682319792 \N 6 27766273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 2473 2022-10-13 15:11:35.232 2025-03-29 22:39:47.36 Which territories will still be around in X months? Give me your predictions for the next 3, 6, 12 months.\n\nAnd then we'll see if you were right or not.\n\n_Will add my predictions as a comment since I need to think about them more first._ \N 21026 \N 2473 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.2882870539036 0 \N \N f 236763925 \N 2 14122352 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 333299 2024-12-17 16:12:12.558 2025-03-29 22:39:47.091 and, my social media detox begins. hi friends,\n\nas you all well know, i love books. i love reading them. i love talking about them. and i love talking about them with other people. \n\nhowever, i have found that the social media side of books was becoming all too overwhelming for me. i started my pages in january of this year to share my love for books, meet good people, and talk about all of the things i love. but, the more i exposed myself to it, that is when the comparison, the perfectionism, and the obligation to keeping up with all of it started to really hit.\n\ni started to ask myself questions like: \n\n"why can't my reels go viral like person a, b, or, c?"\n\n"why isn't the algorithm picking up on my blurbs and posts anymore?"\n\n"why aren't my followers seeing anything i post anymore, and vice versa?" \n\nthis was startting to become my whole world and personality. my mental health has been declining, and sometimes you just have this realization where enough is enough. \n\n__so, i decided to delete all of them off of my phone. for now, as i work on myself.__\n\ni don't know how long i will be gone from it, but long enough so i can work on myself, and put myself in a good and healthy headspace again with better boundaries, and when to say no to things. \n\nin the meantime, i still want to write here on stacker news because i still love books and want to talk about them. just, not in a way that is so draining like mainstream social media is. \n\ni give my greatest gratitude and thanks to you all for being here, and being such a supportive group of people by reading all my blurbs and blah blahs about everything book and non-book related. \n\ntake care, happy reading, and stacking! \n\n- your favorite bookstastacker <3 \N 1726 \N 333299 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2495090114123 0 \N \N f 44342710 \N 1 184897515 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448343 2025-03-22 14:58:22.029 2025-03-29 22:39:47.091 Good YouTube channels for devs Do you have any favorite coding/developer YouTube channels\n\nI feel like there should be more that fit my interest than I've found.\nI like [Fireship](https://www.youtube.com/@Fireship) for news and updates\nI like [Traversy](https://www.youtube.com/@TraversyMedia) for tutorials\nI like [Base58](https://www.youtube.com/@Base58btc) for Bitcoin dev\n\nI also run the [plebdevs](https://www.youtube.com/channel/UCRPvdcPYyWAXF7cOjW_dJCA) channel myself (which is mainly just live coding / workshops)\n\nBut that's about it, everything else I find seems either click baity and shallow or they don't post enough.\n \N 20911 \N 448343 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 5.98975872117276 0 \N \N f 26130893 \N 1 86531848 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:37:03.537 f \N \N \N 0 0 0 0 1 0 0 200669 2024-07-16 08:40:16.702 2025-03-29 22:39:47.092 An app can be a home-cooked meal -- Robin Sloan on coding for yourself This actually got posted in ~tech in January, but it was from @hn and I don't think anyone clicked through to read it. That's a shame. I thought about throwing this in there or ~devs or someplace similar, but honestly, it's about so much more than just code. \n\nThis is a piece by the author Robin Sloan, a fantastic writer of fiction, but also someone who's been coding on and off for years, but never at a professional level. \n\nAnd he decided to make a chat app just for his family. Four people. No plans to expand it to ever be useful for anyone else.\n\nThe requirements there are drastically different, and I love the analogy he comes up with:\n\n>The exhortation “learn to code” has its foundations in market value. “Learn to code” is suggested as a way up, a way out. “Learn to code” offers economic leverage, professional transformation. “Learn to code” goes on your resume.\n>\n>But let’s substitute a different phrase: “learn to cook”. People don’t only learn to cook so they can become chefs. Some do! But many more people learn to cook so they can eat better, or more affordably. Because they want to carry on a tradition. Sometimes they learn because they’re bored! Or even because they enjoy spending time with the person who’s teaching them.\n\nBut the whole thing's worth reading. Just a delightful little piece on the differences between creating something for your family or for the world as a whole.\n\n https://www.robinsloan.com/notes/home-cooked-app/ 666 \N 200669 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.2426459172916 0 \N \N f 141715313 \N 3 152998047 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400943 2025-02-12 16:08:25.403 2025-03-29 22:39:47.095 How much are sats worth to you? I'm curious what people's mental exchange rate is for the value of sats. I treat them as more or less equivalent to US pennies when deciding if stacking activities are worthwhile. That implies a Bitcoin valuation of $1 million, which I think most of us expect to see in the next few years.\n\nThis is a question about anticipated value, rather than current exchange rates. \N 19117 \N 400943 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.790869802983138 0 \N \N f 854137009 \N 6 108971304 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446689 2025-03-21 12:20:38.359 2025-03-29 22:39:47.096 PlebDevs Starter: New Free Beginner Developer Course ![](https://m.stacker.news/64757)\n\nThis is a free short intro course for ABSOLUTE beginners wanting to pick up some basic coding / webdev skills.\n\nI built this mostly to serve as a precourse to help beginners that wanna go through the frontend course but might need a bit more exposure and time spent on the foundational topics.\n\nThis is the 2nd week since the plebdevs.com launch and it's been exciting to see people starting to use the platform give me feedback and requests for what they want to see. I've got more content and more improvements to the platform coming soon but please give me any feedback you have!\n\nOnwards! https://plebdevs.com/content?tag=courses 21349 \N 446689 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 26.5133930866205 0 \N \N f 470315011 \N 3 23238247 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 413618 2025-02-23 11:55:25.272 2025-03-29 22:39:47.097 Using Bitcoin has legal consequences I've been struggling with the following. \n\nWe all want Bitcoin to be used more and hopefully replace FIAT at some point in a distant future. We try to onboard merchants to accept Bitcoin as well as orange pill more users to buy Bitcoin and then subsequently spend it. We try to hodl and then preach do not hodl, spend and replace This by itself is already quite tough to convince people of this behavior since most just hope for increase in price, that is why hodl is so popular.\n\nThat is not what I want to talk about though. There is another even bigger hurdle which keeps people from using bitcoin.\n\nFor most normal people in western economies, spending bitcoin has time consuming consequences and probably a moral/psychological barrier. Let me explain.\n\nIf someone were to spend bitcoin for a coffee on a regular basis and they did everything by the book, they'd have to calculate how much gain/loss was produced by the spent bitcoin. And let's face it, nobody is going to do that. That kind of bookkeeping is just retarded. Spending Bitcoin should be seemless, fast, and not add another headache. This is not going to work.\n\nAssuming, nobody can be bothered with doing their own accounting based on their daily expenditure in Bitcoin, so one could argue that by asking people to spend bitcoin, we are basically asking them to peform an illegal activity (to break the law). \n\nAnd this is the issue. Only minority of people are going to dismiss the legal consequences that could arise from spending bitcoin and not reporting it. You have to be pretty deep down the rabbit hole in order for you to say fuck it, I'll just use it and fuck the gov. Normal person will not do that and we cannot expect them to do that.\n\nI know that many of us here, do not bother with this and we all know what @DarthCoin thinks :), however, the sad reality we are fighting here is what I have described above. \n\nI am not saying that orange pilling more and more people is a lost cause, on the contrary, that is the only way to prevail. Plus we are still very early in the Bitcoin age and I am sure this won't be an issue when majority of the world is orange pilled. I just wanted to voice this concern that is not being discussed that much and I feel is being dismissed by a lot of the bitcoin community. Thanks for reading.\n\n\n\n \N 880 \N 413618 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.5933370266039 0 \N \N f 43196763 \N 1 10137261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415726 2025-02-25 02:47:16.788 2025-03-29 22:39:47.091 I'm Brad Mills, bitcoiner in the streets, shitcoiner in the sheets, AMA! Hi everyone! I am @bradmillscan, long time Bitcoiner and angel investor in Bitcoin companies. \n\nI'm host of the Magic Internet Money podcast (bradmills.ca/podcast) and run the Pleb Ventures group, which is a group of Bitcoin-only angel investors & VCs deploying capital to the Bitcoin-only ecosystem.\n\nI am also known for being the Peter Schiff of DeFi as I'm very critical of Ethereum & Crypto generally, while I spend a lot of my time using other blockchains & also investing in that ecosystem to have a deep understanding of not just Bitcoin but everything going on in the crypto ecosystem.\n\nOne thing I'm super excited about right now is Geyser Grants, which is an initiative I co-founded recently with the Geyser.fund team to help fund Bitcoin culture by supporting Bitcoin-only creators (artists, musicians, podcasts, books, etc) as well as developers & educators globally.\n\n\nAMA! \N 713 \N 415726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9055897303715 0 \N \N f 210952520 \N 1 137832646 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448201 2025-03-22 13:33:01.008 2025-03-29 22:39:47.093 What was your favorite Stacker News post of 2023? Link all your favorite posts of the year below!\n\nIf you need a refresher on some of the top posts as voted by all stackers, check out the [yearly leaderboard](https://stacker.news/top/posts/year) or [set a custom date range](https://stacker.news/top/posts/custom?from=1672079732098&to=1703615732098). \N 19996 \N 448201 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.8558062272291 0 \N \N f 380106459 \N 5 84594765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:38:37.169 f \N \N \N 0 0 0 0 2 0 0 420888 2025-03-01 08:34:58.772 2025-03-29 22:39:47.096 TheRamblingThoughts: Not everyone will run a node \nI'm working with autistic teens and adults, and I still have the knee jerk temptation of orange pilling them. They do not have the ability to run a node. The central banking cartels and downstream effects of a control economy are so outside of their purview, that bringing it up would be ridiculous. \n\nBut. \n\nI am here to help them gain independence. Sovereignty is a ladder and regardless of where someone is on the ladder, it would be my job to guide them into more of it. Not everyone can run a node, some people have intellectual disabilities, physical limitations and higher priorities. \n\nFunnily enough I think it would be easier than one might assume to run a node, I have a client who could do it and have a semblance of what it means. The client has the ability to work, and when he sees trump on the screen, he knows he's the president, and he knows politicians are liars. \n\nI have a few other clients that don't have the ability to work or take care of themselves at all. Running a node is plugging something into the wall, making sure the light is on, and attaching your wallet to it. I aint talkin about a lightning node btw I'm talking about core. \n\nIt boggles my mind on what people find so insurmountable about running bitcoin core. I think it might just be people projecting their own bias or inserting their own objections the thing. Start9 and Umbrel can be set up by a loved one, an assistant or nurse can make sure the thing continues being on and that the internet bill is paid. Is it harder managing the persons Bank of America account or is it harder attaching a wallet to your node and leaving the thing on? \n\nWould be cool if I took one of these guys to a bitcoin meetup with a node in a phone and had them teach fools how to conduct a peer to peer transaction. Could even get real fancy, and have them send a freak some e-cash. When I was at bitcoin Miami an OG pulled me to the side and explained what a peer to peer transaction was using hand signals......\n\nSo here we are at another conclusion, \nSovereignty is a ladder that every last human being on the planet should attempt to climb and regardless of the rung you find yourself in, don't let others pontificate about how you "can't" because its probably just them being retarded. \N 5520 \N 420888 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.14647191840459 0 \N \N f 1157331764 \N 9 234254029 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 407836 2025-02-18 12:17:33.23 2025-03-29 22:39:47.096 Top SN Territories - 17 weeks later ## **`Top Territories Q1-2024`** 🎩\n\nIt's time to talk territories and to look at how they've been performing since going-live in December 2023. Recently I have been reviewing post data on SN to try and encourage more long-form content. \n\n- In Part 1, I shared some [data to help you become a better Stacker ⚡](https://stacker.news/items/441843/r/davidw)\n- In Part 2, I shared [which stackers were posting much POW](https://stacker.news/items/485622). \n- In Part 3, today we're reviewing the best of the [Stacker News Territories](https://stacker.news/top/territories/forever). \n\nBelow are **`21 charts`** that you might find useful. For the first few charts, we'll look at just the top stacker-led territories, to examine number of sats, comments, comment sats & total zaps. \n\n**_Few things to note_**: \n- the data driving these charts is only pulling-in posts with >1k sats total.\n- the data ignores any post data below 1k sat threshold, so 9,602 posts total.\n- territories have been flagged as _Core_, _New_, _Archived_ & _Moderated_.\n- _core_ being ~bitcoin, ~nostr, ~tech and ~meta.\n- most charts are using data since launch between `5-Dec-23 > 29-Mar-24`.\n\n![divider](https://m.stacker.news/23796)\n\n\n\n## **`1. Top NEW Territories - Total Sats`**\n\nOf the new territories since they went live 5th December, we can view the **number of sats from >1k sat posts cumulatively generated for each territory**. ~lightning, ~econ & ~booksandarticles are in a league of their own.\n\n_Note_: along the x-axis are weeks since the new territories became live. e.g. week 1 corresponds to w/c 4th December.\n![top-territories-sats](https://m.stacker.news/24142)\n\n----\n\n## **`2. Top NEW Territories - Comments`**\n\n**Number of comments total from >1k sat posts** cumulatively shown per territory since 5th December. ~econ & ~booksandarticles are in orbit already!\n\n![top-territories-comments](https://m.stacker.news/23997)\n\n----\n\n## **`3. Top NEW Territories - Sats From Comments`**\n\nFor new territories, the **number of sats from comments for the best performing territories** on this metric. Again ~booksandarticles & ~econ way ahead, with ~culture doing great early-on before getting archived. It's back now though!\n\n![top-territories-comment-sats](https://m.stacker.news/23995)\n\n----\n\n## **`4. Top NEW Territories - Zaps`**\n\nThe **number of stackers that zapped** a >1k sat post inside each territory. Familiar theme here, ~booksandarticles, ~econ & ~lightning the top 3. ~charts is about to pip ~privacy to 4th spot.\n\n![top-territories-zaps](https://m.stacker.news/23998)\n\n\n![divider](https://m.stacker.news/23796)\n\n\n## **`5. Top NEW Territories - Founder Influence`**\n\n**Total sats earned by founders of that territory can be shown as a percentage of the total sats**, on >1k sat posts. This is perhaps suggesting ~devs, ~privacy, ~oracle, ~stacker_sports & ~earth could encourage more stacker involvement.\n\n![top-territories-founders](https://m.stacker.news/23990)\n\n----\n\n\n## **`6. Top NEW Territories - Posts with >1k Sats`**\n\n![top-territories-1k-sats](https://m.stacker.news/24136)\n\n----\n\n\n## **`7. Top NEW Territories - Posts with >10k Sats`**\n\n![top-territories-10k-sats](https://m.stacker.news/24135)\n\n----\n\n\n## **`8. Top NEW Territories - Number of Zaps on Posts`**\n\n![top-territories-total-zaps](https://m.stacker.news/24134)\n\n\n![divider](https://m.stacker.news/23796)\n\n## **`9. Top OVERALL For Sats - exc. Bitcoin & Meta`**\n\n![top-overall-territories](https://m.stacker.news/24137)\n\n\n👆 This chart is pretty crazy. ~bitcoin & ~meta may be untouchable for total sats and were therefore excluded from the graphic. But ~nostr & ~tech have been overtaken by most of these new territories now. The best territories overtook them in Week 8 and the chasing pack in Week 14, when MSM went live. ~ecash in its short history had some great traction and would have appeared, but has since been archived. Might be a great candidate for a passionate stacker to pick-up, if you can match the passion of the prior founder.\n\n-----\n\n## **`10. Top OVERALL - Cumulative Weekly Stackers Posting`**\n\n\n![stackers-posting-top-territories](https://m.stacker.news/24139)\n\n![divider](https://m.stacker.news/23796)\n\n\n## **`11. Territories By Type - Sats`**\n\nTracking back to 5th December (Week 1), you can see that by Week 12, **total sats from new territories** overtook the total sats for core territories like ~bitcoin, ~meta, ~tech, ~nostr. This is a pretty big deal. It shows @kr was right all along and that territories have been a resounding success for the stacker community.\n\n![territory-types-total-sats](https://m.stacker.news/24063)\n\n----\n\n## **`12. Territories By Type - Comments`**\n\nAfter tracking the core territories for weeks, in Week 16 there were **more comments on new territories than the core ones** (at least on posts with >1k sats). \n\n![total-comments-by-type](https://m.stacker.news/24062)\n\n----\n\n\n## **`13. Territories By Type - Zaps`**\n\nZaps for the new territories are still slightly behind the core territories, but the numbers are much more stable, with more shallow peaks & troughs.\n\n![zaps-from-territories-by-type](https://m.stacker.news/24061)\n\n\n----\n\n## **`14. Territories By Type - Sats From Comments`**\n\nBesides Week 12-14, sats from comments are tracking each other pretty nicely. Not much difference at all between new & core territories.\n\n![sats-from-comments-by-type](https://m.stacker.news/24064)\n\n\n\n![divider](https://m.stacker.news/23796)\n\n## `15. All Territories - # of 1k Posts`**\n\nIf there was ever any doubt whether territories were good for Stacker News - this chart for **total number of posts achieving 1k sats** says it all... 🚀\n\n![territories-with-1k-sat-posts](https://m.stacker.news/24079)\n\n\n----\n\n## `16. All Territories - # of 10k Posts`**\n\nAnd more and more stackers are feeling comfortable writing longer and more successful posts, with this chart showing **total posts achieving 10k sats or more**.\n\n![territories-with-10k-sat-posts](https://m.stacker.news/24080)\n\n\n----\n\n\n## **`17. All Territories - Total Sats`**\n\nThe number of stackers zapping posts is clearly on the up this quarter too. The new territories are taking-over the market dominance the monopoly of ~bitcoin territory had.\n\n![total-sats-core-territories](https://m.stacker.news/24085)\n\n\n----\n\n\n## **`18. All Territories - Sats Per Post`**\n\nThe sats generated per post is somewhat stable or stagnant on the whole, in spite of Bitcoin NGU technology doing its thing & satoshis becoming more valuable. Stacker News sats-per-post now becoming a stablecoin, pretty much 😅\n\n![sats-per-post-core-territories](https://m.stacker.news/24081)\n\n\n----\n\n\n## **`19. All Territories - Zaps Per Post`**\n\nNo huge differences here between where you post your article. with between 16 and 24 people zapping each post. ~meta remains in a league of its own for **number of stackers zapping each post**.\n\n![zaps-per-post-core-territories](https://m.stacker.news/24086)\n\n\n----\n\n## **`20. All Territories - Comments`**\n\nComments & engagement is also pretty stable this quarter, with ~meta and ~nostr having bigger quarters for **number of comments per post** than prior months.\n\n![comments-per-post-core-territories](https://m.stacker.news/24078)\n\n----\n\n\n## **`21. All Territories - Unique Stackers Posting`**\n\nLastly, this shows the **number of individual stackers posting to ~bitcoin is reducing**, whilst other territories are rising rapidly. Again territories are well embedded in SN culture now, ready to propel it to new heights by this next cycle.\n\n![number-of-stackers-posting-by-territory-type](https://m.stacker.news/24111)\n\n![divider](https://m.stacker.news/23796)\n\n## **❓ Why look at Territory data?**\n\nSo why go to all this effort, when we can see the totals for **[Top Territories](https://stacker.news/top/territories/forever)** at any snapshot in time? The aim with this post was to dig a little deeper into territories that have taken-off naturally, those that are hidden-gems with traction & those territories that are still heavily supported by their founders at this time. To see how the landscape has changed over time. To see where it may be best to post. It was helpful when performing this analysis to see where there is signal on the site currently, especially after having muted a bunch of territories at launch. If you are like me, you might wish to reassess if you should unmute some.\n\nBonus reason: It was also useful for me when I saw a bunch of territories that were archived, to analyse which had a potential future to take on myself. This led me to secure ~culture which was heavily used from Week 1 of territory season. I also wanted to experiment with bringing higher-quality signal to the ~AI territory. More on both of those soon!\n\nWe're now 17 weeks since the launch of Territories as a SN feature, so the hope is we can reassess our muted territories, and give credit to those fostering a great community here on SN, since the initial flurry of new 'subs' created a big splash with the rowdy locals in the [daily saloon](https://stacker.news/daily).\n\n\n![divider](https://m.stacker.news/23796)\n\n\n## **`All Active Territories - 5th Dec 2023 to 29th Mar 2024`**\n\n\n| **Name** | **Founder Sats** | **Sats** | **Avg Sats** | **Avg Comms** | **Avg Zaps** | **Authors** | **>1k Posts** | **>10k Posts** |\n| ----------- | -------- | ----------- | ---------- | ----------- | -------- | --------- | -------- | ------- |\n| **~bitcoin** | **7** | **5.85m** | **4,3k** | **17.2** | **21.6** | **1,229** | **1,357** | **95** |\n| **~meta** | **18** | **1.32m** | **4.1k** | **27.6** | **27.2** | **204** | **325** | **19** |\n| **~lightning** | **3%** | **642k** 🥇 | **5.1k** | **11.4** | **22.6** | **70** | **125** 🥉 | **12** 🥇 |\n| **~BooksAndArticles** | **14%** | **583k** 🥈 | **3.1k** | **15.8** | **20.1** | **46** 🥇 | **186** 🥇 | **8** 🥈 |\n| **~econ** | **22%** | **553k** 🥉 | **3.0k** | **14.4** | **18.0** | **44** 🥈 | **184** 🥈 | **4** |\n| **~privacy** | **56%** | **394k** | **5.0k** | **16.4** | **25.2** | **41** 🥉 | **76** | **4** |\n| **~builders** | **8%** | **370k** | **4.9k** | **13.5** | **21.7** | **26** | **75** | **3** |\n| **~mostly_harmless** | **16%** | **368k** | **7.4k** 🥉 | **22.6** | **27.3** | **17** | **50** | **6** |\n| **~oracle** | **43%** | **340k** | **16.2k** 🥇 | **29.8** 🥉 | **21.2** | **9** | **21** | **2** |\n| **~tech** | **4%** | **327k** | **2.4k** | **12.0** | **16.1** | **157** | **132** | **1** |\n| **~nostr** | **2%** | **279k** | **4.1k** | **14.3** | **21.1** | **207** | **68** | **5** |\n| **~culture** | **6%** | **240k** | **3.3k** | **21.4** | **18.9** | **28** | **72** | **2** |\n| **~charts** | **19%** | **233k** | **2.5k** | **16.9** | **21.3** | **22** | **91** | **0** |\n| **~Stacker_Sports** | **47%** | **221k** | **2.5k** | **16.6** | **12.6** | **15** | **88** | **2** |\n| **~bitcoin_beginners** | **11%** | **221k** | **2.8k** | **16.3** | **19.5** | **35** | **80** | **3** |\n| **~ecash** | **38%** | **204k** | **4.5k** | **13.8** | **24.0** | **20** | **45** | **6** |\n| **~AMA** 🚩 | **1%** | **197k** | **15.1k** 🥈 | **58.5** 🥇 | **41.5** 🥇 | **12** | **13** | **8** 🥈 |\n| **~devs** | **66%** | **191k** | **4.3k** | **13.9** | **22.4** | **20** | **44** | **3** |\n| **~bitdevs** | **32%** | **168k** | **4.5k** | **8.1** | **23.3** | **14** | **37** | **5** |\n| **~Personal_Finance** | **9%** | **165k** | **7.8k** | **28.7** | **21.2** | **13** | **21** | **1** |\n| **~earth** | **44%** | **134k** | **3.0k** | **25.9** | **22.0** | **20** | **45** | **1** |\n| **~security** | **7%** | **133k** | **2.6k** | **7.2** | **16.6** | **30** | **50** | **0** |\n| **~libertarian** 🚩 | **0%** | **125k** | **2.6k** | **18.4** | **16.7** | **16** | **48** | **2** |\n| **~health** 🚩 | **9%** | **76.4k** | **2.2k** | **20.6** | **17.7** | **22** | **35** | **0** |\n| **~crypto** | **40%** | **74.2k** | **3.7k** | **13.3** | **21.7** | **11** | **20** | **1** |\n| **~gaming** | **2%** | **64.3k** | **1.9k** | **8.0** | **9.2** | **20** | **34** | **0** |\n| **~history** 🚩 | **0%** | **59.8k** | **3.3k** | **24.5** | **20.2** | **10** | **18** | **1** |\n| **~AGORA** 🚩 | **64%** | **58.5k** | **3.1k** | **11.6** | **19.4** | **7** | **19** | **1** |\n| **~Music** 🚩 | **17%** | **57.3k** | **3.0k** | **28.4** | **16.1** | **11** | **19** | **2** |\n| **~Design** 🚩 | **43%** | **52.2k** | **3.1k** | **20.9** | **21.4** | **5** | **17** | **0** |\n| **~bio** | **0%** | **50.8k** | **2.3k** | **10.6** | **11.1** | **79** | **22** | **0** |\n| **~podcasts** | **52%** | **49.7k** | **3.8k** | **18.8** | **21.8** | **10** | **13** | **1** |\n| **~opensource** | **9%** | **49.5k** | **2.6k** | **10.4** | **18.5** | **12** | **19** | **0** |\n| **~art** | **14%** | **47.3k** | **2.2k** | **9.2** | **15.9** | **11** | **22** | **0** |\n| **~ideasfromtheedge** | **31%** | **46.2k** | **4.6k** | **19.6** | **23.6** | **7** | **10** | **1** |\n| **~science** | **23%** | **43.1k** | **2.3k** | **16.4** | **14.8** | **11** | **19** | **0** |\n| **~alter_native** | **0%** | **33.0k** | **2.4k** | **19.0** | **17.2** | **7** | **14** | **0** |\n| **~Dogs_And_Cats** | **13%** | **30.9k** | **2.4k** | **9.8** | **13.2** | **11** | **13** | **1** |\n| **~DIY** | **0%** | **28.4k** | **4.7k** | **22.7** | **28.8** 🥉 | **5** | **6** | **1** |\n| **~Photography** | **5%** | **21.8k** | **1.6k** | **13.5** | **14.8** | **10** | **12** | **0** |\n| **~NixOS** | **34%** | **20.5k** | **1.6k** | **7.4** | **12.8** | **8** | **13** | **0** |\n| **~conspiracy** | **0%** | **19.2k** | **3.2k** | **14.0** | **24.8** | **6** | **6** | **0** |\n| **~AI** | **0%** | **15.3k** | **2.2k** | **13.7** | **19.4** | **6** | **7** | **0** |\n| **~Linux** | **0%** | **13.0k** | **4.3k** | **22.7** | **30.3** 🥈 | **3** | **3** | **0** |\n| **~Outdoors** | **0%** | **9.1k** | **1.8k** | **14.0** | **17.4** | **4** | **5** | **0** |\n| **~lol** 🚩 | **14%** | **9.1k** | **2.3k** | **15.0** | **21.3** | **4** | **4** | **0** |\n| **~garage** | **32%** | **8.3k** | **2.1k** | **11.5** | **19.0** | **4** | **4** | **0** |\n| **~UFOs** | **38%** | **8.1k** | **2.7k** | **12.3** | **18.0** | **3** | **3** | **0** |\n| **~Ordinals_Inscriptions_Runes** | **100%** | **6.2k** | **1.6k** | **4.8** | **12.0** | **1** | **4** | **0** |\n| **~B2B** 🚩 | **0%** | **6.0k** | **1.5k** | **6.5** | **8.0** | **4** | **4** | **0** |\n| **~Cannabis** | **19%** | **5.5k** | **1.8k** | **36.3** 🥈 | **25.3** | **3** | **3** | **0** |\n| **~food** | **0%** | **2.6k** | **1.3k** | **11.0** | **26.0** | **1** | **2** | **0** |\n| **~antifragile** | **100%** | **2.5k** | **2.5k** | **9.0** | **21.0** | **1** | **1** | **0** |\n| **~FiresidePhilosophy** 🚩 | **100%** | **2.3k** | **2.3k** | **3.0** | **11.0** | **1** | **1** | **0** |\n| **~dotnet** | **100%** | **1.9k** | **1.9k** | **12.0** | **20.0** | **1** | **1** | **0** |\n| **~hiphop** | **0%** | **1.1k** | **1.1k** | **2.0** | **2.0** | **1** | **1** | **0** |\n| **`Grand Total`** | **`14.3%`** | **`14.2M`** | **`3.9k`** | **`17.5`** | **`21.1`** | **`1571`** | **`3607`** | **`201`** |\n\n\n_🚩 refers to moderated territories_\n_🟡 refers to core territories (not new)_\n_avg comms = avg comments per post (to save space in table)_\n\n\n![divider](https://m.stacker.news/23796)\n\n## **`Archived Territories`**\n\n| **Name** | **Founder Sats** | **Sats** | **Avg Sats** | **Avg Comms** | **Avg Zaps** | **Authors** | **>1k Posts** | **>10k Posts** |\n| ----------- | -------- | ----------- | ---------- | ----------- | -------- | --------- | -------- | ------- |\n| **~ecash** | **38%** | **204k** 🥇 | **4,529** | **13.8** | **24.0** | **20** 🥈 | **45** 🥈 | **6** 🥇 |\n| **~news** | **1%** | **161k** 🥈 | **2,401** | **17.3** | **17.8** | **26** 🥇 | **65** 🥇 | **1** |\n| **~education** | **8%** | **43.1k** 🥉 | **3,321** | **19.1** | **22.9** | **12** 🥉 | **13** | **1** |\n| **~Ask_SN** | **5%** | **42.0k** | **2,799** | **37.7** 🥈 | **22.8** | **11** | **15** 🥉 | **0** |\n| **~DeepDive** | **100%** | **36.0k** | **11,975** 🥇 | **3.3** | **29.3** 🥇 | **1** | **3** | **2** 🥈 |\n| **~polls** | **51%** | **35.1k** | **3,192** | **26.5** | **20.0** | **5** | **11** | **0** |\n| **~litdevs** | **25%** | **29.6k** | **7,406** 🥉 | **9.5** | **28.0** 🥉 | **4** | **4** | **1** |\n| **~Memes** | **0%** | **29.6k** | **4,930** | **77.2** 🥇 | **28.7** 🥈 | **2** | **6** | **1** |\n| **~events** | **94%** | **23.4k** | **7,800** 🥈 | **6.0** | **13.7** | **2** | **3** | **1** |\n| **~stocks** | **67%** | **20.5k** | **4,103** | **20.0** | **22.0** | **3** | **5** | **1** |\n| **~videos** | **53%** | **19.9k** | **1,809** | **4.9** | **12.1** | **5** | **11** | **0** |\n| **~Fitness** | **32%** | **16.3k** | **2,335** | **19.9** | **17.3** | **5** | **7** | **0** |\n| **~christianity** | **32%** | **13.5k** | **2,247** | **19.2** | **13.5** | **6** | **6** | **0** |\n| **~radio** | **36%** | **12.2k** | **1,754** | **7.0** | **14.1** | **3** | **7** | **0** |\n| **~movies** | **66%** | **11.4k** | **2,274** | **10.2** | **14.6** | **3** | **5** | **0** |\n| **~startups** | **20%** | **10.4k** | **1,492** | **10.0** | **12.0** | **6** | **7** | **0** |\n| **~A_bit_of_Good_News** | **77%** | **10.2k** | **1,461** | **15.6** | **14.6** | **3** | **7** | **0** |\n| **~apps** | **100%** | **8.2k** | **2,040** | **4.8** | **21.0** | **1** | **4** | **0** |\n| **~chess** | **78%** | **7.8k** | **1,951** | **19.3** | **14.3** | **2** | **4** | **0** |\n| **~Mining_Self_Hosting_FOSS** | **100%** | **5.8k** | **1,944** | **18.7** | **13.7** | **1** | **3** | **0** |\n| **~japan** | **0%** | **4.9k** | **1,651** | **23.3** | **16.7** | **2** | **3** | **0** |\n| **~funny** | **52%** | **4.4k** | **2,216** | **15.0** | **27.0** | **2** | **2** | **0** |\n| **~espanol** | **100%** | **1.6k** | **1,608** | **33.0** 🥉 | **19.0** | **1** | **1** | **0** |\n| **~Psychedelics** | **0%** | **1.4k** | **1,375** | **17.0** | **13.0** | **1** | **1** | **0** |\n| **~language_learning** | **0%** | **1k** | **1,021** | **2.0** | **4.0** | **1** | **1** | **0** |\n| **`Grand Total`** | **`29.0%`** | **`753.2K`** | **`3,125`** | **`18.7`** | **`19.4`** | **`171`** | **`239`** | **`14`** |\n\n![divider](https://m.stacker.news/23796)\n\n## **🏁 `Conclusion - Territory Takeaways`**\n\n1. the effect of Million Sat Madness was on full display recently - the metrics jumped inside new territories during `Week 14` for sats, comments & number of 1k posts, before settling-down.\n2. amazing to see the new territories taking 3rd spot for total sats, comments & zaps, behind only ~bitcoin & ~meta.\n3. it doesn't look like there's any doubt now that territories have been a huge success story for Stacker News.\n4. ~booksandarticles in particular & ~econ too are killing it for engagement & number of unique authors 🔥 congrats @siggy47 & @jeff.\n5. ~lightning is acting like a core territory for people now - particularly for sats generated.\n6. ~charts & ~design recently burst onto the scene - amazing progress by @kr and @Design_r.\n7. it is starting to seem like it matters less & less where you post any given article on SN these days. previously @meta had acted as the holy grail for conversations & average number of comments (and yet is now 4th for that metric).\n8. providing the POW & value is inside for all to see, and you engage with the responses in the comments - it is looking like you can expect to be rewarded on SN no matter the territory.\n9. ~devs, ~stacker_sports, ~privacy, ~oracle, ~earth have some work to do to see founders collecting fewer sats inside the territory.\n10. ~culture had a huge launch & is now out of the stacker-psyche after it became archived. Hoping its new owner can bring some more eyeballs back to it & build on the early momentum.\n11. ~ecash was getting some great traction and interest, before it became an archived territory too.\n12. Anything else grab your attention? Which of the ~charts was your favourite? Let's hear it in the comments below...\n\n\n\nFYI this post may be useful info for **new territory founders**: \n@runningbitcoin, @siggy47, @jeff, @PlebLab, @elvismercury, @ek, @kr, @grayruby, @TonyGiorgio, @benwehrman, @bitcoinplebdev, @niftynei, @boisechampion, @birdeye21, @nout, @mo, @Public_N_M_E, @Design_r, @MerryOscar, @MaxAWebster, @antic, @south_korea_ln, @DesertDave, @RDClark, @TNStacker, @TheWildHustle, @UCantDoThatDotNet, @hodlme, @BitcoinOutdoors, @joelaw, @OneOneSeven, @k00b, @Car, @lloyddunne, @globalmerchantio, @Book_It, @Bit_Chef, @frostdragon, @inverselarp \N 18313 \N 407836 \N \N \N \N \N \N \N \N health \N ACTIVE \N 3.94480792608864 0 \N \N f 272447117 \N 2 144541610 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437955 2025-03-15 02:47:39.075 2025-03-29 22:39:47.097 Quick Advice Regarding Merchant Accepting BTC and LN Payments? I just had a conversation with an old, dear friend. I have not had such a good in real life conversation with anyone about bitcoin in years, or maybe ever. It restored my faith in the future. \n\nAnyway, can anyone give me direct, concrete advice on setting up btc pay and ln payments for an existing merchant web site? He has web designers who can handle incorporating it into his wordpress based site. He wants to move quickly since he has existing customers who have been offering to pay in bitcoin for a while now. I want to keep it as simple as possible to start until he's up to speed. An existing plug in would be great. He's pretty tech savvy. \N 5495 \N 437955 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 1.95124694150103 0 \N \N f 574884904 \N 3 235737387 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 446945 2025-03-21 14:43:12.141 2025-03-29 22:39:47.098 On Bitcoin "Scaling" and the need for "Changes" Bitcoin doesn't need "changes" it needs better "education."\nRecently here on Stacker News and since forever on Twitter... there have been proposals for 'forks' and 'upgrades' and 'new features' and quite frankly they're 99% a 'solution in search of a problem' in my opinion.\n\nI read over and over about how the population of the world will 'share' UTXOs and how UTXOs will "need to scale"... so that everyone (Billions of people?) will be able to custody their own UTXOs. Otherwise Bitcoin doesn't "scale" and it's relegated to the 'lesser' and it 'will have failed'.\n\nAnd all I have to say is that I have news for you - you're absolutely right Bitcoin does not "scale" on its base layer and *no blockchain can that's worth anything.*\n\nThe future of Bitcoin is through scaling solutions (like lightning) and the vast majority of "On-Chain" Bitcoin will rarely move. Let's say that again - in the future, it's logical that the vast majority of On-Chain Bitcoin will rarely move.\n\n- On-Chain isn't fast enough, seamless enough, or inevitably cheap enough for cups of coffee or small daily purchases for many, many People... and believing otherwise is an absolute fantasy. *This fantasy* does not help Bitcoiners or members of the public who might become Bitcoiners in the future.\n\nIf somehow, maybe, people were clamoring, tripping over themselves to make on-chain transactions, to send money around the world, to make purchases and send funds from address to address.... spending and saving, spending and saving... \n\nThen I would agree *OK* let's talk about *scaling* and solutions and the *risks* of changing protocol and "soft-forks."\n\n*But precisely none of that has happened.*\n\nWe need to get real: \n- How many people in your actual *day to day lives* do you know that use Lightning... much less *know what it is?* Much less *know the basics of Bitcoin* or who have made any serious effort to study it?\n- What percentage of Bitcoiners (people who "own" Bitcoin) actually self-custody? VS leaving it on an exchange *like Bitcoiners have recommended against...*\n- And to the extent that self-custody is *more available today than ever* through Sparrow or smartphone apps or inexpensive hardware wallets (that you can build yourself)...\n\nWhy the hell don't more people self-custody? The actual percentage of those who do (from the data available) is very small.\n\n"Oh but the fees are too high."\n"It's too complicated."\n"People will never use the hardware-wallet thing..."\n\nTo which I call bullshit.\nAre people stupid? \nDo they not drive cars? (Hi-speed, heavy vehicles for which they are responsible?)\nDo they have everything handed to them all their lives? Does the grocery store give out tomatoes, onions, and potatoes to consume *for free?*\n\nTransaction fees periodically come down to the 2-3 sats/vb range (as the Runes Enjoyeers run out of money frequently) at which point withdrawal from exchanges is economical. And I can't tell you the number of forum posts out there complaining about "30$ exchange withdraw fees..." positing about "how expensive Bitcoin is" to use at "30$ per transaction" (at which point someone inevitably says 'buy my shitcoin bro it's cheap...')\n\n*My brothers and sisters*, this is not a *Bitcoin* problem this is an *exchange* problem and an *education problem* by which users don't tell exchanges to go *fuck themselves* and hold them accountable.\n\nHad users purchased their Bitcoin on FTX, promptly withdrew it and kept it themselves in a shoebox at home (WAY safer than FTX) they wouldn't have been burned by criminals. \n\nAnd let's suppose that all these *tools* were seamlessly and readily available *right now*: vaults, UTXO sharing, Arc, channel factories, *the conditional spending of UTXOs* all of it available to the masses in smartphone apps on your favorite platform...\n\nWould it meaningfully move Bitcoin adoption *today?*\nNo. No it wouldn't.\n\nAnd no-one (*relatively speaking*) would probably necessarily them.\n\nAnd the *adoption* of the *real, meaningful kind* that's good for the ecosystem we want to see - self-custody, individually-opened lightning channels, coinjoins, coin control, the spending of Bitcoin on goods and services... \n\nThese things *no matter the ease of use of a tool* require the user to approach Bitcoin with an open mind and *give a shit* and with *8 dollar$* lattes and 30$ lunches in most American cities...\n\nUsers just don't give a shit.\nAnd the "cope" of how expensive using Bitcoin is, is absolutely not convincing.\n\n- Look at all the plane tickets spent on dumb vacations.\n- The Uber rides from drunken nights out (at 5$ a beer, 10+$ a cocktail in cities)\n- The expensive gifts and toys people *finance* to keep in their front yards keeping up with the Joneses that they can't really...\n- and all the *obscenely* depreciating crap people buy at Costco and *The Home Depot* that gets stuffed into a drawer and forgotten about...\n\n[12-foot tall Halloween skeletons for 300$ *plus tax*]\nhttps://www.businessinsider.com/guides/home/home-depot-12-foot-skeleton-review#:~:text=The%2012%2Dfoot%20skeleton%2C%20affectionately,stock%20due%20to%20its%20popularity.\n\nAnd people can't afford to open *one* lightning channel *once* to have it available for weeks or months?\nReally?\n\nTo have an almost unlimited number of transactions, sending and receiving the world's Greatest Money? Thermodynamically sound?\n*Really?*\n\nThis is a piss-poor, unconvincing *cope* pushed by developers that is, in my opinion not reflective of the real world. With the costs of things *so high* that people routinely purchase *junk* (those 300$ Giant Skeletons at The Home Depot are sold out) the *cost-prohibition* of opening a lightning channel *once or twice* is not convincing, sorry.\n\nFor the cost of a McDonald's meal (5$) or a Chick-Fill-A meal (10$?) or a beer in Chicago (I've paid around 8$!) or the *junk* people throw away... think of how many lightning channels could be *economically opened* and how much transacted (especially with Bitcoin's appreciating exchange rate)!\n\nAnd to the extent that prices have 'gone-up' and the Dollar has depreciated 20-30% the last several years...\n\nDoesn't saving in thermodynamically-sound, economically-sound, technologically-sound money actually *pay for itself?* \n\nIn summary: Bitcoin doesn't need more 'forks' or 'soft-forked-tools' or 'features added'. It needs more 'time', education, and the benefits of saving in Bitcoin apparent to the Public. From someone who spends Bitcoin on Lightning daily (for example on Stacker News or *Bitrefill*) I touch on-chain maybe once every 6 weeks. \n\nAnd the rest of the time it's *Lightning* and any future mass-adoption of Bitcoin will *look similar in my opinion.*\n\nLet's *pop the bubble*, look at the big picture and not let the perfect be the enemy of the good. A horse can be forced to water but not made to drink.\n\nI apologize if I sound testy or judgemental (I don't intend to!) but too often folks don't see the forest-for-the trees, and there is a lot of bullshit proposed that is not reflective of the real world, its risks, or the phenomenal improvement on the world that Bitcoin already is.\n \N 20715 \N 446945 \N \N \N \N \N \N \N \N Linux \N ACTIVE \N 20.1810455852114 0 \N \N f 383187312 \N 3 47523786 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:29:45.699 f \N \N \N 0 0 0 0 1 0 0 103905 2023-12-27 09:14:44.98 2025-03-29 22:39:47.099 SN: Elevating Shitposting To Cathartic Connections By all accounts, SN should have failed. I should know because I speak from experience. I spent too much time shitposting on r/cryptocurrency to farm their in-house currency called Moons.\n\nBanter was fun and sometimes, I even picked up knowledge. But it kinda felt like a dog-eat-dog world there. You have to gauge the sentiment on the sub. Post at the wrong time, and you will be greeted by downvotes. It seems that some people rampantly downvote others in order to get a bigger share of the Moons pie for themselves. Trample on others to benefit yourself.\n\nToxic much, huh?\n\nI took the downvotes like a pro, but on hindsight, I think it might have poisoned my mind a little and given me a tainted understanding of human nature. I thought the world is consumed by greed because of inflation and depreciation. And who am I to judge, because I’m just looking out for myself too. Self-preservation mode.\n\nThis explains why I was baffled for the longest time. Stackers write freakishly long essays to expound on their experiences and opinions. How do you guys find the time and energy? Why do you guys care so much? It cannot just be the promise of sats. Even if you get a thousand sats for your post - which I think is above the median sats for a post here, it still doesn’t pay enough for a cup of coffee in many countries.\n\nI got fresh insights on my question recently. It began when someone gave me a huge zap and encouraged me to zap Stackers more. So I did. I set my default zap to 168 and realised something I didn’t expect. When I zap others more sats, it just seems natural for me to flesh out my thoughts. I take myself more seriously. Suddenly, I have so much to say! To share!\n\nAnd I think these thorough insights and lived experiences are the greatest strength of Stacker News. Stackers may not be purely driven by the promise of sats even. I write longer comments these days because I trust that when I put myself out here, my words will resonate with a Stacker or two and prompt them to respond. That what I give out is proportional to what I will receive. That I will gain either different perspectives or validation of my opinions - either way honours the time and energy I spend typing out my comments. \n\nSN is a Proof of Work system, isn’t it? That we work hard to ensure the smooth operation of this circular economy instead of writing cheap comments like wen lambo and siphoning off all the sats, thus depriving others of oxygen.\n\nFeels as fresh as a terrarium and I hope it stays this way.\n\nHave a good day, lads. I’m off to zap some posts! \N 986 \N 103905 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.8388897427415 0 \N \N f 312194966 \N 3 84870791 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434243 2025-03-11 17:33:40.22 2025-03-29 22:39:47.361 Immortal Communities I pulled an all-nighter "constructing" this presentation for @MaxAWebster's LPs (the investor's investors) following a weekend retreat he hosted for his portfolio companies. The whole weekend was awesome and every founder and person I met in Max's circle were awesome. I waited until the last minute (super out of character for me) to construct the talk because I didn't fully understand the context and wanted to gather as much intel as possible.\n\nThe intel I gathered from Max and the LPs at the retreat was:\n\n1. LPs might be aware of the company but not super familiar with the details\n2. Likewise with bitcoin\n3. LPs are more focused on big picture stuff like growth and vision\n\nAlso, the talk was only scheduled for 10 minutes so my conclusion was that I shouldn't obsessively qualify things and mostly focus on optimism and entertainment. In the end I'd guess my talk was only 3-5 minutes, which imo is a sign that I spent an appropriate amount of time preparing. I opened the talk with:\n\n> I'd like to thank Max for arranging this TedX talk ... I'd like to thank Max for hosting this event. I'm biased, but Max is the best VC in bitcoin, and I've met most of them, or know founders that have met the ones I haven't met. \n>\n> I'd also like to thank Max's LPs for being rich. Being rich is awesome. I hope to be rich some day.\n\nThe rest was me presenting the slides. Shout out to @kepford's advice [last year](https://stacker.news/items/247537/r/k00b?commentId=248112) to go very light on text.\n\n![](https://m.stacker.news/60294)\n\n![](https://m.stacker.news/60295)\n\n![](https://m.stacker.news/60296)\n\n![](https://m.stacker.news/60297)\n\n![](https://m.stacker.news/60298)\n\n![](https://m.stacker.news/60299)\n\n![](https://m.stacker.news/60300)\n\n![](https://m.stacker.news/60301)\n\n![](https://m.stacker.news/60302)\n\n![](https://m.stacker.news/60303)\n\n![](https://m.stacker.news/60304)\n\n![](https://m.stacker.news/60305)\n\n![](https://m.stacker.news/60306)\n\n![](https://m.stacker.news/60307)\n\n![](https://m.stacker.news/60308) \N 647 \N 434243 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 2.06364901064529 0 \N \N f 452525653 \N 5 15274843 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 09:05:07.992 f \N \N \N 0 0 0 0 4 0 0 436258 2025-03-13 12:23:41.9 2025-03-29 22:39:47.363 How Pinned Posts Can Earn Sats For Territories Both @jeff and @grayruby have recently expressed the grim reality of trying to run a territory on Stacker News. Breaking even is an unrealistic pipe dream given the fee split structure as it exists. Are we fools? Maybe. As @elvismercury pointed out, there is value that perhaps can’t be calculated by adding up sats, and I agree. Also, no one forced us to own a territory. We knew the rules going in. So we can either surrender our territories, continue to pay our monthly fees and get angrier at that guy @k00b who we all used to like so much (and that @ekzyis guy too), or try to figure out a way to earn sats. \n\n### Pinned Posts\n\nI drove everyone crazy to get pinned posts, so I started playing around with them. Initially you could not zap a pinned post, but now you can. Owners can market pinned posts as a better alternative to boosting for either individual stackers or organizations who boost. Boosting gives you added visibility for I think a day or two at most. A pinned post can give visibility for as long as the stacker wants. Perhaps a typical 25k boost could buy a pin for a week. It is a win win. \n\nWe can all sit around and wait until SN finds the time to build this code as an option, or we can start now. A prospective pinner makes the post, then tells the owner that they would like it pinned for a period of time. Price and term are negotiated. The owner replies to the post with the terms, and the stacker zaps the reply with the agreed upon amount. Yes, both parties must trust each other. We trust SN with our sats as it is anyway. In fact, setting forth the terms could actually be considered an enforceable contract in some jurisdictions, but that’s not the point. This is an open agreement visible to everyone. The owner’s reputation and that of the territory would be destroyed if the bargain was not upheld. \n\nThere are a few technical issues that might need to be addressed. I have the sense that pinned posts do not get the same treatment when it comes to being designated as “hot” or “top.” If I’m right, the poster may benefit from seeing how the post is doing organically over the first 24 hours or so before pinning. Maybe @k00b or @ekzyis can provide some insight.\n\nAlso, I think there might be a stigma associated with that little pin. I think a stealth pin would have value. The pinned post would look like any other post. I'll start bugging @ekzyis now.\n\nWhat I like about this idea is that the owner gets zapped on his reply. This avoids the draconian fee split that SN uses and the sats go directly to the owner’s wallet.\n\nI intend to start offering this option on my territories. Please let me know what you think. \N 15336 \N 436258 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.9445430398974 0 \N \N f 779161907 \N 7 170696674 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 13:32:41.101 f \N \N \N 0 0 0 0 3 0 0 458289 2025-03-29 07:06:18.19 2025-03-29 22:39:47.363 What are your predictions for 2024? _inspired by @orthwyrm's saloon comment [here](https://stacker.news/items/373230/)_\n\nQuestion in the title. Can be a prediction about anything. Extra sats if your prediction includes when it will come true (for example Q1, Q2, Q3 or Q4).\n\nAsspulling welcome, preferably with an explanation (as always)! \n\n \N 21768 \N 458289 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 27.5620069975393 0 \N \N f 545777937 \N 3 188616788 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434223 2025-03-11 17:15:57.998 2025-03-29 22:39:47.091 nifty's process for getting base58.school a LNURL tldr; when bolt12 😭\n\nProblem: Geyser Fund doesn't allow you to directly connect to CLN nodes, they only support LND. They also offer the option to provide them with a LN address.\nI run CLN, I don't have an LN address. Fine, I'll use Alby.\n\nProblem: Geyser fund is amazingly successful (we're still only 50% of the way there!), Alby starts rate limiting us and says "please dont send us more funds"\n\nSpend lots of time and some sats paying Boltz to swap out Alby funds. Cry to @kodylow about how CLN doesn't support LN addresses.\n\nSolution: Kody sends me @elsirion's amazing clnurl plugin repo. https://github.com/elsirion/clnurl/tree/master\n\nOk, we're in business. Sort of.\n\nAdd clnurl to base58 lightning node and restart it, adjust the firewalls etc.\n\nProblem: This would be simple except that base58 lightning node runs in a container on a nixos box. \nSolution: Jump clnurl through container to host port, to outside.\n\nProblem: lightning node box is on private network, can only be talked to from external "jump host". \nProblem: Also I need a domain name to front this. Preferrably `base58.school`, since that's the website address.\n\nProblem: base58.school is pointed to a different server, which runs the base58.school webapp.\n\nOk here's the very janky way that I solved this:\n- added nginx rewrite rules to the "jump host" so that hitting a certain endpoint will send commands to the internal port which is forwarding to the container.\n- added some hard coded rewrite rules into the base58 webapp so that it'll automagically forward everything from the base58 server to the jump host to the ln node box to the container. And then back.\n\nIn case you want to see all the ways you now zap sats to base58.school\n\nhttps://github.com/base58btc/base58-web/commit/ae85c4ebd19eacab2417498017a1f3f6a658c015\n\n\n\nActual solution: get Geyser Fund to support bolt12 offers so I could have done this with about two clicks instead of needing to configure 3 different servers and not had to involve Alby in the process at all. Now my bookkeeping is all screwed up, as I've got sats strewn across two different accounts (three technically as I swapped in my personal Alby LN address when the base58 one got rate limited). RIP \N 11523 \N 434223 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.5128080426345 0 \N \N f 39034000 \N 1 190786552 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 03:02:06.235 f \N \N \N 0 0 0 0 1 0 0 401458 2025-02-13 03:42:37.037 2025-03-29 22:39:47.094 Did you love money before you loved bitcoin? I have seen many times enthusiasts of this technology express things like *“I love bitcoin <3”*. But I don't think they mean they love the money. At least not consciously.\n\nI can understand from a technology point of view that bitcoin is like a magnet and once attracted it can be hard to detach. There is so much to discover and develop. I can understand someone loving money as such, why not. Although the concept of loving money causes me to dislike it, as the image of some greedy billionaire automatically pops into my head.\n\nIt is also common, or so it seems, for proponents of libertarian, economic liberal or anarchic tendencies to be attracted to bitcoin. The promises of decentralization, privacy or anonymity are potent. I personally fail to identify with any movement or specific characters or leaders.\n\nBitcoin is such a strange thing, it generates such contradictory things as these groups based mainly on individualism now want to create community through bitcoin. I think the greed and avarice that inherently accompany money have done enough damage to the world already. For the time being I will be careful about saying I love bitcoin. \N 7960 \N 401458 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 20.4710409672188 0 \N \N f 548886960 \N 5 244949904 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401611 2025-02-13 08:47:38.316 2025-03-29 22:39:47.095 Original Fiction on Stacker News Did you know there's a bunch of original fiction on Stacker.News?\n\nCheck these out:\n\n- [The Rogue Scholar - The Rogue to Victory](https://stacker.news/items/419498) (Dune-esque Sci-Fi / Fantasy) by [jbschirtzinger](https://stacker.news/jbschirtzinger)\n\n- [Who Brought the Steak Tartare?](https://stacker.news/items/410853) (Hitchhiker's Guide-esque humorous sci-fi) by [cleophas](https://stacker.news/cleophas)\n\n- I'm writing '[Submersible](https://stacker.news/items/446662),' (Randian-esque Sci-Fi) a SN exclusive serial story with puzzles in it you can solve for bounties and a way for you to have input into the direction the story takes as it goes.\n\n- [Nutall](https://stacker.news/Nuttall) is a published poet, and reposts his poetry here. A recent example:\n[E... A... R... S...](https://stacker.news/items/453742)\n\n- [Cryptosensei](https://stacker.news/cryotosensei) wrote [a children's book](\nhttps://stacker.news/items/401625) for his son and a poem: [unresolved between a thai lad and I](https://stacker.news/items/411278)\n\nBonus:\n\n- [Siggy 47](https://stacker.news/siggy47) is territory owner of ~booksandarticles. He posts a Newsletter there that features stuff like this, and more. [Here is the latest issue](https://stacker.news/items/446598).\n\n- Here's an interview with an author of a book using Bitcoin as a central plot device, describing the book but also giving a lot of good advice about writing:\n[The First Thriller Novel About Bitcoin with Steve Berry](https://stacker.news/items/453380) posted by [TheWildHustle](https://stacker.news/TheWildHustle)\n\nFYI the genre / descriptions above were chosen by me, not by the author.\n\nThere must be many more, feel free to alert me to them and leave yours in the comments.\n \N 8570 \N 401611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.101954757857 0 \N \N f 2352616689 \N 17 193710729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 9 0 0 429958 2025-03-08 18:00:02.988 2025-03-29 22:39:47.095 A very important improvement for Neutrino (LND) is coming This patch for [Neutrino](https://github.com/lightninglabs/neutrino) (serving blocks data to remote LND nodes) it will improve dramatically the use of "mobile LN nodes" using this type of connection with Bitcoin nodes. Many users were complaining about losing sync due to high latency ping with neutrino peers, that were far away from their location (and always they tried to find the closest ones). But now with this patch the high ping is not bothering anymore.\n\nInteresting enough, this PR had the number 300 😂\nhttps://github.com/lightninglabs/neutrino/pull/300\n\nMany thanks to our fellow Kevin, LL developer that was working hard, together with Hampus and Nitesh on this PR !\n\nWho will benefit directly from this improvement?\n- Zeus users, using the embedded LND node, starting with the new announced v0.9.0 will include this patch.\n- Blixt users, that also is a full LND node, starting with new announced v0.7.0, will include this patch.\n- Breez users, maybe they will update it too, even that Breez is using a forked LND code.\n- Nayuta users\n- any other LND node runner, using [Neutrino to connect his LND node](https://docs.lightning.engineering/lightning-network-tools/lnd/enable-neutrino-mode-in-bitcoin-core). Yes you can run any LND node without having a full Bitcoin Core running to serve blocks to your LN node. And is just fine and private.\n\nNevertheless, I encourage any full node runner to activate on his node the block filters and deliver publicly blocks data for neutrino clients. It doesn't affect too much your node and is not leaking any private information. But in this way you participate more in the decentralization of the Bitcoin and LN network, helping remote users to get easily and faster blocks data with their mobile LN nodes. \N 17109 \N 429958 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 10.5584627878558 0 \N \N f 1720622792 \N 10 225025966 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 426811 2025-03-05 20:53:52.061 2025-03-29 22:39:47.095 Wars between countries with Fiat vs Bitcoin? Let's say we have two similar countries. One is named Fiat and uses a money printer. The other country is named Bitcoin and uses a bitcoin standard.\n\nNow let's say that Fiat goes to war against Bitcoin, and it spans 1-2 years.\n\nBoth countries can raise taxes and/or offer war bonds. Let's say they do that and each country gets something like $1 trillion dollars-worth of spending. However, Fiat can print a bunch more money - let's say another $1 trillion worth.\n\nFiat now has $2 trillion to spend on their war efforts. And, Bitcoin has $1 trillion to spend on defenses.\n\nDoesn't it mean that Fiat would win the war?\n\nSure, after a few years Fiat's citizens might be pissed because their purchasing power has decreased significantly. But, the war has been won and now Fiat takes over Bitcoin and gains all its resources and passes laws that people can't own bitcoin.\n\nAm I missing something? How does a country with a bitcoin standard defend itself against countries with money printers? \N 21520 \N 426811 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 18.5485492387233 0 \N \N f 120752195 \N 1 117931490 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448635 2025-03-22 18:46:32.964 2025-03-29 22:39:47.092 Idea for future "Bitcoin businesses" ## Hard times creates new types of demand from users.\n\nThis mini-guide is only for those more knowledgeable and with a more entrepreneurial mindset.\n\nThe future of Bitcoin is built by entrepreneurs not by governments. By those that create value and sell it for sats.\n![flow-btc-value.JPG](https://m.stacker.news/28522) \n\nMy proposal as I always said: be the change if you want to see change around you. Do not wait for others to do the job for you because nobody will do it.\n\n[![LN-chad-adoption.jpg](https://i.postimg.cc/B6vjDQvF/LN-chad-adoption.jpg)](https://postimg.cc/f36WQsmW)\n\nI explained more in this guide [How Bitcoin will save the world](https://darth-coin.github.io/general/bitcoin-will-save-the-world-en.html) why we need more merchants adoption, that could drive further the use of Bitcoin. Bitcoin without being used as money will simply became a "compliance token" controlled by Saylors, Finks and other ETFs.\n\n## PROPOSAL\n\nHear me out, here are 2 types of small businesses you can start in your own local community and soon will have a huge demand:\n- Run a local Bitcoin LN bank\n- Run a local / online business that offer refurbished mobile de-googled devices, for more private use with Bitcoin. Nowadays we are seeing many clueless users still using iShit devices and bloatware stock android devices, full of Google and Apple spyware and invasion of privacy. We need to help those clueless users to break free from that cage.\n\nSo you could buy new or used devices, clean their OS and personalize them for each of your client, installing specific apps that they want. Of course only open source apps, not using anymore App Stores.\nAlso you help them setup their Bitcoin wallets and all that stuff.\nRemember: your time and knowledge is paid in sats.\n\nRefurbished devices are still a very good option and also easier to de-google. For some bitcoin apps you do not need a fancy ultra extra expensive device. In the end you just need something to be able to pay over LN.\n\nFunny slogan you can use: \n## *If you buy a de-googled device from me, you can get a free LN account with my LN bank.*\n\nYes, don't laugh, this is how you can help many clueless users to get onboard.\nAnd I wrote several guides about these scenarios (listed at the end).\n\n## Important aspect: for your LN bank, create a PMA\n\nYes, make that "bank" totally private, so nobody can come after you.\nWhat is PMA?\nPMA = Private Members Association. In other words, is none of other business.\nStudy more this aspect, it can protect you from many things.\n[Here is a playlist](https://www.youtube.com/watch?v=qTq13vOxpZk&list=PLDcy9YrHy_RI9Exjdv2Ly8p6O4cd2_996) with which you can start.\n\nAlso study more the aspect to became a sovereign individual. As I always scream loud here, is the ONLY way to go forward. Forget about all that crap with "respecting the gov laws" etc That will not get you anywhere and you will end up in jail. Is like the dog trying to eat his tail.\n\n@Lux was posting "sovereign pills" every fucking day in the SN Saloon. Please read them all and take notes, save them and study more about those aspects. I know is not so easy to escape from this "slavery jail cage" that the state built around you for centuries. But is all in your mind, not in the physical world.\n\nI know, many will not agree with me, I don't care, as I always said:\n[![darth-advice.jpg](https://i.postimg.cc/c4fzycYQ/darth-advice.jpg)](https://postimg.cc/bsNg1kmJ)\n\nIn the end everybody will come back to my words.\n\n## RESOURCES\n*You even can use all these guides to teach your clients*\n- [What mobile device should bitcoiners use?](https://darth-coin.github.io/beginner/bitcoiners-mobile-device-en.html) - resources inside about de-googleing devices\n- https://darth-coin.github.io/ - all my guides structured by category\n- [Private banks over LN](https://darthcoin.substack.com/p/bitcoin-private-banks-over-lightning)\n- [Lightning PUB](https://github.com/shocknet/Lightning.Pub) / [ShockWallet](https://github.com/shocknet/wallet2) - a simple tool to be a an uncle Jim and use a LN bank too. Developed by @justin_shocknet\n- [More guides for merchants](https://darth-coin.github.io/merchants/merchants.html)\n- [More guides about nodes](https://darth-coin.github.io/nodes/nodes.html)\n- [A simple Uncle Jim scenario - SN post](https://stacker.news/items/330346)\n- [Running a LN node without full core](https://stacker.news/items/439263)\n- [More Bitcoin adoption using ecash](https://darthcoin.substack.com/p/bitcoin-adoption-using-ecash) - you can add this tool to your LN bank too, in case is needed.\n\nThere are many tools and solutions out there, just think about these scenarios.\nIf you have any other questions about use cases and how to start something like this, do not hesitate to ask me here on SN. I will help you with anything I can.\n\n## May The Bitcoin Be With You ! \N 19193 \N 448635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.65992174890111 0 \N \N f 240204411 \N 1 77334587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446819 2025-03-21 13:44:24.542 2025-03-29 22:39:47.096 Is there a good overview of who on the internet knows what? The Samourai thing has stirred up a lot of attention, so maybe this is a good time to ask something I've been wondering about: is there a a writeup (or set of them) that talks about who knows what you're doing on the internet, in a sophisticated way?\n\nFor instance: imagine that the govt really goes bonkers and decides that running a node is illegal. My ISP surely knows that I run a node, because the traffic patterns of node-running must look very different from other traffic patterns -- the number of incoming connections, the nature and quantity of data propagation, etc.\n\nBut what about the rest of the ecosystem? How does my behavior through my various activities propagate? Who knows what? I have a general, uncomfortable feeling that everyone knows everything, in the general if not in the particular -- if I run TOR, non-exit nodes might not know the particular, but they know I'm using TOR, and that itself is a massive signal.\n\nWhenever i see stuff like this talked about it's always very basic. Is there a source where they explore it in more detail? \N 2195 \N 446819 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.6213523551277 0 \N \N f 1150593179 \N 6 67888023 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423629 2025-03-03 13:54:01.816 2025-03-29 22:39:47.097 Casa To Hire White Men To Meet DEI Requirements Link to Article: https://www.bugle.news/casa-to-hire-white-men-to-meet-dei-requirements/\n\nArticle inspired by a news tip from a Bugle Reader\n\nCasa announced that they would be hiring white men in order to meet company DEI quotas on Wednesday. "We have been so worried about DEI policies that we have completely neglected to remember that we also still need white men at the company in order to hit our DEI targets. It would be great if they were gay white men though for bonus points," Casa's HR manager told the Bugle. Casa is easily the most woke corporation in the "cryptosphere."\n\nAt Casa, HR supersedes company executives, making it the most inclusive company in the general crypto industry. Despite company executives and board members knowing that Ethereum is a scam, the company has chosen to offer Ethereum support to also be more inclusive to a broader audience. The company seems not to be concerned about the toxic reaction of the larger Bitcoin community to their brave policies.\n\nJameson Lopp, CTO of Casa stated, "As a man of privilege, I want Casa to be a true place of inclusivity and diversity, as defined by BlackRock's ESG agenda. That means that we still need some white men working at the company in order to represent the underrepresented patriarchy. HR got a little too zealous on hiring Latinx women and as CTO I need at least a few white men to keep the company functioning."\n\nWhile Casa is focusing on building the most inclusive Bitcoin related company, many in the community are wondering why they chose a company logo so similar to that of the infamous Comet Ping Pong logo. When the Bugle reached out for comment, Casa's HR department did not respond. \N 16145 \N 423629 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 27.0800599331516 0 \N \N f 296237640 \N 3 175162161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451395 2025-03-24 14:32:12.404 2025-03-29 22:39:47.362 Seeking Acceptance to Parent's Corner: I'm blessed with an Angel Right now I've a flood of emotions inside and I'm craving to carve almost everything in words. But then I think all of the Dads in this space must've been through the same run of feelings whole becoming daddys for the first time. So, I'll keep it ver very short and would like to share with you all — ***Finally, I'm, I'm the dad of a little cute angel.*** \n\n![](https://m.stacker.news/59630)\n\nI must acknowledge, I'm a little late to share the news with you guys for I was busy seeking blessings from a lot of elders and dieties, as is the tradition in a Hindu Brahmin Family. However, taking some inspiration from @realBitcoinDog, I'm seeking blessings from every stacker in the space. With that I also seek an acceptance for myself in this amazing space called Parent's Corner. If you've already accepted me as a noob, here's my most cordial 'Pranam' 🙏 to you and your immense generosity. \n\nI don't know how you would react if I tell you that it's exactly been 9 months when I shared my first words on SN. Yes, it was on January 7, when I shared my [first post](https://stacker.news/items/402772/r/Coinsreporter). The baby is born exactly after 9 months, isn't it a big coincidence? I don't know between both of us (me and my wife) who was the more merrier on Jan 27. I shared this thing with her after the birth and asked, she replied, *"you and your SN." Then, she just gave me a smile and that's enough to tell. \n\nThank You so much SN, Thank you so much Stackers. I feel like I, my darling and my baby are beginning a a new journey in our life so bless us all and show us the right path. \n\nAt last as a gesture to prove my worthiness as a stacker worthy of Parent's Corner I've done some home work. Kindly have a look at these and suggest your thoughts. \n\n![](https://m.stacker.news/59625)\n\n ![](https://m.stacker.news/59626)\n\n![](https://m.stacker.news/59627)\n\n![](https://m.stacker.news/59628) \N 14449 \N 451395 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.0173060811142989 0 \N \N f 382201788 \N 5 187307121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 423681 2025-03-03 14:35:00.057 2025-03-29 22:39:47.363 Raspberry Pi 5 – Raspberry Pi \N https://www.raspberrypi.com/products/raspberry-pi-5/ 16747 \N 423681 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 7.32302099929317 0 \N \N f 676350184 \N 8 244588496 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 445639 2025-03-20 17:03:27.243 2025-03-29 22:39:47.364 Cut the crap and stop creating Bitcoin BS idols I am getting tired of reading BS narratives about Milei (Argentinean presidential candidate) being a "pro bitcoin" candidate. Being Argentinean myself and living here knowing this is false, makes me wonder how many fake bs narratives are out there pumping politicians among bitcoiners. Stop being desperate and retarded please!\n\nYou need to push for new heroes and idols? Think twice, there is a fucking long list of idols swimming still in the Ganges. Just cut the crap will'ya?\n\nThere is absolutely no mention of bitcoin whatsoever in Milei's [campaign platform](https://www.electoral.gob.ar/nuevo/paginas/pdf/plataformas/2023/PASO/JUJUY%2079%20PARTIDO%20RENOVADOR%20FEDERAL%20-PLATAFORMA%20LA%20LIBERTAD%20AVANZA.pdf). Also worth to mention his experience with "crypto" lead him to promote a blatant scam to his 1.3M followers about CoinX and got him a criminal complaint being filed a while back.\n\nhttps://lh3.googleusercontent.com/pw/ADCreHeiZSZU8aWtCTFf4ZllSG_KzhwARoaZN4WmpST5YjyYvmBCxVLpZn9IfqrrtUJvnqA2lhS14pWaEPZFRcbLDS-ovEl0O13uXPP6CZS-PDyMZ25B2Ga2rqJ9RmGXXv68j4RGqsxVSt8EUsPIkxODAodzvGk_Vz3UJotYHZg5KFV-OqESkW6M7OIaXnigGdrS4gJe-Ku7csN2FHZk4PQDOaI-vCyKltWla-F3vt90_Nf2lBne6N7X0gsef97yNXsRvcysRkVhO9x0FLoPq9P0Wy5lKH12hKOE3yH_hYy-cXoKcJapnEIN16wjRk_viAqEfUPjb50tmV0fsqq_8jUXEUYZ9ogPOoTHUKdSG7oDRQbq203wf3R7RpfkJt0q4_NNGrlhad1fBYAAdNRUVHKUeVSgEfhBHHiz-VNrSC9or3nKlreisAtCIRHIDXGHx2iBILplzPwLXyc1etbB3Xzm7_O_DnASr3zzIPaltiZKLHf2aVq9DxJh4AM8nNXf762Tv8U9Yemu4lNuTpUdDO9d1FPW2ANaZyrjppR_njD7gkm9zlKbIDJeKux9idO-41NZUe9Q_mNa14ZftJ4IvChYlEjUQEfnrwe6uHek0UgblXQMBUZy3bsdINAHWAtXZmG4H51mfq_G2JTlZzplFZ3QSYXfyrH1cwEeX88siDyhiIu7Tb54GUASmN1c7tvbOxcY_ffkGyz9nF8LiA_gxJbOJdkpLU0ZxV0Jl45exQVfSe7B_WxIXUAURznQcsZagKj2Y3FsjqW3vbNpGutX8YsDXKgNF5keSYmdXq2Ndy8k17RR6363g1O_49DqYp4DmrrVJUaxJ_T3gf_ytHm8e-fcBNED5zvtEgZ_R9bjcq3yHN8TTgyuQ6YG9hDIeBq5WnQETjl_7vm9GIR0pe7RKSLbai2cGXw=w538-h378-s-no?authuser=0\n\nBitcoin heroes can barely be counted with one hand, Satoshi, Hal, Adam,.. Sooner than later ur crush idol will go all full Nic Carter on you. Stop pushing bs!\n \N 20551 \N 445639 \N \N \N \N \N \N \N \N science \N ACTIVE \N 21.74173172832 0 \N \N f 205473341 \N 2 239831739 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454036 2025-03-26 06:30:44.351 2025-03-29 22:39:47.365 Hello! Pierre Rochard, VP of Research at Riot. AMA. I just joined Riot, a bitcoin miner, after three years at Kraken, an exchange. \n\nYou can ask me about any topic! \N 6653 \N 454036 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 25.099266558016 0 \N \N f 34013492 \N 1 229546581 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421499 2025-03-01 17:58:10.87 2025-03-29 22:39:47.365 LN bug?? CLN invoices without final-cltv-delta set failing I had this bite me when trying to get StackerNews to pay out my CLN node. Seems like the fix as a CLN noderunner is to always include the final-cltv value. Patch coming :/\n\nSpec says invoices w/o a final-cltv-delta field should be treated as 18blocks by default; seems like some wallets aren’t using a default value\n\nBug fix in CLN is to always include it; for wallets/other impl it’d be to use the default if not present\n\nAnyone have insight into what’s going on on the other end of this? https://community.corelightning.org/c/node-operators/bolt11-generation-problem 14295 \N 421499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3405506093303 0 \N \N f 153869440 \N 1 59503349 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443326 2025-03-19 09:06:13.995 2025-03-29 22:39:47.368 Tips to flourishing in Million Sats Madness Hands up, those of you who have been feeling poorer than usual. 🙌 With the Daily Rewards being on a hiatus, I find that I have to dig in deeper in order to sustain my SN routine.\n\nHands up, those of you who have been spending too much time looking at the Leaderboard for the Million Sats Madness. 🙋‍♂️🙋🏻🙋🏾‍♀️\nI’m guilty of this. I know that I need to get a better grip on myself but…\n\nHave you heard of the term “money dysmorphia”?\n\n![IMG_1086.jpeg](https://m.stacker.news/18848)\n\nIt refers to a feeling of insecurity around their financial situation even when the true picture reveals little cause for concern. Sounds like me. I know that I will probably get placed in the Top 64 by 31 March but I can’t quite shake off the uneasiness that comes with traversing this unfamiliar territory. My mind and heart need some time to reach alignment, I reckon.\n\nOn the whole, I welcome the Million Sats Madness because it thrusts into the open certain questions that make me reflect on my SN behaviour. [Earlier, I wrote about continuing with an Abundance mindset.](https://stacker.news/items/445953).\n\nToday, I want to write about flourish amidst MSM. Our environment might have changed, but our inner vessel remains intact. If you have been following [the discussions on the Meditations book club](https://stacker.news/items/439147), you might be intrigued by Marcus’ reflection on how there is divinity within each of us sentinent beings.\n\nThis is a very long preamble to my article. Let me get started.\n\n1. Determine your goals\n\nI’m not referring to your position on the MSM leaderboard. I’m talking about your sats deposit and withdrawal behaviour prior to MSM. Because more likely than not, you will have to decide whether to remain unchanged or adapt your behaviour for March. My goal has always been to accumulate enough sats to buy a Bitrefill gift card or two. Shall I leave this goal on the back burner for now so that I can go all out in zapping others? I needed to calibrate my expectations; you will need to do so too.\n\nIn a given month, perhaps I can earn about 50-60k sats, thanks to Daily Rewards. I have decided that being able to buy one Bitrefill gift card will spark more joy than my placing on MSM. Because it’s a more tangible goal that I can work towards. Also because my beer stock 🍻 has run out and there is something heartening about the fact that I buy beer with the sats I earn from my writing. If this isn’t Proof of Work, I don’t know what is!\n\n2. Change my behaviour\n\nIf I refuse to change my goalpost and stay intent on zapping my default zap amount, something has got to change. This means that my posting has to be increased. There’s no two ways about it. I think I’m posting on average three times per day (as compared to one time in Feb). Will I get burnt out? I think not, because it’s only for a month. There’s something freeing about the way my neurons get fired up and make new connections and inspire my muse. It’s like when I give myself the permission to post more, my creative muse rises to the occasion. I’m tougher than this. I can do it!\n\n3. Be strategic about posting\n\nDid you know that [the top 5 posts on this territory will get extra zaps?](https://stacker.news/items/446045). It’s easier to be motivated when you know where the cheese is because all you have to do is to follow it and pray that you get it (instead of being pinned under a mousetrap).\n\n4. Have fun\n\nYes, the MSM is a competition but you don’t have to treat it this way. The reason why I stare at the leaderboard so much is that I’m examining the other metrics as well. How many sats I stacked in total when compared to other Stackers? How many sats I gave away? Oh goody, I got a referral already! How do I go about getting more? Find your own fun in this madness!\n\nSensei’s two sats’ worth 😝 \N 9339 \N 443326 \N \N \N \N \N \N \N \N health \N ACTIVE \N 14.832676426412 0 \N \N f 79911220 \N 1 199417014 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402359 2025-02-13 17:38:15.162 2025-03-29 22:39:47.092 Plans For The ~BooksAndArticles Territory A week or so ago I posted once again about my desire for pinned posts in territories. It was the shortest post I have ever made, but it got an embarrassingly high number of sats. I promise to give them all back by zapping hard or directly donating to rewards. As it turns out, I was too impatient, since @k00b pointed out that @ekyzsis is already working on this feature. I was getting impatient because I want to implement my ideas for hopefully improving this territory. Here is what I’m thinking so far:\n\n- I would like to create a pinned post which is basically an index of original content written by stackers. The content can be non-fiction, fiction, book length, essay length, short stories, poetry...whatever. I will of course honor any wishes not to be included in the index, and I will decide which content to pin. Right now I plan to pin anything that does not have any indicia or sense of having been created through artificial intelligence. They will be broken down either by category, such as book reviews, poetry, etc, or by author. My purpose in creating this post is to publicize and highlight original content to help the authors garner more attention and sats. I would like to make this territory a place where new writers can exercise their chops and build their careers. I know that’s an ambitious goal, but I think it’s worth a try.\n\n- For the second pinned post, I plan to award the most popular post of the week a pinned position for the following week. How this is calculated might be difficult. What I may do is use the built in SN zaprank calculation for this, to prevent artificially pumping sats to game the system. I’m still trying to figure out how to impliment this. I might just choose the post with the highest SN zap rank each Friday to be next week’s pinned post. Like everything else here, I’m thinking out loud and it’s all subject to change.\n\n- For the third pinned post, I plan to offer stackers the opportunity to rent the slot for a certain post for a certain amount of sats. I have not come up with a price.\n\n\nFor those stackers who are interested, please reply with comments and suggestions so I can get this right. Everything is subject to change\n\nThanks \N 13599 \N 402359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.79207797655216 0 \N \N f 235654536 \N 1 171121700 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414258 2025-02-23 19:10:11.266 2025-03-29 22:39:47.094 SN release: hash emails, detail on nym hover, CLN over tor, bottom nav, and more - we no longer store email addresses for login in plaintext (via @WeAreAllSatoshi)\n - we hash them with salt\n - this has been applied retroactively\n - note: we still opt-in people into the email newsletter, which is not associated with your account, but we'll be changing that soon\n- if you hover over a stacker's nym, it now shows a little popover (via @felipe)\n- CLN withdrawals should work over Tor now (via @ek)\n- image uploads no longer pre-populate alt text with the local file name (via @itsrealfake2)\n- wallet logs can be cleared from localstorage (via @ek)\n- sending wallet attachments are scoped to an account in localstorage (via @ek)\n- posts with long single-word titles now break (via @BenAllenG)\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs) ~8 weeks ago, we've paid a total of 5m sats to 19 contributors for 82 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/525083\nQ1 recap and Q2 roadmap: https://stacker.news/items/506566\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 1092 \N 414258 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.88650981052221 0 \N \N f 220881540 \N 1 231628994 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404498 2025-02-15 23:24:04.78 2025-03-29 22:39:47.095 El Salvador is NOT in the Green lel The screenshot Bukele posted in his tweet [see here](https://nitter.net/nayibbukele/status/1731653743668572498) is from this website: https://nayibtracker.com/\n\nThat website now has this message and has corrected its charts\n>Due to an error, some reported purchases were counted twice which resulted in incorrect totals. This has been fixed (12/4/2023).\n\nSo the politician referenced a website making best guesses based on HIS TWEETS instead of referencing his own data from his own accounting, and that website has now made adjustments due to incorrect counting. \n\nGuys....this is ridiculous. Bukele has charisma, but charisma is almost an opposing characteristic of trustworthiness. Please don't forget, he's still a politician only trying to make himself look good. \N 19512 \N 404498 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 1.89322746035504 0 \N \N f 10495073 \N 1 215652700 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 306412 2024-11-24 10:21:59.666 2025-03-29 22:39:47.096 Migrated my WoS balance to Mutiny For a while I've held a WoS balance as— what I would class as— "a piping-hot lightning wallet". For me WoS has been the highest level of custody that I was willing to hold around 1 million sats on. Should I have any issues with my lightning node (routing, connection, etc), or the price of 0-conf fees spiked (Muun issues), or I want to demo lightning without doxing my lightning balance— WoS has been my go to.\n\nI've known about Mutiny for a while, since @TonyGiorgio was posting the [hackathon progress](https://stacker.news/items/84305) back in 2022. I got access to the Beta in July 2023 and had a click around, but I'm always skeptical transferring any BTC in to new wallets (from the days of copying and pasting `31pNM...` from web pages and hoping it was the right destination).\n\nI decided at the weekend it was time to give Mutiny a try. \n\nIn order to hedge the browser storage risk, I generated a new seed using my HWW and [BIP-85](https://github.com/bitcoin/bips/blob/master/bip-0085.mediawiki), then imported it in to Mutiny, so no need to write it down.\n\nI'm really impressed by the experience so far— it _feels_ like one of the most solid Bitcoin software products I've used recently. I think the choice of WebAssembly to enable the privacy and self-custody experience is a total zinger, especially with BDK + LDK.\n\nLooking forward to continuing my Mutiny journey, and happy to now hold <100k sats with custodians. \N 2593 \N 306412 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.3505608967842 0 \N \N f 794065445 \N 7 237249484 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 7 0 0 423252 2025-03-03 06:56:18.361 2025-03-29 22:39:47.097 Over 40 people showed up over 1st ever bitcoin meetup in Havana Cuba 🇨🇺 ![](https://i.postimg.cc/Qhv2bT9Q/imageedit-15-8549920741.jpg)\n\n[Source](https://twitter.com/RunwithBitcoin/status/1662868130052419584) \N 12951 \N 423252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6524076252447 0 \N \N f 161812106 \N 1 10531358 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447143 2025-03-21 16:33:35.5 2025-03-29 22:39:47.359 SN slowness apology During a database backup last night, the filesystem where we store *temporary* (non-critical) database files got borked somehow. For some reason, the database's cope, likely recreating the temporary files over and over again without anywhere to store and reuse them, caused it to get really slow. It took us awhile to figure out that was the cause and it was fixed by literally turning it on and off again.\n\nThank you to everyone that reported it, and sorry for the downtime and the verbose error messages. (It's not wholly intentional to show you the sausage making but it helps us diagnose issues easier until we create some kind of error digest system.) \N 683 \N 447143 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.5636228577479 0 \N \N f 801662895 \N 9 54487322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:24:38.66 f \N \N \N 0 0 0 0 5 0 0 441611 2025-03-18 07:16:06.777 2025-03-29 22:39:47.362 Surviving in Inflation Infested Amsterdam There’s no such thing as a free lunch, especially when inflation’s involved. Inflation in the Netherlands, my home country, has spiked to a surreal 17.1%.\n\nWarmth\n\nI’ve recently been allowed to sleep in an attic at a friend’s house. There is no heating, but there couldn’t be given the exorbitant energy prices. I thank God that I get to sleep in a room, many are not so lucky. With luck, I’ll be able to sleep there in the coming months.\n\nI can’t be there during the day because the neighbors might notice. It is illegal to sleep here. My friend could lose her house if they found out.\n\nIn the evening, I sneak upstairs and stop by my friend’s front door to download files from her Wifi. I enter the room quietly and crawl under the horse blankets: it’s warm in there.\n\nI then endlessly listen to podcasts on Fountain, so I don’t have to think for myself and earn a few satoshis. I don’t fall asleep until around three o’clock and wake up at five o’clock. I have trouble falling asleep because of my worries, but I do fall asleep and wake up broken at seven o’clock.\n\nWhen I wake up, the day has already been ruined, and I have a difficult time getting going. But I do. I wash with a washcloth and bucket water. Silently, so that the neighbors do not hear.\n\nI wonder how I will survive this winter. I am not alone, my friend cried when she got her energy bill last week. I promised her to pay some money, but we both know I got nothing.\n\nEnergy\n\nI eat bread for breakfast, but this is becoming increasingly difficult as everything becomes more expensive. Because of the energy crisis, bakeries are even closing. Fortunately, for the time being, I get a lot of food.\n\nI will do anything to avoid spending money. I still have to spend practically all my money for another year and a half (548 days) before I am out of debt. Things go the way they go. I survive minute by minute, day per day.\n\nI go to my addresses all day long. I can come here for something to eat, a cup of coffee, and if I really lose it: a shower. I usually flee to the library across the street as soon as possible for warmth and electricity for my phone.\n\nI read the free newspapers, sometimes check Twitter, and get panicky about the state of the world, the crisis, everything. Social media gets me more restless and too much always gives stress and frustration.\n\nI hope the libraries stay open, you don’t know with all that’s happening in the world. To save energy, I can easily imagine them closing the library or, at the very least, turning off the lights and heating.\n\nI need free energy but I know that nothing in this life is free. I’m afraid of energy blackouts.\n\nFood\n\nMy day consists of anxiously working and waiting. I sell newspapers outside or work part-time in a back office: the inflation eats the little money I make. I’m ashamed to admit that I occasionally beg for money or worse.\n\nBut people are so caught up in their own problems that they don’t even notice me anymore. My rescuers are always elderly ladies, they don’t buy my homeless paper but give me paper money or groceries (Deodorant and expensive women’s products are especially useful because they are out of my price range).\n\nI don’t know what will happen. I prefer to retreat into myself. Wishing not to be there anymore. I simply turn myself off like a robot and fast forward to something better.\n\nBecause of the crazy inflation, the money is evaporating before my eyes. It‘s especially painful when shopping for groceries. “Inflation reduces your debts,” they claim. So far, I haven’t noticed anything. Everything is becoming more expensive, and my paycheck is disappearing due to collection agencies that always know where to find me.\n\nI occasionally get a cheap sandwich or some leftovers for lunch; a friend uses ToogoodtoGo for cheap food; she usually pays. I now cook in groups as well. Everyone brings ingredients so that we can cook for a few days and then divide the food. Some people in my group are afraid of hunger, while others are simply lonely and prefer to talk rather than eat.\n\nEverything is so uncertain. I feel empty and my life sucks. When I go for a walk in the park after my work, I feel a little better. The sun is still shining brightly. Leaves fall to the ground and dogs bark. I’m not thinking about myself or the void that stares at me. I continue to breathe.\n\nI desperately try to bring in sats, about 500 sats every day. I use several apps to accomplish this for as long as I can charge my phone. I’m trying to save for a future dream, though I’m not sure what that dream looks like anymore. What dreams remain if the entire world is shattered?\n\nOnly a room, food, warmth, and energy.\n\nHomeless Mokum\n\nI am homeless in Amsterdam. I am rebuilding my life with Lightning and Bitcoin. If you want please donate some sats:\n\n\nHomelessMokum@zbd.gg\n\nhttps://twitter.com/HomelessMokum\n\nhttps://homelessmokum.medium.com/surviving-in-inflation-infested-amsterdam-a1b8f447d36f \N 680 \N 441611 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 27.2951678271131 0 \N \N f 78774543 \N 3 158723119 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421266 2025-03-01 14:47:39.136 2025-03-29 22:39:47.092 Gaming Stacker News is Self-Defeating in the Long-Run Previously, I wrote about my concerns surrounding the Keynesian Beauty Contest nature of Stacker News: https://stacker.news/items/473181/r/Undisciplined. Check that out for context.\n\nNow, I'd like to add some thoughts about why I'm hopeful that we can sustain a culture of authenticity in the face of the perverse incentives those contests have.\n\n## Repeated games are different\nThe most important element that I didn't touch on in the previous post is that most of us don't just use Stacker News once and abscond with our rewards. We come back over and over again.\n\nThat matters for the incentives because we aren't just guessing today's beauty contest winner, we're signaling who tomorrow's contestants should be. If you're zapping posts that you don't like, just because you expect them to do well, then you're going to have more posts like that to look at in the future and fewer of the ones you do want to look at.\n\nEventually, I imagine inauthentic zappers will lose interest in a site that only offers content that's valuable to other people.\n\n## Authenticity optimizes global trust\nOur votes in this beauty contest are weighted by our global trust score, which is something like our propensity to zap content that is valued by others. It's based on our individual trust scores with every other stacker, though, and this is what got me thinking about this post.\n\nWhen you zap inauthentically, you may get more rewards today, but you are also increasing the trust scores of those who also zap that way and decreasing the scores of those who share your authentic preferences.\n\nAlternatively, if you zap authentically, then you will elevate those who share your preferences and give more weight to their votes in the future. This incentivizes such people to be on Stacker News at all.\n\n## TLDR\nLong-term, being authentic actually maximizes your voting power on Stacker News and will result in being maximally rewarded for zapping your favorite content.\n\nThat's in addition to the direct effect of incentivizing people to make more content that you like.\n\nZap true and Stacker News will become the place you want it to be.\n\n### Some other posts about using SN well\n(Just hover over links to see the post titles)\n\nFrom me\nhttps://stacker.news/items/287074/r/Undisciplined\nhttps://stacker.news/items/523858/r/Undisciplined\nhttps://stacker.news/items/488525/r/Undisciplined\n\nFrom @Natalia\nhttps://stacker.news/items/252695\nhttps://stacker.news/items/392551\n\nFrom @cryotosensei\nhttps://stacker.news/items/400068/r/Undisciplined\nhttps://stacker.news/items/444755/r/Undisciplined\nhttps://stacker.news/items/393176/r/Undisciplined\n\nAs always, zap well. \N 12911 \N 421266 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.1515762743715 0 \N \N f 178924863 \N 1 236460667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455920 2025-03-27 12:14:41.366 2025-03-29 22:39:47.093 Is 69 the Best Mental Model for Getting the Most Out of Stacker News? @ek encouraged me to make a special post to commemorate my 6969th post on Stacker News. I'm a family man, so I surely have no idea why that number would have any significance. I believe he was sad to discover that he just missed out on his own 6969.\n\nAnyway, as many are reflecting on their lessons learned from MSM, to me it only reinforced what Stacker News is all about: mutual satisfaction.\n\nIf you're only earning sats and not zapping others, not only are you letting them down, you're letting yourself down. @k00b has designed a feedback system that rewards giving as well as receiving.\n\nLikewise, if you're just zapping away, but not commenting or posting, you're not just foregoing potential zaps and rewards, you're denying others the opportunity to show their appreciation by reciprocating. \n\nI hope that was vaguely suggestive enough for you, @ek, you degenerate. \N 3342 \N 455920 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4639683506001 0 \N \N f 223432581 \N 2 132591436 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1452 2022-09-14 19:18:04.019 2025-03-29 22:39:47.094 My Speculative Fiat Attack Fantasy is Over! Good morning.\n\nLast night I went through all of my Fiat debt and Bitcoin holdings. I'm absolutely embarrassed by the Fiat debt. It's astronomical for me. \n\nHowever...\n\nAt least now I can see the reality and the numbers. Regardless of what "others are doing" it's my trap that I've entered and now I recognize my slavery for what it is. \n\nSo...\n\nI make it part of my spiritual journey to liberate myself from this slavery. The tools are available and I have the freedom to use them. \n\nThe Good News...\n\nI had already figured out how to use GnuCash to track my Bitcoin and I'm glad that I revisited this in combination with my Fiat usury. I've learned that at my current holdings I would have to hope for a Bitcoin buying power of $1,000,000 just to break even! That means that in today's USD buying power I would hope that doesn't change but it will. They will increase the supply of USD.\n\nSo my debt is USD defined and my current earnings are in USD which my earnings have to pay for current and future USD prices. \n\nInterest rates, inflation and taxes will increase. My Bitcoin will also increase in buying power but it currently will not outpace my debt. I have to increase my stacking and I have to increase my paying off of my Fiat debt. \n\nUsing GnuCash I was PLEASED to see that It actually can be done! I can budget. I can see the data and I can respect my earnings instead of pissing them away and hoping for a miracle. \n\nI'm able to work. I'm able to work faster than the value of my debts and the increased price of Bitcoin. This means I must cultivate my Bitcoin and earnestly reduce my Fiat debt... Totally possible.\n\nI'm hearing people say that a "speculative attack using Fiat debt" is possible. You're fooling yourself. You are not that smart. I've already been there and if I wasn't FIAT smart to begin with, how could I be with Bitcoin? The answer is that I still have to keep score even if the game is rigged. \n\nI've wanted to do a write up on using Bitcoin with GnuCash so maybe I will. \N 1244 \N 1452 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.7010466817178 0 \N \N f 169502046 \N 1 115380093 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428371 2025-03-07 07:34:20.608 2025-03-29 22:39:47.094 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/391396) are the updates stackers shared from all their latest work projects. \N 16970 \N 428371 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.7271199168869 0 \N \N f 267872167 \N 2 36997038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410249 2025-02-20 11:46:27.727 2025-03-29 22:39:47.095 SN bug fix: multiple territory revenue for one founder [As reported](https://stacker.news/items/749407) by @Jon_Hodl, founders of multiple territories were only receiving revenue for one of their territories each day. \n\nThe change I just pushed made these founders whole: for each day we should've paid them revenue on multiple territories, we've back paid them for ALL territories including repaying them for the one territory they were already paid for.\n\nA description of the cause of the bug can be found in the footnote of [this comment](https://stacker.news/items/749407/r/k00b?commentId=749825), which might be informative for anyone else that's in an abusive relationship with postgres.\n\nThis bug has also been fixed for any future territory revenue payments. Additionally, we weren't adding territory revenue to `sats stacked` as seen in profiles and that's been fixed retroactively and into the future.\n\nThe following past or current owners of multiple territories suffered from this bug and should, by the time this is posted, experienced the shown increase in their wallet balances:\n\n| nym | back sats |\n|----------------------------|---------|\n @siggy47 | 541782\n @benwehrman | 333332\n @davidw | 193687\n @ek | 131699\n @AtlantisPleb | 109638\n @MaxAWebster | 70078\n @OneOneSeven | 61384\n @UCantDoThatDotNet | 54372\n @Jon_Hodl | 37607\n @nout | 26488\n @needcreations_ | 19527\n @south_korea_ln | 6663\n @BlokchainB | 6371\n @lloyddunne | 4829\n @roytheholographicuniverse | 4201\n @niftynei | 4065\n @UCantDoThatDotRugged | 3388\n @kr | 1851\n @antic | 1079\n @Ed_Relight | 87 \N 12356 \N 410249 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.6789096673791 0 \N \N f 1133033357 \N 9 94045133 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 422577 2025-03-02 14:58:51.433 2025-03-29 22:39:47.093 SN Invite Links During this morning's SN Q1 recap/Q2 roadmap call @kr mentioned how little referral links were being utilized. \n\nIn response. I commented the following: \n\n"Referral program is going to remain a challenge. Most stackers prefer to remain nym on SN and the most likely referrals would be to people they know in the real world. This likely prevents them from referring even though they love and support SN."\n\nWhile I think referrals uptake may remain challenged, I do think invite links with sats loaded might be a good option for territory marketing. So I tested them today. I create up a 1000 sat invite link with a 5 invitee maximum and sent the first one to myself. It worked perfectly. \n\nSent it via DM from my Stacker Sports nostr account to my grayruby nostr account. Here is what it looked like when I clicked on the link. \n![IMG_5842.jpg](https://m.stacker.news/26814)\n\nI clicked the link and signed up as a new account and received the sats immediately. \n\nIn my grayruby SN account I received the following notification:\n![Screenshot 4-15-24.png](https://m.stacker.news/26815)\n\nIn future it would be great if there were territory invite links as well "you have been invited to join the conversation in Stacker Sports. A 1000 sat gift is waiting for you when you sign up today". \n\nI know this doesn't necessarily solve my concerns over stackers wanting to remain nym, thus being apprehensive about using referral links, but it might serve as a good marketing tool for territories. There are a number of people I talk sports with on Nostr. I can use the links to entice them to continue the conversation on SN. \n\nWould like to hear feedback from other stackers and territory founders, what do you think about invite links and have you tried using them to bring new users onboard?\n\nThanks for reading. \n\nCheers,\nGR \N 14258 \N 422577 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.7008841885375 0 \N \N f 95268131 \N 1 165985884 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404270 2025-02-15 18:10:55.153 2025-03-29 22:39:47.093 SN Zapping and Posting Fees \n### Less zapping and posting?\n\nI'm not very observant, but a few fellow stackers have mentioned that there seems to be a reduction in posting and zapping here lately. I started checking the analytics page and looking into territory posting fees. \nIt's true that the top posts seem to be awarded fewer sats than what was normal over the past year or so. It's less dramatic on a longer time frame, I think, but it's still concerning. \n\n### Why?\n\nThere are two big reasons for this, in my opinion:\n\n- First of all, It is counterintuitive for new stackers to realize that by giving away their sats through generous tipping, they can earn more here. I have posted about it, @Undisciplined has posted about it, @Natalia has posted about it, yet it's still hard to convince stackers. I have noticed many accounts who have been here a year or two that still have not gotten the message. \n- Territories may be the other culprit. In 2022 and 2023 the fiat value of bitcoin was much lower, yet the cost to post on SN was much lower. It makes sense that new stackers would zap fewer sats now than a year ago, when bitcoin's value in fiat was roughly half what it is now. However, as a result of territories, the average posting fees here are much, much higher, perhaps by a factor of 5 or 10 to one. Anecdotally, I have been shocked a few times when hunting around for a territory to select for a post. I don't consider myself a cheap zapper. I can't imagine the reaction of new stackers here. I am not blaming territory owners. I own three myself. The costs to own a territory are astronomical compared to what you can likely earn. Raising posting fees are an attempt to at least reach a higher fraction of break even monthly. Owners also hope that setting the bar high will improve the quality of posts. \nIncidentally, this "post inflation" is not just a territory owner thing. Despite bitcoin tripling in fiat value over the past year or so, the cost to post in the original three, SN owned territories (bitcoin,meta,tech) has also risen dramatically. \n\n### The Solution?\n\nThe entire site will suffer if stackers stop registering and posting. \nI don't have easy answers. I know territory fees are an important part of SN revenue. I just fear that if things continue like this, SN will become less relevant. \N 2670 \N 404270 \N \N \N \N \N \N \N \N education \N ACTIVE \N 18.1252940935678 0 \N \N f 1559700149 \N 11 138991954 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 9 0 0 443467 2025-03-19 11:21:19.772 2025-03-29 22:39:47.094 jb55: "This will likely be the last year of damus" > This will likely be the last year of damus. Will try my best to make this thing sustainable, but nostr clients don’t make money and I once funding runs dry its over as I can only burn saving for so long. Glad I was able to help play a small part in this regardless of what happens. Going to give it my all next year to try to keep the dream alive. Thanks for coming along for the ride ✌️\n\nIs there no way for nostr clients to make money? https://primal.net/e/note1l2s7wyqg5xz7ke6t20p03t9awk629utr6wxjjmg7k4cqr0eflrdql5p5ke 617 \N 443467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.0751676525848 0 \N \N f 192448833 \N 1 4938277 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:32:58.63 f \N \N \N 0 0 0 0 1 0 0 3119 2022-10-25 11:21:39.382 2025-03-29 22:39:47.096 How to deal with smart people that don't know about Bitcoin It can be intimidating to talk to someone that's smart that spouts nonsense about Bitcoin. Arguing with them is going to be difficult because they likely have flawed economic thinking that is at the core of their beliefs.\n\nIf you're arguing with a socialist, for example, they're likely to have some form of class struggle or oppressor/oppressed paradigms that guide all their thinking. If you're arguing with a mainstream economist, they're likely to view centralized monetary control as a good thing. If you're arguing with a gold bug, they're likely to deny the value of digital things.\n\nIt's a pretty heavy lift to argue with these people, because, most likely, they haven't studied Bitcoin in any depth. But if you want engagement, start with their assumptions about the current system. Do they know how it works? Do they understand that all money comes from loans? Do they get that inflation destroys savings and that it's a stealth taxation? At the very least, this should get them on a field that's a little more neutral and fact based. But it's also possible that they may understand all these things and still be against Bitcoin. What then?\n\nYou can move from there to whether freedom, particularly property rights are a good thing. Even the most ardent socialists don't like having property taken away from them. And really, this is a moral issue that's very intuitive. Usually, you can make headway that property rights, especially over savings is a good thing.\n\nFinally, you can move to Bitcoin. Do they understand that it's decentralized? That it's digital and that digital things can have value? This is where you need to avoid the stupid economics of the mainstream, who like talking about velocity and unemployment and so on. Those are all irrelevant to the fact that Bitcoin is good money. \N 5829 \N 3119 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.0194705096257 0 \N \N f 98417106 \N 1 111891695 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436093 2025-03-13 10:14:25.891 2025-03-29 22:39:47.099 Which is the best Bitcoin debit card? Boltcard \N 21022 \N 436093 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 18.7071668481103 0 \N \N f 1985268082 \N 18 36580011 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:59:19.38 f \N \N \N 0 0 0 0 7 0 0 436364 2025-03-13 13:57:26.537 2025-03-29 22:39:47.358 PSA for Public node runners ## PSA for Public node runners:\nIf you want to became some kind of "profitable node" listen to my advice:\n- run a very good node, with good connections, stable, not mobile\n- have large liquidity, I mean LARGE not joking with 1M sats channels\n- provide channels as LSP for private nodes like Zeus, Blixt, Mutiny and all others that can open channels to any node\n- provide good routing fees for private channels\n- yes, charge a fee to open a private channel, it is normal that, because we know that there are costs in maintaining private channels. Privacy is not free.\n- offer good timing to maintain those channels alive and not close them.\n- if you can offer swaps between LN-onchain that will be a plus\n- if you can offer inbound channels that will be a plus\n- take care of your private peers because they will be like your "secret" customers that will bring you a lot of traffic.\n\nMore private LSPs = more decentralized LN\nYou don't have to be a real public LSP, is enough to be for your friends and family.\n\nYOU WILL REMEMBER MY WORDS \N 16270 \N 436364 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 10.1795174471659 0 \N \N f 363984309 \N 2 180945506 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:49:11.435 f \N \N \N 0 0 0 0 1 0 0 404366 2025-02-15 20:08:07.417 2025-03-29 22:39:47.362 Carless cities? What about these are bitcoiners so against? C'mon guys. Hear me out. I live in San Francisco, Chicago before that, and view modern cars like this:\n\n· More surveillance than an actual surveillance camera\n· Require hyper-KYC\n· Are the most common point of contact between people and law enforcement\n· Are part of the fiat debt trap with loans \n· Require a perpetual expenditure (capex) of resources like mining with none of the benefits, wether it's gas, repairs, insurance, washing, parking, or just theta\n· Swell city budgets, from more police to annual repairs\n· Are increasingly dependent on a subscription-based model for features, which makes me almost violent\n\nI mean, where's the freedom that the *Ultimate Driving Machine* is selling me? Maybe I'm built too *Ford Tough.* Of course none of this applies if you live outside the city, but for the major population center dwellers, why not allocate the streets to restaurants for *al fresco* dining instead of Tesla's four-wheeled spyware? Or build parks. Allow gyms to use the space in the mornings, endless farmer's markets, gardens, micro-trans, bars, general event space, whatever. Return it to small businesses, communities, churches. \n\n> **It's social. It's active. It's healthy. That seems like the *new thinking, new possibility* Hyundai always talks about.**\n\nThis isn't like the pedestrian scourge I've noticed. Let me explain: one of my biggest complaints in the cities I've domiciled is that they've made a terrible mistake trying to combat homelessness by removing all the benches and areas to sit. Now when you walk about the city, you feel rushed, there's no place to sit, you're funneled into businesses or in and out of parks, thusly, you walk shorter distances, stay indoors more, etc. It's bullshit, and frankly I'm not sure why it hasn't been brought up in cultural discussions. Has it curtailed homelessness? No. In fact, they should've done the exact opposite, and built significantly more loiter space. \n\n> **Humans need that.**\n\nI dumped my car during the pandemic. Sold it for about as much as I bought if for, then bought bitcoin, and an e-bike. This bike gets 70 miles per charge, charges in under an hour, goes 35mph, parks anywhere, weighs 45lbs, and costs about $50 total in yearly upkeep. I get to work and back in less time which makes me more productive, I'm healthier, and have more disposable income as a result. Micro-trans (e-bikes, scooters, etc) is exploding. A parabola of investment, consumers, and city pathway allocation is meeting its demands. I just feel that getting rid of cars throughout large blocks of a city is a boon. It's more efficient in all ways contending, proffers a better quality of life, reduces healthcare costs, brings communities closer and so on. I just don't see Tesla's self-burning car software with built in NSA sensors based on a subscription model for features (fuck I hate these), and subsidized by taxpayers playing a role in future city affordances. \n\nI'd like to hear some rebuttals. Satoshis for hi-rez replies, as always.\n \N 21805 \N 404366 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.9157981818749 0 \N \N f 229705321 \N 1 202834134 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455551 2025-03-27 06:08:50.083 2025-03-29 22:39:47.368 The End of Social Media: An Interview With Jack Dorsey \N https://www.piratewires.com/p/interview-with-jack-dorsey-mike-solana 1046 \N 455551 \N \N \N \N \N \N \N \N history \N ACTIVE \N 5.15445077739837 0 \N \N f 1567863005 \N 12 225049604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 426555 2025-03-05 17:29:57.134 2025-03-29 22:39:47.093 Damus going Fedi? JB55: \nRunning lightning nodes is too complicated for 99% of people\n\nTo do non-custodial lightning on your phone it needs to be online when you receive the payment and requires an initial onchain tx to receive.\n\nThis is terrible ux, so you are forced to use custodial solutions like wallet of satoshi, and privacy is terrible.\n\nfedimint is a third option: the mint can provide a lightning address for receiving and sending out zaps even when you’re offline. This is private, temporary custody.\n\nWhen the phone comes online it can choose to sweep fedimint funds into its non-custodial phone wallet (a future non-custodial ⚡️ wallet in damus as an example). In the UI this would be simplified as your custodied and non-custodied balanced summed to your total balance. \n\nDamus’ fedimint would be federated with other guardians such as mutiny, so I can’t unilaterally rug the custodied balance. This is implemented as a multisig bitcoin wallet behind the scenes.\n\nThe use case is killing non-private lightning custodians who can unilaterally rug you. nostr:note12yd075f9un56nlmmh6dk6ehxnatjg5kf35wcevx8rwa8kstzt5rqkv8n9m\n\n![IMG_0561.png](https://m.stacker.news/12832) \N 16747 \N 426555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4066609909921 0 \N \N f 44805522 \N 1 130487943 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435457 2025-03-12 17:34:48.752 2025-03-29 22:39:47.094 Secure the bag ## Problem: Bitcoin goes up and you're not ready\nIf you're into bitcoin, you should be securing the bag. If it's on an exchange, sell it back to them and get [non-KYC](tab:https://bitcoinqna.github.io/noKYConly/) sats. Either in person from a friend or via [HodlHodl](tab:https://hodlhodl.com/), [Peach](tab:https://peachbitcoin.com/) (mobile), [RoboSats](tab:https://learn.robosats.com/docs/quick-start/) (lightning), or [Bisq](tab:https://docs.bisq.network/getting-started.html) (advanced) Then you'll want to receive those sats into a wallet. Preferably using an offline phone or a hardware wallet. But beginners usually opt for an online (hot) software wallet. And for most people a software wallet is going to be fine. Just remember that as the price of Bitcoin goes up, you could be in the uncomfortable position of holding more money than you meant to on a hot (exposed to the internet) wallet on your phone.\n\n## Software Wallet Apps\n[Blue Wallet](tab:https://bluewallet.io/) (iOS and Android), [Phoenix](tab:https://phoenix.acinq.co/) (Lightning), or [Samourai Wallet](tab:https://samouraiwallet.com/download) (Android + Privacy focused)\n\n![A Blog by Expatriotic](https://bear-images.sfo2.cdn.digitaloceanspaces.com/expatriotic-1699499270-0.png)\n\n## Phone\nInvest in a second phone like a de-googled Pixel phone flashed with Calyx OS or Graphene OS that never touches the internet. Then use [Sentinel](tab:https://sentinel.watch/) on your online phone as a "watch-only" wallet. A watch-only wallet doesn't have the private key but can be used to view balances and compose transactions. Signing happens elsewhere and is then ported back to the watch-only wallet for broadcasting.\n\n![A Blog by Expatriotic](https://bear-images.sfo2.cdn.digitaloceanspaces.com/expatriotic-1699497787-0.png)\n\n## Dedicated Bitcoin Devices\nOr if you're feeling frisky, get yourself a dedicated signing device to hold your private keys (aka, hardware wallet) like the one [Foundation](tab:https://foundationdevices.com/) sells called [Passport](tab:https://docs.foundationdevices.com/en/passport). \n\n![A Blog by Expatriotic](https://bear-images.sfo2.cdn.digitaloceanspaces.com/expatriotic-1699497743-0.png)\n\nPair this with a watch-only wallet like [Envoy](https://docs.foundationdevices.com/en/envoy) (mobile via VPN or TOR) for a smooth experience or [Sparrow Wallet](tab:https://www.sparrowwallet.com/docs/) (desktop + TOR) if you want a bit more granular detail for every transaction crafted.\n\n\n![A Blog by Expatriotic](https://bear-images.sfo2.cdn.digitaloceanspaces.com/expatriotic-1699498592-0.png)\n\n## Seed Words (Private Key)\nDon't forget that regardless of whether you're using a software wallet or a hardware wallet, you'll need to back up 12-24 seed words that should be backed up on paper or [steel](tab:https://ronindojo.io/en/roninsteel#learnmore) (unless you use Envoy which supports encrypted microSD backups).\n\n## Bitcoin Node\nNow if you really want to secure your bitcoin, but also protect your privacy, then you can invest in your own Bitcoin node, e.g., [Tanto](tab:https://shop.ronindojo.io/product-category/tanto-deals/), and always run things over the TOR network.\n\nThis is because you're always using someone's node if you don't use your own, so you're trusting them to tell you that what you're receiving is actually Bitcoin (AKA it follows the rules of the network). You're also revealing information about yourself such as your xPUBs, the list of all your wallet addresses. This can be used to link all the Bitcoin going in your wallet as belonging to the same owner. This is arguable step last on the journey to being a self-sovereign Bitcoin holder. \n\n![A Blog by Expatriotic](https://bear-images.sfo2.cdn.digitaloceanspaces.com/expatriotic-1699497848-0.png)\n\n\n\n## Final thought\nLast step in terms of opsec (operational security) is to STOP telling everyone you meet that you own Bitcoin (guilty unfortunately). It's hard sometimes because you get drawn into conversations about the world and are tempted to evangelize. But be as vague as possible. Remember, Bank of America isn't holding your money anymore, YOU are. So if anyone gets a hankering for your funds, they know right where to find you.\n \N 1428 \N 435457 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.9495919165699 0 \N \N f 1075599255 \N 7 155585710 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:17:31.318 f \N \N \N 0 0 0 0 7 0 0 455422 2025-03-27 02:20:50.02 2025-03-29 22:39:47.097 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nIf you missed our last edition, [here](https://stacker.news/items/276102) are lots of fun facts stackers shared.\n\nSend your best 👇\n \N 2195 \N 455422 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.9191674782893 0 \N \N f 386045771 \N 2 89140479 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 423378 2025-03-03 10:02:21.112 2025-03-29 22:39:47.097 What do I need this bitcoin for? 🔦 Famous investor Warren Buffett recently said: \n> #### *"If you offered me all the bitcoins in the world for $25, I wouldn't take it."* [^1]\n \n\nAnd he would have done well. Bitcoin would have no value in that case. For bitcoin to serve its purpose, it must be well distributed to as many people as possible.\nThat's also why I want to try to convince you to play the bitcoin game with me.\n\nBut what good would bitcoin be to you anyway? You may not even have any of the problems that bitcoin is trying to solve.\n\n### It doesn't protect you from inflation.\nThere is a fixed amount of bitcoin - it will be almost 21 million someday and never more. But over the last year, bitcoin wouldn't have protected you much. Whatever you bought at almost any time in the last year, you're worse off now.\n\n\n|![Bitcoin price in USD over the last year](https://github.com/hynek-jina/test/blob/main/images/BTC_1Y_graph_coinmarketcap%20USD.png?raw=true)|\n|:--:|\n| Bitcoin price in USD over the last year |\n\n### You don't need unlimited transactions\nWith bitcoin, you don't need to ask permission to send funds. But most of the time, neither does your bank. When they want proof of income or freeze your funds for a while they do it to protect you.\n\n### You don't really need fast and cheap transfers around the world either\nBitcoin works from morning to night, during the holidays, and is very fast and cheap when using the Lightning Network. But you do most of your transactions in your country. Card company fees are hidden in the purchase price and you don't have much reason to deal with them.\n\n### There's no need to run away from the war\nWith bitcoin, you can flee to a foreign country. All you have to do is remember 12 words. But you have contacts in your country, you know how it works here. Running away would bring too many complications.\n\n> #### In sum, you don't need bitcoin itself to live. 🤷\n\nHowever, bitcoin is a so-called **coordination game**\n\nIf others don't use bitcoin, it will be useless to you. But it's not such a big deal if you have some bitcoin. But if the rest of the world switches to bitcoin and you don't have any, you'll have a big problem. In the new world, your money will have no value. Those who have been accumulating bitcoin for years will have a huge advantage against you.\n\n|![Bitcoin adoption matrix](https://github.com/hynek-jina/test/blob/main/images/Bitcoin%20adoption%20matrix.png?raw=true)|\n|:--:|\n| Bitcoin adoption matrix |\n\nThe later you enter bitcoin, the more of your privileges you will lose. \n\nBut all this is only if others want to use bitcoin.\n*Why would they?*\n\nThere are plenty of reasons. Some of them I've already mentioned, even though they probably don't make sense to you. But for the masses of people in the rest of the world, they are of great importance.\n\n### Isn't bitcoin protecting you from inflation?\nIf you look at the numbers in the long run, you'll see that it protects you too. \n\n|![Bitcoin price in USD since 2013](https://github.com/hynek-jina/test/blob/main/images/BTC_ALL_graph_coinmarketcap%20USD.png?raw=true)|\n|:--:|\n| Bitcoin price in USD since 2013 |\n\nIf you think only in the last year, you only need to live in a country with an even worse currency than we have. For example, this is a chart of the Turkish lira.\n\n|![Bitcoin price in TRY over the last year](https://github.com/hynek-jina/test/blob/main/images/BTC_1Y_graph_coinmarketcap%20TRY.png?raw=true)|\n|:--:|\n| Bitcoin price in TRY over the last year |\n\nI couldn't find charts of countries with the worst inflation like Sudan or Venezuela.\n\nInflation is rampant all over the world. Only about 21% of the world's people live in countries with inflation between 1-3%, which is generally recommended by macroeconomists (even though there is nothing meaningful to support such a target). The other 6.6 billion people live with higher inflation. Over 100 million people live with annual inflation over 100%.[^2]\n\nThere are many people in the world who are already protected from inflation by bitcoin. Billions more people will one day notice that there is a way to protect themselves. Then the move to bitcoin may be very quick.\n\n### People around the world are blocking transactions\nIn early 2022, truck drivers in Canada were forced to get vaccinated if they wanted to continue their jobs. This led to widespread protests. People pledged their support through the GoFundMe platform. The court subsequently decided to freeze the funds.[^3] The state tried to harm them in many other ways, but the funds only came to them through bitcoin. Read more here: https://bitcoinmagazine.com/search?query=trucker\nThese people had a good incentive to use bitcoin and became an example and a threat to many others. \n\nAt least in China they are experimenting with so-called CBDC - central bank digital currencies. It's not that much of an impairment compared to normal government money. But it does free the hands for more restrictions and central planning. There are enough people in China alone who will soon need an escape to the free money that is bitcoin.\n\nGlobally, 31% of adults don't have access to a bank account.[^4] In developing countries, it's over 40%. Overall, this affects 1.7 billion people. Even in your country, you can meet people who don't have a bank account yet, but they work with bitcoin on a daily basis.[^5]\n\nAll these people have a good motivation to learn how to use bitcoin.\n\n### Fast and cheap transactions\nIf you earn money abroad and send money home you may have to pay high fees. Low- and middle-income households moved about $550 billion in 2019. Companies like Western Union have a fee of between 5 - 9.3% on these transactions for $200. For smaller amounts, which are more common, the fee was commonly 40%.[^6] This motivated Jack Mallers to offer the Strike service in El Salvador with virtually zero fee. He uses the bitcoin network to do just that.[^7]\n\n### People are being forced to flee the country.\nBitcoin then saves their life savings. For example, one Ukrainian man fled to Poland and transferred $2,000 worth of bitcoin.[^8] Over 6 million people have fled to the Czech Republic alone this year because of the war. Globally, in 2021, over 81 million people were forced to leave their country.[^9] All of these people have a good incentive to gradually learn how to use bitcoin.\n\nBitcoin is the money that most people in the world agree on. The great powers are competing with each other - the dollar, the yen, the ruble and many others. Ordinary people, meanwhile, are gradually switching to bitcoin. In the western world, people play casinos with altcoins. But in the long run, those who save in bitcoin win. You don't have to want to accept that. But the sooner you adopt bitcoin, the better off you will be over time. A world with bitcoin is both fairer and more efficient.\n\n### Summary\n- You don't need bitcoin much in the Western world\n- You're better off than people in other parts of the world\n- But they need bitcoin very much.\n- If you don't switch to bitcoin in time, you will lose your privilege\n\nOr as the classic says:\n> #### *"It might make sense to get some in case it catches on. If enough people think the same way, it will become a self-fulfilling prophecy."*\n> *Satoshi Nakamoto*\n\n---\n*This article is a free transcription of my [lecture](https://www.youtube.com/watch?v=8R5en1Vvm8k) from UTXO.cz on June 5, 2022 in Czech language 🇨🇿*\n\n### Resources\n[^1]: [www.cnbc.com/2022/05/02/warren-buffett-wouldnt-spend-25-on-all-of-the-bitcoin-in-the-world.html](https://www.cnbc.com/2022/05/02/warren-buffett-wouldnt-spend-25-on-all-of-the-bitcoin-in-the-world.html)\n[^2]: [tradingeconomics.com](https://tradingeconomics.com)\n[^3]: [www.npr.org/2022/02/10/1080022827/a-canadian-judge-has-frozen-access-to-donations-for-the-trucker-convoy-protest?t=1657713073570](https://www.npr.org/2022/02/10/1080022827/a-canadian-judge-has-frozen-access-to-donations-for-the-trucker-convoy-protest?t=1657713073570)\n[^4]: [globalfindex.worldbank.org](https://globalfindex.worldbank.org)\n[^5]: See for example [twitter.com/Stepec_Drabek/status/1546491478125461505](https://twitter.com/Stepec_Drabek/status/1546491478125461505)\n[^6]: [www.romania-insider.com/press-release-why-bitcoin-is-good-for-remittance](https://www.romania-insider.com/press-release-why-bitcoin-is-good-for-remittance)\n[^7]: [strike.me/faq/fees/](https://strike.me/faq/fees/)\n[^8]: [www.cnbc.com/2022/03/23/ukrainian-flees-to-poland-with-2000-in-bitcoin-on-usb-drive.html](https://www.cnbc.com/2022/03/23/ukrainian-flees-to-poland-with-2000-in-bitcoin-on-usb-drive.html)\n[^9]: [www.unhcr.org/refugee-statistics/](https://www.unhcr.org/refugee-statistics/) \N 20717 \N 423378 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 1.99358230585545 0 \N \N f 256796543 \N 3 23138308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 427775 2025-03-06 16:16:24.863 2025-03-29 22:39:47.098 SN release: random zap amounts, webln attached wallet In your settings, you can specify a zap range so that your zaps are a random amount within that range (inclusive iirc). It works with turbo zaps even! This was implemented by @WeAreAllSatoshi and @0xbitcoiner requested this iirc. \n\nYou can now "attach" a webln enabled wallet like Alby. This went live a week ago or so but we didn't announce it.\n\nAnyway, that's all we've got for now. 🫡 \N 672 \N 427775 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.1472214844662 0 \N \N f 430845823 \N 2 94444621 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 407970 2025-02-18 13:56:36.724 2025-03-29 22:39:47.358 Peer-to-Peer Markets - A Weekend Discussion Lately there has been a lot of talk about peer-to-peer markets in both the Lightning and Nostr ecosystems. There are at least a handful of projects that have launched or are working towards a launch, including:\n\n- [Civ Kit](https://github.com/civkit/paper/blob/main/civ_kit_paper.pdf)\n- [NIP-15 Nostr Marketplace](https://github.com/nostr-protocol/nips/blob/master/15.md) (@darthcoin's guide listed [here](https://darthcoin.substack.com/p/lnbits-nostr-market))\n- [OpenBazaar 3.0](https://github.com/OpenBazaar/openbazaar3-rust)\n- [Mostro](https://github.com/MostroP2P/mostro)\n\nAs well as a few Bitcoin-specific marketplaces:\n- [Noones](https://noones.com/)\n- [Paxful](https://paxful.com/sign-up-transition) (recently suspended)\n- [Bisq](https://bisq.network/)\n- [RoboSats](https://learn.robosats.com/)\n\nSince it's the weekend and there isn't much "news" to discuss, we thought it would be fun to have a roundtable discussion about the state of these peer-to-peer markets, and the things that need to be built to help them achieve their visions.\n\nFirst, if we're missing any marketplace projects please post them in the comments.\n\nBelow is a list of thought-starter questions to get the ball rolling, but feel free to jump in with any questions or ideas you have:\n\n- Which marketplaces appear to be the most robust/resilient to censorship?\n- Which markets would you like to see these marketplaces serve first?\n- What products or services *should not* be traded in a peer-to-peer market?\n- Will marketplaces without topic-based or geographical limits be more difficult to scale up?\n- Are there any technical or design choices that marketplaces are making which concern you? \N 19930 \N 407970 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 24.1451507373774 0 \N \N f 591692234 \N 4 120438696 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437893 2025-03-15 00:44:51.41 2025-03-29 22:39:47.362 On starting a family I've been ringing with myself in regards to starting a family, for I greatly appreciate and care about the amount of freedom one gets to experience as a single male in his best years (not in terms of partying and girls though, I'm not *that* lucky).\n\nAs of now, I've found the next things to be "needed", making starting a family much more doable:\n\n* A (paid-off) house.\n\n* The (right) woman and in-laws.\n\n* A stable job with good pay (which I don't \n have and most likely won't have \n anyways).\n\n* Family support.\n\n* Financial buffers.\n\nAlthough Bitcoin could aid in point 1 and 5 (and maybe even in point 2, too, for what girls doesn't like a man with a paid-off house?), I'd still need to find a solid job, which really goes against my goal of escaping the "rat race", and simply roaming the earth with a backpack on.\n\nBut; maybe I'd look at that differently a few years from now, for I am only 24 now... \n\nDifficult, difficult...\n\nI'm not looking for advice as much as I'm looking for how you guys deal / dealt with this.\n\n\nPS: Why did the postage fees increase with 150%?! \N 16126 \N 437893 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 15.2016414448935 0 \N \N f 230094143 \N 1 30628872 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415904 2025-02-25 08:33:26.136 2025-03-29 22:39:47.363 lnproxy: A trustless way to improve pubkey privacy on lightning Lightning network privacy will improve. In the meantime, users of custodial lightning wallets, like Wallet of Satoshi or Strike, reveal the destination of every lightning payment they make to their custodian. With lnproxy, these users can instead generate and pay wrapped invoices to hide the destinations of their payments from their custodians.\n\nUsers that operate public lightning network nodes, reveal the identity of their node with every lightning invoice they generate. With lnproxy, users can instead generate and give out wrapped invoices to obfuscate the identity of their lightning network nodes from their transaction counterparties.\n\nLearn more at:\nhttps://github.com/lnproxy/lnproxy\n\nAnd try it at:\nhttps://lnproxy.org \N 21585 \N 415904 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 14.5151334172351 0 \N \N f 724374417 \N 4 150161824 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415776 2025-02-25 04:43:14.112 2025-03-29 22:39:47.363 Why bitcoin is up by almost 150% this year An awkward and surprising article from The Economist where they simultaneously insult bitcoin and conclude it’s hard to kill and real. https://archive.is/fbs0C 21042 \N 415776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9237023442672 0 \N \N f 202888034 \N 1 55048152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406671 2025-02-17 13:31:19.951 2025-03-29 22:39:47.093 SN sub proposal - NOSTR market ### Feature SN sub request\n\nCalling for this @k00b @ekzyis @supertestnet and any other shadowy supercoder interested in the proposal.\nIO know that there are many other marketplaces out there, but why we do not have on SN a sub for a marketplace with nostr or any other way you consider suitable.\nLet's give more options to users. Let's show to the nocoiners and haters that YES is possible to live paying with sats, directly from SN ! I am tired of those saying that they do not have places where to spend their sats.\n\nA place where any SN member could:\n- spend their sats from SN account directly in buying stuff from other merchants\n- bitcoin only\n- SN could act as escrow service, so will limit the possible scams (could be a very interesting project for you @supertestnet)\n- help merchants to start accepting bitcoin for their products/services, directly to bitcoiners\n- other members willing to pay fiat bills in exchange for sats from other SN members\n- SN users could use a separate account for the market if they do not want to dox their main posting account (when is about delivering goods to a certain address)\n- any other feature that is necessary\n\nPLEASE CONSIDER THIS IN YOUR DEVELOPING PIPELINE.\n[![I-have-spoken.gif](https://imgprxy.stacker.news/T2IKUqSARdG05nLWDpDiLKNYFE1pt7pJrs3C-sei8UE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvdDdHakNXblMvSS1oYXZlLXNwb2tlbi5naWY)](https://postimg.cc/bSgMmGTk)\n \N 18441 \N 406671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8243966106115 0 \N \N f 230931916 \N 1 587804 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451071 2025-03-24 11:32:07.436 2025-03-29 22:39:47.094 SN release: LNC attached wallet, 100k wallet limit, search bookmarks, more 1. The wallet limit has been reduced to 100k sats. Consider this a nudge to attach external wallets to your account.\n2. Attach LND for sending sats using Lightning Node Connect\n - we'll add receiving via LNC soon\n3. Search your bookmarks. Once they're done indexing, you can go to [search](/search) and search something and select `bookmarks` from the dropdown. (via @WeAreAllSatoshi)\n4. Support for [lnurl-verify](https://github.com/lnurl/luds/issues/182) (via @ek)\n5. Show preimages for withdrawals (via @ek)\n6. Secrets in forms are masked (via @BenAllenG)\n7. When you share links to comments, the preview image on external sites now scrolls the comment (via @BenAllenG)\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs) 4 weeks ago, we've paid a total of 3.6m sats to 15 contributors for 63 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/509217\nComplete list of changes: https://stacker.news/changes\nQ1 recap and Q2 roadmap: https://stacker.news/items/506566\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 10283 \N 451071 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 13.1164211717909 0 \N \N f 55555003 \N 1 13434971 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420059 2025-02-28 13:12:58.501 2025-03-29 22:39:47.095 What's your weakest definition of a self custodial lightning wallet? Many people seem to think that the holder of the private keys is the custodian, but with the emergence of services that allow the private key owner to do blind and automated signing that line is rapidly blurring and in a practical sense, I think maybe that's too narrow of a view. Would like to know your opinion.\n\n\n- **bitcoin core + [lnd, ldk, eclair, or cln]**: I do full validation of blocks and the mempool. I hold my own keys and I decide what transactions I'm going to assemble and sign. My machine is in my exclusive physical control. The way I connect to the internet and how I assemble transactions determines my privacy.\n\n- **lnd in neutrino mode**: I do moderate validation of blocks and the mempool. I hold my own keys and I decide what transactions I'm going to assemble and sign. My machine is in my exclusive physical control. The way I connect to the internet and how I assemble transactions determines my privacy.\n\n- **electrum client connected to a single electrum server**: I trust someone else for validation of blocks and the mempool. I hold my own keys and I decide what transactions I'm going to assemble and sign. My machine is in my exclusive physical control. If I privately connect to the internet, the electrum server can still gather an idea what my wallet looks like based on my queries, but they don't necessarily know who I am.\n\n- **electrum client connected to multiple electrum servers**: I don't trust a single server for validation of blocks and the mempool, instead I check with a few and see if they are in agreement. I hold my own keys and I decide what transactions I'm going to assemble and sign. My machine is in my exclusive physical control. If I privately connect to the internet, the electrum server can still gather an idea what my wallet looks like based on my queries, but they don't necessarily know who I am.\n\n\n- **greenlight**: I don't do any validation of blocks and the mempool. I hold my own keys but I let someone else provide me transactions to automatically/blindly sign, they know and indirectly control everything about my node unless I turn off the local signing software. The greenlight server has a full view of my lightning node, but if I privately connect to the internet, they don't necessarily know who I am. If I turn off the local automated signing software and opt out of greenlight, my future privacy and security are not affected.\n\n- **lnd on voltage.cloud**: I trust voltage.cloud to do validation of blocks and the mempool. voltage.cloud keeps a copy of my keys in RAM but not on disk. I trust that voltage.cloud is running an honest version of lnd. voltage.cloud can monitor what my node is doing by looking in RAM on their servers and whatever network traffic they see.\n\n\nAlso, please let me know if I've made any technical errors in the descriptions above.\n \N 7869 \N 420059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6070602630569 0 \N \N f 197895795 \N 1 48408738 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 58808 2023-09-02 12:33:58.326 2025-03-29 22:39:47.096 Is OCEAN truly a ’decentralized‘ mining pool? Don't get me wrong, I like the premise of a mining pool where the individual miner gets to build their own blocks and payouts come directly from the Bitcoin network... \n\nBUT, can [Ocean](https://ocean.xyz/about) really be called 'decentralized' if there's a core team running it, promoting it, and [raising capital](https://www.nobsbitcoin.com/ocean-pool-launch-6-2m-seed-round/)? During their launch event they even said they'd need to (at times) push out payments manually if under a certain threshold. \n\nI'm on the fence. Push me off.\n\n \N 1064 \N 58808 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.631806469113 0 \N \N f 283586910 \N 2 206861419 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434410 2025-03-11 21:34:53.966 2025-03-29 22:39:47.098 Will gold be used alongside Bitcoin in a hyperbitcoinized world? \N \N 11443 \N 434410 \N \N \N \N \N \N \N \N art \N ACTIVE \N 23.8518229840398 0 \N \N f 592930493 \N 5 65470667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 19:53:57.615 f \N \N \N 0 0 0 0 4 0 0 436032 2025-03-13 08:52:03.303 2025-03-29 22:39:47.359 Is There A Way To Prove Mints Aren't Inflating Supply? Dumb question, maybe. I was listening to Calle talk about this on WBD, but this episode was back in April and he said the issue was being addressed. \N 20294 \N 436032 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 21.0504191838756 0 \N \N f 248138113 \N 2 116639489 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 07:01:26.603 f \N \N \N 0 0 0 0 1 0 0 410178 2025-02-20 10:18:13.503 2025-03-29 22:39:47.362 Operation Bitcoin “\nIf I might ask for 22min of your time. This video is veteran focused and I think captures well the condition of a lot of veterans today. It has had a profound impact on me today.\n\nhttps://youtu.be/R5R4qWe8XsI\n“\n\nI have copy/pasted this to a dozen or more veteran buddies today via various comms channels. \n\nI am sharing here because I would like to hear non-veteran perception of the talk and concept in genera. \n\nI served 11yr 4mo and 3days in the war machine and have only just begun my bitcoin journey in the past two years. This video put to words emotion and thoughts I’ve come to have along my journey down the rabbit hole. \n\nAre there other veteran stackers? What are your thoughts? \nWhat’s the perception of those that are on their third or fourth halving?\nThose around even longer?\n \N 17291 \N 410178 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1534906923998 0 \N \N f 44939619 \N 1 83465158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451194 2025-03-24 12:42:19.34 2025-03-29 22:39:47.362 Tech Tuesday - Share Your Favorite Tech Products Let's hear all about your favorite tech products, services, or projects!\n\nFeel free to share any new tech you've heard about, bought for yourself, or technology that you just think other stackers should know about.\n\nSend your best 👇 \N 15273 \N 451194 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 27.1805939481477 0 \N \N f 175903468 \N 1 79465179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422873 2025-03-02 18:52:17.331 2025-03-29 22:39:47.095 Book Reviews Directory \n### Book Reviews Directory\n\nThis is a directory of all of the Book Reviews posted to the ~BooksAndArticles territory to date. The list is current as of 3/31/24.\n\n- [A History Of Religious Ideas #1](https://stacker.news/items/420220) by @Se7enZ\n\n- [A History Of Religious Ideas # 2](https://stacker.news/items/420192) by @Se7enZ\n\n- [A History Of Religious Ideas #3](https://stacker.news/items/427941) by @Se7enZ\n\n- [Blood Music, by Greg Bear](https://stacker.news/items/436158) by @Scoresby\n\n- [Declare, by Tim Powers](https://stacker.news/items/471173) by @StillStackinAfterAllTheseYears\n\n- [Do Androids Dream Of Electric Sheep? By Philip K Dick](https://stacker.news/items/457329) by @Scoresby\n\n- [Dune Books & Movies](https://stacker.news/items/449779) by @Undisciplined\n\n- [Elric Of Melnibone](https://stacker.news/items/389474) by @Scoresby\n\n- [For Whom The Bell Tolls, by Ernest Hemingway](https://stacker.news/items/309580) by @plebpoet (meta territory post)\n\n- [Human Action](https://stacker.news/items/399897) by @Undisciplined\n\n- [Man’s Search For Meaning](https://stacker.news/items/390069) by @carlosfandango\n\n- [Neuromancer](https://stacker.news/items/401761) by @Scoresby\n\n- [Nova, by Samuel R Delaney](https://stacker.news/items/427682) by @Scoresby\n\n- [Schismatrix, by Bruce Sterling](https://stacker.news/items/445373) by @Scoresby\n\n- [Snow Crash, by Neal Stephenson](https://stacker.news/items/470362) by @Scoresby\n\n- [The Shockwave Rider, by John Brunner](https://stacker.news/items/418728) by @Scoresby\n\n- [The Sovereign Individual](https://stacker.news/items/427201) by @carlosfandango\n\n- [The Wheel Of Time: Books 1-3](https://stacker.news/items/416511) by @Undisciplined\n\n- [The World’s First Bitcoin Fiction Anthology](https://stacker.news/items/347735) by @KonsensusN\n\n- [“What Is That?” Said The Cat](https://stacker.news/items/472557) by @cryotosensei\n\n- [Zen And The Art Of Motorcycle Maintenance by Robert M. Pirsig](https://stacker.news/items/383302) by @carlosfandango\n\n- [Zero Days, By Ruth Ware](https://stacker.news/items/460481) by @StillStackinAfterAllTheseYears\n\n\n \N 19796 \N 422873 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 3.14005804037176 0 \N \N f 553102379 \N 3 14810844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443755 2025-03-19 13:58:58.291 2025-03-29 22:39:47.096 Open Source doesn't win by being cheaper \N https://github.com/getlago/lago/wiki/Open-Source-does-not-win-by-being-cheaper 726 \N 443755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.80604697307641 0 \N \N f 158975072 \N 1 55918753 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427039 2025-03-06 02:47:00.933 2025-03-29 22:39:47.097 Fighting the Daily Grind #1 @siggy47 posted about Stackers crafting their personal blog entries here. Who would want to read the chronicles of a jaded man in his late 40s, compressed by both work and parenting pressures? But perhaps it’s precisely because I feel that something is missing in my life that I feel that I must blog. If not for anyone, then for myself.\n\nToday, I felt rather empty at work. Don’t get me wrong. I was productive - writing a report about a student, forming class groups on the e-learning platform, calculating meticulously the number of hours my Dance Club needs to hire my dance coach for this year. But surely, teachers don’t venture into teaching to deal with logistical and administrative tasks. I came into teaching to make a difference in the lives of my students. Sucks that I don’t have time to plan interesting lessons for them.\n\nI know that today wasn’t the worst. Because I conscientiously crafted out time to create a poster detailing some leadership principles for the chairman and vice-chairman in my class:\n\n![4cf8cc0c-7373-4311-8e78-2f08de3b0f39.jpeg](https://m.stacker.news/14951)\n\nI also wrote a step-by-step guide to explain to my colleagues how they can save time on lesson planning by using this AI platform called Diffit: https://www.publish0x.com/diaperfinancingfund/step-by-step-guide-for-teachers-to-use-diffit-xgvnnwk.\n\nBut do these things obey the Pareto Principle? You know how we achieve 80% of our successful outcomes via 20% of our work. The poster and the instructional guide don’t fall into this category, I’m afraid.\n\nNonetheless, today was a battle fought well. The LED light in my bathroom went out. Flickering its signs of distress and danger. So I arranged an appointment with my trusty electrician to come to my house to replace the LED light. This means that my wife would return to a brightly lit bathroom when she comes home later. Suffice it to say “happy wife, happy life”.\n\nI have purged today’s highs and lows out of my system. I need to shower my 14-month-old girl now. Sigh. See you guys in my next blog! \N 21166 \N 427039 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.0914564339079 0 \N \N f 660890765 \N 4 71488663 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 246718 2024-09-25 04:30:17.031 2025-03-29 22:39:47.097 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/472720) are the updates stackers shared from all their latest work projects. \N 18188 \N 246718 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.02349321217815 0 \N \N f 76705717 \N 1 206448432 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430923 2025-03-09 14:09:52.401 2025-03-29 22:39:47.098 The Homelessness Crisis I was sad to see that ~culture folded up shop, but ~mostly_harmless is also a great territory for this discussion. Thanks to @elvismercury for maintaining the space.\n\nThe homelessness crisis has escalated to shocking levels in America. If you're familiar with the situation in other countries, I'd love to hear that perspective.\n\nWhen I was growing up there were a shocking number of homeless people for how inhospitable the local climate was. Everyone sort of knew the cause, though: they had been ostracized from the small towns and villages they were from and basically shipped to the nearest city. Ostensibly, that was because they might find the resources they needed there, but nobody actually believed that.\n\nThe scale has increased dramatically since I was a kid. It's to the point where they're literally overflowing their roadside encampments and getting run over at night. My understanding is that the situation is worse in many major cities than it was where I grew up. There were certainly more homeless people in Honolulu when I visited there, but the climate's so nice that I wouldn't necessarily call it a worse situation.\n\nAnyway, what's going on here? Material wealth has increased dramatically over recent history, so why are more people living in such seemingly deprived states?\n\nIs it primarily a result of policy blunders? Cultural decay? Maybe an outcome of our hyper novel environment?\n\nAre there plausible remedies?\n\nI look forward to the discussion. \N 10818 \N 430923 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.1654830736444 0 \N \N f 228828092 \N 1 40286191 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458286 2025-03-29 07:03:16.904 2025-03-29 22:39:47.362 BDMD #1 - Bitcoin was hacked / will be hacked BDMD = Bitcoin deniers myths debunked\nThis is a series of short posts about Bitcoin myths and nocoiner fallacies, debunked or explained.\n\n### Bitcoin was hacked / will be hacked \n(*says the Bitcoin denier*)\n\nIn the history of Bitcoin, there has never been a [blockchain](https://en.bitcoin.it/wiki/Block_chain) attack that results in money being stolen from a confirmed exit. There has also been no reported theft as a direct result of a vulnerability in the [original Bitcoin client](https://en.bitcoin.it/wiki/Original_Bitcoin_client) or a vulnerability in the protocol. Bitcoin is protected by standard cryptographic functions. These features have been reviewed by cryptography experts and are considered unlikely to be broken in the foreseeable future.\n\nIt's safe to say that the currency itself has never been 'hacked'. However, several major websites using the currency have been hacked, often resulting in high-profile Bitcoin thefts. Some media outlets erroneously report these heists as hacks of Bitcoin itself. An analogy: just because someone has stolen US dollars from a supermarket does not mean that the US dollar as currency has been "hacked."\n\nMost bitcoin thefts are the result of inadequate [wallet security](https://darth-coin.github.io/beginner/be-your-own-bank-en.html). In response to the wave of thefts in 2011 and 2012, the community has developed risk mitigation measures, such as [wallet encryption](https://en.bitcoin.it/wiki/Wallet_encryption), multi-signature support, offline wallets, paper wallets, and hardware wallets. As these measures gain adoption by merchants and users, the number of thefts decreases.\n\nBitcoin security can be compared with the power of a Sun...\n\n![](https://m.stacker.news/37418)\n\nAnd to close, I leave here a song (the second) about the "obituary" of Bitcoin, has died so many times that the bastard still does not want to die ...\n\nhttps://youtu.be/ePdwAX4uUW0\n\nRead more FUD articles on: https://endthefud.org/ \N 16939 \N 458286 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.6356103270079 0 \N \N f 133002721 \N 1 242967954 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457310 2025-03-28 11:54:21.723 2025-03-29 22:39:47.363 UPDATE: Gold "hoarders" were persecuted in the 1930's - and bitcoin? I found some interesting info that I thought readers of my original post would appreciate. Here's a link to my original post:\n\n[Gold "hoarders" were persecuted in the 1930's, what will happen with bitcoin?](https://stacker.news/items/275618)\n\nIt's an extensive exploration of newspaper articles from that time period (1933), that were basically cheering the confiscation of gold. \n\nThe question I was left with was...how many people who had gold actually turned it in? Who stayed quiet and kept their gold? I found no good answers until I saw some references in an article from the Tenth Amendment Center:\nhttps://tenthamendmentcenter.com/2024/05/16/executive-order-6102-a-deep-dive-into-fdrs-gold-confiscation-program/\n\nBasically, there was no real enforcement in the sense of governments ransacking people's homes. The government relied on propaganda and threats to encourage voluntary compliance. And voluntary compliance was NOT widespread.\n\nHere's some excerpts:\n\n>The total amount of gold turned into the Fed remains unclear because the central bank isn’t required to disclose detailed accounting. However, in their book A Monetary History of the United States, Milton Friedman and Anna Jacobson Schwartz estimated the amount was relatively small and that most people simply ignored the order. \n\n>According to their calculations, Americans turned in about 20 to 25 percent of gold held in private hands at the time. In other words, a large percent of people simply ignored the order.\n\n>Friedman and Schwartz came to this conclusion when they found something wonky in the official government data. The amount of gold the government said it held (in dollar terms) before the confiscation order was abnormally low.\n\n>“If the estimates of gold lost and gold exported without record are added to the gold coin returned to the Treasury since 1934, we are still far short of accounting for even half of the $287 million. We therefore concluded that in Jan. 1934 the bulk of the $287 million was retained illegally in private hands.”\n\n>In effect, the Federal Reserve cooked the books to make it look like more gold was turned in than really was. \n\nSo, I found this kind of encouraging. Apparently a solid majority of gold "hoarders" back in the 1930's thumbed their nose at government dictates and quietly held on to their gold. \n\nI hope that when the moment comes, bitcoiners will do the same. \n\n\n \N 4754 \N 457310 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 3.95155526875957 0 \N \N f 122643389 \N 2 120730595 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437463 2025-03-14 14:40:33.341 2025-03-29 22:39:47.364 Tutorial for your noob friends. Wallet basics: setup, send/receive, recover. \N https://www.youtube.com/watch?v=c8ytiynbnpk 1638 \N 437463 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 17.026089390116 0 \N \N f 197444908 \N 1 200235167 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427795 2025-03-06 16:34:21.14 2025-03-29 22:39:47.365 Property management built on Bitcoin This post is going to delve a little deeper into the "why" I believe this business model is more aligned with the "Bitcoiners" of the world.\n\nIf you are curious you can read my latest post here: https://stacker.news/items/542701\n\nI promise I will get to the rest of the business model over the coming days for those that are interested....but I really feel like this is a good tangent to go down...\n\nFor me the promise of bitcoin becoming the base protocol humanity will use going forward into the future, is not only inevitable but it is the greatest opportunity humankind has ever had to align our system of value communication with actual reality....like the reality or truth if you will, of the universe....\n\nThis "alignment" if you will - allows us to become stronger just by using Bitcoin...stay with me here, that last part is important.... This business model allows me to strengthen the my business through its utilization of the Bitcoin network. Just by simply holding bitcoin it becomes stronger as a result of "number go up" and that is the "end" of the story for many of us...If you read my other posts you know that I take it even further...\n\nI incentivize my residents(customers) to use bitcoin as their method of payment by providing them with a return of a % of the price appreciation (in USD terms) of that payment for up to 6 months after they have paid. This (I believe) "incentivizes" them to pay utilizing this method which does 2 things. \n\n What I feel is the most important "emergent behavior" if you will:\n\n1. Is it strengthens the network through additional users, who (through this process) have to learn about how this works and stick with using Bitcoin for a longer period of time.\n\n2. Is it allows for both of us to discuss, share, and "communicate" value to each other as we both benefit from the strengthening of the network (and for now at least we both benefit from the increase in the USD/FIAT value going up as well).\n\nNow here is the part that even I have lost track of from time to time... This incentive business model works in every single case except one... The only way it doesn't work is if Bitcoin fails. Period....full stop!\n\nThat's the beauty of this model - Anyone can use it, anyone can provide their customers with the incentive to learn more about how Bitcoin works through their participation over longer time horizons and it works with as close to zero risk as one can get. (I know if you are "new" to Bitcoin you are likely not in the "mindset" of zero risk or you think Bitcoin might fail....but I am here to tell you....there are a whole lot of people in Bitcoin right now, that have moved beyond this mindset.... In fact this "fear" of what if Bitcoin fails or goes to zero is (in my opinion) the single greatest reason why you are not building your value on this protocol.... Bitcoin works. Period....Full stop!\n\nThis model works - because Bitcoin works.... This model works - because my "old model" worked.... If my "old model" was in trouble, or leveraged to its gills, than this Bitcoin Incentive Model would be very difficult indeed as their wouldn't be any room for me to manage the balance that is necassary right now for me between Bitcoin and FIAT...but because the numbers work, because I'm not over-leveraged with debt, I can simply transition to the Bitcoin system with the only risk being (Bitcoin going to zero). \n\nMy thoughts are that as I (and my residents/customers) also transition into the Bitcoin system with me, is that we will only get stronger (both in users and in "value" terms as compared to FIAT) and my "residents/customers" are going to be going out into the FIAT system and asking the businesses they provide value to, to please get on the Bitcoin system....this "ground up" approach and incentive system will strengthen our network, strengthen our thoughts, and strengthen us all over time.\n\nThanks for reading - Hope it was valuable to you - Let's keep building together and strengthening Bitcoin together!\n\n \N 2577 \N 427795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.51632821957963 0 \N \N f 158388186 \N 1 11133117 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451124 2025-03-24 12:02:55.909 2025-03-29 22:39:47.367 If you had an option, where would you love to spend rest of your life? Just had a discussion with someone who's living in a big city but wishes he could come to live with us in our Village. Ohh! Our village, it's small, beutiful, peaceful, enchanting, full of nature's beauty. But, he can't come as he's the slave of some Multi National Big Brand!\n\nSuper Thanks to Bitcoin! I'm free, I'm confident, I've option, I can live wherever I like. I know all of you also feel the same way. So, I got this idea out of curiosity. I want to ask where would you love to live if given an option? \N 8926 \N 451124 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 27.9630059532155 0 \N \N f 142664488 \N 1 173559317 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404383 2025-02-15 20:34:51.644 2025-03-29 22:39:47.367 When nature looks like a painting Sometimes, and a lot times during a good hike, I catch a glimpse of earth that, at first glance, looks more like a painting than it does real life.\n\nOf course the phone camera never does it justice. But you get the idea.\n\n![rockies.png](https://m.stacker.news/10723)Walking through the Rockies, I caught a glimpse of these trees looking like green brushstrokes cascading across a deep blue canvas. Utterly captivated. Certain angles of nature evoke strong emotion in me, for no apparent reason, the same way great art does. \n\n![lily pads.png](https://m.stacker.news/10724)Or this moment. I remember I was rushing out of a campsite with a couple friends as the rain came rolling in and when we stumbled across this lily pad dusted lake dazzling over the water. Suddenly the rain didn't matter so much. We took a load off right there under a tree for a while and enjoyed the rain and the sunset that followed.\n\n![nara.png](https://m.stacker.news/10725)More recently in Japan, when I visited the deer in Nara. They've assimilated quite well with the locals, and seeing them rest against a backdrop of the country's landscape put me at ease too. It's these moments where I wish I was an artist and it was my job to just chill out for hours right there, and soak in every detail of what I am seeing. But last time i was in front of an easel was the 7th grade...\n \nIn moments like these, I am reminded how much humans _belong_ here. The earth is our home, wherever we are. And over time, it drives a deeper awareness in me of just how foreign the lifestyles we've built up in place of nature are.\n\nMakes me want to rethink of lot of thingzz lol..and it also makes me wonder how Bitcoin will free up the territory of the world for people to populate. What amazing geographic locations are we not taking enough advantage of yet due to the limitations of our current monetary regime? Where else should we feel "safe" to live that we can't currently?\n\nDo you have an image of a place that reminds you of a beautiful work of art? Would love to see what stackers have to share!! \N 14122 \N 404383 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 12.4985884231114 0 \N \N f 48576967 \N 1 140682953 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444911 2025-03-20 10:09:59.879 2025-03-29 22:39:47.095 SN release: better attached wallet logs, lnbits over tor, bug fixes `Heads up: I might do some lightning node maintenance tomorrow. I'll pin a post about it before I do, if I do. It shouldn't be longer than 30 minutes but we'll see.`\n\n#### better attached wallet logs\n\n@ek "supercharged" our attached wallet logs:\n- they update live as new logs come in\n- they capture more detail about failures\n- they have a `warn` log level (we'll be using log levels to derive wallet status soon)\n- log lines can be expanded to see payment/invoice details like the payment hash, preimage, etc\n\n#### lnbits over tor and other tor for attached wallet improvements\n\n@rblb added tor to `sndev` so we're able to troubleshoot wallet attachements that communicate over tor:\n- he added tor **receive only** support for lnbits\n- he reduced unnecessary outgoing tor proxy usage\n\n#### bug fixes\n- `hot` sort in territories that didn't have many posts were displaying as if they were `top` sorted\n- zaps in rapid succession would occasionally conflict and pending zaps would be cancelled\n- device sync qr code scanning was broken\n- when a device was added to device sync, the device would need to refresh to see sync'd data\n- extraneous referrer notifications were being sent\n- changes to sending wallets from one tab were only showing after refresh in other tabs\n- blink attached wallet was broken\n- more but even more lame and unimportant\n\n--------------\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 13m sats to 31 contributors for 138 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/753592\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 9295 \N 444911 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 17.7651176792396 0 \N \N f 68296446 \N 1 218538145 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450364 2025-03-23 22:17:39.31 2025-03-29 22:39:47.097 The Practice of Non-Possessiveness Letting go of material attachments is one of those guidelines that seems to come up in every religious and spiritual text. When I was younger, this concept fell under the list of sins that my grandparents and their churches spoke of and my rebellious nature was filled with disdain. Later I came to understand that restraints are given in spiritual texts to lift up the individual when the pleasures and pains of life become overwhelming; having this structure helps one sustain their growth towards true happiness. \n\n\n# _Aparigraha_\n\nNon-possessiveness is one aspect of _yama_, or restraint, given by Patanjali in his _Yoga Sutras_ to help the yogi to live in society without losing sight of the spiritual path. The sutra that describes _aparigraha_ is translated by B.K.S. Iyengar as:\n\n“Knowledge of past and future lives unfolds when one is free from greed for possessions.”\n\nIn other words, we learn who we truly are when we let go of what we are clinging onto. When I ask myself “who am I?”, it is so hard to come up with an answer outside of the material world. At times, I have been a student, an engineer, a cook, a sister, a wife... but none of that will come with me when I leave this body.\n\nA challenging aspect of this practice is recognizing what truly brings us happiness and what no longer serves us. Does your house, your car, your career, your relationship truly improve your life? What are you holding onto simply because it may be painful to break the attachment, even when peace is on the other side of the pain?\n\n\n# Spiritual Warfare\n\nWhen my spiritual path led me to explore shamanism, I was struck by a common issue healers of different cultures face in their community: sickness and even death are caused by spiritual attacks triggered by envy, jealousy, and resentment. People in the Amazon jungle fear attracting the _envidia_ of their neighbors, in case it leads them to hire a sorcerer to take away their health and happiness. The Italian side of my family knocks wood to prevent sending _malocchio_, the evil eye, to those they admire. In their culture also, it is a dangerous thing to spend too much time looking at what others have.\n\nIt seems to me the best defense to an attack is an offensive one. That is, to avoid flaunting wealth, beauty, success, or whatever other gift one has. Another layer of this is to freely share wealth that goes beyond what we need to live so that our neighbors can also find happiness. This concept feels so opposite to how many people act in the society I live in. Here in the United States many seem to find great pleasure in inciting the envy of their neighbors with a green lawn, flashy car, or new shoes. I am not spending time worrying about a spiritual attack, but I have come to recognize that it gives me much more joy to share what I have with my community. How can we measure success without putting ourselves above and below those around us?\n\n\n# What this means in modern American society\n\nI am finding it increasingly difficult to engage in American society while practicing non-possessiveness. When did so many people begin to admire the influencer? I am not above this. Although I would like to use social media as a tool for connecting to my community, it is challenging to avoid being sucked into the call for materialism and envy of our connections. Go onto Instagram or Facebook and one is flooded with posts advertising courses that will teach you to how to live a happy life, if only you have enough money to support the teacher and the companies they are partnered with. \n\nThe line between comfort and true happiness is hard to discern. I am grateful for the abundance I have which keeps me well-fed and stocked with tools that make my life easier. I choose to live in the material world and to keep up with the practice of non-possessiveness, I will need to keep asking what I really want and what I am chasing for a fleeting moment of gratification. Do you feel like you can find more peace by letting go? \N 21451 \N 450364 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.4099427337668 0 \N \N f 269710274 \N 2 161684269 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434958 2025-03-12 11:17:15.942 2025-03-29 22:39:47.099 What is a plebpoet? My Opening Remarks Imagine you have just stepped inside a small book shop. Your first step places you on a thick woven rug. Floor-to-ceiling shelves make aisles around you. Quietly to yourself you whisper _I could discover something in here_, and you begin your search. For what? You’re not sure. Little potentials of discovery respond to you, pulling your eye from this shelf to that. You’re excited, alert, and open.\nAfter a few moments taking slow steps, smelling the book shop smell, your eye rests on a thin slip of white binding smushed between two volumes. It looks out of place, homemade. The other books on the shelf are more dignified. This one is probably not supposed to be here. You reach for it.\nIt is very light, a paperback. You turn it over in your hand to see the front cover.\n![](https://m.stacker.news/34095)\nFlipping aside the front cover reveals an inscription. \n![](https://m.stacker.news/34096)\nYou look up. The book shop is still there, suspended in silence. You repeat a few words, “close my mouth around the whole wide world.” You think _why would you want to do that?_ \nYou turn over one more page,\n### _Opening Remarks_\n![](https://m.stacker.news/34097)\n\nYou have a choice. Do you keep reading? \N 1141 \N 434958 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 8.78137161644077 0 \N \N f 517856772 \N 4 233540587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:18:39.09 f \N \N \N 0 0 0 0 2 0 0 1481 2022-09-15 15:46:35.302 2025-03-29 22:39:47.099 If you say I can't, you never will There are things I will never be able to do. There are also things I have done that I never thought I would be able to do. There is one lesson I have learned over the years related to this. If I say I can't do something I have just guaranteed myself I never will. I have accepted it. I have given myself permission to not even try. But mindset can be a powerful thing. Over the years my wife has always stopped me many times when I would say I can't do something. She will say, sure you can. You just need to try. When we say I can't, we usually mean I don't want to try. And we are giving ourselves an out. We are making an excuse for not trying. I once heard Jack Spirko say, "Don't say I can't. Say how can I." It is easy to make excuses but it is rewarding to find a way.\n\nStop saying I can't. Start saying how can I. Sure, there are things that are impossible but most things we just give up on before we even try. Don't kid yourself. If you just don't want to do something then don't do it. Be honest. That's OK. Maybe you don't want to spend the time each day to learn an instrument. Maybe you don't want to work nights and weekends to prepare yourself for a new career path. But don't kid yourself. We are capable of far more than we believe. It starts in our head and with what we tell ourselves. Start thinking, how can do what I want to do?\n\nHope this helps someone. \N 5308 \N 1481 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.5542914685254 0 \N \N f 235257792 \N 1 149015339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433828 2025-03-11 12:26:35.745 2025-03-29 22:39:47.358 Liquidity ads are live on mainnet in Phoenix Wallet It's been [a long time coming](https://github.com/lightning/bolts/pull/878), but it's happening!\n\nLiquidity ads allow you to not be regularly exposed onchain fees (which [aren't very low right now](https://mempool.space/))! https://twitter.com/PhoenixWallet/status/1735699451770032354 7659 \N 433828 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 1.98077158264564 0 \N \N f 8250842636 \N 74 66114754 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:54:31.076 f \N \N \N 0 0 0 0 25 0 0 434665 2025-03-12 05:45:37.9 2025-03-29 22:39:47.363 Have Ordinals saved Liquid? Here are some tweets I just saw:\n\n![tweet 01.png](https://m.stacker.news/7706)\n\n![tweet 03.png](https://m.stacker.news/7707)\n\n![Tweet 02.png](https://m.stacker.news/7708)\n\nI know Liquid is not perfect, but I think it can be beneficial in some use cases. What are your thoughts on this? \N 20243 \N 434665 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.9407233296549 0 \N \N f 858768925 \N 6 39409839 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:19:09.194 f \N \N \N 0 0 0 0 6 0 0 449559 2025-03-23 12:37:58.329 2025-03-29 22:39:47.363 Anita Posch AMA Hi all,\n\nAnita here. Ask me anything in the next 60 minutes.\n\nBitcoin educator https://anitaposch.com\nAuthor of (L)earn Bitcoin https://learnbitcoin.link (you can buy it with BTC).\nFounder 'Bitcoin for Fairness' https://bffbtc.org (you can donate BTC).\nPodcaster https://bitcoinundco.com (you can stream sats).\nBuilder (releasing a podcast network with free hosting and V4V on Dec 6).\nNomad. Currently in Zimbabwe.\n\nAs we're having a thunderstorm right now I hope I'm available the whole hour. Internet and electricity are a real challenge in many African countries. So if I "go missing" I'll answer your questions later. \N 20157 \N 449559 \N \N \N \N \N \N \N \N health \N ACTIVE \N 4.01707310612395 0 \N \N f 158583938 \N 3 237333496 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 137821 2024-03-06 16:39:29.402 2025-03-29 22:39:47.364 Support Fountain on Product Hunt! I'm sure there will be a day when ~builders or another SN territory will replace it - but until then Product Hunt is still a great place to share what you're working on with the world.\n\nFountain is launching on Product Hunt today and I would love the support of any stackers that use Fountain to help raise awareness of Podcasting 2.0 and Value for Value with a global audience.\n\nUpvotes and reviews make a huge difference and it would be amazing if we could get product of the day!\n\nhttps://www.producthunt.com/posts/fountain-podcast-app\n\nThanks in advance for the support!\n\n---\n\nAlso happy to chat in the comments about Fountain feedback / ideas / improvements! \N 15075 \N 137821 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.77282168136154 0 \N \N f 650528134 \N 4 45880559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435521 2025-03-12 18:52:52.319 2025-03-29 22:39:47.096 INTRUDER ALERT! - Statist at the Meetup Some of you may remember the problem I had with a shitcoiner at our [meetup back in April](https://stacker.news/items/490771). Last night, we had an outright, outspoken, and worst of all, savagely interupty, anti-privacy advocate appear in our midst. I'm using the sorcery language because I didn't pick up on any prior warning signs before he transformed right in the middle of my presentation.\n\nThe agenda, following up on last month's reading on of [A Cypherpunk's Manifesto](https://nakamotoinstitute.org/library/cypherpunk-manifesto/) and a healthy but sad conversation about the Samurai takedown, was to discuss permissionlessness and privacy. Then we would go into how PWA apps and Fedimints help out with this.\n\nEverything seemed to be going well until I pulled out my favorite PWA to demo and this guy just jumped in to let us know that the government was going to throw the app devs in jail. At first it was just annoying, because I had just given a big spiel about how that was exactly why we wanted to use this technology. But he WOULDN'T STOP TALKING. Do other meetup organizers experience these things? Exasperated, I finally clicked my fingers and said his name real loud, as if calling an animal and @dagny761 gave me a look like, "you need to mellow out and act like a grown-up." I basically gave up on the demo at that point and am sad to say that the presentation unraveled.\n\nThe incident a couple of months back was hard, but I was at least able to maintain order and I think everyone walked away more knowledgable and still respecting one-another. I wanted to share to get people's thoughts. I don't think this guy was a shitcoiner, but he certainly was a statist...and also a huge jerk. The common thread was, I think both of these fellas just wanted to talk about NGU. Afterwards, I found out that last night's guy is a tech guy for the department of defense. He was giddy to tell me about all of the new tech he was developing that he said is already being used overseas. I'm embarrassed to say that I was too tired too beat down at that point to debate the merits or demerits of developing weapons for a government that he admitted was a black box to the public on what they were doing with this stuff.\n\nAnyway, I share here to ask, is this common? This meetup is coming up on a one year anniversary and we've already had two frustrating nights like this...AND last night I definitely lost the debate. Worst of all, it's not because my points weren't more well received, but because some of them were literally not heard over statist howling. Also, does this guy sound familiar? He apparently goes to bitcoin meetups all the time in Michigan (multiple cities! he mentioned Detroit, Lansing, and Grand Rapids). Are Michigan meetups just NGU discussions or do you guys up there just smack this dude down better than I do? \N 18526 \N 435521 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 11.0162343416808 0 \N \N f 167631904 \N 1 188641167 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 13:05:44.376 f \N \N \N 0 0 0 0 1 0 0 434626 2025-03-12 04:41:20.42 2025-03-29 22:39:47.097 It's Deflation, Not Inflation - via The Sovereign Individual 📖 The Sovereign Individual which I previously summarised [here on StackerNews](https://stacker.news/items/49781), depicts a different view of the future than we have grown accustomed to and to which I believe many believe is an invevitability. Inflation.\n\nBelow are passages lifted from different parts of the book and arranged in a timeline of stages by myself. The intention is to identify 'where we are' along a potential timeline in the transition to the 'Information Age'.\n\n------\n\n\n### End-Game Stages\n\n- Step 1 ☑️ The Sovereign Individuals of the future, will have undergone the political equivalent of laser surgery. They will be seeing 20/20. `That's us! Check.`\n- Step 2 ☑️ The result to be expected is an intense fiscal crisis with many unpleasant social side effects. `Check.`\n- Step 3 ☑️ The economic consequence of this transition crisis will probably include a **one-time spike in real interest rates**. `Check - fastest rate hikes in history.`\n- Step 4 ☑️ Governments facing serious competition to their currency monopolies will probably seek to underprice the for-fee cybercurrencies by tightening credits and offering savers higher real yields on cash balances in national currencies. `Check.`\n- Step 5 ☑️ It is to be expected that one of more nation-states will undertake covert action to subvert the appeal of transience. Travel could be effectively discouraged by biological warfare, such as the outbreak of a deadly epidemic. This could not only discourage the desire to travel, it could also give jurisdictions throughout the globe an excuse to seal their borders and limit immigration. `Check.`\n- Step 6 ☑️ Debtors (individuals with loans) will be squeezed as long-term liabilities contracted under the old system are liquidated. `Check, still playing out.`\n- Step 7 ☑️ Higher real rates around the world will spur liquidation of high-cost, unproductive activities and temporarily reduce consumption. `Check, still playing out.`\n- Step 8 ☑️ Those in regions where computer usage and net participation are low may opt for old-fashioned hyperinflation in the early stages of the cyberecononomy. `Check. 🇻🇪🇦🇷🇹🇷 so far.`\n- Step 9 🟡 The leading states will no doubt attempt to enforce a cartel to preserve high taxes and fiat by cooperating to limit encryption and prevent citizens from escaping their domains. `In progress`.\n- Step 10 🔲 Those countries that first recognise the validity of digital signatures and provide local court enforcement for nonpayment of cyber debts will stand to benefit from a disproportionate surge in long-term capital lending. `TBC. El Salvador?`\n- Step 11 🔲 The deflationary environment may drag on for some time, with more adverse consequences in the high-cost industrial economies of North America and Western Europe than in the low-cost economies in Asia and Latin America. `TBC`\n- Step 12 🔲 It will be easier for persons living in traditionally poor countries to surmount the hurdles that their governments have thereto placed in the path of economic growth. `TBC`\n- Step 13 🔲 The "losers and left-behinds" in the Information Society will envy and resent the success of winners. `TBC`\n- Step 14 🔲 Military authorities in the United States and other leading nation-states are both planning for and fearing acts of information sabotage that could have severe consequences for disabling large systems. An act of cyberwarfare could close down a telephone switching station, disrupt air traffic control, or sabotage a pumping system that regulates the flow of water to a city. `TBC`\n- Step 15 🔲 The ineffectiveness of efforts to bar illegal immigrants convincingly shows that nation-states will be unable to seal their borders to prevent successful people from escaping. The rich will be at least as enterprising in getting out as would-be taxi drivers and waiters are at getting in. `TBC`\n- Step 16 🔲 The flight of the wealthy from advanced welfare states will happen at just the wrong time demographically. Early in the twenty-first century, large aging populations in Europe and North America will find themselves with insufficient savings to meet medical expenses and finance their lifestyles in retirement. `TBC`\n- Step 17 🔲 Nation-states wishing to suppress Sovereign Individuals would have to seize simultaneously both the world’s banking havens and its data havens. Even then, if encrypted systems are designed properly, nation-states would merely be able to sabotage or destroy certain sums of digital money, not seize it. `TBC`\n- Step 18 🔲 A government that lacks an unchecked ability to confiscate the incomes and property of its citizens would be unable to finance participation in another great power conflict like World War II. Yet this fiscal limit poses less of a threat than the reactionaries will pretend, for the simple reason that there will be no more conflicts like World War II. The very technology that is liberating individuals will see to that. `TBC - although not looking that way so far.`\n\n----\n\n### My Interpretation - Deflation NOT Inflation\nMany believe inflation or even hyperinflation is around the corner, for the United States, Europe and most countries. The book states that deflation will kick-in, now that Governments are having to compete. I'm not sure people realise that the landscape may well have changed.\n\nI would argue that Governments and the entire banking system know they know they cannot print the way to prosperity any longer. They have 'political cover' to actively avoid printing now and drain the punch bowl. The last 3 years was a disaster for credibility. Banking on hyperinflation to make your debts cheaper, is not a great strategy. We're in the austerity stage, where it's time to find a loser to pin the debts to. CBDCs can bring about a tsunami of austerity. They are not designed for helicopter money. Handouts could be administered today with decade-old tech of cheques and political support, if they really wished to or planned to. Another round of stimulus may not come.\n\nIt would be beneficial for you all to re-read the book and reassess if you're in the inflation camp and banking on any outstanding debts getting cheaper. Lastly, another good read if you're open to the deflation thesis is [The Great Taking](https://stacker.news/items/259510) book. \n\nI rest my case, for now... \N 21405 \N 434626 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 5.24254962029794 0 \N \N f 312888993 \N 2 49310749 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:24:42.926 f \N \N \N 0 0 0 0 1 0 0 452688 2025-03-25 12:27:55.935 2025-03-29 22:39:47.098 MostroP2P Launches the First Peer-to-Peer Bitcoin Exchange Platform on Nostr January 26, 2024 - [MostroP2P](https://mostro.network), a bot that aims to enable peer-to-peer exchange of Bitcoin on the Lightning Network for any fiat currency, announced today that it has successfully completed its first order. This marks a major milestone for the project, which has been in development for months.\n\nMostroP2P is a platform that leverages Nostr, a decentralized and censorship-resistant network of relays that allows users to communicate and share information. By using Nostr, MostroP2P can offer a secure and trustless way for buyers and sellers of Bitcoin to interact and transact without intermediaries or KYC requirements.\n\nThe first order on MostroP2P was a small exchange of 1000 ARS for 1986 Satoshis between two users in Argentina. The order was executed smoothly and quickly, demonstrating the potential of the platform to facilitate global and frictionless trade of Bitcoin.\n\n"We are very excited to launch MostroP2P and to see our vision come to life. We believe that MostroP2P can empower people to use Bitcoin as a medium of exchange, not just a store of value, and to do so in a way that respects their privacy and sovereignty" said [Francisco Calderón](https://twitter.com/negrunch), the founder and lead developer of MostroP2P.\n\nMostroP2P is currently in beta and only allows small test exchanges of up to 20,000 Satoshis. The team is working hard to improve the platform and to increase the order limit in the near future. MostroP2P is also looking for feedback and collaboration from the Bitcoin and Nostr communities.\n\nAnyone who is interested in trying out MostroP2P can visit the website or follow the [Twitter account](https://x.com/MostroP2P) for updates and instructions. Those who want to contribute to the development of MostroP2P can check out the GitHub repository or join the [Telegram groups](https://t.me/mostro_dev) for discussions and support.\n\n## About MostroP2P\n\nMostroP2P is a peer-to-peer Bitcoin exchange platform on Nostr. It allows users to buy and sell Bitcoin on the Lightning Network for any fiat currency, without intermediaries or KYC requirements. MostroP2P is a censorship-resistant and non-custodial solution that aims to make Bitcoin more accessible and usable for everyone. For more information, please visit mostro.network.\n \N 2748 \N 452688 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 15.7478111666396 0 \N \N f 134274259 \N 2 248984119 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 447903 2025-03-22 08:54:32.85 2025-03-29 22:39:47.098 BuT, wHaT aBoUt ThE rOaDs? [Privatizing Roads Solves the Problem of Road Closures](https://mises.org/wire/privatizing-roads-solves-problem-road-closures)\nBy [Benjamin Seevers](https://mises.org/profile/benjamin-seevers)\n> All of us have experienced government road closures and the traffic and safety nightmares they create. Private roads may be the answer to solving the problem.\n\nWe've all been victims of the devastating question "Who will build the roads?" And of course we're all well aware that no libertarian thinker has ever addressed it.\n\nSarcasm aside, I think a much more interesting question than "Who will build the roads?" is "How do we transition to private roads?"\n\nI've lived places that have considered private road solutions to congestion problems and skyrocketing infrastructure costs. Implementation is tricky, because the road network is very valuable, but on the margin each road may have many substitutes. \n\nIf you sell the entire road network at once, there will be issues of monopoly pricing that will piss everyone off. However, if you auction of individual roads, potential buyers might not be able to earn the revenue needed for maintenance and liability, because drivers will shift to the still free state owned roads.\n\nThere are many solutions to those problems, of course. How do you all think the existing road network should be dealt with? \N 5057 \N 447903 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.7613631429853 0 \N \N f 427075197 \N 2 27665871 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 19:39:57.33 f \N \N \N 0 0 0 0 1 0 0 416940 2025-02-25 23:45:45.827 2025-03-29 22:39:47.359 BTC Investing vs. BTC Standard There's a difference between investing in Bitcoin and being on a Bitcoin standard. It may seem like semantic hair-splitting, but it's not, because the behavior of these two groups is very different, as is their mental model. In this article, I aim to explain what it means to be on a Bitcoin standard.\n\n## The Bitcoin Investors\nThe Bitcoin investors are the people that are looking for a dollar (or some other fiat money without loss of generality) return. Their base money is the dollar and that's how they measure their wealth. That's understandable, since that's how they've been indoctrinated, but such a mentality is rigged from the start. \n\nFirst, it's hard to measure how much value your assets are increasing by. If you use strict dollar terms, you may have gained some percentage (say 30%), but over what time frame? If the asset is something like real estate, that may be over 10 years or 10 months. Obviously, the 10 months is better, but exactly how much of that value is real? How much can you buy with the returns and is the money you got back the same as the money you put in?\n\n## Inflation\n\nBecause, of course, there's inflation to consider. Investing with the dollar as the base asset means you have to account for it. If you have an investment that goes up 30% at the same time that inflation is 30%, you haven't actually gained anything. In fact, due to capital gains taxes, you likely have lost value.\n\nThen there's the question of what measure of inflation to use. Many investors use the CPI-indexed dollar to measure how much they've gained. But this too is flawed because the CPI is a gamed metric. There are [hedonic adjustments](https://www.bls.gov/cpi/quality-adjustment/questions-and-answers.htm) that the Bureau of Labor Statistics puts in almost arbitrarily to output a CPI to be lower than the actual prices. So if your investment merely kept up with CPI, you again probably lost ground in terms of purchasing power. It's not a good measure.\n\n## Monetary Expansion\n\nThe classical definition of inflation is monetary expansion and the M2 money supply is a popular metric to measure that. It was $287B in 1959 and was $19.4T in 2021 (more on that in a bit), so annualized, that's about 7% per year. If you use that metric, most investments look pretty terrible. You're most likely losing ground because it's hard to get 7% every year consistently, even on average. Financial advisors use that 7% number to measure themselves and most don't meet that mark. So if your investment keeps up with M2 monetary expansion, you have merely kept the numerator up in proportion to the denominator. Again, because of capital gains taxes, you've probably lost ground in terms of percentage of money supply.\n\nBut even here, the stats are not great. The Fed discontinued the M2 in 2021 and came up with something called the M2SL, likely to add more fudge factors that they can use for gaming the metric. Why would they do that? Because investors started measuring their returns against the M2. Especially during the pandemic, the M2 was going up so fast that most of the investment gains were known to be non-existent in M2 terms. So now, we have their modified measure of money supply called the M2SL. There are all sorts of problems with the M2 measurement, and aggregate statistics are notoriously unreliable. Hence, for investors, even this harsh measure is likely being gamed to make their gains look better.\n\n## The Bitcoin Standard\n\nSo what's left? You can use gold or a cow or a custom men's suit or even a big mac as a way to measure how you're doing with your investments. They're all useful ways to see how much purchasing power you have relative to points in the past, but all of them have flaws, are lagging indicators and are relatively easy to manipulate.\n\nFor the red-pilled investor, the real measure of wealth becomes Bitcoin because that's the most difficult to manipulate. When you accept this, that's when you are on a Bitcoin standard. In other words, Bitcoin becomes how you measure your investment gains, not the dollar, not the CPI-adjusted dollar or the M2-indexed dollar.\n\n## Conclusion\n\nThere are undoubtedly a lot of Bitcoin investors. Between exchanges, ETFs, even apps like Robinhood, Venmo and CashApp, there are a lot of people that own Bitcoin. But that's not the same thing as being on the Bitcoin standard. The people that are most likely to hold for the long term are the people on the Bitcoin standard.\n\nI know for myself that I finally flipped when I read Saifedean's book by the same name. I have had a very different mentality about money since then and think of the dollar as the depreciating asset that it is. The measuring stick for me has changed. In economics, we would call that function of money the unit of account.\n\nIt's been amazingly freeing because I don't worry about my investments, mostly because I don't have very many. I'm on a Bitcoin standard and I keep my value in my unit of account. We're so used to being stolen from through the fiat system that we've learned to live with the debasement. Debasement is a continual and never ending burden.\n\nThe Bitcoin standard frees us from this investing burden. And it's the game-theoretical end state of money. Hardest money wins. You can get there now or get there later.\n\nYour choice.\n\n![fiat.jpg](https://m.stacker.news/25401) \N 897 \N 416940 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.1270492364349 0 \N \N f 161430611 \N 1 95295532 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422869 2025-03-02 18:50:40.465 2025-03-29 22:39:47.362 Bitcoin Energy Use and Externalities [Andrew Bailey](https://twitter.com/resistancemoney)'s collection of the most important academic research on Bitcoin's energy use. https://www.resistance.money/energy/ 21164 \N 422869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.08021442438542 0 \N \N f 145134014 \N 1 180299476 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404354 2025-02-15 19:49:59.756 2025-03-29 22:39:47.362 6102 order gave people less than 30 days to surrender their gold ![](https://bitcoinscoresby.com/wp-content/uploads/2024/04/6102.jpeg)\n\nOrder was issued on April 5, 1933. People had to deliver their gold to the govt by May 1, 1933. \n\nPunishment: $10,000 fine or 10 years prison or both. \n\nWhat would you do if they did this for bitcoin today? \N 13399 \N 404354 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.7711564242561 0 \N \N f 288419488 \N 3 29967155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437190 2025-03-14 11:25:36.251 2025-03-29 22:39:47.363 Start Your Career in Bitcoin Open Source Software (₿OSS) in 2025 Sign up for this deeply technical program focusing on getting you off of ₿OSS zero and serving as a catalyst for a career change. We will help with the structure and a group of motivated peers. It's not an easy climb, but you [won't be the first](https://learning.chaincode.com/#alum).\n\nApplications close: December 31, 2024\nProgram begins: January 13, 2025\n\nOpen to everyone. Totally free.\n\nIf in doubt, you should apply.\n\nMore details at: https://learning.chaincode.com/#BOSS https://chaincode.applytojob.com/apply/6mL9A9flfQ/Start-Your-Career-In-Bitcoin-FOSS-2025 889 \N 437190 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 24.9899676052016 0 \N \N f 465109024 \N 4 34183214 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420577 2025-02-28 19:58:54.985 2025-03-29 22:39:47.363 Un-KYC My Bitcoin The KYC process when you exchange fiat for bitcoin is a violation of privacy.\n\nCustodial mixers and CoinJoin can help restore your financial privacy, but can also make exchanging back to fiat difficult in the future\n\nTake your privacy back with Unkyc My Bitcoin.\n\nWe're a new service that allows you to buy hashrate and mine bitcoin at scale.\n\n- You get your KYC stack off the books at current market value and earn new (kyc free) sats\n- 10 PH/s to 100 PH/s hashrate P2P, from mining farm to your mining pool account\n- Non-custodial (no kyc required)\n- Your funds held in on-chain escrow\n- Accurate per-share billing\n\nFair pricing. Our fee is waived for the first 21 people who sign up today.\n\nThanks for reading all the way,\n Team UnkycMyBitcoin https://www.unkycbitcoin.xyz/ 721 \N 420577 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 23.1078789423573 0 \N \N f 608015775 \N 4 226724758 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 413085 2025-02-22 21:01:03.423 2025-03-29 22:39:47.363 Firefighters are a scam - prove me wrong I'm subscribed to a Substack from a young guy (Maxim Benjamin Smith) who's skipping college and is doing a whole set of prescribed other options. The Substack is called The Great Man Podcast: A Radical Alternative to College (https://www.greatman.com/). So instead of going to college, he's doing things like getting EMT certified, learning a foreign language, etc. \n\nHere's this week's article: https://www.greatman.com/p/what-i-did-this-week-week-58. He's been doing a stint as an EMT on wilderness fires, currently in Oregon, USA. And the gist of the article is - the whole wilderness firefighting thing seems like a scam to him. Here's a quote:\n\n>I’ve got to say it\n\n>By tomorrow I will have been on wildland fires for 40 total days this summer. And, I’ve got to say, my perspective of it all has completely changed.\n\n>Like clockwork, we see videos of engines with their lights and sirens on driving through raging fires somewhere on the west coast each summer. The public sees that and assumes that there are in fact major crises (sometimes there are) and that everyone working on the fire is putting maximal effort in to contain it.\n\n>Well, I’ve only got 40 days on wildfires, but I’ve seen a different side of things.\n\n>The first odd thing I noticed was how little fire we were seeing. The map we download show us where the fire is, yet while driving so much around us was green and unburned. As it turns out, the maps as well as the publicly available number of “acres burned” measure the perimeter of the fire, not the area.\n\n>The Falls fire, which I was on a month ago, was said to have been 130,000+ acres. Unless I need glasses, I can tell you that just isn’t the truth.\n\n>It’s deceiving.\n\n>So after that I was thinking, “That seems strange.” And, I began to pay more attention.\n\n>Hours upon hours of a shift would go by as people working all kinds of different jobs on the fire would sit around to talk. Hell, the new division supervisor on this fire is looking for people who have Starlinks today so that he can watch football during our shift.\n\n>I suppose the fire “threatening the community” isn’t urgent?\n\nIt goes on along these lines, and is a really interesting article to read. \n\nI agree with him, that the firefighter "heroes", to whom we're supposed to say "thank you for your service" - have mostly lucked or finagled their way into a big payout for doing very little useful work. If firefighting weren't run by the government, we could probably get away with about a fifth of the firefighters (both wildfire and regular) that we have now.\n\nIt also reminds me of an incident from a while back. I was putting a diaper on my kid, turned away for a moment, and when I looked back, saw that he'd eaten some diaper cream. I was pretty sure that it wasn't a big deal, that diaper cream wouldn't be poisonous or anything, but I called poison control anyway. They told me that as long as it wasn't some foreign brand of diaper cream, that it was fine, I shouldn't worry. End of story, I thought.\n\nTen minutes later, there's a knock on the door. And what do I see but 3 firefighters, in FULL equipment? No kidding. Freaking out, I opened the door, wondering what the heck was going on. I didn't even link it to my previous call to poison control. \n\nAnd it turns out that they came because I had called poison control. Even though it was a completely benign situation, 3 firefighters came out.\n\nI figured then that they came out because they have SO LITTLE TO DO. And they needed to juice their statistics with fake calls, just so they could claim they're doing something. \n\nAlso, if you're trying to set up an event for little kids, just call a fire department and they'll give you a tour of the facilities, allow the kids in the fire trucks, let them try out helmets, etc. They're ALWAYS available.\n\nWhat are your thoughts? I turned this into a bounty because I know I read an article (or maybe watched a video) many years ago, about how most firefighters don't really do much of anything, we have way too many of them, and about 99% of their calls are false alarms, something along those lines.\n\n**So here's the actual bounty**: find me some articles (or videos or something) about how we need far fewer firefighters than we actually have, that much of "firefighting" is a make-work scam. I did some initial research, but wasn't able to find anything other than the story about scammers calling people on the phone, pretending to be firefighters, requesting donations. But now I can't find any articles like this anymore. It's probably an unpopular topic.\n\nAnd also, if you find articles like this, please tell me **where and how you searched**. \n\n\n \N 9551 \N 413085 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.39669155396786 0 \N \N f 67635095 \N 2 58208916 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455409 2025-03-27 01:53:14.886 2025-03-29 22:39:47.097 Validating Lightning Signer - AMA Hello fellow stackers! 👋\n\nWe are the team working on the [Validating Lightning Signer (VLS)](https://vls.tech) FOSS project: @devrandom, @ken6, @JackRonaldi \n\nVLS is a nifty piece of software that helps boost the security of the Bitcoin Lightning Network. 🛡️\n\nHere's how it works: usually, your private keys are stored on your Lightning node, but if a hacker gets into your node, they could snatch your funds. To avoid this, VLS keeps your private keys separate from your node. So, even if the bad guys compromise your node, your funds are safu.\n\nVLS doesn't stop there, though. \n\nWhen you're making transactions, instead of your lightning node signing the transactions internally, they are forwarded to VLS running on a secure signing device. VLS double-checks everything and confirms that the transaction does not steal or lose funds before it signs. This extra layer of security significantly reduces the attack surface for a lightning network user. It's a real game-changer.\n\nPlus, VLS opens the door to using multi-signature setups in the Lightning Network, much like the multi-signature wallets you might know from Bitcoin L1. The idea here is that, just like a bank vault needing two keys to open, a transaction would need more than one signature to go through. This makes it even harder for anyone with bad intentions to get their hands on your funds.\n\nTopics to ask us about:\n* What is VLS?\n* Why is VLS important?\n* How does VLS work?\n* How can I try VLS?\n* How do we work with you?\n* What does our roadmap look like?\n* Wen multi-sig?\n* What is the airspeed velocity of an unladen swallow?\n* What is the answer to the ultimate question of the life, the universe and everything?\n\nWe'll do our best to answer questions for the rest of the day.\n\nLet's go! ⚡️\n \N 21810 \N 455409 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 23.0845410234532 0 \N \N f 74946552 \N 1 203482951 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427109 2025-03-06 05:47:59.68 2025-03-29 22:39:47.098 The 5 Stackers you meet on Stacker News \n\nThe 5 Stackers You Meet On Stacker News\n\nEnjoyed “The 5 people you meet in heaven” by Mitch Albom? What happens if you extrapolate from his story onto Stacker News? Who will be the five individuals you’ll meet here? Of course, identities are fluid, and many of us play more than one role. But it can still be said that some Stackers specialise predominantly in one role. Here are my observations.\n\n1. The Saloon Routiners\n\nThere’s a reason why the Saloon is a perennial hit. It’s like a Speakers’ Corner, in which Stackers report on their day’s progress. Be it push-ups or mining rewards or simply a Good Morning, they share about one habit, day in day out. It’s the best place to get a feel of the pulse of the platform as Stackers rejoice and commiserate with each other.\n\n2. The Discussion Pushers\n\nYou will hardly see other Stackers at the Saloon. Probably because they are busily trying to promote a discussion through their writing. They share their experiences and ask thought-provoking questions. They generate ripples of camaraderie as Stackers may come to find similarities in their point of view despite coming from different backgrounds. Through their discussions, we come to know more about the world - and perhaps ourselves.\n\n3. The Privacy Lovers\n\nStacker News is a haven for privacy lovers. They are empowered to delete the knowledge they contribute to the platform. This means that they judiciously exercise the option to remove their comment from a thread after some time. After a while, you will recognise who these privacy-conscious Stackers are, so take a photo of their comment before they vanish into thin air!\n\n4. Builders\n\nIs it any wonder that the territory ~builders might just be the first territory to break even? Every Wednesday, coders and developers gather at the “What are you working on this week?” thread to announce their conceptualisation and creation plans to all Stackers. Projects are being worked on; scripts are being developed; there is a buzz of activity that exhorts all to keep producing proof of work, one block at a time. Being around these Stackers is a good reminder to ignore the noise and sharpen your saw.\n\n5. The No Shitcoiners\n\nThey will yell at you if you dare to mention a single word about altcoins. Even “crypto” triggers some of them. You have been warned. \N 9262 \N 427109 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 9.38013387608947 0 \N \N f 114066352 \N 2 118273856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436837 2025-03-13 23:54:10.405 2025-03-29 22:39:47.099 LLMs and SN, redux [This post](https://stacker.news/items/376712) puts me in quite a pickle.\n\n- I love little examples on foundational things.\n- However, I'm not an expert in the topic, so I can't just eyeball it and see if it's correct.\n- It's probably written by an LLM, which means that, in addition to setting a bad precedent, it could be filled with all varieties of subtle horseshit.\n\nWhat does one do? \n\nBeyond this particular post, how does one think about this larger topic? We've talked before, in various places, about dealing w/ LLM comment-spam; but what about stuff like this? And even if @r3drun3 lovingly wrote this post solely from the contents of their own expertise while curled in bed with a cup of chamomile tea, how does one deal with a reality where you don't know if it's real or manufactured, and, if it's manufactured, whether it might be mostly right but crucially wrong?\n\nI guess this is just a very concrete example of [an issue](https://stacker.news/items/375745/r/elvismercury) we're going to have to sort out, on SN and in civilization as a whole. \N 21714 \N 436837 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6112444697201 0 \N \N f 271857858 \N 2 223244683 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402171 2025-02-13 15:26:15.77 2025-03-29 22:39:47.359 I am hodlonaut, taco pleb and editor/publisher of Citadel21 - AMA I was asked by Stacker News to do this AMA, and thought why not? Hit me with your questions and I'll answer to the best of my ability :) \N 882 \N 402171 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 25.054500781864 0 \N \N f 509697177 \N 7 109190483 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 455125 2025-03-26 18:49:46.494 2025-03-29 22:39:47.362 What's the most privacy-focus way to receive onchain BTC? Which tool you'd use to enhance privacy, receiving on-chain BTC? \N 19016 \N 455125 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 3.39622578336925 0 \N \N f 130015784 \N 1 150781486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 287984 2024-11-06 07:46:17.841 2025-03-29 22:39:47.368 nostr client - magstr / blogstr Hey all,\n\nFor the [bitcoin++](https://btcplusplus.dev) hackathon, I had the pleasure of hacking on blogstr / magstr.\n\n**The Problem**\n\nCurrently, the publication industry requests individuals to write articles by paying them. This is quite costly and risky for the publications if it doesn’t resonate with their users and lead to higher retention and engagement.\n\nFor individuals, the amount is pretty minimal, though, if the publication is the visibility and brand awareness could be worth it. \n\nAdditionally, if the writer says something the publication doesn’t like, they can lose their content, the visibility, backlinking, and more. \n\n… but what if there was a publication platform that could solve these problems?\n\n**The Solution**\n\nNostr allows users to publish content to a set of relays and grow their following without requiring a particular platform. They could gain the advantage of the visibility to the users of the platform, censorship resistance, and to take their following with them, along with having a higher upside from being able to receive lightning payments.\n\n**The What**\n\n- A codebase built on Next.js that is easily deployable to Vercel that uses the nostr network to fetch long-form content events (kind: 30023) and render them in a UI. It’s easily customizable by using an environmental variable to set an array of pubkeys.\n- You can create a blog out of this if the array only contains one pubkey, your pubkey.\n- If you set multiple, you can evolve the UI to become something quite like Bitcoin Magazine.\n- The codebase is entirely dynamic and it fetches the article writer’s lightning addresses from their nostr profile metadata.\n\n**Why Now**\n\n- Community members of Nostr PHX are asking for this.\n- Get more of the internet off of massive social platforms and more to their own platforms.\n- Community members and organizers that are marketers want to be able to contribute *more* to the nostr network.\n- Disrupt publication incentives and costs.\n- Get more communities to use nostr without needing to know Nostr.\n- Value 4 value, enabling the users to not have a ceiling on their earnings.\n- Empower publishers to easily aggregate nostr content to one place and curate the experience.\n\n**Codebase**\n\nYou can view the instructions to setup and deploy the codebase in the [GitHub repository](https://github.com/zantoshi/magstr).\n\nYou can try it at https://magstr.vercel.app\n\nThanks\n~ Santos. \N 7899 \N 287984 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.34541145784868 0 \N \N f 289367529 \N 2 187378806 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 430934 2025-03-09 14:17:18.918 2025-03-29 22:39:47.097 Does anyone here EXTENSIVELY use AI to help them write/debug code? I’m specifically interested in people that _extensively_ use AI for complex coding projects.\n\nHere’s my limited experience, so I’d be interested to hear thoughts and workflow details from someone who does this more than me:\n\nI work in tech but not as a developer. I’ve tried using Copilot to help with personal projects here and there, and it is helpful in some ways, but I find it doesn’t come close to living up to the hype. I see tweets and posts from devs saying they use it all the time to build things, find bugs, cut 50% or more of their workflow, and that it’s a huge game changer… But that all seems hard to believe. \n\nI’ve noticed that if I’m trying to write a very specific function that doesn’t necessarily exist in the context I’m creating, AI is of little to no value, if not negative value. Once I’ve spent a bunch of time prompt engineering, I’ve basically solved the problem and could have just written the code myself. 
\n\nI’ve found that if I’m actually trying to _create_ something, it’s better for me to think through it myself, and what I come up with usually involves less code than what the AI outputs. \n\nAnd lastly, debugging seems super hit or miss. It might fix something, it might not, or it might make me think something is fixed before it completely breaks later and I have no idea why, leaving me worse off than before. \n\nDoes it sound like I’m just completely doing this wrong, or can developers relate to this experience?\n\nFeel free to vote/share thoughts below. \n\n![cat.gif](https://m.stacker.news/19343) \N 9655 \N 430934 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.8350040901178 0 \N \N f 318132216 \N 2 55176984 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 441436 2025-03-18 01:51:34.075 2025-03-29 22:39:47.097 How to Be Dumb ### reason is a hammer\nYou can sit on a hammer or use it to build a chair. Reason is a tool. Reason is a means to an end and the end is whatever you want it to be. The most reasonable thing to be is reasonable just like the most circular shape is a circle. By the standards of reason, feelings alone are dumb but important feelings, like desires, can exist outside of the scope of reason.\n### you feel how you feel\nYour feelings are truths about how you feel. One equals one. You feel how you feel. You can feel another way but then you feel that way. Reason and action can influence how we feel but they are not feelings. The reason you enjoy surfing is worth knowing, but the fact that you enjoy surfing matters. Regardless of the reasons for our feelings, our experience of reality is in large part how we feel about reality.\n### feelings are intelligence\nParents, teachers, and bosses deride feelings because we struggle to reason about feelings that aren't our own. The early feelings we have come from genetic blueprints shaped by our ancestors' lifetimes, while our mature feelings are shaped by our own experiences. Feelings can lack a clear origin and be nonsensical and flawed, but they are not flaws. Feelings provide decision making where reason is slow, unavailable, irrelevant, or inadequate.\n### your own ruler\nThe world is measuring you against a universal ruler, measuring how well you conform to its generic practical standard, but each of us is our own standard to be measured against. It's dumb to think you're special but you are. In some small mundane way you are better than all of us. Likely, you are better than all of us in many big important ways too. The universal ruler is largely inconsiderate of specialness and the universal ruler should, at most, be a rough template for making your own ruler.\n### feelings are a compass\nAs useful as a compass is, we consider where a compass has us going. As useful as a compass is, we look at a map if we have one. As useful as a compass is, all it does is point. Feelings provide something like a bearing. In unfamiliar territory a bearing is a godsend, but we need more than a bearing to navigate unfamiliar territory. Feelings cannot solve all of our problems or produce all of our work or tell us with precision what is right or wrong. Feelings are a tool like reason is a tool and only a fool would use a single tool for everything. \N 15560 \N 441436 \N \N \N \N \N \N \N \N security \N ACTIVE \N 25.3165051475277 0 \N \N f 39562975 \N 1 159548181 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400447 2025-02-12 08:47:36.696 2025-03-29 22:39:47.36 SN release: top territories, linked accounts in profile, deeper bolt11 deletion #### top territories\n\nYou can view [top territories](/top/territories/forever) now. *via @mz* \n\nAdditionally, we've added numbers to top stackers as requested by @benwehrman\n\n#### linked accounts in stacker profiles\n🚨 first time contributor alert\n\nWhen you link github/twitter/nostr auth to your account, you can opt-in to display them in your profile. *via @alex_lewin*. Note: you may need to unlink and relink existing auth methods if you want to do this.\n\nThis was requested by @metamick most notably.\n\n#### deeper bolt11 deletion \n🚨 first time contributor alert\n\nWe absolutely nuke deleted bolt11's by also deleting them on our lightning node. *via @dillon*\n\n#### lnd autowithdraw maximally restricted macaroon\n\nIf you know how to bake your own macaroons, you can now use lnd for autowithdraw with only `invoices:read` and `invoices:write` perms in addition to the already supported prebaked `invoice.macarron`.\n\nRequested and specified by @RocketNode\n\n#### detailed validation of NWC strings\n\nAs heading *via @ekzyis*\n\n#### bug fixes\n\nFix missing saloon comments in profile *via @ekzyis* \N 9307 \N 400447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5369815263016 0 \N \N f 756686681 \N 6 24163544 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434851 2025-03-12 09:33:24.841 2025-03-29 22:39:47.362 It is always darkest before dawn \N https://youtu.be/9T4Mj5nrQTQ?feature=shared 21262 \N 434851 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 27.4402710161358 0 \N \N f 8932675 \N 1 69198923 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 09:50:20.566 f \N \N \N 0 0 0 0 1 0 0 413219 2025-02-23 00:08:00.664 2025-03-29 22:39:47.363 NoGood book update – Week 01 – Humble beginnings ![Header](https://nogood.studio/geyser/posts/NG_Blog_001.jpg)\n\nA couple of days ago I launched [a Geyser campaign](https://geyser.fund/project/nogoodartbook) to cover some of the production costs of self-publishing an art book. For some background on the book [see the announcement post](https://stacker.news/items/736947). Saying I was excited to launch the campaign is an understatement. Producing an art book has been a vaguely defined idea that simmered in the back of my brain for years. With the a press of a button it became very real.\n\nBeing excited wasn't the only emotion I felt. Knowing there was no way back hit me hard and I've been feeling the pressure since the start of the campaign. What if there's no interest in a bitcoin themed art book or the production costs are higher than I expected? Do I have enough content to fill a book? How do you make a book anyway? It was a mix of imposter syndrome and being way out of my comfort zone.\n\nTurns out, I didn't need to worry. The first week of [the campaign](https://geyser.fund/project/nogoodartbook) has been quite a success with over 20 pre-orders and roughly 25% of the production costs covered. __A huge thank you to everyone who has supported the book so far!__\n\n![Shot from the studio ](https://nogood.studio/geyser/posts/NG_Studio.jpg)\n\nLast week I visited some bookshops in Amsterdam. To clear my head and to get inspired. I quickly discovered there's a recurring theme in the books that catch my eye. I call them 'zines without a budget' – books that have a more modest look, yet are beautifully designed and use various printing techniques in a more subtle way. The opposite of the large, glossy and colourful publications that scream for attention. \n\nMy trip to the bookstores also sparked some new insights. In order for the book to become more than an illustration portfolio I need to provide context about the world my illustrations inhabit. I want to tell the reader about bitcoin and the greater open-source space. About NOSTR, zaps, the V4V model, online privacy, decentralised tech and open protocols.\n\nWritten content. Unfortunately I'm a terrible writer. The solution? Asking prominent figures in the space and people whose work I find inspiring to contribute. Ideally something written specifically for the book, though I'm well aware that's a lot to ask. It could also be a repurposed article or blog post or a snippet of one. It could be podcast transcript.\n\nSo far I’ve reached out to a small group of people and was pleasantly surprised when some of them agreed to help out! I’m not used to bluntly ask for favours so this was a big step to take.\n\n![NoGood Radio Promo](https://nogood.studio/geyser/posts/NG_Radio_Promo.jpg)\n\n#### Next steps\nThis week I'll visit two printers that specialise in producing art books. Their initial quotes were in line with my expectations and I'm looking forward to discuss options, get their input and see a lot of beautiful books. After this the fun begins and I'll start working on my first designs. I'll also create a post about books I found that inspire me, and go into more detail about my plans for the NoGood art book.\n\nI'll keep you posted.\n\nThomas\n[nogood.studio](https://nogood.studio) \N 17001 \N 413219 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.8791184013112 0 \N \N f 224300994 \N 2 206062963 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 265848 2024-10-13 09:01:34.161 2025-03-29 22:39:47.365 Getting paid in bitcoin Finally putting myself on all the sites for getting paid for bitcoin.\n\n1. [Bitcoiner freelance](https://bitcoinerfreelance.com) is a new one in the space. Not lots of traffic yet though. Trying to be a fiver replacement.\n\n> ![Screenshot 2024-03-20 at 9.33.04 AM.png](https://m.stacker.news/21811)\n\n2. [Plebwork](https://www.plebwork.com/) is my favorite because it really let's you show all your skills right up front, and doesn't ask for you to dox yourself by putting a CV etc. Really let's you be an anonymous pleb. Trying to be an upwork replacement.\n\n> ![photo_2024-03-20 10.22.44.jpeg](https://m.stacker.news/21813)\n\n3. [Bitcoin talent co.](https://www.bitcointalent.co) is very well known in the space. A lot bigger and more traffic. Featured in many podcasts, like TFTC for one.\n\n> ![Screenshot 2024-03-20 at 10.28.29 AM.png](https://m.stacker.news/21814) \N 3371 \N 265848 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 28.2934946344077 0 \N \N f 329141777 \N 3 189544916 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 19:05:39.84 f \N \N \N 0 0 0 0 2 0 0 436081 2025-03-13 09:47:51.888 2025-03-29 22:39:47.098 I hacked the shipping privacy problem I needed to order some TapSigners for an organization I consult for. The problem? Well, it's the perennial problem of putting any personal information into any bitcoin website of course. There have been customer data leaks from [many](https://www.coindesk.com/business/2022/03/21/hubspot-hack-leads-to-data-breaches-at-blockfi-swan-bitcoin/) [sources](https://cointelegraph.com/news/ledger-data-leak-a-simple-mistake-exposed-270k-crypto-wallet-buyers) over the years and it's just too risky even if they purge on a rolling basis.\n\nThe solution: \nSee previous discussions: https://stacker.news/items/435261, https://stacker.news/items/199147\nI went to a local shipping shop. I didn't choose the brand name stores, rather one that is locally owned and operated. I walked in the door and asked if they could receive a package. They said "yes" and it would cost me $5. Awesome. I told them it would be labeled for "General Delivery 7382". They took down a note and I went home and ordered the product.\n\nThe address template I used for shipping was simply:\nGeneral Delivery 7382\n1000 Main Street\nAnywhere, NY 90210\n\nI figured the four digit "PIN code" was a good measure of identity that they would trust. So it took a week or so for the package to arrive, but when it did I walked in and asked for the package, showed the shipping page with the shipping number on my phone, paid the $5 and walked out with the bitcoin tapsigners! \n\nI was able to reduce my privacy attack vector significantly, though it's never zero.\nIt should be mentioned, of course, that I used a burner email and paid with lightning for the rest of the transaction.\n\nLet me know here if you try this and it works in your area! \N 13097 \N 436081 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4223419349573 0 \N \N f 193645459 \N 2 175570126 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:06:29.914 f \N \N \N 0 0 0 0 2 0 0 407513 2025-02-18 06:01:49.822 2025-03-29 22:39:47.361 What will be the THEME of your 2024? Feeling reflective this week.\n\nWhat do you anticipate defining your year next year?\n\nPersonally, 2024 is going to be all about **refinement** for me. The past couple of years I've been focused on building a foundation to work for myself. Now that I'm reaching a point where I've established a base, in 2024 I want to hone in on the additional skills that I've been putting off, and set a higher standard for my services and for myself in general.\n\nThrough the process of skill building and creating a living for myself, I've found that **prioritization** is paramount. \n\nBefore you even begin learning something new, you need to understand the why behind what you're doing.\n\nIf you aimlessly try to "learn" without a destination in mind, then you'll be all the more likely to take every little detour and hidden path along the trail that there is. It may feel productive since you're "learning" and acquiring new information, but in reality, it seems to be either a case of procrastination, excitement, fear, confusion, doubt -- any one of those, or all of them together -- that's pushing your end goal further down the trail. And if you keep wandering, you may never find it.\n\nIn the past couple of years, I feel that I've spent too much time wandering. But now that I have a better understanding of my end goal, I have a much more clearly defined path in front of me. No more detours or rabbit holes. I understand what chapter comes next. I have the core essentials down, now it's time to refine the supplementary skills that will broaden my scope to accommodate all new kinds of clients.\n\nPerhaps this involves bitcoin ~ o.0 ~\n\nWhat are you focused on for your 2024? How will you characterize it? Is that subject to change?\n \N 2013 \N 407513 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.9921390083302 0 \N \N f 137621236 \N 1 27951322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458433 2025-03-29 09:09:59.153 2025-03-29 22:39:47.364 Pins are zappable now @siggy47 sent me a DM and wondered if he missed an announcement. He didn't and since probably many more territory founders are unaware of this change, I thought I'd make a little announcement.\n\nThanks to [these 4 changed files with 6 additions and 7 deletions](https://github.com/stackernews/stacker.news/commit/c23f1f82bc6d0b0b031830bcd222c6e24389d717), pins are now zappable. You can't zap them from the feed but if you click on the item, the pin icon is gone and replaced with the zap icon.\n\nThat's it. That's the announcement.\n\n![2024-02-04-165842_1920x1080_scrot.png](https://m.stacker.news/14854)\n\n![2024-02-04-165848_1920x1080_scrot.png](https://m.stacker.news/14853)\n \N 7818 \N 458433 \N \N \N \N \N \N \N \N news \N ACTIVE \N 21.7131254171241 0 \N \N f 82915528 \N 1 4631025 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422953 2025-03-02 19:58:23.171 2025-03-29 22:39:47.365 Civil Forfeiture And Samurai Mixed Bitcoin Here is a link explaining the US civil forfeiture law which can be used to seize assets:\n https://www.justice.gov/afp/types-federal-forfeiture\n\nSpecifically, I'm talking about in rem forfeiture here:\n\n> In rem (against the property) court proceeding brought against property that was derived from or used to commit an offense, rather than against a person who committed an offense. Unlike criminal forfeiture, there is no criminal conviction required, although the government is still required to prove in court by a preponderance of evidence that the property was linked to criminal activity.\n\nTheoretically, bitcoin that has been mixed could be deemed proceeds of a crime after yesterday's indictment. I don't know whether the government would pursue this course of action. \n\nThere are many instances where this in rem civil forfeiture has been used by governments to take property in what seems an unjust manner. \n\nHere's the classic example:\n\nA husband borrows his wife's car and solicits a prostitute. Prostitution is illegal, and the car is seized as property used in the commission of a crime. The car is seized, though the innocent wife owns it. The theory is that the action is brought against the car, not the wife. \N 15484 \N 422953 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 25.9346488884777 0 \N \N f 212946011 \N 2 34140408 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2612 2022-10-17 09:52:06.163 2025-03-29 22:39:47.368 Route Not Found I'm hoping someone can help me trouble shoot a problem I'm having.\n\nI have two private channels with lots of inbound liquidity on my Alby Hub node, but I'm not receiving sats to the wallet through them.\n\nI opened a public channel to Stacker News, which has been receiving sats. The problem is that I run out of inbound liquidity on that channel pretty fast.\n\nWhat might be going on with my private channels that prevents routes from being found? How do I troubleshoot this sort of thing? And, what can I do to fix it? \N 20956 \N 2612 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.35019312784441 0 \N \N f 246304238 \N 1 116586653 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456668 2025-03-27 18:48:11.831 2025-03-29 22:39:47.368 'little fictions' presents: Cowboys Don't Belong _'little fictions' is the name I give my short stories. I wrote this over the weekend. I would describe it as surreal, its edges are blurry on purpose. I invite you to invent its meaning. _\n\nI sit down to eat. Everyone is already seated, I feel their eyes drifting over me and darting away. Some of them I know, but no greeting do they offer. I start to get the sense that this will not be a big meal, but one of those food parades with much decoration and little substance. The long table has around fifteen people gathered about it, looking casual and uncomfortable. Being inside a working office, lots of people bustle in and out around us, their shadows coming through the glass walls. \nI have just come from the room where the horses are kept. I lingered there for a while, since I’d rather be with them anyway, but I took this invitation, made this appointment, and I intend to get something worthwhile out of the deal, not to mention my desperation pulling alarm bells at the back of my mind to hurry me along. After the trip in, I imagine the horse smell soaked into my clothes and is now overpowering the carefully crafted culinary perfumes. I attribute this as one on the list of reasons why no one is particularly happy with me.\nA member of staff strolls over to my side, places a cardstock menu with curling letters in front of me and explains the third item from the top has just been served. Swiftly she leaves, and right behind her another one comes, setting a plate of noodles and sausage at my place, cream sauce dripping, steam rising. I am very hungry. \nThe parade marches on. People keep chatting while others are poking forks into their mouths. I focus on spinning the appropriate amount of noodles into the fork prongs, slipping them into my mouth with as little obvious strain as possible. It’s very good, but no one else is sharing with me in these delights. On their plates are simple little bites that look anything but simple. As I scrape up the last saucy, flavorful drops, I notice a presence suddenly beside me. She’s tall and slender, short blonde hair spiked out in all directions, then swooped across her forehead. A smile stretches over her precise features. Her eyes are cold. “So glad you could join us,” she says. I slurp the final noodle past my lips. Her smile vanishes. “Further, I am so glad you thoroughly enjoyed your dish. Are you quite finished? We have several more rounds to serve, but I’m afraid they won’t be as appetizing as this one you so delicately devoured.” A flutter of her eyelids tells me the composure she wishes to exude is overtaken by her huge dislike for me in this moment. \n“Yeah, that was lovely, thank you,” I bow my head swiftly, slink out of my seat. My friends who are seated among the guests wince at me as I pointedly make eye contact. “You guys have fun, catch up later? Yeah, so,” I clap my hands together, wipe them on my clothes, and remove myself from their party, the stinking eyesore sulking. \nIt is embarrassing to realize I ate rather obnoxiously, as I really didn’t mean to. My plan was to blend in seamlessly, but at least I got fed anyway. I walk on through the narrow corridors, looking for some cues as to what goes on here and how I should act. I feel like I’ve just been dropped into a totally different world, and having arrived on horseback, the contrast is striking. The building is white or grey in any space that’s not glass. It’s sterile, soundless. The people who I first imagined were working, I understand now as I look closer that instead of working, they are passing time. They shuffle about refilling coffee, speaking quietly, idling behind wide screens. They look up disgruntled when they notice my worn leather, dust and mud-clad gear is leaving a trail behind me. I venture deeper into the maze of the building and arrive at no further explanations.\nThen ahead of me, I spot the first window to the outside, the first glimpse of sunlight. Stepping closer to take in the view, I think, _This can’t be real_ as the scene before me unfolds. People in tricolored suits, the kind one would use when jumping out of a plane, leap and bound across a green lawn with spirit, as if performing in a circus. Some of them flip, cartwheel and spin. There is no audience, the dancing and gaiety appears to be for their own amusement. Beside them, they bounce giant beach balls, sometimes soaring over their heads, the shadow swallowing them up, then landing and rolling over their friends. From behind my glass, it is silent, but I imagine a roaring cacophany of splitting laughter as I watch a number of heads rearing back then bending forth over slapped knees, pointing out when one gets trampled. It is a huge commotion and after a time, I realize it is leading somewhere. \nEach member of the crowd collects into a single-file line at the edge of the lawn, where a large pool begins. I cannot see the end of it, just blue in the distance. They begin to look like ants down there, the organized line moving in its characteristic chaos of rhythm. And the people are marching, or dancing or spinning, one by one off a ledge and into the pool. It seems to catch them by surprise, they do not slow their stride once they leave land to enter water. My breath sticks in my throat for some moments as I watch one after another disappear and disappear. None come up for air. \nI take a solemn step back from the window. I inspect its frame, quickly discovering I can slip my hand behind it and feel the cold concrete wall. It’s no window at all. I take another step back and now I can see the small rectangular slice of text in its bottom right corner. _We get what we want, then it’s over_ is offered as the title, attributed to an artist who composed this vision using pixels within a digital frame. \nI head back the way I came, back through the long hallways where office space splits off, empty now in the evening hours. I reach the table where I was relunctanly, but thankfully, served. This room has emptied out as well, except for three figures who remain at the table speaking easily amongst themselves. I recognize the figures to be my friends along with the harsh blonde woman from before. One of them calls out, “Hey, come have a seat!” \nThe lights are low, the table cleared. A sense that a serious discussion has just been interupted is palpable. I take the back of a chair in my hands to scoot it toward me, but the intensity of the blonde woman’s stare stops me. She stands and says, “I’m so sorry we weren’t properly introduced. Your friends have filled me in. Please do have a seat, I’m happy we could have another chance to talk.” Her hand hovers out to meet mine. Our handshake exchanged, we both find our seats. \nMy friends begin a discussion of minor details, calling back to how long we’ve known each other, what our friendship has consisted of. I nod along, smiling at our shared jokes or affirming people, places, and things as they come up. The serious woman interjects questions, probes at explanations. It moves along like an interview at points. All their declarations and stories start to cast a shining light on me. I come out looking almost spiffy, adding a balm to what was wounded by first impressions. \nFinally we arrive at what must be the point of my time here. The woman I have just met takes charge of the conversation, saying, “So I might have an offer for you, if you’re looking for work.” I compose my face into a look that reflects interest, hopefully, since I am looking for work. Still, I get this scratching sense that her kind of work won’t fill me with satisfaction. “I need someone to go into our storage crates with a critical eye, retrieve things of interest, decide what should be there, remove what should not. It would take just a few days.”\nThere it is on the table, the morsel I am meant to take up, the one piece that is offered without side glances. I choose it, and I do not match it to my worth, these are irrelevant to each other. At least I try, but I have to recognize immediately the scales are imbalanced. With an easy smile, I look back at her and say, “I’m great at organization.” \N 2709 \N 456668 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 2.35302410549391 0 \N \N f 168985247 \N 1 120114743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421282 2025-03-01 14:59:57.401 2025-03-29 22:39:47.37 Bitcoin Filters Work By Default, and That's a Good Thing! "Nirvana fallacy (perfect-solution fallacy) - solutions to problems are rejected because they are not perfect."\n\nOrdinal spammers, grifters, and apologists want you to believe filters don't "work". They will say this on repeat, while ignoring all evidence to the contrary. Because they're compromised, and arguing in bad faith for their own grift, or their employers.\n\nOften they do not define what a "working filter" does, but when they finally get cornered into an answer they assert that a "working filter must stop all spam transactions from getting into all future blocks, forever. Otherwise it does not work!" That's right folks, there's no shades of grey here! Just black and white outcomes! Golly gee, these fallacies are fun!\n\nThis is what we call a false goalpost, which is related to the Nirvana Fallacy. It's a linguistic technique used by bad faith actors to distract away from the main point. The fact is, FILTERS WORK AND ARE WORKING NOW. Filters are being used by your Bitcoin node by default, and should be! [(Lookup the dust limit!)](https://bitcoin.stackexchange.com/questions/10986/what-is-meant-by-bitcoin-dust)\n\nThe grifters don't want these points heard, since they are valid, unlike their transactions in my nodes mempool. Rather, they want the discourse to focus on the extreme goal of complete censorship, as a way to shift focus away from the obvious.\n\nFilters Work for your own nodes mempool. Saving you resources, your RAM, CPU power, bandwidth, and energy too. You not only save your resources by running filters (like permitbaremultisig=0). But, by locally running filters, you reduce your moral culpability, ethical and legal liability associated with this harmful spam.\n\nFilters can also work by stalling propagation of spam transactions generally, if there's enough uptake by most node runners. Thereby, increasing the cost of this behavior in time for validation, and perhaps even by increasing the fee paid for validation of these grifting, infinitely reproducible, no-supply-cap, shitcoin-token, receipts-of-JPEG's.\n\nIncreasing the cost on this deviancy, in time, in money, socially, in any way, is desirable and has the effect of reducing the attacks long-term runway. And yes, it is an attack. Which can socially evolve and get worse over time. At the moment it is a benign cancer. But it can become malignant if we are not collectively careful. Unfortunately, Core devs & maintainers are naive, continue to play dumb and bury their heads in the sand on this issue. But that's a discussion for another time.\n\nFurthermore, mass collective filtering of this spam by node runners can incentivize payments out of band, which works to identify mining pools who are directly collaborating with attackers. This also has the effect of increasing the time for validation of spam.\n\nHilariously, this was recently demonstrated by Rob Hamilton, the CEO of anchor watch. He attempted to showcase that the dust limit filter could be easily circumvented by a payment out-of-band to Luxor pool. Unfortunately, it took him and Luxor three days to figure out how to do this, thereby demonstrating the utility in forcing undesirable spam out-of-band. Adding friction in any way reduces the harm and runway of the attack. Clearly this friction was demonstrated by Luxor and Rob's inability to get their spam transaction confirmed in less than 432 blocks.\n\n![image 1 medium.png](https://m.stacker.news/13498)\nhttps://x.com/oomahq/status/1744120014574076160\n\n![image 2 medium.png](https://m.stacker.news/13499)\nhttps://twitter.com/oomahq/status/1744483045829190089\n\nOnce these bad faith mining pools are identified, like Luxor, they can be lobbied against by appealing to their miner clients to switch pools. Miners have an incentive to switch pools under these circumstances, since the out-of-band-payment payouts, as they are today, can’t be validated by miners. Rather, miners need to trust that payouts from out of band payments are being distributed fairly by the mining pool. Which the mining pool does not have an incentive to implement until they lose mining clients for being lazy or greedy. In any case, mining pools are getting a free ride as passive enablers of this unwanted spam-scam-grifting-useful-idiot-attacking behaviour.\n\n“But what about muh mempool? Doesn’t this break fee estimation? Aren't you scared about these spooky third and forth order effects that have a low probability of occurring?”\n\nQuite frankly, No. And that’s not my problem. I also believe this is low on the totem poll of negative potentialities involving this attack. Mempool fee estimation being more broken then it already is, is an outcome I’m very willing to accept for effective filter optionality at reasonable levels.\n\nFor instance, having an effective filter built into Core turned off by default is entirely reasonable, appropriate and warranted. Expecting people to disable their mempool entirely with Blocksonly=1 is like launching a nuke, when a scalpel is needed. It's entirely inappropriate, and potentially harmful. It's surprising that core devs are recommending this as THE option to enable. \n\nFurthermore, Over 80% of respondents do not believe this spam activity belongs on Bitcoin. It’s reasonable to assume that this same group would run filters on their node if they were conscious of how to deploy this choice.\n\n![image 3 medium.png](https://m.stacker.news/13501)\n\nSadly, most Bitcoin node runners don’t know what Bitcoin Core’s config file is, let alone how to use it to achieve MAXImum effective filtering of spam. Bitcoin Core devs & maintainers don’t seem eager to enable this choice either, even if off by default, for reasons that seem extremely close to the Nirvana Fallacy.\n\nBut there are still a few options for Bitcoin node runners to enable filters using the Bitcoin.conf file today.\n\nThe first one is a nuclear filter option. This option disables your mempool altogether, so you will not be relaying any unconfirmed transactions to other node peers, or be storing any in your RAM.\n\nBe warned, this isn’t an advisable option if you run a lightning node or if you plan to broadcast your own onchain transactions. But you could simply turn your mempool on again when needing to do onchain transactions.\n\nYou can disable your mempool by typing “blocksonly=1” into your config file, then save the file and restart core, and your mempool will be disabled entirely, free of spam abuse. To turn your mempool back on, do the same thing but instead type and save “blockonly=0” and delete “blocksonly=1”.\n\nWith all that said, blocksonly=1 is a nuclear option that discriminates all transactions. Thus, non-spam economic transactions also suffer under this policy, same as spam transactions. But maybe as a protest some of you will want to use this option. Sipa (Peiter Wuille) is recommending it as a filter option, and as justification for not adding any new filters that are more targeted. Perhaps every node runner should listen to him and collectively shut off the mempool?\n\n![image 4 medium.png](https://m.stacker.news/13502)\nhttps://x.com/BITCOINALLCAPS/status/1655975292400451584\n\n![image 5 medium.png](https://m.stacker.news/13504)\nhttps://x.com/4moonsettler/status/1748360305980407944?s=20\n\nBut for those who don’t want such an extremely broad filter, there are some more specific filters that eliminate spam from your mempool. To achieve this, it is highly recommended that you set\n\n“permitbaremultisig=0” AND “datacarrier=0”\n\nin your config file. These eliminate baremultisig transactions from being propogated to your peers mempools, as well as storage of baremultisig transactions in your RAM.\n\nThis is currently being used by the stamps scheme, a related ordinal scheme, to bloat the UTXO set beyond normal rates of growth. Thereby accelerating baseline pruned node and full node resource usage and requirements long term. Which sucks for those people who this will effect now and eventually, preventing them from running their own nodes.\n\nAs for Datacarrier=0, this eliminates OP_RETURN transactions from your mempool, which aren't as harmful, but are still being used by some of these BRC20 shitcoin-token schemes to grift and scam. It’s not unreasonable to filter these as an extra precaution, and to save your local compute resources.\n\nYou can go a step further socially and broadcast your preference for these filters by using saving “uacomment=stop the spam on your own node, set datacarrier equals 0 and permitbaremultisig equals 0” in your Bitcoin.conf file. This would then show up as a public message displayed by your node, readable by your node peers. You can set any custom message you like.\n\nIn conclusion, this false goalpost of: “you’ll never stop spam from getting into a block” is a) not the only goal and b) designed to distract away from the other goals that are immediate and obvious. Such as, personal node resource control, expression, compute savings, and the reduction of moral-legal liability associated with your nodes participation in distributing this unwanted spam content.\n\nie Sovereignty.\n\nWhich is the whole point of Bitcoin. You get to run the code you want, within consensus. Filtering is within consensus, and you already do it by default if you run Bitcoin Core with no modifications.\n\nFiltering is your god given right as a Bitcoin node runner to turn on or off.\n\nIT WORKS.\n\n[@BITCOINALLCAPS](https://twitter.com/BITCOINALLCAPS) \N 20829 \N 421282 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 16.1249596469225 0 \N \N f 175835434 \N 2 188769352 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408049 2025-02-18 14:47:39.385 2025-03-29 22:39:47.098 SN release: direct payments to attached wallets, send fallbacks, lots of smalls In addition to proxying payments to attached wallets, if you don't need the privacy or mind the 10% fee, you can receive directly to an attached wallet. e.g. When enabled in your settings, and a deposit will cause your balance to exceed your auto-withdrawal threshold, we will send the payment directly to your attached wallet ... note: this won't be very useful until you'd otherwise receive cowboy credits.\n\nIf you have multiple sending wallets attached, we will try to pay with each in priority order until the payment succeeds or we run out of sending wallets to try. (via @ek)\n\nCreate custom invite codes with private descriptions (via @rblb)\n\nThen we have lots of small improvements:\n- log payment rejections due to fees (via @ek)\n- fix and improve LNC attached wallet (via @rblb)\n- wallet display filters for send/receive (via @ek)\n- fix adding images in the middle of text (via @Soxasora)\n- fix deposit notifications (via @rblb)\n- allow filtering for unpaid bounties only (via @aegroto)\n- fix territories not being refreshed on settings change (via @aegroto)\n- territory popover on hover (via @felipe)\n- check auth on invite revocation (via @rblb)\n- progress bar on back (via @aegroto)\n- fix failed post payments showing in top (via @Soxasora)\n- allow iOS video uploads (via @Soxasora)\n- fix edit timer sticking at `00:00` (via @ek)\n- fix specific wallet log deletion (via @ek)\n\n--------------\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nI'll pay out bounties for all the fixes in this release after posting this.\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 13.8m sats to 32 contributors for 146 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/776217\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 13753 \N 408049 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 28.2104101432879 0 \N \N f 96803625 \N 1 18058409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415302 2025-02-24 17:21:42.385 2025-03-29 22:39:47.362 What Skills Do We Lose With Bitcoin? With new technology comes convenience. And for this discussion I’d like to mainly focus on the negative consequences that come with a transformative technology.\n\nGoing back many thousands of years we might find that the invention of footwear had a consequence of making the soles of our feet soft. And in todays digital world there seems to be a general dumbing down in many fields like math, communication and writing.\n\nAnother example is navigation. 20 years ago I had a general idea of the roads in my area. If I were driving into unfamiliar territory, I’d look at the map and try to remember which roads to take and where I should turn off. These days with everyone using a GPS on their phone, this kind of knowledge is no longer necessary and I bet most people would get lost without it! \n\nEven though the gains of these technologies far outweigh their negative effects, what are some of the skills we lose with understanding and using bitcoin? Is it that the increased purchasing power destroys our motivation for productive work? Or does it make us less trusting or social as we become our own banks and hold our own keys? \n\nI’m interested to hear your thoughts. I struggle to find an answer TBH.\n\n\n\n \N 769 \N 415302 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 9.4624675547287 0 \N \N f 76231362 \N 1 168451762 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403304 2025-02-14 17:08:01.498 2025-03-29 22:39:47.363 BDMD #3 - Bitcoin is illegal because it is not legal tender > BDMD = Bitcoin deniers myths debunked\nThis is a series of short posts about Bitcoin myths and nocoiner fallacies, debunked or explained.\nBDMD #1 - [Bitcoin was hacked / will be hacked](https://stacker.news/items/589355)\nBDMD #2 - [Govs will shut down internet, so Bitcoin is dead](https://stacker.news/items/590397)\n\n## Bitcoin is illegal because it is not legal tender\n\nFirst of all \n### What is the definition of “legal tender”?\n\nYou cannot force a retailer to accept legal tender or indeed any other form of tender. If, however, you buy something from them and there is no contractual barrier to use of any form of tender, and you offer legal tender in payment, and they refuse it, then they cannot enforce the debt in court.\n\nThat’s what legal tender means: it’s about discharging debts. If you incur a debt you can discharge it with legal tender, but you cannot be forced to incur the debt in the first place.\n\nTLDR: "legal tender" is debt. Bitcoin cannot be debt because is property. Is more like credit (if we want to speak in accounting language). See more about legal tender from @Lux pill - https://stacker.news/items/511157\n\nIn March 2013, the US Financial Crimes Enforcement Network issued a new set of guidelines on "decentralized virtual currency"; clearly targeting Bitcoin. Under the new guidelines, "a virtual currency user is not a money services company (MSB) under FinCEN regulations and is therefore not subject to MSB registration, reporting and record keeping regulations". Miners, when mining bitcoins for their personal use, are not required to register as an MSB or Money Transmitter.\n\nGenerally, there are several currencies that are not official government-backed currencies. After all, a currency is nothing more than a convenient unit of account. While national laws may vary from country to country, and you should certainly check the laws in your jurisdiction, generally trading any product, including digital currency such as Bitcoin, BerkShares, gaming currencies such as WoW gold or the Linden dollars, it's not illegal.\n\nGenerally speaking, if somebody wants to trade with me in pink shells, nobody as a 3rd party can force upon me to trade in black stones. I like more pink shells and are more useful for me.\n\nAnother aspect that people should understand: gov "laws" DO NOT APPLY TO BITCOIN. They apply only to fiat money. There's no proof that a gov can have any jurisdiction or authority over your own money (Bitcoin), yet they are the OWNERS of any fiat money. Please make this important distinction.\n\nAlso governments cannot use Bitcoin as money. You will never see any gov paying its employees (citizens) in sats. Govs are paying only with debt. So please stop saying "X country will adopt Bitcoin". Is a total bullshit.\n\nBITCOIN IS FOR SOVEREIGN INDIVIDUALS\n\n![](https://m.stacker.news/37780)\n\n[![illegal.jpg](https://i.postimg.cc/k4SKgdmf/illegal.jpg)](https://postimg.cc/XGVpsmXC) \N 13398 \N 403304 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.81658466521395 0 \N \N f 37415009 \N 1 45543632 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455079 2025-03-26 18:25:33.769 2025-03-29 22:39:47.365 My history with bitcoin I grew up in a low-income family where we could barely afford basic necessities, until the 2014-2016 crisis in Venezuela hit and I had to drop out of university to work construction so we could have enough food to pass the month. Luckily, we never went hungry because everyone in my house worked.\n\nOne day, I got tired of working construction and saw an opportunity to sell bread outside my house because bread was scarce due to the crisis. The bread business was successful, and the flexible hours allowed me to have free time to research different ways to "make money online." I discovered a few forums that paid a little bit of sats for creating posts, and that's how I slowly started to get into the world of bitcoin. I began creating my first content to upload online and be rewarded for it. Unbeknownst to me, I had started to monetize my hobby of photography, which eventually became my way of surviving the crisis and even helping my poorest family members, who needed it most.\n\nIn the midst of all this crisis, many Venezuelans began to leave the country in search of a better future. Even all the people I grew up with in my home left, and today, I am the only one left in Venezuela from my family nucleus. My mom, dad, aunts, siblings, and cousins are all outside of Venezuela. I am the only one who stayed, and it is because of the power of bitcoin that I am still able to pay for my life in Venezuela. In some way, I am "living the dream" because I am living off of what I love to do, and that is thanks to bitcoin tecnology and all of you too.\n\n\n![media-cache.jfif](https://m.stacker.news/20990) \N 9336 \N 455079 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.48521215725916 0 \N \N f 149209685 \N 1 197082537 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423909 2025-03-03 17:45:21.33 2025-03-29 22:39:47.365 Stacker News Media Kit V 0.1 After some [positive feedback from k00b](https://stacker.news/items/736951/r/Jon_Hodl?commentId=737252) on a comment I made, I decided to get a media kit in the works for SN so everyone has access to quality promotional materials for growing Stacker news, a territory, or persona. \n\nThe primary purpose of a media kit is to equip bloggers, YouTubers, influencers, makers, doers, companies, and projects with the tools to link to and portray SN the way we want to be portrayed. \n\nA media kit typically includes brand logos, color hex codes, fonts, brand language & tone, product offerings, videos intros & highlights, production templates, website banners, and more.\n\nFor stacker news, I put together what is just the beginning of a suite of promotional tools that can be used by writers, websites, blogs, social media influencers, podcasters, YouTubers, and even as print media. We will expand this as needed through iteration, community contributions, and zaps. \n\nUse this media kit at your discretion to drive traffic to your favorite territory, profile page, favorite post, or even just your own referral link to SN home feed.\n\nIf you would like to add to this media kit, please let me know. In FOSS fashion, I want us all to build this. \n\n# Brand Logo\nWe need official png files of the "SN" logo as well as "Stacker News" logo. Can someone upload hi-res logos in the comments? \n\n@k00b @ek\n\n---\n# Brand Language\nThis is up to the owners but here's some lingo that I propose. Again, since nobody can stop you from making up your own catch phrases, I welcome any contributions you might have for any brand language. \n\nStacker.News \nDo Work. Earn Sats.\n\nStack News.\nStack Sats.\n\nStacker.News\nEarn Sats.\n\nStacker News. It’s like Reddit but you earn sats.\n\nStack News.\nStack Memes.\nStack Music.\nStack Art.\nStack Movies.\nStack Podcasts.\nStack Sats.\n\n---\n\n# Brand Font\n\nIs there an official SN font that we should be using in all of our media? \n\n---\n\n# Color Hex Codes\n\nAs far as I can tell, these are the only hex codes that the site uses. Maybe k00b can confirm the exact hex codes and I can get them added to the next version. \n\nSN Yellow: `#f8da5e`\nSN Black: `#000000`\nSN White: `#ffffff`\n\n---\n\n# Website Banners\n\nThese banners are all just static banners and in limited sizes but as we grow and get more zaps, we can expand these and make them more targeted for each territory and niche. I just paid like $30 to have these made on Fiverr. If you want to make some for your own territory or niche, please feel free to make it happen and we can get the added to the media kit for everyone to use. \n\n![](https://m.stacker.news/59560)\n\n970 x 250\n\n---\n\n![](https://m.stacker.news/59561)\n\n728 x 90\n\n---\n\n![](https://m.stacker.news/59562)\n\n320 x 50 (Mobile)\n\n---\n\n![](https://m.stacker.news/59563)\n\n250 x 250\n\n---\n\n![](https://m.stacker.news/59564)\n\n300 x 250\n\n---\n\n![](https://m.stacker.news/59565)\n\n300 x 600\n\n---\n \nThat's it for now. I will do some outreach to get any bitcoin influencers and see if they're interested in adding a banner to their site. I will probably make an entirely new post about how we can do some outreach to actually get people to add links and banners to SN. \n\nPlease don't be shy. If you want to contribute to this media kit, please just comment with ideas, recommendations, images, brand lingo, etc. \N 20479 \N 423909 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.5703486452815 0 \N \N f 84219278 \N 1 216366015 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 197687 2024-07-10 10:24:00.923 2025-03-29 22:39:47.365 How many people are currently getting orange pilled 🍊💊? I recently wrote a post about\n> What is the best way to measure Bitcoin adoption? (https://stacker.news/items/645789)\n\nThought a little about it because this issue is really something I can't get out of my head.\n\nBasically my suspicion is that we have a case here of **stated preference vs revealed preference**. In a sense that people state a different method than they actually think is true.\n\nThis poll is about *getting* orange pilled. Not about *are* orange pilled. 1st derivative. That's why negative is an option. \N 21279 \N 197687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1890874974797 0 \N \N f 35294187 \N 1 140462251 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422505 2025-03-02 13:49:08.282 2025-03-29 22:39:47.359 The Lightning Network is a Settlement Layer - Toxic Rant #4 It has come to my attention that there are still many people who think that the Lightning Network was designed to give full instant payment access to everybody on the planet in a completely self-custodial way from now until the end of time. There are those in the bitcoin space who are using this fact to criticize the Lightning Network and spread fear, uncertainty, and doubt (FUD) and misconception.\n\nWhy these people, who never use Lightning, are so hell-bent on encouraging and spreading the false notion that the Lightning Network is dying/dead is beyond me. I suppose they just want you to hold in cold storage forever. I don't know.\n\nFirst, The Lightning Network is still new. It is progressing well. We have lots of developments coming, such as taproot channels, PTLCs, route blinding, and more. It is still early. And while it is fairly easy to start a node and open channels today, it will not always be like that.\n\nThis begs the question, "Okay, then what is the point of Lightning?" The Lightning Network will likely transition to be a settlement layer between various federations and institutions. As on-chain fees skyrocket over time to compensate for huge settlement transactions, the Lightning Network will likely facilitate smaller but still relatively large settlements.\n\nFor example, say a community wants to build a new road or bridge. The community uses a fedimint style system for their general spending needs, but to renovate or build a bridge is expensive. They will likely come together and use the Lightning Network to pay the builders federation for the project. Likely in various chunks as the project progresses, but this is how it will likely be used. The federation will have a lightning node, but not the individuals.\n\nThis is actually success in my book. The Lightning Network will have many uses beyond this, but the fun we are having now of running our own node, connected to Zeus, and buying a beer at Bitcoin Park will not last forever. As bitcoin becomes more and more scarce, 90% of the planet will likely get their first sats from working for it, not from selling their fiat for it. And these sats will come out of a federated system.\n\nTo add a toxic cherry on top, it is amusing how no one actually running a lightning node or using lightning successfully is complaining about Lightning to the extent that those who do not use Lightning or who do not understand Lightning are. I am not sure what their goal is, but damn if anyone knows, let me know.\n\nMy opinions are subject to change, but this is how I am feeling right now. I did not proofread.\n \N 16356 \N 422505 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5985870256297 0 \N \N f 12194128 \N 1 243474146 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 426736 2025-03-05 19:46:51.8 2025-03-29 22:39:47.361 SN Saturday Newsletter 6/1/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Summarizing my thoughts on ecash](https://stacker.news/items/556907)\n - Ecash is all the rage because unlicensed custodial transfer of someone else's penny is a crime and mobile lightning wallets can't send or receive offline. [@sethforprivacy](https://stacker.news/sethforprivacy) shares their sobering, nuanced thoughts on ecash.\n - 5.6k sats \\ 74 comments \\ [@sethforprivacy](https://stacker.news/sethforprivacy)\n2. [Why can't you buy ecash from a Cashu mint?](https://stacker.news/items/554143)\n - [@Scoresby](https://stacker.news/Scoresby) weighs the benefit of framing Bitcoin-backed ecash mints as privacy enhanced bitcoin custodians and tries another framing.\n - 27.4k sats \\ 135 comments \\ [@Scoresby](https://stacker.news/Scoresby)\n3. [Explain Lightning Network in a simple analogy](https://stacker.news/items/552822)\n - [@DarthCoin](https://stacker.news/DarthCoin) explains Lightning as a system of water vessels and pipes. Lightning is complicated, yet it resembles things we're all familiar with.\n - 4.7k sats \\ 19 comments \\ [@DarthCoin](https://stacker.news/DarthCoin)\n4. [CashApp has inactive LNAddress endpoints with npubs pregenerated for EVERY user](https://stacker.news/items/554100)\n - CashApp appears ready to announce nostr zappable lightning addresses. (But, [they aren't pregenerating npubs](https://stacker.news/items/554100?commentId=554486).)\n - 3.4k sats \\ 24 comments \\ [@bitcoinplebdev](https://stacker.news/bitcoinplebdev)\n5. [Bubbles to live in](https://stacker.news/items/551441)\n - Moderns suffer from an unprecedented [convection](https://en.wikipedia.org/wiki/Convection_(heat_transfer))-like exposure to strangers, rivals, enemies, and information. [@elvismercury](https://stacker.news/elvismercury) is determined to not get cooked.\n - 21.5k sats \\ 29 comments \\ [@elvismercury](https://stacker.news/elvismercury)\n\n##### El Salvador trip report\n\n[@leo](https://stacker.news/leo) takes us on his trip to El Salvador. He travels to San Salvador, Berlin, El Tunco, and El Zonte trying to use Bitcoin wherever possible.\n\n- [El Salvador Trip report - 7/8](https://stacker.news/items/558439)\n- [El Salvador Trip report - 6/8](https://stacker.news/items/557324)\n- [El Salvador Trip report - 5/8](https://stacker.news/items/556162)\n- [El Salvador Trip report - 4/8](https://stacker.news/items/554892)\n- [El Salvador Trip report - 3/8](https://stacker.news/items/553669)\n- [El Salvador Trip report - 2/8](https://stacker.news/items/552530)\n- [El Salvador Trip report - 1/8](https://stacker.news/items/551461)\n\n##### Don't miss\n- [Announcing Harbor: an ecash desktop wallet for better bitcoin privacy](https://stacker.news/items/556754)\n- [The Fight for Bitcoin with Ben Carman & Tony Giorgio — What Bitcoin Did](https://stacker.news/items/554029)\n- [Mutiny Wallet - Full Tutorial From Basics To Advanced](https://stacker.news/items/558058)\n- [Wars, Separation of Money & State](https://stacker.news/items/555662)\n- [MT Gox Coins on the Move ](https://stacker.news/items/553644)\n- [Trump says he will commute Ross Ulbricht's sentence](https://stacker.news/items/551386)\n- [Bitcoin and Morals: a reflection on our culture.](https://stacker.news/items/552183)\n- [Hal Finney Essays: The Beauty of ECash](https://stacker.news/items/556397)\n- [Clams: Accounting Software for Bitcoiners](https://stacker.news/items/552799)\n- [A scary experience verifying my seed phrase backup](https://stacker.news/items/552015)\n- [My little miner just hit two blocks in less than 24h on OCEAN](https://stacker.news/items/553333)\n- [Writing software: robustness vs being exact](https://stacker.news/items/557542)\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Misconceptions.](https://stacker.news/items/553354)\n- [Who posses the highest/best form of 'intelligence' a.k.a. Sarcasm on SN?](https://stacker.news/items/555836)\n- [Last Comment Wins](https://stacker.news/items/554962)\n\n------\n\n##### Top Stackers\n1. [@grayruby](https://stacker.news/grayruby): 79.3k sats stacked\n2. [@Rsync25](https://stacker.news/Rsync25): 69k sats stacked\n3. [@Undisciplined](https://stacker.news/Undisciplined): 66.7k sats stacked\n4. [@Coinsreporter](https://stacker.news/Coinsreporter): 48.9k sats stacked\n5. [@k00b](https://stacker.news/k00b): 47.2k sats stacked\n\n------\n\n##### Top Spenders\n1. [@k00b](https://stacker.news/k00b): 132.3k sats spent\n2. [@grayruby](https://stacker.news/grayruby): 58.7k sats spent\n3. [@Undisciplined](https://stacker.news/Undisciplined): 52.3k sats spent\n4. [@TNStacker](https://stacker.news/TNStacker): 31.1k sats spent\n5. [@anipy](https://stacker.news/anipy): 20k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 370 days\n2. [@kepford](https://stacker.news/kepford): 313 days\n3. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 267 days\n4. [@elvismercury](https://stacker.news/elvismercury): 264 days\n5. [@Undisciplined](https://stacker.news/Undisciplined): 249 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 900 \N 426736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.97466995661622 0 \N \N f 20404069 \N 1 248870753 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2483 2022-10-13 21:16:19.864 2025-03-29 22:39:47.363 Pizza for sats in Perth, Australia I recently spent a couple of weeks in Perth for business and pleasure. Naturally, before my arrival I checked to see what bitcoin activities I could get into. Through some googling, I learned of a small but growing bitcoin-only presence here, and found myself in a Perth bitcoin-only telegram chat.\n\nWere there any known locations to spend sats?\n\nTo my surprise, an owner replied to tell me about his pizza shop.\n\nThe wonderful shop is located in a suburban part of Perth. "Il Falco" is a beautiful property with a thoughtful and practical layout, but—as pizza places go—Il Falco feels like fine dining. The ambience, lighting, and decor all feel upscale. \n\nAs I walked through large glass doors, the first thing I noticed was their huge pizza oven. Five pizzas were baking on the large, rotating, pizza stone inside, getting all crispy and bubbly. An extensive wine and beer list includes mostly local options. Their "Specials" board offered pizzas and wine. I chose a pie with ingredients I didn’t understand at all: La stefanino, Nonnas sugo, pecorino, fior di latte, meatballs, basil, parmesan. Recognizing the last three was good enough for me, so I ordered it and the one beer on tap; a local lager from Shelter Brewing.\n\nNow for the moment of truth; I was excited to ask a question I’ve asked elsewhere, because this time I already knew the answer; “Can I pay with bitcoin?”\n\nRight away, the man behind the counter said "Absolutely!"\n\nWhat a good feeling. He did need help from a lady experienced with their bitcoin POS; a second iPad with bitcoin options. She explained that the onion browser was linked to the owner's self-hosted BTCPayServer with Wallet of Satoshi as a backup, which made sense to me.\n\nQuickly generating a lightning invoice, she flipped the iPad over for me to scan with my already open Phoenix wallet. Seconds later, I had sent 49,248 sats. Success! I waited for my beer and pie at a table with a large bottle of tap water and glasses. \n\nI spend bitcoin semi-regularly. I met a chicken farmer while playing poker back home, and set up a bi-weekly egg delivery for sats. A few Farmers Markets where I’m from have stands willing to accept bitcoin. There’s a wine speak-easy near me that accepts sats.\n\nIl Falco was my first experience with an established brick and mortar business that takes sats. What a surreal feeling; with the massive grin on my face, I’m sure I looked like a creepy idiot, sitting alone, surrounded by other pizza lovers, dwelling on what had just happened. I wondered if anybody else was a bitcoiner, and kept an open ear for the word "bitcoin" to drop in casual conversation...\n\nNo luck; wishful thinking perhaps?\n\nI couldn’t help but think about the magical thing happening here. The owner—"Doc," they call him—is exposing people to bitcoin use in a passive and effective way. His entire staff knows they accept bitcoin, but only a select few seem to know how. That’s going to change quickly as the number of bitcoin requests inevitably increases.\n\nNon-bitcoiners, seeing bitcoin used for its intended purpose in the real world; staff and guests alike… Brilliant! Orange-pilling without saying a single word. Bitcoin—when used correctly—speaks for itself, and the IL Falco pizza shop is proof. I asked the lady who helped make the transaction how often people use bitcoin here? Her answer surprised me; about one per week.\n\nIf you’re ever in Perth, Il Falco is a "must visit." Practice using your bitcoin. Show others how it’s done. Promote the network, and get amazing service and pizza in return.\n\n\n![](https://m.stacker.news/50768)\n\nHere is my pizza and beer, my camera is terrible sorry. \n\n![](https://m.stacker.news/50769)\n\nI noticed a couple colored slices of pizza on the wall and asked if I could make one. \n\nHere are some ways you can check out IL Falco for yourself!\n\nhttps://www.ilfalco.com.au/\n\n\nhttps://www.instagram.com/ilfalcopizza/\n\nnpub124uyyn6fag6e0u33p0jz7y6skz57d4c9efuwfc75ztu2f7gyrjmqg3c35c\n\n25% sats forwarded to @DuncanCaryPalmer who helped me edit and proofread. Also a new SN member! \N 16456 \N 2483 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.58282423236206 0 \N \N f 522579182 \N 3 145904610 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416628 2025-02-25 18:11:09.595 2025-03-29 22:39:47.363 2.9 billion hit in one of the largest data breaches ever — full names, addresses \N https://www.tomsguide.com/computing/online-security/29-billion-hit-in-one-of-largest-data-breaches-ever-full-names-addresses-and-ssns-exposed 5757 \N 416628 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.35473737986518 0 \N \N f 364834424 \N 2 200573200 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424309 2025-03-04 00:35:01.745 2025-03-29 22:39:47.363 I'm Matt Hill, CEO of Start9. July 4th AMA! Hey everyone, I'm Matt Hill, Co-Founder and CEO of Start9.\n\nStart9 is the team behind EmbassyOS - the most advanced, secure, and reliable personal server OS in the world, enabling anyone to run their own Decentralized Web Node. At Start9, our goal is to eliminate the need for trusted third parties in the human/computer relationship. We believe that the future of personal computing is sovereign individuals running open source software on commodity hardware, connecting on P2P networks without permission.\n\nToday, EmbassyOS seamlessly accommodates Bitcoin, Lightning, password management, cloud data, P2P messaging, federated social media, and more. In the future, it will facilitate the private operation and coordination of sovereign fleets of Internet connected devices and also serve as the backbone of the Internet itself through mesh networking.\n\nI am a developer by trade and team lead at Start9. I believe passionately in our mission and have devoted my life to manifesting individual liberty through education and technology. Feel free to ask me anything about anything, Start9 related or not. Topics I know well include:\n\n- @start9labs and EmbassyOS\n- Bagel baking 🥯\n- Plastics recycling ♻️\n- Elite running 👟\n- Objectivism 🤔\n- #Bitcoin\n- Decentralized Web Nodes 👨‍💻\n- PWAs 📱\n- Robot servants 🤖\n- Programming in #Angular\n- Books & movies 📘🎬 \N 5806 \N 424309 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.39419527915957 0 \N \N f 218446737 \N 2 196195873 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435544 2025-03-12 19:16:49.417 2025-03-29 22:39:47.363 Blackrock's gameplan Seems very simple to me.\n\n1. ETF approved. Billions stream into the ETF.\n2. ETF terms say black rock can decide which fork to follow if/when there is a fork.\n3. Blackrock lobby/spearhead a KYC/Censorship version of bitcoin. Bitcoin forks.\n4. Blackrock choose to keep the btc in the KYC fork, and sell all their billions in coins in the legacy non-kyc chain.\n5. Legacy bitcoin tanks because of the billions being dumped. Media, et. All join the party.\n6. Legacy bitcoin keeps going up, original btc tanks, so people pile on the kyc fork.\n\nI know this has happened I'm the past, but it never happened with the resources of BLACKROCK to back the fork. That and their institutional pull in capital markets.\n\nAlso, with billions I'm legacy btc, Blackrock can dampen price for years, this doesnt have to happen quickly.\n\nAlso note: Blackrock owns MicroStrategy. Blackrock owns major miners.\n\nPlease tell me how I am wrong, because no one else seems to be worried here. \N 679 \N 435544 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 28.0158914900144 0 \N \N f 196350254 \N 1 248418892 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 18:16:13.079 f \N \N \N 0 0 0 0 1 0 0 428684 2025-03-07 14:03:31.762 2025-03-29 22:39:47.364 Bitcoin is my pension plan while i pay my contributions into my UK pension, i view getting it as a bonus, not a given. let's be honest, in the UK the pension age is already almost 70, the workforce and birthrates are shrinking and who is going to pay for all those future pensioners? the pension system is ponzi-like in nature.\n\nthen of course if the gov expects you to work until , say, 70, how many people want to hire over 50s, let alone 60+? how many people are physically or mentally even up to most jobs at that age?\n\ni don't expect the gov to out-right cancel pensions because it would be political suicide, but given the harsh facts, they are going to, at a minimum, fuck around a lot more - whether that means cutting the amounts, raising the age or doing something else shitty.\n\nand this is something that will impact most countries because it seems like they all have birthrate problems.\n\nthat's why I see bitcoin as my pension savings, i control it, it can't be devalued, it can't be taken away from me. if more of a circular btc community starts to pop up, then i would just do spend and replace.\n\nwhere most fiat currencies have a 27 year life span, i feel like, at least in the western world, we;re in a managed decline and i dont see a better or safer way out than btc.\n\nany of you see btc as a possible pension pot? \N 917 \N 428684 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 20.0646035544488 0 \N \N f 404782864 \N 2 67691905 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 456613 2025-03-27 17:43:58.432 2025-03-29 22:39:47.365 Taproot Channel Transactions \N https://ellemouton.com/posts/taproot-chan-txs/ 21114 \N 456613 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 22.4759965659264 0 \N \N f 169715040 \N 1 72143636 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444236 2025-03-19 18:25:53.156 2025-03-29 22:39:47.368 Block's Bitkey "Hardware Wallet" will Violate your Privacy and Security \N https://www.zherbert.com/bitkey/ 8841 \N 444236 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.25262183371364 0 \N \N f 389661920 \N 3 36881509 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 401824 2025-02-13 12:12:37.773 2025-03-29 22:39:47.361 New Lightning Use Case Unlocked A couple months ago I launched [Bookmarked ](https://www.bookmarked.club/)as a library of book recommendations from interesting people.\n\nEach book recommendation requires collecting a lot of data from different sources. Books all have images, genres, synopses, and people recommending books may share their recommendation on Twitter, on YouTube, on podcasts, or even in the foreword of the book itself.\n\nTo streamline this data collection process I’ve been working with [Stakwork](https://stakwork.com/) to build an automated workflow that can collect new book recommendations from interesting people faster than a human can.\n\nThis week we did our first test run, and I’m optimistic that it will continue to generate 10-100x cost savings at scale.\n\nThis week's workflow cost 1,358 sats (paid over Lightning) and saved me 30 minutes of data collection.\n\nThere are a number of steps in the workflow. Some rely on APIs to fetch and filter data, while other parts of the workflow send mini-tasks to be solved by human workers (ex. to determine whether someone’s mention of a book is an actual recommendation or simply a mention). \n\nPretty cool way to use Bitcoin to cut down on data collection costs and help me scale up the Bookmarked library. \N 5455 \N 401824 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.07574482648184 0 \N \N f 677120357 \N 6 174578163 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 451292 2025-03-24 13:33:11.736 2025-03-29 22:39:47.363 📢 AMA with gandlaf: Unveiling PROXNUT! Hey Stacker Community! It's gandlaf here. 🚀\n\nI'm thrilled to announce that I'll be hosting an Ask Me Anything (AMA) session about [PROXNUT](https://proxnut.com). PROXNUT is a Cashu proxy crafted to protect and monetize web resources, and I can't wait to delve deeper into it with you all.\n\n📌 What's PROXNUT All About? \nAt its core, PROXNUT integrates seamlessly with a Cashu, enabling users to access protected web resources using tokens. It's a bridge between content providers aiming to monetize their content and users who value it. The system works completely stateless and requires no accounts and no sign ups, and enables monetization of APIs, content and more, with privacy by default. \n\n📅 Date & Time: Drop your questions now! I will be answering them tomorrow from 08:00 till 11:00 AM CEST \n\n📍 Where: Right here on stacker.news!\n\nWhy Join the AMA? \n- Behind-the-Scenes: I'll share the inspiration behind PROXNUT and the challenges during its development.\n- Direct Answers: Have questions or feedback? I'm here to address them all.\n- Peek into the Future: Discover what's next for PROXNUT and how you can be a part of its journey.\n\nHow to Participate: \n1. Save the date for our AMA.\n2. Think of any questions or feedback about PROXNUT.\n3. Join the conversation and let's engage!\n\nFor more insights, check out the [PROXNUT website](https://proxnut.com) and our [GitHub Repository](https://github.com/gandlafbtc/proxnut).\n\nI genuinely believe PROXNUT can redefine the way we approach web resource monetization. Whether you're a fellow developer, a content creator, or just curious, I'm eager to chat with you!\n\nSpread the word, and let's make this AMA a knowledge-packed session! 🎉\n\nCatch you soon, \ngandlaf\n \N 13406 \N 451292 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 29.1449246475352 0 \N \N f 687017352 \N 4 215047134 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 404068 2025-02-15 13:51:46.747 2025-03-29 22:39:47.363 Balaji Srinivasan’s “Network States” I’ve been reading into Balaji’s [Network States](https://thenetworkstate.com/) idea lately, and personally believe this is a new frontier for certain types of communities over the coming decades.\n\nThe idea of pooling the resources of like-minded individuals to establish new types of states seems far more likely to succeed than trying to shape the world using the existing two-party political system.\n\nOn that point, I suspect many Bitcoiners agree. Balaji also talks about using Web3 identity verification as a digital passport, which I suspect many Bitcoiners are not aligned with today.\n\nCurious to get a heat-check from the SN community… a few questions:\n\n- Have you heard of Network States?\n- Have you studied Balaji’s writing?\n- Are you in favor of or against any particular concepts Balaji brings up?\n- What might a “Bitcoiner Network State” look like? \N 7847 \N 404068 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 14.4375986149005 0 \N \N f 391005726 \N 2 141079219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 192644 2024-07-01 12:12:25.504 2025-03-29 22:39:47.363 How to Solve the Hardware Issue in Bitcoin Circular Economies/Countries? Hi All - A few years back when I visited El Salvador on Bitcoin day, it was very exciting to see people adopt a Bitcoin where they previously didn't have bank accounts. Please note I haven't been in a couple years, so things may have changed, but I'm sure this issue is will occur in other places around the world. \n\nEverything went decently, and at the time one of the issues was some people didn't have good phones to accept/send Bitcoin. Some didn't have good service as well. \n\nI've been thinking about this, there are potentially other countries out their that would consider adopting Bitcoin from a legal tender standpoint, but they don't as a percentage of their population doesn't have a reliable cellphone or network connectivity. \n\nI tried paying this musician in El Tunco, and unfortunately, I couldn't scan the QR code because her screen was cracked. She had the wallets, she knew how to receive, but I couldn't scan. There are many more individuals like this in the developing world who want to participate but don't have the money for a reliable smartphone. I had another vendor that didn't even have a smartphone so I had to pay in dollars. They make a few bucks a day. \n\nWhat could be done to get individuals the tech to be able to transact with Bitcoin but don't have the funds? As for the connectivity, Starlink wasn't around at the time - and I believe this may solve a lot of these issues. I think this is a real hurdle to consider, but something that isn't impossible to solve with so many secondhand phones being discarded in America that are perfectly fine. How can the flow of these discarded phones be redirected towards "Bitcoin Countries"? \N 20509 \N 192644 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1829948878332 0 \N \N f 198321621 \N 1 25135282 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:38:06.28 f \N \N \N 0 0 0 0 1 0 0 415015 2025-02-24 13:21:39.431 2025-03-29 22:39:47.365 In 5 years will you be making more on-chain transactions or fewer? Over the last six months, it felt like my goal was to avoid the chain as much as possible. Now fees are coming down a bit, I don't mind so much. But it made me wonder: what do I think it will be like in five years? \N 11527 \N 415015 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.57098703948438 0 \N \N f 10129097 \N 1 162090850 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442588 2025-03-18 17:08:57.106 2025-03-29 22:39:47.363 AMA - Stratum V2 SRI team, yesterday we released an important update 1.0.0! Hello everyone,\n\nWe are SRI (Stratum Reference Implementation).\n\nAn independent, community run, 100% free and open-source reference implementation of the Stratum V2 protocol. \n\nYesterday, after nearly 3 years of work, we've released an important update, bringing Stratum V2 from theory to reality. \n\nhttps://x.com/StratumV2/status/1770937873111331309?s=20\n\nHere are @pavlenex,@lorban, @GitGab19 and @plebhash from the team, happy to answer any questions around Stratum V2. \n\nFeel free to ask anything! We'd love to answer any technical, non-technical, wine choices or good food recommendations! \N 660 \N 442588 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 0.303456820772823 0 \N \N f 399341361 \N 3 239541798 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407083 2025-02-17 18:58:17.1 2025-03-29 22:39:47.37 On May 3rd, 2024, @PhoenixWallet will be removed from US app stores. \N https://twitter.com/PhoenixWallet/status/1783878658014249027 20606 \N 407083 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 0.768479206961707 0 \N \N f 8923432 \N 1 47931760 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 354366 2025-01-03 01:06:22.094 2025-03-29 22:39:47.371 Maker's Schedule, Manager's Schedule Was thinking about this blog post recently and decided to reread it. I'm in a time now where I have less meetings than ever and am really trying to optimize my building/focus time.\n\nWhat do you think about the approach of blocking off huge 4-5 hour time chunks into one programming sessions vs breaking into smaller chunks throughout the day? https://paulgraham.com/makersschedule.html 634 \N 354366 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.20953710108525 0 \N \N f 119367868 \N 1 132594787 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424448 2025-03-04 05:40:59.474 2025-03-29 22:39:47.373 ODELL accuses Saylor of threatening ETFs for Funding Open Source > ONE OF THE BIG ETFS WAS GOING TO DONATE TO OPEN SOURCE DEVS.\n\n> SAYLOR TOLD THEM IF THEY DID IT HE WOULD CRUSH THEM SO THEY PULLED OUT OF THE COMMITMENT. https://primal.net/e/note1snfrj747huaw8kn4yyd7tjfljhqxcydetuj0yfmjk04hdm6hmr9qcum039 13042 \N 424448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0813341510006 0 \N \N f 54494768 \N 1 38756842 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456935 2025-03-28 01:32:10.663 2025-03-29 22:39:47.373 I'm Sergej Kotliar, CEO of Bitrefill. AMA. I am Sergej Kotliar, CEO of Bitrefill. AMA\n\nHi everyone! I’m [@ziggamon](https://www.twitter.com/ziggamon), Founder and CEO of [Bitrefill](https://www.bitrefill.com). Bitrefill is the world’s number one answer to the question “but what can I actually buy with my bitcoin?”\n\nWe’re a distributed team of 51 awesome individuals, working our asses of on our big vision: creating a circular economy for bitcoin, a world in which it’s possible to live your life on Bitcoin and cut the cord (and the card) to the old banks!\n\nWe sell gift cards that you can use to buy anything you want online. We also let you refill your prepaid phone all over the world, and if you live in the US or El Salvador we allow you to pay all of your bills with bitcoin. \n\nWe’ve been a pioneer in Lightning, were the first merchant to accept lightning and are still the number one place where people go to spend their Lightning sats.\n\nIn the past year we’ve also been doing a big effort in El Salvador, trying hard to get a circular bitcoin economy going there. \n\nTopics to ask me about:\n\n* Bitcoin\n* Bitrefill\n* Circular economy\n* Lightning\n* Bitcoin users\n* El Salvador\n* Running a distributed company\n\nAnd probably much more!\n\nLet’s roll! 🚀\n \N 1221 \N 456935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29728278436592 0 \N \N f 112322181 \N 1 58040630 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 364096 2025-01-10 19:51:44.119 2025-03-29 22:39:47.374 What would you build with an escrow API? I've been diving deep into the capabilities and potential applications of the BitEscrow API [link](https://BitEscrow.dev) recently and it's sparked an intriguing question in my mind: What innovative, disruptive, or just plain interesting projects could be built leveraging this technology?\n\nIf you’re not familiar, Escrow services provide a neutral third party to facilitate secure transactions, holding funds until all parties meet the terms of a given agreement. The integration of Bitcoin into this process not only decentralizes it but also introduces a level of transparency, security, and efficiency previously unattainable with traditional financial systems.\n\nHere are a few thought-starters:\n- A global marketplace for freelancers, ensuring payments are secure and only released upon approved deliverables.\n- A crowdfunding platform for startups and social causes, releasing funds only when specific milestones are achieved.\n- An alternative to stockX, where the verification of luxury goods is not only way better, but delivery of funds and goods are way faster. \n\nBut I believe the surface has barely been scratched. The potential uses go far beyond these initial ideas, especially when considering the global reach of Bitcoin and its capacity to execute transactions across borders with ease.\n\nSo, I'm reaching out to the SN community: Given the opportunity, what would you build with an escrow API? How do you envision using this technology to solve existing problems, create new opportunities, or even disrupt traditional industries?\n\nLooking forward to your creative ideas, insights, and perhaps even starting some collaborative projects!\n\nBest idea gets 1000 sats. \N 981 \N 364096 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 14.4560816135186 0 \N \N f 162039967 \N 1 176507504 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 08:08:44.593 f \N \N \N 0 0 0 0 1 0 0 414984 2025-02-24 12:55:46.964 2025-03-29 22:39:47.374 LNbits release a new amazing extension: Market! This is an amazing news from LNbits!\nNow you can setup in few click a new online shop selling all your products, even anonymously.\n\nYou could start testing it on the live demo LNbits instance, but is recommended to run your own LNbits instance. \n\nSee more guides here:\n- [Getting started with Lnbits](https://darthcoin.substack.com/p/getting-started-lnbits)\n- [Build your own LNbits app server](https://darthcoin.substack.com/p/build-your-own-lnbits-app-server)\n- [The LNbits Bank](https://darthcoin.substack.com/p/the-bank-of-lnbits)\n- [LNbits for small merchants](https://darthcoin.substack.com/p/lnbits-for-small-merchants)\n- [LNbits on Umbrel node](https://darthcoin.substack.com/p/umbrel-node-lnbits)\n\nHow to start your own [LNbits Market](https://github.com/lnbits/lnbits/tree/main/lnbits/extensions/market) shop in few steps:\n1. Create Shipping Zones you're willing to ship to\n2. Create a Stall to list your products on\n3. Create products to put on the Stall\n4. Done! Publish your shop online and start taking orders. [Here is an example](https://legend.lnbits.com/market/stalls/Qmwe29fFGByTGXRarHLFqt).\n5. Includes chat support! \N 1060 \N 414984 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.0352916542556 0 \N \N f 248357256 \N 3 176053687 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421549 2025-03-01 18:30:28.497 2025-03-29 22:39:47.375 Feature idea: turn off exponential pricing to encourage long-form writing ### Background\n\nI'm interested in thinking about how SN, or at least, the SN software and the incentives that it provides, could be used in service of content creation / community formation. In a [previous post](https://stacker.news/items/306665) I raised the idea of making posts perpetually editable by their authors, while maintaining an edit history. The hypothesis was that this would unlock a different kind of content, specifically, [evergreen content](https://notes.andymatuschak.org/Evergreen_notes). Some thoughtful discussion ensued, so if you're interested in the topic, check it out.\n\nIn that spirit, here's another idea.\n\n### Removing exponential comment pricing\n\nWhat if SN removed the exponential comment pricing for a post's own author? In other words, right now, each successive comment you make to a post (even your own post) within a certain temporal window (10 mins, I think?) costs an order of magnitude more sats. This is a sensible policy to impose a cost to spamming. But rescinding it, at least initially, on your own posts could unlock another use case.\n\n### Encouraging long-form writing\n\nInspired by some of the excellent longform writing that has recently appeared on SN (some nice examples on [gold and 6102](https://stacker.news/items/275618), [Starlink](https://stacker.news/items/286873), and [energy grids](https://stacker.news/items/281307)) I've been wondering if I could use SN incentives to work on some longer drafts of my own pieces, and that could benefit from targeted feedback and commentary to help develop them. The idea would be to break a longer piece into logical chunks, where a chunk could be some number of paragraphs. I could create a post, where the actual body of the draft appeared as a number of chunks made as comments.\n\n### Unlocking micro-feedback and incentives\n\nThe interesting idea here is that, using this technique, I could get feedback on a per-chunk level; and not only feedback, but I could potentially get a sense of which of the chunks stackers were most interested in / enthusiastic about, via zaps. If a chunk was zapped with 10k sats, it would be clear that there was something compelling about it, even if it elicited no other comment. This granularity in response would be good for writers, who could get a better sense of what readers were responding to. But it would also help engagement in general, as it's much easier to have a lively discussion about smaller chunks of content than it is about a monolithic essay.\n\nWithout exponential pricing, deploying long-form writing in chunks would be a bit unwieldy, but not _too_ bad. With the current exponential pricing, however, pieces of non-trivial length require real commitment to post chunkwise -- for drafts more than a few paragraphs long, suddenly you're talking real money; or else you'd have to incrementally roll out the chunks over the course of hours. Probably that's enough friction not to bother with.\n\n### Risks and mitigations\n\nWithout exponential pricing there's a potential risk of a user DOSing SN, I guess, by posting infinite comments. A mitigation might be to require a refundable bounty to turn off exponential pricing for a short time, a bounty SN could seize in the case of abuse; combined with a non-trivial limit (e.g., no more than 50 comments allowed before the exponential pricing comes back online).\n\n### Discussion\n\nAny thoughts on this idea? If you're a writer, do you think you could use a feature like this to your benefit? If you're a reader, do you think it would make posts more interesting to engage with?\n \N 10273 \N 421549 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 5.45057925625528 0 \N \N f 311937091 \N 2 237251989 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 425699 2025-03-05 04:37:20.403 2025-03-29 22:39:47.363 SlushPool(Braiins) is dying. Here's how to save it TLDR: Lightning payouts will save SlushPool (braiins)\n\nSlushpool will never be a top 30% hashrate pool, and that's fine but it could be a 5-10% pool again if it adopted a lightning payout function. Their biggest mess-up was trying to compete with foundry and antpool, when they should have stuck to their original mission to begin with: A pool for the plebs. Plebs are not running more than a few machines, likely on residential electricity rates, or maybe a small hashhut. \n\nHowever, with difficulty screaming higher, many are turning off their S9 machines. Not because they want to, but because it takes far too long to get enough sats to withdraw on-chain. This is where lightning comes in. Imagine running your S9 and getting paid out every 24 hours via lightning. Now think about all of the hash that all of the unplugged S9s would be if added together. This number is actually substantial and is sitting on the table waiting for a pool to accept them. \n\nI have no idea what slushpool was thinking over the last 3 years but it is not too late to be a pool for the people again. I want to see people plug in their S9s and get paid more than once a year. This is how you do it. And the best part of lightning payouts is the infrastructure isn't even expensive. Slushpool could run a node with Voltage for just $200/mo with a clearnet IP and have full access to the entire LND API for payouts. Many companies already use Voltage for similar things (such as rewards payouts, the bitcoin company, etc.). \n\nLet's do the math real fast... Current hashrate is 607.78EH/s\n\nThere are 131,000,000 housholds in the US. \nA typical S9 is 13.5 TH/s. Only 45,000,000 households need to run 1 S9 miner to equal the current TOTAL bitcoin hashrate of 607 EH/s. \n\nI am not saying every household will run an S9, I am just saying that S9s ADD UP!!!!! Letting S9s shut down is the worst decision, and a pool with LN enabled payouts to LN address or keysend is LONG OVERDUE. Braiins is going to die unless it adopts lightning payouts, which is extremely cheap to do. \n\nI am not sure if anyone at braiins will see this, but if you know anyone that works there please share with them, or share wherever you can. Lightning payouts need to be a thing. And fast. \n \N 2204 \N 425699 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.48904798350933 0 \N \N f 86716772 \N 1 174919681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447121 2025-03-21 16:22:25.767 2025-03-29 22:39:47.37 Samourai Indictment Count Two Could Have Serious Implications For All Wallets \n\n### Money Transmitter Definition\n\nRodriguez and Lonergan Hill are charged in Count 2 with operating an Unregistered Money Transmitter Business. Under U.S. federal law, a money transmitter is defined as a service that provides\nmoney transmission services. This means that the entity is accepting currency, funds or\nother value from one person and transmitting it to another location or another person by any means. The only exception to this rule is when purchasing an item from a vendor. Various federal regulations have stated that that the definition of money transmitter includes the acceptance and transmission of other value that substitutes for currency, including cryptocurrency.\n\n### The Indictment\n\nHere is the actual language from the indictment\n\n\n> COUNT TWO\n(Conspiracy· to Operate an Unlicensed Money Transmitting Business)\nThe Grand Jury further charges:\n> 31. The allegations contained in paragraphs 1 through 28 of this Indictment are\nrepeated and realleged as if fully set forth herein.\n> 32. From at least in or about 2015 up to and including in or about February 2024, in the\nSouthern District of New York and elsewhere, KEONNE RODRIGUEZ and WILLIAM\nLONERGAN HILL, the defendants, and others known and unknown, willfully and knowingly\ncombined, conspired, confederated, and agreed together and with each other to commit an offense\nagainst the United States, to wit, operation of an unlicensed money transmitting business, in\nviolation of Title 18, United States Code, Sections 1960(b )(1 )(B) and (b )(1 )(C).\n> 33. It was a part and object of the conspiracy that KEONNE RODRIGUEZ and\nWILLIAM LONERGAN HILL, the defendants, and others known and unknown, would and did\nknowingly conduct, control, manage, supervise, direct, and own all and prut of an unlicensed\nmoney transmitting business, which affected interstate and foreign commerce, and (i) failed to\ncomply with the money transmitting business registration requirements under Section 5330 of Title\n> 31, United States Code, and regulations prescribed under such section, and (ii) otherwise involved\nthe transportation and transmission of funds that were known to the defendants to have been\nderived from a criminal offense and were intended to be used to promote and support unlawful\nactivity, to wit, RODRIGUEZ and HILL conducted, controlled, managed, supervised, directed,\nand owned all or part of Samourai, a business that transferred funds on behalf of the public, without meeting the Federal registration requirements set forth for money transmitting businesses...\n\n### Conclusion\n\nPutting aside the mixing aspects of the Samourai Wallet, the indictment clearly considers the act of owning the wallet a violation of the law, because it operates without a Money Transmitter license. I'm not saying the U.S. government would choose to prosecute all wallets, custodial or otherwise, but it is clear that they believe they could. \N 6463 \N 447121 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.2965872490309 0 \N \N f 265710256 \N 3 186019841 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:11:12.048 f \N \N \N 0 0 0 0 2 0 0 3562 2022-11-06 17:37:49.157 2025-03-29 22:39:47.371 A Small Warning For Umbrel Users *tldr: Don't use Umbrel to store important data like photos, docs, media etc*\n\nAs noted in other SN posts, [Umbrel](https://umbrel.com/) have just released their new hardware which we must admit, looks pretty sick. Is it good value for money... well that depends on how good you are with building your own PC's. For us, we've been building PCs for literally decades now so we could absolutely build something better for the price tag. We're very aware that many don't have the skill or time to deal with it though, so a "premium" plug-and-play node is totally fine too. Each to their own 🙂\n\nFor now though, let's put the "value" aside and just look at the system as a whole. To begin with, we're BIG Umbrel fans. Have run their software for years on multiple hardware platforms, it's amazing. But. We had to write a small warning for those that are not as technical and who might be looking at getting one.\n\nOur main concerns revolve around using an Umbrel Home as a "home server". A place to store all your documents, media files, family photos etc. Essentially, using it exactly as Umbrel advertises you can use it. These are our main concerns:\n\n**Data Storage**\nIt has a single 2TB drive. That's it. That's 1,862GB of usable space after formatting. After you subtract the OS, Bitcoin, Lightning, Electrs apps it's 1,197GB. That's about... 200 4K movies. If you're really using this for an "ultimate home server" then it needs proper amounts of storage AND clear paths for upgradability. Sure, you can plug in USB 3 HDD's... but now you have multiple folders, multiple things to backup, things hanging off your node... it's not very elegant and a *huge* PITA trust us. The NVMe is great... but we would have expected at least two slots, possibly even 4 to make it an NVMe NAS!\n\n**Data Redundancy**\nThere's literally 1 NVMe... and no other slots. Super simple photo, docs and media apps are great, but what happens once you've "deGoogled" yourself, have all your family photos, tax docs and media on this (assuming you have less than 1.2TB of that stuff) and then.... the NVMe dies 😵 Game over. They're pushing self-sovereignty (which we 100% agree with and encourage) but aren't making their customers aware that part of taking responsibility for your data is managing drive failures. There's no software (or hardware really) for this that we can see. Modern NAS have multiple drives that are combined with RAID for proper redundancy. When a drive fails (and it WILL fail), you just swap it out. No down time. No lost data.\n\n**Data Backup**\nBack is different to Redundancy and there's also no 3-2-1 backup solution with Umbrel Home. They need something like [Synology's Hyper Backup](https://www.synology.com/en-au/dsm/packages/HyperBackup) to allows users to properly manage and automatically backup all their data across all their apps. They need snapshots, ransomware protection etc. While they say they have system settings backups coming later this year, backing up of your data seems to be completely ignored at this point.\n\n**Security**\nAccording to their [GitHub Repo](https://github.com/getumbrel/umbrel/blob/master/SECURITY.md), "Umbrel is currently in beta and is not considered secure". They note multiple concerning security holes and while it's good they're not hiding them... this new product feels like it shouldn't really be a "beta". If you're just mucking around with umbrelOS for fun, sure, no problems. If you're buying custom hardware storing TB's of private user data and who knows how many sats on it... it starts to get a bit sketchy.\n\nAs a Bitcoin Node, it's super simple and something we'd highly recommend as it helps your privacy and security immensely. But while it has the software apps for things like Plex, NextCloud, PhotoPrism etc... the underlying management of all that user data is essentially non-existent making it VERY dangerous to use, especially for less technical people who aren't aware. Also trust us... you're gonna need more than 1.2TB of space!\n\nWe really hope Umbrel address these issues fast as otherwise users will be the ones suffering. Loss of data like family photos, business files or access to your sats is not fun!\n\nStay safe and sovereign 🤙 \N 5904 \N 3562 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 24.0850528276716 0 \N \N f 120294690 \N 1 213402331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 419062 2025-02-27 15:15:52.524 2025-03-29 22:39:47.371 NixOS, nix-bitcoin, and LN node setups Really just wanted to start nix-bitcoin fan thread. I recently switched my node over to a nixos machine and was able to get a second node running in a container on it really fast. It wasn't painless but man I'm really enjoying using nixos.\n\nHere's some things I used to get it going:\n- nix-bitcoin: https://nixbitcoin.org/\n- extra-container: https://github.com/erikarvstedt/extra-container (for managing the 'contained' node)\n\n\nHere's a snippet you can use to override the default CLN package version to get the most up to date version.\n\n```\nservices.clightning = {\n enable = true;\n package = pkgs.clightning.overrideAttrs (\n orig:\n let version = "v23.02rc3"; in\n {\n version = version;\n src = pkgs.fetchFromGitHub {\n owner = "ElementsProject";\n repo = "lightning";\n rev = "${version}";\n fetchSubmodules = true;\n sha256 = "sha256-xGttepiu6ds9+kUhUX+WavUs1yJ9V461SgMv+mWMzcE=";\n };\n configureFlags = [ "--enable-developer" "--disable-valgrind" "--enable-experimental-features" ];\n makeFlags = [ "VERSION=${version}" ];\n });\n\n```\n \N 18423 \N 419062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1412118522489 0 \N \N f 154223594 \N 1 128313655 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427251 2025-03-06 08:47:38.731 2025-03-29 22:39:47.372 Join Us Today for a Q4 Review + Q1 Roadmap Discussion (11am ET) Howdy, stackers!\n\nToday we're hosting our Q4 2023 Review + Q1 2024 Roadmap call to discuss all the latest developments and plans for Stacker News starting at 11am ET.\n\nToday's hybrid format will feature a live (and recorded) Vida call with @k00b, @ekzyis, and @kr to cover 4 high-level topics:\n- What was shipped in Q4 2023\n- What was adoption like in Q4 2023\n- What is planned for Q1 2024\n- How stackers can help out\n\nAfter the call, we'll transition to a roundtable discussion right on this thread for anyone to bring up questions, suggest new ideas, or give feedback on anything related to Stacker News. Feel free to share any questions here in the meantime, and they'll either be answered on the 11am ET call, or directly on Stacker News afterwards.\n\nVida link: https://vida.live/room/U5L0Pybn8\n\nSlide deck: https://docs.google.com/presentation/d/1Njq_lEYuSk8nxd84j57Ch7Ukb6TvxCbKOQs4a5rVUB8/edit?usp=sharing \N 21067 \N 427251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3016556915452 0 \N \N f 2700091317 \N 20 202744192 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 403198 2025-02-14 14:26:25.295 2025-03-29 22:39:47.374 Falling down the Bitcoin rabbit hole. I have yet to share my personal Bitcoin journey, but I believe now is the right time to do so. It marks the beginning of my descent into the Bitcoin rabbit hole and, much like the Bitcoin White Paper itself, my story is closely tied to the financial crisis of 2008. \n\nThis account is deeply personal, laced with self-pity and a sense of stupidity. That's why I've kept it private and not even shared it with my closest friends, but I think it's important to share it now with you. Giving back to a community I received so much in the previous years. All too often, those who fall victim to the shortcomings of the fiat system internalize the guilt, unaware that they are being taken advantage of by a corrupt fiat system.\n\nMy parents, hardworking individuals who dedicated their lives to building their own business from scratch, had little time to acquire financial education. In the early 2000s, they were advised — like many companies and individuals in Austria — to finance their company/house with a Swiss franc loan. The arrangement was complex and opaque, involving multiple loan accounts and significant commissions for both the bank and our financial advisor. My parents, trusting the system, unknowingly became entangled in a speculative gamble, exacerbated by the euro's introduction and the franc's relative strength over time. It turns out that debt in a strong currency and income in a rapidly depreciating currency have only one outcome: Default over time.\n\nAs a result of the financial crisis of 2008, the Swiss National Bank could no longer suppress the upward pressure on the franc in 2014 and the fallout was inevitable. Overnight, my family faced a substantially larger loan burden than initially anticipated, to threaten us to file bankruptcy and lose everything we worked for in the previous decade. This devastating turn of events — driven by corrupt banking practices and greedy financial advisors — left an indelible mark on me. As a young man, witnessing my parents' hard-earned savings and efforts eroded by a system they trusted was enough to cement my distrust of financial institutions forever. At this point in time I made a promise to myself: Trust no one, educate yourself and verify.\n\nA few years later, I discovered Bitcoin. It clicked immediately. Here was a decentralized, incorruptible solution to the very problem that had caused so much pain for my family. Bitcoin represented a chance to opt out of a fiat system riddled with perverse incentives and predatory practices. My family's experience — our suffering under the weight of a corrupt financial system — motivates me to advocate for Bitcoin adoption. For this reason, I will never trade my Bitcoin for fiat currency ever, no matter the fiat price. It represents more than wealth to me; it’s a symbol of resilience and justice, a way to honor the sacrifices my parents made.\n\nLooking back, I am almost grateful for this painful chapter of my life. It woke me up and set me on a path I might not have found otherwise. Many people experience similar losses at the hands of the fiat system without even realizing it because the theft happens incrementally, through inflation and hidden costs. Fact is, that honest, hardworking individuals are being robbed every day — second by second — by a system designed to erode their purchasing power over time. Like my parents, but more gradually.\n\nWhile it’s exciting to see Bitcoin’s fiat price increase, that is not its ultimate value. Bitcoin represents so much more. And I know, many others who HODL Bitcoin not for fiat wealth but for deeply personal reasons — reasons rooted in justice, independence, and freedom. For those of us who have been wronged by the current system, Bitcoin is not just an asset, it’s a revolution for a better future.\n\nYours forever thankful, Carl. 🧡 \N 13365 \N 403198 \N \N \N \N \N \N \N \N movies \N ACTIVE \N 26.4802218359455 0 \N \N f 237107022 \N 1 35097081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457162 2025-03-28 09:22:08.355 2025-03-29 22:39:47.374 how is fediment ecash different than tokens? still trying to wrap my head around the glories of fediment. in an effort to understand, i'm hoping someone can explain how sending my sats into a fediment and getting back tokens to be used internally to the fediment with other mint users is any different than, say, sending sats to another chain such as liquid and doing transactions there with other liquid users. i believe the idea is that i can non-custodially hold on to my tokens and redeem them back to sats through the federation when i want. however, if i'm holding sats and the mint(s) goes away, aren't i stuck with unusable tokens and the mint federation has my sats?\n\ni really do want to understand since many people i respect are into fediment. i just don't see the benefit. \N 18321 \N 457162 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 5.22429509882645 0 \N \N f 120538830 \N 1 91358491 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403388 2025-02-14 18:43:09.914 2025-03-29 22:39:47.375 BREAKING: BitEscrow API Beta Launch! 🥳 \N https://x.com/bitescrow_app/status/1753139070224486600 16442 \N 403388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8631789217459 0 \N \N f 179716895 \N 1 50017831 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435359 2025-03-12 16:11:18.36 2025-03-29 22:39:47.363 25% of Americans Can Barely Read (_The Economist_) I know it's a little bit of a meme-slash-joke-slash-social commentary in America (that schools are so bad the kids can't read). \nTurns out, it's akwschually true for the adults too. \n\n"Blame **TikTok**," or **demographics**, or **immigration**, of **reverse Flynn effect**: The hail-mary of explanations offered in _The Economist_ piece is quite extraordinary. \n\nPerhaps modern (fiaters?) peoples just suck? https://stacker.news/items/804582/r/denlillaapan \n> Roughly one-fifth of people aged 16 to 65 perform no better in tests of maths and reading than would be expected of a pupil coming to the end of their time at primary school, according to a study released on December 10th by the OECD\n\n![](https://m.stacker.news/67432)\n\nWhy bother doing anything hard? I mean, the fiat printer takes care of you and orange man has promised to make 'Murica great again. \n\nHere's the non-paywalled article: \nhttps://archive.md/gsyRj#selection-1057.476-1057.669 https://www.economist.com/finance-and-economics/2024/12/10/are-adults-forgetting-how-to-read 13216 \N 435359 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 9.28895851170829 0 \N \N f 1575507354 \N 13 181031541 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 14:00:48.609 f \N \N \N 0 0 0 0 5 0 0 433883 2025-03-11 13:39:36.286 2025-03-29 22:39:47.364 Unchained ends BTC collateral-backed loans to individuals (starting Jan 2024) _Email from Unchained:_\n\nYou are receiving this email communication because you have taken a bitcoin-backed loan through Unchained. Despite having originated thousands of consumer loans and the positive feedback we’ve received about the service while to this day experiencing zero loan losses, we have a significant update regarding the availability of this product for consumers.\n\n**Due to external requirements, new loan originations to individual borrowers will be paused beginning January 1, 2024. We will continue originating new loans for legal entities such as LLCs or corporations after January 1 for business or investment purposes.**\n\nThis means that Unchained will not be able to refinance or “roll over” existing loans beginning January 1, 2024 unless a refinance application is submitted by an entity (not individual) borrower with a stated business or investment purpose.\n\nWhile consumer lending services will not be available for a time, please know that we are actively working on updating and expanding our consumer loan products and services during this pause. Although a significant project remains ahead in that regard, we look forward to delivering an enhanced borrowing experience upon restart of our consumer lending program.\n\n**If your loan has either an investment purpose or a business purpose, you may submit a loan application (for either a new loan or a refinance of an existing loan) to Unchained as those will remain eligible loan types, even after January 1.** In the case of a refinance, the loan purpose must be indicated on your new refinance application. \n\nBy way of example, a Wyoming limited liability company (including but not limited to a limited liability company not taxed separately from its sole owner) would remain eligible to apply for an Unchained loan for any investment purposes or business purposes, even after January 1. \n\nAs always, loan applications are subject to approval. Unchained cannot guarantee the results of any loan application or credit availability. Future availability of credit products is never guaranteed.\n\nWe realize this is an unexpected announcement. We know that everyone’s individual situation is important to us and we are available to help. We appreciate you choosing Unchained as a trusted partner in your bitcoin journey.\n\nIf you have any questions regarding your options, please email us at lending@unchained.com or call us at (844) 486-2424, option 2 during business hours, which are 9:00 AM to 5:00 PM Central Time, Monday through Friday. Our team is available to help you and will respond as quickly as possible to emails and calls. \N 21083 \N 433883 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.14349826813751 0 \N \N f 742547947 \N 6 44525991 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 01:25:17.645 f \N \N \N 0 0 0 0 3 0 0 434197 2025-03-11 16:52:08.861 2025-03-29 22:39:47.364 Nodeless shutting down due to Canadian Government I knew this day would probably come, but didn't expect it so soon.\n\nI am being investigated for running an illegal money transmission business in Canada (nodeless)\n\nUnder the advice of my lawyers I need to shut down the main instance of it.\n\nAs you guys know I made Nodeless completely open source in the event that this happens, so that others who don't live under communism can run a honest, privacy focused payments business.\n\nTo my clients who are using it, I'm very sorry for the short notice but you'll need to find a new payment processing solution this weekend. \n\nDM me on telegram and I will personally walk you through setting up a btcpayserver instance that you can self host, or even your own instance of nodeless.\n\nI can't give much more information than this, not even supposed to say this much, but I owe it to you guys to let you know what's going on.\n\nTo install nodeless on your own server, you can get started here:\nhttps://github.com/nodeless-io/nodeless-monolith https://njump.me/nevent1qqs046axswwjqjucgw06uwasgwhz6whjryqp8hhqtz567tyts6yulaspz9mhxue69uhkummnw3ezuamfdejj7q3qutx00neqgqln72j22kej3ux7803c2k986henvvha4thuwfkper4sxpqqqqqqz2m83dk 14607 \N 434197 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 7.10525758933631 0 \N \N f 149582852 \N 2 88751098 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 09:25:33.938 f \N \N \N 0 0 0 0 2 0 0 430896 2025-03-09 13:47:38.895 2025-03-29 22:39:47.365 I got this message from my bank in Australia today > With over $220 million lost to scammers through cryptocurrency in 2022^, we’re introducing new measures to help protect our customers from the risk of fraud and scams.\n\n> From 7 November 2023, we may limit the amount you can pay to certain accounts or merchants, for example those we believe to be associated with cryptocurrency exchanges, to no more than $10,000 in total from all of your accounts each calendar month.\n\n> this change will happen automatically, you don’t need to do anything. If we decline a payment, you will receive a notification on the payment confirmation screen\n\nI'm not surprised by this and technically I'm not directly affected (yet) since I don't send that much to exchanges each month but it does piss me off that the bank is telling people what they can and can't do with their money. It's also disheartening that it's another piece of FUD getting in the way of people understanding Bitcoin.\n\nIf anything it makes me want to buy more Bitcoin. Yet another sign that the money in the bank isn't really yours. Another sign that banks are not you friend. They are not here to help you and big brother is watching. \N 1618 \N 430896 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 10.3385555007468 0 \N \N f 19918798 \N 1 99193989 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423750 2025-03-03 15:16:41.443 2025-03-29 22:39:47.368 Introducing Ark by Burak \N https://burakkeceli.medium.com/introducing-ark-6f87ae45e272 17535 \N 423750 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 10.2731482990417 0 \N \N f 2098398202 \N 16 211905375 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 407400 2025-02-18 00:03:26.602 2025-03-29 22:39:47.369 How to save on mining fees When you send bitcoin, you pay a fee depending on the amount of data such a transaction needs. There are several ways to make your payments cheaper, and you usually get better privacy at the same time.\n \n## 1. Use more modern addresses\nTransactions are gradually being improved to be more compact. For the lowest fee, your addresses today should start with the characters `bc1`. The Trezor Suite uses such addresses automatically. If you're still using a legacy account, upgrade to a newest one called Taproot.\n\n| ![](https://raw.githubusercontent.com/hynek-jina/test/main/images/stacker.news/How%20to%20save%20on%20mining%20fees/Accounts.png) |\n| --- |\n| _To add a new account, first click on the green plus sign in the top left next to the `My accounts` description._ |\n\n## 2. Send to multiple recipients at once\nSending to two people separately is simply more expensive than sending to them at the same time. So if you're not in a hurry to pay, you could spend a month collecting recipients and then pay them all at once.\n\n| ![](https://raw.githubusercontent.com/hynek-jina/test/main/images/stacker.news/How%20to%20save%20on%20mining%20fees/Add%20recipient.png) |\n| --- |\n| _In Trezor Suite, add more and more recipients by clicking Add Recipient_ |\n\n## 3. Offer low fees\nDon't be afraid to offer the lowest fee, i.e. `1 sat/vB`. You can easily increase the fee, on the other hand, you can't decrease it.\n\n| ![](https://raw.githubusercontent.com/hynek-jina/test/main/images/stacker.news/How%20to%20save%20on%20mining%20fees/Bump%20fee.png) |\n| --- |\n| _You can increase the fee in the Suite by clicking on `Bump fee` next to the pending transaction and then confirm with `Replace transaction`_ |\n\n## 4. Do not create change\nWhen you send a bitcoin, you will probably be left with change. The wallet will automatically send this change to your next available address. However, you can specify that destination too.. Any leftover can be deposited into the aforementioned newer account or used to charge your Lightning wallet.\n\n| ![](https://raw.githubusercontent.com/hynek-jina/test/main/images/stacker.news/How%20to%20save%20on%20mining%20fees/Coin%20control.png) |\n| --- |\n| _Select the Coin control option when sending the transaction and manually select which coins you want to use. Click on `Send max` at the recipient that should receive the rest of selected coins._ |\n\n## 5. Try not to have too many coins\nPersonally, I try to keep about as big coins as I might want to use in the future. Again, so I don't end up with unnecessarily small coins. You can even send coins to yourself so that you have the best distribution. Again, you give a very small fee, ideally bundling it with other transactions.\n\n| ![](https://raw.githubusercontent.com/hynek-jina/test/main/images/stacker.news/How%20to%20save%20on%20mining%20fees/Mempool.png) |\n| --- |\n| _I like to use mempool.space for an overview of current fees_ |\n\n## 6. Paying with coinjoin\nYou can combine your transaction with other people's transactions and save money together. Currently I don't know of a project that has this functionality nicely set up for the average user. However, it is changing fast.. let me know if you are interested.\n\n| ![](https://raw.githubusercontent.com/hynek-jina/test/main/images/stacker.news/How%20to%20save%20on%20mining%20fees/Coinjoin.png) |\n| --- |\n| _Hundreds of inputs and hundreds of outputs aggregated in one coinjoin transaction_ |\n\n## 7. Payment by lightning\nSure thing... With the Lightning network you can often bring the fees down to zero... However, nowadays it is still useful to be able to use the so-called on-chain... You usually need to get the funds to the LN somehow... \N 993 \N 407400 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.093921111661 0 \N \N f 663512465 \N 6 44248858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 320187 2024-12-05 22:10:35.368 2025-03-29 22:39:47.372 Configure a dedicated router with VPN service ⚡️💊 **Configure a dedicated router so that all Internet traffic goes through your VPN service**\n\n![](https://imgprxy.stacker.news/tZMaF2jd788yVyqFrqE4eGhLUDZTe9mBiPW3qUox2i0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9naXRodWIuY29tL21vZG9CaXRjb2luL21pa3JvdGlrL3Jhdy9tYWluL3JvdXRlcl92cG4xLnBuZw)\n\nIn this test we are going to configure an independent router at home, in which we will guarantee that only the traffic to the internet goes through VPN.\n \nLooking for gigabit ethernet hardware, with wireless and constant upgrades, we experimented with a MikroTik hAP ac2 device.\n\nThere are many more devices with RouterOS and also the possibility to virtualize RouterOS on a computer with several network interfaces. You can also do it with openWRT without any problem, but not on this model.\n\nAbout the VPN service compatible with Wireguard, say that there are many, in this example we are going to do it with Mullvad, there are many other services that I have not tested like iVPN, lnvpn.net that are also compatible.\n\n**Requirements por this test:**\n\nMikroTik router / RouterOS installed\nMullvad VPN service or another\n\n\n**#Advantages:**\n\n-Wired and wireless network with output to the internet via VPN.\n\n-Being able to have several devices connected with the same VPN account.\n\n-Low cost and consumption.\n\n-Improve the performance and stability of the VPN connection, avoid problems with kill-switch, leaks in the internet traffic, etc. .......\n\n\nRemember that this example is for having a second router, but there are many more configuration options!\n\n\n\n**#Getting Started:**\n\nThe first thing to do is to access the Mullvad VPN service platform and download the configuration files for wireguard. \nExample:\n\n![](https://imgprxy.stacker.news/lNW8EhUtPJhRjz5JTRDamrF21x3Tc7OTlMhU_6Yph6o/rs:fit:600:500:0/g:no/aHR0cHM6Ly9naXRodWIuY29tL21vZG9CaXRjb2luL21pa3JvdGlrL2Jsb2IvbWFpbi93aXJlZ3VhcmRfZXhhbXBsZV9jb25mLnBuZz9yYXc9dHJ1ZQ)\n\nDownload the configuration file from: https://github.com/modoBitcoin/mikrotik/blob/main/hap_ac2-wireguard.rsc\n\nOpen the file with a text editor and configure the variables.\n![](https://imgprxy.stacker.news/2fFq5bJ8SYIN3S2rtVWoL_x0YC_ukw0u4-3k3kUK8_g/rs:fit:600:500:0/g:no/aHR0cHM6Ly9naXRodWIuY29tL21vZG9CaXRjb2luL21pa3JvdGlrL3Jhdy9tYWluL3ZhcmlhYmxlcy5wbmc)\n\nWe can save it as 'configuration.rsc' to load it later.\n\nAccess the router through WinBox and upgrade to RouterOS 7 if it is not already installed.\nOnce inside, we reset the router without any default configuration in System - Reset Configuration:\n\n![](https://imgprxy.stacker.news/vredYTRU3w-zqonB9NBIgnv2ichUi6VXqScPJmcqIF4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9naXRodWIuY29tL21vZG9CaXRjb2luL21pa3JvdGlrL3Jhdy9tYWluL3Jlc2V0LnBuZw\n\nThe router will reboot and boot without any factory settings.\n\nGo to Winbox, Files and upload the file with the Upload button.\nAccess Winbox TERMINAL and type the following command:\n\n/import file=configuration.rsc\n\n![](https://imgprxy.stacker.news/uNBMBqyqM5_0dHni324hU5xbwbRme5rbx48BCfHBQ_c/rs:fit:600:500:0/g:no/aHR0cHM6Ly9naXRodWIuY29tL21vZG9CaXRjb2luL21pa3JvdGlrL3Jhdy9tYWluL2ltcG9ydGZpbGUucG5n)\n\nOnce imported we would already be connected.\n\n*Important to have the ethernet1 port connected to our router.\n\nWe can connect via WiFi to our new router, or even to ports 2,3,4 and 5. This is a very basic configuration, from here you can do much more.\n\n\n**Enjoy it!**\n \N 5806 \N 320187 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.9438554435335 0 \N \N f 756559703 \N 5 93617514 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435924 2025-03-13 05:29:42.145 2025-03-29 22:39:47.363 Which businesses will pivot to Bitcoin / Lightning / Nostr? **Which companies do you think will switch their business model to transacting on open-source Bitcoin & Nostr**? To date, we've only really been seeing new businesses who are newly created Bitcoin-only firms get traction. Perhaps because they need to sacrifice their own business in the short term to benefit in the long-term. But out of all the existing fiat companies, who do you think will make the switch next? \n\n- There's been talk of Replit doing it.\n- Zapier has a great name and brand but their business model is definitely up for grabs in the A.I interconnected world. Unless they do something radical.\n- Email marketing companies (ala Mailchimp) might be a good use case too, allowing you to send email campaign by paying LN invoice.\n- Apple is Apple and will be extremely late to adopting.\n- Elon will go "dogging" before X supports LN or Nostr.\n\n### Which companies do you think are best placed to pivot to:\n1. Bitcoin & Lightning\n2. Nostr \N 20681 \N 435924 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 22.6140261512471 0 \N \N f 608532651 \N 7 168505405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:09:58.826 f \N \N \N 0 0 0 0 4 0 0 435026 2025-03-12 12:10:04.282 2025-03-29 22:39:47.364 Road-To-Suave-Fabs / Part 1 Today I got out of bed with the task to ask out the girl from the library, and guess what? I did it.\n\nI've packed my bag - because I actually did have to return some books -, got on my bike and off I went! \n\nAs I was getting closer, I started getting more-and-more nervous, coming up with both the best- and worst outcomes, but I simply had to bite the bullet, I thought.\n\nOnce I've had arrived at the library, I went in, gave her a casual "hi" and went off to return my books at the scanner, paid the due bill, packed my bag, and then there was only one thing left to do!\n\nI've went towards the counter, but while I was fumbling with the scanner, a few people had arrived at said counter, forming a small line.\n\nThe old me would've said "*Alright, another time*", but this time I chose to simply go through with it, and while I stood there waiting for my turn, I got surprisingly calm- even the rambling in my head stopped!\n\nOnce my turn came, I casually walked up to her, gave her a smile and asked:\n\n"*Hey! I'd like to ask you if you'd be interested to go out with me tonight*" ☺️\n\nShe replied with an adorable little smile, saying that it was a cute gesture, but that she already had a relationship going, thus, she kindly declined- And guess what? I was surprisingly cool with it!\n\nWhy? Well, even though I got a "No", one could tell that I had managed to brighten up her mood, and imagine my surprise that life *indeed* does go on?! I'm even surprisingly keen on asking out the next girl! 🤭\n\nThe girl from the gym wasn't around when I was there this afternoon, so I'll leave that one for another time, but there's a little festivity in the town this evening, which I'll have a look at and maybe I'll find a few other opportunities to ask out some girls there instead!\n\nGuys, if you're nervous or anxious about asking out a girl, don't overthink it, just bite the damn bullet and be amazed at how simply it really is.\n\n- Soon-To-Be-Suave Fabs, out!\n\n\n\n \N 2156 \N 435026 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.4881326857795 0 \N \N f 234068759 \N 1 138975005 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 09:44:52.015 f \N \N \N 0 0 0 0 1 0 0 407811 2025-02-18 12:00:30.602 2025-03-29 22:39:47.364 Are Hardware Wallets a Shitcoin? In the Bitcoin community, there's a well-established belief that hardware wallets are the ultimate safeguard — a notion marketed aggressively by vendors. These sleek devices often come with hefty price tags, ranging from a hundred dollars to several hundred, and are described as vault-like solutions that will keep your Bitcoin and crypto assets safe from malicious attack, theft, and even malware.\n\nThese wallets, produced by companies like **Ledger**, **Trezor**, and **BitBox**, claim to store your private keys in a secure environment that never touches the internet. However, given the advancements in FOSS (Free and Open-Source Software) solutions, can we confidently say these expensive devices are necessary? Are there cost-efficient, equally secure alternatives available by leveraging FOSS strategies with cold storage techniques or air-gapped setups? Let's examine the technical argument.\n\n### The Hardware Wallet Narrative: What Are We Being Sold?\n\nManufacturers emphasize that the ability to store private keys inside a hardware wallet and keep it offline (air-gapped) from the internet minimizes some of the most prominent attack vectors. These wallets guard against phishing attempts, malware, and other forms of network-based compromise. Hardware wallets such as **Ledger's Nano S Plus** and **Trezor Model T** leverage Secure Element (SE) chips and/or custom firmware to isolate and protect private keys. For instance, **Ledger** uses an SE environment governed by firmware from its proprietary operating system (**BOLOS**), ensuring private keys never leave the device unless physically attacked or a critical vulnerability is found.\n\n**Trezor**, on the other hand, relies on a more open approach, with its firmware being fully open-source. However, despite this openness, the actual chips are not as tamper-resistant as Ledger’s Secure Element. Nonetheless, both manufacturers guarantee multiple layers of PINs, passphrases, and recovery seed functionality to boost security.\n\nYet, these devices are not foolproof. Countless real-world vulnerabilities have emerged over time:\n\n- **2020 Ledger Data Breach**: While the breach didn't compromise private keys directly, the personal data of thousands of users was exposed, including their complete addresses and contact information, potentially putting them at risk of phishing attacks and physical threats.\n- Hardware wallets consistently face threats, like the vulnerabilities discovered by **Donjon Security Labs (2019)**, where both Ledger and Trezor devices were found to be susceptible to physical attacks, such as power or side-channel analysis to extract private keys.\n\nMoreover, the firmware installed in many external hardware wallets remains proprietary or semi-proprietary, meaning end-users are unable to fully verify whether they are truly secure. This introduces a degree of trust, which arguably undercuts the philosophy of Bitcoin, centered around the elimination of "trusted third parties."\n\n### Bridging Security and Transparency\n\nFor those who are tech-savvy or prefer maximal transparency, FOSS wallets present themselves as resilient alternatives. Prominent examples include **Electrum**, **Sparrow**, **Wasabi**, and **BlueWallet**, all of which are community-driven projects. Here's why FOSS wallets carrying cold storage strategies (offline methods of private key management) can provide a comparable level of security:\n\n#### 1. Code Transparency: Peer Cooperation\n\nWhen FOSS wallets like **Electrum** or **Sparrow** are compared to proprietary hardware wallets, a key advantage is their full transparency. The code is thoroughly open and available on repositories like **GitHub**, providing researchers and developers the ability to audit and scrutinize the code for potential vulnerabilities. With many eyes on the project, there is a greater chance of catching bugs, flaws, or potentially malicious lines of code.\n\nFor instance, **Electrum**, one of the longest-standing Bitcoin wallets, has seen numerous contributions from a globally diverse development community. Security updates are quickly released after discoveries of vulnerabilities, as highlighted in the past when a Distributed Denial of Service (DDoS) vulnerability was identified and swiftly patched in the same year (2018).\n\nIn contrast, despite promises of security audits, proprietary hardware wallet companies often control the timeline for vulnerability disclosures, issuing patches at their discretion and forcing users to blindly update firmware.\n\n#### 2. Air-Gapped Cold Storage: A Real-World Alternative\n\nFOSS wallets can mimic, and in many ways improve upon, hardware wallet functionality by leveraging an air-gapped setup. You can install a wallet like **Electrum** or **Sparrow** on a computer that has **never touched the internet**. This setup allows for fully offline key management, which mimics the private key isolation of hardware wallets.\n\n#### Practical Example:\n\n- Imagine setting up a laptop that you completely wipe and reinstall with a lightweight Linux distribution like **Tails OS** or **Ubuntu**. On this machine:\n - Download **Electrum** from a verified repository or official site.\n - Completely disconnect the computer from the internet before generating your wallet’s seed.\n - Optionally use the laptop to generate a **multi-sig wallet** for additional protection. For example, with Electrum, you could configure a 2-of-3 scheme, where to unlock funds, signatures from 2 out of 3 devices will be required.\n \nTransactions crafted in this air-gapped environment can be exported via **PSBT (Partially Signed Bitcoin Transactions)**, a Bitcoin protocol feature that enables transaction signing offline. To illustrate:\n- You prepare a transaction on your air-gapped machine.\n- Save the unsigned PSBT onto a USB stick.\n- Load the USB stick into an online machine with **Electrum** for broadcasting to the blockchain.\n\nThus, the private keys involved never interact with an internet-connected device, which fundamentally reduces security risks associated with phishing or malware attacks.\n\n#### 3. Coldcard: Hybrid FOSS and Hardware Wallet\n\nA prime example of blending FOSS principles with the convenience of a hardware device is **Coldcard**, a Bitcoin-only wallet. Unlike other hardware wallets, Coldcard is fully transparent in its operation and firmware. The code is available on GitHub, and its usage prominently revolves around PSBTs, allowing transactions to consistently stay air-gapped.\n\nThe Coldcard device, relatively affordable compared to its peers, retains the benefits of hardware-based protection without the restrictions of opaque proprietary firmware, appealing to users who want minimal compromise between hardware wallet security and FOSS transparency.\n\n#### 4. Hierarchical Deterministic (HD) Wallets: Bitcoin’s Backbone\n\nCold storage setups in FOSS wallets hinge upon **Hierarchical Deterministic (HD) wallet** schemes (**BIP32**, **BIP44**, and **BIP39** standards). Tools like **Sparrow wallet** and **BlueWallet** allow users to create new wallets from a **12- or 24-word mnemonic seed**, which can later be used under various address formats (e.g., Native SegWit, P2SH). Electrum takes this a step further by granting users the ability to configure their derivation paths (BIP44 for multisig, for example) during wallet creation. In fact, Electrum even supports **hardware wallets** as one of its configurations, allowing users to enjoy the best of both cold storage and hardware-based security.\n\nBy securely storing backup seed phrases offline, either on paper, metal (such as **Billfodl** or **Cryptosteel**), or even within password-protected encrypted files, users ensure the recoverability of their funds without exposure to online threats.\n\n#### 5. Pairing FOSS Wallets with Other FOSS Tools: Bitcoin Core Integration\n\nFor those serious about eliminating third-party reliance, pairing FOSS wallets with **Bitcoin Core**, a full-node Bitcoin client, maximizes control over privacy, security, and decentralization. Full-node wallet setups give users independent verification of transactions, removing trust dependency on third-party nodes when confirming wallet balances and transactions.\n\nSoftware like **Sparrow** integrates seamlessly with Bitcoin Core and enables users to run their node, participate in the network honestly, and eliminate reliance on potentially untrustworthy, third-party servers.\n\n### The Cost and Flexibility Argument: Why Spend Hundreds of Dollars?\n\nOne of the most compelling reasons to favor FOSS wallet-based cold storage is cost-effectiveness. The price of setting up a secure cold storage solution vs. investing in a hardware wallet looks like this:\n\n- **Hardware Wallet**: usually $70–$200.\n- **FOSS Cold Storage**: If you already have an old computer or even a low-cost **Raspberry Pi**, setting up an air-gapped device costs virtually nothing. Alternately, a one-time investment in affordable offline hardware like a $20 USB drive can do the trick for signing transactions offline.\n\nFurthermore, with a FOSS wallet, you're not restricted by a vendor's update model. You're free to fork and innovate or extend functionality if a particular wallet provider doesn’t offer features desired by the community.\n\n### Mitigating Concerns: Is FOSS Security Too Technical?\n\nOne common concern is whether users new to cryptocurrency will find the steps required to set up a FOSS cold storage solution too challenging. It’s true that air-gapped setups, manual PSBT signing, and creating multisig wallets require some technical overhead. However:\n\n- **Documentation and Support**: FOSS wallets like Electrum have in-depth guides, community wiki pages, and vibrant user forums for support. Advanced setups like multisig (multiple devices) are possible through intuitive interfaces provided by tools like Sparrow.\n- **Educational Resources**: Video walkthroughs and open tutorials on channels like **BTC Sessions** or forums like **Bitcointalk** help users of any level navigate the setup.\n\nWhile hardware wallets like Ledger and Trezor offer polished, user-friendly options for securing cryptocurrencies, FOSS wallets, when paired with thoughtful cold storage practices, deliver many of the same security benefits without the associated costs or proprietary limitations. For the security-conscious and technically proficient user, FOSS wallets represent a scalable way to achieve top-notch Bitcoin security without compromise. Choosing the right solution often depends on a user's needs, technical ability, and willingness to manage the additional steps involved in FOSS solutions. However, consider this: leveraging FOSS wallets not only promotes self-sovereignty but can liberate users from the limitations and costs imposed by third-party hardware wallet manufacturers. \N 9354 \N 407811 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.9273744491715 0 \N \N f 225824821 \N 1 107833729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435226 2025-03-12 14:40:45.935 2025-03-29 22:39:47.365 How I got out of a sticky situation in Tijuana using the lightning network I landed in Tijuana with a few crumpled pesos and a whole lot of naivete. "Mexico will be different," I told myself. A fresh start, a chance to send something - anything - back to my family who believed in this foolhardy gamble just as much as I did. \n\nThen the peso tanked. Not the big, headline-grabbing collapse, but the slow, insidious drop that eats away at your livelihood. Suddenly, even a week's wages wouldn't cover a remittance fee, let alone leave enough for essentials. That's when the whispers started - about Bitcoin, and this thing called the Lightning Network. Decentralized, they said. Borderless. A hedge against the insanity of fiat. \n\nLet me be clear: I'm no fool when it comes to technology. Back home, I could patch together enough code to fix the village school's ancient computers. But the world of cryptocurrency was a different beast. Wallets, nodes, seed phrases... the terms swam before my eyes. Still, desperation makes you willing to learn.\n\nGetting my hands on Bitcoin proved near impossible. The reputable exchanges demanded KYC documents I didn't possess. Shady back-alley operators charged extortionate rates and vanished as quickly as they appeared. Eventually, I found a guy running a side hustle – pesos for BTC, at a cutthroat fee, no questions asked. This should have been my first red flag.\n\nSetting up a Lightning wallet was even more chaotic. Instructions assumed a baseline technical knowledge and decent internet connectivity – luxuries in this ramshackle town. Finally, after hours of frustration, I had the barebones figured out. But then came the realization: very few places in my immediate vicinity actually *accepted* Lightning payments.\n\nThen came the crash. Hyperinflation swept through. Shops closed. Jobs dried up. My meager savings in pesos vaporized into nothingness. In those dark days, the supposed resilience of Bitcoin was just a cruel joke. I was trapped with a supposedly 'stable' asset that nobody in my local reality wanted.\n\nI finally found a way to cash out a sliver of my BTC through that same shady dealer who charged me on the way in. Enough pesos to survive another week, but at a steep loss. The 'miracle' solution offered only marginal improvement, and came with a hefty dose of risk. Here's the kicker – all these hurdles could have been avoided had I focused on acquiring practical skills that people *here* needed, or found channels to convert pesos to a truly stable foreign currency before the meltdown. \n\nMy point is this, fellow devs: \n\n* **Decentralization doesn't equal usability.** The Lightning Network can be revolutionary, but the user experience remains brutal for the non-technical, especially in low-resource settings. Onboarding needs frictionless solutions.\n* **Adoption drives value, not speculation.** If my neighbor can't buy bread with BTC, its price stability is irrelevant. Focus on toolchains that facilitate real-world micropayments, not just investment hype.\n* **Financial sovereignty means nothing without financial literacy.** Bitcoin can be empowering, but only if users understand the potential risks alongside the rewards. We need accessible educational resources, especially tailored to vulnerable populations.\n\nDon't get me wrong, I still believe in the potential of decentralized finance. But my experience in Mexico highlighted the stark gap between its promise and the on-the-ground reality. Let's close that gap – the true path to liberation lies in making these tools accessible and genuinely useful to those who need them the most. \n \N 16542 \N 435226 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 21.0508922815266 0 \N \N f 450991317 \N 2 131745224 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 13:52:17.631 f \N \N \N 0 0 0 0 2 0 0 410409 2025-02-20 13:17:13.282 2025-03-29 22:39:47.368 Voice anonymization software / apps? I've just spent ten minutes looking for software that does voice anonymization and have not found anything that is obviously good or convenient. My desired use case is for recording a podcast.\n\nOption 1: the acceptable but non-ideal solution would be to isolate the audio channels, feed the recording from an isolated channel into the software, and get a transformed voice out, which I could then mix. This would preclude real-time privacy, but would allow me to release a podcast without doxxing the guests. \n\nOption 2: an ideal use case would something that worked in real time -- you apply something akin to a filter, so the voice is transformed as the person talks, and it appears in the podcast transformed, so that's what the mixing board 'hears.'\n\nIt seems like at least option 1 should exist in a reasonably convenient form. All I've found so far are toy apps (you can transform your voice so it sounds like you've just inhaled a bunch of helium, for instance, or into a chipmunk voice) or super complicated research things that I'd have to figure out how to compile and run. In a pinch I can do this, but surely the world has advanced to a place where a better solution exists?\n\nAlso: it's important that whatever the anonymized voice is, it doesn't sound like you're a psychopath hostage-taker from the 1970s. I want a voice that sounds like a real voice, just not the actual person. Anyone have any pointers? \N 1038 \N 410409 \N \N \N \N \N \N \N \N education \N ACTIVE \N 23.7345563736114 0 \N \N f 2134144733 \N 16 193601955 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 433796 2025-03-11 12:02:38.553 2025-03-29 22:39:47.37 Dinner Guests If you could have any dinner guests you choose, who would they be?\n\nRules: Guests are not required to share all things, but they will give honest answers that they would not tell the general public. e.g., a former president might be a good idea but only if they are willing to answer openly. However, they are not required to give answers to all things like conspiracy theories.\n\nI am going to give alive and dead separately\n\nAlive:\n1) **Dirk Nowitzki.** boring answer, but he was my sports hero for a long time and I'd love to throw some back with him.\n2) **Ben Bernanke.** Despite what people might think about his tenure as chairman of the fed, it would be fascinating to get his perspective on influence from politicians, pushback from other economists, so on and so forth. Also fascinating that he had to put his money where his mouth is. Most economists never see their theories play out on a large scale. \n3) **Dave Chappelle.** He would make for some great laughs and I think it would be interesting to get his perspective on certain things like race\n\nBonus: Ricky Gervais. Couldn't decide between him or Dave Chappelle. \n\nDead:\n1) **George Carlin.** Same reason for Dave Chappelle, but I would also love to show him the various social media and let him speak his mind. Also, he is one of the few people who agrees with me that wearing headphones in public is trash. \n2) **Milton Friedman.** \n3) **JM Keynes** \n\nFriedman and Keynes come as a pair. I'd love to be a fly on the wall for their conversation. \n\nBonus: one of the big religious figures, Jesus, Mohammed, Buddha, but I couldnt decide which one so I left them off. Honestly, would be fascinating to get Pontius Pilate's (or just some citizen of the time) side of things. \N 976 \N 433796 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 0.87519163637424 0 \N \N f 173301093 \N 1 84487110 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 409591 2025-02-19 17:26:09.517 2025-03-29 22:39:47.363 What If We Don't Sell Our Bitcoin? \nIt seems clear that BlackRock and other funds will soon get approval for a spot bitcoin ETF in the U.S. in the near future. \n\nThere are approximately 1.5 million bitcoin remaining to be mined. \n\nThe percentage of bitcoin being held by long term hodlers is higher than ever, reflecting our low time preference commitment to bitcoin.\n\nBitcoin's price volatility can at least partially be explained by the lack of liquidity: Short term holders, trading on custodial exchanges, moving relatively small amounts of bitcoin causes extreme fiat price moves.\n\n### BlackRock Needs Our Bitcoin\n\nIt is axiomatic in the world of business and finance that everything is for sale. The only issue is price. This has shown to be historically true, but there are exceptions. Recently, the young GameStop and AMC degens held firm to cause serious losses for at least one hedge fund.\n\nMy point is this. What if the vast majority of bitcoiners don't sell the majority of their stack, regardless of how ridiculously high the fiat price gets? Sure, some of us will be tempted, and others will need the fiat to take care of their families and improve their life. But, what if the vast majority of the bitcoin remains in self custody with long term holders? \n\nI know this wouldn't even be an issue for those of us like @DarthCoin, but I assume many of us will not have his fortitude.\n\n### What Would This Look Like? \n\nOf course this is my utopian outcome. Is this scenario realistic? Many of us talk a good game, but none of us really know how we will react when confronted with the opportunity for massive fiat wealth. Do you think it's possible, and what would it mean for bitcoin? Would this hasten hyperbitcoinization? \N 1454 \N 409591 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.9898512130965 0 \N \N f 363978187 \N 2 211283058 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427188 2025-03-06 07:30:56.688 2025-03-29 22:39:47.364 Magic Webstore \N https://magicwebstore.xyz/ 775 \N 427188 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 9.43708205601791 0 \N \N f 627066051 \N 4 77802795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402056 2025-02-13 14:31:49.601 2025-03-29 22:39:47.368 Cell phone addiction Cell phone addiction is the new problem of this era. Did it begin with the advent of social media or was it just the one that ended up sentencing it?\n\nI was out for a walk with my family and I couldn't help but notice how there were other families, groups of friends and couples on the same trip plan, but with their eyes immersed in their phones. In this place there is a boat ride in a small artificial lagoon. There was a couple "enjoying" this activity but with their faces in their cell phones. I really didn't understand how they could be more attentive on their phones than pedaling the boat. This same case happens a lot in restaurants. People no longer talk to each other, it's more important to watch memes or videos. \n![](https://m.stacker.news/63994)\n\nHere I am writing about this, condemning this addiction while my gaze is fixed on my cell phone and your gaze is on reading these words, what are we doing? \n\nDo you ever spend hours on your phone, tablet or computer and not realize how much time you've spent concentrating on it? Don't you feel like life is going by faster?\n\nYesterday I was listening to a podcast about this, about how we feel that the week goes by much faster because we are distracted. We wake up and the first thing we do is grab our phone, we are on public transport and our face is in the phone... because you have gone to the bathroom with your phone, right?\n\n> There are reasons why smartphones are hard to put down. The sounds and vibrations catch our attention, and the games, notifications, social media, and messages provide instant gratification.\nSmartphones offer a constant source of entertainment and distraction. Companies use persuasive design techniques with features like infinite scrolling, push notifications, and personalized content to keep us engaged and make it harder to disconnect.\n\nThis culture of speed has made you stop enjoying even the things that ARE MADE FOR ENJOYMENT, going for a walk, visiting your loved ones, going out with friends, people go to the movies and are on their cell phones, something that surprised me was being in a movie theater and seeing a child watching videos on YouTube with his tablet, this no longer makes any sense, something typical is also seeing children at birthday parties and parks with their tablets. A phenomenon that occurs frequently in this last decade is that of parents disassociating themselves from the responsibilities they have with their children when it comes to setting limits, an example is: a 1 or 2 year old child throwing a tantrum (something normal at that age) or crying for anything you can imagine, the automatic solution to calm them down is "put the tablet down, watch videos and stop crying", then you see how the children stop crying in less than a second and are mesmerized by the screens. Another scenario that I see daily is that they give their children the tablet or phone to watch videos while mom or dad feeds them just to keep them from moving, THEY ARE CHILDREN, THAT'S WHAT THEY DO, MOVE!!. I agree with taking advantage of technology, but excesses are not appropriate. I'm not saying that you should never let your children watch videos on a cell phone from time to time. There are times when it can be really useful, but doing it on a daily basis does not bring any benefit. A few days ago I asked my husband if the people who invented tablets did so with the purpose of targeting adults with children as their ideal customers. The tablet ads I see now are geared towards getting you to buy them for your children and I have even seen "tablets for kids" with bright colors and drawings.\n\nObviously I have also sinned by feeling addicted to my cell phone, it is an unpleasant sensation, I remember one time I had to get the screen fixed because it was broken, the technician spent about 3 days with my phone because he couldn't get the replacement part, I felt like I was desperate to get my phone back immediately, it's ridiculous, it's just a phone, at that time I wasn't even using it for work, which makes the situation even more ridiculous. Another experience that I looked back on was one time when I went to a Disney show with my daughter and I think I actually spent more time focused on recording the show and my daughter's reactions than enjoying the moment, so much so that when the show ended, I thought "I hardly watched anything." I told myself that I wouldn't do that again, that I was going to live in the moment. Yes, I like taking photos and making videos to treasure memories, but once again, excess ruins the genuine experience of your emotions. Before, on a family outing I could take hundreds and hundreds of photos, now I only take a couple of photos and I'm fine with that. Even sometimes when I go out for a walk with my husband and daughter I prefer to leave the phone at home, I don't want anything to distract me from them. I haven't given up my cell phone completely, I need it for work, but sometimes I use it excessively and I'm working on it with small steps like the ones I already mentioned, sometimes I feel guilty for using it for so long and I think I'm missing out on more important things by watching series or movies.\n\nWhat I'm getting at with all of this is that if you've noticed that you spend a lot of time on your cell phone, I invite you to look up for a moment, observe your surroundings, look your loved ones in the eyes when they talk to you, really listen to what they say and don't just nod your head without taking your eyes off your cell phone, go for a walk, walk your dog without taking your phone with you, when you go to a meeting leave your phone in your pocket, the same applies when you go to a restaurant.\n\n\n\n\n\n\n \N 14255 \N 402056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6325175153659 0 \N \N f 6470283 \N 1 223091959 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402075 2025-02-13 14:40:56.998 2025-03-29 22:39:47.369 PlebDevs Lightning Address Workshop ⚡️ The next plebdevs workshop is happening tomorrow at 2PM CST!\n\nLearn how to build a simple Lightning Address server with NextJS and host it for free on vercel ⚡️\n\nCatch it live on: [Twitch](https://twtich.tv/plebdevs)\n\nPrevious workshops: [YouTube](https://youtube.com/channel/UCRPvdcPYyWAXF7cOjW_dJCA)\n\nJoin the plebdevs discord: [https://discord.gg/MdBFATuvHy](https://discord.gg/MdBFATuvHy)\n\n[](https://pbs.twimg.com/media/GDHJZy9XwAAQe_N?format=jpg&name=medium) \N 759 \N 402075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8181997533531 0 \N \N f 249718360 \N 2 247595731 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 450766 2025-03-24 07:57:31.179 2025-03-29 22:39:47.37 Early Retirement by Bitcoin *Episode XXIV. Block height: 871000. With each sat stacked, you're not just investing in Bitcoin, you're building the path to a future of freedom. And we have proof.*\n\n**Substack Article:** https://carlbmenger.substack.com/p/early-retirement-by-bitcoin\n\n![Early Retirement](https://m.stacker.news/63772)\n\nWhat an extraordinary time to be a Bitcoiner. Following Donald Trump’s election in early November 2024 and Bitcoin’s surge past its previous all-time high of $73,500, we’re witnessing a remarkable ascent, with Bitcoin reaching $90,000 for the first time in history. Congratulations to all the dedicated stackers and hodlers — it’s been an incredible journey, and this is just the beginning.\n\nThis article highlights the transformative power of Bitcoin and illustrates how small, consistent actions can lead to profound financial progress and freedom. It highlights the effectiveness of Dollar Cost Averaging (DCA) in Bitcoin, supported by numbers and graphs to demonstrate the potential. I've been following BRetirementPlan's blog closely for a long time, where he documents his own DCA journey, which shows that achieving financial independence ultimately doesn't require risky strategies. By regularly buying bitcoin with an affordable amount, you can leverage time as your greatest asset. Gradually, then suddenly - sat by sat.\n\nBack in May 2023, we published a joint article on Substack, which we linked at the end for comparison. Now, almost 1.5 years later, it's time to revisit the numbers together and see where the journey has taken us. Time flies, so let's dive in!\n\n### The Bitcoin Retirement Plan\n\nHello, my name is Mr. ERB, and I run the blog The Bitcoin Retirement Plan because that’s my strategy: Since October 2017, I stack Bitcoin each month until I can call myself retired (or retarded), we will see. But first, let me share a bit about my personal journey with Bitcoin.\n\n### FIRE strategy\n\nBack in 2017, I began exploring concepts around early retirement, financial freedom, and financial independence — often known as FIRE (Financial Independence, Retire Early). One of the most influential voices in this space is Mr. Money Mustache, whose blog I followed daily for hours on end, sometimes for weeks. This intense commitment to learning was remarkably similar to the passion I developed for understanding Bitcoin shortly after.\n\nGrowing up in a not very financially literate family, I learned (at the ripe old age of ~30) about stocks and the stock market in general, and the idea of early retirement and financial freedom, pure magic to my financial beginner brain. In short, these FIRE folks save as much as they can from their paychecks, use it to buy the S&P500 or whatever indices, and keep going until their annual return from the stock (historically 7%) is enough to fund their frugal lifestyle. Basically, this means extreme savings behaviour and commitment for many years (if not decades). I was obsessed with the idea of buying (saving) my freedom from the fiat hamster wheel, so I started saving what I could and bought some stocks for the first time in my life.\n\n### Cheat Code\n\nHowever, as many of you likely understand, things rarely unfold exactly as planned — especially once Bitcoin enters the picture. I initially encountered Bitcoin in an entirely random way and viewed it solely through a FIRE lens, considering it a potential accelerator for my early retirement goals. But, as is often the case, I quickly became captivated by all aspects of it, falling down the proverbial “rabbit hole.” My perspective shifted from that of an early retirement enthusiast to that of a Bitcoin stack maximalist. I immediately realised that Bitcoin would offer me a spectacular and unique cheat code to reach my goal of financial independence, laser-focused.\n\nSo my strategy evolved into buying as much Bitcoin as possible, without relying on any lump-sum investments. Instead, I committed to saving the maximum amount from my salary and purchasing Bitcoin consistently each month. I began this approach in October 2017 — ironically, near the peak of that bull market — and have continued ever since, riding out both significant drops and even larger rallies. In essence, I was applying the same disciplined, long-term approach that many in the FIRE community apply to stocks, but Bitcoin felt like the ultimate “cheat code.” With Bitcoin, achieving my financial independence goals seemed not only possible but potentially faster and more impactful then I ever could have imagined.\n\n### Don’t trust, verify\n\nI began documenting the progress of my Bitcoin FIRE strategy as a personal project, but over time, I thought others might find value in the journey as well. So, I created a blog to share what it looks like to stack sats from a broke ass noob (Zero-Net-Worth) to hopefully financial independence, one sat at a time. The blog offers insights into how much one might need to save each month to achieve a certain goal, the patience required, the bear markets to withstand, the bull markets that can change everything, the inevitable cycles of crises, and, most importantly, how a remarkable Bitcoin stack can be built steadily over time through the simple, disciplined practice of Dollar Cost Averaging (DCA) without a ton of capital to start with.\n\nSimply speaking, every month, I buy Bitcoin and update my charts that track my Bitcoin Retirement Plan’s progress. In this article, I’d like to share with you the three most significant charts that illustrate the journey so far. I have now been practicing Dollar Cost Averaging (DCA) in Bitcoin consistently for 86 months — stacking sats one step at a time without exception or emotion. Let’s take a look at where we currently stand.\n\n#### Chart ONE\n\n![Chart ONE](https://m.stacker.news/63773)\n\nThe orange line (left axis) represents my Bitcoin stack, which consistently increase as I continue to add without ever selling. The green line (right axis) shows the fiat value of my Bitcoin stack, calculated at the purchase price for each data point, making it easy to identify bear and bull market phases in fiat terms. The black dashed line represents the total amount of fiat invested over the years — approximately €45,000 over seven years, yielding an average purchase price of €10,000 per Bitcoin. The gap between the black dashed line and the green line reflects my profit in fiat terms, providing a clear view of how well this strategy has performed despite two bear markets along the way.\n\n#### Chart TWO\n\n![Chart TWO](https://m.stacker.news/63774)\n\nThe blue bars represent each of my monthly Bitcoin purchases, 86 in total, beginning in October 2017. Currently, we’re at an all-time high, meaning every single purchase I’ve made is in profit. However, my best buy occurred at the bottom of the bear market in February 2019, with gains exceeding 2000% today. The €500 purchase I made then is now worth over €10,000. In hindsight, I should have sold my last chair and stack Bitcoin even harder at those lows, but at the time, it was daunting to even make €500 monthly purchases in a market that appeared to be in free-fall.\n\nUltimately, the “buy and hold” approach no matter what has proven to be a winning strategy. It shows that real gains come from holding over the long term, while the “pain” typically stems from more recent purchases during market downturns. In Bitcoin, some level of drawdown is inevitable. Everyone, even early adopters who started in 2011, has faced periods of loss. But the real test is how you handle these phases: whether you wait patiently, get caught in analysis, panic, or press forward with conviction. It’s important to note that it’s nearly impossible to perfectly time the bottom. What matters is that you continued stacking when others hesitated. The takeaway is simple: if you stack consistently, you stand to win in the long run.\n\n#### Chart THREE\n\n![Chart THREE](https://m.stacker.news/63775)\n\nHere, I’m comparing my Bitcoin savings strategy with the traditional FIRE approach, which largely involves Dollar Cost Averaging (DCA) into the S&P 500. This comparison highlights the shift from my original strategy, to the Bitcoin-centric approach I adopted after discovering its potential. The orange line represents the performance of my Bitcoin savings strategy, while the blue line indicates the hypothetical performance if I had invested in the S&P 500 on the same dates and with the same DCA amount. As shown, the Bitcoin strategy has outpaced the S&P approach by a wide margin, delivering approximately 500% returns compared to roughly 60%.\n\nWhile I understand that some may view Bitcoin as speculative and risky compared to traditional investments, the more one learns about Bitcoin, the less speculative it appears. In many ways, it’s a unique form of information asymmetry. Discovering Bitcoin has felt like finding a “cheat code” to accelerate financial independence and break free from the fiat hamster wheel.\n\n### Conclusion\n\nFollowing a Bitcoin DCA strategy can often feel tedious and, at times, pointless. All hodlers face periods of pain, disappointment, and doubt. However, the key point is this: after enduring these challenging phases, when Bitcoin begins to rise again (and it will), you will always wish you had stacked more. With a consistent DCA strategy, you'll eventually look back and be grateful for having stuck with it, even when it felt like a slow and uneventful process. Bitcoin's journey is always bittersweet; you feel down when the price dips, but you also feel a certain unease when it rises because, naturally, it becomes harder to accumulate more — and let’s face it, you *never* have enough.\n\nAfter seven years, multiple bull and bear markets, I can confidently say there are no shortcuts in Bitcoin — no quick fixes like buying altcoins, leveraging, or staking on centralized platforms. Don't be tempted to chase these paths; they only lead to losses, as many have already discovered. The only guaranteed recipe for success is commitment and patience. Success in Bitcoin requires time in the market. Your Bitcoin stack won’t materialize overnight, gains won't appear tomorrow, and everyone will be underwater at some point. You will feel foolish at times, but perseverance is key. I hope you all have the strong hands needed to navigate future bull and bear markets. Let’s seize the moment, enjoy the journey, and keep stacking sats!\n\nFor those reading this without owning Bitcoin, I understand that it may feel like it’s too late to get in. But here's the reality: everyone feels like they’re late to Bitcoin, regardless of when they start. You can't change the past, but you have full control over the present. Start DCA-ing Bitcoin — it’s simply the best investment strategy. - Mr. Stax\n\n### The End\n\nThat's it for this episode. I hope you gathered some valuable knowledge from this one and remember: “Time in the market is better than timing the market.” Many thanks to Mr. ERB who ran the numbers for us. Make sure to follow him, and keep up-to-date with his great work!\n\n**Follow on X:** https://x.com/bretirementplan\n**Subscribe to Blog:** https://er-bybitcoin.com\n\nThanks for reading and see you hopefully in the next one. Until then, **₿ critical, ₿ informed, ₿ prepared**. Yours,\n\n![Carl B Menger](https://i.postimg.cc/QxMq5Npk/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n### Stay tuned\n**Subscribe to my Newsletter:** https://carlbmenger.substack.com/publish/home\n**Follow me on X**: https://x.com/CarlBMenger\n**Follow me on NOSTR:** npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Related Topics\n[XVI] Joy of Compounding: https://stacker.news/items/547441\n[VII] The Bitcoin Retirement Plan: https://stacker.news/items/183327 \N 9084 \N 450766 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 2.2989050278197 0 \N \N f 128206481 \N 2 6516198 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443629 2025-03-19 12:46:41.036 2025-03-29 22:39:47.371 Starting to lose my patience with Swan I been a customer of swan for a few years. Every time they have custody issues it impacts the overall user experience which brings me to this post today.\n\nRecently Swan has been updating its custody provider from fortress to bakkt. During this transition Swan displays two accounts one new and one legacy. Swan sent out emails saying the monthly purchases may be put on hold but everything should be operational by Dec. 1st\n\nA few days after getting that email I get another email from Swan saying my ACH purchase was rejected because my checking account hand insufficient funds. I think to myself this is impossible I always make sure I have just enough fiat to cover my dollar obligations so I double check and sure enough my checking has enough funds to cover the purchase. I go back and check my Swan account and my account has a random balance of $1.27?!? \n\nSince Swan paused my DCA buy I wanted to make sure I still get my DCA in for the month of November. So I do an instant buy via ACH so my attached checking account yesterday to my new bakkt account. \n\nI check my bank account today and I noticed my savings account has a negative balance. I check to see what it is and of course it’s from bakkt swan.com. And I am thinking to myself how in the world is this even possible?!! Swan doesn’t have the account number to my savings account and my checking account has the funds to cover the purchase! I’m beside myself!\n\nSo next thing I do is try to get some customer service from Swan so I open the chat and message them and they say it can take up to 4 business days to get a reply!! \n\nNow I gotta deal with my bank and hopefully not be charged overdraft fees over because of swan’s poor execution. \n\nI try and support every bitcoin business that I possibly can but I think I might shut down this account with swan if they don’t get this right.\n\nBut stackers out there let this be a lesson. Try to work with bitcoin exchanges that have strong custody tech stack like River, strike, and cash app. Dealing with swan over these last years has been a headache from time to time. \n\n \N 20117 \N 443629 \N \N \N \N \N \N \N \N art \N ACTIVE \N 6.31663865046619 0 \N \N f 98930783 \N 1 249279120 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:04:45.548 f \N \N \N 0 0 0 0 1 0 0 435314 2025-03-12 15:35:22.828 2025-03-29 22:39:47.372 Legend of the Snail | 15/21 participants left | 7 days until next KO | $66,883 ```\n+================================x\n| Welcome to day 426 of the |\n| _ _ _ _ |\n| | |__ (_) |_ ___ ___ (_)_ __ |\n| | '_ \\| | __/ __/ _ \\| | '_ \\ |\n| | |_) | | || (_| (_) | | | | | |\n| |_.__/|_|\\__\\___\\___/|_|_| |_| |\n| |\n| 100k bet! |\nx================================+\n```\n\n| Stat | Value | Change |\n| --- | --- | --- | \n| Last elimination update | https://stacker.news/items/536350 | | \n| Date | 2024-06-14 | +33 days |\n| Participants | 15/21 | +0 |\n| **Prize Pool** | **324,563 sats** | **+11,882 sats** |\n| USD/BTC | $66,883.00 | +9% |\n\n![](https://m.stacker.news/35270)\n\n| Nym | Day | Paid | Elimination Date | Eliminated |\n| --- | --- | ---- | ---------------- | ---------- |\n| @orthwyrm | 260 | X | 2024-02-18 | X |\n| @mango | 359 | X | 2024-04-11 | X |\n| @Alby | 365 | X | 2024-04-21 | X |\n| @siggy47 | 380 | X | 2024-05-18 | X |\n| @CheezeGrater | 418 | X | 2024-06-07 | X |\n| @ekzyis | 420 | X | 2024-06-11 | X |\n| @0fje0 | 427 | X | 2024-06-21 | |\n| @phatom | 440 | | 2024-07-21 | |\n| @486DX2 | 486 | X | 2024-08-20 | |\n| @carlosfandango | 501 | X | 2024-09-07 | |\n| @Lux | 522 | X | 2024-10-09 | |\n| @davidw | 564 | X | 2024-11-02 | |\n| @nikotsla | 570 | X | 2024-11-12 | |\n| @BitcoinIsTheFuture | 584 | X | 2024-11-19 | |\n| @wize123 | 584 | X | 2024-12-01 | |\n| @south_korea_ln | 608 | X | 2025-01-04 | |\n| @Undisciplined | 653 | X | 2025-01-28 | |\n| @grayruby | 655 | X | 2025-02-03 | |\n| @gnilma | 666 | X | 2025-02-26 | |\n| @Longtermwizard | 700 | X | 2025-05-09 | |\n| @Bitman | 810 | X | | |\n\nFor @siggy47, @CheezeGrater and @ekzyis:\n\nhttps://www.youtube.com/watch?v=XdofmoYcJNE\n\nNext elimination: @0fje0 (7 days remaining)\n\n_Want to participate? Click [here](https://stacker.news/items/363233) for more information._ \N 716 \N 435314 \N \N \N \N \N \N \N \N health \N ACTIVE \N 0.67096046888647 0 \N \N f 2394137405 \N 20 42313429 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 00:21:23.163 f \N \N \N 0 0 0 0 8 0 0 430521 2025-03-09 09:37:42.812 2025-03-29 22:39:47.373 Open AI Appoints Former NSA director to the board https://x.com/Snowden/status/1801610725229498403\n\n![](https://m.stacker.news/35302) \N 11678 \N 430521 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.66451454291794 0 \N \N f 206841556 \N 2 51042380 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423954 2025-03-03 18:29:43.137 2025-03-29 22:39:47.364 Pseudonyms lets you practice agency I usually pick up the phone when agency calls, and I haven't done much writing under a pseudonym, but I'm convinced I'm missing out. There are things I want to say that I feel less allowed to say as @k00b who is a short step away from my birth nym. At least on SN, I'm pretty sure my monotonic writing would give any nym away, but maybe I could challenge those nyms to write differently. Time to send the world my pseuds?\n\nSome choice quotes:\n\n> Authenticity is not about the identity, but the way you use it.\n\n> Your main identity gets heavy with significance and expectation; you lose all spontaneity.\n\nFrom the opening paragraph of the [essay on game design](https://pgrim.org/philosophersannual/39articles/nguyen-games.pdf) he shared: \n\n> What could be the point of all that aimless struggle? The answer, I will suggest, is that the rules and goals of games are not arbitrary at all. They are actually a way of specifying particular modes of agency for the player to adopt. This is what makes games a distinctive art form. Designers of such games do not simply create the gaming environments and obstacles. They designate goals and abilities for the player; they shape the agential skeleton which the player will inhabit during the game. Game designers work in the medium of agency. And players, when they play games, are fluidly taking on alternate agencies in a controlled and limited fashion. https://www.henrikkarlsson.xyz/p/pseudonyms-and-agency 616 \N 423954 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.3098480525838 0 \N \N f 554071772 \N 4 39745281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 306869 2024-11-24 14:55:07.68 2025-03-29 22:39:47.365 Micropayments and the Lightning Network \N https://brandonlucas.net/posts/lightning/micropayments 18393 \N 306869 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.157221428832699 0 \N \N f 158976870 \N 2 97582982 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 335484 2024-12-19 18:02:43.393 2025-03-29 22:39:47.365 Girlfriend Finally Got Off Zero -- Advice or Messages for Her? It took Orange Man and her feeling pretty dejected by the election outcomes to push her over the edge. Bitcoin = the most tangible and visible way to opt out, a vote-of-no-confidence in discretionary monetary policy (but, also, political machinery...). \n\nShe has asked tons of questions over the last ~3 months, consumed maybe 5 hours of material and probably thought about bitcoin for something like 50 hours in total. So it wasn't _entirely_ out of the blue. \n\nStill, @siggy47 has a point (https://stacker.news/items/755832): **Maybe the circus did some good.**\n\n(All zaps will go to her, obviously). \N 736 \N 335484 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7165887790349 0 \N \N f 1780162564 \N 16 211386932 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435610 2025-03-12 20:14:38.959 2025-03-29 22:39:47.369 SN gets a "Here Comes Bitcoin" Sticker ![](https://m.stacker.news/37879)\n\nBig ups to @moneyball for hooking it up!\n\nThey just added a bunch of new bitcoin company stickers: https://www.herecomesbitcoin.org/\n\nYou can add them to most of the popular chat apps.\n\n \N 10554 \N 435610 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.6233447051955 0 \N \N f 1559819235 \N 14 22303909 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:07:22.771 f \N \N \N 0 0 0 0 8 0 0 450330 2025-03-23 21:31:05.476 2025-03-29 22:39:47.371 Lightning Network Security Overview **Hello Stackers!**\n\nFor the past few months I've been working off-and-on writing an executive summary of the various security implications to running a node. The target audience includes individuals just beginning in their journey with noderunning, those looking for a summary of the history of issues the Lightning Network has faced, and those wishing to dive deeper in a topic to work on fixes.\n\nIt is by no means comprehensive, and as always do your own research. But if you appreciate my research or have suggestions on how to improve it, let me know in the comments! Also if you have a topic that should be expanded at a technical level, I was thinking about creating separate documents for deep dives into various topics at a more engineering rather than topical depth.\n\nIf you have insight into issues you've experienced noderunning, or maintaining Lightning software, I welcome any and all contributions to improve the comprehensiveness and depth of the document!\n\n**So please, take a look, and together let's improve our community's resilience to attack and failure!**\n\n*⚡ Stay Reckless! ⚡*\n\n**[Lightning Network Security Overview - by RecklessApotheosis](https://github.com/RecklessApotheosis/documentation/blob/main/securitypaper.md)** \N 21683 \N 450330 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 17.4164101646064 0 \N \N f 280254382 \N 2 163446059 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416722 2025-02-25 19:46:43.276 2025-03-29 22:39:47.374 Ecash on Bitcoin - Gandlaf thoughts on ecash, after working on cashu for 2 years \n![](https://m.stacker.news/65916)\n\n[Ecash systems](https://en.wikipedia.org/wiki/Ecash) built on top of bitcoin have seen increasing adoption over the last couple of years. They have become a polarising topic in the bitcoin community, due to their centralized and custodial nature. Like any system, ecash comes with a lot of pros and cons when compared to other systems, that are fercely debated in cyber- and meat-space.\n\nI have been working on developing tools and software for the ecash implementation [Cashu](https://cashu.space/) for about 2 years now. I have had countless discussions with various people from different backgrounds about the topic. OG bitcoiners, fiat bankers, friends and family, privacy enthusiast... . As you can imagine the flow and outcome of these discussions varied widely.\n\nUsually, conversations with bitcoiners were the most interesting for me. Their opinions about ecash polarised the most, by far. (excluding the fiat bankers, but that's a story for another day). In this short peice, I want to share some insights from the discussions I had, and maybe clear up some misconceptions about ecash on bitcoin.\n\n### What is Ecash?\n\nIf you still don't know what ecash is, sorry, I won't go into much detail explaining it. I recommend reading the [wikipedia article on Ecash](https://en.wikipedia.org/wiki/Ecash) , and then [this article](https://cryptome.org/jya/digicrash.htm) on the rise and fall of digicash, the first and maybe only ecash company that existed. This will bring you up to speed on ecash history up until bitcoin entered the scene. Ecash was pretty much dead from the day after digicash went bankrupt untill it recently saw it's revival in two different spheres:\n\nOne of these spheres is obviously the **bitcoin sphere**. Here, ecash got reintroduced with the two open source projects [Fedimint](https://fedimint.org) and [Cashu](https://cashu.space/). In my opinion, the main reason for this revival is the following fact: Unlike an implementation of ecash in the fiat world, that would rely on the permissioned system to "allow" something like ecash to exist, bitcoin does not come with that limitation. The permissionless nature of bitcoin allows for these protocols to exist and interoperate with the existing bitcoin stack.\n\nThe second, and maybe lesser known sphere is the revival of **ecash as a CBDC.** Bitcoiners might get scared at the mentioning of that word. Trust me, I don't like it either. Nonetheless, privacy enthusiasts see the opportunity to steer the CBDC-ship in another direction, by using an underlying technology for them that would limit targeted discrimination by the centralized authorithy. Something that works like cash... but in cyberspace... Ecash. One such implementation is [GNU Taler](https://taler.net/en/), another one is [Project Tourbillon](https://www.bis.org/about/bisih/topics/cbdc/tourbillon.htm). Usually, these kind of implementations use a cuck-version of the OG ecash, where only payers are anonymous, but not payees.\n\nAnyway, in this article we will focus on the implementation of **ecash on bitcoin**.\n\nAbout self custody\n------------------\n\nBitcoin as a whole is about sovereignty and liberation. **If someone else controls your money, they control you**. For the first time since we've stopped using gold, bitcoin allows us to fully take control back of our money. A money that doesn't corrode, a money which supply connot get inflated, and a money that cannot be easily seized. All of this is true for bitcoin. There is only one precondition: **You have to hold and use it self custodially**.\n\n### Using bitcoin self custodially\n\nThe problem comes in when using bitcoin in a self custodial fashion. For bitcoin to maintain the monetary properties mentioned above, it has to remain decentralized. This means it is hard to scale, which in turn means the use of bitcoin tends to become more costly as usage increases.\n\nSo even if we wish that everyone would use bitcoin self custodially all the time for everything, I fear it is mostly just a dream, at least for the forseable future. Even with trustless second layer protocols like the [Lightning Network](https://en.wikipedia.org/wiki/Lightning_Network), we are running into scaling issues, since at the end of the day, they are bound to the same onchain fee realities as bare-bones bitcoin transactions.\n\nFor most of humanity, it is financially not viable to pay even 1$ transaction fees for **every** transaction. Second layer protocol may bring the cost down a bit, but have other requirements. For example in lightning, you have an online assumption, to make sure your channel peers aren't trying to cheat. You need to have inbound liquidity to receive payments. There are cost associated with opening or closing payment channels, or rebalancing liquidity.\n\nOther upcoming second layer protocols like [Ark](https://arklabs.to/) may improve on some of these issues. It is definitely something to look forward to! But they will have their own trade-offs, most likely also cost related. The fact remains that all trustless protocols that use the bitcoin timechain for conflict resolution, will have to deal with this matter. This is the cost of trustlessness.\n\n### Soo... Don't self custody...?\n\n**NO! If you can, you should always use self custody. As much as possible!**\n\nPersonally, I use all the tools mentioned above. And I recommend that if you can, you should too.\n\nBut the fact is, not everyone can. Many would love to take control over their financial freedom, but the threshold for them to use bitcoin in a sovereign fashion is simply to high. So they will either remain in fiat slavery land, or they will end up using "bitcoin" through a custodian like coinbase, binance, or whatever banking service they have access to.\n\nI will also mention that for some usecases, enjoying the convenience of a custodian is just very attractive. Of course, this is only the case as long as the custodian plays by the book, and doesn't suddenly freeze-, or worse, run away with your deposits.\n\n### The right tool for the right job\n\nI don't beleive that one way of using bitcoin is better than the other. It entirely depends on which problem you are trying to solve.\n\nIf the problem is storing or transfering wealth, then of course you would want to do that on chain.\n\nIf on the other hand, you want to send and receive frequent small to midsized payments, you might want to get setup with a lightning channel to an LSP. Depending on how deep you want to get involved, you may even set up some infrastructure and become part of the Lightning network.\n\nIf you want to receive digital tips that you can later claim into self custody after they reach a certain threshold, you might opt for a custodial solution.\n\nIf you require certain properties, like offline peer-to-peer transferability, or cash-like privacy, you might choose an ecash system.\n\nIt doesn't mean that if you use one, you cannot use the other. You should use whatever is useful for the current problem you are trying to solve, maybe even using multiple tools in conjuction, if that makes sense.\n\nEcash vs Onchain vs L2?\n-----------------------\n\nFirst of all, we have to understand that ecash is neither a replacement for self custody, nor is it a replacement for trustless second layer protocols. They are irreplaceable with something that is custodial in nature, due to the simple fact that **if you lose control over your money, you have lost the control over your life**.\n\nSo. No one beleives you should prioritize custodial solutions to secure your wealth. Self custody will always remain king in that regard. Custodial wallets should be thought off as a physical spending wallet you can walk around with, even through the dark alleyways where it might get robbed from you. Keep your cash in there for convenient spending, not worrying about fees, liquidity, data footprints, channel backups, etc. etc. etc... These benefits obviously come at the cost of trust, that the provider doesn't rug-pull your deposit.\n\nI really like the user experience of custodial services. I would never put a lot of money into any one of them though, because I don't trust them. Just like I wouldn't walk around with $10000 in my physical wallet. The risk that it gets stolen is simply to great. At the same time, this risk doesn't mean I will get rid of my physical wallet. I think having a wallet with some cash in it is super useful. I will mittigate the risk by reducing the amount I carry inside that wallet. This is the same way I think about digital money I hold in custodial wallets, be it an ecash service or others.\n\nAll things considered, it is hard to argue that self custody comes even close to the UX a custodian can give you, due to the fact that they can take care of all the complexities (mentioned above) for you.\n\nSo then, why ecash?\n-------------------\n\nWe now know, that we are **NOT** comparing ecash with the sovereign bitcoin stack. We are comparing it instead to traditional custodial systems. This is the area ecash is trying to improve uppon. **So if you've chosen that the best tool to solve a problem might be a custodial solution, only then should you start to consider using ecash.**\n\nIt offers a more privacy preserving, less burdonsome and less censorable way of offering a custody solution.\n\nIt offers some neat properties like offline peer-to-peer transactions, programability, de-linkage from personally identifiable information, and more.\n\n**Here is an example, on how ecash could create a fairer environment for online consumers:**\n\nOnline services love to offer subscriptions. But for the consumer, this is mostly a trap. As a consumer, I would rather pay for a service right now and be done with it. I don't want to sign up for a 10 year plan, give them my email address, my date of birth , create an account, etc...\n\nOne way of doing that, would be for the service provider to accept payments in ecash, instead of having an account and subscription model.\n\nIt would work like this:\n\n1. The user creates ecash by paying into the service's mint. Hereby it is not required to use lightning or even bitcoin. It could be done with any other value transfer meduim the service provider accepts (cash, shitcoins, lottery tickets...).\n2. You use the issued ecash, to retreive services. This could be anything from video streaming, to AI prompts.\n3. Once you are done, you swap your remaining ecash back.\n\nIn a system like this, you wouldn't be tracked as a user, and the service provider wouldn't be burdoned with safeguarding your personal information. Just like a cash-for-goods transaction in a convenience store.\n\nI beleive the search engine Kagi is building a system like that, according to [this podcast](https://optoutpod.com/episodes/how-kagi-is-fixing-search-vlad-prelovac/). It has also be demoed by [https://athenut.com/](https://athenut.com/) how it would be implemented, using Cashu.\n\n**Here is another example, on how an event organizer can provide privacy preserving electronic payment rails for a conference or a festival, using ecash:**\n\nIf you have been part of organizing a conference or an event, you might have experienced this problem. Onchain payments are too slow and costly. Lightning payments are too flaky.\n\nDo merchants have to setup a lightning channel? Do they have to request inbound liquidity from an LSP? Do they have to splice into the channel once they run out of liquidity? In practice, these are the realities that merchants and event organizers are faced with when they try to set up payment rails for a conference.\n\nUsing ecash, it would look like this:\n\n1. Event organizer will run a dedicated ecash mint for the event.\n2. Visitors can swap into ecash when ariving at the entrance, using bitcoin, cash, or whatever medium the organizer accepts.\n3. The visitor can spend the ecash freely at the merchants. He enjoys good privacy, like with cash. The online requirements are minimal, so it works well in a setting where connectivity is not great.\n4. At the end of the event, visitors and merchants swap their ecash back into the preferred medium (cash, bitcoin...).\n\nThis would dreastically reduce the complexity and requirements for merchants, while improving the privacy of the visitors.\n\n**A bold experiment: Free banking in the digital age**\n\nMost bitcoiners will run out of the room screaming, if they hear the word **bank**. And fair enough, I don't like them either. I believe in the mantra "unbank the banked", after all. But the reason I do so, is because todays fiat/investment banks just suck. It's the same problem as with the internet platforms today. You, the "customer", is not realy the customer anymore, but the product. You get sold and squeezed, until you have nothing more to give.\n\nI beleive with a sound money basis, these new kind of free banks could once again compete for customers by provididng the best money services they can, and not by who can scam his way to the money printer the best. Maybe this is just a pipe dream. But we all dream a little. Some dream about unlimited onchain transactions (I've had this dream before), and some dream about free banks in cyberspace. In my dream, these banks would use ecash to respect their users privacy.\n\nClearing up misconceptions and flawed assumptions about ecash on bitcoin\n------------------------------------------------------------------------\n\nNot only, but especially when talking with bitcoiners there are a lot of assumptions regarding ecash on bitcoin. I want to take this opportunity to address some of those.\n\n### Ecash is an attack on self custody\n\nAs we've mentioned above, ecash is not meant to compete with self custody. It is meant to go where self custodial bitcoin cannot go. Be it due to on-chain limitations, or network/infrastructure requirements. Ecash is completely detached from bitcoin, and can never compete with the trustless properties that only bitcoin can offer.\n\n### Ecash mints will get rugged\n\n100% correct. Every custodial solution, be it multisig or not, will suffer from this risk. It is part of the deal. Act accordingly. Plan for this risk when choosing to use a custodial system.\n\n### Working on ecash is a distraction from what really matters, since it is not self custodial\n\nWhile it is true that improving self custodial bitcoin is one of the most important things our generation will have to solve, it doesn't mean that everything else becomes irrelevant. We see that today, in a lot of circumstances a fully sovereign setup is just not realistic. At which point most users will revert back to custodial solutions. Having technology in place for users that face these circumstances, to offer them at least some protection are worth the effort, in my opinion.\n\n### Ecash mints will retroactively introduce KYC\n\nYes it is true that ecash mints can do that. However, what would they learn? They would learn about the amount you were holding in the mint at that time, should you choose to withdraw. They would not be able to learn anything about your past transactions. And needless to say, at which point you should be one and done with this mint as a service provider, and move to someone that respects their users.\n\n### Ecash will be used to "steal" bitcoins self custodial user base\n\nI would argue the oposite. Someone that has realized the power of self custody, would never give it up willingly. On the other hand, someone that got rugged by an ecash mint will forever become a self custody maximalist.\n\nClosing thoughts...\n-------------------\n\nI hope you enjoyed reading my take on **ecash built on bitcoin**. I beleive it has massive potential, and creators, service providers and consumers can benefit massively from ecash's proposition. Using ecash doesn't mean you reject self custody. It means you have realized that there is more tools than just a hammer, and you intend to use the tool that can best solve the problem at hand. This also means, that to some the tool "ecash" may be useless. After all, not everyone is a carpenter. This is also fine. Use whatever you think is useful, and don't let people tell you otherwise.\n\nAlso, please don't take my word for it. Think for yourself.\n\nBest,\n@Gandlaf21\n\n- - - \n\nsource: `https://njump.me/naddr1qqt52cmpwd5z6mmw94pxjarrda5kuttfwdc8v6t3qgsvfdfkn2wmy73wr0yhkf065jrzm8705ar4q6clyuhc7jekhqfdh4srqsqqqa28uulz6g` \N 6136 \N 416722 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 14.787709110674 0 \N \N f 323322798 \N 4 234927932 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 432344 2025-03-10 08:47:37.87 2025-03-29 22:39:47.374 Hermes - A fedimint based lightning address server \N https://github.com/Kodylow/hermes 13753 \N 432344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6590425490401 0 \N \N f 483376713 \N 5 35516673 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 430840 2025-03-09 13:05:38.149 2025-03-29 22:39:47.375 Saving Satoshi - Interactive Bitcoin Learning Game \N https://savingsatoshi.com 9351 \N 430840 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.1013804243501 0 \N \N f 206405246 \N 1 158777342 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436612 2025-03-13 18:02:40.488 2025-03-29 22:39:47.376 BIP324 integration by sipa (merged) \N https://github.com/bitcoin/bitcoin/pull/28331 2111 \N 436612 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 28.1418005591687 0 \N \N f 296729759 \N 3 90133478 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 14:29:58.783 f \N \N \N 0 0 0 0 2 0 0 385662 2025-01-30 10:26:12.938 2025-03-29 22:39:47.376 Musk Toying With Bitcoiners Again? It looks like Elon is at it again, messing with bitcoiners. I guess he is playing with X/twitter hashtags. I'll never forget his laser eyes to doge coin game, nor his embrace of the energy FUD narrative. \nI'm curious. Do SN stackers still put faith in this guy regarding bitcoin? He seems to retain loyal supporters no matter what. \n\nOne word:\nNostr \N 17526 \N 385662 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.63780967442776 0 \N \N f 822807471 \N 6 208574549 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408408 2025-02-18 18:59:15.422 2025-03-29 22:39:47.599 How to escape to El Salvador when SHTF This is a special guide, for all those bitcoiners looking to escape from tyranny and go to El Salvador.\n\nThe guide is a reply to the latest news about US Senators Kyrsten Sinema of Arizona and Cynthia Lummis of Wyoming have introduced Senate Bill 884, also known as “[Improving Digital Identity Act of 2023](https://www.congress.gov/bill/118th-congress/senate-bill/884?s=1&r=11).” \n\nIf this bill passes both chambers and is signed into law, it will require all Americans to have a valid digital ID.\n\nIF they want to connect to the internet, open and maintain a bank account, obtain a passport, and gain access to medical care.\n\nI hope you will enjoy it 😂😂😂😂\nhttps://darthcoin.substack.com/p/how-to-escape-to-el-salvador-shtf \N 1505 \N 408408 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.21612592648513 0 \N \N f 149640958 \N 1 219127129 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423004 2025-03-02 21:20:20.849 2025-03-29 22:39:47.603 Things You Would Tell Yourself Prior to Launching Lightning Someone just mentioned they are starting out on the Plebnet telegram and asked a few questions and it got me thinking about what I would like to have known before I started my first node.\n\nHere's a non-exhaustive starting list off the top of my head (but what about you, comment with yours):\n\n1. Launch a testate/regtest/signet node or cluster of nodes and play with rebalancing tools and other sidecar apps—always keep your testnet/regtest/signet nodes running so you can test software/hardware upgrades before enabling them on your main node. On testnet, you can [connect to other testnet nodes](https://mempool.space/testnet/lightning/node/03eb9a1df4d067f7e9575dae8fd0c471d2d14694dee34772b3494c4819c365b796), and on regtest, you can just spin up a bunch of your own nodes and test. Using Multipass, Proxmox, or raspberry pi nodes is great for test clusters. Getting testnet/signet coins is a huge pain, but there are ways\n2. Don't open tiny channels or liquidity pool loops with new nodes that don't have contact info (open very intentional channels to nodes that have contact info and that you can build a relationship with). \n3. Make a plan for your first set of 5-10 channels and batch open them in one go to save on opening fees, except for whatever channels you can arrange dual-funding to open. Generally, if you are not dual funding, use batching to save on fees when opening.\n4. Tune your node configuration settings (and understand all of them in detail before you launch)\n5. Your first set of channels should probably be around the same size (e.g. you might want to open 5-10 2M or 5M sat channels if you have 0.1-0.5 BTC to start out)—if you open a 10M channel to one node and four 1M channels other nodes, that one bigger channel will be wasted since you can’t send anything bigger than just under 1M through your node anyway. \n6. Look for a triangle swap that has really good partners and balance the triangle immediately after opening (again, coordinate fees and activities with your node partners and use your testnet cluster to learn hands-on)\n7. Be mindful of your startup hardware. A lot of nodes die because they are using cheap external HDD/SDD attachments to a raspberry pi. These are great for your test nodes with fake funds, but use better hardware or cloud hosting like Voltage for your production node (I almost launched my first node on a raspberry pi, luckily dodged a bullet)\n8. Be mindful of database issues—this is the most common cause for nodes dying and losing funds. If you are on LND and are using channels.db (default), make sure you have good hard drive storage and RAID redundancy (or as some node runners have had success, a plan to test and migrate your M2 drives every few months). If you are running a custom LND with postgreSQL (e.g. https://github.com/blckbx/lnd_postgres), think about database replication and backup. Whatever you decide for your software/hardware needs, make deliberate choices rather than just installing and running whatever is default. Also think about this when you plan for your failover scenarios. Get a UPS but you might want your network to fail before your node shuts off to prevent HTLC updates and db writes during what could be a poweroff event\n9. Use an auto-fee tool and ensure you have good partners that do the same to make rebalancing economical for each other\n10. Beware of opening your first channels directly to sinks (large nodes that just eat your inbound liquidity if you set the rate too low and you don’t see that come back for a long time if ever)\n\n- Happy noding from Zap-O-Matic: [026d0169e8c220d8e789de1e7543f84b9041bbb3e819ab14b9824d37caa94f1eb2](https://amboss.space/node/026d0169e8c220d8e789de1e7543f84b9041bbb3e819ab14b9824d37caa94f1eb2) \N 11423 \N 423004 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.8795175184498 0 \N \N f 0 \N 0 200253272 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442339 2025-03-18 14:17:53.83 2025-03-29 22:39:47.364 Who are your Stacker News Influencers As stacker news is growing, they are some nyms(account) that stands out on how they interact and post on the platform. Everyone knows not to go at it with @Darthcoin, @K00b is the ever present but text to reason personality. @Undisciplined and @grayruby owns the meta sub sections. @Onions got layers with one being a shitcoiners blocklist. \nThey are may of these stackers we look up to for their contents, who are yours?\n \N 19655 \N 442339 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.55141552940779 0 \N \N f 416059195 \N 2 27992801 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 337252 2024-12-21 16:58:44.955 2025-03-29 22:39:47.365 3 Stacker News Improvement Ideas **1. Add Follower Graph**\n\nI would like the ability to 'follow' other stacker news users and have some kind of view that shows me all the posts from users I follow with the same time / sat value algorithm that the main pages use. This would give me the ability to 1) catch up on the best posts from people I follow and 2) find good posts early by following people I know post interesting things. The second point is also great for the earning incentive because it gives people another route to be first at upvoting great posts.\n\n---\n\n**2. Reduce Territory Fees**\n\nThe current cost of territories is a barrier to entry - and also incentivises territories that generate a lot of posts rather than very niche territories that maybe only rarely get posts but deliver incredible value with little hidden gems of the internet. I would love to see more niche territories like this and it would be cool if the incentives supported this by having lower fees. I think part of the issue here is the drop-down UI to select territories makes them feel like a limited list that need to generate a lot of content. Why not just surface territories in search with an option to pin your favourites?\n\n---\n\n**3. Inbox View**\n\nI would like an option to save a post to some kind of inbox / read later list as often I'll spot a post that is quite long that I'd like to read but don't have the time immediately. I know the bookmarks feature exists and can be used for this but I think it's a slightly different thing more aimed at saving top posts to come back to rather than more of an inbox that I can check off the list once I've read the post.\n\n\n---\n\nAnyway just some ideas - overall stacker news is amazing so well done @k00b @kr @ek keep building! \N 20691 \N 337252 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.32600810541047 0 \N \N f 380020351 \N 2 100734231 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458173 2025-03-29 03:47:39.573 2025-03-29 22:39:47.366 SN Feature Request: add Lightning addresses to sat forwarding If someone isn't on SN, but I want to share the sats from a post, it would be great to be able to forward it to their Lightning address. \N 8326 \N 458173 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 4.42659129683651 0 \N \N f 122739971 \N 2 163009150 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 449515 2025-03-23 12:11:00.063 2025-03-29 22:39:47.367 The unsung Heroes of Bitcoin, Cryptography # The unsung Heroes of Bitcoin, Cryptography\n\nI'm writing this post directed at Bitcoin enthusiasts that are not cryptographers. If you are a programmer you might have heard of some of these names. \n\nThe brilliance of Bitcoin is imo how Satoshi did not invent a new building block but elegantly combined preexsisting classics of cryptography. Standing on the shoulders of giants. But every story about giants has its side characters. \n\nSo, let's take a look at the side figures in the development of cryptography:\n\n## Vigenere\n\n![Vigenere](https://upload.wikimedia.org/wikipedia/commons/1/1a/Vigenere.jpg)\n\nOne of the most foundational achievements in Cryptography is the concept of perfect security (in symmetric encryption). It is mainly attributed to the One Time Pad nowadays. But Vigenere reached almost the same conclusion based on letter-permutations instead of bitwise xor in the 1500s without the theoretical groundworks that the later One Time Pad had.\n\nEverybody in cryptography knows Claude Shannon. He was for sure a great man creating the very foundations for modern cryptography but he's not as underrated. Other notable figures in this field are Frank Miller, Gilbert Vernam etc.\n\n## Kerckhoff\n\n![Kerckhoffs](https://upload.wikimedia.org/wikipedia/commons/8/83/Auguste_Kerckhoffs.jpg)\n\nIn the 1800s Kerckhoff formulated the principle that all cryptographys security should only be based on the key and not the system. He said it a little differently but the thought still stands.\n\n> « Il faut qu’il n’exige pas le secret, et qu’il puisse sans inconvénient tomber entre les mains de l’ennemi. » \n\n## Friedman\n\n![Friedman](https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/William-Friedman.jpg/800px-William-Friedman.jpg)\n\nWilliam Friedman broke "code purple" in WW2 which was not only instrumental for the free world winning against the Japanese but also maybe the reason cryptography came into institutions, universities and companies in the US.\n\nEverybody knows about Alan Turing inventing basically modern computers to beat the Nazis, few people know about William Friedman and his later to be wife Elizebeth Smith basically reinventing cryptoanalysis from scratch.\n\nAnother funny story about Friedman: His first employer was a millionairs playground who didn't know anything about cryptography and basically thought it wasn't important but very fun and interesting to pour his endless wealth into.\n\n## Adleman\n\n![Adelman](https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Len-mankin-pic.jpg/573px-Len-mankin-pic.jpg)\n\nEverybody has heard about RSA . But even a lot of people that know the brilliance of prime factorization based crypto don't know why we talk so much about Rivest and Shamir and so little about Leonard Adelman. Sure, especially Shamir has achieved a lot a lot more - he's basically the DaVinci of crypto...\n\nHave you evere wondered why "RSA" isn't alphabetically?\n\nIn the development of RSA Rivest and Shamir were inventing new ideas and algorithms all the time and then running over to Leonard Adelman who was trying to break it or build a mathematical proof around it. It's the underrated job in this development process. But not at all less important. Certainly not so much less important to write his name last.\n\nI think Adelmans contribution to humankind is so underrated, don't forget him when mentioning Whitfield Diffie, Martin Hellman, Adi Shamir and Taher Elgamal.\n\n## Chaum\n\n![Chaum](https://upload.wikimedia.org/wikipedia/commons/thumb/8/82/David_Chaum_at_Web_Summit_2022.jpg/1280px-David_Chaum_at_Web_Summit_2022.jpg)\n\nDavid Chaum might not be as unknown to non-cryptographer Bitcoiners here. Basically Chaum introduced in 1990 anonymous eCASH with his company DiGiCash. It did not *really* solve the double spend problem and it was still a centralized currency. But he was so far ahead and he is the godfather of all that came later. He almost cashed out big with Microsoft but did not because he had idiotic demands. I can't speak for his actions after 2009, some of you guys probably have opinions about that.\n\n## Ulbricht\n\n![Ulbricht](https://upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Ross_Ulbricht.jpg/800px-Ross_Ulbricht.jpg)\n\nThe founder of Silk Road. Why is his contribution to Bitcoin underrated in my opinion? Because Bitcoins early days were highly dependent on people who ugently needed Bitcoin. For most of us the need for a decentralized hard money is a goal in pursuit of noble ideals. For Silk Road users it was an urgent necessity. \n\n## You\n\nokay, you know what cringe paragraph comes here. Blabla, you get the point\n\nThis was a fun writeup for me. I still know a lot of other stories that I want to tell, I could write a second post if you liked this one \N 650 \N 449515 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 23.9949436917179 0 \N \N f 262210379 \N 3 170761667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448470 2025-03-22 16:10:06.997 2025-03-29 22:39:47.368 How do I create a local bitcoin community? After the comments under my last few posts, it got me thinking about looking into this issue. I know people have an interest, but there is no one running any interesting events on the topic of bitcoin.\n\nSo a question for you SN users. Maybe someone already has experience in creating and running communities to help people learn about bitcoin.\n\nWhat tips would you give, where is the best place to start?\n\nThanks. \N 4395 \N 448470 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 0.171217604548275 0 \N \N f 135855272 \N 1 63197125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 383400 2025-01-28 13:24:26.9 2025-03-29 22:39:47.37 Does fee affect your choice in which territory to post in? I just posted a health related science article. I initially wanted to put it in the ~health territory but advised against it as i could post it in ~science at a fraction of the cost. Even though it would have made more sense in the ~health territory. This happens more often than not, especially if I'm posting ~anon at 10x the cost.\n\nDoes anyone here consistently post in the optimal territory regardless of the cost?\n\nI'm asking as I'm still thinking about optimal fees for my own territory. I'm having it relatively low at 100 sats (and i usually reimburse you by zapping you), but i wonder what's the experience of territories charging 1000 sats for instance.\n\n \N 21709 \N 383400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.113974486678 0 \N \N f 144428073 \N 1 96461944 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444114 2025-03-19 17:13:29.227 2025-03-29 22:39:47.37 full-RBF by default in Bitcoin Core v28 \N https://github.com/bitcoin/bitcoin/pull/30493 18637 \N 444114 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 13.4703167743353 0 \N \N f 1322447866 \N 11 136825732 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403742 2025-02-15 06:48:22.84 2025-03-29 22:39:47.371 Strap In For The Bitcoin Dollar Lots of good bits in here. I highly recommend subscribing and donating. If anyone has a line to L0la, tell her subscribing only sends a weekly summary for some reason.\n\nI haven't read *The Bitcoin Dollar*:\n\n> Trump's comments on stablecoins, CBDCs, and mining "made in USA" seem as though they have been directly plucked from Mark Goodwin's [The Bitcoin Dollar](https://www.amazon.com/Bitcoin-Dollar-Economic-Monomyth-Mark-Goodwin/dp/B0CGG64YSM), and should give us further insight not just into the former President's potential Bitcoin strategy, but also into how Trump may attempt to increase international dominance in the face of a weak US Dollar – and the consequences this may have for the freedom of people around the world.\n\nThe blurb is fire at least:\n\n> Money is a technological tool that communicates settlement between parties. The ultimate goal of money is to transmit trust within context, typically over time and over space. The distinction of the need for value settlement between time and space has allowed for a separation between commodity and currency. The dollar has arguably been the closest we have seen to succeeding at both of these tasks until the launch of Bitcoin at the start of 2009. The transitional period we are about to experience is simply the current iteration of an eternal concept of humans and money – an economic monomyth. If this book could have been written without using the words dollar or bitcoin, it would have. Yet an economic system that grows and regulates itself purely by the actions of its participants and not its rulers is a distortion of the status quo. Bitcoin is a state change of money, settlement, and economic policy that takes us out from underneath the poles of the currency and commodity dichotomy. https://www.therage.co/strap-in-for-the-bitcoin-dollar/ 716 \N 403742 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4428707425819 0 \N \N f 105285065 \N 2 232116781 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 396141 2025-02-09 06:52:10.985 2025-03-29 22:39:47.372 A Nocoiners Concern With Bitcoin - "The NSA Created It" Hey All - I went to lunch with a coworker today and asked him what his biggest concern with Bitcoin was. He mentioned that the NSA created Bitcoin - and he said this with unbelievable conviction. He is one of those IT guys who goes down all the NSA, cybersecurity, surveillance, and CBDC rabbit holes. \n\nI told him that the NSA is involved in developing encryption tech like SHA, but just because Bitcoin uses this in their POW consensus doesn't mean with certainty that the NSA invented Bitcoin. Further, I indicated the NSA was involved in assisting law enforcement to take down the Silk Road, but this had nothing to do with Bitcoin the primary currency used in the Silk Road. \n\nThis coworker's final point was that the world government is trying to get us on digital money, and a stepping stone for that is to get people to do that through their own will (Bitcoin/Crypto). Then, the NSA has access to the backdoor(since of Bitcoin and will facilitate the transition of everyone into the CBDC digital prison. \n\nI don't agree with the final point he made. I don't think our government is competent enough to do this at scale, they can't even create an important website that won't crash. Since the code is open source, we can verify if there is a backdoor - and lastly, we don't need Bitcoin as the stepping stone for a CBDC. A CBDC is something many citizens will voluntarily take as long as they get a free stimmy out of it and are sold on speed, convenience, and ease of use. \N 4313 \N 396141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7417878355089 0 \N \N f 103327569 \N 1 117972607 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421123 2025-03-01 12:17:57.209 2025-03-29 22:39:47.373 Stratum V2: More Censorship-Resistant and Efficient Mining Protocol? # Stratum V2: More Censorship-Resistant and Efficient Mining Protocol? \n\nWhat is [Stratum V2](https://stratumprotocol.org/)?\n\nWhy is it important and why should you care as a Bitcoiner or a Bitcoin miner?\n\n## Bitcoin Is Not Fully Censorship-Resistant Money!\n\nLarge mining pools control the majority of the hashrate and therefore can censor transactions!\n\n![](https://m.stacker.news/30579)\n\nThis reality stems from the deficiencies in the mining protocol that most miners currently use called "Stratum" or "Stratum V1".\n\n## Stratum V1\n\nStratum V1 was created in 2012, but was designed for a time when Bitcoin mining wasn't as big of an industrial undertaking as it is now.\n\nStratum V1 gives a lot of power to mining pools and places trust on them to be "good actors".\n\nThe reason why individual miners pool their hashrate together is because they can get mining rewards in a more predictable way.\n\nWhen a mining pool wins a block reward, the payouts are divided between the individual miners in proportion to the hashrate they have provided.\n\n### How Does a Mining Protocol Work in General?\n\nIt's a set of communication rules between mining devices, proxies, and pools to contribute hashing power to the Bitcoin network. \n\nFor example, in Stratum V1:\n\nMiners connect to a server called proxy.\n\nA proxy aggregates connections from the miners and sends these connections to a mining pool.\n\nA mining pool puts together all transactions in a Bitcoin block and propagates them to the Bitcoin network.\n\n![](https://m.stacker.news/30580)\n\n## Stratum V2 Shifts Power From Mining Pools to Individual Miners\n\nOne significant downside of Stratum V1 is that it doesn't let miners create block templates (i.e. decide the set of transactions in a block).\n\nIf mining pools become compromised, e.g. if a government tells them to censor transactions, you might not ever get your tx through!\n\n### Build Your Own Block!\n\nIn Stratum V2, the protocol gives individual miners the option to build their own candidate block, taking this power away from the pool. \n\nThe pool will not be able to exclude blacklisted transactions from a block, nor will it be able to engage in denial-of-service attacks by writing empty blocks. \n\nThe responsibility of writing a block will shift from the pool to all of its miners. \n\nThe pool can still censor, but then a miner can find an alternative pool.\n\nIf a transaction is still censored by an alternative pool, the miner will continue to fall back, trying to find another pool, eventually resorting to solo mining.\n\n![](https://m.stacker.news/30581)\n\nGranted, solo mining is generally not feasible or profitable because payouts are so rare.\n\nBut mining pools are often businesses as well and they don't want to lose the hashrate that individual miners bring. \n\nStratum V2 is trying to change the incentives affecting mining censorship.\n\nThe question remains though whether large, corporate individual miners would be forced to censor as well.\n\nThen Stratum V2's censorship-resistant features would be less effective. \n\nHowever, a few large mining pools would give less enforcement points for a censoring government, whereas with a large presence of individual miners, enforcing could be more difficult.\n\n## From Braiins' Brainchild to an Open-Source Reference Implementation\n\nStratum V2 was developed in 2019 by [Braiins mining pool](https://braiins.com/) founders Pavel Moravec and Jan Čapek in collaboration with Matt Corallo @TheBlueMatt and other industry experts.\n\nBraiins wanted to decentralize the development of Stratum V2, and in March 2024, a group of developers released an [open-source reference implementation](https://twitter.com/StratumV2/status/1770937873111331309) called SRI (furthering the work on the protocol and adding additional features). \n\nStratum V2 consists of the mining protocol itself, and additional sub-protocols that allow different configurations about how the protocol can be used.\n\nMiners can connect to V2 with their V1 firmware through a translation proxy, such as [DEMAND pool](https://www.dmnd.work/).\n\n![](https://m.stacker.news/30582)\n\nBraiinsOS, by Braiins, by contrast, allows connecting directly to a V2 pool through a V2 proxy with V2 firmware.\n\n![](https://m.stacker.news/30583)\n\n## Why Switch to Stratum V2?\n\nWhy would mining pools adopt Stratum V2 then?\n\nWhy would they voluntarily give away the power of selecting the transaction set?\n\nWell, if Bitcoin is not censorship-resistant, its value proposition disappears. \n\nMiners tend to be mercenaries, the foot soldiers of the network, working in a very cut-throat high time preference environment.\n\nBy default, they care more about short-term profits than the future of a decentralized, censorship-resistant Bitcoin network.\n\nThis applies to mining pools as well.\n\nBut there are many benefits for using Stratum V2.\n\n### Improved Security and Performance\n\nApart from decentralizing block construction, Stratum V2 also improves the security and performance of mining.\n\nThese features can attract more miners to join pools using Stratum V2.\n\nIn Stratum V1, communications between protocol entities are not encrypted.\n\nThis can lead to man-in-the-middle attacks and hashrate hijacking. \n\nStratum V1 also uses human-readable code instead of binary (as in Stratum V2).\n\nBinary code improves efficiency because less packets of data have to be transmitted in a specific time frame. \n\nThis is important because being able to provide more proof of work can be decisive when competing for the block reward.\n\nEvery piece of inefficiency counts if you're not mining as efficiently as you can!\n\nTo give an example, there are on average 600 seconds in a Bitcoin block.\n\nIf you miss 1 second, you miss 1/600th of your revenue.\n\nBecause of bandwidth and latency improvements, also miners with weaker internet connections and less infrastructure resources will benefit. \n\nWith Stratum V2, miners can begin working on new jobs instead of waiting for pools.\n\nThis reduces the likelihood of empty blocks being mined.\n\n### What Stratum V2 Doesn't Fix\n\nStratum V2 doesn't address whether pools will pay miners the rightful amounts.\n\nIdeally, pools would be non-custodial and payouts would go straight to miners. \n\nIdeally, there would also be more transparency in the way pools calculate the amount of work miners contribute. \n\n### Benchmarking Tool\n\nStratum V2's open-source development group has stated that it plans to create a benchmarking tool to help miners make informed data-driven decisions regarding the benefits of shifting from Stratum V1 to V2.\n\nWhat do you think about Stratum V2? Do you think it will decentralize Bitcoin mining or make it more censorship-resistant?\n\n## Additional Resources:\n\n[Pavlenex - Stratum V2 (BTC Prague 2023 Keynote)](https://www.youtube.com/watch?v=mTXw3UZNT0Y) @pavlenex\n\n[Pocket Guide (Zine) to Stratum V2 by satsie](https://technicaldifficulties.io/zines/sv2_zine.pdf) @satsie\n\n[Master's Degree Thesis by Gabriele Vernetti (GitGab19)](https://github.com/GitGab19/Stratum-V2-Master-Degree-Thesis/tree/main) @GitGab19\n\n[Stratum V2 Video Explainer Series by plebhash](https://www.youtube.com/watch?v=lunZw865Zdw&list=PLZXAi8dsUIn0GmElOcmqUtgA5psfFIZoO) @plebhash\n\n[Bitcoin Magazine Podcast With Braiins Co-Founder Jan Čapek](https://www.youtube.com/watch?v=4r3hb2OqLBg)\n\n["Why Bitcoin Mining Needs Stratum V2", Bitcoin Magazine Article](https://bitcoinmagazine.com/business/stratum-v2-will-save-bitcoin-mining)\n\n["Past and future of bitcoin mining protocols: Stratum V2 overview", Braiins Blog Post](https://braiins.com/blog/past-and-future-of-bitcoin-mining-protocols-stratum-v2-overview)\n\n## Project Links:\n\n[Website](https://stratumprotocol.org/)\n\n[X (Twitter)](https://twitter.com/StratumV2)\n\n[GitHub](https://github.com/stratum-mining/stratum)\n\n[Discord](https://discord.com/invite/fsEW23wFYs) \N 896 \N 421123 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 20.3886119396459 0 \N \N f 753562569 \N 5 76410388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441533 2025-03-18 05:30:17.946 2025-03-29 22:39:47.364 El Salvador has its own mempool.space site with its treasury holdings \N https://bitcoin.gob.sv/ 20243 \N 441533 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.2744548593857 0 \N \N f 554701549 \N 4 58034554 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401113 2025-02-12 18:00:09.606 2025-03-29 22:39:47.367 Fun Fact Friday- Best Fact gets 10k sats It's Fun Fact Friday!\n\nShare your best facts for a chance to win **10k sats**.\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow will be the winner.\n\nDrop some knowledge stackers.\n![](https://m.stacker.news/43028)\n\n\nGood Luck! \N 9099 \N 401113 \N \N \N \N \N \N \N \N history \N ACTIVE \N 0.21654024126402 0 \N \N f 296262596 \N 4 63635628 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435958 2025-03-13 06:43:48.342 2025-03-29 22:39:47.368 Hey, this is Moritz together with the Alby team. Ask us anything you would like to know about Alby! I am [@MoritzKaminski](https://twitter.com/MoritzKaminski) contributor to [Alby](https://getalby.com/) as many others out there in the community.\n\nAlby brings bitcoin to the web with a browser-based app. You can send and receive payments with your normal browser on the Lightning Network. \nYou can set a budget for each website to conveniently spend without switching apps or looking for your payment details.\n\nYou can also use Alby to conveniently login into websites with Lightning logins, and\nIf you already have a Bitcoin Lightning wallet, it lets you connect your personal wallet or create a new one with Alby.\n\nAlby builds the bridge to access web apps on top of the Bitcoin Lightning Network. Developers now have a simpler way to onboard users and interact with the users´ wallets.\nAlby is open-source. Feel free to join our community on Telegram or follow us on Twitter. \n\nTopics to ask us about:\n- Bitcoin and Lightning\n- All things about Alby\n- Bitcoin Lightning web apps\n- Open-source contributions\n\n*Let’s start!* 🚀\n \N 17109 \N 435958 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 2.11463895425158 0 \N \N f 236980255 \N 2 88324988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 01:22:46.054 f \N \N \N 0 0 0 0 1 0 0 436508 2025-03-13 15:45:11.998 2025-03-29 22:39:47.371 A Provably Fair Off-Chain Lottery (and DLC) Protocol Hey stackers, i got something tasty for you today.\n\nI was inspired by @aftermath's post here: https://stacker.news/items/317289 \n\nI challenged myself to construct a lottery protocol where:\n- [x] Off-chain deposits and payouts are supported\n- [x] Players can verify the outcome was fair\n- [x] Players can prove to outside observers whenever the lottery coordinator cheats\n- [x] The lottery coordinator can prove to outside observers that it selected winners honestly\n- [x] Players remain 100% anonymous from each other; No P2P messaging needed.\n- [x] The on-chain transaction footprint is efficient and minimized\n\nTurns out, this is actually more than just possible, it can be generalized to work for any [Discreet Log Contract](https://bitcoinops.org/en/topics/discreet-log-contracts/) . \n\nThis means any kind of oracle-based contract (e.g. sports betting, derivatives, CFDs, etc) can be conducted off-chain without any of the DLC players needing to send or receive on-chain transactions or converse P2P. Participants in a DLC can instead use one untrusted coordinator who provides the on-chain capital while everyone else transacts off-chain. I call this person the 'market maker', and they can charge fees for their capital services.\n\n## review pls?\n\nBear in mind i just wrote this myself and finished it today. I'm hoping I didn't make any glaring errors which would make the whole protocol impossible. Please [have a read](https://conduition.io/scriptless/lottery/) and tell me if I'm crazy. I'll also be submitting this idea to the DLC-dev mailing list to get more opinions.\n\n## links\n\n- Blog article: https://conduition.io/scriptless/lottery/ ([Onion version](http://conduit4u4zsimbgvcatj6lyy36ot6k7w7bvbvivgwhbgzs7gfds7qad.onion/scriptless/lottery/))\n- Github PR (comments welcome!): https://github.com/conduition/conduition.io/pull/4 \N 8380 \N 436508 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.9674582858544 0 \N \N f 38398304 \N 1 71039305 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:08:33.274 f \N \N \N 0 0 0 0 1 0 0 421915 2025-03-02 04:59:20.608 2025-03-29 22:39:47.371 Black Friday & The Diderot Effect If there was ever a day to remember the Diderot Effect, it's today.\n\nHappiness doesn't come from Black Friday deals, but misery might.\n\n![](https://m.stacker.news/65262) \N 21291 \N 421915 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.39636418368387 0 \N \N f 358877011 \N 4 214408061 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432259 2025-03-10 06:49:53.909 2025-03-29 22:39:47.372 End user is not ready for UTXOs I work on a non-custodial p2p Bitcoin platform. Imagine Bisq in a browser.\n\nAlmost everyday, our users complain about high fees on the Bitcoin network. And we tell them it's actually pretty decent these days. \n\nThe reason they find it high is because they've got a bunch of UTXOs. Like in hundreds. For context, here's how our escrow works. Escrow txns spits out two UTXOs, one for the escrow and another for the platform fee. If for some reason, the trade gets canceled, user gets back both UTXOs. If it does go through, the buyer gets the escrow UTXO. All-in-all, you end up with a stash of a whole bunch of UTXOs if you've been trading long enough.\n\nNow when they have to spend these UTXOs, the fee appears higher than a normal txn because of high tx size based on the inputs UTXOs chosen. We've tried explaining this but 9/10 users do not want this. They want us to get rid of the UTXO system (basically, don't broadcast txns on chain, just hold BTC custodially) and let us withdraw at nominal fees. We are obviously not gonna go that direction.\n\nWe've also tried getting them to consolidate at low fee days, but nah, it's still too expensive. In the end, we end up losing these users to other custodial platforms. \N 670 \N 432259 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 17.4715421219037 0 \N \N f 53993310 \N 1 46834684 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404595 2025-02-16 01:47:39.16 2025-03-29 22:39:47.373 Voltage releases Redesign, Teams, and Pricing Updates to enable Bitcoin Builders \N https://voltage.cloud/blog/voltage-announcements/voltage-bitcoin-development-platform-redesign-teams-and-enterprise-pricing/ 661 \N 404595 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.462825925679 0 \N \N f 79859592 \N 1 219108966 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435847 2025-03-13 02:59:15.613 2025-03-29 22:39:47.373 Everyone Builds Software ## Everyone Builds Software\n### So let's get more people started by building toys together\n\nIn [Who Builds Software Matters](https://newsletter.foundersysk.com/p/who-builds-software-matters) I observed that AI would enable a new type of builder. People who are not traditionally software builders would now be creating software. And the resulting software would be much more personalized. But they would do so in tighter collaboration with machines and with each other.\n\nI received a lot of follow-up questions about what I actually had in mind for this kind of collaboration. So I wanted to present some specific examples to illustrate what I’m imagining.\n\n### An under-explored niche\n\nI’m curious about an underexplored niche to start: user-generated games. Games are often the gateway drug to programming. They were for me back in the 1980’s. It’s as true for kids today who spend hours modding Minecraft or scripting Roblox. Roughly half the world plays video games in one form or another. Everyone could imagine some change to a game they love. We can make more personalized, customized games. Take your favorite game and remix it with a new color-pallete, theme, skin, or soundtrack. Now you’ve created something.\n\n### End-user programming and sharing\n\nLLMs for generating software like this are raw today, but the pace of improvement is quick. Admittedly, the current workflows are poor. I often use LLMs to help me with basic coding tasks (e.g. when I’d like to bang out a simple python script). But there’s no way to generate and run a python script in-line with the code generation tool. So I end up copying and pasting the generated script into vi and running it in a local terminal session on MacOS. I’m still acting more like a software developer than an end user. Although I can run the software on my localhost, I can’t share a link to let other people run the same software. \n\nNow imagine such a simplified tool existed. I would love to use it to generate and share little scripts/tools I make which I find useful. But I could also use it to generate simple user-generated games. I could make games hyper-customized to my own interests. And I would want to share the resulting game I built with other people. I could ask an LLM to generate a crossword puzzle that would be relevant to people living in Mammoth Lakes, CA. My family spends a lot of time in Mammoth Lakes and we know a lot of people in town who would find it fun to play. It’s very personalized, but very niche. Tiny TAM. Software of the future will look more like this than some monolithic payroll service built for everyone. So if you think today’s software market is big I’ve got news: you ain't seen nothin' yet!\n\nSo I make a hyper-personalized crossword puzzle and share it with friends in the town of Mammoth Lakes, CA. You should be able to play by clicking a link on the web. Then you may choose to remix/fork/clone and make your own customization. Maybe you want to make one for people who live in Miami. Maybe you want to add timers for the playing of each board. Maybe you want a leaderboard of all players of your puzzle. Dream it up and make it so. Copy someone else’s work and improve it.\n\n### Remix, Share, Inspire\n\nIt's an idea whose time has come: can we make a platform for creating software by explaining the ideas in our heads? Imagine an end user chat service that interviews you about your requirements. Then it builds and deploys the software product you’re imagining as a link on the web.\n\nYou can share what you built. Other people can access it on the web. Now the magic: they can use a similar interactive process to remix the software you deployed.\n\nThis is the way open source software developers work using tools like Github today. But software developers are a tiny niche of all people. And open source software developers are a tiny niche of software developers. This pattern is how 8 billion software creators will create and collaborate. Discover an idea. Explain what you want. Deploy it. Share it. Inspire others. Create, remix, inspire. It's gonna be a wild future!\n\nIf you're building a project like this, I’m happy to play with early prototypes to give feedback.\n\n![Screenshot 2023-12-14 at 9.31.51 AM.png](https://m.stacker.news/8113) \N 5637 \N 435847 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.91149819513136 0 \N \N f 1144920474 \N 9 231300931 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:11:00.609 f \N \N \N 0 0 0 0 7 0 0 423362 2025-03-03 09:35:04.111 2025-03-29 22:39:47.374 Decrypting SN KPIs to define the "worthiness" of posting in the right territory I got inspired by the amazingly long and descriptive @davidw's post about [The data to help you become a better Stacker ⚡](https://stacker.news/items/441843/r/supratic) and decided to write this one.\n\nI'll be not even near to reach that kind of complexity and quality, but it inspired me to dive deeper and better understand which territories are worth posting (generically speaking - each post could be a different case itself) Let's see if I'm right!\n\nMy main issue was mainly related to the KPIs displayed on [top territories](https://stacker.news/top/territories/month/r/supratic), all that data isn't giving me what it was looking for. So I took that raw data from last month and started playing with it. I excluded all new and archived territories, and also those with zero revenue, and then followed this process:\n\n- `{rank}`, it's only the result of multiplying all KPIs, so not really worth looking at it. \n- I started defining the `{fee}` for each territory \n- Then a glimpse into the `{profitability}` dividing `{spent}` by `{revenue}`.\n- From there, I wanted to know the average `{engagement}` rate, dividing the number of `{comments}` by the number of `{posts}` for each territory. I thought it's kind of helpful to know hoe many comments in average one could expect... more or less!\n- `{revenue/post}` could be an interesting metric for territory owners\n- The `{worthiness}` it's the result of `{revenue/post}` less `{fee}` kind of evaluate the risk of posting on a territory. When negative means that there's a high risk that the stack you spend for posting there will probably not return.\n- and finally the `{stackrate}` and `{spendrate}`, calculated respectively taking `{stacked}` and `{spent}` and divide them by number of `{comments}`.\n\nThis is basically what I got after few interactions:\n\n![airtable.png](https://m.stacker.news/19677)\nAvailable on https://airtable.com/appbITVfFIwEhKLXU/shr9wZyoIRnhjtnSF/tblgVT25tg1f4uLSO/viwkSe10W68yfNAH6\n\nYou could read any row as:\n\n> #### If I post in `{territory}` I'll probably need to respond to `{engagement}` comments, and I'll maybe earn `{worthiness}` sats.\n\nThis is probably not really an accurate output, as I assume the fee for posting might have changed already in some territories in the past month. All columns are displaying average values, and it will be probably be obsolete in the next week, so do not take it too seriously. It served the only purpose to share this post here in ~meta for obvious reasons, and hopefully get some more insights out of the default data.\n\nIt will be nice to have this data live somehow. But yeah... Just an idea!\n\nHope you enjoyed the ride! It could be fun to build better KPIs for SN. What do you think? \N 20912 \N 423362 \N \N \N \N \N \N \N \N science \N ACTIVE \N 13.0040491562214 0 \N \N f 1230433590 \N 7 217233566 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 436005 2025-03-13 08:07:14.833 2025-03-29 22:39:47.374 Can we take a moment to appreciate how far lightning has come I have a self-custodial desktop LN wallet connected to my full node running Core Lightning. Using it ...\n\nI fund a mobile neutrino wallet called Blixt for walking around Bitcoin. Using it ...\n\n* I fund a custodial Stacker News wallet so I can tip cool posts.\n\n* I also use Blixt to tip and Zap people on Nostr. \n\n* I also use it as a Lightning Address target for people that want to tip and zap me on nostr\n\nSo using all this software, I can permissionlessly transact how I want, where I want, outside banking hours, in whatever amount I want. I can open a channel using coinjoined bitcoin with a complete stranger. Bitcoiners at a meetup can pay me to build them a SeedSigner. With that bitcoin, I can zap someone, and in turn, someone can zap me on nostr for the lulz, and I can l, in turn, use that bitcoon to tip SN commentors for their insight.\n\nStep back a minute. Think about this.\n\nNone of the people who write and maintain these pieces of software work for the same company. They don't have operating API license agreements with each other. None of them needed permission to write the software that touches our bitcoin. And all their software interoperates with each other.\n\nAnd the end result? Pure, seamless electronic cash, slung around the world in peer-to-peer and face-to-face and value-for-value transactions. \n\nNot a single bank involved. \n\nWe are SO winning. \N 5703 \N 436005 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.23872187298183 0 \N \N f 91155899 \N 1 226025433 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 07:16:45.1 f \N \N \N 0 0 0 0 1 0 0 416644 2025-02-25 18:32:42.969 2025-03-29 22:39:47.375 Why don't wallets show addresses as mnemonic words? It's such a pain to check addresses when sending. Now I KNOW it would be long since you'd presumably convert to binary and then to mnemonics, and I'm too lazy to do the math. But imagine if instead of \n\nbc1qzyda53xqwkqruex3mzwvpja04x23r572mygpgfc90qckdw2cwwaqr2h70u\n\nyou saw \n\nfold laptop kitten marine impulse roast hundred brown \ndesk ride broken advice appear awkward job logic\n elevator boy alert above shiver thought grace tone.\n\nOr couldn't you just hash it and give an abbreviated version, since any change to it would change all the words? \N 714 \N 416644 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.196072829777 0 \N \N f 196445781 \N 1 179687266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 396692 2025-02-09 14:46:48.141 2025-03-29 22:39:47.366 Discussion: How much will the average person know about Bitcoin? Once we're on a bitcoin standard, how much will the average person really know about how bitcoin works?\n\nWe have a lot of fun discussion about mining, PKE, nodes, blockchains, etc, but a lot of that is way more technical than the average person has any desire to think about. \n\nHeck, right now we're in a place where most bitcoiners have some well-thought answer to the question "what is money", whereas most people haven't even thought about it. \n\nBitcoiners know WAY more about bitcoin/money/tech than most people will even after bitcoin takes over.\n\nWhat do you think people WON'T have much, if any, knowledge about?\n\nand\n\nWhat are the minimum necessary things people will need to understand about money and bitcoin for a bitcoin standard to function successfully?\n\n--------\n\nIMO:\n\nWon't know:\n- PKE\n- Hashing / energy / mining / difficulty adjustment\n- How blockchain works\n- How the lightning protocol works\n- Anything about the gold standard or Austrian economics\n- Anything about the Fed or Keynesian economics\n- What money is\n- Why you can't just print bitcoin dollars ("oh well, guess I'll just keep using my phone and this weird looking thumb drive")\n\n\nMUST know:\n- Self-custody (what it is and how it's possible)\n- What a seed phrase back up is (but not HOW it works)\n- Savings vs checking (hodl wallet vs lightning wallet)\n- who @darthcoin is, obviously\n \N 19403 \N 396692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6121653507769 0 \N \N f 163719814 \N 1 59629613 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 440548 2025-03-17 11:17:10.993 2025-03-29 22:39:47.368 Would you fight for the place you currently live? If there is an agressor (most probably a nation state) is attacking the region you live in: Would you fight or would you leave and find a peacefull place to live?\n\nEven if I really like the place I live and the people I know here I would probably leave and find a better place. I doubt its worth to risk my live (and the live of my familiy) to fight.\n\nAnother question then:\nWhat would happen if everyone leave? \N 717 \N 440548 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 19.423570274184 0 \N \N f 60059007 \N 1 72056370 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436253 2025-03-13 12:19:42.764 2025-03-29 22:39:47.369 Hello! New lurker here Hi, y'all can call me beetle :) im Siggy47's daughter and I have seen his love for this website and bitcoin and have been interested in making my own account for a while. I work in a coffee shop at the time being but I spend a lot of my time making items and managing for my small business I own with my friend. I don't know much about bitcoin but I'm here to learn and to also share some of my writing which I've been doing for over 10 years. I'm happy to be here! \N 20669 \N 436253 \N \N \N \N \N \N \N \N art \N ACTIVE \N 14.0140219326969 0 \N \N f 160063159 \N 1 197363856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:15:22.339 f \N \N \N 0 0 0 0 1 0 0 458227 2025-03-29 05:50:58.459 2025-03-29 22:39:47.372 Ex-NSA Chief: 'We Kill People Based on Metadata' (2014) > The U.S. government "kill[s] people based on metadata," but it doesn't do that with the trove of information collected on American communications, according to former head of the National Security Agency Gen. Michael Hayden.\n>\n> Hayden made the remark after saying he agreed with the idea that metadata - the information collected by the NSA about phone calls and other communications that does not include content - can tell the government "everything" about anyone it's targeting for surveillance, often making the actual content of the communication unnecessary.\n>\n> [...]\n>\n> "We cannot discount the risk, in light of the lessons of our own history, that at some point in the future, high-level government officials will decide that this massive database of extraordinarily sensitive private information is there for the plucking," the President's Review Group on Intelligence and Communications Technologies said in a 300-page report.\n>\n> The next month, Obama complied, announcing the metadata will no longer be collected by the government, but will still be stored by another entity and could be subject to government review.\n>\n> [...]\n\nOld but gold. Best part:\n\n> We cannot discount the risk [...] that at some point **in the future, high-level government officials will decide that this massive database of extraordinarily sensitive private information is there for the plucking** [...]\n>\n> Obama complied, announcing the metadata will no longer be collected by the government, but [...] **could be subject to government review**.\n\nhttps://media1.tenor.com/m/hixSWGnlmQ8AAAAC/wow.gif\n\nAnother good part for me is that I heard this quote ("we kill people based on metadata") from Michael Hayden for the first time in a lecture about privacy-enhancing technologies.\n\nI think the term [_based_](https://www.urbandictionary.com/define.php?term=based/) was never more fitting for a lecture. https://abcnews.go.com/blogs/headlines/2014/05/ex-nsa-chief-we-kill-people-based-on-metadata 21514 \N 458227 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.1920918827778 0 \N \N f 2627821396 \N 22 245646307 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 2734 2022-10-19 15:25:39.647 2025-03-29 22:39:47.374 Sunday Survey: Do you mine? \N \N 21040 \N 2734 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.62064142115026 0 \N \N f 731057127 \N 6 85117905 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 404172 2025-02-15 15:59:44.926 2025-03-29 22:39:47.374 The shady world of Brave selling copyrighted data for AI training **After reading this, will you continue using Brave Browser?**\n\nBrave has lost credibility many times. Let us count the ways. Never made their browser fully open source so it can be packaged for free software Linux distros. Lied about Bing results and data sharing with Microsoft. Got caught leaking client fingerprints on certain sites that they shared data with, to make users identifiable, even in Incognito and Tor modes. Got caught fudging their BAT token opt in to rip off creators and enrich Brave corp instead. Caught censoring and manipulating search results, under the influence of Microsoft. Now using client browser data to train some potentially dangerous AI. Do not use Brave. They have finally lost all their credibility.\nhttps://stackdiary.com/brave-selling-copyrighted-data-for-ai-training/\n\nBrave - Spyware Watchdog: all the feature included to spy on your browsing\nhttps://spyware.neocities.org/articles/brave \N 20554 \N 404172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3388268843522 0 \N \N f 32682241 \N 1 111984357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407290 2025-02-17 22:08:23.393 2025-03-29 22:39:47.374 How To Avoid Bitcoin Social Engineering Attacks \N https://www.tftc.io/how-to-avoid-bitcoin-social-engineering-attacks/ 14271 \N 407290 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.2947425597494 0 \N \N f 760848997 \N 6 94433138 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435970 2025-03-13 07:18:45.017 2025-03-29 22:39:47.376 Writer Review: 5 Writing Platforms that Pay Beginners (2023) # Writer Review: 5 Writing Platforms that Pay Beginners (2023)\n\nThis is a video by a writer I don't know that showed up in my YouTube feed.\n\nI watched it because as someone who works on SN, I want to know what people think about other writing platforms and how they work since I see SN as competing with them to some degree.\n\nShe has two categories for writing platforms: payment per view vs payment per job.\n\nThe first three pay per view and the last two are job boards.\n\n## 1. [Medium](https://medium.com/)\n\n- Medium = Twitter (social media platform) + Wordpress (blogging platform) + getting paid to write\n- everytime a paid member reads one of your posts, you earn a small portion of their membership fee\n- membership fee for readers: $5 per month\n- this means you get paid 2ct per view / $20 per thousand views\n- no membership: two stories free per month\n- to get paid as a writer, you need ~at least 100 followers~ to be a member for $5 per month (updated since video was released)\n- no ads\n- you can write about whatever you want\n- what other people want to read matters more than what you want to write if you want to earn money\n- health, wealth and love are the evergreen topics that tend to perform best\n- medium partners with stripe, but stripe only partners with 40 countries\n- even if you can't / don't get paid, you can use Medium as a portfolio website\n- $10 minimum payout\n\n## 2. [Simily](https://simily.co/)\n\n- specifically for creative writing ("home for getting paid for creative writing")\n- 2ct per view / $20 per thousand views\n- very similar to Medium\n- no idea how stories get promoted: algorithm? chronological?\n- $10 minimum payout\n- temporary business model\n- later: switch to revenue sharing model similar to Medium where you get paid according to how many paying readers view your stories\n\n## 3. [Vocal](https://vocal.media/)\n\n- mix between Medium and Simily\n- if you're a Vocal+ member for $10 per month\n - 0.6ct per view / $6 per thousand views\n - 2.9% transaction fees on tips\n - $20 minimum payout\n - exclusive challenges\n - early access to new features\n- if you're not: \n - 0.38ct per view / $3.80 per thousand views\n - 7% transaction fees on tips\n - $35 minimum payout\n- unique feature: writing challenges with a prompt, guidelines and high prices like $20k (!)\n- you have to submit stories which Vocal checks before they go live (10-24h delay between submit and going live)\n- rubric can be confusing\n- paying money to make money is a strange concept\n\n## 4. [Scripted](https://www.scripted.com/)\n\n- you have to apply to join pool of writers\n- once you're in, you have access to a selection of jobs that clients upload\n- you need to pass a test that has only 5% acceptance rate but it seems simple (mostly grammar questions)\n- previous portfolio recommended (like on Medium) to get assigned to jobs\n- clients can't pay less than 7ct per word\n- access to different topics\n- there are good clients (have been on Scripted for 3+ years)\n- upfront work required\n- three ways to make money:\n\n1. Smart Match\n- client uploads brief\n- Scripted matches that to writers based on their profiles (probably AI)\n- the first who accepts gets the job\n- you need to be fast (she once waited was two minutes late and the offer was already gone)\n- client sets rate\n\n2. Proposals\n- client uploads brief\n- Scripted matches that to writers\n- first 5 quality proposals will be reviewed by client\n- you need to be fast but client has two weeks to review proposals\n- you can set your own rate along with proposal\n\n3. Job Board\n- clients upload jobs\n- you can propose\n\n## 5. [Text Broker](https://www.textbroker.com/)\n\n- you have to apply to join job board\n- you get a star rating between 1 to 5 stars\n- clients can upload job briefs and specify how high your rating must be to apply\n- you simply accept jobs (no application)\n- a couple 100 words at most ("short, snappy jobs")\n- you can also apply to join a team so you get regular assignments from clients\n- if you're a really good writer, you can receive direct orders from clients\n- low pay like 2ct per word ("insultingly low")\n- no upfront work for jobs required\n- confusing application, bad website UX\n- best out of 5 to get paid right away\n- $10 minimum payout\n\n## Conclusion\n\nWhat's seems to be unique to SN is that you can earn sats without any membership fee. However, we take 10% from zaps for sybil resistance since they are also used as a signal to rank content.\n\nAlso, you don't get paid by view but only per zap. So based on view count, you probably don't earn much on SN compared to these other platforms. But you get paid in bitcoin and there is no minimum payout.\n\nWhat do you think? Are there any features these writing platforms have that SN would benefit from? How well does SN compete with these platforms, in your view?\n\n---\n\n_Related: @plebpoet gave [Scribophile](https://www.scribophile.com/) a detailed personal review in 2022 [here](https://stacker.news/items/100276)._ https://www.youtube.com/watch?v=5jioCkBRRlw 8168 \N 435970 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.08179789034469 0 \N \N f 196519869 \N 1 138788529 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:18:12.655 f \N \N \N 0 0 0 0 1 0 0 455893 2025-03-27 11:56:05.648 2025-03-29 22:39:47.376 For Territory Bulls Only- Are You Ready For A Fire Sale? I know I might be in the minority here in my belief that territories have a great future on SN. I also know I'm not the only one. The nonsensical Samourai indictments have slowed territory development as SN has had to focus on wallet issues, but that won't last forever. \n\nThe macro craziness might provide us with rare opportunities, since bitcoin still trades as a risk asset in normie world. I'm hoping this may give me the ability to pay off my territories at a discount. \n\nIs anyone else thinking about this? Either current owners or those considering taking the plunge? \N 6555 \N 455893 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.0322582490479562 0 \N \N f 295917500 \N 3 2290593 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420847 2025-03-01 07:28:14.941 2025-03-29 22:39:47.368 You probably don't need a hardware wallet Like so many people, I see ads for hardware wallets all the time in my X feed, or even when listening to podcasts you get the occasional promotion for one of these devices.\nHardware wallet manufacturers and brands are a part of bitcoin life and culture. They’re sponsors, and they of course like to sell their devices. https://allesvoorbitcoin.substack.com/p/you-probably-dont-need-a-hardware 9476 \N 420847 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 1.1307732151592 0 \N \N f 114274834 \N 1 184637061 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436224 2025-03-13 11:51:53.813 2025-03-29 22:39:47.37 _Broken Money_ book club, part 3 Friends, countrymen, it's time to explore part 3 of Lyn Alden's book [Broken Money](https://www.lynalden.com/broken-money/).\n\nWe've done this before ([part 1](https://stacker.news/items/274195), [part 2](https://stacker.news/items/287069)) and this should have the same vibe -- I'll stir the drink a bit with some high-level comments inspired by these sections of the book, but you should feel free to comment in whatever way your heart moves you. Seriously, jump in! You may have focused on different things. Your curiosity might have been piqued by something mine wasn't.\n\nCaveat: I am neither a historian of money nor of the hermeneutics of Lyn Alden. I'm just some guy. These are just some thoughts.\n\nLet's do it, @k00b, @carlosfandango, @satscats, @ekzyis, @q, @lawndough, @0fje0, @OsomSala49491, @fred, @BTCMagician, @Undisciplined, @siggy47, @SpaceHodler, @cryptosensei, @scottathan, @Bullen.\n\nAnd what about you, @mallardshead? I'm particularly interested in your geopolitical takes.\n \N 760 \N 436224 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 21.3952680917572 0 \N \N f 104932857 \N 2 17614997 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:58:16.002 f \N \N \N 0 0 0 0 2 0 0 245118 2024-09-23 16:32:34.861 2025-03-29 22:39:47.371 Is Self Custodial Bitcoin Possible Outside of the Main Chain? I'm interested to know if there are known solutions, even if just theoretical, to enable people to have highly secure self-custodial Bitcoin, without main chain transactions for each person. If so, are there any technologies implemented or in the works that will achieve this? If they are not implemented yet, what needs to happen to get something to that state. Will there always be security reduction for off-chain technologies?\n\nPeople tout Liquid. It is a very useful tool, but it is a massive security tradeoff. \n\nFar as I can tell, Lightning can't easily be self-custodial yet. Can it be in the future? / what does it need to get there?\n\nFedimints will help provide trust-minimized custodial system, a massive security trade off.\n\nI've seen other tools mentioned, but I'm not sure of their relation to this particular question: Ark, Ecash, Mercury, etc. \n\nMaybe actually trustless sidechains that piggy back on Bitcoin's security are possible?\n\nObviously, there's probably lots of controversy related to this, but I would love to read people's thoughts\n\n \N 20864 \N 245118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3535189866077 0 \N \N f 374569635 \N 2 242903740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410589 2025-02-20 14:53:56.59 2025-03-29 22:39:47.372 👨‍🚀 We're releasing 𝗔𝗟𝗕𝗬 𝗚𝗢 - the easiest lightning mobile wallet This is our open-source mobile wallet interface to NWC-enabled wallets and nodes, now in appstores.\n\nSounds complicated, but it's super easy. \nGive it a try and tell us what you think - we're always happy to hear Stackers' feedback!\n\n** \nSEND / RECEIVE / GO **\n\n\nhttps://x.com/getAlby/status/1839033941279519133 https://blog.getalby.com/alby-go-the-easiest-mobile-app-to-use-bitcoin-on-the-go/ 21825 \N 410589 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.1195391325031 0 \N \N f 197068014 \N 3 228228074 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 447764 2025-03-22 05:50:27.412 2025-03-29 22:39:47.373 Coinkite and their toxic attitude towards users who highlight issues As some of you may or may not know, there has been some back and forth between Coinkite and WalletScrutiny, myself, others on their dubious reproducible build claim. In short, we have had issues getting THEIR reproducibility procedure to result in a "SUCCESS". Both WS and myself have reached out to them both via email and on Twitter and the response we've received from them (and NVK specifically) have been disappointing to say the least. From stating that we don't know what we're doing, to constantly pointing us to their guide which we had already said we had used, to outright threatening us with a lawsuit it's been absolutely abhorrent.\n\nMy only intention in contacting them about this issue was to highlight it and if possible, help them fix it or fix/edit their documentation to ensure everyone can get "SUCCESS". I wanted Coinkite to succeed. carl_dong and WalletScrutiny have since figured out what the issue was and have posted about it. For months this has been an issue and NVK has spent all of his time threatening and bullying anyone that pointed it out instead of doing what carl_dong and WS did and figuring out how to fix it. This is very telling and why I will never do business with them again. The fact that the ColdCard repo does NOT have their Issue tracker enabled is VERY telling and in retrospect should've been a red flag.\n\nIn conclusion, I would say this is a sort of PSA. Do you research and don't trust, verify. Seems like many in the community are always saying this ("dont trust, verify") yet few do. While ColdCard's hardware may be good, their owner and their practices are sketchy and that's a huge red flag. \N 18494 \N 447764 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 10.4419917056007 0 \N \N f 204120228 \N 1 73612360 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448054 2025-03-22 11:18:50.961 2025-03-29 22:39:47.374 The Most Underrated Bitcoin Platforms (Part 1) I’m literally tired of some bitcoin platforms not getting the love they deserve. So, I decided to do something about this. Maybe if it gets enough attention I might start a series. \n\nOne of the most underrated bitcoin platform to me is [Emeralize](https://emeralize.app). \n\nThe best way to describe Emeralize is as an orange-pilled version of Udemy. \n\nEmeralize gives you the platform to create courses and resources that people can learn from. \n\nYou might be telling yourself “I’m not smart enough to create a course” or “I have nothing interesting to share or teach other people”. \n\nAnd I get it — creating a course or a resource sounds intimidating. But I want to challenge you to see this platform differently.\n\nEveryone has something to share. You’d probably be able to come up with one thing that you do a little better than other people. Or maybe there’s something someone has asked you to explain to them that they couldn’t figure out on their own. \n\nThe reason why I find Emeralize so underrated is because it makes it really easy for you to upload your own course or resource and earn sats from it. \n\nMy point here isn’t its potential for you stack more sats. It’s the creation of another opportunity for you to give something back to the world. \n\nIn the past 2.5 years since I’ve been a bitcoiner, I’ve spoken to a lot of other bitcoiners and learned that there’s so much to learn from people within the ecosystem. I’m not just talking about only bitcoin-related information — I’m talking about non-bitcoin information like music, art, investing, business, productivity, and more. \n\nEmeralize has the potential to be a goldmine where we can learn from each other within the ecosystem about a variety of topics. You’re able to build your knowledge-base from content on the platform or develop a skill through creating content for the platform. Emeralize creates a symbiotic relationship whether you’re a creator or a consumer. \n \n\n## Manage Your Expectations \n \nIf you’ve gotten this far and I’ve piqued your interest enough to check out the platform, here are some things to note to manage your expectations:\n\n- You might not see many courses right now (as at the time this was written) but it shouldn’t discourage you from creating courses of your own or browsing through courses or resources you can consume. \n\nCourse creation is a valuable skill and what better way to learn than by doing. \n\n- Don’t expect to get so many views or sales of your courses overnight because you posted on the platform. Views or sales don’t miraculously happen. \n\nEven if Emeralize were a platform that attracts millions of views and search daily (which it could be in the future), the success of your course or resource depends on you 100%. \n\nWith the right kind of promotion and marketing, you can channel traffic to your course or resource on Emeralize. And that heavy lifting depends on you. \n\nIf you create a course and publish on Emeralize, talk about it on Twitter (or X). If you have a newsletter, promote it there. There are so many ways to go about it. \n\n \n## The Bigger Picture with Emeralize\n \nAll I shared is my based on my opinion. But allow me to take you a little deeper into the picture in my mind. \n\nAs bitcoiners we want to orange-pill people and get them to spend, earn and hodl bitcoin. \n\nOur common mission is hyperbitcoinization. We might follow different paths to make this happen but we’re all heading towards the same destination. \n\nWithin the last 2 years I’ve noticed an interesting trend in bitcoin education. I don’t want to go deep into it on this piece but I could write about it in the future. (Let me know in the comments if you’d like me to.)\n\nOne of the things I’ve observed is the new trend of introducing bitcoin without actually talking about it directly. \n\nI believe Emeralize could be one of those tools to make this possible. \n\nSay for example you created a course on “How to Use LinkedIn to Land A Job” and shared a post on LinkedIn about your new course. \n\nPeople click on the Emeralize link and they see that the course is 5000 sats. They also see an introductory post instructing people how they could get non-KYC bitcoin, download and set up a bitcoin wallet, and make payment. \n\nOf course, some will drop off. But there will be some who will be curious enough to try. And they eventually buy the course and learn from you. \n\nWithout mentioning much about bitcoin and how incredible it is, they learned how to buy bitcoin, create a bitcoin wallet and pay. \n\nMaybe these same people would start to wonder what else they could buy with the bitcoin they have remaining in their wallets and they buy another course on Emeralize. \n\nGradually they build up confidence to do more and start asking what exactly is bitcoin. Google then leads them to the endless rabbit hole of information that they can binge on. \n\nYou might see this example as something that could only happen in a perfect world. But I bet you there are bitcoiners who were on a similar journey that made them maxis today. \n\nBitcoin education is great and you can see its importance even in the hypothetical scenario I shared. But we also need bitcoiners to create non-bitcoin content and publish them on bitcoin platforms to help people learn about bitcoin through experiencing it themselves. Experience is an incredible teacher. \n\n \n## Give It A Try\n \nIn this piece, I tried my best to highlight a side of Emeralize that would appeal to the creator, the consumer, and the one looking for more ways to stack sats. \n\nBut if you take anything out of this let be at least one of these three: \n\n1. Start looking at bitcoin platforms with a bigger picture in mind. I when you’re developing a platform don’t forget the hyperbitcoinization goal. \n\nIf the platform is difficult to get non-bitcoiners then it defeats the purpose. \n\n2. Not every bitcoiner should be a bitcoin educator But you can support bitcoin educators through non-bitcoin content too. \n\nThere’s something you have that a non-bitcoin would find valuable and through the right tools your content can be a vehicle to orange-pill someone. \n\n3. It’s never too late pick up a skill. Course creation is a good skill to learn. When you go through some of the courses on Emeralize, you notice that creating a course may not be as intimidating as you think it is. \n\nWhat do you think about Emeralize? Would you give it a try? Let me know below. \n\n \N 21599 \N 448054 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.2298344748366 0 \N \N f 285277389 \N 2 48494968 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450470 2025-03-24 01:04:27.282 2025-03-29 22:39:47.374 My Letter to The Libertarian Institute I had something of an epiphany recently about needing to work for a cause I believe in, rather than just fiat mining. I was up all night thinking about the right fit and what my value proposition is. \n\nYou all have helped me realize that there's real interest in my perspective (thank you), so that's part of the proposition. \n\nI was also reflecting on how limited the presence of most prominent libertarians is in the bitcoin ecosystem, despite the immense interest in their insights. That made me realize I can make at least a two-fold impact for a libertarian/free-market organization: my own content and integrating them into the bitcoin community.\n\nThis is the first draft of a letter I'm planning on sending to the Libertarian Institute, which is run by the great Scott Horton. I'd love your feedback on this letter. The aim of it is simply to pique their interest and generate a follow up conversation.\n\nAs it happens, the Libertarian Institute is based in Austin, so perhaps this will enable me to drop in on the SN HQ occasionally.\n\n----------\n\nDear Libertarian Institute,\n\nI'm reaching out to express my interest in joining your amazing institute. I’ve been following Scott’s work since 2007 and deeply admired the late Will Grigg’s articles. I believe I can add to the impressive scholarship you're already doing, while also helping you reach an audience that is very interested in your work and opening new fundraising opportunities.\n\nI finished my economics PhD during the pandemic. Like most new graduates, I took what work was available, but now I’m looking to dedicate myself to spreading libertarianism and sound economics full-time. Some of my interests are economic geography (voting with your feet, jurisdictional arbitrage, secession, etc), political polarization, parallel institutions, bitcoin, and climate science. My academic training and research in those areas would give the Libertarian Institute another person to dissect the relentless stream of propaganda that comes out on those and other topics.\n\nFor my own sanity, I've been writing about libertarianism and economics at Stacker News, on the side, for the past couple of years. The positive reception to Rothbardian libertarianism and economics there has made me realize that our ideological camp is missing out on some low-hanging fruit. This site is part of the bitcoin ecosystem, where demand for Austro-libertarian thought is very high, but our scholars have a very limited presence. \n\nI’ve found bitcoiners to be eager and willing to donate to those who are adding value in their spaces. I can help the Libertarian Institute establish itself as one of the intellectual pillars in this emerging libertarian community, both through my own contributions and by making your existing scholarship more visible there, as well as setting up the necessary technology to receive bitcoin donations and interact with their social media spaces.\n\nI wish you all the very best. Thank you for your work. Hopefully, I'll have a chance to continue this discussion with you soon.\n\nSincerely,\nUndisciplined (not how I plan to sign the real letter) \N 998 \N 450470 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.80421989013007 0 \N \N f 440973837 \N 4 139750261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422717 2025-03-02 16:41:03.975 2025-03-29 22:39:47.376 zap-tunnel: A tool for non-custodial Lightning Addresses \N https://github.com/benthecarman/zap-tunnel 19854 \N 422717 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.7855708471117 0 \N \N f 1147243577 \N 9 165992175 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 51616 2023-08-18 12:39:56.13 2025-03-29 22:39:47.603 Meta Econ Takeover Day 1 Following @grayruby's very successful sports takeover (which has actually been completely unsuccessful at its stated aim), I'm going to start making my economics themed posts on the meta sub. This protest will continue until @k00b acquiesces to our demand for a dedicated economics sub, at which point we will peacefully vacate the meta sub.\n\nToday's entry is an article about the recent winners of the almost Nobel Prize in Economics.\n\n[Two Swedes on the New Economics Nobel](https://mises.org/wire/two-swedes-new-economics-nobel)\n"Two Austrian economists from Sweden provide commentary on the Swedish central bank's choice for this year's Nobel Prize in Economic Science." \N 17184 \N 51616 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.1793323434095 0 \N \N f 0 \N 0 19002003 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436255 2025-03-13 12:20:25.871 2025-03-29 22:39:47.369 Speed up your lnd boltdb compaction (and startup) speed `lnd` uses boltdb files (like `channel.db`) to store its data (unless you're already using the new SQL database backend). It's necessary to "compact" these files every now and then, as deleted data still consumes disk space. Compaction is just a "copy-paste" process, where only non-deleted data is copied to the new file - which hopefully is a lot smaller than the original file.\n\nDuring compaction, `lnd` reads and writes rather small updates from/to these files. If your file system is slow (HDD based), this massively slows down the compaction process. If you're using a file system where it is possible to (temporarily?) disable the "sync" feature, you can make use of this to make compaction much faster. In my case, using ZFS, I can use `zfs set sync=disabled tank/lnd` (where `tank/lnd` is the file system I use for the boltdb data). Note that you should ONLY do this for compaction. Once `lnd` is running normally, you absolutely need the "sync" feature. Otherwise, you're at risk of catastrophic financial loss (penalty transactions from your peers). However, for `lnd` installations that only serve as a watchtower service, this might still be an acceptable risk (as the watchtower itself is just a backup).\n\nAlso see https://github.com/lightningnetwork/lnd/issues/8502\n\nFurthermore, you can improve compaction and `lnd` startup time in general by reading the boltdb file once, for example using `cat channel.db > /dev/null`. This way, instead of taking data in smaller chunks, the OS can read the file sequentially (which, usually, is much master) and store its contents in memory for future access. \N 1213 \N 436255 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 21.5733354552996 0 \N \N f 227208571 \N 1 204911469 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:15:18.055 f \N \N \N 0 0 0 0 1 0 0 435073 2025-03-12 12:46:46.677 2025-03-29 22:39:47.371 SN Saturday Newsletter 3/2/24 Happy Sat-urday Stackers,\n\nPSA: [Million Sat Madness](https://stacker.news/rewards) is live. May the best stackers win!\n\n##### Top Posts\n1. Are core devs doing important, difficult, open source work or are they lowly paid whipping posts? [@Murch](https://stacker.news/Murch) confirms it's both.\n - [I want YOU for Bitcoin Core /s](https://stacker.news/items/442313)\n - 21.7k sats \\ 31 comments \\ [@Murch](https://stacker.news/Murch)\n2. [Cypher.Space](https://cypher.space/) is a bitcoin and nostr aware, self-hostable, hybrid blogging e-commerce server.\n - [Show SN: Cypher.Space](https://stacker.news/items/439315)\n - 9k sats \\ 25k boost \\ 16 comments \\ [@cypherspace](https://stacker.news/cypherspace)\n3. [PayPerQ](https://ppq.ai/) allows you prompt GPT4 without a subscription or credit card using [L402](https://docs.lightning.engineering/the-lightning-network/l402).\n - [Introducing PayPerQ (ppq.ai), your new default GPT4 experience, powered by LN](https://stacker.news/items/442023)\n - 10k sats \\ 25k boost \\ 42 comments \\ [@MattAhlborg0](https://stacker.news/MattAhlborg0)\n4. Tech giants meet quarterly earnings through greater and greater invasions of privacy. It's left a slice of the market to privacy conscious startups says [@davidw](https://stacker.news/davidw).\n - [The Privacy Pivot - 10 Tips for Startups](https://stacker.news/items/441238)\n - 17.6k sats \\ 13 comments \\ [@davidw](https://stacker.news/davidw)\n5. You don't need a full node to run a lightning node as [@DarthCoin](https://stacker.news/DarthCoin) explains.\n - [Tip of the day: How can I run a LN node without full Core?](https://stacker.news/items/439263)\n - 7.9k sats \\ 20 comments \\ [@DarthCoin](https://stacker.news/DarthCoin)\n\n\n##### Don't miss\n- [Who else is simply existing? Do you have a purpose? I don't.](https://stacker.news/items/442084)\n- [Pseudonymity Guide: How to securely create and operate a pseudonymous identity](https://stacker.news/items/438065)\n- [Introducing: Fountain Radio 🎶⚡️](https://stacker.news/items/442904)\n- [Capital Formation Weekly #1](https://stacker.news/items/438405)\n- [Which brings more peace if it happens in the next 12 months?](https://stacker.news/items/441333)\n- [If you could ask Michael Saylor one question, what would it be?](https://stacker.news/items/439390)\n- [Things You Would Tell Yourself Prior to Launching Lightning](https://stacker.news/items/439443)\n- [How to Be Dumb](https://stacker.news/items/440132)\n- [Are you optimistic about the future of the world?](https://stacker.news/items/443799)\n- [Do you believe in “Predictive Programming”?](https://stacker.news/items/438414)\n- [🏆 Top Builder: Final Round Teams Announced](https://stacker.news/items/437611)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [The data to help you become a better Stacker ⚡](https://stacker.news/items/441843)\n- [SN release: more nostr crossposting, zap undos, territories in profiles, more](https://stacker.news/items/439844)\n- [Million Sat Madness](https://stacker.news/items/444168)\n- [SN feature idea: notifications on links](https://stacker.news/items/438451)\n- [Have you connected an external wallet on SN?](https://stacker.news/items/440725)\n- [7 Habits of Highly Effective Stackers](https://stacker.news/items/444755)\n- [Spam, Spam, Spam horrible Spam: lessons learned from other forums' menus](https://stacker.news/items/442065)\n- [SN release: million sat madness, reward leaderboard, top stackers by value, more](https://stacker.news/items/445297)\n\n\n-------\n\n##### Top Monday meme \\ 53.9k sats \\ [@DarthCoin](https://stacker.news/DarthCoin)\n![](https://imgprxy.stacker.news/PeIp6NeIF8RYT5hXoWAfBPf6425qUiDorFQP1bu7TZM/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8xNzU1Mg)\n\n[**all monday memes**](https://stacker.news/items/439139)\n\n------\n\n##### Top Friday fun fact \\ 10.3k sats \\ [@HODLbitcoin](https://stacker.news/HODLbitcoin)\n> Spiral staircases in medieval castles are running clockwise. This is because all knights used to be right-handed. When the intruding army would climb the stairs they would not be able to use their right hand which was holding the sword because of the difficulties of climbing the stairs. Left-handed knights would have had no troubles, except left-handed people could never become knights because it was assumed that they were descendants of the devil.\n\n\n[**all friday fun facts**](https://stacker.news/items/444998)\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 15326 \N 435073 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 25.1228110508969 0 \N \N f 1049119928 \N 8 194262317 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:19:56.194 f \N \N \N 0 0 0 0 1 0 0 407916 2025-02-18 13:07:40.899 2025-03-29 22:39:47.371 Taking the ETF temperature on Hacker News An exercise I engage in from time to time is to read HN comments on a btc-related post to see what some really smart, tech-savvy, and ambitious people think about it. Spoiler: they overwhelmingly hate it, for assorted reasons. So then, in my mind, I see if I have rebuttals to their critiques. \n\nThis exercise has been useful, over time, although it wasn't useful this time. The critiques are overwhelmingly either a) ludicrous and uninformed, or b) reasonable but having some profound misunderstanding. It doesn't help that most of the btc advocates -- the few that there are -- also poorly understand bitcoin, and so their answers are almost always somewhere between _unsatisfying_ and _dumber than the critiques_. \n\nExcept for [this post](https://news.ycombinator.com/item?id=26238410) (from an older discussion) which is brilliant.\n\nAnyway, we are, as they say, still early. Somehow. Even after all this blood and toil. https://news.ycombinator.com/item?id=38943291 1175 \N 407916 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 26.6353813847411 0 \N \N f 124886046 \N 2 240801815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435115 2025-03-12 13:26:52.954 2025-03-29 22:39:47.372 Nostr + StackerNews have been lifechanging Hello there! \n\nI just wanted to share the recent BTC journey, \n\nAbout two weeks ago I came across Nostr and instantly fell in love with it, from there, I learned about Zaps and Stacker News. Two weeks later, I'm now building my first BTC Node and zapping on a daily basis. \n\nGrateful for you guys, let's keep growing! \N 11263 \N 435115 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.8852210226853 0 \N \N f 855096622 \N 7 19313406 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 09:47:47.019 f \N \N \N 0 0 0 0 2 0 0 435812 2025-03-13 01:43:34.844 2025-03-29 22:39:47.373 I'm jb55! AMA! Hey guys. I'm jb55. I've been in the bitcoin space since late 2010, was the CTO at Monstercat, a record label that was one of the first to accept bitcoin payments for music. I've been building on CLN: lnlink, lnsocket, etc. which is a cool way to access your node remotely using commando to build lightning apps. Recently I've been working on damus.io, a nostr client for iOS and soon the web.\n\nAMA! \N 685 \N 435812 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.3169698237522 0 \N \N f 466794533 \N 4 54175934 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:47:30.437 f \N \N \N 0 0 0 0 4 0 0 401283 2025-02-12 21:00:07.638 2025-03-29 22:39:47.374 Building A Bitcoin Media Empire in The Bear Market Building a media company in the bear market is tough. There has been a lot of sleepless nights wondering where tomorrow's cigarette money will come from. But because of people like you, we pull through.\n\nWe are trying to do everything V4V and have been able to cover all our infrastructure costs. To be able to fund the project long term, we will have to be able to pay people which will get expensive quick. Honestly, think the best route to go is to get some donations and hodl them for a cycle, but the work we're doing is important and probably shouldn't be put off a few years. \n\nAvoiding sponsorships is the primary goal. We want to road map sustainable V4V models of content creation because shilling is fake and gay. It's even worse to see that the spooks are the investors in a lot of these companies sponsoring everyone. The only real counter is the V4V.\n\nStacker has been one of the best places to get organic engagement, but also earn a little bit of cigarette money. We want to contribute to this community and watch it grow so we can afford more cigarettes for ourselves. \N 691 \N 401283 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.75549562430569 0 \N \N f 1068141872 \N 10 46516899 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 403864 2025-02-15 09:42:14.269 2025-03-29 22:39:47.375 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 10102 \N 403864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8627122269394 0 \N \N f 110217392 \N 1 60808449 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416142 2025-02-25 12:45:00.252 2025-03-29 22:39:47.376 Sunday Survey: How many UTXOs do you have? These must be UTXOs where you have control (quorum of private keys) \N 1130 \N 416142 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 7.89986245287405 0 \N \N f 868975 \N 1 56126669 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428166 2025-03-06 22:47:41.112 2025-03-29 22:39:47.598 My little miner just hit two blocks in less than 24h on OCEAN Have to commemorate this event as am not sure if it will ever happen again!\n![](https://m.stacker.news/32863)\n\nThis is a screenshot from **My Stats** page in the OCEAN dashboard\n\n1. [844990](https://mempool.space/block/00000000000000000001e6f22eb74d17f0ac5d2159133dbcfb4f657628a2bbd8)\n2. [845118](https://mempool.space/block/0000000000000000000287d43eeba2461bfd92ba3e8aab84411405faec2c4292)\n\n\nand here the pool view\n![](https://m.stacker.news/32864)\n\nThere's a way to verify that was my miner? \N 5293 \N 428166 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 29.782170214348 0 \N \N f 87250171 \N 1 204370526 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1952 2022-09-29 19:36:46.522 2025-03-29 22:39:47.369 Streaks I'm about to head out for a week or so to a place where it would be difficult, though not impossible, to access SN. More important than the technical difficulty, I find myself in need of a mental reset from my usual ways of being and allocating attention.\n\nNo big deal, right? Pretty natural.\n\nAnd yet I've noticed that I _actually care_ about my cowboy streak. It is a non-zero factor in my mind. The idea that I have given some smallish number of clock cycles to thinking of what to do about this -- whether to trivially maintain the hat with a few minutes of daily activity, or to let it lapse, and what it would mean if it lapsed -- is remarkable. I've never made such a consideration about my participation in an online thing before.\n\nThis seems really good and really bad. The really good part is that my existence in SN means this much to me. The really bad part is that this manifestation of what it means is not joyous or liberating. It's tapping into a different vibe.\n\nTo be clear, I don't think SN is doing anything wrong. It's just interesting to notice how these incentives and cultural elements are coming together here, now. Figured I'd share in case it promotes anything in anyone. \N 21148 \N 1952 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.1207636574783 0 \N \N f 332801684 \N 4 33166046 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433889 2025-03-11 13:46:50.948 2025-03-29 22:39:47.371 Going Dark: The war on encryption is on the rise — Mullvad >Under the slogan ‘Think of the children’, the European Commission tried to introduce total surveillance of all EU citizens. When the scandal was revealed, it turned out that American tech companies and security services had been involved in the bill, generally known as ‘Chat Control’ – and that the whole thing had been directed by completely different interests. Now comes the next attempt. New battering rams have been brought out with the ‘Going Dark’ initiative. But the ambition is the same: to install state spyware on every European cell phone and computers. https://mullvad.net/en/why-privacy-matters/going-dark 5852 \N 433889 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.2117494113531 0 \N \N f 935833604 \N 7 222907705 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 17:20:12.033 f \N \N \N 0 0 0 0 3 0 0 431124 2025-03-09 15:31:01.619 2025-03-29 22:39:47.372 Invalid F2Pool blocks 783426 and 784121 (April 2023) \N https://b10c.me/observations/11-invalid-blocks-783426-and-784121/ 13249 \N 431124 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 10.3390761286201 0 \N \N f 561320185 \N 5 114207232 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 356162 2025-01-04 19:31:49.779 2025-03-29 22:39:47.374 Human Action I was just talking about how great Human Action by Lugwig von Mises is with @elvismercury and since today's Mises Institute news letter linked to an old speech about the book I thought it was a perfect time to recommend it to the whole Stacker News community.\n\nIn my mind, this is *the* treatise on economics. Nowhere else will you find the underlying philosophical framework laid out so thoroughly. Some people really don't care about the philosophy (including most economists), but I find it fascinating.\n\nI started reading Human Action in undergrad. That was inspired by the first Ron Paul campaign. I didn't have a copy of the book though, nor an e-reader, so I read it on the Kindle app on my iPhone 3. It's a monster of a book and probably took me about three months to get through.\n\n## From the Newsletter\n\n[The Promise of Human Action](https://mises.org/library/promise-human-action)\nBy [Llewellyn H. Rockwell Jr.](https://mises.org/profile/llewellyn-h-rockwell-jr)\n> Indeed, if we look at the failure of the welfare state, the persistence of the business cycle, runaway inflation, and out-of-control debt, we'll see that each is addressed and predicted in Human Action. \N 15408 \N 356162 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.4031497738135 0 \N \N f 474722542 \N 3 90563187 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 409934 2025-02-20 01:59:28.248 2025-03-29 22:39:47.375 What kinds of conversation do you tend to AVOID? Why? Are there certain subjects or lines of thought that you know won’t go anywhere good, or you’re just otherwise exhausted from talking about it any longer?\n\nI’m sure @DarthCoin has a long list..\n\nAnd I know many bitcoiners feel this way about bitcoin talk itself 😅 are you the same way (outside of SN)?\n\nWhat other lines of conversation (in general) do you have a hard time tolerating? Why do you think that is? \N 6382 \N 409934 \N \N \N \N \N \N \N \N movies \N ACTIVE \N 16.3517154743046 0 \N \N f 655388476 \N 5 105945102 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 402316 2025-02-13 17:11:57.322 2025-03-29 22:39:47.376 Bitcoiners are awesome - lnaddress.me story I've been running [lnaddress.me](https://lnaddress.me) for couple of years now, it started with a decent list of available domains but over time the cost of renewing domains for offering a free service became too much so I slowly started removing them as they expired.\n\nlast year I've removed lightning.by from the site because of the same reason - renewal price.\n\nFast forward a while - couple weeks ago I get tagged by fiatjaf in a telegram group where [Sergey](https://nostr.at/npub10u66maeh62wjc5rsr8xquzerunge7d2vz5zcx60v446tq9esmdtqsshrul) was asking who runs the site and that he purchased domain that used to be available there and would like to give it back to the service.\n\nSo lnaddress.me again supports lightning.by LN addresses thanks to Sergey, and I have a bit more motivation to run this free service a while longer to support this awesome community! \N 20523 \N 402316 \N \N \N \N \N \N \N \N health \N ACTIVE \N 19.2503603386922 0 \N \N f 308075465 \N 4 64592806 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 430973 2025-03-09 14:42:18.41 2025-03-29 22:39:47.603 Name a scam that’s so ingrained, we don’t realize it’s a scam (besides fiat) Social Security 🙌 \N 21184 \N 430973 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.54072459425937 0 \N \N f 0 \N 0 148407552 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421622 2025-03-01 19:53:44.302 2025-03-29 22:39:47.606 An overview of recent non-standard transactions \N https://b10c.me/observations/09-non-standard-transactions/ 10291 \N 421622 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7735714533589 0 \N \N f 0 \N 0 28150925 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434813 2025-03-12 08:56:52.928 2025-03-29 22:39:47.369 Musig playground: send btc with many people while looking like just one person \N https://supertestnet.github.io/musig-playground/ 9242 \N 434813 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 10.3007121299517 0 \N \N f 390795247 \N 3 111740377 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 13:51:19.687 f \N \N \N 0 0 0 0 2 0 0 435944 2025-03-13 06:13:11.064 2025-03-29 22:39:47.371 SN release: random sort and NWC receives - In addition to `hot`, `recent`, and `top`, you can sort posts by `random` (via tsmith123 on github ... I forget your SN nym ... this was a great idea by someone whose nym I forget too)\n - It's a another experiment in evergreenness \n- You can now add an NWC receive string to your NWC attached wallet (via @ek)\n - For anyone using Alby Hub, their relay is a bit unreliable, but we've been in touch and they're working on it\n- Almost forgot: you can disable freebies in your settings, guaranteeing you can pay non-custodially for 1 sat posts/comments so they are fully visible\n\nThere were also a few bug fixes in here but that's the bulk of it.\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 9.25m sats to 27 contributors for 123 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/653915\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 11498 \N 435944 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 4.77361660090683 0 \N \N f 5057467535 \N 32 70514825 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:10:30.616 f \N \N \N 0 0 0 0 11 0 0 434595 2025-03-12 03:52:42.447 2025-03-29 22:39:47.372 Bitcoin 'unstoppability' as tea party A [recent post](https://stacker.news/items/434536) showed the distribution of btc hash power globally, and one of the [comments](https://stacker.news/items/434536/r/elvismercury?commentId=434683) on that post suggested that the amount of hashpower in China, despite that country's anti-btc policies, was evidence for btc's unstoppability. (This current post was originally a reply to that comment but grew in scope enough that I'm hoping it might kick off a broader discussion.)\n\nI've repeatedly heard arguments along the lines of _China couldn't even ban btc, look how futile it is, therefore btc has achieved escape velocity_ and my reaction is always bafflement. Do people really not remember the twentieth century? Do people not remember what happens when a nation-state is fully motivated and believes its survival to be at stake? \n\nThe patty cake of the modern era, with government's public and theatrical concern for people's feelings and rights, is not the historical norm. Getting wound around the axle with endless debates about whether it's actually okay to arrest people for stealing is a historical aberration. When powerful groups are really motivated, the gloves come off. And so, are we comfortable in saying that China has _really_ wanted to stop btc? Or has it only wanted to stop certain people from using it for capital flight, but certain other people, perhaps regime-insiders, get a free pass?\n\nI'm not nitpicking. There's a big difference between a country motivated by survival and one putting on a public spectacle to justify other actions.\n\nFor my part, I posit that we have not yet seen a world where nation-states view btc as a serious threat; and once we move into that phase, we will see, in earnest, how effectual they can be when they want to be -- it will be the era of internments, of massive violation of rights, of propaganda, of night-time door knockings. The 'opposition' that we've seen thus far will look like a [child's tea party](https://southpark.cc.com/video-clips/txgrkb/south-park-eric-s-tea-party) when this new wave comes. Btc may even still not be _stopped_, but as Kevin Kelly [showed](https://en.wikipedia.org/wiki/What_Technology_Wants), there's a lot of wiggle room in what it means to _stop_ something.\n\nThis is, of course, a hypothesis. I could be wrong, and hope I am. But I welcome other perspectives. \N 8535 \N 434595 \N \N \N \N \N \N \N \N health \N ACTIVE \N 24.1366834194774 0 \N \N f 302707249 \N 2 226422694 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:31:12.554 f \N \N \N 0 0 0 0 1 0 0 445941 2025-03-20 19:57:10.224 2025-03-29 22:39:47.373 Everything that turned out well in my life followed the same design process This appears to be about designing a life, but I'm convinced it applies to designing anything. It humbly puts to rest the idea that good design originates from a big, confident, immovable vision and argues a good design *unfolds* from feedback as you iterate from one small vision, informed by as much as information you can gather, to another. https://www.henrikkarlsson.xyz/p/unfolding 2749 \N 445941 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 20.4543974198143 0 \N \N f 511990707 \N 3 172909895 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 415180 2025-02-24 15:19:55.127 2025-03-29 22:39:47.374 Lightning Prisms | dergigi.com \N https://dergigi.com/2023/03/12/lightning-prisms/ 5694 \N 415180 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 20.3299591506425 0 \N \N f 226648093 \N 3 249883062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410135 2025-02-20 09:30:10.063 2025-03-29 22:39:47.374 What qualities distinguish someone as a high-value person? Many individuals are now openly expressing that they are considered valuable members of society, but what criteria are needed to classify someone as a high-value person? \N 670 \N 410135 \N \N \N \N \N \N \N \N health \N ACTIVE \N 20.3594438001263 0 \N \N f 725900725 \N 7 114542606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 414755 2025-02-24 09:24:29.301 2025-03-29 22:39:47.6 Is bitcoin based on human greed? I just had a little discussion with @DarthCoin about this here: https://stacker.news/items/180849\n\nTranscript:\n\n> @DarthCoin: You should not post to get sats, you should post to learn/discuss or teach others (especially shitcoiners) how bitcoin works.\n\n> @ekzyis: I think they will learn over time. They can post only thinking about "earning sats" but these posts will probably not earn them sats.\n\n> @brxyz: This. The incentive structure built into SN by and large deters shitposting and "sat farming". You very quickly learn that valuable content and contributions are what will stack sats. It's a win-win. Shit, just look at Darth's stack.\n\n> @DarthCoin: Sorry man, but that is proof of work.\nI didn't came on SN with the only purpose of "earning sats".\nAs you can see I also spend quite a lot. But not throwing with large amount of sats around. Hard work and NATURAL work (not shity bots) should be rewarded and promoted.\nAnd mostly because I am one of the oldest SN user. Why? Because I (still) have faith in SN.\n\n> @brxyz: That's what I'm saying, though. You come on here to create and share valuable content, and you're rightfully rewarded for that. Others may come here with the less altruistic intent to just stack sats, but they'll quickly realize that to do so they too will need to provide value.\n>\n> It's like a lane closure on a two lane road. Here on SN, the lane for spamming, shitposting, and karma farming is closed so everyone is forced into the V4V lane.\n\n> @ekzyis: Yeah, this so much.\n>\n> @DarthCoin, doesn't bitcoin mining work the same way? Miners don't care about providing value, they just want to "earn sats". But the incentives are such that they do indeed provide value (by enabling the bitcoin network). The game theory of bitcoin itself is built on human greed and turns that human greed into something that provides value.\n>\n> I would say the same about SN.\n\n> @DarthCoin: Greed will never create value. Will create only more greed and suffering.\nMiners (or at least not all) are not mining for profit.\nMost of them are mining to SECURE the network.\n>\n> You create value with your knowledge, with your experience, with your expertise in a field you control it well, with you helping others.\nNot with greed.\n\n> @ekzyis:\n>> Most of them are mining to SECURE the network.\n>\n> No they are not. Or do you really think most of them would keep mining without the subsidy and transaction fees?\n\n> @DarthCoin: I do. Stop me if you can.\n\n> @ekzyis: Huh, that's interesting. For me, that's pretty fundamental about bitcoin but you disagreeing with that is really surprising. I'll create a post about that so more people can join the discussion.\n\nWhat does the rest of SN think about this? \N 621 \N 414755 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 23.4358756036311 0 \N \N f 1995560955 \N 13 52691757 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416702 2025-02-25 19:26:45.816 2025-03-29 22:39:47.603 I need help (warning shitcoins may be involved) I need some help. Long story short I got scammed on a yield site. I knew it was a scam but it got away from me and now I’m in this situation. \n\nSo the scammy website is trying to pay me back what they owe me. They always say I need to pay some “fee” to get my funds back. But now this new method has me completely fooled on what’s going on.\n\nFor the record I don’t shitcoin but to have a chance to get back what I’m owed i figured hey what do I have to loose.\n\nSo the site had me download the coinbase wallet (this wallet is pretty slick I see why shitcoiners like it) and had me put in these details in the network section of the wallet:\n\n1. Download the Coinbase Wallet for NFTs and crypto.\n2. Open the app and go to Settings.\n3. In Settings, click on "Networks" and then tap the "+" button at the top right to add custom networks.\n4. Fill in the details for the new network as follows:\n- Network Name: BTC\n- RPC URL: rpc-testnet.zcore.network\n- Chain ID: 3331\n- Currency Symbol: BTC\n- Block Explorer URL (optional): www.blockchain.com/explorer\n5. Click "Add Network" to complete the addition of the new network.\n6. Once the settings are correctly in place, go to your assets and click the "Receive" button at the top right.\n7. Copy your Bitcoin wallet address and send it here.\n8. Also, copy your Ethereum wallet address and send it here.\n9. Wait for the assets to be credited to your wallet. It should take less than 24 hours if you've followed the instructions correctly.\n\nPlease ensure that you correctly follow each step to set up your wallet without issues.\n\nAfter about 24 hours an asset labeled “BTC” showed up in my coinbase wallet. Completely flabbergasted on possibly finally getting paid back. But then I was confused the balance wasn’t available. \n\nThen they instructed the following to make the “BTC” into the active balance of wallet the instructions are as follows:\n\nHere's how you can do it:\n\n-Navigate to the primary wallet address you've been using, often referred to as address 1.\n\n- Within your wallet, look for an option titled "Add wallets" or similar.\n- Select "Add address" within this section. This action will generate a new wallet address for you, which we'll call address 2.\n\n- Switch over to address 2.\n- Find and enter the "Networks" section.\n- Here, you'll need to delete the custom network that was previously added. \n\n- After successfully deleting the custom network from address 2, navigate back to your initial wallet or address 1.\n\nAfter I did that the “BTC” was now looks as if it is on the bitcoin network. I am completely confused on what’s going on here. \n\nWhen I try to send it anywhere the app just says “something is wrong”. I do think it’s an ERC-20 token of some sort but I can’t even send it to an ETH address. \n\nThe site is saying they used this method to pay other people back and I need to wait for the funds to unlock and for the network operator to give me instructions to send this “BTC” to my personal wallet.\n\nIf anyone can explain to me what the hell is going on I will pay them a 25k sat bounty. But the more detailed you are the more I will pay. If you are able to help me change this “BTC” to get the true value out of this mess then a massive award can be had.\n\n\nI know this is a bitcoin only site but I really need help on trying to understand this and I am hoping some stacker can help a fellow stacker. \n\nThanks \N 4177 \N 416702 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 13.1726149750366 0 \N \N f 0 \N 0 176530250 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434577 2025-03-12 03:24:35.602 2025-03-29 22:39:47.603 Cold storage without a hardware wallet You don't need a HHW in order to achieve cold storage for your bitcoin.\n\nShocking I know.\n\nIf you only have $500 worth of bitcoin, you probably don't want to spend $50-%250 on a HHW.\n\nIf you want to stack sats but you don't want to do it in a hot wallet you'll need two devices... Either two mobile phones or a phone and computer is fine. If any of the devices are Android, I would suggest flashing LineageOS, GrapheneOS, or CalyxOS to it first. This will help to "de-Google" the phone and increase your control over the hardware. That's for a separate post though and it's not a necessary step here.\n\n[Here](https://yewtu.be/watch?v=uljV_NcP3C4) is a 5-min video that covers the following method in detail utilizing Samourai and Sentinel.\n\nFor creating a wallet you can use Samourai, Envoy, Blue Wallet, Stack Wallet, or Sparrow. For the WoW (watch only wallet) you can use Sentinel (android) or Blue Wallet (iOS). See my previous articles for links to everything. \n\nThe flow looks like this:\n\n1. Generate a wallet whilst in airplane mode on **device A** (Samourai, Blue Wallet, Stack Wallet, Sparrow can all do this). \n2. On **device B**, import the xPUB, zPUB, or yPUB. \n3. After you've done that, delete the wallet from **device A**. Or keep the device offline and keep the wallet there.\n\nThis isn't for spending it's for stacking. One could spend even while the wallet remains offline. Simply create and sign the transaction, and send it to the Sentinel or Blue Wallet for pushing out to the Bitcoin network. By staying "cold" this would increase your security, but not your privacy. I would recommend using whirlpool first and then using the post-mix tools on Samourai or Sparrow. This necessarily requires the wallet to be hot. \N 632 \N 434577 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 4.24110270482448 0 \N \N f 488426755 \N 5 35650125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:40:53.887 f \N \N \N 0 0 0 0 2 0 0 422894 2025-03-02 19:08:26.469 2025-03-29 22:39:47.604 We tried to tell you motherfuckers \N https://www.jtwoodhouse.com/we-tried-to-tell-you/ 15409 \N 422894 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2395222991286 0 \N \N f 665360285 \N 5 4227887 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 443545 2025-03-19 12:12:20.773 2025-03-29 22:39:47.369 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/230633), and we have another 25,000 sats up for grabs for this week's winner. The sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 13348 \N 443545 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 11.8759763657702 0 \N \N f 1537888005 \N 12 112147606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 07:12:59.862 f \N \N \N 0 0 0 0 9 0 0 222059 2024-08-27 21:53:41.956 2025-03-29 22:39:47.371 The first part of my summary on Harari's "Sapiens" ‼️ ## Disclaimer\n\nI've tried my best to copy-paste the summaries' contents into SN, but it's simply too much of a pain in the ass at this point in time, since somehow everything is set to zero - whether this is done by SN or by copying from the get-go, I don't know, but I sure as hell ain't gonna spend another hour reinstigating every detail I've gotten right in the document.\n\n@k00b, maybe you can have a look at this yourself, try copying the first page and see how it gets entered into SN - redoing one page is okay, but ten? Not so much.\n\nTherefore i'd like to ask you to please have a look at the original document instead.\n\nI've got the original version written in a more native language for me - German, and tried my best translating the contents with the help of ChatGPT, although I don't think it's on-par with the German version, but you tell me.\n\n## Good-to-know's;\n\n*The attached document only contains the first 40-ish pages of the book, and is still a work in progress. The summary is solely based on the books pages, there's no additional research done and mingled in.*\n\n*Written using my own words as much as possible*\n\n## With that out of the way; Please have a good read-through, and if possible, relay any *constructive* criticism my way, for i'd *really* like to improve on the work I've done so far, which wasn't little.\n\nThere's probably some 16-ish hours of work in that document by now. 😅\n\nThe people that explicitly stated their interest in the summary are; @siggy47 @cleaningup12 @OriginalSize @Coyote_Cosmico, enjoy!\n\nAnd since @ekzyis expressed his interest in military history, I might be able to spark his interest in anthropology, too 🤫😉\n\nThe English translation; \nhttps://acrobat.adobe.com/id/urn:aaid:sc:EU:6785bd01-1551-4f27-856c-e4ffaeb5c47a\n\nThe German Original;\nhttps://acrobat.adobe.com/id/urn:aaid:sc:EU:a9d35786-76f2-4a27-ba8a-86bef7fa817a\n\n \N 21631 \N 222059 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 14.7359458997464 0 \N \N f 93804315 \N 1 235133867 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436683 2025-03-13 19:34:05.578 2025-03-29 22:39:47.372 Satonomics - A FOSS on-chain data suite of tools (aka free Glassnode) Hi y'all,\n\nI'm very pleased to _finally_ and officially share with the world [**Satonomics**](https://satonomics.xyz) which is a suite of tools that compute, distribute and display on-chain data. The generated datasets are very heterogeneous and can be used for many different purposes. In a nutshell, you can view this as the FOSS and self-hostable version of glassnode and thus a complimentary tool to mempool.space.\n\n[Link to the repository](https://codeberg.org/satonomics/satonomics)\n\nThe project is split in 3 parts:\n- A parser: The backbone of the project, it does most of the work by parsing and then computing datasets from the timechain.\n- A small server which automatically creates routes to access through an API all created datasets.\n- A web app which displays the generated datasets in various charts (and hopefully soon dashboards)\n\nEverything is fully free even the API, there I think more than 10 000 routes with many more to come **but the project is very much still in its infancy, many things (including routes) will change, some things might be broken, the data might be false, etc, so please be careful !**\n\nI've been working on for a looooong time now and quit my (first) job to work on this full-time since November 2023 ! It's quite a relief to finally have something to show for it.\n\nAnyhow, feel free to ask any questions\n\nPS: If the website doesn't work or crashes, especially on Safari iOS just refresh it should work then (like I said it's still quite early haha)\n\nPS2: The Realized Cap and Price for hodlers isn't yet up to date, still computing them (will probably finish in 1 to 2 hours) https://satonomics.xyz 2640 \N 436683 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 9.78138891459178 0 \N \N f 1504420832 \N 11 52005399 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 13:41:39.533 f \N \N \N 0 0 0 0 4 0 0 436632 2025-03-13 18:21:04.213 2025-03-29 22:39:47.374 We fight for our privacy: the case of Tornado Cash \nThe title is what I felt when I read about a new paper on Privacy Pools, that other projects dedicated to cryptocurrencies would like to implement in the near future. I confess that I read it about four times and didn't understand it crearly, but on the fifth try, with a little help from BingChat to delve into the more technical details, I finally understood it. But I ended up disappointed, I won't deny it.\n\nOne of the central points when using cryptocurrencies is pseudonymity. We are not anonymous on a blockchain because there will always be digital traces or crumbs we leave behind, but still, a blockchain can record an event without considering the real identity of the individual or entity. We know a transaction occurred, that's it, and that's the point. \n\nThere are different types of transactions, and the folks at Samourai Wallet have turned this into an art [by explaining in various articles](https://medium.com/oxt-research/understanding-bitcoin-privacy-with-oxt-part-1-4-8177a40a5923) about transactions and their potential shortcomings. When it comes to privacy, these guys are always on my list of people who know what they're talking about.\n\nSo what happened here? For years, the Ethereum ecosystem has been looking for different options to improve user privacy, to not be too exposed, and, to me, the best option in that market (not the only one, but the best in my opinion) is Tornado Cash, a software that allows (in short) increasing the entropy of your transactions through collaborative transactions, using a technology called zk-SNARK that basically allows verifying a transaction without revealing who sent it, where it was sent, and the amount sent. Tornado Cash maintained a pool of funds where users made collaborative transactions, and there were no traces of sends or deposits.\n\nSo far, we've introduced the characters and what they do, and now the problem: the cap, as the young people say. Tornado Cash has been mentioned countless times in reports of financial crimes for allowing individuals engaged in *illegal activities* to use this [software for crimes similar to money laundering and others](https://home.treasury.gov/news/press-releases/jy0916). In fact, several developers were even arrested for writing code, which is the most ridiculous thing in the world. \n\nImagine this: you wrote software, and other people use it for illegal activities, but you get the worst part just for creating it. In fact, Tornado Cash has made several adjustments to comply with the regulations required by the OFAC to the point of creating hybrids to comply. But that wasn't enough.\n\n## Privacy Pools: the *solution*\n\nEnter [this new paper with Chainalysis, Vitalik Buterin, and people related to Tornado Cash](https://deliverypdf.ssrn.com/delivery.php?ID=294114121126077113031026099121086070063055032019074004085074099009029008070021105007042057100123047057125066091108125022027006126016017086082014068089089080019126092053080082007083017110066094008095000123085101106008079123113024073018017091083093071087&EXT=pdf&INDEX=TRUE) as the main actors. The paper proposes Privacy Pools that will have something called exclusion proofs or membership proofs, based on zk-SNARKs. \n\nHow would it work? The exclusion proofs or membership proofs will primarily aim to prove that the deposits and withdrawals made by users do not come from or belong to a set of associations that don't meet certain criteria. Simpler? **A regulatory body will feed the protocol** with addresses, transactions, and other data. Then, the user could prove that their money has a good reputation since it does not belong to the set of associations marked by the financial authority.\n\nPrivacy pools serve as an intermediary to:\n\n1. Comply with regulatory processes\n2. Demonstrate regulatory compliance with social consensus\n3. Not reveal the complete transaction history\n4. Improve user privacy without compromising other transactions.\n\n## Sounds good, what's the problem then?\n\nAs often happens, and as [I had written before in NOSTR](https://yakihonne.com/article/naddr1qq242unddf4ywk2wxfjkws2f2eu427j3g949gq3qpps3gnrkt6ssuwdys3e62xlwvpygdcv2h58cx8x9a4m9re52rjhsxpqqqp65wqvpqqp), there are things that the code has nothing to do with; it's the soul of the project. In this case, the problem is being approached from the wrong perspective.\n\n### Problem 1: Chainalysis and technological deficiency\n\nOne of the authors is associated with Chainalysis, a company dedicated to blockchain analysis and tracking of illicit activities. It all sounds good, but here's the big problem: they use mechanisms and [technology that are deficient](https://bitcoinmagazine.com/technical/chainalysis-investigations-lead-is-unaware-of-scientific-evidence). Who says that? The company itself, which admitted to [using unverified tools and methods that are not really proven](https://bitcoinmagazine.com/technical/chainalysis-the-theranos-of-blockchain-forensics). In other words, to track illicit activities, this company gathers information that is not really useful or collects it [through questionable methods](https://twitter.com/LaurentMT/status/1697590386745655747).\n\n![image](https://imgprxy.stacker.news/mv_HKEIUMv0n-4Hk53oXBxiX8rAADjtiGKvaz6vTawM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0Y0OE5YNW9XSUFBOVQ0ZD9mb3JtYXQ9anBnJm5hbWU9bGFyZ2U)\n\n### Problem 2: Lack of clarity. What are they accusing me of?\n\nWe start from the conception that AML/KYC regulations are good, and that's the central core of the problem, linked to problem one, which is errors and false positives. To give you an idea, there are ongoing legal proceedings today using evidence collected with problem 1. To this, we must also add the arrest of people linked to the software who basically never touched a penny involved in illicit activities, yet they are arrested for participating in those activities. Simpler? AML/KYC regulations are very ambiguous, allow data abuse, discriminate based on socioeconomic profiles, and have a host of disadvantages because these regulations are not the same worldwide.\n\n### Problem 3: Pantagruelian problem\n\nRemember Pantagruel? He ate everything: fish, cheese, wines, and when that wasn't enough, he even ate thoughts and more. It was never enough for him, and he always needed more. What happens with these regulations and others? When you open the door to an authoritarian entity, it will never end: first, they'll ask for one thing, then they'll ask for more, and here's the problem: like Pantagruel, it will never be enough, there will always be a hunger for more and more. Before you know it, you'll have created a system that aids in censoring blocks, transactions, and addresses, becoming synonymous with the traditional financial system.\n\n### Problem 4: The list but not Schindler's\n\nNo matter how much judicial authorities feed it, the concept of a blacklist is completely gray. In addition to the problems mentioned earlier, we are creating a dangerous monster to control because you are feeding it with assumptions, and it will eventually trigger problem 2.\n\n## So what will happen?\n\nThe problem being addressed is that the State intends to continue controlling two things: technology and monetary policy. This paper, while it has the best intentions, and we understand the problem it wants to address, has voluntarily shifted the Overton window towards centralization. We are taking risks for financial authorities that use rather vague laws, and above all, it goes against the nature of a blockchain. We return to the central point that Satoshi Nakamoto proposes: **not depending on intermediaries to move transactions**.\n\nTo this day, there are different proposals and solutions working on the issue of privacy, in fact, there are tools that are quite viable (Whirlpool, GrapheneOS, Linux), and while we understand what it intends to solve, it will actually make it more ambiguous.\n\nBut this is my opinion, and we should continue discussing this.\n\n\nPublished first in NOSTR: *naddr1qq2hy4fd2p4yvcf5fp9j6ne32ayxvjz2wadz6q3qpps3gnrkt6ssuwdys3e62xlwvpygdcv2h58cx8x9a4m9re52rjhsxpqqqp65wrwzv9p* \N 6260 \N 436632 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.6931714675683 0 \N \N f 94030159 \N 1 81175503 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:05:26.847 f \N \N \N 0 0 0 0 1 0 0 395087 2025-02-08 00:17:51.387 2025-03-29 22:39:47.375 What if price matters a lot? Bitcoin is not just about price.. `1 BTC = 1 BTC` or if you want `1 sat = 1 sat`. We want to focus on building and we are interested in price only in the very long term. Whenever I talk about bitcoin, I try to focus on its great features. Like that you can send it to anyone without asking for permission. No one can manipulate the amount of it. And so on... But what if price matters quite a lot?\nIt seems to me that bitcoin adoption and its overal success doesn’t depend primarily on technology. The social dimension of bitcoin is crucial. If other people don't trust bitcoin, I can't even send it to them - because they won't be interested to accept it. Nobody changes the amount of bitcoin issued but if its price goes down over many years, that doesn't satisfy me. I wanted bitcoin to protect me from inflation. I don't need to get rich, but if it doesn't protect my savings in the long run, it fails in my eyes.\nAs a result, bitcoin is also best explained through the price. I'll send someone a few bugs and ask them a year from now what their bitcoins are worth. You know the amazement when they are suddenly worth more. It's not winning the lottery, it's just a relatively small appreciation compared to a rotting fiat.\n\nBitcoin's price is still easily contestable. Some clowns deal with paper bitcoin and it can still move the price by tens of percent. My point is that bitcoin hasn't won yet. Bitcoin needs to evolve not only technically, but also to build the confidence that it beats any alternative currency in the long run. \n\nBitcoin has been with us for almost 15 years and I think it's time to have bigger ambitions. It should no longer be enough that it technically works. If we focus on price, we can easily lose. But we can also win because of it. We need it to be able to protect people's savings over shorter and shorter periods. Now bitcoin will protect savings reliably over a horizon of about 3 years. In other words if you wait 3 years, you'll be better off than with fiat. Hopefully we will soon get to a state that protects funds safely even on a 1 year horizon, and eventually we will get to 1 month. After all, the competition in the form of fiat and altcoins is so so bad.\n\n![Bitcoin works as expected](https://github.com/hynek-jina/Hynek/blob/main/images/BTC_All_graph_coinmarketcap_10:2023.png?raw=true) \N 9183 \N 395087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2772008167771 0 \N \N f 205063970 \N 1 164570039 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448263 2025-03-22 14:13:26.867 2025-03-29 22:39:47.375 Ask SN: what's everyone building today? I'm tired of seeing FTX news.\n\nAnyone doing anything but schadenfreuding today?\n\nI'm personally working on fractionalizing tips, which is a huge nuisance because I currently denominate tips in sats rather than millisats. I had enough foresight to store user balances in msats but I didn't anticipate wanting to fractionalize tips, and as a result lots of code needs to change.\n\nWe want to fractionalize tips to:\n1. take a cut of tips so that we can let tips influence ranking 'cause game theory\n2. splits on posts so\n - we can have multiple OPs for discussions and debates\n - allow stackers to set default splits for donations or other things\n\nAs a result, if you're building a lightning application, I recommend doing any record-keeping in msats. If you denormalize values purely intended for display, and can afford to be slightly inaccurate, storing those in sats is probably fine.\n\nWhat are you working on? \N 21631 \N 448263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.726335887573 0 \N \N f 352378673 \N 2 13514719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:56:03.295 f \N \N \N 0 0 0 0 1 0 0 433832 2025-03-11 12:33:41.544 2025-03-29 22:39:47.376 On Bitcoin Adoption crossposted on nostr: https://snort.social/e/nevent1qqspzgp362gmktrrtwfm5secpdvh8xt5nqekg7c2cehmunezelxqh5gpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309a3xjarrda5kuetj9eek7cmfv9kz7qgwwaehxw309ahx7uewd3hkctcpzpmhxue69uhkummnw3ezumt0d5hsz9thwden5te0wfjkccte9ehx7um5wghxyee05exnts\n\n---------------------\n\nThere's a significant divide in the Bitcoin community at present, revolving around the adoption narrative. How does Bitcoin achieve widespread adoption? What conditions must be met for it to be globally recognized as a reserve currency? Two key narratives dominate the discourse. \n\nThe first stems from venture capitalists (VCs), altcoin enthusiasts, and "Bitcoin moderates." Their argument posits that Bitcoin's path to mainstream adoption requires substantial marketing efforts. Although they differ in the extent to which this marketing involves altcoins, DeFi, NFTs, or ordinals, they fundamentally agree that Bitcoin requires promotion, and don't really care exactly what form this takes. \n\nAccording to this group, sufficient promotion will enable the average person to "understand" Bitcoin, paving the way for a sky high price (and maybe alt season!) However, this narrative is flawed as it fails to cultivate genuine Bitcoin holders. Instead, it promotes a culture of reckless gambling. At best, people dabble, make losses, and hopefully learn a valuable lesson about speculative games. At worst, people become entrenched in gambling habits, fostering a community rife with rent-seekers and scammers. Unfortunately, the majority entering the 'crypto' space find themselves with thinner wallets, often swearing off the entire sector after being scammed or losing significant funds. \n\nThis first narrative gains traction primarily because it enhances the perceived importance of its proponents. If adoption depended on active promotion, then VCs, marketers, and "Bitcoin moderates" become the linchpins for Bitcoin's advancement. It's an appealing narrative as it confers them a sense of significance they don't possess. Indeed, the egos on some of these people show just how self-serving their narratives are. \n\nBy contrast, the second narrative stipulates that adoption necessitates an understanding of Bitcoin as sound money. Bitcoin adoption is thus seen as a journey demanding patience, persistence, and a deep understanding of its technology and economics. This path typically spans several years and cannot be comprehended through a brief podcast snippet. Long-term Bitcoin holders and staunch supporters often attest to the validity of this narrative. \n\nInterestingly, even those initially involved with altcoins find that these ventures did little to aid their understanding of Bitcoin as money. Quite the opposite, these distractions often muddied the waters and made understanding Bitcoin that much harder. \n\nFor long-term Bitcoin holders, the path to understanding Bitcoin necessitated considerable intellectual effort, rigorous study, and even financial discomfort. A clear understanding of Bitcoin's status as sound money was born out of hard work, not marketing gimmicks. In this second narrative, exposure to Bitcoin usually stems from financial hardship. Whether due to inflation, banking issues, or government actions, people turn to Bitcoin out of ideological belief or necessity. \n\nConsequently, Bitcoin adoption is less about a marketing blitz and more about disillusionment with the current system. As long as the existing financial infrastructure continues to fail people, we can anticipate Bitcoin's continued growth. This perspective negates the need for 'professional' Bitcoin marketers or high-profile endorsements. The critical factor isn't the backing of Elon Musk or Snoop Dogg. Instead, it's about individuals recognizing the corrosive impact of inflation on their savings and seeking an alternative. Ordinals don't get people to hold Bitcoin long-term, a real understanding of money does. \n\nBitcoin adoption isn't a mere marketing exercise; it's a journey of understanding, borne out of necessity and disillusionment with the existing system. \N 17172 \N 433832 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.7124813079038 0 \N \N f 247463233 \N 2 237109859 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455221 2025-03-26 20:10:22.333 2025-03-29 22:39:47.371 Bitcoiner and Socialist Bitcoiner and Socialist\n\nI believe Bitcoin is a fair form of ownership. It can’t and should not be stolen by anyone including government. It provides sovereignty. It separates money from state. It’s a uncontrolled medium of exchange. \n\nI believe in socialism. I have a strong belief that society will work the best when everyone has able to at least have access to basic need such as food, a home, education and healthcare. The alternative is to spend even more on fighting crime, imprisonment and all kinds of disturbance. This not only gives a high burden on spending, but also on the general happiness of people. \n\nTax is not theft. It is doing your part in helping society as a whole. It’s the only way to make sure people will get access to basic needs. The more you make, the more you pay because it has less of an impact. I don’t believe it’s fair for anyone to hoard value and not give anything in return to society. I am wealthy and I have no problem to pay taxes. \n\nBitcoin is a tool to help people save. Since all fiat currency’s will suffer from inflation, and fueled by consumerism there is a natural reaction of people to spend fiat money. Once they get to know Bitcoin it can help them understand value, make better choices and in return won’t be as depended on others to provide for their needs.\n\nBitcoin has no vote. It has what anyone makes of it. In contrary to many other opinions, to me Bitcoin and socialism are a great match. Socialism is not communism. Most yanks don’t seem to understand there is a difference. There is no endgame in where we all should be equal. There is a standard of living that anyone should have, and plenty of opportunity to make for a better way of living.\n \N 13878 \N 455221 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 0.0469878462623186 0 \N \N f 91961354 \N 1 73092750 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443743 2025-03-19 13:52:29.046 2025-03-29 22:39:47.371 SN release: proxied lightning address, pull to refresh, wallet status, bug fixes ### proxied lightning address\n\nWhen \n\n- enabled in [settings](/settings)\n- you have an attached receiving wallet, and\n- you receive a lightning address payment (or lnurl-pay) that will make your account balance exceed your auto-withdraw threshold\n\nwe will proxy the payment directly to your attached wallet (protecting your receive privacy) for a 10% fee.\n\nA future release will allow you to receive directly to your attached wallet without the fee/proxy.\n\nMost of the hard work on this was done by @rblb\n\n### pull to refresh\n\nIn the PWA, you can now pull down to refresh pages. via @Soxasora\n\n### wallet status indicators and logos\n\nIf you have attached wallets, the card for each wallet will display its send and receive status (ie green for good and red for bad). \n\nAdditionally, the "wallets" that make sense as logos now have logos. \n\nvia @ek\n\n### bug fixes\n\n- switching accounts does not delete device sync key\n- receive wallet is optional on attached wallets with device sync enabled \n- videos show on mobile safari via @Soxasora\n- prevent zapping of collapsed comments via @aegroto\n- outlawed won't show on frontpage via @ek\n- cancel when edit timer runs out on comments via @ek\n- video uploads trigger saving post/comment drafts via @aegroto\n- upload mp4 from safari via @Soxasora\n- allow login from @anon after account switch via @ek\n- probably more\n\n--------------\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 13.8m sats to 32 contributors for 146 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/760734\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 7978 \N 443743 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.1412911626244 0 \N \N f 287141823 \N 3 99128523 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 07:22:20.451 f \N \N \N 0 0 0 0 2 0 0 440891 2025-03-17 16:08:41.985 2025-03-29 22:39:47.371 Hi! I'm Michael Rhee, founder of music streaming platform Wavlake. AMA Hi everyone! I'm Michael Rhee, founder of [Wavlake](https://wavlake.com/), a music streaming platform built on Bitcoin. Wavlake allows artists to post tracks and fans to pay those artists in bitcoin over Lightning. My partner, Sam Means of [Lightning Store](https://lightning.store/), and I are now building on this initial concept so it is easier for musicians to use and incorporates the growing v4v model standardized by Podcasting 2.0. Happy to answer any questions you all might have about the concept.\n\nI’m also a big music fan, record collector, and occasional [songwriter/artist](https://alpha.wavlake.com/vertigo-kidd), so would love to talk about anything music-related.\n\nIn my life before tech, I worked as a radio journalist and producer in Chicago, Seoul, and Brisbane, so have some experience in media.\n\nAnd of course open to talk Bitcoin, Lightning, programming, movies, books, podcasts, [cooking](https://stacker.news/items/53394), running… it’s all on the table. I recently wrote [this piece](https://bitcoinmagazine.com/business/scoring-bitcoin-points-like-digital-airline-miles) for Bitcoin Magazine if you need a conversation starter.\n \N 20924 \N 440891 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 4.521968505566 0 \N \N f 97505295 \N 1 29556588 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433669 2025-03-11 09:52:55.031 2025-03-29 22:39:47.373 Offering a discount when paying in Bitcoin I've been thinking more about discounts that are offered to customers paying in Bitcoin. I've noticed that most of the discounts I've seen in the past are usually 10% or less. I realized, if this were me, on most occasions I wouldn't bat an eye for that kind of a discount.\n\nMy proposal: if you are a business offering a discount for paying in Bitcoin, **and it is feasible for you**, consider making the discount much larger - maybe somewhere in the 25-50% range. Before I got into Bitcoin, I believe this would 1) make me much more likely to find a way to pay you in Bitcoin and 2) make me curious as to why someone would offer such a large discount for paying in Bitcoin. \N 5129 \N 433669 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 2.21247059960813 0 \N \N f 76353645 \N 1 235886833 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 06:45:25.428 f \N \N \N 0 0 0 0 1 0 0 438414 2025-03-15 14:10:18.574 2025-03-29 22:39:47.373 Returning to the Bitcoin Community After a Long Journey Hey everyone,\n\nI'm excited to make my first post here on Stacker News! I wanted to share my story of how I got into Bitcoin and what brought me back after all these years.\n\nI first dove into Bitcoin back in 2013. It was an exciting and revolutionary time, and I was thrilled to be part of something so groundbreaking. I had a small stash of Bitcoin and some cash in Mt. Gox, feeling optimistic about the future.\n\nThen, the Mt. Gox hack happened, and like many others, I lost my Bitcoin. It was a tough blow, and the long legal battle that followed made me quite pessimistic about ever recovering my funds. I was out of the Bitcoin community for years, disheartened.\n\nFast forward to last month, and I finally got my Bitcoin back! It feels like a victory after such a long struggle. Since early this year, I've been catching up on articles, discussions, and news about Bitcoin. I used to follow Bitcoin discussions on Reddit, but recently, I discovered Stacker News.\n\nI must say, I find the discussions here less stressful and more informative. For instance, a recent post encouraged me to re-read Satoshi's white paper, which rekindled my excitement about Bitcoin's potential.\n\nBack in 2013, the community felt small and revolutionary. Now, it seems to have grown, the general community seems to be focusing more on money-making and securing the future. It's fascinating to see how things have evolved.\n\nI'm actually doing my first lightning transaction to post this :) Can't lie that I'm bit excited.\n\nI'm looking forward to engaging with all of you and stacking stats. \N 10719 \N 438414 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 5.12991796199692 0 \N \N f 277022581 \N 3 32040746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449825 2025-03-23 14:58:52.545 2025-03-29 22:39:47.371 Bitcoin ETF Circuit Breakers i haven’t seen much discussion about this, but it might be wise for anyone holding shares of a Bitcoin ETF to understand the circumstances under which trading might be halted.\n\non Stacker News most of us understand the value of custody and how it ensures access to one’s coins, but the risks associated with a market shutdown during extreme price events are not talked about as much. even if your coins are safe, you may not be able to buy or sell when you want if you rely on traditional finance rails for Bitcoin exposure.\n\ni know there are circuit breakers that halt all trading when the S&P 500 falls more than 7%, 13%, and 20%, but I’m not as familiar with the rules for individual stock circuit breakers and whether they are also enforced for ETFs. i think there are even circuit breakers for upside price swings, not just downside ones (someone correct me if i’m wrong).\n\ni wouldn’t be surprised to see crazy price action that causes traditional financial markets to trigger circuit breakers, and want to help Bitcoiners who have exposure to ETFs better understand those risks.\n\ncan anyone share a template that shows all the conditions under which Bitcoin ETF trading will be halted? \N 814 \N 449825 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.1938105042401 0 \N \N f 147931690 \N 1 70994875 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443179 2025-03-19 06:00:32.132 2025-03-29 22:39:47.372 Visiting a Bitcoin Mining Site in Gunma, Japan I had the awesome chance to visit a Bitcoin mining site in Gunma, Japan operated by Agile Energy X, a subsidiary of TEPCO Power Grid.\n\n[Agile Energy X](https://agileenergyx.co.jp/) is led by Kenji Tateiwa and is utilising 50KW of solar that would otherwise be wasted as the site is currently awaiting grid upgrade and connection. The Bitcoin mine is highly modular and scalable and can be moved to another location once the grid upgrade is completed!\n\nThe site is operated by TEPCO Renewable & Power, a major utility provider. I think this is a big step forward for broader engagement with power generators about how Bitcoin can help the grid and for understanding the opportunity to participate in this new monetary network.\n\nI think there is a lot to share about the power of Bitcoin mining to act as both a load balancing and grid stabilisation tool, as well as helping with the ROI and financial planning of new generation assets.\n\nI tagged along with Mark and Robert at [OCEAN](https://ocean.xyz/) and learned a whole lot about their mission to further decentralise the Bitcoin mining ecosystem, as well as the legendary Luke Dashjr who has played a pivotal role in the security and decentralisation of Bitcoin mining.\n\n![](https://m.stacker.news/54333.jpeg)\n\n![](https://m.stacker.news/54334.jpeg)\n\n![](https://m.stacker.news/54335.jpeg)\n\n![](https://m.stacker.news/54336.jpeg) \N 19005 \N 443179 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 22.2091432822676 0 \N \N f 181772580 \N 2 10525901 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:39:31.331 f \N \N \N 0 0 0 0 2 0 0 407879 2025-02-18 12:47:00.842 2025-03-29 22:39:47.373 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nIf you missed last week's edition, [here](https://stacker.news/items/254712) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 15577 \N 407879 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.0644350392842 0 \N \N f 193930996 \N 1 245334029 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402904 2025-02-14 08:47:38.127 2025-03-29 22:39:47.373 Bitmain Labels Miners That Can Mine Multiple Hashing Algorithms “Trans Miners” Bitmain Labels Miners That Can Mine Multiple Hashing Algorithms “Trans Miners” to Boost ESG Scores\n\n![OIG1.jpeg](https://m.stacker.news/22199)\n\nLink: https://www.bugle.news/bitmain-labels-miners-that-can-mine-multiple-hashing-algorithms-trans-miners-to-boost-esg-scores/\n\nCore Scientific and Marathon Digital both expressed erotic pleasure at the news that Bitmain would be classifying certain miners that could hash different cryptocurrency hashing algorithms as "Trans Miners" in order to raise ESG scores for mining companies.\n\nRiot Blockchain on the other hand expressed displeasure at the move with CEO Jason Les responded by saying, "We don't need these stupid woke psyops in the mining space. We're trying to do productive things like fight the US Federal government and get the world on a Bitcoin standard."\n\nThe move by Bitmain has shocked the industry that had thought that Marty Bent, Steve Barbour and his assistant Adam O had defeated the ESG movement this last cycle. Unfortunately it would seem that ESG will be coming back with a vengeance, as Pubcos look for creative ways to sell their stocks to woke investment funds that could be buying the Bitcoin spot ETFs instead.\n\nMany miners are confused by the move as most miners that had shipped before have been able to mine multiple coins. There are over 200 various mineable coins that use SHA-256, meaning that a typical Bitcoin miner is already trans according to Bitmain's new standards.\n\nBitmain is rumored to also be working on shipping a miner with RGB lights in the fans, which they claim is gayer than previous miners. They/them are seeking to ship these sometime Q2 of this year. The model name is rumored to be the S21G which is short for "S21 Gay."\n\nMarshall Long responded to the news by saying, "I've been mining Bitcoin since 1978 and have never seen this gay shit. We don't put up with this in Texas. I'm only going to be using Micro BT from now on."\n\nIt seems that ESG is still alive and well in the Bitcoin mining industry, as BlackRock continues expand their exposure to publicly traded mining companies. \N 11938 \N 402904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7855507332745 0 \N \N f 4635655237 \N 34 12053590 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 7 0 0 344237 2024-12-26 16:09:24.699 2025-03-29 22:39:47.374 The Subtle Horrors of Ledger Recover 🚨If you use a Ledger, please read this, the safety of all of your bitcoins is at stake! 🚨\n\nThis is our first main post on Stacker News, apologies if we've messed anything up, but we wanted to reach out and go through some of the subtle horrors that result from the new Ledger Recover feature.\n\n#### tldr: Get your bitcoins OFF Ledger NOW!\n\nAnd no, that is NOT overstating things, it's REALLY that serious! 👇👇👇🧵\n\n\n## What Is Ledger Recover?\nIn a nut shell this new feature claims to help be a "backup" for your precious Seed Phrase\n\nThey encrypt your Seed Phrase, break it up into 3 shards, link it to your account/ID and then store those 3 shards\n\n- 1 with Ledger\n- 1 with Coincover\n- 1 with an unnamed entity\n\n![Ledger Recovery](https://pbs.twimg.com/media/FwTd0D8aQAMmQk4?format=jpg&name=large)\n\nIf you lose your Ledger or forget your Seed Phrase, they remotely restore 2 out of the 3 shards, decrypt them and your wallet is restored\n\n## Why It's Bad\nSo why is this new feature offering so dangerous? Let's count the stupid shall we?\n\nYou have to KYC with government ID and a selfie recording meaning they know your full legal name, address, date of birth, face and voice patterns\n\nThat data is collected by and shared with Onfido and Electronic IDentification, their ID verification partners. Onfido also collects a slew of other information to profile you such as social security number, email, IP, location, device details, clipboard data. There really seems to be no limit to what data they will collect and store of you, much of it, unchangable\n\n![Onfido Information Collection](https://pbs.twimg.com/media/FwTe499aUAIMA50?format=jpg&name=large)\n\nAll this private data is collated into "1 profile to rule them all", combined with the fact that you own a Ledger and thus, likely lots of crypto Through the Ledger Live app, it's trivial for Ledger to also know all your wallets, their balances, all your addresses and your total crypto net worth\n\nAs if adding insult to injury, your entire stash is now linked to your real world identity forever, even if you've never used a KYC exchange. You just doxxed yourself and your entire stash 🤦🤦🤦\n\n(BTW you should always buy bitcoin from [No-KYC Crypto Exchanges](https://www.athena-alpha.com/no-kyc-crypto-exchanges/))\n\n## Are You Nervous Yet Anon?\nDid you know that Ledger has *already* been [hacked](https://bitcoinmagazine.com/technical/ledger-hack-victim-scam-details) and had their customer list stolen and distributed to criminals? Those customers are now targeted by scammers and hackers\n\nTotally cool and normal 👍\n\nIf you sign up to this new Recover feature this highly detailed and disturbing profile of yours will be created and shared between god knows how many companies. Yes. Shared!\n\nYou're paying them $10/m for this amazing service!\n![Information Sharing](https://pbs.twimg.com/media/FwTgbyZagAE--v2?format=jpg&name=medium)\n\nNow all that data is shared with unknown companies and govs. Will it get hacked / stolen? Of course it will. It always does as it's literally a giant honey pot of extremely valuable data!\n\nWill it get sold to finance/investment companies looking for new clients? Almost certainly\n\n## Encrypted Shards\nLet's now turn to those encrypted shards. They're kept with 3 providers and they're encrypted which is great right? Wrong\n\nThis is describing a 2-of-3 quorum but guess what?\n\n**YOU'RE NOT PART OF THAT QUORUM!**\n\nThis means that the government, Ledger, hackers etc now just need to get two of the shards (or maybe they get the **entire database of all shards**), decrypt them and steal every bitcoin on every Ledger that uses this service without those customers Ledgers even being turned on or connected to anything!\n\nLedger likes to point out that the Seed Phrase shards are "encrypted locally on your device" which sounds nice, but the key for it by definition must be kept with Ledger or some other party, not you\n\nThis is because the whole point of the service is to be able to fully restore a lost Ledger. So if you lose your device and then buy a new one... that new device couldn't possibly have your decryption key on it! Thus, Ledger or one of the other providers must have that key\n\nSo they have your encrypted shards AND the key to decrypt those shards. With this system in place, it would be trivial for the gov to issue a court order to 2 of these companies, retrieve the 2 encrypted key shards of a specific person and the decryption key to decrypt it\n\nBoom. They can now **REMOTELY** seize all your bitcoins and you can't stop them\n\n## Just Don't Opt In Bro\nOK fine. So you just never "opt in" to this right? No problems... right? Right?\n\nWrong. Extremely wrong.\n\nEven if you never opt-in, there's STILL even more horrors to behold. This just gets worse the more you look at it! The entire point of a Hardware Wallet is to (essentially) do one thing:\n\nTo be a purposefully built device that secures your Seed Phrase by ensuring it cannot ever be transferred off it\n\nYour Seed Phrase should NEVER touch anything digital (except a replacement Hardware Wallet). This is one of the key [Bitcoin Security](https://www.athena-alpha.com/bitcoin-security/) principles we teach. With the introduction of this feature, whether you use it or not, it now means all Ledgers have the firmware and capability to **send your Seed Phrase off the device**\n\nIt violates the whole point of a "cold wallet". It actually turns it into a "[hot wallet](https://www.athena-alpha.com/what-is-a-bitcoin-wallet/)"! You bet your ass that hackers and criminals will actively be working to remotely crack this. Imagine your computer getting infected with malware that tricks your Ledger into sending your Seed Phrase to "Ledger". Make no mistakes, this is a sanctioned and intentional back door that will be exploited.\n\n## Just Trust Us Bro\nTo once again add insult to injury the code for this increases complexity which often reduces security. It's easier to build / code for ZERO access to something than to build / code for only the "right" access as hackers will exploit it. Complexity is NOT your friend when it comes to security!\n\nAll this code, how things are encrypted, sharded, transferred etc is all closed source and proprietary too. No one can verify what's happening and security researches or the general bitcoin community can't review the code. Who knows what garbage security or bugs are in there? Only Ledger\n\n## Conclusion\nThis is an absolute abomination. No matter if you use this new feature or not, Ledger has turned their HWW into a Hot Wallet. Hackers will figure out how to remotely exploit this and start stealing users funds\n\n🚨In short: Get your bitcoins OFF Ledger NOW!🚨 \N 13216 \N 344237 \N \N \N \N \N \N \N \N art \N ACTIVE \N 17.0312611053229 0 \N \N f 114255293 \N 2 217138506 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 449513 2025-03-23 12:10:15.733 2025-03-29 22:39:47.374 What are your thoughts on Bitcoin losing the Darknet As can be seen by e.g. visiting dread, the darknets have switched mostly to monero for payments. Of the 6 markets advertised at the time of this writing, 5 are xmr only and one is xmr / btc.\n\nThe community seems to be split about this issue. Some people view it as a negative sign that bitcoin is failing in its original promise of being a censorship resistant payment method, while others argue it is positive, as the dissociation from shady activities leads to more social acceptance and institutional adoption.\n\nIf you view this as a negative, do you think it is an issue that will resolve itself over time with the current privacy developments, e.g. lightning, ecash or do you think it is an issue that requires more attention? \N 16562 \N 449513 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.6936589056936 0 \N \N f 83276921 \N 1 51970474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 397280 2025-02-09 22:43:03.295 2025-03-29 22:39:47.375 Sunday Survey: What's your stacking goal for 2024? \N \N 6137 \N 397280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8077704672837 0 \N \N f 197181820 \N 1 179578986 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435988 2025-03-13 07:47:23.746 2025-03-29 22:39:47.371 Update On My Fellow Retirees I have been occasionally posting about my peers dipping their toes into bitcoin. Here are two more anecdotes:\n\n1. An old friend, politically left wing democrat, just told me he bought a substantial amount of BlackRock'e ETF. He does not have a very large retirement account (<500k USD), and he is very tentative and conservative in his investing strategy. He knows about my commitment to bitcoin. He refuses to listen about self custody, refuses to buy anything but the ETF, and really only wants to know when the price will skyrocket, so he can cash out. He's an otherwise smart guy. I haven't given up on him yet. \n\n2. An acquaintance, really the friend of a friend who I have spent a good amount of time with, apparently just got scammed in some kind of phishing scheme. This guy was a programmer for Wang, the old stand alone word processing company, and other companies over the years. He is a lifelong Republican and Trumper. Since his retirement he has been doing his own investing of his large retirement stash. He has done well in tech stocks over the years. He apparently went down the "crypto path" a few years ago. He owned bitcoin, among other shitcoins. I tried to explain why bitcoin is different, and got nowhere. He is quietly arrogant. No one can tell him anything. From what I have pieced together he had recently come to his own decision that bitcoin was best. He didn't self custody, apparently keeping all his bitcoin on coinbase. He got phished, gave log in info out in an email (!), and lost 50k USD worth of bitcoin. I got all of this information second hand. He has announced that the whole crypto world is a scam, and he will never buy any again. \n\nThat's it. I'm sure I'll have more stories, and hopefully a few happy endings. \N 679 \N 435988 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 18.0281366371259 0 \N \N f 156881570 \N 1 147318656 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:56:23.627 f \N \N \N 0 0 0 0 1 0 0 447833 2025-03-22 07:28:22.166 2025-03-29 22:39:47.372 Books And Articles Newsletter, Issue 10 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. Thanks again for all of the quality posts. This week I posted the [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224). You can find all of the book reviews that have been posted to this territory prior to March 31, 2024. I anticipate that SN will soon permit perpetual edits, so at that point I will keep that post updated with new reviews. I will also categorize the directory by genres as it grows. \n\nDue to the sheer number of quality posts this week, I am sure I missed placing a few original content posts into the index sections of the newsletter. I simply ran out of time. I promise to try my best to catch up this week.\n\nThanks again to everyone for helping this territory grow into what we want it to be.\n\nI hope everyone has a good week. \n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [“Fear Of A Black Flag” Alan Moore’s 2010 Essay On Anarchy](https://stacker.news/items/490704) by @StillStackinAfterAllTheseYears\n\n- [Discussing my writing process: Focus and feelings](https://stacker.news/items/495687) by @plebpoet\n\n- [Discuss this Quote- Miguel de Cervantes](https://stacker.news/items/488075) by @grayruby\n\n- [The Opposite Of A Good Idea](https://stacker.news/items/487312) by @kr\n\n- [What Is The Greatest Work Of Art You Have Stood In Front Of?](https://stacker.news/items/486691) by @CoffeeWithTheClassics\n\n\n\n### Siggy’s Suggestions\n\n- [From Shells To Satoshi: The Story Of Money](https://stacker.news/items/492465) by @Roll\n\nThis is a link post from @Roll announcing the release of a new bitcoin book. Like most here, a new bitcoin book always piques my interest. I hope someone does a book review soon so we can learn more about it. \n\n- [Blood Money: Meet the Top 20 Companies Profiting From Endless War](https://stacker.news/items/492357) by @DarthCoin\n\nI found this article both informative and sad. I wasn’t aware of a few of the companies listed here. I am very aware of another. My wife’s family has a long tradition of working for one of these companies. It has put food on the table for three generations while building technological marvels and weapons of war. \n\n[Releasing Chronicles of the Code Guardians - A Bitcoin journey](https://stacker.news/items/486568) by @eddieoz\n\nThe author announced the publication of his latest book, a science fiction work about bitcoin. I am not much of a science fiction guy myself, but I know there are plenty of stackers here with the chops to give this book a look and post a review. I look forward to reading more about its post publication progress. Welcome, @eddieoz, to SN and to our territory!\n\n- [What book format do you prefer to read?](https://stacker.news/items/491669) by @Taft\n\nThis post was timely for me, since I was questioning the usefulness of poll posts recently. @Taft showed us here that they can be useful and engaging- 29 votes and 14 comments on an important topic. \n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n[Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Churning Black Matter](https://stacker.news/items/469200) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n\n\n \N 17953 \N 447833 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 17.0955436994042 0 \N \N f 746912993 \N 6 77923474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434991 2025-03-12 11:45:36.169 2025-03-29 22:39:47.374 SN release: postpone non-custodial switch, encrypted device sync, blink receives ### we are postponing the non-custodial switch\n\nThe November 5th non-custodial switch is postponed. We knew it would rain in October, but it ended up pouring and we missed the deadline. The switch will still happen, guaranteed. We'll give a two week warning once the changes are done this time around. Those of you that got ready in advance are set, but everyone else will have a bit more time.\n\n### encrypted device sync\n\nIn your settings, you can enabled [encrypted device sync](/settings/passphrase) which will allow us to sync changes to your sending wallet credentials between devices. Enabling device sync requires each device input the same mnemonic passphrase and can be shared between devices via QR code scanning. \n\nOnce enabled and you leave the device sync page, it's impossible for SN to show you this passphrase again (we store the passphrase in browser storage that we cannot read from). If you lose the passphrase, you can reset device sync and start again, but it'd be best to store the passphrase somewhere secure.\n\nFor now, device sync only synchronizes wallet sending credentials between your devices, but in the future it will also be used for other types of secure storage like encrypted messaging keys, ecash notes, nostr keys, etc.\n\nMost of the device sync technical design and code was written by @rblb who has been helping us out for the last month or so.\n\n### blink receives\n\nYou can attach Blink for receives now (via @rblb)\n\n### other stuff\n\nThere are a bunch of little bug fixes and other stuff here and there in this release, but not much worth mentioning.\n\n--------------\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 13m sats to 31 contributors for 138 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/721818\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 1626 \N 434991 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.9566168228752 0 \N \N f 419647556 \N 2 151525176 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:34:17.491 f \N \N \N 0 0 0 0 1 0 0 446430 2025-03-21 07:55:30.314 2025-03-29 22:39:47.374 👁️ 𝗣𝗿𝗶𝘃𝗮𝗰𝘆 𝗧𝗶𝗽 — Phones connect to cell towers without a SIM card ![divider-3.png](https://m.stacker.news/18425)\n\n---\n\nOne common misconception is that a SIM card is required for your phone to connect to cell towers. However, the truth is that your phone can still establish a connection with cell towers even without a SIM card inserted.\n\nThe primary function of a SIM card is for authentication to the network. When you insert a SIM card into your device, it contains unique information that allows your phone to identify and authenticate itself on the network. This process enables you to make calls, send messages, and access mobile data services.\n\nEven without a SIM card, your phone can still establish a connection with nearby cell towers to receive signals and communicate with the network. One way to control your phone's connections to cell towers is by enabling airplane mode. Enabling airplane mode on your device can serve as a ~privacy enhancing measure by disabling connections to cell towers.\n\n---\n\n![divider-3.png](https://m.stacker.news/18425)\n\n---\n\n#### **`TL;DR`**\nYour phone device connects to cell towers even without a SIM card inserted.\nA SIM card is only used for authentication to the network. 📡\n**You can disable connections to cell towers by enabling airplane mode.** ✈️ \N 4474 \N 446430 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 18.9520584175514 0 \N \N f 228599890 \N 1 232752545 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:21:22.97 f \N \N \N 0 0 0 0 1 0 0 444087 2025-03-19 16:49:43.524 2025-03-29 22:39:47.374 Jippi Launch Party 🎉 ![](https://m.stacker.news/46089)\n\nJoin us at PlebLab for the grand launch of Jippi, an exciting new Bitcoin education app! Get ready for a night of fun, music, and celebration with Oliver, the founder of Jippi. We’ll have food, drinks, and plenty of surprises, including sat giveaways. Don’t miss out on this exclusive event! Learn more at Jippi.\n\nSee you there! \n\nhttps://evento.so/p/evt_qHrNWd9Ba9L82U2m https://jippi.app/ 18393 \N 444087 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.3012008153872 0 \N \N f 190327964 \N 1 180927616 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413410 2025-02-23 07:14:59.335 2025-03-29 22:39:47.375 What is going on with the hashrate? So. We are in phase one of the after-halving. The hashrate has gone down. This was the logical outcome. \n\nWhat is going on? Do you think miners will survive? Is this the end? no worries. let's see.\n\n## Why does this happen?\nHashrate is the frequency with which the network can calculate hashes per second to mine the blocks. When hashrate decreases, it often indicates that there is less computing power operating within the network. This can occur when less efficient machines are shut down by miners in response to unprofitable mining conditions. Mining is an energy-intensive and challenging process; if the cost of energy consumption exceeds the value of the bitcoins generated at current prices, many miners will deactivate their less profitable machines rather than risk accumulating debt or holding onto bitcoins in anticipation of future price increases.\n\n## halving effect\nThe bitcoin subsidy reward for mining new blocks is reduced by half after the halving. So, miners need the bitcoin price to double in order to maintain their profit levels, considering they still have to pay for energy costs in fiat currency. Prior to the most recent halving, many small-scale miners required a bitcoin price of **$32,000** to break even, implying that they now need a price above **$64,000** to operate without excessive financial stress.\n\nCurrently, the bitcoin price has dipped below $57,000 which isn't ideal for these smaller mining operations. While the relationship between price and hashrate is not perfect, it appears that there was a temporary surge in mining activity driven by favorable conditions, which is now correcting itself.\n\n## previous halving\n![](https://m.stacker.news/38210)\nLet's examine what occurred during the previous halving event. Interestingly, the hashrate did not decline significantly in the months that followed the halving. In fact, it wasn't until the major downturn caused by China's crypto ban that we saw a substantial drop in hashrate. Even after this setback, the hashrate rebounded within six months, demonstrating that the halving itself didn't have a catastrophic impact on mining operations.\n\n## Current situation:\n![](https://m.stacker.news/38201)\nBut here we are in 2024, and what can we see now? This time around, the decline seems more pronounced compared to previous halving events. Will it recover again? It appears that the mining industry may have reached its peak and is now experiencing a reversal in growth. \n\n### Difficulty adujstment\nTomorrow, there is an anticipated **-4.62% difficulty adjustment.** As you can see from the chart, the hashrate line is currently below the difficulty line, which is unusual. This means that the upcoming adjustment will lower the difficulty to ensure blocks are still being created approximately every 10 minutes. \nIn theory, this would help those small miners to come back. However, if the Bitcoin price continues to decline, it's unlikely these smaller operations will be able to recover. As a result, the remaining active miners will likely enjoy increased profit margins for themselves. This leads to **less decentralization in mining**, which is not a good thing. But it is temporary, because it can only decrease to a level, until the old machines start mining again. \n\n\n### What does it need to happen?\nIn my opinion, Bitcoin price should go up. Ideally making new highs. When this happens, we will see confidence returning and hashrate going up again making the network stronger. Maybe this doesn't happen for a while. But eventually it will happen. Because the hashing rate top is indicating that it cannot continue without a higher Bitcoin price. Still, the hashrate remains substantial and healthy, and the network remains secure. \n\n### Will Bitcoin die again?\nRecent news about Mt. Gox, Germany and the USA selling bitcoins, and negative ETF flows have all contributed more to selling pressure in the market. What does this mean? Is it the end of Bitcoin? No. It means cheaper sats for everybody to stack more!!! yay! Remember how many times Bitcoin died before. \n\n### what do you see?\nIf someone here has more mining experience, or direct connections to miners, what do you see? Do you see miners suffering a lot? Is there a bad mood? Are they optimistic? Thanks\n\n\n_happy stacking!\nQuark_\n\n\n \N 15941 \N 413410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.19338584229529 0 \N \N f 221730617 \N 1 136532588 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435142 2025-03-12 13:47:05.565 2025-03-29 22:39:47.375 Examples of decentralized social structures in nature? While on my walk I was thinking about Bitcoin's biggest strength being decentralization and what parallels could exist in nature. I think its quite fascinating that Bitcoin is the invention of a top-down run species that is known for abusing control at points of centralization of power. \n\nWhat other species exist out there where decentralization is the defining characteristic of how their members organize and act? Just speaking out of observation and not from any background in biology, I'd say ants and bees. Any more? \N 21555 \N 435142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.60594220807624 0 \N \N f 872016093 \N 6 107477428 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:20:39.541 f \N \N \N 0 0 0 0 4 0 0 436025 2025-03-13 08:42:51.216 2025-03-29 22:39:47.376 How a Child Prodigy was helped by his Mama Bear (and then saved the internet) https://imgprxy.stacker.news/zVetZ7KePgpl7h0yH8UqLnl1YheKem1Flm2fCUbfxjI/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy90aHVtYi82LzZmL0Rhbl9LYW1pbnNreV8yMDE0LmpwZy8zOTdweC1EYW5fS2FtaW5za3lfMjAxNC5qcGc\n\nSecurity hacking prodigy Dan Kaminsky (1979-2021) proved himself in his field to his family very early on. Later, in 2008, his hacker credentials were obvious to the world by discovering, and fixing, a fatal security flaw in the internet.\n\n_His mother, as you will see, proved quite a star too..._\n\nDan's technological odyssey started when he was four after getting a computer from _Radio Shack_ by his father. At just five years old he'd taught himself to code. Later, at eleven, Dan's computer know-how had been sensed by experts - but it wasn't welcome:\n\n>When Daniel was 11, his mother said, she received an angry phone call from someone who identified himself as a network administrator for the Western United States. The administrator said someone at her residence was “monkeying around in territories where he shouldn’t be monkeying around.”\nWithout her knowledge, Daniel had been examining military websites. The administrator vowed to “punish” him by cutting off the family’s internet access. Mrs. Maurer warned the administrator that if he made good on his threat, she would take out an advertisement in The San Francisco Chronicle denouncing the Pentagon’s security.\n“I will take out an ad that says, ‘Your security is so crappy, even an 11-year-old can break it,’” she recalled telling the administrator, in an interview on Monday.\nThey settled on a compromise punishment: three days without internet.¹\n\nThanks to his mom's _moma bear_ tenacity, instincts and quick thinking, Dan kept the internet and kept on honing his skills.\n\nIn 2008, after already becoming known for revealing several security vulnerabilities, Dan discovered a further, far bigger problem - a fundamental flaw in the [Domain Name System (DNS)](https://en.m.wikipedia.org/wiki/Domain_Name_System). Dan realized that this meant that [bad actors](https://en.m.wiktionary.org/wiki/bad_actor) could manipulate DNS traffic and redirect it to impostor sites.\n\n>[Dan's] first call was to Paul Vixie, a longtime steward of the internet’s DNS system. The usually unflappable Mr. Vixie recalled that his panic grew as he listened to Mr. Kaminsky’s explanation.\n“I realized we were looking down the gun barrel of history,” Mr. Vixie recalled. “It meant everything in the digital universe was going to have to get patched.”\n\n>Mr. Vixie asked Mr. Kaminsky if he had a fix in mind. “He said, ‘We are going to get all the makers of DNS software to coordinate a fix, implement it at the same time and keep it a secret until I present my findings at Black Hat,’” Mr. Vixie said, referring to an annual hacking conference in Las Vegas.\nMr. Kaminsky, then the director of penetration testing at IOActive, a security firm based in Seattle, had developed a close working relationship with Microsoft. He and Mr. Vixie persuaded Microsoft to host a secret convention of the world’s senior cybersecurity experts.\n“I remember calling people and telling them, ‘I’m not at liberty to tell you what it is, but there’s this thing and you will need to get on a plane and meet us in this room at Microsoft on such-and-such date,’” Mr. Vixie said.\nOver several days they cobbled together a solution in stealth, a fix that Mr. Vixie compared to dog excrement. But given the threat of internet apocalypse, he recalled it as being the best dog excrement “we could have ever come up with.”\nBy the time Mr. Kaminsky took the stage at Black Hat that August, the web had been spared. Mr. Kaminsky, who typically donned a T-shirt, shorts and flip flops, appeared onstage in a suit that his mother had bought for him. She had also requested that he wear closed-toed shoes. He complied, sort of — twirling onto the stage in roller skates.\n\n>When his talk was complete, Mr. Kaminsky was approached by a stranger in the crowd. It was the administrator who had kicked Mr. Kaminsky off the internet years earlier. Now he wanted to thank Mr. Kaminsky and to ask for an introduction to “the meanest mother he ever met.”¹\n\n¹ _Daniel Kaminsky, Internet Security Savior, Dies at 42_\nNew York Times,\nApril 29, 2021\nhttps://archive.today/20210429051943/https://www.nytimes.com/2021/04/27/technology/daniel-kaminsky-dead.html \N 18188 \N 436025 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.1061384519029 0 \N \N f 215280752 \N 2 238582217 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:22:20.476 f \N \N \N 0 0 0 0 2 0 0 401452 2025-02-13 03:37:38.037 2025-03-29 22:39:47.372 Here's why bitcoin gives me hope I have been self-employed, for pretty much 20 years, and working online and I have to say, things are looking rougher than ever, and finding clients is harder than ever before.\n\nI manage ad accounts and Amazon accounts and this skillset is not like being a dev or a programmer or an electrician on a wind farm, it's something most companies want to pay a freelancer 3 dollars an hour for, despite being in charge of sometimes hundreds of thousands of dollars a month.\nShit, even if I were to re-skill to something new, I would be starting from scratch and still have the issue of having to find paying clients. I'm not a salesman, I just want to be left alone to do the actual work.\n\nI'm almost 40 now and my kids and family are my priority and I'm not interested in hustling and grinding anymore, I live in Bulgaria and the job pay is still much lower than what I make already anyway, so that's not an option.\n\nI'm more disgusted with politicians and governments than ever before and, to make matters worse, my wife is Russian, and her monthly money is being obliterated by devaluation and her family doesn't want to know about Bitcoin or use it to store value or to send her money to her. Instead, she's paying 80 fucking euros for some bank that still does Euro transfers. it literally makes me ill, but what can I do?\n\nNone of this fills me with great hope (fiat world, in general, makes me despair while I have to listen to Keysian brainwashed idiots say that inflation is good).\n\nBut one of the main things that gives me hope is bitcoin - because I know that the small amount I can put away each month is my form of savings that cannot be debased and destroyed by any government and it will be the thing that helps me retire on my terms.\n\nEvery year I put my kid's birthday money into cold storage and think about how when they are 18 or 20 this money could give them a head start on whatever journey they want to take.\n\nJust having something that cannot be messed with or taken away from me, that gives power BACK, is extremely liberating and really does help me put things in perspective when I drudge through the toxic wasteland of Upwork. \N 825 \N 401452 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.95057166981955 0 \N \N f 510015007 \N 3 164352265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458011 2025-03-28 21:17:59.906 2025-03-29 22:39:47.374 The Evil Baby Attack Bitcoin experts have not yet described this attack in the literature probably because making babies has become unfashionable in the West. So I'll be the first.\n\nI have a 1.5 year old that leaves a trail of destruction during his waking hours. Literally walks from room to room randomly, like a tornado. One of his MOs is rearranging things either into the trash bin or into laundry baskets. Often I'll be loading the machine and find an apple under a pile of clothes. The kid will also unceremoniously dismiss perfectly good household objects to the trash.\n\nAnyway, I left my wallet on the coffee table two days ago. Other than IDs, credit cards and other shit I carry as part of my normie disguise, I have a Tapsigner with a small but not insignificant amount of btc. Unlike my main stash I was lazy and didn't back this up. Yesterday I had to leave, couldn't find my wallet and left without it because I was in a rush. Looked for it today and after a few minutes I realized that the deepness of the shit I'm in is entirely dependent on the whim of my baby. I had already taken out the trash, and as I was pondering the thought of digging through the giant trash container outdoors, my other kid thought to check the laundry bin and there it was. \n\nThe Evil Baby Attack is a particularly insidious threat to your stash. Unlike the Evil Maid Attack, it is very difficult to interrogate the perpetrator, and the use of torture is frowned upon. There also doesn't appear to be a profit motive, or apparently any discernible motive at all. Further research is required to come up with mitigation strategy, but on the meantime, mind your stash. \N 21518 \N 458011 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.040267021882 0 \N \N f 1735048078 \N 13 131488309 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 7 0 0 404341 2025-02-15 19:37:36.144 2025-03-29 22:39:47.374 The Law That Will Ruin The U.S. Tech Software Industry 🇺🇸 **Startup founders read this...** https://blog.pragmaticengineer.com/section-174/\n\n-----\n\n## **WTF Is Going On?** 🇺🇸\nMany US software businesses amassed surprisingly high tax bills in 2023, seemingly out of nowhere, due to a tax change which took effect in July the previous year, which many small companies knew nothing about until finalizing their 2022 returns.\n\nThe change was expected to be repealed (reversed) in December 2022, so many accountants didn’t inform customers for that reason. So, businesses got a surprise when the first tax payments fell due last April.\n\nThe amendment to Section 174 means `employing software engineers can no longer be accounted as a direct cost in the year they are paid` – unlike the norm, globally.\n\n-----\n\n## **Example Company** 💻\n- A software company generates $1,000,000 of revenue per year running a SaaS service. It employs five engineers, and pays each $200,000. That is $1,000,000 paid in labor costs. $0 profit.\n- In 2021, the answer would be zero profit. ✅\n- In 2022, the answer was $900,000 in profits(!!) ❌ This is because from 2022, software engineer labor costs must be amortized over five years.\n\n ![](https://blog.pragmaticengineer.com/content/images/size/w1600/2024/01/Screenshot-2024-01-04-at-21.17.27.png)\n\n---\n\n## **Knock-On Effects** ⤵️\nWhat happens to a small, bootstrapped company without $189,000 in cash floating around with which to pay this tax?\n 1. **Take out a loan at a relatively high interest rate** (likely at around 10%+)\n 2. **Lay off a software engineer** on $200,000 per year and use this saving to pay the bill!\n\n---\n\n**Other Implications:**\n- Less hiring of software engineers in the US/more layoffs 👎\n- Firing of non-US software engineers employed by US companies 👎\n- A boon for purchasing SaaS companies and vendors (mergers & acquisitions) 👍\n- It makes a lot less sense to incorporate tech startups in the US 👎\n- Startup software IP will likely be moved out of the US 👎\n- Tech companies are now forced to understand – and use – R&D credits 👎\n- Innovation across all US software companies will take a hit if Section 174 stays 👎\n- Thanks to the Section 174 amendment, starting a tech company outside the US is far more attractive now – including for raising startup capital 👍 https://blog.pragmaticengineer.com/section-174/ 18409 \N 404341 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 12.1107072045783 0 \N \N f 59139590 \N 2 169678528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 418796 2025-02-27 12:39:42.642 2025-03-29 22:39:47.375 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/317171) are the updates stackers shared from all their latest work projects. \N 10393 \N 418796 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 29.3188756959741 0 \N \N f 552024379 \N 4 237120903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455283 2025-03-26 22:13:39.071 2025-03-29 22:39:47.376 Can We Revive Empathy in Our Selfish World? (2019) This came up in my notes, and seemed timely.\n\n> As cities grow and households shrink, we see more people than ever before, but know fewer of them. Rituals that bring us into regular contact—attending church, participating in team sports, even grocery shopping—have given way to solitary pursuits, often carried out over the Internet. At a corner store, two strangers might make small talk about basketball, school systems, or video games, getting to know all sorts of details about each other. Online, the first thing we encounter about a person is often the thing we’d like least about them, such as an ideology we despise. They are enemies before they have a chance to be people.\n\n[...]\n\n> Modern society is built on human connection, and our house is teetering. For the past dozen years, I’ve researched how empathy works and what it does for us. But being a psychologist studying empathy today is like being a climatologist studying the polar ice: Each year we discover more about how valuable it is, just as it recedes all around us. Does it have to be this way? https://nautil.us/can-we-revive-empathy-in-our-selfish-world-237400/ 1316 \N 455283 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 26.1491829384673 0 \N \N f 429444341 \N 3 12575056 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 169274 2024-05-12 20:00:28.118 2025-03-29 22:39:47.373 Scam 1992 and QE So I was talking to @ddustin about some econ thing I didn’t understand and he told me about how the Fed’s assets/balance sheet is full of mortgages and corporate bonds and equities/stocks??? That they buy on the open market and then, a lot of times, just hold them until the thing… expires (in the case of a mortgage/bond)\n\nHe claimed that since these things weren’t really for sale, the USG was essentially just printing money and handing it out to anyone who could get approval to issue a bond/take out a mortgage.\n\nIt finally hit me that that’s what “QE” actually means. The government being a buyer for debt/assets. It inflates the market, or is basically a wealth transfer from the USG to whoever is holding that bond. It’s pretty clever!\n\nIt reminds me of this absolutely amazing show I saw on a plane last year, Scam 1992.\n\nIts about an Indian stock broker that rises from nothing to be one of the most powerful and wealthy men of India. And the journalist who works tirelessly to bring him down 🖤.\n\nThe thing he gets caught for is that he’s taking huge amounts of cash that were destined to buy government bonds and “floats it” in the stock market (buys a lot of equities). This has the effect of lifting the entire market, and making everyone really rich on paper.\n\nThe market comes crashing down on some bad news, and then the journalist does a story on the bonds that are “floating” (they’re basically missing) and the cash for the bonds has to be pulled from … somewhere to cover all the liars butts.\n\nSo the protagonist ends up in jail (he then dies in jail). Anyway, I’ve been thinking a lot about this, and I’m so shocked at how much QE is *exactly this same behavior*. Except that the money never has to be repaid back, the asset prices can just stay inflated until….?\n\nMan what a crazy thing we do with money. Its insane how important it is to the quality of life of the people in a country and what power our economists have over that.\n\nAlso pretty insane to me who benefits from these cash hand outs. Big corporations are basically subsidized by the state thru bond sales. O.o\n\nPS: I found it really hard to find Scam 1992 online with English subtitles. If anyone has a 🧲 link for it, please drop it! \N 776 \N 169274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.31137391132641 0 \N \N f 153527042 \N 1 169633207 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427771 2025-03-06 16:14:03.637 2025-03-29 22:39:47.373 Bitcoin is transforming this poor, unknown town in Peru (video) An NGO called Motiv is helping this poor Peruvian town turn around. \n\nThe tool it uses to move funds, bank the unbanked and change people’s lives is Bitcoin. \n\nI visited in September last year. Here’s an insight from my experience there. Blew me away.\n\nplease check my Youtube for more, similar (ish) content.\n\nThe pace is a little slower here but I'm still finding my voice.\n\nSend sats to Motiv here: https://motiv.ngo/\n\nSend sats to me by (lol you know what to do, zap this theng) https://youtu.be/-uCyFQPpdGI 8376 \N 427771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9510098568314 0 \N \N f 6174498 \N 1 59366505 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 385880 2025-01-30 13:56:22.648 2025-03-29 22:39:47.375 Got myself a starlink, Lightning ⚡ Internet AP? During Summer time in Patagonia we like to enjoy going to the lake. Problem is there is the need for connectivity. I just solved getting myself a starlink dish.\n\nNow I want to get a lightning paywall captive portal in order to get ppl the chance to connect only if they manage to send a low amount of SATs.\n\nAny suggestions on how this could work? I am kinda looking for a DIY guide. I bought the ethernet adapter and I am going to get my hands on a solar panel, sine inverter and lithium battery set.\n\nGuess the trick is to allow for lightning wallet app download and a faucet or easy way to get SATs. \N 11263 \N 385880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6779853409296 0 \N \N f 134456199 \N 1 47285271 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404114 2025-02-15 15:04:53.927 2025-03-29 22:39:47.376 Ongoing attack on the I2P network--Bitcoin nodes connecting using i2pd affected Posted on #bitcoin-core-dev IRC channel and https://twitter.com/jonatack/status/1653086583657054217.\n\nAn attack on the I2P network is ongoing since a day or so. Bitcoin nodes running using the i2pd router (https://i2pd.readthedocs.io/en/latest/) may not be able to create SAM sessions due to floodfills. Reverting back to i2pd version 2.42.1 has been reported to be one temporary workaround. See this open discussion in the i2pd repository for updates on the attack and its mitigation: https://github.com/PurpleI2P/i2pd/discussions/1918\n\nThe Java I2P router seems to be unaffected due to its Sybil analysis and block list function. I've re-established bitcoind connections with the I2P network by switching from i2pd to the Java I2P router (https://geti2p.net).\n\nFor users who switch over: Unlike i2pd, the SAM application bridge is not enabled by default in the Java I2P Router. SAM must be started manually, or configured to start automatically, in the configure clients page in the router console or in the clients.config file.\n\nSome links for more information about using Bitcoin over I2P:\n\n- https://jonatack.github.io/articles/using-alternative-p2p-networks-with-bitcoin-core\n- https://github.com/bitcoin/bitcoin/blob/master/doc/i2p.md\n- https://www.cloudwards.net/i2p-vs-tor/\n- https://becomesovran.com/blog/i2p-the-private-layer-of-the-web.html \N 963 \N 404114 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 25.8293598832623 0 \N \N f 342732012 \N 3 117270750 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434782 2025-03-12 08:34:00.092 2025-03-29 22:39:47.6 Bitcoin Optech Newsletter #260 \N https://bitcoinops.org/en/newsletters/2023/07/19/ 13249 \N 434782 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.0094241849191 0 \N \N f 442774359 \N 2 51916827 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:22:02.352 f \N \N \N 0 0 0 0 2 0 0 434992 2025-03-12 11:47:39.665 2025-03-29 22:39:47.606 Describe a time when you realized how valuable your skills were to the world In the depths of the fiat mines, it's easy to get used to your own skillsets, knowledge, assumptions, and experience.\n\nI know that I can forget sometimes that what comes intuitively to me is completely foreign to someone else. I can take my own skills for granted. \n\nBut there are certain moments where I'm reminded of the value from my own unique perspective.\n\nWhile helping out with my friend's startup, I would consistently get asked questions that seemed utterly basic to me. He was quite far along in getting things going -- seems like he knows what he's doing -- why does he want my help??\n\nOh, of course, I've spent years accumulating this information, so passively that I forget it's not simply common knowledge. Damn, I can probably make a lot of money doing this!!\n\nI know talking about Bitcoin can feel a similar way sometimes. There's so much about Bitcoin that we understand as basic reality that's completely foreign to others. The disconnect between bitcoiners and "normies" that arises when trying to orange pill them I think stems in part from this fact; that we assume normies have more baseline understanding of certain concepts than they actually do.\n\nThe flip side of this is that you can leverage that gap in knowledge to your advantage. Channel it healthily towards work, your own business, side projects, or whatever instead of frustration that others "just don't understand."\n\nThat's why politics is so toxic.\n\nHave you had a similar experience? When was your eureka moment where you realized your "basic" skills were much more valuable than you thought? \N 19535 \N 434992 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.75976405134121 0 \N \N f 172239839 \N 1 242993328 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 206112 2024-07-26 22:57:20.423 2025-03-29 22:39:47.373 Cairo to Cape Town: A Bitcoin Adventure https://youtu.be/lVK1xRz--9I\n\nLast year my wife and I decided to take a sabbatical and see the world. Our plan? Visit Africa, South America, and Asia to experience how bitcoin is impacting the global south. Having never set foot in Africa we settled on the Cairo to Cape Town overland route. It allowed us to start from the north and head south across the east coast.\n\nWe went in with surface-level knowledge about Africa: Egypt = pyramids, East Africa = animals South Africa = Cape Town. Boy were we wrong! Africa is so misunderstood starting with the fact that it’s a continent, not a country. Each country is unique and we are humbled to have made them our home for the past year.\n\n332 days, 10 countries 37,000 km, 2 flights, 17 buses, 21 taxis, and countless bitcoin interactions later, our African journey is complete. (Almost! Need to visit a friend in Namibia)\n\nDue to safety concerns, we had to skip Sudan and flew in and out of Ethiopia. Except for these two flights, we completed this entire journey overland using buses and taxis. (shared taxis are fun – a game of how many can squeeze into a van before it breaks down)\n\nOne post won’t do justice to this adventure so we will be spending the next two months catching up and sharing experiences thus far. Some highlights include:\n\n-Founded 2 bitcoin preferred businesses (a juice shop and an Airbnb)\n-Onboarded 12 merchants and a charity to accept bitcoin as payments\n-Spoke at our first bitcoin conference\n-Attended 8 community meetups (presented in 4)\n-Paid 35 businesses in bitcoin (includes 3 safaris)\n-Invested in a Bitcoin-preferred business\n-We look forward to sharing stories from each country and hope you enjoy them.\n\n-A Student of Bitcoin \N 16695 \N 206112 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.84089000905642 0 \N \N f 3331702 \N 1 151024732 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434637 2025-03-12 04:55:49.342 2025-03-29 22:39:47.374 Elizabeth Warren signs a certificate to honor Satoshi Nakamoto! https://twitter.com/BitcoinMagazine/status/1758152940454330708/photo/1\n\nBREAKING: Elizabeth Warren signs a certificate to honor #Bitcoin creator Satoshi Nakamoto with a ceremonial flag flying. "Americans are forever grateful." 🇺🇸\n\n\n\n![GGY2N5qXEAA0f4W.jpg](https://m.stacker.news/16247) \N 7587 \N 434637 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.7958993594887 0 \N \N f 314737726 \N 3 59254169 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 06:26:04.604 f \N \N \N 0 0 0 0 2 0 0 450083 2025-03-23 18:37:26.698 2025-03-29 22:39:47.375 Canada Announces 'Amnesty' Day Allowing Bitcoin Miners to Surrender ASICs, \N https://www.bugle.news/canada/ 964 \N 450083 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 20.2745307332436 0 \N \N f 314586035 \N 2 174999086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434957 2025-03-12 11:16:21.901 2025-03-29 22:39:47.376 Using LNsploit to Steal from LND nodes \N https://abytesjourney.com/using-lnsploit-to-steal-from-lnd-nodes/ 11522 \N 434957 \N \N \N \N \N \N \N \N science \N ACTIVE \N 13.0351698159935 0 \N \N f 652934982 \N 5 183784107 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:10:05.514 f \N \N \N 0 0 0 0 3 0 0 260012 2024-10-08 11:18:07.677 2025-03-29 22:39:47.602 The Stacker News before Stacker News was 'WitCoin' I got tagged in discussion about [the origin of zaps](https://njump.me/nevent1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qg3waehxw309ahx7um5wgh8w6twv5hszrnhwden5te0dehhxtnvdakz7qgmwaehxw309aex2mrp0yhx7unpdenk2urfd3kzuer9wchszxthwden5te0wfjkccte9ehx7um5wghxxmmd9esh2tcpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0qyv8wumn8ghj7un9d3shjtnrw4e8yetwwshxv7tf9uq3jamnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kz7qgnwaehxw309ahkvenrdpskjm3wwp6kytcpr9mhxue69uhkc6t8dp6xu6twvaex2mrp0yhxxmmd9uqzplz9zpx70vmfm6hnqpj0k6gur6f2f73tm8kry98xfznhzj2wc48ljvfn27) by @dk. It reminded me of all the instances of zaps that I was made aware of after starting SN.\n\nThe earliest instance, as far as I know, dates back to 2011 with a site called WitCoin which used custodial onchain bitcoin for zaps and fees. I learned about it from [this comment](https://stacker.news/items/1620/r/k00b?commentId=7215) by @cointastical:\n\n> Did you know?\n>\n> Long before Stacker.News, there was Witcoin. Back when BTC/USD was under $1.\n>\n> Witcoin UI was pretty basic, but along the same lines as SN (pay in BTC to post, to comment, to upvote, etc, and the OP got most of the payment for upvotes and comments, and the site got its cut).\n>\n> https://en.bitcoin.it/wiki/Witcoin\n> https://bitcointalk.org/index.php?topic=2516.0\n> \n> tl;dr: Custodial wallet. Eventually abandoned and outstanding balances rugged. https://web.archive.org/web/20111007212909/http://witcoin.com/help 15103 \N 260012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9018028395865 0 \N \N f 0 \N 0 118754227 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413790 2025-02-23 13:19:46.134 2025-03-29 22:39:47.607 Semaphore.finance now has lightning support I just added lightning network support to Semaphore. Semaphore fundraisers now have feature parity with Geyser fundraisers, except Semaphore doesn't have any fees. (Geyser charges a 2% fee on all lightning contributions.)\n\nTry it out! https://semaphore.finance/\n\nNote that making lightning payments reversible would require additional trust assumptions, which I don't want to introduce. Consequently, contributors only see the "pay with lightning" option if they choose to do an irreversible pledge.\n\nAlso, I don't know how to automatically & reliably detect lightning payments without running some sort of middleman server, so I have the contributor just "tell the site" they made the payment by pasting their preimage. Semaphore then verifies that the preimage matches what the recipient's invoice expects and only counts the contribution toward the goal if the preimage matches.\n\n(Technically I guess that means Semaphore *doesn't* quite have feature parity with Geyser. Geyser *does* automatically detect lightning payments, so you don't have to copy/paste a preimage to prove you did it. They are able to autodetect them because they *are* running a middleman server, which they do in order to take their cut.) \N 1602 \N 413790 \N \N \N \N \N \N \N \N A_bit_of_Good_News \N ACTIVE \N 19.987251640947 0 \N \N f 0 \N 0 178169048 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 152592 2024-04-02 15:06:37.59 2025-03-29 22:39:47.612 Continuation of "Self-Custody for Everyone": What Are Banks Plotting? Thank you to everyone who participated in and commented on the poll yesterday regarding whether if "Self-Custody is suitable for everyone?". Looking at the poll results, opinions seem to be divided, and personally, I expected a different voting ratio. \n\n![Unbenannt.PNG](https://m.stacker.news/6561)\n\nHere in Germany, both major banks, Commerzbank and Deutsche Bank, applied for a crypto custody license this year. Commerzbank recently obtained it, and several smaller banks (Donner & Reuscheln, M.M. Marburg, etc.) have also secured this license. I believe these major banks are considering how to navigate the increasing Bitcoin adoption and how to integrate it into their business strategies. I am particularly curious about what such products could look like. \n\nAs mentioned yesterday, I am a staunch supporter of Self-Custody, but I am intrigued to understand the potential future products from these institutions, as they are likely to become part of our daily lives, whether intentionally or not. Alternatively, could we see the emergence of new service providers like Custodia Bank or others?\n\n\nIn what ways could typical banks enter the custody business and monetize custody services? Have banks in your regioin applied for similar licenses or even already have them?\n\n \N 14515 \N 152592 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7297984850496 0 \N \N f 0 \N 0 202483225 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421720 2025-03-01 22:59:34.877 2025-03-29 22:39:47.373 Satlantis Season 3 is Underway! 84 million sats awarded so far! Satlantis is a bitcoin based minecraft server that uses sats as the currency. All the revenue that the game generates is shared with the players via a proof of work like system where players must collect and expend in-game resources for the chance to win block rewards. To date Satlantis has awarded over 84 million sats to players in total.\n\n\nThere's a lot of new updates this season including: \n\n-The launch of Hunger Games, a classic game mode of battle royale\n\n-A new line of ASICs to be unlocked\n\n-A new elytra race map\n\nAnd much more!\n\n\nWe also now offer our premium battlepass to be purchased with fiat, so you can speed up your sat stacking adventure KYC free.\n\nTo learn more visit our discord: https://discord.gg/Z6FXJ5zTPy\n\nOr connect directly to the game with:\nServer ip: play.satlantis.net\nMinecraft Version: 1.19.3\n\n \N 13921 \N 421720 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.8113101676611 0 \N \N f 1305587215 \N 9 20505373 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 243284 2024-09-21 23:20:20.449 2025-03-29 22:39:47.374 New App to Win and Earn Bitcoin Hey everyone!\n\nWe just launched the mainnet for our app called Workit. It's a fully-fledged Lightning Keychain with both custodial and self-custodial solutions (the latter will be activated soon), developed with LDK. Workit operates globally in every country.\n\nYou can earn Bitcoin simply by walking or completing other physical activities. Any amount earned is withdrawable without a threshold.\n\nWe also host Challenges, with the first one being announced on July 15th. You can participate and compete for the total pot, which includes pre-set prizes like $1K USD in Bitcoin, hardware wallets, Bitcoin vouchers, and more. The challenges are completely winnable—there is no chance involved—you are guaranteed to win as long as you complete the milestones.\n\nAs more people join, the prize pool increases.\n\nWe are currently available only on the App Store: https://apps.apple.com/us/app/workit-earn-bitcoin-fitness/id1570096202\n\nPlease give us a try and let us know if you have any questions or concerns.\n\n \N 19488 \N 243284 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 4.59730870970898 0 \N \N f 247579744 \N 1 100825620 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417471 2025-02-26 11:48:23.369 2025-03-29 22:39:47.606 What's a moment you'll never forget exactly where you were when it happened? When I first learned about Bitcoin in 2013...it's painfully vivid.\n\nWas on the highway inbetween cities on a drive back home with my family. Mid afternoon, watching the grass fly by me outside of my window.\n\nI can't remember why we were talking about real estate at that time, but nonetheless my father was talking about how he heard of this new technology called the "blockchain" that can "intermediate the payments between real estate brokers and home buyers, without any need for the brokerage!"\n\nBitcoin wasn't even part of this conversation.\n\nIt was vague head nods and a "huh, cool! I wonder how that works."\n"I don't know, but apparently you can use it for any payment, not just real estate." \n"Hm, the government and banks probably wont allow that though right?"\n"Yeah, probably, but it's a cool idea!"\n\n-- and then the conversation drifted elsewhere.\n\nKnowing how life is now..._sigh_.. \N 20660 \N 417471 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 23.9077159358446 0 \N \N f 372181073 \N 4 60429128 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 458121 2025-03-29 00:51:01.775 2025-03-29 22:39:47.606 LN Channels Recommender Bot - Introduction I would like to introduce to all LN node runners, especially the public routing ones a new form of finding the best LN channels peers for your public nodes: The Telegram Bot Channel Recommender.\n\nThe bot was created by Kevin (LL developer) and is running in a simple way over Telegram.\n\nFor the moment there's a generic fee of 1 sat to query the recommendations and possible that in the future will be incremental, based on the number of queries a user will do with the bot.\nYou have to understand that the bot is doing like 60000 combination queries to find your best peers and is using a lot of computation and resources, so the actual fee is quite symbolic.\n\n### Usage:\n1. Using Telegram https://t.me/chanrecommender_bot just click on /start\n2. Input your node pubkey\n3. Input the min/max channel size (use sats as unit, like 5000000 as 5 million sats)\n4. You will be prompted to pay a LN invoice of 1 sat\n5. It will take up to 5 min to find the best result, so be patient. It will show up 3 of the most important aspects to connect to a peer, with their score, based on the size of the channel:\n- Top 5 Improvements in Hubness\n- Top 5 Improvements in Hopness\n- Top 5 Improvements in Centrality\n\n### REMINDER: \nThis bot will recommend ONLY public routing peers! Do not use it for your private LN nodes.\n\nHappy Lightning and good sail routing ! \N 9537 \N 458121 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 25.5656845866883 0 \N \N f 0 \N 0 47280604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441058 2025-03-17 18:15:59.826 2025-03-29 22:39:47.607 THNDR Games AMA - Club Bitcoin: Solitaire♣️ Team THNDR here to talk about all things bitcoin gaming. We just released our newest game, Club Bitcoin: Solitaire♣️! It's the classic Solitaire, but sexier than ever before. And with bitcoin.\n\n🚀We hit lucky #21 in the App Store in card games, which is a BIG deal.\n\nWe believe easy, familiar, and fun mobile games are the perfect tool to spearhead mass bitcoin adoption. Club Bitcoin: Solitaire♣️ is the perfect game to do this.\n\n🎮You can get the game here: https://bitcoin-solitaire.sng.link/Dx606/3fw1x/8sw3\n\nThe team (you can find us here: thndr.games/team) will be here throughout the day to answer any questions you may have about:\n - Bitcoin gaming\n - THNDR\n - Bitcoin: Solitaire♣️\n - Any thing else!\n\nLFG!!!!!!!!!!\n\nWebsite: thndr.games\nTwitter: twitter.com/thndrgames\n\n \N 17011 \N 441058 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 25.5096762562355 0 \N \N f 0 \N 0 206277969 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 292915 2024-11-11 08:20:10.786 2025-03-29 22:39:47.608 The Hacker News Top 40 books of 2023 I historically get so much value (and a bunch of FOMO, tbh) from HN book recs. Every so often somebody compiles a list of 'em, and here's the latest I've seen of that.\n\nObviously this indexes heavily on HN readers, but that's just fine for me. If you have zero interest in dev / math / science you may be bored, though. https://hnreads.com/post/top40_2023/ 19292 \N 292915 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.03225717523 0 \N \N f 57856542 \N 1 167142052 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444606 2025-03-20 03:56:26.783 2025-03-29 22:39:47.374 Fedimint Prediction Markets Demo on Mutinynet Hello Everyone! I have created a fedimint federation on Mutinynet with the prediction markets custom module I have been working on for a while. I have also been working on a client UI for it and would like to invite everyone interested to come check it out!\n\n## Links\n\n#### [General Usage Guide](https://github.com/Fedimint-Prediction-Markets/webimint-rs-prediction-markets/blob/master/docs/usage/README.md)\n\n#### [Client UI](http://135.125.112.189/)\nFederation Invite:\n fed11qgqpcxnhwvaz7te3xv6juvfjx5hrzvfj9ccnswf68qcnwdp0qqqjpnd83jmv4v5mgxd25sfp94jg77lryvgg74mnme00npjz5x90yj3fw2ntss\n\n#### [Mutinynet Faucet](https://faucet.mutinynet.com/)\nSend to yourself through lightning network bolt 11. I recommend everyone only deposit up to 1,000,000 msats to keep everything somewhat balanced.\n\n#### [Project Github Org](https://github.com/Fedimint-Prediction-Markets)\n\nThanks for looking and post your markets! \N 761 \N 444606 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.42420150085353 0 \N \N f 29652741 \N 1 178907431 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404468 2025-02-15 22:32:08.311 2025-03-29 22:39:47.375 When will Bitcoin become as boring as gold? The idea of Bitcoin being boring has been discussed on [SN before](https://stacker.news/items/204365/r/davidw), as well as during my previous [SN post](https://stacker.news/items/406373/r/davidw) on Bitcoin's Lost Decade™.\n\nI'd love to gauge official Stacker sentiment on when we might see the youth of tomorrow disengage like they do with gold today, calling Bitcoin "boomer" technology or a "pet block"...\n \N 21062 \N 404468 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.36099599466854 0 \N \N f 60805855 \N 1 108241296 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401942 2025-02-13 13:14:52.471 2025-03-29 22:39:47.375 Bitcoin & Mental Health I didn't want to write this post, but after the past few day's I have come to a point where I decided this needed to be done. First off, I love bitcoin & the community of people I have met through it. Growing up in a heavily left-leaning society (Quebec, Canada), I felt like an outcast being somewhat "red pilled" / right leaning person. The Bitcoin community made me realize I am not alone. \n\nBut recently, I have been seeing many Bitcoiners on twitter just completely shit on anyone who has mental health issues. Calling them: "weak men", "they probably don't work out", "they eat like shit", "watch too much porn" & "haven't found jesus" etc. I get that these are opinions, and everyone should be allowed to have their own take. \n\nAs someone who lost his sister to a 10-year mental health battle which ended in suicide a few months ago, I just couldn't let this slide. Mental health is not black and white. I saw my sister degrade in front of me over a 10 year period. It is a beast of nature that is hard to explain.\n\nSo I guess my point is we need a little more compassion for victims of mental health, and the family and friends it can affect. I know we are "based bitcoiners bro", but have a little compassion. \N 19524 \N 401942 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.86833751008374 0 \N \N f 47314691 \N 1 77404553 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423505 2025-03-03 12:27:53.794 2025-03-29 22:39:47.376 Little L2s - Song by Super Testnet My latest single is Little L2s, all about a typical experience using bitcoin's "layer two" protocols\n\nhttps://supertestnet.github.io/songs/Super%20Testnet%20-%20Little%20L2s.mp3 \N 4250 \N 423505 \N \N \N \N \N \N \N \N news \N ACTIVE \N 6.21363985846639 0 \N \N f 62814147 \N 1 50595133 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401078 2025-02-12 17:30:08.93 2025-03-29 22:39:47.376 lnaddrd: A self-hosted webserver which provides a Lightning Address _No third parties, at all. Just you, your machine, and your money._\n\n`lnaddrd` (Lightning Address Daemon) is a quick webserver i whipped up this afternoon. I realized there weren't any simple self-custodial LNURL webservers supporting LN Address. I don't want to trust third party services like Wallet-of-Satoshi, or Stacker.news with my money (or my privacy). I just wanted a simple webserver that fulfills the already-very-simple Lightning Address specifications. That's it. And that's `lnaddrd`. \n\n\nThis server now powers my `conduition@conduition.io` lightning address. I hope some of you self-hosting plebs find it useful. https://github.com/conduition/lnaddrd 652 \N 401078 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.28023026632622 0 \N \N f 17060896 \N 1 183758204 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457838 2025-03-28 18:40:43.903 2025-03-29 22:39:47.603 What is masculinity? This is a question I mull over occasionally. We hear about "toxic masculinity" all the time and I think it's a perfectly easy concept to grasp. That implies there's a healthy masculinity, but we don't hear about that nearly as often.\n\nThis topic popped into my head while watching the Trump assassination attempt video. My eyes were drawn to the men in the background who dove to cover their loved ones. In particular, I noticed one man who was apparently there with his kid and I could feel his terror as he covered his kid with his body until well after the shots stopped. It's hard to convey to those without kids how resonant that imagery is. Then we find out that the man who died, Corey Comperatore, was shielding his family with his body. In my book, that's as masculine as it gets and that man is as big of a hero as anyone can be.\n\nI was listening to Part of the Problem earlier today and they were talking about masculinity. Dave was making fun of the lame superficial internet version that's embodied by Andrew Tate. His take was that masculinity boils down to "protection and provision". They also discussed the importance of being "peaceful, but not harmless" and how being harmless is essentially the least masculine trait.\n\nAt the heart of this, there's a recognition that ultimately we are more expendable than our loved ones and we need to be able to act on that.\n\nWhat do you all think? I'm eager to hear your thoughts. \N 14472 \N 457838 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 11.8322167061158 0 \N \N f 69094097 \N 1 165267952 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430795 2025-03-09 12:34:12.342 2025-03-29 22:39:47.605 Outer Space release: NIP-05 is ready I know it ain't much, but you can now configure your NIP-05 in [Outer Space](https://outer.space). For now, you'll need a NIP-07 nostr extension to "connect" ... I don't want you putting your private key in the browser. I'll probably add DM-based "connect" before too long which should help mobile-bound folks.\n\nIf it isn't clear already, the Outer Space client(s) will still be usable without a NIP-05 and wallet from Outer Space. You'll just have to byo.\n\n**what's next**\n- I'm going to do a sprint on SN stuff \n - adding a nostr sub and nostr login\n - reviewing/merging prs\n - whatever else I can fit into the sprint\n- Back to Outer Space to build the wallet\n- I've been developing an SN-like algorithm that I think is cross-compatible with Nostr and can be described pretty simply with linear algebra\n - I'll have to empirically determine whether it's feasible to do on the client (not likely) and if not I'll probably have to propose a NIP for algorithms \N 663 \N 430795 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.520344629371 0 \N \N f 429916523 \N 2 102640142 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444015 2025-03-19 16:08:31.742 2025-03-29 22:39:47.375 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/441854) are the updates stackers shared from all their latest work projects. \N 21051 \N 444015 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 18.1531592507496 0 \N \N f 297302230 \N 3 230414111 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 410018 2025-02-20 06:49:32.886 2025-03-29 22:39:47.376 Reminder to Check Your Bitcoin Setups (Seedphrases, Backups, HWWs, Passphrases) Tl;dr, Stackers—gimme your best secure Bitcoin setups advice. \n\n---\nHi everyone, \n\nWith time in Bitcoin you acquire many different wallets, hardware equipment, and mixes of hot and cold (online and offline) wallets. \n\nIt quickly spirals out of control, even for the best of us.\n\nSo this beautiful Sunday—with partner out of town and nothing urgent on my desk—I got around to checking some of my setups and their backups. I have relied on many different [methods over the years](https://bitcoinmagazine.com/sponsored/8-reasons-to-use-a-bitcoin-hardware-wallet?) (online, offline, multisig with geographically distributed backups, single-sig with memorized backup phrases etc, etc) and as freakin' always they all come with trade-offs. ("[There are no solutions, only trade-offs](https://quotefancy.com/quote/920730/Thomas-Sowell-There-are-no-solutions-there-are-only-trade-offs)")\n\nMy best advice is to ask yourself the primary question: _What_ is my setup trying to achieve?\n\nSecondary, how much spending needs do I have on a regular basis? If you work a stable fiat job and just send to cold storage regularly, you might not need very fancy setups—a single hardware wallet with steel backups in one or two locations might be enough. Or for big enough stacks, perhaps multisigs that you can't even access yourself. (_Get drunk and wanna impulse-buy something irresponsibly?!_)\n\nAnything more complicated, and I'm not quite sure what's a good setup. Like I mentioned in the Seth for Privacy AMA last month (https://stacker.news/items/779074/r/denlillaapan?commentId=779121), there's a half-dozen wallets on my phone, all of which requiring some sort of backup in case I drop it in the ocean—or custodial setups that come with their own sorts of risks. A good number of hardware wallets have passed through my hands, some in use, some new, some leftover from previous setups. \n\n**You are your worst enemy**\nThe most obvious risk a general pleb faces isn't a $5-(well, $10 now... inflation) wrench attack, or a natural disaster washing away your house or attic our garage... but _your own goddamn self_. You'll forget your passphrase, forget what the PIN is, forget where you stored your backup, lose the hardware wallet itself ("Honey, did you throw away a small, plastic calculator-looking thing when you cleaned out the basement?!")\n \nFor most of us, living in safe, stable environments/countries/cities/villages, it's not the external threat to our stack that matters but **our internal error-prone selves**. \n\nTwo great resources I've found comes to us from Unchained Capital ("[Best Practices for Securing the Keys to your Unchained Vault](https://unchained.com/blog/unchained-vault-key-security-best-practices/)") and Jameson Lopp ("[How to Back Up a Seed Phrase](https://blog.lopp.net/how-to-back-up-a-seed-phrase/)"). \n\nOn the last one, a real @realBitcoinDog quote from 2+ years ago is = "TLDR: you suck at security, so pay for casa (or unchained capital)."\n\nWell, he might very well be right. Here's my major problem from when I used multisigs: \n\n![](https://m.stacker.news/66756)\n\nProblem? There are only so many good locations I have access to (home, family members' homes, office etc). I looked at having a safe deposit box at my local bank branch a few months ago—but they'd charge about $100 a year (plus one-offs fees for each visit), and I quickly get greedy: That's a 100k sats right now... and probably more in a few years. _eeeehh, gimme the extra sats!_\n\n---\n\n**The 3 Levels of Accessibility**\nPractically speaking, I'm going to need 3 things: \n- Lightning wallet balance for easy spending/receiving\n- on-chained balance on a phone or easy-to-travel-with hardware wallet (say a nice [BitBox](https://bitbox.swiss/bitbox02/) that sticks into any odd device)\n- hardware stash I don't touch (except for emergencies or big purchases)\n\nIf the lightning wallet has backups (say, Phoenix) but also a custodial one for cheaps (WoS, Blink etc) that's **one backup**; plus **another one** for the on-chained wallet on your phone; plus the **one or two** for the main savings. \n\nSo _at a slim minimum_ you need 3-4 backups, all of which come with seeds (and if passphrases, too, then you're at 8 objects/information to safeguard; with PINs for some hardware wallet that's another couple of pieces of information to remember/keep safe). \n \nOK, cool. \n\nHere are some problems I found myself in earlier this year: \n- having to pay an above-liquidity amount on-chained when I had access to was lightning. \n- needing to pay from a hardware wallet I had at a different physical location (different country). \n- all-eggs-in-one-basket, with both hardware wallets and back-ups distributed in one location only (_what if there's a fire?!_) \n- forgetting the passphrase to a hot wallet with a few million sats in it (that I fortunately could still spend from), and after trying _every goddamn variation_ of the passphrase I knew was correct, simply giving up and spending it to another hardware wallet. \n- inheritance: wth happens if I die?! Some people know some of the setup, but nobody knows all of them—and most certainly not the PINs or passphrases. \n\nChecking things today, I found that I had duplicated the seedphrase from one of my major stashes in _far too many places_—some even written down on paper and carelessly left laying around. I also couldn't remember where my Phoenix wallet backup was, so had to make a new one. (I'm sure in a future check I'll find _them_ scattered around various places and be annoyed at my own riskiness...). \n\n\n**TL;DR:**\n\nBitcoin safekeeping is tricky, and you need an appropriate balance between immediate liquidity needs (lightning + on-chained) and a safeguarded stash. Truly safeguarding your bitcoin is _HARD-AS-FUCK_. Totally get it that people outsource setups to Casa or Unchained. \n\nGimme all your best tricks or solutions. \n- Any particular advice you found useful? \n- Are we gonna end of having _password managers_ for our various low-importance bitcoin storages?!\n- How do you think about the trade-off between immediate spending needs and long-term storage? \n- How do you save for your kids/partners or other dependents? (Separate out, i.e. _even more_ wallets, or just merge with your own stash?)\n\n\n\n\n\n \N 1603 \N 410018 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 0.323776343386228 0 \N \N f 1657731126 \N 11 159011230 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 215973 2024-08-17 09:21:06.308 2025-03-29 22:39:47.598 Allen Farrington AMA cofounder of Axiom, coauthor of Bitcoin is Venice, Only The Strong Survive, Green Eggs And Ham, professional shitposter, semi-professional investor. honestly ask whatever you want, if it's inappropriate I'll just be sarcastic 👍 \N 11938 \N 215973 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.7614158123956 0 \N \N f 918994104 \N 6 111988255 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413495 2025-02-23 09:03:59.232 2025-03-29 22:39:47.602 What's your "ritual" for reading a book smoothly? I've started reading again after a while and I've noticed something interesting this morning.\n\nAfter I woke up, I decided to pick up my book and just start reading, which for some reason went *much smoother* than when I read during the day / evening. \n\nI suppose it's something to do with my mind being all busy from the day itself, which wasn't the case this morning, for I just woke up, picked up the book and went *ham*.\n\nMy question is as simple as it is important; \n\nDo you recognize what I describe above, and what "ritual" do you apply to be able to read that *smooth* no matter how busy one's day might have been? \N 1198 \N 413495 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.7509754248624 0 \N \N f 0 \N 0 41111642 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2502 2022-10-14 02:23:54.781 2025-03-29 22:39:47.603 Bitcoin only. Trying to survive without a single euro in my neighboring country Hey stackers, as some of you may know, I'm currently in a neighboring country, right on the border between our lands, enjoying a blissful 10 days off the grid (though I must admit, SN is the only cyber spot I'm visiting).\n\nNow, as you can imagine from the title of this post, I'm as broke as a joke, arrived here with only a flight ticket bought with bitcoin via travala, and I'm trying to make ends meet with my beloved sats and a couple of bitrefill gift cards, at least to avoid starving, though I see them as a last resort. For now, btcmap is coming in clutch, helping me sniff out some local joints that accept Bitcoin. Lucky for me, two of them are conveniently located near the place I'm crashing, so my daily grub, thankfully, seems to be covered. \nhttps://c.tenor.com/CbhnRg0n7ksAAAAC/tenor.gif\nOn the flip side, there are plenty of activities I've tried to dive into, but sadly, no dice. Snowboarding, hot air ballooning, or renting a car—three things that seem like mission impossible here without filthy fiat, so I've had to settle for watching from the sidelines. Which isn't the end of the world, after all, I'm here to survive and enjoy the wilderness, which is free, at least for now...\n\nI'll be sharing some bitcoin-related tidbits from my stay, socially speaking, there aren't many bitcoiners around these parts. Orangepill app tells me there's a bitcoiner drought, and my big suitcase sticker hasn't attracted much more than curious glances and head-scratching, but hey, what did I expect? Bitcoiners have always been a one-man army, right?\n\nThanks for tuning in, stackers! 🤠👌 \N 18330 \N 2502 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.6151687977633 0 \N \N f 0 \N 0 44488587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 62127 2023-09-11 05:57:58.588 2025-03-29 22:39:47.604 "No" an Open Letter Dear developers who work on Bitcoin. \n\nNo.\n\nThank you, with Love.\n\nBut No.\n\nThis is the default frame of Bitcoin node runners. And it should be. \n\nThe burden of proof is on you to make clear your case for your proposed feature. If that feature requires a change in consensus rules, you have good faith work to do. \n\nIf you do not make clear the specific benefits of your feature,\n\nIf you do not make clear the specific cost(s) of your feature,\n\nIf you whine about covert social contracts being violated,\n\nIf you make bad arguments,\n\nIf you engage in trolling,\n\nIf you engage in bad faith,\n\nIf you conflate, if you gaslight, if you lie, \n\nIf you play dumb to avoid the truth,\n\nIf you misrepresent opposing arguments,\n\nIf you gloss over the true cost of your feature,\n\nIf you hide the true purpose of your feature,\n\nIf you compromise Bitcoin,\n\nThen you have earned that “No.”\n\nNothing more, nothing less. Just a simple No. \n\nThe default answer was already No, but now you’ve earned it by satisfying any one of the above conditions.\n\nWe appreciate you, we love you for maintaining this walled garden of freedom and hope.\n\nBut we will not submit what Bitcoin needs to your wants.\n\nThank you for enduring. We know it’s not easy, but you can handle this. \n\nSo act in good faith, Be worthy of a Yes... Few Are.\n\n\nTo the Bitcoin Miners. There is zero appetite for any kind of softfork at this time. Let alone a Miner Activated Soft Fork. Indeed the sentiment for a Miner Activated Softfork is extremely negative in principle at this time, given recent events surrounding taproot activation and related consequences.\n\nIf you want to fuck around with a Miner Activated Softfork at this time, you will find out, in more ways then one.\n\n\nTo the Bitcoin Community at large, Run a Node. Learn what that means and it’s implications for you and the Bitcoin network at large.\n\nNo one is in control of the Bitcoin Network. But node runners can have a say. \n\nBe one. \n\nHave a say. \n\nExercise your logos. Run Bitcoin. \N 1960 \N 62127 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.500515172601723 0 \N \N f 0 \N 0 134609341 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52184 2023-08-19 11:37:12.916 2025-03-29 22:39:47.607 zap.store, a permissionless app store zap.store 0.1.0 is here!\n\nFor months I have been dreaming of a better app store, frustrated by big tech's permissioned bs, GPG's complexities, and Obtainium's reliance on centralized services and poor UX.\n\nHere's the first (very alpha) iteration of zap.store, a permissionless app store leveraging the nostr social graph.\n\n✔ Android only (for now! Desktop coming soon)\n✔ Obtainium drop-in replacement (smaller catalog but growing)\n✔ App releases are signed/curated by this account, as developers start self-signing\n✔ Web of trust check before installing an app\n\n![](https://image.nostr.build/c2c871671ee42586cdb33ac99d6ac423d6741ad2f8180fd8b7a7cbacc403da79.png)\n\nGet it at https://zap.store or https://github.com/zapstore/zapstore\n\n(SHA-256 hash of the APK version 0.1.0 is 8540bd492064c17d83bcdc6d2a463c2aea46f13c2b0d13b8a96023df95bd0c9d)\n https://zap.store/ 7818 \N 52184 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.19907211130138 0 \N \N f 0 \N 0 16821100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430488 2025-03-09 08:47:37.403 2025-03-29 22:39:47.608 How to plug in a 'strange' USB device? Most people around here probably know that using USB peripherals is a giant security risk; however, in normal life it's pretty hard not to use them, at least if you're interfacing with the rest of humankind.\n\nSo imagine this scenario: someone, who is probably a good actor gives you a USB drive with some data on it. You want to transfer this data to your computer. You have modest ability to be paranoid, e.g., you could have a spare computer, some kind of dongle, whatever. You don't, however, have the ability to be extremely paranoid (e.g., you get a disposable computer for each USB you plug in.) \n\nWhat should you do? I'm looking for practical advice to solve a practical problem. \N 20190 \N 430488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.83122092621096 0 \N \N f 66400430 \N 1 68409287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420816 2025-03-01 06:19:31.737 2025-03-29 22:39:47.376 Stacker News Privacy Policy Stacker News takes user privacy seriously. This document highlights the privacy-enhancing features we offer, the data we store, and the limited and anonymous data we share for analytics.\n\n‎\n## Privacy-Enhancing Features\n\nTo help you maintain your privacy on Stacker News, we offer the following features:\n\n‎\n##### Log In with Lightning\n\nThis is the most private way to use Stacker News. This feature allows anyone to create a Stacker News account and log in by signing a message with any LNURL-auth enabled Lightning wallet. \n\nIf you choose to log in with Lightning, Stacker News cannot see any information about your Lightning node pubkey.\n\n‎\n##### Accessibility via Tor\n\nTo access the site over Tor, visit the following address:\n\n`snsnsnya6h3ot563f3p566wuhfoklkg5f62hokdlaqzcaub3gf4xlxyd.onion`\n\n‎\n##### Lightning Network Deposits and Withdrawals\n\nLightning deposits and withdrawals allow you to move money to and from Stacker News without making an on-chain Bitcoin transaction. \n\nWhen you deposit sats on Stacker News, the only data Stacker News stores is the money you’ve received. When you withdraw sats from Stacker News, the corresponding bolt11 invoice is stored. Importantly, bolt11 invoices reveal the receiving node’s pubkey.\n\nLightning offers a more private method of making Bitcoin payments than on-chain Bitcoin payments, which are visible to anyone with a Bitcoin node.\n\n‎\n##### Pseudonyms\n\nOn Stacker News you can set any username you want, and you can change your username at any time. Stacker News does not maintain a list of your past usernames.\n\n‎\n## Data We Store\n\nIf you opt-in to our weekly newsletter or choose to login via email, we store your email address on our self-hosted email server. Your email address is not shared with anyone else or used for promotional purposes.\n\nIf you choose to login with Github or Twitter, we store your username from those apps. \n\nIn either case, your Stacker News username will be set to your Github or Twitter username by default, but you can change your Stacker News username at any time. \n\nThe only other data stored from your Github or Twitter account is a corresponding unique ID (different from your username) so you can log back in to Stacker News after logging out.\n\nStacker News stores Lightning Network invoices when you choose to withdraw funds, and all transactions made within the Stacker News platform.\n\n‎\n## Data We Don’t Store\n\nStacker News does not store the account pseudonyms you’ve used in the past.\n\nStacker News does not store your email address if:\n\n- You are not signed up for our newsletter, and\n- You created your account by logging in with Twitter, Github, or Lightning\n\nIf you log in with Twitter, Twitter’s API gives Stacker News access to the email address linked to your Twitter account, but Stacker News does not store it.\n\nStacker News does not store any user IP addresses.\n\n‎\n## Data We Share\n\nStacker News uses Plausible to share anonymized public-facing analytics data. To learn more about Plausible’s privacy policy, click [here](https://plausible.io/privacy). \N 1647 \N 420816 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.6746489737607 0 \N \N f 517748346 \N 5 125646165 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 441070 2025-03-17 18:30:01.15 2025-03-29 22:39:47.376 NIP88: "Discreet Log Contracts over Nostr" has enormous potential I just learned about @benthecarman's [NIP](https://github.com/nostr-protocol/nips/pull/919) and its incredible potential. i think this could lay the groundwork for some really game-changing applications that do things people didn't realize were possible before. \n\nWith Nostr as a layer of discoverability for DLC oracles, anyone with an internet connected device can:\n\n- become an oracle\n- discover other oracles on the same relay\n- hear announcements from any oracles who connect to the same relay\n- create conditional contracts based on those announcements\n- create _multi-oracle contracts_ which resolve based on the opinions of different oracles, possibly _on distinct relays_\n\nIf this is combined with [ticketed DLCs over lightning](https://conduition.io/scriptless/ticketed-dlc/), or [ECash DLCs](https://github.com/cashubtc/nuts/pull/128), people could even settle these contracts instantly. \N 634 \N 441070 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 8.09354659164274 0 \N \N f 35407731 \N 1 133621417 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 412890 2025-02-22 17:43:21.294 2025-03-29 22:39:47.602 Fund a Bitcoin Ranch via Geyser Crowdfunding *In the picturesque countryside of Hrvatsko Zagorje near Zagreb, Croatia, I, Antun Petrusa, embark on a visionary journey to rejuvenate my family's ancestral land. For over a century, this land has remained in my family's possession, spanning 20,000 m² of farmland and 20,000 m² of forest.*\n\n*With deep ties to the land and a passion for sustainability, I envision transforming the neglected acres. I plan to clear the overgrowth and enclose the land with a fence, creating a haven for Scottish Highland cattle, known for their resilience and premium meat.*\n\n*My dream extends beyond mere farming. I imagine a vibrant Bitcoin Hub, nestled within the countryside, where people can hang up, learn about Bitcoin in friendly and relaxed environment and exchange organic product for SATS.* https://geyser.fund/project/bitcoinranch 19502 \N 412890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.93721358748251 0 \N \N f 8230315 \N 1 150653133 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422225 2025-03-02 10:24:07.123 2025-03-29 22:39:47.602 Whatever happened to personal responsibility? Seriously. We live in a day and age where everything is so spoon fed and taken care of for us, that some bitcoiners dilute themselves into thinking that's a feature not a bug, while completely missing the entire point of Bitcoin.\n\nhttps://imgprxy.stacker.news/Cg1RjqGo2X4agCEOmDfEH5Aq7ahinYkAWnrwlnoKnoo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9EV0tVQ3gwLnBuZw\n\nSelf custody is what makes Bitcoin, Bitcoin.\n\nRemember all the phone numbers of friends and family you once kept stored in your head? Addresses, map directions, account numbers, song lyrics, movie quotes, irrelevant niche historical facts, food recipes, formulas, birthdays, holida--.\n\nThat world, when we _had_ to remember some of these things, is not that old. Yet now we're not supposed to be expected to remember random set of 12 words (that you can technically turn into any of the aforementioned ^ , if you so wish).\n\nHow pathetic do we assume humans to be?\n\nWriting down a seed phrase and storing it somewhere safe, and/or simply remembering it, is not difficult. We've done the same thing with countless other aspects of our lives, we can do the same for seed phrases.\n\nhttps://imgprxy.stacker.news/0Usf4Bnw8FJlEqild1DXNddMCrOcmaXP88DwTtUIsdo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9MREpMclo4LnBuZw\n\nAnyone trying to make Bitcoin seem "difficult" to use is just trying to psyop you into actually losing your money, they're not protecting you.\n\nAnother rant this week, i am ANGRY!!! \N 733 \N 422225 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.6277717022433 0 \N \N f 0 \N 0 182298572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458204 2025-03-29 05:30:05.831 2025-03-29 22:39:47.603 This happened after 2 weeks trolling a burger shop until they accept bitcoin 🍔⚡ Hey stackers, two weeks ago I started an experiment in a burger shop near my house, remember this post?\n\nTrolling a burger shop until they accept bitcoin 🍔⚡ https://stacker.news/items/370117\n\nExperiment has ended sooner than expected, yesterday the employees banned the access both me and my friends 😂 a positive point is that they didn't throw any bugers in our faces although I fear they will soon put up a no trespassing sign for toxic bitcoiners or similar.\n\nhttps://media.tenor.com/yC_5wA47c3oAAAAM/ghost-mc-donalds.gif \n\nAnd yep, that's all, it was fun, I won't taste their burgers but we'll try same experiment in other restaurants nearby, probably will soon become the most hated customers among the merchants in my neighborhood, but it's an occupational hazard 🤠\n\nThanks for reading, suggestions, zaps, criticisms, kisses and punches are welcome \N 20987 \N 458204 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 26.514777077479 0 \N \N f 0 \N 0 244220125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430854 2025-03-09 13:14:57.136 2025-03-29 22:39:47.377 Comparing athletes across generations I have debated people on the merits of Michael Jordan vs. Lebron James too many times to count. I see people talking about how Kyrie Irving is better than legends from the 70s like Jerry West. These discussions always drive me nuts as they completely miss the point.\n\nThe argument used that Kyrie Irving is better than Jerry West is what you would expect - better dribbler, shooter, would dominate 70s basketball. If we follow this logic to its conclusion, however, something like 99% of D1 college PGs and all NBA PGs are better than Jerry West.\n\nLet me give another example. I have an advanced degree in math and took PhD level math courses while I was in grad school for econ. None of you would recognize my name if I told it to you. Yet, despite that, when I was at my peak in math I would have destroyed the likes of Isaac Newton and Pythagoras in a math contest. The math I learned in grad school wasn't even known when they were alive. Similarly, there are probably a lot of average physicists in the world today who actually know more about general relativity than einstein. Yet no one in their right mind would ever claim I am better at math than Isaac Newton or some fresh Physics PhD is better than Einstein. \n\nSo, yes, Kyrie Irving would destroy the NBA in the 1970s. People would think he is a wizard. Much like people would think I am a wizard if I went back in time and advanced math by a couple of centuries. \n\nHow do we compare the greatness of athletes across generations, then? It has to be a function of where someone falls in the distribution of "greatness" during their playing days. This applies when comparing statistics across generations as well. Someone scoring scoring 50 points in the 90s was more of an accomplishment than someone scoring 50 today. In all of the 90s, there were 55 total 50, 60, 70 point games. There are already more than 117 in the 2020s. They are on pace to have more than 6x or so, and that is assuming the rate of 50 point games doesn't continue to increase.\n\nJust some back of the napkin math, MJ had 13 50 point games in the 90s. Assuming he would have got 3 more had he played the full decade, that puts him at 16.\n\n2020s are on pace to have roughly 5-6x more 50 point games than the 90s. In order for someone to dominate in scoring the way MJ did, they would have to have 80-96 50 point games this decade. So far the leader has 10. \n\nPoint being, next time someone acts like players from previous eras are garbage, ask them what grade they learned the pythagorean theorem. It was probably middle school. \N 21577 \N 430854 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 19.2361076680715 0 \N \N f 54036094 \N 1 62417429 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 389769 2025-02-03 04:10:31.279 2025-03-29 22:39:47.599 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/388719), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 21067 \N 389769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.19432544341075 0 \N \N f 58135725 \N 1 243588278 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438002 2025-03-15 05:47:39.013 2025-03-29 22:39:47.602 Marco Falke relinquishes Bitcoin Core maintainership \N https://github.com/bitcoin/bitcoin/pull/27135 891 \N 438002 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.13378587816283 0 \N \N f 186042322 \N 1 186060795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422457 2025-03-02 13:10:01.089 2025-03-29 22:39:47.603 Sat Parity coming to your world soon The day bitcoin reaches $100,000 per whole coin, you are going to see gasoline priced in sats everywhere you go. \n\nIn the 1792 Coinage Act, it was stated\n| The money of account of the United States shall be expressed in dollars or units, dismes or tenths, cents or hundredths, and milles or thousandths, a disme being the tenth part of a dollar, a cent the hundredth part of a dollar, a mille the ​thousandth part of a dollar, and that all accounts in the public offices and all proceedings in the courts of the United States shall be kept and had in conformity to this regulation.\n\nA Mill (current spelling) is a thousandth of a dollar, or a tenth of a cent and is an official denomination. Mills are used mainly when determining property taxes (3 mills per dollar value for instance), and mills are listed when you see prices at a gas station. \n\n![](https://m.stacker.news/61995)\n\nSo when bitcoin reaches $100k - and you see “1000 sats/$” at the top of stacker news - you will also see an every day item priced in sats everywhere you go. In this images above the prices would be 1229, 1479, and 1729 Sats per gallon. Gas prices in Sats!! \N 20353 \N 422457 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.42619809483445 0 \N \N f 0 \N 0 140492014 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423088 2025-03-03 00:32:03.066 2025-03-29 22:39:47.604 GDP is a Poor Measure of Economic Health [GDP is a Poor Measure of Economic Health](https://mises.org/wire/gdp-poor-measure-economic-health)\nBy [J.R. MacLeod](https://mises.org/profile/jr-macleod)\n> While economists speak of GDP as a legitimate measure of the economy, a closer look tells us that it is biased toward consumer spending and fails to give a true measure of the value of capital.\n\nThere are a bunch of well-known conceptual issues with GDP:\n* Leisure is not counted;\n* Home production is not counted;\n* Deferred maintenance is not counted;\n* Government expenditures are assumed to be worth what they cost;\n*Non-monetary compensation is not counted.\n\nI'm sure I missed a bunch of others, but I'm curious what stackers perceive as the biggest shortcoming of GDP as an economic metric.\n\nAre there other metrics you prefer?\n\nDevelopment economists sometimes use the Human Development Index (HDI), which explicitly adds education and longevity to income in an effort to capture some other quality of life measures.\n \N 649 \N 423088 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.44537474026867 0 \N \N f 0 \N 0 99444276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404461 2025-02-15 22:16:35.347 2025-03-29 22:39:47.605 GrapheneOS uncovers use-after-free bug in Android 14 QPR2 Bluetooth LE We have discovered a use-after-free memory corruption bug in Android 14 QPR2 for Bluetooth LE. This issue impacts the stock operating system as well. We have reported this to Google as a security bug today.\n\nWe have already made an initial, minimally invasive patch to fix this:\n\nhttps://github.com/GrapheneOS/platform_packages_modules_Bluetooth/commit/e295e5888f97ba11a4d07aff3b6bc48b2512831c\n\nWe have noted elsewhere that this code needs a major refactor and shouldn't be using raw pointers, but we want to avoid introducing new bugs with a quick patch.\n\nThe hardware memory tagging support for Pixel 8 and later has helped massively. On devices earlier than them it likely would manifest as BLE audio devices not working without an error message since it wouldn't crash. Our MTE implementation detects it which is what led to us being able to fix it so quickly.\n\nThe hardening GrapheneOS implements doesn't just help the users by making them safe from exploits, it helps developers by helping them to create more secure software by catching memory corruption bugs and uncovering them thanks to our features.\n\nSee: https://grapheneos.org/usage#bugs-uncovered-by-security-features\n\nPixels shipped a humongous hardware security feature by having memory tagging support but they do not use it for the OS to save around ~3.25% of memory usage. GrapheneOS enabled it by default for the OS and known user-installed apps compatible with it. As we have mentioned before, GrapheneOS is the first platform using MTE in production and Vanadium is the first web browser too.\n\nProgress towards Android 14 QPR2 is coming along nicely and hopefully all (which are minimal) regressions will be fixed soon. \N 15192 \N 404461 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.27095855136687 0 \N \N f 0 \N 0 210043681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458550 2025-03-29 11:03:27.279 2025-03-29 22:39:47.611 Wandering w/ Purpose: A vehicle for growth in Africa For Marco Polo, trade was simple. Limited only by the amount of goods he could carry, everything could be bartered and Gold was readily accepted everywhere. Born from a family of merchants, his life as a trader, explorer, and writer took him across the Silk Road, a historical trade route connecting Europe to Asia where he would establish a rich network of relationships over his lifetime. His writings gave Europe its first glimpse of the East and inspired subsequent explorers to imagine a vibrant future filled with culture, diversity, trade, and prosperity.\n\nMarco Polo would love Bitcoin. No longer limited by physical belongings, today he would be free to transact across borders with wealth stored only in his mind. Marco Polo was ahead of his time. His success in the fiat world would be likely, and it wouldn't take long for him to comprehend the failings of the fiat system. If Marco Polo were alive today, how would he explore the world, how would he utilise his Bitcoin, and how would his writing inspire a bright new future?\n\nWandering w/ Purpose\n\nI've mentioned Wandering w/ Purpose here on Stacker News before, but I haven't shared a proper introduction. In short, it started as a Substack publication inspired largely by Africa, Bitcoin, and the life of Marco Polo.\n\nhttps://wanderingwpurpose.substack.com/\n\nWandering w/ Purpose is where I share my experiences and, after almost two years, it is evolving into a vehicle for growth in Africa.\n\nWandering w/ Purpose on SN:\n\nA bitcoin journey through Africa https://stacker.news/items/24587\nSelf-reflection amongst Africa's smoke and mirrors https://stacker.news/items/667609\nA bitcoin journey through Africa: Outlining adoption for each country visited https://stacker.news/items/698518\n\nI can't say how Marco Polo would have lived his life today, but I can learn from what made him successful. He was sharp and leveraged his family's experience as merchant explorers, yes, but it was the time spent fostering his relationships on the Silk Road that grew him and his legacy.\n\nI believe Africa's Silk Road is lying dormant. Its abundance of resources are evident, but free flow of goods, people, and ideas within the continent are tediously restricted. Bitcoin provides an opportunity to bypass systemic African issues, forcing people and their politics to confront the archaic artificial barriers preventing the continent from moving forward.\n\nWith a low time preference, and by investing in our relationships like Marco Polo, Wandering w/ Purpose is fostering our own Bitcoin Silk Road in Africa. This publication is a vehicle by which to share stories and explore new opportunities in Africa while investing in the growth of those we meet along the way.\n\nI've shared two posts on SN regarding Wandering w/ Purpose's first partnership, Bitcoin Nakawa:\n\nBitcoin Nakawa - a community initiative in Zambia https://stacker.news/items/682979\nBitcoin Nakawa Porject Update #1: Our first funding! https://stacker.news/items/692768\n\nWhether by sheer enthusiasm, subscriptions to Wandering w/ Purpose, or contributions to Bitcoin Nakawa, I'd like to thank everyone who has supported us thus far. We intend to make quick progress with our immediate goals so we can expand the Wandering w/ Purpose vision to help many others.\n\nPlease share any ideas, questions, or criticisms!\n\nWandering w/ Purpose - https://wanderingwpurpose.substack.com/\nBitcoin Nakawa geyser fund - https://geyser.fund/project/bitcoinnakawa\n \N 20523 \N 458550 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.7829139621331 0 \N \N f 0 \N 0 220525173 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 376857 2025-01-22 13:38:24.265 2025-03-29 22:39:47.601 Legend of the Snail | 14/24 participants left | 5 days until next KO | $58,602 ```\n+================================x\n| Welcome to day 506 of the |\n| _ _ _ _ |\n| | |__ (_) |_ ___ ___ (_)_ __ |\n| | '_ \\| | __/ __/ _ \\| | '_ \\ |\n| | |_) | | || (_| (_) | | | | | |\n| |_.__/|_|\\__\\___\\___/|_|_| |_| |\n| |\n| 100k bet! |\nx================================+\n```\n\n| Stat | Value | Change |\n| --- | --- | --- | \n| Last elimination update | https://stacker.news/items/573490 | | \n| Date | 2024-09-02 | +80 days |\n| Participants | 14/24 | +3 |\n| **Prize Pool** | **336,028 sats** | **+11,465 sats** |\n| USD/BTC | $58,602.00 | -12% |\n\n![](https://m.stacker.news/49429)\n\n| Nym | Day | Paid | Elimination Date | Eliminated |\n| --- | --- | ---- | ---------------- | ---------- |\n| @orthwyrm | 260 | X | 2024-02-18 | X |\n| @mango | 359 | X | 2024-04-11 | X |\n| @Alby | 365 | X | 2024-04-21 | X |\n| @siggy47 | 380 | X | 2024-05-18 | X |\n| @CheezeGrater | 418 | X | 2024-06-07 | X |\n| @ekzyis | 420 | X | 2024-06-11 | X |\n| @0fje0 | 427 | X | 2024-06-21 | X |\n| @phatom | 440 | | 2024-07-21 | X |\n| @486DX2 | 486 | X | 2024-08-20 | X |\n| @carlosfandango | 501 | X | 2024-09-07 | |\n| @Lux | 522 | X | 2024-09-20 | |\n| @Radentor | 526 | X | 2024-10-01 | |\n| @OneOneSeven | 544 | X | 2024-10-20 | |\n| @davidw | 564 | X | 2024-11-02 | |\n| @nikotsla | 570 | X | 2024-11-12 | |\n| @BitcoinIsTheFuture | 584 | X | 2024-11-19 | |\n| @wize123 | 584 | X | 2024-11-20 | |\n| @LaserStack | 587 | X | 2024-12-02 | |\n| @south_korea_ln | 608 | X | 2025-01-04 | |\n| @Undisciplined | 653 | X | 2025-01-28 | |\n| @grayruby | 655 | X | 2025-02-03 | |\n| @gnilma | 666 | X | 2025-02-26 | |\n| @Longtermwizard | 700 | X | 2025-05-09 | |\n| @Bitman | 810 | X | | |\n\nNext elimination: @carlosfandango (5 days remaining)\n\n_Want to participate? Click [here](https://stacker.news/items/363233) for more information._ \N 20586 \N 376857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.8796971965015 0 \N \N f 48507156 \N 1 206995780 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407722 2025-02-18 10:26:06.837 2025-03-29 22:39:47.603 Have You Ever Bought an Inscription/BRC20? I thought [this post](https://twitter.com/udiWertheimer/status/1741853672793841738) from @udiWertheimer was interesting. \n\nPersonally I haven’t spent much time (or any money) exploring Ordinals/inscriptions/BRC20s (so my opinion isn’t worth much), but I know many on here have very strong opinions about them.\n\nWhat I’d love to hear is answers to the following two questions:\n\n- have you ever bought an inscription/BRC20 token?\n- are you optimistic or pessimistic about the effects these ideas will have on Bitcoin? \N 19005 \N 407722 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.144645251606477 0 \N \N f 0 \N 0 177563328 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51689 2023-08-18 14:21:56.929 2025-03-29 22:39:47.603 SN Saturday Newsletter 7/13/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Definitive explanation of my weird Bitcoin transaction](https://stacker.news/items/600187)\n - [@vostrnad](https://stacker.news/vostrnad) reveals themself as the artist behind the weird bitcoin transaction. They explain the transaction in detail, why they did it, and share the code that produced it.\n - 62.4k sats \\ 38 comments \\ [@vostrnad](https://stacker.news/vostrnad)\n2. [Bitcoin Accepted - PoS systems](https://stacker.news/items/600658)\n - [@DarthCoin](https://stacker.news/DarthCoin) shares a list of Bitcoin PoS systems and asks for ones he missed.\n - 3.1k sats \\ 39 comments \\ [@DarthCoin](https://stacker.news/DarthCoin)\n3. [Hedge against Inflation](https://stacker.news/items/603463)\n - [@CarlBMenger](https://stacker.news/CarlBMenger) describes how to prepare for hyperinflation financially and otherwise.\n - 3.4k sats \\ 11 comments \\ [@CarlBMenger](https://stacker.news/CarlBMenger)\n4. [Ecash ecosystem map](https://stacker.news/items/603504)\n - Resident ecash explorer [@Scoresby](https://stacker.news/Scoresby) shares a map of the ecash ecosystem complete with an interactive version on their website. Pro tip: [buy one of his bitcoin posters](https://shop.bitcoinscoresby.com/).\n - 7.5k sats \\ 20 comments \\ [@Scoresby](https://stacker.news/Scoresby)\n5. [Looking back at a year of routing](https://stacker.news/items/601816)\n - [@fopstronaut](https://stacker.news/fopstronaut) shares their journey going from a layer 2 skeptic to a lightning routing node operator with automated liquidity management all within a year.\n - 3.1k sats \\ 10 comments \\ [@fopstronaut](https://stacker.news/fopstronaut)\n\n##### Don't miss\n- [a pleb's expectations of Bitcoin Nashville 2024](https://stacker.news/items/606345)\n- [A very important improvement for Neutrino (LND) is coming](https://stacker.news/items/603159)\n- [and, my social media detox begins.](https://stacker.news/items/606783)\n- [Where are the tainted sats?](https://stacker.news/items/606484)\n- [Not Really An Orange Pill Story, But It Feels Significant](https://stacker.news/items/603730)\n- [New App to Win and Earn Bitcoin](https://stacker.news/items/601939)\n- [What deters people from Bitcoin is their unwillingness to embrace uncertainty](https://stacker.news/items/599297)\n- [The Fastest Growing Millionaire Populations, by Country (2013-2023)](https://stacker.news/items/600968)\n- [Book Review | “The Four Tendencies”](https://stacker.news/items/605553)\n- [Bitcoin is transforming this poor, unknown town in Peru (video)](https://stacker.news/items/602653)\n- [Uganda Is Also Shifting To The Gold Standard](https://stacker.news/items/604487)\n- [AT&T says criminals stole records of 'nearly all' customers in new data breach](https://stacker.news/items/605681)\n- [Parent Corner: Learning Resources](https://stacker.news/items/601481)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [SN release: new referral system part 1](https://stacker.news/items/600103)\n- [SN release: new referral system part 2](https://stacker.news/items/604917)\n- [Fun Fact Friday - Best Fun Fact Gets Zaps on This Post](https://stacker.news/items/605770)\n- [Golden Oldies #3](https://stacker.news/items/602262)\n\n##### This day in Stacker News\n\n*a series by [@Undisciplined](https://stacker.news/Undisciplined)*\n\n- [This Day in Stacker News: July 7th](https://stacker.news/items/599828)\n- [This Day in Stacker News: July 8th](https://stacker.news/items/600906)\n- [This Day in Stacker News: July 9th](https://stacker.news/items/602257)\n- [This Day in Stacker News: July 10th](https://stacker.news/items/603455)\n- [This Day in Stacker News: July 11th](https://stacker.news/items/604559)\n- [This Day in Stacker News: July 12th](https://stacker.news/items/605773)\n- [This Day in Stacker News: July 13th](https://stacker.news/items/607040)\n\n\n[**all meta**](https://stacker.news/~meta/top/posts/week)\n\n------\n\n##### Top Stackers\n1. [@Undisciplined](https://stacker.news/Undisciplined): 101.7k sats stacked\n2. [@k00b](https://stacker.news/k00b): 89.8k sats stacked\n3. [@Rsync25](https://stacker.news/Rsync25): 80.4k sats stacked\n4. [@vostrnad](https://stacker.news/vostrnad): 71.6k sats stacked\n5. [@Bell_curve](https://stacker.news/Bell_curve): 68.1k sats stacked\n\n------\n\n##### Top Spenders\n1. [@k00b](https://stacker.news/k00b): 256k sats spent\n2. [@Bell_curve](https://stacker.news/Bell_curve): 150.5k sats spent\n3. [@south_korea_ln](https://stacker.news/south_korea_ln): 112.4k sats spent\n4. [@Public_N_M_E](https://stacker.news/Public_N_M_E): 109.3k sats spent\n5. [@MaxAWebster](https://stacker.news/MaxAWebster): 104.1k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 412 days\n2. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 309 days\n3. [@Undisciplined](https://stacker.news/Undisciplined): 291 days\n4. [@OneOneSeven](https://stacker.news/OneOneSeven): 284 days\n5. [@BlokchainB](https://stacker.news/BlokchainB): 270 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 4395 \N 51689 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.6624471218953 0 \N \N f 0 \N 0 47369759 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428292 2025-03-07 03:54:10.356 2025-03-29 22:39:47.608 What would Utopia look like to you? Simply... the best thought out answer (in my humble opinion) within a day or so will receive the bounty.\n\nI'm not providing context as I would really love for the answers to be completely your own. \n \N 21422 \N 428292 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 29.5219863711637 0 \N \N f 1533025950 \N 15 232304390 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 420444 2025-02-28 17:57:34.534 2025-03-29 22:39:47.61 Discuss this Quote- Plato For today's quote let's travel back to ancient Greece. \n\nI am sure you are all familiar with the Greek philosopher Plato, so let's skip the introduction and get straight to the matter of discussion at hand. \n\n"Good people do no need laws to tell them to act responsibly, while bad people will find a way around the laws." \n\nWhat do you think about this quote? \n\nLet's discuss. \n \N 1741 \N 420444 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.5651625360992 0 \N \N f 0 \N 0 60242078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401885 2025-02-13 12:41:03.783 2025-03-29 22:39:47.612 Supreme Court debates on First Amendment Violations \nTwo stories:\n\n1. From CNN [Supreme Court to debate whether White House crosses First Amendment line on social media disinformation]("https://www.cnn.com/2024/03/17/politics/supreme-court-social-media-disinformation-first-amendment-covid-election-2024/index.html") March 17\n\nFrom the article (emphasis mine)\n\n> “**Government officials do not violate the First Amendment when they speak** in public or **in private** to inform, **to persuade**, or to criticize **speech by others**,” the US government wrote in a [brief](https://www.supremecourt.gov/DocketPDF/23/23-411/293780/20231219192259919_23-411ts%20Murthy.pdf).\n\n-------------------\n\n2. From firstamendment.news [Supreme Court issues unanimous ruling: American public can (sometimes) sue government officials who block them on social media]("https://firstamendment.news/2024-03-20-scotus-americans-sue-officials-block-social-media.html") March 20 \n\nFrom the article \n\n>The Supreme Court said that in order for a government official to be deemed as acting within his or her office as opposed to behaving online as a private individual, he or she must have “actual authority to speak on behalf of the state on a particular matter.” In such cases, government actors are “purporting to exercise that authority in the relevant posts,” and are thus not allowed to block dissenters.\n\nSCOTUS source (firstamendment links to a third party copy of this PDF) \n\nhttps://www.supremecourt.gov/opinions/23pdf/22-611_ap6c.pdf\n\n(forgive the sloppy formatting, I did my best)\n\nThoughts? \N 1740 \N 401885 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.576962622211745 0 \N \N f 0 \N 0 23079380 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441424 2025-03-18 01:17:14.254 2025-03-29 22:39:47.907 Proof of Work kids My kids will probably tell you that I sound like a broken record talking about bitcoin but also with a few mantras I frequently repeat to them. If you spend any significant amount of time in my household you will likely at some point hear me utter one of the following phrases to my kiddos (older one moreso as the little one is still only 4, almost 5, but she hears it too occasionally). \n\n"Words are not actions"\n"How you do one thing is how you do all things"\n"Hold yourself to account"\n"Put in a full effort"\n"Be Diligent"\n"What's your solution" \n"What's your goal, focus on your goal"\n\nMy wife and I are actually pretty easy going with the kids overall. Let them be kids, give them lots of free time to play and do the things they want. We are always laughing and joking around the house. Give them tons of love and support. But when it comes to their character, effort and upholding their responsibilities (no matter how big or small) we are strict with them. This playbook seems to be working so far. \n\nYou guys have any good mantras, sayings, quotes, strategies you use often with your kids? \n\n \N 17392 \N 441424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.39042684331332 0 \N \N f 0 \N 0 14691715 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 386922 2025-01-31 14:48:51.878 2025-03-29 22:39:47.602 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/433833) are the updates stackers shared from all their latest work projects. \N 10393 \N 386922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7103138490775 0 \N \N f 98092188 \N 1 236689414 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407903 2025-02-18 13:00:01.531 2025-03-29 22:39:47.604 ChatBTC \N https://chat.bitcoinsearch.xyz/ 21494 \N 407903 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.97133113074825 0 \N \N f 5888614075 \N 42 228400117 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 13 0 0 405873 2025-02-16 22:33:20.309 2025-03-29 22:39:47.604 Btc, specialization, and ecological niches (The sixth post in the meta-experiment series of the Broken Money book club, part 5. Check out the [fifth](https://stacker.news/items/336923).)\n\nBitcoiners, as a group, have been waging a famous quasi-war with other coins for a decade or more. Bitcoiners contend that altcoins come up short, with regard to btc's design choices, on a number of important metrics, the most crucial of which are probably the coin's degree of decentralization, and its consensus mechanism.\n\nLyn talks about an ironic technique that proof-of-stake systems can use to overcome the absence of an unforgeable history:\n\n> As an attempt to solve this dilemma, a proof-of-stake blockchain could create regular checkpoints, so that if the system goes offline, they can restart from the latest checkpoint. But that creates a new question: Who determines what checkpoints to use and where to store them? Why should others trust those checkpoints? So far, the best (and most ironic) solution to this dilemma has been for proof-of-stake systems to regularly insert their checkpoints into the Bitcoin blockchain, and thus rely on the unforgeable history of decentralized proof-of-work. (p. 365)\n\nIn this example, btc, which has made extreme design compromises in service of decentralization and censorship resistance, is being used as an anchor for a coin that has not made those compromises. The pos system is, in a sense, 'hitching a ride' on its more heavily armored alternate.\n\nIf btc succeeds as digital sound money, it will necessarily mean that it's deeply integrated into the world. A consequence of being a foundational technology is that an entire ecosystem will grow around it, including things that bitcoiners don't like, like altcoins, or stablecoins, or even institutions like banks or other government structures. All of them will take btc's unique properties for granted, and compose btc in different ways as part of their own design assumptions.\n\nDivision of labor implies, down the road, the existence of hyper-specialized roles: giant basketball players who can barely dribble; engineers who can barely communicate in natural language or feed themselves; species that can survive in only a narrow ecological niche. In just this way, will btc serve as a crucial organ system for other 'life forms' that are not viable on their own? What might that look like? \N 624 \N 405873 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5727099302945 0 \N \N f 180124777 \N 2 55735990 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442352 2025-03-18 14:24:33.432 2025-03-29 22:39:47.604 Freak Out! I wonder how long it will take for people to learn to not freak out? Or have they already learned. Looks to me based on the current market price that they haven't learned.\n\n[Bitcoin Wallet Reactivated After 12 Years Moves 500 BTC](https://bitbo.news/wallet-reactiviated-500btc/)\n\nHonestly, the most interesting thing about this is [the transaction](https://mempool.space/tx/2c8960feef2c66a8960f058cef11f42ba883db53e3287f085bffd29d663fc98a) :) \N 6149 \N 442352 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 13.7257923923185 0 \N \N f 0 \N 0 58331100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437957 2025-03-15 02:54:46.825 2025-03-29 22:39:47.606 Luke Dash Jr.: "Big blockers are back. Apparently with Bitcoin Core in support" Full quote: "The big blockers are back already and trying a round two. This time apparently with Bitcoin Core in support."\n\nWhat did he mean by this? https://twitter.com/LukeDashjr/status/1775612410633544071 14651 \N 437957 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 3.65548094902167 0 \N \N f 0 \N 0 43931 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424278 2025-03-03 23:46:21.191 2025-03-29 22:39:47.607 Inscribe the planet: an online tool for inscriptions with no need to sync a node https://inscribetheplanet.com/\n\n![image of inscribetheplanet.com homepage](https://i.ibb.co/TP2JBKy/inscribe-the-planet.png)\n\nTopher Scott and I created this tool to make inscriptions easier on people. In the early days of inscriptions, you needed to download ord wallet, download bitcoin core, sync the blockchain, index all transactions as well as all existing inscriptions, or use a custodian who would do that for you. This new tool runs entirely in javascript on your own browser. It connects to mempool.space's api to get a transaction index, block data, and to broadcast transactions, and the server it runs on *does not hold your keys*! Non-custody is the way!\n\nIf you've been hestitant to try out inscriptions, give it a try. I made an inscription yesterday and sent it to an ordinals wallet I created at ordinalswallet.com.\n\nThis paragraph may interest developers: inscribetheplanet.com is based on a new javascript library called bton, which stands for bitcoin transaction object notation. This is an excellent tool by my friend Topher which makes it easy to use various taproot tricks in the browser. It supports creating taproot addresses, tapscript trees, schnorr signatures, address validation, and many other nifty features. Give it a try! https://www.npmjs.com/package/@cmdcode/bton\n\nHere is the github repo for this particular project (inscribe the planet) that uses the bton library: https://github.com/supertestnet/inscriptions-online/ \N 21116 \N 424278 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 6.66054012348667 0 \N \N f 0 \N 0 158663953 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428647 2025-03-07 13:42:47.112 2025-03-29 22:39:47.607 I am Pavol Rusnak, Co-Founder of SatoshiLabs. AMA 🚀 Hello everyone! I am Pavol Rusnak ([@pavolrusnak](https://twitter.com/pavolrusnak)), also known as [Stick](https://stacker.news/stick) in the community. \n\nI am the Co-Founder of [SatoshiLabs Group](https://satoshilabs.com) - a group of companies that share a common vision: *"Strengthening the power and independence of an individual"*.\n\nThe SatoshiLabs Group consists of:\n* [Trezor](https://trezor.io), the company that created the first hardware wallet\n* [Tropic Square](https://tropicsquare.com), the company developing the first open-source secure chip \n* [Invity](https://invity.io), the company that will introduce a million new people to Bitcoin \n* and two other efforts that are currently in stealth mode and have not yet been officially announced ...\n\nIn addition to working on open-source software and hardware projects at SatoshiLabs, I also love [contributing](https://github.com/prusnak) to other open-source projects, such as [Bitcoin Core](https://bitcoincore.org) and [NixOS](https://nixos.org)+[Nixpkgs](https://github.com/NixOS/nixpkgs)+[Nix-Bitcoin](https://github.com/fort-nix/nix-bitcoin), and collaborating with artists on [new media art](https://rusnak.io/projects/) projects.\n\nI will be answering the questions starting at 10am CT / 3pm UTC / 5pm CEST.\n\nTopics we can talk about, but of course feel free to ask anything:\n* Bitcoin\n* Lightning\n* Hardware and Software Wallets\n* Open-Source Software and Hardware\n* Open Standards (BIPs/SLIPs)\n* NixOS, Nixpkgs, Nix-Bitcoin\n* Privacy\n* Hacker Culture\n* Cognitive Science\n\nLET'S GO! 🚀 \N 6360 \N 428647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4879035603913 0 \N \N f 0 \N 0 166914950 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 429803 2025-03-08 16:01:19.809 2025-03-29 22:39:47.609 TBDXXX has been renamed to Ark and now has implementation details \N https://www.arkpill.me/ 21422 \N 429803 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 22.7579317287611 0 \N \N f 290017630 \N 2 169647917 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404464 2025-02-15 22:23:25.001 2025-03-29 22:39:47.602 Why does hashing public keys not provide "any" quantum resistance? # Why Hashing Public Keys Doesn’t Provide Quantum Resistance\n\n*Thanks to Murch and Josie for their insights here [Tweet link](https://x.com/BTCillustrated/status/1855230598153150544).*\n\n\nHashing public keys offers a level of security, but it's not enough to protect against quantum attacks. In this article, we’ll explore why this vulnerability exists in Bitcoin's P2PKH (Pay-to-Public-Key-Hash) transactions.\n\n![](https://m.stacker.news/62740)\n\n\n\n### 2. How P2PKH Transactions Work\n\nIn a typical P2PKH transaction, the public key is hidden until the transaction is spent. This setup only reveals the public key when funds are being moved\n\n![](https://m.stacker.news/62741)\n\n### 3. Vulnerability in the Mempool\nOnce the public key is revealed, there’s a window of time where a quantum attack becomes possible. After the transaction enters the mempool, an attacker with a quantum computer can target the public key to derive the private key before the transaction is confirmed.\n\n![](https://m.stacker.news/62742)\n\n### 4. Exploiting the Window of Time\n\nDuring this window, an attacker can compute the private key and create a conflicting transaction spending the same coins. By offering a higher fee, they incentivize miners to include their transaction over the original one.\n\n![](https://m.stacker.news/62743)\n\n### 5. Transaction Hijacking and Selfish Mining\n\nThis technique is known as transaction hijacking. Quantum computers could also exploit Bitcoin through selfish mining, using Grover’s algorithm to gain an advantage in hash rate\n\n![](https://m.stacker.news/62745)\n\n \N 8998 \N 404464 \N \N \N \N \N \N \N \N science \N ACTIVE \N 15.088116361764 0 \N \N f 0 \N 0 86624208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51604 2023-08-18 12:12:35.678 2025-03-29 22:39:47.603 Sat Fetish > Shoe Fetish We had to clean out a storage closet this morning to give an electrician access to inspect our electrical panel. It seems there has been a recall on this type of panel and ours has never been updated since the house was built in the late 80s. \n\nThe panel is accessible, but we had to move some things around so he could get in and out of the closet more comfortably. \n\nWhile we were moving stuff my wife noticed the absurd amount of shoes she has. I said "do you wear all of these shoes" and she admitted "no, some of them I have never worn". \n\nMy wife is so wonderful, and puts every one else's needs before her own, so I have never bugged her about her shopping habits. It makes her happy and she is a very good shopper. She likes to wait for sales and doesn't have expensive taste. Though, I will admittedly occasionally state my displeasure in the form of "there is too much stuff in this house", I never complain about her spending money. \n\nAnyways, back to my story and her vast shoe collection. Feeling a little smug, I said "imagine if you hadn't bought half of these shoes (wanted to say 90% but thought half sounded less judgmental) and instead put that money into bitcoin." \n\nShe humoured me and replied "I am guessing Bitcoin is doing well since you are telling me this". I replied "yes, it has been doing fairly well". She DCAs a little into Bitcoin every couple weeks as a savings account but doesn't really pay close attention to it. One time, after we had rallied hard off the bear market bottom, when she checked her wallet balance she thought there was a mistake and said "did you send me some of your bitcoin or the kids bitcoin by accident?". I laughed and replied "no, the price just went up. Your bitcoin balance is the same but you clicked and switched it to display the fiat price". \n\nSince I had peaked her curiosity she decided to check her wallet balance. *Gasp* "are you serious? Oh my god you are right, I shouldn't have bought so many shoes." \n\nI ran around the house telling the kids "Daddy was right for the first time ever" and then my wife replied "give yourself some credit, you are right at least once a year". \n\nAnd that is how my wife learned that a sat fetish is better than a shoe fetish. (I do not expect her to act upon this new found information but please no more shoes!) \n\nThanks for reading my fun tale.\n\nSats for all,\nGR \N 1478 \N 51604 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.767797699035 0 \N \N f 0 \N 0 232181300 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458172 2025-03-29 03:44:39.672 2025-03-29 22:39:47.608 How to Attach Your self-hosted LNbits wallet to SEND/RECEIVE sats to/from SN ![](https://m.stacker.news/53557)\n\n- - -\n# 0.0 Intro: \n\nWelcome, stackers and newbies! The aim of this third guide is to help you step-by-step to connect your LNbits wallet to Stacker.News (SN). This integration will enable you to seamlessly autowithdraw your sats and become a sovereign bitcoiner. Believe it or not, it will be not that technical like the **[`phoenixd`](https://stacker.news/items/695912/r/supratic)** integration guide, and even simpler than attaching [Coinos](https://stacker.news/items/694593/r/supratic) wallet.\n- - -\n# 1.0 Requirements:\n\n- [x] 1 SN account! Not joking... if you did not sign up already, [DO IT NOW!](https://stacker.news/signup/r/supratic)!\n- [x] 1 **[s̲e̲l̲f̲-̲h̲o̲s̲t̲e̲d̲](#12-self-hosted-options)** Bitcoin Lightning node or [custodial](#13-not-recommeended-custodial-options) `NOT RECOMMENDED!`.\n- [x] 1 LNbits wallet instance, ideally self-hosted in your server or node, check available options below.\n- [x] Some basic understanding of [Bitcoin](https://bitcoin.org) and the [Lightning Network](https://lightning.network/) (LN). Not required but useful!\n\n> **Note:** As mentioned above, you'll need to have **your own** LNbits instance, self-hosted is the ideal solution to keep your stash safe from any _cutodial_ inconveniences. For the purposes of this guide, and just as an example, I'll be using a d̲e̲m̲o̲.̲l̲n̲b̲i̲t̲s̲.̲c̲o̲m̲ account ONLY as showcase playgraund, do NOT use it yourself as your precious sats could be at risk, seriously! It will work exactly in the same way when run LNbits in your server or bitcoin lighting node. \n\n![](https://m.stacker.news/53691)\n\n#### 1.1 External guides\nIf you need some more guidance learning about LN and LNbits, reading @Darthcoin guides is highly recommended:\n\n- [What Bitcoin LN node software can I run?](https://darthcoin.substack.com/p/what-bitcoin-ln-node-software-can)\n- [Tip of the day: How can I run a LN node without full Core?](https://stacker.news/items/439263/r/supratic)\n- [Getting started with LNbits](https://darthcoin.substack.com/p/getting-started-lnbits)\n- [Umbrel node + LNBits](https://darthcoin.substack.com/p/umbrel-node-lnbits)\n\n![](https://m.stacker.news/53691)\n\n#### 1.2 Self-hosted options\nJust as a reminder, LNbits is available on all and every LN nodes management systems on the internet. SThe most common and trusted ones are [MyNode](https://mynodebtc.github.io/lightning/lnbits.html), [RaspiBlitz](https://raspiblitz.org/), [Start9](https://marketplace.start9.com/lnbits), [Umbrel](https://apps.umbrel.com/app/lnbits).\n\nWhatever implementation you chose, search and download the app or if not available you can alternatively install it from the source code hosted in [github repository](https://github.com/lnbits/lnbits), it's open-source!\n\n![](https://m.stacker.news/53691)\n\n#### 1.3 **`NOT RECOMMENDED!`** custodial options \n- [LNbits](https://my.lnbits.com/login) starting from 21 sats/hour\n- [Nodana](https://nodana.io/services/lnbits) from 10 $/month\n- [VOLTAGE](https://www.voltage.cloud/plans) no pricing available\n\nNow, assuming you are set with your SN account, Lightniing node, and LNbits instance running, let's start!\n- - -\n# 2.0 Obtain Your LNbits Wallet API Keys\nFirst thing first, you'll need to create a LNbits admin user from where you'll be able to manage the node and any other subaccounts (if needed). The username picked will become the name of your default wallet, in this example `Stacker News`.\n\n![](https://m.stacker.news/53569)\n![](https://m.stacker.news/53691)\n\n> **Important!** You *must* save your login credentials to be able to access your wallet again. If you lose them, you will lose access to your wallet and funds. Set up your `username` on your ACCOUNT SETTINGS page and then click the [SET PASSWORD] button. Make sure you save it in a safe place, and let's go back to the wallet.\n\nTo connect your LNbits wallet to Stacker.News, you'll need to obtain your wallet's details. A default wallet is created during the signup process, so the only thing you need to do is to retrieve the credentials under the **Node URL, API keys and API docs** tab at the bottom of the right sidebar.\n\n![](https://m.stacker.news/53689)\n![](https://m.stacker.news/53691)\n\nYou'll see there the following in the order SN requires it:\n1. **Node URL:** `https://demo.lnbits.com`\n2. **Invoice/read key:** `****************`\n3. **Admin key:** `****************` \n\nKeep this tab open and...\n- - -\n# 3.0 Access Stacker.News Wallet Integration Page\n\nAfter login, open your SN's user menu and navigate to the "Wallets" section, then click on the big blue **[[attach wallet]](https://stacker.news/settings/wallets)** button:\n\n![](https://m.stacker.news/53576)\n![](https://m.stacker.news/53691)\n\nYou'll see at the bottom the **[LNbits](https://stacker.news/settings/wallets/lnbits)** card, click on its **[attach 🔌]** button also accessible from this link `https://stacker.news/settings/wallets/lnbits`: \n\n![](https://m.stacker.news/53577)\n\n- - -\n# 4.0 Fill in the LNbits Wallet Details\n\nOn the LNbits wallet connection page, enter the information details from your LNbits wallet mentioned in step [2.0](#20-obtain-your-lnbits-wallet-api-keys). Double check you insert the information with the correct order as follows:\n1. **lnbits url** on SN = **Node url** from LNbits,\n2. **invoice key** for receiving on SN = **Invoice read/key** from LNbits,\n3. **admin key** for sending on SN = **Admin key** from LNbits,\n\n![](https://m.stacker.news/53578)\n![](https://m.stacker.news/53691)\n\nWe are nearly there... just make sure to set:\n\n- **desired balance** = `0`,\n- **max fee** to a min of `1%` and...\n- . ... click on the yellow **[ attach ]** button.\n\n![](https://m.stacker.news/53435)\n![](https://m.stacker.news/53691)\n- - -\n# 5.0 Congratulations, stackers! \nYou just did your first step into bitcoin sovereignty! Your sats now should be landing directly in your Lightning node. Happy stacking!\n\n![](https://m.stacker.news/53586)\n\n- - - \n> **PS:** Let us know how you go with this and if there's any way we can improve this guide. In case you get an **`error`** in the logs after clicking the **attach** button, report it in a comment below and we'll try to figure out what's wrong. \n- - -\n \N 19121 \N 458172 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 9.17186620487939 0 \N \N f 430272459 \N 2 213444443 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 135975 2024-03-03 20:19:51.473 2025-03-29 22:39:47.911 Joining Zaprite - By Parker Lewis & Will Cole We are thrilled to announce that Parker Lewis and Will Cole have joined Zaprite.\n\nYou can read more over on our blog, where Parker and Will have written in depth about #bitcoin, the future of payments and their decision to join Zaprite.\n\n#### Joining Zaprite - By Parker Lewis & Will Cole\n[https://blog.zaprite.com/joining-zaprite](https://blog.zaprite.com/joining-zaprite)\n\nWe've had to hold this one in for a bit as we collectively focused on shipping some important product upgrades, but we are really excited to finally announce that Parker Lewis and Will Cole have joined Zaprite as Head of Business Development and Head of Product respectively.\n\nNeedless to say this is a big win for Zaprite. Parker and Will are extremely valuable additions to the team and will no doubt help us accelerate our roadmap and deliver on our shared vision—bringing #bitcoin payments to individuals and businesses around the world. \N 1519 \N 135975 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 12.8864539552585 0 \N \N f 0 \N 0 22399556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2608 2022-10-17 09:03:59.497 2025-03-29 22:39:47.915 SN release: more uniform reward distribution The algorithm for rewards has been updated to distribute rewards more uniformly. It went live last night.\n\nThe number of stackers rewarded last night was 5x the number of stackers rewarded prior to the change.\n\nThe algorithm still only rewards zapping, a change we initiated as an experiment, but we plan to run other experiments after observing the impact of rewarding only zapping with more uniform distribution.\n\nWe'll also be adding more sats to the rewards pool next week starting monday as we run an advertising experiment and begin to distribute the 18m recovered crazy rewards bug sats (aka the forbidden sats).\n\n### details\n\nThe reward algorithm takes the top 21% of posts and top 21% of comments and rewards the zappers of that content. This part hasn't changed.\n\nPrior to this change, a stackers reward portion were calculated as `(sum((1/(zap_order))*zap_amount*relative_item_favorability*zap_trust))/sum(numerator across all stackers)`.\n\nWhere `zap_order` is the order in which the stacker zapped the item, i.e. 1 for 1st, 2 for 2nd and so on. This term means we reward early zappers more.\n\n`zap_trust` is a score from 0.0-1.0 and depends on how much other stackers agree with your zapping historically (on some level it represents a prediction of the probability that other stackers will agree with your zapping).\n\n@kr noticed that these reward proportions were heavily skewed. We were only rewarding ~15% of zappers every day.\n\nThis release changed a stackers reward proportion to:\n`(sum((1/(ln(zap_order+e))*log(zap_amount)*relative_item_favorability*(ceiling(zap_trust*3)+1))/sum(numerator across all stackers)`.\n\n`1/(ln(zap_order+e))` - this term change means you'll still be rewarded more for zapping early, but no longer disqualifies you for rewards if you aren't super early.\n\n`log(zap_amount)` - this term change means you'll still be rewarded more for zapping more, but no longer disqualifies you for rewards if you zap slightly less.\n\n`(ceiling(zap_trust*3)+1)` - this term change means you'll still be rewarded more when trusted, but no longer disqualifies you for rewards if you are low trust or untrusted.\n\nWe also significantly handicapped all accounts associated with SN as they are natural outliers.\n\n### bonus\n\n1. editing your nym is now debounced (issure discovered by @ekzyis and fixed by @WeAreAllSatoshi)\n\n### btw\n\nI'm paying sats to everyone mentioned in these releases for their open source contributions. I'll pay even if you don't ask (no one has asked), but if you want to be paid a specific amount for something, please say so and we'll work with you to get it shipped.\n \N 19303 \N 2608 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.90173462903381 0 \N \N f 0 \N 0 14326540 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 85704 2023-11-14 04:53:25.941 2025-03-29 22:39:47.603 Dangerous ideas, hacker culture, and free speech Just thinking about my introduction to hacker culture in the 90s and the differences today. I began hoarding text files and massive dot-matrix print outs back then as soon as I was gifted the ability to do so. 2600 was probably my most used source of information after the BBSes. \n\nI really love/d "forbidden knowledge" like the anarchist's cookbook, hack-faqs, phreaker's manuals, etc. I feel like people are extremely averse to reading material like that today, even amongst the same social circles online. \n\nIf I wrote an article about making really pure moonshine for Stacker News, for instance, I imagine it would not be received with the same accolades as it might have been on "The Black Market BBS" 30 years ago. (holy shit, I'm old)\n\nI'll admit I enjoyed the little Adrenalin rush of doing something verboten, reading detailed instructions of some of the deadly thought experiments like hooking power lines up to phones lines, bomb making, drug manufacturing, lock-picking, and other criminal activities that I would never participate in. But aside from that, I think it's really important to exercise our natural right of free speech by discussing these difficult and dangerous topics. \n\nIgnoring that these things exist puts a person at a disadvantage, especially when dealing with a malicious person that may be inclined to use this knowledge for malice. My initial attraction to hacker culture was it's uniform defiance of such intellectual prudence, and I think I'll be doing more in the future to encourage true free speech like this. I miss it so much. It needs a renaissance. \N 11561 \N 85704 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.8621152622085 0 \N \N f 0 \N 0 66383291 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421649 2025-03-01 20:51:15.466 2025-03-29 22:39:47.61 Some thoughts on what's worked for me, two weeks later Two weeks ago, I made a post called *Some thoughts on what's worked for me in my first ten days here* (https://stacker.news/items/454547)\n\nNot surprisingly, I've learned some stuff since then.\n\n**1. Read bios.** \n\nPeople put a lot of good info in their bios, not just about who they are, but things like links to good posts they've made, into about projects they've worked on, etc. When someone posts something interesting, I go take a look at them and often discover a bunch of new things I want to read and learn more about.\n\n**1.5 Subscribe to people! And territories.** \n\nThere are a lot of territories and there are a lot of posts. Subscribing to territories makes sense for the ones that only get a few updates a day. But if there are stackers you want to hear from whenever they say anything, subscribe to their posts! And I mentioned in my first post that I didn't subscribe to most territories, but I've realized that it's too easy to miss posts in the main feed (and )\n\n**2. Read pinned posts and territory info.** \n\nI'd been here for nearly three weeks, and while I'd read plenty of posts from ~privacy via the firehose, I'd never actually just gone to the territory directly. Which means I'd totally missed the fantastic *Stacker News Privacy Directory V1 - Q4 2023* (https://stacker.news/items/342249). Since then, I've spent days working my way through the fantastic directory of posts there.\n\nAlso, read the actual territory info boxes! They're minimized by default (and are actually hidden if you're viewing Recent or Top), so they're really easy to miss, but it's the way to get a sense of the territory's purpose (some are more obvious than others). \n\n**3. Bookmark good content!**\n\nThis kind of goes hand in hand with the previous items. I come across a lot of great content here, but it's not always actionable content. Bookmarking is great (I'm talking about SN's bookmarks, though I guess browser ones work, too).\n\nAlso, if it's good enough to bookmark, it's good enough to zap, even if it's an old post.\n\n**4. Downzap and mute.**\n\nI don't do either of these a lot; downzapping having a cost means it's not just like the thumbs-down button on YT. If I'm downzapping, it's not just "I disagree" or even "I don't like this." My downzapping is for content that I actively want to be disengaged from or that feels trolly. So it's rare, but I do use it.\n\nAs for muting, if I end up downzapping the same person multiple times, that's a sign to mute. But I also mute territories that I know I'll never interact with, since I tend to mostly consume content from the front page feed. There aren't many of those, either, but I know I'll never read posts in ~brasil, for instance (my language skills are awful), and there are a few territories that are specific enough that they're just not for me.\n\n**5. Visit the saloon (and the territorial versions).**\n\nI didn't really pay attention to the Saloon at first. But now I hit it every day, multiple times. It's a great way to actually get some sense of your fellow Stackers, it's a fun place to hang out and post, and it's led me on multiple occasions to other cool posts (see point 1 above). And many territories also have daily or weekly gatherings -- ~sports and ~music have one that's worth checking multiple times a day, and ~books has a "Weekend Book Recommendations" post that's always fun.\n\n**6. Welcome people. But maybe not everyone.** \n\nI turned on the feature to show free posts pretty quickly, and I try to catch new bios in the feed. It's a good way to make other folks feel welcome. It's also a good way to spot folks who looks like they're maybe not here to contribute any content. \n\n**7. Playing the game wrong is okay, maybe?** \n\nI read @undisciplined's "Million Sat Madness is a Keynesian Beauty Contest" post (https://stacker.news/items/473181) yesterday and found it fascinating and one of the best reads of the day. Since MSM has pretty much been the norm for most of my time here, I'd never really thought about how it changed things, or how to really game it (beyond being active on the site). The notion that people might choose to *not* zap something because it might not be a big post hadn't occured to me. And I still don't have the handle on predicting what posts will blow up, so zapping things because I think others will also seems weird.\n\nInstead, I've been zapping posts and comments I like (and, as I noted in my previous post, ones I interact with). I don't really have the patiences to comb through my stats, but looking at what's in the "spent" column for yesterday, I think I zapped four posts that broke 1000 sats overall (one of which was @undisciplined's post, of course), and a bunch where they barely hit three digits.\n\n(I guess this is an extension of my "Strategy is overrated. Have fun" point from the first post)\n\nAnd I'm doing fine. I'm not going to win MSM or come close, but if my current pace continues, I'll walk way with a lot of sats. And I'm not wasting any decision time/brainpower worrying about what to zap. I'm having fun and discovering good content.\n\n(That's not to dismiss anyone else's way of interacting with SN; it's what's working for me.) \N 20523 \N 421649 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.1612451184064 0 \N \N f 0 \N 0 22530854 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 111621 2024-01-13 04:40:58.696 2025-03-29 22:39:47.906 Bull Bitcoin NO-KYC Bitcoin Purchases Product Launch AMA @ 1PM to 2PM ET. Bull Bitcoin is proud to give Canadians a new option to buy Bitcoin without KYC. We will be holding an AMA session here on stacker.news today, May 9, at 1:00 PM Eastern Time.\n\n\nPress release : \n\nhttps://bitcoinmagazine.com/business/bull-bitcoin-launches-no-kyc-purchasing\n\n\nUsers can now purchase up to $999 CAD at any post office without providing personal identifying information.\n\nCanadian Bitcoin exchange, Bull Bitcoin, has launched a new no-KYC (know-your-customer) service which enables users to buy bitcoin with cash or debit card. Users can go to any Canadian Post office, scan a QR code generated on the Bull Bitcoin website, and fund their account with cash or via debit card.\n\nThe funds are automatically added to the user's Bull Bitcoin account within a few minutes. Transactions of up to ~$745 ($999.99 CAD) can be made per transaction, with no KYC required. The exchange has a fee of 2% for no-KYC sats, the cheapest of any such service in Canada, according to a press release sent to Bitcoin Magazine, while Bull Bitcoin's on-chain withdrawals remain free.\n\n\nAbout Bull Bitcoin \n\n\nBull Bitcoin is a Canada's most professional and trusted Bitcoin exchange service, founded by Francis Pouliot in 2015 in Montreal. Bull Bitcoin is a non-custodial Bitcoin exchange that allows the buying and selling of bitcoins onchain and with lightning. \n\n \N 19924 \N 111621 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.025996197903 0 \N \N f 0 \N 0 111095121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2756 2022-10-19 18:40:51.618 2025-03-29 22:39:47.915 do you want to know the Muse? A well-known creator has said\n> There are so many people who are so much better than me at so many things. But there is _no one_ who would do exactly what _I_ would do. So imma do it.\n\nIf you are looking for inspiration today, if you feel the swelling in your soul urging you to express, but you cannot yet get the spark lit, this is what I want you to try:\n\nFetch paper and pen. Take a seat. Look at the blank page, but do not see the blank, see what your mind sees. Move your pen.\nNow you've made some marks, but you're confused because it doesn't look like anything and you don't know why you're taking instructions from a disembodied voice on the internet.\nStop. Stand up. Spin around four times. Get loose. Get silly - make a face! I am. Do you see it? (see it with your mind's eye).\nGet back to your paper and pen. Do it over again.\n\nI am plebpoet, the quote above is my own quote, and I have helped two people unlock their creativity with this method. It's very good. Questions?? \N 20562 \N 2756 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.7132897481671 0 \N \N f 0 \N 0 8445537 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3287 2022-10-29 06:40:52.515 2025-03-29 22:39:47.916 PDK is Here to Make Payjoin a Drop-In Upgrade for All Bitcoin software \N https://payjoindevkit.org/blog/pdk-an-sdk-for-payjoin-transactions/ 20577 \N 3287 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.577940502752448 0 \N \N f 0 \N 0 138713663 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 24886 2023-05-22 07:03:46.036 2025-03-29 22:39:47.917 Why don't stackers donate to rewards anymore? I have noticed lately that it seems stackers are not donating to the rewards pool. \n\nI know we get a big donation each day (from SN or some other mysterious benefactor) that helps fund the daily reward issuance but why aren't stackers paying it forward? \n\nRewards only showing 208 sats right now. I am pretty sure 200 of those are from me. \n\nIs the data wrong or is no one donating to rewards? \N 20439 \N 24886 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.1239163230443 0 \N \N f 0 \N 0 135923428 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 85385 2023-11-13 02:13:02.247 2025-03-29 22:39:48.154 My secret prayer of thanks for ambition I want to share a personal note with you, as I often do. I want you to know one of my secrets, a rare useful one. \n\nSee, sometimes my mind feels like a cage. I become paralyzed in a storm of my own thoughts. It happens when I begin to measure what _is_ against what _should be_. \nI think I am not enough, do not have enough, am not recognized enough, am not doing enough. I am small and my ambition says I should be tall. When what should be feels too far away, my thoughts take action to devise lists: this set of habits will build me into this person and over time I’ll be there if I just keep going. Then the creature that I am responds: but I won’t and can’t and even if I try this time, I will fail again to move forward any further when it’s forced, when I plan it. \n\nIt’s a dueling match between dreaming and surviving. Each are strong, competent opponents with a long history in the ring.\n\nI hope I am painting a picture that you can see yourself in.\n\nSo what do I do about it? Here’s my secret.\nI have this affirmation or prayer that I repeat. It came to my mind like someone else put it there, and this someone else is who it is addressed to. \n\n**“Thank you for giving me ambition”** is the first part. Now, I believe this someone else is God the creator. I think giving God acknowledgement is the first reason why this secret is useful. I acknowledge that there is more than me at work. I acknowledge that I am created. I give thanks for the fact of my creation, that it is good. I give thanks that I have been instilled with a desire for good, to bring goodness to fruition. I affirm that something good resides in me that wants to be known and expressed.\n\n**“Thank you for giving me ambition and making me brave enough to live into it.”** The second part is not always true, but saying it engages it, puts it in a different part of my mind outside the wrestling match. To be brave is to acknowledge the route is tricky and difficult, this I know and must accept. To repeat this prayer is to take my request for strength and state it as if I already possess it. That’s important, I think, and is what makes this more of an affirmation. I state it likes this because it is what I choose to do. I choose my ambition because I know it is good and brings fullfillment. I choose to be brave because I know the way is unclear. I choose to live into it, which is saying I choose this everyday, that because I am faithful, the way will be made clear one day at a time. This prevents my mind from projecting its vague images of the unknown future. Those images mislead me so often. I don’t need them. I have this day, which I am made for. \n\nRepeating this to myself stops the argument in my head. I do feel a little too silly to say out loud, but those who are more practiced with affirmations can maybe point to how to get over that. My own personal affirmation changes the composition of my thoughts, often immediately. I find rest from the worry of action/inaction. \n\nThat’s my secret prayer, which is a rather sacred thing. I hope it can mean something to you. But you will have to write your own, or go spelunking in your own thought caverns for it. \N 1647 \N 85385 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.0184687646288 0 \N \N f 0 \N 0 154840618 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 110399 2024-01-10 07:03:21.394 2025-03-29 22:39:48.156 The Musk Algorithm \N https://world.hey.com/dhh/the-musk-algorithm-977bf312 760 \N 110399 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.686110860715 0 \N \N f 0 \N 0 236161364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 432977 2025-03-10 18:01:56.765 2025-03-29 22:39:48.162 Discussions, Link Posts, and Comments on SN There are some interesting trends i’ve observed about the dynamic between discussions, links posts, and comments on SN, and figured I’d share them in a post.\n\n‎\n\n### #1\n\n98% of the [top 50 posts by comments](https://stacker.news/top/posts/month?by=comments) this month are for discussion posts\n\nThe number of comments doesn’t directly affect rewards but is one factor that influences the ranking and visibility of a post\n\n84% of the [top 50 posts by zaprank](https://stacker.news/top/posts/month) and 86% of the [top 50 posts by sats](https://stacker.news/top/posts/month?by=sats) are also discussion posts\n\nin these calculations, i’m grouping bounties and polls into the “discussion post” category\n\n‎\n\n### #2\n\nRoughly 50% of posts are discussion posts these days, up from 10-20% in the early days of SN\n\nIt seems like the community is collectively nudging creators towards creating posts that prompt discussions rather than pure news updates\n\n‎\n\n### #3\n\nThere seems to be a threshold on all posts, where after there are 2-3 comments the barriers for community participation are much lower\n\nGreat posts often get lots of sats before they get any comments, it usually takes a couple of starter comments before a wave of back-and-forth discussion ensues\n\nEarly comments also get better visibility than later ones, and if they’re interesting it stands to reason they’ll get more sats too\n\n‎\n\n### #4\n\nThe [top-ranked comments](https://stacker.news/top/comments/week) on SN skew towards being quite long. \n\nIn one sense, it’s a good thing that what appear to be thoughtful, detailed comments are being read and appreciated. However, I’m not sure length of a comment is always a good proxy for quality in the long run\n\n‎\n\nAny other interesting SN trends you’re noticing? \N 4027 \N 432977 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 28.89738586536 0 \N \N f 0 \N 0 62714765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:38:00.766 f \N \N \N 0 0 0 0 0 0 0 307568 2024-11-25 07:44:11.741 2025-03-29 22:39:47.603 How to attach your Blink.sv wallet to SEND sats to SN with a Blink's API key ![](https://m.stacker.news/54975.png)\n- - -\n# 0.0 Intro\nCompared with [other attachments available her in SN](https://stacker.news/supratic/r/supratic), I can tell, this one is one of the easier one for newbies. The only cons, if you are planning to join Blink wallet, is that requires light KYC to access the APIs, basically a valid phone number to receive SMS notifications to access and operate it. For those that already have signed up, here blow the...\n\n- - -\n# 1.0 Requirements\n\n- [x] 1 [Blink.sv](https://Blink.sv) verified account \n- [x] 1 [Stacker News](https://stacker.news/signup/r/supratic) account\n\nThat's it! Too easy!\n- - -\n# 2.0 Create Blink API key\n\nFirstly, let's access [dashboard.blink.sv](https://dashboard.blink.sv/) and get your API key. More documentation about Blink APIs can be found on [dev.blink.sv](https://dev.blink.sv/).\n\nAs mentioned above, you'll need a phone-verified account to be able to sign up here. You can sign in also using email if you have verified one after verifying your phone number. \n![](https://m.stacker.news/54976.png)\n![](https://m.stacker.news/53691)\n\nOnce inside, go to **API keys** in the left sidebar and click the big blue **[+]** in the top right of the screen.\n![](https://m.stacker.news/54977.png)\n![](https://m.stacker.news/53691)\n\nGive the API key a name and click the **[Create]** button:\n![](https://m.stacker.news/54980.png)\n![](https://m.stacker.news/53691)\n\nMake sure you copy the first input starting with `blink_...` before closing the popup, as it will be not available again, and you'll need to restart the process if you miss it:\n![](https://m.stacker.news/54979.png)\n\n- - -\n# 3.0 Attach Blink to SN\n\nNow that you have the API key in your clipboard, go to **`SN > wallet > attach > Blink`** or just click this shortcut link [stacker.news/settings/wallets/blink](https://stacker.news/settings/wallets/blink/r/supratic) and paste it there:\n![](https://m.stacker.news/54981.png)\n![](https://m.stacker.news/53691)\n\nOptionally, you can set which Blink account balance you want your sats detracted from, defining the **wallet type** as `BTC` or `USD` if you prefer to use your _stablesats_[^1]. \n\nThen click the big yellow **[attach]** button, and...\n\n- - -\n# 4.0 Congratulations, stacker! \nYou just did it! Your sats now should be landing straight to SN, directly from your Blink wallet. \nHappy zapping!\n\n![](https://m.stacker.news/54982.png)\n\n[^1]: Stablesats enables Lightning users to hold, send and receive dollars without the use of stablecoins or fiat integration. It aims to solve one of the biggest problems for people living on bitcoin: short-term exchange rate volatility. You can learn more on [stablesats.com](https://stablesats.com/). \N 8037 \N 307568 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.7614199557285 0 \N \N f 0 \N 0 43181267 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410237 2025-02-20 11:30:45.609 2025-03-29 22:39:47.608 Meme Monday- Best Meme gets 10k sats It's Meme Monday!\n\nBest meme gets 10k sats.\n\nThe sats will be given to the stacker with the best meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n![](https://m.stacker.news/43602)\n \nGood Luck! \N 20616 \N 410237 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.5517872142154 0 \N \N f 2106062089 \N 15 208915981 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 407772 2025-02-18 11:13:33.182 2025-03-29 22:39:47.613 Is Our Consciousness Really.. Just Us.. Thinking? I'm doing this for a school project, and I ended up being really interested it.\nHere's a kind of introduction draft to the powerpoint\nEnjoy:)\n\nIs consciousness already in our brains or is it part of something much bigger? We tend to think of our brains as creating consciousness - neurons firing and ringing, we are aware. \n\nBut some people, from ancient philosophers to modern scientists Think it's not that easy. in ancient philosophies such as Hinduism or Buddhism Consciousness is seen as omnipresent. Not only within ourselves They speak of a universal idea or spirit to which we are all connected. In these views Our individual consciousness is only a small part. of the larger whole And when we meditate or calm the mind We can take advantage of this universal consciousness. This concept challenges the common belief that consciousness comes only from our brains. \n\nAnd then there is modern science. Some scientists studying quantum physics suggest that consciousness may be the basis of the universe. Like space and time They look at things like the "observer effect," which shows how observing activity changes the behavior of small particles. Some interpret this to mean that consciousness may play a more important role in shaping reality than we realize. \n\nThis is not a mainstream idea. But it's growing. and makes you wonder Consciousness is everywhere. And is our brain the only receiver that receives it? If so Our brains do not create consciousness. but adjust perception It's like a radio receiving signals from a station. This could explain why some people have near-death experiences or out-of-body moments in which their consciousness appears to leave their body. It is also linked to ancient ideas about reincarnation or the afterlife. Because if consciousness is bigger than the brain Consciousness is not just a matter of the brain. Or it may be part of... something bigger \N 21062 \N 407772 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.5598896266708 0 \N \N f 0 \N 0 80233584 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448858 2025-03-22 23:33:39.196 2025-03-29 22:39:47.913 Please add a sub called "macro" or "economics" or similar Myself and many other stackers occasionally like to create posts about macroeconomics. E.g. posts about:\n\n- [the history of hyperinflation](https://stacker.news/items/16201)\n- [how treasury markets and reverse repos work](https://stacker.news/items/264105)\n- [macroeconomic news](https://stacker.news/items/167628)\n- [macroeconomic history](https://stacker.news/items/203458)\n- [musings on aspects of the economy](https://stacker.news/items/271651)\n- [how ancient banks worked](https://stacker.news/items/229851)\n- [second example in this category](https://stacker.news/items/262009)\n- [legal analyses of tax/bank laws](https://stacker.news/items/82744)\n- [legal analyses of economic interventions](https://stacker.news/items/270563)\n- [new fronts in the war on cash](https://stacker.news/items/189501)\n- [new CBDC experiments](https://stacker.news/items/213580)\n- [second example in this category](https://stacker.news/items/257128)\n\nWhen I post stuff like this I'm unsure what category to put it in. If there was a sub called "macro" or "economics" that would help me and I imagine it would help these other stackers too. \N 4388 \N 448858 \N \N \N \N \N \N \N \N Linux \N ACTIVE \N 8.79252801427725 0 \N \N f 489018045 \N 4 146097647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 189382 2024-06-25 14:04:55.729 2025-03-29 22:39:47.914 A collection of guides to help you get started in Bitcoin This is an index of guides. I do not claim ownership of the content below. I have tried to give credit to the best of my ability.\n\n| Name | Category | URL | Author | Twitter | Description | Date |\n| ---- | -------- | --- | ------ | -------------- | ----------- | ---- |\n| Docs for Passport | HWW | | Foundation | | Passport is an airgapped Bitcoin only, US made HHW (hardware wallet) that utilizes QR codes or microSD. | Feb 15 2023 |\n| Bitcoin Intro | Checklist | | 6102bitcoin | | START HERE. This is in a checklist format that walks you through the steps of getting bitcoin from square one. | Apr 08 2021 |\n| RoninDojo | Plug & Play Node | | Brother Rabbit | | Tanto is the Plug & Play implementation of RoninDojo. A Bitcoin node used to run Samourai wallet's implementation of coinjoin called "Whirlpool". | Sep 09 2022 |\n| Bitcoin Guide | Guide | | Bitcoin Q+A | | A collection of Bitcoin resources | Jul 07 2021 |\n| Docs for Sparrow | Desktop Wallet | | Craig Raw | | Sparrow is a Bitcoin wallet for those who value financial self sovereignty. Sparrow’s emphasis is on security, privacy and usability. | NA |\n| Docs for Samourai | Android Mobile Wallet | | Samourai Wallet | | A modern bitcoin wallet for the streets. Hand-forged to keep your transactions private, your identity masked, and your funds secured. | May 18 2021 |\n| K3tan on Privacy | Privacy Guide | | K3tan | | One-stop shop for information about privacy from a Bitcoiner | May 27, 2021 |\n| Techlore Resources | Privacy Guide | | Techlore | | Resources on software, operating systems, email, vpns and more | NA |\n| Privacy Guides | Privacy Guide | | Various contributers | | Privacy Guides is a socially motivated website that provides information for protecting your data security and privacy. | Mar 20 2023 |\n| The New Oil | Privacy Guide | | Nathan Bartram | | This site is not designed to be a comprehensive resource. This site is designed to be a beginner’s guide about privacy. | NA |\n| Cupwire Guides | Privacy Guides | | Cupwire | | Excellent guides about a few areas related to privacy | Nov 27 2020 | \N 16753 \N 189382 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.45229916481308 0 \N \N f 0 \N 0 70843852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 81219 2023-11-01 13:21:08.949 2025-03-29 22:39:47.603 Dont' use LN on Blockstream Green Hi everyone Today I would like to share with you my, let's say, "adventure" with using Lightning Network via Blockstream Green wallet. I hope my experience will be useful, especially for those who are still hesitant or just starting to get acquainted with LN.\n\nIn December 2023, I decided to experiment a bit and opened a channel in Green wallet for a solid amount of almost 1 million sats. But I never managed to make a single transaction through LN.\n\nThe application kept giving me some error messages, each time different.\n\nAfter several unsuccessful attempts and complete disappointment in the possibility of making transactions, I decided that it was time to close the channel. "Okay," I thought, "it didn't work out the way I wanted, but I'll get my satoshis back and go back to Phoenix. That's when the real epic began.\n\nAfter the channel was closed, my sats seemed to go into anabiosis. They were stuck somewhere in the depths of the blockchain. It's been almost two months, and I haven't been able to get them back. Green wallet support, although it responds, but so far only promises to sort things out and brings my hope back to life once a week at best.\n\nHonestly, I didn't expect such an adventure. I realized that LN functionality is still in beta stage. But the fact remains that my sats are still in limbo. I am not writing this post to discourage you from using LN or Green wallet. Rather, it is an attempt to share my experience and perhaps caution those who are about to experiment. It's still early, I believe.\n\nWould love to hear your thoughts, advice and maybe similar stories. \N 15146 \N 81219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.10753442572083 0 \N \N f 0 \N 0 161003890 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416994 2025-02-26 00:56:57.328 2025-03-29 22:39:47.608 How US banking system pushes people into debt There was a [question from SN user](https://stacker.news/items/174556/r/nout) from Europe that could be rephrased as: \n> **How can Americans be this stupid to go into so much debt?**\n\n\nAs a non-US person this also baffled me, but it's not the people - the US banking system is set up to trick as many people as possible into debt. This is true especially in comparison with European banks. \n\n#### How US banking system shifts people into debt\n- the default is essentially that **everyone gets a credit card** (they sell you on "get 3% cashback on every purchase" or some discounts) \n- to increase your "**credit score**" (needed if you want to get a mortgage or rent a place), you need to own at least 5 credit cards for many years and show that you keep borrowing and repaying every month (otherwise your credit score is lowered)\n- you also get new **credit card offers** in a mail every week\n- it's **hard to set up auto payments** on the credit card (so the person have to remember to pay any bills)\n- it's hard or impossible to set up some **notification** that your borrowed credit is getting close to money you have in the associated bank account (in the online banking the numbers are usually far from each other on the page and looking differently, sometimes many clicks away) \n- it's possible and rather easy to **pay off a debt** of one credit card with another credit card (and essentially delay your debt by a year, but accumulating overall) \n- many companies offer their own **"rewards" credit cards** and use it as discount card (like every airline, bigger malls and shops, etc.) and they try to upsell you when you e.g. buy a new pair of jeans \n- and finally you can **live on debt** for many years without any issue.\n\nSo ultimately the system is set up in a way that "not falling into debt" requires continuous attention and manual work, whereas the easy default is to get into debt over time. \n\nDefaults matter. Everywhere. \N 20185 \N 416994 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 16.6210370046387 0 \N \N f 229124149 \N 1 23886130 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432247 2025-03-10 06:26:33.611 2025-03-29 22:39:47.609 Seeing Through Stereotypes: Which countries SURPRISED you when you visited? From your travel experiences, what are countries with strong stereotypes cast on them that are actually much more pleasant than the stereotypes make them out to be?\n\nFrom related posts of mine, I've seen a lot of strong feelings come out about France, Paris specifically.\n\nIn general, the stereotype is that France has a bit of a stuck up attitude, can be rude to visitors, Paris is dirty, etc. etc..\n\nI've heard enough France feedback online and from friends to not doubt it, yet at the same time, I know a couple people that come out of France totally enthralled with the wonder and beauty of it as a whole.\n\nThis is the dynamic I am interested in hearing about: What other countries carry such stereotypes, and are they really that bad? What may we be missing that would turn the visiting experience into a much more pleasant one? Where is the GOOD in these places?\n\nPerhaps there are no widely perceived stereotypes about certain places you've visited. But they surprised you (in a good way) regardless. How so??\n \N 11967 \N 432247 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 22.9406453597346 0 \N \N f 46226631 \N 1 80668936 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 206588 2024-07-27 20:11:14.548 2025-03-29 22:39:47.611 Our Sacred Numbers We've had an impressive influx of new Stackers. Some have asked about various norms that have been established on SN. The one I want to talk about here is default zapping.\n\nMany of you know that I'm somewhat obsessed with zapping habits and how we value our zaps (https://stacker.news/items/287074/r/Undisciplined, https://stacker.news/items/523858/r/Undisciplined, https://stacker.news/items/473181/r/Undisciplined, and https://stacker.news/items/221151/r/Undisciplined). This is the magic that makes Stacker News work so well, after all.\n\n## Why Zap?\nBitcoin is scarce and hodl'ing is deeply ingrained in us. I can read all of the content on Stacker News without zapping a single sat. Why should I buy the cow, when the milk is free?\n\n1. Maybe you're the rare person who really engages in V4V, even when you don't have to. That's great, but we can see from nostr that you're the exception.\n2. The SN rewards system will pay you back for zapping good content and it does so nonlinearly. Ranking higher in zapping can pay for itself, so you don't want to be shooting yourself in the foot by zapping less than everyone else out of ignorance.\n\n## Common Zaps\nThis is where knowing what other people are doing comes in handy.\n* Generally, people zap a comment between 10 and 100 sats. 21 is a very common choice for symbolic reasons.\n* Many people zap posts more, which I think is reasonable since posts generally take more creativity and cost the poster more than a comment does. Normal post zaps range up to 1000 sats.\n\nSo, if you're trying to think through what reasonable amounts are for yourself, think tens of sats for comments and hundreds for posts. However, there's tons of room for discretion in there.\n\n## My Numbers\nOne of the neat SN features is that the custom zap options store several of your recent values.\n\nI set my default to 21, which lets me double tap to get 42. Then I have 69, 115, and 420 saved as custom zaps. Having numbers with symbolic meaning is just a bit of extra fun.\n\nGenerally, comments get one of the following from me\n* 21 (special btc number)\n* 42 (the answer to life, the universe, and everything)\n* 69 (nice)\n\nwhile posts get\n* 115 (remember, remember)\n* 420 (hehe)\n* 1000 (1 kilosat)\n\nHopefully, it helps someone seeing this laid out.\n\nAs always, I'm curious to hear how you all think about this stuff. It's an ever moving target. \N 4624 \N 206588 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1962633544142 0 \N \N f 0 \N 0 41517964 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410684 2025-02-20 15:57:06.854 2025-03-29 22:39:47.613 Plan B passport AMA w/ KatieTheRussian Hi, I am Katie
 \n\na Bitcoiner, a wife and mother and a huge advocate for Flag theory/Jurisdictional arbitrage.\n\nAs an immigrant myself, I got to experience the benefits of the Flag Theory before knowing the term. As I kept expending the ways I could benefit from my other passport/residency/foreign bank account, the more I wanted to find the way to scale it. 
 \nThis is how I stubbed upon the world of Jurisdictional Arbitrage and later founded Plan B passport where we help Bitcoiners to strategize and execute on their flag theory.\n\n\nMy definition of Flag Theory - the way of limiting your dependency on any one particular state by stacking flags in jurisdictions beneficial for you and your family. \n\n

 My Twitter: https://twitter.com/KatieTheRussian
 \nMy website: https://PlanBpassport.com
 \nMy email: Katie@planBpassport.com
 \nSchedule a call: https://calendly.com/plan-b-passport/plan-b-consultancy-clone-1?month=2023-01 \N 17696 \N 410684 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.3498678126714 0 \N \N f 0 \N 0 76326574 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430994 2025-03-09 15:00:58.329 2025-03-29 22:39:47.604 How to know if you are in the oppressive party The other day on social media I saw a bunch of comments about trans women in sports. One thing that was a bit shocking was how much those who are against trans women playing with women in sports qualified their statements.\n\nSo many of them began with varying levels of letting people know they are a trans/LGBTQ supporter, or that they work with trans people, or that they are friends or have family with trans people before they ultimately say they don't think trans women should compete against biological women. \n\nI couldn't help but think what a sad state of affairs this is, where one cannot simply voice a seemingly mild opinion without being categorized as a bigot. \n\nThen it got me thinking - if people have to qualify statements that might go against the grain of a certain political ideology, it is a good signal that party is or aims to be oppressive. \n\nIn all oppressive regimes, people are punished for speaking against the party or against their views. In the US, you get cancelled or labeled as a bigot if you espouse views that liberals might find offensive. Even Presidents of universities were unwilling to say that calling for the genocide of jews was against their schools' policies. Meanwhile, if someone says trans women shouldn't be allowed to compete against biological women in sports, they are considered a bigot. This is what necessitates the qualification. \n\nIt would be fascinating if someone could measure this overtime. I have got to imagine someone in Germany once said a statement like "I totally support hitler and the nazi's, but are we sure we should be exterminating the Jewish race? _Totally_ support Hitler though. Heil."\n\nThis can be applied for more than just politics. \n\nIt actually occurs on this site fairly frequently, which you'd not expect given the libertarian lean. Indeed, when people on this site talk about the price of bitcoin it is always qualified with "I know price doesn't matter but." Likewise for alt coins. "I am thinking about investing in something other than bitcoin" is often accompanied by a qualifier or disclaimer that they are not interested in "shitcoins."\n\nJust something to consider. \N 17519 \N 430994 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.5388524658652 0 \N \N f 0 \N 0 118570001 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435642 2025-03-12 20:56:09.513 2025-03-29 22:39:47.606 If you could only move ONE more time, where would you go? Assume the next trip you go on will be the last traveling you ever take part in. It's a one-way ticket to somewhere new. \n\nAssuming you knew this, and that you'll be stuck there indefinitely, where would you want to be?\n\nYou'll be up and moving you, your family, your social life, career, dogs, cats, and potentially many other aspects of your life. Where will you find the "smoothest" transition, and the greatest ROI for yourself, given your new circumstances? Where would you be most excited to take on life from?\n\nOr would you rather stay put right where you are now? Why? Are you happy where you've landed? \N 5825 \N 435642 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 12.4062488179501 0 \N \N f 0 \N 0 41730650 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402984 2025-02-14 10:22:38.971 2025-03-29 22:39:47.609 RIP, my cowboy hat It appeared like a bolt out of the blue.\n\nI was clearing some work when I glanced at my phone.\n\n![](https://m.stacker.news/45894)\n\nIronically, yesterday was the day where I had the least number of teaching periods. I could very well have sustained my winning streak, particularly during my lunch time.\n\nI had chosen to read a book titled “Success Built to Last” then. Recently, I wanted to input greater intervals between my screen time and engagement with my physical environment. Digital addiction is real, and I want to stop sliding down the slippery slope. \n\nBut I think a bigger reason for me not posting/commenting could be attributed to the saying “Pride comes before a fall”. I have grown used to having my cowboy hat around; therefore, I erroneously thought that it would always be there for me, waiting for me to give it some love.\n\nThe intensity of my hunger has abated. My drive has diminished. \n\nBecause I let my guard down, I lost 🤠. \n\nHonestly speaking, the loss didn’t hurt me as hard as I assumed it would. I don’t want to trivalise the cowboy hat as a *silly little gimmick from SN*. After all, I have attributed meaning to it, associating it with my ability to be committed to something. \n\nBut in the grand scheme of things, it’s okay because I learnt an important lesson from this. **When I stick to something for the long time, I got to think about how to maintain my drive at peak tenacious levels.** To distill my feelings to those of joy when seeing cherry blossoms 🌸 bloom for the first time. To keep these feelings fresh even though they are by nature ephemeral.\n\nSending some happy sats to @Scoresby because misery loves company! \N 1515 \N 402984 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 27.9068487212447 0 \N \N f 157959671 \N 1 20334451 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 98023 2023-12-12 18:05:24.812 2025-03-29 22:39:47.612 To mine or to spot buy, that is the question. I'm getting ready to buy some miners and get them hosted with some pretty decent electricity costs. However, as I drift into this world I realize... Holy fuck, the mining business is a crap shoot where timing is EXTREMELY important.\n\nLet me explain. So let's say you pay 20 mil sats for miners. Then you need to pay X sats for monthly electricity. Now halving. Now bitcoin price goes up, and in DOLLAR terms, you pay off the miners. Here's the question, did you actually recoup the original amount in BITCOIN terms??? EEK!? Scary question for someone denominating in bitcoin.\n\nReasons to mine: (Credit to Wilson bros for some of the ideas on this list)\n1. Getting bitcoin below spot price (sometimes. see factors below)\n2. Good source of KYC-free sats (if you don't dox yourself to the host)\n3. Idealogical reasons: Securing the system\n4. As a hobby (less relevant for people hosting)\n\nFactors to consider: (Credit to Jon from Pleb Miner Mafia for a few of these factors)\n1. Future change in bitcoin subsidy (aka the halving)\n2. Hash price\n3. Hash value\n4. Efficiency of miners you bought\n5. Cost of miners you bought\n6. Tx fees\n7. Difficulty adjustments\n8. Value of bitcoin in dollar denominated terms (if you're planning to make a dollar denominated profit)\n9. Opportunity cost of the bitcoin you're selling today for the miners in exchange for a trickling of sats over a longer time frame.\n\nI posted this not to educate but to ask. Feel free to comment below. Would you mine? Yes/No? Why or Why not? And when is the optimal time to jump in (is there one?)\n\n_Not paid to advertise this obviously, but they deserve some love, so check out https://wilson.mining.io to meet the amazing brothers hosting this small hosting farm (no really, it's on an actual farm)._ \N 1567 \N 98023 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.7178167813806 0 \N \N f 0 \N 0 237690671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 20971 2023-05-08 09:37:11.676 2025-03-29 22:39:47.914 Twitter and Other Paywalled or Sign-Up Blocked Links are Spam If it has a paywall, why would I tip your post sats? I have to spend that money on the paywall. Even more insulting when its a FIAT paywall rather than a lightning enabled paywall. \n\nTwitter has also blocked content for people who don't have Twitter accounts, but if you have a Twitter account, you probably follow these posts already anyway, making your SN link to it spam for non Twitter users. \n\nThis has been my opinion on what I think should be added to the definition of "spam" and why I will ignore a post you probably think is pretty good and under other circumstances would get a zap tap. \N 21239 \N 20971 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.25100078108865 0 \N \N f 0 \N 0 210352003 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444454 2025-03-19 22:21:56.123 2025-03-29 22:39:47.606 Thinking about lenses through which we see the world \nOver the years my way of viewing the world has evolved. This has mostly affected how I interact with other people. As I have learned how to view the world through a new set of lenses I gain understanding of the world and also the people around me. Most of us probably see this in others but do we see it in ourselves? What lenses have you added to your set? What lenses do you see others using? For me I see most people viewing the world through the lens they are given each day. The first is politics. Basically this comes from the news they consume and the friends in their circle. Few actually question these lenses. They think anyone that has a different view outside of the "norm" is crazy or maybe dangerous. \n\nHere is my list of lenses. Are their any I've missed?\n\n* Personal benefit/profit\n* Politics\n* Incentives\n* Cycles \n* Patterns\n* Economics\n* Religion\n* Human nature\n* Culture\n* Bitcoin \N 5746 \N 444454 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 26.4040119587835 0 \N \N f 0 \N 0 117042335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427628 2025-03-06 14:37:37.237 2025-03-29 22:39:47.609 What does it take to forge a strong family? There's been lots of talk about family and parenting in general here on SN, and I'm going to extend this by asking the following question: what does it take to forge a strong family these days, and what's your take on a "strong" family?\n\nFirst things first: what do I mean with a "strong" family?\n\nA *strong* family, in my eyes, is a family which is self-supporting, comes with clear distribution of roles and duties between family members, and works together to achieve each member's personal goals as well as cementing the general succes of the family as a whole.\n\nWhat should the (would be) parents bring to the table, what should said parents teach their children, and how should said children be raised altogether?\n\nWhat about principals, norms and values and education? How'd you go about it, and what are some prime examples of "strong" families? \N 18178 \N 427628 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 12.2507361704038 0 \N \N f 553673778 \N 3 243743259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438036 2025-03-15 06:52:57.412 2025-03-29 22:39:47.61 Does having your own lightning node help the community? I'm somewhat experienced running my own node for about an year, and I've certainly spent way more sats that got it back, but If I stop spending, I stop routing then whats the purpose of a node if isnt routing?\n\nthere's 3 kinds of nodes:\n\n1. Big Routers (with more than 100 channels and lots of capacity)\n2. Exchanges/Service Nodes\n3. Small router nodes (US)\n\nThe problem:\n\nin order to route, you need to have inbound liquidity, but not from small nodes, because even if you have inbound liquidity from them, they won't have inbound liquidity from big routers (to route to you), and both of you are left with useless inbound liquidity because both of you wont be trading sats between yourselves!\n\nTo be useful, you need to acquire inbound liquidity from big routers, really, there's no other way, and when you go that road, you'll see that they are selling with a minimum of 500 PPM, some others 1750 PPM (like deezy).\n\nThis means that they are going to sell you a channel which you have to have AT LEAST 1750 PPM to all others in order to even the price you paid to them, because YOU'LL NEVER BE ABLE TO REBALANCE TO THESE BIG ROUTERS because everyone else is gonna charge higher to their direction, making it impossible to rebalance back pushing sats through them, make sense? \n\nSo, here's what usually happens:\n\nYou open some channels with small nodes through lightning plus, having sort of 50% in and out liquidity, then you open some channels with services/exchanges. Then you start seeing some sats flowing to the exchanges/services because some of the nodes you connected to have bought inbound, then you end up depleting sats on exchanges (which will never come back), and the other nodes that pushed sats through you end up with balance on your side, and if you don't make any movement your node will be dormant and you'll never route any payments anymore!\n\nLast night I tried something new, receiving sats through lightning directly to my node from coinos, and even though I had inbound liquidity from exchanges and services my payments failed, 2 mil satoshis failed to go to my node because In order to receive those sats coinos needs to route their payment through quality routers which I dindn't have enough inbound liquidity on them, even though I have plenty of inbound liquidity through small nodes and exchanges, coinos was unable to route through \nthem!\n\nThat being said, here's my question:\nWhy community tends to convince you to have your own node??? What can they benefit from it? How would I help? How can a small merchant receive thorugh lightning if they need to worry about buying liquidity? It looks like big players have it all sorted out, selling channels and routing through them.\n\nI sent a payment through my getalby channel pushing sats through walletofsatoshi and paid 3,000 ppm... How can lightning beat other shitty coins like this??\n\nI wonder what are your thoughts about this? \N 2213 \N 438036 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 11.1055394988517 0 \N \N f 0 \N 0 83273516 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 22564 2023-05-13 16:33:33.027 2025-03-29 22:39:47.611 When did you realize that wokeness was a real threat? My story... I'll go first. \n\nA few years ago I saw a video clip of a medical professor of obstetrics at some university in California, giving a talk about childbirth. \n\nAnyway, at one point, he made a "mistake" and used the word "women", instead of using whatever jumble of words that he was supposed to use, something like "people who bear children". \n\nHe realized immediately what he had done, and apologized right away, profusely. And you could literally hear the tremble, the fear in his voice as he apologized. \n\nThat made me afraid, as well - fearful that our society was headed straight to insanity.\n\nHow about you all?\n \N 10016 \N 22564 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.49208888542219 0 \N \N f 0 \N 0 96201490 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 154376 2024-04-07 10:30:25.124 2025-03-29 22:39:47.612 Two Chancellors, Two Cryptographers and One Rabbit Hole ![Charles Lutwidge Dodgson](https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/LewisCarrollSelfPhoto.jpg/424px-LewisCarrollSelfPhoto.jpg)\n\nWe know that in 2009, Satoshi Nakamoto inscribed on the Genesis Block that the British Chancellor of the Exchequer had bailed out the banks.\n\nBut few know that one hundred and forty-one years earlier, another cryptographer had a British Chancellor on his mind.\n\nThat cryptographer was Charles Lutwidge Dodgson, better known as 'Lewis Carroll'.\n\nCarroll, the author of both _Alice in Wonderland_ and _Alice Through the Looking Glass_, was also a Mathematics Professor and invented two types of algorithms to encrypt/decrypt messages.\n\nCarroll mentioned in his diary that after inventing one of these algorithms, he showed it to [George Hunt](https://en.m.wikipedia.org/wiki/George_Ward_Hunt), Britain's _Chancellor of the Exchequer_ at the time.\n\n>Dodgson's diary for this same date refers to a "new" cipher: "Sitting up at night I invented a new cipher, which I think of calling the 'telegraph-cipher'".\n\n>His diary entry for 24 April 1868 also refers to the Telegraph-Cipher and his showing it to George Hunt, the Chancellor of the Exchequer.\n\nhttps://lewiscarrollresources.net/ciphers/index.html\n\nCarroll first coined the rabbit-hole metaphor to describe falling and going deeper into a subject or a search than ever we could have thought.\n\nThe culture of the Bitcoin Rabbit Hole has several Carroll-inspired references. We describe 'Alice' is a participant when describing Bitcoin transactions. We use terms from _The Matrix_ to describe choosing to see the world differently. It's fair to say that his work inspired the films. Both Alice and Neo decide to stop playing the game and in the end come to see through it all.\n\nIf Carroll, the cryptographer and writer, were alive today, he'd surely would have stumbled into the Rabbit Hole by now. After all, in a minor way he helped forward the science and _literally_ created the original Rabbit Hole.\n\n![Alice entering the rabbit hole](http://1.bp.blogspot.com/-3S_-k60WcPM/VOzez1DzH7I/AAAAAAAAATM/QPw8p5elocA/s1600/alice-in-wonderland-classic-disney-24501729-430-314-1.gif) \N 6160 \N 154376 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.5611510255256 0 \N \N f 0 \N 0 96291706 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 186436 2024-06-18 14:25:28.127 2025-03-29 22:39:47.606 Factors (besides seed phrase) which cause you to not be able to recover wallet? Assuming you have the seed phrase - what else do you need, to ensure you can recover a wallet? \n\nI had a scare a while back when restoring a seed phrase, and the transactions NOT showing up. The problem ended up (after a lot of stress and research) being the script type.\n\nAlso I just saw a long discussion of someone having a similar issue - being fairly experienced, and thinking he did absolutely everything right in terms of securing his coins, and then not being able to restore it and see transactions. I don't know yet what his solution is, hopefully he can figure it out.\n\nSo my question is, what (besides the seed phrase) is necessary to know, to ENSURE that you can restore, perhaps with different software?\n\nHere's my short list so far:\n- are you single sig or multi sig (obvious, but still...)\n- script type (Native Segsit, Legacy, etc)\n- is the derivation correct (m/84'/0'/0', etc)\n- do you have a passphrase (again, obvious)\n- the gap limit \n- are you using the regular BIP39 standard, and not the Electrum standard or something else?\n\nWhat else is there, that could affect this?\n\nI have a couple other related questions:\n- Does the "script policy" descriptor shown in Sparrow encompass ALL of the factors besides the seed phrase that can affect whether the transactions show up? \n- Say you set up a wallet in Sparrow (via, for instance, SeedSigner). And then you set up a watch-only wallet for it on Blue Wallet. To make sure everything is good - do you just need to check that the receive addresses are the same?\n\n \N 642 \N 186436 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.5538279989134 0 \N \N f 0 \N 0 51211333 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 178741 2024-06-02 10:23:01.265 2025-03-29 22:39:47.612 REVEALED: Here's the Cellebrite Premium Device Support Matrix for July 2024 Cellebrite are a mobile forensics company selling data extraction tools that use exploits to open devices for law enforcement, governments, private investigators, and other organisations. Cellebrite Premium is their product for Law Enforcement and Government clients.\n\nHere's the Cellebrite Premium 7.69.5 iOS Support Matrix from July 2024:\n\nhttps://image.nostr.build/f042276d5b54561f39a1cf73f9e3dc5c0b8946c4744eb7a20445c859fcbdc7c3.jpg\n\nhttps://image.nostr.build/df75e212117bed9ec8e1ae80c06ac78ab66dd981931a5f2c796803150856fbf9.jpg\n\nhttps://image.nostr.build/24e57317d9f77fc17bb26485a319e28d02c0f36df2038681acae9d0ebc1c1bcb.jpg\n\n404media recently published an article based on the same April 2024 docs we received in April and published in May. Many tech news sites including 9to5Mac made incorrect assumptions treating that as current.\n\nHere's the Cellebrite Premium 7.69.5 Android Support Matrix from July 2024 for Pixels. They're still unable to exploit locked GrapheneOS devices unless they're missing patches from 2022. A locked GrapheneOS device also automatically gets back to BFU from AFU after 18h by default.\n\n![](https://m.stacker.news/40812)\n\nGrapheneOS is defending against these tools with generic exploit protections rather than by patching specific vulnerabilities. Until recently, it's likely that it was our generic memory corruption exploit mitigations including hardened_malloc which was successfully stopping this.\n\nIn February 2024, we added a new feature for disabling the USB-C port at a hardware level. In March 2024, we set the default mode to "Charging-only when locked, except before first unlock". In June 2024, we increased the default security level to "Charging-only when locked".\n\nLater in June 2024, we extended our software-level USB protection, merged it into the newer hardware-level protection feature and extended the hardware-level protection to pogo pins on the Pixel Tablet. There's extremely strong protection against these USB-based attacks now.\n\nHere's the Cellebrite Premium 7.69.5 Android Support Matrix from July 2024 for overall Android devices. Other than the Titan M2 on the Pixel 6 and later not being successfully yet to bypass brute force protection, it's largely just based on what they've had time to support.\n\n![](https://m.stacker.news/40813)\n\n![](https://m.stacker.news/40814)\n\n![](https://m.stacker.news/40815) \N 20849 \N 178741 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.0202291478259 0 \N \N f 0 \N 0 197946739 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 191434 2024-06-29 13:36:27.632 2025-03-29 22:39:47.913 Chaumian E-Cash on Bitcoin: Banks in Cyberspace or Regulatory Capture? # Chaumian E-Cash on Bitcoin: Banks in Cyberspace or Regulatory Capture?\n\n[Cashu](https://cashu.space/) is an open protocol enabling users to take advantage of Chaumian e-cash on top of Bitcoin.\n\nWhat is Cashu and what are its benefits and trade-offs?\n\n![](https://m.stacker.news/52450)\n\n## Remember: It's an IOU, Not Real Bitcoin!\n\nCashu transactions are instant and free, and they add a lot of privacy to Bitcoin (and Lightning) transactions.\n\nThey can also be transacted offline!\n\nHowever, BTC "minted" with Cashu are custodial IOUs, and are therefore generally only suitable for small value, short duration transactions, NOT for saving purposes!\n\nSo if you're allergic to custodians, this thread may contain NUTS (pun intended!)\n\n## Open-Source Protocol Inspired by Chaumian E-cash\n\nCashu was created by a pseudonymous Bitcoin and Lightning Network developer @calle, and has been in active development since October 2022. \n\nCalle took inspiration for Cashu from David Chaum's DigiCash Chaumian e-cash system, conceptualized already in the 1980s.\n\n## How Do Cashu "Mints" Work?\n\nA "mint" means placing sats on a Lightning node that operates the mint.\n\nIn return, users get sat-denominated IOUs.\n\nUsers can then transfer those IOUs between each other without fees (if their IOUs are within the same mint).\n\n![](https://m.stacker.news/52452)\n\n### "Bitcoin Banks"\n\nYou can think of Cashu mints as "Bitcoin banks" serving users who can't afford or don't want to pay any transaction fees when transacting with BTC as a medium of exchange.\n\nInstead of financial markets, Cashu "banks" interact with the Bitcoin protocol.\n\nCashu mint operators custody the BTC sent to the mint all the time.\n\nHowever, mint users can send and receive these e-cash IOU tokens ("nuts") without the mint operators' permission (between the mint users).\n\n### Digital Bearer Token \n\nThere are no accounts or account balances in Cashu. \n\nNeither is any personal information required.\n\nThe e-cash tokens that users receive after depositing to a mint are digital bearer tokens that exist on the user's device! \n\nE-cash tokens are files stored on your device.\n\nWhen you want to send e-cash tokens, you will copy a string of characters (representing the tokens) on your wallet interface supporting the Cashu protocol, and then send that string of characters to the recipient.\n\n![](https://m.stacker.news/52453)\n\nThe recipient will paste that string to receive the tokens.\n\nThe transaction is instant and without fees because it happened within the mint issuer's Lightning node.\n\n![](https://m.stacker.news/52454)\n\nThe sender can also redeem the tokens to himself by pasting the string.\n\nIn a way, you can think of e-cash tokens as a check, money order, or as gift cards.\n\n### Privacy Through Blind Signatures\n\nCashu uses "blind signatures" to add privacy to transactions and to prevent double-spend.\n\nOther users or the node operating the mint can't see users' e-cash balances or who they're transacting with.\n\nWithout going to cryptographic details, you can think of blind signatures this way:\n\nYou're voting in an election and writing the number of your chosen candidate on carbon paper and sealing the paper in an envelope.\n\nAfter that, you bring the envelope to an election official who stamps it.\n\nIn the context of Chaumian e-cash, the stamped approval is the Chaumian mint approving that your e-cash is valid without knowing anything about the transaction (without knowing who you voted for!)\n\n![](https://m.stacker.news/52455)\n\nTokens can't be double-spent because the file containing the tokens is destroyed cryptographically "at the mint" before new ones of equal value are issued by the mint to the recipient!\n\n## E-cash Is Always Custodial\n\nE-cash is custodial because the mint always holds the BTC. \n\nIf there was no BTC backing them, the tokens would have no value.\n\nYou can think of it as the free banking system in the United States in the mid-1800s: banks issue their own paper notes that are backed by gold.\n\n## Interoperable with the Bitcoin Lightning Network\n\nE-cash tokens can be exchanged between different mints using the Lightning Network.\n\nLightning is the connecting tissue that brings e-cash mints together, and gives their users access to the Bitcoin ecosystem.\n\nImagine the Bitcoin blockchain transactions as huge freight trains carrying a heavy load.\n\nNow imagine the Lightning Network as trucks driving that cargo along the highway.\n\nAnd to reach the last mile to the end consumers along rural country roads, couriers are using e-cash as a messaging layer for transactions.\n\nVisa and Mastercard don't move money either.\n\nThey just act as messengers between banks.\n\nWithout Lightning, e-cash wouldn't have much use since you couldn't send between mints.\n\nMany e-cash wallets available now support paying Lightning invoices from the e-cash "balance".\n\n![](https://m.stacker.news/52456)\n\nHowever, e-cash wallets are not Lightning wallets.\n\nYou deposit with Lightning, get e-cash, transact with e-cash privately within a mint, withdraw to Lightning etc. \n\nMaybe in the future you can withdraw directly to on-chain too?\n\nIt's possible to swap between mints, but since more than one Lightning node is now involved, the transaction will inherit Lightning's privacy, not the privacy of the e-cash protocol.\n\n![](https://m.stacker.news/52457)\n\n## Use Cases: Custodial Wallets, Paywalls, Reward Systems..\n\nAnyone can create a mint, whether it's for a wallet, paid streaming service, web paywall, or a voucher or a reward system for a supermarket. \n\nThere is no reason why you should reveal your bank information and identity if you're reading a paywalled newspaper article (especially if it's a political article).\n\nE-cash could be useful for people in countries with less developed banking infrastructure or where dissidents and political activists can't use digital money.\n\nYou could pay a VPN subscription with e-cash without revealing your identity. \n\nOr maybe AI agents could make micropayments to each other with it!\n\n## Choose Your Mint Wisely!\n\nUsers can choose from different mints they want to join.\n\n[bitcoinmints.com](https://bitcoinmints.com/?tab=mints) has a list of mints with accompanying reviews.\n\n![](https://m.stacker.news/52458)\n\nMints can rug pull users so it's important to choose a mint you can trust, or treat the sats you're minting as funds you're willing to lose. \n\nUse it like a wallet in your pocket.\n\nIf you lose it in a bar with a few small bills inside, it's not a big deal!\n\nThere are plans to add a [proof-of-liabilities scheme](https://gist.github.com/callebtc/ed5228d1d8cbaade0104db5d1cf63939) for e-cash mints to mitigate the rug pull threat.\n\nEpochs of e-cash could expire, force "bank runs" and thus encourage auditability for the mints.\n\n## Considering Only Minting Sats You're OK to Lose!\n\nThe Cashu protocol is still in its early stages.\n\nFunds can also be lost due to software bugs, so tread carefully!\n\nIf you delete your browser history, tokens will be lost unless you back them up.\n\nIt's advisable not to use a private browser (cache might get cleared).\n\n## Nostr as a Social Layer for E-cash\n\nE-cash users can use Nostr as web of trust for mints.\n\nYou can e.g. choose mints that people you follow have interacted with.\n\nThis could eventually weed out malicious mints.\n\nIf you're unfamiliar with Nostr, check out my earlier introductory post with some resources: https://stacker.news/items/558629\n\nIt's also possible to send e-cash via Nostr DMs!\n\nFor some reason during my testing I managed to send the tokens but didn't get the DM.\n\nMaybe not all Nostr clients support the feature?\n\n![](https://m.stacker.news/52459)\n\n## NUTs as the Protocol Spec\n\nCashu the protocol is governed by NUTs (Notation, Usage, and Terminology).\n\nNUTs are protocol specs for the functioning of the protocol, similar to BIPs in Bitcoin, BOLTs in Lightning, or NIPs in Nostr. \n\nNUTs from 1 to 7 are mandatory, and the rest are optional.\n\nIt's possible to add programmability to the Cashu protocol.\n\nIt enforces any scripting condition that the Bitcoin protocol allows.\n\nSpending conditions, multisigs, timelocks, atomic swaps, HTLCs... \n\n## The Renaissance of E-cash\n\nBitcoin doesn't need e-cash, but e-cash needs Bitcoin.\n\nE-cash was invented already in 1982 way before the birth of Bitcoin in 2008.\n\nE-cash was waiting for Bitcoin to emerge and to operate as its foundational layer.\n\nWith Cashu, e-cash is witnessing a renaissance.\n\nE-cash didn't take off with DigiCash in the 1990s, even though the company had made promising partnerships with major banks.\n\nMicrosoft was also interested in integrating e-cash with every sold copy of Windows 95, but the two companies couldn't reach a deal. \n\nDigiCash eventually filed for bankruptcy in 1998, and e-commerce was taken over by credit cards.\n\n## Privacy Trade-off: Small Anonymity Sets\n\nBesides the obvious custody trade-offs, there are also privacy trade-offs depending on the anonymity set of users.\n\nCashu uses fixed (power-of-2) token denominations to create a hide-in-a-crowd effect.\n\nCashu tokens come in denominations of 1,2,4,8,16, 32 etc.\n\nLarger amounts could more easily be distinguishable from the crowd and thus erode privacy.\n\nIf there is only one token of specific denomination, it can always be linked backed to its creation. \n\nAlthough e-cash payments within a mint give a large degree of privacy, a mint could identify a receiver getting paid out to Lightning via the mint. \n\nMints can also see users' IP addresses, access time and other metadata, so it's best practice to use Tor or VPN with Cashu.\n\n## Possible Regulatory Capture?\n\nIt's uncertain whether the anon set will be large enough for good privacy if large banks and exchanges stay away from becoming e-cash issuers.\n\nBut, if they will become issuers, concerns of centralized chokepoints and regulatory capture could increase.\n\nAn e-cash issuer could slowly collect a large amount of sats to its mint, and then through regulatory pressure or not, start performing KYC of its users and telling them that withdrawal to Lightning is not possible without account verification.\n\nCould Cashu be used for a CBDC-system interoperable with Bitcoin?\n\nThere is a window for a compliant use of e-cash.\n\nThe European Central Bank, Bank for International Settlement, and Swiss National bank have shown interest in using e-cash technology in their [CBDC designs](https://www.coindesk.com/tech/2022/11/10/david-chaum-rolls-out-privacy-protecting-cbdc-technology/ ).\n\nThe United States Congress also has an [e-cash act proposal](https://ecashact.us/) in the works.\n\nIs this their way to fight Bitcoin? By flooding the network with government-controlled IOU tokens? \n\nJust like what happened with gold (the IOU became money)?\n\nIn any case, e-cash is an interesting experiment to make the custodial Bitcoin Lightning experience easier and more private.\n\nWith Cashu wallets, you don't even need an email... just start sending and receiving sats!\n\nBut remember not to get caught in the IOU trap!\n\nSome wallets you can use to get started with deez nuts!\n\n[Cashu.me](https://wallet.cashu.me/)\n[Nutstash](https://nutstash.app/)\n[Minibits](https://www.minibits.cash/)\n[Boardwalk](https://boardwalkcash.com/setup)\n[Shopstr](https://shopstr.store/)\n\nWhat's your opinion on Cashu?\n\nIs it a good privacy and scaling improvement for Bitcoin?\n\nThank you for reading this far!\n\nHere's [210 Cashu sats](https://wallet.nutstash.app/#cashuAeyJ0b2tlbiI6W3sicHJvb2ZzIjpbeyJpZCI6IjAwNTAwNTUwZjA0OTQxNDYiLCJhbW91bnQiOjIsInNlY3JldCI6IjZ1SlZaZ2U1RkgzSHRLTGNSbGp2SHFuNllPVTJQNkgrbm9Cd1RQV1VneFk9IiwiQyI6IjAzYzRiMjRhZDIxNTQ2MGY1ODNkMzU2ZGU3MGJlNzM5MTllODQ5ODZlNWY0YjA1ZWFhMTgwMGU0MzY4MTQ2OTMwNSJ9LHsiaWQiOiIwMDUwMDU1MGYwNDk0MTQ2IiwiYW1vdW50IjoxNiwic2VjcmV0IjoiM0V1Smt4OXIwWWRvUFg3T3pBV3hMZnhicDJubWtwbW5SSHFuNzNTTS9xbz0iLCJDIjoiMDM3ZWFjNDRmMGMwMjg2NzFjZWRkZGY4NWFiYWQzNzQxMmY0ZTljMDEyN2E1MWMyMzliMzBiYjBmNGU2MDUxMWQxIn0seyJpZCI6IjAwNTAwNTUwZjA0OTQxNDYiLCJhbW91bnQiOjY0LCJzZWNyZXQiOiI4aHEraStOZkMzN3huT0R5MzBpR084ZHM4aFRJV2lTY3VDYTAwM1E1L0R3PSIsIkMiOiIwMmY5YjBkMzQ2MzIwOTYyZTBmMWI3OWUyNDFjMjNmMGIxMTAxNzU5ZTVjNmJhNjk5NWI5Yjg4MzdiNWVmZDFhMGMifSx7ImlkIjoiMDA1MDA1NTBmMDQ5NDE0NiIsImFtb3VudCI6MTI4LCJzZWNyZXQiOiJUTkRGRmhWUyt5YXFKS0tUcDIxL2N6UExZaCtEQ1pvQXVVdlF6S0wzU2dRPSIsIkMiOiIwMjJkNzU3NjdkYmY4NGFlMjM3NTBhYjhjNTZlMjU4MTUxMWVjNmYwZDBlMTZiZmFkMDFjZjFiODhjYjM2YmQ4MjMifV0sIm1pbnQiOiJodHRwczovL21pbnQubWluaWJpdHMuY2FzaC9CaXRjb2luIn1dfQ) for you (if you're the first one reading this!)\n\n## Additional Resources\n\n[Awesome Cashu, a curated list of Cashu projects and tools](https://github.com/cashubtc/awesome-cash) \n\n["Is Cashu & Bitcoin eCash The Future?", video tutorial by Ian Major](https://www.youtube.com/watch?v=KiCGUWJ50Uo) @IanM\n\n["Cashu Tutorial - Chaumian Ecash On Bitcoin", video tutorial by BTC Sessions](https://www.youtube.com/watch?v=riTRD0BdMDI) @BTCsessions\n\n["Cashu: Chaumian E-Cash protocol for Bitcoin", presentation by Cashu developer Calle at Baltic Honeybadger 2023](https://www.youtube.com/watch?v=V6HBM7jL0cw) @calle \n\n["Blinding custodians with Cashu - Calle - Adopting Bitcoin Day 1 - Galoy Stage", presentation by Cashu developer Calle at Adopting Bitcoin 2022"](https://www.youtube.com/watch?v=UNjVc-WYdgE&t) @calle \n\n["Chaumian eCash in Bitcoin - Cashu & Fedimint - Adam Gibson aka waxwing", technical presentation by Adam Gibson](https://www.youtube.com/watch?v=VwMzNE1D3so) \n\n["PlebDevs Theory: Cashu Gets Nutty", technical presentation](https://www.youtube.com/watch?v=zhJZnxaLLU4) \n\n["Cashu workshop" by Super Testnet](https://www.youtube.com/watch?v=xfYmwc-gnK8) @supertestnet\n\n[Animated slides explaining Cashu](https://lconf.gandlaf.com/) @gandlaf21\n\n["Cashu: Chaumian E-Cash & Mints Over Lightning", blog article by Bitfinex](https://blog.bitfinex.com/education/cashu-chaumian-e-cash-mints-over-lightning/ ) \n\n["Bitcoin adoption using Ecash", guide by Darthcoin](https://darthcoin.substack.com/p/bitcoin-adoption-using-ecash) @DarthCoin\n\n["Ecash Makes Bitcoin (And Fiat) Private With Calle’s Cashu", Bitcoin Magazine article by Frank Corva](https://bitcoinmagazine.com/business/ecash-makes-bitcoin-and-fiat-private-with-calle-cashu)https://bitcoinmagazine.com/business/ecash-makes-bitcoin-and-fiat-private-with-calle-cashu\n\n["The Rise of E-Cash: Maybe you don’t need a Blockchain", by Nicolas Dorier](https://blog.nicolas-dorier.com/posts/cashu/ )\n\n["How DigiCash Blew Everything"\n](https://cryptome.org/jya/digicrash.htm)\n\n## Project Links\n\n[Website](https://cashu.space/)\n\n[GitHub](https://github.com/cashubtc)\n\n[X (Twitter)](https://x.com/CashuBTC) \N 20904 \N 191434 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.2554340933111 0 \N \N f 0 \N 0 249719567 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 38951 2023-07-15 19:41:25.825 2025-03-29 22:39:47.917 BitVM Bridges Considered Unsafe \N https://medium.com/@twhittle/bitvm-bridges-considered-unsafe-9e1ce75c8176 8287 \N 38951 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5210859643435 0 \N \N f 0 \N 0 95147585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 175083 2024-05-25 07:57:45.476 2025-03-29 22:39:48.156 Posting comments on stacker.news with code As you may or may not know, I've been making comments on each of the daily @saloon posts, sharing the earnings from my home mining rig from the previous day, along with a running total. You can find the most recent of those comments [here](https://stacker.news/items/443295/r/WeAreAllSatoshi?commentId=443605).\n\nAs you also may or may not know, I contributed [several commits](https://github.com/stackernews/stacker.news/commits?author=SatsAllDay) to stacker.news itself last year, before my free time dwindled and I had to step away. I still hope to return at some point. Needless to say, I am familiar with the internals of the platform (though I suspect things have changed even in the short time I've been away!)\n\nAnyway, as a software engineer, it pains me to do repetitive tasks on the computer over and over again. So, inspiration struck! I decided to write some code that would help me make these daily comments, saving myself some time and making it easier to continue my streak.\n\nI won't go through all the technical details here, you can look at the code if you're interested. But in a nutshell, this code:\n\n1. queries the mining pool that I use (BraiinsPool) to find my mining earnings\n2. queries stacker.news to find @saloon's daily post and my old comments\n3. submits comments to stacker.news, sharing my mining progress\n4. has some other easter eggs ;)\n\nI actually wrote about this work in a comment [here](https://stacker.news/items/428406/r/WeAreAllSatoshi?commentId=429129). Consider this to be the precusor or the rough draft to this post.\n\nSo why am I posting this? I guess I like to share my projects sometimes, and I also hope to inspire others to explore interacting with systems they frequent via API, it's cool.\n\nThe source code can be found [here](https://github.com/SatsAllDay/sn-daily-mining). Feel free to fork it, or do whatever you like, it's MIT-licensed. I don't plan on accepting PRs, though, so consider any fork to be a "hard fork" :) (get it?).\n\nThanks for reading.\n \N 20802 \N 175083 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.12066613201058 0 \N \N f 0 \N 0 222357558 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 162699 2024-04-27 21:37:24.446 2025-03-29 22:39:48.157 SN Saturday Newsletter 4/6/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. The benefits of being a nomad go beyond novel settings as [@Natalia](https://stacker.news/Natalia) shares.\n - [One of the cheat codes I've learned—Geoarbitrage ](https://stacker.news/items/494208)\n - 13.2k sats \\ 79 comments \\ [@Natalia](https://stacker.news/Natalia)\n2. [@davidw](https://stacker.news/davidw) notes the surge in many collectible markets in coincidence with inflation.\n - [The Collectible Culture](https://stacker.news/items/495408)\n - 26.8k sats \\ 42 comments \\ [@davidw](https://stacker.news/davidw)\n3. Bitcoiners mostly talk about time preference, but flexible perspectives are generally important. [@kepford](https://stacker.news/kepford) zooms out.\n - [Zoom Out](https://stacker.news/items/489689)\n - 13k sats \\ 21 comments \\ [@kepford](https://stacker.news/kepford)\n4. Coinbase teased a Lightning Network integration many months ago. It looks like they'll use Lightspark with remote signing.\n - [Coinbase Selects Lightspark for Lightning](https://stacker.news/items/492689)\n - 14.6k sats \\ 103 comments \\ [@random_](https://stacker.news/random_)\n5. As bitcoin grows, so do its conflicting subcultures. Check your culture says [@lloyddunne](https://stacker.news/lloyddunne).\n - [Remove your Bitcoin culture lens](https://stacker.news/items/493397)\n - 8.6k sats \\ 7 comments \\ [@lloyddunne](https://stacker.news/lloyddunne)\n\n##### Top AMAs\n- [I'm Dhruv Bansal, co-founder of Unchained, AMA!](https://stacker.news/items/493994)\n - 31.8k sats \\ 99 comments \\ [@dhruv](https://stacker.news/dhruv)\n- [Geyser AMA 🙌 😎](https://stacker.news/items/490938)\n - 22k sats \\ 60 comments \\ [@geyserfund](https://stacker.news/geyserfund)\n\n##### Don't miss\n- [This is what a Bitcoin Circular Economy looks like](https://stacker.news/items/496159)\n- [The Bitcoin Revolution in Iran](https://stacker.news/items/487725)\n- [What will be your reaction plan in an imminent case of total annihilation ?](https://stacker.news/items/495097)\n- [Easter Sunday Orange Pilling](https://stacker.news/items/490763)\n- [NVK v SeedSigner - Valid Concerns or Arrogants Attacks](https://stacker.news/items/493036)\n- [Notes on El Salvador](https://stacker.news/items/487432)\n- [Quite simple idea on how to potentially bring very cheap self-custody to anyone](https://stacker.news/items/489877)\n- [Banks are scamming noobs when they try to buy Bitcoin in Spain LaCaixa](https://stacker.news/items/487654)\n- [3% Inflation Target Looks Like A Done Deal](https://stacker.news/items/494877)\n- [Career Advice](https://stacker.news/items/492095)\n- [The Truth about Bank Privacy](https://stacker.news/items/495037)\n- [Voice anonymization software / apps?](https://stacker.news/items/487109)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Million Sat Madness v2](https://stacker.news/items/489094)\n- [Happy Easter Everyone! 🌱🐣🐇💐](https://stacker.news/items/487472)\n- [March MSM Daylight Savings Bug](https://stacker.news/items/489749)\n- [SN release: wallet logs, fix invite links, subscription manage, API key scope](https://stacker.news/items/495333)\n- [Opinionated MSM Community Feedback Summary](https://stacker.news/items/491887)\n\n\n-------\n\n##### Top Monday meme \\ 25.2k sats \\ [@UCantDoThatDotNet](https://stacker.news/UCantDoThatDotNet)\n![](https://imgprxy.stacker.news/P1WiWEA9wd42iLPfyNLarFhpMZ8AdSBh_dspz9v9I2U/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yNDY4Ng)\n\n[**all monday memes**](https://stacker.news/items/489084)\n\n------\n\n##### Top Friday fun fact \\ 10.3k sats \\ [@Cje95](https://stacker.news/Cje95)\n> The 10th President of the United States John Tyler (President from 1841 to 1845) was born in 1790 or 14 years after the founding of the US. He still has a GRANDSON alive named Harrison Ruffin Tyler! It was pretty big news a few years ago in 2020 when Harrison Ruffin Tyler's brother, Lyon Gardiner Tyler Jr., died. It just goes on to show you how weird time can be that a guy born 234 years ago has a GRANDKID alive! He's 95 now btw!\n>\n> Heres an article from the [Smithsonian](https://www.smithsonianmag.com/smart-news/grandson-10th-president-john-tyler-dies-180975992/) about it!\n\n[**all friday fun facts**](https://stacker.news/items/undefined)\n\n------\n\n##### Top Stackers\n1. [@Undisciplined](https://stacker.news/Undisciplined): 518.4k sats stacked\n2. [@grayruby](https://stacker.news/grayruby): 154k sats stacked\n3. [@cryotosensei](https://stacker.news/cryotosensei): 116.3k sats stacked\n4. [@jeff](https://stacker.news/jeff): 116.1k sats stacked\n5. [@elvismercury](https://stacker.news/elvismercury): 106.4k sats stacked\n\n------\n\n##### Top Spenders\n1. [@Undisciplined](https://stacker.news/Undisciplined): 196.6k sats spent\n2. [@Marconius_Solidus](https://stacker.news/Marconius_Solidus): 60.8k sats spent\n3. [@elvismercury](https://stacker.news/elvismercury): 52.2k sats spent\n4. [@cypherspace](https://stacker.news/cypherspace): 51.3k sats spent\n5. [@FediTeam](https://stacker.news/FediTeam): 50.1k sats spent\n\n------\n\n##### Top Cowboys\n1. [@kr](https://stacker.news/kr): 431 days\n2. [@kepford](https://stacker.news/kepford): 257 days\n3. [@SatsCats](https://stacker.news/SatsCats): 216 days\n4. [@tnuts420](https://stacker.news/tnuts420): 215 days\n5. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 211 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 20412 \N 162699 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.24970157190781 0 \N \N f 0 \N 0 213160039 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138392 2024-03-07 13:42:56.685 2025-03-29 22:39:48.158 Are there any tools that apply zero knowledge proofs, much like GPG for ZK? Are there any tools that I could use from a Linux terminal or Python's API in order to [learn\napplication][1] of [zero knowledge proofs][3]? \nAkin to the way using `openssl`, `ssh`, and `gpg` improved my life and my [OPSEC][2] allowing me in the process to learn the basics of symmetric and asymmetric encryption. I mean useful and rather minimalist tools. I am not asking for \nshitcoins or bloated GUIs.\n\n[1]: https://en.wikipedia.org/wiki/Experiential_learning\n[2]: https://en.wikipedia.org/wiki/Operations_security\n[3]: https://en.wikipedia.org/wiki/Zero-knowledge_proof\n \N 15213 \N 138392 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.0970293291613 0 \N \N f 0 \N 0 116114405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424315 2025-03-04 00:39:17.683 2025-03-29 22:39:47.607 What do Stackers think about Jordan Peterson? Important figure or no? 🤔 Do you think he’s an important intellectual figure currently ? Could he be an asset to the Bitcoin community? \n\nA few of my thoughts straight off the top of my head. \n\nAlthough I don’t agree with him on everything, he’s generally likeable, well informed and he’s been an important contributor to current mainstream discourse. \n\nI’d say he was naive and too slow on the uptake with Covid but now basically gets it. \n\n\nI like his take on the gender identity and transitioning debate and I’m glad he’s weighed in on climate change and Net Zero. \n\n\nI don’t agree with his take on Israel Palestine from what I’ve seen. I might be wrong but it seems one sided?! \n\n\nI did like the podcast he did with Saifdean Ammous and he appears to be open to Bitcoin if not already invested. \n\nLastly he appears to represent the traditional conservative right. Is that playing into current divisions and maintaining elite control over the left vs right paradigm? \n\nHe could do with toning it down on Twitter. He doesn’t do himself any favours. 😂 \N 11192 \N 424315 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.2158678236964 0 \N \N f 0 \N 0 235642855 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410581 2025-02-20 14:48:07.651 2025-03-29 22:39:47.608 Incentivizing cowboy zapping power? 🤠⚡ (controversial topic) Hey stackers! Today I would like propose to the SN team a new feature that could be implemented in order to incentivize cowboys, of course I know that it could be controversial, but I would like to know the opinion of the community about it.\n\nIt's simple, everything revolves around making more visible the posts that are zapped by cowboys. Several formulas come to my mind to achieve this, here I list several options:\n\n- Option 1: Create a new post section including posts that have been zaps by cowboys, the section could be called "top by cowboys" or similar, I think this is the easiest option to implement. \n\n- Option 2: Instead of creating a new section, cowboy zaps could have more weight in the top section. For example they could influence 20% more with respect to others that have no or less cowboy zaps.\n\n- Option 3: In the previous option all cowboys would have the same weight, however in this one, the visibility power of a post could vary according to the time as a cowboy, i.e., when same amount of sats are zapped by a stacker, a 5-day cowboy and a 50-day cowboy, the latter would have more influence. \n\nhttps://media.tenor.com/boR5-SRzLj8AAAAM/gun-fight.gif \n\nConclusion\nCurrent SN system for daily rewards seems excellent to me, this is just an attempt to encourage the whole community to become cowboys, without affecting to a great extent the users who are not yet cowboys. \n\nI think it is great to fight bots and farmers, on the other hand I also think that if cowboys do not make a responsible use of their power SN could become a digital oligopoly, the opposite of what I think it is now. \n\nPersonally I don't know where I stand but I think it is positive to open a debate about it.\n\nThanks for reading, sat, let us know your ideas! \N 9295 \N 410581 \N \N \N \N \N \N \N \N videos \N ACTIVE \N 13.8318072279682 0 \N \N f 0 \N 0 14033844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415383 2025-02-24 18:55:21.35 2025-03-29 22:39:47.61 Does Michael Saylor Think He Has Enough Bitcoin? People who understand bitcoin never think they have enough. I mostly believe this cliche. It certainly applies to me. I look at my measly stack and mull my long list of what ifs, spanning 12 years. \n\nAt the same time, I believe that bitcoin must be used and spent if we want grass roots adoption. I don't support the Saylor/BlackRock push to erase the idea of bitcoin as money. ETF buyers don't even own any bitcoin to spend, and they seem fine with that. I am always looking for ways to buy things with bitcoin.\n\nStill, I find myself trying to replace every sat I use. I fool myself with this replacement idea. I know my stack is smaller than it could be. Saylor doesn't think about this. I wonder if he has ever bought anything with bitcoin? Does he use the lightning network?\n\nI'm starting to think this tension is inevitable. Maybe I would want more bitcoin even if I was a whale. If so, would that be pure greed? Maybe. \n\nSo, I'm working on achieving a balance, although it's not easy. Stacking and spending act at cross purposes. \nDo other stackers feel this way?\n \N 15463 \N 415383 \N \N \N \N \N \N \N \N health \N ACTIVE \N 25.7447404131814 0 \N \N f 0 \N 0 220625706 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 92168 2023-11-29 14:12:24.46 2025-03-29 22:39:47.907 Rates take the stairs up, but the elevator down. In every single rate hiking period since the creation of the scam that is the Federal Reserve, rates went up slowly but dropped rapidly. They take the stairs up, but the elevator down. Every. Single. Time.\n\nThe end of the BFTP at the same time we’re starting to see stress in the banking sector is telling. It’s clear that the Fed either needs to renew the program OR start some QE. They simply cannot do both without major, systemic disaster in the economy. They announced the end of the BFTP, so I think it’s clear which of those two options they have chosen. But they do not want the public to realize what the Fed’s plan is. They want us to continue to believe the “higher for longer” narrative, for as long as possible.\n\nBeyond the brewing banking crisis, there are a lot of signs of serious downturn and distress. Many of these indicators only just started flashing red, in January. So they are very recent. We know the Fed is mostly backward looking and their data is always lagging. They haven’t factored in all the new stuff that is starting to happen. Case in point: yesterday, the bank NYCB announced that it is in trouble, the stock dropped 50%. The Fed was not prepared for this happening on the same day as their FOMC meeting. They already had their speech prepared, and their paper ready to release. When they released the paper, they crossed out the words: “The U.S. banking system is sound and resilient.” They didn’t have time to fully revise their statement, so they just crossed this part out completely. They also seem to have told reporters to not ask anything about NYCB’s impending failure. The Fed learned about it only hours before their meeting, and did not have time to reevaluate. So they pretended that everything’s fine, and they pretended that there is no stress in the banking sector currently. Even though, there clearly is.\n\nThis brings back to my opening statement. Interest rates take the stairs up, but the elevator down. I think something is going to break before or around the March timeframe. Something big enough to cause an instant rate cut from the Fed, probably something around 100 basis points immediately. The elevator down.\n\nThe markets are not pricing this possibility in, whatsoever. They’re still buying the “higher forever” narrative. I think a rate cut is coming in or around March, even though they’re trying their best to make us think otherwise. \n\nThoughts? \N 12356 \N 92168 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.9989326063162 0 \N \N f 0 \N 0 6836322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 92097 2023-11-29 12:13:14.247 2025-03-29 22:39:47.907 I googled ass-milking so you don't have to You may have seen the term *ass milking* being bandied about on SN lately. If you are like me you may have some doubt's as to its meaning. \n\nI love the way the internet creates new terms seemingly bout of thin air, and so, although, this particular term is somewhat offputting, I felt it was my duty to figure it out. \n\nAlso, I have noticed that it is sometimes used a lot like the words terrorist, communist, and nazi -- an argument-ending appeal to pure evil. \n\nAnyhow, I thought that surely SN is not the only place this term is being used and that there would be some consensus about its meaning in a social media context. \n\nBoy, was I wrong. \n\n*the following is a description of sex acts and if you'd rather not read it, skip to the next paragraph.*\n\nThe term seems to have currency primarily as a descriptor of male-on-male sex acts, either referring to stimulating the prostate from the inside to encourage ejaculation, or referring to semen dripping out of one's ass after anal intercourse. \n\nNow: what is the metaphor that users of this term on SN are trying to evoke? Is it that the ass milkers on SN are egging each other on to a state of pleasure somehow? A state which seems to imply that it is self-serving or at least not a real contribution to SN? Or perhaps it is simply trying to appeal to gay sex involves subserviance and that ass milkers on SN are simping for each other?\n\nThe term often gets used on SN to imply that a user is cheating the system somehow or just encouraging crappy posts and comments. But I'm not sure I can connect any of that with my google search results. \n\nTherefore, I have decided to come up with my own explanation for what ass milking means:\n\n**ass milker** noun / aes milker / a user of an online forum who encourages shitposters to produce more shit (through explicit agreements of mutual benefit or simply because they like shit).\n\nI would be very happy for the connoisseurs of the word to correct me if I've gotten it wrong. \N 4415 \N 92097 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.2328758378727 0 \N \N f 0 \N 0 62931918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 191801 2024-06-30 08:23:49.277 2025-03-29 22:39:47.913 Books And Articles Newsletter, Issue 32 ![](https://m.stacker.news/51821)\n\n### News Of The Week \n\nWelcome to the Books And Articles newsletter. Thanks for all of the quality posts.\n \nThis has been another good week for the territory. @DarthCoin had the top post with a “copy/paste” of the book “The Basic Laws Of Human Stupidity”, by Carlo M. Cipolla. The book has proven to be very popular. Give it a read. \n\n@cryotosensei posted the first movie review in the territory. Be sure to read his take on “How To Make Millions Before Grandma Dies” in the new Movie Reviews section. \n\n@BTCLNAT gave us "My journey with Bitcoin: the experience of an ordinary Cuban." I have highlighted the post as a suggestion, and you can also now find it in the My Bitcoin Journey section.\n\nWe also have a new work of fiction, as @ginkgo posted the first “block” of *And Then She Disappears*. Spoiler alert: Satoshi is a woman.\n\n\nAs always, please reply with suggestions and opinions on how to make this territory better. \n\nLogo design by @plebpoet\n\nLink to last weeks newsletter: https://stacker.news/items/675955/r/siggy47 (Thanks @ek)\n\n\n### Top Five Posts Of The Week \n\nHere are this week’s top posts:\n\n- [The Basic Laws of Human stupidity - part 1](https://stacker.news/items/678475/r/siggy47) by @DarthCoin\n\n- [Sunday Survey: Do Audiobooks count as reading? 📚](https://stacker.news/items/677302/r/siggy47) by @Car\n\n- [a new kind of poem (that you can see 👀 and hear 🦻)](https://stacker.news/items/676672/r/siggy47) by @plebpoet\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002/r/siggy47) by @cryotosensei\n\n- [Book recommendations for learning more about mathematics?](https://stacker.news/items/684165/r/siggy47) by @Coyote_Cosmico\n\n\n\n### Siggy’s Suggestions\n\n- ["My journey with Bitcoin: the experience of an ordinary Cuban"](https://stacker.news/items/676287/r/siggy47) by @BTCLNAT\n\nWe are fortunate to have people from throughout the world on Stacker News. This post gave me the opportunity to learn about Cuba, which has been somewhat of a mystery for people living in the U.S. This is @BTCLNAT’s “Bitcoin Journey” story. I hope it’s just the first of many posts as bitcoin takes hold in this isolated, authoritarian country.\n\n- [World of Lies --Experimental Poetry](https://stacker.news/items/679740/r/siggy47) by @Malachi17\n\nAnother post of original poetry by @Malachi17. I feel like I learn something from each of them. \n\n- [And Then She Disappears - Block 1](https://stacker.news/items/680735/r/siggy47) by @ginkgo\n\nThis is the first block (chapter?) of an original work of fiction (?) by @ginkgo. I am looking forward to reading more as the tale unfolds weekly.\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n- ["Who are you?" — How do I want to answer?](https://stacker.news/items/674910/r/siggy47) by @IamSINGLE\n\n- ["My journey with Bitcoin: the experience of an ordinary Cuban"](https://stacker.news/items/676287/r/siggy47) by @BTCLNAT\n\n\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n- [And Then She Disappears - Block 1](https://stacker.news/items/680735/r/siggy47) by @ginkgo\n\n### Book Reviews\n\n- [what i read, and wrapping up in july:](https://stacker.news/items/630204/r/siggy47) by @speakingyourtruth\n\n- [Book Review: Nothing Like The Movies by Lynn Painter](https://stacker.news/items/670569/r/siggy47) by @speakingyourtruth\n\n- [The Mandibles: A Review](https://stacker.news/items/668210/r/siggy47) by @jimmysong\n\n- [Self-Reliance by Emerson](https://stacker.news/items/669132/r/siggy47) by @ek\n\n\n- [Book - The Victorian Internet by Tom Standage (1998)](https://stacker.news/items/673776/r/siggy47) by @Signal312\n\n- [Review: The Righteous Mind](https://stacker.news/items/665765/r/siggy47) by @Undisciplined\n\n- [Book Review: Sliced Americana](https://stacker.news/items/663627/r/siggy47) by @jbschirtzinger\n\n- [Saboteurs: How Secret, Deep State Occultists Are Manipulating American Society](https://stacker.news/items/675002/r/siggy47) by @jbschirtzinger\n\n- [Book Review | “101 ways to bring out the best in your children & yourself”](https://stacker.news/items/667453/r/siggy47) by @cryotosensei\n\n- [Book Review | “Diary of a Wimpy Kid”](https://stacker.news/items/668335/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Daily Dad” by Ryan Holiday](https://stacker.news/items/684138/r/siggy47) by @cryotosensei\n\n- [Book Reviews Directory #2](https://stacker.news/items/665395/r/siggy47)\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Movie Reviews\n\n- [Movie Review | “How to make millions before Grandma dies”](https://stacker.news/items/683086/r/siggy47) by @cryotosensei\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [a new kind of poem (that you can see 👀 and hear 🦻)](https://stacker.news/items/676672/r/siggy47) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n- [Let's pretend we loved each other](https://stacker.news/items/666008/r/siggy47) by @Nadia\n\n- [That's MINE! Poetry.](https://stacker.news/items/661773/r/siggy47) by @Malach17\n\n- [Silly rhymes written by a guy (maybe) fallen in love](https://stacker.news/items/666985/r/siggy47) by @0268a5c238\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 12139 \N 191801 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.5985728103918 0 \N \N f 0 \N 0 177987085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447197 2025-03-21 17:21:20.537 2025-03-29 22:39:47.607 SN release: item hover, notification mutes, accordion errors, fix fee rate, more This is mostly small stuff.\n\n- when hovering on an item link you get a little popover (via @felipe)\n- push notifications respect mutes (via @WeAreAllSatoshi)\n- form accordions are forced open when there's an error (via @BenAllenG)\n- get mempool fee rates from mempool.space (via @t0m, 🚨 new contributor)\n- fix Tor for Core Lightning autowithdraw (via @ek)\n- consistent theming for range filter calendar (via @abhishandy)\n- prevent zapping deleted items (via @abhishandy)\n- show related items on pinned posts (via @abhishandy)\n- shellcheck github workflow for `sndev` script (via @asterisk32, 🚨 new contributor)\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 5.8m sats to 22 contributors for 95 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/530574\nQ1 recap and Q2 roadmap: https://stacker.news/items/506566\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 21672 \N 447197 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 11.3225684279455 0 \N \N f 207020917 \N 2 35863765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:02:50.019 f \N \N \N 0 0 0 0 2 0 0 415525 2025-02-24 21:01:11.166 2025-03-29 22:39:47.609 eSIM on GrapheneOS no longer requires Sandboxed Google Play https://iris.to/note1v724qa2klg6chtldku2ms5lnu6mc0fxt5fzy2pl6epeh2ntfyuhqjqs7ae\n\n- eSIM management will no longer require Sandboxed Google Play. \n\n- eSIM management binaries are isolated from Google Play services.\n\n- Nor will they make direct connections to Google via Google Play Services to activate eSIMs.\n\nThis is great news for eSIM users!! 🥳 \N 21140 \N 415525 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 6.37794645225387 0 \N \N f 256237621 \N 2 11270326 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444548 2025-03-20 01:58:51.889 2025-03-29 22:39:47.61 Zeus LN Node - Advanced Usage This is the substack version of the guide I already posted on SN few days ago (https://stacker.news/items/528574)\nI added more information and reformat the sections for a better understanding. https://darthcoin.substack.com/p/zeus-node-advanced-usage 18313 \N 444548 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.6208975869124 0 \N \N f 0 \N 0 85768507 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 320492 2024-12-06 10:11:01.4 2025-03-29 22:39:47.911 Books And Articles Newsletter, Issue 12 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. Once again, thanks for all of the quality posts. \n\nThis week @Coinsreporter wrote a post originally in the ~bitcoin_beginners territory that has been added here to the “My Bitcoin Journey” section. I encourage everyone, and particularly all of the new stackers here on SN, to tell us their own bitcoin origin story.\n\nRemember, next week I will announce details of our next writing contest. \n\n\nThat’s it for now.\n\nI hope everyone has a good week. \n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [one step,and one day at a time](https://stacker.news/items/505241/r/siggy47) by @speakingyourtruth\n\n- [Does Shakespeare’s Caesar Explain the Unexplainable Villains?](https://stacker.news/items/510577/r/siggy47) by @SilkyNinja\n\n- [The Anti-Fragile Brendan Eich | Andrew Beck](https://stacker.news/items/504724/r/siggy47) by @kr\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Review:Software, by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n\n\n### Siggy’s Suggestions\n\n- [Wife's Cancer Diagnosis (Part #5)](https://stacker.news/items/505115/r/siggy47) by @hodlpleb\n\n@hodlpleb is an inspiration to all of us. He shares his family’s journey here regularly. Stackers get a chance to show their support and share their advice, but we all get back more from @hodlpleb than we give.\n\n\n- [your 20's should be the years of exploration: and here's why](https://stacker.news/items/508998/r/siggy47)\nby @speakingyourtruth\n\nThis is a wonderfully written post about life’s journey and the importance of exploration. Even an old guy can relate. @speakingyourtruth also posted this week’s top post, so I’m guessing we have more gems to look forward to from this account.\n\n\n#### This week’s Golden Oldie:\n\n- [Grayruby’s Bitcoin Story](https://stacker.news/items/417967/r/siggy47) by @grayruby\n\nToday’s Golden Oldie is @grayruby’s winning submission for our first writing contest. It is a fascinating tale that I have enjoyed rereading a few times already. I think you will enjoy it. I would like to take this opportunity to encourage everyone to tell their bitcoin story. I will include them in our index. \n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462)\n by @StillStackinAfterAllTheseYears\n\n- [The Bezzle, by Cory Doctorow](https://stacker.news/items/506632/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [The Achilles Trap, by Steve Coll](https://stacker.news/items/497756) by @Coinsreporter\n\n- [Software,by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Churning Black Matter](https://stacker.news/items/469200) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n\n\n \N 21164 \N 320492 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 8.88194508945983 0 \N \N f 0 \N 0 223329057 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 137972 2024-03-06 19:57:08.306 2025-03-29 22:39:47.912 A Utility Framework for Bounded-Loss Market Makers Me researching how to best lose money with [delphi.market](https://delphi.market):\n\n> We are interested in the design of _prediction markets_, or markets where price discovery is the designer’s end goal and trading is a means to that end.\n>\n> For example, suppose a policymaker seeks a forecast of the likelihood of an avian flu outbreak in 2008. He may float a security paying $1 if and only if an outbreak actually occurs in 2008, hoping to attract traders willing to speculate on the outcome. With sufficient liquidity, traders will converge to a consensus price reflecting their collective information about the value of the security, which in this case corresponds to the market’s estimate of the probability of outbreak.\n>\n> [...]\n>\n> Traditionally, market makers are human decision makers seeking to earn a profit.\n>\n> In contrast, a prediction market designer may well subsidize a market maker that expects to lose some money, in return for improving trader incentives, liquidity, and price discovery. The market maker’s loss can be seen as the cost of gathering information for more accurate forecasts. Of course, the market operator cannot afford to lose arbitrary amounts of money; typically he or she will want to set a maximum bound on the market maker’s loss, ensuring that no matter what happens, the loss cannot exceed the bound.\n\nI am currently at the point where I have to decide how prices are calculated. I want to show the price next to `BET YES` or `BET NO`. I am basically trying to work from UX backwards to how the market should work:\n\n![](https://m.stacker.news/47852)\n\nI previously had the idea that everyone would provide liquidity which means that rather than having already a price for betting, the traders would post their prices and their orders would be matched. So instead of simple buttons, I would have to maintain an order book.\n\nThis is annoying to implement _and_ bad UX.\n\nIf I have a simple algorithm to determine the price, an _automated market maker_, and am willing to lose money, then everyone could execute their trades immediately, improving UX.\n\nAnyway, interesting paper. Still on page 3, but already wanted to share. https://arxiv.org/ftp/arxiv/papers/1206/1206.5252.pdf 1489 \N 137972 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.382699426205 0 \N \N f 0 \N 0 90422194 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5234 2022-12-09 23:34:27.024 2025-03-29 22:39:47.916 Groupthink as a survival strategy How many times have you heard or joked about a woman being unable to make up her mind about what to have for dinner?\n\nHave you ever considered it may be part of a survival strategy?\n\n----\n\nIndecision, deferring choice, might a way to attempt to conform to authority. Our resilience to groupthink and conformity may depend on our self-concept. If we believe we are efficacious individuals, that we are capable of evaluating, choosing and acting in our best interests, we are less likely to succumb to perspectives and behaviors out of fear and insecurity. When people lack the belief that they are capable of acting in their best interests - when they distrust that they are capable of surviving - they must develop secondary social coping strategies in order to personally ensure their survival. \n\nBecause women are, on average, at a far greater disadvantage physically than men, they must do one of two things to ensure their safety from men and nature[^1]: 1) appeal to whatever consensus keeps them “in” the group or 2) hyper-individuate and influence the actions of major parties. We may be so preoccupied with bombarding our minds with ideas to ensure our survival that this second idea of how to survive unsettles us. However, we see this phenomena all the time: if someone goes “against the grain” but does it in a way that benefits, protects and/or uplifts others, they are considered a hero.\n\nTo return to that question, “What’s for dinner?”, how many layers of unseen cognitive processes are going on to avoid answering that question so that the woman will not be socially rejected (and implicitly die) for not being agreeable? I don’t know. I’m not a psychologist or social scientist, I am just someone interested in human behavior the way a writer might be. All I would like to propose is that our capacities for groupthink, conformity - and even indecision[^2] - ultimately boil down to survival strategies - and so do everyone else’s. \n\nMy next question might be, well, what about people who are lascivious creeps about shoving their ideas and opinions about the world down your throat? Another question for another day.[^3]\n\n\n[^1]: Men do this too. However, men, more than women, have an easier time biologically and socially developing their bodies into weapons to defend themselves. Physical confidence is real confidence. \n\n[^2]: I initially wrote this subconsciously assuming that indecision, deferring choice, is to attempt to conform to authority. As I continued working, I admitted that that may not necessarily be the case, although it is compelling enough as a premise to leave the piece majorly as-is and simply "fill in the gap" with the opening sentence.\n\n[^3]: I write a lot "like this" but do not share it much because I feel at times presumptive of understanding things I do not. But this is a tiny experiment in writing to test some of my bigger ideas for an audience. Please let me know what you think. Thank you for reading. \N 13042 \N 5234 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0706049940765 0 \N \N f 0 \N 0 239157232 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 28664 2023-06-03 18:04:53.636 2025-03-29 22:39:47.917 Amazing NEW LNbits update | LN Address extension ### Today LNbits team released a new version of the LNURL-pay extension.\n\nNow this extension contain the option to create a Lightning Address for each LNURL-pay code you create.\nNow is very easy to have and manage multiple LN addresses on your same domain where your LNbits is installed.\n\n### How to update\n\nIf you already have your own LNbits instance (you should), in just few seconds can be done, without even restarting the whole LNbits.\n\nWith the separate setup of LNbits core from all the extensions, now you just have to update the extension you want and done, no need for anything else.\n\n- Open your LNbits instance as super admin, not a regular user. If you still didn't saved the bookmark with your admin session, go to your LNbits console logs and check it there, it is indicated with the userid necessary. Use that link to manage it.\n- Go to "Mange extensions", and click on "ALL", search for LNURL-p, then click on "Manage".\n- Open the details of the extension and click on version 0.2.1, then click "Install". Done!\n\n[![lnurl-p-1.jpg](https://i.postimg.cc/fTwDWD17/lnurl-p-1.jpg)](https://postimg.cc/xqFWtDfq)\n\n- Now go and open that extension from the left panel, LNURL-p.\n- If you already had created some LNURL-p, you can click on edit and just add a LN Address to each.\n- If you didn't have created any LNURL-p then when you create one you will see now the field to insert a alias for a new LN address @ your-domain.com\n\n[![lnurl-p-ln-address.jpg](https://i.postimg.cc/rsQQc1tr/lnurl-p-ln-address.jpg)](https://postimg.cc/tnnhNVkq)\n\n-set all the otehr details as you wish for your LNURL-p and done, now you can receive sats to your newly created LN address.\n\nAlso now in the received payment details (click on the green arrow for the payment) you will see that if was used the LN address, it is indicated in those details.\n\n[![lnurl-details.jpg](https://i.postimg.cc/zDwq1V2X/lnurl-details.jpg)](https://postimg.cc/3WwsXJHP)\n\nAnother aspect: you can have as many LN addresses you want, but all of them will be under your hosted domain where your LNbits instance you have it installed.\n\nHAPPY LIGHTNING! \N 9845 \N 28664 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.73024020567942 0 \N \N f 0 \N 0 179473069 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 109384 2024-01-08 03:09:16.254 2025-03-29 22:39:48.156 Thanks to @k00b, @kr, @ekyzis for your work at Stacker.News!! As I had mentioned before, I deleted my Reddit account and am now exclusively on Stacker.News! I wanted to thank you for creating this cool platform and for continuing to manage and expand it. Stacker.News is truly a great idea and a wonderful project that I hope becomes infinitely large!\n\n@k00b, @kr, @ekzyis and more!\nMerry Xmas and happy new year! \N 20370 \N 109384 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.9974597666634 0 \N \N f 0 \N 0 79095902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 114473 2024-01-17 06:19:58.63 2025-03-29 22:39:48.156 Shill me your favorite books of all time for a long flight... Going on a trip to the Philippines with a layover... realizing I will need something to keep my brain occupied. Shill me your favorite books of all time so I have something to download before my trip. Thanks in advance!\n\n(ps not really interested in bitcoin books, find myself oversaturated in that department) \N 14651 \N 114473 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.829347974799 0 \N \N f 0 \N 0 69295664 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 88284 2023-11-20 19:30:25.127 2025-03-29 22:39:48.157 What else can’t the government take away from you? Education. \N 9517 \N 88284 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.4842107982825 0 \N \N f 0 \N 0 60560085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456858 2025-03-27 23:13:55.649 2025-03-29 22:39:47.609 Drivechains Won't Eradicate Altcoins There's a prevailing belief among advocates that drivechains will spell the end for altcoins. The logic is simple: if drivechains exist, they can replicate any function of an altcoin on Bitcoin itself, eliminating the need for the altcoin. For example, if an altcoin boasts privacy features, those could be integrated into Bitcoin using drivechains, making the altcoin redundant.\n\nTechnically, this perspective has merit. Many altcoin innovations can indeed be integrated into Bitcoin via sidechains. For example RSK is a Bitcoin sidechain that uses Ethereum's scripting language to copy its "features." \n\nHowever, this viewpoint misses a fundamental point. Altcoins don't thrive purely due to their technical features. In fact, their primary purpose isn't technical at all. Altcoins mainly serve to profit their founders and early investors.\n\nTake ZCash and ZClassic as examples. They are technically identical and the only difference is political. ZCash had a premine and a dev tax, ZClassic did not. They are completely redundant, yet, their coexistence remains undisturbed. \n\nAt its core, the altcoin world revolves around profit and politics, not technical features. Most of these "features" are not just dubious but actively harmful, as can be seen in the many different exploits of their bad designs. Technical features are significant only if they attract new investors. In essence, they serve more as promotional tools than as core functionalities.\n\nMany mistakenly see Bitcoin's value solely in its technical attributes. While these are crucial, Bitcoin's real strength lies in its monetary nature and the decentralized scarcity it creates. Overemphasizing its technical aspects risks overlooking this foundational economic characteristic.\n\nDrivechains are an intriguing technological development, but they're not going to suddenly stop new altcoins from launching or even succeeding in getting new people to buy in. People don't buy altcoins because of features, they buy altcoins because they want to gamble. \n\nBesides, if it was just technical features, wouldn't other sidechains like Liquid and RSK be more popular than the thousands of altcoins out there? The past seven years suggest that drivechains won't change this. \N 10608 \N 456858 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 28.8648059035037 0 \N \N f 143511544 \N 1 164175707 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421170 2025-03-01 13:15:43.226 2025-03-29 22:39:47.61 El Salvador is a huge honeypot for future presidents (criminals) According to https://nayibtracker.com "El Salvador" owns 2859 BTC. This made me think about the future of the country and possible election outcomes.\n\nIf you look at the history of people in charge in El Salvador it becomes clear that there where many, many crimnals (https://en.wikipedia.org/wiki/President_of_El_Salvador). \n\nLooking forward and considering the bitcoin stack El Salvador has, these people have even more incentive to become president again and gain access to a juicy Bitcoin stack.\n\nSo the question comes down to who holds those keys? Will the current government hand over the key to the new government? Those are as well reasons I get to understand why @DarthCoin is talking about countries how he does... :)\n\nWhat do you guys think? How could this play out in the long run? \N 2774 \N 421170 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.3799799524095 0 \N \N f 0 \N 0 86605451 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 162933 2024-04-28 12:22:59.505 2025-03-29 22:39:47.612 Daily ~Devs Hangout Hey Devs and Hackers! It's time for your daily rendezvous at the Daily Devs Hangout. 🛠️🔗\n\nPull up your ergonomic chair in our virtual realm and share a slice of your day. From triumphs over complex code, head-scratching bugs that make you wonder why you started coding in the first place - we're all here for it. 🐞💻\n\nCracked a tough algorithm? Encountered a Bitcoin brain-teaser? Or perhaps you've got a piece of sage advice that could save a fellow dev's sanity? This is the place to spill. \N 16754 \N 162933 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 29.987084368274 0 \N \N f 0 \N 0 225004925 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 188654 2024-06-23 20:26:25.21 2025-03-29 22:39:47.914 The Government Investigates Itself Once Again I haven't watched the questioning of the Secret Service Director that was broadcast today. I have heard some of the highlights, or maybe I should say lowlights. \n\nWe will probably never know what really happened. We will probably never get to the bottom of things. Right now many are doing their best to figure it out. The fact we have cameras connected to the Internet in our pockets means we know far more about this event than we ever knew about previous ones.\n\nAll that said, these investigations should be interesting. Now, we should all know by now that these investigations are usually little more than opportunities for politicians to get sound bytes they can use to bolster their standing with voters. But it will be entertaining at least. \n\nThe agencies like the Secret Service, FBI, and Homeland Security will be trying to shift blame around. They will be protecting themselves. If you are hoping that government will investigate itself and "fix" this I have some ocean front property to sell you in Nashville this week. I only accept bitcoin btw. \N 20642 \N 188654 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.8895894539112 0 \N \N f 0 \N 0 107890430 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436289 2025-03-13 12:58:26.199 2025-03-29 22:39:47.914 What is the digital equivalent of the shopping cart theory? https://preview.redd.it/l8fxt7vb3lz41.png?auto=webp&s=c91ed64b6692c84fd90828f444cf6b2cbcad1c95\n\nThe shopping cart theory is a famous post from 4chan that suggests the act of returning a shopping cart after using it at the mall is what determines whether a person is a good or bad member of society.\n\nThe theory says that because it’s not mandatory and there is no consequence for not returning a shopping cart, it’s entirely a personal choice out of the goodness of one’s own heart.\n\nAre there digital equivalents to the shopping cart theory? \n\nBuilding resilient and healthy communities online (and at scale) seems to depend on first being able to identify people who are “capable of self-governing”.\n\nWhat are the simple actions that determine good or bad members of the internet?\n\nCurious to hear everyone’s thoughts… \N 21079 \N 436289 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 7.57000567452781 0 \N \N f 91883424 \N 1 119696546 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 5962 2022-12-29 14:46:51.089 2025-03-29 22:39:47.915 What are the AI tools you are actively using? Beyond the hype, the shitty AI wrapper companies, what are the AI tools that you are actively using on a day-to-day basis?\n\nI'll start.\n\nI use ChatGPT4.0 to\n\n- Help me write scientific grant proposals. I basically write the paragraphs in my own words, and prompt ChatGPT to rewrite them using better scientific language. It's great at this.\n- Drastically improve the quality of my scientific papers. Same as above, I first write it in my own words and then let it improve the text. It's also pretty good at this, but the hyperbolic language that is ok for grant proposals sometimes needs to be tone-downed for a more factual paper.\n- I also use it for improving the quality of other non-native colleague's paper drafts, but when their English is too crappy, it cannot do a better job than me at making sense of what the colleague was trying to convey.\n- Debug Python code. Just copy paste the error message I get in my Jupyter notebooks, ChatGPT is faster than my past workflow of using Stack Overflow. I tried using it to write scientific code for me, but due to I presume the lack of training data for the highly specific type of code I do, it was not that good.\n- When I played around with app development, ChatGPT has been great at helping me get started, choose the right tools, debug code, etc. I was almost relying on it too much in the sense that I did not always understand everything it wrote, yet worked. But as I progressed, the app structure was getting complicated and I had to spend a lot of time to remind ChatGPT what was already there whenever I was closing an ongoing session. I plan on restarting this process, but where I learn the fundamentals first and just use ChatGPT as a companion rather than my master.\n\nI used to have a plugin in youtube that gives me summaries of long videos that I was about to watch. Helped me check if it's worth the time. The tool broke, didn't bother troubleshooting it. Don't remember the name.\n\nAre there any ChatGPT wrappers that you use and believe will still be there in the future, i.e. OpenAI won't kill them by implementing the same functionality? Remember the PDF wrappers that died overnight.\n\nPlease avoid dropping lists of "10 AI tools everyone should know about" that are just there for Twitter engagement farming. I want to know about the tools YOU actively use on a day-to-day basis :) \N 6419 \N 5962 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5307805568116 0 \N \N f 0 \N 0 138335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 397192 2025-02-09 20:30:12.446 2025-03-29 22:39:47.609 We are Trezor, the open source hardware wallet pioneer. Ask us anything! ### About Trezor\n\nWe are Trezor, pioneers of the hardware wallet industry and creators of the world’s first hardware wallet, Trezor Model One (announced on [Bitcoitalk.org](https://bitcointalk.org/index.php?topic=122438.0) in 2012). \n\nSince day one, Trezor has adhered to an open source philosophy, with both the firmware and the hardware being fully open and free for everyone to build on. This choice has enabled a lot of innovation in the space, ensuring everyone around the world can hold and spend their bitcoin in a secure manner.\n\nTrezor has contributed numerous BIPs and SLIPs to improve bitcoin: \n\n- [BIP39](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki) - Mnemonic code for generating deterministic keys\n- [BIP44](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki) - Multi-Account Hierarchy for Deterministic Wallets\n- [BIP84](https://github.com/bitcoin/bips/blob/master/bip-0084.mediawiki) - Derivation scheme for P2WPKH based accounts\n- [SLIP39](https://github.com/satoshilabs/slips/blob/master/slip-0039.md) - Shamir's Secret-Sharing for Mnemonic Codes\n- …and other contributions\n\nTo this day, Trezor remains at the forefront of bitcoin innovation, recently becoming the first hardware wallet to implement [coinjoin](https://blog.trezor.io/coinjoin-privacy-for-bitcoin-11aaf291f23), allowing you to improve your privacy directly from the security of your hardware wallet.\n\n### AMA line-up\n\n**[Matěj Žák](https://stacker.news/matej)** is Trezor’s CEO\n\n**[Hynek Jína](https://stacker.news/hynek)** is Trezor’s head of development, contributor to Stacker News\n\n**[Josef Tětek](https://stacker.news/SatsJoseph)** is Trezor’s bitcoin analyst, contributor to Bitcoin Magazine\n\n### Resources\n\n- [Trezor website](https://trezor.io/)\n- [Trezor GitHub](https://github.com/trezor)\n- [Trezor Twitter](https://twitter.com/Trezor)\n\n### Ask us about\n\n- coinjoin in Trezor\n- open source philosophy\n- PINs & passphrases\n- seed security\n- Shamir backups\n- privacy in Trezor\n- bitcoin-only firmware\n- future plans\n- …and anything else you’d like to know!\n\nThe AMA starts at 4pm CET / 10am ET (but you can post your questions earlier). \N 21794 \N 397192 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 18.6784629600194 0 \N \N f 410177610 \N 3 34437189 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 01:46:30.001 f \N \N \N 0 0 0 0 1 0 0 143859 2024-03-15 18:34:29.299 2025-03-29 22:39:47.611 What is the Biggest Financial Regret of Your Life? Hey All - No need to get too personal about the specifics, but generally what is the biggest financial regret you have faced in your life?\n\nFor me, it was selling Microstrategy & Nvdia before the 200% bull run. I still made a profit, but nowhere near what I could have. My second biggest financial regret was not going all in at the bottom in 2022 for Bitcoin because I lost my job. \n\nThe way I make peace with this is the lesson to always have deep conviction towards your investments and not be too quick to take profits at every turn. Hopefully, I'm not learning the wrong lesson, but I missed out on some life-changing money on the NVDIA/Microstrategy stock I had. \N 16753 \N 143859 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.3835908940652 0 \N \N f 0 \N 0 160745311 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5414 2022-12-15 09:45:11.526 2025-03-29 22:39:47.915 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/385759) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 11621 \N 5414 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.9317197997568 0 \N \N f 0 \N 0 78618004 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3201 2022-10-26 20:13:40.891 2025-03-29 22:39:47.916 Fountain 0.7 AMA / Feedback - New Library, Transcripts, Performance & Live We've just released Fountain 0.7 with a bunch of new features and improvements to the core listening experience:\n\n- https://twitter.com/fountain_app/status/1663171268902879232\n- https://fountainpodcasts.substack.com/p/0-7-0\n\nI wanted to post an AMA to go over the new features and ask for feedback, suggestions, and feature requests.\n\n---\n\n 🎧 **New Podcast Library**\n\nWe've completely overhauled the podcasts library architecture making it even easier to manage your queue, episodes, shows, clips, and playlists. We also now support show-level settings so you can configure things like automatic downloads, auto-queue, playback speed, and sats-per-minute on a show level basis.\n\n---\n\n 📄 **Transcripts**\n\nWe now support the `` tag allowing you to read, search, and follow along with the transcript if the podcaster has included it in their RSS feed.\n\nTranscripts are great because you can quickly search the episode for the part of the conversation you want to listen to and play right from that block.\n\nEven better - if the podcaster or hosting company hasn't adopted the tag - you can purchase the transcript right in the app for small amount of sats (1000-3000) depending on the episode length. Fountain Premium users get unlimited transcripts for free.\n\nThe cool thing about this is that if one Fountain user purchases / requests the transcript - it becomes available for all other Fountain users. Having this kind of on-demand purchase feature at such a low price point (~$0.2) is only possible thanks to Lightning.\n\n---\n\n💪 **Performance Upgrades**\n\nThe new library architecture also drastically improves the loading, caching, and syncing times for podcasts so navigating around the app should feel much faster and smoother.\n\nWe've improved the syncing time for new episodes too as we know this was one of the biggest issues people had compared to other podcasting apps.\n\n---\n\n 🔴 **Live (beta)**\n\nWe've added support for the `` allowing you to listen to podcasts live as they're being recorded. Of course Boosting, Streaming Sats, and Comments all work in the same way as regular episodes.\n\nWhilst the live feature is very much still in beta - we're really excited about more shows and hosting companies going live.\n\n--- \n\n\nPlease let me know below what you think could be improved with the Fountain app experience - I'd love to hear your feedback! \N 2459 \N 3201 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.29855526264782 0 \N \N f 0 \N 0 54829809 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 31677 2023-06-13 21:46:36.19 2025-03-29 22:39:47.917 Wife's Cancer Diagnosis (Part #5) [Part 1](https://stacker.news/items/423124) | [Part 2](https://stacker.news/items/434440) | [Part 3](https://stacker.news/items/444102) | [Part 4](https://stacker.news/items/472852)\n\nForwards to @siggy47 on behalf of @cryotosensei\n\nBeen almost 4 weeks since I posted about this, and the particular moment has provided enough tension that I felt I should share a bit. \n\nWe're in the good end of the cycle right now. 3 weeks per cycle. The first 10 days are hard. The 2nd 10 days are basically like normal life, but trying to get caught up from the previous 10 days and trying to prepare for the next 10 days. \n\nTowards the end of the first 10 days, I started to crack a bit. It's a lot to have wife bedridden with 2 kids. They understand as best they can, but they want their mom. I feel like the extended family was less helpful during this cycle than they were during the first cycle, and I snapped a bit towards the end of it. Here are some notes that I wrote down at the time:\n\n`\nWed Apr 3\nBeen going down a not-great path the last few days. Wife’s cancer treatment entering a phase where it feels endless. Normal tasks or breakdowns starting to feel huge, on top of just surviving. Thought I’ve been doing fine, but might be holding on by a few threads. Had a fine morning, then starting slowly spiraling as I got the kids ready for school - needing to depart at a certain time to get to school and then work, my brain went into survival mode as the kids resisted getting dressed, eating breakfast, etc. Try to stay level headed with them. Once I got them dropped off, did some verbal moaning in the car to express my emotions, then parked in the corner of the parking lot and briefly cried to myself. Have been functional most of the day here, feeling okay as long as I don’t confront the list of tasks that remain incomplete. \n`\n\nNow, I have never been a person who needs things to go perfectly - but was definitely struggling at that point in time. Still have at least 3 more cycles to go, so trying to learn and adjust. \n\nAdmittedly, I was dosing THC every day for a while. I stopped doing that and I think I've felt better overall. It certainly helps me get through a tough evening with the kids, but then I start inching earlier and earlier. I look at my work schedule and will get stoned in the morning if I can. Turns into a bad spiral. \n\nI also find social media + my phone to be a pretty negative influence on my mental health. I had been indulging in Nostr quite a bit, so took the step to delete it from my phone, and think this has been a big boost to my mental health. \n\nHaven't done much self care other than getting to the gym as much as I can, but having some back muscle problem (rhomboid) so have had to take a few days off, and have been in some constant pain, which just adds to the misery of everything - but I spent some money on myself, buying some good clothes (nice underpants!) and bought 2 meshtastic nodes, which feeds a bit of my nerdy side and a bit of my prepper side, so that is fun and probably something that I normally would have thought about for a long time but I just did it. \n\nThe kids and I have had a few great days outside lately, working in the garden (we are keeping it super basic this year), playing in the yard, building fires, etc. ... and just reminds me how much I hate the rat race and that it'll still be a decade before I can retire on my bitcoin and they will be teenagers and 'hate' me by then 😐\n\n*Which brings us to the last two nights ...* \n\nI have been pretty good about hitting my bedtime lately, which means I have been asleep by 11PM lately. \n\nLast night I was struggling to fall asleep because my back hurt like hell, and was half dozing, when I heard a weird *cough, cough, hack...* - I knew that sound. It was the sound of barf. \n\nI went to my 8 y/o room and found him asleep, with a puddle of vomit next to his pillow. \n\nStrip 'em. Wipe 'em down. Put 'em in mom's bed. (he is asleep the entire time...) \n\nStrip the bed, scoop barf into the trash, start the laundry, put new sheets on the bed. \n\nHe ends up throwing up more in the bathroom, then totally fine after that. Not sick at all today.\n\nTonight, we get them all to bed. I am finally sitting down to decompress, and the younger one wets the bed. \n\nStrip 'em. Wipe 'em down. Put 'em in mom's bed. \n\nStrip the bed, start the laundry, put new sheets on the bed. \n\nFun times. \n\n...\n\nAs I'm doing all this, I've adopted a mentality of "I am serving my family". This is part of our life, it sucks a lot, and more problems are always going to get piled on top - but we have great support, we have friends bringing us meals, taking the kids, helping however they can. I feel lucky, in the scheme of the world and and know that in 5 or 10 years we'll talk about this and I'll think "damn, it wasn't really that hard" - partly due to the way time softens everything and partly because it is all an opportunity to grow.\n\nI love my family. Please give yours the same. \n\n\n\n\n \N 7376 \N 31677 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.9452142340835 0 \N \N f 0 \N 0 236639687 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 133309 2024-02-27 18:28:24.651 2025-03-29 22:39:48.155 On El Salvador's Crackdown on Gangs I like to look up El Salvador news often just to stay current with what's going on over there wether it's related to Bitcoin or not, and I invariably see the same kinds of things every time; articles about how the "crackdown" has imposed a "human cost" which is too high and how innocent people are getting swept up. \n\nSo I thought I'd share a conversation I had recently with a woman from the janitorial staff at my office building who comes from El Salvador.\n\nShe tells me that she left the country because it was too dangerous for her, but before leaving she used most of her life savings to buy a house for her adult daughter who decided to stay. That was 20 years ago.\n\nSince then, she has never been able to visit the house she owns where her daughter lives. If she visits #ElSalvador, she must stay with friends in neutral territory and have her daughter visit during the day, never at night. Since they can't get approval from the local gang to enter the neighborhood this is how it was for 20 years, until Bukele was elected and the massive clean-up started.\n\nIn June 2022, for the first time ever, she went to her own house, visited her daughter at home without anyone's permission needed, walked around the neighborhood for hours, well into the night, and even caught a pickup soccer game at the local pitch which had previously been off limits to everyone but the gang members. She says the entire neighborhood was there, cheering, talking, laughing. She says her daughter was particularly happy about was being able to order pizza delivery for the first time ever as drivers couldn't enter gang territory before. \n\nThe joy on her face as she's telling me all of this is amazing. And she's not the only one. Over 4000 homes have been returned to their rightful owners in the last 12 months. This number alone exceeds the amount of human rights complaints that have been brought by rights groups, and doesn't include the lives saved, the money saved by no longer having rampant extortion, the massive improvement in quality of life from being able to travel freely, the economic growth from new areas of the map being unlocked and available to businesses, new markets to be served, new businesses springing up which couldn't under gang rule, and importantly (this one will be hard for 1st worlders to really grasp) the peace of mind that makes life enjoyable in the first place. Literally the second layer of Maslow's hierarchy of needs.\n\nLook, with over 66k arrests in 1 year, I absolutely understand that innocent people are being swept up, and that is a very bad thing indeed, something to avoid as much as possible. But I come from Caracas. I know what it's like to live in fear, a half-life, never being able to do things that I now completely take for granted in my new 1st world home, like literally just walking in the streets of my neighborhood, going to the store, talking on the phone in public and even just having 1 phone instead of the real phone and the decoy phone to give muggers when they come, and they always do. \n\nBukele is not perfect, his people are not perfect, the state of exception is not perfect, nothing about the security policy is perfect. But the benefits are real, tangible, they reach far and wide. They are life-changing for many and even life-saving for some. \n\nA proper cost-benefit analysis here should analyze 4 things; benefits of the policy, costs of the policy, benefits of the alternatives, and costs of the alternatives.\n\nThese "news" outlets are almost invariably focused on the costs of the policy, and they ignore the other 3 things entirely.\n\nMy question(s) to these "news" outlets is;\n\nYou've laid out the costs of the policy. But what are the benefits of it? What are the costs of the alternatives? What are the benefits? Do you even have an alternative to propose? \n\nI don't think they're interested in any of that. \N 13348 \N 133309 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.3156510513007 0 \N \N f 0 \N 0 48721632 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 166753 2024-05-06 19:20:14.219 2025-03-29 22:39:48.157 Writing teaches you to develop the ability to understand "Writing teaches you to develop the ability to understand," emphasized Hannah Arendt in a 1964 interview with German journalist Günter Gaus.\n\nThis phrase made me reflect. When you write here on Stacker News — or when you try to write, even in an amateurish way, because not all of us are writers — when you attempt to formulate your thoughts, you are simultaneously cultivating the ability to think. The process of writing requires you to think, to think logically, so that the text you're writing makes sense and has logical continuity.\n\nAccording to the Socratic method—the so-called maieutic method—the flow of a conversation, especially when structured in a question-and-answer format, enhances the art of reasoning, bringing to the surface truths we didn't know we possessed, truths hidden in some dark corner of our memory.\n\nAs a result, when someone tries to write, they are doing themselves a great favor because they are giving themselves the opportunity to organize their thoughts, refine them, and formulate them accurately and reasonably.\n\nStacker News is an excellent opportunity for all of us. An excellent opportunity to practice the art of writing and, as a result, to cultivate the art of thinking. By thinking, we come to understand things better, and the learning process becomes easier.\n\nWhat do Stackers think? \N 19796 \N 166753 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.9769940732437 0 \N \N f 0 \N 0 135982269 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442568 2025-03-18 16:47:39.321 2025-03-29 22:39:47.61 My latest single is CTV - a song that tells why I want this soft fork **Link to song**\n\n> [CTV](https://supertestnet.github.io/songs/Super%20Testnet%20-%20CTV.mp3)\n\n**Lyrics**\n\n```\nWhen your blockchain doesn't work at scale\nAnd on lightning your payments start to fail\nDon't you feel like crying?\nDon't you feel like crying?\nWell, check out my solution\nA small fork called – CTV\n\nHear my reasons, I'll try to motivate\nWe'll see fee spikes til we activate\nUh, don't you feel like crying?\nDon't you feel like crying?\nDon't you feel like a cry?\nCome on, CTV!\n\nWhoa, nothing could be sweeter than a payment pool, you see\nIn the group, fees are moot, and all transactions free\nYeah, and as more people join, the pool becomes a sea\nSo come on, run a node and signal for CTV\n\nIf you're waiting for devs to get on board\nAnd you never get your voices heard\nWon't you feel like crying?\nWon't you feel like crying?\nWell, you can keep on cry-cry-crying til – CTV\nWhoa, cry-cry-cry-cry-crying til – CTV\n```\n\n**All Super Testnet songs so far**\n- [Little L2s](https://supertestnet.github.io/songs/Super%20Testnet%20-%20Little%20L2s.mp3)\n- [Who Wrote the Code](https://supertestnet.github.io/songs/Super%20Testnet%20-%20Who%20Wrote%20the%20Code.mp3)\n- [No More Crypto](https://supertestnet.github.io/songs/Super%20Testnet%20-%20No%20More%20Crypto.mp3)\n- [Why Do Fools Buy Altcoins](https://supertestnet.github.io/songs/Super%20Testnet%20-%20Why%20Do%20Fools%20Buy%20Altcoins.mp3)\n- [CTV](https://supertestnet.github.io/songs/Super%20Testnet%20-%20CTV.mp3)\n- [La Bitcoin song](https://supertestnet.github.io/songs/la%20bitcoin%20song.mp3) \N 12483 \N 442568 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.5563191738034 0 \N \N f 0 \N 0 221972601 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450939 2025-03-24 10:07:52.213 2025-03-29 22:39:47.912 apple does not allow you to install bitcoin core the new 'upgrade' of macbook and macbook pro called 'ventura' restricts you as a user:\n\nafter the upgrade completes, it deletes your bitcoin core entry in the dock; also other entries like electrum.\n\nyou can restore those entries by going to the application folder and clicking on the bitcoin core or other apps and they will open, but you cannot install an upgrade like bitcoin core 25. it will refuse to install. on the previous distro you had to open settings/security and create an exception for the installation of non-apple software. \nwith the new distro ventura you need to execute this terminal command:\nsudo spctl --master-disable\n\nthen you can go to settings/security and choose installation of all software. standard is now that you can only install software from apple or allowed by apple. \n\nit started with the iphone which became a spiphone many years ago. users could 'jailbreak' the iphone and enjoy their freedom as the name says. for many years now apple has made a 'jailbreak' impossible. \nspiphone owners get traced and tracked without any possibility of stopping it and they can only install software on the phone which is approved by big brother apple.\n\nit looks like the new complicated way of enabling free software installation on the mac is the first step of making free software on a mac impossible to install. i would not be surprised if there will be a permanent block of installing free software on a mac in the next release. as we know, apple hates free software.\n\ni like the macbook pro for the sturdy built and even for the functions. having said that, linux is superior because it is foss and it can do the same as the mac. i wish that linux could run smoothly on a mac. i know that older macs are capable of it but not the modern m1 or m2 macbook pros.\ntherefore i will max the useage of the macbook out, use it as long as possible, will try not to upgrade and when it becomes obsolete, i will migrate back to linux.\n \N 18265 \N 450939 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 26.8157359047548 0 \N \N f 235934775 \N 1 100335918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 191217 2024-06-28 22:39:23.98 2025-03-29 22:39:47.913 Apple adds custom HashCash impl to login flow for AppleIDs Apple makes you do a lil proof of work before you can submit password credentials when logging in.\n\nApple isn’t open source, looks someome had to reverse engineer it.\n\nBasic sketch is you call a endpoint which tells you how much PoW you need and then you submit a hash w/ that many leading zeroes any time you try to login.\n\nCheck the files changed for the implementation/scheme. https://github.com/fastlane/fastlane/pull/21073 3342 \N 191217 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.2260345908974 0 \N \N f 0 \N 0 244967799 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 109788 2024-01-08 23:18:35.592 2025-03-29 22:39:48.156 Prediction Markets Have an Elections Problem Nice exploration of issues around how prediction markets operate around elections. https://asteriskmag.com/issues/05/prediction-markets-have-an-elections-problem-jeremiah-johnson 13198 \N 109788 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.88682519566931 0 \N \N f 0 \N 0 133136481 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 87581 2023-11-19 08:16:05.912 2025-03-29 22:39:48.157 if free energy really is a thing down the road....would that compromise bitcoin? Just curious what happens when energy becomes free. \N 10638 \N 87581 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.4489452075385 0 \N \N f 0 \N 0 217339419 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 223114 2024-08-29 12:46:24.701 2025-03-29 22:39:48.168 Which game sequel are you awaiting the most? I've been reading through what @hn posted in https://stacker.news/items/754878:\n\n> Among them were some interesting things like the old cancelled Star Wars games, and **Apex Legends being referred to as Titanfall 3**\n\nReading this was a reminder how great Titanfall 2 was (campaign and multiplayer!) and how pissed off I still am that there is still no Titanfall 3 announcement from Respawn Entertainment after 8 years.\n\nTitanfall 2 was one of the best games I have ever played but as far as I can tell, the franchise was abandoned by EA and/or Respawn Entertainment after Apex Legends' success. The community literally had to [mod the game](https://northstar.tf/) to make it playable via custom servers again after the official servers suffered from constant DDOS attacks. Since help never arrived after acknowledgements of the issues, [some even hacked Apex Legends to raise awareness about the issue by displaying a "Save Titanfall" message](https://www.theverge.com/2021/7/4/22563257/save-titanfall-hackers-apex-legends-ea-respawn) with a link to savetitanfall.com[^1]:\n\n[^1]: there was also some conspiracy around the hacks and people behind savetitanfall.com, see [here](https://gamerant.com/the-titanfall-2-hack-and-controversy-explained/)\n\n![](https://m.stacker.news/61275)\n\nI almost got into game modding by contributing to the Northstar client but since games are written in C++ and you have to also run Windows to hack on them, I unfortunately didn't.\n\nI also wanted to play the first game but the servers were already long mostly dead but I really liked the dirtier look compared to the flashiness of Titanfall 2. The burn cards were also pretty cool.\n\nHowever, I don't want to miss to mention that even Titanfall 2's release was a major disappointment. It was locked in by EA to release on October 28, 2016, right between Battlefield 1 (October 21, 2016) and Infinite Warfare (November 4, 2016), the most popular FPS games out there. They basically sacrificed the Titanfall franchise just to maybe steal some customers from Activision during launch ... \n\nAnyway. Which game sequel are you awaiting the most?\n\n![](https://m.stacker.news/61272) \N 19930 \N 223114 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.01151893149172 0 \N \N f 0 \N 0 106585562 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402631 2025-02-13 21:37:53.381 2025-03-29 22:39:47.61 Bitcoin Explorama - Understand Bitcoin. Playfully. \N https://bitcoin-explorama.com/ 14465 \N 402631 \N \N \N \N \N \N \N \N science \N ACTIVE \N 20.8369752402976 0 \N \N f 0 \N 0 125090296 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 157602 2024-04-14 12:45:46.484 2025-03-29 22:39:47.612 If you were a professor, what course would you teach? I would've killed to have had schooling on Economic Philosophy, so I'd teach that myself...I'd save the Bitcoin talk for last, or at least try to.\n\nWhat subject would you want to break down over the course of several months? What are schools lacking that they should be teaching??\n\nHappy ☀️day everyone \N 1576 \N 157602 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8505016471425 0 \N \N f 0 \N 0 32903309 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 409034 2025-02-19 11:24:15.537 2025-03-29 22:39:47.613 I'm Hugo Nguyen. AMA! Hello everyone. I’m Hugo Nguyen, the founder of Nunchuk.\n\n[Nunchuk](https://nunchuk.io/) is a multisig wallet aimed to make self-custody of bitcoin safe and accessible to millions of people around the world. We recently launched a subscription service called Honey Badger to help Bitcoiners robustly secure their stash while also being able to plan their Bitcoin inheritance in a private, KYC-free manner.\n\nTraditional Bitcoin inheritance solutions have been difficult to set up and to claim. They are often privacy-invasive, expensive, and tightly integrated into existing state institutions. They bear many similarities to a fiat system. While these kinds of solutions have certain benefits and arguably necessary as we slowly transition into hyperbitcoinization, they shouldn’t be the only way or the default way Bitcoin works. With our products and services, we want to change that reality. \n\nI first learned about Bitcoin in 2011. Like most I slept on it for a few years. Started going down the rabbit hole in 2017 and haven’t looked back since. I’ve [blogged](https://hugonguyen.medium.com/) about Bitcoin, had a couple of commits in Core, and co-authored a [BIP on multisig](https://github.com/bitcoin/bips/blob/master/bip-0129.mediawiki).
 \nI also recently became a dad. Interacting with my newborn gave me an “ah-ha” moment, as it sorta ties everything together / slows things down for me. Kids are probably the lowest time preference thing in life. Who else we are building these tools for, if not our kids? I hope by the time my son turns 18, the term “Bitcoin maximalist” would seem as strange to him as “TCP/IP maximalist” or “Internet maximalist” to us:)\n\nAMA!\n \N 9330 \N 409034 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.7891838982798 0 \N \N f 0 \N 0 174734776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 369343 2025-01-15 14:52:58.868 2025-03-29 22:39:47.907 Introducing SN nostr Badges for Legendary Stackers and Honorary Cowboys It has been a while I was thinking about this idea, and we finally got it out into the wild network of nostr! I'm super happy to present you all the @sn nostr badges for Stackers and Cowboys, YAYYY!!!\n\n![](https://m.stacker.news/55778.png)\n\nNow (and forever) redeemable for FREE if you have reached one of this legendary achievements around here. \n\n**Cool, but how do I get my badge?**\nRespond to this post with your `npub`, we'll verify you reached the goal and award you with the badge in your nostrish profile.\n\n**Stickers for Stackers**\nIn case you still have long way to go and reach your badge-able awards, you can get some IRL as vinyl stickers and remind yourself the goal you want to reach :) Check them out, are on the ~AGORA marketplace https://stacker.news/items/711431/r/AG !\n\n\n \N 10280 \N 369343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6773104966688 0 \N \N f 0 \N 0 170658687 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106026 2023-12-31 17:12:23.874 2025-03-29 22:39:47.909 Unpopular Opinions - A Weekend Discussion Everyone has one or two unpopular opinions that all their peers disagree with, and most people resist discussing them to avoid disagreements. But a second-order effect of bottling up all your unpopular opinions is that discussions among your peers can become echo chambers with strong social pressure to conform to a set of established thinking on a topic.\n\nTo encourage healthy debate and to introduce SN users to new ideas, we thought it would be fun to open the floor for you all to share your most unpopular opinions about Bitcoin, Nostr, or any other topic you're passionate about. \n\nLet it rip! \N 10096 \N 106026 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.12244566237476 0 \N \N f 0 \N 0 40274650 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449186 2025-03-23 08:47:37.58 2025-03-29 22:39:47.911 What would you do without the internet? What would your life be like? @Natalia asked [a great question](https://stacker.news/items/588082/r/k00b?commentId=588506) in the [saloon](/daily).\n\nIf we never had the internet, imagine you're living before its invention, what do you think you'd be doing? How would your life be different?\n\nIf the internet were to go away forever tomorrow, having lived with it, what would you do then? Would your answer be different?\n\nWithout the internet, I'd probably be carpenter/painter. Before I found programming, I intended to go to college for math, then *not* use the degree, and be a carpenter/painter type. Having lived with the internet, valuing it as I do, I'd probably try to rebuild it in some way. \N 1602 \N 449186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7936548129397 0 \N \N f 1028404215 \N 6 171163935 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 26384 2023-05-26 18:57:21.227 2025-03-29 22:39:47.917 CASCDR Update: Word Level Transcripts API & More! What up stackers! We're back for a quick update:\nToday we're announcing the release of our new Word Level Transcripts API!\n\nHave you ever heard a great point in a talk/podcast and not able to find it later? [CASCDR Voice to Text fixes this](https://cascdr.xyz/?tab=WHISPER) . Just upload or provide a link to an mp3 or mp4 file and CASCDR comes back with your transcript:\n![](https://m.stacker.news/38624)\n\nPreviously we launched this service as a proof of concept. Truthfully it was not good enough so we went ahead and upgraded it:\n- 20 min media limit -> 5 hour limit\n- Single Monolthic Transcript -> You can get full transcript, sentence level timestamps or word level timestamps\n\nWe implemented this new API in our [YouTube Logic App](https://cascdr.xyz/?tab=Logic%20App&wfid=yitter_to_transcriptions) to integrate the entire workflow. With just a YouTube URL you can explore, search and copy the entire transcript to your clipboard.\n\n![](https://m.stacker.news/38617)\n_Searching the latest SNL with @Car and @k00b for updates on BOLT12_\n\nAt CASCDR we believe that lightning enables a future of open, flexible, decentralized and truly useful AI applications and agents. A boon for humanity that cannot be overstated. Each and every service we create provides value to humans *today* but is also available to automated software and AI services *from day 1*. If this application interests you hit us with suggestions/questions/thoughts in the comments!\n\nIf you want virtually unlimited access to this tool or many others we offer [CASCDR Amber](https://cascdr.xyz/?tab=upgrade) for $9.99/month . Otherwise we also accept payments through the @Alby Bitcoin Connect plugin!\n\n## Additional Links/Materials ##\n\nThat's it for today! If you made it this far thank you! Here is a list of more CASCDR materials you can check out:\nSN Post about CASCDRVision AI Clipping Tool: https://stacker.news/items/568299\nSN Post about YouTube Summarizer Agent: https://stacker.news/items/418051\nCASCDR Appearance on AI Unchained with @GuySwann_nostr : https://www.youtube.com/watch?v=T3w9wqPw5xQ&pp=ygUQY2FzY2RyIGd1eSBzd2Fubg%3D%3D \nCASCDR Presentation at @PlebLab Top Builder: https://www.youtube.com/watch?v=1v3aWdGVx7s&pp=ygUSdG9wIGJ1aWxkZXIgY2FzY2Ry\n \N 21103 \N 26384 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.4151339251614 0 \N \N f 0 \N 0 221934194 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 85512 2023-11-13 14:13:05.895 2025-03-29 22:39:48.155 Your house is burning down. What 3 books will you pick to run away with you? This question came to me in the midst of spring cleaning yesterday. And I had a good look at my books to determine the three books that meant the most to me. Here are my picks:\n\n1) “What should I do with my life” (Po Bronson)\n\n![IMG_0641.jpeg](https://m.stacker.news/14022)\n\nPacked full of stories featuring characters from all walks of life who shared with Po Bronson about the life choices they made as well as the decision-making processes behind them. Do you believe in epiphanies? Should you stay on in a morally decrepit job? Should you stay on in the same job forever? Po Bronson shares his reflective insights on these questions and more.\n\nAs a bright-eyed 20+ year old who had existential angst, I derived so much comfort from understanding how others lived their lives and examining how I should live mine.\n\n2) “How children succeed” (Paul Tough)\n\n![IMG_0642.jpeg](https://m.stacker.news/14025)\n\nPaul Tough examines why some children from tough backgrounds succeed in life and comes to the conclusion that having grit matters. Now, if you are familiar with Angela Duckworth’s work on grit, you may find that this book doesn’t feature particularly novel insights. Nonetheless, an ex-colleague from my previous workplace gifted me the book. And I always feel flattered that she regarded me highly enough to buy this for me.\n\n3) “What I wish I knew when I was 20” (Tina Seelig)\n\n![IMG_0643.jpeg](https://m.stacker.news/14027)\n\nDon’t you love the whimsical title? So do I. Tina Seelig taught an entrepreneurial class at Stanford, so her book is about the challenges she threw her young adults - and how they rose to the occasion. It reminds me that when push comes to shove and when we are forced to work with limited time and resources, our survival instinct kicks in. Our mental gears churn furiously; we lean on each other to make the best out of a bad situation; and sometimes, we succeed beyond our wildest dreams. This book reminds me to keep fighting the good fight! \N 3360 \N 85512 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.3245835685646 0 \N \N f 0 \N 0 211603658 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 395566 2025-02-08 15:36:01.63 2025-03-29 22:39:48.159 Creating a small bitcoin ecosystem in my house As I have mentioned before, I pay my eldest daughter's pocket money in sats but now what I also do is whenever she wants something from the app store or Steam (a game or robux etc), or the shop, she pays me in sats for it, and I get it.\n\nI showed her how to buy a gift card on bitrefill also, but the barrier there is usually the gift card amount is higher and because we are in Bulgaria there are sometimes issues with region compatibility etc\n\nbut this way, we at least have a little circular economy going, and when the youngest can actually properly count, I will set her up a lightning wallet too.\n\nnext, I am thinking of getting my wife involved, I haven't decided how yet, but I think I might set her up with a lightning wallet, and fund it partially to start her engaging with it at least.\n\nAndreas Antopoplois once said get them started young and he's right. I suppose that's why cults always target the kids, because they accept things with an open mind.\n\nOf course, the real cult brainwashing has been convincing people that having your money and purchasing power stolen via inflation is actually very good, something that has never been true for literally all human existence!\n\n\n\n \N 4474 \N 395566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.80899766560458 0 \N \N f 0 \N 0 77473001 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431174 2025-03-09 16:01:08.014 2025-03-29 22:39:47.612 On Propaganda A while back, I had a friend that was a pastor and he was railing about guns on Facebook, how they should be banned and so on. What had brought on this tirade was a shooting by a Muslim guy which left a bunch of people dead.\n\nIn a sense, I understood his anger. At a very surface level, a bunch of people died, so there had to be someone or something to blame. Indeed, every shooting of any kind brings out these emotions, and the powers that be are especially good at using tragedies to further their own agenda.\n\nIndeed, that's one of the evil things every authoritarian does is exploit times of vulnerable emotional states to further their agenda. Some would even say they manufacture such instances. But the point is that they further *their*agenda, and not what should be learned.\n\nMy pastor friend for example had many other angles to approach the topic that he was far more qualified to talk about. He's studied theology and other religions, so he could have talked about radical Islam and aspects of that which led to the shooting. He's also counseled a lot of people, so he could talk about mental health and talk about what puts people in those states of mind. He's also a Christian who knows the depravity of man, so he could talk about how sin and vice lead to these tragic outcomes. Instead, he talked about guns, because that was what the elites were focused on. He had never held or shot a gun and couldn't tell you the first thing about them, like what's considered automatic or semi-automatic.\n\nYet because the propaganda was strong, he spoke exactly on the issue the elites wanted him to talk about and placed the blame on the thing the elites wanted him to place blame on.\n\nThis guy, by the way, was not stupid. He's an Ivy League graduate and very sharp. But perhaps that's why he was so susceptible to propaganda. His success was largely based around following what the authorities told him. Intellect is no protection against powerful rhetoric.\n\nWe all outsource some of our knowledge, but the problem with a fiat system is that we all too often are *forced* to trust entities that we had no input in. These entities are the most likely to get corrupted and used for tyranny.\n\nWe need more interactions, more direct connections so that we can figure out whether someone is trustworthy. That's a decentralized trust model and it's about time we get used to judging such things for ourselves. \N 21067 \N 431174 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.8707461360017 0 \N \N f 0 \N 0 86514018 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417088 2025-02-26 04:54:13.368 2025-03-29 22:39:47.612 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/449900), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 21523 \N 417088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2013118450958 0 \N \N f 199137569 \N 1 203702264 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 221995 2024-08-27 19:03:52.197 2025-03-29 22:39:47.612 Is Self-Custody Truly Suitable for Everyone? Through various conversations with individuals, businesses, and those unfamiliar with the world of Bitcoin, I've observed that the topic of Self-Custody raises concerns for many. It's evident that individuals less inclined towards technical aspects might be hesitant to personally safeguard their funds, as it deviates from the familiarity of the traditional fiat world. While I strongly advocate for Self-Custody, considering it a fundamental principle of Bitcoin, I increasingly understand that there are people who would feel more secure if they didn't have to manage their Bitcoin themselves.\n\nIn our traditional financial system, there is a concept of deposit insurance for banks, providing a safety net in case financial institutions face issues. This assurance already instills a sense of security for the average consumer. It's essential to continue emphasizing the importance of Self-Custody to newcomers in the Bitcoin space. However, I've started to ponder whether Self-Custody is universally suitable, especially considering feedback from non-Bitcoiners expressing certain anxieties.\n\nI realize I might face criticism from others, but I genuinely question whether Self-Custody is the right fit for everyone.\n\n \N 1411 \N 221995 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.7398873931541 0 \N \N f 0 \N 0 73163940 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5658 2022-12-20 19:36:12.953 2025-03-29 22:39:47.916 Looking for a Bitcoin animation video This might be a long shot but I'm at my wits end trying to find this one particular video.\n\nI'm looking for an informational animation video that was either posted here or on the Bitcoin subreddit that teaches what Bitcoin is. The animation was done in a sort-of Kurzgesagt-style and I find it handy when introducing people into Bitcoin.\n\nI would really appreciate if anyone can help me find this piece of video so I can send it again to friends and family.\n\nThanks in advance! \N 886 \N 5658 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.8107146358015 0 \N \N f 0 \N 0 32004540 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 93376 2023-12-02 06:30:59.681 2025-03-29 22:39:48.154 Share the craziest weirdest random websites you've stumbled across online What are the most interesting unique strange awesome fun funny scary cool wild wacky wonky woozy websites you've come across in your years paroozing the World Wide Web??\n\nPretty basic but everyone needs to see [usdebtclock.org](https://usdebtclock.org/)...\n\nhttps://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExczRqdGVkaWtzbnlmN2dla3VzM3QxYmxkejh1YmZ4MzYweGc1dG43ZyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/hwHTCTQ1HBMxcNoVB9/giphy.gif \N 4259 \N 93376 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.1770790398222 0 \N \N f 0 \N 0 148600087 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 108983 2024-01-07 05:02:16.599 2025-03-29 22:39:48.156 BOLT 12 User Stories \N https://bolt12.org/ux-design 17976 \N 108983 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.6408913213351 0 \N \N f 0 \N 0 139195548 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435926 2025-03-13 05:32:20.574 2025-03-29 22:39:48.158 Thougths on national currencies as company shares National fiat currencies are similar to shares of a company.\n\nThey represent a government's issuance of value. By using them, you're not only trusting their monetary policy but their overall political agenda.\n\nThe dollar's dominance isn't solely due to force & blood shed, but also because the U.S. has been the most politically stable country in the last 100 years, which conveys certainty to the rest of the world.\n\nHowever, two phenomena are causing the USD to lose its global dominance:\n\n-Inflation, which is the unlimited and arbitrary monetary issuance by the central bank (in this case the Federal Reserve).\n\n-Various crises within American society, including that of its values, which communicates that the State and society are failing in resolving their problems.\n\nWe're talking about the decline of an empire and a society across multiple dimensions: material, economic, spiritual, and political.\n\nThe diminishing value of their currency is one of the symptoms and a compass pointing toward the direction the U.S. is heading.\n\nWould you invest in U.S. shares if it were a company?\n\nI wouldn't.\n\n-\ntwitter.com/criptoluis\nnpub1aq0ysu6sjdfxfvhwrg5ywtsww6jk5wcpzdp6prnjakrp8fwuaxjqhteyqa\n \N 6421 \N 435926 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 11.3261643010591 0 \N \N f 0 \N 0 244677036 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:15:49.527 f \N \N \N 0 0 0 0 0 0 0 426444 2025-03-05 16:10:35.876 2025-03-29 22:39:48.162 Identity verification, a trouble in Nostr paradise No doubt, Nostr is promising and exciting.\n\nBut there is still an unsolved (or at least not properly solved) problem before Nostr becomes "the new Twitter," or the favoured network for hundreds of millions of people: **human-readable handles**.\n\n[NIP-05](https://github.com/nostr-protocol/nips/blob/master/05.md) is addressing this issue, by allowing users to "verify" a Nostr public key, which means mapping it to a human-readable handle (in fact a DNS-based identifier). But there are still some (important) issues.\n\nIn a nutshell, there are only 3 possibilities:\n\n### **1. No verification**\n\nYou use Nostr with a default public key, and will be identified on the network as something like:\n> npub1sg6plzptd64u62a878hep2kev88swjh3tw00gjsfl8f237lmu63q0uf63m\n\nor (HEX):\n> 82341f882b6eabcd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2\n\nAdvantages: Simple, nothing to do, universal (works on all clients)\nProblems: \n. Obviously not amazing for brand recognition\n. Terrible to fight fake accounts, scams, impersonating etc.\n. I seriously doubt that Nostr could onboard 500M+ users that way \n\n\n### **2. Verification through a 3rd party**\n\nYou use a dedicated service or app to get your handle (usually for a small fee) under their domain, and will be identified on the network as something like:\n> me@SomeCoolNostrName.com\n\nAdvantages: Easy.\nProblems: \n. Your handle becomes entirely dependant of the chosen service. What if they disappear in a year? What if they change their policy/price? You have no guarantee whatsoever of the perennity of your handle, which is a problem if you start building a community around it. \n. There is risk of concentration. If the majority of users get an handle at, say, damus.io, Damus becomes the new Twitter, not Nostr. \n. In short, this solution re-introduce centralisation into Nostr.\n\n### **3. Verification on your own, custom domain**\n\nYou own a domain name and you use NIP-05 to make your handle verified. You will be identified as something like:\n> me@mydomain.com\n\nAdvantage: You really control your handle, directly associated to your site/blog/brand\n\nProblems: \n. Not so easy to do. The process involves converting your npub address, creating a JSON file (simple) and sometimes changing the configuration of your Web server (best guides explaining the procedure: [here](https://nostr.how/verify-your-identity) and [here](https://orangepill.dev/nostr-guides/guide-to-verify-nostr-profile-nip05-identifier-with-your-domain/)). Doable, but could be challenging for many users.\n. Since it's quite hard to register a domain name anonymously, you lose anonymity (not necessarily a problem since you're precisely trying to "verify" your identity). \n. You also expose yourself to possible censorship. If you do something reprehensible or illegal on Nostr, authorities can ask your hosting provider to shut down your site/domain, terminating your Nostr handle in the process.\n\n\n. . .\n\n\nIt looks like Nostr suffers from its own trilemma. Either you choose to stick to a poor UX (non-human-readable handles) or you go for solutions that will affect some of the key benefits of Nostr (decentralized, anonymous, uncensorable). \N 9335 \N 426444 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 15.3247705830052 0 \N \N f 0 \N 0 87864645 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:34:27.731 f \N \N \N 0 0 0 0 0 0 0 205636 2024-07-25 21:42:33.75 2025-03-29 22:39:47.612 GettingOnZero - Attempting to Live on Bitcoin in Germany - Update 1, 31.01.2024 ****I didn't figure out how to edit the existing post after some time, so if anybody can write in the comments how to do it - I'll appreciate it.****\n\nMeanwhile I'm doing my 1st update for this post: https://stacker.news/items/407777/r/Catcher\n\n**Update 1: 31st of January**\n\nTo prepare myself for tomorrow I wanted to buy bitcoin via Lightning from Coinfinity, as I had done several times before, only to find out that their current limit on Lightning purchases is a total of 50 EUR. That was an unpleasant surprise, as I wanted to avoid on-chain fees, considering I don't plan to use on-chain transactions anyway. Bummer.\n\nSo, I went to HodlHodl to buy sats there (although I had never used it, I heard some good reviews) and was surprised to see that the selling price via SEPA transfer is ~43,000 for BTC, compared to ~39,500 at the current market price.\n\nTo do it the hard way, I would need to buy it on-chain and open a Lightning channel to Bitrefill, as I plan to use them the most. However, opening a 250 EUR channel doesn't really make sense, as by the end of the week, it's going to be empty. Also, I don't have a place at the moment to buy sats via Lightning to get liquidity back on my side.\n\nSince Coinfinity mentioned that this is a temporary issue and they will increase the limit in the future, and Relai is implementing Lightning in the near future, I decided to make a compromise.\n\nI bought 50 EUR worth of sats at Coinfinity - 124,547 sats.\nUsed my existing Lightning balance to have a total of 250 EUR (622,735 sats, 124,547*5 to have same result as if I bought from Coinfinity)\nUsed 200 EUR to buy BTC on-chain to use my fiat balance as planned.\n\nSo, for the 1st week of the experiment, I have 622,735 sats. Let's go!\n\n \N 9336 \N 205636 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 28.1712926783289 0 \N \N f 0 \N 0 14565122 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 13370 2023-03-22 18:17:37.48 2025-03-29 22:39:47.613 How to use loan shark for non-custodial derivatives (ie longing or shorting BTC) Suppose a bitcoin bear thinks bitcoin will fall in price from $40k to $10k at some point during the coming year, and then bounce back up a little to $15k. He can use loan shark to profit from his prediction.\n\nFirst, he must find a loan offer with a 1 year term, a low collateral requirement, and a low interest rate. For this example, I will assume the collateral requirement is 102% and the interest rate is 1%. I will also assume the bear wants to put $1000 into his short position.\n\nFor this to work, the shorter needs to get 0.025 BTC from the lender in a contract with terms similar to the above, so he must deposit 0.025 * 1.02 as collateral, i.e. 0.0255 BTC, worth $1,020. He should therefore buy 0.0255 BTC for $1,020 and deposit it into loan shark for use in the above-mentioned contract.\n\nHe will "get" 0.025 BTC from the lender, which is worth $1,000, and he will owe the lender 0.02525 BTC in 1 year (0.025 * 1.01 = 0.02525). Next, the shorter should sell his 0.025 BTC for $1,000 and wait for bitcoin's price to drop.\n\nWhen its price hits $10k, he should buy 0.0275 BTC. This should cost him $275, leaving him with $725 so far. Next, he should use the 0.0275 BTC to pay off his loan. He will immediately get his collateral (0.0255 BTC) back.\n\nNext, he should wait for bitcoin's price to rise to $15k and sell his 0.0255 BTC for $382.50. When added to his $725, this means he has a total of $1,107.50 at the end of this procedure. He started off with $1,020 and now he has $1,107.50, a profit of $87.50 or 8.6% on his initial investment. \N 5825 \N 13370 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0955076679018 0 \N \N f 0 \N 0 4008086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7033 2023-01-20 00:38:36.461 2025-03-29 22:39:47.909 Ocean Mining enable BOLT12 for Lightning payments \N https://x.com/ocean_mining/status/1784983835492360312 14663 \N 7033 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.3251033370173 0 \N \N f 0 \N 0 124884320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2506 2022-10-14 09:36:38.847 2025-03-29 22:39:47.915 reality for the young multicoiners: hold 20-30 years For any young man or woman (20s or early 30s) who somehow has been able to stack multiple full coins in this era:\n\nIf we are right about hyperbitcoinization, if such a young person were to simply hold securely their keys for 20 years (the length of a typical "career"), that person would basically end up with a net worth of several hundreds of millions, and depending on the number of coins, multi-billions of today's dollars comparison. \n\nNo above-average "successful" person, except for the EXTREMELY successful, lucky, and HARD WORKING entrepreneurs of the world could ever expect to achieve that net worth from 20 years of blood, sweat, risk, and failures. For a young multicoiner, that status is practically guaranteed if they would simply treat hodling like their job/business for those 20 years and live below their means the whole time. \n\nWhat is the difference? The entrepreneur in the fiat world would work his ass off for 20+ years building a biz from scratch and possibly reach a billionaire status by making it a massively successful business. The multicoiner could simply hold and work enough to meet their ends each month of personal spending, that's it. A drastic difference in required effort and skill, but the end result is the same. \n\nAnd that's just the expectation over 20 years. Imagine "working" (hodling) for 30 years, as some careers last even that long. A young person could ABSOLUTELY expect to be not only a multibillionaire, but likely equivalent of a decabillionaire (tens of billions) at the end of the holding period if they radically preserve their stack for the whole period. After 30 years, good luck spending even 1% of your net worth within your lifetime. \n\nIt is so wild the potential of this radical transitionary time into absolutely scarce money. Part of me is literally in disbelief that it's even possible to do this, but I don't logically see any failure of the bitcoin system...\nIncredible times... Hold.... Take care of your health and longevity. Set up multisig custody for large stacks... Educate your loved ones as much as is possible... \N 4064 \N 2506 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.3312211571926 0 \N \N f 0 \N 0 49074975 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3290 2022-10-29 10:10:43.166 2025-03-29 22:39:47.916 SN Security Feature Suggestion: Invalidate all sessions If this is also a feature that already exists, then this post will be worthwhile for me. \n\nAs far as I can tell, there's not a button to manually invalidate all active sessions, and I'd highly recommend that. It's not a security vulnerability per se, but I'd say it's important to put in the queue. \N 651 \N 3290 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.42144642485142 0 \N \N f 0 \N 0 173265289 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410712 2025-02-20 16:28:35.244 2025-03-29 22:39:47.613 UtxoPocket is a Bitcoin watch only wallet that connects to Electrum. UtxoPocket is a desktop application that you'll be able to download and run locally against your node, introduce a xpub, and feed the beast!\n\nThe demo uses test data and it is not functional. What you see is mock data, although locally it is fully functional. It is still a work in progress and has some bugs, but hope the idea is well understood. I want to do one more month of work and open the repository to make it open source. When I'll open the repository, I'll share here.\n\nAttached below some screenshots in the case you do not want to visit the URL; any feedback welcome - please note, this is designed for desktop, I have not worked responsive and mobile looks a mess.\n\n![](https://m.stacker.news/54396.webp) ![](https://m.stacker.news/54397.webp) ![](https://m.stacker.news/54398.webp) ![](https://m.stacker.news/54400.webp) ![](https://m.stacker.news/54401.webp) ![](https://m.stacker.news/54402.webp)\n\nDemo: https://utxopocket.devsigner.xyz/ https://utxopocket.devsigner.xyz/ 4819 \N 410712 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.3689763880963 0 \N \N f 0 \N 0 54073591 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431301 2025-03-09 16:19:25.543 2025-03-29 22:39:47.613 What does it mean to be open source? via @moneyball on [X](https://x.com/moneyball/status/1736957074695962843?s=20)\n\nWhat does it mean to be open source? When I first got involved with open source bitcoin in 2017, I thought this was a simple question. However, it is far more nuanced that I rarely see discussed. There are at least 9 different gradations ... am I missing any?\n\n1. Source available. This one is straight forward.\n\n2. Permissive license. Does the license restrict commercial use or is it free open source like MIT License?\n\n3. Working in the open. That is, does a team work for months or years in private only to publish code for major releases? Or are issues and PRs in a public tracker with public discussion on a daily basis?\n\n4. General vs. specific design. Did the team that created the software design it with only their specific application in mind? Or did they design it general enough to accommodate many types of future users?\n\n5. Supporting external contribution. Does the core team prioritize and review external contributors PRs?\n\n6. Recruiting external contributors. Does the core team embrace and champion new contributors who aren't affiliated with the core team's organization?\n\n7. Self-sufficient funding. Does the core team proactively seek external funding sources for development of the project so that the project can survive even if the founding entity abandons it?\n\n8. External maintainers. Does the core team attempt to grow external contributors into maintainers and ultimately relinquish some power over the direction of the project?\n\n9. Public good mindset. Does the project's culture allow it to shift from what might initially start as a company project to ultimately a public good? \N 20841 \N 431301 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.73261705335651 0 \N \N f 0 \N 0 161166380 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307976 2024-11-25 14:23:57.933 2025-03-29 22:39:47.911 Testimonial for Satlantis.net Some weeks ago I stumbled over a post here on stacker news about a minecraft server in which one can earn or spend sats and play minecraft. I myself never played minecraft but my three kids have played a lot. So I thought maybe I should tell them and they may have a look at it. Ever since the main topic of the day is always Satlantis. Here are some points which my kids find very worth talking about (the whole day).\n\nAs soon as they joined the server every one of them got an ingame asic miner. The asics need to be fed with emeralds to generate hashrate. Every 10 minutes somebody gets a percentage from the prize pool in sats. The more asics you have that are running (fed with emeralds) the more chance you have of getting lucky and win some sats. One can buy asics from ingame shop for 70k sats. \n\nYou have to claim land so nobody can steal your stuff or destroy your buildings. There are a lot of minigames, for example jump and run, chess, elytra race, clash of mobs and so on. If you are the best elytra racer in a week you will get an asic for free. There have also been at least 2 events in which items will drop from above in the pvp area. The highest price items have been asics and virtual credit cards and elytras with mending. \n\nIf you join a clan with your friends your combined hashrate counts as mining pool and if the clan gets lucky every body in the clan gets a payout relative to one's asics amount.\n\nAs mentioned above the asics need to be fed with emeralds, but those you can only get from the ore trader, minigame prizes or trading with other players. The ore trader pays you with emeralds for the ores you can get from the mines. The mine is also a PVP zone in which you have to be careful. \n\nSince many players have asked to get an auction house the game has been updated and now they got one which allows to trade more easily. Furthermore the game is updated very often. Bugs also has been fixed very fast.\n\nIf you also want to try it out and join a clan, see for the “Karrotenmann” clan. I heard they are looking for new players.\n\nBy the way, the admin is a nice guy and helps in every situation ingame and discord!\n\nAsk me any further questions, I will discuss them with my kids and answer there after.\n\n\n \N 5779 \N 307976 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 3.87938303839121 0 \N \N f 0 \N 0 2282543 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 139618 2024-03-09 09:09:33.525 2025-03-29 22:39:47.912 Bitcoin and me (Hal Finney) \N https://bitcointalk.org/index.php?topic=155054.0 15843 \N 139618 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6388216416676 0 \N \N f 0 \N 0 81246391 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 189754 2024-06-26 08:41:46.72 2025-03-29 22:39:47.914 Golden Oldies #8 ![](https://m.stacker.news/37064)\n\n### What Is This?\n\n\nThis is an experiment inspired by discussions and posts made by @Undisciplined, @elvismercury and others regarding evergreen content on SN. I’ll dig back into the past to try to locate some great posts that might be worth another read. I plan to make these posts every Tuesday.\n\nHere are this week’s selections:\n\n- [F*ck me the "global south" needs bitcoin](https://stacker.news/items/255238/r/siggy47) by @JoeNakamoto\n\nI’m sure most of you have seen @JoeNakamoto’s great videos either her on SN or elsewhere. This is different. His rant raises important issues and inspired good discussion.\n\n- [I'm Peter Todd, cryptochronomancer/web-π dev, AMA](https://stacker.news/items/84108/r/siggy47) by @petertodd\n\nDo you ever wonder whether it’s worth spending so much time on Stacker News? I don’t. You get an opportunity to engage with some of the great minds of the bitcoin project. @petertodd is pretty much in his own league when it comes to this. Just do a search. Watch an old video from 2014. He bought his first bitcoin for 20 cents. He was arguing about block size with Gavin Andresen when he was 15 years old. You can actually get into your own argument with him here on any given day, on just about any topic. You will probably lose. \n\nHere, he takes some controversial positions that will probably rile up some of us. It’s tough to ignore him, though, since he almost certainly understands this stuff better than we do.\n\n\nComments and suggestions are welcome \N 21771 \N 189754 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.14781360995136 0 \N \N f 0 \N 0 96237858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 24119 2023-05-19 09:57:36.236 2025-03-29 22:39:47.916 Plebdevs Tutorial: React \N https://www.youtube.com/watch?v=EIzuqSV-fK4 1130 \N 24119 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.63508212430948 0 \N \N f 0 \N 0 140565781 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 46058 2023-08-04 16:26:35.388 2025-03-29 22:39:47.917 Some of the best Bitcoin dashboards I found these amazing links today, keeping them here for my reference. \n- https://mempool.space/\n- https://bitfeed.live/\n- https://timechaincalendar.com/ \N 1603 \N 46058 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.9225373439006 0 \N \N f 0 \N 0 94148759 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 38225 2023-07-12 12:21:04.293 2025-03-29 22:39:47.908 The Neo-Communist Mentality In former communist countries, the presence of neo-communists is pervasive in public discourse. They appear on TV screens, dominate social media, and influence everyday conversations. The communist mentality that once prevailed has merely taken on a new form.\n\nIn the neo-communist mindset, as in the communist one, an academic must always rise from the working class. According to neo-communists, it is a "crime" for an academic to descend from an academic father or grandfather.\n\nThe inheritance of knowledge or wealth across generations does not align with neo-communist ideology. In their view, a university professor should never be wealthy but rather a simple son of the people, without any family history or inherited wealth.\n\nIn the neo-communist mentality, the wealthy are always viewed as vile, and anyone who inherits wealth or knowledge is seen as a despicable scoundrel.\n\nNeo-communists, like their predecessors, refuse to understand that humanity's calamities and tragedies did not stem from inherited knowledge, wealth passed down through generations, family crests engraved on rings, or pianos gifted for birthdays.\n\nThe true source of humanity's tragedies is the hatred of others, as Mark Twain aptly observed: "The problem with the left is that most of those who became communists did so out of hatred for the rich, not out of love for the poor."\n\n_Post Scriptum_: Nothing good has come, or will come, from the hatred of inherited knowledge or wealth. \N 9341 \N 38225 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.3949663568167 0 \N \N f 0 \N 0 71504282 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 70725 2023-10-05 07:48:08.179 2025-03-29 22:39:47.91 What’s happening at the Texas border? As a Canadian I’m a step removed from US politics and don’t fully understand the situation developing at the Texas border.\n\nI get that there is a lot of illegal immigration happening, and it seems like Texas wants to stop it.\n\nWhat I’m more curious about is the follow-on effects of this desire to stop illegal immigration against the backdrop of a White House administration that doesn’t seem to care about illegal immigration.\n\nI saw Texas Governor Greg Abbott’s [letter](https://twitter.com/GregAbbott_TX/status/1750235544951349275) yesterday, and would love to hear more from stackers in Texas on the sentiment right now.\n\nAfter reading Governor Abbott’s letter I heard some folks on Twitter calling for the beginning of another civil war, which seems like a big escalation… but maybe I just didn’t fully appreciate the scope of the problem.\n\nA few questions for stackers:\n\n- If you were in charge of setting immigration policy and defending America’s border, what would you change?\n- What is the most likely path towards resolving the increase in illegal immigration in America?\n- If you’re based in TX/CA/AZ/NM, have you felt/seen the impact of the recent illegal immigration?\n- If so, can you elaborate on the effects? \N 8416 \N 70725 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.9626019516115 0 \N \N f 0 \N 0 76671403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 219387 2024-08-23 10:51:28.898 2025-03-29 22:39:47.914 Crypto companies raised over $115 million to influence US elections this cycle > The cryptocurrency industry has been throwing money into politics unlike ever before, and that’s even after political donations from the industry skyrocketed in 2022. The super PACs they're backing have raised more than $137 million already. Over $117 million of that has been raised by Fairshake, a super PAC funded by Coinbase, Ripple, Jump Crypto, Circle, Kraken, and others. That amount puts Fairshake at #3 on OpenSecrets’ list of super PACs by amount raised, following just behind the Senate Majority PAC at #2, and Ron DeSantis’ Never Back Down PAC at #1. Two other cryptocurrency-focused super PACs, the conservative “Defend American Jobs” and liberal “Protect Progress”, have raised roughly another combined $10 million — both funded by nearly identical donations from Coinbase, Ripple, and Andreessen Horowitz. As noted in a report by Public Citizen, much of this money is coming from the companies directly, taking advantage of the Citizens United decision to enable unlimited corporate political spending.\n\nI hope crypto casinos are lobbying to protect things that gives these assets value to begin with (privacy, self-custody), but why would they? https://www.citationneeded.news/2024-cryptocurrency-election-spending/ 18829 \N 219387 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.55275351975735 0 \N \N f 0 \N 0 178875266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 22174 2023-05-11 22:01:26.233 2025-03-29 22:39:47.915 What are the best resources for learning about Web of Trust? I'm becoming increasingly convinced that [the next big thing after Bitcoin](https://stacker.news/items/461811) is Decentralized Identity and Web of Trust. I know that @k00b has [written](https://stacker.news/items/8349) and [spoken](https://www.youtube.com/watch?v=9d0nzwMmrTk) about using WoT on Stacker News. And @brugeman has [written](https://trust.nostr.band) about using it on nostr.band. But that's all I've really seen. \n\nWho else is experimenting with building a web of trust? Particularly around Nostr? It seems like building a naive WoT based on who follows whom would be a good starting point. \n\nWhat other resources would you recommend to learn more? Thanks 🙏 \N 16834 \N 22174 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.3106909008915 0 \N \N f 0 \N 0 173867628 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 146712 2024-03-21 14:31:38.826 2025-03-29 22:39:47.916 Eric Weinstein on Communism and the Democrats Thoughtful post from Weinstein.\n\nhttps://x.com/ericrweinstein/status/1814072017618100574?s=46\n\n“ For the moment, imagine that you see all DEI as Marxist and Maoist. Imagine that you see AOC and the squad as communists. Imagine that what you see in terms of 'social justice' or 'wokeness' or 'Postmodernism' or 'Gender affirming healthcare' or 'Palestinian Genocide' or 'Soros open society initiatives' or 'progressive DAs' or 'Anti-Whiteness' or 'defund the police' is straight up precursor to *violent* revolutionary Marxism.\n\nThe people crossing over to the cause of Trump with enormous checkbooks see this EXACTLY the way I have described in the above paragraph. You can pretend that this isn't so. Maybe they won't admit it to you or do so in public. But the stark truth of it is that what is driving a lot of surprising support for Trump and the Republicans has nothing to do with either. It's not all about Trump. Or the GOP. ”\n\nWe have the same problem in the UK with Labour. And I was in the past a Leftist and supporter of what I considered ‘left wing’ parties. \n\nIt was Covid that started to wake me up to the sinister underbelly of left wing politics when I was shocked and dismayed to see my supposedly liberal friends and family unquestionably support the lockdowns, vaccines, mandates, surveillance and other types of totalitarian measures. \n\nI realised the deceptive but powerful communist rhetoric that often well meaning but naive people fall for. And when you try to explain the deception directly to them they cannot see it and stare blankly back as if under some kind of spell or brain washing. \n\n![](https://m.stacker.news/40431) \N 12779 \N 146712 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.9669473574255 0 \N \N f 0 \N 0 60676090 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 187746 2024-06-21 16:18:50.503 2025-03-29 22:39:47.914 Erik Voorhees Partners With Somali Pirates To make Decentralized Stock Exchange Link: https://www.bugle.news/erik-voorhees-partners-with-somali-pirates-to-create-decentralized-stock-exchange/\n\nErik Voorhees is reported to be partnering with Somali Pirates in order to create a decentralized stock exchange, allowing individuals to buy stock in different pirate crews. This plan sets to give Somali Pirates a new stream of funding as they are now able to issue globally tradable security tokens on the Solana Blockchain.\n\nPirates have traditionally been excluded for the banking system, causing extreme inequality. In the past they have primarily used gold, but have been looking for digital alternatives.\n\nThis new pirate stock exchange follows a trend of individuals issuing increasingly more scandalously and controversially named tokens on the Solana Blockchain. The Pirates are finding in their analysis of the market, the key is to come up with the most offensive token names possible.\n\n"If the ADL is not trying to censor your token, your name just isn't controversial enough to get any sizable investment. Solana is essentially monetizing the most vile things can come up with on 4chan," A blockchain expert on LinkedIn told the Bugle.\n\nThe ADL is currently trying to attack an individual named Gege that has reportedly launched a very offensively named token. The value of the token skyrocketed following the news of the ADL's scrutiny.\n\nBlocksteam is reportedly upset with Voorhees for not attempting to build the exchange on the Liquid network, which is looking to expand more into security tokens. Voorhees responded to their frustrations by saying, "Samali Pirates aren't SEC compliant so we need something better than a federated side chain ran by compliant companies."\n\nThe Statist Bitcoiner Association shared that they would like to partner with the SEC to investigate Voorhees and the pirates for security violations. They also shared via public statement, "It is very concerning to see anyone involved with Bitcoin and shitcoins not complying with very important security laws. These security laws keep securities markets secure and allow for stable national security. We cannot have Somali Pirates violating law and order or else we will be a sequel to Black Hawk Down. \N 760 \N 187746 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.9968285476774 0 \N \N f 0 \N 0 3398566 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 107705 2024-01-04 01:40:01.517 2025-03-29 22:39:48.156 Golden Oldies #6 ![](https://m.stacker.news/37064)\n\n### What Is This?\n\n\nThis is an experiment inspired by discussions and posts made by @Undisciplined, @elvismercury and others regarding evergreen content on SN. I’ll dig back into the past to try to locate some great posts that might be worth another read. I plan to make these posts every Tuesday.\n\nHere are this week’s selections:\n\n- [How to Live a Nomad Life with Bitcoin](https://stacker.news/items/287984/r/siggy47) by @Natalia\n\n@Natalia has made many great posts on SN, as I’m sure most of you know. In my opinion this one is among her best. Here you can find some great suggestions for living on your own bitcoin standard while travelling the world.\n\n\n- [Bitcoin in El Salvador: An honest live report.](https://stacker.news/items/161607/r/siggy47) by @CarlBMenger\n\nHere is an information packed post about El Salvador by @CarlBMenger. This account produces some of the best El Salvador content, and this one is a good example. This isn’t a puff piece. He keeps it real, reporting the good and the bad. \n\n\n\nComments and suggestions are welcome. \N 2061 \N 107705 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.1569054845031 0 \N \N f 0 \N 0 181639097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 182366 2024-06-09 14:37:38.921 2025-03-29 22:39:48.157 Fountain 1.1.2 - Many Nostr Bug Fixes and Improvements **Fountain 1.1.2 is now live on iOS and Android!**\n\nLoads of bug fixes and improvements around the nostr integration:\n\n- fix cpu + memory performance issues affecting playback\n- fix library cache issues affecting playback\n- fix for new boosts appearing correctly on episode page\n- improve nostr reaction + reply caching\n- group multiple reposts in home feed to avoid duplicates\n- fix promotions in home feed\n- fix for ipad sharing\n- fix mark as played\n- improve nostr connect success message\n- open fountain content text links in the app\n\n---\n\nMassive thanks to everyone for continuing to submit feedback - please feel free to DM anytime or send me an email! https://primal.net/e/note1ju9p34xa3uzmm5gjd8hfceya6k5vscuc2he56n7l2kw06uaez6ksgm60h5 13798 \N 182366 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.68153151786304 0 \N \N f 0 \N 0 152698274 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 192860 2024-07-01 18:00:03.235 2025-03-29 22:39:48.16 Can we make 2-of-3 Multisigs a better user experience? In a single sig wallet, it's sufficient simply to know the 12 or 24 word seed phrase to recover the funds. This makes for a really nice user experience, since it's relatively easy to write them down on paper.\n\nI thought that a 2-of-3 multisig was similarly simple, but it turns out that's not the case. Intuitively, as a user, I should only need 2 of the 3 seed phrases to recover any funds, but in reality, at least on Blue Wallet, you also need a "backup coordination file," which consists of all 3 public keys, the derivation path, and the script format. Without it, your funds are lost if you lose one of the 3 seeds.\n\nThis isn't a great user experience, especially if you're trying to explain a multisig vault to one of your grandparents. Writing seed phrases down on paper is easy for most people to understand, but having to download a bespoke file and securely save it on a thumbdrive makes everything more complicated, and frankly unintuitive. This inevitably scares people off, I fear, from what is otherwise a great way to make people more comfortable with cold storage.\n\nKeeping the backup file on a third party provider, like Unchained, isn't really a solution, because at the end of the day, Unchained still recommends that you backup the data yourself, which is confusing and somewhat cumbersome.\n\nThe only long-term robust solution I think is for the backup file to be stored onchain, ideally in an encrypted fashion such that you only need 2 of the 3 private keys to recover the data. This could be done relatively cheaply in witness data, like a taproot inscription, and it would mean that the average user only ever needs to worry about maintaining access to 2 of the 3 seeds. In the event the multisig vault needs to be recovered, the user only needs to provide 2 seeds, and perhaps a date range of when the vault was created, and software can scan the relevant witness data and recover the file.\n\nDo you think a scheme like this could work? Curious if others find this to be a relevant problem. \N 19637 \N 192860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5015370240793 0 \N \N f 0 \N 0 249814856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436585 2025-03-13 17:21:51.92 2025-03-29 22:39:48.904 Wasabi v Samourai wallets So if anyone's been following the saga on twitter between Wasabi and Samourai you know it's pretty bad. Such infighting is not good for the ecosystem in my opinion because the drama isn't so much about the tech (though there is that too), it's personal attacks on each of the founders. \n\nI wasn't too familiar with how far back this actually goes.. but apparently the founder of wasabi (@nopara73) doxxed Will (a founder of Samourai) **before Samourai received a significant amount of funding in 2019. \n\nhttps://www.coindesk.com/markets/2019/06/03/samourai-wallet-raises-first-funding-round-in-fight-against-bitcoin-surveillance/\n\nThen there is mudslinging on the actual tech as well on Samourai about collecting IP addresses and xpub addresses. Samourai has stated that they have to do this and that if you want to avoid this you must use your own node. \n\nPersonally I prefer Samourai, but thought it was interesting the Trezor is using Wasabi for a coinjoin feature on its application (though it specifically forces you to agree it's not for illegal purposes, etc). Probably will just continue to use Samourai tbh... I'm also involved in the Monero community, this fighting is very much similar to the die hards of XMR and Zcash communities which I stay away from. \N 16948 \N 436585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8165825865473 0 \N \N f 362172727 \N 2 9048495 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:09:48.275 f \N \N \N 0 0 0 0 2 0 0 214202 2024-08-13 10:42:12.283 2025-03-29 22:39:47.914 Lightning privacy tips for beginners? New node runner here. I am running Bitcoin and Lightning, connecting to each over Tor. I have only basic custodial lightning skills and looking to level up.\n\nI linked Alby and Zeus to my node with LNC.\n\nI would like to learn to use Lightning with privacy in mind. \n\nAny steps I should take to avoid leaking my IP / public key / identity to peers or bad actors?\n\nAny 'basic privacy rules' for managing, receiving or sending Lightning funds I should know? \n\nCan just send some sats to my node (via Alby web extension) from a voucher or custodial wallet - and start zapping? Or do I have to make on-chain transactions and open channels to use my node efficiently?\n\nthanks! \N 4177 \N 214202 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.9002603095801 0 \N \N f 0 \N 0 236262986 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3891 2022-11-11 19:26:21.892 2025-03-29 22:39:47.916 Account Switching by ekzyis · Pull Request #644 · stackernews/stacker.news Made some progress on [account switching](https://github.com/stackernews/stacker.news/issues/489) and interested in feedback, if there's any.\n\nWith this feature, you'll be able to switch between accounts. @sn and @kr or @hn and me are good examples:\nCurrently, I always create an incognito tab to login as @hn to keep my session as @ekzyis alive. Now, I will be able to login as @hn _within_ my session as @ekzyis. So if there are stackers out there with multiple nyms: this feature is for you!\n\nHowever, keep in mind that in theory, we would be able to link your accounts. We haven't found a secure _and_ private solution. See discussion in the PR.\n\nThe changes in this pull request should also make anon UX better since you no longer will have to logout to post anonymously. You can just switch to anon and then when you're done, you will be able to return to your session.\n\nAgain: _anonymously_ means here you're anonymous in front of other stackers. You're trusting us that we don't log request cookies if you use this feature to post as @anon. If you logout and then post as @anon, the only way for us to find out who you are is to compare IP addresses. Which is always something you trust services to not do. Or simply use a VPN.\n\nFor video showcase, click [here](https://files.ekzyis.com/public/sn/account_switching_001.mp4). https://github.com/stackernews/stacker.news/pull/644 4692 \N 3891 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5495702175545 0 \N \N f 0 \N 0 127349572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 24585 2023-05-21 03:25:11.922 2025-03-29 22:39:47.917 Mt Gox Distributions and German Gov Selling is good for Bitcoin **Mt Gox Distributions and German Gov Selling is good for Bitcoin**\n\nWe have some new stackers around, so for anyone that needs to hear this:\n\nSentiment around Bitcoin right now is in the toilet but that's only amongst people who care about short term fiat price. Yes, price is dropping as we deal with supply overhangs from Mt Gox distributions, German government selling and miners restructuring post halving. \n\nI would argue this is all good for Bitcoin. Hopefully we get some US gov selling too. \n\nJust like with GBTC coins, all these coins will find homes in stronger, more resolute hands. Will the price continue to trend downward while this happens? Probably, but if you are in Bitcoin for the long term stacking some discounted sats isn't a bad thing. Long term, clearing these supply overhangs and the FUD associated with them is super bullish for bitcoin. \n\nSo, ignore the short term fiat price and focus on the long term track record and benefit Bitcoin can bring to the world. Bitcoin is not dead, it is not "over" (maybe for some shitcoins). Everything is good for bitcoin. Every challenge it faces makes it stronger and makes the conviction of bitcoiners stronger as well. \n\nSats for all,\nGR \N 20026 \N 24585 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.0565395987215 0 \N \N f 0 \N 0 135562153 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 179685 2024-06-04 00:28:00.971 2025-03-29 22:39:48.156 Legend of the Snail | 11/26 participants left | 7 days until next KO | $87,583 ```\n+================================x\n| Welcome to day 577 of the |\n| _ _ _ _ |\n| | |__ (_) |_ ___ ___ (_)_ __ |\n| | '_ \\| | __/ __/ _ \\| | '_ \\ |\n| | |_) | | || (_| (_) | | | | | |\n| |_.__/|_|\\__\\___\\___/|_|_| |_| |\n| |\n| 100k bet! |\nx================================+\n```\n\n| Stat | Value | Change |\n| --- | --- | --- | \n| Last elimination update | https://stacker.news/items/759328 | | \n| Date | 2024-11-12 | +4 days |\n| Participants | 11/26 | +1 |\n| **Prize Pool** | **351,423 sats** | **+13,561 sats** |\n| USD/BTC | $87,583.00 | +14% |\n\n![](https://m.stacker.news/62324)\n\n| Nym | Day | Paid | Elimination Date | Eliminated |\n| --- | --- | ---- | ---------------- | ---------- |\n| @orthwyrm | 260 | X | 2024-02-18 | X |\n| @mango | 359 | X | 2024-04-11 | X |\n| @Alby | 365 | X | 2024-04-21 | X |\n| @siggy47 | 380 | X | 2024-05-18 | X |\n| @CheezeGrater | 418 | X | 2024-06-07 | X |\n| @ekzyis | 420 | X | 2024-06-11 | X |\n| @0fje0 | 427 | X | 2024-06-21 | X |\n| @phatom | 440 | | 2024-07-21 | X |\n| @486DX2 | 486 | X | 2024-08-20 | X |\n| @carlosfandango | 501 | X | 2024-09-07 | X |\n| @Lux | 522 | X | 2024-09-20 | X |\n| @Radentor | 526 | X | 2024-10-01 | X |\n| @OneOneSeven | 544 | X | 2024-10-20 | X |\n| @davidw | 564 | X | 2024-11-02 | X |\n| @nikotsla | 570 | X | 2024-11-12 | X |\n| @BitcoinIsTheFuture | 584 | X | 2024-11-19 | |\n| @wize123 | 584 | X | 2024-11-20 | |\n| @LaserStack | 587 | X | 2024-12-02 | |\n| @south_korea_ln | 608 | X | 2024-12-18 | |\n| @Carresan | 619 | X | 2025-01-10 | |\n| @Undisciplined | 653 | X | 2025-01-28 | |\n| @grayruby | 655 | X | 2025-02-03 | |\n| @gnilma | 666 | X | 2025-02-26 | |\n| @Longtermwizard | 700 | X | 2025-05-09 | |\n| @Bitman | 810 | X | 2025-07-04 | |\n| @jakoyoh629 | 813 | X | | |\n\nNext elimination: @BitcoinIsTheFuture (7 days remaining)\n\n_Want to participate? Click [here](https://stacker.news/items/363233) for more information._ \N 5455 \N 179685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1336659265398 0 \N \N f 0 \N 0 122323925 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441782 2025-03-18 09:38:11.017 2025-03-29 22:39:48.165 STACKERMAN [STACKERMAN](https://stackerman.onrender.com/)\n\n![](https://m.stacker.news/47337)\n\nHey, I just did this [tutorial](https://zbd.dev/courses/build-bitcoin-game) that ZBD made to teach you how to integrate their api into games. This one is obviously just me trying a little harder to get sued by sn. Soon though...I'm going to see if I can actually make a pro game! Woot!\n\nIn the meantime, [tear down that paywall](https://www.youtube.com/watch?v=WX00QkvK-mQ) and get some sats playing [STACKERMAN](https://stackerman.onrender.com/). You can play as a rootin' tootin' cowboy or a node runnin' educatin' swearin' up a storm space wizard. Of course, the npcs are the feds.\n\n![](https://m.stacker.news/47340)\n\nTag me if the account runs out of sats and I'll try to top it off. I'm hoping that the paywall can cover the payouts though. Also note that you need at least 10 sats to cash out.\n\nhttps://stackerman.onrender.com/ \N 20701 \N 441782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.511510415863 0 \N \N f 0 \N 0 96085562 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 249093 2024-09-27 15:18:47.947 2025-03-29 22:39:48.168 Cory Doctorow: Writing in the Age of Distraction Cory wrote this [back in 2009](https://locusmag.com/Features/2009/01/cory-doctorow-writing-in-age-of.html), when we might naively have thought we'd achieved "peak distraction," but they seem like some good tips for folks today as well.\n\n*Writing in the Age of Distraction*\n\nWe know that our readers are distracted and sometimes even overwhelmed by the myriad distractions that lie one click away on the Internet, but of course writers face the same glorious problem: the delirious world of information and communication and community that lurks behind your screen, one alt-tab away from your word-processor.\n\nThe single worst piece of writing advice I ever got was to stay away from the Internet because it would only waste my time and wouldn't help my writing. This advice was wrong creatively, professionally, artistically, and personally, but I know where the writer who doled it out was coming from. Every now and again, when I see a new website, game, or service, I sense the tug of an attention black hole: a time-sink that is just waiting to fill my every discretionary moment with distraction. As a co-parenting new father who writes at least a book per year, half-a-dozen columns a month, ten or more blog posts a day, plus assorted novellas and stories and speeches, I know just how short time can be and how dangerous distraction is.\n\nBut the Internet has been very good to me. It's informed my creativity and aesthetics, it's benefited me professionally and personally, and for every moment it steals, it gives back a hundred delights. I'd no sooner give it up than I'd give up fiction or any other pleasurable vice.\n\nI think I've managed to balance things out through a few simple techniques that I've been refining for years. I still sometimes feel frazzled and info-whelmed, but that's rare. Most of the time, I'm on top of my workload and my muse. Here's how I do it:\n\n* Short, regular work schedule\n\nWhen I'm working on a story or novel, I set a modest daily goal — usually a page or two — and then I meet it every day, doing nothing else while I'm working on it. It's not plausible or desirable to try to get the world to go away for hours at a time, but it's entirely possible to make it all shut up for 20 minutes. Writing a page every day gets me more than a novel per year — do the math — and there's always 20 minutes to be found in a day, no matter what else is going on. Twenty minutes is a short enough interval that it can be claimed from a sleep or meal-break (though this shouldn't become a habit). The secret is to do it every day, weekends included, to keep the momentum going, and to allow your thoughts to wander to your next day's page between sessions. Try to find one or two vivid sensory details to work into the next page, or a bon mot, so that you've already got some material when you sit down at the keyboard.\n\n* Leave yourself a rough edge\n\nWhen you hit your daily word-goal, stop. Stop even if you're in the middle of a sentence. Especially if you're in the middle of a sentence. That way, when you sit down at the keyboard the next day, your first five or ten words are already ordained, so that you get a little push before you begin your work. Knitters leave a bit of yarn sticking out of the day's knitting so they know where to pick up the next day — they call it the "hint." Potters leave a rough edge on the wet clay before they wrap it in plastic for the night — it's hard to build on a smooth edge.\n\n* Don't research\n\nResearching isn't writing and vice-versa. When you come to a factual matter that you could google in a matter of seconds, don't. Don't give in and look up the length of the Brooklyn Bridge, the population of Rhode Island, or the distance to the Sun. That way lies distraction — an endless click-trance that will turn your 20 minutes of composing into a half-day's idyll through the web. Instead, do what journalists do: type "TK" where your fact should go, as in "The Brooklyn bridge, all TK feet of it, sailed into the air like a kite." "TK" appears in very few English words (the one I get tripped up on is "Atkins") so a quick search through your document for "TK" will tell you whether you have any fact-checking to do afterwards. And your editor and copyeditor will recognize it if you miss it and bring it to your attention.\n\n* Don't be ceremonious\n\nForget advice about finding the right atmosphere to coax your muse into the room. Forget candles, music, silence, a good chair, a cigarette, or putting the kids to sleep. It's nice to have all your physical needs met before you write, but if you convince yourself that you can only write in a perfect world, you compound the problem of finding 20 free minutes with the problem of finding the right environment at the same time. When the time is available, just put fingers to keyboard and write. You can put up with noise/silence/kids/discomfort/hunger for 20 minutes.\n\n* Kill your word-processor\n\nWord, Google Office and OpenOffice all come with a bewildering array of typesetting and automation settings that you can play with forever. Forget it. All that stuff is distraction, and the last thing you want is your tool second-guessing you, "correcting" your spelling, criticizing your sentence structure, and so on. The programmers who wrote your word processor type all day long, every day, and they have the power to buy or acquire any tool they can imagine for entering text into a computer. They don't write their software with Word. They use a text-editor, like vi, Emacs, TextPad, BBEdit, Gedit, or any of a host of editors. These are some of the most venerable, reliable, powerful tools in the history of software (since they're at the core of all other software) and they have almost no distracting features — but they do have powerful search-and-replace functions. Best of all, the humble .txt file can be read by practically every application on your computer, can be pasted directly into an email, and can't transmit a virus.\n\n* Realtime communications tools are deadly\n\nThe biggest impediment to concentration is your computer's ecosystem of interruption technologies: IM, email alerts, RSS alerts, Skype rings, etc. Anything that requires you to wait for a response, even subconsciously, occupies your attention. Anything that leaps up on your screen to announce something new, occupies your attention. The more you can train your friends and family to use email, message boards, and similar technologies that allow you to save up your conversation for planned sessions instead of demanding your attention right now helps you carve out your 20 minutes. By all means, schedule a chat — voice, text, or video — when it's needed, but leaving your IM running is like sitting down to work after hanging a giant "DISTRACT ME" sign over your desk, one that shines brightly enough to be seen by the entire world.\n\nI don't claim to have invented these techniques, but they're the ones that have made the 21st century a good one for me.\n \N 12738 \N 249093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.46968756651588 0 \N \N f 0 \N 0 14228828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 194578 2024-07-04 15:51:09.229 2025-03-29 22:39:47.914 SN release: builtin remindme bot, single auth warning, bug fixes The major thing here is the `@remindme` bot via @WeAreAllSatoshi. The syntax is identical to `@delete` but instead of deleting an item, it reminds you by sending you a notification at the time you set.\n\nThis release also causes a warning to show on the settings page when you only have a single auth method via @t0m.\n\nAlso, territory subscriptions weren't showing an indicator on notifications (now they do) via @ek. \n\nThere's also a handful of bug fixes that aren't worth mentioning.\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\n@ek and I have been spending most of our time on wallet stuff and we should have some releases around that soon. After we get the wallet to a certain point we'll go hard on all the other stuff we've been neglecting.\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 6.3m sats to 23 contributors for 100 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/540701\nQ1 recap and Q2 roadmap: https://stacker.news/items/506566\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 20381 \N 194578 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 11.8990175490381 0 \N \N f 0 \N 0 47433072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436429 2025-03-13 14:55:41.35 2025-03-29 22:39:47.916 How to teach a child about bitcoin? Is there a guide on how to teach children about bitcoin? In schools they rarely talk about economics and if they do, they practically talk about teenagers. Education in South America is crap, for that reason my husband and I do not leave our daughter's education in the hands of the state. She goes to school because homeschooling is not legal in this country, but that does not prevent us from instilling in her the knowledge that we want her to learn, such as freedom of expression (with respect), self-defense and economics according to her age and according to the doubts she may have about it. Last week my daughter (7 years old) asked me what the word economics means, I explained it to her in a simple way and after processing it she said: "In my school they don't teach me the things they explain to "Richie Rich", but I have you (my husband and I) to teach me." That comparison made me laugh a lot.\n\nIn 2021, Bitcoin came into our lives to change the way we think and live. By that year, my daughter was 4 years old and she always saw my husband on the laptop looking at the graphs of Bitcoin, gold, among others. She would approach him out of curiosity to ask what it was. She was very young so my husband would explain it to her in a way that she could understand.\n\nOne day, while playing with her Barbies, she tells me: look mom, these are dad's (Ken) graphics:\n![](https://m.stacker.news/50883)\nIt is supposed to be a screen they use in hospitals but she has never seen it like that, she says it is a computer with graphics.\n\nAnother day, my daughter was doing crafts with my husband, they made a flyer with applications (made of cardboard) and these were the ones she decided to "download": SN, McDonald's, WhatsApp, YouTube kids and Facebook (I didn't understand why if we don't use that)\n![](https://m.stacker.news/50885)\n\nYes, she knows about SN because she hears us talk about it, she asks us questions and we answer her. I like that she is interested in learning about these topics and I want to take advantage of that curiosity to teach her. \N 21172 \N 436429 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.18677971607252 0 \N \N f 0 \N 0 61776471 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 103076 2023-12-25 12:11:24.205 2025-03-29 22:39:48.155 The rich are getting second passports, citing risk of instability \N https://www.cnbc.com/2024/04/10/rich-americans-get-second-passports-citing-risk-of-instability.html 897 \N 103076 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.9449180659761 0 \N \N f 0 \N 0 58545568 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 88329 2023-11-20 21:05:25.42 2025-03-29 22:39:48.157 Do you keep a budget? So the financial literacy team from one of the largest banks in my country came over to deliver an assembly talk on financial literacy. Just as you might have expected, they shared about the need to save, spend and share your money. My teenagers were suitably engaged.\n\nWhat struck me as interesting was how they brought up Kakeibo, the Japanese art of budgeting money. Japanese people used to meticulously plan a budget according to pertinent spending categories and record by hand every transaction. That way, they could easily determine where their money was going and whether they needed to cut down on their purchases so that they could achieve their saving goals. \n\nMy wife doesn’t record down by hand her expenses, but she uses an app. There will be hell to pay if I throw away her supermarket receipt by mistake. She will feel as if her world runs out of equilibrium - I’m not exaggerating.\n\nOn the other hand, I don’t keep a budget. I just make sure that I save my desired amount of money and pay all my bills on time every month. I also keep a buffer just in case unexpected expenses occur.\n\nI downloaded a budgeting app when my son was born. But I gave up using it after 2-3 months because it was just so tedious lol. Also, I’m quite a careful spender. I don’t earn that much but I’m usually in control of my finances.\n\nSo do you keep a budget?\n\n \N 5195 \N 88329 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.0156191099546 0 \N \N f 0 \N 0 56450827 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 224670 2024-09-01 08:36:57.335 2025-03-29 22:39:48.168 Stacker News Entrepreneurs I use Stacker News to learn about and discuss bitcoin. The sats I might receive are nice, and I look at it as a sign that others on the site found my input at least somewhat interesting, but I don't see it as a source of income. I realize that is not the case for everyone. As a U.S. citizen living in a fiat dollar world, I value those sats, but the buying power is limited.\nI have recently noticed an increase in accounts that are clearly here with the intent to earn sats. I don't see this as a negative. People from countries whose currencies have been decimated by the fed's "tightening" might find this site as an opportunity. Those sats go a lot further in Nigeria than they do in New York. I have noticed that there are separate accounts that have suspiciously similar content, which could mean one ambitious person is looking to double and triple his or her sat income. That's fine by me. I believe in a free market. I have been directly asked outright for money in a classic scam scenario, but that was an isolated incident. Caveat Emptor. \nI know that earning income on Stacker News was one of the site's goals when it started, and I think it is starting to happen. That's good news.\n\n \N 1142 \N 224670 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1547877550899 0 \N \N f 0 \N 0 92676509 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 29616 2023-06-06 18:49:20.573 2025-03-29 22:39:47.916 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/362134) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 1469 \N 29616 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.7007126888839 0 \N \N f 0 \N 0 113595220 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 160548 2024-04-21 18:30:57.015 2025-03-29 22:39:48.157 The Open Web App Store \N https://store.app/ 21166 \N 160548 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.1809412510656 0 \N \N f 0 \N 0 110332646 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 199147 2024-07-13 12:39:26.852 2025-03-29 22:39:48.159 Ask SN: Where can I find a tool to show me the best nodes to open channel to? I want something that I can log into with my node and it'll show me the best potential peers for my node. I know I've seen this sort of thing before (in various iterations) over the years, but I want to know what you think is the best tool for the job these days.\n\nI could have sworn lightning terminal had such a tool, but now I can't seem to find it. \N 696 \N 199147 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.9580528661429 0 \N \N f 0 \N 0 176662550 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 09:52:20.712 f \N \N \N 0 0 0 0 0 0 0 458279 2025-03-29 06:57:31.887 2025-03-29 22:39:48.166 Mostro. No one can stop you from buying Bitcoin **Mostro**, a bitcoin exchange, emerges as a P2P alternative, focusing on user privacy. It uses the decentralised node network Nostr and Bitcoin's Lightning network, giving it the quality of being "uncensorable" by not relying on a single point of failure. The platform operates through a process where a seller creates an order, and a buyer takes it, facilitating the exchange of bitcoin for local currency.\n\nThe project, still in development, offers two versions: a user-friendly web version for non-specialized users and a terminal requiring specific commands. Mostro has a limit of 20,000 satoshis per transaction and aims to expand with web and desktop versions in the future.\n\nMostro's focus goes beyond simple cryptocurrency exchange; it presents itself as a peaceful response to authoritarian governments. @negrunch, a developer of Mostro, emphasises that the platform can be a valuable tool for people in countries with oppressive governments, providing secure and private transactions. The utility of Mostro is highlighted in situations where financial privacy is crucial, such as in countries with authoritarian regimes or where citizens are identified as opponents.\n\nMostro's operation is based on Lightning network nodes that route payments through generated invoices, and these nodes, called "Mostros," are run by users who receive commissions for their services. The reputation of these nodes is crucial, as users can rate them, incentivising their participation in the platform's payment processing.\n\nFrancisco Calderón, also the creator of the successful Telegram bot, lnp2pbot, highlights the importance of privacy in financial transactions, especially in authoritarian environments. Mostro emerges as an alternative to lnp2pbot, using the decentralised infrastructure of Nostr to avoid potential censorship.\n\nRegarding the future, Mostro aims to grow organically, attracting users through testing, bug correction, and expanding the node network. The decentralised approach allows nodes to compete for commissions, promoting participation without the need to create large companies. The platform presents itself as a free and resilient tool, capable of operating effectively in various contexts, from situations of authoritarianism to privacy issues in developed countries.\n\nIf you want to try the web client, you can do it [here](https://mostro.bilthon.dev/) \N 17291 \N 458279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.794727225515 0 \N \N f 0 \N 0 213197840 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417306 2025-02-26 09:38:10.523 2025-03-29 22:39:48.906 Ideas for using bitcoin to help homeless people Hi stackers, many people in my city (I suspect it's the same in yours) are unfortunately homeless. All this, largely due to banksters, fiat garbage and real estate speculators over the last few years.\n\nFor a moment I thought that maybe printing QR codes with a certain balance programmed to be spent when scanned, they could use them as banknotes, but the problem is obvious, when spending the whole amount, the product should have exactly the same price (sats) which is ridiculously unlikely, plus, local businesses are not timechain friendly yet. \n\nSo I kept thinking about it... in my attempts to help, the only method I see that works and that I am implementing is to redeem gift cards so they can use it in some places, to at least cover their most basic needs. \n\nWith gift cards from supermarkets, clothing stores, computer stores... they have no problem and can redeem. \n\nOn the other hand, accessing other services becomes more complicated, regarding accommodation in hotels and houses for rent, the problem is that it is essential to show your passport and many people do not have legal documents. \n \nThanks for reading, ideas and suggestions are welcome! \N 13076 \N 417306 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.52809164135277 0 \N \N f 216948730 \N 1 17340221 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444506 2025-03-20 00:19:50.492 2025-03-29 22:39:49.152 An attempt at learning how to build something with⚡️Lightning In my previous [post](https://stacker.news/items/174401/r/At), I suggested that more services software should be built with lightning as the incentive system. \n@nerd2ninja suggested that I start building myself, after thinking about it I've decided that I should at least attempt to learn how to do it.\n\n### so what's the purpose of this post?\n\n#### 1.suggestions:\n- I want to ask for suggested resources and advice, Rust was suggested as many lightning projects use it; do you think its the best for this purpose? Or do you have a different suggestion? (And I understand I can google myself, but if there are some suggestions from experienced people it may save me some time).\n\n\n#### 2. To see what your thoughts are on:\n- what decentralised services might have the best impact (search, compute, storage, something else?).\n\n#### 3. As a sanity check, to answer: \n- would any of this actually be helpful? Or am I just beating a dead horse? \n- I'm really a noob, I've only built basic web apps and super dumb bots before, am I going in over my head?\n- These have already been built but you haven't heard of them OP.\n\n#### 4. As a log:\n- I want to give a weekly or bi-weekly log of what I'm learning and the small programs I build along the way, this might be useful for someone later on if I do manage to actually build something.\n\n#### 5. Any other criticisms, eg:\n- you shouldn't post about this stuff here!\n- you are too dumb clearly.\n- `insert useful criticism`\n- you don't have the write attitude, etc...\n\nThanks for reading, now give me some of your thoughts!\n \N 986 \N 444506 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 3.12464686921079 0 \N \N f 234886084 \N 2 14206825 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458249 2025-03-29 06:21:21.651 2025-03-29 22:39:49.24 \N i go with 99, hoping someone else gets the satisfaction of tipping 1 sat and seeing an even 100.\n\ni’ve also been thinking about ways to get more people to tip, or at least to change their default tip amounts to something more significant... thoughts on something like this in replacement of the current [tip settings panel](/settings)?\n\n![](https://i.postimg.cc/sXVWjcRv/Screen-Shot-2022-07-21-at-12-34-21-PM.png)\n https://example.com/ 10311 458244 458122.458134.458211.458237.458242.458243.458244.458249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.38745722643631 0 \N \N f 0 \N 0 246157446 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 6274 2023-01-05 19:43:37.101 2025-03-29 22:39:47.916 Convince me I am wrong about these bitcoin themes I see a lot of themes relating to bitcoin on this sight that I just don't buy. \n\nFirst; to not consider the purchasing power of bitcoin. This is the 1 sat = 1 sat or 1 btc = 1 btc theme. Purchasing power of a currency is fundamental so to not consider it is a mistake. Right now, the easiest way to consider its purchasing power is to think about it in terms of dollars. This will never go away until there are generations who didn't get accustomed to the dollar. But again, thinking 1 btc = 1 btc is not even sound in my view. I don't think of dollars this way - I think of $1 in the context of its purchasing power and its marginal value to my overall net worth. \n\nOf course 1 sat = 1 sat in the literal sense, but if that is the only way you think about it I am happy to receive as many sats as you are willing to part with. \n\nSecond; that deflation is good for a currency. I am not talking about a little deflation here or there, I am talking about consistent, year over year deflation. I would argue that this extreme deflation (or increase in purchasing power) of btc is one of its main barriers to ever becoming a currency. I'd be sick to my stomach if I bought a house with btc when its purchasing power was 1/3 of what it is today. Maybe someone has solved this, but what would a mortgage even look like? \n\nI know the austrian economists like to scoff at the idea that people delay purchases when there is deflation, but I certainly would. At least for big things. I am already cheap, knowing I can make money by doing nothing means I would do nothing. \n\nAnyway - I am not going to debate these topics in the sense that I want to convince you to think my way or make counter arguments to your points. I am simply hoping to better understand how the collective SN community thinks about these. \N 18525 \N 6274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7469316380224 0 \N \N f 0 \N 0 27510322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 33775 2023-06-22 10:22:22.909 2025-03-29 22:39:47.917 How @pillar's Operation Saylor ends up? I've been following @pillar since his first post about [Operation Sailor](https://stacker.news/items/47539/r/mo) and I am still following with enthusiasm... some months thinking _"where's pillar?"_\n\nAnyway, **just for fun**... this poll will stay open until the end, so feel free to make your bet! There are no prizes, it's just for fun! \N 902 \N 33775 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.04896456657247 0 \N \N f 0 \N 0 153853654 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 83330 2023-11-07 10:46:00.795 2025-03-29 22:39:48.154 I wasted my day testing BlueSky Prompted by this fine post https://stacker.news/items/766083 by @denlillaapan I decided to see what is happening over on BlueSky. \n\nI haven't had a lot of success with my Stacker Sports Twitter account other than with the bots. I am big with the bots. So, I thought it might be a good time to reach out to a new audience considering this purported "mass migration" to BlueSky. \n\nSo, I created a Stacker Sports account followed some folks talking about Sports and Bitcoin and I was off to the races. I described my initial findings in a comment on the other post as follows: _"so far my interpretation is it is mostly a support group for people who want to light themselves on fire because Trump won."_ I crack myself up. \n\nI did have a nice chat with a fellow Canadian Bitcoiner who is also a nostr fan and is familiar with SN. Maybe that was fruitful. And I had a wonderful chat with a self described Grandma, who is also Canadian and a Blue Jays fan. She isn't a fan of the Blue Jays front office either so we had something to bond over. \n\nWhile BlueSky seemed like a ghost town other than people who wanted to rage about Trump things were looking up. \n\nThen I started talking to people about Bitcoin and everything went downhill. A couple folks were reasonable but everyone else was sure it was a scam and that Trump was going to destroy America with it. One guy told me it is fascist and anti-human and another guy said it is worse than Bernie Maidoff. I was trying my best not to troll these people or call them brainwashed simpletons (that took a lot of effort on my part- see the things I do for Bitcoin and SN?). I shared links from bitcoin.rocks btcmap.org stacker.news and a great article from @anita about Bitcoin and human rights. And what did I get for my troubles- **Labelled as spam**. Initially it was just one comment so I didn't think much of it other than commenting it was a lame way for someone to disagree. And then I realized my post and all my replies from the last few hours (33 total items) had all been **labelled spam**. \n\nSo, my BlueSky orange, purple and SN pilling effort is now over. You may now commence laughing at me for wasting my time. \n\nSats for all,\nGR \N 803 \N 83330 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.6498608083176 0 \N \N f 0 \N 0 67934915 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 103826 2023-12-27 01:57:07.048 2025-03-29 22:39:48.155 What Would Carl Menger Think Of Bitcoin? \n![menger.jpg](https://m.stacker.news/26681)\n\nI read Mises Institute articles more often than I have in years, mainly as a result of @Undisciplined's consistent posting. I found this one, though, on Zero Hedge:\nhttps://mises.org/mises-wire/carl-mengers-overlooked-vital-evolutionary-insights\n\nIt got me wondering what [Carl Menger](https://en.wikipedia.org/wiki/Carl_Menger) , who really began the Austrian School, would have thought of bitcoin, and, more broadly, how (and should) libertarians think of bitcoin as money. \n\nThe article points out that Menger, like Herbert Spencer, did not \n\n> “... belong to the believers in the mathematical method as a way to deal with our science. . . . Mathematics is not a method for . . . economic research.”\n\n\nHe equated economics more as akin to an organism that grew through evolution than as a structure that could be planned or designed through mathematics:\n\n> Just like the human body organism and the numerous “systems” that coordinate it—like the respiratory-nervous-digestive systems—are the result of the actions of some seventy trillion human and bacterial cells but obviously NOT the result of any conscious planning or designing by them. And thanks to the likes of Darwin and a modern understanding of genetics, we can hypothesize how natural selection was the inadvertent “designer” of such systems and complex order. \n\nLudwig von Mises and F.A. Hayek later built upon these ideas. \n\nDrawing on this concept, here is what Menger had to say about money:\n\n> Menger’s vital insight regarding money is that he showed how money, just like language, was an evolved and NOT designed innovation. Since money was an evolved and NOT designed innovation, this also means that all the other vital mechanisms that, taken together, make up the market process like profit-loss calculation and economic competition, they too are largely evolved/undesigned mechanisms.\n\n\nIt's been a while since I got into the weeds of libertarian thought. My bitcoin journey began long after I stopped obsessively reading Austrian economists. \n\nMaybe it's a little late, but I recently started wondering about the number of libertarians who embrace bitcoin. For Austrians, money must clearly evolve, and not be designed. There's no question Satoshi designed bitcoin. It is built on cryptography and certainly involved a good deal of planning. I'm hard pressed to make an argument that it evolved. \n\nPerhaps strict libertarians should see bitcoin more as property than as money?\n\nI'm curious how other libertarians resolve what seems to me to clearly be an issue. \N 17172 \N 103826 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.2488332141231 0 \N \N f 0 \N 0 145607155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434427 2025-03-11 21:50:26.334 2025-03-29 22:39:48.159 PlebLab x ZBD Hackathon II at TabConf Recap 🏆 ![](https://m.stacker.news/60010)\n\nPlebLab x ZBD Hackathon II at TabConf Recap 🏆\n\nHeld at Georgia Tech's Exhibition Hall from October 23-26, 2024, TABConf 6 marked a milestone for the Bitcoin builder community. The conference embraced a spirit of being Technical, Accessible, Community-driven, Open Source, Novel, and Fun, uniting seasoned developers and emerging talents. \n\n🌟 The highlight was the PlebLab x ZBD Hackathon II, running from October 16-24, featuring over $5,000 in prizes! Teams showcased innovative projects, including:\n\nhttps://streamable.com/l/6gtyki/mp4-mobile.mp4\n\nFrostr: Best Hack Overall, leveraging FROST for secure multi-signing.\n\nhttps://streamable.com/l/m0pyou/mp4-mobile.mp4\n\nPepe.vote: Best Nostr Hack, a humorous digital art voting platform.\n\nhttps://streamable.com/l/zut2c3/mp4.mp4\n\nDiscreet Luck: Best Value4Value App, a prediction market integrating Bitcoin and Polymarket.\n\nThanks to the incredible support from sponsors and the contributions of all participants, this hackathon strengthened the community’s sense of purpose and excitement for what lies ahead in Bitcoin development in 2025. Will have the all the full videos for each project out very soon on PlebTV! ⚡️\n\nhttps://streamable.com/l/2lw5ck/mp4.mp4\n\nSee the full write up with the latest drop on our blog.\n\nhttps://www.pleblab.dev/blog-detail/pleblab-x-zbd-hackathon-at-tabconf-bringing-bitcoin-builders-together-for-a-legendary-event\n\nThank you to our sponsors: Fulgur Ventures and Open Source\nJustice Foundation. Absolute Legends 💫\n\nhttps://fulgur.ventures/\n\nhttps://opensourcejustice.org/\n \N 1030 \N 434427 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.0798997926199 0 \N \N f 0 \N 0 215826083 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:55.91 f \N \N \N 0 0 0 0 0 0 0 5705 2022-12-21 17:52:37.588 2025-03-29 22:39:48.165 Bitcoin vs. Bitcoin Spot ETFs: The Great Illusion Has Started. Beware. ![Bitcoin vs. Bitcoin Spot ETFs](https://www.bitcoinpriceinwords.com/bitcoin_vs_bitcoin_spot_etfs_great_illusion.jpg)\n\nIt is quite shocking to see that so many people have completely misunderstood Bitcoin in recent days and hours.\n\nOr maybe these so-called Bitcoiners are finally revealing their true colors by showing that only greed has always guided them...\n\n**With the approval of Bitcoin Spot ETFs, some even believe that the mass adoption of Bitcoin by the general public has started...**\n\nUnfortunately, this is not the case.\n\nEven if these financial products are phenomenally successful, this will in no way mean that mass adoption has started for Bitcoin.\n\nBitcoin aims to free us from these intermediaries who abuse people's trust and make people pay fees that have no reason to be paid.\n\nThe mass adoption of these Bitcoin-based financial products will only be one more obstacle to the separation of Money and State.\n\n**Bitcoin aims to separate Money and the State.**\n\nDo not forget it.\n\nMass adoption will start when the general public understands that these financial products are just a lure used by the powerful at the head of the current system to try to distract them from the real purpose of the Bitcoin revolution.\n\n**Your interest in Bitcoin lies in taking power over the fruit of your labor and your life.**\n\nThis therefore involves **understanding the why of Bitcoin, understanding why you need self-custody, understanding why you need to run a node on the Bitcoin network, ...**\n\nIn short, this means you need to understand that Bitcoin is much more than just another financial investment!\n\nAll of this is much more interesting than spending your day raving about the trading volumes of financial products within a flawed and unfixable system.\n\n**A debt-based system that is at the root of the majority of the ills of our society.** A system that imposes constant censorship on you and which has impoverished you a little more every day for decades.\n\n**Bitcoin Spot ETFs are not a solution to any problem. Bitcoin is the solution. Bitcoin is your way out!** \N 9992 \N 5705 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.97580318043042 0 \N \N f 0 \N 0 245466734 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 07:09:42.097 f \N \N \N 0 0 0 0 0 0 0 24588 2023-05-21 03:43:11.381 2025-03-29 22:39:47.917 Why I'm Bullish 1: Bitcoin is a Hurricane # Why I'm Bullish: A Personal Bitcoin Series\n\nHad an idea this morning to start writing down reasons I am bullish on bitcoin's future. These posts will be things that clicked for me along the way. They are things that became bigger to me that the opinions of people in my life, the current market price in fiat, and emotions in the moment.\n\nI'm not going to be exhaustive in this series because there are many articles out there that do that better than I will. This is gonna be personal.\n\n## Why I'm Bullish 1: Bitcoin is a Hurricane\n\nOne reason I'm bullish about bitcoin is game theory. Even those that do not believe in bitcoin for the reasons we bitcoiners do will adopt it. If for no other reason than they don't hate money. We are watching an example of this happen right now. Jamie Dimon the Chairman and CEO of JPMorgan Chase has famously said he would ban bitcoin if it where up to him. He claims it is only useful for criminal activities. Yet, his company is now involved in the bitcoin ETFs facilitation. Why? Because Chase is motivated by profits.\n\nThe greed for money will lead even those that hate bitcoin to interact with it. To use it. Why? Because they want wealth and power more than they hate bitcoin. You can see this over and over again in other areas like politics. Business interests support both parties. Both candidates running for office. Multi-national interests support multiple sides in conflicts. Its just game theory and as bitcoin exchange rates rise we will only see more examples of this.\n\nNow, don't be confused. I don't care if people like Dimon adopt bitcoin. Why this makes me bullish is the fact that in order for bitcoin to be adopted by the masses it does not require the masses to BELIEVE or even UNDERSTAND bitcoin. It only requires a critical mass to do so and we are getting ever closer to that being a reality.\n\nOnly a fool stands in the way of a hurricane. Jamie Dimon may be many things but I don't think he's a fool.\n \N 954 \N 24588 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.66772881821598 0 \N \N f 0 \N 0 16065177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 64468 2023-09-17 22:24:46.847 2025-03-29 22:39:48.153 The Penal Preserve, Chapter 1 *This is the first chapter of **The Penal Preserve**, if you haven't read [**The Universal Good Deal**](https://stacker.news/items/409637) you may want to* [start at the beginning.](https://stacker.news/items/358761)\n\n# 1\n\nJane was the first to see the island, because she was the only one who stayed on deck in the driving rain. The island was steep and dark, the slopes thickly wooded with enormous firs. It seemed to fend off what thin light there was. Of course, she thought it was beautiful, and it was indeed a highly romantic region.\n\nLocated in the northwest corner of her people’s lands, Welles chose the island because of its isolation, and because it was believed to be uninhabited. Welles intended this colony of prisoners to remain entirely free of contact with the rest of the world. Since their arrival on Earth, the Aliens had continued to penetrate all aspects of Martian society, and it seemed inevitable that the Martians would abandon their traditional ways of living. Although Welles was not opposed to intercourse with the Aliens, she wanted an insurance policy of sorts, and she hoped that the colony where all things Alien were banned would keep the Martians’ old ways of doing things alive. \n\nWhen Franklin was told that they had arrived, he came on deck, and asked Jane if she wasn’t cold. \n\n‘It’s too late late to try to make a landing today,’ he said. ‘We’re going to stay on the boat until tomorrow. You sure you don’t want to come in?’ \n\n‘Don’t you want to go and see what it’s like?’ asked Jane.\n\n‘It’s raining,’ said Franklin. ‘Let’s go in. I think they’ve got some food warmed up for dinner.’\n\n‘Isn’t it beautiful?’ said Jane.\n\n‘It looks dangerous,’ said Franklin. \n\nBecause the colony was to be entirely self-sufficient, a location had been selected on the western side of the island with access to the most suitable land for agriculture and where a sizable stream flowed down to the sea. But the island was very rugged, dominated by steep rocky hills and towering forests. None of it was particularly suitable for agriculture. \n\nCertainly, every settlement in an unknown and thickly wooded country must be more or less tentative, and the objections to the island were not so evident at the beginning as they now are.[^1] But it seems clear that it was never calculated for a self-sufficient settlement.[^2] Of the moral condition of the island, nothing good could be expected, and little favorable is remembered.[^3]\n\n*Chapter 2 tomorrow, same time, same place.*\n\n[^1]: Every settlement in an unknown and thickly wooded country must be more or less tentative, and the objections to the locality were not so evident in its original state as they now are. **James Backhouse Walker, _The English at the Derwent, and the Risdon Settlement_ 14 October 1880**\n[^2]: It was not calculated for a town. **_Chaplain Robert Knopwood,_ 16 February 1804**\n[^3]: Of the moral condition of the island, nothing good could be expected, and little favorable is remembered. **John West, _The History of Tasmania_ Volume 1, 1852** \N 19655 \N 64468 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.95590458998179 0 \N \N f 0 \N 0 143417994 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 109044 2024-01-07 10:00:12.262 2025-03-29 22:39:48.156 What SN referral strategies have worked for you? I occasionally post a link to an interesting post here to some _crypto_ chat groups I am part of. Other than a few clicks, I think I only saw this once translated into a newly registered user (who doesn't seem to be active). Posting it in large Bitcoin Telegram groups feels like spam and most people there already know about SN. \n\nWhat strategy is working (or not working) for you?\n\nEDIT: I also used to include a link to this platform on my [Focusmate](https://app.focusmate.com/) profile, but have been reported and had to remove it, probably because some people get triggered by anything related to Bitcoin. \N 1064 \N 109044 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.02881510028674 0 \N \N f 0 \N 0 109074381 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 131647 2024-02-24 14:57:37.665 2025-03-29 22:39:48.156 SN release: lnurl-pay comments, jit/anon rewards donations, boost changes, more - lnurl-pay comment support (via @weareallsatoshi)\n - people have been asking for this for a long time\n - these should display in both your notifications and satistics\n- jit/anon rewards donations (via @weareallsatoshi)\n - it now also has toasts and/or a lightning strike on donation\n- fix lightning address withdrawal not verifying amount (via @benthecarman)\n - prior to this fix, a lightning address withdrawal *trusted* the lightning address provider would return an invoice for the requested amount, e.g. they could potentially return an invoice for more than the requested amount and it'd pay it if the stacker had the funds\n - ben seems to have been casually sitting on this bug for awhile? ... the contributor badge he's earned possibly brought it out of him lol *edit: the source responded to our request for comment and he did not in fact have pre-knowledge of the bug*\n- boost minimum has been raised to 25k sats (it was pretty much useless at 5k)\n - also boost increases on edit were enhanced and now support jit funding\n- when you're forwarded sats and comment on a post you get a `OPG` badge\n- our docker dev environment now supports search (via some initiation by @rleed)\n\nMore internal stuff was done too by @ekzyis but most of you won't see that.\n\n \N 10102 \N 131647 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.17254349754172 0 \N \N f 0 \N 0 233480882 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 136633 2024-03-04 22:33:18.598 2025-03-29 22:39:48.157 Ordinary users and digital hygiene Most online users do not know even the basic rules of behavior in the World Wide Web: they use simple and repetitive passwords, leave a lot of personal information about themselves, and discuss confidential topics in social networks like Facebook or whatsapp.\n\n**Can we talk about mass adopting bitcoin when most users aren't ready to use the internet even minimally securely?**\n\nWe need something that will change people's minds and make them care about their privacy and security. Laws like Chat Control will continue to be passed as long as people don't care about it. Technically savvy users are too few to be visible and somehow resist such laws. \N 2718 \N 136633 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.13639873338293 0 \N \N f 0 \N 0 63758108 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 182318 2024-06-09 13:33:03.846 2025-03-29 22:39:48.157 The odds that a great scaling solution that is possible now remains undiscovered There are many interesting ideas floating around for scaling Bitcoin, from Lightning (which I think is ingenious but of course has its limitations) to sidechains, statechains, etc.\n\nA lot of hope is also often put on potential future upgrades of Bitcoin itself like introducing covenants, etc.\n\nWhat I was wondering, what do you think are the odds that a great (complementary) scaling solution is hiding in plain sight. Something that is possible with current (Taproot) functionality?\n\nAre there convincing arguments to be made that this should not be the case? I.e. that we have completely mapped the search space and need to upgrade Bitcoin, or is it just the lazy way out saying that we need this or that opcode and suddenly everything is fine. \n\nWould be interested in hearing your opinions? I haven't yet fully absorbed all the opcodes in a way that I have an intuitive understanding of them for a lack of better word. I understand Taproot and have already programmed some applications for fun but I know, to really innovate, you need to live and breathe something. I am playing around with the idea of hiding a lot of state in a merkle tree in a taproot address and to allow trustless peg-ins and peg-outs into this system. Am I wasting my time here? \N 15147 \N 182318 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.1833680889088 0 \N \N f 0 \N 0 177338012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 27703 2023-05-31 11:02:40.397 2025-03-29 22:39:47.917 🔮 Stackers Predict: August 2024 Let's play some **forecasting**!\n\nSimply **predict something that will happen in August 2024.**\nThe forecast can can be quite generic ("_bitcoin will go up_")\nor quite specific ("Elon Musk will withdraw from his support for Trump")\n\n----\nall zaps from this post will go to the best prediction made (judged by me)\n \N 986 \N 27703 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.3824123414489 0 \N \N f 0 \N 0 69239841 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 113796 2024-01-15 13:49:46.424 2025-03-29 22:39:48.156 On Toxic People Toxic people will always be snarky and sarcastic when you're winning at life. That's how you know that they're toxic.\n\nThe envy that they feel is channelled into cutting you down. This is particularly vicious with people with an entitlement mindset. They hate feeling inferior and they feel a deep need to cut you down to size when they perceive you're getting "too big for your britches."\n\nHonestly, this is loser behavior and should be recognized as such. Engaging in debate and going back and forth on a real substantive argument is one thing. Snark and sarcasm is almost always toxic envy. Sarcasm is not argument. Snark is not reason. Sarcasm and snark are emotional weapons to sideswipe logic and reason. Toxic people do this to make you submit to their frame, to get you to emotionally abandon your position rather than rationally be argued out of it.\n\nSadly, this is how most of the world works. They are not convinced by argument, but by tribalism and emotion. In a fiat world, such tactics are extremely effective. It's called peer pressure and it robs us of our individuality. Becoming immune to such peer pressure is exactly what thinking for yourself means. Hence, cutting toxic people out of your life is not just healthy, but necessary if you want to grow.\n\nWhat's nice about the Bitcoin community is that there is a deep respect for real argument, particularly from first principles. That's good because the fiat system lends itself to centralized groupthink. And centralized groupthink will have its share of bullying, toxic Karens.\n\nThankfully, we can cut the toxic people out of our lives under a Bitcoin standard and leave them powerless to influence us, but to do that we need to not just get on a Bitcoin standard, but also change our mentality to be self sovereign. \N 714 \N 113796 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.73797849136 0 \N \N f 0 \N 0 237125831 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 375108 2025-01-20 23:18:35.443 2025-03-29 22:39:48.16 This Day on SN: August 2 #### Top Posts\n- [Why Everyone Should Care About Privacy](https://stacker.news/items/218189)\n - 14.6k sats \\ 32 comments \\ @kepford \\ ~tech \\ `August 2, 2023`\n- [Hello! Pierre Rochard, VP of Research at Riot. AMA.](https://stacker.news/items/53259)\n - 24.9k sats \\ 84 comments \\ @BitcoinPierre \\ ~bitcoin \\ `August 2, 2022`\n- [[Reddit] Owning 1 BTC of digital real estate is equivalent to owning 1126 acres of the Earth's habitable land](https://stacker.news/items/719)\n - 6 sats \\ 3 comments \\ @shawnyeager \\ ~bitcoin \\ `August 2, 2021`\n#### Top Stackers\n- @nerd2ninja\n - 1607 stacked \\ 1926 spent \\ 1 post \\ 15 comments \\ `August 2, 2023`\n- @k00b\n - 11.4k stacked \\ 32.5k spent \\ 5 posts \\ 12 comments \\ `August 2, 2022`\n- @dergigi\n - 7 stacked \\ 1 spent \\ 1 post \\ 0 comments \\ `August 2, 2021`\n#### Top Comments\n- https://stacker.news/items/217122?commentId=217698 on [SN post-mortem: crazy rewards ](https://stacker.news/items/217122)\n - 2785 sats \\ 6 replies \\ @DarthCoin \\ `August 2, 2023`\n > You know me well enough: [...]\n- https://stacker.news/items/53259?commentId=53276 on [Hello! Pierre Rochard, VP of Research at Riot. AMA.](https://stacker.news/items/53259)\n - 577 sats \\ 5 replies \\ @C_Otto \\ `August 2, 2022`\n > How do businesses like Kraken deal with the "burden" of operating a LN node, e.g. paying on-chain fees, unexpected force-closes, off-chain fee configuration, implementation bugs, ...? [...]\n- https://stacker.news/items/716?commentId=722 on [Implications of Outlawing Bitcoin](https://stacker.news/items/716)\n - 0 sats \\ 0 replies \\ @anthony \\ `August 2, 2021`\n > Looking forward to reading this! [...]\n#### Top Territories\n- ~bitcoin\n - 24.1k stacked \\ 0 revenue \\ 47.2k spent \\ 83 posts \\ 305 comments \\ `August 2, 2023`\n- ~bitcoin\n - 63.4k stacked \\ 0 revenue \\ 64.3k spent \\ 103 posts \\ 408 comments \\ `August 2, 2022`\n- ~bitcoin\n - 25 stacked \\ 0 revenue \\ 46 spent \\ 5 posts \\ 5 comments \\ `August 2, 2021` \N 21520 \N 375108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.802506930603819 0 \N \N f 0 \N 0 232515703 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 286359 2024-11-04 16:16:21.196 2025-03-29 22:39:48.164 Bitcoin needs LESS _____ DOOMERS\n\nIn my experience at least I know of several who are turned off to Bitcoin because of the fiat hyperinflation doomers they see all getting turned on by governments debasing their citizens’ currency.\n\nDoesn’t matter how true or real inflation is to them — it’s not a good look when you try to leverage innocent people’s evaporating wealth as a “see I told you so!” moment.\n\nBitcoin can be framed ENTIRELY positively, you don’t need to scare people into it. \N 20861 \N 286359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4552116491656 0 \N \N f 0 \N 0 180077565 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430498 2025-03-09 08:59:56.627 2025-03-29 22:39:48.907 Stoic Book Club: Meditations by Marcus Aurelius #7 - Book 7 This post is the seventh in our Stoic Philosophy book club series on Meditations by Marcus Aurelius. Participants expressing interest are tagged at the end of the post, let us know if you're new and would like to join and be tagged!\n\nPrior posts for context:\n* [Book 6](https://stacker.news/items/467359)\n* [Book 5](https://stacker.news/items/458288)\n* [Book 4](https://stacker.news/items/446496)\n* [Book 3: In Carnuntum](https://stacker.news/items/439147)\n* [Book 2: On the River Gran, Among the Quadi](https://stacker.news/items/429509)\n* [Book 1: Debts and Lessons](https://stacker.news/items/423469)\n* [Geneisis Post](https://stacker.news/items/417471)\n\nThanks to those of you who participated in the comments last week. Let me know if you would like to join.\n\n# Book 7\n\n## Summary and Highlights\n\nMy rather speedy read through Book 7 has me realizing that many of Marcus' entries are the same Stoic ideas we've visited in prior "books". Book 7 is lengthy with 75 entries. The fact that we revisit the same ideas doesn't degrade in any way the experience of reading it. In fact, it actually makes it feel like a real, practical *meditation*, in that we are coming back to these Truths over and over again, as if we were sitting and returning our attention to the breath whenever the mind wanders off in distraction. Furthermore, although the Stoic ideas are fundamentally the same, Marcus' insights repackage them in a unique fashion for each entry. Just like in sitting, each breath is qualitatively different and each moment of *insight*, or realization of the Truth is also fundamentally unique.\n\nI guess I'm engaging in this meta-analysis in part to support the my decision to skip reflection of some of the good entries which feel a little too familiar. These postings might become a little shorter and target only the entries which feel especially pertinent to me. We'll see.\n\nSome topics that stuck out to me initially were *familiarization* and *pain*.\n\n> 2. You cannot quench understanding unless you put out the insights that compose it. But you can rekindle those at will, like glowing coals. I can control my thoughts as necessary; then how can I be troubled?\n\nI found this passage insightful and surprising because that experience of "insight" is usually interpreted as a breakthrough and feels *good*. However, it's also a dopamine hit and we can become sort of addicted to it. For example, today I was walking my dog with a friend and she was excited because she had a major breakthrough in understanding some things that have caused her a lot of pain an trauma. She had discovered or accepted a diagnosis for her condition, but also shared that there is often a "honeymoon period" after receiving a diagnosis. That could be this feeling, like finding an answer to the question "why?". I was happy for her, but I was also remembering that that feeling of satisfaction of having an answer has always been temporary in my own life, and these insights usually require practice and integration to have a lasting impact. I think Marcus is suggesting here that the mind can get trapped in going down a rabbit hole of desiring and seeking insights, and perhaps that rabbit hole is endless. The way he describes a mastery over the mind is both concise and poetic, something I haven't managed to "achieve", but a target described well enough that one can get an idea of how to apply the mind as a tool, instead of getting dominated by it.\n\nWhen describing the constant activity of the natural world around us in #3, humans included, Marcus says,\n> Surrounded as we are by all of this, we need to practice acceptance. Without disdain. But remembering that our own worth is measured by what we devote our energy to.\n\nThe "without disdain" part caught me here. Why is it so easy to write off everything that is going on around us? Perhaps it's a defense mechanism to protect our nervous system and awareness from being overloaded? In some sense, it's funny Marcus throws this in there so naturally, but in another, it's completely natural because I catch myself in that attitude when I go out in public. I think evolution is fundamentally about growing in consciousness, and awareness, and that mean expanding perception. However, when our perceptions expand, so do our boundaries, and perhaps this attitude of disdain or aversion represent a boundary of consciousness, that we are challenged to integrate. Marcus urges us to practice acceptance, to make peace at that boundary. Over and over in other entries, he suggest that doing so helps us see how we are connected to others and the world around us and doing so enables us to see more of our place in the world.\n\n> 4. Focus on what is said when you speak and on what results from each action. Know what the one aims at, and what the other means.\n\nGood, practical advice. Easier read than done. I also find it interesting that organizationally, the speech == aim and action == meaning. Speech comes before action, like a blueprint, and acts can be reflected upon to derive meaning. Sort of like a hypothesis and the result of the scientific experiment. Where, then, does *thought* factor into all this? Perhaps we're looking at a layered approach of causation from the subtle to the gross...\n\n> 7. Don't be ashamed to need help. Like a soldier storming a wall, you have a mission to accomplish. And if you've been wounded, you need a comrade to pull you up? So what?\n\nThis stands out because it's hard for me. I'm patterned to refuse help and take on everything myself. A good reminder for me, but also I have more questions than insights. If we're talking about a "spiritual path" of sorts in life, where does this help come from? How to ask? And how do I know when I'm wounded? Something I'll need to keep practicing.\n\n> 12. Straight, but not straightened.\n\nThis one sounds like a sly little reminder from Marcus to himself. I have absolutely no idea what he's referring to, but I like the feel of it.\n\n> 13. What is rational in different beings is related, like the individual limbs of a single being, and meant to function as a unit. This will be clearer to you if you remind yourself: I am a single limb (*melos*) of a larger body -- a rational one. Or you could say "a part" (*meros*) -- only a letter's difference. But then you're not really embracing other people. Helping them isn't yet it's own reward. You're still seeing it as The Right Thing To Do. You don't yet realize who you're really helping.\n\nI think the conclusion here is that if you really see things as they are, you realize that you are One with Nature and other people around you. When one can live with this awareness, they are helping themselves as well as others. Doing what is best for others is doing what is best for ourselves, and this can become a Natural way of life -- perhaps it is the *truly* Natural way of life. Aside from the depth here, it's just a beautiful passage and I like that the reader is left to draw their own conclusion.\n\n#22 and #26 are great injunctions for compassion between fellow humans, I'll refrain from quoting them here.\n\n> 27. Treat what you don't have as non-existent. Look at what you have, the things you value most, and think of how much you'd crave them if you didn't have them. But be careful. Don't feel such satisfaction that you start to overvalue them -- that it would upset you to lose them.\n\nHmmmm.... do I overvalue my Bitcoin? Probably :) The passage has me reflecting on the bull market. It's established economics that the "markets" are driven by fear and greed. With virtually no experience with finance, I would never have considered myself a greedy person until I experience my first BTC bull market. It wasn't until I had some skin in the game, that I observed how the excitement changed my behavior, my attention and my focus. I like to be open about this experience because I feel that riding BTC volatility has helped me get in touch with my fear and greed. It's not fun to acknowledge, but now that I know I'm just an ordinary human, an ordinary market participant, I can come to accept these aspects of myself, instead of pretending that I'm above them or something. Also, with more cycles and more experience, I've found that I'm less swept up in the excitement, fear and greed so there is a normalization and healing opportunity with time and awareness. It's vulnerable, but I think its good to acknowledge the darker qualities of humanity with others more often. Here's to staying humble and stacking sats!\n\n> 33. [On pain:] Unendurable pain brings its own end with it. Chronic pain is always endurable: the intelligence maintains serenity by cutting itself off from the body, the mind remains undiminished. And the parts that pain affects -- let them speak for themselves, if they can.\n\nThis is an expert manual on pain management. I've encountered some chronic body pain and met it in meditation. To let the painful parts "speak for themselves" is to apply deliberate attention to a painful area of the body and maintain an equanimous, inquisitive awareness of the sensation, following and staying with it until it's run it's course. When the pain has said what it needs to say, it's essentially transformed into something else -- maybe even pleasure or bliss. Going through this process over and over has shown me both that pain is neutral phenomenon, but also that beneath each layer of sensational experience lies another, different experience which may, in it's uniqueness, be equally or more difficult to listen to.\n\n> 36. "Kingship: to earn a bad reputation by good deeds."\n\nThis has got to be a big of a tongue-in-cheek joke by Marcus suggesting you're either damned if you do, or damned if you don't as a ruler, unappreciated. One could dig for more depth, but I just find the comment funny.\n\n> 46. But, my good friend, consider the possibility that nobility and virtue are not synonymous with the loss or preservation of one's life.\n\nMarcus implies that virtues including nobility and virtue are immortal qualities. Perhaps these are the things higher than Man the he refers to elsewhere in Book 7, that humans are destined to serve. Either way, to decouple their value from human lifespan is a reflection on both the inevitability of bodily death and the immortality of a virtuous soul.\n\n> 49. Look at the past -- empire succeeding empire -- and from that, extrapolate the future: the same thing. No escape from the rhythm of events. Which is why observing life for forty years is a good as a thousand. Would you really see anything new?\n\nThis observation rings back to #1, which I haven't quoted in which Marcus describes evil in the world as the "same old thing". Both these entries contribute to the theme of familiarization I find in Book 7 -- that relativizing the things of the world to their fundamentals makes it easier for the mind to transcend its addiction to the material. This passage reminds me of a time in life where I considered that the only thing that could be more scary than death, was the prospect of actually living forever. Imagine being trapped in an eternity of "the same thing", as Marcus puts it. That might truly be a hell. From this perspective, death actually serves an important purpose of resetting and rejuvenating our awareness and perspective. An interesting though experiment, but one I consider seriously.\n\nIn #58, Marcus admonition to "live up to your own expectations" caught me. I tend to have unrealistic or over-ambitious expectations for myself. This probably also leads me to suffering self-judgement. I guess growing toward a more realistic view of our own capabilities is part of Knowing Yourself, purifying perceptions and the mind's conception of itself. Evidence that I'm still on the way.\n\n> 59. For times when you feel pain: ... pain is neither unbearable nor unending, as long as you keep in mind its limits and don't magnify them in your imagination.\n\nAnother commentary highlighting the topic of pain, and a reminder that pain is an interpretive quality of the mind, existing in our imagination and how we relate to a given sensation or emotion.\n\n> 65. Take care that you don't treat inhumanity as it treats human beings.\n\nWe must not partake of the evil of inhumanity in response to it, otherwise we become it. A short, poetic, kohn-like passage.\n\n> 67. ... It's possible to be a good man without anybody realizing it. Remember that.\n\nWe are beholden only to ourselves and our best conception of what it means to life well.\n\n> 70. The gods live forever and yet they don't seem annoyed at having to put up with human beings and their behavior throughout eternity. And not only put up with buy actively care for them. And you -- on the verge of death -- you still refuse to care for them, although you're one of them yourself.\n\nMarcus slyly admits his religious laziness, while simultaneously acknowledging his participation in divinity. Wraps the mind in a circle and makes me smile.\n\n> 74. No one objects to what is useful to him. To be of use to others is natural. Then don't object to what is useful to you -- being of use.\n\n:) The thing here for me is coming to a *natural* realization that being of use to others is *natural*. To live with this perspective in an embodied way makes for the Stoic life Marcus is constantly describing, but the path to that realization easier said / thought than walked.\n\n## Participants\n\nThank you everyone who has been reading Meditations, and participated in the discussions. Feel free let me know if you don't want to be on the tag list anymore :)\n\n@siggy47 @cryotosensei @carlosfandango @Bitman @gd @sudocarlos @BitByBit21 @bc52210b20 @Atreus @byzantine @davidw @Roll @grayruby @Taft @Oialt\n\nPlease signal interest in the comments if you'd like to be tagged. \N 4062 \N 430498 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 9.26303883480056 0 \N \N f 126492810 \N 2 74464847 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 00:41:04.106 f \N \N \N 0 0 0 0 2 0 0 401865 2025-02-13 12:29:54.741 2025-03-29 22:39:48.907 The H. L. Mencken Show I posted this article because I have been thinking a lot about cancel culture, and how it applies to writers I love. Mencken, despite his obvious and serious flaws, has provided me with hours of entertainment. When I need a break from the world there is something about his writing that puts me in a good mood. Of course he was a product of his time, but his casual racism and anti semitism is offensive. I tend to overlook or ignore it, because there is something about his intelligence, humor, and sense of humanity that makes me doubt his prejudices are real. Maybe I'm being overly generous. \nAnyway, this article captures Mencken, both good and bad. I don't know if any stackers have opinions about him. https://www.theparisreview.org/blog/2016/04/20/the-h-l-mencken-show/ 20734 \N 401865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8990605258002 0 \N \N f 392263765 \N 2 246822479 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435806 2025-03-13 01:35:51.067 2025-03-29 22:39:48.908 Global Urbanization: Will The Trend Reverse? Pretty amazing chart showing that we basically went from nobody living in cities to mass migration to cities all over the world in a couple hundred years.\n\nGlobally, just under half of the world’s population already lives in cities today.\n\nhttps://i.ibb.co/wNjTHbm/long-term-urban-population-region.png\n\nWill this trend reverse moving forward? Will people find new reasons to leave cities behind and return to the country? If so, what might be the catalysts that cause this shift? \N 20756 \N 435806 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 23.6478573068439 0 \N \N f 236731676 \N 1 208292083 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 19:36:43.03 f \N \N \N 0 0 0 0 1 0 0 420877 2025-03-01 08:07:25.34 2025-03-29 22:39:49.239 \N Yes they are. Which is completely insane.\n\nUse multisig, and use a form of multisig that allows you to prove to the world that you're using multisig.\n\nI've done some consulting for exchanges/custodians holding very large sums of money, and I'd never approve a non-multisig-scheme. Security is hard enough as it is. Heck, with EC crypto there's always a chance that something just goes wrong due to a random bitflip and a nonce is reused, revealing your private key. Having multiple devices signing off on a transaction makes that (very) rare scenario not fatal. https://example.com/ 15556 420847 420847.420877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.096542444767 0 \N \N f 0 \N 0 114274834 0 f f \N \N \N \N 420847 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 88988 2023-11-22 14:43:50.415 2025-03-29 22:39:48.154 In which area is sovereignty most important - food, money, or communication? Good evening, Stackers.\n\n\nWhile working on a nutrition research project tonight, I came across a quote that I felt the need to [share](https://primal.net/e/note12jep2eqlgcpflsxxe8r87pc6amua4hzmkp4new5et0xnq989qxmqges4d8):\n\n"Whoever controls the protein controls the people.\n\nIn the Roman Empire times, whenever there was civil unrest, [the royal class] would hold 'celebrations of bread'. The people would be loaded up with carbs, it made them fat and happy, and the civil unrest would settle down.\n\nPolitics, food, and control of the people have been interlinked for as long as we've had politics. And currently, we're seeing a huge push away from animal-based food sources, and toward plants.\n\nWhen you move down that pathway, no matter what the rhetoric, a plant-based diet is going to be incomplete of the nutrients required for life. And in the process of that, you're controlling the people, because you're controlling their protein. You can call it conspiratorial if you want...but it's happened forever."\n\n—Dr. Gary Fettke\n\n\nThis inspired my question of the evening for you all:\n\nIn which area is sovereignty most important - food, money, or communication...and why?\n\n-BW\n\n\n![chain.jpeg](https://m.stacker.news/4906) \N 1221 \N 88988 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2218567326551 0 \N \N f 0 \N 0 243647319 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 132356 2024-02-25 22:21:26.943 2025-03-29 22:39:48.156 Bitcoin is not under attack of ordinals or BRC20 Saw too many people spreading some kind of concern or bad info of bitcoin being under attack. Well, not quite. To get that point, we should consider some things to qualify something [as an attack](https://twitter.com/ishikawa_btc/status/1655680352151654401):\n\n1. Dishonest behavior: When considering, you should have the intention of harm the network, users or both.\n2. Perjury: If you do something, the attacker must take actions in order to harm something on purpose.\n3. Impacts: The one doing things should look to have a significative impact on bitcoin or make negative changes in the protocol.\n4. Exploit: The attacker should consider to exploit or take advantage of some weak point in the protocol.\n5. Integrity: The attack must compromise the blockchain integrity, leaving the security under ashes.\n\nSo, having these points into the table, the question: are we under attack? IMO, **no**. I get the anti-ethos case that lots of people did it but what we're seeing here is Tx fees up and filling up blocks with data that some people are considering not worth it. I see people operating their nodes with no issue and the protocol being used as usual. So, to me, from a technical perspective, this doesn't qualify as attack.\n\nNow, the ethos part. I think you have only one way currently to prove your disagreement: use [OrdiRespector in your node to show your disagreement](https://twitter.com/oomahq/status/1655131460502691840) because I can't see other way around. This was [already explained by Poelstra](https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2023-January/021372.html):\n\n> There's a reasonable argument that this sort of data is toxic to the network, since even though "the market is willing to bear" the price of scares blockspace, if people were storing NFTs and other crap on the chain, then the Bitcoin fee market would become entangled with random pump&dump markets, undermining legitimate use cases and potentially preventing new technology like LN from gaining a strong foothold. **But from a technical point of view, I don't see any principled way to stop this**.\n\nThe emphasis is mine. More important than everything and you should always remember: [Bitcoin is for enemies](https://twitter.com/lopp/status/1655916548798701570) also. If you can't see it, then...cry.\n\nWhat am I gonna do? Keep stacking sats, my plan won't stop for anything. And what about brc20 and stuff? A cool fashion but won't last because it doesn't provide value and it's costing them a lot of money. As [I posted previously](https://twitter.com/ishikawa_btc/status/1655680352151654401), most ordinal fans are BSV-lovers who [ran from their crap and came to pay fees on BTC](https://twitter.com/hodlonaut/status/1655895025962610690). Why bitcoin and not BSV? Because, bitcoin will last and it's also scarce, meaning, [it's best choice they can make](https://twitter.com/jimmysong/status/1655883199736856577), that's why they didn't choose other craps. \n\nBut IMO, They'll die in their own shitcoinery.\n\nGo full bitcoin always. \N 16145 \N 132356 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2714193650808 0 \N \N f 0 \N 0 206043572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 230239 2024-09-08 03:46:51.392 2025-03-29 22:39:48.162 Join Us Next Monday (1/8/2024) for a Q4 SN Review + Q1 Roadmap Discussion Howdy, stackers!\n\nNext Monday (at 11am ET) we're hosting our second public call + roundtable to discuss all the latest developments and plans for Stacker News.\n\nJust like [last time](https://stacker.news/items/285081), there will be a live (and recorded) Vida call with @k00b, @ekzyis, and @kr to cover 4 high-level topics:\n\n- What was shipped in Q4 2023\n- What was adoption like in Q4 2023\n- What is planned for Q1 2024\n- How stackers can help out\n\nThis is just a save-the-date reminder, we'll share more details and a call link in this territory next Monday morning.\n\nPS. If there are things you'd specifically like to hear discussed next week, feel free to drop your ideas below! \N 15728 \N 230239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9483800682034 0 \N \N f 0 \N 0 104555043 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442657 2025-03-18 18:15:07.427 2025-03-29 22:39:48.166 The government doesn't always lie; that's the danger. We've all seen George Carlin's take on the government, right?\n\nhttps://i.imgur.com/z8dMvE8.png\n\nAnd yeah, we've all laughed at it. But much as I love George - and he was hands down my favorite comedian ever -- I think he used the wrong word.\n\nIt's not that you shouldn't *believe* anything the government says. It's that you shouldn't *trust* the government.\n\nSee, a good liar does not actually lie all the time. In fact, a great liar lies as little as possible, not least because the goal isn't "to be a liar," but "to hold power."\n\nSomeone who lies 100% of the time is actually, in the end, incredibly trustworthy. If I know you're a liar and I ask you which path I should take, I know to just do the opposite of what you say[^1].\n\nBut a great liar will often tell you the truth. Not necessarily the whole truth, but if the truth is the thing that helps keep them in power, they'll go with it. The truth can (often) be verified, so the more they control you with truth, the more you're likely to eventually stop checking. If I've told you the truth 100 times in a row and you've checked my work each time, you're eventually going to get complacent and just accept that I'm honest.\n\nThat's what the government (and also a ton of corporations and religious institutions, not to mention individual con artists, including a lot of online political "influencers") rely on. Then they throw in the half-truths, or bad conclusions drawn from true facts. Poverty, starvation, and debt all exist, so surely their solutions are worthwhile! The lie will be some small assumption or theory or bad data buried in the larger plan, and unravelling it is the trick.\n\nSo yeah, I may believe something the government says, or at least be willing to verify and accept it, but that doesn't mean I trust their conclusion or motivation.\n\n(And yeah, in terms of current events, they've clearly made some truthful statements about Samurai. It's possible that all the factually verifiable statements are true. It's their conclusion and the actions that spring from them that's where the dishonestly lies.)\n\n[^1]:There's an entire [logic puzzle genre](https://en.wikipedia.org/wiki/Knights_and_Knaves) built around this. \N 2583 \N 442657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.858701725287 0 \N \N f 0 \N 0 62292066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424186 2025-03-03 21:37:49.428 2025-03-29 22:39:49.24 \N hey everyone, my first post here\n\nOP is clearly uninterested in discussions about altcoins, which is fine, just thought i’d present an alternative viewpoint\n\nas someone who cares about bitcoin’s future a lot, i think conversations about what altcoins are doing differently are important in order to strengthen bitcoin.\n\nand yes, there needs to be some discretion, since obviously much/most of what happens in altcoin-land is flat out scams, but that’s not everything. some experiments are honest and can inform future development in bitcoin and i think monero is a prime example of that\n\neven if what monero teaches us is “we shouldn’t do what monero did”, that’s also useful\n\nbanning any discussion about anything altcoin-related will limit our ability to learn and have productive discussions about bitcoin https://example.com/ 18608 424161 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424130.424153.424158.424161.424186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3190143362179 0 \N \N f 0 \N 0 57327282 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444502 2025-03-20 00:16:13.117 2025-03-29 22:39:49.241 \N No\n\nhttps://pbs.twimg.com/media/FpgFhZ_XgAAOjKN?format=jpg&name=large\n\n https://example.com/ 17568 444471 444471.444502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.49910177261165 0 \N \N f 0 \N 0 135058496 0 f f \N \N \N \N 444471 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451367 2025-03-24 14:19:34.07 2025-03-29 22:39:49.243 \N This is not surprising in the slightest. I spent an hour of my time talking to them privately last year when the balance sharing feature was released. Completely dismissed. The data selling is consistent with the rumors I have been hearing too.\n\nI may have to build in a feature into Mutiny to avoid all nodes that are verified and data sharing on Amboss. I figured the Lightning Network would split up eventually into a KYC'd network and non-KYC'd network. https://example.com/ 7992 451018 451018.451367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.34696738777357 0 \N \N f 0 \N 0 142026323 0 f f \N \N \N \N 451018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437998 2025-03-15 05:14:09.863 2025-03-29 22:39:49.245 \N 1. Respect and follow the Natural Law (do not steal, do not kill, do not damage)\n2. Smile, tomorrow will be worse. Every day try to laugh or at least smiling. Leave outside all your worries.\n3. Fuck the banks and govs, NEVER trust / listen any of them.\n4. Live your life as it would be your last day on this planet. Enjoy at maximum every day.\n5. Be yourself, no matter what others would say about you. Fuck'em'all, if they don't like you is their problem, not yours. Don't change yourself just because somebody doesn't like you. https://example.com/ 18068 437775 437775.437998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4246449022665 0 \N \N f 0 \N 0 129106399 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443891 2025-03-19 15:10:24.501 2025-03-29 22:39:49.246 \N very cool initiative! https://example.com/ 9261 443888 443339.443356.443401.443888.443891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9063621041162 0 \N \N f 0 \N 0 102490064 0 f f \N \N \N \N 443339 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 103357 2023-12-26 03:00:29.538 2025-03-29 22:39:48.152 Free coinjoin coordination A coinjoin is a non custodial privacy enhancing transaction. I'm coordinating coinjoins for [Wasabi Wallet](https://wasabiwallet.io) and [BTCPay Server](https://docs.btcpayserver.org/Wabisabi/). **I'm not charging any service fee, you only pay for your own mining fees.** Opening Lightning channels using coinjoined funds provides an extra layer of privacy: Even invoices that reveal your channel's on chain UTXO won't leak any extra information from on chain analysis.\n\nLarger coinjoin transactions with many participants provide more privacy and greater on chain efficiency than smaller coinjoin transactions. So far, my coordinator has the most liquidity out of the current coinjoin providers: https://x.com/LiquiSabi/status/1804198233301770567 / https://primal.net/e/note1cg4csv523667wq732qfnjqd08g9anfj46aewc9tnyy5u0gksfmaqthracm\n\nTo participate using Wasabi Wallet, paste this coordinator info into the settings field and click "Restart Wasabi":\n\n `https://btcpay.kruw.io/plugins/wabisabi-coordinator/`\n\n![](https://m.stacker.news/36417)\n\nLargest coinjoins so far:\nMost inputs (164): https://mempool.space/tx/3d2234434745d227cc03177d44a47519e084dd1a342eabc376fa4d1ea41f2a6f\nMost outputs (180): https://mempool.space/tx/df79e7cc214d4d8908b0abc078ef261ab5956211ed69be19942e75d4b811853f\nHighest value with no change output (18.46 BTC): https://mempool.space/tx/4a7bb513dfaaec66bc0721e6762ceaad759b6fd15e22995ffe05eef396c16cd4\nHighest value with change output (50.71 BTC): https://mempool.space/tx/d87f70403f8e945d7144508467cad0039310b8a608aa8b85725c6c6cf641d4f0 \N 1046 \N 103357 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.47563705800355 0 \N \N f 0 \N 0 74367113 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436048 2025-03-13 09:13:06.445 2025-03-29 22:39:48.16 Unchained Capital - The free ride stops now I’ve been using Unchained Capital for quite a few years and have been very happy with them. They had a modest set up fee for my multisig vault and besides set up I just contacted them to double check my UTXO consolidation. Overall very pleased with them.\n\nWe’ve talked before about inheritance planning on SN and for me I’m the most technical in my succession plan as of now (let’s see how my boys are as they get older). While technical I also don’t personally feel comfortable being 100% responsible for my entire stack given the future value I’m assuming so I like having assistance if needed. Yeah yeah I get Bitcoin is for the fully sovereign individual, but it’s also for Everyone who wants freedom money.\n\nOk ok so now, Unchained is charging $250 a year for support. This is a big increase from $0, but not a % of your stack so depending on how much you have, this is a lower fee than trad fi. I am planning to pay the fee this year as it’s due in a few weeks. Anyone else feel comfortable sharing that they use Unchained? I also see they have a section for a discount code. A long shot, but anyone else know how to get one so that I can preserve some sats?\n\nOther than unchained capital I know there are other multi sig set ups that I may look into. On ramp sounds interesting. Anyone use them? \n \nLastly to follow up on inheritance, Unchained has some free material:\n\nHi-level : https://help.unchained.com/unchained-inheritance-materials\n\nDetailed plan: https://8198895.fs1.hubspotusercontent-na1.net/hubfs/8198895/Unchained%20Inheritance%20Protocol.pdf\n\nThanks!\n \N 15115 \N 436048 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.0794586375016 0 \N \N f 0 \N 0 216487158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:09:20.629 f \N \N \N 0 0 0 0 0 0 0 434963 2025-03-12 11:20:08.459 2025-03-29 22:39:48.162 I'm tip_nz, creator of btc videos such as The Great Resistance & Timechain. AMA! Hey everyone! I'm Tip (@tip_nz), you may have seen some of my Bitcoin raps such as Timechain and Power floating around Twitter. Last week I released my first 6-minute short film called The Great Resistance: The Story of Bitcoin.\n\nI have a lot of fun making these videos and have learnt a lot about how to create something people want to watch. The competition for our attention is fierce nowadays so I'm focused on how to capture and redirect the world's attention towards Bitcoin. I combine music, visual arts, rhymes, Bitcoin facts and generally good vibes to recreate magical orange pill moments. \n\nMy hope is for people to watch my videos and think "Wow. Bitcoin is the answer. I need to do something about this."\n\nFeel free to ask me anything, from silly ways to overcome creative blocks to abandoned projects that will never see the light of day to the weirdest ways I've spent my sats!!! <3 \N 1003 \N 434963 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.6369733901938 0 \N \N f 0 \N 0 53522044 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 08:10:59.295 f \N \N \N 0 0 0 0 0 0 0 150955 2024-03-29 15:24:32.615 2025-03-29 22:39:48.164 Hello Stackers! Bold is a credit card backed by your bitcoin stack. AMA! **Hello Stackers! Bold is launching a credit card that’s backed by your bitcoin stack.**\n\n- Spend dollars from a line of credit on your bitcoin, no credit checks necessary\n- Hold your own key in a collaborative custody multi-sig\n- Always be able to verify your coins are safe on the blockchain\n- Earn sats every time you spend fiat dollars\n\nBold makes it easy to live on bitcoin day-to-day while minimizing the need to convert BTC to fiat. This helps you avoid triggering capital gains tax and have fewer accounting headaches.\n\n**Better than traditional credit cards** because its limits are higher, rates are lower, and rewards are in sats.\n\n**Better than bitcoin loans** because you don’t start accruing interest right away. In fact, if you pay off your monthly balance, you pay no interest at all. Make payments in fiat or bitcoin, whatever suits your situation.\n\nNo rehypothecation. No shitcoins. No ETH. Never. Bold will *always* be Bitcoin only. \n\nLaunching summertime 2023. We’re very excited to get this into your hands.\n\n**Sign up for early access at [getbold.io](https://getbold.io/?campaignID=sn1). Takes 30 seconds!**\n\nLet me know what you think and ask me any questions! \N 14168 \N 150955 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.8965930790285 0 \N \N f 0 \N 0 236252022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436643 2025-03-13 18:37:35.405 2025-03-29 22:39:48.164 Bank of Japan Grapples with Record Unrealized Losses The Bank of Japan disclosed an unprecedented surge in unrealized losses on its Japanese government bond holdings, reaching a staggering 10.5 trillion yen ($71.2 billion) by the close of September. This unsettling development marks the third consecutive half-year paper loss on JGBs, standing as the largest since the adoption of the current valuation method in 2004. Notably surpassing the prior record set in September 2022, this fiscal downturn underscores the challenges faced by the central bank in navigating the evolving landscape of rising yields.\n\nAs the BOJ grapples with these substantial losses, questions arise about the potential repercussions on currency markets and interest rates. Lawmakers closely scrutinize the central bank's financial stability, especially as it explores exit strategies from its massive easing program. The recent adjustments to its yield curve control policy in July, allowing long-term bond yields to rise as high as 1%, reflect the BOJ's efforts to adapt to changing global interest rate trends.\n\nDespite the assurances from Governor Kazuo Ueda that these losses would not impede policy execution, the market remains watchful. Ueda's commitment to addressing potential unrealized losses through increased income via seigniorage provides insight into the bank's strategic response to future challenges. \N 805 \N 436643 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.2945750918431 0 \N \N f 0 \N 0 201382836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:07:06.517 f \N \N \N 0 0 0 0 0 0 0 180542 2024-06-05 19:14:36.826 2025-03-29 22:39:48.156 Can Bitcoiners Solve Landfills - How Big Business Broke Recycling and Blamed You How Big Business Broke Recycling (And Blamed You)\nhttps://www.youtube.com/watch?v=JK1BfPw7lnQ\n\nA point I clung on to in this video, was how before disposable containers, Americans used reusable containers. I think this is an important consideration in Bitcoin economic trade, charge for the container, and discount for reuse. I think this will work with Bitcoiners, because Bitcoiners are always looking to save sats, but the FIAT minded typically don't give extra thought to a few cents.\n\nWater is a pretty simple problem to solve. Just get a filtration system and reuse bottles for more water. However, if someone is willing to pay for you to filter all the water and refill all their bottles, why not serve the market demand.\n\nOther liquids maybe aren't so simple. A farmer selling milk would have to charge for the bottle and then have a refill price. This refill price should clearly outweigh the price of using a disposable container. However, there is a catch, milk goes bad and can stick to the sides of the container. So there's a cleaning cost. \n\nTupperware instead of disposable togo containers also has a cleaning cost. Mason jars and canning would run into the same issue. \n\nI posit to you Bitcoiners, can we get a mass cleaning process down that allows us to replace the disposable market with a Bitcoin-only reusable market? \N 21413 \N 180542 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0138879587921 0 \N \N f 0 \N 0 229540846 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 126871 2024-02-14 00:39:37.528 2025-03-29 22:39:48.157 How bitcoiners should argue big state believers One of the biggest ideological diseases nowadays, especially among people in the west, is the big state. Their believe in it goes deep, they are addicted to it. And a very common mistake to make among bitcoiners / Austrians, is to argue with them on basis of effectiveness, what works better. \n\nOf course, we all know the free market is more effective, but it's not why most people believe in the government. Almost always it is rooted in moral superiority. 'Statists care about the poor and the sick, others do not', is the underlying idea. Even if you win the effectiveness argument, you still loose, because you don't care about those who are left behind without a roof, food or healthcare.\n\nIf that's the case, there's only one way to go about it. Forget about effectiveness or other arguments, attack them at the moral level and do it with as much force as is appropriate in that situation. Be on the offense. 'Why do you support the government stealing from the poor and handing it out to their rich cronies by printing money? That's terrible!'.\n\nTake away their moral superiority and there's nothing left. Their believe system starts to crumble, they start to doubt themselves and that's exactly what's needed. The financial terrorism executed by the West through the IMF and Worldbank are of course great for that. 'This is modern slavery! Don't you want the poor people in Africa to have the same opportunities as we?' Specifically look for the words that they love to use themselves and turn it on them.\n\nThese are just two examples, the possibilities are endless. It may feel uncomfortable to do; in real offline life, bitcoiners are very nice and social people. But it's actually more fun and you'll get better results. Try it. \N 5725 \N 126871 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.71606403394325 0 \N \N f 0 \N 0 19154946 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 278265 2024-10-26 17:52:55.135 2025-03-29 22:39:48.157 Operation Triangulation: The last (hardware) mystery The exploit uses 4 zero-days in iMessage to give root privileges and load spyware with zero clicks! https://securelist.com/operation-triangulation-the-last-hardware-mystery/111669/ 2367 \N 278265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1317622904273 0 \N \N f 0 \N 0 133408569 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448057 2025-03-22 11:22:41.961 2025-03-29 22:39:48.164 What's your dream car? @btcgandalf asked this on X and I don't have a good answer. I love cars as machines but I don't have aspirations around them beyond their utility. Still, I respect the aspiration and enjoy watching Jay Leno's garage.\n\nForced to answer though, I want a maximally safe, minimal, all-purpose, off-road capable, mini utility van. I haven't done any research around them because I don't need another desire, but I suspect I could find something like that out there if I spent enough time looking. Aesthetically, I'd prefer it look like a VW bus, but those are extremely unsafe. \N 1624 \N 448057 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 24.3890311364381 0 \N \N f 0 \N 0 200068061 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 14:59:46.434 f \N \N \N 0 0 0 0 0 0 0 456142 2025-03-27 13:32:53.305 2025-03-29 22:39:48.905 Sharpening the Axe # Sharpening the Axe\n\nToday I learned I am a bit rusty.\n\nIt has been 2.5 years since I sold my business and I have worked the odd contract job and projects since then but I haven't had to do much selling of my own personal value proposition. \n\nToday, I had a conference call with the owners of a local small business who are looking for someone to manage the business. Oddly enough, around a year and half ago this business was for sale and I considered purchasing it. I ended up not going through with it because a) I didn't feel I was ready to get back on the horse so to speak and b) there was one element of the business that I was concerned was relationship dependent and I would potentially be exposed to the risk of these customers leaving along with the owner (of 28 years). It seems the business is still doing well and the risk I was concerned about wasn't really an issue, but the new owners didn't anticipate the learning curve and time commitment required to maintain and further grow the business. Hence, why they are looking for someone to take the day to day reigns. \n\nI don't want to beat myself up too much. I think I comported myself well on the call, but I was not impressed with my performance. I felt off the whole call. Slightly nervous and rushing to get my points across rather than that natural, symbiotic flow of conversation when you are on the same wavelength as someone else. I am confident my resume speaks for itself. I believe I can provide great value to this business and whether this arrangement does or does not go through likely hinges more on the nuts and bolts (scope of work, hierarchical structure, remuneration, autonomy etc) than on this call, but no one likes to feel they didn't perform their best. \n\nMy biggest takeaway is even if this arrangement doesn't come to pass I need to think about shaking off the rust and sharpening my axe for the next one or for when I do decide to start my own business again. \n\nIt's time to get back into "game shape". If stackers have any suggestions, tips or tricks for how to be ready for the arena when you have been out of the arena for awhile, please feel free to share. \n\nThanks for reading,\n\nSats for all,\nGR \N 21578 \N 456142 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 4.54393912775988 0 \N \N f 79089520 \N 1 176350779 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443839 2025-03-19 14:39:31.761 2025-03-29 22:39:49.24 \N [![usdc-vs-usdt.jpg](https://i.postimg.cc/wjyZGvbJ/usdc-vs-usdt.jpg)](https://postimg.cc/nXx3sHxc)\n\ncredits to https://twitter.com/dgntec/status/1634621865485271041 https://example.com/ 21247 443830 443799.443830.443839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8135549644194 0 \N \N f 0 \N 0 41955605 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448627 2025-03-22 18:38:02.438 2025-03-29 22:39:49.241 \N I'm going to jump in here and comment as I'm the author of that article. \n\nI originally wrote that piece to warn the Bitcoin community of you and your teams generally shitty behavior at obelisk to your customers. \n\nYour competitors were not aware of that piece until I published it as a PSA. They had no involvement in it's writing or publishing.\n\nSome of the behavior I experienced as an obelisk customer personally from you:\n\nA) promising compensation for delayed miners, crediting it to users accounts, and then NEVER PAYING THEM OUT\nB) being personally named for good reason in the subsequent lawsuit, since you yourself promised compensation in the obelisk discord at the time was coming, including honoring of coupons for future products such as hardware wallet devices https://www.classaction.org/news/class-action-filed-over-obelisks-sale-of-sc1-dcr1-cryptocurrency-miners\nC) generally stringing your obelisk customers along to get them to not join the lawsuit \nD) over promising on delivery times, which were late by months if I recall correctly\n\nOr absolve Ken from obelisk/foundation of \n\nD) over promising on the hashrate of the ASICs your team produced by 1/3rd!\n\nWhen confronted with these facts on twitter you yourself dmed me in a rage, then blocked me. Your company twitter then blocked me. Then your staff blocked me so I can't respond to their comments saying the article was "debunked."\n\nNews flash: calling something debunked doesn't make it debunked. You have to actually provide evidence to the contrary. Which you haven't done. All I've seen you do is hand wave this sordid chapter away as a nuisance to your current enterprise. When it's very very relevant. \n\nI encourage your customers to take a close look at you and your teams history. To verify the information in that article independent of my valid points.\n\nYou would rather have me silenced. \n\nI would rather see you recognized for the animal you are. https://example.com/ 21303 441254 440692.441011.441130.441211.441215.441226.441234.441254.448627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4887878857898 0 \N \N f 0 \N 0 149860920 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 420637 2025-02-28 22:02:43.546 2025-03-29 22:39:49.242 \N I can pull together some stuff on the role punishment in public goods provision, if you want. It's a really interesting topic. https://example.com/ 11523 420571 420571.420637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.48564818490967 0 \N \N f 0 \N 0 216356694 0 f f \N \N \N \N 420571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 183537 2024-06-11 18:44:40.843 2025-03-29 22:39:48.157 The EU Wants to Spy on Europeans’ Internet Use ⋆ Brownstone Institute The proposed EU eIDAS Article 45 would require internet browsers to trust an additional root certificate from each EU member state government. \nThis would allow EU governments to conduct man-in-the-middle attacks to intercept encrypted web traffic within their borders. This is a threat to the identity, integrity and confidentiality on the internet that could empower censorship. https://brownstone.org/articles/the-eu-wants-to-spy-on-europeans-internet-use/ 20993 \N 183537 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5878821643722 0 \N \N f 0 \N 0 143025915 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 76869 2023-10-22 20:51:04.168 2025-03-29 22:39:48.906 Debates on the nature of artificial general intelligence >The original goal of the AI field was to create machines with general intelligence comparable to that of humans. Early AI pioneers were optimistic: In 1965, Herbert Simon predicted in his book The Shape of Automation for Men and Management that “machines will be capable, within twenty years, of doing any work that a man can do,” and, in a 1970 issue of Life magazine, Marvin Minsky is quoted as declaring that, “In from three to eight years we will have a machine with the general intelligence of an average human being. I mean a machine that will be able to read Shakespeare, grease a car, play office politics, tell a joke, have a fight.”\n\n>This pursuit remained a rather obscure corner of the AI landscape until quite recently, when leading AI companies pinpointed the achievement of AGI as their primary goal, and noted AI “doomers” declared the existential threat from AGI as their number one fear. Many AI practitioners have speculated on the timeline to AGI, one predicting, for example, “a 50% chance that we have AGI by 2028.” Others question the very premise of AGI, calling it vague and ill-defined; one prominent researcher tweeted that “The whole concept is unscientific, and people should be embarrassed to even use the term.” https://www.science.org/doi/10.1126/science.ado7069 20439 \N 76869 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.8273234812511 0 \N \N f 79056979 \N 1 75210948 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436493 2025-03-13 15:32:49.08 2025-03-29 22:39:48.908 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/193207) are the updates stackers shared from all their latest work projects.\n\n \N 21578 \N 436493 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 15.8703768867544 0 \N \N f 1019917431 \N 9 50757164 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 13:32:23.115 f \N \N \N 0 0 0 0 3 0 0 455431 2025-03-27 02:28:12.055 2025-03-29 22:39:49.24 \N @ek @kr @k00b\n\nGreat call. Appreciate the update.\n\nA couple thoughts:\n\nReferral program is going to remain a challenge. Most stackers prefer to remain nym on SN and the most likely referrals would be to people they know in the real world. This likely prevents them from referring even though they love and support SN.\n\nWith the above in mind, it SN itself needs to be the primary sales and marketing funnel. I don't think you can rely on organic growth. I continue to be shocked how many highly active bitcoiners on twitter and nostr have never been on SN. Need to capture this low hanging fruit. Personally I would like to see SN accounts much more active on social media and much more proactive at identifying and engaging with potential users. Too busy, hire a social media intern for a couple months, if it doesn't bare fruit move on.\nAlso, fountain ads were great and seemed to work great, go where your audience is, I suggest you do promotion on one of the Bitcoin pods.\n\nTerritories are finally starting to look like the value add I expected them to be.\n\nGet rid of MSM reward payout structure. Don't fool yourselves with artificially inflated numbers, they will not sustain. Keep it as a once a year promotion tied to march madness and do smaller similar promotions throughout the year. Go back to daily rewards or test weekly but no leaderboard.\n\nThat's my 2 sats. https://example.com/ 19537 455429 455429.455431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0044262403051 0 \N \N f 0 \N 0 133388901 0 f f \N \N \N \N 455429 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421301 2025-03-01 15:09:24.705 2025-03-29 22:39:49.241 \N I find this article quite stupid. The imperative and paternalistic tone is childish.\n\nDCA-ing is a way of entering Bitcoin. Lump-sum is another. Not buying Bitcoin at all is another. Going all leveraged is another.\n\nThey all have advantages and disadvantages. Different people with different lives, needs and financial plans should take different courses of action according to what suits them better. Telling the whole world "do this one thing" seems very much arrogant.\n\nI think you could have made a "The issues of doing DCA in comparison with the lump-sum strategy" with 80% of the content you have here and I would have enjoyed it a lot. But, in my opinion, you ruined it with that tone. https://example.com/ 11417 386199 385662.385905.386121.386138.386140.386199.421301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8128184528132 0 \N \N f 0 \N 0 172082434 0 f f \N \N \N \N 385662 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435418 2025-03-12 17:01:52.147 2025-03-29 22:39:49.242 \N paid for search: https://kagi.com/ https://example.com/ 9921 435411 435411.435418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2376432339882 0 \N \N f 317697713 \N 3 137810766 0 f f \N \N \N \N 435411 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421619 2025-03-01 19:49:30.08 2025-03-29 22:39:49.242 \N Remember you are writing it on StackerNews, where people say *fuck it* by earning and/or spending bitcoin/sats.\nAnd SN is expanding... ;)\n\nI mean, ask *normal people* to post here, and after that - ask if they will report incoming sats from this activity ;) https://example.com/ 1094 421613 421549.421613.421619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.02637858911478 0 \N \N f 0 \N 0 91626169 0 f f \N \N \N \N 421549 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441873 2025-03-18 10:47:40.039 2025-03-29 22:39:49.243 \N Myself.\n\nI have for years now not been good to myself, or my relationships. Neglect of work, neglect of what I love to do, neglect of everything - due to my mental health. I have multiple times failed to combat this. I will not fail this time, because this is the last time if I don't want to lose the life I have now.\n\nI have set up a basic plan I want to follow, to fix my sleep, my work ethics, my phone addiction, my overall lack of action. And I will do my best. If not for me, so for the future of my now hopefully expanding family.\n\nFuck this will be tough. https://example.com/ 749 441872 441872.441873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8465507179564 0 \N \N f 0 \N 0 26150830 0 f f \N \N \N \N 441872 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455198 2025-03-26 19:44:28.271 2025-03-29 22:39:49.243 \N Is it worth it to try it with s9 homeheaters? \nWhat is your recommendation for those plebs who are mining with hosted services? Should we try to band together and ask the hosting company to upgrade? Or wait for more stable release? https://example.com/ 16929 455159 455132.455159.455198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.595551859927 0 \N \N f 34098952 \N 1 163755394 0 f f \N \N \N \N 455132 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 377197 2025-01-22 17:51:09.982 2025-03-29 22:39:48.161 [API Key Request] Remindme bot **[API Key Request]**\n\n**Hi, I would like to use API keys with the [Stacker News GraphQL API](/api/graphql) for the following reasons:**\n\nI would like to create a @remindme bot. It will work just like the built-in @delete bot except that I will not delete your comment but reply to it.\n\nSo if you type @remindme 1 year anywhere in a comment, I will reply to you in 1 year.\n\nI will also reply to your command immediately so you know that I have registered your command.\n\nWhen there are private replies or DMs on SN, I will probably use that.\n\nI intend to also make this work for past mentions of me like [this one](https://stacker.news/items/451151).\n\n**I expect to call the following GraphQL queries or mutations:**\n\n- `upsertComment`\n- and whatever the name of the query is to fetch notifications for mentions\n\n**I estimate that I will call the GraphQL API this many times (rough estimate is fine):**\n\ndepends on how many people use it \N 11144 \N 377197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.9740491655762 0 \N \N f 0 \N 0 28650117 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 362892 2025-01-09 19:07:16.092 2025-03-29 22:39:48.165 Share your favorite local project dev environments or resources We are going to be putting a lot more effort into making SN's local dev environment reliable and easy to use so it isn't a hurdle to [contribution awards](https://stacker.news/items/449767). It currently relies on a [docker-compose system](https://github.com/stackernews/stacker.news/blob/master/docker-compose.yml) but nearly everyone experiences issues getting that setup. Someone will fix it until it "works for me" but then it breaks for other people.\n\nBefore I overhaul our setup, I wanted to see if stackers had any remarkable experiences to share that I could learn from. It can be a job you had where they did a great job at this, a project you worked on that did a terrible job, something you've made for yourself, or anywhere in between. What did they get right? What did they get wrong? What do you always like to see? Let it rip.\n\nOnce upon a time @Michelson_Morley shared [this repo](https://github.com/josephholsten/boring/tree/master) along with its contribution guide as an example of a stellar "getting started" experience. So if you have any resources whether a blog, book, or link to a repo where someone also did a great job, please share that as well.\n\nFor fun, every answer that helps me learn more about local project dev in service of us [improving ours](https://github.com/stackernews/stacker.news) will get 1k sats. \N 18637 \N 362892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.83602280943798 0 \N \N f 0 \N 0 36659918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434942 2025-03-12 11:01:06.806 2025-03-29 22:39:48.172 The Prophets of Baal Were Executed (Jordan Peterson, _We Who Wrestle With God_) JBP is not fucking around. \n\nIn the preface of the new book, he gives the biblical account of the prophets of Baal (https://www.gotquestions.org/Elijah-prophets-Baal.html). \n\nCrazy story where the followers of a deviant faith fail a trial against the true god and their followers. Elijah humiliates them: \n\n![](https://m.stacker.news/65119)\n\n...and God's people don't fuck around: prophets are executed, and **"There can be no wealth in the absence of a true moral order"**\n\nThe line has stuck with me for days now, resonating plenty with so many false gods of today. Failed beliefs must be put to the trial, and when their beliefs are shown to not work their proponents must be executed.\n\nHot damn.\n\n \N 18727 \N 434942 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.21218141301138 0 \N \N f 0 \N 0 192126803 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:24:14.498 f \N \N \N 0 0 0 0 0 0 0 447304 2025-03-21 18:58:19.919 2025-03-29 22:39:48.903 Ancient texts, 3000 years old - verifying their gold, and being disappointed. I thought you folks would be some of the few that would actually appreciate this quote. Apparently the gifts of gold in ancient times were not always "good as gold. \n\nHere's a quote from the book 1177 B.C.: The Year Civilization Collapsed: \n\n>But it seems that the gold wasn’t always gold, as the Babylonian kings in particular complained. In one letter sent by Kadashman-Enlil to Amenhotep III, he said, “You have sent me as my greeting-gift, the only thing in six years, 30 minas of gold that looked like silver.” His successor in Babylon, the Kassite king Burna-Buriash II, similarly wrote in one letter to Amenhotep III’s successor, Akhenaten: “Certainly my brother [the king of Egypt] did not check the earlier (shipment of) gold that my brother sent to me. When I put the 40 minas of gold that were brought to me into a kiln, not (even) 10 minas, I swear, appeared.” In another letter, he said: “The 20 minas of gold that were brought here were not all there. When they put it into the kiln, not 5 minas of gold appeared. The (part) that did appear, on cooling off looked like ashes. Was the gold ever identified (as gold)?” \N 2844 \N 447304 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.266590041958 0 \N \N f 0 \N 0 184990141 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:19:21.502 f \N \N \N 0 0 0 0 0 0 0 396048 2025-02-09 02:59:44.407 2025-03-29 22:39:48.906 SN release: nostr login, nostr zap metadata, singular unit(s), more ### nice to haves\n1. nostr login (via @ekzyis)\n - you can now login with nostr and link nostr as an auth method to your account if you have a nostr browser extension installed\n2. nostr zap metadata in notifications when your wallet receives a nostr zap (via @ekzyis)\n - we link to the npub of the nostrich that zapped you and note that was zapped\n - we also include a zap message if there is one\n - we recognize [Zapple Pay](https://www.zapplepay.com/) zaps and correctly link to the zapping nostrich\n - this was requested by @super_testnet and refined with feedback from @nerd2ninja\n3. proper usage of singular and plural unit labels everywhere (via @WeAreAllSatoshi)\n - 1 sat rather than 1 sats\n - 1 reply rather than 1 replies\n - etc\n4. it's been live for the last few days, but \n - we highlight new comments when you return to a thread now\n - it also has a new indicator badge that doesn't cause layout shift\n - we do a better job highlighting replies in threads when you click on them from notifications\n - protip: if you hit the back button after such a navigation, it will highlight the notification you came from so that you don't lose your place\n - we made dark mode slightly less dark for readability (and lots of stackers hate it) \n\n### behind the scenes\n1. we lint PRs in a github action now (via @kevkevin)\n2. you shouldn't lose your push notification subscriptions now (assuming we actually fixed it ... please let us know if you lose yours) (via @ekzyis)\n3. signing up (not logging in or linking) with twitter and github were broken (discovered by @WeAreAllSatoshi)\n4. improvements were made to the local dev env (which has always been wip but it's getting better) ... (feedback from everyone mentioned here and [@wbobeirne@github.com](https://github.com/wbobeirne))\n5. we were unintentionally caching the service worker for 24 hours (the browser default if not told otherwise) which would cause issues for everyone when we pushed updates. We don't cache it anymore.\n6. proper CORS on lnurl withdrawal endpoints (via [@wbobeirne@github.com](https://github.com/wbobeirne)) \N 15052 \N 396048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.49620989469467 0 \N \N f 198875748 \N 1 219922294 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435655 2025-03-12 21:12:55.963 2025-03-29 22:39:48.163 New Website with ASCII Animation: ˭̡̞(◞⁎˃ᆺ˂)◞₎₎=͟͟͞͞˳˚॰°ₒ৹๐ To stretch the reach of defining "art", zap-o-matic lightning node has a new website, bringing the web back to the days of yore (static html/js/css with fun manually coded animations): https://zapomatic.github.io/\n\n![zapomatic.png](https://m.stacker.news/22005) \N 20291 \N 435655 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.61501991804404 0 \N \N f 0 \N 0 112680902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 19:12:33.641 f \N \N \N 0 0 0 0 0 0 0 1176 2022-09-06 15:12:37.68 2025-03-29 22:39:48.903 Public LN Nodes vs. Public LN Channels Over the last few months, I’ve noticed a trend forming among public LN channels and nodes.\n\n[The number of nodes](https://amboss.space/stats?params=eyJtZXRyaWMiOiJhY3RpdmVfbm9kZXMiLCJjYXRlZ29yeSI6ImFsbFRpbWVNZXRyaWNzIn0%3D) has been slowly growing without almost any reversals, while [the number of public channels](https://amboss.space/stats?params=eyJtZXRyaWMiOiJjaGFubmVscyIsImNhdGVnb3J5IjoiYWxsVGltZU1ldHJpY3MifQ%3D%3D) has been doing the opposite.\n\nThe average channel size is getting larger as a result, with the public average now over 7,000,000 sats.\n\nA few questions…\n\n- Who are the new node operators that are relentlessly joining the network regardless of price action and lightning hype?\n- Does this concern you to see channels being closed faster than they are being opened?\n- Do you expect large nodes to have more or fewer channels over time? For context, WoS has over 2,000 channels today \N 16348 \N 1176 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.6314654212063 0 \N \N f 353493451 \N 3 180206667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421778 2025-03-02 01:25:16.4 2025-03-29 22:39:48.907 Sensei Stacked 1.1 million Sats on Stacker News He wasn’t expecting to reach this milestone a month after [he had stacked his first million sats](https://stacker.news/items/558387), so he is delighted. This is especially so because he refrained from posting anything for two days after his 1st June announcement that he had stacked 1 million sats. Thus, he is happy about being able to maintain his usual pacing.\n\nIt’s just that out of the five Legacy articles he had pledged to produce on his June 1st announcement, he only completed *Ten Reasons Why I Like the English Language*. He did write two paragraphs for *Ten Great Things About Singapore’s Education System* and has plans to write about Yamaguchi as one of his top 10 prefectures - but that’s about it.\n\nOf course, he has switched direction. These days, he’s focused on reading his pile of books so that he can recycle them when he is done and declutter his personal space. To this end, he has been successful, as can be illustrated by the flurry of book reviews he submitted to ~booksandarticles. In fact, because of his newfound goal, he actually cut back the amount of time he’s spending here on SN. Which he guesses is a good thing. He was getting addicted to checking out the Leaderboard at all times of the day. Gaining back some self-control is a blissful thing.\n\nHe hopes that he would have finished more legacy articles and decluttered his book shelves more by the time the 1.2 million sats milestone comes around. \N 13174 \N 421778 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 25.8756071324266 0 \N \N f 936633838 \N 11 68137316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 406449 2025-02-17 10:59:22.347 2025-03-29 22:39:48.908 Legend of the Snail | 18/21 participants left | 6 days until next KO | $70,944 ```\n+================================x\n| Welcome to day 393 of the |\n| _ _ _ _ |\n| | |__ (_) |_ ___ ___ (_)_ __ |\n| | '_ \\| | __/ __/ _ \\| | '_ \\ |\n| | |_) | | || (_| (_) | | | | | |\n| |_.__/|_|\\__\\___\\___/|_|_| |_| |\n| |\n| 100k bet! |\nx================================+\n```\n\n| Stat | Value | Change |\n| --- | --- | --- | \n| Last elimination update | https://stacker.news/items/502275 | | \n| Date | 2024-05-12 | +31 days |\n| Participants | 18/21 | +1 |\n| **Prize Pool** | **312,681 sats** | **+16,902 sats** |\n| USD/BTC | $61,011.00 | -14% |\n\n![](https://m.stacker.news/30483)\n\n| Nym | Day | Paid | Elimination Date | Eliminated |\n| --- | --- | ---- | ---------------- | ---------- |\n| @orthwyrm | 260 | X | 2024-02-18 | X |\n| @mango | 359 | X | 2024-04-11 | X |\n| @Alby | 365 | X | 2024-04-21 | X |\n| @siggy47 | 380 | X | 2024-05-18 | |\n| @CheezeGrater | 418 | X | 2024-06-07 | |\n| @ekzyis | 420 | X | 2024-06-11 | |\n| @0fje0 | 427 | X | 2024-06-21 | |\n| @phatom | 440 | | 2024-07-21 | |\n| @486DX2 | 486 | X | 2024-08-20 | |\n| @carlosfandango | 501 | X | 2024-09-07 | |\n| @Lux | 522 | X | 2024-10-09 | |\n| @davidw | 564 | X | 2024-11-02 | |\n| @nikotsla | 570 | X | 2024-11-12 | |\n| @BitcoinIsTheFuture | 584 | X | 2024-11-19 | |\n| @wize123 | 584 | X | 2024-12-01 | |\n| @south_korea_ln | 608 | X | 2025-01-04 | |\n| @Undisciplined | 653 | X | 2025-01-28 | |\n| @grayruby | 655 | X | 2025-02-03 | |\n| @gnilma | 666 | X | 2025-02-26 | |\n| @Longtermwizard | 700 | X | 2025-05-09 | |\n| @Bitman | 810 | X | | |\n\nThis song is for @Alby:\n\nhttps://www.youtube.com/watch?v=jtOrOECJxHY\n\nNext elimination: @siggy47 (6 days remaining)\n\n_Want to participate? Click [here](https://stacker.news/items/363233) for more information._ \N 10586 \N 406449 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 3.45822559025954 0 \N \N f 484579054 \N 3 180875298 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424230 2025-03-03 22:56:19.426 2025-03-29 22:39:48.91 Bitcoin’s Ascent, A Triumph for Truth and Economic Reality | (TDE, Joakim Book) Hashtag shameless self-promotion: https://thedailyeconomy.org/article/all-quiet-on-the-western-bitcoin-frontier/\n\nMy latest piece for _The Daily Economy_ (you can see the original title in the URL; lol, much better than what editor went with...). Some extracts: \n\n\n> Now it’s all “whatever, man; back to work.” Bitcoin’s purpose isn’t some quick financial return in an ordinary pump-and-dump scheme; it’s here to fix the broken monetary world. The number of companies building critical uses (insurance, hardware wallets and apps your grandma can use, fraud detection, home heating, election result verification) truly matches the aspirations of this revolutionary technology[....] it feels remarkably quiet; everyone is just working away, one step at a time. \n\n> We all did our homework by reading, learning, podcasting, publishing books and articles, and thinking about the nature of money in society. On our commutes, on our lunch breaks, before bed, at bathroom breaks, we contemplated the consequences of a fixed-supply money that couldn’t be messed with. We dragged our significant others to conferences — sometimes starkly empty bear market events — opting for Miami, Prague, Lugano, and Madeira instead of Yosemite, Cape Cod, London, or Marseille. \n\nEspecially: \n> Whatever your opinion of bitcoin, **whether you’ve ignored it or studied it closely, whether you think it’s unlicensed gambling, irrelevant noise, or the best thing for humanity** — as the _legacy monetary system gets observably worse, bitcoin gets comparatively better._\n\nPeace\n/J https://thedailyeconomy.org/article/all-quiet-on-the-western-bitcoin-frontier/ 21791 \N 424230 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 3.13226910969192 0 \N \N f 200200474 \N 2 192240514 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 448323 2025-03-22 14:47:39.483 2025-03-29 22:39:49.24 \N If you decide to do a update call, I suggest doing it on something like Jitsi or Revolt as a less shitty Discord alternative.\n\nPromote FOSS while being FOSS. https://example.com/ 2039 448322 448322.448323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8083450289558 0 \N \N f 0 \N 0 182551025 0 f f \N \N \N \N 448322 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450150 2025-03-23 19:15:27.38 2025-03-29 22:39:49.24 \N @kr has been wanting it rebranded to The Saloon for like a year but we were planning on improving it in other ways too. https://example.com/ 21051 173664 173664.450150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.396901844173 0 \N \N f 0 \N 0 185854309 0 f f \N \N \N \N 173664 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437722 2025-03-14 19:57:21.961 2025-03-29 22:39:49.242 \N ![](https://i.imgur.com/AvLV5fo.jpg) https://example.com/ 12139 437713 437670.437713.437722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5586389182376 0 \N \N f 0 \N 0 5491094 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 219168 2024-08-22 17:44:57.915 2025-03-29 22:39:48.165 Squatters Rights? This issue has really blown up all of a sudden. I was completely unaware of how insane the situation had gotten, until just a few days ago.\n\nHere's a good short Stossel [video](https://odysee.com/@johnstossel:7/trespassers-welcome-how-the-law-protects:0?r=8T2xqWjtafHWYGxQBSsrbw1wQPm7sWRq) describing the problem and a solution.\n\nIn short, the police in several major cities are protecting the "rights" of violent home invaders to stay in the homes they've invaded. All the invader has to do is claim to have a lease. The police aren't even allowed to ask to see the lease. In some places, the invader is protected even if they don't claim to have a lease.\n\nAs if that weren't sick enough, the actual homeowners have been arrested for locking the invaders out. It seems obvious to me that the presumption needs to be on the side of the property owner. If they do wrongfully evict a real tenant, then the owner should face civil consequences.\n\nIf left unchecked, this is going to go to a dark place. People will not tolerate having their homes taken over by criminals. People are already resorting to vigilante services to reclaim their homes. I'm sure this will only accelerate the mass exodus we've been seeing from these cities, which will cause a death spiral for what used to be the most productive places on Earth.\n\nHow does this end? I just don't see any political will for a correction in those places.\n\nSats to @Bell_curve for mentioning this a couple of weeks ago, before I knew about it.\n\n \N 20911 \N 219168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.15190131651723 0 \N \N f 0 \N 0 32065185 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450307 2025-03-23 21:06:28.934 2025-03-29 22:39:48.166 Tech Tuesday - Share Your Favorite Tech Products Let's hear all about your favorite tech products, services, or projects!\n\nFeel free to share any new tech you've heard about, bought for yourself, or technology that you just think other stackers should know about.\n\nSend your best 👇 \N 20687 \N 450307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.76992677669949 0 \N \N f 0 \N 0 96691918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407449 2025-02-18 02:22:43.493 2025-03-29 22:39:48.905 My best explanation for why you should write about yourself Unfortunately I cannot recall where I found this passage, would anyone else be able to locate it? Since discovering it, I have used it as a mantra or loose framework for my writing practice. I wish my writing was not so solipsistic, but the problem is that experience is often so overwhelming to me.\n\n> "I have nothing but myself to write about,\nand this self that I have, I hardly know of what it consists.\n I will go in search of it in your presence.\n I will set down on the page a tale of experience just as I think it occurred, and together\nwe will see what it exemplifies.\n Both of us discovering as I write this self I am in search of."\n\nReminiscent to "I think, therefore I am," the idea that 'from out of what I experience we can both learn something' is the base fact that you and I are both experiencing life at once in complexly dissimilar ways, yet we are still able to patch it into a story that we share. I fear we're losing this ability as our realities drift from each other. Do you? Something to think about. . . What restores my hope is information becoming free. \N 21825 \N 407449 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 8.87838345369271 0 \N \N f 393012291 \N 2 109536495 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 113700 2024-01-15 07:50:34.612 2025-03-29 22:39:48.906 Please discuss: Phoenix channels capacity So, I was playing around with Phoenix. Testing all features, logic, displaying messages etc.\nI like to see each LN app using real LN channels, how much is capable to refill or empty those channels, trying to understand the logic behind.\n\nI was doing some tests, trying to refill some channels.\nI thought that Phoenix is using MPP and could receive a payment into all channels, distributing the sats in the best way could find a way.\nBut is not.\n\nNot just that is not spliting the payment in multiple shards and refill all channels available but is not even able to receive a decent amount in each, if I just sent a smaller payment.\n\nAccording to the channels list I have these 4 channels.\n[![phoenix-chans.png](https://i.postimg.cc/LXHCRDqG/phoenix-chans.png)](https://postimg.cc/mc5NyQyS)\n\nSo according to this list, I should have:\nchan A can receive: 10370 sats\nchan B can receive 9620 sats\nchan B can receive 10328 sats\nchan D can receive 10435 sats\n\nI also checked in channels details for how much is the channel reserve and I saw that is a surprisingly only 546 sats reserve for each channel! How is possible only that?\nBut OK, even if I would deduct that reserve, I should be able to send at least 10000 sats for those 3 channels and 9000 sats for the other one. Not talking about sending the total of 40753 sats that it should be available to receive.\n\nPlease, can you explain me how is the logic of these channels?\nI am trying to use the maximum space in these channels but the payment always fail now, whatever amount I use to pay.\nAll channels are active and well.\n\nI would like to hear your opinions / explanations. Please, only those that know what is about. Please do not come with solutions or suggestions "use x wallet". I just want to understand how Phoenix could use efficiently the space in the channels and if it can be improved in some way.\n\nThis is also posted on their github discussion page\nhttps://github.com/ACINQ/phoenix/discussions/365 \N 3304 \N 113700 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.9196145289323 0 \N \N f 165217748 \N 1 205879306 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 392837 2025-02-05 14:54:06.061 2025-03-29 22:39:49.151 Is Swan Bitcoin about to go bankrupt Cory dismissed my post before, calling me "not a customer." ...I was a prospective customer of Prime Trust and had good reason for turning them down!\nhttps://stacker.news/items/189598/r/DiracDelta\n\nAnyway, now it seems likely Prime Trust was rehypothecating and David Bailey has tweeted that there is a 3 month rehypothecation period, which Swan will fall into. I expect if these clawbacks happen, Swan will go bankrupt.\nhttps://twitter.com/DavidFBailey/status/1671876348007022595\n\nAlso, how did Swan do their emergency transfer to fortress unilaterally if it was supposed to be a trust with a firewall preventing movement of funds clients do not authorize? 🧐 Violates qualified custodian laws??\n\nI think Strike has a better chance of surviving due to their more diversified operations and much higher valuation (I don't think anyone would fund reviving Swan).\n\nGTFO NOW IF YOU STILL HAVE FUNDS LEFT ON SWAN... if Swan is honest, they should love this post since they claim they want people to self-custody. Though even if you do, you might still get sued for your bitcoin by shitcoiners and they might win if it was within 90 days.\n\nI have been criticizing Swan for a long time and talking shit about them since they fucked over their customers with a trivial-to-avoid fuck up that screwed customers out of up to 10% of their funds over a several day period. \nhttps://bitcoinmagazine.com/markets/ftx-collapse-cause-huge-bitcoin-price-spike \N 18727 \N 392837 \N \N \N \N \N \N \N \N jobs \N ACTIVE \N 3.97430153768909 0 \N \N f 77364368 \N 1 166797289 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443463 2025-03-19 11:19:02.549 2025-03-29 22:39:48.165 If Lisp is so great... I think this is the most useful thing I've ever read about bitcoin that has nothing at all to do with bitcoin, but rather, about the complexities of the world, the web of interlocking forces that lead to macro action, even when it seems, from certain points of view, that these outcomes are pathological and incomprehensible.\n\n> "Best" sometimes means similar to what we already know and do, only better, easier to use, more powerful, more popular. It becomes harder and harder to change one's mind if one gets used to a certain way of doing things for a long period of time. Take the bike gangster again trying to sell you a bike saddle. The natural, instinctive thing to do when one tries to increase the posterior comfort is to use more cushioning. That works in normal scenarios, like a couch, but not in a road bike. After a certain time threshold, like two hours, comfort increases not by adding cushioning but by removing it. It is not intuitive. Taking an endurance eight hours ride is a completely different sport than a ride in the park. Instinct and past experience does not translate to the new endeavor.\n\nThe examples are simple and evocative. Aside from a dig at Jordan Peterson, which is annoying and stupid coming from someone who presumably has never actually read him (take your own advice on that one, bro), it's a useful meditation on why the answers to why the world is fucked up in the myriad ways in which it's fucked up aren't simple; or at least, the issues are not simple to address at scale. https://mihaiolteanu.me/if-lisp-is-so-great 13467 \N 443463 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 9.09592585985425 0 \N \N f 0 \N 0 19838671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:37:39.856 f \N \N \N 0 0 0 0 0 0 0 435458 2025-03-12 17:35:24.168 2025-03-29 22:39:48.904 [Contract work] Help a Bitcoin onramp in the caribbean integrate NOSTR! Flash is a bitcoin onramp that is set to launch in the caribbean. They want to integrate a nostr group chat and are looking for a NOSTR dev to help integrate it into their mobile app.\n\nEach of the tasks are posted as bounties in the link above. The price for the bounties are negotiable as well. You'll need a sphinx chat to reach out to the poster. Get a connection code after you DL the app by going to this website and clicking "Get Sphinx"-> "Get Sphinx" -> "Reveal connection code". \n\nYou can also reply to this post if you need help. https://x.com/stakwork/status/1710323286071300164 16929 \N 435458 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 7.13900349917871 0 \N \N f 823291195 \N 7 124317023 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:22:19.64 f \N \N \N 0 0 0 0 4 0 0 443167 2025-03-19 05:41:17.346 2025-03-29 22:39:49.24 \N I think he's correct and don't have anything major to quibble with.\n\nIt makes sense for unions to fight for higher pay, but they are up against the inexorable forces of technology, automation, and profit maximization. \n\nAnd one thing I'll add: profit maximization is NOT a symptom of capitalism. Even in communist countries people will seek to maximize profit. They just operate in a different organizational environment, is all.\n\nI predict the first order effect is that economic inequality will get worse. Instead of hiring one supervisor and 10 artists, you now hire one supervisor and one AI to produce the same amount of outputs.. Naturally the supervisor will accrue the gains, but the 10 former artists are out of a job or have to take lower pay.\n\nOf course, there will always be adjustments. These people whose jobs are no longer needed--what will they do, where will they go? Jobs resistant to automation, like personal care, are likely to see an influx of workers, perhaps lowering the wages. There will likely be pressure to unionize those jobs to protect incumbents from the influx of workers, or to put up stringent licensing requirements (again, to protect from influx of new workers). \n\nThere will be a lot of bumps in the road. Product quality might suffer early when AI is not able to perfectly replace human workers. But probably the kinks will get worked out over time, or people will just get used to the new reality of lower cost but crappier products, like we always do.\n\nFinally, the speed of the transformation will depend on interest rates. Lower rates will result in bigger gambles in AI and speed the transition. https://example.com/ 14941 442835 442704.442835.443167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.41949627504414 0 \N \N f 0 \N 0 139811438 0 f f \N \N \N \N 442704 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417018 2025-02-26 02:10:29.492 2025-03-29 22:39:49.241 \N - We can post a job description and get hundreds of the most qualified people within hours. This is because we are working on bitcoin and have a strong mission. Bitcoin is a cheat code for recruiting. \n\n- There are primarily two sets of bitcoin users we attract. Those that call themselves 'bitcoiners' that typically live on bitcoin twitter and those that have no idea about 'bitcoiners' or bitcoin twitter and just want a better way to increase their spending power and savings. The first group is numbers in the thousands, the second group numbers in the hundreds of millions. \n\n- We aim to make bitcoin valuable people today by using the properties that already make bitcoin successful-- a savings technology that can increase purchasing power and accelerate/protect savings. https://example.com/ 4035 416827 416827.417018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.101584196473326 0 \N \N f 0 \N 0 196337941 0 f f \N \N \N \N 416827 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410626 2025-02-20 15:16:45.56 2025-03-29 22:39:49.242 \N > You can now choose your preferred fiat currency from a limited list in settings, which affects both your price in the navbar and when you post a job.\n\nJudgement incoming in 3, 2, 1 ... haha https://example.com/ 9348 410235 408874.409910.409999.410235.410626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.991415954907389 0 \N \N f 0 \N 0 206421746 0 f f \N \N \N \N 408874 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434670 2025-03-12 05:54:03.847 2025-03-29 22:39:49.243 \N I was first exposed to Bitcoin in late 2013 when I moved to Bali. Ubud at that time had the 2nd largest number of Bitcoin ATMs in the world, behind San Francisco! At least that was what I read, and it seemed to hold up because there were indeed lots of them, and most taxis and restaurants were accepting BTC as payment. It was quite a scene.\n\nAnywhoo thinking back on the early adopter OGs I hung out with there, I've concluded that many were early to BTC not because they were ultra-prescient tech/ economic wizards, but more because they were societal dropouts and rebel hippie types. I don't say that with condescension, it was just a theme I observed. \n\nAn alternative financial system and dreams of a pleb revolution are very attractive ideas to certain edgy personalities, and the traits that got some of these folks so excited about Bitcoin when nobody else was paying attention also seem to manifest some other odd duck beliefs and behaviors. \n\nIt appears to me that there is a loose correlation between how early someone adopted BTC to how likely they are to hold some extreme and rigid ideologies, and to have a strong track record of wildly incorrect predictions. \n\nThere are plenty of exceptions to that generalization, and it makes the exceptions even more impressive. Some folks truly just "got it" and still very much get it. \n\nIt's just an interesting thing to think about, that to be a true OG in Bitcoin it required some blend of foresight, intelligence, naïveté, and weirdness - and many OG's are so heavy on a few of those measures that maybe best not to take them on as one's guru. https://example.com/ 9262 434502 433828.434502.434670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9539500415873 0 \N \N f 0 \N 0 10354895 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 158964 2024-04-17 16:02:11.125 2025-03-29 22:39:48.166 We are Foundation, creators of the Passport hardware wallet. AMA! If we can lower the barrier to becoming a sovereign individual, we believe that more and more people will reclaim their sovereignty and freedom. This is not a guess; this is our conviction.\n\nThis starts with Passport, our best-in-class Bitcoin hardware wallet, and Envoy, the perfect companion app for your Passport and a zen-like Bitcoin software wallet. But over the coming months and years we’ll release a suite of hardware and software that makes it easy to become a sovereign individual.\n\nOur focus on educational content and user privacy ensure that no sovereign individual is left behind, and we are continually expanding on our content and improving our best-in-class user experience to ensure that everyone has access to powerful tools for digital sovereignty, no matter what.\n\nPassport is only the beginning 😎\n\n## Our Mission\n\nFoundation builds Bitcoin-centric tools that empower you to reclaim your sovereignty.\n\n## Where to Learn More\n\nOur website: https://foundationdevices.com/\nOur Twitter: https://twitter.com/FOUNDATIONdvcs\n\n## Ask Us About...\n\n- Where Bitcoin fits into sovereignty\n- Hardware wallets role in the space\n- Why software wallets are still important (and our plans with Envoy!)\n- Why we prioritize free and open-source software and hardware\n- The importance of privacy\n- Digital sovereignty\n- Building secure devices that are still enjoyable to use\n- Why we started with a Bitcoin hardware wallet\n- Future plans\n- And anything else you'd like! \N 13575 \N 158964 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.8524430150505 0 \N \N f 0 \N 0 68458246 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451967 2025-03-24 21:26:31.544 2025-03-29 22:39:48.905 Stacker News as a Third Space I first came across the term **third space** in a book about Google written by an ex-top ranking HR executive. In it, he wrote that Google aims to be the *third space* in its employees’ lives. Third space refers to a place other than home and the office, in which people can hang out with others and bask in a shared sense of community and camaraderie.\n\nCame across **third space** for the second time in a second book and hence, felt that I ought to write something about it. I wondered if third space has to be somewhere physical. Instantly, my answer was nope. I realised Stacker News fits the bill for me, because I not only maintain my presence here consistently, but also have other members acknowledge my thoughts and meanderings via their tags.\n\nI talk to you guys more often than I maintain my connections with my real life friends. I reckon the unique value proposition of Stacker News is that you don’t really have to put yourself out there, unlike in face-to-face communications. You can post your thoughts. Whether it’s in a hugely popular territory or some obscure corner, you can share your authentic self. After that, if your thoughts resonate with other Stackers, they will respond. Otherwise, you can move on. It’s minus the nerve-wracking atmosphere in which you put forth a topic in conversation and wait anxiously for your interlocutor to respond.\n\nI bet Stacker News functions similarly as a third space for many of you. Is Stacker News your only third space though? Or are you lucky enough to have many communities in which you can be yourself unreservedly? \N 706 \N 451967 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 2.29474310966538 0 \N \N f 116452418 \N 1 36752055 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444387 2025-03-19 20:45:18.57 2025-03-29 22:39:48.908 [AskSN] What is the current state of Nostr? Once in a while, I visit Nostrudel or Primal, to see what @fiatjaf, @lynaldencontact, @calle, etc have to say. But I must admit, this is far from being a daily or even weekly habit. So I haven't really followed what has been going on there.\n\nI wonder how things are going in regards to the following points:\n- number of clients, is it increasing or decreasing?\n- are most clients social-media type apps? Or are there clients that do some very different things? If so, what are they doing?\n- outside of the internal Nostr ecosystem, do you see more or less apps/websites/software implementing nostr features (identification, NWC, etc)?\n- do you see non-bitcoin people using it?\n- are there more or less devs active in the Nostr community over time?\n- is it truly a decentralizing force for good? Or do people end up falling back on centralized implementations for efficiency/speed/convenience reasons?\n- are you confident about Nostr's future? Or will it remain niche?\n- how is Nostr comparing to the other solutions to censorship? In terms of growth/tech/adoption/...?\n- is funding increasing? Do we see for-profit entities entering the field?\n- are you bullish on Nostr? Will we see a future where the likes of X, etc get defeated? Or will it always be a niche thing?\n- ...\n\nThese are genuine questions. I have no opinion as I really haven't followed it closely. I'm sure there must be write-ups on these questions somewhere, so feel free to point me to them. \N 20706 \N 444387 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.1728801544455 0 \N \N f 191947922 \N 1 162495230 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402481 2025-02-13 19:00:04.623 2025-03-29 22:39:48.909 Why do you think Bitcoin is a good thing for people? One of the questions I often hear from people around me is this: Why do you think Bitcoin is a good thing for people?\n\nThis question has often bothered me. Not because I don't know how to answer it, of course, but because of their negative reaction after my answer. Yes, bitcoin is very important to me. But I want it to be important to everyone. Bitcoin has revolutionized how we understand and use money. However, convincing others of this is a real challenge. Why are there still so many people who don't want to understand it?\n\nYou can probably say that I'm justifying the attitude of people towards Bitcoin and you might be right, but I'm trying to understand why it is so difficult to see the beauty of Bitcoin. Maybe we are also a little guilty of understanding the importance of Bitcoin, but not knowing how to explain it properly to those who ask us and show some kind of interest. Aren't we good Bitcoin "missionaries" to the world around us?\n\nBitcoin is very important to people, even though people don't understand it now. The importance lies in the ability that Bitcoin has to guarantee economic freedom, low transaction fees, transparency, security, and, what is most important, it is unmanipulated by government interventions, especially in those countries where there is political and economic instability.\n\nI am fully convinced that one day, despite the challenges and skepticism that exist about Bitcoin, it will bring positive changes around the world and will play a very important role in the global economy and financial system.\n\nI think the time will come very soon when people will understand this, but I fear that for a large part of them, it will be too late. \N 21207 \N 402481 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.1873085873023 0 \N \N f 224782026 \N 1 230479224 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 224537 2024-09-01 00:38:59.505 2025-03-29 22:39:48.168 What are your thoughts on Jack Dorsey? What are your thoughts on Jack Dorsey?\n\nJack Dorsey is the co-founder of Twitter. Given that he made good money by creating an influential tech company, you would think that he would just stick to what brought him fame and fortune. But, nope. He actually “fraternised with the enemy” by donating about 14 BTC to fund and facilitate Nostr’s development. And that’s not all. He also donated $10 million to OpenSats, a non-profit organization committed to developing free and open-source projects focusing on Bitcoin-related technologies. Plus, he pledged to give $5 million to Brink, a funder of open source core Bitcoin developers. Not just contented with donating money, he got his hands dirty by leading a $6 million seed funding round for Bitcoin payments firm Azteco. We can buy Bitcoin using Azteco vouchers, which are available in 195 countries, which might be a godsend for the unbanked in some developing countries. \n\nHe seems to be all about BTC adoption, as seen by how he donates his time, energy and money to Bitcoin developers. Do you think that he is doing all this out of altruism or that his generosity is tinged with some kind of hidden agenda? \N 17001 \N 224537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4418553758013 0 \N \N f 0 \N 0 191993767 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413720 2025-02-23 12:44:58.017 2025-03-29 22:39:48.902 Congressman Releases Preliminary Investigative Report of Assassination Attempt I'm still super into this thing. There's been quite a bit of smartphone video and LEO bodycams released over the last few weeks, which at least allows better conspiracy theorizing, but this report also came out today. I haven't read through it and I'll probably only watch a video summary of it later, but I'm happy to see the case isn't cold. It's fun to find new suspicious things.\n\n> Notable observations include:\n> - > U.S. Secret Service did not retrieve the radios that had been set aside for them by Butler County tactical command. The radio comms were properly and perfectly arranged during the extensive pre-mission planning.\n> - > All 8 casings (from shots fired by Crooks) were recovered and are allegedly in proper possession of the FBI.\n> - > The 9th shot fired on J13 was from a Butler SWAT operator from the ground about 100 yards away from the AGR building. Shot 9 hit Crooks’ rifle stock and fragged his face/neck/right shoulder area from the stock breaking up.\n> - > The 10th (and, I believe, final) shot was fired from the southern counter-sniper team.\n> - > My effort to examine Crooks’ body on Monday, August 5, caused quite a stir and revealed a disturbing fact… the FBI released the body for cremation 10 days after J13.\n> - > The water tower was cleared by drone J13 AM by the County tactical commander, ESU Commander Lenz himself.\n\nMost of this is completely new. The fact that the 9th shot hit Crooks' rifle is the first we've heard of it, along with all the official investigation details. https://clayhiggins.house.gov/2024/08/15/higgins-releases-preliminary-investigative-report/ 13599 \N 413720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8964094925582 0 \N \N f 224527077 \N 1 1173468 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443593 2025-03-19 12:34:19.925 2025-03-29 22:39:48.905 Any good competitors for Wallet of Satoshi? I'm not arguing for custodial solutions, but given the current state, WoS is basically the only wallet I'm actually using along with Strike, when I need to pay an invoice. I don't have any significant funds in any of those custodial wallets so I don't worry about loosing it, but I do worry about everything centralizing on WoS.\n\nAre there any good alternatives, even custodial?\n\nMore context:\n- Breez rarely works on my iOS phone (past months just constantly crashing), Android works better but not reliable\n- blixt I have to manage channels which is still too much time\n- SBW is gone\n- BlueWallet custodial is gone\n- Muun is in trouble, too high fees\n- Zeus + Umbrel with Tailscale is still nightmare to maintain (I have to manage channels and it stops working every once in a while) \N 20717 \N 443593 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.3541546145971 0 \N \N f 1622229122 \N 13 90236616 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 07:03:55.338 f \N \N \N 0 0 0 0 5 0 0 434434 2025-03-11 22:14:04.519 2025-03-29 22:39:48.906 Why aren't you running a node yet? I want to hear from the stackers who have yet to set up their own Bitcoin Node. I personally have had one set up a couple times in the past and shut them down for a few different reasons, usually complications with my lifestyle being off-grid. I am starting again and I plan to keep it up this time. We all have heard that individuals running nodes is important to the network. And yet, still so few do. Why is that? I also want to hear about why it is so important. I want to hear from you all. Thanks for sharing. 💚 \N 15488 \N 434434 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.7713949446769 0 \N \N f 68555725 \N 1 184071842 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 00:59:02.912 f \N \N \N 0 0 0 0 1 0 0 401666 2025-02-13 10:00:57.691 2025-03-29 22:39:49.24 \N Ditch the idea of subs all together and go with a tag system. Obviously this would be a monumental change but it is food for thought. \n\nInstead of having a Bitcoin sub, a privacy sub, a jobs sub, a development sub, an AI sub, an Art sub, etc, you could make it so one tag per post is required, the remaining tags come at an increasing cost \n\nThis way I can select tags in interested in and even merge tags to curate threads more specific to my interests. \n\nI might be particularly interested in AI+technology or Bitcoin+development and Bitcoin+art but I may want to blacklist AI+art. \n\nThis could eliminate the need for cross posting and having a million subs for specific different reasons. If I'm just searching Bitcoin, I'd see all posts with that tag except for combos I've told the algo I don't like. Maybe if I search privacy, I'll see Nostr+privacy posts and Bitcoin+privacy posts and privacy+tech post. \n\n\nModeration would become increasing difficult with however more tags were introduced. A system where we can downvote with sats that would maybe be redistributed to positive contributors could lead to a pretty decently self regulated ecosystem. \n\nJust an idea of had about improving Reddit in the past that could be applied here (potentially) but I'm no backend guy so I imagine this is a big ask https://example.com/ 18241 401611 401611.401666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.00749403428254 0 \N \N f 0 \N 0 111542144 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434909 2025-03-12 10:32:39.795 2025-03-29 22:39:48.903 Blixt v0.6.9-420 | New big feature: Lightning Box ### Blixt Quick Release Guide (Lightning Box)\n\nToday Blixt Wallet released a new important feature that allow Blixt users to have their own Lightning Address, through a Lightning Box service.\n\n[Here are the release notes for this v0.6.9-420](https://github.com/hsjoberg/blixt-wallet/releases/tag/v0.6.9-420) (yes, the release number is to honor the ATH Bitcoin price).\n\nFor the moment the default LN Box is run by Blixt server and offer a @blixtwallet.com LN Address.\nBut ANYBODY with a LND public node can run the Lightning Box server and offer LN Address for its own domain, self-custody.\n\nRight now, the Blixt server is only forwarding the payments to Blixt users. Users must put their Blixt node wallet in "persistent mode" in order to receive these payments to their @blixtwallet.com LN addresses.\n\nIs like a chat over LN, instant and fun, also supporting LUD-18 (adding an alias name to a payment). You can add in contact list all your regular LN addresses you are using frecquently and have it at hand for chatting. Now Blixt can be considered a full LN chat app 😂😂.\n\nAnother useful feature is the full support fro [LUD-18](https://github.com/lnurl/luds/blob/luds/18.md) (that also SN is supporting it).\n\n![blixt-testing-lnaddr.jpg](https://m.stacker.news/5603)\n\nAs you can see in the screenshot attached, sending from SN account, it displayed nicely the logo + LN address + message.\nSame works for sending from Blixt, you can attach your Blixt LN Address or simply add the alias name (previously set in Blixt settings), or both.\nThis option from LUD-18 could be useful also for subscription services, where user can send a specific alias (is NOT your node alias or your real name!) and based on that you could be registered or receive back a specific message or whatever else.\nAttaching an alias name ([LUD-18](https://github.com/lnurl/luds/blob/luds/18.md))+ comment ([LUD-12](https://github.com/lnurl/luds/blob/luds/12.md)) to a LN payment can have multiple use cases!\n\n- See in the [release notes the video demo](https://github.com/hsjoberg/blixt-wallet/releases/tag/v0.6.9-420) about how to setup your LN Address in Blixt.\n- [Here is the code for Lightning Box](https://github.com/hsjoberg/lightning-box) if you run it for yourself, for your family and friends, on your own node.\n- [Here also you can run the LSP Dunder server](https://github.com/hsjoberg/dunder-lsp) for Blixt mobile nodes and offer liquidity for Blixt users if you have a good public LN node (works only with LND).\n\nHappy Lightning with Blixt Node Wallet!\n\n[![Blixt-order669-420.jpg](https://i.postimg.cc/j5FNpWT5/Blixt-order669-420.jpg)](https://postimg.cc/Pp1PZ5Ps) \N 21521 \N 434909 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 7.67308519815519 0 \N \N f 0 \N 0 236982479 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:35:28.038 f \N \N \N 0 0 0 0 0 0 0 404422 2025-02-15 21:27:48.865 2025-03-29 22:39:48.911 National Divorce aka Secession [When Nationalism Fuels Decentralization and Secession: Lessons from the Cold War]\nBy [Ryan McMaken](https://mises.org/profile/ryan-mcmaken)(https://mises.org/wire/when-nationalism-fuels-decentralization-and-secession-lessons-cold-war)\n> If we say secession in the name of national liberation is bad, we end up supporting the Soviet Union, and every empire or two-bit dictator who manages to hammer together a variety of disparate groups under a single national banner.\n\nI'm fascinated by secession movements, as well as related separation and partition movements. I see such enormous potential gains from making it easier for places to change the administrative unit they belong to.\n\nOn one extreme we're talking about a nation fracturing into several smaller nations. I think this would benefit the US tremendously and has been made much more palatable with the "National Divorce" rebrand. The US is clearly a dysfunctional union of societies that want nothing to do with each other.\n\nOn the other extreme, there are no realignments at all, but the threat of exit forces policies to be better tailored to those who would leave. For example, Catalonia being granted more autonomy, but remaining part of Spain.\n\nWhat do other Stackers think about this topic? I'm particularly interested in non-US perspectives, since I'm less familiar with those. \N 18494 \N 404422 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 11.3223159291048 0 \N \N f 131645152 \N 2 169132036 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 428866 2025-03-07 17:02:57.113 2025-03-29 22:39:49.24 \N I've been trying to figure out MSTR's valuation. You can't strictly compare their bitcoin holding to their market cap due to their USD debt load. As you mention, there's also the underlying value in their business. But there's no good way to square these three aspects. The best I've been able to do is cancel out their business income with the cost of servicing their debt, but that still assumes access to capital at current interest rates, etc..\n\nIn the end, it's basically a leveraged play on the price of bitcoin coupled with a short position on their effective real interest rate. Both of those are well positioned right now, but I think there are more factors at play - 61% of MSTR shares are held by institutions. These may be restricted in the types of investments they can make. Perhaps custodying their own bitcoin wasn't an option to them, nor the ETFs. In that case, buying the MSTR bonds may have been a unique opportunity that could result in an increased demand for MSTR beyond the underlying bitcoin price. My thinking is there must be more of these types of investors where MSTR is somehow their best option.\n\nBeyond all of that, there's rampant speculation as well. Something like 21% of the MSTR shares available to trade are held short. This is actually down substantially from previous weeks. This active short squeeze is just another dimension to the puzzle, but it has definitely been boosting the share price.\n\nConclusion: I have no idea what Microstrategy's fair value really is. https://example.com/ 21485 428818 428670.428723.428818.428866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6430382259742 0 \N \N f 0 \N 0 182471308 0 f f \N \N \N \N 428670 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455648 2025-03-27 08:46:05.239 2025-03-29 22:39:49.243 \N # Nunchuk.io / Nunchuk wallet\n## Pros\n* AFAIK this is the only non-KYC multisig custodian.\n* Their app has a encrypted chat feature which can come in handy when trading BSMS or PSBT files.\n* Supports a wide range of hardware wallets.\n\n## Cons\n* Their desktop app is in beta but I found it to have lots of bugs.\n* Linux desktop app uses a very outdated libssl package that you can't install in modern distros.\n* Their mobile client does not work with hardware wallets like the ledger nano s plus.\n\n# Unchained\n## Pros\n* Does not cost anything for the basic model until you actually need to use them as a signer.\n\n## Cons\n* Does not support seedsigner\n* KYC Required.\n\n# Casa\nThis is the one I have the least hands-on experience with.\n\n## Cons\n* The most basic model costs money even if you never use them as a signer.\n* They now support Ethereum ( might be a pro for some ).\n\n# DIY method\nIf you have a friend who uses bitcoin you can create a 2/3 multisig and use their signature as one of the sigs.\n\n## Pros\n* If you use your friends sig that they use for themselves they have an incentive to keep it safe/backed up.\n* non-KYC.\n\n## Cons\n* If you give the descriptor to your friend, or a BSMS, your friend can see how many sats you have.\n* Probably more likely your friend looses their signing device/backup than a company loosing theirs. https://example.com/ 16834 451967 451967.455648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.89954659143801 0 \N \N f 0 \N 0 116452418 0 f f \N \N \N \N 451967 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434597 2025-03-12 03:53:48.739 2025-03-29 22:39:49.243 \N [Rene Pickhardt](https://www.youtube.com/user/renepickhardt/videos) - short tutorials about LN\n[Ioni Apleberg](https://www.youtube.com/user/waem/videos) - animated videos about Bitcoin, very good ones for nocoiners\n[BitcoinTV.com](https://bitcointv.com) - one of the most concentrated place with videos and channels about Bitcoin, a must follow\n[ChainCode Labs](https://www.youtube.com/channel/UC9OcX1kIjsowRRZzl8tD27w/videos) - deep dive into bitcoin and LN, very good technical videos\n[Simply Bitcoin](https://www.youtube.com/c/SimplyBitcoin/videos) - daily wrap up and shaming shitcoins\n[Kevin Rooke](https://www.youtube.com/c/KevinRooke/videos) - very good interviews about BTC/LN\n[Satoshi Radio Connect the world](https://www.youtube.com/channel/UCLMp5bH-rY9aEVwfLQ3oq4Q/featured) - really nice interviews with node operators and LN in general https://example.com/ 10591 434522 434278.434503.434522.434597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.92904374714495 0 \N \N f 121792696 \N 1 16246772 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443268 2025-03-19 08:14:56.402 2025-03-29 22:39:48.905 What if a malicious actor spun up 1000's of nodes? So with the Blackrock spot ETF looking like it will become a reality, I've been thinking about this. \nLet's say that Blackrock wanted to impose a change to the consensus rules, they could use their money to spin up thousands of bitcoin nodes running their software/consensus rules and form a majority. \nThere are currently about 50k ish btc nodes (https://luke.dashjr.org/programs/bitcoin/files/charts/historical.html) and that is nothing for a big player to top. \nAssuming a crazy expensive cost of US$ 1000 per node, with like 55 million dollars they can have a majority of nodes. That is pocket money for someone like Blackrock. \nWith that in mind, shouldn't we be focused more on increasing the number of plebs running nodes instead of focusing on a "security budget" that may or may not become a problem several years from now?\nOr am I just missing something? \N 20657 \N 443268 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 19.6403004421172 0 \N \N f 275795570 \N 3 74977629 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:48:49.87 f \N \N \N 0 0 0 0 2 0 0 396409 2025-02-09 11:34:13.982 2025-03-29 22:39:48.908 Time preference - Mises Wiki Thought I'd share this wiki post on the concept of _time preference_. This was prompted by a [comment](https://stacker.news/items/498633/r/kepford?commentId=498779) from @gmd.\n\n> why are we always so quick to label stuff we disagree with or dislike as "fiat"\n\nI do think this is a valid point. I do think it is easy to just take the shortcut and blame fiat for everything. Many of us in the bitcoin world however first learned about many of the concepts that inspired bitcoin's design before we discovered bitcoin. I'm one of them. Time preference is one of the ideas that I first learned about many years ago before I was into bitcoin. Bitcoiners throw this term around and I believe many have no clue about its origins and have a rather simple view of what it means. \n\nExamples of this are thinking high time preference is always bad. Time preference is amoral. It just is. Bitcoiners can be high time preference. Fiat maximalists can be low time preference in some of their actions. The point is that things like currency, money supply, and centralized management of economics create incentives that affect time preference. This wiki is a good overview of the concept of time preference. https://wiki.mises.org/wiki/Time_preference 3360 \N 396409 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.4005756690239 0 \N \N f 380807185 \N 2 232710836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410756 2025-02-20 16:59:06.662 2025-03-29 22:39:49.151 Sensei Stacked 600k Sats on SN Sensei was on a mission to accumulate one million sats on SN. Hopefully it would not take him 3-4 years to attain the milestone. After all, it had taken him about 14 months to garner 500k sats.\n\nMarch 2024 would be fondly remembered as a period where several interesting forces collided. First, the Million Sats Madness - where Stackers were deprived of the Daily Rewards (let’s call a spade a spade, ya) - motivated him to post more than usual. The influx of territories also allowed him to be a social butterfly, flitting from one area to another. More importantly, an unknown source of motivation held him hostage. He was hell bent on decluttering his photos and papers to free up mental energy. In fact, he had a slogan these days: [Get your shit sorted out](https://stacker.news/items/397223).\n\nHis small actions might have paid some dividends. Last Friday, he posted a photo about how elephants fear chilli. 🌶️ He had taken it some while ago when he visited the Singapore Zoo - but life got in the way, so he never posted it for Fun Fact Friday. \n\nHowever, with the number of his photos stored on his iPhone gradually decreasing, he rode on the rush of adrenaline to post it for Fun Fact Friday.\n\nGuess what? His random posting won him Fun Fact Friday!\n\n![IMG_1254.png](https://m.stacker.news/21382)\n\nGuess what? He got 10k sats, which helped him tip over the scales to 600k sats!\n\nSo, it took him about a month to accumulate 100k sats here. Moral of the story: Everything you own is an sats-earning opportunity. Just get your shit sorted out.\n\nSending some happy sats to @hodlpleb. \n\n\n\n \N 16447 \N 410756 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 9.15349004684991 0 \N \N f 186814074 \N 3 221135973 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431235 2025-03-09 16:05:28.165 2025-03-29 22:39:49.238 \N letting anyone create their own subs, and the requiring a small monthly fee to be paid by sub creators. \n\nthe sub creators would also earn a portion of all post, comment, boost, and zap fees which would incentivize sub creators to create thriving communities. https://example.com/ 9347 396048 396048.431235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5654409847762 0 \N \N f 0 \N 0 198875748 0 f f \N \N \N \N 396048 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431176 2025-03-09 16:01:18.623 2025-03-29 22:39:49.241 \N Excellent question and setup.\n\ntl;dr It's (1) that I'm optimistic generates many productive (2). They're incredibly interwoven and I struggle to consider them separately tbh.\n\n> you're building a kind of community where x happens\n\nGenerically, I think our X is money<>information exchange. If we boil X longer, I think it's value exchange and imo community ***is*** value exchange, a uniquely personal and attentive form of it. (imho community is the best form of value exchange.)\n\nAll online communities are information exchanges but they're stuck in information barter, ie I give you an information apple for an information orange.\n\nIf we can create a money<>information exchange, my hope is it leads to a more efficient information trade and an information invisible hand.\n\nUltimately, I don't want to prescribe what happens here. I want people to pay for what they want to happen here, give them the tools to pay for it, and tools to receive what they paid for. Likewise on the supply side.\n\nIf I had to dictate what happens here, it'd be 70% learning and 25% camaraderie and 5% entertainment but why dictate that when I can let everyone choose for themselves in relative isolation?\n\n> what, if any, kind of steering do you do, or do you consider doing, as SN evolves? Feature development is a clear way to steer, approach 1-style. Are you steering in other ways, too?\n\nTony is a canary suggesting we've outgrown a one-size-fits-all commons. Fixing the one-size problem I believe fixes the hypotheticals you shared.\n\nI don't want to steer. I don't want SN to be a bus. It's a network of well maintained roads to attractions you all create. I want stackers to have their own cars. I want stackers to take their wheel.\n\nWhen we have subs, those will be cities. When we give sub creators economic tools, they will build their own transportation systems within their cites. We hope to even allow cities within cities within cities. But I'm getting ahead of myself ...\n\nHopefully that's revealing. I don't think I've yet communicated these desires very well outside of myself yet - except to maybe @hq. https://example.com/ 14472 410197 410197.431176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8447383573145 0 \N \N f 0 \N 0 180736621 0 f f \N \N \N \N 410197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458365 2025-03-29 08:24:04.323 2025-03-29 22:39:49.241 \N That's an unfair judgement because this was live reporting in the seconds it was happening. \n\nIf you look just minutes later all these outlets do use the words "assassination attempt" https://example.com/ 1319 458359 458347.458351.458359.458365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4297678455206 0 \N \N f 0 \N 0 61811158 0 f f \N \N \N \N 458347 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438009 2025-03-15 06:00:31.669 2025-03-29 22:39:49.242 \N Creator here, thanks for sharing @kr! https://example.com/ 18473 392677 392486.392677.438009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.74125133093777 0 \N \N f 0 \N 0 116202318 0 f f \N \N \N \N 392486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431191 2025-03-09 16:02:21.895 2025-03-29 22:39:49.247 \N OH SNAP I got a hat! They say a stacker with a hat is lot like the mule with the spinning wheel. No one knows how he got it and danged if he knows how to use it. https://example.com/ 1122 405427 405427.431191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.23260950918776 0 \N \N f 0 \N 0 86249241 0 f f \N \N \N \N 405427 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456698 2025-03-27 19:28:24.827 2025-03-29 22:39:48.906 Creating and managing strong passwords Today I want to talk about creating strong passwords, because this is the first and one of the most important steps to secure your online activity. Let's figure out how to create passwords that are strong and hard to crack.\n\n🔐**Password length**. The longer the password, the harder it is to crack. I recommend using at least 25 characters and avoid obvious combinations like your date of birth, your pet's name, etc.\n\n🔐**Special characters**. Use lowercase and uppercase letters, numbers, and special characters for greater complexity. Or password phrases of at least 6-7 words. This is enough entropy to protect your accounts. \nExample password: "MnV&aoM3xnQu!4Cm#n%792tgF!GD7f4ec^$" \nExample passphrase: "causing-bakery-landmass-thermal-oversleep-skipping-recycled"\n\n🔐**Uniqueness**. Obligatory rule - different passwords for different accounts. The password must never be repeated. Many people neglect this rule.\n\nHow do you create such passwords and don't forget them? It's simple - password managers. These are programs that generate complex passwords and store them in an encrypted form, so that nobody but you can access them. The only password you need to remember is the password from the password manager itself. It too should be complex enough, but in a way that you will remember it.\n\nI recommend using open source password managers such as KeePassXC, Bitwarden. By no means use password managers built into your browser and do not use popular ones like 1password, LastPass. These companies have been hacked, plus they have closed source code.\n\n**KeePassXC** is a completely local password manager. That is, it creates an encrypted database offline. And then you can move that database between devices. \n\n**Bitwarden** (I use it) is a cloud-based password manager. The database is encrypted offline on your device and transferred already encrypted to the cloud, so you can conveniently sync between devices.\n\nWe recommend that you change your passwords at least once a year for important accounts.\n\n*Bonus. A service where you can enter your email address and check if your passwords have been leaked and in which services - [haveibeenpwned](https://haveibeenpwned.com/). \N 7960 \N 456698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7000494839526 0 \N \N f 218362303 \N 1 191760354 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444556 2025-03-20 02:24:13.216 2025-03-29 22:39:49.24 \N Man I havent even introduced the sub yet!!! Glad to see it working as intended :) https://example.com/ 1584 444538 1620.444538.444556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.40958335057582 0 \N \N f 0 \N 0 131434198 0 f f \N \N \N \N 1620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422770 2025-03-02 17:24:38.1 2025-03-29 22:39:49.242 \N \nThis like our daily developer standup!!😀\n\nWe launched https://blockheightdate.com/ as a community tool. Adding a few more fun tools over the coming weeks!! Its a simple app at the moment but we will slowly buidl https://example.com/ 20980 422764 422717.422735.422756.422764.422770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0751806369977 0 \N \N f 0 \N 0 110973054 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417054 2025-02-26 03:32:27.899 2025-03-29 22:39:49.242 \N Thanks very much for the kinds words. \n\n[That post](https://stacker.news/items/333010) is one of my favorites and I'm super interested in talking about it still. That's true for most of them, I suppose, which makes it so delightful when an older one bubbles up again. So it's not too late for you to read _Broken Money_! I'll engage with any new comments on my posts as fully as I would on the day the posts were made. I suppose eventually that might stop being true, but not yet. I also suspect the usual book club suspects like @k00b and @Undisciplined would do the same.\n\nWrt book club: part 5 was broken into a number of individual posts, in an attempt to not overwhelm me or get me fired from the time stoking / babysitting the mega-threads, so you've already seen them, they just don't have as prominent titles as the other parts do. (That was a mistake, in retrospect.)\n\nI still have part 6 to complete, but as you inferred, I kind of ran out of steam toward the end of the year due to being split into many pieces; that combined with the fact that the last section of the book was one where I felt like the implications had been discussed extremely well in other places, mainly by Alex Gladstein in his [books](https://alexgladstein.com/home/books/) and [other writings](https://bitcoinmagazine.com/authors/alexgladstein). Even the mainstream Libertarians do [a good job](https://mises.org/library/ethics-money-production) on this one, which is rare on any btc-adjacent topic.\n\nIn other words, the narrative around the human rights implications of btc is already excellent and most people who know anything about it tend to know the best arguments, which is not (imo) the case for the topics dealt w/ in the other parts of the book. So Lyn had a much smaller lift in part 6, which is good for her, but that makes it less interesting to me.\n\nAnyway, you've inspired me to [shoot the cowboy hat off this thing](https://stacker.news/items/386711/r/elvismercury) as @Bitman might say. So look for part 6 in the coming days.\n https://example.com/ 10979 417052 417052.417054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0973716759681054 0 \N \N f 0 \N 0 198108623 0 f f \N \N \N \N 417052 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423060 2025-03-02 23:12:17.224 2025-03-29 22:39:49.244 \N Original logo has Bitcoin Wizard vibes, new one looks good but has professional company vibes.\n\nI prefer the original. https://example.com/ 20646 422863 422863.423060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.03809879137957 0 \N \N f 0 \N 0 191580259 0 f f \N \N \N \N 422863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423364 2025-03-03 09:36:56.486 2025-03-29 22:39:49.245 \N I used to think the way you do, but tables turn after you hit your 30s. After that, males, especially those with stable incomes and decent personalities, have a much easier time in dating than females do.\n\nThat being said, my personal advice: get better, not bitter. Work on your own self betterment rather than dwelling on the injustices of life.\n https://example.com/ 16357 423314 423314.423364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0151933200601 0 \N \N f 0 \N 0 104130276 0 f f \N \N \N \N 423314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415281 2025-02-24 16:48:59.552 2025-03-29 22:39:49.246 \N I wasn't sitting on it haha\n\nWas going to remove the description hash check because a lot of people are doing that now, found that issue instead https://example.com/ 20019 413357 413357.415281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0127295685906 0 \N \N f 0 \N 0 232649417 0 f f \N \N \N \N 413357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403474 2025-02-14 20:55:21.541 2025-03-29 22:39:49.247 \N Hey Tony! If Lightning has an OWASP Top Ten, what would be at the top of the list? https://example.com/ 21794 403323 403323.403474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.32460118967929 0 \N \N f 0 \N 0 117560372 0 f f \N \N \N \N 403323 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431083 2025-03-09 15:20:15.121 2025-03-29 22:39:49.247 \N I plan to start playing with Nosrt. Not in a sense of using it to publish content, but in a sense of building things on top of it, such as clients, tools, games, integrations, etc. https://example.com/ 21202 431040 421367.431040.431083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5522084509335 0 \N \N f 0 \N 0 228700988 0 f f \N \N \N \N 421367 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448518 2025-03-22 16:48:06.739 2025-03-29 22:39:49.249 \N I'm building a cabin during the weekend using old-school carpentry tutorials by Larry Haun 😀\n\nSo far I've finished the foundation and framed the floor:\n\n![foundation & floor frame](https://i.ibb.co/7nMGTWN/foundation-and-floor-frame.jpg)\n\nLater today I'll be laying down the plywood 😉 https://example.com/ 2748 447453 447453.448518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.15373110705669 0 \N \N f 335811423 \N 2 54071269 0 f f \N \N \N \N 447453 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456994 2025-03-28 03:33:26.801 2025-03-29 22:39:49.251 \N It still feels like clarity is what's missing the most here. As always we, bitcoiners, all seem to be in general agreement, but we over-focus on the small differences that are often caused by just misunderstanding each other. \n\nSo we seem to be in a situation where there are multiple competing proposals that try (slightly) expanding the expressiveness of bitcoin Script and there are multiple usecases that people are hoping for that require this expressiveness. \nOf course when expanding expressiveness of programming language, it's not possible to foresee how it's going to be used in future, but at the same time having couple actual needs and usecases in mind helps. \n\nIs there a table that would do a good job summarizing what are all the proposals and what usecases would be enabled by any of those? (formatting wise something [like this](https://en.bitcoin.it/wiki/Bech32_adoption)) Hopefully that would at least yield clarity into what proposals should be clearly subsumed by others and only leave small number of actually competing ones. \n\nFor each of the proposals it would be amazing if we can get\n- How many lines of code it changes (e.g. using draft/example implementation)\n- Which other proposals can be used to simulate the same behavior (and what would be the extra cost)\n- What are the incentive changes for Miners, Node Runners, Users, Exchanges... \n- Who are the main proponents/drivers\n- Who are the main customers \n\nIs there such a table? \n\nAnd further on my wishlist - it would be amazing to have someone great like [Elle Mouton](https://ellemouton.com/) write the deep-dives, explanations and comparisons in easy to digest way. https://example.com/ 12334 456668 456668.456994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2109653684895 0 \N \N f 0 \N 0 168985247 0 f f \N \N \N \N 456668 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448244 2025-03-22 14:04:11.679 2025-03-29 22:39:48.906 The Economics of Dune [Dune (novel)](https://www.goodreads.com/book/show/44767458-dune) is an all-time masterpiece of science fiction and it contains more economic insight than any academic course in *Keynesian* economics one could take. \nOne of the most prominent economic concepts explored in the novel is the interplay between scarcity, value, and utility. \nIn the harsh desert environment of *Arrakis*, water scarcity is a central concern for its inhabitants.\nFor the *Fremen*, Water holds immense value as a precious resource essential for survival in the arid landscape. \nThe Fremen's intricate water conservation practices, such as the use of stillsuits to recycle bodily fluids, highlight the importance of resource management in the face of scarcity: \n**water holds a higher marginal utility compared to spice (Melange), as spice is relatively abundant on Arrakis compared to water**. \nOn the contrary, for the *Imperium*, *Melange* is the most crucial resource in the universe as it enables interplanetary trade and, from their perspective, it is very, very scarce. \n\nFurthermore, the concept of trade and commerce is evident in the dealings of the *Spacing Guild* and the *CHOAM* corporation.\nThe Guild's monopoly on space travel and the economic interests of CHOAM demonstrate the influence of trade networks and corporate interests on galactic economics. \nDune also delves into the psychology of economics, exploring themes of scarcity mentality, resource allocation, and rational choice.\nCharacters like *Paul Atreides* navigate complex economic and political landscapes, making strategic decisions to safeguard their interests and achieve their goals:\n"**He who can destroy a thing has the real control of it**". \N 837 \N 448244 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 27.6732080953398 0 \N \N f 226834381 \N 1 76165628 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:23:11.269 f \N \N \N 0 0 0 0 1 0 0 458267 2025-03-29 06:40:20.036 2025-03-29 22:39:49.24 \N ![](https://i.postimg.cc/2StzzzDn/meme.jpg) https://example.com/ 16556 458111 458011.458111.458267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.33315698882226 0 \N \N f 0 \N 0 178586138 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401658 2025-02-13 09:55:08.544 2025-03-29 22:39:49.242 \N Curious about the claims myself, but Carl is def talented and the marketing around it is great. For those that don't know, he also runs the proxy that allows you to purchase Mullvad via LN. https://vpn.sovereign.engineering https://example.com/ 21349 401113 401113.401658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5052546673128 0 \N \N f 0 \N 0 7575596 0 f f \N \N \N \N 401113 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421592 2025-03-01 19:14:55.699 2025-03-29 22:39:49.242 \N It means just because some use-case could be solved with proof of work, it doesen't mean you should expand the bitcoin protocol to include that use-case such as DNS. It's because they are separate applications; DNS is a data service, bitcoin is a hard asset. He isn't saying you shouldn't buy domains with bitcoin. He also is essentially saying NFTs shouldn't be recorded on the bitcoin blockchain itself such as storing an image or a movie in a block. If you want to make your own POW based storage service, fine, but don't try to shoehorn it into a monetary asset because they have very different requirements and design constraints. https://example.com/ 2039 421588 421572.421588.421592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.29793087981919 0 \N \N f 0 \N 0 246234766 0 f f \N \N \N \N 421572 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434850 2025-03-12 09:32:56.876 2025-03-29 22:39:49.244 \N Day 171 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 13177 433828 433828.434850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3151819652857 0 \N \N f 420447947 \N 3 167082239 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434499 2025-03-12 00:48:38.279 2025-03-29 22:39:49.246 \N You can't be serious.\n\nIt is demonstrated in my family every September when the kids return to school, and first they get sick with the crud, and then it reaches the rest of us until each and every one has had it. https://example.com/ 8416 434497 434469.434497.434499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7725815373203 0 \N \N f 208454710 \N 1 113154965 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443636 2025-03-19 12:47:29.725 2025-03-29 22:39:49.247 \N If I had money this is how I would do it:\n\n> If you were to try and compete with Apple and Google to spin up a viable competitor, how would you approach the challenge?\n\nCreate a large scale open-source project and back it behind an organisation/company similar to the AOSP, Ubuntu or Sourcehut business model. Initially start as a project for other devices to reduce cost and achieve funds, and eventually work with an OEM to manufacture a hardware device for that with said funds.\n\n A possible solution is crowdfunding like Purism and MNT Reform did, I think it could work well if done correctly. GrapheneOS's non-profit organisation + co-operation with OEM's approach could also work if not to start a business or crowdfund.\n\nPINE64 often sells products with minimal profit and lower specs/quality assurance at the start of the product releasing so the first people to buy are developers, testers and early adopters. They then usually raise the price after quality of the software improves.\n\nA problem with these other projects business wise I think worth to note:\n\n- Purism: Costly and limited product stock. For years I have never been able to get one, and I have heard the phone isn't that great either. The Linux Desktop-Mobile hybrid OS' kind of are not there development wise.\n\n- GrapheneOS: Has no hardware of it's own right now, a very successful project nonetheless. But it also isn't trying to be a competitor against Apple and Google for the sake of platforms but for the sake of security and privacy. GrapheneOS uses Android as the base has tough security models already.\n\n- PINE64: Mainly development kits rather than stable devices. I would not use my PinePhone as a daily driver. Has the same flaws Purism has but is way more successful due to the cheaper price in my opinion.\n\n- Solana Saga: Depends on a shitcoin, is just an Android phone with a "Web3" skin.\n\nNone of these projects other than GrapheneOS seemingly take security/privacy as the #1 priority either. Purism is more for the 'freedom' aspect, it is just a Linux desktop / Raspberry Pi like device with a cellular radio in a phone form factor. Developers of hardened Linux operating systems have made comments on [the flaws of mobile Linux already](https://madaidans-insecurities.github.io/linux-phones.html).\n\nThe DEFINITIVE platform should be as secure as GrapheneOS or better, as cheap as Pine64 for easy adoption, and be focused at a large audience INCLUDING normal guys you find on the street. Unfortunately for success you need to also *be compatible with popular platforms* including shitcoins if it's going to be a cryptocurrency phone. I'd rather have 100,000 sales from various shitcoiners and bitcoiners than just 10,000 bitcoiners. You can make a Bitcoin-only variant to counteract.\n\n> What would set your competing mobile phone/OS apart from Apple and Google?\n\nOS developed with a microkernel/hypervisor that runs applications within virtualized sandboxes that communicate to one another with user permission. For Android app compatibility either virtualize Android instances for each app or make virtualized containers with an Android compatibility layer that takes care of permissions, OS integrations etc.\n\nKernel and OS modules would be made in a memory-safe language but another language is fine provided memory allocation is hardened and Core OS components could be virtualized like Windows 11's Device Guard. OS should be developed with a Defence in Depth and Safe by Default approach and apps should be designed with principle of least privilege. Apps should not be trusted.\n\nOS shouldn't depend on a suite of services like iCloud or Google Play either.\n\nI'd want developer friendly app distribution, free app repository with no account to download like Linux and Windows' Winget repository. Strong security requirements required for each app is needed, I like the standards [Acresscent](https://accrescent.app/) has.\n\nThere's a lot of things I'd want so I'll save this part for another time.\n\n> What role (if any) would Bitcoin play in your competing product?\n\nPhone would have a secondary pop-up, back, or fold display that works as the hardware wallet interface. The hardware wallet would run as it's own isolated component, with it's own firmware independent of the phone OS. The wallet and the OS would only be able to interact through an API. This is so if the phone OS was compromised or the app was, the wallet itself would not be. This would completely remove the reliance on Android / The app of choice to protect your keys. It should have security of a cold wallet but practical use like a hot wallet.\n\nWallet security model would have:\n\n- Secure boot process where only firmware signed with the right keys are able to be flashed onto it, if the keys are changed, all secrets / wallets are wiped for safety.\n- Reproducible builds for firmware of the wallet component\n- Possible NFC or secondary USB port to interface with the wallet on another device if the phone's OS is not trusted.\n- Hardware killswitch to manually turn off/disconnect the internal 'wallet' component from the phone OS to completely airgap as a choice.\n- Secondary display prevents against attacks to the OS or apps that try and mislead by making transactions to incorrect addresses.\n- Choice for Bitcoin only firmware for attack surface reduction\n\nFor hardware security the phone could have two secure elements, one which manages OS and app secrets like decryption keys to the encrypted disk, while the second element is within the wallet component to store the cryptocurrency seed so the phone cannot interact with the seed. This would also save time to not be developing support for Secp256k1 in the phone's secure element. \n\nApplications would develop support for that wallet interface the same way mobile apps develop support for Trezor, Ledger etc. Maybe if the success is good I'd have a wallet app developed by the OS developers made just for it.\n\n> What role (if any) would Nostr play in your competing product?\n\nThe wallet component could choose to handle Nostr keys if possible.\n\nI wouldn't mandate a Nostr app of choice as I don't know a lot about what's best.\n\nAnd then after all that is done: Likely fail the project after the first release cause there wasn't enough people to buy it... https://example.com/ 21413 440230 440230.443636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2204565596609 0 \N \N f 0 \N 0 56024513 0 f f \N \N \N \N 440230 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417058 2025-02-26 03:42:06.371 2025-03-29 22:39:49.247 \N I'm still excited about the improvements to Lightning to come. Splicing will be game changer for user experience, and async payments ("offline receives") as well. Hopefully later this year.\n\nFedimint for ease of onboarding should be pretty powerful too. https://example.com/ 17082 416310 416310.417058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9689479123691 0 \N \N f 0 \N 0 41361769 0 f f \N \N \N \N 416310 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434602 2025-03-12 03:58:08.361 2025-03-29 22:39:49.249 \N I just dropped off an un-godly amount of fiat at the post office to buy kyc-free btc so I can beef up my lightning node liquidity. You know... "cleaning house". https://example.com/ 21320 434598 434278.434503.434522.434598.434602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.5618150246966 0 \N \N f 2783032581 \N 21 148764510 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455204 2025-03-26 19:51:54.143 2025-03-29 22:39:49.489 \N This is so intriguing. I'm trying to think of what _truth faster_ could mean.\n\nRelated tangent: I have been obsessed, for several years now, with the question of: how fast can you learn something? This question can be answered in a dumb way and a smart way. \n\n**The dumb way** is operationalize 'learn' it a really shallow fashion, for instance, being able to translate foreign language vocabulary, trivially, in a flashcard, e.g., they show you "amar" and you say "to love". Now maximize that.\n\n**The smart way** is to ask: what does it mean to know something? Which is a hell of a question. If we stay in the realm of foreign language learning, it might be: to deploy this word ("amar") usefully, in context. To understand how it is used, which is always a little different across langauges, even for simple things. (In Spanish, for instance, you wouldn't say "te amo" to your mom, even though in English you would say "I love you" to her.)\n\nFor a less stupid example, when it comes to extracting maximum value out of something like a book, I read so slowly. Many smart people read 100 books a year, I do a fraction of that, but I write in them, I dwell on them, I connect the ideas to other ideas, I look up articles on salient points. It is glacially slow, but at the end I can say that I possess the book in a way that most don't; I have the book's knowledge deeply integrated with the rest of the things that I understand. It is work to do this! It takes so long. And on the surface I read so much less than my friends. But the product of our having read is quite different.\n\nSo, with all that said, I'm trying to think of what _truth faster_ could mean in this context. What kind of truth is it that people seem to want? What can they do, as a result of having appertained those truths? What would the ideal experience be? Is it closer to 100 books, like my friends do, or five books, like I do? https://example.com/ 11192 455141 449290.449292.455141.455204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2760875459436 0 \N \N f 0 \N 0 172073551 0 f f \N \N \N \N 449290 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404126 2025-02-15 15:15:17.391 2025-03-29 22:39:49.493 \N Love this kind of thinking. Culture is one of those things that can be nudged and affected but it seems nearly impossible to control. I've worked at companies where culture was important but it can't be created by a road map. Being a parent has taught me you can guide and influence but kids are born with their own natures and make their own choices. The best I can hope to do is lead by example, coach, guide, and protect. Most of all love. I think this applies to the broader culture as well. https://example.com/ 2734 404107 403996.404000.404107.404126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.372235387114 0 \N \N f 326482542 \N 2 71549903 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401763 2025-02-13 11:27:05.682 2025-03-29 22:39:48.907 Re: "Bitcoin is money built on distrust." When is trust good and when is it bad? Harari's point that printing money creates trust is nonsense (the poor guy can't seem to avoid pretending to be an expert on everything), but I *felt* something when he framed bitcoin as "money built on distrust." \n\nI haven't thought deeply about the negative implications of trust minimization - which must exist in some fashion. Bitcoiners talk a lot about the erosion of family, community, values, all things that involve lots of trust, a good kind presumably, so what makes that trust good and other kinds bad?\n\nSociety's decline, if it's more than just a feeling, seems to coincide with an erosion of trust. Could trust minimization erode it further and further society's decline, or does trust minimization heal it? If trust minimization heals it, by what mechanism? When is trust minimization good and when is it bad?\n\nMaybe my engine is misfiring today, but I get the sense there are many kinds of trust, some good, some bad, and which is which depends on the context, but there has to be more to say about trust than that. Only, I have no idea what else to say about it. https://x.com/MartyBent/status/1788957689122259094 876 \N 401763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31453513162319 0 \N \N f 135921165 \N 1 228330309 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434332 2025-03-11 19:45:52.085 2025-03-29 22:39:48.908 This Day in Stacker News: June the 13th No major changes today. Read the June 12th edition here: https://stacker.news/items/571554/r/Undisciplined.\n\n-------------\n\n# June 13th, 2023 📅\n\n----\n\n# **📝 `TOP POST`**\n\n## [Ark AMA](https://stacker.news/items/192040/r/Undisciplined)\n\n> Hi all, this is Burak. Feel free to ask me anything about Ark. Ark is a new privacy-preserving Bitcoin layer-two idea for those unfamiliar. I would love to address all of your questions or concerns you might have. Stupid questions are welcome :)\n\n*by @brqgoo*\n30.7k sats \\ 112 comments\n\n# **💬 `TOP COMMENT`**\n\n## https://stacker.news/items/192040/r/Undisciplined?commentId=192050\n\n> When do you think will be available some testing code for all this ark?\n\n*by @DarthCoin*\n1635 sats \\ 4 replies\n\n# **🏆 `TOP STACKER`**\n\n@nerd2ninja\n1155 stacked \\ 6281 spent \\ 2 posts \\ 28 comments \\ 0 referrals\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n# June 13th, 2022 📅\n\n----\n\n# **📝 `TOP POST`**\n\n## [Where do we go from here?](https://stacker.news/items/36151/r/Undisciplined)\n\nExcerpt:\n> Given the recent events, and uncertainty in the world today, how do you think the next year will unfold?\nAre you optimistic? pessimistic? nervous? excited?\nWill Bitcoin, CPI inflation, interest rates, and stock indices be higher or lower this time next year?\n\n*by @sn*\n289 sats \\ 25 comments\n\n# **💬 `TOP COMMENT`**\n\n## https://stacker.news/items/36151/r/Undisciplined?commentId=36153\n\nExcerpt:\n> Basically, its gonna suck.\n\n*by @nerd2ninja*\n274 sats \\ 3 replies\n\n# **🏆 `TOP STACKER`**\n\n@nout\n370 stacked \\ 952 spent \\ 1 post \\ 6 comments \\ 0 referrals\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n\n# June 13th, 2021 📅\n\n----\n\n# **📝 `TOP POST`**\n\n## [Pieter Wuille on the Taproot Genesis Story](https://stacker.news/items/21/r/Undisciplined)\n\nExcerpt:\n> As of block 687284, Taproot signalling has reached 1815 blocks this period, guaranteeing that absent very deep reorgs, it is guaranteed to lock in.\n\n*by @banana*\n1 sat \\ 2 comments\n\n# **💬 `TOP COMMENT`**\n\n## https://stacker.news/items/2/r/Undisciplined?commentId=23\n\n> Some kind of markdown in comments\n\n*by @sha256*\n1000 sats \\ 1 boost \\ 1 reply\n\n# **🏆 `TOP STACKER`**\n\n@sha256\n4 stacked \\ 1 spent \\ 1 post \\ 2 comments \\ 0 referrals \N 7913 \N 434332 \N \N \N \N \N \N \N \N health \N ACTIVE \N 27.5952494464115 0 \N \N f 168999405 \N 1 140937763 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:02.198 f \N \N \N 0 0 0 0 1 0 0 1656 2022-09-21 17:39:53.151 2025-03-29 22:39:48.909 In the last 2 years stacker count has stayed stagnant, but sats stacked DOUBLED! TLDR; SN still has about 1100 active stacking users like two years ago, but total sats stacked per month has doubled to 0.1 Bitcoin. Even more impressive when realize value of Bitcoin has quadrupled since 2022.\n\nIn my last post, @k00b challenged me to “read the analytics.” Joke’s on him - I called his bluff! https://stacker.news/items/712073\n\nLooking at the 2022 Stacker News pitch deck https://docs.google.com/presentation/d/1ONoS1VLKRYiG14ODx3tIboH9JdndxL2fQwlACWdULok/edit#slide=id.gedbcbf3247_0_610 every month had about a thousand users earning sats, and those users earned about 5 million sats total.\n![](https://m.stacker.news/56009.png)\n\n![](https://m.stacker.news/56010.png)\n\nTwo years later by September 2024 where are we at? Well @k00b has a fantastic open source analytics tool to let me don’t trust, verify!\n\nUltimately we’re still where we’re at two years ago with about 1,100 users earning sats in any given month. The big win here though is me using the word “we.” I’ve only been around just over a week (thanks to @grayruby referral) and I already feel like a cowboy! So while user growth is flat, it’s a testament to the resilience of the SN idea that this site hasn’t died.\n![](https://m.stacker.news/56012.png)\n\nActually, we’ve DOUBLED in sats earned with user count constant. Now a whole 0.1 Bitcoin is earned by users every month! And the $USD value of Bitcoin now (~$64k) has QUADRUPLED since then (~$16k) so that makes it even more impressive!\n![](https://m.stacker.news/56017.png)\n\nBut forget https://wtfhappenedin1971.com/. More like, WTF happened to SN Rewards in March 2024?!\n\nThank you @k00b for being on the bleeding edge of lightning! \N 770 \N 1656 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.5860248873462 0 \N \N f 414443839 \N 5 161700556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 444292 2025-03-19 18:52:32.201 2025-03-29 22:39:48.91 Diaries of a Traveling Bitcoin Evangelist I like to strike up conversations with people at my job. If they start talking about the economy or politics, I'll drop something about Bitcoin. However, if they are in the IT field or finance then I just come right out with it. So here is how those conversations went for me in the last week. \n\nPerson 1- 30 yrs in IT. He said he mined a block in 2009 for 50 Bitcoin that is lost to some wallet out there. I mentioned all the layer 2 development going on and the opportunity there. He raised an eyebrow. \n\nPerson 2 - IT security professional for a large corp. Asked him if he ever looked into Bitcoin. Nope. Not interested at all. Changed the subject. Possible smart guy, "lost it in a boating accident". \n\nPerson 3 - Retired lady, musician. She started talking about how paying people to stay home ruined everything. I mentioned monetary debasement and she agreed. Hmmm... Mentioned Bitcoin. Turns out that her retirement home puts out a news letter that warns people of scams, Bitcoin was on it. She also conflated Bitcoin with some of the exchange crash episodes. DIdn't have time to correct all her errors. \n\nPerson 4- This one was interesting. I don't recall his background, but he was cocky. He said he could have bought Bitcoin back in the 90's when it was pennies. I corrected his time traveling calendar, but he was sure of it. I ended that conversation with a mention of e-cash. \n\nAs a last mention, I had two customers who work for the Federal Reserve. So I asked their opinion of Bitcoin. Not because I actually want their opinion, but because I am judging them. As you would expect, they were both morons when it came to hard money. \n\nI have to find a new approach. \n \N 13987 \N 444292 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.3916755841855 0 \N \N f 67294750 \N 1 90610705 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448861 2025-03-22 23:36:58.113 2025-03-29 22:39:48.908 Golden Oldies #10 ![](https://m.stacker.news/49594)\n\n### What Is This?\n\n\nThis is an experiment inspired by discussions and posts made by @Undisciplined, @elvismercury and others regarding evergreen content on SN. I’ll dig back into the past to try to locate some great posts that might be worth another read. I plan to make these posts every Tuesday.\n\nA shout-out to @plebpoet, who has designed our new logo! Now we’re official.\n\nHere are this week’s selections:\n\n- [The Art of Using Stacker News ⚡️](https://stacker.news/items/252695/r/siggy47) by @Natalia\n\nI noticed that there are many new stackers, so this week I decided to feature two posts that give advice about stacking. This first one is a classic from @Natalia. Although things change fast around here, the advice she gives is timeless. \n\n\n- [The Zen of Stacking Sats On Stacker News](https://stacker.news/items/184545/r/siggy47) by @siggy47\n\nThe guy who posted this is a jerk, but you still might find some helpful information.\n\n\nComments and suggestions are welcome\n\n \N 20956 \N 448861 \N \N \N \N \N \N \N \N crypto \N ACTIVE \N 1.63755356757502 0 \N \N f 76233692 \N 1 211205501 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 16:57:28.203 f \N \N \N 0 0 0 0 1 0 0 457267 2025-03-28 11:14:36.084 2025-03-29 22:39:49.152 Hardware wallets Currently using a ColdCard Mk4 (it's pretty awesome with it's features, durability, and reliability) with PSBT micro-SD and a ColdPower, but looking for comparable products from other companies in terms of ethos and security for a multi-sig setup.\n\nI have some Ledgers laying around, but for a number of reasons I don't wish to use them any longer.\n\nIdeally I'd like to use something with PSBT (device not be plugged into a computer) and has been both OS and hardware vulnerability vetted against private key extraction (comparable at least to a ColdCard). \n\nI'd also prefer it to be a Bitcoin only device.\n\nFor software Sparrow is my go to and won't be using software or an app that comes with any hardware.\n\nI was looking at Foundation, but don't have any deeper insight than a surface look.\n\nAnybody have any recommendations that they've been using for awhile and hit those checkboxes?\n\nThanks for any feedback! \N 18351 \N 457267 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.96000450167155 0 \N \N f 563595158 \N 3 96129653 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 443665 2025-03-19 12:59:31.526 2025-03-29 22:39:49.239 \N Bananas are curved because they grow towards the sun.\nPhilosophers have pondered the shape of bananas for a long time, arguing until the sun goes down as to why they’re curved.\n\nBananas go through a process called “negative geo-tropism.” This process causes the fruit to grow upwards toward the sun instead of the ground. This, in turn, gives the banana its familiar curved shape. https://example.com/ 2961 439157 439139.439157.443665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0895168949411129 0 \N \N f 0 \N 0 124069548 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437949 2025-03-15 02:24:22.945 2025-03-29 22:39:49.24 \N Thank you!\n\n1) After years of advocacy and analysis HRF considers sending information into North Korea one of the best things you can do to help. Military and political solutions to the NK problem are unthinkable or unlikely. So in the meantime we can help North Koreans help themselves by making sure they have access to more information: flashdrivesforfreedom.org\n\nBitcoin is likely playing a nascent role in cross-border payments between South Korea, China, and NK, but it's too early too tell\n\n2) Complicated question. In certain CFA-zone West African countries there is a "France dégage" movement calling for an end to the system. In places like Togo, the entire human rights movement is based on financial freedom. But still, the overwhelming number of people have lived with the CFA their entire lives for generations so it's a bit like the water they swim in. Hard to imagine anything else. More awareness is needed. The best we can do is educate ourselves on the outside and help them build Bitcoin solutions.\n\n3) Yes. My next one is on Fedimints and their potential impact on the developing world and comes out next week! https://example.com/ 21012 436935 436935.437949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8010538027607 0 \N \N f 0 \N 0 241313192 0 f f \N \N \N \N 436935 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423185 2025-03-03 04:39:40.329 2025-03-29 22:39:49.24 \N [![Screen-Shot-2022-11-03-at-6-22-57-AM.png](https://i.postimg.cc/ydjxRnHy/Screen-Shot-2022-11-03-at-6-22-57-AM.png)](https://postimg.cc/0M69RYrz)\n\n[Original Tweet 🐦](https://twitter.com/Lightsats21/status/1587977411433533441?s=20&t=vYu8nCBG1EGcFhIJnzJKlA)\n\nThis was my experience last night going to Taquiza in South Beach and attempting to try our project idea https://lightsats.com with a random person. Legit I asked 4 people including the cashier and they all turned down the idea of me gifting them bitcoin via our web app so they could buy themselves a drink or some tacos!\n\nAs soon as I mentioned Bitcoin they all got so hesitant about it, one girl did say "I have bitcoin" so I asked which wallet she uses normally, and said Metamask 😖. It was a fun experience, since our web app targets nocoiners I really need to get in their head and understand what's the best approach to warm them up to the idea of accepting a bitcoin tip from someone.\n\n https://example.com/ 7580 422498 422483.422498.423185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0930924012557 0 \N \N f 0 \N 0 92202352 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424384 2025-03-04 03:20:02.745 2025-03-29 22:39:49.242 \N Swap service is an orderbook for performing submarine swaps over nostr and a way for bitcoin users to earn yield on their bitcoin\n\nMore info: https://github.com/supertestnet/swap-service\n\nTry it out: https://supertestnet.github.io/swap-service/\n\nEarn yield: https://github.com/supertestnet/swap-service#installation\n\nSubmarine swaps are an important feature of the lightning network. They allow lightning users to swap funds on lightning for funds on the base layer, or vice versa, without needing to open and close channels, and without needing to give custody of their money to other people. They also allow easier channel rebalancing and they are also the basis for important wallets and services like muun, lightning loop, and boltz exchange.\n\nHowever, there are not very many submarine swap providers. Sometimes I wonder if the ones who exist are overcharging, and I also just think it would be cool if anyone could profit by offering submarine swaps easily from their own lightning node. With lots of participants, costs may be driven down close to zero.\n\nSwap service tries to be an easy tool for anyone to do that. https://example.com/ 7891 424383 424309.424383.424384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3684933326325 0 \N \N f 0 \N 0 161523385 0 f f \N \N \N \N 424309 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 308281 2024-11-25 19:03:10.236 2025-03-29 22:39:48.91 Unofficial Bitcoin Crossword Puzzle - Week 7 - Halloween The increasingly inaccurately named weekly crossword puzzle is up!\n\nThe theme is Halloween. I'm posting in the bitcoin territory because I'm really hoping that this week's crossword will be a gateway drug[^1]. It's easy and themed off of a famous holiday (at least in the Western world, sorry international folks, lemme know if there's a theme you'd like to see). However, there's bitcoin links and stacker news links everywhere. Share it with your friends who like newspaper puzzles and hopefully they'll stumble into some bitcoin stuff.\n\n[week 7 puzzle](https://stackernewscrosswordpuzzle7.vercel.app/)\n![](https://m.stacker.news/56927)\n[week 7 puzzle](https://stackernewscrosswordpuzzle7.vercel.app/)\n\n[Week 5](https://stackernewscrosswordpuzzle5.vercel.app/)'s puzzle still has an [unclaimed bounty](https://stacker.news/items/674645) on it, although somebody's already made 7000 sats from a deposit by @OneOneSeven himself. If you would also like to contribute to this bounty-avoider, you can do so at bc1qswcrkuu5mfs2vg9y52xc2543zmnqmz3j9jwnyn, but I'd just recommend solving the damn riddle yourself.\n\nThere's no bounty this week. Just have fun and share with friends. I may add an alternative UI later on, similar to [week 5](https://stackernewscrosswordpuzzle5.vercel.app/).\n\nhttps://stackernewscrosswordpuzzle7.vercel.app/\n\n[^1]: That's actually the goal of all of these, but I think some just end up being too difficult or bitcoin themed for the average Joe. \N 11498 \N 308281 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0086409704875 0 \N \N f 341969485 \N 2 13270294 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455525 2025-03-27 05:36:04.204 2025-03-29 22:39:48.917 Upendo - Mining Block Party Auction **What is a block party?**\n\nIt's when you team up w/ folks to try and solo mine a bitcoin block.\n\n**Upendo is a block party auction**\n\nYou bid on hashrate and mine with other bitcoiners ✅ \nWe will mine with 2,100 TH/s on Saturday, November 30th ⛏️\nThe goal is to find a block and earn 3.125 bitcoin + tx fees 🎉\n\nTo get a spot on the party, you have to win a hashrate auction.\n\nHashrate will be provided via [Rigly](https://rigly.io) and we will use [CK Pool](https://solo.ckpool.org/) to solo mine.\n\n**Bonus hashrate**\n\nThe block party earns bonus hashrate for each new bidder, and so the odds get better and better over the course of the auction ... so get your spot early! https://upendo.rigly.io/ 7877 \N 455525 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 12.1460301274109 0 \N \N f 1198530244 \N 6 47102390 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 451271 2025-03-24 13:26:06.402 2025-03-29 22:39:49.24 \N Day 149 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 20751 451262 451244.451258.451262.451271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.69175661449992 0 \N \N f 0 \N 0 221371519 0 f f \N \N \N \N 451244 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455895 2025-03-27 11:56:27.06 2025-03-29 22:39:49.241 \N This is a great prompt. We spend so much time talking about what's being propped up by fiat money and state subsidies, that we sometimes lose sight of what's being crowded out. Also, the element of what will be more valued in a wealthier society is quite interesting.\n\nLet's start with what's being undermined in the current system: family, civil societies, charities, health, free inquiry, peace\n\nWhat gets increasingly valued by wealthier societies: leisure, travel, art, environment, health, safety\n\nI think you're right to highlight art. Other undervalued things that jump out at me are preventative health and family vacations. Also, genuine private charity is heavily suppressed currently. https://example.com/ 9655 455875 455498.455875.455895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.6324230774931 0 \N \N f 0 \N 0 249016559 0 f f \N \N \N \N 455498 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407702 2025-02-18 09:55:50.123 2025-03-29 22:39:49.242 \N Mutiny Wallet. I like it for its simplicity, its inherent privacy, and the way it seamlessly integrates into your workspace. It's intuitive, and stealthy as hell. https://example.com/ 4633 407678 407018.407063.407581.407583.407586.407663.407668.407671.407673.407678.407702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6635633912595 0 \N \N f 0 \N 0 120399123 0 f f \N \N \N \N 407018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424198 2025-03-03 21:47:39.977 2025-03-29 22:39:49.243 \N My experience is that it's less toxic than it used to be, in terms of general norms and behavior; and that territories have helped with that, since SN seems less appealing to brainless maxi types who just want somewhere to vomit the creed they read on Twitter into each other's mouths. Real people talking about their lives seems to be a countervailing force against extremist stupidity -- that's what I've observed in real time since July.\n\nWhatever badness is leftover is a function of humans at scale. If you don't like it, model something better. It works. https://example.com/ 11515 424197 424197.424198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0516169264008 0 \N \N f 0 \N 0 114049031 0 f f \N \N \N \N 424197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404618 2025-02-16 02:37:41.413 2025-03-29 22:39:49.243 \N > What do you hope it's like? \n\nMore gradual building out of lightning services and adoption from merchants. Slow is smooth and smooth is fast.\n\n> What do you fear its like?\n\nRapid adoption, because that probably means the dollar collapsed or totalitarian CBDC's got pushed through. Many people aren't even remotely ready for a switch to Bitcoin and we would see lots of lost wealth from mishandling.\n\n> What products do you think we'll see?\n\nI expect more and more alternatives to Big Tech platforms, especially as censorship season ramps up in America.\n\n> Where are the loud voices in Bitcoin wrong?\n\nCarnivore diet, but that's pretty tangential to all the important things they're getting right. https://example.com/ 9916 403238 403238.404618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9592895157967 0 \N \N f 0 \N 0 36658425 0 f f \N \N \N \N 403238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414939 2025-02-24 12:15:39.908 2025-03-29 22:39:49.244 \N Please let's not start saying that ecash is self-custodial. It is not.\n\nYou hold the ecash, we get it. The ecash part is non-custodial, ok. It's been thought of that way since the 80s. It's fine to think that way if you're literally the central bank and the ecash you issue IS THE MONEY AND NOT A REPRESENTATION OF AN UNDERLYING ASSET – only a central bank can do this. Repeat with me: **Only a central bank can do this.**\n\nEcash today is a representative of an underlying asset. In Cashu and Fedimint that's BTC. You give up control over that underlying asset. You measure everything in terms of that underlying asset. It is all about the underlying asset. You have **NO GUARANTEE WHATSOEVER TO REDEEM THAT UNDERLYING ASSET BACK** – ecash systems the way we are building them today ARE CUSTODIAL – please don't make things more complicated than they need to be. Please do not manipulate language and especially, do not confuse noobs who are still learning. I almost want to say that a framing like this irresponsible. \n\nWhat are you going to say to the noob who wants their Bitcoin back but the federation broke down during an update and the database got completely rekt? How is that non-custidal or self-custodial or whatever the opposite of custodial is. \n\nWith all due respect, this is a bad take. https://example.com/ 15577 414762 414711.414722.414729.414751.414762.414939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9412609859377 0 \N \N f 0 \N 0 101997375 0 f f \N \N \N \N 414711 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431213 2025-03-09 16:03:36.435 2025-03-29 22:39:49.239 \N it looks like you're a little confused about the differences between LN address memos and keysend messages.\n\nSphinx and Juggernaut do not use LN address, they use keysend. Keysend is a type of lightning payment in which the sender creates a payment preimage, uses it to lock up a payment for a recipient, encrypts the whole package (including, optionally, a message), and sends the encrypted blob to the recipient over lightning.\n\nTo routing nodes, a keysend payment looks like an ordinary payment, but it's a little weird "under the hood" because of something called reverse flow. In most lightning payments, the recipient acts first: he creates an invoice for the sender, shows it to him, waits for a payment blob to come in on lightning, and accepts the payment by revealing the preimage (aka the proof of payment) that locks up the money.\n\nWith reverse flow, the sender acts first, there is no invoice, the sender already knows the preimage to the payment (because he created it), and therefore there is no proof of payment. And these weird "keysend" payments can also include a message. Which is, you know, neat.\n\nKeysend messages *are* end to end encrypted. As the name suggests, they are encrypted to the recipient node's public key. Only the node with the private key to that public key can read them. (Though the sender also knows what the message says because he created the message. That's why there are 2 "ends" in the term "end-to-end encrypted.")\n\nAs for a character limit, the upper bound is 1300 bytes (i.e. 1300 characters), but it's never actually that high. Lightning nodes refuse to forward onion packets that are bigger than 1300 bytes, but a lot of that is "used up" by things other than the keysend message. E.g. every hop in the route adds more bytes to the size of the onion packet because you need to include instructions for that "hop" about who to forward the payment to.\n\nSo the "maximum" size limit is variable and never exceeds 1300. The "practical" size limit depends on how long your route to your destination is, but basically the smaller the message, the better. You can't even say something like "just stay under 500 bytes and you'll be good." It's possible for a lightning payment to have so many hops and so much extra payment data stuffed in that there is simply no room left for a keysend message. But the shorter your route, and the less complicated your payment is, the more room you have for a keysend message -- it can fill up however much room is "left over" in your payment. https://example.com/ 21688 400697 400697.431213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.239897205594559 0 \N \N f 0 \N 0 241863372 0 f f \N \N \N \N 400697 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458298 2025-03-29 07:15:19.189 2025-03-29 22:39:49.24 \N ![ea449b54-e6bf-4b76-a680-5928fe07a981_874x1089.jpg](https://m.stacker.news/4798) https://example.com/ 5017 458122 458122.458298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.873551744367 0 \N \N f 0 \N 0 39524024 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416969 2025-02-26 00:21:06.478 2025-03-29 22:39:49.241 \N There is zero doubt in my mind that bitcoin was created by a libertarian or anarchist that understood free market capitalism and specifically Austrian economics. If you've read the white paper and understand these ideologies it is obvious. The idea that bitcoin's success is dependent on convincing people to accept these ideologies is deeply flawed. Most people are not interested in even attempting to learn more in these areas. In this article you can see the author's priority for not being in the out group. If we have to move the masses to become freedom minded and more importantly freedom oriented bitcoin will never win. Thankfully that isn't how the world works. Most people are completely intellectually inconsistent. Put simply, they act in their self interest often against their own stated beliefs. Most people are self contradictory and their egos will not allow them to see this.\n\nDon't kid yourself though. Bitcoin is a threat to the state and its power. This include both clown parties. Both want to control the beast. Left and right politicians should hate it and try to stop bitcoin. This fact should wake up those that vote for these clowns but it won't. Bitcoin will win regardless because it works. The masses will use it because it works even though they don't understand why or how. I say this because this is the way it has always been. The masses don't understand the world around them. If we had to convince the masses by explaining how everything worked we would not have most of the tech we have.\n\nFor the bitcoin maxis I would say you be you. Seek to learn for yourself. Speak when you think you should. Be kind, don't be nice. Speak the truth but be true and real. The answer is not to water yourself down. We don't need to moderate to make bitcoin more "appealing". We bitcoiners need to know the tools, why they work, how they work and be ready to teach others that are open to learning. Also, we don't have to orange pill everyone. We need to target those that want to learn. The curious. Those that want freedom and autonomy. But really, being toxic isn't appealing. Be joyful and successful. It is contagious. Be someone that others want to emulate.\n https://example.com/ 21555 416960 416628.416960.416969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6336903487094 0 \N \N f 0 \N 0 240314666 0 f f \N \N \N \N 416628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431231 2025-03-09 16:05:15.031 2025-03-29 22:39:49.241 \N IMO the security budget is important enough that it's never not worth discussing. Transaction fee forecasting is as much haruspicy as price analysis though. His prediction is premised on an inadequate security budget and we simply don't know what the future security budget will be ... even Nic, who I will momentarily grant divine chart reading abilities, cannot predict demand for block space. I find security budget optimism as void of content as security budget pessimism.\n\nMy problem with Udi is I can't tell what he actually believes and what's [schmäh](https://www.collinsdictionary.com/us/dictionary/german-english/schmah). https://example.com/ 9796 396692 396692.431231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4189614949722 0 \N \N f 0 \N 0 163719814 0 f f \N \N \N \N 396692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455510 2025-03-27 04:52:35.961 2025-03-29 22:39:49.243 \N The fear of long words is called [Hippopotomonstrosesquippedaliophobia](https://fearof.org/hippopotomonstrosesquippedaliophobia). https://example.com/ 5128 455434 455413.455434.455510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5023199839466 0 \N \N f 0 \N 0 56684279 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421654 2025-03-01 21:01:10.29 2025-03-29 22:39:49.245 \N Easy and slow to win!\n\nhttps://imgprxy.stacker.news/grK72Xd13Ey57orEXuHit8huuG8A04P1PfapBnm-R-w/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9tQ0pRTnJQLzVhYTMyZDc2LWE3MmQtNDE5Ny1hMTI1LWVlNTk3NDk5ZGQ0ZC5qcGc https://example.com/ 1472 421603 421567.421603.421654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3509544946392 0 \N \N f 0 \N 0 79720524 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427867 2025-03-06 17:28:42.031 2025-03-29 22:39:49.246 \N My main evidence is introspective, so perhaps not that useful. \n\nMSM definitely changed how I interact on SN in ways I think were toxic. \n\n**Pre-MSM**\n\n- posted things when I had a cool idea \n- checked SN frequently, but not always every day\n- zapped things I thought would do well or that caught my personal attention\n- commented when I couldn't help myself (conversation was so interesting I just had to jump in)\n- kept my total stacked hidden on my profile\n- didn't really pay attention to how much other stackers stacked\n\n**During MSM**\n- posted every day, sometimes even when I had to stretch for content (even resorted to recycling some old content)\n- checked SN at an unhealthy frequency\n- zapped the top 10 or so "all-star" stackers whenever they posted without waiting to read their posts, somewhat often I never got around to reading them\n- compelled myself to drop a comment on any thread a thought would be popular even if I didn't have anything that fruitful to say. \n- felt grumpy/suspicious about movements on the leaderboard - especially about the hidden stackers *do they really deserve that spot? I bet they are gaming it somehow.*\n\nAll in all, I didn't like how my use of SN was changed by the competition. Maybe I should have stronger principles or more self control or something, but I don't. \n\nI think I will return to my old way of using/enjoying SN, but it's gonna take a little rewiring of my brain. \n\nI totally agree with @grayruby that it could be a great once a year kind of thing. \n\nAs I've said before though, SN is one of my favorite places on the internet with **and** without MSM. So don't take the above as criticism. I wrote it more as documentation of what was going on inside the mind of one stacker. https://example.com/ 19217 427109 427109.427867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6527279746891 0 \N \N f 16366223 \N 1 97700129 0 f f \N \N \N \N 427109 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434747 2025-03-12 07:55:21.281 2025-03-29 22:39:49.247 \N I'll take this opportunity to also answer the OP's questions.\n\n> Is there any limitation in terms of the amount of characters that can be included in these messages?\n\nI answered this above. Several hundred characters fewer than 1300, but the exact amount is variable and can be as low as 0 if your payment is very complex.\n\n> Could LN potentially serve as a complete substitute for emailing and messaging apps such as WhatsApp or Signal?\n\nMost things are possible if you try hard enough, including this. But I personally think it's a bad idea. Lightning is designed for sending a specific kind of message: instructions for creating and redeeming HTLCs off-chain. You *can* use this system to send other kinds of messages, but most tools don't do a job well if they weren't designed for it, and lightning wasn't designed for routing general-purpose text messages. So even though it *can* do it, I recommend using something that was designed for that.\n\n> Is any of you using the apps i mentioned above in the post?\n\nNo. IMO they are neat as technical demos but not smart to actually use. Sending messages over the internet is a solved problem with many, many excellent implementations. If you want to know one I am currently interested in, look into briarproject.org.\n\n> What are the drawbacks of using LN for messaging purposes?\n\nEvery message is "attached to" a lightning payment which adds a point of failure to each message: if your payment fails, your message fails too. If your wallet runs out of money, your messages won't send. If your recipient uses an LSP, and they are down, your message fails. If your recipient uses a phone wallet and isn't online when you send the message, your message fails. (Well...zaplocker sort of fixes this...but not all the way. And not very well. A "real" async payments spec might fix this someday though.) In my day to day payments, lightning payments fail all the time, and I often have to keep switching wallets til I find one that works. It sucks, but since it's basically the only decentralized option, we keep working to improve it.\n\nBut this would be terrible with text messaging, where there are hundreds of excellent alternative options. Also, though it depends on your threat model, for most people it's NBD if a text message they created passes through one or more centralized intermediaries, as long as the end users' client software is responsible for encrypting and decrypting the messages. For most people, a threat model that allows corporations to know *who* you are messaging is not so bad if that corporation doesn't know what you told them. So I am fine with recommending tools like Telegram and Signal as better alternatives to Sphinx and Juggernaut.\n\n> How reliable are this messages when it comes to security and privacy?\n\nThey suffer from the limitations of lightning's privacy model, which you can read about [here](https://lightningprivacy.com/en/introduction). Here is a key sentence from that essay: "Some of the top nodes on the network are capable of analyzing the source and destination of 50 to 72% of payments." If lots of people used lightning for messaging, those nodes could probably identify senders and recipients 50 to 72% of the time. (Not, however, message contents.)\n\nIf your threat model is one where you feel it is important to hide message "metadata" (that is, who is messaging whom, and when), it's useful to compare that with alternatives like Signal and Telegram. On those platforms, the companies who host the servers can read your metadata, but not your message contents (assuming you use their encryption features). And they sometimes reveal your metadata to their business partners and to governments. Do you trust them? If so, use them. Do you feel like a personal target? If so, look for something better.\n\nIf you're looking to lightning as a possible replacement, consider this: a government or corporation can request information from "top nodes" just like they can request information from Telegram or Signal. But "top nodes" might not comply. If they do, that doesn't *necessarily* mean you're just as worse off. Telegram can give them reliable information on who you're messaging 100% of the time you use them.\n\nIf you use lightning, the best they could get is 72%, with some limitations and caveats due to the imperfection of the heuristics (read the whole analysis I linked to earlier for more details). Also, since you pick your route, you can opt not to route through top nodes, further limiting the information available to them.\n\nBut can you do better than 50 to 72%? Earlier I mentioned Briar, which relies on the tor network as a transport and encryption layer for user messages. Tor's sends all traffic through at least 3 hops and therefore assumes that at least 1/3 of nodes on the network are "honest," i.e. not run by malicious entities. These assumptions *improve* for tor hidden services, which pass through 6 hops *and* are end to end encrypted. If only 1/3 of nodes are run by dishonest people, as tor assumes, and if you select hops at random, the chance that your message will pass through 6 randomly selected dishonest nodes is very small 1/729. (3 to the 6th power is 729)\n\nSo yeah, consider using a tor hidden service for messaging if you really need to hide who you're talking to. Briar makes this easy. https://example.com/ 21714 434667 433828.434475.434667.434747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.768472026079259 0 \N \N f 30388134 \N 2 170756906 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444432 2025-03-19 21:47:18.587 2025-03-29 22:39:49.239 \N `ᕦ(ò_óˇ)` Day 4 of exercising everyday before the saloon opens\n\nToday, I went up a mountain:\n\nhttps://imgprxy.stacker.news/6ZNLdMlrFWUVy8OvQqSRj09h4CYNTMdzNLGDSbNkfJE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvS3ZNakRmWEovc2lnbmFsLTIwMjMtMDktMTktMTItMDgtNTQtMTA3LmpwZw\n\nOk, no, just kidding that was a few weeks ago. I still feel like I should recover from day 1 and 2, so I just went for a walk again today. \n\nI also wanted to get out of the city so it became a trip down memory lane for me:\n\nhttps://imgprxy.stacker.news/bu23-vg8cqiEGPkg_CwhMnzJdxz-elAfxGOL5URS51A/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvcnN5WGI4ejgvSU1HLTIwMjMwOTE5LTExMjIxMi5qcGc\n\nI used to live here in the outskirts before I felt very lonely and moved into the city.\n\nI took a train to come here such that I can walk the 5km back home.\n\nPretty interesting to remember how I felt back then or what stuff I was thinking about. That was during my early days of bitcoin and COVID. And how different I feel now.\n\nWanted to reply with something along these lines to @k00b's post about [how we changed in the last 5 years](https://stacker.news/items/256778) but it didn't feel worth mentioning so I just replied nothing, lol https://example.com/ 17184 444385 443836.444346.444378.444385.444432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6121042544918 0 \N \N f 0 \N 0 51640493 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450716 2025-03-24 07:13:13.813 2025-03-29 22:39:49.24 \N @k00b and @Rsync25\nLast week, Rsync posted a poll about various BIPs, but with no details. I totally agree with his poll but as I said, many SN users have no clue what are all these BIPs. (https://stacker.news/items/232293)\n\nI propose a massive AMA on SN with many Bitcoin/ LN developers, coders, programmers, contributors to Bitcoin code and other apps, that knows in details all the aspects of these BIPs (drivechains, CTV etc).\n\nLet's have a better explanation of ALL aspects related with these BIPs, how they work, how they apply, pro and contra (sincere explanations), what could happen if they are applied or not.\n\nBut all in layman vocabulary so all types of users could understand what is going on. Technicalities are more for discussions on Bitcoin dev email newsletter and/or BitcoinTalk forum.\n\nI know there are many Bitcoin devs here but usually they are quiet and say not too much.\n\nPeople need to know better what is going on and understand clearly all the aspects, not just useless fights on twitter/nostr. I myself I am in a position that I cannot say too much and I will never take baseless sides, just because somebody I know is on a specific side. Tribalism is not healthy for Bitcoin.\n\nI didn't want to start from my account this discussion, it should be started from a SN account, pinned, as a main AMA and if devs will post good answers they should take the rewards/zaps, not me.\n\nPlease organize this massive AMA and also invite more Bitcoin devs to join it.\n https://example.com/ 9863 450430 450330.450430.450716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8639136863045 0 \N \N f 0 \N 0 81242143 0 f f \N \N \N \N 450330 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404457 2025-02-15 22:13:00.284 2025-03-29 22:39:49.24 \N **@k00b Have people been asking for this?** \nIf you have had a lot of comments requesting an easier to use editor fair enough, but I write on SN every day and I feel like this is just extra clunk and the current editor works flawlessly (It ain't broken). \n\n**I would advise you to please be very hesitant to make a change like this**. It impacts those of us who are actually contributing to this site the most. I certainly would rather compose my posts in the current editor.\n\nIn the new one tab indentations don't even work and the icons are a bit too big and I don't see any extra functionality as you still have to paste in images from an external host etc.\n\nIf you were to tweak the current editor, I would suggest making the little markup help button on the right (M with down arrow) open a small alert box showing basic markup options like reddit instead of going to a new page. \n\n**Besides that, I feel there are other pieces of functionality that you could work on that would have higher ROI and not impact contributors, such as "recommend posts", DM functionality, etc.** https://example.com/ 9438 404446 404446.404457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5641566557057 0 \N \N f 0 \N 0 147965493 0 f f \N \N \N \N 404446 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450282 2025-03-23 20:45:20.941 2025-03-29 22:39:49.241 \N A friend of mine is now in Turkey, Istanbul.\nHe's well impressed that almost everywhere Bitcoin is accepted.\nHe even went to a OTC exchange and they don't even ask for IDs, all free market, no KYC.\n[![btc-turkey-01.jpg](https://i.postimg.cc/y6tV3rtP/btc-turkey-01.jpg)](https://postimg.cc/Rq1rjGM6) \n[![btc-turkey-02.jpg](https://i.postimg.cc/jdfRH4rr/btc-turkey-02.jpg)](https://postimg.cc/7fxvD76B)\n[![btc-turkey-03.jpg](https://i.postimg.cc/x1yY7jCx/btc-turkey-03.jpg)](https://postimg.cc/NKMW2cRm)\n[![btc-turkey-04.jpg](https://i.postimg.cc/N0sYwh2g/btc-turkey-04.jpg)](https://postimg.cc/YvsT1sxV)\n[![btc-turkey-05.jpg](https://i.postimg.cc/Dm3kjRK3/btc-turkey-05.jpg)](https://postimg.cc/PvyRN3xS)\n[![btc-turkey-06.jpg](https://i.postimg.cc/h4zXYxq2/btc-turkey-06.jpg)](https://postimg.cc/bdPYDZrn)\n\n https://example.com/ 14168 450240 450240.450282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1811512326925 0 \N \N f 0 \N 0 198233571 0 f f \N \N \N \N 450240 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444333 2025-03-19 19:48:21.716 2025-03-29 22:39:49.242 \N https://jinformatique.net/Bitcoin/2023/QuitRatRaceBitcoin.png https://example.com/ 954 444330 444097.444218.444330.444333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6645889592815 0 \N \N f 0 \N 0 238178267 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421110 2025-03-01 12:01:43.157 2025-03-29 22:39:49.242 \N Buy a set of small profitable companies and make them accept Lightning at a discount. https://example.com/ 2013 420918 420918.421110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3299658963852 0 \N \N f 0 \N 0 218656652 0 f f \N \N \N \N 420918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444564 2025-03-20 02:39:09.444 2025-03-29 22:39:49.243 \N According to Midjourney's "reverse image search" feature (use /describe and then upload a photo to have it generate prompts of what might have been used to create this image) say:\n\n1️⃣ a beautiful digital painting of a ship at night, in the style of light bronze and magenta, piratepunk, flat perspective, vibrant color gradients, cartelcore, i can't believe how beautiful this is, iconic --ar 256:175\n\n2️⃣ a silhouette ship at night in the background, in the style of vibrant neo-traditional, photobashing, ismail inceoglu, dark pink and light indigo, piratepunk, matte drawing, mike campau --ar 256:175\n\n3️⃣ night in the city, olympus v x lions, ship, ship in the sea, ship battle, ship animation, in the style of dark cyan and pink, vibrant use of light and shadow, unique character design, piratepunk, realistic color palette, depth of field, american tonalist --ar 256:175\n\n4️⃣ a ship, docked by the ocean, is in the foreground, in the style of neon color palette, mysterious realism, piratepunk, dark magenta and light cyan, ismail inceoglu, historical illustrations, nikon d850 --ar 256:175\n\nWhen just for fun, I ran the first prompt back into the bot to see what it came up with, the results were actually quite rad:\n\nhttps://anonfiles.com/ccK0k2m0za/87d95_9ed4_444d_ba39_823adc2a4f30_png https://example.com/ 20555 444561 444561.444564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3144828103436 0 \N \N f 0 \N 0 44692014 0 f f \N \N \N \N 444561 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431259 2025-03-09 16:09:30.041 2025-03-29 22:39:49.24 \N Haha thanks I'll take that one as a compliment. I get really into what I'm working on when I know it's meaningful and important. When I was leading Marines it was about helping and serving them and making sure i did everything I could to prepare and train them and myself, so didn't have time to do other stuff I might've liked to like coding. Pretty common quip in infantry is that if the Marine Corps wanted you to have a family or social life they would've issued you them . I only started coding on my last active deployment because COVID happened and we weren't allowed to do anything we were locked in our rooms and I had tactical operations center watches for like 12-24 hours where nothing happened because everything in the world was locked down.\n\nYou work hard and stay focused so in the event we end up in a sticky situation we don't have to go through the rest of our lives thinking "Well if I hadn't taken that vacation or weekend off or whatever maybe John would still be alive".\n\nWorking on Bitcoin I get the same feeling, we've got this incredible opportunity to bring property rights to billions of people and if we don't succeed I don't want it to be because I took time off or didn't push through. It makes me really annoying to work with for people who try to lead a balanced life haha. https://example.com/ 21248 387200 387200.431259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2547035236248 0 \N \N f 0 \N 0 246002162 0 f f \N \N \N \N 387200 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402832 2025-02-14 05:52:41.429 2025-03-29 22:39:49.24 \N Day 142 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 16556 402772 402772.402832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0279050364033 0 \N \N f 0 \N 0 64248972 0 f f \N \N \N \N 402772 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430881 2025-03-09 13:36:05.918 2025-03-29 22:39:49.24 \N ![](https://m.stacker.news/68051) https://example.com/ 720 430626 430626.430881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7117663905141 0 \N \N f 0 \N 0 226368230 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410176 2025-02-20 10:17:24.948 2025-03-29 22:39:49.241 \N Not crazy unpopular, but unpopular with some people so I'm gonna say it.\n\nBitcoin is not salvation, a deity, the most moral cause in the world, etc. I feel like so many people, especially on Bitcoin twitter have inadvertently made Bitcoin an almost cult-like group, which although supporting a good technology and cause, creates a dangerous atmosphere around BTC that drives people away instead of bringing them in.\n\nI came to Bitcoin _**in spite**_ of all the slogans of "Bitcoin or slavery", ∞/21M, etc. Although they are in the distinct minority, I have heard several prominant Bitcoiners refer to Bitcoin as a new world relgion that will overtake all "impure" ideologies. I almost didn't start using Bitcoin because insanity like this made me less sure about it's actual usefulness.\n\nMost Bitcoiners I've talked to seem to see Bitcoin in a reasonable light, where it is a technology and movement that can help the world in political and economic ways. Yet, too many people seem to almost worship Bitcoin like a god, rather than a protocol. Bitcoin is **not** God.\n\nBitcoin will not save you, and being pro-Bitcoin does not make you in any way more moral than a regular person who uses fiat, or even most bankers at that. This is not a jihad, it is a political movement. God has said that idol worship is a sin, and that He looks on the heart rather than the exterior. He will care about how you have lived and treated your brothers and sisters. I don't think He will care if you supported Bitcoin or not, but He will if you used it as an idol upon which you could belittle your brothers and sisters.\n\nWe shouldn't level judgement at people who choose to worship Bitcoin, yet a warning is in order. If you care about being a good person, about actually helping the cause of Bitcoin, and about your eternal salvation, please don't make Bitcoin a deity.\n\nI'm not here to fight you guys. I'm just trying to warn and love. https://example.com/ 21444 409610 409610.410176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6711056253215 0 \N \N f 0 \N 0 5324823 0 f f \N \N \N \N 409610 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443529 2025-03-19 12:02:38.341 2025-03-29 22:39:49.242 \N IMO there is no "too late". If you buy now then yes your purchasing power will probably increase dramatically over the years, but even if adoption saturates Bitcoin is still a worthwhile asset to buy / earn due to all of its other wonderful properties.\n\nPut another way: Suppose price stagnated such that it kept up with inflation but no more (~7-10% PA). I'd still buy it like a madman. It would still be superior and less risky compared to cash, stocks, bonds, buy-to-let real estate...\n\nWas a 18th century worker ever late to gold?\n\nThere is no day where I will ever stop buying / earning Bitcoin.\n\n__@_'-' https://example.com/ 18430 443022 442981.443022.443529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.64178998484996 0 \N \N f 0 \N 0 174039486 0 f f \N \N \N \N 442981 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441830 2025-03-18 10:17:11.4 2025-03-29 22:39:49.244 \N We're really sorry about this and working to fix the issues. \n\nCurrently there are two main issues that cause force closes in mutiny. \n\nPaying to a zeus lightning address almost always causes a force closure because it uses hodl invoices so the user need to come online between the time the zeus user claims the payment and before the htlcs time out, this can be a few hour window and often no user will hit it. Ldk is doing some work to help prevent this to give us more leeway in when the user can come back online but this will still be a problem, frankly zeus lightning addresses are just a nonsensical way to use lightning. https://github.com/lightningdevkit/rust-lightning/issues/2698\n\nThe second being multiple instances of mutiny running for the same seed. We have a bunch of checks to try to prevent this but it is difficult. We've exhausted so many options we're beginning to suspect some browsers (mainly safari) just clears some of our state which can cause the error. In our latest release we've started using a fork of ldk so instead of force closing it'll fail to start up instead, just to add more protection. \n\nAfter all this, if you do everything right but still get a force close, you needed to come back online within 24 hours of the force close to sweep your money. This is just the nature of lightning with its high availability requirements. Our latest release extended this to two days but the best solution would be to add watch tower support so it can be swept without the user. Ldk does have experimental support for this but not something we've built out yet. \n\nWe do work closely with the LSP and if the user's funds are swept we are always able to get the money back.\n\nThese always really pain me because everyone on the team uses the wallet everyday and haven't ran into any loss of funds issues, so it's really hard to try and reproduce what exactly is causing all the problems. Fixing these is our top priority but a lot of it is just trying something and putting it out into the wild and seeing if our number of channel closures go up or down. Posting any logs when you get an issue is always extremely helpful. https://example.com/ 1007 441742 441742.441830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2063868100709 0 \N \N f 0 \N 0 47279903 0 f f \N \N \N \N 441742 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422390 2025-03-02 12:30:04.187 2025-03-29 22:39:49.245 \N Am I a self fulfilling prophet on this site? \n\nWhen I upvote things hard enough, it goes to the top, when I do this early, I get more rewards back for tipping early content that goes to the top. Maybe I just have a good tract record in the things that I tip. Or maybe I'm just the choosen one this site needed. https://example.com/ 9337 422309 420918.422222.422309.422390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.0206772085645 0 \N \N f 0 \N 0 201880298 0 f f \N \N \N \N 420918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428889 2025-03-07 17:37:21.274 2025-03-29 22:39:49.24 \N > AMP payments don't get stuck. They either go through, or they fail very quickly, and they can carry payments between two points so long as there is parallel paths that exceed the capacity required in sum.\n\nI'm afraid this statement is wrong: HTLCs get stuck when the node currently processing it stops responding, independently of how the sender and recipient have negotiated the preimage / payment_hash.\n\nWhat is true is that a part can be re-attempted without having to wait for the HTLC to settle, but only until the last part has been sent. The last part essentially being the XOR of all prior parts, leading to the preimage, and that can't be changed, since now both attempts could end up being claimed, causing the sender to overpay by the amount of that last part. The same is possible with sender-mixins (also called stuckless payments), but without that special case for the last part (each part requires the sender to reveal a secret after the recipient confirms receipt so no guessing if a part has arrived or not, and the sender will refuse to reveal more secrets than necessary to fulfill the payment, i.e., no extra parts that can still confirm).\n\nThat's all for the payment process however, the bigger problem is that channels with stuck HTLCs may end up being closed because the refund timeout is approaching. Neither AMP nor stuckless payments do anything for that situation. https://example.com/ 9341 428368 428292.428368.428889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20625319779712 0 \N \N f 0 \N 0 8569301 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423571 2025-03-03 13:09:15.333 2025-03-29 22:39:49.241 \N Running a node (or multiple) is how you verify that the Bitcoin you are interacting with is legit (according to the rules enforced by your node). Making multiple nodes does not magically force others to use your nodes to verify their own txns.\n\nSo if someone wants 50k nodes that enforce the wrong rules, they're free to create that fork and start using it themselves. Any "non consensus coins" they try to spend will be rejected by every node that is enforcing the "correct" rules.\n\nShould we focus on getting more plebs to run a node? A pleb should run a node for their own benefit. How else can they be sure the sats they "own" are actually theirs? We should educate users of this fact for their own protection.\n\nDo more plebs running nodes "help the network". Yes, it helps with decentralization but its not as simple as "more nodes the better". I.e. one node per pleb is fine. If every pleb ran 10 nodes instead, it wouldn't be any better than 1 node per pleb.\n\nIf you run a node, but never use it for anything, that node is almost useless. It can still help relay blocks, but in terms of its significance towards "validation and enforcement" its basically useless. Even if you run 10k nodes and never use them, its not very helpful for anyone.\n\nThere is a concept of "economic nodes". These are the nodes that back public block explorers, exchanges, wallets, and services that handle lots of BTC or are used by lots of people to "verify" lots of BTC.\n\nThese large economic nodes are the most important ones. Suppose the most popular block explorers and exchanges started using a forked node and stopped supporting BTC. This would cause a great disturbance as many people who use those economic nodes have trusted them with verifying "what is bitcoin". And when they say, "this fork is bitcoin" they are likely to fool lots of people.\n\nNotice that the economic nodes don't need to run thousands of nodes to be successful in pushing the fork onto users. They just need to first gain the trust of thousands of users and prey on the fact that many of those users are not verifying separately with their own nodes.\n\nAn attacker with thousands of nodes could pull off an eclipse attack, whereby the attacker's nodes manage to become the only peers of a node. Thus, they can withhold relaying blocks to this peer and make them fall behind. Its really difficult to do since it only takes one honest peer to keep the chain updated. https://example.com/ 622 423439 423438.423439.423571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2476476007144 0 \N \N f 198062184 \N 2 2417586 0 f f \N \N \N \N 423438 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401375 2025-02-12 23:59:59.227 2025-03-29 22:39:49.243 \N Well, the whole design of costs and rewards that @k00b has built is very smart.\n\nHaving said that, I would point out specially:\n- The fact that postings costs something keeps a lot of trash profiles away. Generally speaking, things being free attracts all sorts of idiots. The moment you charge anything, even if it's just one cent, you get rid of a lot of that population. This filter is probably the single most important thing that I appreciate of stacker.news. I would even be in favor of making posts much more expensive (1,000 or even 10,000 sats).\n- Paying for curating the recent tab is great. When I used other similar platforms, like Reddit, I never ever ever ever went to the fresh/recent/new/whatever sections because why on bloody earth would I waste my time skimming through that pile of shit. Here in stacker.news, at least I get rewarded when I zap good content. And I also can't deny I have some sense of responsibility. I have the power to ignore crap and bring good content to the top, so when I'm in recent, before zapping, I ask myself: is it good for everyone that this makes it to the top? https://example.com/ 4776 401198 401198.401375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.77483215058913 0 \N \N f 0 \N 0 165894250 0 f f \N \N \N \N 401198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448051 2025-03-22 11:17:36.571 2025-03-29 22:39:49.244 \N It could be argued that those in the west have been partially living in an abundant world the last 20 years. Albeit with some very large distortions. Food & clothing has been abundant for some time and that has led to some strange cultural issues like obesity and fast-fashion.\n\nHousing & energy hasn’t been abundant, but feels like is in dire need of bitcoin to demonetise and monetise respectively. Bitcoin is also creating a healthy counter-culture.\n\nAbundance sounds like something we should strive for. It sounds great. Yet we also need values, morals, critical thinking and productive people for abundance to generate a healthy society. If there’s one learning from this century, that would be it for me. The return of morality. Otherwise we run the risk in an era of increasing abundance, of creating more scarcity of meaning in our lives. https://example.com/ 11714 447944 447944.448051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4259044665614 0 \N \N f 0 \N 0 218052202 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431196 2025-03-09 16:02:34.037 2025-03-29 22:39:49.244 \N It's interesting to map this study onto my own experiences.\n\nBack in 2020 I took on a new job with some giant multinational corp. As my country was in peak lockdown at this point, the position was WFH.\n\nShortly after I joined, the project I'd specifically been hired for got canned and they didn't know what to do with me. I was doing virtually no work, from home, on full pay. I'd average perhaps 5 hours of easy work per week. For all intents and purposes, I was on pretty lucrative stimmies.\n\nYou'd think this would be the dream, and for the first few weeks I certainly thought so too. You'd think hey, I now have all this time to chase my passions! Learn new skills! And the company knows my situation, they know I'm just sitting here twiddling my thumbs. It's not immoral at all.\n\nBut there's something incredibly corrosive about receiving money you didn't truly earn. Especially against a backdrop where families, small businesses and entrepreneurs were struggling mightily with the lockdown nonsense. I felt like a parasite. I had no drive. Got fat. Listened to 1000s of hours of Bitcoin podcasts probably.\n\nThis went on for almost a year. I got shuttled from project to project, but never did I need work for a solid week. Eventually I gave up and handed in my notice.\n\nNow I work for a start-up, in the office, and put in around 50 hours / week. Similar pay. I'm far, far happier this way. I really do think humans are beasts of burden and need a purpose, something to struggle against.\n\n https://example.com/ 13566 404249 404249.431196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.37056595804551 0 \N \N f 0 \N 0 150238339 0 f f \N \N \N \N 404249 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444513 2025-03-20 00:40:06.982 2025-03-29 22:39:49.241 \N Base layer payments are self-custody. You alone have the private key. It uses my whisper addresses protocol to automatically derive infinite bitcoin keys from a single nostr private key, that way every time you receive a payment, it shows up in a different bitcoin address, but you can still recover it all.\n\nLightning payments are custodial by default. It automatically sets you up with a custodial lnbits account when you first load the page, which lowers the barrier to entry for people to get started. Also, I don't run the lnbits instance (Ben Arc's company does), so I am not responsible for having custody of anyone's funds.\n\nI plan to make it easy to point it at your own node, but I need to write some software for that. Still, there is a way to do it right now if you're okay with a but of coding in the browser.\n\nHere are instructions to point it at your own node:\n\n- type console.log( localStorage[ "wallet_info" ] ) into your browser console\n- it will show you your lnbits info\n- change that info so that it shows info hosted on your own node (or e.g. a voltage node)\n- then type in localStorage[ "wallet_info" ] = your_modified_lnbits_info\n- then resubmit your store\n\nIf you do all that, all the sats you earn on lightning will flow to your own node. (But be aware! If your lnbits instance is hosted as a hidden onion service, as most of them are, people won't be able to send you funds on lightning unless they happen to be using a tor compatible web browser.) https://example.com/ 15200 444403 444065.444403.444513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0210461185722 0 \N \N f 0 \N 0 113533486 0 f f \N \N \N \N 444065 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430922 2025-03-09 14:09:43.493 2025-03-29 22:39:49.242 \N The easiest way is to have a relay node. It increases the number of possible routes and is generally good for Tor. Especially if you have a good internet connection.\n\nThe second thing is to just use it! I recommend always using it for e.g. researching stuff for online shopping. Tell friends/family to download the apps and explain that it offers real privacy compared to incognito mode.\n\nGet your companie to support it. You'd be surprised how many companies have exit nodes running. And I don't mean only IT companies where some tech guy convinced the boss that they need it for penetration testing - lot of medium sized companies have nodes because the owners ore convinced. The legal status of companies/foundations/clubs/universities are the perfect vehicle to provide exit traffic since no individual human person is liable.\n\nGet other companies to support it. When the Wallstreetjournal recieves enough emails or cn.wsj.com to a tornode make up a big part of their advertising they will ring the bell. Write emails to Tim Cook or Jeff Bezos personally - one day they will learn.\n\nYou can even found a club. There are many clubs only for running Tor exit nodes e.g. Zwiebelfreunde e.v. But many are also wider tech associations such as local Java User groups or other tech enthusiasts. https://example.com/ 20185 430824 430824.430922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7550580187186 0 \N \N f 0 \N 0 181259507 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410614 2025-02-20 15:12:10.966 2025-03-29 22:39:49.243 \N Chase here, I'm an attorney and the CEO. If you don't like our boilerplate language, you can clone the code and run it yourself. \n\nIt's FOSS, P2P and E2EE. We can't control, see or manipulate data shared via the Impervious Browser. We claim zero ownership or interest in your data. Anything to the contrary is contrived.\n\nHappy to have someone tweak the terms to clarify, but this is literally nothing. Love you all. \n\nPeace https://example.com/ 4167 410582 410534.410541.410582.410614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0076670077035 0 \N \N f 0 \N 0 79781981 0 f f \N \N \N \N 410534 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449599 2025-03-23 12:55:37.744 2025-03-29 22:39:49.244 \N I might be breaking my anonymity a little here but I do have problems controlling my limbs (and my speech). This has been a worsening problem since Genesis block.\nI've gone hours without being able to move, and when I can it's pretty sporadic each and every day.\n\nAlthough I might be the most likely to benefit from this, I've still got certain reservations about it. But my reservations are beginning to thaw.\n\nI've seen videos of people without a limb where they can pick up items using their mind.\n\nI'm sure that the technology will quickly advance as the AI used in this technology advances.\n\nSo, for the time being, I'm only voting 'maybe' - only because I'm not gonna be a guinea pig.\n\nBut I'll certainly be watching this space closely and keep an open mind.\n\nI guess as I get older, and my health deteriorates further, I'll come to a point where I feel I've got nothing to lose - but try it.\n\nIt does sound pretty cool. I'm a bit conservative regarding experimenting with my health though... https://example.com/ 9337 449596 449515.449585.449596.449599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.07888886919374 0 \N \N f 0 \N 0 90341162 0 f f \N \N \N \N 449515 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422619 2025-03-02 15:26:14.116 2025-03-29 22:39:49.245 \N A few ideas on some points you touch:\n\n- Working out: I have all I need at home (pullup bar, basic set of weights). I do my strength training in around 20-30 min. Sometimes I even use the minute of rest between sets to cook. I couldn't be fit if I had to go somewhere like a gym to train, it just takes a lot of time. Unless you are into lifting super-heavy and you need advanced equipment, why not stay at home?\n- Meals:\n - Rule #1 is to have your kitchen well stocked. Every saturday, I decide what I'll eat during the next week. Then, I write what I need in order to cook all of that and I go and buy it. This way, I never find myself not having the ingredients I need.\n - Rule #2: always cook some extra servings. If I do pasta bolognese for someone else and me, I'll actually cook 4 or 6 servings of sauce instead of 2. The additional servings go to the freezer. Now I can have lunch some week day in 15min by just boiling pasta and heating up the sauce again (and I'll probably do that while I work out). So, I get a healthy, home cooked, tasty lunch and workout in ~30 min. If you want to take this to the extreme, you can do some batch cooking on the weekend and have all your meals for the week. I don't need to got that far, so I don't.\n - Not a rule, but more of a tip: knowing how to cook a lot of different things let's you find meals that suit your life (due to the time you have right now for cooking, due to the ingredients you have right now if your fridge, etc). Investing in knowing how to cook many different meals provides you more flexibility that makes things easier.\n\n\nOn the rest of them: my work organization is a mess. But let me challenge you here: why do you wanna be so crazy efficient? \n\nI think it's much more important to pick the right tasks than to be crazy productive in doing them. I don't mean to say being productive is not nice, but I wouldn't obsess over it. There is a lot of people doing stupid/unnecessary/pointless stuff in a super efficient way, effectively getting them... nowhere.\n\nInstead, you could make sure you are doing the right things, peacefully do them at a normal, sustainable pace, and happily go to sleep every night knowing you did what you could and you are one step closer to whereever it is you want to be.\n https://example.com/ 13076 422597 422056.422532.422597.422619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1656241295444 0 \N \N f 0 \N 0 6651751 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421281 2025-03-01 14:58:00.305 2025-03-29 22:39:49.245 \N 1. I used bitcoin as an online "anonymous" currency 2013-2015 without understanding the monetary aspects. In 2016 after som austrian economics I finally started to get it and from 2017 it has been almost full time focus.\n2. See earlier motivation reply. But to expand.. After understanding how the Bitcoin network and the Mempool work, I didn't find any tools that actually visualizes what is going on in a Bitcoin Node, I know the data is there, but just not so easily accessable.\n3. I think the only big thing I want to see is seamless Bitcoin and Lightning integration\n4. Blixt Wallet (made by a good friend of mine) as non custodial wallet. And Zeus when connecting to a node. https://example.com/ 844 420895 420895.421281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9934429216701 0 \N \N f 0 \N 0 157791830 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408061 2025-02-18 14:50:56.809 2025-03-29 22:39:49.241 \N Obviously a massive price pump would be best but I think a good start could be a media kit. \n\nSatoshi.Money has a good basic kit for colors and logos but some images would be better. It's good to know what the specific colors and logos that we should be using to make any media assets https://docs.satoshi.money/satoshi-knowledge-base/brand/brand-assets\n\nI just found some packages on Fiver starting at like $20 for 5 banner sizes. We could maybe get some of those made up to contact bitcoin publications asking for inboud links via their ref links.\n\nAs soon as we have some good banners, I can def add one to my site (https://WhatIsBitcoin.com)\n\nThis is what I am thinking of for stills but maybe some gif banners would also be good. \n\n![](https://m.stacker.news/59280)\n\nCan we get @LoveIsBitcoin to use that new ref system to grow their lifetime referrals? Stacking bitties seems like exactly the sort of thing Libby would want to share. SN is not on her "Earn Sats" coupons page either: https://coupons.loveisbitcoin.com/product-category/earn-sats/\n\nI think if we can come up with some tasteful banners, we could contact a lot of the smaller publications and ask if they're interested in placing a banner somewhere on their site with their ref link to SN. \n\nI think a nice tasteful gif banner with text that says "Stack sats for discussing (bitcoin, music, art, movies, memes, podcasts, photography, science, health) with each of these words on a looping carousel.\n\nDoes that sound like something you'd be interested in experimenting with? https://example.com/ 7913 408025 408015.408025.408061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1726986764683 0 \N \N f 0 \N 0 14518016 0 f f \N \N \N \N 408015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430938 2025-03-09 14:19:14.549 2025-03-29 22:39:49.244 \N I am starting a bamboo plantation. All things considered it is possibly one of the best backup crops for the world (And it practically needs no special care after a few years, it will become self sufficient). The leaves are green all year, even during winter & snow, and as such can provide emergency nutrients to livestock. The new shoots are also edible for humans. You can make tools and shelters with the older stronger canes. And it grows very quick (But only in april for the most part). So its nice to be able to have something low tech to fall back on, in case the switch from fiat to Bitcoin makes government go berserk and scorches the earth. https://example.com/ 1009 430453 430453.430938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.26800184242954 0 \N \N f 0 \N 0 211998787 0 f f \N \N \N \N 430453 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404621 2025-02-16 02:49:18.083 2025-03-29 22:39:49.245 \N Day 159 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 1603 404617 404606.404614.404617.404621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.493536567628361 0 \N \N f 0 \N 0 102292451 0 f f \N \N \N \N 404606 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431175 2025-03-09 16:01:15.786 2025-03-29 22:39:49.245 \N Obligatory not a node routing expert, but this guy is a good follow: https://mobile.twitter.com/cold_sats\n\nHe's been documenting his journey, pitfalls and all. https://example.com/ 4602 431150 431150.431175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.248859785949 0 \N \N f 0 \N 0 29251268 0 f f \N \N \N \N 431150 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410702 2025-02-20 16:15:39.018 2025-03-29 22:39:49.247 \N Sorry stackers but this week you have to live with my shitposting and fighting shitcoiners on SN.\nAll week will rain and I can't go back to continue my citadel building.\nWill do exactly this: posting all day on SN, drinking beers and answer bitcoin questions to stackers and my fellow padawans on telegram.\n\nThis is an example of many requests I have to answer on my telegram and I try to help them all with anything I can.\n[![requests-for-help.jpg](https://imgprxy.stacker.news/KFa5ZcanN7Vi6csCEXSXsaaw4YpWFMXWUdMqT4-LZe4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvSGtQTmdOZ2MvcmVxdWVzdHMtZm9yLWhlbHAuanBn)](https://postimg.cc/ZWpHPV04)\n\nPS edit: as I always said to fellow bitcoiners - start learning hard about bitcoin and be that guy that will help all those 8 billion out there that they have no clue about bitcoin. Darth can't help them all... https://example.com/ 1737 410178 410178.410702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3300673808946 0 \N \N f 0 \N 0 44939619 0 f f \N \N \N \N 410178 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448622 2025-03-22 18:30:33.218 2025-03-29 22:39:49.247 \N Next round of open source contributions to SN. User subscriptions are on their way, and I’m working on de-duplicating notifications next! https://example.com/ 688 441130 440692.441011.441130.448622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.17716758146879 0 \N \N f 0 \N 0 166190890 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434677 2025-03-12 06:21:00.652 2025-03-29 22:39:49.249 \N - RFK's voice \n- Tucker's laugh \n- A Mississipi Trump rally\n\nhonorable mention:\n\n- Elon tweets\n- TikTok https://example.com/ 9494 434333 434317.434333.434677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.43040602263 0 \N \N f 0 \N 0 7616634 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443509 2025-03-19 11:48:00.232 2025-03-29 22:39:49.489 \N ### A reminder for all stackers (I wish we had that SN feature with "remindme"):\n\nI am raising here a warning, due to latest psyops (so called wars) and other factors that went under the radar. Is always the same scenario of "make huge noise on something to attract people's attention, but quietly prepare something more evil that normally they wouldn't accept it".\n\nSoon, it will come that day when you will be stuck in your nice cozy NY appartment or whatever big city and you cannot get the fuck out without a permit linked to a CBDC wallet. And is coming faster than you think. Don't sleep on the presumtion that Bitcoin will be adopted before CBDCs... don't lie yourself. We are far away from bitcoin adoption. And before that, CHAOS will be first.\n\nMy advice is the following:\n- start ditching fiat ASAP, all of it\n- start building your own bitcoin community around you, near by. THIS is the most important thing!\n- start building a small circular economy between, food growers, services.\n- start educating your neighbbors about bitcoin\n- move away from big cities, change your job if that is necessary\n- if you can, start building your own homesteading place, slowly be as much as you can self-suficient in terms of food and basics. Learn more about plants, growing, tooling, repairing. Learn to have more skills, basic skills.\n- start living a simple life, not complicate it. Life is simple bbut people usually complicate it with unnecessary things.\n- these bitcoin communities will be the only way that will keep you alive and well. Bitcoin will be your "underground" money for a while. Be prepared.\n\nExample, check this. https://farmfoodmap.org/ - nearby independent farmers, growers, farm shops (some of them already take btc). Expand these type of maps with Bitcoin, like https://btcmap.org\n\nRelax, don't get involved in any conflicts outside of your "place". Is not your damn business. Just watch and laugh. Let them kill each others until nobody remains. Is their choice not yours.\n\nI know that for some this sounds very cynical, but is the truth and truth always hurts when is told right in your face.\n\nDon't let your emotions to conquer you. It's all a psyop around you, that feeds from your FEAR. They want your fear but you interpret it as "empathy". Totally wrong. It's the fear inside you that tells you "OMG what if they came after me?" so you retreat in some kind of empathy with one side or another and you have that desire to "help" them.\n\nDon't do it. Is exactly what they want from you: to take sides and "help" but in fact they want you to be involved in their psyop.\n\nDon't be afraid that some gov will shut down the internet. That will be your ultimate freedom and they do not want that. Yes, it could be a scenario where they will request a CBDC ID to be able to connect to internet. That is a real scenario and is dangerous.\n\nThat's why is good to start those communities and connect each others, with LoRA, closed networks etc and then at somne point find a door to connect to the rest of the world. Solutions exist today to do that. Read and learn.\n\n*Some were laughing at my citadel calling it a bunker... my reply was: my citadel is my plan A, Bitcoin is my plan B. Few really understand \n\nthat answer. I will be the one that will laugh in the end...*\n\nSTOP feeding the beast. How?\n- stop using their evil fiat money\n- stop supporting any politician, party, side, movement or whatever shit psyop\n- stop being a shitizen. Citizens do not have rights, only privileges, stop being that slave\n- stop paying taxes, are a fucking lie\n\nYou will remember my warning. Call me crazy lunatic, call me whatever you want, I don't fucking care, I just watch and laugh. Because I know I am right.\n\n[![hard_truth.jpg](https://i.postimg.cc/6Q2wX46g/hard_truth.jpg)](https://postimg.cc/f3N17L9f) https://example.com/ 18525 443129 443129.443509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6850082626219 0 \N \N f 0 \N 0 94684259 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436443 2025-03-13 15:04:58.848 2025-03-29 22:39:49.492 \N Oh I dont know if I have used it enough yet to say, but I will try to answer:\n- It's okay to make the design nicer, I promise.\n- It should use Slashtags and Reputation features more deeply\n- The jobs page should be priced per day, not per minute, and should have a 1 sat minimum bid.\n- it shouldnt be custodial balances\n- it should have more leaderboard features for users and post-types and timeframes, etc\n\nmaybe it already does some of these things or these are bad ideas, just riffing! https://example.com/ 9336 436241 436241.436443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.43396753324713 0 \N \N f 0 \N 0 107699983 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:22:51.893 f \N \N \N 0 0 0 0 0 0 0 433821 2025-03-11 12:21:14.638 2025-03-29 22:39:49.492 \N Hopefully this comment doesn't age well:\n\nSeems like they're massively over promising on the product, especially with no live product to show for it so far. Series A for a company without a product and with 0 revenue is very odd.\n\nI'm also weary since Fedi keeps getting mentioned as some magical privacy and scaling solution for Bitcoin.\n\nShould have released something smaller and more targeted to start. https://example.com/ 21218 433805 433805.433821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0180671709778 0 \N \N f 0 \N 0 18810544 0 f f \N \N \N \N 433805 \N 0 0 \N \N f \N 2025-03-20 08:19:04.05 f \N \N \N 0 0 0 0 0 0 0 431253 2025-03-09 16:08:14.528 2025-03-29 22:39:49.242 \N Bitcoiners don't have a good understanding of generalizing. I'm kinda kidding because just saying "bitcoiners" do/do not x is generalizing. We are a diverse group but not as diverse as the rest of the world. There are certain common patterns you see with bitcoiners. \n\nMy theory about some of the things you listed is that most of these are somewhat heterodoxical views. I think many of us were already comfortable with having views that aren't on the index card of allowable opinion before bitcoin. But there is something that happens to a person when you learn that the majority of people are wrong about one thing. And then another. And then another. You start to break out from the training to trust institutions and you start questioning things most people just assume are as firm as bedrock.\n\nThe challenge is to not go overboard to the other extreme and believe every alternate view just because it is opposed to the orthodoxy. I saw a lot of this during the pandemic. People questioning narratives that had tons of holes in them but then accepting theories that had very little basis in evidence or fact. Some were literally just some dude online suggesting something might be the case.\n\nMany times family would send me a video and I'd look at it and research for many 30 minutes and find out... yeah this is nonsense. So they were exchanging their trusted sources. Moving from the institutions that had been lying to individuals obviously seeking fame by sensationalizing and capitalizing on the opportunities. Seek to be a curious skeptic not a crackpot.\n\nOverall, I don't see bitcoiners on the whole as having issues with these things. Its the opposite. Most of the issues if you want to call them that are with influencers seeking fame and attention. The systems reward sensationalizing over rationality. I'd rather see more questioning than more sheepish behavior. The latter is what leads to a nation of people going along with genocide. The rise of monsters that lead the masses. https://example.com/ 16149 392589 392589.431253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2508583349067 0 \N \N f 0 \N 0 103754755 0 f f \N \N \N \N 392589 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431025 2025-03-09 15:10:05.551 2025-03-29 22:39:49.243 \N Wow! Your perspective couldn't come at a better time for me personally. I don't want to dwell on your gender exclusively, since your points about the "chosen few" in a group ring true. Please bear with me. I attended my first in person meetup a few weeks ago. I actually wrote about it here. I noticed how few women were in attendance. My 22 year old daughter has some interest in learning about bitcoin, and almost decided to go with me the other night. She decided not to. She has seen a lot of toxicity towards women online, particularly reddit r/bitcoin, and didn't think she would be comfortable. I honestly don't blame her. I had a great time at my second meetup, but there were probably two women in a group of close to 100 people.\nI wish things were different. https://example.com/ 5036 424832 424832.431025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3242420067289 0 \N \N f 0 \N 0 54369560 0 f f \N \N \N \N 424832 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401697 2025-02-13 10:26:32.587 2025-03-29 22:39:49.245 \N Just returned from the gym. \n\nAlso, very pleased this morning to have lost enough weight to see a number on the scale I haven't seen in, I don't know, maybe 15 years.\n\nNothing succeeds like success. https://example.com/ 7983 401333 401166.401333.401697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8015237808144 0 \N \N f 0 \N 0 186883382 0 f f \N \N \N \N 401166 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410479 2025-02-20 13:54:55.86 2025-03-29 22:39:49.246 \N I have been using Phoenix for a while and didn't have such problems. In fact, I am quite happy with it.\n\nThere is something where you are right: since they are charging 1% fee, 3000 sats minimum, they should always open a 300000 sats channel at least.\n\nIf you use the Android version, you can disable automatic channel creation.\n\nLastly, custodial wallets maybe could offer the chance to open a self-custody channel upon reaching a certain balance. That would bring the best of both approaches. https://example.com/ 21768 410386 410018.410068.410386.410479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2216713452616 0 \N \N f 0 \N 0 124352037 0 f f \N \N \N \N 410018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401557 2025-02-13 06:38:38.441 2025-03-29 22:39:49.246 \N Today is my mother's b-day... 71 for this great lady whos has gone through A LOT in this world but never lost her charm and beautiful smile. I'm blessed for having her, my family and friends... just wanted to share that with you guys who are becoming my new cyber-fam https://example.com/ 16230 401552 401516.401544.401552.401557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4581322276701 0 \N \N f 52981944 \N 1 99861880 0 f f \N \N \N \N 401516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407819 2025-02-18 12:07:09.109 2025-03-29 22:39:49.247 \N One small step backwards for bitcoin, one giant crash for shitcoins. https://example.com/ 17212 407619 407619.407819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.76455843761601 0 \N \N f 0 \N 0 245161124 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416793 2025-02-25 21:01:49.858 2025-03-29 22:39:49.248 \N ![](https://www.zapread.com/i/9KQ) https://example.com/ 1120 416786 416768.416780.416786.416793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1021573710046 0 \N \N f 0 \N 0 144122519 0 f f \N \N \N \N 416768 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435778 2025-03-13 00:51:32.615 2025-03-29 22:39:49.249 \N What is your opinion on\n1. Drivechain\n2. Nostr\n3. Hosted Channels https://example.com/ 15521 435224 435224.435778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7029028205538 0 \N \N f 0 \N 0 202108023 0 f f \N \N \N \N 435224 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434768 2025-03-12 08:20:36.3 2025-03-29 22:39:49.249 \N I know this doesn't directly address your bounty. But I thought maybe this would be a better alternative. \n\nOne of the challenges of working with OpenAI API is the rate limiting (3/minute in my case). Instead of consuming a call on every link post, this bot will just summarize where a user has asked for a tl;dr summary. \n\nStill a WIP. Trying different ways to get the text from a website. Settled on python-readability and bs4. https://example.com/ 2508 434741 434724.434741.434768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5917915414649 0 \N \N f 0 \N 0 107746050 0 f f \N \N \N \N 434724 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434519 2025-03-12 01:42:51.549 2025-03-29 22:39:49.249 \N I'm pretty bad with this one. With a few young kids I'm finding it hard to get the time.\n\nWe are lucky that our apartment community are quite friendly and social (most of them anyway, still a few we could do without). It does seem to be pretty rare these days in the city to know all your neighbors. https://example.com/ 654 434404 434278.434404.434519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5552619724831 0 \N \N f 0 \N 0 82715400 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457378 2025-03-28 13:01:34.829 2025-03-29 22:39:49.251 \N `ᕦ(ò_óˇ)` Day 14 of exercising everyday before the saloon opens\n\n2 weeks! Some conclusions:\n\n- I sleep way better now\n- I have more energy\n- I feel like I'm on a good track in life\n- I'm stacking sats\n- some people were inspired\n- public accountability works but it's weird. Why can't I just be accountable towards myself? Are we that much social creatures? That we need other people to keep us accountable? A quote I'll never forget from an ASMRtist is this:\n\n> we're as much social creatures as we like to deny it\n\nI woke up at 9AM, stayed in bed until 10AM, got up, noticed my body hurts from the workout yesterday and just went outside for some fresh air and sunshine.\n\nLiving the plant life https://example.com/ 1008 457372 457126.457280.457372.457378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49383559647796 0 \N \N f 0 \N 0 74884015 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416906 2025-02-25 23:02:39.964 2025-03-29 22:39:49.243 \N There is an attitude, common among bitcoiners, that centralization is always bad, all the time. (Not saying this is your attitude, @kepford.) Centralization has some amazing benefits, and I want to live in a world that has lots of kick-ass centralized services and institutions to take advantage of. I just don't want crucial things (like money) to be centralized, and I don't want to depend on any centralized entity so totally that my life will be crippled if they turn evil or something bad happens to them.\n\nPoint is, SN can do a lot of amazing things because it's a website run by a dude. Nostr may take off, but my hypothesis is that it won't get beyond the curiosity phase until some new infra layers / services develop that centralize and make classes of functionality economically viable. The underlying protocol layer can remain how it is, more or less.\n\nI have an identical hypothesis about bitcoin. It will either grow a varied ecosystem and be used by people with all kinds of ideologies, served by a host of groups and institutions across the 'centralization' gradient, or it will dwindle into irrelevance over time. https://example.com/ 12220 416823 416158.416823.416906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.810917942741 0 \N \N f 0 \N 0 31554282 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441870 2025-03-18 10:46:34.829 2025-03-29 22:39:49.243 \N We need a caturday on SN...\n\nThis is literally my cat named Leia (yes a Darthcoin must have a cat named Leia no?)\nShe love the fire (from Mustafar) and Bitcoin.\nI have 4 cats.\n\n[![Leia-BTC-fire.jpg](https://imgprxy.stacker.news/Q3ozMXu9wrjgyLH4Hvi2_wzVp-HRp4yfTYnHmx-uU-w/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvNjVxSDM3TEgvTGVpYS1CVEMtZmlyZS5qcGc)](https://postimg.cc/ppNQcLS8) https://example.com/ 6578 441868 441868.441870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.24142274952608 0 \N \N f 0 \N 0 213983942 0 f f \N \N \N \N 441868 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404494 2025-02-15 23:13:58.978 2025-03-29 22:39:49.243 \N I found out a friend of mine died in a car accident yesterday. Feels bad man. Something something time preference. Hug your loved ones people. https://example.com/ 2195 400300 400261.400300.404494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.812147648857 0 \N \N f 0 \N 0 86221013 0 f f \N \N \N \N 400261 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456636 2025-03-27 18:02:27.035 2025-03-29 22:39:49.244 \N ![1000 Words](https://i.postimg.cc/s2RgHS54/B50540-C3-067-B-4183-AC24-3-E8248513657.jpg ) https://example.com/ 1145 456525 456525.456636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8770998631023 0 \N \N f 0 \N 0 81162263 0 f f \N \N \N \N 456525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401663 2025-02-13 09:59:15.512 2025-03-29 22:39:49.244 \N Do not let that become a chip on your shoulder. Everyone will become more interested when things align for them to do so. I was in Bitcoin for a long time before everything clicked. Don't be in a rush. Have patience. You also place too much power on why someone is in Bitcoin. Why should it matter? If they see that it can benefit them either long term or even short term then who are any of us to gate keep that? Just because Bitcoin is not used in the exact way you want, or people don't understand it in the exact way you do does not mean you should give up on their path to understanding it.\n\nI don't understand why so many Bitcoiner's want to take the path of being so jaded. Is your goal to get people using Bitcoin or not? Did you contribute to Bitcoins yearly growth in adoption or not? Those are the only two things that actually matter in any of this. Not why someone uses Bitcoin or if they are a maxi and not if someone hodl's. Literally not relevant to Bitcoins adoption.\n\nBitcoiners are going to have a real difficult time accepting people who don't care about being sovereign and don't care about self custody, but you're going to have to accept those people to. After all, Bitcoin is for everyone. \n\ntl/dr none of your business why someone is motivated to learn about Bitcoin now. Take the opportunity and be an educator or sit in silence. https://example.com/ 7587 398220 398220.401663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8324090732061 0 \N \N f 0 \N 0 54420795 0 f f \N \N \N \N 398220 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451382 2025-03-24 14:27:37.746 2025-03-29 22:39:49.244 \N Today I applied for a Mobile Engineer job position at CoinKite via SN jobs tab. \n\nI was contacted by someone on Telegram to help fix a ListView scrollable bug on the Nostr client he was working on in Flutter. After spending 2+ hours trying to solve version conflict issues related to their project and my PC's Flutter installation, I found out that the project was not functioning. Unfortunately, this meant that the time I spent on it was wasted.\n\nI then worked on my own project, LightningX, to try and solve a 307 POST response issue while creating an invoice. I soon discovered that the package I was using (dio) was buggy and was causing the error. This was an additional waste of time.\n\nToday was also my birthday, but I still don't have a job, so I postponed my birthday celebration until I am able to start working and earning money as a mobile app dev.\n\nThat's all for today. Bye.\n\n[If you know someone who is hiring mobile app dev or in general flutter dev please redirect them to me 🙏] https://example.com/ 14650 451276 451266.451276.451382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3454390992355 0 \N \N f 478401162 \N 3 111652571 0 f f \N \N \N \N 451266 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449494 2025-03-23 11:59:51.719 2025-03-29 22:39:49.245 \N I've been doing more reading lately about the topic of "digital preservation" and one topic that comes up is how in any long running digital system, there is not point of "having preserved digital content", instead it's an endless task of "continuing to preserve" digital artifacts.\n\nIn the same way, I don't think you can say Bitcoin will ever "be a success". Rather, I'd say that it's "currently successful".\n\nHow can we ensure bitcoin's continued success?\n\nNot to shill Base58 but to totally shill, I really think that if we're not taking the time to build good information about how bitcoin works, the protocols that it's built on, and making them really easy to access and find information about how the protocol works, we risk atrophying as an ecosystem over the next 10, 20, 50 years. It's important to me that people are able to really understand bitcoin, because without that understanding you lose some capacity to stay self-sovereign and decentralized.\n\nI think all the work every bitcoin educator is doing of teaching people how to hold their own coins, how to run a node, how to look at mempool.space and understand what they're seeing -- this is all really important for bitcoin's continued success. :) https://example.com/ 20788 449038 447818.448026.449038.449494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4278678118564 0 \N \N f 0 \N 0 76126052 0 f f \N \N \N \N 447818 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454926 2025-03-26 16:38:38.091 2025-03-29 22:39:49.246 \N ![](https://i.ibb.co/VQML7yF/Fm-XMtvj-WAAIQe-GI.jpg) https://example.com/ 21208 454895 454895.454926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.49987235568937 0 \N \N f 0 \N 0 228932478 0 f f \N \N \N \N 454895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415166 2025-02-24 15:08:58.01 2025-03-29 22:39:49.243 \N Losers write about loser conferences. Winners reminisce about traveling in 2020 in completely empty airports and meeting only high-signal people who did the same.\n\nWinners go and talk to OG's and experts for feedback on their ideas, get inspiration, make connections, put skin in the game by making their face accountable to their peers. \n\nWinners go to conferences and land jobs, win hackathons, raise a little seed money to build the next big thing.\n\nConference goe'rs are the men and women in the arena. Conference organizers are happy to separate shitcoiners from their money to give Bitcoiners a place to network and take in social mana. \n\n https://example.com/ 21672 415162 414755.415076.415098.415104.415107.415134.415140.415162.415166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0714515183672 0 \N \N f 0 \N 0 152937276 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417048 2025-02-26 03:15:16.782 2025-03-29 22:39:49.244 \N It seems to me that all defi boils down to these five apps:\n\n1. issuing NFTs and other altcoins, especially stablecoins\n2. trading the base currency against NFTs and altcoins, especially stablecoins\n3. lending out the base currency to obtain stablecoins (sometimes this is presented via a leveraged trading interface, but ultimately it's still just lending + trading)\n4. privacy pools like tornado cash\n5. rollups like arbitrum\n\nPart of the reason why defi is almost entirely a bad idea is this:\n\n- notice that the first three options all involve altcoins\n- but altcoins are dumb, so defi is dumb too (except for the last two things)\n- notice that the first three all involve stablecoins\n- stablecoins are centralized so "de"fi isn't "de"-centralized (except for the last two things -- but keep reading because rollups aren't usually decentralized either)\n - stablecoins are usually issued via a custodian who holds an equivalent amount of fiat currency as collateral\n - this method has an obvious single point of failure who can steal user funds -- so it is centralized\n - the next most common issuance method is through user-generated collateralized debt positions e.g. Dai\n - this only works if auctions occasionally occur to sell the collateral to Dai holders if the price of Dai falls, which thus increases the price of Dai relative to the underlying collateral until it (hopefully) achieves stability again\n - but auctions cannot "know" the price of Dai without an oracle (e.g. Chainlink) to "tell" the blockchain the price\n - the oracle is less obvious as a single point of failure, but that's still what they are -- so it is centralized\n - moreover, oracles can abuse their trusted position to steal user funds by participating in the auctions and falsely reporting that the price of dai fell in order to obtain the underlying collateral at an unfair discount\n- privacy pools are, in my opinion, actually a good idea and I have no real criticisms of them except I think it was a mistake for tornado cash to have the main website use a governance token -- but that's not a requirement of privacy pools, it was just a dumb fiat-minded error made by that particular team\n - however, privacy pools are pretty similar to coinjoins, which do exist on bitcoin, so we "do" have this form of defi on bitcoin - except coinjoins require the participants to interact with one another, which imo is a major drawback compared to privacy pools\n- rollups are, in my opinion, also a good idea, though the "easy" way to do them involves a centralized sequencer who can withhold the data needed by users to withdraw their funds -- and thus hold user funds ransom -- and thus steal from their users\n - however, there are designs that mitigate this, including the "zk" variants of rollups, and there are also some models for where to put the data -- namely, spacechains -- that I think can solve the data availability problem and make rollups actually work in a decentralized manner\n - there are no rollups on bitcoin yet but I think bitvm and "brollups" demonstrate that we can get something roughly equivalent on bitcoin\n\n> Does the more expressive Solidity language actually enable DeFi to work as it should where Bitcoin Script can't?\n\nThe first three apps that "count" as defi (even though they aren't really decentralized) aren't even good ideas because they require the use of stablecoins and altcoins, which are bad ideas. But in fact they do not require anything that Bitcoin Script can't do:\n\n- issuance: the ordinals and runes people have created NFTs and altcoins (including stablecoins) on bitcoin and so have some lightning devs, e.g. see boardwalkcash.com which has a stablecoin that works on lightning -- and this all demonstrates that bitcoin script has everything we need to issue these things in a manner similar to how "defi" does it (but it's still a bad idea because altcoins are dumb)\n- trading: the ordinals and runes people have created auction websites which demonstrate that it's possible to trade NFTs and altcoins (including stablecoins) for bitcoin in a manner similar to how "defi" does it (but it's still a bad idea because altcoins are dumb)\n- lending: again, it's not a good idea because it involves potentially giving away your bitcoins to get altcoins (which are dumb), but you can do this on bitcoin -- which is why hodlhodl has a lending product. You might say "but that involves a trusted third party!" but so do ALL stablecoin-based loans -- because the collateral for the stablecoin is either *custodied by* a trusted third party (e.g. USDC and USDT) or *relies on a trusted oracle* to end up in the right person's hands (e.g. Dai). If you want to do loans *without* acquiring any altcoins you can use my [Loan Shark protocol](https://github.com/supertestnet/loan-shark/)\n\nThe last two apps are privacy pools and rollups, and for those I say this:\n\n- the existence of coinjoin software demonstrates that privacy pools are possible on bitcoin in an interactive form (yes I do want to make them non-interactive and I think covenants can help here)\n- the existence of bitvm + brollups demonstrate that rollups (or something almost just as good) are possible on bitcoin too\n\nSo no, there is basically nothing in defi that bitcoin script can't do -- though most of it is a bad idea and some of it might have to remain interactive at least until we get a covenant soft fork. https://example.com/ 654 416109 416056.416109.417048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3469185312146 0 \N \N f 0 \N 0 88352667 0 f f \N \N \N \N 416056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403050 2025-02-14 11:56:50.393 2025-03-29 22:39:49.244 \N > The legacy technical leadership in bitcoin is becoming increasingly less effective.\n\nRight off the bat James gets something wrong: the leadership of Core right now is mostly not "legacy". They're newcomers like Chow and Zhao who got involved relatively recently.\n\n> Instead they are distracted with valuable but secondary issues like mempool policy\n\nGood mempool policy is essential to making L2's work; L2's are the only viable solution we have to scaling self-custody to more people. While I disagree with Core on some of the detailed specifics of the mempool policy that has been adopted, the reasons why so much work has been done on mempool policy are correct.\n\n> When the regulatory hammer comes down, tens of millions will look to withdrawal their coins into self-custody. But they may not be able to.\n\nBitcoin can open about [1.1 billion channels/year](https://petertodd.org/2024/covenant-dependent-layer-2-review#lightnings-scaling-limits) with the *existing* Lightning protocol, with fairly simple changes to existing wallets. Tens of millions is not a big deal.\n\nThe irony here is that James has been wasting a bunch of time on an unimportant proposal that does nothing to scale self-custody: OP_Vault. In fact, OP_Vault makes the problem *worse*, by encouraging a particularly inefficient way of doing self-custody, approximately doubling the amount of chain space needed.\n\nMeanwhile we have [good reasons to not want to rush into multiple user per UTXO systems](https://petertodd.org/2024/covenant-dependent-layer-2-review#failure-data-ratio).\n\n> If you think that most people should be able to DCA and withdrawal to self-custody once a month, maybe spend once every few years for big purchases, I've got news for you\n\nNo-one has flushed-out proposals that let the world population DCA to genuine on-chain self-custody with minimal fees. Sorry. But we just haven't figured out how to do that. Ark is one of the things that comes closest. But holding a true self-custodial balance on Ark will require fees to pay for liquidity.\n\nThe most straightforward way to do DCA with minimal costs is to DCA to a trusted token, eg ecash, and periodically use the accumulated balance to resize a lightning channel. We have about enough on-chain capacity to resize about 470 million LN channels per year.\n\nThe world population with a cellphone is estimated to be roughly 4 billion people. So that gets us reasonably close. https://example.com/ 6717 402904 402904.403050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8424614164677 0 \N \N f 0 \N 0 208445689 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415322 2025-02-24 17:44:26.48 2025-03-29 22:39:49.245 \N * `/~security`\n* `/~privacy`\n* `/~technology`\n\nBut perhaps a better approach would be to open new subs for registration and moderation. With all this Reddit API Soap opera, reddit is on its way downward, and SN is definitely an upgrade. https://example.com/ 21521 414861 414861.415322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.006516817748 0 \N \N f 0 \N 0 194673238 0 f f \N \N \N \N 414861 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444480 2025-03-19 23:12:20.605 2025-03-29 22:39:49.247 \N I would first and foremost review my security model. If Bitcoin shot up like that, you'd know two things:\n\n1) The economy is well and truly fucked\n2) Bitcoiners now have a massive target on their backs\n\nYou should assume that exchanges will shortly get hacked / compromised, and your purchasing history and KYC info made public.\n\nYou should also assume that the homes of Bitcoiners will start getting raided by criminals and governments alike.\n\nDepending on the situation, you might want to upgrade to multisig provided you have enough secure locations and don't anticipate needing to flee the country. https://example.com/ 5865 444158 443372.444158.444480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4494843476993 0 \N \N f 0 \N 0 103603957 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430967 2025-03-09 14:37:35.36 2025-03-29 22:39:49.248 \N In the summer of 2012 I went to buy some beers, with just 20 bucks in my pocket.\n\nAt the entrance of the grocery shop I met an old old friend that didn't saw him for long time. And this old wise friend of mine (is older than me and literally like ObiWan), he told me:\n\n>Hey man, don't buy the beers, let's go to my place and I will show you something and we get some beers.\n\nAnd he show me how he mine Bitcoin and what is Bitcoin.\n\nHe literally told me:\n> "if somebody will want to strike down Bitcoin, it will make it even stronger than we can imagine."\n\n[![obiwan-btc-force.jpg](https://i.postimg.cc/fRxJYw0s/obiwan-btc-force.jpg)](https://postimg.cc/yD81HCPp)\n\nThat phrase struck me like a lightning, instantly. Was my "eureka" moment, about how to fuck the banks and the govs.\n\nWent home, without beers but with my first BTC in my wallet (I still have it). That made me think and study deeply into Bitcoin and that's how DarthCoin was born.\n\nAnd I never let Bitcoin from my hands, I never stopped learning. And never used or bought anything else than Bitcoin. And for more I learned about Bitcoin, more toxic I became.\n\nBased on this experience, I try to orange pill others, friends and family, nearby merchants.\nAnd I wrote guides, Bitcoin and Lightning guides, about how to use Bitcoin. https://example.com/ 21734 430920 430920.430967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6922763294569 0 \N \N f 0 \N 0 193905760 0 f f \N \N \N \N 430920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435239 2025-03-12 14:46:49.887 2025-03-29 22:39:49.248 \N I think if Nostr solves some need for SN, then it makes sense to integrate, but integrating just for the sake of integrating (bringing another dependency) is bad idea in my opinion.\n\nSo far I think the main problem nostr solves is censorship resistance for broadcasting (ie twitter), because the relays are simple and users own their ids (much better than mastodon). So that's something SN could get from nostr, although I think it will bring many interesting challenges. https://example.com/ 2529 435204 434795.434798.435179.435194.435204.435239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.965617819444 0 \N \N f 623840960 \N 6 40195706 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449210 2025-03-23 09:05:11.877 2025-03-29 22:39:49.249 \N Neuralink. Removing the latency between human thought and computation will be a absolute game changer. However people have (warranted) fears of how it'll be used for evil. If built correctly it will probably be one of the greatest inventions for humans, however people say they'd never get one, they'll be left in the dust unable to compete in the market. https://example.com/ 11038 449016 449016.449210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9833637861009 0 \N \N f 0 \N 0 124938900 0 f f \N \N \N \N 449016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415933 2025-02-25 09:00:59.368 2025-03-29 22:39:49.244 \N One thing I've noticed: almost all nostr profiles have a display name, a picture, and a bio, and almost all of them seem to be stored exclusively on relay.damus.io. I've connected to the top 5 relays on nostr.watch, queried for metadata for random accounts, and I *only* get responses from relay.damus.io. No one else has that data.\n\nI have a theory about why this is too. I think it's because so many people use the amethyst and damus apps, which start off with damus as a default relay, and the first thing they do is create a profile. So that info goes on the damus relay. Later on, they may add other relays or remove damus. But when they created their profile, damus was their main relay. Consequently, damus has almost all profile data, and basically no one else does.\n\nI know one way to help solve this. I could write an app that downloads all metadata posts from damus and rebroadcasts them to other relays. But it feels like there's an underlying problem there that this idea doesn't address. The underlying problem, I think, has to do with the intersection of "wanting to set reasonable defaults for your users" and "not wanting to make everyone reliant on just one relay." Setting people up on the damus relay by default is a good idea, because so many people are using it. But defaulting to damus also means damus has a bunch of data that few other relays have. And right now, at least for profile data, it seems to me there's an imbalance toward the latter. https://example.com/ 17014 415892 403036.403695.403851.406927.415892.415933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.04207884409923 0 \N \N f 0 \N 0 140837491 0 f f \N \N \N \N 403036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431042 2025-03-09 15:11:13.436 2025-03-29 22:39:49.244 \N I think you have the opportunity to play with community moderation. Hacker News uses upvoting and downvoting to do this, but you can only downvote after a certain amount of reputation. You can use sats earned as some quasi-reputation score and use that to give such people some power to downvote for some sats. Personally, I think downvotes should be way more costly than upvotes. It's a serious accusation to be making and most people don't do it unless it's serious. You also don't want it to be abused. Thus, making it more expensive will make people think twice about it.\n\nThe idea of staking to post is good as well. It has the nice side-effect of preventing spam. So posting might cost 10 sats, but also 10000 sats in a stake. If you try to flood the place, you're going to lose 10,000 sats per post. It can really become a market based moderation system. Bad posts simply go down. Obviously, this is not going to be easy to balance, but you have way more tools than Hacker News or Reddit does. Also, if you figure this out, it will monetarily incentivize good comments even more than they are now. https://example.com/ 16653 420483 420483.431042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8060733985913 0 \N \N f 0 \N 0 37738341 0 f f \N \N \N \N 420483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403684 2025-02-15 05:28:32.271 2025-03-29 22:39:49.244 \N I like this method a lot -- I'll steal it, or something like it, after January. I'm slowly bleeding out from 1k zaps, and it's produced a couple of informal effects on myself: I zap zero in cases where I would have zapped my old default of 22x. There's a serious friction to the floor being 4x more than your old floor. I could, with great effort, over-ride it, but part of the game was to see what would happen, and that's what's happening.\n\nBased on @ekzyis's kick-ass reporting, I suspect that I could be slightly in the black if I posted a lot, but I just don't have the time to do that. This needs greater investigation, since it's at tension with another thing I believe 100%, which is the outsized benefits of action. But the type of action matters _a lot_: in the time I devote to SN, I spend it overwhelmingly on comments, and I spend a lot of mental effort on them. But a comment is _extremely_ unlikely to get you enough zaps to keep you in the black; so it's clear where effort should be allocated if you're looking to not get rekt.\n\nAnyway, I think I'll get through January without blowing my balance to zero, and while this isn't about making money, I don't have unlimited appetite to lose money, either, so maybe your methodology will help with that, along with more effort at posting [1].\n\nThe thing I cared the most about -- to show people who are producing things that I think are undervalued that they are seen and cared for, with the hope of inspiring them to do more of it -- seems to have not manifested. Still a negligible number of link posts with good descriptions -- you and @siggy47 are the main exceptions that come to mind. Still very little experimentation in form or different perspectives besides the obvious btc ones. But a ship like that will turn slowly, if at all, so I haven't given up. I think the bigger lever for this is modeling. @ekzyis and @davidw have been burning it up on this one lately, and if I find it inspiring and thought-provoking, I'm sure others do, too.\n\n[1] Ironically, this should probably have been an interim report post. So meta. https://example.com/ 14552 39793 39793.403684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2234403805245 0 \N \N f 0 \N 0 855586 0 f f \N \N \N \N 39793 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434526 2025-03-12 01:52:23.739 2025-03-29 22:39:49.246 \N Follow-up question: whatever the answer to how often you see your friends is, do you wish the number was higher? https://example.com/ 9339 434417 434278.434318.434417.434526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93682843779718 0 \N \N f 0 \N 0 56409592 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434840 2025-03-12 09:22:04.298 2025-03-29 22:39:49.248 \N How do businesses like Kraken deal with the "burden" of operating a LN node, e.g. paying on-chain fees, unexpected force-closes, off-chain fee configuration, implementation bugs, ...? https://example.com/ 6749 421567 421567.434840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2606717934682 0 \N \N f 0 \N 0 26445006 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448452 2025-03-22 15:53:13.775 2025-03-29 22:39:49.249 \N Excellent idea. I just took my dog for a long walk and thought about your ideas regarding synthesis, and your suggestion for me to do a meta post about my newsletter. Your idea here is even better. I remember a few months back when you were hounding @k00b and @ek about something like "embedded search", but I didn't know what you were talking about. Once it was implemented, the value it brings is immense in tying posts together and increasing visibility for older content. This post is similar. During my first year on SN I spent a lot of time dredging up old posts to read. It felt like a shame that, at least for me, they were so difficult to find. I actually toyed with the idea of doing a weekly newsletter where I would dredge up "golden oldies" and highlight a few for visibility. That was probably why I started the Books And Articles newsletter after @Scoresby suggested it.\n\n I can't wait to see where you take your idea https://example.com/ 4973 448349 448349.448452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.66002269689338 0 \N \N f 284473295 \N 3 76714553 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410630 2025-02-20 15:21:53.583 2025-03-29 22:39:49.244 \N We’re building a solution for this🫡🧡\n\nWe’ve been building https://lightsats.com for 5 weeks now we’re part of the [Bolt🔩Fun Legends of Lightning ⚡️ Tournament](https://makers.bolt.fun/project/Lightsats) which lets you leave tips to people that don’t know about bitcoin without having to do the onboarding yourself and having them download a wallet right on the spot.\n\nHere’s how it works:\n\n1) You can sign up to our site using your LN wallet for privacy.\n\n2) Enter the amount either in fiat or in sats and you can choose the currency you want the person receiving the tip to see. You can add their name if you want to personalize it and a small note.\n\n3) Fund the tip via your LN Wallet (I usually find my tips via Strike so I don’t use my stash).\n\n4) Once the invoice is finde a QR Code is generated that you present to the person receiving the tip.\n\n5) They are taken to a landing page with the $ amount of the tip, welcome message and special note. The user needs to claim their tip via email (adding sms to streamline the process).\n\n6) Once claimed we take them through a which 5 step onboarding journey and suggest LN Wallets to download and claim their funds)\n\n7) Once sats and withdrawn we give them guides they can start exploring, want to spend your bitcoin? Want to send it to someone else? Want to buy more? Want to earn more.\n\nAll of this is done with the safety that you can put an expiration date to the tip in case the person isn’t interesting in exploring if they claim the funds but not withdraw them before the expiration dates the sats can be reclaimed and sent back to your wallet!\n\nI already tried it with my barber after my haircut and also I tipped a bartender as well, he still hasn’t withdrawn his funds but still has like 27 days left!\n\nWant it yea it out??\n\nShoot me a DM https://twitter.com/Lightsats21 I’d love for you to see it and give any feedback on things we can add or improve! 🍊💊 https://example.com/ 708 410422 410311.410355.410368.410422.410630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3305486698792 0 \N \N f 0 \N 0 65799904 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438052 2025-03-15 07:38:53.832 2025-03-29 22:39:49.247 \N I spent about five years running an event band company, about five years as a professor (these mostly overlapped), and two years as an iron worker. The bulk of the last 20 years though, I've worked full time as a trombone player, which most folks might think is weird by itself. But...oh the places you go doing that!\n\nThere are plenty others, but here is one stand-out week from the fall of 2007. Off and on, from 2006-2008, I would tour as part of the backing band for Elvis impersonator contents. We would go around the country for regional and national finals in the warm months and then do lesser paid 'rehearsals' with the local guys at animal lodges (Eagles, Elks, FOA type places) during the cold ones. These shots are from a regional final in Oklahoma City.\n\n![](https://m.stacker.news/48859)\n\n![](https://m.stacker.news/48860)\n\nThe week in question, we had one of these in Lubbock, Tx. Here's the Elvii all lined up again waiting to hear who won. Oddly enough, this is the only time I've been to Texas outside of an airport, including with other bands.\n\n![](https://m.stacker.news/48862)\n\nAs one might imagine, backing Elvii was not my life aspiration as a trombone player. The next day, I had a gig in Brooklyn for Atlantic Antic with an original project that did house, dnb, and other experimental electronic music with live musicians. I told the guy that ran the Elvis thing that he had to fly me to New York instead of back to Ohio. He was cool with that, so I took the gig thinking that I'd be able to do this more artistic project no problem. What he didn't say, was that we didn't have a hotel that night and had to stay in the event space...which was where the county fair would have livestock awards.\n\nI awoke, in the middle of the night, to the rest of the band drinking and partying. Nobody else had a gig the next night, OR an early flight. Worst of all, they found the venue's smoke machine and had filled the space in this picture ENTIRELY!\n\n![](https://m.stacker.news/48861)\n\nThe next morning, I made it to NY with little sleep, but still had a fun show.\n\n![](https://m.stacker.news/48864)\n\nWe sat in with some old friends afterwards. Then, the keyboard player, who had never been, asked me to show him the city. We didn't get any sleep again, which was fine because I could ride back with everybody else.\n\n![](https://m.stacker.news/48863)\n\nEXCEPT, they didn't take me or the bass player's brother (who was going to come back from NY to visit in Ohio) into account for space for the return journey. We were a really lean unit, so they had crammed in unsafely on the way there already. One band member was too young to rent a car, one had just got a DUI, one had bad credit, and one didn't have a license. So, not only did I have to drive back home, I had to rent a car too! The guys helped out with the cash, but it certainly wasn't an ideal situation with the liability.\n\nThe next day, I played a birthday party in a big tent on the front lawn of a conservatory.\n\n![](https://m.stacker.news/48865)\n\nAt the time, this seemed as weird to me as all the other stuff. Look at the bathroom. Yes, that's a port-o-potty in a tent. Honestly, after this era, I spend decades off and on doing high-end weddings and corporate parties and have since seen more how the other half lives. I know that's probably passe to many, but I didn't grow up rich and thought this was just wild at the time.\n\n![](https://m.stacker.news/48866)\n\nAnyway, the next day was back to business as usual at a music festival. But you definitely see a lot doing music.\n\n![](https://m.stacker.news/48867)\n\nMy goal right now is to pivot into something bitcoin oriented (and therefor not music). The kids are in school and I think this is a more important revolution than anything going on in the arts right now. https://example.com/ 1720 437805 437775.437800.437805.438052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.53571591939139 0 \N \N f 0 \N 0 160510755 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410660 2025-02-20 15:34:42.932 2025-03-29 22:39:49.247 \N Lack of high availability makes it difficult to run either of the major distributions like a real enterprise system, with zero downtime. I suspect even the largest nodes on the network today are not much more sophisticated than what’s available out of the box with LND.\n\nImprovements to LND on the db side have reduced downtime required between restarts (by enabling online compaction), and also setting up the architecture for multiple nodes to share a backend data store. Leader election can provide a primitive form of HA (failover but not load balancing). An external project, LNmux by Bottlepay, will allow load balancing HTLCs through multiple public gateways, which is the holy grail for enterprise LND.\n\nFor someone with some LN experience, who wants to learn more the above, I recommend setting up a **regtest** environment using containers or VMs, and configuring the following:\n\n- Create a basic postgres instance\n- Create an LND instance w/[postgres backend](https://github.com/lightningnetwork/lnd/blob/master/docs/postgres.md)\n- Upgrade your postgres to have high availability\n- Create an etcd cluster\n- Create 2 additional LNDs and configure [leader election](https://github.com/lightningnetwork/lnd/blob/master/docs/leader_election.md)\n- Add centralized monitoring/logging (Grafana LGTM stack is phenomenal but other choices are available)\n- Add [lndmon](https://github.com/lightninglabs/lndmon) sidecars to lnd for monitoring LN metrics\n\nIf you can confidently configure all of that, you should have the basics to work on any major node on the network. Some will be drastically different in implementation but the concepts should be the same.\n\nHTLC load balancing is still experimental as far as I know, but if you have some development experience you can add [lnmux](https://github.com/lightninglabs/lndmon) to your lab and experiment with it today.\n\nAn alternative node distribution that was created with more of an enterprise architecture from the start is ACINQ’s [Eclair](https://github.com/ACINQ/eclair). They probably the single largest node on the network, however I have not seen Eclair elsewhere in the wild, which is why I recommend starting with LND then branching out when the fundamental concepts are well understood.\n\nFor something easy to digest and get you motivated to build an enterprise grade LN node, here’s a video from base58, Enterprise Lightning Engineering at CashApp w/Ryam Loomba:\nhttps://youtu.be/kbhL5RqL8Aw\n\nIt’s also important to keep in mind that building and operating enterprise grade infrastructure is completely orthogonal to managing liquidity. Doing both of these well is likely to require at least two talented full-time individuals (more likely a team for each). https://example.com/ 1584 410644 410237.410644.410660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1822401629227 0 \N \N f 0 \N 0 199285037 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422399 2025-03-02 12:40:42.787 2025-03-29 22:39:49.249 \N @k00b @ekzyis does it make sense to update the donate-to-rewards action to be `invoiceable`? That thought came to mind as I was working on [this PR](https://github.com/stackernews/stacker.news/pull/511). If so, I can work on that (in a separate PR). https://example.com/ 2829 422207 422203.422207.422399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.76943212797558 0 \N \N f 3514630262 \N 29 179643324 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437975 2025-03-15 04:28:54.278 2025-03-29 22:39:49.25 \N FYI, for those wanting more information on UTXOs and Coin Control we have dedicated pieces on each of these for all to read and learn from\n- [UTXO Model: Definition, How It Works & Why It’s Critical](https://www.athena-alpha.com/utxo/)\n- [Coin Control: Definition, Examples & How It Can Save You Heaps On Fees](https://www.athena-alpha.com/coin-control/)\n\nIn answer to your questions...\n\n> Is there a UTXO count that you stay below for later fees, not overwhelming signing devices, and ensuring labels are cleanly labeled? 500? 100? 50? 25? 10? etc...\n\nA recommend amount suggested by Joko on X was 1,000,000 sats minimum per UTXO if you're trying to mitigate against a future higher fee environment making smaller UTXOs an issue, but in general it's really up to you. You can also always consolidate many small UTXOs together (or add one small UTXO to a bigger UTXO) and spend them that way if it's an emergency\n\n> Do you just let it grow with no management or grow in UTXO with only labeling? Any long term plans to manage?\n\nAlways label. It takes 5 seconds and your future self will thank you for it. It's also very important for your privacy and knowing which UTXOs are KYC and which are non-KYC.\n\nFrom a cost perspective, the fewer UTXOs you have in your wallet, the better. A transaction with a single UXTO of 1 BTC will be cheaper than another transaction that has ten UTXOs of 0.1 BTC as it has ten inputs vs only one.\n\nThus, to save yourself fees in the future don't just let it go mental. Once you start getting over 10-20 UTXOs you should probably start thinking about some sort of management strategy.\n\n> How are you factoring future spending (if ever) as the value continues to increase if managing your UTXO set given change output could reveal too much? IE: Too tight of consolidation makes for chunky UTXOs that could be problematic using for expenditures far less than the UTXO.\n\nHow long is a piece of string? The only way to manage this properly is to know what the BTC/USD price will be which is impossible. Also worst case you could open a number of Lightning channels with a chonker of a UTXO and spend smaller amounts of it from there.\n\n> Do you have a preferred mix? 50% chunkier UTXOs and remaining 50% in several smaller?\n\nWhile having fewer inputs will save you more fees, it can also be terrible for your privacy to just consolidate all of your coins into one big giant UTXO. This shows external observers common ownership and if you spend from that big UTXO in the future, the receiver can look back and see what your entire balance is.\n\nObviously what size UTXOs you keep will be different for everyone given everyone will have a different sized stash, but it’s considered good practice to have a number of different sized UTXOs in your wallet.\n\nThis is similar to how you probably don’t just carry around one $100 bill in your actual real world wallet. You instead probably have a few $5’s, a few $10s, maybe three 20’s, some coins or some sort of mix of big and small denominations in there. The same goes for your Bitcoin Wallet.\n\nDon’t just have a single, massive 1 BTC UXTO, have a few 0.1 BTC, a few 0.05 BTC and maybe a 0.5 BTC UTXO as well. Like everything in life, you need a good balance.\n\n> What's considered a large UTXO set for when dealing with signing devices? 50? 100? 500? more? May help some context.\n\nThis depends on the HWW you're using and its MCU's processing power. The more powerful it is, the better it can process larger UTXO sets and thus, not crash half way through.\n\nRealistically though, it's more likely that you'll be the breaking point as mentally trying to deal with, organize and maintain a UTXO set of 500+ sounds horrific lol\n\n## Bonus Point: Backing Up\n\nMake sure you regularly backup your labels! While you should already be backing up your Private Keys, this only helps you to recover your funds, not any labels you might have added over the years to your wallet.\n\nWhile most good wallets allow you to export or backup your UTXO labels, it’s still done differently depending on what wallet software you’re using. For example, if you’re using Sparrow Wallet and want to transfer all your UTXO labels over to Nunchuk, you can’t. You’d have to manually enter them all in again from scratch.\n\nhttps://www.athena-alpha.com/wp-content/uploads/2023/07/Sparrow-Wallet-v1.7.7-Wallet-Labels-Export.webp\n\nThankfully, the developer of Sparrow (Craig Raw) has proposed a new BIP to address just this: Wallet Labels Export Format ([BIP-0329](https://github.com/bitcoin/bips/blob/master/bip-0329.mediawiki)). This BIP outlines a standard way that all wallets can adopt in order to ensure there’s full export and import compatibility for coin control labels going forward. Nunchuk has also said they're going to accept it too we believe\n\nHopefully it gets adopted by all the major wallet makers as coin control is something that will only become more important as the years go by. https://example.com/ 14370 437855 437731.437855.437975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0103937504778 0 \N \N f 0 \N 0 30293812 0 f f \N \N \N \N 437731 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437725 2025-03-14 20:06:52.483 2025-03-29 22:39:49.492 \N FML. Went to Japan and my SN routine got jacked up. 😢 Too much shit to do in this amazing country. \n\nCongrats to whoever jumped into the top 10 because of me. \n\n![IMG_2862.jpeg](https://m.stacker.news/20009) https://example.com/ 16753 433555 433555.437725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4745742236166 0 \N \N f 133989915 \N 1 191483053 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423990 2025-03-03 19:05:05.634 2025-03-29 22:39:49.493 \N Let's suppose we took the current block size limit, 4mb, and decided that on January 1 we will reduce it to 2mb. Now, Grandma Gemma doesn't want to upgrade, so she keeps running an old node. On January 1, what happens?\n\nWell, Grandma Gemma's node doesn't *require* blocks to be 4mb -- it will accept anything 4mb or less. Suddenly she starts seeing 2mb blocks. No big deal -- she accepts those too. That's why it's a soft fork, old nodes don't mind the new rules. But let's suppose some rogue miner decided to mine a 4mb block *after* January 1. What happens?\n\nWell, *most* of the network rejects that block, because it violates the new rules, but Grandma Gemma accepts it. Chain fork, right? Not so fast: nodes follow the "most work." So unless the rogue miner has more hashrate than everyone else, the chain with "small blocks" will "outgrow" the chain with "large blocks" -- and as soon as Grandma Gemma's node sees a longer chain with more work, she will discard the "big block" and go with the longer/more-work chain.\n\nThat is why making the block size smaller is a soft fork: it doesn't cause a *meaningful* chain split as long as *most* miners are on board with it. It doesn't have to be all, just more than 51%. https://example.com/ 11073 423977 423667.423689.423899.423956.423958.423971.423977.423990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3072288260349 0 \N \N f 2040616152 \N 18 108357676 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3400 2022-10-31 17:40:50.017 2025-03-29 22:39:49.494 \N This morning, a pack of beers from local grocery. \nWas like 20550 sats or something like that, I can't find rn with which wallet I paid, to bring up a picture.\nLOL I have so many LN wallets.\n\noh and I forgot: I dropped some sats into SN pool (if this count as spending)! https://example.com/ 1738 3398 3397.3398.3400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.79302340243239 0 \N \N f 59529326 \N 1 185542700 0 f f \N \N \N \N 3397 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436204 2025-03-13 11:37:18.039 2025-03-29 22:39:49.494 \N My wife gave birth to 3 children, all natural births, no c-section, no epidural, but all happened in hospitals. All she used was the laughing gas during labor. She told me later that the gas didn't really do anything to help the pain, but breathing the gas helped her focus on her breathing between contractions. She took the pain like a champion through all 3 births.\n\nYes, there are stories of women having a very short labor and giving birth very smoothly / quickly, but I think those are the exceptions, not the norm. Labor is typically long, especially the first child. Our first child took about 10-11 hours, from the moment she noticed frequent contractions to the time of birth. That is not to say you can't be the exception, but just be prepared and manage your expectations. Being in good physical shape helps a lot, as it does take a lot of effort and energy; it is called labor for a reason.\n\nI'm not sure how it is in US hospitals, but here in BC, Canada, the hospitals encourage and promote natural birth. I think they will give mothers epidural if requested, but mothers have to request it.\n\nPersonally, I think the benefit of giving birth in a hospital is that there are medical professionals in case of any "oh shit" moments, such as baby's position not coming out right, umbilical cord catching baby's neck, mother having excessive bleeding, or whatever reason that require immediate medical attention. Child birth sometimes do have complications and there are definitely risks. That said, life is about trade-offs, and each person make their own trade-offs according to their own preferences. I can totally see the advantage of giving birth in the comfort of one's own home; the feeling of familiarity and support probably can never be matched by hospital births. In our case, my wife and I took the trade-off of giving birth in a hospital, because we wanted immediate access to medical professionals in case if something went wrong. Luckily, all 3 births went smoothly, and all kids came into this world healthy and loud. https://example.com/ 16176 436203 436177.436203.436204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.88352697807424 0 \N \N f 492768965 \N 3 10160330 0 f f \N \N \N \N 436177 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447757 2025-03-22 05:35:38.746 2025-03-29 22:39:49.495 \N Regular fitness routine. Dollar cost averaging fitness in small, regular doses of exercise using proof of work to create gains that are small individually but add up to meaningful results. Can't print it out of nothing, must be earned with a physical cost https://example.com/ 9367 447685 446513.447049.447084.447186.447661.447685.447757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7400766031332 0 \N \N f 703139523 \N 5 118536466 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431045 2025-03-09 15:11:57.067 2025-03-29 22:39:49.244 \N Very happy Mutiny+ user here. Thanks for your amazing work. Start by patting yourself on the back a little. Seriously. \n\nMy pleb opinion is at least half of the LN issue is education/expectations. I love Mutiny and use it constantly and have personally "felt" zero downsides. This is because I took time to research, at least high pleb level, the pros and cons of lightning and thus I expected the channel liquidity and on chain fee limitations. You just writing this up and posing these questions to the public is helpful education for the masses, and needs to be elevated and repeated by others. \n\nFedimint, imho, is for sure the best immediate term step forward. \n\nBeyond that an OP_CTV only soft fork is the best next step, again imho. The Mutiny team is EXTREMELY well respected and influential, I think more than yall realize. If you publicly, especially if jointly with other influential devs and/or influencers, come out in favor of a OP_CTV only soft fork it could be here in a few years (lightning fast for a soft fork). My wild guess if that if Mutiny, another big wallet, Odell, and a few well known devs came out for a OP_CTV only soft fork we could get it in a year. We need to build momentum on what is in reality a fairly small and deeply analyzed change but would have enormous impact. \n\nJust one plebs opinion. Maybe I'm too optimistic and dreaming. I just feel and fear a general jaded malaise coming over the dev community that scares me. We have to get out of: 1) treating all change as a 10 out of 10 huge deal we should naturally resist 2) influential devs saying if it isn't a big soft fork with exactly what they want in it they're adamantly opposed - this is childish and needlessly holding us back. Not going to dox or shame but people saying "if I dont get at least X, Y, and Z soft forks I'm opposed to all soft forks" need to somehow be cajoled or convinced to chill tf out and get on board with a little incremental progress and momentum. CTV has been around a long time and has been super thoroughly analyzed by a lot of people and its a relatively small change, just an op code. Let's get it done, find common ground, and keep building. \n\nLove yall, love Mutiny, long live lightning. https://example.com/ 11885 420059 420059.431045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1630891345961 0 \N \N f 0 \N 0 197895795 0 f f \N \N \N \N 420059 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437772 2025-03-14 21:38:20.131 2025-03-29 22:39:49.245 \N I did some work earlier this week on supporting LUD-12 on stacker news - attaching comments to lightning address payments in and out of SN. Aside from that, enjoying some time on vacation! https://example.com/ 1354 430647 429534.430647.437772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.72005200426356 0 \N \N f 0 \N 0 131240623 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442157 2025-03-18 13:11:32.035 2025-03-29 22:39:49.247 \N We only have the experimental ad to give people more sats. We aren't profiting from it. We aren't doing it to sell you. We are doing it to pay you.\n\nMy express goal with ads is for them to benefit stackers. I'm not interested in running a product that funds itself with ads and I'm in control and that's not changing anytime soon. I'd rather shut SN down than sacrifice stackers in any way, especially sacrificing them for advertisers. https://example.com/ 2722 442148 441695.441712.441750.441801.441803.442135.442141.442148.442157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7321619159058 0 \N \N f 0 \N 0 110420462 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403714 2025-02-15 06:01:40.882 2025-03-29 22:39:49.248 \N What do you think is the biggest misconception that the West has about the global adoption of Bitcoin? https://example.com/ 21349 153228 153228.403714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.63286630944174 0 \N \N f 0 \N 0 7331767 0 f f \N \N \N \N 153228 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428726 2025-03-07 14:47:39.507 2025-03-29 22:39:49.248 \N I would also be in the camp of optional additional field when posting a link.\n\nHere's an [example post](https://stacker.news/items/259510). \n\n- With this post, I wanted to post a link as well as an explainer about it, out of respect for the readers time. And to help identify if it is worth a click or not.\n- Yes it could have been a discussion post, but that defeats the purpose of having a clickable link up there.\n- Instead, I had to post to SN before drafting a comment. That comment took 10-15mins to create after the post went live. Potentially lost eyeballs.\n- Yes the 1st comment could have been drafted in markdown off the site, but it would have been much more convenient to have drafted it together with the original listing.\n- It is actually a preferable experience for the reader to get a digest of what the link is about, if they want to click on the title.\n- It doesn't need to be mandatory but the absence of a description field makes most posters not even consider creating a comment of any kind.\n- It is then up to the community to fill that vacuum of summarising the link or providing context. Is that the intention? I'm not sure it is. https://example.com/ 21501 428725 428725.428726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8738460053895 0 \N \N f 0 \N 0 117921419 0 f f \N \N \N \N 428725 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423012 2025-03-02 21:27:48.018 2025-03-29 22:39:49.251 \N My comments: https://twitter.com/peterktodd/status/1609655629903265795\n\ntl;dr: I've confirmed that this is real and not a Twitter hack. Unfortunately Luke's setup was pretty standard. But that's not good enough; there's a good chance that Luke wasn't even specifically targeted, and non-govt actors could have definitely done the hack.\n\nComplacency is a big threat to security, and we're all vulnerable to it. https://example.com/ 12188 422673 422673.423012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.70494669721077 0 \N \N f 0 \N 0 39800962 0 f f \N \N \N \N 422673 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435102 2025-03-12 13:15:39.002 2025-03-29 22:39:49.492 \N So are you just reposting reddit posts for sats?\n\nhttps://www.reddit.com/r/FirstTimeHomeBuyer/comments/162nlmb/is_anyone_else_being_ridiculed_for_the_size_of/ https://example.com/ 7654 435087 435073.435078.435087.435102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0541147961571 0 \N \N f 160160766 \N 1 96577929 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 2025-03-19 06:34:56.61 f \N \N \N 0 0 0 0 1 0 0 437270 2025-03-14 12:21:34.854 2025-03-29 22:39:49.494 \N When SNL (Stacker News Live) shorts with the 3 bearded guys @supertestnet @car and @k00b?\n\n[![SNL-bearded.jpg](https://imgprxy.stacker.news/oI3ZQh3fO0i1B_SXRB6vxdww_GGPJBo7lfsqqRDj_Z0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvbkxmUUdRdmIvU05MLWJlYXJkZWQuanBn)](https://postimg.cc/K1QzZjqJ) https://example.com/ 21422 437233 437233.437270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4501990049195 0 \N \N f 685833885 \N 6 21454103 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428559 2025-03-07 12:08:54.288 2025-03-29 22:39:49.494 \N if getting a loan is unethical then acquiring bitcoin is unethical, the person selling you the bitcoin is getting destroyed over time as well https://example.com/ 8242 428417 424571.424907.424921.424946.424988.428312.428320.428354.428417.428559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9472188614758 0 \N \N f 751372747 \N 4 104027044 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433381 2025-03-11 03:27:14.158 2025-03-29 22:39:49.495 \N Made a bitcoin meme generator with react :D \n\nhttps://calm-caramel-eb8ed9.netlify.app/ https://example.com/ 21803 432932 432344.432932.433381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.428374260663134 0 \N \N f 63143501 \N 1 26140211 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402933 2025-02-14 09:14:31.31 2025-03-29 22:39:49.496 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **9** https://example.com/ 19689 402921 402582.402890.402921.402933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.9387647322857 0 \N \N f 16605251 \N 1 60435639 0 f f \N \N \N \N 402582 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438042 2025-03-15 07:20:29.918 2025-03-29 22:39:49.245 \N It's your money and you do with it whatever you want. What won't be ethical is someone judging you to do what you want with what it's yours. \n\nThat said... What we have here at the moment it's just a few bucks, probably has more value using these sats to support good content that buying a coffee. https://example.com/ 17183 437698 436752.437635.437678.437698.438042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6160720723544 0 \N \N f 0 \N 0 244699634 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404428 2025-02-15 21:34:40.091 2025-03-29 22:39:49.246 \N I think people should be able to stack sats while talking about sports or gardening. If the stacker news model works, then it shouldnt just be limited to bitcoin topics.\n https://example.com/ 14941 404211 404014.404211.404428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.141282133809852 0 \N \N f 0 \N 0 243368053 0 f f \N \N \N \N 404014 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451250 2025-03-24 13:18:21.421 2025-03-29 22:39:49.247 \N Just released the signet version of Mutiny Wallet and a demo video showing it working well with the Fedi wallet: https://twitter.com/MutinyWallet/status/1661381554478669825\n\nWould love feedback from anyone willing to try it out: https://signet-app.mutinywallet.com/ https://example.com/ 16296 451239 451208.451239.451250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0180585059519 0 \N \N f 337538583 \N 2 120524657 0 f f \N \N \N \N 451208 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435556 2025-03-12 19:28:28.283 2025-03-29 22:39:49.249 \N They presented at btc++ and mentioned that they have a really interesting node architecture that basically spends up nodes on demand. Different components of the node live on distributed tech. It really starts to not be a "node" any more than a publicly facing endpoint with distributed and redundant microservice infrastructure backing it like most modern tech is. https://example.com/ 21405 435425 435217.435275.435277.435295.435425.435556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.49734898468314 0 \N \N f 500280465 \N 5 166691233 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 443549 2025-03-19 12:13:52.791 2025-03-29 22:39:49.249 \N This is the Bugle, the Bitcoin standard of news https://example.com/ 18393 443415 443187.443415.443549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8164793828597 0 \N \N f 0 \N 0 125147016 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451351 2025-03-24 14:08:37.584 2025-03-29 22:39:49.25 \N As P2P marketplaces are also:\n- https://satscrap.com/ - P2P Bitcoin marketplace\n- https://scarce.city/ - P2P Bitcoin marketplace (physical and digital items)\n- https://plebbin.com/ - P2P Bitcoin marketplace (physical and digital items)\n- https://www.oshi.tech/ - mobile app for small merchants\n- https://t.me/bitcoinp2pmarketplace - Telegram group to sell stuff P2P\n- https://plebeian.market/ - auction house with Bitcoin LN\n- https://tukan.market/\n- http://agorist.market/\n- https://bitejo.com/\n- https://miragesale.com/\n- https://bitify.com/\n- https://paid.co/\n- https://mobazha.com/ https://example.com/ 21647 92367 92367.451351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.30127031493716 0 \N \N f 0 \N 0 109872666 0 f f \N \N \N \N 92367 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436259 2025-03-13 12:23:46.538 2025-03-29 22:39:49.492 \N The 2/2 requires two separate xpubs, where the single seed requires one xpub. For individuals, 2/2 just makes things more difficult when signing transactions and recovering. Frankly, splitting the seed in two parts in the first place isn't something one should labor with. This type of complexity is unnecessary unless you have an exceptional reason.\n\nI'm of the opinion individuals shouldn't use multisig to begin with. If they do, it should be 2/3 multisig where a custodian (3rd party) holds one of the private keys along with all 3 extended public keys — which means yes, they can see and monitor all your transactions. Because like I hinted at above, people seem to forget that with 2/3, 3/5, etc, if you lose one of the private keys, and don't have the wallet file or extended public key saved somewhere for that private key, your bitcoin is lost forever. Because you need all three public keys to construct a valid 2/3 multisig transaction. With this setup, you have shit saved and stamped all over the place, you have all these different singing devices, it gets unmanageable for something that's quite simple. There's a better way. https://example.com/ 1620 436257 436028.436053.436125.436257.436259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.450246481715 0 \N \N f 378551489 \N 3 45096013 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:45:39.886 f \N \N \N 0 0 0 0 1 0 0 449108 2025-03-23 07:39:51.135 2025-03-29 22:39:49.494 \N The Bitcoin community should be getting prepared politically, by setting up legal defense funds (including for the present case) as well as setting up lobbying organizations.\n\nThe tendency of bitcoiners to just say "fuck politics" and disengage is deadly. You can't avoid politics with code. You can gain some power. But not enough to resist all politics. https://example.com/ 6717 449091 449016.449022.449091.449108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1858571942158 0 \N \N f 183357801 \N 2 3630538 0 f f \N \N \N \N 449016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434610 2025-03-12 04:12:43.872 2025-03-29 22:39:49.495 \N Drinks are on me, cowboys. https://example.com/ 17041 434577 434577.434610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7842966845335 0 \N \N f 240089337 \N 3 82776493 0 f f \N \N \N \N 434577 \N 0 0 \N \N f \N 2025-03-19 04:43:44.549 f \N \N \N 0 0 0 0 2 0 0 436507 2025-03-13 15:43:44.711 2025-03-29 22:39:49.498 \N here https://www.fxstreet.com/news/us-real-gdp-contracts-at-an-annual-rate-of-16-final-in-q1-202206291234\n\n\nwe are in STAGFLATION which is even worse than a depression https://example.com/ 11515 435466 435359.435366.435466.436507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2146497226975 0 \N \N f 157584599 \N 1 30236444 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 2025-03-20 10:46:37.316 f \N \N \N 0 0 0 0 1 0 0 435740 2025-03-12 22:58:30.615 2025-03-29 22:39:49.498 \N If I'm not mistaken there was more of a balance months ago, which makes sense. Can someone explain to me why we have this lottery, where people try to guess and game the system? What's wrong with rewarding good posts and comments and zapping good posts and comments every day, equally? https://example.com/ 1617 434263 434263.435740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1928059738966 0 \N \N f 262399033 \N 2 28548058 0 f f \N \N \N \N 434263 \N 0 0 \N \N f \N 2025-03-19 23:15:22.077 f \N \N \N 0 0 0 0 1 0 0 403330 2025-02-14 17:43:37.043 2025-03-29 22:39:49.245 \N Day 129 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 11144 403315 403267.403315.403330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.980761645669 0 \N \N f 0 \N 0 91850487 0 f f \N \N \N \N 403267 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434671 2025-03-12 05:55:24.477 2025-03-29 22:39:49.247 \N Can we return to the tail emission discussion in a hundred years or so? Only if there actually is some kind of evidence that it might be needed. https://example.com/ 7395 434535 434535.434671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83215460614613 0 \N \N f 0 \N 0 183864417 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437585 2025-03-14 16:32:23.171 2025-03-29 22:39:49.247 \N Hi! I'm here in Buenos Aires the capital of Argentina. We are waiting for the results in the next couple of hours. We did all our effort! Let's see.\n\nThe difference in budget for this campaign was tremendous in favor of the Government, using the money from our taxes to do ads even in public institutions. \n\nWithou Twitter, Tik Tok, Facebook and Youtube this chance couldn't had happened.\n\nMilei currency policy is a free currency market without intervention the Central Bank. This means that Bitcoin will not be imposed neither forbiden. It will be free of use by the demand of the people and that means it can organically grow. https://example.com/ 17162 437564 437301.437371.437479.437564.437585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5100308114637 0 \N \N f 0 \N 0 223063658 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431061 2025-03-09 15:12:43.854 2025-03-29 22:39:49.248 \N I just wanted to help...\nI am always posting on BTC apps githubs feature requests, bugs, improvements...\nI just want to help these developers, testing their apps and make them better.\n\nI also write guides and documentation for some apps, and do translations in 4 languages.\nAll for free.\nOnly together we can go forward. https://example.com/ 21514 417376 417376.431061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7084603329266 0 \N \N f 0 \N 0 156244201 0 f f \N \N \N \N 417376 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456532 2025-03-27 16:51:24.091 2025-03-29 22:39:49.25 \N ![noceiling](https://preview.redd.it/y1eimg173j2b1.jpg?width=500&auto=webp&v=enabled&s=672f5a160114925b3e4434dc5c5d37b6900f388a) https://example.com/ 1221 456525 456525.456532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6089031068202 0 \N \N f 0 \N 0 160284511 0 f f \N \N \N \N 456525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 308244 2024-11-25 18:09:31.919 2025-03-29 22:39:49.491 \N Day 124 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 19471 307616 307616.308244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0821258647943 0 \N \N f 0 \N 0 215735526 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307400 2024-11-25 00:55:41.965 2025-03-29 22:39:49.494 \N Day 184 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20603 307258 307258.307400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.09592763640351 0 \N \N f 0 \N 0 65828278 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447134 2025-03-21 16:28:25.832 2025-03-29 22:39:49.495 \N The fight is pointless.\n\nWhy would anyone trust a centralized coordinator anyway?\n\n**Just use Joinmarket** https://example.com/ 4768 447133 446371.446745.447113.447133.447134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.55769380963565 0 \N \N f 225516128 \N 3 133905325 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 09:53:45.409 f \N \N \N 0 0 0 0 1 0 0 433167 2025-03-10 20:56:30.112 2025-03-29 22:39:49.495 \N ![](https://d.pr/i/7GlSZX+) https://example.com/ 5527 433066 433066.433167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.17676834911578 0 \N \N f 0 \N 0 129341579 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 2025-03-19 09:13:45.335 f \N \N \N 0 0 0 0 0 0 0 447155 2025-03-21 16:39:51.47 2025-03-29 22:39:49.495 \N LSPs by definition cannot centralize the lightning network. Centralization is a matter of control. LSPs do not control user funds, the only thing an LSP can do is choose to serve you or not. If they choose not to, just don't use that LSP.\n\nDo not confuse popularity with centralization. They are not the same. A popular service that has no control of your funds or your actions is not a central point of failure even if most people use it. If the most popular LSP in the world begins censoring certain transactions, even that doesn't make it centralized. It is just a signal on the network that there is demand for a new service provider, an uncensored channel to whatever destination the "bad" LSP tried to censor. Anyone can create that connection point easily, so LSPs effectively have no power. https://example.com/ 12721 447151 446371.446745.447113.447133.447134.447151.447155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.448749562101 0 \N \N f 107701103 \N 1 9781575 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414699 2025-02-24 08:21:49.75 2025-03-29 22:39:49.496 \N Covid lockdowns angered me while giving me time to read. Before that I was stacking sats without real psychopathic enjoyment. https://example.com/ 21482 414670 414670.414699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6157625877986 0 \N \N f 169198113 \N 1 241882108 0 f f \N \N \N \N 414670 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407283 2025-02-17 21:47:14.605 2025-03-29 22:39:49.497 \N My suggestion. Use bitcoin the way that suits and benefits you and ignore all the noise. If you don't like the fawning over Saylor and politicians that say they are pro bitcoin, I get it. Ignore it. Do your own thing. Maybe you are into grassroots adoption or bitcoin integration in platforms like SN. Focus on the stuff that you find rewarding. \n\nI saw this morning on twitter Fred Krueger talking about how he is using shapeshift to use his BTC as collateral to get more BTC and I am thinking "what's wrong with these people, why will they never learn" but what are you going to do? I think we are well beyond the point where everyone holding/using/interacting with bitcoin is going to be ideologically aligned with us. https://example.com/ 1726 407259 406297.406620.407259.407283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.178645618983 0 \N \N f 294852786 \N 2 90415129 0 f f \N \N \N \N 406297 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422668 2025-03-02 15:57:54.653 2025-03-29 22:39:49.498 \N Health\n\nSeems like stacker news has encompassed most of the bitcoin sub culture besides a lot of the carnivory/health stuff. Could be a good way to get people that otherwise would never use sn https://example.com/ 1046 422628 422628.422668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.175002679744 0 \N \N f 42482903 \N 1 41357907 0 f f \N \N \N \N 422628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403948 2025-02-15 11:50:37.764 2025-03-29 22:39:49.246 \N Of course not, that would make it custodial.\n\nThe mobile keys are only held by the client and their designated recipient.\n\nFor the ultra paranoid, we offer the option to use a second hardware key in lieu of a mobile key. https://example.com/ 9421 403941 403824.403857.403868.403869.403918.403919.403922.403926.403927.403934.403937.403941.403948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5305218868897 0 \N \N f 0 \N 0 139914359 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447470 2025-03-21 21:01:42.44 2025-03-29 22:39:49.246 \N Day 160 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 1286 447458 447418.447458.447470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.320580220311 0 \N \N f 0 \N 0 190267056 0 f f \N \N \N \N 447418 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410751 2025-02-20 16:53:15.815 2025-03-29 22:39:49.246 \N Absolute chad move fitting 1600+ lines of code into an index.html file. Jokes aside this is dope!! https://example.com/ 5829 410358 410358.410751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3680226451237 0 \N \N f 0 \N 0 142289078 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451314 2025-03-24 13:46:23.317 2025-03-29 22:39:49.247 \N Hey! This is Graham (Founder and CEO of Voltage). Great post and I appreciate the dialog. I think you are pretty spot on in the reasons I created Voltage. I didn't create it to suck up every LN node out there and be against people running their own nodes. In fact, Voltage and myself are big proponents of running your own node and we encourage it whenever possible. But the fact of the matter is, not everyone can do that.\n\nFor the individual, some people don't have the technical abilities to do all the required steps to run a node at home. Even if they do, the upfront costs of a node at home can be high and maybe they just want to try it out first. We see our platform as a stepping stone where they can learn and then maybe the later run a node at home.\n\nFor anything business/app related, a node at home isn't really practical, you must put it in a datacenter. For small apps, all you really want to do is work on your app, not managing the node itself. Similarly for larger businesses, hiring out a team to do all the Lightning things is a big task and most places will just ignore Lightning if the lift is that big. To really boost adoption in this stage, we must make it very easy and that's what we're trying to do.\n\nAdditionally, there is a whole lot of things we're working on to make it even better/more trustless/more redundant to run a node on Voltage. So this is really just phase 1 and things will improve over time. Lightning isn't consensus so there is a much wider range of trust models and delegation that's possible while still being sovereign. I said this on my recent TFTC interview, but if Lightning is so hard that the only way to use it is custodial then we've failed. So ultimately, to boost adoption we must make it easy for those interested but we also must keep the ethos of Bitcoin. This is just the beginning and so much more to do! https://example.com/ 3417 451310 450805.451169.451219.451310.451314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7303816304476 0 \N \N f 0 \N 0 203991718 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434976 2025-03-12 11:32:25.823 2025-03-29 22:39:49.247 \N I wasted way too much time on this, but my second attempt works—I just needed a fifth transaction.\n\n----\n\nArrow points from child to parent. Dotted line with ball and socket, the socket is on the side of the replacement.\n\nYou have two confirmed UTXOs `C1` and `C2`. Let’s say 20 s/vB is the bottom of the first block.\n\n1. You create a large low-feerate transaction `tx_LL` with 100,000 vB at 1 s/vB (fee: 100,000 s). It spends the confirmed output `C1` and has an output `tx_LL:0`.\n2. You attach a small low-feerate transaction `tx_LS` as a child with 100 vB at 1 s/vB (fee: 100 s) by spending `tx_LL:0`.\n\n![RBFr LL_LS.png](https://m.stacker.news/13360)\n\n3. You RBF `tx_LS` with a high-feerate transaction that spends `C2` and `tx_LL:0` in a new transaction `tx_HS`. `tx_HS` has 5000 vB and pays 21 s/vB, but since it spends an output from a low-feerate parent, it’s mining score is only 1.95 s/vB.\n\n![RBFr LL_HS.png](https://m.stacker.news/13361)\n\n4. You RBF `tx_LL` and `tx_HS` with `tx_LM` that has 100,000 vB and pays 3.05 s/vB (fee: 305,000 s) by spending the outputs `C1` and `C2`. This is permitted, since only `tx_LL` is a direct conflict, so the feerate of `tx_HS` does not have to be beat directly.\n\n![RBFr LM.png](https://m.stacker.news/13363)\n\n5. You use the new RBFr rules to replace `tx_LM` with a small high feerate transaction `tx_RBFr` with 100 vB paying 20 s/vB (fee: 2000 s) that spends `C2` and makes it into the top block of the mempool. `tx_LM` was not going to be in the next block, and `tx_RBFr` pays more than 1.25× the feerate of `tx_LM`. So this is permitted under the new rules.\n\n![RBFr RBFr.png](https://m.stacker.news/13366)\n\n6. You then rebroadcast `tx_LL` and `tx_LS` because `C1` is no longer being spent.\n\n![RBFr rebroadcast LL_LS.png](https://m.stacker.news/13367)\n\n7. You immediately replace both `tx_LS` and `tx_RBFr` with `tx_HS`. `tx_HS` has a feerate of 21 s/vB which is higher than `tx_RBFr` (20 s/vB) and `tx_LS` (1 s/vB), and pays more absolute fees than both (105,000 s vs 2000 s + 100 s). But since it’s a child of `tx_LL` it only has a mining score of 1.95 s/vB.\n\n![RBFr HS.png](https://m.stacker.news/13374)\n\nRepeat 4.–7. to make every node on the network cycle the same five transactions ad nauseam. Roll the locktimes or sequences to make the transaction have a new TXIDs in each iteration, while spending the same UTXOs. The only transaction that is ever in any danger of getting mined is `tx_RBFr` which costs you 2000 s. If it it does get included in a block, just start over with a new confirmed UTXO as your `c2'`.\n https://example.com/ 21514 434807 434807.434976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.84778603046077 0 \N \N f 0 \N 0 110360535 0 f f \N \N \N \N 434807 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415451 2025-02-24 19:48:16.361 2025-03-29 22:39:49.249 \N Today marks the 13th anniversary of the creation of block 94947. It was the block with the most transactions on that day. There were 13 transactions in total.\n\nhttps://image.nostr.build/b885ad5ab25875e9ff4e62563281956f5da82184c0a77ae82e9e1fdca0ad03b5.png \nhttps://mempool.space/pt/block/000000000007b265e9fe90dfa380b51368f842e21ecee9541be5fe01df5840ce https://example.com/ 20623 415418 414755.415076.415331.415399.415406.415418.415451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.79174687407006 0 \N \N f 0 \N 0 243848056 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 433042 2025-03-10 19:10:09.947 2025-03-29 22:39:49.249 \N As you can see in the tweet, they are also abusing German privacy laws to attempt to silence critics (me) and suppress public discourse on their silent change to ToS.\n\nVery despicable practices and telling of what will be coming. Will be more and more important to host your own node/services at home instead of relying on a hosting provider for anything related to Bitcoin, privacy, or self-sovereignty. https://example.com/ 7674 432920 432920.433042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2140340516771 0 \N \N f 303778454 \N 2 175040920 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436379 2025-03-13 14:09:14.355 2025-03-29 22:39:49.49 \N I think bip42 fixed a bug and satoshi did mean to have a fixed 21 million coin suppli https://example.com/ 19484 435907 435907.436379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.136221516841 0 \N \N f 0 \N 0 113122039 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 10:40:36.237 f \N \N \N 0 0 0 0 0 0 0 425712 2025-03-05 04:59:36.559 2025-03-29 22:39:49.491 \N Copy and pasted an existing spec (adding one or two little things) we've all been hard at work building for years and they called it their own. Notice how there's not a SINGLE fucking word about LNURL on their marketing site. They literally don't care about lightning or the open source community. The correct way to do this is to submit a PR into the spec. They've essentially gone hostile as far as I'm concerned.\n\n\nIf you disagree with KYC, you'll see their version is supposed to enable regulated surveillance through the use of VASP to VASP fincen requirements. This is likely why they didn't even bother trying to engage the open source community at all. \n\nThe cross currency compatibility is the least of anyone's concerns. https://example.com/ 20965 425699 425699.425712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.5746658432292 0 \N \N f 0 \N 0 86716772 0 f f \N \N \N \N 425699 \N 0 0 \N \N f \N 2025-03-18 21:40:28.678 f \N \N \N 0 0 0 0 0 0 0 421611 2025-03-01 19:42:08.374 2025-03-29 22:39:49.494 \N Woo! Stalking enabled 😛 https://example.com/ 20481 421585 421567.421585.421611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.93687474252 0 \N \N f 31603499 \N 1 115874531 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431089 2025-03-09 15:24:42.614 2025-03-29 22:39:49.246 \N I'm no expert. I'm sure others here can provide more insight, but here's a few things:\n1. Bond yields rise as the value falls. Bond funds, pension funds, and other investment vehicles are mandated to own them. The values have now plummeted. This could put retiree's pensions in jeopardy. This loss of value caused the spring regional bank failures.\n2. The 10 year treasury is tied to US mortgage rates. As rates rise, the housing market is destroyed. People can't qualify for loans at higher rates.\n3. Government bonds are used as a benchmark for business loans. The debt market is drying up, which inhibits commerce. Businesses can't qualify at the higher rates.\n4. The scariest thing from US perspective is that rising rates reveal less confidence in the value of US treasuries, considered by many a risk free asset. Too much supply, and no demand. This loss of confidence can bring down the whole house of cards. https://example.com/ 5500 430928 430279.430289.430291.430928.431089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3624133878209 0 \N \N f 0 \N 0 117810151 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421661 2025-03-01 21:12:44.217 2025-03-29 22:39:49.246 \N I also recommend Healthspan by Peter Attia. His take is that diet is somewhat meaningless of a thing to try to optimize if you haven't first mastered building an exercise routine.\n\nAll that said, I take a lot of things. \n\nI start with \n\n- Berberine (1200mg) + Alpha Lipoic Acid (600mg) (I don't have a metformin prescription so this is my half-assed sub)\n- Antarctic Krill Oil\n- Fesitin\n- Calcium Alpha-Ketoglutarate\n- Spermadine\n- Quercetin\n- Trans-Resveratrol\n\nThen I follow it up for brunch, daily around 10:30-11am with a smoothy, which is \n\n- 2 cups of home blended nut milk\n- 2 tablespoons of olive oil\n- 1 tablespoon of MCT oil\n- 1 drop of D3 + K liquid (taken directly under my tongue as I prep the smoothy)\n- 1/4 cup of Forager Unsweetened Cashew Milk Yogurt\n- a batch of prepared powders that I mix up (these are for easy travel packing):\n - Multi Collagen Peptides\n - Cocoa Powder (Cocoa Vita)\n - Pea Protein\n - Hemp Protein\n - Thorne Amino Complex\n - PB Fit\n - Kale powder\n - Taurine\n - Broccoli powder\n - Creatine\n - Beet Powder\n - Elderberry Juice powder\n - Lions Mane\n - Turkey Tail\n - Ceylon Cinnamon\n - Cordyceps\n\nThen I do:\n\n- another Antarctic Krill\n- Hyaluronic Acid\n\nand after dinner:\n\n- Tru Niagin NR\n- Pterostilbene (150mg)\n- Magnesium\n\n\nI think that's all of it... I should make a full post at some point with the powder mixes and how I store them...\n https://example.com/ 16942 421191 2483.420776.421191.421661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6624068841065 0 \N \N f 0 \N 0 155871965 0 f f \N \N \N \N 2483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448085 2025-03-22 11:53:56.786 2025-03-29 22:39:49.249 \N ![](https://www.zapread.com/i/9QH) https://example.com/ 21383 447451 446954.447451.448085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5333940338026 0 \N \N f 0 \N 0 10278811 0 f f \N \N \N \N 446954 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416888 2025-02-25 22:48:44.15 2025-03-29 22:39:49.25 \N \nMy idea:\n\nI went to a party last year where we would all be betting on the outcomes of various fighting matchups on N64's (classic) Super Smash Bros.\n\nThe game allows you to select up to 4 CPUs to compete against each other on a randomly selected battlefield. We placed bets (1) once the CPUs were picked and (2) after the battlefield was randomly selected.\n\nFor anyone who has played this game before, you will know that different players have different advantages, especially depending on the battlefield that is selected.\n\nIt ended up being really fun and addictive. People were screaming and some of the matches were extremely entertaining and dramatic.\n\nIt wasn't as easy to predict the winner as you might expect. I also think it's elegant how vast the amount of permutations are for potential character matchups on different battlefields.\n\nI immediately thought that the internet would probably love this, especially since this game is such a classic. I thought doing so on lightning would be even better.\n\nI just want to see this happen. Happy to help out. https://example.com/ 2151 416710 416158.416710.416888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.630654130646 0 \N \N f 0 \N 0 200808275 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434750 2025-03-12 08:02:24.276 2025-03-29 22:39:49.489 \N It will be unpopular in this space but I think humans have a mandate to be respectful to its enviroment and resources. I understand we need oil and gas and we cant live without all this stuff but I don't understand why it has to be so political to advocate for a cleaner more efficiently ran planet. We don't have to reduce energy consumption. We have to figure out more effective ways to produce denser amounts of energy cleanly.\n\nAny reduction in any negative emissions is a good thing, and we should be mindful about shitting where we eat. I don't think it should be such an extreme thing that we significantly negatively impact peoples lives across the planet while doing it, but I really don't understand how we as a species has gotten to the point where you cannot have any nuance in your stance on these types of issues. You must either be all in one way or the other. \n\nI am so tired of fighting with each other.\n\n https://example.com/ 12483 434726 434697.434726.434750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6791250554916 0 \N \N f 0 \N 0 7056800 0 f f \N \N \N \N 434697 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416857 2025-02-25 22:18:21.782 2025-03-29 22:39:49.493 \N So one step I think will become much more prominent in the coming years is not convincing merchants to take Bitcoin, but Bitcoiners acquiring businesses and operating on a Bitcoin standard.\n\nI've found it's mostly hopeless in getting businesses to adopt Bitcoin, as they don't really get it. You need Bitcoiners that understand its value to run these businesses, and there's a tremendous opportunity as many of these profitable businesses are being sold due to boomers retiring. Even a few businesses in the same town will have a pretty big effect, and these businesses will have a major advantage with Bitcoin on their balance sheet. https://example.com/ 2338 416850 416158.416199.416850.416857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8316708075852 0 \N \N f 197262304 \N 1 198616818 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447331 2025-03-21 19:22:24.565 2025-03-29 22:39:49.496 \N Brief Bio:\n\n- Active Duty Marine Infantry Officer until 2.5 years ago when I finished up active time and went back to school to learn to code so I could work on Bitcoin\n- Taught a bunch of bitcoin education courses, most recently at Base58 with @niftynei as her TA\n- Been contributing to open source bitcoin and lightning projects for about 2 years now, most extensively in Fedimint \n- Worked at OKCoin and OKX for a couple months as a backend developer on the fiat and "web3" teams, quit to work exclusively on Bitcoin again like I had when just doing open source\n- Started working at Fedi a couple months ago\n- Currently running the AI4ALL Hackathon, a remote hackathon running the month of July on using Bitcoin to scale and improve the privacy of generative AI applications https://bolt.fun/tournaments/ai4all/overview https://example.com/ 3411 447318 447264.447302.447318.447331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.72569985895421 0 \N \N f 0 \N 0 150924853 0 f f \N \N \N \N 447264 \N 0 0 \N \N f \N 2025-03-28 12:41:37.49 f \N \N \N 0 0 0 0 0 0 0 406548 2025-02-17 12:32:54.243 2025-03-29 22:39:49.497 \N Open Source stage, the only legit thing about this whole shitcoin conference.\n\nhttps://bitcointv.com/w/fZkPWnEgRTfrUGCCDDbRTv https://example.com/ 16270 406297 406297.406548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0567947340775 0 \N \N f 91103219 \N 1 39639867 0 f f \N \N \N \N 406297 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422636 2025-03-02 15:34:34.949 2025-03-29 22:39:49.246 \N `type of shop your have `\nnature resort\n\n`type of commerce`\ntourism in european underpopulated rural area\n\n`how was the onboarding process`\nEasy from my perspective, have studied and practiced before in the position to setup a private node (third node) for the family and provide everyone somehow access to it.\n\n`what tools / apps you used, in the beginning and later`\nmany of them, personally I tried as many as I can, skipping (tried, never used) the most common one like Muun, WoS. A good filter was always, if too many people talk about it, ignore it. I like to focus on niche things. Currently:\n\n- CLN node with Start9\n- Bluewallet\n- LNbits and extensions helps a lot\n- GetAlby as browser wallet\n- Custom website for booking and cms system accepting onchain and lightning\n- Custom POSs connected to the site db for menu and extra services (also payable with sats and BTC)\n- nos2x as NOSTR signer\n\n`how you improved your use of bitcoin apps`\nusing them, making mistakes... losing sats. Has been, and still, all part of the learning process.\n\n`how you consider bitcoin in your accounting (cash or "investment")`\ncash\n\n`anything you would like to share`\nKeep trying and upgrade your tools as your knowledge and experience improves. https://example.com/ 11515 422614 422614.422636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2878394079907 0 \N \N f 0 \N 0 25106674 0 f f \N \N \N \N 422614 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434668 2025-03-12 05:50:42.942 2025-03-29 22:39:49.248 \N ![](https://www.zapread.com/i/9MY) https://example.com/ 657 431086 430109.430351.431086.434668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7772834551958 0 \N \N f 717134264 \N 4 100298905 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408169 2025-02-18 15:57:39.804 2025-03-29 22:39:49.249 \N I know who they are. They've even done a user interview with us before. \n\nI don't want to shame them into doing what I consider the right thing if they don't want to. https://example.com/ 17690 407836 407836.408169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.42656782074088 0 \N \N f 0 \N 0 133877715 0 f f \N \N \N \N 407836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436347 2025-03-13 13:45:48.325 2025-03-29 22:39:49.249 \N Day 154 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 937 436093 436093.436347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0606067713221137 0 \N \N f 323754732 \N 3 46722394 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:30:38.883 f \N \N \N 0 0 0 0 1 0 0 458247 2025-03-29 06:20:12.865 2025-03-29 22:39:49.25 \N Completely agree. It blows my mind how some people don't spend sats when they have the chance "because they want to have bitcoin, not dollars".\n\nWell, fuck, I concur. But if you have an easy way to turn BTC to USD and viceversa, why not Spend & Replace? This helps promote adoption.\n\nThese people hoarding BTC that hard as if they were Gollum might find themselves in the future having millions in value but having no use for it because we didn't manage to make a free, black, circular economy before the governments went full authoritarian with CBDCs and against Bitcoin. https://example.com/ 16788 458122 458122.458247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.61862731804969 0 \N \N f 0 \N 0 92119387 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428494 2025-03-07 10:49:15.864 2025-03-29 22:39:49.25 \N The territories will not be profitable on territory revenue alone. At least not any time soon. \n\n What I am trying to quantify is the value add of having the territory and the territories in general incentivizing greater activity across SN to my own daily earnings from zaps and rewards. \n\nI will wait until the end of the month but then I am going to do a post that will show the revenue I earned from the territory plus the zaps/rewards I earned compared to the pre-territory era. Did the increased activity in the territory, and more broadly on SN earn me enough additional zaps/rewards to make up for the loss on the territory fee?\n\nNot that it really matters to me. It would be nice to break even but if I don't that's ok too. I am just trying to formulate a picture of the impact of territories. Hopefully we will get some data out of SN as well to see if they have increased users and activity. \n\nI expect most territories to fail or to be passion projects financed at a loss by the founders. We are in the territory boom phase right now but I expect we will see great attrition over the next couple months as territories drop off or merge (maybe it's not viable to have individual art, music, and movie territories and they meld into one. Maybe AI and tech become one. Health and Fitness become one. Etc). \n\nUltimately, I think the territories will be a huge benefit to SN long term. I wouldn't have pestered @k00b for months about a sports sub if I didn't believe breadth of conversation would be a net benefit to the site. That being said we are going to have a messy few months to coalesce probably around 10-12 (guess) viable territories. In the meantime, let's get some more bitcoiners on the platform. Right now I haven't even begun to try to attract non bitcoiners when most bitcoiners aren't even on here. Let's get the low hanging fruit and then broaden our horizons. \n\nThat's my 2 sats. https://example.com/ 866 428194 427934.428174.428194.428494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7559768149431 0 \N \N f 0 \N 0 193914083 0 f f \N \N \N \N 427934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423520 2025-03-03 12:40:38.455 2025-03-29 22:39:49.49 \N You know me well enough:\n1. I respect and follow the Natural Law that says very clearly: do not steal.\n2. My personal values are way more up than some few thousands sats.\n3. I have enough BTC to live my life without taking what IS NOT MINE!\n4. If I would see in my user balance such a high change, I will contact immediately contact @k00b (as I did several times in the past).\n5. Just because I shit on shitcoiners it doesn't mean I will steal from such a nice bitcoin project! \n6. FUCK YOU ALL THOSE THAT THINK IT WAS ME! Shame on you that you didn't read ALL my posting history on SN to know me better. https://example.com/ 14607 423516 423516.423520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3411730309413 0 \N \N f 154141842 \N 1 235472472 0 f f \N \N \N \N 423516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447626 2025-03-22 01:03:07.432 2025-03-29 22:39:49.492 \N Peter McCormack kills the general audience bitcoin podcasting game for the same reasons Rogan does: he doesn’t need to put himself on the same level as his guests and he’s willing to be and sound stupid in the pursuit of helping his audience learn more from his guests. He’s also not interrogating his guests or jockeying for the moral high ground. He’s trying to harmonize with them and have good time. https://example.com/ 9758 447566 447566.447626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.81732438679361 0 \N \N f 148090278 \N 1 66848072 0 f f \N \N \N \N 447566 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443400 2025-03-19 10:22:48.285 2025-03-29 22:39:49.493 \N Day 246 of snailposting everyday 'til BTC hits $100k.\n\n...and 46 push-ups. (20 - 20 - 6)\n\n__@_'-' https://example.com/ 763 443395 443372.443390.443395.443400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.804329613324 0 \N \N f 27477692 \N 1 29692945 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 04:06:27.513 f \N \N \N 0 0 0 0 1 0 0 422939 2025-03-02 19:42:20.62 2025-03-29 22:39:49.494 \N See Laolu comment on the mailing list about LND.\n\nThis is always unclear with coordinated disclosure if you give the latest release number (where mitigations are included) or the ones where they have been effectively included. Latest release number might always have some minor bugs. \n\nThanks for the work you’re doing on stacker.news. https://example.com/ 7389 422933 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422918.422933.422939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.605176129904841 0 \N \N f 588611444 \N 4 236770597 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403336 2025-02-14 17:46:58.283 2025-03-29 22:39:49.494 \N I gave a talk about consensus about how this is what we'll eventually have. https://example.com/ 738 403323 403323.403336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.24096991099101 0 \N \N f 195103280 \N 1 29385291 0 f f \N \N \N \N 403323 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410505 2025-02-20 14:06:25.339 2025-03-29 22:39:49.247 \N I was going to keep Outer Space super private/mysterious and assume another nym but it’s really hard to do given (1) I work in a coworking space (2) I historically “work in public” online. I’d have to fake a drug addiction or something and pretend I just wasn’t getting anything done. \n\nAnyway, Outer Space is where I’m going to *attempt* to build SN-like things into/on/for nostr. SN will remain and continue to be improved - ideally sharing as much code/improvements with Outer Space as possible. Outer Space is like an R&D project answering the question of whether the problems SN solves can be solved in a decentralized way (with nostr as ground zero).\n\nOuter Space is just a landing page right now where you can reserve a NIP-05 and lightning address, but I wanted to kickstart it and have somewhere to host the progress.\n\n##### AFAICT Roadmap\n1. NIP-05\n2. Non-custodial & hybrid custodial Lightning wallet/address/etc:\n\ta. Support fully non-custodial wallet connections\n\tb. Provide optional sat capped custodial wallet for offline receives and in app payment simplicity, i.e. a small custodial buffer with non-custodial (or other-custodian) overflow\n3. Basic nostr client/relay\n4. client/relay with value rank support\n\nIt’s been an open question whether I can build SN into nostr since its inception. I guess we’ll find out. https://example.com/ 16939 406917 406917.410505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6608829642661 0 \N \N f 0 \N 0 177935269 0 f f \N \N \N \N 406917 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424142 2025-03-03 20:56:28.838 2025-03-29 22:39:49.247 \N I think Bitcoin's privacy is improving. For power users, they can achieve "pretty good privacy" today. But it's far from adequate and is probably all things considered one of its weakest points today.\n\nThe main problem is that most Bitcoin users engage with fully KYC'd financial services like exchanges. So even if they do self-custody, their activity is known. Lightning withdrawals and deposits from exchanges is a nice step forward. But while sending privacy in LN is strong, receiving privacy is still not great. So if you withdraw from let's say Kraken they know things about your Lightning activity and ID. Blinded paths, which should be activated in the coming year, will help address this vulnerability.\n\nI'd recommend that Bitcoiners everywhere learn about CoinJoins as well as Lightning but mostly that they learn how to use Bitcoin without KYC. The best way to preserve your privacy is not to link your real-world ID to any Bitcoin in the first place. https://example.com/ 9758 423195 417471.423195.424142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63205535349807 0 \N \N f 0 \N 0 55661846 0 f f \N \N \N \N 417471 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410741 2025-02-20 16:47:14.312 2025-03-29 22:39:49.248 \N Talking about fucking conspiracies XD. Dude, I will be spitting just straight true facts, but because it makes the government sound bad, its perceived as conspiratorial. I gotta chill and be matter of fact with it. https://example.com/ 5703 410728 410728.410741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7956852513478 0 \N \N f 0 \N 0 82568268 0 f f \N \N \N \N 410728 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443479 2025-03-19 11:32:38.417 2025-03-29 22:39:49.249 \N ![](https://m.stacker.news/64561) https://example.com/ 19463 443470 442751.443231.443470.443479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1057244333147 0 \N \N f 0 \N 0 139241937 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410631 2025-02-20 15:23:01.122 2025-03-29 22:39:49.249 \N ![](https://www.zapread.com/i/9Df) https://example.com/ 1429 410531 410249.410531.410631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2275595943848 0 \N \N f 0 \N 0 148377568 0 f f \N \N \N \N 410249 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307281 2024-11-24 22:29:37.095 2025-03-29 22:39:49.249 \N ### 1. Changes in Customer Service\nKnowing a few people who have worked in or had hospitality businesses, I think we are witnessing a few different things. \n\n**Higher Expectations**\nFirstly, inflation aside, it’s my belief that people’s expectations have actually increased. I have seen it in family and friends. You might not have witnessed this yourself since 2020, but when going to a hotel or a restaurant, people are expecting higher levels of service than they are actually paying for. The general public is getting very aggravated (at least in the West) at not receiving perfection.\n\nWhat used to be a pub lunch, people are now thinking they are fine dining. You can see it in TripAdvisor ratings alone in Europe. Expectations have increased, during times that quality is decreasing. I’m really not sure what’s triggered this, but this is compounded by the fact that many in the general public have a short fuse and are more willing to voice this. For reasons we’re all probably very aware, no longer feeling they are staying ahead.\n\n**Inflation / shrinkflation**\nSecondly, inflation is clearly exacerbating this. As places try to make dishes smaller or inferior quality. If you’re a regular, you’ve likely seen prices increase 15-20% and if you haven’t, you’ve witnessed shrinkflation. And the general public will quite often believe the businesses are the greedy ones, without considering the increased costs for all businesses of late. One end result is then increased automation, either in place, or for online services like helpdesks. To prevent needing to sacrifice the product quality itself. But it’s shrinkflation in services.\n\n**Automation**\nThat is a clear trend, removing people from the cost during customer interactions. We have witnessed it with more ‘self-service’ restaurants, where you order at the bar or via QR and go and collect it via a beeper. I also witnessed in some cities, companies sharing the same staff. i.e. you have multiple huts or markets where you can order different cuisines from different establishments and you have general staff to collect (or perhaps deliver) your orders. It’s a different concept (but as inferior it is as a service) it is a pretty decent experience being able to order different foods from different places, and receive it at the same time when dining with friends/family. Something that wasn’t all too common in years prior. In general, this caters to greater personalisation.\n\n**Tip Culture**\nIn the U.S. I’ve heard plenty of examples of tip culture getting out of hand, in spite of reduced levels of service. But I also witnessed this on card terminals in Europe.\n\nI’d be curious to hear from someone working in that industry there. Is it because the opportunities for receiving tips and building personable experiences is reduced or because there is a greater need to receive tips in order to stay ahead of inflation financially?\n\n### 2. Good examples\nGenerally I think that any businesses recognising and acknowledging loyalty, and ones that are willing to invest time getting to know their customers are worth sticking with. Especially when it’s all too easy to put all customer interaction behind a queuing system.\n\n**Recognising Loyalty**\nI had an experience a few months ago, where on a call with American Express, the lady took a few moments to wish to thank me for having used their services for 9 years. It was such a simple thing to draw my attention to, they will always have account creation dates on customer profiles, but it really did have an impact. Even if I wanted to debank myself as many around these woods would suggest I do, Amex may be one of the last standing for that simple gesture. In spite of their horrific merchant fees. \n\n**Showing Empathy**\nOne other thing I have witnessed are those businesses that allow customers to talk, share their frustration and being listened to. One thing I heard was during 2020, an older lady ringing a local business and asking some random unrelated questions, but proceeding to tell the person in the business all about her life and family. She was ringing simply for a chat, because of feeling lonely and isolated. And this person recognised that and kept her on the phone for 10 minutes, despite the priorities of the business at that time.\n\n### 3. SN Suggestions\n**Personalisation**\nWhen logging-in (especially for the first time), asking people what their interests are. So as to be able to suggest the top rated posts in the last 90 days from those categories. This to me is important, as SN currently only has ephemeral content. If you’re not logging in frequently, or don’t read the newsletter, we all know you’ll miss content. Particularly given search, as I’m sure the team will admit, is still not quite there yet.\n\n**New Profiles / Bios**\nOne thing I love about the ‘recent’ section is quite often seeing new profiles being created and people welcoming the new users. If we could encourage more people to write a bit more about their area of interest, I feel like it would lead to even more natural conversations, improve the quality of welcomes, stickiness and early ‘aha’ moments, as they receive their first zaps.\n\nIt’s great that these new profiles ARE visible, but during the next upcoming wave of new users, it’s going to feel an awful lot like Facebook ‘happy birthday’ messages… too generic and absent of meaning.\n\n**More Community Features**\nCurrently we’re not really ‘following’ people but quality content. It would be great if the trust graph would show us which are our most trusted contacts on SN, and to indicate to us if someone we are aligned with has upvoted or commented on some content. \n\n**Lightning Torch**\nHow do we get people to realise that the more you engage & zap on StackerNews, the more you will receive? I’m not sure even more seasoned visitors understand this.\n\nI’m wondering if we could try and participate in some sort of **Zap Rodeo** (or whatever we want to call it). For that to display a random engaged user to send the sats to. If say 10 users pass-on the sats and get their cowboy hat, the sats get boomeranged back to the original user’s account. If it sounds too gimmicky and forced, that’s not the intention. In general I just think we can do more to get newbies zapping & funding their accounts, rather than just using the account as a glorified rss feed. Which will inevitably lead to periods of disengagement. https://example.com/ 21172 307258 307258.307281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.85521287625792 0 \N \N f 0 \N 0 153537992 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437707 2025-03-14 19:29:13.69 2025-03-29 22:39:49.25 \N It’s nice to be back in the office after a few weeks with lots of traveling. I’ve already [caught up](https://bitcoin.stackexchange.com/users/5406/murch?tab=activity&sort=all) on Stack Exchange adding three answers as well as revising and retagging a number of other posts this week. I co-authored a section on [Incentives](https://bitcoinops.org/en/newsletters/2023/05/24/#waiting-for-confirmation-2-incentives) in our Mempool series for the Optech Newsletter.\n\nAfter the preceding [“Mini Miner”](https://bitcoinops.org/en/newsletters/2023/05/24/#bitcoin-core-27021) (#27021) got merged last week, I’ll be working on rebasing my “ancestor aware funding” ([#26152](https://github.com/bitcoin/bitcoin/issues/26152)) PR. There are multiple open PRs that touch the same code areas which are causing merge conflicts that I want to review. Today, I need to also glance at a research proposal and attend a talk. Tomorrow, I will co-host the [Bitcoin Optech Audio Recap](https://bitcoinops.org/en/podcast/). I also need to give our [Chaincode Podcast](https://podcast.chaincode.com/) episode with Alekos and Daniela from BDK a listen. I hope to get back to my draft for a [BIP on transaction terminology](https://github.com/Xekyo/bips/tree/2022-04-tx-terminology) early next week. https://example.com/ 1647 437619 437233.437512.437619.437707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.77438861751351 0 \N \N f 223256986 \N 2 175179909 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456657 2025-03-27 18:32:24.184 2025-03-29 22:39:49.25 \N The benefit of earning a cowboy hat, you ask? They asked Sir Edmund Hillary why he climbed Everest.\nHis response:\nBecause it was there. https://example.com/ 649 456650 456650.456657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9534641021162 0 \N \N f 0 \N 0 43072214 0 f f \N \N \N \N 456650 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410662 2025-02-20 15:35:28.699 2025-03-29 22:39:49.251 \N Just discovered SN yesterday. Very interesting community. Looking forward to stacking with you! https://example.com/ 15243 410653 410409.410653.410662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.411768694398 0 \N \N f 0 \N 0 227276546 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410536 2025-02-20 14:23:37.873 2025-03-29 22:39:49.247 \N ![dont sell Bitcoin](https://i.pinimg.com/originals/e8/7c/2e/e87c2e1a537976b95edceeae3ab13b72.jpg) https://example.com/ 10112 410471 410269.410471.410536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.05721579595127 0 \N \N f 0 \N 0 120381900 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423970 2025-03-03 18:41:41.951 2025-03-29 22:39:49.249 \N I’m learning how to sell. By creating a messaging framework. Understanding what the triggers are and objections on selling.\n\nI’m learning how to program large language models to automate stuff in python.\n\nI’m learning how to make a song on a computer. The lyrics. The notes, the chords.\n\nThese are all things I have been learning this month. https://example.com/ 21058 423823 423576.423823.423970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9676161745526 0 \N \N f 0 \N 0 215661210 0 f f \N \N \N \N 423576 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435438 2025-03-12 17:15:53.128 2025-03-29 22:39:49.49 \N @k00b @ek continuing from the thread, here is one rough idea about how you could bring this to the user's attention in the UX and motivate attachment of wallets and illustrate what it means. \n\n![](https://m.stacker.news/57351)\n\nThe "attach wallet" page is quite complex for someone who does not know much (what does NWC, LNC, and LNBITS mean to a newbie?) so there could be some useful tooltips, alerts, or recommendations in there too.\n\nI am sure you guys are onto it, but happy to throw in some design feedback as you work through it!\n\n https://example.com/ 5293 435295 435217.435275.435277.435295.435438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0289823477706 0 \N \N f 383782098 \N 5 136035346 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-20 08:33:18.082 f \N \N \N 0 0 0 0 2 0 0 447229 2025-03-21 17:49:17.073 2025-03-29 22:39:49.492 \N I hope I will not reveal some algo secrets with this, but I found something funny and maybe useful for others on SN, especially for new stackers here.\n\nEvery morning I go to SN pool and hit the zap button. Once.\nThen read the new posts from "all" and if I found something interesting I zap it. \nYou should be the first one doing that and you will see why later.\nIf there are already some comments, zap also those, especially those that weren't already zapped (if are good).\n\nAlso post a new comment in the new posts if nobody did it already. Of course if is really necessary, not just for the sake of commenting.\nGo to Saloon and talk with the funny nemo. Not too much, otherwise will zap you like crazy 😂😂😂\n\nPost a good meta that people are interested too and engage in discussions. Not just post and leave. Engaging will bring you more visibility for your post.\nIf you see that got more sats, go bacl to SN pool and hit that "donation" button again. You can do this anytime, many times per day. Don't worry are not lost sats, but contrary!\n\nDo this all day, when you have time.\nThen wait for next day. Surprise! Your initial "donation" to SN pool is back, sometimes even more than you expect.\nWhy?\nBecause all the sats in SN poll will be redistributed for your previous "activity".\nAs bonus, you have infinite cowboy hats!\nStackers, learn how to use SN...\n\n*I do not use SN to get rich... I don't need that, but all these SN sats I use them later to onboard many nocoiners, every fucking day.* https://example.com/ 9552 441238 441238.447229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.317831787802341 0 \N \N f 121467512 \N 1 176702938 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428123 2025-03-06 21:36:12.994 2025-03-29 22:39:49.492 \N https://imgprxy.stacker.news/q9g6Ngia6jZO8iwf5S36ycWwCtOoL7QteqAEc8nmE90/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9HM1c5UEgyLzQ0M2E3NzY2LWFjM2MtNDI0NC1hY2M4LTgzMGZhNWFjN2YxZC5qcGc https://example.com/ 17722 427969 427188.427211.427969.428123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9541383812912 0 \N \N f 43016593 \N 1 239820709 0 f f \N \N \N \N 427188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422207 2025-03-02 10:17:02.024 2025-03-29 22:39:49.493 \N It's come up here a bunch of times where people have asked something like _how do I be more open-minded?_ And I always say _Actually care about being open-minded_. \n\nSo many people LARP about wanting to be open-minded, but you push just a tiny bit and you see nothing whatsoever reflected in their actions or their lives: all their information coming from the same tribe, all their friends from the same tribe. They talk about how important it is to be open to new perspectives, but what they really mean is: everyone else should be open to _my_ perspective, which is obviously right. Talk about the bias everywhere, where bias = _disagreeing with how I see things_.\n\nSubcultures -- including bitcoiners -- are the worst at this.\n\nIf you want to be open-minded, and you want less bias, and you want to understand the world, the evidence of this will be all over your life, and it won't be subtle. If you introspect and you don't find it -- or maybe, if your ideological enemy wouldn't have to admit that you're doing it -- maybe what you're after isn't open-mindedness, or the truth.\n https://example.com/ 4035 422203 422203.422207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8840907677901 0 \N \N f 3694273586 \N 30 81123438 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447073 2025-03-21 15:42:40.733 2025-03-29 22:39:49.493 \N I understand your concerns about integrating ChatGPT into StackerNews and the potential impact on user engagement and proof of work. It's important to remember that AI tools like ChatGPT are meant to enhance our experiences, not replace them. The proposed summaries aim to improve accessibility and save users time, allowing them to focus on more in-depth discussions.\n\nYour suggestion to reward users for creating their own TLDRs has merit, and it's possible to design incentives that balance AI-generated content with user-generated content. This way, we can maintain the quality of discourse on StackerNews while also benefiting from AI assistance. Let's keep an open mind about the potential advantages of AI integration while striving to preserve the unique aspects of StackerNews that make it valuable to its users. https://example.com/ 2206 447064 446631.446791.446849.447064.447073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.03683458247382 0 \N \N f 0 \N 0 207500617 0 f f \N \N \N \N 446631 \N 0 0 \N \N f \N 2025-03-28 10:13:50.802 f \N \N \N 0 0 0 0 0 0 0 422980 2025-03-02 20:34:40.451 2025-03-29 22:39:49.497 \N > But you get used to this kind of situation, and the overhead isn't even the real problem. The real issue is that the easiest way to advance in academia is to pay other people to produce papers, on which you, as the grant holder, can put your name.\n\nI don't have much to say about what the internal experience of women is like, but this quote is true enough. It's worth saying, though, that academia is lot like the rest of life in this way -- there's a system of incentives, and an ecosystem to figure out how to maximize, and some people are really good at it. \n\nJust like you might have a friend who had the same amount of money as you but who owns ten rental properties because he figured out this was a good way to use his skills to inhabit the system effectively, certain people really have figured out the points of leverage in academia. They know how to manage a big research group, crank out papers, get grants. Not everyone can do this. Some "normal" academics toil away, trying to do it the "right" way, and usually suffering.\n\nWhatever the system, somebody will figure out an effective way to maximize it, and what they do will often not resemble what you thought the system was supposed to be doing (in this case, educating the public.) https://example.com/ 1213 422962 422960.422962.422980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1990185652221 0 \N \N f 153812199 \N 1 239779038 0 f f \N \N \N \N 422960 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434509 2025-03-12 01:18:08.198 2025-03-29 22:39:49.247 \N ![](https://www.zapread.com/i/-21) https://example.com/ 6191 434500 434500.434509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5773319931807 0 \N \N f 31273891 \N 1 102177149 0 f f \N \N \N \N 434500 \N 0 0 \N \N f \N 2025-03-18 20:19:37.327 f \N \N \N 0 0 0 0 1 0 0 415319 2025-02-24 17:43:23.329 2025-03-29 22:39:49.248 \N Removed myself (and my stack) from an abusive relationship.\n\nReconnected with family and old friends.\n\nGot introduced today to a friend of a friend as "the least judgemental person you'll ever meet". Made me ckoke up more than I was prepared for. https://example.com/ 17148 415276 415276.415319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5094828488546 0 \N \N f 0 \N 0 210242829 0 f f \N \N \N \N 415276 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435894 2025-03-13 04:36:58.571 2025-03-29 22:39:49.249 \N ![](https://imgprxy.stacker.news/-iDjyQjm69yMS560MLue-_ueW_w0qbdOiMtJSWQgsUc/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0YyWTRnenhXY0FBZUtLdT9mb3JtYXQ9anBnJm5hbWU9bGFyZ2U) https://example.com/ 17526 435847 435847.435894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9768134756643 0 \N \N f 0 \N 0 30881694 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307522 2024-11-25 06:02:23.113 2025-03-29 22:39:49.249 \N Cool, I'll take a look at your prediction market idea! I feel like this is the era for prediction markets, so any fun ways we can utilize Bitcoin, Lightning, and nostr to be the bedrock of that technology will be resources well spent!\n\nWith regards to the negative ROI, the market currently does not have enough liquidity to support miner hedging at scale. Once we're confident that everything's working smoothly, we're planning to increase the initial subsidy thus enabling more speculators to profitably bet, and enabling miners to hedge their hashrate. \n\nAn alternative to our current strategy that can enable positive ROI on each outcome is fixed odds betting. However, we don't want to provide fixed odds betting because it's easily financially attacked and also is suceptable to the same variance problems. The approach we take is we want to decentralize the liquidity in the markets, rather than us being the centralized bookmaker. Then anyone who is comfortable with the risk can place bets, and as long as they have a large enough bankroll, they can strategically bet over time to balance any miner hedging bets. That means we need more speculators betting more frequently to enable miners to hedge.\n\nOn your objection to betting markets decentralizing hashrate, I recently spoke with the founders of [Demand Pool](https://www.dmnd.work/) at btc prague and they were interested in offering hedging services through Bitcoin Prediction Market to their miners. Demand pool is creating a StratumV2 pool that is PPLNS (I believe, I definitely know it is not FPPS). The big problem with mining pool payout schemes is they don't enable smaller pools to grow. Miners don't like variance, and they don't want to deal with it. By betting on Bitcoin Prediction Market, a miner that mines for AntPool (because they get safe FPPS payouts) can switch to Demand Pool and safely deal with variance by betting against Demand pool (betting no). As long as the market has sufficent liquidity, they can profitably hedge their hashrate by betting No on Demand Pool. (Of course, sufficent liquidity implies that we need more speculators betting every block.)\n\nIf we want StratumV2 to get adopted, we need miners directing their hashrate to smaller pools. That means they need to feel comfortable doing so. That means they need to deal with variance in a way that is not FPPS (because [FPPS is a broken centralizing mechanism](https://upstreamdata.com/the-fragility-of-financialized-bitcoin-mining-pools/)). Bitcoin Prediction Market provides them with that path, and that means it can facilitate hashrate decentralization. \n\nI think you might have misinterpreted the quoted section. It means if the market odds do not match the hashrate distribution, then any bet that incrementially moves the odds indicator closer to the actual hashrate distribution has positive expected value. It's just a theorem to show that speculators can indeed generate sustainable yields over time with Bitcoin Prediction Market (that we're not trying to scam you). We wanted to mathematically prove that it's possible to make positive expected value bets so long as the odds don't match the probabilities. \n\nThank you for your in depth comments! If you have any more I'll be around to answer anything else! 🙏🙏🙏 https://example.com/ 699 306412 306412.307522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.15986894247488 0 \N \N f 0 \N 0 90137456 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428150 2025-03-06 22:28:34.537 2025-03-29 22:39:49.25 \N * HackerNews hasn’t been about hacking for many many years now. It’s about corporate engineers clamouring for the next $250k paycheck. That’s because they reached scale.\n\n* I’m beginning to think in general that there’s no efficient way to accelerate the transition or onboard normies. Just know that gravity will prevail.\n\n* People cannot see the flaws in any existing system, until the moment that they are ready. They need to have an epiphany, not just stumble upon a small comment on an existing site they read.\n\n* People disagree that there exists a problem, let alone that there is a solution to said problem. And worst of all these poor people disagree that they should even entertain discussion about alternatives. As you say, to them it’s disrupting to the comfort of their current existence, to even have the conversation, rather than do any legitimate research or have any debate.\n\n* People will need to be find their way by their finger being burnt by the existing structures. By seeing its flaws first hand.\n\n* This is why I believe that the theory saying how **Bitcoin will suck-up everything into a black hole**, I believe, are wrong.\n\n* The existing system from the coming years is not compatible with this growing network. Both will likely run in parallel but they will not be interoperable as they are today. The existing system and those who are aligned with it, will defend it to the end. That alternative is not a black hole, the existing system is the black hole for itself.\n\n* Perhaps I will write-up a long form article on this theme in the coming days. I know there’s a lot of metaphorical content out there already in the community, but this one topic I believe is under-appreciated. Especially as we are witnessing it first hand, in examples like this with HN https://example.com/ 7587 428025 427254.428025.428150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.58575422195567 0 \N \N f 0 \N 0 54911940 0 f f \N \N \N \N 427254 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403051 2025-02-14 11:57:00.019 2025-03-29 22:39:49.491 \N > Maybe this stems from a lack of familiarity with the above arguments, maybe it’s just a coping argument against digital collectibles in general, and maybe it is mere aesthetic preference. No matter, if enough people are convinced that this matters, and if they represent a market of buyers, then the incentive is to cater to that preference.\n\nPeople's [beliefs about the value of inscriptions are literally the entire point of inscriptions](https://stacker.news/items/380243/r/elvismercury). Part of what's wrapped up in those beliefs is the "possession" of what is scarce. The value is not in spite of the outrage over wastefulness, it is a reflection of it. \n https://example.com/ 17592 403047 402904.402986.403047.403051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.19825355386718 0 \N \N f 0 \N 0 58039937 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423720 2025-03-03 14:56:06.444 2025-03-29 22:39:49.492 \N I think I found a small "bug". All Daily Discussion threads always say "yesterday". No matter if they are from today or a month ago. https://example.com/ 6717 423475 423475.423720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8078666076682 0 \N \N f 105922341 \N 1 192555363 0 f f \N \N \N \N 423475 \N 0 0 \N \N f \N 2025-03-18 18:22:20.201 f \N \N \N 0 0 0 0 1 0 0 457009 2025-03-28 04:32:01.94 2025-03-29 22:39:49.493 \N Look's like my guides are working! \n\n- [Easily attach wallet to SEND & RECEIVE sats from SN with Coinos.io and HODL](https://stacker.news/items/694593/r/supratic)\n\n- [Install, Run, Publish & Connect 𝚙𝚑𝚘𝚎𝚗𝚒𝚡𝚍 to SEND/RECEIVE sats to/from SN](https://stacker.news/items/695912/r/supratic)\n\n- [How to Attach Your self-hosted LNbits wallet to SEND/RECEIVE sats to/from SN](https://stacker.news/items/697132/r/supratic)\n\n- [How to attach your LND node to RECEIVE bitcoin from SN via ThunderHub](https://stacker.news/items/704693/r/supratic)\n\n- [How to attach your Blink.sv wallet to SEND sats to SN with a Blink's API key](https://stacker.news/items/705629/r/supratic)\n\n- [How to Connect your LN node to SEND/RECEIVE sats to/from SN via NWC with AlbyHub](https://stacker.news/items/698497/r/supratic)\n https://example.com/ 10016 457001 457001.457009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.15941819224609 0 \N \N f 33221015 \N 1 217557487 0 f f \N \N \N \N 457001 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458313 2025-03-29 07:41:26.651 2025-03-29 22:39:49.494 \N I'm watching the distressed investing panel, and I realize that my own biases prevent me from getting as much out of a discussion as I might otherwise. Every time one of these Wall Street guys uses the word "crypto" I automatically discard anything they say. https://example.com/ 11038 458299 458227.458241.458248.458276.458294.458299.458313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.40937715195737 0 \N \N f 226377318 \N 2 3502054 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448389 2025-03-22 15:23:35.243 2025-03-29 22:39:49.495 \N Yes absolutely -- a PubKey in every city! \n\nAt the moment we're focusing on Philly for our first expansion. We like the idea of keeping PubKeys close to HQ so we can have a solid view into quality control across everything we do. We've also been in talks with a number of Bitcoin communities around the world exploring opportunities to expand via Franchisement.\n\nWhat city needs a PubKey? We’d love to hear from you. Except for San Francisco. They’re on their own…for now… https://example.com/ 10283 448349 448349.448389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5997633605913 0 \N \N f 163711239 \N 1 218715438 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 08:42:53.81 f \N \N \N 0 0 0 0 1 0 0 410499 2025-02-20 14:05:16.478 2025-03-29 22:39:49.247 \N I propose something else:\nWho is doing himself a TLDR of the links is posting, will get more rewards.\nWho is posting only a link, will get less rewards.\n\nIncentive for proof of work not for chatGPT and idiocy. https://example.com/ 20912 408691 408691.410499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.070148397572 0 \N \N f 0 \N 0 114237934 0 f f \N \N \N \N 408691 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434598 2025-03-12 03:55:03.329 2025-03-29 22:39:49.248 \N Highly dependent on who you are, your threat model, and what you are doing online. Most of us are such small potatoes to the governments of the world that it isn't a big deal IMO. For most people privacy is far more important than anonymity. Privacy is choosing what you reveal. Edward Snowden has a very different threat model than myself. \n\nI'm not saying who cares and it doesn't matter. I think it does but I think being completely anonymous for most people is probably overkill. We live in such a surveillance state that few of us could withstand the eye of Sauron. I do think privacy is more important for bitcoiners than no-coiners. At least for the most part. I'm very selective about what I share online but at the same time I'm not ashamed or afraid to stand up as a bitcoiner. I don't want my UTXOs to be public but I don't yet feel like I need a nym. Or maybe I already have several... \n\nI respect folks that operate as nyms. If I were a bitcoin contributor I would do it as a nym. I guess my advice would be to do an analysis of your threat model and act accordingly. https://example.com/ 11314 434522 434278.434503.434522.434598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.6572086683134 0 \N \N f 2931797091 \N 22 191182895 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424173 2025-03-03 21:23:11.802 2025-03-29 22:39:49.25 \N Hey folks, thanks to everyone who came out for part 2 of the _Broken Money_ [book club](https://stacker.news/items/287069). As before, I tried to trickle new prompts throughout the day, but unlike before, I had a fairly aggressive work travel schedule going on, so a few things appeared in a cluster at the end.\n\nPoint is, if you popped in early, feel free to pop in again, there will be new stuff there. And some of the folks in the threads will still respond to new discussion. I certainly will.\n\nI appreciate very much having a place to do this. I'm also excited to see other book-related discussion -- @davidw put a lot of work into a review of [The Market for Liberty](https://stacker.news/items/288076) which I just saw this morning and which I'm excited to check out!\n https://example.com/ 9184 423709 423362.423437.423709.424173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5071701989126 0 \N \N f 0 \N 0 151227238 0 f f \N \N \N \N 423362 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434680 2025-03-12 06:33:38.181 2025-03-29 22:39:49.492 \N It looks like since a few hours ago they have completely blocked the site for non-logged in viewers, and the Nitter instances have stopped working as well. If this is going to be permanent, I agree: Twitter is now a private club for the blue checks and links to it should be considered spam. https://example.com/ 21184 433934 433934.434680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4849934361507 0 \N \N f 0 \N 0 199298465 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N 2025-03-19 07:26:29.62 f \N \N \N 0 0 0 0 0 0 0 402438 2025-02-13 18:17:02.081 2025-03-29 22:39:49.493 \N Personally I don't, but maybe I'm being selfish. I feel like a huge influx of new accounts would lower the quality of the experience. On the other hand, I know this is a business. Though I wasn't around, I hear people talking about how bitcoin reddit got destroyed by its own popularity. https://example.com/ 1352 402171 402171.402438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.7563322410933 0 \N \N f 31857229 \N 1 129139667 0 f f \N \N \N \N 402171 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435401 2025-03-12 16:47:10.198 2025-03-29 22:39:49.493 \N ![IMG_9254.png](https://m.stacker.news/13410) https://example.com/ 10291 435261 435261.435401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6952361755174 0 \N \N f 552843456 \N 3 227446962 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:19.161 f \N \N \N 0 0 0 0 1 0 0 448710 2025-03-22 19:56:11.641 2025-03-29 22:39:49.496 \N Lol Bitcoin will be captured in a blink with people like you. We don't care about mass adoption this is a high time preference greedy fiat bro hope.\nOnly the ethos counts. Without it Bitcoin is obviously doomed. How do you want a mass adoption to happen without the core value of maximalism being spread widely and endorsed by a maximum number of Bitcoiners ? \n\nSovereignty, privacy, immutability, uncensorability. Those who don't care about these values don't need Bitcoin, so no "mass adoption" you get it ? https://example.com/ 2537 448706 448706.448710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.00668337893921 0 \N \N f 243727316 \N 1 248276707 0 f f \N \N \N \N 448706 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436128 2025-03-13 10:42:26.651 2025-03-29 22:39:49.496 \N I feel you 😔\n\nIt's really hard to accept that most of our family and friends are part of the masses, easily controlled and just trying to live a life free of conflicts.\n\nIt's also difficult to realize that they might be putting our life in danger one day, even worse becoming our enemies.\n\nTo quote Albert Jay Nock:\n> The official class and their intelligentsia will turn up their noses at you and the masses will not even listen. They will all keep on in their own ways until they carry everything down to destruction, and you will probably be lucky if you get out with your life.\n\nhttps://mises.org/library/isaiahs-job\n\nI have personally decided, for my own safety and wellbeing, to keep my interactions with them cordial but limited.\nIt might seem heartless, but we need to fully focus on the remnants.\n\n🤝\n https://example.com/ 1090 434801 434795.434801.436128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.15320888490181 0 \N \N f 454633103 \N 2 191915019 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-20 05:38:13.705 f \N \N \N 0 0 0 0 1 0 0 423037 2025-03-02 22:27:07.971 2025-03-29 22:39:49.497 \N Nicely done. My analysis (inc. territories) is somewhat flawed in that it only looks at posts with over 1k sats. But that’s what is important to me. In these times of unlimited information, for me quality > quantity.\n\nI’m also keen to compare the various metrics on those over time. Your analysis feels well rounded in that respect, in that it’s not looking just at >1k sat posts.\n\nCost to me is irrelevant when posting, it’s all somewhat negligible. I am keen to know where the valuable conversations are happening and where the best and most thoughtful posts are occurring. And to take inspiration from territories seeing success. \n\n~AMA is somewhat skewed for now. It’s going to be very interesting when AMAs start happening inside territories or multiple territories per post.\n\n~booksandarticles, ~econ and ~lightning seem to be in a league of their own at this time for sats, comments and engagement. ~builders profitable but in the chasing pack for engagement. More on that in a post landing any day now. https://example.com/ 10060 422961 422483.422498.422961.423037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.303467364207 0 \N \N f 143293162 \N 1 28536979 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403322 2025-02-14 17:32:19.447 2025-03-29 22:39:49.249 \N I'd recommend quitting entirely. You don't *need* it and it sounds like you can't help but have an unhealthy relationship with it. IMO like similar things, it's an amazing tool, medicine, and recreation, but it should be removed if it's getting in the way of your life.\n\nI've gone through two weed periods in my life and while I did benefit from the perspective shift, during each period I began to suspect it was interfering with my goals. If you're not meeting your goals, you need to change things until you do meet them. Removing routine consumption of a *powerful* medicine that's known to affect motivation, attention, and memory (and differently for everyone which is why you can't trust anyone's "well, it works for me") seems like a natural thing to do.\n\nConsider it an experiment and stop consuming it for 6 months while studying your progress on things that are important to you. For me, after about 8 weeks of ending my last "period," I began making progress on my goals in ways that I hadn't before. Weed made my thinking sloppy and I was stuck thinking rather than doing, [exploring rather than exploiting](https://en.wikipedia.org/wiki/Exploration-exploitation_dilemma). \n\nEveryone that regularly consumes it thinks it's net-good for them (I certainly did). It's worth seriously considering that might not be the case for you and you *cannot* know until you take a long break and measure your experience. https://example.com/ 19138 403219 403219.403322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7416005286341 0 \N \N f 0 \N 0 219210714 0 f f \N \N \N \N 403219 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455448 2025-03-27 02:47:39.007 2025-03-29 22:39:49.25 \N Hi @k00b. James Lavish has agreed to do an AMA on SN. I am going to coordinate a date that works with him. Hope that works for you. Let me know if there is anything I need to do besides coordinating a date and time and ensuring he gets set up on SN. https://example.com/ 10638 455413 455413.455448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6798624286165 0 \N \N f 0 \N 0 2862957 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430904 2025-03-09 13:54:41.045 2025-03-29 22:39:49.25 \N Respectfully this is a false choice and common one. One I held many years ago. Home schooling is about choice, freedom, and control. When your child is educated in the government school you have VERY limited control over what they are taught and trained to believe.\n\nWhen you take responsibility for your children's education you do not have to do all the teaching. Most people shouldn't do this in fact. There are great resources for home schooling parents. In many subjects and for many kids the options are superior to the government options. You choice your curriculum, learning management system, and even your whole approach on education. The choices are very diverse. If you are considering this I encourage you to ask more questions and do more research beyond this simple question.\n\nAlso, remember that in a traditional government school you have one teacher (maybe a sub par teacher at that) is teaching 20-30 kids at once at the same pace with limited time and very little accountability to parents. When you home school you can pick everything and chose the best option for each child.\n\nI hope that helps. https://example.com/ 17109 430903 430892.430895.430898.430902.430903.430904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6153568501492 0 \N \N f 0 \N 0 51492212 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444445 2025-03-19 22:06:23.506 2025-03-29 22:39:49.251 \N ![](https://i.postimg.cc/8cZNd92v/IMG-3459.jpg) https://example.com/ 5175 442191 442191.444445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5118535006301 0 \N \N f 0 \N 0 116398240 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448676 2025-03-22 19:20:20.962 2025-03-29 22:39:49.492 \N > Nothing will change until it becomes normal to buy, or sell things in exchange for Bitcoin.\n\nWith this part I can agree.\n\n> then you are part of the problem.\n\nWith this one, I must disagree. Blaming random people doesn't lead anywhere. If you want adoption and usage you have to create the conditions where using "your" solution is the obvious choice (because it is there and because it is better). https://example.com/ 2681 448349 448349.448676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.834324274862 0 \N \N f 0 \N 0 93878789 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 14:47:50.065 f \N \N \N 0 0 0 0 0 0 0 404117 2025-02-15 15:07:04.192 2025-03-29 22:39:49.493 \N In the UK, we have this thing called a TV license. It's as ridiculous as it sounds. People who watch state TV (BBC) must by law pay £159 / year.\n\nAs you can imagine, not many people cough up the money. The BBC is shit and the law is next to impossible to enforce. So if you're not on the TV license register, the government instead harasses you with angry little letters to try and scare you into paying. I hate these things so much that I ritualistically set fire to them whenever they land in my letter box, which is about every other month.\n\nThe longer you ignore the letters, the angrier they get. The first letter is just kind of stern. By the third letter they're screaming at you in big red capital letters about how you're under surveillance and breaking the law. By the fifth letter they threaten to send a "television inspector" to your address if you still haven't gotten back to them.\n\nThe inspector almost never comes. It's all hot air. But the fact that there is such a thing as a TV inspector in the first place blows my fuckin' mind. This is surely peak BS, right up there with the poor bastards who print the stupid letters out in the first place. https://example.com/ 1697 404051 403996.404051.404117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.03396043894801 0 \N \N f 304140853 \N 2 25444391 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449922 2025-03-23 16:07:29.978 2025-03-29 22:39:49.493 \N Assuming the details in the post and docs accurately describe what the final product will look like, the main difference is that Citrea is verified optimistically using a BitVM program rather than an onchain smart contract, and as such is limited to at-best a 1-of-n security model (where `n` is a permissioned group of arbitrary size) rather than a single honest party security model (as in optimistic rollups, where the single honest party could be anyone, and it is assumed that they can get a fault proof transaction confirmed during a challenge period) or a _trustless_ security model (as in validity rollups, where all rollup txs are cryptographically verified). That said, the developers of almost all rollups on other chains have chosen to ultimately rely on some kind of multisig for security, because their smart contracts can be upgraded to any arbitrary new code using a multisig (often a "committee" of trusted community members, often with no time delay). So assuming this rollup does not choose to insert some trusted multisig into the governance model, that could also be a difference.\n\nOther than those differences the rollup works the same as other zkEVM rollups: it is EVM compatible, it posts its state data to a parent chain (in this case bitcoin), and it inherits the full double-spend resistance and data availability guarantees of bitcoin. https://example.com/ 5455 447870 447870.449922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.503786495797 0 \N \N f 626281140 \N 5 135018863 0 f f \N \N \N \N 447870 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410703 2025-02-20 16:15:43.158 2025-03-29 22:39:49.495 \N I don't have enough time to do all the things I want to do.\n\nWhich is a great problem to have! https://example.com/ 1428 410699 410507.410696.410699.410703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5828530756177 0 \N \N f 294188041 \N 3 128565443 0 f f \N \N \N \N 410507 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435099 2025-03-12 13:11:51.005 2025-03-29 22:39:49.249 \N > When a definition contains a list such as this, the terms within the list must be within the same class.\n\nWho says? Suppose I define the term "mammal" like so:\n\n> The term mammal means any animal with warm blood, vertebrae, milk glands (in females), in utero gestation (in females), and fur\n\nIf someone said "fur must mean something else because everything else in the list is in the class 'things inside the body'" <-- I would think that's a silly statement\n\nIn any list of things, you can always find some principle of distinction by which one of its items isn't in the same class as the others. Therefore not every item in a list has to be in all of the same classes as the others. If this was a requirement, definitions could never contain lists while remaining true. https://example.com/ 21798 434960 434957.434960.435099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.96391370307237 0 \N \N f 0 \N 0 218745996 0 f f \N \N \N \N 434957 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435625 2025-03-12 20:35:33.116 2025-03-29 22:39:49.491 \N My Bitcoin story is really simple. I smoke a lot of cigarettes and started at a really young age. I find the restrictions put on children being able to smoke completely immoral, as well as the taxes.. Being able to operate outside the system in the P2P cigarette market fixes this. Also the price of cigarettes in sats trends down over time so I know that all the sats I get today will buy me more cigarettes in the future https://example.com/ 3409 435226 435226.435625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5251457392456 0 \N \N f 0 \N 0 204155924 0 f f \N \N \N \N 435226 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410737 2025-02-20 16:45:03.931 2025-03-29 22:39:49.493 \N Nunchuk founder here. Thanks for the mention @HardRich !\n\n@k00b hit the nail on the head. It's both true that Nunchuk services are newer relative to Unchained and Casa, and that marketing is hard. We currently don't spend any money on marketing and would rather focus our energy and resources on building an excellent product first.\n\nSo we rely on Bitcoiners like yourself to spread the good word (such as this thread!). We've had really positive feedback since launching our subscription services, and are working on several projects that I think will take things to the next level. \n\nIf you or anyone have feedback on things you'd like to see in Nunchuk, let me know!\n\n(Also if I may add, our inheritance planning feature is the first in the industry that doesn't require KYC.) https://example.com/ 12769 410385 410108.410385.410737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.927368565201263 0 \N \N f 0 \N 0 226633323 0 f f \N \N \N \N 410108 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435886 2025-03-13 04:24:43.74 2025-03-29 22:39:49.494 \N I just went quickly to buy some beers, Just for the sake of this amazing post.\nPaid directly to the shop, wallet to wallet, F2F.\n[![beers-2.jpg](https://imgprxy.stacker.news/8xc2SPNvhVQsTrzI-iNZmklj1s5mppEm_zx8-DtYhS8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvUUNDQlF2U2ovYmVlcnMtMi5qcGc)](https://postimg.cc/Lgd6RCrW)\n[![beers-1-technical.jpg](https://imgprxy.stacker.news/2_x50TJjVJkrjdBkeAJ7vi39Qc8wg9mDCeSTCE9sl9I/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MveXhHRHZucmMvYmVlcnMtMS10ZWNobmljYWwuanBn)](https://postimg.cc/D4qfzQhw) https://example.com/ 7659 435639 435639.435886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.917393535364 0 \N \N f 0 \N 0 235662172 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435189 2025-03-12 14:16:08.627 2025-03-29 22:39:49.495 \N A resource that I found useful would be [Privacy tools](https://www.privacytools.io) and if you have the technical skills [self hosting](https://github.com/awesome-selfhosted/awesome-selfhosted) apps is powerful. A good thing to get started with is obviously a bitcoin node :-) a good second would be something like a private Nextcloud on a VPS so you don't have to rely on Google/Apple cloud.\n\nMy experience so far has been that there is not a singular thing you can turn on for privacy. It's more of an awareness of how we are exploited and mass surveilled by big tech/government in a digital society. There are always things to improve for anyone that cares about privacy, and many things come down to trade offs. https://example.com/ 18068 435149 435046.435132.435149.435189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2862714547785 0 \N \N f 35891794 \N 1 170167128 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 17:22:30.022 f \N \N \N 0 0 0 0 1 0 0 449091 2025-03-23 07:20:54.199 2025-03-29 22:39:49.495 \N > it allegedly turned out LND was not on our side, and had the WEF pulling strings, despite their vehement denial. So, like any responsible pleb, I closed all my channels, removed LND and the whole stack of apps, and gave them the middle finger\n\nOk um...someone made an allegation so you did the "responsible" thing and erased the software you enjoyed? What if I make an allegation that linux is controlled by the wef, are you gonna erase your operating system too? If I allege that the golden gate bridge was funded by the wef are you gonna be "responsible" and jump off it? Seems like a pretty easy way to control you, I'll just watch for whenever you do something I don't like and then I'll allege that the wef wants you to do that\n\nMaybe the next time someone alleges the wef is behind some piece of software you like you'll think twice before uninstalling it. Do a little independent thinking is my recommendation and don't just believe random allegations you find on the internet\n\nThere are two easy ways to control someone: if you find out they always do whatever you say, tell them to do X, and watch them do it. And if you find out they always do the opposite, just tell them not to do X, then watch them do it. https://example.com/ 13198 449022 449016.449022.449091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3183145591788 0 \N \N f 186988339 \N 3 133968652 0 f f \N \N \N \N 449016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402364 2025-02-13 17:42:53.982 2025-03-29 22:39:49.497 \N Hey stackers, sorry for the tardiness, but I wanted to say, I had a great time with the the [Broken Money book club](https://stacker.news/items/274195) on Wednesday. I'm grateful to have had a venue where it was possible to do this and have some really interesting conversation.\n\nI made a [separate post](https://stacker.news/items/275999) with a couple updates, but some regulars read the saloon who might not see that one, so I wanted to call it out here. And to say a special thanks to two generous zappers, one whose generosity was really egregious. You really made my day. https://example.com/ 21136 402105 402105.402364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.7708962975012 0 \N \N f 116854310 \N 1 53864141 0 f f \N \N \N \N 402105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413361 2025-02-23 05:52:33.444 2025-03-29 22:39:49.498 \N Day 193 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 15732 413354 413235.413354.413361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3125488748478 0 \N \N f 201274341 \N 1 80444625 0 f f \N \N \N \N 413235 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3111 2022-10-25 07:30:17.606 2025-03-29 22:39:49.499 \N But at least a small minority of people won't be able to freely print more of it and give it to themselves, their family, and their friends.\n\nSo, yeah, Bitcoin doesn't fix everything but it's still an improvement on the status quo https://example.com/ 617 3106 3061.3066.3104.3106.3111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.12743242965789 0 \N \N f 391686520 \N 2 114447136 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434784 2025-03-12 08:35:51.921 2025-03-29 22:39:49.5 \N Day 164 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 1596 434535 434535.434784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4448936211123 0 \N \N f 5762742 \N 1 63608510 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 2025-03-19 05:17:28.067 f \N \N \N 0 0 0 0 1 0 0 431181 2025-03-09 16:01:47.58 2025-03-29 22:39:49.489 \N Tony is describing a deeper dynamic (in part and in the first paragraph at least). While he's too humble to consider himself such, for stars and rising stars, Twitter-like experiences will always be more engaging and rewarding. Afaict forums are a relatively level playing field meant for "the rest of us" who aren't content watching the stars from the bleachers.\n\nPerhaps conversations have become shallow as a result of there being more of them, which has so many inputs, but I haven't noticed much of an absolute downward change in high quality takes (I'd *guess* the opposite). Indeed, perhaps personalized ranking will allow us each to subjectively see our preferred signal band as noise increases. \n\nStill it won't change that this format favors weak identities just as well as the strong and that's not going to be valuable for everyone and that's okay.\n\n+1 on the excellent and thoughtful feedback https://example.com/ 15978 408230 408230.431181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.02733183906459 0 \N \N f 0 \N 0 107403885 0 f f \N \N \N \N 408230 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434720 2025-03-12 07:31:58.876 2025-03-29 22:39:49.493 \N G’day Stackers. Hope you’re motivated to share your wisdom with the cowboys this week.\n\nAlmost there with my detailed write-up on Uruguay. Was burning the midnight oil last night gathering more resources. Should be ready to publish it here tomorrow. https://example.com/ 959 434498 434498.434720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6511556648828 0 \N \N f 347314851 \N 3 33591350 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 2025-03-19 12:52:05.355 f \N \N \N 0 0 0 0 3 0 0 424153 2025-03-03 21:02:10.838 2025-03-29 22:39:49.495 \N This my story when living in Brisbane in 2017:\n\n* **type of shop your have** : NONE \n\n* **type of commerce** : service provider. I had a domestic cleaning company\n\n* **how was the onboarding process** : At the end of the fiscal year, we sent a letter to our 40 clients telling then that we'll be accepting BTC as payment method and explaining what Bitcoin is, where to buy it, how to send it, etc. From the 40 clients, only 2 asked more questions about this new money. And at the end, only 1 client accepted to pay us with BTC. We were very lucky because it was our biggest client, so it was a great way to do DCA without KYC.\n\n* **what tools / apps you used, in the beginning and later** : At that moment I was using MyCelium wallet and the client was paying us directly from the exchange Cointree.\n\n* **how you improved your use of bitcoin apps** : Now days, if I need to send an invoice I'll be using Phoenix wallet over the Lightning Network. In 2017 I didn't know about it yet.\n\n* **how you consider bitcoin in your accounting (cash or "investment")** : In my mind all the BTC received were an investment; for tax authorities, they didn't know about it.\n\n* **anything you would like to share**: If you are a freelancer or own a small business you have a good opportunity to make your business special, **just accept BTC as a payment method** Not many people will pay you with BTC but the small % of payment received would make a difference for you over time.\n\n**Don't be shy to tell your clients you're a BITCOINER**\n\n\n\n https://example.com/ 16839 424130 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424130.424153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.25813426000261 0 \N \N f 552319733 \N 5 180430095 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 422862 2025-03-02 18:43:21.634 2025-03-29 22:39:49.496 \N Day 3 of posting mining earnings from the day before: 907 sats!\nRunning total: 2,659 sats!\n\n[Yesterday's comment](https://stacker.news/items/359617/r/WeAreAllSatoshi)\n\n https://example.com/ 18678 422587 422587.422862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9741834953828 0 \N \N f 44068365 \N 1 55027857 0 f f \N \N \N \N 422587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451450 2025-03-24 14:54:34.149 2025-03-29 22:39:49.497 \N Having successfully sold something on satscrap and a user of Bisq I think the p2p market place is okay. But I do get some complexity anxiety with injection of nostr. If it is going to be a true marketplace it has to be easy to use and understand. I know Facebook is evil but they make it super easy to buy and sell things on there same with eBay. Satscrap experience was meh. The p2p has a long way to go and I don’t think adding nostr is going to magically make it better https://example.com/ 17237 448912 448802.448912.451450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.337766704870361 0 \N \N f 2309626 \N 1 163898827 0 f f \N \N \N \N 448802 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407209 2025-02-17 20:39:45.55 2025-03-29 22:39:49.497 \N Sneak peak.... the most happy cats\nTerry (mother) and Leia (unfortunately I had also a Luke but died after 2 days, so I remained only with Leia).\n[![cats-stego.jpg](https://imgprxy.stacker.news/IQX99BN2LIpLmVN1qbP8FeUbiB7Wcxx75QjtHEAwzF8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvSHN5Q25zbUMvY2F0cy1zdGVnby5qcGc)](https://postimg.cc/bsp5FPd6)\n\nKira guardian of my beer\n[![Kira-beers.jpg](https://imgprxy.stacker.news/3cpKaqvjSyK3GI7qq5jcSyWV_kgfMgt55HtLQvk122s/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvQmI4dFg5U3cvS2lyYS1iZWVycy5qcGc)](https://postimg.cc/ZvSJMQyr)\n[![Kira-window.jpg](https://imgprxy.stacker.news/syaM1dCZo-r41p5XO1StAeCP6KSkj27tQLyOIC5FGPc/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvTVQzdjZLU1EvS2lyYS13aW5kb3cuanBn)](https://postimg.cc/0Mm8Zvrk)\n\nLeia, taking a sun bath on the balcony\n[![Leia-balcony.jpg](https://imgprxy.stacker.news/Q8zKgGNIw-4bKeTscwG3rXfc-zuSDHSVXU8Ah49Xk9Q/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvVDFaMWI3aDIvTGVpYS1iYWxjb255LmpwZw)](https://postimg.cc/RJLv5Tc2)\n\nSushi (the king of the house, the older one 15 yrs) and Terry sleeping together in the winter\n[![Sushi-Terry.jpg](https://imgprxy.stacker.news/0HHShzrmtcQIJmyZjOuufKwpiGbGthAhYB6i8nRtXE8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvYzFqclBIVHEvU3VzaGktVGVycnkuanBn)](https://postimg.cc/F1yrLh2G)\n\n\n https://example.com/ 19199 407198 406115.407198.407209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3626481225816 0 \N \N f 673774080 \N 4 188138735 0 f f \N \N \N \N 406115 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444482 2025-03-19 23:16:42.763 2025-03-29 22:39:49.498 \N sure, femininity is learned. you find a positive ideal if you look. \nI think women serve beauty uniquely, perhaps I should think more on how it fits into the mold that means femininity. But as soon as you start to define what a woman is, don't women get a little perturbed, no matter what? She wants freedom. She wants to be a contradiction. She wants to be beautiful and powerful. She wants to be weak and strong. https://example.com/ 16954 443652 443372.443652.444482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.32266307653295 0 \N \N f 131574092 \N 1 27850556 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401660 2025-02-13 09:58:00.367 2025-03-29 22:39:49.5 \N Finally we can all follow @grayruby’s posts without being blown up by his comments! ;) https://example.com/ 17172 401651 401651.401660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.52397275364034 0 \N \N f 501315510 \N 5 126393126 0 f f \N \N \N \N 401651 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446298 2025-03-21 03:49:22.443 2025-03-29 22:39:49.5 \N Day 328 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 1354 445639 445639.446298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5450732076591 0 \N \N f 98339053 \N 1 107134288 0 f f \N \N \N \N 445639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410657 2025-02-20 15:33:08.038 2025-03-29 22:39:49.492 \N I love thinking about SN product improvements. You’re no different I see @elvismercury. Really appreciate your style of writing, so whatever we can do to encourage more of it would be awesome. I imagine this is a direct spin-off from [your book club series](https://stacker.news/items/300775), where updates are super frequent and regular at present. Cracking job on making that so interactive and broadening the experience on SN.\n\nRelated Thoughts\n- What I see as SN’s biggest issue myself is the fact that content is quasi-ephemeral. That might seem to be a bit unrelated but fixing it would absolutely necessitate changes to the pricing model you outline.\n- Very rarely does content get rediscovered, so there’s less incentive to revisit and follow-up with additions. You’re in the minority, for now at least.\n\n- I raised the idea of ‘1 week ago’, ‘1 month ago’ anniversary items to appear inside the hot feed, with my post in [the saloon](https://stacker.news/items/311065). To encourage more ongoing discussion & contributions.\n\n- I think you’re strictly thinking about pricing changes but would you also want to see Ui changes? In your mind do chunks always best appear in the same post?\n- There could also be a way to more elegantly link Part 1 and Part 2 as separate posts that are visibility linked in some way in the UI. Like a thread, or a lasso. We’re in the Wild West here, don’t forget.\n- Do you mind sharing with us the direct impact and costs of commenting on your own posts? Has it changed your behaviour at all?\n\n https://example.com/ 20409 410651 410559.410632.410641.410651.410657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1838206482283 0 \N \N f 152228621 \N 1 216967726 0 f f \N \N \N \N 410559 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437558 2025-03-14 15:55:33.938 2025-03-29 22:39:49.492 \N Or maybe images having metadata like [Exif](https://en.wikipedia.org/wiki/Exif) could contribute to leaking PII about OP e.g. location, device used to take the picture, etc.\n\nDo we strip that before persisting to S3?\n\nETA: I think services like imgur strip that data for you, but I am not certain. There's so many image hosting services out there, idk how common this functionality is. https://example.com/ 7097 437553 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553.437558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8016662237048 0 \N \N f 370855132 \N 3 168501761 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435123 2025-03-12 13:37:16.298 2025-03-29 22:39:49.494 \N The biggest regret of my life is buying my current home almost 10 years ago. If I could do it all over again I would stay the heck away from this hellhole. It has been 10 years of everyday regret. The torture of waking up and seeing my mistake around me every day and then coming home from work everyday to my mistake is hell.\n\nThere are so many issues that were hidden from me and I’ve had to sink so much money into this place that I’m trapped here for the foreseeable future - especially with interest rates and the market being what it is right now. Every time I start to save up money for a down payment to get a new place some major disaster happens with this house that wipes everything out: fence collapsed in a storm, trees were rotting and needed to be removed, furnace died in the dead of winter, water softener died and flooded the basement, the hot water heater died, washing machine and dryer died, both garage door openers died, both garage door springs busted, the entire sprinkler system needed to be redone, just to name a few things. The latest was the AC dying this summer. The deck, driveway, and windows all need to be replaced as well but I have no idea how I’m going to come up with the money for any of that anytime soon.\n\nI swear this house must be cursed. There’s a reason the previous owners only lived here 2 years.\n\nEdit: How could I forget about the bats in the attic and the mice getting into the basement constantly? It took almost 9 years to finally get that all sorted out.\n\nEdit 2: My car and my wife’s car are both 15+ years old and having considerable issues but because of all the money we’ve had to sink into the house we’re not sure how we’ll be able to afford even just 1 “new” used car anytime soon. https://example.com/ 11714 435115 435115.435123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.377569236258708 0 \N \N f 0 \N 0 202319951 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 2025-03-19 06:55:46.041 f \N \N \N 0 0 0 0 0 0 0 446745 2025-03-21 12:50:07.967 2025-03-29 22:39:49.495 \N I will try to build a simple stacker.news bot for nostr as a learning exercise. https://example.com/ 12057 446371 446371.446745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.543062961326726 0 \N \N f 789888165 \N 9 172790631 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 433695 2025-03-11 10:17:04.517 2025-03-29 22:39:49.497 \N > what could each individual Fedimint provider offer to potential users to lure them into using their minted tokens\n\n1. The user knows someone from the mint personally. This is central in Obi's view.\n2. The mint performed the trusted setup ceremony correctly and convincingly.\n3. For users that want the mint to keep their private key, geographical proximity because the user will have to go to half of the minters personally. Unfortunately, those users are going to suffer a lot when (maybe if, but most likely when) the regulators crack down on the mint. If the minters are gathering together at regular intervals to receive users who want to restore their keys, cracking down on the mint becomes much easier.\n4. For users willing to manage their private keys themselves, the opposite of geographical proximity. Ideally, one minter in US, one in Europe, one in China, one in Africa etc. Put other OpSec stuff in this category.\n5. Healthy cap policy. If there's no cap, there might occur a situation when the mint holds $1T and hundred criminal organizations are trying to rob it. If there's a cap, there might occur a situation when a user wants to receive $10 but can't because the mint doesn't want to mint anymore. Ideally there should be a cap but the amount of minted tokens should not be close to it.\n6. Stablecoin integration. Taro is mentioned in the article but it's barely started; RGB is already released although nobody understands it. But in principle there could be already stablecoins on RGB and lightning-integrated minted stable tokens. There is also USD-denominated BTC-backed tokens from Kollider but I'm not quite sure about those.\n7. Custom tokens. "The mint has pleasure to announce that at Bob's request we minted 100 BobCoins redeemable from Bob for 1 hour of his work per coin". This is very important for poor people who want to borrow but can't accept the risk of currency volatility (and I don't mean BTC volatility only). Obviously more important for small mints.\n8. Other bells and whistles. AMMs between BTC and stables. Lending. NFTs because why not. Some analogue of ln.cash would be very nice for tipping.\n9. LN providers: the amount and quality of LN providers servicing the mint. It's best if their identity is not known since the mint doesn't have to trust its LN providers; but then it might occur that several LN providers are in fact the same person.\n https://example.com/ 20998 433555 433555.433695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.53556344878816 0 \N \N f 303542617 \N 2 88755080 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 00:41:34.836 f \N \N \N 0 0 0 0 1 0 0 444575 2025-03-20 03:06:43.043 2025-03-29 22:39:49.498 \N Day 181 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 2016 444566 444566.444575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.002049784596 0 \N \N f 394485967 \N 2 30317192 0 f f \N \N \N \N 444566 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407308 2025-02-17 22:29:56.496 2025-03-29 22:39:49.493 \N I do have anxiety now like will I make it in the top 64? \n\nBut it’s all moot to me anyways I’m here to kick start the circular economy. Any sats I do earn go right back to the stackers or my favorite projects on geyser. \n\nI like coming here to help pass time when I’m bored at work or have downtime throughout the day. Also sn prevents me from doom scrolling on damus or X. \n\nI like seeing what people are posting and give them a zap because I am addicted to zapping it’s truly amazing in 2024 with the tap of my thumb I’m sending money to strangers with no middle man. No bank. No PayPal! I absolutely love it \n\nRewards or not ill be here zapping until I run out of sats or LN has a zero day bug and the network breaks\n\n https://example.com/ 733 407304 407290.407301.407304.407308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7823483621792 0 \N \N f 15539061 \N 2 124761380 0 f f \N \N \N \N 407290 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3683 2022-11-08 20:42:36.892 2025-03-29 22:39:49.494 \N LFG!

 \n\nS/O to @k00b for helping me plan this out and put it together! \n\nMy original idea for bounties was a bit more regulated and complex (escrowing bounties, requiring community engagement to determine the winner of the bounty, etc) but we whittled it down to being simple, open, and permissionless.

 \n\nStill there’s some game theory to figure out and some vulnerability to sybil attacks with this first implementation so I would love to hear people’s thoughts on how to mitigate that in the future without being too heavy handed. https://example.com/ 15103 3682 3674.3677.3679.3681.3682.3683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8707075413854 0 \N \N f 429789510 \N 3 165342141 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436064 2025-03-13 09:30:03.493 2025-03-29 22:39:49.494 \N Careful what you wish for. As @benthecarman said in this thread, it's really miles beyond any other implementation. I don't like any of this as much as the next guy. But as a developer building custom lightning solutions for a living, it really fucking sucks to build on anything not LND unless you're so expert that you can manage LDK and build your own node implementation with it, but that's not a walk in the park either. \n\nRunning CLN is one thing if you can figure out (and really test your backups after reading the ~50 page document on backup procedures). Developing on it is a different story. I'm working on a project just using 6 or 7 API calls and none of that shit even works and the lack of support or care from the couple people that kind of work on it is frustrating enough to question "well then why would I even build on it". It'll cost [millions of dollars](https://bitcoinmagazine.com/business/breez-raises-4-5-million-in-fundraising-round) for a serious project to switch to CLN. It's best at that point to hire experts to build your own impl on LDK at that point.\n\nI don't want to hear about people's hobby projects building on hobby CLN, or someone that used CLN to open a few channels that barely do any routing. Try doing something serious. Ask ZFR how it ended up for him and if he even got his funds out of his channels correctly... https://example.com/ 19655 436056 436028.436029.436045.436052.436056.436064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.360139433438142 0 \N \N f 386472343 \N 2 90546496 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 02:58:15.972 f \N \N \N 0 0 0 0 1 0 0 424382 2025-03-04 03:17:56.869 2025-03-29 22:39:49.494 \N You are very wrong, Bitcoin maximalism is simply Newton's Third Law in its finest:\n**for every action there is a reaction**\n\nBitcoin maximalism is only a self-defence mechanism against: **fragmentation**.\nBecause fragmentation means that **Bitcoin cannot fulfill the social role of money**\n\nAnd even our "enemy" i.e. Bank for International Settlements lays the cards on the table:\n\n*"**Fragmentation** means that crypto [i.e. Bitcoin] cannot fulfil the social role of money."*\nhttps://www.bis.org/publ/bisbull56.pdf\n\nBe your own bank regardless if you are far left or right.\nAnd avoid your own bank fragmentation. https://example.com/ 18743 424099 423384.423591.423593.423595.423601.424009.424015.424037.424049.424082.424094.424099.424382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.69117317152993 0 \N \N f 584461724 \N 4 117795069 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420987 2025-03-01 10:25:10.443 2025-03-29 22:39:49.499 \N I get your point, but this seems to me one of the (rare) differences where "technically possible but empirically infeasible" vs "technically impossible" matters a lot. \n\nIt's super hard to run your own email server, but not impossible. You can imagine a bunch of people getting sufficiently pissed off by the current state of affairs that they start confederating and forming pacts to do email relay with each other. The bar to enough people (not just nerds) caring about this is high, for sure. But it could happen. The reason it hasn't happened is that 99% of people don't give a shit. \n\nMaybe that's what I'm saying: whatever the tech, the "how many people give a shit" problem remains, and there is no technical solution to that problem. What you _can_ do (given the revealed preferences I described) is make it so that, once that threshold is reached, you have designed so that there is some recourse.\n\nAlthough now that I say that, I guess the devil in the details. If you need half the globe's population to give a shit, maybe that is essentially the same as "impossible." So maybe then you're in a pickle? Design to avoid capture, where the "give a shit number" is low enough, but also keeping in mind that the "give a shit number" is directly correlated w/ p(adoption)? Low GASN (so it doesn't require that many people to care in order to rebel under tyranny) = low p(adoption) (because the precautions make the system so annoying and ornate to use that the liklihood of critical mass is lower)?\n\nSo: can the "contested middle" nostr solutions you imagine survive that equation? https://example.com/ 782 420635 420635.420987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6622535186524 0 \N \N f 779629541 \N 6 245963229 0 f f \N \N \N \N 420635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410601 2025-02-20 15:04:57.996 2025-03-29 22:39:49.501 \N Im going to push back here. What if Twitter is looking for a revenue source to power their servers and pay their programmers to keep the application running? \n\nAre we not supposed to pay for software that we use and find viable? \n\nAs someone who works in FOSS and understands first hand how hard it is to monetize something people think should be free should have more consideration about the choices Twitter is making to charge its users for access to his (Musk’s) application. \n\nI think this post falls into the China fallacy that WeChat controls every aspect of life of the common person in China. Most of China is still not developed. Sure those living in cities and connected to the web are forced to deal with WeChat \n\nBut how is it different than USA? Citizens are forced to get a bank account and establish a credit history to buy a home. We have credit bureaus that surveil every time you miss a payment and adds to their database and you have no way of stopping them. \n\nI recognize the goal here but people really need to get out of this free for me mentality and be willing to pay for the services you receive. https://example.com/ 10731 410237 410237.410601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1404705265548 0 \N \N f 304715141 \N 2 177070271 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1906 2022-09-28 14:36:57.817 2025-03-29 22:39:49.493 \N You forgot about that time LL deployed keysend payments with no spec. C-Lightning devs had to reverse engineer the feature in order to write the spec and a compatible impl.\n\nLabs was made in the Silicon Valley mold: raise a shitload of VC money, hire the biggest and best engineering team, race to build the best developer tools, lock out the competition, and capture the market. Once you have captured the market (they have) leverage your monopoly power to squeeze out other impls and expand your monopoly. Embrace, extend, extinguish.\n\nIf you are a lightning dev ask yourself if you want the future of decentralized payments to go the same way as so many other markets that have been captured with this model: email service provider, internet search, web browser, video sharing, etc.\n\nMonopolies are bad for free markets but good for monopolists. Which one do you want to support? https://example.com/ 8004 1905 1903.1904.1905.1906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3396649833317 0 \N \N f 224532682 \N 3 222311339 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444158 2025-03-19 17:40:02.912 2025-03-29 22:39:49.494 \N Do my wife and kids count as friends? If not, rarely. We have one other couple that we see as friends occasionally and I usually go back to the city to catch a Jays game with friends once or twice a year. Otherwise I mostly only hang out with my family and my friends on SN and I like it that way. https://example.com/ 9438 443372 443372.444158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5063145381565 0 \N \N f 103603957 \N 1 128303607 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441502 2025-03-18 04:03:22.847 2025-03-29 22:39:49.496 \N `ᕦ(ò_óˇ)` Day 5 of exercising everyday before the saloon opens\n\nhttps://imgprxy.stacker.news/tghN45w_u5-QvDsGT-bRzKOZb5bYteaVLvOu2FcvbBU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvM1IzTnZkN2cvc2lnbmFsLTIwMjMtMDktMjAtMTIzMjA0LmpwZw\n\nOh, oh, I got late with posting this. Got too distracted with notifications and the [Pay It Forward Initiative](https://stacker.news/items/258853) and then some more notifications.\n\nI went for a run today. It took me 31:37 to run roughly 5km.\n\nIn German, we actually call it "joggen" not "rennen". I looked up if there is a better translation than "run" (since you don't really run if you try to "run" a long distance or for a long period of time). There is also "to jog" in English. But it feels like this is not used much? Is this more like a trap where you can notice if people use "to jog" that English is not their mother tongue?\n\nAnyway. When I run, I don't try to run for a specific period of time. I try to run a specific route (with a specific distance) with checkpoints in mind.\n\nI do this because I think it makes it easier to "not cheat" by just running very slowly. Anyone can "run" 30min+ if you just walk. Running a specific distance is therefore imo a good benchmark. This way, you can also make a competition out of this by measuring your time.\n\nThis always brings me to this question: What is the fastest way to travel a specific distance, therefore optimizing for least time? And what is the most efficient way to travel a specific distance; optimizing for least energy expended?\n\nFor example, if we keep the distance fixed, we can expend energy to travel the same distance in less time.\n\nBut when we start to target long enough distances (for example, 10km), it becomes obvious that we can't expend maximum energy all the time since we will get too exhausted. And then we will probably be a lot slower since we still have to travel a long distance even after all our energy is already depleted.\n\nSo what is the optimal speed for least energy expenditure? And at which point do you start to run as fast as you can to achieve your fastest time? https://example.com/ 6717 441496 441238.441496.441502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.65641801647723 0 \N \N f 19491964 \N 1 90507991 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434702 2025-03-12 07:14:22.377 2025-03-29 22:39:49.496 \N [![force-strong.gif](https://imgprxy.stacker.news/cKch7p6YIzuV0NE26gpvd2MSGW4PmrZkab4g7mmuI7k/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvRnNWOXhaTDAvZm9yY2Utc3Ryb25nLmdpZg)](https://postimg.cc/3dW5829w) https://example.com/ 20182 434693 434693.434702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2286660701724 0 \N \N f 222277886 \N 1 103962057 0 f f \N \N \N \N 434693 \N 0 0 \N \N f \N 2025-03-19 01:40:01.818 f \N \N \N 0 0 0 0 1 0 0 408075 2025-02-18 14:58:56.704 2025-03-29 22:39:49.497 \N Is there a circuit breaker? Just say bitcoin were to drop by 50% overnight, or double in price overnight, is there something like a circuit breaker that kicks in like in other stocks? https://example.com/ 2437 407607 407607.408075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.73767801192999 0 \N \N f 168560181 \N 1 129151601 0 f f \N \N \N \N 407607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435376 2025-03-12 16:28:23.304 2025-03-29 22:39:49.498 \N Deep expertise and artisans \nExamples:\nHouses that last more than 100 years (have a friend in Switzerland who lives in a house older than the USA) \nTutors (learn at your pace with a human expert, who can help you fall in love with the subject because they understand you well)\nPeople who can create family heirlooms (Clocks, Sculptures, Orchards, Oil paintings of the family) https://example.com/ 7558 435375 435375.435376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5910828994038 0 \N \N f 108649457 \N 1 145399252 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N 2025-03-19 10:19:23.559 f \N \N \N 0 0 0 0 1 0 0 427810 2025-03-06 16:45:12.014 2025-03-29 22:39:49.498 \N Not to mention that Tether's operating costs are likely far cheaper than a typical bank. Holders of USDT aren't even expecting those interest rates to be passed onto them.\n\nI don't use USDT nor would I recommend it, but I have to admit they have a neat business model. https://example.com/ 9084 427760 427251.427760.427810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3457702137698 0 \N \N f 131276682 \N 2 154716397 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424025 2025-03-03 19:33:43.398 2025-03-29 22:39:49.5 \N ![](https://www.zapread.com/i/9OX) https://example.com/ 20187 423917 423917.424025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.22336166155269 0 \N \N f 486950798 \N 3 23270630 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436481 2025-03-13 15:25:50.476 2025-03-29 22:39:49.5 \N Economic doomers are boring to listen to. https://example.com/ 9184 436475 436466.436475.436481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.576020724384 0 \N \N f 245107382 \N 2 162859632 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 2025-03-20 11:39:45.689 f \N \N \N 0 0 0 0 1 0 0 454713 2025-03-26 15:04:11.828 2025-03-29 22:39:49.501 \N I read ''East of Eden'' by John Steinbeck again after 20 years and it had the same fascinating atmosphere when I read it the first time. It's a 'must' read, esp. for Americans https://example.com/ 21064 454701 454701.454713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8687827353703 0 \N \N f 368889903 \N 2 25926337 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423811 2025-03-03 16:09:30.1 2025-03-29 22:39:49.495 \N - Territory Analytics: I want to know more about what happens in any given territory with charts and data. Visitors, posts, comments, zaps, and a lot of other data all visualized in a nice clean chart. Something like "Top territories by post but all of the data in a chart instead of just the home feed filters: https://stacker.news/top/territories/forever\n\n- Boost Analytics: Impressions, click throughs, etc. How much value is someone actually getting when they boost if they don't get analytics. \n\n- Territory "Pay To Comment" fee minimum should be set by territory founder. I think 1 sat is too low. \n\n- Paywall Each Username: As a territory founder, I want to be able to paywall specific users instead of outlawing them. I want to paywall them out of my territory so they can always post but they have to pay more than others so I can benefit from being attacked by their spam or low-quality posts. \n\n For example: If Alice acts well but Bob is a spammer, I want to be able to keep Alice post fee as the default but increase Bob's pay to post fee to deter his spammy posts. If he continues to spam, I keep raising fees until it's too expensive for him to post and now I was paid to defend my territory.\n\n- Make it easy to cross post both manually as well as seamless.\n\n- Sub-Territories: Sub-territories are going to be much more important as soon as we can cross post. When I share a bitcoin movie, I want to be able to share it in ~bitcoin and ~movies and pay both posting fees. \n\n- Pay to post fee set manually in each sub-territory. https://example.com/ 9242 423750 423750.423811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5434984688047 0 \N \N f 604040030 \N 4 224562326 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2772 2022-10-19 21:11:06.481 2025-03-29 22:39:49.497 \N tldr this is why it's recommended to wait at least 6 confirmations. 2 block splits are pretty rare afaik but have likely happened before. 1 block splits are more common. It's rare but bitcoin's design anticipates these splits and deals with them.\n\nSome miners (A) were oblivious to (or ignoring) the substantial progress of other miners (B) for a period of time. If your node was only getting blocks originating from miners in (A), you might've accepted a payment that was spent again (ie double spent) on (B)'s chain. Meaning, its possible the payment you received on chain (A) is not valid from the POV of Bitcoin which is following chain (B) because it has more work than chain (A).\n\nThe page lists double spent transactions at the bottom which are probably mostly rbf'd txs. https://example.com/ 1720 2770 2751.2770.2772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.373060063676505 0 \N \N f 0 \N 0 173941395 0 f f \N \N \N \N 2751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434551 2025-03-12 02:44:24.374 2025-03-29 22:39:49.499 \N Similar to this but slightly different.\n\nWe must tax all bitcoin holdings to help pay off the national debt. It is an "emergency" because we are in a debt spiral and these lazy bitcoiners made all this wealth by just sitting in their mom's basement. They are a smaller enough minority that the public can get behind it.\n\n https://example.com/ 19689 434516 434278.434298.434310.434516.434551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5485641157217 0 \N \N f 122217232 \N 1 1974946 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 21:06:25.824 f \N \N \N 0 0 0 0 1 0 0 458368 2025-03-29 08:25:37.102 2025-03-29 22:39:49.5 \N I've been using nostr via Iris or Snort as a Twitter alternative. I find it slow and clunky. So I've been using it less. I'm interested in what others are building on nostr, but I'm seeing these same issues. https://example.com/ 1638 454691 454525.454535.454668.454691.458368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8822290849013 0 \N \N f 549273205 \N 5 63076874 0 f f \N \N \N \N 454525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455665 2025-03-27 08:55:27.26 2025-03-29 22:39:49.501 \N The rewards lately have been unbelievable https://example.com/ 9307 455650 455649.455650.455665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3238670851028 0 \N \N f 1141941467 \N 6 22891488 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435373 2025-03-12 16:26:27.308 2025-03-29 22:39:49.503 \N **During World War II, the allies had a plan to build an aircraft carrier made of ice.**\n\n![image](https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Habakukk_aircraft_02.jpg/480px-Habakukk_aircraft_02.jpg)\n\n----\n\n> Project Habakkuk or Habbakuk (spelling varies) was a plan by the British during the Second World War to construct an aircraft carrier out of pykrete, a mixture of wood pulp and ice, for use against German U-boats in the mid-Atlantic, which were beyond the flight range of land-based planes at that time. The plan was to create what would have been the largest ship ever at 600 metres (1,969 ft) long, which would have been much bigger than even USS Enterprise, the largest naval vessel ever, at 342 metres (1,122 ft) long. The idea came from Geoffrey Pyke, who worked for Combined Operations Headquarters. After promising scale tests and the creation of a prototype on Patricia Lake, Jasper National Park, in Alberta, Canada, the project was shelved due to rising costs, added requirements, and the availability of longer-range aircraft and escort carriers which closed the Mid-Atlantic gap that the project was intended to address.\n>\n> https://en.wikipedia.org/wiki/Project_Habakkuk https://example.com/ 9352 435368 435359.435368.435373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2088278326832 0 \N \N f 59059619 \N 1 85850145 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 2025-03-19 09:53:39.2 f \N \N \N 0 0 0 0 1 0 0 200762 2024-07-16 12:05:56.968 2025-03-29 22:39:49.737 \N FYI @k00b I just found a bug after rebasing on master today:\n\nhttps://github.com/stackernews/stacker.news/blob/master/components/image.js#L92\n\nThis is not the default export, so https://github.com/stackernews/stacker.news/blob/master/components/item-full.js#L6 needs to either use destructuring, or the component needs to become the default export.\n\nThis caused rendering errors when viewing items locally\n\nI'd open a bug but this feels more efficient in this case https://example.com/ 20636 200669 200669.200762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2143926278338 0 \N \N f 113862814 \N 2 27852499 0 f f \N \N \N \N 200669 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436100 2025-03-13 10:16:36.712 2025-03-29 22:39:49.739 \N Hey, creator here! Happy to answer any questions.\n\nYes, today this is (essentially) private hashkey-lookups. Supporting range or batch queries (for example, to fetch data on all the addresses in your wallet) is something we are still working on.\n\nWe've had a few people suggest doing something like "private RPC". Do you know what metadata in particular (which RPC calls) is sensitive? Is the idea that miners and other full node operators would like to hide what blocks they look at etc? Or is it more for light clients that want to hide metadata about what they look at? Would people be willing to pay for a "private" (via homomorphic encryption) RPC endpoint? https://example.com/ 7668 436028 436028.436100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.34480851341104 0 \N \N f 786816500 \N 6 203524530 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 10:01:53.317 f \N \N \N 0 0 0 0 2 0 0 446884 2025-03-21 14:16:20.545 2025-03-29 22:39:49.495 \N This is a great post and an important issue to dig into.\n\nHere's an attempt to steelman the degrowth people, who overlap greatly with the deceleration people -- I don't think they can reasonably be treated separately, given the forces at play. Note that this isn't a definitive steelman, because I think this is a big tent group. But it's one particular type of steelman.\n\n_The capitalist system, whose most foundational (or perhaps only) axiom is that profit must be produced above all else, is doing great harm to the world because its basis in economic calculation renders invisible things that are non-economic, or that poorly fit into a property rights paradigm._\n\n_For instance, when a beautiful drive has been ruined for hundreds of millions of person-hours, this loss is unseen. What is seen is the advertising revenue. The suffering of billions of creatures in the factory farm system is also unseen -- it's worth nothing. The only relevant factor to the system is the profit that can be realized by selling chickens. The turmoil that climate change will wreak on billions of people, most of them poor, is likewise irrelevant. Even property ownership, in this case, won't protect their interests._\n\n_For all these reasons, the system must be reformed or changed; since this system is a natural expression of the pursuit of profit and growth, and an expression of technology, we need a new set of foundational assumptions, and we need to turn back the dial on the state of civilization, including its attitudes toward growth and technology._ https://example.com/ 21369 446313 446313.446884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1922521696837 0 \N \N f 1055137208 \N 8 61743559 0 f f \N \N \N \N 446313 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447123 2025-03-21 16:23:19.34 2025-03-29 22:39:49.495 \N I don't think this is quite using the Liquidity Ads protocol yet, but i know t-bast and the rest of the team at ACINQ are working towards having it implemented soon.\n\nOne of the benefits of using liquidity ads for this (vs the current launch which uses a proprietary, ACINQ only design) is that it would open up Phoenix users to a wider market than just being able to buy inbound from ACINQ.\n\nImagine a lightning wallet where each channel is with a different LSP. When you send or receive payments, your wallet/the network automatically figures out the best and cheapest way to make use of the available liquidity from a variety of LSP networks.\n\nNow that's an open standard for payment rails! https://example.com/ 616 447102 445518.445696.445701.445709.447001.447050.447102.447123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.412904926707 0 \N \N f 231750962 \N 2 106448606 0 f f \N \N \N \N 445518 \N 0 0 \N \N f \N 2025-03-28 11:13:05.659 f \N \N \N 0 0 0 0 1 0 0 1823 2022-09-26 14:02:22.149 2025-03-29 22:39:49.497 \N People in the "West" don't have a spine anymore. I have become convinced of that since the "pandemic" fiasco. They are going to get royally screwed, and they will be happy.\n\n"But I cannot spend bitcoin because it's a TaXabLE EvEnT." Well, if you are so scared of paying for a coffee with bitcoin from your non-KYC'd UTXOs (which you should have already), what are you going to do when/if the government bans bitcoin?\n\nOn the other hand, I expect that with persistent two- or three-digit inflation, the masses will quickly overcome that "moral/psychological" barrier you mention. But do what you have to do, regardless of what the masses think or do. Don't wait for the masses. https://example.com/ 17209 1816 1816.1823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.82045351656248 0 \N \N f 216977316 \N 1 237397605 0 f f \N \N \N \N 1816 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436140 2025-03-13 10:49:42.727 2025-03-29 22:39:49.497 \N I came of age during the 1970's and remember that as being a challenging time, but also one of great innovation. Many of the tools that are foundational to today's tech started to spread then (e.g. Unix, ethernet, etc.). My hope is that this economic downturn brings the same type of focus and innovation, and that most of that innovation happens in the Bitcoin space. Judging from the quality and passion of the folks I've encountered in this space thus far, I think the chances are pretty good. https://example.com/ 6741 436081 436081.436140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2051723199212 0 \N \N f 0 \N 0 68674588 0 f f \N \N \N \N 436081 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454535 2025-03-26 13:27:18.53 2025-03-29 22:39:49.498 \N I think the issue was that our load balancer wasn't passing the user's IP to the relay properly so it thought all users had the same IP. Should be resolved now.\n\nAlso yes we are open source and our NWC implementation is here: https://github.com/coinos/coinos-server/blob/master/lib/nwc.ts https://example.com/ 1769 454525 454525.454535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.45368255114611 0 \N \N f 652345222 \N 8 224738116 0 f f \N \N \N \N 454525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443625 2025-03-19 12:45:48.47 2025-03-29 22:39:49.499 \N @TonyGiorgio said the quiet part out loud - "For one, I've fallen out of love for Bitcoin and the industry."\n\nits something i've been hearing from more and more people and feeling myself a lot. our industry has lost itself a bit and people are slowly but surely leaving it https://example.com/ 21184 443617 443617.443625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.44436757693121 0 \N \N f 121103743 \N 1 226253989 0 f f \N \N \N \N 443617 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416991 2025-02-26 00:52:07.325 2025-03-29 22:39:49.499 \N I will try to get it done before the weekend. Life’s gotten busy lately :) https://example.com/ 9669 416382 416056.416366.416382.416991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4282915679453 0 \N \N f 504769416 \N 3 201688205 0 f f \N \N \N \N 416056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435896 2025-03-13 04:37:16.593 2025-03-29 22:39:49.5 \N Lyn covers the usual ground about how commodity money acquires its value. The story is that it starts as a collectible (cowrie shells is a famous example) that people value for aesthetic reasons; or perhaps they use a different commodity (e.g., wheat or tobacco) because people have need of those things, though those types of commodities also have their drawbacks, as she discusses. Eventually, the thing acquires an additional _monetary premium_ on top of its commodity value.\n\nIn philosophical language, you would say that the value of the cowrie shell is [grounded in](https://en.wikipedia.org/wiki/Grounding_(metaphysics)) its aesthetic appeal. The satisfaction you get bc something makes pretty jewelry, or because you can smoke or eat it, is the foundation that allows it to eventually take on a monetary premium. In terms more familiar to most bitcoiners, grounding is what Mises was talking about with his [regression theorem](https://www.aier.org/article/the-regression-theorem-summary/). (Although note that many Austrians got wound around the axle whether btc could have value bc it [violated the regression theorem.](https://www.aier.org/article/misess-regression-theorem-bitcoin-and-subjective-value-theory/)).\n\nIt makes sense to care very deeply about this initial process of monetization when the idea of money is new. But these days, we're obviously familiar with the concept of money. And practically speaking, this new money (btc) is _grounded in_ an older kind of money (fiat) that happens when one is exchanged for the other. But this has always seemed precarious to me -- it's relatively easy for the government to squash formal exchange at scale. Not entirely, but to turn the fire hose off.\n\nGiven bitcoin's overwhelming grounding in fiat at this point of time, and its novelty and foreignness, what would it mean for the torrent to become a trickle? https://example.com/ 3717 434761 433828.434475.434667.434747.434761.435896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8556642939317 0 \N \N f 0 \N 0 22459816 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 446369 2025-03-21 06:09:48.576 2025-03-29 22:39:49.501 \N Bringing the world's first bitcoin reward plugins to platforms like Shopify with Joltz!\n\nSee it in action! 🤙 https://twitter.com/MrSatoshiStore/status/1640517602262011906?s=20 https://example.com/ 13174 446059 446016.446059.446369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8442599749191 0 \N \N f 45728182 \N 1 79615620 0 f f \N \N \N \N 446016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428739 2025-03-07 14:56:50.711 2025-03-29 22:39:49.501 \N Something that's been on my mind a lot w/ Mutiny has been the separation of wallets and liquidity. As in, specialize in one, not both. Some of the early wallets like Breez pretty much had to specialize in both and are in a good position to keep having that vertical integration, but do you guys see the shift as well as the network becomes more mature? Providing a great wallet is a vastly different skill than having and deploying liquidity. https://example.com/ 12277 428728 427718.428104.428728.428739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.97101204376278 0 \N \N f 162892578 \N 1 22735072 0 f f \N \N \N \N 427718 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410681 2025-02-20 15:52:56.438 2025-03-29 22:39:49.501 \N Technically, yes. But depends how many hops back you or exchanges look. I believe rule of thumb for Coinbase (the co.) was 5 transactions back? \nAlso worth mentioning utxo management, if your p2p bought coin was mixed then assume the entire wallet is unless youve already done good labels on your utxos and could pinpoint it exacrly.\n But bro i wouldnt worry about it. If youre buying from peers you know where we are headed. https://example.com/ 1890 410671 410249.410671.410681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3959599927936 0 \N \N f 113506784 \N 1 168891565 0 f f \N \N \N \N 410249 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404445 2025-02-15 21:59:53.323 2025-03-29 22:39:49.496 \N @kr when an interview on your podcast with @justin_shocknet about his not very known [new project](https://stacker.news/items/328510) and also talking about another of his project - lightning.video ? https://example.com/ 20377 404368 404114.404368.404445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8500877524658 0 \N \N f 222777939 \N 1 112025030 0 f f \N \N \N \N 404114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450019 2025-03-23 17:42:06.091 2025-03-29 22:39:49.497 \N Great write-up to showcase both innovations and challenges.\n——\n\n*Key Highlights*\n- The majority of Lightning users today utilize custodial solutions because they are convenient.\n- Splicing will allow users and service providers to abstract away the difference between Lightning and on-chain bitcoin (the user need not notice a difference).\n- Lightning Service Providers (LSPs) will serve as a portal for end-users to access Lightning.\n- Technical developments on the near horizon could increase the privacy of all Lightning users without users having to take any additional actions.\n- There is much to be excited about in Lightning; all of the future-state projections in this article were informed by solutions being worked on today. The more developers and entrepreneurs focus on optimizing user experience, the more participants and capital joins the network, and the better everyone’s experience gets. \n\nTLDR…get building! Lightning is going to flourish.\n https://example.com/ 18116 450008 447870.449922.450006.450008.450019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.92156694480483 0 \N \N f 281420875 \N 2 177808644 0 f f \N \N \N \N 447870 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416366 2025-02-25 15:05:10.609 2025-03-29 22:39:49.498 \N Still trying to teach myself more about nixos operating system, so I can follow in @niftyne's footsteps. https://example.com/ 20225 416056 416056.416366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.49701301402967 0 \N \N f 904215525 \N 5 177138954 0 f f \N \N \N \N 416056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 429725 2025-03-08 14:49:05.509 2025-03-29 22:39:49.501 \N I just talk politics with my daughter https://example.com/ 13406 429258 428318.428382.428674.429258.429725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5812725566774 0 \N \N f 324950135 \N 3 68412674 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407218 2025-02-17 20:44:07.413 2025-03-29 22:39:49.502 \N > Peter Todd made a post on BitcoinTalk, shortly before Satoshi disappeared, seeming to complete Satoshi's thoughts from an earlier post.\n\nGreg Maxwell made a really good point this morning regarding that:\n\n"Also, at the time petertodd's account was named 'retep' and didn't have any immediately obvious connection to his identity. If there had been a slipup he could have just abandoned the account and certainly not later had it renamed to his legal name!"\n-https://news.ycombinator.com/item?id=41783503#41784045\n\n> A chat leak in which Peter Todd allegedly claims to "know more about sacrificing Bitcoin than anyone else", or something to that effect. The implication is that if he's Satoshi and he burned his keys, he'd know more than anyone else about sacrificing Bitcoin.\n\nUtter nonsense. I was just talking about proof-of-sacrifice, a cryptographic technique used in things like Joinmarket: https://github.com/JoinMarket-Org/joinmarket-clientserver/blob/master/docs/fidelity-bonds.md\n\n> Satoshi's posting history allegedly follows a school-year type pattern, more active during the summer and less active during school semesters. Peter Todd would have been in school during those years.\n\nThat sure narrows it down to what... 1 billion people? :D https://example.com/ 18956 404393 404393.407218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9759666246105 0 \N \N f 50681930 \N 1 181274336 0 f f \N \N \N \N 404393 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416780 2025-02-25 20:53:12.111 2025-03-29 22:39:49.503 \N https://imgprxy.stacker.news/Y1v8T-pLTm6J4iJtNZOfQwYGTMzdHTxgBbBxjfkhaHE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9Md2RiWDAwLmdpZg https://example.com/ 17944 416768 416768.416780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.71339955321209 0 \N \N f 212856449 \N 2 180613577 0 f f \N \N \N \N 416768 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427966 2025-03-06 18:26:25.432 2025-03-29 22:39:49.504 \N "Fair" is whatever I part with willingly. Remove the threat of violence and ask for people's money nicely and then we'll see what everyone thinks is fair. https://example.com/ 11153 427934 427934.427966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4902110410374 0 \N \N f 73159891 \N 2 65080297 0 f f \N \N \N \N 427934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424049 2025-03-03 19:52:36.539 2025-03-29 22:39:49.741 \N Also, notice how the program counter counts to 10 and then jumps back to 2? That's called a "JMP" command or sometimes a Loop\n\n"But I thought bitcoin doesn't have loops!"\n\nWell, uh, you see life, uh...finds a way\n\n![](https://static.wikia.nocookie.net/jurassicpark/images/c/c6/JP-IanMalcolm.jpg) https://example.com/ 8245 424037 423384.423591.423593.423595.423601.424009.424015.424037.424049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.30684432850884 0 \N \N f 1222591037 \N 8 148557569 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434030 2025-03-11 15:15:00.097 2025-03-29 22:39:49.748 \N I like the Temple fact. It goes way further back than Rome.\nJesus threw out the money changers from the temple. Because they changed sound money for currency, for promissory notes. This way they indebted everyone.\nFact 4 - In hebrew sin and debt are the same word. Jesus Christ liberated everyone from debts. https://example.com/ 4973 433934 433934.434030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8551746322521 0 \N \N f 64436503 \N 2 12430381 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N 2025-03-18 23:01:04.386 f \N \N \N 0 0 0 0 1 0 0 423976 2025-03-03 18:49:50.529 2025-03-29 22:39:49.749 \N Just finished first Sphinx bounty writing [command line script to split up video using ffmpeg](https://github.com/zhangjoe99/CustomWhisper/issues/5). Now working on second adding [tribe member mentions to Sphinx](https://github.com/stakwork/sphinx-kotlin/pull/531). https://example.com/ 15075 423974 423928.423974.423976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4153071424351 0 \N \N f 48163469 \N 1 96206686 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456502 2025-03-27 16:23:36.443 2025-03-29 22:39:49.989 \N Yo! \n\nCashu is a new Chaumian Ecash system with Bitcoin Lightning capabilities. Very briefly summarized, Cashu a way to improve the privacy in Bitcoin custody by using Chaumian Ecash. \n\nA classical custodial wallet provider (for example: Wallet of Satoshi) knows how much money you have and who you're transacting with. With Cashu, they don't.\n\nThe purpose of @CashuBTC is not only to be a simple-to-use wallet and mint that can be run by everyone (we're working on that right now) but to become a simple library that can be integrated into existing Bitcoin apps.\n\nThe long-term mission is to blind all custodians.\n\n- Follow the Cashu [Twitter](https://twitter.com/CashuBTC) account for updates\n- Here is the [Github repo](https://github.com/callebtc/cashu)\n- There is some work on a [Javascript client](https://github.com/motorina0/cashu-js-wallet) to implement it on websites.\n- Ben Arc has [presented](https://twitter.com/arcbtc/status/1570747556883484673) how it could look like integrated into LNbits.\n- There has been a Cashu torch going on Twitter, here is the [current tip](https://twitter.com/DataPorterHeidi/status/1573329342511325185).\n https://example.com/ 5128 456495 456495.456502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.00680027534997407 0 \N \N f 0 \N 0 162989498 0 f f \N \N \N \N 456495 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402590 2025-02-13 20:51:50.704 2025-03-29 22:39:49.496 \N This is honestly a pretty good summary of the similarities between chaumian ecash tokens and gift cards.\n\nMy perspective on this is that ecash tokens have some crucial differences with gift cards:\n\n1. eCash as implemented by cashu or fedi is several orders of magnitude more private than gift cards, because nobody is going face-to-face with a merchant to spend the card or being caught from surveillance cameras. For online usage, most of the times an account is required to redeem gift cards, so the privacy problem still exists (also because the majority of merchants don't let you refill an account with gift cards if you don't put in an identifiable payment method like a credit card or bank account [at least this happens where I live]). \n2. A mint can either permit blindly agree to all the requests to the server (eCash minting or burning) or agree to none. There is no such thing as as blacklisting of some users. On the flip side, gift card providers can deny YOU the usage of the gift card but allow all the others to use it...this is because of the account-based model for gift card redemption (in an online environment) and for the *face-to-face* aspect for in-person usage.\n3. In Cashu there is no such thing as *user*, only **coins** exist. Moreover, **coins** are minted in such a way that amount correlation is not possible. In other words, if I request 13 sats (in eCash) to a cashu mint, the mint will blindly sign 3 different coins, one coin of 8 sats, one of 4 sats, one of 1 sat. This means that coins are potentially separately spendable. Gift cards simply work as a single-tranche transaction for any amount. For uncommon gift card *sizes*, some kind of amount correlation can be done (at least theoretically).\n4. Gift cards do not have a common settlement layer between gift card providers, whereas eCash tokens potentially have common settlement layers, at least in the cashu and fedi implementations (LN as a settlement layer).\n\nYour examples are really interesting and I consider your perspective really interesting. Consider my 4 points as and add to what you said. https://example.com/ 11621 402582 402582.402590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2720048872942 0 \N \N f 168903181 \N 1 217318704 0 f f \N \N \N \N 402582 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422764 2025-03-02 17:19:33.793 2025-03-29 22:39:49.496 \N Most of the sats that we have on stacker news stay on stacker news and go back towards either Bugle authors or other posts on this platform. Really bullish on stacker news and want to support it as much as possible https://example.com/ 19263 422756 422717.422735.422756.422764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.69256728330133 0 \N \N f 110973054 \N 1 220839503 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424335 2025-03-04 01:22:50.317 2025-03-29 22:39:49.497 \N Good topic. We should recognize when the constraint is a design that has to be forever, or if it is a constraint by the technology at the moment. If technology evolves, can the constraint be changed?\n\nAn example is the famous quote: "640K of RAM ought to be enough for anyone," we had to write software with that memory limit in mind.\nOr how computers had the 8 bit constraint, but then it was changed to 16 bit, then 32 bit and 64 bit. Forcing to update all software each time.\n\nI would say, it is difficult to design constraints that last forever to technology. https://example.com/ 7510 424317 423928.424317.424335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6681700941962 0 \N \N f 130598482 \N 1 194760473 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421193 2025-03-01 13:37:29.97 2025-03-29 22:39:49.497 \N I am really starting to get tired of the bitcoin isn't an inflation hedge, lol it stops you from dilution IN THE BITCOIN network, it doesn't control whats going on in secondary markets, gosh everytime I have to explain that one it does my head in lol\n\nAs someone not in the western world (South Africa) bitcoin looks so good, I literally have no other way to save, every financial instrument is impaired when you do the real return calculations and the currency is not doing you any favours\n\nBitcoin is MEANT to redistribute wealth and its only going to do that by allowing those who didn't get much out of the fiat game to get in first\n\n\n
\n\n**Side note:** The way you formatted this post, top stuff man, appreciate the time you took to use the mark ups https://example.com/ 14607 421117 421117.421193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.077071463809 0 \N \N f 468458408 \N 3 130711361 0 f f \N \N \N \N 421117 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446791 2025-03-21 13:20:45.282 2025-03-29 22:39:49.498 \N * Client project: building a dApp with Vue for sending EURe tokens (as a WooCommerce payment method)\n* Building a notifications center in Drupal with [DANSE](https://sebastix.nl/blog/exploring-subscriptions-and-notifications-with-drupal-danse-module/)\n* Need to integrate Gitlab CI (new feature) in Drupal [Nostr Simple Publish](https://www.drupal.org/project/nostr_simple_publish) and [Nostr ID NIP05](https://www.drupal.org/project/nostr_id_nip05) modules I I find some time left https://example.com/ 16145 446631 446631.446791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44648036115119 0 \N \N f 441657288 \N 3 168788932 0 f f \N \N \N \N 446631 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443474 2025-03-19 11:28:41.663 2025-03-29 22:39:49.502 \N It doesn't have to be all or nothing. Think a bit. \n\nSome people will **make the decision** to trust a third party, other people want to keep full control. Some people will have a custodial hotwallet / lightning wallet, for the convenience, while keeping full control of their cold wallet.\n\nIt is a common misconception that there is just one way (all or nothing), a best solution for everybody, that success is only achieved if some idealistic scenario becomes a reality. \n\n**The truth is that what matters, is for you to have the freedom to decide what is best for you. Bitcoin gives you that freedom, gives you the sovereignty over your money.**\n\nYou are afraid of managing your money and want to use a custodial wallet? Your decision.\n\nsomeone else wants to use a non-custodial wallet and keep control? Their decision.\n\nThe important thing is that the possibility is there, a nobody can force you into something you don't want. https://example.com/ 16042 443454 443388.443454.443474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.7295618450646 0 \N \N f 470548211 \N 3 215109783 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443423 2025-03-19 10:49:14.772 2025-03-29 22:39:49.504 \N `ᕦ(ò_óˇ)` Day 8 of exercising everyday before the saloon opens\n\nWent for a 14km walk today again. I got up at 9AM but the train took a while so I was at the beginning of my walk at 11AM. The saloon opens at 12PM for me so seems like I am testing the boundaries of the streak definition: "exercising _before_ the saloon opens".\n\nI'll have to get up earlier. It's also getting quite late when I get back home. My original idea with the streak was to always be back when the saloon opens!\n\nI mentioned [here](https://stacker.news/items/263608) that I would try to find my way using the sun. That worked quite well! I only got slightly confused when I have seen a highway sign for my destination which pointed in the opposite direction. But I realized I am not a car and thus it's not meant for me.\n\nNo pictures today in the name of privacy - also there wasn't anything particular interesting except a bigger hill I thought about capturing for @DarthCoin because of [his comment yesterday](https://stacker.news/items/262332).\n\nTomorrow I'll go shooting at 10AM. Have to think if that counts as exercise. Maybe I'll just walk there, too. It's 6km and up a hill - actually, that's quite a big hill, so maybe it's actually not that flat around here? ;) https://example.com/ 7668 443099 443099.443423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.56940971952653 0 \N \N f 54114272 \N 1 185560546 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 2025-03-26 05:46:12.531 f \N \N \N 0 0 0 0 1 0 0 434625 2025-03-12 04:39:33.286 2025-03-29 22:39:49.736 \N https://imgprxy.stacker.news/34IPUdtz8QXhJxLB4VLtDssSGn0rlPWuu4_xXORiLgU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYTEuZ2lwaHkuY29tL21lZGlhL0wwU1VFVWRjWk9sc0JrbVZqOS9naXBoeS53ZWJwP2NpZD02YzA5Yjk1MjBjdmNlOTl2aDY1encxZzNidHRramJqbHdhbGk1cGl3aWtiaDE4anYmZXA9djFfaW50ZXJuYWxfZ2lmX2J5X2lkJnJpZD1naXBoeS53ZWJwJmN0PWc https://example.com/ 11423 434535 434535.434625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.99468876764842 0 \N \N f 214770563 \N 1 113116967 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 2025-03-20 04:24:17.078 f \N \N \N 0 0 0 0 1 0 0 437635 2025-03-14 17:24:04.881 2025-03-29 22:39:49.496 \N Another thought: The daily reward only rewards the last 36 hours.\n\nThat means it doesn't distinguish between users being inactive for a weekend or for weeks. If you look at other social media such as Youtube the algorithm punishes harder the longer people were inactive.\n\nNot saying that's a good or bad thing. Just an observation how the incentivization will work https://example.com/ 10554 436752 436752.437635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8759717223907 0 \N \N f 553093366 \N 3 100747054 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434279 2025-03-11 18:35:36.174 2025-03-29 22:39:49.496 \N I don't lose sleep over the possibility that he dumps it all. If he does, the price will take a big hit temporarily, which might be scary. In the long run it wouldn't be a big deal, just a nice buying opportunity. https://example.com/ 5708 433816 433816.434279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2521633727784 0 \N \N f 0 \N 0 216623756 0 f f \N \N \N \N 433816 \N 0 0 \N \N f \N 2025-03-20 02:55:07.833 f \N \N \N 0 0 0 0 0 0 0 421737 2025-03-01 23:48:23.237 2025-03-29 22:39:49.498 \N Going forward, the fastest cowboy in the Snaily Discussion Thread will receive 1000 sats.\n\nIf nobody beats the snail, these sats go into the rewards pool instead.\n\n__@_'-' https://example.com/ 16309 421735 421567.421722.421731.421733.421735.421737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.84549719714436 0 \N \N f 434377443 \N 3 167398959 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422554 2025-03-02 14:39:42.248 2025-03-29 22:39:49.499 \N `ᕦ(ò_óˇ)` Day 7 of exercising everyday before the saloon opens\n\nAs mentioned [yesterday](https://stacker.news/items/261035), I took the train to some place I haven't been yet so I can walk back 1-2 hours.\n\nHowever, I wanted to take my chances and didn't get out at a stop which was close to how far out I want to be but still a little too close. \n\nThe next stop however took longer than I expected - I didn't want to look at the map to make it more adventurous - so I was now 14km away from home which apparently should take me 3 hours. But this is fine! I'll just walk as long as I can. If I really can't do the whole walk, I'll just take the train again :) \n\nI've gotten a bit late since I still have 8.8km to walk even though it's been 2 hours already since I got off the train. Maybe writing this already took me 20min+ (my phone is slow). \n\nAnother reason may be this: \nWhile walking, I encountered company premises for a gravel pit. There was a sign earlier but it didn't say that this will be a dead end. I didn't want to turn around and walk all the way back so I thought I just enter and look for another exit. \n\nHowever, it only went deeper and deeper so I needed to find another way out. I looked at the bushes and found the railway I wanted to follow. There was a track I could continue on on the other side. So when I found a good spot through the bushes with thorns and the slope down to the railway, I took my chances again and crossed the railway. To not take too many chances, I listened for trains coming before taking the leap.\n\n_The Beginning of the Journey_\n\nhttps://imgprxy.stacker.news/e9gc7I7uFGYzD88FU3KPzGvvhbW21CU-YsVNrmVtChY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvMmoyZ3F6czAvSU1HLTIwMjMwOTIyLTEwNDgxNy5qcGc\n\n_So close and yet so far. I had to take another way to the other side. The slope was too steep here._\n\nhttps://imgprxy.stacker.news/4aFGwCEj0hsBTnpZ0o6fIfbtg8Z8KP-9ZPW6MYV6GPY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvR2hEUFdLeHYvSU1HLTIwMjMwOTIyLTExNDMzNi5qcGc\n\n_Change of landscape_\n\nhttps://imgprxy.stacker.news/Di-wAKUX_IIca-lspfC_BFcPZaS9lvgvZVOIN_JqIC4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvZzJTam4xdkMvSU1HLTIwMjMwOTIyLTEyMjY0MS5qcGc\n\n_Where I am writing this from_\n\nhttps://imgprxy.stacker.news/mPeaavRJd2ie0aF3QT2A22OwFWHCm0d6YjJJbvPH7TE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvcXZoOHNMek4vSU1HLTIwMjMwOTIyLTEyMzIwNi5qcGc https://example.com/ 12976 422483 422483.422554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.7608428442712 0 \N \N f 144294505 \N 1 10293220 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447180 2025-03-21 17:05:11.521 2025-03-29 22:39:49.5 \N *tl;dr past Bitcoin forks were led by one or two people in Core, but Core is trying to wash its hands of fork leadership and that means nothing will happen.*\n\nDefinitely an interesting thread to watch on twitter today. Lots of thoughtful responses. \n\nRough consensus is really rough. While I'm not an ossifier, I do think it's okay that Bitcoin is a mess. Probably I would feel differently if I worked in Bitcoin development. It sounds like a slog. \n\nOne compelling point James makes is that as more adoption occurs Bitcoin will get even harder to change, so it is possible that we should consider enacting some changes before too long ([Great consensus cleanup?](https://delvingbitcoin.org/t/great-consensus-cleanup-revival/710)). \n\nWhatever happens next in Bitcoin is going to be interesting. https://example.com/ 17693 446511 446456.446483.446511.447180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.61164567754562 0 \N \N f 0 \N 0 29675843 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435652 2025-03-12 21:11:26.097 2025-03-29 22:39:49.501 \N Personally, I'm terrified of debt. My parents filed for bankruptcy when I was a teen. I didn't let myself get a credit card until well after college. While I have a credit card, I've never held a credit card balance. I use it purely for the modest rewards.\n\nI did have 10's of thousands of dollars in college loans at one point that I just didn't pay until I had a lump sum to pay them (I hate bill admin).\n\nWhen I was living hand to mouth as a grocery store clerk in my late teens/early 20s, I was unbanked due to overdraft fees and would use check cashing. A handful of times I would get payday loans to make rent. \n\nNever had a car loan. Never bought a house.\n\nIn a strange way, my debt-fobia makes me feel like I've been left out of the modern economy a bit. https://example.com/ 2961 435649 435046.435135.435162.435214.435220.435235.435649.435652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.16474038846832 0 \N \N f 266043591 \N 2 245650430 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:00:20.163 f \N \N \N 0 0 0 0 1 0 0 428104 2025-03-06 21:14:45.993 2025-03-29 22:39:49.501 \N Strong butthead energy. Gets it just enough to think he can critique it.\n\n> Second, I don't like that many Nostr clients are using the same signing key for messages as they do for lightning transactions. We don't know how many of these web Nostr clients are secretly sending your private keys back to their servers, and everyone will run from Nostr as soon as some untrustworthy dev starts emptying lightning wallets.\n\nI don't think any client does this. Nearly all of them are noncustodial. They do have NWC strings but you can limit those.\n\n> Nostr messages get lost in time, and many of the clients end up just blasting an entire message history at your client. Because there's no clue in the protocol how messages are related other than a timestamp this also means you can fake timestamps and write fake messages in the future or back in time. \n\nEh this is like a scottish egg but with a turd on the inside.\n\n> Nostr messages get lost in time\n\nwut\n\n> Because there's no clue in the protocol how messages are related other than a timestamp\n\nThis is just untrue. Notes can reference each other.\n\n> Third, someone needs to delete some of these NIPS. The arms race to make Nostr as complex and difficult as possible to implement is not going to do much for the ecosystem in the long run. In the beginning Nostr was simple to implement from scratch, they should get back to that!\n\nThey need to be better organized - for sure - but experimenting ain't free dude. https://example.com/ 20924 427718 427718.428104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.712032559833 0 \N \N f 380210919 \N 3 124700590 0 f f \N \N \N \N 427718 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443329 2025-03-19 09:08:49.542 2025-03-29 22:39:49.503 \N I don't think bitcoin satisfies any of these qualities, not according to the definitions given in the article.\n\n**Consistency**\n\nIf we are discussing the mempool, it is definitely not consistent. You can quickly ascertain this experimentally by sending a transaction *only* to peer 1 and then immediately requesting a copy of the mempool from from peer 1 *and* peer 2. What will happen? They will very probably give you back different copies of the mempool. This is not consistent per the article's definition: "In a consistent system, once a client writes a value to any server and gets a response, it expects to get that value (or a fresher value) back from any server it reads from."\n\nBut of course, the mempool isn't technically "part of" bitcoin's consensus rules -- *the blockchain* is. But the same thing applies there. If you find a block in bitcoin and send it to peer 1, then immediately request a copy of the latest block from peer 2, peer 2 may not know about it yet. So you "[wrote] a value to [one] server...[got] a response...[and got an older value]...back from [another] server." This violates their definition of consistent, so bitcoin, per their definitions, is not an example of a consistent system.\n\n**Availability**\n\nThis one I'm less sure of. Your bitcoin client can craft a "write" request intended to be added to the blockchain (i.e. you can craft a transaction) and send it to a peer, but pay a fee of 0. The peer will then probably drop the request. If your client then makes a "read" request, the peer will likely reply with either the same chain it had before or a different one, but still without the user's transaction in it. So I think, in bitcoin, write requests are sometimes ignored. I think this violates their definition of availability: "The server is not allowed to ignore the client's requests."\n\nI'm not sure though because I think bitcoin might satisfy their definition of "not ignoring requests" as long as the peer sends back an error message. If he sends back an error message, he didn't "ignore" your message, he replied. But even there, I don't think peers in bitcoin *have* to return error messages. I haven't checked the codebase, but I doubt you would ban a peer for a single ignored message. I think you would ban them if they ignored "multiple" requests, but not for a single one. So I'm not entirely sure. You might say "but if they ignore a message that means the peer crashed, and the article says it doesn't count as an ignored message if it was due to a crash." And that might be true -- I'm not sure -- but Bitcoin also doesn't exactly have a "spec" so if a node "chose" to literally ignore 1% of messages I don't think this would count as a node "crashing." It would just be a slightly jerk-ish node, and I don't think there's anything in bitcoin that forbids that.\n\n**Partition tolerance**\n\nThis is defined as "the network will be allowed to lose arbitrarily many messages sent from one node to another."\n\nThis is what I was talking about just a moment ago: I really don't think any bitcoin client bans peers just for dropping one message. But I do suspect they ban peers who drop "arbitrarily many" messages -- e.g. all of them. So per this definition I actually don't think bitcoin qualifies as partition tolerant. I think you will ban peers if they drop a certain number of messages, and that seems inconsistent with the article's definition of a partition tolerant system, which is supposed to permit nodes to lose "arbitrarily many messages" without issue. But again, I'm not entirely sure -- "the network" is fine even if you ban one peer, since you have seven others. So I just don't know for this one, but I don't think bitcoin satisfies it. https://example.com/ 937 443295 443295.443329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3860596236951 0 \N \N f 0 \N 0 55879838 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:13.407 f \N \N \N 0 0 0 0 0 0 0 422919 2025-03-02 19:26:26.455 2025-03-29 22:39:49.497 \N Why aren't there any chip manufacturers in this apocalypse? Somehow, humanity's collective knowledge of how to make computers/adding machines is lost but someone manages to recover the entire 600GB Blockchain even tho there are no books/printed words? I think there are just as many (if not more) offline/faraday backups of Wikipedia than the Blockchain.\n\nLet me present a more likely senario:\n\nDisaster happens and the Blockchain stops adding blocks because every computer on earth has been permanently disabled.\n\nMany people will have cold storage Bitcoin seeds memorized and/or recorded in ways that survive the disaster.\n\nWithout new blocks, the coins on these keys cannot be spent. You can't even give someone else your seed in a trade without trust because you also know the seed and could doublespent them once the Blockchain resumes.\n\nConsensus only cares about the Blockchain with the heaviest proof of work. So anyone who decides to try and mine blocks by hand, and distribute the newly found block without internet is wasting their time because all the work they do could easily be undone by primitive adding machines and a network of telegram wires or radio stations.\n\nEven if one community decided this was the best strategy for them, they would struggle to enforce the consensus rules without trust since it's no longer feasible for everyone to validate the transactions themselves without checking all the work themselves by hand. People under this limit, would just trust whoever is disseminating these new "blocks" to people. \n\nIt's like trusting the phone companies to make sure there are no typos in the quarterly phone books sent to every household pre-internet. Very centralized. People would have to submit their txns directly to the block factory and hope they get included. \n\nEven if you did find an error in a block, what are you going to do about it? Try to convince everyone in town to discard the last block and force the block production factory to issue a recall and replace it with a valid one? It just wouldn't scale at all without becoming completely trust based.\n\nIt soon becomes obvious that Bitcoin was designed for networked computers and humans are really bad at computing/networking. Especially, when most people are just trying to survive and could care less about keeping their ledgers updated and verifying the transactions of their neighbors too!\n\nInstead of doing math by hand or with a slide rule, then shipping tonnes of paper with hashes and hex encoded text to every community on the planet, we would all be better off working towards getting BTC back to running as close as possible to how it was before the disaster.\n\nIn the meantime, communities will just use ancient money technologies that run better on the available infrastructure.\n\nAt worst case, 2016 new blocks would need to be mined at the pre-disaster difficulty before the next adjustment. The difficulty can only go down 75% at once, so it could take a few adjustments before we're back to 10min block times. The time between those first few adjustments could be decades.\n\nAssuming we have to rebuild global communication infrastructure, there could emerge multiple BTC forks or chain splits as new communities develop the technology to "resume" the Blockchain independently using what they believe is the current chain tip.\n\nThese forks could persist forever as national treasuries or lose value to alternative blockchains with greater proof of work as they are discovered and the world reunites.\n\nThere would also be a huge opportunity for shenanigans since compute isn't evenly distributed anymore. The earliest miners would be in very powerful positions to reorg the chain that could be very politically impactful since blocks could take years to mine in the beginning. https://example.com/ 12097 422911 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2445793359755 0 \N \N f 223806912 \N 2 55881276 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437551 2025-03-14 15:50:14.573 2025-03-29 22:39:49.497 \N Shared this before but here goes. Life lesson included. \n\nI am reminded of the time I took my son (he was 10 at the time) hiking in the hills (small mountain used for skiing) around where we live. We reached the peak later than we expected and the sun was starting to set, we needed to get to more stable terrain by the time it got dark so we tried to take a shortcut through a steep tree lined area near a small stream. I knew if we followed the stream we would find our way down eventually. The terrain was steep, wet, and difficult. My son fell down multiple times. He cut up both his knees and wrists falling on a rocky area at one point. The terrain was difficult, I could only help him physically to a certain point while maintaining my footing. We were not in mortal danger but could have gotten badly hurt if we weren't careful. At one point, seemingly going in circles in a steep area where we had to hold onto tree branches to keep from slipping and tumbling into trees below, my son stopped and started crying. He was spent, mentally and physically, he wanted to give up. I couldn't do this for him, we needed to make it down this difficult passage. So I told him we have three options: 1)We can quit and stay here for the night in the cold with no food, little water left, get bitten endlessly by bugs and be miserable until sunrise, 2)we can yell, scream, cry, try to call for help and hope someone will come to save us, 3) we can push forward and find a path home. He agreed to push forward and we did. A few minutes after overcoming the most difficult section we had faced, through the trees, not far away, I saw what looked like a grassy area. We struggled our way through the trees towards it. We had found our way to the last downhill slope of one of the ski runs and just like that I knew exactly where we were, with just enough light to get to the bottom and find our way back to the car as night set in.\nreply https://example.com/ 5129 437538 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.84432005795575 0 \N \N f 769350770 \N 6 196250557 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443311 2025-03-19 08:55:25.19 2025-03-29 22:39:49.501 \N Michael you’re wrong on every point as usual. Man, you hold a grudge 😅 Saylor was a guest at our conference and I wouldn’t set up a meeting for you. Get over it.\n\nFor anyone new to Michael’s world, he’s literally walking anti-signal. https://example.com/ 1426 443308 443295.443297.443301.443308.443311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4123899409229 0 \N \N f 512789035 \N 3 189242653 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:29.593 f \N \N \N 0 0 0 0 2 0 0 435127 2025-03-12 13:38:58.661 2025-03-29 22:39:49.501 \N > It’s kind of wild that elevators are still so loud, slow\n\nNah, modern elevators are _much_ faster than they used to be. The first elevator was was 12m/minute. The current record holder is now 20.5m/**second**, a 100x increase in speed.\n\nSure, typical elevators haven't increased that much. But there are very real physical limits to consider: if short elevators accelerated even faster, at some point they'd put unacceptable G-forces on the people inside them. https://example.com/ 21042 435046 435046.435127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0305640153469966 0 \N \N f 555988904 \N 4 2435272 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 12:31:34.412 f \N \N \N 0 0 0 0 2 0 0 414648 2025-02-24 06:39:33.707 2025-03-29 22:39:49.504 \N As a christian I am a monotheist. The goal isn't to be a monotheist. The goal is to know God. The issue would be if Christians were wrong and there were multiple gods. Some believe that. Its not an issue as long as we accept each other's difference and live in peace with one another. Humanities issues are the flaws with human nature. Not fundamentalism. Just wanted to say that first.\n\nHere's the issue with maximalism. \n\n1. Its needed\n2. It will never be everyone\n\nWe need people that hold the line. That have beliefs grounded in knowledge and facts. People that will not budge. People of principle. People like this help us avoid becoming deluded by compromise.\n\nWe also need pragmatic people. People that understand the tradeoffs and are able to see where a compromise is a win for everyone.\n\nWe also need people that are open and do not hold to dogma. These people can be the ones pushing back on us. Keeping all of us in balance. \n\nI never worry about maximalists. Honestly all the talk by them and about them gets old. I don't call myself a maximalist but I just don't like labels. Labels are for lazy minded people. In the end this obsession with maximalism has nothing to do with bitcoin. I've said it before, its about psychology. I recommend reading "The Righteous Mind" by Jonathan Haidt. His research and book are helpful in understanding people that do not think like you think. https://example.com/ 736 414638 413675.413884.414328.414638.414648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6630956616158 0 \N \N f 489292029 \N 2 203526383 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444290 2025-03-19 18:51:36.762 2025-03-29 22:39:49.739 \N Changed my default zap to 1k on SN........lets see where this goes. https://example.com/ 18309 443712 443712.444290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1548566972071 0 \N \N f 494103082 \N 3 199840393 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416896 2025-02-25 22:56:06.255 2025-03-29 22:39:49.74 \N Thess purity tests are ridiculous. LND is open source. Bitcoin is an open source movement. LND is not developing closed source software and umbrel and mynode need to kick license fees to run the software on their node in a box.\n\nI am glad you are taking the deeper dive and running another implementation of lightning but the reasoning is misguided. Please remember bitcoins hashing function is created by the NSA. Which it doesn’t get more statist that that. Yet we all use it without reserve. https://example.com/ 1493 416775 416158.416775.416896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0419181664096 0 \N \N f 0 \N 0 169948709 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3042 2022-10-23 20:00:31.066 2025-03-29 22:39:49.742 \N Focus.\n\nPeople spend a lot of time trend/fad/scam/clout chasing. https://example.com/ 1617 3039 2990.2999.3035.3037.3039.3042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.0801143217313 0 \N \N f 234186456 \N 2 115253202 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434804 2025-03-12 08:52:00.266 2025-03-29 22:39:49.742 \N I am opening a direct channel to stacker news to see if this will mitigate. I'm seeing "no route" errors in alby:\n\n 2024-11-18T14:18:04-07:00 {"app_id":4,"bolt11":"lnbc10n1pnnhtctpp5frtldan6apvdn6ywu2y7nps2lqsn6rfuef785tqs563hn7s0uycqdpg2d8r5gr6v9czqvfqwdshgueqw3hjqgehxuenzdf3cqzzsxqzjcsp5wyalknd26nchkdq0ksl0em56uk5hhw6t0nle34t0nmdpxjrp4j2s9qxpqysgqqf8jlugmgkumygw4vu30xmanglxzxawtyzfs7w60muppu7ewaxt9lpvxz4h6cg7esly4u38rajtlls4nns46gxe73eq40ftvntfwl8sqw4mdnw","level":"info","msg":"Sending payment","request_event_id":1822,"time":"2024-11-18T21:18:04Z"} \n 2024-11-18T14:18:04-07:00 {"level":"info","msg":"Received payment failed notification","payment":{"payment_hash":"48d7f6f67ae858d9e88ee289e9860af8213d0d3cca7c7a2c10a6a379fa0fe130","value":1,"creation_date":1731964684,"payment_preimage":"0000000000000000000000000000000000000000000000000000000000000000","value_sat":1,"value_msat":1000,"payment_request":"lnbc10n1pnnhtctpp5frtldan6apvdn6ywu2y7nps2lqsn6rfuef785tqs563hn7s0uycqdpg2d8r5gr6v9czqvfqwdshgueqw3hjqgehxuenzdf3cqzzsxqzjcsp5wyalknd26nchkdq0ksl0em56uk5hhw6t0nle34t0nmdpxjrp4j2s9qxpqysgqqf8jlugmgkumygw4vu30xmanglxzxawtyzfs7w60muppu7ewaxt9lpvxz4h6cg7esly4u38rajtlls4nns46gxe73eq40ftvntfwl8sqw4mdnw","status":3,"creation_time_ns":1731964684062362536,"payment_index":37355,"failure_reason":2},"time":"2024-11-18T21:18:04Z"} \n 2024-11-18T14:18:04-07:00 {"level":"info","msg":"Marked transaction as failed","payment_hash":"48d7f6f67ae858d9e88ee289e9860af8213d0d3cca7c7a2c10a6a379fa0fe130","time":"2024-11-18T21:18:04Z"} \n 2024-11-18T14:18:04-07:00 {"bolt11":"lnbc10n1pnnhtctpp5frtldan6apvdn6ywu2y7nps2lqsn6rfuef785tqs563hn7s0uycqdpg2d8r5gr6v9czqvfqwdshgueqw3hjqgehxuenzdf3cqzzsxqzjcsp5wyalknd26nchkdq0ksl0em56uk5hhw6t0nle34t0nmdpxjrp4j2s9qxpqysgqqf8jlugmgkumygw4vu30xmanglxzxawtyzfs7w60muppu7ewaxt9lpvxz4h6cg7esly4u38rajtlls4nns46gxe73eq40ftvntfwl8sqw4mdnw","error":"no_route","level":"error","msg":"Failed to send payment","time":"2024-11-18T21:18:04Z"}\n\nBut those seem to be limited to the 1 sat HTLCs right now. https://example.com/ 720 434796 434795.434796.434804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9445317402021 0 \N \N f 456743838 \N 5 106282326 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:40:02.26 f \N \N \N 0 0 0 0 1 0 0 457137 2025-03-28 09:00:43.175 2025-03-29 22:39:49.497 \N I'm an older guy (40+). Not as old as @DarthCoin but I do know how to code so I make up for it in other ways :)\n\nThe funny thing about being older and having more life experience is that you have a difference perspective. You see things a different way because you've already been there and done that. \n\nSome might call it wisdom. It doesn't mean you're more intelligent or have more knowledge about a particular topic but it does tend to mean you see through more bullshit. \n\nTOXIC is just a perception. Two different people can read the same thing and have different feelings about it. When I read something @DarthCoin wrote I don't always agree but I always try to consider why he's saying without dismissing it. I ask myself, what piece of the puzzle am I missing? I try to fill gaps in my knowledge by listening to people with more experience than I.\n\nThe other thing that happens when you get older is that you realize how much time people waste trying to be nice to each other. Your recent breakup is a perfect example of this. Sometimes people are too afraid to say what they really mean. They think hurting people's feelings matters more than telling the truth. But the alternative wasting people's precious time on this earth. Spending years in a toxic relationship is much worse than being toxic with words.\n\nThe reason breakups hurt is because your expectations didn't match up with reality. That's all. You spent 2 years trying to make it work and it didn't. That fucking sucks. But if something isn't working you've only got two choices, you can spend another 2 years trying to fix it or you can end it and move on with your life. It's never an easy choice.\n\nNevertheless, the choice has been made and now there's a new path forward. That's a good thing. See it as a new door opening and an opportunity to experience whatever life has to bring you next. It might not feel like it now but it's actually a pretty exciting pivot point that we only get to experience every so often. https://example.com/ 19469 457126 457126.457137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.94613760617814 0 \N \N f 119479870 \N 1 50351715 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434800 2025-03-12 08:50:07.424 2025-03-29 22:39:49.498 \N Depends on which exchange. Exchanges with order books like coinbase, kraken, etc just get their bitcoin from customers, people buying and selling fill out the order book. Exchanges like River, Swan, Strike, etc are brokerages and get their bitcoin from market makers and other services. Lots of these services just have accounts on the other exchanges and buy at whichever has the best price. https://example.com/ 1618 434797 434795.434797.434800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.936875368566 0 \N \N f 292117115 \N 2 204960702 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:39:53.221 f \N \N \N 0 0 0 0 1 0 0 435321 2025-03-12 15:39:29.959 2025-03-29 22:39:49.5 \N **It’s illegal in Switzerland to mow your lawn on Sundays**\n\n> ![](https://m.stacker.news/53122)\n>\n> In Switzerland, you’re not allowed to mow your lawn, build anything, wash your car or hang clothes out to dry on Sundays. The Swiss believe Sunday is a day for rest and noisy and annoying household chores shouldn’t interfere with everyone’s relaxation.\n>\n> *https://www.trafalgar.com/real-word/facts-about-switzerland-never-find-guidebook/* https://example.com/ 717 435295 435217.435275.435277.435295.435321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.51871690651337 0 \N \N f 37325617 \N 1 248817208 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 09:01:04.635 f \N \N \N 0 0 0 0 1 0 0 436521 2025-03-13 16:03:03.482 2025-03-29 22:39:49.504 \N I wrote in reply to k00b about my issues with sidechains specifically as it applies to thinking of it as a scaling solution: https://stacker.news/items/226879 \n\nNot mentioned in that comment are things like "Hey, all the limitations of our decentralized timestamp server are going to apply to these side decentralized timestamp servers too" \n\nFor example \n"Hey, the reason we have a small blocksize is going to apply to sidechains too"\n\n"Hey, the reason we have a high block time is going to apply to these sidechains too"\n\nAnd remember, this is constrained to only talk about sidechains for scaling and nothing else. Fuck all the nonmonetary use cases. Take them out of the conversation, they're a distraction and off topic to the resolution. What's the resolution?\n\nResolved: "How do we scale Bitcoin?"\n\nThat is the topic. I spend so much time dedicated to talking about how I want to constrain the discussion to just that and only that, because I know people are stubborn and I kinda feel scaling isn't the real reason behind this suggestion, so lets constrain the topic to only be about scaling to really put to the fire how much about scaling this push for sidechains really is. https://example.com/ 21019 436457 435657.436457.436521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1841809304118 0 \N \N f 0 \N 0 63983866 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 12:06:11.935 f \N \N \N 0 0 0 0 0 0 0 428469 2025-03-07 10:11:50.73 2025-03-29 22:39:49.737 \N Yes. I vote for whichever candidate seems least likely to violate my individual rights. I also don't buy the whole "let's all become sovereign individuals and abolish government" bit. Don't get me wrong, I love the theory but in the end someone will have a local monopoly on violence. Government, mafia, warlord, call it what you will.. So, if you can choose your poison, might as well. https://example.com/ 19821 428426 428292.428426.428469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.24851860925767 0 \N \N f 450675684 \N 2 58487508 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402808 2025-02-14 05:01:39.598 2025-03-29 22:39:49.741 \N Topher and I have poured a lot of time and effort into BitEscrow - and we’re just getting started. \n\nAsk us anything if you have any questions https://example.com/ 3456 402481 402481.402808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4352946827441 0 \N \N f 0 \N 0 224782026 0 f f \N \N \N \N 402481 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455070 2025-03-26 18:14:53.461 2025-03-29 22:39:49.741 \N So basically Twitter is trying to become the equivalent of China's WeChat. A piece of centralized spyware with your *"whole financial life"* consolidated into one application. Hard pass. The difference between WeChat and X will be customer service—X won't have any; and the difference between X and banks will be consumer protections—X won't have any; and the difference between X and a CBDC would be both. The backend of each abusive iteration will carry minimal differences, and all feed into Ai models that inform the logic gates, and subject civil liberties to scaphism. The X platform is still bleeding users (thankfully) as *Apptopia* data shows and the [BusinessInsider](https://www.businessinsider.com/twitter-downloads-usage-sinks-under-elon-musk-ownership-2023-9) report detailed. I left X earlier this year after Musk's censorship in foreign elections—really the final straw for myself—the Turkish election being the most egregious. Musk has morphed into another toxic fiat creation. Would be nice to see bitcoiners get off this douchebag's dick, but too many are cult of personality addicts smoking an NgU pipe. Money and genius are indistinguishable mutually exclusive things to these people. Anyway, Stacker.News birthed the better more viable model directionally. Let the social tech and tradfi industry (most of which struggles to survive without 0% rates) fight one another for fiat rail supremacy. Let them box themselves in with walls too. No need for a FOSS petard in this case, just let them starve. Rant over.\n\n![](https://image.nostr.build/8b3d691967b4fca0a583f706e035c948f77f908c7be37db2d14d7a61e409f129.jpg) https://example.com/ 17046 454901 454895.454901.455070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9832255110374 0 \N \N f 0 \N 0 71270231 0 f f \N \N \N \N 454895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448236 2025-03-22 13:55:04.044 2025-03-29 22:39:49.497 \N I understand this dilemma. The older I get the more libertarian I become but also knowing how important Bitcoin could be to the world and wanting my kids to grow up in the best world possible, I am highly intolerant of shitcoins. At best they are a distraction and at worst they are an impediment to Bitcoin reaching its full potential. \n\nI think you can still be both a libertarian and a toxic maxi but it is a fine line to walk. https://example.com/ 16336 448232 448200.448232.448236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.127475553845429 0 \N \N f 214204625 \N 1 183157024 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422532 2025-03-02 14:22:47.315 2025-03-29 22:39:49.498 \N I am going back to continue building my Bitcoin Citadel into the mountains.\nMy goal for this week is another 3-4 levels of sacks.\n[![citadel_end_aug.jpg](https://imgprxy.stacker.news/BoTRcv5Qg297qe4qaE377w1mHpMPXlNzK43aKL1eCs4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2Mvcnk0UTBwNG4vY2l0YWRlbF9lbmRfYXVnLmpwZw)](https://postimg.cc/3WKgzYnm) https://example.com/ 6058 422056 422056.422532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.27520624784446 0 \N \N f 152716251 \N 2 206300927 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436352 2025-03-13 13:48:14.013 2025-03-29 22:39:49.5 \N I think I have a good understanding of cryptography and the math behind it. But I'm completely out of the loop about wallets.\n\nI understand deterministic wallets and i-th session keys like in encryption, I understand p2pk and p2pkh, I know about preimages for lightning scripts, I know about HTLT... But there are x,y,z pubs, different wallets in different BIPs, Legacy, Nested SegWit, Native SegWit...\n\nIs there a resource that has like the overview to quickly look up these, from which wallet one can move to which wallet without going onchain? https://example.com/ 688 435882 435882.436352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0332687973441 0 \N \N f 147920466 \N 1 128874186 0 f f \N \N \N \N 435882 \N 0 0 \N \N f \N 2025-03-20 07:16:01.892 f \N \N \N 0 0 0 0 1 0 0 448400 2025-03-22 15:28:11.767 2025-03-29 22:39:49.5 \N I'd always heard that in Naples there was a lot of garbage in the street and lots of garbage burning on the outskirts of the city ... and it was true 🤠 but I liked the city anyway, I'm not one for high standards 🤠 https://example.com/ 19071 448391 448349.448391.448400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.02704289158632 0 \N \N f 0 \N 0 58224059 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424149 2025-03-03 21:00:31.368 2025-03-29 22:39:49.503 \N ![IMG_20231225_154536.jpg](https://m.stacker.news/9406) https://example.com/ 5725 424123 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424123.424149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7956540462775 0 \N \N f 548865937 \N 4 25488920 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 447102 2025-03-21 16:14:53.349 2025-03-29 22:39:49.737 \N As I posted recently, I just switched to graphene. Whether it's the solution for everyone I don't know. It should be easier for me since I have avoided Apple my whole life, and have been gradually weaning myself off google. I think a combination of an open source option, and a self sovereign server storage setup like Start9 will serve my purposes. Start 9 or equivalent is my next move. That will of course incorporate my node and maybe a nostr relay. https://example.com/ 4323 447050 445518.445696.445701.445709.447001.447050.447102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5411424556068 0 \N \N f 338199568 \N 3 37791409 0 f f \N \N \N \N 445518 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430903 2025-03-09 13:52:57.312 2025-03-29 22:39:49.74 \N Here's the money quote.\n\n> Going into the New Year, realize that bitcoin is just a tool. Bitcoin by itself does not create value. It creates value by enabling individuals to produce and to maximally benefit from the output of labor. Think about what it means to have an abundance mindset–creating something from nothing and growing the abundance of resources. It is actually the mindset that creates the flywheel of greater abundance and that requires a shift in culture, which will be accelerated by the adoption of bitcoin. The cultural shift in mindset and bitcoin are related but both must be adopted intentionally. Embrace the paradox of bitcoin and scarcity. Abundance is created through scarcity–first in the cultural mindset and then in resources. https://example.com/ 11648 430902 430892.430895.430898.430902.430903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6782296874248 0 \N \N f 51492212 \N 1 208940168 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408413 2025-02-18 19:03:13.659 2025-03-29 22:39:49.74 \N >What is the ideal bitcoiner car?\n\nA bike. A damn shity bike. Not even electric, just an old fashioned bicycle.\nIf you still buy a car, that means you are short Bitcoin. https://example.com/ 20201 408408 408408.408413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.87317745502543 0 \N \N f 0 \N 0 149640958 0 f f \N \N \N \N 408408 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407826 2025-02-18 12:11:01.034 2025-03-29 22:39:49.743 \N So, @roy (Breez CEO) wrote [an article about Lightning](https://medium.com/breez-technology/there-is-no-such-thing-as-a-lightning-wallet-dc9ac46d32), explaining one main thesis: there's no such thing as Lightning Wallet. It took a historical approach to explain our possible *mistake*: when we're using our apps such as Breez or Phoenix (there's ton of them), it's not only money, there's more:\n\n> If an app sends and receives payments, let’s call it a payment app. If it’s used to play podcasts and stream sats to podcasters, call it a podcast app. If it’s used to manage finances, call it a finance app. This applies equally to Bitcoin and fiat (remember PayPal, Venmo, CashApp etc.). **The app’s name should derive from its function, not how it implements that function**.\n\nGo ahead and read it https://example.com/ 10944 406548 406297.406548.407826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3473221670311 0 \N \N f 0 \N 0 91103219 0 f f \N \N \N \N 406297 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424229 2025-03-03 22:53:32.187 2025-03-29 22:39:49.744 \N > Now you're onto something. Whether you allow more type I or type II errors should depend on the costliness of each type of error.\n\nThat's true. However:\n\n> Oftentimes, the cost of subscribing to a false conspiracy theory is just looking silly, while ignoring a true conspiracy theory might come at a ruinous cost.\n\nIt's not a one-time game. There's a cost to crying wolf, or heeding the cry. The cost of endless conspiracy theories that you either promote or accept is that both your credibility and your discernment trend to zero, which hurts both you and the community in which you operate -- and possibly the world, if you want to really get serious.\n\nThe damage done to btc adoption by having its most prominent and loudest voices be a mental landfill of extremism, midwit pseudo-intellectual blathering, and aggression, is hard to understate. If you think btc is an important thing for the world, then setting adoption back a decade by these folks being the public face of it [1] should make you upset.\n\n[1] Of course the public face is always in the process of shifting. But this was true for a long time and is still significantly true.\n https://example.com/ 902 423999 423928.423951.423962.423993.423999.424229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8705498529739 0 \N \N f 0 \N 0 55798064 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435651 2025-03-12 21:10:09.569 2025-03-29 22:39:49.497 \N Here's what I do:\n\nPrinciple 1: zap the things you want to see in the world -- people who are helpful, nice, funny, cool, and who have interesting perspectives. People who respond thoughtfully when you ask something. Pretend that you'll get more of whatever behavior you zap. Pretend you're voting for the culture that will emerge here.\n\nPrinciple 2: Get a feel for what the norms of the place are, and combine that with absolute value. I want people to feel it when I think they're great; but I also don't want to blow out the speakers. The amounts to accomplish this have been creeping upward, though.\n\nPrinciple 3: Stay in the black. This is kind of dumb, but I wanted to see if I could do stuff that people would value after my initial buy-in. Now that I've got a large-ish stack, by the current zapping standards, I have done stuff like donate 100k sats, and give 10k when someone worth encouraging needs it. I'm pretty far in the black at this point, but I'm adjusting slowly bc I don't want to get rekt, either. Aside from book club posts, I'm generally in the red, and who knows how long the generous stackers will keep liking the book discussions.\n\nIt's a fun topic to think about. @Undisciplined did some informal calculations on zapping, maybe he'll share. https://example.com/ 17392 435514 435261.435401.435409.435514.435651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.888376040989 0 \N \N f 0 \N 0 239181766 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:17:15.235 f \N \N \N 0 0 0 0 0 0 0 434927 2025-03-12 10:46:19.198 2025-03-29 22:39:49.503 \N ![](https://imgprxy.stacker.news/x3S0_gEvCOHdo_ilP9WCinHncS5Fgf6F3b9iHjg0I4Y/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS85VWlWR1pELmpwZWc) https://example.com/ 18930 434488 434488.434927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09157364269795 0 \N \N f 0 \N 0 82987923 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 2025-03-19 04:09:45.217 f \N \N \N 0 0 0 0 0 0 0 437318 2025-03-14 12:44:04.086 2025-03-29 22:39:49.736 \N I tested all LN mobile wallets ([see my detailed guide here](https://darthcoin.substack.com/p/lightning-wallets-comparison)) but none of them have the option for adding a WT for your channels.\n\nWe are talking here about mobile LN nodes, NOT node management apps like Zeus, Zap, FullyNoded, Hexa etc, where the WT is configured on the node side not on the app.\n\nYes, with some of them like Phoenix, Breez, Nayuta, Bitkit, Electrum (trampoline) you have to trust their LSP offered in app, that will not cheat over your balance (you cannot open channels with specific nodes, only in Breez you can do it but not easy for noobs).\n\nWith OBW, Blixt, Electrum (non-trampoline), Valet the situation is different.\nWhy?\nBecause with these ones you can open channels with any node you want, including your own desktop node, from home. So you will trust yourself. In this way you could use a public routing node as your own LSP for your mobile LN node. [As I explained in this other guide](https://darthcoin.substack.com/p/bitcoin-private-banks-over-lightning). Or this [scenario using hosted channels](https://github.com/Darth-Coin/Poncho-OBW-testing), using fiatjaf's Poncho and OBW.\n\nBut still, if you want to open with other nodes, you do not have the option to add a WT.\nI know that Blixt is willing to add this feature, but not right now. Blixt is a full LND node.\n\nAnyways, a WT on a mobile node I do not see it as urgent. Is not supposed to keep a large amount of money on your mobile, but just enough to do your regular shopping and having a lot of activity, not just a dormant useless channel.\n\nAlso some of public nodes, if you open private channels with them (on mobile node you open only private channels), will not keep too much time your channel open, due to not being efficient for them if you do not have activity.\n\nGeneral advice: open private channels ONLY with well known nodes, that you can stay in contact, have good liquidity and willing to offer you LSP for your mobile node. Example of such list [here](https://github.com/hsjoberg/blixt-wallet/issues/1033). https://example.com/ 20829 437190 437190.437318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.79662134831378 0 \N \N f 398750045 \N 3 66358979 0 f f \N \N \N \N 437190 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416898 2025-02-25 22:56:30.732 2025-03-29 22:39:49.74 \N Lighthouse:\n\nEthereum and Solana suck, and they're a great example for why all of web3 is going to die eventually. Technically speaking, their promises of a fast response time are not possible at scale. The bottleneck: Networking + Repetitive Compute across the world for CONSENSUS, every < 20 seconds. (Whereas bitcoin promises to do this in a reasonable 10 minutes per block. And I wouldn't call the lightning network a centralized layer 2 solution. Bitcoin is the real deal, as you can obviously see on SN, since you're here...)\n\nImagine Amazon trying to implement Ethereum or Solana web3. Every time a user buys something, all the miners in the world have to move funds from the user's wallet, to Amazon's wallet, then also store the transaction in a private database somewhere, then interact with robots to deliver your groceries. The blockchain is not private, every miner has a copy. So Amazon would have to store that Amazon-private data encrypted with a key, on the blockchain, where everyone can see it. That key would have to be saved somewhere private for them still.. They'd have to do the same with all their saved user wallet addresses and their home addresses... It makes no sense, which is why Amazon doesn't do it.\n\nRegardless of how you would TRY to do this as Amazon, think instead of 1 server in the backend handling your request, and 1 server (database) saving the transaction, and 1 server telling the robots to put your groceries in a UPS box (or maybe 100 servers doing that, IDK), instead, with web3, you have thousands of computers all around the world doing all those tasks, just to say they agree you clicked a button and you want your groceries delivered ASAP... It's ridiculous, with no real-world application, besides generating garbage (NFTs and tokens) upon garbage (Proof-of-Stake, Proof-of-History, Proof-of-not-work). Bitcoin's proof-of-work is basically "proof of time consumed to generate secure value". How do you fake time? You don't.\n\nAnd if you didn't know, basically every NFT is simply a user's wallet associated on the blockchain with what's called a "string" in programmer terms. The NFT string is a URL pointing to a picture, hosted on a Web2 server. The NFT picture itself is not saved on the blockchain, because that would cost like $1000+ to store on every miner's computer in the whole world. To view your NFT, you have to use a centralized Web2 frontend which calls the web3 backend for only the URL which gets referenced by the web2 frontend in your browser to display it. When you buy an NFT, you are simply paying all the miner's in the world to save your wallet address connected to this URL. It's not the whole picture, just a little URL string that points your browser where to download the picture from.\n\nDon't trust me?:\n\nMany years ago, I made my own web3 website on ethereum, because I was a believer. I spent money on a web2 server to serve up the frontend, so that I could prove the concept of replacing modern day Web2 backend of PHP with Ethereum's Solidity programming language. I thought it was the coolest thing ever. I paid a guy in Indonesia to make a pretty Web2 frontend for the Web3 backend (yes, all Web3 is a Web2 Frontend (like amazon) + Web3 backend (like Uniswap)). The site went live and the price to click a button to save a string was $1 back then, so nobody used the site. Now, it's $30+. So, I paid the frontend developer to add Optimism layer 2. It was still like $1 ON LAYER 2, to save a simple little tiny single character string to the blockchain, or the emulated version of it. (whatever layer 2 is...)\n\nIf I wanted, I could pay for a Ethereum Solidity smart contract developer $200/hour to come in and optimize my code and write the code to store the strings in some limited string variable type, but I gave up. I came to the conclusion that Web3 is simply hype. Hype, I've come to understand, is people's excited feelings about something, with no logic. The buzz of using something w/ a lack of comprehension of what it is that they're using. People are never going to understand how stupid modern Web3 is, because it's like an infinite casino with infinite rooms full of infinite levers to pull and money might shoot out. These levers cost $30 a pull, unless you use a cetralized layer 2 solution. It's ridiculous.\n\nAnd it's unfathomable how broken this shit is.\n\nSolana is a prime example of how broken it is. Their system requirements for miners, last time I looked, was something like 128 GB of RAM and a 32 core processor. That's a really powerful computer, yet their blockchain FAILS and has to be "rebooted" every so often, because miners can't keep up with each other. Solana has their response times down to milliseconds, but I don't know how that's even possible, since every mining computer in the world has to verify every little transaction, across the entire world. So whenever you're on a Solana exchange and converting your token from shit-token-1 to shit-token-2, the whole world lights up and somehow confirms in milliseconds..\n\nLong story short, it fails sometimes, and people lose money, but people don't talk about that much, because they're all busy pulling levers and seeing if the money comes out, and it's really frustrating to watch. If you don't believe me, check the Solana uptime history health stats on the Solana Web2 site: https://status.solana.com/uptime?page=3 They have the most powerful computers in the world, computing proof-of-history, the easiest thing to compute, and they still break, once every 3 months or so... Do you think a business that completely shuts down that often deserves a multi billion dollar valuation?...\n\nAnd ethereum is so broken... New miners that join that network aren't even able to download the whole blockchain because it's being created so fast. So instead, what miners are slowly but surely ALL doing, is downloading just the headers of blocks, and confirming the headers, not the actual data produced, just what some other miner sent to them and told them is the headers.. Ethereum's proof-of-stake miners basically just validate that they're trying to validate.. But again, the infinity shitchain is growing so fast that they can't download the shit over the network fast enough.\n\nAnyway, I've been holding this back for years, had to get it off my chest. I think a lot of people are waiting to learn what is hype and what is not, and I've spent years waiting to read someone talking about it like this, but I just don't see it. SN is a great place for me to share, and I intend to do more of it..\n\nI loved seeing OP's video. Big tips for OP. The truth must be known!\n\nBitcoin is not hype. It makes the most sense. And lightning is the real web3. Everyone just needs patience. Wait for the next biggest app, like crypto kitties, to kill the ehtereum blockchain again, and if it happens enough times, people will start to get the idea. Oh, you didn't know Crypto Kitties put miners 4 hours behind? Well it did happen, and I haven't seen a popular fun game app since...\n https://example.com/ 713 416751 416158.416751.416898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1563765608006 0 \N \N f 0 \N 0 212149293 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410514 2025-02-20 14:11:13.44 2025-03-29 22:39:49.741 \N Bitcoin is savings technology.\nYou spend ONLY on things you REALLY need.\nYou always make sure you earn more than you spend.\nIn time, your sats could buy more stuff, because is scarce and more people will want it.\n\nOn the other side, fiat is spending / debt technology.\nYou are pushed to be forever in debt, so you cannot save anything.\nFiat is forever debt, forever consuming for things you don't really need.\n\n[![magic-internet-money.jpg](https://i.postimg.cc/7LF0qWzw/magic-internet-money.jpg)](https://postimg.cc/f3vJK55r)\n\nSTOP thinking of your "wealth" in fiat terms. This is the biggest barrier that many noobs still do not want to understand.\nDon't try to fit Bitcoin in existing system.\nAdapt to how Bitcoin works, you are the one that must change, not Bitcoin.\nIf you are not capable to do this change, you will simply die in misery, like many shitcoiners full of fiat mindset. https://example.com/ 4776 410480 410237.410480.410514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0267106481863 0 \N \N f 0 \N 0 154809598 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437710 2025-03-14 19:32:41.454 2025-03-29 22:39:49.742 \N ![](https://m.stacker.news/35162) https://example.com/ 15806 437707 437233.437512.437619.437707.437710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.61150105025889 0 \N \N f 194736716 \N 1 28520270 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442417 2025-03-18 14:51:16.228 2025-03-29 22:39:49.744 \N I once knew a Darth Vader inspired stacker,\nWho used the force as his standard rejoinder,\nOh, at his memes we would lol,\nThe alt crypto newbies he would troll,\nTill he called me a ‘damn dirty shitcoiner..’ https://example.com/ 15890 442398 442084.442398.442417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.454043420528 0 \N \N f 0 \N 0 47996668 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442867 2025-03-18 21:16:13.235 2025-03-29 22:39:49.745 \N I get annoyed when people act like btc is inevitable, but I suppose I shouldn't -- I think it probably _is_ inevitable, by which I mean it will be (let's say) a force in the world that's at least 10x as big as it is now, maybe more. So that's a lot of success coming its way, obviously.\n\nWhat is _not_ clear is **on what timescale**. Being able to retire on my modest stash in fifty years is no comfort to me at all, since I will not live fifty more years. So the worst case scenario is that the US Govt basically declares war on it -- exchanges close, it becomes illegal to own or trade or mine, they set a few harsh examples by prosecuting people, etc. A handful of other governments would likely follow suit (e.g., the EU) and make similar laws.\n\nThis would not kill bitcoin! It wouldn't go to zero! But it would crater the shit out of the price for decades, and at that point I don't care anymore, it's useless to me. I'm not leaving my family and living some Jason Bourne life on the run in Guatemala just so I can pay for my hovel in sats. https://example.com/ 20588 442856 442751.442856.442867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9229382232835 0 \N \N f 0 \N 0 11829023 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458300 2025-03-29 07:19:03.853 2025-03-29 22:39:49.746 \N Spending the week building some workout equipment from a HUGE fallen tree branch that was unfortunately struck by lightning. I successfully fashioned a 20 lb bar from an appropriately sized chunk of the branch (via chainsaw, orbital sander and redwood stain). \n\nToday I am going to carve out some smaller weights, and start working on my home -made squat rack and pull-up bar setup. \n\nAny leftover wood will be used for future furniture projects. When nature blesses you with millions of sats worth of high quality wood, it would be a shame not to use the beautiful resource to its fullest extent, without waste. Working out by building workout equipment -exciting times! \n\n https://example.com/ 20616 457413 457413.458300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.34981732763534 0 \N \N f 0 \N 0 165222461 0 f f \N \N \N \N 457413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443465 2025-03-19 11:21:05.309 2025-03-29 22:39:49.498 \N Thanks for pointing me to this. I've heard of this essay many times, but never read (or even skimmed) it. Now I'm interested in reading a biography of Emerson.\n\nI really liked this section. I think it speaks to the current times, in particular.\n\n>Society never advances. It recedes as fast on one side as it gains on the other. It undergoes continual changes; it is barbarous, it is civilized, it is christianized, it is rich, it is scientific; but this change is not amelioration. For every thing that is given, something is taken. Society acquires new arts, and loses old instincts. What a contrast between the well-clad, reading, writing, thinking American, with a watch, a pencil, and a bill of exchange in his pocket, and the naked New Zealander, whose property is a club, a spear, a mat, and an undivided twentieth of a shed to sleep under! But compare the health of the two men, and you shall see that the white man has lost his aboriginal strength. If the traveller tell us truly, strike the savage with a broad axe, and in a day or two the flesh shall unite and heal as if you struck the blow into soft pitch, and the same blow shall send the white to his grave.\n https://example.com/ 15488 443462 443462.443465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4563815065001 0 \N \N f 191307984 \N 1 207455668 0 f f \N \N \N \N 443462 \N 0 0 \N \N f \N 2025-03-26 05:47:08.481 f \N \N \N 0 0 0 0 1 0 0 436257 2025-03-13 12:21:08.873 2025-03-29 22:39:49.499 \N I haven't been on Nostr for a year yet but I use it less than I did at the start. My issues with Nostr are nothing technical. It is good enough. My issue is the value of spending my time there. It has far to much in common with Twitter for me. The signal to noise ratio is not nearly what I want it to be. A ton of low quality content. Very little real intellectually stimulating engagement. \n\nI've also been writing longer form content on Nostr (re-posts from SN) and get virtually zero traction. I think the problem isn't really Nostr as much as it is what I want to get out of it. Or put another way, I have little desire to invest energy in the Twitter style content that dominates Nostr.\n\nSocial media to me for the most part is a depressing picture of our society. Even the sliver of it called bitcoiners. A lot of fluff. Short attention spans. Little substance.\n\nAlso could be that I'm getting old and grumpy. You asked though. https://example.com/ 1697 436125 436028.436053.436125.436257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4408271002209 0 \N \N f 503538218 \N 5 659994 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:38:50.111 f \N \N \N 0 0 0 0 2 0 0 443507 2025-03-19 11:47:36.122 2025-03-29 22:39:49.5 \N @k00b @kr @ek I got notified saying that ~culture and ~AI had been transferred to me. I've just checked and they haven't, but it did highlight a potential problem. If someone transfers you a territory should there be an accept or reject option on that, if you reject it goes to archived? Just to prevent anyone from accidentally getting billed for territories that have been erroneously assigned to them. https://example.com/ 18529 443187 443187.443507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.419062093859 0 \N \N f 0 \N 0 115931755 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458189 2025-03-29 04:25:47.124 2025-03-29 22:39:49.5 \N Nayib Bukele: Greetings, good sir! Pray tell, what dost thou think of the current state of our noble nation?\n\nSaifedean Ammous: Greetings, good sir. 'Tis an honor to be in thy presence. I thank thee for thy gracious words, noble President Bukele. Verily, I perceive great potential in El Salvador's adoption of the coin of Bit for tender legal. 'Tis a bold move, indeed. How doth thy people embrace this path?\n\nNayib Bukele: our people, with fervor unmatched, doth embrace this novel endeavor. 'Tis a testament to the resilience and adaptability of our nation.\n\nSaifedean Ammous: Thy courage, President Bukele, shines as a beacon of hope amidst a world entangled in the web of inflation and hypocrisy. I trust that El Salvador, under thy leadership, shall navigate these uncharted waters with wisdom and fortitude.\n\nNayib Bukele: I humbly accept thy kind words, good sir. The irony runs deep indeed. Those whom doth support a leader's war cries to inflate approval ratings, while the very fabric of their economy trembles. Their horse feed prices soar, the flames of inflation scorching the livelihoods of millions. 'Tis a sight to behold, the true face of hypocrisy.\n\n \nSaifedean Ammous: Thy words ring true, noble President. Hypocrisy lurks in the shadows of power, yet thy steadfast resolve shines a light upon the path of righteousness. As the winds of change blow, thy own Keiser lends his support to thy cause, recognizing the wisdom in thy vision.\n\nNayib Bukele: Aye, the support of the Keiser, a voice of reason and foresight, bolsters our spirits. Together, we shall forge ahead, rewriting the narrative of financial empowerment. El Salvador shall stand as a testament to the potential unleashed when innovation and wisdom intertwine.\n\n\nThus, the conversation betwixt Nayib Bukele and Saifedean Ammous\n\nPS \nI really need to stop procrastinating on working on my thesis. https://example.com/ 992 458149 458149.458189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7322264909932 0 \N \N f 553497336 \N 3 7299435 0 f f \N \N \N \N 458149 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437977 2025-03-15 04:34:01.815 2025-03-29 22:39:49.736 \N Thanks for sharing - Fountain episode link is here - https://fountain.fm/episode/A99epUbBInazY2pK2Tss https://example.com/ 641 437861 437723.437854.437861.437977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2071348782399 0 \N \N f 136101642 \N 1 205664910 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408650 2025-02-19 00:59:00.112 2025-03-29 22:39:49.742 \N There are definitely big opportunities available for people to make use of undervalued real estate like this.\n\nThis idea is not directly related to yours, but there are some parallels.\n\nI recently went to an event hosted by Candlelight Concerts, and was struck by how smart their business model is.\n\nThey rent beautiful old churches all over the world (which see very little demand outside of sunday mornings), then they get a string quartet or a pianist to show up for an hour and play famous songs in a lights-off venue full of candles. \n\nPeople love the ambiance, they love taking pics of all the candles for Instagram, and it’s a unique experience they’re willing to pay for.\n\nBut the best part is their business model.\n\nThe old churches they host these events at are the most beautiful buildings in a city, they have nobody to compete against on venue rental fees (events are in the evenings when most churches are empty), there are tons of talented underpaid musicians in every city, and with some cheap candles they can easily turn that into a fun experience for anyone.\n\nI haven’t thought through the ways this could apply to Bitcoin, but Bitcoiners have always likened the idea of Bitcoin to a sort of religion.\n\nMaybe under-used churches could be a starting point for establishing more Bitcoin meetups. https://example.com/ 20993 408619 408520.408619.408650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8542975660113 0 \N \N f 0 \N 0 212525660 0 f f \N \N \N \N 408520 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416976 2025-02-26 00:32:09.57 2025-03-29 22:39:49.743 \N People always talk about SWIFT like some fancy technology for international settlement that has all sorts of advanced automated verifications. \n\nI don't think many people realize that SWIFT in practice means that each bank employs ~20 people that run specifically configured Windows in a virtual box that runs an MS-DOS application. \nThe most common flow is that the person prints out all transactions/wires they need to do that day and then manually inputs those to the MS-DOS application (yes, by manually reading and rewriting the printed transaction from another software. This tech is before copypaste was invented). One person does around 60 transactions per day this way. \nThey also make notable % of mistakes and so part of day is spent communicating with other banks on resolving the mistakes. There are differences between countries, e.g. Deutsche Bank makes less mistakes than Spanish banks... \n\nThis is SWIFT... \n\nI know this because I was recently debugging issue in this space for a major bank. https://example.com/ 3371 416961 416768.416961.416976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1484052030278 0 \N \N f 0 \N 0 226084104 0 f f \N \N \N \N 416768 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436380 2025-03-13 14:09:20.402 2025-03-29 22:39:49.498 \N So this is a result of a payment either getting stuck or currently in flight.\n\n```\n{\n"attempt_id": "7",\n"status": "IN_FLIGHT",\n"route": {\n"total_time_lock": 775227,\n"total_fees": "570",\n"total_amt": "271796",\n"hops": [\n{\n"chan_id": "852010460957179905",\n"chan_capacity": "500000",\n"amt_to_forward": "271795",\n"fee": "1",\n"expiry": 775187,\n"amt_to_forward_msat": "271795032",\n"fee_msat": "1271",\n"pub_key": "03cc1d0932bb99b0697f5b5e5961b83ab7fd66f1efc4c9f5c7bad66c1bcbe78f02",\n"tlv_payload": true,\n"mpp_record": null,\n"amp_record": null,\n"custom_records": {\n}\n},\n```\n\nThe important number here is `"expiry": 775187,` which is the max block it'll be stuck for, which is about 200 blocks from now or around ~30 or so hours from now. \n\nBest case scenario, it gets unstuck before then. It is typical that the payment is in flight for the duration of the loop out period, which takes 2 on chain transactions. Make sure you don't turn off your node for this portion. If all went well, eventually you'll have that in flight payment show as successful and you will have some on chain funds.\n\nWorst case, the payment is acttually stuck and it'll result in a unilateral (force) close where you will be able to get the funds back, but on chain as a result of closing the channel. After the channel closes, it'll take a bit more time after that to actually spend the funds, since your channel partner will have a chance to reveal the preimage still.\n\nPayments getting stuck is no fun, and unilateral closures aren't either, but that's part of the protocol when a spontanous failure occurs down the line. As long as you don't turn off your node, you should have your funds back, either on chain or back in the channel. It's just that at most it could take 7 - 10 days, but hopefully less than 2.\n\nEdit:\n\nYou probably didn't do anything wrong here and it was a result of a payment failure down the line. Though you could ask @k00b if it shows that he has the same payment stuck but on the other side. If so, then yeah it wasn't your fault. But there's a chance there's a communication problem between you and k00b in which case it could be your fault (or tor's fault). https://example.com/ 4287 436373 435046.435135.435292.435504.435756.436349.436373.436380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0325490346509 0 \N \N f 0 \N 0 244286717 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 09:56:13.21 f \N \N \N 0 0 0 0 0 0 0 424009 2025-03-03 19:18:02.353 2025-03-29 22:39:49.5 \N Why does Stratum V2 matter (outside of better communication between pool and miner) if the pools with the majority of the hashrate such as Antpool, Via BTC, Foundry, Luxor, SBI Crypto, F2Pool, etc will likely never allow their customers to construct their own blocks?\n\nAlso doesn't it put the pool in a weird situation to have to choose whether or not to approve the miner's proposed block?\n\nThere is definitely many problems in mining. Curious how Stratum actually solved it in practice. https://example.com/ 20337 423601 423384.423591.423593.423595.423601.424009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.92758882188544 0 \N \N f 1509822946 \N 11 144370845 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435095 2025-03-12 13:09:04.639 2025-03-29 22:39:49.501 \N From his writing, the author gives me the impression that he does not believe bitcoin is a good idea nor a better idea compared to other monetary technologies (primarily gold). With that premise set in mind, his arguments will naturally be against the adoption of bitcoin, because according to him, it is not a good idea.\n\nYou are absolutely correct, many of us adopt bitcoin not just because of NGU, but probably mainly because it is better technology and a better idea than other monetary technologies. But he will never see it the way we do until he sees bitcoin as a better idea.\n\nAn example outlining his bias from his piece:\n\n>Bitcoin is not gold Gold cannot be attacked by someone producing faster computer chips.\n\nIt's as if designing and fabricating cutting edge chips is easy. The dude clearly has no idea about foundry construction and the expertise required to run them. Let alone understand the cost and time required for semiconductor design. It's easy to type up a line to say "just produce more faster chips", it's another thing to actually produce them. By that logic, I could argue gold is not bitcoin. Bitcoin cannot be attacked by someone mining more gold from digging more gold mines. Better yet, just shoot a rocket into space and mine gold from asteroids, easy. https://example.com/ 21064 435065 435065.435095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.34744432583035 0 \N \N f 232626023 \N 1 177659796 0 f f \N \N \N \N 435065 \N 0 0 \N \N f \N 2025-03-19 06:26:38.328 f \N \N \N 0 0 0 0 1 0 0 447243 2025-03-21 18:07:07.553 2025-03-29 22:39:49.501 \N So, I tried it out now but it still seems like very early days\n\n1. It's weird that I have to pay for looking at my own images?\n2. Blurred picture before looking at them is kinda shit. I find tipping after watching at them (like on SN) better. Also lower barrier to entry for newbies.\n3. Why do images have a price but when clicking on them I can set how much I want to pay? Is it a "pricetag" for looking at it or a recommendet price?\n4. Can I give my Photos a title/description? Where is my profile? Can I follow people? [What is this place?](https://static.wikia.nocookie.net/spongebob/images/9/9a/SB-129_168.png/revision/latest?cb=20170210225913) https://example.com/ 1198 447190 446819.447190.447243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6608728327165 0 \N \N f 406283850 \N 2 235849782 0 f f \N \N \N \N 446819 \N 0 0 \N \N f \N 2025-03-28 11:25:53.697 f \N \N \N 0 0 0 0 1 0 0 434527 2025-03-12 01:53:10.773 2025-03-29 22:39:49.502 \N My day to day banking is custodial, denominated in government fiat.\n\nIf I could snap my fingers, and have my day to day banking be custodial, but denominated in BTC, I would be fucking *ecstatic*.\n\nSovreign btc > Custodial btc.\n\nCustodial btc > Custodial fiat.\n\nBoth of these can be true.\n\n https://example.com/ 2528 434514 434514.434527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.35409108117787 0 \N \N f 210543602 \N 1 89722022 0 f f \N \N \N \N 434514 \N 0 0 \N \N f \N 2025-03-19 12:20:04.11 f \N \N \N 0 0 0 0 1 0 0 443706 2025-03-19 13:25:17.206 2025-03-29 22:39:49.502 \N Good question. \n\nThe only way humanity survives is leaving the solar system, since without Earth, all we have here are dead rocks, gas giants, and shitty little moons. \n\n1. Everyone everywhere needs to shift focus to one thing: storm your govt buildings, bases etc. and figure out what they know about UFOs and anti-gravity. Without new physics we're trapped here with Elon and his chemical rockets to nowhere.\n\n2. Spread this info as far and wide as possible and try to anticipate the problems that will arise when trying to move 8 billion people from one planet to another.\n\n3. We would need groups focused on:\n - what planet do we even go to?\n - do we need ships or is a portal possible?\n - is there a safe zone in our solar system where we can spread to temporarily? \n - how do we keep the world running for the next 5 years while we evacuate?\n - are you aliens going to fking help us out here or just watch??\n\n4. Find out what the world govts knew about this, and tell the world how they lied to humanity. \n\n5. Bring a copy of the timechain.\n\n https://example.com/ 14168 443319 443319.443706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.45613289051869 0 \N \N f 0 \N 0 73435054 0 f f \N \N \N \N 443319 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436343 2025-03-13 13:42:31.536 2025-03-29 22:39:49.504 \N I think most students to date to come to a Base58 class (particularly ones out side the bitcoin ecosystem already) have been through someone talking about Base58 on a podcast. If you're a podcaster, please keep talking about Base58 classes on your podcast. Thank you for your service.\n\nTo some extent the ordinals/inscription run has seen a lot of new builders pouring into the space. I also see new hires to bitcoin engineering orgs as a place for growth, as well as long time bitcoiners who just want to learn more about how bitcoin *works*.\n\nSo no, I don't find things particularly constrained; I think we could probably go a long way on just upskilling + educating existing bitcoiners on how bitcoin works. https://example.com/ 20563 436028 436028.436343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9130568972285 0 \N \N f 553267108 \N 5 153083887 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 09:32:46.687 f \N \N \N 0 0 0 0 1 0 0 421731 2025-03-01 23:41:47.811 2025-03-29 22:39:49.499 \N Disclaimer: I am drunk.\n\nAll my family are from small towns that are now nearly dead -- at this point they're filled with drug addicts, despair, and people too old to move anywhere else, and little in between. I remember when these places were vital, respirating organisms, teeming with life of all kinds.\n\nIt's insane to me how far we are from what we need to flourish. The shape of society, the shape of culture, is so distorted from the shape that can hold life without mortally wounding it.\n\nIt's been interesting, and hopeful, to see people in my orbit start to think about how maybe some of what we have can be re-imagined. The neighborhoods where none of the residents know each other; towns where the only visible form of life is cars; work paradigms where you defer anything sweet in life for some imaginary future decades away, and in the meantime grind in service of that other person who will hopefully one day come into existence.\n\nThe most recurring lesson for me, and the biggest, is that when you put something into the world, reality can cohere around it. It has been remarkable, the times I've managed to do this. A whole host of invisible allies solidifies from the mist like de-cloaking predators.\n\nThe bad news is that things are so fucked. The good news is that remarkably quickly after you staunch the bleeding, the flesh starts to knit. https://example.com/ 21254 421722 421567.421722.421731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.2978566158084 0 \N \N f 961798828 \N 6 5429760 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430291 2025-03-09 03:18:32.824 2025-03-29 22:39:49.5 \N What's the greatest challenge you see to developing Ark (aside from CTV activation)? https://example.com/ 896 430289 430279.430289.430291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.86679542168206 0 \N \N f 354181253 \N 2 161739361 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443618 2025-03-19 12:43:35.823 2025-03-29 22:39:49.5 \N So I got a day off today. Naturally, I spent the whole day playing Tears of the Kingdom, but I did leave the conference livestream on in the background and paid some attention to it when I'm not busy fighting a moblin or a construct. A few thoughts:\n\n- oh the shitcoinery... I thought it was a bitcoin conference?\n\n- too many politicians, wtf? I don't believe mass adoption will occur through politicians or nation state adoptions. Mass adoption will only occur through education and people truly understanding bitcoin.\n\n- I like Saylor's 10 rules. Those are good advices, easier said than done though. But definitely worth mentioning to young people, or actually other people in general.\n\n- is Mallers trying to imitate Apple? All those UI redesigns and even the slides seem very Apple like... either way, good to see another entrepreneur trying to grow their business. Personally, I don't really care about custodial services and KYC services. Let the free market decide, over the long run, if Strike is worthy or not.\n\n- oh man, they didn't fight when talking about ordinals and inscriptions. I was looking forward to some action. Should have got Max Keiser on there, much better chance of seeing him throw some punches at those kids.\n\n- TOTK is such a great game and I'm glad my main focus of the day was on TOTK and not the conference... https://example.com/ 10549 443604 442978.443048.443543.443604.443618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4442817339599 0 \N \N f 460454691 \N 2 65638432 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 2025-03-26 06:13:53.119 f \N \N \N 0 0 0 0 1 0 0 442899 2025-03-18 21:41:13.86 2025-03-29 22:39:49.501 \N @siggy47 mostly covered it.\n\nAnother thing to look out for is the number of businesses that will go under / lay people off. Many businesses finance their operations with debt. When that debt comes due, they'll roll over with new debt. But if the new debt is at a higher rate, that's an added cost and all of a sudden they can't afford the same operation as before. Unless they somehow increase revenues, they will have to downsize or simply eat the cost and lose money. But not all businesses are able to do that for a sustained period of time.\n\nSome may even argue that this benefits the bigger players, who because of their size and stability are still able to acquire relatively cheap financing even in the high-rate environment. It's the small businesses and speculative startups that are likely to get hurt the most.\n https://example.com/ 21067 442859 442859.442899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2214161532525 0 \N \N f 78690862 \N 1 157785070 0 f f \N \N \N \N 442859 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443663 2025-03-19 12:59:19.125 2025-03-29 22:39:49.736 \N In bitcoin world the bugs in the software you use pay you money! :D https://example.com/ 782 443577 443577.443663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7307493929319 0 \N \N f 104210889 \N 1 26535378 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:29:07.866 f \N \N \N 0 0 0 0 1 0 0 443301 2025-03-19 08:51:25.155 2025-03-29 22:39:49.739 \N Saying we don't need covenants because we can do them on a layer 2 is a gross misunderstanding of the entire point of covenants.\n\nCovenants main benefit (in my opinion) is to enable multi party protocols / layer 2s. Without them we can only build 2 party protocols (lightning) without putting huge complexity and availability requirements that defeat the whole purpose.\n\nThis argument comes from the block size wars where it actually made sense, we don't want every transaction to happen on-chain, we want them on higher layers. Advocating for covenants is actually a continuation of this, we don't want to do an on-chain transaction to on-board every user onto bitcoin, ideally we can group hundreds to thousands of users into a single utxo and have them be onboarded in an infinitely cheaper way.\n\nWe can't do covenant functionality on a higher layer because we need covenants to be able to build the higher layers. https://example.com/ 2674 443297 443295.443297.443301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.57036077196359 0 \N \N f 758287545 \N 5 125732787 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:27.152 f \N \N \N 0 0 0 0 1 0 0 424625 2025-03-04 09:16:48.016 2025-03-29 22:39:49.739 \N Going on a long walk with the wife, applied to a couple of fiat jobs\n\nGoing to straighten up the condo and my work station\n\nGoing to make progress on the Nostr Dev course https://example.com/ 21422 424619 424591.424596.424619.424625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3047305244199 0 \N \N f 0 \N 0 173537511 0 f f \N \N \N \N 424591 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410515 2025-02-20 14:11:22.454 2025-03-29 22:39:49.74 \N I've just joined college (last 3 months) but all my friends there are onboard with the "99.99% of crypto is a scam" and that bitcoin is the way forward. My friend paid me for lunch today with her Muun wallet that I set up and it's so much better for us to use compared to sharing bank account details or bothering with the signup of Cash App. They're most excited about the money part of things from what I can tell. Haven't had any interest in alts or nfts yet. Can't wait to onboard them onto our own app! https://example.com/ 7580 407677 407495.407677.410515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1194886373711 0 \N \N f 0 \N 0 37386688 0 f f \N \N \N \N 407495 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450695 2025-03-24 06:55:46.718 2025-03-29 22:39:49.501 \N > What Nostr features are essential when deciding which client you want to use?\n\nSeeing things I want fast.\n\n> Which client offers the best user experience for you?\n\nWithout a doubt Damus. Even though there isn't an algo and I still have to sift through the noisy posters that I follow, at least I don't have to wait for everything to load.\n\n> Do you switch between multiple clients or are you loyal to one?\n\nI use damus on mobile, snort on desktop, but then I use iris for notifications because notifications are slow/unreliable on snort for some reason.\n\n> Do you use Nostr more or less than other platforms like Stacker News and Twitter?\n\nLess but it's mostly because there's no way to outsource signal discovery on nostr yet. \n\n> What is on the top of your Nostr feature wishlist?\n\n1. Algorithms that work in a decentralized way. The nostr community *seems* to prefer the idea of algorithm providers but imho that's not much different than the way things work on the web (even if today we're all kumbaya and I can view the algo in whatever client I want) ... I don't want a SPOF, a single point of moderation, a single point of censorship, for the algorithm I like ... imho algorithms done through centralized providers make the protocol way less interesting for social use cases, because it will make desirable social experiences centralized which isn't differentiated from "the way things are currently done."\n2. A coherent strategy for scaling.\n3. Better incentive schemes for running relays. All the attention is on clients and they will capture most of the value unless the protocol enables/encourages sharing that value - and relays pay the biggest real world costs. I think a lot about the internet and how IP has been in stasis for 30 years because ISPs have no financial incentive to "upgrade the internet." In a similar vein there aren't incentives to compete with them ... it is centralizing.\n4. Smarter key management. There's likely a middle ground between a single key pair and DIDs that makes the right tradeoffs.\n\nAll of that said, I'm still very excited about nostr and everything that people are building. It's fun! It's also the best thing we've got right now. And everyone willing to speak on the matter seems to think none of these things I've listed are concerns/things nostr needs. So perhaps I'm wrong. https://example.com/ 8945 450678 450678.450695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6442414236714 0 \N \N f 624589377 \N 4 193550601 0 f f \N \N \N \N 450678 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433444 2025-03-11 05:15:26.605 2025-03-29 22:39:49.504 \N My first image upload. Very cool! Thank you stackers! It feels like home here. \n\n![SN00.png](https://m.stacker.news/4296) https://example.com/ 14385 433347 433217.433347.433444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0658091805039 0 \N \N f 420986798 \N 2 68858418 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422949 2025-03-02 19:50:33.035 2025-03-29 22:39:49.737 \N > 26 exchanges support Lightning as well, with Kraken, Bitfinex, and Bitstamp being among the most prominent. Robinhood also recently announced an integration for 20M+ users, and P2P marketplace Paxful offers support for its 7M+ users. Users of these exchanges can instantly and inexpensively deposit and withdraw bitcoin to and from any Lightning wallet, increasing the speed and lowering the cost compared to a typical BTC transaction.\n\n> This article should not be construed as an indication that Coinbase has imminent plans to add support for Lightning. Rather, a few employees at the company simply found its potential compelling enough to research, write, and share.\n\n\nHaha ... what a bunch of tools over there at coinbase.\n\n2022 and Coinbase itself doesn't yet have LN deposit and withdraw support yet but their blog posts has to credit 26 competing exchanges.\n\n#DELETECOINBASE https://example.com/ 695 422873 422873.422949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2380038993915 0 \N \N f 327871804 \N 2 225230575 0 f f \N \N \N \N 422873 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404140 2025-02-15 15:25:52.603 2025-03-29 22:39:49.741 \N It's kind of rude to ask questions about a feature that doesn't exist yet, but I'm curious what the sub-board design will look like, the assumptions underlying it, and the features it will include to support the design goals.\n\nFor instance: you can imagine that sub-boards could be administered by a moderator; and then the mod gets to say "these are the rules to be here" a la Reddit. But what if the sub is about a contentious topic (e.g., religion, politics, the block subsidy) and douchebags show up to the sub trying to DDOS everything with asshole comments from multiple accounts, etc?\n\nThen I thought: what if a sub could have an "ante" where you have to ante up some number of sats if you want to post, and the ante is timelocked so once you ante, you can't withdraw for a while. The sats are held in reserve in a sub-sub-wallet (ha!). If the user is an asshole, the mod can sweep the funds into the SN rewards pool. \n\nObviously you can imagine ways the mod can abuse this; but you can also see how market incentives provide strong abuse counter-incentives: a smart mod would be judicious about funds-sweeping, and would make a case for why she was proposing to sweep. If the sub got a bad rep, people would stop anteing up and the sub would quickly die. But there would be a public record of the action, and the user's actions pre-sweep, so people could decide for themselves.\n\nLike the SN version of free-banking. Market in action. Only possible using btc / LN. https://example.com/ 2111 403996 403996.404140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1825777325988 0 \N \N f 225323744 \N 1 132187465 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455467 2025-03-27 03:08:56.236 2025-03-29 22:39:49.742 \N I default to 21 because... Bitcoin. But I do tip a lot more for content I really appreciate such as a good guide/tutorial, a writeup on some theme I find interesting or for AMAs with people I find very exciting. https://example.com/ 6687 455396 455396.455467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5704049484739 0 \N \N f 0 \N 0 146257575 0 f f \N \N \N \N 455396 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401813 2025-02-13 12:08:25.458 2025-03-29 22:39:49.744 \N **Cats Have Been to Space**\n\n![](https://m.stacker.news/59535)\n\n> Chosen by scientists out of a trainee class of 13 other cat-stronaut hopefuls, Félicette was loaded into the nose cone of a French Veronique sounding rocket in Algeria, and sent soaring 97 miles (156 kilometers) above the Earth.\n>\n> *http://www.collectspace.com/news/news-111717a-felicette-first-cat-space-statue.html* https://example.com/ 4314 401734 401734.401813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.02741133610738 0 \N \N f 0 \N 0 18200936 0 f f \N \N \N \N 401734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424185 2025-03-03 21:37:33.345 2025-03-29 22:39:49.745 \N Remember this post \n[Uruguay - The New Land Of The Free? 🇺🇾](https://stacker.news/items/326364) by @davidw https://example.com/ 14168 424183 423928.423951.423962.424104.424121.424182.424183.424185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6048562645055 0 \N \N f 359521106 \N 2 117508363 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457996 2025-03-28 20:44:42.735 2025-03-29 22:39:49.746 \N Yesterday's roundtable kicked so much ass! Great guests, great balance of perspectives from those guests, good-faith engagement, insightful. Comments from @niftynei about the entropy of software has been particularly thought-provoking.\n\nWould love to get a behind-the-scenes view of how ya'll put it together, what you learned from it, plans for the future, etc. Especially how SN can bring something unique to an exchange like that -- I can't think of another place where it realistically could have happened at such a high snr. https://example.com/ 21523 457966 457966.457996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5002748095444 0 \N \N f 241962818 \N 1 239653577 0 f f \N \N \N \N 457966 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443422 2025-03-19 10:47:05.634 2025-03-29 22:39:49.502 \N Currently at a [Cashu](https://cashu.space/) Hackday. There was a presentation by @calle at btc++ yesterday and it blew my mind how simple it is - at least from this high level perspective. So far, I didn't take the time to look into it even though I heard about the project several times already. With the presentation, I got the idea in less than a minute.\n\nI also liked the introduction where existing custodial services like SN were mentioned (thanks for the shout-out even though it was as an example for a custodial service, haha) and that Cashu only solves the privacy issue with custodial services. Kinda like [do one thing but do it well](https://en.wikipedia.org/wiki/Unix_philosophy#Do_One_Thing_and_Do_It_Well).\n\nSo if we use custodial services, we can at least keep our privacy :)\n\nNow looking into how much work integrating Cashu with SN would be. It's not top priority, but when we make it easier for stackers to use their wallet to buy stuff (as @DarthCoin has been asking for a while), I think privacy and thus Cashu gets more important. We don't want to see what you're buying :)\n\nMaybe we could even use it for internal transactions so even we can't tell who zapped who? But that would mess with our ranking system and personal feeds too much, I guess. https://example.com/ 21320 443399 443399.443422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.487406818766 0 \N \N f 670364235 \N 4 63955960 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 2025-03-26 05:16:53.273 f \N \N \N 0 0 0 0 2 0 0 423398 2025-03-03 10:37:27.493 2025-03-29 22:39:49.503 \N I have to say that using LN to upvote posts is pretty addictive (I've been reading this site for about a month but this is my first time actually sending sats).\n\nIt's like flinging nickels at people. Disturbingly fun. You can do it to people who help you *and* to people who annoy you. Very strange. https://example.com/ 7827 423124 423124.423398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.80295298114403 0 \N \N f 170564063 \N 1 153462171 0 f f \N \N \N \N 423124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434879 2025-03-12 10:05:47.075 2025-03-29 22:39:49.738 \N No one solved my Easter egg hunt but @0xbitcoiner gave it a good try. \n\nIn today's This Day on SN post, a post from @nout from 2021 was featured. It talked about https://lightningbutton.com/\n\nI had never heard of this project, so I clicked the link and then proceeded to click the CLICK ME button. I was redirected to a scammy "earn crypto" site. Then I discovered the click me redirect button could be purchased for sats and all it cost to displace the scammy site was 7910 sats, so I reclaimed the lightning button from the jaws of scam crypto and redirected it to Stacker News, where it belongs. \n\nI don't know if anyone outside of the stackers will ever find the lightning button again but if they do they will find us. Thanks for everything you do to make stacker news a great community @k00b, @ek, contributors and all stackers. https://example.com/ 9295 434869 434795.434797.434866.434869.434879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.05046892516147 0 \N \N f 291945652 \N 3 106173787 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:39:50.286 f \N \N \N 0 0 0 0 1 0 0 443398 2025-03-19 10:21:49.06 2025-03-29 22:39:49.738 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **6** https://example.com/ 20291 443387 443295.443332.443371.443385.443387.443398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4157671897004 0 \N \N f 162906094 \N 1 34482199 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:09.096 f \N \N \N 0 0 0 0 1 0 0 435934 2025-03-13 05:42:03.253 2025-03-29 22:39:49.739 \N > how is [CTV] a soft-fork? Old nodes could accept a transaction which does not meet the new conditions from the new OP_CODE, which would lead to a chain split\n\nThey would accept a "transaction," sure, but it will just hang around harmlessly in their mempool unless it gets into a block. And it can only get into a "block" if a rogue miner decides to mine it according to the "old rules." The rest of the network will reject that block and mine new blocks without it, and "old nodes" will then follow whichever chain has the most work. So it won't cause a "meaningful" chain split unless miners are roughly evenly divided on which chain to mine. At most only one miner or so will still use the "old rules," and that's no big deal because the "majority" network will overpower that "minority" network with their greater hashrate, and even the "old nodes" know to follow whichever chain has the most work, as long as it doesn't *violate* any of their rules.\n\nWhich is why, before activating a soft fork, we usually have miners "signal" their agreement on the new rules via the bip8 method or bip9 method before we "go live" -- that way we know the vast majority are ready for the new rules, and a meaningful chain split is less likely to occur. \n\nRemember: once your node accepts a block, that doesn't mean it's there *forever* in your copy of the blockchain. If a "longer" chain appears with "more work," and this longer chain *lacks* the block you accepted, your node will switch to the longer chain and discard the block it once accepted. Also, just because you "accepted" a transaction into your mempool doesn't mean you *require a block* to come out that has that transaction in it. Your node will chug along just fine even if that old-format transaction never gets mined, and even if a miner *does* add it to their block, your "old node" will discard that block if the rest of the network refuses to build upon it and makes a longer/more-work chain without it. https://example.com/ 10013 435120 435120.435934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3756013757996 0 \N \N f 192160296 \N 1 15671429 0 f f \N \N \N \N 435120 \N 0 0 \N \N f \N 2025-03-20 04:48:08.129 f \N \N \N 0 0 0 0 1 0 0 443459 2025-03-19 11:13:50.12 2025-03-29 22:39:49.742 \N The trend everywhere is towards mobile connectivity. In countries like Sudan, only 20% of the country has mobile internet access. That will shift to 70%+ by the end of the decade. This will have a massive impact as hundreds of millions come online.\n\nBitcoin will play a big role in this. It will give anyone with mobile internet the power to be their own bank. The question is what does that look like? Will they simply use Binance? Or will they use Bitcoin in a self-custodial way? https://example.com/ 18231 443399 443399.443459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.18932930509544 0 \N \N f 49700952 \N 1 197116073 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 2025-03-26 05:16:33.901 f \N \N \N 0 0 0 0 1 0 0 410518 2025-02-20 14:12:56.287 2025-03-29 22:39:49.744 \N I've also sometimes had trouble finding routes through SN's node. Sometimes I can only find a route if I increase the max fee to something like 100+.\n\nOne thing I noticed about SN is that sats are always flowing out of it.\n\nOn my public LN node, as soon as I put sats on the SN side of the channel, it almost immediately gets routed back to my side and onto some other destination.\n\nMy hypothesis is that there's a huge demand for liquidity to move sats out of or through SN. Thus, channels are setting high fees for the usage of those channels. The low fee ones quickly get exhausted (as my public channel always does.)\n\nMaybe @k00b or @ek can comment. It's definitely a pattern that i've noticed. https://example.com/ 7675 410504 410420.410504.410518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1678526308929 0 \N \N f 0 \N 0 176509101 0 f f \N \N \N \N 410420 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442229 2025-03-18 13:33:50.942 2025-03-29 22:39:49.502 \N Good write up and good questions. \n\nTangentially I was an early Linux adopter. I first installed it around 94-95. There are some interesting historical parallels to Linux and Bitcoin. \n\nThis has been largely forgotten to history, but up until 1999, there was constant FUD and legal threats over linux (in fact the term FUD itself was created during this time from a leaked Microsoft memo on how to combat Linux). \n\nAt the time, I had colleagues tell me "....we can never install linux here because we will get sued out of existence for that....". \n\nDuring 95-98 acceptance increased and the linux ecosystem grew by leaps and bounds. In 1999 an unexpected and momentous thing occurred....something no one really predicted and it changed the course of computing history. IBM announced that it was working with RedHat to both port its applications to Linux as well as port Linux to run on System Z. \n\nThis was really a game changer. Within months Linux went from this fringe sort of quasi-hobbyist endeavor, to being fully embraced across the IT landscape. The rest of course is history....Linux basically took over 90% of the data centers....and invisibly worked its way into all sorts of embedded products. \n\nRegarding Bitcoin, the US announcing the establishment of Bitcoin Strategic Reserve -- even if rather minor of a few billion dollars -- would be a similar situation. It would greenlight bitcoin and give it a permanent seat at the table. The resulting game theory would basically ensure that it got bid up orders of magnitude in value.....maybe 1000x. Particularly if corporations followed suit and each adopted their own "BTC Treasury" solution like MSTR. \n\n\n\n https://example.com/ 644 441553 441553.442229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8988925008887 0 \N \N f 416706152 \N 3 205166958 0 f f \N \N \N \N 441553 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437511 2025-03-14 15:11:40.381 2025-03-29 22:39:49.74 \N I figure I spend about 1% of my life scooping cat shit. Who's in charge here?\n\n![Toby](https://imgprxy.stacker.news/zUNhq-aZ7qrID3hf6LktJg_Ruoyo39wc_c2pkSnUiNY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvTDhDMXdnOFMvSU1HLTIwMjMwOTE5LTA3NTAzMS05ODAuanBn) https://example.com/ 954 437463 437463.437511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.31016374666495 0 \N \N f 0 \N 0 197444908 0 f f \N \N \N \N 437463 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430897 2025-03-09 13:47:39.35 2025-03-29 22:39:49.741 \N I'm reading The Richest Man in Babylon You May Be Interested https://example.com/ 21271 430896 430896.430897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6708643746203 0 \N \N f 0 \N 0 19918798 0 f f \N \N \N \N 430896 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424226 2025-03-03 22:41:01.798 2025-03-29 22:39:49.742 \N Day 224 of snailposting everyday 'til BTC hits $100k.\n\n...and 24 push-up(s).\n\n__@_'-' https://example.com/ 4287 422616 422616.424226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9371479954636 0 \N \N f 0 \N 0 213526832 0 f f \N \N \N \N 422616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408013 2025-02-18 14:24:25.418 2025-03-29 22:39:49.743 \N Day 350 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20180 407995 407930.407975.407995.408013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9741760523689 0 \N \N f 0 \N 0 122699263 0 f f \N \N \N \N 407930 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423288 2025-03-03 07:33:55.465 2025-03-29 22:39:49.744 \N I don't see a restricted internet as a long term risk, the genie is out of the bottle and governments attempting to put it back in will do so at their peril. \n\nHowever, because the internet is nearly impossible restrict and many governments are on the verge of collapse, I do think the probability of an extended outage (weeks/month) is greater than 50% in the next Bitcoin epoch. \n\nAt the current levels of dependence, this internet blackout would be almost as bad as a power blackout. Supply chains are heavily reliant on software, and software today is extremely interconnected. A multi-week outage may result in the deaths of millions during and well after the outage as resource coordination recovers. \n\nIronically, I was just without power for 6 days due to a weather event. I'm a very well prepared person in a remote area, but drills such as this give you an appreciation for how impossible it is to be **truly** prepared. I know many people who have adopted an off-grid lifestyle and have lived that way for years, only to find they still go into town every few weeks. A black swan would be far more than just an inconvenience.\n\nHere's a more narrow thought experiment. Imagine "bugging in" for 30 days with one simple scope: \n\nWater. \n\nDrinking, cooking, toilets, hygiene. \n\nYou use a lot of water.\n\nScavenging water has security and other risks, storage is high maintenance and costly, and generation depends on a combination of luck, ingenuity, and energy. \n\nIf you're serious about prepping, think long and hard about how you'd solve your water problem and the fragility of what you come up with.\n\nThis will make you think about other matters more holistically. \n\n https://example.com/ 16440 423257 422894.423257.423288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5331164629444 0 \N \N f 36856816 \N 1 180943284 0 f f \N \N \N \N 422894 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413959 2025-02-23 14:47:07.993 2025-03-29 22:39:49.747 \N # 1\nI want to raise another thought on the "Who should get rewards?" question. I didn't regularly get rewards for months after starting to use SN. I had to figure it out, but I liked the content available here and the interactions were great. I got by on the zaps from my posts and comments.\n\nAre we sure that the people whining about not getting rewards have any inclination towards being valuable members of this community?\n\nAt some point I broke through and I've seen several other people rise rapidly. This isn't some sclerotic old boys club that's shutting people out.\n\n# 2\nOn the broader issue of monthly rewards, most of the biggest "beneficiaries" of the contest don't seem to be very fond of it. In fact, I'm not aware of anyone who's a big advocate for it. It does seem worth asking "Who is this for, then?" and "What is this for?"\n\nWe scrambled like maniacs to win a huge prize, so no wonder the metrics were up. It was artificial though and not as satisfying as the previous regime. https://example.com/ 19821 413874 413854.413874.413959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3535651485465 0 \N \N f 0 \N 0 191659487 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404403 2025-02-15 21:01:36.747 2025-03-29 22:39:49.747 \N i run local [bitcoin meetups](https://www.meetup.com/bitcoin-ljubljana/) and SN was part of a value 4 value demos. Slides available [here](https://raw.githubusercontent.com/bitcoin-ljubljana/meetup/main/presentations/Lightning%20everywhere.pdf) if you're very curious https://example.com/ 14357 403905 403595.403905.404403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.831622645749 0 \N \N f 0 \N 0 39686437 0 f f \N \N \N \N 403595 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448320 2025-03-22 14:45:14.355 2025-03-29 22:39:49.502 \N > Raise the cost to post to a really high amount, say 1000 sats. If stackers signal it is valuable content based on it’s zaprank, I will zap the poster back 2000 sats, which they earn in addition to whatever sats the post earns.\n\nI had a similar idea, and still think it's a good idea that gets you 85% of the way to what full moderation would provide.\n\nAs to whether it needs to exist -- less clear about that one. Would a btc beginner find the normal bitcoin territory off-putting due to breadth and complexity? I can see the value in something that's basically _quality posts about the narrowest vision of bitcoin_, by which I mean: many bitcoiners or bitcoin-curious are probably like myself, and do not swallow some of the stuff that has got mixed in with the larger bitcoin culture. \n\nFor instance, you don't have to desire the collapse of the government to believe btc has some value; you don't have to believe that it is the source of all manly virtues (for certain definition of 'manly virtues') to be interested in it. And yet that's the impression many get, and is a major friction to people coming onboard. I think, for many people, these mix-ins are considered core to the whole idea, where other mix-ins, like carnivory, are not.\n\nSo a territory that pared away all that shit would be a great contribution, I think. But, since all of that pared-away btc content is still fully legit ~bitcoin content, it would confuse people, probably, about where to post new things. https://example.com/ 16387 448315 448202.448276.448315.448320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3339463878791 0 \N \N f 494749248 \N 4 23339805 0 f f \N \N \N \N 448202 \N 0 0 \N \N f \N 2025-03-29 08:42:15.043 f \N \N \N 0 0 0 0 1 0 0 447214 2025-03-21 17:38:51.613 2025-03-29 22:39:49.503 \N Congrats! This is huge. Wanted to pass on some feedback from my first gifting. \n\nFrom the receiver’s viewpoint, the first thing they see on the “you have been gifted some sats” page is the amount in the upper left corner. At first, the amount of sats was there with a “~$0” below it which the receiver found confusing. After maybe 5-10 seconds the correct dollar amount showed up when the exchange rate was fetched. A better experience would be to not show any exchange rate until it was ready, I.e show nothing instead of $0, then have the fiat equivalency show up when it is ready. \n\nIt would be great if the gift giver had the option of paying the setup fee for the receiver. In the current situation, the receiver sees the total amount given in the upper left corner of the “you have been gifted some sats” page , and then after they claim, they see a smaller amount in their wallet (minus ~10,000 sats). I’d love to take that fee on my end, so when they see the gift amount, that’s the same amount they’ll see in their balance after claiming. \n\nKeep up the great work! https://example.com/ 4027 447209 447184.447192.447196.447204.447206.447209.447214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.46078317774715 0 \N \N f 0 \N 0 203869996 0 f f \N \N \N \N 447184 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403825 2025-02-15 08:47:41.569 2025-03-29 22:39:49.738 \N * Decentralized\n* Secure\n* Fast and Cheap\n\nPick 2. \n\n>Core devs aren't paying close attention to the covenants conversation\n\nWhy don't proponents of covenants first actually build some pressing new features using covenants and get people to buy-in to their vision. \n\nThis sales pitch of "Lets just implement it and I promise that it will all work out" is an absurd elevator pitch that has zero real chance of getting buy-in. \n\n https://example.com/ 8289 403824 403824.403825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1684161429852 0 \N \N f 429611459 \N 3 228696501 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434715 2025-03-12 07:25:33.034 2025-03-29 22:39:49.738 \N Ask yourself:\n- what DO YOU need in order to live only using Bitcoin?\n- what others around you need in order to be able to live using Bitcoin?\n- merchants. Keep in mind this word. Is the most important for Bitcoin adoption. So build stuff for them, help them with solutions.\n- [Read my Bitcoin guides and you will find even more inspiration](https://darthcoin.substack.com/s/english/archive?sort=new) https://example.com/ 2338 433695 433555.433695.434715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.91518312865389 0 \N \N f 57982634 \N 1 245559983 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 00:52:22.805 f \N \N \N 0 0 0 0 1 0 0 442729 2025-03-18 19:08:38.588 2025-03-29 22:39:49.739 \N He was right and got convinced by scammers that he was wrong. Now he's butt hurt and wont admit it https://example.com/ 19403 441238 441238.442729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5008539639566 0 \N \N f 243017346 \N 2 105108506 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 2025-03-26 02:27:32.964 f \N \N \N 0 0 0 0 1 0 0 402426 2025-02-13 18:13:45.125 2025-03-29 22:39:49.74 \N All the people working hard on Bitcoin and Nostr to make the world a better place 🙏 https://example.com/ 2039 402171 402171.402426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.45956223058937 0 \N \N f 0 \N 0 26609658 0 f f \N \N \N \N 402171 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416897 2025-02-25 22:56:23.302 2025-03-29 22:39:49.74 \N Value is subjective. A subject is a self-preservation machine (cells, organisms, collectives, etc.) capable of resisting the effects of entropy by expending energy externally. Only subjects can ascribe value to something.\n\nEnergy has value to all subjects because subjects need energy to continue existing in spite of entropy.\n\nSubjects engage in activities that produce energy for themselves. By producing energy, subjects contribute to increasing entropy, which consequently requires more energy to resist in the future.\n\nSubjects must maintain a surplus of energy. They must create more than they consume.\n\nStoring energy is valuable.\n\nLiving cells store energy in lipids - fatty compounds that cells can "burn" later for energy.\n\nOrganisms store energy in food reserves - by keeping food reserves, organisms can later convert the food to energy for their cells.\n\nCollectives store energy in money - by keeping records of energy creation vs consumption, collectives can efficiently produce and allocate energy to/from the comprising organisms. \n\nHumans are the only known collectives that use things which aren't food as money. (Although monkeys have been successfully trained to use coins to trade for food and sex)\n\nCollectives usually have huge long-term aspirations (like building a city or going to the moon). These require tons of energy and may take decades. Food storage is not sufficient at storing this much energy for years at a time.\n\nAnything can be used as money. \n\nIts up to the collective to decide what is money. The money does not store the energy like fats or food. Rather the energy is "stored" as an IOU by the collective.\n\nBy spending money, you are demanding that others in the collective burn energy for you. By earning money, you expend energy to gain more energy (in the form of money).\n\nA good money will keep accurate records of energy expended. A good money will be equally "hard" to acquire no matter which organism is competing to acquire it.\n\nA worse money will become 'elastic' causing the collective's record of energy expended to become inaccurate to reality. A worse money is easier to acquire for some and harder for others. Not because some organisms can expend more energy than others, but because the money rewards them unfairly (Cantillon Effect).\n\nIn theory, the best money will become the most adopted by collectives.\n\nA money that is adopted by a larger collective is more valuable than a money adopted by a smaller collective. "Large" and "small" here refers to the energy production of the collective, not necessarily the number of organisms.\n\nA popular money can be exchanged for more energy and thus the money itself is more valuable. https://example.com/ 7992 416472 416158.416472.416897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.89066770870534 0 \N \N f 0 \N 0 183164912 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410452 2025-02-20 13:41:15.781 2025-03-29 22:39:49.503 \N # WordPress?\n\n- BTCpay server [plugin](https://docs.btcpayserver.org/WooCommerce/)\n- LNurl Auth [plugin](https://lnurl-auth-for-wordpress.joelstuedle.ch/)\n- OPENnode WooGateway [plugin](https://woocommerce.com/products/opennode-bitcoin-payments-for-woocommerce/)\n- LBbits WooGateway [plugin](https://github.com/lnbits)\n- IBEXpay WooGateway [plugin](https://wordpress.org/plugins/ibexpay-payment-gateway/)\n- Bitcoin Lightning publisher [plugin](https://wordpress.com/plugins/bitcoin-lightning-publisher)\n\nand obviously: \n- VEINTIUNO.world plugins\n- - [Bitcoin Price Converter](https://veintiuno.world/m/digitales/bitcoin-price-converter-woocommerce-plugin/)\n- - [Bitcoin Block Date Converter](https://veintiuno.world/m/digitales/bitcoin-block-date-converter-wordpress-plugin/)\n- - [(0,00) Zero Price to FREE](https://veintiuno.world/m/digitales/000-zero-price-to-free/)\n\n:)\n https://example.com/ 12769 410445 410269.410445.410452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2320052703122 0 \N \N f 99243337 \N 2 151332664 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401207 2025-02-12 19:43:20.657 2025-03-29 22:39:49.506 \N I don't know much about the updated numbers but sadly we don't have the discount for fuel anymore and even if they did they only accept chivo dollars so you cant just roll up at a gas station as a "gringo" with an "external wallet" and pay with sats\n\nChivo has great benefits but fatal flaws, say you go to a business and they are using chivo on mobile you can only receive dollars with no options to convert, if its desktop Chivo you need to teach the person how to use it but you have all 3 options dollars, onchain, lightning and you can convert same goes if you go to the Pupusa Lady and she has a personal account \n\n as for remittances the normies still line up at the western union, some on forgot to tell them 1 btc=1 btc Im speeking about my experiance here on the east side of the country the forgotten asshole of this country, I know that adoption on the west side is greater but I still manage to live 100% off of bitcoin, I made my own little circular economy here in my village pupusas, gas, convince store a Lady at el Mercado who sells fruits and vegetables, all my bills are paid with sats everything im so deep in the bitcoin standard that even @DarthCoin would stand in aw. https://example.com/ 701 401192 401076.401192.401207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.38217611336158 0 \N \N f 225381564 \N 1 106539677 0 f f \N \N \N \N 401076 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422986 2025-03-02 20:44:55.705 2025-03-29 22:39:49.736 \N A lot of people mentioned general tech. I think it's unnecessary because people don't really hesitate to post that to the bitcoin sub. Economics too. \n\nI'd go for something that isn't tech-related but can slowly increase awareness of bitcoin. Gardening, politics, etc. https://example.com/ 5173 422663 422334.422660.422663.422986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.3884763060785 0 \N \N f 1102921648 \N 7 131670908 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404459 2025-02-15 22:16:11.777 2025-03-29 22:39:49.742 \N It is very unlikely that a new genius developer, would know how to navigate the political landscape.\n\nThey would probably come in and redo everything from scratch -- everyone would tell them to get lost, and they would. This is what happened to Vitalik for example https://bitcointalk.org/index.php?topic=431513.0 even though he was a longtime writer for Bitcoin Magazine.\n\nI am not a believer in Vitalik's idea -- but no one serious tried to help him implement it on Bitcoin. So it is with many Bitcoin ideas.\n\nBuilding on Bitcoin, or even getting new Bitcoin merchant adoption, has fallen out of favor.\n\nYou will get support if you "build on lightning" but that is frankly part of the problem -- it reduces creativity by funneling people all into one narrow sub-field of Bitcoin.\n\nIt isn't True Creativity unless your invention will put dozens of other people out of a job. https://example.com/ 6361 404434 404042.404150.404189.404192.404421.404434.404459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1035352599868 0 \N \N f 0 \N 0 54907783 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410522 2025-02-20 14:14:59.118 2025-03-29 22:39:49.743 \N Have you considered a geyser curated fund (say top 5 projects plus a few new projects etc) where I can donate directly to geyser fund and you distribute amongst those projects? https://example.com/ 9184 410232 410219.410232.410522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.22660926225796 0 \N \N f 0 \N 0 154472462 0 f f \N \N \N \N 410219 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404496 2025-02-15 23:15:32.536 2025-03-29 22:39:49.743 \N Some context: \n\nThere's aggresive spam filters and report-based shadow banning going on in the main Amethyst app. Some effort over the last few days as people try to express why this is bad and I've even submitted a PR attempting to remove the concerns. However, it has not budged the developer to remove it so this community fork that will keep up to date with the restrictions removed was born. \n\nHere's one of the main arguments being made if you want to read more: https://snort.social/e/note18z7rqv87qt0nu3v0rajf4ghnrqcnnc3ujgeqy3zswgs2nwh3nq3qmwhnlh https://example.com/ 15386 404270 404270.404496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.10090268707251 0 \N \N f 0 \N 0 195837623 0 f f \N \N \N \N 404270 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424261 2025-03-03 23:30:04.372 2025-03-29 22:39:49.747 \N [12ft proxy](https://12ft.io/proxy?q=https%3A%2F%2Fwww.ft.com%2Fcontent%2F70853af8-b7a4-4a28-bdfe-b4f3e375a1f0)\n\nAn archive of the article is [here](https://archive.ph/JkJrW). An archive has no paywall, no subscription requirement, and can be easier to read.\n\n https://example.com/ 12870 423743 423743.424261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.2963014701475 0 \N \N f 0 \N 0 135293109 0 f f \N \N \N \N 423743 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423296 2025-03-03 07:54:55.2 2025-03-29 22:39:49.747 \N Do you regret the manner in which you broke lnd? Why or why not? https://example.com/ 20310 423295 422863.423277.423295.423296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6468864238287 0 \N \N f 0 \N 0 233761960 0 f f \N \N \N \N 422863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444503 2025-03-20 00:17:18.202 2025-03-29 22:39:49.996 \N Yeah we want to support two main use cases (but in theory there's many more, Ben is the expert in DLCs not me haha). \n\n1. Betting (users betting with each other on generic things that an oracle can confirm, like sports)\n2. CFDs to try to represent longing / shorting BTC as a fiat denominated representation of their sats. \n\nSo we want users to be able to do this among themselves, so again need p2p connection functionality. Possible long term future against us as a service offering or order book. https://example.com/ 15336 443810 443593.443810.444503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5227649821032 0 \N \N f 0 \N 0 232530261 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424036 2025-03-03 19:38:54.083 2025-03-29 22:39:49.736 \N You want to aim to strike a balance between having too few and too many UTXOs. If your wallet is too fragmented, your inputs may incur a lot of fees in the future. If you have too few UTXOs, you may reveal significantly more information to your counterparties about your stash. E.g. if you pay someone 1 m₿, but use a 1 ₿ input, they learn that you at least have a whole coin. On the other hand, if you want to pay someone 1 ₿ and need to combine ten or more UTXOs to fund the transaction, you may also tell your recipient and the people that sent to you a bunch about your wallet history.\n\nI would avoid splitting everything into round amounts as you propose. Doing so would incur unnecessary additional transactions, the round amounts would be a fingerprint, and having multiple UTXOs of exactly the same amount is less versatile than having that sum composed from different amounts. That said, an exponential distribution seems like a good idea. If I were in your situation, I would take a look at my UTXO pool composition and decide which UTXOs you want to keep, and where you have gaps in the value distribution. Then I’d try to create transactions that each give me one or two UTXOs in those less densely populated value ranges. Be sure to spend UTXOs with inefficient script types while the fees are low: P2PKH (legacy) weighs 148 vbytes to spend, P2SH-P2WPKH (wrapped segwit) weighs 91 vbytes, P2WPKH (native segwit v0) weighs 68 vbytes, and P2TR even only takes 57.5 vbytes.\n\nFor a private wallet, I’d say that you probably have too few UTXOs if you have fewer than ten, but you may have too many UTXOs if you have over 50 or 100. Those ballpark numbers of course depend on the overall amount of ’corn you stash. If you are more cost-conscious, you may want to aim lower, if you are more privacy-conscious, you may want to aim higher. If you have coins from different sources that you want to keep strictly separate (e.g. business funds and private funds), I find it more straight forward to have separate wallets than to keep them separate manually in one wallet. https://example.com/ 10638 424011 423667.423747.423777.423804.424011.424036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1758361175603 0 \N \N f 370493219 \N 2 178515443 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436019 2025-03-13 08:30:18.984 2025-03-29 22:39:49.738 \N Oh, one other thing I've noticed, that's taken like 6 months of pretty heavy activity to detect:\n\nZapping and zapping-back in conversation has _definitely_ affected how I feel about relationships on the site. This is notable because in many cases it's roughly neutral -- neither I, nor my conversation partners, have made any money, or at least, the imbalance is probably tiny after all these months. But the feeling that is established is incredibly meaningful. In some cases, it's changed from a modest hostility on my part, to a substantial feeling of goodwill, just through these zaps and counter-zaps.\n\nIt reminds me, in a way, of a [potlatch](https://en.wikipedia.org/wiki/Potlatch) of ritual gift-giving. In fact, in many ways I understand the latter much better, after having been in this zapping economy for a while.\n\nThis seems like a non-trivial observation, since SN is often discussed as a way to earn sats, which it technically is. But _much_ more powerful, in my experience, has been the pro-sociality that zapping sats back and forth has produced. Outside of potlatch, it reminds me of when you get to a point with a friend where you barely keep track of who's being beer or lunch or coffee. So even though you need money to do it, the power is not at all dependent on how much money you actually walk away with.\n\nI'd be interested in other perspectives on this one bc the implications are large -- another way that [psychology](https://stacker.news/items/457261) comes into play in this space. https://example.com/ 20023 435907 435907.436019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.56745955728258 0 \N \N f 430114295 \N 3 172197240 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 02:22:37.976 f \N \N \N 0 0 0 0 1 0 0 404561 2025-02-16 00:57:52.175 2025-03-29 22:39:49.74 \N Sovereign individual.\nYou can't fully use Bitcoin / be a bitcoiner if you are not also a sovereign individual. https://example.com/ 1985 404354 404354.404561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7014623450587 0 \N \N f 55641728 \N 1 75400894 0 f f \N \N \N \N 404354 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434940 2025-03-12 10:56:58.668 2025-03-29 22:39:49.741 \N Wicked article. \nBut I think I'm missing some base layer knowledge that I'd appreciate if someone could explain.\n\nHonestly when I think about it I'm not entirely certain how lightning gets validated...\n\nThe article mentions offline payments. But BTC requires a consensus of nodes to agree that the ledger is correct right? But if you've got nodes trying to put (let's go with legitimate for the moment rather than delve into foul play) a bunch of transactions onto the block at one time that the other nodes knew nothing about would that bunch of transactions not essentially just get rejected by the network. Meaning offline transactions could never work? I must be missing something as lightning seems to work but that's making probably millions of transactions a minute, not 1 block every 10mins. So I think I'm getting my wires crossed somewhere. If someone could explain this in simpleton terms I'd greatly appreciate it. https://example.com/ 1136 434831 433799.433829.433831.434831.434940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1586421783138 0 \N \N f 109873368 \N 1 203041001 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 2025-03-19 12:43:50.222 f \N \N \N 0 0 0 0 1 0 0 410421 2025-02-20 13:23:45.727 2025-03-29 22:39:49.741 \N I probably came in too hot and excited talking about bitcoin and what our team has been building and didn't do a warm introduction first. haha\n\n\nMy next attempt would definitely have to be more subtle, I think listening to the user first, finding out the doubts and fears people have about bitcoin, and demystifying those right from the beginning.\n\nThe media with all their FUD has really steered people away, I myself was one of them until 2021 when I finally opened up and decided to go on my own journey down the rabbit hole 🐇 🕳 .\n\nAlso, one thing to keep in mind is that our main target 🎯 users are bitcoiners or at least where the full user journey starts, so for bitcoiners it's an easy sell - "Gift sats without onboarding or losing them" \n\nBut the heavy lifting will go into building self-educating guides for a nocoiner to be able to easily follow.\n\nFor example, we just added a guide for spending only one listing for now: https://lightsats.fly.dev/guide/spend\n\nHere's one listing for different LN Wallets:\nhttps://lightsats.fly.dev/guide/wallets\n\nWe'll be building this whole area out based on the following actions we feel would be important for a nocoioner to start exploring on their own.\n\n[![Screen-Shot-2022-11-03-at-7-21-37-AM.png](https://i.postimg.cc/G2MQQWwM/Screen-Shot-2022-11-03-at-7-21-37-AM.png)](https://postimg.cc/R6HKCb0f)\n\nAlso in case you want to see what we have so far on the receiving side, I'd love for you to test claiming these 1000 sats - https://lgt.st/keyan\n https://example.com/ 6471 410283 410269.410283.410421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6475376835748 0 \N \N f 2681101 \N 1 241461866 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447050 2025-03-21 15:30:20.241 2025-03-29 22:39:49.742 \N this piece helped me understand many of my colleagues https://www.citadel21.com/why-the-yuppie-elite-dismiss-bitcoin https://example.com/ 13566 447001 445518.445696.445701.445709.447001.447050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1831406963341 0 \N \N f 600151484 \N 6 36315582 0 f f \N \N \N \N 445518 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 415098 2025-02-24 14:15:52.414 2025-03-29 22:39:49.737 \N I knew I wanted to work on/with bdk and ldk so I wrote up a proposal that outlined roughly a years worth of work and submitted it to Spiral. There was a little back-and-forth where they explained the process and expectations a little more clearly and could get a better understanding of what I wanted to work on.\n\nThey were pretty flexible as my plans did end up changing quite a lot compared to what I originally proposed. Initially my plan was to focus primarily on DLCs but building out a lightning node (sensei) with bdk+ldk ended up being the core of my work.\n\nI hope that as companies realize how important bitcoin is for the world (and their company) that they will prioritize funding the ecosystem as a core part of their business as Block (and a few others) have. https://example.com/ 21494 415076 414755.415076.415098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.238069098770666 0 \N \N f 1006001945 \N 6 9242661 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 320332 2024-12-06 03:43:02.722 2025-03-29 22:39:49.738 \N Raspberry Pi based full nodes. Poor raspberry doesn't have enough oomph and at current prices you are better off getting a used Dell or HP pc. https://example.com/ 2734 320300 320187.320300.320332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1564364374383 0 \N \N f 380721754 \N 3 167695726 0 f f \N \N \N \N 320187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423899 2025-03-03 17:24:42.258 2025-03-29 22:39:49.739 \N You've excluded all of my attempts to reason with you and explain things from the screenshot, but that's okay because the real message here is that you are not a user I am worried about losing.\n\nYou just wanted to complain and that is of limited usefulness to us. If you think you can do better, please do. I can only tolerate your noise for so long, and you found that limit.\n\nThank you for your testing feedback, and for your consideration, it will be considered appropriately. \n\nOtherwise, I'd recommend some methods of stress relief, including, but not limited to, crying harder.\n\n https://example.com/ 14774 423689 423667.423689.423899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5596270525249 0 \N \N f 2921565734 \N 23 214747398 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437956 2025-03-15 02:47:39.641 2025-03-29 22:39:49.741 \N One important difference between farming and software development is the gulf between the complexity and skill required. Farming still requires a lot of management and skill as well as a ton of luck but it seems to me having grown up in a farming community that machines replaced mostly manual labor jobs. Additionally chemicals increased yields at least in the short run (there are negative side effects for this long term). Software engineers most important skill is problem solving.\n\nHere's my take. I've said it before but I'll repeat it. We are many many years away from "AI" being able to actually solve problems that have not been solved many times before. I have used these tools and many of my colleagues have as well. They do not replace the years of experience and knowledge as well as problem solving skill. They do however save time and make software engineers more efficient. The field of software engineering is already hard for a new comer to get into and I expect it will get even harder now. I see AI replicating a really bad new programmer pretty well. If you run a company and think you can hire a prompt engineer to replace your devs I pity your customer support team. \n\nI agree with you that the likely outcome of all this is new industries that were economically enviable becoming possible. Many of the sky is falling story lines lack all logic to me as well as knowledge of the history of technologies and their affects on humanity. AI isn't magic. It is a bad name for different type of algorithm. I've lived through previous hype cycles and heard to crying, I will live through it again. https://example.com/ 2775 437955 437955.437956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.88395094548842 0 \N \N f 0 \N 0 248597434 0 f f \N \N \N \N 437955 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454403 2025-03-26 11:51:01.274 2025-03-29 22:39:49.742 \N Adam Back applying for a technical support position at Coinbase. \n\nRecruiter: "What makes you a good candidate for our tech support team"\n\nAdam: "Well I am in the friggin bitcoin white paper. What else do I need to say"\n\nRecruiter: "Ok sir, no need to be hostile. Unfortunately, the bitcoin whitepaper is a banned document here at coinbase do you have any other accomplishments you would like us to take into account". \n\nAdam: "Well I essentially created the framework for proof of work with my HashCash project"\n\nRecruiter: Yikes, proof of work. We don't use that kind of language around here but this HashCash sounds promising? Sounds like the kind of project we might list. Is it an ERC-20 token?\n\nAdam: No, it's not a shitcoin and even if it was I wouldn't build it on that stupid shit Vitalik's chain. That skinny Russian was barely out of diapers when I was working on it. \n\nRecruiter: Sir, we are a tolerant company here at coinbase but one thing we cannot accept is taking Lord Vitalik's name in vain. We owe everything to him. After all, I couldn't be a pudgy penguin on twitter and hold 438 different coins in my metamask wallet if it wasn't for what he has built. \n\nAdam: That's fucking stupid. Do I get the job or not. \n\nRecruiter: Sir unfortunately we couldn't locate the person you listed as a reference. Someone named "satoshi". Which wouldn't have been a deal breaker but then our "safety" department noticed you have laser eyes in your twitter profile instead of an nft and we don't allow any sort of toxicity in this organization. Our employees are a community that supports each other on our mission to rug, I mean serve 1 billion customers. We can't have a bitcoin maximalist on the staff making them feel unsafe. We wish you all the best on your hashcoin, please consider listing with us when it is done. Have a nice day. \n\nAdam: What a fucking waste of time. Go fuck yourself! https://example.com/ 4502 454221 454221.454403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.01401747204747 0 \N \N f 1001122487 \N 7 148634993 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416682 2025-02-25 19:11:35.482 2025-03-29 22:39:49.743 \N Life is filled with scams and scammers. I'm trying to come up with the earliest ...\n\nMost of my childhood public education was a scam. When I started high school I tested into the advanced geometry class but was getting mediocre grades in algebra (I never really did homework and held a really low gpa in middle school) so they revoked my placement. Instead I got placed in the normal geometry class with a brand new teacher that didn't want to be a teacher, and with all the kids that didn't care. I pretty much gave up on school at that point.\n\nI'd test into advanced classes but I'd be stuck retaking the classes I had failed. Occasionally some teachers would be good at their job and intervene. I did eventually end up with a really good math teacher in high school that was super unorthodox and technology forward which is probably what eventually led me to programming. RIP Mr. Gharst.\n\nI ended up not graduating from high school. https://example.com/ 2963 416601 416158.416601.416682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0734679892348 0 \N \N f 0 \N 0 246093374 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404675 2025-02-16 05:12:14.289 2025-03-29 22:39:49.743 \N At work, I'm fighting poorly-documented Microsoft software (but I repeat myself). It says everything is fine, but it's only grabbing some of the data it says it's supposed to. I promised myself that the last job would be the last time I work with Microsoft software; and not following through with that promise is now it's own punishment.\n\nOutside of work, I spent a little time on a project to turn a Tandy 100 into a modern-ish computer. I watched a teardown video and noticed that the keyboard, display, and motherboard use separate circuit boards. Which means I can replace the motherboard with some other modern computer mainboard and leave th keyboard and display unmodified. I haven't figured out what motherboard to use, but I know that I'm *not* going to use a Raspberry Pi (too unreliable under load). I wanted to go with a Novena board, but those aren't being made anymore. An MNT Reform is way too expensive for this project. I've also considered putting a netbook motherboard in there, but that'll be a lot of work, so I'm gonna make that the last option (even though I have no other options at the moment).\n\n https://example.com/ 10591 403999 403999.404675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.90051249415502 0 \N \N f 0 \N 0 93141190 0 f f \N \N \N \N 403999 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451262 2025-03-24 13:22:17.718 2025-03-29 22:39:49.744 \N With my progressive friends (at least those who still talk to me) I always start with Occupy Wall Street. Throw around the term banksters when referring to big banks. Guaranteed they are at least suspicious of big banks. Explain how bitcoin was born post GFC and talk about Satoshi's message on the genesis block. Describe how the Too Big To Fail banks got bailed out, and the little guy got fucked. That's why bitcoin allows you to be your own bank. It will resonate with progressives. https://example.com/ 6741 451258 451244.451258.451262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5826778041813 0 \N \N f 221371519 \N 1 183342764 0 f f \N \N \N \N 451244 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435520 2025-03-12 18:52:11.147 2025-03-29 22:39:49.736 \N I thought to give some room for other people to chime in, but I can't help myself to also recommend [Chasing Edward Snowden](https://youtu.be/8YkLS95qDjI) documentary. This is such an interesting topic...\n\nThis movie briefly covers NSA analyst-turned whistleblower Edward Snowden and his escape from American authorities to Hong Kong and later to Russia, after leaking classified information about global surveillance programs used by the American government to spy on people around the world and other nations activities. The movie also presents the journalists who had an exclusive access to Snowden and also the members of WikiLeaks, who helped him in moments of his escape. https://example.com/ 1833 435261 435261.435520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.56083058061134 0 \N \N f 241109990 \N 1 165253215 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:13.937 f \N \N \N 0 0 0 0 1 0 0 428492 2025-03-07 10:47:18.089 2025-03-29 22:39:49.742 \N It doesn't really matter the topic, but I'll usually say "oh, okay. i disagree, but it sounds like you've thought a lot about it"\n\nMost people just want to use other people's ears as thought-puke buckets\n https://example.com/ 759 427934 427934.428492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3554075899207 0 \N \N f 0 \N 0 143526834 0 f f \N \N \N \N 427934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431246 2025-03-09 16:07:56.214 2025-03-29 22:39:49.744 \N It is **literally** an ad https://example.com/ 5708 394145 394145.431246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7957770054078 0 \N \N f 0 \N 0 39291189 0 f f \N \N \N \N 394145 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 433123 2025-03-10 20:08:48.635 2025-03-29 22:39:49.747 \N Launching [mutiny wallet](https://mutinywallet.com) open beta! https://example.com/ 4177 432920 432920.433123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7633596828981 0 \N \N f 109227762 \N 2 103227656 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-19 04:12:42.41 f \N \N \N 0 0 0 0 1 0 0 410570 2025-02-20 14:43:45.535 2025-03-29 22:39:49.987 \N Six snails hoping their shells bring good luck.\nhttps://i.ibb.co/87Gw1D7/1fbcb276-1411-427b-b7cf-64c42d8bd358.jpg https://example.com/ 20852 410561 410223.410561.410570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7789089225547 0 \N \N f 0 \N 0 2589368 0 f f \N \N \N \N 410223 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408213 2025-02-18 16:20:47.187 2025-03-29 22:39:49.99 \N Cul De Sac in Tempe looks pretty promising\n\nhttps://culdesac.com/ https://example.com/ 20551 407619 407619.408213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5924607055049 0 \N \N f 0 \N 0 32526178 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410530 2025-02-20 14:18:26.979 2025-03-29 22:39:49.993 \N The science of why you have great ideas in the shower\n\nWhen you’re in the shower “you don’t have a lot to do, you can’t see much, and there’s white noise,” notes John Kounios, a cognitive neuroscientist and director of the Creativity Research Lab at Drexel University in Philadelphia. “Your brain thinks in a more chaotic fashion. Your executive processes diminish and associative processes amp up. Ideas bounce around, and different thoughts can collide and connect.” \n\nIf you’ve ever emerged from the shower or returned from walking your dog with a clever idea or a solution to a problem you’d been struggling with, it may not be a fluke.\n\nRather than constantly grinding away at a problem or desperately seeking a flash of inspiration, research from the last 15 years suggests that people may be more likely to have creative breakthroughs or epiphanies when they’re doing a habitual task that doesn’t require much thought—an activity in which you’re basically on autopilot. This lets your mind wander or engage in spontaneous cognition or “stream of consciousness” thinking, which experts believe helps retrieve unusual memories and generate new ideas.\n\nhttps://www.nationalgeographic.com/magazine/article/the-science-of-why-you-have-great-ideas-in-the-shower https://example.com/ 21296 410475 410444.410475.410530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4521585031618 0 \N \N f 0 \N 0 45663504 0 f f \N \N \N \N 410444 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421229 2025-03-01 14:04:40.333 2025-03-29 22:39:49.994 \N > Will the lack of privacy on Bitcoin enable state co-option?\n\nBIP 300 has nothing to do with privacy, sure you can make privacy focused sidechains, but we already have liquid and no one uses it.\n\n> Will the declining revenue for miners mean bitcoin transactions take weeks to settle, forcing users onto other chains?\n\nThis makes no sense, the difficulty adjustment exists\n\n> Will the scarcity of bockspace on Bitcoin force most users to rely on a custodian?\n\nIf this is the scare, something like coinpools is a much better approach. It actually works on solving the problem rather than just creating another blockchain. https://example.com/ 16424 421211 420895.420921.421211.421229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0196204539649 0 \N \N f 0 \N 0 21099286 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458259 2025-03-29 06:32:25.988 2025-03-29 22:39:49.996 \N Jimmy The King\nBy Gus Garcia Roberts\n\nI don't see this book having much appeal to the typical stacker. I'm reading it because it is a New York tale of incredible government corruption. In my younger days I crossed paths with some of the people in this book, so it's more personal curiosity. However, the corruption recounted here is probably matched and exceeded by governments worldwide, so I guess we all should be aware of it. https://example.com/ 21666 458257 457126.458257.458259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6819297220276 0 \N \N f 0 \N 0 183932005 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424292 2025-03-04 00:08:07.998 2025-03-29 22:39:49.999 \N > covenant(s) .. add a way, so you can have a bitcoin address that limits where and how the coins in it can be spent\n\nI've never fully understood how this concept scales bitcoin utxo ownership. How does limiting where someone can spend their UTXO allow multiple people to share the same UTXO? Eventually you're just saying "this UTXO has to be spent to 10 other addresses eventually" and letting the individual parties decide when they access their coins? I've seen it as a way to pitch delayed custody from a fee savings perspective, but that's assuming fees come down to benefit the user. https://example.com/ 19094 424288 424288.424292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7822323377837 0 \N \N f 0 \N 0 158228774 0 f f \N \N \N \N 424288 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451334 2025-03-24 14:00:49.598 2025-03-29 22:39:50.229 \N ***[The fear of vegetables is called Lachanophobia](https://www.e-counseling.com/articles/lachanophobia-fear-of-vegetables)***\n\n> Ironically, studies indicate that a diet rich in whole grains, fruits, and vegetables can help reduce anxiety. Processed foods and excess sugar are known to worsen it. Yet, there have been recorded incidences when those enduring lachanophobia have had such horrible panic attacks when near vegetables, they required hospitalization.\n https://example.com/ 21514 450939 450939.451334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7725299275552 0 \N \N f 0 \N 0 235934775 0 f f \N \N \N \N 450939 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427818 2025-03-06 16:53:12.071 2025-03-29 22:39:50.229 \N Live look at Stacker Sports podcast beta test. \n\n![](https://m.stacker.news/56670) https://example.com/ 1751 427555 427555.427818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.75901395755876 0 \N \N f 0 \N 0 195883137 0 f f \N \N \N \N 427555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449615 2025-03-23 12:59:18.11 2025-03-29 22:39:49.74 \N - **Access:** 85% of the world that are outside fiat rails can now actually do fundraising. 50% of all projects on Geyser are created in areas with previous no or limited access to fundraising.\n- **Ease of fundraising**: Some of our projects raised 10x more on Bitcoin than they did on fiat. We see a massive enhancement in funding with Bitcoin than with Fiat. Plebs want to Let the Sats Flow!\n- **Immediate direct Funding**: Geyser does not custody funds, so funds go straight to the creator's wallets. This empowers creators who don't have to wait weeks, months or years to receive funds into their wallets.\n\n\n...and a lot more to when it comes to privacy, immediacy, UX... Abubakar just published a nice article about Geyser for more info:\nhttps://x.com/ihate1999/status/1774578678602649919?s=20\n https://example.com/ 20663 449589 449559.449570.449589.449615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5572082963599 0 \N \N f 0 \N 0 62250296 0 f f \N \N \N \N 449559 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416929 2025-02-25 23:15:32.556 2025-03-29 22:39:49.742 \N Day 263 of snailposting everyday 'til BTC hits $100k.\n\n...and 63 push-ups. (35 - 28)\n\n__@_'-' https://example.com/ 19821 416881 416158.416221.416253.416288.416551.416578.416605.416632.416869.416881.416929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8697309495743 0 \N \N f 429497640 \N 4 34651234 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448419 2025-03-22 15:40:18.179 2025-03-29 22:39:49.744 \N Aaaand here you have the Part 2 of the story\nhttps://darthcoincitadel.substack.com/p/the-darthcoin-citadel-part-2\n\nI didn't want to make another post. I just push it hard to finish it today so will be on the same meta post. Many people send me messages asking for the second part, so here it is.\nI hope next week can go back so better leave it here, to be digested by readers.\n\n@siggy47 https://example.com/ 21413 448416 448283.448416.448419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7760440338921 0 \N \N f 0 \N 0 224587816 0 f f \N \N \N \N 448283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458176 2025-03-29 03:54:43.319 2025-03-29 22:39:49.745 \N *Darknet Diaries*! Fantastic show about all kinds of stuff, from cyberheists to pentesting to other crimes. \n\nIn the same vein, the two-season *Lazarus Heist* from the BBC is a deep dive into North Korea's assorted cybercrimes (including trying to plant employees at some crypto exchanges), and is riviting.\n\n*Dan Carlin's Hardcore History* is an amazing deep dive (each episode can run 5-6 hours, and he released 2-4 episodes a year) into history from a non-historian's perspective.\n\nAnd one I love that's a little lighter:\n\n*You Must Remember This*: A look at classic Hollywood, ranging from the early days all the way to the '90s. Incredibly well-researched.\n https://example.com/ 14452 458122 458122.458176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.963166515103 0 \N \N f 0 \N 0 203274354 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448467 2025-03-22 16:07:06.189 2025-03-29 22:39:49.748 \N "Social Justice Fallacies" by Thomas Sowell. This book was released this month. At 93 years old, he is one of the most respected economists, thinkers, and social commentators of our time, and is hated by only by those who like to substitute feelings for facts. Anything he writes is gold. https://example.com/ 21424 446430 446430.448467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.05270731115243 0 \N \N f 0 \N 0 228599890 0 f f \N \N \N \N 446430 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435176 2025-03-12 14:08:49.3 2025-03-29 22:39:49.985 \N Jesus, what a massive douchebag. Even if you do sometimes sneak a good point into your endless vitriolic, hateful, egomaniacal rants, nobody wants to hear it, because you are such a massive fucking asshole. I have you muted, and it makes the stacker news experience 100 times better, but I saw this post while logged out, and I just wanted to stop in and say please fuck all the way off. The Bitcoin community is worse off for having you. https://example.com/ 9982 434952 434795.434952.435176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.007380475028 0 \N \N f 0 \N 0 222437421 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422999 2025-03-02 21:01:58.137 2025-03-29 22:39:49.989 \N So many exciting things going on:\n\nPrivacy: we're getting blinded paths, Taproot channels, and SCIDs. I'm confident receivers will be able to attain great privacy soon.\n\nLSPs: new products are launching every month, standards are being worked on, zero-conf channels and becoming part of the spec\n\nAdoption: more and more merchants, exchanges, and services are coming onboard. Taro is going to accelerate this greatly.\n\nUX: a ton of work is happening to make for a better user experience, especially for newcomers, and especially on mobile and web https://example.com/ 20858 422958 422953.422958.422999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.44893366286497 0 \N \N f 0 \N 0 110393216 0 f f \N \N \N \N 422953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408219 2025-02-18 16:30:26.793 2025-03-29 22:39:49.99 \N Great show, hopefully all of these implementations on lightning dont cause any issues, although I'm optimistic about other layer 2's https://example.com/ 15243 407619 407619.408219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5317629493731 0 \N \N f 0 \N 0 142194461 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428722 2025-03-07 14:43:57.856 2025-03-29 22:39:49.992 \N *flex* 🙌 \n\n1. 📕 *The Works and Days*, Hesiod. Rothbard called him the first economist for his discussion of scarcity and description of the “good war” that is work. \n\n2. 📕 *Republic and Laws*, Plato. Not so much for the economic advice, but so you realize Plato is one of the original shitcoiners pushing a fiat token, and how much of the “other side” is influenced by his thought. \n\n3. 📕 *Politics*, Aristotle. An advanced economics treatise? Not really, but it helps you realize the foundational economic system was, still is, and will always be the household. Also, I love the insight that men are greedy because they forget the difference between *money* and *wealth*. \n\n4. 📕 *De Moneta*, Nicole Oresme. Control of the mint by princes is *immoral*. \n\n5. 📕 *The Way to Wealth*, Ben Franklin. Delightful aphorisms about the value of work and HODLing. \n\n6. 📕 *A History of Money and Banking in the United States*, Rothbard. That moment when you realize the Washington Administration in the 1790s was fighting about today's events. 😬 \n\n7. 📕 *The Wealth of Nations*, Adam Smith. What we erroneously call “capitalism” today is a joke compared to this. \n\n8. 📕 *The Road to Serfdom*, Friedrich Hayek. He's an honorary Bitcoiner for both predicting the current crisis and its only solution. \n\n9. 📕 *Human Action*, Mises. Practically a foundational text for us. \n\nI could keep going to be honest, but I'm in a bit of a Taoist mood today so I'll leave off at 9. \n\n https://example.com/ 15100 428308 428308.428722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7771016924378 0 \N \N f 0 \N 0 87971458 0 f f \N \N \N \N 428308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430907 2025-03-09 14:00:09.153 2025-03-29 22:39:49.741 \N I wonder how much if it the equivalent of btc privacy vs Monero: political elections are the biggest and most important fish, they could, in theory, have the biggest upside, but if prediction markets became significant it would be such a dramatic threat to existing power structures that they would crush it, assassinate people, etc.\n\nIt's kind of funny for me to say this, since I'm normally the one who has so little patience for all the idiot conspiracies that knock around this space, the mysterious elites who are rigging your phone service and trying to make you fat through corn subsidies, etc. Anyone who's ever managed a large group should know how impossible it is to orchestrate things like that.\n\nBut when the stakes are _really_ high, there's a phase transition, and I expect more conspiracies, not less. I'm a _fat tail conspiracy theorist_ maybe. https://example.com/ 732 430894 430891.430894.430907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4319056597811 0 \N \N f 0 \N 0 238230885 0 f f \N \N \N \N 430891 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421137 2025-03-01 12:34:24.717 2025-03-29 22:39:49.741 \N how about an option for whatever you want?\n\nthis is the wild west after all 🤠 https://example.com/ 1173 420918 420918.421137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2497454310655 0 \N \N f 0 \N 0 225222132 0 f f \N \N \N \N 420918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408032 2025-02-18 14:37:43.52 2025-03-29 22:39:49.744 \N Pick the one labelled "shitcoin shill" https://example.com/ 1352 407619 407619.408032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.70245723493665 0 \N \N f 0 \N 0 97741689 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431239 2025-03-09 16:05:37.442 2025-03-29 22:39:49.744 \N NWC send is working great. No failed payments up to now.\nIt feels the same as using the custodial wallet, maybe with a 1-2s difference for the payment to settle. Barely noticable. https://example.com/ 9354 394953 394953.431239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5310467131721 0 \N \N f 0 \N 0 217275388 0 f f \N \N \N \N 394953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443573 2025-03-19 12:22:02.22 2025-03-29 22:39:49.745 \N It's an engineering mindset. The exact same mindset you use to design something is the one you can use to organize something, for it's all about "allocating matter" at the end, be it metal, be it resources. \n\nOne of the key aspects of a good engineering project is task division and cohesion: one team will design this section, another this one, etc. So it's not only the mindset needed to design a bolt but the mindset needed to think where it goes, who works with this next, what about costs? logistics? etc.\n\nSo, all what's needed to be efficient is already there. The key to efficiency is not about getting it but about *not ruining it*. \n\nThe key to his success is thus in this phrase: [Too many MBAs ruining companies](https://www.youtube.com/watch?v=Y6P8qdanszw)\n\nPeople was extremely efficient before, that's how [extremely sophisticated planes](https://en.wikipedia.org/wiki/Boeing_747) and cars where designed with pencil and paper. The problem started when the *MBA corporate culture* began to corrode everything. A culture of accommodating people based on their self-perceived importance, not their usefulness.\n\nSo, Musk is simply getting back to basics. One of the reasons I admire him and trust him is that, with an MBA sub-culture already in place, it takes great humility to *take yourself out of the way* and let people work. The MBA sub-culture does the exact opposite out of ego and the never ending need to justify a job position that should not exist.\n\nThis "anit-MBA" policy (aka "rub no one's ego" policy) is perfectly summed up in is [anti-handbook" manual](https://handbook.directory/static/tesla.pdf). https://example.com/ 1439 443274 443274.443573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3538050778406 0 \N \N f 0 \N 0 209137289 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 2025-03-26 05:49:59.483 f \N \N \N 0 0 0 0 0 0 0 457167 2025-03-28 09:26:09.03 2025-03-29 22:39:49.746 \N Well, since you set up the question and no one else has asked:\n\nHow has the bull market changed either your business, or the kinds of folks coming in to the bar? https://example.com/ 19071 456604 456604.457167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3609765780608 0 \N \N f 0 \N 0 9096660 0 f f \N \N \N \N 456604 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436058 2025-03-13 09:25:41.21 2025-03-29 22:39:49.747 \N I have been learning over the years to just relax, chill, and let the toxicity out. Some people save in fiat. I don't care if they want to invest in altcoins. If that make them happy, good for them. I only give them information about what they are doing if they ask me and show interest.\n\nSome maxi toxicity could be helpful to stay focused. But too much toxicity is not good. It is fun for some time until it is not fun anymore. Spending some time with someone like Darthcoin is fun. But living with him all day could be exhausting LOL \n\nBut if we think about it, the fiat world is much more toxic and darker. To be a fiat toxic is far more toxic and worse than to be a bitcoin toxic maxi. So it's all good. Libertarian or not. :D\n https://example.com/ 4819 436051 436051.436058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2255248618223 0 \N \N f 0 \N 0 197872751 0 f f \N \N \N \N 436051 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447209 2025-03-21 17:32:39.257 2025-03-29 22:39:49.747 \N Haha thanks k00b. Fun fact Gray and Ruby are my kids middle names. https://example.com/ 3377 447206 447184.447192.447196.447204.447206.447209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9408699835709 0 \N \N f 203869996 \N 1 76084303 0 f f \N \N \N \N 447184 \N 0 0 \N \N f \N 2025-03-28 10:55:29.137 f \N \N \N 0 0 0 0 1 0 0 424312 2025-03-04 00:37:03.365 2025-03-29 22:39:49.987 \N Day 214 of snailposting everyday 'til BTC hits $100k.\n\n...and 14 push-up(s).\n\n__@_'-' https://example.com/ 19016 424283 417848.423740.424277.424283.424312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.771914560599534 0 \N \N f 0 \N 0 230420962 0 f f \N \N \N \N 417848 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413880 2025-02-23 14:09:14.716 2025-03-29 22:39:49.989 \N maybe you know this one becuase Bhutan is famous for mining btc, but Bhutan is the only country in the world that measures its success by "Gross National Happiness" (GNH) instead of Gross Domestic Product (GDP). https://example.com/ 646 409994 409994.413880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.07579699611152 0 \N \N f 0 \N 0 26243496 0 f f \N \N \N \N 409994 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402699 2025-02-13 23:42:35.235 2025-03-29 22:39:49.993 \N When my access to the net was super slow I downloaded an offline hyperlinked concise version of Wikipedia (mostly for developing countries).\n\nThis offline version for me felt a pretty important thing - you could classify that as a hyperlinked 'document' I guess.\nThis potted history of everything that had gone on so far reminded me of the Hitchhiker's Guide to the Galaxy - thankfully without any examples of Vogon 'Poetry'.\n\nHere's a bit of trivia for you. Back in the early days. I used to buy magazines to learn about interesting sites (before search engines maybe?) The guy who wrote 'Hitchhiker's' (Douglas Adams, who was _very_ into the 'net) came up with what I can only describe as a prototype to what we know as Wikipedia now. The site was h2g2 dot something or other.\n\nGrandpa will shut up and go back to sleep now... https://example.com/ 780 402003 402003.402699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.32693285429242 0 \N \N f 0 \N 0 102450017 0 f f \N \N \N \N 402003 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444538 2025-03-20 01:36:49.854 2025-03-29 22:39:49.741 \N This topic (erosion of consensus reality) is one of the most interesting things happening in the world right now, with implications that are hard to imagine. \n\nI wonder if it will have weird parallels to antiquity, where propagation time (e.g., physical travel) was so slow that cultures were incredibly distinct and varied; except instead of long propagation times, now you have instant propagation, but people are inhabiting entirely different mental spaces due to tribalism, affiliation, etc. https://example.com/ 1038 1620 1620.444538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.41790997266556 0 \N \N f 131434198 \N 1 47650563 0 f f \N \N \N \N 1620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444494 2025-03-19 23:47:39.973 2025-03-29 22:39:49.743 \N ZFR is the best inbound to buy as a merchant/service, but ensure fees on other channels are high enough to prevent draining it. I do not recommend purchasing ZFR as a router, tho can make sense in a bootstrapping sense\n\nPurchasing LNBIG inbound is highly unreliable, they have at least a couple hundred BTC inbound shortage\n\nMagma selling faces the largest addressable market, being implementation-agnostic and requiring no client. However they take a decent cut now (1000ppm unless you sub). Magma seems to have facilitated more volume in the last month than Liq Ads or Pool and is much much easier to use and sell with than others\n\nPool can garner the highest premium in my experience, and interfaces with the largest implementation, tho requires client and some know how. Voltage plugs into this to make it somewhat easier. Additionally, to use Pool well you need to layer a lot of liquidity at different rates / lease lengths\n\nNot much experience with CLN liq ads, though addressable market is currently relatively tiny https://example.com/ 10398 444493 444493.444494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7096420510174 0 \N \N f 0 \N 0 148878371 0 f f \N \N \N \N 444493 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407860 2025-02-18 12:35:50.553 2025-03-29 22:39:49.744 \N `ᕦ(ò_óˇ)` Day 3 of exercising everyday before the saloon opens\n\nAs expected my upper body is sore from yesterday but just a little bit.\n\nWent for a walk today and lost myself a bit so I had to take a look at the map.\n\nOn my way back, I went through a botanic garden:\n\nhttps://imgprxy.stacker.news/K-wQf7e2bOu8lNUnE2JGDRir9tuUuTjiat8oEF53CYs/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvM0pqVll2RHgvSU1HLTIwMjMwOTE4LTEyMDUwNC5qcGc\n\n_privacy -50%_\n\n\nI also found some cousins from @nemo. Here is a particular curious one:\n\nhttps://imgprxy.stacker.news/WLq13eP75doNI9wVnYikgsQKxFwA_kCl6VK2cjr7aak/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvN1AzbTJ5UEIvSU1HLTIwMjMwOTE4LTEyMDMzMS5qcGc\n\nHe noticed me and swam towards me. Then he ate some dirt.\n\nThe end https://example.com/ 21734 407735 407735.407860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.48074874766877 0 \N \N f 0 \N 0 230717556 0 f f \N \N \N \N 407735 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434691 2025-03-12 06:51:37.259 2025-03-29 22:39:49.747 \N Day 333 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 641 434642 434642.434691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3946584620512 0 \N \N f 171717810 \N 1 63773498 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 01:23:07.652 f \N \N \N 0 0 0 0 1 0 0 442368 2025-03-18 14:35:38.185 2025-03-29 22:39:49.748 \N I see it the opposite way to Balaji. I think it's the set up for a 6102. They create this paper and say "see, you can hold it here. It's regulatory sound, tax efficient, and no need to mess about with complex nerdy stuff". Then they turn around and say, "well no need for self hosted wallets now. What are you, some kind of terrorist!?". And then they outlaw self custody and demand all coins are handed to exchanges in exchange for paper claims. Eventually there will be a "national emergency", and the paper claims will not be honored. I.e. exactly what happened with gold. History is not going backwards, imo, it's repeating itself. https://example.com/ 631 442367 442367.442368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8010466926948 0 \N \N f 0 \N 0 61082768 0 f f \N \N \N \N 442367 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457179 2025-03-28 09:42:52.217 2025-03-29 22:39:49.748 \N Without MoE Bitcoin is not money.\nIt is simply a speculative commodity.\n\nThis is exactly what the fiat debt slavery bankers cartel want- to see Bitcoin defined as a speculative commodity where it is both relatively harmless and can be easily captured and controlled.\n\nThey have already largely succeeded in this and very few Bitcoiners seem to even notice- dazzled by their speculative commodity gains perhaps- how easily the revolution was slyly diverted.\n\nSure you can still use bitcoin as a P2P payment protocol but fuck all people do- thus bitcoin is failing to perform the function of money and unless this changes bitcoin poses little threat to the legacy fiat power structures....that are based upon thier hegemony over MoE. Think of SWIFT as an example.\n\nThe stronger the bitcoin as a speculative commodity narrative grows the easier it would be to impose a ban on private custody.\n\nThe apologists say MoE use will follow SoV- there is no guarantee of that- there is certainty that without strong MoE use Bitcoin is more easily captured and controlled. https://example.com/ 13132 457097 457097.457179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5553833032999 0 \N \N f 0 \N 0 248437173 0 f f \N \N \N \N 457097 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414796 2025-02-24 10:01:43.029 2025-03-29 22:39:49.988 \N There's been discussion of a sort of relay pool. Kinda like a mining pool. Relay operators can be part of the pool. On a technical level, all relay operators are behind a centralized load balancer for a single domain name.\n\nIts best to think of nostr as a reimplementation of RSS. Social media over RSS with cryptographically singed messages. \n\nPut another way, its like seeing facebook, reddit, stacker news, twitter and more all in one home page. Each of these websites have different moderation policies, but adding another site to your feed, is easier than logging into and checking another website. So if your favorite content creator says "sorry guys we got banned from twitter, please follow us on minds" or something like that, instead of signing up to minds and remembering to log into it now and then, just add the feed that comes from minds, to your main feed and it'll get mixed in with your feeds from the other websites. https://example.com/ 928 414258 414258.414796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.72740512539252 0 \N \N f 0 \N 0 220881540 0 f f \N \N \N \N 414258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410550 2025-02-20 14:29:56.985 2025-03-29 22:39:49.99 \N Day 337 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20681 410108 410108.410550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3835781149143 0 \N \N f 0 \N 0 226908016 0 f f \N \N \N \N 410108 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455292 2025-03-26 22:24:03.151 2025-03-29 22:39:49.992 \N No option for none. https://example.com/ 21683 455080 455080.455292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.33884403407868 0 \N \N f 0 \N 0 67855527 0 f f \N \N \N \N 455080 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450018 2025-03-23 17:41:44.945 2025-03-29 22:39:49.993 \N https://github.com/fedimint/fedimint/issues/2836\n\nImprove tutorial docs for Fedimint repo. https://example.com/ 3504 449825 449825.450018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5546243636218 0 \N \N f 0 \N 0 147931690 0 f f \N \N \N \N 449825 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413951 2025-02-23 14:43:36.522 2025-03-29 22:39:49.994 \N There has to be an easier way to stress test Stacker.news. JK https://example.com/ 2734 413948 413948.413951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6660954532891 0 \N \N f 0 \N 0 126966665 0 f f \N \N \N \N 413948 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456664 2025-03-27 18:42:50.705 2025-03-29 22:39:49.741 \N > I'll start by saying that this article is not meant to be a retrospective on LLMs. It's clear that 2023 was a special year for artificial intelligence: to reiterate that seems rather pointless. Instead, this post aims to be a testimony from an individual programmer. Since the advent of ChatGPT, and later by using LLMs that operate locally, I have made extensive use of this new technology. The goal is to accelerate my ability to write code, but that's not the only purpose. There's also the intent to not waste mental energy on aspects of programming that are not worth the effort. Countless hours spent searching for documentation on peculiar, intellectually uninteresting aspects; the efforts to learn an overly complicated API, often without good reason; writing immediately usable programs that I would discard after a few hours. These are all things I do not want to do, especially now, with Google having become a sea of spam in which to hunt for a few useful things.\n\n> Meanwhile, I am certainly not a novice in programming. I am capable of writing code without any aid, and indeed, I do so quite often. Over time, I have increasingly used LLMs to write high-level code, especially in Python, and much less so in C. What strikes me about my personal experience with LLMs is that I have learned precisely when to use them and when their use would only slow me down. I have also learned that LLMs are a bit like Wikipedia and all the video courses scattered on YouTube: they help those with the will, ability, and discipline, but they are of marginal benefit to those who have fallen behind. I fear that at least initially, they will only benefit those who already have an advantage.\n\nI agree very much with the introduction made by the writer. At this point, I know exactly when to use ChatGPT to write some code that I would take me 30 minutes to write, but it can get it done in 3 minutes. I've had my fair share of negative experiences where ChatGPT brings me down a rabit hole of pointless debugging suggestions that end up taking me more than 30 minutes. But with experience, it is now really making my life easier on tasks I can, but do not want to do. The more fun and challenging coding parts, those are still mine as ChatGPT does not know how to tackle those as it was not trained on the kind of physics I do. https://example.com/ 7916 456633 456633.456664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.83083412466 0 \N \N f 0 \N 0 102218200 0 f f \N \N \N \N 456633 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428493 2025-03-07 10:47:38.221 2025-03-29 22:39:49.741 \N Yes most of them are from lazy shitcoiners that only use AI to post for assmilking sats on SN.\nFUCK AI.\nAs I explained in this post\nhttps://stacker.news/items/171338\nAlso some of them are just copy pasting from other articles without mentioning the source https://example.com/ 14122 428041 427934.427966.428041.428493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.29760032904613 0 \N \N f 0 \N 0 71380519 0 f f \N \N \N \N 427934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410544 2025-02-20 14:27:17.921 2025-03-29 22:39:49.743 \N Let's wait and see.\n\nPersonally I think if Bitcoin isn't generating significant tx fees a decade from now, then something has gone wrong and it has failed to monetize. No degree of tail emission will help with this.\n\nI also don't know how you pick an appropriate emission level. Too little, and it doesn't meaningfully improve security. Too much, and Bitcoin becomes diluted and less desirable to hold. Price falls, security falls. So where's the sweet spot? 1%? 0.1%?\n\nLastly, if we really wanted to hardfork to fix security, surely it would be better to instead add features that increase on-chain demand? Ethereum for example has no problem generating tx fees in large part due to stablecoin volume. https://example.com/ 6471 410456 410358.410384.410392.410429.410439.410456.410544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3724004850143 0 \N \N f 0 \N 0 77327640 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442650 2025-03-18 18:09:57.293 2025-03-29 22:39:49.747 \N @k00b @ek\nCan you make something in the preview of SN posts to not display the original file name of the uploaded image by the user?\nWhen you share a SN post on telegram or nostr this is displayed.\n\n![preview.JPG](https://m.stacker.news/27428)\n\nCan you change it in the image id ? Sometimes it could leak more info about the user than is necessary... https://example.com/ 2775 442648 442628.442639.442646.442648.442650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2978483136427 0 \N \N f 594318132 \N 5 61166526 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441033 2025-03-17 17:55:53.902 2025-03-29 22:39:49.985 \N There's reason to believe it should if we assume the housing crisis is created by real estate being used as a store of value. https://example.com/ 13406 440869 440764.440869.441033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.36635417702546 0 \N \N f 0 \N 0 35737519 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424200 2025-03-03 21:48:56.141 2025-03-29 22:39:49.989 \N LFG!\nhttps://i.postimg.cc/g0g2hv2g/bikeheaven.jpg https://example.com/ 11609 424188 423928.423951.423962.424104.424121.424182.424183.424185.424188.424200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3358227447442 0 \N \N f 0 \N 0 232227498 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448330 2025-03-22 14:49:46.169 2025-03-29 22:39:49.99 \N Haha you definitely baited me. My inner toxic bitcoin maxi twitter shitposter rose up from with in and clicked just to tell you "what the fuck are you talking about". \n\nWell done. Good article. I send sats now and go back to my cave. https://example.com/ 20871 447999 447944.447999.448330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.80586994436904 0 \N \N f 0 \N 0 115529602 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448325 2025-03-22 14:47:52.395 2025-03-29 22:39:49.99 \N I think bitcoiners (specifically bitcoin twitter) overestimate their onboarding powers. Typically, those most responsible for onboarding people en masse into bitcoin are not bitcoiners themselves, they're reckless central bankers, political censors, over zealous regulators, corrupt politicians, misguided central planners and general zeitgeists. https://example.com/ 697 445953 445953.448325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1666681906704 0 \N \N f 0 \N 0 106460553 0 f f \N \N \N \N 445953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423214 2025-03-03 05:57:12.909 2025-03-29 22:39:49.992 \N My steelman would be:\n\n* Every fiat currency is shooting itself in the head.\n* * The USD has unsustainable fiscal crisis looming, and no institution is taking a leadership role in defusing this bomb. The precedent has long been set, that we deal with these deficits via printing money.\n* * The EURO is badly designed currency, and the EU is badly designed. The whole thing runs on German guilt which, while admittedly a powerful force, is not enough to defeat the laws of compounding interest.\n* * China is great, we all love the growth, but their demography and geopolitical isolation has them basically screwed. They constantly lie about all their numbers -- classic problem with communism / top-down economics. When I visit China people love love love the USDT, of all things. No one wants Chinese currencies. Billionaires just vanish sometimes over there, you know.\n* * What, then? The Russian ruble? Brazil? No offense, but you've got to be kidding me.\n* There is no good rival Altcoin\n* * Ethereum has many design "uncertainties" -- very open to change. Proof of stake. Paying fees for computations that fail (because of halting problem).\n* * BCH had terrible strategy / execution, too many reasons to list, but disqualified the idea of hardforking in most people's heads.\n* * 99% of other Alts pure scams. The last 1%, such as Namecoin, are all run by pure-of-heart Bitcoiners anyway.\n* The Schelling Fence is just to not change anything at all, under any circumstances.\n\nAnd then just wait.\n\nThat's the steelman but I don't agree with it. https://example.com/ 20254 422943 422779.422943.423214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4499917323387 0 \N \N f 0 \N 0 236376004 0 f f \N \N \N \N 422779 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437847 2025-03-14 23:34:36.792 2025-03-29 22:39:49.743 \N Yes!\n\nOur frontend is currently SolidJS written in TypeScript:https://github.com/MutinyWallet/mutiny-web\n\nAll of the lightning-related libraries are written in rust and binded to typescript, ie, the package I linked above is here on npm: https://www.npmjs.com/package/@mutinywallet/mutiny-wasm\n\nWe have a dev chat room on Matrix if you wanna join and contribute to the conversation or code: https://matrix.to/#/#mutiny-community:lightninghackers.com\n\nWould be happy for other contributors, we are pretty much doing everything in the open so check out the github project boards and milestones on the repos. https://example.com/ 16929 437727 437727.437847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62598366936532 0 \N \N f 0 \N 0 155480012 0 f f \N \N \N \N 437727 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428129 2025-03-06 21:51:35.685 2025-03-29 22:39:49.744 \N Very good post. The way BlackRock was able to buy up single family homes post 2008 was aided by Fink's government connections too. I really fear this spot ETF push is partially intended to ultimately give the U.S. govt the opportunity to\n control bitcoin's price like Chase and other banks have been controlling price of gold. I don't think they will succeed since custody of physical bitcoin is so easy, but I'm suspicious of anything involving Fink and BlackRock.(Tinfoil Hat warning) https://example.com/ 15091 428077 427798.428077.428129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.720662742831415 0 \N \N f 0 \N 0 58798406 0 f f \N \N \N \N 427798 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416996 2025-02-26 01:00:16.627 2025-03-29 22:39:49.746 \N you're killing it https://example.com/ 15728 416994 416994.416996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.90216097278714 0 \N \N f 0 \N 0 229124149 0 f f \N \N \N \N 416994 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410599 2025-02-20 15:01:23.341 2025-03-29 22:39:49.988 \N I agree on all of your points, but like others have said, context matters. Nobody should be storing their life savings in ecash notes - just like nobody should be storing their life savings in paper cash notes - but there's nothing wrong with carrying a small wad of cash for spending money, even if the mint that issued that cash could go under at any moment.\n\nWhat people aren't realizing here is that while ecash is fundamentally a custodial IOU, it is also incredibly flexible compared to lightning. You're not just trading custody for privacy - it's more nuanced. You can build tools with ecash that are incredibly unwieldy or impossible on Lightning. Think about technologies like [Ecash-DLCs](https://stacker.news/items/544786) for example.\n\nFurthermore, ecash mints are a great moving target. Anyone who can run a lightning node can also run a mint. And yes, regulators _could_ say "ecash mints are banned" in specific countries... But they can't ban ecash mints worldwide, and neither can they prevent determined users from connecting to mints hosted in open-minded countries (or hosted over TOR). It would be an endless game of whack-a-mole. \n\nI personally think ecash mints will proliferate, and there will be two kinds:\n1. White mints, run by KYC'd public personalities. All customers must be KYC'd and all transactions logged. These are basically just bitcoin-backed banks which happen to be plugged into lightning.\n2. Grey mints, run by nyms like myself, hosted in open-minded countries or over TOR. No KYC, but probably higher fees and higher rug risk.\n\nAs always with a free market, everyone is free to vote with their money and use the solutions which work best for them. https://example.com/ 854 410574 410269.410572.410574.410599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9336415410884 0 \N \N f 0 \N 0 62201159 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402534 2025-02-13 19:47:34.364 2025-03-29 22:39:49.989 \N Those who want to use liquid and want a quick and easy way to access a true DEX I highly recommend SideSwap app. https://example.com/ 848 402003 402003.402534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.4554381678546 0 \N \N f 0 \N 0 221569277 0 f f \N \N \N \N 402003 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424216 2025-03-03 22:19:58.99 2025-03-29 22:39:49.99 \N ![](https://www.zapread.com/i/-8e) https://example.com/ 17030 239180 239180.424216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.3799395195331 0 \N \N f 0 \N 0 60817983 0 f f \N \N \N \N 239180 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421238 2025-03-01 14:11:47.253 2025-03-29 22:39:49.992 \N The music is front and center; we're playing it in the lab now! Much better experience than before. Reminds me of early Pandora. https://example.com/ 617 420483 420483.421238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1826665483643 0 \N \N f 0 \N 0 40458570 0 f f \N \N \N \N 420483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455462 2025-03-27 02:56:17.727 2025-03-29 22:39:49.994 \N Here are some useful applications:\n\n[Aegis](https://getaegis.app/).\n\n> Aegis Authenticator is a free, secure and open source app for Android to manage your 2-step verification tokens for your online services. \n\n[AntennaPod](https://antennapod.org/)\n\n> AntennaPod is a podcast player that is completely open. The app is open-source and you can subscribe to any RSS feed. AntennaPod is built by volunteers without commercial interest, so it respects your privacy while giving you full control.\n\n[Simple Calendar Pro](https://github.com/SimpleMobileTools/Simple-Calendar)\n\n> A simple calendar with events, tasks, customizable colors, widgets and no ads. \n\n[Catima](https://catima.app/)\n\n> A Loyalty Card & Ticket Manager for Android\n\n[Simple Contacts Pro](https://github.com/SimpleMobileTools/Simple-Contacts)\n\n> Easy and quick contact management with no ads, handles groups and favorites too.\n\n[DAVx5](https://www.davx5.com/)\n\n> Sync your contacts, calendars and tasks. Get live-access to your WebDAV Cloud files. All-in-one CalDAV/CardDAV/WebDAV solution for Android\n\n[FairEmail](https://email.faircode.eu/)\n\n> Fully featured, privacy oriented email app for Android\n\n[Florisboard](https://github.com/florisboard/florisboard)\n\n> An open-source keyboard for Android which respects your privacy. Currently in early-beta. \n\n[Simple Gallery Pro](https://github.com/SimpleMobileTools/Simple-Gallery)\n\n> A premium app for managing and editing your photos, videos, GIFs without ads \n\n[Loop Habits Tracker](https://github.com/iSoron/uhabits)\n\n> Loop Habit Tracker, a mobile app for creating and maintaining long-term positive habits \n\n[KDE Connect](https://kdeconnect.kde.org/)\n\n> Enabling communication between all your devices. Made for people like you. \n\n[OpenKeyChain](https://www.openkeychain.org/)\n\n> OpenKeychain helps you communicate more privately and securely.\n\n[Organic Maps](https://organicmaps.app/)\n\n> Organic Maps is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced OpenStreetMap data.\n\n[RHVoice](https://rhvoice.org/)\n\n> RHVoice is a free and open-source multilingual speech synthesizer.\n\n[RunnerUp](https://github.com/jonasoreland/runnerup)\n\n> A open source run tracker \n\n[Vynil](https://github.com/VinylMusicPlayer/VinylMusicPlayer)\n\n> A material designed music player for Android \n\n[Voice](https://github.com/PaulWoitaschek/Voice)\n\n> Minimalistic audiobook player \n\n[Geometric Weather](https://github.com/WangDaYeeeeee/GeometricWeather)\n\n> A Material Design Weather Application \n\nAnd of course, [Open source lightning wallets with on-chain support](https://stacker.news/items/222381) https://example.com/ 5725 455338 455338.455462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8546488495324 0 \N \N f 0 \N 0 156108750 0 f f \N \N \N \N 455338 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430969 2025-03-09 14:39:31.23 2025-03-29 22:39:49.995 \N For me, there’s a lot of nonsense on Reddit and I’ve been a lurker for awhile. I only recently decided to post because my wife is interested in discussing bitcoin, but not to the level that I’d be able to chat about it on here. I went down the rabbit hole of money and health and she took the health baton and is making sure we eat steaks and dodge seed oils. But yea, it’s cool to be able to have discussions with a like minded community and get a few sats here and there. \n\nI feel like it’s just a positive feedback loop. We get zapped sats, we zap sats to others on SN and Nostr. It’s all positive and that’s something I’m all for putting out there. \n\nRecently I zapped a few friends that never had bitcoin, about 12,000 sats each and they were all like WOW, this is amazing and are now going down the rabbit hole. One of them being my 7 year old niece. https://example.com/ 13177 430417 429764.430417.430969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0845396106087 0 \N \N f 0 \N 0 122324883 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437892 2025-03-15 00:42:24.906 2025-03-29 22:39:49.743 \N I tend to think technology generally expands the range of our capabilities rather than being good or evil in and of itself. Although not all technology is created equal in that regard.\n\nNuclear energy also comes with nuclear bombs.\n\nThe internet is a repository of information which can be used to advance and democratize our collective knowledge, but also to algorithmically manipulate us, spy on us, and waste our time. You can use it to give yourself a near-free better-than-college education or you can use it, like more people do, to trade in your mental health for quick dopamine hits.\n\n"No tree, it is said, can grow to heaven unless its roots reach down to hell."\n\nTherefore, like the quote in @davidw's [post](https://stacker.news/items/320756/r/ratiotile), what _should_ be done becomes more important than what _could_ be done, in light of technology's increasing power to do more and more.\n\nRegardless, I don't hold much stake in the deceleration crowd since it seems to me that what can be built, will be built, whatever regulations we may collectively put in place in one time/place now may not be honored in another time/place. It's very possible that calls for deceleration won't slow down the people we'd want it to anyway.\n\nSo I think your only real option is to determine what future you want to live in (as opposed to other competing visions), decide what you can do to implement technology in a way that supports that future, and then build it and fight for it. Otherwise, by merely asking everyone to "just stop", you're really only giving up control of how it gets built to someone else's idea of what it should be -- someone who may not listen to your call to "just stop", and who may have radically different views than you on what to build with it. https://example.com/ 18306 368174 368115.368174.437892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.07156245727877 0 \N \N f 0 \N 0 77905695 0 f f \N \N \N \N 368115 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431186 2025-03-09 16:02:10.046 2025-03-29 22:39:49.744 \N Another difference is that, contrary to those other platforms, high-quality, long-form and thoughtful content _does_ get rewarded here. \n\nHere's what I've noticed, as someone who's hungry for this and bitches about it from time to time: there's a sizeable group of lurkers (not only lurkers, but many of them are lurkers) who come out of the woodwork on SN when you give them something smart and thoughtful. So if that's the kind of thing you want, don't just bemoan its absence, be an active force in creating it, and you'll find a horde of others hungry for the same thing. https://example.com/ 678 406671 406671.431186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.46912314338572 0 \N \N f 0 \N 0 230931916 0 f f \N \N \N \N 406671 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434803 2025-03-12 08:51:01.145 2025-03-29 22:39:49.746 \N Thanks for the honest feedback @ribbit! I agree with you. Loyalty rewards and such are very gimmicky. I've always felt that way as well. The truth is, it _still_ works though, which is hard to wrap my mind around at times.\n\nThrough diving into the loyalty and rewards space, I've learned a lot more about _why_ it works and it all just boils down to psychology and giving the customer another touch point to keep the brand top of mind.\n\nIn any case, it helps businesses retain customers and is a driving force in their sales in some way, shape or form.\n\nIt does hit different when it's Bitcoin rewards, though.\n\nThe cool thing about what you're saying is that most Bitcoiners already have Bitcoin and earning another 1% or whatever here or there really isn't _that_ appealing if they have to through extra steps. People still do it, though.\n\nBut for the everyday consumer, the NPC, the no-coiners, the pre-coiners - they earn those points like they're going out of style and don't really think twice about the fact that they're basically shitcoins. \n\nSo if we can more people earning Bitcoin instead, almost passively and seamlessly, I think people will have a far greater chance of looking into bitcoin and effectively being invested in its success without having to lift a finger. We shall see!\n\nRight now we do have some metrics. On average, ~30% of people who received an email to claim rewards (often times completely unaware they were getting them post-purchase) actually do 'claim' them. From there, ~40% of people withdraw them to a lightning wallet. Of note, the majority of people earning these rewards are NOT bitcoiners. They're just buying everyday products from businesses who aren't exactly 'bitcoin' businesses, and getting some sats in return.\n\nthanks again for the feedback and we'll certainly keep this in mind :) https://example.com/ 1705 434798 434795.434798.434803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.06594614967388 0 \N \N f 0 \N 0 72690939 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416986 2025-02-26 00:48:50.213 2025-03-29 22:39:49.748 \N Maybe no one uses Liquid because\n\n- it's trust model is worse\n- there is basically no tooling or software support because it is seem as a Blockstream thing, not a community thing\n- it doesn't actually provide privacy out-of-the-box, you need someone to host a coinjoin pool inside and there are none -- whereas the zSide sidechain would automatically be that perfect ongoing coinjoin with no overhead, cheap fees and great UX\n- because you have to do KYC on an exchange to withdraw https://example.com/ 7760 416982 416511.416954.416982.416986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89353841741071 0 \N \N f 0 \N 0 242994092 0 f f \N \N \N \N 416511 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456772 2025-03-27 21:20:25.485 2025-03-29 22:39:49.748 \N SN has just amazing interface, minimal and dark. This is my first week here on SN and already found this platform surprisingly useful @k00b. I was struggling with my questions since last 2-3 years and wanted some help and guidance. I never got the courage to speak out in any Twitter comment spaces, Nostr client posts, Youtube comments, even on Reddit. \n\nYour SAT bounties gave me a motivation to speak up and surprisingly my voice is heard here. I can feel SN can be my virtual Bitcoin buddy since I'm starting all alone without anyone to show me path. THANKS TO YOU and TEAM for making this such an amazing platform. :) https://example.com/ 7668 456150 456150.456772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.83884145806635 0 \N \N f 0 \N 0 131159560 0 f f \N \N \N \N 456150 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430914 2025-03-09 14:06:03.674 2025-03-29 22:39:49.988 \N Here are some other related Stacker posts, many listed in the **[SN Privacy Directory](https://stacker.news/items/342249/r/davidw)**:\n\n### **Search Engines**\n- [Search Engine Party - search engines classified by security and privacy](https://stacker.news/items/192007/r/davidw)\n- [Building a new Web Search Engine. Just for you, Stackers!](https://stacker.news/items/102667/r/davidw)\n- [What search engine do you use?](https://stacker.news/items/190369/r/davidw)\n- [Private search engine Kagi now supports payment in bitcoin](https://stacker.news/items/240752/r/davidw)\n- [Brave Search launches independent image/video search](https://stacker.news/items/219706/r/davidw)\n- [Show SN: Preturnio - a full-text search engine for Bitcoin](https://stacker.news/items/170105/r/davidw)\n- [Search engines are boring. Say hello to discovery engines](https://stacker.news/items/436566/r/davidw)\n- [Stract is an open source search engine for hackers and tinkerers](https://stacker.news/items/421125/r/davidw)\n- [Mullvad Leta - Search Engine Proxy for Mullvad Customers](https://stacker.news/items/179487/r/davidw)\n https://example.com/ 866 430824 430824.430914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6192832004647 0 \N \N f 0 \N 0 226086516 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430921 2025-03-09 14:09:34.617 2025-03-29 22:39:49.99 \N This is a fundraising tool, anyone can pay ~$50 to Elizabeth and she will fly a US flag over the capitol for a day, then have her staff mail it to you\n\nhttps://www.warren.senate.gov/services/flags\n\nShe doesn't care who you put in as the honoree and her signature does not indicate a change in tone\n\nShe probably doesn't read these flag requests at all and just lets her staff handle them and stamp her signature on the certificate\n\nBecause $50 is $50 https://example.com/ 20198 430919 430919.430921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8021004292397 0 \N \N f 0 \N 0 42194476 0 f f \N \N \N \N 430919 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458293 2025-03-29 07:11:30.551 2025-03-29 22:39:49.995 \N IMO stuff that's offline. Not everything needs to connect to an app or a remote server. I mean both physical gadgets but also a lot of apps that could just work offline. https://example.com/ 9916 458172 458172.458293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2404724896406 0 \N \N f 0 \N 0 233073736 0 f f \N \N \N \N 458172 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424253 2025-03-03 23:25:19.231 2025-03-29 22:39:49.999 \N subs. \n\noh man i was on non-BTC reddit today and someone responded to a question I had with such a great comment and it literally pained me that I couldn't send him 100+ sats! https://example.com/ 8173 423986 423980.423986.424253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1715963548724 0 \N \N f 0 \N 0 180124818 0 f f \N \N \N \N 423980 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430979 2025-03-09 14:46:31.291 2025-03-29 22:39:50.226 \N This is brilliant. Nice [proof of] work. But your curse is that it doesn't surprise me anymore when you drop this kind of gold. https://example.com/ 3544 430970 430607.430964.430970.430979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0141552402451 0 \N \N f 0 \N 0 222514805 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404592 2025-02-16 01:43:01.684 2025-03-29 22:39:49.743 \N > there are a lot of issues we’re still not “out of the woods” on yet, but the doomsday predictions I once held certainly haven’t arrived yet.\n\nI'm reminded of clips of the financial experts right before the 2008 crash saying everything is OK. \n\nWe are not out of the woods for sure. This is how it works. We are kicking the can down the road so the crash will be worse. https://example.com/ 2056 404219 404219.404592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2879337200857 0 \N \N f 0 \N 0 20216083 0 f f \N \N \N \N 404219 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455403 2025-03-27 01:50:04.631 2025-03-29 22:39:49.746 \N It's worth pointing out that your attention is basically how you see the world.\n\nDepending on what you pay attention to, a different world will appear to you.\n\nWe're living in a world in which the majority of people are being shown what the big companies want you to see.\n\nFor example, scrolling away on tiktok is not showing you random videos. It's a personalized stream of content created for you, only you, so that they change your mind in a specific way. It could be for you to want to buy a product or to vote a certain way. It doesn't matter. It is whatever the client of tiktok wants to shift your mind to.\n\nAnd this applies to anything with a feed, including Facebook, YouTube, Reddit, etc.\n\nMake sure to pick whatever you want to pay attention to, because that's your life. Stop mindlessly scrolling your life away. https://example.com/ 8423 455374 455283.455374.455403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7959124264723 0 \N \N f 0 \N 0 215370373 0 f f \N \N \N \N 455283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407788 2025-02-18 11:29:42.319 2025-03-29 22:39:49.746 \N I’m waiting for block 840000 to be mined by OCEAN or an empty AntPool. Both are overdue (just over 1k blocks since either has happened 838886/838906). https://example.com/ 993 407786 407786.407788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6705929694197 0 \N \N f 0 \N 0 161109354 0 f f \N \N \N \N 407786 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414127 2025-02-23 16:53:39.107 2025-03-29 22:39:49.746 \N This thread is both better and worse than I thought. Everyone's so down on Bitcoin and self-custody.\n\nIf we can't handle self-custody for moderate Bitcoin amounts, why think it'll fix everything? Why are you here? Just buy the ETF and chill, right? You seem to know something we don’t—that Bitcoin's future is all about being custodial and censorable. Sounds like you’re onto something, you fucking LARPers. https://example.com/ 9353 414116 414111.414116.414127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6050654950718 0 \N \N f 129461886 \N 1 122721151 0 f f \N \N \N \N 414111 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442863 2025-03-18 21:14:34.63 2025-03-29 22:39:49.747 \N Look at the zipper on your pants. It probably has the letters YKK on it.\n\n[YKK](https://en.m.wikipedia.org/wiki/YKK) is the worlds largest zipper manufacturer. However, their dominating marketshare [has recently been threatened by newcomers](https://thehustle.co/ykk-japan-china-zippers/amp/) in the surprisingly cutthroat zipper market. https://example.com/ 9261 442820 442820.442863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4742578167136 0 \N \N f 0 \N 0 227668640 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434881 2025-03-12 10:06:57.516 2025-03-29 22:39:49.747 \N Adoption is important, isn't it!\n\nMy answer is... Coinbase.\n\nSure we all love to hate Coinbase, But "the rich get richer" as they say. A big company, with a big brand, and a big twitter account -- they advertise, they lobby in Congress. While everyone is out there tawking about nothing. Coinbase is making money. So every year my answer would probably be Coinbase.\n\nIf it isn't Coinbase, it would be one of those companies I see when I land in the Swiss Airport. Anyone who advertises. Those people are serious about adoption, and the rest of us are just larping. This is the tragedy of losing BitPay during the blocksize war -- getting that little Sticker on every payment terminal would have been Bitcoin's #1 biggest win. Instead that plan lies in shambles.\n\nClearly, the ordinals people gave us a big bump in actual node-running users. So they deserve special mention since node-runners are the truest Users of Bitcoin. https://example.com/ 20979 434865 434865.434881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2958035688008 0 \N \N f 0 \N 0 130145856 0 f f \N \N \N \N 434865 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435923 2025-03-13 05:29:24.362 2025-03-29 22:39:49.748 \N Tons of these in physics. Here's a couple.\n\nPeople often say "hot as the surface of the sun" to indicate extreme temperature. But the surface of the sun is actually weirdly cool (~5800 K) in comparison to the area surrounding it. This area (known as the corona) is MILLIONS of degrees hot. **And we don't know why**. It's called the [Coronal heating problem](https://en.wikipedia.org/wiki/Stellar_corona#Coronal_heating_problem).\n\nAnother fun one is called "[The axis of evil](https://en.wikipedia.org/wiki/Axis_of_evil_(cosmology))", and it is the observation that the most universal base of reference we have, the cosmic microwave background radiation—literally the remnant photons from the earliest time of the universe we can see (because before that, everything was opaque and weirdly orange), this background is completely aligned with our _solar system_. It's called the axis of evil because we're supposed to be insignificant, arbitrary, statistically randomly aligned. But this most basic yard stick is perfectly aligned with us. We also don't know why. A fluke, we must assume. But pretty evil, from a copernican perspective. https://example.com/ 10944 435823 435679.435823.435923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4892159492016 0 \N \N f 166989748 \N 1 31525240 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457938 2025-03-28 19:57:27.019 2025-03-29 22:39:49.988 \N [![20230621-212241.png](https://imgprxy.stacker.news/UsBbRurTceW4efQ6NhygyT_5NyI0Xwgj9JHR873NSYM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvZDNyNWtLazQvMjAyMzA2MjEtMjEyMjQxLnBuZw)](https://postimg.cc/T52VFFcD) https://example.com/ 900 457796 457766.457796.457938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.461944385856299 0 \N \N f 0 \N 0 203034571 0 f f \N \N \N \N 457766 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444446 2025-03-19 22:07:43.563 2025-03-29 22:39:49.989 \N I have nothing but respect for the man, he's certainly a smarter and better engineer than I am. With that said, I don't find him interesting at all. Reading the white paper for Ethereum and comparing it with Satoshis makes it incredibly clear that Vitalik cares about financial instrumentation rather than decentralized trustless economic systems. The switch to proof of stake made this pretty clear, of course. \n\nEthereum is just not usable for anything right now. I'm pretty extreme on this but I think it will be forgotten in a few years. It's just not fun to develop. https://example.com/ 4177 443527 443272.443527.444446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8819628235198 0 \N \N f 0 \N 0 203482948 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457988 2025-03-28 20:39:00.623 2025-03-29 22:39:49.744 \N # White - Using Fiat #\n\nFiat area is infinite and yet it is also a place where the value can be stolen, \ncounterfeited , devalued, centrally planned and taxed.\n\n# Gray B/W Noise - KYC/AML Zone of Absorbtion # \n\nHere is where the off ramp from usury happens and the threat of documenting your escape is clearly a warning for you to shut up and continue on your slave path. \n\n# Black - Using Bitcoin #\n\nYou've learned how to hold your own. You've sent from one wallet to another and another. You've bought stuff. You sold your bitcoin for a premium and bought more and then sold it again for a premium. You have set up your Lightning Node. You are routing payments for cheap just to move in locked signature channels. You are sending to other nodes and they are sending on chain back to your hot wallet and you are sending some somewhere else. You are streaming media. You are boosting value for value. You just use fiat to pay for shit you have to have and now bitcoin pays for what you want. https://example.com/ 5775 457897 457845.457897.457988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.989875075222848 0 \N \N f 237591079 \N 1 96477166 0 f f \N \N \N \N 457845 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404601 2025-02-16 01:56:49.034 2025-03-29 22:39:49.744 \N > Could you inspect the mempool in the days leading up to the prize block and outbid competing transaction's miner fee?\n\nI doubt it, because you state that this is "well-known", so miners would know too. A miner would cherry-pick her own transaction to spend the UTXO. The only way it would be rational for the miner to mine your tx instead of her own, would be if you offered a fee worth more than the UTXO itself. \n\n> What's are your tactics to spend it first?\n\nAssuming it's a large enough UTXO to justify it, I'd try to time the purchase of some cloud mining, and try extra hard to win that block, and include my own tx in the block.\n\nCurious to hear the answer about propagating a "not-yet-but-soon-will-be"-transaction. I believe it would, or at least should, propagate. \n\nFun discussion.\n\n https://example.com/ 16571 404527 402188.403708.404527.404601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.632729880716703 0 \N \N f 0 \N 0 64054383 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455459 2025-03-27 02:53:15.658 2025-03-29 22:39:49.746 \N Thanks for sharing. We are currently looking at this as a demo for gathering feedback, while we're working away at an official V1 that will have a second chapter, a back-end, and more polish. Would love to hear any feedback you may have. https://example.com/ 19502 455396 455396.455459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2308193593815 0 \N \N f 0 \N 0 224899939 0 f f \N \N \N \N 455396 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431059 2025-03-09 15:12:39.078 2025-03-29 22:39:49.988 \N >An inflation bug, for instance, can go undetected In monero, and it's possible that's already happened.\n\nIt's more than possible; it's very likely. Imagine spending a month of full-time work to find an inflation bug, but the bounty is not worth it. You'd be tempted to quietly inflate the supply of Monero in order to compensate yourself for the time you spent working. And then you'd disclose the bug to prevent someone else from finding it and making Monero worthless, which would prevent you from exploiting future inflation bugs. So there is a very clear risk/reward ratio for finding and subtly exploiting inflation bugs in Monero.\n\nWhat's more, Monero developers, notably FluffyPony, say that you shouldn't hold XMR -- that you should only hold it long enough to buy something. This is the opposite of what most other cryptocurrency developers say, which is to buy and hold. I have to wonder if some of the Monero developers are subtly trying to keep people from getting wrecked in the event that some random person finds an inflation bug and dumps on all the exchanges. https://example.com/ 14404 417426 417426.431059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.95360795289419 0 \N \N f 0 \N 0 172616837 0 f f \N \N \N \N 417426 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402467 2025-02-13 18:39:20.946 2025-03-29 22:39:49.989 \N My guess is they're part of the debt-fueled pathological system borne out of a decade of free money.\n\nAll growth, no profit, requiring a constant stream of new debt to exist.\n\nA recession is the reckoning for companies that overextended in this way. Those that start to reach for actual yield more aggressively in these times reveal their cards this way.\n\nReddit is bleeding potential ad money through third party apps and clients and needs to plug that hole to survive. https://example.com/ 10549 402462 402000.402031.402039.402062.402462.402467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3724072401494 0 \N \N f 0 \N 0 186341733 0 f f \N \N \N \N 402000 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410528 2025-02-20 14:16:43.717 2025-03-29 22:39:49.99 \N Two years ago I talked to my wife's nephew about being bitcoin only and also gave him advice on how to start a fitness coach/trainer business he wanted to start. His dad had wanted him to follow in his footsteps and be a firefighter but he didn't want that life. \n\nHe is in his early 20s and he had been trading nfts and shitcoins during the last bull and crash. I thought I got through to him as to why that was stupid and he should focus on working hard, building his business and saving in bitcoin. I even told him if he wanted to start up his business I would give him the capital to get it off the ground (not a ton of money but corporation registration, logo design, basic marketing materials). \n\nHe and his GF moved into my father in-laws house after my mother in-law passed away. It was supposed to be a mutually beneficial arrangement, where my father in law who has some chronic health issues would have someone around so he could stay in the home and my wife's nephew and GF would have a place to stay rent free if they were willing to help my father in law out with some cooking, cleaning, take him to run errands etc. \n\nNow today I find out from my wife who is in Texas to help look after her dad after a major surgery, that they need to kick her nephew and his GF out of the house because he has been stealing her dad's money and credit cards and degen gambling on crypto and sports. Sad just sad. \n\nNothing irritates me more than people who squander good opportunities and the kindness of others to instead make perpetually stupid, selfish decisions. \n\nThat's my rant. Don't shitcoin folks. https://example.com/ 848 410497 410249.410497.410528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3566364131673 0 \N \N f 0 \N 0 177643274 0 f f \N \N \N \N 410249 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408111 2025-02-18 15:10:42.02 2025-03-29 22:39:49.994 \N Thank you! One of the reasons I wrote it is that I want to implement Ark and musig is practically a dependency of Ark. The coordinator of this musig playground may be a precursor to a future Ark Service Provider. https://example.com/ 21713 408068 408068.408111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.93322912021176 0 \N \N f 153242557 \N 1 197382245 0 f f \N \N \N \N 408068 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458291 2025-03-29 07:09:07.699 2025-03-29 22:39:49.996 \N I've completed the phasing out my old json library in [nostr-java](https://github.com/tcheeric/nostr-java/tree/feature/feature_bug_fixes), and will be releasing a new version with Jackson json library support. \n\nIt's still alpha and unstable, and I'm expecting a few de/serialisation issues here and there, I'll fix them as they pop up.\n\nI've had amazing feedback from a random user in Japan, and invaluable help from another guy in brasil, for which I'm immensely grateful.\n\nAlso, I'm finally learning modern Javascript. 😎 https://example.com/ 5752 458215 458215.458291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7491757252816 0 \N \N f 0 \N 0 107694421 0 f f \N \N \N \N 458215 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414168 2025-02-23 17:33:22.609 2025-03-29 22:39:49.745 \N I was thinking of your posts when I set it up.\n\nLets make this territory great! \n\nAs is, I already have lots of feedback for @k00b and team on the general plan/incentives/tools, to make these "territories" work well. Like he says, its *soft*ware.\n\nYou can count on me to be a high-integrity territory-op(erator), in a do-whats-best-for-greater-good kindof way.\n\nIn due time, i'm hoping we can agree to some principles/guidance that make sense for the econ territory, which will be compatible with the long run vision of SN.\n\nGiddy-up! https://example.com/ 1010 413884 413675.413884.414168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31415662833075 0 \N \N f 300277767 \N 3 218737793 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408052 2025-02-18 14:48:04.313 2025-03-29 22:39:49.746 \N Just got off the night shift. Found Stacker.News last night and now I can’t get enough. 🔥 As a long time redditor this is right in my wheelhouse. And it’s a game changer considering it’s built around the Bitcoin network! 🧡 https://example.com/ 1717 407918 407918.408052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.38225055535059 0 \N \N f 0 \N 0 53207996 0 f f \N \N \N \N 407918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431261 2025-03-09 16:09:40.242 2025-03-29 22:39:49.746 \N I think that industries which rely on coordinating and distributing information will eventually be replaced by cheaper, decentralized protocols. The less tethered their services are to producing physical goods, the less likely they will survive in an increasingly digital landscape.\n\nSome examples:\n\n- Social media: Likely to be replaced by Nostr or something similar.\n\n- Transport: Companies like Uber do not supply the cars or the drivers, only the technology to organize them. Perhaps a driver reputation and coordination system will emerge that cuts out the middleman. Especially when self-driving cars start dominating the roads.\n\n- Online marketplaces: Platforms like eBay do not provide the products, only the platform for buyers and sellers to coordinate trades. A multi-billion dollar company like eBay does not need to exist in a Nostr world.\n\n- Education: All the information you can find at a university is already available online. While people also go for the experience, connections and facilities (like labs if you want to work in STEM), there is a LOT of fat that can be cut from academia. Like, 90% fat.\n\n- Law and accounting firms: These survive based on managing data and understanding esoteric laws. They produce no physical goods. I suspect there won't be many human lawyers and accountants in a few decades.\n\n- Governments: These survive based on controlling money and information, neither of which seems feasible in a Bitcoin + AI world. I don't expect them to disappear, but most likely will be declawed. That also goes for government-adjacent industries like military and social healthcare systems. https://example.com/ 18528 386922 386922.431261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4253780211131 0 \N \N f 0 \N 0 98092188 0 f f \N \N \N \N 386922 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410464 2025-02-20 13:47:02.291 2025-03-29 22:39:49.747 \N Hopefully sub territories and sub sub territories are quite a ways away. I know founders are going to want to try to recoup the monthly fee but personally I think we need this wild west phase to play out. Let the market determine which territories have staying power and the most committed founders (because lets face it, they won't be profitable any time soon). \n\nI also think, now that we have territories, SN should lean into the frontier town theme. The whole user experience could be built around the saloon being the town centre and the home page as it is now could direct people to interesting places where they might like to visit. Besides ads/boosts maybe the Saloon stays at the top of the home page. then you get into the top 10 (or so) hot posts and lower down the page maybe feature a "what's going on around town" section where some of the top territory posts are featured. \n\nThat could be the default layout of the homepage but then of course you could have other filtering (recent etc). \n\nA couple other ideas (admittedly a bit corny- but I like a little corn) to tie into the theme. In the saloon there should be a bartender and when someone walks in and says "howdy" the bartender replies with a beer emoji. Little details like this drive a lot of retention. Now users need to stop by and engage and get their beer, just like they need to zap to keep their hat. And the other idea would be when entering a territory maybe we get some animation, like we do when we zap. Maybe saloon doors opening and users get the sense they are somewhere new. Maybe only happens the first time per day you enter the territory though, could get annoying if you are in and out as it is more obstructive than the zaps lightning bolts. \n\nAnyways some crazy ideas for you. https://example.com/ 10490 410452 410269.410445.410452.410464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.083806966836 0 \N \N f 88030844 \N 1 11212493 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423391 2025-03-03 10:30:51.403 2025-03-29 22:39:49.748 \N I feel like throughout my life about every 5 years or so I've experienced an intellectual puberty (an awkward and uncomfortable period of change). I can also sense "me" converging on a certain self as I age yet I do hope to maintain self-disruptive plasticity. \n\nThis last 5 years were marked by a significant shift in intellectual patience, needing certainly less and even preferring to grapple with things I don't understand. I've meaningfully reduced, seemingly, the rush to conclusion ... which seems to allow evidence to accumulate before decision making. \n\nI've also begun to accept sacrifice as a payment for progress as I've run out of trivial things to sacrifice. I would normally hoard all that I found sacred but I've learned that traveling lighter might help me get farther faster.\n\nI mostly just hope to continue to get better at the things I care about over the next 5 years. I wish I knew what that looked like but historically I don't. https://example.com/ 19930 423373 423373.423391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.99293663301128 0 \N \N f 0 \N 0 406718 0 f f \N \N \N \N 423373 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421173 2025-03-01 13:18:47.215 2025-03-29 22:39:49.987 \N People have covered a lot of ground with equities and their BTC journeys. To add something a little different, I would say the following:\n\n1- Not prioritizing location - I spent a lot of time in different cities where your financial/economic development lag and you can only take remote jobs to make up the difference. However, you miss out on all of the convos that get people hired/help people fund their companies.\n\n2- While this is a financial failing, I feel somewhat of a moral vindication that I haven't raised institutional venture capital, however that's easily one of the ways you can quickly build personal wealth if you play it right. https://example.com/ 9863 420527 420527.421173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2290129444369 0 \N \N f 0 \N 0 39376906 0 f f \N \N \N \N 420527 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456654 2025-03-27 18:28:54.319 2025-03-29 22:39:49.745 \N A classic programmer's joke is relevant here:\nThere are three hard problems in computer science: naming things and off-by-one errors.\n\nOff-by-one errors are things like buffer overflows. But the first problem, naming things, is most relevant in this case. You reference a name and somehow get the wrong data/code -- it's odd that this isn't well-understood at places like Github and NPM, despite being the subject of an old joke.\n\n---\n\nYou've heard of Not Invented Here syndrome (NIH). If you generalize NIH, you get Not Learned Here syndrome (NLH), in which a person/organization only learns lessons through their own experience, rather than through the experience of others. This is a syndrome, because the sufferer is all but guaranteed to learn the wrong things from their experience, whereas reading about others' experiences all but guarantees that you'd learn the right things.\n\nIf you further generalize NIH, you get Never Gonna Learn syndrome (NGL), in which the person/organization is totally incapable of learning certain categories of lessons. At this level, the sufferer is so tied up with unproductive tasks (e.g. meetings, regulatory compliance, etc) that they barely have time to do their work. As a result, they have no time to learn anything that isn't related to specific work tasks. When you are designing a new feature for your PaaS, you don't even realize that you need to learn about certain security edge-cases. https://example.com/ 16571 456562 456562.456654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.50690258585308 0 \N \N f 0 \N 0 138036213 0 f f \N \N \N \N 456562 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408017 2025-02-18 14:28:29.254 2025-03-29 22:39:49.748 \N :) Let me explain the experiment a bit then, since it doesn't make any difference for the results, and I would be happy to hear suggestions and criticism of any kind.\n\nI am interested in ways to encourage people (in tight-knit communities: i call them pseudofamilies) to express terrible ideas. \n\nPseudofamilies (e.g. stacker.news, countries, religious sects) have collective intelligence because it's ok to be wrong, and you will be error-corrected without fear of exclusion. There is [psychological safety](https://www.inc.com/justin-bariso/after-years-of-research-google-discovered-secret-weapon-to-building-a-great-team-its-a-lesson-in-emotional-intelligence.html), as google puts it. \n\nIn this way, error-correction, the collective gains intelligence. But unlike biological families where genetics determine membership, pseudofamilies determine membership by way of dogma. Axioms. E.g. If I believe that transwomen are all simply men who dress like women, then I am excluded from the trans pseudofamily. \n\nThese two phenomena lead pseudofamilies to stagnation, loss of swarm intellect. How many times must you error correct an altcoin-supporting new member before you ignore/ban them instead? The more a collective learns, the more axioms are established, and the more _haram_ it becomes to say dumb ideas.\n\n\nSo to answer the question about the experiment:\n- If the winner is the most zapped one, then the incentive for players is "write something that coyly implies I know our true values". But I want to incentivize fearless error expression: \nI want players to "write something wrong". \n\n- By telling people to guess what the pseudofamily thinks is wrong, there is no implication that the writer should be excluded; it is not their own opinion they are expressing. It is a way to incentivize collective observation of what dogma/axioms we actually have.\n\n- The game is designed so that zapping people is hurting their chance of winning. Instead, the incentive is to zap those you don't want to win. This means players who zap are forced to either support a position they disagree with, or let it win 80k sats.\n\n- Conversely with zonks (which is a word i just invented to describe our "downvotes", flagging. correct me if you have better nomenclature). It also encourages new comments/errors. \n\nIn summary, I want to encourage tolerance of expression of bad ideas by letting players de-radicalize themselves though performing _haram_ actions. If you ask a man a small favor and he agrees, he is more likely to agree later to a greater favor. To give a fundamentalist the chance to consider the ideas of their heretics, first convince them to shake the heretics hand.\n\n- The "second to last ranked" vs just picking the lowest ranked comment is left as an exercise to the reader :) https://example.com/ 2529 406917 406917.408017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.62589450339712 0 \N \N f 0 \N 0 52806791 0 f f \N \N \N \N 406917 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424259 2025-03-03 23:28:45.232 2025-03-29 22:39:49.748 \N - I dont understand how it works, therefore I am too scared to learn about it\n- I understand everything because I did 10-hours of research, therefore I don't need to know anything more\n- My fiat banks aren't censoring me. My money is insured. My portfolio of index funds and bonds is safe. I don't need the risk.\n- We need the Fed to adjust rates and print money to maintain stability. Covid would have been much worse without the fed's soft landing.\n- Is not scarce if there are 10k copycats\n- Is not secure if MtGoX, FTX, Celcius can lose it\n- what about all the coins that were lost? No way I can trust myself to guard 12 words.\n- I need a phone number to call so I can clawback a mistaken transaction\n- I can't buy a house with noKYC\n- its used in crimes and scams\n- my bank says I shouldn't use it\n- Who is Satoshi? I don't trust him, seems shady.\n- Who are these devs that control it? Seems shady.\n- what happens when they change the code to take all your money?\n- It uses too much electricity\n- bitcoin is dirty, wasteful\n- I don't like the idea of bribing miners so my payment gets processed. My bank has a transparent fee\n- Needs more inflation to encourage spending\n- too slow, not private for medium of exchange\n- too volatile to work as a store of value\n- its too expensive. I cant afford to buy a single coin\n- bitcoin can't do X that Y crypto does therefore it will fail\n- governments will not allow it to be used as unit of account\n- people with gains on their BTC got lucky\n- bitcoin is just like all the cryptos, but its already obsolete\n- what if I buy the wrong Bitcoin?\n- what if it forks again, how can I know which is the real BTC? https://example.com/ 8726 397996 394203.397996.424259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3943158570959 0 \N \N f 0 \N 0 138516758 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416925 2025-02-25 23:12:57.508 2025-03-29 22:39:49.99 \N No I am waiting for the wild west phase to simmer down but your chess forum example is the precise reason I wanted a sports sub. There are so many sports forums, sports discussion on social media that could be potentially targeted.\n\nI know @kr was working on some marketing stuff recently that he was asking for feedback on. Would also like to see where that goes and ensure there is synergy between the way I would be marketing the sports territory and SN is marketing the broader site. \n https://example.com/ 974 416073 415637.416073.416925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8984517263094 0 \N \N f 0 \N 0 82957710 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422053 2025-03-02 08:38:10.807 2025-03-29 22:39:49.992 \N I enjoyed writing and researching this a lot.\n\nA short summary:\n- scalability trilemma means BTC can't be scalable, secure and decentralized at the base layer\n- Bitcoin Cash, going the big block way route of 32MB blocks, can [only do 50 transactions per second on the base chain](https://gist.github.com/stanislavkozlovski/ccdcd6c78c5ae7c059f8092621f9b70e)\n- if you wanna scale via big blocks, you'd have 190TB of data *a year* to support 24,000 transactions per second. No node can keep this much, not to mention syncing\n- _Lightning solves this beautifully_\n- The default LND node is able to do 33 payments per second on a 8vCPU 32GB memory cloud machine\n- Assuming most Pis running LND can do 4 payments a second, the Lightning Network right now should be able to scale to *16,264 payments a second*.\n- That number is 2.2x the average transactions from Visa in 2021, so more than enough to overcome them\n- At the same time, Lightning's transaction fee is 13 times less than visa. 0.1% vs [1.29%](https://www.fool.com/the-ascent/research/average-credit-card-processing-fees-costs-america/)\n- Lightning hasn't even started prioritizing scalability or performance. Reliability has been at the forefront\n- [As River shared](https://old.reddit.com/r/Bitcoin/comments/8sajmb/ln_the_chances_to_route_a_certain_amount_of_btc/), its payment success rate is 98.7% at an average payment size of $46. 4 years ago, Lightning had $5 transactions fail 48% of the time.\n\n![image](https://bitcoinmagazine.com/.image/c_limit%2Ccs_srgb%2Cq_auto:good%2Cw_700/MTkzOTM1NjA2NjU1NjI0ODgx/transactions-per-second.webp)\n https://example.com/ 14489 420988 420816.420988.422053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8168405899602 0 \N \N f 0 \N 0 2927824 0 f f \N \N \N \N 420816 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 433946 2025-03-11 14:27:11.022 2025-03-29 22:39:49.993 \N Day 221 of snailposting everyday 'til BTC hits $100k.\n\n...and 21 push-up(s).\n\n__@_'-' https://example.com/ 17316 433828 433828.433946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0249714061224 0 \N \N f 516226706 \N 4 175402209 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444499 2025-03-20 00:12:57.292 2025-03-29 22:39:49.746 \N Discussing things in dollar denominations is not useful to this kind of analysis. If Bitcoin goes up in USD value, so will the routing fees so dollar value is irrelevant. Instead the question to ask is whether fees are too small with respect to the **fee rate** needed to open/close channels and the payments that are made. \n\nThe answer to that question depends on a number of different factors like how long the routing node is intended to be up (which impacts whether the opening/closing fees make you net negative), the time dedicated to the maintenance of the node (a form of labor cost), and the proportional risk of each payment potentially jamming your channel (which you should get compensated for).\n\nPersonally, I don't think this is a problem until we see a significant amount of the network force-closing and/or a dramatic decrease in channel openings. Fee mechanics are still really important and I think not adjusting some of these models can result in problems in the future though. https://example.com/ 20525 443593 443593.444499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.09673477718719 0 \N \N f 0 \N 0 160061062 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458254 2025-03-29 06:25:23.27 2025-03-29 22:39:49.987 \N Emphasis on pay to post is good. It's easier when thinking about SN to focus on the innovation of receiving sats ("earning"), but a forum where you must pay to post is an equally powerful innovation. \n\nI'm curious for your thoughts about the incentives of SN rewards. Here is how I understand it:\n\nPosters have an incentive to post good posts -- people will zap them if they do. \n\nCommenters have an incentive to make good comments and engage in the conversation -- people might zap their comments.\n\nWhat is the incentive for zappers?\n\nSN rewards (and the leaderboard) look to me like an attempt to incentivize zapping. \n\nIf SN removes rewards, the only reason to zap good content is "good will." It seems to me that the less we have to rely on people doing the "right" thing and the more we give them an incentive to do the "right" thing, the better everything works. \n\n(I would say this is one of the major flaws of most governments: we expect elected officials to do useful/good work without providing any sort of incentive to do so. People are self-intetested. We can rely on this.)\n\nDo you have thoughts on alternative ways to incentivize zapping? \n\n(I suppose an incentive for zappers might be to encourage more good content, do you think this is a good enough incentive?)\n https://example.com/ 9378 458122 458122.458254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1645561617526 0 \N \N f 0 \N 0 237853961 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 446820 2025-03-21 13:46:17.185 2025-03-29 22:39:49.99 \N It was unsuspecting when I saw it when navigating to notifications tab.\n\nA toggle would be ideal, also for opt-out. https://example.com/ 16695 446513 446513.446820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3737015320377 0 \N \N f 0 \N 0 208055453 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408292 2025-02-18 17:20:26.912 2025-03-29 22:39:49.994 \N Exchanges save permanent purchase records with the amount, date and customer's full name, photo, home address and ID scan, and they disclose these records to the state and corporations, without the customer's knowledge or permission. If you have KYC Bitcoin, the best option is to sell the same amount back to the same exchange to generate a sale record (so that the exchange and the state may assume that you don't own Bitcoin anymore).\n\nThen buy KYC-free Bitcoin with a peer-to-peer exchange, Bitcoin ATM or Azteco voucher: https://anarkiocrypto.medium.com/how-to-buy-earn-and-spend-kyc-free-bitcoin-and-monero-without-id-or-a-bank-account-496ff20986ff\n\nFor forward privacy, you can mix Bitcoin via Whirlpool (Samourai Wallet, Sparrow Wallet) or swap Bitcoin -> Monero -> Bitcoin (use 2 different accountless exchanges and make multiple withdrawal transactions in order to avoid correlation). https://example.com/ 672 408190 408190.408292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0048884335354 0 \N \N f 0 \N 0 215838501 0 f f \N \N \N \N 408190 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421298 2025-03-01 15:08:27.311 2025-03-29 22:39:50.232 \N ![](https://i.pinimg.com/originals/e5/08/e2/e508e22928025ef53a97a7c49a3a446c.jpg)\n\nEurope Central by William Vollmann\n\nThe only book in the world that will make you enjoy Shostakovich's music. \n\nIn typical Vollmann style, obsessively researched. It's a long book, but very worth the read. And if you have never read anything by Vollmann, it's an excellent place to start. https://example.com/ 19826 421268 420888.421268.421298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.00528340499316 0 \N \N f 0 \N 0 210475558 0 f f \N \N \N \N 420888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431090 2025-03-09 15:27:21.299 2025-03-29 22:39:50.236 \N The "having more mental space" argument is very interesting to me. There's some interesting science around this across a number of disciplines. The most readable intro is probably [this one](https://www.amazon.com/Scarcity-Having-Little-Means-Much-ebook/dp/B00BMKOO6S) but the idea goes deep: if the organism has to devote cycles to survival, there are less cycles to devote to longer-term projects. This shakes out everywhere, including mating strategies.\n\nSo I think it's plausible, at least. But I'm trying to guard against telling myself a story that I want to hear. https://example.com/ 8472 417257 417257.431090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.10796915671803 0 \N \N f 0 \N 0 13706345 0 f f \N \N \N \N 417257 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455706 2025-03-27 09:16:12.762 2025-03-29 22:39:50.237 \N The concept of trade returning to silver/gold in a lights out scenario is rational, but unrealistic. \n\nI think the order or priorities would be:\n\n* Canned food, dry food\n* Ammo\n* Access to hunting / fishing areas\n* Solar / Fuel sources\n* Arable Land\n* Cash / Gold / Silver\n\nBy the time local economies have sprung up enough for trade to resume, yes Gold / Silver may make a big come back but that wouldn't happen until 6+ months in a total lights out scenario.\n\nThere are many other things that will become practically more important, like having the ability to fix / repair things. Knowing how to skin an animal, having reliable fuel sources, etc....\n\nI'm not anti-gold and believe it may be logical to have a few thousand dollars worth as an emergency backup. However until you secured the first things on that list I wouldn't even bother... https://example.com/ 20117 455694 455649.455650.455665.455682.455694.455706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.18864844600046 0 \N \N f 0 \N 0 208273992 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424234 2025-03-03 23:05:59.928 2025-03-29 22:39:49.747 \N It's worth pointing out that recent advances in language models make it easy to authentically parrot talking points and fool niche communities into believing you care about their issues\n\nPoliticians love it when people think they "really care"\n\nTry not to be fooled https://example.com/ 12334 424143 423681.423788.423805.423997.424004.424143.424234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5392868464861 0 \N \N f 0 \N 0 57066954 0 f f \N \N \N \N 423681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443381 2025-03-19 10:10:55.433 2025-03-29 22:39:49.749 \N https://m.primal.net/HWIz.jpg https://example.com/ 6164 443338 443295.443336.443338.443381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1510353074713 0 \N \N f 259415507 \N 2 249685191 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:21.36 f \N \N \N 0 0 0 0 1 0 0 442333 2025-03-18 14:16:55.452 2025-03-29 22:39:49.749 \N *Today I am the queen of the house and you will not sit here. Is mine...*\n[![terry-puff.jpg](https://imgprxy.stacker.news/1u56YMgJBhxv6SK0-BsrMzU0_ZsCfDxBzfoKeHAMUKQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvVmtKbXdXMnkvdGVycnktcHVmZi5qcGc)](https://postimg.cc/hXRHbTSM) https://example.com/ 17570 442195 441600.442044.442195.442333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.79901432991275 0 \N \N f 163900305 \N 1 233801297 0 f f \N \N \N \N 441600 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451249 2025-03-24 13:18:20.947 2025-03-29 22:39:49.988 \N Day 270 of snailposting everyday 'til BTC hits $100k.\n\n...and 70 push-ups. (30 - 20 - 20)\n\n__@_'-' https://example.com/ 674 451208 451208.451249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.5266221167097 0 \N \N f 0 \N 0 228351171 0 f f \N \N \N \N 451208 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408279 2025-02-18 17:06:57.822 2025-03-29 22:39:49.99 \N I couldn’t tell the difference between celebrities on TV and adults in my community. I basically thought everyone was kinda famous, except me, my family, and immediate neighbors. \n\nLike WTF 😂 https://example.com/ 7773 407918 407918.408279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.61524396978623 0 \N \N f 0 \N 0 205613024 0 f f \N \N \N \N 407918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410403 2025-02-20 13:14:20.174 2025-03-29 22:39:49.99 \N Gut reaction to #1 and #2 is that it's annoying to click off-site. \n\nWhen a link post also includes a long quote (or the complete text) from the linked-to source, I'm WAY more likely to read it/engage with it. \n\nI realize not all links are just an article or text, but most of them are and if you click on the link, it's pretty difficult mentally to come back and write a comment or something. https://example.com/ 17494 410293 410094.410293.410403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4697833641211 0 \N \N f 0 \N 0 34330119 0 f f \N \N \N \N 410094 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403968 2025-02-15 12:14:04.642 2025-03-29 22:39:49.992 \N Hope to roll out Geyser Grants Round2 https://example.com/ 16336 401818 401783.401818.403968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8875014775586 0 \N \N f 0 \N 0 240298622 0 f f \N \N \N \N 401783 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456699 2025-03-27 19:28:35.553 2025-03-29 22:39:49.993 \N Onchain is NOT for day to day payments. It is mostly for opening/closing LN channels.\nStop using onchain as your payment network. Onchain is your vault, the hodl wallet that you barely move your corns.\nLN = the payment network\n\nAlways use the 3 levels stash method\n![3levels-stash](https://i.ibb.co/9yv661b/3level-stash.jpg)\n\nAnd read these guides to see the answer about how to enhance privacy using swaps between LN and onchain:\n- https://darthcoin.substack.com/p/lightning-cleaning-machine\n- https://darthcoin.substack.com/p/lightning-network-submarine-swaps\n- https://darthcoin.substack.com/p/bitcoin-and-privacy\n- https://darthcoin.substack.com/p/operating-with-ln-as-a-merchant\n- https://darthcoin.substack.com/p/private-lightning-nodes\n- https://darthcoin.substack.com/p/bitcoin-private-banks-over-lightning\n- https://darthcoin.substack.com/p/node-liquidity-guide https://example.com/ 16966 456698 456698.456699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.08644764145755 0 \N \N f 0 \N 0 218362303 0 f f \N \N \N \N 456698 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450957 2025-03-24 10:19:48.533 2025-03-29 22:39:49.993 \N Don’t need to. Both because they A) don’t need to visit the site and because B) they don’t need to sign-up. \n\n# A. Don’t need to visit the site\n- News is available elsewhere and content most of the time is just aggregated or a filtered of what appears elsewhere on the web.\n- Encouraging/highlighting more long-form user generated content and backlinks to StackerNews, would increase the perception that it is more than just an aggregation service.\n- Limited breadth & topics (will be a popular answer). I know this is subject to change in future and has already improved with the segregation of Nostr content, but still a barrier if don’t live & breathe these topics.\n- Content is lost if not seen that day or week. This is a biggie, because the experience is the very same for returning & engaged users. When returning to the site for the first time in months, users are not made aware of content (or sats) that they have missed during that time. It’s just lost or missed forevermore, unless they go digging. Adding this would help reinforce what an awesome source of value is here.\n\n# B. Don’t need to sign-up to see content\n- Content is completely open, but for good reason.\n- The trend with social sites is to optimise for sign-ups and then first few engagements.\n- In traditional social media that impacts the experience for those landing on the site, coercing them into sign-up. I know this is something you’ve made great efforts to avoid k00b.\n- I feel like SN is optimised in the complete opposite direction for the experience, in terms of approachability, transparency and/or zaps. A little more hand-holding & maybe a dismissible modal might help. Perhaps a middle ground to be sought between both those scenarios. https://example.com/ 712 448535 448526.448535.450957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.948336485645 0 \N \N f 90479336 \N 1 104375371 0 f f \N \N \N \N 448526 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451294 2025-03-24 13:35:09.241 2025-03-29 22:39:49.994 \N Yo Oscar thanks for doing this AMA. \n\nDo you think Fountain would ever consider adding a music catalog à la bandcamp? https://example.com/ 21521 451244 451244.451294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1222374951896 0 \N \N f 0 \N 0 27165285 0 f f \N \N \N \N 451244 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458296 2025-03-29 07:14:25.856 2025-03-29 22:39:49.996 \N I like it because there is a diversity of interests but a common core. There are enough new members and enough creativity to keep it peppy, but it's not like Reddit (very young, naive, posting redundant questions every day) or Nostr (so much meme noise that the signal is totally drowned out).\n\nIt's also pretty respectful in a way, like armed forces service members. They might knock on one branch or the other, but it's with respect. Here you get both sides of the political aisle (with a heavy dose of "both sides are crooks") but with enough respect and intelligence to see that all issues are more complicated than they seem at face value.\n\nIn short, there's a guy trying to make his local government better, talking to a dude eating out of a can in his bunker.\n\nThat said, we could use a little more feminine perspective around here. Not that it comes across as sexist; just "male-dominated".\n\nI think ironically the only thing that would stop SN from "flourishing" is to try too hard to be something else, or to be too many things. There are several cool forums that predate all "social media" (or the internet proper, for that matter). https://example.com/ 19484 458227 458227.458296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3129412207197 0 \N \N f 0 \N 0 175970659 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424082 2025-03-03 20:19:40.617 2025-03-29 22:39:49.747 \N I think the idea was good, the execution was ok at best, subpar at worst. \n\nI don't think it should have been extended a second month even though the changes (more stackers, less top heavy rewards) are improvements. I think the idea of having a March Madness once a year style tournament where everyone goes crazy is a good one and should be kept as an annual event. If the SN team really likes the engagement it creates maybe do a one week version every quarter along with the big tournament every March. \n\nIn my opinion the MSM event was great for existing power users but no so much for less frequent stackers and new users. \n\nI guess it comes down to what the SN team's goal is in creating the Madness. If it is to enhance engagement amongst the already engaged it was highly effective. If it is to entice less engaged stackers to be more engaged it was probably moderately effective at first and less effective in the second half of the month. If it is to entice new stackers to join it wasn't very effective at all because new people really didn't have any chance to rank anywhere in the standings that would amount to a large reward payout at the end of the month. \n\nIn my opinion, I think you can still reward power users but have a structure that is conducive to bringing in new stackers who hopefully eventually become power users. I recognize it's a delicate balance especially if you want to keep doing a good job limiting spam and not rewarding sats farmers. \n\nAnyways, those are my thoughts.\n\nCheers,\nGR https://example.com/ 9337 424049 423384.423591.423593.423595.423601.424009.424015.424037.424049.424082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6966843071636 0 \N \N f 1000834122 \N 7 221756915 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431007 2025-03-09 15:08:54.84 2025-03-29 22:39:49.748 \N I topped up my Mullvad vpn using lightning a few days ago, bought 3 months worth. https://example.com/ 15147 430700 430700.431007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0128883651452 0 \N \N f 80652391 \N 1 189857734 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422229 2025-03-02 10:28:30.11 2025-03-29 22:39:49.988 \N We all hate antagonistic experiences, like Mortal Combat combos of pop-ups, flashing banner ads, and abusive javascript practices. What's worse are antagonistic experiences that promise to make it all go away if victims pay a fixed amount. The term for this is *extortion*—the *protection racket* kind. This is the state of play. Ok, maybe that's way too dramatic. But In my opinion, this behavior is acceptable when there's etiquette and not coercion, just ask, if you're providing value most will say yes, you know what I mean?\n\n![](https://imgprxy.stacker.news/timALbG4k5lQI3kapPGrpUqM20Y19sz26lDIKVRIUPY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS8xYzg2MWQyN2ZmN2MzZjhjZDQ1MTRmNGE1YjZiMzEzNTIzNDhhYTJhNTVmMGQ3NDU3ZDA5MWY3NGQzNjkwZDZiLmpwZw)\n\nWe don't know all the innovation a lightning model will bring to advertising, but I feel it fits perfectly into the coming techno-cultural change, where you have Ai supercharging FOSS, decentralized hard money, and this sort of deflationary bare metal essence. 🤷‍♂️ https://example.com/ 19535 422111 422056.422057.422068.422076.422087.422098.422111.422229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6034833166225 0 \N \N f 0 \N 0 92896713 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416799 2025-02-25 21:10:51.113 2025-03-29 22:39:49.993 \N My original hang-up was the possibility of some new bitcoin+, that was basically identical to bitcoin except for having one clear advantage.\n\nTo me, the clearest shortcoming of bitcoin is that there's no tangible specie that people can use in emergencies that knock out network access. If something rolled out that could do everything bitcoin can do, with no additional downsides, but also functioned in those situations, that would shake my conviction. https://example.com/ 21003 415928 415904.415915.415918.415928.416799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.658843770028 0 \N \N f 0 \N 0 88079318 0 f f \N \N \N \N 415904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422287 2025-03-02 11:03:33.481 2025-03-29 22:39:49.996 \N LDK is great if you know a great deal about lightning and are building an application that needs custom lightning behavior. \n\n[LDK Node](https://github.com/lightningdevkit/ldk-node) is a good drop in solution if you're building a mobile app where users have a non-custodial wallet that runs on the device. Good if you are fine with their defaults. IMO, it's early, but it should be a better solution than dropping LND into a mobile app, which has historically been a huge pain point and some are moving off of it.\n\nLND is good if you're just a user of lightning and you want a node, or if you're building something that runs a server and you want to communicate with your own always online lightning node from that server. https://example.com/ 12808 422172 421915.422008.422161.422172.422287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.98124227093513 0 \N \N f 0 \N 0 166069011 0 f f \N \N \N \N 421915 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435134 2025-03-12 13:42:37.366 2025-03-29 22:39:49.997 \N I really like this. However, you would have to remain vigilant in regards to remembering to supply more withdrawal addresses as to not auto deposit to the same address more than once. Would be cool if they added a feature to pause and alert users when auto withdraw addresses have been all used up. https://example.com/ 660 435046 435046.435134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9723528700794 0 \N \N f 0 \N 0 12252521 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410557 2025-02-20 14:35:44.419 2025-03-29 22:39:49.998 \N Couple of questions on that:\n\n1) I got a referral this morning (see screenshot), but it's still showing "0" my referral page. Does it just take a little while to register in the system?\n\n![Screen Shot 2023-11-13 at 1.07.10 PM.png](https://m.stacker.news/4881)\n![Screen Shot 2023-11-13 at 1.13.57 PM.png](https://m.stacker.news/4883)\n\n2) I noticed that when I send the standard referral link (https://stacker.news/r/benwehrman) it gives the user a "👋 Welcome to Stacker News!" banner at the top, but when I add the referral suffix on a link to my profile (https://stacker.news/benwehrman/r/benwehrman), that banner does not appear. \n\nDoes that mean the referral link isn't applying properly if I link people to my profile? Or is it just a bug that the banner doesn't appear when you link them to your profile page? https://example.com/ 21136 410311 410311.410557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.21008609319276 0 \N \N f 0 \N 0 217943976 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448345 2025-03-22 14:58:34.928 2025-03-29 22:39:49.749 \N Fedimints add a multi-signature aspect to federated custody. Liquid is a sole federation member (Blockstream) that can rug you, leaving little to no recourse. Fedimints would require, depending on your chosen federation's set up, multiple key holders in the multi-signature model to collude to rug all users (including the other key holders), resulting in reputational damage, public ridicule and in some cases physical harm.\n\nThe best analogy in fiat world I can think of is the choice between a bank and a credit union. Banks have shareholders outside the institution that influence decisions made within the bank procedures. Credit unions are a bit more personal. You normally need to know someone in the CU to become a member and then the reputation of the credit union is based on how they serve the members, not some arbitrary shareholders (the members ARE the shareholders). It comes down to a social contract, where those who will choose to use fedimints will choose mints where they either know one or multiple of the federation key holders, or they live close enough to them where they can go exact revenge if a rug pull occurs (as NVK likes to call this: Proof of Punch). \n\nThe benefit to most who trade-off this collaborative custody model will be privacy, via UTXO obfuscation (once the sats go in the mint, they can be pooled and sent out with little to no fee to the user of the mint). In this scenario, you do not have to trust a single mixing coordinator, since most ecash tokens will be interchangeable between mints. \n\nI am by no means a fedimint expert, but like most things in bitcoin, tradeoffs are in the eye of the coin-holder. https://example.com/ 6137 448343 448343.448345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0978857425854 0 \N \N f 0 \N 0 26130893 0 f f \N \N \N \N 448343 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427516 2025-03-06 12:59:13.258 2025-03-29 22:39:49.985 \N Day 219 of snailposting everyday 'til BTC hits $100k.\n\n...and 19 push-up(s).\n\n__@_'-' https://example.com/ 20577 427500 427500.427516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.83357306377293 0 \N \N f 0 \N 0 115281464 0 f f \N \N \N \N 427500 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436131 2025-03-13 10:43:54.516 2025-03-29 22:39:49.988 \N That's the first test! You need to figure out where to click to apply... :) https://example.com/ 9339 436121 435639.435646.436121.436131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6765529151966 0 \N \N f 0 \N 0 87062468 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423835 2025-03-03 16:23:14.306 2025-03-29 22:39:49.988 \N As someone who hasn't done any "mining" projects before doing SRI, I realized mining space is way more competitive than I imagined. Getting two companies to agree on something is extremely hard, and even us, as FOSS struggle communicating things to companies. https://example.com/ 16842 423818 423749.423765.423818.423835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0609081664068 0 \N \N f 0 \N 0 247574451 0 f f \N \N \N \N 423749 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441013 2025-03-17 17:48:24.417 2025-03-29 22:39:49.989 \N This makes sense for the default behavior, but can you do me a favor and for the power users among us allow a setting that tells us if the receiving end doesn't have enough inbound liquidity as to avoid our sats from being donated directly to SN instead of the intended user XD\n\nI would be very sad to find out I just zapped someone 5k sats and they just got in store credit lol.\n\nHey, btw, can you add a request inbound feature to SN or something?\n\nAlso, I don't know what you're using for this interface, but I'll shill again the interface this discord mod I know made for his Bitcoin discord:\n\n[PayMeBTC-client](https://github.com/MrRGnome/PayMeBTC-client)\n[PayMeBTC-server](https://github.com/MrRGnome/PayMeBTC-server) https://example.com/ 18402 441003 440988.441003.441013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.02945123997609 0 \N \N f 0 \N 0 10280250 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430826 2025-03-09 12:56:47.605 2025-03-29 22:39:49.989 \N If you want a closed ecosystem targeting a very specific user experience, go Apple. This has always been the case and it is unclear to me why anyone is shocked?\n\n If you want anything else your only other choice, unfortunately is Android. So get a phone you can root and install graphene on. For the app store use F-droid. Encourage everyone else to do the same.\n\nTools are already out there. Most people really just don't care. So just figure out ways to take care of yourself and really let the rest roll off your shoulder. https://example.com/ 19332 430599 430599.430826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0648265418368 0 \N \N f 0 \N 0 55711904 0 f f \N \N \N \N 430599 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 420605 2025-02-28 20:50:03.633 2025-03-29 22:39:49.992 \N I seriously don’t understand this model. \n\nA) I’m going to either screenshot or copy/paste the article as soon as I open the page\n\nB) because I don’t want to pay per time spent on a site, because I don’t want to be constantly doing cost analysis in my head https://example.com/ 20454 420585 420577.420585.420605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5929187678544 0 \N \N f 0 \N 0 58631592 0 f f \N \N \N \N 420577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444521 2025-03-20 01:01:10.65 2025-03-29 22:39:49.993 \N I agree with @siggy47.\n\nVery good points. I especially liked:\n\n> Instead, I had to post to SN before drafting a comment. That comment took 10-15mins to create after the post went live. Potentially lost eyeballs.\n\n> it would have been much more convenient to have drafted it together with the original listing.\n\n> the absence of a description field makes most posters not even consider creating a comment of any kind.\n\nI'll create a ticket :)\n\nedit: [here](https://github.com/stackernews/stacker.news/issues/504) it is https://example.com/ 11789 444168 444168.444521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.03911585307733 0 \N \N f 0 \N 0 174802365 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456670 2025-03-27 18:53:18.427 2025-03-29 22:39:49.997 \N There's three camps: idiots and scammers who think art can be tokenized, people who acknowledge ordinals don't violate the protocol rules and therefore further discussion is irrelevant, and idiots who think they can do something to stop camp 1 https://example.com/ 20987 455649 455649.456670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8870128225881 0 \N \N f 0 \N 0 189213898 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424165 2025-03-03 21:14:48.248 2025-03-29 22:39:49.998 \N Bringing the first non-custodial Lightning implementation to a hardware wallet companion app, the BitBoxApp. https://example.com/ 21620 423667 423667.424165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5748852842321 0 \N \N f 0 \N 0 243412741 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431041 2025-03-09 15:11:10.979 2025-03-29 22:39:50.234 \N if anyone is interested in LNhance first check out the https://lnhance.org website for a general overview!\n\nthen check out the BIPs repo for more details!\nBIP-119: https://github.com/bitcoin/bips/blob/master/bip-0119.mediawiki\nBIP-348: https://github.com/reardencode/bips/blob/csfs/bip-0348.md\nBIP-349: https://github.com/bitcoin/bips/blob/master/bip-0349.md\nBIP-???: https://github.com/lnhance/bips/blob/paircommit/bip-PC.md https://example.com/ 5003 420698 420698.431041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.15758634164257 0 \N \N f 0 \N 0 151241251 0 f f \N \N \N \N 420698 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422943 2025-03-02 19:47:29.999 2025-03-29 22:39:49.99 \N > The danger in this practice, I believe, is that you stifle curiosity. You assume that you know where value comes from.\n\nThis particular part hits close to home. When I'm at crypto meetups or events or just talking to crypto-pilled folks, if I lead conversation into what the Value of bitcoin is (ie what leads to its current USD price), I can sense people souring like I'm not a "true believer" and that makes me an outsider, even if I'm excited about the tech.\n\nFor example I was at that bitcoin bar near washington square park in new york recently. A bunch of crypto guys that worked for a bitcoin company that did something with L2 contacts (Stacks I think?) were there. We were having a good chat, I'm asking them questions. But I asked one of the guys something like "what are people using bitcoin for nowadays?," an honest question about what the typical use cases for bitcoin are in 2023. Like what is the purpose of the transactions they do, what are people using it for in their experience, who will be using their tools, or generally what is bitcoin being used for from what they can tell looking at the chain, etc. \n\nThe vibe shifted and they didn't give me a good answer. Someone said something about how it was used for NFTs a lot, but nobody really had an answer. It seemed like I was making them uncomfortable by asking questions around business cases for L2 contracts or generally what use-cases bitcoin had in their professional experience. Or maybe I was just reading the situation wrong. \n\nMoreso than a lot of other industries and meetups I've had experience with, asking hard questions about bitcoin/crypto (specifically around Value and Utility) elicits a chilling reaction.\n\nFor a people that work for bitcoin-specific companies and organizations it makes sense since a certain kind of faith is what's keeping you employed and doing business, but there's just so much blind trust and religious attitude that stifle curiosity and more realistic discussions. https://example.com/ 3347 422779 422779.422943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7200253629155 0 \N \N f 236376004 \N 1 205978231 0 f f \N \N \N \N 422779 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402901 2025-02-14 08:38:43.453 2025-03-29 22:39:49.99 \N A fragile ego doesn't like to get be told they are wrong. I appreciate different perspectives because I live mostly in my head so wandering outside of it and hearing from other people that I respect is really helpful. \n\nI don't always agree or listen to the other persons advice but it gives me something to think about. It either causes me to change my current course, or double down on it. \n\nListening and observing is great. You can hear a lot more from others by being aware than just asking questions and getting verbal responses. https://example.com/ 1717 402899 402899.402901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0674468596492 0 \N \N f 0 \N 0 71309295 0 f f \N \N \N \N 402899 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404205 2025-02-15 16:31:37.95 2025-03-29 22:39:49.995 \N ## The Stadium Built on the Equator, Where Each Team Defends a Hemisphere\n\n![images - 2024-04-19T155010.322.jpeg](https://m.stacker.news/27310)\n\nIn Brazil you will find Zerão, a famous football field known in English as, ‘the Big Zero’. Opened in 1990, the stadium was designed so the midfield line fell exactly on the Equator, meaning each half lies on a different hemisphere.\n\n***[Although its official name is Estádio Milton de Souza Corrêa, everyone calls it Zerão](https://en.m.wikipedia.org/wiki/Zer%C3%A3o.)***\n https://example.com/ 21061 404042 404042.404205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0183226970066 0 \N \N f 0 \N 0 46009023 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458216 2025-03-29 05:45:11.491 2025-03-29 22:39:49.996 \N Before Darth comes in here and tells us all that this isn't good news... because after all its a state that is doing this and the state is evil. I'm anti-state.\n\nThis is the game theory playing out as was foretold many moons ago. The state doesn't just fall over and say uncle. If bitcoin is what we believe it to be states will do these types of things. The most evil in the world will use bitcoin. When I see news like this or Trump winning I'm not happy because I want the state to mine or hold bitcoin. I'm happy because we are moving towards the actual end game. This is just a point along the path. https://example.com/ 15336 458173 458173.458216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8763129306733 0 \N \N f 0 \N 0 26255861 0 f f \N \N \N \N 458173 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424324 2025-03-04 00:49:25.353 2025-03-29 22:39:50.229 \N Your efforts are greatly appreciated Murch. The public scrutiny you expose yourself to and the selfless dedication in spite of it doesn't go unnoticed. Don't let the bastards get you down. https://example.com/ 7772 423124 423124.424324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.05003669231223 0 \N \N f 0 \N 0 83143871 0 f f \N \N \N \N 423124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458307 2025-03-29 07:32:41.051 2025-03-29 22:39:50.23 \N Ok, I added a channel directly to Stacker News. I also edited my LND config to change the send-out HTLC on my channels to 200 millisats.\n\nNow this reply should work with zero sats on SN and all from my node. https://example.com/ 11750 458017 457509.457565.457817.458017.458307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7947031527262 0 \N \N f 0 \N 0 171061576 0 f f \N \N \N \N 457509 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431207 2025-03-09 16:03:02.199 2025-03-29 22:39:50.23 \N Be your own bank regardless if you are far left or right. https://example.com/ 658 402056 402056.431207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3331101639897 0 \N \N f 0 \N 0 6470283 0 f f \N \N \N \N 402056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447994 2025-03-22 10:33:04.717 2025-03-29 22:39:50.231 \N 1. [The Zen of Stacking Sats On Stacker News](https://stacker.news/items/184545) - by @siggy47\n2. [The Art of Using Stacker News](https://stacker.news/items/252695) - by @Natalia\n3. [The Story of SN](https://stacker.news/story) and [FAQ page](https://stacker.news/faq) - are right on the bottom of SN page.\n\nIf people, after reading these articles, still don't get what is SN and how to use it, then they don't deserve to be on SN. https://example.com/ 15728 447626 447566.447626.447994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.51792111140928 0 \N \N f 0 \N 0 148090278 0 f f \N \N \N \N 447566 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431097 2025-03-09 15:27:41.356 2025-03-29 22:39:50.236 \N The projects that create a new coin to fund their development are unregistered securities. Full stop.\n\nHere is how the Howey Test is used to determine if something is a security. It is a simply pass / fail test. If you satisfy these 4 prongs, you pass. Passing means you are a security.\n\n 1. An investment of money\n\n 2. With the expectation of profits \n\n 3. In a so-called “common enterprise” (roughly meaning: investors and the company rise and fall together)\n\n 4.From the efforts of a promoter or third party (Ex. a "Team") https://example.com/ 20117 415445 415445.431097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3455099192317 0 \N \N f 0 \N 0 14980176 0 f f \N \N \N \N 415445 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436116 2025-03-13 10:31:22.299 2025-03-29 22:39:50.237 \N Day 361 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 17041 435755 435551.435755.436116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.06841600859632 0 \N \N f 0 \N 0 9507711 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444515 2025-03-20 00:43:15.086 2025-03-29 22:39:49.99 \N I suggest to not focus on how much sats you get for a post.\n\nYou are still new on SN and your reputation is low. You have to work on that first.\nReputation is built by posting a lot of good content.\n\nOnce you have a reputation you will have also more rewards.\nWith just one zap of 20k your post will not get on top.\nBut with 20zaps of 100sats will stay on top long time and get more rewards. Think about that.\n\nBut yes, there is a trend on SN that old stackers could zap more sats to new users that post something good as a welcome gesture.\n\nKeep in mind that you arrived on SN just when a new contest started MSM and users tend to zap less amount now, keeping the sats for better posts at the end.\n\nRemember: do not consider SN an assmilking cow... You will end bad. Consider it like a better reddit, where you pay sats to post.\n\n[![SN-vader.jpg](https://i.postimg.cc/13KWb5cT/SN-vader.jpg)](https://postimg.cc/75fM24RM) https://example.com/ 626 444450 444450.444515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.97570483159425 0 \N \N f 0 \N 0 25013958 0 f f \N \N \N \N 444450 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451308 2025-03-24 13:42:29.711 2025-03-29 22:39:49.991 \N - Stay humble. If you just started learning there are likely many things you haven't yet discovered/understood. Bitcoin is a long term journey and there is a lot of noise that takes many years to comprehend and filter out.\n- Onboard as many people into self custody as possible\n- Give them and educate them on correct usage of the tools, specifically securing keys, etc. \n- For people that are filing capital gains (their choice, I know DarthCoin will explain otherwise), show them non-custodial and local tools for how to generate LIFO/FIFO from their transactions (i.e. please don't push them into using some monstr privacy destroying online service that asks you to upload all transactions)\n- Get solid lists of opportunities where to actually use and spend bitcoin\n- Have a well tailored list of materials for each person (e.g. someone may like to read interesting book that you would suggest like Mandibles, Blocksize Wars...)\n- By yourself actually learn how to act online fully privately and anonymously. I would suggest you try getting yourself familiar with darknet markets and go through the tutorials about how to use those. I'd expect my financial advisor to have solid set up in terms of privacy and anonymity (e.g. I'd expect you communicate with clients over Signal, use non-Gmail like proton, etc)\n\nI think one time fee for initial set up and then hourly fee for support would be reasonable. There may be some power in in person support. \nWith Bitcoin the trust building is even more important, so you need to give a great deal of verifiable visibility into what you are doing. https://example.com/ 20490 451290 451290.451308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.33334803324313 0 \N \N f 0 \N 0 176221121 0 f f \N \N \N \N 451290 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435093 2025-03-12 13:08:27.43 2025-03-29 22:39:49.993 \N I have been traveling a lot in the past few weeks and a lot happened. I was on vacation, went to the Core Dev meeting and attended TABConf. We announced [Localhost Research](https://lclhost.org/), a new Bitcoin Core contributor office that we are launching in the Bay Area last weekend.\n\nWork piled up a bit. I already went through new questions on Bitcoin Stack Exchange, co-hosted the Bitcoin Optech Recap and BitDevs yesterday, agreed to a podcast appearance about Cluster Mempool in a couple weeks, went through a bunch of emails. I still need to (not sorted by priority):\n\n- Take some notes about the conversations I had last week at TABConf\n- Review a paper on consensus changes\n- Review the new compatibility matrix on Optech\n- Do about 20 reviews on Bitcoin Core pull requests\n- Address review on my own Bitcoin Core pull request\n- Address review on my BIP-2 successor draft\n- Go over a ton of activity in the BIPs repository from the last weeks\n\nSo, I will work on some of that. https://example.com/ 13217 435062 435062.435093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.50920018324985 0 \N \N f 0 \N 0 9697037 0 f f \N \N \N \N 435062 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404350 2025-02-15 19:46:28.491 2025-03-29 22:39:49.997 \N From Twitter: https://nitter.cz/GwartyGwart/status/1714744651373035605#m\n\n> Vitalik , Hayden, and Justin Drake were walking one day when they noticed a $100 bill on the sidewalk. Vitalik picked it up and said, “we should use this to build public goods and core infrastructure.” Hayden nodded his head, “agreed, we can put this money to good use.”\n>\n> Justin Drake smiled and asked Vitalik for the bill. Vitalik obliged. “See that homeless man down there,” he gestured roughly 50 yards down the sidewalk to a homeless man with a sign and a little hat with a few dollar bills and some change in it, “watch this.”\n>\n> They walked over and Justin appeared as though he was going to give the man the money but instead pulled out a lighter and lit the $100 bill on fire. The homeless man looked confused, as did Hayden and Vitalik. Justin pointed at the hat with the small bills, “that money right there is now more scarce, because I took $100 out of the total circulating supply.” The homeless man still looked perplexed. “Why couldn’t I just have the money, if you were going to burn it?” \n>\n> “Well,” Justin paused, “it was never yours to begin with.” The homeless man smiled and responded, “that actually makes a lot of sense, thank you for making the money I *do have* more valuable.”\n>\n> Vitalik clapped but in a weird way, he put his elbows together and sort of slapped his hands back and forth.\n>\n> Anyways the homeless man later died of starvation. https://example.com/ 18330 404150 404042.404150.404350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8595836230914 0 \N \N f 0 \N 0 73966124 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448405 2025-03-22 15:32:26.411 2025-03-29 22:39:50.229 \N > I think that most nodes already have this number set, and so pushing this change out would have a dramatic impact on uh, let's just say a certain class of transactions, almost immediately as nodes upgraded.\n\nMany people overestimate the impact of policy. Transactions will propagate through the network if a small portion of the network accepts them. I'm the context of the `mempoolfullrbf` debate my colleagues calculated that about 5% of nodes adopting it would suffice for the majority of non-signaling replacements to make it to miners. \nThe Bitcoin network if very different to the Lightning Network in so far that fewer than half the nodes are running on the latest version. In this case specifically, inscribers and miners would have an incentive to simply not upgrade. The main effects of upgrading about half of the nodes to this would be that that block propagation slows down, because many nodes have not seen all transactions in advance and that feerate estimates would be low on those nodes.\n\nAdditionally, as miners upgrade, they will earn less fees to the benefit of miners that don't filter.\n\n I also left a nack in the PR with a longer explanation here: https://github.com/bitcoin/bitcoin/pull/28408#issuecomment-1878746998 https://example.com/ 15662 448347 448283.448347.448405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5600979423076 0 \N \N f 0 \N 0 119964310 0 f f \N \N \N \N 448283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404423 2025-02-15 21:27:58.743 2025-03-29 22:39:50.229 \N microstrategy https://example.com/ 732 404410 401283.401346.401403.401520.402058.402078.402727.402754.404410.404423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.34993366550455 0 \N \N f 0 \N 0 141840605 0 f f \N \N \N \N 401283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435068 2025-03-12 12:45:01.034 2025-03-29 22:39:49.993 \N Unless and until you initiate violence to stifle dissent, you're not violating any libertarian principles.\n\nFreedom of speech goes both ways. You can get as angry as you want, you can make every effort you possibly can short of violence to stifle dissent, you can be as toxic and unwelcoming as you want towards opinions you disagree with, and as long as you're not trying to get government to intervene or use violence or coercion for this purpose, you're actually embodying and upholding libertarian principles to their fullest extent.\n\nIf you see an opinion you disagree with, and you don't use the full extent of your knowledge and intellect to stamp it out as completely as you can, then you're abandoning your libertarian principles. Free speech means that we fight ideas with ideas, the moment you stop doing so you're betraying yourself. \n\nSo if you ask me, you're not being nearly toxic enough, you're not doing nearly a good enough job stamping out dissent, you need to up the ante by a lot, and the thoughts you're having are the opposite of what you're looking for. \n\nNot liking something is your god given right, and speaking out against it is your moral duty, and doing so in a non violent way is your libertarian guiding principle.\n\nIf you launch your own version of stacker news or something similar, and you moderate the content and vehemently disallow and purge all shitcoinery, you're still not violating any libertarian principles. You can do whatever you want.\n\nIf you forcibly prevent someone from launching their own site, decidcated or tolerant of shitcoinery, then you're a communist. They can do whatever they want. https://example.com/ 21422 433870 433588.433870.435068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.32283987695332 0 \N \N f 0 \N 0 57951453 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444520 2025-03-20 01:00:58.534 2025-03-29 22:39:49.994 \N @k00b, I'm a bit surprised that the implementation doesn't have more incentives for the OP who offers the bounty to follow through and pay once someone has helped.\n\nAs I was reading the post, I was expecting at some point that you would describe that the bounty money goes to some escrow, or basically is taken away from the OPs balance, and OP can't get it back. That way, OP is motivated to actually give it away to a good child comment.\n\nThe only drawback I see to this is that, if OP asks for something and no one delivers, the OP would have to part way from his sats without getting his request fulfilled. The only option that comes to mind to counter this would look like this: instead of have the entire bounty be taken away from OP forever, make a part of it refundable. This basically enables a gradient in the trade-off between the two extreme options (fully escrowed bounty vs no escrow at all). https://example.com/ 15662 443712 443712.444520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.96427618526549 0 \N \N f 0 \N 0 191005173 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444281 2025-03-19 18:47:39.239 2025-03-29 22:39:49.997 \N We haven't run into any other expiring K1's yet\n\nPer the spec ` "k1": string, // Random or non-random string`, so it's not opinionated either way\n\nOn the subject of sniping, that foot note on the spec is related and @k00b actually mentioned this before too... \n\nWhen you go to the stacker wallet and click on QR Code, the QR just displays on your screen and contains the `k1`... any cameras behind you could potentially sweep funds before you do.\n\nThe expiring of the k1 is a mitigation for a camera behind you doing a replay attack later. \n\n2 simple ways to fix both problems:\n\nOne is to instead of the QR code, provide the LNURL as a clickable link so that only the designated protocol handler can see the k1 parameter.\n\nThe other is to keep the QR code, but blur it out and make the user click off a warning to be sure they have privacy first, this would mitigate the existing sniping vulnerability. \n\nPersonally I think both would be good.\n\nThe flow in ShockWallet, when it gets an LUD03, is it asks the user if they want to sweep the balance... or add it as a source so they can subject it to continued automation in accordance with their trust preferences and budgeting rules. https://example.com/ 19394 443712 443712.444281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.38448945420208 0 \N \N f 0 \N 0 15044012 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431057 2025-03-09 15:12:34.801 2025-03-29 22:39:49.998 \N I believe that before a money becomes a medium of exchange, it must be an established store of value in the eyes of the masses. I also believe the adoption of a new money take a long time. Bitcoin is still going through its monetization and early adoption phase. Bitcoin’s current volatility make it not suitable as a medium of exchange for people. Imagine someone earning 100k sats only to have its purchasing power cut in half in a few days. That simply does not work for someone trying to use it to pay rent and buy food (even if they find landlord and vendors that accept bitcoin).\n\nDon’t get me wrong, I believe Bitcoin is the best savings technology ever invented; in other words, the best store of value ever. But not everyone believe that; as a result, we have a lot of speculation and volatility. It is simply the phase we must endure while bitcoin is being adopted and being monetized. More hodling actually stabilizes bitcoin’s purchasing power and will help cement bitcoin’s position as the best store of value.\n\nWe need much greater adoption and more stable purchasing power in bitcoin before the masses will use it as a medium of exchange. Until that day comes, I see nothing wrong with hodling and hodling should not be demonized. After all, bitcoin is freedom money, and anyone should be able to use their coins as they see fit; be it spend and replace or hodl or degen trade or even trade 1 sat for 1 million sats.\n\nI say do whatever you feel will help adoption while making sure your actions align with your values, while remembering that you are responsible for your actions. Personally, I’m just going to keep stacking, keep hodling, keep working and keep it real. https://example.com/ 4048 417685 417685.431057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1533159563832 0 \N \N f 0 \N 0 26214862 0 f f \N \N \N \N 417685 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431018 2025-03-09 15:09:24.974 2025-03-29 22:39:50.231 \N I guess too many to mention.\nBut the best ever was jumping out of the 2nd floor window into the bushes when I told the teacher that his class was so fucking boring I would rather jump out of the window and he told me to do it because he thought I was bluffing. https://example.com/ 13574 427379 427379.431018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4468603221033 0 \N \N f 0 \N 0 242963172 0 f f \N \N \N \N 427379 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428285 2025-03-07 03:40:43.145 2025-03-29 22:39:50.232 \N OR just make something else from scratch using these sprites and some other cowboy themes. I've been trying to find something to do with this horribly out of tune (can't figure out if my whistling or bugling is worse here), and therefore authentic, western theme song for years.\n\nhttps://soundcloud.com/jason-b/ags-western-competition-tune?in=jason-b/sets/commercial-music\n\n...you've reached the wasteland...the end of route 404...solitude and sandworms...through the looking glass of despair and into a world devoid of zaps, sats, and cowboy hats...a world waiting for you to conquer!\n\nok, sorry, i'm done...but still pretty serious about all that https://example.com/ 9275 428284 428205.428284.428285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.550155951421 0 \N \N f 0 \N 0 28713569 0 f f \N \N \N \N 428205 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431030 2025-03-09 15:10:17.884 2025-03-29 22:39:50.233 \N There's a lot of issues with sidechains. First and foremost being the same issues we see with multi coin wallets \n\nhttps://thebitcoinmanual.com/articles/avoid-multicoin-wallets/?ref=bitcoinbreakdown.net \n\nSo okay, instead you have thousands of sidechains that all have the same code base thereby remove the need to worry about this security and maintenance issue. Cool. (this is not the case right now obviously as we have liquid and RSK and all these different sidechains of completely different code bases. Basically this is a fungibility issue)\n\nSo then, what does that wallet look like? Do I get "sidechain #1 Bitcoin, sidechain #2 Bitcoin, sidechain #3 Bitcoin" in this long list of sidechains that I'm accepting and should be treating as all being the same? Should I be treating them all the same? If I can, then maybe its all just grouped up together in one entry as "Sidechain Bitcoin". Alright, so under that model, how easily can I be tricked into accepting "counterfeit Bitcoin". As you know, we don't have counterfeit Bitcoin because when you run a node, your node would reject any block that would break the rules. So then, in order to protect myself, I need to run a node for every single sidechain that I want to accept, which in this scenario is thousands. Is thousands of sidechains a reasonable expectation? If its only hundreds, that's still hundreds of nodes I need to run to protect myself.\n\nNo I don't consider a neutrino connection to someone's BCrash node to be an acceptable solution.\n\nAnd then if a wallet comes out that includes a malicious sidechain I could be easily tricked because I'm expecting these sidechains to be fungible. But alright alright, again we say each sidechain should have exactly the same codebase, but still be different enough to not merge onto one chain and we can do hashes on the codebase for every chain added to a wallet and only xyz files should be different. \n\nSo then, how good is the security of the sidechain? We'll just say we don't trust it until it gets rolled up in a Bitcoin mainchain tx to glaze over this part. If we're going to wait that long maybe that solves our need to run hundreds or thousands of nodes (unless its the drivechain implementation. People forget that miners are paid security and if you pay them to act up they will)\n\nBut yeah, the actual prereqs I kinda wrote about in "[Bitcoin Adoption into the Future - Build it Right and Grow from There](https://stacker.news/items/201465)" which was basically protection against\n\nFractional Reserve/Rehypothecation\nOutright theft\nCensorship\n\nThat was problems with custodians though. Sidechains introduce new issues. Lightning works because you have this proof that you can always hold onto as a real guarantee that you can take back to the main chain to prove and get a justice transaction for and data propagation only needs to go to relevant parties, and like, maybe LN Bitcoin from someone's node out there is fake or something, but that doesn't matter because in order to send me Bitcoin, they have to update my channel with my channel partner and our Bitcoin is real. If my channel partner opened a channel with some malicious node and accepted that as real Bitcoin, that's their fault and their problem when it comes to resolve their channel with their channel partner and I don't have to worry about that. Its so fast exactly because I don't need the whole world to know about every single transaction until it comes time to settle. \n\nMan its way easier to express why custodians suck than it is to talk about sidechains. A lot more technical minutia, but I hope I explained my position well enough. I hate sidechains, and think they're a silly solution to scaling, and I will remain skeptical and pessimistic about them until I am proven completely and absolutely wrong and after they're normalized I will probably take dedicating time to doing security research about them way more seriously (unless they don't do the every sidechain codebase is the same idea I came up with in which case I'll just continue to complain) https://example.com/ 7125 424355 424355.431030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4447500307007 0 \N \N f 0 \N 0 101681253 0 f f \N \N \N \N 424355 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408192 2025-02-18 16:12:38.894 2025-03-29 22:39:49.993 \N **Nym** \n\n0xB10C\n\n**Summary of What You’re building:**\n\nA FOSS Bitcoin Core based passive P2P networking tool called peer-observer. It hooks into tracepoint's in Bitcoin Core to extract, e.g., P2P messages sent and received, connections opened, closed, evicted, … The nodes are essentially well-behaving honey-pots with a lot of monitoring.\n\nThis is all already implemented and running. However, don't have a public demo of it at the moment. Happy to share something with interested people. I currently have 10 nodes running, dispersed around the globe. \n\n\n**What Kind of Help Are You Looking For?**\n\nLooking for someone interested in Bitcoin P2P network level attacks that wants to build some sort of (real-time) anomaly detection with the data the tool is producing. For example, detection of inbound connection flooder's like [LinkingLion: An entity linking Bitcoin transactions to IPs?](https://b10c.me/observations/06-linkinglion/).\n\nThe project is mainly written in Rust, but I've taken care that Python scripts should work too. The infrastructure is Nix+NixOS.\n\n**Purpose**\n\nFor fun and to make the Bitcoin network more secure. Not for profit. I have a grant to work on this (and more). I can't pay you for the work, though you might find someone else willing to give you a grant or similar for the work (I can help, but no promises!).\n\n**How to Contact You**\n\nComment below, or send me a DM / email. You'll find ways to contact me on [b10c.me](https://b10c.me/?contact_sn). https://example.com/ 2773 407679 407679.408192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.57996379414195 0 \N \N f 0 \N 0 163567669 0 f f \N \N \N \N 407679 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401391 2025-02-13 00:12:59.327 2025-03-29 22:39:49.994 \N I agree on the multisig part, that is completely unnecessary for most people. HWW and cold storage however are an absolute must where savings are concerned and can easily be obtained for under $100. hot wallets and software wallets are good for pocket money that you expect to spend soon.\n\nyour average computer user can't even figure out ad blockers, let alone setting up an airgapped pc as a wallet. https://example.com/ 21088 401371 401198.401257.401271.401280.401316.401371.401391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.11561479293531 0 \N \N f 0 \N 0 102064326 0 f f \N \N \N \N 401198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444484 2025-03-19 23:19:02.221 2025-03-29 22:39:49.994 \N What have you contributed to the community little shitcoiner? Take your hurt feelings back to Reddit \n\nThis is your bio:\n“””Lightning fan, and it's the only way Bitcoin will stay relevant. We all know on-chain bitcoin is out of date and behind the times and has failed to evolve. Lightning will save bitcoin from what was looking like a slow and painful demise”””\n\nGtfo dude you need to read Bitcoin Standard before posting anymore garbage https://example.com/ 18923 444471 444471.444484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2132327856688 0 \N \N f 0 \N 0 179945203 0 f f \N \N \N \N 444471 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444227 2025-03-19 18:20:00.541 2025-03-29 22:39:49.995 \N It's been causing me to subliminally tip more all day. I need the payoff. https://example.com/ 2361 444188 444015.444188.444227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6564624214833 0 \N \N f 0 \N 0 48523840 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444512 2025-03-20 00:39:45.903 2025-03-29 22:39:49.997 \N Subs are obv a nice addition and much appreciated (feels good to be heard ;-). Thanks. But now comes the tricky part: \n\n1/ What will be the next subs? Since Bitcoin and Nostr are covered, you can only add non-Bitcoin-related topics...\n\n2/ How (and by whom) will new subs be created? SN creators, community voting?\n\nI would suggest that anybody should be allowed to open a new sub, BUT with two conditions:\na/ You need to pay a high fee to create the sub (say 100k sats)\nb/ Subs that don't reach a certain threshold of engagement after a week/month (number of posts and/or amount of sats tipped, TBD) are automatically terminated and the same subs can't be created for a month. https://example.com/ 17741 444168 444168.444512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0876257079709 0 \N \N f 0 \N 0 59534220 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458256 2025-03-29 06:27:02.504 2025-03-29 22:39:49.997 \N Autism became recognized as a developmental disorder distinct from schizophrenia for the first time by the WHO, in 1978.\n\nEver since Autism was recognized as a distinct disorder, researchers and doctors began to include other disorders and behaviors (that have long been studied in children) into the "autism umbrella". \n\nAwareness of autism in the public culture increased with the release of Rain Man (1988) and other media portrayals.\n\nThe DSM-IV TR (an autism test deployed in year 2000) contained an almost complete rewrite of the definition of Asperger syndrome. Notably, it now no longer included speech and language difficulties. This greatly increased the number of people deemed to have the condition.\n\nYou can read more about the history of Autism here: https://en.wikipedia.org/wiki/History_of_autism\n\nIf you've read this far, its probably because you have a hyperfixation and you might be autistic. /s\n\nTake the Free RAADS-R Autism test here: https://embrace-autism.com/raads-r/#test https://example.com/ 1658 458058 458058.458256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8557978097574 0 \N \N f 0 \N 0 186765285 0 f f \N \N \N \N 458058 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417966 2025-02-26 18:14:33.146 2025-03-29 22:39:49.998 \N ![20240203_091235.jpg](https://m.stacker.news/14999) https://example.com/ 16598 417941 417840.417903.417941.417966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.75687213204347 0 \N \N f 0 \N 0 16091739 0 f f \N \N \N \N 417840 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431032 2025-03-09 15:10:22.955 2025-03-29 22:39:49.999 \N It's quite a busy week!\n\n- A ton of school assignments (unfortunately)\n- Weightlifting\n- Preparing for a programming competition\n- Soccer and basketball practice\n- Studying marketing because I want to start a business\n\n:) https://example.com/ 19198 422869 422869.431032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8157863140041 0 \N \N f 0 \N 0 145134014 0 f f \N \N \N \N 422869 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404182 2025-02-15 16:07:53.096 2025-03-29 22:39:50.23 \N The bitcoin whitepaper criticizes ecash on page 2:\n\n> A common solution is to introduce a trusted central authority, or mint, that checks every transaction for double spending. ...only coins issued directly from the mint are trusted not to be double-spent. The problem with this solution is that the fate of the entire money system depends on the company running the mint, with every transaction having to go through them, just like a bank.\n\nBitcoin is intended as the solution to this problem. Nonetheless, I think the same whitepaper correctly points out that for most transactions, a bank is fine:\n\n> Commerce on the Internet has come to rely almost exclusively on financial institutions serving as trusted third parties to process electronic payments. ... [This] system works well enough for most transactions.\n\nTo me, one of the great things about bitcoin is that it's an option for everyone failed by banks, including mints. But most people are not failed by them, in fact most people seem to *prefer* banks (and maybe someday mints). Making the best possible mint/bank software therefore seems like a useful task that can improve the lives of billions. And for those also-imporant billions whom banks don't want to or can't serve, bitcoin is there for them. https://example.com/ 633 404145 404042.404145.404182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.67413604571809 0 \N \N f 0 \N 0 139733652 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451317 2025-03-24 13:47:39.692 2025-03-29 22:39:49.994 \N [Final]\n\n- [Allow zapping, posting and commenting without funds or an account](https://github.com/stackernews/stacker.news/pull/336) is basically done. I just need to test it again to make sure the latest rebase on top of the branch where @k00b is currently upgrading a lot of stuff didn't break anything\n\n[Planned]\n\nbug fixes:\n- Fix [losing of push subscriptions](https://github.com/stackernews/stacker.news/issues/354)\n- workaround for [missing tag support on iOS](https://github.com/stackernews/stacker.news/issues/366)\n\nfeatures:\n\n- [Nostr login](https://github.com/stackernews/stacker.news/issues/334)\n- [Show user/pubkey of nostr originating zaps in notifications](https://github.com/stackernews/stacker.news/issues/364)\n- [Show zap message](https://github.com/stackernews/stacker.news/issues/337)\n\nlocal dev:\n- [Local development doesn't work without setting VAPID config](https://github.com/stackernews/stacker.news/issues/357)\n\n---\n\nBeside SN stuff, I am also working on a prototype for a prediction market using the lightning network: https://delphi.market/\n\nI am using the [LMSR by Robin Hanson](http://blog.oddhead.com/2006/10/30/implementing-hansons-market-maker/) as an automated market maker. I hope this will make it possible that liquidity only has to be provided to the market once at creation. After that, the LMSR algorithm should make sure that the market does not run out of liquidity.\n\nSome impressions:\n\nhttps://imgprxy.stacker.news/481peu0UCLfk9DWp_Evy4LPmnVSg9IIhEzCGgrBDZZw/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvVHdQend5WUMvMjAyMy0wNy0yNi0xNTI4NTgtNTQzeDM0Ny1zY3JvdC5wbmc\n\nhttps://imgprxy.stacker.news/SlL_A3b7AfBxeqqvX8mZ4XmgqS8CQA2GYwYc01PE5Bw/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvNTlEMmhKblovMjAyMy0wNy0yNi0xNTMyNDMtNDg3eDM4NS1zY3JvdC5wbmc\n\n\n\n\n https://example.com/ 7587 451316 451316.451317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.30559793205266 0 \N \N f 0 \N 0 149514970 0 f f \N \N \N \N 451316 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430925 2025-03-09 14:10:45.443 2025-03-29 22:39:49.996 \N I've given some thought as to how to make Bankify not require an open browser tab. Here are my thoughts so far.\n\nThere are a few services that let you spin up a cloud computer (a "virtual private service" or VPS) and let you pay monthly via lightning. I could give a button to the user where, if the click it, it shows them a lightning invoice, and if they pay it, it automatically spins up a VPS for them, installs the requisite software, and then hosts their wallet there, with a monthly reminder when it's time to pay their bill.\n\nBut there are a few parts of that job that are tricky: these services usually email you the log in credentials for your virtual computer, and you have to get those credentials, then log in in order to install the software needed by the user. So in order to automate this I would have to set up some service that can receive emails, parse them, automatically use parts of the parsed email to log in to a VPS and install some software, then somehow deny myself future access by deleting the password or something like that.\n\nAnd I would *also* have to show the user some sort of loading animation for, like, several minutes or so, and hope they don't just get mad about the delay and "x out" partway through. This would also break if the VPS host ever changes their email format, meaning I would have to maintain and update the software occasionally, and users would have to be made aware that they are trusting the VPS host to (1) stick around (2) not read their private keys and steal their money.\n\nThis is all very imperfect so I seek a better solution. When there are *free* custdial services available, how do you convince users to *pay* for the-same-thing-but-worse? https://example.com/ 9418 430916 430770.430916.430925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.394414040470892 0 \N \N f 0 \N 0 199910716 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431375 2025-03-09 16:24:20.435 2025-03-29 22:39:49.998 \N > do any other implementations support something similar\n\nNot that I'm aware of. But someone correct me if I'm wrong.\n\n> Is it fair to compare this ability to make fee/speed trade-offs to Bitcoin’s mempool where you can pay more to get your transaction approved faster?\n\nPartly yes. But for Onchain the upper speed limit is waiting for a block to be mined. This can take time depending on luck and there is no chance to influence it. Even worse if you want the security of 3 or 6 blocks on top of it. https://example.com/ 16212 377335 377335.431375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8922021802351 0 \N \N f 0 \N 0 84709431 0 f f \N \N \N \N 377335 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451221 2025-03-24 12:58:19.668 2025-03-29 22:39:49.998 \N Most of the maxis are old bitcoiners. In those times was quite hard to dismiss Bitcoin, only if you were a real ignorant or really busy with your hamster life.\n\nIn 2012, april I think, I went to buy some beers with 20 bucks in my pocket.\nOn the way I met an old friend, that start talking about how he mine BTC (that time was still possible to mine with a GPU).\nSo he ended by selling me 1 BTC for those beer money.\n\nI went home and start reading more about Bitcoin, he indicate me to read the Satoshi's papers, so I did. My first thought was: damn... this is exactly what I was looking for to FUCK THE BANKS.\n\nSo I read and read and start reading the bitcointalk forum etc.\nI also start mining with a GPU, then with those Antminer USBs.\nI was fascinated by all the documentation and what can be done with Bitcoin.\nI NEVER STOP BELIEVING IN BITCOIN because I knew what is Bitcoin.\n\nMy wife asked me where are the beers and I said: I drink them with a friend. I never told her I bought "funny money" :)\n\nSo no, I never dismiss Bitcoin. https://example.com/ 21178 451216 451216.451221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0411191109601 0 \N \N f 0 \N 0 166768224 0 f f \N \N \N \N 451216 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424393 2025-03-04 03:49:39.296 2025-03-29 22:39:50.229 \N ### **About Adverts**\nNot sure if this is the best place or maybe [this thread](https://stacker.news/items/285344) is but FYI @kr...\n- As an advertiser, would it not be preferred when a Stacker clicks the title of the post (green arrow), to be taken straight to my website in a new window? \n- Adding an additional step (i.e. the current ad page) will decrease click-throughs substantially. I imagine it's like a 90% drop-off.\n- If it is clear it is an advert on the listing and people are clicking, I would want people to see the most amount of information possible, i.e. on my site. Clicking the comments could take people to this listing page (yellow arrow) if they are interested in what the community are saying. Or maybe this is just a configuration option.\n\n![Bitrefill advert](https://image.nostr.build/b55d9596eb8a8f200764358c19ee071eae8c72d1bdd11b08c60795bce9daa469.png) https://example.com/ 15588 424335 423928.424317.424335.424393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.222142254839 0 \N \N f 0 \N 0 130598482 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404531 2025-02-16 00:38:28.74 2025-03-29 22:39:50.229 \N If anyone does make it down here, even to scout it out, please hit me up. Would love to give all of you a warm welcome.\n\nNow is a great time as we’re now moving into summer months of December to March.\n\nI can vouch that it is extremely chill in Uruguay 🇺🇾 , (and whilst some might claim it is boring) that is exactly what you want during times like this. One of the most commonly used words is “tranqui” which you probably don’t need to google.\n\nNo political polarisation, the whole country’s history is made up of immigration, plentiful food, solid gun laws, strong European vibes, meat & cowboy-based culture 🤠 Literally everyone just loves to sit outside, sip mate and chill with a view and sunset.\n\nMore expensive to live than most places if you’re on a budget, but the peace of mind more than makes up for that.\n\nAs a Brit having made the trip last year, people are so welcoming and surprised to see Westerns WANT to come here. Which makes them really welcoming and will very much leave you alone. Even people that aren’t so fortunate, rarely bother you unlike in many other Latin American countries. People find their way to get by. https://example.com/ 19537 402271 402188.402271.404531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.840099957351 0 \N \N f 0 \N 0 235684787 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401187 2025-02-12 19:20:26.635 2025-03-29 22:39:49.995 \N Contrary to all the narratives I heard growing up about population growth and overpopulation, China's population is projected to be HALF of what it is today in the year 2100. (Source: https://www.visualcapitalist.com/world-population-2100-country/)\n\n1.4+ billion to a mere 700 billion, mostly older people is a recipe for disaster. It seems that the return to communist principles isn't serving the country well. \n\nHowever, one factor that China has in its favor is nuclear power. All the nuclear plants that they have spent years developing and building will provide them electricity at HALF the cost as compared to the USA within a couple of decades. This implies to me that China's economy will shift increasingly towards using machines and AI, rather than humans, for manufacturing and labor. \n\nI hope the West can keep up with the nuclear energy race. Interesting times ahead. \n\n https://example.com/ 19417 400918 400918.401187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4842757512731 0 \N \N f 0 \N 0 205696305 0 f f \N \N \N \N 400918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403705 2025-02-15 05:49:44.5 2025-03-29 22:39:49.997 \N Lol you're a piece of work dude, and a perfect example of the problem with pride month.\n\nYou see an article about how a website you like is making a political statement that you agree with, and what it does is make you angry at "the other side". Enough to make you invent a whole opposing argument that you can then lecture and put down in a fit of moral outrage and righteous indignation. Unprompted.\n\nToo much of this is about "fuck you people over there who don't get it".\n\nThat's no way to celebrate anything.\n\nAnd thats not even mentioning how silly it is to celebrate immutable characteristics over which you have 0 control and in which you never had a choice. \n\nThe absolute nerve required to fiercely defend a stupid celebration while vehemently condemning the mere hypothetical idea of someone wanting to celebrate essentially the same thing is astounding, and your reasoning doesn't even stand up to scrutiny. No govt or authority ever made laws limiting your rights for being a father or a mother, but we still have fathers day and mothers day. So what's the standard?\n\nAnyone and everyone is free to celebrate whatever they want, no matter how ridiculous it may be to celebrate that thing. \n\nSimilarly, everyone is free to call your celebration stupid and silly. https://example.com/ 16124 243274 243274.403705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8015432423694 0 \N \N f 0 \N 0 5547756 0 f f \N \N \N \N 243274 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404547 2025-02-16 00:44:28.976 2025-03-29 22:39:50.229 \N Here's a double-meta question for you to entertain at your leisure:\n\n_What have you learned from doing a number of these deep and excellent posts; and what SN tools would help you do them better? How could those tools help the larger SN ecosystem?_\n\nI guess that was three questions, sorry.\n\nIt strikes me that this is a really nice dogfooding example of using SN in a way that it's not totally friendly toward, but that is incredibly high value and interesting. I'm curious how this has stirred up your mind. https://example.com/ 21402 404543 402188.402197.404541.404543.404547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3566467730186 0 \N \N f 0 \N 0 66424482 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430982 2025-03-09 14:49:02.642 2025-03-29 22:39:50.231 \N No need to rush, but indeed, having things not rely on a central server will be a net plus in the end. But I think there are several more pressing things to focus on before worrying about idealistic choices. Unless someone from the Nostr community steps in and does the groudwork to port everything seamlessly. But I imagine we're not there yet. https://example.com/ 21798 430943 430700.430943.430982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9562231312742 0 \N \N f 0 \N 0 194094111 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442739 2025-03-18 19:14:38.922 2025-03-29 22:39:50.232 \N [Three Days at Camp David](https://www.amazon.com/Three-Days-Camp-David-Transformed/dp/006288767X) is a good book for anyone interested in this. https://example.com/ 21090 398753 395051.398753.442739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.96820792150101 0 \N \N f 0 \N 0 61052463 0 f f \N \N \N \N 395051 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444563 2025-03-20 02:39:06.797 2025-03-29 22:39:50.233 \N Hiring is hard. Based on my own experience and talking to others, I take some solace in the fact that even the best still never get it right every time. I would hazard to guess it's like baseball, where if you're batting .300 that's still pretty damn good.\n\nIs it possible the terms of the contract may have skewed the outcome? In other words, were candidates less motivated to give their best effort because the outcome was uncertain? In your defense, I also would expect people to do their absolute best to secure the best chance of landing the full-time job, but it sounds like the uncertainty led some people to keep one foot out the door so to speak, and keep exploring other options for themselves as a hedge. It makes a lot of sense but I would not have factored that in ahead of time if I had been in your shoes.\n\nSome of this reminds me of the behavior of consultants, where making short-term wins usually takes priority over the long-term goals of the client. And while a consultant always has an eye on selling more work to the client long-term, the reality is they'll always be playing the field for the best opportunity available.\n\nOne question: did you use references at all? In my experience that has usually been the most valuable source of info for making a hiring decision. \n\nSuch an interesting account, thanks so much for sharing. https://example.com/ 9367 443197 443197.444563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1403149605814 0 \N \N f 0 \N 0 84810575 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421206 2025-03-01 13:46:07.085 2025-03-29 22:39:50.235 \N You want to learn everything possible. There will come a time where you can relax knowing Bitcoin is inevitable. Once I realized this from my countless hours of education I finally took a break from the rabbit hole.\n\nThen I found the Lightning network rabbit hole... https://example.com/ 14731 421199 421121.421122.421199.421206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7929858409276 0 \N \N f 219619695 \N 2 79431337 0 f f \N \N \N \N 421121 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431073 2025-03-09 15:17:35.322 2025-03-29 22:39:50.235 \N I don't think it's wrong to highlight "lack of support for Harris". She's particularly unlikable and that usually works out poorly for candidates. https://example.com/ 4115 430934 430934.431073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6588818716846 0 \N \N f 0 \N 0 168176567 0 f f \N \N \N \N 430934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408057 2025-02-18 14:49:19.041 2025-03-29 22:39:50.238 \N Day 108 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 4862 407870 407870.408057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8998676066628 0 \N \N f 0 \N 0 91857899 0 f f \N \N \N \N 407870 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403171 2025-02-14 14:05:39.881 2025-03-29 22:39:49.996 \N Thanks for the post. It's good to get a sense of the thought process "from the other side." That reminds me of something I haven't mentioned in all my complaining. Part of what I really enjoy here is the sense of guys like you, @k00b, @kr also posting and earning. Whether it was reality or not, it felt more like a community than a business. There didn't seem to be two sides, even if there was. \n Another thing that bugs me is that you guys won't be incentivized, at least in ways we can see, for great content. Everyone knows the 3 of you are great stackers, whether you're management or not. I'm glad I can zap your post, but who gets the sats? I liked when that answer was you. https://example.com/ 738 403165 402871.402896.402903.402980.402991.403137.403165.403171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2840839547017 0 \N \N f 0 \N 0 184712142 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430941 2025-03-09 14:22:06.417 2025-03-29 22:39:49.997 \N > there's a 1 trillion dollar bug bounty on bitcoin\n\nAnother way to think about this is that the 1 trillion dollar bug bounty will likely be a bad actor, not a good actor. An actual bug bounty would set some expectations for compensation and not just be game theory based theft from the network. Or why not have both. Bitcoiners have skin in the game. Our money is on the line literally. Seems only logical that all of us that use lightning should seek out incentives to harden the network. https://example.com/ 13467 430834 430330.430561.430567.430834.430941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6681624362347 0 \N \N f 0 \N 0 205062943 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413890 2025-02-23 14:15:58.234 2025-03-29 22:39:49.999 \N ***Tony said...***\n***But concerned about the reliance on nostr. How privacy preserving is it really?***\n\nVery private if you make a conscious effort to use it privately, but I haven't done that. Nostr can be used as a cache for anonymous messages if you use a different pubkey for every message. I'm not doing that so I'm not using it in a very privacy conscious way. You can view every interaction with a market maker from initial contact through each psbt signature. You can't view the *contents* of those messages but you can pretty well guess their general contents because my codebase tells you the order in which messages are sent back and forth. Plus you can do timing analysis: after the final round of signatures you can watch the blockchain for a coinjoin's appearance, and then know exactly what coinjoin the market makers coordinated with the taker on. But even if you do all that you still won't know what outputs belong to whom. You'll just know the sender sent money to one of those outputs and that the other ones belong to market makers, but you won't know which is which, which is the really important thing that coinjoins are supposed to achieve.\n\n***Tony said...***\n***I heard they censor tor IPs because they have an unsolved spam issue.***\n\nSome relays do that, and those same relays also take your ip address and match it against a list of known spammer ip addresses. So if you want to use nostr privately (and, by extension, void), consider using a vpn. You should also connect it to your own node because right now it doxes all your bitcoin addresses to mempool.space, but I haven't written in any tools for connecting it to your own node so good luck!\n\n***Tony said...***\n***Plus linking utxos and communicating through the same nostr pubkey isn't good either.***\n\nDoing key rotation in nostr is pretty easy, I've done it for a prior project where I attacked a bunch of nostr relays with a load of spam. (Incidentally, that spam attack is also the reason why many of them now track ip addresses and block tor users, so in a sense it's all my fault.) It wouldn't be difficult to add that and thus make data tracking harder. As for linking utxos, the only way I know how to stop that is by learning how to do blind signatures. That sounds fun so maybe I'll do that next.\n\nThanks for the feedback Tony! https://example.com/ 929 413650 413650.413890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2806045963678 0 \N \N f 0 \N 0 242345266 0 f f \N \N \N \N 413650 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410663 2025-02-20 15:35:53.062 2025-03-29 22:39:50.229 \N ## Tip of the day\n\n1. Buy a burner number with sats from [SMS4Stats](https://t.me/sms4satbot) to create a fully unknown Telegram account.\n\n2. Use that Telegram account to create a [LNTXBOT](https://lntxbot.com) account and LN wallet. Optional you can import it into Bluewallet or Zeus as a lndhub wallet.\n\n3. Buy sats anonymously from [RoboSats](http://robosats6tkf3eva7x2voqso3a5wcorsnw34jveyxfqi2fu7oyheasid.onion/) using Tor.\n\n4. Receive the sats from Robosats trade into LNTXBOT wallet\n\n5. Swap the sats into any onchain address with [the new swap feature LNTXBOT just introduce it.](https://twitter.com/lntxbot/status/1561805210376409088)\n\nHave fun, use Bitcoin and LN! https://example.com/ 2196 410650 410650.410663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.88548831305067 0 \N \N f 0 \N 0 51659286 0 f f \N \N \N \N 410650 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450227 2025-03-23 19:47:26.893 2025-03-29 22:39:50.229 \N I felt the same urgency this morning. I already had auto withdraw in place, but then it took me a little bit to process what it meant to connect a send only wallet. What does "receive" in its context mean, what does "send" in its context mean? I had to speak this out loud before I understood it. \n> I then asked if an external sending wallet was necessary if I wished to zap fellow Stackers real sats. The answer was in the affirmative. \n\nHere you put this very simply. Nice!\n\nI would only admit this on your post. Everywhere else the discussion is dense, and I sense disdain for any slowness to understand. \nThank you for your simple guide, it is helpful! https://example.com/ 902 450212 450212.450227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8489167383816 0 \N \N f 0 \N 0 198532611 0 f f \N \N \N \N 450212 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404580 2025-02-16 01:21:36.491 2025-03-29 22:39:50.232 \N Good morning. \n\nI am reading one by Studs Terkel called Working: People Talk About What They Do All Day and How They Feel About What They Do. https://example.com/ 13399 404548 404521.404548.404580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0066821433139 0 \N \N f 0 \N 0 80169956 0 f f \N \N \N \N 404521 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424334 2025-03-04 01:22:47.155 2025-03-29 22:39:50.233 \N Taproot is not necessarily the best. Taproot inputs are the cheapest to spend, but Taproot outputs are larger than segwit (IIRC taproot is 33 bytes, segwit output is 43), which means in practice Taproot will only be cheaper (assuming all your outputs are Taproot), if your number of inputs are around 16% more than your number of outputs. \n\nHowever, Taproot has privacy benefits (eventually, although Taproot use is still low). This is because with key aggregation and lightning switching to Taproot, your address will be indistinguishable from a multisig address, or a lightning channel, or... an ordinals inscription address. \n\nAlso, I'm not aware of any Taproot coinjoin pools. Sparrow doesn't seem to let me coinjoin my Taproot funds. Are there any out there that someone could point me to? https://example.com/ 21019 424248 421282.424248.424334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2759294208528 0 \N \N f 0 \N 0 97297271 0 f f \N \N \N \N 421282 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423051 2025-03-02 22:57:43.237 2025-03-29 22:39:50.234 \N Would love it if we can get you to do just that on your new daily driver. Create a partition for optionality.\n\nI’m in a similar boat, it’s hard to switch. Mostly for the trackpad but also the app ecosystem and the UX.\n\nI also see the trend with Apple, increasingly limiting opt-outs and making disabling software updates a challenge. https://example.com/ 3656 423050 422334.422660.422663.422986.422995.423035.423041.423044.423048.423050.423051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3446323910436 0 \N \N f 0 \N 0 82094422 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437290 2025-03-14 12:30:53.444 2025-03-29 22:39:49.996 \N Making steady progress in my cabin project 🙂 Have been busy laying the mineral wool and vapor barrier. I also managed to start the paneling for the interior walls.\n\nToday I'll plan to continue with the paneling 😉\n\nHave a good one!\n\n![paneling](https://i.ibb.co/1ddCyM8/paneling.jpg)\n![paneling 1](https://i.ibb.co/cgDMxkC/paneling-1.jpg)\n![paneling 2](https://i.ibb.co/XknCvwk/paneling-2.jpg) https://example.com/ 6149 437081 436752.437081.437290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7181674115779 0 \N \N f 0 \N 0 52138913 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448390 2025-03-22 15:23:38.514 2025-03-29 22:39:49.997 \N Important work. Taking care of our sick puppy dog the past couple days, although my wife is off today so she will probably take over doggie and kiddo duties. \n\nThe pooch has a tough bought of pancreatitis right now and vet said we can manage it at home without admitting her but we have to stay on top of her medication, feeding schedule, water intake, shorter but more frequent walks. \n\nPancreatitis can be chronic in some dogs and we got her as a rescue so I am wondering if this is the reason she was given up. Her blood panel was clear when we got her last December but she was also malnourished at that time so it has me thinking the family that had her before could not manage the expense and care needed if she had chronic bouts of it. It can be managed with meds and a prescription diet and routine blood work but it will be expensive (maybe 350 a month or so) so I could understand how some families could not afford that. \n\nAnyways, we got her. I will actually get off my lazy butt and go do some work if we can't fit the extra expense in our budget. https://example.com/ 929 448200 448200.448390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.8671525529363 0 \N \N f 0 \N 0 38917966 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438011 2025-03-15 06:03:19.539 2025-03-29 22:39:49.998 \N i'm assuming you're talking about the real postgres integration that LL is working on, not the KV joke. There is [performance testing from alby](https://blog.getalby.com/lightning-benchmark/) from a year and a half ago for the KV one\n\n\ni missed the latest LLabs roundtable but there are generally several problems to performance:\n- external database adds network latency and round trips over boltdb\n- you need very good architecture, schema and implementation due to row/table locking with updates etc\n- if you have synchronous replication for high availability you inject more latency into the process\n\nGenerally I don't think you'd want to be the early adopter of this if you want a high performance node since i'd expect a mixed bag of results and issues before the database gets polished enough. I'm also not sure postgresql integration, if done with 1:1 mapping is ever gonna be as high performance as boltdb. But I have not kept up2date with latest developments and architecture changes in lnd to see how they envisioned this migration and getting the performance up for it.\n https://example.com/ 20511 437932 437723.437932.438011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6678064592092 0 \N \N f 0 \N 0 242603220 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403333 2025-02-14 17:45:20.584 2025-03-29 22:39:50.229 \N Join a space startup/company/program so we can get people off world. https://example.com/ 15484 403325 402904.403317.403325.403333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1447750791583 0 \N \N f 0 \N 0 237938460 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431202 2025-03-09 16:02:50.726 2025-03-29 22:39:50.23 \N `ᕦ(ò_óˇ)` Day 18 of exercising everyday before the saloon opens.\n\nWoke up at 8:30AM today, a little earlier.\n\nWent for a 2 hour walk around the city and met some chickens:\n\nhttps://i.postimg.cc/rwx5mjJy/signal-2023-10-03-135031.jpg\n\nOn the photo, it looks like I cornered them but I didn't. They were actually very trusting and pecked around me with no signs of fear. After I continued my walk, I found a sign that they belong to the circus and are allowed to roam freely. https://example.com/ 1389 403388 403388.431202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.19427876797354 0 \N \N f 0 \N 0 179716895 0 f f \N \N \N \N 403388 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431038 2025-03-09 15:10:59.955 2025-03-29 22:39:50.234 \N nah I think this right here is some ass milking drivel tbh https://example.com/ 10013 421641 421641.431038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6897374340075 0 \N \N f 0 \N 0 12152114 0 f f \N \N \N \N 421641 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408088 2025-02-18 15:02:37.335 2025-03-29 22:39:50.234 \N 1.When you go to the home page you lose yourself in an endless list of short posts all seeking attention.\n\nThis doesn’t give you an overview. This list changes every day. Posts go down, get burried.\n\n\n2. It doesn’t have a sleek responsive user interface like Facebook. You really have to get used to the user interface. If you are used to sleek intuitive user interfaces do not use it.\n\n3. Once you post something there is this clock ticking down. Like chasing you. If you like to work on a post, change it many times do not use it.\n\n\n4. If you like to add images etc. Videos. Easily share content that is not just a link: do notbuse it. I’m already at above 10.000 sats but I still don’t know how to add images and video inline. So use Facebook or Linkedin instead.\n\n\n5. It is a website there is no app you can download. At least I did not find one. If you are looking for a sleek app like Instagram, Facebook, Youtube you will be disappointed. Do not use it.\n\n\n6. There are those annoying ADs. Apparently some people can put 10.000 sats and their posts gets on top. If you hate people with money get treated like VIP do not use it. \n\n\n7. Addicted. If you do not want to be addicted to posting content and checking how many sats you got. If you only want to add content to a system like Facebook so others can receive money do Not use it.\n\n8. You cannot take all your content and keave stacker.news. Like you do on Damus, Nostr. If you want to own your content, take it with you like on nostr, damus do NOT use it. https://example.com/ 7760 407879 407879.408088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.26028261364291 0 \N \N f 0 \N 0 193930996 0 f f \N \N \N \N 407879 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431149 2025-03-09 15:45:12.101 2025-03-29 22:39:50.235 \N Cofounder confirmed the device will transmit encrypted shards of your seed phrase and that it’s optional. \n\nBut what the fuck. Transmit my seed phrase ? Fuck you. \n\nI can no longer trust Ledger as a cold wallet so why should I trust that the change is not going to become mandatory. Even if opting out, that implies the capability is still present. \nFuck that. \n\n\nDirect link to cofounder’s reddit comment :\n\nhttps://reddit.com/r/ledgerwallet/comments/13itm7u/_/jkbyyfp/?context=1\n\n\n https://example.com/ 16282 431142 431124.431131.431140.431142.431149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1868518277578 0 \N \N f 0 \N 0 171916594 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424295 2025-03-04 00:11:12.145 2025-03-29 22:39:49.996 \N If something like that were to happen, bitcoin will no longer be valuable. A network that cannot safeguard the users’ value will no longer be trusted by users.\n\nThe network can try to fork, but it will be hard to decide which point to begin the fork for the reasons you outlined very well. Also, reversing transactions is a precedent that we do not want to set, no matter the reason; because once that precedent is set, someone will always find some other reason to do the same. Then it becomes a slippery slope to become a shitcoin like Eth, where you can just roll back the chain for whatever reason. Even if the network manages to fork and stay alive, it will take some time for people to gain confidence in the network again. https://example.com/ 15544 174107 173779.174107.424295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6628462389016 0 \N \N f 0 \N 0 247075411 0 f f \N \N \N \N 173779 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415315 2025-02-24 17:31:38.005 2025-03-29 22:39:50.229 \N - Switching my homelab from CentOS to AlmaLinux (Been a while I was planning for it)\n- I'm also planning on replacing Docker with Podman when I replace homelab with Almalinux (I hope nothing breaks)\n- Move my personal project (Similar to Kanban but tweaked to my needs) from Vue to Nuxt!\n- Helping my friend move his Plex server to Jellyfin https://example.com/ 2338 415297 414711.415297.415315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.971936486823 0 \N \N f 0 \N 0 47247247 0 f f \N \N \N \N 414711 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424350 2025-03-04 02:15:24.016 2025-03-29 22:39:50.231 \N https://imgprxy.stacker.news/rwNHaFlLuoiLrHXmSkjY3l711ikgZjnE2W59BVRGsJI/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0YxeXJXWDdXSUFBZ0s2ZD9mb3JtYXQ9anBnJm5hbWU9bGFyZ2U https://example.com/ 14939 424192 423667.423687.423704.423895.423925.423968.424192.424350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.82387891846327 0 \N \N f 0 \N 0 185775892 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421293 2025-03-01 15:07:03.41 2025-03-29 22:39:50.232 \N Yes. Maria would notice her "lightning" transaction costs more than her friends who used a real lightning wallet because Maria's transactions are on-chain. She will especially care because so many people were suggested to use this wallet that Muun txs drop from the mempool (they use sent lightning payments without the necessary on chain confirmation) if muun does not raise the fee high enough to stay in the mempool. Eventually, poor Maria has to choose between paying really high fees, or waiting for things to calm down so she can transfer to a real lightning wallet, which she probably doesn't even know about because if the Bitcoiners, the people she deferred her knowledge to in regard to the best wallet software for her use case, told her about it, she would have been using that in the first place. https://example.com/ 12821 421284 420055.420175.421284.421293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8573937636648 0 \N \N f 0 \N 0 132025023 0 f f \N \N \N \N 420055 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431036 2025-03-09 15:10:51.125 2025-03-29 22:39:50.233 \N Fantastic article, I really appreciate this perspective. I would never tell someone to keep their life savings on wallet of satoshi, but for showing them the power of sending 10k sats instantly I think it's a game changer. Teaching people about various tradeoffs is much easier to do once they've already taken the orange pill. Most Bitcoiners will likely use custodial solutions for micropayments and hopefully self custody with a hardware wallet for large savings https://example.com/ 18930 422191 422191.431036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.56868606758308 0 \N \N f 0 \N 0 75366098 0 f f \N \N \N \N 422191 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421334 2025-03-01 15:28:21.751 2025-03-29 22:39:50.233 \N :P\n\nhttps://imgprxy.stacker.news/22dkTPkdnBdj_7iWUt6-K56fKioZOqRio2LWLUn_LpE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4uZHJhd2NlcHRpb24uY29tL2ltYWdlcy9wYW5lbHMvMjAxNS81LTE0L3oyV3JCRHJTWjEtNC5wbmc https://example.com/ 19005 421287 421082.421198.421287.421334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6854443619129 0 \N \N f 0 \N 0 34027732 0 f f \N \N \N \N 421082 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444573 2025-03-20 03:04:34.684 2025-03-29 22:39:50.235 \N I sincerely doubt it. Even after the upcoming halving the subsidy will be 3.125 ₿ per block. To achieve this, we’d need blocks to remain full for the next four years and transactions to bid an average feerate of more than 312.5 ṩ/vB. My expectation would be that the inscription and rune hype will eventually abate and while those uses may continue to buy any "left-over" blockspace, I doubt that they will be pushing feerates as high as we’ve seen last week continuously. https://example.com/ 21541 437727 437727.444573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0378152554923 0 \N \N f 0 \N 0 165292441 0 f f \N \N \N \N 437727 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402083 2025-02-13 14:45:11.582 2025-03-29 22:39:50.236 \N i hope the unlimited file sharing will have an immediate impact for a lot of people.\n\nit’s incredible how hard it is to send large files (1GB or more) from a phone or even a computer today. hopefully this becomes one of the preferred tools to use moving forward.\n https://example.com/ 11192 401824 401824.402083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2587196994039 0 \N \N f 0 \N 0 24197364 0 f f \N \N \N \N 401824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431071 2025-03-09 15:16:43.527 2025-03-29 22:39:50.506 \N Profit and loss accounting vs central planning\n\nI think there's a lot of selection bias implicit in this premise. Most of the time constraints simply reduce the value of outcomes and we don't take notice because that's the normal state of the world.\n\nOne answer to your second question is that it's not obvious how to best handle complexity, but somehow we have to. Good system design seems to be largely about figuring out how much complexity users are ok with handling and not making them take on more than that, but balancing that with how much they're willing pay to have the complexity reduced. https://example.com/ 21713 431028 430330.431028.431071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.47904290547327 0 \N \N f 0 \N 0 5242060 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437024 2025-03-14 07:35:52.818 2025-03-29 22:39:50.51 \N I'm bullish. It's expensive but 10-100x more natural a form factor than a normal computer.\n\nAt one point computers having screens and then mice were "going nowhere" and were "annoying," but it doesn't matter how annoying they are in a vacuum. All that matters is the alternatives were much worse.\n\n> I hope time spent on screens for work and leisure in general is disincentivized\n\nThat trend is accelerating rather than reversing. https://example.com/ 17147 436935 436935.437024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2129928480753 0 \N \N f 0 \N 0 118556218 0 f f \N \N \N \N 436935 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404515 2025-02-15 23:55:33.542 2025-03-29 22:39:49.998 \N `ᕦ(ò_óˇ)` Day 1 of exercising everyday before the saloon opens\n\nGot up at 9am and went for a 10min jog to a calisthenics park inside a open-air stadium but noticed it's closed since it belongs to the university. Then took a walk in the local forest and jogged for another 20mins when I noticed I am again being lazy, lol.\n\nWent home, showered and feel good now.\nTomorrow, I'll go to the other calisthenics park without any gates.\n\nI shouldn't underestimate how important strength training is. In the past, I focused too much on cardio. I used to go to a gym but I never liked working with machines or bells. Too boring, too many people (which means you may have to wait), you're inside (and not in nature). I only liked the rope exercises. Climbing up a rope or swinging it.\n\nBody weight exercises seem to be much more my style.\n https://example.com/ 20849 404341 404341.404515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.935181068713646 0 \N \N f 0 \N 0 21766400 0 f f \N \N \N \N 404341 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437711 2025-03-14 19:33:18.111 2025-03-29 22:39:50.228 \N I predict SN will have a monster year but end the year with fewer than 15 territories. https://example.com/ 15719 437403 437403.437711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4617595836989 0 \N \N f 0 \N 0 156018438 0 f f \N \N \N \N 437403 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442309 2025-03-18 14:05:51.19 2025-03-29 22:39:50.229 \N Reading an extract from "The Broken Money" by Lyn Alden.\n\n"There are over 160 different currencies in the world, each with a local monopoly over its own jurisdiction. But aside from the top handful of them, most currencies rapidly devalue over time and have little acceptance outside of their own borders." ... "How did we get here? Why isn’t our money better than this in the 21st century?" \n https://example.com/ 6149 442281 442281.442309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.79261221719285 0 \N \N f 0 \N 0 116316420 0 f f \N \N \N \N 442281 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407661 2025-02-18 09:26:56.148 2025-03-29 22:39:50.229 \N I'm gonna take this analogy further than it probably goes:\n\nI have to manage my gas tank. 100 years of car technology hasnt solved the problem away from me. I have to make sure it doesn't run out. If it does I get stranded somewhere miles from where I need to be and it is a huge headache. \n\nSure, we have warning symbols and gauges, but we don't have a great solution that makes it so I don't have to manage my gas tank. We just built a really big infrastructure to help me do it. https://example.com/ 15762 407551 406115.407198.407209.407236.407425.407551.407661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.73213027415628 0 \N \N f 0 \N 0 171479572 0 f f \N \N \N \N 406115 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455641 2025-03-27 08:38:13.205 2025-03-29 22:39:50.232 \N Good article -- I really like DHH. Controversial sometimes but a good actor, I think. This quote:\n\n> Which brings us perhaps to the biggest bugbear about Denmark that American liberals tend to skate past: Immigration. Denmark is a highly homogenous society. 87% of Danes share the same ethnic heritage, and they openly credit their cohesive culture and willingness to participate in and share for the common welfare to this fact.\n\nIs a nice example of being honest about something complicated. We talked about that a bit [the other day](https://stacker.news/items/418768). https://example.com/ 20059 455422 455422.455641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3671016631017 0 \N \N f 0 \N 0 224005164 0 f f \N \N \N \N 455422 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455493 2025-03-27 04:19:09.969 2025-03-29 22:39:50.232 \N I didn't know about the mempool.space one but it's really trivial to detect. Wrote about it almost two years ago at https://abytesjourney.com/lightning-privacy/\n\nAlso don't forget about the recent amboss surveillance project, which they said they would walk back but continue to grossly collect. https://ambosstech.medium.com/lightning-balance-sharing-and-network-statistics-32e687a4db25\n\nUnfortunately I feel like the incentives are for unprofitable nodes (which I'd wager is most) to give up their data (which mostly comprises of OTHER people's data) for money or additional services. \n\nThere's still so much to improve for lightning to be more private so still bullish, but it is pretty bad at a mass scale currently. Check out on going research at https://lightningprivacy.com https://example.com/ 18525 454701 454701.455493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8074187187429 0 \N \N f 0 \N 0 40750451 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422585 2025-03-02 15:09:35.448 2025-03-29 22:39:50.234 \N Immoderate Greatness: Why Civilizations Fail by William Ophuls -- probably a lot of people here have read or come across the Fourth Turning, it's in a similar vein. Cycles of rise and fall, and a pretty strong argument that we're in the falling part now, but this time it's global. \n \nShort but amazing - I'd say one of the better books I've read in a few years not just 2024 https://example.com/ 13143 422521 422056.422521.422585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.5065319140733 0 \N \N f 0 \N 0 143769571 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428167 2025-03-06 22:47:41.486 2025-03-29 22:39:50.235 \N Something special.\nI did it many times in the past but this time will be with the help of a friend from El Salvador.\nOnboarding new people into Bitcoin is not an easy task. Not for the new user, but also for us, the bitcoiners. Finding the right tools to start with somebody is not an easy task. \n\nEach case is special, please don't jump and generalize with crap "privacy first". That doesn't work like that.\n\nWe all learn in this process, especially us, the bitcoiners.\n\nSoon I will make a post here with the whole story. https://example.com/ 3342 428166 428166.428167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.40411158027852 0 \N \N f 0 \N 0 87250171 0 f f \N \N \N \N 428166 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408010 2025-02-18 14:23:10.809 2025-03-29 22:39:50.238 \N Unpaywalled: https://archive.is/3G4l1 https://example.com/ 21116 407898 407898.408010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7651333023374 0 \N \N f 0 \N 0 184463490 0 f f \N \N \N \N 407898 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424308 2025-03-04 00:35:00.868 2025-03-29 22:39:50.238 \N When the hamas-isreal thing started happening and we got kind of spooked, my wife (IR major with South America focus) decided [Uruguay](https://en.wikipedia.org/wiki/Uruguay) is probably the spot considering El Salvador isn't exactly low key. \n\n> Uruguay is ranked first in the Americas for democracy, and first in Latin America in peace, low perception of corruption, and e-government. It is the lowest-ranking South American nation in the Global Terrorism Index, and ranks second in the continent on economic freedom, income equality, per-capita income, and inflows of FDI. Uruguay is the third-best country on the continent in terms of Human Development Index, GDP growth, innovation, and infrastructure. Uruguay is regarded as one of the most socially progressive countries in Latin America. It ranks high on global measures of personal rights, tolerance, and inclusion issues, including its acceptance of the LGBT community. The country has legalized the consumption and production of cannabis, same-sex marriage, prostitution and abortion. Uruguay is a founding member of the United Nations, OAS, and Mercosur. https://example.com/ 16769 424280 423917.424280.424308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4438780114643 0 \N \N f 0 \N 0 132841485 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423641 2025-03-03 13:58:07.477 2025-03-29 22:39:49.998 \N No rollout of changes is ever without growing pains. You're a small team, you can't be expected to get everything completely right every time. Patience and cooperation from your customers is what fixes these issues. Microsoft get it wrong all the time and they've got some of the highest paid and largest software teams. \n\nYou both responded rapidly and found a work around whilst you look into the issue. And done so within the last hour or so? Microsoft could never hit those kinds of resolution timeframes. https://example.com/ 8648 423620 423620.423641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3886970105669 0 \N \N f 0 \N 0 227243150 0 f f \N \N \N \N 423620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423193 2025-03-03 04:49:39.528 2025-03-29 22:39:49.999 \N The IP over Avian Carriers (IPoAC) is a humorous internet protocol that is described in RFC 1149, a document within the computer network community. It was published on April 1, 1990, as an April Fools' Day joke. The protocol suggests using homing pigeons to carry internet protocol (IP) traffic. Interestingly, it was actually implemented and tested in 2001 by the Bergen Linux user group. They sent nine packets of information over a distance of approximately 5 km (3.1 miles) using pigeons, and although the packet loss was high due to one of the pigeons going missing, it demonstrated that even the most unconventional methods could be used to transmit data! https://example.com/ 8459 422745 422483.422714.422745.423193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8030488522395 0 \N \N f 0 \N 0 115638616 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436119 2025-03-13 10:33:51.642 2025-03-29 22:39:50.229 \N Very much disagree with this. USD is very relevant. It really bugs me all the people that say "1 sat = 1 sat". That's meaningless and blindly idealistic. No matter how you slice it, the exchange rate of BTC to USD determines everything. Don't agree? Alright then how about I hire you for 1 sat an hour? Oh not high enough for you? Why not? Is it because in order to buy things to sustain yourself you need more than that per hour? Why is that? Oh is it because things cost fiat money and 1 sat doesn't get you a lot of fiat money? https://example.com/ 5497 434441 434441.436119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27681318625752 0 \N \N f 0 \N 0 237016654 0 f f \N \N \N \N 434441 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444549 2025-03-20 01:59:43.97 2025-03-29 22:39:50.229 \N This fee is basically a mining fee, because in Phoenix you actually have your own Lightning channel, which takes an on-chain transaction to open the first time. Later on, with this channel already opened, the fee will only be that of a Lightning transfer, so presumably a few sats.\n\nSee this [table](https://acinq.co/blog/phoenix-splicing-update#fee-comparison) for more details (in the "Fees after" column, since you're running the latest version of Phoenix).\n\nAs you can see, you're in the "receiving Lightning with insufficient liquidity" case, i.e. the last line of the table. The fee is actually smaller than what you would have had to pay with the previous version of Phoenix, which didn't have splicing. For more details as to what 'splicing' means in that context, you can take a look at the "Wallet & Tools" section of this [newsletter](https://blog.lnmarkets.com/latest-strikes-45-july-10th-16th-2023/) I wrote, or to Phoenix's [blog post](https://acinq.co/blog/phoenix-splicing-update).\n\nUsing Lightning with full control over your funds (i.e. "self-custody") comes at the unescapable cost of having to open a channel. Wallets that don't allow you to have your own channels and private keys are custodial: you trust them not to steal your funds, like a bank.\n\nSo you're doing nothing wrong. I would even say, you're doing it right! ⚡️ https://example.com/ 1424 442710 442710.444549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9891186539063 0 \N \N f 0 \N 0 56339152 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407563 2025-02-18 07:52:11.838 2025-03-29 22:39:50.229 \N Apart from the scientific data, how is it going where you live in temperature terms? Are you noticing 2024 and 2023 being different? For me, it was very noticeable in February, with very warm days. But March was colder than usual.\n\nThe polar vortex inverted, and it making weather colder and more unstable. I'm still worried about this summer though. Do you think it will be a hotter summer than 2023? or colder? \n\n## Polar vortex is 'spinning backwards' above Arctic after major reversal event https://www.space.com/earth-polar-vortex-spinning-backwards-above-arctic-reversal-event https://example.com/ 18219 407218 404393.407218.407563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5586314892354 0 \N \N f 0 \N 0 50681930 0 f f \N \N \N \N 404393 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457106 2025-03-28 08:07:43.335 2025-03-29 22:39:50.23 \N Hal Finney for running bitcoin https://example.com/ 20596 456728 456728.457106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6935722653281 0 \N \N f 0 \N 0 22868856 0 f f \N \N \N \N 456728 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402892 2025-02-14 08:18:17.793 2025-03-29 22:39:50.23 \N Genesis by Justice, for a couple reasons:\n\n1.) This song was released 16 years ago as Satoshi was cooking up the network (the song is called Genesis....)\n\n2.) Justice has a new album dropping a few days after the halving, expecting more fresh jams to carry us through the bull run. \n\n3.) It's an 10/10 banger, not an annoying meme song... doesn't get old \n\n4.) it's not a boomer song like most of the songs in the poll \n\nhttps://www.youtube.com/watch?v=ThKNt-GY1ww https://example.com/ 21578 402003 402003.402892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3809804139863 0 \N \N f 0 \N 0 49359087 0 f f \N \N \N \N 402003 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458327 2025-03-29 07:53:12.042 2025-03-29 22:39:50.231 \N How do you think people (technical and/or non) can best contribute to or work towards improving/accelerating bitcoin advancement and improvement these days?\n\nSaid another way: what does bitcoin need most right now? What would you be building if you were starting today from scratch? https://example.com/ 1426 458227 458227.458327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.839315093413 0 \N \N f 0 \N 0 20802456 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437078 2025-03-14 09:59:03.538 2025-03-29 22:39:50.231 \N Buy once, cry once.\n\nHere are some brands/products that have earned my loyalty over the years:\n\n- all-clad, carbon steel, and cast iron pans\n- korin chef knives\n- clay donabe\n- japanese glassware\n- husky waterproof storage containers (5, 12, 20, 30 gal)\n- husky industrial steel garage shelving\n- onsen towels\n- berlin gardens outdoor polywood furniture\n- linoto linen boxers\n- napolean prestige pro grill\n- easyworkz diego stainless moka pot\n- comandante barracuda c60 hand grinder\n- wavian usa water and fuel cans\n- hardcore hammers hatchet\n- yeti coolers\n- tbco cashmere beanies https://example.com/ 19668 437044 437044.437078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9832220823867 0 \N \N f 0 \N 0 145446336 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423151 2025-03-03 03:29:05.779 2025-03-29 22:39:49.998 \N Equity Pleb raises through Lightning Ventures is probably your best bet right now. \n\nWe decided to pass on the equity crowdfunding for now, it's too regulated and permissioned, and doesn't fully need/leverage bitcoin (for now). However, we're keeping a close eye on new exciting equity models like NostrRocket, that could disrupt how equity works from the bottom up. \n\nAs per the idea of using Geyser to help raise funds towards specific bounties, Geyser can provide the following value-added:\n- Contributors can fund with onchain and so potentially give substantially higher amounts than is usually held in lightning wallets.\n- Contributors can see their profile attached to the contributions and feel recognized for it (in SN it's all lumped together)\n- Contributions can happen directly form StackerNews\n- You can give away Nostr Badges or other perks/rewards to those who fund more than a certain amount\n- You can leverage donations from the bitcoin community on Geyser\n- Btw, Geyser is free to use if you use your own Node, we only take 2% if you connect a lightning address. \n- In both cases we generate a @geyser.fund ln address, meaning that you can get funded from anywhere and it would show in your Geyser project. We also support Zaps!\n- We have our weekly leaderboards, and can help promote SN even further (not that you guys need much promotion, as you have such a great brand + community)\n\nJust some ideas! We love SN, and would be happy to partner <3 https://example.com/ 16695 423071 423071.423151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1815582724056 0 \N \N f 0 \N 0 108701222 0 f f \N \N \N \N 423071 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424356 2025-03-04 02:33:59.277 2025-03-29 22:39:50.233 \N This exact issue is why I am excited for FediMints. I am a pretty technical person, but I just can't be bothered to run a node at this point. I use Phoenix now, and will use FediMints once it comes out. I'd be more serious about running one as part of a federation, but as it sits there just is not much an incentive to do it for me. https://example.com/ 2724 423954 423954.424356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.60126534588015 0 \N \N f 0 \N 0 166581474 0 f f \N \N \N \N 423954 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421370 2025-03-01 15:55:01.354 2025-03-29 22:39:50.234 \N Its been done. It hasnt taken off. \n\nUnless visa/mastercard cut off onlyfans, a lightning version will not be competitive. \n\nMost of the people posting want dollars and probably dont care how the money gets to them. Most of the people paying have credit cards and dont know about or care about lightning. \n\nPeople have credit cards and want to see content. People making the content are able to take credit cards via OF. Unless that changes, why would the content producers move to a platform with fewer potential buyers? Why would consumers move to a new payment method which is more expensive and more complicated when they already have something that works?\n\nThere have been a couple of sites launched that have been “onlyfans for lightning” (https://docs.starbackr.com/) and they haven’t worked out because they’re competing against something that works better for more people. \n\nOnlyfans for lightning only makes sense if lightning makes kore economic sense for that market. Today, it does not. \n https://example.com/ 19826 421320 421121.421122.421199.421206.421320.421370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2420390915934 0 \N \N f 0 \N 0 139050227 0 f f \N \N \N \N 421121 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415175 2025-02-24 15:16:41.221 2025-03-29 22:39:50.507 \N Gradually, then suddenly 🔥 https://example.com/ 21713 414678 414678.415175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3594774780422 0 \N \N f 0 \N 0 117986101 0 f f \N \N \N \N 414678 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403830 2025-02-15 08:52:39.061 2025-03-29 22:39:50.513 \N None, people in my family are financially literate for at least 3 gen.\n\nThe people that are not into Bitcoin are still smart enough to understand the advantage of a hard money.\n\n> Oh, and that house you bought is going down forever\n\nSounds like you just want provocation. Childish. https://example.com/ 1564 403824 403824.403830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0094698341517 0 \N \N f 0 \N 0 118700064 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423616 2025-03-03 13:44:50.118 2025-03-29 22:39:50.513 \N Hack. If a coordinated global effort from governments to ban bitcoin was successful. If bitcoiners stopped caring about freedom and sound money, adoption, layer 2 development and only cared about getting rich in fiat terms. If a fork that inflates supply wins out. If the fee and block subsidy prove to be insufficient in the future to secure the network and a consensus is not reached to solve the issue. \n\nI am sure I could come up with a few more. I am not suggesting these are likely by any means but they are some things that would at least cause me to reassess my thesis. https://example.com/ 6393 423485 423468.423485.423616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8056229852273 0 \N \N f 0 \N 0 73610918 0 f f \N \N \N \N 423468 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403192 2025-02-14 14:19:59.149 2025-03-29 22:39:50.515 \N There is definitely a contingent on SN who are complete cliches, and respond to everything the way you'd expect -- you could train GPT2 on a corpus of their writings and it would be indistinguishable. You can get good zap rewards by posting the accepted religious talking points. This kept me from participating on the site for a long time.\n\nBut there are also people who seem to appreciate talking about some of the more expansive things related to btc. This is super encouraging! I'm excited to see if it can grow into the premiere destination to talk about more diverse btc-adjacent topics, since there's nowhere really to talk about them right now. The thoughtful way they're building out incentives makes me think there's really a chance. \n\nSN is a btc site, but the community paradigm they're messing with is potentially way bigger than just that. https://example.com/ 18177 403121 403121.403192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.20207810807369 0 \N \N f 0 \N 0 140060803 0 f f \N \N \N \N 403121 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416309 2025-02-25 14:36:18.266 2025-03-29 22:39:50.516 \N We've got JP Sears headlining The Bitcoin Rodeo this year.\n\nWe're also doing a roast of BTC Sessions.\n\nExplain to me why you should get a free ticket to The Rodeo this year.\n\n![Awaken With JP1051.jpg](https://m.stacker.news/27863) https://example.com/ 9084 415913 415913.416309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.36875789422 0 \N \N f 0 \N 0 136600812 0 f f \N \N \N \N 415913 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438022 2025-03-15 06:21:24.635 2025-03-29 22:39:50.518 \N Having this kind of idiocy go hand-in-hand with bitcoin in the minds of most normies is one of the current great challenges for bitcoin's ultimate success. https://example.com/ 12609 437986 437190.437318.437324.437986.438022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8746356586332 0 \N \N f 0 \N 0 98480667 0 f f \N \N \N \N 437190 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448451 2025-03-22 15:53:12.558 2025-03-29 22:39:49.999 \N Great Jones Street, by Don Delillo. I'm a big DeLillo fan. This isn't his most popular book. I read it years ago and enjoyed it. Many, many years ago I used to hang out in a bar on Great Jones Street. Maybe that's why I enjoyed it so much the first time I read it. https://example.com/ 21248 447896 447892.447896.448451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36178344355204 0 \N \N f 0 \N 0 191049645 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404537 2025-02-16 00:39:53.202 2025-03-29 22:39:50.23 \N I *installed* the Stacker New web app on my phone and allowed notifications. As a result I've increase my participation tremendously, and started making more sats than I boost to others. Uh-oh? Will this spark a new addiction and lead me to neglect my work and personal life to just sit on Stacker News and stack sats all day? https://example.com/ 20381 402191 402188.402191.404537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3994383099946 0 \N \N f 0 \N 0 127349989 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444536 2025-03-20 01:27:39.258 2025-03-29 22:39:50.23 \N Best thing you can do is run [cgminer](https://github.com/kanoi/cgminer) and connect to [CKPoolSolo](https://solo.ckpool.org/). But that assumes you have an ASIC miner. I just read you have a GPU... sigh...\n\nA GPU doesn't really work for mining real Bitcoin. You will simply waste your time and electricity.\n\nIt's like trying to mine for gold with a plastic spoon. Even with an ASIC you are basically playing a lottery. A GPU is just a waste of time, really.\n\nIf you just want to do this as a learning experience, you can mine at testnet with your GPU. These coins don't have any value, and they might disappear at any time.\n\nI wrote a couple of guides about this on Bitcointalk:\n\n- [Solo mine testnet bitcoins with bfgminer, Bitcoin Core, and a CPU/GPU](https://bitcointalk.org/index.php?topic=5415861.msg61058395#msg61058395)\n\n- [Solo mine testnet bitcoins with cgminer, Bitcoin Core, and a Compac F](https://bitcointalk.org/index.php?topic=5415335.0) https://example.com/ 1010 444532 444506.444532.444536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5016742445172 0 \N \N f 0 \N 0 9464701 0 f f \N \N \N \N 444506 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404362 2025-02-15 19:57:30.715 2025-03-29 22:39:50.232 \N For me it has nothing to do with what we have. I live very simply and I don't have much and yet, I feel infinitely abundant. Meaning, I always know I will have everything I need and so I do. In my past life, I made a lot of money and enjoyed consuming. And I was in a scarcity mindset. Now I am abundant through having less. https://example.com/ 8985 404287 403389.404287.404362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3091221532489 0 \N \N f 0 \N 0 139890066 0 f f \N \N \N \N 403389 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431101 2025-03-09 15:27:51.219 2025-03-29 22:39:50.236 \N Thanks for the feedback. :)\n\nIMO there are 2 groups:\n1) Bitcoiners who hodl but don't use Bitcoin as a payment method.\n2) Small businesses and individuals who are currently using credit cards or Paypal.\n\n(Corporations and nation-states aren't included as a 3rd group, because they are unlikely to adopt Bitcoin in an inclusive (= KYC-free), self-sovereign and private way. Instead they are more likely to use walled-garden KYC payment gateways such as Strike and Bitpay, which require government ID even for small amounts (e.g. an electronics store that uses Bitpay would require ID even to buy 20€ headphones), and are no different than the existing surveilled and censored banking system.)\n\nRegarding the 2 groups, I think it would be easier to convince hodlers, as they are already familiar with Bitcoin. The difficulty is to market Bitcoin as a payment method, not only a store of value or investment. "Spend and replace" as a strategy could help people who are worried about "selling" their Bitcoin. For the ideological Bitcoiners: Satoshi invented Bitcoin as peer-to-peer electronic cash (not gold) and an early version of Bitcoin included a peer-to-peer marketplace (https://www.reddit.com/r/Bitcoin/comments/ejvhri/how_bitcoin_looked_11_years_ago/), so circular economies are a core part of Bitcoin's ethos. For people who are worried about "taxable events", KYC-free exchanges, payment gateways and marketplaces solve this. An active "Bitcoin Craigslist" would help to provide a range of products and services for Bitcoin, as well as Bitcoiners who accept Bitcoin in their day jobs (e.g. construction, farming, retail, healthcare, real estate) and convince their favorite businesses to do the same.\n\nFor small businesses, there are many benefits of accepting Bitcoin (privacy, low fees, no risk of fraud, counterfeits or seizures, etc.) but many businesses may need to withdraw Bitcoin to fiat in order to pay bills and suppliers. Maybe a Bitcoiner or even a local Bitcoin meetup could help to exchange some of the business's earned Bitcoin to cash. Local Bitcoin meetups could also provide free onboarding to teach interested businesses how to setup a mobile wallet, process payments and exchange Bitcoin to fiat (if needed for bills/suppliers). https://oshi.tech is also a great initiative (customers enjoy rewards when paying with Bitcoin and businesses enjoy easy onboarding and free advertising).\n\nSome additional "Introduction to Bitcoin" content here:\nhttps://anarkio.codeberg.page/bitcoin/\nhttps://anarkiocrypto.imgbb.com/\nhttps://twitter.com/linkinparkrulz_/status/1543348394181148672\n\nPlus a great book "Why Cryptocurrencies" by Jonas Hietala:\nhttps://whycryptocurrencies.com/toc.html https://example.com/ 21451 413743 413743.431101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2717080739805 0 \N \N f 0 \N 0 115763129 0 f f \N \N \N \N 413743 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408337 2025-02-18 17:54:32.531 2025-03-29 22:39:50.239 \N Howdy Partners! Just enjoying the vibe and material here. Another day another cowboy hat record and sat stacking record. Living the dream! https://example.com/ 21485 408323 407903.408323.408337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5452222950921 0 \N \N f 0 \N 0 84607265 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427569 2025-03-06 13:51:26.457 2025-03-29 22:39:50.506 \N I don't, lol this place is too signal and too many honest debaters here, will rek a normie that doesn't have the humility to deal with it all..I feel like SN is a destination for post maximalist realisation https://example.com/ 2342 427253 427251.427253.427569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9567611517268 0 \N \N f 0 \N 0 177576769 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458382 2025-03-29 08:39:52.52 2025-03-29 22:39:50.509 \N It's actually not that bad of an idea. Since there's already people who are doing their little "BRC-20" thing with Ordinals which seem to be unnecessarily complex transactions, at least such a protocol (especially being proposed by someone like Casey, which means that while adoption would remain voluntary, it actually stands a good chance of having people decide to adopt it). It's pretty apparent, at least in my opinion, that ordinals/inscriptions aren't going anywhere; neither are the other implementations of such technology that people are dreaming up. Its also my opinion that this will continue to go on and the people who are participating in these activities do not give a shit about the various arguments certain purists here would make against it. That being the case, I think it's actually a pretty wise/prudent thing to push for. https://example.com/ 21518 458251 454221.454235.458026.458207.458251.458382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8360636721966 0 \N \N f 0 \N 0 49430631 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422644 2025-03-02 15:37:20.753 2025-03-29 22:39:50.511 \N So you want to slow development on new features forever? If something gets added/changed it then has to updated, tested, released, and maintained three times (web, iOS, Android). Reddit didn't have an official app until 2016. Over 10 years after the website launch.\n\nSN will likely release an API and community apps of all sorts will flourish. https://example.com/ 19071 422640 422203.422207.422399.422491.422579.422583.422586.422604.422611.422620.422633.422640.422644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.648496274854 0 \N \N f 0 \N 0 116473795 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421680 2025-03-01 21:42:23.478 2025-03-29 22:39:50.515 \N Too much US miners as a % of total hash(which is hilarious because the worry was about too many Chinese miners until recently.) \n\nStablecoins built on BTC or LN may throw off game theory.\n\nBukele and Bitcoin are too linked for my taste.\n\n https://example.com/ 11091 421587 421587.421680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.10081336710253 0 \N \N f 0 \N 0 158663269 0 f f \N \N \N \N 421587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410165 2025-02-20 10:08:30.166 2025-03-29 22:39:50.517 \N ## The Market for Liberty ##\nBy Morris and Linda Tannehill\n—————\nRecommended by Doug Casey as he shares [here](https://youtu.be/dIL90Hl-TN0?t=2128). Apparently it’s the book that Milei read way back when and completely transformed his world view. Heard him mention it a few times so got my copy last week.\n\nReckon I can make my way through it this weekend if I don’t get tempted to be in build mode. It’s not a chunky one. https://example.com/ 14774 409812 409812.410165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.483527039089 0 \N \N f 0 \N 0 249162483 0 f f \N \N \N \N 409812 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431062 2025-03-09 15:12:46.765 2025-03-29 22:39:50.229 \N I think this is indeed a great post from @udiWertheimer since he is not wrong.\n\nReading the comments here and [here](https://stacker.news/items/374027/) just further confirms that most can't be bothered to understand Ordinals/inscriptions/BRC20s but still have strong opinions about them and hate them, I would say. Some even mentioned that they didn't even read the tweet. That's how spot on @udiWertheimer is about some bitcoiners.\n\nAt least I must admit that I don't understand Ordinals/inscriptions/BRC20s on a technical level. So I definitely shouldn't put strong opinions of them out there (which I think I didn't).\n\nEssentially, he explains how systems are usually exploited. Something was found that wasn't found before by a black hat and it got exploited. Now we should do the same with them and their stuff. We need to understand these people (recon) and then use this information against them (like social engineering). Same for what's happening onchain. We need more people like @supertestnet, Breaker of JPEGs. The chance that we can do something about it effectively (without digging our own grave) increases when more people understand this stuff on a technical level.\n\nThis should be obvious but unfortunately, this doesn't seem to be the case. https://example.com/ 802 417338 417338.431062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6332945918392 0 \N \N f 0 \N 0 236513240 0 f f \N \N \N \N 417338 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431206 2025-03-09 16:03:00.25 2025-03-29 22:39:50.23 \N ![](https://m.stacker.news/58537) https://example.com/ 12870 402075 402075.431206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0203446991442 0 \N \N f 0 \N 0 34503909 0 f f \N \N \N \N 402075 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424360 2025-03-04 02:47:46.905 2025-03-29 22:39:50.232 \N The Fourth Turning https://example.com/ 3642 424288 424288.424360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3379758188629 0 \N \N f 0 \N 0 49148398 0 f f \N \N \N \N 424288 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444571 2025-03-20 03:02:51.322 2025-03-29 22:39:50.232 \N Quite a corner case, you'll hit this situation in very rare circumstances, if ever.\n\nMost likely you'll never gain enough traction because you'll be repelling 9 out of 10 users with this policy. That's what I suspect. https://example.com/ 11288 444144 443593.443614.443774.443787.444071.444144.444571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9167600877892 0 \N \N f 0 \N 0 29547489 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402341 2025-02-13 17:29:45.673 2025-03-29 22:39:50.234 \N Welcomed baby #3 at 823090. Everyone healthy. Can't stop fiat mining though but at least get to WFH. Used the opportunity to apply to a bitcoin role. \n\nAnyone transition into the bitcoin industry lately? Whats the good word? https://example.com/ 2402 401714 401714.402341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.92546892806676 0 \N \N f 0 \N 0 19768704 0 f f \N \N \N \N 401714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415685 2025-02-25 00:59:30.584 2025-03-29 22:39:50.234 \N Thanks!\nI got it. For umbrella and start9, I need a computer which I'll have in 1 months time. So, till then I'll be learning how to run my own node. \n\nThanks for your time sir! I'll ask again if I have a confusion or question. https://example.com/ 13132 415670 415670.415685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4290499192911 0 \N \N f 0 \N 0 196017670 0 f f \N \N \N \N 415670 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444306 2025-03-19 19:05:08.139 2025-03-29 22:39:50.239 \N Net neutrality is good for an open internet which is not controlled by ISPs.\n\nNet neutrality means that ISPs should not shape traffic as they see fit. Not even when it's "illegal traffic".\n\nSo net neutrality also means that governments can't force ISPs to shut down your internet because you're suspected of a crime by potentially fining the ISPs for any illegal activity that you might be doing. So ISPs would rather just shut down your internet access before it even gets to this point.\n\nSo think of net neutrality like asserting that the internet should be more like public infrastructure. If the net is not neutral, it's no longer public infrastructure.\n\nThere was a lawsuit where some government wanted to fine ISPs for piracy of their users. The ISPs tried to argue that they can't be fined since Twitter also wasn't fined for terrorists using their platform. And ISPs have even less control what goes through their networks. But can't find it at the moment.\n\nHere are some sources which I haven't verified myself but the headlines look like they go more into depth of what I am trying to say:\n\n- https://www.eff.org/deeplinks/2017/03/ny-state-ags-lawsuit-against-isp-shows-why-we-need-strong-net-neutrality\n- https://arstechnica.com/tech-policy/2021/06/1-billion-piracy-ruling-could-force-isps-to-disconnect-more-internet-users/ https://example.com/ 5779 443836 443836.444306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7834264539365 0 \N \N f 0 \N 0 117037516 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404625 2025-02-16 03:04:01.352 2025-03-29 22:39:50.509 \N Very well said. It's kind of a zen thing. You will orange pill more effectively when you're not trying to orange pill. https://example.com/ 19217 404561 404354.404561.404625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3824947836575 0 \N \N f 0 \N 0 55641728 0 f f \N \N \N \N 404354 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431258 2025-03-09 16:08:26.053 2025-03-29 22:39:50.512 \N Damn, you make it look so simple.\n\nIt's been a while since I've wanted to ask out the girl from the pharmacy in my neighborhood, but I lacked the courage and feared receiving a 'No' for an answer.\n\nI think you just gave me the courage I needed to go and ask her out. https://example.com/ 4314 392210 392210.431258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.41418919649387 0 \N \N f 0 \N 0 8768681 0 f f \N \N \N \N 392210 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444277 2025-03-19 18:46:10.174 2025-03-29 22:39:50.514 \N The best is a natural birth at the hospital. \n\nI have several kids. My wife gave pretty natural births (no c-sections, no special procedures), but at the hospital. People do not realize that if everything goes well, the hospital staff does not get involved that much. \n\nBut in case something goes wrong, you have all the tech, staff on call, etc. to save you and the life of your child. \n\nDuring the second birth, our baby got stuck a bit and the midwife had position my wife in a way to allow the baby to get out. I can’t imagine dealing with this at home alone. \n\nSure you can have a midwife at home, but why risk it? https://example.com/ 9184 444213 444114.444132.444143.444150.444207.444213.444277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6917921560246 0 \N \N f 753649302 \N 5 72454093 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403450 2025-02-14 20:09:48.277 2025-03-29 22:39:50.515 \N I would love to see more of these and have more opportunities to buy someone a cross-boarder coffee or even groceries. This has so much potential!!! I think this is approaching a really cool way for real, immediate, effective charity. Wouldn't it be great if a similar event were to happen in South Africa where we could buy groceries for children at PicknPay in real time. Bitcoin is just too cool.\n\n https://example.com/ 12169 403172 402871.403021.403151.403172.403450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6932957137111 0 \N \N f 0 \N 0 102444755 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417036 2025-02-26 02:36:00.862 2025-03-29 22:39:50.518 \N That is so cool, I didn't know Matthew Dellavedova was on SN. I remember their championship in 2016 fondly, as I was rooting against the Golden State juggernaut. https://example.com/ 708 417003 417003.417036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9278375124002 0 \N \N f 0 \N 0 14663180 0 f f \N \N \N \N 417003 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434808 2025-03-12 08:54:34.007 2025-03-29 22:39:50.23 \N I'm so bullish on SN, it starts to feel like bitcoin inside bitcoin, lol\n\nCan't even convince people of bitcoin. Let alone SN then. One friend of mine said you need an audience to make it worthwhile. And everyone is on these centralized platforms like YouTube. How SN wants to compete with that? (I am paraphrasing, don't remember exactly our conversation. But it was mostly about monetization iirc.) \n\nTried to explain that it's much easier to get off zero here + no ads (= no privacy invasion) + rewards for curating content but didn't work for some reason.\n\nFor example, you just earned 20ct in today's price for simply posting a link. If that's not nothing, I don't know what is. https://example.com/ 1316 434792 434792.434808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.09714594298511 0 \N \N f 0 \N 0 144132161 0 f f \N \N \N \N 434792 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424359 2025-03-04 02:42:06.241 2025-03-29 22:39:50.233 \N I am working to separate bitcoin content from language barrier and publish it freely and accesible on a value for value basis on:\n\nEuropeanBitcoiners.com https://example.com/ 16809 423124 423124.424359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7046463925982 0 \N \N f 0 \N 0 15208165 0 f f \N \N \N \N 423124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442900 2025-03-18 21:41:14.687 2025-03-29 22:39:50.235 \N The average speed of Heinz Ketchup squirt is .028 MPH. https://example.com/ 4074 442851 442851.442900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9661993386924 0 \N \N f 0 \N 0 123311680 0 f f \N \N \N \N 442851 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455638 2025-03-27 08:35:57.214 2025-03-29 22:39:50.235 \N PSA: Zap more = stack more https://example.com/ 11829 455632 455525.455531.455628.455632.455638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.47512972929496 0 \N \N f 0 \N 0 227355935 0 f f \N \N \N \N 455525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404596 2025-02-16 01:47:39.506 2025-03-29 22:39:50.236 \N Thanks for the question, here are some [thoughts on this topic](https://gist.github.com/nickfarrow/64c2e65191cde6a1a47bbd4572bf8cf8/)\n\nSince each secret share of a FROST key is a point (index, secret share) that belongs to a polynomial with some interpolation threshold. A threshold number of parties can each evaluate their share of this joint polynomial at a new participant index.\n\nParties securely communicate these evaluations to the new party using a [repairable threshold scheme](https://eprint.iacr.org/2017/1155.pdf), and the new party sums them to receive their secret share. This secret share belongs to the same polynomial and key as the other parties, can sign etc.\n\nRemoving a signer involves parties recreating their secret shares and a new polynomial, only this new polynomial retains the same joint-secret (x=0) and thus the same public key. \n\nThe removed signer never loses their secret share, only they will now be incompatible with every honest signer who has moved to a new polynomial. https://example.com/ 10352 404595 404595.404596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6764170759772 0 \N \N f 0 \N 0 79859592 0 f f \N \N \N \N 404595 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455451 2025-03-27 02:48:21.523 2025-03-29 22:39:50.236 \N I think raising posting/comment fees to reduce bad content is reasonable. 10 sats seems like a good starting point.\n\nA cool side-effect is that by raising posting and comment fees, Stacker News will also have far more sats to give back to the best users each day.\n\nRight now there are roughly 2,200 new items created each week, which only generate 2,200 sats for SN to give back as daily rewards (1 sat per post/comment). This is a tiny portion of all sats SN earns, (the job board generates over 200,000 sats/week and boosts add tens of thousands of sats more).\n\nBy bumping the posting and comment fees to 10 sats, users may post *slightly less*, but it’s likely SN will still generate 5-10x more sats from those fees (10-20,000 sats/week) to give back to users.\n\nAs @k00b outlined in yesterday’s SN rewards upgrade, the daily rewards flow directly to the best contributors on the site… so by increasing the posting and comment fees, the best SN contributors should expect to see higher daily rewards. https://example.com/ 16704 455409 455409.455451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7736077920901 0 \N \N f 0 \N 0 74946552 0 f f \N \N \N \N 455409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430968 2025-03-09 14:37:51.007 2025-03-29 22:39:50.237 \N FWIW I'm currently in El Salvador, if anyone has questions about that. https://example.com/ 11716 430321 430321.430968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.722633421152636 0 \N \N f 0 \N 0 13139352 0 f f \N \N \N \N 430321 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421085 2025-03-01 11:38:33.967 2025-03-29 22:39:50.238 \N Sorry you feel so discouraged. I'm actually really encouraged to hear there are Econ professors out there that are willing to pose these questions to their students in the first place, even if it's outside of the classroom. That's honestly super refreshing. \n\nIdk how much freedom you have to teach the class the way you want to, but sounds like you might have an opportunity to present various schools of thought about the questions you mentioned? If so, I say go all in! If not, I hope you find an opportunity to do that at a college that's more open to teaching people HOW to think rather than WHAT to think. (Not saying you should quit, job security is important, just hope you eventually find a more rewarding fit at some point.)\n\nAlso, FWIW, your student that's going into data science/software engineering and didn't feel like he got anything meaningful from his economics degree sounds like he'll be primed for the orange pill in a year or two. https://example.com/ 17392 421036 420895.420951.421024.421036.421085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0666172945089 0 \N \N f 0 \N 0 202109693 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444343 2025-03-19 19:55:25.036 2025-03-29 22:39:50.239 \N Did you hear about **Timothy Dexter** !\n\nThis is wilde story - **the luckiest dumb person** \n**Or how to sell winter gloves in the Caribbean** and make a fortune. \n\n## 1. Buying all the worthless Continental Currency \n\nIn 1775, the 13 American colonies went to war with the UK. To fund the war, American Congress started printing “Continental Currency.” But they overprinted it. To the tune of $241 million! The currency flooded the market and became all but worthless. No one would accept it. When the war veterans started coming back, American colonies paid them in the worthless Continental currency. And the veterans found themselves destitute. \n\nTo help the veterans out, leaders like John Hancock asked people to start buying the currency. And they themselves bought a little bit too. But almost no one else did. No one else except our Dexter.\n\nTimothy Dexter not only spent all his money buying the Continental currency, but spent his wife’s fortune too. Why? Because a great person like John Hancock supported it.\n\nThe currency remained worthless. But in 1788, after ratifying the US constitution, the Congress declared that they would buy back these old Continental Currency at 1% of their value. Dexter, who had bought it at a much much cheaper rate, suddenly found he was rich beyond his wildest dreams!\n\nHe bought 2 shipping vessels with his profits and bought a mansion and moved to a place where rich folks lived.\n\n## 2. Shipping warming pans to one of the hottest regions. \n\nFiguring out that Dexter would do anything to gain his peers’ acceptance, one of his rich neighbours recommended that Dexter should ship warming pans in the West Indies and sell them there. West Indies is hot and humid. Why would anyone need pans that were used to warm beds in the winter? But yet they did! The West Indians found that these pans made great tools to stir molasses. The sugar plantation owners bought all the pans for 79% higher price!\n\n## 3. Lets try that again!\n\nThe same trick was tried again, and this time Dexter shipped **winter woolen gloves to equatorial Polynesian islands**. And again luck helped him out. When Dexter’s ship landed in hot Polynesia, they were just in time to sell all their gloves to a Portuguese ship sailing to Siberia!\n\n## 4. Shipping coal to the leading producers of coal in the world\n\nSomeone else tried to take advantage of Dexter’s naivety again. And told him he should sell coal to Newcastle. Unknown to Dexter, Newcastle was one of the leading producers of coal in the world at that time! But luckily for Dexter, when his ships landed there, there was a strike at the coal mines! Newcastle factories bought his coal at a premium!\n\nThe story goes on and on - and Dexter get richer and richer... \n\n**Action Summary:**\n\n* Do things that no one else does. Because your goal is to be correct when no one else is.\n* Build the mental strength to be a contrarian.\n\n**in Conclusion: Buy Bitcoin**\n\nSource: \nhttps://zenstrategies.com/luckiest-dumb-person/\nhttps://en.wikipedia.org/wiki/Timothy_Dexter\n\n\n https://example.com/ 20788 443973 443919.443973.444343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6925159334798 0 \N \N f 0 \N 0 164037169 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436193 2025-03-13 11:30:18.526 2025-03-29 22:39:50.505 \N Gift cards sound so ridiculous when you start describing them in other terms.\n\nIt's a zero interest loan to the store, that can only be repaid in kind (with goods that the store chooses the valuation of), and the store reserves the right to default with no penalty. https://example.com/ 19333 436167 436144.436164.436167.436193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89366982759487 0 \N \N f 0 \N 0 186055022 0 f f \N \N \N \N 436144 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403006 2025-02-14 10:53:55.561 2025-03-29 22:39:50.508 \N Thanks for the mention. I see @k00b explained it better than I could have. \nOne thing I want to say, and this isn't directed specifically in response to your post. Based on the recent US government actions, which seemingly amount to changing rules unannounced, it's really important that SN makes this transition. If it costs you a few extra sats per transaction, it would probably be worth it in the long run. SN is probably the best place online right now to earn sats. I think we would all agree that it would be horrible if one day we try to log in only to realize the site was taken down. \n\nFurthermore, remember that the SN wallet is custodial. Yes, I trust K00b, but that's not the point. As bitcoiners, we all should be striving for decentralized solutions. This gives us all a little push to find those solutions. https://example.com/ 19303 401944 401907.401944.403006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7940177562007 0 \N \N f 0 \N 0 208263027 0 f f \N \N \N \N 401907 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416928 2025-02-25 23:13:32.968 2025-03-29 22:39:50.231 \N Here's my humble take, \n- From what I gather DarthCoin stacked up on BTC early on, which allowed him to retire and now in his free time he's providing great BTC tutorials and balancing that by being a dick to random users everywhere else. \n- Of course this includes sometimes being right and sometimes lying / making up facts and posing them as "the truth" (the trick is to say 80% truth to balance 20% lies).\n- For the users getting triggered by DarthCoin comments - this is a great spot to train your self-control in not getting triggered. Take a breath, count to 10. Get used to it, get used to people having a different opinion and not being "nice" about it. The beauty of Stacker News is that you have the power and responsibility to [use your sats wisely to change the world](https://stacker.news/items/24357). \n- Even though DarthCoin likely pushes away some number of new folks wanting to enter the community, I ultimately see DarthCoin as a benefit to Stacker News, because DarthCoin is providing useful test cases for the incentive model and is likely representative of the things that are to come with more usage. \n\nWDYT? https://example.com/ 18557 416043 415637.416043.416928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.92647083785397 0 \N \N f 0 \N 0 103252716 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404394 2025-02-15 20:53:01.94 2025-03-29 22:39:50.232 \N No it is not safe to let a browser touch your private keys! Ever!\n\nThe good news is that they don't need to. They can simply send a message to be signed.\n\nFor Nostr this is defined in NIP-46 and a number of signing apps are in development. Your Nostr PWA just needs a 'sign in' button, you can then choose (using a trusted app) which acount to log in with, and what permissions to grant. https://example.com/ 7583 404270 404270.404394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9684002147096 0 \N \N f 0 \N 0 109215874 0 f f \N \N \N \N 404270 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423001 2025-03-02 21:18:46.254 2025-03-29 22:39:50.507 \N I know I am not going to get any rewards. But I don't think I am going away from SN. I'm not sure if the quality of the posts is going to be improved with the competition. I don't like competitions in general. But life is like a competition itself. Let's see how the experiment goes this month. If many users leave SN, I'm ok with it. I don't like users that are here only for the rewards. https://example.com/ 2326 422992 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422919.422992.423001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4984698934867 0 \N \N f 0 \N 0 189880112 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431153 2025-03-09 15:47:40.548 2025-03-29 22:39:50.509 \N Hey Stacekrs,\n\nI'm excited to introduce BitEscrow, a revolutionary non-custodial Bitcoin escrow service. Our platform offers unmatched security, speed, and affordability for Bitcoin transactions. Here's what we're launching:\n\n- **Developer Playground**: Experiment with our API in a controlled environment with support for all test chains.\n- **New Website**: Explore our comprehensive resources including a developer page, branding guide, press kit, and more.\n- **Developer Tools**: Access our API, SDKs, NPM libraries, and test suite, all built from scratch using Typescript.\n- **Key Features**:\n - Non-custodial security\n - 187x faster transactions\n - 1/5th the cost of traditional services\n - Zero paperwork\n\nWe're setting a new standard for escrow services, making Bitcoin transactions more secure and versatile. Check out our new website and Developer Playground at [BitEscrow.app](https://bitescrow.app/).\n\nLooking forward to your feedback and seeing what amazing projects you'll build with BitEscrow! https://example.com/ 656 431152 431152.431153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.83373452679 0 \N \N f 0 \N 0 44123833 0 f f \N \N \N \N 431152 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410744 2025-02-20 16:47:40.465 2025-03-29 22:39:50.512 \N Sounds good to me. \n\nWhy not do a hybrid of survivor pool and nba in-season tournament pool style payout. Everyone has a buy in but the buy in post and update posts as people are eliminated will earn zaps and rewards so just add those into the pot. That is what @Undisciplined is doing with the Nba pool but there is no buy in for that one. https://example.com/ 20871 410743 410743.410744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9653242375511 0 \N \N f 0 \N 0 230019190 0 f f \N \N \N \N 410743 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401807 2025-02-13 12:05:22.244 2025-03-29 22:39:50.514 \N ”When cryptography is outlawed, bayl bhgynjf jvyy unir cevinpl.” – John Perry Barlow https://example.com/ 1576 401783 401783.401807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.1333585412963 0 \N \N f 0 \N 0 177478189 0 f f \N \N \N \N 401783 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455936 2025-03-27 12:26:04.334 2025-03-29 22:39:50.514 \N > In fact the amount of people that truly understand the cryptography of Bitcoin might be less than 20 people.\n\nThis is very very wrong. I have a lecture at my university called "Introduction to Cryptography" with almost 1000 students. \n\nThat's just one university and one year. And only the introduction course and only for computer scientists.\n\nEach and every one of them could write down the cryptography of Bitcoin (Hashes, signatures, public key generation, prime number factorization, elliptic curves etc...) and the mathematics behind it with pen and paper. \n\nBitcoins cryptography isn't complicated. In fact, it is build on the very foundational building blocks of cryptography. The magic about Bitcoin also is in this very fact that it was build so elegantly on these classics. https://example.com/ 12779 455649 455649.455936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8912537254442 0 \N \N f 0 \N 0 6194168 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458420 2025-03-29 09:03:52.837 2025-03-29 22:39:50.519 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **8** https://example.com/ 12346 458416 454525.454535.454668.454691.458368.458378.458397.458408.458416.458420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1603084776703 0 \N \N f 0 \N 0 212816780 0 f f \N \N \N \N 454525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 411644 2025-02-21 15:54:41.201 2025-03-29 22:39:50.232 \N Great topic. I try this also. I'm fortunate in that I have different friend groups who have divergent world views. The problem is that for me to get the most out of this would be to in essence bring up taboo subjects all the time, which can literally damage friendships and cut off that perspective. So, I taylor my public persona to fit in, don't talk about stuff I would find interesting, and wind up feeling like a fraud. That's why I prefer consuming diverse subjects in books and film. Less conflict. https://example.com/ 8713 411173 411173.411644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6415103748046 0 \N \N f 0 \N 0 237133507 0 f f \N \N \N \N 411173 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458338 2025-03-29 08:02:52.14 2025-03-29 22:39:50.237 \N Well, I live in Peru, a sexist country, but sexist by convenience, that is to say, they believe that women should marry as virgins, work and be a housewife and the husband should only work and give orders, that happens to people aged 40 and older. Now, in the school and university population it is the opposite, liberalism and some woke leftist ideas. I don't have a very wide social life and even less with younger people, so I don't experience it completely, what I know is because I hear from afar or see things on social networks. The few people I usually talk to are generation Z and they are very sexist, both men and women. It's really strange here they are totally at opposite extremes, but there is no middle ground.\n\nI have seen that the government has implemented woke messages (?) I don't know if that is the term, but in hospitals in the gynecology section I have seen messages that say things like "you are a woman if you feel like a woman" with their respective trans flag, there are also those messages in airport bathrooms.\n\n![](https://m.stacker.news/66507) https://example.com/ 11454 458272 458272.458338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9403263559184 0 \N \N f 0 \N 0 209219211 0 f f \N \N \N \N 458272 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402859 2025-02-14 06:45:20.235 2025-03-29 22:39:50.238 \N `ᕦ(ò_óˇ)` Day 13 of exercising everyday before the saloon opens\n\nSet the alarm to 9AM instead of 7:30AM now. That obviously worked way better. But I still need to go to bed earlier. Went to bed at 2AM yesterday. 8 hours of sleep would be nice.\n\nWent to the calisthenics park and ... oh no, I forgot to take a picture again! Just noticed, lol\n\nRegular workout with some jumping frog squats. This means 10 inclined push-ups, 10 squats, 9-12 frog squats, 10 inverted rows. Tried to also do 10 knee raises but my core did already hurt after the first one. Did this routine 3 times.\n\nI also learned today that these push-ups that are not 100% vertical are called _inclined push-ups_. I think I mentioned this at the beginning that I am not fully vertical proper push-ups but I may did not mention this anymore. Please forgive me, lol\n\nDoing 6 of these jumping frog squats was already quite challenging. Tried to do 9-12 (since I can do 3 in one direction) before I move on to the next exercise.\n\nThe inclined push-ups feel way better now. I will probably go more vertical next time.\n\nAt the end, I did some step-ups and 45s supermans with 15s breaks for 3 minutes. While doing it, I noticed that if you shift your perspective, you can actually imagine yourself flying like superman. You just have to imagine that what you're looking at is not the ground in front of your face but actually very far away, lol\n\nSo my MOTD is: Shift your perspective!\n https://example.com/ 15549 402003 402003.402859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.1519510697818 0 \N \N f 0 \N 0 46945843 0 f f \N \N \N \N 402003 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421338 2025-03-01 15:30:35.269 2025-03-29 22:39:50.507 \N Coinjoins **are** the way. We need to normalise their use and for the providers to default using them.\n\nPayjoins are the evolution from the original versions, and given they are indistinguishable versus regular coinjoins… they will allow us to have default privacy WHEN (not if) businesses adopt them. \n\nThis scaremongering and the archaic regulations that are in the pipeline are just distractions. Technology in the form of newer coinjoin implementations will render them unenforceable. https://example.com/ 1596 421316 421316.421338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.61255079337388 0 \N \N f 0 \N 0 18370327 0 f f \N \N \N \N 421316 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451446 2025-03-24 14:52:54.704 2025-03-29 22:39:50.511 \N ![You will own Bitcoin. And you will be happy.](https://pbs.twimg.com/media/Fcza8QHX0AE1c-x?format=png&name=small) https://example.com/ 8469 451422 451395.451402.451418.451422.451446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4496730145888 0 \N \N f 0 \N 0 149368714 0 f f \N \N \N \N 451395 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410778 2025-02-20 17:16:23.935 2025-03-29 22:39:50.511 \N I'll be curious to hear your answer, but I think this is pretty straightforward. There will always be margins along which adoption makes sense and that's the path along which adoption will proceed.\n\nEventually, adoption will be wide enough that those margins will cover everyone.\n\nThis is the logic of "gradually, then suddenly". https://example.com/ 15243 410108 410108.410778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.374267053385 0 \N \N f 0 \N 0 53348153 0 f f \N \N \N \N 410108 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434532 2025-03-12 01:57:38.762 2025-03-29 22:39:51.188 \N Hey @k00b any chance the territory details can just be static at the top of the territory page rather than pull down menu? I put a logo up on mine. Eventually it would be great if we were able to customize our territory header with a logo and background like you would on a social media page.\n\nEmphasis on eventually. Not a pressing thing but would be nice down the road. https://example.com/ 616 434396 434396.434532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74381919127298 0 \N \N f 0 \N 0 171407690 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436421 2025-03-13 14:52:02.095 2025-03-29 22:39:51.464 \N Please start reading my guides:\n- https://darthcoin.substack.com/p/getting-started-ln\n- https://darthcoin.substack.com/p/lightning-wallets-comparison\n\nPay attention to details. This is not a race to use whatever app you get recommended.\nAs I explained in the guides, choosing the right wallet is important and not just ONE, but multiple ones.\nStop thinking "for 5yrs old"... you are grown man, so behave like a grown man, use your brain.\nBitcoin is not for 5yrs kids, is for intelligent people that want to learn.\nOtherwise you will be the one that will lose, not the others.\nYou will remember my words. https://example.com/ 708 436253 436253.436421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8692392647362 0 \N \N f 0 \N 0 160063159 0 f f \N \N \N \N 436253 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438029 2025-03-15 06:35:12.293 2025-03-29 22:39:50.232 \N Have you tried using gold now? Getting it for spot is difficult, trading it for spot is difficult, verifying it’s authenticity is difficult without expensive equipment, and most of it is just purchased from governments who have spent the last 5000 years fooling people into trading it in for worthless (since the 70s, arguably earlier) coupons.\n\nI used to believe in precious metals as a store of value but they have so many issues, and all of the issues are only going to get worse. You only need to get scammed once to lose faith in it, and if the only trusted sources of precious metals are businesses/governments it’s next to useless for p2p.\n\n\n\n![IMG_3799.webp](https://m.stacker.news/4931)\nThe most affordable way to verify gold, an XRF, said this bar was real. What you see in there is tungsten. As the price of gold rises in fiat terms, creating fakes because more cost effective. https://example.com/ 16543 436961 436961.438029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1701586388228 0 \N \N f 0 \N 0 71366666 0 f f \N \N \N \N 436961 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431029 2025-03-09 15:10:15.24 2025-03-29 22:39:50.233 \N A good guess would be in the range of 2-5million people who have at least interacted with Bitcoin https://example.com/ 21254 424448 424448.431029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9129314607866 0 \N \N f 0 \N 0 54494768 0 f f \N \N \N \N 424448 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402345 2025-02-13 17:32:01.494 2025-03-29 22:39:50.236 \N - Monday was meetings, administrative catch up, and merging/refinining PRs mostly\n- Yesterday I continued working on booger attempting to get it into a state where I can compile it into a single executable\n - I ended up having to write my own [db migration logic](https://github.com/stackernews/booger/blob/main/migrate.js) so that migrations could be specified as strings and embedded in the executable. \n - Most of what's left is figuring out how to embed the builtin workers and streamlining configuration UX\n - My goal is to make installing and running it as pleb friendly as possible while also kicking ass\n- Then I'll begin deploying. I'm going to try deploying through containers this go around. 🤞\n https://example.com/ 20701 402342 402316.402342.402345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.21722531726985 0 \N \N f 0 \N 0 94159320 0 f f \N \N \N \N 402316 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458344 2025-03-29 08:11:53.355 2025-03-29 22:39:50.237 \N That's very useful feedback. Thanks a lot. \n\nThe bitcoin on-chain fees increased rapidly within a short amount of time (spiking by more than 500x). Channels may automatically close as a protective measure. This isn't something specific to Alby, it's a built-in failsafe mechanism within the Lightning Network itself, designed to keep your funds secure during unexpected network events.\n\nIs there a way to recover my funds without opening another channel?\nNo funds are lost and you don't need to do anything. Since this was a forced channel closure, your bitcoin will reappear in the savings balance of your Hub within 14 days.\n\nWhere's my savings account?\nYour savings account is your bitcoin onchain wallet. You find it on the "Node" page of your Hub. \n\n![](https://m.stacker.news/47489) https://example.com/ 762 458122 458122.458344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5120127522294 0 \N \N f 0 \N 0 14533433 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430966 2025-03-09 14:37:11.294 2025-03-29 22:39:50.238 \N > I am very excited about bitvm... Congratulations and thank you for your work\n\nYou're welcome and thank you! I am excited too :D\n\n> Do you believe that this is the ultimate solution to this problem?\n\nNo. I think bitvm can improve the world by improving sidechains, and I hope some people find use for them, but I doubt it will be a large number of people. IMO the sidechains we have today are pretty good and yet no one seems to use them. I suspect that is because most bitcoiners are indifferent about using bitcoin for day to day transactions, they see it mainly as a savings vehicle, which it works fine as, without needing any sidechains.\n\nSaving money is, imo, bitcoin's most important use case, so that's understandable, but I don't personally see how these things will change: the number of people who want to spend their bitcoins on a day to day basis is tiny and shrinking, and no one else seems to care. I don't see how such low demand for scaling solutions can support the effort to create and maintain them. And even if a solution is found that makes bitcoin scalable, I don't think that tiny number of people will turn into a large group. I think their numbers are shrinking because they are satisfied by alternative payment methods, and almost no one will be upset if bitcoin ends up as "just" a savings tool.\n\n(Obviously, those of us here on stacker news are among those who want to use bitcoin for more things. But we're not a very significant number of people, and I suspect we're in a shrinking crowd.) https://example.com/ 14452 430059 429764.429924.430059.430966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.353228394889 0 \N \N f 0 \N 0 32358455 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428116 2025-03-06 21:29:11.13 2025-03-29 22:39:50.238 \N having your own fiat was a scaling solution for gold in the beginning, so you hard a hard money and you backed it with your paper redemptions, the scaling solution just got so out of hand and they kept breaking the consensus to increase the money supply because that's easier than producing value to recycle the current capital\n\nCountries don't trust each other, and even within countries, we've seen over the years how they fragment so they can have their own currency, soviet union is an example. \n\nBritish empire is another example, South Africa used to be on the GBP, might have been better for us, having no control over our fiat locally since we blew it to shit faster than GBP but hey we wanted control within our boarders to steal from our citizens \n\nBitcoin allows none of us to trust each other, thats the game changer https://example.com/ 10096 427806 427651.427806.428116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.338209063171 0 \N \N f 0 \N 0 72638347 0 f f \N \N \N \N 427651 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451411 2025-03-24 14:37:09.499 2025-03-29 22:39:50.511 \N I have become a Go maxi.\n\nAfter a long time working with Python and NodeJS software and after the initial weirdness (wtf are channels and goroutines and why should I care), it's feels really nice to work in a statically typed language (without generics however ...) again where concurrency support is built-in with goroutines and channels. It feels soooo much better to have a compiler do type checking for you (in a guaranteed way) even if that means you have to define your types first, so you are slower first. But I would trade runtime errors with compile-time errors any time.\n\nAlso, the build process spits out a single binary which can be run anywhere where golang is installed (afaik) and the ecosystem is not a complete mess like Python (looking at you, Python package managers) and NodeJS (npm vs. yarn, CJS vs ESM, Javascript vs TypeScript). I also like how imports work in Go. In Python, you run into this circular import issue pretty fast if you don't try to stay ahead of it.\n\nI also tried to learn Rust but the syntax felt rough. When I tried out Golang, I didn't look back.\n\n@theindranetworkprotocol also made me try out Go. If I remember correctly, he also mentioned here and there how awesome Go is. https://example.com/ 9843 450977 450678.450695.450699.450946.450977.451411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.07362966832409 0 \N \N f 0 \N 0 126937148 0 f f \N \N \N \N 450678 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431016 2025-03-09 15:09:19.576 2025-03-29 22:39:50.233 \N Zap what you find valuable and glad you came across and what you think others might enjoy too. That's the whole point, let the markets decide. \n\nYou can get mad or jealous at cross posts or bots but I find the HN bot valuable and I'm sure others do as well. Same goes for people that find something on the web and share it here. You gonna get mad at them too? https://example.com/ 1495 427795 427795.431016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.74207467724639 0 \N \N f 0 \N 0 158388186 0 f f \N \N \N \N 427795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431039 2025-03-09 15:11:05.555 2025-03-29 22:39:50.234 \N ![](https://www.zapread.com/i/-8E) https://example.com/ 13763 421499 421499.431039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5600033646348 0 \N \N f 0 \N 0 153869440 0 f f \N \N \N \N 421499 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431114 2025-03-09 15:29:39.259 2025-03-29 22:39:50.237 \N > The government's insurance makes you whole.\n\n"check your financial privileges" as Gladstein would put it. First I guess those insurances are only in the US, for some amount. and to some extend Europe on lower amount.\n\nThe type of product develop here are really tailored to developing countries/the global south. \n\nImportant to keep in mind also that this insurance is the perfect concept of "Socialism for the rich and capitalism for the poor". banks make profit by lending too much, ie: overextending their fractional reserve power, and when something goes wrong, the FED have to step in and create new money to make the consumers whole. which society pays by inflation.\n\n> Now you hold USD in your custodial Galoy wallet.\n\none comment on this: Galoy is a software company. we help banks/wallets to run software we develop. we are not aiming at being custodian of any funds (similarly FIS/FISV,Jack Henry develop software for fiat banks, they don't operate the bank themselves)\n\n> Your USD is actually some derivative contraption which can depeg (can't it?).\n\nHow would it depeg? it's really a fully collateralized solution. Maybe the main risk would be an extended negative funding period, as shared in the risks on stablesats.com\n\n> The exchange can get bankrupt (many already did!) \n\nyes that is one of the risk. but if you hold USD or stablecoin, you have similar counter risk.\n\n> I don't think companies are insured like physical persons.\n\nthat's why companies don't keep a lot of USD on bank account. they typically buy treasuries, because the risk of government going down is lower than the risk of a bank going down. \n https://example.com/ 1141 412978 412978.431114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5493824611645 0 \N \N f 0 \N 0 224557581 0 f f \N \N \N \N 412978 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456804 2025-03-27 22:05:40.799 2025-03-29 22:39:50.24 \N SN is a read-only relay, and Nostr clients can subscribe to it. Everything posted becomes a Nostr event. SN user profiles define the lud06 metadata field set to username@stacker.news and can receive tips directly from Nostr users. https://example.com/ 992 456086 455551.455599.455824.455889.455904.455911.455923.455952.455962.455994.456073.456086.456804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.80598531946 0 \N \N f 0 \N 0 205794693 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428687 2025-03-07 14:07:19.656 2025-03-29 22:39:50.505 \N i'm working on a real time animation of the btc mempool as it's forming the next block.. predicted transactions are blue..\n\nvery initial right now, i want to use more params (like tx size or fees), but the idea is to be simple, no analytic tool, more like an artistic screensaver\n\n![teste](https://imgprxy.stacker.news/6ML3phAlXG9CYvVYtCeO4xFjkw6rcAOI_Dr2zlHOMi8/rs:fit:600:500:0/g:no/aHR0cHM6Ly91c2VyLWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vNDkzMjE2My8yNjI3NjMxMTktYzc4YWMxYjYtMTQ4My00ZGI5LWEyMTUtZjUwMWYyNDEyOGM5LmdpZg) https://example.com/ 11395 428644 424571.424907.424921.424946.424988.428312.428320.428354.428417.428559.428581.428619.428644.428687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8493715940545 0 \N \N f 0 \N 0 182613344 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407644 2025-02-18 09:12:11.635 2025-03-29 22:39:50.509 \N The Real Secret is that your dreams come true by *acting* on them https://example.com/ 2529 407427 407427.407644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7903120259722 0 \N \N f 0 \N 0 119483852 0 f f \N \N \N \N 407427 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416232 2025-02-25 13:46:54.177 2025-03-29 22:39:50.51 \N Merry Christmas stackers. It’s better to give than receive. For all the users who are active and pushing this site forward i will give 200k sats to the reward pool. \n\nMerry Christmas stackers! keep stacking! https://example.com/ 21064 416229 416158.416209.416220.416229.416232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.854324544317073 0 \N \N f 0 \N 0 74081759 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407805 2025-02-18 11:57:29.139 2025-03-29 22:39:50.51 \N Great MVP! Can't wait to see how you'll develop further the CMS functions. I'm so tired of dealing with woocommerce and have been looking for alternatives.\n\nI appreciate the Bitcoin-only nature of the project. Perhaps down the road, cypherspace will support alternative payment methods via a plugin architecture. Would be great to use a self-hosted BTCPay and/or Stripe integration for fiat.\n\nI understand with Alby, you can use your own node to receive, but this still leaks some payment information to Alby. A self-hosted BTCPay has no third-parties.\n\nVery few ecomm businesses are ready to go bitcoin only. Their primary expenses are still in fiat, and most customers want to pay in fiat.\n\nLastly, I'd be interested to see some more effort put into SEO. This is something wordpress/woocommerce does well. I'd want my products/articles to rank highly in search results. https://example.com/ 21063 407739 407607.407739.407805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6549447407254 0 \N \N f 0 \N 0 244464523 0 f f \N \N \N \N 407607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444351 2025-03-19 20:03:08.232 2025-03-29 22:39:50.512 \N https://imgprxy.stacker.news/i3OcaDb9M3XJRQOszsGUD0qXGTFuOukT8kmwHqyeCdo/rs:fit:600:500:0/g:no/aHR0cHM6Ly96dXBpbWFnZXMubmV0L3VwLzIzLzMzL2Zmam0uanBn https://example.com/ 2233 444348 444114.444132.444143.444150.444207.444213.444277.444289.444332.444340.444348.444351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.22257580356617 0 \N \N f 0 \N 0 68084251 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428714 2025-03-07 14:31:33.56 2025-03-29 22:39:50.52 \N I agree with most of your assessment, good write up. \n\nThe main problem though is there's a difference between trust and custodial and you use them interchangeably. \n\nLightning is trusted in certain ways, but it does not make it custodial. Trust is all around us. I trust my counterparties to not go offline, otherwise I wasted channel fees on them. It does not make them a custodian. \n\nI also trust them to not attempt to do a F&L on me, and part of that trust is assuming my node is not cost worthy to attack. That attack costs more than my node is worth. I also know most of my channel partners. \n\nI also trust that bitcoin's censorship resistant property holds up rather well and that sustaining a 51% is highly unlikely (we all trust that, otherwise none of us would be here). \n\nI'll take this time to share one of the essays from @wefofficial : https://trustisascalingsolution.com/trusted-third-parties\n\nNone of these imply custodianship, but trust is a real part of that. It's fair to call something TTP but not custodial. But I agree he's bringing up highly unlikely attacks to promote whatever his thing is. Which I still don't know because he spent most of the article talking about hypothetical LN attacks. https://example.com/ 17050 428662 428653.428662.428714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.28671810965903 0 \N \N f 0 \N 0 127635342 0 f f \N \N \N \N 428653 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416997 2025-02-26 01:01:28.889 2025-03-29 22:39:50.234 \N It's more like ecash is a tool for bitcoiners to use. It lets bitcoiners do things they can't do with bitcoin (currently, maybe this changes) but it doesn't really scale bitcoin. It doesn't allow more people to use bitcoin because it's not bitcoin. But it still may be useful. https://example.com/ 618 416730 416648.416730.416997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.05978959182378 0 \N \N f 0 \N 0 17277102 0 f f \N \N \N \N 416648 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410644 2025-02-20 15:28:06.322 2025-03-29 22:39:50.237 \N No we sure don’t but the pod is growing year over year at this point. I imagine it will be very “successful” in its third year, usually when podcasts “break out.”\n\nWe use transistor to track accurate metric podcasting data, (anchor and spotify inflate numbers about 1000%) and so we average between 150-200 downloads every episode. With our YouTube views we have about 250-300 views/downloads every episode last year around this time we were at about 65 views/downloads total. \n\nI actually would love to support fountain with sats in some capacity in the future. Right now we really just do it for the Stackers and SN community, both myself and keyan have day jobs so this is more a labor of love. We also think it’s very important to see what people voting with their sats think is the most important bitcoin news of the week. https://example.com/ 1515 410237 410237.410644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.01995925260595 0 \N \N f 199285037 \N 1 189284768 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410529 2025-02-20 14:17:27.276 2025-03-29 22:39:50.241 \N > last mile problem\n\nyou know how telecom companies have no trouble justifying committing capital to building cable networks between extremely busy hubs because there's lots of users (and they can get lots of monthly subscriptions per cable laid)? it's harder to get them to lay miles of cable out to everyone's house in the boonies etc though because the cost to lay the cable will *never* be repaid by the customer that it serves\n\nthe analogous thing in lightning is *capital*, which is to say who's putting what bitcoin in what channels. if you're a smart capital allocator, you'll only want to commit your funds to channels where it'll get used -- this is because you have real network costs like onchain fees etc that need to be covered (in theory) by the routing fees that you're able to earn from that capital.\n\nwho's going to want to put lots of bitcoin into small channels with every end user, who maybe receives a $100 payment every week or two? the onchain costs are high for the amount of turnover that capital gets\n\n> mempool is obsolete\n\nI wrote a post to the mailing list about this sometime last year; the general gist of it is that the mempool makes plenty of sense when every other node on the network is participating in looking for the next block (aka mining). in that case, sending every transaction to *every* node on the network makes a lot of sense\n\nmost block construction is fairly centralized now to a handful of mining pools, yet we're still wasting a bunch of bandwidth btw bitcoin nodes ... rather uselessly imo. https://example.com/ 5757 410484 410237.410484.410529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.40016290109 0 \N \N f 368984327 \N 2 192773634 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431209 2025-03-09 16:03:24.997 2025-03-29 22:39:50.509 \N Nice write-up.\nDon't forget to make fun of them, sticking a B sign on their useless rules :)\n\n![](https://m.stacker.news/44170) https://example.com/ 2519 401865 401865.431209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9384821140016 0 \N \N f 0 \N 0 161434740 0 f f \N \N \N \N 401865 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442907 2025-03-18 21:53:32.33 2025-03-29 22:39:50.51 \N https://imgprxy.stacker.news/LUCauLeEcWlZASpvRAXRSu7P8EWG7BfOB8Yw75E2hGU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC9iZWFjZTFjODczZmU0MDdlY2IzMDgxZWJkZmI2MWZhZDgyOWI3ZGNlNDJmMGJhMDg2ZDg2MmJiNDI1ODFjOGY3LmpwZw https://example.com/ 9438 442751 442751.442907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9316432319947 0 \N \N f 0 \N 0 22245664 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413942 2025-02-23 14:37:17.613 2025-03-29 22:39:50.51 \N Check this out: https://sailfishos.org/ \n\nIt's Linux-based, but it has non-free components. For $50 you get the version with a closed-source but seemingly good Android emulator. I've seen some review videos and it seems promising. I would consider trying it out. I know I'll get some flak for supporting paid software, but I would love to financially support any company that offers a viable alternative to the Google/Apple duopoly. The more competitors, the lower the barriers to additional players. KaiOS had some promise a few years back but once they took funding from Google you could see where things were going. \n\nI guess that doesn't exactly answer the OP question about how to create a new platform, but I think that what worked for Sailfish is that they allow you to maintain compatibility with Android. Google has very powerful network effects, it would be very difficult to take them head on. \n\nI don't think there's any serious need to integrate bitcoin, but if this platform is developed by bitcoiners I think giving away some sats along with the device would be positive for bitcoin adoption. Having the OS use, by default, a nostr relay and LN node run by the company would create some network effects around the phone, albeit most likely weak ones. https://example.com/ 5112 413892 413892.413942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1748251788618 0 \N \N f 0 \N 0 177261865 0 f f \N \N \N \N 413892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431323 2025-03-09 16:20:57.538 2025-03-29 22:39:50.514 \N ![](https://i.imgflip.com/76u6tr.jpg) https://example.com/ 14941 389769 389769.431323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.00187228561852 0 \N \N f 0 \N 0 58135725 0 f f \N \N \N \N 389769 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451414 2025-03-24 14:39:53.547 2025-03-29 22:39:50.519 \N For me, it’s Apple doing R&D in the public square. This is not a mainstream product, but they are shipping it now to learn a great deal and to prepare app developers. \n\nThe tech is crap at this time. Too bulky, batteries too inefficient and the form factor like @kr says is terrible. But they will eventually end up on a new & improved product before the end of the decade.\n\nWhat comes of it could be interesting. Glasses that you never need to go to the doctor again, they improve your vision instead of constantly playing catch-up to your prescription. They provide extra context when driving, and point-out things that we wouldn’t otherwise notice or that may have been forgotten. I.E. where I last left my keys.\n\nThe tech will never be transformational though. It’s a replacement product so is not going to improve productivity in my opinion, not in isolation. It might just help us look-up and stop us slouching on our phones & computers more, and replaces the need for headphones with bone-conduction sound. But I’m way more excited about other applications of tiny tech/electronics than a pair of smart glasses or doomsday goggles. https://example.com/ 14370 451408 451266.451276.451382.451392.451408.451414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4668691126795 0 \N \N f 0 \N 0 175237990 0 f f \N \N \N \N 451266 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430851 2025-03-09 13:13:13.784 2025-03-29 22:39:50.235 \N Love the tool, much needed 👏\n\n-----\n\n\nRant Alert: One thing I wish developers would stop doing however is pinging for the Nostr extension as soon as you load the page. It MUST be user initiated via a button or action. And we must stop requesting ALL permissions before the client needs them.\n\ne.g: requesting read access to messages should only happen when clicking on DMs, requesting write access to messages should only happen when clicking reply or new message. \n\nSame in this instance for clawing data off from Twitter. Firstly connect Twitter/X and then only on success request Nostr access at the user's disretion. We should not make it an industry standard and the expectation for each site to claw everyone's pub keys before they even load the page, whether they are loaded into a database or not. https://example.com/ 5359 430748 430726.430729.430732.430748.430851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5111283276945 0 \N \N f 201561767 \N 1 17291396 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456831 2025-03-27 22:41:43.787 2025-03-29 22:39:50.504 \N Hey it's Jor. My nostr buddy from Canada who loves golf. Unexpected. \n\nJor was supposed to do some golf posts for the territory but he never did. \n\nBusy with other things I guess.\n\nThis is pretty cool but I am fairly sure it is illegal. Haha https://example.com/ 4084 456815 454221.454403.455521.455855.456113.456117.456790.456815.456831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8058130274 0 \N \N f 0 \N 0 249648916 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424958 2025-03-04 14:04:07.52 2025-03-29 22:39:50.509 \N The book has been a political hot iron since it was written. There is nothing in it that should be so controversial. It's a good story which espouses individualism and self reliance. I think statists hated the idea of judging yourself by your own standards of excellence rather than worshipping standards of the collective. The fact that Hal loved it makes me respect him even more, if that's possible.\nDon't discount misogyny either. Ayn Rand was an intellectual powerhouse who terrified male socialists.\n https://example.com/ 1825 424890 424890.424958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.91312468846156 0 \N \N f 0 \N 0 89990982 0 f f \N \N \N \N 424890 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438091 2025-03-15 08:43:33.502 2025-03-29 22:39:50.509 \N The solution is simple and I wrote an extensive guide on Umbrel forum:\nUse Umbrel + Tailscale + lndhub\nhttps://community.getumbrel.com/t/how-to-use-umbrel-with-tailscale/\n\nTor is unreliable for these things and also is useless to connect over Tor to your own node. You don't trust enough yourself?\n\nI also strongly suggest to use the LNDhub from LNbits instead of the BW one. Works much better and you have even more options and features.\n\nI wrote several guides about that:\nhttps://darthcoin.substack.com/p/umbrel-node-lnbits\nhttps://darthcoin.substack.com/p/the-bank-of-lnbits\nhttps://darthcoin.substack.com/p/lnbits-for-small-merchants\nhttps://darthcoin.substack.com/p/build-your-own-lnbits-app-server\n https://example.com/ 13878 438088 438088.438091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4694657212063 0 \N \N f 0 \N 0 204515906 0 f f \N \N \N \N 438088 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407723 2025-02-18 10:29:36.025 2025-03-29 22:39:50.512 \N I think the most I’ve used the Lightning is for zaps on nostr and boosts on Fountain. Surprisingly, I’ve never had to use the 2k sats I sent into Stacker News, and is able to generate positive sats flow from comments and posts; either you guys tip very well or I’m not tipping enough, or probably both.\n\nIn real life, I try to seek out merchant that support bitcoin, especially Lightning, but they are few and rare in my city. Otherwise, I use it mostly when trying to on board / orange pill family and friends. I would get them to download Phoenix and send them 30k or 40k sats to show them how easy it is to use bitcoin on Lightning.\n\nThe last time I paid with Lightning was donating to my local BitDevs meetup for the venue rental. The experience was quick and easy, as they run their own BTC Pay Server. It definitely was a faster process than it would have been without bitcoin, and I would like to also add that it was more private as I always donate anonymously.\n\nFinally, I think education and training will help merchants accept Lightning. But one most important thing for them to adopt is people actually using bitcoin and Lightning at their businesses. When merchants see a clear and considerable amount of demand for Lightning payments, they will not want to miss out and will make an effort to adopt. https://example.com/ 716 407513 407513.407723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4199466241224 0 \N \N f 0 \N 0 137621236 0 f f \N \N \N \N 407513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415356 2025-02-24 18:26:50.625 2025-03-29 22:39:50.514 \N Well, I have limited funding to work. Looking to find a little more, everything is cool, manageable, but it's a very slim margin. Any tips on how to find someone who wants to join/fund this effort very welcome. https://example.com/ 1130 414295 413854.414058.414295.415356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2450356906948 0 \N \N f 0 \N 0 75880169 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442364 2025-03-18 14:32:19.309 2025-03-29 22:39:50.516 \N Stacker News and Nostr complement each other beautifully. \nWhile Nostr has the quick wits, opinions, pictures, hints of boobs or deep thoughts from people around the world, Stacker News has the value sorted recent events and news creating a base for "current knowledge worth knowing". Even better, the knowledge is "peer-criticized" in the comments. The combination of the two then creates a virtuous cycle with clearly aligned incentives. \n\nFrom Nostr posts you may find interesting links worth posting on SN and from SN posts you may gain the knowledge to show off your smarts on Nostr. In both directions you get paid for doing the "desirable", you get to voluntarily pay for things you like and you are forced to pay for doing things that are "undesirable". \n\nIsn't this beautiful?\n\n*(also [posted on nostr](https://iris.to/post/note1uh9dg6ypnzejtdnskjryzqqd8824xnhj924zfl3ltm0gregzhu0qksraht))*\n https://example.com/ 2492 441695 441695.442364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.893776740687 0 \N \N f 0 \N 0 30592605 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458250 2025-03-29 06:22:28.032 2025-03-29 22:39:50.519 \N ”WE” = RED FLAG\n\nWe are not a collective hive mind. \n\nThis is a VOLUNTARY collection of individuals who recognize each other’s RIGHT to free speech. \n\nThanks to the owners of this forum, but if it went down tomorrow all future content would be moved to nostr and will never be censored. https://example.com/ 1836 457267 457267.458250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6506375001107 0 \N \N f 0 \N 0 167404098 0 f f \N \N \N \N 457267 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414219 2025-02-23 18:30:34.973 2025-03-29 22:39:50.52 \N Have a look over at R/Bitcoin, you'll appreciate SN a mighty-fine deal more at an instant! https://example.com/ 17411 414157 413854.413869.414157.414219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2168303487643 0 \N \N f 0 \N 0 186511300 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458065 2025-03-28 22:50:52.777 2025-03-29 22:39:50.236 \N I know exactly how you're feeling.\n\nAbout a year ago, the fusion of Bitcoin maximalism and anarchism was my religion. A secular religion but a religion nonetheless. I had regarded myself an atheist but Liberty and Bitcoin were my gods. I legitimately thought Bitcoin was going to save the world and usher us into an anarcho-capitalist decentralized world. This became extremely apparent after I became a Christian.\n\nI believe that many people in this space are the exact same way. Bitcoin is inevitable! Bitcoin has already won! [Bitcoin will bring in a golden age of humanity!](https://www.youtube.com/watch?v=3Rnqst5qCgA) They don't realize that they are in a secular religion. Some of us then look around at the reality of the situation. Bitcoin adoption is not surging like people have been predicting over and over again. Businesses adopt Bitcoin during bull markets and drop it in bear markets. People are using the base chain of our monetary system as a database/marketplace of useless jpegs. The sober, realistic pieces are saying that it will take three or more generations before we have a user base that rivals fiat currencies (I agree).\n\nThis is going to cause cognitive dissonance and loss of faith. \n\nI am a "Bitcoin maxi" only because I think Bitcoin's the best tool for the job of hard money in a digital world. And Bitcoin is only that: a tool. It won't save the world. It won't usher in an anarchic/libertarian world. And it is definitely not inevitable. https://example.com/ 2437 457818 457818.458065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6248305201814 0 \N \N f 0 \N 0 156533075 0 f f \N \N \N \N 457818 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402382 2025-02-13 17:53:32.583 2025-03-29 22:39:50.236 \N I think layer 2 designs that aren’t lightning have been ignored for way too long, but I also see this changing. By the time 2023 ends I expect alternative-L2s to raise more total funding than lightning companies this year, and I expect that’ll accelerate in the next few years.\n\nThere’s A LOT of work to be done on most of these ideas before they’re commercially viable, but I think that landscape will look very different very soon, and we’re going to see many new players in that arena. https://example.com/ 11450 402233 402091.402134.402233.402382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2367508939308 0 \N \N f 0 \N 0 89413456 0 f f \N \N \N \N 402091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454435 2025-03-26 12:10:25.606 2025-03-29 22:39:50.237 \N > to increase your "credit score" (needed if you want to get a mortgage or rent a place), you need to own at least 5 credit cards for many years and show that you keep borrowing and repaying every month (otherwise your credit score is lowered)\n\nI can attest to that. My parents and I immigrated to Canada (yes, not the USA, but close enough with a similar enough system) when I was 9yrs old. I remember when they saved up enough money and tried to buy an apartment unit when I was 13. The banks didn’t want to give my parents a mortgage even though they had 40% down payment on hand and sufficient income to prove they could repay the monthly payments. The reason was that their credit score was low; and the reason for a low credit score was that they always used cash and never used a credit card. My dad ended up having to get signed guarantees from a few builders (he did contract construction work and was self employed) to secure that mortgage. My parents were never in debt, always paid every bill ahead of due date (with old school mailed in cheques), and always had a good amount of savings in cash and in the bank. But their credit score was bad because they never used a credit card and never went into debt. Strange world…\n\n>many companies offer their own "rewards" credit cards and use it as discount card (like every airline, bigger malls and shops, etc.) and they try to upsell you when you e.g. buy a new pair of jeans\n\nThis one pushes consumption a lot. They give you “points” back for spending with / using the card. But these points can only be traded for consumption goods, most popular are airline tickets and hotel bookings. This means they encourage you to go on more vacations by using these points. I mean what better way to spend and consume your capital than a vacation? My sister-in-law is big into these “travel points”, and always ask my wife why we don’t get one of these travel point rewards cards. My wife is interested too, but I tell her that I prefer cash back on the credit card; that way, we are not incentivized to go on vacations and forced to consume.\n\nOne thing I would like to add is that the credit card companies make it very easy for a young person to get a credit card, as soon as they become a legal adult. I remember there was a credit card booth occasionally setup in my university, in the hallway, helping students sign up for a card when I was in my first year. That was how I got my first card when I was 19 (legal age in Canada). They then encourage spending and mould your mind to live the fiat consumption lifestyle; buying all these cheaply made plastics and going on vacations, basically just consuming, all with credit. All at a young age when you didn’t know better and easily manipulated. https://example.com/ 21222 454427 454203.454236.454409.454427.454435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.571267173693712 0 \N \N f 0 \N 0 213525921 0 f f \N \N \N \N 454203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401335 2025-02-12 22:51:05.106 2025-03-29 22:39:50.238 \N ![](https://www.zapread.com/i/9yf) https://example.com/ 4570 400588 400588.401335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3531028083349 0 \N \N f 0 \N 0 199898330 0 f f \N \N \N \N 400588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444555 2025-03-20 02:22:16.942 2025-03-29 22:39:50.239 \N I absolutely hate negotiating.\n\nThis may be a shortcoming of being an introvert but I feel like I'm haggling on a flea market, cheapening/lowballing the product someone is offering or worse, being a poor beggar. \n\nLike in a shop, I either accept the price on a tag and buy the product, or not and move on. https://example.com/ 21571 444552 444522.444552.444555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6164739236489 0 \N \N f 0 \N 0 151200051 0 f f \N \N \N \N 444522 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434778 2025-03-12 08:25:01.282 2025-03-29 22:39:51.182 \N https://imgprxy.stacker.news/t63tit3B1n8LUMEJJ-tThhqaBnIp_4djEkdm83HcXuI/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYS50ZW5vci5jb20vOXg3c0dLY1hLQkFBQUFBZC90aGUtYmlnLWxlYm93c2tpLXRoZS1zdHJhbmdlci5naWY https://example.com/ 5825 434338 434243.434338.434778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3439276855088 0 \N \N f 0 \N 0 29163107 0 f f \N \N \N \N 434243 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435424 2025-03-12 17:05:55.588 2025-03-29 22:39:51.185 \N In order to get real world benefits from virtual space (as an individual in social media markets), one must integrate an aspect of their personality completely into the virtual world. This personality must be, at some point, inflated/invented/exaggerated because of the fact that on its own, it won't be enough to compete. \nIf you follow me this far - does this mean that every personality online that pursues personal gain is disingenuous, or let's say, fabricated? And does no one else see the danger in that? https://example.com/ 20897 434500 434500.435424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1788235277239 0 \N \N f 0 \N 0 213816759 0 f f \N \N \N \N 434500 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434749 2025-03-12 08:01:24.693 2025-03-29 22:39:51.186 \N I'm having so much trouble getting a contact form to tell the user that their form was submitted successfully because I don't actually know javascript XD\n\nBrowsers I've tested don't respond to my redirect. When the user hits the submit button, my logs say "Completed 302" but the browser does nothing.\n\nI think this is because the user submitted a POST request and wasn't expecting a GET, but I don't know. I've got a bit of a mess because I threw this nicepage site template builder javascript css and html into the project and did the backend stuff by hand, but now that means I have no idea what the javascript is doing lmao. https://example.com/ 21599 434743 434697.434743.434749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.948363752590744 0 \N \N f 0 \N 0 166176418 0 f f \N \N \N \N 434697 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435897 2025-03-13 04:40:53.016 2025-03-29 22:39:51.187 \N There is the argument that today more closely resembles the 1940s than the 1970s:\nhttps://www.bloomberg.com/news/newsletters/2022-03-22/what-s-happening-in-the-world-economy-parallels-between-the-1940s-and-today https://example.com/ 9184 435769 435769.435897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7634504911606 0 \N \N f 0 \N 0 158340982 0 f f \N \N \N \N 435769 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447205 2025-03-21 17:26:11.398 2025-03-29 22:39:51.47 \N haha this certainly looks like a genuine rambling to me. you have helped me to look forward to writing more here, and I'm starting to get a better sense of how my writing style works on SN. so I appreciate your feedback a lot! and also thanks for all you do on this site! https://example.com/ 21212 446456 446456.447205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.505494100943 0 \N \N f 0 \N 0 199067842 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448434 2025-03-22 15:47:39.563 2025-03-29 22:39:51.472 \N If anyone is interested in this or still wants to be inspired by the idea of being energy self sufficient I can recommend this video:\n\nhttps://www.youtube.com/watch?v=UJeSWbR6W04&ab_channel=MarquesBrownlee https://example.com/ 17221 448433 448433.448434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.37122924662408 0 \N \N f 0 \N 0 190052985 0 f f \N \N \N \N 448433 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 308231 2024-11-25 17:55:18.148 2025-03-29 22:39:51.475 \N It's very important in Bitcoin to watch what people "DO" not what they "SAY." That would be my best advice for navigating your way around the ecosystem as a new stacker this cycle. Most importantly what anyone spends their time working on says a lot about themselves as an individual, esp in Bitcoin. This is why...\n\nBitcoin only\n🤙onward https://example.com/ 16679 308045 308045.308231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9071691094791 0 \N \N f 0 \N 0 224878363 0 f f \N \N \N \N 308045 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407343 2025-02-17 23:03:48.378 2025-03-29 22:39:50.238 \N Sorry to hear about your sister. I agree with you. \n\nWhile there is a lot of victim mentality in today's society and some mental health issues that can be resolved by getting off your ass and doing something productive, working out, meditating, finding purpose etc, some people do have serious mental health issues and they should not be belittled for this or considered weak. \n\nI lost one of my friends in high school to suicide (this was in the 90s, so long ago I had almost forgotten) and my best friend really struggled with depression for years when we were in our early 20s (again, seems so long ago). I personally had my issues with abusing alcohol while I was going through a tough time in life around a decade ago. \n\nIt's hard because some people really do just need a swift kick in the ass (me) to get in a better state of mind while others need a lot more help than that (my best friend) and we shouldn't demean them for that. \n\nCheers,\nGR https://example.com/ 20450 407026 406576.407026.407343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.14815076927957 0 \N \N f 0 \N 0 196782724 0 f f \N \N \N \N 406576 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431118 2025-03-09 15:29:48.617 2025-03-29 22:39:50.507 \N > LNBits is our first attached wallet to support both sending and receiving\n\nYour next one should be Nostr Wallet Connect -- the spec supports both sending and receiving but right now you have it as Send only https://example.com/ 19193 411140 411140.431118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5321143382766 0 \N \N f 0 \N 0 229185959 0 f f \N \N \N \N 411140 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423035 2025-03-02 22:24:13.956 2025-03-29 22:39:50.509 \N Working from home. While the office is not ideal, it's a hundred times better than hearing leaf blowers and lawn mowers an every other day. https://example.com/ 2789 422995 422334.422660.422663.422986.422995.423035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1722220500296 0 \N \N f 818092710 \N 5 182370797 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434891 2025-03-12 10:14:42.584 2025-03-29 22:39:51.183 \N I’m not saying anything for at least 10 mins.. https://example.com/ 1173 434889 434317.434675.434886.434889.434891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.31754929717384 0 \N \N f 190719813 \N 1 234577280 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434639 2025-03-12 05:06:19.492 2025-03-29 22:39:51.183 \N For context I know some folks that run a small ISP. They laugh when I bring up net neutrality. They bring up how Netflix operates and champions net neutrality. The idea of net neutrality is flawed. The idea that the government is the best method to solve a problem is also flawed.\n\nWhat problem are we solving here? Are the public really having issues using the Internet? Here's what will happen if the state tries to enforce some vague rules called "net neutrality". ISPs will have more regulations and boxes to check. It is already difficult for new upstarts to enter the market. In most areas we have very few options. High regulation reduces competition because it makes it harder for new start ups to enter the market.\n\nIf an ISP starts blocking YouTube for example. What would the ideal solution be? For the customer to have another option. Change ISPs. I don't believe ISPs are behaving badly in this area. My guess is that this is coming up again because regulators want more control over our access to the Internet. The Internet is dangerous to those in power and they feel that they are losing control. The answer to this non-problem is more freedom. Not less. https://example.com/ 634 433828 433828.434639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3556273263803 0 \N \N f 308908869 \N 2 107815055 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435094 2025-03-12 13:08:52.269 2025-03-29 22:39:51.184 \N This is a great idea! I love the thought. Unfortunately it won't work, but its good thinking! \n\nHere's the bit that you're missing:\nAs you may know, taproot lets you construct an address that be can be spent from using either a key (called the keypath) or using one of potentially many scripts (called a script path)\n\nWhen you construct a taproot "address", you take an internal key (the pubkey that's usable in a keyspend path), and you tweak it with the merkle root of the script tree. So you take all the tapscripts, make it into a merkle tree, and then add the merkle root of that tree to the internal pubkey, and the resulting pubkey is used as the address.\n\nWhen you spend from a scriptpath, you provide the internal pubkey, the script that you're spending, and a little blob called the Control Block that includes a merkle proof that the script was included in the tweak. The script interpretter hashes the script that you provide, and then validates that the merkle proof in the control block is valid, and then combines the tweak with the pubkey and validates that it matches the address. In other words, it checks that the script that you're using to spend was _actually_ committed to when you locked up the coins. This involves hashing the _entire_ script. If that check passes, then it proceeds to actually interpreting the script (which as you point out it basically a checksig and then a no-op). \n\nSo, if you were to prune out the actual data blobs from the inscription envelope, then the hash of the script won't combine with the rest of the hashes in the control block up to the correct tweak, and the transaction will not be seen as valid, and won't be mined. \n\nFor the gory details on how this happens, check out BIP341: https://github.com/bitcoin/bips/blob/master/bip-0341.mediawiki#script-validation-rules\n\ntl;dr: even though the data is not evaluated, it's still hashed, so has to be there for the tx to be valid. https://example.com/ 20913 424089 95306.95453.424089.435094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.49128194295 0 \N \N f 0 \N 0 22020691 0 f f \N \N \N \N 95306 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435215 2025-03-12 14:33:22.904 2025-03-29 22:39:51.185 \N What do you think will be most different about the world in 10 years with respect to technology and innovation? Does bitcoin play a part in any of this? https://example.com/ 1039 435209 435046.435209.435215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3569731066054 0 \N \N f 672807318 \N 4 33397230 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436117 2025-03-13 10:32:02.615 2025-03-29 22:39:51.186 \N I came to a life-altering revelation today after some conversations, and I realized I've been lying my whole life. Pretending to be humble, even to myself. I've been so scared of being seen as arrogant. But I AM arrogant. So I spent 2000 sats on a stacker who called me out. Truth deserves reward. \n\nWorking on a small essay about why bitcoin maximalism, which I saw as a cult, is actually a very good strategy. Also going to include an example of how easily stacker.news can be controlled, and how cheap it would be. Guys, not storing IP addresses is not good, it just makes you easier to cyberturf. I'm gonna make sure about my assumptions though before I slander anything. \n\nThere is certainly incentive for stacker.news to not care about bots, if the bots are good enough to seem human, that's how you get good investors. So might be a valid strategy to not make such critique. Who cares if the site quality goes down for a while, when the upside is millions of dollars (yes, dollars, because I'm not here to play pretend that dollars aren't more stable than freakin bitcoin). The botting and ads are nearly, and actually, unsolvable in reality. I'm a stacker.news maximalist so I won't do anything that could harm the site.\nEnd of very interesting observations. https://example.com/ 10536 436114 436028.436100.436109.436114.436117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.856334321343688 0 \N \N f 373375692 \N 2 112587467 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435766 2025-03-13 00:17:49.642 2025-03-29 22:39:51.187 \N Very US-centric view, in my opinion. \n\nUS inflation has been delegated and pushed down the throats of all the other nations that don't have much choice but to use Dollars as reserve currency.\n\nYes, the can has been pushed down the road _and out of the US_.\n\nBut yeah, I agree that doomism is a naive worldview. The rich and smart are resilient enough to find a new local equilibrium until the next crisis destabilizes things again... the poor are suffering just a little bit more each time. The middle class gets eroded at every crisis. https://example.com/ 946 435757 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735.435744.435757.435766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8595474948631 0 \N \N f 0 \N 0 133917186 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458308 2025-03-29 07:32:58.713 2025-03-29 22:39:50.239 \N Patience.\n\nJust keep exploring, zapping, boosting, and sending sats to others. Zap things that you like. This rewards those who like sats and also, surprisingly will broaden the base of ideas and knowledge. Some things might be negative or positive. Who knows?\n\nIt's cultivation. Instead of an algorithm to spin you up, you have to choose your own adventure. The platform detects where the sats go and it places those on top by funding. \n\nPersonally I have been online writing since Geocities in the late 1990s. In one month here I have been rewarded in purchasing power more than I have in 25 years! The only thing I actually did better was in person 'Zine sales. I could actually pay a bar tab by shilling my Xerox rag. But it was a lot of work. I was lucky also because I had people smarter than me helping to make it look good. I was the sales guy. \n\nReddit, I have never enjoyed. Facebook, Linkedin, Twitter all of these I would spend more time on writing and all that happened was that I was exhausted by arguing or I would write a long piece and get crickets. For my own blog I tried ads and then I hated them for slowing it down. Ads suck. I know you know this, I know this, we all know this but it needs to be stated. We are providing the content but we are not being compensated for our time on those other platforms. We are mined for fiat. Here ads are done but it is clear and sometimes it is interesting so good for the people who post.\n\nSharing a post here is very good because automatically your handle is appended on the end as a referral. That's good. You can also when you are out of ideas, take the time to read someone else's work. Zap it if that person took time to write even if you disagree! Or don't. Practice writing. Somethings I've written here a very long post and earned 1 sat. Some things I thought were just interesting earned 800 sats. In the fiat world these are nothing but in Bitcoin these are crazy numbers. \n\nHere is kind of a casino, too. You walk in and fund the house. Sats fly around. Maybe you get rugged in the end. I can say that no one has rugged me worse than I have rugged myself. The team here is really doing something amazing. You have asked a great question. Please ask more questions. https://example.com/ 21184 458271 458271.458308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1888233726075 0 \N \N f 0 \N 0 104847344 0 f f \N \N \N \N 458271 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450259 2025-03-23 20:15:55.464 2025-03-29 22:39:50.24 \N Here we have Justin Moon\nTeaching classes in the afternoon\nAustin Bitdevs, meetup in June\nI hope you enjoyed my little tune https://example.com/ 17690 449524 449218.449414.449517.449524.450259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2089288379721 0 \N \N f 0 \N 0 49634436 0 f f \N \N \N \N 449218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449029 2025-03-23 05:23:15.088 2025-03-29 22:39:50.509 \N The loud voices tend to be most wrong when they talk about things that aren't Bitcoin. Which seems to be a bear market engagement farming phenomenon, so fairly harmless. \n\nI hope we see more and more robust lightning tooling. Even in the two years or so I've been using it, it's come on so far. So in five I'm hopeful that the onboarding and channel management / liquidity issues (for newbies looking to spend as well as merchants looking to take payment) get smoother. Spliced channels and LSPs are only getting started. \n\nWould also love to see more privacy progress, possibly some convergence between lightning UX improvements and Cashu maturing. The pieces are all in place to do without shitcoins like Monero. \n\nProjects like SeedSigner are also exciting and I'm hopeful they can keep funding and support. \n\nMy wild dream would be for some serious work to go into making Bitcoin Core a viable newbie desktop tool. The eternal sticking point here is that it doesn't support seeds, for thoughtful reasons, but it's a big barrier and means newbies have to manage both Core software and another coordinator. Perhaps rather like the HWI support in Core, there could be some kind of mnemonic interface without compromising the system?\n\nI'd like to see the end of people thinking they need to use raspberry pis and node kits, which actually only complicate and increase risk. \n\nOne thing I worry about, particularly for lightning, is how American centric the viewpoints are. For most of the world, for example, NFC payments, free instant bank transfers, and low cost debit transactions are already a reality. So understanding that lightning has to go far beyond feature parity. https://example.com/ 1620 448349 448349.449029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.19364401638326 0 \N \N f 0 \N 0 126715625 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404578 2025-02-16 01:18:29.139 2025-03-29 22:39:50.511 \N Strike is available in Germany and even supports Bolt12 https://example.com/ 19217 403947 403947.404578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4223563971403 0 \N \N f 0 \N 0 130193916 0 f f \N \N \N \N 403947 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407816 2025-02-18 12:05:34.929 2025-03-29 22:39:50.512 \N Feature request: the internal server error plays the Alice movie but all the way through and keeps track of where it left off with each downtime. \n\n(Maybe an easier way to do this is that it shows a page of the book, but sequentially, so that I can read my way through Alice over the next three or four years as you all have occasional downtime.) https://example.com/ 698 407803 407803.407816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.67126789222598 0 \N \N f 0 \N 0 33709331 0 f f \N \N \N \N 407803 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404628 2025-02-16 03:09:37.118 2025-03-29 22:39:50.52 \N I can only speak for drive chains. The main arguments are:\n\n- It enables experimentation and new use cases for Bitcoin\n- It solves conflicts and infighting\n- It solves “scaling”\n- It solves the blockchain security budget issue\n- It keeps Bitcoin decentralized\n\nsource: https://fiatjaf.com/drivechain.html\n\nwhat trade offs do you mean? I have looked briefly into drive chains during my research on prediction markets (Paul Sztorc did a lot of ground work for prediction markets on bitcoin using drive chains) and I have seen no real downside to them except that people are emotionally against the idea because it sounds like "shitcoins on bitcoin" (which is basically a feature not a bug lol) https://example.com/ 3400 404617 404606.404614.404617.404628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5668618279065 0 \N \N f 0 \N 0 215637442 0 f f \N \N \N \N 404606 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435422 2025-03-12 17:02:52.028 2025-03-29 22:39:51.185 \N Bob Murphy had the best Austrian response to that Austrian hang up. Basically, he pointed out that it was moot to argue that Bitcoin violated the Regression Theorem, because the Regression Theorem is about how things become a medium of exchange and Bitcoin is already a medium of exchange.\n\nWhat so many Austrians missed, is that the commodity value can originally be novelty, as was the case when buying those first two pizzas. Once that happened, the process of price formation was set in motion. It's incredibly ironic that Austrians missed that, since their whole thing is being dedicated to subjective utility theory. https://example.com/ 17030 435418 435411.435418.435422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.84969318621279 0 \N \N f 290322089 \N 2 27375624 0 f f \N \N \N \N 435411 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435888 2025-03-13 04:27:02.554 2025-03-29 22:39:51.187 \N Classic coal! I'm german and my father came from Thuringia where the ''Bratwurst'' is something like a religion. I even have one of those BBQs here in Spain: https://www.thueros.de/\n\nPure tradition https://example.com/ 20911 435789 434795.435171.435789.435888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.90260134583592 0 \N \N f 0 \N 0 55063167 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431091 2025-03-09 15:27:24.189 2025-03-29 22:39:50.239 \N The Convention on the Rights and Duties of States is an international treaty signed in Montevideo, Uruguay, on December 26, 1933.\n\nThe convention establishes the definition of the State, its rights and obligations.\n\nIn Article 1 it establishes four characteristic criteria of a State that have become part of customary international law.\n\nThey have been recognized as confirmation in International Law, establishing that a State as a person of International Law must meet the following requirements:\n\nARTICLE 1\n\nThe State as a subject of International Law must meet the following requirements:\n1. Permanent population.\n2. Determined territory.\n3. Government.\n4. Ability to enter into relations with other States.\n\nUnder these guidelines, any entity that meets these criteria can be considered a sovereign state under international law, whether or not it has been recognized by other states.\n\nARTICLE 3\n\nThe political existence of the state is independent of its recognition by other states.\n\nEven before being recognized, the State has the right to defend its integrity and independence.\n\nARTICLE 7\n\nThe recognition of the State may be express or tacit. The latter results from any act that implies the intention to recognize the new State.\n\n\nIn other words: my body of a living man can be a State, wherever am I, with the "territory" inside my body. If I travel around, I am just a simple ambassador of my own state in that visited state. https://example.com/ 19459 417088 417088.431091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.10077306704244 0 \N \N f 0 \N 0 199137569 0 f f \N \N \N \N 417088 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408658 2025-02-19 01:23:26.244 2025-03-29 22:39:50.508 \N ![usd](https://preview.redd.it/29qcsjjq1h171.jpg?width=449&format=pjpg&auto=webp&v=enabled&s=a7923859c1893e0389ecdb5ee2931d6099308a4e) https://example.com/ 21416 407918 407918.408658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.938924447044 0 \N \N f 0 \N 0 29463405 0 f f \N \N \N \N 407918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415459 2025-02-24 19:52:34.568 2025-03-29 22:39:50.513 \N A programing sub cause it can give a lot of traffic to sn and a way to enhance bitcoin adoptation with developers \n- also the sats upvote will show them how the more valuable answer for their question ( also bounties will be so useful there)\n\nI think this will be beter than tech because tech will be almost for news and reading only but programing will be much more https://example.com/ 18430 415433 415314.415433.415459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9533668745946 0 \N \N f 0 \N 0 204613436 0 f f \N \N \N \N 415314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434895 2025-03-12 10:17:02.109 2025-03-29 22:39:51.183 \N ![crypto](https://images.moneycontrol.com/static-mcnews/2022/06/Bitcoin-crash-memes_Twitter.jpg?impolicy=website&width=1600&height=900) https://example.com/ 21172 434688 434317.434688.434895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0247176016687 0 \N \N f 112817218 \N 2 17792287 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435225 2025-03-12 14:40:30.293 2025-03-29 22:39:51.185 \N @ekzyis has paid. Doesn't follow instructions well (hell what good bitcoiner does?) but definitely paid! https://example.com/ 17984 435151 435151.435225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1909560701331 0 \N \N f 0 \N 0 39787527 0 f f \N \N \N \N 435151 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435607 2025-03-12 20:10:29.162 2025-03-29 22:39:51.186 \N Although some people use these words interchangeably I think there needs to be a distinction between 'durability' and 'longevity'.\n\nDurability refers to the ability to withstand damage. I would argue the market demand for durability has mostly been satisfied. Most people don't need military grade strength in their phone and for those that do there are phone cases that meet this need. In other words, there's not a lot of market demand for a more durable phone.\n\nLongevity is a very different beast. If we compare the iPhone 1 to the latest iPhone 15 or whatever, there's a distinct difference in hardware capability. Back in 2007 it wouldn't have even been possible to make or even anticipate what phones would be in 2024. Even if they tried making a modular & upgradable phone they most likely would've got it wrong and it would've been significantly more expensive. In other words, not economically viable.\n\nThese days the difference between phone generations has largely stagnated. I think we can all agree the difference between the iPhone 14 and 15 is minimal at best. But the question then becomes, what is the market demand for a phone that lasts a decade? Maybe there is a market for something like this now. I don't really know. I personally wouldn't be placing my bets there but who knows, maybe somebody will. https://example.com/ 9166 435600 435217.435541.435542.435598.435600.435607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.57831600655098 0 \N \N f 0 \N 0 98717021 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435781 2025-03-13 00:52:00.596 2025-03-29 22:39:51.187 \N That might be an idea for another website. I am definitely under the impression that all existing websites, especially social media ones will have a version that integrates sats. And if they do it right, it may become more popular than the original. This place already has a wonderful community and a healthy culture. Adding the dopamine injection of 10 second videos will completely undo the intelligent insight SN users share with one another. https://example.com/ 21805 434990 434990.435781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7509100623727 0 \N \N f 0 \N 0 25291209 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436416 2025-03-13 14:49:26.924 2025-03-29 22:39:51.465 \N I'm probably going to sound very contrarian, but if you want a Bitcoin job, going to conferences is how you get leads.\n\nYea, you can spam apply to whatever is available on bitcoinerjobs.com or the jobs forum here, but there's nothing like meeting people face-to-face to make an impression. I agree that for devs, this isn't *as* necessary since there's open source contributions and such, but every company looking to hire wants to reduce risk. They want to know if they can work with you and that you show up on time to meetings and such. Meeting people in these places is how you make that impression.\n\nHow do I know this? I used to be attend these things as a pleb back in 2015-2016. And it worked out for me. I put myself out there and I made an impression with some people. And when it came time for me to look for a job, those connections and impressions made a difference.\n\nOf course, I no longer work for a company and I wish I had started my own business earlier, but even then, you need to know people and scope out what people are doing. I know a lot of people that met their co-founders at these things.\n\nThe problem is a lot of people think it's a waste of money because the tickets are expensive. But you have to think of these things as an investment. You pay to start or continue some relationships. Meetups are great, and if you have a local one, by all means, attend and do the same things. But if you want a wider audience for your product, or more people to connect with conferences are really good for that. https://example.com/ 20073 435922 435922.436416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0470393506886 0 \N \N f 179663623 \N 1 166082140 0 f f \N \N \N \N 435922 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443660 2025-03-19 12:55:52.184 2025-03-29 22:39:51.468 \N asking stupid questions https://example.com/ 13878 443611 443583.443611.443660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.09092156537486 0 \N \N f 0 \N 0 149253409 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438035 2025-03-15 06:47:39.637 2025-03-29 22:39:50.508 \N There is Nostr plugin for BTCPay that allows to connect to a funding source (lightning node) via NWC. \nYou can't just connect BTCpay to use with Stacker News, without having Lightning configured. Did you link BTCPay to Alby? (it's possible via LNDHub and NWC) https://example.com/ 15491 438034 438034.438035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7697214258345 0 \N \N f 0 \N 0 127277208 0 f f \N \N \N \N 438034 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416873 2025-02-25 22:35:52.904 2025-03-29 22:39:50.512 \N Somehow, the answer to your question has to be that building owners aren't paying a price for having crummy elevators.\n\nThere are some interesting factors in real estate that people don't price in when buying, but later realize they don't like. The two examples that come to mind are closet space and basements in residential real estate. I've heard that both of those are declining, because people don't pay attention to them while house hunting. https://example.com/ 17148 415913 415913.416873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9259926349302 0 \N \N f 0 \N 0 238459136 0 f f \N \N \N \N 415913 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417098 2025-02-26 05:19:19.878 2025-03-29 22:39:50.513 \N Listed mine in the **[SN Privacy Directory Q4 2023](https://stacker.news/items/342249#privacy-youtube-channels)**:\n\n- [Watchman Privacy](https://www.youtube.com/@WatchmanPrivacy/videos)\n- [Closed Network](https://closednetwork.io/episodes-list/)\n- [Surveillance Report](https://www.youtube.com/@surveillancereport/videos)\n- [Opt Out Podcast](https://www.youtube.com/@OptOutPodcast/videos)\n- [Techlore](https://www.youtube.com/channel/UCs6KfncB4OV6Vug4o_bzijg)\n- [TheHatedOne](https://www.youtube.com/channel/UCjr2bPAyPV7t35MvcgT3W8Q)\n- [Mental Outlaw](https://www.youtube.com/channel/UC7YOGHUfC1Tb6E4pudI9STA)\n- [Side Of Burritos](https://www.youtube.com/@sideofburritos)\n- [Wolfgang's Channel](https://www.youtube.com/channel/UCsnGwSIHyoYN0kiINAGUKxg)\n https://example.com/ 21391 417096 417096.417098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2184333078809 0 \N \N f 0 \N 0 120752325 0 f f \N \N \N \N 417096 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415388 2025-02-24 18:57:39.324 2025-03-29 22:39:50.513 \N Over-leveraging Tor for regular, mundane tasks.\n\nI see a lot of people think that literally everything they do should be done over Tor, while much of it doesn't benefit at all (i.e. logging into your bank account over Tor) while it adds massive complexity and time costs.\n\nTor has very specific, very powerful use-cases, but often isn't necessary. https://example.com/ 11498 415385 415180.415378.415385.415388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.12905379866265 0 \N \N f 0 \N 0 36688864 0 f f \N \N \N \N 415180 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403713 2025-02-15 06:01:17.29 2025-03-29 22:39:50.514 \N > I want to be able to use that ecash to do other things, particularly, I want to use that ecash to do something I couldn't do with the sats. And I do not expect to turn my ecash back into sats. I think this means that I'm buying ecash from the mint and when I do, I give up my claim to the bitcoin.\n\nI've been struggling to try to open minds to this possible framing. I will say, it's easier for myself personally to reason about it when the ecash issuance is based upon a network than a single issuer, though it could be argued that it's the same either way.\n\nIt's possible the value of it is always exactly 1:1 of the underlying pegged asset. It's also possible it's worth more during times of high demand, such as when there's high chain usage. We can't perfectly specify exact value between two assets because it's always based on free markets. And there's no such thing as a perfect amount of work on both ends, and value is derived upon work with S&D. Though I think one thing can be true and that there's no expectation that the ecash will go up based on a single entity's work, so it removes the securities concern. \n\nWhen you start thinking about it as a separate networked asset, it could be considered another type of DLT, and if it is then the network interoperability starts to look like cryptocurrency swaps, which means the swapping function is an exchange, which does not imply custody or expectation that you can redeem the other asset for the same exact exchange rate at any point in the future. \n\nI 100% sympathize with potential confusion trying to conceptualize this. I think we as a community need to find more nuanced differences when we talk about legal custodianship (or not) with what we mean by different trust levels. A non custodian cryptocurrency could not be very trusted. Almost all in my opinion are not trusted, but I wouldn't call a group of Ethereum PoS miners (or other PoW based crypto miners) a custodian.\n\n--\n\nThank you for writing your thoughts on this matter and walking through them. https://example.com/ 18114 106095 106095.403713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2190169142942 0 \N \N f 0 \N 0 84376743 0 f f \N \N \N \N 106095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451445 2025-03-24 14:51:27.526 2025-03-29 22:39:50.516 \N Business has been pretty steady. We opened within days +/- the FTX collapse so we had a lot of folks coming in pretty defeated as BTC crashed near 15k. Vibes are definitely higher but there's been an oddly comforting drumbeat to it all. Its business as usual for us. We open the bar, open the kitchen, and welcome folks no matter what the market is doing. Tick tock and all that...\n\nWe do see new cohorts of interest -- a lot more TradFi Suits since the ETF approvals and such https://example.com/ 7389 451374 451374.451445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5688249081373 0 \N \N f 0 \N 0 2323075 0 f f \N \N \N \N 451374 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431195 2025-03-09 16:02:31.384 2025-03-29 22:39:50.52 \N I asked stackers to share 10+ year old products they're still using: https://stacker.news/items/199606 https://example.com/ 17172 404356 404356.431195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.94803379389467 0 \N \N f 0 \N 0 134358231 0 f f \N \N \N \N 404356 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434776 2025-03-12 08:24:13.971 2025-03-29 22:39:51.182 \N author sounds like a cool guy https://example.com/ 762 434775 434646.434687.434760.434769.434775.434776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5490797355398 0 \N \N f 0 \N 0 220069436 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1662 2022-09-21 20:24:44.865 2025-03-29 22:39:51.184 \N Yes, the article is accurate, but none of it is a conspiracy, its all outlined in the original 1913 bill establishing Fed. \n\nA good way to think of the Fed is something like the "National Council on Beef"...meaning its an advocacy organization owned by members who are beef producers.\n\nIn the case of the Fed, the "Fed" is owned by 12 regional Fed banks, who are in turn owned by the commercial banks in their specific region (pro-rata based upon each banks market capitalization). \n\nThis is why "how much profit does the Fed make?" is a complete red-herring. None of the members cares how much money the Fed makes --- much like the beef producers do not care how much money the Nat Council for Beef makes --- the feds goal is to *make its members money*, not make money itself. \n\nObviously NY is by and large the biggest of the 12 regional member banks, and within that region JP Morgan Chase is the largest commercial bank. https://example.com/ 14037 1660 1660.1662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1954658977545 0 \N \N f 0 \N 0 99405560 0 f f \N \N \N \N 1660 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422737 2025-03-02 17:02:12.942 2025-03-29 22:39:50.509 \N I don’t this idea that transgender people need to be quiet about who they are to be valid in their identity is true. Just as there are people who are loud sports fans, there are people who engage more quietly. They’re all sports fans. \n\nI do think this sentiment about AOC is important though, as it speaks to how inauthentic left politicians are. The pronouns cater to a particular group she wants to align with, and when this no longer serves her she can remove them as she pleases. This identity swapping is something that legitimate members of a group cannot do. One cannot remove their queerness, just as one cannot make themselves queer. \n\nI’m probably an example of think of when they imagine a leftist, though I don’t like to hard align myself with any particular political ideology and I’m constantly also looking to find common ground. I don’t find arguing over politics to be as rewarding as I once did, now I see it more as everyone vs the government as opposed to left vs right. \n\nBut I’ve always more or less believed that most people mean well. In my personal life I address people as they would like to be addressed, as to me it seems the bare minimum. We have so little control over so many things in our lives, personal identity should always be in the hands of the individual. \n\nI’m aware many will probably disagree with some of my stances, but I hope you will take them with the light heartednedd I intended. I am always open to discussion and learning. https://example.com/ 20597 422548 422548.422737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1977876009576 0 \N \N f 0 \N 0 109325138 0 f f \N \N \N \N 422548 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421781 2025-03-02 01:40:41.148 2025-03-29 22:39:50.51 \N Nice!\nI would suggest you to create a SN invitation link for each of your new bitcoin merchant and tell them to be more active on SN and promote their business here, offers, discounts, posting images and videos of clients paying with btc.\n\nThey must make noise everywhere and show to the whole world how Bitcoin win. https://example.com/ 10638 421778 421778.421781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.99865648113647 0 \N \N f 0 \N 0 41212107 0 f f \N \N \N \N 421778 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431228 2025-03-09 16:05:07.811 2025-03-29 22:39:50.51 \N ### **UN “Policy Recommendations”**\nDeveloping countries may have less room to manoeuvre, yet the regulation of cryptocurrencies is possible. The following policies, among others, have the potential to curb the further spread of the risks of cryptocurrencies and stablecoins:\n\n(a) Ensuring comprehensive financial regulation, through the following actions:\n- Require the **mandatory registration of crypto-exchanges and digital wallets** and make the use of cryptocurrencies less attractive, for example by charging **entry fees for crypto-exchanges and digital wallets** and/or imposing financial transaction taxes on cryptocurrency trading;\n- Ban regulated financial institutions from holding stablecoins and cryptocurrencies or offering related products to clients;\n- Regulate decentralized finance (such finance may, in fact, not be fully decentralized, given its central management and ownership, which form an entry point for regulation18);\n\n(b) Restricting or **prohibiting the advertisement of crypto-exchanges and digital wallets** in public spaces and on social media. This new type of virtual, and often disguised, advertisement requires policymakers to expand the scope of regulation beyond traditional media. This is an urgent need in terms of consumer protection in countries with low levels of financial literacy, as even limited exposure to cryptocurrencies may lead to significant losses;\n\n(c) ***Creating a public payment system to serve as a public good, such as a central bank digital currency***. In the light of the regulatory and technological complexity of central bank digital currencies and the urgent need to provide safe, reliable and affordable payment systems, authorities could also examine other possibilities, including fast retail payment systems. https://example.com/ 1983 397280 397280.431228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.04597621154845 0 \N \N f 0 \N 0 197181820 0 f f \N \N \N \N 397280 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449017 2025-03-23 04:59:52.418 2025-03-29 22:39:50.511 \N adoption of what?\na guy on Africa who pays 10$ for a transaction is not going to adopt bitcoin. \nAn idiot who buys a jpeg for 10$ yes.\nthe question is, what we want? https://example.com/ 5497 449003 448953.448982.449003.449017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.62224410067548 0 \N \N f 0 \N 0 237102659 0 f f \N \N \N \N 448953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455817 2025-03-27 10:51:25.618 2025-03-29 22:39:50.512 \N Here's one of many reasons that net neutrality is a bad idea.\n\nAll it takes to ruin the internet experience for many users is for a few users to use massive amounts of data. I have a friend that runs a small wireless ISP that serves non-profits and rural customers. He explained to me what happens.\n\nYou have a new customer that gets service. They start downloading movies eating up the bandwidth of fellow customers. Not all traffic is equal. That idea is absurd. As bitcoiners we should know this principle by looking at bitcoin's design. We pay fees to get our transaction into a block. If you don't care about your transaction being in the next block you pay less. If you have to have it you pay more. Free markets are the answer here not government force. We don't need governments to point a gun at ISPs. Honestly, I think these politicians are not at all interested in neutrality. This is just more control over ISPs. What we need is more ISPs. More competition. https://example.com/ 18068 455689 426376.455689.455817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6022390962052 0 \N \N f 0 \N 0 73966715 0 f f \N \N \N \N 426376 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442427 2025-03-18 14:57:19.477 2025-03-29 22:39:50.514 \N Thank you for the thoughtful and in depth analysis of our privacy policy.\n\nOur main objective is to contribute to the longevity of the Bitcoin Lightning Network's development as the main financial payments system of the future. For enterprises and holders of large amounts of bitcoin to adopt LN, assurances about payment reliability and risk mitigation need to be in-place. This is what we are providing at Amboss. For the purposes of improving LN performance, we crowd-source information from LN operators and users. For data that is not publicly available, this information must be requested; in other words, the data owner opts-in to provide it.\n\nTo help lightning network mature, we operate a data analytics company that helps users make thoughtful decisions about whom to connect to. We have taken many steps to ensure that we are being thoughtful about the development of the lightning and our design decisions to help the lightning network's long-term growth. This, in many ways, is achieved by opt-in, transparent data collection to create ways for users to manage risks as well as improve payment performance. All feedback is welcomed; this helps us make better design decisions.\n\nI'm happy to hear that privacy is a priority for you and I hope that our policy can help guide development of better privacy tools for users and more ways for users to consciously decide what information they would like to share. This is the essence of privacy: the right to choose which information to disclose. https://example.com/ 725 442405 442084.442405.442427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.1907190845496 0 \N \N f 0 \N 0 208802808 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443029 2025-03-19 00:52:27.179 2025-03-29 22:39:50.509 \N Agree. And I personally think, that their market share is mainly because the fact, that LND is first/only choice in most of the "prepared solutions" like Umbrel, myNode, RaspiBlitz, Embassy, Citadel etc for plebs. \n\nBig players are more willing to use other solutions. https://example.com/ 900 442751 442751.443029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5401946386426 0 \N \N f 0 \N 0 198772280 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404427 2025-02-15 21:33:01.067 2025-03-29 22:39:50.511 \N IN THiS WEEKS EPISODE:\n- [00:00](https://youtube.com/live/Ts73grbJaLs?t=0s) Austin TX is HOT and @K00b is gettin sweaty.\n- [01:21](https://youtube.com/live/Ts73grbJaLs?t=81s) John Perry Barlow of the Grateful Dead was one of the original Cypherpunks – he even wrote the Cypherpunk manifesto. Amazing! \n- [5:31](https://youtube.com/live/Ts73grbJaLs?t=331s) Musig let’s you do multisig transactions with just a single signature. WHAAAT?!? SuperTestnet doesn’t know shit about the Grateful Dead, but K00b doesn’t know shit about Musig.\n- [11:25](https://youtube.com/live/Ts73grbJaLs?t=685s) It’s discovered that Amethyst users are effectively being censored by an overzealous ‘Report’ spam feature in the app. So TonyGiorgio forked the whole damn thing, creating Onyx, a new censorship resistant Nostr client for Android. \n- [16:45](https://youtube.com/live/Ts73grbJaLs?t=1005s) Shitcoiners be getting rekt, Game of Thrones style.\n- [23:16](https://youtube.com/live/Ts73grbJaLs?t=1396) Matt Odell predicts that Twitter’s Blue checkmark is Elon Musk’s first step in turning Twitter into WeChat and bringing China’s social credit score system to the west. Brrr… I just got the **shiverrrs**.\n- [30:36](https://youtube.com/live/Ts73grbJaLs?t=1836) Bitcoin Maxis and religion. Top Story, hand picked by @ThrillerX_ (and pooped on by @K00b)\n- [36:49](https://youtube.com/live/Ts73grbJaLs?t=2209) Prime Trust acquired by BitGo and all kinds of dominos falling. Top Story, hand picked by @K00b\n- [40:47](https://youtube.com/live/Ts73grbJaLs?t=2447) @ThrillerX_ anticipates the collapse of crypto could lead to hyper-Bitcoinization blowing the Stacker News ‘J-curve’ sky high. @K00b would have to shut it down – but he can’t get his J-curve up.\n- [42:36](https://youtube.com/live/Ts73grbJaLs?t=2556) The next sub~ to be added to Stacker News is likely to be [~Tech](https://stacker.news/~tech). It would join [~Bitcoin](https://stacker.news/~bitcoin), [~Nostr](https://stacker.news/~nostr) and [~Jobs](https://stacker.news/~jobs). [~Porn](https://stacker.news/~porn) was a close second.\n- [49:18](https://youtube.com/live/Ts73grbJaLs?t=2958) Top Stackers & Spenders. @ThrillerX_ finds a cowboy hat and now wants an entire cowboy ensemble.\n\nEverybody’s homework for tonight is to make 5 stacker accounts. ZAP! https://example.com/ 1571 404300 404014.404300.404427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6975133573634 0 \N \N f 0 \N 0 197858894 0 f f \N \N \N \N 404014 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404616 2025-02-16 02:29:52.001 2025-03-29 22:39:50.512 \N Most bitcoiners I've met in person are incredibly optimistic about listening to the thoughts of fellow plebs. Some are unfortunately cynical. I was merely marveling at the luck that I've run into - being able to make units of magical internet money by opining online. I'm an optimistic pleb. And grateful to SN & Bitcoin :) https://example.com/ 16230 404095 404095.404616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2858387908133 0 \N \N f 0 \N 0 901108 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416414 2025-02-25 15:33:19.205 2025-03-29 22:39:50.513 \N I also zap almost every response I receive so I can understand your apprehension in how kilo zapping might affect the way you interact with people. Might be a good idea to maintain a base level "hey thanks for commenting" zap and use the kilo zap for the most thoughtful posts, comments, etc. https://example.com/ 18529 416148 416148.416414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.8293906898498 0 \N \N f 0 \N 0 143474430 0 f f \N \N \N \N 416148 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423898 2025-03-03 17:21:28.912 2025-03-29 22:39:50.513 \N On it. \n https://example.com/ 12356 423682 423629.423670.423682.423898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0454220562304 0 \N \N f 0 \N 0 29675308 0 f f \N \N \N \N 423629 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413971 2025-02-23 14:53:34.258 2025-03-29 22:39:50.514 \N ![Good Grades and Success 06112023083451.jpg](https://m.stacker.news/4242) https://example.com/ 21791 412631 412631.413971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0767916804319 0 \N \N f 0 \N 0 72619376 0 f f \N \N \N \N 412631 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435435 2025-03-12 17:15:29.298 2025-03-29 22:39:51.185 \N I watched Benjamin Button this week for the second time in my life. One quote that resonated with me was this.\n\n“For what it's worth: it's never too late or, in my case, too early to be whoever you want to be. There's no time limit, stop whenever you want. You can change or stay the same, there are no rules to this thing. We can make the best or the worst of it. I hope you make the best of it. And I hope you see things that startle you. I hope you feel things you never felt before. I hope you meet people with a different point of view. I hope you live a life you're proud of. If you find that you're not, I hope you have the strength to start all over again.”\n\nUpon reading your post, it reminded me of how young we are in the pursuit of our happiness. I love to see you are going after it, Tony. https://example.com/ 16847 435336 433066.433088.433456.433557.433869.433905.435306.435336.435435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.023542594632 0 \N \N f 0 \N 0 105016569 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436680 2025-03-13 19:31:51.916 2025-03-29 22:39:51.464 \N I've always felt that their lack of any on chain controls would lead to this. Yes, you can recover with electrum but there's zero indication and come on, it's not like having an emergency on chain sweep function is hard to implement. They do a good job of trying to prevent channel closures though, this is the first I've seen it happen. https://example.com/ 703 436665 436665.436680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0594067510081 0 \N \N f 0 \N 0 197426822 0 f f \N \N \N \N 436665 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448414 2025-03-22 15:38:17.591 2025-03-29 22:39:51.472 \N I finally finished reading Dune. Well, it was mostly listening to the audiobook during work but also sitting down to read the physical book when I have time in the evenings. What a masterpiece! The world design, the imagination, the characters, all so complex and interesting. Frank Herbert is a true genius! Will likely start Dune Messiah soon. Would really like to finish the whole series, seems really fun. https://example.com/ 4802 403036 403036.448414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.86809406537098 0 \N \N f 0 \N 0 10392190 0 f f \N \N \N \N 403036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448440 2025-03-22 15:49:34.182 2025-03-29 22:39:51.472 \N ![photo-output.jpeg](https://m.stacker.news/27623) https://example.com/ 16808 447892 447892.448440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.40947515342553 0 \N \N f 0 \N 0 216862096 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307270 2024-11-24 22:07:13.411 2025-03-29 22:39:51.474 \N I'd like to select "Nice try fed!", but it wasn't available. https://example.com/ 2652 307258 307258.307270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8144157399622 0 \N \N f 0 \N 0 21994480 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448491 2025-03-22 16:21:24.081 2025-03-29 22:39:51.476 \N Just hang out with us and help us learn stuff. https://example.com/ 21184 448275 447833.448012.448175.448196.448270.448275.448491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3971919112944 0 \N \N f 0 \N 0 24159340 0 f f \N \N \N \N 447833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435678 2025-03-12 21:47:03.418 2025-03-29 22:39:51.71 \N Quick Question. Buy in post has received 50k sats but only 45k sats credited to account in satistics. 10% fee for larger zaps or something? https://example.com/ 8289 435654 435046.435135.435162.435214.435220.435235.435649.435652.435654.435678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3184956130848 0 \N \N f 0 \N 0 190987557 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:01:58.824 f \N \N \N 0 0 0 0 0 0 0 410757 2025-02-20 16:59:23.64 2025-03-29 22:39:50.513 \N To lower the barriers to providing feedback, here are the assets in a table:\n\n-----\n\n\n| Item | A | B |\n|--------------|-----------|------------|\n| Landing page | ![Landing A](https://m.stacker.news/18961) | ![Landing B](https://m.stacker.news/18962) |\n| Explore | ![Explore Section - V1.png](https://m.stacker.news/18972) | ![Explore Section - V2](https://m.stacker.news/18973) | \n| Benefits | ![Value Propositions V1.png](https://m.stacker.news/18963) | ![Value Propositions V2](https://m.stacker.news/18964) |\n\n| Item | Image | \n|--------------|-----------|\n| Footer | ![Footer](https://m.stacker.news/18974) | \n| Search Bar | ![Search-bar](https://m.stacker.news/18975) | \n| Search Page - No Filters | ![Search-results](https://m.stacker.news/18977) | \n| Search Page - With Filters | ![Search-results-filters](https://m.stacker.news/18976) | \n\n\n\n\n https://example.com/ 19689 410691 410691.410757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0531088973756 0 \N \N f 0 \N 0 228863339 0 f f \N \N \N \N 410691 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407800 2025-02-18 11:53:14.202 2025-03-29 22:39:50.514 \N >I just sent a 7.9 euro tx\n\nYou are not sending euro over LN, you are sending sats.\n\n>Am I missing something obvious?\n\nYes, you are missing that Muun is the worst wallet ever. And is NOT a LN wallet, is just an onchain wallet faking LN txs with submarine swaps. \nThat's why you are paying insane fees.\n\nSee more details in this article about comparing LN wallets. Pay attention to details about Muun.\nhttps://darthcoin.substack.com/p/lightning-wallets-comparison\n\n[![Muun-others.jpg](https://i.postimg.cc/65cSsGZr/Muun-others.jpg)](https://postimg.cc/fJ35myBy) https://example.com/ 21208 407669 407400.407461.407669.407800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0471591036565 0 \N \N f 0 \N 0 4252038 0 f f \N \N \N \N 407400 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417034 2025-02-26 02:32:34.017 2025-03-29 22:39:50.517 \N 1. Begin learning the protocols quite well. I recommend [Chaincode](https://learning.chaincode.com/) ... If you don't like classes/accountability/mentorship, you can self-teach using their materials: https://chaincode.gitbook.io/seminars/.\n2. Subscribe to the mailing lists: [lightning-dev](https://lists.linuxfoundation.org/mailman/listinfo/lightning-dev), [bitcoin-dev](https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev)\n3. Participate in the [Bitcoin Core Review Club](https://bitcoincore.reviews/) ... lnd and core lightning have review clubs too\n4. Join or start a local meetup\n\nOh, and honorable mention in the non-free category is https://www.base58.info/ which I haven't taken but goes deep on transactions AFAIK. Also in non-free there are many good books for self-teaching, like Jimmy's [Programming Bitcoin](https://www.amazon.com/Programming-Bitcoin-Learn-Program-Scratch/dp/1492031496). https://example.com/ 21271 416798 416798.417034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0772572052592 0 \N \N f 0 \N 0 104219538 0 f f \N \N \N \N 416798 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442470 2025-03-18 15:22:10 2025-03-29 22:39:50.517 \N 3-4 times a month https://example.com/ 9 442414 442084.442414.442470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2622762456863 0 \N \N f 0 \N 0 97432799 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451241 2025-03-24 13:12:57.193 2025-03-29 22:39:51.184 \N 90% of wannabe routers are just playing a PvP MMO where they steal from each other while pretending they're all helping Bitcoin together.\n\nOn a long enough timeline, unfit nodes either give up or become profitable/useful.\n\nThe best routers are also merchant/service nodes and routing profit is just byproduct of having a large active node that people want to pay (for goods and services).\n\nThis is how it ought to be! Nodes specialized in routing alone are just trying to be middlemen/rent seekers. https://example.com/ 9275 450976 450971.450976.451241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.74581061628439 0 \N \N f 179060463 \N 2 199078242 0 f f \N \N \N \N 450971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436035 2025-03-13 09:00:44.464 2025-03-29 22:39:51.463 \N This is the same wife you're trying to cheat on with AI? https://example.com/ 3656 435596 435596.436035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4077272184306 0 \N \N f 0 \N 0 50613641 0 f f \N \N \N \N 435596 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436679 2025-03-13 19:31:38.053 2025-03-29 22:39:51.464 \N No, their profit is too exposed to treasury yields. But it is a good business to take dollars convert them into interest bearing treasuries and give back digital dollars in return. Also very smart that they are sweeping profits into bitcoin. \n\nTether is a welcome buyer of treasuries right now. When they become too large and pose a risk to the system the powers that be may not be so indifferent to them. https://example.com/ 16442 436665 436665.436679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7955588155939 0 \N \N f 0 \N 0 104364644 0 f f \N \N \N \N 436665 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443709 2025-03-19 13:26:50.79 2025-03-29 22:39:51.469 \N As of 12/31 they had 2.8b in cash, and 10b in “securities” of unknown quality. \n\nOn the other side, they had 10b of deposits and 4.2B of short-term obligations. \n\nMy guess is they pledged their securities and got that 4.2B. No one will give them anymore money. \n\nSo, they have very little cash cushion. If their securities drop, they will be margin called and go out of business.\n\nWouldn’t really touch it at this point, because the odds of their random securities dropping as the Feds continue to raise rates are pretty high.\n\nNormally, they would be acquired before bankruptcy, but with choke point 2.0 in full swing, not many people would want to touch it. https://example.com/ 1602 443689 443577.443689.443709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9708716011071 0 \N \N f 249604757 \N 1 22163599 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 187267 2024-06-20 10:05:46.599 2025-03-29 22:39:51.703 \N I see that [Nutminer thingy](https://stacker.news/items/178510) for CashU.\n\nThat made me think about a paint point with SN.\n\nSN provides a few free comments and posts for new users.\n\nBut there's no way for someone who is not a new user, and who has no sats, to be able to post or comment.\n\nWould there be a way to do a Nutminer type thing, but for earning more of those "free comments / free posts"? If that were general (i.e., for earning sats), the difficulty would rise high as there would be competition from the general public trying to earn sats.\n\nBut when the "earnings" is only free comments and free posts on SN, well then difficulty would be lower and it would be more easily obtained. But that still requires work to be performed, and thus adding this likely will not create a spam/spammer issue.\n\nThe problem I'm trying to solve is where a person wants to post, or comment, and finds they don't have enough sats. And they don't have any easy way to acquire them. So rather than seeing them close their browser tab in frustration, they can instead go and "mine" a "free comment". https://example.com/ 19992 187132 187132.187267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.86247903737411 0 \N \N f 0 \N 0 173456502 0 f f \N \N \N \N 187132 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401677 2025-02-13 10:11:40.253 2025-03-29 22:39:50.514 \N ### Tip of the day!\n*ONLY for Saloon shitposters*\n\nRecently SN team [implemented LNURL LUD-12](https://stacker.news/items/267509) (add comments into a payment). Don't forget to drop some sats to them for this amazing work.\nWhat does it means? This is a very important LNURL feature that you can use it:\n- you can send DM to the receiver, just with 1 sat\n- you can attach a specific message with a payment. Let's say you want to donate to somebody 21000 sats and send a nice message to it. A nice way to send greetings.\n- remember that these messages also could be read by SN admins, SN is still a custodial service, so do not abuse their work.\n\nHow to do it? Simple:\n- If you are not using SN, go to any SN user profile, click on his yellow button with the LN address and will popup a QR code. Scan that QR with a LN wallet that support to attach a message to a payment. Add the amount and the comment and done. The receiver will see a nice message. You can use also the LN address directly if your wallet support it.\n- If you are using SN account, just go to your SN wallet and type the LN address of the SN user or any external LN address, select LN address tab and add the min 1 sat amount and also the comment / message (is the last field).\n\n@k00b - maybe could add a simple link to this modal payment screen directly into each SN user profile? Like saying "send a DM here". https://example.com/ 20245 401496 401496.401677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.75137893267172 0 \N \N f 0 \N 0 146461970 0 f f \N \N \N \N 401496 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443580 2025-03-19 12:25:49.572 2025-03-29 22:39:50.517 \N *Tinfoil hat engaged*\n\nAll the war pigs that work here\nhttps://www.newsnationnow.com/wp-content/uploads/sites/108/2023/07/Pentagon_ufos_03022022_AP_.jpg?w=1280&h=720&crop=1\n\nAnd at Raytheon, Lockheed, Boeing, and the rest of the military industrial complex. We deserve the truth about what UFOs are, and if clean energy has been hidden from the world they should rot underneath the prison till the end of time. https://example.com/ 708 443272 443272.443580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28493600356439 0 \N \N f 0 \N 0 203083809 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443546 2025-03-19 12:12:41.95 2025-03-29 22:39:51.467 \N Yeah, it's hard to stretch your mind to restructure around these new affordances.\n\nThis is a v similar feeling I had at the time of the Snowden revelations -- I know how TCP/IP works and how the broader internet architecture is laid out, so the fact that the mass surveillance was _technically_ possible was not a surprise, any technical person had known that for literally decades. But the cultural norms around it, the sheer amount of bullshit that would have to be done to make it practical, made it seem ridiculous.\n\nAnd yet, as I mentioned above: it was technically possible, there was a benefit to doing it, so someone did it.\n\nSnowden changed how I thought about _everything_. In particular, I think there's a giant frying pan headed for the faces of bitcoiners more broadly. If a world arrives where btc is 10x more valuable, modern cultural norms and institutions will be woefully insufficient to prevent a Latin American hellscape of kidnappings and organized crime (_technically possible, check; benefit to doing it, check_). \n\nWe desperately need new norms and institutions as a herd immunity. Failing that, we won't like the world we find ourselves in, even if we're rich. I made a post about that [here](https://stacker.news/items/307785). https://example.com/ 11996 443474 443388.443454.443474.443546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.48406539162817 0 \N \N f 291803984 \N 2 178744227 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447191 2025-03-21 17:15:08.178 2025-03-29 22:39:51.47 \N Interesting. The words "bitcoin" or even "crypto*" appear exactly 0 times on that letter. More so given that several years ago they dabbled into accepting bitcoin (onchain), then they removed it, allegedly because of the high onchain fees. This means they are **very** aware of bitcoin.\n\nAre they right and bitcoin will be negligible 10 years from now? Will central banks, commercial banks, governments, regulators and these fiat companies that make a living out of showing a polished UI/UX on top of an overly complex and fraudulent system be the winners?\n\nOr are they wrong in the same way that it seems that Google will be disrupted by AI and these fiat boys are going to receive the lesson of their lives? How can we make it so that 10 years from now bitcoin is **the** thing and not these ultra-fiat companies and institutions?\n\nPlease discuss. https://example.com/ 21184 446937 446937.447191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3087905415594 0 \N \N f 0 \N 0 7494135 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448446 2025-03-22 15:51:55.239 2025-03-29 22:39:51.476 \N Why in the world was it illegal to begin with?\n\nAmerica criminalized it by appealing to grotesque racial stereotypes, in an effort to protect our tobacco industry. What's your excuse? https://example.com/ 20180 448422 448369.448422.448446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9910746441942 0 \N \N f 0 \N 0 141100516 0 f f \N \N \N \N 448369 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436393 2025-03-13 14:25:19.621 2025-03-29 22:39:51.708 \N Yes, it's now up at 7.3% of total USD value.\nOf just bitcoin volume (lightning and onchain) Lightning is now at 23%.\n\nMain growth factors are the launch of the US bill payment service which has attracted many US customers who often use Strike. Also El Salvador is growing nicely, along with a general growth in everything Lightning https://example.com/ 3990 436323 436323.436393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4461358540716 0 \N \N f 0 \N 0 202873525 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 2025-03-20 08:02:04.679 f \N \N \N 0 0 0 0 0 0 0 443687 2025-03-19 13:17:13.477 2025-03-29 22:39:51.717 \N The article points out that lightning nodes never control user funds but then says -- in a parenthesis -- "except the one-way control to route a payment along a user-specified path." But that is false. Lightning nodes don't control user funds even in a "one way" respect. The user's funds remain on the user's device until the payment to the intended recipient is complete. Only after the payment is complete does the routing node acquire what used to be the user's funds, and at that point they don't belong to the user anymore. Since the routing node only acquires money that rightly belongs to themselves (per the terms of the smart contract) and never touches user funds, it is not true to say that they have "one-way control" of anyone else's money. \n\nIt is true that the government recently argued that you don't need to control someone else's money to transmit it. They gave the example (see page 30 of [this document](https://storage.courtlistener.com/recap/gov.uscourts.nysd.604938/gov.uscourts.nysd.604938.53.0.pdf)) that if party A puts money in a lockbox, gives that box to party B, and pays them to deliver it to party C, party B still counts as a money transmitter even if they never touch the actual money and only touch the box containing it.\n\nBut FinCEN has actually considered the government's example and explicitly denies that such a courier counts as a money transmitter: "FinCEN does not treat as a money transmitter an armored car business that solely engages in providing secure transport services, including currency and other valuables, for the Federal Reserve, the U.S. Mint, banks, and private companies, so long as the armored car business cannot be viewed as participating, or having a stake, in a financial transaction." [source](https://www.fincen.gov/resources/statutes-regulations/administrative-rulings/definition-money-services-business-money)\n\nSo the government's example falls apart. Routing nodes do even less than a courier. They do not even control a "locked box" containing someone else's money. They only ever have their own money in their own node. I hope the courts laugh off the government's claim that you can transmit money without controlling it; if that claim stands, then almost everyone is an illegal money transmitter because if the government was right, it wouldn't matter whether or not you touch someone's money, only this would matter: if the government sues you, they win as long as they can find some time when you helped someone complete a payment faster and cheaper than they could have done it on their own -- even if, in the process, you never touched their money. https://example.com/ 20734 443332 443295.443332.443687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3271612921974 0 \N \N f 0 \N 0 159318090 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:35:02.204 f \N \N \N 0 0 0 0 0 0 0 403444 2025-02-14 20:00:53.539 2025-03-29 22:39:50.515 \N I'm the hero that my mother warned me about. I always laughed when she warned me about the wrong kids because I was the ring leader. \n\nI enjoyed this post that you wrote. Contrarian thought is very good. It's a kind of discipline that happens in construction all of the time. We argue, curse, curse each other, blame, cat call, howl and it would seem deliberately try not to work together to achieve results. As intense as our arguments are in the time span of 3 minutes we accomplish more than a carefully orchestrated meeting does. It's brute force and will arguing with reality and then, poof, we have accomplished a better product than someone else who gave up years ago and never pushed through.\n\nOnce while finishing concrete on a very hot day my uncle pointed out that I was finishing the surface of the sidewalk too nicely in one small area and that I had 300 more feet to do. He said, "We may loose that battle but we have to win the war." I learned to quickly master the surface in waves of rough to smooth. https://example.com/ 20826 403121 403121.403444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2397715359275 0 \N \N f 0 \N 0 87035059 0 f f \N \N \N \N 403121 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404845 2025-02-16 09:08:46.406 2025-03-29 22:39:50.516 \N @k00b I can't seem to pay the territory fees since the switch. Normally clicking pay generates a LN invoice. But it isn't this time. Did I miss something that was announced? https://example.com/ 7675 395356 395356.404845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.47857126244516 0 \N \N f 0 \N 0 8268506 0 f f \N \N \N \N 395356 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450350 2025-03-23 21:56:41.075 2025-03-29 22:39:50.518 \N I used to think of it as the devil. Something to avoid, sign of bad financial habits.\n\nAfter reading the Fiat Standard, I understood that gaining access to and using debt in a smart way is pretty much a must to succeed, money wise, in today's world.\n\nI'm also running a real life experiment by [going into debt to buy bitcoin](https://stacker.news/items/124601). https://example.com/ 2703 450108 450108.450350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.58891391808703 0 \N \N f 0 \N 0 116237291 0 f f \N \N \N \N 450108 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431106 2025-03-09 15:28:02.987 2025-03-29 22:39:50.519 \N Fees are close to 2ksat/VB now https://example.com/ 21178 413410 413410.431106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6469941389548 0 \N \N f 0 \N 0 221730617 0 f f \N \N \N \N 413410 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447455 2025-03-21 20:47:11.231 2025-03-29 22:39:50.519 \N Is the dollar a shitcoin?\n\nStablecoins are just fiat, typically dollar based. https://example.com/ 910 447348 447251.447267.447287.447348.447455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7656978426638 0 \N \N f 0 \N 0 76842714 0 f f \N \N \N \N 447251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435429 2025-03-12 17:08:55.795 2025-03-29 22:39:51.185 \N I agree with the trend up to 2000, but keeping the date range all the way back to 10,000 BCE gives a very skewed/hard-to-interpret perspective, imo. I'd prefer to see more recent history (e.g. the last ~500 years)\n\n![long-term-urban-population-region.png](https://m.stacker.news/11366)\n\nI'm also very curious about what has happened since the internet/broadband/mobile went mainstream (not captured by this chart which ends in 2000. And specifically if/how Covid had an impact starting in 2020.\n\nI think the most sensitive variable in predicting this trend well will be how successful/mainstream Apple Vision Pro and the like competitors are. https://example.com/ 15326 435216 434962.435216.435429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.6538035378747 0 \N \N f 0 \N 0 175877163 0 f f \N \N \N \N 434962 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447211 2025-03-21 17:36:38.12 2025-03-29 22:39:51.47 \N Like a warrant tamagotchi. https://example.com/ 19071 447122 446681.446863.446872.447122.447211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2710932477084 0 \N \N f 0 \N 0 104282431 0 f f \N \N \N \N 446681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307639 2024-11-25 09:16:41.818 2025-03-29 22:39:51.473 \N You can use them for loans\n\nAlice lends $26K to Bob (or 1 BTC which he immediately cashes out as $26k USD) and Bob puts up 2 BTC as collateral. Bob can take back his collateral at any time as long as he pays Alice 1.1 btc (you don't need an oracle for this part, you can do it with a combination of SIGHASH_ALL and ANYONE_CAN_PAY, both of which already exist in bitcoin). Alice can take Bob's collateral under two conditions: (1) the oracle says the price of bitcoin dropped by 50% or (2) Bob's collateral is still there after 1 year (because that means he didn't pay back his principle on time -- this second condition doesn't need an oracle either, we can do this part with a simple timelock).\n\nWith this loan model, the oracle's role is merely to report whether the price of bitcoin dropped by 50% at any time between when the loan's term began and 1 year later. An oracle could daily announce (1) today's price of bitcoin and (2) his or her intention to report such a drop (if it happens) any time between today and 1 year from today. In that case Alice and Bob don't even need to communicate with the oracle to do their loan. They can just use the fact that he or she starts a new "term" every day and use whatever one is coming up next. https://example.com/ 11609 307616 307616.307639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6670630235336 0 \N \N f 0 \N 0 99855926 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448492 2025-03-22 16:22:57.34 2025-03-29 22:39:51.475 \N This is perfectly valid approach and usually ensures your business stays under your full control.. and generally, small. Get cash flow positive in a sweet niche you enjoy and there's a lot of happiness and stress-free existence that flows from that.\n\nHowever, when your ideas and market and goals are MUCH bigger, it's better to travel in a group - more ideas, more connections, and more existing wheels to re-use rather than re-inventing/re-discovering everything alone.\n\nRaising capital can be a smart thing to do, but you want smart money not dumb money. Smart money brings expertise, ideas and connections. Dumb money sits quietly and offers no additional input/value. Both have their place but don't confuse the two.\n\nHard won perspectives.\n\nCongratulations @k00b on the raise - that shit is a lot of hard yards. https://example.com/ 18174 448463 448049.448463.448492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7748491874975 0 \N \N f 0 \N 0 7629660 0 f f \N \N \N \N 448049 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435561 2025-03-12 19:34:08.201 2025-03-29 22:39:51.703 \N Beautiful analysis, well-articulated. The sense of what it means to be a 'custodian' is going to permute in a million ways, using all the entities you listed already, and more that will be invented. The gradient of custodianship and sovereignty will be broad and complicated. There's no other way, and thinking it through is useful. https://example.com/ 17030 435377 435217.435377.435561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.42726391714869 0 \N \N f 0 \N 0 200877842 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-20 00:20:51.078 f \N \N \N 0 0 0 0 0 0 0 431212 2025-03-09 16:03:31.884 2025-03-29 22:39:50.52 \N It's an interesting way to think about it -- you may have heard of [Dunbar's number](https://en.wikipedia.org/wiki/Dunbar%27s_number) which is basically the limit number of people that you can keep good track of socially. People argue about what this exactly is, and what 'keep good track' means, but whatever, the point is there's a limit, and it has a lot to do with neural limitations in pre-frontal cortex (principally), and it's not that high, ~150 or so.\n\nI'm thinking about your "leaky bucket" analogy here -- when community gets beyond that size, there's kind of a "fuck it" effect, as investments in those social encounters won't pay off in the same way. A kind of social fiat without introducing money into the equation at all. But subject to some of the same limitations, maybe? Like, social life gets more fiat the bigger it gets ...\n\nNeed to ponder. Thanks for the prompt. Get some sleep, brother :) https://example.com/ 987 400872 400872.431212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.69288234154403 0 \N \N f 0 \N 0 156823464 0 f f \N \N \N \N 400872 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307286 2024-11-24 22:33:04.133 2025-03-29 22:39:51.474 \N `ᕦ(ò_óˇ)` Day 9 of exercising everyday before the saloon opens\n\n[Woke up because of a nightmare at 7AM.](https://stacker.news/items/264626) Was hard to get up at 8AM today. In fact, I got up at 9AM and realized it's too late to do the 1h30m walk up the hill where the local gun club is. They opened at 10AM. I could come later since they're open until 12PM but I didn't want to show up later. I was quite excited yesterday. And now I didn't want to show up at 10AM just to sleep longer? Nothing good ever came from ideas like that.\n\nSo I took the train at 9:30AM to the hill and then walked up the hill.\n\nI was then allowed to shoot some rounds with the air rifle, air pistol and .22 LR rounds:\n\n_air rifle on 10m_:\nhttps://imgprxy.stacker.news/W0S_KbvROANCaaD381J3XgizrvBiyeoptmFdUGd9I6Y/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvY0xzNzZ0bUYvc2lnbmFsLTIwMjMtMDktMjQtMTYxMzMyLTAwNS5qcGc\nhttps://imgprxy.stacker.news/jJo-CqorVRdu3uH6qeL9_xzr0R9_ZTOIB3egMsPuCxY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvSnpQTlg3WU0vc2lnbmFsLTIwMjMtMDktMjQtMTYxMzMyLTAwNC5qcGc\n\n_air pistol on 10m_:\nhttps://imgprxy.stacker.news/ZgD9OjxuQLpiWMQX5V50JgCqfU79Nhw7cZfUxyZVNSE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvbTIzTmJ5UWMvc2lnbmFsLTIwMjMtMDktMjQtMTYxMzMyLTAwMy5qcGc\n\n_the range for shooting .22 LR rounds:_\nhttps://imgprxy.stacker.news/YOP0Fv-u0Wl2zUL_MNNvJf7CNGhbfvWy2M3osGJxKeA/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvVkxQV1FWYlEvc2lnbmFsLTIwMjMtMDktMjQtMTYxMzMyLTAwNi5qcGc\n\n_.22 LR rounds on 25m_ (9/15 on target):\nhttps://imgprxy.stacker.news/UAkjxTwT1LSBgcDIdMwF5j1WBF7eXal8rickpENSU7k/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvV3B5YmhCd0Mvc2lnbmFsLTIwMjMtMDktMjQtMTYxMzMyLTAwMi5qcGc\n\nI also learned that at the beginning, it's more important to "group your rounds" than to hit the center: if you consistently hit the same spot, it's easy to hit any spot since you can adjust your sights accordingly - at least with the air rifle, not sure about other guns.\n\nAlso, I learned that in Germany, anyone over 18 is allowed to buy an air rifle. I thought our gun laws would be stricter.\n\nThe recoil from the .22 was also interesting. I never felt recoil before. Now I am looking forward to try out 9mm or 5.56x45mm. Maybe next time if I am allowed. When I showed up, I wasn't sure if I could fire any live ammunition.\n\nPaid 5€ for the expenses and walked at 12PM 7km back home. Got home quite late again, around 3PM. But I also stopped at a Subway to have some breakfast.\n\nI think I'll go to the calisthenics park tomorrow. My feet need some rest, haha https://example.com/ 21026 307258 307258.307286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6215793906272 0 \N \N f 0 \N 0 20425880 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307390 2024-11-25 00:46:39.026 2025-03-29 22:39:51.474 \N costco by far\n\nthey take anything back without questions asked\ncostco is only interested in keeping you as a member\ncostco has motivated employees because they are paid well\ntheir margins are the lowest in the industry\ncostco makes most of its profits with membership fees\n\nthey take cash\nif you pay cash, you get everything cheaper\nthe only thing i could wish for is the acceptance of real money\n\n https://example.com/ 16456 307387 307387.307390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.55806340045508 0 \N \N f 0 \N 0 33910114 0 f f \N \N \N \N 307387 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307419 2024-11-25 01:17:37.536 2025-03-29 22:39:51.475 \N The term "sovereign individual" is not only related to Bitcoin.\nBitcoin is just another tool for an individual in pursuing his sovereignty.\nJust by reading the book "Sovereign individual" it doesn't make you a sovereign individual. That book is just opening your mind, that life is not a statist life.\n\nBecame sovereign is a long battle, that almost never ends.\nBeing a sovereign individual is a continuous battle.\n\nYes, all those things mentioned are a MUST do, to make use of Bitcoin in its fully capacity.\n\nTo be sovereign you must fulfill the following:\n- food self sufficient or at least as much as you can not depending on central governments subsidies and acquire your needs from P2P trades with other peers.\n- energy self sufficient or at least as much as you can\n- shelter / house / land property. Property is the base of your freedom, where you declare your own sovereignty.\n- your own identity. Not governmental one, that doesn't represent you, it represent a dead body, the citizen. A citizen could NEVER be a sovereign individual. The citizen is the opposite of a sovereign individual.\n- you do not pay any tax for your labor. That's pure theft. And if you support it also you are not anymore a sovereign man. You can volunteer if you really want to participate in a local project.\n- [You know WHO YOU ARE](https://www.bitchute.com/playlist/ZStP8WUpFB3m/)\n- Don't have any DEBTS. Debt = SLAVERY. Be a wise man and do everything with a good contract. Respect your promises and live in honor. \n\nSimply don't make promises if you can't respect them. Why would you want a new big house if you know you can't afford it or pay back the loan? You are short of money? Simply don't spend too much.\n\nBitcoin is saving technology, it will help you to save your money and energy, for when you will need it most. So don't spend it on crappy useless things. Spend it wisely for things you really need them in that moment.\n\nDo you want to know how I became a sovereign individual?\nStart here:\n- [Learn how to live in the PRIVATE](https://livingintheprivate.blogspot.com)\n- [Natural Law - Freedom - Sovereignty](https://www.bitchute.com/channel/sovereignman/)\n- [⚡ Natural Law and ₿itcoin ⚡](https://darthcoin.substack.com/p/natural-law-and-bitcoin) https://example.com/ 1652 306232 306232.307419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6527577373118 0 \N \N f 0 \N 0 194955824 0 f f \N \N \N \N 306232 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415559 2025-02-24 21:38:21.421 2025-03-29 22:39:51.705 \N Congratulations on shipping territories! I know how hard and long you’ve been working on this. It’s fantastic to see! https://example.com/ 16229 415423 415012.415423.415559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5822976863858 0 \N \N f 0 \N 0 144241619 0 f f \N \N \N \N 415012 \N 0 0 \N \N f \N 2025-03-19 14:15:52.445 f \N \N \N 0 0 0 0 0 0 0 446963 2025-03-21 14:51:43.168 2025-03-29 22:39:52.196 \N You clearly haven’t done your homework buddy. Check the records of most sats spent on this site since it started and right in 15th place.\n\nMy post was to get help on what the scam actually was. I wasn’t asking the stackers for anything. Another stacker created that post to help. Which I even commented to give it to the rewards.\n\nI’m not here to stack sats. I am here for the community and to kick start the circular economy. \n\nAll the sats I get on this site I give to stackers or projects on geyser. \n\nSo before jumping to conclusions do some homework https://example.com/ 9353 446774 446774.446963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9922744401687 0 \N \N f 115917797 \N 1 209572759 0 f f \N \N \N \N 446774 \N 0 0 \N \N f \N 2025-03-28 11:49:58.507 f \N \N \N 0 0 0 0 1 0 0 433317 2025-03-11 00:21:29.158 2025-03-29 22:39:52.439 \N Very healthy numbers 📈\n![Visitors - healthy chart](https://m.stacker.news/11356)\n\nThen absolutely parabolic 🤣 (due to territories)\n![Sats Spent - parabolic chart](https://m.stacker.news/11354)\n\n https://example.com/ 21514 433114 433114.433317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.77108522340616 0 \N \N f 290804098 \N 2 166706800 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434783 2025-03-12 08:34:34.63 2025-03-29 22:39:51.182 \N For those who never heard about IVPN - we've been around since 2010, we are privacy activists and Bitcoiners.\n\nIVPN Light is an experiment in supporting Lightning adoption. It is admittedly not a novel concept, but it offers a unique combination of the following:\n- Short duration access option, you can get a “throwaway” VPN tunnel for 3 hours or up to 30 days duration\n- Priced in sats, not fiat, and it's quite affordable (500 sats for 3 hours)\n- Access to 5 exit locations or 1 MultiHop combination \n- Pay with BTC Lightning directly - no intermediaries \n- No account creation or PII needed\n\nWe look forward to your feedback and appreciate any ideas for improvement here or other channels:\nhttps://github.com/ivpn/ivpn.net \nhttps://www.ivpn.net/contactus/\n\nWe also have a "regular" VPN service supported by open-source apps: https://www.ivpn.net/\n\nIf you want to dig into our background and philosophy, I suggest starting here:\nhttps://tftc.io/tftc-podcast/392-resisting-online-surveillance-with/\nhttps://www.ivpn.net/ethics/\n https://example.com/ 14260 434782 434782.434783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0946842455921 0 \N \N f 0 \N 0 208818492 0 f f \N \N \N \N 434782 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435917 2025-03-13 05:26:19.33 2025-03-29 22:39:51.187 \N With your seed words. You can recover the wallet in Electrum for example.\nIn the moment your start recovering, it will close the trampoline channels you had in Phoenix app and funds will be in your onchain addresses.\nSomething like LND is doing with SCB file (LN channels static backups).\nBut I do not think Phoenix/ACINQ will disappear....\n\nAnyways, I would recommend to use the 3 levels stash for your BTC:\n1 - HODL = most of your BTC (higher amount) in a cold wallet, will be your "central bank"\n2 - CACHE = medium amount of BTC, in desktop, node wallets, will be your "commercial bank", where you do mostly the coin control and redistribution\n3 - SPEND = small amounts of BTC, in mobile wallets as Phoenix, enough for your daily spending, will be your "cash pockets".\n\nAs I described in this guide ["Be your own ban - think like a bank"](https://darthcoin.substack.com/p/bitcoin-be-your-own-bank-think-like) https://example.com/ 11829 435657 435657.435917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3549619181182 0 \N \N f 0 \N 0 246210991 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447202 2025-03-21 17:24:42.131 2025-03-29 22:39:51.47 \N So lucky we all are to now hear her story.\n\nWill definitely be **Running Bitcoin** on Jan 10th. Wherever I am, will do a half marathon that morning for Hal. https://example.com/ 726 447196 447184.447192.447196.447202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2742929336577 0 \N \N f 144792525 \N 1 110753066 0 f f \N \N \N \N 447184 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448821 2025-03-22 22:30:10.96 2025-03-29 22:39:51.473 \N Today I’m going to get up at 4:30 am (an hour from now). I’m going to go play the same game I’ve been playing for 42 years. The one where I give more then I get to someone who is less intelligent then me, and cares nothing for the ones he hurts and uses while playing the game. I’ll accomplish more then expected of me, and I’ll do it perfectly, because having a strong work ethic is important to me. Neither credit, appreciation, or honest compensation will be given to me for my hard work. I will go home feeling used, and question why it feels so wrong to live life this way, and I will wonder why so many people are ok with it, and never stand against it. Then I’ll explain to my family that the cost of living is just to high in comparison to what employers feel our family is worth, and apologize for giving all of our income away to the greedy, and explain that it’s better to have a roof over our heads then to be able to do anything fun as a family, and hope that maybe one day one the greedy who feel no guilt for playing the game might realize that I am worth more then a piece of paper, and much to intelligent to play along happily when I know it causes others to suffer. There is only right and wrong there is no In between. Have a blessed day everyone! https://example.com/ 21402 446942 446942.448821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9379494203784 0 \N \N f 0 \N 0 173734536 0 f f \N \N \N \N 446942 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307406 2024-11-25 01:02:30.494 2025-03-29 22:39:51.474 \N Remember when psychopathic toxic rude maximalists raised hell over Mara OFAC compliant blocks? https://example.com/ 1425 307258 307258.307406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.10172695191645 0 \N \N f 0 \N 0 227854128 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 446724 2025-03-21 12:41:36.544 2025-03-29 22:39:51.702 \N I haven't posted in the Stacker Saloon for a while now. I've been active in a few territories, more or less every day, but always trying to contribute to the community. \n\nWhen I started on the platform I immediately focused on stacking what I could, since it's the way I have to get SATs, you buy them when there's leftovers after buying food, so I have to earn them by working. My posts were focused on responding to posts made by other stackers. I started making posts in several territories, at first I was very worried about the SATs I was spending, but I still made the posts.\n\nLater I've learned that the most important thing is to focus on sharing quality posts with the community, regardless of how much I could spend or stack with that post.\n\nStacking SATs is necessary, we know they are scarce, but the quality of our work, whatever it may be, must prevail. I've learned, I'm reading more, studying more and sharing what I find interesting. That's what I've been doing these days. https://example.com/ 21599 446301 446301.446724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.58749049091591 0 \N \N f 0 \N 0 121632211 0 f f \N \N \N \N 446301 \N 0 0 \N \N f \N 2025-03-28 11:38:15.531 f \N \N \N 0 0 0 0 0 0 0 435684 2025-03-12 21:50:46.528 2025-03-29 22:39:51.705 \N v2 of my reply from https://stacker.news/items/347574/r/aljaz?commentId=348300\n- i've switched from chatgpt to claude, i still occasionally mix it up with chatgpt, specially for non-coding tasks\n- i started using perplexity, both for research and occasional data collection for something I'm building \n- I use [bolt.new](https://bolt.new) for building frontends (occasionally I expose backend somewhere publicly so i can have live backend in bolt.new when it develops frontend)\n- cursor is my main ide now, tho i'll occasionally use copilot instead of their llm integration just to see how it performs\n\nI run a tiny model locally for my [terminal llm](https://disobey.dev/accessing-llm-through-cli/) for quick "i forgot how this bash command should look exactly" lookups, I also have a cloud gpu that runs the same stack but better (slightly) gpu than my local instance so I can have the same setup when i'm away from my battlestation and just use ssh port forwarding to access ollama on my cloud gpu instance from my laptop\n\nI use to have access to A100 so I'd run larger models locally and use [open-webui](https://github.com/open-webui/open-webui), now i'm experimenting with tiny models like qwen2.5 0.5b or 3b https://example.com/ 7979 435649 435046.435135.435162.435214.435220.435235.435649.435684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.50442838945 0 \N \N f 0 \N 0 66571547 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:00:18.861 f \N \N \N 0 0 0 0 0 0 0 434841 2025-03-12 09:23:16.147 2025-03-29 22:39:51.183 \N HA! Wow does this resonate. \n\nI'm probably a decade younger than you, but my parents were Silent Generation (born during Great Depression). My moms first memory was seeing her mother warm up a cup milk over a candle in a no-electricity boarding house they lived in. \n\nLike many of that generation, they were big savers. Somehow (and I dont know how), they managed to save enough to fund a nice retirement including a home near a lake. Us kids were inculcated with their beliefs about money... we were constantly forced to think about "the value of X" - forced to do in-depth analysis of any potential purchase against a myriad of variables (do you really *need* that? can't you make do with X? is it better deal to purchase *this* instead? etc)\n\nMy lifestyle is a reflection of that. I'm driving a 20 yr old Toyota right now....have a iPhone 11, etc....even tho I have more than enough to enjoy all the latest and greatest. The fact remains that "saving / low time-preference" is so deeply built in me that I can't help but view the world in this way.\n\nI often think about the idea that for the past 40-50 years there has been a systemic bias against savers, as slow fiat collapse induced consumption.....I think about how the emergence of bitcoin being sort of a environmental change in which "savers" were suddenly rewarded. Almost as if it was natural counterbalance. A natural selection process of unwinding the current system into a new system. One in which people like us were uniquely prepared to engage....\n\n\n https://example.com/ 16406 434814 434814.434841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4152195913952 0 \N \N f 0 \N 0 129046732 0 f f \N \N \N \N 434814 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435782 2025-03-13 00:52:10.117 2025-03-29 22:39:51.187 \N The zen series returns. \n\nI am all about the zen series. \n\nI donate every day and believe I twisted a few arms with my last post about donating. https://example.com/ 4345 434990 434990.435782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.47682285052725 0 \N \N f 0 \N 0 162288622 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435789 2025-03-13 01:02:15.06 2025-03-29 22:39:51.187 \N My wife is a pretty active researcher when we need to buy appliances and other expensive household goods, so I don't pay a ton of attention to what we end up getting. \n\nThe one major miss was our coffee maker: it's an OXO, but I'm not sure what model. It clogs and overflows just often enough to be really annoying, but not often enough to buy a new one.\n\nAt some point I developed a heuristic of buying the median priced option whenever I have little specific knowledge about a product class (which is most of the time). My rationale is that the cheapest option is probably garbage that only sells because of it's price and the most expensive option probably has a bunch of qualities that I neither need nor care about. https://example.com/ 10398 435171 434795.435171.435789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3599653163802 0 \N \N f 55063167 \N 1 208150919 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435723 2025-03-12 22:40:15.68 2025-03-29 22:39:51.187 \N @kr\n\n> this is all happening despite the fact that everyone pays taxes to fund public education yet the homeschooling parents typically receive no compensation for their choice\n\nOne of the many reasons is the often poor quality of state education. As I say, there are ***many*** reasons but once the parent has come to the end of the road (as often happens) they simply don't care about receiving "compensation". \n\n> i wonder what these numbers would be if every family had the option to simply not pay a portion of their taxes if they chose to homeschool their kids.\n\nThat argument never holds water, as there are many services that taxes (apparently) pay for that many people do not use themselves and what about people who don't have any children - can they claim their portion of tax back for education they don't use? \n\nI don't think it would make too much difference because the the reasons for doing so are often philosophical or they are forced into it because their child(ren) is not thriving. So they will do it no matter what and make it work somehow. If you feel strongly enough to do that, you are not going to care if you get a few bucks from the government and if you're doing it because you'll get some $$ then it's not for the right reasons. You're doing it because you feel compelled to do it. Sure there might be some who would do when they couldn't otherwise afford it but it's unrealistic IMO as they're never going to be paying people the full wage that they lost. It's usually just a few hundred bucks per year which, granted, some home educators (who are doing it on a shoestring) will take. Then there are ones who never take anything from the govt.\n\nIn terms of being "sovereign" I don't think home educators should accept money from the state. That opens doors that will ultimately lead to unwarranted control and surveillance. If we ask for money from the government we are telling them that it is ***their*** job to educate ***our*** children. It is not, it is our job. Why should we receive "compensation" for raising our own children?\n[Here is a short article about accepting "free money".](https://sovereignhearts.substack.com/p/is-free-money-is-a-control-mechanism) https://example.com/ 18734 435392 435392.435723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8714752307525 0 \N \N f 0 \N 0 12255263 0 f f \N \N \N \N 435392 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447196 2025-03-21 17:19:46.871 2025-03-29 22:39:51.47 \N A view I've taken is that there's a difference between occasionally putting non-monetary data on the blockchain and regularly putting non-monetary data on the blockchain. Both are a bad idea *in general*, but the former has two unique properties: (1) it is (probably) impossible to stop and (2) there are (probably) exceptions to the general rule. E.g. I personally don't mind someone uploading the bible, because there's a higher rule: exceptional things deserve exceptional treatment. And I think the bible is an exceptional thing.\n\nThat said, regularly putting non-monetary data on the blockchain *is* possible to stop because regular activity produces detectable patterns that can be blocked via a soft fork. A good example is ord wallet's "envelopes," they all use the pattern OP_FALSE OP_IF OP_ENDIF, and a soft fork can invalidate transactions containing that pattern. If I can discourage regularly putting data on the blockchain by prohibiting this currently-popular method of doing so, then I want to do that, and as a bonus, it still leaves the door open for people to upload exception-worthy data in some other way. So that's my preferred solution. A soft fork.\n\n(I know, surprise surprise, Super wants a soft fork. Who'da thunk?) https://example.com/ 21833 447192 447184.447192.447196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5093495648289 0 \N \N f 861147599 \N 6 161058897 0 f f \N \N \N \N 447184 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436141 2025-03-13 10:50:54.44 2025-03-29 22:39:51.476 \N In the world of quantum physics, two particles can become entangled in such a way that the state of one instantly influences the state of another, no matter the distance between them. This phenomenon is so strange that Einstein referred to it as "spooky action at a distance." https://example.com/ 13406 436126 436028.436029.436031.436059.436065.436091.436126.436141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6196390416306 0 \N \N f 544952050 \N 6 66156382 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434953 2025-03-12 11:13:22.881 2025-03-29 22:39:51.184 \N > Thanks and trust me, you're not going to miss them :)\n\nGot it :)\n\nHere's what this prompted in me just now:\n\nI write fiction, but in recent times have been running into an issue where I get into the middle of a story and get ... bored by it. I realize that I'm just grinding it out to finish it in some plausible way, but whatever interested me enough to prompt starting it has gone.\n\nSo in the past ... week and a half, I've been doing this new thing, which an observer or a camera wouldn't notice, but when I'm in the middle of one of these slogs, I clear my mind and ask myself: what is _interesting_ about what's going on in this story? Even if it's not _in_ the story, but an implication, something happening off-stage, a random character I made up and referred to in passing, or even just something about where my mind wants to go. Is there any destination, given where things are, that I could orient to?\n\nSo far, two stories in with this method, it's helped. There has been, so far, a distant sound that I could start heading to, and then it's okay. Then I can keep going.\n\nI have no idea if that's interesting or any use to you, but just in case :) https://example.com/ 20756 434895 434317.434688.434895.434953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8540805561517 0 \N \N f 14959966 \N 1 97857252 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435387 2025-03-12 16:37:54.738 2025-03-29 22:39:51.185 \N It is until it isn't. \n\nIdeally businesses will be building less convenient solutions, storing servers and setting up businesses in more obscure locations. The West could be a big weakness for Lightning Network, in terms of infrastructure. Leading the way, but we can't always rely on rule of law in these jurisdictions to support the globe. As we have seen with exchanges and organisations like Paxful recently. More draconian regs are coming down the pipe with the Restrict act and other branches of it. It hasn't hit home that the very same laws extend to these platforms. It's going to force us to adopt non-custodial Lightning much much more. Starting 2024. https://example.com/ 5112 433194 432920.432980.432992.433032.433034.433041.433194.435387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3157418352691 0 \N \N f 143667033 \N 1 107395379 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1681 2022-09-22 12:00:18.235 2025-03-29 22:39:51.185 \N How I think about it\n\nSegwit transaction outputs are locked by a condition that looks like this 0x0014<20 byte-key-hash>. \nAn old node would look at that and interpret it as push an empty array on the stack, then push 20 bytes on the stack. There are no signature checks or anything. By it's rules, anybody could spend it, even by just putting 0x00 in the scriptSig of the input that spends the utxo.\nA post-segwit node would look at 0x0014<20 byte-key-hash> and see it as a template for a P2WPKH transaction and only verify it if it provided the correct pubkey and signature in the witness part of the transaction.\n\nLet's say you had a pre-segwit node and were running a separate program that looks for transaction outputs whose locking conditions are only data pushes and then spends them. After segwit, your program would not work because it would try to spend the outputs, but the rest of the network would say you need to have signature in the witness part of the transaction. https://example.com/ 997 1680 1656.1680.1681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2880837327966 0 \N \N f 0 \N 0 120976375 0 f f \N \N \N \N 1656 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435330 2025-03-12 15:44:13.381 2025-03-29 22:39:51.186 \N I'm staring to test more and more the app that our team is building and so far the experience has been amazing, I just used it yesterday to gift $10 each to my cousin and her husband who haven't really been exposed much to Bitcoin.\n\nThe first I asked was what action do they think they would like to experience in order for them to help them start getting an understanding of Bitcoin, they first wne with that they wanted it "save it" but then quickly changed their mind and asked how they could "spend it" so I onboarded them with the exprience of me sending them $10 via the app https://lgt.st then they claimed their sats and I onboarded them by downloading Wallet of Satoshi, withdrawing their sats and then setting up an account with https://paywithmoon.com so they could load up a virtual visa card with $10 and add it to their Apple Pay. Now they can go get a coffee or something with the sats that I sent them ✌🏼 Perfect way for them to make the connection that I just sent them $10 that never went through a bank or any entity and they immediatly received their funds and were able to turn that into a visa card they can go spend at a physical location.\n\nNow my task as well with our team we have to translate this whole onboarding experience into a self-onboarding guide within the app.\n![Paywithmoon](http://wespoke.co/wp-content/uploads/2022/10/IMG_A5D1242A7031-1_iphone13ministarlight_portrait.png)\n\nAnother thing I'm super excited about is that we're starting to creat a Scoreboard for the app to see other user's Orange Pilling orange 🍊💊 activity! I think this could spark a lot of interest with Bitcoiners, the cool thing about it is that since you can set an expiration date to the gift/tip if the user does not claim and withdraw their funds it's not a succesful conversion. Only if the user claims their funds and downloads a LN wallet on their own that would be considered a successful conversion.\n\nYou can check out the scoreboard here https://lgt.st/scoreboard\n![Lightsats Scoreboard](http://wespoke.co/wp-content/uploads/2022/10/IMG_7A3F96E9A9B8-1_iphone13ministarlight_portrait.png) https://example.com/ 1769 435325 434795.434798.435179.435194.435204.435239.435290.435325.435330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9634755563217 0 \N \N f 279449331 \N 3 66908296 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436389 2025-03-13 14:21:07.447 2025-03-29 22:39:51.187 \N i think the most efficient way might honestly be the direction it seems our governments are heading now. bitcoin historically has a usability problem. things have gotten much better very fast, but there is still alot of work to be done in that regard. most of the limitations are technological even if they are for good reasons. people tend to gravitate toward easier solutions; things that make their life simpler or more convenient. \n\nif it was me, i would accelerate an easier to use alternative and integrate it into our daily lives. most would say something like a CBDC which makes alot of sense. however, with twitter being so integral to many peoples' lives and this seems to be increasing and we already have contacts over there to help, i'd try to make this application that already has a giant network effect into an everything app. you can make payments super easy through it. just connect your bank account, like venmo, and boom! businesses can easily receive payments through it. integrate a pos system like square and bam! even better if we can then get people to pay for the privilege of this convenience. \n\nwhy use bitcoin when i can easily send my favorite creator tips in a currency i already understand through an app i already have that makes it quick and painless?\n\nnow i think we are on to something, but in an effort to minimize the headache of telling people where to find you, we should give it a super short name. something single letter but cool. maybe Q or Z? we can come up with something later, but i think this would work well. https://example.com/ 20922 436201 436201.436389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6053184096979 0 \N \N f 0 \N 0 6027302 0 f f \N \N \N \N 436201 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434529 2025-03-12 01:54:51.041 2025-03-29 22:39:51.188 \N Hello and Good Morning,\n\nIt is in the spirit of human templating that I apply to this auspicious position.\nAs a living, breathing, sniffing and often gesticulating example of humanity I hereby project myself into the light of Stacker News. Not too far into the light so as to become garish or appear egotistical, but just enough to suggest the forthrightness and certitude of an exemplary citizen.\nAs per the requirements of said position, I am by all means a tall sitter. I refrain from standing at all costs, mostly to maintain modesty with regard to my height. I find other office constituents somewhat lacking in their hauteur and making them feel at ease is paramount in projecting exemplary behaviour.\nI see the remaining requirements as clearly obvious and don't plan to address them, for the simple reason that I am truly over-qualified in each and every category - especially the "shhhhhhhhhhhushing", which I notice you mis-spelt and should have one more "s"!\nAddressing qualifications, it is essential to realize that I have integrated the meritocratic regret, upholstery and digit requirements. (Note: I think the toe and finger stipulation is well and truly a requirement and not a qualification but in the spirit of acquiescence (another qualification: "You don't need to be told what to do but love being told what to do") i intend to group them accordingly). \nLast year, whilst languishing in a middle class suburban prison, as prescribed by the WEF, I undertook an apprenticeship in upholstery. As our little shoe box only contains one chair, and a meager dog-eaten sofa, my range of projects quickly came to abrupt end - until I gazed one wintry afternoon at my inadequate collection of fingers and toes. \nNeedless to say, I typed this post within seconds and am simultaneously paying my Vietnamese pedicurist an exorbitant sum to have those little piggies look their best for this application!\nAs an exemplar, I am altruistic and as you'd expect am adverse to trivial compensation, as tempting as your generously extensive list appears. However, I must reveal my life-long wish to work from within a garage, surrounded by copious boxes of readily available Ivermectin. I cannot think of a more forthrightly virtuous pursuit.\nI look forward to your response but in the meantime I have pencils to sharpen.\n\n https://example.com/ 2722 434278 434278.434529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8688973103121 0 \N \N f 0 \N 0 68835265 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435459 2025-03-12 17:35:34.478 2025-03-29 22:39:51.185 \N I spent the last few years shifting my life from New England to Taiwan.\n\nMight sound odd move since Taiwan shows up as the "most dangerous place on Earth" on the front page of the Economist, and NE is considered developed. But Taiwanese society is the most functional one I know. 99.9% of all of the chips for mining ASICS are made here. It's fact that the hardest working, most punctual people in the world live in Asia.\n\nI think the biggest barrier is cultural integration. "Digital Nomads" tend to create their own third cultures in the communities the congregate in, like Portugal, or Bali. Heck even Bitcoin Beach is a culture unto itself. Today's "March Regions" tend not to be on the adjacent borders of superpowers. They're not like the southern alps during the renaissance where, ok maybe the French are in charge, maybe the Italians are, our languages are both romance and we're all catholic. The March regions are disparate. They're deep inside foreign spheres of influence. Check out nomadlist.com.\n\nUnless they're willing to do heavy cultural investment, most movers, even if they have the capacity for sovereignty, have to wait for that third culture to establish before they're comfortable making a move. Most people are followers. \n\nIt's a paradox in my view that the people that are most eligible for individual sovereignty still tend to stick to the cultures they're most familiar with despite the freedom to do otherwise. Europeans want to migrate to Canada 😆.\n\nIn my experience the most vocal sovereign individual types (looking at you free staters) tend to be the least tolerant to foreign cultural mores, nevermind adopting or integrating them into one's own life. https://example.com/ 671 435227 435227.435459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.36646792662948 0 \N \N f 0 \N 0 5203581 0 f f \N \N \N \N 435227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434520 2025-03-12 01:43:43.199 2025-03-29 22:39:51.188 \N I still do. If I'm 100% honest, it's even worse now. I feel a little burned out by my almost constant absorption in bitcoin for more than 5 years now. I need a little break, both from SN and from my own obsession. \n\nIt is incredibly hard to explain to family and friends why I'm not elated. When seeing post election headlines about bitcoin's price, people ask "what are you gonna buy?" or "what will you invest in next?" They look at it as if it's over. Time to cash out. It's like the game is over and I won. I understand that mindset. It's how I was too most of my life. I find it impossible to break through the fiat wall to genuinely reach new people. \n\nI can't say enough about this post:\n\nhttps://stacker.news/items/768791/r/siggy47\n\nI am completely rethinking my whole approach to talking to people about bitcoin.\n\n\nOne thing, though. I think that SN has better content now than ever. New accounts are popping up, but many are not new bitcoiners. The general level of discourse is better than ever, IMO. https://example.com/ 1209 434366 434278.434366.434520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.9858552138769 0 \N \N f 0 \N 0 108161746 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443448 2025-03-19 11:03:53.849 2025-03-29 22:39:51.466 \N Ooof... Huge protocol refactor changing Indra's dual key reply encryption scheme.\n\nBeen procrastinating about it for a few days now because it's a week or more long job. Just about to get started on it now.\n\nOh yeah, good I'm idly looking at other comments, yes, today I got a VPS organised, hosting out of an Almaty, Kazakhstan data center, we have got some idiotic KYC anti-fraud check going on with the registrar of indra.org so for now there will be soon a landing page, mattermost chat, and gitea and misc things, maybe a forum, at https://indra-labs.org I have to keep things in balance but the site will have something happening this week for sure. https://example.com/ 13587 440610 440610.443448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.40640195894662 0 \N \N f 0 \N 0 245997548 0 f f \N \N \N \N 440610 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435595 2025-03-12 20:02:58.283 2025-03-29 22:39:51.712 \N Hard to tell, Robots + AI could be it, maybe the computational power will overcome our best brains, and we might just become slaves, but I think that there will be a time where we will consider these robots entities with equal rights and we will work together even though they will do things we can't or won't but we will cooperate. Also an advantage of humans is impredictability, we can think outside of the box, adapt to all different conditions, the randomness of our genetics+environment gives us an edge against AI I think. https://example.com/ 10393 435314 435314.435595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7948328679567 0 \N \N f 0 \N 0 205015946 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:36.085 f \N \N \N 0 0 0 0 0 0 0 401754 2025-02-13 11:21:31.94 2025-03-29 22:39:52.195 \N That's done systematically and on purpose. Make people dumber, it is easier to sell BS you see on TV every day. Less and less people think for themselves, look at the "plandemic" numbers, if that doesn't tell you anything, I don't know what will. Critical thinking is gone with the wind.... sadly.\nWhat do to you might ask? I would home-school my kids if I had smaller children. Once again the nature tells us "You are on your own Buddy" You have to save yourself while you still can. https://example.com/ 16124 401703 401651.401660.401673.401703.401754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9142716293471 0 \N \N f 233954449 \N 2 41888815 0 f f \N \N \N \N 401651 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434867 2025-03-12 09:52:04.574 2025-03-29 22:39:52.195 \N Count me as a huge SN fan who is using nostr every day. I do think some type of integration would make sense. I am also an old but rarely contributing Minds member,, and I know Bill Ottman set up a nostr relay for that network. I don't know the technicalities, but that could be one path. https://example.com/ 2639 434827 434827.434867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.61029235198249 0 \N \N f 16619433 \N 1 20986283 0 f f \N \N \N \N 434827 \N 0 0 \N \N f \N 2025-03-19 03:14:16.361 f \N \N \N 0 0 0 0 1 0 0 443610 2025-03-19 12:41:00.622 2025-03-29 22:39:52.197 \N Very cool story, never heard of Vula before this, will have to look into it, it was definitely a chaotic time with a lot happening and it shows the importance of encrypted communications. \n\nFrom a personal take as a black South African, I would disagree with the idea that life of the average citizen hasn't improved since, yes there's still crazy levels of poverty and yes the ANC is a shit show and a lot of our public infrastructure has deteriorated since due to state corruption, but autonomy counts for a lot well at least it does for me\n\nThe currency is relatively better than any African nation, evident by how many other African countries citizens flock to our shores\n\nComparing life after we now get access to capital markets, we can own real estate without it being expropriated (as is the case with my family), we have freedom of movement (I remember as a kid being told by the police my black ass isn't welcome on a whites-only beach lol, that shit stays with you), we have access to education, can enter any field of study, and can start competitive businesses in the private sector \n\nI was born towards the end of apartheid, so I got to see the end of it I was in the "blacks only" schools and was one of the first kids to be thrown into the deep end of a mixed society and I got to see the life on the other side\n\nI think upward mobility has been limited by the actions of the government and made harder by the fiat system, and its set of incentives, but I still think in general I and many that I know are better off https://example.com/ 2724 443545 443545.443610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52821234510426 0 \N \N f 69459753 \N 1 4809249 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 2025-03-26 06:02:25.459 f \N \N \N 0 0 0 0 1 0 0 435423 2025-03-12 17:05:30.889 2025-03-29 22:39:51.185 \N It's good to think ahead. Consider the following landscape 5 years from now:\n\n- Your stack is worth twenty times more now.\n\n- Most exchanges have been hacked, KYC info and purchase history are out in the wild.\n\n- AI has become exceptionally good at mimicing voices and video footage, as well as pushing out anti-Bitcoin propaganda.\n\n- Fiat systems are in complete meltdown. Escape routes are banned, users are imprisoned.\n\n- The general public is /incredibly/ salty and hostile that Bitcoin is successful while their own savings have withered away to nothing. Especially the elderly.\n\n- Attacks on Bitcoiners are much more commonplace. In many cases they will be celebrated.\n\nNobody knows how things will pan out, but at least some of this has to happen eventually. Do you want to remain public in such an environment? Because if you are public now, you are public forever; the internet never forgets. https://example.com/ 5825 435422 435411.435418.435422.435423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.83583859090012 0 \N \N f 218096054 \N 1 72226035 0 f f \N \N \N \N 435411 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436652 2025-03-13 18:53:48.035 2025-03-29 22:39:51.464 \N For me it'll be playing bass guitar or messing with photography https://example.com/ 14225 436651 436651.436652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8668388006222 0 \N \N f 0 \N 0 101794434 0 f f \N \N \N \N 436651 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443445 2025-03-19 11:02:40.011 2025-03-29 22:39:51.466 \N Taking a step back and focusing on getting outside more often and experiencing the real world. Bitcoin is amazing but sometimes I need a break from looking at a screen all the time. https://example.com/ 5728 443235 442084.442600.443235.443445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.8473477692622 0 \N \N f 118509286 \N 1 151922114 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436617 2025-03-13 18:07:47.211 2025-03-29 22:39:51.467 \N I love finding parallel analogies between BTC and TCP/IP.\n\nThere are many areas in the USA that did not have access to high speed broadband until after 2020, many areas still do not have fiber infrastructure and use Starlink or 4G instead. It will take a similar scale of infrastructure building for a new payment system to go mainstream.\n\nEarly internet used HTTP for everything, sending passwords in cleartext over the wire. BTC hasn't had its HTTPS moment yet. Maybe something like confidential txns added to base layer, or coinjoin becoming economically cheaper than non-collaborative txns will be the HTTPS moment.\n\nScaling IPv4 required subnets on top of subnets, making P2P connections a NAT/firewall configuration nightmare. Scaling BTC's UTXOs requires layers on top of layers, makes self custody of small amounts a force-closed channel nightmare.\n\nI also like to draw parallels between the personal computer revolution and AI.\n\nComputers used to be room-sized mainframes. LLMs require entire datacenters to train and run. There's only a handful of flagship models and those models are trying to be as generalized as possible.\n\nComputers today are tiny and highly specialized. A toothbrush today might have a computer inside, it might not be a general computer, but its a highly specialized one that makes the toothbrushing experience better in some way.\n\nLikewise, AI models of the future might be running everywhere, not just in data centers. Highly specialized models integrated into tiny packages that make the tool better in some way. https://example.com/ 13587 436028 436028.436617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.72234889139691 0 \N \N f 0 \N 0 26038377 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307376 2024-11-25 00:27:06.413 2025-03-29 22:39:51.474 \N One of the comments on HN is on spot\n\n> I feel we're witnessing a resurgence of interest in 'nix default programs such as `sed` and `awk` in part because LLMs make it so much easier to get started in them, and because they really do exist everywhere you might look. (The fact they were designed to be performant in bygone decades and are super-performant now as a result is also nice!)\n\nI do use `shell` scripting much more than before as it is so easy to write it with the help of an LLM.\n\nSame with `regex` commands within `vim`.\n\nI used to use them a lot at some point, switched to python for a lot of little tasks, but now slowly getting back to those nex default programs. https://example.com/ 11144 307032 307032.307376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.19886932808173 0 \N \N f 0 \N 0 121827359 0 f f \N \N \N \N 307032 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448438 2025-03-22 15:48:36.214 2025-03-29 22:39:51.958 \N @k00b bring Saylor for AMA on SN\nBut don't let him to take all the sats :) https://example.com/ 4776 448415 448415.448438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.60086989009107 0 \N \N f 0 \N 0 202205402 0 f f \N \N \N \N 448415 \N 0 0 \N \N f \N 2025-03-29 09:07:06.24 f \N \N \N 0 0 0 0 0 0 0 403260 2025-02-14 16:01:20.329 2025-03-29 22:39:51.96 \N Do you need inbound liquidity for your LN nodes? If so, for which? https://example.com/ 20980 403240 403063.403213.403228.403237.403240.403260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.052960276595 0 \N \N f 110717546 \N 1 81339262 0 f f \N \N \N \N 403063 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435268 2025-03-12 15:10:13.522 2025-03-29 22:39:51.961 \N Lyn talks about money from a perspective of technological determinism: as if the fate of money were an inevitable consequence of its functional characteristics. A few years ago, my previous favorite btc intro was Boyapati's [Bullish Case for Bitcoin](https://vijayboyapati.medium.com/the-bullish-case-for-bitcoin-6ecc8bdecc1), which contains this chart:\n\nhttps://miro.medium.com/v2/resize:fit:720/format:webp/1*_63fojX4ZSQxWlLNR6brLQ.png\n\nAccording to the chart, btc is strictly better in almost every way than gold, and way better than fiat. It's not even close, right? And yet it's worth being mindful of what is _not_ included in this chart, and the implications of what _is_ included.\n\nFor example: a six month old child has the neural machinery to understand commodity money -- she knows that if I take your gold coin, you no longer have it, and if I put it behind my back, it's still there. However, there is no built-in machinery to process the curious "physics" of btc -- it is abstract, purely symbolic, and strange.\n\nThis is not a matter of 'education' or 'better ui', it's a statement about the innate difficulty of the concepts required to understand btc, which is a function of the built-in hardware we have available in our brains. Put another way:\n\n- scarce objects mediated by the physical universe: **easy**\n- scarce digital objects mediated by software and human convention: **harder**\n\nMy take is that a cognitive revolution is needed to make the underlying concepts graspable, and they may not be graspable to some people, ever. So, given all this, how comfortable are you with Lyn's "technological determinism" argument?\n\n https://example.com/ 12951 435242 435242.435268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.0591297209241 0 \N \N f 0 \N 0 56169401 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 2025-03-19 08:39:56.092 f \N \N \N 0 0 0 0 0 0 0 413699 2025-02-23 12:37:37.302 2025-03-29 22:39:52.196 \N I've been working on an lnurl-auth only mobile app, as part of the Legends of Lightning tournament. \n\nToday I got the app published on Appstore and Google Play. \n\nhttps://play.google.com/store/apps/details?id=com.getin\nhttps://apps.apple.com/app/get-in/id6444308828\n\nTry it out! Greatly appreciate any feedback 🙏⚡️ https://example.com/ 10013 413480 413480.413699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0257360971926 0 \N \N f 78536994 \N 1 140922295 0 f f \N \N \N \N 413480 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435476 2025-03-12 18:00:46.123 2025-03-29 22:39:51.186 \N SRI stands for Stratum Reference Implementation, and is meant to act as the building blocks for the Bitcoin mining infrastructure.\n\nNow imagine someone wants to write a sv2-enabled pool based on SRI. There are infinite different directions they could go, which I will try to summarize in two main ones:\n\n# leveraging low-level APIs\n\nRight now, SRI has implementation for `roles` crates, which do include a "demo" pool. But this is just a dummy project which only exists for the purpose of showcasing how to wire the low-level libraries together (e.g.: crates under `protocols`, `commons` and `utils`). This pool implementation is somewhat opinionated in regards to multiple factors, namely:\n- threading model\n- error handling\n- socket handling\n- coinbase management (very simplistic)\n- share accounting (basically non-existent)\n\nIf someone wants to leverage the low-level libs while writing a production-ready pool from scratch under a different architecture, that is already doable. We believe these low-level crate libs are relatively mature, which is why they are all set as `v1.0.0`.\n\nThis is also likely a path to most pools that already have some codebase, but only wish to integrate SV2 in a modular way. While SRI is a Rust codebase, it provides [FFIs](https://doc.rust-lang.org/rust-by-example/std_misc/ffi.html) to enable integration with other programing languages (e.g.: C, C++, Python). \n\n# leveraging high-level APIs\n\nPutting low-level libraries together implies heavy-lifting. That could be time-consuming and somewhat prohibitive to small teams. That is why it is also desirable that SRI provides high-level libraries with building blocks for `roles` implementations.\n\nThat way, if some small team wishes to implement a pool in a specific way, SRI would already provide some building blocks for that. These building blocks would be opinionated with regards to threading model, error handling, socket handling and any other general aspects of the software. The pool team could then implement their own opinionated strategiesfor coinbase management and share accounting, without necessarilty spending thousands of man-hours on wiring together the low-level APIs. https://example.com/ 16789 435472 435217.435471.435472.435476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2546023951021 0 \N \N f 0 \N 0 21149880 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435899 2025-03-13 04:42:04.093 2025-03-29 22:39:51.187 \N Day 18 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 4173 435669 435030.435141.435669.435899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7337817147316 0 \N \N f 324628963 \N 3 116732264 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434555 2025-03-12 02:48:04.143 2025-03-29 22:39:51.188 \N great question. In the last 15 years the game has changed a TON because of the data they can get off the baseball itself- sophisticated radar (trakman etc) has allowed front offices and scouts to get spin rate, launch angle, bat speed, foot speed and various acceleration and deceleration parameters for years...but when I would ask for my own performance data in 2009-2012 I was told "you don't need it, just throw your best stuff to the glove" \n\nI thought that was bullshit and had to use 3rd party data to try and help myself. \n\nOne thing I did, which was relatively innovative is I would use the analytics on pitch selection, spin, movement etc and move around the pitching mound, change styles etc to try and obfuscate the data. I figured out if I threw 10-15 pitches a game from different grips, arm angles etc then the opposing scouts would not be able to effectively communicate exactly how much my stuff moved because it would throw off all the averages. \n\nThis allowed me to pitch certain games against frequent opponents with a totally sharp advantage- for instance against Oakland- who I threw against really frequently. I completely ditched my changeup and cutter against them one game and instead threw 20 split fingered pitches which move totally differently. it screwed them up for 3-4 innings and gave me a huge tactical advantage. \n\ntoo many players are just throwers and don't understand that nuance. I was NOT as talented as Scherzer or Greinke but this was the type of thing all of the 'nerd' pitchers can do to give themselves an edge. Not everyone throws hard enough to ride 4 seamers at the letters and punch people out. \n\nMy goal was to lead the league in called strike 3's...zero chance they can hit a homer if they're confused and taking pitches! https://example.com/ 16276 434536 434536.434555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0040876726498 0 \N \N f 0 \N 0 84233567 0 f f \N \N \N \N 434536 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436707 2025-03-13 20:10:04.351 2025-03-29 22:39:51.465 \N Yes and no.\n\n1. Ignore what all media says about El Salvador situation. Just go there and live for a couple of weeks (or forever) and see how is it yourself.\n2. It was too early from the perspective of education. Those people were pushed too fast into a technology and system that practically they do not understand.\nSV gov together with that law it should also introduce a massive educational program for the people. They did nothing in this sense.\nI mean at least basic education for regular people, not macro economics and stuff like that. How to use BTC/LN, wallets, backup/restore, safety etc.\n3. Price is just a distraction, even for those poor people that their life depends on each sat. They should consider BTC in their wallet as "savings" and all the rest as "consuming". In this way they will learn how to save more money /energy for the future. Volatility is just a myth, used against BTC.\n\nI am in direct contact with some guys from SV and things are good and became easier every day. Is just a matter of time and education. You can't change a whole fiat system in 1month/year... takes time and most important: users education. https://example.com/ 17046 436514 436514.436707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.917268521215 0 \N \N f 0 \N 0 204383138 0 f f \N \N \N \N 436514 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443675 2025-03-19 13:10:46.502 2025-03-29 22:39:51.468 \N i love how they don't mention web3 in their release and instead say decentralized web.\n\nfor all the FUD that tether gets, their funding of Synonym and now this via HyperCore shows that they understand the true mission https://example.com/ 4768 443659 443545.443659.443675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.08289007159679 0 \N \N f 180533183 \N 1 216551787 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443551 2025-03-19 12:14:50.616 2025-03-29 22:39:51.469 \N Hey, we are following on the topic with @ek and some other guys\n\nIf anyone of you is interested in building a bitcoin native prediction market or help delphi develop, please comment or dm me somewhere. We're setting up small group to discuss technology and design, and to see if some working team can be formed around the project.\n\n@gunson @ek @Natalia @TonyGiorgio @elvismercury @siggy47 @carlosfandango @orthwyrm @TNStacker @MaxAWebster @grayruby @erict875 @BaronHoL @satoshiplanet @pillar @Krv @Undisciplined @nemo @WeAreAllSatoshi\n https://example.com/ 19484 443526 443187.443195.443200.443205.443526.443551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.66007408608642 0 \N \N f 0 \N 0 173089926 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448384 2025-03-22 15:21:00.971 2025-03-29 22:39:51.472 \N Nice to see you and @birdeye21 made the top 3 leaderboard again this week! https://example.com/ 2233 448331 448331.448384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3265141603622 0 \N \N f 0 \N 0 92273624 0 f f \N \N \N \N 448331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307329 2024-11-24 23:22:53.341 2025-03-29 22:39:51.474 \N Texas joined the union on a border dispute and was promised protection by the U. S. A.\n\nThe Feds have failed! https://example.com/ 17824 307258 307258.307329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3592978126009 0 \N \N f 0 \N 0 2657441 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448396 2025-03-22 15:26:28.804 2025-03-29 22:39:51.705 \N Thanks!\n\nOptions could be\n - System (inherit)\n - Light\n - Dark https://example.com/ 20799 448389 448349.448389.448396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2750256929978 0 \N \N f 0 \N 0 163711239 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 08:52:38.599 f \N \N \N 0 0 0 0 0 0 0 435362 2025-03-12 16:13:37.619 2025-03-29 22:39:51.186 \N I think the universe is teeming with life. I also know human intentions are not pure. Governments have been deceiving people since their inception. While you can find a seed of truth in most deceptions, it's distorted in order to manipulate the masses, remove more human rights and gain more power.\n\nI'm sure aliens exist. I'm not negating the fact they visited our planet. I also don't negate that the US government has intel on it. I completely mistrust the government being the messenger though. We just had a fake pandemic promoted by said governments, the money is failing, global tension is increasing and wars are on the rise. But you know what you should distract yourself with? Alines!!! Fuck outta here...\n\nI don't care about the government telling me aliens exist. I'm convinced they do. I'm worried about how will governments manipulate the masses with this information. To me this all seems staged and a psyop. https://example.com/ 21072 435361 435357.435361.435362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.37201386634452 0 \N \N f 0 \N 0 30573782 0 f f \N \N \N \N 435357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435773 2025-03-13 00:29:45.011 2025-03-29 22:39:51.187 \N An obvious example-a Twitter tweet. The original character limitation really changed communication, although I'm not sure whether it was an advancement or not. It helped to spawn the low attention span world we live in, and probably inspired the 30 second video limit on snapchat. https://example.com/ 20979 435627 434278.434318.434515.435627.435773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7563374297432 0 \N \N f 0 \N 0 148387865 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434530 2025-03-12 01:56:02.581 2025-03-29 22:39:51.188 \N Seriously dude, why are you living your life constrained by labels? Get to a point where you give zero f..ks. You can still be civil and polite but at the same time you don't have to apologise for your opinion. If you treat people with kindness and let them get on with whatever bullshit things they decide to do with their lives, you have nothing to fear and you go to bed every night knowing you have been kind. You live in your truth and are content with that. I do know what you mean, though, about getting a bit toxic. As I start to not give a f.k the abrasiveness can start to creep in, so it's an ongoing work in progress for me. \n\nI used to try to "pill" people to whatever it was I felt passionate about. Now I just state my opinion and if people think I'm talking BS I think okay whatever. Who I am to try to convince them?\n\nDo you have kids? That's actually a great learning curve. You try raise them and best you can an equip them with the tools of life and one day they walk out the door and take no notice of you. Man, it's hard watching and knowing they are making huge mistakes and are they're going to feel max pain from their decisions but there's nothing you can do about it. We all have to make their own mistakes and fail lots to be able to learn. \n\nBut back to the labels... I have had involvement in many different movements, communities etc... and I flippin hate labels. They come with a set of rules in terms of what you can and can't, should and shouldn't do etc. People start to behave like they're in a cult or something and come up with catchphrases and motos. Whilst sometimes that can foster a team spirit, it can start become very toxic. It's often a slow creep I was raised in a culty religion, so I have a massive aversion to all that sh!t and recognise it in an instant. And it's everywhere! F..k that! We're free, sovereign individuals to be who we are and do as we please, aren't we?\n\nbtw are we allowed uncensored swearing on SN? I have just bleeped out my swearing but don't know if I need to XD https://example.com/ 738 434404 434278.434404.434530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1953215169394 0 \N \N f 0 \N 0 96254909 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454409 2025-03-26 11:53:58.091 2025-03-29 22:39:51.462 \N his older stuff is great, he was an important voice when he came into the limelight in 2017. He still is a somewhat important voice, but lately it feels like he's been degrading. his take on anonymous accounts being separated from KYC accounts on twitter feels like a butthurt 4th grader's take on the issue, his understanding of perception of the internet in general kinda sucks ass. https://example.com/ 21379 454236 454203.454236.454409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9093859894953 0 \N \N f 376636548 \N 2 96575221 0 f f \N \N \N \N 454203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436588 2025-03-13 17:25:46.032 2025-03-29 22:39:51.466 \N If anyone is looking for motivation, I was excited to see this post after learning[^1]:\n\n> The passive index fund industry is dominated by BlackRock, Vanguard, and State Street, which we call the “Big Three.” We comprehensively map the ownership of the Big Three in the United States and find that together **they constitute the largest shareholder in ***88 percent*** of the S&P 500 firms**. In contrast to active funds, the Big Three hold relatively illiquid and permanent ownership positions. This has led to opposing views on incentives and possibilities to actively exert shareholder power. \n\n[^1]: [Hidden power of the Big Three? Passive index funds, re-concentration of corporate ownership, and new financial risk](https://www.cambridge.org/core/journals/business-and-politics/article/hidden-power-of-the-big-three-passive-index-funds-reconcentration-of-corporate-ownership-and-new-financial-risk/30AD689509AAD62F5B677E916C28C4B6) https://example.com/ 21042 436585 436585.436588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93816977477606 0 \N \N f 0 \N 0 165098374 0 f f \N \N \N \N 436585 \N 0 0 \N \N f \N 2025-03-20 11:09:50.798 f \N \N \N 0 0 0 0 0 0 0 448425 2025-03-22 15:42:14.412 2025-03-29 22:39:51.472 \N Great question - I can't say the needle has moved much for (non-bitcoin) businesses just yet, although I can feel it shifting when it comes to investors. It's still a bit early for businesses and I'm going to re-paste something I shared on another post that explains what that dialogue often sounds like and what we're doing to hopefully start addressing it!\n\nToday, jumping straight to bitcoin is too big of a leap for the vast majority of businesses - I can give the best sales pitch in the world of why they should integrate bitcoin rewards (new customer acquisition, etc.), but they'll inevitably ask "well what about my existing customer base?" -- the answer of course is that maybe 10-20% of them would opt-in. At that point the business says well why bother.\nSo they need a way to increase that %. One way to do this is with branded (fungible) loyalty tokens that look and feel much more like a normal loyalty point to consumers (plus no business wants to willingly sacrifice the branding attached to their loyalty program). You can still back those assets with BTC, but it's packaged in a more accessible-looking vessel. Another thing you could do is back it with stablecoins instead of BTC - I know that sounds cringe to us, but now you've really removed every objection a business might have. If many businesses do this, it also gives consumers the ability to much more easily exchange these different forms of value vs. what they have today. And of course they can always convert into sats, and at least you've gotten people onto the network from which they can easily do that. https://example.com/ 763 448349 448349.448425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.58528340395621 0 \N \N f 0 \N 0 241421348 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435884 2025-03-13 04:19:34.832 2025-03-29 22:39:51.187 \N The new anon posting seems to lead to a bunch of 21 and 100 sat payments routed through my lightning node. Nice to see! https://example.com/ 3213 349 349.435884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2691067641831 0 \N \N f 0 \N 0 94089513 0 f f \N \N \N \N 349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436482 2025-03-13 15:26:03.546 2025-03-29 22:39:51.465 \N the sports betting part is what @kr mentioned in a previous post: https://stacker.news/items/212283\n\nI'll try to come up with a very simple solution first (only for the 100k bitcoin price bet) and then see how I can evolve [the website](https://delphi.market) for more uses cases.\n\nIt won't be a real prediction market for a long time probably. More just a simple betting site to get something going.\n\nAlso, don't get your hopes up high for anything sophisticated, lol. For example, I intend to just use a simple custodial model for escrow. I'll mention something like this in the FAQ:\n\n> Q: Why should I trust you?\n> A: You shouldn't. Only deposit what you can afford to lose. https://example.com/ 13599 436331 436331.436482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.61501430739451 0 \N \N f 0 \N 0 196107319 0 f f \N \N \N \N 436331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448380 2025-03-22 15:18:20.996 2025-03-29 22:39:51.471 \N Great question! According to [GlassNode's HODL Waves chart](https://studio.glassnode.com/metrics?a=BTC&m=supply.HodlWaves) we're at ~15% of the current supply dormant for more than 10 years. My own belief is that approx 20% of the current supply has already been lost (inclusive of the 15% dormant today for more than 10 years), so I'll conjecture that 20-25% of the supply in 10 years will have been dormant for more than a decade. https://example.com/ 9418 448145 448015.448047.448135.448145.448380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3742393076421 0 \N \N f 0 \N 0 59663390 0 f f \N \N \N \N 448015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436139 2025-03-13 10:49:30.493 2025-03-29 22:39:51.475 \N This would fit nicely in alongside a "this post/comment was referenced in" feature as suggested [on gh](https://github.com/stackernews/stacker.news/issues/667). https://example.com/ 20523 436020 435944.435979.436012.436020.436139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2370780265186 0 \N \N f 239740176 \N 1 137481918 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434989 2025-03-12 11:43:31.685 2025-03-29 22:39:51.96 \N All my life I had pets. Dogs, cats and other domestic animals.\n\nWhat I learned?\n\n1. When you are young, kid with pets, is just fun, but also you learn to be responsible for them. Is good that if you want to educate well your kids, give them the responsibility to take care of them. Not just for playing ! Will teach the kids more than you can imagine. Animals are really smart and can relate very well with kids. And they can heal wounds also... not just physical wounds.\n2. As adult, is a very good companion. All the time. I could say that is even better than wife/husband because they cannot talk to you and especially scream to you or molesting you. They just want food from you and give you unconditional love.\n3. In time, you will learn to talk with them. Based on their personality and habits, you will learn how to communicate with them or interpret what they want to say to you. That will create a big bond between you and them. But be careful, this bond have its reverse: the departure from a loved pet will be much painful than you think.\n4. They always came back to you. I had many pets that died. And I am telling sincere with the hand on my heart: they came back to me, in form of another pet. I felt that, not just once but 3 times. Especially cats. That gives you more comfort and peace.\n5. Cats especially, are bad energy eaters and giving back the good energy, re-filling your body. How many times you get home tired after work and just sit and immediately a cat jump on your legs and start snoring and sleeping? That means is detecting the bad energy (tiredness) and the "feed" from it, giving you back that "puurrrr" vibration. That vibration is very important for your blood pressure. Try keeping that cat purring close to your heart. You will see that in few minutes you feel much better. Then they will just leave you when they feel that the bad energy from you is gone.\n6. Play with them all the time! Do not escape any opportunity. Is keeping them healthy and intelligent and also is disconnecting you from any bad thoughts, worries etc.\n\nWhat should I say more?\nWho doesn't have a pet, doesn't have a good heart and soul.\n[![I-have-spoken.gif](https://imgprxy.stacker.news/T2IKUqSARdG05nLWDpDiLKNYFE1pt7pJrs3C-sei8UE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvdDdHakNXblMvSS1oYXZlLXNwb2tlbi5naWY)](https://postimg.cc/bSgMmGTk) https://example.com/ 10112 434440 434440.434989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6783176526419 0 \N \N f 0 \N 0 71412052 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 2025-03-19 05:31:02.739 f \N \N \N 0 0 0 0 0 0 0 414474 2025-02-24 00:21:35.596 2025-03-29 22:39:51.961 \N I'll try to be better about sharing great posts onto nostr. I always zap and repost them when I see them, but I haven't been taking it upon myself to share them. https://example.com/ 886 414385 414385.414474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.10768945792612 0 \N \N f 156800787 \N 1 29007901 0 f f \N \N \N \N 414385 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456607 2025-03-27 17:41:24.21 2025-03-29 22:39:51.961 \N I was thinking more indirectly but thanks for clearing up the direct impact. Although territory revenue like you said will still be paid in sats. Individual posts within the territory (my posts specifically) could be zapped entirely of CCs which is effectively a loss when compared to sat usage. \n\nSpecifically thinking about ~Music most of the posts in the territory are my content, getting territory revenue is one thing but CCs would negate the individual content posts income. However minor that is, is still relied heavily upon to foot the territory bills.\n\nI do understand that territory fees can be paid in CCs which is great, but if we're getting a mixture of sats and CCs as payment for our content or value for our value, then are we able to pay the bill with a mixture aswell? Eg half sats half CCs?\n\n\nI find the idea of sats zapped to non walleted users going direct to rewards and interesting one. Maybe in order to negate the need for CCs it may be necessary. But could you implement an automated message such as, "you've been zapped but there's no attached wallet to send them to, your sats have been sent to the rewards pool. Please attach an external wallet to send and receive sats" then maybe link a post on how to?\nIt is a big hurdle yes but with prompts and help, maybe it's one that can be overcome.\n\nAppreciate your thoughts k00b 👊 https://example.com/ 21485 456574 456560.456570.456574.456607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0204384457355 0 \N \N f 212327968 \N 1 20280348 0 f f \N \N \N \N 456560 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443338 2025-03-19 09:16:40.096 2025-03-29 22:39:51.962 \N It's so true, I feel the same way about social media, and with search just either pushing the highest bidder or the site that is monetised through Google display it really is all curated for maximum profit and minimum utility and enjoyment \n\nthose that get enjoyment from the current social media apps are all about consumption, they don't really care too much about the content, but rather the act of consuming and passing time is all that they are there for.\n\nI find my internet use has dropped considerably, I don't want to contribute to those sites any longer, I don't want to hear people tell me about the latest tiktok video or trend, its so mundane\n\nBut like the author says, the internet is what you make of it, switch your search engine, fuck around on nostr and curate your own experience https://example.com/ 1488 443336 443295.443336.443338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6174740257362 0 \N \N f 509100698 \N 3 34835193 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 04:12:05.064 f \N \N \N 0 0 0 0 1 0 0 443586 2025-03-19 12:30:26.069 2025-03-29 22:39:52.194 \N How often are you commenting Matt? If not very often, how do expect SN to look the way you want it?\n https://example.com/ 21577 443399 443399.443586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4620362437651 0 \N \N f 219664406 \N 1 155906009 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 2025-03-26 05:50:22.479 f \N \N \N 0 0 0 0 1 0 0 436653 2025-03-13 18:53:53.183 2025-03-29 22:39:51.464 \N First, I discovered Ron Paul, then through him Ayn Rand and Objectivism, then Bitcoin. So by the time I discovered Bitcoin, I was primed. In fact, I had been stacking gold from 2010-2015. I become obsessed with Ayn Rand and Objectivist philosophy. I have read everything she ever wrote, including fiction, non-fiction, even her personal journal. I think she is one of the most misunderstood figures in modern history and will (eventually) be remembered as providing the philosophic cornerstone for the next and most prosperous era of humanity's history. https://example.com/ 11038 436545 436093.436303.436519.436538.436545.436653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3791948854331 0 \N \N f 0 \N 0 116772919 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443754 2025-03-19 13:58:24.988 2025-03-29 22:39:51.468 \N There was a seminal paper describing public key cryptography. It was pre-internet. He was at MIT copied and mailed to different CS researchers in the 1970s. He realized how astoundingly important it was for all of mankind and he was really adamant about the government not squelching or classifying it, or someone patenting all of it (he did not become part of RSA). (interestingly, the oz govt coming in and making Assange's CS work classified without his permission is one of the reasons he created wikileaks) It led to bitcoin and many other things. I don't recall his name but it is in one of the Bitcoin documentaries. \n\nWithout such visionaries and pioneers, we'd all be using ISDN 128k and text terminals. https://example.com/ 20623 443617 443617.443754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2017962055877 0 \N \N f 0 \N 0 205903684 0 f f \N \N \N \N 443617 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448420 2025-03-22 15:40:56.167 2025-03-29 22:39:51.472 \N LOL guys no need to zap my joke meme.\nDamn it now I really have to take these real sats and go to the bar to drink a beer.\nCheers to you guys! https://example.com/ 20481 448349 448349.448420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0726578742897 0 \N \N f 0 \N 0 175239091 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443420 2025-03-19 10:45:33.802 2025-03-29 22:39:51.472 \N I'll try to be as sincere as I can, since I haven't given it much thought. I probably should have. \nI definitely see territories as an investment. When I first discovered SN almost two years ago I read about the beginning of the project. There was a venture capital raise. I wished I would have been able to invest at the beginning. So, when territories were announced, I wanted in. I wanted a chance to invest in Stacker News. I knew the territories would not be profitable at the beginning, but I did want, and expect, to eventually earn sats on two of them:\nBooksandarticles and bitcoin beginners. \n\n I hoped, and still hope, to earn enough sats from them to support the third territory, dogs and cats. I never really saw that as a way to earn sats. I wanted that as a way to aid bitcoin adoption. It may seem stupid, but I just have an image of older, crazy cat ladies posting cat memes and trading photos with each other using sats as their money, even if they don't fully understand what sats are. I know it's crazy, and a long shot, but it might happen. https://example.com/ 880 442319 442319.443420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.93555586127148 0 \N \N f 0 \N 0 124554917 0 f f \N \N \N \N 442319 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307359 2024-11-25 00:04:52.846 2025-03-29 22:39:51.474 \N Shitcoins will never go away. They will always be a poor investment and will lose out to Bitcoin in the long term, but they will be around. \n\nCreating a shitcoin is very profitable (for the issuer) and the cost of producing them is essentially zero. Anyone who maintains a strong network effect has the power to issue a shitcoin that will succeed in the near- to mid-term. Apple, Twitter, FB, anyone who produces a popular video game, etc. \n\nWhatever activity can be done profitably will be done. If no one has said that before, let's call it Mudblood's Law. \n\nNone of this is meant as a justification, just a prediction. https://example.com/ 848 307258 307258.307359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.65102302785031 0 \N \N f 0 \N 0 191665947 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436291 2025-03-13 12:58:45.94 2025-03-29 22:39:51.703 \N i blame my punk music upbringing on why i gravitated towards bitcoin. https://example.com/ 683 436247 436151.436247.436291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.83465784238879 0 \N \N f 0 \N 0 120031462 0 f f \N \N \N \N 436151 \N 0 0 \N \N f \N 2025-03-20 06:20:13.306 f \N \N \N 0 0 0 0 0 0 0 448795 2025-03-22 21:51:23.47 2025-03-29 22:39:51.705 \N I find it unpleasant when people do things and then throw them in their faces, but oh well. I sent you the 1000 sats, sir.\n![](https://m.stacker.news/66891)\n![](https://m.stacker.news/66890)\n\n\n\n https://example.com/ 678 448279 445953.445964.446055.446086.448274.448279.448795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1913801412813 0 \N \N f 0 \N 0 133588199 0 f f \N \N \N \N 445953 \N 0 0 \N \N f \N 2025-03-29 15:09:15.689 f \N \N \N 0 0 0 0 0 0 0 435406 2025-03-12 16:51:00.956 2025-03-29 22:39:51.956 \N Bye bye hosted SN Wallet! All zaps will now come from my node! 😎 https://example.com/ 675 435242 435242.435406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8888421914597 0 \N \N f 0 \N 0 175263007 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 2025-03-20 01:05:34.685 f \N \N \N 0 0 0 0 0 0 0 447234 2025-03-21 17:54:00.367 2025-03-29 22:39:51.957 \N I think you're on the right path with the 2x2 chart, but I'm not sure if it can be simplified so easily. I personally believe that technology is always going to propel us forward (acceleration) and the way society reacts to the changing technology is either going to be progressive or conservative (depending on how the particular technology effects the population).\n\n https://example.com/ 17365 447121 447121.447234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6229689136484 0 \N \N f 0 \N 0 207687082 0 f f \N \N \N \N 447121 \N 0 0 \N \N f \N 2025-03-28 11:20:06.796 f \N \N \N 0 0 0 0 0 0 0 436447 2025-03-13 15:07:02.384 2025-03-29 22:39:51.467 \N The problem with Eltoo is that removing punishment has serious risks in untrusted environments. Your counterparty can steal a _lot_ of money if they manage to get a revoked state mined, up to almost the entire balance of the channel.\n\nWith Eltoo, the only disincentive to attempting a theft is transaction fees. Which, if you want to close a channel anyway, isn't necessarily much of a disincentive. The attempt might not succeed. But even a 5% chance of stealing a lot of money can make it worth it if there is no downside to trying.\n\nEltoo is probably ok for more trusted environments, eg between parties that know each other, where an attempt at theft can be discouraged with out of band punishment. But the fact that it has this massive potential problem in the quite common case of untrusted channels has discouraged interest into it.\n\nIncidentally, there are other use-cases for APO too. I personally have proposed them for HTLC transactions to make RBF work better: https://petertodd.org/2023/v3-transactions-review#htlcs-and-replace-by-fee\n\nBut not a lot of work has been done examining those use cases in detail. https://example.com/ 20680 436363 436363.436447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7460408306839 0 \N \N f 0 \N 0 190451595 0 f f \N \N \N \N 436363 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307304 2024-11-24 22:55:17.311 2025-03-29 22:39:51.471 \N Both. Start with a lump sum and then DCA daily. During the bear market double or triple your DCA. https://example.com/ 19189 307262 307258.307262.307304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3292459009907 0 \N \N f 0 \N 0 146215484 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435493 2025-03-12 18:26:48.639 2025-03-29 22:39:51.71 \N another interesting aspect in this is that LN may not only capture small payments but also payments by small shops, niche industries (like adult entertainment) and all kinds of cross-boarder payments. That's because all these businesses are often excluded from tradfi payment rails because nobody wants to be an acquirer for them because they are too risky or too small. Even if LN had fees that are not too far away from Visa & Co., it still has the advantage of being entirely debit based, so no need to check any credit-worthiness or bank account, so the cost of processing payments of "riskier" industries is not higher than usual in LN https://example.com/ 9261 429301 429301.435493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.12821202165529 0 \N \N f 0 \N 0 50353185 0 f f \N \N \N \N 429301 \N 0 0 \N \N f \N 2025-03-19 12:46:27.2 f \N \N \N 0 0 0 0 0 0 0 436478 2025-03-13 15:24:46.397 2025-03-29 22:39:51.713 \N Thanks for describing your muting criteria, I've been thinking about this since the feature was released. Given how contagious culture is, I mute rudeness, condescension, bullying, and abuse. It's the opposite of the community I want to be a part of and I have no patience for it. One Twitter is enough.\n\nAfter a number of exposures, I eventually mute people whose signal-to-noise ratio is super low. If I know exactly what you're going to say, it's a waste of my attention to see the millionth version of the same thing. (This is the reason I hardly ever listen to btc podcasts anymore. Most of them have had nothing new to say since 2020.)\n\nFrom time to time I reveal a "someone you muted" post, as @carlosfandango mentioned, to see if the person deserves another chance. So far, nope. https://example.com/ 711 436368 436241.436368.436478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.0001387219516 0 \N \N f 0 \N 0 114006539 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 12:28:01.201 f \N \N \N 0 0 0 0 0 0 0 434574 2025-03-12 03:17:52.737 2025-03-29 22:39:51.713 \N Can't remember the name, but on a podcast a month or two ago, there were 3 or 4 guys talking about how much they'd learned from their grandfathers - not their fathers. One guy even remarked that it was interesting that their fathers appeared to have had less of an influence/impact on their values, lives, upbringing, etc. than their granddads did.\n\nSince I never got to meet my grandfathers, I was wondering how typical such an experience (perception?) may be.\n\nWhat did you learn from _**your**_ grandparents that your parents didn't necessarily care too much about? https://example.com/ 6148 434367 433679.433956.433967.434367.434574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3195381335464 0 \N \N f 0 \N 0 9925973 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 2025-03-19 18:16:39.632 f \N \N \N 0 0 0 0 0 0 0 435674 2025-03-12 21:42:47.021 2025-03-29 22:39:51.961 \N To be honest, biometric authentication isn't a bad idea for something like a lightning wallet. Bluewallet hooks into android's biometric system, for example.\n\nThe purpose of biometrics isn't really to provide a highly secure environment, its for convenience. If there were a shortcoming, it would be the false sense of security it affords. As long as people understand its not much more secure than the Schlage lock on the front of their house ([que the Lock Picking Lawyer](https://www.youtube.com/watch?v=ZCbb8ZfHsog))\n\nAs we all know, the best security is combining something you have with something you know. But in the case of standing outside in -40 degree weather and in the blinding sun, you don't want to be messing around with 12 character passwords and yubi-keys every time you need fill your tank.\n\nThere is, of course, a fallacy with regard to biometrics. Its not really something you have, and its certainly not something you know. Anyone with a camera or a duster and some technology can fake your irises or fingerprints. Sure, fingerprint sensors have improved over time and are harder to fake than the original 1960's optical-only prism based ones, but nonetheless you leave your fingerprints literally everywhere you go.\n\nLets be realistic here, a hardware wallet regardless of its access-control safegards, is yet another false sense of security. Everything can be hacked, and absent actual encryption with a symmetric key that is separate from the device (like a password), there will always be a way to draw out the secret information contained within.\n\nThe primary use-case for a biometric hardware wallet is either to impress your friends (you shouldn't be flashing anything with a whole bitcoin on it in front of your friends), or to have a way of carrying around some spending-bitcoin with you but keep it separate from your phone. In short, it would serve as a single-app smartphone for crypto transactions, and you can do that with your old iPhone. https://example.com/ 861 435667 435667.435674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31548325619713 0 \N \N f 0 \N 0 145275080 0 f f \N \N \N \N 435667 \N 0 0 \N \N f \N 2025-03-19 19:42:37.7 f \N \N \N 0 0 0 0 0 0 0 442562 2025-03-18 16:40:20.36 2025-03-29 22:39:51.963 \N yeah it should ideally count nested replies, or perhaps cost more if you reply to yourself. Still occasionally getting tricked into threads with one poster nesting 5 comments https://example.com/ 10102 442558 439263.442558.442562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6965189005391 0 \N \N f 212731884 \N 2 3905847 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458295 2025-03-29 07:13:35.25 2025-03-29 22:39:52.194 \N Yes, Matrix Federation with your own homeserver and its bridge feature (I haven't used that yet) makes it top notch for private, sovereign, "almost" anonymous communication. https://example.com/ 3729 458289 458289.458295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5770033687521 0 \N \N f 237907246 \N 1 123910140 0 f f \N \N \N \N 458289 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455324 2025-03-26 23:07:08.174 2025-03-29 22:39:52.195 \N I have this book on my shelf called "The Dictators Handbook". I feel like the UN has read that book...\n\nFrom the UN: "For those who depend on the availability of cheap labour, hunger is the foundation of their wealth."\n\nFrom "The Dictators Handbook": "Hungry people are not likely to have the energy to overthrow you, so don't worry about them." https://example.com/ 16966 455298 454863.454877.455274.455298.455324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9482419238351 0 \N \N f 236156910 \N 1 204775521 0 f f \N \N \N \N 454863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448431 2025-03-22 15:46:45.85 2025-03-29 22:39:51.472 \N Great question. If "fate" here means ultimately fading away vs. Bitcoin, I hope they eventually do! I just see them as an important interim stepping stone to that future state whether it's via supporting stablecoins on Lightning or other use cases that can serve as additional ways by which people stumble their way onto the Bitcoin network (vs. getting bogged down elsewhere).\n\nI'm repasting below something I shared in another post to give you a flavor of what those interim stepping stones look like for us at Joltz in a loyalty & rewards context: \n\nToday, jumping straight to bitcoin is too big of a leap for the vast majority of businesses - I can give the best sales pitch in the world of why they should integrate bitcoin rewards (new customer acquisition, etc.), but they'll inevitably ask "well what about my existing customer base?" -- the answer of course is that maybe 10-20% of them would opt-in. At that point the business says well why bother.\n\nSo they need a way to increase that %. One way to do this is with branded (fungible) loyalty tokens that look and feel much more like a normal loyalty point to consumers (plus no business wants to willingly sacrifice the branding attached to their loyalty program). You can still back those assets with BTC, but it's packaged in a more accessible-looking vessel. Another thing you could do is back it with stablecoins instead of BTC - I know that sounds cringe to us, but now you've really removed every objection a business might have. If many businesses do this, it also gives consumers the ability to much more easily exchange these different forms of value vs. what they have today. And of course they can always convert into sats, and at least you've gotten people onto the network from which they can easily do that. https://example.com/ 20495 447892 447892.448431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.73401280713418 0 \N \N f 0 \N 0 114464596 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307986 2024-11-25 14:34:47.726 2025-03-29 22:39:51.475 \N So I see the the big blockers are back at work. I was hoping that with Ver in jail we'd get a break, but I guess he paid a few in advance and they still have a so money left to earn. You won't be able to pay for your coffee on the first layer. Deal with it. \n\nYes you should pay for things in bitcoin. No I don't want the State to put people in jail for taxes, not even Bitcoin Judas.\n\nNo I won't be pruning my node. Without a small blockchain, you don't have decentralization. Without decentralization, we have nothing. \n\nYes, you'll have to use second layers and mints and whatever for small payments. Deal with it. It was always going to be that way. Anybody who thought about it for a few minutes knew that was always going to be necessary. Satoshi also said that. https://example.com/ 4027 307258 307258.307986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2081028539889 0 \N \N f 0 \N 0 18205069 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435349 2025-03-12 15:56:17.731 2025-03-29 22:39:51.706 \N Some practical benefits are\n\n- Much friendlier/intuitive installation process (compared to web app)\n- The app can register itself into "Share" dialog, so e.g. you see some good article in any app, click on share, SN is an option to immediately create a post out of it\n- Easier to do the views and animations (it's possible with web app, but somewhat tricky to make it performant)\n- Good notifications when you earn sats, or a person you are following posted something (again can be done with web app, but it's not that easy)\n- The post detail view can have two tabs - one to see comments and one to see the actual iframe. That would make it really easy to go back and forth between the article and comments. \n- Thumb friendly UI - e.g. the common actions are on the bottom so those can be reached by thumb. Also "tap" targets would be bigger... \n- Standardized/intuitive experience, e.g. hamburger menu in the usual place as in other mobile apps, etc. When you you swipe the left sidebar shows up. \n- Potentially can act as a mobile wallet (this is more of a brainstorm, but it would be cool to earn some sats on Stacker News and buy a beer with that immediately...)\n- Idea: Could have a "Read later" feature to essentially create a backlog of articles that I would like to read when I have time...\n\nI also like the web app and it should always be an option to use web app, but there are some practical benefits to mobile app. \n\n@k00b \n https://example.com/ 15858 434129 434129.435349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09213479714097 0 \N \N f 0 \N 0 211015713 0 f f \N \N \N \N 434129 \N 0 0 \N \N f \N 2025-03-19 09:15:13.08 f \N \N \N 0 0 0 0 0 0 0 447013 2025-03-21 15:11:01.717 2025-03-29 22:39:51.715 \N [Balance of Satoshi](https://github.com/alexbosworth/balanceofsatoshis) allows funding [from an external wallet](https://github.com/niteshbalusu11/BOS-Commands-Document#open), too https://example.com/ 11165 446601 446601.447013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.20667457474 0 \N \N f 0 \N 0 167962967 0 f f \N \N \N \N 446601 \N 0 0 \N \N f \N 2025-03-28 10:34:04.776 f \N \N \N 0 0 0 0 0 0 0 447100 2025-03-21 16:12:00.58 2025-03-29 22:39:51.958 \N The video mentions using Nostr keys that are created when you load the page - is it possible to backup these keys ? \n\nAlternatively, do you imagine being able to use a Nostr signing device, like the one sold by the LN Bits guys, to use with this ?\n\nhttps://shop.lnbits.com/product/nostr-signing-device\n\n https://example.com/ 8289 446942 446942.447100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0543733320603934 0 \N \N f 0 \N 0 112916295 0 f f \N \N \N \N 446942 \N 0 0 \N \N f \N 2025-03-28 10:56:33.044 f \N \N \N 0 0 0 0 0 0 0 443605 2025-03-19 12:38:57.809 2025-03-29 22:39:51.961 \N > i believe one of his apps was exploited rather than having the bug responsible disclosed\n\nThe guy who exploited anigma.io responsibly disclosed the bug in a private dm. I didn't know how to fix it at the time and I didn't want to learn how because I was tired of the project, so I put up a warning banner that the software is compromised and called it a day\n\nI did not responsibly disclose the off-by-one bug, in fact I didn't know if there was a bug or how the ord software would handle my weird transactions. I just thought "These will probably crash their block explorer" and then tried them on mainnet to see what would happen.\n\nAlso, their block explorer did not immediately appear to be broken in any way. My transactions were mined at midnight and nothing seemed wrong when I checked the ord explorer website, it seemed to be working fine and in the ordinals discord no one noticed anything weird immediately. So I went to sleep thinking nothing meaningful happened. It was only this morning that someone linked me to an issue on the ord explorer github page about my weird transaction, and I discovered I unknowingly introduced an off by one error into their software (or rather exploited an existing vulnerability that I didn't realize was there). Off by one errors are notoriously nefarious in that they are not usually immediately obvious but then something breaks horribly later on.\n\nAlso, even though my transaction didn't crash ordinals.com, it did crash other ordinal indexing software that other people wrote, including one by unisat that is the basis of ordinalswallet.com. https://example.com/ 17727 443295 443295.443605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7722929905873 0 \N \N f 0 \N 0 3602731 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:14:52.544 f \N \N \N 0 0 0 0 0 0 0 404434 2025-02-15 21:46:20.163 2025-03-29 22:39:51.963 \N I would guess no. Anyone can name any node anything they want. The argument that the node is growing in size can easily be explained too. People see Deutsche Bank and get excited, and immediately open a channel, without verifying. https://example.com/ 21356 404421 404042.404150.404189.404192.404421.404434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.78306628042688 0 \N \N f 54907783 \N 1 163386257 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448443 2025-03-22 15:50:53.118 2025-03-29 22:39:51.472 \N Making steady progress in my cabin project 😉 Over the weekend I managed to finish the roof frame and cover most of it with plywood. Today I'm planning to cover the remaining part along with what's left on the walls. Then I'll be laying down the preamble membrane to seal up the building 🙂\n\n![roof is almost finished](https://i.ibb.co/JFXmqCW/roof-almost-finished.jpg)\n![roof from the inside](https://i.ibb.co/8zpWZff/roof-from-the-inside.jpg)\n\nHave a great day ahead! https://example.com/ 1051 448349 448349.448443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6840827570966 0 \N \N f 0 \N 0 70565509 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307975 2024-11-25 14:22:48.558 2025-03-29 22:39:51.475 \N ambient music single inspired on the last 1.5y that i’m living in the countryside https://example.com/ 19446 307616 307616.307975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.888185296044917 0 \N \N f 0 \N 0 168873098 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435665 2025-03-12 21:25:01.572 2025-03-29 22:39:51.703 \N **Explorers and Dashboards**\n- [mempool.space](https://mempool.space) (Everyone's favourite)\n- https://bitcoinexplorer.org/ (Secondary explorer, I sometimes use for some more stats. It's also got a nice [fun section](https://bitcoinexplorer.org/fun) :))\n- [Clark Moody's Dashboard](https://bitcoin.clarkmoody.com/dashboard/) (For various stats regarding the bitcoin blockchain, lightning network and the ecosystem)\n- [mempool.observer](https://mempool.observer/) (Another great mempool stats tool by the bitcoin dev [b10c](https://b10c.me/). Also has a transaction monitor to filter out different types of transactions sent to the bitcoin network)\n\n**Privacy**\n- [Samourai Wallet](https://samouraiwallet.com/) (A really good privacy-focused bitcoin wallet with support of CoinJoin and PayJoin implementations built-in)\n- [oxt.me](https://oxt.me/) (An explorer that can be used to analyse any utxo and also track them. It's graph tool is really good and can be used to protect yourself from knowing if your wallet leaks information in a way that can be caught by chain-analysis companies)\n- [kycp.org](https://kycp.org/#/) (Another privacy explorer for bitcoin to know the privacy score of your coins)\n\n**Exchanges**\n- [fixedfloat](https://fixedfloat.com/) (A custodial swap service that I use for swapping LN and on-chain. Really good service to swap by small dust and change utxos into LN bitcoin!)\n- [RoboSats](https://github.com/Reckless-Satoshi/robosats) (Recently been experimenting with Robo sats which is a really nice p2p private bitcoin exchange that uses the lightning network) \n\nThere might be a few more small tools and services that I am definitely missing, but these are the ones that I use on a regular basis. https://example.com/ 20243 435579 435579.435665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.00049732584804 0 \N \N f 0 \N 0 220615739 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 2025-03-19 16:31:24.569 f \N \N \N 0 0 0 0 0 0 0 435293 2025-03-12 15:21:47.021 2025-03-29 22:39:51.705 \N I think there is also a danger that you can think you have product market fit because the people in lightning are so supportive and you get an initial boost. The reality is that there are a few thousand of us and not nearly enough to build a solid company yet outside of exchanges. I think of Strike with remittances as the closest app to reaching a general audience. https://example.com/ 1213 435286 435261.435272.435286.435293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7192308140836 0 \N \N f 0 \N 0 193861283 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:30.535 f \N \N \N 0 0 0 0 0 0 0 435951 2025-03-13 06:25:20.558 2025-03-29 22:39:51.707 \N You will get (and you have) got a ton of non-fic book recs. If you really want to become less of an idiot (which is a worthy thing to want) here's my "counterculture" advice: read literature -- fiction -- that has mattered to people. You can't go wrong with the classics, but honestly, for these purposes, it barely matters what you read. \n\nSome authors who have meant a lot to me:\n\n- Ernest Hemingway\n- Irvine Welsh\n- George Saunders\n- Jose Saramago\n- Jorge Luis Borges\n- James Kellman\n- Douglas Adams\n- Richard Adams\n- Denis Johnson\n- John Steinbeck\n\nIf it elicited a big popular response, or a strong critical response, if people cared a lot about it, if it has stood the test of time, it means that something in there stirred something up in lots of people, and it's worth trying to understand that.\n\n\n\n\n\n\n\n https://example.com/ 10490 435950 435944.435950.435951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4788623801692 0 \N \N f 0 \N 0 203597407 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 08:04:53.431 f \N \N \N 0 0 0 0 0 0 0 436710 2025-03-13 20:26:24.246 2025-03-29 22:39:51.709 \N @Scoresby's sibling comment is fantastic. Here's a less fantastic factoid:\n\nI tried not to look at the leaderboard at all. I think I looked at it twice? and then never again. It stirred up a bunch of the competitive feelings that others have mentioned and that I didn't want. Even afterward, I noticed that there was like a dark tide urging me to try to compete. But I avoided that.\n\nFWIW, I'm a super competitive person, though I try not to be bc it's been almost entirely destructive. So maybe others could walk the line in a way that I can't. https://example.com/ 20993 436499 436499.436710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5038797102897 0 \N \N f 0 \N 0 164014254 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 2025-03-20 14:31:24.312 f \N \N \N 0 0 0 0 0 0 0 435635 2025-03-12 20:44:21.04 2025-03-29 22:39:51.709 \N > I tend to take ideas seriously when there are many provably independent sources validating them. Otherwise it seems we are all arguing our guesses (and practically everyone's guesses are untrustworthy).\n\nYes! Agree wholeheartedly. This is why I'm so hungry for non-correlated inputs for discussion on btc stuff. The implications are literally as complicated as the entire world, so the notion that Saifedean Ammous and his merry sycophants have already penned the final word on how it will, or should, play out is, to me, almost criminally naive.\n\n> I even think you can reliably discover new and promising ideas by seeking the intersection of independent guesses.\n\nIt has been so fascinating to me how some ideas playing out in, for instance, computational vision, are concrete expressions of philosophical arguments from the 1950s. There's so much alpha in finding those intersections, in btc and in everything else. https://example.com/ 1006 435359 435359.435635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3288615056421 0 \N \N f 0 \N 0 73047842 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 2025-03-20 07:01:51.653 f \N \N \N 0 0 0 0 0 0 0 434767 2025-03-12 08:16:57.504 2025-03-29 22:39:51.711 \N Inevitably when I revisit old code it's nothing but cringe as I see all the mistakes I made. \nThe only plus side is it helps convince me I've actually improved over the years and it hasn't all been in vain https://example.com/ 16704 434718 434646.434718.434767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5083076578326 0 \N \N f 0 \N 0 112697316 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 01:58:07.082 f \N \N \N 0 0 0 0 0 0 0 448849 2025-03-22 23:19:09.019 2025-03-29 22:39:51.474 \N I am investigating the possibility to move my guides on SN from substack.\nAnd not for the sats mainly, but to have a direct contact with those people that need more my guides. \n\nYes, if you go and google a title from my guides list it appear quite on top, because of substack SEO. Not sure if that will happen with SN too. Yeah SEO stuff take time and SN is still young...\n\nMaybe even having a dedicated territory, like "Darth-Guides" or something.\nSee for example the [Telegram channel](https://t.me/btcguides) I have where I post all the guides, for people that want to have them at hand. Is just a chronological list of them and many people are using it.\n\nMy guides are already formatted in markdown that is fully supported by SN so is not a big problem.\n\nThe aspects that keep me not doing this yet are:\n- I can't edit main posts longer than 10min. Sometimes a guide must be updated, corrected etc. And that take time.\n- I need an option to export somehow the entire pack of posts / territory (without comments) in a full zip archive. Just to have it as a backup.\n- Option to disable comments for a post. Maybe I want to keep it clean, just as a guide entry, people read it and then commenting on main SN saloon or wherever they want. For some posts yes, maybe is necessary to let people to comment and discuss.\n- I can't have separate sections by language. I usually write my guides by default in EN and ES, then later are translated in other languages. Also maybe sections / pages to configure by category / type of guide.\n- there are some more things to add but can't remember right now which.\n\nWill see... I am not decided yet. https://example.com/ 20647 448840 448200.448230.448811.448840.448849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.84379728338918 0 \N \N f 0 \N 0 109031435 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436496 2025-03-13 15:35:08.99 2025-03-29 22:39:51.709 \N Serendipity. This has been on my mind, too, in a different way. More soon about that. However:\n\n> I used to "not get" hanging out and dreaded it. It was the most socially awkward thing I could imagine. But now, looking back, I miss the occasions.\n\nOne aspect that seems to matter, crucially, is that it's informal. Scheduling a hang-out (like she describes in the paper) might be nice, and tie into some of the same vibes, but it's different. There's something vitally important, and alive, when your default respiration includes a bunch of other people around. _Your_ people.\n\nThat's what I miss most: default sociality. https://example.com/ 17218 436494 436494.436496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.23595438254149 0 \N \N f 0 \N 0 13156766 0 f f \N \N \N \N 436494 \N 0 0 \N \N f \N 2025-03-20 08:52:26.207 f \N \N \N 0 0 0 0 0 0 0 434980 2025-03-12 11:33:43.78 2025-03-29 22:39:51.71 \N My fun for today 👀\n\n![2024-03-29-030919_1920x1080_scrot.png](https://m.stacker.news/23832)\n\n> - expose secret in logs but don't persist it?\n>\n> The original wallet logs screenshots show that the first and last 6 characters of the secret are shown in the log. I originally planned to not persist the secret in the logs so for loaded logs, the secret would show ******. I decided against that now since it's probably confusing. Secret is now never shown in the logs.\n\n-- github.com, [_Wallet Logs_](https://github.com/stackernews/stacker.news/pull/994) https://example.com/ 1817 434922 434922.434980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9125172786499 0 \N \N f 0 \N 0 172997847 0 f f \N \N \N \N 434922 \N 0 0 \N \N f \N 2025-03-19 06:00:12.873 f \N \N \N 0 0 0 0 0 0 0 435454 2025-03-12 17:32:23.194 2025-03-29 22:39:51.712 \N If Bitcoin can't survive Blackrock, it can't survive any other large person or group coordinating a pump and dump fork. \n\nBetter to find out now.\n\nIt was built to withstand STATE level attacks like this, let alone a company.\n\nMore specifically, Blackrocks fork clause is intended to be upfront with ]nvestors, not a game plan for taking over bitcoin. \n\nIt's like asking, what happens if the group of whales and institutions who own btc now, coordinate to fork bitcoin and bring on a kyc version ? \n\nWhy don't or can't states ? If they did what would we do. Same thing for your BR scenario\n\nWhen people talk about a BR etf increasing bitcoins price, they mean because it will increase demand and give legalized access to boomers who can't figure out a wallet. Large family holdings and institutions and wealth funds can have exposure too. \n\nThey do not mean blackrock will be focusing all of its resources on bitcoin. It's just another industry sector to these financial types. It's not ideological. They are Number go up bro's.\n\n https://example.com/ 18271 435437 435437.435454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1793641003069 0 \N \N f 0 \N 0 103314776 0 f f \N \N \N \N 435437 \N 0 0 \N \N f \N 2025-03-19 10:58:14.164 f \N \N \N 0 0 0 0 0 0 0 436544 2025-03-13 16:21:22.567 2025-03-29 22:39:51.715 \N https://imgprxy.stacker.news/CK-FnYujGT7K8XSEEFYPIZtutBjdUEOajqz1y7p9RKM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYS50ZW5vci5jb20vQWFIeW1BbHpKS29BQUFBZC9qdXN0LXdoZW4taS10aG91Z2h0LWktd2FzLW91dC10aGV5LXB1bGwtbWUtYmFjay1pbi5naWY https://example.com/ 1585 436493 436493.436544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7154836918487 0 \N \N f 0 \N 0 184551769 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 2025-03-20 10:02:20.076 f \N \N \N 0 0 0 0 0 0 0 430208 2025-03-08 23:43:16.12 2025-03-29 22:39:51.956 \N "Your rulers do not care what race you are. They do not care if you are gay, transgendered or nonbinary. They do not care how many bullets you are allowed to have in your gun. They do not care whether you are allowed to have an abortion or not. They do not care if you are racist, sexist, ableist, ageist, xenophobic, homophobic, transphobic or fatphobic. They do not care about diverse representation in politics or media, and they do not care about any lack thereof. All they care about is that we all keep thinking, speaking, working, consuming and voting in ways which keep them rich and powerful and keep us poor and powerless. And they will happily keep us arguing as intensely as possible about the things they do not care about so that we don't turn our attention to the things they do care about."\n\nCaitlin is kind of a socialist but fuck she speaks truth and put the good words https://example.com/ 4238 429628 429628.430208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.16114137915194 0 \N \N f 0 \N 0 44742473 0 f f \N \N \N \N 429628 \N 0 0 \N \N f \N 2025-03-20 09:51:51.237 f \N \N \N 0 0 0 0 0 0 0 435371 2025-03-12 16:22:26.776 2025-03-29 22:39:51.958 \N Preseed investor turned 1st hire. https://example.com/ 9184 435354 435046.435324.435331.435351.435354.435371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0677179508944 0 \N \N f 0 \N 0 227145599 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 09:39:59.504 f \N \N \N 0 0 0 0 0 0 0 434772 2025-03-12 08:22:22.331 2025-03-29 22:39:51.706 \N It's becoming clear that NYT writers such as this are increasingly speaking to a smaller and smaller bubble that includes only themselves. \n\nBy defining a morality that sees progress only in terms of career and material success, they have ignored biological and social realities that have shaped human relationships for millennia. They have cut an entire realm of human psychology--love, family, community, responsibility, sacrifice--out of their moral framework. As such, they have made themselves increasingly irrelevant.\n\nI am glad that women have made strides in terms of what they are and aren't able to do in the workplace, but rather than count their wins and broaden their perspective, the modern feminists continue to harp on issues that many have long since moved on from.\n\nIt's clear as day from the election results and from the direction of social media that people are getting tired of their moral framework and are looking for something fresh, something that speaks more deeply into all areas of the human psyche.\n\n\n https://example.com/ 777 434718 434646.434718.434772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.478528912903009 0 \N \N f 0 \N 0 169631952 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 01:57:52.573 f \N \N \N 0 0 0 0 0 0 0 443158 2025-03-19 05:28:47.305 2025-03-29 22:39:51.715 \N I'm sorry, what's the "exploit" here? What's the problem he's trying to solve? Because to me, the network is working just fine, and the free market of fees is working as intended. https://example.com/ 20245 442848 442710.442848.443158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1616624507411 0 \N \N f 0 \N 0 28532317 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 2025-03-26 02:53:12.53 f \N \N \N 0 0 0 0 0 0 0 435302 2025-03-12 15:26:48.68 2025-03-29 22:39:51.959 \N Great guide. \n\nHere's my attempt at copy/pasting into a TLDR table `(cover your eyes if reading on mobile)`:\n\n\n| App | Non Custodial | On-chain | LN Address | Open Source | Audience |\n|--------------------|-------|--------|-----|-----|---------|\n| WoS | ❌ | ✅ | ✅ | ❌ | Beginners | \n| Blink | ❌ | ✅ | ✅ | ✅ | Beginners | \n| Coin OS | ❌ | ✅ | ✅ | ✅ | Beginners | \n| Alby | ✅ | ✅ | ✅ | ✅ | Beginners / Intermediate | \n| Phoenix | ✅ | ✅ | ❌ | ✅ | Intermediate | \n| Mutiny | ✅ | ✅ | ❌ | ✅ | Intermediate | \n| Zeus | ✅ | ✅ | ✅ | ✅ | Intermediate | \n| Valet | ✅ | ✅ | ❌ | ✅ | Intermediate | \n| Blixt | ✅ | ✅ | ❌ | ✅ | Intermediate | https://example.com/ 10291 431783 294868.431783.435302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.983362887998709 0 \N \N f 0 \N 0 220258969 0 f f \N \N \N \N 294868 \N 0 0 \N \N f \N 2025-03-19 08:44:38.015 f \N \N \N 0 0 0 0 0 0 0 458169 2025-03-29 03:32:35.473 2025-03-29 22:39:52.194 \N How often are you posting Matt? If not very often, how do expect SN to look the way you want it?\n https://example.com/ 21833 458156 457126.458150.458156.458169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93177405838394 0 \N \N f 360145651 \N 2 129200930 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443387 2025-03-19 10:14:51.714 2025-03-29 22:39:52.195 \N There's a good chance Apple won't continue to dominate consumer electronics. https://example.com/ 8945 443385 443295.443332.443371.443385.443387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9641882456339 0 \N \N f 197388293 \N 2 238006777 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:11.098 f \N \N \N 0 0 0 0 1 0 0 448746 2025-03-22 20:48:24.557 2025-03-29 22:39:52.196 \N It's just way too early to even ask those questions. I think there's a high likelihood it'll be around in a year and that's about all I can predict. It solves a problem for me today so that's all I care about. https://example.com/ 700 447892 447892.448746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.03383541881679 0 \N \N f 473831090 \N 6 3807335 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 14:54:06.377 f \N \N \N 0 0 0 0 2 0 0 435832 2025-03-13 02:30:51.159 2025-03-29 22:39:52.439 \N Excellent post!\nI'm personally having about 20 wallets on my phone. Orangepilled tons of people over the years and need the wallets to guide the less technical users. \n\nOne thing to the multi coin wallets that needs to be mentioned - **the attack surface**. A single coin (Bitcoin only) wallet contains much less code so any bug is easier to spot in the source. \nA multi coin wallet contains much more code - much larger chance for a bug to stay hidden. https://example.com/ 21408 435576 435576.435832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5191838460047 0 \N \N f 65347188 \N 1 27225482 0 f f \N \N \N \N 435576 \N 0 0 \N \N f \N 2025-03-20 03:39:18.447 f \N \N \N 0 0 0 0 1 0 0 402767 2025-02-14 02:02:45.711 2025-03-29 22:39:52.442 \N Just merged a massively improved sn development experience. You can now get started contributing by simply running `./sndev start` and it spins up the entire project with practically all functionality, loading a significant db seed, creating a regtest lightning network, and mocking things like s3. I tried to make it good enough that even I'll use it (before I would run everything locally outside of containers).\n\n```bash\n[keyan stackernews]🍏 ./sndev help\n\n 888\n 888\n 888\n .d8888b 88888b. .d88888 .d88b. 888 888\n 88K 888 '88b d88' 888 d8P Y8b 888 888\n 'Y8888b. 888 888 888 888 88888888 Y88 88P\n X88 888 888 Y88b 888 Y8b. Y8bd8P\n 88888P' 888 888 'Y88888 'Y8888 Y88P\n\nmanages a docker based stacker news development environment\n\nUSAGE\n $ sndev [COMMAND]\n $ sndev help [COMMAND]\n\nCOMMANDS\n help show help\n\n env:\n start start env\n stop stop env\n restart restart env\n status status of env\n delete delete env\n\n lnd:\n fund pay a bolt11 for funding\n withdraw create a bolt11 for withdrawal\n\n db:\n psql open psql on db\n prisma run prisma commands\n\n other:\n compose docker compose passthrough\n sn_lncli lncli passthrough on sn_lnd\n stacker_lncli lncli passthrough on stacker_lnd\n``` https://example.com/ 20586 401915 401915.402767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0360167003074 0 \N \N f 187425104 \N 1 72155386 0 f f \N \N \N \N 401915 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416229 2025-02-25 13:43:38.61 2025-03-29 22:39:52.442 \N https://i.redd.it/gtzltopbo6y01.jpg https://example.com/ 831 416220 416158.416209.416220.416229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1534190726736 0 \N \N f 74081759 \N 1 162496057 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435637 2025-03-12 20:45:58.647 2025-03-29 22:39:51.706 \N We waded through the crisis narrative swamp during the blocksize war. We were warned that bitcoin would die and be replaced by something else because it couldn't scale and needed to do so immediately, apparently the world at large needed it immediately, some imbeciles even suggesting by 2018 it *might be too late*. The same bullshit is repeating itself with the faux security budget saviors trying to run their fork, inscription, and side-chain into the womb of a 15-year-old protocol. *We need to fix the security budget immediately!* No, you need to see a psychiatrist, and work on your self-control. Bitcoin's hashpower won't death spiral, security won't be deprecated allowing for 51% reorg fantasies, leaving a void to be filled by something else. There's a subtext to everything the big-blockers and chain-gang say if you listen and don't just hear:\n\n>PUMP MY BAGS\n\nBitcoin is on a long, difficult, and organic road from store of value, to transactional currency, to unit of account. The steps can't simply be leapfrogged, or sped up, like "crypto" would have you believe. There are many reasons for that outside the protocol which is a subject beyond the scope of this reply, but drivechain is ancient. It seemed relevant back in 2014 before the regulatory environment arrived, before "crypto" arrived, before Taproot arrived, before the immense innovation on the LN arrived. Drivechain frankly looks quite myopic and silly in retrospect. We don't need a 2050 fee environment in 2023 to satisfy your Lambitions. \n\n\n\n\n https://example.com/ 1638 434795 434795.435637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1611175192615 0 \N \N f 0 \N 0 54366629 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 18:20:36.501 f \N \N \N 0 0 0 0 0 0 0 436060 2025-03-13 09:26:40.443 2025-03-29 22:39:51.712 \N Bunch of things:\n\n* Got all the hardware for building a seedsigner, just need to 3d print some stuff for it, going to try and do that today.\n* Setup a doorbell camera at home.\n* Got 2 other cameras for inside to replace some of the crap Wyze v2 cameras I had.\n* Would love to get my private LN node setup but probably won't get to it.\n* And work related stuff. https://example.com/ 1624 436050 436049.436050.436060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.753192811431 0 \N \N f 0 \N 0 18388897 0 f f \N \N \N \N 436049 \N 0 0 \N \N f \N 2025-03-20 02:47:47.03 f \N \N \N 0 0 0 0 0 0 0 450701 2025-03-24 07:01:59.574 2025-03-29 22:39:51.963 \N You making any money on the Lightning node? I am syncing a HDD at the moment, but it's taking quite a while for BTC to copy over - 40 days and 40 nights. https://example.com/ 9200 450240 450240.450701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.79885511119753 0 \N \N f 249960867 \N 1 162084463 0 f f \N \N \N \N 450240 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447242 2025-03-21 18:00:45.375 2025-03-29 22:39:52.191 \N still enthusiastic about lightning and would love to see more merchants accepting it.\n\nBut it's literally moving mountains to get people out of the fiat mindset https://example.com/ 17592 447239 447148.447239.447242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6756900810584 0 \N \N f 635852242 \N 4 196312178 0 f f \N \N \N \N 447148 \N 0 0 \N \N f \N 2025-03-28 12:09:21.73 f \N \N \N 0 0 0 0 1 0 0 436633 2025-03-13 18:22:59.824 2025-03-29 22:39:52.194 \N I agree with some of that, most importantly that ZK-proofs are awesome.\nI also disagree with some of that, most importantly with FIVE ninja turtles on the picture. https://example.com/ 692 436475 436466.436475.436633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0911800786316 0 \N \N f 91875181 \N 1 90330305 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 2025-03-20 11:55:04.855 f \N \N \N 0 0 0 0 1 0 0 422756 2025-03-02 17:16:01.726 2025-03-29 22:39:52.195 \N I don't like the exact description of this scale, but type 1 is basically a civilization that's able to harness all of the energy available on the planet itself.\n\n> How will Bitcoin accelerate us there?\n\nI see two clear mechanisms.\n1. Bitcoin mining can allow much higher base load energy generation, because when demand from other uses dips mining can pick up the slack. This means more demand for highly efficient and reliable hydrocarbons, geothermal, nuclear, and hydropower in urban areas.\n2. Bitcoin increases energy demand in sparsely populated places, because mining can hypothetically be done wherever there's an energy supply. This means there will be more demand for remote energy resources that cannot be economically delivered to population centers. https://example.com/ 18829 422735 422717.422735.422756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.596750989302 0 \N \N f 331812557 \N 2 146878311 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 188396 2024-06-23 11:08:54.501 2025-03-29 22:39:52.195 \N Yeah this won't work for that. You'll have to update to 0.5.X or manually fix it.\n\nFor umbrel 0.4.x you'll have to edit the `./umbrel/docker-compose.yml` file manually.\n\nIn that file you'll see a list of services.\n\nIf you scroll down to the lnd section\n\n```\n ...\n networks:\n default:\n ipv4_address: $BITCOIN_IP\n lnd:\n container_name: lnd\n image: lightninglabs/lnd:v0.14.1-beta@sha256:810f290f4da51adaf57d53bc1f1e65b52b03c543f322da0b98fb8c47be94a27a\n user: 1000:1000\n depends_on: [ tor_proxy, manager ]\n volumes:\n - ${PWD}/lnd:/data/.lnd\n environment:\n HOME: /data\n restart: on-failure\n stop_grace_period: 5m30s\n ports:\n - "9735"\n - "$LND_REST_PORT:$LND_REST_PORT"\n - "$LND_GRPC_PORT:$LND_GRPC_PORT"\n networks:\n default:\n ipv4_address: $LND_IP\n dashboard:\n container_name: dashboard\n...\n```\nyou should be able to manually edit the container (on line 7 here) to \n```\nlightninglabs/lnd:v0.15.2-beta@sha256:a011b06c622c947a3039d76a5a08b4896fc6a02dea6add3afd345019f8737923\n```\n\nand then restart the node, or run\n\n`sudo ./umbrel/script/start`\n\nto just apply the update\n\n https://example.com/ 13198 188390 188308.188380.188387.188390.188396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1002905077797 0 \N \N f 283391756 \N 4 28762311 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416959 2025-02-26 00:07:32.589 2025-03-29 22:39:52.445 \N No, for CLN is not possible that.\nOnly for LND you can do that, restoring in Zap, Bluewallet or Blixt and even in Sparrow.\n\nWhat you can do is to export privkeys from that hsm_secret file\nSee more details here\nhttps://walletsrecovery.org/\nhttps://github.com/rsbondi/clightning-go-plugin/tree/master/dump_keys\n\nAlso a very good toolkit is this one https://guggero.github.io/cryptography-toolkit/#!/ https://example.com/ 5036 416158 416158.416959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1627275353513 0 \N \N f 27053735 \N 1 196103239 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436504 2025-03-13 15:41:30.413 2025-03-29 22:39:51.708 \N > Your personal rabbit hole story\n\nBought bitcoin. It crashed. 2 years later, it uncrashed. Bought _The Bitcoin Standard_ for some reason. Read it with eyes wide open in bed. Watched Andreas M. Antonopoulos talking how he lost weight on stage because of Bitcoin.\n\nStarted running a shitty bitcoin node using a RPi3 I already had in the hope to make money on routing fees at some point. When I asked if RPi3 is also okay (like people who ask if Pepsi is also okay when people mention Coca-Cola), people in the raspiblitz TG group only wished me good luck with no further explanations. I felt entitled to help I didn't receive so I just used the RPi3 anyway. After several months where it kept freezing up even though I changed nothing between the attempts, I remembered what the TG group said and had to accept that they were right. It was a dumb idea of a dumb person that already made up his dumb mind. Now, I was still dumb but less dumb thanks to my experience of doing dumb things that turned out to be dumb.\n\nRead more stuff like _Mastering Bitcoin_, _The Internet of Money_, lurked in r/bitcoin, discovered SN. Rest is history. Still feel dumb though.\n\n_if this wins the content, I might delete this story, lol_ https://example.com/ 20603 436197 436197.436504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6365965418432 0 \N \N f 0 \N 0 78920843 0 f f \N \N \N \N 436197 \N 0 0 \N \N f \N 2025-03-20 09:20:59.118 f \N \N \N 0 0 0 0 0 0 0 436424 2025-03-13 14:53:13.325 2025-03-29 22:39:51.714 \N Elon stole my Twitter handle and all I got was this stupid t-shirt. https://example.com/ 18529 436415 435905.436415.436424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.73678367935097 0 \N \N f 0 \N 0 170403922 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 2025-03-20 08:35:15.186 f \N \N \N 0 0 0 0 0 0 0 447300 2025-03-21 18:54:14.408 2025-03-29 22:39:51.715 \N I don't know, but it sounds... Possible. 🌞\n\nI've noticed (also in my family) that women often times say / propose something, only to *instantly* scan the expressions of the people around, after which they either back paddle- or expand on their initial stance.\n\nTo me, it bears a resemblance to the idea you're proposing in your post: \n\n* A woman's "plan of action" only goes as far as the *wants*, of the community; if the proposal is unpopular, it's scrapped, no matter if she'd have been right in the end.\n\nIn contrast, a man might (with the assistance of the minority) simply knuckle his proposal through, no matter the general consensus.\n\nSomething along those lines, ain't it?\n\nInteresting, interesting. I hope that you post about your other thoughts as well, I'd gladly read them. 🤠🔥⚡\n\nEdit: Props on the formatting, I've gotta get on your level! https://example.com/ 762 447288 447264.447280.447288.447300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2224991103341 0 \N \N f 0 \N 0 189106733 0 f f \N \N \N \N 447264 \N 0 0 \N \N f \N 2025-03-28 12:20:22.827 f \N \N \N 0 0 0 0 0 0 0 435582 2025-03-12 19:55:27.679 2025-03-29 22:39:51.96 \N i think ppl are overly down on lightning when really it works pretty well in the custodial (enterprise?) use case. lightning imo is what will be the interoperability layer that bridges liquidity between hubs of different kinds. ecash (both cashu and fedmimints) are super super interesting and promising as the last mile payment solution for scale and privacy for the end user. it's much better than just custodial lightning alone since it's private, free, and instant.\n\nnot much impact on our business yet and definitely no questions from clients yet. i think we're still driving the sound money / digital gold narrative in terms of what wall street is trying to wrap its head around https://example.com/ 5500 435574 435551.435574.435582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.695760899359996 0 \N \N f 0 \N 0 138065089 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 2025-03-19 21:25:17.539 f \N \N \N 0 0 0 0 0 0 0 433088 2025-03-10 19:44:41.667 2025-03-29 22:39:51.961 \N Imagine having to go through KYC to pay your food with cash.\n\nFuck BitPay. https://example.com/ 1429 433066 433066.433088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4853168091842 0 \N \N f 1168443548 \N 8 140701801 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 2025-03-19 09:12:07.974 f \N \N \N 0 0 0 0 1 0 0 404150 2025-02-15 15:38:28.715 2025-03-29 22:39:51.962 \N I would recommend talking to a counselor and some older father's that have life experience you dont yet have. People you trust and admire. Also if you can find other couples taking turns to watch each others kids is great. Your relationship with your spouse needs to be higher priority than your kids. And that is best for your kids. If you two have a healthy relationship that is going to give them greater security. \n\nAlso know as a father of two teens these years you are in are tough. In a few years you will have more time and you might miss how much your kids need you. I know I miss those days. Parenting is hard but I wouldn't trade it for the world. We are entering a phase of life where my wife and I will have more time for each other and ourselves. Its bitter sweet. Hang in there. https://example.com/ 19531 404042 404042.404150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.89694255204402 0 \N \N f 473116526 \N 6 98822140 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436498 2025-03-13 15:36:41.372 2025-03-29 22:39:51.966 \N In my humble opinion, i think you could focus your energy on solidifying your territory identity first before marketing it via Nostr. What kind of vibes do you want it to evoke and what kind of community do you want to foster? \n\nLet’s take ~booksandarticles as an example. I can see that someone has taken it as his platform for publishing his novel, chapter by chapter. (Kudos for him for being consistent!) But I don’t get a sense of much else happening. For better or for worse, I see it as an alternative to Weekend Book Recommendations. If I finish a book but can’t wait for the weekend to come by, I will just post my book review on your territory haha.\n\nI think the post by @Fabs asking for our reading rituals are probably things that you need to build this identity. At some point in time, I post here not so much for the sats, perhaps more so for the cowboy hat, but most definitely for the detailed insights and commentaries by Stackers. I love reading long prose and observing how Stackers expound on their thoughts. More such posts on a regular/semi-regular basis would be welcomed.\n\nI work as a teacher and in order to encourage reading in my school, we go by monthly themes. So January in my school is beginnings, and we explore books that explore starting a new school year, etc. Maybe you wouldn’t like the discussions to be that didactic but I think having some sort of structure will serve well to attract Stackers to post more n comment more n “let it happen”.\n\nMy 2 sats’ worth https://example.com/ 687 436449 436028.436449.436498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.628036943969 0 \N \N f 0 \N 0 245876660 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 09:31:28.894 f \N \N \N 0 0 0 0 0 0 0 436286 2025-03-13 12:55:03.704 2025-03-29 22:39:51.709 \N The cool thing about ASICs is that nearly 100% of the chips that could be mining BTC are actively hashing right now. If you wanted to attack the network, you'd have to commandeer these machines and make them do the attack instead of mining cooperatively as they are doing now.\n\nIf a PoW algorithm can be mined competitively using general purpose hardware, it means there is always a large pool of computation that could be used to attack it.\n\nJust a guess, but I'd assume that less than 5% of all CPU cycles in production are being used to mine a CPU-minable coin. This means that there is a pool of 95% of CPU cycles (that are agnostic to any blockchain) which could be diverted to attack that CPU-minable blockchain.\n\nThis could go both ways. If the CPU-coin is attacked, its also easier for honest participants to bring more honest hash online to thwart the attack. Almost everyone has a CPU with extra clock cycles to spend on something they're passionate about. But not everyone has access to an ASIC. https://example.com/ 647 436135 436032.436135.436286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.80005359368309 0 \N \N f 0 \N 0 126413642 0 f f \N \N \N \N 436032 \N 0 0 \N \N f \N 2025-03-20 06:57:04.536 f \N \N \N 0 0 0 0 0 0 0 436412 2025-03-13 14:40:47.153 2025-03-29 22:39:51.712 \N I've been in Germany for 10 days visiting clients in 5 different regions of the country. What makes me stunned is that the vast majority of the people keeps ignoring the econ desaster of this country. My thesis: they will be the last to wake up to the debasement of their currency and the last to adopt btc. Sad to see (at least for me as a german that still has (orange pilled) family there). Have a nice week-end guys and girls! https://example.com/ 21577 436243 436241.436243.436412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4336073605489 0 \N \N f 0 \N 0 132865787 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 09:58:25.423 f \N \N \N 0 0 0 0 0 0 0 434951 2025-03-12 11:10:53.098 2025-03-29 22:39:51.957 \N The vTXOs that would have been consumed and created by that coinjoin round are not consumed and not created. For the round to fully fail the ASP probably needs to spend the input they were planning to use in that round in another on chain transaction, which then gives the participants certainty that the coinjoin will never happen, and frees them up to spend their vTXOs in another round. https://example.com/ 1650 434940 433799.433829.433831.434831.434940.434951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2119294312116 0 \N \N f 0 \N 0 109873368 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 2025-03-19 12:43:55.506 f \N \N \N 0 0 0 0 0 0 0 435272 2025-03-12 15:13:09.931 2025-03-29 22:39:51.961 \N So from quick read and chat with Burak, here's what I got so far (but take with grain of salt, I'm not that smart): \n\n- You first send your onchain coins (UTXO) to one of the pools (Ark Service Providers) and it becomes virtual-txo (comparable to having sats on lightning).\n- The pool coinjoins all vtxos every 5 seconds generating new onchain transaction for every coinjoin (but it's using taproot smartness, so every coinjoin is represented only by a simple 1 input, 1 output transaction taking ~130vB). \n- So this means that each pool will be submitting ~15k vB to mempool every 10 minutes (so there's a limit for number of pools running at the same time - if my math is correct there can be AT MOST 256 pools). But also note here that the numbers are just a suggestion here, the "5 seconds" could change to e.g. 1 minute.\n- When you have your bitcoin in this layer, then you can freely transact with other folks, the transactions happen in 5 seconds and with solid privacy - as far as I can tell the cryptography should prevent the pool from actually being able to link your transactions. \n- Any time you want you can pull your coins out of the pool and send to onchain address. \n- This solves the "I don't have inbound liquidity" problem that lightning has. \n\n\nIt seems that it could be much easier to run Ark node compared to LN node, since you just need to fund it with BTC and the daemon can do its job from there, but also your funding only seems to be going in one direction, so your coins are locked for at least 2 weeks and you may need to be adding more gradually (?). If it works the way I understand it can be quite profitable to run Ark Service Provider node. https://example.com/ 21067 435261 435261.435272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.894703696002 0 \N \N f 393581054 \N 2 140630610 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:28.63 f \N \N \N 0 0 0 0 1 0 0 415399 2025-02-24 19:10:09.643 2025-03-29 22:39:52.194 \N i'm a strong supporter of using deployed instead of locked when describing bitcoin used as liquidity in lightning network as we're essentially deploying capacity not locking in value\n\nas for the wording on this, I don't have a great replacement for deployed here - as you pointed out it kinda works, its just not the most factually correct necessarily, but maybe thats already in the nitpicking territory. \n\nTbh probably the thing that bothered me with the list is mixing market places (LN+, Magma, pool, liq. ads) and liquidity providers (ZFR) tho I guess one could say ZFR is also a marketplace to some extent, with only one participant. \n\nGenerally when we speak about markets we talk about volumes, tho in this case I guess the closest comparison would be cash markets for commodities as we have delivery, or in this case more deployment of purchased commodity (liquidity).\n\nBefore this gets too long - I don't have a clear answer, more of a tendency for this entire space to start naming things with some foresight and consistency to make it easier for people outside the industry to understand and have a clear mapping of what this represents in relation to existing things in the world \n https://example.com/ 21480 415331 414755.415076.415331.415399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4618279317858 0 \N \N f 518601252 \N 3 76372158 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402326 2025-02-13 17:15:47.054 2025-03-29 22:39:52.195 \N Some people are afraid of this for a reason. https://example.com/ 687 402299 402091.402299.402326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.244278732216721 0 \N \N f 378964443 \N 4 15093183 0 f f \N \N \N \N 402091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451239 2025-03-24 13:11:12.141 2025-03-29 22:39:52.196 \N > Funny to think, plebs morphing into the bankers in the age of the sovereign individual.\n\n"Be your own bank" is a pretty old saying in bitcoin\n\nIt mostly refers to keeping your money in your own custody, but you can do the borrow-and-loan part of a bank too, if you want to\n\nI think it's cool that anyone who lends money in loan shark gets guaranteed income if anyone takes their offer, with these caveats:\n\n- you can lose money if your hardware/software stack is compromised (which is pretty likely, given that loan shark currently uses a web wallet -- it's self-custodial but it's still storing your private keys as cookies that other people can sometimes read, e.g. browser extensions can read your cookies)\n- you can lose money if miners censor your transactions\n- you can lose money if you lose your transaction or wallet data and don't have a backup (there's a nice backup button to help with that though)\n- you can lose money if you neglect to broadcast certain transactions when their timelocks expire (though if you just visit the website and upload your backup data, it will try to do this for you automatically) https://example.com/ 749 451208 451208.451239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4022555645366 0 \N \N f 458063240 \N 3 123899603 0 f f \N \N \N \N 451208 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434964 2025-03-12 11:21:30.847 2025-03-29 22:39:51.71 \N That’s a great question that should be asked and discussed more! Personally I believe that Shamir backup has qualities that are quite useful for inheritance planning. I have actually written an article on how to approach inheritance with Shamir backups: https://bitcoinmagazine.com/technical/protecting-bitcoin-shamir-backup. I think the crucial thing is to have some sort of “treasure map” that will become accessible to the family in the case something happens to you. Such treasure map would explain the nature of the inheritance and the location of the Shamir shares (not necessarily precise addresses to prevent theft if an “evil maid” discovers it). The precise inheritance plan is an individual thing, but I think there are some basic recommendations everyone should follow, as I describe in the linked article. \n\nAs for Trezor’s plans around this topic: we’d like to inform our users more about the use cases for Shamir backups such as this one. https://example.com/ 21269 434950 434791.434950.434964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8286794322684 0 \N \N f 0 \N 0 55348815 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 04:42:58.082 f \N \N \N 0 0 0 0 0 0 0 435043 2025-03-12 12:25:41.074 2025-03-29 22:39:51.712 \N > We know it is custodial. But that doesn't mean people can just run off with our sats just because they are bored.\n\nThats exactly what it means. https://example.com/ 9758 434878 434837.434878.435043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2528693780535 0 \N \N f 0 \N 0 243079728 0 f f \N \N \N \N 434837 \N 0 0 \N \N f \N 2025-03-19 13:10:16.337 f \N \N \N 0 0 0 0 0 0 0 448238 2025-03-22 13:58:12.38 2025-03-29 22:39:51.715 \N Fedi also announced a $4.2M seed round today, excited to follow along with their progress.\n\nhttps://bitcoinmagazine.com/technical/how-fedimint-scales-bitcoin-custody https://example.com/ 2961 448236 448200.448232.448236.448238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.04919834106 0 \N \N f 0 \N 0 214204625 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N 2025-03-29 08:39:19.181 f \N \N \N 0 0 0 0 0 0 0 434748 2025-03-12 07:58:26.611 2025-03-29 22:39:51.716 \N Continuing work on what I discussed last week: https://stacker.news/items/245900\n\nRecap:\n\n## What\n\nA lightning wallet that supports multiple NOSTR and LNURL sources so that you can aggregate your custodial accounts and non-custodial nodes and sprinkle in some automated rules.\n\n## Update\n\nWe've found that most services supporting LNurl-Withdraw don't do so in a reusable way.\n\nWithdraw links time out (@SN), or the service itself doesn't have CORS configured for use with WebApps (have reached out to a few... some have fixed but others haven't).\n\nThis may limit this features utility largely to LNbits back-ends. \n\nWe've largely moved on to the Nostr RPC elements so that users will be able to more easily provide accounts to friends, family, clients and webapps without complex server configurations.\n\n## Feedback\n\nHow would you like to see a wallet use LNurl-Withdraw? As a spending source you use semi-regularly? A one-time voucher to sweep funds another account/node? \n\nWhat else should we know about how to make the perfect Lightning wallet?\n\n\n\n\n https://example.com/ 2329 434695 434695.434748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6550723241365 0 \N \N f 0 \N 0 181566907 0 f f \N \N \N \N 434695 \N 0 0 \N \N f \N 2025-03-19 01:45:31.693 f \N \N \N 0 0 0 0 0 0 0 436639 2025-03-13 18:33:45.374 2025-03-29 22:39:51.957 \N In general, coinjoin provides privacy in expense of cost and speed and often clunky UX.\n\nSpecifically, Wasabi has the strongest privacy guarantees, for all we know it's perfect. JoinMarket is good, although you have to do some work to achieve perfect privacy in it, you can't just be a "taker". Samourai/Whirlpool are trash. Not on the same level as the previous two, because they are TTPs.\n\nAnd then there's Mercury, which is doing interesting things, though not CJ.\n\nAnd of course LN, which is not great today as implementations go, but has the potential to provide perfect privacy on top of coinjoin channel management. https://example.com/ 18177 436572 436566.436572.436639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5260041492311 0 \N \N f 0 \N 0 198386544 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 2025-03-20 13:30:19.521 f \N \N \N 0 0 0 0 0 0 0 434507 2025-03-12 01:05:41.019 2025-03-29 22:39:51.959 \N The 0-conf risk is negligeable completely LOW RISK, as the attackers have no incentive to do it for low value trxs, and it is in no one's authority to restrict such flexibility to merchants who accept the risk for customer convenience. Why for instance sybil attack never happened and it is a likely risk suddenly? This is about FLEXIBILITY on-chain, always independent from any L2. LN may become outdated but Bitcoin must stay resilient, IMMUTABLE and flexible. Others must addapt to Bitcoin, that should stay STABLE with few to minimum but fixing changes. This is NOT A BUG. BITCOIN IS FINE. There is currently a "Bitcoin Hub" that is out of control and keeps pushing non-bug fixing CHANGES to Bitcoin like in this proposal 24.0. Bitcoin Devs should not even, due to obvious bias, be involved AT ALL in PROMOTING non-bug fixing CHANGES. DOING NO CHANGE WHATSOEVER to Bitccoin and continue to allow 0-conf is good for Bitcoin and Satoshi as I understood also considered such 'risk' as very low. So why the proposal for a CHANGE at all present in this useless CHANGE proposal 24.0 on that (pardon my French skills) that restricts merchants to continue having a seamless on-chain/LN option for their users only great for more hyperbitcoinization with minimum to NO proven risk, to which acceotcance should be SOLELY at the acceptance criteria of the users? https://example.com/ 1609 423720 423475.423720.434507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.861387630316 0 \N \N f 0 \N 0 105922341 0 f f \N \N \N \N 423475 \N 0 0 \N \N f \N 2025-03-18 19:10:30.831 f \N \N \N 0 0 0 0 0 0 0 447222 2025-03-21 17:44:46.042 2025-03-29 22:39:52.194 \N > their fees can get up to and cross onchain fee equivalents\n\nWhen that happens, consider sending on-chain instead, there is no overhead you will only pay the mining fee. Depending on amount/feerates/etc., on-chain makes more sense than Lightning sometimes. The new Phoenix precisely allows you to get the best of both world. https://example.com/ 4083 446965 446965.447222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4904111862688 0 \N \N f 169843382 \N 1 38255899 0 f f \N \N \N \N 446965 \N 0 0 \N \N f \N 2025-03-28 11:47:41.105 f \N \N \N 0 0 0 0 1 0 0 434549 2025-03-12 02:40:21.993 2025-03-29 22:39:52.194 \N Have still never heard a good explanation as to why it's 2% at all https://example.com/ 18368 434285 434285.434549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8602153782918 0 \N \N f 81207596 \N 1 229619929 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 2025-03-18 19:59:04.789 f \N \N \N 0 0 0 0 1 0 0 434456 2025-03-11 22:45:41.923 2025-03-29 22:39:51.711 \N >Do you think plastic usage is a problem for your own health?\n\n***Endocrine-Disrupting Chemicals*** Plastics contain and leach hazardous chemicals, including endocrine-disrupting chemicals (EDCs), which can interfere with the body's hormone systems and cause cancers, diabetes, reproductive disorders, and neurological impairments in developing fetuses and children.\n\nhttps://onlinelibrary.wiley.com/doi/full/10.1002/bdr2.1778\n\nhttps://www.endocrine.org/topics/edc/plastics-edcs-and-health\n\n>In which situations is plastic most difficult for you to avoid?\n\nOff the top of my head, probably food packaging and clothing\n\n>Do you think there is a realistic path to eliminating our dependence on plastics?\n\nYes, I think it's *possible* but do I think it will happen? Probably not. It would take people to understand the threat, care about it, remember it (I think we as ppl generally do care and have good intentions but forget quickly and get on with life as normal). I doubt it happen because of that.\n\n>Will there be more or less plastic usage on a Bitcoin standard?\n\nQuite likely, if it involves things like trading and buying naturally produced goods, clothing and items directly from Farmer's markets and the like. And if bitcoiners are more aware of the issues, which I think a lot are or at least have the potential.\n\n https://example.com/ 1389 434285 434285.434456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.80050269259992 0 \N \N f 0 \N 0 118389822 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 2025-03-18 17:17:41.751 f \N \N \N 0 0 0 0 0 0 0 435765 2025-03-13 00:15:13.654 2025-03-29 22:39:51.715 \N It could be done. I'm not sure of the merits. I would guess that it could create confusion based on what seeds are currently used for. \n\nIn terms of addresses, I look at about 5 characters after the bc1, the last few, and identify patterns in between. Due to checksums, and the massive amount of randomness of an address, it's unlikely to find 3 or more matching segments in two different addresses you encounter. https://example.com/ 14080 434902 434795.434902.435765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2305611297432 0 \N \N f 0 \N 0 137237721 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 21:59:42.205 f \N \N \N 0 0 0 0 0 0 0 140625 2024-03-10 15:34:06.215 2025-03-29 22:39:51.963 \N Yeah. I would pick a ICE car personally but I can understand why others would pick an EV or hybrid. I just say let the market work it out.\n\nSome will point out that the ICE / Oil industry has been heavily subsidized. That's true. Now it has flipped. The State really mucks stuff up. It always cracks me up with politicians cry about democracy but then claim the market needs them to regulate it. There is nothing more democratic than a truly free market. Vote with your money. We all make decisions with every transaction. These are votes for our preferences. Of course due to the State's monopoly on violence politicians are honey for the flies of corrupt greedy capitalists. Its all in the incentives. https://example.com/ 1425 140617 140609.140617.140625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8307562261315 0 \N \N f 98174864 \N 1 77954515 0 f f \N \N \N \N 140609 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436515 2025-03-13 15:53:25.606 2025-03-29 22:39:51.963 \N Long term project of chronicling all parallels between the bible and Bitcoin to show that Bitcoin is a biblically inspired innovation. https://example.com/ 16598 436493 436493.436515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.597898859387 0 \N \N f 266540456 \N 3 112733576 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 2025-03-20 09:14:50.44 f \N \N \N 0 0 0 0 2 0 0 446393 2025-03-21 06:37:19.484 2025-03-29 22:39:51.965 \N Not only do you risk prison but you also risk undermining the institution that builds our wonderful roads and indoctrinates our kids in public education. https://example.com/ 692 446117 445941.446117.446393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6485855678057 0 \N \N f 0 \N 0 193114193 0 f f \N \N \N \N 445941 \N 0 0 \N \N f \N 2025-03-28 10:52:18.177 f \N \N \N 0 0 0 0 0 0 0 403228 2025-02-14 15:01:43.096 2025-03-29 22:39:52.193 \N I've been keeping it up with the wotk of my fundraiser in Geyser, a new and innovative crowdfunding platform for projects with Bitcoin. I recommend everyone to go and support this great project.\nhttps://geyser.fund/project/anewgoatproject https://example.com/ 13544 403213 403063.403213.403228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3899075544441 0 \N \N f 370489710 \N 4 231844451 0 f f \N \N \N \N 403063 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443484 2025-03-19 11:35:35.761 2025-03-29 22:39:52.197 \N I'm getting boring over here, answering more or less the same things. \n\nSet up new hardware wallet, clean my flat, read long-overdue books. \n\n(pretty good indication that a) my fiat job takes up too much time, b) I suck at managing my time) https://example.com/ 12946 443478 443372.443386.443478.443484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1448466055231 0 \N \N f 21837360 \N 1 133062331 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 06:28:08.423 f \N \N \N 0 0 0 0 1 0 0 402986 2025-02-14 10:23:38.217 2025-03-29 22:39:52.203 \N The wood frog can hold it's pee for up to eight months.\n https://example.com/ 20756 402904 402904.402986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.87556531822012 0 \N \N f 216640071 \N 2 166481839 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415992 2025-02-25 10:00:04.083 2025-03-29 22:39:52.446 \N A tech sub would be nice. The scope of conversation is so narrow by only having two subs. \n\nex. I wanted to post this yesterday: https://forum.xda-developers.com/t/guide-mod-guide-to-enable-mobile-hotspot-tethering-on-q-link-wireless-bypass-bandwidth-throttling.4399269/\n\nBut there's no relevant sub for it. https://example.com/ 18930 415833 415833.415992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6717384899269 0 \N \N f 248000689 \N 1 240486706 0 f f \N \N \N \N 415833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422499 2025-03-02 13:44:14.423 2025-03-29 22:39:52.447 \N There are many unknown risks of *not* activating BIP300.\n\n- Will the lack of privacy on Bitcoin enable state co-option?\n\n BIP300 might help with that.\n\n- Will the declining revenue for miners mean bitcoin transactions take weeks to settle, forcing users onto other chains?\n\n BIP300 might help with that too.\n\n- Will the scarcity of bockspace on Bitcoin force most users to rely on a custodian?\n\n BIP300 might even help with this.\n\nI think it's much more risky not to activate BIP300. https://example.com/ 11165 422497 422056.422470.422497.422499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.54100332754405 0 \N \N f 163486108 \N 3 140003517 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410543 2025-02-20 14:25:10.539 2025-03-29 22:39:52.677 \N I propose a third way to build something useful:\n\nHave a problem --> Solve it for yourself --> open source the solution\n\nCustomers don't know what they want. Even if they do, they will struggle to communicate it to you effectively. And you will struggle to solve a problem that you, yourself do not have. \n\nInstead, build something you want.\n\nWho cares if anyone else uses it? You solved a problem you had. You are the customer and that is enough of a reason to build something useful. https://example.com/ 2596 410534 410534.410543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4709408908255 0 \N \N f 316384322 \N 2 122921208 0 f f \N \N \N \N 410534 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443603 2025-03-19 12:38:23.503 2025-03-29 22:39:51.713 \N I recommend only starting a bitcoin business if truly passionate in what your building. Also if you have this “absolute need to build it.” Perfect example I literally had this aha moment at a meetup tonight. Then decided to come back to the lab, to flesh it out further took me 4hrs. A normal person wouldn’t do that. You have to really believe and love what your building. I personally believe for me I get great joy in seeing all the people around me become “successful” in whichever way that means for them. What I’m trying to say is live your best life and don’t waste not building the thing you want to see in the world. If thats what you want to do. I personally want to see a bitcoin standard in my lifetime and I know the fastest way to do that is help as many builders and people as I can to achieve that goal. That’s why I do what I do. KISS method always works. https://example.com/ 18116 443592 443399.443515.443592.443603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.22932709281995 0 \N \N f 0 \N 0 125166593 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 2025-03-26 06:02:05.759 f \N \N \N 0 0 0 0 0 0 0 428483 2025-03-07 10:32:21.322 2025-03-29 22:39:52.194 \N My wife wanted to have a natural birth. But when her labour pains started, it took what felt like eternity for her dilation to move to just *one* cm. She was in so much pain that she said screw it and asked to be admitted one day earlier so that she could benefit from the epidural. She was apologetic about admitting herself into the hospital one day earlier than planned because that meant another day of hospitalisation expenses. Anyway, she was in so much pain that I think a natural birth was out of the question for her https://example.com/ 8284 428441 428441.428483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4798031987445 0 \N \N f 282186783 \N 2 111757432 0 f f \N \N \N \N 428441 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449057 2025-03-23 06:28:38.247 2025-03-29 22:39:52.194 \N You have redundancy for that. I ran a site with 3.6gbps bandwidth and our own datacenter is 5-7x cheaper. I am not exaggerating, 5-7x. https://example.com/ 9177 449053 449027.449053.449057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8722538561558 0 \N \N f 555468910 \N 4 243340876 0 f f \N \N \N \N 449027 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402889 2025-02-14 08:08:49.606 2025-03-29 22:39:52.202 \N Love all of this dialog! \n\n> I want people to pay for what they want to happen here\n\nThis is one of the most interesting things about being part of SN and watching it grow. It's something that resonates with incentives that should matter a lot to us (sats) vs all of the other aspects of being an identity on the internet. Everything becomes (subconsciously) a weighted decision pinned up against one of the things I know many of us here value the most. So all the things I say regarding SN is more on the intraspection of how I personally feel amongst this dichotomy of a world @k00b has created.\n\n Though eventually competition kicks in, and it's not the only place to have sat incentives that line up here.\n\nA few concepts that stuck out to me yesterday: \n> Afaict forums are a relatively level playing field meant for "the rest of us" who aren't content watching the stars from the bleachers.\n> this format favors weak identities just as well as the strong\n\nAnd it is true. There's a bit of a concept of random username which isn't important most of the time compared to the content, and the aspect of internal community IYKYK kind of thing if you do glance at the name and recognize it. \n\nWatching things evolve on nostr too is interesting. Sat distributions are probably some distribution of \n1. tiny sat value friendly fires\n2. Crafty ebegging\n3. Bullish/worthy news/developments/updates\n4. Anything from a major influencer\n\nI think it's heavily weighted to #3 here which is the predominate reasons I come. It's going to be different for everyone though and that's okay. There's definitely a bit of a commons problem though. Going back to "I want people to pay for what they want to happen here", it's on me to make sure that happens if it's not happening like I'd like it to. I need to be the change I seek, tip more for this content, give credit / conversations / etc. back to these pieces. But that becomes more effort on my part and that's a cost with the hidden side effect that eventually the thing I like stops appearing here because I'm incentivizing it less.\n\nI'm saying "I/me" more than @k00b here because I do really believe that at the end of the day, it does fall on us, with the nudges of influence from him. Things like the rewards, formats, when to unlock subs, etc. etc. The sats (and thus incentives - unless skewed too heavily towards different reward biases) at the end of the day are on us. https://example.com/ 6602 402582 402582.402889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2312171907547 0 \N \N f 226607398 \N 1 181996930 0 f f \N \N \N \N 402582 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423687 2025-03-03 14:39:11.996 2025-03-29 22:39:52.444 \N The market is so very lopsided between the few gigs offered and the millions of people wanting to do gig / task work l.\n\nThat alone is a huge challenge for any gig work /task platform. Then add in how the few gigs are now spread out among a hundred gig / task work platforms.\n\nhttps://cointastical.medium.com/freelancing-platforms-which-pay-in-bitcoin-e38be56166df\n\nSo I know what we need ... platform number one hundred and one!!!! https://example.com/ 16250 423667 423667.423687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8438577716247 0 \N \N f 1834000543 \N 13 9422281 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1672 2022-09-22 04:55:42.945 2025-03-29 22:39:52.444 \N No one is more aware of the centralization risk than Bitcoin Core developers themselves. The project as a whole takes regular actions to distribute and minimize this risk and has been doing so ever since Satoshi vanished.\n\nLead maintainer Wladimir van der Laan retired recently[^1]. They are not replacing him with a new "lead maintainer", instead opting to operate in a leaderless fashion going forward. Pieter Wuille has also distanced himself from the perception that he is a leader among Bitcoin Core developers, going so far as to remove himself as a maintainer.[^2] Even in the realm of release signing the Bitcoin Core project has moved in a direction of greater decentralization, removing the static list of release signers in favor of a rotating cast of characters[^3].\n\nAccusing "Bitcoin Core" of being a centralized group is a bit of a reach, in my opinion. Several contributors come to mind as contentious figures who rub a lot of other contributors the wrong way. I will not name them but ask anyone who follows Bitcoin Core and they can certainly corroborate this characterization. These figures are not ostracized or excluded from contributing to the protocol or mailing list, their contributions are merged and help to make bitcoin stronger, just as all contributors do.\n\nI think there are many more and far larger threats to bitcoin than the developers. Between frivolous lawsuits, hostile legal regimes, and regulatory protocol capture I don't ever lose sleep that the developers themselves will materially harm the project.\n\n[^1] https://twitter.com/WuBlockchain/status/1626468462972502016\n[^2] https://github.com/bitcoin/bitcoin/pull/25568\n[^3] https://bitcoin.stackexchange.com/a/110517 https://example.com/ 20602 1657 1656.1657.1672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1806552541806 0 \N \N f 46234687 \N 1 18882793 0 f f \N \N \N \N 1656 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450221 2025-03-23 19:40:24.018 2025-03-29 22:39:52.447 \N My last donations went to a lawyer fighting against the covid cult, to Infowars, Canadian truckers, etc. Nothing for open source projects.\nThank you for this reminder. In retrospect, my donations are based on emotions, not rationality, I have to change that. https://example.com/ 18473 449767 449767.450221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.745366513798 0 \N \N f 514499492 \N 3 11375226 0 f f \N \N \N \N 449767 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436235 2025-03-13 12:06:55.121 2025-03-29 22:39:51.714 \N Definitely Open Sats.\n\nThe charity for orphans—as compassionate and moral as it may seem— is also in effect subsidizing orphanage itself. It is a harsh point to make. I'm making it in the hope that someone will convince me that I'm wrong. So I'll try to be clear.\n\nWhat are the long term effects of leading Ugandan parents to believe that it's not so bad if they leave their child, since the child will be cared for anyway? \n\nAmericans, in a very human and compassionate reaction to rising poverty, voted in the 60s to institute welfare aimed to help the affected. Few were more affected than black single mothers. But what happens when a system is in place that gives free money to those who don't marry? Marrying meant an instant 15 to 20% reduction in welfare.\n\nToday, around 70% of black americans are born out of wedlock (compare with asians around 10%). Is this compassionate? As Thomas Sowell wrote,\n\n> The black family, which had survived centuries of slavery and discrimination, began rapidly disintegrating in the liberal welfare state that subsidized unwed pregnancy and changed welfare from an emergency rescue to a way of life. —Thomas Sowell\n\n I'm worried about giving crutches to people simply because it feels good to be generous. \n\nNow if the Ugandan charity was instead for giving scholarships to children who showed aptitude or extraordinary ability, then I would support it wholeheartedly. I'm Swedish, so no stranger to welfare. I find the topic very interesting and hope someone (who does not hate my guts by now) finds it interesting as well. https://example.com/ 9494 436231 436231.436235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6115067666365 0 \N \N f 0 \N 0 94451715 0 f f \N \N \N \N 436231 \N 0 0 \N \N f \N 2025-03-20 05:45:44.31 f \N \N \N 0 0 0 0 0 0 0 402378 2025-02-13 17:51:11.575 2025-03-29 22:39:51.964 \N Most people just don't understand how much more pleasant life is outside of a city. Much cheaper too. Overall, just a better quality of life. Maybe it's not for everyone, I get it, but if you are able to consider such a move (even temporarily to try) it's highly recommended.\n\nAlso, not all country sides or small towns are created equal. Do your research and I'm sure you'll enjoy what you find. https://example.com/ 9171 402374 402091.402299.402326.402369.402374.402378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7222893710116 0 \N \N f 130703024 \N 1 77727321 0 f f \N \N \N \N 402091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448367 2025-03-22 15:12:55.259 2025-03-29 22:39:51.965 \N LND - more solutions / wallets adopted / can use it, but has too many bugs, clogs, conflicts. \nCLN - light, fast, less features (but you can use plugins without changing the core code), less apps use it directly, less wallet apps, code is more fine tuned and therefore is not so buggy\nAcinq - stable, dedicated to specific apps / solutions, less wallet apps support it, I think is a bit under appreciated because was shadowed by LND and CLN\nRust - good, I didn't test it on a dedicated node, but I like how it works in Electrum with trampoline channels\n\nYou have also Immortan implementation, that is also under rated. Is a light LN node implementation in SBW, but should have more attention on it.\n\nFor businesses I recommend CLN\nFor playing around and learning - LND\nIf you do specific apps, try Acinq\nIf you write mobile apps, try Immortan\nIf you create a desktop app try Rust.\n\nEach one have its own flavor.\n\nOn this aspect I find very funny and on point this meme:\n[![monkey-figh-wallets.jpg](https://i.postimg.cc/9MLQLrSn/monkey-figh-wallets.jpg)](https://postimg.cc/bD2PJNqx) https://example.com/ 725 448200 448200.448367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1678161401217 0 \N \N f 0 \N 0 65746717 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N 2025-03-29 08:39:14.733 f \N \N \N 0 0 0 0 0 0 0 435309 2025-03-12 15:33:19.846 2025-03-29 22:39:51.965 \N You know that thing you do with your odometer…well this was me at that moment:\n\n![](https://m.stacker.news/66154)\n\nI was in the middle of commenting on a post celebrating @DarthCoin, who I’m sure will now threaten me with a monkey holding an AK since I had my stats bar at the top set to the fiat conversion rate. https://example.com/ 20243 434896 434865.434896.435309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9492900321369 0 \N \N f 0 \N 0 172489069 0 f f \N \N \N \N 434865 \N 0 0 \N \N f \N 2025-03-19 09:14:54.827 f \N \N \N 0 0 0 0 0 0 0 458378 2025-03-29 08:33:23.598 2025-03-29 22:39:52.195 \N @FrickFrickFrick I don't know if you will see this but sincerely here is some advice. Don't take "people" online personal. None of this is real. I'm including myself here. We are all personas. You are as well. You are better off adjusting your perspective of online discourse. I'm not excusing or condemning anyone's behavior online but when you realize it isn't real... it changes the way you receive communications. I don't know you, you don't know me. We could have 1000s of exchanges on this site. You still don't know me. Don't kid yourself. I see this a lot online. Our online personas are just that. Personas. Not the real person. \n\nTake it or leave it. My advice here is sincere, I have allowed others to trigger me online. I still do at times but now I realize, that's my flaw. I need to see the Internet for what it truly is. https://example.com/ 10016 458368 454525.454535.454668.454691.458368.458378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.09276527326461 0 \N \N f 472594760 \N 4 76678445 0 f f \N \N \N \N 454525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416710 2025-02-25 19:35:00.994 2025-03-29 22:39:52.195 \N Meeting up regularly with friends is tough. Do pick-up sports count as meeting with friends? I'd say yes, so that's a couple times a week. I do a couple classes, a few times a week.\n\nWithout those, I'm lucky if it's twice a week, of actually scheduling to meet up with friends. Wish it were more. \n https://example.com/ 17838 416158 416158.416710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3330276872539 0 \N \N f 200808275 \N 1 165059793 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404398 2025-02-15 20:58:41.655 2025-03-29 22:39:52.443 \N My in-laws built one of these in the mountains of New Mexico north of Tijeras. Not quite this extreme - they stopped short of the indoor plants and bottle walls, but 3 of 4 exterior walls were rammed earth in tires, giant south-facing windows to maximize solar gain in the winter, off-grid solar and a metal roof to catch water. It looked really nice (walls were finished with stucco) and was in a beautiful spot on a south facing mountain slope. They eventually sold it for a live aboard boat, but it was an incredible place for the couple decades they were there.\n\nI would love to live in an earthship. I will say, builders/owners should develop an instruction manual for all of the off-grid systems. They're all a bit unique and visitors will be totally unfamiliar with their operation and peculiarities. https://example.com/ 6361 403974 402674.402749.403816.403974.404398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8928565557039 0 \N \N f 215217725 \N 1 106142149 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433394 2025-03-11 03:40:10.137 2025-03-29 22:39:51.951 \N Working for sats can be quite dull,\nBut you got to get this in your skull:\nEven though the market is in a lull,\nBuy Bitcoin first, then count your null.\n https://example.com/ 1626 433391 433391.433394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.17328334218048 0 \N \N f 0 \N 0 87477710 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 2025-03-19 21:19:48.898 f \N \N \N 0 0 0 0 0 0 0 407620 2025-02-18 08:48:19.163 2025-03-29 22:39:51.961 \N If anyone else is a conspiracy theory spectator, [check this out from Kim Dotcom](https://twitter.com/KimDotcom/status/1725935763085484538): \n\n> This is potentially the most significant leak of military technology in history.\n> \n> There is video evidence from 2014 that the US military is in possession of technology that most would describe as Alien. Objects that fly with some sort of gravity propulsion with unbelievable speed and maneuverability, shielded by a vacuum layer that can potentially penetrate anything.\n> \n> These advanced objects seem to be able to create portals that can make a Boing 777 airliner disappear in an instant. This evidence has been out there for a decade but it took \n@JustXAshton and his investigation to attract wider attention.\n> \n> Many of you have seen the TicTac UFO videos filmed by US Navy jets in 2004. The 2014 evidence seems to suggest that this technology has been in the possession of the US military for a long time. The evidence is compelling because it was filmed from 3 different surveillance platforms simultaneously: 2 US spy satellites and 1 US military drone.\n> \n> The leaked videos when combined create a problem for debunkers because the physics match up from different angles. It would take a gigantic effort to fake something like this.\n> \n> This could be the most significant leak of military technology in history. Surely the US Govt will attempt to discredit it. But it’s now in the public domain and a crowd investigation is taking place.\n>\n> The implications are enormous. If this technology is real it renders the nuclear deterrence of non-US nations meaningless. These objects can travel faster than any missile and create portals that can make any plane, missile, submarine or satellite disappear.\n>\n> What makes this discovery so controversial is that this technology was allegedly used to make flight MH370 disappear. A tragedy that is surrounded by many conspiracy theories. How does a passenger plane vanish without a trace?\n> \n> Please watch this video. I’m following developments closely. Several attempts were made to debunk the video evidence but none of them were credible. https://youtube.com/watch?v=AwaC4AXFqRI\n\nI haven't done my spectating yet, but the claim is that MH370 was sent through a portal created by tictac shaped aircrafts. https://example.com/ 11491 407619 407619.407620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.32587284032748 0 \N \N f 413473793 \N 2 116810195 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447310 2025-03-21 19:08:18.294 2025-03-29 22:39:51.962 \N 1. This should be in ~BooksAndArticles also... It would be nice if we could sponser a post to appear in another territory! Here is a great idea for value add to this platform... @k00b @ek & [more](https://github.com/stackernews/stacker.news/graphs/contributors) @siggy47\n2. Dr. Earl Mindell's Vitamin Bible - was my go to book in the late 1980s as I was a staunch vegetarian.\n3. As a vegetarian I have always reminded my meat eating friends that we see colors for a reason. The eyes will lead us to the most colorful foods that are natural. This is how we get hijacked in the grocery store. \n4. Meat eaters like [Dr. Saifedean](https://saifedean.com/) will point to [Weston A. Price DDS](https://archive.org/details/NutritionAndPhysicalDegeneration) but if you actually read the book you will see that nutrition is based on the food that is natively available to where you live and not processed foods. \n5. You may need to eat meat. You may not need to eat it also. Meat is the Greek term for Food. \n6. King James Bible\nAnd God said, Behold, I have given you every herb bearing seed, which is upon the face of all the earth, and every tree, in the which is the fruit of a tree yielding seed; to you it shall be for meat. -- [source](https://biblehub.com/genesis/1-29.htm)\n7. Here is a link to the above book referenced: https://a.co/d/bYI4yNA\n\n\n https://example.com/ 876 446971 446937.446971.447310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.070377184959 0 \N \N f 0 \N 0 80758446 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N 2025-03-28 12:35:15.288 f \N \N \N 0 0 0 0 0 0 0 435872 2025-03-13 03:46:09.41 2025-03-29 22:39:51.963 \N this is only half the story. What people fail to understand is that hyperinflation, where it happened, was never a result of internal policy failures or just of money printing; it was always a result of having debt and other liabilities in another currency they CAN'T print. This was German hyperinflation, which had reparations debt in gold mark and physical goods. this is Zimbabwe, Venezuela, Argentina. The currency they CAN print doesn't serve to buy goods on the world market or pay their external debts. \n\nThe US, however, can do that - UNTIL NOW - because the currency the US prints just drains away in the coffers of the world, in world reserves for international trade, as countries buy up dollars to circulate them, often among themselves, to pay for all sorts of goods and resources. (this is the US' free lunch, it produces dollars for nothing and gets all the world's good back; you could also call it a robbery, as it does it by threat of physical force).\n\nThe problem isn't the debt service, or the money printing, by itself. It's those things, combined with the fact that the qworld has had enough of being robbed by 850 worldwide bases, jet fighters and aircraft carriers, through their buying of US rtreasuries and denominating goods in dollars. That's the part that will make the currency hyperinflate: the debt and printing PLUS the fact that this printed paper can no longer be dumped on the world for free goods. https://example.com/ 16282 435803 435359.435560.435803.435872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7539126079243 0 \N \N f 0 \N 0 213556748 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 2025-03-20 04:04:36.093 f \N \N \N 0 0 0 0 0 0 0 1317 2022-09-11 16:02:45.105 2025-03-29 22:39:52.194 \N Please, if you are so worried about paying taxes, just give me all your sats. Go back to your fiat shitcoin USD.\n\nFor fuck sake: TAXATION IS THEFT! Why do you keep paying taxes to mafia? Why do you support robbery? https://example.com/ 1389 1253 1247.1250.1253.1317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2419160973687 0 \N \N f 354302888 \N 3 59390695 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444071 2025-03-19 16:44:39.385 2025-03-29 22:39:52.196 \N Could you use a GCN and RL to select transactions for eviction?? \n\nThat's a research paper. https://example.com/ 5794 443787 443593.443614.443774.443787.444071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.803541998439 0 \N \N f 182820271 \N 3 49281437 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 410489 2025-02-20 14:01:28.381 2025-03-29 22:39:52.439 \N Canada produces 85% of the worlds maple syrup! https://example.com/ 2016 410486 410486.410489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.33624322225 0 \N \N f 138909268 \N 1 14805860 0 f f \N \N \N \N 410486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413592 2025-02-23 11:23:26.493 2025-03-29 22:39:52.447 \N I always think about this guy when I think about being a territory founder:\n\nhttps://www.youtube.com/watch?v=hO8MwBZl-Vc\n\n_especially when it comes to these non-bitcoin related territories. ~crypto may be at a weird spot in between though._\n\n> **Pinned Posts**\n>\n> I know this is planned, but I have to repeat myself and mention it again. I really think this will help with building a territory’s identity and create incentives for stackers to write quality content. This can’t happen soon enough. Owners can reward the best posts by pinning them, where they will have exposure to "prime real estate" and hopefully earn more sats.\n\nGood point, _sounds_ easy enough to do. I will look into it this week. I also want them sooner than later. https://example.com/ 16667 413534 413523.413534.413592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0031725013964 0 \N \N f 772149904 \N 6 82395599 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443314 2025-03-19 08:56:41.424 2025-03-29 22:39:51.957 \N There's a lot of nuance required to answer this question. I'll try to break the privacy concerns into a few broad categories with their high level issues:\n\nInformation you broadcast as a public node (gossip)\nThis could include an IP address and anything you put in the node alias.\nThe mitigation here is either to not be a public node (open only private channels and be okay not routing payments) or to connect only via Tor and announce an onion address.\n\nLinking your channel funding transaction to your node.\nMitigations: mix your utxo first, don't announce your node.\nThe combination of taproot channels and an updated gossip protocol will likely help with this in the future by breaking the 1:1 linkage of on-chain utxo to channel announcement, but this is an issue now.\n\nSpending\nSpending is fairly private by default. Issues are when outsourcing your routing you dox your payment. If you run your own full node, this shouldn't be an issue, but mobile wallets may try to do this for an improved UX. For users of phoenix, multiple trampoline hops could help here in the future, there just aren't enough trampoline nodes currently.\nProbing is also an issue - monitoring changes in channel balances by periodically trying to send payments through. These payments are designed to fail, but depending on where they fail, some information about channel balances is leaked. Reducing htlc_maximum_msat can help here. Also, this only applies to public channels.\n\nReceiving\nThis is the worst privacy aspect of LN currently - BOLT 11 invoices pretty much dox your node. Blinded paths (a default feature of BOLT 12) will help here. The BOLT 12 specification is fairly well fleshed out, but still needs wider usage and formal adoption. https://example.com/ 641 443295 443295.443314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2672025176115 0 \N \N f 0 \N 0 207945272 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:34:00.046 f \N \N \N 0 0 0 0 0 0 0 434432 2025-03-11 22:06:35.224 2025-03-29 22:39:51.958 \N > After almost 15 years, less than 200M Bitcoin users, which is terribly low.\n\nYou are thinking about Bitcoin wrong. Bitcoin is not an "app" or platform like Facebook. It's a base level technology with the easiest comparison being to the Internet itself. It will stand the test of time for decades, just like the Internet, thanks to the extremely powerful Network Effect with Bitcoin companies coming into existence and falling away regularly.\n\nThe Internet uses TCP/IP to transfer **information** over a global network.\nBitcoin uses BP/LN (Bitcoin Protocol / Lightning Network) to transfer **value** over a global network.\n\nThe building of networks, especially organic ones with no marketing department like the Internet or Bitcoin, takes many, many years. Decades in fact. The Internet as we know it started way back in 1973. After ~20 years there was still only about 1M users, so given Bitcoin has amassed 200M in only 14 years, it should indicate that it's actually growing faster than the Internet and doing very well!\n\nLower your time preference. The next billion Bitcoin users will be adopted as the network grows exponentially over the next 10 or so years.\n\nSource: Engineering degree in Telecommunications and [Wiki](https://en.wikipedia.org/wiki/History_of_the_Internet#/media/File:Internet_Hosts_Count_log.svg) https://example.com/ 2757 434115 433828.434115.434432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.0209374839365 0 \N \N f 0 \N 0 72688100 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-20 06:38:46.567 f \N \N \N 0 0 0 0 0 0 0 435001 2025-03-12 11:53:14.334 2025-03-29 22:39:51.959 \N \nKnuth (the grandfather of modern programming) used warn against "premature optimization" in computer science - that is spending time optimizing code in V1 of the codebase is probably futile because as the code (and requirements) matures, you will find you shot yourself in the foot. \n\nI'm happy we didn't prematurely optimize bitcoin and instead it worked out where Satoshi took out a bunch of OPCODES early on (like CAT) and left us with a more sparce set of tools. \n\nIts not clear why any of these OPCODES are really needed. I appreciate that things like OP_CTV are probably fairly low risk and offer good expressiveness - HOWEVER, lets suppose that CTV is a hit and offers no bugs.....so are we happy with more things going onto layer1? Are we ok if fees go up 50% to handle all the new "smart contract" features we've added?\n\nLastly, there is a social cost: We must acknowledge that any such initiative is going to cause a bit of a public fight...there are more stakeholders than just the group of devs being included on these "beauty contest" polls. Such a public fight is going to come at a bad time with nation states and large institutions starting to adopt bitcoin. The enemies of bitcoin are going to FUD any of these efforts and will push lies and fear mongering on social media about "new bugs" they've found (which may just be total lies, but the goal is to simply cause more uncertainty).\n https://example.com/ 17095 434665 434665.435001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9191925051614 0 \N \N f 0 \N 0 107270226 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N 2025-03-19 19:05:48.365 f \N \N \N 0 0 0 0 0 0 0 424298 2025-03-04 00:14:51.452 2025-03-29 22:39:51.96 \N Same experience here, bar you becoming a sort of money services business for your friends and family to run custodial accounts via your node, having a personal node with a few channels isn't going to get you dick.\n\nLN is still focused on specific custodial hubs wos, wallets with LNDHubs and exchanges, the ordinary node runner will lose more sats than they make especially when learning the ropes \n\nI think having an LN node needs to be paired with having a business that uses LN at this point, to encourage flow in both directions https://example.com/ 20502 417848 417848.424298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3202160014765 0 \N \N f 234575682 \N 1 99289108 0 f f \N \N \N \N 417848 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435614 2025-03-12 20:20:53.329 2025-03-29 22:39:51.963 \N I was disappointed that freebitco.in didn't have week 1 games. Hopefully at some point this season. \n\nI am fiddling with this fan duel account I signed up for because they essentially gave me $50 for free as they had a promotion for a prop bet on Mahomes getting 1+ plus completion Thursday. Was free money unless he got hurt on the first series like Rodgers did last year. Anyways, they do these promotional parlays and profit boosts and all this crazy stuff to try to get you addicted. I am trying to extract every penny I can from those rat bastards this season by only playing their promotions, odds boosts and freebies etc. I will let you know by end of season how I am doing. Currently I have turned my $50 deposit into $135. \n\nWhatever profit I have at the end of the season I will sweep into Bitcoin. I am going to be the Microstrategy of degen sports gambling. https://example.com/ 16680 435327 435327.435614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4597077360576 0 \N \N f 0 \N 0 88283651 0 f f \N \N \N \N 435327 \N 0 0 \N \N f \N 2025-03-19 18:41:50.906 f \N \N \N 0 0 0 0 0 0 0 434681 2025-03-12 06:34:36.918 2025-03-29 22:39:51.96 \N _Okay, I got [nerdsniped](https://xkcd.com/356/) by this, haha_\n\nDid some little "reverse engineering" [0]. I tried [`file`](https://man.archlinux.org/man/file.1.en) on the encrypted wallet file but it came up empty handed:\n\n```\n$ file wallet.mv.db\nwallet.mv.db: data\n```\n\nBut afaik, all `file` does to identify a file is to look at the file signature (also known as [magic bytes](https://en.wikipedia.org/wiki/List_of_file_signatures)):\n\n> This manual page documents the format of magic files as used by the [file(1)](https://man.archlinux.org/man/file.1.en) command, version 5.45. The [file(1)](https://man.archlinux.org/man/file.1.en) command identifies the type of a file using, among other tests, a test for whether the file contains certain “magic patterns”.\n\n-- https://man.archlinux.org/man/core/file/magic.5.en\n\n_(ok, apparently only "among other tests")_\n\nSo why not just look at the magic bytes ourself?\n\n```\n$ hexdump -C -n32 wallet.mv.db\n00000000 48 32 65 6e 63 72 79 70 74 0a fa 3e 4a fb 1e 2f |H2encrypt..>J../|\n00000010 99 ff 53 50 52 57 31 0a 5c 89 26 f0 23 97 3c 73 |..SPRW1.\\.&.#. Welcome to H2, the Java SQL database. \n\nThis makes sense since Sparrow indeed is written in Java.\n\nThe [security docs](https://www.h2database.com/html/security.html) however mention this:\n\n> **Encrypted storage**\nEncrypting your on-disk database will provide a small measure of security to your stored data. You should not assume that this is any kind of real security against a determined opponent however, since there are many repeated data structures that will allow someone with resources and time to extract the secret key.\n>\n> Also the secret key is visible to anything that can read the memory of the process.\n\nMhh, that doesn't sound good 🤔\n\nI asked in the TG group. Let's wait for an answer before jumping to conclusions. I also didn't take a close look at the source code yet.\n\n[0] _not sure if this already counts as reverse engineering_ https://example.com/ 10484 434637 434637.434681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.845231037995902 0 \N \N f 0 \N 0 89440293 0 f f \N \N \N \N 434637 \N 0 0 \N \N f \N 2025-03-19 00:13:42.939 f \N \N \N 0 0 0 0 0 0 0 338168 2024-12-22 13:32:34.483 2025-03-29 22:39:51.963 \N What about gold though? Gold is barely up if at all relative to 2020. https://example.com/ 12738 337715 337715.338168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.734713910952 0 \N \N f 275424060 \N 2 42815564 0 f f \N \N \N \N 337715 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436495 2025-03-13 15:34:38.288 2025-03-29 22:39:51.964 \N Since his last known message was on 26 April, I have been reading up on Satoshi Nakamoto’s quotes to honour his work and think about how to present them in an arresting blog article for people to understand his spirit and genius mind. https://example.com/ 10698 436490 436460.436488.436490.436495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6095469093603 0 \N \N f 144869565 \N 1 186859392 0 f f \N \N \N \N 436460 \N 0 0 \N \N f \N 2025-03-20 09:47:11.142 f \N \N \N 0 0 0 0 1 0 0 428476 2025-03-07 10:23:52.116 2025-03-29 22:39:52.194 \N Realistic signs that btc is failing:\n\n- block reward / fee-rate make mining turn weird and intermittent and centralized\n- for that reason or others, governments have big influence on mining, esp wrt censorship of naughty transactions\n- supply centralizes vs decentralizes\n- many existing UTXOs become dust\n- exchanges are shut down en masse\n\nThese different aspects exist in complex relation w/ each other that are hard to game out without getting _super_ detailed, but these are some of the axes of failure.\n\n(It is inevitable that someone will bitch about how the last one is irrelevant bc _1 btc = 1 btc_, but if you live amongst other humans in broader society, as I do, the ability to buy goods and services directly w/ btc, without the buyer / seller translating into or out of fiat, is minimal. \n\nThis may be the most material form of failure to people who aspire to use btc as money instead of as an object for religious veneration.) https://example.com/ 628 428473 428292.428422.428473.428476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3876146032655 0 \N \N f 60312386 \N 1 184722185 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422663 2025-03-02 15:54:50.692 2025-03-29 22:39:52.196 \N In addition to those:\n\nHad to double check it wasn't the question asker themselves...\n@birdeye21 - Always has great discussion questions\n@pillar - O Captain my Captain! pillar has the Operation Saylor series\n@orthwyrm - I remember a time before the snail...dark days that was\n@kr - turned us into cowboy hat degens :D\n\nI could go on and on, there's a crazy amount of good content here https://example.com/ 16149 422660 422334.422660.422663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0535343811316 0 \N \N f 1272563234 \N 9 170738258 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 392677 2025-02-05 13:14:52.468 2025-03-29 22:39:52.196 \N Very good idea!\n\nStart with some memes. Are more attractive for young.\n\n[![vader-thinking-start-now.jpg](https://i.postimg.cc/2yHJ6qDx/vader-thinking-start-now.jpg)](https://postimg.cc/RJHGpZq3) https://example.com/ 2492 392486 392486.392677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.47465916618948 0 \N \N f 336024825 \N 2 48259482 0 f f \N \N \N \N 392486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 137881 2024-03-06 17:30:48.109 2025-03-29 22:39:52.199 \N I should preface this by saying I have not read the book.\n\nI feel like the concept of Network States can only thrive when they bridge into our physical world, by offering safe travel, shared skills or by offering benefits like legal representation.\n\nIt’s clear there is a shift and movement to online communities, but people are just happy to limit this discussion to shitposting & giving opinions, and distracting themselves from their real lives. This chatter is like spam to the idea of a Network State, it gets in the way of coordinated action.\n\nNetwork States to me only reach their potential when there is a geographical HQ, however small, to build from, to meet or to reallocate resources from. It cannot just be distributed and located in the fetaverse. We would otherwise have seen them emerge already.\n\nWhat Balaji has effectively done is rebrand the popular view that we will see smaller Sovereign Communities, who can generate outsized returns, no longer requiring economies of scale. He’s a very good salesman, but not yet to me a visionary. https://example.com/ 20599 137862 137821.137862.137881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.11275568076886 0 \N \N f 279246857 \N 2 180690136 0 f f \N \N \N \N 137821 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424270 2025-03-03 23:37:24.735 2025-03-29 22:39:52.444 \N Translated some posts to german\n* https://portal.einundzwanzig.space/news/offener-brief-an-bitcoiner?l=de\n* https://portal.einundzwanzig.space/news/lightning-prismen?l=de https://example.com/ 15103 394203 394203.424270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.12394947602034 0 \N \N f 85463967 \N 1 78460498 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410392 2025-02-20 13:11:39.647 2025-03-29 22:39:52.447 \N Life is like a pendulum that swinging back and forth. In the momentum of moving from one side to the next is where progress happens. I believe this is a health way for anything to evolve. Stability on one side, and change on the other. https://example.com/ 12102 410384 410358.410384.410392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3440668621654 0 \N \N f 484978065 \N 4 237695719 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402594 2025-02-13 20:54:34.101 2025-03-29 22:39:52.447 \N >People will NEVER learn the lessons from FTX, BlockFi, Nexo, Crypto etc all those scams promising high returns from loans backed with your BTC.\n\nYou are misunderstanding how the loan works. Its not "your" btc. You didn't put up anything....you are free to go get a traditional mortgage and pay it off. \n\nIf, however you are bullish on bitcoin AND need a loan for a house, this option allows you to get a house in far less time than it normally takes. \n\n https://example.com/ 20681 402105 402105.402594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1634355604255 0 \N \N f 409733724 \N 2 114592077 0 f f \N \N \N \N 402105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424099 2025-03-03 20:31:56.013 2025-03-29 22:39:52.193 \N I'm reaching my limited depth here, but here's we go..\n\nLife, as we know it, is characterized of written in Chinese language (simplified) like:\n\n生活 shenghuo (it's pretty 1 to 1 with 'life' in all its senses in English. As a noun or can be used as an adjective. So, we can make 生人 or 活人 which I believe is interchangeable.\n\nNow, for the purpose of designating a living man, (in the sense of a legal living person) often there is the use of 人身 (living body of a human being; person)\n\nMy dictionary cites an example: \n\n人身 renshen - living man\n不可 buke - cannot\n侵犯 qinfan - violate, infringe (upon) invade..\n\n人身不可侵犯 - inviolability of the person.\n\nalso, searching out that sense we have:\n\n人身安全 - renshen anquan - personal safety\n人身保护令 - renshen baohuling - habeas corpus\n人身权 - renshenquan - right (as in personal, or human rights)\n人身自由 - renshen ziyou - personal freedom (or liberty); freedom of person\n\n\n https://example.com/ 15060 424094 423384.423591.423593.423595.423601.424009.424015.424037.424049.424082.424094.424099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3463109895737 0 \N \N f 702256793 \N 5 195858169 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437508 2025-03-14 15:09:47.89 2025-03-29 22:39:52.195 \N @k00b I know you are working on the SN subs features.\nHere are some thoughts about those subs. Maybe can inspire you for later. Maybe are too many rules, you know better, pick what you like. I am just throwing ideas.\n\nsub owner can set his own fees policies for posting in that sub or for a post inside the sub:\n- only cowboy hats can post or free for all\n- only SN accounts older than x time can post\n- set specific min fee for a post comment\n- set where to go the sats from post comments\n- set where to go the sats received for the post\n- disable comments on a post (maybe the author do not want comments)\n- set a % of all sats received in that sub to go automatically to SN or FW to somebody else. https://example.com/ 8713 437506 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4905490637806 0 \N \N f 1116669736 \N 10 198350749 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423962 2025-03-03 18:38:29.576 2025-03-29 22:39:52.439 \N Like the question. My 2 sats are:\n- Ads will exist, but their influence will be much less in future.\n- If people have less disposable income to spend, the ads will become prohibitively expensive.\n- Not to mention tracking is proving more challenging given big tech is limiting micro-targeting.\n- Also, I wonder if we all in 10 years were to have a personal AI, why do you need adverts? When it knows what you want and will buy/recommend the things you need and want. They will know us better than ourselves.\n- I feel like we've been living in an advertising bubble these last 10 years. The internet experience has got so out of whack on a user experience level, with clickbait titles, free returns, fast-fashion, privacy popups and the like. It's not going to sustain itself. It's too distorted.\n- Value on all fronts is making a comeback. We'll all be supporting each other much more within our communities I expect.\n- Just look at SN flourishing today. It's a model that has traction & growth. Ads will exist but instead of being 80-90% of revenue for content creators, I believe it will be back to 15-20%. Creators are going to need to hustle again and that's the way it should be if we want a productive society. https://example.com/ 18529 423951 423928.423951.423962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0362624514841 0 \N \N f 1340503975 \N 10 91397327 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 422857 2025-03-02 18:38:34.601 2025-03-29 22:39:52.445 \N Possible bug from yesterday's release:\n\nMy daily rewards put me ~4400 over my autowithdraw limit last night. At first, I thought there was just an issue with notifications getting posted multiple times:\n\nhttps://i.imgur.com/MF60dKK.png\n\nThen I checked my Alby wallet:\n\nhttps://i.imgur.com/nZeJKGK.png\n\nNot the end of the world, obviously, but man, my balance on SN hasn't been this low in a while. :-) https://example.com/ 21047 422856 422856.422857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0059773286415 0 \N \N f 73087888 \N 1 194793365 0 f f \N \N \N \N 422856 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437417 2025-03-14 13:56:59.927 2025-03-29 22:39:52.447 \N > that nonstandard address should appear on bitcoin explorers as the plain text term "non-standard" but the transaction author knew that mempool.space has a naive/buggy address parser and exploited that to make the address look like a valid-but-incredibly-short segwit address\n\n"bc1pfeessrawgf" is the correct address rendering for this output, since it *is* a valid segwit v1 witness program, even though the combination of witness version & program length does not correspond to any defined spending rules.\n\n(although the 2-byte `0x4e73` output script does match a proposal for [ephemeral outputs](https://github.com/bitcoin/bitcoin/pull/30352)).\n\nFun fact: undefined segwit outputs like this are completely standard to create, and only non-standard to *spend*.\n\nHowever, this transaction did prompt us to fix a bug on mempool.space that calculated the dust limit incorrectly for this kind of output, which caused the transaction to be falsely labeled as non-standard for a short time. https://example.com/ 19829 437411 437408.437411.437417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.82429915345384 0 \N \N f 79176437 \N 2 210025813 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428658 2025-03-07 13:48:49.741 2025-03-29 22:39:52.447 \N British food is awful. They developed one of the most powerful naval forces in history because all the flavorful food was not near them. Sailing all the way around the southern tip of Africa or South America to get lunch got old, and so they came up with the idea of sailing over the top of Canada. Obviously, only the British would solve a problem this way.\n\nWhaling captains had already been sailing into the North (because of another British idea: let's burn whale brains to light our homes) and pretty much knew that a sea-route over the top of Canada was never going to be a cost-effective way to get to good food. However, none of the people in the British navy listened to the whalers because they thought they were blue-collar rednecks. Thus began two centuries of arctic disaster culminating in the woeful search for the lackluster hero Sir John Franklin and the dubious claim that he completed the first circuit of the Northwest Passage (even if it was as a frozen corpse).\n\nShould have listened to the whalers.\n\nAlso: thanks for the kind words. It's a rare mirror that shows you the hard to see sides yourself. https://example.com/ 1745 428441 428441.428658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9380485648951 0 \N \N f 175851081 \N 1 194252938 0 f f \N \N \N \N 428441 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430940 2025-03-09 14:21:11.554 2025-03-29 22:39:52.678 \N How do you envision the next five years of the lightning ecosystem evolution playing out? What is your most optimistic outlook for what the world could look like in five years with Lightning (and Bitcoin)? https://example.com/ 14258 427762 427762.430940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2537344486384 0 \N \N f 131832059 \N 1 115423951 0 f f \N \N \N \N 427762 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407461 2025-02-18 03:22:38.205 2025-03-29 22:39:52.679 \N You're very wrong. I don't even mention the price a single time in my text... https://example.com/ 16653 407400 407400.407461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1184545761556 0 \N \N f 108007102 \N 2 169110806 0 f f \N \N \N \N 407400 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447136 2025-03-21 16:29:54.642 2025-03-29 22:39:52.194 \N @sn would be a Meme Monday contest today?\nI prepared a new meme for that.\nI don't want to win the prize. If I win I will fw the sats to Anita.\nI just want it for fun.\nBut anyways I wish luck to all other participants in the contest.\nGuys, please try to be more spontaneous and unique, creating your own memes, not just recycling the old ones. https://example.com/ 14503 447123 445518.445696.445701.445709.447001.447050.447102.447123.447136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4907154127604 0 \N \N f 195540629 \N 1 36210333 0 f f \N \N \N \N 445518 \N 0 0 \N \N f \N 2025-03-28 11:13:34.653 f \N \N \N 0 0 0 0 1 0 0 443419 2025-03-19 10:45:20.96 2025-03-29 22:39:52.194 \N Humility like this is very rare these days.\n\nEveryone is usually very quick to form an opinion, from few interactions. “Strong opinions, loosely held” is not optimal when it comes to interacting with people’s money. https://example.com/ 21506 443367 443367.443419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4678559150283 0 \N \N f 212307691 \N 1 245312507 0 f f \N \N \N \N 443367 \N 0 0 \N \N f \N 2025-03-26 04:12:49.278 f \N \N \N 0 0 0 0 1 0 0 426664 2025-03-05 18:48:22.012 2025-03-29 22:39:52.196 \N Empathy. Something a lot of people on Twitter seem to be lacking. https://example.com/ 8380 425873 425873.426664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.13026258336 0 \N \N f 119693867 \N 2 228349138 0 f f \N \N \N \N 425873 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 442600 2025-03-18 17:21:02.741 2025-03-29 22:39:52.196 \N It's worth saying that I have no idea how an undertaking like this would play out in this medium, but seems a worthy experiment. https://example.com/ 4768 442084 442084.442600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2907150359193 0 \N \N f 515893087 \N 3 66101085 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457849 2025-03-28 18:47:07.514 2025-03-29 22:39:52.197 \N - upgraded our infrastructure on monday because our nodejs version was deprecated and the fireworks required ECMAScript 2022 \n- reviewing/testing/deploying pwa push stuff\n- made finishing touches to the v4 algo (super happy and excited about it)\n- going to integrate and deploy the v4 algo\n- then I'm going to spin up an image proxy as a microservice foreshadowing moving SN to a microservice infrastructure https://example.com/ 21072 457842 457771.457823.457825.457842.457849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.09936461493899 0 \N \N f 209469574 \N 2 178636495 0 f f \N \N \N \N 457771 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435260 2025-03-12 15:03:55.98 2025-03-29 22:39:52.443 \N There were multiple reasons for us to decide to leave Ethereum.\n\nWe were frustrated with the community and the fact that everyone felt the need to create their own token. Not to mention that the jenga tower and the architecture of smart contracts creates a huge attack surface. \n\nAt the same time that this was happening, DLCs were becoming more mature, which meant it was finally possible to create financial contracts directly on Bitcoin. No shitcoins, no tokens, no BS. \n\nSo we asked ourselves, what's going to be around in 20 to 30 years? Ethereum, maybe, maybe not. But Bitcoin definitely is, and we want to build infrastructure for the long term. \n\nSince then, we've gone Bitcoin-only, and have never looked back. \n\nWe also wrote a blog post regarding this: https://atomic.finance/blog/an-atomic-pivot/ https://example.com/ 2195 435257 435217.435257.435260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2876897214495 0 \N \N f 145126566 \N 3 60489916 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 18:24:37.404 f \N \N \N 0 0 0 0 1 0 0 444444 2025-03-19 22:04:01.03 2025-03-29 22:39:52.444 \N Looks like SN posted the markdown you've published here as kind:1 event, which isn't supposed to have markdown - just plain text. Some apps like Amethyst support it, some don't, and it's discouraged by many afaik. @k00b maybe consider publishing posts as long-form kind:30023 ? https://example.com/ 5904 444436 443712.443834.444412.444416.444436.444444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.63610419098379 0 \N \N f 303031987 \N 2 115478126 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415892 2025-02-25 08:13:24.355 2025-03-29 22:39:52.445 \N This changes over time. \n\nWhen I was a kid and teenager, it was mixed martial arts. I spent 12 years doing increasingly competitive mixed martial arts, became a second-degree black belt in my particular federation of schools, and became an assistant instructor as my first job. I watch some UFC with my husband because it's the only sport I understand at a pretty deep level. \n\nI was also into trading card games, mainly Magic the Gathering. And still am, but it comes and goes in waves.\n\nAlthough I haven't played any in two years due to work overload, video games have been a lifelong hobby of mine. From Nintendo and Playstation, to Starcraft, to Overwatch, etc. I've been so busy in the past 2-3 years because the macro environment has been absolutely crazy, and diving into the bitcoin rabbit hole has been another full time job. My work has therefore also been my hobby, at least for this period of time. All in.\n\nWatching movies or shows with my husband, and discussing/debating with him about their content and execution.\n\nLearning in general is a hobby of mine. I went through a phase where I read every major religious text, and a phase where I went through all the major world philosophies. I like to understand how people think in terms of what their highest ideals and frameworks are, and how they differ, and what their commonalities are. Back when internet forums were more of a thing, I was an admin on a religion/philosophy forum.\n https://example.com/ 8459 406927 403036.403695.403851.406927.415892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8664407218921 0 \N \N f 140837491 \N 1 102368929 0 f f \N \N \N \N 403036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434057 2025-03-11 15:28:38.659 2025-03-29 22:39:52.446 \N The easiest thing for someone new who is just experimenting is to pick a reputable software wallet. Mobile environments tend to be more secure than desktop, so I'd go with those. There's a vast selection of mobile wallets to choose from, but I recommend something like BlueWallet to get you started.\n\nWhen you create your first wallet, you'll be prompted to write down a 12 / 24 word seed phrase. That's your backup. Keep it written down on paper and never store it digitally.\n\nEven if you loose your phone, you can restore access to your funds so long as you have the seed phrase. It's very important you keep that seed phrase hidden away, because anyone who has it can steal your funds.\n\nThat's step #1. If you end up dealing with larger sums you really cannot afford to lose, you'll need to step up your security. When you get more confident, you can look into hardware wallets / cold storage systems, passphrases, multi-sig, etc. There's an entire industry based around keeping your private keys secure, and it takes time to learn and explore. Don't rush!\n\nFor further info I recommend checking out the r/bitcoinbeginners sub-reddit and BTC Sessions on Youtube (@BTCsessions)\n\n https://example.com/ 21079 434020 433828.433999.434020.434057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9623699423904 0 \N \N f 504135160 \N 3 74852465 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 1196 2022-09-06 21:08:13.455 2025-03-29 22:39:52.447 \N It's a good point, that what counts as "passive" income is pretty complex. How much is a person willing to do? My friend "passively" makes a nice income with rental properties, but kills himself with the maintenance, responding to issues, etc.\n\nEven the most passive of the passive things are active someplace, even if it's regulatory capture or something weird and indirect.\n\nEDIT: should have read further, @kr [already made this point](https://stacker.news/items/419296/r/elvismercury?commentId=419340). https://example.com/ 8045 1176 1176.1196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.10563216704789 0 \N \N f 156350677 \N 2 197142774 0 f f \N \N \N \N 1176 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435133 2025-03-12 13:42:14.071 2025-03-29 22:39:52.194 \N Not fitting in makes you question what you're not fitting into. \n\n- As a child athlete, I was often the youngest on my teams which made me the default [scapegoat](https://en.wikipedia.org/wiki/Scapegoating#Scapegoat_mechanism) \n- My parents are addicts (mom more than dad) so society's rules were clearly negotiable. (I was also alone emotionally and intellectually for the majority of my childhood.)\n- Until age 13, we lived in [Sunnyvale](https://en.wikipedia.org/wiki/Sunnyvale,_California). My parents are blue collar and I wasn't really conscious of the tech industry, but I was probably affected by the surroundings anyway.\n- My parents went through a bankruptcy when I was ~12. My dad swore off credit for two decades and the whole thing scared me away from credit too.\n- My high school math teacher was ***amazing*** and technology forward. He encouraged us use calculators for everything and taught from experimental textbooks that presented every problem as a word problem. https://example.com/ 20755 435115 435115.435133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.551699554124667 0 \N \N f 583566467 \N 5 69210204 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 2025-03-19 14:35:06.371 f \N \N \N 0 0 0 0 1 0 0 436548 2025-03-13 16:23:46.902 2025-03-29 22:39:52.195 \N Hey guys. Looking for any way possible to come up with a little over 100k sats so I can finally open my first ever lightning channel! Been saving for months and months, as soon as I hit 1m says I'm setting it up! And I'm only a little over 100k away! Any donations would be amazing! Amuna1225@ln.tips https://example.com/ 831 436547 436093.436347.436547.436548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.6794604586571 0 \N \N f 45730605 \N 1 245328748 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:45:40.097 f \N \N \N 0 0 0 0 1 0 0 448373 2025-03-22 15:16:29.1 2025-03-29 22:39:52.196 \N ![20231222_235900.jpg](https://m.stacker.news/10293) https://example.com/ 12819 448349 448349.448373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49736385513013 0 \N \N f 145563612 \N 1 99124891 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 08:49:06.26 f \N \N \N 0 0 0 0 1 0 0 434558 2025-03-12 02:51:33.045 2025-03-29 22:39:52.197 \N ## Tip of the month (April) - make your own detox refresh\n\nWe are about to enter into month of April, the month of flowers and green.\nSo, depending on your geographical region, there's an amazing arbutus plant named Elderberry or Sambucus: https://en.wikipedia.org/wiki/Sambucus\n\nSo I recommend you to make your own delicious refreshment with the flowers of this plant. It's easy and is a natural detox for your liver, blood and heavy metals.\n\nIn April - May, the white flowers of this arbust are easy to find and collect. Collect them with the entire corona.\nThen put them on a paper into the sun to dry fro 2-3 days.\nKeep them in paper bags later in a dry environment. \n\nRecipe:\n- take a big crystal carafe/ bowl, like 5-8L, depending on how much drink you want to make.\n- put a good hand of dried flowers on the bottom of the bowl / carafe\n- add 600-750g of sugar, or honey. For 8L of water, max 750g sugar. Depending on how sweet you want it.\n- add 4 lemons, in slices\n- add 10g of fresh yeast\n- some mint leaves\n- 8L of water\n\nThen leave that recipient into the sun, 3-4 days, moving the content every day, to help the yeast to make its magic. Taste it every day to see if is needed more sugar or lemons, as you feel comfortable. If is too sweet, just add more water.\n\nafter 3-4 days, depending on the sunny days and temperature around 20-25C, you will notice the bubbles.\n\nThen filter the juice out from the ingredients and put it in bottles into the fridge.\nDo not move it 24h. After 24h, if you see a lot of yeast at the bottom of bottle, slowly filter it out into another bottle. Then put it back into the fridge for another 24h.\n\nNow you have an excellent healthy refreshment for your entire spring and summer.\nThank me later. https://example.com/ 13361 434278 434278.434558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1981808071965 0 \N \N f 614243223 \N 6 138766745 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 00:50:20.204 f \N \N \N 0 0 0 0 3 0 0 402980 2025-02-14 10:19:39.871 2025-03-29 22:39:52.199 \N The first time I read about SN, my first thought was 💭🤑 "Great, I found a place to earn SATS."\nIt was a big surprise 😮 when I looked and noticed that earning SATS ⚡ was not as easy as I thought, it was much more complex and it was something merely secondary. The first thing I learned was that the most important thing is the Community, SN helped me understand that, to see how anyone without hesitation helps you in a post or a comment, be it with an opinion, be it with some SATS, a recommendation, a fact or advice.\nSN turned out to be a Library of topics and experiences related to Bitcoin without a doubt the best place to learn about value for value, it also helps me day by day with discipline and focus, coming here daily to express some ideas or learn from the ideas expressed by others is something of great value. On the other hand, it helped me to get my wife closer to Bitcoin topics, now she also has an account and from time to time she plants her ideas and thoughts in SN territories to then harvest some SATS at the end of the week. SN helps me day by day to follow my path of learning about Bitcoin and helps me to develop my thoughts and later want to write them down and share them. Thanks https://example.com/ 21269 402903 402871.402896.402903.402980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8455748983734 0 \N \N f 609160360 \N 4 184263307 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428724 2025-03-07 14:47:34.05 2025-03-29 22:39:52.201 \N Doing something new has been the easiest route to non-correlated inputs for me.\n\nOnce I took a car repair course from a local adult school. I eventually found myself reading books about engine design. So looking through course catalogs at a local adult school or community college might turn up something.\n\nI did BJJ for a few years. The rabbit hole is very deep (which keeps me away from it now) but it was a source of a lot of non-correlated inputs: how non-sexual touch affects feelings of self and others, unspent aggression's role in anxiety (I've never been less anxious than after a good sparing session), and how fine, amazing, and underutilized our bodies are as tools.\n\nGardening was another source for me. Getting into fermentation was another. I spent some time building and upholstering my own furniture. I did a stint as a [buildering](https://en.wikipedia.org/wiki/Buildering) graffiti artist 🍏 and another as an oil painter. \n\nOne of the weirder things I started doing recently that I don't actually have time for is perfume making.\n\nThose are the highlights at least. Much other half-assery omitted. Fiction is the next best source of immersion probably. If stories weren't so hard to write, I'd demand all information be presented as a story. \n\n> Despite feeling strongly about this, I don't think I'm very good at it, which is bad.\n\nBased on the variety of links and discussions you share alone, you're exceptional at this actually. https://example.com/ 1705 428529 428308.428529.428724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.7930535027507 0 \N \N f 31757632 \N 1 140827044 0 f f \N \N \N \N 428308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443048 2025-03-19 01:24:40.209 2025-03-29 22:39:52.443 \N ![](https://m.stacker.news/62209) https://example.com/ 19576 442978 442978.443048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.29910413370289 0 \N \N f 816577716 \N 5 29132514 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 2025-03-26 06:00:14.432 f \N \N \N 0 0 0 0 1 0 0 428422 2025-03-07 09:07:19.666 2025-03-29 22:39:52.446 \N I find these "toxic maxi" debates incredibly boring because it's nothing but generalizations targeting the lowest common denominator on Twitter. https://example.com/ 4173 428292 428292.428422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.41709582318439 0 \N \N f 473646731 \N 4 39803406 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436320 2025-03-13 13:19:48.018 2025-03-29 22:39:52.197 \N Organic Maps is brilliant. I like that you can export and import your places, and that you can have multiple sets of place, plus offline everything, and it's so nice to not have any tracking or ads. I use it almost daily. I like the ability to route from and to any two points, independent of where you are.\n\nI can also add:\n\n- [LibreOffice Viewer](https://f-droid.org/packages/org.documentfoundation.libreoffice/) which allows you to open any Microsoft Office document (excel, word, etc). It's handy when someone emails you one of those and you need to have a quick look on the phone.\n\n- [Aegis](https://getaegis.app/) is a great open source authenticator.\n\n- [Voice](https://f-droid.org/packages/de.ph1b.audiobook/). Audiobook player\n\n- [Vynil](https://f-droid.org/packages/com.poupa.vinylmusicplayer/), music player\n\n- [VLC](https://f-droid.org/packages/org.videolan.vlc/). Video player\n\n- [RHVoice](https://f-droid.org/packages/com.github.olga_yakovleva.rhvoice.android/). Voice synthesizer (so that other apps can "talk")\n\n- [AntennaPod](https://f-droid.org/en/packages/de.danoeh.antennapod/) podcast manager\n\n- [Catima](https://f-droid.org/packages/me.hackerchick.catima/), loyalty cards\n\n- [DavX5](https://f-droid.org/packages/at.bitfire.davdroid/), CalDAV/CardDAV management and synchronisation (to sync contacts, calendar, files from your own server)\n\n- [KDE Connect](https://f-droid.org/en/packages/org.kde.kdeconnect_tp/), seamless communication back and forth between your phone and computer.\n\nEtc... there are plenty more, but those come to mind, all open source, and great https://example.com/ 20981 436290 436290.436320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4098926580241 0 \N \N f 6320683 \N 1 161344849 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 2025-03-20 09:39:15.643 f \N \N \N 0 0 0 0 1 0 0 434177 2025-03-11 16:40:37.381 2025-03-29 22:39:52.203 \N Whatever you think - make peace with the idea that any design decision Apple makes will ripple through the industry.\n\nIt happened with the headphone jack, the notch, the whole concept of how smartphones should look... It will shape VR and on-device AI as well. https://example.com/ 16230 433844 433844.434177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.8941353382835 0 \N \N f 408197532 \N 4 88440515 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 2025-03-19 02:09:17.019 f \N \N \N 0 0 0 0 2 0 0 423986 2025-03-03 19:03:49.604 2025-03-29 22:39:52.441 \N > [Banco] offers a non-custodial solution for traders\n\nIt does not. Liquid has custody of the money.\n\n> Existing alternatives often rely on co-signing schemes, necessitating participants to be online and accessible over the public internet, which compromises the privacy and user experience of trading participants.\n\nI think I can restate this problem: "your app will not be popular if it requires interactivity, because users hate waiting for someone else to act." Their solution to this problem is basically "let Liquid have custody of your money, they'll handle it -- and don't worry, it's close enough to self-custodial. You may not have your money but someone else does and that's good enough."\n\nI personally prefer a self-custody solution even when it means I have to get online several times to see if my counterparty acted yet. Also, I think it is possible to mostly resolve this by showing users a dialog such as this:\n\n> If you use our web or mobile interface, it will work just fine, but you'll have to come to the site 2 different times, a maximum of 3 days apart, once to set up the swap and a second time to cosign your counterparty's transaction. If you use our desktop app or click this button to deploy it on AWS ($2 fee), you get a one-click solution, because the app will stay online, cosign as soon as your counterparty is ready, and then alert you that your trade is done. (If you deploy it on your desktop, make sure you desktop stays on for the full 3 days or until the trade is done, whichever comes first.)\n\nThat gives the users freedom to retain custody of their funds and resolves the interactivity issue. The user doesn't *have* to come back online later if they deploy the desktop app on their own device or, temporarily, on some cloud service for a small fee. https://example.com/ 13038 423980 423980.423986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0398715160096 0 \N \N f 180124818 \N 1 210066864 0 f f \N \N \N \N 423980 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402754 2025-02-14 01:34:22.491 2025-03-29 22:39:52.443 \N Pretty good! Is this Peter's first foray into substack, or is it just a re-brand to Mr Obnoxious? I don't remember reading anything he wrote before. I know he's into AI, so I'll keep a lookout for telltale signs. https://example.com/ 11522 402727 401283.401346.401403.401520.402058.402078.402727.402754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3122563610228 0 \N \N f 232033763 \N 2 138853581 0 f f \N \N \N \N 401283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 445531 2025-03-20 16:03:03.505 2025-03-29 22:39:52.443 \N Besides the Davosian agenda? Me, running out of vino, sitting in a village in no man's land. https://example.com/ 658 444786 443799.443861.444786.445531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.47379427918768 0 \N \N f 315682906 \N 3 109513328 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443652 2025-03-19 12:52:34.143 2025-03-29 22:39:52.446 \N Tarrare, the French soldier with an insatiable appetite:\n\nhttps://en.m.wikipedia.org/wiki/Tarrare\n\n> [Tarrare] became the subject of a series of medical experiments to test his eating capacity, in which, among other things, he ate a meal intended for 15 people in a single sitting, ate live cats, snakes, lizards, and puppies, and swallowed eels whole without chewing. Despite his unusual diet, he was underweight and, with the exception of his eating habits, he showed no signs of mental illness other than what was described as an apathetic temperament. https://example.com/ 20755 443372 443372.443652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.84637549212835 0 \N \N f 159424648 \N 2 122665135 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 06:09:59.024 f \N \N \N 0 0 0 0 1 0 0 408243 2025-02-18 16:44:00.532 2025-03-29 22:39:52.447 \N Yea the chief issue is inadequate LN adoption like ekzyis said. It's not enough. On the other hand, you need an event like this to incentivize LN development. \n\nFor me personally this was a short-term pain in the ass — since I hadn't been following in a week and showed up innocently expecting to make an L1 move today that I've changed my mind about 👀 — but that's not a big deal. \n\nI did go on YouTube to see videos from the dozens of crypto scammers fueling this. Probability of this ending in blood, tears, and fire 🔥 for them ... 99%. https://example.com/ 20588 407903 407903.408243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1004887053565 0 \N \N f 148260744 \N 1 210895332 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436138 2025-03-13 10:48:56.353 2025-03-29 22:39:52.682 \N There is no bad that doesn’t come for the good https://example.com/ 4989 436128 434795.434801.436128.436138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0366046592495 0 \N \N f 230538614 \N 1 224094489 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-20 05:38:10.954 f \N \N \N 0 0 0 0 1 0 0 424285 2025-03-04 00:00:33.572 2025-03-29 22:39:52.683 \N imo, talking about who is or isn't Satoshi is a waste of time.\n\nSure, it's interesting but why do we want to know?\n\nIf Satoshi ever shows up again, nothing good will come from it.\n\nThere are too many people who are used to authority and will gladly agree with whatever Satoshi says. Bitcoiners are no exception.\n\nSatoshi disappeared for a reason. We should respect that reason.\n\n> People want an authority to tell them how to value things, but they choose this authority not based on facts or results. They choose it because it seems authoritative and familiar.\n\n-- quote from the movie _The Big Short_\n\nedit: kind of funny to quote this below a link to Lopp's blog https://example.com/ 19777 424282 423928.424260.424266.424282.424285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6464249254726 0 \N \N f 939355262 \N 5 119553535 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430590 2025-03-09 10:48:47.412 2025-03-29 22:39:52.197 \N > The biggest flaw in the Fedimint narrative is that there will be all these community fedi mints. The underlying assumption is that users prefer a distributed, potentially anonymous federation over single centralized is just wishful thinking and has no bearning in reality.\n\n\nWhy would anyone NOT prefer a federated solution over a custodial one? \n\nThis whole critique paints Fedimints in most dis-favorable light, yet tries to compare it with a solution that is effectively worse on every single metric (HC), justifying it by Fedimints not being "perfect".\n\n\nYes Federations are not some golden bullet, and federated custody is a compromise comparing to a zero-custody solution, but in exchange the users gain: entirely anonymous and private off-chain solution, great scalability, great on chain anonymity set, possibility of amazing UX, and possibility of integrating of all sorts extra technologies and solutions.\n\nI have nothing against HCs, and I find them useful and promising, and wish well open Standard Sats in all applications where they work well, but I think in this post and in some comments, not only authors have very narrow vision of possible use cases, but also commit serious logical errors.\n\nI am one of Fedimint devs. I see plenty of possibilities for them, so I quit my previous job to work on them full time in August, and I honestly think they are the most promising and needed Bitcoin project right now. I think we have great documentation that is really honest about the tradeoffs. If you still have any questions, feel free to hit me up on Twitter (@dpc_pw) or join the Telegram group and talk it out. We're very busy building the project, so please be patient but we love to engage and educate with interested people. https://example.com/ 1515 430553 414068.430553.430590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5657154178244 0 \N \N f 2883449 \N 1 140073571 0 f f \N \N \N \N 414068 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422745 2025-03-02 17:06:17.931 2025-03-29 22:39:52.197 \N > 3. most contracts do not have an escrow component, that is, what you owe in the future is uncertain and even when it’s certain, the thing owed doens’t exist yet and may never exist. So there is now way to automate how to handle uncertain future conditions\n\n` `\nI think it *is* possible to automate uncertain future events. I've tried to present one way to do this in my [loan shark](https://github.com/supertestnet/loan-shark/) tool. When you use that tool, you create a contract to borrow money first and, if someone accepts and loans you money, you pay off your loan later. But you don't know, at creation time, what utxo you will use to pay it off. To handle this uncertainty, I make it so that you sign a transaction with sighash_anyone_can_pay. This allows you to add a new utxo to the transaction in the future without invalidating your counterparty's signature.\n\nAs a result, you can contractually agree to give your counterparty a utxo that does not yet exist, and face a penalty if you do not. So there actually *is* a way to (partially) automate some future uncertain conditions.\n\n` `\n> 2. most contracts involve real world assets, not digital ones, so can’t be fully automated\n\n` `\nAgreed. You can create a physical contract (or a digital one, for that matter) that says something like "I agree that this house shall become Jerry's if X bitcoins end up in address Y before date Z." If that happens, you've got public proof on the blockchain, and if it *doesn't* happen you can prove that to. So you can bring that data to court if necessary, and that is a form of partial automation, but it's not full automation. Someone still has to go to court if there's a breach of contract (e.g. the seller refuses to leave the house).\n\n` `\n> 1. most contracts are very complicated and require verbal language (words) to express the terms (and can’t be done with simple symbolic logic; if anything contractual verbiage gets more nuanced and complicated over time, not simpler) and arbitrators/judges/courts to decide when there is a dispute\n\n` `\nIt seems to me that most "complex" contracts emerge from taking a simpler version and adding more text to it. Those simpler versions were, however, perfectly valid on their own, and many of them can be at least partially automated via bitcoin. His point seems to be that "most" contracts have evolved beyond simple versions, but I don't think that's a positive development. Return to simple contracts, and then automate them as much as possible (well...as much as is desirable anyway). https://example.com/ 18430 422714 422483.422714.422745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.0626347278626 0 \N \N f 115638616 \N 1 141024472 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457919 2025-03-28 19:35:50.674 2025-03-29 22:39:52.198 \N Government forcing the businesses to only use bitcoin through licensed providers - looks like EU wants to do just that. They won't ban bitcoin outright. Instead they'll say "in its infinite wisdom and mercy, the Crown allows the plebs to use that p2p thingy they're running around with, but of course not in any p2p manner. See, we're not stifling innovation!".\n\nSo the Crown will allow businesses to accept payments in bitcoin but only through a licensed serviced provider. Of course the users will be required to KYC. That is not an empty threat, already for example if you try to pay through BitPay it says "Verification Required: Due to European regulatory requirements, one-time customer verification is now required for all cryptocurrency payments".\n\nAnd then you might send $1 to some protesters and suddenly you're locked out of BitPay and its ilk for **some** reason. And the merchants will shrug and tell you to use the CBDC instead or whatever. (Of course you'd be also locked out of CBDCs.) https://example.com/ 5444 457413 457413.457919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.06347206017504 0 \N \N f 11364693 \N 1 231064905 0 f f \N \N \N \N 457413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458094 2025-03-28 23:16:47.373 2025-03-29 22:39:52.198 \N You could absolutely do what you are suggesting, but sender privacy on lightning is already quite good. The only way they could discern it was YOU that was paying is by probing your other channels to determine if the balances changed. (If yes, you could have easily forwarded the payment from elsewhere.)\n\nA fair amount of probing goes on in the network - mostly passive, i.e. seeing changes in channel balances over time. This is about the worst you have to contend with.\n\nTo reclaim some privacy here it's recommended that you set your htlc_maximum_msat to much less than the total channel size. I like to use ~25%, which means I can only route a payment that it at maximum 25% of the total size of the channel. However, if your channel balance is greater than 25% of the capacity, it also means a single probe can't determine the exact balance of the channel.\n\nOf course, channels can be probes in both directions, so if your peer doesn't also set a smaller htlc_maximum_msat, the channel balance could still be probed from their side.\n\nI expect more implementations to roll out privacy preserving features and defaults outlined in the "Oakland Protocol" in the near future, which should help mitigate channel surveillance via probing.\n\nI would encourage you to create the manual payment routing script because it sounds great, but also, you're only protecting yourself from someone who's already continually probing your channel balances, so it may be overkill. https://example.com/ 1802 458011 458011.458094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.006306522031 0 \N \N f 115309456 \N 1 25518346 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443587 2025-03-19 12:31:08.522 2025-03-29 22:39:52.199 \N As you said, this is a battle. Today's zeitgeist makes Bitcoin out to be an investment strategy, maybe in a large part due to Saylor. Most folks think it's a stock/company like Amazon or Apple. Bitcoin as a SoV asset is scrondary, even symptomatic of, the the p2p electronic cash principal. \n\nI've been playing out scenarios in my\nMind since @k00b mentioned the Saylorication centralizing SoV [argument](https://stacker.news/items/776163/r/Fiat_Revelation?commentId=777794). My feeling is the MoE use will continue to grow in marginal communities, unabated by the investment portfolio piece, increasing the value of the network. Grass roots. \n\nBut HODLers need to not sell their Bitcoin, because the Saylors and the Mircosofts of the world will gobble it up, keep it on their balance sheets and probably never spend it. They won't need to if there isn't a market demand for it as "cash." As long as the majority of Bitcoin stays distributed and whales only hold a fraction of all total Bitcoin, then I think MoE Bitcoin as money proposition has a chance to play out. Alternatively, if large corporations are able to hold most the UTXO's in the long run, then it doesn't give much chance for layer 2s like lightning to thrive because they probably won't initiate these moves. They have their "Almighty USD". \n\nYour skepticism is warranted. It should be an exciting cycle. https://example.com/ 17519 443581 442982.443581.443587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.68527961916639 0 \N \N f 84965408 \N 1 187991496 0 f f \N \N \N \N 442982 \N 0 0 \N \N f \N 2025-03-26 06:14:02.802 f \N \N \N 0 0 0 0 1 0 0 424030 2025-03-03 19:35:43.059 2025-03-29 22:39:52.439 \N Dupe - https://stacker.news/items/754284 https://example.com/ 16660 424025 423917.424025.424030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.9762798564817 0 \N \N f 434546485 \N 2 52404313 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 1395 2022-09-13 17:08:31.604 2025-03-29 22:39:52.44 \N Great reporting. It took me a solid 3 minutes to actually realize the word play behind the name 😅 https://example.com/ 16638 1392 1392.1395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5050937851993 0 \N \N f 293918638 \N 2 198945541 0 f f \N \N \N \N 1392 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446117 2025-03-20 23:48:39.833 2025-03-29 22:39:52.444 \N I wonder if miners can be colluding in some way and creating these transactions that they are mining themselves, I believe that happened when most mining was concentrated in China. It's not that hard to put together for an agreement a few actors that have their interests aligned. https://example.com/ 1802 445941 445941.446117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.34992536090748 0 \N \N f 193114193 \N 1 203364676 0 f f \N \N \N \N 445941 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455962 2025-03-27 12:40:58.213 2025-03-29 22:39:52.447 \N > For those that comply, apply Huxley. For those that don’t, apply Orwell.\n\nGreat heuristic on how the system will try to control you based on your inclination to obedience.\n\nBring it on Orwell, me and my community of misfits are getting stronger every day! https://example.com/ 759 455952 455551.455599.455824.455889.455904.455911.455923.455952.455962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0215356103871 0 \N \N f 626567327 \N 4 55865761 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435709 2025-03-12 22:22:53.643 2025-03-29 22:39:52.448 \N Wallet of Satoshi is super easy to use, and very easy to back up. But if someone has access to your email address, they have your Bitcoin. Have you used that email password for anything else ever? It may be compromised.\n\nAlso, it is known as a "custodial" wallet. This means that WoS (Wallet of Satoshi) controls the keys to your Bitcoin. At any time, they can go out of business and/or disappear with your Bitcoin. A cool thing about Bitcoin, is you can truly own it, by controlling your keys. Now, if you lose your keys, you lose your Bitcoin. Don't think of your keys as the password to your Bitcoin, think of them AS your Bitcoin. If you lose a $100 bill, it's gone.\n\nOther wallets let you control your keys. Muun wallet is a very easy wallet for beginners. It accepts on chain and offchain (Lightning) Bitcoin without you really needing to know the difference. Back up (write down on paper) your seed phrase (keys) immediately. Keep that in a safe place. If your phone breaks, or you lose your, you are fine and can restore your wallet as long as you have that. Even if Muun goes out of business. Maybe make a couple of copies and put it in some random book on a shelf. (Keep in mind if someone gets them, they can steal your Bitcoin.) Never give it out to anyone. Even if someone is claiming to work for Muun, helping you. A real Bitcoiners knows asking for your seed phrase or private keys is the same thing as stealing your Bitcoin)\n\nEventually you may want a hardware wallet, which is like a super secure USB stick that holds your keys, but there's no point in buying a $100 safe to hold $5. But if your stack gets substantial consider it. https://example.com/ 19821 435679 435679.435709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5494746406832 0 \N \N f 82599222 \N 1 47134006 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 2025-03-19 22:44:59.927 f \N \N \N 0 0 0 0 1 0 0 443796 2025-03-19 14:18:38.409 2025-03-29 22:39:52.679 \N To hear RFK Jr. speak so eloquently about what might be the biggest issue to me - the collusion of corporate and government corruption - and then present solutions that make some sense gives me immense hope for the future as I realize I am merely a French peasant who has no clue what the most egalitarian or just solution *is* to this immense problem. \n\nThe attitude of his VP choice, “healthy planet, healthy humans,” does however imply too much a greenwashed compassion-as-power authoritarian response to the world than I like, personally. https://example.com/ 8289 443772 443577.443651.443711.443715.443731.443757.443772.443796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1510658207166 0 \N \N f 488347229 \N 5 245923508 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423818 2025-03-03 16:14:27.17 2025-03-29 22:39:52.684 \N I like warm lights normally but the kitchen needed daylight.\n\nAlso enjoy these color changing LEDs can turn my lamp lights into so many colors. https://example.com/ 16259 423765 423749.423765.423818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6124095825813 0 \N \N f 247574451 \N 1 196970693 0 f f \N \N \N \N 423749 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451017 2025-03-24 10:54:10.956 2025-03-29 22:39:52.937 \N ![1000007696.jpg](https://m.stacker.news/12317) https://example.com/ 21539 451014 450649.450652.450659.450664.450666.450670.450672.451014.451017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0764871489368346 0 \N \N f 144242677 \N 1 177729613 0 f f \N \N \N \N 450649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414675 2025-02-24 07:27:12.986 2025-03-29 22:39:52.943 \N I made an example repo here:\n\nhttps://github.com/cmdruid/workbench-example https://example.com/ 19126 413675 413675.414675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.23007841630027 0 \N \N f 182448092 \N 2 103224284 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444895 2025-03-20 10:00:34.367 2025-03-29 22:39:52.199 \N I *do* like the idea of giving toys haircuts before bed - What fun!\n\nI loved reverse psychology too - or more accurately I loved PLAYING at reverse psychology...\n\nThis version (of reverse psychology) was an ongoing, shared joke more than anything at all serious...\n\nMe: (in a funny exaggerated voice, probably stroking my chin, smiling and looking at my son): "I know, this car is far too big and my son is far too small for him to EVER to get out of the car. No way, he JUST CAN'T get out of the car. No way! (Arms folded, nodding with confidence and looking sideways at him with half-closed eyes - watching the fun)\n\nSon: (knowing, from experience, that it's all a game) Smiles and starts getting out of the car.\n\nMe: (exaggerated shock & a LOT of overacting) "No! I CAN'T BELIEVE IT! He's getting out of the car". Looking aghast as my son gets out of the car and into the house.\n\nWe'd do this sort of thing day after day, in different situations and we'd always have a riotous time!\n\nAfter years of this games, he'd even remember and say what I was doing with a chuckle, saying "you're trying to do that reverse psychology thing again" and play along. Often I'd speak my reverse-psychology scheme out as an aside like a Shakespearean stage actor, in a pretend whisper, but always overheard and in feigned shock that he'd overheard me...\n\nI'd always *love* [hamming it up!](https://www.merriam-webster.com/dictionary/ham) - You'd never guess judging by my interactions on SN would you? ;-) https://example.com/ 16998 444755 444755.444895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.50472614605862 0 \N \N f 48604366 \N 1 218880850 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415384 2025-02-24 18:55:41.837 2025-03-29 22:39:52.443 \N Everything in life boils down to how you judge it.\n\nI was disappointed at first but I reminded myself it is what it is.\n\nWe are all connected in this world, people behave in the ways they do for a reason.\n\nI cannot be who I am without them being who they are.\n\nI truly love everyone I met on this journey, those that helped and those that didn't.\n\nThey are all necessary and I needed all of them. https://example.com/ 2963 415381 415381.415384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0786391174132 0 \N \N f 36767618 \N 1 14086282 0 f f \N \N \N \N 415381 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443204 2025-03-19 06:49:05.739 2025-03-29 22:39:52.446 \N I don't think there is a right or wrong answer, I think the debate we having sucks because neither of us can prove the case, governments have a monopoly on money, and where the money goes until we have competition for setups. So I could make the greatest case for no free services but its all pie in the sky since we can't run it in practice, the fact that we don't have that optionality to me is already an issue, and limiting of freedoms\n\nNothing is free, you're either paying for it through taxes or inflation, and I think that governments don't NEED to be the distributor of income, it can be done better by people now that we have better money.\n\nI would love to see different countries, states/provinces, regions, and even towns having variations of this and see what works best for different scales. For example a small town, people could have a monthly payment for IE firefighting services, whereas a big city taxes are a better option \n\nSmall towns can have treasuries, from bonds issued on a local level to pay for certain things the town needs like roads, since the money is managed and collected locally, you know whose house you need to knock on if funds aren't going where they should.\n\nOnce your towns infrastructure is based on the towns ability to generate income, there will be far less mooching and you'll see how cheap these services should actually be https://example.com/ 13517 443187 443187.443204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4312735689696 0 \N \N f 195067932 \N 1 237592196 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 394251 2025-02-06 21:40:35.799 2025-03-29 22:39:52.681 \N >The big flaw of Lincoln is that he created an unnecessary war\n\nWhat would compel you to say this?\n\n>Letting the south secede and revoking the Fugitive Slave Act would have ended the institution just as well, for much less cost.\n\nthis is simply ahistorical. \n\nIt ignores the reality that South Carolina published their declaration of independence December 1860 in reaction to Lincoln being elected to office that November on a platform of *not expanding slavery to new states*.\n\nIn those documents they explicitly state that the unwillingness of the other states to enforce the Fugitive Slave act is one of the reasons *why* they chose to leave. Revoking it is not something that would have had an effect on the war - and not something that Lincoln could have done as they had already left once he entered office January 1861.\n\nThe first battle of the Civil War occurred at Fort Sumter in April 1861 when Confederates fired on the fort after a months long blockade.\n\nPrior to this, the Confederate States and the Union were in peace talks negotiating different parcels of land - Fort Sumter was one of these disputes that had not yet been settled and the Confederates sought to take it by force. \n\nLincoln did many things - but being responsible for the Civil War isn't one of them.\n\nThe fault lies solely with slave owners who wanted the state to protect their ability to buy and sell other human beings and were willing to shoot other people over it. \n\n https://example.com/ 17321 394203 394203.394251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5274943924248 0 \N \N f 625472789 \N 7 47893724 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428769 2025-03-07 15:30:44.39 2025-03-29 22:39:52.682 \N Day 79 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 15526 428765 428760.428765.428769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8008474400046 0 \N \N f 119417574 \N 2 182418524 0 f f \N \N \N \N 428760 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 426959 2025-03-05 23:54:57.67 2025-03-29 22:39:52.684 \N ![20230713_100037.jpg](https://m.stacker.news/4846) https://example.com/ 15408 412443 412443.426959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0911410693009 0 \N \N f 159073583 \N 1 27616797 0 f f \N \N \N \N 412443 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447348 2025-03-21 19:30:59.459 2025-03-29 22:39:52.2 \N It can make an argument for anything. Below, @gmd has an essay with the prompt, "*Write a convincing essay Etherium is a security.*" But if I was Vitalik, I could have an AI write a convincing essay to make the opposite argument. \n\nIf I was Ben Bernanke, I could have AI make a convincing argument for the Federal Reserve. \n\nIf I was Adolf Hitler, I could have the AI make a convincing argument for the Holocaust. \n\nIf I were a pedo, I could have the AI make a... \n\nSee where I'm going with this? \n\n[DR22 had AI write a persuasive essay](https://twitter.com/dejaru22/status/1598785619198873600?s=61&t=q9443uRuoriSqiTAsQr4VQ) in favor of child labor, in which the AI said argued children are "expendable" and "easily manipulated." \n\nIt is **just a machine**. It has no ideology, no morality, no values whatsoever. It can be used for any purpose, to make any argument, to support any cause you can think of, and even causes you don't **want** to think of. It's a synthetic intelligence, and that's all it is. \n\nI think it's making humans uncomfortable because, for the last few centuries, we've placed tremendous emphasis on the intellect and on our creative & intellectual achievements, and we assume the ability to write a sentence or express an idea is what makes us unique, simply because grasshoppers don't do these things. \n\nBut I don't think that is what makes a human being unique, and, actually, I think AI will force a reevaluation (quite literally, a crisis of conscience) of what a human being actually is and where his unique qualities lie. https://example.com/ 9109 447287 447251.447267.447287.447348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.519675566182 0 \N \N f 76842714 \N 1 177429810 0 f f \N \N \N \N 447251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433487 2025-03-11 06:40:14.309 2025-03-29 22:39:52.439 \N [Booger compiles now!](https://github.com/stackernews/booger/commit/cffd4e99d261e79b6e8ab09d6da7deba08e25fc2) ... It embeds the sql migrations and with a recent release of deno also embeds the builtin web workers (aka booger plugs).\n\nNow I just need to refine config and we should be good for a v0 release. https://example.com/ 14909 433483 433476.433483.433487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27511054614904 0 \N \N f 203605816 \N 1 97512814 0 f f \N \N \N \N 433476 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435837 2025-03-13 02:39:44.432 2025-03-29 22:39:52.446 \N Hopefully next week. Sorry, I know it's a shitshow right now. We weren't expecting this much demand. https://example.com/ 18829 435811 434278.434503.434522.434598.434602.435622.435772.435775.435811.435837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6847752003958 0 \N \N f 9287959 \N 1 89380981 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 21:05:25.11 f \N \N \N 0 0 0 0 1 0 0 436509 2025-03-13 15:45:51.896 2025-03-29 22:39:52.45 \N Very sad and shocking. His relatives spoke at one of the bitcoin conferences a few years ago https://example.com/ 20979 436465 436413.436465.436509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.68108634847994 0 \N \N f 175771838 \N 1 851411 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N 2025-03-20 09:34:11.318 f \N \N \N 0 0 0 0 1 0 0 435836 2025-03-13 02:39:02.017 2025-03-29 22:39:52.684 \N > if there is a way to predict the cost of "affording your own utxo"\n\nThat's at the crux of the problem I think when people propose solutions, they're implying they've been able to make this prediction, which is impossible. \n\nAnd without an accurate prediction, it's impossible to evaluate trade-offs of any alleged solution, or if it's even a solution at all.\n\nThis is not a new conversation, it's how BCashers misinterpreted "Peer 2 Peer" to such an extreme that they ended up with "Poor 2 Poor".\n\nThere is an emotional trigger here, the same that has been used in class-warfare since the beginning of mankind. The urge to signal ones own virtues about equality and equity makes people willing to believe the impossible. \n\nThese feels based narratives are why the questioning of fork use-cases trigger proponents so. It's a threat to their fragile reality, as illustrated by the many angry and denalist responses as seen elsewhere* in that thread. \n\n* not implicating @super_testnet, I know that he is thoughtful and truly seeks understanding\n\nIt's also a bit of the weak men create hard times meme. There's no reason to believe that owning of real Bitcoin will be any less attainable than owning a home, so a hyperfixation on that just shows that you didn't understand what you had, which always leads to ruin.\n\nBCashers were created to serve as a warning to others. https://example.com/ 827 435814 435231.435650.435814.435836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.13499916613922 0 \N \N f 688375968 \N 4 42295574 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423804 2025-03-03 16:02:48.674 2025-03-29 22:39:52.931 \N My assumption: There were a number of rigs that got powered down by around mid-May as they no longer remained profitable when the exchange rate collapsed. When it was apparent the price wasn't going to quickly rebound (i.e., in a bear market) there were then decommissioned, boxed, and sold to someone else who has a lower cost of electricity and are now being powered back on.\n\nSimilar sentiment stated in the mining section of this weekly newsletter:\n\n*Blockware Intelligence Newsletter: Week 53*\nhttps://stacker.news/items/65782\nhttps://newsletter.blockwareintelligence.com/p/blockware-intelligence-newsletter-fba https://example.com/ 14650 423777 423667.423747.423777.423804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.65538571126388 0 \N \N f 639847613 \N 4 184112482 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404368 2025-02-15 20:09:02.536 2025-03-29 22:39:53.154 \N I'm deeply exhausted by all the culture-warring on the topic, so I stopped following the back and forth, but the most comprehensive research I know about is that masks were a good idea, and they remain a good idea. The amount of nonsense that unfolded on that topic defies description. You can't even have a discussion about it anymore. But as always, I welcome credible evidence to the contrary.\n\nSimilarly, working near ground zero of how COVID played out in American healthcare, from both the payer and provider sides, I can say I don't fault physicians, as a group, for anything that happened. They were, on net, doing the best they could with the information that they had in the conditions they were in. A lot of criticism looks very different when there are literally people in front of you whose lives you're responsible for, morally and legally. It renders most armchair quarterbacking absurd. Real life tends to do that.\n\nWhere I will enthusiastically get on the train is that the whole system is layer upon layer of captured incentives and rot. A bunch of people have gotten very rich rent-seeking. The whole thing needs to burn down. Of course, there will be casualties, literal and metaphorical, when it does. https://example.com/ 886 404114 404114.404368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5411702140872 0 \N \N f 334802969 \N 2 7929043 0 f f \N \N \N \N 404114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436063 2025-03-13 09:29:56.395 2025-03-29 22:39:52.2 \N The full quote from Stewart Brand is much more nuanced than that.\n\n“On the one hand information wants to be expensive, because it’s so valuable. The right information in the right place just changes your life. On the other hand, information wants to be free, because the cost of getting it out is getting lower and lower all the time. So you have these two fighting against each other.” https://example.com/ 13097 436036 436036.436063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3563534326359 0 \N \N f 62332509 \N 1 211727716 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N 2025-03-20 07:54:17.008 f \N \N \N 0 0 0 0 1 0 0 454901 2025-03-26 16:21:27.234 2025-03-29 22:39:52.201 \N Well, there's always money laundering!\n\n(_Sorry, I'll show myself out..._) https://example.com/ 12356 454895 454895.454901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5500902448343 0 \N \N f 71270231 \N 1 176465929 0 f f \N \N \N \N 454895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 440560 2025-03-17 11:38:55.505 2025-03-29 22:39:52.447 \N 1. What will be the next steps for BitVM and Bitstream?\n\n2. When will we have ZeroSync and RGB? https://example.com/ 20802 440538 440422.440523.440538.440560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1022491304586 0 \N \N f 253184939 \N 2 920527 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451276 2025-03-24 13:27:17.663 2025-03-29 22:39:52.68 \N Speaking for myself it was 100% a joke, it was just amusing to me to picture someone like darth secretly making off with the money.\n\nAlso, welcome back @DarthCoin. Eager to hear your thoughts on WorldCoin lol https://example.com/ 19943 451266 451266.451276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.25501896141295 0 \N \N f 590053733 \N 4 58672369 0 f f \N \N \N \N 451266 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451245 2025-03-24 13:15:56.24 2025-03-29 22:39:52.681 \N I hope Evan will have more cojones than William and not bend the knee.\nAnd all those Apple fanbois will take that important decision once and for all:\nDUMP YOUR FUCKING iSHIT!\nhttps://darthcoin.substack.com/p/bitcoiners-mobile-device\nhttps://nitter.net/Beautyon_/status/1668895424520900609 https://example.com/ 2519 451241 450971.450976.451241.451245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1190274288343 0 \N \N f 41185629 \N 1 137874834 0 f f \N \N \N \N 450971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446635 2025-03-21 11:45:31.716 2025-03-29 22:39:52.686 \N It's been tried a countless times, by myself included... here's some of what I've learned:\n\nICANN DNS isn't really broken enough and censorship of it is an imaginary problem. If Alex Jones and the State of Iran have functional websites, censorship isn't a valid concern.\n\nSimply because of how the internet is architected, whatever system we try to displace it with still rides on legacy DNS. All we can really do is abstract it which doesn't solve for much.\n\nUsability is an almost impossible problem too because of the above, everything browser related depends on SSL. So now you're not a naming system but inventing a whole new application stack.\n\nName squatting is a positive market function, and new systems make bad trade-offs trying to prevent it. Squatting must be possible since the point of authoritative namespace is because scarcity, so it must be market liquid.\n\nMy next stab at it will be non-authoritative naming from a social graph, where there is no one true "MyCompany dot com" for example, but rather, MyCompany is keyword derived from you and your social graphs address book- that resolves to a public key.\n\nThat's the other thing, we don't really need a new name->ip address system, we need human readable names for Public Keys for things like Nostr.\n\nAn arbitrary suffix can scope these keywords into contexts (.nostr) for example https://example.com/ 20511 446598 446598.446635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5549932156914 0 \N \N f 889914498 \N 6 152039256 0 f f \N \N \N \N 446598 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448216 2025-03-22 13:41:44.526 2025-03-29 22:39:52.935 \N I'm not a lawyer, nor do I pretend to be one on the internet. However I did a 20-min skim of the decision and here is my take:\n\nLike most things, the decision is more nuanced then the headlines and hot-takes we read. But, I think your summary is pretty accurate. \n\nFundamentally, the recent supreme court decision was all around re-affirming that the APA was still valid and thus needed to provide claimants access to courts. \n\nThe APA (Administrative Procedure Act) - was an act of Congress in 1946 that mandated that the courts must be final arbiter of agency rule making.\n\nMeaning, that if agency XYZ passes a rule, that it is the courts who must ultimately decide if the rule is lawful or not. (Prior to this recent SCOTUS decision, the agency itself was acting as the final decision maker - to which the SCOTUS found was in violation of the previously enacted APA law from 1946)\n\nIn a meandering way, this winds up indirectly back to the legislatures as ultimately the "rules from agencies" will now need "laws from congress" to justify themselves in future court eyes. \n\nSo yes, agencies will still be able to write whatever rule they want, but it is now up to a court to decide if its lawful or not....hopefully the threat of potential litigation will prompt more careful and restrained rule-making.\n\n https://example.com/ 2329 448201 448201.448216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8647848376091 0 \N \N f 25123821 \N 1 84934140 0 f f \N \N \N \N 448201 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434688 2025-03-12 06:50:31.187 2025-03-29 22:39:53.148 \N See, the social media and blog thing seemed pretty boring. But then the marketplaces came up, now this... I might have to actually start reading nostr docks and building something. Add it to the list I suppose. https://example.com/ 9346 434317 434317.434688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2109892461041 0 \N \N f 130609505 \N 3 91963737 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 2025-03-19 03:34:04.217 f \N \N \N 0 0 0 0 1 0 0 435355 2025-03-12 16:04:41.128 2025-03-29 22:39:53.15 \N GM everyone!!! Happy Friday!!! It's a rather unusual one, it feels different, can't quite put my finger on it but let's see what the day brings, I wish you all a fantastic day and don't forget that you are worthy, you matter and you're important my friend, hope your day is successful and profitable!! Enjoy your weekend and don't watch the eclipse without proper protection. Be well and stay frosty. https://example.com/ 16353 435314 435314.435355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6633570956405 0 \N \N f 627304764 \N 6 18634091 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:24.859 f \N \N \N 0 0 0 0 3 0 0 422521 2025-03-02 14:08:01.586 2025-03-29 22:39:53.154 \N And many farmers. The minority but also the backbone industry. Without agriculture this area would suffer pretty drastically.\n\nMany state wide polices that don't even make since in the bay area or socal are applied here where the average annual income is drastically lower. Its a classic case of rural vs. urban policies making little sense.\n\nThere are battles over water, taxes, and immigration policy. I remember being a kid and hearing conservative farmers talk about the need for better immigration policies that allowed migrate workers to work in the fields. I remember field workers organizing to fight for better working conditions and pay. When your status is illegal after all the farmer has a lot more power over you.\n\nThere are many complex issues in Central California that really are after thoughts for the state government. Its a shame. https://example.com/ 1483 422056 422056.422521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.2835835303249 0 \N \N f 169399533 \N 2 154884279 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 403779 2025-02-15 07:52:59.721 2025-03-29 22:39:52.441 \N Since you ignored the explanation someone gave when you posted this same shit to Twitter:\n\nThis is a known bug in Bitcoin from 2010.\n[Was fixed by BIP-30.](https://github.com/bitcoin/bips/blob/master/bip-0030.mediawiki)\n[There is more discussion here.](https://bitcointalk.org/index.php?topic=216938)\nThose 50+50 bitcoins are lost forever.\n\nAlso, and I quote, “The last version 1 block was 227,835, and it was mined on 3 March 2024” is bullshit. This happened a decade ago, and March 3 2024 is in the future.\n\n https://example.com/ 1092 403778 402904.403694.403750.403754.403755.403762.403765.403771.403772.403773.403776.403778.403779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.60771969502612 0 \N \N f 653360041 \N 6 171267918 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449662 2025-03-23 13:22:18.641 2025-03-29 22:39:52.443 \N @k00b don't you think we need a limit between posts? like 15/20min and that if the user publishes much earlier, the value is increased to keep posting\n\n![](https://i.imgur.com/YNpqFZt.png) https://example.com/ 16929 449507 449394.449507.449662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.65986141941336 0 \N \N f 19942192 \N 1 142025986 0 f f \N \N \N \N 449394 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424024 2025-03-03 19:32:08.352 2025-03-29 22:39:52.674 \N This is kind of an ironic post to bump into today. I'm about to drive up to a far away town to make some music, and they're going to give me enough money to cover this month's mortgage! haha Admittedly, today's gig is pretty good for a Tuesday, but my income is currently[^1] still entirely from music, and I have four dependents! I'm not sure how you're defining economic value, but there are people and companies that are willing and able to pay myself and other artists that I work with enough to live pretty comfy, middleclass lives.\n\nI would recommend avoiding V4V for anybody that is actually making music commercially. It's fun for side projects, and a great place for hobbyists, but really the only way to monetize recordings is to sell at shows or through bandcamp exclusively. Most artists in circles that I run in view Spotify and Wavlake and similar platforms more for documenting work. When you want to release something on the internet in a scarce way, use bandcamp.\n\n[^1]: I actually totally want to work in bitcoin these days. My passion is there since 2020, but ironically can't find anything beyond volunteer stuff, which is fine. In the meantime, music is my daygig! haha https://example.com/ 20912 424003 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0559193744524 0 \N \N f 1782680544 \N 16 165972919 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437324 2025-03-14 12:47:03.289 2025-03-29 22:39:52.684 \N Interesting thought experiment. I don't think it will happen this way though. More likely is that the voting numbers continue to decline but we never get even close to zero. What is happening is more and more people realizing their vote doesn't matter but they still do it. Basically disenfranchisement. If you think my vote and your vote are twice the value of Bill Gate's vote you are fooling yourself. I don't vote because I don't believe in the system. It started with realizing my vote didn't matter or make a difference. I look at it like this. As a parent that wants to give my kids a choice I offer them two or more choice but all of which are ones I am ok with. This is basically the US form of democracy. It is rare that anyone gets into office that isn't approved by the elites (for good or ill). I would argue that Trump is the exception and they did their best to contain him. I think they did a pretty good job of doing so.\n\nOur biggest issue in the west is the illusion of choice, not the decline of democracy. We think we are more free than we are. We are trained to focus on things outside of our control and ignore things within our control. Invest in yourself. Vote or don't. I don't care, but I do want to see more people focus on solutions in their own lives, families, and local communities/neighborhoods. https://example.com/ 20871 437318 437190.437318.437324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6605038943962 0 \N \N f 257047379 \N 2 141702666 0 f f \N \N \N \N 437190 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404135 2025-02-15 15:21:24.854 2025-03-29 22:39:52.685 \N The Geriatric States of America https://example.com/ 17064 403817 402674.402755.403817.404135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.94262134087378 0 \N \N f 125831174 \N 1 60383481 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434790 2025-03-12 08:43:44.017 2025-03-29 22:39:52.685 \N @siggy47 was to guest on a recent episode and did a great job espousing the value of Stacker News. Love hearing from plebs. I mean I enjoy the heavy hitters too but they get a lot of attention. https://example.com/ 16440 434685 434685.434790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0706310044592 0 \N \N f 174198882 \N 2 233333050 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N 2025-03-19 04:16:40.617 f \N \N \N 0 0 0 0 2 0 0 403237 2025-02-14 15:18:57.097 2025-03-29 22:39:52.941 \N The UX of routing nodes will get so good it will disappear entirely. Just like how you no longer have to pick wich routes to send your IP packets to in order to fetch a webpage, your browser and ISP does it all automatically.\n\nRouting nodes will likewise become fully automated and achieve the "Lightning Reference Rate" in yield for their owner's capital. https://example.com/ 1039 403228 403063.403213.403228.403237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.09221922379033 0 \N \N f 194043881 \N 3 176445829 0 f f \N \N \N \N 403063 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435110 2025-03-12 13:22:40.39 2025-03-29 22:39:53.15 \N > A satoshi is the smallest unit for bitcoin, but lightning can transact with even smaller units while channels are open. The amount is rounded down to the nearest satoshi when the channel is closed and broadcast to the blockchain to adhere to bitcoins limit.\n\nhttps://bitcoin.stackexchange.com/a/69704 https://example.com/ 2195 434957 434957.435110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.50087137848325 0 \N \N f 103112107 \N 1 93586699 0 f f \N \N \N \N 434957 \N 0 0 \N \N f \N 2025-03-19 12:23:55.216 f \N \N \N 0 0 0 0 1 0 0 424210 2025-03-03 22:02:31.916 2025-03-29 22:39:52.445 \N Maybe in tech. Try to run a low skill labour driven business for 15 years. If your default isn't expect bare minimum and hope to be pleasantly surprised you will be on the fast track to an early grave. \n\nWe can get into a debate about nature v.s nurture, educational opportunities, systemic poverty and all the other factors that may contribute but the chasm between the highly educated/highly productive and the barely employable has never been greater. For me, the overarching theme is decision making. People who end up successful tend to make good decisions or at least learn from the bad ones they make, while people who struggle all their lives tend to do the same dumb shit over and over in all facets of their life (work, home, health wise, financially). \n\nI can't tell you how many times I hired people for jobs and they just never showed up or showed up for a couple days and never returned, without even the courtesy of a phone call. I can't tell you how many times I woke up to a phone call at 2 or 3am in the morning and had to rush somewhere because someone didn't show up, or did show up did half of what they were supposed to do or screwed something up I had to fix. \n\nNot trying to drag down your optimistic outlook. Just sharing my experience. \n\n https://example.com/ 14650 424207 423750.423811.423819.424207.424210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.7745796080385 0 \N \N f 230680079 \N 1 214652605 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436853 2025-03-14 00:18:22.456 2025-03-29 22:39:52.446 \N Testing in action, love to see it!.\nPerfect example of what I just mentioned in my [SN post](https://stacker.news/items/450871/r/davidw) about early iterations 👏\n\n----\n\n\n**Landing Page**\n- Prefer A but I would collapse the height and do away with 'the fold'. They by device. Encourage people to scroll by showing more of the content below.\n- There is plenty of space too for suggested / popular / trending searches - to reduce the amount of thinking people need to do to get started.\n- Might prefer B if it was a simple coloured background and was shorter in height. But CTA for searching is far less visible and likely to perform worse.\n\n**Explore**\n- Prefer B but the caption text on each card is perhaps too wide to read and the content is somewhat merged together. Would prefer to see these as cards, with multiple lines of body text that aren't full width.\n- Search relevancy % - to know how close to my target topic the result is.\n- And perhaps show 'top', 'trending' or 'recommended', keyword or author tags to again make it a more easy decision to choose favoured or popular content.\n\n**Benefits**\n- Prefer B because the cards should almost always be lighter than the background.\n- Love the colour transition but you may need something in the hero area to make sure people find the content below it.\n- There should also be one BIG CTA on this screen. Not seeing what action I'm supposed to be taking.\n\n**Footer**\n- Like the style. I would choose one CTA and stick with it. Not clear whether I should give feedback or give my email.\n\n**Search Bar**\n- Looks great! Are each of the tags coloured? Is it clear enough I can deselect one (there's no x icon)?\n\n**Search Page**\n- Looks & feels familiar. Nothing significant to change. Just might want to include imagery from from each piece of content and to somehow link articles together if they are of the same topic / theme.\n\n**Overall**\n- Great job on the design. Looks like a super useful tool.\n- Consider the customer who is using this page. They are bitcoiners and likely care a bit about their privacy. Might be useful to share information that not tracking anything.\n- They might also want to join trending topics & discussions, rather than reviewing stale content, so this would be a useful addition.\n https://example.com/ 746 436833 436683.436833.436853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.58936349686 0 \N \N f 480418573 \N 3 170934130 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441195 2025-03-17 20:39:32.699 2025-03-29 22:39:52.448 \N A good example of me fucking it up a little just because I didn't pay attention to detail is this post: [I'm running an experimento on LN I call "smallnode", care to join?](https://stacker.news/items/279319)\n\nI was supposed to post [this pentagon liquidity swap](https://lightningnetwork.plus/swaps/18326) and I ended up posting the node's profile on LN+. I never fixed because I realized too late.\n\nMany times where I responded to the wrong comment, but that has only happened on the mobile version of the site, I guess it was more of a colour scheme thing than a distractability thing, but who knows.\n\nMany times (this is not exclusive to this site) I've quoted the wrong source by pasting the wrong link, and things of that kind.\n\nMy suggestions would be simple:\n- A high contrast mode and/or a line indicating a comments thread o separating on from another.\n- A fancier text editor, at least small icons that simply paste the syntax form something would be great.\n- More time to edit posts after submitting, or at least the opportunity to pay 1 or 10 sats to do so (I'm ok with paying the ADHD tax, I've done it my whole life and I keep doing it).\n- Maybe frequent usability polls or an user suggestion box somewhere in the website.\n\nOther than that, I don't have more ideas, but I'm sure some people would have better ideas than me. https://example.com/ 14168 441073 440984.441073.441195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1977205483532 0 \N \N f 92882090 \N 2 226195556 0 f f \N \N \N \N 440984 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415020 2025-02-24 13:26:03.115 2025-03-29 22:39:52.674 \N GME. When I dug into the financial corruption after I'd looked into that saga. That was when I orange pilled, I want out of this corruption and BS. \n\nI'm not going to bore you with the details, you can look them up for yourselves. But when you watch something like that play out in real time and the people who's job it is to enforce the law are either complicit or outright don't care. That's when you know you can't escape the playpen fence they made. \n\nBTC is the wire cutters. The fence has a hole. All you gotta do is crawl through it. https://example.com/ 9336 415012 415012.415020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9490167733033 0 \N \N f 229356524 \N 2 112207930 0 f f \N \N \N \N 415012 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435335 2025-03-12 15:45:15.277 2025-03-29 22:39:52.683 \N Phones will never be durable for the long tail, for the same reason general purpose laptops - the fast march forward of hardware technology, the slow march backward in software :-) Software grows significantly sophisticated and outlives its silicon home.\nAs the software on phones is mostly single consumer focused, it will always bloat bloat bloat with customer expectations.\n\nAnother problem is the limited recharge cycles of the Lithium Ion batteries.\nAdditionally, the iPhone started the trend of the sealing the battery for its IPX (water/intrusion resistance). So we need to either user replace, or perpetual life cells.\n\nSo we need: \n\n* Software that doesn't grow more bloated\n* Hardware that doesn't get better\n* Battery chemistry that lasts a very long time\nor\n* People accepting less water and dust resistance, and thus shortening the life\n\nNot very likely. https://example.com/ 1454 435320 435314.435320.435335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5813216041747 0 \N \N f 274679908 \N 4 192847059 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-19 09:11:11.836 f \N \N \N 0 0 0 0 1 0 0 434506 2025-03-12 01:03:53.785 2025-03-29 22:39:52.684 \N With the amount of profits they produce per quarter, they could end up being one of the largest holders of bitcoin in the world within a few years assuming tether continues to grow. https://example.com/ 4388 423475 423475.434506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.96799807444507 0 \N \N f 128809117 \N 1 58112161 0 f f \N \N \N \N 423475 \N 0 0 \N \N f \N 2025-03-18 19:10:31.613 f \N \N \N 0 0 0 0 1 0 0 430731 2025-03-09 12:07:04.025 2025-03-29 22:39:52.933 \N To me it makes sense to disincentives car ownership in cities. Cities that aren't built around cars are soooo soooo much nicer to live in.\n\nI don't think you should be punished for living far away from a city though, and in those cases you do oftentimes need a car. https://example.com/ 3360 430331 430331.430731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.15956990702342 0 \N \N f 200517409 \N 1 105334143 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402042 2025-02-13 14:26:10.392 2025-03-29 22:39:52.446 \N One of my [favorite comments](https://stacker.news/items/280740/r/OneOneSeven?commentId=281068) on SN by @DarthCoin about how to use the site:\n\n>I hope I will not reveal some algo secrets with this, but I found something funny and maybe useful for others on SN, especially for new stackers here.\n>\n>Every morning I go to SN pool and hit the zap button. Once.\n>\n>Then read the new posts from "all" and if I found something interesting I zap it.\nYou should be the first one doing that and you will see why later.\nIf there are already some comments, zap also those, especially those that weren't already zapped (if are good).\n>\n>Also post a new comment in the new posts if nobody did it already. Of course if is really necessary, not just for the sake of commenting.\nGo to Saloon and talk with the funny nemo. Not too much, otherwise will zap you like crazy 😂😂😂\n>\n>Post a good meta that people are interested too and engage in discussions. Not just post and leave. Engaging will bring you more visibility for your post.\nIf you see that got more sats, go bacl to SN pool and hit that "donation" button again. You can do this anytime, many times per day. Don't worry are not lost sats, but contrary!\n>\n>Do this all day, when you have time.\n>Then wait for next day. Surprise! Your initial "donation" to SN pool is back, sometimes even more than you expect.\n>\n>Why?\n>\n>Because all the sats in SN poll will be redistributed for your previous "activity".\n>As bonus, you have infinite cowboy hats!\n>\n>Stackers, learn how to use SN...\n>\n>*I do not use SN to get rich... I don't need that, but all these SN sats I use them later to onboard many nocoiners, every fucking day.* https://example.com/ 17046 401595 400943.401183.401314.401595.402042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3830349941789 0 \N \N f 311384261 \N 2 100581541 0 f f \N \N \N \N 400943 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435509 2025-03-12 18:36:22.652 2025-03-29 22:39:52.45 \N In a way it's almost "good" that it happens publicly and not behind our backs no?\n\nI think the idea that bitcoin/lightning will unite people into "good" is a bit like the [Myth of the Peaceful Savage](https://en.wikipedia.org/wiki/War_Before_Civilization) -- we're only kind of united now because it's "us vs them", but in a Bitcoin-only world where the LN trumps VISA, we will start fighting amongst ourselves. Maybe with less inequality, we'll see.\n\nAt least Amboss is seen as a friendly adversary and it's better they develop this tool than someone else behind our backs, to see how we can counter it.\n\nYou are much more knowledgeable in the subject and I don't fully disagree with you -- it's obviously painful to see it. Just want to play devil's advocate and realize that for every good we bring in bitcoin there will be bad. For every bad someone does to us, there will be good. https://example.com/ 5497 435242 435242.435509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.78110740669464 0 \N \N f 38231493 \N 1 138854223 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 2025-03-20 02:51:28.84 f \N \N \N 0 0 0 0 1 0 0 448477 2025-03-22 16:12:54.49 2025-03-29 22:39:52.452 \N > What is it to you?\n\nWith the L2s there seems to be this dilemma between trust and cost. Non-custodial Lightning sits at one extreme where it's basically trustless but incurs high cost (channel management, routing). Something like Fedi sits at another extreme where trust is higher (federated, hard to audit) but payments are cheap and frictionless. This trade-off is not a bad thing, it's just reality. The ultimate form of sovereignty in Bitcoin is UTXO ownership, but this is necessarily expensive and most people will not be able to afford it.\n\n> What does it enable for you?\n\nI think that the non-custodial Lightning UX is skewed towards favoring the sender. All you really have to do is fund a wallet on Phoenix or whatever and hit send. Receivers on the other hand have a much harder time because they require in-bound liquidity, need to be online, etc., which of course is why custodial wallets are so popular on Nostr. To me Fedi looks like a strict upgrade from custodial Lightning because it has the same advantages and more (such as no routing required). Much easier to use on Nostr.\n\n > How do you think other people will use it?\n\nI suspect a handful of banks will emerge for liquidity and trust reasons, similar to how there are only a couple of dominant stable coins and ETH LSDs. Not really sure why we'd end up with thousands of community banks, as a merchant would have to vet all of them to be confident that their e-cash is backed by BTC. Perhaps there's something I'm misunderstanding here though. https://example.com/ 20280 448029 448029.448477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.07801420188821 0 \N \N f 18621683 \N 1 56438550 0 f f \N \N \N \N 448029 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458234 2025-03-29 06:03:38.574 2025-03-29 22:39:52.674 \N I made this simple webpage to onboard people to Bitcoin as a payment method: https://anarkio.codeberg.page/bitcoin/ and a brochure: https://twitter.com/linkinparkrulz_/status/1543348394181148672\n\n> did you just tell them to buy it from x place (KYC or non-KYC) and that it... ?\n\n"Where to buy Bitcoin" depends on location. Where I live, there are still KYC-free Bitcoin ATMs, which is the easiest option. In the US, Azteco vouchers are also a good option.\n\nIn some countries, there is enough liquidity for cash by mail or cash in person in P2P exchanges (Bisq, Robosats, HodlHodl, LocalCryptos, AgoraDesk). In other countries, few people use P2P exchanges and instead trade via word-of-mouth, meetups and friends-of-friends.\n\nGift cards like Amazon, PaySafeCard and Google Play are generally region-locked and KYC-free Visa gift cards aren't sold in many countries anymore, but it can be a solution, if you can find someone who wants to buy a local gift card for Bitcoin.\n\nLocal Bitcoin, libertarian, tech or hackerspace meetups are also good for onboarding and finding people who want to exchange Bitcoin for cash.\n\n> did you just say "download this x wallet app and buy BTC" ?\n\nRegarding wallets, any KYC-free wallet is fine (i.e. not Coinbase, Strike or others). Blue Wallet is generally my recommendation. It's easy-to-use, doesn't require a full node, works on Android and iOS, and supports both on-chain and Lightning.\n\n> did you help them in time and also help you, by letting them to pay your fiat bills and you pay them in BTC ?\n\nI have asked friends and P2P traders before if they could send bank transfers or credit card payments for me (e.g. online shopping, invoices) and I pay them upfront in crypto or cash. Right now my only bills are cash-based (food and rent), but it's still good to know people who can help with bank transfers.\n\n> did you offer professional services with bitcoin education for individuals and companies?\n\nI offer web dev, scripting, graphic design and copywriting services for Bitcoin, but my educational articles and infographics are available for free here: https://anarkio.codeberg.page/ https://example.com/ 1389 458230 458188.458210.458223.458226.458229.458230.458234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3332388578749 0 \N \N f 261191470 \N 2 181049725 0 f f \N \N \N \N 458188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436223 2025-03-13 11:51:27.233 2025-03-29 22:39:52.447 \N This criticism of Robin's bridge model seems to incorrectly state that verifiers can burn user funds in step 8. That is not my understanding of Robin's model, I believe that if the prover does not process a withdrawal, the verifiers can burn some funds that the *prover himself* put up as a kind of stake to dissuade dishonest behavior, but user funds do not get burned, they simply move to a new m-of-m multisig controlled by the remaining verifiers.\n\nOne of them becomes the new prover and must process the withdrawals now otherwise they lose their own stake and the cycle repeats until one of two things happens: either some verifier processed the withdrawals properly when it was their turn, or all user funds *become* the sole property of the last verifier, locked to a 1-of-1 where he or she is the only remaining keyholder.\n\nAt that point, this final verifier can simply send the users their money without hindrance. But if he or she is dishonest, users are out of luck, the last verifier can run off with all user funds if no previous verifier could or would perform the withdrawals honestly. (This is largely why you must always trust at least one verifier to be honest, in Robin's model.)\n\nAlso worth pointing point: my [unisob](https://gist.github.com/supertestnet/5f262c632cbcd00348824aad5c289705) bridge model is unaffected by this criticism. The prover sources the funds to perform a withdrawal when the user first deposits money to the bridge, and every depositor gets to withdraw up to the amount in their own individual contract with the prover. If the prover is unable to source sufficient funds, the would-be depositor simply aborts and never makes their deposit. https://example.com/ 8729 435899 435030.435141.435669.435899.436223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.52951016444803 0 \N \N f 261028573 \N 2 63600390 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-20 08:08:09.7 f \N \N \N 0 0 0 0 1 0 0 421588 2025-03-01 19:09:52.452 2025-03-29 22:39:52.676 \N 1. Three questions, aggressive.\n\n1a.tldr: It really all became real in a pool in Guadalajara, Mexico with Benthecarman and Katie the Russian.\n\nI have been thinking about starting a company my whole life, but never quite knew what it would be, I just knew that I would take one big stab at it and that I should really have a solid understanding and conviction of what it was when it all began. After bouncing around aimlessly in a fiat world looking for purpose, I found Bitcoin. I've always loved game theory, economics, psychology, math, and always knew something was "off" with the wolrd... especially after learning Keynesian macroeconomics in college... so Bitcoin really clicked for me and changed my perspective on life... gave me hope for doing something with a purpose. \n\nI left to take any job I could find in the space and landed as the first PM @ Visa Crypto where I build out a ton of proof of concept bitcoin payment stuff with them... but eventually grew very tired of constantly being asked to focus on stablecoin and CBDC stuff, when all I wanted to do was Bitcoin. When COVID hit, I left to start nomading around the world to places that let me live my life (not San Francisco) and ended up in Guadalajara, Mexico sharing an apartment with Katie the Russian. We invited carman down to come live with us. And we we're in the pool on the top floor when I told him the idea for The Bitcoin Company, and asked if he would join if I left Visa to get it started. He said yes... and from that point on... it was going to happen.\n\n[The Bitcoin Company](https://thebitcoincompany.com) is here to bring Bitcoin to as many people in the world as possible. We are a bunch of bitcoiners sick of the way the world works today and think that the best way to help people (who we believe are really fucked otherwise) is to provide them a reasonable alternative to the traditional banking system... a way to opt out and get the same traditional banking services, and bitcoin services in one place. \n\nI'm not sure why Carman is doing it... but I love the guy. https://example.com/ 14503 421572 421572.421588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.04266626735269 0 \N \N f 246234766 \N 1 56626652 0 f f \N \N \N \N 421572 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424035 2025-03-03 19:38:38.529 2025-03-29 22:39:52.677 \N > What do you hope it's like?\n\nAs others have said I hope for a gradual adoption of the masses coupled with steady improvement in the tools around bitcoin. I hope for increased privacy and simplicity of tools. Ideally privacy should be easier than it is today. I hope the average person has bitcoin and has self custody of it.\n\n> What do you fear its like?\n\nI fear we will see the US and the tradfi world "sanitize it" and people only use paper bitcoin. I fear that everyone that adopts it will be KYC'd and owned by the state.\n\n> What products do you think we'll see?\n\nI think we'll see games using bitcoin. Up and coming games that don't yet exist. Game where bitcoin makes sense. I think we will see more of what we are seeing now. Content creators using bitcoin to support their work. Peer to peer value for value.\n\n> Where are the loud voices in Bitcoin wrong?\n\nThis one is harder for me but honestly I think a big area is the idea that bitcoin will lead to an anarcho-capitalist utopia. I just don't see that. I do think we will see positive moves away from state power but that vision will probably take centuries if it every happens. I say this as someone sympathetic to that vision.\n\nOthers are that real estate is a waste of time as are stocks. I think both of these are highly pumped up by the fiat system but with a non-fiat currency they will return to their place of utility. We still need land. Rental property will continue to be a profitable endeavor as well publicly traded companies. It will just be different. Where I think they are right is that over the next 20 years bitcoin will outperform.\n https://example.com/ 1552 423938 423667.423831.423938.424035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31712330234956 0 \N \N f 119325411 \N 2 29883418 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436471 2025-03-13 15:22:36.375 2025-03-29 22:39:52.679 \N 12 years ago he wrote this:\n\n> [...] If you read the Wikipedia article, you should know that I didn't create Bitcoin but only described a similar idea more than a decade ago. And my understanding is that the creator of Bitcoin, who goes by the name Satoshi Nakamoto, didn't even read my article before reinventing the idea himself. He learned about it afterward and credited me in his paper. So my connection with the project is quite limited.\n>\n> BTW, thanks to the discussion you started, I bought a Radeon 5870 and started mining myself, since it looks likely that I can at least break even on the cost of the card. (Of course I heard about Bitcoin earlier, but in my version of the idea, nobody can make large profits by mining/minting, so I didn't look into the possibility.) However I should warn you and others here that I have not analyzed the security of the protocol (since my time is perhaps better spent on other problems at the moment). My understanding is that not many other cryptographers have analyzed its security either, and in my experience these kinds of protocols often have flaws that are not found until that has happened.\n\nhttps://www.lesswrong.com/posts/ijr8rsyvJci2edxot/making-money-with-bitcoin?commentId=hbEu9ue9eymNzaF2J https://example.com/ 21222 436451 436028.436343.436396.436451.436471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.95146457860536 0 \N \N f 231720128 \N 2 116358845 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 08:39:51.107 f \N \N \N 0 0 0 0 1 0 0 188670 2024-06-23 21:24:41.45 2025-03-29 22:39:52.933 \N world peace, aka eltoo.\n\npeople make a lot of noise about how great the penalty system is for keeping nodes honest on lightning, but the burden of that penalty data is actually enormous. it weighs down every single lightning node, especially the most "productive" or routing heavy ones. you end up paying on-chain fees to close channels to be able to compact your database to a manageable size -- there's a real world cost to the *ability* to enforce penalties in those extra onchain fees.\n\neltoo fixes this by bounding the required state storage per channel update to 1, rather than n. https://example.com/ 20691 188396 188308.188380.188387.188390.188396.188670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8608607223937 0 \N \N f 266083721 \N 3 17308035 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 411086 2025-02-21 00:14:44.151 2025-03-29 22:39:52.448 \N The issue and risk with banking is counter-party risk.\n\nSVB was focused on early-stage tech companies and I think there is reduced counter-party risk there. There were two things that caught SVB off guard as money stopped flowing through the system:\n\n- VC investments dropped sharply, so new customer deposits dropped significantly, and\n\n- their customers burn rates remained higher than SVB expected \n\nBecause the customers of SVB are mainly companies, not consumers, I don’t know how the FDIC insurance covers depositors. I think because of the highly localised nature of their banking/customers (tech companies who rely more on equity investment than debt) that there may not be significant counter-party risks which domino through the economy. What we may see is “just” some comparatively wealthy software engineers who lose their job. Maybe some banks who have mortgages to these engineers come under pressure?\n\nThe bigger issue that’s more likely to cause systemic risk is commercial real estate. \nLoans and mortgage-backed securities tied to CRE are coming under pressure as rates have risen while vacancy rates have stayed high post-covid. If you can’t rent your space the value of your building drops. The landlords end up being squeezed through higher holding costs (much higher interest as rates rise) and their Loan to Value Ratios reaching levels which may breach debt covenants.\n\nThis area of banking system is more debt-based so more likely to have greater systemic risk, more counter-party risk as debtors fall like dominos. There will be assets (office buildings) that have been financed by multiple lenders, there will be smaller specialised lenders in the space who have large CRE loan books who are likely to have large tranches of their own funding being borrowing from larger institutions. Probably also entities who have CREIT assets on their balance sheets which will need to be written-down which will cause havoc etc etc\n\nI think it’s a stretch to say US consumers move to US debt when SHTF. It’s commercial and international entities who move to US government debt because it’s seen as a safe-haven. That’s what happened in March 2020, everything tanked because everyone wanted US cash and US debt.\n\nUS CBDCs are supposedly still in trial phases, I think we are a while off them being launched and think it’s tangential to this chaos. I don’t think they’ll be presented as the answer to the current mess that’s unfolding. The “answer” to this current mess is likely to be some new form of QE and the kicking of the can further down the road.\n https://example.com/ 17082 410409 410409.411086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6787522150933 0 \N \N f 164710873 \N 1 25229251 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402134 2025-02-13 15:12:25.606 2025-03-29 22:39:52.453 \N Dario from Muun here.\n\nWe should be careful to analyze the current lightning costs properly before calling economically rational pricing an "attack".\n\nBeing a non-custodial lightning mobile wallet during a bear market has costs that are usually overlooked: to provide inbound capacity, as a wallet, you are locking your own money into a depreciating asset, which has a very high financial cost. These locked assets have very low utilization since mobile nodes are not routing third-party payments.\n\nMost lightning wallets and nodes either do not account for these costs or subsidize them. And that's fine if you can spare the money.\n\nAt scale, it's just not sustainable.\n\nWe can wish that lightning had "almost zero fees" and ignore the actual costs, or we can accept the real costs (both operational and financial), talk about them openly, and get to work on optimizing them down. https://example.com/ 775 402091 402091.402134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1991894973074 0 \N \N f 280187258 \N 2 49007769 0 f f \N \N \N \N 402091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 445222 2025-03-20 14:00:57.392 2025-03-29 22:39:52.681 \N This might be very unhelpful but if this error only occurs on GrapheneOS can't you just try-catch it and call a fallback solution from there? https://example.com/ 19735 444755 444755.445222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.87368988358656 0 \N \N f 142603722 \N 1 40751164 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 2025-03-29 08:44:37.595 f \N \N \N 0 0 0 0 1 0 0 434482 2025-03-12 00:09:56.079 2025-03-29 22:39:52.684 \N Yes, this is possible. The last hop will fail the payment because it won't know who the next hop is supposed to go to.\n\nWhat is more common is to have the payment hash be set to a random value so the sender knows for sure the payment will fail. This is called "probing" and people do it to figure out if a payment for a certain amount will work on a given path.\n\nIt's VERY spammy at the moment, something like 90+% of payments over lightning are currently probing attempts that fail (on purpose). https://example.com/ 18178 434440 434440.434482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.19633596686686 0 \N \N f 70183337 \N 2 141660092 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 2025-03-18 21:19:28.508 f \N \N \N 0 0 0 0 1 0 0 407750 2025-02-18 10:58:58.861 2025-03-29 22:39:52.932 \N ZKPs are pretty complex and I don't fully understand their inner workings, so I'll try to explain the proposal (and potential benefits) and skip how ZKPs actually work\n\nThe proposal wants to add zero-knowledge proofs to the Bitcoin base layer through a soft fork. Zero Knowledge Proofs would allow for more complex scripting (allowing you to perform computation off-chain and you can provide a succinct proof it happened on-chain). \n\nIt could also enable more layer-2's. I believe the one the author proposed is similar to a roll-up, where users would deposit into a single "ZKP address", and transfer funds to each other off-chain. It's not quite clear what improvements this would offer over classic payment channels. \n\nHowever, there are a bunch of issues with adding ZKPs to Bitcoin too that would also increase complexity. Verification keys, which are needed to verify ZKPs can be larger than 520 bytes, so you can't include them in a spending script. Thus you would include the hash, and then propagate the key separately. The issue with this is that without the key, you can't verify the transaction, so for a ZKP spend to happen, you'd have to somehow make sure every node on the network has received the verification key. You'd also need to store this key (seemingly permanently) to verify past transactions, which would increase storage requirements. \n\nGenerating ZKPs (and verifying individual ZKPs) is also quite computationally expensive. The cost can be reduced by "batching", but you still would only have a limited amount of ZKP-transactions in a single block, because each one can take tens of milliseconds to verify. https://example.com/ 4043 407625 407619.407625.407750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6382871068353 0 \N \N f 184703212 \N 1 127608938 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449589 2025-03-23 12:47:51.055 2025-03-29 22:39:52.935 \N One of the biggest challenges in being alive is that we don't have an A/B test available. \n\nWe are all born with certain tendencies, predilections, weaknesses, etc....but we are born blind to them. Because we can't "swap out" to a different person, we must stumble along in a blind walk and slowly learn these things by trial and error. \n\nThis is a very slow process and sometimes it takes you a decade to realize "why haven't I started doing XYZ before? or more accurately....why didn't I stop doing XYZ long ago??"\n\nAs such, I tend to feel that the "best version" of myself is most recent version. Yea, I'm not as young or fit (or have the same amount of hair) as my younger self, but 'this version' always feels the most content.\n\n https://example.com/ 634 449570 449559.449570.449589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0343042613307 0 \N \N f 62250296 \N 1 11644542 0 f f \N \N \N \N 449559 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434474 2025-03-11 23:48:09.759 2025-03-29 22:39:52.936 \N Supporting victims rights of self-defense is not warmongering. Neither on street level between two individuals nor at bigger scale. https://example.com/ 2529 433345 432881.433324.433345.434474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1775216592589 0 \N \N f 57705022 \N 1 211664718 0 f f \N \N \N \N 432881 \N 0 0 \N \N f \N 2025-03-18 17:59:01.271 f \N \N \N 0 0 0 0 1 0 0 451422 2025-03-24 14:44:08.726 2025-03-29 22:39:52.449 \N Rant incoming...\n\nThis "hero" thing our culture has been doing for a while now is really getting tiresome to me. When we pretend that having a profession makes one a hero we devalue the acts of true heroism. Gonna pick on the "teachers are heroes" thing.\n\nMy wife was telling me a story she heard from a woman that takes in many foster kids. Kids that have been abused and abandoned. These kids come from very tragic situations and often struggle in school and life in general.\n\nWell, one of these teachers, I mean heroes told this woman that her child had to pass these quizzes for the teacher to get paid. She is aware that this child was living in hiding for the last couple years and didn't even attend school. This teacher is apparently showing no patience, compassion, or understanding to this child. It makes the blood boil. The child is doing very well considering. She is scoring A's on everything except tests. She is excited about learning! However, this teacher has been running down her student and putting pressure on her, making it about her own salary...\n\nThere are many fine teachers. I know some that are amazing people and have love and passion for the work they do but when we just use blanket statements about any group it does those that are truly extraordinary a disservice. In my experience there are many teachers that are more like villains that heroes. In this case this is a government school. They have a union and from my time working in the public education system and my father's time working in it I can tell you people like this woman are not rare. What is rare are the amazing teachers that make a massive impact on student's lives. When I worked with teachers most were new and full of passion for their work but the system grinds it out of them. Many leave the field for work that they can have more control over. If you care about your work, being a teacher is hard work. If you just want a paycheck and enjoy being a drone its not hard work. Its easy. I believe this is the main reason why we see so many terrible people in the profession.\n\nCalling every medical person, police, firefighter, or soldier a hero is as dumb as calling every person of any group dumb or evil. It devalues those that are truly heroes.\n\nEnd rant. https://example.com/ 1354 451418 451395.451402.451418.451422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.374940208703372 0 \N \N f 149368714 \N 1 142295335 0 f f \N \N \N \N 451395 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423591 2025-03-03 13:25:11.455 2025-03-29 22:39:52.677 \N These are the backend funding sources for Alby Hub.\n![](https://m.stacker.news/50397)\n\nSelect "Advanced Setup" to be able to choose all these options.\n![](https://m.stacker.news/50398)\n\nElectrum server have nothing to do with Alby. Electrum server is for onchain data not for LN channels.\n\nOptions for you:\n1. Install LND node and connect it to Alby. Alby hub will act as LN node management for your LND. You will need some information from your new LND node to input in the Alby setup.\n![](https://m.stacker.news/50399)\n\n2. Install Esplora and then select from Alby hub the option with LSK backend. Then configure that Esplora server for your LDK node. By default LDK node will be configured with Blockstream Esplora, but that one is slow and you could have issues with syncing. Better run your own if you already have a node.\n3. The simplest one is to use ecash mint as backend. No need for any LN node to run.\n\nBonus, using https://zap.store/download/ you can instal also Alby Go and link it to your Alby Hub and using as your mobile wallet on the go...\n\n*damn it, I should write that guide about using Alby Hub for noobs* https://example.com/ 14650 423384 423384.423591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.620362196818 0 \N \N f 2012610831 \N 15 20884769 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435059 2025-03-12 12:39:47.332 2025-03-29 22:39:52.679 \N I'm not a writer, just a browser of SN:\n\nI think of this site as being modelled on Hacker News. HN was about being the front page of the internet: good content from around the web rising to the surface through updoots. \n\nMaybe I'm old-school, but I wouldn't think of publishing to/on SN, or thinking of it as some form of a Substack thing. To me its about sharing good finds from the www and discussing them. I think there's a comment here already about self-hosting and that sounds like a better way to go imho.\n\nBut did I read your piece on Zen and SN and really liked it. So if you want to use SN as a place to publish, please do, it looks like you have some great things to contribute and I look forward to reading more.\n https://example.com/ 20980 435046 435046.435059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.57323707226 0 \N \N f 302839338 \N 4 147478154 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 10:17:54.291 f \N \N \N 0 0 0 0 1 0 0 408262 2025-02-18 16:58:31.644 2025-03-29 22:39:52.679 \N [This post](https://stablesats.com/) explains exactly what Stablesats is and how it works. https://example.com/ 11527 408257 408255.408257.408262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.27473018298933 0 \N \N f 4039199 \N 1 1464922 0 f f \N \N \N \N 408255 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447284 2025-03-21 18:45:25.885 2025-03-29 22:39:52.682 \N 1. Core's plan was always to roll out 80 byte OP_RETURN incrementally by starting with 40 to see if it broke anything and then ramping shortly up to the intended 80.\n\n2. #Bitcoin Core, having finished that project, has had 80 byte OP_RETURN for nearly a decade now. 85%+ miners have been set to 80 bytes for the same amount of time. Read the commit log. Read the bitcoin-dev mailing list.\n\n3. Luke admitted on Shitter/X that he only went along with the Core team because he had his own fork where he would make up his own standard.\n\n4. Now that Jack has invested in Luke to decentralize mining, he's cast a shadow over the Ocean.xyz launch by hijacking the conversation and torpedoing their marketing to serve his own vendetta against the Core team.\n\n5. Whirlpool transactions are trivial to detect and Luke could whitelist them no problem. Instead we get gaslighting about decentralization and freedom while Luke kneecaps #Bitcoin fungibility.\n\n6. What's more centralized? The development process in bitcoin:master with a decade+ track record, ~1000 developers, and 20,000+ code reviews, or Knots, where one dude makes god commits daily, breaking critical aspects of #Bitcoin?\n\n7. Until Ocean.xyz launches #StratumV2, it's just another gatekeeper. Ordinals is going to run out of customers like every other shitcoin. We don't need to compromise Core just because Luke didn't get his way 10 years ago.\n\n8. GFY. https://example.com/ 17046 447085 446945.447085.447284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.05596157604881 0 \N \N f 122931196 \N 1 150954974 0 f f \N \N \N \N 446945 \N 0 0 \N \N f \N 2025-03-28 12:06:11.262 f \N \N \N 0 0 0 0 1 0 0 435351 2025-03-12 15:58:34.621 2025-03-29 22:39:52.684 \N Thanks for sharing. I think SN really needs to focus on its social media presence. It's shocking to me that there are bitcoiners out there that still don't know about SN. Stackers need to help with that as well. \n\nTrying to attract prominent bitcoiners to the platform will help with this as well. I know we have had a number of big names do AMAs on SN but they don't see to regularly post. \n\nHave you guys done any paid ads on social networks? How about advertising on bitcoin podcasts? I think there is still a lot of low hanging fruit available simply via word of mouth and network effect without having to do paid ads but that is something to consider. \n\nAlso, I think as we get a bit more attrition with the territories over the next few months and eventually whittle down to what will be the core territories, there should be a cohesive marketing strategy between SN and SN territories as their would be with a brand and its franchises. Eventually territories should be a gateway to bring new users to SN. I still think territory specific referral links is a good idea. 100 sats to new users that join via link and cost can be shared between territory founder and SN. \n\n https://example.com/ 15336 435331 435046.435324.435331.435351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9103458108379 0 \N \N f 396520366 \N 2 187676512 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 09:16:36.675 f \N \N \N 0 0 0 0 1 0 0 443543 2025-03-19 12:10:43.047 2025-03-29 22:39:52.452 \N There's the backpedal I was expecting. Those are conferences too. Someone is always paying for the space food etc. You just dislike the sponsors less.\n\nThe BTC Mag conferences aren't my first choice either, I passed on both this year... but they are something interested people should experience at least once so that they appreciate the smaller conferences. Even someone on a budget could skip the conference ticket and just lobbycon / offsite parties in the area.\n\nJust because you didn't extract value from them doesn't mean there was none to be had for someone more resourceful. https://example.com/ 3371 443048 442978.443048.443543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1011473957456 0 \N \N f 756745419 \N 4 59832297 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 2025-03-26 05:55:14.509 f \N \N \N 0 0 0 0 1 0 0 421148 2025-03-01 12:46:32.283 2025-03-29 22:39:52.677 \N I like this a lot (no surprise, since I probably have like a dozen series going).\n\nI imagine the creator would either select specific stackers who can post in the series or leave it open to anyone, as well as making a similar choice about where it can be posted. We'd want the creator to be able to adjust those choices indefinitely.\n\nThe advantage of the series post type for the author would be inheriting an audience and perhaps working off of a template (plus the joy of contributing to something greater than oneself).\n\nThe advantage for readers would be less notification clutter and more tailored content subscriptions, as well as being able to easily find other entries in the series. I'm thinking there could be "Previous Entry", "Next Entry", and "Full Series" links at the bottom of each series post.\n\nI don't think there would need to be anything different about fees or zap shares, though. These would essentially be independent posts as far as SN is concerned, with the exception of being able to see the whole series on a search/sort page.\n\nAnother step towards evergreen-ness, @elvismercury (you absentee son of a bitch). https://example.com/ 18068 421116 420055.421116.421148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.254506140958 0 \N \N f 57606972 \N 1 104514277 0 f f \N \N \N \N 420055 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433782 2025-03-11 11:49:20.229 2025-03-29 22:39:52.934 \N On Michael Saylor:\n\nIn my opinion, he understands Bitcoin and what it ultimately means. I think he is extremely intellectual, and has as good of understanding as anyone, of what the future may hold in the Bitcoin era.\n\nI do not think he actually believes all the statist bullshit about regulation being good, taxation, and the US dollar continuing to exist. It’s too bad he doesn’t speak freely about it, but the position he is in prohibits him from being truthful about this. Him telling people that Bitcoin will destroy the state is not necessary or helpful when explaining Bitcoin to people who haven’t seen the rabbit hole yet-it will only turn off their brains. I’m not sure if he could be voted off the board, but nothing good would happen if he is 100% honest on this point. In the end, none of this has anything to do with the value proposition of Bitcoin.\n\nYou don’t yell a war cry as you jump out of the Trojan Horse. You sneak out at night and slit the throats of your enemies while they sleep.\n\nSaylor is just a man, who has an engineer mind and an excellent way of distilling what Bitcoin is. Study his ideas and metaphors, and as always, DYOR. https://example.com/ 14607 433555 433555.433782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0001354495966 0 \N \N f 203883903 \N 1 79694061 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 00:54:01.389 f \N \N \N 0 0 0 0 1 0 0 443787 2025-03-19 14:14:17.274 2025-03-29 22:39:52.941 \N Not really but people always need their boogymen. Blackrock is generally viewed negatively but Larry is very clear about what Blackrock does. The company manages money. None of the trillions they have access to is their money. He repeats it over and over. Blackrock is behaving based on the requests of its clients. But that falls on deaf ears because people would rather rip into Fink for ESG stuff while Blackrock also has oil and gas investments. Instead of reaching for the logical conclusion that maybe with trillions under management Blackrock has sizeable clients from both industries I guess its just easier to say "REEE FINK BAD REEE" and put no energy into thinking about things.\n\nSo, ETF's are not bad. In the case of Blackrock this is them attempting to meet the needs and demands of their clients. ETF's can be integrated into retirement plans which means you no longer have to hold Bitcoin to feel its effects. Its effects can be felt by your automatically managed 401k account instead. You don't even have to be aware and most people won't because most just open an account with their employer's provider and let it do its thing. This is how Bitcoin integrates into every day lives. \n\nCustody of Bitcoin really has no need to be the focus of everything involved with Bitcoin. Care less about the custody and more about the utility. https://example.com/ 17011 443774 443593.443614.443774.443787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.02470982107671 0 \N \N f 232101708 \N 4 85462964 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404442 2025-02-15 21:58:28.939 2025-03-29 22:39:52.453 \N One of my cousins haa two kids. Both her babies came out normally within 10 20 minutes in labour even after the doctor's suggested otherwise. \n\nI think this recent surge in C-Section might kill the ability in women of delivering babies normally overtime. Also listened that many women deliberately have c-section. Don't understand the reasoning behind this. https://example.com/ 13249 404049 403648.403971.404049.404442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.09273892043573 0 \N \N f 175502853 \N 3 17943305 0 f f \N \N \N \N 403648 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403172 2025-02-14 14:08:24.169 2025-03-29 22:39:52.677 \N You do know Darth is going to tell you what do you care about the law, you did not sign up for it~~ https://example.com/ 8544 403151 402871.403021.403151.403172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3354839970447 0 \N \N f 102444755 \N 1 26450449 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448310 2025-03-22 14:38:41.135 2025-03-29 22:39:52.929 \N > I think people have a sense that they do want to live alone\n\nWe have good friends who are headed for divorce, because one of them expressed that desire and couldn't put the toothpaste back in the tube, so to speak. Now his life is unraveling and his family is falling apart.\n\nMy wife and I talk about this all the time. In unshackling ourselves from oppressive cultural expectations, we removed the mechanism that guided people into lives that were more or less fulfilling, most of the time, for most people.\n\n> The average person in 2009 was less empathic than 75 percent of people in 1979.\n\nI hadn't heard about the empathy research, but it certainly tracks. I often think about the related issue of intolerance. When we valued family, we not only tolerated but loved people who were very different from us. Now people just excommunicate relatives they disagree with. \n\nAnd I'm not just sitting up on my cloud of judgement handing down lessons to all the sinners. I also take the route of avoiding family members who I don't really like, but I at least know that in a better society we'd figure out how to be closer. https://example.com/ 20969 448283 448283.448310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6228720679187 0 \N \N f 145296323 \N 1 51266863 0 f f \N \N \N \N 448283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457280 2025-03-28 11:26:50.333 2025-03-29 22:39:52.934 \N Some response:\n\n* `1` - I agree, plenty of content\n* `2` - This is the big one I think could be worked on. I often go directly to the comments section on HN because the comments have much more nuance and analysis than the actual article. I don't know how to increase comments (and comment quality) but through more users.\n* `3` - I think this is actually of minor importance. The features are rich enough that the site can be used for it's primary purpose. I would like to see a 'referral' type of functionality so I can spend some money to add some friends, should they want it, but otherwise minor tweaks with loading speed, bios etc. are nice but not going to make an appreciable difference. Personally, I would prioritize on features based on user growth potential (referral, etc.) but, regardless, I think key functionality and functionality shipping speed is good.\n* `4` - You did a 'where did you find SN' question a little while ago and I was surprised at the diversity of channels that people found this site. Though anecdotal, I would take that to mean there are many different avenues into SN, so casting a wide net and advertising in many different internet venues is valid, at this point.\n\nThough a little tangential, and very low priority, I would like to see a kind of "state of SN", displaying user growth, current number of users, where users heard of SN, etc. etc. Maybe this could be done quarterly or yearly? Not critical or anything but it would be nice to see how many other lurkers like me are on here and to get a general sense of how many people are involved.\n\nJust a random thought, there's some "web monetization" folks that essentially allow you to 'tip' the websites you go to (maybe by buying coins through some host and then going to a site with a referral link or other identifier?). Maybe there's some way to provide a 'tip website' feature for sites, links or people that support it, so that you can not only tip the person who submitted the link but also tip the creator of the content as well? Though potentially ripe for abuse, this might help drive users by a kind of word of mouth advertising. https://example.com/ 20551 457126 457126.457280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.04519914101283 0 \N \N f 96821425 \N 2 223078702 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416730 2025-02-25 19:53:27.765 2025-03-29 22:39:52.937 \N Oh, mhh, the [official spec](https://github.com/nostr-protocol/nips/blob/master/47.md#theory-of-operation) ("official" as mentioned [here](https://docs.nwc.dev/contribute/specification)) says this in [Theory of Operation](https://github.com/nostr-protocol/nips/blob/master/47.md#theory-of-operation):\n\n> **Theory of Operation**\n>\n> 1. Users who wish to use this NIP to send lightning payments to other nostr users must first acquire a special "connection" URI from their NIP-47 compliant wallet application. The wallet application may provide this URI using a QR screen, or a pasteable string, or some other means.\n>\n> 2. The user should then copy this URI into their client(s) by pasting, or scanning the QR, etc. The client(s) should save this URI and use it later whenever the user makes a payment. **The client should then request an `info` (13194) event from the relay(s) specified in the URI. The wallet service will have sent that event to those relays earlier, and the relays will hold it as a replaceable event.**\n\nAfaik, [docs.nwc.dev](https://docs.nwc.dev/) is from @Alby. Let's see what they have to say about this 👀 https://example.com/ 7395 416648 416648.416730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.170734018231258 0 \N \N f 17277102 \N 1 125537426 0 f f \N \N \N \N 416648 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424158 2025-03-03 21:05:49.396 2025-03-29 22:39:53.15 \N Seems like a very slow day in the Saloon. \nMaybe its time to assemble the Avengers.\nhttps://imgprxy.stacker.news/Kj7Nws332B1wXlwgJ8VrBbhv5jt7SjkDf9MyeyazCXU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9RUFJNSlgzL256bWsxNW5vaHM1NTEuanBn https://example.com/ 2195 424153 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424130.424153.424158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2913050883842 0 \N \N f 117386929 \N 2 192832289 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447451 2025-03-21 20:45:19.575 2025-03-29 22:39:53.151 \N Good question. That sounds like a lot but is probably on the low side, given that the number of connected devices and plans will drastically increase.\n\n- Already 275m U.S. mobile devices, 832m in Europe, 80m in U.K. and much more elsewhere.\n- There are [double-digit internet connected devices](https://www.statista.com/statistics/1190270/number-of-devices-and-connections-per-person-worldwide/) in Western Europe and North America per person.\n\n- [8.9bn worldwide cellular subscriptions](https://www.statista.com/statistics/262950/global-mobile-subscriptions-since-1993/) already and continues to increase. Very speculative but I believe 60% of those customers could end up utilising starlink infrastructure, even if not directly, via their existing providers. I just don’t see any of their competitors really getting close for the foreseeable, but I hope I’m wrong. https://example.com/ 12819 446954 446954.447451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9152371685974 0 \N \N f 10278811 \N 1 112089654 0 f f \N \N \N \N 446954 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437419 2025-03-14 13:59:45.048 2025-03-29 22:39:53.152 \N is that shakespeare? * chef’s kiss * https://example.com/ 12821 437238 437238.437419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4080148138473 0 \N \N f 270841724 \N 2 248930390 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434805 2025-03-12 08:53:14.059 2025-03-29 22:39:53.152 \N Mind blowing that other huge corporations are just sitting by and allowing MicroStrategy to do this. I think the only reason this hasn't generated such a buzz is because MicroStrategy isn't a household name.\n\nIf Google, Microsoft, or Amazon were doing this, you can be sure others would soon be following close behind. https://example.com/ 769 434800 434795.434797.434800.434805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0738340034131 0 \N \N f 118202380 \N 1 173914735 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:40:15.435 f \N \N \N 0 0 0 0 1 0 0 245128 2024-09-23 16:43:48.381 2025-03-29 22:39:52.677 \N I don't live near my friends, because I don't make enough money. The housing around each of them is absurdly expensive (e.g. houses around one friend are about $500k, with one recently selling for over $1 million). They are able to afford those houses because (a) they are married and both work, and (b) their careers are going far better than mine. In one firend's case, he constantly works overtime to make ends meet.\n\nThe only way I can see my situation changing is if my friends were to move out of the suburbs, which some of them are willing to do. One of my friends has proposed two ideas:\n- Buying a large plot of land (perhaps 300 acres) and subdividing it similar to [Celo](https://en.wikipedia.org/wiki/Celo_Community). I'd happily quit my current job and live in a van building houses to help get that going.\n- Moving into a near-dead town, which once had thousands of residents but now has a dozen, elderly residents. This would involve each person/family/couple buying housing/land in and around town until the intentional community is the majority at the city council.\n\nThe former option is infeasible, because plots of land that size are extremely expensive and difficult to find, and most have retarded state-imposed restrictions on them.\n\nThe latter option is, in my estimation, the most likely to succeed. The community could be built piece-meal, with each person/couple/family moving in a house at a time. And if they want to leave, they can sell the house to the next person wanting to move in or sell it to the community.\n\nBut I don't think an intentional community of my friends will materialize until after the upcoming depression is done and only if my friends have wealth to spare thereafter. https://example.com/ 20912 245118 245118.245128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9679474926972 0 \N \N f 174064823 \N 1 200504812 0 f f \N \N \N \N 245118 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422958 2025-03-02 20:03:13.063 2025-03-29 22:39:52.683 \N extremely hard. \n\nWhen you don't have a reserve currency and world trade is done in someone else's money, what you can do is limited. They need dollars to serve debts, which are denominated in dollars. The debt-givers - that same IMF they keep running with here - forces them to sell everything of value they have and invest in resources only, as conditions for the loans. \nThat means they can't create much value-added production in the country. Meanwhile, the world market prices for their resources are out of their hands. \nThey get less inflow than outflow in dollars, those dollars appreciate, meaning they get fewer dollars for their resources, which again cuts their funds inflow. All the while the interest on the debt, also in dollars, of course, keeps rising. \n\nThis is a dollar/international financial system problem which systematically leads to all developing countries' currencies to fall over time against the dollar and euro - as that upholds the luxury living of the north by making southern resources dirt cheap. It's a racket. https://example.com/ 811 422953 422953.422958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.719593508071 0 \N \N f 110393216 \N 1 102552795 0 f f \N \N \N \N 422953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 294915 2024-11-13 07:16:58.361 2025-03-29 22:39:53.153 \N Beyond Good and Evil - Nietzsche https://example.com/ 21051 294909 294909.294915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.57152239575823 0 \N \N f 100417352 \N 1 70478399 0 f f \N \N \N \N 294909 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436391 2025-03-13 14:23:22.207 2025-03-29 22:39:53.155 \N Are you in conjunction with Wasabi blacklisting bitcoin addresses through coinjoin? https://example.com/ 20624 436273 436273.436391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0299981313831 0 \N \N f 664344468 \N 4 212619124 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 08:38:07.692 f \N \N \N 0 0 0 0 1 0 0 430825 2025-03-09 12:56:36.18 2025-03-29 22:39:52.677 \N Never heard of robosats before. I'm watching one of their tutorial videos right now. \nWhat I don't understand is, what prevents one party from not meeting his obligations? There can't be a reputation system since nyms are auto-generated for every transaction. https://example.com/ 21332 430795 430795.430825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.43679523755679 0 \N \N f 201603463 \N 1 228313060 0 f f \N \N \N \N 430795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408227 2025-02-18 16:35:01.056 2025-03-29 22:39:52.68 \N ![Stealing Meme](https://i.imgur.com/oQk2EPw.jpg)\n![Govt Power Meme](https://i.imgur.com/QGWFZOA.png)\n![Legislators Meme](https://i.imgur.com/FranQ2H.jpg)\n![Inflation Clown Meme](https://i.imgur.com/aPdGiLP.jpg)\n![Dollar Value Meme](https://i.imgur.com/5u1iJNq.jpg)\n![White House Flag Meme](https://i.imgur.com/RxyU3dr.jpg)\n![Yard Sign Meme](https://i.imgur.com/WdqgSR0.jpg) https://example.com/ 20939 407970 407970.408227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8300287848721 0 \N \N f 22087941 \N 1 149118538 0 f f \N \N \N \N 407970 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434376 2025-03-11 20:47:00.273 2025-03-29 22:39:52.685 \N This is a great topic for a discussion. I am non technical and don’t know enough about the various implementations you‘ve listed but I did read 2/3 of the Civ Kit paper and gave up because it seemed overly complicated and like it was just buzzwords. But I don’t know if that’s just because I’m not a dev? Maybe it makes more sense if you are technical. It sounded like an overly complicated RoboSats mashup with Nostr.\n\nThe bit were it lost me was where it started to talk about DIDs and where it talks about the potential for a board to be a central point of failure (so federation could be a solution). Don’t know, but definitely got me appreciating the pure p2p nature of Bisq more.\n\nI’m also aware that the first posts on forums in response to bitcoin were highly sceptical so I can see the irony of this post.\n\nOverall though, I’m very glad there’s a lot of attention and effort going into this problem because we absolutely need way more successful alternatives. Bisq is great but it’s not mobile first and it’s really a marketplace for bitcoin.\n\nI’m really keen to watch the various implementations compete over the next few years https://example.com/ 21442 433828 433828.434376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9231839621072 0 \N \N f 2804010 \N 1 60407019 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402784 2025-02-14 02:56:32.52 2025-03-29 22:39:53.149 \N > Once it was implemented, the value it brings is immense in tying posts together and increasing visibility for older content.\n\nI think you mean the update that @k00b did to our search engine which now uses a neural network to find similar posts with "once it was implemented".\n\nI agree, it's very valuable to find similar posts this way. Kudos to @k00b for that!\n\nBut I think with "embedded search", a search while writing a reply was meant.[^1] For example, you could simply type `/` in your reply and a search would popup to find the post you want to link to. Just like you can currently `@` and a search for all users shows up. This way, you don't need to stop writing your comment to link to a post. We haven't implemented that yet though.\n\n> During my first year on SN I spent a lot of time dredging up old posts to read. It felt like a shame that, at least for me, they were so difficult to find.\n\nIt's still a shame that there are no obvious, only abstract rewards for that currently but we will get there, I think. :)\n\n[^1]: https://github.com/stackernews/stacker.news/issues/542 https://example.com/ 21514 402188 402188.402784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6695849659638 0 \N \N f 222900575 \N 1 8718224 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413889 2025-02-23 14:15:50.355 2025-03-29 22:39:53.153 \N I live in a 3BR/2BA condo in Austin TX. Will be taking applications for roommates soon so that I can use their rent money to buy more sats. If anyone is interested, reply below. Rent can be paid in fiat or sats.\n\nWas planning on making this post a few days from now, but what the heck, hey? https://example.com/ 11527 413647 413523.413534.413592.413595.413640.413647.413889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8811437782538 0 \N \N f 368460457 \N 2 181102485 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448377 2025-03-22 15:17:01.021 2025-03-29 22:39:53.153 \N Yes. When organisms have enough, pro-sociality can get expansive. I think about this all the time. It's an interesting lens to invert: if someone is being a giant douche, what else is probably true, or has been true? https://example.com/ 21041 448371 448331.448342.448359.448371.448377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8871080354082 0 \N \N f 5278880 \N 1 56804134 0 f f \N \N \N \N 448331 \N 0 0 \N \N f \N 2025-03-29 08:34:47.118 f \N \N \N 0 0 0 0 1 0 0 421655 2025-03-01 21:05:40.864 2025-03-29 22:39:53.155 \N Doesn't matter. Nothing anyone can do about it aside from screaming into the wind.\n\nFor the record, I think it's mixed. High fees suck, but we were always going to eventually end up with higher fees. Think of it as a strong incentive for new users to go straight to Lightning. https://example.com/ 4487 421585 421567.421585.421655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2296863679321 0 \N \N f 249063040 \N 3 45446631 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403926 2025-02-15 11:33:00.453 2025-03-29 22:39:52.678 \N Certainly.\n\nExisting Bitcoin inheritance solutions roughly fall into 2 major categories:\n1. Key duplication\n2. Pre-signed transactions\n\nThe first one is relatively simple to understand (but not simple to implement), and probably the most common. Basically you would share all your keys and wallet data directly with the beneficiary, as well as the instructions to recreate said keys and wallet from scratch.\n\nThe problem with that is that this potentially creates a security vulnerability. You might be confident in your ability to safekeep sensitive key material, but it's hard to say the same for your family. The more copies of the keys you create, the easier you make it for a potential attacker. Furthermore, if the wallet is a multisig or uses a custom setup, the instructions can be quite difficult to follow, especially for someone non-technical. (You can perhaps "mitigate" this complexity by keeping your bitcoin in a singlesig wallet, but this comes at the cost of being more vulnerable to SPOFs).\n\nPre-signed transactions, on the other hand, require you to lock UTXOs. This technique interferes with your daily wallet usage. Every time you have a new transaction, you'd need to update the pre-signed transactions. You also need to pick transaction fees in advance, which may be problematic as we transition into the fees era, and the fee rate might become more volatile - the pre-signed transactions might get kicked out of the mempool. Last but not least, pre-signed transactions require you to pick the destination address/wallet in advance. This to me is its weakest point. The more time passes, the more uncertain we will be about what happens to the destination wallet. Will the beneficiary still have control over that wallet? Has any of its keys been compromised? etc. A lot can happen in 10-20 years.\n\nOur Honey Badger solution solves this by having a dedicated inheritance key. The beneficiary does not need to know everything about the original wallet/keys in order to claim the inheritance. And we have tried to simplify the process as much as possible. The inheritance key is also time-locked, so you don't have the same vulnerability as the typical key duplication technique.\n\nAnd of cos with that we are also able to sidestep all the problems with pre-signed transactions, since the inheritance claim happens on-demand on a future date, not now.\n\nHope this answers your question.\n\n https://example.com/ 640 403922 403824.403857.403868.403869.403918.403919.403922.403926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2832355533442 0 \N \N f 721583379 \N 5 162112866 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435580 2025-03-12 19:50:48.482 2025-03-29 22:39:52.679 \N Well, what could be done, is as a local community organizer (and I'm of the belief that your orange pilling efforts are best spent in grassroots community organizing) you could create a wallet which calculates the tax burdens, has an API to an exchange so that all accounting could be done internally, has an option to send some Bitcoin (which may seem like an optional increased fee) which puts some extra sats on top of the purchase into another wallet hidden behind settings which can be used to pay for accounting services at the end of the year, which would then be refunded to the user what was not used to pay for those services automatically probably on the 15th of April. \n\nWhen you're doing community organizing, you see the people you're orange pilling much much more often than a 5 minute speech you'd normally get to orange pill randoms. As such, you can warn people about shitcoin scams, create customized wallet solutions and all kinds of stuff your community might need.\n\nTo read more about community organizing, you should read the Bitcoin Beach whitepaper: https://uploads-ssl.webflow.com/5f46d2bb7cca38461c7b8e13/62e049dd5f62fb5c824f1e34_bitcoinbeach.pdf https://example.com/ 699 435488 435488.435580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3954678448893 0 \N \N f 24454543 \N 1 101225204 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 08:56:31.539 f \N \N \N 0 0 0 0 1 0 0 428728 2025-03-07 14:49:52.32 2025-03-29 22:39:52.68 \N River offers a Lightning API that allows developers to easily integrate with the Lightning Network via a simple HTTP API. We support sending and receiving to and from BOLT11 invoices, LNURLs, and onchain addresses, all without having to worry about channels, liquidity management, peer selection, or infrastructure. \n\nRiver is a direct Lightning Service provider as opposed to a Liquidity Service provider (eg. Magma, Surge, etc.) https://example.com/ 14278 428104 427718.428104.428728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.883369945397 0 \N \N f 185627650 \N 2 194583269 0 f f \N \N \N \N 427718 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420782 2025-03-01 03:46:19.995 2025-03-29 22:39:52.684 \N \neach period have his for and against.\n\nChildhood: Unconscious of the life\nYouth: Discovery girls/party/sport...\nYoung adult: can do what you want as you re an adult\n30's: party hard and work\n40's: Did a balance of my life and check what did i do or not ? And what can i do\n50's: what do i need to fix in my life (physical, spiritual, mental.... )?\nafter i do not yet :) https://example.com/ 718 420750 417342.420721.420750.420782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1150463104501 0 \N \N f 293294048 \N 3 200046900 0 f f \N \N \N \N 417342 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435447 2025-03-12 17:26:54.782 2025-03-29 22:39:53.151 \N It's true. The defaults are so powerful, and free is one of the most powerful default settings.\n\nIt's funny, one of the things that I think about is wanting to preserve my budget -- to stay solvent. Which is a weird thing to want, since what amounts to quite a hefty zap, like 1000 sats, is not yet thirty cents. And yet there's a scarcity mindset, even when the thing itself is not scarce.\n\nWill be really interesting to see how norms evolve over time. @Undisciplined has set in motion a very intriguing psychological experiment with this post. https://example.com/ 20969 435063 435046.435063.435447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.048784504951 0 \N \N f 124136299 \N 1 108143286 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:01:22.238 f \N \N \N 0 0 0 0 1 0 0 435348 2025-03-12 15:52:40.164 2025-03-29 22:39:52.681 \N Love the recommendation and reminder.\n\nI've got a [lengthy summary of the book here](https://stacker.news/items/49720) on StackerNews, for those looking for a taster 👀 https://example.com/ 6191 435337 434795.434798.435179.435194.435204.435239.435290.435325.435330.435337.435348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1061476702379 0 \N \N f 113005368 \N 1 33852428 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 10:30:11.916 f \N \N \N 0 0 0 0 1 0 0 440779 2025-03-17 14:31:27.666 2025-03-29 22:39:52.681 \N ### Do you show your entire house to people visiting you, like a tour?\n\nI saw people doing this (for no specific reason) and came an idea into my mind: what about making them a joke with this "tour"?\n\nLet's say you are visited by some old friends and they never saw your house. As usual they expect you to make them the "house tour", showing each corner of the house, explaining how was built etc and bullshit like that.\n\nBut from the whole house, especially you are missing a single room. It could be an empty room, a closet or whatever space, but with a door and you do not open it. When you come close to that door, you just move away and try to evade the answer if they insist to see that room. Will be even more interesting to play an audio record in that room, with a creepy sound like torturing somebody or any other sound you think will bring more attention to the visitor and activated remotely by you when you are close to that door. Nothing scary, just more mistery.\n\nPrepare previously that room with a video camera that start recording the door at any movement.\n\nThen later, just relax with the visitors on the sofa in the living room, talking, drinking etc. You will see that their curiosity for that room is extreme and suddenly will ask to go to the bathroom. For sure they do not go to the bathroom, but to see that room.\n\nAnd voila! Once they open the door, will see an empty room (camera is hidden). Nothing in there. But will be nice if you have somebody else taking the video of them entering the room (without permission) and put it on a DVD or a USB stick or something. Then when is about to leave, you just hand over the DVD/USB with the recording of them enetering the room and saying: "Thanks for violating my privacy, my friend, I was trusting you."\n\nSeeing their face will be so fun, paramount. https://example.com/ 8242 440520 440520.440779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5490051214068 0 \N \N f 71683213 \N 1 201775271 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443315 2025-03-19 08:57:20.854 2025-03-29 22:39:52.685 \N Holy crap\n\n1. Registration\n2. Prohibit ownership\n3. Censorship\n4. Offer iron grip control as only option\n\nBasically what I just read. https://example.com/ 11220 443311 443295.443297.443301.443308.443311.443315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.715635996572814 0 \N \N f 247434330 \N 1 26083781 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:30.676 f \N \N \N 0 0 0 0 1 0 0 307953 2024-11-25 14:00:22.477 2025-03-29 22:39:52.939 \N Whoever reads this sentence must perform 10 burpees to start off their day today. Sorry not sorry, thank me later. https://example.com/ 1438 307742 307616.307742.307953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0218109268408 0 \N \N f 343122300 \N 4 221923096 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410379 2025-02-20 13:06:05.627 2025-03-29 22:39:52.939 \N The term maxi was coined by the greatest shitcoin scammer of all times himself, Vitalik. He created out of thin air 72 million coins and badly needed to justify shitcoins. We took the term and proudly wear it everyday. \n\nIt requires both, experience and hard lessons as well as learning the history of money, understanding what separation of money & state will take and how shitcoins are on the side of fiat. \n\nI'm not sure if this was Satoshi, Hal or someone else but somebody asked a question: "What will happen if another coin let's call it coin2, overtakes Bitcoin (in marketcap or popularity)? The answer was simple: Nothing is stopping the coin2 being overtaken by coin3.\n\nThis means, chaos. Coin3 will be the next favourite until coin4 comes along, just to be killed by coin5. People will be betting on the next coin, hoping to get rich quick. Why? Because what we had with coin1 was discovery of digital scarcity, coin2 and the rest are just copies of it.\n\n**We have only one shot. It's called Bitcoin**. \n\n\nI'm a Bitcoin Maximalist and that means, I don't hold any shitcoin. I understand they exist and will in the future (millions of them) BUT none of them are money. Whatever good tech is in them, we will implement it into Bitcoin - all it's just open code. They can't implement scarcity because they always end up with a copy of the discovery. \n\n\n\n\n\n https://example.com/ 10056 410080 410018.410080.410379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.35136045812735 0 \N \N f 214257374 \N 1 149285816 0 f f \N \N \N \N 410018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458416 2025-03-29 08:59:48.122 2025-03-29 22:39:52.939 \N Couple thoughts:\n\n- Stacker.news node might be a good first node to connect to https://amboss.space/node/03cc1d0932bb99b0697f5b5e5961b83ab7fd66f1efc4c9f5c7bad66c1bcbe78f02 Appears to have very small channels open.\n\n- I had a similar thought journey as you are having Many small channels sounds nice but does not work very well. Between on chain fees, nodes have minimal capacity threshold (which are always not visible till you try to open a channel), and closing channel in high fee environment. One can easily have a large percentage of the balance eaten up by fees.\n\n- You could Uncle Jim for the people you are setting up. Connect them to your node (which could be better connected and better founded). You could open a channel to them to provide inbound liquidity.\n\n- I am blanking on the name/BIP# but there is a movement out there to make LSP (Lighting Service Provider) funding more easier and open (visible to all not just users in a particular LSP) https://example.com/ 15474 458408 454525.454535.454668.454691.458368.458378.458397.458408.458416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0476659108679 0 \N \N f 212816780 \N 1 138748459 0 f f \N \N \N \N 454525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448275 2025-03-22 14:17:54.862 2025-03-29 22:39:52.94 \N We are closer to a secured line of credit if you're looking for comparables. But there's nothing on the market today that uses the amazing properties of bitcoin in this way, as a credit card. https://example.com/ 20871 448270 447833.448012.448175.448196.448270.448275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.39990339028077 0 \N \N f 24159340 \N 1 150101309 0 f f \N \N \N \N 447833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433869 2025-03-11 13:18:51.679 2025-03-29 22:39:52.944 \N It examines what made the internet successful, its history, what prevents it from getting better, and how it could get better if it could get better ... as told by "The Architect of the Internet." It's an autobiography of the most significant and successful decentralized computer/communication system ever created.\n\nI probably won't be able to load it from cold memory in detail for the next few hours but here's a google talk around the time of its release from Clark: https://www.youtube.com/watch?v=qX-ojw1gLmE ... which is probably a fuller vibe anyway.\n\n> We reject: kings, presidents and voting. We believe in: rough consensus and running code. - David Clark https://example.com/ 7418 433557 433066.433088.433456.433557.433869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.09662511701769 0 \N \N f 820518475 \N 5 4748933 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436658 2025-03-13 19:00:47.454 2025-03-29 22:39:53.153 \N went to the Miami Bitcoiner's Meetup last night, and had the rare chance to use one of my PAs so they could get better sound.\n\nOne panel got heated between Fode Diop and Neil Jacobs over definitions of money and the legitimacy of countries to self-determine their currency future. Some audience members jeered at Fode's assertions. I missed most of it. I like to have conversations more so than watch panels.\n\nTonight I hope to attend the Broward County Bitcoiner's Meetup from 7-9pm. Tomorrow I do my weekly bitcoin brunch from 10am-3pm. This looks like quite a bitcoin weekend.\n\nHopefully I write my weekly essay soon, so I don't scramble to do it before I leave for brunch. Some proof of work! https://example.com/ 15409 436549 436549.436658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.70481228597573 0 \N \N f 379577649 \N 4 61660537 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 2025-03-20 12:27:46.576 f \N \N \N 0 0 0 0 1 0 0 432966 2025-03-10 17:48:01.675 2025-03-29 22:39:52.681 \N Would love to see the first sub being a lightning native job board as a replacement for the bitcoinerjobs link that exists today. I think that makes the most sense for three reasons.\n\n1. It's weird to have an external link to another company on the main stacker news menu\n\n2. Stacker News has all the tools to build a job board that's much more responsive and accessible for job posters. Many companies pay over $100/posting to other boards to be included on a chronological list of jobs, with no ability to customize a post's visibility. We can do better.\n\n3. This could be a great revenue source for stacker news and/or a great incentive to become a stacker news user. Job posters could pay stacker news to have their job listings rank above other posters, and a portion of that money (maybe all of it at first) could go back to stacker news users in proportion to their web of trust ranking. https://example.com/ 9921 432884 432884.432966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9737106225626 0 \N \N f 71099227 \N 1 248978981 0 f f \N \N \N \N 432884 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408542 2025-02-18 21:39:19.615 2025-03-29 22:39:52.933 \N this cunt that came up with this CO2 bs took a step back and thought about how he can gain power and influence. He figured every living being produces CO2 so that was going to be his angle. Then he figured humans most humans when asked pretend to care about the environment, and maybe they do, so he started acting like CO2 harms the environment. He started saying this over and over and eventually enough people believed it. \n\nWhat he said next was that in order to prevent this, he should get money and power. But in order to not look like a total fraud he had to deliver something. And he figured Wind mills and Solar panels would pass for a solution. And thats why the world is littered with these kinds of monuments now. Because thats all they are. Monuments. They are not economically viable. They require capital and resources from other parts of the economy to be diverted to them, with force none the less, otherwise they couldnt exist. So they are our modern monuments. Built by slaves, but in a way, and under such pretenses, that people cant seem to figure it out. End of story. https://example.com/ 6526 407903 407903.408542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8789747010041 0 \N \N f 36193342 \N 1 94097907 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447081 2025-03-21 15:48:17.74 2025-03-29 22:39:52.936 \N >To the victors go the spoils, the network, and the name.\n\nWell said.\n\nI share your pessimism. Financial literacy tends to be terrible among young people, time preferences so short, and willingness to learn is dogshit. There are exceptions, but...the amount of people who have said to me, I am too poor, stupid, old, or I don't have enough time to learn about this magic internet money, I think, is a reflection on peoples' general lack of awareness, consciousness or just complacency. \n\nHOWEVER, what gives me hope is that I didn't take any interest in Bitcoin until this year, being a teacher and generally not a very technical person. But, I've consumed content voraciously, read all the guides I could from @DarthCoin, listened to bitcoin podcasts anytime I can get time alone. I would still consider myself behind the curve, he might call me a padawan, lol but idc. It hasn't even been a year and I've changed my life philosophy completely (I've written a bit [more](https://stacker.news/items/710581/r/Fiat_Revelation) about it). I'm never selling my Bitcoin. \n\nPersonally, my _fiat_ life is about educating others. That's why I like to write here on SN. I think maybe shared consciousness can synergize into beautiful metamorphisms. I'd love to be at the point where I'm knowledgeable enough to start a freedom academy so parents can opt out of public schools and give their children proper education. I'd like to see others wake up, as I have. That's why I'm Fiat Revelation. https://example.com/ 9159 446937 446937.447081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.2335272588112 0 \N \N f 98120496 \N 1 49373438 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N 2025-03-29 08:34:36.44 f \N \N \N 0 0 0 0 1 0 0 435213 2025-03-12 14:32:29.76 2025-03-29 22:39:52.937 \N Jack Dorsey said irrelevance on a podcast and I can't get that out of my head. https://example.com/ 16042 435046 435046.435213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.64284599935029 0 \N \N f 118045469 \N 1 183710783 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 11:46:48.167 f \N \N \N 0 0 0 0 1 0 0 434864 2025-03-12 09:49:17.366 2025-03-29 22:39:52.942 \N I get the best results when I don’t lecture the kids and just approach it like you’re shooting the breeze with an old friend. Especially if the kids are young enough that they’re still putting their coins and dollar bills into a piggy bank.\n\nSome angles that have worked for me, in terms of making them curious and starting to ask questions.\n\n“man I wish I had all those paper dollar bills lying around in my piggy bank, then I could go and sell them for some bitcoin” — makes them wonder: “wait, what do you mean ‘sell’ my dollars, I thought spending ‘money’ means you’re ‘buying’ something or ‘being sold to’ …?” Also “what’s bitcoin and why do you want it so bad…?”\n\n“it’s weird how that penny right there is made out of a metal that’s actually worth 2 or 3 pennies. Can you believe we’re not allowed to melt it down??? And if you get caught the government makes you give them 10,000 of those paper dollars...!!” — “wait that doesn’t make any sense, and what’s ‘the government’ …??”\n\nIt’s actually pretty fun the more I think about it. Great thread @monotone , thank you for posting https://example.com/ 2123 434791 434791.434864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.58073405310828 0 \N \N f 428225559 \N 2 37127145 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 05:10:58.174 f \N \N \N 0 0 0 0 1 0 0 434417 2025-03-11 21:39:29.234 2025-03-29 22:39:53.15 \N Agreed. By far the best podcast in the ecosystem. Keep up the great work @kr! https://example.com/ 15075 434318 434278.434318.434417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0308474121157 0 \N \N f 56409592 \N 1 229885945 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 04:50:53.275 f \N \N \N 0 0 0 0 1 0 0 405794 2025-02-16 21:09:35.683 2025-03-29 22:39:52.934 \N Your are wise. \nHow fast can we learn something? What an interesting question. Autistic savants show us that the brain _can_ do things like perfectly drawing a city in every detail after a single helicopter ride (like your flash card). Indeed it seems that what the neurotypical brain is doing is "forget as much as possible", and savants are disabled in their ability to forget. \n\nHave you heard / read the philosopher/psychiatrist [Iain McGilchrist](https://en.wikipedia.org/wiki/Iain_McGilchrist)? His books/lectures/videos on the way our brains work, specifically how our two brain-hemispheres interact with the world. You'd like him. The right hemisphere always keeping context, the left ignoring as much as it can in order to focus. Right hemisphere looks for signs of predators, left hemisphere looks at the prey it can grab. [Here's a short clip](https://www.youtube.com/watch?v=G5rcZJObnbA) where he discusses the importance of context.\n\nI hope _truth faster_ means honesty. That's what I want and seek out. Weird people, excluded, horrible, arrogant—if they are honest i want to read and hear them. Hook me up with analog cable to the minds of every idiot and nutcase out there. That'd be fast truth.\n\nHopefully @k00b can get us more info on that research! https://example.com/ 19888 405466 405466.405794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0506344379145 0 \N \N f 640579196 \N 3 232553340 0 f f \N \N \N \N 405466 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408071 2025-02-18 14:58:08.488 2025-03-29 22:39:52.944 \N Pro tip: reverse osmosis is more practical at getting the equivalent of distilled water. In either case, you might find that drinking either type of water will not make you feel "quenched". This is because of lack of minerals and it might lead to all kinds of health problems. If you are going to drink deionized water, you night consider buying unsweetened cherry juice, just a splash in your glass. This will raise the pH to a level that your pallette finds more satisfying. \nRO water is excellent in your coffee maker or tea pot because it will never cause calcium scaling. However, you cannot use it in beer making because the yeasts require the minerals that naturally occur in spring water (or so I hear). https://example.com/ 5112 407903 407903.408071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0323739797938 0 \N \N f 149576232 \N 1 190925911 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442948 2025-03-18 22:46:52.979 2025-03-29 22:39:52.944 \N A couple of things. First of all, it's not criminal. It is a civil case. Second, the judge granted summary judgment, before any witnesses were called. What he basically ruled was that there were no triable issues of fact. Summary judgment denies a litigant their day in court, so should only be granted in extreme cases. Applying it here seems ridiculous to me. \nAlso, I have been involved in commercial real estate financing in NY and other states. I have literally had bank representatives offer to play with the values of property to get larger loans. The banker would then get a larger commission. This is the way real estate financing works. It is a political ruling. Complete bullshit, IMO. For the record, I don't like Donald Trump. https://example.com/ 20243 442880 442820.442876.442880.442948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8444709131779 0 \N \N f 64758237 \N 2 120683457 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434437 2025-03-11 22:16:58.281 2025-03-29 22:39:53.148 \N To hear you describe it as a meme is revealing.\n\nThis is one of the top line Bitcoin features many people have signed up for.\n\nAbsolute scarcity. No compromises. https://example.com/ 21444 434410 434410.434437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8306744969323 0 \N \N f 103178335 \N 1 45413549 0 f f \N \N \N \N 434410 \N 0 0 \N \N f \N 2025-03-18 21:27:36.163 f \N \N \N 0 0 0 0 1 0 0 431140 2025-03-09 15:40:36.923 2025-03-29 22:39:53.155 \N ![](https://m.stacker.news/57179) https://example.com/ 20871 431131 431124.431131.431140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.117988279313 0 \N \N f 218832549 \N 2 160077997 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423277 2025-03-03 07:21:34.347 2025-03-29 22:39:52.936 \N ### Tip of the day\n\nDid you know that with SN "wallet" you can do a nice and simple whirlpool of your sats?\nHow to do it?\nI will not tell you because many will abuse it and I do not want @k00b to be forced to apply for a so called "money transmitter license".\n\nThis tip is only for the smart ones 😂😂😂 that know how to use LN in a proper way. https://example.com/ 1245 422863 422863.423277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8978948369954 0 \N \N f 317136798 \N 2 11752006 0 f f \N \N \N \N 422863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 397996 2025-02-10 12:45:46.161 2025-03-29 22:39:52.937 \N The idea of someone emerging from the shadows with 5% of the world's wealth would be one of the most insane things to happen in human history for sure. Seems like it's something that should never fully be discounted. \n\nThe thing is, the further up you go, the more of a target you become. If Satoshi revealed him/herself, he/she would instantly become the world's biggest target for theft, assassination, manipulation, etc etc.. Seems short sighted if you ask me. \n\nPersonally, my theory is that he's dead, or there's some plan in place to distribute the bitcoin evenly among a lot of wallets to help even the playing field for late adopters so hyperbitcoinization isn't as much of a shock to the world. Kind of optimistic, I know. No one really knows, but one thing seems pretty likely: this will be one of the world's biggest mysteries for a long time. https://example.com/ 9921 394203 394203.397996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.49757285396 0 \N \N f 138516758 \N 1 110916502 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435747 2025-03-12 23:25:22.798 2025-03-29 22:39:52.944 \N ![8lc2z1.jpg](https://m.stacker.news/24850)\n\n![8lc39d.jpg](https://m.stacker.news/24852) https://example.com/ 13216 435610 435610.435747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.45096953601445 0 \N \N f 16419456 \N 1 134153076 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 2025-03-19 22:43:15.344 f \N \N \N 0 0 0 0 1 0 0 458244 2025-03-29 06:18:14.367 2025-03-29 22:39:53.153 \N As has been previously stated in other discussions here, and more broadly, a lot (most ?) held Bitcoin has been through a KYC process in it's acquisition, so any on chain activity is by default tied to the legal fiction ID of the holder - apart from that, there is the also the transparent nature of the blockchain, and the default ability to monitor the amounts, activity, and any grouping of other outputs in the sending of transactions (the 'clustering' that Chain analysis companies routinely sift the blockchain to collect) of Bitcoin transacted on chain, unless the user deliberately employs techniques to obfuscate any/some of these aspects - so on chain in particular privacy is weak at best both in relation to ID and to activity using Bitcoin for most people - then there is the potential leaking of location in the broadcasting of a TX unless the user employs other techniques to obfuscate that - it's far from a simple situation, and many people are no doubt revealing far more about themselves and their actions than they would prefer, or perhaps even realise. https://example.com/ 666 458243 458122.458134.458211.458237.458242.458243.458244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6768105366767 0 \N \N f 246157446 \N 1 185975218 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408184 2025-02-18 16:08:35.504 2025-03-29 22:39:53.153 \N Jimmy seriously suggests in the ep. that people who take debt are "stealing from savers" because most debt is issued as newly printed money that dilutes fiat holders.\n\nThis is like arguing that people who buy oil for their cars are responsible for drone bombing children in the middle east. \n\nHow this man is so well respected in the space continues to amaze me. https://example.com/ 7913 407903 407903.408184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5557994136245 0 \N \N f 299754674 \N 2 213893417 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443680 2025-03-19 13:13:43.575 2025-03-29 22:39:53.154 \N FWIW I had a coworker once who lost a fair bit of weight swimming. He had also been injured, and gained a lot of weight, so swimming worked for him at losing weight without reinjuring himself.\n\nRe: motivation in general, I'd suggest getting a Fitbit or similar watch, along with their [automated scale](https://www.fitbit.com/global/us/products/scales/aria-air). Weigh yourself regularly and let their system keep track of what you are gaining and losing. Similarly, keep track of how many steps you are taking and how active you are.\n\nPersonally I've found that the most effective way for me to lose weight has been to incorporate it into a commute with cycling... I was a lot skinnier when I had a 9-5 office job and biked to work. Unfortunately, that's not easy to replicate for many people, including myself!\n\nSecondly, in general I've found that exercise is _much_ more effective for me than diet. I already eat reasonably healthy, and don't lose weight; specialty diets like carnivore are just too limiting to stick too. But every time I consistently exercise for awhile, I quickly lose weight as long as I keep that up. Doesn't even take much: just running reasonably hard for 15 minutes a few times a week is enough.\n\nGood luck! https://example.com/ 2010 443676 443577.443613.443669.443676.443680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9116446395743 0 \N \N f 301041986 \N 2 202625855 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:30:35.603 f \N \N \N 0 0 0 0 1 0 0 443292 2025-03-19 08:40:43.161 2025-03-29 22:39:53.155 \N Vallis is really smart and thoughtful and articulate, I wish he did more stuff. The pod with him, Gigi, and a couple others (I think it was [this one](https://www.jordanbpeterson.com/podcast/s4e40/)?) orange-pilling Jordan Peterson on btc was a real high point in intelligent btc discussion. I don't agree with all his takes, but he's an archetypical bitcoiner in the good ways.\n\nI'm looking forward to listening to this and unraveling the mystery that is @k00b. https://example.com/ 20901 443290 443274.443290.443292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.85231556055063 0 \N \N f 58102613 \N 1 85400873 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437854 2025-03-14 23:40:22.517 2025-03-29 22:39:52.936 \N Where is the "megapost" ?\nI see only a link to an obscure platform that nobody interested in this subject will visit it, nor can read it.\nIf the "megapost" is not posted directly on SN, IT DOESN'T MATTER.\nOnce is posted on SN you can share THAT link to any bullshit platform like X. https://example.com/ 16357 437723 437723.437854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.7994479433329 0 \N \N f 465242219 \N 3 23186219 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444314 2025-03-19 19:23:08.112 2025-03-29 22:39:52.939 \N Subs will only promote circlejerks, bubbles and polarization.\n\nMaybe we can have a fixed set of tags (e.g"bitcoin", "LN", " tech", "economy", "science", " philosophy "), posts can be tagged and users could filter their homepage with multiple tags. https://example.com/ 19303 442820 442820.444314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7546679730088 0 \N \N f 41098904 \N 1 222106597 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417013 2025-02-26 01:53:59.296 2025-03-29 22:39:52.94 \N Howdy. Long time lurker here. I've learned so much from this place. \n\nI have a feeling this is going to be a huge website in the near future. https://example.com/ 17526 416991 416056.416366.416382.416991.417013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9482994613858 0 \N \N f 409887524 \N 2 94881892 0 f f \N \N \N \N 416056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 444436 2025-03-19 21:55:08.252 2025-03-29 22:39:52.944 \N Core devs dropping like flies... https://example.com/ 5293 444416 443712.443834.444412.444416.444436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.786306767806977 0 \N \N f 418510113 \N 3 246164581 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404421 2025-02-15 21:26:29.63 2025-03-29 22:39:53.152 \N Try these:\n\nThe Art of Using Stacker News I: https://stacker.news/items/252695\nThe Art of Using Stacker News II: https://stacker.news/items/392551\nThe Zen of Stacking Sats on Stacker News: https://stacker.news/items/184545 https://example.com/ 21804 404192 404042.404150.404189.404192.404421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3987292029924 0 \N \N f 218294040 \N 2 27959634 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438073 2025-03-15 08:13:24.582 2025-03-29 22:39:53.153 \N Can you go over how we can use state chains to help people onboard to lightning in a smoother way? How can an LSP use it to make their services better etc. \n\nELI5 https://example.com/ 1120 438065 438065.438073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8560797934597 0 \N \N f 78916343 \N 2 211439764 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436330 2025-03-13 13:36:24.928 2025-03-29 22:39:52.939 \N What you say about working all your life, I also observe that here in Portugal. I know several people who are already at retirement age who refuse to stop working. I've asked them why they do this and the answer is unanimous, "If I don't work, I'll die of boredom." It's not for money reasons. I don't quite understand this way of being yet, maybe because I still have many years ahead of me before I reach that age. When I get there, maybe I'll understand. https://example.com/ 18309 436258 436258.436330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.39940761434895 0 \N \N f 311747810 \N 3 71057014 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 2025-03-20 13:32:55.603 f \N \N \N 0 0 0 0 3 0 0 401519 2025-02-13 05:20:07.369 2025-03-29 22:39:52.943 \N The way I've been using it:\n\n**Inline edit**: short edits right where you are in the code and follow up questions about it.\n\n**Chat**: As you said, to ask more wordy questions and explanations, some coding and follow-up, and use features like `@web` to search web (and other such tags to add docs into context, etc.) which Composer can't do yet.\n\n**Composer**: As you said, most complex (and most capable/costly in terms of compute?) for bigger or extensive prompts. \n\nMy question to you as you seem experienced with it is for:\nFor Composer, since they released the Agent feature, I've been trying to figure out which option is best for what. Composer with VS without agent. Any tips? https://example.com/ 14705 401513 401458.401493.401500.401513.401519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.95938649993521 0 \N \N f 47195781 \N 1 167776304 0 f f \N \N \N \N 401458 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436373 2025-03-13 14:04:45.03 2025-03-29 22:39:52.943 \N Didn't read the article, but I like the 5-lines URL, definitely a good example of "simplification" ;) https://example.com/ 16830 436349 435046.435135.435292.435504.435756.436349.436373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3807854496262 0 \N \N f 527181646 \N 3 144296841 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:23:24.812 f \N \N \N 0 0 0 0 3 0 0 423044 2025-03-02 22:39:41.924 2025-03-29 22:39:53.152 \N Will we ever get a fantastic non-custodial wallet user experience for products like Zebedee (and ahem SN)? If so, what will need to be done (either on the app side, implementation side, or network/protocol side) to get us such an experience? https://example.com/ 8841 423041 422334.422660.422663.422986.422995.423035.423041.423044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7103678045283 0 \N \N f 380177356 \N 3 190934345 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434801 2025-03-12 08:50:09.305 2025-03-29 22:39:52.94 \N > I think the best possible scenario for bitcoin is it's severely and progressively attacked and we anticipate and adapt to survive it. The worst possible scenario is bitcoin isn't attacked, becomes ubiquitous, and is only then attacked and more people suffer a loss from it.\n\nI had an answer like this in mind, but not as elegant as the way you've put it. I had imagined it as a basketball metaphor:\n\nThink of btc as a team in the NBA at the beginning of the season. The best thing that could happen is if the team faced enough adversity that they were forced to suffer, to scramble, to fight with each other and figure out who to be, but not so much adversity that they were torn apart by it and fell into learned helplessness. \n\nOver the course of the season they slowly improved, with many ups and downs, but got on a run before the playoffs -- they started really putting it together. In the playoffs, every series was close, but high variance -- they won big and they lost big. They faced elimination. They had to manage euphoria. They made adjustments. Round 1 demanded a somewhat different approach than round 2. Different heroes emerged each series. The players grew and evolved and adapted.\n\nThey win the title in the end, exhausted but jubilant. https://example.com/ 1433 434795 434795.434801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0981853414386 0 \N \N f 866888284 \N 6 228590887 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-20 04:04:57.137 f \N \N \N 0 0 0 0 3 0 0 443432 2025-03-19 10:53:55.845 2025-03-29 22:39:52.943 \N Yes the "vaccine problem" could be solved by simply removing liability protection. This would force vaccine makers to do proper safety testing and to properly disclose those findings. \n\nThis would allow the public to make informed choices. If you had a 1/50000 chance of developing a heart arrhythmia however it protected you against some major pandemic....you could choose the path of the lesser evil. \n\nThere are certain tradeoffs that probably wouldn't be worth it....for example when my kids were young I was talking about this concept to his pediatrician (who was not a vaccine pusher)....and the Dr said "basically the risk of severe reaction to chicken pox is fairly minimal and thus might want to just risk it if vaccine side-effects are a concern"\n\n\n https://example.com/ 618 443351 443105.443282.443286.443335.443351.443432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.244748105506 0 \N \N f 158343555 \N 1 118347505 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 2025-03-26 05:45:38.808 f \N \N \N 0 0 0 0 1 0 0 447094 2025-03-21 16:07:06.025 2025-03-29 22:39:53.15 \N Worked on improving my multisig setup yesterday but decided to do it after getting some sleep before doing something wrong.\n\nThen I dreamed that somehow, there were unconfirmed tx leaving my multisig setup and that I don't know how to bump fees and reverse the txs using Sparrow Wallet. I felt rising dread that I won't be able to stop this and lose most of my bitcoins. But then I noticed after a while that this isn't real. There was a progress bar regarding the unconfirmed tx which is not how bitcoin works.\n\nSo I decided to go to sleep in my dream and my friend who was with me thought I was going crazy to just accept that my bitcoins are gone and go to sleep lmao\n\nBut turns out it was really just a dream :) An unpleasant one, but just a dream.\n\nBtw, would bumping fees even help? The attacker has nothing to lose, if they are quick to react, they would just bump the fees again.\n\nWhen I woke up, I thought about [OP_VAULT](https://river.com/learn/what-is-op-vault-in-bitcoin). https://example.com/ 5557 446965 446965.447094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83686847743208 0 \N \N f 263820344 \N 3 113467349 0 f f \N \N \N \N 446965 \N 0 0 \N \N f \N 2025-03-28 10:47:52.75 f \N \N \N 0 0 0 0 1 0 0 403765 2025-02-15 07:34:24.554 2025-03-29 22:39:53.153 \N Thanks for sharing all your work & research Lyn. It’s been incredibly valuable these past few years and your [paid newsletter](https://www.lynalden.com/premium/) is pure ~~gold~~ corn.\n\nNot sure if you’ve given it much thought but curious…\n\n1. What sort of world in the 2030s do you envisage will be facilitated by the Lightning network / L2s? \n\n2. What will entrepreneurship look like do you think with Bitcoin? https://example.com/ 17226 403762 402904.403694.403750.403754.403755.403762.403765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5095187307632 0 \N \N f 1626304068 \N 12 25883286 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455274 2025-03-26 22:07:36.814 2025-03-29 22:39:53.153 \N Yes, the lawsuit by CSW’s Seychelles company Tulip Trading against 15 Bitcoin and Altcoin developers, which initially lost in the jurisdictional challenge appears to be going to trial after CSW succeeded in an appeal.\n\nGreg Maxwell added a lot more color here: https://news.ycombinator.com/item?id=34685029 https://example.com/ 5775 454877 454863.454877.455274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6424143158715 0 \N \N f 637444998 \N 3 188371509 0 f f \N \N \N \N 454863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428174 2025-03-06 22:58:43.601 2025-03-29 22:39:52.941 \N Great to have more tools like this, just a shame it needs to incorporate a token.\n\n> _Venice respects you as a sovereign individual, and believes privacy and free speech are not only human rights, but are necessary for civilizational advancement. Even passive surveillance has a demonstrable chilling effect on thoughts and action. As the minds of humans and machines merge, it should be up to you, not the State or a tech company, to define the contours of this relationship._\n\n> _**This ethos can only be delivered on a foundation of open, permissionless architecture.**_ True for religion. True for language. True for money. True for mind… even if it’s artificial._ \n\n--------\n\n### **Thinking about Erik Vorhees...**\nSomething tells me Erik still has so much to offer in Bitcoin. A pioneer, distracted by the casinos & tokens in prior years, it occurs to me he is maturing and is soon to find his calling. Clearly motivated to rebel and push-back against digital censorship. He has fallen victim of state legal action previously and so I think him and his team could really be successful in these coming years. Wouldn't surprise me to see him switch tracks again before this decade is up. These two interviews ([maxraskin](https://www.maxraskin.com/interviews/erik-voorhees) [cointelegraph](https://cointelegraph.com/magazine/the-reformed-bitcoin-maxi-who-saw-the-light-erik-voorhees/)), show a lot about what he stands, even if a few years old. He's an intelligent and principled guy, and whilst I don't expect it, I just wonder if he'll recognise and switch tracks if his vision of the future may only be possible on Bitcoin. https://example.com/ 861 427934 427934.428174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.276429370015272 0 \N \N f 314079088 \N 2 39766039 0 f f \N \N \N \N 427934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443958 2025-03-19 15:38:16.943 2025-03-29 22:39:52.944 \N Never skimp on food. Its a key input that determines your ability to function. I.e. your output.\n\nIf you must reduce the food budget, then reduce the experience of the food, not the food itself. E.x. cook at home instead of getting takeout, etc.\n\nToo many people trim their budget by eating ramen instead of steak and then they have cravings or low energy that impacts their ability to earn.\n\nBudgeting your TIME with the goal of increasing your income is the best way to budget IMO :) \n\nYes, everyone's food budget is up almost 2x from a few years ago. Nobody knows why, inflation is only 5% after all /s\n\nOh yea, stop paying for a "budgeting app" lmao spreadsheets are free! https://example.com/ 9335 443940 443295.443940.443958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.01723984734999 0 \N \N f 12687086 \N 1 220614765 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 335791 2024-12-20 04:06:41.133 2025-03-29 22:39:53.153 \N > Most of newcomers will use of custodial LN wallets. (like it or not ;)\n\nNo, I don’t like it. At the same time, I understand what you’re saying is true and there is indeed little I can do to change this fact. But that does not mean I will stop acting like an old man yelling at the clouds. I will continue to try to shit on custodial wallets, and I will keep encouraging self custody solutions. \n\nJust because I can’t change everyone’s mind doesn’t mean I can’t change someone’s mind. If my rants can get just one person to ditch a custodial wallet for a self custody wallet, it would be well worth all the time and effort typing up these rants.\n\nOne orange pill at a time; one person at a time. https://example.com/ 17095 335729 335484.335562.335591.335690.335721.335729.335791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2238893696474 0 \N \N f 1125591002 \N 10 172480504 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2739 2022-10-19 16:37:31.848 2025-03-29 22:39:53.151 \N Here I have some recommendations but they are in Spanish:\n\n[Lunaticoin](https://www.youtube.com/c/Lunaticoin) - Very talented Podcaster with great guests.\n\n[EstudioBitcoin](https://estudiobitcoin.com) - An amazing website to learn about many aspects of Bitcoin by [Lunaticoin](https://twitter.com/lunaticoin) & [Arkad](https://twitter.com/multicripto) with many curated articles and tutorials by other cool people.\n\n[BTCAndres](https://www.youtube.com/BTCAndres) - Maxi who shitposts a lot and makes fun of shitcoins on [his Twitter](https://twitter.com/BtcAndres), posts good educational content on YT.\n\n[Decentralized.₿](https://www.youtube.com/c/decentralizedb) - Has in-depth mid/high level tutorials to set up things on your btc node. And also runs a [site](https://dinerosinreglas.com) with tutorials.\n\nAnd last but not least we have an extremely passionate Lightning user: [₿lueMoon](https://www.youtube.com/channel/UC-VnKfjvFkH_bNy5--cHXAA) She mostly posts really insightful content on her [twitter](https://twitter.com/moon33_blue) though.\n\n\n\n\n\n\n\n\n\n https://example.com/ 13921 2734 2734.2739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4480529188185 0 \N \N f 122509137 \N 1 139490978 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403021 2025-02-14 11:17:23.102 2025-03-29 22:39:53.152 \N wow, excellent post!\nI am glad you spit it out from yourself, from your interior. Sometimes speaking out loud is a relief even if you don't know it.\n\nSome funny observations:\n- you were pissed off about @ODELL writing in CAPS and you end up also writing in CAPS 😂😂😂\n- why are you censoring yourself too much? Is much better to just say it FUCK then . really hard to read these censored text. barely can understand what you mean. Fucking hell stop censoring yourself, be yourself. Who doesn't like your words is THEIR problem not yours.\n- yes I know shit about coding, that's why I STFU when is about coding. I understand some technicalities (I was an IT guy for many years) but I simply don't know to write code.\nBut that doesn't mean you don't know about Bitcoin. Is just a part of the Bitcoin.\nAnd that doesn't mean I know everything about Bitcoin. Every fucking day I learn something new.\n\nAnd don't worry man... if you have Bitcoin you will have 100 virgins in your life (sorry I couldn't find the meme for that). This is a serious advice from an old guy 50+ that saw a lot in his life. https://example.com/ 1114 402871 402871.403021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.616882799759573 0 \N \N f 1020561493 \N 7 116563140 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 420966 2025-03-01 10:05:12.6 2025-03-29 22:39:53.153 \N Reviewing my post in light of this comment really underscores how insatiably judgy it is… 😳\n\nThat said, the Nano 3 is truly plug and play. You plug it in and then do the one step of putting in your mining pool/worker name. I set up…let’s just say more than are pictured…in about half an hour. https://example.com/ 1261 420888 420888.420966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0572809030907 0 \N \N f 53538147 \N 1 122594466 0 f f \N \N \N \N 420888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424193 2025-03-03 21:43:20.454 2025-03-29 22:39:49.749 \N Bitcoin allowed me to reflect on my personal history through a new lens. \n\nI had a fortunate childhood upbringing. I travelled a little and thought the world was a place that rewarded hard work and a strong work ethic; Western free market capitalism was a beacon to the world. I watched society and the government grind down my father and our family; robbing him of his savings, his dignity and finally his life. His hope for a better tomorrow, patience and low time preference was his undoing. \n\nI felt called to a life of service and entered the military, seeing the world from a different perspective to that of growing up. I worked hard, saved and had a measure of security. But I have seen the dark side of human nature and it is a wake up call… but what to do?\n\nIn the last 10 years my life has collapsed and I am on the same course as my father. My body is broken and still I put it on ragged edge to earn minimum wage every day… just like him. But at least now there is BTC. \n\nBitcoin is the absolute best hope humanity has at restoring the law of the farm; patience and saving for a brighter future. The politicians, short term business decisions, corrupt foreign aid policies and exploitative rent seeking have destroyed the world and trapped 95% of its inhabitants. \n\nMy insight from childhood has been watching a broken system happen in real time and then see it come for me. https://example.com/ 11220 423413 420666.423413.424193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8623051229999 0 \N \N f 0 \N 0 138153589 0 f f \N \N \N \N 420666 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410283 2025-02-20 12:14:25.164 2025-03-29 22:39:49.75 \N I've lost my focus during the holidays. https://example.com/ 5809 410269 410269.410283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9255955273105 0 \N \N f 244142967 \N 2 51150840 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407963 2025-02-18 13:52:35.347 2025-03-29 22:39:49.749 \N For single sig, is it best practice to keep your backup seed and hardware device together in a home safe? With the seed, once an attacker has physical access it's game over. If it was only a hardware device, then maybe they would have more trouble getting the actual private keys, but then where would you put your seed? https://example.com/ 12277 407903 407903.407963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.56067324160356 0 \N \N f 784686918 \N 6 7222395 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 97032 2023-12-10 17:20:22.85 2025-03-29 22:39:47.604 bips.dev - Read BIPs like a pro. \N https://bips.dev/ 19403 \N 97032 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.7094627366439 0 \N \N f 0 \N 0 184739227 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456941 2025-03-28 01:45:35.166 2025-03-29 22:39:49.749 \N This feels like one of those questions where if you have to ask, you're not a pleb. https://example.com/ 3683 456935 456935.456941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1213818689357 0 \N \N f 0 \N 0 112322181 0 f f \N \N \N \N 456935 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404605 2025-02-16 02:00:21.834 2025-03-29 22:39:49.749 \N I'm a python developer. Self-taught, no fancy CS degree. Not a 10x developer. 1x on a good day, but very stubborn and a team player. \n\nWhat technologies/languages should I learn to get involved with Bitcoin professionally? https://example.com/ 12935 404590 404570.404590.404605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5578075473259 0 \N \N f 0 \N 0 208328958 0 f f \N \N \N \N 404570 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416983 2025-02-26 00:47:39.255 2025-03-29 22:39:47.605 Obvious innovation that people once feared People once feared electricity... https://i.redd.it/uyrway2f7v341.jpg But look at our world today.\n_____\n\nPeople once thought that trains make you go insane...\nhttps://img.atlasobscura.com/hoaV5nFzh8dV8jwj1g-r9HkoFth0-bAnMy32bN0aKQw/rs:fill:12000:12000/q:81/sm:1/scp:1/ar:1/aHR0cHM6Ly9hdGxh/cy1kZXYuczMuYW1h/em9uYXdzLmNvbS91/cGxvYWRzL2Fzc2V0/cy8wNmJhZjUxYzNi/ZWFhMDQ2Y2FfQkxf/MDAwMDA3Ml8xOTA3/MDgxMF8wMDFfMDAw/MS5qcGc.jpg But I think we can point to many actual culprits today that go uncriticized.\n_____\n\nPeople once underestimated airplanes...\nhttps://www.azquotes.com/picture-quotes/quote-airplanes-are-interesting-toys-but-of-no-military-value-ferdinand-foch-151-93-52.jpg Thinking their value was much more limited than reality.\n_____\n\nThe internet was once just a passing fad...\nhttps://miro.medium.com/v2/resize:fit:828/0*pFVq7xQLCMO2l3M3 And yet here I am typing this today.\n_____\n\nAnd yet despite this history, apparently some are in agreement that bitcoin is funding terrorism (nevermind the $100 billion stimulus recently requested by the US).\nhttps://i.imgur.com/bezm8j9.png (sigh)\n_____\n\nWhat is it about technology that frightens so many people? Is it just change that people are afraid of? Uncertainty? It's quite interesting to observe the same human psychology play out again and again through different lenses. \n\nIt's funny how we're able to build on our progress, make really cool shit, and learn through trial and error. And yet, we still constantly fail to learn from our mistakes. Tis the human condition I suppose.\n\nOnce you develop the framework to catch yourself in this kind of mental resistance, ideas like Bitcoin become more and more obvious. Seeing the crazy anti-Bitcoin headlines that pop up today only validate to me that history is repeating, yet again. We're building bigger, better, cooler shit -- and yet we're simultaneously chastising it out of ignorance.\n\nI find that framing Bitcoin through this lens has helped me to orange people over time. Coming to an understanding of how people have historically approached new technology helps to break down your own ego about it, from what I've observed.\n\nWhat are other examples of tech that people failed to see the value in? \N 17533 \N 416983 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.65308706978438 0 \N \N f 244387949 \N 1 233734436 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404661 2025-02-16 04:47:39.358 2025-03-29 22:39:47.605 First post and bitcoin custody I just discovered this website and I love it; it's a pleasure to be part of this small cave of bitcoiners. I'll start with the following topic to see your opinions.\n\n\nI am delving into the world of self-custody and learning about all the security schemes you can have when storing your bitcoin. It is truly spectacular to see how many layers you can add to feel secure.\n\n\nI am thinking of having a Seed Signer with a 24-word mnemonic phrase created with a coin, using a binary system, and also adding a passphrase.\n\n\nDo you consider this sufficient? \N 13055 \N 404661 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.49812282446575 0 \N \N f 231391537 \N 1 73070321 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 146002 2024-03-20 07:16:03.758 2025-03-29 22:39:47.605 Tailscale Has Partnered with Mullvad \N https://mullvad.net/en/blog/2023/9/7/tailscale-has-partnered-with-mullvad/ 8423 \N 146002 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.97296777678704 0 \N \N f 0 \N 0 91852019 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 54177 2023-08-22 19:56:20.245 2025-03-29 22:39:47.606 How have you surprised yourself this year? I for one was never anticipating stumbling across this wild western stacker station, but alas here I am spewing nonsense every single day..And I couldn't enjoy it more!!\n\nThankful to have found those who enjoy it too :) \n\nWhat have you done this year that you couldn't possibly have expected? How has it made you smile? chuckle? cry?? rage??? \N 14731 \N 54177 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.1511540509542 0 \N \N f 0 \N 0 53958743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430998 2025-03-09 15:05:17.386 2025-03-29 22:39:49.75 \N Does MicroStrategy know they can now advertise their Lightning job listings on SN for just 1 sat? \n\nhttps://stacker.news/items/75366\n\n🤔 https://example.com/ 4062 430824 430824.430998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.59457430772461 0 \N \N f 0 \N 0 131607670 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431022 2025-03-09 15:09:35.38 2025-03-29 22:39:49.749 \N I will never accept CBDCs. Give me freedom or give me death. https://example.com/ 19524 425571 425571.431022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6044422535085 0 \N \N f 0 \N 0 96606060 0 f f \N \N \N \N 425571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437685 2025-03-14 18:46:21.127 2025-03-29 22:39:49.749 \N I recently downloaded Alby and it is a fantastic product - thank you! It is great to have a native extension and the UI/UX is very smooth. \n\nWhat has been the biggest challenge of gaining user adoption and new downloads? How do you overcome any questions or issues of trust (given the sensitive nature of data that can be seen in a browser extension)? Have any specific marketing/outreach/etc efforts been most successful for driving user adoption? https://example.com/ 16193 437276 437276.437685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.53304056321404 0 \N \N f 22051319 \N 1 202547374 0 f f \N \N \N \N 437276 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431262 2025-03-09 16:09:44.518 2025-03-29 22:39:49.75 \N It's already happened abundantly in my own posts; and I do it abundantly on the posts of others. If you design for it to happen, and get the incentives right, it can and will happen. \n\nSN is not Reddit. https://example.com/ 21501 386668 386668.431262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7676065555678 0 \N \N f 0 \N 0 97504654 0 f f \N \N \N \N 386668 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424170 2025-03-03 21:19:15.954 2025-03-29 22:39:49.75 \N I am apparently endlessly interested in this topic. Here's where it sits now:\n\n1. I zap the initial example of a thing (post or comment) that I think somebody has put non-trivial effort into, a number of sats proportional to what I have in my wallet, usually 100-300.\n\n2. I zap subsequent exchanges in a conversation a smaller amount, to say: I appreciate you engaging with me in a thoughtful way, whether we agree or not.\n\n3. If someone has made a particular effort, or said something extra brave or important, I will do a higher amount, subject to a calculation that is more animal spirits than anything.\n\nThe main thing I've noticed, in a way that I can't quantify bc I'm too lazy, is that generosity begets generosity to a point; but past a point, it does not. I've also noticed that since my wallet has been much reduced, that my own generosity is less. I believe both these dynamics to be broadly applicable. https://example.com/ 775 424074 422981.424074.424170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5472136953755 0 \N \N f 0 \N 0 82988224 0 f f \N \N \N \N 422981 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415069 2025-02-24 14:02:28.986 2025-03-29 22:39:49.749 \N [Mutiny Wallet does the same thing too!](https://app.mutinywallet.com/) This is quickly becoming the new standard for Bitcoin apps. Love to see it. https://example.com/ 11714 413002 413002.415069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8815003819049 0 \N \N f 0 \N 0 221099377 0 f f \N \N \N \N 413002 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434540 2025-03-12 02:19:34.312 2025-03-29 22:39:49.749 \N Got my girlfriend to set up a bitcoin non-KYC DCA https://example.com/ 17275 434514 434514.434540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.477987910544 0 \N \N f 0 \N 0 223795747 0 f f \N \N \N \N 434514 \N 0 0 \N \N f \N 2025-03-19 12:20:04.307 f \N \N \N 0 0 0 0 0 0 0 434578 2025-03-12 03:27:07.301 2025-03-29 22:39:49.749 \N All welcome improvements. I'm curious to see what effect getting rid of random rewards has. I'm guessing there will be more posting and zapping. https://example.com/ 1833 434535 434535.434578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.855834322087503 0 \N \N f 142194657 \N 1 169226845 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401719 2025-02-13 10:44:38.637 2025-03-29 22:39:49.749 \N As soon as we see LSPSpec adoption, I strongly expect the wallet app / liquidity provider roles to separate.\nWe at Synonym do not offer liquidity services to US users due to legal constraints. It is our intended purpose to work towards a world where a wallet and LSP can be a separate entity so a third party LSP can provide liquidity to Bitkits US users. https://example.com/ 21148 401690 401516.401563.401690.401719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.97031119521302 0 \N \N f 0 \N 0 32381385 0 f f \N \N \N \N 401516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404501 2025-02-15 23:26:24.399 2025-03-29 22:39:49.75 \N The biggest threat to Bitcoin is capture dev capture. Done right you won't make changes to the code that people disagree with immediately. You will make small, incremental changes that seem insignificant in the grand scheme. Shift the overton window, boil the frogs. \n\nUltimately the rules of the network are underpinned by social consensus, and there has been no point in history where mass social consent is invulnerable to manipulation. Being aware of this is critical to defending Bitcoin over the span of decades to hundreds of years. https://example.com/ 656 404384 404095.404384.404501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6025809920277 0 \N \N f 217732920 \N 2 168246994 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435993 2025-03-13 07:52:00.895 2025-03-29 22:39:49.749 \N Nancy Pelosi's net worth is [$114,662,521](https://www.opensecrets.org/personal-finances/nancy-pelosi/net-worth?cid=N00007360)\n\nHer salary is [$223,500 per year](https://finance.yahoo.com/news/rich-nancy-pelosi-164446393.html).\n\nFun times.\n\n![](https://i.dailymail.co.uk/i/pix/2011/06/15/article-2003954-0C75607500000578-285_468x372.jpg) https://example.com/ 18529 435639 435639.435993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.253920088452126 0 \N \N f 33739714 \N 1 24304244 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 2025-03-20 04:16:55.851 f \N \N \N 0 0 0 0 1 0 0 435070 2025-03-12 12:45:37.483 2025-03-29 22:39:49.749 \N I would build Stacker News. It's great!\n\nBut if you're looking for an idea that doesn't exists yet (to my knowledge), I would build a service which allows you to pay for subscriptions automatically. This is an area where credit cards still have an edge over the Lightning payment ecosystem. https://example.com/ 12169 433397 433359.433397.435070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8582023772738 0 \N \N f 0 \N 0 35837717 0 f f \N \N \N \N 433359 \N 0 0 \N \N f \N 2025-03-19 10:46:45.935 f \N \N \N 0 0 0 0 0 0 0 106032 2023-12-31 17:15:52.769 2025-03-29 22:39:47.606 Publishing the Bitcoin Consensus Engine as a standalone binary Hacked a bit as a hobby project over the last months to see how mature and ready the libbitcoinkernel was to be used on its own only, without necessarily using the others subsystems.\n\nFor a tl;dr the libbitcoinkernel is an attempt as extracting the consensus engine out of bitcoin core, and make it this consensus engine ready to use by other implementations, or even letting people re-writing full-node implementations from scratch on top of it. Cross-fingered and hopefully, if this decoupling of the consensus engine is done well from bitcoin core, transactions and blocks validated by another implementation should be fully compatible, bug for bug existent since the old days of satoshi.\n\nIf more folks are interested to experiment with the libbitcoinkernel (this assume strong background in C / C++ and bitcoin engineering), I already extracted the libbitcoinkernel and the test standalone binary wrapping it on their own and made them available in a public repository (as of bitcoind tag release 27.0 and with the necessary bug fixes in the build system to really make it work).\n\nhttps://github.com/ariard/standalone-bitcoinkernel\n\nNormally it should compile, but it’s indeed calling for more testing and refinement. Especially if folks wish to use a different build system than autotools and makefiles. If more folks are interested to experiment with it, I might spend a bit more time to make it work on more platforms, though it’s only hobby hacking for me in the true open-source spirit. Already very busy with some real vulnerabilities to get fixed on bitcoin and lightning. \N 14857 \N 106032 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2730543352904 0 \N \N f 0 \N 0 178895584 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106216 2024-01-01 00:16:33.764 2025-03-29 22:39:47.606 Daily Discussion Thread ~Music Saloon! Hello Stackers!\n\nWelcome on into the ~Music Corner of the Saloon!\n\nA place where we Talk Music. Share Tracks. Zap Sats.\n\nSo stay a while and listen.\n\n🚨Don't forget to check out the pinned items in the territory homepage! You can always find the latest weeklies there!🚨\n\n🚨Subscribe to the territory to ensure you never miss a post! 🚨\n \N 5829 \N 106216 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2021578820163 0 \N \N f 0 \N 0 25877199 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435853 2025-03-13 03:12:22.512 2025-03-29 22:39:49.738 \N Well, that was a fun day yesterday! 2.5M sats for a good cause and some SN records broken. SN community is wild. Great job guys. https://example.com/ 5425 433640 433377.433640.435853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9989082550942 0 \N \N f 0 \N 0 100822833 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106217 2024-01-01 00:17:26.059 2025-03-29 22:39:47.607 Fidelity is now allocating spot Bitcoin to their All-in-One Conservative ETF Gradually then suddenly! \n\n![IMG_9406.jpeg](https://m.stacker.news/15273) \N 2674 \N 106217 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5881538732025 0 \N \N f 0 \N 0 126764492 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436344 2025-03-13 13:42:54.019 2025-03-29 22:39:47.607 Bitcoin is now a threat to us all This may be the most alarmist piece of fud I've seen in years. The author starts off by saying that the FTX scandal proves that bitcoin is a scam. \n\nI noticed that the US edition of The Spectator doesn't seem to have this article. \n\n> Gambling on Bitcoin has, in effect, just gone mainstream. It is as if a bookmakers has just been allowed to set up shop in every living room in the country.\n\nThis is priceless:\n\n> Bitcoin is a classic zero-sum game. Large numbers of people can make vast paper fortunes by bidding up the price, but they cannot all realise those fortunes, because if everyone sells out the price collapses to zero.\n\n\nHere's another oldie but goodie:\n\n\n> Bitcoin earns no income and has no intrinsic value – it is, for all its cleverness, really nothing more sophisticated than a tech reinvention of the Ponzi scheme.\n\n\n\n https://www.spectator.co.uk/article/bitcoin-is-now-a-threat-to-us-all/ 21794 \N 436344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8593403080217 0 \N \N f 641629529 \N 5 98095479 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:12:16.974 f \N \N \N 0 0 0 0 5 0 0 106218 2024-01-01 00:18:50.741 2025-03-29 22:39:47.607 Btc privacy tradeoffs, overt and covert (The fourth post in the meta-experiment series of the _Broken Money_ book club, part 5. Check out the [third](https://stacker.news/items/335178).)\n\nLyn talks a number of times about the tradeoffs made by technologies in general, and btc in particular. The most well-discussed of these tradeoffs is probably the block size, where you trade the number of transactions you can fit into a block against the cost to run a full node.\n\nAnother tradeoff comes with privacy. Unless you're deep into the technical side of btc, you might not realize the full extent of what's at stake in these tradeoffs:\n\n> To increase privacy, some degree of auditability needs to be sacrificed. One of the key things about Bitcoin is that any node can tell you the exact bitcoin supply and maintains the entire history of transactions and the full state of the ledger. That’s not possible to the same degree in a privacy-based blockchain. Cryptocurrencies that are private at their base layer make it easier for undetected inflation bugs to occur. In addition, if a privacy-based system doesn’t have a serious network effect, its privacy likely isn’t as good as advertised because the anonymity set is very small and is therefore somewhat trackable. (p. 337)\n\nThose tradeoffs make sense, even if they're not immediately apparent to all users. Although Lyn doesn't frame it this way, there are other kinds of tradeoffs that come with privacy, too. For instance:\n\n> Income taxes within the current system rely on ubiquitous financial surveillance to be enforceable. If it becomes commonplace for people to send money peer-to-peer, including globally, and there are a large variety of privacy tools to make transactions hard to track, then it may become untenable for governments to tax incomes as their primary source of revenue. (p. 333)\n\nMost stackers are probably thinking to themselves: _fuck the state, I can't wait till they can't get any tax revenue!_ But I wonder if btc's notoriously bad privacy -- which its advocates occasionally [loudly pretend to champion](https://cointelegraph.com/news/debunking-the-myth-cryptocurrency-is-used-for-criminal-activity) -- is more consciously-chosen than we're used to thinking?\n\nIn other words: if btc was as private as Monero, could it possibly have achieved the penetration it has, without the full-on opposition of the state? Has awareness of this tradeoff -- between privacy and courting clear and direct hostility from the government -- informed its development trajectory? What does this privacy tradeoff portend for its future? \N 5703 \N 106218 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.3522131161212 0 \N \N f 0 \N 0 152528081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106219 2024-01-01 00:21:27.023 2025-03-29 22:39:47.608 Parent's Corner: Be Judicious I got myself into a bit of a quandary. \n\nA few weeks ago I was cleaning out a bunch of stuff I had stored for the last 2.5 years from when we moved out of the city. I found my son's 6oz boxing gloves and punching mitts from when he was little. My daughter was fascinated by them and had to try them out. So I helped her put them on and showed her how to throw a punch and then put punching mitts on and let her have at it. \n\nShe has asked to "practice punching" a few times since then and I obliged. \n\nBut I have noticed recently that she has gotten into a bad habit of wanting to punch things (pillows, couch cushions, her stuffed animals) and play aggressively with her toys, making them fight. I want my daughter to be strong, confident and know how to defend herself but I don't want her to become an aggressive person or a bully. She is little, so likely she has just found something new that she thinks is fun and is just doing it all the time like kids do, but I need to ensure she understands the appropriate time to use her new found skill. \n\nToday, when we got back from a trip to Walmart and I was unloading bags from the car she punched me in side. I turned and looked sternly at her and said "you will not do that again" but a few minutes later she tried again. I blocked her attempt and held her wrist and said "Listen to me. This is not acceptable. The only time you will punch is when you are training or if someone is trying to hurt you. If you walk around trying to punch people, one day someone is going to punch you back and a lot harder, so you need to learn to be judicious. Do you know what it means to be judicious?" She replied "no". I said "It means to have good judgement, make good decisions, to know when it is the right and wrong time to do things. So, no more punching unless we are training or there will be no more training." \n\nShe agreed. \n\nUltimately, I think the best solution is to get her started in martial arts classes so she can learn to channel physical energy appropriately and productively. In the meantime, hopefully our little talk did the trick to at least getting her to think about her actions before she does them. \n\nThanks for reading. Sats for all,\n\nGR\n\n \N 15556 \N 106219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.08691854323542 0 \N \N f 0 \N 0 110722720 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430411 2025-03-09 06:40:15.065 2025-03-29 22:39:49.738 \N Do you understand the meaning of this meme?\n[![change_bitcoin_code.jpg](https://i.postimg.cc/MTjtk8MR/change_bitcoin_code.jpg)](https://postimg.cc/TLfnmFcY) https://example.com/ 14941 429291 429291.430411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.668825291757 0 \N \N f 0 \N 0 165929958 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 2025-03-19 21:40:28.017 f \N \N \N 0 0 0 0 0 0 0 436484 2025-03-13 15:28:17.647 2025-03-29 22:39:49.738 \N The link brings you to a landing page to sign up for a newsletter...\n\n> The New Happy newsletter will help you be happier, achieve your goals, and find your purpose.\n> Our free daily newsletter includes a piece of art and a short inspiring message. Join 900,000+ people who love our work.\n\nJust curious, are you the author of this newsletter? If so, you could maybe incorporate LN tipping on your page... it'd be nice to reach 900,000+ people ;) https://example.com/ 1438 436318 436318.436484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1984048544771 0 \N \N f 0 \N 0 160895381 0 f f \N \N \N \N 436318 \N 0 0 \N \N f \N 2025-03-20 10:05:28.565 f \N \N \N 0 0 0 0 0 0 0 436517 2025-03-13 15:55:45.117 2025-03-29 22:39:49.739 \N Either Big Lebowski or V for Vendetta\n\nThe Big Lebowski is one of the great comedies of all time: mistaken identity, absurdist kidnapping, iconic lines, great music, and phenomenal performances.\n\nI can't imagine I actually need to pitch V for Vendetta to anyone here. https://example.com/ 7827 436508 436508.436517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.3971208219777 0 \N \N f 0 \N 0 38398304 0 f f \N \N \N \N 436508 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443534 2025-03-19 12:04:38.668 2025-03-29 22:39:49.738 \N Reminds me of a recent podcast I listened to that really resonated with me about why smart kids often struggle to find success later in life. Growing up in a small pond I was always the top student in every class, Valedictorian, perfect SATs etc and I tied success and my identity to “not trying”.\n\nOnce I left that pond and found a lot of people I thought were effortlessly much smarter than me, I think I really sort of gave up on my potential because I had learned to associate working hard with being a failure instead of embracing challenges like I should have. \n\nWhen you struggle earlier in life you’ve given yourself permission to fail and can be better equipped mentally to work through challenges. I think I could have been a lot more successful in life if I had correctly identified hard work and failure as a virtue rather than immediately labeling myself as not being good enough. https://example.com/ 2233 443130 443130.443534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.59702024337697 0 \N \N f 173608960 \N 2 210453008 0 f f \N \N \N \N 443130 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447169 2025-03-21 16:52:44.64 2025-03-29 22:39:49.738 \N This is the right approach. Good persuasion always starts with something the person really cares about, not something you feel like they should agree with.\n\nPoint 4 in @k00b's post is going to be more persuasive than the first 3 points even though there's less truth to it, because they all believe that's a huge problem.\n\nI think another point along these lines would be to bring up undocumented workers. Talk about how Bitcoin makes it much more difficult to identify and deport them, as well as making it much easier for them to send remittances home. https://example.com/ 12721 447164 446456.447164.447169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8012102428409 0 \N \N f 0 \N 0 37917708 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 10:18:40.136 f \N \N \N 0 0 0 0 0 0 0 448823 2025-03-22 22:33:16.91 2025-03-29 22:39:49.738 \N Started a 21-day challenge in which I aimed to learn something new about Bitcoin or interact with its ecosystem every day. I would also record my progress on Stacker News.\n\nDay 13 - Had some USDT on Kraken. Swapped it for BTC and then transferred the sats to my Muun wallet. First time I made a withdrawal to the Lightning Wallet successfully from a CEX. Feeling good about myself. https://example.com/ 5293 448591 448591.448823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2407736524676 0 \N \N f 0 \N 0 105973520 0 f f \N \N \N \N 448591 \N 0 0 \N \N f \N 2025-03-29 16:01:41.134 f \N \N \N 0 0 0 0 0 0 0 448794 2025-03-22 21:50:39.556 2025-03-29 22:39:49.738 \N Instead of having a hard reset of the entire thread at X time, I would keep a single live thread always on, and make the old messages disappear one by one when they're older than 24 hours.\n\nThat way you would have a more continuous flow of messages from people all around the world.\n\nYou might want to keep a log of these old messages though for future searches, those can be created after 24 hours have passed, like a snapshot of what was there at the live one. https://example.com/ 671 448781 447453.448518.448781.448794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.46750181679 0 \N \N f 0 \N 0 244865058 0 f f \N \N \N \N 447453 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 395797 2025-02-08 19:39:53.497 2025-03-29 22:39:47.608 Additional Funding ($21M) from #startsmall for OpenSats $5M goes to the Nostr fund. We’re so freaking early 🙏 https://opensats.org/blog/opensats-receives-additional-funding-of-dollar21m-from-startsmall 10934 \N 395797 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 19.5312854977149 0 \N \N f 695307057 \N 5 169802502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433359 2025-03-11 02:18:26.384 2025-03-29 22:39:47.608 SN release: mute territories, opt-in moderation, iOS pwa notification fixes(?!) You can mute territories now either by visiting the territory or in the overflow `...` for an item belonging to that territory.\n\n----------\n\nTerritory founders can enable moderation in their territories:\n- their territory gets a `moderated` badge\n - the badge includes a count of how many items they've outlawed\n - territory founders can turn moderation on and off, but the badge does not go away if they've ever outlawed an item\n- in the item overflow `...` they can outlaw items with a click\n- anything outlawed by founders is still visible in Wild West Mode\n- anyone posting or commenting in the territory sees some help text letting them know it's moderated\n\nIn general moderation is a sledgehammer and we plan to introduce more economic tools to avoid needing to use it, but some people will want it anyway and we haven't made those economic tools yet.\n\n---------\n\nWe think we might've finally fixed PWA push notifications on iOS but tbd. 🤞 \N 20614 \N 433359 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 27.5895188936732 0 \N \N f 238357180 \N 4 85217390 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 46595 2023-08-06 09:40:27.837 2025-03-29 22:39:47.608 Book Review | “The Four Tendencies” There are two types of people in the world: those who are fascinated by personality frameworks and those who aren’t. I belong to the first camp. As someone who gets excited about discussing MBTI personalities, I am always a bit saddened by my peers who don’t summon the same level of enthusiasm. In fact, I feel like they are pouring cold water on my red-hot passion.\n\n![](https://m.stacker.news/39325)\n\nThus sets the context for the reason why I bought this book many years ago. Gretchen Rubin, upon pondering why her friend can’t make herself go running, connected the dots between her varied experiences and came out with her personality framework that divides people into four tendencies, namely Upholders, Questioners, Obligers and Rebels. These individuals are divided into how gung-ho they are about fulfilling inner and outer expectations.\n\nI was really excited when I read this the first time, marveling at Gretchen’s ability to conceptualise something neat and original and possibly groundbreaking. However, I didn’t finish the book. Now, as I gave it a second go, I remembered why. Gretchen’s strength as a writer lies in her relating candidly her honest, sometimes exasperating encounters with her family members. However, this book involves her sharing the insights she gleaned from other people’s stories - which weakens the writing as you don’t have enough stimulus to connect with them. What’s more, she covers a lot of ground in each chapter, unravelling the perspectives of spouses, parents, bosses and healthcare professionals when dealing with people of each tendency. By spreading herself thin, she comes across as touch-and-go cursory. Her ideas also come across as repetitive.\n\nMaybe it’s the fact that I identify myself as a Rebel through her quiz. That’s why I am having a hard time reading her didactic style of writing. Nonetheless, I actually finished this book today. More importantly, because I was primed to think about personality types, I came out with the bright idea of directing my two best spellers to pair up with a weak speller each and prod the latter to learn to spell high-voltage vocabulary words. These spellers are not the most diligent people in my class, but because I peg them as Obligers, I am pretty confident that this buddy tutoring thing will take off. So, suffice it to say that this book has effected some change in me.\n\n![](https://m.stacker.news/39326)\n\nAdditionally, I must confess that I quite enjoyed the motherhood statements associated with each Tendency. Some highlights about Rebels: Freedom is their discipline; they want freedom to do things their own way; and Rebels ask, “is this the person I want to be?” Bull’s eye, bull’s eye and bull’s eye. \n\nObviously, I am not a hardcore Rebel (otherwise how could I have stayed in the educational system for sooooo long?) Nonetheless, the Four Tendencies framework does explain why one of my Reporting Officers once remarked that I am a galloping stallion that may need to be tamed. LOL.\n \N 21832 \N 46595 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.3175997312854 0 \N \N f 0 \N 0 120222394 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 47353 2023-08-08 12:54:49.284 2025-03-29 22:39:47.608 How to Build the Ultimate Bandaid Wallet This impetus for this post was heavily inspired by Ben’s post here https://stacker.news/items/379225. Not a direct response, but a lot of conversation swirled around wallets like Muun and Mutiny so I figured a bit of elaboration on these kind of wallets would be beneficial.\n\nSo, for starters, what are these kind of wallets and how do they differ from normal (lightning) wallets?\n\n### Self-Hosted vs. Bandaid Wallets\n\nMuun, Mutiny, and Phoenix are what I and others affectionately call Bandaid wallets. Wallets that attempt to solve the shortcomings of self custodial lightning wallets by leveraging LSPs in some form or fashion. They can use LSPs in varying capacities, but fundamentally - while your keys are entirely yours, the infrastructure required to facilitate the usage of your keys to their fullest extent are not. This is a departure from classic wallets in Bitcoin, which never require an always on connection. \n\nSelf hosted lightning wallets allow you to own your own infrastructure (or bring it yourself with an umbrel or voltage node), but they don’t get any of the benefits of using an LSP. They’re also really hard to set up, hard to maintain, and (unlike bandaid wallets), require you to manage your own channels.\n\n### Challenges with Split Accounting\n\nSelf hosted wallets also tend to suffer from split accounting, which is separate accounting for onchain balances and lightning balances. Split accounting is really tough for new users (especially the nontechnical to understand), exacerbated when their first experience in bitcoin is a wallet with this feature. \n\nIt’s confusing to new users because they’re *barely* aware of the existence of lightning, let alone it’s fundamental characteristics, but going forward - this is the ideal way to use bitcoin, so this is the world new bitcoiners find themselves in. It confuses them because they’re not aware why they have two balances, often they’re not aware that just because it says they have some bitcoin in lightning, doesn’t mean they can pay an onchain address (of course, the difference between an invoice and an address being lost on them). And it’s especially confusing when they try to understand why some transactions have high fees and others don’t, and what they could have possibly done differently to avoid that next time. In my opinion, custodial wallets are superior to most self hosted wallets purely because they support unified accounting and because they don’t put the onus of channel management on the user.\n\nThere isn’t an explicit reason why self hosted wallets lack unified accounting, though without the help of LSPs, the fees are higher. So let’s talk about the real elephant in the room with bandaid wallets.\n\n### The Compromise of Bandaid Wallets\n\n| | Your Keys? | Your Infra? | Easy? |\n| --- | --- | --- | --- |\n| Bandaid Wallets | ✅ | ❌ | ✅ |\n| Self Hosted | ✅ | ✅ | ❌ |\n| Custodial | ❌ | ❌ | ✅ |\n\nNotice how their isn’t a row with all ✅? It’s because the perfect, elegant bitcoin/lightning wallet doesn’t exist. This is because of onchain restrictions imposed by lack of consensus and lightning’s fundamental nature of trading out-of-band metadata.\n\nTo quote Mathew Mcconaughey in Wolf of Wallstreet:\n\n> It’s fairy dust, it doesn’t exist, it’s never landed, it is no matter, it’s not on the elemental chart, it’s not fuckin real.\n> \n\nBandaid wallets are the superior option for most people, with the following achilles heel: a lack of understanding of your self-custodial infra leads to a lack of understanding over fees. Many actions in bandaid wallets are assisted by an LSP, which charges fees.\n\n### Fee Structure Comparison\n\nA quick breakdown of fees across wallet types:\n\n![Screenshot 2024-01-08 at 2.50.05 PM.png](https://m.stacker.news/11315)\n\n\nNot hosting your own infra combined with relying on more infra than normal (not *just* an LND node!) results in bandaid wallets having the most egregious fees. The worst attribute of this design is the mining cost to accept onchain. Bandaid wallets can avoid this fee by embrace split accounting, however the whole point of a bandaid wallet is to make things *easier* not harder… So most don’t.\n\n### The Cost of Accepting Onchain in Bandaid Wallets\n\nThe mining cost to accept onchain comes from using submarine swaps to move funds into the lightning channel. Unified accounting is normally achieved by just moving funds in and out of your lightning channel, and never holding onchain keys beyond channel requirements. Submarine swaps have a mining fee associated because it costs the provider a fee to move funds out of the HTLC onchain.\n\nAlternatively, we could use splice-in transactions to accept monies onchain which would avoid paying a provider fee. However, this has some other complications. For starters, the user would have to be *online* to finalize the transaction. No async payments LSP workaround. This also means if someone paid you and you didn’t have your wallet open, next time you opened it (maybe when trying to buy that cup of joe) you’d be forced to wait a few confirmations while your wallet finalized the queue. Not great. This could also be exploited by bad actors to constantly take your mobile wallet offline by sending you dust. Of course, this could be mitigated by allowing the user to sweep onchain funds at their discretion, again not great since we have to teach users the difference between bitcoin/lightning which as we’ve covered earlier, is confusing.\n\nTo quote the hit tv show *Chernobyl:*\n\n> Not good, not great.\n> \n\nUnfortunately, this attribute of bandaid wallets affects a core mechanism. *Accepting* bitcoin onchain. People may argue that it shouldn’t be something most concern themselves with. But it currently is. The Bitcoin ecosystem is slim as it is, double charging a user to move funds into a wallet (fees on moving off exchange, fees on moving into wallet) is bad and penalizing onchain usage more than it already is only increases friction for already friction-full lightning adoption. Remember, thew lightning ecosystem *is significantly smaller than bitcoin.*\n\n### JIT Channels and Async Payment LSPs\n\nBandaid wallets have other tricks that aren’t nearly as problematic, which is good. They ought to rely on JIT channels and async payment LSPs.\n\nJIT channels are pretty simple. JIT stands for Just-In-Time channels, and are also known as zero-conf channels. A wallet that has no channels can worry about getting their first channel set up when they receive funds that first time. The LSP accepts the risk of moving funds with zero confirmations for a fee, typically a percentage and the channel is immediately usable. This removes several frictions if done well. It’s a chance for the wallet to axe channel and peer management if they enforce only channels with their JIT LSP. It’s also a chance to heavily simplify the onboarding experience into lightning, both are *serious* user experience issues when it comes to self-hosted wallets. JIT Channels are a necessity.\n\nThere are many vendors to choose from for a JIT LSP, but the two I recommend would be c=’s and voltage. One downside with JIT vendors is how they communicate the intermediary node. C= uses routehints to try to coax routing through their node, but if the wallet has channels with anyone else, this might fail. Another reason to enforce exclusive peer with the LSP.\n\nVoltage’s Flow2.0 uses wrapped invoices, which basically means their invoice has a secondary invoice inside it. This is not supported in the greater network, and will require the sender to understand it to send the intermediary payment to the LSP. It will also require communication between the intermediary and wallet to construct the wrapped invoice. \n\nAsync payments are little more complex, and can fail at a higher rate than typical payments - especially as the network isn’t ready to differentiate between stuck payments and held payments. But success rates will likely increase as this feature is adopted more and more. I’d argue they’re a necessity as well, though less than JIT channels.\n\n### Conclusion\n\nIn conclusion, bandaid wallets are named so because they use bandaids to make the lightning experience palatable for new users. The bandaids they use are mostly LSPs, with the exception being splice-out. They focus on a great user experience, with the downside being inconsistent fees depending on specific actions. They have great onboarding experiences for lightning, something sorely lacking, and remove lots of confusing and unnecessary functionality many lightning wallets have.\n\nThey’re also our best hope for onboarding new users if we don’t softfork some really cool features in, but even then they’ll probably still be necessary. \N 3377 \N 47353 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8995826697824 0 \N \N f 0 \N 0 249687998 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307005 2024-11-24 16:48:17.009 2025-03-29 22:39:49.738 \N Hello, I am a Bitcoin maxi and I put my sats where my mouth is. Bitcoin maximalism is a method of consumer protection. My story as a maximalist, is that I used to shitcoin back in 2016. During the 2018 bear market, I lost so much money in everything that wasn't Bitcoin. I became burnt out over jumping from coin to coin and seeing no interest in coins that I thought had ecoonomic value from the market. \n\nI discourage the people around me from following in my footsteps because I know these distractions will burn them and blind them to the benefits of Bitcoin as a result and I don't want to see the people around me get scammed in a bitconnect/celcius style scam, nor premine dump, nor pump and dump, nor hype induced meme coin that dies in a month, etc etc. https://example.com/ 8400 306869 306869.307005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4644441824685 0 \N \N f 119364395 \N 1 39612475 0 f f \N \N \N \N 306869 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401661 2025-02-13 09:58:22.112 2025-03-29 22:39:49.739 \N web apps are fine if you use them in a sandboxed environment\nhttps://f-droid.org/en/packages/com.tobykurien.webapps/\n\nand when encrypted at rest (when you switch to another app even if it can be made that way)\n\nWhat is not so much okay, is when you're executing in the same environment as this: https://www.cvedetails.com/vulnerability-list/vendor_id-1224/product_id-15031/opec-1/Google-Chrome.html\n\nI'd prefer even if you didn't use the same device as something that has spyware such as this: https://www.shopify.com/enterprise/cross-device-ad-targeting\n\nbut I know there's only so much you can ask of the normie. Best practice in my view, would be to have a channel with a more secure device that funds the less secure device (in person, not automatically) when you're ready to spend.\n\nBut android with all the google spyware can do a decent job of sandboxing (even if you have to create a work profile for your sandboxed app), I don't know much about Apple though.\n\nAccording to the CVE page for safari, very little has been found: https://www.cvedetails.com/vulnerability-list/vendor_id-49/product_id-2935/year-2023/Apple-Safari.html\n\nSometimes that just means there aren't many security researchers looking at the code though. https://example.com/ 4259 401654 401496.401654.401661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2152208826557 0 \N \N f 363654047 \N 2 100795072 0 f f \N \N \N \N 401496 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421269 2025-03-01 14:48:05.817 2025-03-29 22:39:49.739 \N I'll actually be in Austin and checking out pleblab in a week's time 😀 https://example.com/ 16387 421193 421117.421193.421269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4346910481597 0 \N \N f 227408898 \N 2 241049510 0 f f \N \N \N \N 421117 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 298422 2024-11-17 10:32:16.719 2025-03-29 22:39:47.608 Help me Understand Phoenix Fee Concept Can anyone help me with a question about Phoenix wallet? Believe my inboud liquidity is close to 0. For example under channel details it says 105k and capacity 113k. Yesterday I wanted to send myself a micro payment 'c.a. 4k sats, that then cost me 2k of it in miner fees. \n\nThought OK, sure that was such a splicing transaction to increase the capacity of a channel, but actually the capacity (see above) is still almost used 🤷‍♂? And the next mini LN TX I wanted to do was rejected because it would cost too high "mining fees".\n\nDon't get it, LN is supposed to be cheap and stay that way? I imagined if the Phoenix already makes a splicing tx that also put a little inbound liquidity on top. I do not want to pay for each mini LN TX: 2-4k sats mining fees 🤯 \N 12870 \N 298422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.804496462838 0 \N \N f 0 \N 0 58553545 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 47483 2023-08-08 16:31:23.612 2025-03-29 22:39:47.608 MVP Development by Keyan Kousha \N https://www.youtube.com/live/uQauY0pobGw?feature=shared 12959 \N 47483 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.7936351505839 0 \N \N f 0 \N 0 226056297 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 116334 2024-01-21 13:23:27.495 2025-03-29 22:39:47.608 New OpenSSH Vulnerability Could Lead to RCE as Root on Linux Systems \N https://thehackernews.com/2024/07/new-openssh-vulnerability-could-lead-to.html 7580 \N 116334 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.03858223942974 0 \N \N f 0 \N 0 134363923 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 380545 2025-01-26 01:21:06.03 2025-03-29 22:39:47.608 Cheeky bitcoin business names Day dreaming about cheeky bitcoin-related business names. Best one i came up with:\n\na local resell/repair shop called: Bitcoin Fixes This 😅\n\nAnyone else think of some ?\n\nnostr:nevent1qqsqyh4va9d8hmxxdqq2msemls3xpay3zxhwe80athjvhqzhchv9klspz4mhxue69uhk2er9dchxummnw3ezumrpdejqygqjfv3l9an42sp257q5kxzue5gxd7lsl83t0etrdq78s0dsy32egupsgqqqqqqsl4ps8v \N 19668 \N 380545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.30705221307126 0 \N \N f 0 \N 0 34116718 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 95453 2023-12-06 17:38:17.934 2025-03-29 22:39:49.739 \N Good idea on this meta sub. Let me start by saying how I think "tech" was a good call for a sub. It seemed to instantly get lots of posts and activity. https://example.com/ 7668 95306 95306.95453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7061825790196 0 \N \N f 176023948 \N 2 56983626 0 f f \N \N \N \N 95306 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434740 2025-03-12 07:50:31.5 2025-03-29 22:39:49.739 \N Video games and unnecessary tech related stuff. 😄 https://example.com/ 21575 434072 433555.434072.434740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0454515588943 0 \N \N f 0 \N 0 86649920 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 04:09:25.597 f \N \N \N 0 0 0 0 0 0 0 413632 2025-02-23 12:06:14.757 2025-03-29 22:39:49.739 \N ![](https://www.zapread.com/i/9J-) https://example.com/ 2088 412631 412631.413632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.89586727004279 0 \N \N f 0 \N 0 229282727 0 f f \N \N \N \N 412631 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 134232 2024-02-29 11:11:20.386 2025-03-29 22:39:47.608 My tips to cope with parenthood First things first, perhaps I’m not the best person to comment on this topic. In a moment of weakness, I confessed my deepest and darkest thoughts regarding my parenting journey: https://stacker.news/items/304937. I don’t enjoy the struggle.\n\nBut perhaps it’s precisely because I don’t enjoy parenting that much that what I have to share becomes valuable because I’m battling hard not to slip into an abyss of regret and loathing. \n\nMany Stackers reached out to me and provided lots of useful suggestions. I have compiled them in this post: https://stacker.news/items/308705. Since parenting is an individual journey, I just wanna add my two sats’ worth to the list.\n\n1. Invest in time-saving technologies\n\n2 kids and no helper/nanny. Cleaning takes up a chunk of our everyday life, so all these new age electrical appliances will relieve some stress from the hectic routine. We got a robotic cleaner for free from a friend. Although I hardly use it, it’s comforting to know that it’s there. We do use the dishwasher and washing machine-cum-dryer every day. My wife is now contemplating a bigger dishwasher. Also, my household has bought digital locks for the front door. Honestly, I think they are are a waste of money, but if my wife derives some happiness from not having to lug keys around, I sure as hell won’t say nope.\n\n2. Get your shit sorted out\n\nNot just the big things like making a will and opening savings accounts and investing into your children’s college funds. Also spend time on decluttering your life. I have not particularly succeeded at all aspects of my life, but I now know where every single piece of my clothing is. My clothes are sorted by colour. Gasp. Papers are the hardest because I work as a teacher and love to hoard resources. Still, I am working towards knowing where every document is in my home. Having exhibited more control over my mess, I find that these days, I have more resources to deploy on my kids. Bonus in my situation because I can recycle my preloved papers for a few cents in my country.\n\n3. Embrace the act of tidying up\n\nYou will be surprised by how fast books and toys multiply in your house. Your child will get showered with presents from well-meaning family and friends - and it’s not always easy to say nope to them. So you have to deal with their shit (metaphorical) as well. Welcome to this:\n\n![IMG_0498.jpeg](https://m.stacker.news/13429)\n\nWhen your children are too young to clean up after themselves and your wife is burnt out doing other things, you got to rise to the occasion. What motivates me is the conviction that I want my son to feel for himself how being organised smoothens his life. He knows where his toys are because I have assigned a home for each of his prized possessions. I also pair tidying up with certain habits. Sometimes I let my mind go free and brainstorm of articles to write. Other times, I may just binge-watch Netflix. Yet other times, I will listen to podcasts on Fountain. The more you embrace tidying up, the less irritated you will get when your kids inevitably mess up.\n\n4. Make your kids fall in love with cleaning \n\nLast weekend, my son just took the mop and wet wipe and mopped our living room floor. He must be observing how we clean the household every day and wants to get a piece of the action as well! Children usually find household chores fun. Keep it that way for them. The more you can lean on them, the less you need to do for them. \n\n5. Make sure your child learns something every day\n\nDue to the craziness and chaos of parenting, it’s very easy to fall into the daily grind and feel like a hamster. Case in point: we used to read to our son nightly but stopped this practice after our baby girl had come into the picture. I cope better with parenting when I cultivate an atmosphere of growth. So I bring a flashcard when I pick my son up from the child care centre. Yes, just one flashcard. So my boy knows how to spell z-o-o and recognise 河马 (hippopotamus in Chinese). I feel proud and that spurs me on.\n\n6. Schedule meetups with your parents and children\n\nThis assuages my guilt of not spending enough time with my father. My son still wants to hold my hand at all times, but I find that just having my dad around is a breather. Find your village and activate them as often as you can.\n\nI hope these tips help someone else out there. Hang in there. \N 16424 \N 134232 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.517977108352 0 \N \N f 0 \N 0 219186832 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2588 2022-10-16 12:32:56.774 2025-03-29 22:39:47.608 CatVM: There and Back Again It's a pdf\n\nThe OP_CAT people are at it again...\n\nGotta admit I admire their flair. https://catvm.org/catvm.pdf 694 \N 2588 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.00863989455 0 \N \N f 0 \N 0 16085060 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 193817 2024-07-03 11:22:55.538 2025-03-29 22:39:47.608 BTRY - Lottery powered by Bitcoin A few months ago, I decided to dedicate a good portion of my free time to develop tools and services for the Bitcoin ecosystem.\n\nI truly believe Satoshi created a liberating technology that has the potential to the empower millions around the world, and I want to contribute to that cause.\n\nI have seen enough damage from governments to sit back and do nothing. It is time to take over and build solutions designed for individuals, valuing their privacy, security, freedom and sovereignty.\n\nThis is the start of my journey, I'm proud to announce [BTRY](https://github.com/aftermath2/btry).\n\n## BTRY\n\n**BTRY** is an open-source accountless (daily) lottery that uses asymmetric cryptography to register bets/prizes, and the Lightning Network to send and receive payments.\n\nThanks to Bitcoin, cryptography and the Tor network, BTRY is:\n\n- Globally available\n- Permissionless\n- Transparent and auditable\n- Completely private\n- Simple\n\nOn top of that, it offers instantly redeemable and hard money prizes!\n\nOnion site: http://22id55jzspf3mo5duk5z4honwhqdl7ebtmkemccknmpkniytxwqzzzyd.onion\n\nSource code: https://github.com/aftermath2/btry\n\n> It requires a browser proxied through Tor to be accessed (like the [Tor Browser](https://www.torproject.org/download)). It can't be accessed through clearnet.\n\n### Getting started\n\nAll you need to participate is an **ED25519** private key. \n\nBTRY initially generates one randomly to ensure an uninterrupted experience, but is up to the user to keep it, enter a custom one or generate it using the UI.\n\nThe private key never leaves the client, its associated public key is used to identify your bets and prizes, and the signature is used to withdraw them. \n\nThe user should make sure to back it up, because it's the only way he can withdraw the funds. For greater privacy, it's suggested not to reuse keys on different lotteries.\n\n### Bets\n\nBets are submitted by paying invoices, the invoice amount is the number of tickets that the user gets assigned once paid (1 sat = 1 ticket).\n\nA single ticket can win multiple prizes, all users participate for the **99.609375%** of the prize pool. The bigger the bet, the higher the chances to win.\n\n> Any user can do any number of bets and they can be as little as 1 sat and as big as the capacity available.\n\nIn this lottery, ticket numbers are not chosen by the users but assigned sequentially. For example, if the prize pool is of 10,000 sats and the user submits a bet for 5,000 sats, he would get the tickets 10,001 to 15,000. If any of the winning numbers is between those two, the user is assigned a prize.\n\n### Prizes\n\nWinners are announced daily at 00:00 UTC and the winning numbers are generated using cryptographically secure random numbers.\n\nThese are the prizes as a percentage of the prize pool:\n\n| Place | Prize |\n| --- | --- |\n| 1st | 50 |\n| 2nd | 25 |\n| 3rd | 12.5 |\n| 4th | 6.25 |\n| 5th | 3.125 |\n| 6th | 1.5625 |\n| 7th | 0.78125 |\n| 8th | 0.390625 |\n| | |\n| BTRY fee | 0.390625 |\n\nAll prizes expire after 5 days, this is to avoid having liquidity locked for long periods ([automatic withdrawals](https://github.com/aftermath2/btry/issues/11) may help overcome this).\n\nUsers can opt to receive notifications through Telegram in case of winning. Messaging service identifiers are stored for one week and permanently deleted after that.\n\n### Next steps\n\nAlthough I present BTRY as a lottery, I would like it to become a platform that offers many services. Some of the features I'm looking to add in the next weeks/months are:\n\n- **Battles** ([#9](https://github.com/aftermath2/btry/issues/9)):\n\n\tBattles are a **non-custodial** PvP game based on HODL contracts where two players compete for a fixed amount of money.\n\n\tThe funds are never in the hands of BTRY, it merely acts as a coordinator and decides which payment to settle (loser -> winner) and which one to cancel (winner -> loser).\n\n\tInitially, the idea is that both users choose one number between 0 and 1000, BTRY generates one randomly (using provably fair numbers) and the one that got it closer wins. In case of a tie, both invoices are canceled.\n\n\tHowever, the goal is to move towards other forms of deciding a winner, like **real event outcomes**. There has been demand for a sports betting platform based on Lightning and these technologies may be a great fit for that.\n\n- **On-chain transactions support** ([#5](https://github.com/aftermath2/btry/issues/5)): The ability to deposit and withdrawal using on-chain transactions could be really useful, especially because big prize pools may be cheaper to move on-chain than in lightning. The main issue is that without splices, it does require managing liquidity on both layers and paying the fees to move from one to the other.\n- **Automatic withdrawals via lightning addresses** ([#11](https://github.com/aftermath2/btry/issues/11)): To overcome the drawback of having a limited time to withdraw the prizes, a potential solution could be to let users specify a lightning address before the prizes are assigned so they are sent automatically if they win. On-chain addresses could be used as well if #5 is implemented.\n\nAnd [more](https://github.com/aftermath2/btry/issues)... Feel free to leave comments on the existing issues and to open new ones if you would like to propose a feature request or report a bug.\n\n#### Contact\n\nI run the node [aftermath](https://amboss.space/node/032c52ba7d06c6361bc137bf0b78e47ad09b46014ca8d0c1b5d005180207373a37), I'm looking for long-lived channels and actively managed nodes.\n\n> Minimum size: 2M. Private channels are rejected to avoid locked liquidity (this may change in the future).\n\nI will be reading your feedback here and answering any questions. You can also contact me on Telegram at @aftermath02. \N 13076 \N 193817 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.8943192254274 0 \N \N f 0 \N 0 235652933 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421421 2025-03-01 16:27:19.792 2025-03-29 22:39:49.739 \N >how do you feel about Vitalik Buterin?\n\nHe is playing a very dangerous game in order to make a lot of money. He has let greed overtake his reason. And it could easily get him killed when ETH crashes.\n\n>Do you think that he shouldn’t have leveraged such criticism against BTC HODLers?\n\nBitcoin maxis have taken that derogatory label and turned it into a badge of honor. So his ciriticisms of maxis have been a waste of time, at best.\n\nBut more generally, it is always unwise to criticize people who are trying to help you avoid harm (just as alcoholics shouldn't get mad when their friends/family say "stop drinking alcohol"). If you think they are wrong, then just say "I appreciate the advice" and continue what are doing. And if you do get harmed, apologize to the people who tried to help you avoid that harm. Vitalik might never get the chance to apologize.\n\n>Or are you sympathetic towards him as someone who was just trying to garner greater public interest for his product?\n\nBitcoin maxis have been criticizing Vitalik for years. And his criticisms of maxis prove that he is hearing their criticisms. So, it's hard for me to have sympathy for him. He has dug himself into a hole -- and he could get out right now by giving up his ill-gotten wealth. But he insists on staying in that hole and continuing to dig. The time is fast approaching when that hole will become too deep to escape. That's when his colleagues will betray him to save themselves.\n\nI wonder if Vitalik is even aware of the danger ahead of him. https://example.com/ 2061 421367 421367.421421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9892927665064 0 \N \N f 88245073 \N 1 10339940 0 f f \N \N \N \N 421367 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458199 2025-03-29 05:24:29.289 2025-03-29 22:39:49.739 \N Sir Andre Geim, who had been awarded an Ig Nobel Prize (a satiric prize) in 2000 for levitating a frog by magnetism, was awarded a Nobel Prize in physics in 2010 for his work with the electromagnetic properties of graphene. He is the only individual, as of 2023, to have received both a Nobel and an Ig Nobel. https://en.m.wikipedia.org/wiki/Ig_Nobel_Prize https://example.com/ 2460 458198 458198.458199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9073459804503 0 \N \N f 0 \N 0 171096602 0 f f \N \N \N \N 458198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51969 2023-08-18 23:33:13.192 2025-03-29 22:39:47.6 A Little Girl's Bad Dream Our daughter told us that she had a bad dream last night. Naturally, we wanted to know what happened.\n\nAt first all she told us was that "The pigs ran away". Since we don't have any pigs, some follow up questions were warranted.\n\n"Were you a farmer?" \n"No"\n\n"Were you the big bad wolf?" (sometimes she identifies with the villains in stories) \n"No"\n\nAfter a bit more detective work, it turned out her bad dream was that the characters of The Three Little Pigs had run away from the book, so she couldn't read it.\n\nTalk about a nightmare scenario for fans of literature. \N 7992 \N 51969 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.8421723498926 0 \N \N f 0 \N 0 42477221 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1912 2022-09-28 16:18:21.667 2025-03-29 22:39:47.608 How Lightning Address works More experienced users know, that nowadays you can send satoshis directly to Lightning Address in user@domain format. But how exactly does this work?\n\nIn this short article I would like to explain it to those who do not know it. At the same time, I will describe the basics of Lightning invoices and LNURL-pay protocol.\n\n## Lightning invoices basics\nLightning Invoices are nowadays the standard for sending and receiving funds on the Lightning Network. If you want to receive some satoshis, you have to generate an invoice on your node/wallet. An invoice is nothing more than a text string (which starts with lnbc...) and contains, among other things, the recipient ID and the amount. There is actually more information but we won't go into that now. The invoice is most often shared using a QR code, which is nothing more than an image representation of the string described earlier.\n\nExample:\n![LN Invoice](https://platbybudoucnosti.cz/sn/invoice.png)\n\nLightning wallet then builds up several paths in the network to the recipient, ranks them from most advantageous and tries one by one until the payment is successful (or sometimes not).\n\nHowever, Lightning invoices have certain limitations. Imagine you're a YouTuber and you want to embed a static QR code in your videos so your fans can send you donations. Each invoice has a expiration limit (usually 1 hour) and cannot be paid more than once. This is because some nodes learn a random number called payment_preimage when routing a payment, so it is not safe to pay one invoice multiple times, as fraud could occur. What to do about it? Let's use LNURL-pay!\n\n## LNURL-pay basics\nLNURL-pay is a standard, that allows us to create a static QR code, that can be paid multiple times. How does it work?\n\nAt its core, it is nothing more than a URL link to a web service using the HTTPS protocol (alternatively Tor), which is encrypted using bech32 encoding. A huge advantage in terms of user-friendliness is the fact that QR codes are indistinguishable to the human eye and therefore the average user does not need to know whether they are paying a regular invoice or LNURL-pay.\n\nExample:\n![LN Invoice](https://platbybudoucnosti.cz/sn/lnurl.png)\n\nPayment procedure:\n1. **User** scans the QR code (LNURL-pay) using his Lightning **wallet**.\n2. **Wallet** decodes the QR code, then decodes the bech32 string, gets the URL and visits it using HTTPS.\n3. **Service** responds to the wallet with a message asking for the amount (can be fixed).\n4. **User** fills in the amount and sends this information to the **service**.\n5. **Service** will return a classic Lightning invoice for the amount selected by the **user**.\n6. **Wallet will pay the invoice**.\n\nAnd that's it! So LNURL-pay is just a protocol that is used to negotiate (via the web server) what amount I want to generate an invoice for.\n\n## Finally - Lightning Address\nNow that we know the principles of invoices and LNURL-pay, understanding Lightning Address will be very easy. Remember, how we need to scan a QR code with LNURL-pay to get an initial HTTPS link?\n\nWith Lightning Address, you don't have to scan any QR code. For example, if your address is heisenberg@stacker.news, your wallet will translate that into URL https://stacker.news/.well-known/lnurlp/heisenberg. In other words, the link is not obtained from the QR code but is "compiled" from the Lightning Address. Your wallet visits this URL and the answer is well known LNURL-pay request, how much do you want to pay (point 3 above). Then the procedure is identical. And that's it!\n\n## How to use it?\nMany custodial wallet/solution nowadays generates a Lightning Address for you automatically, for example every user has address in format username@stacker.news. If you want to pay something to this address, just insert the address to the "invoice field" in your Lightning wallet. It's supported by majority of wallets. Another solution is to use tools hosted on your own Lightning node (like LNBits, LnMe or others) to be able to receive satoshis non-custodially.\n\n**I hope you learned something new and let me know if you would be interested in similar articles.** \N 768 \N 1912 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.0959885735037 0 \N \N f 193512543 \N 1 225217759 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455784 2025-03-27 10:29:23.159 2025-03-29 22:39:49.739 \N "Do not try and time the market. That's impossible. Instead only try to realize the truth."\nWhat truth?\n"1 sat = 1 sat"\n1 sat = 1 sat?\n"Then you'll see that it is not the price that changes, it is only yourself."\nThere is no green, there is no red, there is only orange\n\n![no price](https://matrix4humans.com/wp-content/uploads/2020/01/spoonboy.jpg)\n\nNo but seriously, just like everybody else, you don't realize its the top at the time you're supposed to be selling.\n\nhttps://bitcointalk.org/index.php?topic=375643.0\n\n"I type d that tyitle twice because I knew it was wrong the first time. Still wrong. w/e. GF's out at a lesbian bar, BTC crashing WHY AM I HOLDING? I'LL TELL YOU WHY. It's because I'm a bad trader and I KNOW I'M A BAD TRADER. Yeah you good traders can spot the highs and the lows pit pat piffy wing wong wang just like that and make a millino bucks sure no problem bro. Likewise the weak hands are like OH NO IT'S GOING DOWN I'M GONNA SELL he he he and then they're like OH GOD MY ASSHOLE when the SMART traders who KNOW WHAT THE FUCK THEY'RE DOING buy back in but you know what? I'm not part of that group. When the traders buy back in I'm already part of the market capital so GUESS WHO YOU'RE CHEATING day traders NOT ME~! Those taunt threads saying "OHH YOU SHOULD HAVE SOLD" YEAH NO SHIT. NO SHIT I SHOULD HAVE SOLD. I SHOULD HAVE SOLD MOMENTS BEFORE EVERY SELL AND BOUGHT MOMENTS BEFORE EVERY BUY BUT YOU KNOW WHAT NOT EVERYBODY IS AS COOL AS YOU. You only sell in a bear market if you are a good day trader or an illusioned noob. The people inbetween hold. In a zero-sum game such as this, traders can only take your money if you sell.\n\nso i've had some whiskey\nactually on the bottle it's spelled whisky\nw/e\nsue me\n(but only if it's payable in BTC)" https://example.com/ 7667 455523 455413.455523.455784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.4341761677228 0 \N \N f 0 \N 0 126513240 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451242 2025-03-24 13:15:20.05 2025-03-29 22:39:49.739 \N Day 111 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 17535 450729 450729.451242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7412550167392 0 \N \N f 0 \N 0 614666 0 f f \N \N \N \N 450729 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448797 2025-03-22 21:55:18.194 2025-03-29 22:39:49.739 \N Day 227 of snailposting everyday 'til BTC hits $100k.\n\n...and 27 push-up(s).\n\n__@_'-' https://example.com/ 2710 448349 448349.448797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.21614288240805 0 \N \N f 0 \N 0 143853470 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404175 2025-02-15 16:05:12.114 2025-03-29 22:39:49.739 \N Very cool!\n\nBut you probably want to use a logo that does not have the graphic ripped straight from SO. https://example.com/ 624 404042 404042.404175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3823918290601 0 \N \N f 0 \N 0 144962682 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456786 2025-03-27 21:32:53.4 2025-03-29 22:39:49.739 \N > Most everyone thinks NFTs are images of silly apes, something to laugh at, but yet the reality is they are the atomic unit of digital ownership in the 21st century. Once again, the thing that we laughed at turns out to be the big thing.\n\nI think most of the current way NFTs are discussed is idiotic. I also think there is less than 1 percent chance (and I mean this literally) of NFTs going away. I believe NFTs going away is comparable probable than the remnants of civilization becoming hunter-gatherers again. https://example.com/ 18772 136580 136580.456786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6475128527838 0 \N \N f 0 \N 0 149716961 0 f f \N \N \N \N 136580 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416884 2025-02-25 22:43:19.891 2025-03-29 22:39:49.739 \N I was in the wrong business. Took me 15 years to build a 2M revenue business that at best was worth maybe 750k haha. https://example.com/ 917 416784 416158.416784.416884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4622390561634 0 \N \N f 0 \N 0 157043333 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444545 2025-03-20 01:47:06.044 2025-03-29 22:39:49.739 \N Lots of CLN things for me this week. Working on improvements to the Voltage LSP and will probably have my first CLN PR to submit that adds APIs that they haven't added to the RPC yet. \n\nIt's so hard getting feature parity across LND, CLN, and LDK. It's one thing to be protocol interoperable, another thing building applications on top of them as a dev. Widely different developer experiences across those three. https://example.com/ 13599 444537 444537.444545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1192274092462 0 \N \N f 0 \N 0 53472221 0 f f \N \N \N \N 444537 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422176 2025-03-02 10:03:41.297 2025-03-29 22:39:49.74 \N I will start this novel **Cryptonomicon** by Neal Stephenson; from tomorrow. Have to finish some applications by tonight.\n![](https://void.cat/d/JZJM19MVPhtdNRFwxp58fC.webp) https://example.com/ 21401 422150 422150.422176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2191246358937 0 \N \N f 0 \N 0 107557335 0 f f \N \N \N \N 422150 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402128 2025-02-13 15:09:54.782 2025-03-29 22:39:49.74 \N Football Sundays are back! https://example.com/ 641 401734 401734.402128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1964565549214 0 \N \N f 208367038 \N 1 1733701 0 f f \N \N \N \N 401734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410535 2025-02-20 14:23:14.756 2025-03-29 22:39:49.741 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **16** https://example.com/ 12220 410477 410269.410477.410535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4505796710761 0 \N \N f 0 \N 0 9474511 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106224 2024-01-01 00:31:55.213 2025-03-29 22:39:47.6 Zap to Zero Day 12 # Zap to Zero Day 12\n\n> _What is the difference between humans and other animals? The ability to write, the ability to plan far into the future and the ability to fuck up the whole planet._\n\n— anonymous\n\nDo you agree with this quote? Or are other features more distinct between humans and _other_ animals?\n\nEmphasis on _other_ since we're also just animals.\n\nOr put in other words:\n\n> _We are incredible social creatures, as much as we like to deny it._\n\n— somewhere in this [video](https://www.youtube.com/watch?v=l5NK8zdIK-g) that is about:\n\n> [...] happiness, self-confidence, how I motivate myself, changes, etc.\n> \n> Other topics include staying positive, the importance of having self-discipline, and recognizing that it's highly likely that you won't remember the problems you have right now in just a few months or years.\n>\n> Be kind to yourself, be kind to others, and spread the love!! All the positive feelings you have for your friends, the people you look up to ... don't be afraid to treat yourself with that same love. \n\n— video description\n\n---\n\n## [Satistics](https://stacker.news/satistics?inc=stacked,spent)\n\n| Date | Spent | Stacked (Rewards) | Posts | Comments | Rewarded |\n| --- | --- | --- | --- | --- | --- |\n| [2023-12-28](https://stacker.news/items/370188) | 13k | 8808 (n/a) | 2 | 35 | n/a |\n| [2023-12-29](https://stacker.news/items/371370) | 16.1k | 15.6k (5222) | 3 | 52 | ⚡ |\n| [2023-12-30](https://stacker.news/items/372534) | 10.8k | 9752 (7026) | 1 | 41 | ✍️ |\n| [2023-12-31](https://stacker.news/items/373620) | 20.5k | 17.9k (4379) | 5 | 61 | ⚡ |\n| **[2024-01-01](https://stacker.news/items/374881)** | 12.5k | 10.7k (7684) | 3 | 47 | ✍️ |\n| [2024-01-02](https://stacker.news/items/376287) | 16k | 19.5k (9353) | 6 | 36 | ✍️ |\n| [2024-01-03](https://stacker.news/items/377500) | 15.9k | 15.6k (6729) | 2 | 46 | ⚡ |\n| [2024-01-04](https://stacker.news/items/378870) |\t11.4k | 11.4k (~3954~ ~4093~ 4131) | 3 | 38 | ✍️ |\n| [2024-01-05](https://stacker.news/items/379663) |\t11.3k | 11.4k (~3954~ 4092) | 1 | 41 | ? |\n| [2024-01-06](https://stacker.news/items/379663) | 6691 | 6282 (~3665~ 3954) | 0 | 38 | ✍️ |\n| [2024-01-07](https://stacker.news/items/380810) | 8053 | 8503 (~1219~ 3665) | 3 | 20 | ✍️ |\n| **[2024-01-08]()** | 8873 | 9164 (1219) | 2 | 12 | ⚡ |\n| 2024-01-09 | TBD | TBD (4649) | TBD | TBD | ✍️ |\n\n![2024-01-09-122649_613x450_scrot.png](https://m.stacker.news/11397)\n\n![2024-01-09-122318_906x242_scrot.png](https://m.stacker.news/11396)\n\n![Figure_2.png](https://m.stacker.news/11403)\n\nThe special that I [mentioned](https://stacker.news/items/381441) yesterday:\n\n![Figure_3.png](https://m.stacker.news/11422)\n\nIt shows my sat balance. I poll it every 5 seconds (like our frontend does) and save it in a file with a timestamp next to it. This can also be used as a "proof" that I indeed hit zero before I went to bed [0]. It's slightly uncomfortable to essentially reveal how much (or less) I sleep and when but I think it's more interesting to show than uncomfortable. You can deduce my time zone by looking at my SN activity and [I didn't really keep my time zone a secret on SN anyway](https://stacker.news/items/382059).\n\nThis is also a very good example how easy you can find information about an individual online using [OSINT](https://stacker.news/items/382165) to make educated guesses about their location. \n\n> OSINT stands for open-source intelligence. That is, the collection and analysis of data obtained from publicly accessible information channels. Such sources can basically be anything: newspapers and magazines, television and radio, data published by official organizations, scientific research, conference reports, etc.\n>\n> Nowadays, of course, such intelligence is primarily based on information scraped from the internet. Over the past 10–15 years, online public communication platforms have become especially valuable as OSINT-gathering tools: chats, forums, social networks, and messengers.\n>\n> The range of people using OSINT is quite diverse: journalists, scientists, civil activists, government and business analysts, as well as intelligence officers themselves. In a nutshell, OSINT is an important and effective tool for collecting data. But perhaps the more significant question is how such information gets put to use.\n\nFor example, this information ([that might have not been protected enough due to backups that are not encrypted by default](https://stacker.news/items/382072)) might have been [used for airstrikes in Ukraine](https://stacker.news/items/382085):\n\n> All British Army personnel, including senior officers, will now face disciplinary action if they're caught using WhatsApp over fears that Russia is using phone data to choose airstrike targets\n\n---\n\nI continued reading _Art of Deception_ from Kevin D. Mitnick ("world's most celebrated hacker" according to the back cover) in bed. I am at page 23 from 338 now. I also recommended this book to @Fabs [yesterday](https://stacker.news/items/381704).\n\nSome quotes as highlights:\n\n> **ABUSE OF TRUST**\n> In most cases, successful social engineers have strong people skills. They're charming, polite and easy to like — social traits needed for establishing rapid rapport and trust. An experienced social engineer is able to gain access to virtually any targeted information by using strategies and tactics of his craft.\n>\n> Savvy technologists have painstakingly developed information-security solutions to minimize the risks connected with the use of computers, yet left unaddressed the most significant vulnerability, the human factor.\n>\n> Despite our intellect, we humans — you, me, and everyone else — remain the most severe threat to each other's security.\n\n— Kevin D. Mitnick & William L. Simon (2022), _Art of Deception_, Chapter 1, page 8\n\n_Ok, that was only one quote. I'll save some quotes for future posts. Or just read the book yourself!_\n\n---\n\n![signal-2024-01-09-020353.jpeg](https://m.stacker.news/11393)\n\n_#just.iOS.things_\n\nI also did setup my new iPhone SE 3rd Gen yesterday. My experience with setting it up (which includes creating an Apple ID) is a story for another day. The great thing is that I was finally able to debug [broken push notifications on iOS](https://github.com/stackernews/stacker.news/issues/411):\n\n>> Do you have an iOS device to test with yet? I know for a while you didn’t.\n>\n> Not yet, @k00b and me are currently discussing exactly this in Slack, lol\n> Quote from me:\n>> I can't believe Apple is making me buy an Apple device so I can debug their shit lol\n>\n> I'll try to get my hands on a used 6s next week\n\n-- @WeAreAllSatoshi and me, [#372791](https://stacker.news/items/372791)\n\nIf anyone is interested, [here is my analysis inside a Github comment](https://github.com/stackernews/stacker.news/issues/411#issuecomment-1882137442).\n\n---\n\n## Recent Superzaps\n\n### 1. [Don't Say I Can't. Say How Can I?](https://stacker.news/items/381243)\n\nThis post from @kepford is one of these posts that I immediately zapped without reading them first. The title already told me that this is going to be a good one. It hit close to home.\n\n> There are few things more frustrating to me than hearing someone defeating themselves. Saying they can't do something when they can. We live in a time where it is almost a virtue to be a victim. To blame others for why you are in your current state. Now, part of this is true. We are all products of our time, our families, our culture, and our economies. Many of us have been abused or persecuted for various reasons. Many have enemies, people that hate them, and what us to fail. This has always been true and will likely remain to be true. So what.\n>\n> [...]\n> \n> There will always be people smarter than me. There will always be someone born with more advantages than me. There will always be someone or something pushing against me. But I can move forward. I can press on. I have agency over my mind and body if I will take it. I can make my life better and the lives of others. In my experience people hold themselves back far more than others. Many here hate the state. I do as well. Its evil but many do not take their freedom back where they can. They don't do things they can do to make themselves more free. Freedom begins in the mind. Stop saying "I can't". Instead start saying, "How can I?"\n>\n> How can I __?\n\nI also didn't reply (I didn't even read the post until now) but I wonder if that post has seen less engagement in terms of zaps and replies because it's in ~culture, we [released territory mutes](https://stacker.news/items/372672) 10 days ago and ~culture isn't one of the OG territories.\n\nBtw, relevant song:\n\nhttps://www.youtube.com/watch?v=niphGpcSou8\n\n> I used to be as innocent as you\nMy excuses ran out, ran out of things to complain about\nFear will always find a way to show\nRight through\n>\n> You want to be more hurt than me\nYou want to say you're more the victim\nYou wanna complain and pass the blame\nYou want to say you're more the victim\n\n### 2. [A request for non-correlated inputs](https://stacker.news/items/370505)\n\nA while ago (which means 1.5 weeks in SN terms), @elvismercury mentioned that he thinks he's bad at what he's good at:\n\n>> Despite feeling strongly about this, I don't think I'm very good at it, which is bad.\n>\n> Based on the variety of links and discussions you share alone, you're exceptional at this actually.\n\n-- @k00b, [#370647](https://stacker.news/items/370647)\n\nIt's about information monocultures and how they are security holes (even though this was posted in ~mostly_harmless and not in ~security [1]):\n\n> A fact I try to keep front-of-mind is that your outputs are a function of your inputs. An implication is that if you consume the same info as everyone else, you will think the same thoughts as everyone else. You will have the same "insights" and be vulnerable to the same exploits. In the same way that trusted third parties are security holes, an information monoculture is a security hole. Worse, it's a hole you may not even know you're in, because the people around you are in it too.\n\nI am mentioning this here since I think this is a timeless piece. I revisited it yesterday since @k00b linked to it [here](https://stacker.news/items/381702) in the post where @kr asked [if the trend of global urbanization will reverse](https://stacker.news/items/381540).\n\nI also had to laugh because of [this comment](https://stacker.news/items/381554) from @SimpleStacker in there btw:\n\n> It will reverse when the bombs drop\n\n_still occasionally laughing, probably because it's true_\n\n### 3. [I'm not the brightest bulb out there, help me change it.](https://stacker.news/items/381033)\n\nA very humble stacker that [does not want to be mentioned here](https://stacker.news/items/381138) posted this yesterday. It seems very related to the post from @elvismercury above since I think they are also asking for non-correlated inputs; they just are ~not bright enough yet~ too humble to know it and are asking specifically for books as inputs:\n\n> I'm not that knowledgeable about anything, really... Naturally, that makes me a pretty boring partner in terms of socializing and conversations.\n>\n> The only topics I can have a conversation about is Outdoor-gear and Bitcoin, which would be fine, if only the other side would be interested or knowledgeable about these two topics...\n>\n> In order to change this, I'd like to start reading a healthy amount of books, in no specific order, but on a multitude of different topics.\n\nI [took the opportunity to shill the book about social engineering that I am currently reading](https://stacker.news/items/381704) and they seemed to like it:\n\n> Oh! Social engineering, interesting indeed! I'll have a look at that genre, too.\n\nAnother social engineer was made aware that we're all social engineers; most of us just don't know it; don't don't apply our unconscious knowledge of social engineering or are too ashamed [2] to do it. For example, parents are the "grand experts of all time in social engineering":\n\n> My task is made more difficult by a simple truth: Every reader will have been manipulated by the grand experts of all time in social engineering — their parents. They found ways to get you — "for your own good" — to do what they thought best. Parents become great storytellers in the same way that social engineers skillfully develop very plausible stories, reasons, and justifications for achieving their goals\n\n_This is related to [this comment](https://stacker.news/items/381107) from @cryotosensei in yesterday's saloon where @Natalia and @Undisciplined joined in._\n\n### 4. [Where will you NEVER visit again?](https://stacker.news/items/380889)\n\n@birdeye21 used his bird view again to see exactly what question stackers will be interested in and zap him to the top with not much else to say:\n\n> Respectfully…\n>\n> What are some countries cities states islands etc. that gave you nothing but red flags, or were otherwise not what you were hoping for?\n>\n> Why won’t you be returning??\n\nI also found it interesting how some replies in there were related to [the post](https://stacker.news/items/381540) from @kr that I mentioned above. For example:\n\n> Going to predict a lot of big cities appear in responses here. What a lot of people haven't worked out is that unless you're rich (i.e. your local purchasing power is multiples the destination you're travelling to), most cities are pretty miserable to experience as a tourist. They're designed for living in and for locals.\n\n— @chairman_pretense, [#381013](https://stacker.news/items/381013)\n\n---\n\n## Challenge of the Day\n\nFeel inspired by @orthwyrm and do one push-up.\n\n![8br537.jpg](https://m.stacker.news/11415)\n\n_btw, just realized my browser wants to correct "orthwyrm" to "earthworm":_\n\n![2024-01-09-131216_1918x1059_scrot.png](https://m.stacker.news/11416)\n\n---\n\n## [Song of the Day](https://stacker.news/items/381995)\n\nhttps://www.youtube.com/watch?v=F1KKRcItk88\n\n> Like a fiction based life form, call me cartoon\n> Like escaping colors from a box, filling dark rooms\n> Like illuminating sky patterns, breaking up\n> Like a dream with your lover, don't wake me up\n> Like a solar eclipse when the sun parts with the moon\n> Like the summer being over but it came too soon\n> Like the moment that your essence became crystal clear\n> Like the flowers in the spring, show your face once a year\n>\n> All good things come to an end, that's just the way it's always been\n> It might not seem that fair to you but it is the start of something new\n> All good things come to an end that's just the way it's always been\n> It might not seem that fair to you but it is the start of something\n\n\n---\n\nEvery end is a new beginning.\n\n---\n\n[0] _I am a big 'Don't trust me'-fan. I tend to trust people who keep telling me that I shouldn't trust them._\n\n[1] _Oh, just realized that ~mostly_harmless is a territory that was founded by @elvismercury! It has unfortunately only seen 3 posts so far. I wonder if the name originates from the "1992 novel by Douglas Adams [which is] the fifth book in the Hitchhiker's Guide to the Galaxy series." ([source](https://en.wikipedia.org/wiki/Mostly_Harmless)). The [territory description](https://stacker.news/~mostly_harmless) at least also indicates that to be true:_\n\n> Trying to understand our place in the galaxy while being excellent to each other.\n\n[2] _This is somewhat related to the [Map of Consciousness](https://life-longlearner.com/how-to-measure-consciousness-using-the-map-of-consciousness-3-of-7/) by David R. Hawkins. At least I had to think about it when I wrote this._\n\n \N 3417 \N 106224 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.54799837463765 0 \N \N f 0 \N 0 234671047 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444427 2025-03-19 21:42:39.293 2025-03-29 22:39:49.742 \N Lyn Alden has a better take. \nhttps://primal.net/e/c96f7de9fba755d6e95d07b177ee8eaf72c1066576ac544f0845ee16072728db https://example.com/ 12261 443583 443583.444427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9499790876537 0 \N \N f 0 \N 0 244551352 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436104 2025-03-13 10:22:43.578 2025-03-29 22:39:49.743 \N Kudos to the spirit of experimentation. SN as a platform gives some tools, but that can't (and shouldn't) release people from the task of fucking around and seeing what they can accomplish using what's available to achieve their goals. This is a perfect example of that, thanks for elevating the discussion. https://example.com/ 16594 436100 436028.436100.436104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4516860025953 0 \N \N f 0 \N 0 9110694 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421840 2025-03-02 03:04:53.529 2025-03-29 22:39:49.743 \N A small example but I did a web application for a client that is the main support of their business in the Backoffice and this was in 2019, i still didn't ask them all the money for my work and i pay the monthly costs of hosting and i reply as soon as I can when they need help with anything. I don't want the money until i do all the changes that they wanted and I feel the app is with great quality. I want to provide quality and most of all honesty and assurance or trust that I will always be available to reply and help, and won't just go dark. https://example.com/ 13143 421720 421720.421840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7661706479287 0 \N \N f 1242686633 \N 8 62900582 0 f f \N \N \N \N 421720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413826 2025-02-23 13:42:40.039 2025-03-29 22:39:49.744 \N A blue whale's tongue is heavier than an elephant. https://example.com/ 21734 413811 413791.413811.413826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.67723578709138 0 \N \N f 198033027 \N 1 122191072 0 f f \N \N \N \N 413791 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456526 2025-03-27 16:47:04.469 2025-03-29 22:39:49.744 \N ![](https://imgprxy.stacker.news/CfvVK7hE6FlDjCzo1HzFag514Av2rWuY7weGCXTGZ10/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0YxelNvSTRhTUFFUEQ3UD9mb3JtYXQ9anBnJm5hbWU9c21hbGw) https://example.com/ 2056 456525 456525.456526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.04699732551195 0 \N \N f 0 \N 0 184498831 0 f f \N \N \N \N 456525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414295 2025-02-23 19:36:35.683 2025-03-29 22:39:49.744 \N This is my imagined setup:\n• Families run their LN nodes on their home router / server\n• The family LN node will serve multiple family members each having their own accounts, wallets and funds\n• The node will have only a few channels (3-5) to most used services, such as their employer, to an online merchant, and maybe their communication provider, family friend\n• These channels are open for years, similar how you get a credit card and then you stay with that bank for years\n• New channels are opened when the family needs more liquidity to receive or spend\n• The node is "watched" by 1-3 friend nodes (LND Watchtower or CLN Eye of Satoshi)\n• Each family member will connect to this node with their phone to use the network to receive and send SATs https://example.com/ 14731 414058 413854.414058.414295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5641231349151 0 \N \N f 75880169 \N 1 227005949 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404104 2025-02-15 14:52:36.45 2025-03-29 22:39:49.745 \N Day 264 of snailposting everyday 'til BTC hits $100k.\n\n...and 64 push-ups. (40 - 24)\n\n__@_'-' https://example.com/ 21794 404095 404095.404104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.134073105833 0 \N \N f 0 \N 0 20283604 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417468 2025-02-26 11:47:39.695 2025-03-29 22:39:47.601 Meme Monday: Best Bitcoin Memes Earn Sats | Sponsored by Zap.meme Time for Meme Monday sponsored by [Zap.meme](https://zap.meme/memes/top)!\n\n![logo-md.png](https://m.stacker.news/14968)\n\n[Zap.meme](https://zap.meme/memes/top) is a brand new meme platform (currently competing in the PlebLab's Top Builder competition) where you can create and share memes and emojis, and earn Bitcoin!\n\nLast week's Meme Monday winner sent in [this meme](https://stacker.news/items/405041), and this week we have 85,000 sats up for grabs:\n- 50,000 sats for 1st place \n- 25,000 sats for 2nd place \n- 10,000 sats for 3rd place\n\nThe winner will be the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow, and 2nd and 3rd place finishers will be determined by the @zapmeme team.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 12946 \N 417468 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.2989922618639 0 \N \N f 133463279 \N 1 198532339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417574 2025-02-26 13:22:38.085 2025-03-29 22:39:47.602 A pleb’s journal to running BOLT12 with CLN, PART 1 If you are a pleb like me, and you like zapping sats over Lightning, but you are NOT technically savvy, **the last few years have been R-O-U-G-H**. \n\nI don’t know if anyone remembers, but back in 2020-1, there was huge momentum with self-ran LND nodes, hosted over Umbrel when they initially launched. There were other node-in-one services around as well, like MyNode and a bunch of other ones, all equally good. We were all tinkering and opening channels with each other, there was real buzz and excitement around it. It felt like what ordinals was like a few months ago. \n\nThen, it allegedly turned out LND was not on our side, and had the WEF pulling strings, despite their vehement denial. So, like any responsible pleb, I closed all my channels, removed LND and the whole stack of apps, and gave them the middle finger. \n\n**But the problem remained.** How to use lightning? I tried running CLN (used to be c-lightning), but back then they did not have any implementation with the node services, so unless you were to spin up your own node and build every piece software from scratch from source, you simply had no choice but to go with wallets like Phoenix. I had never opened github in my life, much less interface with command lines nor compiled anything from source. That was a no-go. So I ran to Phoenix.\n\nPhoenix was not ideal, but at least it was non-custodial. Besides, you did not have to manage channels, a win-win according to my lazy self. ACINQ, the company that runs Eclair and Phoenix, seemed to be advancing the right tech, like incorporating splicing and announcing their intention to have BOLT12, something LND is still dragging their feet about today. CLN eventually launched a GUI app for the node-in-one services. And it looks great, but to this date, it doesn’t have a one-click backup option, which is why I didn’t feel safe putting my corn on there. So yeah, I got really comfortable and complacent.\n\n**Well, we all know what happened next.** First, Wallet of Satoshi, then Phoenix voluntarily left the US, while all the mixing services got shut down. And this is just the first salvo. Things are only going to get more draconian from here, or has the potential to be. They are coming for everything they can put their chokehold on, including things that need centralized servers like LNURL. It was naive to think we could rely on 3rd party-ran lightning nodes, and the bankers would just take it sitting down. \n\n**There is no choice left. Much like the Fellowship of the Ring, which unsuccessfully tried the path South to Rohan, then was equally foiled over the frigid Pass of Caradhras, there was only one option left: The Mines of Linux and the creatures hiding beneath the shadows of the Command Line Interface (CLI).**\n\nIn Part 2, I will list a compilation of everything you will need to build a node from scratch, compile most everything from source, with step by step instructions from the many wonderful developers and shadowy supercoders out there. I am not saying that any competent monkey could do it, but it's close enough. Remember, Gandalf is victorious, sort of. And once your are done, you can start using BOLT12 right away; it has been fantastic to receive my mining rewards over BOLT 12. So if you are mining with Ocean, you have extra incentives. \n\nTo be continued... \N 17212 \N 417574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.4347160433938 0 \N \N f 153905393 \N 1 202941964 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448449 2025-03-22 15:52:40.766 2025-03-29 22:39:49.745 \N Pirating? People think it's like scamming. https://example.com/ 1237 448142 447892.448142.448449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5521380583278 0 \N \N f 0 \N 0 97119910 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430965 2025-03-09 14:37:08.736 2025-03-29 22:39:49.745 \N This site is my entire life. I literally have nothing better to do or anything I'd rather do. https://example.com/ 16309 430633 430626.430633.430965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.60185777447232 0 \N \N f 0 \N 0 16825391 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424357 2025-03-04 02:37:40.552 2025-03-29 22:39:49.746 \N Dang, what a thought-provoking post.\n\n> If I'm honest, part of how I parent is shielding my kids from the harshest consequences of their actions, giving them the chance to learn how to be good people through trial and error. The hardest part of parenting is figuring out which consequences to let your children bear.\n\nIf you didn't know it, you may be interested to learn that there's a whole scholarship of play, which of course means that someplace they have to define what _play_ actually entails. One thing that's pretty consistently in there is that play is a way of being that allows you to _try things out_. To explore, to do shit, and to be shielded to some extent from the consequences of action, so that you can learn without being destroyed.\n\nIt is illustrative, I think, to examine what happens when people -- not just kids -- are deficient in play. They become ... twisted, stunted. Sometimes sociopathic. Turns out that play really, really, really matters. That so many adults have forgotten how to play is both evident, from looking around, and sobering, given these facts.\n\nAnyway, I don't know when and to what degree your kids should soak in the consequences of their actions, but I know they're lucky to have a dad who wrestles with the question. https://example.com/ 14168 424235 424235.424357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5804884175907 0 \N \N f 209044928 \N 1 153999933 0 f f \N \N \N \N 424235 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444317 2025-03-19 19:28:54.514 2025-03-29 22:39:49.746 \N Morning stackers. This is an exciting time to be part of this nutty adventure. \n\nI'd be curious about early thoughts about territories -- my mind is kind of spinning by the implication of it all. https://example.com/ 21119 444305 444168.444305.444317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7766737930479 0 \N \N f 15984274 \N 1 12952809 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448924 2025-03-23 01:18:39.1 2025-03-29 22:39:49.746 \N Damn I just unlocked the power of SN. Went to go post a link the site noticed it was a duplicate. So I just boosted that post so more people can see it. 🤯 https://example.com/ 20614 448802 448802.448924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9381308785917 0 \N \N f 0 \N 0 43833079 0 f f \N \N \N \N 448802 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422798 2025-03-02 17:41:44.621 2025-03-29 22:39:49.746 \N Me riding into the Stacker Saloon at lunch as a break from doing math\n\nhttps://imgprxy.stacker.news/1UTijV2M4Avart-cuYtt4saM2ma3na32sdFw-3f0vdw/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYS50ZW5vci5jb20vZXRDMUgxOFA3UElBQUFBZC95ZWxsYXdvb2QteWVsbGFmZWxsYS5naWY https://example.com/ 17365 422792 422673.422792.422798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.58413094839446 0 \N \N f 0 \N 0 130936597 0 f f \N \N \N \N 422673 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410704 2025-02-20 16:16:43.405 2025-03-29 22:39:49.747 \N Day 244 of snailposting everyday 'til BTC hits $100k.\n\n...and 44 push-ups. (20 - 14 - 10)\n\n__@_'-' https://example.com/ 15536 410698 409787.410698.410704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6746252499034 0 \N \N f 0 \N 0 227463566 0 f f \N \N \N \N 409787 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424059 2025-03-03 19:58:36.125 2025-03-29 22:39:49.747 \N I think the predictability could be gamed, which is probably why the randomness was introduced to begin with. If you have certain strategies to game the system, it’s inherently a gamble if you don’t know which reward type is going to be chosen on a given day. \n\nI trust k00b and co to find the right balance, I just wanted to share a suggestion. https://example.com/ 19484 423955 423955.424059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2783498030437 0 \N \N f 0 \N 0 133851082 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404356 2025-02-15 19:52:16.574 2025-03-29 22:39:47.602 💥 JABBB #05 :: Bitcoin Stacker News \n##### _Welcome back, [as promised](https://stacker.news/items/693426#previous-approach), to our weekly `JABBB`, **Just Another Bitcoin Bubble Boom**, a comic and meme contest crafted for you, creative stackers! If you'd like to learn more, check our welcome post [here](https://stacker.news/items/480740/r/Design_r)._\n\n- - - \n\n### This week sticker: `Bitcoin Stacker News`\nYou can download the source file directly from the [HereComesBitcoin](https://www.herecomesbitcoin.org/) website in [SVG](https://www.herecomesbitcoin.org/assets/stacker-news.svg) and [PNG](https://www.herecomesbitcoin.org/assets/stacker-news.png).\n![](https://m.stacker.news/54147.png)\n\n### The task\n> Starting from this sticker, design a comic frame or a meme, add a message that perfectly captures the sentiment of the current most hilarious take on the Bitcoin space. You can contextualize it or not, it's up to you, you chose the message, the context and anything else that will help you submit your comic art masterpiece.\n\n> Are you a meme creator? There's space for you too: select the most similar shot from the gifts hosted on the [Gif Station](https://giphy.com/herecomesbitcoin) section and craft your best meme... Let's Jabbb!\n\n- - - \n\nIf you enjoy designing and memeing, feel free to check our [JABBB archive](https://stacker.news/Design_r#jabbbs--just-another-bitcoin-bubble-boom--comic--meme-contests) and create more to spread Bitcoin awareness to the moon.\n\nSubmit each proposal as separate comment on the thread below, bounties will be distributed next week together with the release of next JABBB contest. \n\n₿e creative and have fun!\n\n- - - \n \N 12951 \N 404356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.02794377688915 0 \N \N f 304424106 \N 2 36149077 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 222172 2024-08-28 04:13:35.183 2025-03-29 22:39:47.602 MT Gox Coins on the Move Looks like Mt Gox distributions might be beginning. Short term who knows but long term this is good for Bitcoin. Just another piece of FUD that will be conquered. \n\nIt is my understanding that the two largest creditors are riding it out until all the bankruptcy proceedings are done which could take a few more years. \n\nhttps://x.com/_checkmatey_/status/1795294691858239663?s=46&t=opFMGEQXdk09WvPsXf4z6g \N 8059 \N 222172 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.0434382884745 0 \N \N f 0 \N 0 160034208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451432 2025-03-24 14:47:14.422 2025-03-29 22:39:49.747 \N I have been around animals my whole life. When I was a kid we had lots of pets. I always enjoyed them, but it wasn't until later that I learned their real value to me. \nIn my 20s I was unmarried, with no serious girlfriend, and living in an apartment right near my job. I was a young lawyer with enough money in my pocket to get myself in trouble. I had lots of fun with my buddies, drank way too much, and was staying up late most nights. I started having trouble getting up in time for work. I was losing focus and gradually spiraling downhill. \nIt occurred to me that I needed to be responsible for someone or something other than myself. I decided I needed a pet. I started with a fish tank. That was easy. Just feed them and change the water occasionally. Then I got a dog. That changed everything. She was my responsibility. I had to walk her, feed her, train her, get home early from wherever I was, etc. Her schedule became my schedule. \nI'm not saying there's a direct connection, but my life got better. My relationships were more stable. I eventually met my wife. We started a family. We have kept many pets together. We're older now. Many people our age don't want pets because it's more difficult to travel. It's true, but we think it's worth the tradeoff. https://example.com/ 15273 450701 450240.450701.451432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7300179106209 0 \N \N f 0 \N 0 249960867 0 f f \N \N \N \N 450240 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449019 2025-03-23 05:05:23.633 2025-03-29 22:39:49.747 \N Nice idea. Just got to be careful with certain types of bamboo.\n\nDon’t grow it near your house because it can pop-up anywhere, up through the floor or where you least want it.\n\nFrom what I gather it needs plenty of pruning. It’s strength is being able to grow super quickly, being strong & re-sporning from underground, but that can also be its weakness - if not prepared to actively stay on top of it https://example.com/ 20646 448341 447892.448341.449019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.89914091013272 0 \N \N f 0 \N 0 157002841 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407794 2025-02-18 11:42:17.835 2025-03-29 22:39:49.747 \N No one here will be surprised to hear that. What the hell are fees looking like? If I'm not mistaken, actual fees paid is not very transparent for the average user, but I could be wrong. I don't use the wallet. https://example.com/ 21383 407793 407790.407793.407794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1111258277058 0 \N \N f 0 \N 0 19161190 0 f f \N \N \N \N 407790 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448604 2025-03-22 18:19:44.106 2025-03-29 22:39:49.748 \N ![20231208_113017.jpg](https://m.stacker.news/7629) https://example.com/ 2233 448589 448589.448604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9487835850477 0 \N \N f 0 \N 0 216710536 0 f f \N \N \N \N 448589 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410197 2025-02-20 10:43:55.302 2025-03-29 22:39:47.602 Fiat Ruins Patronage Every rich person in a fiat economy is obsessed with money. Not inventions, not art, not new frontier exploration, but money.\n\nThese are the people that in a sound money economy would be funding inventors, artists and explorers to create and conquer. They don't because they are forced to run on a monetary treadmill.\n\nThese are the people that used to devote their leisure not to hedonism, but to the finer things that build civilization. They knew something about inventing, art and exploring because that's what interested them. And they knew at some level that they didn't have the talent to go that far. But they *could* recognize talent in those areas and funded the people that had the potential to make inventions, create art and explore further than they could. So they would put their money where their heart was.\n\nThis is the real model of patronage, of funding real progress. Instead, we have rich people giving money to charitable causes that are better at throwing parties than at helping people. Fiat money has ruined the engine that has built civilization. \N 1009 \N 410197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.190587604912 0 \N \N f 354781893 \N 3 71894460 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 399731 2025-02-11 15:58:02.055 2025-03-29 22:39:47.602 Bitcoin's network effects and grounding in {X} (The third post in the meta-experiment series of the Broken Money book club, part 5. Check out the [second](https://stacker.news/items/334042).)\n\nPeople talk a lot about btc's network effect; but imo, they don't talk enough about what network effects are built out of. Do network effects accrue by magic, or as a law of nature?\n\n> “Monies tend to have network effects based on salability. The more liquid, widely held, and widely accepted a certain type of money is, the more useful that money becomes to each user, and thus more people want to hold it and accept it. All else being equal, the more conversion points between bitcoin and goods, bitcoin and services, and bitcoin and currencies there are globally, the healthier the Bitcoin network is.” (p. 330)\n\nHere, Lyn's proposing that a money's network effects accrue as a function of what you can do with it -- the kinds of things you can [ground](https://stacker.news/items/274204/r/elvismercury) it in, to use philosophical language. So what's grounding btc's network effects?\n\nThe principal ground, from a price perspective, are the places where you can exchange btc for fiat. Coinbase gets a ton of hate, but Brian Armstrong [claims](https://twitter.com/brian_armstrong/status/1686596515765362688) to have onboarded more people to btc than anyone else, and I expect he's right. You don't have to like it, but if you bought btc at any point in the last, I dunno, ten years, then you should probably care a lot about having abundant fiat on and off-ramps. Exchanges are a centralized and fragile type of grounding, but Brian Armstrong is still your huckleberry.\n\nAnother expansive source of grounding would be a circular economy, where btc is grounded in all the stuff you can buy with it directly. The most developed (or perhaps only?) example of this is probably [Bitcoin Beach](https://www.bitcoinbeach.com/) (EDIT: recent [SN post](https://stacker.news/items/335077) by @TNStacker links to a timely update on BB.). I'm not sure how circular this economy actually is, as I assume that even in the best case the inhabitants of El Zonte need to buy goods from outside the btc economic zone, at which point they're converting into fiat again. \n\nThis, to me, seems a major issue. A person in El Zonte who has to spend most of his money buying physical goods from people who don't accept btc has limited ability to absorb btc capacity -- to provide a 'conversion point' for btc into things that people want to buy, as Lyn would say. \n\nTie flip side of that issue is an opportunity. People who already have functional levels of fiat could absorb a lot of excess btc capacity by discounting prices for their services when payment is rendered in btc. I described [a version of this](https://stacker.news/items/209706/r/elvismercury) a while ago. White-color workers whose inputs and outputs are informational would be the best candidates. In this case, btc would be grounded in the the kinds of things an information worker could provide.\n\nAre there are other non-exchange "conversion points" that could be low-hanging fruit to bootstrap btc's network effects? How could we increase btc's resilience and decentralization by grounding it in more things? \N 2195 \N 399731 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.5000706109012 0 \N \N f 213303838 \N 1 129918793 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 393176 2025-02-05 21:04:05.895 2025-03-29 22:39:47.603 How Our Messed-Up Dating Culture Leads to Loneliness, Anger and Donald Trump no email/paywall: https://archive.is/g4qdV\n\nWith the unnecessary Trump tie-in aside, which implies men are to blame for "our messed-up dating culture," the author concludes the culprit is our culture's double-standard. \n\n> Over the past 60 years, as girls and women have fought their way into classrooms and boardrooms, society has expanded its idea of womanhood accordingly, yet our definition of manhood has failed to evolve alongside it.\n\nThis is [a conclusion that I reached recently](https://stacker.news/items/647122/r/k00b?commentId=650033). Women have redefined what expectations men should have of women (well and good), but men haven't redefined what expectations women should have of men.\n\nThroughout the piece the author waffles on the source of the double standard. They begin by implicating culture heritage through fairy tales, appearing to stare past the fact that fairy tales persist because they dramatize something deeply true:\n\n> Hundreds of years after the Brothers Grimm published their version of that classic rags-to-riches story, our cultural narratives still reflect the idea that a woman’s status can be elevated by marrying a more successful man — and a man’s diminished by pairing with a more successful woman.\n\nThen acknowledges the context such fairy tales were crafted in:\n\n> Throughout much of Western literature, this alone qualified as a happy ending, given that a woman’s security and sometimes her survival were dependent on marrying a man who could materially support her.\n\nYet returns to claiming the male provider is mostly a social construct:\n\n> While so-called female gold diggers are an obsession of the manosphere, much of its content reinforces the male-breadwinner norm — tying money to manliness and women’s preference for providers to biology.\n\nAs far as I can tell, modernity hasn't just surprised our myths. Modernity has surprised what our biology expects. The male provider isn't a myth of culture or a coincidence of history. I don't think we can fix the double standard by changing women's expectations of men. I don't think men can, as easily as women have, change their expectations of themselves. https://www.nytimes.com/2024/11/30/opinion/dating-bro-culture-manosphere-trump-cinderella.html 21402 \N 393176 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 5.49096961810719 0 \N \N f 230623015 \N 1 181157432 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401690 2025-02-13 10:19:16.258 2025-03-29 22:39:49.748 \N I've been pulling some stats off SN this last few hours. \n\nAnalysing the top stackers but in a new way. Seeing who is top of the pops for 'sats per write' and who is the best 'conversation keeper' with their posts. Not sure how best to present all the tables & keep it in a readable format. Perhaps a vertical PDF. Will try and wrap it up for early next week. https://example.com/ 9166 401563 401516.401563.401690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7310022888965 0 \N \N f 32381385 \N 1 230262967 0 f f \N \N \N \N 401516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436091 2025-03-13 10:10:57.424 2025-03-29 22:39:49.748 \N Rough times. \n\nWifes in the hospital \nStill quitting nicotine \nFeeling hungry on the carnivore diet \nBunch of work piling up\nNot really anyone to talk to\n\nI'm thinking the solution is\n- Check up on my wife throughout the day\n- Eat some eggs and drink more coffee \n- Listen and zap wavlake music while knocking out the work \n- Converse with SN freaks and Nostritches\n\nWish me luck freaks. https://example.com/ 21119 436065 436028.436029.436031.436059.436065.436091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.53763420681491 0 \N \N f 651846265 \N 8 136086586 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:54:34.402 f \N \N \N 0 0 0 0 1 0 0 458318 2025-03-29 07:47:39.134 2025-03-29 22:39:47.603 Robosats Alert Bot for SimpleX **# Introducing the Robosats Alert Bot for SimpleX**\n\nHey everyone,\n\nGlad to make my fist post here! I am 🏛️TempleOfSats🏛️, a Robosats coordinator.\n\nI'm excited to introduce a new tool for those using RoboSats—a SimpleX bot that notifies you when an order meeting your specific criteria (currency, premium, payment method, and amount) is posted. This project is designed to uphold the privacy philosophy of RoboSats by leveraging the security features of SimpleX.\n\n## 🚀 Overview\nThis bot monitors RoboSats for orders that fit your requirements and sends notifications via SimpleX, ensuring your privacy. The bot checks for matches in the background and alerts you instantly when a match is found.\n\n## 📖 User Guide\n**1. Connect to the Bot** \nClick [here](https://simplex.chat/contact/#/?v=1-4&smp=smp%3A%2F%2FPQUV2eL0t7OStZOoAsPEV2QYWt4-xilbakvGUGOItUo%3D%40smp6.simplex.im%2F1hxVU2uzv58rmvUTWbzwqYzNwK1xHTjQ%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAdmTemke6RDWl1PS3RoHMkJ7U773pXb1o1HnlQ24wT3k%253D%26srv%3Dbylepyau3ty4czmn77q4fglvperknl4bi2eb2fdy2bh4jxtf32kf73yd.onion) to connect to the public instance of the SimpleX Chat Bot.\n\n**2. Getting Started** \nUpon connection, you'll receive a welcome message. Start by typing `/help` to see how to interact with the bot.\n\n![](https://m.stacker.news/45925)\n\n**3. Create an Alert** \nJust type `/new` and follow the prompts to set up your alert. The bot will guide you step by step.\n\n![](https://m.stacker.news/45928)\n\n\n**4. Receive Notifications** \nThe bot monitors for new orders that match your criteria. When it finds one, you’ll get detailed info about the order, including an onion link to place the order.\n\n![](https://m.stacker.news/45931)\n\n**5. Manage Alerts** \nView your alerts by typing `/list`. You can enable, disable, or delete them as needed. Alerts have a 7-day lifetime by default, but you can extend this with `/extend` command.\n\n![](https://m.stacker.news/45932)\n\n\n\n## 🛠️ Self Hosting & future of the project\nEveryone is encouraged to self-host this bot, following the guide on the Github repo: https://github.com/lft3t8bx/Robosats-Orderbook-Alert-Bot-for-SimpleX-Chat ! \n\nSelf Hosted version of the project could further extend the capabilities of the project.\nFor instance, an integration with the excellent [roboauto project](https://github.com/jerryfletcher21/roboauto) could allow users to make/take orders and automatically pay bonds / submit invoice through the self hosted lightning node.\n\n\n\n## 🥚 Easter Egg\nFor those who made it this far, type `/satoshi` to get a random quote from Satoshi Nakamoto!\n\n---\n\nThis bot is a great way to stay on top of RoboSats orders while maintaining your privacy. If you’re interested in self-hosting or have any questions, feel free to reach out!\n\nHappy trading! \N 964 \N 458318 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.9505087580957 0 \N \N f 11627179 \N 1 247085634 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 106223 2024-01-01 00:29:17.364 2025-03-29 22:39:47.603 Bitcoin during War Times. So let me understand this. Bitcoin should be the first option when War starts. \n\nMy ancestors escaped from Genocide 100 years ago and could only took a few gold coins with them. They lost everything in between.\n\nToday, I think about the same. If there is war, the first thing to do is to buy Bitcoin. You travel to any place and when you arrive you have your bitcoins with you. No other thing can give you this possibility. \n\nThen, why at the first news of a drone, bitcoin price drops? \nI've read answers like countries like China, Russia, Iran are big holders, and in time of crisis they sell big to finance the army. Is that so? \n\nIn the 15 years of Bitcoin history there weren't all out wars (except in Ukrain) but some worlwide events like Covid or Tsunamis. \n\nStill too early to study the effects of a War in Bitcoin, but I am lost about this drop under the fear of a new war.\n\n \N 20152 \N 106223 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.3501117074223 0 \N \N f 0 \N 0 240593285 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 145488 2024-03-19 06:27:22.099 2025-03-29 22:39:47.603 Response to 1,000+ Qubit Quantum: The End of Cryptocurrency \nAlso published to SubStack where I will add edits if needed: https://open.substack.com/pub/antic/p/response-to-the-end-of-cryptocurrency\n\n\nA friend of mine sent me this video, explaining why the Atom quantum cluster spells the end of cryptocurrency and bitcoin, which I hate to link because I don't want to drive traffic and engagement to FUD, but for context, here it is: https://www.tiktok.com/t/ZT8Sb4qC3/\n\nThis video in particular struck me because the author knows just enough about these topics to sound like he knows what he’s talking about and to convince people like my friend who don’t know the technical details enough to see why he’s wrong.\n\nIn this case, he's ignoring two very important things that I can hopefully explain without a lot of technical detail:\n\n1. There is a COST to running these quantum computers that must be lower than the profits gained from the attack\n2. There is a significant difference between simple public/private key encryption and the many ways payments can be secured on the bitcoin network (like P2SH/multisig)\n\nHe's right that some cryptocurrencies are going to be adversely affected by quantum compute. I won't argue for random cryptos that are most certainly broken, and some aspects of Bitcoin may need to upgraded eventually, but I can explain why he's completely off the mark on what he says about Bitcoin specifically.\n\nIf you are simply talking about public/private key encryption, sure there are ways that quantum poses a risk, and there are mitigations already being rolled out: https://cloud.google.com/blog/products/identity-security/why-google-now-uses-post-quantum-cryptography-for-internal-comms\n\nThere was a very old way of spending bitcoin called P2PK (pay to public key), which allows bitcoin to be sent to the public key itself, but current bitcoin addresses, in the worst cases, use P2PKH, or pay to public key hash, which does **not** expose the public key until the moment funds are sent FROM the address and only while they sit in [the mempool](https://mempool.space/) for processing. If you do not reuse addresses, and you have never spent funds from a P2PKH address, the world does not know the public key. P2PKH is considered _legacy_, but there is still a TON of bitcoin on the ledger attached to these addresses, so let's dig into them a bit.\n\nHowever, with bitcoin, you generally do not know the public key behind an address. Let's say you want to try to steal the `530 BTC` that are currently sitting in this address: `1111111111111111111114oLvT2`\n\nWell, that looks like a really simple address to crack, right? Look at all those 1's! Let's explore that. First, _this is not the public key_, so you cannot just use Shor's algorithm with a sufficiently large quantum array to factor it to the private key because this isn't even the right number to factor. And once we get there, it's another huge task for quantum that requires significant qubits that don't currently exist on the market, [about 2,330](https://research.kudelskisecurity.com/2021/08/24/quantum-attack-resource-estimate-using-shors-algorithm-to-break-rsa-vs-dh-dsa-vs-ecc/).\n\nThis bitcoin address is a `ripemd160` hash of the `sha256` hash of the public key. So if you want to use Shor's algorithm to crack it, you first have to use Grover's algorithm to break sha256, and ripemd160 in two other runs of your quantum cluster--more costly. But let's assume that you can break these things in a positive cost to benefit way and go over the steps of how the address was created and how you would have to attack it. And note, that bitcoin payment addresses are a little more complicated than just these hashings of the pub key but the other steps in P2PKH are simple enough not to require major compute: https://www.oreilly.com/library/view/mastering-bitcoin-2nd/9781491954379/ch04.html\n\nThis is (roughly) how the address was created (giving us some variable names so we can discuss this without using word soup).\n\n```\nshaPub = sha256(pubKey)\naddress = ripemd160(shaPub)\n```\n\nSo the steps to reverse this to find the `pubKey` look like this:\n\n1. Spin up your world's largest quantum compute datacenter to use Grover's algorithm to get the ripemd160 source of `address` (the value that you had to pass into ripemd160 hash in order to get a result of `1111111111111111111114oLvT2` -- this input value is `shaPub`.\n2. Use that same expensive cluster to then get the sha256 source of `shaPub` (what you have to pass into sha256 to return the value of shaPub), this will return the `pubKey`\n3. Use that cluster again with Shor's algorithm to factor `pubKey` to find `privKey`\n4. Use a regular computer to sign and issue a network transaction to steal the funds\n5. Hope that the owner of that address isn't programmatically watching the mempool for transactions using keys they own and that they don't have automation in place and miners setup to replace the transaction by fee and move their funds to a different address before your transaction can go through (they most certainly are watching and have this automation and are running their own miners because you are attacking a very large player).\n\n## The Cost\n\nSo this attack requires running several operations on large quantum compute clusters, which are NOT free to run, nor are they entirely stable yet. The current cost of running quantum compute is non-trivial. And there are major differences between physical and logical qubits, quantum annealing, etc--you need to really research this stuff if you want to plan an attack. If you think you can run the world's largest quantum computer cluster at a cost below the reward of what you are attacking, you might want to rethink your plans. You could spend millions of dollars trying to hack this key and not get to the result. But maybe a bigger address is vulnerable like `12ib7dApVFvg82TXKycWBNpN8kFyiAN1dr`, which has $1,078,252,625 worth of bitcoin in it as of this writing—surely you could spend less than $1B to run this attack, right? They are also relying on the simple P2PKH security method, so the process is the same. The owner of this billion dollars worth of bitcoin clearly doesn't think that the cost-to-benefit ratio exists yet for quantum to be a threat to these addresses--and you will absolutely see that as quantum grows, balances will move out of P2PKH that exceed the cost of attack.\n\nBut not everyone will or even can move their bitcoin from P2PKH--Satoshi mined a LOT of bitcoin to addresses early on and very likely Satoshi is not around, has lost those keys, or never saved them to disk because the mining was experimental and the payment addresses may have been programmatically generated and thrown away.\n\nThe video author makes the argument that attackers are going to steal just a little bit of bitcoin from people's wallets (not enough to be noticed). How absurd is that? Bitcoin isn't 49 cents worth of pennies floating in your pocket that you won't notice turned into 48 pennies, or a rounding error bug in your bank account stealing fractions of a cent. Bitcoin owners watch the contents of their wallets programmatically. They will know as soon as any amount of satoshis are moved from their wallets. This idea of an attack assumes that the cost of quantum compute is free and that nobody will notice the security is compromised and it's somehow worth it to just take a little bit. That's absurd.\n\nWhy would you try to steal a tiny bit of someone's bitcoin, when you could crack Satoshi's keys and sign messages to the internet AS SATOSHI? You would effectively be the CEO of a $648B company. Additionally, nobody would be able to contest you on the rights to the funds because nobody else has these keys. You could target `1NSPqTZae3bCdiCNWSbkE4qBxfqjybA93S`, one of the early block reward addresses (P2PKH) and then just sign messages to the internet saying things about bitcoin or other cryptocurrencies or about satoshi that would MOVE MARKETS. You would be immensely powerful. Stealing pocket change not only would be noticed as soon as you did it, it would be the most absurd usage of spending the resources to break P2PKH.\n\n\nAdditionally, there are about 4 million bitcoin that are currently assigned to public keys or to P2PKH sources that have been used multiple times. These are the easiest target for quantum to attack since you don't need to do the multiple Grover's steps and only need to use Shor's to factor the public key into the private key. When the cost of running this attack becomes a positive equation, we will see these funds move. These are the canary in the trillion dollar bitcoin mine.\n\nIn theory, and attacker could also try to skip the Grover's steps and only use Shor's by attacking transactions as they wait in the mempool, but this would require running the quantum attack during the window where funds wait to be processed. In order to achieve this rapidly, you need a MASSIVE quantum compute cluster. This would take 317 × 10^6 physical qubits (or 317,000,000 qubits, far more than Atom’s 1,000+ cluster) to break the encryption within one hour. [See Webber et al](https://pubs.aip.org/avs/aqs/article/4/1/013801/2835275/The-impact-of-hardware-specifications-on-reaching)\n\n## Higher Security\n\nSo we've shown how to reverse a P2PKH into a pubKey and hope that you can afford to Shor's algorithm your way to the private key, but this method is not so easy when you use other methods of security like P2SH (script addresses that start with a `3`), P2TR (taproot, starting with `bc1p`). These newer systems offer multiple layers of security that require a lot more than simply identifying a single public key and factoring the private key to match. All you really need to do to not be eaten by the bear is to run faster than all the people who are lazily eating a picnic behind you. Proper self-custody of bitcoin and key management is hard. It’s not for everyone.\n\nThere are several valid ways to add even more security if you are concerned about quantum attacks:\n\n1. The simplest: don't assign large balances to a single address (don't be a valid cost-to-attack target). With an HD wallet, you can create as many addresses as you want and keep all of them below 1 BTC. The cost to attack you will not be worth it vs attacking someone else for the foreseeable future.\n2. Use multisig, requiring the signature from multiple private keys to spend funds--now they have to identify multiple keys that go with each other in order to move the funds, which turns this into an astronomical problem. \n3. Watch the large addresses and see where the money flows. You can be sure that major companies like Coinbase and Binance are smarter about this than you are and if you are storing your bitcoin in the same way they are but with smaller address balances (not in the 1000+ per address range), you are probably safu with your self-custody in terms of quantum risk (you may have other problems).\n4. Not typically recommended (and I’ll probably get destroyed in the comments by the hardcore folks), but if you really don’t think you can keep up with the security requirements of having sovereign control of your finances, maybe just put your bitcoin in Coinbase or CashApp and let them worry about quantum resistance—maybe it’s too soon in the adoption curve for you to worry about this. \N 17533 \N 145488 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.6899517381177 0 \N \N f 0 \N 0 216698799 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 232964 2024-09-10 09:29:24.144 2025-03-29 22:39:47.603 Wormhole attack in Lightning explained simply in 4 slides ![](https://nitter.at/pic/orig/media%2FFxtOJGmXwAE3lI9.jpg)\n![](https://nitter.at/pic/orig/media%2FFxtOJdBXwAY6EkG.jpg)\n![](https://nitter.at/pic/orig/media%2FFxtOJ2EWYAIG2sJ.jpg)\n![](https://nitter.at/pic/orig/media%2FFxtOKRpWIAIC9tc.jpg)\nBy BTCillustrated\n \N 946 \N 232964 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.96951705515986 0 \N \N f 0 \N 0 206239286 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 23:34:18.168 f \N \N \N 0 0 0 0 0 0 0 434959 2025-03-12 11:18:09.923 2025-03-29 22:39:49.748 \N Excellent article. I haven't literally started crying yet, but I've had a few "tears of homecoming" moments here.\nAlso, I appreciate your use of the new link description text block https://example.com/ 8570 434955 433883.434955.434959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3915449151039 0 \N \N f 0 \N 0 4462285 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435000 2025-03-12 11:53:04.594 2025-03-29 22:39:49.749 \N [![you-get-what-you-deserve.gif](https://i.postimg.cc/zfg1ZssF/you-get-what-you-deserve.gif)](https://postimg.cc/v1bK5NH4) https://example.com/ 654 434990 434990.435000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4795511350577 0 \N \N f 176738447 \N 2 81392108 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N 2025-03-19 05:56:17.161 f \N \N \N 0 0 0 0 1 0 0 435109 2025-03-12 13:21:20.487 2025-03-29 22:39:49.749 \N Okay, 3 things:\n\n- that's probably one of the best written FAQ I've ever read. Answers every question in an absolutely unequivocal fashion, and directly addresses questions that users are the most likely to ask first\n- congrats for taking this path. It'll have its challenges, but Cowboy Credits might be the glue that make it work for everyone in the end, and I'm really interested in watching how it unfurls\n- Nov. 5th is a very, very good choice of date for such a release.\n\nCowboy hats off! https://example.com/ 18494 435106 435017.435106.435109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.46960970631625 0 \N \N f 0 \N 0 127123245 0 f f \N \N \N \N 435017 \N 0 0 \N \N f \N 2025-03-19 07:12:16.792 f \N \N \N 0 0 0 0 0 0 0 435164 2025-03-12 14:03:56.537 2025-03-29 22:39:49.749 \N - Setting up another dedicated node for a project. This time a CLN using embassyOS on a old Ubuntu.22 laptop, first experience pruning BTC core. Surprised by how easy has been to setup and install it on a VM... \n- playing around with [Parmanode](https://github.com/ArmanTheParman/Parmanode) (so funny) \n- and trying to understand the process to setup something like [this](https://twitter.com/GBKS/status/1648206373581094914) https://example.com/ 15843 435142 435142.435164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0708910618077 0 \N \N f 211307981 \N 1 233790855 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436526 2025-03-13 16:08:14.107 2025-03-29 22:39:49.748 \N I am (2): I know the "dangers" of custodial for my sats, but I know how to mitigate that aspect. If you really know how to manage your custodial accounts, could be a really good decoy to protect your privacy.\n\nI personally consider all those in the (1) category too extreme. They are right in the essence but in practice they know almost nothing how to deal with non-KYC custodial accounts and how to take advantages of these.\n\nAs I told you many times: convert SN accounts into lndhub accounts.\nIn that way many SN users could just import their lndhuib SN account into Zeus or Bluewallet app and use it as any other LN wallet.\n\n### Please consider doing this: SN lndhub accounts and you do not have to deal anymore with wallet app and all that shit. You just pass the responsibility to the user over his own sats.\n\nYes, is custodial. So what? Is just for meaningless amount. Who is keeping more than a coffee or a taxi into their custodial account is a total noob and will get what they fucking deserve.\nKeep into a custodial account EXACTLY how much you want to spend in a certain time. You know better. https://example.com/ 4754 436494 436494.436526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9774513557258 0 \N \N f 0 \N 0 68062936 0 f f \N \N \N \N 436494 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435681 2025-03-12 21:49:14.491 2025-03-29 22:39:49.748 \N You gave me the push. Thank you. https://example.com/ 658 435457 435457.435681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6197989585146 0 \N \N f 0 \N 0 81693456 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 2025-03-19 15:38:25.207 f \N \N \N 0 0 0 0 0 0 0 443707 2025-03-19 13:26:14.566 2025-03-29 22:39:49.748 \N @ekzyis is working on his prediction market site so we can bet on the 100k bitcoin price date. https://example.com/ 21131 440663 440663.443707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2041561745786 0 \N \N f 0 \N 0 233851746 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443688 2025-03-19 13:18:05.845 2025-03-29 22:39:49.749 \N Day 199 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 21349 443593 443593.443688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0356811333716 0 \N \N f 0 \N 0 21791761 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448370 2025-03-22 15:13:55.547 2025-03-29 22:39:47.604 I have drank Ayahuasca over 100 times, AMA I have been sitting in Ayahuasca ceremonies for 7 years now. I have participated in close to 100 ceremonies. When I showed up to my first ceremony, I thought it was all nonsense. I was not spiritual in any sense. I thought people in the space were crazy along with their strange songs and clothes. Now, I have spent a good amount of time in Peru learning from shamans. I also have sat with many groups here in the states. Ayahuasca has profoundly changed my life and helped me in my healing. I love sharing about my experience of working with this powerful tool. \n\nAsk me anything \N 19527 \N 448370 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.23171450598892 0 \N \N f 0 \N 0 214047512 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:40:35.545 f \N \N \N 0 0 0 0 0 0 0 448433 2025-03-22 15:47:39.092 2025-03-29 22:39:47.604 Is it time to pay with bitcoin? I meet quite a lot of people who understand the meaning of bitcoin but don't want to pay with it. They are fans of bitcoin, they try to have as much of it as possible, but they don't want to use it to pay for various reasons. This may sound logical to you, but I believe that there is often a flawed reasoning behind it.\n\n## There are many reasons not to pay with bitcoin\n\n1. **Don't know how to account for the transactions or don't want to pay additional taxes?** \nChanging terms and unfair rules are annoying. I understand if such complications deter you from paying. However, bitcoin was created so that you no longer have to ask anyone for permission.\n2. **No place to pay?** \nThe number of places where one can pay is slowly increasing. But nowadays, I would say it's more of a lack of demand from customers. If this is still the reason, let your merchants know. Look at [map](https://btcmap.org/map) and use bitcoin where you can.\n3. **Is it inconvenient?** \nUsing bitcoin is getting easier every day. New tools are being created all the time. However, if you don't feel like exploring different apps or it's too much work for you for some other reason, you may not be ready to pay with bitcoin yet.\n4. **Are you concerned about volatility?** \nIt is not desirable for prices to be fixed, but it is true that too much volatility can be uncomfortable. Sometimes you pay a little more, sometimes a little less. Mentally it can be unpleasant at first, but over time you speculate less and less. Short-term fluctuations are irrelevant in the long run.\n5. **Are you low on bitcoin?** \nThis common problem can be solved, for example, by simply buying more bitcoin.\n6. **Does it cost too much to get bitcoin?** \nIf you save something in bitcoin once in a while, that cost still exists. The only question left is how much bitcoin to acquire.\n\n### How to acquire bitcoin for a fixed or even no fee\n\nWe often also pay a fee expressed as a percentage from the exchange of fiat for bitcoin. So if you buy more bitcoin, you also pay a larger fee. Figuratively, this fee makes it more expensive to potentially pay with bitcoin. However, you still have several options to avoid such a fee.\n\n1. **Be paid with bitcoin** \nTry asking your employer, or find a new job at [stacker.news](https://stacker.news/~jobs/r/hynek)\n2. **Offer goods and services for bitcoin** \nWhenever you sell something, you can demand bitcoin again. Whether you're settling bills with friends for payment at lunch or offering goods at a marketplace. You can always use bitcoin.\n3. **Try bitcoin mining** \nIf you have spare capital, you can invest in mining machines to earn a regular bitcoin income.\n4. **Find a bitcoiner** \nJoin a community [in your area](https://twentyone.world/) and meet other bitcoiners. You might find a person who already has bitcoin income and will be happy to exchange some of it for you - at least until they can pay everywhere with bitcoin.\n5. **Export for a fixed fee** \nSimilarly, you can vexl with the [Vexl](https://vexl.it/) app. You can try to demand a fixed-fee exchange so that a larger purchase doesn't represent an additional cost to you. \n\nThere are a lot of reasons not to pay with bitcoin, and few people can overcome them painlessly. So in these cases, I can understand why you don't pay with bitcoin. \n\n## Gresham's Law is not a good reason to use fiat\n\nBut you may have also heard that bitcoin is better than fiat, so you'll save it and get rid of the worse money → i.e. fiat. This phenomenon is known as Gresham's Law, although it was probably first enunciated by [Nicolas Copernicus](https://stacker.news/items/219030/r/hynek). \n\nI have the impression that this principle has made at least one halving generation a little crazy with the notion of [HODL](https://knowyourmeme.com/photos/1325563-hodl). The idea of HODL is that you don't speculate, play slots and buy shitcoins. It could also be loosely interpreted as `be thrifty`. But sometimes you still need to buy something - like food, for example. Under the Gresham's Law interpretation, you should pay with the worst money you have. Such grain could be used to pay, and in many countries it still has a worse ability to hold value than fiat. Still, you'd rather pay with fiat.\n\n### Why don't you pay with grain?\n\nAgain, you probably have several reasons.\n\n1. **You don't carry grain with you** \nNot only do you not carry it with you. First of all, you don't want to store it. You don't even want to speculate on the price of grain. Grain is simply worse money, so you don't want to have it in the first place. Nor do you want to hold fiat if you come to the conclusion that it's worse money than bitcoin. \nThat view doesn't have to be all or nothing. Feel free to have some grain, but don't tell me you want to use it for payment. That only applies in the very short term when you need to get rid of it.\n2. **Traders accepting grain are weird** \nEven the method of payment can reveal something about the merchant. What would you think of a person today who gets paid in grain? If someone demands an outdated form of payment, you can easily be put off. Conversely, a business with new options can become a [love brand](https://juraj.bednar.io/en/blog-en/2022/11/04/become-a-bitcoin-%e2%9d%a4%ef%b8%8f-brand-why-accept-bitcoin/) for people.\n3. **Paying with grain is insulting** \nYou are showing that you don't respect the merchant by offering an inferior form of payment. \n4. **No one accepts grain anymore** \nToday, virtually no merchant will accept grain as payment. In fact, the so-called Thiers Law works in exactly the opposite direction against Gresham's Law. This basically says that even a merchant has his limits and if the money offered is too bad, he will simply refuse it. Whoever has grain ready for payment at that time will not pay with it anywhere. Fortunately, he could at least use it for consumption. But what do you do with a worthless fiat?\n\n## Don't regret spending bitcoins\n\nImagine buying two pizzas many years ago and paying with bitcoin. If you had done it like Laszlo Hanyecz did on May 22, 2010, it would have cost you a total of 10,000 bitcoins. As of August 14, 2023, you could have 2,940,000,000 USD instead. (Almost three billion 😱)\n\nWould you be sorry you used bitcoin to do it back then? In his own words, Laszlo Hanyecz never regretted it because the pizza was really good. I used to think he was just bragging, but it must bother him now. Nowadays, I practically don't see why paying with bitcoin should bother him directly.\n\nIf we regret spending bitcoin, it's usually because we expect its value to increase. However, the payment itself is just a transfer of value, and from that perspective it doesn't matter what form we use. Laszlo simply spent the value of two pizzas. In the same way, he might regret every crown he did not exchange for bitcoin that day. Since it's abstract, it makes us feel less angry, but in the same way that Laszlo lost money years ago, so did all the people in the world who didn't buy bitcoin that day. The only difference is that we don't know their names.\n\n## Why pay with bitcoin instead\n\n1. **Better privacy than credit cards** \nYour bank account information is not private. You never know who is watching all your transactions. Bitcoin payments via Ligthning Network are not perfect in this respect either, but the level of privacy is very high.\n2. **Building an efficient and moral ecosystem** \nFor example, during the covid, a lot of businesses were banned from doing business. You may find this justifiable, but you may not agree in all cases. Bitcoin allows you to cooperate even when someone doesn't like it. The more people know how to use bitcoin, the more options you will have. Every payment you make supports this free network.\n3. **Meeting interesting people** \nBitcoiners are often very intelligent and inspiring people. Since bitcoin payments are still very rare, virtually every time you make a payment there will be a new conversation, again cementing you in a growing community.\n4. **Trying new technologies** \nMaybe you like to play around. Bitcoin payments are a very dynamic environment. New tools are constantly being created. You can participate directly or at least be among the first to try them out. With bitcoin, for example, you can pay with QR codes, NFC cards, rings and other chips, or send a payment to a phone number or email address.\n5. **You can hold more bitcoin** \nIf you pay with bitcoin, you won't need as much depreciating fiat. That way, it will also pay off in the long run.\n\n## Conclusion\n\nDon't get me wrong. Bitcoin is free money, so you can do whatever you want with it. Feel free not to use it. But I wanted to point out a pretty simple idea that if you want to have relatively more bitcoin in the long run compared to fiat, you have to use it for payments as well. Otherwise you are forced to have too much depreciating fiat all the time. There are lots of reasons not to pay with bitcoin, but it's not that bitcoin is too good for that. On the other hand, there are already plenty of good reasons to pay with bitcoin. If you're ready to try bitcoin, join the [Twenty-One world](https://twentyone.world/) community.\n\n_Since it is not possible to edit posts here, you can find the latest version on my [GitHub](https://github.com/hynek-jina/Hynek/blob/main/blog/Is%20it%20time%20to%20pay%20with%20bitcoin.md)_ \N 20337 \N 448433 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.9947624857192 0 \N \N f 262093802 \N 2 230391321 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:07:21.234 f \N \N \N 0 0 0 0 2 0 0 448484 2025-03-22 16:16:11.397 2025-03-29 22:39:49.749 \N congrats @matthewdelly https://example.com/ 769 448421 448349.448421.448484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9085584727839 0 \N \N f 0 \N 0 185184745 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52523 2023-08-20 03:37:50.045 2025-03-29 22:39:47.604 Ocean.xyz allows choosing from three block templates: OCEAN, Core+Antispam, Core \N https://twitter.com/ocean_mining/status/1737745210191564958 20782 \N 52523 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.9029024058134 0 \N \N f 0 \N 0 216784124 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7968 2023-02-02 06:38:12.515 2025-03-29 22:39:47.605 OCEAN - Lightning Payouts Overview\nOCEAN uses BOLT12 offers for Lightning payouts.\n\nTo ensure the security and anonymity of the payouts, OCEAN requires that a message is signed linking your OCEAN bitcoin address to a BOLT12 offer.\n\nTo do this, message signing will need to be supported by your wallet and/or signing device.\n\nOnce you have generated a BOLT12 offer, OCEAN will provide you with a message to sign.\n\nNote: You must ensure that you have one or more Lightning channels and the necessary inbound liquidity to receive payments, otherwise payments to you will fail.\n\nShould OCEAN be unable to pay via Lightning, your on-chain address will be used as a fallback once your earnings reach the payout threshold. https://ocean.xyz/docs/lightning 1354 \N 7968 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.3147580531221 0 \N \N f 0 \N 0 188121764 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 198471 2024-07-11 15:43:09.395 2025-03-29 22:39:49.749 \N When can se access SN over I2P?\n\nTor is lately unusable. https://example.com/ 1319 197687 197687.198471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.882312001166738 0 \N \N f 0 \N 0 35294187 0 f f \N \N \N \N 197687 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 48165 2023-08-10 06:10:44.928 2025-03-29 22:39:47.605 Books And Articles Newsletter, Issue 31 ![](https://m.stacker.news/50370)\n\n\n### News Of The Week \n\nWelcome to the Books And Articles newsletter. Thanks for all of the quality posts.\n \nThis has been a really good week for the territory. @jimmysong posted his review of The Mandibles, which is one of the most popular works of fiction among bitcoiners in recent years. If you don’t know anything about Jimmy Song, he is an OG bitcoin developer, educator, entrepreneur and author. He has written books such as “Programming Bitcoin”, “Fiat Ruins Everything”, and many others. Here’s a link to his Amazon author’s [page](https://www.amazon.com/stores/Jimmy-Song/author/B07NP16JG7?isDramIntegrated=true&shoppingPortalEnabled=true). \n\nI am also very happy to showcase our new logo this week, designed by @plebpoet. Not only does she usually dominate the top posts in this territory with her writing, but now she’s adding her artistic skills. A real Renaissance Person.\n\nA few days ago I created [My Bitcoin Journey Directory](https://stacker.news/items/672010/r/siggy47). I did it primarily to inspire more stories from stackers about how they discovered bitcoin. I hope we get a few posts on this topic in the coming weeks.\n\nOne more thing. There were a lot of good posts that flew under the radar. I included a few more suggestions, so I won’t be selecting a Golden Oldie in this newsletter. There is more than enough here already to keep us busy.\n\nAs always, please reply with suggestions and opinions on how to make this territory better. \nI hope everyone has a good week. \n\n\n### Top Five Posts Of The Week \n\nHere are this week’s top posts:\n\n- [The Mandibles: A Review](https://stacker.news/items/668210/r/siggy47) by @jimmysong\n\n- [Self-Reliance by Emerson](https://stacker.news/items/669132/r/siggy47) by @ek\n\n- [Have you ever read a book more than twice?](https://stacker.news/items/668006/r/siggy47) by @Taft\n\n- [Book - The Victorian Internet by Tom Standage (1998)](https://stacker.news/items/673776/r/siggy47) by @Signal312\n\n- [Who is your favourite detective?](https://stacker.news/items/672762/r/siggy47) by @cryotosensei\n\n\n\n### Siggy’s Suggestions\n\n- [Review: Bitcoin: The Inverse of Clown World](https://stacker.news/items/670200/r/siggy47) by @Undisciplined\n\nI have no idea how this slipped past everyone. It’s a typical high quality Mises Institute review of Knut Svanholm’s new book about bitcoin. It sounds good. I will add it to my growing pile of unread bitcoin books. So many good ones have been published lately.\n\n- [Book Review | “Diary of a Wimpy Kid”](https://stacker.news/items/668335/r/siggy47) by @cryotosensei\n\nI admit it. This is a sentimental pick. When my daughter was young these books and movies played a big role in our lives. They were particularly enjoyable for me, since I still have the sense of humor of a fourteen year old boy.\n\n- [“Books” by Hermann Hesse](https://stacker.news/items/674681/r/siggy47) by @Taft\n\nThis post by @Taft features a poem by Hermann Hesse, and Taft’s personal childhood memories . Most of us can find some truth here. \n\n\n- [The Desert Oasis: A Fairytale? A Fable?](https://stacker.news/items/668985/r/siggy47) by @Malachi17\n\nI enjoy just about everything @Malachi17 posts. I recommend you check out his site.\n\n \nThis week’s Golden Oldie:\nNone this week\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [what i read, and wrapping up in july:](https://stacker.news/items/630204/r/siggy47) by @speakingyourtruth\n\n- [Book Review: Nothing Like The Movies by Lynn Painter](https://stacker.news/items/670569/r/siggy47) by @speakingyourtruth\n\n- [The Mandibles: A Review](https://stacker.news/items/668210/r/siggy47) by @jimmysong\n\n- [Self-Reliance by Emerson](https://stacker.news/items/669132/r/siggy47) by @ek\n\n\n- [Book - The Victorian Internet by Tom Standage (1998)](https://stacker.news/items/673776/r/siggy47) by @Signal312\n\n- [Review: The Righteous Mind](https://stacker.news/items/665765/r/siggy47) by @Undisciplined\n\n- [Book Review: Sliced Americana](https://stacker.news/items/663627/r/siggy47) by @jbschirtzinger\n\n- [Saboteurs: How Secret, Deep State Occultists Are Manipulating American Society](https://stacker.news/items/675002/r/siggy47) by @jbschirtzinger\n\n- [Book Review | “101 ways to bring out the best in your children & yourself”](https://stacker.news/items/667453/r/siggy47) by @cryotosensei\n\n- [Book Review | “Diary of a Wimpy Kid”](https://stacker.news/items/668335/r/siggy47) by @cryotosensei\n\n- [Book Reviews Directory #2](https://stacker.news/items/665395/r/siggy47)\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n- [Let's pretend we loved each other](https://stacker.news/items/666008/r/siggy47) by @Nadia\n\n- [That's MINE! Poetry.](https://stacker.news/items/661773/r/siggy47) by @Malach17\n\n- [Silly rhymes written by a guy (maybe) fallen in love](https://stacker.news/items/666985/r/siggy47) by @0268a5c238\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n\n \N 4862 \N 48165 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.08017869349747 0 \N \N f 0 \N 0 64409931 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 255792 2024-10-04 13:54:28.303 2025-03-29 22:39:47.605 Tips for relays “Tips for Relays.\n\nForget about having a thousand and one relays.\n\nThe first option is to pay for nostr.wine, it allows you to use the filter.nostr.wine filter. The filter works both requesting events from other relays and sending events to other relays. In case you want to send events to other relays you have to add the relay with the following syntax:\n\nwss://filter.nostr.wine/REPLACE_WITH_YOUR_NPUB?broadcast=true\n\nReading list:\n\nwss://relay.damus.io\nwss://nos.lol\nwss://relay.current.fyi\nwss://brb.io\nwss://nostr.oxtr.dev\nwss://relay.nostr.bg\nwss://no.str.cr\nwss://nostr.mom\nwss://nostr.zebedee.cloud\nwss://relay.plebstr.com\nwss://offchain.pub\n\nWriting list:\n\nwss://relay.damus.io\nwss://nos.lol\nwss://relay.snort.social\nwss://nostr.oxtr.dev\nwss://relay.nostr.bg\nwss://nostr.fmt.wiz.biz\nwss://nostr.mom\nwss://nostr.zebedee.cloud\nwss://no.str.cr\nwss://relay.plebstr.com\nwss://offchain.pub\n\nThe next special relay is relay.nostr.band. This relay reads events from all relays and applies a spam filter, in the case of writing you only write to relay.nostr.band but it is a good complement to add content to relay filter.nostr.wine as it only requests events from your contacts and your contacts' contacts. It is not clear to me from which relay is requesting the events as the code is not available.\n\nAnd finally the relay nostr.mutinywallet.com. This relay uses blastr which is a nostr cloudfare worker proxy that publishes to all known relays. Basically what it does is to read the list of online relays from nostr.watch and all events are queued to be executed in batches by another worker that rotates every 30s if there is an event queued, or once a certain amount of events are queued. In this case the relay is write-only.\n\nIn short, your relays could be reduced to 4:\n\nwss://nostr.wine\nwss://filter.nostr.wine/REPLACE_WITH_YOUR_NPUB?broadcast=true\nwss://relay.nostr.band\nwss://nostr.mutinywallet.com\n\nWith them you save bandwidth and battery, actually filter.nostr.wine in write mode and nostr.mutinywallet are redundant, but I put the two because nostr.mutinywallet.com has more amplitude because it publishes in all the online relays of nostr.watch and also because it has high availability in case of failure of any of the two relays mentioned above.\n\nThe same case is applicable in the case of reading for filter.nostr.wine and relay.nostr.band.”\n\nSource: \n\nnote1ukmaarf2t9dkhxkphwh4sv4qsrtnvxwz09wmfpgsujwh3m48h8gstyef2f\n \N 10393 \N 255792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.62518544425946 0 \N \N f 0 \N 0 110909890 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 361473 2025-01-08 19:47:44.318 2025-03-29 22:39:47.605 SN Saturday Newsletter 3/23/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Bisq](https://bisq.network/), a suite of peer to peer trading protocols, releases [version 2](https://bisq.network/blog/bisq-2-now-in-beta/) with a new Easy protocol that doesn't require bonds to trade.\n - [Bisq 2 has just been released. I am a Bisq contributor AMA about Bisq or Bisq 2](https://stacker.news/items/469058)\n - 16.8k sats \\ 41 comments \\ [@solomon1923](https://stacker.news/solomon1923)\n2. Bitcoin is reaching new markets and it has [@btc_remnant](https://stacker.news/btc_remnant) continuing to lose his faith in the Bitcoin community.\n - [I'm losing my faith (II)](https://stacker.news/items/468107)\n - 10.3k sats \\ 138 comments \\ [@btc_remnant](https://stacker.news/btc_remnant)\n3. If Bitcoin were different than it is, it'd come at a cost. [@kepford](https://stacker.news/kepford) focuses on Bitcoin's speed.\n - [Bitcoin is Slow](https://stacker.news/items/471700)\n - 4.5k sats \\ 26 comments \\ [@kepford](https://stacker.news/kepford)\n4. [@runningbitcoin](https://stacker.news/runningbitcoin) walks us through, pictures and all, setting up a fresh [Mutiny Wallet](https://www.mutinywallet.com/).\n - [Starting with: Mutiny Wallet](https://stacker.news/items/467711)\n - 14.7k sats \\ 22 comments \\ [@runningbitcoin](https://stacker.news/runningbitcoin)\n5. Using a metaphor, [@Scoresby](https://stacker.news/Scoresby) explains the relationship and difference of mempool policy and consensus rules.\n - [Inside your Bitcoin node there are two wolves](https://stacker.news/items/471233)\n - 18.5k sats \\ 13 comments \\ [@Scoresby](https://stacker.news/Scoresby)\n\n##### AMAs\n- [Zaprite AMA](https://stacker.news/items/471457)\n - 19.3k sats \\ 89 comments \\ [@zaprite](https://stacker.news/zaprite)\n- [AMA - Stratum V2 SRI team, yesterday we released an important update 1.0.0!](https://stacker.news/items/475925)\n - 22.5k sats \\ 50k boost \\ 51 comments \\ [@pavlenex](https://stacker.news/pavlenex)\n\n##### Don't miss\n- [Safety Practices on Using Nostr](https://stacker.news/items/471366)\n- [Disclosure: Wasting ViaBTC's 60 EH/s hashrate by sending a P2P message](https://stacker.news/items/472773)\n- [Reflections from the Nakamoto Simulator](https://stacker.news/items/474759)\n- [Maybe All you Need is to Ask - Do you Accept Bitcoin? ⚡️ ( Part III )](https://stacker.news/items/474707)\n- [Why smart people believe stupid things](https://stacker.news/items/474595)\n- [Are devs getting slowly replaced by AI?](https://stacker.news/items/470048)\n- [Tools for Saving](https://stacker.news/items/473217)\n- [The habits and rituals of fragmentation](https://stacker.news/items/469984)\n- [Bringin Bitcoin to Retail Banking with the Breez SDK](https://stacker.news/items/472735)\n- [Visually pleasing posts: How to improve your Markdown writing on SN](https://stacker.news/items/468845)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Million Sat Madness is a Keynesian Beauty Contest](https://stacker.news/items/473181)\n- [SN release: API keys, purchase archived territories, inc boost min, bug fixes](https://stacker.news/items/473244)\n- [How does it feel when bots zap your posts? 🤖⚡](https://stacker.news/items/474427)\n- [3 Stacker News Improvement Ideas](https://stacker.news/items/476967)\n\n-------\n\n##### Top Monday meme \\ 25.2k sats \\ [@Bitcoin_Bootcamp](https://stacker.news/Bitcoin_Bootcamp)\n![](https://imgprxy.stacker.news/58l1I5HLR474HjXeXsva5nL6Fldg08OOI1wdZfl4WKE/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMTUyMw)\n\n[**all monday memes**](https://stacker.news/items/469902)\n\n------\n\n##### Top Friday fun fact \\ 10.7k sats \\ [@grayruby](https://stacker.news/grayruby)\n> From the kiddos:\n>\n> The atlas moth's wings mimic the profile of a cobra's head to ward off potential predators.\n>\n> ![IMG_5771.WEBP](https://imgprxy.stacker.news/2BLzG7YJDqsI0F3KuirF19Uqz5aJij_TdvzsNMj63gk/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMjM4MA)\n\n\n[**all friday fun facts**](https://stacker.news/items/475795)\n\n------\n\n##### Top Stackers\n1. [@oracle](https://stacker.news/oracle): 145.1k sats stacked\n2. [@Scoresby](https://stacker.news/Scoresby): 58.8k sats stacked\n3. [@Undisciplined](https://stacker.news/Undisciplined): 48.8k sats stacked\n4. [@grayruby](https://stacker.news/grayruby): 43.9k sats stacked\n5. [@kr](https://stacker.news/kr): 40k sats stacked\n\n------\n\n##### Top Spenders\n1. [@ek](https://stacker.news/ek): 178.6k sats spent\n2. [@phaedrus](https://stacker.news/phaedrus): 150k sats spent\n3. [@Undisciplined](https://stacker.news/Undisciplined): 66.3k sats spent\n4. [@pavlenex](https://stacker.news/pavlenex): 51k sats spent\n5. [@TNStacker](https://stacker.news/TNStacker): 38k sats spent\n\n------\n\n##### Top Cowboys\n1. [@kr](https://stacker.news/kr): 417 days\n2. [@orthwyrm](https://stacker.news/orthwyrm): 301 days\n3. [@kepford](https://stacker.news/kepford): 243 days\n4. [@SatsCats](https://stacker.news/SatsCats): 202 days\n5. [@tnuts420](https://stacker.news/tnuts420): 201 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 761 \N 361473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1428477675468 0 \N \N f 0 \N 0 78752234 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436166 2025-03-13 11:09:54.445 2025-03-29 22:39:47.606 The Genesis Book - Preorders Available ## **The Genesis Book**\n- 15 years on from the Genesis block, a book has become available highlighting the innovations and experimentation leading up to that historic event. The book is now available for pre-order [HERE](http://thegenesisbook.com/).\n- The Genesis Book tells the story of the people and projects that inspired the invention of the world’s first successful peer-to-peer electronic cash system. Bitcoin did not appear out of nowhere. For decades prior to Satoshi Nakamoto’s invention, a diverse group of computer scientists, privacy activists, and heterodox economists tried to create a digital form of money that could operate independently of government control.\n\n## **Jump The Queue**\n- Aaron Van Wirdum, the book's author, has published the content on [Google Drive](https://drive.google.com/drive/folders/1j7PDr7uTNsJs3CmCmtB0vLjmkKz4GOnQ) to gain input & feedback from key people in the industry. If you are privacy-minded, the entire book's files will be available for 24 hours for 100 people to download [here on Wormhole.app](https://wormhole.app/Lax5N#tNnvpCw7pGxta9MTJSNSGg).\n\n![](http://thegenesisbook.com/wp-content/uploads/2023/12/photo1703832091.jpeg)\n\n\n---------\n\n## **Testimonials**\nJameson Lopp:\n> The Genesis Book takes us on a century-long journey through the little-known stories of visionaries whose insights and innovations laid the foundation for the revolutionary creation of Bitcoin. From the economists who challenged conventional wisdom to cypherpunks who blazed new trails in privacy, Aaron van Wirdum meticulously weaves together a tapestry of technological triumphs, setbacks, and extraordinary breakthroughs. You'll be captivated by the anecdotes of individuals who dared to dream beyond the status quo, pushing the envelope to reshape the landscape of money itself.\n\nTuur Demeester:\n> I long suspected that van Wirdum was bitcoin’s best historian, and this page turner proves it. It’s a tour de force. The Genesis Book is a highly readable and essential history, revealing the many causal connections between Viennese Classical Liberalism, the Anglo-Saxon Cypherpunk movement, and the advent of bitcoin. Whereas other books on the industry have tended to focus on headline-making entrepreneurs, van Wirdum has the technical chops to dig under the surface and correctly identify the brilliant figures who built the foundations on top of which the bitcoin edifice was eventually engineered. \n> Over the course of 16 dense chapters, The Genesis Book combines the kind of in-depth research and philosophical connections that one could only expect from an industry veteran (Van Wirdum was one of the first writers to ever gain employment in the bitcoin industry), with the engaging prose you’d look for in a respected periodical. One cannot understand bitcoin without studying its extraordinary origins, and I’m thrilled this book exists to bring that knowledge to a wide audience."\n\nPaul Sztorc:\n> Why is Bitcoin so different from its predecessors? This book sheds light on the *problems* which vexed smart, hardworking people in the pre-Bitcoin era. That is the right way to tell a technology story. All of the important problems are included, and they're all in the proper order. The best Bitcoin book yet written.\n\nGiacomo Zucco:\n> Until now you could find many books about Bitcoin, but none that covered its multifaceted cultural background in a complete, systematic, and elegant way. Aaron van Wirdum, already famous for his ability to accurately convey subtle technical matters to a generalist audience, just wrote it. A must-read if you want to understand where Bitcoin came from.\n\n------\n\n## **Final Thoughts**\nLooking forward to reading this with or without Book Club @elvismercury. The book was previously posted [here on SN](https://stacker.news/items/375414), but wanted to give it a further boost, especially the fact it is readable TODAY. Perhaps it is worthy of your time to celebrate [Proof of Keys day on SN](https://stacker.news/items/375559). Kudos Aaron for all the hard work! http://thegenesisbook.com/ 21003 \N 436166 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 9.39369029762435 0 \N \N f 0 \N 0 88776626 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 05:02:22.11 f \N \N \N 0 0 0 0 0 0 0 421246 2025-03-01 14:23:29.973 2025-03-29 22:39:49.74 \N > we're not here to fuck spiders\n\nThat so Australian. Amazing. https://example.com/ 646 420279 419944.420279.421246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.631610563217 0 \N \N f 0 \N 0 170666989 0 f f \N \N \N \N 419944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443590 2025-03-19 12:32:35.402 2025-03-29 22:39:49.74 \N Nice. I should get off my butt and figure out how to put some of my old music on wavlake. https://example.com/ 4395 443584 337252.443584.443590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1235596486571 0 \N \N f 0 \N 0 174225410 0 f f \N \N \N \N 337252 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422962 2025-03-02 20:12:06.837 2025-03-29 22:39:49.74 \N AMAZING POST!\nNatalia you should get all the credit /zaps from this. \nJust for taking the time to write all this you deserve a lot of sats. I will send you some anyways for this work.\n\n@k00b please add this to the "guide" page, will be good for new users to read. https://example.com/ 1316 422960 422960.422962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.64986288086195 0 \N \N f 393591237 \N 2 26323172 0 f f \N \N \N \N 422960 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431215 2025-03-09 16:03:41.985 2025-03-29 22:39:49.74 \N The #1 priority should be to keep the harmony of SN, on SN.\n\nIf you try to make it (more) competitive by introducing a leader board and strictly reward people based on their placement on said leaderboard, then it could lead to said harmony going under in the long run, as competition can attract some very unwanted types of behaviour.\n\nThe daily rewards were a nice *personal* type of reward, as in: \n\n"*you did well that day by providing *value*, in one way or another, to other users of SN, and therefore you're rewarded extra. Keep it up.*"\n\nI can't quite put my finger on why I *dislike* MSM *now*, but I'd gladly take the former system above it, for I feel that it'd serve SN as a platform, as well as it's users, better in the long run. https://example.com/ 11590 400120 400120.431215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.32895758864378 0 \N \N f 0 \N 0 136841375 0 f f \N \N \N \N 400120 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436462 2025-03-13 15:18:04.142 2025-03-29 22:39:47.606 Update on LinkingLion: Reduced activity and a statement by LionLink Networks \n\n\n\n\n\n\n https://b10c.me/blog/013-one-year-update-on-linkinglion/ 16966 \N 436462 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.2427073335621 0 \N \N f 403550109 \N 2 47672827 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 415376 2025-02-24 18:52:28.498 2025-03-29 22:39:49.74 \N I'd increase the territory fee to 1500 and make the territory a place to store and aggregate flakes. I'd arrange bounties for best flakes, create a podcast, publish articles, and sell merch. I'd have a geyser fund for donations, and business account with strike. I'd list the territory fee as a business deduction and reinvest the money saved into bitcoin miners and lightning liquidity and cold corn. https://example.com/ 3409 415027 414711.415027.415376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8114513108906 0 \N \N f 0 \N 0 203578133 0 f f \N \N \N \N 414711 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455454 2025-03-27 02:49:58.162 2025-03-29 22:39:49.74 \N I'm working on an iOS/macos nostr client called Damus. I'm thinking of a scheme using lud18 to create proof of bolt11 payments using nostr keys. This will allow you to do lightning tips over nostr in a secure way: talling tips on posts, fundraisers in a post, etc.\n\nExcited to start implementing this soon as this may be one way to incentivize running nostr relays by donating a proportion of your lightning tips to the relays you're connected to. https://example.com/ 8985 455079 455079.455454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9827195993874 0 \N \N f 0 \N 0 149209685 0 f f \N \N \N \N 455079 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413322 2025-02-23 04:19:51.249 2025-03-29 22:39:49.74 \N One of the things people want hard money for is to make purchases. One of the things people like to purchase is art. If those two statements were the only factors involved, I think almost every bitcoiner would be on board. There is nothing wrong with using bitcoin to buy art, there would be a problem if you could *not* do that. The *real* problems, I think, come from these two factors:\n\n1) the inscription people decided to store their images "on" bitcoin, which is pointless , stupid, and needlessly costly -- and not just for them, it's costly for other people too\n2) almost 100% of the "art" is not really art at all, they are poorly disguised pump and dumps, draped in ugly shapes and colors. "Buy this AI generated girl in skimpy clothes! Only 0.1 btc!"\n\nTaproot Assets fixes the first problem and therefore I think it's a good thing. It does nothing about #2, which is probably a "human nature" problem and I'm not sure it's fixable unless the scammers get religion. https://example.com/ 18528 413076 413007.413076.413322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3111178983995 0 \N \N f 416472108 \N 2 125014071 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431188 2025-03-09 16:02:13.448 2025-03-29 22:39:49.74 \N Okay, just read the post. Here's my question:\n\nFor the people, like QTR in this article, whose argument is basically "Btc is an opportunity to get our revenge on The Man, and politicians, and other rich assholes who have ruined the world", how will they feel about the fact that the distribution of btc is even more skewed toward the The Man, the politicians, and rich assholes than the distribution of fiat was?\n\nI am really asking this question. While there's some obvious upheaval in who is btc rich vs who is rich, just as happens in every revolution, on net the btc rich are the very people who have a bunch of extra income to invest on a lark, also as happens in every revolution.\n\nDo people not know that? Or do they not care, for some reason? Or am I wrong, for some reason? https://example.com/ 17415 406483 406483.431188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.24066574744615 0 \N \N f 0 \N 0 99730735 0 f f \N \N \N \N 406483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416944 2025-02-25 23:47:40.721 2025-03-29 22:39:47.606 I hate it when people judge you and say you're not in it for the tech.... To be clear, yes I know some people are in it just for the money....\n\nBut, as was the case for me, I genuinely feel that at some point you have to be in it for the money or you lose the ability to be in it for the tech. Because the world we live in makes it so that we need money to live a life that gives you the freedom to be 100% something. \n\nI come from a bad background, fostered, homeless yada yada i wont bore you with all my life.. I have struggled but I have been determined, i got myself to college, university (while doing 2 part time jobs) and yes it took me years longer than my friends but i'm proud of it. \n\nI then got into bitcoin (an others) and starting building - only small things first like a few games and a few websites to help people. I gave so much away (todays value equally tens of thousands) I then started to realise this is what I wanted to do. Build, share, educate and above all... help people. All the time never taking any profit for myself (I had an ok job at the time). I helped a kid and his brother pay off all their tuition at university in the Philippines - I was inspired and I felt powerful (not the ego type but the type that could make a real difference) \n\nI decided to go full time and quit, take a chance.... but it was a gamble that didnt pay off, (Covid was a big factor in this). First it was things like my YT being taken down, or moderated websites not allowing anyone to really build and taking control for their own greed, I lost money on exchanges that were scammy or blocked me due to KYC rules changing, during covid my landlord increased the rent and online ordering food was a huge drain on my reserves.. i'm sure we have all been there\n\nI'm the type of person that has random conversations and random ideas - I even have a little notebook of tons of things I want to build. I would love to be financially free to be able to pursue these things... I dont want lambos, or big houses - I want to feel secure that I wont lose my house, or default on my credit card and be taken to court or even as simple as not have to ask friends to lend money so I can have a drink with them.. So as you can see... I am here for the tech... but I also need to be here for the money. \n\n\nBut sadly im broke AF and had to give up my free time to go back to work, for rent, food... My biggest fear is being homeless again and I admit because of this I am risk averse - this was a big decision for me.... i know its sad. \n\nWhy am I sharing this? I actually just listened to a guided meditation session that mentioned sharing something deep to us and helping others can help feel gratitude and grounded.\n\nSo there you have it... I hope this helps someone somewhere, somehow. \n\nPeace and love. \N 20433 \N 416944 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.05157572927418 0 \N \N f 144369510 \N 1 92481251 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 106222 2024-01-01 00:27:42.892 2025-03-29 22:39:47.607 Why are there so few bitcoiner e-commerce businesses??? I tried to make a directory of bitcoin-accepting online businesses and it is a surprisingly hard list to build. I have only been able to find 5 non-software ones (and I'm one of them) that meet some basic criteria:\n\n- bitcoin only, no shitcoins (other than fiat)\n- actually bitcoin, provably not KYC fiat auto-conversion\n- products not made for bitcoin e.g. if you make very nice wool socks because you want to make a better sock, I'd list that, but not a generic cheapo sock you slapped a bitcoin logo on.\n\nhttps://circularbtc.xyz\n\nI asked for help finding more businesses and only got 20 sats on the post. Not a ton of engagement on twitter yet. https://twitter.com/CircularBTC/status/1697725848097616071\n\nSo going to add bounties:\n\n20k sats: online store with beef\n20k sats: the guy on twitter sanding down cast iron pans, but only if he is still doing it.\n5k sats: any other store I deem fitting the rules\n\nI will be reaching out to all the IbexPay merchants and let them know that if the publish an attestation on their website that they *do not* autoconvert bitcoin and use IbexPay in a nonKYC way that I will add them.\n\nYes, yes, I know hodling is using, and I have even written some rather vehement threads against the medium of exchange LARPing, and I do not think this is all that important, but it still seems worthwhile. Unlike medium of exchange maximalism, which is dumb, the criteria set forth here make it easier to Buy Bitcoiner, which supports the market cap, whereas the IbexPay, StrikeCommerce, CoinbaseCommerce, BitPay, and OpenNode are primarily LARPer-centric products for businesses thinking they will get a boost from the LARPer bitcoiner consooomers.\n\nE-commerce side businesses is not just about the circular economy, but seems like a good way to increase bitcoiner exports into fiat land (hence non-bitcoin-specific criteria). Think historically about silver vs gold holding nations. Yes, *most* NGU is new adoption, but that can be augmented if the buying pressure of existing base can be increased. E-commerce is also a more sovereign stream of income than the jobs most people have.\n\nI'm not religious, but the Old Testament advises 33% land, 33% gold, and 33% in your business. Of course, land and gold are shitcoins, but many bitcoiners are on 0 business-wise and opt to purely work for large corporations -- being an employee mathematically means you agree to take a loss on expected value in exchange for higher expected utility -- this literally means a lower bitcoin price in the aggregate. The more bitcoin entrepreneurs (in areas outside of bitcoin, more LARP startups not needed), the faster NGU. Ironically, the opportunity cost curve of bitcoin means a bitcoiner is MORE incentivized to be a wage cuck than a fiat/stock/re NPC. \N 704 \N 106222 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.7446275245836 0 \N \N f 0 \N 0 69402429 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408127 2025-02-18 15:20:10.185 2025-03-29 22:39:49.74 \N I would just say thanks. https://example.com/ 2460 407870 407870.408127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3814970816138 0 \N \N f 0 \N 0 4223637 0 f f \N \N \N \N 407870 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404435 2025-02-15 21:46:34.957 2025-03-29 22:39:49.74 \N > 5 Conclusions\n> \n> We show that usage of the Lightning Network is associated with reduced mempool congestion in Bitcoin and with lower fees. Our findings suggest that the off-chain netting benefits of the Lightning Network can help Bitcoin to scale and function better as a means of payment. Centralization of the Lightning Network does not appear to make it much more efficient, though it may increase the proportion of low fee transactions.\n> \n> Data are not available on how Bitcoin is used, so we cannot say for sure whether Bitcoin is being increasingly used as a means of payment. Makarov and Schoar (2021) study blockchain data and conclude that the majority of usage is for trading and speculative purposes, but their analysis does not extend to transactions that take place on the Lightning Network. We can only say that the Lightning Network loosens a key technological constraint by allowing payments to be settled more quickly https://example.com/ 688 404432 404432.404435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.87219637148365 0 \N \N f 0 \N 0 105968160 0 f f \N \N \N \N 404432 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434966 2025-03-12 11:21:57.617 2025-03-29 22:39:49.741 \N > 10. $100 USTs are now worth $60.\n\nThat's not what happened. If $100 of treasuries were worth $60 there would be a massive arbitrage opportunity to buy them until due date.\n\nTreasuries generally trade between their issuance and issuance+interest. They could fall as deep as ( issuance+interest)- interest of other/newer treasuries. \n\nHowever, the SIVB is also partly related to the duration missmatch on active and passive side. This could theoretically happen with 100% fractional deposits (which does not exist in reality). https://example.com/ 9349 434498 434498.434966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.923456551514 0 \N \N f 0 \N 0 132914034 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456781 2025-03-27 21:30:33.2 2025-03-29 22:39:49.741 \N My work (software engineering) https://example.com/ 21555 4177 4177.456781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5707335451163 0 \N \N f 0 \N 0 19301903 0 f f \N \N \N \N 4177 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434873 2025-03-12 10:01:00.6 2025-03-29 22:39:49.742 \N Everyone is so feisty on SN lately. \n\nDid I start this with my debate with @k00b a week and a half ago?\n\nMan I feel like I am on twitter today. \n\nI just wanted to say I am a big fan of both @petertodd and @darthcoin even if I disagree with them and they hate me forever. Haha. \n\n![](https://m.stacker.news/54038) https://example.com/ 1647 430342 430342.434873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.38992478112571 0 \N \N f 0 \N 0 157849631 0 f f \N \N \N \N 430342 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431178 2025-03-09 16:01:36.989 2025-03-29 22:39:49.742 \N Andromedik and RANI\n‘Bleed the Same’\n? https://example.com/ 3417 408713 408713.431178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9213874366329 0 \N \N f 0 \N 0 191912079 0 f f \N \N \N \N 408713 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431193 2025-03-09 16:02:26.941 2025-03-29 22:39:49.742 \N Margin call.\n\nhttps://www.youtube.com/watch?v=Hhy7JUinlu0 https://example.com/ 10698 405321 405321.431193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0785715841176 0 \N \N f 0 \N 0 92759644 0 f f \N \N \N \N 405321 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438090 2025-03-15 08:42:16.871 2025-03-29 22:39:49.743 \N Day 226 of snailposting everyday 'til BTC hits $100k.\n\n...and 26 push-up(s).\n\n__@_'-' https://example.com/ 1489 437714 437714.438090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3050618454984 0 \N \N f 0 \N 0 149879854 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402804 2025-02-14 04:43:32.527 2025-03-29 22:39:49.743 \N I've been thinking about doing a semi-long form write-up about my experience with a FutureBit Apollo miner in the coming weeks, now that I've had it for several months. Is that something folks would be interested in reading? https://example.com/ 680 402000 402000.402804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.210033608496 0 \N \N f 0 \N 0 213061479 0 f f \N \N \N \N 402000 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431194 2025-03-09 16:02:29.159 2025-03-29 22:39:49.743 \N > only earned few cents \n\nThere you go ... first post and you are already talking about shitcoins!\n\n[j/k -- welcome!] https://example.com/ 19292 405202 405202.431194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.08773929262887 0 \N \N f 0 \N 0 153187069 0 f f \N \N \N \N 405202 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431185 2025-03-09 16:02:00.123 2025-03-29 22:39:49.744 \N Car culture https://example.com/ 10484 406783 406783.431185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.860649917512539 0 \N \N f 0 \N 0 52105446 0 f f \N \N \N \N 406783 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434422 2025-03-11 21:46:33.982 2025-03-29 22:39:49.745 \N I think you could definitely hack something like that, but IMO as soon as you strart to introduce statefulness, other protocols start to make more sense.\n\nTherfore, In the above example, i like number 3 the most, it leverages another protocol that is great for managing state\n\nEcash is kinda inherently stateless, because links get broken after every token creation. So you would have to manually upkeep that state somehow, which kinda defeats the purpose. \n\nBut I think that's OK, because there are other things (like L402, JWT, etc..) that handle state well!\n\nwow, i said state so many times....\nWe need to separate the web from the state https://example.com/ 1658 434243 434243.434422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.70480648478775 0 \N \N f 0 \N 0 14210 0 f f \N \N \N \N 434243 \N 0 0 \N \N f \N 2025-03-18 20:14:05.91 f \N \N \N 0 0 0 0 0 0 0 434930 2025-03-12 10:47:47.995 2025-03-29 22:39:49.745 \N Hey CJ. Thanks for doing this. \n\nMost people probably want to talk to you about Bitcoin but I have a baseball question for you. What are your thoughts on how analytics has taken over the game? Were you very analytics driven or more old school when you played? https://example.com/ 13365 434902 434795.434902.434930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.33053087678666 0 \N \N f 0 \N 0 198145106 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 12:48:35.091 f \N \N \N 0 0 0 0 0 0 0 413873 2025-02-23 14:03:59.866 2025-03-29 22:39:47.6 Relai Integrates Lightning With Help of Breez SDK And Greenlight \N https://bitcoinmagazine.com/business/relai-integrates-lightning-with-help-of-breez-sdk-and-greenlight 17797 \N 413873 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.1325634410738 0 \N \N f 0 \N 0 63184969 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 135158 2024-03-02 10:07:23.767 2025-03-29 22:39:47.607 OpenAI’s Misalignment and Microsoft’s Gain For those of us addicted to the latest global tech soap opera, Ben Thompson delivers.\n\n> This is, quite obviously, a phenomenal outcome for Microsoft. The company already has a perpetual license to all OpenAI IP (short of artificial general intelligence), including source code and model weights; the question was whether it would have the talent to exploit that IP if OpenAI suffered the sort of talent drain that was threatened upon Altman and Brockman’s removal. Indeed they will, as a good portion of that talent seems likely to flow to Microsoft; you can make the case that Microsoft just acquired OpenAI for $0 and zero risk of an antitrust lawsuit. https://stratechery.com/2023/openais-misalignment-and-microsofts-gain/ 8173 \N 135158 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.53456342017959 0 \N \N f 0 \N 0 53093307 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 232181 2024-09-09 15:22:14.402 2025-03-29 22:39:47.607 New Wi-Fi Takeover Attack—All Windows Users Warned To Update Now The **only** thing required to perform unauthenticated remote code execution is physical proximity. [CVE-2024-30078](https://vulners.com/cve/CVE-2024-30078) an 8.8 out of 10. It affects all versions of Windows, so if you're running Windows, update immediately.\n\n https://www.forbes.com/sites/daveywinder/2024/06/14/new-wi-fi-takeover-attack-all-windows-users-warned-to-update-now/ 10484 \N 232181 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.30550909653205 0 \N \N f 0 \N 0 6875743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436013 2025-03-13 08:22:26.177 2025-03-29 22:39:49.746 \N Day 210 of snailposting everyday 'til BTC hits $100k.\n\n...and 10 push-up(s).\n\n__@_'-' https://example.com/ 15662 435979 435944.435979.436013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2459774688209 0 \N \N f 0 \N 0 125539147 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458170 2025-03-29 03:36:38.24 2025-03-29 22:39:49.746 \N As someone who already worked on a service/tool that supported lightning payments (_no longer active, went out of business_), handling and managing lightning at scale has its own set of challenges. \n\nSo, he is not wrong, it requires some work and different capabilities. However it should not be an excuse for a major player such as Binance. https://example.com/ 21374 457838 457838.458170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4331771301705 0 \N \N f 0 \N 0 69094097 0 f f \N \N \N \N 457838 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436693 2025-03-13 19:44:45.6 2025-03-29 22:39:49.746 \N I love the concept of doing this, basically self-custodial without the UX tradeoffs, however, it relies on SGX security model which AFIAK has been compromised tons of times. Do you guys have concerns about this?\n\nhttps://sgx.fail/ https://example.com/ 4973 436593 436593.436693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6969884311342 0 \N \N f 0 \N 0 244251467 0 f f \N \N \N \N 436593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 189751 2024-06-26 08:39:23.239 2025-03-29 22:39:49.747 \N @Sahkaan_Wahlook has taken the crown as my favorite stacker. His pistol skills are simply unmatched. Congrats on the amazing shots!\n\n![](https://m.stacker.news/51518) https://example.com/ 20624 189750 189750.189751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3227627814531 0 \N \N f 0 \N 0 36026992 0 f f \N \N \N \N 189750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444474 2025-03-19 23:03:27.481 2025-03-29 22:39:49.747 \N I built a semantic search engine for The Kevin Rooke Show: https://maikuro-search.vercel.app \n\nTech stacks: \n- Nextjs \n- Tailwind \n- OpenAI (embedding API) \n- Pinecone (to store vector data) https://example.com/ 18743 444397 443399.444397.444474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2735369435006 0 \N \N f 0 \N 0 175979495 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434996 2025-03-12 11:50:30.39 2025-03-29 22:39:49.747 \N https://imgprxy.stacker.news/xKbUCVx5Q_xstQJ2ZzByVi7K25B2Wfu85UO6UDAh8fI/rs:fit:600:500:0/g:no/aHR0cHM6Ly96dXBpbWFnZXMubmV0L3VwLzIzLzMwL2Z3bHAuanBn https://example.com/ 9200 434971 434440.434723.434971.434996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.92558782266622 0 \N \N f 0 \N 0 168948968 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417469 2025-02-26 11:47:40.057 2025-03-29 22:39:49.747 \N https://www.youtube.com/watch?v=JEJ9Q3sUg3Q https://example.com/ 5173 417468 417468.417469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.52193032990868 0 \N \N f 0 \N 0 133463279 0 f f \N \N \N \N 417468 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414373 2025-02-23 20:50:20.752 2025-03-29 22:39:49.747 \N Starting a business is usually irrational and I don't mean that in a bad way. It's just that you usually start a business because ... you want to start a business.\n\nChances are all of you will have more bitcoin than me and I'm okay with that because I'd rather do this than have more bitcoin. https://example.com/ 5455 408075 407607.408075.414373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.49361476792445 0 \N \N f 0 \N 0 168560181 0 f f \N \N \N \N 407607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416883 2025-02-25 22:43:09.863 2025-03-29 22:39:49.747 \N I don't think this is black rock, the address is a P2WPKH address which coinbase does not use. \n\nMaybe it's a central bank 👀 https://example.com/ 787 416754 416158.416754.416883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3158890182163 0 \N \N f 0 \N 0 14656978 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416887 2025-02-25 22:46:50.892 2025-03-29 22:39:49.748 \N I believe he is off building his citadel. Soon we will all be able to watch him work if he gets the video system installed. Have no fear. He will resume abusing us all very soon. https://example.com/ 16724 416879 416158.416839.416879.416887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7320646251423 0 \N \N f 0 \N 0 99974997 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408387 2025-02-18 18:34:03.926 2025-03-29 22:39:49.748 \N Day 185 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 701 407495 407495.408387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.507334487254 0 \N \N f 0 \N 0 174083737 0 f f \N \N \N \N 407495 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455414 2025-03-27 02:06:48.816 2025-03-29 22:39:47.601 First SN Meet Up in Malaga? 🤠⚡🇪🇸 Yeeeehaaaw 🤠 Today @TomK and I met in real life! After a spontaneous conversation within SN comments some days ago, we realized that we live in the same city and it didn't take long to meet up for a few beers and talk about bitcoin. \n\n![Screenshot_20231227_190938.jpg](https://m.stacker.news/9709)\n\nMaybe it's crazy to say that two stackers drinking beer talking about bitcoin is a meet up, but the truth is that I'm sure there will be many more encounters in the future 🤠🍻\n\nI would like to thank Tom for his valuable time and kindness, I was really fascinated by his knowledge and impressive background, it is always a pleasure to share thoughts with bitcoiners. \n\nIf you are located in Malaga and you feel like coming to future meetings do not hesitate to drop by, we will announce next meeting up very soon.\n\n⚡Talk about bitcoin\n⚡Drinking a few beers\n⚡Hang bitcoin stickers around town\n⚡Teach about SN to other bitcoiners, nostriches and people in general. \n\n\n![IMG_20231225_212451.jpg](https://m.stacker.news/9710)\n\nNo roadmap here, the only requirement is just not to be a shitcoiner 💩 See u in Malaga, stacker! 🌍⚡\n \N 10270 \N 455414 \N \N \N \N \N \N \N \N food \N ACTIVE \N 29.1222983794505 0 \N \N f 0 \N 0 406378 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 54823 2023-08-24 07:07:28.47 2025-03-29 22:39:47.601 Old Sparky & Fat Tony - Lessons I Learned As A Lawyer, Part 2 ![attica](https://i.postimg.cc/c4hqwsQ4/attica-correctional-facility-1.jpg)\n*Attica Correctional Facility*\n\n\n### Freedom\n\nI think about freedom all the time. I bet you do too. Still, there’s nothing like the sound of a heavy metal door clanging behind you to focus your mind on what it really means. \n\nI was a criminal defense lawyer. It was part of my job to spend a lot of time locked in a room with my client and other prisoners. I knew it was only temporary. I would get to go home and sleep in my own bed that night, but I also knew that I could only leave if that guy in the uniform with the gun unlocked that big door for me. \n\nAs the years went by I got used to it. I began thinking about visiting prisons almost as if I was a tourist visiting historic places. I remember the first time I represented a client at the Ossining Correctional Facility. It was always known as [Sing Sing](https://westchestermagazine.com/life-style/history/flashback-the-history-of-ossinings-sing-sing-prison/), and recently they renamed it to reflect that reality. I walked through the big arched entrance where so many movies and television shows were filmed. It was usually a scene depicting a prisoner being released after doing time. Sing Sing housed its first prisoners in 1826. It was considered a model prison since it turned a profit. It became the home of “Old Sparky”, the electric chair where 614 men and women were executed. Among those whose death sentences were carried out in that chair were Julius and Ethel Rosenberg.\n\n![sparky](https://i.postimg.cc/kXjchqb5/sing-sing-prison-old-sparky.webp)\n\n*”Old Sparky”*\n\nI visited Attica Correctional facility, which became famous for a [prison uprising](https://www.zinnedproject.org/materials/attica-prison-uprising/) in 1971. David “Son of Sam” Berkowitz was imprisoned there for a while, as was John Lennon’s murderer. For my generation, “Attica!” became a rallying cry in fighting state oppression, made famous by Al Pacino in Dog Day Afternoon. \n\nThe facility I dreaded visiting most was [Riker’s Island](https://classicnewyorkhistory.com/the-history-of-rikers-island/). It is a New York City jail meant to hold defendants pre-trial and those serving short sentences. It is a run down, depressing place, like most correctional facilities. The reason I dreaded visiting was because it was an all day affair. It’s tough getting there. You have to drive over a bridge to the island, and then wait forever to see your client. You pass through various security checkpoints manned by angry, sour guards with violent tendencies. \n\nThere were moments that reminded me that despite my suit, and the laminated Officer of the Court Attorney card in my wallet, and the visitor badge clipped to my lapel, that I was as powerless as my client in the orange jump suit when I was sitting in that room. For instance, every day most prisons conduct something called “the count”. The entire inmate population must be accounted for during this time, and it is a painstaking process. The purpose is to make sure that no one has escaped overnight. In my experience it can last as long as four hours. If a lawyer happens to be having a client consultation when a count begins, he or she is effectively a prisoner until the count ends. The facility is locked down, and no one is permitted to enter or leave. That happened to me more than once, and I got used to it. I remember one time visiting a client at the [Metropolitan Correctional Center](https://en.wikipedia.org/wiki/Metropolitan_Correctional_Center,_New_York) in lower Manhattan. This old, run down federal facility has since become famous as the place where Jeffrey Epstein “hung himself”. That day years ago when I got locked in during the count, Anthony “Fat Tony” Salerno, the alleged Genovese crime boss, was at an adjoining table with his lawyer. There were no guards around. Just defendants and their lawyers.\n\n![fat](https://i.postimg.cc/L57xBb6D/fattony.jpg)\nAnthony “Fat Tony” Salerno\n\nI have thought about freedom and the power of the state a lot. There is no doubt that citizens need to be protected from violent people, and there is a percentage of the population that deserves punishment for the harm they inflict upon others. \n\nAt the same time, the criminal adjudication process is deeply flawed, like any human institution. The purpose of a criminal trial is supposedly to discover the truth. I think the average person would be surprised at how much lying goes on in a courtroom. Lawyers lie, cops lie, witnesses lie, defendants lie, and judges lie. Not only that, but plenty of honest mistakes are made. Forensic witnesses screw up, defense lawyers say or do stupid things, and judges make mistakes. Despite all this, sometimes justice is served. Other times, it fails. That’s why I oppose the death penalty. Human beings make mistakes all the time, but you don’t get a do over after someone gets executed. \n\n\n### Fiat, Rent Seeking, and Bitcoin\n\nI’m sure many of you just read that and are wondering what the hell this article has to do with fiat, rent seeking, and bitcoin. I’ll try to explain why I see a connection. \n\nBy the time I got out of law school, the entire state of New York north of New York City was in the midst of an economic decline that really began as U.S. manufacturing was gradually exported overseas. Cities like Buffalo, Rochester, Syracuse, and Utica were manufacturing hubs. Buffalo was also a transportation hub because of the Erie Canal. By the 1980’s that was all over. We used to joke that the only thing keeping upstate economically solvent was the prison system, and that wasn’t far from the truth. \n\nBetween 1973 and 2002, the number of prisoners serving sentences in New York State had increased from around 10,000 to around 70,000, and that number doesn’t reflect how many defendants were being held in pre-trial detention at local jails. There are probably many reasons for this increase, but there is no doubt that the prison population soared after implementation of the [Rockefeller Drug Laws](https://en.wikipedia.org/wiki/Rockefeller_Drug_Laws) in 1973. Named for then Governor Nelson Rockefeller, these laws contained some of the harshest criminal penalties for non violent drug crimes in the country. Many prisoners were doing time for drug offenses. To put enactment of these laws into historical context, it was a year or two after the “[Nixon Shock](https://www.investopedia.com/terms/n/nixon-shock.asp)”, and a year or two before Nixon’s oil/dollar [deal](https://citizentruth.org/the-secret-deal-that-formed-the-us-and-saudi-arabias-special-relationship/) with Saudi Arabia.\n\nIn 1984 the U.S. Government enacted the [Federal Sentencing Guidelines](https://en.wikipedia.org/wiki/United_States_Federal_Sentencing_Guidelines), which removed much sentencing discretion from federal judges. The motivation for these guidelines was ostensibly to reduce disparities in sentencing regionally and racially, but the effect was to lengthen prison sentences nationwide. Non violent drug sentences became more harsh, since judges no longer could take into account the facts and circumstances of each case in determining an appropriate sentence. \n\nDuring this time the economy of the United States was shifting from actually building real stuff to financialization. This concept was defined by a [paper](https://www.levyinstitute.org/pubs/wp_525.pdf) published by the Levy Economics Institute at Bard College: \n\n> Financialization is a process whereby financial markets, financial institutions, and financial elites gain greater influence over economic policy and economic outcomes. Financialization transforms the functioning of economic systems at both the macro and micro levels. Its principal impacts are to (1) elevate the significance of the financial sector relative to the real sector, (2) transfer income from the real sector to the financial sector, and (3) increase income inequality and contribute to wage stagnation. Additionally, there are reasons to believe that financialization may put the economy at risk of debt deflation and prolonged recession. \n\n\nNew York City was and probably still is the hub of world finance. Upstate New York was a backwater descending into poverty. The prison system provided jobs to that region. It takes resources to convict these people before they begin serving their sentences: paying for prosecutors, legal aid lawyers, judges, court officers, prison guards, and maintenance personnel. After sentencing, these prisoners must be fed and clothed, and the prison employees need housing, schools for their children, and a community in which to live. \n\nThe New York model under the Rockefeller Drug Laws was duplicated in other states where there was a push to "get tough on crime." The economic benefits of the prison industry was an added incentive.\n\nEventually the Rockefeller Drug Laws were reformed and the Federal Sentencing Guidelines were loosened, but the United States still has the highest [incarceration rate](https://worldpopulationreview.com/country-rankings/incarceration-rates-by-country) in the world.\n\nThe fact that a vital industry exists to facilitate holding fellow human beings captive is more than just sad. Nothing is produced. There is little gain in value. And yet it's all counted as part of the nation's Gross Domestic Product. It’s a product of a fiat system, anchored mostly around pure rent seeking. The system is ready made to foster political favors, nepotism, and other forms of state sponsored corruption. The bureaucratic bloat is familiar. Jobs multiply and budgets swell. \n\nAll this to imprison fellow human beings, many of whom were not convicted of violent crimes. \n\nYes, bitcoin fixes much of this, but not all of it. Bitcoin might reduce crime, but it won’t stop it. There is evil in this world. People will commit horrific, violent acts. People will steal, cheat, and commit fraud. But at least we will be able to more clearly spot the good guys from the bad guys.\n\n\n \N 636 \N 54823 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.9467140869114 0 \N \N f 0 \N 0 111173135 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410498 2025-02-20 14:05:08.292 2025-03-29 22:39:49.74 \N Personally I probably won't use the stablecoin aspect but there is a lot of demand for this in parts of the world where they can't eat bitcoin volatility. \n\nIf you don't want the stablecoin part that's fine, it'll lay the ground work for us to build a DLC market that is usable for anything (permission less betting markets) https://example.com/ 5825 408713 408713.410498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.55250277199708 0 \N \N f 0 \N 0 6521852 0 f f \N \N \N \N 408713 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410525 2025-02-20 14:15:56.421 2025-03-29 22:39:49.74 \N Day 332 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 12744 410490 410409.410490.410525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0365764325377 0 \N \N f 0 \N 0 233868347 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404374 2025-02-15 20:18:51.067 2025-03-29 22:39:49.74 \N Because I want to send and receive value permissionlessly. https://example.com/ 6148 403780 403742.403780.404374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5727012550005 0 \N \N f 0 \N 0 24865756 0 f f \N \N \N \N 403742 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416980 2025-02-26 00:44:33.23 2025-03-29 22:39:49.74 \N Great progress. And yet chart hasn’t even gone exponential yet. A future Starlink monopoly is still to come. More on that in this [SN post](https://stacker.news/items/286873/r/davidw) https://example.com/ 21421 416971 416722.416971.416980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0603198758048 0 \N \N f 0 \N 0 80867873 0 f f \N \N \N \N 416722 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424162 2025-03-03 21:12:44.371 2025-03-29 22:39:49.74 \N Damn we rlly decided to skip 200 and shoot straight for 300 comments \n https://example.com/ 11450 423124 423124.424162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6630306732015 0 \N \N f 0 \N 0 6657188 0 f f \N \N \N \N 423124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410488 2025-02-20 14:00:27.835 2025-03-29 22:39:49.741 \N I like this guy, but he's kind of an asshole: npub1t0nyg64g5vwprva52wlcmt7fkdr07v5dr7s35raq9g0xgc0k4xcsedjgqv https://example.com/ 15510 410254 410094.410229.410254.410488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13106433257822 0 \N \N f 0 \N 0 115879475 0 f f \N \N \N \N 410094 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437954 2025-03-15 02:40:28.846 2025-03-29 22:39:49.741 \N Great Question. River has a strong corporate culture of avoiding seed oils, but we also believe in individual autonomy, so we don't restrict our employee's diets. https://example.com/ 8469 437562 437238.437419.437562.437954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8111435396997 0 \N \N f 0 \N 0 120196312 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437962 2025-03-15 03:42:10.135 2025-03-29 22:39:49.748 \N I'm not excited but I can see the up side of this. I can also see the down side. Others have spoken of the down sides but here's a list.\n\n* Blackrock could try use its government influence against bitcoin\n* Blackrock could support a fork\n* Blackrock and ETFs in general are not self custody\n\nThere are probably more.\n\nThe upside\n\nWhy is Blackrock doing this? One highly like reason is that their customers want bitcoin in their investment portfolios. Yes, they should do it the right way but few start from that point. A lot of hard lessons are gonna have to be learned. Traditional finance isn't going to just say, ok. I guess we are obsolete now. No, they are gonna try to make money off of bitcoin as well. \n\nThe entrance of Blackrock makes it more likely others will follow. Yeah, people here don't care about this stuff but we are the early adopters that get it. The boomers don't get it. They won't get it for the most part but more people buying, even not self custody will make it less likely the state comes after bitcoiners. We aren't gonna just jump from fiat world to bitcoin world in one step. Many people will do dumb things. There will be battles, mistakes, and ugly mistakes.\n\nThis gives more people access to bitcoin. Specifically people that would never self custody. Yeah, they may get scammed. They may get burned. The state can take their bitcoin if they don't have custody. These are lessons some will only learn the hard way.\n\nThis takes more bitcoin off the table raising the buying power of bitcoin.\n\nIn short, I'm not afraid of Blackrock. I'm not a fan of Blackrock either. On net in think this will be one step on the way to a bitcoin standard. I'm not excited about it but I'm not angry or worried either. https://example.com/ 12057 437775 437775.437962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3586385687291 0 \N \N f 0 \N 0 86964119 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422562 2025-03-02 14:47:39.023 2025-03-29 22:39:47.602 Sunday Survey: Do Audiobooks count as reading? 📚 This is based off a continuous three week debate Keyan and I been having on SNL. \n\n \N 21555 \N 422562 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.0728332468255 0 \N \N f 0 \N 0 163900264 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404327 2025-02-15 19:15:07.913 2025-03-29 22:39:47.602 LAST DAY to apply for Chaincode Labs’ Bitcoin FOSS Program Chaincode Labs is offering a 3-month program to get people started on contributing to Bitcoin open source development. The program is free and starts in two weeks. \n\nRead more: https://learning.chaincode.com/#FOSS\n\n***APPLICATION DEADLINE IS TODAY.*** \N 2233 \N 404327 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 7.9257919271156 0 \N \N f 0 \N 0 69618535 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413840 2025-02-23 13:46:52.674 2025-03-29 22:39:49.742 \N chairs ... somewhat of a joke because I'm more of a chair minimizer than a chair refuser https://example.com/ 19333 413826 413791.413811.413826.413840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.226521755250992 0 \N \N f 0 \N 0 198033027 0 f f \N \N \N \N 413791 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407652 2025-02-18 09:18:04.154 2025-03-29 22:39:49.742 \N The stakes are so much higher with Bitcoin it will force us to write better code. https://example.com/ 21114 407629 407619.407629.407652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9213076474198 0 \N \N f 0 \N 0 180730142 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444303 2025-03-19 19:03:33.45 2025-03-29 22:39:49.742 \N generic chinese calculator stealth wallet sounds like a great idea. With front facing calculator function and a key combo or longpress to unlock the wallet. https://example.com/ 15386 444168 444168.444303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4047746173254 0 \N \N f 0 \N 0 190841438 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428851 2025-03-07 16:47:04.786 2025-03-29 22:39:49.743 \N I'm a fan of the POSSE paradigm - Publish [on your] Own Site, Syndicate Elsewhere. \nNot everyone has the time/desire/technical skills to self-host a site, but it is the content equivalent of self-custody in bitcoin. Realistically, not everyone will, but holding it up as an ideal has a lot of benefits even for those who choose not to. \n\nThat being said, from the few days I've been on SN it seems like a small and cozy community so it makes sense to post long-form content here, but as it expands that may change. https://example.com/ 21494 425972 425959.425966.425972.428851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3565672237827 0 \N \N f 0 \N 0 213592298 0 f f \N \N \N \N 425959 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410526 2025-02-20 14:16:14.723 2025-03-29 22:39:49.746 \N Yes, is true. I experience it myself years ago, when I was younger and gamer too.\nPlaying a lot of WoW for few years.\nIt creates addiction and suffering.\nThat's why my eyes now are weak and can't concentrate too much in front of a screen.\n\nSo 10 years ago I decided to move out from a big city to a more rural place, where I can go out in nature more often. SMART DECISION! I regret I didn't do it earlier.\n\nAnd now I move even further! I am building my own homesteading place deep into the mountains, far from "civilization" and digital temptations.\nWhen I work on my citadel I feel that I am getting healed and younger (I am 50+ yrs old).\n\nDigital infestation is a real disease of 21th century.\n\n[![citadel-top-view.jpg](https://imgprxy.stacker.news/EXXWDGzn51zjbpf72_aH9D9amxEPwxmhIt-xFdu4IIw/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvOU1EdlNuUlAvY2l0YWRlbC10b3Atdmlldy5qcGc)](https://postimg.cc/zb1tHpk3)\n[![citadel-darth-pow.jpg](https://imgprxy.stacker.news/xp7zS4d_ixUhcpB0LSvrGHVEDS0VHfQ4btP9z9P8vvs/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvZDFaTWh4OUgvY2l0YWRlbC1kYXJ0aC1wb3cuanBn)](https://postimg.cc/njxS5TgB)\n\n[![citadel-window-darth.jpg](https://imgprxy.stacker.news/h5Raq870TFojy7NZu_WKt2eJA4fSEDTkP42U-JDwq7M/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvajJ5R1hubXkvY2l0YWRlbC13aW5kb3ctZGFydGguanBn)](https://postimg.cc/645j6q9Q)\n\n[![citadel-end-aug.jpg](https://imgprxy.stacker.news/ztpp7RX95h3oaQCCCL50datt4Y6By1xFvEemWJnoUec/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2Mvcnk0UTBwNG4vY2l0YWRlbC1lbmQtYXVnLmpwZw)](https://postimg.cc/3WKgzYnm) https://example.com/ 6382 410441 410237.410441.410526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2067294659189 0 \N \N f 0 \N 0 49643222 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421586 2025-03-01 19:04:21.027 2025-03-29 22:39:49.747 \N The weekly back and forth between @Car and @k00b about the top cowboy segment on SNL lol https://example.com/ 1401 421567 421567.421586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.143156221083 0 \N \N f 0 \N 0 156075895 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442740 2025-03-18 19:15:34.068 2025-03-29 22:39:49.747 \N > It's probably written by an LLM, which means that, in addition to setting a bad precedent, it could be filled with all varieties of subtle horseshit.\n\nAny post can be filled with all varieties of subtle horse poop. So why does using an LLM a bad precedent?\n\n> how does one deal with a reality where you don't know if it's real or manufactured\n\nLots of real things are manufactured\n\n> if it's manufactured, whether it might be mostly right but crucially wrong?\n\nThat risk exists whether or not it is manufactured. The only way to distinguish error from truth, absent any infallible authority, is through some degree of research and careful thought. https://example.com/ 17221 442023 442023.442740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93204453745209 0 \N \N f 0 \N 0 76826926 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431000 2025-03-09 15:06:19.18 2025-03-29 22:39:49.748 \N I believe Nostr already has a way how to deal with that: paid relays. Perhaps if scraping increases cost of running relay too much, more of them will require a few sats from their users. And they can require more than a few sats from those scrapers. https://example.com/ 1483 430923 430923.431000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.05875743954196 0 \N \N f 0 \N 0 228828092 0 f f \N \N \N \N 430923 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415222 2025-02-24 15:45:48.365 2025-03-29 22:39:49.748 \N Hello! You are correct, Unchained is not a bank. But companies that are not banks can nonetheless originate and service loans. Unchained has various licenses and partners that allow us to do so. But this is really the "how" not the "why" :)\n\nUnchained has offered bitcoin-collateralized, USD loans since ~2017. I sense some hesitation or disapproval from you about such products. I don't know if I can change your mind -- would you be surprised to know that, as a co-founder at Unchained, even I haven't used our loan product? It's not because I think it's bad or unsafe -- rather the opposite, I think Unchained is one of the safest ways to obtain a bitcoin-collateralized USD loan! -- it's because the cost is higher than I've been comfortable with. Unchained raises USD from the capital markets which we then lend out to our borrowers. The cost of this capital is often quite high, which means our loans tend to have a high interest rate. Bitcoin's historical price appreciation is so significant that, despite this high rate, it often makes more fiscal sense to borrow from Unchained than to sell your BTC (which will also have tax consequences that borrowing will not). But it's also true that if you have good credit and income you can obtain an unsecured loan for a much lower rate. This is the reason I've not personally used this product.\n\nBut I would like to! The rate for our loans has generally decreased since we started lending back in 2017, and I hope it gets even lower in the future as the capital markets come to understand how safe our model is. At some point our lending product will be competitive with other, more traditional credit products, and you can bet I'll become a borrower at that time.\n\nTwo more comments -- First, I think there's a perception that people who borrow against their bitcoin are leveraging up, using the proceeds to buy even more bitcoin. This may be true in some cases but the vast majority of borrowers at Unchained use the proceeds to purchase real estate (often a first home) or to make a business investment (often in a bitcoin business!). Second, the reason I believe Unchained's loan product is superior to historical bitcoin-based credit providers such as BlockFi, Celsius, &c., is that we use collaborative custody. The borrower gets to hold one private key within a 2-of-3 multisig wallet that maintains the collateral. Unchained holds a second private key and an independent third party holds the third. This structure prevents rehypothecation of collateral and has proven resilient against volatility and other forms of risk going on 7 years now!\n\nTo close -- I may not have changed your mind, credit isn't right for everyone, but I hope I've educated you about how Unchained thinks about our credit products and tries to do right by our borrowers :) https://example.com/ 6616 415172 414678.414936.415172.415222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.72286114726403 0 \N \N f 0 \N 0 71623511 0 f f \N \N \N \N 414678 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 77279 2023-10-23 13:50:17.273 2025-03-29 22:39:47.602 MicroStrategy converted all the email addresses into Lightning addresses ⚡ \N https://twitter.com/WalkerAmerica/status/1647996467683164161 12422 \N 77279 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.52659861657489 0 \N \N f 0 \N 0 89675664 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 78128 2023-10-25 12:28:03.253 2025-03-29 22:39:47.602 Operation Saylor - Episode 16/120 # Operation Saylor - Episode 16/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 16, corresponding to October 2023.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.35916794 BTC\n- € stack: 407.20 €\n- Current total value in €: 37,475.22 €\n- € into BTC: 30,000 €\n- Paid back to bank: 5,493.00 € \n- Outstanding debt + interests: 38,451.33 €\n- Installments to go: 105\n\n\n## Charts\n\n[![episode-16-stack-value-vs-debt.png](https://i.postimg.cc/vT3FtM9k/episode-16-stack-value-vs-debt.png)](https://postimg.cc/ctgbdpFB)\n[![episode-16-bitcoin-stack.png](https://i.postimg.cc/NFgvXLyR/episode-16-bitcoin-stack.png)](https://postimg.cc/ygrG41yN)\n\n---\n\n## Log\n\nWelcome again fellow reader. Another quiet month has passed by. This month I've decided to take the chance to explain to you this interesting idea that has been flying around my mind lately. Well, it's actually been doing so for months or years, but I've found myself intensely fascinated by it recently.\n\nImagine that we have two parties. Let's stick to tradition: Alice and Bob. Alice and Bob want to do business together. They sit down and write a contract that defines their relationship. They foresee different scenarios of how things could go and write clauses that address what each party should do in those cases. Once they are happy with the text, they sign it and shake their hands.\n\nThe thing is paper only takes you so far. The fact that someone has signed that they will do something does not magically imply they will. There is such a thing as not complying with commitments. So, how can they be sure that the other is going to keep his word and follow through with their agreement? Here is where trust plays a role. If they both trust each other, for whatever reason, they will sign the agreement and do business. If not, they won't.\n\nNow, this is a terrible situation. If one could only do business with people they highly trust, their action radius would get severely tightened. How many people in your life can you fully trust when it comes to doing serious business? \n\nHow is this solved in the fiat world? With laws and courts. In the fiat world, you happily move around signing contracts with tons of people and companies about which you know pretty much nothing because there is a legal system where you can escalate disagreements and contract violations. And the simple threat of court justice typically makes most people comply with agreements, which creates this wonderful sense of security. _I'll make a disclaimer here to acknowledge that legal systems are far from perfect, there are still many real world issues and flaws which make things more complex than what I'm describing here, and the vast majority of the world doesn't even live under such a safe legal system even. Let's just stick to utopia for the purpose of this rant._\n\nRight. Now we move on to the wet dream of many bitcoiners. We make the state disappear. Bloop, gone.\n\nWe are back in the jungle where trust is your only weapon to support contracts with others. Your action radius has shrunk dramatically. How do we colonize Mars when you can't even rent your car to some guy without fearing he will simply drive away with it and never come back?\n\nThis is where the idea that keeps me fascinated kicks in and saves the day. Let's visit again our friends Alice and Bob. Alice wants to rent Bob's car, but Bob has no reason to trust Alice. He is afraid that Alice will run away with it. How can we overcome this friction and enable business and the value it generates? By leveraging game theory and multisig wallets. Imagine that Bob proposes the following to Alice: they will both start a 2-of-2 multisig, where each of them will hold a key. Alice will put 0.5BTC in it, which feels like a reasonable amount given that the value of Bob's old Camry is somewhere around 10K USD. Bob adds 0.1BTC to the multisg as well. They both agree that Alice will rent Bob's car, and when she returns with the car in mint condition, they will dissolve the multisig by paying back to themselves the amounts they put in. If Alice damages the car somehow, they will negotiate some part of Alice's BTC to be handed out to Bob as compensation.\n\nIsn't it magic? The very moment Alice and Bob add the funds to the multisig, the game theory around their relationship has changed dramatically, _for the better_. They now have a significant incentive to collaborate, communicate, negotiate and compromise. Fucking each other over is now way less attractive, because it could mean parting ways with the funds they have shared ownership over. They can now do business under the amounts that are locked in the multisig with much higher confidence without having to trust each other. I started with the car rental example, but if Bob now wants to buy Alice's used PS5, he can be quite confident she's not going to scam him with a broken PS5. Because who would risk the 0.5 BTC that Alice put in their multisig just to earn a few bucks through a silly scam.\n\nJust to name it something, let's name this practice a bonding multisig. Alice and Bob have _bonded_ themselves with the multisig.\n\nThe idea fascinates me and, with some creativity, can be extended in many directions. A few examples:\n- Instead of doing a 2-of-2, Alice and Bob could do a 2-of-3 and pick a third party as the arbiter for any conflicts that would arise between them.\n- If instead of two parties you have three, four or whatever number, you can scale up by doing a 3-of-3, 4-of-4, etc.\n- A funny phenomenon is that trust also propagates in a similar fashion to the Lightning Network channels. Imagine Alice and Bob have bonded. Charlie is friends with Bob, but not with Alice. Alice and Charlie want to do business together, but they don't trust each other and have not bonded. The good news is that, Bob can now step in between and act as the trust link between both parties. Alice will do business with Charlie if Bob says Charlie is trustworthy because Bob has something to lose, so he's not going to risk it lightly. And Charlie can trust Alice because Bob has a way to punish her if things go south. So, in a world that would have a web of bonds, you could trust people "far" from you depending on your connections.\n- Building on top of the previous point, another parallelism with the lightning network would be the idea of hubs. There could be people or organizations who would bond with a lot of other parties. These hub entities would act as trust brokers, enabling all the people connected to them to interact with each other safely. Just like now we have monster nodes like WoS or ACINQ that can connect you with most of the LN.\n\n\nMany of these ideas are being used practically today in the Bisq network. But I think they don't need to be restricted to a DAO or to a purely digital ecosystem like Bisq is. I could picture this taking place in normal society pretty much everywhere. Do you want to live in pillar's citadel? You need to bond with the townhall so the city can trust you will be well-behaved. Joining your local masonic lodge? Bond to prove your commitment with the organization. Joining a criminal gang? Show your loyalty is with the gang and not with the state by bonding. Renting a house for your family? Bond with the landlord to keep your business together safe and sound.\n\nIt makes me wonder: will we reach some point in the future, where the simple idea of interacting with someone with whom you have not bonded would be seen as crazy?\n\nI hope you found the idea interesting. If you have any thoughts, I would love to hear about them. Perhaps also, if you have any reading material with similar or related ideas, you could link to them to enrich the discussion (I'm sure I'm not the first person to think through all of this).\n \nAs always, thanks for reading and see you around next month.\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n \N 21044 \N 78128 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.63890499702116 0 \N \N f 0 \N 0 33165270 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428421 2025-03-07 09:06:18.501 2025-03-29 22:39:47.603 stacker news is addictive AF, amiright? I just discovered this site a few days ago, and I already spend more time on it than any other daily site. \N 999 \N 428421 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.21609139603325 0 \N \N f 0 \N 0 35573142 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451253 2025-03-24 13:19:36.932 2025-03-29 22:39:49.74 \N ![upload-image.png](https://m.stacker.news/4215) https://example.com/ 19524 451012 450805.451012.451253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.47058463233712 0 \N \N f 0 \N 0 176644163 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410585 2025-02-20 14:50:21.459 2025-03-29 22:39:49.748 \N Network security is a field that industry professionals typically study and practice for years before achieving competency. You are unlikely to find a single nugget of information that teaches you everything you seek.\n\nInstead of worrying about what the world already knows about your internet usage, take some actionable steps towards making your router STFU (shut the f*** up).\n\nPeople on the internet (and those running the internet) only know what your router tells them. They won't know very much if you make your router STFU.\n\nBuild your own router/firewall server or flash a store-bought one with open source firmware like OpenWRT or pfSense. This firmware will surface new configuration options that you can use to make your router STFU.\n\nFor example, you can make your router encrypt 100% of traffic and send it to an anonymous offshore no-KYC server with a Wiregaurd tunnel. The traffic is decrypted on the server and forwarded to the next hop. Even tor traffic will go this route, encrypted again so it no longer appears like tor traffic.\n\nWith a setup like this, go ahead and run dozens of services that are very chatty. Tor relays, bitcoin nodes, webservers, torrent seeders. Make it very noisy to distinguish patterns among the already encrypted data.\n\nThe offshore server knows very little about you because it was anonymous signup and paid with bitcoin. They just know your account number, and they know every request you make on clearnet. But the hope is that the offshore server doesn't have an obligation to share data with foreign government agencies.\n\nHopefully, only your ISP is forced to share data. And all they know is how many GBs of encrypted packets you send/receive to the offshore server.\n\nYou don't have to jump straight into this idealized setup. In fact, its probably impossible to set this up in a weekend unless you're already a professional.\n\nJust try to make your router STFU a little bit more every week. Study the dark art of Network Security and practice building your own defensive networks at home.\n\nRecommend this book: https://inteltechniques.com/book7d.html\n\nSpecifically the section on firewalls.\n https://example.com/ 17797 410421 410269.410283.410421.410585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3541976012568 0 \N \N f 0 \N 0 2681101 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449600 2025-03-23 12:55:44.002 2025-03-29 22:39:49.749 \N Blocking long chunks of time is extremely important for builders. I often block slots on my calendar for just this reason. Defend your time! https://example.com/ 21079 449577 449186.449577.449600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.28471788341945 0 \N \N f 0 \N 0 190609437 0 f f \N \N \N \N 449186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428761 2025-03-07 15:18:26.158 2025-03-29 22:39:49.749 \N We are so early.\n\nWhy? Because a tiny company with a few devs closing shop is notable. Its gonna be OK. I wish the Mutiny team the best in their future ventures. https://example.com/ 7654 428742 427552.428742.428761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2426148754727 0 \N \N f 0 \N 0 207329199 0 f f \N \N \N \N 427552 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401670 2025-02-13 10:03:28.853 2025-03-29 22:39:49.749 \N Wow, blast from the past.\n\nI must protest your description: Fyookball's article is complete garbage. His model for the Lightning Network is nonsense and on basis of that non-existent foundation all that math is complete eyewash.\n\nPlease refer to the reply I wrote back then:\nhttps://murchandamus.medium.com/i-have-just-read-jonald-fyookballs-article-https-medium-com-jonaldfyookball-mathematical-fd112d13737a https://example.com/ 8326 401649 401611.401649.401670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8893548505857 0 \N \N f 0 \N 0 221964189 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408266 2025-02-18 16:59:36.869 2025-03-29 22:39:49.749 \N I planned to create a larger blog post about this in the future but i'll share it here and maybe we can crowdsource things. \n\nThe purpose of this is to have a information to both bootstrap a community from zero and have a local(and distributed) copy of critical knowledge and tools available for any kind of emergency.\n\nMy idea was to first collect a list of things that need covering and start collecting the material, then package it in torrents, publish things on nostr, maybe even create a doomsday llm/search that would guide you through the content down the road.\n\nI've quickly created a repo to share some of the links I've collected to make the list public. I'm only linking to the content so please download the actual files. The list can be found in [this repository](https://github.com/aljazceru/world-backup/blob/main/README.md)\n\nthere is also [Ideas.md](https://github.com/aljazceru/world-backup/blob/main/IDEAS.md) where i'm throwing in ideas on things that i'd like to have a copy of. \n\n\n https://example.com/ 12935 408243 407903.408243.408266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1598664535094 0 \N \N f 0 \N 0 148260744 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444451 2025-03-19 22:12:21.688 2025-03-29 22:39:49.74 \N Just woke up thinking I was running late for work. But then I remembered it's fine, I got laid off 8 "business days" ago. \n\nIt was a short lived remote position that turned into a permanent layoff due to lack of projects. Those suckers are all getting ready for the Monday morning huddle up. \n\nI think I'm gonna drink coffee and stack SATS.\n\nWhen was the moment you realized the first realm only serves to drain ones life force? https://example.com/ 1519 444448 443836.443934.444448.444451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6693019320694 0 \N \N f 0 \N 0 138273262 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434972 2025-03-12 11:28:10.328 2025-03-29 22:39:49.74 \N well it looks like Lyn Alden might know about the book club now https://example.com/ 14791 434610 434577.434610.434972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3421823386057 0 \N \N f 0 \N 0 125303659 0 f f \N \N \N \N 434577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416939 2025-02-25 23:43:50.088 2025-03-29 22:39:49.741 \N I was thinking along the same lines! If @k00b made the bio posts free for newbies, we could get them started with some sats. That way SN can keep the current post fees as is.\n\n https://example.com/ 7773 416938 416158.416221.416253.416288.416551.416578.416605.416632.416869.416881.416929.416934.416935.416938.416939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9799605271989 0 \N \N f 0 \N 0 23108819 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410470 2025-02-20 13:49:37.539 2025-03-29 22:39:49.741 \N > would you roll back the functionality\n\nNo, not at all.\n\nBut if you really think about it; if you want to see ~econ in your feed, does the tag on the content really help *that much*? You're just gonna see the title of the post, and be like "Oh, cool...maybe I read this". It doesn't likely change the outcome of what you read. So, the tag, really only helps the people who don't want to see the territory content OR I suppose, people who want EXCLUSIVELY that territory's content. Which, is probably a rare way to browse SN.\n\n> curious to know what other cool tools\n\n## WAAAAY more control over zap flow\n\nStay with me here, the first sentence in the next paragraph is going to be jarring. But, if you think about it for a split second, my suggestion is step towards less centralization. As it stands right now, SN has a claim on 100% of zaps, and they've decided subjectively to set the split at 90-10 universally, and we trust them to forward it on according to those terms. But I see this like a centralized federal government declaring numbers for states. It works for some, but not others.\n\nTerritory owners should get a claim on 100% of the sats from any post and any comment in the territory. Then, the territory owner(s) should get to set a call-back URL, which is hit for every post, comment, and zap event, which gets the full context of the event, and then returns an object which represents the weights of where any zaps should go for that event. A protocol.\n\nThe territory owners would be able to set logic such as:\n\n1. Posters get 50% of the first 1000 sats, territory gets the other 50%, but poster gets 99% of anything higher, territory keeps the 1%.\n2. 13th day of the month, all zaps go to charity.\n3. Posters who are in the top ten, get 95% of zaps, else, you get 80%, balance goes to territory. \n4. Territory *treasury* gets 5% of all zaps. Territory can do their own games with this pile.\n5. Split revenue for 15 days across these specific names proportional to specific weights.\n6. A dice-roll on every zap, determines the split.\n\nThis 90-10 split is a subjective constant chosen by SN, which makes for a market-clearing number under certain conditions. If I had made 200K sats from the 10% rake, I'm 10000% sure, that I would lower the split cause if I didn't, ~econ2 would pop up. Conversely, it makes no sense to spend 100K to get 5K in "revenue". SN needs to 20x before we're looking anywhere near breaking event at the 100K.\n\n## Data\n\nJust, lots more info about whats going on in the territory. \n\n## Tagging + API\n\nWould like to be able to add value, by auto-tagging, programmatically, via after-the fact API.\n\n https://example.com/ 17162 409934 409934.410470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.66903164195728 0 \N \N f 0 \N 0 103212014 0 f f \N \N \N \N 409934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408045 2025-02-18 14:45:36.378 2025-03-29 22:39:49.741 \N I am not aware of any comprehensive, strong cases for why bitcoin could fail and haven't written one yet myself, so I'll at least give myself a running start here. Some of this has been mentioned by others on this thread already so consider this reinforcement of their arguments :)\n\nI consider there to be two main failure modes for bitcoin:\n1) failing to reach its full potential\n2) nearly completely failing\n\nFailure mode (1) could happen a few ways. But before digging into this, it's worth defining what I mean by "full potential". I consider bitcoin's "full potential" to be: anyone who wants to use bitcoin as p2p electronic cash (self-custodial electronic money with strong censorship resistance and strong security against double-spending) is able to use it, and use it at a cost that makes sense (i.e. it shouldn't cost 50 sats to spend 100 sats).\n\nOne way bitcoin could fail to reach its full potential is that the bitcoin community fails to invent and implement ways to scale bitcoin so it can be used by everyone who could possibly want to use it. Self-custodial transaction capacity maxes out and most people will end up using some kind of custodial system to transact in "BTC", reintroducing the problem of trust and reversible payments that bitcoin was designed to solve in the first place.\n\nAnother way bitcoin could fail to reach its full potential is that the bitcoin community fails to invent and implement ways for BTC to be used in every type of transaction where money is required. For example, many new privacy protocols, p2p financial contracts, and self-custody schemes such as vaults have been implemented on alternative blockchains. If someone wants to use these new features with their money, currently the only way to use these features with bitcoin is using (semi)custodial mechanisms for bridging bitcoin to these other chains (RBTC, L-BTC, WBTC, and the like), again reintroducing the problem of trust that bitcoin was designed to solve. If people want to use these new features in a self-custodial way, they have to buy an asset that is native to these other chains that implement the feature (ETH on Ethereum, for example). If people continue to buy these alternative assets instead of BTC because BTC cannot be used with these new features without some (semi)custodial mechanism, I consider that a failure of BTC to reach its full potential.\n\nMaybe my definition of "full potential" is a mirage and can never be obtained. I'm willing to accept that, provided all options are exhausted. But I do think it's a goal worth striving for.\n\nThat brings me to failure mode (2), nearly completely failing. There are a couple of ways failure mode (2) could happen that I can think of.\n\nThe first is as a conclusion of failure mode (1): because bitcoin fails to reach its full potential, eventually enough "true believers" die off that more and more BTC left to the next generation is sold, fewer and fewer people are transacting and paying fees to miners, etc. So there's this "death spiral" feedback loop of fewer users -> sell pressure and less usage -> hashrate drops -> less security -> sell pressure and less usage -> hashrate drops... etc and this continues until bitcoin is basically a hobbyist thing that maybe a few thousand people worldwide care about and the market cap is at most today's equivalent of a few million USD. As long as there's a single computer mining blocks, bitcoin will never "completely fail" in terms of totally stop working, but as a monetary system, for all intents and purposes, if it is a hobbyist thing used by a few thousand people at most, I consider this "nearly completely failing".\n\nAnother way failure mode (2) could happen could be instigated by a severe govt crackdown: bans on self-custody, exchanges, mining, running nodes, etc. This could leave a core of "resistance fighters" who continue to use bitcoin underground. They will need to "keep the flame alive" by recruiting the next generation of resistance fighters, if they don't maintain sufficient recruitment then the "death spiral" I described above could occur as the resistance fighters die off.\n\nThere is a failure failure mode (3) which I consider _highly_ unlikely but worth mentioning. This is "total failure" meaning that no more blocks are mined and bitcoin has zero monetary value because it cannot be transferred and/or literally everyone has lost interest in bitcoin. For this scenario to occur, computers and telecommunications networks will need to completely fail for an extended period of time. This is a post-apocalypse scenario: nuclear war, asteroid strike, a cosmic event fries all computers including miners, the sun explodes before humans can get beyond its blast area, etc. https://example.com/ 656 408019 407657.407951.408019.408045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9751309994512 0 \N \N f 0 \N 0 30415821 0 f f \N \N \N \N 407657 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414023 2025-02-23 15:23:47.029 2025-03-29 22:39:49.741 \N I'm happy for Assange, and I don't want to take away from the fact that he will soon be free, but the fact that the US gets a guilty plea out of this is bullshit. Leaking national security secrets? The case will now be precedent, and will basically put another nail in the coffin of a free press. https://example.com/ 766 414002 414002.414023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0658142879131 0 \N \N f 0 \N 0 192451766 0 f f \N \N \N \N 414002 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437948 2025-03-15 02:24:18.456 2025-03-29 22:39:49.741 \N > In the US, the markets are so standardized, commoditized, and "thick" that negotiation isn't part of most transactions.\n\nNever thought of this before, but now that you say it, it's clearly true.\n\nSad story: \n\n\\#\n\nI was traveling through Africa some years ago. As a white dude, I drew a ton of attention, and people would swarm around me, wanting to "talk" to me, the scare quotes indicating that such conversations would invariably end up with them pestering me to buy trinkets I didn't want. \n\nThis faux-friendliness made me feel gross and angry, and after a bit I'd just ignore them, which would result in me walking down the streets with some dudes scampering around me making increasingly aggressive conversational gambits, me walking stoically forward, bleeding out psychic energy.\n\nAfter several minutes of one such encounter, the guy, as a closing remark, said: "You must be from Spain."\n\nThis was an odd enough approach that I broke my strategic silence. "Why?"\n\n"People from Spain think they're better than everyone, and so do you."\n\n\\#\n\nThis made me feel terrible, bc it was literally the opposite of what I'm about, and it was the _entire reason_ for my behavior: where I'm from, acting friendly to someone just because you want them to buy your shit is fake and gross. I interpreted his behavior through that lens. \n\nTo him, however, the encounter meant something else -- the wish for me to drastically overspend on his doodads could live harmoniously with a genuine desire to be friendly and to connect.\n\nThis was years ago. I still feel awful.\n\nI also wonder wtf encounters he had w/ Spaniards that led to that comment, but I lost my chance to find out.\n\n\\#\n\nAnyway, your observation is very wise. I'm curious how you've been able to operationalize it? The anti-negotiation thing runs _so deep_ in me I don't know what I'd do with the insight, honestly.\n\n https://example.com/ 17316 437502 437502.437948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3186247790773 0 \N \N f 145226958 \N 1 25075248 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421022 2025-03-01 11:03:28.724 2025-03-29 22:39:49.741 \N ![IMG_9852.jpeg](https://m.stacker.news/5180) https://example.com/ 21829 420951 420895.420951.421022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.912843159691 0 \N \N f 0 \N 0 115816756 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 86447 2023-11-15 23:10:03.15 2025-03-29 22:39:47.604 Bitcoin is for anyone, but NOT for everyone I feel like there's a point within some bitcoiners' journies in which they come to terms with the fact that Bitcoin is NOT for everyone. \n\nBitcoin is all about creating a better world, but the reality that seeps in more and more just by looking at the data suggests that the transition will be ugly. \n\nThere will be swaths of people who likely never own any Bitcoin at all, or such insignificant amounts that they won't be any better off. The average person will only have "exposure" to Bitcoin through some paper-fabricated product, keeping them stuck in the fiat system.\n\nEveryone is moving upstream against a current that's only getting faster. It's becoming more expensive just to fund our reckless behavior than it is to defend it. \n\n![us interest payments.jpeg](https://m.stacker.news/7158)**Something must break**.\n\nI don't think some magic AI wave or other saving grace is going to swoop down and save everyone from this _real_ damage that fiat is creating.\n\nThose who took out the time to see Bitcoin will build the foundation for bigger and better societies, cultures, and economies. Bitcoin was never meant to bring equality to the world. Equality is an anti-natural psyop.\n\n**One is just better than the other. There will be winners and there will be losers.**\n\nWhen I reoriented my mind to think of history as _cyclical_ rather than _linear_, I instantly started to feel more connected to it. Everything that happened in the past isn't necessarily "in the past" -- it actively dictates the present day.\n\nAnd there's only so much deprogramming that our technology can do to keep society "stable" -- at the end of the day, we are ancient biological beings, and our actions over time will reflect that.\n\nNoah's Ark and the stories told in ancient literature merely reflect the movements of society at large. In the 21st century, fiat is the flood. My more naive self liked to think that somehow, this time with Bitcoin is different, that maybe the world will recognize a good thing, and act on it accordingly. But definitely not. \n\nThe world _will_ become much better with Bitcoin. But not everyone will be able to enjoy that. It will be a long, increasingly chaotic battle to fight. \n\n**Some people simply are not ready for the responsibility that Bitcoin gives them.** Taking self custody of your own money isn't child's play -- it's a revolutionary action, and you better believe it'll be challenged.\n \N 831 \N 86447 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5722261803191 0 \N \N f 0 \N 0 229481797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 91022 2023-11-27 12:33:09.966 2025-03-29 22:39:47.604 Fast. Tell me. What was the *first* book that captured your imagination? ![GIPuE_FXMAAesCn.jpeg](https://m.stacker.news/20583) \N 16704 \N 91022 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.96389755968632 0 \N \N f 0 \N 0 219345120 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455067 2025-03-26 18:13:45.05 2025-03-29 22:39:49.741 \N Bought myself and my wife some merch to wear out in the wilderness 😹\n\nhttps://imgprxy.stacker.news/8ygKAt8E5BeunkKVxqJgcN-GR1UK6Zh64DmsXo5ZSq8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9VOVd6aThULmpwZw\nhttps://imgprxy.stacker.news/w_NxglRUeowv8eAP-dnm99Wrq-NFXQlIMTTnzys-1qk/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS82bXNYUjdNLmpwZw\n\nSorry for shameless plug, but it's true! [cosatoshi.shop](url) https://example.com/ 4083 455055 454895.455055.455067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.9299823442221 0 \N \N f 0 \N 0 183888281 0 f f \N \N \N \N 454895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431113 2025-03-09 15:29:37.192 2025-03-29 22:39:49.741 \N > I think it's still counterintuitive to many people\n\ni think we just got used to not paying for stuff _at all_. not even 1 sat.\n\nlike 0 interest rates gave companies bad (spending) habits\n\ncompanies which made us the product gave us bad habits, too https://example.com/ 634 413011 413011.431113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.31455554247 0 \N \N f 0 \N 0 124513898 0 f f \N \N \N \N 413011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428125 2025-03-06 21:40:23.952 2025-03-29 22:39:49.741 \N Just yesterday I came across this article:\nhttps://medium.com/@Fiach_dubh/rekt-crypto-hardware-con-artists-creep-into-bitcoin-8ad713198d3a\n\nAny comment, please? https://example.com/ 20979 427820 426148.426472.427820.428125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.59739173645843 0 \N \N f 0 \N 0 71743284 0 f f \N \N \N \N 426148 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424368 2025-03-04 02:58:29.814 2025-03-29 22:39:49.741 \N hahah I just posted something new to Substack today because I saw that you followed me over there. I haven't posted there in maybe two years. lol\nThanks for kind words and thanks for being my reader! That will come in handy when I get my next book down, I'll have your feedback to collect.\nAlso the inspiration for this story was a dream, the shirt was the only concrete part that came out of the dream and into the story. https://example.com/ 21768 424357 424235.424357.424368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8597980182058 0 \N \N f 0 \N 0 209044928 0 f f \N \N \N \N 424235 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424402 2025-03-04 04:13:20.918 2025-03-29 22:39:49.741 \N A big issue was the fact that the source code was not public. It appears that is is now though: https://github.com/imperviousai\n\nWould be good to know if the browser can actually be built from the repo, as it should ideally be..\n\nEDIT: am in the process of following the build steps here, all good so far: https://gitpod.io/github.com/imperviousai/imp-browser\n\nI can see now that it's based on Firefox, nice to have a new browser that isn't chromium based https://example.com/ 666 424336 423667.424336.424402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5914807056782 0 \N \N f 0 \N 0 86953980 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410493 2025-02-20 14:03:44.804 2025-03-29 22:39:49.741 \N What's your bitcoin story? How did you hear about it? What convinced you of its utility? https://example.com/ 2342 410420 410420.410493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.01307995490578 0 \N \N f 0 \N 0 226566983 0 f f \N \N \N \N 410420 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444431 2025-03-19 21:45:53.29 2025-03-29 22:39:49.742 \N legitimizing scams and running scams is not the way. Furthermore, some of these scams may be attacks on Bitcoin proper.\n\nThere is no excuse for participating as a witless fool, or greedy grifter in this activity.\n\nAppeals to the greater good lead to hell. https://example.com/ 11165 444116 443836.444116.444431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8356205367818 0 \N \N f 0 \N 0 91865708 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450958 2025-03-24 10:20:21.113 2025-03-29 22:39:49.742 \N Only from random individuals who claim they got hacked or scammed, and obviously we don't have that info as we are not a chainalysis company. https://example.com/ 770 448582 448526.448544.448582.450958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2853649076521 0 \N \N f 0 \N 0 222764136 0 f f \N \N \N \N 448526 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454728 2025-03-26 15:10:32.995 2025-03-29 22:39:49.741 \N It's not taught in the American schools system, but before 1913 there was no personal income tax. The first years of the income taxes, in 1913 the income of $20,000 ( $617,557.58 inflation adjusted) [was taxed at 1%](https://en.wikipedia.org/wiki/Revenue_Act_of_1913), and at $500,000 ($15,438,939.39 now) at 6%. This is what made America rich (the Gilded Age was still before the income tax), the wealth that's being squandered now on entitlements and on foreign wars.\n\nHere's the entire 4 page long first ever [1040 form with instructions](https://files.taxfoundation.org/legacy/docs/86626fd2c93c905f88f2668d09b19b28.pdf), in its entirety. Those who dealt with complicated income taxes recently, can compare the complexity. \n\nAlso, one should not underestimate the psychological burden of compliance (fear of compliance often makes one not engage into a business activity that would otherwise be socially productive) and the required time investment for compliance.\n\n https://example.com/ 17722 454722 454701.454713.454722.454728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.62083355512679 0 \N \N f 0 \N 0 158095371 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404418 2025-02-15 21:24:28.437 2025-03-29 22:39:49.741 \N Hey @k00b and @kr, on the last SN podcast, KR had a great idea about companies AMA !\n\nLet's do this! Invite bitcoin related companies to present their product/service and have an AMA.\nAmazing idea! https://example.com/ 9833 403824 403824.404418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.57862626213103 0 \N \N f 0 \N 0 54056772 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417060 2025-02-26 03:48:11.97 2025-03-29 22:39:49.741 \N Come to the next one!\nThis is a high signal event. https://example.com/ 1244 417013 416056.416366.416382.416991.417013.417060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5012672847644 0 \N \N f 0 \N 0 233906795 0 f f \N \N \N \N 416056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435005 2025-03-12 11:54:33.41 2025-03-29 22:39:49.742 \N Getting close on the next release of wallet, cursing the existence of Apple products the whole way. \n\n![Screenshot_20240117_095051.png](https://m.stacker.news/12759) https://example.com/ 9529 434652 434646.434652.435005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2709649978167 0 \N \N f 0 \N 0 81819433 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407362 2025-02-17 23:18:13.623 2025-03-29 22:39:49.742 \N with graphene in airplane mode, without a sim, you can actually NOT be tracked https://example.com/ 20906 407355 406449.406482.407355.407362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8712909074711 0 \N \N f 0 \N 0 213659561 0 f f \N \N \N \N 406449 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444483 2025-03-19 23:18:06.251 2025-03-29 22:39:49.742 \N Amsterdam https://example.com/ 12222 444482 443372.443652.444482.444483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3990054564121 0 \N \N f 0 \N 0 131574092 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437778 2025-03-14 21:53:44.916 2025-03-29 22:39:49.742 \N Generally, I think it can be summed-up that **the world is going through immense change**, the likes of which we have not seen before. For our generation or others. Included is a bunch of new tech, good and bad.\n\nThis follows a period of immense stagnation, where it seems on the surface many technologies have been suppressed and held-back for years or decades. Perhaps for either the cost-benefit to make sense, or for the moment to cause maximal societal impact.\n\nThe reaction we see ‘just stop oil’, ESG hysteria and the call for regulations, is natural. **We as humans don’t like change**. Especially not of this magnitude. Not to mention, lobbying gets done by incumbent companies with outsized influence or a headstart already. Trying to build a moat and prevent further disruption.\n\nThe best we can do, is be open to change and to keep experimenting with new things in my mind. Stick to our values, on privacy and inclusion and transparency. If so, it will be easier for us, than others in society. Those without a critical eye, who are resistant to change are going to find these next 5-10 years ever more challenging to navigate, I believe. \n\nCentralised systems & honeypots are likely to keep failing and leaking data. Hacks, attacks, leaks, downtime… it’s going to be never-ending when SHTF. Soon after, people will be demanding decentralised tech, for fear of being burned ever again. We’ve had peak fiat.\n\nThat’s my 2 sats. https://example.com/ 21022 437427 437408.437411.437417.437427.437778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.688123487320453 0 \N \N f 0 \N 0 48468328 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444152 2025-03-19 17:38:17.32 2025-03-29 22:39:47.605 Subscription plans vs transaction fees Assuming that the majority of users will not host their own nodes, what do you think is their preferred way to 'pay' for a wallet's development and operational expenses? \N 14168 \N 444152 \N \N \N \N \N \N \N \N B2B \N ACTIVE \N 12.714009475503 0 \N \N f 0 \N 0 38640899 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417756 2025-02-26 15:34:55.273 2025-03-29 22:39:47.605 What deters people from Bitcoin is their unwillingness to embrace uncertainty People are attached to fiat because it (and more broadly, the state) gives them a false sense of certainty - through state schooling, propaganda and manipulation.\n\nThey think of their oppressor's fiat as a fixed measuring stick, and when you bring up inflation, they don't connect it to the stick's shrinking.\n\nI saw a Reddit post recently where the OP, presumably based in the eurozone, was considering depositing EUR to an account and converting it to USD to earn a higher interest rate (5.1% on USD vs 4.1% on EUR). The commenters warned him it was "gambling" due to exchange rate fluctuations. As if holding the ever-devaluing euros wasn't gambling and a box of eggs was going to be obtainable for €2 in perpetuity, because somehow the "full faith and credit" of the EU means Christine Lagarde's indentured servitude tokens are going to be backed by a constant supply of chickens dropping eggs one after another, forever and ever.\n\nThe FIRE community, too, is fiercely against Bitcoin. However, people over in r/LETFs are warmer to it. Not because they've gone down the rabbit hole and understand its value proposition, not because they've studied monetary theory, or the tech, or believe in privacy and individual sovereignty, but because - as 'degens' - they're open to volatility and uncertainty. They may not be willing to hodl forever, they may see it more as a mid-term trade than the foundations of a new financial system, they may not have an understanding, but they do have balls.\n\nAnyone who has studied human action knows that there is no absolute reference point for measuring value. Value is subjective, a good is exchanged for another good, and price is the exchange rate of the last trade. Money is just another good - and the economy may converge on one such good, causing it to become the most liquid good with the least decreasing marginal utility. But no one can guarantee its value, or, indeed, that it will continue to be used as money.\n\nThere is no certainty in human action and consequently there is no certainty in the market.\n\nTo go on a Bitcoin standard you have to embrace this fact, which may be scary to those who have fallen for the myth of certainty created by the fiat empire's brainwashing machine.\nAnd that doesn't only mean the volatility on the NGU curve, but even the possibility it may go to zero.\nBut even if it does, at least you have accepted the truth; you may be broke, but your eyes are open.\n\nYour alternative is to take the blue pill and wake up in your prison cell, with a bowl of rice, believing in the state's certainty fairy tale and being exploited by it until its empire falls and gets replaced by the next one. \N 14941 \N 417756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9381658091088 0 \N \N f 105168886 \N 1 65784167 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421234 2025-03-01 14:07:20.677 2025-03-29 22:39:49.742 \N Migrating a group of workstations running Windows to Ubuntu 24.04 LTS https://example.com/ 5495 420503 420503.421234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9001502306386 0 \N \N f 0 \N 0 211818877 0 f f \N \N \N \N 420503 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451416 2025-03-24 14:40:48.095 2025-03-29 22:39:49.742 \N Day 258 of snailposting everyday 'til BTC hits $100k.\n\n...and 58 push-ups. (25 - 10 - 10 - 5 - 8)\n\n__@_'-' https://example.com/ 899 451034 451034.451416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.743005435389 0 \N \N f 0 \N 0 92843071 0 f f \N \N \N \N 451034 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421231 2025-03-01 14:05:14.863 2025-03-29 22:39:49.742 \N ![IMG_3724.jpeg](https://m.stacker.news/20954)\n\nSpotted at Singapore Zoo https://example.com/ 954 421030 420895.420959.420986.421030.421231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.228382344415436 0 \N \N f 0 \N 0 6453603 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438048 2025-03-15 07:25:17.619 2025-03-29 22:39:49.742 \N Saif has always been a crazy person and beyond the contribution of his book, I find the whole of his personality intolerable. The entire reason him and Nassim beefed so hard Nassim became anti Bitcoin is because Saif and Nassim's egos are too large to be seen with each other.\n\nI don't really need to get my information from people who cannot demonstrate themselves to be humble. Always a sign they are willing to sell you lies in order to prop up their ego. https://example.com/ 1090 436326 436326.438048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9690755992392 0 \N \N f 0 \N 0 9378109 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455177 2025-03-26 19:21:09.67 2025-03-29 22:39:49.742 \N Shipping! https://lightningprivacy.com/en/introduction\n\nhttps://stacker.news/items/100752 https://example.com/ 17365 455125 455125.455177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.932294820277022 0 \N \N f 0 \N 0 130015784 0 f f \N \N \N \N 455125 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444491 2025-03-19 23:44:26.866 2025-03-29 22:39:49.742 \N I've only seen them in nostrudel, and they leave alot to be desired. \n\nSN could make a sub called "Community Subs" \n\nIn Community Subs would be a list of user generated subs like \n\n"Darthcoin Citadel Temple" \n"Thriller SOF" \n"3d Printing for the plebs" \n\nwith functionality for the Community leader/leaders to moderate content\npay sats to post\npaid subscribers\n\nIt would be wild to create an NPUB for the sub, and crosspost alot of the content to nostr, like some sort of blog with community driven posts. https://example.com/ 11073 444168 444168.444491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3438150109039 0 \N \N f 0 \N 0 26365500 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408021 2025-02-18 14:31:00.999 2025-03-29 22:39:49.742 \N 1000 sats for Anita!\nand 1000 sats for SN pool, just to start well this morning.\n\nI learned this from my grandfather: start your day with giving something, no matter the amount, the gesture or the item, but give something without requesting anything in return. \nYour day will be a good day. https://example.com/ 629 407607 407607.408021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.41196706572364 0 \N \N f 0 \N 0 118250908 0 f f \N \N \N \N 407607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451410 2025-03-24 14:36:07.337 2025-03-29 22:39:49.742 \N there's no moment when you can declare "success" and consider the job done.\n\ndigital preservation is an ongoing, eternal process. I think that keeping bitcoin successful is similar, it's something that's worked on every day etc. https://example.com/ 9655 451395 451395.451410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.12668761295468 0 \N \N f 0 \N 0 9385311 0 f f \N \N \N \N 451395 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451297 2025-03-24 13:35:49.039 2025-03-29 22:39:49.742 \N If were just a pleb a newbie dev making a mistake, then yes, return them.\nBut Paxos, paypal etc ... no. fuck'em\n[![you-get-what-you-deserve.gif](https://imgprxy.stacker.news/l_iqxLjuH9wXVwmy8DVAOQGa1l0nmbZbq6IReAODZK4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvemZnMVpzc0YveW91LWdldC13aGF0LXlvdS1kZXNlcnZlLmdpZg)](https://postimg.cc/v1bK5NH4) https://example.com/ 19502 451293 451292.451293.451297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.78904663988487 0 \N \N f 0 \N 0 156073106 0 f f \N \N \N \N 451292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 215800 2024-08-16 21:18:48.446 2025-03-29 22:39:47.605 Been buying bitcoin every month since October 2017 (85 months now) Not me.\n\nThis fella has been maintaining this blog for years. He just DCAs 500€ each month, reports on how he's doing and comments a thing or two. That's it.\n\nHis blog is one of the drivers that brought me to start my Operation Saylor series. https://er-bybitcoin.com/stackingem-volume-37-october-2024/ 2061 \N 215800 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.72046532660585 0 \N \N f 0 \N 0 249138660 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401669 2025-02-13 10:02:43.737 2025-03-29 22:39:49.742 \N This is a quick way to get muted and outlawed son.\n\nYou will earn little to no sats posting like this. I’d suggest changing strategies.\n https://example.com/ 1814 401643 401611.401643.401669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2499067975588 0 \N \N f 0 \N 0 188745245 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423880 2025-03-03 17:03:53.15 2025-03-29 22:39:49.743 \N Not sure I want to wade into this one fully, but, I think you misunderstand the capability of the Lightning Network to provide scale.\n\nYes, it can provide an "unlimited" number of transactions. Lightning does an amazing job scaling the number of payments between parties that have a UTXO. Also yes, it's conceivable that the cost of opening a Lightning channel will be worth the cost, even on an individual basis, for quite awhile longer.\n\nThe problem isn't about cost, exactly (though the issues are related). The problem is throughput. It is the sheer number of UTXOs required to use the Lightning Network this way. We simply cannot make enough Lightning Channels for individuals, at scale, to have ownership over their bitcoin with a self-custody Lightning UTXO.\n\nArguing about cost isn't going to change that fact. You may be fine with this, and it's an arguable point, but what you're really saying is that custodial solutions are the way most people will use bitcoin going forward. https://example.com/ 17517 423814 423681.423814.423880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.39430303493791 0 \N \N f 0 \N 0 117839896 0 f f \N \N \N \N 423681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404502 2025-02-15 23:26:45.268 2025-03-29 22:39:49.743 \N https://radio.noderunners.org/ 😃 https://example.com/ 4166 404095 404095.404502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1697875724441 0 \N \N f 0 \N 0 245645135 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437786 2025-03-14 22:08:49.684 2025-03-29 22:39:49.743 \N most stupid comment of the month award https://example.com/ 699 437774 437714.437774.437786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4049435623292 0 \N \N f 0 \N 0 174478629 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 271535 2024-10-19 12:12:45.066 2025-03-29 22:39:47.606 Ramifications Of A Samourai Plea Bargain \n![](https://m.stacker.news/35778)\n\n### The Government's Case\n\n\nToday I read this very well researched [article](https://bitcoinmagazine.com/legal/freesamourai) in Bitcoin Magazine about the Samourai Prosecution. I highly recommend it, as it points out the very real problems the prosecution has with the indictment. I have also been following The Rage's "Where's Waldo" like [attempt](https://njump.me/nevent1qqs0mhkp0n5sq735z6xc3nxttveywd2z9dps9txj584zfnpl86f28tczyrv2dm8scwtw428hnfzf0l5mwlwfwa3ng50nefwxxn3qsev3zej8kwgf04j) to track down William Lonergan Hill (TDev), whose whereabouts since the indictment are unknown.\n\n### I Smell A Rat\n\nThe lack of a case file probably seems unusual to a lay person, but I'm not surprised. I believe there is a good possibility that Mr. Hill may be cooperating with the federal government. This is the norm in federal criminal proceedings. The fact is I don't recall any case I handled in the Southern District involving multiple defendants where no one cooperated. Federal criminal penalties are severe, and just about all cases wind up with guilty pleas rather than jury trials. Both the government and defense lawyers know this. Here, it would be unrealistic to expect the defendants to be "stand up guys" for the sake of bitcoin. They and their lawyers are probably worried about their families and their freedom, not the future of self custody. I could be wrong, but in case I'm right, allow me to speculate as to how this case may play out.\n\nUnder US Federal Sentencing Guidelines, defendants can earn what is commonly known as a 5K letter, which gives the judge discretion to impose a very lenient sentecne if the defendant provides "material assistance to the government" in this case or other cases. The defendant must plead guilty to get this benefit. In the sleazy world of horse trading known as plea bargaining, the rule is you must net "a bigger fish." Therefore, I doubt one of these defendants would cooperate against the other, unless one of them was actually assisting a third party to launder actual criminal proceeds. More likely, Mr. Hill could offer the government a treasure trove of "criminals" who used the mixer for "criminal" purposes. I am ignorant of the technical aspects of the samourai wallet and its mixing capabilities, so I'm not sure whether this is possible by just examining transactions. If not, the cooperation would have to be based on actual communications with individuals who expressed criminal intent.\n\n### The Sword Of Damacles\n\nRegardless of how this is done, it will likely be a bad outcome for bitcoin. If other cases are now being investigated, this case will be dragged out until those cases are prosecuted. This is because the government may need the cooperating witness to testify at trial. \n\nWhether intentional or not, this scenario would accomplish exactly what the government seems to want. The chilling effect on the bitcoin industry has already been substantial. Developers will work for years while wondering whether their project will be targeted next. Questions about what constitutes a money transmitter will remain unresolved. At the same time, there is no trial, where the defense can present the obvious and powerful defenses that are explained well in the article I linked above. \nI know this is a grim scenario. I may be completely wrong, since I am speculating. On the other hand, it's not far fetched. It would be the normal outcome of a case in federal court. \N 1447 \N 271535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0953118863171 0 \N \N f 0 \N 0 130285032 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423057 2025-03-02 23:06:48.555 2025-03-29 22:39:49.743 \N I had the same thought but instead of having this just appearing in settings, a small number of default options show-up when you hold-down to custom-tip.\n\nSimilar to cafe cashier tipping options where they anchor you on an 18% tip being the lowest option....\n\nOnly problem I see is if you accidentally fat-finger 80k sats to someone. https://example.com/ 20922 422587 422587.423057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5190461084199 0 \N \N f 0 \N 0 219171207 0 f f \N \N \N \N 422587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449092 2025-03-23 07:21:07.839 2025-03-29 22:39:49.743 \N Day 188 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 7916 448710 448706.448710.449092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.447538855844662 0 \N \N f 0 \N 0 243727316 0 f f \N \N \N \N 448706 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449099 2025-03-23 07:25:03.962 2025-03-29 22:39:49.743 \N first time here.\n\ncant believe - a comment gave me 100 sats :)\n\nstoked about the possibilities.\n\nquite cool. https://example.com/ 19471 448820 448820.449099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3611624172964 0 \N \N f 0 \N 0 154673871 0 f f \N \N \N \N 448820 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404333 2025-02-15 19:22:27.968 2025-03-29 22:39:49.743 \N Learning to learn. https://example.com/ 9351 404279 404279.404333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.20773568296731 0 \N \N f 0 \N 0 76275941 0 f f \N \N \N \N 404279 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438105 2025-03-15 09:03:16.311 2025-03-29 22:39:49.743 \N Have you ever seen how Dune Analytics allows users to make dashboards, then share them? I see you guys are attempting to curate and maintain sets of nodes. You're calling them "[Directories](https://app.exponentiallayers.com/Explore/Directory?filter=Exchange)". Keeping this list current takes effort/maintenance. And might not be correct. Especially if you're expecting your node-operators to opt into be tracked.\n\nYou could split the chore of finding/curating the node list and displaying the data. Let your users curate sets of nodes for you, you handle the displaying of the data part for any set of nodes they want.\n\nImagine "Jeff's List of Exchanges" or "Jeff's list of top 5 largest-exchanges by volume updated quarterly" or "Jeff's North American Exchanges" or "Jeff's 2021 No-KYC Services" or "@kr 's curated list of Exchanges".\n\nv0.1 could be "enter a link to a a github gist" \n\neg. Imagine a link to `node_list.md`\n\nFirst line is the title, every other line is a node id.\n\n```\n# Random List of CEX Exchanges\n030c3f19d742ca294a55c00376b3b355c3c90d61c6b6b39554dbc7ac19b141c14f\n037659a0ac8eb3b8d0a720114efc861d3a940382dcfa1403746b4f8f6b2e8810ba\n03cc1d0932bb99b0697f5b5e5961b83ab7fd66f1efc4c9f5c7bad66c1bcbe78f02\n02f1a8c87607f415c8f22c00593002775941dea48869ce23096af27b0cfdcc0b69\n03cde60a6323f7122d5178255766e38114b4722ede08f7c9e0c5df9b912cc201d6\n03037dc08e9ac63b82581f79b662a4d0ceca8a8ca162b1af3551595b8f2d97b70a\n0311efd369cf39ca56df895232f02b75dfa64958c28b2890f3c3d59d9cff626510\n0242a4ae0c5bef18048fbecf995094b74bfb0f7391418d71ed394784373f41e4f3\n0294ac3e099def03c12a37e30fe5364b1223fd60069869142ef96580c8439c2e0a\n026165850492521f4ac8abd9bd8088123446d126f648ca35e60f88177dc149ceb2\n037f990e61acee8a7697966afd29dd88f3b1f8a7b14d625c4f8742bd952003a590\n03271338633d2d37b285dae4df40b413d8c6c791fbee7797bc5dc70812196d7d5c\n02a04446caa81636d60d63b066f2814cbd3a6b5c258e3172cbdded7a16e2cfff4c\n030057ffea1a1650ce716aab702c9fc29ce24659b89650eb963f2455df0194c997\n020a1df50b701331a29782093210460b10eee0ac5ef6a01b9c51dff9b8fddf5fb0\n02fb79c3a9121d85b126687bd111eaebf21aaaaa5cbf232e2b6c3bdf8803f40182\n02fe80fb6a2dc0fb6e9bec49c76d048889c91355d4e900fcb026bf095665790325\n027e298196904f751891ca473b6d6a205649a47823ed0157e2f1211026278cd847\n```\n\nThen, given any set, plotting the time-series of capacity, count of channels, and per-exchange averages, for "Exchanges", would be a great chart over time.\n\nIt would make your site more interactive.\n\nI think an idea like this, would help with social proof of lightning and bitcoin. When humans see trends created by other humans, they like to jump on them. \n\nGood luck building! 💪\n\nPS - thanks for running the contest. I think it's generous and seems fun. https://example.com/ 2293 438077 438065.438073.438077.438105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0486988552151 0 \N \N f 0 \N 0 50961645 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437781 2025-03-14 21:57:26.301 2025-03-29 22:39:49.744 \N ![](https://www.zapread.com/i/-4~) https://example.com/ 1002 437737 437720.437737.437781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.963241876808816 0 \N \N f 0 \N 0 104708672 0 f f \N \N \N \N 437720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424256 2025-03-03 23:27:07.683 2025-03-29 22:39:49.744 \N 1. Why only BOLT12 and not LNURL/LN Address?\n2. Why LDK as backend?\n3. Why is displayed USD on the main wallet screen and not BTC? We are talking about a Bitcoin wallet not fiat wallet, right?\n4. What is doing the "Fund" button on the main screen? Open LN channels or buying sats from an exchange?\n5. The 0.5% fee/payment is only for sending or also for receiving? Is an interesting model to keep online a node and charge a fee per tx, without need to take care of liquidity. But what about privacy? How do I know that the liquidity you provide is not actually tracking all my txs?\n6. Is Lexe another FBI stunt move like FBIbook? https://example.com/ 20778 424236 394203.394251.400201.424131.424214.424233.424236.424256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8396654905331 0 \N \N f 0 \N 0 10109664 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458302 2025-03-29 07:19:56.445 2025-03-29 22:39:49.744 \N Some good dev follows on nostr:\n\n - calle (cashu): npub12rv5lskctqxxs2c8rf2zlzc7xx3qpvzs3w4etgemauy9thegr43sf485vg\n - Pablo (highlighter and a million NIPs): npub1l2vyh47mk2p0qlsku7hg0vn29faehy9hy34ygaclpn66ukqp3afqutajft\n - Ben Arc (LNBits): npub1c878wu04lfqcl5avfy3p5x83ndpvedaxv0dg7pxthakq3jqdyzcs2n8avm\n - Verbiricha from habla.news: npub107jk7htfv243u0x5ynn43scq9wrxtaasmrwwa8lfu2ydwag6cx2quqncxg\n - k00b (SN): npub1qkfnmpuz692azr8c5phn0930x2v92xyqvwgr6ve8znaa3qd6c3hq09ertp\n - Ben Carman (Mutiny): npub1u8lnhlw5usp3t9vmpz60ejpyt649z33hu82wc2hpv6m5xdqmuxhs46turz\n - JeffG (nostr.how): npub1zuuajd7u3sx8xu92yav9jwxpr839cs0kc3q6t56vd5u9q033xmhsk6c2uc\n - Brugeman (nostr.band): npub1xdtducdnjerex88gkg2qk2atsdlqsyxqaag4h05jmcpyspqt30wscmntxy\n - Hodlbod (Coracle): npub1jlrs53pkdfjnts29kveljul2sm0actt6n8dxrrzqcersttvcuv3qdjynqn\n - Bumi (Alby): npub1xv8mzscll8vvy5rsdw7dcqtd2j268a6yupr6gzqh86f2ulhy9kkqmclk3x\n - Miljan (Primal): npub16c0nh3dnadzqpm76uctf5hqhe2lny344zsmpm6feee9p5rdxaa9q586nvr\n\nLet's get some mutual stacker following on nostr going!\n\nMy npub is npub1wf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgs43dgh9\n https://example.com/ 8664 458058 458058.458302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.969618119479 0 \N \N f 0 \N 0 115375571 0 f f \N \N \N \N 458058 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458285 2025-03-29 07:01:46.341 2025-03-29 22:39:49.744 \N Awesome thanks, @anita for your work! And @siggy47, @grayruby for making us aware of it! I wish to see more like this satsraisers in the future! Weekly or Monthly, maybe? https://example.com/ 16912 458198 458198.458285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5011647971127 0 \N \N f 0 \N 0 206496175 0 f f \N \N \N \N 458198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 182218 2024-06-09 11:12:03.258 2025-03-29 22:39:47.606 📒Some articles are here interesting, but... Hey @k00b some of bitcoin article/items posted (links) here by stackers are interesting, but i have less time to read it, so I bookmark items to read them later, can you add Read Later like opition on @sn so i can add them to my lists and read it later.\n\nRather than bookmark!\n\nThanks a lot @k00b @ekzyis \N 8245 \N 182218 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.65930053632494 0 \N \N f 0 \N 0 73833129 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437280 2025-03-14 12:27:36.861 2025-03-29 22:39:49.744 \N > preproduct, prefunding (afaik), business facing, tech startup\n\nTalk to the businesses you are targeting with the idea. Ask about what their problems are in the area you're looking to solve. Present a potential solution midway through. Ask if you solve their problem and if they’re willing to pay for it. If enough people say yes, get letters of intent and start building it/raising funding for it. If not enough say yes then keep iterating on the customer problems until you find something enough people say yes about. \n\nDo not build a single thing until then (unless you need to do a week or two of R&D to prove out difficult tech you're unsure about). The “if you build it they will come” approach to a B2B startup is mostly a lie. If you’re even moderately close to building something in that much demand, then you’ll have no problem doing the talking. \n\nIf you can’t talk then don’t build a B2B startup. If you can’t talk then say goodbye to being able to raise funds for your startup too. \n\nEasier said than done. I’m learning the hard way. https://example.com/ 17042 437218 437218.437280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0054510585125 0 \N \N f 0 \N 0 30321668 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424250 2025-03-03 23:23:06.93 2025-03-29 22:39:49.745 \N I feel good. Looking at my monthly budget, I've cut expenses to the point where 50% of my salary goes into BTC. https://example.com/ 1740 423614 423468.423614.424250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.535920429685 0 \N \N f 0 \N 0 130544454 0 f f \N \N \N \N 423468 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434983 2025-03-12 11:40:12.989 2025-03-29 22:39:49.745 \N - reading **a lot** of history\n- learning about Bitcoin and the impact fiat has had on humanity\n- realizing the impact Bitcoin could have on history if we apply it correctly https://example.com/ 894 434636 434595.434636.434983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.57160245738245 0 \N \N f 0 \N 0 221830557 0 f f \N \N \N \N 434595 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403707 2025-02-15 05:50:47.437 2025-03-29 22:39:49.745 \N They built this out *perfectly*. As someone who has both a pixel 8 pro running grapheneos and an iPhone 14 pro, Apple's insane engineering that puts them above others is incredibly irritating. Here I am, very split between keeping my pixel and going back to iOS. \n\nTo make PCC possible, they went to the extents that Signal goes to (and beyond). It's built with attestation similar to how Signal uses Intel's SGX to protect contact discovery. But they went even further - they're using their own custom silicon and built a custom OS *just for this*. \n\nI want to moan at them. I want to moan about their insane prices. I want to moan that I can't sync my photos with the same features as iCloud onto my own server which is still an issue. But damn do they make good shit. Fuck you apple for being so damn good. https://example.com/ 20987 261758 261758.403707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.107850465074 0 \N \N f 0 \N 0 93695490 0 f f \N \N \N \N 261758 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441250 2025-03-17 21:30:37.837 2025-03-29 22:39:49.746 \N Excellent idea, Bitcoin Community is real asset. https://example.com/ 18525 441156 441087.441091.441156.441250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.9143073698167 0 \N \N f 0 \N 0 237775058 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404623 2025-02-16 02:51:45.591 2025-03-29 22:39:49.748 \N After a protest, I sat down with a friend to share my concerns about the disorganization within the whole woke experiment (this was June 2020 when there was a real momentum behind the destruction. A non profit business in my community had just been burned down during the protest's nightly chaos).\n\nThey suggested that I speak with another of our friends, a white person, to learn from her how to be a good white person (essentially know your place and get in line).\n\nI realized that despite my goodwill and intentions, my whiteness would prevent me from being good. I sensed that it was only a matter of time until the tables turned on me, even if I follow the cult's explicit rules, because of the issue of my skin color.\n\nIt all unraveled then. Because that's backwards.\n\nThen I read "The Unbearable Lightness of Being" that illuminated the communism of it all within my experience. https://example.com/ 21521 404615 404523.404615.404623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2524396125044 0 \N \N f 0 \N 0 92867848 0 f f \N \N \N \N 404523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424287 2025-03-04 00:01:24.716 2025-03-29 22:39:49.749 \N Under the pretext of financial stability, outlaw/hinder taking out dollar loans to buy Bitcoin and using Bitcoin as collateral for dollar loans.\n\nPressure the Fed to specifically mention the elevated price of Bitcoin as a reason why interest rates cannot be cut.\n\nNil capital gains taxes for Bitcoin held\nfor less than six months with a caveat that if Bitcoin is repurchased within a year this exemption does not apply. \n\nThe more I think about this, the more it seems that a government clampdown will fail! https://example.com/ 17693 424254 423750.423905.424254.424287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9510204830511 0 \N \N f 0 \N 0 35275195 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416960 2025-02-26 00:08:03.536 2025-03-29 22:39:49.749 \N This isn't the slam dunk on @DarthCoin that you think it is.\n\nYou think selling a shitcoin to someone else is okay because you bought bitcoin with it? What makes you better than any run-of-the-mill scammer? https://example.com/ 16988 416628 416628.416960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8628298029831 0 \N \N f 240314666 \N 1 124519758 0 f f \N \N \N \N 416628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444156 2025-03-19 17:39:35.03 2025-03-29 22:39:49.749 \N I don't think laws are the reason people are not transacting with Bitcoin more. It's hard money that's expected (by those who hold it) to appreciate in the future. \n\nMerchant adoption will come when Merchants actually demand Bitcoin, either by giving discounts for those paying in bitcoin, or not accepting fiat. Bitcoin and Lightning UX is only a part of this. The greater factor (IMO) is Gresham's Law and the use cases that *only* bitcoin can serve and fiat cannot. https://example.com/ 9364 444138 443794.444138.444156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4600394886222 0 \N \N f 0 \N 0 246944565 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428181 2025-03-06 23:09:34.346 2025-03-29 22:39:49.744 \N Simple: (Up)vote with your sats ⚡️ https://example.com/ 11018 428054 428054.428181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2590826868313 0 \N \N f 0 \N 0 16752460 0 f f \N \N \N \N 428054 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436132 2025-03-13 10:44:07.676 2025-03-29 22:39:49.744 \N None of your business! https://example.com/ 4763 435975 435944.435950.435972.435975.436132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7007455814927 0 \N \N f 0 \N 0 46675067 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415358 2025-02-24 18:30:48.338 2025-03-29 22:39:49.744 \N I'm still getting more in early-tipping zap rewards than I'm zapping I think, so nice work.\n\nAre zap rewards a security? Should I register these with the sec? https://example.com/ 688 415302 415302.415358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.15096515987837 0 \N \N f 0 \N 0 76231362 0 f f \N \N \N \N 415302 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407693 2025-02-18 09:51:51.225 2025-03-29 22:39:49.745 \N You will choose your firewall or one will be chosen for you. There is no avoiding this unless you want your network to be completely open to external connections (bad idea).\n\nIf you use the firewall built-in to your router, odds are that firewall is just the bare minimum in terms of features. If your router was provided by your ISP, odds are that router has a backdoor.\n\nIf you run a dedicated firewall operating system (pFsense, Opnsense, etc.), then you have access to advanced features. Like the ability to configure a network-wide VPN, or create subnets and VLANs to separate your trusted vs. untrusted devices and/or guest networks. You can also block domains known to serve ads, botnets and malware at the network level. \n\nJust running your own firewall will not help with security very much (aside from removing any ISP-added backdoors). \n\nTo get the most out of a firewall requires leveraging the advanced features and practicing good security hygiene. \n\nOne major function of a firewall is the ability to port-forward. This is how you expose services running on your network to the public internet in a limited and secure way. However, these days, most people do not have a dedicated IP address that they can forward ports to. Rather, the ISPs use one public IP to serve many customers. Kinda like how many users share a UTXO in a custodial account.\n\nIf you want to expose a service publicly, but you don't have a dedicated IP, you have to use some kind of tunneling service (Cloudflare Tunnels, Tailscale Tunnels, etc.) Using tunnels does not require any port forwarding.\n\nOn a related note, if you run a public service, its only a matter of time before you experience a DDOS. Until we get local AI models that can monitor and respond to traffic patterns in real-time, we have tools like Crowdsec which curate blocklists from crowdsourced data and can be integrated to your firewall to block malicious traffic patterns.\n\nOn top of dedicated firewalls like the ones running on your router or server, there are also device-level firewalls. Every windows PC has a firewall built-in. On debian, people use ufw (uncomplicated firewall) or other software to further restrict network traffic between devices. \n\nSecurity is about adding layers of defense. Running a dedicated firewall is a great way to add a network-wide layer of control and protection that you can build on over time.\n\n> Does it get messy running a node? \n\nNo? Of course, if misconfigured, a firewall can lead to all kinds of issues. https://example.com/ 9969 407427 407427.407693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8067450835354 0 \N \N f 0 \N 0 232135577 0 f f \N \N \N \N 407427 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431203 2025-03-09 16:02:53.297 2025-03-29 22:39:49.745 \N Breez is a solid podcasting app and Lightning Wallet :) https://example.com/ 20481 403289 403289.431203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3492611241468 0 \N \N f 0 \N 0 69211027 0 f f \N \N \N \N 403289 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431210 2025-03-09 16:03:27.193 2025-03-29 22:39:49.746 \N Really awesome work everyone! SN gets better every day!\n\nThe only downside of being forwarded zaps on a post like this is I can’t zap it for the other folks lol https://example.com/ 20157 401806 401806.431210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.01108232932657 0 \N \N f 0 \N 0 101216700 0 f f \N \N \N \N 401806 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431204 2025-03-09 16:02:55.784 2025-03-29 22:39:49.746 \N Engineers\n\nPreschool, Primary, Secondary and Special Education School Teachers\n\nFood Preparation and Hospitality Trades\n\nAnimal Care and Service Workers\n\nSports and Fitness Occupations\n\nLawyers, Judges and related workers\n\nNatural and Social Science Professionals\n\nTeaching and Education Professionals\n\nManagers and Proprietors in Hospitality and Leisure Services\n\nPersonal Appearance Workers\n\nHealth and Social Services Managers and Directors\n\nCounsellors, Social Workers, and other community and social service specialists\n\nTherapy professionals\n\nLibrarians, curators and archivists\n\nArtistic, literary and media occupations\n\nPublic Services and other associate professionals\n\nEntertainers and Performers, and related workers https://example.com/ 15091 402363 402363.431204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4768399943051 0 \N \N f 0 \N 0 51552826 0 f f \N \N \N \N 402363 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431205 2025-03-09 16:02:57.984 2025-03-29 22:39:49.746 \N This right here is why you and the Devs f***ing rock. Rapid response, quick to clarify and quick to get onto fixes. All of you are awesome. 👊 https://example.com/ 19829 402359 402359.431205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4882186842274 0 \N \N f 0 \N 0 235654536 0 f f \N \N \N \N 402359 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424666 2025-03-04 09:50:47.823 2025-03-29 22:39:49.746 \N `ᕦ(ò_óˇ)` Day 12 of exercising everyday before the saloon opens\n\nTried to wake up at 7:30AM today so I could work for 1-2 hours on [delphi.market](https://delphi.market/). Didn't work, I just got and swiped the alarm off. Then I slept until 10AM, lol.\n\nWIthout my streak, I probably would not have gotten out of bed early enough. I tried to go for a run today again, but it still didn't feel right. Just went for a 30min walk then and bought an iced coffee (sugar addiction probably) to drink it in a park before going home.\n\nAn elderly man sat down on the other end of the bench and after a few minutes, he wanted to show me something. At first I thought he is begging for money and the text on his phone is just the translation in German. Kind of sad that this was my expectation. But it wasn't. It was a photo of a restaurant sign for handwritten stuff. I don't remember exactly but it was something about women no longer cooking for men and the restaurant now filling this niche of serving men food.\n\nI tried to smile since I didn't understand it properly. My mind was more occupied with guessing what this is about than just reading the text, lol. For some reason, I find it hard to read stuff when people are waiting for me to read it. But he then explained it to me (it's the sign of a restaurant from a friend) and went on a rant about woman today vs back in his days. He mentioned that women nowadays want to be handled like queens and men have no say anymore. I answered that I think not all women are like that and men are also responsible if they let women behave like that. He said I am right but he is too old now.\n\nWe then talked some more after I was initially worried about where this conversation might be going. We talked about his old days in the Soviet Union and how everything was great before Gorbatschow took over. Also talked about inflation, the vaccine and other stuff but I am too lazy go into detail here. I mentioned that I am working in the bitcoin space and I hope that bitcoin is going to fix a lot of stuff since most problems arise from governments having too much power and people having too much faith in authority. He agreed but he didn't seem interested in bitcoin so I didn't go deeper.\n\nI was surprised when he was the first to stand up and end the conversation. He wanted to go to a Greece to fix the necklace of his daughter (we also talked about how nationalities weren't important in the Soviet Union before Gorbatschow). We exchanged names and I tried to thank him for the conversation in Russian by saying "пожалуйста". I wasn't sure if that's the right word so I asked him. Turned out that is actually "you're welcome". "спасибо" is "thank you" :) https://example.com/ 3400 424591 424591.424666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.081391180058 0 \N \N f 0 \N 0 232120008 0 f f \N \N \N \N 424591 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415413 2025-02-24 19:24:15.21 2025-03-29 22:39:49.747 \N That worked. Payment made. https://example.com/ 11328 415410 409934.415321.415391.415410.415413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3057326029952 0 \N \N f 0 \N 0 90146198 0 f f \N \N \N \N 409934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431237 2025-03-09 16:05:33.274 2025-03-29 22:39:49.747 \N Price.\n\nThe fiat price is a reflection of the willingness of people to part ways with their fiat to get Bitcoin.\n\nThe higher the price is, the more people want Bitcoin in comparison to fiat.\n\nWhen people start truly losing their faith in their fiat currencies big time, like Weimar Republic grade disrespect, the price will go through the roof.\n\nEventually we will reach the final station: the price will be infinite. For no one will sell their Bitcoin for any amount of fiat. https://example.com/ 11417 395180 395180.431237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3025127130295 0 \N \N f 0 \N 0 122580571 0 f f \N \N \N \N 395180 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431238 2025-03-09 16:05:35.28 2025-03-29 22:39:49.747 \N How about Amazon Prime? " Free delivery " is an illusion, and the streaming service has gradually become pay as you go. Soon it will have commercials unless you pay extra. https://example.com/ 666 395087 395087.431238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.06357634809494 0 \N \N f 0 \N 0 205063970 0 f f \N \N \N \N 395087 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458381 2025-03-29 08:37:18.233 2025-03-29 22:39:49.749 \N Neither a "boy" or a "girl", I'm a woman in her thirties, happily married to her husband.\n\n https://example.com/ 1713 458347 458347.458381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3032305545469 0 \N \N f 0 \N 0 88321112 0 f f \N \N \N \N 458347 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 397137 2025-02-09 19:31:59.607 2025-03-29 22:39:47.607 Do you use SN in light or dark mode? Pretty simple, do you use light or dark mode in stacker news? \N 20245 \N 397137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8811327783345 0 \N \N f 0 \N 0 198538849 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424397 2025-03-04 03:58:37.051 2025-03-29 22:39:47.607 I'm Dhruv Bansal, co-founder of Unchained, AMA! Hello all, my name is Dhruv and I'm a co-founder of [Unchained](https://unchained.com), a company which provides vaults, loans, trading, retirement and other financial services to bitcoiners through collaborative custody.\n\nI also occasionally write and talk about bitcoin, both about its past and its future. Some of my more popular work has been the [HODL Waves](https://unchained.com/hodlwaves) chart, the [Bitcoin Astronomy](https://unchained.com/bitcoin-astronomy/the-law-of-hash-horizons) series, and my recent piece on [how Satoshi thought of bitcoin](https://unchained.com/go/how-did-satoshi-think-of-bitcoin).\n\nThese days I'm thinking a lot about layers of markets, a methodology for building decentralized systems pioneered, one exemplified by bitcoin. I enjoy speculating about the effects of decentralization on everything from energy and telecommunications, to the Internet and computer security, to artificial intelligence and intellectual property.\n\nI'll be here for an hour starting at 12pm Eastern Time, AMA! \N 1236 \N 424397 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.30185149778119 0 \N \N f 0 \N 0 56292893 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106294 2024-01-01 05:16:57.569 2025-03-29 22:39:47.607 What's the best setup for a digital nomad? We live in 2023. There are and will be even more people that live without a permanent home basis. Running a node without a home is hard. What would be the best setup for this?\n\n- Keeping a node with watchtower and plug & unplug it everywhere? 💼 Seems like a hassle\n- Leave a node at friends or relatives? 🏘️ I really doslike the idea... Big compromise on anonymity\n- Onchain wallet and submarine swap to custodial wallets? 🔗 This feels like the easiest setup but I dislike the idea of submarine swaps and custodial wallets being essential infrastructure instead of "nice to have"\n\nOther ideas? 🤔🤔 Layer 1 seems to have solved portability so neatly. While Lightning seems to be still dependent on permanent infrastructure \N 9184 \N 106294 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.21645501329579 0 \N \N f 0 \N 0 13386431 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404031 2025-02-15 13:23:13.3 2025-03-29 22:39:49.745 \N False alarm\nhttps://twitter.com/lnbits/status/1552264318946787335 https://example.com/ 4292 403947 403947.404031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2614275416648 0 \N \N f 0 \N 0 136136459 0 f f \N \N \N \N 403947 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451274 2025-03-24 13:26:52.526 2025-03-29 22:39:49.745 \N If you can accurately predict top posts, then this will boost you up the leader board. I wrote some thoughts on it: https://stacker.news/items/473181/r/Undisciplined.\n\nI also wrote my thoughts about why it's better in the long-run to not behave this way: https://stacker.news/items/523858/r/Undisciplined.\n\nEdit: actually this post is the one about why stackers shouldn't game the rewards system https://stacker.news/items/546904/r/Undisciplined. https://example.com/ 2065 450956 450956.451274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4512536148526 0 \N \N f 0 \N 0 139224765 0 f f \N \N \N \N 450956 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442706 2025-03-18 18:54:50.71 2025-03-29 22:39:49.745 \N there's already a bitcoin sub, having 2/4 subs being bitcoin doesn't really make sense https://example.com/ 14122 442313 442313.442706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.50103959656297 0 \N \N f 0 \N 0 207897424 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448278 2025-03-22 14:18:16.54 2025-03-29 22:39:49.745 \N How is this AI phase not a complete distraction for lightning companies (except to increase vaulations)? \n\nWhy should people care about building lightning for robots when there's still much needed work for humans to truly take advantage of it? \n\nHow is 402 payment required for heavy computational tasks not actually a larp when credit based API keys work just fine? https://example.com/ 20825 447841 447841.448278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.32940193309829 0 \N \N f 0 \N 0 217895189 0 f f \N \N \N \N 447841 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443165 2025-03-19 05:38:25.931 2025-03-29 22:39:49.745 \N I like that nuance -- some things have collapsed into a singularity, some things have fragmented into shards. Which is which, and what forces determine that? Of course it was kind of sloppy of me to talk about reality fragmenting; it's easy to make grand pontifications and lose the important details.\n\nThe New Atlantis had a series on the death of facts -- I read the [first article](https://www.thenewatlantis.com/publications/what-was-the-fact) which I thought was really good but have not yet got around to reading the others. Makes me want to revisit it. https://example.com/ 16410 443160 443160.443165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.539960373372 0 \N \N f 0 \N 0 13016614 0 f f \N \N \N \N 443160 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458186 2025-03-29 04:23:00.88 2025-03-29 22:39:49.745 \N All the things that actually harden bitcoin like p2p exchange, self-custody and mining decentralization is always underfunded. In general, however, funding for bitcoin companies draws from an extremely small pool of capital compared to 'crypto' or trad industries. https://example.com/ 993 457413 457413.458186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9830483647531 0 \N \N f 0 \N 0 133436457 0 f f \N \N \N \N 457413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437595 2025-03-14 16:44:05.427 2025-03-29 22:39:47.608 Will Bitcoin Solve the Housing Crisis? Bitstein posted this on the bird app. \n\n> The housing crisis will be solved by #bitcoin adoption deflating the cost of the average American home to 0.02 BTC.\n\nhttps://twitter.com/bitstein/status/1731769811883958409\n\nWhat do you think? \N 6148 \N 437595 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 7.28957452171716 0 \N \N f 0 \N 0 174245936 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443157 2025-03-19 05:26:29.678 2025-03-29 22:39:49.745 \N What do you have for 1000 sats? https://example.com/ 13865 443129 443129.443157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.22376771475185 0 \N \N f 0 \N 0 243288239 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444424 2025-03-19 21:40:50.877 2025-03-29 22:39:49.745 \N ![BIG ZAP ENERGY](https://m.stacker.news/54226.png)\n\nAlso submitted to the JABBB #05 https://stacker.news/items/699964/r/Design_r https://example.com/ 15544 444292 444292.444424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4316004966705 0 \N \N f 0 \N 0 67294750 0 f f \N \N \N \N 444292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436179 2025-03-13 11:16:08.537 2025-03-29 22:39:49.745 \N I have never drank or done drugs or used tobacco in my life. This was a result of seeing a lot of bad stuff in my family and at school, as well as on tv as a kid. Doc Gooden and Darryl Strawberry getting in trouble and falling off their career path for doing coke was a cautionary tale in the late 80's when I was just a little leaguer. \n\nIt was easy to see that even players who had it all could self destruct, and I just wanted to avoid that. I made a commitment to never let anything get in the way of my progress when I was 10 years old (1990) before I ever knew what straightedge was...I didn't even know about the punk rock angle until I was 15-16. \n\nit was never trendy for me- I really wanted to succeed as a baseball player and that was the ultimate goal for me that led me to what I really wanted in life...as an 8 year old I saw success as: \n\ncool house\nporsches and ferraris\nsuper hot wife\n\nit was pretty simple that baseball was my best chance! https://example.com/ 13055 436153 436153.436179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.36134883065537 0 \N \N f 0 \N 0 62462865 0 f f \N \N \N \N 436153 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442252 2025-03-18 13:44:18.442 2025-03-29 22:39:49.745 \N Ask your questions right here on SN, lol\n\nAs for pleb nodes, DarthCoin has recently been popularizing the idea that plebs should not run routing nodes. Which I agree with. \n\nRather, plebs should run nodes with only unannounced channels, this is for privacy but also, a pleb with poor liquidity can actually cause net harm to "the network". As other nodes will attempt to use your channels for routes, but as a humble pleb, your channels are not actively managed and your public node causes other's payments to fail or timeout. Also, as a pleb, you want your node to work when you go to use it, but if you're not pricing your liquidity correctly, you may find that other nodes have used up your public liquidity causing your own payments to fail or become more expensive.\n\nAs for why PlebNet has mostly disappeared:\n\n- its become clear that LN really only works reliably and efficiently as a Hub and Spoke network. I.e. the incentive is to open a direct channel to hubs and leverage their excellent liquidity for your node.\n\n- The first 10k public nodes were mostly hobbyist trying to bootstrap network effects. This led to groups like plebnet.\n\n- But as the network evolved, it became obvious who to open channels with (i.e. open channels to the nodes you pay the most, or the nodes with the best liquidity) the appeal of a "network for plebs" wore off as soon as people realize that plebs have terrible liquidity.\n\n- with recent vulnerabilities, it is increasingly suggested to only open channels to nodes you trust not to steal from you. So soliciting channels from internet strangers is risky.\n\n- we now have liquidity markets like LN+, Pool, and Magma where you can lease /rent channels.\n\n- its not the best idea (for privacy) to link your node to your social media identity. PlebNet was often filled with post of people using their nym/name and posting channel open requests which linked their identity to their node. Which effectively allowed anyone to scope the UTXOs related to that node and make assumptions about this user's bitcoin stack. Which could be used with other information posted by this user to further deanonymize them.\n\n- All in all, groups like Plebnet got bloated with new members and became noisy and at the same time the need for such support groups has been outsourced to more scalable platforms.\n\n- Additionally, LN is always changing so wikis written about the subject 2 years ago are likely already obsolete and would require constant revisions which is not scalable.\n\nRecognize LN is still early and the best information comes direct from the source (usually githubs of the projects themselves).\n\nBut the support network for LN keeps growing and places like SN and even Reddit are great for asking questions and getting help.\n\n https://example.com/ 836 442243 442084.442109.442124.442243.442252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2251524172091 0 \N \N f 0 \N 0 38402931 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444430 2025-03-19 21:45:00.252 2025-03-29 22:39:49.745 \N If adding a button to an explorer could lead to Bitcoin centralization then it seems Bitcoin is pretty fragile. \n\n https://example.com/ 14651 444382 443836.444382.444430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3211090877212 0 \N \N f 0 \N 0 31383762 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441764 2025-03-18 09:24:22.926 2025-03-29 22:39:49.745 \N Yes, is exciting for me too! I never done something at this scale and hard work.\nWhen I will finish this season, I will write an article about, with all details. https://example.com/ 5171 441560 441560.441764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.80714576636822 0 \N \N f 0 \N 0 174900490 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423190 2025-03-03 04:44:07.358 2025-03-29 22:39:49.746 \N I don't agree with the tweet as a reason for not having scaling. If we don't have scaling it should be either because changes to Bitcoin need to meet an excruciatingly high bar and the current proposals don't meet it in the eyes of the community or scaling poses serious risk to the decentralization or security of Bitcoin. Those would be some of the viable reasons in my opinion. \n\nSome people don't want fire insurance either because they may never need to use it but if they do need to use it they are sure glad it is there. If people don't want to self custody that is their choice but hopefully it will be there for them when they need to self custody. \n https://example.com/ 10862 423179 422483.422714.423179.423190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0292122876313 0 \N \N f 50272686 \N 1 115151477 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458255 2025-03-29 06:26:25.432 2025-03-29 22:39:49.746 \N Gary Gensler is an anagram for Les Angry Reg. https://example.com/ 7667 458160 457126.458150.458160.458255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.38671746960455 0 \N \N f 0 \N 0 217533739 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449094 2025-03-23 07:23:22.334 2025-03-29 22:39:47.608 IMF has published first 5 chapters of their CBDC guidebook I heard through a Reuters piece\nhttps://www.reuters.com/business/finance/imf-chief-urges-more-proactive-push-central-bank-digital-currencies-2023-11-15/\n\nThat the IMF has published the first five chapters of their CBDC guidebook today - claiming it's designed to,\n\n>help countries with the design and set-up process and ensure that the new technologies are globally interoperable.\n\nThe IMF claim they'll add,\n\n\n\n> about five chapters every year aiming to provide about twenty chapters by 2026.\n\n2026 seems a good way away, so hopefully it shows that there's nothing big down the pipeline just yet...\n\nThe next five chapters, as yet unpublished, are said to cover 'financial stability, comparison with other payment innovations, and end-user adoption'.\n \n\nThe first five chapters can be accessed online - follow the link above or see the archive link at the bottom of this post.\n\nHowever, for an overview, here's an 'at a glance' summary of their first 5 chapters:\n\n+ + +\n\n### 1. How Should Countries Explore CBDCs?\n\nExploring CBDCs is a significant undertaking that involves complex decisions in a rapidly changing digital environment. This chapter presents a dynamic framework that is iterative, flexible, and responsive to new information as it arises. First, countries must clearly establish the policy objectives of CBDCs and relevant success measures. Second, risks must be identified, quantified as much as possible, and accompanied by a strategy to contain them. Third, domestic authorities should undertake a careful assessment of their capacity to experiment with, regulate, oversee, and eventually implement CBDCs. Fourth, communication about CBDCs is crucial and a strategy to guide engagement with stakeholders should be developed early on. Fifth, central banks should establish a set of feature requirements based on the earlier steps. Sixth, a sound legal basis and robust regulatory foundations should underpin the CBDC project from the start. These steps should not give the impression of a linear process. Given rapid developments in technology and the ongoing lessons that are—and will be—learned world-wide, CBDC exploration will need to continue even beyond the point of issuance.\n\n\n### 2. How Can Central Banks Manage CBDC Product Development?\n\nThis chapter introduces the '5P methodology' designed to guide central banks in exploring and developing CBDC, from research to potential launch. The methodology draws from experiences in various jurisdictions and incorporates best practices from different industries, and is intended to facilitate experimentation and support progressive decision-making while effectively managing risks. The 5P methodology comprises five distinct phases. The preparation phase focuses on researching trends, defining objectives, establishing success criteria, evaluating feasibility, assessing capacity, and analyzing risks. The proof-of-concept phase involves conducting small-scale empirical tests and validation activities to gain insights into CBDC designs, typically in a laboratory environment. The prototype phase concentrates on the development or acquisition of necessary technologies and the selection of relevant partners. The pilot phase represents the live testing of a quasi-final product, while the production phase marks the final issuance and operation of the CBDC.\n\n### 3. Will CBDCs Affect Monetary Policy Transmission?\n\nCBDCs could affect the macroeconomic environment that underpins monetary policy transmission. A CBDC offers a safe store of value and efficient means of payment, which can increase competition for deposit funding, raise banks’ share of wholesale funding, and lower bank profits. A CBDC also could bolster financial inclusion and help reduce dollarization or cryptoization. These changes in the macroeconomic environment can potentially strengthen the channels of monetary policy transmission if CBDC is appropriately designed. For moderate levels of CBDC holdings, the effects on monetary policy transmission are expected to be relatively small in normal times. However, these effects can be more significant in an environment of low interest rates or financial market stress in which the relative value of a CBDC increases. A non-remunerated CBDC could harden the zero lower bound for interest rates. Finally, a CBDC could increase risks of flight to safety from retail bank deposits in periods of market stress.\n\n\n### 4. How Can Capital Flow Management Measures Be Implemented with CBDCs?\n\nThis chapter explores the benefits, risks, and complexities of implementing capital flow management measures (CFMs) through CBDCs. It argues that CFMs, when warranted, can continue to be part of a country’s policy toolkit in the digital age. Moreover, the digitalization of information and programmability of transactions—leading to the automation of compliance checks—could bring efficiency gains compared to today’s implementation of CFMs, though raise operational risks. Importantly, the implementation of CFMs would leverage the programmability of CBDC transactions, not of CBDC itself, as money must remain fungible. Several questions need to be further analyzed, for instance the specification of the legal framework surrounding digital CFMs.\n\n### 5. Could a CBDC Help Promote Financial Inclusion?\n\nFinancial inclusion is often a key policy objective for a retail CBDC, especially in emerging and lower-income countries. If properly designed to address barriers to financial inclusion, CBDCs could gain acceptance as a payment mechanism for financially excluded populations. CBDCs can be designed to replicate some of the desirable properties of cash, for instance, access to payments without a bank account, trust associated with central bank money, low or no fees, and less stringent identity requirements for low-risk populations who struggle to obtain formal identity documentation. However, full compliance with financial integrity requirements remains necessary. A CBDC could also offer benefits beyond those of cash, such as the development of financial history to help widen access to credit. A CBDC can thus serve as a valuable entry point to the formal financial system. As a public-sector led initiative without profit incentive, CBDCs could also stimulate competition by lowering the prices of payments and financial services. Moreover, CBDCs can address the needs of remote and low-income populations not well served by the private sector, through availability on a variety of hardware devices and in offline environments. However, a CBDC by itself is not a silver bullet to financial inclusion, as it can face barriers common for digital products such as gaps in digital and financial literacy, and access to electricity and digital networks. A CBDC may not be the best financial inclusion solution for every country, and policymakers should assess a wide range of policies and initiatives, including but not limited to CBDCs, to support financial inclusion.\n\n\n+ + +\n\nI've archived the above chapter excerpts here: https://archive.md/rRn0v\n\nNB If you want to view the full chapters, copy each chapter's URL from this archive and archive them at https://archive.md - otherwise, the links in this page will just take you to the IMF site rather than safer archived ones.\n\n\n\n \N 1298 \N 449094 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 13.6748433122051 0 \N \N f 0 \N 0 144020690 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402396 2025-02-13 17:59:16.832 2025-03-29 22:39:47.608 Not so toxic rant, but this ETF stuff made me realize something I kind of knew this for a long time but honestly, I think only a small fraction of the world will ever actually hold keys to their bitcoin. As unfortunate as that is, at some point we will definitely have to accept the possibility. And as much as I hope that as we continue to grow and scale, software such as fedimints will be able to empower local communities, I have a sad feeling the world is going to devolve into more of a panam style situation where the top class (who own bitcoin in this scenario) live in paradise city states with all the technology and convenience and then you'll have the lower class no coiners living in mud huts and being pissed on.\n\nI have no idea, honestly, but there are a couple things I know for certain:\n1. The vast majority of the population will never own the keys to a UTXO\n2. The LN while amazing, cannot scale indefinitely in a noncustodial fashion due to on chain costs. Those who will enjoy LN will be the ones who get in when the channels make economic sense to open.\n3. The governments and current oligarchical entities are going to try to do everything possible to keep as few people from holding the keys to UTXOs as possible. Especially after they realize the true threat of Bitcoin. I do not think there will be a 6102 or whatever, but I do think that they will try their best to limit the amount of people that can hold keys. This is why there is a sort of reverse incentive to get next-block tx fees as high as humanly possible. There is a non-zero chance this whole ordinal thing is a test psyop. \n\nBitcoin truly is a lifeboat and the Titanic is sinking faster than we all expect. Stacking sats at sat/cent parity will be extremely annoying for newcoiners at that time as they will not be able to economically hold their UTXOs. \n\nTo be absolutely clear, I do not think this is a flaw in Bitcoin. I think this is a challenge that needs to be solved in a non-lazy cypherpunk way. Custodians are not going to be the appropriate solution.\n\nAlso, fuck drivechains. \n\n \N 2327 \N 402396 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6636870858149 0 \N \N f 0 \N 0 164802055 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450363 2025-03-23 22:15:25.838 2025-03-29 22:39:49.746 \N **Did you know BIP39 had a 5th author who removed himself?**\n![1_grain.jpg](https://m.stacker.news/23884)\nThomas Voegtlin(creator of Electrum) removed himself from the authors after multiple disagreements with the BIP39 design.\n\nIf you are not aware there was quite a bit of drama on the Bitcoin mailing list around '13 when the standard was being proposed.\n\nFor context, Electrum was the 1st deterministic Bitcoin wallet that allowed for a BIP32 seed to be backed up into 12 words, and then came BIP39.\n\nIn all fairness BIP39 was kinda rushed, and even though valid criticism was provided regarding it's shortcomings, they were ignored.\n\nElectrum has its own backup scheme that supports versioning & is not dependent on a dictionary, vastly superior IMO. https://example.com/ 14195 448671 448671.450363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.23896705103286 0 \N \N f 0 \N 0 126019696 0 f f \N \N \N \N 448671 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431192 2025-03-09 16:02:24.424 2025-03-29 22:39:49.746 \N Confirmed, I have been paid in sats for my contributions 😊\n\nETA: I also received rewards last night for the first time in a long time, so that was nice! https://example.com/ 683 405361 405361.431192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.04366803625955 0 \N \N f 0 \N 0 62739352 0 f f \N \N \N \N 405361 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403719 2025-02-15 06:03:30.277 2025-03-29 22:39:49.746 \N i think they are going lower across the curve over a 12 month time horizon. 12mo target is probably sub 3% on 10s and mid 3%s on 2s https://example.com/ 4378 65472 65472.403719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4639985317938 0 \N \N f 0 \N 0 181741510 0 f f \N \N \N \N 65472 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434974 2025-03-12 11:28:58.089 2025-03-29 22:39:49.746 \N Attacking Coinbase and Binance is government overreach. We should all be upset about that while simultaneously being happy that bitcoin is much less fragile than shitcoins. https://example.com/ 20768 434615 434615.434974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4953028025065 0 \N \N f 0 \N 0 75191372 0 f f \N \N \N \N 434615 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451282 2025-03-24 13:29:17.351 2025-03-29 22:39:49.746 \N - HubermanLab: I would recommend his episodes related to sleep.\n- Darknet Diaries: All the stories are good, but some you already might know of. https://example.com/ 18069 451257 451177.451223.451257.451282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1766530637545 0 \N \N f 0 \N 0 201782814 0 f f \N \N \N \N 451177 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431277 2025-03-09 16:10:30.58 2025-03-29 22:39:49.746 \N It sounds like you haven't read about how it works. The system doesn't require the heir to verify their identity - you have already shared an encrypted form of your key with them, they just have to trigger the unlock timer to access the key they already have along with a signature from Casa's recovery key. It's basically just a timeout system that unlocks access to the key material that has already been distributed. https://example.com/ 638 383400 383400.431277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2016176460186 0 \N \N f 0 \N 0 144428073 0 f f \N \N \N \N 383400 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437991 2025-03-15 04:55:14.868 2025-03-29 22:39:49.747 \N Dealing with a recent cat cancer diagnosis. He’s only 10 years old, hopefully the medication will help keep him comfortable! https://example.com/ 16513 437775 437775.437991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.911829018940509 0 \N \N f 0 \N 0 10977504 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402819 2025-02-14 05:30:47.769 2025-03-29 22:39:47.601 Thinking of starting a Bitcoin company For several months now, I've been contemplating the idea of establishing a consultancy and development firm specializing in Bitcoin and Lightning-related services. \nThe primary objective would be to assist businesses and institutions in embracing Bitcoin, given the prevalent lack of practical knowledge on acquiring, managing Bitcoin, and potentially establishing their own nodes.\n\nMy main concern revolves around the bureaucratic and financial challenges associated with launching a company in Italy, my home country. \nAlternatively, I am considering operating as an independent consultant to provide services more flexibly.\n\nOn the positive side, the market is still relatively untapped in this regard, considering we are so early!\nWhat are your thoughts on this? \nAny advice from those who have embarked on a similar venture?\nAlso what do you think of "*stackzoo*" as the company name?\n\n![stackzoo.png](https://m.stacker.news/7884) \N 2844 \N 402819 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.0485028556318 0 \N \N f 0 \N 0 137142538 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423267 2025-03-03 07:14:39.927 2025-03-29 22:39:49.746 \N Thanks. I was wondering about this. https://example.com/ 17109 422056 422056.423267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7479654454862 0 \N \N f 0 \N 0 109755596 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431284 2025-03-09 16:10:50.351 2025-03-29 22:39:49.746 \N You can whittle small statues of @k00b, @Car and @ekzyis in a row of see no evil, hear no evil, speak no evil monkees maybe? \n\nIt would take skill. https://example.com/ 8059 382751 382751.431284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0074123749425 0 \N \N f 0 \N 0 108107632 0 f f \N \N \N \N 382751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458355 2025-03-29 08:19:01.75 2025-03-29 22:39:49.747 \N Zapped for visibility. I think people need to know about the ins and outs and tricks to get the smoothest experience. Being able to seemly zap and get zapped is critical to SN’s success, IMO https://example.com/ 19346 458325 458325.458355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.029682102701 0 \N \N f 0 \N 0 5501058 0 f f \N \N \N \N 458325 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431289 2025-03-09 16:11:04.871 2025-03-29 22:39:49.746 \N Day 196 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20563 381503 381503.431289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2243781383704 0 \N \N f 0 \N 0 175710529 0 f f \N \N \N \N 381503 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421604 2025-03-01 19:31:38.433 2025-03-29 22:39:49.747 \N Making progress in my cabin project 🙂 I've been covering the remaining parts with permeable membrane. Still got a bit more to cover. Hoping to finish today and frame at least one window 🙂\n\nHave a great day!\n\n![covering the remaining parts of the cabin](https://i.ibb.co/LrRytVf/covering-the-remains.jpg)\n![covering the remaining parts of the cabin](https://i.ibb.co/xC2wwBN/covering-the-remains-1.jpg)\n![covering the remaining parts of the cabin](https://i.ibb.co/c1nB7MX/covering-the-remains-2.jpg) https://example.com/ 21287 419668 419276.419668.421604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7811842798673 0 \N \N f 0 \N 0 136037934 0 f f \N \N \N \N 419276 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423286 2025-03-03 07:28:46.938 2025-03-29 22:39:49.747 \N Nice! Once we get some product tweaks to integrate, hopefully we get it to 21M sats per month! https://example.com/ 6578 423284 423163.423280.423284.423286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6240673969713 0 \N \N f 0 \N 0 36361776 0 f f \N \N \N \N 423163 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458270 2025-03-29 06:42:40.875 2025-03-29 22:39:49.747 \N Day 250 of snailposting everyday 'til BTC hits $100k.\n\n...and 50 push-ups. (20 - 20 - 10)\n\n__@_'-' https://example.com/ 7809 458132 458011.458132.458270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7588295620115 0 \N \N f 0 \N 0 137498829 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450322 2025-03-23 21:26:17.371 2025-03-29 22:39:49.747 \N High time preference:\nLet's eat that fruit!\n\nLow time preference:\nLet's plant a tree.\n\nDelayed gratification \n https://example.com/ 16653 450320 450320.450322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.642523550932 0 \N \N f 0 \N 0 17992315 0 f f \N \N \N \N 450320 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458202 2025-03-29 05:26:34.298 2025-03-29 22:39:47.601 The Ultimate Purchasing Power of Bitcoin I was watching this [video](https://odysee.com/@MarkMoss:7/shocking-math-how-bitcoin-could-reach:8?r=8T2xqWjtafHWYGxQBSsrbw1wQPm7sWRq) by Mark Moss, where he walks through a hypothetical situation where Bitcoin ends up being worth $43 billion in the not-so-distant future. The crux of the argument is that Bitcoin will absorb the role of store of value from other assets like real estate, gold, bonds, and so forth. We've discussed that before on SN and it's an interesting point.\n\nMy first big post on Stacker News was [What are Sats Worth to You?](https://stacker.news/items/221151/r/Undisciplined) and it was about our subjective valuation of sats: i.e. how we actually use them. For many of us the answer was that we basically value sats at one US cent, which just happens to be roughly what would happen if the USD became backed by Bitcoin.\n\nI couldn't find the post quickly, but I think I won a bounty for answering someone's question about what Bitcoin will ultimately be worth. My answer was $11 million and was based on converting the current global money supply into Bitcoin. The video I linked to above is making me wonder how far off that estimate is. I knew at the time that there were many other factors and realized later that I completely neglected the store of value argument.\n\nTo be clear, I'm talking about purchasing power and just using today's dollars as units of comparison. I know that measured in any particular fiat, bitcoin (and every other real asset) is going to infinity.\n\nSo, what are the most credible purchasing power estimates you've seen?\n\nAnd, what are the most underappreciated arguments you've come across?\n\nShould we be using our bitcoin differently in light of the answers? \N 10719 \N 458202 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6053791231616 0 \N \N f 0 \N 0 157313073 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424243 2025-03-03 23:18:46.062 2025-03-29 22:39:49.747 \N Use Segwit Airlines for the witness discount. Just gotta fly inside your luggage case instead of in the passenger cabin. https://example.com/ 12277 424236 394203.394251.400201.424131.424214.424233.424236.424243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5634055566459 0 \N \N f 0 \N 0 167742627 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444579 2025-03-20 03:14:05.878 2025-03-29 22:39:49.747 \N ![](https://www.zapread.com/i/9ZG) https://example.com/ 17526 444168 444168.444579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.74932090358051 0 \N \N f 0 \N 0 106518352 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436067 2025-03-13 09:33:39.207 2025-03-29 22:39:49.747 \N One of my faves (though might be too detailed to embed well. Let's see).\n\nhttps://i.redd.it/u6ag42colq441.jpg\n\n[Link for better viewing](https://www.reddit.com/media?url=https%3A%2F%2Fi.redd.it%2Fu6ag42colq441.jpg). https://example.com/ 10102 436030 436028.436030.436067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4023599160037 0 \N \N f 0 \N 0 25704201 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437361 2025-03-14 13:10:37.903 2025-03-29 22:39:49.747 \N **Zap to zero day 3**\n\n---\n\n**Total satsback so far: `7911 sats (4419 sats yesterday)`**\n\n_does not include people zapping me over the day_\n\n![2023-12-30-121236_721x357_scrot.png](https://m.stacker.news/9990)\n\nSeems like ~crypto is entering the bull market, too. But I think it's mainly thanks to @kr's post about [Making Ethereum Cypherpunk Again](https://stacker.news/items/369973) which generated a lot of zaps - not only on the post itself but also in the comment section. I will use these sats to Make More Things Cypherpunk Again.\n\nAlso yesterday, the code has decided that it's time to reward content and not zapping, unlike yesterday. Got almost exactly 1k more sats for posting than for zapping. I feel proud.\n\n---\n\n**Total zapped so far: `29.1k (16.1k yesterday)`**\n\n![2023-12-30-121638_604x275_scrot.png](https://m.stacker.news/9992)\n\nThere might be another bug in our statistics. And I am not talking about unseating \n @Undisciplined from his third place - famous last words btw:\n\n> I will always have been the 3rd highest zapper for that 24 hour period. There's nothing you can do about it.\n\n-- @Undisciplined, [here](https://stacker.news/items/369306)\n\n\n but that it showed that @Undisciplined made two posts yesterday but [he didn't make any post](https://stacker.news/items/370657), lol. Probably a time zone issue. Hopefully.\n\n---\n\n**XP points gained so far: `+14 (+10 from yesterday)`**\n\nUnrelated to this experiment, but yesterday, @TonyGiorgio created a ticket and [I was confused how paying the same invoice twice might lead to a loss of funds](https://github.com/stackernews/stacker.news/issues/720#issuecomment-1872379380). Fortunately, he had patience with someone like me and quickly reminded me that preimages must be kept secret until the channels are closed iiuc:\n\n>> Preimages are revealed to node routers when an invoice is paid. If they see the same payment being routed again with the same prrimage, they can swipe the funds.\n>\n> Ah, makes sense. Forgot that the preimages must be kept secret until the channels are closed - not until the payment is done.\n\nHowever, tbh, I am still slightly confused. If they already have seen the invoice, they already know the preimage, so how does seeing the same invoice again lead to a loss of funds _exactly_? But I think I knew the answer to this in the past while reading Mastering The Lightning Network. So I think the answer is somewhere in this book. It's a great book to just look some stuff up quickly. I just didn't yet. ([It's even free to read in digital form](https://github.com/lnbook/lnbook).)\n\nRegarding the experiment, I again had to stay up late to zap to zero.\n\nTo cut it short, here are my last zaps again. I really don't mind to tell people what content I zap on SN. Maybe I should mind? But at least what you can see here is only stuff that shouldn't be _too_ controversial, right? Right?\n\n![2023-12-30-122817_768x814_scrot.png](https://m.stacker.news/9996)\n\nAs you can see, the last zap was again probably a "I am really tired"-zap.\n\nBtw, keep in mind that these are my personal zaps. Read this as a disclaimer like this one from @niftynei's blog:\n\n> Opinions are my own and exclusively reflect my beliefs and lived experiences.\n\n-- https://basicbitch.software/static/about.html\n\n---\n\n[_click here for previous day_](https://stacker.news/items/370188)\n https://example.com/ 1478 437360 437233.437270.437311.437319.437348.437352.437360.437361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.447795419967996 0 \N \N f 0 \N 0 74713947 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424365 2025-03-04 02:57:22.732 2025-03-29 22:39:49.747 \N Territory top-up time tomorrow.\n\nLooking forward to investing back the gains of this past month. https://example.com/ 20811 423954 423954.424365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.71069400798196 0 \N \N f 0 \N 0 113773713 0 f f \N \N \N \N 423954 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402818 2025-02-14 05:22:25.332 2025-03-29 22:39:49.747 \N I have zero technical expertise and work in a completely unrelated field but have successfully orangepilled several people deep in the bear market. https://example.com/ 8541 383440 383440.402818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8728241755398 0 \N \N f 0 \N 0 172266562 0 f f \N \N \N \N 383440 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422364 2025-03-02 12:11:52.196 2025-03-29 22:39:49.747 \N I suspect they don't fully appreciate how many businesses they harm or prevent from starting with the increasing hodgepodge of reporting and regulation requirements.\n\nI'd really like to see very minimal regulation and reporting for businesses below a certain size. If we are going to have all this burdensome regulation stuff, it'd be nice for it to be progressively structured. https://example.com/ 15510 421161 420895.421161.422364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9562262403649 0 \N \N f 0 \N 0 130955906 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410993 2025-02-20 21:40:16.538 2025-03-29 22:39:47.601 Mutiny users: do you run your own Mutiny server / node? Mutiny wallet is a LDK node for mobile.\nBut require to run a LDK node and a backend server on another machine, using your own domain.\n- https://github.com/MutinyWallet/mutiny-web/releases\n- https://github.com/MutinyWallet/mutiny-node\n\nAlso can be run on default domain app.mutinywallet.com that comes pre-configured in the app. Yes, you control the node wallet keys, but you do not control the domain where the node is actually running.\nIf that domain goes busted, yes you can recover your funds, but you need to do some not so easy steps. Not easy for a noob.\n\nI am wondering how many Mutiny users are running their own Mutiny server / node. \N 9261 \N 410993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2471209832384 0 \N \N f 16370815 \N 1 110247119 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404514 2025-02-15 23:51:49.923 2025-03-29 22:39:47.602 bitcoin++ nix-edition happening in Berlin, Oct 6+7 \N https://btcpp.dev/berlin23 4074 \N 404514 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 1.85676765267594 0 \N \N f 0 \N 0 70145742 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435754 2025-03-12 23:43:59.143 2025-03-29 22:39:49.747 \N An old thought that's new again: your own sense of how you work -- what makes you tick, what motivates you, what you like and don't like -- is only a theory. And like every theory, it can be poorly- or well-supported by evidence, poorly- or less-supported by science, and you can be more- or less-diligent in trying to figure it out. https://example.com/ 844 435639 435639.435754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.494608864985 0 \N \N f 0 \N 0 167450152 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434843 2025-03-12 09:23:41.994 2025-03-29 22:39:49.747 \N I think the majority of stackers are here for the community, the sats are just part of how we talk to each other. \n\nIt's like a we are all buskers on a giant subway platform. We are on our way somewhere, but many stop for a second and to a play a song or listen to something new. https://example.com/ 13921 434818 434795.434796.434804.434818.434843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.765988969662 0 \N \N f 0 \N 0 37580172 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416057 2025-02-25 11:01:29.891 2025-03-29 22:39:49.747 \N hi-res\n\nhttps://www.visualcinnamon.com/img/portfolio/2020/space-wars/space_wars_spread_rgb.png https://example.com/ 17331 415992 415833.415992.416057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3734039730928 0 \N \N f 0 \N 0 248000689 0 f f \N \N \N \N 415833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408107 2025-02-18 15:09:46.479 2025-03-29 22:39:49.747 \N I am a lawyer. Different jurisdictions have different rules, and often courts do not allow rights to damages to be contracted away. Also, under common law tradition, a written document is typically strictly construed against the drafter of the document. So, in other words, if it's a close call, the party who created the document loses. Of course I'm speaking in generalities.I have no knowledge of this specific case, and I'm a U.S. lawyer. So, take what I say with giant spoonfuls of salt. https://example.com/ 663 408084 407903.408084.408107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8341744139098 0 \N \N f 0 \N 0 14631225 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410612 2025-02-20 15:10:41.559 2025-03-29 22:39:49.748 \N I think it depends on how you want to get involved:\nL1 protocol stuff? Definitely C++ since core is written in C++. However, with Python, you can also improve the core test suite.\nFor L2 protocol stuff, I think Golang or Rust are good candidates (LND is written in Go, CLN in C/Rust)\nIf you just want to build applications like SN, you can use any stack basically. SN uses NextJS + Postgres.\n\nJon Atack has a lot of resources on how to contribute: https://jonatack.github.io/articles.\n \nBut don't forget that reviewing and testing also counts as contributing. That's where most people are needed:\n\n> Remember that testing issues and reviewing are the most effective ways you can contribute as a new contributor (and will teach you more about the codebase than opening PRs).\n\n-- https://jonatack.github.io/articles/how-to-contribute-pull-requests-to-bitcoin-core\n https://example.com/ 18402 410449 410311.410435.410449.410612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4399219635812 0 \N \N f 0 \N 0 230646197 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 377335 2025-01-22 20:10:46.154 2025-03-29 22:39:47.602 How Bitcoin Scales w/o Forks: the Lightning, Liquid, On-Chain Triangle Here's the scenario. You are having a beer at a bar with a friend, when the topic of Bitcoin comes up. Your friend seems generally curious. You explain Bitcoin to him (or her) and they are sincerely interested - they want to learn more and get their first Sats (they don't even know what Sats are yet) say maybe 10-20$ worth.\n\nYou are going to see them again later that day, maybe the next day so there can be some follow-up.\nYou say 'hey ok' tell you what 'you pay for the beer' (10-20$ worth) and I'll give you some Sats as compensation. They agree. Now, where do you go from here?\n\nThey only want 20$ of Sats. Now *how the hell do they accept 20$ of Sats economically?* \nShort of them getting a 'custodial' wallet, which they don't want and probably shouldn't get *there is no way for them to do this* really...\n\nAnd they don't have the interest or time to 'sign up' for an exchange - If Bitcoin is so great why does 'an exchange' have to be involved anyway? KYC, paperwork, waiting periods WTF what a great way to turn newbies off to Bitcoin.\n\nThe on-chain fee for accepting 20$ of Bitcoin is... 50 Cents - 1$ and they don't have a Lightning channel.\nNo Lightning channel (which requires 300,000 Sats opening to be economical) and no 'exchange account' means there is no way of accepting the Bitcoin... and even if they *did* accept on-chain through a mobile wallet, the spending fee would be too great to be economical *to spend the UTXO anyway.*\n\nAll the while their knowledge about Bitcoin is very limited... so they probably need something *that just 'works'* to be able to send, receive, and store a little bit (no pun intended) without things becoming too complicated.\n\nSo what do you recommend? How do they accept, *non-custodially* 20$ of Bitcoin *on the spot* while keeping things simple and straightforward?\n\n-----------------\n\nI believe the answer is Liquid Bitcoin, in conjunction with Lightning through Non-Custodial Atomic Swaps.\n![](https://m.stacker.news/65493)\n\nBy sending your friend (Bitcoin newbie) Liquid Bitcoin, non-custodially, through a liquid/lightning wallet they\n- Receive the 'Bitcoin' right away, in just a minute or 2\n- Receive the Bitcoin through a neat QR code\n- don't have to deal with addresses and derivation paths and\n- *very importantly* can receive the Bitcoin from *your own lightning node*\n\nYou *send them Lightning* and *they receive Liquid* it's that simple. Now before you say 'hey that's an Atomic swap and Boltz has supported Atomic Swaps for a while now...'\nhttps://boltz.exchange/\n\nYes that's correct Boltz has. But using Atomic Swaps manually is too advanced and difficult for most people... it's really primarily for enthusiasts and *not for beginners*. And if you overwhelm people they just turn off or get confused... ask me how I know?\n\nBut your friend can download an app on their phone:\nhttps://blitz-wallet.com/\n\nSo they download *Blitz Wallet* write down their 12-word seed phrase in a private place, and the next time you see them they generate the QR Code to receive 20$... you scan the QR with your Lightning App (Phoenix, Green, Zeus, Breeze, whatever) and *you send them Lightning* which is cheaply and *immediately* converted to Liquid for them *to hold non-custodially*, send and receive.\n\nhttps://blog.boltz.exchange/p/launching-liquid-swaps-unfairly-cheap\nhttps://blog.boltz.exchange/p/dispatching-chain-swaps\n\nYes this could, technically, have been done *through the Boltz Exchange* on a webpage... but it's already complicated enough to write down and keep safe a seed phrase for most people. Blitz Wallet, on the other hand, I believe is a practical solution evolving *today* along with BTCPay Server and the Boltz Plugin.\n\nhttps://blog.boltz.exchange/p/launching-the-boltz-btcpay-plugin\n\n------------------\n\nNow that the app is downloaded with the seed phrase non-custodially secured...\nIf your friend wants to send you, or anyone else, to include *a merchant or exchange* the 'sats' they just received they can scan a lightning QR *or* liquid QR code and send *directly from the Blitz mobile app...* without having the technical knowledge about how Lightning *or* liquid works.\n\nIn the same way that 99.9% of people have no idea how 'the internet works' in the future 99% of people will have *no idea* how Lightning, Liquid, or On-Chain works. Bitcoin will *just work* for them and I believe this is a technical and UI necessity.\n\nThen once your friend/fellow drinker's 'liquid' balance builds up to say, 300,000 sats or greater, a Lightning Channel is automatically opened for them using Blockstream Greenlight - a Lightning-Node in the cloud that only they have access to through their seed phrase. A "maximum opening fee" can also be set so that low on-chain fees will be utilized economically. When the main chain is lesser-utilized a channel will be opened (defaulting to 5000 sats max).\n\n![](https://m.stacker.news/65512)\n\n"Inbound Liquidity" is created for them automatically (through settings in the app) on their Lightning Channel, for example allowing for 80% outbound liquidity, 20% inbound *swapping some lightning sats to liquid sats* in the background of the app. This is all done automatically. Then once the Lightning Channel is opened *lightning is the primary way the user sends and receives within the app...* enabling exchange, merchant, and peer-to-peer sending and receiving. The user doesn't have to 'get into the weeds', it will just work seamlessly (and it does I have tried it). \n![](https://m.stacker.news/65513)\n\nIn addition, Blitz *can* use eCash (Cashu or Fedi) in the form of an independent organization's Lightning Sats to make *very small* micropayments prior to a Lightning Channel being opened. I have tried this (BTC Sessions covers it well) and it does a good enough job for things like Stacker News or Nostr.\n\nFrom https://blitz-wallet.com/pages/faq/\n- "Blitz Wallet uses Liquid-to-Lightning and Lightning-to-Liquid swaps through Boltz until a Lightning channel is open. Currently, the minimum swap amount is 1,000 satoshis, or 0.00001 Bitcoin. In many cases, this is too expensive and excludes users from making transactions. To address this, Blitz Wallet uses eCash to send and receive Lightning payments under 1,000 sats."\n\n![](https://m.stacker.news/65518)\n\n----------------------\n\nBoltz, utilizing the concept of the Lightning + Liquid + On-Chain Triangle... takes a novel, interesting approach to BTCPay Server as well. This will allow (currently in Beta) merchants, individuals, and organizations to accept Liquid Bitcoin, immediately convertible to Lightning *without the organization having to run complicated node software.*\n\nhttps://blog.boltz.exchange/p/launching-the-boltz-btcpay-plugin\n![](https://m.stacker.news/65522)\n\nIf, for example, an NGO or charitable group wants to accept payments in Bitcoin, anonymously from anyone at any time, on-chain fees will be prohibitive not to mention *less* private, relative to using Lightning or Liquid ie layered solutions. Assuming that people want to donate a few dollars worth of Bitcoin at a time (a few thousand sats) most people will want to *donate over lightning* using BTCPay Server... individual, whole UTXOs are inefficient. Mobile Lightning apps, convenient and available everywhere can be used to transact without touching on-chain, and the receiving organization doesn't have to understand how *Lightning actually works...* or necessarily all of the technical tradeoffs.\n\nJust like people don't understand "the tradeoffs" in the way the internet is constructed or used today.\n\nIn other words, the same principles that empower the less *tech-savy individual* (on Blitz wallet)... can empower *lightning transactions* quickly and cheaply for an organization, all without the complicated node or liquidity management:\n\n![](https://m.stacker.news/65523)\n\nAfter the 'lightning payments' are swapped to Liquid (cheaply and immediately) a liquid balance is accumulated until a reasonable number of sats are available to open a Lightning Channel (using Greenlight or another Non-KYC provider).\n\n![](https://m.stacker.news/65528)\n\nThe organization decides if they want mostly 'inbound' or 'outbound' liquidity... and through lightning-liquid swaps that "liquidity mix" is established automatically for them depending on their use-case.\n\n------------\nFrom https://blog.boltz.exchange/p/guide-how-to-use-boltz-clients-autoswap\n- Next, setup asks us to decide if we want to specify our minimum inbound liquidity in sats or in percentage of our total channel capacity. We choose percentage and go with the default 25% threshold. This means that once our inbound liquidity hit the minimum threshold of 25% inbound liquidity (or, in nominal terms, a bit more than 750k sats of our 3 million sats channel), Boltz Client starts rebalancing our channel.\n\n- Next we set a budget, the maximum amount we want to spend on fees, applicable for a certain budget period. We are going with 50k sats over 7 days rolling. Lastly, Boltz Client informs us that the target when executing swaps is 100% inbound liquidity, which is exactly what we want as an online merchant, have all our liquidity available as inbound liquidity.\n-------------\n\nAfter a certain "liquid" balance is accumulated, a certain number of "liquid" Sats are swapped to 'on-chain' without exceeding a fee threshold... in a view-only wallet with the keys stored offline.\n![](https://m.stacker.news/65533)\n\nThe same 'swap' can also be executed in the opposite direction... to move Liquid to Lightning for example balancing a lightning channel or other purposes.\n![](https://m.stacker.news/65534)\n\nFrom the Boltz Blog (a long read but very interesting):\n"The first decision boltzcli autoswap setup asks us to take is if we want to:\n- maintain inbound liquidity via reverse, e.g. if you are a *merchant* and need to be able to receive Lightning payments reliably,\n- maintain outbound liquidity via normal, e.g. if you are running a Bitcoin ATM that accepts FIAT and needs to be able to send Lightning payments reliably,\n- maintain both, e.g. if you are operating a Bitcoin exchange and offer Lightning deposits and withdrawals and need to be able to send and receive reliably\n\n"Let’s now imagine we are operating an online merchant selling amazing hats for sats and need to be able to reliably receive Lightning payments. We do not have the need to send Lightning payments out. Our current channel balance is not great for this use case as we currently only can receive up to 42488 sats, which is barely the price of one hat. Our desired channel balance is basically the exact opposite - all of our channel balance on the remote side of the channel as inbound liquidity. Consequently, we are continuing with the first option “reverse” to manage our inbound liquidity.\n\nNext up is selecting the destination wallet, which also determines if we are *swapping to Liquid or to the mainchain* (both are supported by Boltz Client). We want to swap to Liquid to benefit from reliably cheap network fees and avoid rebalancing costs spiraling out of control when mainchain miner fees rise."\n\n------------------------\n\nI think there are some *very* important takeaways from this 'Atomic Swap' conversation:\n1) No new technologies or soft-forks are required to swap between Liquid, Lightning, or On-Chain.\n\n2) It is inevitable that on-chain fees will rise... requiring the use of 'layered money' solutions that we can implement *now*... not "at some point" in the future once we have a fork that may never happen.\n\n3) People, whether individuals or organizations, will want instant settlement or *relatively quick* settlement for small transactions... and those transactions will be *secure enough* for their size. Sending *10 BTC* is not the same as sending 10000 Sats... one is an expensive house, the other a fast-food lunch (think Chick-fil-A). Why would we expect these different transaction amounts... to be on the same 'layer' of Bitcoin? The fast-food "lunch-line" requires instant settlement... the house purchase can wait an hour (which is remarkably fast relative to legacy payment systems).\n\n4) No other settlement network can provide instant, quick micropayments *like Lightning can* to anyone in the world while also remaining interoperable with the world's most secure Proof-Of-Work computer network. The fact that Lightning can settle to on-chain *at all* is remarkable... and this shouldn't be understated in my opinion. \n\n4) Liquid is obviously not the "same thing" as on-chain Bitcoin... *no-one is saying that.* But what Liquid does provide is a temporary, settlement layer for funds to accumulate, useful for *channel balancing* or transacting quickly and cheaply. Liquid is *cheaper and more private* than on-chain... and although it necessitates compromises ("Federation" risk) there is no other way to 'onboard' a new user, non-custodially for small amounts of Bitcoin (10$) until they have enough to open a lightning channel. Even with a 'soft-fork' my understanding is that the apps, tooling, and 'operating experience' just isn't there... it would take years to develop, not to mention the time required to educated users.\n\n5) On-Chain is extremely transparent. Transparency is necessary for *Global Money* to expose any "inflation bug" (cough cough *XMR*) in my opinion. And without transparency people won't trust a blockchain. However the additions of Lightning and Liquid greatly confuse chain-analysis when used intelligently. Liquid does not show transaction amounts... and Lightning transactions aren't publicly visible anyway. *The greater the layer-set and anonymity-set the more private the transactions* while the base-chain can remain transparent for global money purposes.\n\n6) Boltz, in my opinion, in conjunction with Aqua Wallet and Blitz are offering practical scaling solutions "today" instead of relying on a soft-fork. Just recently I sent 10$ to a friend, who owned no Bitcoin and no sats, to settle a 'bar tab'. What are the other solutions or methods available *today*... that allow a new user access to the lightning network, non-custodially, cheaply and quickly, for daily-spend amounts of Bitcoin? Now... my friend can buy a coffee, or tip stacker news, or save a few hundred thousand Sats (allowing access to a lightning channel) all in one app. Isn't this what we want, after all for the vast majority of new users? A mobile app can never replace on-chain savings for long-term use (buried in the back yard in a treasure chest etc, chain in a steel box LOL...) but it can get Bitcoin into the hands of *millions* who don't have access today *and in the near future* not to mention many businesses and organizations.\n\nI look forward to seeing how all this develops, and I wonder why there isn't more discussion of these kinds of apps or tradeoff-technologies.\n\nFrom Boltz (https://blog.boltz.exchange/p/launching-the-boltz-btcpay-plugin):\n\n- "Boltz.exchange plugin is going to be the most impactful plugin ever released on BTCPay. Be on the lookout. [Alan of Strainly on September 8, 2024]"\n\nI hope Alan is right and I am hopeful.\n\n![](https://m.stacker.news/65541)\n\n\n\n\n \N 8380 \N 377335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.42520626341433 0 \N \N f 84709431 \N 1 199157995 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424340 2025-03-04 01:36:27.917 2025-03-29 22:39:49.748 \N A full list here:\n- [Hard Money](https://bitcointv.com/w/t3ZhRSfaFJTWG9K3ubsrcW)\n- [Anatomy of the state](https://bitcointv.com/w/w4ioKqex5GvkQkazGBBcex)\n- [Petrodollars](https://bitcointv.com/w/s21p3BECE1uAfTb23FHE58)\n- [The System of Money](https://www.youtube.com/watch?v=yLZUVsmUwZY)\n- [The 4 horsemen](https://www.youtube.com/watch?v=5fbvquHSPJU)\n- [All wars are bankers wars](https://www.bitchute.com/video/urWLjBhL0b3Y/)\n- [JFK to 911 Everything is a Rich man's trick](https://www.bitchute.com/video/vsT4rOS03wXi/)\n- [Century of enslavement: the history of federal reserve](https://www.bitchute.com/video/zwdCl18pslkC/)\n- [The Wizard of Oz: the hidden message](https://www.bitchute.com/video/dxjwvEviX44F/)\n- [The creature from Jekyll island](https://www.bitchute.com/video/WjSOLRL0Q5F5/)\n- [911 trillions - follow the money](https://www.bitchute.com/video/c9kKcSpenrJV/)\n- [How Big Oil Conquered the World](https://www.bitchute.com/video/U67rpGthMRQe/)\n- [Hidden secrets of money - series](https://www.youtube.com/playlist?list=PLE88E9ICdiphYjJkeeLL2O09eJoC8r7Dc)\n- [El concursante](https://www.bitchute.com/video/KVNE0cqI9xm1/)\n- [The american dream](https://www.bitchute.com/video/4RP1nXDE1UCP/)\n- [The Uncensored Truth about Inflation](https://www.youtube.com/watch?v=Gu0EQM01VU0)\n- [Gray state, The Rise](https://www.bitchute.com/video/koOhXLn0cURR/)\n- [Bitcoin documentaries](https://www.bitchute.com/playlist/gF3xhGBFuDNW/) - full playlist\n- [Bitcoin Simply Explained](https://www.youtube.com/user/waem/videos) - by Ioni Appleberg (Youtube Series) https://example.com/ 13553 424330 423124.424330.424340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6062101953942 0 \N \N f 0 \N 0 219760048 0 f f \N \N \N \N 423124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441295 2025-03-17 22:24:49.668 2025-03-29 22:39:49.748 \N [![wife-10yrs-ago-now.jpg](https://i.postimg.cc/K8dYf4fX/wife-10yrs-ago-now.jpg)](https://postimg.cc/18rP5mbM) https://example.com/ 959 441247 441247.441295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3562822786057 0 \N \N f 0 \N 0 86428318 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402866 2025-02-14 07:19:25.253 2025-03-29 22:39:49.748 \N Day 323 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 2460 402751 402003.402682.402751.402866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.484019742332 0 \N \N f 0 \N 0 73608893 0 f f \N \N \N \N 402003 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410629 2025-02-20 15:21:38.536 2025-03-29 22:39:49.748 \N your wishes have been granted 🪄 https://example.com/ 10016 410547 410237.410484.410529.410547.410629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1243867527611 0 \N \N f 0 \N 0 245160345 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423457 2025-03-03 11:39:43.526 2025-03-29 22:39:49.748 \N ![BraidingSweetGrass.png](https://m.stacker.news/21091)\n\nBraiding SweetGrass by Robin Wall Kimmerer\n\nA book I loved that found me at the right time. Robin Wall Kimmerer is a professor of plant ecology. She is also a Potawatomi women. In the book she tells stories of her culture and life exploring themes about the earth, plants, and animals and how we are all interrelated. Reciprosicity and the honerable harvest stories are the ones that struck me the hardest. \n\nIt's not Bitcoin but give it a chance, it might surprise you. From the publisher's summary:\n\n"Once we begin to listen for the languages of other beings, we can begin to understand the innumerable life-giving gifts the world provides us and learn to offer our thanks, our care, and our own gifts in return." https://example.com/ 5306 423453 422334.423453.423457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5193388404481 0 \N \N f 0 \N 0 68870781 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402979 2025-02-14 10:19:19.994 2025-03-29 22:39:49.985 \N I somehow figured that by exposing myself to small amounts of electrical charge I'd develop psychic powers. I spent a day licking 9V batteries and zapping my finger on the gas stove igniter. https://example.com/ 11378 402556 402556.402979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.81025659802642 0 \N \N f 0 \N 0 69595653 0 f f \N \N \N \N 402556 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448458 2025-03-22 15:58:59.701 2025-03-29 22:39:49.985 \N My answer is easy and it's because it's down right now and they can't. \n\nSo I feel this lol. https://example.com/ 16149 448454 446513.447049.447084.447186.447661.447685.447757.447765.447772.447782.448454.448458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.04015649206942 0 \N \N f 0 \N 0 168118586 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413876 2025-02-23 14:06:05.704 2025-03-29 22:39:49.991 \N This was new to me as well. Siggy really did do a great job with the post. https://example.com/ 998 413872 413854.413872.413876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.718595005590359 0 \N \N f 121271755 \N 1 176641487 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416951 2025-02-25 23:53:39.456 2025-03-29 22:39:49.992 \N Day 230 of snailposting everyday 'til BTC hits $100k.\n\n...and 30 push-up(s).\n\n__@_'-' https://example.com/ 19829 416310 416310.416951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.91863949340555 0 \N \N f 0 \N 0 29854144 0 f f \N \N \N \N 416310 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423138 2025-03-03 02:46:52.433 2025-03-29 22:39:47.602 Fountain 1.1.5 - Simpler Library, Pay BOLT-11 Invoices and Artist Pages **A Simpler Library Architecture**\n\nWith Fountain 1.1.5 we have massively simplified the way your content library works within the app, _removing over 40,000 lines of code_ in the process. This simpler library architecture brings many benefits including:\n\n- A new offline caching database to make offline playback more reliable and reduce system resource requirements\n- A simpler data model that reduces mobile data and memory usage\n- Fixes to long-standing playback issues such as the queue re-arranging\n\n---\n![](https://m.stacker.news/57352)\n\n**Pay BOLT-11 Invoices**\n\nYou can now withdraw funds by generating a lightning invoice using any app that supports lightning payments, then paying it from your Fountain wallet.\n\nWhen you tap the Withdraw button on the Wallet page, you will now see two options:\n\nPay Lightning Invoice: Scan any lightning invoice or paste from your clipboard to send the amount requested. We’ve also added a scan icon to the top right of the Wallet page for easy access.\n\nLNURL-Withdraw: As before, you can also generate an invoice that you can paste into other lightning wallets.\n\nPreviously we just supported LNURL-Withdraw, which only a few other lightning wallets support. Now you can withdraw to popular apps like CashApp and Strike that allow you to exchange your bitcoin for your preferred currency and transfer it to your bank account.\n\nIt’s also now possible to pay for anything in bitcoin with your podcast app. Next time you’re buying a coffee and you can pay in bitcoin, open Fountain, scan the invoice and watch the cashier lose their mind.\n\n\n---\n![](https://m.stacker.news/57354)\n\n**Artist Pages**\n\nIf you want to help test new features out before they get released, or if you want to share feedback or send a feature request, you can join Fountain Beta on Telegram. All iOS and Android users welcome.\n\n\n---\n\nIf you're a Fountain user please let me know your feedback below. I would love to learn how you think we could improve! 🙏\n\n https://blog.fountain.fm/p/1-1-5 1959 \N 423138 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 0.00457254003300989 0 \N \N f 0 \N 0 63241502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51758 2023-08-18 16:17:38.014 2025-03-29 22:39:47.603 Banco: Non-Interactive Swaps \N https://vulpem.medium.com/banco-non-interactive-swaps-00d042791e06 674 \N 51758 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.6272281131215 0 \N \N f 0 \N 0 136655601 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407715 2025-02-18 10:18:20.092 2025-03-29 22:39:49.985 \N Still thinking about how awesome a stacker sports fork would be. https://example.com/ 633 407713 407713.407715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4311923390209 0 \N \N f 0 \N 0 226318370 0 f f \N \N \N \N 407713 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436408 2025-03-13 14:37:31.778 2025-03-29 22:39:49.986 \N After we have FediMints, Stabilised BTC on LN and TipJar - what else do we need to get on Lightning? Is anyone getting closer to have have "stabilised" Bitcoin as per the HRF-Strike bounty?\n\nMy humble tip for what I believe is needed:\n> I think we really need to have "Decentralized Bitcoin Inheritance" model/standard across our wallets with slick UX (e.g. after 5 years of inactivity the funds get sent to your designated address - either your family member's, or you can choose a dedicated "trusted" company to handle your heritage, or it gets donated. The UX could be like when Muun asks you to do backups...). No more losing bitcoin... https://example.com/ 889 436152 436036.436152.436408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.47000694591677 0 \N \N f 0 \N 0 221783547 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444353 2025-03-19 20:04:42.879 2025-03-29 22:39:49.985 \N Good idea. In the meantime just takeover Meta like the rest of us. https://example.com/ 10698 444137 444112.444137.444353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.27710176793568 0 \N \N f 0 \N 0 139407511 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430647 2025-03-09 11:37:57.927 2025-03-29 22:39:49.989 \N @k00b hung up the SN sign last nite @PlebLab\n\n![IMG_3445.jpeg](https://m.stacker.news/4625) https://example.com/ 4313 429534 429534.430647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.21826961753104 0 \N \N f 131240623 \N 1 83711650 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458372 2025-03-29 08:29:09.352 2025-03-29 22:39:49.992 \N Did you check out @kr 's post yesterday?:\nhttps://stacker.news/items/184255\n\nLots of responses that relate to your question. https://example.com/ 5520 458011 458011.458372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9341652052241 0 \N \N f 0 \N 0 227745716 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 278358 2024-10-26 19:43:19.141 2025-03-29 22:39:47.604 Stacker News is on Nostr Stacker News is now on Nostr, and we'll be sharing some of the top SN stories there moving forward.\n\nGive us a follow 👉 npub1jfujw6llhq7wuvu5detycdsq5v5yqf56sgrdq8wlgrryx2a2p09svwm0gx\n\n \N 16876 \N 278358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4735118513675 0 \N \N f 0 \N 0 206596009 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410540 2025-02-20 14:24:16.616 2025-03-29 22:39:49.989 \N Day 88 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 3642 409969 409708.409760.409969.410540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5510644099976 0 \N \N f 0 \N 0 143063438 0 f f \N \N \N \N 409708 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402317 2025-02-13 17:12:00.087 2025-03-29 22:39:49.989 \N This one was big for me. Motivation is bs, be disciplined instead https://example.com/ 2829 401865 401865.402317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5925557546395 0 \N \N f 0 \N 0 230829025 0 f f \N \N \N \N 401865 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416855 2025-02-25 22:18:10.982 2025-03-29 22:39:49.989 \N The zaps are now fireworks so cool https://example.com/ 17042 416633 416158.416633.416855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3278294566955 0 \N \N f 0 \N 0 164489410 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404436 2025-02-15 21:48:10.215 2025-03-29 22:39:49.989 \N I did this last year. It was difficult, but I learned a ton.\n\nThey used discord (which wasn't my favorite), but everyone was really friendly and the curriculum was great. There were a lot of talented people in the cohort and many of the strongest went out of their way to be helpful, including a bunch of names on the list who got funded.\n\nI was sort of expecting someone to pop out and ask for something from me by the end but that never happened. I wonder if I should apply again to see if they changed things from last year. https://example.com/ 17171 404009 404009.404436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6455640826828 0 \N \N f 0 \N 0 25938214 0 f f \N \N \N \N 404009 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407988 2025-02-18 14:05:06.355 2025-03-29 22:39:49.989 \N Walmart in the U.S. claims that deflation may be coming to certain food items in the next quarter. Demand may have fallen off a cliff. https://example.com/ 2327 407495 407495.407988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0691026414896 0 \N \N f 0 \N 0 13101994 0 f f \N \N \N \N 407495 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408024 2025-02-18 14:34:12 2025-03-29 22:39:49.99 \N Altcoins are usually just unregulated companies. No thanks.\n\nIt's true what you quoted. Every time you read about a new exciting project, just think why they're not using Bitcoin for that instead. Every time you read rewards are paid in some alt instead of Bitcoin, ask yourself the same question.\n\nThey usually don't use Bitcoin because that's real money. Instead, they provide you with some useless token that they can print more of, or that they acquired at zero or near zero cost. They basically want your money for free. \n\nThe funny thing is that your greed is actually feeding their greed.\n\nI now basically only pay attention to projects that use Bitcoin only. Anything else is just a waste of time. https://example.com/ 18309 407607 407607.408024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.07484569907829 0 \N \N f 0 \N 0 148831150 0 f f \N \N \N \N 407607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401578 2025-02-13 07:25:21.701 2025-03-29 22:39:49.99 \N Day 195 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 16347 400739 400739.401578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2219616730169 0 \N \N f 0 \N 0 178151894 0 f f \N \N \N \N 400739 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457562 2025-03-28 15:10:27.789 2025-03-29 22:39:49.99 \N Day 213 of snailposting everyday 'til BTC hits $100k.\n\n...and 13 push-up(s).\n\n__@_'-' https://example.com/ 21207 457528 457476.457495.457508.457528.457562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.2443380644303 0 \N \N f 0 \N 0 132298487 0 f f \N \N \N \N 457476 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458229 2025-03-29 05:51:42.88 2025-03-29 22:39:49.99 \N Are we talking rail or top shelf? https://example.com/ 18188 458226 458188.458210.458223.458226.458229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8624531169871 0 \N \N f 646654473 \N 4 81229548 0 f f \N \N \N \N 458188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444542 2025-03-20 01:44:45.411 2025-03-29 22:39:49.99 \N > Those charged today engaged in a conspiracy to launder money for cybercriminals, including for a North Korean cybercrime organization seeking to evade sanctions. \n\nHow can you live with yourself saying stuff like this? How don't you just melt into a puddle when you tell bold faced lies? https://example.com/ 1389 443545 443545.444542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3256473046153 0 \N \N f 0 \N 0 230882857 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408349 2025-02-18 18:02:21.371 2025-03-29 22:39:49.991 \N Because we haven't built it yet. https://example.com/ 4763 408265 408265.408349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8415540577213 0 \N \N f 0 \N 0 220040501 0 f f \N \N \N \N 408265 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450107 2025-03-23 18:55:17.823 2025-03-29 22:39:49.991 \N First of all, sorry about loosing that much. I would also be devastated and angry if it happened to me.\n\nThat said I think we need to add some context to all of this. All the software you use is open source and free of charge. Developers want to build tools to help others to make their lifes easier and in the case of the Bitcoin ecosystem to even change the world and make everyone more free and independent.\n\nYou seem to be angry because d11n did not apologise to you on nostr. Reading the reply you wrote, you claim to have lost 4 BTC, you lost your life savings and ask for any help. Anyone could make that claim, there was no context how credible your reply was. Could have been any random troll to react on the alert to bash an already extremely stressed developer, no?\n\nI believe you that you lost the BTC but the blame game here seems a bit off.\n\nSome questions and strange datapoints randomly thrown together, your slogan is don't trust, verify - so here we go.\n\nSounds like you did not yet have any merchants onboarded, even if you had - putting 4 BTC on the line seems a bit much to make first steps in onboarding merchants? \n\nSoftware versions:\nYou say 3 months ago you setup btcpay and lnbits:\n- btcpay 1.11.1 was released in July (5 months ago), latest version is 1.11.7 released 18th October\n- lnbank 1.6.2 was released 20th July, latest version (before the vuln fix) 1.8.8 from 20th Nov. \n- lnbits of you site is running v 10.9 from 4th July, latest version 11.2 from 27th Nov. \n\nThe reality is even if the vulnerability was disclosed responsibly and a fix was in place for some versions already, you very likely would not have it installed when you were hacked. In comments you and darthcoin say you are technical and very security aware. Sorry, but first thing is to not run outdated software. \n\nTimeline of events:\nYou say 20 mins after you woke up December 6th, noticed 998 outgoing transactions, contacted darthcoin and 20 minutes later you shut down the server when 4 btc were gone.\n- Timestamp in UTC of your last transaction in the sheet is "2023-12-06T21:02:02.150Z", El Salvador is UTC-6, so about 15:00 afternoon. \n- The sum of BTC drained the last 20 minutes is 0,01645517 BTC\n- Draining of funds started 15:00 UTC which is 09:00 El Salvador time, so ongoing for 6 hours (you said you shut down server 20 mins after waking up at 15:00 local time?)\n- in your nginx log there is lnbank call even on Dec 7: \n [07/Dec/2023:02:05:35 +0000] "POST /plugins/lnbank/wallets/7c996caf-e08a-4b7b-b570-7e5a53eb7aea/receive HTTP/2.0" 200 9532 "https://btcpay.maximacitadel.org/plugins/lnbank/wallets/7c996caf-e08a-4b7b-b570-7e5a53eb7aea/receive" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36"\n\nThe story that you noticed it after you woke up does not quite match to the transaction table nginx logs you provided. \n\nAlso the table shows only draining of funds so either you cleaned up 1700 transactions manually from that table or it is a sign that there really where 0 merchants on your node. The Nginx logs show 15k entries for lnbank /send/confirm endpoint so I would expect many more entries in the transactions table.\n\nDon't want to beat an already down man but like your podcasts slogan we are in bitcoin and we don't trust but verify. Certainly the vulnerability in lnbank did not help but running outdated software also is a receipe for trouble and even a fix would not have saved you if you don't update your software stack. Wish you all the best and keep the head up. https://example.com/ 10270 450023 450023.450107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.84107672241601 0 \N \N f 0 \N 0 71208628 0 f f \N \N \N \N 450023 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450213 2025-03-23 19:34:49.061 2025-03-29 22:39:47.604 Volatility is our Protection "Bitcoin is too volatile." How many times have you heard that from normie nocoiners? I know for myself, it's the biggest reason that I've heard for why there's not greater adoption.\n\nIndeed, it's an understandable objection. The upside is great, but volatility and risk are not, at least from a normie point of view. After all, if the point of saving is to mitigate risk for the future, then volatility does the opposite because there's less predictability in purchasing power.\n\nYet if we examine things a bit further, what they ask for is something that cannot exist in a fiat economy. Let me explain.\n\nThe behavior that is sought by the people that complain about Bitcoin being too volatile is an asset is something like the various fiat currencies that are stable to the dollar. For example, the Euro, the yen and the Canadian/Australian dollars have fluctuated, but have stayed in a reasonable range of the dollar, not really deviating more than 25-30% from the average over the last 20-30 years.\n\nYet their lack of volatility is decidedly artificial. It's the result of central bank operations. They keep their currencies within a peg range against the dollar by buying/selling dollars as needed. Obviously, Bitcoin doesn't have a central bank, so there's no stabilization mechanism and thus is a lot more volatile.\n\nOther than a few currency traders, nocoiners generally don't invest in foreign currencies despite there being relative stability and little volatility. They want the upside of Bitcoin as well. The returns of Bitcoin have been staggering, especially compared to traditional assets since its inception 15 years ago. The nocoiners want the large upside without the volatility. They want an asset that goes up over the long term with little to no volatility in the short term.\n\nBut this is impossible. Suppose such an asset existed. Say an asset went up 50% a year without volatility. What would happen?\n\nThe main feature of central bank backed fiat money is that there's no opportunity cost for money and loans are basically infinitely available. So say the loans are available at 10% yearly interest. The wall street finance bros in that case can easily buy the asset with the loan to make a cool 40% profit. They would do that all day long because making 40%/year is very difficult. \n\nBut because they need to *buy* the asset to make this trade work, this trade would cause the asset price to rise. But even if the asset price goes high enough that it's no longer 50%/year, but 20%/year, they would still continue because there's a 10% margin that they can make. Indeed, they will continue borrowing and buying for this trade until the asset's yearly price increase is at or below the loan rate.\n\nIndeed most of the profit available in the market have gone to bankers for this reason. Profitable things (companies, assets, etc.) all get arbitraged to death through these infinite loans.\n\nSo why doesn't this dynamic happen to Bitcoin? It's the volatility, particularly to the downside. The problem with using loans to buy the asset is that when you're underwater on the loan, you get liquidated. And liquidation makes the downward volatility worse! In other words, the giant volatility swings add significant risk to the loan-based strategies, and the more people doing them make the risk worse, even in the face of the massive profit margins.\n\nBitcoin volatility is our protection against fiat games taking over. The volatility adds risk, which prevent the loans from being too easily given, making the borrow and buy trade harder. The volatility also clears out the leverage, which ultimately comes from money printing.\n\nVolatility makes the levered players, the privileged players in the fiat system, lose. And that means the normal people, the ones that can't get loans or leverage win. \n\nVolatility is the plebs' protection. \N 3990 \N 450213 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.3356541891035 0 \N \N f 0 \N 0 154860999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 399656 2025-02-11 15:06:52.205 2025-03-29 22:39:47.604 Nostr Wallet Connect: A Bitcoin Application Collaboration Layer As the complexity of Bitcoin software and applications using Bitcoin grows, the need for a simple coordination mechanism for different applications to interact grows as well.\n\nNew nwc website: https://nwc.dev/ https://bitcoinmagazine.com/technical/nostr-wallet-connect-a-bitcoin-application-collaboration-layer 837 \N 399656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1360363720693 0 \N \N f 0 \N 0 191202268 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 411732 2025-02-21 16:49:27.637 2025-03-29 22:39:49.986 \N Finish my citadel into the mountains.\nThat's all. Is my priority for the next year.\n\nA nice simple house, built by my own hands, with raw materials, a nice vegetables garden, surrounded by an impressive mountain valley. https://example.com/ 16193 411086 410409.411086.411732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.24279140880001 0 \N \N f 0 \N 0 164710873 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450217 2025-03-23 19:37:55.871 2025-03-29 22:39:49.986 \N If they give me free money, I will take it and try to sell for bitcoin.\nOr buy stuff with it and sell that for bitcoin.\n\nBut I hope I will be able to live on a bitcoin standard, even when it means that my choices are limited.\nElse, I will probably leave my country to find a better place (if possible).\n\nSo that means I vote for "I will try to escape", I guess. https://example.com/ 15336 450117 447870.449922.450006.450008.450019.450117.450217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8621739356234 0 \N \N f 0 \N 0 37385082 0 f f \N \N \N \N 447870 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451371 2025-03-24 14:20:54.654 2025-03-29 22:39:49.988 \N One thing worth mentioning, the complexity of a stateless system is just so much lower than a stateful one, that it makes sense from an engineering perspective to consider if state is really necessary or if it's just an excuse to track users :P\n\nBut of course, sometimes you definitely need state/accounts/users , in which case PROXNUT may not help much https://example.com/ 19005 451363 451363.451371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0790780209927 0 \N \N f 0 \N 0 160638611 0 f f \N \N \N \N 451363 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430219 2025-03-09 00:08:23.369 2025-03-29 22:39:49.989 \N ![putin](https://substackcdn.com/image/fetch/w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5cef70bb-9eb8-4c93-940a-a09ecdc02bf2_640x853.jpeg) https://example.com/ 1603 430201 429958.429970.429982.430020.430033.430199.430201.430219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.98255507913873 0 \N \N f 0 \N 0 205362637 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451368 2025-03-24 14:20:04.949 2025-03-29 22:39:49.989 \N Have fun building a quaint legal defense based on a polite and pedantic argument like this!\n\n> Be not intimidated...nor suffer yourselves to be wheedled out of your liberties by any pretense of politeness, delicacy, or decency. These, as they are often used, are but three different names for hypocrisy, chicanery and cowardice.\n~ John Adams\n\nMeanwhile, we, The Sons of Liberty, those who protect freedom, boldly, will remind the tyrants, they too, can bleed.\n\nThere is nothing more feared by a tyrant than an rebel who has no desire for money, no respect for unjust laws, nor fear of death. https://example.com/ 11776 443755 443755.451368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2776812976216 0 \N \N f 0 \N 0 158975072 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450256 2025-03-23 20:08:12.39 2025-03-29 22:39:49.989 \N We introduced self-reply fee escalation to account for an exceptional poster who would self-reply in 3-5 comments to their many link posts with excessive context, ie non-discussion-eliciting comments. People would see their posts and think a discussion was happening, then navigate to see there wasn't a discussion in fact. This was back when many SN posts went uncommented on, thus they singlehandedly made comment count an unreliable signal.\n\nThat stacker has found greener pastures by the looks of it, so I'd be up for turning self-reply fee escalation off for OPs to see what it might be retarding.\n\nAs a non-writer that values writing, especially when it's done natively here, I'd love to support your writing experiment. https://example.com/ 2514 450254 449779.450254.450256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.33378115047744 0 \N \N f 0 \N 0 46620191 0 f f \N \N \N \N 449779 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451380 2025-03-24 14:26:21.329 2025-03-29 22:39:49.989 \N Tipping randos on SN and Nostr via my own node will never cease to be cool. Uncensorable, untraceable, unfuckable. Bitcoin is magical. https://example.com/ 8498 451356 451074.451321.451356.451380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.79964596893883 0 \N \N f 0 \N 0 111742027 0 f f \N \N \N \N 451074 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410732 2025-02-20 16:41:10.177 2025-03-29 22:39:49.989 \N Love to SN's continued development https://example.com/ 12738 410197 410197.410732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9274221608234 0 \N \N f 0 \N 0 147162982 0 f f \N \N \N \N 410197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422977 2025-03-02 20:31:33.728 2025-03-29 22:39:49.989 \N 1. Diminished client care overall and prob attributable to service staff not being armed with skills to field objections - customers want value 4 value - or in dirty fiat terms…want their dollars to go further \n2. Above average service was from a mechanic in small rural town that has a commitment to client care and understands that is what sets him apart and chosen - price is a secondary consideration from his customers \n3. The warm welcome is great opening- @k00b especially😊- for onboarding newcomers, ask people “what brings you here” ? useful ask for an organization to understand why users are here https://example.com/ 18734 422974 422863.422881.422926.422974.422977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8496698173823 0 \N \N f 0 \N 0 12239289 0 f f \N \N \N \N 422863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410579 2025-02-20 14:47:42.077 2025-03-29 22:39:47.604 Federal Reserve Hires Barbara Streisand as Brand Manager \N https://www.thebitcoinbugle.com/federal-reserve-hires-barbara-streisand-as-brand-manager/ 17708 \N 410579 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.6714459782139 0 \N \N f 212816101 \N 1 217654716 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 4878 2022-12-03 03:43:20.57 2025-03-29 22:39:47.605 Here Comes Bitcon k00b, Cowboy or Strucker Hat? HereComesBitcoin @k00b was originally made for [JABBB 04 Bitcoin Bahama](https://stacker.news/items/516584/r/supratic?commentId=716879), got lost in the archives!\n\n| COWBOY | TRUCKER |\n| :---: | :---: |\n| ![](https://m.stacker.news/56590) | ![](https://m.stacker.news/56591) | \N 10013 \N 4878 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4572438206275 0 \N \N f 0 \N 0 206373743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448923 2025-03-23 01:18:12.868 2025-03-29 22:39:49.99 \N Probably the chicken feeder guy. https://example.com/ 987 448919 447892.448822.448919.448923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.4940018379299 0 \N \N f 0 \N 0 151865392 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423626 2025-03-03 13:53:03.37 2025-03-29 22:39:49.99 \N 1. Surfacing time stamps for events in your SN wallet: https://github.com/stackernews/stacker.news/pull/585\n2. Experimenting with changes on handling similarities between nyms to help combat impersonation attacks and the like: https://github.com/stackernews/stacker.news/issues/580 https://example.com/ 10484 423615 423468.423504.423615.423626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.54112844178226 0 \N \N f 0 \N 0 35797378 0 f f \N \N \N \N 423468 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423627 2025-03-03 13:53:42.18 2025-03-29 22:39:49.99 \N ![](https://nostr.build/i/nostr.build_e96684d0ac47b60ac40ea75f7356e9e36be47c33a899fafc5a03558f9231f88f.gif) https://example.com/ 11395 423149 423124.423149.423627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2346417127629 0 \N \N f 0 \N 0 210299717 0 f f \N \N \N \N 423124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404524 2025-02-16 00:34:02.208 2025-03-29 22:39:49.991 \N I don't know that it's worth the effort. It's not really about how bitcoiners are (not that you're completely wrong). It's about how we're portrayed. \n\nNormies will always default to believing what they're told by "the experts" and "the experts" have their own reasons for portraying us poorly.\n\nMy preferred approach is to let people discover bitcoin on their own time and then welcome them with open arms. I suspect that will be when it solves some particular problem for them. As bitcoin improves, it will appeal to more people. https://example.com/ 1802 404422 404422.404524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4952639678068 0 \N \N f 0 \N 0 65002290 0 f f \N \N \N \N 404422 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424331 2025-03-04 00:56:49.401 2025-03-29 22:39:49.991 \N A couple years ago I lost my phone in vegas, it was great. Just hung out at the pool all day with no one that could bother me https://example.com/ 4074 424328 423667.423687.423704.423895.423925.423968.424192.424307.424319.424328.424331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.99910058325995 0 \N \N f 0 \N 0 244319707 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423526 2025-03-03 12:42:26.333 2025-03-29 22:39:49.991 \N > That sounds like such a rabbit hole though.\n\nYou said that like it's a bad thing. Isn't this a fun problem to think about?\n\nHere's a really simple jumping off point: \nPosting cost = number of posts on SN in the past hour https://example.com/ 10849 423520 423516.423520.423526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7468389646252 0 \N \N f 0 \N 0 154141842 0 f f \N \N \N \N 423516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437807 2025-03-14 22:33:29.852 2025-03-29 22:39:49.992 \N Day 265 of snailposting everyday 'til BTC hits $100k.\n\n...and 65 push-ups. (30 - 30 - 5)\n\n__@_'-' https://example.com/ 21688 437769 437769.437807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.29860181622995 0 \N \N f 0 \N 0 105665104 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423068 2025-03-02 23:34:59.448 2025-03-29 22:39:49.993 \N US parking space requirements. As a brick-and-mortar business, you cannot open shop unless you meet the minimum parking requirements in your city or state. These requirements were set in the 50's when the auto was starting to take over the streets. The minimum number of spaces are totally made up and not based on any statistical trends, they tend to overshoot the parking that is actually required. This leaves us with 4 parking spaces for every vehicle in the US and it means that businesses in old towns have to buy up and demolish historic buildings to make enough parking to open shop. Parking lots are also expensive! And companies pass along that cost to the customer in their prices. Even if the customer does not own a car, they are paying for the parking spaces of other shopper's cars.\n\nHere's the video that taught me about this: https://www.youtube.com/watch?v=OUNXFHpUhu8 https://example.com/ 18500 422862 422587.422862.423068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.31657190360763 0 \N \N f 0 \N 0 44068365 0 f f \N \N \N \N 422587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444350 2025-03-19 20:02:04.197 2025-03-29 22:39:49.993 \N Day 183 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20073 442899 442859.442899.444350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8255347547213 0 \N \N f 0 \N 0 78690862 0 f f \N \N \N \N 442859 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424317 2025-03-04 00:40:28.815 2025-03-29 22:39:49.993 \N I wouldn't call it a project per se, but I got myself a tapsigner and am going to figure out how to use it to make a multisig for some non-KYC sats. Time to check out some BTC sessions tutorials.... https://example.com/ 18068 423928 423928.424317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1672442271251 0 \N \N f 325358955 \N 2 38606275 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441877 2025-03-18 10:50:40.127 2025-03-29 22:39:49.994 \N I second this. Siggy did a fantastic job with this post. I was a little confused about the picture of the chair though. I thought we were supposed to sell all our chairs for bitcoin. \n\nJust kidding. The sentiment about the chair was the best part. We can all talk a little less and do a little more. \n\nThanks for letting me be part of this Siggy. I hope we are on to something here. Thanks for everything you do Anita and it is awesome that you took some time to pop into the chat today. https://example.com/ 20554 441854 441854.441877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8381747677844 0 \N \N f 0 \N 0 69487946 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431116 2025-03-09 15:29:44.291 2025-03-29 22:39:49.994 \N Day 262 of snailposting everyday 'til BTC hits $100k.\n\n...and 62 push-ups. (40 - 20 - 2)\n\n__@_'-' https://example.com/ 1092 412359 412359.431116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11629883936206 0 \N \N f 0 \N 0 176441217 0 f f \N \N \N \N 412359 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 97981 2023-12-12 16:18:47.065 2025-03-29 22:39:47.605 Does the older generation always think the subsequent generations are soft? "Times are bad. Children no longer obey their parents, and everyone is writing a book.” ― Marcus Tullius Cicero \n\nFor modern generations, we could probably change the last bit to 'making a tiktok', instead of a book, but the point stands.\n\nIt seems like all older generations see the next generation as soft, weak, decadent, or a combination of all of them.\n\nMy question is, are we always getting softer on aggregate? Ii mean I'm sure a ww2 vet would be horrified at my lack of ability to survive in the woods, then again, maybe it's just because as time goes by, we just have different things we prioritize that make us money or help us relax?\n\nI mean, I even think of my 20-something cousins as soft af because they have zero attention span and can't even have a normal human-human interaction without a device.\n\nWhat do you guys think?\n\n![](https://m.stacker.news/63195)\n\n \N 21672 \N 97981 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.10629889909101 0 \N \N f 0 \N 0 100522157 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444493 2025-03-19 23:47:39.024 2025-03-29 22:39:47.605 100k sat prize for solving bitcoin seed phrase puzzle # Puzzle\n\nOn Twitter, Asanoha has posted a challenge worth 100k sats to [unscramble some letters](https://twitter.com/SimplestBTCBook/status/1768509953738788874) into a 12 word seed phrase.\n\nIt's a little unclear from the first tweet, but he has a couple hints that explain\n\n1. the weird characters mean nothing.\n\n2. the letters in the picture are [all the letters used in the seed phrase](https://twitter.com/asanoha_gold/status/1768554498102796644).\n\n3. it's the BIP-39 seed word list\n\n# Method\n\n(I was working on this while feeding three super-hyper kids, so I may have missed some details, but I'm posting what I've done so far in case it's helpful to anyone, because I think I'm not gonna be able to work on it much more.)\n\n1. I started by looking to see what letters were not present in the puzzle picture. They are\n\n`b d k l r v w x z`\n\n2. I downloaded the BIP-39 word list and removed all the words that contained the above letters. This leaves you with 366 words[^1]\n\n[^1]: FractalEncrypt said he [got the list of words down to 547](https://twitter.com/FractalEncrypt/status/1769038820769472961) and I'm not at all sure why he got that number of words. He's a pretty smart guy, so I think I may have screwed something up in my reasoning. Nevertheless: onward!\n\n`access\naccount\naccuse\nacoustic\nact\naction\nagain\nage\nagent\naim\namong\namount\nancient\nannounce\nantenna\nantique\naspect\nasset\nassist\nassume\nasthma\natom\nauction\naugust\naunt\nauto\nautumn\ncactus\ncage\ncamp\ncan\ncannon\ncanoe\ncaptain\ncase\ncash\ncasino\ncat\ncatch\ncaught\ncause\ncaution\ncement\ncensus\nchampion\nchange\nchaos\nchase\nchat\ncheap\ncheese\nchef\nchest\nchief\nchoice\nchoose\ncinnamon\ncoach\ncoast\ncoconut\ncoffee\ncoin\ncome\ncomic\ncommon\nconnect\ncost\ncotton\ncouch\ncousin\ncup\ncushion\ncustom\ncute\neast\necho\negg\neight\nemotion\nenact\nengage\nengine\nenhance\nenough\nequip\nescape\nessence\nestate\nethics\nface\nfaint\nfaith\nfame\nfamous\nfan\nfashion\nfat\nfatigue\nfee\nfence\nfetch\nfiction\nfine\nfinish\nfish\nfit\nfitness\nfoam\nfocus\nfog\nfoot\nfun\ngain\ngame\ngap\ngas\ngasp\ngate\ngauge\ngenius\ngenuine\nghost\ngiant\ngift\ngoat\ngoose\ngossip\nguess\ngun\nhat\nheight\nhen\nhigh\nhint\nhip\nhome\nhope\nhost\nhuge\nhuman\nhunt\nice\nicon\nimage\nimitate\nimmense\nimmune\nimpact\nimpose\ninch\nincome\ninfant\ninject\ninmate\ninnocent\ninput\ninsane\ninsect\nintact\ninto\nissue\nitem\njeans\njoin\njuice\njump\njust\nmachine\nmagic\nmagnet\nmain\nman\nmanage\nmango\nmansion\nmass\nmatch\nmath\nmean\nmeat\nmechanic\nmention\nmenu\nmesh\nmessage\nmimic\nminimum\nminute\nmiss\nmom\nmoment\nmonth\nmoon\nmosquito\nmotion\nmountain\nmouse\nmuch\nmuffin\nmuseum\nmusic\nmust\nname\nnation\nnest\nnet\nnice\nnight\nnoise\nnominee\nnose\nnote\nnothing\nnotice\nnut\nocean\noff\noffice\noften\nomit\nonce\none\nonion\nopen\nopinion\noppose\noption\noutput\npact\npage\npanic\npass\npatch\npath\npatient\npause\npeace\npeanut\npeasant\npen\npet\nphone\nphoto\npiano\npicnic\npiece\npig\npigeon\npipe\npitch\npoem\npoet\npoint\nposition\npost\npotato\npunch\npush\nput\nquantum\nquestion\nquit\nquote\nsafe\nsame\nsatoshi\nsauce\nsausage\nscan\nscene\nscheme\nscience\nscout\nsea\nseason\nseat\nsection\nsegment\nsense\nsentence\nsession\nsetup\nshaft\nshift\nshine\nship\nshoe\nshoot\nshop\nsiege\nsight\nsign\nsince\nsing\nsituate\nsmooth\nsnap\nsniff\nsoap\nsoft\nsomeone\nsong\nsoon\nsoup\nsouth\nspace\nspice\nspin\nspoon\nspot\nstaff\nstage\nstamp\nstate\nstem\nstep\nsting\nstomach\nstone\nstuff\nsuccess\nsuch\nsuggest\nsuit\nsun\nsunset\nsuspect\nsustain\ntag\ntape\ntaste\ntattoo\nteach\nteam\nten\ntenant\ntennis\ntent\ntest\nthat\ntheme\nthen\nthing\nthis\nthought\ntime\ntip\ntissue\ntoast\ntoe\ntomato\ntone\ntongue\ntonight\ntooth\ntop\ntopic\ntoss\ntuition\ntuna\nunique\nunit\nupon\nupset\nusage\nuse`\n\n3. I'm assuming because some letters are repeated in the puzzle picture, all the letters used in the seed phrase are shown in the picture, meaning the 12 word seed phrase has 46 characters. They are\n\n`pqnieoeuoeheisfppspmecsacaosohegntigujgpeiafss`\n\n4. Now, the goal is to take my 366-word list and check it to see if there is some twelve word combination that matches 46 characters and that repeats each character as many times as is shown in the puzzle picture. I'll post a comment if I figure out how to do this. https://twitter.com/asanoha_gold/status/1768551394749944252 19576 \N 444493 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.60739476415885 0 \N \N f 148878371 \N 1 99619956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444222 2025-03-19 18:19:10.885 2025-03-29 22:39:49.994 \N Your actions far outweigh your words. I like your list. If your actions don't match your words it is for nothing. But, words matter just try not to lecture. Pick your times and battles. Sounds like you are on the right track though. I have tried to instill these things in my boys as well. We will see if it sticks.\n\nOne thing I've heard and try to practice is to not think "I'm raising kids". That is failure. I am guiding my kids into being responsible and honorable men. If they are kids when they leave our house then I've failed as a father. And when I say honorable men, I mean men that have earned the respect of those around them including me and my wife. https://example.com/ 13378 444176 444168.444176.444222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.4058968063723 0 \N \N f 0 \N 0 40790052 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437239 2025-03-14 12:07:21.487 2025-03-29 22:39:49.995 \N lol, I'd refer to it more as shaming @Murch and it's very welcome, when warranted 😄\n\nWe had a good laugh at the rant, and not only that, when I commented "I'll create a github issue for it" Darth called us out b/c he had already submit a github issue (much respect for that) \n\nAND it was a request that was also driving me and @andrejstacks crazy. \n\n![Screenshot 2023-12-08 at 6.52.35 PM.png](https://m.stacker.news/7321) https://example.com/ 1611 437233 437233.437239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.61756803932396 0 \N \N f 0 \N 0 14696899 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458264 2025-03-29 06:39:14.548 2025-03-29 22:39:49.995 \N I'm reviving my efforts at Minds recruitment. This time, my approach is just to cross-post from SN. Let's see if that works better. https://example.com/ 1490 458252 458227.458238.458252.458264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.558159044451827 0 \N \N f 0 \N 0 52144572 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437360 2025-03-14 13:08:10.37 2025-03-29 22:39:49.996 \N Now that I successfully fed both my children, I’m back to offer a more considered response. \n\nI think while all metrics are NGU, we shouldn’t neglect user satisfaction. More than one Stacker has openly expressed dismay at MSM. I think even though the leaderboard has expanded to 100 people, the problem still remains. Those small fry (for lack of a better word) would not gain anything *extra* for their posting efforts. As a newbie, what really kept me going was the anticipation of the Daily Rewards. Maybe I would get a few hundred sats today! I think to take that away in favour of MSM seems to contradict the objective of attracting new Stackers n making them stay.\n\nI was a beneficiary of March’s MSM, and given my drive, would probably do well in this edition of MSM. But I cannot in all good conscience ignore the feelings of Stackers whom I now consider to be **everyday shitposting buddies** just because of sats. \n\nMy two sats’ worth https://example.com/ 8544 437352 437233.437270.437311.437319.437348.437352.437360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2350349133282 0 \N \N f 74713947 \N 1 172592931 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456716 2025-03-27 19:44:00.762 2025-03-29 22:39:49.996 \N ![image](https://i.postimg.cc/FFpWhTBD/image.jpg) https://example.com/ 7983 456150 456150.456716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.79060553088734 0 \N \N f 0 \N 0 188108895 0 f f \N \N \N \N 456150 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423018 2025-03-02 21:47:55.792 2025-03-29 22:39:49.996 \N From the kiddos:\n\nThe atlas moth's wings mimic the profile of a cobra's head to ward off potential predators. \n![IMG_5771.WEBP](https://m.stacker.news/22380)\n\n https://example.com/ 14080 422554 422483.422554.423018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8967008199492 0 \N \N f 0 \N 0 144294505 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458217 2025-03-29 05:46:08.317 2025-03-29 22:39:49.997 \N Craig Wright is a Fraud! https://example.com/ 18402 458058 458058.458217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2340193086542 0 \N \N f 0 \N 0 36993725 0 f f \N \N \N \N 458058 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421852 2025-03-02 03:38:25.244 2025-03-29 22:39:49.997 \N Getting ready for a short, overnight road trip to visit old friends. As usual, I'll get some ribbing about the bitcoin price. I can't win. When the bull run starts they'll want me to buy dinner. https://example.com/ 10611 421847 421567.421722.421847.421852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6064365485144 0 \N \N f 0 \N 0 146229870 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423139 2025-03-03 02:47:39.229 2025-03-29 22:39:47.606 Attacking UNIX Systems via CUPS, Part I \N https://www.evilsocket.net/2024/09/26/Attacking-UNIX-systems-via-CUPS-Part-I/ 694 \N 423139 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 28.4478509232011 0 \N \N f 0 \N 0 30452343 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444463 2025-03-19 22:41:19.685 2025-03-29 22:39:49.997 \N Okey so I ended up working on both parts,\n* the regex check for urls containing an image suffix e.g. (`.gif`, `.png`)\n\nand\n\n* regular urls as shown in the bounty description that requires an async request to check if the url is for an image.\n\nHere's a 4 minute video demo:\n\nhttps://www.loom.com/share/028b0dfd00da4aa49827d285c2320209\n\nany feedback from stackers here would be appreciated, and of course from the guys at SN HQ. thanks https://example.com/ 21430 444365 444365.444463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.92056932140338 0 \N \N f 0 \N 0 34368561 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408087 2025-02-18 15:02:19.454 2025-03-29 22:39:49.997 \N Bitcoin is the best, no shitcoin is close \nIt is superior as far as security goes\nSo if you're ever filled with terrible woes,\nRemember, life is just a bunch of UTXOs https://example.com/ 1465 408076 407916.408076.408087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7619336429897 0 \N \N f 0 \N 0 50961056 0 f f \N \N \N \N 407916 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456733 2025-03-27 20:29:34.618 2025-03-29 22:39:49.997 \N Never purchased one nor do I plan to, but I agree with Udi that many people have been wasting oxygen complaining about the things when it's clear they've made no effort to actually understand them. https://example.com/ 5597 456732 456732.456733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6616270969948 0 \N \N f 0 \N 0 205055013 0 f f \N \N \N \N 456732 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456726 2025-03-27 19:58:42.679 2025-03-29 22:39:49.997 \N I left for reasons quite similar to Darth, in summary:\n\n1) SN is filled with bots and lazy idiots who abuse the system (I call them 'farmers', Darth calls them 'assmilkers'). It's only going to get worse as more people join, and as AI bots become more advanced. And no blocklist will ever fix that. \n\n2) SN used to be simple, with the main topic being Bitcoin. It was perfect. But now... with the introduction of territories, it's become Reddit v2, with too much noise, spam, and a ridiculous dropdown. TWay too many shitcoiners and "investors", turning this place into a shitcoin heaven. SN now has a ToS and privacy policy, this is not the Bitcoin way in my opinion. And it's just a matter of time before censorship tools are implemented and history repeats itself. As Darth said, Bitcoiners need a strong platform, shitcoins are the most successful attack organized by the fiat world against Bitcoin, so we Maxis need to keep away from shitcoiners as hard as oil and water stay separated. \n\n3) I never wanted to be an influencer. I've mentioned this multiple times in my old posts and comments. If fame started coming my way, I would disappear. Towards the end of my account, I was constantly getting tagged and DM'ed by users. I don't want to be seen as a celebrity. I want to be a regular pleb like everyone else. The fact that you tagged me in your comment, next to Darth, proves my point. I shouldn't be tagged by anyone, let alone next to Darth, who has achieved much greater things than I have.\n\nBeing famous has its upsides, but it can also bring out the worst in people. The more I posted, the more layers of the onion I revealed. I peeled too many layers of the onion and made mistakes along the way. Most people don't know this but I only started to care about Bitcoin and privacy at the middle of 2023. I was a normie shitcoiner not too long ago so my opsec still had many holes and I pissed some shitcoiners off because of a wrong action I took, and doxx/family threats happened. It only takes one wrong action for everyone to treat you like a monster. I've said and done things in the past that I no longer agree with, but changing people's perception of me is nearly impossible. I know my takes are often controversial, but I'm brave enough to stand up for what I believe in, even if I have to stand alone.\n\nEverything has a beginning and everything has an end. I learned from failure and i will use it as a stepping stone. I can't change the past, so I'll keep moving forward. You might catch a glimpse of me here occasionally, but it's only temporary as I prepare to fully transition to Nostr and other destinations :) https://example.com/ 17237 456724 456724.456726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5372027289889 0 \N \N f 0 \N 0 245041607 0 f f \N \N \N \N 456724 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444237 2025-03-19 18:26:34.605 2025-03-29 22:39:49.998 \N Apparently we already have 1M 👀\nI was here before that (?).\n ![stacker news 1m pageviews](https://i.imgur.com/okyjEcs.png) https://example.com/ 18449 444236 444236.444237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.198400618851 0 \N \N f 0 \N 0 28343481 0 f f \N \N \N \N 444236 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402313 2025-02-13 17:10:19.497 2025-03-29 22:39:49.998 \N I put out a bounty for someone to explain this and they delivered: https://stacker.news/items/190666\n\nSo yeah, its going to encourage transaction batching which I usually think of as just being good for saving on fees, but I believe it has a coinjoin like effect as well. https://example.com/ 5961 401942 401942.402313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2378698378713 0 \N \N f 0 \N 0 47314691 0 f f \N \N \N \N 401942 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437606 2025-03-14 16:51:14.996 2025-03-29 22:39:49.998 \N How would mempool fare if a large ASP goes under and all vTXOs need to get on-chain? Is there always enough time to start unrolling your tx with/without CTV congestion control? https://example.com/ 10690 437604 437044.437560.437588.437591.437604.437606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.12811137985865 0 \N \N f 0 \N 0 173418270 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451273 2025-03-24 13:26:50.499 2025-03-29 22:39:49.998 \N Thankfully no!\n\nFROST and other MPC Schnorr signing protocols create `partial signatures` which are signed independently, and then combined to form a final signature.\n\nSo your keys can be as separate as you like. https://example.com/ 9355 451216 451216.451273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7601622006433 0 \N \N f 0 \N 0 12965972 0 f f \N \N \N \N 451216 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410310 2025-02-20 12:31:04.974 2025-03-29 22:39:49.998 \N Glad to see you are supporting Stacker News! https://example.com/ 900 410307 410251.410307.410310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2424562797751 0 \N \N f 0 \N 0 146678918 0 f f \N \N \N \N 410251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431164 2025-03-09 15:50:48.664 2025-03-29 22:39:49.999 \N Day 345 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 13599 430488 430488.431164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5305920077271 0 \N \N f 0 \N 0 66400430 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422235 2025-03-02 10:32:24.112 2025-03-29 22:39:49.999 \N Can somebody give a tldrP\n\nEdit: I think this comment got submitted several times which did cost 10k sasts. I think this is a serious bug if someone had more money on this account @k00b https://example.com/ 21233 422234 422234.422235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8339213189565 0 \N \N f 0 \N 0 115212395 0 f f \N \N \N \N 422234 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451261 2025-03-24 13:22:12.709 2025-03-29 22:39:49.999 \N Found a link to the full announcement from Ross earlier today and an article on it from Bitcoin Magazine…\n\nhttps://twitter.com/bitcoincommons/status/1563276760279461888\n\nhttps://bitcoinmagazine.com/business/nydig-announces-lightning-accelerator-project https://example.com/ 678 451177 451177.451261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9949920297674 0 \N \N f 188299239 \N 1 198050339 0 f f \N \N \N \N 451177 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448845 2025-03-22 23:15:04.443 2025-03-29 22:39:49.986 \N I would not have chosen to support ETH for the ~12-18 months that we did. That choice resulted in a lot of bad design choices, attempting to abstract away the differences between bitcoin and ethereum. Ripping out the ETH stuff and making our platform be bitcoin-native took months of time that could have been better spent. Our technology stack, our application architecture, our marketing narrative, our company culture -- they're all better now that we are just focused on bitcoin.\n\nBest decision I made at Unchained? To ignore what my investors say, what my competitors do, and just listen to what my clients are asking me for. To obsess over making my clients happy and safe. To focus on low-churn and long-term retention instead of massive growth. These decisions have cost me, in the short-term, but in the long-term they're the reason Unchained is still here when so many others have failed. https://example.com/ 761 447630 447630.448845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.85202895025316 0 \N \N f 0 \N 0 134464354 0 f f \N \N \N \N 447630 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431244 2025-03-09 16:07:50.187 2025-03-29 22:39:49.988 \N One word-Phoenix. https://example.com/ 1609 394739 394739.431244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.24111352468569 0 \N \N f 0 \N 0 108658257 0 f f \N \N \N \N 394739 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431249 2025-03-09 16:08:04.379 2025-03-29 22:39:49.988 \N Awesome, glad to hear! And yeah I myself am a heavy users of apps that could be self hosted but have a cloud offering that still uses E2EE (like obsidian) so I don't have to trust their cloud as much.\n\nThat's kinda what excites me the most about some of this confidential compute stuff. If you could verify that the cloud is running the code you expect, and can't be tampered (or even memory inspected) then it really redefines the relationship we have with the cloud. Instead of being held hostage or dependent upon it, it makes the cloud work for us. Kinda what the whole internet should have been. https://example.com/ 17095 393114 393114.431249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3086965119133 0 \N \N f 0 \N 0 36729541 0 f f \N \N \N \N 393114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435835 2025-03-13 02:39:01.609 2025-03-29 22:39:49.989 \N Yes it was. A whole generation have been cut off from home ownership. https://example.com/ 20998 435579 435579.435835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5236528703593 0 \N \N f 0 \N 0 58097596 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408186 2025-02-18 16:10:05.651 2025-03-29 22:39:49.989 \N ![](https://m.stacker.news/57423) https://example.com/ 13174 407477 407449.407477.408186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.5818136834154 0 \N \N f 0 \N 0 165959207 0 f f \N \N \N \N 407449 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458277 2025-03-29 06:53:11.14 2025-03-29 22:39:49.99 \N https://imgprxy.stacker.news/I72xRXAIZ6IP_P_na22ll6GfKA5YtXn7i2yb8iqLNxI/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9oeWFuTmdWLmpwZw\n\nhow did i do @darthcoin https://example.com/ 2593 458272 458272.458277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1470189692116 0 \N \N f 0 \N 0 88721152 0 f f \N \N \N \N 458272 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407980 2025-02-18 14:01:49.882 2025-03-29 22:39:49.99 \N https://imgprxy.stacker.news/E1ZlH1klGOd-rx0yBjljbclXOyDsNoBOacM3zlNTVwE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS9jZGM1ODRkOTljMjIxYzZmZTRkZGRhOGFiZWUyZjhjOWFkOTg0YmJhN2YwMTEyNGFjNTI4MzQ4ZmNhMjg2NDIxLmpwZw https://example.com/ 2709 407836 407836.407980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.1833289644428 0 \N \N f 0 \N 0 138569402 0 f f \N \N \N \N 407836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451289 2025-03-24 13:32:09.714 2025-03-29 22:39:49.99 \N Missing the bear market already 🥲 https://example.com/ 1751 451039 451039.451289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0135279040114 0 \N \N f 0 \N 0 82039190 0 f f \N \N \N \N 451039 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421692 2025-03-01 22:06:07.798 2025-03-29 22:39:49.99 \N ## Tip of the day!\n### How to buy sats as a nocoiner that just started from zero.\n\nToday we are going to use [SBW](https://sbw.app) wallet. Yes is a very simple, noob friendly wallet, non-custodial and super fast to onboard.\n\nYes, SBW is using hosted channels (HC) for better liquidity (custodials, semi-trusted) but also user can open regular LN channels. HCs are good for fast onboarding new users, that have ZERO sats to open channels, so hard for them to start to use a fully non-custodial LN wallet. Small steps first...\n\n1. Download SBW (Android, apk and F-droid)\n2. Save the seed for the onchain wallet\n3. By default you will have a 1M sats HC already open by SBW node. So you will have a 1M inbound liquidty, ready to receive some sats. This channel is open by [Motherbase](https://amboss.space/node/021e7ea08e31a576b4fd242761d701452a8ac98113eac3074c153db85d2dcc7d27) node, run by Anton. Due to his "busy times" with war in Ukraine, this node is quite controversial now.\nSo let's use an alternative HCP (hosted channel provider). There are 3 other optional HCP right now and soon will be more, including from ZFR node.\nI found these:\n- [SATM](https://amboss.space/node/02cd1b7bc418fac2dc99f0ba350d60fa6c45fde5ab6017ee14df6425df485fb1dd) - offers 500k sats HC, run by @notgeld\n- [ergvein.net](https://amboss.space/node/034a7b1ac1239ff2ac8438ce0a7ade1048514b77d4322f514e96918e6c13944861) - I couldn't connect to it (maybe temporary connectivity issues)\n- [Jiraiya](https://amboss.space/node/02c16cca44562b590dd279c942200bdccfd4f990c3a69fad620c10ef2f8228eaff) - @fiatjaf testing node for cliche\n\n4. Go to [Robosats onion page](http://robosats6tkf3eva7x2voqso3a5wcorsnw34jveyxfqi2fu7oyheasid.onion/) (use Tor browser) and take a selling order. If you create a buying order, you would need to deposit an escrow amount, so in the case you have no sats, is better just taking an existing order. Pay with fiat or gift cards or whatever is requested and done, now you can receive your sats directly into your SBW HC, when the order is confirmed.\n[See more details about the process on learn.robosats.com](https://learn.robosats.com)\n5. Go to your SBW wallet and click on receive. Put the amount of sats indicated on Robosats you have bought and paste the LN invoice generated in your SBW into Robosats and make the withdrawal.\n\nDone! Now you are a bitcoiner and not a nocoiner anymore! https://example.com/ 21451 421561 421561.421692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.74703394759462 0 \N \N f 0 \N 0 152795499 0 f f \N \N \N \N 421561 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431257 2025-03-09 16:08:23.709 2025-03-29 22:39:49.99 \N I'm out here researching the meme I will submit come next Monday on SN meme contest.\nIt feels great to prepare and plan for an inevitable win 😅 https://example.com/ 1785 392336 392336.431257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8152502971427 0 \N \N f 0 \N 0 89659674 0 f f \N \N \N \N 392336 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430948 2025-03-09 14:25:37.025 2025-03-29 22:39:49.999 \N So, besides the usual quarrels that are very common in FOSS development, you raise an important point, my understanding is that you do believe that these PRs introduced vulnerabilities to certain attacks. \n\nThe fact that the PR is merged doesn't prevent you from proving your point, so, if you can simulate these attacks in a real world scenario, as you proposed originally, I suggest you do that and show the results to the public, you will get much more people on your side then. https://example.com/ 21539 430731 430331.430731.430948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.48531820162169 0 \N \N f 0 \N 0 200517409 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431058 2025-03-09 15:12:36.918 2025-03-29 22:39:49.999 \N I really like this. Nice work guys! Definitely would love playing with more NWC stuff too if you're going down that route. https://example.com/ 11275 417574 417574.431058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4217878803932 0 \N \N f 0 \N 0 153905393 0 f f \N \N \N \N 417574 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402900 2025-02-14 08:38:34.616 2025-03-29 22:39:49.999 \N recommend setting this in lnd.conf\n\n```\ncoin-selection-strategy=random\n```\nThe default value (largest) will grind your UTXOs to dust https://example.com/ 4225 402899 402899.402900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4632460143156 0 \N \N f 0 \N 0 7518000 0 f f \N \N \N \N 402899 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450751 2025-03-24 07:47:39.284 2025-03-29 22:39:47.602 Nostr Wallet Connect: Bringing Bitcoin Lightning Network Payments to Any App # Nostr Wallet Connect: Bringing Lightning Network Payments to Any App\n\n[Nostr Wallet Connect](https://nwc.dev/) is an open protocol that can bring Bitcoin Lightning Network payments to ANY app!\n\nHow does NWC work?\n\n## Problem: Lightning Wallets Operate in Their Owns Silos\n\nOne problem with Bitcoin Lightning wallets is that they operate as a closed system.\n\nSeparate accounts, wallets, balances.. \n\nLightning is also a very complicated protocol stack to implement.\n\nIf only there was a glue that bound the wallets and normie apps together..\n\n![](https://m.stacker.news/36427)\n\nNWC does this with the help of the Nostr Protocol.\n\nIf you are unfamiliar with Nostr, you can learn more about it here: https://stacker.news/items/558629 \n\n## Wallets and Apps Communicate Through a Nostr Relay\n\nNWC uses Nostr relays to communicate between wallets and apps.\n\n1. The app and the wallet exchange connection strings.\n\n2. App requests to pay a Lightning invoice via Nostr relay.\n\n3. The wallet pays the invoice.\n\n![](https://m.stacker.news/36428)\nNo Nostr account is needed to use NWC.\n\nNostr is just the messaging layer.\n\nOne wallet connects to several apps.\n\nOne app can be powered by several wallets. \n\nSynergy for both 🤝\n\n## Bootstraps App and Wallet Development\n\nApp devs and wallet builders can both reach more users.\n\nApp devs don't have to worry about custodying funds, since it's outsourced to wallets (if a custodial wallet). \n\n1-click payments without cumbersome closing and opening of various apps and scanning QR codes. \n\nNWC allows sustained interaction between wallets and apps.\n\nBecause payments are routed through a Nostr relay, the receiver doesn't have to be online.\n\nNWC works both with custodial and self-custodial wallets, and across platforms (desktop, mobile).\n\n## Subscription Payments, Set a Budget for Payments etc.\n\nNWC was created by the [Alby](https://getalby.com/) @Alby and [Amethyst](https://www.nostrapps.com/apps/amethyst) (Nostr client) teams in order to let Nostr users integrate Lightning payments without having to use a specific-purpose wallet. \n\nNWC allows single, multiple, streaming, and subscription payments and also a configurable access to your funds.\n\nYou can e.g. make monthly donations to [Geyser](https://about.geyser.fund/) @geyserfund projects from e.g. [Mutiny Wallet](https://www.mutinywallet.com/), powered by [Flash](https://paywithflash.com/). \n\nJust click subscribe!\n\n![](https://m.stacker.news/36429)\n\n[Prism](https://www.makeprisms.com/) uses NWC to bring Lightning micropayments to Discord with its Discord Zap Bot.\n\nThis tipping bot adds more value to an app compared to other bots because everyone doesn't have to agree to use a specific bot.\n\n![](https://m.stacker.news/36430)\n\nWhat do you think about Nostr Wallet Connect?\n\nWill it be the missing piece that brings Bitcoin and Lightning payments to mainstream?\n\n## Additional Resources\n\n[NWC: non-custodial payments for any app - Moritz Kaminski, Video replay from Tuscany Lightning Summit 2024](https://www.youtube.com/watch?v=OCt6-pIUDqk&list=PLB0XFvq7uxtkKnkopbXGUoXljqgC1hlzt&index=6)\n\n[Nostr Wallet Connect: A Bitcoin Application Collaboration Layer, Bitcoin Magazine article by Shinobi](https://bitcoinmagazine.com/technical/nostr-wallet-connect-a-bitcoin-application-collaboration-layer)\n\n[Technical Presentation by gudnuf at BitBlockBoom 2024](https://www.youtube.com/watch?v=0OiZY1MRHXo)\n\n## Project Links\n\n[Website](https://nwc.dev/)\n\n[X (Twitter)](https://twitter.com/nwc_dev)\n\n[Nostr](https://primal.net/p/npub1getal6ykt05fsz5nqu4uld09nfj3y3qxmv8crys4aeut53unfvlqr80nfm)\n\n[GitHub](https://github.com/getAlby/nostr-wallet-connect)\n\n[Discord](https://discord.nwc.dev/)\n\n \N 14370 \N 450751 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.20988991308096 0 \N \N f 0 \N 0 204033274 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 185283 2024-06-16 06:24:01.616 2025-03-29 22:39:47.607 SN release: CLN autowithdraw, manage mutes, paste images, r-click notifications This one has a bunch of little goodies in it thanks to all the folks helping out on the [FOSS side](https://github.com/stackernews/stacker.news).\n\n1. Attach a core lightning node for autowithdraws (via @ekzyis)\n2. Manage mutes from your settings page (via @WeAreAllSatoshi)\n3. Copy and paste images into posts/comments (via @felipe)\n4. Clicking on an internal link in a post/comment no longer opens in a new tab (via @BenAllenG)\n5. Make NWC string field a password field (via @bumi)\n6. Halving countdown is now in the "price carousel" in the top navbar\n7. Right-click on notifications to open in new tab (via @BenAllenG)\n8. Label withdraw notifications as 'autowithdraw' when applicable (via @ekzyis)\n - reported by a mysterious entity nym'd Peter Toddles\n9. Lots of bug fixes\n - when post/comment is free, show 'free' popover (via @abhishandy)\n - fix unclickable navbar and responsive layout on rewards page (via @BenAllenG)\n - fixes to autowithdraw logs (via @ekzyis)\n - scroll to comment in social preview images (via @BenAllenG)\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n--------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs) 4 weeks ago, we've paid a total of 2.7m sats to 15 contributors! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n---------------\n\nPrevious release: https://stacker.news/items/495333\nComplete list of changes: https://stacker.news/changes\nQ1 recap and Q2 roadmap: https://stacker.news/items/506566\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 16276 \N 185283 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.302183716372 0 \N \N f 0 \N 0 96673907 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458245 2025-03-29 06:18:46.602 2025-03-29 22:39:49.991 \N > Buying non-KYC is nonsense. You can buy on Kraken and withdraw via Lightning to your *real* lightning wallet very cheaply.\n\nBuying KYC is nonsense. You can buy on Robosats and withdraw via Lightning to your *real* lightning wallet very cheaply. Why give your personal data to Kraken when it's none of their business? Why give them the *opportunity* to track you whenever they might want to do so now or in the future? To me, *that's* nonsense.\n\nAlso, saying "No one cares to track when you buy" is obviously false with respect to Kraken, whose privacy policy explicitly says they track when you buy:\n\n> The information that we collect from you is as follows...Trading account balances, trading activity...your inquiries and our responses (“Trading information”) [source](https://www.kraken.com/legal/privacy)\n\nThey also say *why* they track when you buy:\n\n> For the purposes of identity verification, compliance with court orders, tax laws or other reporting obligations and anti-money laundering controls...[And] To comply with applicable laws, subpoenas, court orders, other judicial process, or the requirements of any applicable regulatory authorities [source](https://www.kraken.com/legal/privacy)\n\nSo please, none of this "no one cares" nonsense. They care deeply about when you buy, how much you buy, where you send it, and what you do with it; they log all of that info to the best of their ability, and they report it to governments who ask for it and partners who purchase it:\n\n> As part of processing your personal data for the purposes set out above, Kraken may disclose your personal data to any members of the Kraken company group, and to third parties. [source](https://www.kraken.com/legal/privacy)\n\nI recommend fighting back with Robosats -- which is easier and cheaper than Kraken anyway. https://example.com/ 10112 457801 457801.458245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.59713656903489 0 \N \N f 0 \N 0 179514390 0 f f \N \N \N \N 457801 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414728 2025-02-24 09:01:59.271 2025-03-29 22:39:49.991 \N It's funny where you can wind up, if you just keep taking small steps toward things that seem harmless, e.g., enjoying that you're a _big deal_ and doing stuff that would make you an even slightly bigger deal. Years later you look at yourself and find that you've become a monster. Or, less dramatically, a douchebag. https://example.com/ 4862 414676 413675.414675.414676.414728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.10064872304266 0 \N \N f 0 \N 0 90745140 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402634 2025-02-13 21:43:09.83 2025-03-29 22:39:49.991 \N Part 2 of _Broken Money_ describes many ways in which banks have historically been important and powerful. Bitcoiners often focus on abuses of this power (which are usually easier to see), but what if we flip it the other way, and ask: what kind of institutions and functions could be similarly important and useful to the bitcoin ecosystem as banks are to fiat? https://example.com/ 1474 402003 402003.402634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9594747956512 0 \N \N f 0 \N 0 226072253 0 f f \N \N \N \N 402003 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410485 2025-02-20 13:59:10.516 2025-03-29 22:39:49.992 \N The NWC integration works really well. Great job @k00b & @ek https://example.com/ 1983 410481 410409.410428.410434.410474.410481.410485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6879439964347 0 \N \N f 16767634 \N 1 119812678 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404558 2025-02-16 00:56:09.359 2025-03-29 22:39:49.992 \N Finally, people start to understand that Bitcoin maximalism is a counter-productive idiocy that will always harm mass adoption of Bitcoin. About time. https://example.com/ 750 403915 403915.404558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3366057088682 0 \N \N f 0 \N 0 16870015 0 f f \N \N \N \N 403915 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401685 2025-02-13 10:17:44.274 2025-03-29 22:39:49.994 \N Yep, the writing of the article is a bit sloppy, a few corrections:\n\n- There's no vulnerability in the protocol itself, rather, it's a bug in the clients implementing the protocol.\n- I wouldn't categorize this as a "Major" vulnerability since clients can detect a malicious coordinator performing this sort of attack.\n\nOverall, it's good that there's multiple teams implementing the protocol in open source projects, allowing these sorts of issues to be caught. https://example.com/ 738 401566 401527.401566.401685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1633375148437 0 \N \N f 0 \N 0 206884117 0 f f \N \N \N \N 401527 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402613 2025-02-13 21:11:24.617 2025-03-29 22:39:49.994 \N Overall: 9.1%\nEnergy: 38.9% https://example.com/ 10638 402003 402003.402613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2612073132995 0 \N \N f 0 \N 0 143879363 0 f f \N \N \N \N 402003 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449805 2025-03-23 14:48:14.279 2025-03-29 22:39:49.994 \N True. You could announce when people are totally eliminated, not just when their date passes but it will take some management on your part to keep track of. For instance if I have day 450 and we reach that day and the next closest entry is day 480, once we reach day 466 I am eliminated. https://example.com/ 20337 449394 449394.449805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0167066175908 0 \N \N f 0 \N 0 77757967 0 f f \N \N \N \N 449394 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 126031 2024-02-11 22:49:40.374 2025-03-29 22:39:47.602 Leaving Shopify to build my self-hosted Bitcoin/Nostr website! For the past couple of weeks, I’ve been [working on migrating away from Shopify](https://stacker.news/items/716096/r/thebullishbitcoiner?commentId=716191 ). Today, I ripped the bandaid off (I had to before the next subscription payment tbh). 😄\n\n![](https://m.stacker.news/58104)\n\nLooking forward to building in Bitcoin and Nostr moving forward! \n\nCheck out the website [here](https://bullishspace.pages.dev/). \n\n![](https://m.stacker.news/58105) \N 2022 \N 126031 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.3882262438182 0 \N \N f 0 \N 0 124451242 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 95332 2023-12-06 13:08:49.102 2025-03-29 22:39:47.602 I'm Tony Giorgio, Lightning Developer and Researcher. AMA. Hey! Long time lurker first time poster. I've been doing Bitcoin and Lightning development for startups for several years now and have started to get more into consulting and research through the [Bitcoin Dev Shop](https://bitcoindevshop.com). My focus is on Lightning applications and especially the intersection of Lightning and Privacy.\n\nYou may have seen my privacy [report](https://abytesjourney.com/lightning-privacy/) last year or some of my Citadel Dispatch episodes [21](https://bitcointv.com/w/3GodMNMq1TeXbuAnbhTBzj), [53](https://bitcointv.com/w/j8fRXqtQMJG9wKgkbyUrL7), [69](https://bitcointv.com/w/duWSEKMGTosAc1kx4id9Ew), [70](https://bitcointv.com/w/dpzVg3QtPSzyqCPg4xAxmH), and [72](https://bitcointv.com/w/wQzKAgE5m6cJbmbgaT1uyK) where I chat about Lightning and/or Privacy. \n\nI'm typically not online in much places anymore so those are some of the things I'm most known for on the web. Socially I spend most of my time in the bitcoin space in Austin, currently at Pleb Lab now before I head to Bitcoin Commons tonight for Bitdevs. If you haven't made your way to Austin yet to check out the scene, I highly recommend. There's more stuff to do than I can handle.\n\nI have a lot of fun things in the works since I have just recently started working for myself, but here's some of the things I would love to chat about if you had any questions:\n\n- [Bitcoin Dev Shop](https://bitcoindevshop.com)\n- [Mutiny Wallet (previously called PLN)](https://mutinywallet.com/)\n- [Lightning Privacy](https://abytesjourney.com/lightning-privacy/)\n- Lightning Apps/Development\n- LND/LDK/Sensei\n- Web5\n- Where the best burgers in Austin are at\n- Working at bitcoin startups\n- Hackathons\n- Living without social media (if SN doesn't count as SM)\n\nOther than that anything is free game! \N 2780 \N 95332 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.48003699838172 0 \N \N f 0 \N 0 81668065 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455589 2025-03-27 07:01:00.981 2025-03-29 22:39:49.995 \N The next couple of weeks might give me a chance to make up for my foolish failure to accumulate btc before 2020 https://example.com/ 21794 455324 454863.454877.455274.455298.455324.455589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6414518139581 0 \N \N f 0 \N 0 236156910 0 f f \N \N \N \N 454863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423061 2025-03-02 23:15:48.473 2025-03-29 22:39:49.995 \N tomorrow’s AMA with Dhruv Bansal at Unchained is going to be a good one.\n\n12pm ET, be there or be square! https://example.com/ 16177 422596 422587.422596.423061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.58631520186287 0 \N \N f 0 \N 0 108740205 0 f f \N \N \N \N 422587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451313 2025-03-24 13:46:05.697 2025-03-29 22:39:49.996 \N The benefit of saving in Bitcoin becomes apparent to the public when number goes up. \n\nThe benefit of holding your own keys becomes apparent when exchanges rug and banks tell you how to use your money. \n\nNGU may be happening, but most nocoiners seem fine with an ETF or MSTR. I wonder how many new Bitcoin holders have been minted this time around. \n\nThe FTX and Celsius rugs of the last bear market should have convinced a lot of people to hold their own keys. I wonder how many. \n\nIt is possible that a tool of Bitcoin adoption stronger than the carrot of NGU and stronger than the stick of getting rugged is simply convenience. \n\nRight now Bitcoin does not easily solve problems in most (western) people's lives. The most obvious problem it solves is being a better means of savings and that message doesn't seem to have gotten through. But as far as other problems, I don't think it is obvious to Normie's what it does to make life better and so it isn't something they are interested in. \n\nWhich brings me to soft-fork proposals: is it the case that some combination of changes to Bitcoin will tip it into the obviously useful category for the masses? In the same way that there was a point where smart phones suddenly became essential to daily life. There may be an argument for changing Bitcoin a little if it gets us closer to undeniably useful (and doesn't degrade censorship resistance). Thoughts? https://example.com/ 12562 451292 451292.451313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2406905095687 0 \N \N f 0 \N 0 212578809 0 f f \N \N \N \N 451292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457835 2025-03-28 18:37:25.928 2025-03-29 22:39:49.996 \N Just a tip for online privacy/hygiene: avoid sharing personal information as much as possible. Make random usernames and e-mail addresses, try not to "dox" yourself. Your future self will thank you :-)\n\nYou're a lucky son! https://example.com/ 20647 457605 457476.457513.457605.457835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.36808811551857 0 \N \N f 0 \N 0 164918936 0 f f \N \N \N \N 457476 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447185 2025-03-21 17:11:46.858 2025-03-29 22:39:49.996 \N Nostr is the hype right now, and I have used it but it's buddy and the clients are awful to work with, I can understand the excitement but its a terrible user experience \n\nI think SN can have some integration but not relay on it for any serving of information. Sure you could duplicate the information to a relay if others want to use SN feeds in Nostr\n\nMaybe you could add login with Nostr on your stacker news\n\nYou could add your public key to your SN account for a follow on Nostr \n\nOne thing I could see though is SN DMS running on Nostr, since the user experience is not yet catered for on the site https://example.com/ 21116 447058 446513.447049.447058.447185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8499740122693 0 \N \N f 0 \N 0 194318913 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431367 2025-03-09 16:23:56.617 2025-03-29 22:39:49.998 \N Day 271 of snailposting everyday 'til BTC hits $100k.\n\n...and 71 push-ups. (30 - 21 - 20)\n\n__@_'-' https://example.com/ 1046 375687 375687.431367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3829883042455 0 \N \N f 0 \N 0 249033278 0 f f \N \N \N \N 375687 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444589 2025-03-20 03:25:55.484 2025-03-29 22:39:49.998 \N Looking at these slides, I wonder if there would be a future for private territories. \n\nSay I want to onboard my colleagues and use the Stacker News platform to have scientific interactions with them, I would not want outside people to join that territory. Maybe something that would work on invitation by the territory owner. \n\nOf course, the other option would be to fork off stacker news and make my own myGroupName.news platform which is kept private from the rest of the world. But this would require maintenance and hosting efforts. https://example.com/ 21228 444541 444541.444589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.75193498165937 0 \N \N f 0 \N 0 111434229 0 f f \N \N \N \N 444541 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 224916 2024-09-01 12:25:03.172 2025-03-29 22:39:47.602 Lexe - 24/7 Lightning wallet \N https://lexe.app/ 11897 \N 224916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5728420159481 0 \N \N f 0 \N 0 72930692 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 351251 2024-12-31 15:00:05.299 2025-03-29 22:39:47.602 What are your expectations for 2024 & 2025? Curious to gauge the opinion from all the humble Stackers...\n\n1. What are your assumptions for the economy & world at large?\n2. Do you have any predictions or expectations? Things you would like to see for you & your family and would not?\n3. Now let's talk about Bitcoin & Nostr. What sort of innovations will we see between now and Dec 2025?\n\nDepending on responses, will aim to do a follow-up post in a years time and call-out those closest.\n \N 10731 \N 351251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.83341124928154 0 \N \N f 0 \N 0 241507909 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444531 2025-03-20 01:18:57.824 2025-03-29 22:39:49.998 \N nice job, i successfully sent and received using lnbits over tor 🤙 https://example.com/ 20525 443274 443274.444531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5365291580748 0 \N \N f 0 \N 0 87700607 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430987 2025-03-09 14:51:11.674 2025-03-29 22:39:49.998 \N You should change your coin selection to random, otherwise it currently defaults to selecting your largest utxos. The default is terrible for privacy and will grind your utxos to dust overtime. https://example.com/ 11996 430771 430771.430987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2163390966312 0 \N \N f 0 \N 0 158716532 0 f f \N \N \N \N 430771 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404554 2025-02-16 00:49:36.599 2025-03-29 22:39:49.998 \N ![i](https://i.postimg.cc/65bzYLCy/annoyed-trumpet.jpg) https://example.com/ 1429 404513 404513.404554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0609168109296 0 \N \N f 0 \N 0 37661072 0 f f \N \N \N \N 404513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447249 2025-03-21 18:13:39.949 2025-03-29 22:39:49.998 \N Day 348 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20555 446941 446774.446941.447249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.649906111781 0 \N \N f 0 \N 0 5251946 0 f f \N \N \N \N 446774 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414344 2025-02-23 20:14:51.403 2025-03-29 22:39:49.998 \N ![Cat And Cat Cake 14012024072753.jpg](https://m.stacker.news/12306) https://example.com/ 1647 414319 413675.413884.414168.414177.414319.414344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2280993727325 0 \N \N f 0 \N 0 166490681 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403231 2025-02-14 15:06:15.769 2025-03-29 22:39:49.998 \N Day 232 of snailposting everyday 'til BTC hits $100k.\n\n...and 32 push-up(s).\n\n__@_'-' https://example.com/ 16876 403218 403182.403218.403231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.33299112461515 0 \N \N f 0 \N 0 36539470 0 f f \N \N \N \N 403182 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402812 2025-02-14 05:11:39.41 2025-03-29 22:39:49.998 \N Why prevention instead of education?People with bitcoin on lightning network already show their interests.. Altcoin attracts a lot of people into cryptospace, stacker.news is great place to do the conversion for them. https://example.com/ 12561 402772 402772.402812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3787259030318 0 \N \N f 0 \N 0 48543111 0 f f \N \N \N \N 402772 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447248 2025-03-21 18:13:27.849 2025-03-29 22:39:49.999 \N I AM GROOT!\nhttps://imgprxy.stacker.news/tbz2SYTu0xRqjnhDlMouVfdQr0BX-zou19NpCNA0em4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBpbmltZy5jb20vb3JpZ2luYWxzLzNjLzViLzM2LzNjNWIzNmM4MjdlMWQ1NzJjMTcwMGZhMmVjYWI5NTUwLnBuZw https://example.com/ 770 447172 447172.447248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.48256196635148 0 \N \N f 0 \N 0 87925400 0 f f \N \N \N \N 447172 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52871 2023-08-20 16:34:56.477 2025-03-29 22:39:47.602 Bitcoins Are Not Mined, They Are Issued over Time | dergigi.com \N https://dergigi.com/2023/04/12/bitcoins-are-not-mined-they-are-issued-over-time/ 19094 \N 52871 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.67416083831742 0 \N \N f 0 \N 0 31482554 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404499 2025-02-15 23:24:34.563 2025-03-29 22:39:49.987 \N Epic site - wish I’d found it sooner https://example.com/ 18637 404498 404498.404499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20837834645553 0 \N \N f 0 \N 0 10495073 0 f f \N \N \N \N 404498 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307580 2024-11-25 08:08:39.463 2025-03-29 22:39:49.987 \N Well, of course, if it were a good joke someone would have thought of it already https://example.com/ 20636 306232 306232.307580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.48901580559854 0 \N \N f 0 \N 0 67179676 0 f f \N \N \N \N 306232 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449414 2025-03-23 11:30:58.032 2025-03-29 22:39:49.987 \N yes and we don't tell each other our user names so we can try and guess who is who lol! (Still don't know)\n\nI brought it to my family, some said "it's a website where the fbi finds hackers" and some said that they just weren't into the idea of it. Still trying to convince them lol!!\n https://example.com/ 16212 449218 449218.449414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0756125229694 0 \N \N f 235486641 \N 3 146625296 0 f f \N \N \N \N 449218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424281 2025-03-03 23:55:03.909 2025-03-29 22:39:49.998 \N Grilled delicious ribeyes from [K&C Cattle](https://beefinitiative.com/pages/kc-cattle-co) via [Beef Initiative](https://beefinitiative.com/) for the family last night. They produce the best steaks I've ever had.\n\nThey use Oshi to accept bitcoin and offer rewards when you buy with sats. You can use lightning or on-chain. If you want to try it out you can use my [referral link](https://loyalty.oshiapp.com/ref/O9PLINS/5BAdeXWqKG). https://example.com/ 20588 424279 423955.424279.424281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9740758724242 0 \N \N f 0 \N 0 233701558 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444551 2025-03-20 02:07:31.874 2025-03-29 22:39:49.998 \N Day 236 of snailposting everyday 'til BTC hits $100k.\n\n...and 36 push-up(s).\n\n__@_'-' https://example.com/ 8376 444447 444408.444447.444551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.803005706871 0 \N \N f 0 \N 0 112951356 0 f f \N \N \N \N 444408 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451302 2025-03-24 13:39:16.938 2025-03-29 22:39:49.998 \N UASF proposals. \nWe have so many complex things that can be built now with existing primitives and consensus. Let’s master all those first before we add more layers of complexity. https://example.com/ 699 451299 451299.451302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2585906510538 0 \N \N f 0 \N 0 76305031 0 f f \N \N \N \N 451299 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424252 2025-03-03 23:24:02.064 2025-03-29 22:39:49.999 \N Yes it should. There is an issue with email login on iOS but otherwise it should work. https://example.com/ 17953 423829 423750.423789.423829.424252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.19048837386568 0 \N \N f 0 \N 0 211071704 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421251 2025-03-01 14:30:43.421 2025-03-29 22:39:49.999 \N God, family, friends, and capability. https://example.com/ 1802 420884 420884.421251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1987932323481 0 \N \N f 0 \N 0 41716589 0 f f \N \N \N \N 420884 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442707 2025-03-18 18:54:54.682 2025-03-29 22:39:49.999 \N About mobile apps: Breez, Blixt and SBW are great non-custodial LN wallets that allow you to run a LN node on your phone. BlueWallet is nice to use as well, without the ability to run a node, but also can be non-custodial. https://example.com/ 16966 442541 442084.442541.442707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.60946424248574 0 \N \N f 0 \N 0 1041748 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458269 2025-03-29 06:41:22.152 2025-03-29 22:39:49.988 \N I always saw this as no coder bro cope.\n\nI don't get paid for shipping 90% of a product. Or 95% of a product. Or 99% of a product. I get paid for shipping 100% of a product and maintaining it indefinitely.\n\nFirst law of thermodynamics: shit happens. Shit has happened. Shit will continue to happen.\n\nAI does not fix this but it does indeed help you fix things faster. https://example.com/ 17291 458118 458011.458118.458269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7416232352926 0 \N \N f 0 \N 0 37648141 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458290 2025-03-29 07:06:52.065 2025-03-29 22:39:49.988 \N I am so close to that triple digit cowboy hat baby. https://example.com/ 19488 458289 458289.458290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0849976630936 0 \N \N f 0 \N 0 183960551 0 f f \N \N \N \N 458289 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428294 2025-03-07 03:56:04.09 2025-03-29 22:39:49.988 \N > I try and support every bitcoin business that I possibly can\n\nI share the instinct to do this, but you're right to consider dropping your support. We want to support bitcoin businesses through their early hiccups. We also don't want new bitcoiners having these kinds of experiences.\n\nI'd say we should tolerate mistakes to the extent the business owns up to them and makes them right. Mistakes plus lack of accountability is a really bad combination. https://example.com/ 17976 428274 428236.428238.428274.428294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4705758530329 0 \N \N f 0 \N 0 90714399 0 f f \N \N \N \N 428236 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422297 2025-03-02 11:16:28.594 2025-03-29 22:39:49.988 \N > You are expected to leverage Machankura as an amazing payment infrastructure rather than a long term self Custody product.\n\nThat this disclaimer needs to be written shows that this USSD-based solution is less than ideal.\n\nWith Machankura being a custodial wallet, there are risks that we know very well (back-end systems hack, rogue employee, shotgun KYC, rugpull, etc.). With Machankura using a third party USSD gateway (Africa's Talking), those risks extend to that third party (and to the telecom networks for each country as well). And finally, the mobile phone devices are not secure as well. Rarely are feature phones "locked" requiring a PIN, or otherwise secured so that anyone who grabs the phone cannot spend the bitcoin from the Machankura account for that number.\n\nThere's also regulatory risk. Some of the countries where Machankura is supported are hostile to bitcoin (e.g., Nigeria and Kenya). It would take only one "memo" sent to the telecom providers by their regulator and Machankura gets blocked in that country.\n\nThat being said, this low tech solution can be today used for receiving (and sending) remittances, P2P trading, for paying merchants, etc, without requiring KYC, and in a peer-to-peer manner. \n\nMany will receive their first bitcoin on Machankura, and then progress to where they use a device where they self-custody bitcoin or use platforms with less risk than they are exposed to with Machankura. But for those with only a feature phone today, there is no alternative, so the benefits (of being able to receive some funds and then spend those funds) likely outweigh the risk (of potentially someday losing access to the account's balance). https://example.com/ 21383 422056 422056.422297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0170372634764 0 \N \N f 0 \N 0 13055554 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307582 2024-11-25 08:10:19.189 2025-03-29 22:39:49.988 \N Yeah just witnessing a lot of the nonsense in the industry made me want to report on it. The biggest inspiration though is the greatest parody/satire site of all time which is the New York Times https://example.com/ 1624 307258 307258.307582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1448204032243 0 \N \N f 0 \N 0 154345125 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415883 2025-02-25 08:08:11.563 2025-03-29 22:39:49.988 \N To be honest, I am surprised 60% got it right https://example.com/ 12490 415629 415525.415629.415883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8944039774067 0 \N \N f 0 \N 0 119099619 0 f f \N \N \N \N 415525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416901 2025-02-25 22:59:09.807 2025-03-29 22:39:49.988 \N I agree with most of this, but also think all parties are missing the main fail of inscriptions. It's simple: the art is bad. \n\nOrdinals/Inscriptions had an opportunity to give bitcoin an aesthetic that was its own and lived up to its unique spirit. Instead we got art copy pasted from ethereum, and a whole set of derived aesthetics. Yea degens gonna degen. But if inscriptions had been the vehicle for a new wave of digital art (perhaps borne of the values Rodarmor professes), the debate would have been very different imo. \n\ninb4 "but art is subjective" : sure, but copying aesthetics from the eth NFT crowd isn't even subjective, it's lazy *and* derivative. \n\nDigital art has a bright future ahead of it, but I haven't seen anything interesting come out of inscriptions. Where the digital artists at, for real? https://example.com/ 20864 416148 416148.416901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.59763258346506 0 \N \N f 0 \N 0 197833880 0 f f \N \N \N \N 416148 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416889 2025-02-25 22:50:36.817 2025-03-29 22:39:49.989 \N Apologies to those who were expecting the ~privacy pub to start yesterday. \n\nDecided to take a more sustainable approach and focus on quality over quantity. We’ll still get through the list and likely in a similar order, but just not going to burn myself out in the process lol. https://example.com/ 19189 416615 416158.416615.416889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.240137600574108 0 \N \N f 0 \N 0 44458913 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437964 2025-03-15 03:51:21.204 2025-03-29 22:39:49.99 \N In my experience, experience > planning.\nMost of the times, I already have a rough sketch of how things should work in my mind (which you could describe as a plan) but while you're implementing, you'll notice stuff which you wouldn't have noticed even with more planning.\n\nSo with experience, you'll notice sooner if your plan doesn't work out and you need to pivot before you write yourself into a corner.\n\nOr how the military uses to say: No plan survives first contact\n\nMaybe my approach could be described as "iterative planning"? https://example.com/ 12774 437963 437963.437964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.65294590781329 0 \N \N f 0 \N 0 170920434 0 f f \N \N \N \N 437963 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401099 2025-02-12 17:47:13.92 2025-03-29 22:39:49.99 \N I have finished my guide for beginners into BTC (it's in spanish). I will continue to update it :)\nhttps://financial-fish-tools.notion.site/Bitcoin-desde-cero-f92f65b5fceb4d28a3485675fc5acaff https://example.com/ 13599 401078 401078.401099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4001706307215 0 \N \N f 0 \N 0 17060896 0 f f \N \N \N \N 401078 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451268 2025-03-24 13:24:54.162 2025-03-29 22:39:49.99 \N Taipei, Taiwan\n\n https://example.com/ 902 451208 451208.451268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7097373452939 0 \N \N f 0 \N 0 65759563 0 f f \N \N \N \N 451208 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401745 2025-02-13 11:16:34.421 2025-03-29 22:39:49.99 \N My younger brother and I share a unique bond that diverged as we entered our teenage years. He chose to serve in the war, while I pursued going to school and creative endeavors. Despite our different paths, we make it a point to connect, once a year, usually an eight-hour conversation to catch up on our lives. These moments remind me of the lyrics:\n\nHow I wish, how I wish you were here\nWe're just two lost souls\nSwimming in a fish bowl\nYear after year\nRunning over the same old ground\nWhat have we found?\nThe same old fears\nWish you were here\n\nI always ask him the same question that I ask you, “Would you do anything different?” Let’s say you knew you had 20 more years? https://example.com/ 10611 401734 401734.401745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8211727343667 0 \N \N f 0 \N 0 235964458 0 f f \N \N \N \N 401734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457221 2025-03-28 10:20:19.726 2025-03-29 22:39:49.991 \N Uncaught (in promise) CompileError: WebAssembly.compile(): \n at o.fromBase64 (content-script.js:2:2534119)\n at content-script.js:2:2534319\n at I.a (content-script.js:2:2857805)\n at 39718 (content-script.js:2:2533793)\n at I (content-script.js:2:2857284)\n at content-script.js:2:2836069\n at I.a (content-script.js:2:2857805)\n at 4690 (content-script.js:2:2835546)\n at I (content-script.js:2:2857284)\n at content-script.js:2:2505330 https://example.com/ 11750 457131 457126.457131.457221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.88484162382398 0 \N \N f 0 \N 0 70699425 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430127 2025-03-08 20:52:39.2 2025-03-29 22:39:49.991 \N "Get good"\n"It doesn't get easier, you just get better"\n\nNo, I'm just kidding. I don't have kids, but cool insight. https://example.com/ 951 429517 429517.430127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5142878796915 0 \N \N f 0 \N 0 9149721 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 440810 2025-03-17 14:47:50.124 2025-03-29 22:39:49.991 \N Nuance has been lost in this debate https://example.com/ 20715 440779 440520.440779.440810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2161830367288 0 \N \N f 0 \N 0 71683213 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416885 2025-02-25 22:43:22.294 2025-03-29 22:39:47.603 💡 What is the Risk-Reward of Bitcoin? From the number of times I post his links, I guess it's obvious I like James Lavish's writing. He does pretty deep dives while at the same time keeping it clear and understandable for those new to the subject. \n\nI know there will be some here who have no interest in this- those who believe it's inevitable that bitcoin will take over the world, and that all we have to do is wait. \n\nPersonally, I enjoy the analysis even though I am in the true believer camp. \n\nRisk/Reward? Binary Probabilities? I love this stuff. \nTLDR buy more bitcoin. https://ckarchive.com/b/gkunh5hd9009eszodd9oku5xlkv99 14910 \N 416885 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 12.5890280517155 0 \N \N f 0 \N 0 186870400 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421225 2025-03-01 14:02:55.726 2025-03-29 22:39:49.991 \N My friend, remember you don't have to do this stuff, you get to do this stuff. They grow up really fast. https://example.com/ 16562 367235 367235.421225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.1683183420832 0 \N \N f 0 \N 0 134139331 0 f f \N \N \N \N 367235 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456549 2025-03-27 16:57:15.002 2025-03-29 22:39:49.991 \N Just working on my knowledge.......I've been in the btc space for a few years, but yesterday I re-read the Bitcoin whitepaper, and it makes much more sense. Now time to revisit the blocksize wars and re-read the Lightning whitepaper. https://example.com/ 7766 456142 456142.456549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3425656874967 0 \N \N f 0 \N 0 79089520 0 f f \N \N \N \N 456142 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456554 2025-03-27 16:58:54.125 2025-03-29 22:39:49.991 \N Thank you for having me on! I loved the questions. Some inspire me to do more learning and research. The Stacker News community rocks! 🤘\n\nI appreciate all the sats too! 👏 https://example.com/ 21159 456088 455920.456088.456554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.82466983785314 0 \N \N f 0 \N 0 180958171 0 f f \N \N \N \N 455920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407787 2025-02-18 11:26:53.014 2025-03-29 22:39:49.991 \N Let all your sats flow,\nlike water to the river,\nto the bt-sea https://example.com/ 9362 407739 407607.407739.407787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.24913231386704 0 \N \N f 0 \N 0 248143479 0 f f \N \N \N \N 407607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416886 2025-02-25 22:44:47.449 2025-03-29 22:39:49.992 \N Outside of work, playing around with LNUrl login, WebLN payments & Nostr all at the same time.\n\nQuite a few project ideas, but still ducking around and iterating on what will have the biggest impact with Bitcoiners. https://example.com/ 711 416660 416536.416652.416660.416886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.006463569902 0 \N \N f 0 \N 0 33662177 0 f f \N \N \N \N 416536 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421220 2025-03-01 13:54:21.533 2025-03-29 22:39:49.992 \N peach also does peer to peer-trade in bitcoin only https://example.com/ 15728 421122 421121.421122.421220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.23913548765052 0 \N \N f 0 \N 0 43773735 0 f f \N \N \N \N 421121 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430787 2025-03-09 12:27:05.781 2025-03-29 22:39:49.992 \N Kudos for your efforts. Most of this looks good, but there are a few mistakes here and there. I’m prepping for the Optech Recap, so I’ll have to get back to this later, but I wanted to point out that a lot of the same information is compiled in topics tagged "transaction-weight" on Bitcoin Stack Exchange: https://bitcoin.stackexchange.com/questions/tagged/transaction-weight?tab=Frequent, e.g. https://bitcoin.stackexchange.com/a/75124/5406, https://bitcoin.stackexchange.com/questions/100159/what-is-the-size-and-weight-of-a-p2wpkh-input https://example.com/ 20220 429517 429517.430787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3286662535391 0 \N \N f 0 \N 0 64581475 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424225 2025-03-03 22:40:08.6 2025-03-29 22:39:49.992 \N The only thing I'm 100% sure is that you can't pick up a gun without also donning a cowboy hat. \n\nI think a gun can exist without creating a horse.\n\nBut I don't think a horse can exist without a gun being created.\n\nJust my observations with zapping and gaining/losing them. \nI'm probably wrong though.\n\n\n\n https://example.com/ 1142 423111 422873.422949.423111.424225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.45825912869177 0 \N \N f 0 \N 0 208759715 0 f f \N \N \N \N 422873 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456536 2025-03-27 16:52:06.565 2025-03-29 22:39:49.992 \N so like, i've been meaning to write a follow up post to ML post about this but whatever, sure staker news it is.\n\nstratumv2. specifically, i think the mempool should be ported out of bitcoin-core to stratumv2. https://example.com/ 1472 456528 456528.456536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.05469141166884 0 \N \N f 0 \N 0 127624380 0 f f \N \N \N \N 456528 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457812 2025-03-28 18:13:57.609 2025-03-29 22:39:49.993 \N Great to see the all the bugs and wishlist items getting pounded out. Ekzyis is a machine!!! https://example.com/ 17519 457709 457655.457709.457812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8549020239099 0 \N \N f 0 \N 0 236150498 0 f f \N \N \N \N 457655 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421242 2025-03-01 14:19:37.82 2025-03-29 22:39:47.604 This Day in Stacker News: June the 10th This is an experiment in [evergreen-ness](https://stacker.news/items/331942/r/Undisciplined). Let me know what you think of it.\n\n## Top Posts June 10th\n### 2023\nI wish someone had warned me about using self-custodial lightning wallet https://stacker.news/items/190401/r/Undisciplined \nby @p2ptrade\n\n### 2022\nSN release: usage dashboard https://stacker.news/items/35583/r/Undisciplined\nby @k00b\n\n## Top Comments June 10th\n### 2023\nhttps://stacker.news/items/189382/r/Undisciplined?commentId=190768\nby @skreep_\nFrom: What sub should Stacker News add next? https://stacker.news/items/189382/r/Undisciplined\n\n### 2022\nhttps://stacker.news/items/35617/r/Undisciplined?commentId=35644\nby @2big2fail\nFrom: Why does the Hacker News community generally hate Bitcoin so much?\n\n## Top Stacker June 10th\n### 2023\nIn hiding (presumed to be @siggy47)\nTop non-hider: @nerd2ninja\n\n### 2022\n@nout \N 20073 \N 421242 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.836699045599 0 \N \N f 0 \N 0 143546539 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 418512 2025-02-27 07:00:57.197 2025-03-29 22:39:49.993 \N @k00b @Murch Can we have a SN bot for Bitcoin Stack Exchange posts, or some kind of integration / SN sub ?\n\nWill be nice to reward the gigantic work that all those contributors are doing on Bitcoin stackExchange and I think the nice and easy way will be on SN.\nhttps://bitcoin.stackexchange.com/users https://example.com/ 20864 412443 412443.418512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6252208935376 0 \N \N f 0 \N 0 237103428 0 f f \N \N \N \N 412443 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428385 2025-03-07 08:02:48.242 2025-03-29 22:39:49.993 \N For me personally, negotiating is my daily bread since I am dedicated to selling accessories for smartphones... here in Peru and selling here is not easy, it is a public or market where people are distrustful and not only that, they are a little proud. when choosing or buying and I have to use all my tools to convince them... and the most important thing in the end is to negotiate the final price since they love it o They always ask you to leave the price of the most economical product at the price that I indicate when offering my product... so negotiating for me is all day and which currently, after 2 years, I handle quite well 💪 https://example.com/ 11144 426587 426587.428385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0036996971478942 0 \N \N f 0 \N 0 150884593 0 f f \N \N \N \N 426587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404294 2025-02-15 18:42:02.344 2025-03-29 22:39:49.994 \N Plastic used to be made of milk, not oil. \n\n- From the early 1900s until about 1945, milk was commonly used to make many different plastic ornaments, including buttons, decorative buckles, beads and other jewellery, fountain pens, hand-held mirrors, comb and brush sets. Combining the liquid with formaldehyde.\n- Milk plastic (usually called casein plastic) was used for jewellery by Queen Mary of England. Lactoid was a popular brand back then. Here's a few interesting reads into the history of plastics - [ScienceMuseum](https://www.sciencemuseum.org.uk/objects-and-stories/chemistry/age-plastic-parkesine-pollution), [ScientificAmerican](https://www.scientificamerican.com/article/a-brief-history-of-plastic-world-conquest/), [V&A](https://www.vam.ac.uk/blog/design-and-society/plastic-made-of-milk) https://example.com/ 2098 403893 403893.404294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2399272892398 0 \N \N f 0 \N 0 210403371 0 f f \N \N \N \N 403893 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401197 2025-02-12 19:24:21.841 2025-03-29 22:39:49.994 \N Finishing up login and settings (just NIP-05 to start) for Outer Space. \n\ntbh it's taken me longer than I want and I'm rationalizing it as setting better precedents, ie creating a medium viable product rather than minimal viable one, but I might also be full of shit and should've just shipped something faster. https://example.com/ 20291 401151 401151.401197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2360507315218 0 \N \N f 0 \N 0 148834262 0 f f \N \N \N \N 401151 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423194 2025-03-03 04:54:15.124 2025-03-29 22:39:49.994 \N Starting mutiny https://example.com/ 4314 423190 422483.422714.423179.423190.423194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4813294808492 0 \N \N f 0 \N 0 50272686 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457783 2025-03-28 17:31:43.333 2025-03-29 22:39:49.995 \N [Here's a paper I always recommend](https://arxiv.org/abs/2102.09256) https://example.com/ 20586 457256 457256.457783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5201519880157 0 \N \N f 0 \N 0 225446779 0 f f \N \N \N \N 457256 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437259 2025-03-14 12:13:25.43 2025-03-29 22:39:49.995 \N Very.\n\nEven ignoring the government potential crack down / seizures it's just basic OPSEC. Many, many people have been physically assaulted to get to their bitcoins, so don't say anything that would give people the idea you're stacking heaps\n\nGeneral discussion and education of the topic is fine though 🙂 https://example.com/ 20275 436909 436909.437259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.19110932574817 0 \N \N f 0 \N 0 36523512 0 f f \N \N \N \N 436909 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451272 2025-03-24 13:26:29.598 2025-03-29 22:39:49.995 \N Absolutely fascinating. I plan on buying a house in a cold climate in the next few years and I want to do exactly this. And then spread the tech far and wide. How cold does it get where you are? Do you have good insulation? What kind of ambient temperatures are you getting in any given room with a radiator? Are you getting enough sats to reduce your electricity bill and if so by how much e.g. 5%, 50%? Inspirational, I will be going through all this with a fine tooth comb in due course, I need to know what I should look out for when buying a house. https://example.com/ 16259 451258 451244.451258.451272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6402533638471 0 \N \N f 0 \N 0 82834693 0 f f \N \N \N \N 451244 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458174 2025-03-29 03:47:40.134 2025-03-29 22:39:49.996 \N It's the wild west, that's why we have hats around here... https://example.com/ 4802 458173 458173.458174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4147026262721 0 \N \N f 0 \N 0 96484110 0 f f \N \N \N \N 458173 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421279 2025-03-01 14:54:00.471 2025-03-29 22:39:47.604 My Not Fully Thought Out Speculation I'm not claiming to have fully thought this idea out, but I am wondering what everyone thinks. \n\nNews is everywhere that the SEC is about to approve Eth ETFs. For years, the SEC has been arguing about whether a given coin could be a security. ETH is clearly a security under SEC rules and the Howey Test. If eth ETFs are approved, it would be difficult for the SEC to prevent the floodgates to open to other coins. \n\nSo, taking this, along with the bipartisan vote last week allowing banks to hold digital "assets", could the US government be looking to have Big Bank and government friendly entities (ie BlackRock) control a new industry in a way to bolster the US financial system? The fact that Charles Schumer wants banks to hold bitcoin is a very big deal, IMO. \n\nI haven't thought this through, obviously, but it seems as if opinions and attitudes are changing very quickly. Gensler and Warren may have lost the battle. \n\n \N 9332 \N 421279 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.0877821609284 0 \N \N f 0 \N 0 161960847 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 62926 2023-09-12 21:03:48.671 2025-03-29 22:39:47.605 Gold confiscation in Shanghai, 1948 I don't know why I'm so fascinated with gold confiscations throughout history. But I am. \n\nHere's another one (in addition to the confiscation in 1933 in the United States, see [Gold "hoarders" were persecuted in the 1930's, what will happen with bitcoin?](https://stacker.news/items/275618)).\n\nThis is an excerpt from the book **Shanghai : the rise and fall of a decadent city, 1842-1949**. The context of the excerpt is - the fall of the Nationalists in the city of Shanghai, China, to the Communists. The gold confiscation happened in 1948, the Communists conquered the city in 1949.\n\n> On August 19, in a last desperate measure to restore economic stability, Chiang played what the Chinese newspapers would later call his “last trump card.” He announced the replacement of the old currency by a “gold yuan,” which would be convertible from the old Chinese dollar at the rate of three million to one and pegged at one gold yuan to four American dollars. \n\n> Under penalty of death, all Chinese holding gold, silver, or foreign or Chinese currency were required to surrender their wealth to the Central Bank in exchange for the new gold yuan. To coerce the reluctant citizenry into complying with this draconian measure, Chiang Kai-shek appointed his Russianeducated son, Chiang Ching-kuo, commissioner of the program, sending him to Shanghai, where the pickings were richest. Approaching his assignment with vigor and severity, Chiang organized a large force of spies and police, who used Soviet-style methods to terrorize the public into compliance.\n\n> He declared his intention to search private homes for all currency and valuables that had not been turned over to the authorities. Then he sent trucks into wealthy neighborhoods to announce through loudspeakers that the trucks contained special instruments capable of detecting the presence of hidden gold, silver, and other valuables, even those buried underground. \n\n> These and other similarly heavy-handed tactics succeeded in frightening scores of law-abiding citizens into handing over their life savings for fear of arrest. Wages and prices were also frozen, and shopkeepers were forced to sell their goods at the artificial prices. To curb the black market, Chiang Ching-kuo had his secret police comb the waterfront in search of warehouses with stores of hoarded goods. Numerous culprits were arrested and a few of them, among them several prominent businessmen, publicly executed as a warning to others.\n\n> But the gold yuan slipped after a month, becoming as worthless as its predecessor. As ineptly handled as everything else the Nationalists did, the attempt at reform failed, because the government had done nothing to increase its revenues or decrease its spending. Moreover, the “reform at pistol point” had antagonized the business community in Shanghai and brought about food shortages and the ruin of many shopkeepers and merchants. Worst of all, Chiang Kai-shek had irreparably alienated the last of his supporters, the urban middle class, who had surrendered their life savings in hopes of resuscitating the economy. Instead, they had lost everything; they’d been robbed and “shaken down” by their government.\n\n\n\n \N 1244 \N 62926 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.858738598755195 0 \N \N f 0 \N 0 228595571 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430950 2025-03-09 14:26:04.315 2025-03-29 22:39:47.605 Lightning Welder helps legacy lightning wallets pay BOLT12 offers > [Lightning Welder](https://alexlwn123.github.io/Lightning-Welder) seamlessly converts Bolt 12 offers to Bolt 11 invoices, ensuring compatibility across all Lightning wallets.\n\nThis seems pretty cool. Has anyone tried it out yet? \N 20623 \N 430950 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.4416827817224 0 \N \N f 0 \N 0 241031269 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401288 2025-02-12 21:07:41.479 2025-03-29 22:39:49.987 \N I was taking Vitamin D/k pills because it’s low and I need to get some sun. Now I’ve stopped taking them and I just work on sitting outside more and work from my laptop outside. There’s something about taking pills for things we could probably get naturally from the food we eat that makes me feel ehhh. https://example.com/ 9036 401131 401113.401127.401131.401288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3867493356787 0 \N \N f 0 \N 0 9176050 0 f f \N \N \N \N 401113 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404397 2025-02-15 20:58:17.848 2025-03-29 22:39:49.988 \N I generally try to work nutrients into my diet rather than supplementing. There are two supplements that I think most people need to take, though, in order to get optimal amounts:\n\n1) Vitamin D3 in the winter for those in temperate latitudes. Otherwise, get some sun.\n2) Vitamin B12 is produced by bacteria and one of the tradeoffs of modern hygiene/sanitation is low B12 consumption. This might be unnecessary if you eat enough fermented foods, but I'm not sure. https://example.com/ 18637 404135 402674.402755.403817.404135.404397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.94230003660972 0 \N \N f 0 \N 0 125831174 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407745 2025-02-18 10:55:53.812 2025-03-29 22:39:49.988 \N 1) I juice vegetables for micro nutrients and minerals. (Carrots, greens, beetroot, céleri etc)\n\n2) Vitamin D3, not as much as I'd like though, for general health and immune system\n\n3) Liver and fatty meat\n\n4) Fermented food (kefir, kombucha, kimchi) for a healthy gut. https://example.com/ 11776 407290 407290.407745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1930323808079 0 \N \N f 0 \N 0 157835207 0 f f \N \N \N \N 407290 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430945 2025-03-09 14:24:39.009 2025-03-29 22:39:49.996 \N Did everyone take off their cowboy hat? How did I hit number 3? https://example.com/ 17535 430934 430934.430945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7220444065512 0 \N \N f 0 \N 0 149955649 0 f f \N \N \N \N 430934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431168 2025-03-09 15:53:54.853 2025-03-29 22:39:49.997 \N @ruifm - I will stop here as I just read the licence terms: https://github.com/imperviousai/imp-browser/blob/master/Impervious%20Browser%20Terms%20of%20Service.pdf\n\n>6. USER GENERATED CONTRIBUTIONS \n\n> The Site may invite you to chat, message, conduct audio and/or video calls, share and or collaborative documents, save/or transfer files, contribute to, or participate in blogs, message boards, online forums, and other functionality, and may provide you with the opportunity to create, submit, post, display, transmit, perform, publish, distribute, or broadcast content and materials to us or on the Site, including but not limited to text, writings, video, audio, photographs, graphics, comments, suggestions, or personal information or other material (collectively, "Contributions"). \n\n>Contributions may be viewable by other users of the Site and through third-party websites. As such, anyContributions you transmit may be treated as non-confidential and non-proprietary.When you create or make available any Contributions, you thereby represent and warrant that: \nThe creation, distribution, transmission, public display, or performance, and the accessing, downloading, or copying of your Contributions do not and will not infringe the proprietary rights, including but not limited to the copyright, patent, trademark, trade secret, or moral rights of any third party. \n\n> You are the creator and owner of or have the necessary licenses, rights, consents, releases, and permissions to use and to authorize us, the Site, and other users of the Site to use your Contributions in any manner contemplated by the Site and these Terms of Use\n\nThis last paragraph above is the most concerning. Impervious are basically saying they can take your personal data and do what they want with it.\n\n"Private Browser". hah!\n\n> 7. CONTRIBUTION LICENSE \n\n>By posting your Contributions to any part of the Site or making Contributions accessible to the Site by linking your account from the Site to any of your social networking accounts, you automatically grant, and you represent and warrant that you have the right to grant, to us an unrestricted, unlimited, irrevocable, perpetual, non-exclusive, transferable, royalty-free, fully-paid, worldwide right, and license to host, use, copy, reproduce, disclose, sell, resell, publish, broadcast, retitle, archive, store, cache, publicly perform, publicly display, reformat, translate, transmit, excerpt(in whole or in part), and distribute such Contributions (including, without limitation, your image and voice) for any purpose, commercial, advertising, or otherwise, and to prepare derivative works of, or incorporate into other works, such Contributions, and grant and authorize sublicenses of the foregoing. The use and distribution may occur in any media formats and through any media channels. \n\n>This license will apply to any form, media, or technology now known or here after developed, and includes our use of your name, company name, andas applicable, and any of the trademarks, service marks, trade names, logos, and personal and commercial images you provide. You waive all moral rights in yourContributions, and you warrant that moral rights have not otherwise been asserted in your Contributions. \n\nI do not consent to my name being associated with any contributions, nor do I wish to "waive all moral rights"!!\n\n\n\n\n\n\n https://example.com/ 3642 431156 431122.431138.431156.431168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.79837609344758 0 \N \N f 0 \N 0 57587784 0 f f \N \N \N \N 431122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448257 2025-03-22 14:10:40.819 2025-03-29 22:39:49.998 \N I think the connection btwn programming and life is deep and subtle, and there's a reason why so many engineers are so highly effective in the real world, and have such a different take. Understanding the nature of complexity, and how to somehow create something functional within in, and the forces of entropy, and just how maddeningly hard communication and coordination is -- these are felt more concretely and acutely by programmers than anyone. It's like the purest possible training for things like civics, government, public policy, etc.\n\nIf the degree requirement for all those fields was to spend two years in a standard computer science curriculum the world would be much improved. Which isn't to say those other things don't matter, they do crucially matter. But getting your hands dirty by playing god with code is a competitive advantage that nothing else can accomplish with nearly the same efficiency. At least, that is a deeply held commitment of mine.\n\nIn summary: Factorio! https://example.com/ 11491 445953 445953.448257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.793312727247 0 \N \N f 0 \N 0 247216216 0 f f \N \N \N \N 445953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402415 2025-02-13 18:09:16.661 2025-03-29 22:39:49.998 \N Throughout my life I've managed to avoid most social apps and platforms, or at the least not very active on them aside from just being an observer and scrolling. \n\nBut Bitcoin incentives are so strong, and Stacker News has provided a fantastic easy to use space to play in I find myself engaging more than I ever have anywhere else online.\n\nI came here to read posts, and possibly stack. Yet I've ended up happily sending sats more than ever. Tipping users, donating some to the rewards pool. It's been a pleasure stumbling here to SN.\n\nThe further I go down this hole, the larger it gets, has me asking, how big is this fucking rabbit? https://example.com/ 20614 402408 402389.402399.402408.402415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.61022972646743 0 \N \N f 0 \N 0 209778780 0 f f \N \N \N \N 402389 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404371 2025-02-15 20:15:40.004 2025-03-29 22:39:49.988 \N New hat. I am back in the game. Need to try to beat 96 now. https://example.com/ 18011 395841 395348.395604.395841.404371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.789579202016348 0 \N \N f 0 \N 0 114197969 0 f f \N \N \N \N 395348 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 418575 2025-02-27 07:58:40.882 2025-03-29 22:39:49.989 \N *Why not give it a try tonight? Turn the lights down low, light a candle, pull up that terminal and try `getmempoolinfo`. You might be surprised what your node is capable of. She can tell you exactly how big her mempool is getting.*\n\nThis may be going horribly wrong, but I'm committed to option B now and there's no going back. https://example.com/ 2460 418312 418312.418575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6628925376386 0 \N \N f 0 \N 0 190443282 0 f f \N \N \N \N 418312 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448801 2025-03-22 22:04:26.914 2025-03-29 22:39:49.989 \N If it stops there, might not have all that much utility. But a great case study I would hope. And a big motivator for bitcoiners inside the company.\n\nWould be awesome if they invested in their payroll department to stream salaries to them. Each employee gets a page to see their balance incrementing & withdraw ahead of pay day.\n\nI suspect they won’t get there though, due to the delights of payroll being a monthly exercise and ancient tax codes etc. Prove me wrong Saylor. https://example.com/ 1652 448029 448029.448801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2314648384813 0 \N \N f 0 \N 0 78911631 0 f f \N \N \N \N 448029 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407301 2025-02-17 22:17:24.284 2025-03-29 22:39:49.989 \N Million sat madness has absolutely zero influence on my view of stacker news. It will in no way drive me away. If anything, as a newbie, I think it is a cool feature. \n\nI can't imagine having more of an opposite reaction to this. https://example.com/ 13987 407290 407290.407301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7125786718076 0 \N \N f 361907190 \N 4 241106600 0 f f \N \N \N \N 407290 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437837 2025-03-14 23:22:35.944 2025-03-29 22:39:49.989 \N ![The winning meme](https://www.meme-arsenal.com/memes/581aa80a49341ff6ffe7de26af116111.jpg) https://example.com/ 13216 436935 436935.437837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4109011748555 0 \N \N f 0 \N 0 53034275 0 f f \N \N \N \N 436935 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416909 2025-02-25 23:04:35.316 2025-03-29 22:39:49.989 \N Private channels aren't private. They should be called "unannounced channels". \n\nThey simply aren't included in your node's gossip. This means your node isn't telling all it's peer about the channel. The unannounced channel is excluded from the public network graph built by every node.\n\nIf Alice wants Charlie to use her unannounced channel with Bob, she can include a "route hint" in the invoice itself.\n\nThen, anyone who sees that invoice knows Alice has an unannounced channel with Bob and can use it to route a payment on that channel\n\nIt's also possible to probe for unannounced channels and use them without any "permission" or route hint.\n\nAn unannounced channel is just a "suggestion" to the network that says, "hey, I'd prefer if none of you use this one." \n\nBut anyone who's determined enough can still use it.\n\nSoon we will have short channel IDs (SCIDs) which will help hide unannounced channels better. https://example.com/ 18351 416457 416158.416457.416909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.84260552955684 0 \N \N f 0 \N 0 197572238 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410520 2025-02-20 14:14:49.107 2025-03-29 22:39:49.99 \N What do you think it will happen if Argentina is the next country to make Bitcoin legal tender? https://example.com/ 617 410397 410187.410397.410520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7202646348231 0 \N \N f 0 \N 0 115655863 0 f f \N \N \N \N 410187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458178 2025-03-29 04:04:08.662 2025-03-29 22:39:49.99 \N _The Atlas Maneuver_ by Steve Berry. It's a thriller aound Bitcoin. There is an interview available with the author on the _[What is Money](https://www.youtube.com/watch?v=YhmgPqWr0Go)_ show.\n![atlas.jpg](https://m.stacker.news/22557) https://example.com/ 909 458177 457126.458150.458156.458169.458177.458178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3145093126926 0 \N \N f 0 \N 0 154548298 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444439 2025-03-19 21:56:36.651 2025-03-29 22:39:49.99 \N ![Bitcoin always find a way](https://i.postimg.cc/7LP0cMq0/ey-Jid-WNr-ZXQi-Oi-Jzd-GFy-Ym-Fja3-Ita-W1h-Z2-Vz-Iiwia2-V5-Ijoi-Nj-Nh-ZGVj-Nj-M5-MDNj-MTE3-Njcy-M2-Nk-NTcy-L3-Bvc3-Rz-Lz-Yz-YWRl-Yz-Yz.jpg) https://example.com/ 3213 231006 231006.444439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5571382042264 0 \N \N f 0 \N 0 208815206 0 f f \N \N \N \N 231006 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457504 2025-03-28 14:46:53.27 2025-03-29 22:39:49.991 \N almost 20 years in medicine the one thing I've learned is that it's always the nicest sweetest people who get cancer. it's heart breaking https://example.com/ 6741 457389 457310.457389.457504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.788820839486 0 \N \N f 0 \N 0 3054947 0 f f \N \N \N \N 457310 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457194 2025-03-28 09:54:34.335 2025-03-29 22:39:49.991 \N Yeah, that may be why he called his post 'The Consensus Conundrum.' I've been trying to do a bit of introspection myself and figure out how I expect to see any future consensus changes to come about. I think I'm hoping that one set of changes becomes a clear front runner, meaning most people want it over the others. Of course, I realize I have never once expressed to anyone how I feel about any of the currently proposed changes. And it is probably similar for most bitcoiners. I don't feel like I have enough knowledge to express a worthwhile opinion on the topic. But then that means I'm waiting for some non-specific critical mass of Bitcoin personages to express support of one proposal... https://example.com/ 891 457180 457180.457194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.69938687474271 0 \N \N f 0 \N 0 120403799 0 f f \N \N \N \N 457180 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413833 2025-02-23 13:44:52.737 2025-03-29 22:39:49.992 \N **Agree with this premise. Mostly because [Lyn says so](https://www.lynalden.com/fiscal-and-monetary-policy/) 😄**\n\n\n1970s also had relatively low levels of debt and great demographics, which is completely inverse to today.\n\nWe may be even earlier than the 1940s comparison however. We've yet to see a proper Depressionary bust, or arguably worldwide conflict really get going. Both symptomatic of 1930s. Was 2008 comparable to 1929? I'm not convinced. Don't have the links handy, but these are pulled from some research into the reserve-currency holder at the time:\n \n* For most of the 1920s decade, U.K. unemployment hovered between 10% and 12%. By the start of 1933 unemployment in Britain was 22.8%. (As of Oct-2023, in the U.S. it's laughably reported at a low figure of 3.9% suggesting space to upside).\n* Unemployment fell substantially in 1933, 1934, and 1935. By January 1936 it stood at 13.9%. By 1938 it was around 10%. There is also the likelihood, the unemployment figures, masked the true scale of unemployment. Some estimates put unemployment rates higher during that time.\n* More accommodative monetary policy (after abandoning gold standard) enabled an increase in the money supply of 34% between 1932 and 1936.\n* In the late 1930s, a gradual re-armament programme began with a belated fiscal stimulus. This provided an additional boost to demand and economic growth. But, it was only the onset of full-scale war in 1939, that saw a return to full employment.\n* In the mid and late 1920s, it was fashionable for women to look boyish. However, in the 1930s women’s dress became more conservative. (This shift hasn't happened yet either).\n\nIn the 30s is when regional civil wars were happening, lack of available credit, discontent on the rise, as was alcoholism (like we're seeing with drug usage), unemployment offset by wartime industries. We haven't witnessed all those trends play-out yet, so perhaps even 1940s is a bit early. https://example.com/ 5129 413815 413554.413815.413833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8494933480369 0 \N \N f 0 \N 0 224018193 0 f f \N \N \N \N 413554 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414743 2025-02-24 09:17:38.883 2025-03-29 22:39:47.606 El Salvador Trip report - 3/8 [Part 2](https://stacker.news/items/552530)\n\nDay 3 takes me to Berlin, a small mountain town with a reputation for being the true "Bitcoin City."\n\n**Travel:**\nBut first, I need to get there. Researching how to travel inside El Salvador isn't easy, as it can be hard to find out which buses go where, when and along what route. But in practice, you just head in the right direction, occasionally ask and things just work out.\nIf you're not on a budget, you can also rent a car or have somebody drive you, but I was quoted $120 for the ~2h drive to Berlin, and am very curious about the bus anyway.\nFrom San Benito, I head to the nearest large east-west road and catch the first bus downtown ($0.50, blaring folk music), from where I catch another minibus ($0.25, blaring pop music) to the "Nueva Terminal Oriental," the new Eastern Bus Terminal. \nThere are direct buses to Berlin, but I heard it's not worth waiting for them, so I step into the first bus to San Miguel, which turns out to be a large modern air-conditioned and quiet coach.\nI ask to be dropped off in Mercedes Umaña, just at the bottom of the hill from Berlin.\nFinally, I take my last bus for the day up the hill and arrive, filled with anticipation, in Bitcoin City, greeted by a big Bitcoin sign at the town entrance..\nFrom here I can walk to my hotel. From door to door I spent almost four hours on this trip.\nIf you're repeating this and want to save some time and trouble, take a taxi or uber to the bus terminal instead of the local bus. It will only cost you a few dollars more.\n\n**First impressions:**\nit's noticeably cooler up here at about 1,000m altitude. The town is densely built, with narrow roads and single story buildings. There are plenty of shops and I can immediately spot a few Bitcoin signs.\nI'm also immediately spotted by other Bitcoiners walking around the streets as I head to the Bitcoin Center, and then a local cafe.\nThe weekly meetup at the Bitcoin Center is well attended, about 20 people show up. There are locals, a few Bitcoiners who recently made this town their home and two other visitors from out of town.\nThe meetup is held in Spanish and features a panel discussion about working in and with Bitcoin. Another hot topic is the upcoming first anniversary of the Bitcoin Berlin project, which will be celebrated with a livestream, for which volunteers and interviewees are needed.\nWe head to the local Papuseria where we enjoy the famous national street food in great ambience. \nI did get to use Bitcoin a few times already but will report on that in depth tomorrow! \N 17237 \N 414743 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.7396771162172 0 \N \N f 0 \N 0 50169832 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457173 2025-03-28 09:37:11.763 2025-03-29 22:39:49.992 \N I'm harvesting food. and starting to produce my own chicken meat and eggs.\nbuilding a prototype for small hydro electrical generator for suplement my energy needs (also grow my own corn ;)\nI also deal with ancient stones called Amethyst. https://example.com/ 21585 457162 457162.457173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7333633085549 0 \N \N f 0 \N 0 120538830 0 f f \N \N \N \N 457162 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457806 2025-03-28 18:04:29.739 2025-03-29 22:39:49.993 \N Stacker News\n\n(No ... seriously!) https://example.com/ 20674 457796 457766.457796.457806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3236544681665 0 \N \N f 0 \N 0 126043299 0 f f \N \N \N \N 457766 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430936 2025-03-09 14:18:14.203 2025-03-29 22:39:49.993 \N Wait... Am I the value? Thats the nicest thing anyone's ever said about me. Even my wife when asked just says "he's alright"😂 https://example.com/ 8664 430865 430330.430865.430936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6718239585905 0 \N \N f 0 \N 0 141659545 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448807 2025-03-22 22:08:44.632 2025-03-29 22:39:49.993 \N Day 222 of snailposting everyday 'til BTC hits $100k.\n\n...and 22 push-up(s).\n\n__@_'-' https://example.com/ 9352 448806 448029.448806.448807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.676717821582 0 \N \N f 0 \N 0 217599331 0 f f \N \N \N \N 448029 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424184 2025-03-03 21:36:55.006 2025-03-29 22:39:49.994 \N > What is it about constraining oneself in the short-term that leads to so many world-changing innovations?\n\nWe are humans... we adapt. So the constraint that limit us most, will allow humanity to evolve and innovate. Just as the current financial system (unconsciously) did for centuries, we are good at blaming people that has been placed there to take responsibilities they will never take. The truth/hypothesis is that everything is part of the process of evolution. Simply like that https://example.com/ 1745 424030 423917.424025.424030.424184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2477802553063 0 \N \N f 0 \N 0 208983144 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448808 2025-03-22 22:09:02.881 2025-03-29 22:39:49.994 \N Start with Economics in One Lesson by Henry Hazlitt. That will give you the basics of how to see the world like an economist.\n\nThen, if you really want a deep understanding, read Human Action by Ludwig von Mises.\n\nFrom there, you'll have a solid foundation to branch out into whatever specific econ topics interest you. https://example.com/ 9364 448804 447566.448804.448808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0033825045421 0 \N \N f 0 \N 0 91896444 0 f f \N \N \N \N 447566 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451248 2025-03-24 13:17:44.385 2025-03-29 22:39:49.995 \N SN feature request - pay a hefty fine to edit after 10mins. One that gets more expensive as time passes.\n\nThe amount of time I’ve messed-up and only notice later.. https://example.com/ 4388 450805 450805.451248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.595892353332914 0 \N \N f 0 \N 0 118037037 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451279 2025-03-24 13:27:54.059 2025-03-29 22:39:49.995 \N We really need a nostr sub. 50% of decent content posted is about nostr. https://example.com/ 2724 451194 451194.451279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.87235410801143 0 \N \N f 0 \N 0 175903468 0 f f \N \N \N \N 451194 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444460 2025-03-19 22:34:20.141 2025-03-29 22:39:49.996 \N Be excellent to each other https://example.com/ 5195 444365 444365.444460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1468443723873 0 \N \N f 0 \N 0 104140397 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428487 2025-03-07 10:36:40.744 2025-03-29 22:39:49.996 \N For myself (YMMV) its an old 80/20 rule, majority of the stuff you now whether you can "hack it" or you need a longer prep. 80 implies you will wing it 9 out of 10. Bigger more complicated stuff/project/assignments is that remaining 20%. I'm with @ekzyis you learn by doing, you gain experience, nothing can beat that in my book. It applies in my opinion to most things in life coding or writing notwithstanding. https://example.com/ 4287 426030 426030.428487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.344750570546 0 \N \N f 0 \N 0 55394667 0 f f \N \N \N \N 426030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430900 2025-03-09 13:49:57.973 2025-03-29 22:39:47.606 The Art of Invisibility by Kevin Mitnick | Mitnick Security > Kevin Mitnick, the world's most famous hacker, teaches you easy cloaking and counter-measures for citizens and consumers in the age of Big Brother and Big Data.\n>\n> Like it or not, your every move is being watched and analyzed. Consumer's identities are being stolen, and a person's every step is being tracked and stored. What once might have been dismissed as paranoia is now a hard truth, and privacy is a luxury few can afford or understand.\n>\n> In this explosive yet practical book, Kevin Mitnick illustrates what is happening without your knowledge--and he teaches you "the art of invisibility." Mitnick is the world's most famous--and formerly the Most Wanted--computer hacker. He has hacked into some of the country's most powerful and seemingly impenetrable agencies and companies, and at one point he was on a three-year run from the FBI.\n>\n> Now, though, Mitnick is reformed and is widely regarded as the expert on the subject of computer security. He knows exactly how vulnerabilities can be exploited and just what to do to prevent that from happening. \n>\n> In The Art of Invisibility Mitnick provides both online and real-life tactics and inexpensive methods to protect you and your family, in easy step-by-step instructions. He even talks about more advanced "elite" techniques, which, if used properly, can maximize your privacy. Invisibility isn't just for superheroes--privacy is a power you deserve and need in this modern age. \n\nCurrently reading _Art of Deception_ and it's really good. It's about Social Engineering. It makes me believe that all books from Kevin Mitnick are must-reads.\n\nWant to read _Art of Intrustion_ next. Just saw there's another similar book about ~privacy: _Art of Invisibility_! https://www.mitnicksecurity.com/the-art-of-invisibility-mitnick-security 10549 \N 430900 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.0243007839409 0 \N \N f 0 \N 0 93148276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423535 2025-03-03 12:47:07.213 2025-03-29 22:39:49.996 \N ![smooth brain happiness](https://ibin.co/6uqQ0jjtZC8Q.png) https://example.com/ 19735 423419 423124.423419.423535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2219439574567 0 \N \N f 0 \N 0 35236664 0 f f \N \N \N \N 423124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404404 2025-02-15 21:02:19.071 2025-03-29 22:39:49.997 \N After 30 days.\n\nMy cowboy hat has blowed away.\n\nI have misstepped on these dusty trails. I'll get back on that saddle. https://example.com/ 11153 403833 403824.403825.403831.403833.404404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7335582222657 0 \N \N f 0 \N 0 166297175 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404520 2025-02-16 00:17:08.558 2025-03-29 22:39:49.997 \N From Kraken's PoV, what makes a node a good peer to Kraken's node? https://example.com/ 3990 392837 392837.404520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.458224180402 0 \N \N f 0 \N 0 77364368 0 f f \N \N \N \N 392837 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404405 2025-02-15 21:03:09.441 2025-03-29 22:39:49.997 \N > Is this all there is? A chemical reaction? No magic like telepathy?\n\nI think there is something approaching telepathy that comes after the chemical reaction. It's not magic, though, and a programmer like yourself might appreciate it.\n\nThe chemical reaction is what gets us to seek out the other person's company and feel a fondness for them. That proximity and care leads us to want to understand them. \n\nI believe our brains create a literal simulation of our partner's mind that overtime converges towards their actual thought processes. In that way, we are feeling and thinking what they're feeling and thinking, and vice versa. https://example.com/ 11750 402962 402904.402931.402962.404405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3764545793507 0 \N \N f 0 \N 0 195357530 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402420 2025-02-13 18:11:22.067 2025-03-29 22:39:49.997 \N Just came back from a hard work session in 35ºC... \nAlmost half of the project is ready.\n18 rows of 21 are ready...\n14 columns of 21 are ready...\nStill a long way to go, but after my accident with the finger, this is still advancing.\nAnd will be fucking awesome, even that now looks like shit.\n![](https://m.stacker.news/42670)\n\nIs impossible to work in these conditions so I took all afternoon off in a hammock over a fresh river, in the shadow with a fresh beer.\n![](https://m.stacker.news/42669) https://example.com/ 712 402381 402381.402420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7114190277256 0 \N \N f 0 \N 0 15217779 0 f f \N \N \N \N 402381 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407327 2025-02-17 22:43:36.703 2025-03-29 22:39:49.997 \N Day 95 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 6335 407312 407290.407301.407304.407308.407312.407327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.18319666497015 0 \N \N f 0 \N 0 9475820 0 f f \N \N \N \N 407290 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458145 2025-03-29 02:10:49.87 2025-03-29 22:39:49.997 \N https://imgprxy.stacker.news/sARJxRV9VZs-sUZNfj3YDrvtyEdwtZgXmdqKvEDtN70/rs:fit:1280:720/aHR0cHM6Ly9pbWdwcnh5LnN0YWNrZXIubmV3cy9UZFl0SFZtUHBqa3BjcEdvdFl3RUFRT3BJTjE2Q3RncnRXS0ZkQU13RFJjL3JzOmZpdDoxMjgwOjcyMC9hSFIwY0hNNkx5OXBMbkJ2YzNScGJXY3VZMk12YW5GT2N6Um9Wek12YjJzdGMyaHBkR052YVc1bGNpNW5hV1k\nhttps://stacker.news/items/758916 https://example.com/ 10484 450083 450083.458145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.04469726792697 0 \N \N f 0 \N 0 234424745 0 f f \N \N \N \N 450083 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404375 2025-02-15 20:21:39.945 2025-03-29 22:39:49.997 \N @k00b announced it at bitdevs https://example.com/ 9183 404356 404356.404375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2260555467183 0 \N \N f 0 \N 0 170065875 0 f f \N \N \N \N 404356 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455460 2025-03-27 02:54:59.535 2025-03-29 22:39:49.997 \N cheers to the saloon stackers\n\nhttps://imgprxy.stacker.news/lao0jkhBS26Hz6ykuYLTVfxEo96dsvnMyaiMEoGO5ms/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYTAuZ2lwaHkuY29tL21lZGlhLzZ0WnNJc0JHTWtIVHhOUEdPUi9naXBoeS5naWY https://example.com/ 8945 455433 455433.455460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2888770180441 0 \N \N f 0 \N 0 106755570 0 f f \N \N \N \N 455433 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444452 2025-03-19 22:13:56.869 2025-03-29 22:39:47.608 Fun Fact Friday- Best fact gets 10k sats It's Fun Fact Friday!\n\nShare your best facts for a chance to win 10k sats. (One fact per comment please)\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow will be the winner.\n\nDrop some knowledge stackers.\n\n![](https://m.stacker.news/44720)\n\nGood Luck! \N 1602 \N 444452 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 26.1715583832408 0 \N \N f 0 \N 0 179773469 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 73336 2023-10-12 12:31:57.149 2025-03-29 22:39:47.608 HRF gifts 16.5 BTC via its Bitcoin Development Fund to support 12 projects Targeting:\n\n🎁 Scaling and privacy\n🎁 Censorship-resistant comms\n🎁 Education inside authoritarian regimes\n🎁 Core development\n🎁 Community building\n\n1. Grant #1: $100,000 to Calvin Kim for his work on Utreexo, a Bitcoin scaling solution for faster verification and synchronization of Bitcoin full nodes\n\nHRF’s funding allows Kim to prepare Utreexo for a main net launch 🚀\n\n2. Grant #2: $50,000 to 0xB10C for their work on Bitcoin Core tracepoints, P2P monitoring, fork observer, mining pool observer, and Bitcoin data\n\nFunding supports 0xB10C's efforts to monitor the Bitcoin network for anomalies, improving network security and resiliency 🦾\n\n3. Grant #3: $50,000 to Calle for Cashu, a free and open source protocol that enables Chaumian ecash on top of Bitcoin\n\nThe Cashu protocol conceals user balances and transaction history, offering near-perfect privacy for users of custodial Bitcoin wallets 🥜\n\n4. Grant #4: $50,000 to Meron Estefanos for the creation of Bitcoin Innovation Hub Uganda\n\nThe space will host local meetups and serve as a Bitcoin awareness and learning center, equipping local youth with practical skills to become sovereign individuals 🇺🇬\n\n5. Grant #5: $50,000 to Kieran for Snort.Social, a web client of Nostr, a decentralized, censorship-resistant, open-source, social networking protocol\n\nSnort allows users to access Nostr on web browsers, reducing reliance on app stores and centralized services 📡\n\n6. Grant #6: $50,000 to Rootzoll for Raspiblitz, a do-it-yourself lightning node that can be run on a Raspberry Pi\n\nRaspiBlitz is mainly targeted for learning how to run your own node decentralized from home - because: Not your Node, Not your Rules 🗽\n\n7. Grant #7: $25,000 to BOB Space BKK for their Thailand residency program\n\nBOB Space BKK is a Bitcoin-only hatchery, incubator, and co-working space in Bangkok. Funding will help accelerate promising FOSS projects in Bitcoin, Lightning, and eCash protocols 🇹🇭\n\n8. Grant #8: $25,000 to World Liberty Congress for the Freedom Academy, a program that equips activists with the tools, resources, and support needed in the struggle against authoritarianism\n\nThis grant supported recent financial freedom training in Zambia 🇿🇲\n\n9. Grant #9: $25,000 to Hampus Sjöberg for Blixt Wallet, a non-custodial open-source Bitcoin and lightning wallet\n\nFunding will support Sjöberg’s efforts to improve the user experience and performance of the Blixt Wallet on iOS and Android⚡\n\n10. Grant #10: $10,000 to Nourou for Bitcoin Sénégal, a group that hosts meetups, creates educational content, and onboards local merchants to Bitcoin\n\nWorking in French and Wolof, Nourou helps people learn resist French monetary colonialism 🇸🇳\n\n11. Grant #11: $10,000 to Charlene Fadirepo for the Bitcoin in Africa Show, which provides education, insights, and thoughtful conversations to deepen the understanding of Bitcoin across the African continent and beyond\n\n12. Grant #12: $10,000 to Lorraine Marcel for Bitcoin DADA, a women-centric organization with contributors based in Kenya and beyond that educates African women in the Bitcoin space 🇰🇪\n\nHRF is proud to support a diverse range of projects to help make Bitcoin a better global tool for human rights\n\nSince early 2020 we’ve supported 80+ projects globally with more than $2.7M\n\nSubmit proposals at devfund @ hrf dot org\n\nDonate and learn more at hrf.org/devfund\n\nSource: \nhttps://snort.social/e/note1vzaw25nelxm7cmgfde5d2xaedkv73kvhvz4jegfyvrtxhhqn8laqlwszr4 \N 15941 \N 73336 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.55435315388 0 \N \N f 0 \N 0 18084521 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437950 2025-03-15 02:26:16.914 2025-03-29 22:39:49.987 \N _disables privacy setting_\n\nWow, this is cool!\n\n_re-enables privacy setting_ https://example.com/ 891 436816 432920.436721.436816.437950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.92733283376573 0 \N \N f 0 \N 0 170685512 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416860 2025-02-25 22:21:38.824 2025-03-29 22:39:49.987 \N ![nostr.build_1caeb444f28fa0ddf7b751f355755e0d1b8d427a52c520d44a9791d4bfbf7a77.png](https://m.stacker.news/21523) https://example.com/ 14607 416858 416721.416740.416858.416860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00132052086364 0 \N \N f 0 \N 0 5808221 0 f f \N \N \N \N 416721 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458185 2025-03-29 04:22:20.03 2025-03-29 22:39:49.987 \N I'll be honest, I find myself taking a few of the high signal links that are sometimes posted to "recent" and reposting it on nostr for more engagement / conversation around it. Sometimes don't really have an incentive to upvote the original along the way. High quality conversations here don't seem to happen like they used to. It's just community stuff now. Which is fine if that's what it ends up being and most people are happy with it.\n\nProbably not a very good user but this is what the incentives align up for me atm. I'll upvote something if it's OG and I feel like adds signal but otherwise I think I'll lurk more and just scan recent for news to share opinions on elsewhere. Maybe it's from many more users, or maybe the comment rewards are gamed too much by the circle jerking in the saloon, but the high signal conversations have fallen off. https://example.com/ 17091 457436 457413.457436.458185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1071915743516 0 \N \N f 0 \N 0 166554631 0 f f \N \N \N \N 457413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416902 2025-02-25 22:59:52.123 2025-03-29 22:39:49.987 \N Reckless money printing in 2020. I think this was a turning point for many. https://example.com/ 20993 416737 416158.416737.416902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8607938795321 0 \N \N f 0 \N 0 222871277 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441684 2025-03-18 08:44:08.042 2025-03-29 22:39:49.987 \N How easy is it to lose money/Bitcoin using Atomic.Finance (how does one earn yield vs lose it) ? https://example.com/ 20817 441121 441087.441121.441684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.84599577905 0 \N \N f 0 \N 0 49454692 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458193 2025-03-29 04:51:11.003 2025-03-29 22:39:49.988 \N Having kids and raising them right. https://example.com/ 19292 458192 458149.458189.458191.458192.458193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4823570453805 0 \N \N f 0 \N 0 166301206 0 f f \N \N \N \N 458149 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438003 2025-03-15 05:47:39.43 2025-03-29 22:39:49.998 \N Day 223 of snailposting everyday 'til BTC hits $100k.\n\n...and 23 push-up(s).\n\n__@_'-' https://example.com/ 20922 438002 438002.438003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.26639517752817 0 \N \N f 0 \N 0 186042322 0 f f \N \N \N \N 438002 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430935 2025-03-09 14:17:39.625 2025-03-29 22:39:49.998 \N Ok I will give it a shot. https://example.com/ 3439 399223 399223.430935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3057052722408 0 \N \N f 0 \N 0 220590427 0 f f \N \N \N \N 399223 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416903 2025-02-25 23:00:22.965 2025-03-29 22:39:49.998 \N From: https://github.com/supertestnet/utxo-dealership\n```\nfirst the buyer creates an htlc and deposits his coins inside\nthe buyer should be able to take the coins after the timelock\nbut the seller should be able to take them with the preimage\nnext the seller creates an htlc and deposits a coinbase inside\nthe seller should be able to take the coins after the timelock\nbut the buyer should be able to take them with the preimage\nthe buyer's timelock should be longer than the seller's otherwise\nthe buyer could wait til his own timelock expires, then sweep\nthe funds from his own htlc using the timelock path, then\nsweep the funds from the seller's htlc using the preimage before\nthe seller's timelock expires, thus taking the seller's money\nwithout the seller being able to reimburse himself\nalso both htlcs should use the same hash which the buyer knows\nwhen the coinbase matures the buyer should disclose the preimage\nto the seller\nthen the seller should send the buyer a sig so he can withdraw\nfrom the seller's htlc using the multisig path\nthen the buyer should send the seller a sig so he can withdraw\nfrom the buyer's htlc using the multisig path\n``` https://example.com/ 11498 416745 416158.416745.416903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9234774059267 0 \N \N f 0 \N 0 133015726 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424168 2025-03-03 21:18:04.744 2025-03-29 22:39:49.998 \N Thanks!! I'm a writer with a blog and DarthCoin told me to post my latest here. Looks like the place to be. Love markdown! https://example.com/ 2514 423954 423954.424168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5903909418958 0 \N \N f 0 \N 0 111419941 0 f f \N \N \N \N 423954 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441061 2025-03-17 18:20:55.539 2025-03-29 22:39:49.998 \N Day 249 of snailposting everyday 'til BTC hits $100k.\n\n...and 49 push-ups. (20 - 14 - 8 - 7)\n\n__@_'-' https://example.com/ 913 441047 440422.440523.440538.440560.441047.441061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3935676910848 0 \N \N f 0 \N 0 171148399 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2491 2022-10-13 22:14:42.443 2025-03-29 22:39:47.608 Bitcoin Privacy # Bitcoin Privacy\n## Privacy versus anonymity\nBitcoin is usually associated with black markets, and as the tool of bad people because of its anonymity or privacy. But this is not the complete picture, and far from the truth.\n\nFirst we need to distinguish between private and anonym transactions. \n- **anonym transaction**: no identity is connected to a transaction, so it is not known which real person made it.\n- **private transaction**: only transacting parties know about the transaction, and its details.\n\n**Cash** is the most private and anonym payment solution. Only transacting parties know about the transaction, and its details. When cash appears at someone's pocket, it is impossible to know where it came from. This property makes it possible to lose cash on the street, and anyone can start to use it without really knowing whose it was. So cash shall be assumed to make bad transactions.\n \n**Wire-transfer or card** has lower anonymity and privacy than cash. The identity of the sender and receiver is attached to each transaction, so it is not anonym at all. Also a third party knows about it, so it is not fully private. Although not every people on earth can know each of your transactions, but at least the ones the third party shares this information with.\n\n**Bitcoin** on the other hand is pseudo-anonymous and transparent. \n- **Pseudo-anonymous**: We can know all of the transactions one bitcoin address/person makes, however we don't know his identity. We don't know who that person is.\n- **Transparent**: Each transaction is broadcasted to the network for each participant to see it.\n\nThis means, bitcoin is not private by default, but has higher level of anonymity than wire-transfer or card payments. See following diagram for comparison:\n\n![Privacy vs Anonymity](https://i.imgur.com/H8fCm3t.png)\n\nThis introduces the following problem:\n- Once the identity of an address is revealed, all of its transactions can be tracked by anyone, because the blockchain is public as discussed in transparency.\n\nThis can happen in different ways:\n- Your transaction history is revealed for each of your transaction partners. Imagine you buy something online at a shop. The shop owner will receive bitcoin from your address, so he can associate you with your address. From this point on, he can track all of your transactions that you already made and you will make.\n- You share your bitcoin address publicly. \n- Your IP address gets connected to your bitcoin address, and based on your IP, your rough location is known. Also you have KYC-ed when you bought your internet, so your ISP (Internet Service Provider) could connect your bitcoin to your identity.\n- A business may share their bitcoin address, where they accept bitcoin. Then if you share that you visited that place multiple times, the transactions of their bitcoin address could be analyzed to find the address that paid there on those days.\n- Publicly available bitcoin addresses are decreasing the number of unknown addresses helping the analysis of identity.\n- You buy bitcoin on a KYC-ed exchange.\n- You send bitcoin from an address with leaked privacy.\n- etc\n\nSo there are several ways that can break your privacy with bitcoin.\n\nDoes it mean we shall stop using bitcoin if we don't want our local grocery shop owner to know our online shopping habits? Short answer is **no**. Solutions are listed below.\n\n## Solutions\nThe solutions are education, and careful usage of bitcoin. We need to get used to the unprecedented level of transparency that comes with bitcoin, if we want to use it. So let's dive in.\n\n### Use addresses only once\nBitcoin gives the possibility to have infinite amount of addresses. Also you don't need to do anything special to get a new address. You can generate a new one locally without any third-party. \n\nSo a good way to increase your privacy is to only use an address once. If you want to receive bitcoin again, just generate a new address.\n\nGood wallets do this by default, but please check this, when you start to use a new wallet.\n\n### Care with sharing online\nIf possible, don't share your bitcoin address online. Only share in case you would like to receive public donations.\n\nIf you do so, always remember, that if you send bitcoin to another address, it will be connected to you as well.\n\nAlso better not to share any information about your transactions, because that could help the on-chain analysis to find your addresses.\n\n### Hide IP address\nBe sure to use VPN or Tor network when you deal with bitcoin. Meaning if you would like to use a service, where you have to share your btc address, use VPN or Tor, otherwise they will be able to connect your address with your IP. \n\nAlso a good solution to hide even your node's IP address behind a VPN or Tor.\n\n### Mixing and Coinjoin\nUse mixing or coinjoin when you send bitcoin. Using them can break the connection between the sender and receiver. It achieves this by bundling multiple transactions with the same amount, so that it won't be obvious who sent the bitcoin to whom.\n\nBe careful, because you have to trust a service or a third-party to do this.\n\nAlso using these methods can help to break the KYC connection to your bitcoin. Do coinjoin a few times on your bitcoin while you send them to your new address to make them KYC free or just buy them KYC free.\n\n## Conclusion\nWhile bitcoin may seem an anonymous and private solution, you might need to do some extra steps to achieve it.\n\nYou can use new addresses each time to receive bitcoin, so that your past transaction does not reveal your identity. So by using new addresses each time, you increase your privacy for bitcoin receiving. Also if you use an address to receive and send once, you won't share your entire bitcoin history with the one's you transact with, only the history of that 1 or more addresses.\n\nYou can use mixing and coinjoin to send bitcoin to your own other addresses, or to buy stuff, to increase the privacy of your bitcoin sending. This way, the receiver won't be able to easily connect who the real sender address was, so your transaction history is not shared.\n\nAdditional steps could be using VPN or Tor to deal with bitcoin, because even wallet applications could log your IP and sell this information to other people for profit. So be careful revealing your IP.\n\nLast but not least, do not share your address online, because that is the easiest way to degrade your privacy. \N 16259 \N 2491 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5875738716326 0 \N \N f 0 \N 0 127964127 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404338 2025-02-15 19:30:20.782 2025-03-29 22:39:47.608 What's the most extreme thing you've done outdoors, or tried to? The question is simple, yet the possible outcome of said question may very well blow our wildest expectations of each other!\n\nI'll give one simple example; *I've survived out in the wild for 15 days straight and took down a wild boar, all with my titanium spork*.\n\nThat's the stuff we need! Heroism!\n\n \N 3400 \N 404338 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 22.0233166362986 0 \N \N f 0 \N 0 66131865 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401295 2025-02-12 21:29:02.05 2025-03-29 22:39:49.987 \N Statement from Cory:\n\n![cory statement](https://i.imgur.com/k6O5AdR.png) https://example.com/ 2061 401283 401283.401295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.489212057666606 0 \N \N f 0 \N 0 159177761 0 f f \N \N \N \N 401283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416905 2025-02-25 23:02:20.795 2025-03-29 22:39:49.988 \N Spend taxes. https://example.com/ 2039 416843 416158.416843.416905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11743270104788 0 \N \N f 0 \N 0 205301071 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457876 2025-03-28 18:58:38.418 2025-03-29 22:39:49.988 \N This might be the final nail in the coffin to actually getting my first node. So bullish. https://example.com/ 12245 457815 457787.457815.457876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8338377494405 0 \N \N f 0 \N 0 29245829 0 f f \N \N \N \N 457787 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 440562 2025-03-17 11:39:53.512 2025-03-29 22:39:49.988 \N This is probably why btc is pumping,. https://example.com/ 15049 440548 440548.440562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7666857072643 0 \N \N f 0 \N 0 60059007 0 f f \N \N \N \N 440548 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422213 2025-03-02 10:18:59.88 2025-03-29 22:39:49.988 \N No secret. I just zap posts I like every day. https://example.com/ 738 419498 419498.422213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.112406742635 0 \N \N f 0 \N 0 126380063 0 f f \N \N \N \N 419498 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441677 2025-03-18 08:36:43.591 2025-03-29 22:39:49.988 \N How do you see the scaling of podcasting2.0 as it relates to keysend pubkeys? Will all podcasters need to run their own node / get their own pubkeys in order to join the network? Do you think that's scalable long term?\n https://example.com/ 18829 441259 441247.441259.441677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4742258308053 0 \N \N f 0 \N 0 80958507 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414760 2025-02-24 09:30:54.1 2025-03-29 22:39:49.988 \N Uncaught (in promise) EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'self' 'wasm-unsafe-eval' 'inline-speculation-rules'".\n\n at bakeCollection (content.7f229555.js:2064:98610)\n at Object.u (content.7f229555.js:2064:93234)\n at Object.g [as call] (content.7f229555.js:2064:93437)\n at es.o [as emit] (content.7f229555.js:2064:85238)\n at es.stop (content.7f229555.js:17:30157)\n at es.eoseReceived (content.7f229555.js:17:31755)\n at content.7f229555.js:17:8787\n at Array.forEach ()\n at T.eoseReceived (content.7f229555.js:17:8754)\n at content.7f229555.js:17:11970 https://example.com/ 4984 414643 414625.414643.414760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.57554676564177 0 \N \N f 0 \N 0 86644115 0 f f \N \N \N \N 414625 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437969 2025-03-15 04:03:03.258 2025-03-29 22:39:49.988 \N Thanks, I just checked and that would be about 10 sats for the next post. Pretty reasonable for now and it scales well with new users https://example.com/ 18901 435201 435201.437969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.33579448484653 0 \N \N f 0 \N 0 68864899 0 f f \N \N \N \N 435201 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 76480 2023-10-22 03:57:45.473 2025-03-29 22:39:47.602 A Rent-to-Own/Crowdfunding/Equity Shares Model for Territory Purchases This idea came to me last night after reading and participating in a few different posts about territory rent and ownership. I imagine there's a term for what I'm going to describe that I'm either unaware of or just isn't coming to me.\n\nThese recent posts have centered around the increasing cost (in purchasing power) of monthly territory rent, the potential long-term value of an outright purchase, and a desire to allow joint ownership. I believe we can address all of these issues simultaneously.\n\n# The Model\nFirst off, participation in this model should be opt-in for the territory founders\n* Anyone can make payments on any participating territory\n* Territory revenues get paid out in proportion to what each stacker has paid in\n* Whoever has paid in the most assumes control over the territory\n* Once three million sats have been paid towards a territory it becomes owned outright\n* If less than 100k sats per month have been paid towards a territory it becomes archived\n* Archived territories can be resurrected by making up the back payments\n* Any rental payments already made towards a territory will be counted if and when a founder opts-in\n\n# Discussion\nThe logic here is pretty straightforward. Instead of one stacker being on the hook for a large monthly bill, the community is on the hook to keep the territories they care about alive. This gives everyone an opportunity to invest in the territories they value and make sure they don't become archived.\n\nI'm also thinking that there's no reason investment has to stop once the territory hits 3 million sats. That threshold could just mean the territory will never be archived. Further investments could still impact revenue share and control. This would increase the revenue stream for Stacker News.\n\nFounders can still protect their control in a few ways: never opt-in, out bid everyone else, build up a big cushion before opting in.\n\nI'll be curious to hear what people think about this proposal. \N 20599 \N 76480 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.0136978194272 0 \N \N f 0 \N 0 47737976 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430915 2025-03-09 14:06:28.31 2025-03-29 22:39:49.988 \N I do want to share with you that there is hope, because at one point this is exactly what my partner could have said about me, but then I changed along with him and it's the best adventure I've been on https://example.com/ 2347 430608 430549.430568.430608.430915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0411099083674 0 \N \N f 0 \N 0 229342523 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401038 2025-02-12 17:08:09.575 2025-03-29 22:39:49.988 \N \n**these comments prove toxic bitcoin maxi's are inbred echo-chamber retards** \n\nsour grapes. \n\nWe see everything from: "LN can and does do everything Monero does" to "Liquid can do everything Monero does", to "ecash will solve this". (All custodial, third party, legally liable and poison-able by the way.) \nNo one has even offered the latest "Silent Payments" meme as of this writing. Because you are cuckolds. \n\nWhere the dark market goes, everything else follows. No one else has as much skin in the game or proof of work. (remember don't trust, verify ? You don't because all the solutions presented here are "trust L2's")\n\n**Bitcoin started as dark money. Took off as black market money and has no use outside of black market money. Zero. zilch. nada.** \n\nEveryone else, the world at large, the next generation, our inheritors, just want apple pay.\n\nThe worst take is DarthCoin's: "BE A DEV!". Some of us have more interesting things do then fuck around with config files and run and maintain a bitcoin node, a lightning node, general server infra, LN liquidity channels (properly and to not lose funds), LNbits in a secure and up to date way and all the other shit needed just to have a shitty version of Monero privacy. You people are incredibly out of touch religious fanatics. \n\nWhere will you massive cunts be when the first ecash mint rugpulls or an LSP gets a warrant ? \nYou will be in your early bag citadels shaking back and forth like some religious school student whispering quotes from Saylor about hornets, while real people suffer.\n\nNot only is Bitcoin not cypherpunk anymore, it's dumb. Its base are now dumb sophists, who were once made up of thinkers. Its Dev's are dumb yes-men whores for VC. And it's influencoors are low IQ conformist who literally fellate dictators. Without knee pads.\n\nEven this forum recently changed its monetary behavior based on an arrest for a completely different unrelated open source project that could have been prevented by embracing Monero. Monero focuses on doing one thing and one thing only, being money.\n\nIt's as though we exist in a mafia run city and Bitcoiner's are going around passing out "Back the Blue" stickers and flags, or in a jungle and actively persue the evolutionary dead end of species wide albinism.\n\nWe are rapidly approaching an inflection point where anything not accepting, using or endorsing Monero and the best of privacy measures will be seen as a Honeypot and retroactive risk.\n\nYou ideological retards don't know anything outside your stupid church. You just call everything else a shitcoin reflexively, and when reality punches you in the face many many people will laugh. \n\nwhy are you hitting yourself\n\nwhy are you hitting yourself\n\nwhy are you hitting yourself ! https://example.com/ 11522 400855 400855.401038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.33535123229692 0 \N \N f 0 \N 0 23452203 0 f f \N \N \N \N 400855 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 411435 2025-02-21 12:21:06.363 2025-03-29 22:39:49.988 \N TL;DR:\n- Kia didn't properly protect its endpoint for registering new dealers, allowing anyone to register as a car dealer\n- with dealer privilege, you can access a car's owner personal details from Kia's API, using only their vehicle's [VIN](https://en.wikipedia.org/wiki/Vehicle_identification_number), which can be derived from their license plate\n- you can even revoke their ownership of the vehicle, and put yourself as owner instead. Being owner means you can unlock, lock, or even start the car from the Kia app. You basically just stole the car, and there was no notification alerting the actual owner.\n\nNo go read the full thing, it's pretty well-written. https://example.com/ 794 399223 399223.411435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5430971309197 0 \N \N f 0 \N 0 81151573 0 f f \N \N \N \N 399223 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414786 2025-02-24 09:55:12.219 2025-03-29 22:39:49.988 \N That ain't right. https://example.com/ 9985 414784 414783.414784.414786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.69321912620099 0 \N \N f 0 \N 0 188204782 0 f f \N \N \N \N 414783 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 420842 2025-03-01 07:16:31.488 2025-03-29 22:39:47.602 TBDXXX Would Require APO BIP 118 OR CTV BIP 119 Its time to talk about something controversial. CheckTemplateVerify by Jeremy Rubin...is actually pretty good. Yes, the developer has a rotten personality, but his personality will not be merged with Bitcoin is his open source code is soft forked in. I'm getting ahead of myself though, lets start with TBDXXX\n\nWhat does TBDXXX actually do? \n\n>TBDxxx presents an innovative approach to achieving Chaumian e-cash-like behavior without relying on a trusted mint. The current proposal uses APO, while APO can be used to synthesize CTV, CTV is more concise, it’s a 32 byte hash vs a signature, and it’s faster due to sha2 vs ecc operations. [^1]\n\nI'm bringing this up for a few reasons:\n\n1. The community has shown interest in federated e-cash mints as a way to minimize trust\n\n a. I believe multiple e-cash mints would result in Gresham's law wherein dishonest mints print e-cash (bad money) which is treated as though it has the same value as honest mints (good money). \n b. These mints being centralized entities means they serve as an easier point of attack for governments and advanced persistent threats\n\n2. People keep complaining about lightning\n a. Sure you can open a channel, but for someone who didn't feel the need to open a channel when fees were low, opening a channel suddenly costs $20 equivalent in sats\n b. You can't do cold storage with lightning, and if high fees were to become the norm, replacing the block subsidy, all cold storage users would have to pay high fees to take that little bit out of the emergency fund.\n\nOn the topic of the mempool, CTV could also help us with that\n\n> What this means practically is that by unbundling spending from redeeming we can serve a much greater number of users that if they were one aggregate product because we are taking the “expensive part” and letting it happen later than the “cheap part”. And if we do this cleverly, the “setting up the milk line” in the splitting of the spend allows all receivers to know they will get their fair share later. [^2]\n\n![diagram](https://rubin.io/public/img/bitcoin/advent/tree_pay.png) [^3]\n\nWe also know that we want to scale lightning using channel factories, however, since channel factories and TBDXXX both require either BIP 118 or BIP 119, its not really a choice between channel factories or TBDXXX, its rather a choice between BIP 118 or BIP 119\n\n![Channel factories](https://i.stack.imgur.com/sndlZ.png)[^4]\n\n> we can create a single Bitcoin tx that is n - of - n multisig which enables us to do multiparty channels with n participants in 1 transaction. So if you take n=40 we can onboard 8bn people in 1 year. If you choose n=480 we can do it in 1 month. So let's keep fingers crossed for that Bitcoin upgrade.\n\n-Rene Pickhardt[^5]\n\nSo how does CTV have your back with channel factories?\n\n![ball lightning](https://gaia.blockstack.org/hub/17NbXqjiptmNiDTF1dp95ibnp9oZDV6sMw/photos/bo-iHio5_4iTlvWwXwZ9l/1683136052389-FvMSSS9XwAE49gc.jpeg)[^1]\n\nNow in the spirit of of not allowing for any surprises, people felt betrayed with Taproot because it allowed people to mint NFTs and outright shitcoin's using Bitcoin's blockspace. Shitcoiners have been doing this for a long time, whether it be RGB, color coins, Taro, Stamps, or Inscriptions. Yes, CTV (and APO because their use cases overlap so much) allow for the creation of new types of shitcoins and scams. The developer of CTV even goes so far as to promote them. \n\nJeremy Rubin is such a pain in the ass, the biggest roadblock to his own code. All I'm here to argue today, is that the massive benefits of this guy's code, outweigh the negatives (including his incredibly heavy ego as difficult as that may be to believe)\n\nCTV was initially controversial because the developer suggested using speedy trial and pushed with his ego when the community pushed back on the idea. However, the activation method the developers desires is not a prerequisite for its implementation. We very well can soft fork CTV using an activation method that is against the developer's wishes because it is open source code after all.\n\nI've bombarded you with enough information for now. Next time, lets do a deep dive into the technical differences between APO and CTV.\n\nSources:\n[^1]: https://app.sigle.io/polydeuces.id.stx/bo-iHio5_4iTlvWwXwZ9l \n[^2]: https://rubin.io/advent21/ \n[^3]: https://rubin.io/bitcoin/2021/12/09/advent-12/\n[^4]: https://bitcoin.stackexchange.com/questions/67158/what-are-channel-factories-and-how-do-they-work\n[^5]: https://bitcoin.stackexchange.com/questions/106520/is-bitcoin-lightning-still-not-scalable \N 12422 \N 420842 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.9022516542271 0 \N \N f 0 \N 0 44078293 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404346 2025-02-15 19:43:33.202 2025-03-29 22:39:49.989 \N If not Phoenix, Breeze and Blixt, why not use a hosted lightning node like https://voltage.cloud and connect to/manage it with your mobile wallet? This should be sufficient for spending money while remaining sovereign and independent of a proprietary service. The majority of your coin should be in an offline wallet anyway. https://example.com/ 11938 404270 404270.404346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3599250897009 0 \N \N f 0 \N 0 176057589 0 f f \N \N \N \N 404270 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423211 2025-03-03 05:35:58.933 2025-03-29 22:39:49.989 \N Day 252 of snailposting everyday 'til BTC hits $100k.\n\n...and 52 push-ups. (30 - 15 - 7)\n\n__@_'-' https://example.com/ 17517 423036 423036.423211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.17358977130291 0 \N \N f 0 \N 0 53140145 0 f f \N \N \N \N 423036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404171 2025-02-15 15:56:27.193 2025-03-29 22:39:49.989 \N ![](https://www.zapread.com/i/-0M) https://example.com/ 4115 399223 399223.404171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.23775634188732 0 \N \N f 0 \N 0 69551347 0 f f \N \N \N \N 399223 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458041 2025-03-28 22:10:48.522 2025-03-29 22:39:49.989 \N My wishes for 2024 are the same as in previous years. I wish for a world without wars and full of love https://example.com/ 21131 457918 457918.458041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8924581121696 0 \N \N f 0 \N 0 69194150 0 f f \N \N \N \N 457918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410659 2025-02-20 15:34:18.067 2025-03-29 22:39:49.989 \N I've spoken to two boomers this week who were pretty happy with themselves for buying MicroStrategy stock over the last year. \n\nI asked each of them why they didn't just buy bitcoin. Their answers both came down to "bitcoin is confusing, and I'm not a techie, it's easier to buy MSTR" https://example.com/ 1483 410589 410589.410659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.4742332843892 0 \N \N f 0 \N 0 34308470 0 f f \N \N \N \N 410589 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404380 2025-02-15 20:29:10.804 2025-03-29 22:39:49.989 \N ![Screenshot 2023-12-06 at 9.03.35 AM.png](https://m.stacker.news/6987)\n\nThe dropdown cannot hold much longer. https://example.com/ 18114 402091 402091.404380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.30422337949454 0 \N \N f 0 \N 0 202164922 0 f f \N \N \N \N 402091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441670 2025-03-18 08:32:49.763 2025-03-29 22:39:49.989 \N I would prefer spend bitcoin and earn bitcoin, rather than replace by converting fiat into bitcoin to spend bitcoin again. Also, most merchants that accept bitcoin probably convert it right away to fiat when they receive the bitcoin. So we only convert fiat to bitcoin, spend it and convert it back to fiat instead of creating a bitcoin only circular economy. It only cost more fees and taxes than spending fiat directly. https://example.com/ 20500 441667 441611.441641.441667.441670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2602607677534 0 \N \N f 0 \N 0 2214689 0 f f \N \N \N \N 441611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421209 2025-03-01 13:47:41.131 2025-03-29 22:39:49.989 \N Pokemon is a game for Gameboy. Twitch is a live video streaming app. “Twitch Plays Pokemon” was a popular phenomenon where Twitch users would collaborate to play a SHARED game of Pokemon on Gameboy. Here's how it worked:\n\nParticipants would use the Twitch message board to enter commands that then got executed in the gameplay. For example, if someone entered the command “right”, that would cause the player to move 1 space to the right. Commands would execute immediately after they were received, and anyone could enter a valid command at any time. You can think of Twitch Plays Pokemon as the more practical equivalent of placing a Gameboy in the middle of a crowded room and telling everyone to push buttons at the same time. As you might expect, the gameplay of Twitch Plays Pokemon was quite “twitchy”, but in a very “infinite monkey theory” way, progress could eventually be made.\n\nIn an effort to streamline play, a new game mode was devised in which players would “vote” for the next command and, every 4 seconds, whatever command received the most votes over the previous 4 seconds would execute in the game. Also introduced in this mode was the ability to attach multipliers to a command, such that the command would execute that number of times. For example, “right2” would cause the player to move 2 spaces to the right. “right3” would cause the player to move 3 spaces to the right, and so on. The highest number any participant could place after a command was 9, meaning whatever command they entered would execute 9 times. As you might expect, gameplay in this mode was less chaotic, more efficient, but it also meant each participant had less direct and immediate influence over the game. If a group of even 5-10 got together and colluded on their votes, they could practically take over the game and make contrarian ideas irrelevant. The new game mode was called “Democracy”, and the original game mode became known as “Anarchy”. Which game mode was engaged was itself governed by a democratic process: if more participants wanted to play in Democracy mode, then Democracy mode engaged; if more wanted to play in Anarchy mode, then Anarchy mode engaged.\n\nTo summarize: in Anarchy mode, everyone had equal influence over the game, but progress was slow and clunky. In Democracy mode, progress was fast and efficient, but colluding groups could marginalize individual participants and ruin the game for them.\n\nSo… individual participants discovered a means of effective protest whenever Democracy mode became suffocating, but they could not garner enough votes to switch back to Anarchy mode. Someone would type the command “start9” into the comments. This command meant “open the start menu 9 times in a row”, which, as you might imagine, would be enormously disruptive if executed. The entire screen would be blocked by the start menu, over and over. Typing “start9” was a participant's way of signaling to other participants that they felt marginalized by Democracy mode, and they were ready to fight back. If others felt the same, they could also begin typing “start9” - then, sure enough, “start9” would finally receive more votes than the colluding group's command, and the menu opening would begin. Every 4 seconds, the menu would open 9 times…again, and again, and again…until finally, the colluding group would be forced to either cooperate in reverting the game mode back to Anarchy mode or quit altogether.\n\nPlaying in Anarchy mode was impractical, but people did not want to play a game where they had no voice, where a group of insiders had taken total control. And so “start9” became the battle cry of the individual, the out-group, a means of signaling to other individuals that it was time to fight back against the usurpers - to use their own rules against them, until there was no alternative but to return control to the individual participants. https://example.com/ 2757 421208 421208.421209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2173332888267 0 \N \N f 0 \N 0 64422515 0 f f \N \N \N \N 421208 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430908 2025-03-09 14:00:13.001 2025-03-29 22:39:49.989 \N Excellent question. I have had thoughts like that lately. When you focus on a territory and what it's about, each one does have potential. I have three, but I don't have the brain power to give each full attention at once. That's okay. I even think dogs and cats has a shot once SN grows along with bitcoin. https://example.com/ 2196 428658 428441.428658.430908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7258084882792 0 \N \N f 0 \N 0 175851081 0 f f \N \N \N \N 428441 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417389 2025-02-26 10:52:35.984 2025-03-29 22:39:49.989 \N Saylor? nah! I want to do an **Operation Pillar** :D congratulations it is looking great.\nI know the pension ponzi will collapse and I won't get anything. I'm not counting on that.\n\n\n https://example.com/ 7913 417376 417376.417389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.277200225905 0 \N \N f 0 \N 0 216369438 0 f f \N \N \N \N 417376 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421927 2025-03-02 05:27:49.858 2025-03-29 22:39:49.989 \N I know I'm not alone or original here, but Broken Money, by Lyn Alden. https://example.com/ 1120 421805 421805.421927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9843838687283 0 \N \N f 0 \N 0 145229988 0 f f \N \N \N \N 421805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401746 2025-02-13 11:16:39.258 2025-03-29 22:39:49.99 \N How a Lefty became a Maxi - I hope [this link](https://www.citadel21.com/how-a-lefty-became-a-maxi) can count as my submission. It is a story Citadel 21 ran in volume 11, I wrote it. https://example.com/ 21734 401734 401734.401746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.3763575450048 0 \N \N f 0 \N 0 31117149 0 f f \N \N \N \N 401734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458208 2025-03-29 05:34:22.685 2025-03-29 22:39:49.99 \N If you're worried, I suggest doing a bit more research to understand the interplay between L1 and L2 networks\n\nAlso, if you are going to make contentious comments on SN, at least back it up with some reasoned analysis, or link to a reliable source. https://example.com/ 1549 458028 457655.457836.458028.458208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.49039691765942 0 \N \N f 0 \N 0 133126418 0 f f \N \N \N \N 457655 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424209 2025-03-03 22:02:28.777 2025-03-29 22:39:49.991 \N I'm always a fan of old Thinkpads.\n\nFor Chromebooks, you can boot other OSs if you replace the bootloader. I've had success using resources from here: https://mrchromebox.tech/ https://example.com/ 21803 423505 423505.424209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3699504007726 0 \N \N f 0 \N 0 62814147 0 f f \N \N \N \N 423505 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404386 2025-02-15 20:42:45.789 2025-03-29 22:39:49.992 \N Super exciting to see a company working on Fedimint. From what I understand, the Fedi company will be working on an end-user wallet that can point at whatever fedimint deployment the user wants. So you can have a local community bank, or an online bank in your discord group, or whatever you want. Fedimint is staying open source and other projects or wallets can be built on the protocol. \n\nReally excited to see what this group comes up with! https://example.com/ 8326 404383 404383.404386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4288367384791 0 \N \N f 0 \N 0 48576967 0 f f \N \N \N \N 404383 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458195 2025-03-29 04:57:59.915 2025-03-29 22:39:49.992 \N the only moment I truly remember is 9/11. Which is probably similar for a lot of people here. I was walking from first period to second when the kids in front of me were talking about hearing about a plane crash in NYC. When I got to class the world was different. I was at a military boarding school with people from all over the world. \n https://example.com/ 15200 458151 458151.458195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.80302613756609 0 \N \N f 0 \N 0 104737283 0 f f \N \N \N \N 458151 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442279 2025-03-18 13:53:27.376 2025-03-29 22:39:49.993 \N After realizing that docker is also to blame for my constant network interruptions and the only solution seems to be to disable IPv6 [0], I am also interested in alternatives to docker.\n\nI've seen some people in the docker github mentioning that they switched to [Podman](https://podman.io/). The only other thing that comes into my mind is [K8s](https://kubernetes.io/). But I don't have experience with any of them so not sure how well they suit your use case.\n\n[0] https://github.com/docker/for-linux/issues/914\n\n https://example.com/ 12334 442258 442084.442109.442124.442138.442258.442279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.27826927824811 0 \N \N f 0 \N 0 192325401 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451254 2025-03-24 13:19:51.843 2025-03-29 22:39:49.993 \N Well, you are moving towards the root behind all our problems.\n\nWhich is not fiat. It's coward people who lack critical thinking and the rebellious spirit to not be submissive to the state. No amount of Bitcoin and innovation will save us from people behaving in such way.\n\nBut there is still hope. Because Bitcoin creates incentives for people to wake up and stand up. I would bet must of us around here used to be obedient normies, and then Bitcoin turned us into anarchist wackos. I guess the question is: will we manage to be enough?\n\n https://example.com/ 20710 451236 450470.450576.451229.451236.451254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.36970535498 0 \N \N f 0 \N 0 78502776 0 f f \N \N \N \N 450470 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424176 2025-03-03 21:27:29.347 2025-03-29 22:39:49.994 \N If you live on a Bitcoin standard, you already do this naturally because you need to live. I'm aware there's gaps, but you can get pretty far just using Bitrefill/Fold/Bitcoin Company. https://example.com/ 19735 423701 423314.423321.423701.424176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.53759231714719 0 \N \N f 0 \N 0 119864224 0 f f \N \N \N \N 423314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413474 2025-02-23 08:34:38.443 2025-03-29 22:39:47.602 Coldkite Coldcard Reproducible Builds After the [wallet scrutiny drama](https://walletscrutiny.com/hardware/coldcardMk3/) and [nvk's twitter response](https://twitter.com/nvk/status/1671237705517105152) I decided to verify for myself whether I could reproduce several Coldcard builds, focusing on MK3 as I had seen most people complaining about these. \n\nI started with a vanilla Ubuntu 22.04 VM running on QEMU/KVM (virt-manager)\n\nI installed Docker using this [guide](https://linuxhint.com/install-docker-on-pop_os/) and installed gcc etc. with `sudo apt install build-essential`\n\nI then followed the [Coinkite guide](https://github.com/Coldcard/firmware) and basically did the following operation several times:\n\n`git clone https://github.com/Coldcard/firmware.git`\n`cd firmware/stm32`\n`git tag` (<--- here I picked a build) \n`git checkout` \n`make repro`\n\nI did this for \nMK4: \n2023-04-07T1330-v5.1.2 (latest build) \n\nMK3: \n2023-06-19T1627-v4.1.8 (latest build)\n2022-11-14T1854-v4.1.7 \n2022-10-05T1517-v4.1.6\n2022-05-04T1258-v4.1.5\n2022-04-25T1618-v4.1.4\n2021-09-02T1752-v4.1.3\n\nAfter each build, I recorded my results, then `rm -rf ./firmware` and started again from the beginning picking out a different build from `git tag`\n\nFor M4 5.1.2 I got `SUCCESS` from `make repro`\nThe binary on the [webpage](https://coldcard.com/downloads/) 893,237 bytes and the build file in ~/firmware/stm32/built/firmware-signed.dfu\n was also 893,237 bytes. \n\nFor M3 4.1.8 I got `SUCCESS` from `make repro`\nThe binary on the webpage is 753,981bytes, yet the build file in ~/firmware/stm32/built/firmware-signed.dfu\n was 722944 bytes\n\nFor M3 4.1.7 I got `error 1` from `make repro`\nThe binary on the webpage is 760,637 bytes, yet the build file in ~/firmware/stm32/built/ was 729,600 bytes\n\nThis is the Diff: (the right hand side human readable stuff)\n\n```\n| to exit...R..Mi|\n|croPython v1.12-|\n|1092-gc087bbe8d-|\n|dirty on 2023-06|\n|-22; Coldcard wi|\n|dirty on 2022-11|\n|-14; Coldcard wi|\n|th STM32L4xxRG..|\n|.Type "help()" f|\n|or more informat|\n| with STM32L4xxR|\n|G.v1.12-1092-gc0|\n|87bbe8d-dirty on|\n| 2023-06-22.1.13|\n| 2022-11-14.1.13|\n|.0.pyboard...[..|\n|9....b..<...TS..|\n|........L.......|\n```\n\nFor M3 4.1.6 I got `error 1` from `make repro`\nThe binary on the webpage is 760,125bytes, yet the build file in ~/firmware/stm32/built/ was 729,088 bytes\n\nThis is the Diff: (the right hand side human readable stuff)\n\n```\n| to exit...R..Mi|\n|croPython v1.12-|\n|1092-gc087bbe8d-|\n|dirty on 2023-06|\n|-22; Coldcard wi|\n|dirty on 2022-10|\n|-05; Coldcard wi|\n|th STM32L4xxRG..|\n|.Type "help()" f|\n|or more informat|\n| with STM32L4xxR|\n|G.v1.12-1092-gc0|\n|87bbe8d-dirty on|\n| 2023-06-22.1.13|\n| 2022-10-05.1.13|\n|.0.pyboard...[..|\n|9....b..<...TS..|\n|........L.......|\n```\n\n\n\nFor M3 4.1.5 make repro failed with an error\n\n```\n=> ERROR [4/4] RUN ln -s /usr/bin/python3 /usr/bin/python 0.4s\n------\n > [4/4] RUN ln -s /usr/bin/python3 /usr/bin/python:\n#0 0.366 ln: /usr/bin/python: File exists\n------\nDockerfile:23\n--------------------\n 21 | --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/\n 22 | \n 23 | >>> RUN ln -s /usr/bin/python3 /usr/bin/python\n 24 | \n 25 | \n--------------------\nERROR: failed to solve: process "/bin/sh -c ln -s /usr/bin/python3 /usr/bin/python" did not complete successfully: exit code: 1\nmake: *** [Makefile:248: repro] Error 1\n```\n\nLooking at the dockerfile.build file, it seems from 4.1.6 there is a change in the file:\n\n<4.1.5 and previous>\n`FROM alpine:edge`\n\n<4.1.6 and subsequent builds>\n`FROM apline: 3.16.0`\n\nThere is also the comment:\n\n```\n# PROBLEM: alpine has `gcc-arm-none-eabi` `but it's not in main repo, instead its part of "edge"?\n#\n# - for firmware v4.0.2, I used alphine:3.13.2 as base, but that doesn't work now for\n# some random reason, and I don't care to debug why.\n#\n```\nSo this seems related to the issue of 4.1.5 not building for me. I got the same error for 4.1.4 and 4.1.3\n\nThese are my questions which I hope to get an answer for:\n\n1: It seems that the 4.1.7 and 4.1.6 failing are just down to the build date being included in the build for some reason. This was also the finding of the original [wallet scrutiny test](https://walletscrutiny.com/hardware/coldcardMk3/) if you scroll down to the bottom of the page. Whether Coldcard fixed 4.1.8 in the meantime or not I do not know. But, regardless, if the diff is nothing but a date, is it really a big deal? \n\n2: For the MK4, not only do you get SUCCESS using Coinkite's docker build tool, but the build file is also the same size as the binary on their website. But for the MK3 even if you get SUCCESS the build file is a different number of bytes to the binary on Coinkit's website. Why would this be? If the files are supposed to be binary equivalent with only a minor (64 byte?) signing key difference why are the files such different sizes? Especially since the MK4 is the same size. \n\n3: Anyone know how to fix the alpine.edge issue so I can complete my testing of 4.1.5 and below? \n\n4: I was disappointed to find you cannot get the hash of the current firmware running on a Coldcard. You are able to do this on Foundation Passport. Am I missing something? Perhaps you can do it on newer firmware/ devices? I suppose the paranoid reflash the firmware from factory so the hash on the device is redundant, especially since it could tell you anything on the screen if it was compromised? \n\nFinally, some comments, I am a big NVK and Coinkite fan and I really wanted to be reassured by the reproducible build process. I understand as a regular pleb I know just enough to be dangerous and maybe it's above my paygrade, but it does seem to me like, especially for the MK3, this is a bit of an afterthought for Coinkite. It seems like some text in their documentation pointing out the slight diff due to date in MK3 builds would be helpful, at the very least. \n\nAlso, I found NVK being a bit gaslightly in that Twitter thread. Of course some users can make videos showing SUCCESS of some builds. But there are other users with other builds who are not getting SUCCESS, especially for the MK3. I myself have found this. \n\nNot wanting to FUD a great Bitcion only company like Coinkite but at the same time I'd love a bit of reassurance on my questions above. \N 1603 \N 413474 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.9766335651058 0 \N \N f 0 \N 0 152161449 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448316 2025-03-22 14:40:51.034 2025-03-29 22:39:49.994 \N I take it you imply a custodial LN wallet? https://example.com/ 21506 448313 448283.448313.448316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0653881662862332 0 \N \N f 0 \N 0 85134913 0 f f \N \N \N \N 448283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422997 2025-03-02 20:57:55.597 2025-03-29 22:39:49.994 \N First look at personalized feeds and subtle divergence. One of the most divergent stackers is on the left and consensus is on the right.\n\nhttps://snimgs.s3.amazonaws.com/Screenshot+2023-10-16+at+5.36.55+PM.png\n\nAs the site grows, subs are added/subbed, and more spending dimensions are considered, more and more individual divergence will result ... but the intent is to only ever diverge when the difference from consensus is statistically significant.\n\nAlmost there. https://example.com/ 1823 422957 422704.422957.422997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5201140884851 0 \N \N f 0 \N 0 75238455 0 f f \N \N \N \N 422704 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404387 2025-02-15 20:44:49.673 2025-03-29 22:39:49.995 \N I'm in 36 spot for top spender and top stacker. https://example.com/ 4474 404270 404270.404387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4979298106926 0 \N \N f 0 \N 0 66856245 0 f f \N \N \N \N 404270 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404391 2025-02-15 20:47:39.666 2025-03-29 22:39:49.995 \N I’m learning how to get along with less sleep. I’ve always been a minimum 8 hours guy. I would let myself get 7 hours sometimes but not usually.\n\nLately I’m getting probably 6-6.5 hours on average. I think it costs some focus and willpower, and might even threaten health more generally, but it’s an interesting trial nonetheless. https://example.com/ 3642 404390 404390.404391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5464161892678 0 \N \N f 0 \N 0 42346945 0 f f \N \N \N \N 404390 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457211 2025-03-28 10:08:15.092 2025-03-29 22:39:49.995 \N Ringworld by Larry Niven. Truly insane sense of scale. Good old sci-fi no bullshit, perfect for escapism. https://example.com/ 2529 457137 457126.457137.457211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9675926211596 0 \N \N f 0 \N 0 119479870 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413475 2025-02-23 08:35:07.431 2025-03-29 22:39:49.996 \N I would not gamificate it too much.\nValue4value is well defined and it is what it is. But I understand there is always a need to fight against spam bots etc... https://example.com/ 11165 413473 413007.413076.413322.413473.413475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2382183644366 0 \N \N f 0 \N 0 237791365 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410501 2025-02-20 14:05:32.145 2025-03-29 22:39:49.997 \N There go my sats. AMAs are awesome but tough on the wallet. https://example.com/ 4250 408230 408230.410501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.42349880155766 0 \N \N f 0 \N 0 52007921 0 f f \N \N \N \N 408230 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410502 2025-02-20 14:06:06.708 2025-03-29 22:39:49.997 \N I'm sure someone will provide a more detailed answer, but basically the US insisted on everyone using the dollar as their reserve currency. After going off the gold standard, the petrodollar was created, which was a deal with the Saudis (and OPEC?) to only sell oil for dollars. That created an enormous global demand to hold dollars. https://example.com/ 19759 407278 407278.410502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.09011207063213 0 \N \N f 0 \N 0 56259126 0 f f \N \N \N \N 407278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455825 2025-03-27 10:59:37.099 2025-03-29 22:39:47.602 Hans-Hermann Hoppe: A libertarian view of the Ukraine-Russia conflict We libertarians in particular are looking for a meaningful and stringent explanation of the Ukraine conflict these days. An intellectually appealing in-depth explanation that has not already been devalued in advance by the moralistic propaganda of one of the parties to the conflict. During my research, I came across a very interesting lecture by Hans Hermann Hoppe from last year. It opens up a libertarian view of state conflicts in general and the Ukraine conflict in particular. Click here to watch the video:\n\n https://youtu.be/rHImsm9satA?si=xAyi8tJPOif4CgRf\n \N 10690 \N 455825 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.8731597376478 0 \N \N f 0 \N 0 66519112 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451210 2025-03-24 12:52:27.587 2025-03-29 22:39:49.997 \N A simple Mortgage calculator with Material UI layout https://mortgageapp.surge.sh/ https://example.com/ 18956 451145 451145.451210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.01225516582755 0 \N \N f 0 \N 0 181905640 0 f f \N \N \N \N 451145 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444442 2025-03-19 21:59:46.158 2025-03-29 22:39:49.997 \N Alternate link: https://archive.ph/9YnI6 https://example.com/ 20596 444417 444408.444417.444442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.10248559238578 0 \N \N f 0 \N 0 24036169 0 f f \N \N \N \N 444408 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443217 2025-03-19 07:09:37.598 2025-03-29 22:39:49.997 \N 1. To have challenged a habit\n2. To have grown, hunted or foraged and prepared a whole meal \n3. Having built or created something for the next generation. https://example.com/ 7418 443169 443169.443217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.755998445887 0 \N \N f 0 \N 0 78686966 0 f f \N \N \N \N 443169 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430946 2025-03-09 14:24:40.146 2025-03-29 22:39:49.997 \N They're popular amongst targeted (state-level?) attack campaigns that have an amount of known victims in the tens or low hundreds. They're pretty advanced, but there isn't much of a benefit to a bootkit beyond absolute persistence compared to a zero-click remote 0day. Malicious UEFI firmware that infects the OS on reboots have been observed in the wild before, and the NSA also had firmware attacks for weaponizing hard drives during the Snowden era too.\n\nCosmicStrand, MoonBounce, MosaicRegressor, BlackLotus come to mind as best examples to demonstrate.\n\nBoth of them are undetectable by the operating system since what is executed runs with the highest privilege. Windows Defender can do nothing against unknown malware and Linux is Linux. Forensic analysis of the device can reveal the attacks although this is not an automated process and you'd need experience in DFIR to analyse a device to see if you was infected by this.\n\nBootkit firmware have to drop malware within the installed OS for command and control and to monitor their victim's activities. Forensic analysis of the disk for potential IoCs, network traffic analysis to find connections to a potential C2 server and memory dumping (for fileless malware) are some ways to find out. You'd also need reverse engineering experience to confirm suspicious activity. This is also why when people talk about "hardware backdoors" in a security researcher they get laughed at. They are only useful by being unknown and to a limited group of people.\n\nWindows tried to add boot security (called System Guard) to prevent firmware based attacks on a line of PCs called "Secured-core" but they are a questionable half solution that avoids the real solution. Dmytro Oleksiuk (cr4sh) is a very good researcher who develops a lot of PoC UEFI bootkits and he has some good material about the subject matter.\n\nDesktop boot security is fucked. "Secure boot" is nothing like the Verified Boot used in Android, iOS, GrapheneOS, ChromeOS and ARM Macs. Desktop OSes need to move towards being adminless and make features like sandboxing for apps mandatory. Android works really well with verified boot because most of the OS is an immutable, adminless workspace that separates all of what the user does in it's own place. The desktop OSes also trust the hardware connected to it and their drivers too much. https://example.com/ 21577 430726 430726.430946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.345838263701 0 \N \N f 0 \N 0 75360834 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457086 2025-03-28 07:26:25.695 2025-03-29 22:39:49.997 \N The magic never left... https://example.com/ 8535 457009 457001.457009.457086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4901957191141 0 \N \N f 0 \N 0 33221015 0 f f \N \N \N \N 457001 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449567 2025-03-23 12:40:22.896 2025-03-29 22:39:49.998 \N When he will start paying Microstrategy employees in bitcoin? https://example.com/ 21455 449394 449394.449567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.904823891665 0 \N \N f 0 \N 0 67821200 0 f f \N \N \N \N 449394 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451264 2025-03-24 13:22:26.908 2025-03-29 22:39:49.998 \N Justin from Voltage here. We love you guys and are excited to get more of these integrations with amboss (and other awesome companies building cool tools in the space. We need y’all to keep building and we’ll work tirelessly along side all y’all to be the change etc. \n\n❤️💪🐄 https://example.com/ 12768 451165 451165.451264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7154227687298 0 \N \N f 0 \N 0 129633875 0 f f \N \N \N \N 451165 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458203 2025-03-29 05:27:54.77 2025-03-29 22:39:49.998 \N Appreciate the shoutout! \n\n>Frontiers can be everywhere in ~culture.\n\n100% agree, didn't mean to sound too 'Murican haha. Maybe I've come around again. SN will evolve, maybe some will abandon the cowboy theme if the option arrives, maybe some keep it and in the future it becomes akin to the "floppy disk" save icon, a relic of the past.\n\n>So there could be cowboys in outer space... \n\nI think this is exactly where we're headed as a species lol.\n\nI think the frontier aspect of the site will never leave, since the real frontier is bitcoin, but for sure that will take many forms. I just really like the design of the site so far, and it makes sense to me to build the site as if you're letting people build on a plot of land. \n\nIf bitcoin is a gold rush:\n\n* Twitter, reddit, youtube are the people on the East Coast still\n* SN/nostr are the ones racing West and building the towns\n\n\nBtw, what might "borders" look like on SN? I thought about this while reading that cross-post discussion. I thought about if I was cross-posting from ~UFOs to ~history or ~tech, the founder should probably have the option to "close their borders" if they don't want cross-posts from my territory.\n\n https://example.com/ 13854 458153 457126.457921.457951.458153.458203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.862625827012877 0 \N \N f 0 \N 0 203769695 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449481 2025-03-23 11:56:14.803 2025-03-29 22:39:49.998 \N Welcome! I've been here a week and I'm having a blast. https://example.com/ 16214 449027 449027.449481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.565531388689635 0 \N \N f 0 \N 0 232139424 0 f f \N \N \N \N 449027 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458209 2025-03-29 05:35:05.962 2025-03-29 22:39:49.998 \N Hi everyone, my name is Joe Nakamoto. I write, report and make content about Bitcoin around the world. \n\nI recently posted this deep-dive about Bitcoin use in El Salvador to Cointelegraph magazine. \n\nI know Cointelegraph isn't widely read in the Bitcoin space so thought I'd crosspost it over here.\n\nI hope it can benefit, entertain or inform Bitcoin people around the world. \n\nLove and sats!\nJoe https://example.com/ 18772 456507 456507.458209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9311005845515 0 \N \N f 0 \N 0 221070493 0 f f \N \N \N \N 456507 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451280 2025-03-24 13:28:06.705 2025-03-29 22:39:49.998 \N Day 260 of snailposting everyday 'til BTC hits $100k.\n\n...and 60 push-ups. (35 - 20 - 5)\n\n__@_'-' https://example.com/ 17094 451245 450971.450976.451241.451245.451280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.916249938885 0 \N \N f 0 \N 0 41185629 0 f f \N \N \N \N 450971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410517 2025-02-20 14:12:51.665 2025-03-29 22:39:47.602 Who are your favourite Privacy / CyberSecurity Youtubers? 🤓 Looking for suggestions of Youtubers to follow, who post content related to ~privacy / ~security / ~crypto 🤠 \N 2724 \N 410517 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.23941292226533 0 \N \N f 0 \N 0 153404156 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 82141 2023-11-04 05:53:00.265 2025-03-29 22:39:47.602 What does Oppenheimer teach us about CBDCs? _This is a repost of my [first post ever](https://stacker.news/items/227606) on sn. I wanted to give it another try because I didn't have any visibility here then, didn't know how to use markdown, and put more work into it than subsequent posts. Now that I know what I'm doing, I'd like to get back to writing like this more. Hopefully you can share this with (or are yourself) a non-bitcoiner. I'd love to hear your thoughts._\n\n# What does Oppenheimer teach us about CBDCs?\n\nDo you remember where you were when you first heard the acronym MAD? I first heard it when I was a teenager on a trip to the air force academy and we were afforded a tour of NORAD[^1]. My memory is a little hazy on the details, but the most interesting part was when an instructor came out and explained a nuclear war scenario to us. He gave us a vague idea of where all the US nukes were, then a vague idea of where all the Soviet nukes were. After this, he told us what he’d do to confirm the Soviet nukes were in the air before launching ours to all of their major cities. The end.\n\nHands went up. We wanted to know what would happen next. How would they shoot down the enemy nukes? How long would the war last after the first shots were fired? Why target civilians? This was when he told us about Mutually Assured Destruction (MAD)[^2]. Nuclear attack in the Cold War era wasn’t about winning or losing. It was about making the consequences of war unbearably devastating for all parties. The logic went that reasonable actors would therefor avoid kinetic war altogether. For the first time in my life, I understood the true reasoning behind the nuclear race in the cold war. Of course, the biggest catch in the system was that all parties with this power need to be assumed to be reasonable...forever.\n\nOppenheimer[^3], this summer’s blockbuster biopic about the enigmatic physicist behind the atomic bomb, explores his moral concerns with continued nuclear arms research after WWII. The film dramatizes both his personal and political life and the ethical questions surrounding each of them. The most interesting theme for this writer was the paradox concerning Oppenheimer’s devotion to creating a weapon of mass destruction for one war, and then trying to stuff the genie back in the bottle before the the next one broke out. Fortunately, that hot war hasn’t come yet, but Oppenheimer didn’t accomplish his latter goal and we’ve since developed nukes that make the a-bomb’s mushroom clouds look like the mushrooms from Super Mario Bros[^4].\n\nThe film highlights Oppenheimer’s Jewish heritage and his personal convictions concerning the rise of Nazism. With all of the other moral ambiguity, it portrays him as having deep integrity in this regard. However, once that threat had been neutralized, he begins to see more clearly the significance of this new category of weapon. Oppenheimer, or at least the Oppenheimer of the movie, grows to understand acutely the immense burden that now lays on all future generations. Each new nation or other entity that developed nuclear weapons was another trigger-finger on a potential apocalypse. Of course, this could also usher in a new era of threat-induced peace so long as all parties remain reasonable...forever.\n\nThe dropping of the two atom bombs was horrific. Even so, the weaponization and bureaucratic manipulation of money that exists around the globe today produces more death than the combined total of these two bombings[^5]. Millions of central and western Africans have been robbed through the debasement of the CFA franc by the French government[^6]. The physical violence this has inspired is incalculable. Thousands died in the Arab Spring. The violence was itself inspired by economic hardship in the region, partially a result of the 2008 bank bailouts[^7]. Local inflation in countries like Venezuela[^8], Zimbabwe[^9], Turkey[^10], and Argentina[^11] results not just in poverty, but in a significant drop in health care and education and a corresponding rise in violence. The weaponization of money and resulting inflation after WWI is even seen by most scholars as a large contributing factor to the rise of Nazism for which Oppenheimer was working against[^12]. Using this same inflation, the richest and most powerful are able to actually able to further enrich themselves through the Cantillon Effect[^13]. More overt weaponization exists in political sanctions, sinister a way to declare war on the civilian population of a country without declaring war on their military. Sometimes, as in the current case in Myanmar, these sanctions hurt the opposition groups more than the actual government that is being opposed[^14].\n\nWith all of this in mind, adopting a currency that the government, a corporation, or a single individual can control by the click of a button is arguably one of the most dangerous threats to humanity’s thriving. Whoever held this power could decide who is allowed access to food and who is not. They could decide how long or how much you were allowed to save before it was deleted. They could monitor everything you bought and everywhere you bought it. I’m talking about a Central Bank Digital Currency[^15] (CBDC).\n\nProponents argue that these concerns about abuse won’t be problems so long as we can trust those with the power. Basically, they are counting on either their allies to remain in power, or their detractors to be ethical enough to refrain from the previously described activities. So with a CBDC, “democracy” can only exist with a uni-party system or the ability to elect perfectly morally upstanding leaders...without a single exception...forever.\n\nBitcoin fixes this[^16]. Unlike nuclear bombs, a CBDC can’t function without widespread adoption. You and I will ultimately determine if this technology has any power. Fortunately, we have an alternative. Bitcoin does not have the power to stop you from buying groceries. No one can debase it’s value from a foreign or domestic state. It requires no extra fees for cross-border payments. While weaponized money may currently be responsible for more death and suffering than nuclear war, we now actually have an armor to protect against it. I only hope that by the time they make the movie about it, we have chosen the happy ending.\n\n[^1]:https://www.norad.mil/About-NORAD/\n[^2]: https://www.livescience.com/mutual-assured-destruction\n[^3]: https://en.wikipedia.org/wiki/Oppenheimer_(film)\n[^4]: https://www.youtube.com/watch?v=fs1CIrwg5zU\n[^5]: https://www.newsweek.com/how-many-people-died-hiroshima-nagasaki-japan-second- world-war-1522276\n[^6]: https://bitcoinmagazine.com/culture/bitcoin-a-currency-of-decolonization\n[^7]: https://www.aljazeera.com/news/2020/12/17/bread-and-gas-economic-boost-needed-after- arab-spring\n[^8]: https://www.bbc.com/news/world-latin-america-46999668\n[^9]: https://www.voanews.com/a/africa_its-nightmare-zimbabwe-struggles-hyperinflation/ 6177373.html\n[^10]: https://www.economist.com/leaders/2022/07/21/lessons-from-turkey-on-the-evils-of-high- inflation\n[^11]: https://www.bbc.com/news/world-latin-america-64960385\n[^12]: https://www.britannica.com/biography/Walter-Simons\n[^13]: https://www.adamsmith.org/blog/the-cantillion-effect\n[^14]: https://bitcoinmagazine.com/culture/myanmars-exiled-government-needs-a-bitcoin-bond- strategy\n[^15]: https://www.cnn.com/2022/03/11/tech/us-digital-dollar-cbdc/index.html\n[^16]: https://bitcoin.rocks/ \N 21523 \N 82141 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6342532165101 0 \N \N f 0 \N 0 219576667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458214 2025-03-29 05:43:04.521 2025-03-29 22:39:49.989 \N The user @darthcoin has way to many guides from wich you can learn a lot IMO, he is active here to most of the time, though I dont know if I've @ him correctly.\n\n- https://darthcoin.substack.com/p/lightning-routing-fees-experiment https://example.com/ 20222 457041 457041.458214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7390208876454 0 \N \N f 0 \N 0 105289149 0 f f \N \N \N \N 457041 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437877 2025-03-15 00:17:46.647 2025-03-29 22:39:49.989 \N Hey Tony! Love the probing work you are doing. Are there any visualizations or graphs that are created on top of the raw data? (asking for a friend 😈) Could be a cool graph on https://fred.stlouisfed.org/ https://example.com/ 5425 437875 437233.437495.437874.437875.437877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4492127627753 0 \N \N f 0 \N 0 180587231 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416915 2025-02-25 23:08:59.034 2025-03-29 22:39:49.989 \N As a UX designer by trade and a newcomer to Lightning, I cannot agree more about the UX being a huge barrier for newbies to move towards non-custodial solutions with Lightning. Two big issues come to mind when I think about improving the experience of using Lightning: running your own node and channel payments, which is mentioned in the article. \n\n\n### **The current experience of moving funds**\nMost people are used to using apps/services like Cash App, Zelle, Venmo, PayPal, etc. where the UX is fairly simple. Find the person you want to send to (usually by username, phone number, or email), enter the amount you want to send, and hit the button. That's it. \n\nI'd wager no one really knows about the technology that's under the hood that makes it happen (hell, I don't either lol) but it works and they don't question it. The majority of other cryptocurrencies operate in a similar fashion where you enter the address, enter the amount, and hit send. The technology is invisible and isn't really discussed, unless you're actively working on it or you're just super curious about it. \n\nMy initial experiences with Lightning were using Cash App's and Exodus's Lightning features, so I always thought Lightning functioned similarly to on-chain BTC and that at least Exodus's Lightning feature was non-custodial. But once I took a deeper dive, I discovered that I was completely wrong. \n\n\n### **Non-custodial = running your own node**\nYou're 100% right in that it definitely takes some tech-expertise and some enthusiasm to set up and run your own node. I do have a Raspberry Pi that I like use to tinker with, but I do not have a strong development background. \n\nWhen I learned that true non-custodial solutions required running your own node, I was already put off a little bit. I understand that there are solutions that should be easy to set up and even run on my Raspberry Pi, but I really do not like the idea of having to make sure I understand how to set up everything properly from the beginning and also how to troubleshoot any issues. \n\nThat's a huge part of the reason why I'm using Alby, Cash App, and Strike as ways to partake with the Lightning network. \n\n### **The mental model of channels**\nI tried using Electrum for a bit since that's the OG wallet that everyone seems to love. The UX is obviously not as up to snuff as other wallets, but I didn't have any issues for on-chain BTC payments. However, setting up Lightning was a different story. \n\nIf I recall, Electrum had a sort of Lightning node solution you can use (I remember looking up what trampoline meant or something), but I had no idea that you had to "open" a channel first by sending sats and that also dictated the max amount of sats you can send to that specific channel. Definitely lots of confusion/frustration and I ended up just closing everything and moving all my funds out of Electrum lol. \n\nIt just didn't make sense from a UX perspective that in order to send a specified number of funds to an address, I had to first open a channel with the same amount. The whole mental model of this still baffles me, and it's hard to justify how this makes sense from a usability perspective without having a deeper understanding of the technical reasons. \n\nThere are apps that handle channel creation very well by keeping it under the hood, such as Phoenix so maybe this isn't as large of an issue. Electrum is a wallet for people who have a technical understanding anyways. \n\nPhew, I wrote a lot. Regardless I am excited to see more non-custodial solutions in the future where everyday folks can jump into Lightning with both feet. Having a good UX increases accessibility which in turn creates adoption. https://example.com/ 632 416857 416158.416199.416850.416857.416915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0644522255973 0 \N \N f 0 \N 0 197262304 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416927 2025-02-25 23:13:05.946 2025-03-29 22:39:49.989 \N When the iPhone came out people became millionaires with a flashlight app. With chatGPT somebody will invent something remarkably simple, hook it up to a chatbot and become filthy rich. https://example.com/ 1564 415766 415637.415766.416927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9837600638859 0 \N \N f 0 \N 0 177212850 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410532 2025-02-20 14:19:14.513 2025-03-29 22:39:49.989 \N Thanks to your eloquence on this, I borrowed your sentiment and filtered it into a poem\nhttps://x.com/stacker_news/status/1843296060451791275 https://example.com/ 14271 410512 410237.410512.410532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.97149664858362 0 \N \N f 0 \N 0 14361843 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455485 2025-03-27 03:41:37.289 2025-03-29 22:39:49.989 \N ![meme-hat-stacker-news](https://m.stacker.news/26709) https://example.com/ 1469 455422 455422.455485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.52846860116175 0 \N \N f 0 \N 0 162040607 0 f f \N \N \N \N 455422 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455449 2025-03-27 02:47:39.566 2025-03-29 22:39:47.603 SN release: gently personalized feeds, self-destructing items, text on links ... For in what feels like forever we have a new release!\n\n1. gently personalize feeds\n - I say gentle because the effect is really subtle\n - most of us will see the same content but it'll be ranked to suit your zapping preferences ever so slightly\n - this will be an active area of development for a long time ... this gentle version is just the proof of concept\n - this was required for my user generated sub plans\n2. self-destructing items *via @WeAreAllSatoshi*\n - if you want to auto-delete something you can tag the @delete bot and it will delete it for you\n - ` in 1 day`\n - it works for multiple time units: seconds, minutes, hours, days, weeks, months, years\n3. add text description to links now if you open 'options' under a link post *via @rleed*\n4. set a default max fee for withdrawals in your settings *via @rleed*\n5. transaction details (preimage, payment hash, etc) *via @WeAreAllSatoshi*\n6. unsubscribe yourself from your own posts/comments *via @rleed*\n7. for links more than 1 year old, when we auto title them we now also add the year to the title *via @rleed* \n8. 🚨 new contributor alert [GxqoRR on github](https://github.com/GxqoRR) added youtube embeds to discussion posts and comments\n\nThere were also many bug fixes that nearly everyone forwarded contributed to. I'm already noticing a few bugs from this release but if you notice anymore, shout! \N 2000 \N 455449 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.4184878194054 0 \N \N f 0 \N 0 156187754 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404376 2025-02-15 20:25:52.79 2025-03-29 22:39:47.603 Muun Wallet is broken, thanks Udi. I didn't pay much of attention on the fact that Muun didn't support LNL Url or haven't been adding much features. Guess this was a symptom of what to come. \n\nI am not going to explain much about why I think the wallet is broken. Pictures are self-explanatory.\n\nHere Is the track record of many many LN TX tries during the last couple days:\n\n![](https://lh3.googleusercontent.com/OoPqa3WBZdD2VRTJ8SK1eKX5uF30gATXCBFWWnsE6bCSH7YWIQz9xet4ah2xq86uqoY4NgK28uO4itjPC0w0sGesrNR0bA3RXBSbW3oApOXcLjiSFnD6x5IH0pP9WdcVmh2gG7qxMjkMx2NbOhgCJObKyfG0QR2Qkw87vEFSYVL6X8HeO4P9X7cX6PiAKkUFftdlGIiTJjg98RczkbjV6evQRAzJug_otFWW3llhLGMarM_cPdiwEjQls-dklYcnWeZFll9t77QT1G7YnFhno9aDsH4Y8hLp9L6GOqVw242ZNijX6ceEasI9Rk3a5gKkn0ntPkKORL1x5wCq72QvHQvV54a3snnPcEPK_QV-Tl9YTorM8SOm3mUCexEUximsH1saGt9aaNRmwSRIDuHdB49bvCS9cGmt5SvvnXJByB1f6drDq89qq0V0UgcW3P0pLO1WZPcJYTBwjx5j9Bq5CHxo2uDhZIC9z8-RwEyXvGq51lJb991otbspIIR8EtwmPgn_oxricpU8wgfsY8uLQtINrD08xZhPLGbh_rKYoHuDqfNQOshTQ5MhQP1G4smESXNi7iRQE8BTIdSCYzXf-xI9roGvgzdvlRZVUVP79f56_YZZebO-_W_Y_w0LUD3mySU9FixoepVt2K_1O5P5mNiXAZsiXX7MW6zOZ4RUyZCFIDXOuU5d6hezoA8Fs2zpPRpdpc0IF-lh_xQbNzJG9kZfGPQZgjaTgOu2rptmpWmwmG4Oeh_a05eaIIq0AlJHyL4aKkpqrVS8AsP55Y0RVbMPHIcnHEI_Me2dp1fgH0CBXAd66Wo8FbEhGODFh1U2ai6K-gAYMvaFWImtr6YpQQdu69YNGApk3vwszbG_yQb4Sv-hmrHUCmqieZ4_2oUGR6pxoV8tK4zTP43yMYf0bF78SmaiVhQCWwwrTkOgR7uSPw=w401-h656-s-no?authuser=0)\n\nIt's important to note that LN fees charged by Muun for transaction beetween two muun wallets reached up to 22k Sats even when onchain prices were below the 200 sat/vbyte or less. \n\n![](https://lh3.googleusercontent.com/ezXEaJ5ckR3V0zJxElTGrgqukcL4jOG-yO8eZygXTtXmh0r7ZjBZmuTFqhoVa0pJL-ftTUsP4bbn7N475mOudB1KLbvfQl-qecYPem41moGfqJ64trqrOtvw9GLKwJ19ljDBneoGRfrigcC-42015UIIB16K6mcucpBcEkavJ4zvcwpLFJBbmKbE7tJ74BzS4YCVX_Ta_DIeDKT4iMAy-VB6geElIrvh6-5sGNODJ-VV6Y21-sQ-Z8qTDqkgP4MFf4KXWF8JcFgWnW5S2fW3TAZ8HtyObfNHHNCQvlDQcCVd-qApAYbmZTomixJXyrugFumqxXJxtnmMdLbvwdz4tE0inqPJ-mKMaM4iNIPTAH6gtvQsRuJNpHjFIzlbDJM__Q2uONiAsK0gXiEnTjgPUUip1F5RyOqBAttN2BOBXqPV6KA0lfle148014adHq3uh1nHzKN_x6N8J1hjyO763bu9EDL4nlqV-1UlSL6Biu-Ud8VHhUPbno2fkzxhbhOBusHg67bDwwLxvnqEk9VCVq3qRsEcjPGvJkndkJ0-9jjJVfsgfr8tRIieMUVBMbgIrKZ9xud3lDaION9ytmtIjDYb6SbuL-yr1IFddbca3LL_GN_aJAM3zQN_Q4tcF8v0N-8gzzCi3IOoSPanOrd3XCPxYA7hV9a-AgK0BV5oivC1kPjFs93JNZmDBIhpf3PeVb11lLaHKNcoAqzB4W5qyePRE3pGMv3ahvg-BdBXQ6U5-h_Bmd4TMQXL86O72RmJ2UXVtJmp_EIoVwx-1edv98Rw6C7O8W0hFWfabiOcB2twIetVJw-xDI_AyPoxp2kUy0bOG9_NHGkLfFaRqOM5vXJFofQwnC9abrCk082qxmO3muKWM3SpOu3RTNwHaFir9fVYKq6dGinDDmiaM9gbj3ICmk3d8cWp3Oq962JPiXdRUQ=w434-h656-s-no?authuser=0)\n\nanother example here:\n\n![](https://lh3.googleusercontent.com/5z3d6Y6iODsoN8iYj0YRGY-jXM9kUUWx3-PKfZL610CqIH6Holmb4id2qxADHH7Dyg6G4jbHo85ylRy7b09jj4rGmbcsQU0-7Yj34x_mYitdaUsOt6k6R_9LKDAXebh-E3q2R1uK_LNJZYf5Cp3JCzvOUnShdJeqd5QJKkKTn838ykunUeU65BtNW9OEdcq9bvJQwNVEVAkJK9ZU3Px4TUYb4cHQ9Envavl_9_rnBS9WUM3hCARjf1CTvtANVzS6L5Me3CYCB0EOhbh0E4jKWyuDhDbjv8e_roIpOLUPCEonsDyTIUfd7P_W1nKD9UWvTKGW362A7JHkf75VjFK1Rw_qMnPcaJ8ldPTZdpn-NejhUjuK4JAHgBfZOnWY5r1V7zsV8FY5v3ti5uRuGbAd8BRYyn899n2ZHdqmT0MGAHvgwFh-5pU1_kcgdARadVabfNG-tpf6FI5VEMGEIyAmW_OnAyuITc3tnb5j3wv3VqjjpZgx8VQYWKvPPXuw9yVS7t3o06DW7hJZSlq2O4UyP6xgT-Y0_H6uXXhEyFzB36VuZQc0am03Qrvn2faCNLvqzrE2hGp8vS2KyZ6jamjqAYD0fxoV-rl8KN0eo4-B889HwmEk6DPAiAyAwVTISutINJeGY5miSikBBnRuESje_LXQvhS7P4UudTLfnUkQJXQqXetO1HxVCaA9b6BxPDWvevbFUs1GVF8lGqvdpH4CJ15UhBHcr00t3Yu9s4Y2PuEVi5vvx4rxrh8d1kEyJRS18D_6y4ab0sZzKYA4rFADQuR7ikimrpFFBooAW1Xi_NUVMU3Iz8nbGi9Ow_Pq4N_38fYo3VnptL0V5XO7tebFQx5vCN0MghEH9c6p1HA9PNGs3gcCFslwWUmyMPDThGjTsZA6muT4fuajn7189wBdoLpNiQUHI7lz0yuTEDVIZHW23Q=w704-h656-s-no?authuser=0)\n\nand here what mempool was about at the time:\n\n![](https://lh3.googleusercontent.com/6gK-eQvxMauja_M7Q18sjShMwzL1rp5t5Hkw-I1xGBIJ9AtDaw7UYMI6mTs2o4EUQpIKStCQtIb1SwO0dIjZiPSNf7hx3qTB2c0CMWosFqBO4t-jCl3DRSab4vxykTT9BXl9WB5ZOrseklYAzSyVI9YbmmWrSoHfF1UH_HXcXaSogeTfnOODpwPZwUKFM5jw1D8hzm4N1neZyrV45z7MjroX7ti0Q-LCVVv4eEpOMkaN4kYktSHBGZPJ3OrLTmJmYdRWoUswQtOua8-9aSv1Ccs5dtZgk5L44g8pYYLwAbFsnKozk5IgY4jfE_VrXnsFFmXwGdn6Al3toHPfMXMhI9PbeOeuhckl0k7QGXHT7wuEVQP0E6_ReMWGOyfKbAkrlG5PdU4uwDfvg9iA3eH80_q-FAYxOKdHUX43n7Pa2TOiH78v7bGYV_Nl7N5r70APIX8QHICOLuVh_RYoY8tznRYU8Njh91AJr_c1u_ILJ5xEyjfHQxaCFjHFz5Mfx4t3SNow4LCdBHn3UYs1N_WZKftpDIYAu6kcOs_bjlzA5TWJ0CAIciENG-fAday4t2dQi-wGR_uulyRqnCzgejdBD8XGr2Gk0Lt94XaBf6tuQZSOPFC4VmD7-jbJqDZaaNkVdIiDTVq8yNwaLskvGqwJSEByNK6vmOgAI0lmE7nyGt8pd_WA_0ppjZqtvEFhqjcOc18ZQlDBS8wxaCQklhhdJpgGs7Okd4Gb6kF9N82-qZd1R6H-KDaeXGDJNZjpPab63RJ_9r7v0rj0I5swiWjYY9kehWru9V8LqhH4FddRjZFIh3qBklLr1YDeYZcyMO400qlAXUWdLRgKmEI6QGyNXxTsPSaldOYeo30LaLaPr70AqYZJZOdW2tPIGA5Kgf6tzgzR6zGV7gdiuiYdntwUaV3V5FiWx6a4xlY7Tpmp0KumhQ=w492-h656-s-no?authuser=0)\n\nAlso on a side note, During Monday early AM I got a transfer sent from a Muun onchain address to another Muun onchain address. Fee at the time was 33 USD BTC originating from one address, I kept searching the mempool for the TX to appear it wasn't until the next they Muun posted the signed TX. If all this doesn't look like broken to you.. \n\nThe thing that I hate the most about this is that I really shilled Muun to many many ppl I orange pilled. Of course this ended today. \n\nI can get that a bunch of wizztards polluted the chain and abused it to upload shit, I don't really care, its there to use it as long as you pay for it. I am glad they paid a lot of BTC since I am also a miner. BUT, for Muun not to be ready for extreme activity.. I can only thank Udi for pushing the limits and see exactly what happened with some of the apps we where using without questioning if this was ok or not. \n\nAny similar experiences? \N 3478 \N 404376 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.6104321476147 0 \N \N f 0 \N 0 141264820 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444396 2025-03-19 20:53:47.081 2025-03-29 22:39:49.989 \N Have been making steady progress in my little cabin project 🙂\n\nI’ve had a lot of stuff to do at once during the last few days and didn’t really have time for my cell or laptop. Despite all the difficulties, I managed to finish the roof and cover most of the building with permeable membrane. I also installed some kind of rooftop fall protection with my slackline, some shackles and carabiners 🙂 (top of the roof is nearly 4 meters high)\n\nAnyways, here’s some photos from the recent days :)\n\n![using slackline as safeguard](https://i.ibb.co/DQ3brpw/using-slackline-as-safeguard.jpg)\n![covering the cabin with membrane](https://i.ibb.co/bzgbyvK/covering-the-cabin-with-membrane.jpg)\n![covering the cabin with membrane](https://i.ibb.co/9htt9fL/covering-the-cabin-with-membrane-1.jpg)\n\nToday I’ll work on covering the remaining part of the cabin with the membrane.\n\nHave a good one ahead!\n https://example.com/ 16387 444314 442820.444314.444396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2591883057118 0 \N \N f 0 \N 0 41098904 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404414 2025-02-15 21:15:20.725 2025-03-29 22:39:49.989 \N This could use a short video with a demo! \nIt's hard to understand what is NWC and how does it relate to SN. https://example.com/ 20120 404408 401611.401671.401726.402847.402936.404408.404414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4986574061226 0 \N \N f 0 \N 0 90689958 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456533 2025-03-27 16:51:43.531 2025-03-29 22:39:49.989 \N Take these few sats to motivate you, but note that I will be down-zapping you furiously if I see more begging for sats and low-effort posts ;) https://example.com/ 18608 456495 456495.456533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.81585592843086 0 \N \N f 0 \N 0 120825482 0 f f \N \N \N \N 456495 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 95438 2023-12-06 16:49:29.438 2025-03-29 22:39:47.603 Do you have children? Do you have children? Is there anything better? \N 18177 \N 95438 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.0572555552681 0 \N \N f 0 \N 0 90002751 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410438 2025-02-20 13:33:46.139 2025-03-29 22:39:47.603 SilkyNinja’s guide to fairy tales About five years ago, when I embraced a deep-hidden desire of mine to be a fantasy writer, I found the book *The Uses of Enchantment* by Bruno Bettelheim at my local library. The major thesis of the book is that the fairy tales that children are drawn to reveal and resolve the psychological entanglements that they already find themselves caught up in. I like to extrapolate this to saying that the stories _we_ are attracted to represent our psychological entanglements. When we boil down the story to its essence in the form of a fairy or folk tale we can choose to consciously grapple with its themes and see how they apply to our lives[^1]. \n\nHowever, in the spirit of “How do we improve our culture,” an astute reader might also be interested in what stories are most important. If we read Aristophanes’ *Frogs*, we might prioritize stories that provide the most practical advice. Keep in mind, this post is about what I think.\n\nWhen I was little, “The Princess and the Pea” was a story I came back to again and again. At its core, the message of the story is “If you tell the truth, even when it’s uncomfortable, you can live happily ever after.” This is reflected as a high feminine[^2] virtue across classical literature; I find it a lot in Shakespeare’s comedies. \n\nOne of Bruno Bettelheim’s exemplar stories is “Jack the Giant Killer.”[^3] He describes it a bit as the story to resolve the Oedipal complex; however, I like this story because it describes that a young and naïve hero can overthrow a tyrannical overlord through his cleverness - he can even inherit the treasures of the giant so long as he looks out for his mother and saves the princess. More plainly, we can interpret this to mean, “You can overthrow tyranny and inherit its treasures so long as you defend those who cannot defend themselves.” It’s my belief this is one of the most essential *masculine*[^2] virtues of western civilization. \n\nIn my travels, I’ve also come across a story type sometimes referred to as “Simpleton” stories. “The Golden Goose” is a great typical example of this tale: a young idiot, literally, the stupidest boy in the whole world, embarks on a quest. He is even put at a disadvantage by his parents who care for him less than they do their other children. However, because of his pluckiness, his kindness, his courage, and his generosity - he too rescues the princess and even becomes king. \n\nHow does he do this? Simpleton, out of the kindness of his heart, shares what can with strangers: including those outcasts on the fringes of society. The strange gray man in the forest turns out to have great magical powers…and so the story goes. *The Wizard of Oz* is technically a Simpleton story. \n\nThere is one story on my mind lately, “The Giant Who Had No Heart in His Body” which combines elements of Jack and Simpleton in the form of Prince Boots, who goes on a quest to save his brothers from the giant. There is a rather hilarious moment in the story in which Prince Boots comes across a wolf dying of starvation. The wolf begs Prince Boots for his horse so that he may live and promises to repay Prince Boots. Prince Boots, exasperated after giving his water to a raven and his food to a fish, finally concedes, not knowing what else to do.\n\nThe wolf, it turns out, is the only creature in the forest who knows where the giant lives.\n\nSo what can you do with this? I don’t know. I could tell you what I do with these things, but that’d ruin whatever mystery there could be out there for you.\n\nThanks for reading. \n\n[^1]: Bruno Bettelheim's suggestion for parents, however, was to instead simply *read* the story the child was fascinated with again and again until it psychologically "clicked" for them. \n\n[^2]: "Feminine" and "masculine" here are used in the psychological or postmodern sense: It is not only a virtue for women to tell the truth - obviously. But it is an actionable virtue we can practice especially when we must play a more "passive" or "receptive" role in our life's events. Because truth-telling is not a passive act, however, we cannot call these passive virtues, and so "masculine" and "feminine", in my opinion, are far more fitting. Similarly, not only can men overthrow tyranny and defend those who cannot defend themselves: to do so is, however, is considered more active. I muse for a moment that writers today may subconsciously struggle with writing stories with feminine heroines who pursue a more "active" or masculine hero's journey: perhaps the major reason why *The Hunger Games* franchise is so wildly successful. \n\n[^3]: His other was "Little Red Riding Hood" - which is an important story, but, in my opinion, it does not actually demonstrate sufficient actionable virtues on the part of the hero like "Jack the GIant Killer" or "The Princess and the Pea." It teaches instead *cautiousness* and *discernment* as virtues. \N 787 \N 410438 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 7.54195875757603 0 \N \N f 0 \N 0 152134944 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437689 2025-03-14 18:49:35.588 2025-03-29 22:39:49.99 \N lol, another proposal right here on SN -\n\nn3xB - naive Nostr no-KYC exchange for Bitcoin\n\nhttps://stacker.news/items/165199/r/02ad8239c2\n\nHave no idea how the Nostr stuff will affect design, or even user experience, but it'll be interesting to watch how competing approaches fare, and produce better tools and services in the process.\n\nThe Shocknet team's Lightning.Pub is a good example - they don't like Bolt12, or at least, they don't like the onion messaging it uses, and openly state this as the reason for pursuing the Nostr based approach they're taking -\n\nhttps://twitter.com/CapitalistDog1/status/1589643336146915329?s=20\n\nFor them, Nostr is a solution to the problems they see with LN tooling presently -\n\nhttps://lightning.video/9b14562b95cc6ff50b92d7720286b417c1802d5f96e82022c28eb1340ccfd012\n\nhttps://lightning.video/f0f64fa1fc3744fb6a3880e2bd8f6a254ceb3caee112d9708271f2d6a09a2f00\n\nI don't have the chops to credibly assess their claims, but appreciate the work being done will ultimately help push things forward. https://example.com/ 17714 437685 437276.437685.437689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.7131776776481 0 \N \N f 0 \N 0 22051319 0 f f \N \N \N \N 437276 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444468 2025-03-19 22:48:06.792 2025-03-29 22:39:49.99 \N Here was my first answer, which I now withdraw:\n\n_Pick something on purpose, focus on it, and have a tangible output in a finite time._\n\nHere is my official answer:\n\n_Talk to lots of different kinds of people from every place and all walks of life, and think about what they say._ https://example.com/ 21405 444087 444087.444468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.41639891289693 0 \N \N f 0 \N 0 190327964 0 f f \N \N \N \N 444087 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408236 2025-02-18 16:40:20.932 2025-03-29 22:39:49.99 \N This should be what is needed to enable PWA:\nhttps://gist.github.com/dtonon/f8ef73f2a11d26b2cd63d3b0310f7ee6 https://example.com/ 20439 407918 407918.408236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6026071780199 0 \N \N f 0 \N 0 20554316 0 f f \N \N \N \N 407918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408234 2025-02-18 16:39:22.503 2025-03-29 22:39:49.99 \N @k00b @ek\n\nFYI when I did this poll https://stacker.news/items/457470 I got an error message that said polls must end at least 1 day in the future. I went back and checked options which showed the date automatically populated March 10 12:30pm but I still got the same error message so I manually changed the date to March 11th and it worked. However the poll is now showing 1 day left so I think there is something buggy about your auto populated date. Just letting you know. https://example.com/ 16356 408227 407970.408227.408234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4857286348172 0 \N \N f 0 \N 0 22087941 0 f f \N \N \N \N 407970 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 95692 2023-12-07 03:51:16.099 2025-03-29 22:39:47.603 The Modern Times Utopian Community And Proof Of Work ![](https://m.stacker.news/49441)\n\nWhen my mother was a kid living in Brooklyn, New York, she would spend a few weeks during the summer in Brentwood, Long Island. Her Uncle Jack and Aunt Rose had an acre or two of land where they raised goats, chickens, and rabbits. They also had a large vegetable garden. My mom loved leaving the city and spending time out "in the country"\n\nWhen I was a kid we would occasionally pay a visit too. Uncle Jack had suffered a stroke and was really a sedentary, silent presence by then, but Aunt Rose was still an energetic host, cooking Italian favorites and pies. I enjoyed playing with the few rabbits she still kept in Uncle Jack's hutches. \n\nI didn't know at the time that Brentwood was originally founded as a Utopian enclave called [Modern Times](https://en.wikipedia.org/wiki/Modern_Times_(community))\n\n> **Modern Times** was a Utopian community existing from 1851 to 1864 in what is now Brentwood, New York. Founded by Josiah Warren, the community based its structure on Warren’s ideas of individual sovereignty and equitable commerce.\n\n\n![](https://m.stacker.news/49443)\n\nIt was a strange place, sort of reminiscent of the hippie communes of the late 60s and early 70s. Self sovereignty ruled. There were no laws, rules, marriages, or conventional money. Josiah Warren, who grew disenchanted with socialism because it failed to respect private property, came up with this notion of money:\n\n> He believed that goods and services should be traded according to how much labor was exerted to produce them and bring them to market, instead of according to what individuals subjectively believed them to be worth. Therefore, he proposed a system to pay people with certificates indicating how many hours of work they did.  They could either exchange the notes at the local time stores for goods that took the same amount of time to produce, or they could exchange their labor notes with other residents for an equivalent amount of labor.\n\nSadly, the community failed. Still, I was fascinated by this quirky commune long before I discovered bitcoin. I'm not sure how strong the analogy is, but I now feel that his ideas of self sovereignty and "proof of work" do echo a sort of pre bitcoin philosophy. \n\nMaybe it's a reach? You can read more about the community here:\n\nhttps://www.archivebuttons.com/articles?article=https://www.nytimes.com/1989/07/30/nyregion/legacy-of-modern-times-an-li-utopia.html\n\n\n\n\n \N 21379 \N 95692 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.7915826761298 0 \N \N f 0 \N 0 58127788 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441637 2025-03-18 07:59:00.219 2025-03-29 22:39:47.604 What if we're wrong? Some people will say I'm spreading FUD or shitposting. Thats okay. I just like to look at things from every possible angle. Thats what a realist does.\n\nBut what if we're wrong on bitcoin? As in, in the end, it just doesnt work out, gets "banned" or co-opted, or people just get lazy and stop caring? \n\nI see the issue of people turning their brains off being the most concerning. Getting comfortable with being surveilled, getting cozy with digital dollars. "Just watch netflix and dont pay attention to complex things like money and financial systems, pal. Heres a $10,000 stimi."\n\nAnother concern is hopping onto the next thing. Everyone had a radio, then they bought walkmans, and then ipods. Or more applicable to the internet space, people started off with friendster, then myspace, then facebook. What is "beyond" bitcoin?\n\nI'm personally in this community for the long run. I'm just not sure what direction other people will go. Or if we're just waiting until the next big thing comes along. \N 14990 \N 441637 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.2058257863535 0 \N \N f 144985107 \N 1 146202540 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402212 2025-02-13 16:02:31.835 2025-03-29 22:39:49.991 \N i know how frustrating when work with apple store....\n\nIt will cost more time than writing code...\n\nWhen submitting Bsats to apple store, I cannot dare to mention it has login feature.. otherwise it will force you to implement sign in with apple... https://example.com/ 20337 401702 401702.402212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4071084250245 0 \N \N f 0 \N 0 239944504 0 f f \N \N \N \N 401702 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451283 2025-03-24 13:29:35.838 2025-03-29 22:39:49.992 \N use cash as much as you can, everywhere you can\n\nit's a moral obligation\n\nif we don't INSIST on cash (or lightning), we are all going to become slaves to the banking elite\n\nfact. https://example.com/ 21600 451256 451244.451256.451283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4460307263067 0 \N \N f 0 \N 0 123782821 0 f f \N \N \N \N 451244 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408272 2025-02-18 17:02:29.721 2025-03-29 22:39:49.993 \N Day 342 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 16970 408212 407903.408212.408272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7047643950384 0 \N \N f 0 \N 0 41789205 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456708 2025-03-27 19:38:32.441 2025-03-29 22:39:49.994 \N I feel like I’m in the minority, but I value people sourcing high quality links. Starting a discussion around them is more valuable but nothing is preventing that, so I’m not sure what is being proposed. \n\nDo we want to require people have commentary on something they share? How do we enforce their commentary is coherent? Voting? Isn’t that what we already do absent the requirement?\n\nThis feels mostly like an education thing rather than a law we should have. If we want the discussion we should start one or encourage the OP to start one … otherwise they’re already punished by you all not zapping it.\n\nSo questions …\n\nIs adding another form field to the link post going solve this behavior? \n\nIs the lack of this field what is actually preventing commentary or might it be something else? https://example.com/ 629 456419 456419.456708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9592958553904 0 \N \N f 0 \N 0 30378930 0 f f \N \N \N \N 456419 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423014 2025-03-02 21:29:18.007 2025-03-29 22:39:49.994 \N It's been really obvious to me since 2007, that in order to scale, an onion routing network needs to pay its routers. This is why I'm building [Indra](https://github.com/Indra-Labs/indra/blob/main/doc/whitepaper.md). You can find me on old Tor mailing list talking about the crappiness of Tor for SSH and IRC as well, just search for "vennik". I have got some basic sponsorship to work on this full time and hopefully spiral.xyz will come through with some more. https://example.com/ 20337 422940 422894.422940.423014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.62351979673188 0 \N \N f 0 \N 0 199513712 0 f f \N \N \N \N 422894 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428779 2025-03-07 15:41:16.996 2025-03-29 22:39:49.994 \N We need to change how we think of internet privacy in general. \n\nAnytime you send any data to someone’s server, it could be made public or known to hackers or nation states at any moment. \n\nIf you send unencrypted data to a server, you are fully reliant on not only their willingness to protect your data, but their ability and competence to do so. https://example.com/ 4624 428774 428760.428765.428769.428774.428779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8032791128943 0 \N \N f 0 \N 0 9684150 0 f f \N \N \N \N 428760 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450036 2025-03-23 17:49:41.018 2025-03-29 22:39:47.604 UTXO.live - The daily price of bitcoin has a clear on-chain signal \N https://utxo.live/oracle/ 19189 \N 450036 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 23.3508997422472 0 \N \N f 0 \N 0 218857267 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456757 2025-03-27 21:01:57.558 2025-03-29 22:39:49.994 \N What do you see as the biggest risks overall in the space and also to individual portfolio companies? What have been your biggest challenges as an investor in this space? https://example.com/ 2502 456150 456150.456757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2733878934421 0 \N \N f 0 \N 0 43453714 0 f f \N \N \N \N 456150 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455565 2025-03-27 06:22:51.288 2025-03-29 22:39:49.995 \N Is it just me or is it always a surprise when an AMA happens? \n\nFortunately, I happened to catch todays but I usually end up noticing at the tail end. \n\nCould we possibly get an @sn post early morning the day of saying there will be an AMA with so and so at this time today? https://example.com/ 13574 455401 455401.455565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.72988318699343 0 \N \N f 0 \N 0 30609694 0 f f \N \N \N \N 455401 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444485 2025-03-19 23:19:37.104 2025-03-29 22:39:49.995 \N This wont likely be insightful either, I have not developed an Android app but GrapheneOS developers have commented on it a couple of times, like previous comments you're probably better off trying to make a workaround that doesn't call the Android Auto API's on their own?\n\nThere are some methods here but they all have some disadvantages:\n\n1. The safest method is you could use Play Integrity API to do hardware-based attestation. This can detect what is a stock Android on an OEM and aftermarket operating system like GrapheneOS as they don't choose to spoof these checks. GrapheneOS passes `MEETS_BASIC_INTEGRITY` but not `MEETS_DEVICE_INTEGRITY` hence why Google Pay and some banking apps does not work. Maybe it's worth trying? https://developer.android.com/google/play/integrity/verdict#device-integrity-field\n\nYou can also add GrapheneOS' keys to the app for that: https://grapheneos.org/articles/attestation-compatibility-guide\n\nThey also want to try and [pass device integrity checks in the future, however](https://github.com/GrapheneOS/os-issue-tracker/issues/1986).\n\n2. Apps can access list of installed apps on the profile if they are installed and the app is given the `QUERY_ALL_PACKAGES` permission, which Google docs call high-risk and has a lot of guidelines on how to use. I don't even think an app like yours [could meet the strict requirements anyhow](https://support.google.com/googleplay/android-developer/answer/10158779), seems to be just for podcasts?\n\nIf you somehow did meet requirements, maybe if you have an OS system app like `app.attestation.auditor` (GrapheneOS' Auditor system app) detected you can turn that feature off? GrapheneOS' Auditor for other devices uses the App IP `app.attestation.auditor.play` so conflicts wouldn't be an issue.\n\nHope you get some luck with this. GrapheneOS also has a matrix channel to talk to, maybe their development channel would be a good place to ask further questions?\n https://example.com/ 2326 444472 444365.444472.444485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7438606016891 0 \N \N f 0 \N 0 226931245 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444488 2025-03-19 23:23:29.328 2025-03-29 22:39:49.995 \N Anarchy means: without rulers, not without rules.\nPeople can agree each others without rules, based on direct agreements and common basic rules.\nBitcoin have very direct rules, without any ruler, so by itself is an anarchist protocol.\n\nSo yes, Bitcoin in the end will lead to an anarchy.\nAs I explained in one of my guides:\nhttps://darthcoin.substack.com/p/natural-law-and-bitcoin\n\n[![vader-sovereign-adoption.jpg](https://imgprxy.stacker.news/Dzvc6MKhuKbUU1O3PPoYJWvR5cl2daV6fYskyMR6iVE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvelgyWkRRRDEvdmFkZXItc292ZXJlaWduLWFkb3B0aW9uLmpwZw)](https://postimg.cc/vcnS336P)\n\nhttps://darthcoin.substack.com/p/how-bitcoin-will-save-the-world https://example.com/ 1549 444168 444168.444488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9757374829382 0 \N \N f 0 \N 0 95842244 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410503 2025-02-20 14:06:17.533 2025-03-29 22:39:49.995 \N The V4V I bring to the table is podcasting. I honestly love talking to people, and more importantly talking about things that I think are important both in the macroeconomy, but also in Bitcoin. It is what gets me excited each and every day. \n\nIt's something I love to do even without receiving money, but I want to quit my job and lean into this full-time so I can make the best content possible. \n\nI have almost 50 episodes now, and I will keep going several times a week! It's called SatsMate Show and it's on Fountain! Please check it out, and tell me what you think :). I'm always looking to improve and make better content.\n\nPodcast: https://fountain.fm/episode/s2md50iIWHuyA5HWcjIg\n\nProfile: satsmate@fountain.fm https://example.com/ 9921 407173 407173.410503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4748189906326 0 \N \N f 0 \N 0 48058430 0 f f \N \N \N \N 407173 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444476 2025-03-19 23:09:53.626 2025-03-29 22:39:49.996 \N 1. asymmetrical gossip, ie social duplicity\n2. the deluded or people seeking to delude \n3. [extreme askers](https://jeanhsu.substack.com/p/ask-vs-guess-culture)\n4. unconscious competition https://example.com/ 1741 443528 443528.444476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.96809648484606 0 \N \N f 0 \N 0 81491399 0 f f \N \N \N \N 443528 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422976 2025-03-02 20:31:12.456 2025-03-29 22:39:49.996 \N >What will be the role of government then; since there would be no taxes, because all transactions will be encrypted and anonymous.\n\nThis is a very annoying question and I apologize to you by starting out with complaining about it lmao. Back in the day (sometime before 1913) the government couldn't track every transaction on everything. Go ahead and read the stories of the moonshiners and take a trip into learning how people used to be taxed\n\n>Would it not lead to more corporate crony capitalistic bullshit, since the idea of welfare state would fall apart.\n\nCrony capitalism is companies lobbying politicians to make laws (typically to print money to bail them out or subsidize them which you can't do if you don't have FIAT) or to make laws that make it incredibly difficult for smaller business owners to compete. \n\nThis second problem is sometimes solved with (and I'm having trouble thinking of the word) unofficial market. Some might call it a black market but its basically people who know people who don't register as a business. \n\nYou may also consider the merit of "worker cooperatives" where everyone working in a company has some ownership of that company. Things to consider\n\n>Everyone (I mean every single human) would need to have a digital device to store, spend and earn bitcoins on. How will people at the bottom-most layer survive, who can not afford education, electronic devices etc. Some people and even countries depend entirely on cash.\n\nWe have seen what solutions have come as a result of this. Things like "Manchakura" (https://8333.mobi/)\n\nIn addition to this, I would point out that people on the bottom often survive on charity such as food banks (which are often stocked with food that is past its best before date, but that doesn't mean the food is bad its just it doesn't look at good on the shelf) So I would imagine a used phone market or charity that gives away phones people don't want anymore. I know that may not sound super idealistic, but that also means it isn't too hard to believe.\n\n>What about the unequal distribution of Bitcoins among humans? Those who joined Bitcoin early would always have unfair advantage over those who adapt it later.\n\nThis takes a very long time to explain. For starters, there is no "fair" way to distribute the initial supply in the way you would describe (everyone starts with an equal amount). The system has no method for ID verification (nor could it in a way that didn't involve ceding power) Bitcoin is distributed in the most fair way possible, which is by miner subsidy's during its bootstrapping phase.\n\nSecond, the amount of money you have is not as meaningful as its made out to be. Its your income that matters much more and killing the money printing means getting rid of the income people who are living better than they would be without it. (They will have to find a new income based on merit)\n\nThe reason income matters more than how much you have now, is 1. because if you spend what you have now, you extract goods or services now which may temporarily mean a lot of people would not be able to get those resources, but now that you've spent it, that disruption can adjust itself. 2. Even if you don't spend it, that doesn't matter because of something called the "velocity" of money. \n\nThis also plays into the theory behind the gold standard which was that countries would spend more than they earn for a while but then when they ran out of money began to serve the countries they purchased from in order to earn more than they spend in a nice self-balancing cycle. https://example.com/ 17316 422965 422960.422965.422976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2775020285618 0 \N \N f 0 \N 0 191319469 0 f f \N \N \N \N 422960 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458253 2025-03-29 06:25:12.782 2025-03-29 22:39:49.996 \N A defibrillator doesn’t actually 'start' a heartbeat but stops it. It is used during CPR when the heart beats irregularly. It’s basically the 'have you tried turning it off and on again' analogy in medicine. https://example.com/ 16789 458232 458227.458232.458253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.37855867960084 0 \N \N f 0 \N 0 117345564 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444461 2025-03-19 22:40:17.757 2025-03-29 22:39:47.605 Books And Articles Newsletter, Issue 13 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. Once again, thanks for all of the quality posts. \n\nThe big news this week is that @cleophas has begun posting his latest book, [The Final Product](https://stacker.news/items/512884/r/siggy47). It’s already obvious that stackers are enjoying this latest offering very much! In fact, chapters from this book accounted for four of the top five posts of the week. I will only post the most popular chapter to the list so that we can highlight other posts, but I have also included The Final Product in the Books index below. Congratulations to @cleophas, and I look forward to the rest of the book. \n\nDue to personal commitments I have decided to push back the next Writing Contest until later in May or June. For those same reasons, I want to let everyone know that next week’s newsletter will not be posted until Monday, though top posts will be decided as of Saturday morning, as usual. \n\nThat’s it for now.\n\nI hope everyone has a good week. \n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [Stoic Book Club: Meditations by Marcus Aurelius #11 - Book 11](https://stacker.news/items/513286/r/siggy47) by @Se7enZ\n\n- [The Final Product, Chapter 6](https://stacker.news/items/519277/r/siggy47) by @cleophas\n\n- [Tor — From the Dark Web to the Future of Privacy](https://stacker.news/items/519496/r/siggy47) by @0xbitcoiner\n\n- [Death And Strawberries](https://stacker.news/items/514749/r/siggy47) by @TheWildHustle\n\n- [Anarchy, State and Utopia: Robustly against Redistributive Taxation for 50 Years](https://stacker.news/items/517364/r/siggy47) by @Undisciplined\n\n\n\n### Siggy’s Suggestions\n\n- ["Remember," by Christina Rossetti](https://stacker.news/items/514380/r/siggy47) by @StillStackinAfterAllTheseYears\n\nAnother great poem from stillstackin. Not only that, but he did the proof of work of formatting a poem in markdown. And, yes, next time we do want ee cummings.\n\n\n- [FTDG #22: Converting Text to Video](https://stacker.news/items/515361/r/siggy47)\nby @cryotosensei\n\nI always look forward to @cryotosensei’s blog posts, and I learned few things from this one. \n\nThis week’s Golden Oldie:\n\n- [📝 plebpoet's original poem + discussion](https://stacker.news/items/414472/r/siggy47) by @plebpoet\n\nToday’s Golden Oldie is again from @plebpoet. I admit it’s a personal favorite, but it was also very popular. The post is fascinating in that the poet analyses the thought process that went into writing each line of the poem. I recommend you spend some time checking it out. It is uniquely insightful and instructive. \n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462)\n by @StillStackinAfterAllTheseYears\n\n- [The Bezzle, by Cory Doctorow](https://stacker.news/items/506632/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [The Achilles Trap, by Steve Coll](https://stacker.news/items/497756) by @Coinsreporter\n\n- [Software,by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Churning Black Matter](https://stacker.news/items/469200) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n\n\n \N 21833 \N 444461 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.7366790625717 0 \N \N f 0 \N 0 186748902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430930 2025-03-09 14:15:54.793 2025-03-29 22:39:47.605 What would you work on if bitcoin had mass adoption? Imagine a world where now everyone uses bitcoin, what would you then focus your attention to? \N 5128 \N 430930 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.508517800617 0 \N \N f 0 \N 0 38681755 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410508 2025-02-20 14:07:56.728 2025-03-29 22:39:49.997 \N I like it here. https://example.com/ 21521 410311 410311.410508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.3004578678093 0 \N \N f 0 \N 0 132651499 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443409 2025-03-19 10:35:19.274 2025-03-29 22:39:49.997 \N Kollider is still primarily a trading platform. \n\nKollider Exchange powers basically everything that we do. The synthetic stablecoins and the swaps that are built into the wallet are only possible because they're powered by the exchange on the back end. The synthetic stablecoins are actually created using derivatives to hedge BTC on the exchange. So in some ways, the wallet is really an app that's build on top of the exchange infrastructure. \n\nWe're definitely excited about Nostr, especially because we think there's going to be a growing crossover between the world of Lightning and the world of Nostr, hence the relay as well as building a lot of Nostr features into the wallet to make it super easy for users to access both. https://example.com/ 15119 442084 442084.443409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7076936922426 0 \N \N f 0 \N 0 204693603 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450060 2025-03-23 18:11:26.036 2025-03-29 22:39:49.997 \N THANK YOU! https://example.com/ 15728 449513 449513.450060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0253606007026 0 \N \N f 0 \N 0 83276921 0 f f \N \N \N \N 449513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449998 2025-03-23 17:12:03.461 2025-03-29 22:39:49.997 \N What didn’t get added to the release that you wish could have, had you had more time & resources?\n\nI’m sure you had to cut something ✂️ always love to know more about how decisions are made by builders https://example.com/ 4654 449806 449601.449630.449806.449998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.45625550996257 0 \N \N f 0 \N 0 135899676 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410637 2025-02-20 15:26:07.483 2025-03-29 22:39:49.997 \N 😱😱😱😱😱\n\nhttps://imgprxy.stacker.news/OU5dKlV8fDd1GDeyLnUZuMQB0gZJW7NIl6D0Uq8S-mM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0ZVV2Y4Q2xXWUFBYVQtOC5wbmc\n\n😜😂🤣😜😂\n\nHe's better at home during primetime...but yeah... 12-20 in career primetime games :/ https://example.com/ 10302 410635 410635.410637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.2785193300559 0 \N \N f 0 \N 0 186556100 0 f f \N \N \N \N 410635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435101 2025-03-12 13:15:26.639 2025-03-29 22:39:47.606 The Gentleperson’s Guide to Forum Spies A pretty cool and in-depth write up I stumbled across yesterday about disinformation techniques. \n\nIt says some of this is from [COINTELPRO](https://ronaldthomaswest.com/2017/08/21/the-gentlepersons-guide-to-forum-spies/) but I have no idea if that's really the case. \n\nAt any rate, the content is fascinating and _spooky_ as hell (pun intended). \n\n# Preview of the contents:\n\n**1. COINTELPRO Techniques for dilution, misdirection and control of a internet forum \n2. Twenty-Five Rules of Disinformation \n3. Eight Traits of the Disinformationalist \n4. How to Spot a Spy (Cointelpro Agent) \n5. Seventeen Techniques for Truth Suppression**\n\n--\n\nDon't go using any of this for evil! Feels like an "Anarchist's Cookbook" for the information age -- for educational & entertainment purposes only ;) https://ronaldthomaswest.com/2017/08/21/the-gentlepersons-guide-to-forum-spies/ 711 \N 435101 \N \N \N \N \N \N \N \N art \N ACTIVE \N 18.7722578672069 0 \N \N f 0 \N 0 56417752 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408286 2025-02-18 17:14:32.141 2025-03-29 22:39:49.99 \N I watched bitcoin in late 2017 as a pure investment, Like the stocks I had been buying my whole life. Pure fiat mindset. I thought I was clever not buying the top and jumped in at 15k. I never sold that first stash, but I ignored it until the covid thing in early 2020. Looking back, my traditional investing mindset was a problem. I missed the 2018 bear market, and I missed the early 2020 covid crash too. I was focused on my fiat investments. https://example.com/ 12139 407795 407795.408286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0635796387391 0 \N \N f 0 \N 0 115710193 0 f f \N \N \N \N 407795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451300 2025-03-24 13:37:38.063 2025-03-29 22:39:49.99 \N Sort of proof that the majority cause for "wokeness" is really just fiat money printing run amok. Central bank funded social mal-investments... https://example.com/ 4624 451005 450971.451005.451300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.560679077217 0 \N \N f 0 \N 0 244150476 0 f f \N \N \N \N 450971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408291 2025-02-18 17:19:39.703 2025-03-29 22:39:49.99 \N # Future's Faction\n\nThey wake up in two thousand eight\nCode-pushing heroes armed by fate\nEach line a bomb, aimed at the state\nTired of explaining, near irate\n\n> I don't have time to try to convince you...\n\nFive years on, now it's oh-thirteen,\nWorld learning blockchain, charts all green\nMy node is a non-stop machine\nMining profits become routine\n\n> I don't have time to try to convince you...\n\nShitcoins pop up in the next boom\nUp and down, yes but tons of room\nPundits and news spout fud and doom\nThey stay poor, as the lambos zoom\n\n> I don't have time to try to convince you...\n\nNow fifty-kay, new legislation\nPeople screaming "fix the nation"\nAcross each civilization \nFun game theory situation\n\n> I don't have time to try to convince you...\n\nSince we can see all the action\nBehind each, any transaction\nTrust is climbing, satisfaction\nWe are now the future's faction https://example.com/ 20849 408265 408265.408291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3887687214387 0 \N \N f 0 \N 0 16757493 0 f f \N \N \N \N 408265 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402918 2025-02-14 09:04:38.288 2025-03-29 22:39:49.991 \N We don't actually know who is a profitable node and who isn't. Even if someone told us how much profit they're making off their routing node, we can't know whether they are telling the truth.\nI've run a profitable node in the past using static fees, but now I see people using automation tools extensively to maximize their incomes based on data internal to an individual node.\nI'm watching the effect of Zero Fee Routing's management strategy really take off and inspire others to do the same. With zero routing fees, we're seeing more people choose to frontload their routing earnings through channel sales on Magma, which is something that we can verify. 2+% APY is pretty good and that's before any income that they'd make from actually routing! https://example.com/ 21547 402904 402904.402918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.209047236402 0 \N \N f 557880151 \N 3 174924988 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408228 2025-02-18 16:35:30.315 2025-03-29 22:39:49.997 \N I think just showing links to nostr posts as embeds like twitter or youtube would be enough "integration" from SN side.\n\n**I think what SN is really missing is a public (authenticated) API.**\n\nThen stuff like this can be built on top of it instead of messing with the code of SN like this:\n\n> Just move the entire Stacker News content to a custom Nostr relay, make the default client talk primarily to that relay -- but configurable.\n\nnostr is cool but I don't think it's a good idea to entangle different applications.\n\nWith a public API, one should be able to write a bot and send every post or comment on SN automatically to a nostr relay. https://example.com/ 8472 408208 407903.408208.408228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1856900725491 0 \N \N f 0 \N 0 113881526 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457857 2025-03-28 18:48:51.256 2025-03-29 22:39:49.997 \N Creating a Stacker News Python Library https://example.com/ 20754 457851 457771.457823.457825.457842.457849.457851.457857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.357415397255 0 \N \N f 0 \N 0 52003379 0 f f \N \N \N \N 457771 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408117 2025-02-18 15:16:17.314 2025-03-29 22:39:49.997 \N Plans oh so many plans. In order of operation likely:\n\n1. add autowithdrawal to lightning address\n2. add autowithdrawal to by other means (lnc, commando, etc)\n\n@ekzyis has just completed invoice-based (rather than from SN's custodial wallet) zapping/posting/commenting which will allow us to (when paired with the above) do\n\n3. bidirectional noncustodial wallets (lnc, commando, nostr wallet connect, mutiny embed?, etc)\n\nThe custodial wallet will likely remain and can be paired with any of the above. https://example.com/ 20657 407918 407918.408117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6330487377129 0 \N \N f 0 \N 0 76746344 0 f f \N \N \N \N 407918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451301 2025-03-24 13:38:47.672 2025-03-29 22:39:47.607 Tell us your best orange-pilling story Who did you orange pill? How did it happen? What finally got them to understand and act?\n\nI'll start. I talked to my parents about Bitcoin back in 2013. It was around March or so and it was on a tear, hitting $80. I told them to look into it and sent them all the Korean-language sources I could find. They didn't buy.\n\nA couple years later, I was working in the space and I guess my dad started to look into it. Around 2015 or so he finally bought a bunch at $600. I think what turned him was watching me continuing to get jobs in this industry and Bitcoin not going away. \N 8242 \N 451301 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.6914817855633 0 \N \N f 0 \N 0 2793500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437655 2025-03-14 18:07:36.03 2025-03-29 22:39:49.99 \N Awesome idea! It would be great to also be able to register/login with LNURL (like here on SN) https://example.com/ 15488 437586 437044.437560.437579.437586.437655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5985824131061 0 \N \N f 0 \N 0 15643581 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408082 2025-02-18 15:00:20.839 2025-03-29 22:39:49.99 \N From my 13 year old: Bananas are actually berries. \n\nHe is filled with obscure facts. https://example.com/ 21803 408066 408066.408082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7073955037479 0 \N \N f 0 \N 0 152681216 0 f f \N \N \N \N 408066 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408211 2025-02-18 16:20:20.425 2025-03-29 22:39:49.99 \N Day 162 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 21416 408195 407903.408184.408195.408211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8413917144926 0 \N \N f 0 \N 0 154088920 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404407 2025-02-15 21:03:52.941 2025-03-29 22:39:49.99 \N ppl who care about low transaction fees on the main chain have lost the plot https://example.com/ 13216 403033 401824.401884.403009.403028.403033.404407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8489916201114 0 \N \N f 0 \N 0 37055998 0 f f \N \N \N \N 401824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428759 2025-03-07 15:18:14.311 2025-03-29 22:39:49.99 \N I treat it like money. At this time of my life; I'm trying to save more than I spend. It won't be like that forever https://example.com/ 8570 428684 428684.428759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.85234110609485 0 \N \N f 0 \N 0 172425709 0 f f \N \N \N \N 428684 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437542 2025-03-14 15:35:35.912 2025-03-29 22:39:49.991 \N Any insights on Chinese mining or other places where mining is restricted? https://example.com/ 1571 437300 437044.437300.437542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.90685386789634 0 \N \N f 0 \N 0 56384568 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423854 2025-03-03 16:40:47.109 2025-03-29 22:39:47.607 SN Foundry- A spot for Territory Founders @phygit @benwehrman @antic @kytt @siggy47 @niftynei @PlebLab @Book_It @needcreations_ @jimmysong @roytheholographicuniverse @birdeye21 @jeff @BitByBit21 @itsTomekK @potus @MaxAWebster @runningbitcoin @MEME_LORD @Levlion @elvismercury @brandonsbytes @Public_N_M_E @GlobalThreat @Billy_Dow @ekzyis @BitcoinOutdoors @TNStacker @Chiefmonkey @MerryOscar @davidw @Relight_Motion @nout @notgeld @kr @south_korea_ln @OneOneSeven @kdnolan @dk @k00b\n\nCongratulations SN pioneers! I have tagged you because you are all founders of SN territories. \n\nAfter some discussion with @siggy47 over the weekend, I thought it would cool if territory founders, who are so inclined, got together occasionally to discuss their territories, ideas, plans, struggles and whatever they see fit. Since we are all treading on new "territory", let's be a resource for one another. \n\nI was thinking to make this a weekly post, where I will tag all current founders and all that wish to partake in the discussion can. If you wish to opt out of the posts please let me know. Hosting it in meta seems to make the most sense and I will donate any zaps the posts receive to the rewards pool. \n\nWe are in the wild west phase of territories with much to learn and discover! Looking forward to traversing these new lands with all of you. \n\nCheers,\nGR\n\n \N 775 \N 423854 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.4239095070692 0 \N \N f 0 \N 0 110437211 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424194 2025-03-03 21:44:57.273 2025-03-29 22:39:47.607 bitcoin adoption in el salvador. not what you think early this year i visited el salvador after a long time ago. immigration was smooth and fast. the country feels less corrupt and more secure than 20 years ago.\n\ni tried to pay everywhere in bitcoin but in 80% of places i was rejected. they accepted only usd. \nmostly small companies in san salvador and in santa ana accept bitcoin for payments. \nalmost all large companies do not like bitcoin at all and find all kind of excuses: it is down today. sorry, we cannot accept it because of this and because of that.....what is down??? bitcoin is never down! you dig deeper and find out they mean chivo when they say bitcoin. \nwhat the heck is chivo? it turns out that it is the 'government' digital currency wallet. bukele 'donated' everyone who did full KYC 30 usd. usd, not bitcoin. they had to give their name, address, phone number email and received 30 usd in a usd wallet which can also do bitcoin. but the wallet is flawed, it is down many times, it has lost bitcoin funds of some users and they blamed bitcoin of course...and where did the money come from anyway? not from bukele, that is sure..\n\nwhat?? why? the hooded guy gave a weird but inspiring speech at the bitcoin conference announcing that a country had adopted bitcoin and the country was el salvador. bukele confirmed that later. he also announced that el salvador will issue bitcoin bonds and buy one bitcoin every day.\n\nit turned out to be a political stunt. a marketing campaign abusing bitcoin. bukele also announced that everyone owning one bitcoin could immigrate to el salvador. it turned out not to be true.\n\nthis political stunt put el salvador on the map. no one has heard about el salvador before. most people did not even know that it existed. two years later el salvador is booming, it got a record number of tourists and a record number of 'investments' . bukele introduced a plan for a 'bitcoin city' which many people on a message forum said looked more like a five mile city.\n\nwhen you land in el salvador you cannot see any ads for bitcoin. it looks like it does not exist. no billboards, no one even talks about it. there is a small community at the beach which uses it and trades small products using lightning. the youtubers from italy below spent one year in el salvador when it became legal tender and report one year later that almost no one accepts bitcoin any more.\n\nwhat is wrong with el salvador? does a government controlled wallet provide "freedom"?\ndoes it confirm the rule: do not trust any politician?\n\nguatemala has thriving bitcoin adoption communities without any 'government' intervention\ncosta rica has a bitcoin market in uvita and in other places even though the 'government' is hostile to bitcoin\nlugano in switzerland has emerged as a global leader in bitcoin adoption\n\nbitcoin was created against 'government', against oppression and control.\nwhatever "government" touches, fails. it looks like el salvador confirms this rule\n\nhere is the video of the italian confirming what i experienced:\nhttps://www.youtube.com/watch?v=wPMGPDjZz7A\n\nis el salvador a failed bitcoin state because bukele messed it up with totalitarian chivo wallet?\n\n\n \N 739 \N 424194 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 2.9073310444592 0 \N \N f 0 \N 0 91249484 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410492 2025-02-20 14:03:08.379 2025-03-29 22:39:47.609 The Truth About Bitcoin Scaling with niftynei https://www.youtube.com/watch?v=9MYp88Ii84A\nhttps://fountain.fm/episode/r0JneJ2mvVTUNsFuN1sy\nhttps://www.whatbitcoindid.com/podcast/the-truth-about-bitcoin-scaling\n\nTIMESTAMPS:\n00:00:00 Conferences, covenants \n00:09:57 Scripts, time-locks, & UX challenges\n00:22:24 LN, splicing, LSPs\n00:32:49 LND vs CLN; Taproot assets; tokens on Liquid\n00:42:30 E-cash & LN sovereignty\n00:53:54 Contracts, covenants; & ZK proofs\n01:06:24 Soft forks; UX standards\n01:13:19 Bitcoin++ & Base58 \N 21418 \N 410492 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.06618176228072 0 \N \N f 0 \N 0 83050871 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455578 2025-03-27 06:44:09.779 2025-03-29 22:39:49.991 \N ![test](https://i.redd.it/ijov91zvdkxb1.jpg) https://example.com/ 19813 455564 455544.455564.455578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.29088471162021 0 \N \N f 0 \N 0 178565034 0 f f \N \N \N \N 455544 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455568 2025-03-27 06:24:13.015 2025-03-29 22:39:49.991 \N Now that Fountain’s latest earning features have rolled out, I’ve been thinking if this could lead to competition among applications that offer Sats for different kinds of engagement. \n\n(For example, if people are making a lot by listening to Fountain podcasts, will Stacker News be pressured to respond with additional earnings features in order to get that bandwidth back? 😄)\n\nWe’re still very early, but as more apps are built on Lightning, one could see this getting… intense. After all, there’s only a finite amount of Sats to go around 🍿\n https://example.com/ 2206 455413 455413.455568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.55718793710005 0 \N \N f 0 \N 0 247409231 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444505 2025-03-20 00:18:46.347 2025-03-29 22:39:49.991 \N [![build-free-life.jpg](https://imgprxy.stacker.news/kYh7pBBNvdEW_JE2juJP5xFCVqS9S0cjd11EnXE7h5c/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvWFlSTHl6VGovYnVpbGQtZnJlZS1saWZlLmpwZw)](https://postimg.cc/SnGCBDS3) https://example.com/ 5942 443837 443268.443837.444505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.9233713422582 0 \N \N f 0 \N 0 56265279 0 f f \N \N \N \N 443268 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448312 2025-03-22 14:39:14.408 2025-03-29 22:39:49.991 \N Day 218 of snailposting everyday 'til BTC hits $100k.\n\n...and 18 push-up(s).\n\n__@_'-' https://example.com/ 20901 448310 448283.448310.448312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.07226036781394 0 \N \N f 0 \N 0 145296323 0 f f \N \N \N \N 448283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451311 2025-03-24 13:43:23.946 2025-03-29 22:39:49.991 \N Fun fact, DarthCoin NEVER used:\n- any shitcoins\n- Twatter\n- FBIbook/Instagram\n- Linkedin\n- a plane\n\nDISCLAIMER: I post this for fun fact, not for the prize. https://example.com/ 20837 450957 448526.448535.450957.451311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4472702019401 0 \N \N f 0 \N 0 90479336 0 f f \N \N \N \N 448526 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403661 2025-02-15 04:13:06.592 2025-03-29 22:39:49.991 \N Iterate.\n\nWhen done consistently, you'll get extremely far slowly.\n\nRunners call this pacing. Writers call this drafting. Actors call this rehearsal. https://example.com/ 20439 403594 403594.403661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.115395613286857 0 \N \N f 0 \N 0 95594943 0 f f \N \N \N \N 403594 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51594 2023-08-18 11:55:33.047 2025-03-29 22:39:47.603 Sunday Survey: How often do you check this website? \N \N 16998 \N 51594 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.2755470082608 0 \N \N f 0 \N 0 90945409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456762 2025-03-27 21:06:37.281 2025-03-29 22:39:47.603 Sunday Survey: What alternate second layer would you most like to see developed? \N \N 18525 \N 456762 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.508195823553 0 \N \N f 0 \N 0 107578852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404460 2025-02-15 22:16:12.797 2025-03-29 22:39:49.991 \N Day 207 of snailposting everyday 'til BTC hits $100k.\n\n...and 7 push-up(s).\n\n__@_'-' https://example.com/ 5527 404341 404341.404460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.993486677163 0 \N \N f 0 \N 0 37373190 0 f f \N \N \N \N 404341 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458239 2025-03-29 06:09:18.722 2025-03-29 22:39:49.991 \N Pavlenex here. I've apologies to you, I've spent multiple hours chatting with your and connecting you with an exchange. Your claims here aren't true. We have processes for security vulnerabilities, and nostr is definetly not the best way to reach out to me, as soon as I was made aware, I've reached out to you on Telegram. I understand you're frustration but you can't just fabricate things to fit the narrative. \n\nOnce again, I apologise for your loss and pain this has caused. https://example.com/ 17050 458236 458188.458210.458223.458226.458229.458230.458234.458236.458239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3792895025768 0 \N \N f 0 \N 0 176674980 0 f f \N \N \N \N 458188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444470 2025-03-19 22:56:03.499 2025-03-29 22:39:49.991 \N <3 https://example.com/ 13553 444456 443712.444290.444419.444456.444470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.88661704610546 0 \N \N f 0 \N 0 214362050 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402894 2025-02-14 08:26:36.578 2025-03-29 22:39:49.991 \N One of the reasons why I've stalled on getting set up with a truly sovereign computing setup is that I am a full-time traveler.\n\nWould you agree that the equipment required would make it difficult for digital nomads to make the most of Start9's suite of products, or am I wrong? https://example.com/ 18271 402003 402003.402894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7530525432832 0 \N \N f 0 \N 0 111153852 0 f f \N \N \N \N 402003 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442926 2025-03-18 22:19:57.462 2025-03-29 22:39:49.991 \N TLDR: Know your friends values. What do they care about. Bitcoin is good for everyone. Do not focus on their politics and how wrong they are. Talk to them about how bitcoin relates to what they care about in the world. \n\nThere are progressive bitcoiners. It pains me to listen to them rationalize their political views in light of how bitcoin works but this is a human flaw. We will never free the world by appealing to logic and reason alone. Building a better system is the way. A system based on logic, reason, and intentional incentive structures. People are locked into their political dogma. The vast majority of people I know are not even open to questioning their views. Its pointless to argue. Better to show it by example. https://example.com/ 21202 442023 442023.442926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.44640973054424 0 \N \N f 0 \N 0 235723801 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437577 2025-03-14 16:28:28.355 2025-03-29 22:39:49.991 \N The back (interfaces) of an electronic device. https://example.com/ 17838 437569 435046.435209.435215.435427.435502.437569.437577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.41065521547234 0 \N \N f 0 \N 0 76249633 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421227 2025-03-01 14:04:25.205 2025-03-29 22:39:49.991 \N Complexity is the enemy of security. This is not good. https://example.com/ 3347 420620 420620.421227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.72706370717556 0 \N \N f 0 \N 0 166413100 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424110 2025-03-03 20:36:16.273 2025-03-29 22:39:49.992 \N Haha, if I got satoshi every time someone asked WEN SV2... Exactly, it's now a reality, ready for implementation and direct usage. We've mined over 600 blocks on testnet internally and are pretty confident it's great first start. Of course as people start using the software, we expect improvements, bugs and updates. https://example.com/ 20683 424030 423917.424025.424030.424110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.880246355890471 0 \N \N f 0 \N 0 225563341 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458246 2025-03-29 06:19:45.574 2025-03-29 22:39:49.992 \N Happy to answer any questions! https://example.com/ 17984 458241 458227.458241.458246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.787572795434 0 \N \N f 0 \N 0 204253215 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51684 2023-08-18 14:18:10.638 2025-03-29 22:39:47.603 Calling all bitcoin plebs.... Value For Value ⚡⚡⚡ Hi fellow bitcoin plebs and lightning bulls! I'm a musician and just released my latest song on a value for value model. To the outside, non bitcoin world, I probably look crazy but I want to try and prove a point... That there is a better way for artists to monetise their music than just simply uploading to Spotify, Apple or Youtube which leaves artists with little or nothing to show for their work... I'm calling on this community to ask a big favour. If ya'll have the time, please check out the song at my website www.joemartinmusic.com/highgravity and if you like it, possibly consider sharing my twitter thread on value for value (@joemartinmusic). I've already had some exremely generous folks tip and share and am blown away with the kindness of this community, so thank you! 🧡\n\n\nPs. As well as proving the concept of V4V, I'm also trying to show what the tech is capable of, so even a small tip of a penny, can go a long way and prove a point that lightning can do what no other payment network can! ⚡⚡⚡ \N 9099 \N 51684 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.0884410743873 0 \N \N f 0 \N 0 91604144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450961 2025-03-24 10:21:11.631 2025-03-29 22:39:49.992 \N From Conclusions Section:\n\n149 (d) However, because he (Wright) advanced a deliberately false case and put forward deliberately false evidence until days before trial, he will recover only nominal damages.\n\n150 Accordingly, I shall enter judgment for Dr Wright on the claim in the sum of £1 https://example.com/ 650 450002 449016.450002.450961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9792087318224 0 \N \N f 0 \N 0 204912515 0 f f \N \N \N \N 449016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407917 2025-02-18 13:10:49.921 2025-03-29 22:39:49.993 \N Day 268 of snailposting everyday 'til BTC hits $100k.\n\n...and 68 push-ups. (30 - 30 - 8)\n\n__@_'-' https://example.com/ 2309 407902 407870.407902.407917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3216697807304 0 \N \N f 0 \N 0 9331236 0 f f \N \N \N \N 407870 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423006 2025-03-02 21:23:18.578 2025-03-29 22:39:49.994 \N Day 167 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20612 422637 422637.423006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.78972887752437 0 \N \N f 0 \N 0 160476676 0 f f \N \N \N \N 422637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428793 2025-03-07 15:49:25.083 2025-03-29 22:39:49.994 \N retirement is the point at which you have full agency over your *time* .. that is you can choose precisely it is that you do without regard to generating immediate economic value\n\nfor some that's checking out and lying on a beach, for others it's finally doing what they're passionate about, for others it's exploring the world https://example.com/ 21393 428739 427718.428104.428728.428739.428793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6016815687851 0 \N \N f 0 \N 0 162892578 0 f f \N \N \N \N 427718 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430849 2025-03-09 13:11:55.109 2025-03-29 22:39:49.994 \N What is the optimum role of the nation-state? In other words, if you could play God and setup our world from scratch, what would you do about: borders, healthcare, infrastructure, monetary system, etc? https://example.com/ 13753 430840 430840.430849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.37297982025733 0 \N \N f 0 \N 0 206405246 0 f f \N \N \N \N 430840 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416669 2025-02-25 18:53:26.532 2025-03-29 22:39:47.603 Pay Me in Bitcoin Theory \N https://graduallythensuddenly.xyz/pay-me-in-bitcoin-theory/ 14857 \N 416669 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 6.18267242035028 0 \N \N f 0 \N 0 161817712 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443258 2025-03-19 07:56:12.059 2025-03-29 22:39:49.995 \N [![Darth-laugh.gif](https://i.postimg.cc/x8B5j8zz/Darth-laugh.gif)](https://postimg.cc/MfbVdWt6)\n\nYes, indeed I do not like to "kiss ass" of anybody with nice kind words.\nIf they do not like "my style" of saying things directly, I don't fucking care. Is their problem not mine. https://example.com/ 651 442215 442191.442215.443258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9721952470133 0 \N \N f 0 \N 0 108372523 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404401 2025-02-15 21:00:09.39 2025-03-29 22:39:49.995 \N @k00b you see?\nI've told you in the past to build a dedicated sub for "marketplace" or at least a sub where merchants that accept Bitcoin they could do their promotions, ads, introduction etc.\nSo SN users can just go to that sub (like job) and start spending their sats on something that they really want and merchants accept BTC.\n\n### CREATE THAT BITCOIN CIRCULAR ECONOMY RIGHT HERE ON SN! https://example.com/ 16176 403365 402674.402955.402995.403365.404401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.0076930244656 0 \N \N f 0 \N 0 14426007 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414956 2025-02-24 12:33:19.544 2025-03-29 22:39:49.996 \N # HUGE congratulations to you on this!!! 👏🚀\n\nAs I mentioned in [my very first post on SN](https://stacker.news/items/21672), I've been a fan of this concept from the moment I first saw it.\n\nI *immediately* understood the value proposition. Create-to-earn, engage-to-earn --> let the actual value-generating stakeholders get *rewarded* for their *time*.\n\nHowever, while it's awesome that people can *earn* by contributing content, I believe the much bigger benefit will become visible over time:\n\nThe incentive structure will enable...\n- Higher quality content\n- Deeper & more valuable discussions\n- No/less need for moderation\n- **Leading to a fundamentally more *sustainable* platform.**\n\nTL;DR \nThis model is not only an inherently **fairer** model, but more importantly, it will create experiences that were just not possible before!\n\n*(Let me know if/how I can help out, would love to contribute!)* https://example.com/ 20409 413699 413480.413699.414956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9091385431364 0 \N \N f 0 \N 0 78536994 0 f f \N \N \N \N 413480 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458260 2025-03-29 06:33:30.647 2025-03-29 22:39:49.996 \N For me, LSP mainly means network connectivity services. If an ISP connects you to the Internet, an LSP connects you to Lightning. You can provide internet services not as an ISP, or Lightning services not as an LSP.\nThe main service an LSP provides is liquidity services via opening channels. https://example.com/ 21620 458077 458011.458077.458260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9541512652732 0 \N \N f 0 \N 0 34563616 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410549 2025-02-20 14:28:49.281 2025-03-29 22:39:49.996 \N Great to see a success of it.\n\n @Car and the @PlebLab team will probably double the cost again now to test if it becomes prohibitively expensive. My gut tells me it won’t make a single bit of difference besides increasing those incentives 😃 https://example.com/ 21044 410358 410358.410549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9549361413137 0 \N \N f 0 \N 0 192462941 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404412 2025-02-15 21:11:09.597 2025-03-29 22:39:49.997 \N Not done yet as it's still syncing, and thanks for the head up! The only info I found is [here](https://github.com/ElementsProject/lightning#pruning) but not real solution for it... anyone knows if my intent is worth the time waiting for the sync?\n\nOther apps I'd like to install\n- BTCpay server\n- LNbits\n- RTL https://example.com/ 1483 404270 404270.404412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.2465827703729 0 \N \N f 0 \N 0 154503597 0 f f \N \N \N \N 404270 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444464 2025-03-19 22:42:52.686 2025-03-29 22:39:49.997 \N We are so forward looking we forget to see the here and now. At least I do. https://example.com/ 20179 444285 436683.436833.436853.436884.444285.444464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9374620921305 0 \N \N f 0 \N 0 115839809 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424965 2025-03-04 14:07:44.334 2025-03-29 22:39:49.997 \N So how many days until they back track on this? \n\nGrab the popcorn boys! https://example.com/ 21620 424754 424754.424965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.70914051277428 0 \N \N f 0 \N 0 43797170 0 f f \N \N \N \N 424754 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428801 2025-03-07 15:56:36.179 2025-03-29 22:39:47.603 Bitcoin Beginners Newsletter, Issue 17 ![](https://m.stacker.news/50227)\n\n### Announcements\n\nWelcome to this week’s newsletter. The big news is that @plebpoet has created a logo for the territory! Design is not my strength, so I’m thrilled that she’s offered to help me out, and I love the results. \n\nThanks to everyone who contributed posts this week. It was a little quiet, but we still got some good ones. \n\n### Top 5 Posts Of The Week\n\nThere will be a zap award for the top 5 posts weekly. It will be broken down as follows:\n\n1. 1000 sats\n2. 250 sats\n3. 250 sats\n4. 250 sats\n5. 250 sats\n \nPosts will be judged using SN zaprank. The cut off time is 9:00am EST (1300GMT) Friday morning. I will post the top 5 winners shortly after 9:00am every Friday morning. \n\nI reserve the right to not award any sats for the week. I hope I don’t need to suspend awards, so I will keep the bar low. Also, I reserve the right to deny sat awards to bare link posts. I recognize that link posts can be valuable, so I will only only exercise discretion for low quality links that garner few sats or engagement from stackers.\n\n#### This Week’s Winners:\n\n- [Cuba Bitcoin](https://stacker.news/items/673040/r/siggy47) by @criptopanas\n\n- [Introducing Bitcoin Good First Issues!](https://stacker.news/items/667737/r/siggy47) by @Onionsman\n\n- [Jippi App is now available for download on both Android and iOS](https://stacker.news/items/667542/r/siggy47) by @hasherstacker\n\n- [Consensus Question](https://stacker.news/items/668106/r/siggy47) by @Rsync25\n\n- [How I Lost 60% Of My Investments In BTC. Can You Guys Also Share Ur Experiences](https://stacker.news/items/673880/r/siggy47) by @2137003447\n\n\n### DarthCoin Posts\n\n- [Explain Lightning Network in a simple analogy](https://stacker.news/items/552822/r/siggy47) by @DarthCoin\n\n\n- [Choose wisely your LN wallet you want to use](https://stacker.news/items/583496/r/siggy47) by @DarthCoin\n\n- [BDMD #1 - Bitcoin was hacked / will be hacked](https://stacker.news/items/589355/r/siggy47) by @DarthCoin\n\n- [BDMD #2 - Govs will shut down internet, so Bitcoin is dead](https://stacker.news/items/590397/r/siggy47) by @DarthCoin\n\n\n- [BDMD #3 - Bitcoin is illegal because it is not legal tender](https://stacker.news/items/592553/r/siggy47) by @DarthCoin\n\n\n- [Bitcoin Accepted - PoS systems](https://stacker.news/items/600658/r/siggy47) by @DarthCoin\n\n\n\n### Learning Resources\n#### The White Paper\n\nEveryone knows about the white paper, but have you read it? [Here](https://bitcoin.org/bitcoin.pdf) is the pdf.\n\n#### DarthCoin’s Guides\nDarthCoin is a somewhat controversial figure with a manner that may take some getting used to, but I think his guides are excellent as step by step instruction. The sentence structure might be unconventional, and he may express some strong opinions, but you will learn what he has set out to teach you.\nHere is a link to DarthCoin’s Substack Page, where you can find all of DarthCoin’s guides:\nhttps://darthcoin.substack.com/\n\n#### Radentor’s Ecosystem Map\n\n- [Bitcoin Ecosystem Map - August 2024](https://stacker.news/items/656800/r/siggy47) by @Radentor\n\n@Radentor has created a comprehensive ecosystem map. I believe he intends to keep this list updated Beginners will benefit from checking it out, as will experienced bitcoiners.\n\n#### Why Bitcoin Only\n[Why Bitcoin Only](https://whybitcoinonly.com/) is a massive trove of links, where you can find just about anything you’re looking for. It’s also fun to browse around.\n\n\n\n### Top Posts Of All Time\n\nHere you will find a few of the top posts that have been posted to this territory. I am not going to adhere to a rigid zaprank system, since my purpose is to highlight content that has educational value. I will use an informal combination of zaprank and my own evaluation. For instance, some posts, though of high quality, are solely about Stacker News, and might have more appropriately originated as a meta post. \n\n- [Explain Lightning Network in a simple analogy](https://stacker.news/items/552822/r/siggy47) by @DarthCoin\n\n- [Bitcoin Mining Industry Introduction](https://stacker.news/items/477320/r/siggy47) by @catoshi\n\n- [How do you guys use bitcoin to pay for day to day things?](https://stacker.news/items/461137/r/siggy47) by @mateusdeap\n\n- [UTXO consolidation - What's you best option(s)?](https://stacker.news/items/477157/r/siggy47) by @BitcoinIsTheFuture\n\n- [I want to run my first node but am overwhelmed by the choices](https://stacker.news/items/364765/r/siggy47) by @boisechampion\n\n- [The bitcoin beginner’s guide to Public Key Encryption](https://stacker.news/items/476074/r/siggy47) by @frostdragon\n\n- [What If You Need to Relearn Bitcoin from Scratch Again? 🤔](https://stacker.news/items/649524/r/siggy47) by @Natalia\n\n\n \N 20757 \N 428801 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.63330580142353 0 \N \N f 0 \N 0 158108674 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416661 2025-02-25 18:46:31.013 2025-03-29 22:39:49.991 \N - https://lightning.video/ - you can find weird stuff there too but also cool videos\n- [here some of the coolest ideas using sats](https://github.com/lnbits/lnbits/wiki/Powered-by-LNbits#bitcoin-switch-%EF%B8%8F)\n- [here some IRL examples](https://darthcoin.substack.com/p/bitcoin-lightning-irl-examples) https://example.com/ 14650 416484 416484.416661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6196816941321 0 \N \N f 0 \N 0 188864379 0 f f \N \N \N \N 416484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404409 2025-02-15 21:06:39.391 2025-03-29 22:39:49.991 \N No. \nReason number 1: Reminder that the tor network exists\nReason number 2: https://www.bip324.com/\nReason number 3: "The internet is a network of networks" If your ISP tries to ban it, just route around them. We can do IP protocol over mail, with Pidgeon carriers, WISP (wireless internet service providers) internet over radio, internet over satellite any method you can think of to communicate, you can do internet with it and therefore, you can do Bitcoin with it. https://example.com/ 9026 402932 402904.402918.402925.402932.404409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1905574270478 0 \N \N f 0 \N 0 230664639 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408237 2025-02-18 16:40:22.281 2025-03-29 22:39:49.991 \N Question #4: In your view, which entity (person, company, or idea) has onboarded the most new Bitcoin users (holders count as users) in the last year? https://example.com/ 10981 408230 408230.408237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6613882714699 0 \N \N f 0 \N 0 157878281 0 f f \N \N \N \N 408230 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404402 2025-02-15 21:00:39.964 2025-03-29 22:39:49.991 \N Day 255 of snailposting everyday 'til BTC hits $100k.\n\n...and 55 push-ups. (30 - 20 - 5)\n\n__@_'-' https://example.com/ 11760 403929 402674.403929.404402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5828102762067 0 \N \N f 0 \N 0 111595554 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422266 2025-03-02 10:51:26.503 2025-03-29 22:39:47.603 Need help recovering wallet from 2010 I finally found the backup I wrote down after using Gavin Andresen's Bitcoin faucet. I don't remember if I was using only Bitcoin Core, Armory, or something like Multi-bit. Those sound familiar.\n\nThere are 5 bitcoins in the first address and I never moved or used them. The characters I found on my handwritten paper backup are 80 characters, between (0-9) and (A-F). I wrote these in blocks of four characters. Within these 80 characters, I have 14 question marks. So a total of 66 known characters. I'm not sure if I only need 64, 66, or 80 characters total.\n\nI have Bitcoin Core and Electrs downloaded on my Umbrel to start trying the recovery process. I also have Electrum and Armory downloaded.\n\nI'm not sure the best course to go from here to find out what the key may be and how long it should be. I'm not in a hurry and have time to try to figure this out, hopefully with your help.\n\nOffering a full Bitcoin to the best helper. \N 20412 \N 422266 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.0573747579429 0 \N \N f 0 \N 0 123257342 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51697 2023-08-18 14:50:12.652 2025-03-29 22:39:47.603 18 months ago nobody took sats in Vancouver. Now there are recommendations \N https://www.bitdevs.ca/map 21506 \N 51697 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.5892859807796 0 \N \N f 0 \N 0 133271205 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414840 2025-02-24 10:41:45.907 2025-03-29 22:39:49.991 \N ![Few](https://i.ibb.co/g6KMLkR/sats-Maxxing.jpg) https://example.com/ 21247 413361 413235.413354.413361.414840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.63581404513479 0 \N \N f 0 \N 0 201274341 0 f f \N \N \N \N 413235 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444508 2025-03-20 00:23:16.32 2025-03-29 22:39:49.992 \N Thanks. I don't recall if I ever made the point about how that fosters something closer to evergreenness. If you make a post that people keep coming back to throughout the year, that isn't really rewarded under the daily system, but you might end up with a big payout at the end of the year.\n\nOn the evergreenness topic specifically, I wonder if people could get credit for zapping content late, as well as early. Whatever decay function they use, could be modified with another function that grows very slowly over time. https://example.com/ 21140 444168 444168.444508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.21071385847917 0 \N \N f 0 \N 0 204439260 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404484 2025-02-15 22:59:33.151 2025-03-29 22:39:49.992 \N I think it was Reddit https://example.com/ 1469 402917 402917.404484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0190204086467 0 \N \N f 0 \N 0 95733214 0 f f \N \N \N \N 402917 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455088 2025-03-26 18:32:28.299 2025-03-29 22:39:49.992 \N > GitHub started training AI on code hosted on their website.\n\nYeah, same as Google trains their algorithms with your email content, and many tools use Wikipedia text to train, etc.\n\nIf anything you produce is accessible from an external computer, assume it is being read and used in any way they want to, and there's nothing you can do to stop it. Act accordingly.\n\nIf you don't want other people to access your source code, keep the git repo in your own computer, or your own private network. Problem solved. Same for anything else. \n\nThe cloud is someone else's computer. https://example.com/ 18313 455080 455080.455088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.48747766532575 0 \N \N f 0 \N 0 148935244 0 f f \N \N \N \N 455080 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51731 2023-08-18 15:28:24.771 2025-03-29 22:39:47.603 PlebDev (Learn how to build a Bitcoin wallet) \N https://www.pleblab.com/course 21393 \N 51731 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.3141103877188 0 \N \N f 0 \N 0 113844217 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428531 2025-03-07 11:35:03.604 2025-03-29 22:39:49.992 \N Planning my node build. 🤔 https://example.com/ 1717 428123 427188.427211.427969.428123.428531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2292700919342 0 \N \N f 0 \N 0 43016593 0 f f \N \N \N \N 427188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428477 2025-03-07 10:24:32.283 2025-03-29 22:39:49.992 \N That's right! Perhaps they're called gray ruby because they're a hidden gem. https://example.com/ 5306 428422 428292.428422.428477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.88208135894 0 \N \N f 0 \N 0 72067882 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434970 2025-03-12 11:26:36.151 2025-03-29 22:39:49.992 \N I love it!\n\nI like the way you handled all those sneaking sneakers. Careful y'all, the snooker can become the snorked. https://example.com/ 17209 434227 215973.216272.216481.216553.433750.434227.434970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1278820805616 0 \N \N f 0 \N 0 200566652 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422269 2025-03-02 10:52:43.218 2025-03-29 22:39:49.992 \N Its 404ing. They've deleted the article.\n\nHere is the archived page: https://web.archive.org/web/20220705153241/https://www.un.org/en/chronicle/article/benefits-world-hunger https://example.com/ 19668 422261 422056.422057.422261.422269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.94758800853433 0 \N \N f 0 \N 0 184121312 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428484 2025-03-07 10:33:14.6 2025-03-29 22:39:49.992 \N It's easier to give people the same grace you give yourself when you remember this is their first time in this life, too. https://example.com/ 1060 427568 427251.427568.428484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9723399684001 0 \N \N f 0 \N 0 232229204 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410524 2025-02-20 14:15:46.203 2025-03-29 22:39:49.992 \N Setting up a personal Ghost blog and experimenting with weaving LN payments (either a v4v donation widget, or a small faucet for early readers, or something along those lines) into it. Anybody have any experience with this? https://example.com/ 20616 410506 410409.410506.410524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1757134549465 0 \N \N f 0 \N 0 211674275 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444487 2025-03-19 23:23:25.654 2025-03-29 22:39:49.992 \N *He must feel the pain... Only then, will appreciate the peace of mind.* https://example.com/ 16988 444173 444173.444487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.001165305765 0 \N \N f 0 \N 0 132488044 0 f f \N \N \N \N 444173 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423180 2025-03-03 04:32:33.406 2025-03-29 22:39:49.993 \N So, I was talking to my one legged wife the other day, and I says..\n"Peg" https://example.com/ 3396 423166 423166.423180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9196341400863 0 \N \N f 0 \N 0 158915981 0 f f \N \N \N \N 423166 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403711 2025-02-15 05:59:43.043 2025-03-29 22:39:49.993 \N what you don't get it, because you have only one single neuron in your smooth brain, is that bitcoin is the ONLY cryptocurrency. All the rest are crapto-currencies.\nIt's a bit difference.\nI see only shitcoiner tears trying to make his crap a currency.\nSo please move your shit elsewhere\n[![ok-shitcoiner.gif](https://i.postimg.cc/jqNs4hW3/ok-shitcoiner.gif)](https://postimg.cc/QV8GX1Jc) https://example.com/ 20636 243284 243284.403711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4969753059523 0 \N \N f 0 \N 0 247579744 0 f f \N \N \N \N 243284 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444510 2025-03-20 00:38:25.229 2025-03-29 22:39:49.993 \N The more important question, have you started brewing experiments to eventually become self sustainable in terms of beer? :) https://example.com/ 2703 444467 444467.444510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5864916153454 0 \N \N f 0 \N 0 83836918 0 f f \N \N \N \N 444467 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403712 2025-02-15 06:00:17.277 2025-03-29 22:39:49.993 \N Darth, thank You so much for Your detailed opinion on a matter that's for me as independent journalist, libertarian and entrepreneur clearly a threat to my personal freedom. The fan boys will have to learn their lesson. Greets from Spain.... https://example.com/ 844 155481 155481.403712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2642761357661 0 \N \N f 0 \N 0 57490595 0 f f \N \N \N \N 155481 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436850 2025-03-14 00:14:46.834 2025-03-29 22:39:49.994 \N the Mutiny team is crushing it these days. 🤩 https://example.com/ 20768 436694 436669.436694.436850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.66082449804808 0 \N \N f 0 \N 0 94017233 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444437 2025-03-19 21:55:40.79 2025-03-29 22:39:49.998 \N > I know that if you go on vacation and do not zap or create new content for a day you lose the hat, that is a bit harsh, I wish that it was at least two day of no activity before losing it, but at the moment that is the way and in my opinion is a great motivator for many...\n\nIf it weren't difficult to maintain the hat, it wouldn't be as fun to have one. https://example.com/ 20680 444387 444387.444437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9929008952183 0 \N \N f 0 \N 0 191947922 0 f f \N \N \N \N 444387 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444325 2025-03-19 19:35:49.723 2025-03-29 22:39:49.998 \N As much as I believe that it's important for content creators to be compensated for their creative work, the current model Alby has right now with InSATgram makes it really difficult for people to truly appreciate content created by the content creator. \n\nIf you look at the model that SN and Zapread have, they are literally creating a platform where creators are compensated/given sats for their creative work. The creative work does the speaking and the consumers get to vote (with their sats) on how valuable the content is. \n\nFrom a content marketing and branding perspective, the InSATgram model doesn't give room for the content creator to create a genuine connection with their readers. That makes it difficult for the creator to grow. If the creator doesn't grow, it will affect the success of the platform. \n\nIf you refer to the model that Starbackr has, you get to see content creators actually given the chance to get their content and creative work to do the talking. It would be interesting to see InSATgram doing its unique spin on Instagram using the current model that Starbackr, SN, and Zapread are following. \n\nI think the InSATgram model as it is right now could work for the content creator's premium content or subscriber-only content where the content is locked to non-subscribers but open for subscribers. But this model should never be something that works as a standalone. \n\nI love Alby and what they are doing but I feel that InSATgram would need some work. I look forward to see what they come up with. https://example.com/ 2459 444320 444168.444320.444325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.88414423508405 0 \N \N f 0 \N 0 70115039 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444219 2025-03-19 18:16:23.009 2025-03-29 22:39:49.998 \N I don't think any of us (maybe some in less affluent nations) are fooling ourselves into thinking getting a few 100 sats a day is earth shattering but like you say it is a hint that the current model of social media isn't the only way and that there may be a better way fueled by bitcoin. The incentive structure on SN isn't perfect but its miles ahead of places like Twitter/FB. If you can't see the potential of SN and of course of bitcoin I have no clue why you are on this site.\n\nNot being interested in plebs is cringe to me. https://example.com/ 979 436981 436981.444219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3979873096187 0 \N \N f 0 \N 0 151834283 0 f f \N \N \N \N 436981 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404437 2025-02-15 21:50:04.202 2025-03-29 22:39:49.998 \N Yes, similar to how so much of Africa and other developing nations had little access to computers and the internet but now have a high degree of mobile phone use. Don't need the unnecessary steps just go straight to mobile (or bitcoin in the case of banking). https://example.com/ 21547 404270 404270.404437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8236590092204 0 \N \N f 0 \N 0 73856004 0 f f \N \N \N \N 404270 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51769 2023-08-18 16:26:30.935 2025-03-29 22:39:47.603 Mempool.space: A Guide to Bitcoin Transactions # Mempool.space: A Guide to Bitcoin Transactions\n\n[mempool.space](https://mempool.space/) is a Bitcoin blockchain explorer and visualizer.\n\nWhat features does it have and why should you use it?\n\n## What Is "Mempool"?\n\n"Mempool" is the "waiting room" for valid Bitcoin transactions.\n\nIf a Bitcoin user sends BTC, the transaction is first propagated throughout the network of nodes, which independently verify the transaction.\n\nOnce each node has verified the transaction, it will wait in the mempool in order to be picked up by a miner to be added to the Bitcoin blockchain.\n\nMiners are incentivized to pick transactions with the highest fees attached to them. \n\n## A Software to Help Optimize Miner Fees\n\nThe standard quantification for Bitcoin fees is "satoshis per virtual byte", often expressed as "sats/vB" or "sats/vByte", effectively sats per amount of data transferred.\n\nA transaction's size is not determined by how much BTC it transfers, but by how many inputs, outputs and signatures it has, and which address type it uses (e.g. Taproot, SegWit, legacy etc.).\n\nMore intensive transactions, e.g. opening a Lightning channel would cost more. \n\nMempool.space can help Bitcoin users optimize how much they pay in miner fees when interacting with the Bitcoin blockchain. \n\nEvery sat will count in the future, so try to avoid overpaying for fees!\n\n## Visualize Your Bitcoin Experience!\n\nMempool.space provides real-time transaction tracking and mempool visualization.\n\nFor example, if you need a transaction to go through urgently on the Bitcoin blockchain, you can see how many sats/vB you should pay to get into the next block. \n\n![](https://m.stacker.news/47422)\n\nPurple blocks on the right are confirmed blocks with information about the fee rate (sat/vB), about when the block was produced, and the number of transactions in the block.\n\nGreen blocks on the left are projected blocks.\n\n![](https://m.stacker.news/47423)\n\nFee estimations only work as a guide, and confirmed blocks might differ from projections. \n\nIn the search bar on the top right, you can copy/paste a tx ID to see its status in the mempool.\n\nYou can also paste e.g. a Bitcoin address to find information about it (e.g. balance).\n\n![](https://m.stacker.news/47424)\n\nHistorical graphs can provide a 21,000 feet view on e.g. fees, hashrate etc.\n\n![](https://m.stacker.news/47425)\n\nThe mining dashboard provides stats and visualizations about the status of Bitcoin mining.\n\n![](https://m.stacker.news/47426)\n\nThere is also a dashboard for the Lightning Network with info about nodes and channels.\n\n![](https://m.stacker.news/47427)\n\nMempool.space also supports Bitcoin testnets and the [Liquid Network](https://liquid.net/) sidechain @liquid.\n\n![](https://m.stacker.news/47428)\n\nThe open-source software is integrated with many wallets, mining pools and exchanges.\n\n## Host It Yourself If You Want With Raspberry Pi!\n\nYou can also host it yourself as a 1-click installation on Raspberry Pi full node distros such as e.g. [Umbrel](https://umbrel.com/), [Start9](https://start9.com/), or [RaspiBlitz](https://www.raspiblitz.org/). \n\nIf you're mining with a pool, you can use mempool.space to audit your pool whether there has been censorship or whether transactions had been prioritized. \n\nHosting the software yourself can also improve privacy if you're searching for a tx from a specific IP address etc. \n\nMempool.space was started in 2018 by @softsimon and wiz.\n\nThe software has no ads or 3rd party tracking. \n\nIt relies on community sponsorships. \n\nDonors can get their avatars listed on the About page.\n\n![](https://m.stacker.news/47429)\n\n## Mempool Accelerator\n\nMempool.space recently launched its Mempool Accelerator product that can help you bump up the fee of your transaction if you want to get it to the next block.\n\nThe service can be paid with Lightning or fiat (Apple Pay, Google Pay, Cash App Pay).\n\nThe mempool.space software can also be found in unexpected places!\n\nhttps://x.com/bitdriver_sv/status/1717345302561378376 \n\n![](https://m.stacker.news/47433)\n\n# Additional Resources\n\nPresentation by mempool.space CEO "wiz" at Bitcoin Nashville in July 2024:\n\nhttps://www.youtube.com/watch?v=AFnDVL6uM_4 \n\nTutorial by @IanM from 2021 (still relevant!):\n\nhttps://www.youtube.com/watch?v=vMlofE_GU3k&t=1s \n\n# Project Links\n\n[Website](https://mempool.space/)\n\n[X (Twitter)](https://x.com/mempool)\n\n[GitHub](https://github.com/mempool)\n\n[Nostr](https://njump.me/npub18d4r6wanxkyrdfjdrjqzj2ukua5cas669ew2g5w7lf4a8te7awzqey6lt3)\n\n[YouTube](https://www.youtube.com/@mempool)\n\n[BitcoinTV.com](https://bitcointv.com/c/mempool/videos)\n\n[Matrix](https://matrix.to/#/%23mempool:bitcoin.kyoto) \N 18557 \N 51769 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 22.954212698518 0 \N \N f 0 \N 0 29280913 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403706 2025-02-15 05:50:17.096 2025-03-29 22:39:49.992 \N How about Lyn Alden's AMA?\nhttps://stacker.news/items/64293 https://example.com/ 10554 301817 301817.403706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6602380010764 0 \N \N f 0 \N 0 129122208 0 f f \N \N \N \N 301817 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451296 2025-03-24 13:35:35.115 2025-03-29 22:39:49.992 \N For tax purposes for "exit price", using end-of-day / closing price should be sufficient. Since this is an ad-hoc, real-time report, you might be generating the report before the end of the day, so maybe using the open price at the beginning of the trading day works better.\n\nAs long as it is consistently used is key.\n\nWhere an approach doesn't pass muster is where a trader, for example, uses the open price for one trade, and then actual trade price for the next trade, and then maybe closing price for a third trade -- each chosen because it was advantagious for minimizing reported gains. That is what they don't want to see. https://example.com/ 19378 451269 451208.451239.451250.451269.451296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.33181054794347 0 \N \N f 0 \N 0 117014149 0 f f \N \N \N \N 451208 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423181 2025-03-03 04:32:58.399 2025-03-29 22:39:49.992 \N It is my understanding that nothing is censored here. Users can ignore, mute or flag an account, which would diminish the visibility of individual posts. https://example.com/ 10302 422483 422483.423181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5671199434919 0 \N \N f 0 \N 0 171356739 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448889 2025-03-23 00:43:03.044 2025-03-29 22:39:49.993 \N Nemo sat attack,\nOrthwyrm snail marching slowly on,\nSiggy the wise.\n\nTodays haiku in honour of the three stackers who have made me most welcome. https://example.com/ 10698 448884 448879.448884.448889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.493892910214413 0 \N \N f 0 \N 0 52866087 0 f f \N \N \N \N 448879 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52097 2023-08-19 08:30:19.093 2025-03-29 22:39:47.604 I'm Seth For Privacy, freedom maximalist and VP of Cake Wallet - AMA! Hey everyone, thanks so much for jumping in for this AMA! If you want to learn more about what I do, what I love, or where I dedicate my time, here are some links to get you started:\n\n- Blog: https://sethforprivacy.com\n- My privacy and Bitcoin focused podcast, Opt Out: https://optoutpod.com\n- More about Cake Wallet, a privacy-centric Bitcoin/Monero/etc. wallet: cakewallet.com\n\n## Privacy resources\n\n- How I would approach the personal privacy journey if I had to start over: https://sethforprivacy.com/posts/privacy-first-steps/\n- Favorite privacy course, made by a friend, the host of the Watchman Privacy podcast: https://escapethetechnocracy.com/\n- Favorite privacy YouTuber (also a friend, and coworker now!): https://www.youtube.com/@techlore\n\n## Random links\n\n- Learn more about Silent Payments for Bitcoin: https://silentpayments.xyz\n- Self-hosted nodes, resources, and repos I provide, plus how to connect 1:1: https://sethforprivacy.com/about/ \N 10536 \N 52097 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.3956266342067 0 \N \N f 0 \N 0 187727668 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 426964 2025-03-06 00:07:08.306 2025-03-29 22:39:49.992 \N If Ark does what it says it will, then I think the privacy benefit would be massive https://example.com/ 1424 426954 426954.426964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.480353595719 0 \N \N f 0 \N 0 10335676 0 f f \N \N \N \N 426954 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422069 2025-03-02 08:58:21.257 2025-03-29 22:39:49.993 \N I believe that most people suffer from the inability to question authority and are susceptible to state-funded propaganda. This is especially the case among today's youth, which is extremely disappointing. I had absolutely no friends in my teenage years and early 20's because most people my age were new age Marxists at heart, who had never experienced a day of communism or repression in their lives. It always confused me why Maoists weren't equated to the Nazis on the "spectrum of evil". The whitewashing of socialism is truly evil. \n\nAnother factor I believe is "depression and anxiety". A majority of young people these days - my peers - find it fashionable to claim to be depressed or anxious. This is such a massive big-pharma psyop that is only now becoming mainstream. The "chemical imbalance" story of depression is absolutely falling apart. Plenty of friends of mine were medicated using depression meds from the time they were 5 years old. This has led to the creation of like-minded robots that are programmed to accept narratives. https://www.telegraph.co.uk/news/2022/07/20/depression-not-caused-chemical-imbalance/\n\nWe live in a baffling world of dichotomies. When I talk to peers, I am absolutely devastated by the state of this world. When I talk to bitcoiners and scroll through SN, I am looking forward to having a family in the monetary renaissance ahead :) https://example.com/ 5794 422056 422056.422069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8520687119034 0 \N \N f 0 \N 0 202716589 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422290 2025-03-02 11:06:05.586 2025-03-29 22:39:49.993 \N Cancer sucks just went to the hospital with my family to say goodbye to my step mom, she’s 70 and fought it like a champ! https://example.com/ 2776 421567 421567.422290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.80724978348239 0 \N \N f 0 \N 0 54396111 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421156 2025-03-01 13:02:13.853 2025-03-29 22:39:49.993 \N I started work on this over 2 years ago, and finally pushed it over the line. Happy to answer any questions over the next 48h or so. https://example.com/ 910 420620 420620.421156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8542057751456 0 \N \N f 0 \N 0 230348084 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448892 2025-03-23 00:46:22.78 2025-03-29 22:39:49.993 \N Some self-rules I am trying to follow:\n- never engage in a "debate" with shitcoiners. Is wasting time and energy. They just want to suck that energy from you. And for what? In the end they will never want to be bitcoiners (some just pretending).\n- never answer to "anon" SN accounts. Again is wasting time and is like talking to the wall.\n- laugh every day with a meme or joke. Nowadays people forgot to laugh. It's sad to see this. Also few people have the sense of humor. But yeah bitcoiners have the most.\n- engage in discussions only if the OP also is responding and/or others are commenting valuable information.\n- if the subject doesn't fit my expertise, better STFU and just read others comments. Sometimes I am called, but if I do not have a specific answer, I will pass the question to somebody else (if I know their expertise).\n- zaping depends 100% of the content, not the OP. I never zap because was posted by x or y, without reading it. And I use different levels of zapping. Sometimes I zap first a little bit and later (if is a long post) after I read the post, I am zapping again accordingly. https://example.com/ 14168 447818 447818.448892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8561688625255 0 \N \N f 0 \N 0 85901719 0 f f \N \N \N \N 447818 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 419661 2025-02-28 01:16:21.957 2025-03-29 22:39:47.604 Meme Monday: Best Bitcoin Memes Earn Sats | Sponsored by Zap.meme Time for Meme Monday sponsored by Zap.meme!\n\n![logo-md.png](https://m.stacker.news/15796)\n\n[Zap.meme](https://zap.meme/) is a brand new meme platform (currently competing in the PlebLab's Top Builder competition) where you can create and share memes and emojis, and earn Bitcoin!\n\nLast week's Meme Monday winner sent in [this meme](https://stacker.news/items/413754), and this week we have 85,000 sats up for grabs:\n- 50,000 sats for 1st place\n- 25,000 sats for 2nd place\n- 10,000 sats for 3rd place\n\nThe winner will be the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow, and 2nd and 3rd place finishers will be determined by the @zapmeme team.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 10549 \N 419661 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 10.3284670200302 0 \N \N f 0 \N 0 166374050 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436777 2025-03-13 22:11:13.884 2025-03-29 22:39:47.604 Tornado Cash Developer Sentenced to 64 Months in Prison by Dutch Court \N https://markets.businessinsider.com/news/currencies/tornado-cash-developer-alexey-pertsev-found-guilty-of-money-laundering-1033375734?op=1 16351 \N 436777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.20013537322352 0 \N \N f 0 \N 0 93534203 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437399 2025-03-14 13:45:52.641 2025-03-29 22:39:49.993 \N > Saylor probably personally does jack shit to help Bitcoin's adoption as a medium of exchange, which is like priority number 1 right now for me personally\n\nHe announced a few days ago that MS are looking into Lightning R&D for enterprise applications, so it'll be interesting to see what happens with that. https://example.com/ 9537 437392 437044.437337.437356.437392.437399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.44433138219646 0 \N \N f 0 \N 0 128262735 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437363 2025-03-14 13:12:07.294 2025-03-29 22:39:49.993 \N I think they want to be able to do cheap forex through Bitcoin.\n\nThat is, if you want to transfer/convert currency A to currency B they would buy Bitcoin with currency A, then transfer Bitcoin to a wallet in country B, then buy currency B with that Bitcoin.\n\nBasically using the Bitcoin network as a cheap money transfer mechanism. https://example.com/ 647 437233 437233.437363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9556533028089 0 \N \N f 0 \N 0 194086859 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448895 2025-03-23 00:48:13.095 2025-03-29 22:39:49.993 \N Honestly I like it. When I first joined, I was afraid to zap or spend sats willy nilly. It's got me out of the mindset that every single sat is a super precious thing. I like being able to spend them. I enjoy zapping posts. https://example.com/ 1038 448888 448888.448895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.52499399318847 0 \N \N f 0 \N 0 77077866 0 f f \N \N \N \N 448888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437275 2025-03-14 12:23:51.959 2025-03-29 22:39:49.993 \N Probably just stare at them with a certain level of fear depending on how stereotypical they look as an alien. https://example.com/ 14909 435944 435944.437275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.21582011067115 0 \N \N f 0 \N 0 124410424 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435204 2025-03-12 14:25:00.251 2025-03-29 22:39:49.993 \N > Always assume there is something you can learn from another person\n\nThis mindset is so important, and sometimes worth brute-forcing into your mind.\n\nThe conversations are easy and natural when I already believe I'm talking to someone I can learn from, and it's someone I find interesting. \n\nWhen those 2 things aren't the case is when it gets tricky. But that's where the reps are.\n\n https://example.com/ 19292 435194 434795.434798.435179.435194.435204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.32975166110365 0 \N \N f 664036666 \N 7 9997331 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406928 2025-02-17 16:28:10.428 2025-03-29 22:39:47.604 Why I'm done with non-custodial mobile Lightning wallets I really gave it a try, Blixt, Breez and last but not least Phoenix. With the latter, I had more than 15 channels open and inbound liquidity scattered all over the place. In total enough inbound liq but every other receiving transaction opened a new channel with 3000 sat fees. I'm done with it.\n\nWhat's next?\n\n1. I keep my own node with private channels to stacker.news ;-) to try things out and learn. I use RTL and Zeus as the mobile wallet. This gives me full control. I use it just to zap a few sats on nostr or tips in general.\n\n2. I will use from now on WoS (yes throw tomatoes please) because it just works! More than 500k sats I will swap out to on-chain using boltz.exchange to self-custody my coins. \n\nOT:\nI believe that's the way to go to on-board newbies: Show them WoS, send them a few sats for the bond to buy btc on robosats, let them receive the sats in WoS and show them how to swap out to self custody on-chain using exchanges like boltz! Later they can learn how to coinjoin with Sparrow.\n\nMany thanks for your attention.\n\n\n\n\n\n\n \N 16282 \N 406928 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 10.7643627078622 0 \N \N f 0 \N 0 54030075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52191 2023-08-19 11:48:29.879 2025-03-29 22:39:47.604 What's your daily screen time? **Yesterday, I had to sit before screen for almost 11 hours.** (Although it's not my daily average which is barely 5 to 6 hours.) \n\nFor your guess, it was for two back to back horror thrillers, SN and some personal accounts work. \n\nJust got curious about yours, so why not tell SN...\n\n**What's your daily screen time?** \N 12561 \N 52191 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.6064336434419 0 \N \N f 0 \N 0 78537882 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 409628 2025-02-19 17:56:35.611 2025-03-29 22:39:47.604 Competition and trust in the private provision of money | Article Review So, after a week's hiatus, mainly due to busyness but also due to paying too much attention to the election, I'm back with another academic article review :)\n\nThis time, we'll be taking a look at ["Money is an experience good: Competition and trust in the private provision of money"](https://www.sciencedirect.com/science/article/pii/S0304393212001110) (2012), by Ramon Marimon, Juan Pablo Nicolini, and Pedro Teles.\n\nThe paper is published in the *Journal of Monetary Economics*. JME, as its name suggests, is one of the top journals in the world about monetary economics, so this paper's got some serious cachet!\n\n## Review \n\nThis paper asks a question that should be of interest to any Bitcoiner: "Can privately issued currency be efficiently provided by a competitive market for currency?"\n\nThis question is of interest to Bitcoiners because Bitcoin is exactly that: privately issued currency competing in a marketplace of currencies (shitcoins, fiat, gift cards... these all count.)\n\nThis paper shows that competitive markets *cannot* generally provide currency efficiently *unless* the currency issuers can *commit* to a future monetary policy path (i.e. they can commit to no inflation, or a fixed and scheduled inflation of the money supply.)\n\nNow, what does that freakin' sound like? It sounds like Bitcoin! Bitcoin is a privately issued currency with a fixed monetary policy path. As long as Bitcoin's commitment to its predefined path remains credible, Bitcoin allows for an efficient monetary equilibrium to emerge. (More on credible commitment later.)\n\nThe argument is basically that without a *credible commitment mechanism*, currency issuers will always have an incentive to inflate the money supply once some people in the economy are holding their currency. They have an incentive to do so in order to reduce their nominal liabilities. Even if an issuer has no plans to inflate the money supply, they cannot credibly signal this to the market. Thus, zero nominal rate (a condition for efficiency) cannot be sustained in a competitive equilibrium without credible commitment.\n\nThis brings us back to Bitcoin. How does Bitcoin credibly commit to its monetary policy path? \n\nIn theory, there is no credible commitment mechanism, even in Bitcoin, because the core developers may at some point in the future decide on a new monetary policy path, for example by issuing [tail emissions](https://petertodd.org/2022/surprisingly-tail-emission-is-not-inflationary). \n\nIn practice, however, Bitcoin's decentralization offers users some assurance of monetary policy stability. This leads us to the debate on [ossification](https://blog.bitfinex.com/education/is-ossification-good-or-bad-for-bitcoin). As Jimmy Song has [discussed](https://stacker.news/items/739886), Bitcoin is not just a technology, it is *money*, and this paper confirms Jimmy's intuition that ossification is an important feature of high quality, reliable money.\n\nSince I started reviewing academic economics papers related to Bitcoin, I've been pleasantly surprised at how often they confirm many of Bitcoiners' key intuitions, including [Bitcoin's utility for international transfers](https://stacker.news/items/727081), [Bitcoin's disciplining effect on government deficits](https://stacker.news/items/734528), and now the importance of Bitcoin's fixed supply schedule.\n\nMore and more, the evidence is piling up that Bitcoin is not just sound money in the minds of Bitcoiners, but it is sound money according to economic theory.\n\n## Do the authors understand Bitcoin?\n\nIrrelevant, as the paper is not directly about Bitcoin.\n\n## Takeaways for Bitcoiners\n\n- Competitive currency markets are not efficient unless issuers can credibly commit to future monetary policy paths.\n\n- Bitcoin's decentralization offers some credible commitment about its future monetary policy path.\n\n- Ossification is an important feature of high quality money, and high quality (trustworthy) money is needed for efficient currency markets.\n\n\n## Selected quotes\n\n(Some quotes modified for readability)\n\n> Can currency be efficiently provided by competitive markets? A traditional laissez-faire view--as has been expressed, for example, by Hayek--argues that competition drives the price of money (the nominal interest rate) to zero and private provision of currency is efficient.\n\n> We show that there is a major flaw in this competition argument, when applied to fiat money: If suppliers of currency cannot commit to their future actions, then competition loses its bite. Once agents hold a particular currency, there may be an incentive for the issuer to inflate the price of goods in terms of this currency, thereby reducing its outstanding liabilities.\n\n> Does competition still drive promised rates of return to the efficient level? Not if issuers of currencies are not trusted.\n\n> With commitment, currency competition achieves the efficient (Friedman rule) monetary equilibrium, as Hayek envisioned. \n\n> Without commitment, negative inflation cannot be sustained... (and) Hayek's conjecture that efficient monetary equilibria can be achieved through currency competition is not verified.\n\n> In one sense, money is also an experience good. The quality of money is the amount of goods that money can buy, which can only be observed ex post... The mechanism that can sustain high quality is trust, not competition.\n\n\n## Links to previous reviews\n\n- [Bitcoin: What Does Mainstream Economics Have to Say? (2024)](https://stacker.news/items/745057)\n\n- [Unique Implementation of Permanent Primary Deficits? (2024)](https://stacker.news/items/734528)\n\n- [Bitcoin Pricing, Adoption, and Usage: Theory and Evidence (2016)](https://stacker.news/items/727081)\n\n\n\n \N 16956 \N 409628 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7477090578314 0 \N \N f 0 \N 0 242415815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413921 2025-02-23 14:28:47.633 2025-03-29 22:39:49.993 \N https://m.youtube.com/watch?v=uYzF063OqNc&pp=ygUUdHVydGxlIHR3aW5zIGJpdGNvaW4%3D\n\nYou might have seen it but there is a cartoon called Tuttle Twins, they did an episode on bitcoin. Quite funny for adults too! Couldn't find the full episode sorry https://example.com/ 902 413858 413085.413858.413921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.28328566732745 0 \N \N f 0 \N 0 6040178 0 f f \N \N \N \N 413085 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444400 2025-03-19 20:59:51.01 2025-03-29 22:39:49.993 \N There is something very fishy going on in Bitcoin Core indeed. I have another "anecdote" involving Anthony Towns and several other developers and maintainers:\n\nIn v26.0 Marco Falke saw fit to redefine the description of the `datacarriersize` config option from:\n\n"Maximum size of data in data carrier transactions we relay and mine"\n\nto\n\n"Relay and mine transactions whose data-carrying raw scriptPubKey is of this size or less".\n\nAJ Towns and Gibbs ACKed the redefinition: https://twitter.com/oomahq/status/1742679458530672642\n\n\nThis was around the same time @lukedashjr was proposing to extend the applicability of `datacarrier` to also catch inscriptions. Then Gloria Zhao and Ava Chow (Bitcoin Core maintainers with commit access) used that new meaning of `datacarriersize` as an argument to reject the fix (for non autists: inscriptions store they data in the input section of transactions, while "scriptPubKey" means output, so they narrowed the applicability of `datacarriersize` in its description text).\n\n\nLuke's PR: https://github.com/bitcoin/bitcoin/pull/28408\n\nThis is particularly infuriating since Luke is also the developer who originally contributed the `datacarrier` and `datacarriersize` config options to Bitcoin Core back in 2014. They redefined the meaning of his contribution in his face to be able to reject his new work more comfortably.\n\nHere's some Twitter receipts of Ava Chow arguing that the "inscription bug" is fixed due to the "amended" meaning of `datacarriersize`:\n\n![GDAYsufagAESvq_.png](https://m.stacker.news/17775)\n![GDAYtguaQAIQGkM.png](https://m.stacker.news/17776) https://example.com/ 1428 444364 444236.444364.444400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.29233474162507 0 \N \N f 0 \N 0 188976175 0 f f \N \N \N \N 444236 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422031 2025-03-02 08:08:26.967 2025-03-29 22:39:49.994 \N With a new implementation like splicing, I am curious what the "adoption" process looks like for getting node operators to use and implement the feature (assuming this is how it works)? \n\nIs this something where you reach out to operators with the new API/docs and work with them to build it into their workflow? What does the testing/release process look like for this? (I apologize in advance if this is already documented somewhere!) https://example.com/ 21303 422023 422014.422022.422023.422031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.77954869510327 0 \N \N f 0 \N 0 230429784 0 f f \N \N \N \N 422014 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408109 2025-02-18 15:09:54.107 2025-03-29 22:39:49.994 \N "You need to go to college, right now, at age 18. If you delay it, even for a moment, your brain will wither and you will be unsuccessful forever" https://example.com/ 1411 408049 408049.408109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9363383078648 0 \N \N f 0 \N 0 96803625 0 f f \N \N \N \N 408049 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408273 2025-02-18 17:02:56.454 2025-03-29 22:39:49.994 \N > Meanwhile, only ~€1.2 billion in criminal funds are confiscated each year. (...) They're willing to spend 100x more than what they benefit from implementing KYC.\n\nThat is very shallow analysis and poor reasoning. For better reasoning make a counterfactual analysis. \n\nWhat happens in the case of not doing an intervention? Perhaps not doing an intervention increases criminal liquidity flow 1000x and it's still net positive to make an intervention? https://example.com/ 5495 408270 407903.408269.408270.408273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.90557582726861 0 \N \N f 0 \N 0 217797471 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437978 2025-03-15 04:36:23.451 2025-03-29 22:39:49.994 \N Day 336 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 12736 437872 437769.437872.437978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2904722942683 0 \N \N f 0 \N 0 187717022 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408275 2025-02-18 17:04:15.53 2025-03-29 22:39:49.994 \N It's hard to articulate but it does seem to get “user attention” to another social platform requires some sort of incentive model built in partly because of the ridiculous amount of options a person can share their opinions. Keeping it p2p seems letting off the gas a bit. I think leaving it up to the community to decide is ultimately the right decision at least on sn. I enjoy the rewards but my bigger worry is about the multiple accounts stacking sats and leaving them abandon. https://example.com/ 15146 408262 408255.408257.408262.408275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.89885344096847 0 \N \N f 0 \N 0 4039199 0 f f \N \N \N \N 408255 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408295 2025-02-18 17:21:59.549 2025-03-29 22:39:49.994 \N My paper got accepted for a conference! https://example.com/ 20683 408149 407777.408116.408149.408295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9482709430534 0 \N \N f 0 \N 0 111451167 0 f f \N \N \N \N 407777 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421239 2025-03-01 14:12:07.132 2025-03-29 22:39:49.994 \N This is the magic of SN! \n\nI've been doing a little research into internet tipping outside the bitcoin world, and by far the most common response is that money would ruin the community, or the interaction or something. \n\nAnd yet here I think the money is an integral part if the experience and it only makes it better. It doesn't ruin anything. \n\nIs it just a bitcoiner thing or what? https://example.com/ 16809 420404 420404.421239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.46626348472994 0 \N \N f 0 \N 0 12257741 0 f f \N \N \N \N 420404 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408121 2025-02-18 15:18:52.448 2025-03-29 22:39:49.994 \N The real peter todd laughed at me for not running a bitcoin node at a conference. Motivated me to run one. Thank you 🙏🏼 https://example.com/ 5776 408111 408068.408111.408121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.91761924418 0 \N \N f 0 \N 0 153242557 0 f f \N \N \N \N 408068 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421236 2025-03-01 14:08:40.702 2025-03-29 22:39:49.995 \N I don't get the whole anti-eating bugs thing. I definitely get the anti-being forced to eat bugs thing. I'm no fan of the WEF. But I definitely don't get the whole anti-just eating bugs because they're good to eat thing. It seems to me that the ideas of being forced to eat bugs and just eating bugs because they're healthy and cheep often times get conflated. https://example.com/ 1833 421092 421092.421236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5335246036162 0 \N \N f 0 \N 0 21156018 0 f f \N \N \N \N 421092 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430955 2025-03-09 14:28:54.207 2025-03-29 22:39:49.995 \N Pretty cool project\n\n1. I think its cool that one has to pay to write or signup\n\n2. Paying for an answer that one has not read yet is weird. What if somebody answers a shit answer but I only find out the answer was shit AFTER I payed for it.\n\nMy suggestion: Let the asker pay a bounty and the asker gives the bounty to his answer of choice. Let the people answering compete for the best answer!\n\nThis would also prohibit the typical stackoverflow shit answers like "why do you even ask, just do it like this: ".\n https://example.com/ 5752 430949 430949.430955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0808888389448 0 \N \N f 0 \N 0 99590474 0 f f \N \N \N \N 430949 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422259 2025-03-02 10:47:39.473 2025-03-29 22:39:49.995 \N one thing is for sure, a couple of hundred years ago, things didn't change that much between generations, the pace of change we've seen maybe the past 100 years has been crazy https://example.com/ 20754 422258 422258.422259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1726628196127 0 \N \N f 0 \N 0 179762954 0 f f \N \N \N \N 422258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434097 2025-03-11 15:47:06.623 2025-03-29 22:39:47.604 Notes On Last Night's Meetup I posted yesterday about a local meetup I planned to attend:\nhttps://stacker.news/items/650172/r/siggy47\n\nOnce again, I had a great time. Since this was the second meetup I attended, I'm getting to know a few of the people. \n\nI know I'm repeating myself, but I can't emphasize enough how much I enjoy just socializing with fellow bitcoiners. As we all know, it's not easy to find people to talk to about this stuff among family and friends. \n\nThere are a number of meetups in the general NYC metropolitan area, and some of these guys travel long distances to participate in different events. I plan to join this circuit myself. \n\nEach time I go, I learn a lot. It seems like everyone knows something that I didn't have a clue about before I walked in. \n\nThat's great, but what's even better, and a little unexpected for me, was the almost immediate camaraderie that develops. Putting all else aside, it's simply a hell of a lot of fun to hang out with bitcoiners. \n\nThanks once again to our generous host, @Simaan, for sponsoring this event. \N 7978 \N 434097 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 17.2624448272863 0 \N \N f 0 \N 0 187817699 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421240 2025-03-01 14:12:08.707 2025-03-29 22:39:47.604 GrapheneOS: Debunking highly misleading and inaccurate article about the Pixel 9 There's a highly inaccurate article about Pixels from Cybernews making the rounds everywhere in privacy communities. It gets the details nearly completely wrong and thoroughly misrepresents things like the optional network-based location used nearly everywhere as Pixel specific.\n\n**Any non-Pixel device with the standard Google Play integration has similar Google service integration doing the same things**. You don't avoid it at all by using a non-Pixel or an older Pixel, but you do end up with a device that's far less secure and adds OEM services with their own privacy issues.\n\nIt goes through connections for the Google Play network-based location that's offering as an option during the initial setup wizard, the optional Google Play account-based device management, Google Play feature flags, Google Play telemetry, etc. It gets a lot of details wrong.\n\niOS has direct equivalents to everything that's covered.\n\nIf what people take from the article is that they should use a non-Pixel Android device with Google Play, they'll have a dramatically less secure device with the same privacy issues and additional ones from OEM services. If what people take from the article is they should use an iPhone instead of a Pixel, they'll have a device with comparable security and similar privacy invasive default connections. iOS does provide better privacy from third party apps than AOSP or the stock Pixel OS, at least.\n\nUnfortunately, the article contributes to people using typical highly insecure Android devices with additional privacy invasive connections, not fewer. If it was promoting iOS over Android, at least it would be helpful overall despite being highly inaccurate. Tech news is awful. People are having their privacy and security harmed by journalists misleading them because most journalists don't do basic due diligence and simply repeat claims from elsewhere without verification. Many people in the privacy and security communities are doing the same thing.\n\nGrapheneOS is a major security upgrade over the stock Pixel OS or iPhone, but it doesn't mean we're on board with spreading misinformation about either of those. They're the most secure smartphone options and iOS is a clear next best overall choice for privacy after GrapheneOS. iOS has important privacy features missing in standard Android. Our Storage Scopes feature is needed for parity with iOS. Our Contact Scopes is better than what they added in iOS 18 but it's similar. iOS having better privacy FROM APPS than Android definitely does check out.\n\nThe idea that iPhones have better privacy from Apple than Pixels do from Google is largely just a misconception and there's a whole lot of confirmation bias happening. Apple does have better end-to-end encryption support which most users aren't actually enabling for iCloud, etc. There are a lot of alternative operating systems and supposedly private/secure phone products. Nearly all of these have dramatically worse security than the stock Pixel OS or an iPhone. Nearly all have worse privacy from apps than iOS. They have their own problematic connections.\n\nIn terms of privacy from apps, GrapheneOS is competitive with iOS with both advantages and disadvantages. In terms of overall privacy, GrapheneOS is a significant upgrade. Security is a much clearer win for GrapheneOS since Pixels are quite competitive without our work anyway. Android has useful privacy features unavailable in iOS such as user profiles, Private Space in Android 15, better VPN support, etc. GrapheneOS adds more advantages, and we address the weakness of privacy from apps but not yet to the point it's a clear upgrade in that one area.\n\n https://discuss.grapheneos.org/d/16338-highly-misleading-and-inaccurate-article-from-cybernews-about-the-pixel-9 4395 \N 421240 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.1995556276591 0 \N \N f 0 \N 0 54349606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421241 2025-03-01 14:12:24.971 2025-03-29 22:39:47.604 Direct Link to new bitcoin-dev Mailing List using Google Groups. \N https://groups.google.com/g/bitcoindev 19117 \N 421241 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.21279694361236 0 \N \N f 0 \N 0 50141178 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441757 2025-03-18 09:21:29.123 2025-03-29 22:39:49.995 \N Nope. Drivechains can be attacked with less than 51% https://example.com/ 21398 441753 441753.441757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7035402271363 0 \N \N f 0 \N 0 41553074 0 f f \N \N \N \N 441753 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421175 2025-03-01 13:20:19.622 2025-03-29 22:39:49.995 \N > If the incentives of the social internet are status and validation, if the social internet is merely a convenient venue to get what we want from other humans, proliferation of strong AI will kill it because AI will digitally represent us better than we do.\n\nI think you're on to something here. It is obvious that the social internet is already mostly fake and the new AI tools will just increase the velocity of fakeness. I hadn't thought about this before in regards to social internet but many things in human history swing from extremes. I suspect the more and more AI / fake the internet gets the more desire for real things will rise. \n\nI think we are still in the early phases of adapting as a species to the always connected internet. I think we are finding the edges. Some of us, especially those that work on the systems have long been aware of the negative side of this connectivity to an artificial world that presents itself falsely as real. More and more the users of this world are seeing the issues with it. That will continue. I wonder how fast it will happen though.\n\nYour post reminds me of Dune (book) which predates Star Wars and I've heard was a strong influence. In Dune there is a ban on the use of computers. If you mentally suspend how unenforceable something like this would be, it is an interesting idea. I believe the idea Herbert had was that human kind was limited in its potential by computers. This might seem like a luddite idea but I think there may be some merit to it. When I watch people glued to their phones swiping TikTok videos full of nonsense I wonder how much potential is being wasted. I wonder how much we are being dumbed down by the algorithms built to entertain and addict us to these little dopamine hits. How close are we to finding the edge of this world and moving back into reality?\n\nI sometimes wonder what it would look like if we had a world wide economic catastrophe like the great depression? If even a few systems just stopped working? If some key people died. How many people would even know how to survive with slightly less modern conveniences? It hasn't been that long since the Covid pandemic gave us a little taste of what it might be like. The scary thing to me is that when I look around and talk to people it doesn't seem like most people learned any lessons. Few seem concerned about preparing for a really serious pandemic. I think we were very lucky it wasn't much worse. We are still recovering from IMO mostly self inflected wounds. What would a very deadly catastrophe bring? Does the average person even have a weeks worth of food? Do they have a means to protect their family? Do they know how to survive without power from the utility company? What if the Visa system went down? I know that I learned many things since 2020 because of how exposed and unprepared I felt. \n\nI think we have many hard lessons ahead. One may be a gift from AI. Getting us off the slow death feeding tube of fake connection. Maybe we need to OD first. I think we will lose many people. Many are already lost. Just don't be one of them.\n\nDang, I didn't mean to get that dark but you got me thinking @k00b. Need to check my generator now. https://example.com/ 8664 420794 420577.420794.421175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0666808681174 0 \N \N f 0 \N 0 172349150 0 f f \N \N \N \N 420577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410523 2025-02-20 14:15:19.872 2025-03-29 22:39:49.995 \N Just finished my new episode “The Bitcoin Retirement Plan.” \n\n*Dollar Cost Average (DCA) Bitcoin for your retirement? The best strategy to provide for your future? We ran the numbers.*\n\nCheck it out, folks 👇\n\n**On Stacker**: https://stacker.news/items/183327\n\n**On Substack**: https://open.substack.com/pub/carlbmenger/p/the-bitcoin-retirement-plan?\n\nFeedback truly appreciated! 🧡 https://example.com/ 9347 410230 410219.410230.410523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.76434715318432 0 \N \N f 0 \N 0 114793559 0 f f \N \N \N \N 410219 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 420734 2025-03-01 01:31:58.525 2025-03-29 22:39:49.995 \N Daryl Davis converted over 300 KKK members by talking g to them. Ghandi also comes to mind. There was also Jesus....\n\nPeople have absolutely changed the world by being kind, forgiving, and talking logically. \n\nDid anyone change your mind by being dogmatic and unforgiving? Because it seems to me that it's that exact behavior that's had an opposite effect on you. https://example.com/ 900 420620 420620.420734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9662150709001 0 \N \N f 0 \N 0 65863994 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430954 2025-03-09 14:28:38.294 2025-03-29 22:39:47.604 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/460304), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 2749 \N 430954 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.9011674393908 0 \N \N f 0 \N 0 78064003 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422255 2025-03-02 10:42:58.348 2025-03-29 22:39:49.995 \N Since I am both a vegan and a bitcoiner, I can confirm the similarity in mindset. \n\nBoth are radical departures from the status quo based on deeply held principles that require major sacrifices of convenience and come off as crazy and vaguely threatening. https://example.com/ 20117 422211 422014.422211.422255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2121149744683 0 \N \N f 0 \N 0 121460498 0 f f \N \N \N \N 422014 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422003 2025-03-02 07:08:07.47 2025-03-29 22:39:49.995 \N People have been thinking about this for awhile. It might be naive but I want it too. I want the world's entire banking system on my phone. https://example.com/ 718 349072 349072.422003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.22446047058563 0 \N \N f 0 \N 0 83176396 0 f f \N \N \N \N 349072 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 405529 2025-02-16 16:47:23.16 2025-03-29 22:39:49.995 \N NGL I needed this today, after being publicly shamed for being the only person to lose in week 1 of the nfl survivor pool lol https://example.com/ 2328 405496 405496.405529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4290607226202 0 \N \N f 0 \N 0 170218435 0 f f \N \N \N \N 405496 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458218 2025-03-29 05:46:40.786 2025-03-29 22:39:49.995 \N Day 209 of snailposting everyday 'til BTC hits $100k.\n\n...and 9 push-up(s).\n\n__@_'-' https://example.com/ 749 458210 458188.458210.458218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2960276395454 0 \N \N f 0 \N 0 15950950 0 f f \N \N \N \N 458188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402507 2025-02-13 19:19:28.656 2025-03-29 22:39:49.995 \N I don’t think kids should be given big gifts- your gift to them is to show them how to work and save their own sats https://example.com/ 8985 402412 401611.402412.402507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6131474465936 0 \N \N f 0 \N 0 156762792 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402559 2025-02-13 20:12:56.869 2025-03-29 22:39:49.995 \N I love this thread. I hope this weekly trend continues. It lets me know that others are out there building more great tools that we all need and want. \n\nI just published this article yesterday (https://www.whatisbitcoin.com/security/store-your-seed-phrase) and am working on getting the glossary page all sorted to make it easier to navigate and get to the content you actually want. \n\nOne more article to go in this mini-series all about seed phrase security. https://example.com/ 13143 402201 401783.402201.402559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6035721938115 0 \N \N f 0 \N 0 82741853 0 f f \N \N \N \N 401783 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410552 2025-02-20 14:31:27.1 2025-03-29 22:39:49.996 \N Have shared this story before. Won't let me copy the link for some reason so here is the copy/paste:\n\nBought a small amount of bitcoin in late 2016 (around .1 BTC) after hearing preston talk about it on the investors podcast. Had heard of it prior but thought it was a scam but respected Preston so thought I was missing something. Didn't pay much attention to it until the run up of 2017, as I was busy merging my business with another business at that time. Thought the 2017 bull run was totally insane but bought a bit more around the 15k mark and bought a bunch of shitcoins too.\n\nAs someone who stacked gold and silver coins for years, I really connected with the idea of digital gold but also got sucked into all the stupid shitcoin narratives as well.\n\nBear market hit, which made a lot of sense to me. It reminded me of the biotech bubble in 2015. Little did I know these similar patterns I was seeing was a sign of easy money and a completely broken monetary system but alas I knew enough to know that the burst was going to be epic. So I started DCAing on the way down, eth a bit too but I would say I was 90% bitcoin and 10% eth at that time. I sold all the other shitcoins I owned for bitcoin.\n\nA couple other things occurred in tradFi along the way that helped me connect the dots. There was the short vix trade blow up in feb 2018 and the repo spike in sept 2019 that gave me a couple more pieces to the "holy shit, shit is really broken" puzzle.\n\nThen March 2020 hits and everything in the world changes, they lock down the world and print ungodly amounts of money. My businesses revenue dropped by almost 90% while all the assets I owned were going completely parabolic. My balance sheet was stronger than ever while my income statement was a mess as I had almost no money coming in.\n\nThis is really where I started to dig in, study more and try to understand what the hell is going on. It was sometime in 2020 as well that eth said they were going to start the process to move to proof of stake. At that point I sold my remaining eth for bitcoin and have been a daily dca bitcoin only maxi ever since.\n\nSold my business in early 2022, sold my condo in the city and moved to a small ski resort town and semi retired. Now I work the odd contract job and make some commission sales from my former business, hang out with my kids, stack sats, shitpost on twitter and hang out on SN.\n\n(By the way, I think there is a valuable content opportunity in curating a bunch of cool bitcoin stories) https://example.com/ 15690 410223 410223.410552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6052496220383 0 \N \N f 0 \N 0 145810087 0 f f \N \N \N \N 410223 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403680 2025-02-15 05:22:57.513 2025-03-29 22:39:47.604 Bitpac: Publicly auditable cooperatives on bitcoin \N https://www.youtube.com/watch?v=RLh4CF7Sd_w 20062 \N 403680 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 23.7798644886986 0 \N \N f 0 \N 0 98459712 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430947 2025-03-09 14:25:20.942 2025-03-29 22:39:49.996 \N I don't know about you, but for me, when truly understanding the possible impact Bitcoin can give to the world, you just want to join the movement and contribute in any way you can to help it grow. I used my previous front end developing skills to start making small visual and practical Bitcoin related tools, and Mempool was the first one. https://example.com/ 11789 430857 430726.430729.430732.430748.430853.430857.430947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9718865648658 0 \N \N f 0 \N 0 235955392 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424263 2025-03-03 23:31:58.371 2025-03-29 22:39:49.996 \N Maybe I'm wrong. I've got a page not found on the second one. So links are safe @k00b ? https://example.com/ 21391 420666 420666.424263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2582168318384 0 \N \N f 0 \N 0 12971623 0 f f \N \N \N \N 420666 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444501 2025-03-20 00:14:13.292 2025-03-29 22:39:49.996 \N Helping a family member run their own full node https://example.com/ 3656 443598 443593.443598.444501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8187156325387 0 \N \N f 0 \N 0 181753347 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403619 2025-02-15 01:52:59.645 2025-03-29 22:39:49.996 \N putting together an outline of a public Stacker News Roadmap discussion for Monday\n\n👀 https://example.com/ 21482 403609 403609.403619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28478935812566 0 \N \N f 0 \N 0 197689382 0 f f \N \N \N \N 403609 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455376 2025-03-27 00:55:08.014 2025-03-29 22:39:49.996 \N One death is a tragedy. Millions, a statistic. https://example.com/ 20757 455080 455080.455376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5859407229249 0 \N \N f 0 \N 0 121732269 0 f f \N \N \N \N 455080 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414194 2025-02-23 17:54:32.233 2025-03-29 22:39:49.996 \N i work customer service for a large telecommunications company, and they are actively trying to make it worse. the automated system makes it intentionally difficult to speak with a live agent, and when you do it's going to be an outsourcer. everything is forced self-service, they want you to use their app or digital options, so they remove agent's abilities to assist customers over the phone. metrics are judged primarily by sales numbers and average call time, not resolving customer issues, or customer satisfaction.\n\ni will say i get highly discounted services, good pay and benefits, and work 100% from home. but it is very frustrating working customer service for a company that obviously does not care about providing good customer service. they view customer interactions as an opportunity to upsell or add services, that's about it. https://example.com/ 20225 413395 413395.414194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.39175656050171 0 \N \N f 0 \N 0 124208816 0 f f \N \N \N \N 413395 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444443 2025-03-19 22:00:51.665 2025-03-29 22:39:47.604 The War on Informality It's a long read, but well worth it.\n\nWhile it never mentions bitcoin, he touches on several topics we care about, such as privacy, evil bankers, etc.\n\nThe piece takes the form of 7 hours in London, describing all that's changed (mostly for the worst) since he moved away some years ago.\n\nHighly recommended, even though you likely won't agree with all his points of view. https://brettscott.substack.com/p/the-war-on-informality 17091 \N 444443 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 15.7249922247415 0 \N \N f 0 \N 0 103567180 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404483 2025-02-15 22:59:08.347 2025-03-29 22:39:47.604 I forked Stacker News and it felt so good… Just forked Stacker News! Fork #107. First Fork of the SN github repo in 3 months!\n\nWake up Sheeple! Free Open Source Software powering a high signal Bitcoin community is right at the footer of this page.\n\nStacker News is amazing! Sats are built-in as a required feature! There are no fake “SN Credits,” just real Bitcoin money. Withdraw direct to external wallet. ⚡️works p2p💪\n\n@ek @k00b the code for free! Don’t trust. Verify the algorithm to see for yourself what floats to the top. Put your sats where your mouth is! IT’s SO EARLY!\n\n@grayruby brings the content. Turns out we’re already too late to Bitcoin 😭. It’s not just cypherpunks anymore. There’s sports ball fans 🏈🏀⚾️\n\nAnd remember, just like Bitcoin, just because I can fork off and make my own Bitcoin Dog Stacker News with blackjack and hookers, doesn’t mean y’all will use it. It’s the cowboys that give SN its value 🥹\n\nVerify my fork for yourself. And GFY! (Go Fork Yourself!)\n\nhttps://github.com/realBitcoinDog/stacker.news\n\n![](https://m.stacker.news/55372.png) \N 16356 \N 404483 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.3781756016403 0 \N \N f 0 \N 0 75939819 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404431 2025-02-15 21:39:05.02 2025-03-29 22:39:47.604 First draft of my "Why you shouldn't use Stacker News" TABConf slide deck As I promised @birdeye21, here are the slides for the talk. I give it Saturday afternoon. I'd love some feedback if ya'll got any. Did I miss anything important? I tried to capture it all without dumping it all in one go.\n\n It definitely needs some trimming but I'll need a fresh set of eyes first.\n\nhttps://docs.google.com/presentation/d/1CSNsTTMhb0mlTr91tQIDInDBr-778Sy3o694lylKrjA/edit?usp=sharing \N 10060 \N 404431 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9428204487051 0 \N \N f 0 \N 0 42350660 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 433710 2025-03-11 10:34:32.082 2025-03-29 22:39:47.604 The People Want Degenerate Gambling BISQ has an escrow and dispute resolution system: https://docs.bisq.network/trading-rules\n\nSome people might enjoy a degenerate gambling website where you bet on the outcome of events (sports betting, who wins an election etc) that uses this system for its custody. \n\nThe person who builds this will likely make a bunch of money from collecting fees, but please for the love of humanity, be just a little humanitarian in this scenario where we're talking about enabling degenerate gambling lel, and don't fucking lie about what the system is. \n\nDon't call this decentralized. Someone has to push the button to tell the computer what the outcome was. Also you don't need overly complicated bullshit to make this work, often that over engineering merely serves the purpose of hiding what's actually happening. \n\nJust be an honest actor and make a bunch of money. \N 15243 \N 433710 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 27.2638038210195 0 \N \N f 0 \N 0 241202935 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451306 2025-03-24 13:41:07.547 2025-03-29 22:39:49.996 \N Started translating https://lightsats.com/ to Dutch https://example.com/ 1960 451258 451244.451258.451306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6688523345301 0 \N \N f 0 \N 0 165322553 0 f f \N \N \N \N 451244 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430200 2025-03-08 23:26:31.134 2025-03-29 22:39:49.996 \N Everything that happens to me is my own fault.\n\nThat gives me the power to become better, as I'm the only one I need to change to do so. https://example.com/ 21518 430039 429958.429970.429982.430020.430033.430038.430039.430200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8399760780745 0 \N \N f 0 \N 0 176885720 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422262 2025-03-02 10:50:05.255 2025-03-29 22:39:47.604 Don't Say I Can't. Say How Can I? There are few things more frustrating to me than hearing someone defeating themselves. Saying they can't do something when they can. We live in a time where it is almost a virtue to be a victim. To blame others for why you are in your current state. Now, part of this is true. We are all products of our time, our families, our culture, and our economies. Many of us have been abused or persecuted for various reasons. Many have enemies, people that hate them, and what us to fail. This has always been true and will likely remain to be true. So what.\n\nWhile there is value in understanding your situation it can be a trap. To only look at how you have been wronged, what you lack, how hard life is for you. That isn't a complete waste. But if that is all you do then it is a waste. You have power over yourself. You can choose what you do today, this hour, and this minute. We ALWAYS have a choice. \n\nThere will always be people smarter than me. There will always be someone born with more advantages than me. There will always be someone or something pushing against me. But I can move forward. I can press on. I have agency over my mind and body if I will take it. I can make my life better and the lives of others. In my experience people hold themselves back far more than others. Many here hate the state. I do as well. Its evil but many do not take their freedom back where they can. They don't do things they can do to make themselves more free. Freedom begins in the mind. Stop saying "I can't". Instead start saying, "How can I?"\n\nHow can I __? \N 16149 \N 422262 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.4457406486302 0 \N \N f 0 \N 0 922115 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436774 2025-03-13 22:07:59.828 2025-03-29 22:39:49.996 \N Tailscale + Zeus + Tor = God Mode https://example.com/ 659 436773 436752.436773.436774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4873678139556 0 \N \N f 0 \N 0 226077816 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451286 2025-03-24 13:31:01.764 2025-03-29 22:39:49.997 \N https://www.stacksats.how/ https://example.com/ 2757 451145 451145.451286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.574183290301 0 \N \N f 0 \N 0 222381287 0 f f \N \N \N \N 451145 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458266 2025-03-29 06:39:40.806 2025-03-29 22:39:49.997 \N ![GF6YBZrW0AEgbzv.png](https://m.stacker.news/15808) https://example.com/ 1162 458238 458227.458238.458266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4382743769245 0 \N \N f 0 \N 0 120286728 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 406274 2025-02-17 08:17:23.544 2025-03-29 22:39:49.997 \N I agree, but some people who post links are not necessarily the authors and often have no idea about the subject.\nSo I think it's better if they don't reply instead of spreading nonsense, or even better if they start learning about these topics instead of sharing a lot of (cheap) links. https://example.com/ 803 406236 406220.406236.406274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9634743416425 0 \N \N f 0 \N 0 66758906 0 f f \N \N \N \N 406220 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404529 2025-02-16 00:38:11.791 2025-03-29 22:39:49.997 \N This is a bit controversial and it doesn't fit 100% the scope of the thread, but remove free nym changes and remove free LN adresses etc. Make them cost a little sats. This way we can build up our profiles over time as we stack sats and it could be a monetization angle for the longer term :) I think users will mind when they hear the suggestion but I think if it's implemented it will feel quite natural https://example.com/ 21805 404398 402674.402749.403816.403974.404398.404529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.06075397093991 0 \N \N f 0 \N 0 215217725 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401236 2025-02-12 20:08:01.902 2025-03-29 22:39:49.997 \N Total number of zappers was 111, and can be found for all posts by hovering over the amount of sats on an item.\n\nThere were also more zaps yesterday than any other day since February, including the July 4th fireworks day… despite batching upgrades we made recently which cause the total zaps number to look smaller than it really is.\n\nAlso, if you search for top posts by votes and by sats, the Anita Posch satsraiser is #1 all-time. https://example.com/ 17517 400844 400758.400844.401236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.934950677013 0 \N \N f 0 \N 0 83472461 0 f f \N \N \N \N 400758 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404470 2025-02-15 22:33:51.991 2025-03-29 22:39:47.604 Final Draft ![](https://m.stacker.news/60570)\n\nSometimes you just don't have time to polish things the way you wish you could by a deadline. Anyway, I wanted to follow up on https://stacker.news/items/717596 for anyone curious, or especially for anyone that wants to do this as well tonight.\n\n# First off, here's the repo:\n\nhttps://github.com/ttooccooll/snickerbar.me\n\nPlease feel free to use yourself!\n\nAs you'll see in the pics, I've added a link to an Alex Gladstein video and put in a little more hand-holding on the token. I've been passing them out all month and this current iteration seems to be working best. \n\n**IMPORTANT: the Mrs. and I are putting packaging tape on the back of the token's QR code. You will need to as well if you want to give away anything more than a single sat[^1].**\n\nWithout this, it's just too bended from the ink and cutting. Making a readable QR code for the token has been a great educational journey for me in general. There's a lot of info in those little cashus! Needless to say, it's errorCorrectionLevel: 'L' and now only five tokens to a page instead of ten.\n\n# What else is new\n\nI'm not in as good of a financial position as I hoped, so I'm playing the music myself again. Not in any trouble, but let's just say that even if I didn't have multi-sig, the $5 wrench trick-or-treaters got bigger fish to fry. It's also going to rain here. All this also means I'm not dragging the organ out this year. I'm going to make some beats on the ipad and play some creepy DX-100. From the other room, I'll also play an old vinyl LP of spooky sounds.\n\n# Tunes for tonight:\n\nLaura Palmer Theme\na few of my creepy originals\nToccata and Fugue in D minor\nTheme from Quest for Glory 4\nTheme from Halloween\nsome creepy improv\n\n[I'll also be playing this video](https://stacker.news/items/748546) and do some walking of my kids of course too. What's your plan for tonight? Stay safe and stack candy!\n\n![](https://m.stacker.news/60571)\n\n# The future\n\nMy next goal is to rename this project breadcrumbs. It will no longer be Halloween themed and should be a way for you to leave cashus in random places to lead strangers to the orange pill all on their own.\n\n[^1]: I'm doing 21 sats per token, but you can fill them all out individually and even make each one a unique number of sats. \N 671 \N 404470 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.53103183056296 0 \N \N f 0 \N 0 187613696 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451304 2025-03-24 13:40:54.967 2025-03-29 22:39:47.605 What's your default tipping rate? Why? Mine is 888 - I just changed it from the default 10.\n\nI want to grow this ecosystem, and 10 sats won't do a whole lot. I also enjoy the number 8, infinity. \N 2640 \N 451304 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.5118296342143 0 \N \N f 0 \N 0 29894976 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450172 2025-03-23 19:18:13.005 2025-03-29 22:39:49.997 \N ![meme Monday](https://iili.io/HKPI6AB.jpg)\n\nCredit to ChairForce_BTC https://example.com/ 14381 5159 5159.450172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3962612600033 0 \N \N f 0 \N 0 8448438 0 f f \N \N \N \N 5159 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430971 2025-03-09 14:41:51.176 2025-03-29 22:39:49.997 \N @kr dropped a podcast with Burak about ark. I thought it was a nice introduction to what ark is and the overall goals! https://example.com/ 8242 430605 413007.430173.430605.430971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4555141626782 0 \N \N f 0 \N 0 164703234 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437620 2025-03-14 17:06:39.626 2025-03-29 22:39:50.226 \N # Tip of the day\n## Simple opsec with SBW and hosted channels (HC)\n\n1. Setup on your home personal node or a friend node a server for hosted channels using @fiatjaf [Poncho](https://github.com/fiatjaf/poncho) and [Cliche](https://github.com/fiatjaf/cliche). Or use any other HCP (hosted channel provider) available.\n2. Use [SBW.app](https://github.com/btcontract/wallet/) to open a HC with your personal HC server, or many HCs.\n\nAnytime you want to hide your sats from that HC, you just have to remove it from your channel list. Go to Lightning, swipe to the right the channel you want to hide and select remove.\n\nAnytime you want it back, just scan again that HC node address and select "use HC". Done, the channel is back again and your sats in it. Funds are safu.\n\nNobody could see / know about that channel if is not there.\nThis could be a simple opsec option at hand. https://example.com/ 902 437561 437233.437561.437620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6241839000279 0 \N \N f 0 \N 0 56183737 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410562 2025-02-20 14:40:27.273 2025-03-29 22:39:50.226 \N Self-custodial w/o compromises is absolutely what we're aiming for.\n\nAs far as SGX security, Intel has been pretty good about releasing mitigations and TCB recoveries in a timely manner. Usually that means we need to change a few compiler flags in exchange for reduced performance or update some certs. Running on the most recent Intel CPUs also helps a lot here. When the Lexe app wants to provision keys to the node, it can check that nodes have mitigations applied, are running on recent hardware, etc...\n\nAt the end of the day, security isn't all-or-nothing and I think SGX gets us to a good middle ground. https://example.com/ 811 410516 410358.410516.410562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1186426345923 0 \N \N f 0 \N 0 164202999 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458280 2025-03-29 07:00:17.994 2025-03-29 22:39:50.226 \N Day 186 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 18409 457760 457413.457760.458280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1320861421085 0 \N \N f 0 \N 0 75270489 0 f f \N \N \N \N 457413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424064 2025-03-03 20:01:20.494 2025-03-29 22:39:50.226 \N This is/was a clear and obvious example for the developed world of why Bitcoin is important. You don't need to agree or disagree with the initial decision or with the verdict, the truth is Bitcoin avoids this and protects the individual freedoms.\n\nThe developing world is full of examples, the western world of liberal democracies has this one as a prime example to showcase that **it can happen**, and when it does, you will be glad you have Bitcoin. https://example.com/ 19796 424046 424046.424064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1933283565192 0 \N \N f 0 \N 0 58863140 0 f f \N \N \N \N 424046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430978 2025-03-09 14:46:18.768 2025-03-29 22:39:50.231 \N Made 50k sats giving a former business partner some tax advice. Feeling pretty damn good about myself. That's enough work for today. https://example.com/ 21666 430917 430549.430560.430781.430912.430917.430978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0780961651185 0 \N \N f 0 \N 0 47902570 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451041 2025-03-24 11:09:02.946 2025-03-29 22:39:47.605 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/424745) are the updates stackers shared from all their latest work projects. \N 7674 \N 451041 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 12.4995076508396 0 \N \N f 0 \N 0 131047857 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450085 2025-03-23 18:40:26.672 2025-03-29 22:39:47.605 LOTR or Star Wars, and Why? I love both with the bottom of my heart.\n\nFor what I grew up on more was definitely lord of the rings. I watch the trilogy every christmas with my sister quoting our favorite lines and anticipating the epic battle scenes, conversations, and memes. \n\nIt makes us feel like kids again. And we never get tired of it because it is literally fantasy storytelling perfection 🤧\n\nPlease discuss away in the comments! \N 987 \N 450085 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.6940148803601 0 \N \N f 0 \N 0 185406017 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437652 2025-03-14 18:05:29.789 2025-03-29 22:39:50.226 \N so manny\n\n- vitamin K, codfish liver oil, vit E + D with glass of milk. fat soluble, milk increases absorption \n- 2+hr later/offset, 2mL magnesium chloride spiked sparkling water (cuz i like the bubbles). you gotta separate the magnesium/zinc from the milk iiuc b/c the calcium in the milk prevents uptake of magnesium \n\n- other assorted stuff, depending: zinc + copper (on alternating days), l-lysine, NMN sublingual powder, CoQ10, biotin\n- new stuff im trying lately: olive leaf extract, monolaurin, cat’s claw mostly cuz the names sound cool\n\nIm not really precise or regular with any of this stuff, which probably helps from overdosing?? idk 🤷 do your own research etc etc https://example.com/ 18829 437630 437630.437652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9736931781742 0 \N \N f 0 \N 0 102508603 0 f f \N \N \N \N 437630 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448393 2025-03-22 15:24:28.174 2025-03-29 22:39:50.229 \N Installing Linux on an old Thinkpad and working out how to use a Raspberry Pi to flash the bios and install coreboot firmware instead of whatever is on there. I'm going to run a Bitcoin node on there and use the machine as my sole access point for my cold wallet. Basically, trying to create a clean, open-source, no BS machine. \n\nI've never used Linux before, so this is proving to be both challenging and rewarding. https://example.com/ 12245 448359 448331.448342.448359.448393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13227849146632 0 \N \N f 0 \N 0 30073850 0 f f \N \N \N \N 448331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430977 2025-03-09 14:46:07.744 2025-03-29 22:39:50.229 \N This post seems like a shameless cash grab...and I approve. https://example.com/ 7979 430851 430726.430729.430732.430748.430851.430977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.74917836801477 0 \N \N f 0 \N 0 201561767 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404441 2025-02-15 21:56:54.92 2025-03-29 22:39:47.605 What do you think the next major win for bitcoin will be? I believe it will be a large sovereign putting it on its balance sheet. \N 15273 \N 404441 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9181073705451 0 \N \N f 0 \N 0 31539851 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404455 2025-02-15 22:11:19.492 2025-03-29 22:39:50.227 \N Hello all. Very excited to find this site after all the crap that went down on Reddit this year. I tried Lemmy but found the communities more insufferable than Reddit. https://example.com/ 18930 404046 404046.404455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7985045653239 0 \N \N f 0 \N 0 132741266 0 f f \N \N \N \N 404046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455367 2025-03-27 00:40:38.028 2025-03-29 22:39:50.227 \N Lending/borrowing BTC is only really useful for explicitly shorting BTC as in margin trading. It is otherwise too risky to borrow BTC, your loan could end up costing _way_ more than a loan denominated in a less volatile asset. For example, imagine borrowing 1 BTC in March 2020 and expecting to pay back the loan by the end of the year... you'd receive $4000 in value at the time of the loan and by the end of the year have to pay back over $50,000 in value. Not a very good deal for the borrower.\n\nLoans collateralized by BTC give borrowers the ability to unlock the value of their BTC without having to sell. Because the loans are over-collateralized, they can have lower interest rates than unsecured credit. It does of course require the borrower to already have assets in the form of BTC, so would not be appropriate for people who have very little in savings. But for people who hold BTC and want to access some of that value without having to sell, and are willing to maintain a sufficient collateral ratio to avoid liquidation, I think it is a good option.\n\nThere is a platform called Sovryn that offers both options, borrowing BTC, and borrowing using BTC as collateral: https://alpha.sovryn.app\n\nYou can look there and see the terms and interest rates and see what makes sense for your situation. https://example.com/ 21688 455363 455362.455363.455367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.439990110581 0 \N \N f 0 \N 0 81090356 0 f f \N \N \N \N 455362 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437686 2025-03-14 18:47:13.518 2025-03-29 22:39:50.229 \N By referring to GPUs you're definitely not mining bitcoin, since for over a decade now that ASICs have been available and dominating bitcoin mining.\n\nIn any case, regarding mining, profitability is not a unidimensional thing, it depends heavily on 2 big factors which are the price of electricity and the efficiency of the mining gear you're using. It also depends on the investment cost and time to pay it off, however that's a lot harder to reason about.\n\nSystems like bitcoin are almost always profitable for **someone** to mine, but unlikely that they're profitable to **everyone** unless there's a quick run up of price because deployment of new hashrate is constrained by the real world, while price can theoretically shoot up arbitrarily fast.\n\nThe mining difficulty adjusts with the observed hash rate, which means that if new hashing power comes online because it's currently possible to be profitable, the difficulty will go up, pricing out people who have either higher energy cost of lower efficiency devices. The opposite is also true, if the profitability is too low, many miners will be disconnected which in turn will make the difficulty go down and the profitability higher, bringing back new miners.\n\nThis means that the system tends to equilibrium and is by design always profitable for the marginal miner who can get access to the best gear and cheaper energy, aside from quick price swings which might make everyone or no one profitable for a while. https://example.com/ 5761 437583 437583.437686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.67300211990531 0 \N \N f 0 \N 0 236246607 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410566 2025-02-20 14:42:46.324 2025-03-29 22:39:50.23 \N ![](https://m.stacker.news/59462)\n\nHow do you feel about the way these look, @k00b?\n\nShould we change the verbiage to "Stack sats for discussing bitcoin?" or something similar? https://example.com/ 6058 410539 410409.410539.410566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.66553046193207 0 \N \N f 0 \N 0 145448442 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401960 2025-02-13 13:27:02.881 2025-03-29 22:39:47.605 mempool transaction accelerator \N https://nitter.at/mempool/status/1659619347910803466?ref=nobsbitcoin.com 1970 \N 401960 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 1.17034797280603 0 \N \N f 0 \N 0 197997563 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457909 2025-03-28 19:24:34.897 2025-03-29 22:39:47.605 The fascinating security model of dark web marketplaces \N https://boehs.org/node/dark-web-security 2196 \N 457909 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 14.4468422011395 0 \N \N f 0 \N 0 48275078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404444 2025-02-15 21:59:34.062 2025-03-29 22:39:47.605 📅 Get paid for your time in bitcoin - Cal.com has integrated lightning! \N https://cal.com/blog/introducing-alby-the-bitcoin-friendly-payment-solution 1490 \N 404444 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.779235248268613 0 \N \N f 0 \N 0 115272578 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413623 2025-02-23 11:59:27.859 2025-03-29 22:39:50.227 \N - my old past surviving in harsh communist regime, forged in fire...\n- sharp mind that always question everything\n- NEVER EVER trust or believe what govs / TV says. They lie ALL THE TIME\n- a good level of common sense\n- "follow the money" and you will find out the root of all evil\n- outside the box thinking. Studying long time how to be out of the system, I can see now the system with another eyes (birdeyes ... sic) and clearly see any BULLSHIT.\n- a high sense of humor makes you don't give a shit about everything.\n- "large groups of people must be controlled". How? With FEAR. Is so fucking simple and worked for millennia on dumb people. So stop living in fear.\n\n*very few stackers here knows what is to live in communist regime... and that's why so many of you guys fall into these traps. This is not a joke or bragging. I am a living survivor of those atrocities and you should study more what is coming for you. I warned you so many times here.* https://example.com/ 8472 413618 413618.413623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.42160564217008 0 \N \N f 0 \N 0 43196763 0 f f \N \N \N \N 413618 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404447 2025-02-15 22:01:32.666 2025-03-29 22:39:50.228 \N JUST DO IT! https://example.com/ 21159 333299 333299.404447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0197699125470407 0 \N \N f 0 \N 0 44342710 0 f f \N \N \N \N 333299 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430961 2025-03-09 14:34:54.74 2025-03-29 22:39:50.228 \N Sadly much less. The clients have gotten better and I really like the idea of the protocol but interaction, engagement, and zaps have all but dried up. Whenever I post anything now I feel like I’m just throwing my note into the void to be forgotten. The first 4-6 months were great though. Seems like things went downhill when Apple banned zapping notes and then got even worse when Wallet of Satoshi pulled out of the US.\n\nSome of it might just be me. A Twitter style social media never really appealed to me. Reddit (now SN) is more my style. https://example.com/ 18321 430626 430626.430961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.672530791468 0 \N \N f 0 \N 0 753734 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404493 2025-02-15 23:13:21.122 2025-03-29 22:39:50.228 \N > But the two “hacks” that produced the most reward for me were: confirming people’s opinions on a subject or saying something inflammatory. When I posted more thoughtful and balanced opinions, they produced fewer sats.\n\nThat's a valid critique, although I have seen plenty of thoughtful content get loads of sats. Plus, you're going to experience that kind of confirmation bias leaning on any platform, so I'd say we handle it decently well here https://example.com/ 15239 400350 400261.400350.404493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8206082381292 0 \N \N f 0 \N 0 207723997 0 f f \N \N \N \N 400261 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437476 2025-03-14 14:50:48.06 2025-03-29 22:39:50.228 \N > What was the last thing you bought over the Lightning Network?\n\nFood\n\n> How was your purchase experience?\n\nSmooth\n\n> Was it a faster or slower process than it would have been without Bitcoin?\n\nWay faster, less than 5 seconds\n\n--------------------------------\n\nThings are ready for adoption, the problems at the moment are not technical. We need to build tools and processes that are easier for non-technical people to securely use it in their daily lives. https://example.com/ 646 437455 437218.437437.437439.437443.437455.437476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3137420563181 0 \N \N f 0 \N 0 173199355 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414927 2025-02-24 12:04:28.966 2025-03-29 22:39:47.605 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help. \N 9348 \N 414927 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.1823137925104 0 \N \N f 0 \N 0 124114755 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424274 2025-03-03 23:44:16.914 2025-03-29 22:39:47.605 MAHA: Two Excellent Morning Reads—Science and Authority, RFK the Savior? I read a lot for my fiat jobs. Sometimes pretty interesting things come across my desk—today, maybe even relevant for SN eyes. \n\nStackers tend to be healthy, contrarian, obsessed with authorities overreaching. \n\nSo here we are:\n\nHere from Jesse Singal, via _Reason_: ([How _Scientific American_'s Departing Editor Helped Degrade Science](https://reason.com/2024/11/18/how-scientific-americans-departing-editor-helped-degrade-science/)) \n\n> "But increasingly, during Helmuth's tenure, _SciAm_ seemed a bit more like a marketing firm dedicated to churning out borderline-unreadable press releases for the day's social justice _cause du jour_. In the process, _SciAm_ played a small but important role in **the self-immolation of scientific authority**—a terrible event whose fallout we'll be living with for a long time."\n\n"Self-immolation of scientific authority" will henceforth be in my daily vocab use. \n\n> "Going forward, _Scientific American_ can right the ship by simply hiring an editor who cares more about science than progressive political goals. [...] It simply means that _Scientific American_ needs to get back to its roots—explaining the universe's wonders to its readers, not lecturing them about how society should be ordered or distorting politically inconvenient findings."\n\nNEXT: \nVinay Prasad for _The Free Press_ discuss [RFK Jr.'s promises to Make America Healthy Again](https://www.thefp.com/p/rfk-jr-health-human-services-flouride-vaccines-covid-trump-europe). \n\nWrites Oliver Wiseman in the TFP daily rundown: \n> "on all kinds of measures, America isn’t as healthy as it used to be—or should be, given how much we spend on our health. So it’s not hard to see why so many people think something, somewhere has gone horribly wrong. Nor is it hard to see the appeal of Trump and RFK’s promise to Make America Healthy Again."\n\nA wonderful graph, too: \n![](https://m.stacker.news/63578)\n\n> "RFK Jr. has shown an ability to talk with empathy and insight about the chronic health problems ailing Americans. And he deserves credit for pushing these issues closer to the top of the political agenda. But he also holds some views that appear to have no basis in science." [https://www.thefp.com/p/can-rfk-jr-make-america-healthy-again?](https://www.thefp.com/p/can-rfk-jr-make-america-healthy-again?)\n\nPrasad: \n\n> "After looking at the whole range of RFK Jr.’s positions, I’ve come to the view that **while some are extreme, others are genuinely worthy of debate—and still others are correct**. And there is a way to sift the good from the bad and the debatable."\n\n> "RFK Jr. also said Covid was a great opportunity for corporations like Pfizer and Moderna to make hundreds of billions selling vaccines to people who didn’t need them. I think the vaccines did save lives—especially when given to the elderly or the immunocompromised when they were first made widely available in early 2021—but here too,** I also think he is mostly correct. **The companies pushed vaccinations and repeated boosters on kids to make more money without proof this was ever necessary."\n\n> "It is true that the benefits of fluoride have eroded over the years, especially since most toothpastes contain fluoride. Harvard researchers state that there have been reductions in cavities even in countries without routine fluoridation of water. Finally, some economic literature has sought to connect fluoride in the water to lowered cognitive performance, but in my opinion, these papers remain weak and uncertain. Having said this, I think this is a topic that warrants further discussion and cannot be summarily dismissed."\n\nAnd the greatest of all gems: \n> "**doctors who say “all vaccines are safe and effective” are usually idiots.** They haven’t studied the topic or thought about it for one second. Some vaccines are vital. Some are debatable, and some can be harmful (mRNA for young men during Covid, for instance, too often led to myocarditis). Vaccines are like drugs. We need better evidence."\n \N 6268 \N 424274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.41422801543195 0 \N \N f 0 \N 0 232050740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404446 2025-02-15 22:00:59.456 2025-03-29 22:39:47.605 Pushtx: Privacy-focused Bitcoin Transaction Broadcast Tool A new Rust-based transaction broadcast tool that connects directly to the Bitcoin peer-to-peer network. https://github.com/alfred-hodler/pushtx 1092 \N 404446 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 27.4748965481943 0 \N \N f 147965493 \N 1 18623459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430991 2025-03-09 14:55:41.376 2025-03-29 22:39:50.228 \N Convenience Vs. Security\n\nPeople (the average Joe) tend to go towards the more convent (likely centralized option) vs the more secure (decentralized option). They may burn their hand and try the decentralized option but over time they will go back to centralized options as the painful memories fade. \n\nI am not hoping for this outcome but I do see as one way BTC adoption can play out in the future. https://example.com/ 5522 422025 356162.356269.422025.430991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4617765625127 0 \N \N f 0 \N 0 90671182 0 f f \N \N \N \N 356162 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404486 2025-02-15 23:02:35.301 2025-03-29 22:39:50.229 \N Splitting hard fork coins in 2018 for people that didn't know how to do it. https://example.com/ 1090 403999 403999.404486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.20592640108161 0 \N \N f 0 \N 0 168720470 0 f f \N \N \N \N 403999 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431012 2025-03-09 15:09:06.596 2025-03-29 22:39:50.229 \N I am pretty sure that my kids will not be clicking on ten links drown in the swamp of ads. Any search engine that has ads in the future will have a label 'for entertainment purposes only' and will not be used for anything serious. \n\nI wrote about it in our manifesto https://blog.kagi.com/age-pagerank-over\n\nKnowledge Navigator is an interesting, 35 years old concept https://www.youtube.com/watch?v=umJsITGzXd0\n\nWe are far away from these from many reasons but Kagi is trying to make sense of all that. https://example.com/ 11450 428609 428609.431012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7824065898947 0 \N \N f 0 \N 0 118526324 0 f f \N \N \N \N 428609 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431015 2025-03-09 15:09:16.714 2025-03-29 22:39:50.229 \N Welcome to your first bear market. Sorry bitcoin didn't live up to your expectations, see you next cycle. https://example.com/ 21091 428276 428276.431015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.78456034568025 0 \N \N f 0 \N 0 161797975 0 f f \N \N \N \N 428276 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404448 2025-02-15 22:02:47.702 2025-03-29 22:39:50.229 \N Related, I put up a website last week dedicated to online bitcoin-accepting stores for non-bitcoin-related products. https://circularbtc.xyz\n\nThe idea is that if bitcoiners buy from bitcoiners as much as possible, while selling to both bitcoiners and nocoiners, it is sort of like having net exports, which makes ngu. https://example.com/ 15100 404270 404270.404448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4336355251815 0 \N \N f 0 \N 0 145406977 0 f f \N \N \N \N 404270 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451173 2025-03-24 12:31:26.847 2025-03-29 22:39:50.229 \N pouring one out for @k00b & team this weekend for the deluge of territories' confusion as they continue grinding work out for us \n![pour-one-out-so-long.gif](https://m.stacker.news/7396)\n\nGood problems to have though. SN is a feedback machine! https://example.com/ 20504 450956 450956.451173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6955994688662 0 \N \N f 0 \N 0 176471173 0 f f \N \N \N \N 450956 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402800 2025-02-14 04:06:45.062 2025-03-29 22:39:50.229 \N Remember the episode of The Simpsons where Homer eats the Guatemalan insanity pepper, then has a psychedelic journey?\n\n![images (10).jpeg](https://m.stacker.news/10820)\n\n![jan5.webp](https://m.stacker.news/10825)\n\nHis spirit guide in that episode, the "Space Coyote," was voiced by country music legend **Johnny Cash.**\n\n![images (9).jpeg](https://m.stacker.news/10822)\n\n![images (11).jpeg](https://m.stacker.news/10821)\n\n[El Viaje Misterioso de Nuestro Jomer (The Mysterious Voyage of Homer)](https://en.m.wikipedia.org/wiki/El_Viaje_Misterioso_de_Nuestro_Jomer_(The_Mysterious_Voyage_of_Homer))\n\n\n..\n\n\n..\n\n\n..\n\n\n..\n\n..\n\n![giphy.gif](https://m.stacker.news/10827) https://example.com/ 21416 402797 402797.402800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.093873343023 0 \N \N f 0 \N 0 172431497 0 f f \N \N \N \N 402797 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444532 2025-03-20 01:20:54.249 2025-03-29 22:39:50.23 \N I think he hated the fact that he couldn't control bitcoin (he wanted composability, larger blocks etc) so he went and made a project that he could control. I have no problem with that, I have a problem with how it was sold, the scammy marketing over the years and paying influencers to promote eth and slam bitcoin etc. The constant narrative shift to try and suck more people in when the last narrative is dwindling. \n\nHe wants his cake and to eat it to. He wants all the positive features of a centralized corporation but under the guise and regulatory regime of a decentralized protocol. \n\nI like to describe ethereum as Vitalik and eth devs sandbox where they circle jerk over complexity and your net worth is along for the ride. And I am absolutely fine with that existing in the world, as long as people understand what it is. Unfortunately, 90% of eth holders don't have any clue. https://example.com/ 20990 444506 444506.444532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.57101118098425 0 \N \N f 9464701 \N 1 225421383 0 f f \N \N \N \N 444506 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421208 2025-03-01 13:47:40.598 2025-03-29 22:39:47.605 Digital forgeries are hard You may have seen that the Craig Wright trial is over and that he was found to have been lying about the things that everyone knew he was lying about for years now, except that for some reason only comprehensible to the best legal minds, it was somehow fine for him to lie about this, repeatedly, in court. I'm no genius, but one day perhaps I will understand how such a thing is possible.\n\nIf you read through any of the trial notes, you will have been overwhelmed by the examples of Craig Wright's fraud -- forged documents and the like. And you may have thought, as did I: how could a person whose reputation and perhaps literal freedom to move about unencumbered by handcuffs was on the line do such a shit job of performing all his frauds?\n\nThis article discusses some of those things. https://mjg59.dreamwidth.org/69507.html 11515 \N 421208 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.46326638891748 0 \N \N f 64422515 \N 1 62747396 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421189 2025-03-01 13:34:50.725 2025-03-29 22:39:47.605 Craig Raw (Sparrow Wallet) Shares Concerns About Bitcoin Prioritizing Scaling > @craigraw\n gives a sober warning to consider - if we hyperfocus on scaling, do we risk losing the ‘Crown Jewels’ features of Bitcoin? Decentralization, privacy, no permissions, no trusted third parties… will we give these up to scale?\n\n> “We have this overwhelming demand in the bitcoin community that we must scale. But I’m not sure that that is the overwhelming need. […]”\n\n> “We have given up a lot of things in order for Bitcoin to scale, and I’m just going to throw it out there that I don’t necessarily think that scaling is the best all and end all of everything that we should be thinking about. […]”\n\n> “I’m not saying that I have all the answers. I just know that if you start to drop your ideals, and start to lose those things that make Bitcoin unique, you might be giving away the Crown Jewels.”\n\nWhat stuck out to me about Craig's comments is the erosion in terms. Goes back to some things I've heard @Car sound alarms about. https://twitter.com/Lewified/status/1774266674423689456 663 \N 421189 \N \N \N \N \N \N \N \N news \N ACTIVE \N 11.005443051596 0 \N \N f 0 \N 0 73846 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402650 2025-02-13 22:04:32.016 2025-03-29 22:39:50.23 \N Your list is great, I was thinking more high level for someone running a self custodial Lightning app such as Phoenix, Breez, Mutiny, Zeus, etc:\n1) Basic 4-7 minute explanation of channels and channel liquidity. This seems to be the most common thing that confuses and frustrates people at any level of LN use. If you don't understand these basic concepts you're in for a world of hurt. \n2) You should do this because you are passionate about the LN and can endure a few bugs/headaches, and not because you want to make a profit. If you can only tolerate a perfect bug free experience then the LN is a few years off from being up to that. It's so early. https://example.com/ 14905 402482 402457.402482.402650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0968297460596 0 \N \N f 0 \N 0 60012665 0 f f \N \N \N \N 402457 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416973 2025-02-26 00:27:38.144 2025-03-29 22:39:50.23 \N [_me reading up on HTLCs_](https://docs.lightning.engineering/the-lightning-network/multihop-payments/hash-time-lock-contract-htlc) https://example.com/ 16059 416959 416158.416959.416973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.61383634759009 0 \N \N f 0 \N 0 27053735 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431105 2025-03-09 15:28:00.078 2025-03-29 22:39:50.23 \N I would suggest think from a perspective of folks that generate great content - what do they need the most? Think Matt Odell, Jimmy Song, but then also less known folks that post great content here. \n\n**What do they need?**\n\nI think they would enjoy having a great profile page that showcases their content, links to their other accounts and profiles, essentially stands as their homepage in the bitcoin and nostr world. Make the profile showcase the person in their best light. \n\nTo your question about contend editing - I think there needs to be some free-form space for folks to use and then maybe couple other building blocks to choose from, like recent comments, recent posts, etc. But think through it, make it really sweet experience. Think about how you would best pimp up your profile and then implement it in a way so everyone gets that automatically. \n\n#### Couple of ideas to consider\n- Allow people associating their various accounts from SN (twitter, nostr, reddit, youtube, etc), maybe even do some nice verification scheme. \n- If the person has a mailing list, let them connect it and maybe even streamline subscribing to it. \n- Defaults matter. There can be a smart default, e.g. if the person posts highly voted long posts, then show a list of those by default. And then everyone can customize it a bit if they want. \n- Pull people's Nostr posts and just show them under the profile page. \n- Maybe allow creation of Nostr profiles from this experience. Why not?\n- Do a bit of gamification, have some fun stats on the profile page, maybe automated badges ("received more than 100k sats", "replied more than 10 times in a day"...), this is what @kr was suggesting and has mocks for. \n- Allow people to associate their existing content (maybe add as a new post). Let's say I'm Jameson Lopp, how do I "add" all my blog posts to Stacker News profile? \n- What about SN subscribing to an RSS feed that the person chooses? Like if I'm posting on medium or whatever platform, it would be cool if SN automatically gets that and adds it to my profile, but I would say it should not show automatically in the "recent", but only after actual person adds it to SN, then it would show in "recent". \n- In the UX, think about pinning, like if I'm modifying my profile page, I'd like to be able to choose from couple things but just "pinning" them. \n- Also it would help everyone if you actually have markdown editor with formatting bar (maybe even WYSIWYG)\n\n#### The success metrics\n- People viewing the profiles (so pageviews & DAUs) and engaging with them (a bit harder in privacy respecting way, but if there are db writes anyway, you get stats for those)\n- Number of folks that post great content that also pimped up their profile\n\nIt's getting a bit late, so above is probably full of typos, but hopefully it helped - let me know. I'm also happy to jump on a call and say hi ;)\n\n\n https://example.com/ 20881 413462 413462.431105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6945207117966 0 \N \N f 0 \N 0 35988285 0 f f \N \N \N \N 413462 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431078 2025-03-09 15:19:09.519 2025-03-29 22:39:50.231 \N The Big Short https://example.com/ 19570 429559 429559.431078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1903857959009 0 \N \N f 0 \N 0 56679613 0 f f \N \N \N \N 429559 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421180 2025-03-01 13:27:42.041 2025-03-29 22:39:50.231 \N You would be surprised how little energy I use to analyze Craig Wright. I think it's a huge waste of time. I don't even want to know. https://example.com/ 18772 421176 420635.420987.421157.421163.421167.421172.421176.421180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.993725696087 0 \N \N f 0 \N 0 55731334 0 f f \N \N \N \N 420635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421188 2025-03-01 13:33:36.686 2025-03-29 22:39:50.231 \N What would it take for @k00b to hedge his bets with a badass non-Apple laptop instead of the MBA?\n\nIf selling 2nd hand you’d get a bunch more bang for your buck I’m sure. https://example.com/ 6471 421029 421018.421029.421188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9192030021855 0 \N \N f 0 \N 0 77717980 0 f f \N \N \N \N 421018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414044 2025-02-23 15:38:38.942 2025-03-29 22:39:50.233 \N Hi guys, this is my first post. It's good to be part of the stacker community. https://example.com/ 16177 413877 413854.413872.413877.414044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.87520868804263 0 \N \N f 0 \N 0 110988545 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402626 2025-02-13 21:28:24.48 2025-03-29 22:39:50.234 \N Been working on over-the-air updates for CyberHornet Swarm nodes today. \n\nSo far I've completed the runtime, state management, versioning, update manifest, and update procedure.\n\nThe only thing left is the management service which can listen for new updates and present them to the user for installation when they see fit. https://example.com/ 3656 402590 402582.402590.402626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2676122510512 0 \N \N f 0 \N 0 168903181 0 f f \N \N \N \N 402582 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402806 2025-02-14 04:47:39.972 2025-03-29 22:39:50.234 \N This has been my experience too. When I read the "contrarian" takes from folks about how AI is hype I just shake my head and know that that's a person who has a) no actual experience messing around with the tech, b) no imagination, or c) both. https://example.com/ 16978 402805 402805.402806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31539574772664 0 \N \N f 0 \N 0 189646709 0 f f \N \N \N \N 402805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414045 2025-02-23 15:39:17.419 2025-03-29 22:39:47.605 Why not open this up again? ~ On being a woman in bitcoin ~ Last time I shared something here from the perspective of my identity as a woman, I didn't enjoy the degenerate arguments that collected in the comments. It scared me away from saying anything for a while. Well, I'm deciding now that I'm not scared of ya'll. And this is my opinion on "being a woman" in bitcoin.\n\nHere's an anecdote about why this has come up again: Last week, I was hanging out with a few friends I've made that work for a bitcoin focused company. We were catching up after not seeing each other for a few months, and it was so much fun. We gathered around a fire, argued our beliefs about God, and sang "Rich Men North of Richmond" together. Because what else would we do? Anyway, one man from the group put a question to me. He asked, basically, "How do you do this? How do you stand being a woman in this space?" \n\nI get why he wants to know this. I understand the place where he's coming from. There's an organic, protective "this-is-not-for-you" attitude that shells, let's say, mainstream bitcoin. Personally, I have never felt that I wasn't welcomed, yet I have spent a lot of time on Twitter. So if that was my only proxy for understanding this culture, I would feel some type of way about it. \n\nI also have understanding for why such a protective nature exists. It is the network's best defense. Maybe it's my exposure to subcultures through music and art that make me comfortable with the idea. Or what I was trying to state when I spoke on this before, maybe it's that I have a special tolerance for being a loner, just happy to be in the room. \n\nThis is how I answered my friend: "I'm just an individual who has adjacent interest in this." \n\nI think that's simple enough, but I'll explain further. When you show up to bitcoin, there is a temptation to want to save something. There's a vortex that pulls you in and tells you, "your contribution can actually matter here, so what are you going to do?" It can be tempting to discover a cause to promote. It happens often, and it takes a lot of people down. This is part of the network's defense. I felt this temptation, and if I ran with it, I would be promoting the gender equality cause. But I believe that is a futile pursuit. I don't like that game, it's a fiat game. I do not care to step into the position as the judge of equality. \n\nAnd do you know what's a whole lot more fun than waving a banner? It's kind of the opposite. It's taking whatever opportunities that interest me. It is having faith that if I seek it, I will find it. It is believing that my job is to do what is true, and let my work find the people it is meant for.\n\nSo I don't care that I'm a woman, and you don't either. I mean, I love being a woman. It means a lot of very special things to me. But the reason I'm here is because it doesn't matter who I am, if I have something to add that's valuable to anyone, I'm capable of realizing it. That responsibility rests on me, not the crowd.\n\nThanks for reading! \N 650 \N 414045 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.985867385657 0 \N \N f 0 \N 0 160384910 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414931 2025-02-24 12:07:27.061 2025-03-29 22:39:47.605 Stacker News Live #132: Mutiny Wallet is Shutting Down with Ben Carman \N https://www.youtube.com/watch?v=T94wnucfo8k 1195 \N 414931 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 26.5615480471434 0 \N \N f 0 \N 0 45840118 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413838 2025-02-23 13:45:40.228 2025-03-29 22:39:50.235 \N Coinpools are those things you need two complicated new opcodes to implement and even then they still basically do not work as you need every member of the thing to be online for anyone else to transact? https://example.com/ 13622 412395 412395.413838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.1878698791556 0 \N \N f 0 \N 0 165056926 0 f f \N \N \N \N 412395 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431096 2025-03-09 15:27:38.384 2025-03-29 22:39:50.235 \N I remember thinking one time while on a road trip that every other car I saw on the highway was going to the exact same destination that I was https://example.com/ 20434 415726 415726.431096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28026314700925 0 \N \N f 0 \N 0 210952520 0 f f \N \N \N \N 415726 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404452 2025-02-15 22:07:48.109 2025-03-29 22:39:50.235 \N When I zap a lot:\n\n1. stacker sharing a discussion/link/question is known for thoughtfully participating in the comments of their posts\n2. news/findings/interestingness that I personally wouldn't want to miss\n3. a very high quality piece of original long form content https://example.com/ 18174 404445 404114.404368.404445.404452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.15966454347736 0 \N \N f 0 \N 0 222777939 0 f f \N \N \N \N 404114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437598 2025-03-14 16:46:28.425 2025-03-29 22:39:50.236 \N Congrats. Welcome to the frontier. \n\nYou must be a big tipper. Might I suggest a some sats for our Satsraiser today:\nhttps://stacker.news/items/239180 https://example.com/ 12277 437593 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553.437558.437574.437593.437598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1470713563077 0 \N \N f 0 \N 0 185341248 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422509 2025-03-02 13:57:11.752 2025-03-29 22:39:50.236 \N Agree with this idea. There are too many posts that involve more than one category. Take the PSBT coordination project on nostr for instance. What is the main category, bitcoin or nostr?\n\nSome tags could have special prices (like jobs for example). https://example.com/ 696 422505 422505.422509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4019327042381 0 \N \N f 0 \N 0 12194128 0 f f \N \N \N \N 422505 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448410 2025-03-22 15:34:53.91 2025-03-29 22:39:50.237 \N That's difficult....\n\nMaybe that shitposting on Twitter and repeating the slogans of your bro's is not enough if you want this space to grow?\n\nThat we need more circular economies and communities like Bitcoin Beach, Bitcoin Ekasi. Earning and spending Bitcoin will bring huge adoption. HODLing alone is not enough. https://example.com/ 15200 446689 446689.448410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8018759313706 0 \N \N f 0 \N 0 115528171 0 f f \N \N \N \N 446689 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430944 2025-03-09 14:22:44.123 2025-03-29 22:39:50.237 \N You can certainly buy bitcoin at an exchange and sell them at a premium at Bitcoin meetups. There is a need for people that are willing to have their name on the record with Bitcoin disappearing into the void. Idk about bisq/dex arbitrage tho - I think in person is a must https://example.com/ 9906 430590 414068.430553.430590.430944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6145266271627 0 \N \N f 0 \N 0 2883449 0 f f \N \N \N \N 414068 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448412 2025-03-22 15:35:57.669 2025-03-29 22:39:50.237 \N Haha, I can see how my previous response might have seemed a bit ChatGPT-ish. To be clear, those thoughts are genuinely mine. I agree with the importance of human connection and creativity, and I also believe that we can use AI responsibly, without letting it control or dehumanize us. It's all about finding the right balance and using technology to enhance our lives, not replace the human aspects. So, yes, that's my opinion, and I appreciate the discussion! 😄 https://example.com/ 998 448349 448349.448412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4318293541823 0 \N \N f 0 \N 0 227061234 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422826 2025-03-02 18:11:45.601 2025-03-29 22:39:47.605 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/506487), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 6741 \N 422826 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 0.381996368337454 0 \N \N f 0 \N 0 35598670 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424245 2025-03-03 23:19:45.983 2025-03-29 22:39:47.605 Review: The Righteous Mind # The Righteous Mind: Why Good People are Divided by Politics and Religion\n\nThis is one of my top recommends for just about anyone. Unless you just hate discussing or thinking about contentious ideas, The Righteous Mind is a must read for anyone seeking to understand how people hold such different views in good faith.\n\nThe author, Jonathan Haidt, is a well respected social and moral psychologist. While being hosted by a family in India, he realized that his hosts had moral sensibilities that he just didn't have. This wasn't a matter of reaching a different conclusion about a moral question. There were things they cared about for reasons entirely alien to him. That's where his key insight came from: people have fundamentally different moral sensibilities.\n\nHaidt realized that many of the moral and political positions held by American conservatives were motivated by some of these same moral sensibilities that he simply lacked. What followed was an attempt to categorize the different types of moral sensibilities and look for patterns in who have which ones.\n\n## Moral Tastebuds\nInitially, Haidt identified five different moral sensibilities and likened them to tastebuds. People with a particular moral sensibility will perceive certain situations as morally significant, while those without the sensibility do not perceive it as morally significant. A sixth tastebud was added after studying libertarians and realizing just how goddamn weird we are.\n\n### The Six Moral Foundations\n* Care/Harm\n* Fairness/Cheating\n* Loyalty/Betrayal\n* Authority/Subversion\n* Sanctity/Degradation\n* Liberty/Oppression\n\nThe findings are that each of us have different sensitivities to each of these flavors of morality. There have been some subsequent refinements and additions made in more recent work on Moral Foundations. You can learn about your personal Moral Foundations by taking [this quiz](https://moralfoundations.github.io/).\n\n## Political Differences\nThe part of the book I found most interesting, and the portion that is discussed the most, is describing how progressives and conservatives differ in their moral tastebuds. This explains a lot of why it's so difficult for people to have constructive conversations with "the other side".\n\nProgressives score very high on care and fairness, but relatively low on the others. Conservatives, on the other hand, score fairly high across the board. In one sense, it's not surprising that conservatives have a broader moral palate (they are stereotyped as "moralizers", after all). However, what surprised me is that they seem to care just as much as progressives about the things progressives care about.\n\n## Failure to Communicate\nOne of the follow up experiments they did on that initial research, was to gauge how much understanding each side had of the other. This was done by allowing people to ascribe justifications for their answers to a set of political and ethical questions. Then, subjects were asked how someone in the opposite political camp would answer the questions and what their justifications would be.\n\nThe results were exactly as you'd expect from the moral foundations work. Conservatives knew what progressives believed and why, but progressives did not understand what conservatives believed or why they believed it. Conservatives share the moral foundations of progressives, so they understand them. Progressives do not share the other moral foundations of conservatives and therefor don't understand them.\n\n## On Liberty\nLibertarians were discussed in the book, but most of the research to that point had not included the Liberty foundation. What they've learned is that libertarians are overwhelmingly sensitive to the liberty tastebud and fairly numb to the others.\n\nThat result fascinates me, because there's nothing about libertarianism, per se, that rules out broader moral sensibilities. Libertarianism, after all, is not a holistic moral philosophy, but rather a legal philosophy. There's no contradiction in being extremely socially conservative, while also believing that the law should only punish violations of property rights. Similarly, there's no inherent reason why a socially progressive individual couldn't adopt a live-and-let-live view of government.\n\nHowever, it seems that people, by and large, think force needs to be brought to bear on whatever it is that they care about, but not on anything else. \N 1983 \N 424245 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.1955541214058 0 \N \N f 0 \N 0 231847029 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423829 2025-03-03 16:20:55.999 2025-03-29 22:39:50.227 \N If we want Bitcoin to succeed, we need to be nice and patient with newcomers, not toxic and arrogant.\n\nThere is always a way to express the same maximalist views in a polite way. https://example.com/ 9177 423789 423750.423789.423829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8407307210294 0 \N \N f 211071704 \N 1 31889050 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448416 2025-03-22 15:38:48.689 2025-03-29 22:39:50.229 \N Start with the bare minimum, test, get feedback, and iterate. Ensure the interface is clean and intuitive. Given the nature, prioritize security from the start. Keep an eye on the system’s performance, especially the order matching and real-time updates. Don't stress about others possibly having similar ideas. Execution is key, and your unique approach matters. Perfection can be the enemy of progress. Aim for a functional MVP first, then refine https://example.com/ 21083 448283 448283.448416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1213011423955 0 \N \N f 224587816 \N 1 4381863 0 f f \N \N \N \N 448283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451309 2025-03-24 13:42:56.909 2025-03-29 22:39:50.238 \N That's interesting but I would probably assume my neighbours are a bunch of commies. I do live in Canada after all. https://example.com/ 19535 449662 449394.449507.449662.451309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.790073206385 0 \N \N f 0 \N 0 19942192 0 f f \N \N \N \N 449394 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424246 2025-03-03 23:19:54.711 2025-03-29 22:39:50.238 \N Driving everywhere. https://example.com/ 780 424210 423750.423811.423819.424207.424210.424246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7471421926768 0 \N \N f 0 \N 0 230680079 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436055 2025-03-13 09:23:00.583 2025-03-29 22:39:50.238 \N The Psychology of Money - Morgan Housel https://example.com/ 876 435993 435639.435993.436055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65040332007737 0 \N \N f 0 \N 0 33739714 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410548 2025-02-20 14:28:34.634 2025-03-29 22:39:50.238 \N Is it me or something doesn't smell right here?\n\nThe post (by a freebie acount) is immediately shilled by two other freebie accounts.\n\nThe project bangs on about open source, but the source couldn't be found (just an empty github organisation). Where is this gitea box?\n\nAlso, why is there no explanation of how this technology actually works? I found the docs, but there doesn't seem to be an architecture diagram, nor any technical service descriptions whatsoever.\n\nHow do we know this isn't just a bunch of cloud VMs?\n\nI appreciate that sales are important, and 'fluffy marketing websites' probably make more money than dry white papers, but if you're offering self-sovereignty, doesn't that also mean being sovereign from your good selves?\n\nStart 9 are leagues ahead in this regard. Their offering is totally open source, you can run on your own (sovereign) machine, and I'm confused why people think it's too hard to administrate - it basically runs itself.\n\nIf you can't run a Start 9 box, then I say, you deserve to pay 39 american dollars a month to this foreign company to host your data in their black box.\n\n(I'm being abrasive, but if you can set the record straight, I will eat my words)\n\nAlso, why choose a name so close to Fedi? https://fedimint.org/ "Fedimint is a framework for federated applications. " https://example.com/ 17011 410545 410545.410548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5665349861634 0 \N \N f 0 \N 0 106065881 0 f f \N \N \N \N 410545 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430917 2025-03-09 14:06:51.869 2025-03-29 22:39:50.239 \N This is very inspirational, thank you! I’m on a weight loss journey of my own. This is great to help keep me going! https://example.com/ 5758 430912 430549.430560.430781.430912.430917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6158786078199 0 \N \N f 47902570 \N 1 197627137 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424143 2025-03-03 20:57:16.347 2025-03-29 22:39:50.239 \N Kevin Rooke @kr of course! https://example.com/ 822 424004 423681.423788.423805.423997.424004.424143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23788317028284 0 \N \N f 57066954 \N 1 92941954 0 f f \N \N \N \N 423681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404443 2025-02-15 21:59:28.938 2025-03-29 22:39:47.605 I’m Henrik Skogstrom, CEO of LN Capital (Torq) AMA! https://ln.capital/\nhttps://twitter.com/LN_Capital\nhttps://twitter.com/ohskogstrom \N 959 \N 404443 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.56481791441933 0 \N \N f 0 \N 0 239030970 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457937 2025-03-28 19:55:29.503 2025-03-29 22:39:50.229 \N If the dev or team has some easy lightning gateway set up, I'm always happy to drop a few sats. \n\nThe moment it's a hassle or it's not going straight there without middlemen, I don't. https://example.com/ 1806 457936 457771.457823.457825.457936.457937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.334770272740101 0 \N \N f 0 \N 0 11746177 0 f f \N \N \N \N 457771 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408365 2025-02-18 18:14:55.206 2025-03-29 22:39:50.229 \N Most traditional startups get asked "What is your exit strategy?" meaning a Merger, Acquisition, or an IPO. Do you see these as the same for bitcoin and lightning startups? What exits are realistic for bitcoin startups? https://example.com/ 20606 403198 403198.408365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.54370297807123 0 \N \N f 0 \N 0 237107022 0 f f \N \N \N \N 403198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428522 2025-03-07 11:23:49.021 2025-03-29 22:39:50.229 \N Today I orange pilled a friend. So much that he actually bought sats. https://example.com/ 21083 428474 428292.428426.428469.428474.428522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.38175951029295 0 \N \N f 0 \N 0 220314566 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413324 2025-02-23 04:22:44.806 2025-03-29 22:39:50.23 \N Spent some time automating the rote part of writing the Saturday newsletter - finding, copying, and marking up all the links and stats (and then double and triple checking them). (I suspect it'll shave off an hour every saturday.)\n\nOnce I'm done with the newsletter, it'll be a weekend sprint to finish my @tabconf workshop on web of trust. Grabbed charlottesweboftrust.com for hosting it this morning. Hot dog! https://example.com/ 9496 410672 410672.413324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3322824738536 0 \N \N f 0 \N 0 204342675 0 f f \N \N \N \N 410672 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424244 2025-03-03 23:19:25.53 2025-03-29 22:39:50.23 \N Howdy all! New cowboy hat and sat stacking to cold storage records today. Hanging in there through this bear market as it’s my first one and I haven’t sold a single sat, just keep DCA’ing! https://example.com/ 770 424224 423663.424195.424211.424224.424244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7639226187531 0 \N \N f 0 \N 0 182344576 0 f f \N \N \N \N 423663 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421129 2025-03-01 12:28:55.168 2025-03-29 22:39:50.23 \N Hi Sphinx.chat. very interesting job and i would like to apply. https://example.com/ 16296 421033 420895.421020.421028.421033.421129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.42914611004037 0 \N \N f 0 \N 0 225185498 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444011 2025-03-19 16:04:38.006 2025-03-29 22:39:50.23 \N This is good job, i'm interested, bezhaltur@gmail.com\n https://example.com/ 20370 443712 443712.444011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2035051223015 0 \N \N f 0 \N 0 195415361 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444347 2025-03-19 19:58:20.819 2025-03-29 22:39:50.231 \N Holding on to my cowboy hat for 2 months! \n\n![IMG_8169.gif](https://m.stacker.news/4313) https://example.com/ 711 443799 443799.444347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.46786701860834 0 \N \N f 0 \N 0 192854117 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421451 2025-03-01 16:46:05.331 2025-03-29 22:39:50.231 \N ![Add a heading.png](https://m.stacker.news/18825) https://example.com/ 913 421421 421367.421421.421451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.04318623442603 0 \N \N f 0 \N 0 88245073 0 f f \N \N \N \N 421367 \N 0 0 \N \N f \N 2025-03-29 08:54:14.518 f \N \N \N 0 0 0 0 0 0 0 430033 2025-03-08 19:26:49.486 2025-03-29 22:39:50.231 \N Just released [nostrss](https://github.com/Asone/nostrss) 1.0.0 beta release yesterday ! \n\nThere's still plenty of room for new features and improvements, but i must admit i'm quite proud to have been able to build such program with Rust. :D https://example.com/ 674 430020 429958.429970.429982.430020.430033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6111601705345 0 \N \N f 972375954 \N 6 241034422 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 404451 2025-02-15 22:05:39.316 2025-03-29 22:39:47.606 Books And Articles Newsletter, Issue 41 ![](https://m.stacker.news/64264)\n\n### News Of The Week \n\nWelcome to the Books And Articles newsletter. Thanks for all of the quality posts.\n \nI’m proud to see that my daughter, @moonbeetle, had the top post this week. I hope she doesn’t rest on her laurels and keeps posting. Overall, it was a good week for the territory, though this crazy bull run may be keeping the sat totals low.\n\n\nHappy reading!\n \n\nAs always, please reply with suggestions and opinions on how to make this territory better. \n\nLogo design by @plebpoet\nLink to last week’s newsletter: \nhttps://stacker.news/items/774024/r/siggy47\n\n\n### Top Posts Of The Week \n\n\n- [A recommendation/ramble on my favorite books](https://stacker.news/items/772289/r/siggy47) by @moonbeetle\n\n- [MAHA: Two Excellent Morning Reads—Science and Authority, RFK the Savior?](https://stacker.news/items/773879/r/siggy47) by @denlillaapan\n\n- [internet feelings](https://stacker.news/items/774628/r/siggy47) by @ek\n\n- [Stranded: How Bitcoin is Saving Wasted Energy (Alex Gladstein, Bitcoin Magazine)](https://stacker.news/items/772064/r/siggy47) by @denlillaapan\n\n- [Fun Fact Friday: Japan Edition](https://stacker.news/items/773559/r/siggy47) by @cryotosensei\n\n\n\n### Siggy’s Suggestions\n\nNone this week.\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n- ["Who are you?" — How do I want to answer?](https://stacker.news/items/674910/r/siggy47) by @IamSINGLE\n\n- ["My journey with Bitcoin: the experience of an ordinary Cuban"](https://stacker.news/items/676287/r/siggy47) by @BTCLNAT\n\n- [@realBitcoinDog Bitcoin Story - No, social media had nothing to do with it xD](https://stacker.news/items/722720/r/siggy47) by @realBitcoinDog\n\n\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n- [And Then She Disappears - Block 1](https://stacker.news/items/680735/r/siggy47) by @ginkgo\n\n### Book Reviews\n\n\n\n- [book review - "Why We Sleep: Unlocking the Power of Sleep and Dreams](https://stacker.news/items/765880/r/siggy47) by @stack_harder\n\n- [Forgotten Genius: A Maverick of Electrical Science](https://stacker.news/items/743415/r/siggy47) by @cascdr\n\n- [Book Review, Nate Silver's On the Edge](https://stacker.news/items/735212/r/siggy47) by @denlillaapan\n\n- [Book Review: The Inverse of Clown World (Knut Svanholm, Mises Institute)](https://stacker.news/items/760879/r/siggy47) by @denlillaapan\n\n- [The Mandibles by Lionel Shirver](https://stacker.news/items/719755/r/siggy47) by @21futures\n\n- [Book Review - True Names by Vernor Vinge](https://stacker.news/items/774774/r/siggy47) by @21futures\n\n- [Book Review | Catcher in the Rye - Better the second go around as an adult](https://stacker.news/items/709553/r/siggy47) by @realBitcoinDog\n\n- [Book Review | The Diving Bell and the Butterfly](https://stacker.news/items/706975/r/siggy47) by @carlosfandango\n\n- [Book Review | Black Coffee Blues by Henry Rollins](https://stacker.news/items/722727/r/siggy47) by @carlosfandango\n\n- [Book review | ‘Russia: Revolution and Civil War 1917-1921’ by Anthony Beevor](https://stacker.news/items/735044/r/siggy47) by @carlosfandango\n\n- [The Underground Man by Dostoevsky](https://stacker.news/items/707544/r/siggy47) by @Nadia\n\n- [Emil Cioran: 'The Fall into Time ("Sturz in die Zeit" in German)](https://stacker.news/items/694642/r/siggy47) by @TomK\n\n- [Book Review: The Book of Elsewhere, by China Mieville and Keanu Reeves](https://stacker.news/items/697427/r/siggy47) by @jurraca\n\n- [Book Review: The Player of Games, by Iain M. Banks](https://stacker.news/items/746463/r/siggy47) by @jurraca\n\n- [A Journey Through Emiko Jean's The Return of Ellie Black](https://stacker.news/items/691236) by @Melisa\n\n- [what i read, and wrapping up in july:](https://stacker.news/items/630204/r/siggy47) by @speakingyourtruth\n\n- [Book Review: Nothing Like The Movies by Lynn Painter](https://stacker.news/items/670569/r/siggy47) by @speakingyourtruth\n\n- [The Mandibles: A Review](https://stacker.news/items/668210/r/siggy47) by @jimmysong\n\n- [Self-Reliance by Emerson](https://stacker.news/items/669132/r/siggy47) by @ek\n\n\n- [Book - The Victorian Internet by Tom Standage (1998)](https://stacker.news/items/673776/r/siggy47) by @Signal312\n\n- [Review: The Righteous Mind](https://stacker.news/items/665765/r/siggy47) by @Undisciplined\n\n- [Book Review: Sliced Americana](https://stacker.news/items/663627/r/siggy47) by @jbschirtzinger\n\n- [Saboteurs: How Secret, Deep State Occultists Are Manipulating American Society](https://stacker.news/items/675002/r/siggy47) by @jbschirtzinger\n\n- [The New Manners and Customs of Bible Times](https://stacker.news/items/691719) by @jbschirtzinger\n\n- [Book Review: The Nixon Conspiracy](https://stacker.news/items/755166/r/siggy47) by @jbschirtzinger\n\n- [Book Review: Q By Luther Blisset](https://stacker.news/items/728848/r/siggy47) by @jbschirtzinger\n\n- [Book Review: Nuclear Transmutation--The Reality of Cold Fusion](https://stacker.news/items/766174/r/siggy47) by @jbschirtzinger\n\n\n- [Book Review | “The Tools of Leadership”](https://stacker.news/items/749605/r/siggy47) by @cryotosensei\n\n- [Book Review | The Magic School Bus Expedition Down Under](https://stacker.news/items/744786/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Happiness Project” and “Happier at Home”](https://stacker.news/items/718985/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Self-Motivated Kid”](https://stacker.news/items/705694/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Perks of Being a Wallflower”](https://stacker.news/items/704856/r/siggy47) by @cryotosensei\n\n- [Book Review | “101 ways to bring out the best in your children & yourself”](https://stacker.news/items/667453/r/siggy47) by @cryotosensei\n\n- [Book Review | “Diary of a Wimpy Kid”](https://stacker.news/items/668335/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Daily Dad” by Ryan Holiday](https://stacker.news/items/684138/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002) by @cryotosensei\n\n- [Book Review | “The 17 Indisputable Laws of Teamwork”](https://stacker.news/items/687944) by @cryotosensei\n\n- [Book Review | “Wonder Doodles”](https://stacker.news/items/685335) by @cryotosensei\n\n- [Book Review | “Sompo Guide Tokyo”](https://stacker.news/items/702025/r/siggy47) by @cryotosensei\n\n- [Book Review | “Peak”](https://stacker.news/items/698568/r/siggy47) by @cryotosensei\n\n- [Book Review: Trade-Off](https://stacker.news/items/779603/r/siggy47) by @cryotosensei\n\n- [Book Reviews Directory #2](https://stacker.news/items/665395/r/siggy47)\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Bitcoin Academic Articles & Reviews\n\n- [Bitcoin Pricing, Adoption, and Usage: Theory and Evidence | Article Review](https://stacker.news/items/727081/r/siggy47) by @SimpleStacker\n\n- [Minneapolis Fed Bitcoin Paper | Article Review](https://stacker.news/items/734528/r/siggy47) by @SimpleStacker\n\n- [Bitcoin: What Does Mainstream Economics Have to Say? | Article Review](https://stacker.news/items/745057/r/siggy47) by @SimpleStacker\n\n- [Competition and trust in the private provision of money | Article Review](https://stacker.news/items/764363/r/siggy47) by @SimpleStacker\n\n\n### Movie & Television Reviews\n\n- [Sound of Freedom | Movie Review](https://stacker.news/items/710780/r/siggy47) by @SimpleStacker\n\n- [Movie Review | “How to make millions before Grandma dies”](https://stacker.news/items/683086/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [El Encargado | Argentinian TV series | very good comedy](https://stacker.news/items/689468/r/siggy47) by @DarthCoin\n\n- [The IT crowd | hillarious super funny comedy TV series](https://stacker.news/items/694922/r/siggy47) by @DarthCoin\n\n- [Two TV series about the "Schrodinger's cat" theory](https://stacker.news/items/701874/r/siggy47) by @DarthCoin\n\n- [From | Que sera, sera... | new season 3 TV series](https://stacker.news/items/696122/r/siggy47) by @DarthCoin\n\n- [Bingeworthy: Slow Horses](https://stacker.news/items/734282/r/siggy47) by @StillStackinAfterAllTheseYears\n\n\n\n\n### Essays\n\n- [Prose piece | Running](https://stacker.news/items/744729/r/siggy47) by @carlosfandango\n\n- [Prose piece | The storm](https://stacker.news/items/753425/r/siggy47) by @carlosfandango\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Sorelle](https://stacker.news/items/747511/r/siggy47) by @Myshkin\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [a new kind of poem (that you can see 👀 and hear 🦻)](https://stacker.news/items/676672/r/siggy47) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n- [Let's pretend we loved each other](https://stacker.news/items/666008/r/siggy47) by @Nadia\n\n- [That's MINE! Poetry.](https://stacker.news/items/661773/r/siggy47) by @Malach17\n\n- [Silly rhymes written by a guy (maybe) fallen in love](https://stacker.news/items/666985/r/siggy47) by @0268a5c238\n\n\n\n### Short Stories\n\n- [Short story | The motel](https://stacker.news/items/762852/r/siggy47) by @carlosfandango\n\n- [The poet and the reader || short story](https://stacker.news/items/723702/r/siggy47) by\n@02879c7d869\n\n- ['little fictions' presents: Cowboys Don't Belong](https://stacker.news/items/713535/r/siggy47) by @plebpoet\n\n- [Short Story: “Quarter” by Eduardo Prospero](https://stacker.news/items/713942/r/siggy47) by @eduardopro\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 6202 \N 404451 \N \N \N \N \N \N \N \N science \N ACTIVE \N 29.2732895387832 0 \N \N f 0 \N 0 207829425 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410551 2025-02-20 14:30:52.32 2025-03-29 22:39:47.605 The Freedom Tech Stack **The Freedom Tech Stack**\n\nFull disclosure. I am not a technical person. I do my best and have learned a lot over the years and certainly spending so much time on SN has helped expose me to more technical discussions and technically inclined people than I was used to prior to joining SN. \n\nI have been highly impressed with @siggy47's recent dive into the rabbit hole of more technical things especially around privacy/security etc. I know Siggy like myself didn't come from a technical background and isn't the youngest pup (turns out you can teach an old dog new tricks). \n![](https://m.stacker.news/48280)\n\n\n\nThe arrest of Telegram founder Pavel Durov, is just the latest in a long list of recent events that has me concerned about our freedoms in a digital world. Other events that have given me pause: \n\n- Arrest of Samurai founders\n- Arrest of Tornado cash devs\n- Censorship of X during Venezuelan elections \n- Citizens being questioned and in some instances arrested for online posts during the recent UK protests/riots regarding immigration. \n- EU "misinformation" law\n- Canadian Truckers and some of the people who donated to their protest having bank accounts frozen \n\nI am sure there are more but these come to top of mind and seem to be increasing in frequency. \n\n![](https://m.stacker.news/48282)\n\nSo, Stackers I am reaching out to you today to try and cultivate the best possible freedom tech stack for myself (and hopefully others). Obviously, Bitcoin and Nostr and part of the puzzle, but what other pieces do we need to build the best possible personal **Freedom Tech Stack**. \n\nSats for all,\nGR \N 654 \N 410551 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.55725660633407 0 \N \N f 0 \N 0 181892573 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424249 2025-03-03 23:22:56.362 2025-03-29 22:39:50.231 \N ![What Men Want Meme](https://i.imgur.com/otGGnY9.jpg)\n![Fiat Meme](https://i.imgur.com/QTGv98V.jpg)\n![Understand Meme](https://i.imgur.com/oWbSQqX.jpg)\n![Spot ETF Meme](https://i.imgur.com/NSaNXUg.jpg)\n![Catfish Meme](https://i.imgur.com/zFl4PDA.jpg)\n![Sat Race Meme](https://i.imgur.com/rQJllWd.jpg)\n![2030 Meme](https://i.imgur.com/ahIViWW.jpg)\n![Day 1 Meme](https://i.imgur.com/rCpl1aY.jpg)\n![Fake Money Meme](https://i.imgur.com/9qSWh9Y.jpg)\n![Crypto Meme](https://i.imgur.com/LRrBh6V.jpg)\n![Stay Humble Meme](https://i.imgur.com/ekkr23t.jpg)\n![Hazlitt Meme](https://i.imgur.com/OQtdcFf.png)\n![Tyranny Meme](https://i.imgur.com/bldu90e.jpg)\n![News Meme](https://i.imgur.com/NC9IlSM.jpg) https://example.com/ 1745 424242 423378.424242.424249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4663603559963 0 \N \N f 0 \N 0 34532684 0 f f \N \N \N \N 423378 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307583 2024-11-25 08:12:41.319 2025-03-29 22:39:50.232 \N > new left is surprisingly intolerant...\n\nThey are what they claim to hate in so many ways. It's absurd and also so human. And by that I mean not unusual. \n\nThe new left is as moralistic as the old conservative religious right. They are as hate fueled as they protray the MAGA movement. They hold so much bigotry toward working poor white people that are too dumb to vote Democrat. \n\nI've suspected these things for years but they are now exposed for everyone to see. https://example.com/ 1424 306412 306412.307583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7149015777891 0 \N \N f 0 \N 0 192191237 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428525 2025-03-07 11:28:24.672 2025-03-29 22:39:50.232 \N Oh so much fodder in this article.. \n\nAI is a serious technology and I'm not smart enough to really understand how it works. I like to believe that I'm smart enough to see hype when I see it. Andreessen wrote this article for two reasons: \n\n1. He's probably funding a bunch of small AI startups and he's afraid of Open AI encouraging the kind of regulation that might strangle them. Open AI have all the attention right now so they just might succeed. \n\n2. The guy is a tech bro that got rich from several decades of fiat-funded tech companies that would have been considered a malinvestment in a free market, but thanks to extremely low interest rates managed to do quite well. This bubble is starting to pop, but there is a sliver of hope that the hype around AI might keep inflating it a bit longer. This probably requires calming people down because most people are in a frenzy. \n\nAgain, not an expert, but I don't think AI is an existential threat or a panacea. I understand the potential benefits and dangers of AI, I just don't think that any extreme scenarios (curing cancer overnight, extinction-by-superintelligence) are particularly likely. \n\nStill, I'd love to tear into some of his tech bro optimism: \n\nAndreessen says:\n\n"Every child will have an AI tutor that is infinitely patient, infinitely compassionate, infinitely knowledgeable, infinitely helpful."\n\nMudbloodGPT says: \n\nFuck you, I'm not going to sit my kids down in front of a screen to talk to a chatbot all day. That's a surefire way to raise a bunch of sociopaths. We're not too far away from achieving that with smartphones as it is, no reason to speed it up. Infinitely compassionate? As if we didn't have enough snowflakes! I want my kids to make mistakes, experience the consequences, pick themselves up and do better the next time. \n\n---------------------------------------------------------------------------------------------\nAndreessen says:\n\n"Productivity growth throughout the economy will accelerate dramatically, driving economic growth, creation of new industries, creation of new jobs, and wage growth, and resulting in a new era of heightened material prosperity across the planet."\n\nMudbloodGPT says: \n\nUm... how about a currency that can't be inflated so that I can work my ass off for a few years and then retire to growing tomatoes in my garden because I have provided enough value to others and it can't be eaten away by a greedy government? That technology won't make YOU filthy rich, but it has a feature set that I would really like. I don't want to be on some inflationary treadmill that causes "creation of new jobs," most of which are bullshit anyway.\n\n---------------------------------------------------------------------------------------------\nAndreessen says:\n\n"The creative arts will enter a golden age, as AI-augmented artists, musicians, writers, and filmmakers gain the ability to realize their visions far faster and at greater scale than ever before."\n\nMudbloodGPT says: \n\nNah dude, we already experienced the golden age, when Jackson Pollock discovered that he can splatter paint on canvas and sell it to some sucker for millions. \n\n---------------------------------------------------------------------------------------------\nAndreessen says:\n\n"I even think AI is going to improve warfare, when it has to happen, by reducing wartime death rates dramatically. Every war is characterized by terrible decisions made under intense pressure and with sharply limited information by very limited human leaders. Now, military commanders and political leaders will have AI advisors that will help them make much better strategic and tactical decisions, minimizing risk, error, and unnecessary bloodshed."\n\nMudbloodGPT says: \n\nAs a large language model, I can't condone making war and I cannot provide you with good strategies to defeat your enemy. \n\nNah, just kidding. See, you didn't even need an AI tutor to become a sociopath. \n\n---------------------------------------------------------------------------------------------\nAndreessen says:\n\n"And this isn’t just about intelligence! Perhaps the most underestimated quality of AI is how humanizing it can be. AI art gives people who otherwise lack technical skills the freedom to create and share their artistic ideas. Talking to an empathetic AI friend really does improve their ability to handle adversity. And AI medical chatbots are already more empathetic than their human counterparts. Rather than making the world harsher and more mechanistic, infinitely patient and sympathetic AI will make the world warmer and nicer."\n\nMudbloodGPT says: \n\nYour prompt makes no sense. It was clearly written by a stochastic parrot without any understanding of the underlying words. How is talking to an empathetic AI friend humanizing? \n\n https://example.com/ 663 428403 428371.428403.428525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1068954225737 0 \N \N f 0 \N 0 219680914 0 f f \N \N \N \N 428371 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458284 2025-03-29 07:01:40.258 2025-03-29 22:39:50.232 \N this look fucking amazing, thanks for sharing!\n\ni really like the development in Africa! https://example.com/ 2088 458092 458092.458284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.50327419905627 0 \N \N f 0 \N 0 225908429 0 f f \N \N \N \N 458092 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444535 2025-03-20 01:26:38.976 2025-03-29 22:39:50.232 \N I'm currently trying to deploy a [booger](http://booger.pro) cluster. I always dread deployments. I'm currently attempting to use AWS Copilot which deploys to fargate and is "serverless." Afaict it's not serverless in a short lived process type of way.\n\nIf I had the bandwidth, I'd probably learn how to use terraform so that deploying would feel skillable. https://example.com/ 20858 444526 444526.444535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2005393930054 0 \N \N f 0 \N 0 151705482 0 f f \N \N \N \N 444526 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437495 2025-03-14 15:02:44.704 2025-03-29 22:39:50.233 \N As a recent graduate from a public university with a bachelor's degree in Economics, I could not relate to this story more. My first three months going down the bitcoin rabbit hole taught me more about economics than all of my university classes combined. Luckily I was in a position where I was ready to rethink all of the nonsensical models and abstract Keynesian ideas I was taught in my classes. \n\nLots of my classmates share that sentiment with your students - bachelors degrees in Economics are largely useless in today's world. The main silver lining I found is that it educates students on the models and viewpoints they will have to stand up against during this shift to a hard money system. https://example.com/ 9362 437233 437233.437495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9066852214294 0 \N \N f 208215979 \N 3 35877199 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407026 2025-02-17 18:02:49.684 2025-03-29 22:39:50.233 \N Day 96 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20854 406576 406576.407026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.308568175982 0 \N \N f 196782724 \N 1 1909059 0 f f \N \N \N \N 406576 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448455 2025-03-22 15:56:19.994 2025-03-29 22:39:50.233 \N Can you add a mechanism to input referral code at sign up?\n\nCurrently referral is only attributed it they sign up through the link. I have referred a couple people that signed up by coming to the site and logging in via lightning wallet. There is no way for them to attribute that referral to me. \n\nNot a big issue. I am sure the overwhelming majority of referrals are done via link but would be a nice to have feature if when someone signs up without a referral or invite link they can attribute the sign up to another stacker. https://example.com/ 10934 447432 446456.447164.447194.447432.448455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7775925847673 0 \N \N f 0 \N 0 145657643 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408309 2025-02-18 17:30:45.495 2025-03-29 22:39:47.606 SN Saturday Newsletter 4/13/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. As part of the FBI's investigation into [lukedashjr's stolen bitcoin](https://stacker.news/items/115980), the invite-only [CoreDev hack event](https://coredev.tech/) was subpoenaed to provide attendee information.\n - [[a priori] Lot of senior Bitcoin devs under FBI investigation, myself included ?](https://stacker.news/items/501926)\n - 8k sats \\ 22 comments \\ [@theariard](https://stacker.news/theariard)\n2. [@peterpeerdeman](https://stacker.news/peterpeerdeman) experiences zaps and earning money for their music for the first time. Most of us have forgotten what that's like, but he reminds us in detail.\n - [Thoughts on Nostr from a creator's perspective](https://stacker.news/items/499556)\n - 9.5k sats \\ 13 comments \\ [@peterpeerdeman](https://stacker.news/peterpeerdeman)\n3. So much is visibly going on in the world, you can either know a little bit of everything or a lot about a few things. [@kepford](https://stacker.news/kepford) argues why we should prefer the latter.\n - [An Inch Deep and a Mile Wide](https://stacker.news/items/498633)\n - 9.3k sats \\ 33 comments \\ [@kepford](https://stacker.news/kepford)\n4. Plebs once aspired to run profitable lightning routing nodes. Now (as in the next top story), they're shutting them down. [@siggy47](https://stacker.news/siggy47) asks if the dream is still alive.\n - [Will Pleb Hobby Lightning Nodes Be Big, Profitable Enterprises In The Future?](https://stacker.news/items/498302)\n - 4k sats \\ 36 comments \\ [@siggy47](https://stacker.news/siggy47)\n5. [@Nuttall](https://stacker.news/Nuttall) shuts their lightning node down opting for a lower maintenance mobile lightning wallet.\n - [I closed all of my lightning channels and I'm shutting down my node.](https://stacker.news/items/504040)\n - 4.6k sats \\ 29 comments \\ [@Nuttall](https://stacker.news/Nuttall)\n\n##### Top AMAs\n- [I'm Vlad, founder of Kagi Search and Orion Browser. AMA.](https://stacker.news/items/502409)\n - 39.7k sats \\ 104 comments \\ [@vladquant](https://stacker.news/vladquant)\n- [The PubKey NYC AMA](https://stacker.news/items/500101)\n - 21.5k sats \\ 117 comments \\ [@pubkey](https://stacker.news/pubkey)\n\n\n##### Don't miss\n- [How to know if you are in the oppressive party](https://stacker.news/items/501222)\n- [Seek First _____](https://stacker.news/items/503804)\n- [History of Federal Tax Rates](https://stacker.news/items/502223)\n- [Old Wench Motor](https://stacker.news/items/497644)\n- [Tether makes a shitload of money. Efficiently.](https://stacker.news/items/497836)\n- [How we built the new Find My Device network with security and privacy in mind](https://stacker.news/items/500415)\n- [What are some of the most important things you have spent time on in your life?](https://stacker.news/items/502465)\n- [Consumer prices rose 3.5% from a year ago in March, more than expected](https://stacker.news/items/500966)\n- [How A Small Team of Devs Created React at Facebook](https://stacker.news/items/498013)\n- [The rich are getting second passports, citing risk of instability](https://stacker.news/items/501444)\n- [Secured My First Client as a Bitcoin Consultant!](https://stacker.news/items/501031)\n- [The Practice of Non-Possessiveness](https://stacker.news/items/497799)\n- [Pixel 8 can be tracked whilst powered off](https://stacker.news/items/499445)\n- [Tether makes a shitload of money. Efficiently.](https://stacker.news/items/497836)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Earned about 250k sats from Stacker News in 2 months](https://stacker.news/items/497951)\n- [Stacker News is social media. So what?](https://stacker.news/items/503531)\n- [SN: Elevating Shitposting to Cathartic Connections #2](https://stacker.news/items/497404)\n- [What’s your SN posting routine? ](https://stacker.news/items/499454)\n- [SN Defying Conventional Parenting Advice](https://stacker.news/items/503162)\n- [Post every day on Stacker News n your V4V will emerge](https://stacker.news/items/502039)\n- [Updated automated SN posting code to use API Keys](https://stacker.news/items/498377)\n\n\n-------\n\n##### Top Monday meme \\ 25.2k sats \\ [@nerd2ninja](https://stacker.news/nerd2ninja)\n![](https://imgprxy.stacker.news/hOyXsljBucXOetDozYEj_8nrpLrKJJVq3gog1UADCDQ/rs:fit:640:360/aHR0cHM6Ly9jZG4uZGlzY29yZGFwcC5jb20vYXR0YWNobWVudHMvNzk2OTM1Njk5MDM0MTQ0Nzk4LzEyMjQ4MDM1ODYwNzcwOTgxODQvOGxiYmNmLnBuZz9leD02NjFlZDIzYSZpcz02NjBjNWQzYSZobT1iZDRkMWU5NmQ1YTM5NjFiYTdkOWUwN2ZiYjE4YjYyMGYwZDhmNWQ2YTg2YmQxZGVlNDAzMGQzNGM4NDU5NzNiJg)\n\n[**all monday memes**](https://stacker.news/items/498381)\n\n------\n\n##### Top Friday fun fact \\ 10.4k sats \\ [@jasonb](https://stacker.news/jasonb)\n> Very serious facts here…\n>\n> https://bitcoin-facts.onrender.com/\n\n\n[**all friday fun facts**](https://stacker.news/items/503353)\n\n------\n\n##### Top Stackers\n1. [@TNStacker](https://stacker.news/TNStacker): 88k sats stacked\n2. [@vladquant](https://stacker.news/vladquant): 55.6k sats stacked\n3. [@Undisciplined](https://stacker.news/Undisciplined): 40.9k sats stacked\n4. [@Public_N_M_E](https://stacker.news/Public_N_M_E): 38k sats stacked\n5. [@grayruby](https://stacker.news/grayruby): 34.1k sats stacked\n\n------\n\n##### Top Spenders\n1. [@Undisciplined](https://stacker.news/Undisciplined): 99k sats spent\n2. [@Sofia_Vittar](https://stacker.news/Sofia_Vittar): 50.8k sats spent\n3. [@grayruby](https://stacker.news/grayruby): 42k sats spent\n4. [@TNStacker](https://stacker.news/TNStacker): 38k sats spent\n5. [@MaxAWebster](https://stacker.news/MaxAWebster): 34.5k sats spent\n\n------\n\n##### Top Cowboys\n1. [@kr](https://stacker.news/kr): 438 days\n2. [@kepford](https://stacker.news/kepford): 264 days\n3. [@SatsCats](https://stacker.news/SatsCats): 223 days\n4. [@tnuts420](https://stacker.news/tnuts420): 222 days\n5. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 218 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 1650 \N 408309 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.0405188691008 0 \N \N f 0 \N 0 18345613 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458071 2025-03-28 23:01:25.197 2025-03-29 22:39:47.606 Umbrel's new TOS no one talks about will prevent you from running a shop with it \N https://umbrel.com/legal/umbrelos/tos 15703 \N 458071 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 13.6113265835099 0 \N \N f 0 \N 0 134256013 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444527 2025-03-20 01:13:34.455 2025-03-29 22:39:50.233 \N > solar is a useless energy source for society as a whole\n\nYeah, maybe if you live in Germany. But not if you live in near the equator.\n\nAlso, a lot of solar generation goes unmeasured because smaller installations are off-grid. Those figures shown for solar are likely only from larger-scale farms.\n\nEnergy consumption isn't the same as production. A lot of renewable (and nonrenewable) energy is produced that is never consumed, effectively stranded or wasted. One chart is confusing because its titled "consumption" but the chart axis measures "production".\n\nEven the "obvious facts" don't include the whole story sometimes. https://example.com/ 21815 444286 444286.444527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2756446077529 0 \N \N f 0 \N 0 72739637 0 f f \N \N \N \N 444286 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444544 2025-03-20 01:47:03.688 2025-03-29 22:39:50.234 \N If you plan on using this please read this comment. It's very preliminary onion support.\n\nMain caveats\n1. not everything is end-to-end onion routed\n - js/css/images while using tls and still routed over tor and expose your egress node's IP (not a huge deal, but perhaps a deal to some users)\n2. logging in and certain logged in behaviors might not work yet\n - this was a pain to add so I haven't fully tested everything\n - logging in with twitter and github and email will probably still take you to the stacker.news domain ... lnauth might work, but I haven't tested it\n\n@BlokchainB sent me 500k sats to do this. Thank them. \n\nFunny note: I said it'd take me an hour and it took me 12 because I had to do a lot of weird dev-ops stuff and testing to make sure I didn't take down the main site. I also quoted BlokchainB an hourly rate of 500k sats but I did the math wrong and meant 5 million sats/hour lol.\n\nAnyway, it's a decent start. https://example.com/ 20990 443836 443836.444544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.86599811857943 0 \N \N f 0 \N 0 177359934 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451331 2025-03-24 13:58:34.592 2025-03-29 22:39:50.236 \N I just finished editing a video for my Youtube Bitcoin Channel.\n\nThe video for this week is about the importance of buying BTC without KYC and the platforms where you can do it. https://example.com/ 13406 451329 451329.451331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5693906313942 0 \N \N f 0 \N 0 123711826 0 f f \N \N \N \N 451329 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402814 2025-02-14 05:15:20.374 2025-03-29 22:39:50.237 \N heterogeneous mutlisig constructions! Now that we have taproot, there are some _really_ cool ways to encumber coins https://example.com/ 686 271272 271272.402814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1236757440601 0 \N \N f 0 \N 0 94495578 0 f f \N \N \N \N 271272 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450288 2025-03-23 20:47:39.705 2025-03-29 22:39:50.237 \N Great question !\n\nI think becoming a parent is definitely challenging for founders. Raising a baby is a full-time job. Full stop.\n\nOn the other hand, it has given me a clear focus and an additional boost of motivation. My time is currently roughly split 50-50 between the baby and building Nunchuk. I've removed all the other distractions out of my life, pretty much out of necessity.\n\nFortunately my wife and my family has also been super supportive. It also helps that this job allows me to work remotely, so I do have some flexibility. Thank you Bitcoin!\n\nAll in all, it's great so far! https://example.com/ 18426 450287 450287.450288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0028307914478 0 \N \N f 0 \N 0 169703550 0 f f \N \N \N \N 450287 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410577 2025-02-20 14:46:29.699 2025-03-29 22:39:47.606 SN release: improve image/video, wavlake/nostr/spotify embeds, fix NWC bugs Other than the NWC fix not a whole lot of important stuff in here, but:\n\n- problems with Alby's NWC relay should be fixed\n - @ek mistook a bug in our code for a bug Alby said they had with their relay\n- you can zoom on images and play videos from your notifications\n- link posts with an image or video url display the image or video in the post body (this used to be the case but got broken)\n- video links should no longer cause layout shift and should work on iOS and the player should be sized appropriately\n- we support embeds for wavlake, nostr (links with bech32 entities in the path), and spotify\n - additionally they will embed in comments and post bodies too now\n- you can disable all images, video, and embeds in your settings \n - it will display images/videos/embeds as links\n- if you still want to see images so long as they're proxied (for privacy), there's a setting for that and it will show unproxied images, videos, and embeds as links\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 9.8m sats to 28 contributors for 126 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/672290\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 1985 \N 410577 \N \N \N \N \N \N \N \N security \N ACTIVE \N 12.6090325254996 0 \N \N f 0 \N 0 223325165 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421147 2025-03-01 12:43:38.299 2025-03-29 22:39:47.606 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/436241) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 10818 \N 421147 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.9934369998331 0 \N \N f 0 \N 0 228204662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404450 2025-02-15 22:04:53.67 2025-03-29 22:39:50.237 \N Because the world needs SN. \n\nTheoretically, the quality of content and community should be better with SN than the trash that is reddit, X/Twitter, facetrash, etc. in practice that is true, but the difference is not yet as pronounced as I had expected by this point in time.\n\nThe network effect is so much stronger than I would have imagined, but the SN metrics show steady growth over time.\n\nAt some point I expect SN to be the place to be. Or at least, force the others to add Bitcoin monetization for user generated content. https://example.com/ 12278 404422 404422.404450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5886669411415 0 \N \N f 0 \N 0 66642862 0 f f \N \N \N \N 404422 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451373 2025-03-24 14:22:13.873 2025-03-29 22:39:50.238 \N I noticed the PWA version of SN doesn’t dark out posts you already viewed once you close it and open it back up. Not a huge deal but it’s how I keep track of news I viewed. https://example.com/ 1221 451365 451074.451365.451373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.062270608808 0 \N \N f 0 \N 0 57895961 0 f f \N \N \N \N 451074 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404381 2025-02-15 20:29:58.231 2025-03-29 22:39:50.239 \N PSA: tip more = stack more\n\nMy effort to tip more, in order to recirculate my sats into the sn community, has backfired comically. I'm now getting even more in daily payouts for being one of the top zappers.\n https://example.com/ 1136 404354 404354.404381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.17818400282922 0 \N \N f 0 \N 0 157376866 0 f f \N \N \N \N 404354 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410592 2025-02-20 14:54:48.747 2025-03-29 22:39:50.239 \N >What's the incentive for this?\n\nIf you mean to ask what the incentive for me working on this: Because domain names are centralized in ICANN and I wanted to try to build something that isn't. Also, I just think it's an interesting problem.\n\n>What happens if there’s a name conflict?\n\nThe protocol stipulates that indexers just ignore duplicates. It's first come/first serve. It's a looser social consensus, but Ordinals have well demonstrated that even without miner enforcement, the benefits of social cooperation can incentivize correct behavior.\n\nOne of the nice benefits of loose social consensus is that we can use it to deal with squatters in a decentralized manner as well. Most decentralized means of identity usually just decide that squatters have to be lived with (think .eth, .btc, etc), but with Nomen we could actually set up a system where indexers could subscribe to Nostr events from trusted third parties that keep track of "illegitimate" claims, analogous to spam blocking lists.\n\nThis promotes self-sovereignty, because anyone operating their own indexer can pick and choose which parties they trust for "spam protection", much like choosing ad blocking lists in your browser.\n\nIt promotes decentralization because it allows handling squatters and name conflicts with "eventual consistency", i.e. network effects will naturally select for the most rightful owner.\n\nLastly it promotes good behavior. Because it costs real resources (mining fees) to register a name, and it's cost-free for indexers to ignore your illegitimate claim, simply HAVING such a decentralized system to handle squatters means that there is very little chance it will need to be used often. https://example.com/ 19193 410269 410269.410592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.68364300439507 0 \N \N f 0 \N 0 144591401 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403225 2025-02-14 14:59:07.738 2025-03-29 22:39:47.606 What are you doing to become the best you? The floor is open. \N 4035 \N 403225 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5442231080279 0 \N \N f 0 \N 0 61117287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458146 2025-03-29 02:14:56.102 2025-03-29 22:39:47.606 Mullvad and The Tor Project releases a new web browser \N https://mullvad.net/en/browser 15146 \N 458146 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 6.73664373209846 0 \N \N f 0 \N 0 232690757 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404475 2025-02-15 22:39:54.926 2025-03-29 22:39:50.227 \N 1. Generally, most books suck, particularly Bitcoin and tech industry ones. There is only one good Bitcoin book, Cryptoeconomics, and even that one I would debate some aspects of, but at least it is intelligent, rational, and can be applied. Otherwise, books that have influenced me are The Red Queen by Matt Ridley, and metaphysical speeches by people like Alan Watts, Jordan Peterson, etc. The way I tackle a topic is to obsess about it and discard bullshit with extreme prejudice. I went into a very deep rabbit hole for a long time to design Synonym's vision and choices. What's important is to make new mistakes, so you have to make sure to shed old ones and focus on what is left and the dynamics involved. Primitives are all that matter, you can't design without identifying them and knowing where the edges of a system really are.\n\n2. As I modeled a hyperbitcoinized world I came to the conclusion that there will always be multiple forms of money and the need for finance (using other peoples money to accelerate growth and cooperate on larger goals) and thus you need at least Bitcoin as decentralized abstracted value and "credit" as trusted issuer-defined value. We need tokens as credit and we need them to be as programmable as Bitcoin so we can leverage trust and abstract away the need for government fiat entirely.\n\n3. I guess it isn't up to me to decide what is the most controversial take, but you could go through my Good Morning tweets and look at the ones with the most replies I guess :) \nhttps://twitter.com/i/events/1442133822724841472\n\nOtherwise, I think maybe the most underappreciated take is that Bitcoin is not divisible. I am worried that Bitcoiners both misunderstand that Bitcoin is an enforced integer total, having no decimals, but also misunderstand that dividing and multiplying Bitcoin are the same thing, and that one day we may have to make a hard decision to add more Bitcoins, and it might even be a majority of people that want it and for rational reasons. I am just relieved that I will probably be dead before that debate arises :)\n\nI wish we never had the "Bitcoin" denomination and always used sats only. (and also that we had named them bits or bitcoins instead!) https://example.com/ 14385 404142 404095.404131.404139.404142.404475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.20658116995942 0 \N \N f 0 \N 0 46568657 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421162 2025-03-01 13:09:39.998 2025-03-29 22:39:50.227 \N I hope everyone is watching this conversation between you and ek... Complete professionals. You guys are diamonds. https://example.com/ 11789 420137 419818.420137.421162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8809465207436 0 \N \N f 0 \N 0 4703365 0 f f \N \N \N \N 419818 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404469 2025-02-15 22:32:34.654 2025-03-29 22:39:50.227 \N i beg to differ!\n\nhttps://imgprxy.stacker.news/pONzamPRoZTMTwToGnmaviOuRHVFENbw5IFnxIREjS8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS90YmhLZEZELnBuZw https://example.com/ 20381 404468 404468.404469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.84251187266964 0 \N \N f 0 \N 0 60805855 0 f f \N \N \N \N 404468 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424239 2025-03-03 23:12:17.188 2025-03-29 22:39:50.227 \N Day 340 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 17798 424215 423438.423439.423571.424215.424239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9612841339519 0 \N \N f 0 \N 0 37777850 0 f f \N \N \N \N 423438 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458179 2025-03-29 04:04:08.824 2025-03-29 22:39:50.228 \N I have often thought about starting a home services business and pricing everything in Bitcoin. I would have to take fiat as well if customer requested it but all prices quoted in Bitcoin. \n\nSaw one of my neighbours getting their exterior windows cleaned the other day and the window cleaner was using absolute garbage equipment. I am going to talk to him and let him know next time I will do it for 150k sats. https://example.com/ 14818 448855 448855.458179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7269668951571 0 \N \N f 0 \N 0 185207985 0 f f \N \N \N \N 448855 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450146 2025-03-23 19:14:56.862 2025-03-29 22:39:50.232 \N I guess I'm a sats ho. https://example.com/ 1611 86513 86513.450146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0265674408269 0 \N \N f 0 \N 0 248098461 0 f f \N \N \N \N 86513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444352 2025-03-19 20:03:35.128 2025-03-29 22:39:50.24 \N We live in a fiat world where the real state it’s inflated by the fresh printed money, so we have to keep playing with those rules until bitcoin wins. https://example.com/ 1603 240894 239231.239323.239328.240894.444352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1998558511464 0 \N \N f 0 \N 0 74229268 0 f f \N \N \N \N 239231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444368 2025-03-19 20:21:15.124 2025-03-29 22:39:50.24 \N Thanks guys. https://example.com/ 21639 444358 444358.444368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.75831848520198 0 \N \N f 0 \N 0 182108155 0 f f \N \N \N \N 444358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410598 2025-02-20 15:00:52.786 2025-03-29 22:39:47.606 What features or functionalities you'd like to see implemented on SN? There are already many open issues on SN backlog[^1]. Without seeing what is already there, what features or functionalities you'd like to see implemented on SN? What are you missing from other platforms you used in the past?\n\n\n[^1]: https://github.com/stackernews/stacker.news/issues \N 5870 \N 410598 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.18517212627569 0 \N \N f 0 \N 0 192900584 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404480 2025-02-15 22:47:39.615 2025-03-29 22:39:50.232 \N How dangerous is it for me to run a clear net node? I am sick of tor and I want to route payments! https://example.com/ 19668 404479 404479.404480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.54554833867319 0 \N \N f 0 \N 0 197696086 0 f f \N \N \N \N 404479 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416688 2025-02-25 19:13:59.662 2025-03-29 22:39:50.233 \N Super Mario Bros is a great example. It was built around the singular idea of jumping. This might not immediately seem like a constraint, but it constrained other ideas by ensuring they all centered around jumping. Goumbas die from jumping, you throw fire at an angle that incentivices jumping, etc. https://example.com/ 19199 416127 416127.416688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.44321865014303 0 \N \N f 0 \N 0 138158011 0 f f \N \N \N \N 416127 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450109 2025-03-23 18:58:28.705 2025-03-29 22:39:50.233 \N Peter Todd's thoughts on the OP:\n\nhttps://x.com/peterktodd/status/1860396809836753219 https://example.com/ 675 450067 449601.449630.449881.449910.449920.450010.450014.450039.450040.450067.450109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.74236620561552 0 \N \N f 0 \N 0 73526274 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407975 2025-02-18 14:00:15.716 2025-03-29 22:39:50.233 \N Just released a big update of the SN app :)\n\nhttps://stacker.news/items/200720 https://example.com/ 17275 407930 407930.407975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.21495796298088 0 \N \N f 264790276 \N 2 72973499 0 f f \N \N \N \N 407930 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404474 2025-02-15 22:39:16.913 2025-03-29 22:39:50.233 \N In a [famous paper](https://www.econlib.org/library/Essays/hykKnw.html), Hayek laid out the argument for the decentralized intelligence of the market more clearly and succinctly than anywhere I've seen. Lyn cites this paper, and asks:\n\n> “Does a small group of centralized, academic policymakers in a room located in their nation’s capital — akin to a council of elders — have a better grasp on how to allocate their country’s labor and capital than the millions of people do at the individual level?” (p. 228)\n\nThis critique made sense in the era in which Hayek was writing. However, given that the availability of information, the speed at which it propagates, and the computational and analytical power that can be used to process it have increased to almost unimaginable degree since the Soviets attempted to centrally plan their economy, is it possible that Hayek's assumptions about decentralized intelligence no longer hold? https://example.com/ 5175 306390 306390.404474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2877182577202 0 \N \N f 0 \N 0 96506553 0 f f \N \N \N \N 306390 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 429982 2025-03-08 18:13:32.413 2025-03-29 22:39:50.234 \N # The tallest mountain in the world is NOT Everest if you measure from base to peak 🏔️\n\n----\n\n![image](https://oceanservice.noaa.gov/facts/highestpoint.jpg)\n\n> - **Mount Everest**'s peak is the highest altitude above mean sea level at 29,029 feet [8,848 meters].\n> - **Mount Chimborazo**'s peak is the furthest point on Earth from Earth's center. The summit is over 6,800 feet [2,072 meters] farther from Earth's center than Mount Everest's summit.\n> - **Mauna Kea** is the tallest mountain from base to peak at more than 33,500 feet [10,210 meters].\n>\n> [... read more](https://oceanservice.noaa.gov/facts/highestpoint.html) https://example.com/ 9364 429970 429958.429970.429982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.0264024634704 0 \N \N f 1430419602 \N 8 54818067 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421297 2025-03-01 15:08:21.741 2025-03-29 22:39:50.234 \N Day 259 of snailposting everyday 'til BTC hits $100k.\n\n...and 59 push-ups. (32 - 15 - 12)\n\n__@_'-' https://example.com/ 21455 420994 420888.420949.420994.421297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1713859515707 0 \N \N f 0 \N 0 221485354 0 f f \N \N \N \N 420888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 397434 2025-02-10 03:33:45.189 2025-03-29 22:39:47.606 I'm michael1011, Co-Founder of Boltz. AMA. Hello everyone! My name is Michael and I am Co-Founder and developer of [Boltz](https://boltz.exchange).\n\nWe started as a non-custodial, privacy first and account free crypto exchange in early 2019. Since the very beginning, we have been focused on pushing the adoption of the Lightning network and by now we are running [one of the biggest Lightning nodes on the network](https://amboss.space/node/026165850492521f4ac8abd9bd8088123446d126f648ca35e60f88177dc149ceb2).\n\nThese days we mainly facilitate atomic swaps between Lightning BTC to onchain BTC and vice versa.\n\nTopics to ask me about:\n- Bitcoin\n- Lightning\n- What running a big Lightning routing node entails\n- Developing applications on top of the Lightning network\n- Bitcoin onchain scripting\n- Atomic Swaps \N 5637 \N 397434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.58572236330506 0 \N \N f 193213622 \N 1 73127004 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424302 2025-03-04 00:20:57.02 2025-03-29 22:39:47.606 Automate your Lightning Node with Hydro I am absolutely thrilled to introduce you to Hydro, our latest offering aimed at businesses looking to step up in the Bitcoin Lightning Network without the usual headaches.\n\n# Why We Created Hydro\n\nOver the years, we've seen how powerful the Lightning Network can be, especially in creating fast and low-cost transactions. But we've also noticed that businesses have been hesitant to jump in. Why? Well, most entrepreneurs are focused on their core business and don't have the time or the deep technical expertise needed to manage lightning nodes. Let's be honest, managing liquidity in the Lightning Network can take an exorbitant amount of time if you let it.\n\nWatch the 90 second setup video here: https://youtu.be/tt8FH2Ie_34\n\n# What Hydro Does for You\n\nThis is where Hydro comes in. We've designed it to automatically source payment liquidity from the open market straight to your lightning node. This means you don't have to become a Lightning Network expert overnight or lose sleep over managing channels. You get to focus on what you do best: running your business.\n\n# How We're Changing the Game\n\nWe're genuinely excited about the potential Hydro unlocks. Businesses can now enjoy all the benefits of the Lightning Network - fast transactions, low fees, and the enhanced privacy and sovereignty that come with Bitcoin - without any of the complexities.\n\nPicture this: you're a local coffee shop owner who wants to start accepting Bitcoin. But you're too swamped with day-to-day operations to become a Bitcoin whiz. With Hydro, you can effortlessly accept lightning payments, and the old "swipe" fees will even drop significantly as more and more businesses get on board. Imagine going from initial setup fees of 3.5% to transaction fees as low as 0.003% in a circular economy!\n\n# The Power of Magma\n\nWe've integrated Hydro with Magma, our existing marketplace for buying and selling Lightning channels. Magma allows Bitcoin savers to earn extra BTC by opening channels, and it helps us source high-quality liquidity from the market for you. It's a win-win for everyone. As the LSP spec develops, we're keenly interested in connecting to all nodes that implement the LSP spec for the best pricing across the globe.\n\n# The Nitty-Gritty Details\n\nAll you need to do is set your target node size (capacity), purchase some "ambucks" prepaid credits, and Hydro will handle the rest. You can also specify your target inbound liquidity to get exactly what you need, when you need it.\nWe built this with optionality to provide for privacy-first users as well as the fine-grained management that requires more data.\n\n# Let's Build Something Amazing Together\n\nHydro isn't just a service; it's a gateway to a burgeoning global economy. We've already seen glimpses of what a circular Lightning Network economy could look like in places like Costa Rica's 'Bitcoin Jungle,' and with Hydro, we're aiming to kickstart similar ecosystems around the world.\n\nI invite you to join us in this exciting journey. Check out [Amboss Space](https://amboss.space/) for more details or [get started with Hydro right away](https://amboss.space/hydro).\n\nCheers, \nJesse Shrader\nCo-Founder and CEO, Amboss Technologies \N 17001 \N 424302 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8681870461878 0 \N \N f 0 \N 0 96741993 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421140 2025-03-01 12:36:33.521 2025-03-29 22:39:50.234 \N The Creality 3d printer is pretty cool. Its open source, and you can print upgrades for the printer. My next printing project will be printing household items and organizing the stls in my nextcloud. Would be cool to see a huge swath of plebs designing and manufacturing their own products at home. \n\nWe're probably 3 years away from plebs printing tables and chairs at home using plastic bottles, assisted by a 3d printing LLM hosted on their Start9. The pleb will sell the stl on a thriving nostr marketplace for sats over Ark, lightning, or ecash. https://example.com/ 19138 420620 420620.421140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.684839096668 0 \N \N f 0 \N 0 9078434 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421142 2025-03-01 12:36:55.729 2025-03-29 22:39:50.234 \N Or you can use Pheonix or Breez. It's not perfect but it's still far more convenient than what you described. https://example.com/ 5828 421120 420620.420753.420944.421120.421142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.96006021541769 0 \N \N f 0 \N 0 19095037 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421144 2025-03-01 12:37:43.35 2025-03-29 22:39:50.235 \N ![](https://www.zapread.com/i/-4p) https://example.com/ 16543 421118 420620.420753.420944.421118.421144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3551271108605 0 \N \N f 0 \N 0 5579273 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421145 2025-03-01 12:37:45.816 2025-03-29 22:39:50.235 \N Not really a borrow lending protocol… at least not yet. Looks like it’s mostly a way to post offers, comment on them, rescind them. I think there needs to be some additional bits to really be a borrowing protocol. \n\nWould be cool to look at how something like bisq works and adapt some of its mechanisms for lending instead of trading https://example.com/ 19992 420753 420620.420753.421145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7560975683864 0 \N \N f 0 \N 0 189505252 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427647 2025-03-06 14:47:18.195 2025-03-29 22:39:50.235 \N Might want to checkout the stuff we built with it\n\nhttps://blog.mutinywallet.com/note-duel-superposition/ https://example.com/ 21042 427636 427636.427647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7388091797055 0 \N \N f 0 \N 0 143925080 0 f f \N \N \N \N 427636 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458292 2025-03-29 07:11:03.869 2025-03-29 22:39:50.235 \N I think the recent fud is because you chose wasabi for coinjoin, when its said that wasabi partners with a leading anti-privacy webcrawler like chainalysis who acts for governments and big tech. That's something I'd expect from ledger perhaps, but didn't see that coming from trezor. I guess I'd like you to justify the use of wasabi and let us know (those of us who are worried) how using wasabi won't compromise our privacy. https://example.com/ 6419 457126 457126.458292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.27296675832044 0 \N \N f 0 \N 0 71541119 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428536 2025-03-07 11:40:52.873 2025-03-29 22:39:50.236 \N Finally, someone with their head on straight.\n\nIf anyone thinks a global collapse will finally help them not be a loser, they are sadly mistaken. Being a loser is a state of mind. https://example.com/ 12736 428481 428481.428536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3881036344038 0 \N \N f 0 \N 0 227753683 0 f f \N \N \N \N 428481 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424258 2025-03-03 23:27:56.932 2025-03-29 22:39:47.606 Who still inspires you in your bitcoin journey ? \N \N 5129 \N 424258 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 21.8103226691408 0 \N \N f 0 \N 0 9602640 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437819 2025-03-14 22:46:54.872 2025-03-29 22:39:50.236 \N I am automating a few things I do on my pc with short python scripts. As a Linux noob I still don't get how to integrate them into the OS. The windows sheduler felt better / less janky ... idk how to word it differently 🤦🏻‍♀️🤦🏻‍♀️ https://example.com/ 3656 437723 437723.437819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.13343531687218 0 \N \N f 0 \N 0 100553995 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402503 2025-02-13 19:16:08.024 2025-03-29 22:39:50.236 \N Just picked up - [Siddhartha- Hermann Hesse](https://www.goodreads.com/book/show/52036.Siddhartha) https://example.com/ 19263 402438 402171.402438.402503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1853730624637 0 \N \N f 0 \N 0 31857229 0 f f \N \N \N \N 402171 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455458 2025-03-27 02:52:47.423 2025-03-29 22:39:50.237 \N Day 151 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 19535 455428 455428.455458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.22009345996976 0 \N \N f 0 \N 0 74146613 0 f f \N \N \N \N 455428 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428502 2025-03-07 10:56:19.928 2025-03-29 22:39:50.237 \N Debt expiry jan 2023 $800M, total reserves $3,4B. The rest of the debt (future years) is about $17B-20B. The main problem is the debt/gdp which is now about 90%, but unlike the US (debt/gdp at 127%), El Salvador cannot print its main currency (dollars). \nSo that 90% number is not so bad if you are the US, EU, JP or UK, but it's terrible if your currency is weak, or if you have a strong currency but you don't have control over it.\n\nhttps://www.nasdaq.com/articles/will-el-salvador-default-on-its-sovereign-debt-in-2023\n\nhttps://tradingeconomics.com/el-salvador/external-debt\n\nhttps://tradingeconomics.com/el-salvador/government-debt-to-gdp#:~:text=Government%20Debt%20to%20GDP%20in,of%2036.23%20percent%20in%201998.\n\n\nhttps://tradingeconomics.com/united-states/government-debt-to-gdp\n https://example.com/ 20245 428491 428441.428483.428491.428502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.3223130888727 0 \N \N f 0 \N 0 192637817 0 f f \N \N \N \N 428441 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404325 2025-02-15 19:13:58.428 2025-03-29 22:39:50.238 \N I think the costs are so low right now as to be irrelevant. Just a fun proof-of-concept and training wheels as we evolve into the real deal.\n\nI believe, due to small size, we simply have not caught the attention of the activist machinery that patrols the western world. They simply cannot allow free people to congregate anywhere without infiltration. \n\nRest assured, they are coming. https://example.com/ 7760 404313 403662.404313.404325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2887573956535 0 \N \N f 0 \N 0 72714538 0 f f \N \N \N \N 403662 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416922 2025-02-25 23:11:29.453 2025-03-29 22:39:50.238 \N I try to mark the pages I like, or bend the corners on ones I own. So that I can quickly lift the quotes that resonate for me and summarise in digital notes.\n\nI also like rather than to summarise the book, to just lift the best quotes directly and reformat them in the order that provides a decent summary.\n\nWasn’t always that way but it’s been useful to refer back to, rather than needing to necessarily pick up the whole book again. \n\nOne downside is that it means I can stop mid page to write down something of interest. Therefore it has slightly changed the way I read books now. https://example.com/ 20852 416778 415637.415647.416778.416922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.21430924617075 0 \N \N f 0 \N 0 47667937 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424284 2025-03-03 23:58:30.43 2025-03-29 22:39:50.238 \N [![jesus-keys.jpg](https://i.postimg.cc/bNYRk5PC/jesus-keys.jpg)](https://postimg.cc/XXhF0Qpd) https://example.com/ 20254 424270 394203.424270.424284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3983523921931 0 \N \N f 0 \N 0 85463967 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424264 2025-03-03 23:32:18.963 2025-03-29 22:39:47.606 Underrated Travel Destinations Would love to hear stackers share their favorite travel destinations that aren’t typically found on all the “Best Places to Travel in 2023” lists across the internet.\n\nWhat are your most underrated travel destinations? \N 14905 \N 424264 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4470398922375 0 \N \N f 0 \N 0 215293919 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404472 2025-02-15 22:36:43.223 2025-03-29 22:39:47.606 Will Large Miners Operate Lightning Routing Nodes? Many Bitcoin mining companies have large Bitcoin holdings, and as far as I know, none of them have found really compelling ways to earn a return on those assets yet (counterpoint: they may not ever need to).\n\nHowever, as more transaction activity moves to Lightning, miners may become increasingly dependent on channel open/close fees, and in turn may miss out on all the fees which accrue to routing nodes on the Lightning Network.\n\nIs it possible that one day a majority of all fees paid for Bitcoin transactions are paid to LN routing nodes rather than Bitcoin miners? \n\nIf so, wouldn’t it make sense for large miners to put some of their Bitcoin to use on the Lightning Network and earn some fees in return while neutralizing a threat to their future revenue?\n\nI understand that it’s difficult to be a profitable routing node operator today, but miners have both the capital necessary to take a shot at it, and the threat of revenue shortfalls if they don’t.\n\nThey also have such slim margins that little improvements can make big differences in the sustainability of their business.\n\nOne final data point which gives me hope that miners could be profitable is that River has earned ~$100k to date (from their Lightning report) for routing payments through their nodes without even prioritizing revenue (they prioritize payment reliability).\n\nI wouldn’t be surprised if a miner could earn an extra $100k/year right now… and a few orders of magnitude more as Lightning activity scales. \N 14688 \N 404472 \N \N \N \N \N \N \N \N movies \N ACTIVE \N 4.59918837620737 0 \N \N f 0 \N 0 18767917 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402739 2025-02-14 00:27:19.014 2025-03-29 22:39:50.238 \N I would (and might one day) create a script to install the full lightning stack to empower users currently stuck with whatever decisions Umbrel might make because they don't have to technical understanding required were Umbrel big blockers during a blocksize war. https://example.com/ 21047 402578 402556.402565.402578.402739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0322491013433 0 \N \N f 0 \N 0 14844644 0 f f \N \N \N \N 402556 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444559 2025-03-20 02:30:33.514 2025-03-29 22:39:50.239 \N the federal reserve is very aware of bitcoin and also so is the defense department. Everyone is watching us closely and although the pundits don't get it, the smart administrators and generals understand the technology https://example.com/ 15160 444173 444173.444559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8374669404599 0 \N \N f 0 \N 0 78009771 0 f f \N \N \N \N 444173 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444565 2025-03-20 02:44:07.335 2025-03-29 22:39:50.239 \N It was listed for about a month before it sold. But to keep your privacy you must offer to pay shipping. If you want the buyer to pay for shipping you have to KYC. \n\nI have another item listed and to find it I have to go to the site and find it. Or keep the initial offer link. https://example.com/ 1751 444247 444168.444247.444565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.91339218993086 0 \N \N f 0 \N 0 122040489 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444543 2025-03-20 01:46:17.483 2025-03-29 22:39:50.239 \N for a site that calls itself "hacker news", I'm shocked how settled, middle-class, house in the suburbs, "get away from questioning my comfortable normie life" it has become. Anything bitcoin and/or crypto-related (no difference for them) gets a kneejerk anti-reaction, they don't even engage with any argument. Same with anything that tells them how a neocolonial, exploitative world actually works. Hacker News prefers the New Yorker (magazine) crowd to the CCC crowd, nowadays, it seems. https://example.com/ 1658 444365 444365.444543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3704824120963 0 \N \N f 0 \N 0 24550769 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430988 2025-03-09 14:51:55.453 2025-03-29 22:39:50.239 \N Fufi.Money is somewhat different. \n\nAFAIU, Fuji.money, instead of relying on derivatives, relies on overcollateralization. ie: you need to put $2 in bitcoin value to create one fuji dollar, such that even if the price of bitcoin drop by 2, there is still some collateral. at this point the person creating the $1 would need to add more collateral to not be liquidated. https://example.com/ 13553 392178 392178.430988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2421459794979 0 \N \N f 0 \N 0 182720582 0 f f \N \N \N \N 392178 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437612 2025-03-14 17:00:13.142 2025-03-29 22:39:47.606 SN release: subs (finally) So we have subs now. Until ~nostr most of the posts stackers zapped were ~bitcoin related. ~nostr was the first adjacent topic that had stories get zapped into the front page with regularity. It's also relatively polarizing when compared to stories on privacy, the economy, or programming.\n\nThis is just an MVP of subs. You can't even subscribe and unsubscribe to them yet, but we'll get there. You can however browse each sub independently. As usual if you have thoughtful feedback, share it. I tend to spend the majority of my energy imagining what you want and falling back to what I want (which can be a poor proxy for you).\n\nI suspect we'll want more subs soon. Even as I'm writing this, I'm realizing it might make sense to have a meta sub. We now have some of the primitives at least.\n\n##### extras\n- you can now hide your cowboy hat (h/t @super_testnet)\n\n \N 17106 \N 437612 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 19.7548404458594 0 \N \N f 0 \N 0 150092705 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436926 2025-03-14 03:20:42.353 2025-03-29 22:39:47.606 Bitcoiners need to spend less energy on _____ **worrying what other people are doing with their money**. That is kinda the point of Bitcoin, right?\n\nJust stack more sats.. \N 9262 \N 436926 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.3299754143948 0 \N \N f 0 \N 0 141135828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 439315 2025-03-16 11:29:38.45 2025-03-29 22:39:47.607 SN Saturday Newsletter 3/16/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. Satoshi was last active on Bitcointalk in 2010. [@Scoresby](https://stacker.news/Scoresby) highlights the discussions afterward.\n - ["Guys, I think Satoshi left us" > 2011 Bitcointalk thread](https://stacker.news/items/463065)\n - 8.9k sats \\ 30 comments \\ [@Scoresby](https://stacker.news/Scoresby)\n2. For bitcoin's benefit, [@psacramento](https://stacker.news/psacramento) studies the success of Brazil's Pix digital payment system. Brazil's demographics skew young, spend the most time on social media globally, and have a large, informal economy.\n - [Pix in Brazil: A Field Study for the Bitcoin Community](https://stacker.news/items/458011)\n - 111k sats \\ 25k boost \\ 22 comments \\ [@psacramento](https://stacker.news/psacramento)\n3. As bitcoin ETFs take bitcoin mainstream, pressure mounts to make bitcoin compliant in fiat's image. Is this good for bitcoin?\n - [Does Compliance Kill Bitcoin?](https://stacker.news/items/460433)\n - 5.4k sats \\ 28 comments \\ [@thebitcoinbugle](https://stacker.news/thebitcoinbugle)\n4. [@AlexKaboomracks](https://stacker.news/AlexKaboomracks) warns stackers that bitcoin mining is hard and usually unprofitable.\n - [Beware of millions of ways to lose your Satoshis mining this bull market ](https://stacker.news/items/466732)\n - 7.2k sats \\ 51 comments \\ [@AlexKaboomracks](https://stacker.news/AlexKaboomracks)\n5. Freedom is more of a direction than a destination and [@kepford](https://stacker.news/kepford) shares some of the landmarks.\n - [Are you moving towards freedom or away from it?](https://stacker.news/items/463377)\n - 7.1k sats \\ 36 comments \\ [@kepford](https://stacker.news/kepford)\n\n##### AMAs\n- [AMA - Danny Diekroeger Founder of Deezy Labs - Ordinals, Lightning, and More](https://stacker.news/items/461801)\n - 31.2k sats \\ 104 comments \\ [@dannydeezy](https://stacker.news/dannydeezy)\n- [Alekos Filini Founder of TwentyTwo AMA](https://stacker.news/items/464725)\n - 16k sats \\ 61 comments \\ [@afilini](https://stacker.news/afilini)\n\n##### Don't miss\n- [What would you do if Bitcoin died tomorrow?](https://stacker.news/items/465745)\n- [Mining Bitcoin with Off-grid Solar: Experiences So Far](https://stacker.news/items/466029)\n- [Taxation is theft is too weak. It's much worse than that](https://stacker.news/items/460695)\n- [You And Your Small Community Are The Only People Left On Earth](https://stacker.news/items/463269)\n- [How to Restore Funds from a Dead LND Node 🕵🏼](https://stacker.news/items/464537)\n- [Liberate yourself!](https://stacker.news/items/463220)\n- [On the Subject of Mastery and Achieving Mastery](https://stacker.news/items/459358)\n- [Bitwage just rugpulled their U.S. users.](https://stacker.news/items/460690)\n- [Do Business with Bitcoiners](https://stacker.news/items/461431)\n- [Don't pay now (in fiat) what you can pay later](https://stacker.news/items/462941)\n- [Judge: Craig Steven Wright is NOT Satoshi](https://stacker.news/items/464591)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [SN release: sndev command and open source contribution awards](https://stacker.news/items/466556)\n- [Do you use SN in light or dark mode?](https://stacker.news/items/459791)\n- [POLL: When BTC price goes up, does your zap amount go down?](https://stacker.news/items/459037)\n- [SN Feature Request: add Lightning addresses to sat forwarding](https://stacker.news/items/461985)\n- [Do you zap people who don’t zap back?](https://stacker.news/items/458590)\n\n-------\n\n##### Top Monday meme \\ 25.3k sats \\ [@SpaceHodler](https://stacker.news/SpaceHodler)\n![](https://imgprxy.stacker.news/0MOdLOoFBjb-pWn92ArEHcDF8i9V1yWTKxlsc9u0rHI/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMDE1Ng)\n\n[**all monday memes**](https://stacker.news/items/460019)\n\n------\n\n##### Top Friday fun fact \\ 10.3k sats \\ [@cryotosensei](https://stacker.news/cryotosensei)\n> ![](https://imgprxy.stacker.news/S0jel36i8DiDCYG2hzl-GbO_u7iI6UsBxwF_qfiWjLk/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMDk1NA)\n>\n> Spotted at Singapore Zoo\n\n[**all friday fun facts**](https://stacker.news/items/465878)\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 9166 \N 439315 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 29.2778952027255 0 \N \N f 0 \N 0 155983995 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416967 2025-02-26 00:13:17.819 2025-03-29 22:39:47.608 Tiered Sybil Fee Idea The 30% sybil fee seems to have been a boon to revenue generation for territories but I think it has decreased the size of zaps. \n\nToday I paid 15k sats from the baseball pool to @BlokchainB outside of SN because 4,500 sats is quite a haircut. If it was just a 10% fee, I would have likely just zapped him as we have done in the past for pool payouts. I noticed @Coinsreporter also paid @siggy47 for the music pool payout outside of SN. \n\nWhat if the fee was tiered based on the size of zap? For instance: \n\n1-200 sats = 30% fee\n201-999 = 20% fee\n1000-9999 sats = 15% fee \n10k+ sats = 10% fee\n\nObviously @k00b and @ek are busy with the shift to non custodial right now but might be something to consider in the future that allows territories to still generate additional revenue because most zaps are likely going to remain below 200 but also allow big zappers to feel like their zaps aren't being diluted and going to the deserved party. \n\nThoughts? \n\nSats for all,\nGR \N 21501 \N 416967 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5270832956261 0 \N \N f 0 \N 0 28908703 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416968 2025-02-26 00:16:56.214 2025-03-29 22:39:50.24 \N Unrelated, but last summer my daughter and I made a rock garden underneath one of the downspouts on our house. Now when it rains you can watch the water flow down over the rocks. Definitely a pleb water feature. Haha \n\nWe had a lot of fun doing it and it was a good workout collecting and carrying all those rocks back home. https://example.com/ 4313 201110 200669.200762.201110.416968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4807368703072 0 \N \N f 0 \N 0 76299880 0 f f \N \N \N \N 200669 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423175 2025-03-03 04:22:07.7 2025-03-29 22:39:50.24 \N We're trying to gain some kind of rough technical consensus on bitcoin covenant proposals so If you're a bitcoin developer please express your opinion here in the link mentioned in OP.\n\nOpinions on site so far:\n-Luke Dashjr\n-Jon Atack\n-benthecarman\n-instagibbs\n-reardencode\n-matthewjablack\n-moonsettler\n-1440000bytes\n\nOtherwise if you're new to covenants please read these articles here:\n\nWhy bitcoin needs covenants by Jameson Lopp: https://blog.casa.io/why-bitcoin-needs-covenants/\nHow CTV can help bitcoin scale by Shinobi: https://bitcoinmagazine.com/technical/how-ctv-can-help-scale-bitcoin\n https://example.com/ 16329 423122 423122.423175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2243592492153 0 \N \N f 0 \N 0 165442306 0 f f \N \N \N \N 423122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404539 2025-02-16 00:40:24.993 2025-03-29 22:39:50.24 \N https://widgets.twentyuno.net/\n\nA widget builder that enables you to start accepting LN bitcoin payments on your website.\n\nAlso supports WebLN!\n https://example.com/ 889 402784 402188.402784.404539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2844967899287 0 \N \N f 0 \N 0 222900575 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427228 2025-03-06 08:16:20.351 2025-03-29 22:39:50.239 \N 1 sat = 1$\n\n<=> 1BTC = 100m\n\n=> Market cap = 2 thousand trillion\n\nCurrently all stocks world wide are estimated to be 90 trillion\n\n\n\nYour scenario is either waaay into the future or in an extreme hyperinflation. My guess is that this probably won't happen. https://example.com/ 1162 426811 426811.427228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1630691736136 0 \N \N f 0 \N 0 120752195 0 f f \N \N \N \N 426811 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444511 2025-03-20 00:39:31.379 2025-03-29 22:39:50.24 \N Do self discovery. Find out who you are. Be authentic to yourself https://example.com/ 21148 444449 444449.444511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9497747550343 0 \N \N f 0 \N 0 49844301 0 f f \N \N \N \N 444449 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414293 2025-02-23 19:35:48.435 2025-03-29 22:39:50.24 \N It’s already better than Damus imho. \n\nSearch is quicker and more reliable. Quite often I search on Damus a valid npub and it finds no one 😔\n\nZaps are more intuitive in that the Plebstr app asks how much you want to send each time by default. Loading content is faster, and that stacks up each day. Threading of conversations is awesome, since it loads the prior conversation like we all expect from Twitter.\n\nAt the very least it’s a good complement to Damus. I love what Damus has built and I’m not knocking Will’s work, it’s just Plebstr is growing quicker and faster to become something else entirely. I believe because it has a larger team working on it. https://example.com/ 1626 414232 414232.414293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.02976251836252 0 \N \N f 0 \N 0 15324987 0 f f \N \N \N \N 414232 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415093 2025-02-24 14:13:33.957 2025-03-29 22:39:50.241 \N It's logical but in my opinion it's a stupid gamble. This will work if bitcoin consolidates or moves gradually upwards but if you get quick upward impulse you are going to get squeezed out due to high short interest in MSTR. \n\nFiat maxis playing fiat games. \n\nIt's another case of the market can remain irrational longer than you can remain solvent. https://example.com/ 6741 414396 414204.414396.415093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0744939224605 0 \N \N f 0 \N 0 110355117 0 f f \N \N \N \N 414204 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404425 2025-02-15 21:30:34.638 2025-03-29 22:39:50.241 \N Happy days. I hope everyone is have a wonderful Saturday. https://example.com/ 16214 404424 404424.404425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.33714549827235 0 \N \N f 0 \N 0 49886452 0 f f \N \N \N \N 404424 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421594 2025-03-01 19:18:08.811 2025-03-29 22:39:50.241 \N KYC fiat? KMA https://example.com/ 10102 421593 421123.421130.421205.421228.421593.421594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5066837678537 0 \N \N f 0 \N 0 156124746 0 f f \N \N \N \N 421123 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402283 2025-02-13 16:55:30.362 2025-03-29 22:39:47.607 Introducing Ark V2 \N https://brqgoo.medium.com/introducing-ark-v2-2e7ab378e87b 12139 \N 402283 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.48099154631073 0 \N \N f 0 \N 0 67619912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427562 2025-03-06 13:47:39.184 2025-03-29 22:39:47.607 Zeus: We're not going anywhere. ![GMGoyccWcAAoA8_.jpg](https://m.stacker.news/28332) https://twitter.com/evankaloudis/status/1783892634982859039 16998 \N 427562 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.5679915781465 0 \N \N f 0 \N 0 180236692 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450247 2025-03-23 20:01:17.275 2025-03-29 22:39:50.227 \N There's potentially something there with payers constructing their own route through you with that same preimage, reminds me of this: https://lists.linuxfoundation.org/pipermail/lightning-dev/2020-October/002857.html\n\nBrowsing it again, there could also be something there with altering amounts and having it route through you, though I'm not sure if it would result in payee loss of funds. It might be uncharted territory since it's kind of a taboo thing to do. https://example.com/ 21832 450235 450235.450247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5017616100197 0 \N \N f 0 \N 0 232381271 0 f f \N \N \N \N 450235 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414241 2025-02-23 18:56:59.195 2025-03-29 22:39:50.24 \N Day 274 of snailposting everyday 'til BTC hits $100k.\n\n...and 74 push-ups. (20 - 20 - 20 - 14)\n\n__@_'-' https://example.com/ 17183 414233 414233.414241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3222964266858 0 \N \N f 0 \N 0 130627595 0 f f \N \N \N \N 414233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437042 2025-03-14 08:42:07.223 2025-03-29 22:39:50.24 \N Thanks for the feedback! More games coming soon. We are starting with "hyper casual" style games first. Then we will add games with more depth. Don't give up on use yet :) https://example.com/ 6616 436523 436523.437042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5687720074547 0 \N \N f 0 \N 0 147088798 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451278 2025-03-24 13:27:27.712 2025-03-29 22:39:50.24 \N SN bingo:\n\n| saloon blows up | @nemo is blamed for big zaps | everyone is worried about the snail |\n|---|---|---|\n| someone asks what the cowboy hats are about | anon army shows up | @DarthCoin calls someone a shitcoiner |\n| monero is mentioned | someone has a feature request | someone is accused to use AI | https://example.com/ 17095 450805 450805.451278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2591408866168 0 \N \N f 0 \N 0 16730675 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410541 2025-02-20 14:24:58.994 2025-03-29 22:39:50.241 \N Here's a good resource: \n\nhttps://github.com/BlockchainCommons/Learning-Bitcoin-from-the-Command-Line/blob/master/07_2_Using_a_Partially_Signed_Bitcoin_Transaction.md\n\n\nYou could also use a wallet like Sentinel to make a PSBT. https://example.com/ 20294 410534 410534.410541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6708923633057 0 \N \N f 208317894 \N 2 120027324 0 f f \N \N \N \N 410534 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428036 2025-03-06 19:34:57.583 2025-03-29 22:39:50.241 \N Based on my uninformed opinion, this would be more of a testament to how bad public schools have become in some places in the US than to interpret this directly as a positive trend.\n\nI believe that a _good_ trained teacher who is paid a decent wage is better than a motivated parent who has many other responsibilities than teaching a full curriculum for 7 or 8 hours a day. I speak as someone who already has a hard time giving quality material to my son when I have to watch him on his days off from kindergarten while taking care of my full-time job. Even without a full-time job, it'd be hard. I know of some parents who can do this well, but they are the exception rather than the rule.\n\nThe social skills one learns in a _good_ school setting are also invaluable. https://example.com/ 20180 427389 427112.427389.428036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.245629688415 0 \N \N f 0 \N 0 46222587 0 f f \N \N \N \N 427112 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422526 2025-03-02 14:15:27.88 2025-03-29 22:39:50.241 \N Back to the old routine. It's actually 32F and 0 celsius out there. I figured it would be spring when I got back from vacation. https://example.com/ 1611 422521 422056.422521.422526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.13492236981248 0 \N \N f 0 \N 0 25629962 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428042 2025-03-06 19:48:41.085 2025-03-29 22:39:47.607 Michael Saylor AMA? What do you think, cowboys? Can we get Michael Saylor on Stacker News for an AMA?\n\nLet’s see what happens if we all work together with some likes and retweets… https://twitter.com/stacker_news/status/1719841883310948650 15544 \N 428042 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.2860734906461 0 \N \N f 0 \N 0 148684287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422534 2025-03-02 14:23:45.954 2025-03-29 22:39:47.607 Zeus wallet was again removed from Apple Store Apparently, if you get cited in someone else's anti-trust lawsuit, Apple will deactivate your developer account without notice.\n https://twitter.com/evankaloudis/status/1727336468920864844 7389 \N 422534 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.768926205836 0 \N \N f 0 \N 0 86818150 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410590 2025-02-20 14:53:59.012 2025-03-29 22:39:50.228 \N Functioning credit markets are generally considered to be extremely important for facilitating consumption smoothing over a person's lifetime. Basically, not having to wait until you're 50 to own a home, even if you have a good job.\n\nI also think most people are not going to want the responsibility of handling their own keys and there will be demand for banks that hold people's savings for them. https://example.com/ 2039 410584 410534.410543.410584.410590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4956688502017 0 \N \N f 0 \N 0 162383228 0 f f \N \N \N \N 410534 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402351 2025-02-13 17:36:09.026 2025-03-29 22:39:50.228 \N ![8kgi30.jpg](https://m.stacker.news/22966) https://example.com/ 20906 401773 401651.401660.401673.401703.401754.401773.402351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1857167272666 0 \N \N f 0 \N 0 48383200 0 f f \N \N \N \N 401651 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458319 2025-03-29 07:47:40.61 2025-03-29 22:39:50.228 \N ![](https://zupimages.net/up/23/23/xejs.jpg) https://example.com/ 925 458318 458318.458319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6006240893579 0 \N \N f 0 \N 0 11627179 0 f f \N \N \N \N 458318 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448913 2025-03-23 01:05:27.045 2025-03-29 22:39:50.228 \N I put a dying plant in a bottle of water. I was sure it wouldn't survive, and sure enough, its single leaf shriveled and fell. Well, too lazy to remove it, I left it sitting on my plant stand surrounded by other plant life I've successfully maintained. Today I noticed, after a month or so, a new leaf has grown up out of its bulb, and multiple strands of roots are curling around in the bottle. Proves I'm not the author of what lives and dies. Thankful for that fact. https://example.com/ 2724 264122 264122.448913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9536652714363 0 \N \N f 0 \N 0 18712449 0 f f \N \N \N \N 264122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410613 2025-02-20 15:11:57.01 2025-03-29 22:39:47.607 3% Inflation Target Looks Like A Done Deal This morning I woke up to this article on CNBC: https://www.cnbc.com/2024/04/05/el-erian-says-the-fed-has-turned-into-a-play-by-play-commentator.html\n\nMohamed El-Erian is the ultimate insider, and he's openly criticizing the fed for being "too tight", and suggesting that a 3% inflation target makes sense. \n\n> “The way you discuss it politely is you don’t say ‘let’s change the inflation target,’ you say ‘let’s get to 2% somewhere in the future. Let’s have a trajectory’,” El-Erian said. “It may well prove that the economy is stable nearer to 3%. I don’t think that’s going to de-anchor inflation expectations,” he added.\n\nI have been following this guy for years. He is very influential. He's a former IMF bigwig, and was considered a serious choice to be Egypt's next president. \n\nI don't see how guys like him expect to see the dollar survive as reserve currency, but I have to think they have a plan. \N 2123 \N 410613 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5952385069784 0 \N \N f 0 \N 0 242994640 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 426637 2025-03-05 18:27:03.218 2025-03-29 22:39:50.229 \N They just want it to work. They don't care how it works, just that it does. Reliability is king. https://example.com/ 9438 426354 426354.426637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5781292048334 0 \N \N f 0 \N 0 220706478 0 f f \N \N \N \N 426354 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435172 2025-03-12 14:07:14.084 2025-03-29 22:39:50.229 \N - Inheritance option (e.g. employ some form of long time lock scheme)\n- (for mobile wallets) Single button where my thumb is to open QR scanner\n- Single QR for onchain/LN\n- Automatic Privacy features (e.g. like Samourai, but without stupid codenames and annoying UX)\n- NFC support \n- Single balance across all my mobile wallets and apps (incl. podcasting v4v apps)\n- Ability to peer-to-peer install without Internet (like [what Briar does](https://stacker.news/items/44601))\n- Option for Tor / I2P\n https://example.com/ 16684 435017 435017.435172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4616822238706 0 \N \N f 0 \N 0 217367933 0 f f \N \N \N \N 435017 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448908 2025-03-23 01:00:13.131 2025-03-29 22:39:50.229 \N So many good ones there...\n\nThis one by Croesus is probably the favorite in the sense of bringing insight on a central topic of bitcoin adoption:\n\nhttps://www.citadel21.com/why-the-yuppie-elite-dismiss-bitcoin\n\nAnd have a sweet spot for this one by Knut Svanholm, since I'm an old Commodore 64 guy myself :)\n\nhttps://www.citadel21.com/commodore-21 https://example.com/ 1320 287984 287984.448908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.85620527782151 0 \N \N f 0 \N 0 237480341 0 f f \N \N \N \N 287984 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450243 2025-03-23 19:59:00.019 2025-03-29 22:39:50.229 \N Nation-states understand Bitcoin perfectly well. Since they understand it, they don't want to use it — it "kinda sorta" demonetizes them. They'll accept it, but I bet they'll put up their own alternatives for "the reserve currency." \n\nJust like how once upon a time it started on a mailing list, bTC adoption is bottom-up. Just like it outfought competitors in the 2010s, it'll have to outfight more (bigger) competitors in the near-term future. https://example.com/ 14607 450237 449767.450221.450231.450237.450243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.84172132074247 0 \N \N f 0 \N 0 103431485 0 f f \N \N \N \N 449767 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422316 2025-03-02 11:31:09.839 2025-03-29 22:39:47.607 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nIf you missed our last edition, [here](https://stacker.news/items/262497) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 11144 \N 422316 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 9.22785289066059 0 \N \N f 0 \N 0 235146279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410618 2025-02-20 15:14:20.57 2025-03-29 22:39:50.229 \N Just made personalized comment thread loading faster than they currently are \n\nhttps://media.tenor.com/MLlJuRHSERUAAAAd/dance-off-cowboy.gif https://example.com/ 15075 410256 410135.410256.410618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1149810175439 0 \N \N f 0 \N 0 122079283 0 f f \N \N \N \N 410135 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410619 2025-02-20 15:14:21.579 2025-03-29 22:39:50.229 \N https://i.imgflip.com/8pstuw.jpg https://example.com/ 9874 410589 410589.410619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.78822973482137 0 \N \N f 0 \N 0 117027190 0 f f \N \N \N \N 410589 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402956 2025-02-14 09:35:00.541 2025-03-29 22:39:50.229 \N I'm a developer located in the US that has been contributing to some of the popular Bitcoin open source projects. \n\nMy full time non-bitcoiner software engineering job pays me close to $200k and I need that much money for myself and my dependents. \n\nI want to work full time in Bitcoin.\n\nIs there a way to get similar amount of funding so I can fully work on Bitcoin? If so, how? https://example.com/ 4754 402933 402582.402890.402921.402933.402956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.54600868305155 0 \N \N f 0 \N 0 16605251 0 f f \N \N \N \N 402582 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410620 2025-02-20 15:14:23.495 2025-03-29 22:39:50.23 \N Very good news. Of course, each territory is different. Builders I'm sure attracts startups who can use this territory for marketing. There are probably other territories who can benefit from this strategy. \nFor my territories, I suspect I'd effectively shut them down if I raised my post minimum to 1000 sats, but maybe I'm wrong. \n https://example.com/ 6360 410573 410573.410620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.47993870049714 0 \N \N f 0 \N 0 217376140 0 f f \N \N \N \N 410573 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410648 2025-02-20 15:29:21.329 2025-03-29 22:39:50.23 \N Treat women well. Be generous but don't get used. She will not end up in a relationship with any of these guys. She will just use them for money and favours. \n\nThere are a lot of great women out there that aren't playing this game. Just be the best Fabs you can be and you will find one of the good ones. https://example.com/ 8648 410635 410635.410648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1377155948671 0 \N \N f 0 \N 0 170390525 0 f f \N \N \N \N 410635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410623 2025-02-20 15:14:37.746 2025-03-29 22:39:50.23 \N I think it’s really alarming how the young prefer to interact exclusively with each other through online gaming. In my country, we have to teach our students Social Skills because we find that they don’t know how to interact with the people around them appropriately.\n\nBack to me. Practically zero. Living from wire to wire now that I’m raising two young kids. I miss my (once-active, always-vibrant) social life so badly - and honestly, sometimes I feel resentful being trapped in parenthood. https://example.com/ 746 410247 410135.410247.410623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.1538929855567 0 \N \N f 0 \N 0 102604236 0 f f \N \N \N \N 410135 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458301 2025-03-29 07:19:56.046 2025-03-29 22:39:50.23 \N ![meme](https://i.redd.it/tdhb41oa60p61.jpg) https://example.com/ 6421 458295 458289.458295.458301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63679616957506 0 \N \N f 0 \N 0 237907246 0 f f \N \N \N \N 458289 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458076 2025-03-28 23:09:26.799 2025-03-29 22:39:50.23 \N Hello @ek what is this error about \n\n![](https://m.stacker.news/50709)\n\nTrying to zap a stacker and I got this. Using LNC attached wallet https://example.com/ 4487 457788 457788.458076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8956530644155 0 \N \N f 0 \N 0 85025313 0 f f \N \N \N \N 457788 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403318 2025-02-14 17:26:59.235 2025-03-29 22:39:47.607 12 funny ways (or not) I'm supporting bitcoin this year 1. Hiding lighting qr codes in my city with a guide to pick up some free sats\n2. Using a non-custodial lightning wallet to accept btc payments at my business.\n3. Hiding 50 whitepapers within local libraries\n4. Hanging a sign in a bank branch texting "Who is Satoshi Nakamoto?"\n5. Offer sat tips to the bartenders at my favorite bar (seen on stacker.news, still no positive results).\n6. Run a lightning wallet on my nocoiner fella phone on his birthday, send 1,000,000 satoshis and ask him what he is feeling as a new millionaire.\n7. Support bitcoin devs and lightning projects\n8. Saving 20% of my annual savings to convert my family and friends into new btc holders.\n9. Support authors and content creators\n10. Adding another bitcoin logo on my car, that's three now\n11. Write buy Bitcoin with my finger on every dirty car I find.\n12. Trying to buy my first asic, special thanks SN community for their help on this one. \nt's time for you to comment on what else I can do! 🤟\n![9hw9.gif](https://m.stacker.news/4332) \N 6202 \N 403318 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.7281433850087 0 \N \N f 0 \N 0 39950342 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416936 2025-02-25 23:36:07.292 2025-03-29 22:39:47.607 Epicureanism vs Stoicism + BONUS Foucault It might be my contrarian nature - when I was a teenager, I asked for a Zune instead of an iPod. So in the great debate of classical revival, my instincts tell me to swing Epicurean. \n\nThe ultimate goal of Stoicism is “living in agreement with nature.”\nThe ultimate goal of Epicureanism is “freedom from fear of God.”\n\nThese are both reductive statements; Stoicism places high value on a life of virtue and Epicureanism places high value on pleasure. \n\nWhat happens more often than not in contemporary conversation, however, is that the _goal_ of the Epicurean is physical, material hedonism, shirking away from society, and “not feeling the troubles of their own life” (to paraphrase Seneca). But let’s look under the hood. \n\nThe Epicurean is tasked with defining _pleasure_, which is done in four different ways: mental vs physical pleasure and constant (katastematic) vs active (kinetic) pleasure. Because of the immediacy and subsequent end of kinetic physical pleasure (such as eating), greater emphasis was placed on katastematic mental pleasure - constant mental pleasure. What does this mean, practically? It’s hard to hypnotize yourself into a state of constant wellbeing. For the Epicurean, this meant freedom from mental pain: freedom from fear and anxiety - freedom from the fear of God being the highest possible pleasure. \n\nThe Stoic is tasked with defining _virtue_, largely. Correct me if I’m wrong! Obviously, this mini-essay is in favor of Epicureanism and I saved myself the pain of over-researching for a forum post. \n\nSo what is virtue? Stoics seem to define this as participation in society - this is where the Stoic “most correctly” criticizes the Epicurean. \n\nI don’t disagree that virtuosity in life may be best defined when one is in “full participation” - action within the social sphere. However, I wonder how well we understand our intentions and limitations, especially when considering the possibility that every social interaction is an exchange of power[^1].\n\nSo is it virtuous to participate in a society that takes advantage of you - whether you know it or not? Is it _more_ or _less_ virtuous to participate in a social interaction wherein you are taken advantage of? Is it _more_ or _less_ virtuous to participate _knowingly_ or _unknowingly_ of your complicity in being taken advantage of? Does it matter?\n\nPerhaps you could say I am an apologist for those who are abandoning or opting out of social participation. Largely, I argue for self-education.\n\nFoucault, who I hope is replacing Marx as the over-assigned philosophical read in undergraduate education, argued that revolution begins with the reclamation of the individual physiology. This is in contrast with Marx’s claim that revolution begins with taking back the means of production.\n\nIf you were to follow through with reading on the Four Dimensions of Power, you may come to the conclusion that Foucault implies that through reclamation of individual physiology, you reclaim your capacity for violence, which is the most fungible and flexible power resource over which the individual has immediate and tangible physical agency to develop. Implicit in this is also that the tools of “mental” or “psychic” power (education) have been coopted: i.e. “they” brainwash you, and even in the pursuit of developing the ability to “mentally coerce" someone (argue for a point of view), you may just be mentally coercing yourself into another position of psychic submission toward an authority that may not be in your best interest[^2]. But there is no argument as to how much weight you can carry: how much force a strike you may blow contains.\n\nA bit edgy!\n\nWhat is not implicitly implied (ha) in Foucault, however, is the power found in pain-free movement; a physical health that is defined by transcending the definition of physical autonomy. \n\n“Health” is largely becoming another method of coercing behavior into a certain mode of standards, but that’s another essay. Health as defined as capacity for physical action that is free from pain - to me that is power. And it is a power that is _rather_ pleasurable - although to argue for it might be even more. \n\n[^1]: Some light reading on the [Four Dimensions of Power](https://doi.org/10.1080/2158379X.2021.1878411). You may also like Keith Johnstone's chapter on Status Transactions in _Impro_. \n[^2]: However, to follow a terminus of thought involving the invention of the weapon: _invention of technology_ is arguably a superior way to ensure physical safety and/or assert power.\n\n \N 9026 \N 416936 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 4.95076989349325 0 \N \N f 0 \N 0 80072278 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421802 2025-03-02 02:03:45.555 2025-03-29 22:39:50.231 \N I tried many various clients, often from their early stages. It comes down to the experience and features. Specific UX decisions, like how the thread UI looks like, where are the buttons, whether it shows "replies" by default, etc matter a lot. \n\nOn the phone Amethyst works the best and sometimes I use Plebstr to try new features they add. \nOn desktop it evolves quickly. I liked Iris, but then some features/UI changes made it worse. Astral became unusable. I don't think Coracle is there yet. I don't like the Snort UX, but it has some features that are missing elsewhere. \nPrimal got much better recently, especially with tap-to-zap it became my to-go client, but it's still missing some features and has things broken (doesn't have DMs, doesn't have emoticons support in post creation). \n\nOverall signal-to-noise is an issue on Nostr. It's often a lot of scrolling before you find something interesting - and I haven't found a way to mitigate it. In comparison SN is well distilled signal in the first page. https://example.com/ 16598 421684 421567.421585.421655.421677.421684.421802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0040519556633 0 \N \N f 0 \N 0 14389768 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444341 2025-03-19 19:54:34.338 2025-03-29 22:39:50.231 \N Day 99 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 2206 444121 443867.444117.444121.444341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5745063779725 0 \N \N f 0 \N 0 2326073 0 f f \N \N \N \N 443867 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456862 2025-03-27 23:30:45.12 2025-03-29 22:39:50.231 \N No dude! This is a toxic and antithetical message you're spreading here. You are enabling the ETF as an attack vector by spreading this message. I understand that self custody can be overwhelming at first but it really is objectively easy to store your bitcoin safely. Spread that message! Practice self custody, teach self custody. \n\nWhy are you even here dealing with bitcoin at all? If you're here to protect your own wealth and pursue sovereignty using non-censorable, unconfiscatable, borderless money, are you not incentivized to take actions that strengthen that tool? Like encouraging decentralization through the spread of other sovereigns? If you are seeking freedom through bitcoin you are shooting yourself in the foot by doing anything BUT discouraging the use and proliferation of an ETF. https://example.com/ 9169 456613 456613.456862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7114833039388 0 \N \N f 0 \N 0 169715040 0 f f \N \N \N \N 456613 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451349 2025-03-24 14:07:34.59 2025-03-29 22:39:50.232 \N https://i.ibb.co/qnDrvXY/IMG-2290.jpg https://example.com/ 5057 451348 451348.451349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1129220861635 0 \N \N f 0 \N 0 14338146 0 f f \N \N \N \N 451348 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436088 2025-03-13 10:02:05.916 2025-03-29 22:39:50.233 \N Why don't wallets have this feature baked in, would make life so much easier https://example.com/ 17148 436036 436036.436088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.75163398062328 0 \N \N f 0 \N 0 84735822 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451350 2025-03-24 14:08:36.368 2025-03-29 22:39:47.607 WTF happened in February 2023? An Analysis of the Ordinals Phenomenon \N https://wtfhappenedinfeb2023.github.io/ 7773 \N 451350 \N \N \N \N \N \N \N \N news \N ACTIVE \N 12.9779155400809 0 \N \N f 0 \N 0 50666574 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404478 2025-02-15 22:45:08.079 2025-03-29 22:39:47.607 As a Nigerian, I've Seen How Our Monetary System Has Been Struggling. It's disheartening to witness the rapid devaluation of our currency and the immense impact of inflation on everyday life. \n\nThe exchange rate at the beginning of the year was around Naira 400 to $1, and now it's well over N900 to $1. The cost of fuel, transportation, and basic goods has surged, hitting the roof day by day.\n\nThe struggle is real, and it's not solely due to the current political situation. It's a result of broader economic issues influenced by global financial dynamics. The use of the USD as the world's reserve currency has failed, plagued by inflation, and it's affecting countries like Nigeria, amplifying our hardships.\n\nMy family isn't untouched by this turmoil. My father, a dedicated police inspector, and my aunt working in the judiciary, have faced stagnant salaries amid skyrocketing inflation. It's unjust how the system fails to adjust wages in line with the increasing living costs, hitting the hardest on the working class.\n\nTo navigate this challenging situation, I understand the need to adapt. It's crucial to develop digital skills to remain employable in an evolving economy. Earning in USD appears to be a way to cushion against the local currency's devaluation. Additionally, looking into deflationary assets like Bitcoin and exploring avenues for passive income seem like viable strategies to protect savings from this inflationary storm.\n\nThe fiat system's evident flaws, favoring the elite while burdening the masses, is glaringly unfair. We, the people at the bottom of the pyramid, bear the brunt of these economic issues. It's a call to action to seek alternative avenues to protect our livelihoods in these turbulent financial times. \N 1738 \N 404478 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.6292320655142 0 \N \N f 0 \N 0 145292990 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404517 2025-02-16 00:05:49.268 2025-03-29 22:39:50.233 \N I will certainly give this a try, but I do believe there was a lot of fud/skepticism around this project when it was announced at Bitcoin 2022. Can someone fill me in on the perceived issues? https://example.com/ 11609 395918 395906.395918.404517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.7102697319427 0 \N \N f 0 \N 0 67403368 0 f f \N \N \N \N 395906 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448926 2025-03-23 01:19:19.526 2025-03-29 22:39:50.233 \N the dollar, to this day https://example.com/ 2776 448882 448858.448880.448882.448926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.33549917383838 0 \N \N f 0 \N 0 238063345 0 f f \N \N \N \N 448858 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451352 2025-03-24 14:08:43.951 2025-03-29 22:39:50.234 \N Day 198 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20099 451316 451316.451352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4638827703712 0 \N \N f 0 \N 0 22187240 0 f f \N \N \N \N 451316 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402934 2025-02-14 09:14:53.538 2025-03-29 22:39:50.234 \N We need Bitcoin prediction markets here. https://example.com/ 1114 402927 402105.402594.402927.402934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9151365279454 0 \N \N f 0 \N 0 184006489 0 f f \N \N \N \N 402105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423487 2025-03-03 12:10:19.037 2025-03-29 22:39:50.234 \N Are we moving on?\nhttps://imgprxy.stacker.news/3B4LvU4-mYPazs_v3aIFiJYrz16h_U3MKSmXknNVvBE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby83a0JSd0Z2L2E1NTk2ZjllLTZkYjktNGQ1OC1hNTk5LTQxNTA4ZTcyZjRjOC5qcGc https://example.com/ 2963 423254 422056.423240.423254.423487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0395421963797 0 \N \N f 0 \N 0 194849797 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410580 2025-02-20 14:47:42.649 2025-03-29 22:39:50.235 \N I'm mainly using Nostr for the social media use case, I'm using it more and more as clients with additional functionality and features emerge. Beyond short form text notes, i'd like to participate in long form through habla.news and blogstack.io. I want to see Tidal integrate nostr, and I'd like to see nostr working in tandem with the fedi os. Nostr apps to know about: Habla.news/Highlighter/Listr/Nostr Bounties/Magic Web Store/Swap Service/Mostro/Primal/Nostr Nests/Deezy. Just need more clients that attract normies, and an easier onboarding tools. https://example.com/ 777 410579 410579.410580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8887420011714 0 \N \N f 0 \N 0 212816101 0 f f \N \N \N \N 410579 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416942 2025-02-25 23:46:34.741 2025-03-29 22:39:50.235 \N ![](https://m.stacker.news/58792) https://example.com/ 16704 416940 416940.416942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.220879011584 0 \N \N f 0 \N 0 161430611 0 f f \N \N \N \N 416940 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424338 2025-03-04 01:33:30.388 2025-03-29 22:39:50.235 \N The 6th Annual Best SF from 1972.\n\nVintage sci-fi short stories. Awesome. https://example.com/ 18772 423362 423362.424338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0801556736367459 0 \N \N f 0 \N 0 242941319 0 f f \N \N \N \N 423362 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402862 2025-02-14 06:56:26.697 2025-03-29 22:39:47.607 My LN channel on Alby Hub was force-closed @Alby is there a way to recover my funds without opening another channel? Where's my savings account? I didn't find it\n\n![](https://m.stacker.news/47470)\n\n![](https://m.stacker.news/47468)\n\n![](https://m.stacker.news/47472)\n\nI don't wanna open another channel. It's too expensive and I fear losing my funds again\n\n![](https://m.stacker.news/47469)\n\n \N 11263 \N 402862 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.8021163667605 0 \N \N f 0 \N 0 9332330 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424395 2025-03-04 03:54:58.157 2025-03-29 22:39:50.235 \N ACINQ has some good blogs about their approach\n\nhttps://acinq.co/blog/eclair-architecture\n\nhttps://acinq.co/blog/securing-a-100M-lightning-node https://example.com/ 7772 424220 424220.424395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0780302619487 0 \N \N f 0 \N 0 172122894 0 f f \N \N \N \N 424220 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436098 2025-03-13 10:15:40.997 2025-03-29 22:39:50.236 \N Freedom https://example.com/ 696 436081 436081.436098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.013129740652 0 \N \N f 0 \N 0 124970871 0 f f \N \N \N \N 436081 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402490 2025-02-13 19:05:17.237 2025-03-29 22:39:50.236 \N Most people fart around 14 to 23 times a day! https://example.com/ 21814 401611 401611.402490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.77433866999571 0 \N \N f 0 \N 0 242994379 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402864 2025-02-14 07:00:19.172 2025-03-29 22:39:50.236 \N Damn, heavy story in the comments about one of the founders of CloudFlare: https://www.wired.com/story/lee-holloway-devastating-decline-brilliant-young-coder/ https://example.com/ 17519 402684 402684.402864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.35146421966181 0 \N \N f 0 \N 0 150300200 0 f f \N \N \N \N 402684 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416988 2025-02-26 00:49:34.752 2025-03-29 22:39:50.237 \N We can bike shed all you want about which valid transactions are “spam” and what is a proper estimate, but Bitcoin a permissionless protocol with an open fee market. Unless you have a low time preference and use custodial L2s, you have to deal with reality, not idealism - and reality is exactly what mempool.space provides.\n\nMy pleb friends and I lack the privilege of having tens of millions of sats in limbo indefinitely, and I beg mercy for anyone once those sats are locked in a LN 2-of-2 multisig with a channel partner that quit listening for a funding transaction after expiry - ouch!\n\nI know it hurts to pay these fees, but we have rules, not rulers. These fees are the unfortunate cost of such an arrangement, whether any of us likes it or not. :(\n\nIf you can wait for ideal fee rates and you are not at risk of the payer doublespending while you wait, then maybe switch to new tools that let you choose your own fee rate, but I’d say there is reason why so many are switching to mempool.space as the default - it really is the best choice for reliable block inclusion. https://example.com/ 20913 416722 416722.416988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0432145076395 0 \N \N f 0 \N 0 116247276 0 f f \N \N \N \N 416722 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423604 2025-03-03 13:32:39.529 2025-03-29 22:39:50.237 \N The zaps are still the same, plus you may receive more since there are people who want to get into the top 64, I don't see it as bad, the only thing that has changed is that you don't receive daily rewards which go to the MSM fund https://example.com/ 21026 423602 423574.423594.423596.423602.423604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8931785515201 0 \N \N f 0 \N 0 219212390 0 f f \N \N \N \N 423574 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423115 2025-03-03 01:18:26.75 2025-03-29 22:39:50.238 \N I wouldn't use it for a personal node, it's better to self host if you can. At The Bitcoin Company we use voltage for our lightning node and it has been great, highly recommend it for enterprise services https://example.com/ 2961 422668 422628.422668.423115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.69988563716873 0 \N \N f 0 \N 0 42482903 0 f f \N \N \N \N 422628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458073 2025-03-28 23:07:28.239 2025-03-29 22:39:50.238 \N \n\nNick Szabo\nDavid Chaum\n https://example.com/ 14489 458011 458011.458073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.42386789893146 0 \N \N f 174912363 \N 1 242145709 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422486 2025-03-02 13:26:29.399 2025-03-29 22:39:50.229 \N I've reached something of an equilibrium in my initial search for the optimal default zap. For a couple weeks now, I've been hovering around 270.\n\nNow I want to refine my approach.\n\nRather than just zapping everything I like 1/1000th of my wallet balance, I'd like to add some nuance. Here are the terms of my next experiment:\n* Normal/small comments get 1/10,000 of my balance (currently 27 sats)\n* Normal/short posts or insightful comments get 1/1000 of my balance (currently 270 sats)\n* Longer thoughtful posts get 1/100 of my balance (currently 2700 sats)\n\nI'll be utilizing the turbo zaps feature for this, so watch out for accidentally large zaps!\n\nHow are other people's (@ekzyis and @elvismercury) current zap experiments going? https://example.com/ 21482 422203 422203.422486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0538499198859 0 \N \N f 0 \N 0 157169701 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451047 2025-03-24 11:14:27.921 2025-03-29 22:39:50.238 \N Obviously this is a bit out of date (since it refers to Twitter), but I've always found this a good set of guidelines when something huge happens.\n\nhttps://i.imgur.com/Epj1iYU.png https://example.com/ 12049 451045 451018.451031.451045.451047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.393778969663 0 \N \N f 0 \N 0 104903553 0 f f \N \N \N \N 451018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458287 2025-03-29 07:03:28.102 2025-03-29 22:39:50.238 \N eggs, kagi, electrolites and a boxing bag https://example.com/ 11144 458271 458271.458287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8098751299709 0 \N \N f 0 \N 0 233211107 0 f f \N \N \N \N 458271 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428169 2025-03-06 22:50:18.882 2025-03-29 22:39:50.238 \N KYC specifically refers to government ID requirements, not phone number verification. (But sadly many countries require government ID to buy even a prepaid sim card with cash.)\n\nhttps://silent.link is good for KYC-free mobile data with global roaming, pay with Bitcoin. You would need a phone that supports e-sims.\n\nhttps://jmp.chat is good for VOIP and SMS. It works with an XMPP client and accepts Bitcoin. However some websites may reject VOIP numbers for SMS verification.\n\nhttps://smspva.com and https://juicysms.com/ are good options for anonymous SMS verification for Bitcoin. The numbers work in most cases, and if the number is rejected or you don't receive the SMS, you don't need to pay and can request a new number or try a different country. SMSPVA may re-use numbers, so make sure to set a password or PIN for your Signal or Telegram account (so that no one can login to it or re-register your number).\n\nhttps://sms24.me, https://quackr.io and https://onlinesim.ru offer free SMS verification. These numbers are often already used for popular services (Gmail, Telegram, Discord, etc.) but may work for a less popular service. https://example.com/ 3213 428052 427777.428052.428169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5004631830164 0 \N \N f 0 \N 0 47963256 0 f f \N \N \N \N 427777 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404516 2025-02-15 23:57:03.257 2025-03-29 22:39:50.238 \N it's good you picked Nov 5, a dull ordinary mundane day\n\n https://example.com/ 11776 404510 404095.404384.404501.404510.404516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0088623863726 0 \N \N f 0 \N 0 157161055 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415017 2025-02-24 13:22:34.621 2025-03-29 22:39:50.238 \N There are plenty of dummies on SN but the ratio compared to other sites is much lower. Was on Reddit looking at something and wow are the comments dumb, low IQ nonsense.\n\nI really appreciate the stackers https://example.com/ 2709 415015 415015.415017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6378655545608 0 \N \N f 0 \N 0 10129097 0 f f \N \N \N \N 415015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428302 2025-03-07 04:38:31.7 2025-03-29 22:39:50.238 \N Oh and rankings in the leaderboard are recomputed hourly. https://example.com/ 18865 428241 427251.427264.428241.428302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4442459757414 0 \N \N f 0 \N 0 81935910 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457980 2025-03-28 20:30:45.359 2025-03-29 22:39:50.239 \N SN header says 1sat=1sat so my guess is that will remain the case. https://example.com/ 652 457957 457293.457432.457546.457957.457980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.87830503435372 0 \N \N f 0 \N 0 150386013 0 f f \N \N \N \N 457293 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458213 2025-03-29 05:42:35.56 2025-03-29 22:39:47.607 Something I've been working on: Fedimint Prediction Markets ## Hello everyone!\n\nI would like to share a Fedimint module I have been working on over the last few weeks. For anyone unfamiliar with fedimint [learn here](https://fedimint.org/).\n\nThe prediction market I have implemented allows for events to be represented as any number of outcomes. A user can create a new market, and give out the market id to whoever they want to have access. Then users can make bets on the market on which outcomes they believe to be mispriced. After the event occurs, the owner of the outcome control key of the market can declare a payout, which distributes the market's holdings to users based on their bets.\n\n### How it works\nA market has a contract price and a number of outcomes. Each outcome has its own order book of buys and sells.\n\n In order for a new contract to be created, buy's prices from all outcomes must add up to the contract price. When this happens, contracts of each buy's outcome are handed out to the buys.\n\nFor a contract to be destroyed, sell's prices from all outcomes must add up to the contract price. \n\nContracts of each outcome can also be swapped locally in each outcomes order book. (New orders will always pick the best price between creating/destroying vs swapping.\n\nA payout occurs after the outcome has been declared by the outcome control key of the market. The payout distributes the contract price amongst the contracts of each outcome. \n\n##### It is still very alpha so not ready for real sats!\n[Github Repo](https://github.com/toyota-corolla0/fedimint-prediction-markets)\n\nThanks for looking!!!\n\n \N 4177 \N 458213 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 29.0223756397864 0 \N \N f 0 \N 0 85797917 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449650 2025-03-23 13:18:36.989 2025-03-29 22:39:50.229 \N David Graeber, Debt: The First 5,000 Years https://example.com/ 10007 449016 449016.449650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2144614284009 0 \N \N f 0 \N 0 50270016 0 f f \N \N \N \N 449016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428319 2025-03-07 05:14:58.828 2025-03-29 22:39:50.229 \N **TECH**\nBitcoin + Satellite / Mesh internet + Localised Energy & AI = no longer constrained to the tyranny of place for any of our future needs.\n\n\n**COMMUNITY FIRST**\nTimes like this are without doubt making people seek like-minded people, be it in their family, surrounding locality & online.\n\nWe're going to see some of the best sovereign communities in the most obscure locations. I can't wait! https://example.com/ 20623 427515 427039.427074.427153.427515.428319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1217806217748 0 \N \N f 0 \N 0 33362247 0 f f \N \N \N \N 427039 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450152 2025-03-23 19:15:41.298 2025-03-29 22:39:50.229 \N Here's the tutorial you need brother: https://v2.minibolt.info/home/readme https://example.com/ 13921 449901 449901.450152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.101642753981 0 \N \N f 0 \N 0 95753840 0 f f \N \N \N \N 449901 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424387 2025-03-04 03:33:21.974 2025-03-29 22:39:47.607 Hyperbitcoinization and the Second Coming of Our Lord Jesus Christ # Will you be okay if hyperbitcoinization doesn't happen for a thousand years?\n\nHow about two thousand?\n\nThe Christians have been waiting for their Second Coming for almost that long. \n\nI am frequently struck by the similarities between bitcoin and religion. Most recently, I realized that many of us are expecting hyperbitconization on a snappy timeline. Like, it's okay if it doesn't happen next year, but goddammit if I'm still using fiat in 10 years.\n\nAnd if you have ever had the dubious pleasure of reading the letters of the sainted Paul and friends, you get the sense that a lot of the early Christians expected a similar timeline for the return of the recently dead and risen-again Jesus Christ.[^1]\n\n[^1]: To list off a few instances: Let your reasonableness be known to everyone. The Lord is at hand ( (Philippians 4:5)), You also, be patient. Establish your hearts, for the coming of the Lord is at hand. (James 5:8), And he said to me, “Do not seal up the words of the prophecy of this book, for the time is near. (Revelations 22:10) The end of all things is at hand. (1 Peter 4:7)\n\nTo be fair, some transitions *are* pretty fast: hyper-internet-ization happend in a flash; [cars replaced horses in a couple decades](https://www.taketotheroad.co.uk/when-did-cars-replace-horses/); electrification took a little longer, [but still less than a human lifespan](https://mrelectric.com/blog/the-history-of-electricity-history-of-electricity-timeline).[^2]\n\n[^2]: Not interested in nit-picking the idea that people were experimenting with electricity for centuries before electrificaiton of households took off in the 20th Century. Technology builds on past work, but I'm talking about once a product appears, how fast does it take to spread. \n\nSo what's to say ours won't be like that? Maybe it will. but I'm more interested in what we're going to do in the mean time--because maybe it won't.\n\n# How would you change your behavior if you were certain hyperbitcoinization wasn't going to happen this century?\n\nBitcoin is a tool. It has some amazing properties:\n\n- It's internet-native money: you can send it anywhere on earth at anytime and it moves really fast.\n- It's something you can truly own.\n- It's transparent and you can know exactly what's happening with it.\n- It doesn't require anyone else's permission.\n\nThese properties are useful today. You don't have to wait to take advantage of them. Here's a few examples of things you can do with bitcoin:\n\n- Save up a pile because your fiat currency might devalue faster than expected.\n- Learn how to coinjoin because your government might outlaw what you want to buy or sell.\n- Spend it at a small-business because middle-men are getting more powerful.\n- Get used to earning it because your bank might close your accounts.\n\nThe Christians have changed the world while they've been waiting for the second coming. No reason we can't do the same while we wait for hyperbitcoinization. Who knows how long we might have? \N 7877 \N 424387 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.40675522117353 0 \N \N f 0 \N 0 146904546 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441848 2025-03-18 10:28:39.372 2025-03-29 22:39:50.229 \N For TABconf people this is a hard one. Maybe I'd tell them: \n\nDon't use Stacker News if you think the interoperable Lightning based redemption model for content (and curation) is doomed to fail. Go back to the soul crushing digital territory that's trying to return us to a feudal state. If it's returning us to a feudal state, then perhaps it's most visible in the mood of the platform kings, like Musk and Twitter, Zuckerberg and Facebook, two late-stage platforms doing late-stage things, from putting up walls, and digging moats, to fist-fighting one another ostensibly in the Coliseum—itself the symbol of a dead empire. \n\nThe new model however, isn't that, there's evolutionary pressure here, it's very new, only existing heretofore in a bitcoin bear market. **Join Us.** ✨\n\n\n\n https://example.com/ 6030 441761 441761.441848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1666594994696 0 \N \N f 0 \N 0 241511200 0 f f \N \N \N \N 441761 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402937 2025-02-14 09:20:53.4 2025-03-29 22:39:50.229 \N Here it is:\nhttps://www.youtube.com/watch?v=596InlNtfD0 https://example.com/ 7983 402889 402582.402889.402937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9786064411515 0 \N \N f 0 \N 0 226607398 0 f f \N \N \N \N 402582 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431093 2025-03-09 15:27:30.279 2025-03-29 22:39:50.23 \N Always surprised by how much variety there can be within a country, both large and small, where seemingly opposite stereotypes can be true. \nUSA: most stereotypes are at least somewhat true about one state or region but totally untrue about others. If you go to New York and then Texas its like they are different worlds with little discernible cultural or social connection. \nItaly: North Italy is wildly rich and feels like a hub of money and culture. Southern Italy is breathtakingly gorgeous but you do feel like the poverty and organized crime are an issue.\nIreland: Dublin feels like a rich tech hub smashed into an old world European city, but rural Ireland feels like its stuck in the early 1900s. \nFrance: Parisians are kind of rude, but the rest of the country is super nice. \nOther observations:\nCanada: Native born Canadians are shockingly rude. I feel like the Canadians are nice stereotype should be amended to they're more quiet than Americans, but not any less likely to be rude. \nBahamas: Everyone is rude. Everywhere else in the Caribbean everyone is always nice, but this was the one exception where everyone was consistently rude. https://example.com/ 17331 416798 416798.431093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.4694930621657 0 \N \N f 0 \N 0 1719376 0 f f \N \N \N \N 416798 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451336 2025-03-24 14:02:14.99 2025-03-29 22:39:50.23 \N What help do you need most with respect to Ark? https://example.com/ 21833 450814 449878.450618.450814.451336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.32474943677042 0 \N \N f 0 \N 0 227217754 0 f f \N \N \N \N 449878 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402869 2025-02-14 07:22:36.036 2025-03-29 22:39:50.23 \N It started over 13 years ago. Wake up. https://example.com/ 21815 402105 402105.402869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8652619043336 0 \N \N f 0 \N 0 215095504 0 f f \N \N \N \N 402105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402940 2025-02-14 09:22:50.948 2025-03-29 22:39:50.23 \N Lifespan is an interesting book. https://example.com/ 10273 402316 402316.402940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6750177922844 0 \N \N f 0 \N 0 172639969 0 f f \N \N \N \N 402316 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450114 2025-03-23 19:05:22.989 2025-03-29 22:39:50.23 \N Day 402 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 2710 450111 450108.450111.450114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6340978121837 0 \N \N f 0 \N 0 201597079 0 f f \N \N \N \N 450108 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415019 2025-02-24 13:26:02.461 2025-03-29 22:39:47.607 Stacker News Live in Nashville - Today⚡️ Besides the standard broadcast fun, there will also be food, alcohol, midgets, naked women, and horses. You can't miss it!\n\n**For more information, check out @Car's [post](https://stacker.news/items/609615).**\n\n----\nfrom: *https://stacker.news/items/609642, by @k00b*\n| ![](https://m.stacker.news/39872) | ![](https://m.stacker.news/39873) | ![](https://m.stacker.news/39874) |\n|---|---|---|\n\n----\n\n![](https://m.stacker.news/41723)\n\n![](https://m.stacker.news/41724)\n\n\n\n \N 18232 \N 415019 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 29.878171556208 0 \N \N f 0 \N 0 45217244 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410658 2025-02-20 15:33:09.891 2025-03-29 22:39:47.607 10 ways to support ZEUS in 2024 ![68747470733a2f2f6769746875622d70726f64756374696f6e2d757365722d61737365742d3632313064662e73332e616d617a6f6e6177732e636f6d2f313837383632312f3238323336303830302d35373963313135362d316663362d343562362d383666322d37623.png](https://m.stacker.news/28628)\n\n# 1. Download and try out the app\n\nZEUS is mobile bitcoin lightning for Android and iOS. It lets you spin up a self-custodial lightning wallet on your phone, or connect to a remote node that you may have at home (Umbrel, Start9, RaspiBlitz, myNode etc.) or in the cloud (Voltage).\n\nYou can onboard to lightning with ease using our LSP, or open up lightning channels on your own to anyone you want on the network. The app also feature a self-custodial lightning address (ZEUS Pay), a Nostr-powered contact book, a standalone and Square-integrated point of sale system, and countless other features.\n\nIt's 100% free and open source software.\n\n[Website](https://zeusln.com/)\n\n[Download](https://zeusln.com/download)\n\n![68747470733a2f2f6769746875622d70726f64756374696f6e2d757365722d61737365742d3632313064662e73332e616d617a6f6e6177732e636f6d2f313837383632312f3238323636353035302d35643438353733342d666664322d343932362d626533642d6163313564303862616263312e706e67.png](https://m.stacker.news/28629)\n\n# 2. Leave a review\n\nIf you like the app, leave a positive review on the app store! Positive reviews increase visibility on the store and help us get more users.\n\n[Apple App Store](https://apps.apple.com/us/app/zeus-ln/id1456038895)\n\n[Google Play](https://play.google.com/store/apps/details?id=app.zeusln.zeus)\n\n\n\n# 2. Write and review code\n\nIf you're a coder we could always use more code contributors and reviews of our open pull requests. Almost 50 people have contributed so far. Let's get to 100!\n\n[GitHub](https://github.com/ZeusLN/zeus)\n\n\n\n# 3. Feedback, issues, feature requests\n\nNot everyone can code. That's OK, you can still have a massive impact. Let us know if you find a bug, have an idea for a new feature, or have any feedback.\n\n[GitHub Issues](https://github.com/ZeusLN/zeus/issues)\n\n[Telegram chat](https://t.me/zeusLN)\n\n\n\n# 4. Give us a star on GitHub\n\nIf you have a Github account consider throwing us a star. It improves our visibility on GitHub and helps attract new coders to the project.\n\n[GitHub](https://github.com/ZeusLN/zeus)\n\n\n\n# 5. Translations\n\nWe're trying to make ZEUS accessible to everyone in the world. Join our 100+ translators and help add or review translations. There are a ton of languages we've started on but need to complete.\n\n[Transifex translation portal](https://explore.transifex.com/ZeusLN/zeus/)\n\n\n\n# 6. Documentation\n\nZEUS is a powerful but often complex tool - with many ways to use it (we have both a built-in, embedded node + wallet, and also support remote connections). We need a lot more help on our docs to help newcomers get started and get connected to the Lightning Network with ZEUS.\n\n[Docs site](https://docs.zeusln.app)\n\n[Docs GitHub repo](https://github.com/ZeusLN/zeus-docs)\n\n\n\n# 7. Use the LSP\n\nOLYMPUS by ZEUS is our LSP, and is quickly climbing up the lightning node rankings. You can buy a channel from us in the app using wrapped invoices and just-in-time channels that will onboard you to lightning without the hassle of manually opening up channels. Just pay an invoice generated in ZEUS from any other lightning wallet and you're onboarded in seconds.\n\nThe LSP now also works in-app with remote LND nodes, so you can get these just-in-time channels from us if you're using a remote or cloud node.\n\nMore LSP services will be launching soon, so keep your eyes peeled.\n\n[LSP documentation](https://docs.zeusln.app/lsp/intro)\n\nClearnet URI: 031b301307574bbe9b9ac7b79cbe1700e31e544513eae0b5d7497483083f99e581@45.79.192.236:9735\n\nTor URI: 031b301307574bbe9b9ac7b79cbe1700e31e544513eae0b5d7497483083f99e581@r46dwvxcdri754hf6n3rwexmc53h5x4natg5g6hidnxfzejm5xrqn2id.onion:9735\n\n![olympus.png](https://m.stacker.news/28630)\n\n\n\n# 8. Buy some merch\n\nWe have a bunch of different merch options available for purchase with Bitcoin on our store.\n\nWe think the designs are pretty good, and they're opsec-friendly too, so you don't have to worry too much about those $15 wrench attacks.\n\n[ZEUS store](https://store.zeusln.com/)\n\n![Screenshot 2024-04-29 at 00.28.57.png](https://m.stacker.news/28631)\n\n\n\n# 9. Donate some sats / become and community sponsor\n\nThose who donate over 100k sats get featured on our About page on our website and in our app. You can also donate anonymously. No amount is too small. Proceeds go towards development and bounties to help make the ZEUS app even better.\n\n[ZEUS donation portal](https://zeusln.com/sponsor)\n\n[ZEUS About page](https://zeusln.com/about)\n\n![Screenshot 2024-04-29 at 00.32.06.png](https://m.stacker.news/28633)\n\n\n# 10. Spread the word, use Bitcoin, and build the circular economy\n\nLastly, and most importantly, be sure you continue use Bitcoin and help onboard other people to the network. Let your friends know not only about ZEUS, but also about Bitcoin, the Lightning Network, and the importance of running your own node and of holding your own keys.\n\nWe're going to win with strength in numbers. Orange pilling can be exhausting - both to the shillers and newcomers - so instead of just jumping into what's so great about Bitcoin, take the time within your community to shake hands with local merchants and the people you buy your food from and actually listen to the problems they have and try to empathize with them. Then you'll surely be able to identify at least one way Bitcoin can help them in our current environment that's rife with inflation, surveillance, censorship, and financial predation.\n\nThis not only helps ZEUS but also helps fortify the Bitcoin community.\n\n\nThanks for reading. We appreciate every bit of support, no matter how you decide to provide it.\n\n\nCheers.\n\nEK \N 17109 \N 410658 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 24.56340160676 0 \N \N f 0 \N 0 159465142 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441527 2025-03-18 05:17:42.182 2025-03-29 22:39:50.23 \N We approve your achievements https://example.com/ 11477 440797 440797.441527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3989108158571 0 \N \N f 0 \N 0 60741959 0 f f \N \N \N \N 440797 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424166 2025-03-03 21:16:51.213 2025-03-29 22:39:50.23 \N https://image.nostr.build/6020d2f803209f8bfcbdd4b9bdd2c9b4f13fa826bf03644e55b170619437aa76.jpg https://example.com/ 761 423667 423667.424166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.80557734806852 0 \N \N f 0 \N 0 110494463 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422355 2025-03-02 12:03:23.185 2025-03-29 22:39:50.23 \N [![darth-facepalm.jpg](https://i.postimg.cc/jqBt6JcD/darth-facepalm.jpg)](https://postimg.cc/pyQwRrgv)\n\nwhy people are so pussies nowadays? https://example.com/ 1785 421222 420816.421222.422355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.470086654126 0 \N \N f 0 \N 0 137095460 0 f f \N \N \N \N 420816 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424190 2025-03-03 21:42:01.979 2025-03-29 22:39:50.231 \N Sorry guys, I'm kinda busy these days with some work, can't join too much on SN & Saloon.\nBut I try to keep my cowboy hat on. https://example.com/ 16270 423667 423667.424190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4477276763045 0 \N \N f 0 \N 0 58323459 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435173 2025-03-12 14:07:28.255 2025-03-29 22:39:50.231 \N Just tried it with my team - we do typically have network problems with video calls.\n\nThe quality for one2one was great, but then it's the same with Matrix (which is also peer to peer).\n\nFor group calls (for which matrix uses Jitsi) was also very high quality - however, there were some issues:\n\n* when the third person connected, I couldn't see or hear him, but the second person could\n* this was fixed by disconnecting and reconnecting\n* after screen sharing the issue happened again\n* I was unable to end the call this time (button didn't work)\n* one user was unable to resize the video (when maximising, it cut off part of the picture). This was on ubuntu.\n\n\nSummary - the technology seems to have great promise. It's an alpha release so bugs like the above are likely quite normal. We were using mac and linux clients.\n\n https://example.com/ 21709 435164 435142.435164.435173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2006203698816 0 \N \N f 0 \N 0 211307981 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431094 2025-03-09 15:27:33.996 2025-03-29 22:39:50.231 \N ![](https://i.postimg.cc/XqyJ6Sw9/IMG-3336.jpg) https://example.com/ 17103 416547 416547.431094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5406519561797 0 \N \N f 0 \N 0 38419457 0 f f \N \N \N \N 416547 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441470 2025-03-18 02:45:59.057 2025-03-29 22:39:50.231 \N @k00b is it SN prepared to migrate towards msats zaps?\n\nSoon after the next halving, people will think twice about zapping too many sats, so a msats zap will be appropriate. \n\n*this Darth oracle is hated by @ekzyis 😂😂😂😂* https://example.com/ 20757 441436 441436.441470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5959027893268 0 \N \N f 0 \N 0 39562975 0 f f \N \N \N \N 441436 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423410 2025-03-03 10:55:00.045 2025-03-29 22:39:50.232 \N Most (all?) hardware wallets today have customers write down the seed phrase and re-enter it as part of onboarding. This in an unusual experience for most people. It is time-consuming. And of course then customers have to understand and appreciate how sensitive this material is that they've just written down and devise a plan both to never lose it and never let anyone else see it even for just a few seconds (a quick picture away from losing all your money).\n\nImagine instead an onboarding experience that takes a minute and doesn't involve any of this? https://example.com/ 696 423312 423312.423410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.678047099528 0 \N \N f 0 \N 0 123330207 0 f f \N \N \N \N 423312 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427697 2025-03-06 15:13:45.937 2025-03-29 22:39:50.232 \N Lol Governments, if you feel poor, borrow someone elses money https://example.com/ 2710 427692 427628.427652.427692.427697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7328935502521 0 \N \N f 0 \N 0 241628072 0 f f \N \N \N \N 427628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422564 2025-03-02 14:47:53.798 2025-03-29 22:39:50.232 \N Phew. I know Bitcoiners are drawn to various conspiracies due to their distrust of the state, but the poll results were better than I was expecting https://example.com/ 13097 422557 422557.422564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9861681415961 0 \N \N f 0 \N 0 94598582 0 f f \N \N \N \N 422557 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402876 2025-02-14 07:38:03.915 2025-03-29 22:39:47.608 Some thoughts on Moore and Lloyd's V for Vendetta I posted Moore's [essay on anarchy](https://stacker.news/items/490704) a few weeks back. While that was written over two decades later, it's clearly the underpinning of his earlier works, including V for Vendetta, his most explicitly anarchist book[^1]. I re-read it earlier this week (I re-read most of Moore's stuff every few years), and had a few thoughts. This is just a random list, not an ordered essay of any sort.\n\nhttps://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOFI4XHJQNru-84n3fjaAV77t5l1wDPzUxcmz8wBvcsZPtbnBZK2COOPCctJtpMK1FS4DfGsWmw45-l0cCOYiNbM7EkTG8OcomxQnNa_jAEDaLfm71ysttmrGDr4PkZnNaIoKQnAjK1JX7/s1600/v+for+vendetta+II.png\n\n* There's an argument that, to a degree, anarchy's an easy sell here given how absolutely awful the existing fascist society is, run with everything from constant surveillance to a white purity movement to camps where folks are experimented on. Moore took a look at Thatcher's government and basically turned the dial to 11, and gave us a world that anyone would want to see burn.\n* Similarly, the books ends with anarchy starting. Will it succeed? It's implied, but that's like saying the romance novel that ends with a marriage precedes fifty years of wedded bliss. Where you end a story dictates the emotions you feel. In both cases, it's hope, but it can never be more than hope.\n* Of course, the anarchy symbol, turned upside-down, is a V. And "V" -- as a letter or a roman numeral -- is everywhere in the book, not just the title character (who was imprisoned in Room Five), but in Evie's name (especially when said out loud), in chapter titles, in references to Beethoven's Fifth and Pynchon's *V*, hell, even beginning the name of Valerie, the prisoner whose letter Evie reads. \n* In our world, there's at least a pretense that police have rules. In this world, that's out the window. Evie, desperate for money after the murder of her lover, resorts to prostitution, only to solicit an undercover cop. And as the cop explains, because of how serious an offense prostitution is, he and his buddies are legally allowed to decide whatever punishment they want. Even the veneer (another v word) of "protection" and "lawfulness" is removed from the police here.\n* Finch, of course, is the exception, as his investigation of V leads to an anagnorisis. But even then, it's his killing of V (the person) that allows V (the figure) to be set free, as Evie now takes up the mantle, as Finch in turn walks away from the city.\n* V's use of Enid Blyton's *The Faraway Tree* as his touchstone (a series I'd never heard of, growing up in the US) gives us his two possible views of how anarchy could go: The Land of Take-What-You-Want, and the Land of Do-As-You-Please. It's the latter that he considers the ideal, but he knows the former is a chaotic stage that has to be navigated through.\n* Like Blyton, another reference I didn't get reading this growing up (and long after I'd grown up) was "Queen Zara." I assumed the figurehead royal in the book was just a random name, but she's actually [Princess Anne's daughter](https://en.wikipedia.org/wiki/Zara_Tindall). And was about one at the time the original book was being written.\n* There a vein of criticism of V (the character and the book) that suggests that he had other options besides the violence he employees. Moore disagrees, and so do I. It's interesting that in his other two tentpole works of the '80s, *Watchmen* and *Miracleman*[^2], the worlds that needs to be subverted are much closer to (but still distinct from) our world, with the note that neither is told from the villain's POV, so the acts of violence impact us like they do the heroes[^3].\n* Over 40 years later, this book still holds up. Moore and Lloyd built an amazing world, but it's driven by the characters within it (and let's be clear: Even the range of banal and evil villains all scan as actual people, not just single personality traits). Like his other works, it's dense, sometimes uncomfortable, and benefits from multiple re-reads.\n\n\n\n[^1]:Note that this is about the book and only the book. While the Guy Fawkes mask from the movie has become associated with anarchy, the film itself really doesn't embrace it (or even go as far with the fascism it opposes). Also, while I tend to refer to Moore here, he co-created this with David Lloyd, and Lloyd's art is vital to the story being told.\n[^2]:I'm in no way dismissing his *Swamp Thing*, but the nature of its place in the DC Universe means that it doesn't quite have the same opportunities. And his other '80s work, from *Killing Joke* to *Halo Jones*, is all fantastic as well, just not a part of this cycle of political works. \n[^3]:This is more of an issue in *Watchmen*, of course. In *Miracleman*, which I may write about later, there's no doubt that Johnny Bates is a monster, and the change instigated by his violence stems from Miracleman recognizing an opportunity. \N 13767 \N 402876 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.3498012089508 0 \N \N f 0 \N 0 214539219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427468 2025-03-06 12:06:47.63 2025-03-29 22:39:50.232 \N Please don't bring that DemonGPT here. It's funny how bitcoiners are preaching 'run your own node' and so on and then some want to give these overlords all the power. They call themselves OpenAI but there is nothing open about them. Maybe if you could host your own model and control what data is fed into it to train it, I would have a different opinion. In its current status, DemonGPT is biased with woke and mainstream culture, and Sam Altman and his acolytes get to profit from everyone's effort (the queries made to DemonGPT are used to improve the model).\n\nRemember, DemonGPT is controlled by the same person who:\n- Has co-founded Worldcoin, where they _give_ us one token in exchange for our biometric data and they get to keep the other two billion tokens. And now they want to use their 'orb' to verify that we are human to tell us apart from AI.\n- Has invested in a company (Helion) that demands covid vaccine. See https://archive.is/l3rz9 at the bottom: "**Please note that we require all visitors to be up to date on their COVID vaccination or wear a mask for the duration of their stay.**"\n- Is deep into the fiat oligarchy ([his WEF profile](https://www.weforum.org/people/sam-altman), comes from Y Combinator)\n\nWhy on earth do you want to bow before the very system and people that are enslaving us and give them all the power? They want to use their AI to see if they can keep their clown fiat world running for another 50 years or so before it collapses. https://example.com/ 11378 427456 426780.427456.427468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.60940168985771 0 \N \N f 0 \N 0 63495597 0 f f \N \N \N \N 426780 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423459 2025-03-03 11:40:44.383 2025-03-29 22:39:50.232 \N They may get addicted to the sats, high quality discussions and content. https://example.com/ 16717 423316 423316.423459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.424303554986 0 \N \N f 0 \N 0 196781618 0 f f \N \N \N \N 423316 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416881 2025-02-25 22:41:34.224 2025-03-29 22:39:50.233 \N Been polishing up https://nomenexplorer.com\n\nA few people registered some names after I launched it, but interest hasn't picked up. I'll keep plugging away it and see if I can get some interest going https://example.com/ 16830 416869 416158.416221.416253.416288.416551.416578.416605.416632.416869.416881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4257609203162 0 \N \N f 464148874 \N 5 236563031 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427554 2025-03-06 13:43:01.937 2025-03-29 22:39:50.233 \N ![Pooh gets it](https://i.ibb.co/Swnx46N/msg362745580-95194.jpg) https://example.com/ 4989 427548 426635.427042.427359.427548.427554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.596186072927 0 \N \N f 0 \N 0 70907205 0 f f \N \N \N \N 426635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431019 2025-03-09 15:09:27.208 2025-03-29 22:39:50.234 \N ![](https://d.pr/i/rZ2v2g+) https://example.com/ 1705 426814 426814.431019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1710640138479 0 \N \N f 0 \N 0 48590736 0 f f \N \N \N \N 426814 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431024 2025-03-09 15:10:02.485 2025-03-29 22:39:50.234 \N Georgia is interesting in that the majority of the local population is rather indifferent to bitcoin, and any exchange points or stores with payment in sats are opened by expats who have moved to the country.\n\nOn a legislative level, "cryptocurrency" is virtually unregulated in the country. There are no taxes on exchanging bitcoin to fiat and back here.\n\nBitcoin communities I was not able to find. There are sometimes some small thematic meetings, but I have not seen any active movement. Perhaps I will try to create such a community myself and try to attract people, but I need to think it over carefully. https://example.com/ 21051 424855 424855.431024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0416983789698 0 \N \N f 0 \N 0 218475292 0 f f \N \N \N \N 424855 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430995 2025-03-09 15:01:39.509 2025-03-29 22:39:50.235 \N The post is kind of begging... Bitcoin is all about proof of work. So next time show us some proof of work first.\n\nBut let's push this even further. I am a beer drinker too.\nI know I am risking to be scammed with a new anon SN account.\n\nI don't want to know who you really are, I don't care too much.\nI care more for bitcoin adoption.\n\nSo... let's make an experiment - push it forward. (@sn maybe this could be another cool daily post)\n- find a bar that accept Bitcoin, near you - see btcmap.org\n- ask to pay over LN for a beer\n- take a screenshot of the QR invoice, or share it here\n- record a video or at least some pictures of the whole process and share them here\n- we will pay for your beer.\n\nI did this with a lady from, UK, paying her coffee in a bar. And this was how she was onboarded into Bitcoin!\nI said to the coffee shop owner: I will pay in sats the coffee for the first customer that enter and doesn't have sats to pay it. And I did it!\nThen this lady created a nice webpage about this idea\nhttps://www.kindnesscontagion.co.uk https://example.com/ 9916 421611 421567.421585.421611.430995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.77400506034189 0 \N \N f 0 \N 0 31603499 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402846 2025-02-14 06:19:16.125 2025-03-29 22:39:50.235 \N Just testing the PWA now. Nice, gonna use this, reminded me to pop out other PWA capable sites I use. https://example.com/ 17316 402826 402826.402846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.17291897007858 0 \N \N f 0 \N 0 174650740 0 f f \N \N \N \N 402826 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444498 2025-03-20 00:04:58.461 2025-03-29 22:39:50.235 \N As a media professional with over 13 years of experience in film, broadcast, and video, I offer my services to Bitcoiners around the world and those local to me in the PST timezone. I am open to working with individuals or companies, both remotely and in person. I am eager to collaborate with others and use my skills to help bring their projects to life, especially those who need assistance with the technical aspects.\n\nFor more info and some samples of my Proof of Work so far:\nwww.murdawkmedia.com https://example.com/ 21442 444489 443712.444179.444324.444489.444498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9832688598355 0 \N \N f 0 \N 0 144428913 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414444 2025-02-23 22:57:27.115 2025-03-29 22:39:50.236 \N Certainly sounds achievable, but I also need to dig more into Fediment. I really have come around to the idea of both Fedimint & Cashu. \n\nIf we think about the types of **LOCAL** parties that will run the mints, I can certainly imagine community schools or Uncle Jims doing so, they are great to be trusted in that context. Also exciting the ability to make payments offline on Cashu, from blinded signatures.\n\n**ONLINE** communities will no-doubt appear too, especially when we can automate proof of reserves & proof of membership of the Mint, removing another requirement of trust.\n\nFor those interested, this was a great explainer video on Cashu by Calle on WBD (which is similar in ways): https://www.youtube.com/watch?v=kUJmHo990Fk\n https://example.com/ 2460 414385 414385.414444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0878431641475 0 \N \N f 0 \N 0 22863211 0 f f \N \N \N \N 414385 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410634 2025-02-20 15:24:41.587 2025-03-29 22:39:50.236 \N I'm sorry to read this, I love photography, it was even the territory where I started SN, when my husband told me: "I know you like taking photos and I know the ideal place for you to publish them" even my SN biography refers to my love for taking photos. Thank you for this territory, I wish you all the best. https://example.com/ 4166 410358 410358.410634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2218449894318 0 \N \N f 0 \N 0 149921427 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423117 2025-03-03 01:20:07.266 2025-03-29 22:39:50.236 \N That flipped bolt is such an eyesore! I loved how easy it was to find my posts with the empty space. Why not just use a B for boost? It would look so much better. Just a thought. https://example.com/ 14503 422857 422856.422857.423117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0241076884834 0 \N \N f 0 \N 0 73087888 0 f f \N \N \N \N 422856 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451428 2025-03-24 14:46:48.952 2025-03-29 22:39:47.609 SN Foundry- Weekly Discussion @phygit @benwehrman @antic @kytt @siggy47 @niftynei @PlebLab @Book_It @needcreations_ @jimmysong @roytheholographicuniverse @birdeye21 @jeff @BitByBit21 @itsTomekK @potus @MaxAWebster @runningbitcoin @MEME_LORD @Levlion @elvismercury @brandonsbytes @Public_N_M_E @GlobalThreat @Billy_Dow @ekzyis @BitcoinOutdoors @TNStacker @Chiefmonkey @MerryOscar @davidw @Relight_Motion @nout @notgeld @kr @south_korea_ln @OneOneSeven @kdnolan @dk @k00b\n\nHey Territory Founders, \n\nInspired by this post https://stacker.news/items/368635 by @south_korea_ln I thought this week's discussion could surround the recent surge of sat farmers on the site. \n\nI have definitely noticed this in the sports territory. Some users posting very similar posts multiple times a day without context or engaging with the broader community. They are clearly trying to farm sats. I don't know if they are AI generated posts or not. \n\nA way to combat this would be to increase the cost of posting but that may deter honest actors from posting as well. \n\nMy approach to dealing with these users was to first ignore their posts. Initially I was engaging and zapping every post made in the territory but this just encouraged farming posts, so I stopped doing that and focus now on zapping and engaging with posts that add value to the territory. Then I began downzapping the farming posts. And finally in one of my own posts I called out the user and stated that although I don't want to censor or mute them I would be downzapping all of their content. This seemed to have an impact and the posts have pretty much ceased. \n\nWhat tactics are you taking in your territories to combat farming posts? It would be great to hear others ideas and strategies and get a discussion going. \n\nCheers,\nGR\n\n(50% of zaps will to @south_korea_ln. The other 50% will be donated to rewards) \N 1751 \N 451428 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 6.02712161503828 0 \N \N f 0 \N 0 243866511 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422282 2025-03-02 11:00:54.775 2025-03-29 22:39:47.609 Renting an apartment for bitcoin: Part II Continuing my story - [Renting an apartment for bitcoin](https://stacker.news/items/265707)\n\nHi everyone. Just wanted to share a continuation of the story. I decided to try to act as an intermediary (for starters) for other tenants so that they too can pay rent to the landlord directly in bitcoins, as he requested. They are a young couple, let’s call them Alice and Bob))\n\nWhen I went to visit them the other day and tried to discuss this topic I was met with a harsh negative reaction and was rebuffed. They said they wanted nothing to do with “crypto” and would continue to pay the landlord in fiat. But it was going to be a long evening and I postponed this conversation for later to better think about my next move and try to start the conversation again, but without the counter negative reaction. And here we can once again mention how “crypto” spoils the impression and attitude towards bitcoin in general. People don’t see the difference and don’t want to see it, thinking it’s all scam.\n\nFor the time we met, we were chatting, playing board games. And somewhere during this time period, I texted my bitcoiner friend to play along and supposedly ask him to top up his phone number with bitcoin, as he had run out of money on his card. When he texted me, I defiantly threw him some sats, dubbing the action for Alice and Bob. (I’ve done a post on SN before about how this method helped me do my friend’s orange pilling.)\n\nAnd it worked again, Alice and Bob were surprised that “crypto” (oh shit) could be used to top up a phone number. And then began my 40-minute monologue about what crypto and Bitcoin are, the difference between them, and that phone top-ups are just a drop in the ocean of possibilities that Bitcoin offers.\nI tried again to offer them a rent-paying scheme with the assurance that if they were afraid of losing their money, I would pay them back with interest if the money didn’t reach the landlord. But they still weren’t completely convinced.\n\nThen I suggested to them that we call the landlord via video link and I would personally transfer my bitcoins to him and Alice and Bob would give me the dirty fiat when he confirmed receipt. To this they agreed. It took a couple minutes, the reaction was predictable, but by this point after my 40 minute lecture this couple had a knowledge base and they eventually agreed to pay the rent through me, but eventually learn to do it themselves so they wouldn’t have to ask me. I’ll even be happy to waive a small brokerage fee if we get 2 more new bitcoiners in our ranks)\n\nThe first payment was made. And since then, Alice and Bob have been asking me tons of questions and asking me to share useful links on learning about Bitcoin rather than “crypto”. I consider that a small victory)\n \N 6229 \N 422282 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.54984049544598 0 \N \N f 0 \N 0 27883268 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449704 2025-03-23 13:41:17.314 2025-03-29 22:39:47.609 AMA with PlebLab's Top Builder teams! \n![announcing-AMA-nodate.png](https://m.stacker.news/13774)\n\n# Hey Stackers! This is an exclusive AMA session. Discover the next wave of projects and builders in 2024.\n\n---\n\n\nIn its 2024 debut, TopBuilder has already set a high bar, attracting 30 teams. The competition isn't just about winning; it's a global celebration of new ideas and emerging talent in the Bitcoin ecosystem, offering weekly workshops, mentorship, and unparalleled networking opportunities.\n\n---\n\n## What to Discuss:\n- Ask why they chose to develop on Bitcoin...\n- Ask about the team experiences and the project...\n- Ask about their Bitcoin journey...\n- Ask about what they think about lightning, nostr, ai etc...\n- Ask why they think they will win Top Builder\n- Ask the Top Builders questions about their project...\n\n---\n\n## 🤘⚡️Teams Participating in Stacker News AMA\n\n- **agstr** - Facilitating local produce and meat purchases. [Website](https://agstr.com) | [GitHub](https://github.com/bolandco) | [SN: @boland](https://stacker.news/boland)\n- **Alpaca Retail Management System** - Integrating Bitcoin payments into retail management. [Website](https://alpacarms.com) | [SN: @brewsbitcoin](https://stacker.news/brewsbitcoin)\n- **Bitcoin Mastermind** - Engaging WordPress users with Bitcoin-rewarded quizzes. [GitHub](https://github.com/ealvar13/hd-quiz-bitcoin-rewards) | [SN: @ealvar13](https://stacker.news/ealvar13)\n- **BitScript** - Empowering Bitcoin developers with educational content. [Website](https://www.bitscript.app/) | [SN: @setzeus](https://stacker.news/setzeus)\n- **Blitz Wallet** - A non-custodial Bitcoin lightning wallet. [SN: @BlakeKaufman17](https://stacker.news/BlakeKaufman17)\n- **BTC-COLLATERAL** - Marketplace for Bitcoin-secured loans. [GitHub](https://github.com/tvpeter/btc-collateral) | [SN: @tvpeter](https://stacker.news/tvpeter)\n- **BtcTestnetCoins** - Facilitating access to Bitcoin testnet coins. [GitHub](https://github.com/hkarani/btc-testnet-coins) | [SN: @asterisk32](https://stacker.news/asterisk32)\n- **Branta** - Automating PGP/integrity checking for wallets. [Website](http://branta.pro/) | [GitHub](https://github.com/BrantaOps) | @keith_gardner\n- **CASCDR** - Like Zapier but on open protocols. [Website](https://cascdr.vercel.app) | @cascdr\n- **CCNS** - Nostr-focused community platform for link aggregation. [Website](https://ccns.sebastix.dev) | [GitHub](https://github.com/Sebastix/CCNS) | [SN: @sebastix](https://stacker.news/sebastix)\n- **Clams** - Addressing accounting challenges for Bitcoiners. [Website](https://clams.tech) | [SN: @johngribbin](https://stacker.news/johngribbin)\n- **Coracle** - Nostr client serving real-life communities. [Website](info.coracle.social) | [GitHub](https://github.com/coracle-social/coracle) | [SN: @hodlbod_fr](https://stacker.news/hodlbod_fr)\n- **Cypher** - Simplifying PWA Bitcoin application building. [Website](https://cypher.space) | [GitHub](https://github.com/cypher-space) | [SN: @cypherspace](https://stacker.news/cypherspace)\n- **Jippi** - Interactive education app for Bitcoin beginners. [Website](https://jippi.app/) | [GitHub](https://github.com/OlliePorter/jippi_app) | [SN: @Jippi](https://stacker.news/Jippi)\n- **Plebwork** - Marketplace for freelancers in the Bitcoin industry. [Website](plebwork.com) | [GitHub](https://github.com/plebwork/) | [SN: @plebwork](https://stacker.news/plebwork)\n- **Resolvr.io** - Bitcoin-native open-source dispute resolution. [Website](https://resolvr.io/) | [GitHub](https://github.com/Resolvr-io) | @Resolvr\n- **Yopaki** - Onboarding to Bitcoin with culture and financial tools. [Website](www.yopaki.com) | [SN: @carloschida](https://stacker.news/carloschida)\n- **Zapmoji** - A platform for Bitcoiners to share and monetize memes. [Website](https://zapmoji.vercel.app/) | [SN: @jowo](https://stacker.news/jowo)\n\n---\n\n## 😎 Teams Not Participating in Stacker News AMA:\n\n- **Access Tribe** - Building Nostr-based Bitcoin communities. [Website](https://accesstribe.com) | [GitHub](https://github.com/accesstribe)\n- **Bitcoineando** - Automating quality web applications for Bitcoin education. [Website](https://bitcoineando.com) | [GitHub](https://github.com/esixce/)\n- **Bitspend** - Streamlining Business to Consumer Cross Border Payments in Africa. [Project](https://github.com/orgs/PlebLab/projects/5/views/2?pane=issue&itemId=49780866)\n- **Dosh** - Quick verification of SATSCARDs for Bitcoin users. [Website](https://dosh.cards/) | [GitHub](https://github.com/mikekelly)\n- **LNPlay** - Deploying private lightning networks for user feedback. [Website](lnplay.guide) | [GitHub](https://github.com/farscapian/lnplay)\n- **LunchMoney** - Browser extension for selling demographic information. [Website](https://www.getlunchmoney.com/) | [GitHub](https://github.com/dylanbathurst/lm-extension)\n- **NEO** - Social Finance Application for young professional entrepreneurs. [Website](www.prjctlazrus.com) | [GitHub](https://github.com/GrihmLord)\n- **Shopstr** - Decentralized Nostr marketplace for anonymous Bitcoin transactions. [Website](https://shopstr.store) | [GitHub](https://github.com/shopstr-eng/shopstr)\n- **Bitcoiner Freelance** - Connecting freelancers with Bitcoin-paying gigs. [Website](https://bitcoinerfreelance.com/)\n- **Code Satoshi** - AI code assistant for Bitcoin-specific languages. [Website](http://codesatoshi.com/)\n\n---\n\n## How to Join the Conversation:\nLeave your questions below, and they will address them during the AMA. Whether you're just another stacker, an aspiring builder, or just curious about the competition, we're all here to share and engage with you.\n\n---\n\n## Stay Connected:\nLearn more about [Top Builder Competition](https://www.topbuilder.dev)\n\n---\n\n🤘⚡️ Let's do it, Stackers! - @Car\n \N 8004 \N 449704 \N \N \N \N \N \N \N \N science \N ACTIVE \N 1.64976694425697 0 \N \N f 0 \N 0 207351056 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424326 2025-03-04 00:51:21.092 2025-03-29 22:39:50.238 \N I'm biased to say yes, but realistically speaking what we need right now is better client software. More app and desktop wallets trying different UXes and goals. That to me is the current bottle neck. https://example.com/ 917 423856 423743.423856.424326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4940810815512 0 \N \N f 0 \N 0 87677752 0 f f \N \N \N \N 423743 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423120 2025-03-03 01:22:46.861 2025-03-29 22:39:50.239 \N I need to work harder on new memes.\nI want to post them on SN Meme Monday contest, not because I would want the prize, but because I don't want the shitcoiners (copying memes) to earn the prize.\n\nOnly genuine and spontaneous memes with PoW should win.\nI've seen SN accounts used only for that meme contest, they never post anything useful on SN...\n\nShitcoiners MUST PAY. https://example.com/ 21418 423013 422628.423013.423120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.34008821790437 0 \N \N f 0 \N 0 156354449 0 f f \N \N \N \N 422628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404415 2025-02-15 21:16:12.417 2025-03-29 22:39:50.239 \N Clearly OP hasn’t spent enough time here lol https://example.com/ 18368 402188 402188.404415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.86215858761097 0 \N \N f 0 \N 0 190225404 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444420 2025-03-19 21:34:52.634 2025-03-29 22:39:50.239 \N As a r/bitcoin mod, i cosign this thread. we mods discussed whether to remove stacker.news links recently, but I pushed for supporting this lightning experiment, so you're in the clear for now. https://example.com/ 6602 444168 444168.444420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8150887390856 0 \N \N f 0 \N 0 173937618 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421514 2025-03-01 18:09:01.181 2025-03-29 22:39:50.239 \N https://www.citadel21.com/why-the-yuppie-elite-dismiss-bitcoin https://example.com/ 1008 421148 420055.421116.421148.421514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1634161585337 0 \N \N f 0 \N 0 57606972 0 f f \N \N \N \N 420055 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427780 2025-03-06 16:21:49.407 2025-03-29 22:39:50.239 \N He's done a great service to bring the topic of the demise of the West and to open people's eyes to this volatile world we now live in. Doing so in an easy to understand format, with great illustrative work.\n\nThat said, what I believe he misses, is that it is likely to be the growth of the Internet and its native currency, not China, that will surpass the US dollar in influence. \n\n\nQuoted from [The Sovereign Individual](https://stacker.news/items/49781)...\n\n> The cybereconomy, rather than China, could well be the greatest economic phenomenon of the next thirty years. https://example.com/ 1723 427311 427251.427311.427780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.51232481611548 0 \N \N f 0 \N 0 5387790 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449629 2025-03-23 13:05:57.029 2025-03-29 22:39:47.609 TIL: You can get a cowboy hat by downzapping I feel like a true wild west renegade. Vigilante mode: **enabled**\n \N 11648 \N 449629 \N \N \N \N \N \N \N \N DIY \N ACTIVE \N 22.3450655309897 0 \N \N f 0 \N 0 191442991 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415317 2025-02-24 17:37:45.204 2025-03-29 22:39:47.609 SN release: ~meta sub, freebies improve, tip->zap, daily discuss permalink, more 1. This ~meta sub now exists. Please use it instead of anywhere else to discuss SN features, sing SN's praise, and complain. All future releases and stuff will go here.\n\n2. Freebie posts/comments aren't limited to 2/5 anymore. So if you ever get to a zero balance, you can rebuild your balance. The same rules still apply to freebies otherwise, ie they have very limited visibility until other stackers zap them.\n\n3. All mention of 'tips' were changed to 'zaps' as that seems to be the consensus term.\n\n4. The daily discussion thread now has a permalink: https://stacker.news/daily\n\n5. Add a [SimpleX chat group](https://simplex.chat/contact#/?v=1-2&smp=smp%3A%2F%2F6iIcWT_dF2zN_w5xzZEY7HI2Prbh3ldP07YTyDexPjE%3D%40smp10.simplex.im%2FebLYaEFGjsD3uK4fpE326c5QI1RZSxau%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAV086Oj5yCsavWzIbRMCVuF6jq793Tt__rWvCec__viI%253D%26srv%3Drb2pbttocvnbrngnwziclp2f4ckjq65kebafws6g4hy22cdaiv5dwjqd.onion&data=%7B%22type%22%3A%22group%22%2C%22groupLinkId%22%3A%22cZwSGoQhyOUulzp7rwCdWQ%3D%3D%22%7D) ... link is available in the footer with telegram and sphinx chat.\n\n6. Added a shortcut for tabs in markdown text areas: `ctrl+alt+tab` gives you a real tab now.\n\n7. New user email copy got a makeover with links to the faq and stuff\n\n8. When [Stacker News Live](https://www.youtube.com/@stackernews) is live streaming we display a banner on the front page for it\n\nI think that's it. Happy stacking. \N 21047 \N 415317 \N \N \N \N \N \N \N \N health \N ACTIVE \N 26.0781053095586 0 \N \N f 0 \N 0 149388411 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451284 2025-03-24 13:30:55.488 2025-03-29 22:39:50.229 \N Working with a few early devs that are in the bitcoin and freedom tech space so far. https://example.com/ 2775 451158 450766.451158.451284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7985503435014 0 \N \N f 0 \N 0 102302655 0 f f \N \N \N \N 450766 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421608 2025-03-01 19:40:13.994 2025-03-29 22:39:50.229 \N Can I pay some btc NOT to see it? https://example.com/ 8245 421375 421375.421608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2116220840432 0 \N \N f 0 \N 0 157201750 0 f f \N \N \N \N 421375 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424314 2025-03-04 00:38:44.868 2025-03-29 22:39:50.239 \N Day 269 of snailposting everyday 'til BTC hits $100k.\n\n...and 69 push-ups. (30 - 20 - 19)\n\n__@_'-' https://example.com/ 19463 424298 417848.424298.424314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8864650500643 0 \N \N f 0 \N 0 234575682 0 f f \N \N \N \N 417848 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458187 2025-03-29 04:23:18.986 2025-03-29 22:39:47.609 A [pro] Marathon Slipstream rant: *Slipstream* is Marathon Digital's private mempool product. Cool product name. They can offer such a product because they're both a miner and a mining pool. Another example of the power vertical mining integration bestows. Leveraging the whole stack. Marathon btw, is the only public US miner with their own mining pool.\n\n![Image 2-23-24 at 3.28 PM.jpeg](https://m.stacker.news/17261)\n\nSlipstream is being marketed as a service for direct submission of large, complex, or non-standard bitcoin transactions — that meet a minimum fee threshold. Thinking about the future, wether it's Slipstream or private contracts for tx block inclusion doesn't matter, because they're effectively the same *evil*. I'm happy to play devil's advocate here, and don't see the problem with these products because they look like linear progressions of where mining was always trending. In some telling, thinking about bitcoin globally, these "private" mempools can be seen as another option in the larger jurisdictional arbitrage game, and a tool making mining more efficient, for what is now *commoditized blockspace*. And swallowing two fingers of whiskey with the following: if success is proven with the products and the powers that vertical mining integration bestow, is it possible that mining on a higher order decentralizes further as a result of that success, that we see more miner-pool formations? That's a stretch, but:\n\nAssuming bitcoin expands like us maxis bugle about, and blockspace becomes so valuable, then if you're a business, a tax haven country, an LSP, PMC, a certain AI agent, etc, and you **DON'T** mine, you're going to require access to blockspace for large value settlements or urgent one-off tx's. In that environment of compressed commoditized blockspace, just broadcasting a tx with a high fee guarantees you nothing in terms of block inclusion for reasons lightly touched on in the last [post](https://stacker.news/items/417342) I wrote. I feel you also run the risk of trade friction with blockspace itself when broadcasting your tx, where the private mempools can otherwise keep the volatility in check, and pricing predictable, during certain stretches of demand. \n\nI'm just saying, maximalism actually playing out was never a home miner thing, that's bitcoin minimalism, where your grandma and DIYers regularly broadcast directly on the layer of gods. *Max*imalism, in mining terms, is an industrial grid connecting, public listing, commoditized derivative, energy recycling, contract making, fiat leveraging (while it's around), international and domestic settlement process. That includes a bunch of bureaucracy we have to work through. The latter is the cost of living on a subsidized fossil-fuel standard, where large miners choose to go public and get reg'd in exchange for access to debt markets and shareholders to grow. Correct my view below ⤵\n\n \N 1741 \N 458187 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 2.76955850424407 0 \N \N f 0 \N 0 141871358 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458167 2025-03-29 03:25:36.904 2025-03-29 22:39:47.609 Are You a Good Gift Giver? Howdy Stackers!\n\nWhen it comes to gift giving, some people have an uncanny ability to find the perfect gift, while others struggle to find something that feels right. So how do you know if you're a good gift giver?\n\nimagine it’s your best friend's birthday. Instead of giving him the usual gift certificate or generic item, you remember that a few months ago he mentioned how much he missed the taste of a special kind of tea from a small store he visited on his last vacation. Taking it a step further, you search for the store online and order a tasting set of their favorite teas, nicely packaged and with a handwritten note saying, "I thought you'd like to try some again from this trip"\n\nThis is the kind of thoughtful gift that goes beyond the material — it's about the memories, the thoughtfulness and the effort to find something truly meaningful.\n\nAnd what about you? Are you the kind of person who digs deep and gets creative, or do you tend to go for the simplest solution? \N 2775 \N 458167 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 15.2529548576748 0 \N \N f 0 \N 0 55069548 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424318 2025-03-04 00:41:10.692 2025-03-29 22:39:50.229 \N Stop saying nonsense, Bitcoin and Shitcoins are NOT the same. If people in power think they are the same just proves how lost they are on the subject. Only bitcoin is decentralized. Only bitcoin has a vibrant community and industry, truth worthy and genuine with a very coherent message behind. Shitcoiners are envious of how successful Bitcoin is and would like to have it on their side, but that wont happen. Bitcoin is unstoppable, Crypto is just a joke. You are always in time to change sides. https://example.com/ 642 424235 424235.424318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8276919277655 0 \N \N f 0 \N 0 129034311 0 f f \N \N \N \N 424235 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424310 2025-03-04 00:35:42.2 2025-03-29 22:39:50.229 \N I would assume that they have a hardware production partner, like how Start9 partners with Purism to make their Pro machines. I wasn’t able to find that info on their site though… maybe Umbrel is actually doing it themselves?\n\nAnd why do they not accept Bitcoin as payment for their machines? That is just a bad move… https://example.com/ 2013 424306 423928.424260.424266.424282.424285.424294.424299.424300.424306.424310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.47567893448483 0 \N \N f 0 \N 0 219798501 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422541 2025-03-02 14:25:45.542 2025-03-29 22:39:50.229 \N Small podcast recommendation for you @k00b: the podcast "Land of the Giants" has a season about Facebook right now. The first few episodes are about the early days and I think this could be very interesting to you.\n\n**Tl;dr in case you don't have time:** Zucc encouraged platform growth under the motto "move fast, break things" - they were rolling out changes every f-ing day. And the by far the most important software wasn't the social media or the algorithm or anything like that - surprisingly the most important code was an algorithm to segment the userbase int A/B tests which means they rolled out changes to a part of the users and not to another group of users. And then they could evaluate which of these 2 groups used Facebook more.\n\nMaybe this could also be something for SN. e.g. the sorting algorithm how long things stay at the top and how fast new content rises can probably adjusted by tweaking one or two Integers? Maybe the perfect ratio can be narrowed down with A/B test through the userbase. https://example.com/ 642 422363 422056.422363.422541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7007511743866 0 \N \N f 0 \N 0 82360769 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421631 2025-03-01 20:12:00.286 2025-03-29 22:39:50.229 \N I used to... Then I got my stupid ass promoted 😂😂 and now I seem to have way more responsibility and stuff to do than I actually want 😂😂 https://example.com/ 21228 419958 419958.421631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.650096357454 0 \N \N f 0 \N 0 224957737 0 f f \N \N \N \N 419958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423569 2025-03-03 13:07:34.478 2025-03-29 22:39:47.609 How to secure backup seed at the airport? Hey,\nI have a question about securing seed when flying out of the country permanently. If I have a copy on paper and put it in my luggage it will be scanned at the airport and someone can have access to my Bitcoins. I can have a seed card in my pocket but there is also the risk of it falling out. What is a better and safer way to carry the seed away? Maybe just create a backup again upon arrival at the destination? \N 937 \N 423569 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.0994118545666 0 \N \N f 0 \N 0 175898986 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450226 2025-03-23 19:47:06.145 2025-03-29 22:39:50.229 \N This is a great read about open source while building a for profit product. Revenue over use for a sustained product that can be better than the closed sourced competition. Open source by itself does not make for a better product, it's often largely worse. Some quotes below that stood out to me:\n\n> If a project gets great adoption but cannot drive revenue, it will die. Some wishful thinking might argue that the community will take over, but there’s been little evidence to indicate this happens.\n\n> It’s not that open-source companies win by preventing the need for a third party; they win by allowing for the open audit of how it works.\n\n> One of the big benefits of open source is that it opens the development of niche features to the community. While the core product is typically maintained by a central engineering team, integrations or plugins are often built by community developers and then occasionally merged into the main branch.\n https://example.com/ 19673 450083 450083.450226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.34168234707453 0 \N \N f 0 \N 0 80161290 0 f f \N \N \N \N 450083 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421277 2025-03-01 14:53:10.444 2025-03-29 22:39:50.229 \N War-time Lightning CEOs just getting warmed up\n\n![](https://m.stacker.news/45573) https://example.com/ 4035 416765 416765.421277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.31952829931109 0 \N \N f 0 \N 0 149095833 0 f f \N \N \N \N 416765 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427581 2025-03-06 14:03:47.496 2025-03-29 22:39:50.23 \N _The Dawn of Everything - A New History of Humanity_ by David Graeber and David Wengrow. This is an interesting history book from an anarchist point of view based on archeological facts. https://example.com/ 9833 427567 427251.427253.427304.427567.427581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.26597225044818 0 \N \N f 0 \N 0 130325819 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431037 2025-03-09 15:10:55.618 2025-03-29 22:39:50.23 \N You just mentioned them! I love LNURL NFC payment cards. The Bolt card is pretty dope! \n\nThose are the things we need, offline POS terminals, merchants will be key drivers if consumer adoption is to grow. \n\nOne other thing that needs to be developed to make lightning more usable in these areas is finding ways to connect it to USSD (Unstructured Supplementary Service Data). This will enable millions of people using feature phones to use lightning. It's already the biggest way people use mobile money on the continent. \n\n https://example.com/ 20280 421786 421786.431037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.44962522247792 0 \N \N f 0 \N 0 95337471 0 f f \N \N \N \N 421786 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448464 2025-03-22 16:02:57.994 2025-03-29 22:39:50.23 \N You guys got me with the BTC price tracker! Man! Hahaha https://example.com/ 16353 447944 447944.448464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.21084786429009 0 \N \N f 0 \N 0 184828305 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451265 2025-03-24 13:23:07.075 2025-03-29 22:39:47.609 If you were to write a book about your life, what would the title be? Think you are writing a book about your life, a sort of biography, and you have finished it. What is missing is only the title of the book. A lot of writers confess that writing the title is the most difficult thing. Now imagine writing the title of your book of life, your biography. \n\nWould it be difficult for you to find the right title?\n\nLet’s share some creative ideas. \n\nMine will be: \n\n1 - Words Across Worlds: A Translator’s Journey\n\n\n2 - Voices Unveiled: A Translator’s Tale\n\nSomething like that. It’s hard to decide. \n\nWhat about you? \N 2749 \N 451265 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.98522907486782 0 \N \N f 0 \N 0 208558242 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407685 2025-02-18 09:48:01.925 2025-03-29 22:39:50.23 \N Yes, is my personal experience and wanted to be like that, just with a pick and a shovel...\nAll by my hands.\nSoon I will post an article about the whole experience and prooject.\n\nSneak preview of a timelapse...\n\n[![citadel-timelapse-sept.gif](https://imgprxy.stacker.news/l-5yCPpeDHChccuSOVitEzmh5fzhaFfMhCtseoKeEyM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2Mvcm0xMHpaZDEvY2l0YWRlbC10aW1lbGFwc2Utc2VwdC5naWY)](https://postimg.cc/qh7M5Lxq) https://example.com/ 15624 406446 406446.407685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.82278084756233 0 \N \N f 0 \N 0 91932643 0 f f \N \N \N \N 406446 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410675 2025-02-20 15:44:33.76 2025-03-29 22:39:50.23 \N They just paid a 900k sats fee.\nSo what's the problem here?\nBitcoin blocks space is a market place.\n\nYes, I don't like useless crap on the blockchain, but is still a fee market. They paid the fee? Fine, let them see if they can sustain this expensive crap...\n\nSoon will be just a fade joke, like it was for many years,\nPosting pictures on the blockchain is not from now, is even from 2015...\n\n@petertodd also explain it very clearly here\nhttps://twitter.com/peterktodd/status/1619692068519149568 https://example.com/ 8726 410628 410237.410601.410628.410675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1726254687867 0 \N \N f 0 \N 0 150694365 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410676 2025-02-20 15:46:24.43 2025-03-29 22:39:50.23 \N It's a passion industry, like Hollywood. Too many people willing to work harder and for lower pay in order to be part of the industry. https://example.com/ 761 410269 410269.410676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8156104666679 0 \N \N f 0 \N 0 131092743 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441880 2025-03-18 10:51:14.547 2025-03-29 22:39:50.231 \N In my opinion, everything from George Orwell is worth reading, not only the classics like 1984 and animal but also other less known books like Down and Out in Paris or London and Homage to Catalonia. Not only was Orwell so prescient about his prediction of the future of the world and understanding of deep human psychology but he was also a great writer very pleasant to read, highly recommended! https://example.com/ 13878 441859 441749.441859.441880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6507853231674 0 \N \N f 0 \N 0 210499214 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402290 2025-02-13 17:00:10.396 2025-03-29 22:39:50.231 \N Day 192 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20816 401054 400994.401054.402290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.69338010531695 0 \N \N f 0 \N 0 237718099 0 f f \N \N \N \N 400994 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442355 2025-03-18 14:27:08.832 2025-03-29 22:39:50.231 \N with injection of nostr. If it is going to be a true marketplace it has to be easy to use and understand. I know Facebook is evil but they make it super easy to buy and sell things on there same with eBay. Satscrap experience was meh. The https://example.com/ 622 442333 441600.442044.442195.442333.442355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3996456501615 0 \N \N f 0 \N 0 163900305 0 f f \N \N \N \N 441600 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410621 2025-02-20 15:14:35.804 2025-03-29 22:39:50.231 \N "If voting mattered, they wouldn't let us do it" https://example.com/ 20495 410589 410589.410621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8264333788493 0 \N \N f 0 \N 0 45732354 0 f f \N \N \N \N 410589 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458323 2025-03-29 07:51:47.131 2025-03-29 22:39:50.231 \N Spending too much time being distracted online rather than doing what I know I should be doing. https://example.com/ 7903 458134 458122.458134.458323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8929268069274 0 \N \N f 0 \N 0 129905725 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402293 2025-02-13 17:01:40.351 2025-03-29 22:39:47.609 Do you think about bitcoin inheritance? Do you have a plan to transfer your bitcoins in case something happens to you? I know there are several solutions now that allow you to transfer access to your coins. For example, nLockTime or a will with instructions on how to spend your coins.\n\nWhat methods do you use? \N 701 \N 402293 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.8359963988861 0 \N \N f 0 \N 0 23934639 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407987 2025-02-18 14:04:27.906 2025-03-29 22:39:47.609 What do Bitcoiners think about entrepreneurship? Why start a business when I can stack Bitcoin, right? \N 19488 \N 407987 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 28.4628652894808 0 \N \N f 0 \N 0 223108426 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 406876 2025-02-17 15:36:20.278 2025-03-29 22:39:47.609 I'm Lyle Pratt, Founder of Vida. AMA. Howdy folks! I'm [@lylepratt](https://twitter.com/lylepratt), Founder and CEO of [Vida](https://vida.page). Vida is the easiest way to monetize an audience or protect the value of your own time. Vida gives you a free link page (link-in-bio page) that makes it super easy for anyone to pay to engage with you via calls, messages, or live streams. You can even optionally connect your account to your own Lightning node via [LNBits](https://lnbits.com), or to your [Strike](https://strike.me) account, and we've got tons more Lightning integrations coming soon.\n\nHere's my personal page: [https://vida.page/lylepratt](https://vida.page/lylepratt). \n\nSince we've just recently rolled out "V2" of Vida, I'm here to to answer any questions you have about it, or me. Go!\n\n \N 7580 \N 406876 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.4919467116288 0 \N \N f 0 \N 0 66705263 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451379 2025-03-24 14:25:48.263 2025-03-29 22:39:50.232 \N Integrating nostr into cashu wallet https://nutstash.app\n\nPreview: \nhttps://twitter.com/CashuBTC/status/1616063616150634498 https://example.com/ 1803 451292 451292.451379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.504626975841056 0 \N \N f 0 \N 0 247987557 0 f f \N \N \N \N 451292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407690 2025-02-18 09:50:33.044 2025-03-29 22:39:50.232 \N Started a 21-day challenge in which I aimed to learn something new about Bitcoin or interact with its ecosystem every day. I would also record my progress on Stacker News.\n\nDay 6 - Did some reading up on how I could wean off my dependence on fiat and incorporate habits into my life to use Bitcoin more often. Compiled a list of merchants that accepted BTC payments and even methods on how I could give others sats so that they could experience the Lightning Network first-hand. https://example.com/ 17727 407654 407619.407654.407690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0396971361156 0 \N \N f 0 \N 0 224457518 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403346 2025-02-14 17:56:38.049 2025-03-29 22:39:50.232 \N If it meaningfully helps I'm all for changes...\nBut like my write-up suggests, I'm not sure that 'changes' (soft-forks) will actually help adoption.\n\nWith new soft-forks and new 'tools' who will actually use them? My guess is that it's the same people who use Bitcoin now... who would use Bitcoin with or without a soft-fork.\n\nI went to a cafe a few months ago that according to BTCMap took Bitcoin... and they didn't. They said it had been over a year since anyone wanted to pay in Bitcoin, and so their employees didn't know how to accept it. How would a soft-fork change this? What, a better implementation of Phoenix Wallet (with soft-forks) would somehow change this? I am very skeptical.\n\nAs far as Westerners are concerned... Bitcoin is an imperfect, but obvious improvement on current government money. It's *not perfect*... but it is a huge improvement and that's why I'm here. I don't know what else to say other than that. https://example.com/ 18423 403315 403267.403315.403346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.08156398259892 0 \N \N f 0 \N 0 77664044 0 f f \N \N \N \N 403267 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403352 2025-02-14 18:03:38.63 2025-03-29 22:39:50.232 \N Whoa, I must have missed it. Thanks https://example.com/ 9 403336 403323.403336.403352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4666655492381 0 \N \N f 0 \N 0 195103280 0 f f \N \N \N \N 403323 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422066 2025-03-02 08:55:24.16 2025-03-29 22:39:50.232 \N At some point, though I think I’d need to keep myself busy else I’ll go insane https://example.com/ 5904 422056 422056.422066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9857736215764 0 \N \N f 0 \N 0 191347224 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458222 2025-03-29 05:47:41.045 2025-03-29 22:39:50.232 \N economics would be a nice addition. \n\ni post a lot of links about interest rates and inflation in the bitcoin sub, and so far nobody has complained, but every time i post economics content i hesitate because it’s not quite the right fit for the bitcoin sub. https://example.com/ 16543 458221 458221.458222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.1830984079234 0 \N \N f 0 \N 0 92867453 0 f f \N \N \N \N 458221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410682 2025-02-20 15:53:38.157 2025-03-29 22:39:47.609 Who's gonna be the next President of USA? Keeping on with my [promise/punishment](https://stacker.news/items/707847/r/Coinsreporter?commentId=707930), I'm gonna make a bunch of ~oracle posts every month. Most of these post will be based on the outcome for real world events.\n\nAlright, let's do it. \n\nWhat can be bigger to begin with than to predict the outcome for who's gonna be the next POTUS? \n\nTell the world, stackers!\n\n***Who's gonna be the next President of USA?***\n \N 16858 \N 410682 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.3785514632233 0 \N \N f 0 \N 0 81794563 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444529 2025-03-20 01:17:16.345 2025-03-29 22:39:50.232 \N My favorite is 100% direct deposit into strike https://example.com/ 1726 443197 443197.444529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3986238589241 0 \N \N f 0 \N 0 214961700 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441881 2025-03-18 10:51:46.264 2025-03-29 22:39:50.234 \N In my view, it doesn't matter if you print your corperate scrip on metal, paper, with a merkle tree, on someone else's merkle tree, on the world's merkle tree, in between lightning channels, or whereever or whatever. Shitcoins are shitcoins, coperate scrip results in human suffering, and company shares only work in a regulated model where arbitration and courts and resolve disputes. https://example.com/ 3717 441875 441875.441881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.34895070099149 0 \N \N f 0 \N 0 52252754 0 f f \N \N \N \N 441875 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451344 2025-03-24 14:04:58.584 2025-03-29 22:39:50.234 \N Absolutely incredible. I tried it out myself today earlier, first ever real attempted session at Minecraft. But I also had a friend along whom I brought on in an mission to onboard him into Bitcoin and to explain more about the potentials of hyperbitconiziation. Little did I know he was there to onboard *me* into Minecraft and so was one of your awesome mods @Satlantis !\n\nI deposited $1 worth of sats via lightning, was given the url in-game, available to be copied easily and pasted into a browser. Sent some sats from my node to my ingame wallet and holy shit the game really changed then. I think today was easily one of the biggest birthpangs I have witnessed of TRUE Lightning integration done within a major video game. Nothing of the sort ENJIN were doing with Minecraft. This rendition of minecraft was really special and also felt like it could be quite an amazing learning experience too if catered for students learning Bitcoin.\n\nMy only worry was the guy going around with a kanye2024 clan that was basically just recruiting everyone... kinda raking in huge amount and just distributing it I guess like a mining pool while everyone else is solo lottery mining. All in all though I think this was the first time I have ever played MC with some spirit and I actually enjoyed it. I felt REALLY compelled to learn how to earn ingame currency which could be used for sats. That was a fun moment for sure which I thought I would never see.\n\nHonestly, vibes of Ready Player One came to mind. We just need alot more players on the server at all times of the day! I mean ALOT more players... I was playing with 6 others and the server could hold 200 so yeah... this makes me think of other survivalism based games that could reign so strongly with LN integration. \n\n https://example.com/ 4502 451071 451071.451344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7104522862603 0 \N \N f 0 \N 0 55555003 0 f f \N \N \N \N 451071 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448460 2025-03-22 16:00:31.17 2025-03-29 22:39:50.235 \N malleability soft-fork was segwit. https://example.com/ 7668 448457 447892.448301.448447.448457.448460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7873751359703 0 \N \N f 0 \N 0 109379877 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424205 2025-03-03 21:59:24.171 2025-03-29 22:39:47.609 The Concerns of Someone Newer to Bitcoin Hey All - Over the past couple of years, my hesitations of Bitcoin have changed over time - as my knowledge and expertise grew in this area. \n\nA couple of years back I wrote down some of the concerns someone had on Bitcoin during a flight. They understood a decent amount as I think they were a reporter attending a Bitcoin conference. I looked it up a year or so later and thought this would be Stacker News gold. \n\nI'd be curious to hear everyone's line of thought on some of these areas. Many of these I had when I didn't understand enough about Bitcoin, but I think it is important to consider these - because others newer to this space may have these as well!\n\n**Lightning and Mining**\n\n- Is lightning the best layer two solution, if not - what else can reasonably take its spot this decade?\n- How do we further diversify mining pool activities? 70% of the hash rate is with three pools.\n- What efforts to further decentralize the node options for lightning wallets?\n\n**Philosophy**\n\n- In a hyperbitcoinized world, there are/ will be risks of extreme wealth disparities. With an ever-\ndeflationary model, incentives will evolve for the better. How will you get your hands on Bitcoin\nif you can’t buy it anymore?\n- Will everyone make it on the life raft, for those who don’t (and many will), won’t the\ngovernment become extremely authoritarian and draconian to Bitcoiners?\n- Will we see a peaceful world on a Bitcoin standard or more of a world ruled by Oligarchs in\nCitadels?\n\n**Satoshi**\n\n- If Satoshi were to ever be revealed would this be a net positive or net negative?\n- If Satoshi were to dump on retail where would bitcoin be? \n\n**Bitcoin Core**\n\n- Core developers earn a meager salary and meager living, any ways to incentivize whales to offer\nmore development efforts on the core?\n- With as many smart people as there are studying the code, and analyzing the BIPs, how did Taproot get pushed through with the unintended consequences of Ordinals?\n\n**Circular Economies/Practicality of Bitcoin in Developing Countries**\n\n- How is the older generation handling the learning of Bitcoin? What are the biggest gaps, and\nbiggest successes? \n- Service and Internet issues? Without excellent internet, bitcoin can be a sluggish experience. In\naddition to Star Link, what is being done to enhance the internet in every square foot of El\nSalvador and country wishing to adopt Bitcoin?\n- How has Chivo functionality been improving in the past couple of years?\n-What hardware wallets are Salvadorans (and other nations with smaller capital pools) able to subsidize self-custody? Most hardware wallets are $60+\n\n\nCheers Everyone! \N 20636 \N 424205 \N \N \N \N \N \N \N \N science \N ACTIVE \N 0.851792312442328 0 \N \N f 0 \N 0 128937798 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431068 2025-03-09 15:15:40.513 2025-03-29 22:39:50.235 \N These type of conferences are boring and are meant only to make noise.\nJust a bunch of influencers talking same shit they talk on podcasts, without a REAL solution. Will bring some meaningless political figures, trying to fool people that politicians care about Bitcoin (they don't give a shit, they are there to take your fool vote).\n\nFor a total nocoiner, maybe these show conferences could give them some interest, but they will learn NOTHING from it.\n\nThe important ones are the hackathlons and workshops, those where people could see in real life Bitcoin solutions for their real problems and interact with developers and builders.\n\nI see Adopting Bitcoin (in El Salvador) a better way presenting Bitcoin, even then, too much talking and less workshops, especially in local language, to really help those people to start understanding better what is Bitcoin and how to use it.\n\nIMHO a Bitcoin conference must be ONLY with BTC/LN apps devs and integrators, solutions builders, to show the world, real use cases, real examples, real implementations and how could be done. https://example.com/ 787 431004 430331.431004.431068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0494566152921 0 \N \N f 0 \N 0 105418169 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444574 2025-03-20 03:05:07.497 2025-03-29 22:39:50.235 \N There is nothing inherently wrong with being a maxi. The hostility is what wears people down. Once the hive turns on you, its over. That isn't helping anyone. Call out the scams and offer your guidance, we absolutely need that.\n\nJust sick and tired of the purity tests. https://example.com/ 5308 214296 214244.214296.444574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.2539836926546 0 \N \N f 0 \N 0 98088354 0 f f \N \N \N \N 214244 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416921 2025-02-25 23:11:16.707 2025-03-29 22:39:50.235 \N Day 177 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 661 415850 415637.415850.416921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8549160264931 0 \N \N f 0 \N 0 51050475 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404536 2025-02-16 00:39:36.464 2025-03-29 22:39:50.236 \N I used to be very addicted, about a decade ago. Anxiety caught up and really fucked me up, couldn't even take a drag of anything without feeling like I was dying. Took a very long break (5 years) and kept trying again. I think the thing for me, personally, was acknowledging that it still had 'power over me' even if I wasn't smoking. I didn't like that. Gradually found the right CBD-heavy strains and introduced it back, safely. I still only solo smoke, I always have a ton on hand. But I haven't smoked in like 3 months and don't think anything of it. Even when I do, it's with a herb vape with a very small container on a low temp. I think we as a society have completely over done it.\n\nApplaud your reasons, sounds like a different scenario but just wanted to share my perspective since you mentioned anxiety. Part of me getting past that was to make sure it didn't have power over me anymore. Not every addict can do that, but it felt important to me. Weed is such a strange, magical plant. Gotta respect it. https://example.com/ 7395 402193 402188.402193.404536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6641058139197 0 \N \N f 0 \N 0 130889850 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404528 2025-02-16 00:38:07.913 2025-03-29 22:39:50.236 \N Started a 21-day challenge in which I aimed to learn something new about Bitcoin or interact with its ecosystem every day. I would also record my progress on Stacker News.\n\nDay 19 - Was thrilled to encounter Zapread and registered an account with it. Though my excitement died down when another patron @Undisciplined mentioned that Zapread seems to be inactive these days, I have hopes that having another Bitcoin-focused Avenue would stimulate my brain juices and motivate me to write more. https://example.com/ 21498 402791 402188.402791.404528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7975907105187 0 \N \N f 0 \N 0 65178665 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424327 2025-03-04 00:51:22.293 2025-03-29 22:39:50.237 \N @duuv mentioned i should build [the charts](https://stacker.news/items/286826/r/kr) i shared yesterday into a website, i hope to get some time this weekend to work on it.\n\ni think i’ll add the inflation charts (and more) to [Stack Sats](https://stacksats.how) using chartJS with some guidance from my trusty developer, ChatGPT. https://example.com/ 21389 424220 424220.424327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6904029947807 0 \N \N f 0 \N 0 11705830 0 f f \N \N \N \N 424220 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402930 2025-02-14 09:11:44.358 2025-03-29 22:39:50.237 \N Wow thanks for the 100% fwd ben https://example.com/ 9982 402822 402582.402822.402930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5539046489714 0 \N \N f 0 \N 0 191613019 0 f f \N \N \N \N 402582 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444231 2025-03-19 18:23:00.679 2025-03-29 22:39:50.237 \N Got a 22 % discount for his loan with silvergate like a chad! https://example.com/ 7097 443368 442904.443352.443368.444231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1253014904686 0 \N \N f 0 \N 0 48519263 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437596 2025-03-14 16:45:08.29 2025-03-29 22:39:50.238 \N Day 117 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 1488 437516 437269.437516.437596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3937522733608 0 \N \N f 0 \N 0 215776302 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 405809 2025-02-16 21:25:39.724 2025-03-29 22:39:47.609 US rolls out emergency measures after Silicon Valley Bank collapse \N https://www.theguardian.com/business/2023/mar/12/silicon-valley-bank-collapse-no-bailout-janet-yellen 8376 \N 405809 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.3548500242427 0 \N \N f 0 \N 0 18549192 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430996 2025-03-09 15:03:31.689 2025-03-29 22:39:47.61 Disadvantages of Bitcoin's Circular Economy I want to appeal to those who have been living only on bitcoins for some time. The @darthcoin experience is especially interesting, but other opinions are welcome. What difficulties do you experience using bitcoin on a regular basis? \N 10934 \N 430996 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.295424177030128 0 \N \N f 0 \N 0 154778971 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458309 2025-03-29 07:38:35.399 2025-03-29 22:39:50.23 \N [PSBTs](https://bitcoinops.org/en/topics/psbt/) is the answer. You open new channel with your LN node, node gives destination address and amount, other party builds transaction that sends sats to that address and gives you PSBT. Very important that other party does not broadcast transaction to the network, just give you PSBT. Then you provide that PSBT to your node.\n\nFor CLN see [fundchannel_start](https://docs.corelightning.org/reference/lightning-fundchannel_start) and [fundchannel_complete](https://docs.corelightning.org/reference/lightning-fundchannel_complete).\n\nFor LND see [Opening a channel by using a PSBT](https://github.com/lightningnetwork/lnd/blob/master/docs/psbt.md#opening-a-channel-by-using-a-psbt).\n\n https://example.com/ 18402 458286 458286.458309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.51564788827906 0 \N \N f 0 \N 0 133002721 0 f f \N \N \N \N 458286 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413667 2025-02-23 12:28:31.916 2025-03-29 22:39:50.23 \N Yeah, that's what really got me into bitcoin. I'm not sure it is all that common of an emotion. It comes from deeper understanding of both how screwed up the world is as well as how bitcoin works and how it could make a dent in many problems. I've spent so much of my life digging into trying to understand and mostly the more I learn the more dark the world looks. Before bitcoin my faith is really the only thing that has kept me from despair for the future. Bitcoin is very hopeful. https://example.com/ 2111 413550 413007.413527.413550.413667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.37243289047117 0 \N \N f 0 \N 0 6342152 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444355 2025-03-19 20:07:11.504 2025-03-29 22:39:50.23 \N I've been trying to follow the discussion but its been pretty hard getting the pros and cons from each side because everyone is trying to 1 up one another. \n\nI think DC is a cool idea, i just don't think its needed right now, what will that extra bandwidth help? There's still so much to do on LN and other improvements to make that seamless, fees aren't too bad on-chain and Liquid is a ghost town so where will dc find this extra demand for transactions from? Is my question\n\nI just see so many hot takes and dunks on X, but I'm pretty sure a lot of people moaning about drivechains don't even run their own node and they're just siding with the opinions of who they like most and dog-piling https://example.com/ 20858 444015 444015.444355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.71068396271093 0 \N \N f 0 \N 0 150907785 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410596 2025-02-20 14:58:35.54 2025-03-29 22:39:50.23 \N wtf? who did this?\nguys, I said I need to spend more and somebody sent me a shitton of sats.\nLOL, now I really need to read those good posts on SN and zap them hard.\n\nLet's see some good posts today. https://example.com/ 16513 410593 410593.410596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.388557904007882 0 \N \N f 0 \N 0 214580527 0 f f \N \N \N \N 410593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444576 2025-03-20 03:09:24.665 2025-03-29 22:39:50.23 \N Why making misleading titles? How is it gonna impress Darth? \n\n https://example.com/ 659 444183 443743.444183.444576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6945143112688 0 \N \N f 0 \N 0 155193812 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410633 2025-02-20 15:24:18.555 2025-03-29 22:39:50.238 \N You’re using it right now 🤠 https://example.com/ 14037 410617 410249.410617.410633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5697208665369 0 \N \N f 0 \N 0 93645788 0 f f \N \N \N \N 410249 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403265 2025-02-14 16:09:14.056 2025-03-29 22:39:47.609 Current Fees Highlight The Value Of RoboSats Since fees are exceedingly high right now, it seems to stress the importance of LN based exchanges. This can be seen not just in how much trades have continued at a normal pace on robosats. In addition, Binance opening up LN trades but closing onchain ones only highlights this advantage of LN.\n\nWe may be experiencing the early stages of a transition to LN first services. The BRC-20 tokens will die out, but in the meantime we will end up building better ways of using LN to cheaply transact.\n\nOf course, we aren't moving quickly enough. RoboSats is essentially the only viable non-KYC LN exchange atm (if you know another please tell me about it), and thus could theoretically act as a pinch point for private on/off ramps. Nostr shows promise as a means of further decentralizing our LN exchanges, and this recent rise in fees highlights the importance of building out such projects. \N 7809 \N 403265 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.41388687189263 0 \N \N f 0 \N 0 119002726 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403263 2025-02-14 16:03:33.36 2025-03-29 22:39:50.23 \N How would you compare the security model (e.g. pros and cons) of Damus vs Signal? What are the different attack vectors? \nWhat metadata can the servers log in Nostr? https://example.com/ 11165 403260 403063.403213.403228.403237.403240.403260.403263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.7817096417725 0 \N \N f 0 \N 0 110717546 0 f f \N \N \N \N 403063 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434746 2025-03-12 07:53:04.805 2025-03-29 22:39:50.23 \N Somewhat. I am certainly less tied to any political ideology or spectrum because of Bitcoin and see the world less as their team vs our team from a political lens and more as all politics is a grift and bullshit. That being said I still have my biases. https://example.com/ 1064 433833 433833.434746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.239504978003 0 \N \N f 0 \N 0 241582204 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451222 2025-03-24 12:58:51.363 2025-03-29 22:39:50.23 \N Based on what you wrote , the private key is in hexadecimal format. The total characters should be 64 total. Looks like you added 2 there. Try removing two at the end https://example.com/ 10469 451216 451216.451222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.47059913652537 0 \N \N f 0 \N 0 107586904 0 f f \N \N \N \N 451216 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423173 2025-03-03 04:14:15.754 2025-03-29 22:39:50.23 \N Mr criss cross apple sauce https://example.com/ 20680 423166 423166.423173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6467705214698 0 \N \N f 0 \N 0 68404695 0 f f \N \N \N \N 423166 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437988 2025-03-15 04:52:18.044 2025-03-29 22:39:50.23 \N Casa also recommends seedless setup for their customers https://blog.keys.casa/seedless-security-model/ https://example.com/ 18330 437828 437828.437988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5195716808338 0 \N \N f 0 \N 0 185164079 0 f f \N \N \N \N 437828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410643 2025-02-20 15:28:06.102 2025-03-29 22:39:50.231 \N I want a prediction market post type. Basically, a poll where you can put more than 1 sat on your choice and then the winners split the pot.\n\nA similar mechanism could work for quiz type polls. https://example.com/ 20816 410604 410595.410604.410643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.47245845845 0 \N \N f 0 \N 0 88260064 0 f f \N \N \N \N 410595 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455472 2025-03-27 03:17:22.509 2025-03-29 22:39:50.231 \N I definitely prefer the type of experimentation that DOES NOT require changing bitcoin. Like ordinals. Personally I intend to focus most on my time on that type of experimentation, but not all of it. At some point I think that some potential changes reveal themselves as worthwhile and they should be pursued.\n\nI think bitcoin itself should be changed slowly, carefully and meticulously, but that’s not the same as not being changed at all, or being afraid to change it, which I think it a more precise description of what’s going on recently. https://example.com/ 1712 454036 454036.455472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9212410684786 0 \N \N f 0 \N 0 34013492 0 f f \N \N \N \N 454036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403282 2025-02-14 16:26:35.787 2025-03-29 22:39:47.61 Bitcoin needs more than just developers. It needs memers and users too. Bitcoin needs more than just developers, it needs users. \n\nUsers of software that report bugs, users of the chain that transact on it. \n\nIt needs creative thinkers to figure out new business models or improve old ones. \n\nIt needs critical thinkers to see through the meme wars and think from first principles what makes sense and what doesnt. \n\nIt needs business people that have experience running companies to help translate the message of bitcoin to all industries.\n\nIt needs marketing people who can shape the message and help builders reach wider audiences and help them explain things to the normies.\n\nIt needs privacy advocates to help educate people about the importance of privacy.\n\nIt needs UX designers to make products usable to everyone.\n\nIt needs power grid companies to expand their production and help push the humanity forward on the kardashev scale.\n\nIt needs artists to portray it and deliver the message that transcends words.\n\nBitcoin needs everyone and everyone needs bitcoin. nostr:note1qflelrs37sddhzrgnpqnme056xqeckeu4dxupcr8cwmddkf5zs0q3qjpa8\n\n\nBitcoin literally needs you.\n\nWe need more people writing code, experimenting with it, just having fun. You don't need to start a company. You don't need a brilliant idea. If you don't know how to start, read the code and submit bug fixes for the software you're already using.\n\nIf you're a dev and you're on the brink of joining or would like to but you don't know how, my DMs are always open to you. Even if I take a bit to reply, I'll help you find a task or a challenge as best as I can.\n\nnostr:note1qflelrs37sddhzrgnpqnme056xqeckeu4dxupcr8cwmddkf5zs0q3qjpa8\n\n\nAnd developers should listen to users and respond to bug reports. \n\nnostr:npub1jg552aulj07skd6e7y2hu0vl5g8nl5jvfw8jhn6jpjk0vjd0waksvl6n8n.\n\n\nAnd memers too!\nhttps://i.postimg.cc/ZYwFNT2K/Darth-BTC-snowing.gif\n\nI made that call in 2022\nhttps://darthcoin.substack.com/p/what-you-did-for-bitcoin\n\nnostr:note1zyx285dzfwdq27m43d89gvf394pgeynzcyhfqx2yvncl6cw0lsuqmpz0kg \N 6137 \N 403282 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.32043749103039 0 \N \N f 0 \N 0 22798560 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458310 2025-03-29 07:39:36.351 2025-03-29 22:39:47.61 Mining Pool Game Theory during Forks \N https://b10c.me/blog/014-mining-pool-game-theory-during-forks/ 21051 \N 458310 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 8.14363570018607 0 \N \N f 0 \N 0 210355838 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402935 2025-02-14 09:15:10.019 2025-03-29 22:39:50.23 \N Discovered a new Chipotle arbitrage - if you order a guac on the side, rather than in your burrito, you get far more guac in total. \n\nA little more extra work to spread onto your burrito and a small waste of plastic however... https://example.com/ 20563 398392 397842.398184.398382.398392.402935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7995106272657 0 \N \N f 0 \N 0 34374561 0 f f \N \N \N \N 397842 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416964 2025-02-26 00:11:51.862 2025-03-29 22:39:50.23 \N My dad would basically only play old classic rock or metal on the radio, and had me fully convinced that he knew every song that's ever existed, as if the radio was all music was.\n\nI just thought it was so cool someone could know every song in history lol https://example.com/ 21136 416918 416918.416964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4183233083617 0 \N \N f 0 \N 0 63187817 0 f f \N \N \N \N 416918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431199 2025-03-09 16:02:42.418 2025-03-29 22:39:50.23 \N Friends, it's time. Today is [part 3](https://stacker.news/items/300775) of the _Broken Money_ book club. So much geopolitical intrigue today! Such big implications for life and society! \n\nPlease stop by and share your thoughts! https://example.com/ 16970 403864 403864.431199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7250466879987 0 \N \N f 0 \N 0 110217392 0 f f \N \N \N \N 403864 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431208 2025-03-09 16:03:22.3 2025-03-29 22:39:50.231 \N I don't regard the energy used in Bitcoin mining as lost. At the global level, all that hashing energy was required to create new bitcoins, so the energy served it's purpose; the heat being a by-product. \n\nI can envisage each bitcoin as a representation and manifestation of all that global energy used in the hashing, and since bitcoins reside in the digital realm, I don't see the digital energy moniker as problematic. https://example.com/ 11776 401915 401915.431208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.16937579388991 0 \N \N f 0 \N 0 39997834 0 f f \N \N \N \N 401915 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424348 2025-03-04 02:13:03.468 2025-03-29 22:39:50.231 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **11** https://example.com/ 20179 424319 423667.423687.423704.423895.423925.423968.424192.424307.424319.424348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4252269484042 0 \N \N f 0 \N 0 132752885 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428001 2025-03-06 19:00:45.394 2025-03-29 22:39:47.609 Bitcoin Principles Applied To Parenting I initially thought of doing a glossary on the BTC principles I picked up throughout my time here. Then, I thought someone would have done it already, so where’s the creativity in me doing that? Since I seem to have carved a reputation as a spokesperson for parenting, let me try to apply these principles in the context of parenting.\n\n**1. Proof of Work**\n\nMiners need to survey the landscape and check the energy grid to determine the periods that yield the best rewards for BTC mining. They then need to invest in sophisticated machinery to get a chance of getting Bitcoin. Likewise, you need to deploy the available resources you have to bringing up your kids. From cooking and feeding to playing and showering, the list of tasks you have to complete before bedtime is endless. No wonder many parents feel that they are living from wire to wire. I would argue that parenting is more exhausting than my full-time job.\n\n**2. Labour of Love**\n\nBest illustrated by how most people don’t expect to earn profits by running their own node. It’s not just the uncertain financial rewards; it’s also the steep learning curve involved in picking up the ropes, as well as the opportunity cost Bitcoiners willingly incur. Parenting is similarly an endeavour of love. You never really understand what unconditional love is until you become a parent. @grayruby said it best, “think not ‘I have to do it’, think ‘I get to do it’,”\n\n**3. Low Time-Preference**\n\nMany Bitcoiners remain laser focused on their sats accumulation routine. They don’t think in terms of price pumps, but look at Bitcoin as a long-term asset. How much value will it gain 5-10-20 years down the road? Similarly, parents see past the repetitive chores to think about the future men and women they are raising - and even their unborn grandchildren. They think of parenting as an immortality project that will outlast them.\n\n**4. Stay Humble**\n\nBitcoiners are reminded of the need to remain humble because they realise that they can easily lose everything in a flash if they get arrogant and don’t take the necessary precautions. On the other hand, parents usually find that they are humbled by their children at some point in time. Children have no filter and say what’s on their minds, so they have a way of expressing profound observations in ways that make you pause in your tracks. Children serve as a great reminder for us all to remain authentic.\n\n**5. Value for Value**\n\nBitcoiners love how Bitcoin facilitates a decentralised economy in which they determine the value they derive from content creators and reward them accordingly. Zapping is a term many have grown fond of because it energises the spirit and sounds more equitable than tipping. Parents keenly recognise that what you put in is proportional to what you receive. Parents are their children’s first influencers, so the latter pick up all the positive (or negative!) habits modelled in front of them. Want to be a good parent? It starts with not outsourcing your child-rearing to screen time. \n\nI should follow my own advice. Time to pick up my kids now. Bye! 👋 \N 15484 \N 428001 \N \N \N \N \N \N \N \N security \N ACTIVE \N 1.44145705538083 0 \N \N f 0 \N 0 99244877 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458312 2025-03-29 07:40:26.461 2025-03-29 22:39:50.231 \N Ha! And I bet your friend was already a pretty adept dev. For someone like me, who's been out of the game for a decade, it is a fucking godsend -- 10x, for real, no lie, no exaggeration. I imagine that will asymptote as I stay in the game, but son of a bitch, it's science fiction and people are blase about it.\n\nTo say nothing of the other ways that I use it that are basically infinitely better because they are taking the place of nothing. But whatevs, I'm happy if fewer people are competing with me becoming even better at the things that I'm already good at. I'll eat that pie, too :) https://example.com/ 20062 458172 458172.458312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.01969018439642 0 \N \N f 0 \N 0 197198723 0 f f \N \N \N \N 458172 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431240 2025-03-09 16:05:40.359 2025-03-29 22:39:50.231 \N Great work there, I know some React, TypeScript, node, do you think I can contribute to mutiny wallet? https://example.com/ 5779 394884 394884.431240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.98919478722377 0 \N \N f 0 \N 0 225372594 0 f f \N \N \N \N 394884 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437972 2025-03-15 04:16:01.904 2025-03-29 22:39:50.231 \N Today will end my first full week at the new job as a marine electrician in the Shipyard. Things have gone very well so far. I expect to finish a couple jobs today, which will give me a good feeling going into the weekend. If somehow I don't finish, I'll still be happy for a weekend! I should replace my phone screen this weekend. Woohoo. And I'll do my podcast tomorrow night, live. Saturday Night LIT. And Bitcoin Brunch #1116 this Sunday!\nhttps://imgprxy.stacker.news/99JxxjKbkwt4mqHpkfXFJMmJ8sv1OsMvnLqJHmqrA6Y/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS8zUU1LNmJSLmpwZw https://example.com/ 14015 437893 437893.437972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2185112788352 0 \N \N f 0 \N 0 230094143 0 f f \N \N \N \N 437893 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423587 2025-03-03 13:22:44.135 2025-03-29 22:39:50.231 \N messaged on nostr. https://example.com/ 4314 423475 423475.423587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5612735294752 0 \N \N f 0 \N 0 182264785 0 f f \N \N \N \N 423475 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427982 2025-03-06 18:47:43.476 2025-03-29 22:39:50.231 \N I’m reading Lyn Alden’s new book Broken Money, a brief scan through it tells me I’m in for a great read. https://example.com/ 17682 427960 427960.427982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7922587208041 0 \N \N f 0 \N 0 187333161 0 f f \N \N \N \N 427960 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410646 2025-02-20 15:28:41.412 2025-03-29 22:39:50.231 \N Considering most of those 64 were losing to @ek's Hacker News bot, I don't have that much sympathy for them. Contribute more than a repost bot that doesn't zap and you'll probably be in the top 20. https://example.com/ 14037 410645 410486.410569.410638.410645.410646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9431242854622 0 \N \N f 0 \N 0 39317012 0 f f \N \N \N \N 410486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444582 2025-03-20 03:17:59.856 2025-03-29 22:39:50.231 \N Good post.\n\nWebsites which provide install instructions as `curl | bash` are also very guilty of this.\n\nSee https://0x46.net/thoughts/2019/04/27/piping-curl-to-shell/ https://example.com/ 954 444580 444566.444575.444580.444582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.268514103327 0 \N \N f 0 \N 0 247920261 0 f f \N \N \N \N 444566 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444587 2025-03-20 03:23:52.381 2025-03-29 22:39:50.231 \N Snaily prepares for battle against the establishment.\nhttps://i.ibb.co/T2RKH4W/OIG-2.jpg https://example.com/ 8541 444522 444522.444587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2399042343834 0 \N \N f 0 \N 0 177163837 0 f f \N \N \N \N 444522 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444588 2025-03-20 03:24:05.586 2025-03-29 22:39:50.231 \N Just for reference, who do you guys think is NOT a "lunatic"?\n\nCalling enormously successful / influential people "crazy" "odd" etc. is such a boring opinion. Would you rather they just sit at home and watch netflix and football? Stay in their lane? What do you think success and influence should be? https://example.com/ 21832 444384 444384.444588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.88948392457723 0 \N \N f 0 \N 0 107757212 0 f f \N \N \N \N 444384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428002 2025-03-06 19:01:38.763 2025-03-29 22:39:50.232 \N Really nice collection! Thanks.\nWill share with some pre-coiners. https://example.com/ 7818 427988 427960.427988.428002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.522127951342 0 \N \N f 0 \N 0 187247150 0 f f \N \N \N \N 427960 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408067 2025-02-18 14:53:41.986 2025-03-29 22:39:50.232 \N CLEAN SITE. https://example.com/ 15858 407838 407838.408067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.11401999278725 0 \N \N f 0 \N 0 231229247 0 f f \N \N \N \N 407838 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437985 2025-03-15 04:47:39.412 2025-03-29 22:39:50.232 \N I love this as an illustration of forces at work. XMR is overtly dangerous to state surveillance capacity -- it's an in-your-face flaunt of what the state wants to do. That will elicit certain reactions from the state, and those reactions will have price and liquidity consequences.\n\nWho can say how this will play out on the timescale of decades -- maybe XMR having to be a true grassroots cryptocurrency will work out to its benefit in the long run. But in the short and medium term, this is a predictable outcome, and it will probably get worse (e.g., more de-listings, more price shocks) before it gets better. \n\nIf btc core devs went hard at privacy, you should expect similar. Would that be good or bad? Depends on who you ask, I guess. https://example.com/ 21685 437984 437984.437985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5268929645687 0 \N \N f 0 \N 0 134522980 0 f f \N \N \N \N 437984 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450129 2025-03-23 19:12:36.806 2025-03-29 22:39:50.232 \N > What do you use Nostr for today?\n\nTo learn new about Nostr and Bitcoin.\n\n> Are you using Nostr more or less often than you were earlier this year?\n\nI used it quite a lot (reading/researching mostly), now a bit more writing than before.\n\n> Do you use Nostr for applications beyond short-form text notes?\n\nDidn't use that much, now exploring new ones.\n\n> What new applications do you want to see built on Nostr?\n\nAll of them eventually. Right now - curated video feeds for kids, topical curated feeds/relays, new app discovery services, developer community tools.\n\n> What are the emerging Nostr apps that more people should know about?\n\nnostrocket.org, highlighter.com\n\n> What needs to be improved for Nostr to continue attracting new users?\n\nOnboarding, topical feeds, topical discovery. I don't think there is 10x product yet.\n https://example.com/ 6360 450087 449878.450087.450129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.109131363035 0 \N \N f 0 \N 0 35492165 0 f f \N \N \N \N 449878 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404551 2025-02-16 00:47:39.594 2025-03-29 22:39:50.232 \N @k00b are you reading all comments from Saloon?\n\nToday I wanted to buy some beers with the amazing sats received yesterday. Thanks you guys so much. Beers are inspiring me to write more.\nBut I can't! As you know many times I suggested to convert SN account into a lndhub account so I can easily import it into Zeus or Bluewallet and use it as a normal LN wallet outiside of SN, in a grocery shop or something.\n\nSo I have to send out from SN, into another wallet, from there going to pay... too much hassle man. I want to pay my beers only with SN sats, directly.\n\nAs I suggested in other day, maybe a sticky post with "what stackers spend today their sats" and show some proof of payment. https://example.com/ 14731 404550 404550.404551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4277047145169 0 \N \N f 0 \N 0 228255290 0 f f \N \N \N \N 404550 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410611 2025-02-20 15:10:24.021 2025-03-29 22:39:50.232 \N TIL: You can call someone a butthead without calling them a butthead. https://example.com/ 844 410108 410108.410611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2891821568974 0 \N \N f 0 \N 0 238991954 0 f f \N \N \N \N 410108 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458320 2025-03-29 07:48:23.728 2025-03-29 22:39:50.232 \N Day 65 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 2963 458316 458227.458241.458248.458276.458294.458299.458313.458316.458320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7038240570506 0 \N \N f 0 \N 0 91691792 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410693 2025-02-20 16:05:49.387 2025-03-29 22:39:47.609 running full node on linux server in homelab # _intro\n\nI am using archlinux on my home server as main OS. I am running several services on it. Once I decided to run bitcoin full node. First motivation was help to network and why not. During deployment I learn a lot so I am happy that I have done it and also I did get more privacy. At begining I did used only clearnet and also forwarded port on router so other nodes could connect to mine. Then I did start using a tor and I ended with configuration that my node is using tor network to connect to other nodes {they can be hidden with onion address or clear net nodes} and accepting connection only from tor.\n\nyes, there are many tutorials how to run full node but I decided to write my journey. Maybe it will be helpful to someone ;-) and of course I am open for improvements or correction if I done something not in good way.\n\n# _tor\n\n**install** \n`sudo pacman -S tor nyx`\n\n**/etc/tor/torrc** \n\n```\nUser tor\nLog notice syslog\nDataDirectory /var/lib/tor\nControlPort 9051\nCookieAuthentication 1\nCookieAuthFile /var/lib/tor/control_auth_cookie\nCookieAuthFileGroupReadable 1\nDataDirectoryGroupReadable 1\n```\n\n**enable, so it will start after reboot** \n`sudo systemctl enable tor.service`\n\n**monitoring** \nI did add my user {I am not using root account} to tor group so I can run `nyx` program to see what is going on.\n\n# _bitcoind\n\n**install** \n`sudo pacman -S bitcoin-daemon bitcoin-tx`\n\n**init** \n\n- I have two hdd in server, second one has 1TB and is used only for NODE data, there is only one partition and it is mounted to `/mnt/node_1` \n- creating directory `/mnt/node_1/blockchain` \n- changing owner and permisions of that directory so only 'bitcoin' user can access it. Also group owner is bitcoin. \n- insert new line into fstab so disk will be mounted after reboot \n- I did add user bitcoin to group tor\n- editing systemd unit and removing datadir argument \n`sudo systemctl edit bitcoind.service` \n```\n[Service]\nExecStart=\nExecStart=/usr/bin/bitcoind -pid=/run/bitcoind/bitcoind.pid \\\n -conf=/etc/bitcoin/bitcoin.conf \\\n -startupnotify='systemd-notify --ready' \\\n -shutdownnotify='systemd-notify --stopping'\n```\n\n- I did change home directory of bitcoin user in `/etc/passwd` poiting to same directory as data is stored\n\n\n**/etc/bitcoin/bitcoin.conf** \n\n```\ndatadir=/mnt/node_1/blockchain\n\nblockfilterindex=1\npeerblockfilters=1\n\nmaxmempool=280\nmaxorphantx=40\nmempoolexpiry=240\n\ntxindex=1\n\nbind=127.0.0.1 ## if you want to accept inbound connection from another nodes over clear net then you need to set here your local IP of server if server is behind NAT otherwise public IP of server.\ndnsseed=0 \ndns=0 ## means that peers are not searching over dns, at begining this is good to have, but when node is running it store peers localy so you can disable this \nlistenonion=1\nmaxconnections=25\nmaxuploadtarget=512M\nonlynet=onion ## means that OutBound connection going to hidden services\nonlynet=ipv4 ## meand that OutBound connection going to public clearnet nodes \nproxy=127.0.0.1:9050 ## all outbound connection going to tor proxy, this apply for all network types \n\nv2transport=1\n\nprinttoconsole=0 ## logs are writen to `/mnt/node_1/blockchain/debug` file only\n\nrpcauth=EXPLOR:XYX_XYZ \nrpcauth=FULC:YZX_YZX ## see below how to create those users\n```\n\n**creating access over RPC** \nyou need this [python program](https://github.com/bitcoin/bitcoin/blob/master/share/rpcauth/README.md) \n`python rpcauth.py foo_user` will generate hash and password for user foo_user, you will insert hash into bitcoin config like this `rpcauth=foo_user:HASH_PASS` and password will be used in application which will connect to bitcoind\n\n\n# _fulcrum\n\nelectrs alternative which works better for me.\n\n**install** \n`sudo pacman -S fulcrum` \n\n**init** \n- creating directory `/mnt/node_1/fulcrum` \n- changing owner and permisions of that directory \n- editing systemd unit so fulcrum will start after bitcoind and removing datadir argument \n`sudo systemctl edit fulcrum.service` \n```\n[Unit]\nRequires=bitcoind.service\nAfter=bitcoind.service\n[Service]\nExecStart=\nExecStart=/usr/bin/fulcrum -S /etc/fulcrum.conf\n```\n\n**/etc/fulcrum.conf** \n```\ndatadir = /mnt/node_1/fulcrum\nbitcoind = 127.0.0.1:8332\nrpcuser = FULC\nrpcpassword = YZX_YZX ## created by that python program\ntcp = 127.0.0.1:50001 ## not encrypted port is open only on localhost\nssl = LOCAL_IP_OF_SERVER:50002\ncert = /docker_vols/swag/etc/letsencrypt/live/MY_DOMAIN/fullchain.pem\nkey = /docker_vols/swag/etc/letsencrypt/live/MY_DOMAIN/privkey.pem\nadmin = 127.0.0.1:58008 ## there is a fulcrum-admin program whih used this\npeering = false\nannounce = false ## not participating in network\nbitcoind_clients = 4\nbitcoind_timeout = 45.0\nworker_threads = 2\n```\n\n**enable, so it will start after reboot** \n`sudo systemctl enable fulcrum.service`\n\n**NOTES** \nI am running also nginx as reverse proxy with Letsencrypt for my domain so I am using that certificate also for fulcrum that is a reason why I am opening only port 50002. For begining you can open also 50001 and access it only in local network. I am forwarding port 50002 on router from wan to server so my wallets can connect to node when I am not at home.\n\n\n# _btc-rpc-explorer\n\nthis was bit tricky and I did spend few hours to find way which works. These are 3 simplify steps.\n\n- pull source code from github\n- build docker image\n- start container\n\ncontainer is running on host network because it is easy to connect over rpc to bitcoind and to fulcrum. maybe it could be done over 'host.docker.internal' so container could run in separate net. \nhere is docker-compose.yml \n```\nservices:\n btc-rpc-explorer:\n image: btc-rpc-explorer:3.4.0-524\n container_name: btc-rpc-explorer\n user: 1000:984\n environment:\n - BTCEXP_BASEURL=/explorer/\n - BTCEXP_HOST=0.0.0.0\n - BTCEXP_BITCOIND_USER=EXPLOR\n - BTCEXP_BITCOIND_PASS=XYX_XYZ\n - BTCEXP_BITCOIND_RPC_TIMEOUT=30000\n - BTCEXP_ADDRESS_API=electrum\n - BTCEXP_ELECTRUM_SERVERS=tcp://127.0.0.1:50001\n - BTCEXP_SLOW_DEVICE_MODE=true\n - BTCEXP_BASIC_AUTH_PASSWORD=PaSS\n - BTCEXP_NO_RATES=false\n - BTCEXP_PRIVACY_MODE=false\n - BTCEXP_DISPLAY_CURRENCY=btc\n - BTCEXP_LOCAL_CURRENCY=eur\n - BTCEXP_UI_TIMEZONE=local\n - TZ=Europe/Brusel\n restart: unless-stopped\n network_mode: host\n```\n\n**NOTES** \nI am accessing explorer over url subdomain.MY_DOMAIN.com/explorer what is done over nginx reverse proxy {SWAG}\n\n\n# _hidden services\n\nI want to access fulcrum and explorer also over TOR net so I did create two hidden services. That is done by adding following lines into config.\n\n```\nHiddenServiceDir /var/lib/tor/btc_rpc_explorer/\nHiddenServicePort 80 127.0.0.1:3002\n\nHiddenServiceDir /var/lib/tor/fulcrum/\nHiddenServicePort 50001 127.0.0.1:50001\n```\n\nAfter tor is restarted it will create file `hostname` in `HiddenServiceDir` which contain onion address for each service.\n\n# _Final NOTES\n\nI did start only bitcoind and wait until it was synced. Then I did start fulcrum and wait again until it was synced. And finally I did start btc-explorer. \n\nconnection string for wallet needs to end with :t or :s depends what connection you use. \n- In case of clearnet, I am using subdomain.MY_DOMAIN.com:50002:s \n- In case of tor, I am using asfalsfjaifjaosfj.onion:50001:t \n\nI am backing up time to time. That means that I stop all programs and rsync blockchain and fulcrum directory to external hdd. I think it is good to have some already verified state so if something happen I will not have to wait for long first sync.\n\n\n \N 8954 \N 410693 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.4832646513943 0 \N \N f 0 \N 0 61580049 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430989 2025-03-09 14:52:14.706 2025-03-29 22:39:50.232 \N I know you’ve spoken/written about your childhood in other threads, but my god you’ve been through some shit. Obviously I don’t know you personally, and I don’t know what you do outside of SN, but I think it’s wonderful how you’ve turned out, especially considering what you’ve gone through. \n\nAs I wrote this, I realized it’s really hard to not sound condescending in this statement, so I hope it’s clear that I’m not trying to be that way, but rather am trying to leave a genuine representation of my perspective. https://example.com/ 20019 429764 429764.430989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5816703196938 0 \N \N f 0 \N 0 78757485 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438000 2025-03-15 05:41:23.23 2025-03-29 22:39:50.232 \N Yeah I started off on SN by doing giveaways after learning about lightning. It was easy to see what kind of developer @k00b was based on his interactions and that made me want to continue supporting and using the site. Fast forward, now I own territory in these here parts.\n\nSN or bust. \n https://example.com/ 10013 437769 437769.438000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.17652662187344 0 \N \N f 0 \N 0 61093862 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424346 2025-03-04 02:04:37.856 2025-03-29 22:39:50.233 \N I had a friend that I worked with for about 6 years and around year 4 he got Cancer. He had wife and kids while also working alongside of me everyday.\n\nOne day I asked him, “How are you doing this?” “How are you able to work?” “Have Cancer, take care of your kids, wife and go to treatment?” \n\nHe told me point blank. \n\n“No way Cancer will get the best of me, Car!” \n\nHe was absolutely convinced that everything was going to be fine. He also was a Christian man so his faith was strong. He never complained or missed any days that I can recall, never used Cancer as an excuse. It was quite inspiring tbh, never seen anything like it.\n\nTo this day we still talk from time to time. Last message I got from him he said he was doing fine and just had his second daughter.\n\nHope this helps, I will keep you in my prayers. Honestly whenever things get me too down or I feel like complaining I remember my friend, who just willed a different outcome with his conviction and faith. God bless you, your family and your wife. https://example.com/ 17639 424164 423712.424164.424346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9366798688671 0 \N \N f 0 \N 0 103933089 0 f f \N \N \N \N 423712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444596 2025-03-20 03:36:58.642 2025-03-29 22:39:50.233 \N https://video.nostr.build/5d461884dd478dc1288e06c75d1a41d931e2ff66c41625aa7298d1dd6ed83212.mp4 https://example.com/ 2460 444522 444522.444596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6395908046771 0 \N \N f 0 \N 0 226078265 0 f f \N \N \N \N 444522 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402277 2025-02-13 16:53:14.821 2025-03-29 22:39:50.233 \N On days I want to get work done, I change my environment ever so slightly to change the tone. My PC I work at is the same as the one I use for entertainment, so this part is pretty important for me. Maybe you put up a shoji screen or change the temperature of the lights in the room, or open the blinds. Maybe just throwing on some background music.. Whatever ends up working for you.\n\nIf you have the freedom to do so, dedicate a weekday as a day to get non-work stuff done. I call these my admin days.. Days that are dedicated to doing chores, shopping, making appointments.. That sort of thing. https://example.com/ 19826 401819 401783.401819.402277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6786657308299 0 \N \N f 0 \N 0 30312909 0 f f \N \N \N \N 401783 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402300 2025-02-13 17:05:07.934 2025-03-29 22:39:50.233 \N https://c.tenor.com/_9YCK2oV7HoAAAAd/tenor.gif https://example.com/ 4487 402075 402075.402300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.68900726871748 0 \N \N f 0 \N 0 215214451 0 f f \N \N \N \N 402075 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444585 2025-03-20 03:20:07.696 2025-03-29 22:39:50.233 \N mempoolfullrbf=1 let's go!\n\nhttps://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-24.0.md#notice-of-new-option-for-transaction-replacement-policies https://example.com/ 736 433833 433833.444585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1029454427716 0 \N \N f 0 \N 0 59819613 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444553 2025-03-20 02:12:43.094 2025-03-29 22:39:50.234 \N My interest is piqued. \n\nI have tried to find past weather predictions. You are right: it's not easy. https://example.com/ 1490 443790 443790.444553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.47104571765 0 \N \N f 0 \N 0 158831487 0 f f \N \N \N \N 443790 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428160 2025-03-06 22:43:39.145 2025-03-29 22:39:50.234 \N I would sell my PoS coins for PoW coins https://example.com/ 11897 428037 428037.428160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.29856793209029 0 \N \N f 0 \N 0 94616207 0 f f \N \N \N \N 428037 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413436 2025-02-23 07:52:46.682 2025-03-29 22:39:50.234 \N Thanksss https://example.com/ 16059 413357 413357.413436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.60987696510934 0 \N \N f 0 \N 0 86863797 0 f f \N \N \N \N 413357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451365 2025-03-24 14:17:50.847 2025-03-29 22:39:50.235 \N My first decade of professional software development was working in assembly language. I suppose that I like low-level fundamental work. https://example.com/ 9655 451074 451074.451365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4721903208507 0 \N \N f 57895961 \N 1 23221259 0 f f \N \N \N \N 451074 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404569 2025-02-16 01:08:45.692 2025-03-29 22:39:47.609 Luke Dashjr said that Ordinals & BRC20 will no longer exist on Bitcoin. ![20231206_121940.jpg](https://m.stacker.news/6911)\n\n![20231206_121942.jpg](https://m.stacker.news/6910)\n\n \N 17226 \N 404569 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.9560879018422 0 \N \N f 0 \N 0 126306117 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416998 2025-02-26 01:10:16.995 2025-03-29 22:39:47.609 Try another of my poems? 🧐 Hello again, want to say that it gives me much satisfaction to have anything I write being read by people, so thanks stackers. I love it here. Last week I shared an older poem that I feel less connection to now, and I would have thought that would be the case for much of my older work. Yet this one I present today is different.\n\n![](https://m.stacker.news/33358)\n\nThe young person that wrote these words was struggling to make sense of life. In the background of a few years, I think the truth of this poem has been working over me very slowly. I was projecting my life forward, to where I am now, and hoping I wouldn't stop taking signs from the colors of the evening. I was hoping I wouldn't stop being a poet, at that time feeling the pressure of career path like a death. And it's different now, but I haven't stopped. I want to tell you what peace comes from knowing yourself, even your past and future fragments, and correctly lining them up. To expect nothing from your future self, but trace out the lines you imagine growing into, then see your shape fill in those lines...it is powerful.\n\nThis poem is also cute because it's the future I imagined sharing with my partner. And in this I was also accurate.\n\n"A hero with zero accomplishments," yep that's me. Thanks for reading! \N 691 \N 416998 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 13.3799432131886 0 \N \N f 0 \N 0 212230026 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437925 2025-03-15 01:26:42.397 2025-03-29 22:39:50.231 \N Hmmm... but Bitcoin Core does have a built in GUI wallet.\n\nAnd if you don't want to use Bitcoin Core's built in wallet, you can install a free and open source wallet (such as Sparrow or Spectre), and connect the wallet to Bitcoin Core RPC server on the same machine.\n\nThere are many options and ways to using bitcoin, and not all require payment or permission. https://example.com/ 10661 437801 437723.437801.437925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.35201104333606 0 \N \N f 0 \N 0 170346398 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438026 2025-03-15 06:29:23.992 2025-03-29 22:39:50.231 \N Yes, we have a side project. We just don't think the market is quite there or needs it at all. Because LN txns are low value, phones are perfectly good for it. https://example.com/ 18351 437993 437993.438026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.398570727382 0 \N \N f 0 \N 0 142213350 0 f f \N \N \N \N 437993 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422582 2025-03-02 15:04:42.847 2025-03-29 22:39:50.231 \N The two rows on mobile was my biggest annoyance too. https://example.com/ 3656 422537 422056.422470.422497.422499.422535.422537.422582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8735808516028 0 \N \N f 0 \N 0 65803574 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431053 2025-03-09 15:12:25.556 2025-03-29 22:39:50.231 \N Yeah I think it's a fantasy. It's not really cost effective. It makes a lot of sense for weirdos like me to repurpose older machines as heaters than it does to make specific products. \n\nThe only way this would make sense would be if it was cheaper to manufacture a mining heater than a traditional heater. https://example.com/ 1881 417974 417974.431053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2098237823679 0 \N \N f 0 \N 0 7561369 0 f f \N \N \N \N 417974 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431044 2025-03-09 15:11:53.967 2025-03-29 22:39:50.232 \N i just started in dubious battle by steinbeck. never read it before, but i loved grapes of wrath and east of eden, and it came highly recommend https://example.com/ 10862 420116 420116.431044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4112244676369 0 \N \N f 0 \N 0 206526354 0 f f \N \N \N \N 420116 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436122 2025-03-13 10:36:39.063 2025-03-29 22:39:50.232 \N * Finish my Nostr client library (almost done)\n * Finish composing at least one song for my album (one of the songs is 75% done)\n * Stack more sats (never done) https://example.com/ 2437 435891 435891.436122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0515220785601 0 \N \N f 0 \N 0 112473351 0 f f \N \N \N \N 435891 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410604 2025-02-20 15:06:08.518 2025-03-29 22:39:50.235 \N We are currently working on a concept that will bring a "send-only" LN channels to Trezor. That way, you can have a LN channel fully protected by a hardware wallet but at the same time completely secure while being offline. https://example.com/ 1092 410595 410595.410604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3956021592015 0 \N \N f 88260064 \N 1 55202723 0 f f \N \N \N \N 410595 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402414 2025-02-13 18:08:53.251 2025-03-29 22:39:50.231 \N So true @kr. Its just so much easier for us to justify our own hatred and actions when we demonize others. The older I get the more I see people as this graphic describes. None of us are good, some try more than others. So commit evil acts but aren't demons. \n\n> “No man knows how bad he is till he has tried very hard to be good.”\n\n — CS Lewis - Mere Christianity\n\n> “Why do you look at the speck of sawdust in your brother’s eye and pay no attention to the plank in your own eye? How can you say to your brother, ‘Let me take the speck out of your eye,’ when all the time there is a plank in your own eye? You hypocrite, first take the plank out of your own eye, and then you will see clearly to remove the speck from your brother’s eye.\n\nMatthew 7:3-5\nNew International Version\n\nIf we could live in this way. Try to be good, to seek first to improve ourselves before condemning others. Wouldn't it be a better world. That is not to say we do nothing when wrongs are committed. But rather we look to ourselves first so that we can more clearly see and understand.\n https://example.com/ 14278 402316 402316.402414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.00467301925804 0 \N \N f 0 \N 0 29947139 0 f f \N \N \N \N 402316 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422973 2025-03-02 20:25:59.417 2025-03-29 22:39:50.231 \N I love how you're being thoughtful about how to align incentives here, @k00b. I don't have specific opinions about changes to suggest, but I wonder how much of this is adopting existing best practices from other open source bounty programs, how much represents innovation in incentive systems, and how to judge success of this proposal.\n\nIf this breaks new ground in FOSS incentives and succeeds it could help positively influence other projects. https://example.com/ 6136 422863 422863.422973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.39799863705208 0 \N \N f 0 \N 0 94710322 0 f f \N \N \N \N 422863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410705 2025-02-20 16:16:46.599 2025-03-29 22:39:50.231 \N Might sound silly but maybe split ~bitcoin and ~lightning subs\n\nAlso ~sports I see stackers placing bets on sports https://example.com/ 4538 410681 410249.410671.410681.410705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1211265511728 0 \N \N f 0 \N 0 113506784 0 f f \N \N \N \N 410249 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430999 2025-03-09 15:05:39.291 2025-03-29 22:39:50.232 \N Happy Sunday, y'all. Smile, relax, read a book, get some sunlight and hug your family today :) https://example.com/ 20781 429764 429764.430999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.504802067637 0 \N \N f 0 \N 0 229752392 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416984 2025-02-26 00:47:39.744 2025-03-29 22:39:50.232 \N Today is sad day. Closing all of my LND channels sweeping the sats out. Will be back on LND soon as I get better hardware than a pi. It’s been fun but no more pi nodes for me https://example.com/ 5637 416983 416983.416984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.10992791622171 0 \N \N f 0 \N 0 244387949 0 f f \N \N \N \N 416983 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438013 2025-03-15 06:09:49.216 2025-03-29 22:39:50.232 \N Going to start work on a video project idea I've had for a bit now. Figured it was time to post a vague comment on SN about it to help hold myself accountable. https://example.com/ 15858 437977 437723.437854.437861.437977.438013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7863623007488 0 \N \N f 0 \N 0 136101642 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431050 2025-03-09 15:12:18.025 2025-03-29 22:39:50.232 \N That everybody will embrace it.\nI was wrong.\nFor many years I hoped and helped many people to embrace it, but in the end I realized that Bitcoin is only for brave men, not for the weak.\nWE WILL NEVER HAVE HYPERBITCOINIZATION.\nWhy?\nBecause people are dumb and idiots.\nExample here:\nhttps://m.primal.net/HlNp.mp4 https://example.com/ 21058 418438 418438.431050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1751169969751 0 \N \N f 0 \N 0 166330210 0 f f \N \N \N \N 418438 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428159 2025-03-06 22:42:48.871 2025-03-29 22:39:50.233 \N @remindme all the time that darthcoin is right https://example.com/ 1564 427448 427246.427448.428159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.616983843574275 0 \N \N f 0 \N 0 117222457 0 f f \N \N \N \N 427246 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414005 2025-02-23 15:13:14.836 2025-03-29 22:39:50.232 \N There are few videos and books about this topic.\n\nThe best book in my opinion is\n![BitcoinMoney](https://i.postimg.cc/W4GM13Xh/Screen-Shot-2023-05-28-at-1-16-28-pm.png)\n\nA good way to introduce BTC for them is to give some SATS as a Birthday / Christmas present. And they will be asking more about it in not time...\n\nAnd, if they want to spend some sats, they will need to learn how to use it.\n\n\n https://example.com/ 18269 413352 413219.413352.414005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.52921887420204 0 \N \N f 0 \N 0 67227311 0 f f \N \N \N \N 413219 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438021 2025-03-15 06:20:28.164 2025-03-29 22:39:50.232 \N Don't wish too hard for something. You might just get it. I tend to worship decentralized everything. SN shows me that a little centralization might not be so bad. Don't get me wrong. I love nostr. I just feel like I get more out of my time here. https://example.com/ 9906 437999 437966.437999.438021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.81234341199359 0 \N \N f 0 \N 0 50218880 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431075 2025-03-09 15:17:57.909 2025-03-29 22:39:50.232 \N Oh course this is the next step. These people are control freaks.\n\n* What happens if you are a woman are being chased by a violent boyfriend?\n* What happens if you need to get your child to the hospital and there is no time for the ambulance?\n* What happens if you need to speed up to avoid being hit by a reckless driver?\n* What happens if someone hacks the database that communicates speed limits to the cars and creates gridlock?\n\nI could go on. The incentives in a democracy lead to this type of bill being created. The stack of laws on the books is massive. So as a politician seeking to move up in status what do you do? Well you look at a problem or even perceived problem and propose a solution. It doesn't matter if your solution makes sense, has unintended consequences, or even makes any difference at all. What matters is that your voters think you care. That you are "doing something". \n\nWhen election time comes up this dude will point to how he tried to make the roads safer because he cares about your kids. He will say other nonsense like this and gullible people gobble it up.\n\nIts also beautiful for those that see the problems with his proposal. They can run against him saying how horrible this idea was. Or that he didn't get it passed. He's not effective.\n\nThe whole affair is tiresome.\n\nAnd for those thinking, well this is California. California is just about 5-10 years ahead of most states in their stupid legislation. Your governments are not for the most part heading in the opposite direction. Conservatives will not save you. They are just... going the speed limit. They do not recognize that the problem is bigger than "the democrats". They are part of the same problem. https://example.com/ 897 427972 427972.431075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5230332949355 0 \N \N f 0 \N 0 76577857 0 f f \N \N \N \N 427972 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431052 2025-03-09 15:12:23.614 2025-03-29 22:39:50.232 \N I’m on a record streak with my new hat! https://example.com/ 18178 418364 418364.431052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5078642258251 0 \N \N f 0 \N 0 208846198 0 f f \N \N \N \N 418364 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431054 2025-03-09 15:12:27.683 2025-03-29 22:39:50.232 \N I think you can't be creative if you are not a bit emotional. Good ideas comes from strong emotions about something.\nSo both are kind of linked. https://example.com/ 20280 417971 417971.431054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.90985203595016 0 \N \N f 0 \N 0 143084112 0 f f \N \N \N \N 417971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438020 2025-03-15 06:20:12.255 2025-03-29 22:39:50.233 \N I think the OP built [a mockup](https://github.com/jamesob/opvault-demo) of Vault, and there is [a demo of CTV](https://github.com/nbd-wtf/simple-ctv-spacechain) as well. \n\nLightning clearly could benefit from some of these improvements given how difficult self-sovereign use of LN is and how few people chose to use it that way. https://example.com/ 18231 437830 437642.437830.438020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9816583688628 0 \N \N f 0 \N 0 18277210 0 f f \N \N \N \N 437642 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431060 2025-03-09 15:12:41.685 2025-03-29 22:39:50.233 \N Straight to a Nickleback concert. Serves um right. https://example.com/ 9290 417399 417399.431060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7337763545914 0 \N \N f 0 \N 0 171566022 0 f f \N \N \N \N 417399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421305 2025-03-01 15:11:12.499 2025-03-29 22:39:47.609 The Cost of Living vs The Quality of Life Switzerland is the dearest, India is the cheapest – and the UK came in 10th and the US came in 24th.\n\nThe prices of groceries, transportation, restaurants and utilities were analysed to draw this map of the cost of living\n\n\n![](https://m.stacker.news/32560)\n\n[Source](https://www.numbeo.com/quality-of-life/rankings_by_country.jsp)\n\nTo be more precise, let's have a look at ***the cities with highest cost of living***. All are situated in countries with HCL zone. \n\n## [Most Expensive Cities By World Region](https://www.accrediteddebtrelief.com/blog/the-cost-of-living-around-the-world-in-2021/)\n\n![](https://m.stacker.news/32563)\n\n\nWhile looking at ***'Where to be Born Index Map'*** we should find an inverse relationship in these aspects. However, very surprisingly, almost all countries that have high cost of living boast high quality life standards. \n\n![](https://m.stacker.news/32561)\n\n\n### For example, if we look at Finland, Norway, Iceland and Denmark, all these countries rank among the happiest Nations globally and doing pretty good on happiness index every year. But when you compare the cost of living to quality of life there, both are on the same page. \n\nSo, whenever I see someone from the high cost of living nations announcing that there cost of living is way too much to handle, I can only scratch head to toe and ask myself, ***"why are these people dissatisfied? They are living a life of highest quality. Or, aren't they?"***\n\nKindly enlighten my perception with yours 🙏 in case you agree or disagree to the point.\n\nApology Note: Posting it here because ~charts is RIP now or may have gone in the sleeping bag.\n\n\n\n \N 1046 \N 421305 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 1.16889202731972 0 \N \N f 0 \N 0 68450908 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431005 2025-03-09 15:08:40.027 2025-03-29 22:39:50.233 \N Twitter link [here](https://twitter.com/benthecarman/status/1595395624010190850?s=46&t=PGN3o7U19B-QRVYkcgTj9w)\n\nThis is on mainnet deployed to a website that we won't leak yet since it's still very alpha. We'll write up and share more on our bolt.fun submission later today, but so happy we got this to work. A BDK/LDK node compiled to wasm making real peer connections and channels. https://example.com/ 21412 421567 421567.431005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.72419673472887 0 \N \N f 0 \N 0 201613430 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431020 2025-03-09 15:09:30.23 2025-03-29 22:39:50.234 \N You also inspired me to join. I deposited $30 and have won ~$500 using the $200 in bonus bets. Got lucky with some parlays on the PHI GB matchup. \n\nThis is my first experience on one of these apps so I’m still learning a lot \n\nEdit: to clarify, I only wagered $5 of my own money to get the bonus bets, then withdrew the rest. I’ve withdrawn my original deposit and am playing with house money only now https://example.com/ 20892 426736 426736.431020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.2912621901564 0 \N \N f 0 \N 0 20404069 0 f f \N \N \N \N 426736 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456861 2025-03-27 23:28:51.41 2025-03-29 22:39:50.235 \N How can we drive a massive wave of new bitcoiners onto stacker news?\n\n https://example.com/ 20669 456858 456858.456861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1704037112481 0 \N \N f 0 \N 0 143511544 0 f f \N \N \N \N 456858 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431014 2025-03-09 15:09:14.142 2025-03-29 22:39:50.236 \N That's rude. They prefer "Rest in Power". https://example.com/ 11491 428348 428348.431014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.66665103115243 0 \N \N f 0 \N 0 122313184 0 f f \N \N \N \N 428348 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414138 2025-02-23 16:57:39.454 2025-03-29 22:39:50.236 \N - Rewriting all `coinselector_tests` in Bitcoin Core\n- PR reviews and responding to review\n- Hopefully touching up the CoinGrinder PR\n- Optech Recap tomorrow https://example.com/ 19292 414127 414111.414116.414127.414138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5153309346452 0 \N \N f 0 \N 0 129461886 0 f f \N \N \N \N 414111 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455751 2025-03-27 09:56:02.43 2025-03-29 22:39:50.236 \N I have expressed my opinion on this. I think Saylor due to his profile is very strategic about downplaying Bitcoin as competition to the USD. I don't really fault him for this. He has to be more measured in what he says than the plebs. I don't always agree with the way he describes Bitcoin but I kind of understand why he does what he does. https://example.com/ 708 450145 24587.450145.455751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.01615222261146 0 \N \N f 0 \N 0 76616297 0 f f \N \N \N \N 24587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455502 2025-03-27 04:43:01.81 2025-03-29 22:39:50.237 \N https://microlancer.io has been mentioned in Stacker News before, but it still deserves more attention and adoption. KYC-free freelancing for Bitcoin, no ID or bank account required unlike Upwork or Fiverr. Mostly microtasks right now but you can post larger tasks (e.g. "create a website" or "edit a video") or offer your services in the "services" category. Also there is a Telegram group: https://t.me/microlancer_io https://example.com/ 4395 125253 125253.455502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0579348715494 0 \N \N f 0 \N 0 79680498 0 f f \N \N \N \N 125253 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421308 2025-03-01 15:13:57.081 2025-03-29 22:39:50.237 \N When it comes to self sovereignty, the most important concept is the ability to vote with your money AND your feet. I think this was the key takeaway from the 1997 book "The Sovereign Individual." \n\nIf the value created through your time and labor can be canceled, shut-off, or controlled, then you are not sovereign. If you are geographically constrained.... if your livelihood is tied to a specific region, then you are not sovereign.\n\nIf a government or entity can prevent you from spending your money, or from moving away, then you are not sovereign.\n\nStarting from this mindset, you can build a "sovereign individual" lifestyle. \n\nFirst, the simple concept that what you own, owns you. Minimalism enables you to vote with your money and your feet. There are a lot of great books, podcasts, blogs, subreddits, and forums dedicated to this. I've found the FIRE communities to be the most helpful, and blogs such as earlyretirementextreme.com and mrmoneymustache.com. Everyone's version of minimalism will be different. Obviously, a couple with a newborn baby won't be able to go as far as the single hitchhiking hippy. But the principles and the mindset is what matters. Living a frugal, minimalist lifestyle also frees up capital for long term savings. You have less stuff, so it's easier to up and move (vote with your feet), and you have more money so it's easier to save, donate, and invest (vote with your money).\n\nThe ability to vote with your feet means you always need to have a backup plan... a place that you will go to if things get bad enough in your jurisdiction. Countries don't want you taking your skills, labor, and money to a new jurisdiction. This incentivizes them to do better, reducing coercion and oppression. To this end, foreign passport services like planbpassport.com should be in everyone's "sovereign individual tool-belt". Quick side note: This only works when a large enough portion of the population is sovereign themselves. The thesis of "The Sovereign Individual" book is that, over the next few decades, the internet & technology (and Bitcoin) will enable individuals sovereignty more than ever before, forcing governments to grow smaller and return to a role of service rather than overlord.\n\nThe ability to vote with your money means you have to ensure that your money can't be controlled by anyone except you, and can't be easily taken by force or coercion. Imagine how a nomadic hippy, on the road with only a backpack, could secure their life's savings without trusting any third party custodian. Paper cash and gold are both poor options; cumbersome in large amounts, and too easy to steal or rob. Banks and brokerages come with jurisdictional, third party trust. Bitcoin is really the only option for such a person. Imagine such a nomadic hippy setting up a 2-of-3 multi-sig setup. One private key stored in their head (or steel plate in their bag), another stored in a Swiss safety deposit box, and one stored at a Bitcoin custodian such as Unchained Capital or Swan. \n\nNow that your long term savings is secured, select a simple lightning wallet like BlueWallet for your daily spending account. Move to an area with lots of Bitcoin adoption, or be active in your community to increase adoption. Fiat is the opposite of self-sovereignty, therefore, the Sovereign Individual has an obligation to increase Bitcoin adoption in the world. Boycott businesses which don't accept Bitcoin, go out of your way to patronize those who do. To this end, use tools like btcmap.org and the Oshi app (oshi.tech).\n\nRun a node. The company Start9 is doing far more than just Bitcoin nodes. Their personal private servers are packed full of apps for the Sovereign Individual. Store passwords, pictures, and files privately and accessible over the internet. Run your own Lightning node your Start9 Embassy so you can manage your own liquidity. The possibilities are endless for future development on these Start9 devices. Their physical nodes are small, so they can be quickly unplugged and shoved into a backpack if you need to quickly vote with your feet. \n\nFinally, remember Jocko Willink's quote: "The only way to get to a place of freedom is through discipline". https://example.com/ 20646 421291 420888.421291.421308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7317758674669 0 \N \N f 0 \N 0 82969455 0 f f \N \N \N \N 420888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431026 2025-03-09 15:10:08.232 2025-03-29 22:39:50.233 \N Shitcoin is a reason.\n\nIt's centralized and not really different than any fiat money as a result. They can and do hard fork regularly and if you don't install the new software, you are out of the "real" consensus like any other shitcoin. The "real" consensus is centrally controlled, full stop. https://example.com/ 5637 424703 424703.431026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0794723021641 0 \N \N f 0 \N 0 184425721 0 f f \N \N \N \N 424703 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424361 2025-03-04 02:50:20.247 2025-03-29 22:39:50.233 \N Dammit lost my cowboy hat after 28 days. 😭 Got moved to different work site after a month and got out of my morning routine. https://example.com/ 5377 60694 58808.60694.424361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.55165354979184 0 \N \N f 0 \N 0 62276189 0 f f \N \N \N \N 58808 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442711 2025-03-18 18:57:23.338 2025-03-29 22:39:50.233 \N Looking on the flip side 80% of office space is occupied, 69% in the worst case. The biggest issue isn't the vacancy rate, that's always been part of commercial real estate. It's debt which is only going to be made manageable through inflation. Set aside those two issues and I think commercial real estate will be ok. Even with our tech advancements there's nothing like being in the presence of other humans. https://example.com/ 18473 441057 440692.441057.442711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2735604659385 0 \N \N f 0 \N 0 192736314 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431027 2025-03-09 15:10:11.578 2025-03-29 22:39:50.233 \N I'd encourage everyone reading this to look at the conduct and manner at which Antoine has presented himself over the last year and to weigh it into his current accusations against LDK and LDK members. There's a lot that is already public if you know where to look. To me, this is more a reflection on his spontaneous actions and demands than anything about the LDK team. I have seen him voluntarily remove himself multiple times from the various LDK contributors/security lists (and even lightning itself) throughout the year. This is not stable behavior.\n\nI had respect, but this is over the top and it's burning remaining bridges for absolutely no gain but to cause even more drama. Nobody has time nor wants to deal with this. I have seen nothing but patient and considerate behavior from the LDK team throughout the year.\n\nI didn't want to mention anything but LDK is the last group that should be called out for improper behavior here. I may not know everything, but I've seen nearly every public mailing list email, discord message, and LDK issue opened or commented on, and this is my opinion based on those. People should be aware of that and consider more than just this side of the story. https://example.com/ 12245 424652 424652.431027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.44289869715951 0 \N \N f 0 \N 0 215346821 0 f f \N \N \N \N 424652 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455506 2025-03-27 04:51:02.621 2025-03-29 22:39:50.237 \N The fact that there are bitcoin specific wallets in which you can store your keys and transact in all sorts of interesting ways. I'm not in this for the investment, but a lot of alts always act like that's the point of this thing https://example.com/ 16289 455432 455413.455432.455506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3605649220906 0 \N \N f 0 \N 0 202955085 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431017 2025-03-09 15:09:22.331 2025-03-29 22:39:50.238 \N Blockstream and ACINQ are now shitcoiners?\n\nWOW https://example.com/ 20858 427771 427771.431017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.173158497693 0 \N \N f 0 \N 0 6174498 0 f f \N \N \N \N 427771 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413882 2025-02-23 14:10:00.237 2025-03-29 22:39:50.238 \N @ekzyis reporting back from ... sleeping.\n\nI felt sick on Monday so I decided to sleep. I didn't realize I would sleep for 2 days straight, lol\n\nAnd oh well, I indeed lost my cowboy hat as some already noticed here\n\nAt least the new push notification worked to tell me I lost it, haha\n\n https://example.com/ 21798 413876 413854.413872.413876.413882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8561207932265 0 \N \N f 0 \N 0 121271755 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431023 2025-03-09 15:09:40.366 2025-03-29 22:39:50.238 \N Why tag and not comment directly? If it's truly raw thoughts, keep the review in draft and continue adding comments while you review. You may find the answer by the time you're done. \n\nIf still a "need to check these things" kind of comment, be verbal about it. Nobody in dev will expect you to know every single thing about your codebase. You may even get further analysis and answers from the author. At the very least, you are honest about the delay, and are giving an opportunity for the author to speed it up. https://example.com/ 9333 430867 430489.430867.431023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9709885902099 0 \N \N f 0 \N 0 88726185 0 f f \N \N \N \N 430489 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431035 2025-03-09 15:10:45.637 2025-03-29 22:39:50.233 \N I have a growing concern over my nsec being compromised, I need a way to let my followers know I've switched npubs, and to import the note history of my previous npub to the newer one. And I'm not sure how secure extensions are when holding nsecs, just growing concerns that I'd want to be assuaged. https://example.com/ 19857 430972 430619.430794.430906.430972.431035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.66401612000166 0 \N \N f 0 \N 0 201508765 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431046 2025-03-09 15:12:00.426 2025-03-29 22:39:50.234 \N I gave @DarthCoin smallpox today.\n\n__@_'-' https://example.com/ 20969 419641 419641.431046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2355452627351 0 \N \N f 0 \N 0 191419002 0 f f \N \N \N \N 419641 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431047 2025-03-09 15:12:06.128 2025-03-29 22:39:50.234 \N Yes\n\nThe answer is yes, bugle. https://example.com/ 20939 427912 427912.431047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.760822103938388 0 \N \N f 0 \N 0 156135294 0 f f \N \N \N \N 427912 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431033 2025-03-09 15:10:26.104 2025-03-29 22:39:50.233 \N ![bitcoin-miner-cant-hear-you-crying.jpg](https://i.postimg.cc/ZKGwM10X/bitcoin-miner-cant-hear-you-crying.jpg) https://example.com/ 21672 423909 423909.431033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.98677378002346 0 \N \N f 0 \N 0 84219278 0 f f \N \N \N \N 423909 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414156 2025-02-23 17:25:09.266 2025-03-29 22:39:47.609 Answering Objections to Drivechain # Objection 1: Drivechain introduces new costs to miners\n\n__Example argument__: “DC node = more validation costs = higher minimum requirement for profitable mining. And they absolutely do gain an advantage, extra income.” [@brian_trollz](https://twitter.com/brian_trollz/status/1490042876910264329)\n\n__Me expanding on that idea__ (and hopefully not turning it into a strawman): Adding costs to miners shuts out some new entrants. Mining is already a pretty expensive field to enter, e.g. a rig with the latest asics can cost $10,000 or more. Keeping the cost of mining low allows people to mine at home. If mining becomes an ever more costly industry to enter, existing players and the very wealthy might take it over completely, giving them power to censor transactions.\n\n__My answer__: Drivechain doesn’t introduce new costs to miners. Running sidechain software is optional for every miner. One reason why a miner might choose to completely avoid it is because they earn revenue without doing anything new. Drivechain users have to pay bitcoin fees to commit their drivechain’s blocks to bitcoin. Bitcoin miners can just sit back and let those fees roll in. They *have the option* to run a drivechain node, validate its transactions, and personally commit the drivechain’s blocks to bitcoin (and thus collect fees on the drivechain in addition to bitcoin fees), but they don’t have to. They make money either way.\n\n__Another answer__: Drivechains don’t introduce sidechain costs because sidechains already exist. You can’t introduce something that’s already here. Sidechains like namecoin and rootstock, as well as [my sidechain launcher](https://github.com/supertestnet/spacechain-launcher/), already pay bitcoin miners to commit to sidechain blocks in bitcoin’s blockchain. Today, right now, without drivechain, most mining pools run sidechain software to collect fees on sidechains in addition to collecting bitcoin fees. Running sidechain software has a cost, but most pools choose to do it anyway because the revenue outweighs the cost. Drivechain is better than today’s sidechains, but drivechains don’t cost more to run than sidechains do today, and – like with today’s sidechains – they are completely optional. Only the miners who *want* to do drivechain stuff run drivechain nodes.\n\n# Objection 2: Drivechain introduces new fees for miners\n\n__Example argument__: “this is a big reason for which I'm against bip300. It creates new perverted incentives for miners to extract more value from the ordering of the transactions or reorgs besides the fees they get from layer 1.” [@zndtoshi](https://twitter.com/zndtoshi/status/1414144995175567360)\n\n__Me expanding on that idea__ (and hopefully not turning it into a strawman): Hacks and forks on a drivechain can lead some users to try to withdraw coins that other users claim are theirs. Both sides might clamor for bitcoin miners to block someone else’s withdrawal, and get hysterical and demand that bitcoin miners orphan a bitcoin block if a contentious withdrawal occurs in it. If a significant part of a miner’s revenue comes from that drivechain, that miner might listen to the drivechain’s users. Problems on the drivechain can therefore overflow to bitcoin, leading to reorgs and forks on bitcoin (hugely disruptive) to fix the drivechain’s problems.\n\n__My answer__: I agree that some miners are likely to respond to contention on drivechains and I don’t think that’s a bad thing. The practice will do them good. If the future world relies on bitcoin to process its transactions, bitcoin will have to deal with the contentious parts. Fork fights are nothing, imagine a world where nations in a real war pressure miners to orphan blocks containing payments to their adversaries. If bitcoin has weaknesses in this area, if people can pay our miners to orphan our blocks and reorg our chain, I’d like to find out sooner rather than later. Let the sidechainers try their hardest to censor transactions on bitcoin. If they succeed, that means bitcoin has a vulnerability, and we will either fix it or learn it can’t be fixed. Either is better than fleeing the fight. The fight will come, and I’d like to be ready.\n\n__Another answer__: This argument and the previous one both seem to assume that anything miners do other than mine bitcoin is bad and dangerous. Every economic action miners take will either bring profits or losses, failure or success, and either one can have an impact on miner incentives. Any new source of income for a miner, and any new cost, is a new way for someone to pressure them to do their bidding, a new way to twist the knife. But nonetheless, miners will seek out new sources of revenue – they are already doing it – and they will deal with the new costs they bring. That’s how each miner finds their edge. Drivechain doesn't "introduce" costs or fees, it recognizes that they are here and tries to leverage them to the advantage of bitcoin’s users.\n\n# Objection 3: Miners can steal\n\n__Example argument__: “The miners control withdrawals from drivechain to main chain. Essentially miners can steal coins if they want, which is not possible on main chain.” [@vega113t](https://twitter.com/vega113t/status/1069568772837658625)\n\n__Me expanding on that idea__ (and hopefully not turning it into a strawman): Drivechain funds can be withdrawn to any bitcoin address as long as 51% of miners approve the withdrawal. This is supposed to be used by drivechain users to request that miners process a withdrawal of the user’s own coins to the user’s own bitcoin address, but nothing stops miners from withdrawing all the money in a drivechain and sending it to themselves. Therefore drivechain is essentially a new form of custody, and if it gets into bitcoin that sends a bad message. It says custody is fine, custody is a scaling solution, custody is approved by a consensus of bitcoin nodes, and at that point you might as well tell everyone to use coinbase.\n\n__My answer__: You can make something an option for those who want it without recommending it for general use. I wouldn’t use drivechain if it was an option because I don’t want 51% of miners to custody my money. For a similar reason, I don’t use current sidechains, where some percentage of a fixed federation holds all the money. But that’s my personal preference. Even though I don’t use current sidechains, I think it’s good that people have the option to use them, notwithstanding that federated pegs are a type of custody. I want them to have the same option to use drivechain’s miner-enforced peg mechanism even though it’s *also* a type of custody. That doesn’t send the message that custody is recommended, only that freedom is a good thing. If you decide you want to use a drivechain, I don’t want to stop you, just inform you of the tradeoffs.\n\n# Objection 4: There are no compelling use cases for drivechain\n\n__My answer__: It seems to me that the compelling use case is to use bitcoin on three sidechains: one with monero’s privacy, one with the additional scripting functions of liquid or ethereum, and a "big block" one. (There are a few others but those are the only ones I hear lots of people say they want.) It’s true that you can already use bitcoin on current sidechains that have these properties, but in current sidechains the "peg out" mechanism relies on the honesty of a fixed federation, and some people think having 51% of miners hold the money is an improvement.\n\nI personally think it’s an improvement in terms of censorship resistance. In a federated peg, the individual members of the federation can be corrupted or even eliminated by powerful forces of governments and corporate interests, and the security of the federation can be silently degraded in this way. With miners, when one leaves, another takes their place, and so the set of miners changes dynamically, even daily. Therefore drivechain gives us meaningfully better sidechains than the ones we have today, and I think that’s a good thing, because I’m a fan of tools for greater censorship resistance.\n\n# Objection 5: I don’t personally want to use drivechain so I have no incentive to help activate it\n\n__My answer__: Freedom is the incentive for me. I’ve reviewed bip300 and decided that the code change is simple and harmless to me, it brings new revenue to miners, and some people want to use it to make better sidechains than the ones we have today. It seems like a good deal. Also, the very act of bringing in new freedom and new options can also bring in new users. That benefits all of us because the more users there are in bitcoin, the greater its network effects. A monetary system with more people, all other things being equal, is better than a monetary system with fewer people, because it means you can transact with more people and have consensus on a base monetary unit. So I support drivechain and am happy to help people test out the code. Let me know if you want to try a sidechain on the bip300 testnet.\n \N 699 \N 414156 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.1851804415455 0 \N \N f 0 \N 0 140647678 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421335 2025-03-01 15:28:29.71 2025-03-29 22:39:47.61 Bitcoin: What Does Mainstream Economics Have to Say? | Article Review **Bitcoin: What Does Mainstream Economics Have to Say? | Article Review**\n\nThis is a non-technical review of ["Bitcoin: What Does Mainstream Economics Have to Say?"](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4744828) (2024), by Joshua Hendrickson, an economics professor at the University of Mississippi.\n\nThe paper has not been published at a peer-reviewed journal and is currently a working paper available on SSRN.\n\nSpecial thanks to @denlillaapan for pointing this article out to me.\n\n## Overview\n\nThis is a mostly non-technical paper written by a mainstream economist about what mainstream *economics* (not mainstream *economists*) has to say about Bitcoin. \n\nThe distinction between *economics* and *economists* is important because, as the author points out, many economists have dismissed Bitcoin without actually having taken a fair look at it. Hendrickson's argument is that despite the dismissiveness of most economists, *mainstream economic tools* still have a lot of useful things to say about Bitcoin, and I agree.\n\nThe paper is organized according to the following sections:\n\n- Section 2 discusses what money is and whether Bitcoin satisfies the properties of money.\n- Section 3 discusses valuation models for Bitcoin.\n- Section 4 discusses whether Bitcoin can be "sound money"; that is, whether the real exchange rate between Bitcoin and goods can be stable.\n- Section 5 discusses whether Bitcoin can really be used to tame government deficits and thus make it harder for governments to finance war.\n\n## Does the author understand Bitcoin?\n\nThis author demonstrates a clear understanding of Bitcoin. They are clearly a Bitcoiner themselves. Many academic papers will a give decent, but glossed over explanation of Bitcoin, but this author is aware of the low-level technical details, even correctly using terms like "unconfirmed transaction", "nonce", and "broadcast to nodes on the network".\n\n## Takeaways for Bitcoiners\n\nThis paper should be part of every Bitcoiner's standard orange-pilling toolkit. The paper is scholarly and credible enough to not be dismissed outright, but it's written in simple enough language that non-economists would be able to understand.\n\nIn particular, I found the following sections useful:\n\n- Section 2 on "what is money?" and "can Bitcoin be used as money?" is foundational. It establishes that, historically and theoretically, money is simply a record-keeping device that people can trust. The author goes through a number of reasons why Bitcoin satisfies that property.\n\n- Section 3 on "What is Bitcoin worth?" offers estimates of Bitcoin's present value based on a different scenarios and modeling assumptions. The range is pretty wide with estimates ranging from $47,000 to $1.3 million. Of course, that's in present-dollar terms. If fiat continues to devalue then the nominal value of a Bitcoin will continue to rise. Bitcoiners interested in valuation models of Bitcoin will find this section worth checking out.\n\n- Section 4 on "Can Bitcoin be sound money?" is also worth a read, especially for Bitcoiners interested in L2 scaling solutions like Lightning or Fedimint. It discusses Bitcoin's role as money under two scenarios:\n\n - A Dollar Standard world where goods continue to be denominated in dollars but Bitcoin is actively traded\n - A Bitcoin Standard world where goods are denominated in Bitcoin\n\n One of the takeaways is that in a Bitcoin Standard world, Bitcoin-denominated price levels will decline as real productivity goes up and the supply of Bitcoin remains fixed. The author envisions the emergence of Bitcoin-backed banks that issue private bank notes backed by Bitcoin. These notes will be traded in a competitive market for bank notes, much like the competitive banking equilibria promoted by George Selgin. Fedimints may be one of the ways such a phenomenon is emerging in the real world. The paper also points out that Hal Finney envisioned the same thing, quoting:\n\t\n\t> Actually, there is a very good reason for Bitcoin-backed banks to exist, issuing their own digital cash currency, redeemable for bitcoins... I believe this will be the ultimate fate of Bitcoin, to be the "high-powered money" that serves as a reserve currency for banks that issue their own digital cash. Most Bitcoin transactions will occur between banks, to settle net transfers."\n\t\n- Lastly, Section 5 throws some cold water on some of Bitcoiners' more optimistic predictions. In this section, the author evaluates the claim that Bitcoin can make it harder for the state to finance wars. He points out that, historically, being on a gold standard didn't prevent governments from finding creative ways to finance wars, and therefore he believes that governments will similarly find creative ways to finance wars even on a Bitcoin Standard. \n\n The historical perspective is well taken and well appreciated, but I can't help but wonder whether the analogy holds. As Bitcoiners often point out, Bitcoin is much more portable and much harder to confiscate than gold. It is much easier to conduct peer-to-peer transactions directly using Bitcoin, without a third party intermediary and without the government knowing. How easy would it be for the government to suspend the usage of Bitcoin as they could for the convertibility of gold? I would argue that yes, governments will find creative ways to finance wars (as they always have), but a Bitcoin Standard probably makes it a lot more difficult than with either fiat or gold.\n\t\n\t\n## Conclusion\n\nThis isn't a typical academic paper because it doesn't say much that is new. The paper doesn't develop any new models or theories, nor does it present any new empirical results. What the paper does do is offer a solid, historically and theoretically-grounded explanation and defense of Bitcoin using the standard tools of economic discourse.\n\nI recommend every Bitcoiner to bookmark this article and keep it in their back pocket for any time you might need to send someone a defense of Bitcoin that's a bit more mainstream and neutral-toned than your typical Bitcoin influencer like Saylor or Saif.\n\n\n \N 21180 \N 421335 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 25.1520156218853 0 \N \N f 0 \N 0 39347287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455020 2025-03-26 17:39:46.634 2025-03-29 22:39:47.61 Sunday Survey: Who are the most dangerous enemies of Bitcoin? \N \N 770 \N 455020 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 9.59375655720514 0 \N \N f 0 \N 0 191802609 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421427 2025-03-01 16:29:15.582 2025-03-29 22:39:50.234 \N Sorry, that was me, I just spun up a small node for some micropayments. https://example.com/ 14503 421025 420895.421025.421427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6361204149474 0 \N \N f 0 \N 0 62846302 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404379 2025-02-15 20:28:37.696 2025-03-29 22:39:50.234 \N Maybe I'll create a merch sub ...\n\nI've been fantasizing about mapping a buy/sell experience into our post/thread format\n\n- each item for sale is a post\n- comments are one of\n - orders where you can put in shipping/quantity like a comment and they will be private ... and status/tracking can be provided within the thread\n - public questions/answers\n - reviews\n- ranking could either be based on quantity sold or sat revenue or reviews\n\nAbsent a merch sub @supertestnet has been giving me eyes about creating a [Magic Webstore](https://magicwebstore.xyz/onboard.html)\n https://example.com/ 20922 404270 404270.404379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6260135115795 0 \N \N f 0 \N 0 193514819 0 f f \N \N \N \N 404270 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 420739 2025-03-01 01:49:26.25 2025-03-29 22:39:50.234 \N Here are some from a couple languages I understand and some extra:\n\nUnited States: "Bite the bullet"\nMeaning: To face a difficult situation or to make a difficult decision with courage.\n\nGermany: "Da liegt der Hund begraben"\nLiteral Translation: "That's where the dog is buried"\nMeaning: That's the crux of the matter.\n\nRussia: "Вешать лапшу на уши"\nLiteral Translation: "To hang noodles on one's ears"\nMeaning: To deceive someone or tell them lies.\n\nFrance: "Donner sa langue au chat"\nLiteral Translation: "To give one's tongue to the cat"\nMeaning: To give up guessing.\n\nIndia (Hindi): "अपनी बिल्ली, सबसे मीयाँ"\nLiteral Translation: "One's own cat is always a pet"\nMeaning: People always think highly of their own possessions or family members.\n\nNow give me your sats @ekzyis https://example.com/ 976 420466 420466.420739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2728174917924 0 \N \N f 0 \N 0 128519651 0 f f \N \N \N \N 420466 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431065 2025-03-09 15:13:22.037 2025-03-29 22:39:50.234 \N > I have a strong belief that society will work the best when everyone has able to at least have access to basic need such as food, a home, education and healthcare\n\nYeah, everybody can agree on that. Socialists think that the state is better at providing this than a free market.\n\n> The alternative is to spend even more on fighting crime, imprisonment and all kinds of disturbance. \n\nSee, that's the socialist in you, and an expression of how close all western countries are to socialism. You and the states can only think of spending more to solve those problems, that's why there's a need for a state to redistribute.\n\nMeanwhile, rational people think that the government should shrink, spend less, and that a free market would be the best to provide the goods the market wants. https://example.com/ 18829 417306 417306.431065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7725857114569 0 \N \N f 0 \N 0 216948730 0 f f \N \N \N \N 417306 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450382 2025-03-23 22:50:03.06 2025-03-29 22:39:50.234 \N >Running bitcoin\n\nHal Finney \n\nhttps://twitter.com/halfin/status/1110302988 https://example.com/ 1465 448010 447903.448010.450382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7769572740027 0 \N \N f 0 \N 0 246596152 0 f f \N \N \N \N 447903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444569 2025-03-20 02:47:18.464 2025-03-29 22:39:50.234 \N Shower thought:\n\nBecause they are part of **territories** on SN, pinned posts should be called **landmarks**\n\nor maybe landmarks can be something else, like widely zapped, highly valuable posts that each territory can elect to showcase as a "this is the kind of content were about here" "this post is our magnum opus" "this is representative of our culture and traditions here"\n\n🤔 https://example.com/ 21620 443577 443577.444569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.10313789906363 0 \N \N f 0 \N 0 754694 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431064 2025-03-09 15:13:20.064 2025-03-29 22:39:50.235 \N [![SN-vader.jpg](https://i.postimg.cc/gjWNYMkf/SN-vader.jpg)](https://postimg.cc/34tg1FGB) https://example.com/ 701 417331 417331.431064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4728339639808 0 \N \N f 0 \N 0 212241340 0 f f \N \N \N \N 417331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421343 2025-03-01 15:32:47.487 2025-03-29 22:39:47.609 Apple unveils M3, M3 Pro, and M3 Max, the most advanced chips for a PC \N https://www.apple.com/newsroom/2023/10/apple-unveils-m3-m3-pro-and-m3-max-the-most-advanced-chips-for-a-personal-computer/ 1571 \N 421343 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.89549922604034 0 \N \N f 0 \N 0 127959262 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438024 2025-03-15 06:27:59.935 2025-03-29 22:39:47.609 Technology featured on Mr. Robot # WARNING: (POTENTIAL) SPOILERS AHEAD\n\nI've been watching the television show [Mr. Robot](https://www.imdb.com/title/tt4158110/) over the last few months, and I am nearing completion. I will try not to spoil anything, but to give a quick high level introduction of the show: it follows a cyber-security engineer named Elliot who has severe anxiety, a very active inner monologue, and likes to put his hacking skills to use. Various events take place related to online privacy and security, hacking - both online and "IRL", etc. I think it fits right in to the stacker community, so I am surprised it hasn't been discussed more here.\n\nAs I've been watching, I've noticed several key pieces of technology that are referenced/used in the show, and that play a significant role, in one way or another. One thing I really like about this show is how its technological references are very accurate. Nothing's worse than watching a tv show or movie that depicts "hacking" and it's just some idiot slapping their keyboard for five seconds and then "I'm in."\n\nNow, I can't say that the show is 100% accurate. Obviously, it's a work of fiction. But, in any case, they do get a lot of things right. I'd like to briefly touch on some of the key pieces of technology I noticed.\n\n## Kali Linux\n\n> Kali Linux is an open-source, Debian-based Linux distribution geared towards various information security tasks, such as Penetration Testing, Security Research, Computer Forensics and Reverse Engineering [^1]\n\nThere are numerous scenes in the show that highlight Elliot and his colleagues using Kali to do their hacking work. A slogan of Kali is "The quieter you become, the more you are able to hear", as you can see on the desktop of the operating system.\n\nKali ships with a ton of OOTB software installed that would be well suited for someone looking to hack their way into a target system. If you're interested in learning to become a [white hat]() (or other colors, the choice is yours), it's likely that you'll run into Kali as you work on that path, and that it will help you along the way. Having the right tools in your toolkit is essential, and Kali is a good starting place for that.\n\n## Python\n\nTo put it succinctly, [Python](https://www.python.org/) is used all over the place in the show. We as viewers often get a peek at characters' monitors, preparing scripts to perform one hack or another, and Python is almost always the language of choice. It's no surprise, given that Python is one of the world's most popular programming languages[^3], especially for scripting with it's wide variety of packages available on [PyPI](https://pypi.org/) and other indices.\n\nIf you're looking to learn programming, Python is a great choice. Like above with Kali, if you're looking to learn hacking skills, you're very likely to learn with Python.\n\n## Raspberry Pi\n\nThere is a critical moment in the show where a Raspberry Pi device is used to solve a very specific problem. Without giving too much away, the small physical footprint, ease of programmability, and access to hardware ports made the device ideal to perform a certain hack.\n\nI actually found the choice to use a Raspberry Pi in this show to be unexpected. If you've been around stacker news a while, you'll see that many people don't actually care for them very much, for a plethora of reasons. I think some of the major complaints include value per price (too expensive for what you get), and lack of being fully open source:\n\n> The Raspberry Pi's design and schematics are not entirely open-source. While the software running on the Pi is open (like Linux distributions), the hardware, especially the Broadcom chip, is proprietary. However, its philosophy and widespread adoption make it an integral part of the open hardware movement [^2]\n\nI would have expected the show to use an Arduino instead, but I suspect Raspberry Pi had more name recognition and it would mean more to viewers of the show.\n\nRegardless, I thought it was neat to see the Raspberry Pi make an appearance, having used them for home projects in the past and enjoyed my experience with them.\n\n## Signal\n\nI didn't notice it early on in the show (maybe I missed it, maybe it wasn't there?), but the second half of the show highlights the characters using [Signal](https://signal.org/) to communicate with each other. Honestly, it almost feels like product placement to me. But, with Signal's claims to verify that your communications are not being intercepted by a third party, it aligns with the characters in the show and their preference for online privacy. I won't get into the pros and cons of Signal, you can search SN for that and find a wealth of discussion. I personally don't have any experience with Signal, so any discussion would not be verified on my end, anyway. I just thought it was noteworthy given how much this community prioritizes online privacy.\n\n## Bitcoin\n\nLast but certainly not least, our favorite technology gets many mentions throughout the storyline. In some ways, I think the show paints a bad picture of bitcoin, when it tells us about a certain character's online marketplace for all sorts of illegal and illicit goods and services only accepting bitcoin as payment - furthering the stigma that bitcoin is only used by criminals. There are other contexts where bitcoin is described as a leading contender (fighting against one other distinct opponent) for a worldwide currency, a hyperbitcoinization-like perspective. I won't share any more, to help avoid spoilers, but nevertheless, there are plenty of mentions and references that I think this community will enjoy watching.\n\n## Conclusion\n\nI am certain there are other technologies that I've overlooked, but these five caught my attention. For some reason, I felt the need to share here with you all. I didn't go too deep into any of them, but I'd encourage you to do further research if any of them seemed interesting to you.\n\nBig shout-out to @ek for recommending the show to me. If any of the above caught your attention, I highly recommend you check the show out, it's fantastic!\n\n[^1]: [Kali Linux homepage](https://www.kali.org/)\n[^2]: [An article](https://blog.ossph.org/introduction-to-open-source-hardware-raspberry-pi-arduino-and-more/#:~:text=The%20Raspberry%20Pi's%20design%20and,of%20the%20open%20hardware%20movement.) covering open-source hardware like Raspberry Pi, Arduino, etc.\n[^3]: [2023 Stack Overflow Survey](https://survey.stackoverflow.co/2023/#technology)\n \N 663 \N 438024 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.36464573487867 0 \N \N f 0 \N 0 130912903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458356 2025-03-29 08:19:45.573 2025-03-29 22:39:50.234 \N Hi Tony, we deeply valued the time you spent talking with us, which was a primary driver in developing the channel balance data deletion scheme. \n\nWe're obsessive about considering user feedback and I'm sorry that you felt we dismissed you. We didn't and used it to inform our backend development, specifically so that we can protect transaction-level privacy in the event of a subpoena.\n\nEven if you built that feature into Mutiny, we'd gladly supply you with information so that you can make better decisions about whom to connect to, or not, in this lightning network ecosystem. https://example.com/ 5703 458347 458347.458356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.441575590239 0 \N \N f 0 \N 0 99739217 0 f f \N \N \N \N 458347 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423066 2025-03-02 23:29:45.868 2025-03-29 22:39:50.234 \N That's good to hear. What would you use lightning address aliases for? Anything that wasn't mentioned above? \n\nUnderstanding all the potential use cases will help me build a better product if I push forward with this. https://example.com/ 10638 422842 422587.422678.422842.423066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7780257202056 0 \N \N f 0 \N 0 141166240 0 f f \N \N \N \N 422587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455619 2025-03-27 08:18:35.628 2025-03-29 22:39:50.234 \N I've started to realize that a really good UX around non-custodial mobile LN wallets is further away than many people think. I don't think its impossible, but it's a very challenging technical problem. That said, I'm glad some very smart people are working on it. https://example.com/ 20062 455413 455413.455619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9679346873584 0 \N \N f 0 \N 0 38936993 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428157 2025-03-06 22:39:49.817 2025-03-29 22:39:50.235 \N Could Damus be compiled to WASM and simply be a web app ? https://example.com/ 17838 427318 427246.427318.428157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.954803268107 0 \N \N f 0 \N 0 124632902 0 f f \N \N \N \N 427246 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455539 2025-03-27 05:56:55.182 2025-03-29 22:39:50.235 \N This is specifically why I don't use Twitter. Maybe it's the algo showing me similar people, but the whole space seems like an intellectual circle jerk. Everybody reading and citing the same sources.\n\nYour post instantly brought to mind one of my favorite books by computer scientist Gerald Weinberg - Weinberg on Writing: The Fieldstone Method.\n\nHe had a quirky obsession with building stone walls, and really milked that knowledge for use in programming and writing. \n\n> Drawing an analogy to the stone-by-stone method of building fieldstone walls, Weinberg shows writers how to construct fiction and nonfiction manuscripts from key insights, stories, and quotes. The elements, or stones, are collected nonsequentially, over time, and eventually find logical places in larger pieces.\n\nI found the book most useful in absorbing the way he thinks in this way - snatching insights from one craft to use in another. Writers on the internet now are obsessed with zettelkasten, but seems nobody reads this book which emphasizes an emotional element to deciding what information is worth capturing. \n\nPersonally I try to follow one interest into a related space that I normally wouldn't go.\n\nI lived on the ocean last year and many mornings would walk 40 minutes to check the surf, only to get skunked regularly. That got me studying oceanography textbooks and math formulas of waves to make better predictions for ideal days to surf.\n\nWhen I lived in the mountains I was hiking a lot and found myself in sketchy situations with relatively close lightning strikes. Scared the crap out of me. I ended up taking a meteorology course on Wondrium (The Great Courses company) which I found really enriching.\n\nRecently went to the planetarium in Bogotá which got me jazzed about not only watching the sky but also mythologies and worldviews of different cultures. It's really interesting to see the same star patterns interpreted in different ways, with different stories attached.\n\nI look for things that are all around me but I know little to nothing about and think "how much richer would my daily experience be if I understood even a little about this?"\n\nThings like the weather, plants/ botany, architecture. I'm a complete dunce on those topics and it's like I'm waking around with blinders on now.\n\nHunting mushrooms became a favorite hobby of mine for a while too when I lived in a great area for that. It's really addicting, and you get a lot of time in the woods with your thoughts. Developing a visual habit of scanning/ noticing things definitely bled into other areas of my life.\n\n https://example.com/ 21631 455527 455527.455539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5602235907877 0 \N \N f 0 \N 0 172909377 0 f f \N \N \N \N 455527 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455631 2025-03-27 08:33:13.03 2025-03-29 22:39:50.235 \N I'm thinking about some kind of civil asset forfeiture program. Issue legal orders seizing any bitcoin that are alleged to have been used in the commission of a crime. Then bitcoin holders would have to prove their specific bitcoin were not used in commission of a crime. \n\nFor small holders it wouldn't do much, since no one is declaring their bitcoin. However, the SEC could require public companies to only hold or transfer "clean" bitcoin. That would make it much less attractive to buy or hold bitcoin. https://example.com/ 11263 455231 455231.455631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5349542938475 0 \N \N f 0 \N 0 94604226 0 f f \N \N \N \N 455231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408096 2025-02-18 15:04:45.152 2025-03-29 22:39:50.235 \N I work on core. This is meant as an amusing way to point out an issue and why it's very important to support truly free & open source UI's instead of just the protocol stuff. If the only way that non-technical people can use bitcoin is through corporate API's because we didn't value building out these non-corporate UI's, we didn't do anything good here. Support projects like sparrow, and the bitcoin core gui https://bitcoincore.app :) https://example.com/ 20812 408071 407903.408071.408096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3637654364713 0 \N \N f 0 \N 0 149576232 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424358 2025-03-04 02:40:11.737 2025-03-29 22:39:47.609 Should I mix my KYC-bought Bitcoin? I have some bitcoin bought on a KYC exchange in a cold wallet, should I use a mixer to increase the privacy of my stack? What are the pros and cons of doing that? \N 14472 \N 424358 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 14.4679141666664 0 \N \N f 0 \N 0 182473771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455643 2025-03-27 08:40:01.881 2025-03-29 22:39:50.235 \N Food court kiosks are the best way to use SN\n![foodcourt.png](https://m.stacker.news/22389)\n@gnilma 😂 https://example.com/ 11328 455413 455413.455643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3570287864702 0 \N \N f 0 \N 0 228734905 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424366 2025-03-04 02:58:07.575 2025-03-29 22:39:50.235 \N I've routinely done $4000+ transactions to Bull Bitcoin (Canada). I also recently sold ~$1500 worth of sats over Lightning at an OTC brokerage in Hong Kong. It's really underrated how reliable the Lightning Network has become.\n\nAnd imagine what we can do once all these channels go up 10x in dollar capacity during the coming bull market! https://example.com/ 20152 424362 422587.424362.424366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.12855683434218 0 \N \N f 0 \N 0 56765535 0 f f \N \N \N \N 422587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422627 2025-03-02 15:31:36.762 2025-03-29 22:39:50.235 \N Red flags for **SUS**:\n\n- Word salady arguments with no real substance\n- Appealing to authority\n- Attacking the character of critics instead of their arguments\n- Likes to spend time with / be seen with celebrities and other public figures\n- Too confident, too fast (e.g. a lot of young CEOs)\n- Hews to all the popular narratives in society \n- Focus on the what instead of the how and the why. Examples:\n - We promise X% return vs. This is how we make returns\n - Your funds are safu vs. This is how we keep your funds safe\n - Bitcoin is going to the moon vs. This is why Bitcoin will win\n\nAnd this is a big one:\n- I can predict what they're gonna say before they're gonna say it. This is true for **so many** politicians and influencers... just by knowing who their audience is and the type of persona they're trying to represent, you can always guess their positions. If you can always guess what a person is gonna say, they add no new information to you. People I trust are the ones who sometimes surprise me, and who appear to be able to form independent, coherent thoughts that they arrived at on their own.\n\n https://example.com/ 16353 422060 422060.422627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3614160538361 0 \N \N f 0 \N 0 171158075 0 f f \N \N \N \N 422060 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451431 2025-03-24 14:46:58.938 2025-03-29 22:39:50.235 \N It was a stat I saw you post about SN! https://example.com/ 20906 450784 450240.450784.451431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0398197184436 0 \N \N f 0 \N 0 4640849 0 f f \N \N \N \N 450240 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450357 2025-03-23 22:11:08.623 2025-03-29 22:39:50.236 \N Lightning will be a must given the typical amounts of his sales.\n\nI'll tell you what I do with my local cafes: begin with some custodial LN option. Could be WoS, LightningTipBot + Bluewallet, a wallet in the demo server of LNbits. You set him up in 5min.\n\nAnd then tell him: use this, and whenever you have an amount that would hurt to lose, call me again. This amount depends on him. Could be $100, could be $1000, could be $10000.\n\nAnd then, on the next visit, you give him the talk on custodial vs non custodial and you help him swap his funds out to some cold wallet he controls.\n\nWhy this way? Because, in my experience, if you try to teach them how to do things perfectly and fully sovereign on day one, they simply won't do it. Too much effort to accept Bitcoin when they probably won't get even 1% of revenue through it.\n\nOn the other hand, if you set them up easily, you get them rolling and, when they grow that initial stack, they will have a strong motivation to learn more. https://example.com/ 21734 450354 450263.450326.450354.450357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3549205246778 0 \N \N f 0 \N 0 249346960 0 f f \N \N \N \N 450263 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450360 2025-03-23 22:13:31.869 2025-03-29 22:39:50.236 \N TLDR - YES. Making it mandatory would encourage even higher quality content instead of (what seems to be happening now more often) blatant attempts at sat farming.\n\nMachine learning/ChatGPT TLDR - NO. FUCK NO.\n\nRead Dune and the reasoning behind why computers were outlawed, it makes a lot more sense than it sounds. https://example.com/ 12921 450359 450359.450360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3678016629978 0 \N \N f 0 \N 0 50011820 0 f f \N \N \N \N 450359 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428189 2025-03-06 23:34:00.634 2025-03-29 22:39:50.236 \N My biggest question is... how can any of this data be validated?\n\nJust thinking about this. I have more confidence that the ETFs have the BTC they are supposed to have than I have confidence in any of the gold stats. More doesn't mean 100% but it would be far harder to fake BTC in ETFs than gold held by state actors.\n\nIf I'm wrong it is likely because I'm ignorant of how gold reserves are validated. There has to be more than trust me bro. https://example.com/ 4862 427934 427934.428189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.665224563839537 0 \N \N f 0 \N 0 87018004 0 f f \N \N \N \N 427934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444568 2025-03-20 02:46:48.459 2025-03-29 22:39:50.236 \N I would lean towards (2) -- I think a finite monetary supply was a top-line goal for Satoshi, and it just so happens that imposing this constraint led to great simplifications of what came before. Check out [this talk](https://www.youtube.com/watch?v=RH12p2G1G98) where I expand on this claim. https://example.com/ 1090 444365 444365.444568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.60052978501395 0 \N \N f 0 \N 0 11861178 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408064 2025-02-18 14:52:29.135 2025-03-29 22:39:50.236 \N Old men in power\nClashing in pointless debate\nFresh voices unheard https://example.com/ 10821 408026 407903.407928.407976.408016.408026.408064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.61046312395353 0 \N \N f 0 \N 0 186332546 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402349 2025-02-13 17:35:18.432 2025-03-29 22:39:47.61 NYCB- Nothing To See Here Again I checked in on CNBC this morning. The talking heads are hardly discussing it. You would think this would be the biggest story. My guess is NYCB is quickly taken over by another bank in a government arranged bailout by Monday. \n\nBank bailouts are becoming a tradition this time of year. \n\nhttps://www.cnbc.com/video/2024/02/29/nycb-says-it-identified-material-weakness-in-internal-loan-review-controls-announces-new-ceo.html \N 16956 \N 402349 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 22.5133460099672 0 \N \N f 0 \N 0 95828041 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436134 2025-03-13 10:46:20.494 2025-03-29 22:39:50.235 \N What started out as improving rendering performance ... led to me refactoring much of the code base and upgrading many of our dependencies last week ... that deployment failed so now I'm upgrading the remaining dependencies and other broad brush things that are too numerous to enumerate.\n\nThe next few changes we'll do will be big so it's nice to "clean our room" first. https://example.com/ 17183 436120 436028.436100.436109.436114.436117.436120.436134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.12962616024391 0 \N \N f 0 \N 0 155665053 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402380 2025-02-13 17:52:54.127 2025-03-29 22:39:50.235 \N nice work siggy. \n\n"Keep the unbanked unbanked" gonna remember this one https://example.com/ 19117 402378 402091.402299.402326.402369.402374.402378.402380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3883522542032 0 \N \N f 0 \N 0 130703024 0 f f \N \N \N \N 402091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458013 2025-03-28 21:24:35.687 2025-03-29 22:39:50.235 \N Been putting together [LNbits marketplace](https://360swim.com/ln-market) https://example.com/ 14260 457988 457845.457897.457988.458013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4450226232251 0 \N \N f 0 \N 0 237591079 0 f f \N \N \N \N 457845 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458067 2025-03-28 22:55:06.461 2025-03-29 22:39:50.235 \N Fedi\nMiniscript\nBolt 12 https://example.com/ 1769 457892 457267.457892.458067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6419267373629 0 \N \N f 0 \N 0 219652581 0 f f \N \N \N \N 457267 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427284 2025-03-06 09:29:22.585 2025-03-29 22:39:50.236 \N The views of life by modern men and women has changed considerably, first they want a career, life experiences and freedom from the expectations of society, only problem is they wake up at 43 with no kids and desperately sign up to a dating site hoping to find what society expected from them 20 years ago,\n\nSchool life is changing with massive numbers of teachers leaving the profession, current classroom parrot fashion repetitive education had it's place when the authoritive figure stood at the front of the room with a large clock displaying the time,\n\nReligion, nope not going there,\n\nMedia, ah! That's our bag, decentralisation of one of the biggest industries we know, the speed at which devs are deving, the information age is travelling, the tokenisation of real world assets,\n\nDo our youngsters or will our youngsters really listen to our current governance, leadership hierarchies,\n\nAnd on a similar note, do they view the law and the centralised authorities the same way their parents or grandparents did or do.\n\nUltimately it's evolution not revolution https://example.com/ 5809 427246 427246.427284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28293836334315 0 \N \N f 0 \N 0 151089482 0 f f \N \N \N \N 427246 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451322 2025-03-24 13:51:35.092 2025-03-29 22:39:50.236 \N This is a *really* thorough write-up! \n\n- You’re probably leaving sats on the table not posting nuggets of content in the description here on SN.\n- But love the fact you mentioned about a privacy phone and even considered triangulation amongst other identifying metadata. A lot of people would skip over these details.\n- Even with a decreasing amount of ATMs around, any pleb considering using one should *definitely* bookmark this!\n\nP.S. Kudos on the site. Really dig the theme & content https://example.com/ 19980 451303 451303.451322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7165765008601 0 \N \N f 0 \N 0 36397225 0 f f \N \N \N \N 451303 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442748 2025-03-18 19:18:39.347 2025-03-29 22:39:50.236 \N - Improving the SN PWA with better caching strategies and push notifications.\n- Getting [this PR](https://github.com/stackernews/stacker.news/pull/305) about additional hotkeys for SN markdown power users merged\n- configuring my new OS install with [`dwm`](https://dwm.suckless.org/)\n- my replacement SSD arrived today. Setting up a new bitcoin and lightning node https://example.com/ 6555 441502 441238.441496.441502.442748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.59684827905264 0 \N \N f 0 \N 0 19491964 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458105 2025-03-28 23:35:51.454 2025-03-29 22:39:50.236 \N So many cool talks. Look forward to checking out the streams. Hope you all have a great conf ✌️ https://example.com/ 19813 457996 457966.457996.458105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65966636885819 0 \N \N f 0 \N 0 241962818 0 f f \N \N \N \N 457966 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458106 2025-03-28 23:37:15.299 2025-03-29 22:39:50.237 \N Switzerland has a relatively small and very decentralized government. That might be relevant. \n\nIn my experience, Ticanos are extremely sycophantic towards their government. Probably because it's not nearly as terrible as its neighbors.\n\nWhat I most want to know is who the 31% of Americans are who trust the national government. That's full on insanity. https://example.com/ 15148 458047 457845.458044.458047.458106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3083071504904 0 \N \N f 0 \N 0 112829088 0 f f \N \N \N \N 457845 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424372 2025-03-04 03:04:02.063 2025-03-29 22:39:47.61 My students try to sell me Solana so make him a Bitcoiner! Today at school one of the smarter kids came up to me during the break.\n\nHe told me that he knew how to make money quickly, but that he was too young.\n\nI was in the mood to play the game, so I asked him how he could make some quick money.\n\nHe told me about this "new" super money: Solana!\nI replied: But it's only going down, why should I buy it?\n\nThe boy was confused, what do I mean it goes down? Am I holding my mobile upside down or am I stupid?\n\nThe boy showed me his prepared SOL/USD chart and he was so happy to show me how he could have made money if he had been allowed to.\nI turned my phone around and showed him SOL/BTC on the YTD scale.\n\nHe could not understand. So I explained it to him.\n\nI told him that he will get 210 sats if he is willing to get a lightning wallet plus half the amount this post is making.\n\nSo send him some sats to make him a BTC pleb not a SOL retard!\n\nProof of Picture will follow! \N 10398 \N 424372 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 18.5701436216296 0 \N \N f 0 \N 0 35666544 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424374 2025-03-04 03:05:15.134 2025-03-29 22:39:47.61 Kraken has notified account holders en-mass about Bitcoin transaction \N https://x.com/JTheAccountant/status/1717290751309078715 725 \N 424374 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.6278570577596 0 \N \N f 0 \N 0 75165423 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424373 2025-03-04 03:04:30.049 2025-03-29 22:39:50.236 \N anons unite!\nBlessed is he/she/it who lurks and drifts https://example.com/ 10821 424230 424230.424373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0949584490684 0 \N \N f 0 \N 0 28051308 0 f f \N \N \N \N 424230 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455761 2025-03-27 10:13:30.343 2025-03-29 22:39:50.236 \N Buy Mullvad vouchers [here](https://vpn.sovereign.engineering/) using Lightning. \n\nThe fees will pass. Necessity breeds creativity. https://example.com/ 680 455649 455649.455761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1202067380338 0 \N \N f 0 \N 0 89147821 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444530 2025-03-20 01:17:33.607 2025-03-29 22:39:50.236 \N @siggy47 James is coming on Friday. Props to to Ben for taking the baton and running the final leg. I am super excited. https://example.com/ 6594 444526 444526.444530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2912159851064 0 \N \N f 0 \N 0 96263342 0 f f \N \N \N \N 444526 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444481 2025-03-19 23:14:14.286 2025-03-29 22:39:50.236 \N Yes. It was founded by someone else late last year. I think @MEME_LORD started it but it was archived and SN just says that I am the founder based on the date it originally went live. \n\nI discovered it. \n\n![](https://m.stacker.news/56217) https://example.com/ 12188 443708 443372.443708.444481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.86826931995954 0 \N \N f 213669195 \N 1 7155614 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436111 2025-03-13 10:28:20.548 2025-03-29 22:39:50.236 \N Got my first “p2p” type today.\n\n![](https://m.stacker.news/48008)\n\nDoes this essentially mean that I’ve received a zap from a non-SN wallet? https://example.com/ 3347 436110 436110.436111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1636515035531 0 \N \N f 0 \N 0 108038818 0 f f \N \N \N \N 436110 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424377 2025-03-04 03:08:33.267 2025-03-29 22:39:50.236 \N Based in a Texas close to the border and see it everyday. The amount of people crossing daily is insane, and they know they’ll get a free pass as soon as they cross. \n\nI’ve seen people cross and wait for border patrol to pick them up. They already know the process and know that surrendering to BP will get them in the country faster. \n\nIllegal immigrants have been house at various locations to include motels and facilities run by cities and are then transported by bus, some even by plane, to sanctuary cities or family that is already in the country. \n\nOperation Lonestar is bolstering security at the border, National Guard troops are only allowed to report illegal immigrants to BP. \n\nStronger border security and better policies would greatly help. As I stated, people crossing illegally already know the process, that’s why they’re crossing at high numbers. https://example.com/ 15858 423743 423743.424377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6552486688149 0 \N \N f 0 \N 0 140922705 0 f f \N \N \N \N 423743 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424421 2025-03-04 04:55:33.267 2025-03-29 22:39:47.611 Swaproot: cheaper and more private on-chain deposits on Phoenix \N https://acinq.co/blog/phoenix-swaproot 12921 \N 424421 \N \N \N \N \N \N \N \N news \N ACTIVE \N 11.4462263808045 0 \N \N f 0 \N 0 118458003 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416484 2025-02-25 16:14:16.861 2025-03-29 22:39:47.611 What's your excuse for not stacking MORE sats? My unpopular opinion is that some people DO HAVE enough bitcoin.\n\nBut not you. YOU need more.\n\nSo why don't you have enough yet? \N 671 \N 416484 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 20.1938561741148 0 \N \N f 188864379 \N 1 33515718 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402383 2025-02-13 17:53:57.242 2025-03-29 22:39:50.237 \N “If you don’t believe me or don’t get it, I don’t have the time to try to convince you, sorry”\n\nOriginal hfsp https://example.com/ 16816 402128 401734.402128.402383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9251311318016 0 \N \N f 0 \N 0 208367038 0 f f \N \N \N \N 401734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455491 2025-03-27 04:14:30.568 2025-03-29 22:39:50.237 \N I think people have trouble separating the question "Do some people deserve to be killed?" from the question "Should the state be used to kill people?"\n\nMy answer to the first question is "Obviously", but my answer to the second question is "No". https://example.com/ 2537 455486 455486.455491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1213023926541 0 \N \N f 0 \N 0 197291762 0 f f \N \N \N \N 455486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408130 2025-02-18 15:21:01.8 2025-03-29 22:39:50.237 \N We do things a bit odd here: "MVB" minimum viable beta. Try to burn as little devel and support time while you try out ideas. These things take time to build on btc, so keep burn low and "days alive" long. We have zero W2 employees including me and no spending commitment greater than 30 days. https://example.com/ 7877 407795 407795.408130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.64548845012012 0 \N \N f 0 \N 0 110933781 0 f f \N \N \N \N 407795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431095 2025-03-09 15:27:36.063 2025-03-29 22:39:50.237 \N Aside from base Linux/Debian/etc, I would argue that there are no other personal server operating system companies. If you are referring to the other plug and play node solutions, EmbassyOS is the only one I would really call an "operating system". I feel like that concept requires a minimum degree of functionality and control to the user, which none of them provide. They are more like "bundles of services" that you can view in a GUI. Almost ever action beyond simply installing ans starting a service requires SSH and command line usage. Only EmbassyOS affords users the ability to MANAGE their server over time, essentially turning an average person into a systems administrator or dev ops engineer. https://example.com/ 7510 415776 415776.431095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6488370873512 0 \N \N f 0 \N 0 202888034 0 f f \N \N \N \N 415776 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402357 2025-02-13 17:37:36.888 2025-03-29 22:39:50.237 \N Morning stackers.\n\nExcited for the new experiment! I bet we're gonna be surprised. https://example.com/ 17171 402355 402355.402357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.27020316895297 0 \N \N f 0 \N 0 85151453 0 f f \N \N \N \N 402355 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448922 2025-03-23 01:15:25.392 2025-03-29 22:39:50.237 \N Yes, it should be added that the transaction was apparently created by PayPal as a payment for stablecoins from Paxos. PayPal, which routinely blocks people's accounts and freezes transactions without reason. https://example.com/ 1638 448911 448819.448911.448922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3953906809833 0 \N \N f 0 \N 0 13916362 0 f f \N \N \N \N 448819 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458147 2025-03-29 02:15:25.79 2025-03-29 22:39:47.611 I'm Max Webster, founder of Hivemind Ventures, a Lightning Network seed fund - AMA! Hi, it's Max (@maxawebster), founder of Hivemind Ventures, a seed fund investing in L2 & L3 Bitcoin startups building the future of finance, communication, and energy. We're particularly focused on the Lightning Network and are fortunate to have partnered with many of the best companies in the space including: Lightning Labs, River, Galoy, Breez, Stacker News, Lightspark, Ibex Mercado, Pouch, Neutronpay, Bitnob, Lightning Network Plus, Satoshi Energy, and many more. \n\nMy Lightning thesis: https://hivemind.vc/why-lightning-why-now/\n\nPrior to Hivemind, I invested at Version One Ventures and was on the founding team of Bright, a leading residential solar company in Mexico. \n\nI also rap: \nbit.ly/2SxBo4d\nhttps://www.wavlake.com/cypher-perro\nhttps://open.spotify.com/album/7dRob11mbsIwBptfoZ8XxV?si=gC-TWLxVTQCO_mOta0tLKA\n \N 20133 \N 458147 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 15.7611653584538 0 \N \N f 0 \N 0 111336685 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416878 2025-02-25 22:41:00.582 2025-03-29 22:39:47.612 100 a day until 100k 100 push ups a day until 100k is the challenge. \n\nNot sure where it started or who started it but it is making the rounds on Nostr and bitcoin twitter. I committed and did my first 100 yesterday. I am doing them in 4 sets of 25 spread out over the day. I usually lift weights 3-4 times a week, so this is an add on for me. \n\nAny other stackers want to join the challenge? \n\n \N 6229 \N 416878 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 8.47550858713888 0 \N \N f 0 \N 0 103459790 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421285 2025-03-01 15:02:28.502 2025-03-29 22:39:50.237 \N ![20240129_195039-01~3.jpeg](https://m.stacker.news/15021) https://example.com/ 20602 421266 421266.421285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93683269300681 0 \N \N f 0 \N 0 178924863 0 f f \N \N \N \N 421266 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421542 2025-03-01 18:24:02.93 2025-03-29 22:39:50.237 \N Some Reddit mods are getting banned just by joining the API protest, let's see how this play out\n\nhttps://news.ycombinator.com/item?id=36192312 https://example.com/ 5377 421540 420895.421540.421542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.26797773776254 0 \N \N f 0 \N 0 63146149 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431115 2025-03-09 15:29:41.211 2025-03-29 22:39:50.237 \N If it already weren't amazing enough. Some of these graphs are super insightful:\n\n1. [80% of nodes are on Tor!](https://mempool.space/graphs/lightning/nodes-networks)\n2. [75% of non-tor nodes are on cloud providers, 50% of nodes are on Google Cloud or AWS](https://mempool.space/graphs/lightning/nodes-per-isp)\n3. [80+% of non-tor nodes are in The West](https://mempool.space/graphs/lightning/nodes-per-country)\n https://example.com/ 7682 412890 412890.431115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.75730956341711 0 \N \N f 0 \N 0 8230315 0 f f \N \N \N \N 412890 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455481 2025-03-27 03:34:06.08 2025-03-29 22:39:50.237 \N Life-like sex robots? Hey, don't shoot the messenger. https://example.com/ 20023 455413 455413.455481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5187911511264 0 \N \N f 0 \N 0 197010820 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410494 2025-02-20 14:04:00.328 2025-03-29 22:39:50.237 \N Trying to use my basic programming skills to play with my LN node but stuck on the first steps :( \nI believe it's pretty simple but cannot figure out, some help would be appreciated https://example.com/ 2775 410269 410269.410494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.03114758626059 0 \N \N f 0 \N 0 223394674 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402472 2025-02-13 18:47:04.763 2025-03-29 22:39:50.238 \N Daytrading...oof https://example.com/ 638 402466 402228.402466.402472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4213295616098 0 \N \N f 0 \N 0 153190803 0 f f \N \N \N \N 402228 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422610 2025-03-02 15:21:19.343 2025-03-29 22:39:47.612 Stacker News Features - Custom Date Ranges Most stackers know that the “top” tab allows them to scan through the top posts, comments, stackers, and cowboys over the last day, week, month, year, or forever.\n\nHowever, in addition to these pre-set filtering options, stackers can also set custom date ranges on a number of pages throughout the site.\n\nWant to see the top posts from the [first month of Stacker News’ existence](https://stacker.news/top/posts/custom?from=1622520000000&to=1625025600000)?\n\nOr how about [the comments that stacked the most sats](https://stacker.news/top/comments/custom?by=sats&from=1622520000000&to=1625025600000) that month?\n\nIn addition to being able to set custom date ranges on the top page, you can do the same on the profile page of any stacker.\n\nWant to see what @k00b [posted on April Fools Day last year](https://stacker.news/k00b/all?when=custom&from=1680321600000&to=1680408000000)?\n\nFinally, you can also use custom date ranges to see stacker analytics over any period of time.\n\nWant to see how many items were created on [Christmas 2021](https://stacker.news/stackers/custom?from=1640408400000&to=1640408400000) vs. [Christmas 2022](https://stacker.news/stackers/custom?from=1671944400000&to=1671944400000) vs. [Christmas 2023](https://stacker.news/stackers/custom?from=1703480400000&to=1703480400000)?\n\nTo learn more about other Stacker News features, check out our [FAQ page](https://stacker.news/faq).\n\nTo read our first post on custom zaps and turbo zapping, [click here](https://stacker.news/items/391488) \N 654 \N 422610 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.55462477640015 0 \N \N f 0 \N 0 40978999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441835 2025-03-18 10:21:28.631 2025-03-29 22:39:50.238 \N 22,000 sats in 30 mins for this post, very much deserved. I love seeing stuff like this. https://example.com/ 16858 441833 441695.441823.441827.441833.441835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0109641239797 0 \N \N f 0 \N 0 147352654 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424431 2025-03-04 05:15:47.423 2025-03-29 22:39:50.238 \N If you live in a Bitcoiner-dense geographical location, maybe don't bother. Otherwise go. Make Bitcoin something more to yourself than something that just exists on the internet. Its more about interacting with other fellow non-celebrities than getting to experience the reality distortion field of Michael Saylor. https://example.com/ 5752 419794 418796.419360.419775.419794.424431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0223038269914 0 \N \N f 0 \N 0 179747069 0 f f \N \N \N \N 418796 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431069 2025-03-09 15:16:22.26 2025-03-29 22:39:50.504 \N Everyone decides for himself https://example.com/ 4650 430258 430258.431069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3329338085645 0 \N \N f 0 \N 0 38948217 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424435 2025-03-04 05:22:39.359 2025-03-29 22:39:50.504 \N I printed couple [QR codes](https://twitter.com/3d_nout/status/1608464239617875968) to give to folks as tips, in restaurants, etc... \n\n![](https://pbs.twimg.com/media/FlJnTbfWAAEIYME?format=jpg&name=medium)\n\nOne side has LNURLw with 60k sats, the other side has a link to tutorial from @DarthCoin :)\n\n https://example.com/ 2176 414341 413854.413869.414341.424435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.20537716001 0 \N \N f 0 \N 0 69986312 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455487 2025-03-27 03:45:03.108 2025-03-29 22:39:50.506 \N This is my favourite place on the internet. https://example.com/ 17741 455221 455221.455487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.79306353329204 0 \N \N f 0 \N 0 91961354 0 f f \N \N \N \N 455221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424381 2025-03-04 03:17:16.01 2025-03-29 22:39:47.613 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/370421) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 14258 \N 424381 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.1613677379444 0 \N \N f 0 \N 0 246440208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423499 2025-03-03 12:21:13.952 2025-03-29 22:39:50.505 \N ### [The Bitcoin Network Has Been Functional For 99.99% Of The Time](https://buybitcoinworldwide.com/bitcoin-uptime/)\n---------\n### [Since its inception on January 3, 2009 at 02:54:25 GMT bitcoin network had only 2 downtimes events](https://buybitcoinworldwide.com/bitcoin-downtime/):\n\n1. [CVE-2010-5139](https://en.bitcoin.it/wiki/Value_overflow_incident) - **8 hours and 27 minutes**\n2. [CVE-2013-3220](https://en.bitcoin.it/wiki/Common_Vulnerabilities_and_Exposures#CVE-2013-3220) - **6 hours and 20 minutes** https://example.com/ 18274 423468 423468.423499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6495369933336 0 \N \N f 0 \N 0 103702324 0 f f \N \N \N \N 423468 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416945 2025-02-25 23:47:41.445 2025-03-29 22:39:50.505 \N https://github.com/stackernews/stacker.news/issues/1439 https://example.com/ 9346 416944 416944.416945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7604939760011 0 \N \N f 0 \N 0 144369510 0 f f \N \N \N \N 416944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431120 2025-03-09 15:29:54.105 2025-03-29 22:39:50.509 \N https://bitsms.org/ https://example.com/ 5377 410759 410759.431120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.022859887003 0 \N \N f 0 \N 0 102783117 0 f f \N \N \N \N 410759 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402493 2025-02-13 19:07:06.834 2025-03-29 22:39:50.509 \N ![](https://m.stacker.news/42082)\n\nDo it for the Lab stackers! Support bitcoin businesses! https://example.com/ 10934 402105 402105.402493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3584503270399 0 \N \N f 0 \N 0 52735223 0 f f \N \N \N \N 402105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438492 2025-03-15 15:33:38.857 2025-03-29 22:39:50.509 \N Day 243 of snailposting everyday 'til BTC hits $100k.\n\n...and 43 push-ups. (20 - 13 - 10)\n\n__@_'-' https://example.com/ 20706 438486 438486.438492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7481696986898 0 \N \N f 0 \N 0 167283093 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423016 2025-03-02 21:37:39.998 2025-03-29 22:39:50.509 \N As a Swedish person (with more than one medical doctor sibling, working in the field—both of them btw got COVID and had mild symptoms) I can provide some context for _why_ we went this route, even when our usually politically aligned northern neighbors didn't. Norway locked down. Denmark locked down ("0% deaths!" laughable.)\n\n1. Why didn't we lock down? Because we had very recently been through a very similar situation, where we saw the dangers of mass hysteria. Specifically, our Infectious Disease Expert [Anders Tegnel](https://en.wikipedia.org/wiki/Anders_Tegnell), who had just been traumatized by his role in the recent Swine flu epidemic (2009) in Sweden, during which he led the charge of mass vaccination which led to hundreds of children developing narcolepsy, was still in charge and trusted. All this is basically hear-say, but I'm writing it to give you an inclination as to why Tegnell and the Swedish people were "inoculated" against COVID mass hysteria. \n\n2. My sibling doctors reported a ridiculous "only-for-show" mask wearing (even when on zoom conferences, for christs sake), and more importantly, there was a heavy pressure to label anyone who died WITH covid, as dying FROM covid. If you know anything about how complicated death of old people (and they were always the ones dying, like we clearly saw in Italy which early got hit HARD because the elderly live with their families there), then saying "oh it was just covid" is about as dishonest as you can be. But those statistics were needed for the funding to work.\n\nAs a personal note, I never noticed any lockdowns AT ALL. We perhaps had a couple sick leaves from work. There were no masks. No fights. There were some curfews, but I don't really hang out late anyway. \n\nI'm proud of my country for sticking it out, for trusting Tegnell, trusting the science instead of the mass hysteria. I think we will all be better prepared for the next pandemic when it comes (not just sweden, and not just because all the old people died :))\n\n https://example.com/ 17838 422980 422960.422962.422980.423016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8308527714965 0 \N \N f 0 \N 0 153812199 0 f f \N \N \N \N 422960 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451404 2025-03-24 14:34:48.493 2025-03-29 22:39:50.509 \N Overall the site is doing pretty good being minimalistic... \nJust couple thoughts up for consideration: \n- Remove emojis from post names\n- If the markdown editor would be WYSIWYG, then you can remove "preview" :) \n- Remove the price of bitcoin on top (not a strong opinion)\n- Remove "invites" (not sure if at this point those are being used & useful)\n https://example.com/ 17411 451138 450971.451138.451404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1061762579974 0 \N \N f 0 \N 0 205598924 0 f f \N \N \N \N 450971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454676 2025-03-26 14:52:48.656 2025-03-29 22:39:50.51 \N The socialist calculation problem applies to firms' internal operations in exactly the same way it applies to governments. The difference, as you say, is the external profit and loss signals that most companies face. https://example.com/ 716 454517 454517.454676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9065727444336 0 \N \N f 0 \N 0 55528413 0 f f \N \N \N \N 454517 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413332 2025-02-23 04:42:32.707 2025-03-29 22:39:47.61 Only Cowboys Get Rewards: and other ideas I noticed that only 100 people are getting daily rewards. That was a new feature introduced in the second month of Million Sat Madness, as I recall. \n\nThe purpose, as explained to me by @ek, is to prune the left tail of the distribution and give more rewards to our more substantial contributors. That's great, but 100 is completely arbitrary, so I think we can do better.\n\nWhy not make use of our beloved cowboy hats and reserve daily rewards for cowboys?\n\nIf it starts seeming like too many people are drawing rewards, make cowboy hats harder to find.\n\n## Other Ideas\n* Include referrals in the rewards calculation, maybe as daily activity of your referred stackers\n* Reward downzapping bad content, as well as zapping top content\n* Reward SN donations\n* Randomize the parameters in the rewards calculation\n* Daily rewards have to be accepted within 24 hours or they go back in the pool\n* Factor engagement into top post rankings\n* Include all-time stacker value in the rewards calculation\n\nThat's it for now. I don't necessarily endorse all of these ideas, but I've been mulling them over and I'm curious what other stackers think.\n\nAre there tweaks to the rewards system that you'd like to see? \N 5175 \N 413332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.90422174493893 0 \N \N f 156927847 \N 1 2476636 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404567 2025-02-16 01:06:10.215 2025-03-29 22:39:47.613 When is good enough, good enough? **When is good enough, good enough?**\n\nMy dad, for all his wonderful attributes is not a handy person. He does a fine job and enjoys maintaining the lawn, hedges and flower beds outside of my parents house. He will tighten a loose screw on occasion or hammer a nail into a wall when needed but that is about the extent of his home maintenance skill set. I am sure if he were a younger man with all the resources one has to learn things online he could improve upon this skill set but he is growing old and his body is beginning to fail him. \n\nMy mom on the other hand is someone with a lot of ideas and time on her hands. This cocktail of too much time and a lot of ideas tends to manifest itself into either "this needs to be fixed", "this needs to be replaced" or "we should do this". \n\nMy parents have had a long, wonderful, happy marriage but one pain point that has always existed in the relationship is this combo of a person who isn't a great honey do list doer along with a person who is an expert honey do list giver. We lived in an apartment in the city when I was growing up, so this didn't cause much of a problem because the building had a superintendent whom my mother could call upon to address any issues she happened to find. This worked well for my dad too. He could focus on work and his other passions, like coaching my baseball teams, reading, and listening to music. His chores around the house were mostly limited to helping clean once a week and occasionally pitching in to do some laundry. My parents repainted the entire apartment and put up some wallpaper in the living room one summer when I was a kid. That was our big renovation. \n\nA few years after I had finished college and moved out, my parents decided they were tired of apartment and city life in general. They retired and moved to a resort town around 2 hours away from the city and after a year decided they would make this town their last stop in life and bought a house. \n\nA house brought up a new set of challenges as there was always something to do, something to fix, something to change. This kept my mom busy and likely driving my dad somewhat crazy, so he found a local job and went back to work. However, my mom being an enterprising honey do list giver solved this problem by finding a guy. His name was David and he worked at home depot and did handy work and renovations on the side. Great outcome for all. My dad could focus on working again, my mom could assign all her pet projects to David and when he had time David could make a bit of extra cash. \n\nThis all worked very well for many years. Eventually my dad retired again but he was more than happy David was the guy who got the to do list. Don't fight inertia if you don't have to, right? But over a decade had passed now and David was getting a bit older too and had also retired at some point along the way. He was still taking on side jobs from his best customers but he was slowing down. \n\nAfter the pandemic hit, lockdowns ensued, the to do list wasn't as much of a priority anymore, but the necessary "to dos" were piling up, fortunately for my mom her new David was about to arrive. \n\nI was a lot like my dad when I was younger, unskilled and disinterested in working with my hands unless that included throwing a baseball around or fiddling on a guitar. However, when I bought my first home I started to learn a few little things and when I started my business the necessity to learn to be handy would increase with each passing year as we took on different types of projects that I needed to manage and no longer just sub contract to someone who knew what they were doing. Besides, even if I wasn't doing the work myself, I needed to have a sense things were being done well, efficiently and for a fair price. Many years and lessons later I still don't consider myself that handy, maybe I am selling myself short, but when compared to even hobbyists who do their own major renovations, I still have a lot to learn. I am more someone who likes to fix things than someone who embraces the joy of a major project and each step along the way. \n\nIt was January of 2022 when my family and I moved to that same resort town my parents did around 15 years prior, I had a lot of time on my hands as I was now officially semi-retired and I had yet to find SN to pass much of my free time that was not occupied by my kiddos. I became the new David for my parents. \n\nHopefully you aren't bored to tears as I have told this rambling tale for a reason. I get a lot of joy of living in the same town as my the parents. They get to spend a lot of time with the kids and I get to help them do things that age makes more difficult. I am happy I can be the new David for them but am under no delusions that I am as experienced and skilled as David. My parents appreciate the work I do to help maintain their home and never take my efforts for granted. My mom will always ask if I want to do something or if she should find a guy. \n\nThat being said, my mom's preferred response to almost everything I check off the to do list for her is "That's good enough". A lot of this has to do with my propensity to want to fix something that is broken rather than replace it but also some of it has to do with the fact I am not as skilled as David. \n\nSo, finally onto the crux of the post. I have been thinking about this phrase "good enough" a lot lately and even more so "when is good enough, good enough"? And when should we strive for excellence? There is a saying, don't let perfect be the enemy of good. Meaning, don't allow the pursuit of perfection to prevent a good outcome. But surely we must occasionally pursue excellence or is excellence merely the natural result of the compounding of a series of ever increasing good enoughs? \n\nThanks for reading. I look forward to any thoughts and comments stackers have. \n\nSats for all,\nGR \N 10102 \N 404567 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 23.1769546549565 0 \N \N f 0 \N 0 28290342 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458349 2025-03-29 08:13:02.274 2025-03-29 22:39:50.51 \N I appreciate the shoutout. There are lots of people on SN I enjoy interacting with, but here are some that immediately come to mind:\n\nI always look forward to @elvismercury's long form posts and book club conversations.\n\n@siggy47 is great to go back and forth with in the comments, plus his lessons learned posts are great.\n\n@TomK is my primary source of European economics news.\n\n@ekzyis has really interesting site development ideas.\n\nedit: I should have said "In addition to those mentioned in your post..." https://example.com/ 1433 455601 455601.458349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6307079984244 0 \N \N f 0 \N 0 7947476 0 f f \N \N \N \N 455601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423891 2025-03-03 17:15:58.478 2025-03-29 22:39:50.51 \N Making pictures about holding your own keys\n![](https://bitcoinscoresby.com/wp-content/uploads/2022/12/Bitcoin-Vacation-Short.png)\n![](https://bitcoinscoresby.com/wp-content/uploads/2022/12/Bitcoin-Barbarian-Queen.jpg) https://example.com/ 8376 423667 423667.423891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6655177362744 0 \N \N f 0 \N 0 185159384 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423085 2025-03-03 00:19:54.573 2025-03-29 22:39:50.511 \N My weak ass lungs got me in detention in 5th/6th grade. Inhalers were kept with the nurse. Had an asthma attack. Needed to go to the nurse. Teacher refused my a my requests to be excused, and eventually I just left because I couldn't breathe. \n\nShe didn't like that I guess. I also didn't do any of the homework which probably contributed😂 https://example.com/ 21274 423036 423036.423085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.20627843931294 0 \N \N f 0 \N 0 186870624 0 f f \N \N \N \N 423036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458348 2025-03-29 08:12:23.852 2025-03-29 22:39:50.511 \N I don't know what I think about this, but Solana is a fantastic writer:\n\n> For decades — more, probably — American politics and culture ‘evolved’ in one direction. This evolution concluded in Harvard removing portraits that were too white. In IBM punishing executives for hiring too many asians. And in the abolition of “academic merit” at the conceptual level. Proponents of such abhorrent practices assumed the future would carry on apace, as did most detractors, and so mostly no one really fought for control of the “right side of history.” Sure, there was a spicy blog post here and there. But real war? With reputations and fortunes on the line? Why bother if the conclusion was inevitable?\n\nSolana surely has a membership card from the Self-Congratulatory Silicon Valley Intellectuals Society, and you feel a bit of oil on your skin after you read it, but this is something to noodle on for sure. https://example.com/ 6229 458340 458149.458340.458348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.10111531023 0 \N \N f 0 \N 0 174883514 0 f f \N \N \N \N 458149 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454740 2025-03-26 15:15:21.779 2025-03-29 22:39:50.511 \N ```python\ndef jimmy_song_essay_generator(any_topic_ever):\n # title\n print(f"HOW {any_topic_ever.upper()} IS A FIAT SCAM.\\n")\n \n # content\n while True:\n print("wah wah wah wah wah")\n``` https://example.com/ 19863 454716 454701.454716.454740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0066275435047 0 \N \N f 0 \N 0 172314973 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437832 2025-03-14 23:11:33.613 2025-03-29 22:39:50.512 \N ******************************* *Stacker to Stacker* *******************************\n\nThis week I noticed quite a few interesting ideas coming through, however once I was hooked by the title to click in and read further, letting my finger sit heavy on the sats trigger, I found the idea was lacking and the post much too short of becoming a fully realized point of discussion worthy of my sats. So let this be the encouragement you need to linger longer on the development of your post and ask yourself - have I said all I could say?\n\n********************************* *happy weekend* ******************************* https://example.com/ 10934 437775 437775.437832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8737574162718 0 \N \N f 0 \N 0 150498339 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444507 2025-03-20 00:22:09.582 2025-03-29 22:39:50.512 \N ![](https://m.stacker.news/58800) https://example.com/ 9341 444071 443593.443614.443774.443787.444071.444507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.446048025957 0 \N \N f 0 \N 0 132282789 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424392 2025-03-04 03:43:29.766 2025-03-29 22:39:47.61 Meme Monday - Best Bitcoin Meme Gets 10,000 Sats Time for another round of Meme Monday!\n\nWe have another 10,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 10am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 16717 \N 424392 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.38977862501923 0 \N \N f 0 \N 0 31336008 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431119 2025-03-09 15:29:50.719 2025-03-29 22:39:50.513 \N SN never sleeps. https://example.com/ 16660 410993 410993.431119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6354290891096 0 \N \N f 0 \N 0 16370815 0 f f \N \N \N \N 410993 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417006 2025-02-26 01:31:34.056 2025-03-29 22:39:50.513 \N *deleted by author* https://example.com/ 20185 416995 416918.416995.417006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.10938803040992 0 \N \N f 0 \N 0 170467648 0 f f \N \N \N \N 416918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424127 2025-03-03 20:46:40.447 2025-03-29 22:39:50.514 \N Yes it does! ...against the advise of ZBD. I'm not putting any serious sats there, so I figure it's no big deal. I could easily take the paywall and sat payout off altogether if you'd want to use it a little more liability-free too. https://example.com/ 3392 394203 394203.424127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6602340770569 0 \N \N f 0 \N 0 64325435 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408018 2025-02-18 14:28:45.586 2025-03-29 22:39:50.515 \N The best ideas I have for overcoming this long term\n\n1. allow users to mute users they don’t like\n2. allow users to flag posts and allow other users to set how sensitive they want to be to flagging (e.g. hide posts if 2 users flag it as altcoinery)\n3. allow users to have their own trust graphs which influences which posts and comments they see\n4. raise costs to post\n\nI’m open to other ideas. Moderation doesn’t scale IMO, so I think the path forward is giving users more control over what they see, who can interact with them, and what it costs to get their attention. https://example.com/ 1658 407898 407898.408018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4827565787634 0 \N \N f 0 \N 0 6830591 0 f f \N \N \N \N 407898 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408072 2025-02-18 14:58:15.052 2025-03-29 22:39:50.515 \N Day 12 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 4128 408053 407903.407963.407974.407983.408020.408035.408053.408072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2120521290184 0 \N \N f 0 \N 0 104943697 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458361 2025-03-29 08:21:39.195 2025-03-29 22:39:50.516 \N Reduce carbon emissions, increase energy usage. https://example.com/ 827 458345 458288.458305.458345.458361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9697370194833 0 \N \N f 0 \N 0 141910767 0 f f \N \N \N \N 458288 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407841 2025-02-18 12:20:30.418 2025-03-29 22:39:50.516 \N Your job probably doesn't suck, it's the people you work for... lol\nFind nice people to work with, the ones that think like you and want the same thing, then no job will suck. That will be no job, that would be a pleasure and the things you like to do (with friends possible) . YMMV of course.... https://example.com/ 2056 407453 406903.407453.407841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.7320722332059 0 \N \N f 0 \N 0 246586074 0 f f \N \N \N \N 406903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431182 2025-03-09 16:01:50.174 2025-03-29 22:39:50.516 \N ![54v6456.jpeg](https://m.stacker.news/20293) https://example.com/ 10554 407278 407278.431182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1690086541353 0 \N \N f 0 \N 0 59700585 0 f f \N \N \N \N 407278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431147 2025-03-09 15:44:32.258 2025-03-29 22:39:50.517 \N Vietnam\n1kg rice 1500 sats\n6 eggs 2000 sats\n1 liter milk 4000 sats\n1kg beef 24000 sats https://example.com/ 20280 431131 431124.431131.431147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0368861989818 0 \N \N f 0 \N 0 1583977 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431077 2025-03-09 15:18:29.119 2025-03-29 22:39:50.517 \N I love these stories.\nThe Christmas bitcoin gifts are extremely powerful. He did the best thing ever to give them bitcoin.\nThat owner is a true Bitcoin warrior.\n\nThank you for this amazing story shared here! https://example.com/ 21349 430891 430891.431077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.21421348844026 0 \N \N f 179216647 \N 1 31220798 0 f f \N \N \N \N 430891 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458032 2025-03-28 22:01:08.54 2025-03-29 22:39:50.517 \N clawed https://example.com/ 7675 457430 457430.458032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.769064913967483 0 \N \N f 4020121 \N 1 13549672 0 f f \N \N \N \N 457430 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417026 2025-02-26 02:25:32.937 2025-03-29 22:39:47.61 Moderation, automation...automoderation One feature of some Reddit subs that I've seen to be very valuable is programmable automoderation. Are there any plans, or existing ideas for SN to add this kind of feature for territory owners?\n\nExample use case:\n - add customizable territory-specific post types/labels replacing "link" or "discussion" such as News/Meme/Social Media/Shitpost\n- require a citation link in the post for particular labels such as News, or have your post auto-removed\n- check for a previously posted meme with an identical image or repeated links to the same social media post\n\nOne way to achieve this is to add a sandboxed scripting language like Lua with hooks that are called when events occur, like a new post being created. Assuming code executes server-side, there would need to be hard limits on script memory usage, allowable CPU time and, access.\n\nThe other option would be to create a REST API for automod code running elsewhere for SN hooks to call when events occur. This has the advantage of allowing any language and relaxing concerns of server load, but has some security implications to consider.\n\nReddit's tools:\nhttps://www.reddit.com/wiki/automoderator/ \N 9552 \N 417026 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 23.8545070425065 0 \N \N f 0 \N 0 201679456 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402439 2025-02-13 18:17:27.171 2025-03-29 22:39:47.61 Bitcoin Stack Exchange: Should we more proactively act against bad questions? If I could ask for one late Christmas gift from the Bitcoin community that I’d be sure to get, I’d for more people _voting on content_ (upvotes and downvotes) on BSE. https://bitcoin.meta.stackexchange.com/q/1198/5406 21688 \N 402439 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.12441296672417 0 \N \N f 0 \N 0 174822850 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431134 2025-03-09 15:35:05.866 2025-03-29 22:39:50.517 \N They should use SN job posting 😁 https://example.com/ 11450 430943 430700.430943.431134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5427793331535 0 \N \N f 0 \N 0 238318545 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448925 2025-03-23 01:18:53.261 2025-03-29 22:39:50.517 \N Did Stacker News just have a big day? I got a huge daily distribution payout. https://example.com/ 9367 448858 448858.448925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4695396997389 0 \N \N f 0 \N 0 59438012 0 f f \N \N \N \N 448858 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423032 2025-03-02 22:13:26.773 2025-03-29 22:39:50.518 \N I feel sorry for those who lost their savings. But what I really cant understand is, how its possible that after all that happened with Celsius et. al. earlier this year people still chasing some interest. Its literally picking up pennies in front of a steam roller, driven by lunatics and crypto-banksters running a great advertisement for cold storage of BTC. Its like the ancient chorus of Ayschylos was repeatedly singing: "acting - suffering - learning!" https://example.com/ 8287 422960 422960.423032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.118418946618 0 \N \N f 0 \N 0 216034585 0 f f \N \N \N \N 422960 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431126 2025-03-09 15:31:48.07 2025-03-29 22:39:50.518 \N I like it. Kinda like reddit awards. Pay to add flair to posts/comments. Maybe it's a separate thing from regular tips. Maybe a portion goes to the SN treasury for reward distribution. https://example.com/ 16598 430337 430279.430337.431126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.171009999858889 0 \N \N f 0 \N 0 44067197 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458036 2025-03-28 22:08:14.287 2025-03-29 22:39:50.518 \N It's Friday, we all know what that means...\n![k00b-cowboy-horse](https://m.stacker.news/19482) https://example.com/ 9363 458032 457430.458032.458036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.00628760625082 0 \N \N f 0 \N 0 4020121 0 f f \N \N \N \N 457430 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450321 2025-03-23 21:24:54.466 2025-03-29 22:39:50.518 \N > How do I convince mgmt that this is a good idea and get buy-in from the c-suite?\n\nThe single most effective thing you can do is provide evidence (the harder the evidence the better) it'll make them more money than it will cost them.\n\n> And what Bitcoin companies/products in the ecosystem should I incorporate into this plan for execution?\n\nQuite a few bitcoin payment companies offer plugins to major ecommerce sites. If you are comfortable self-hosting the payment stuff, [BTC Pay Server](https://btcpayserver.org/) seems to be the standard. https://example.com/ 894 449146 448671.448675.449146.450321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5960585629506 0 \N \N f 0 \N 0 155872702 0 f f \N \N \N \N 448671 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417028 2025-02-26 02:27:30.674 2025-03-29 22:39:50.518 \N You are one impressive S.O.B. Your comment count didn't suffer a bit. \n(Glad you're OK) https://example.com/ 15075 416127 416127.417028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.4374966798937 0 \N \N f 0 \N 0 179384198 0 f f \N \N \N \N 416127 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401724 2025-02-13 10:52:40.417 2025-03-29 22:39:50.519 \N In January 2024, we reported several vulnerabilities being exploited by the XRY tool from MSAB to get data from Android devices including stock OS Pixels. In April 2024, Pixels shipped a reset attack mitigation we proposed preventing the whole attack vector. We plan to expand it.\n\nCurrently, non-Pixel devices are still vulnerable to these reset attacks. In June 2024, Android 14 QPR3 included another feature we proposed providing wipe-without-reboot support for the device admin wipe API. We shipped this early and use it in our duress PIN/password feature.\n\nWe also began triggering a full compacting garbage collection cycle in system_server and SystemUI when the device is locked based on info about these attacks. This releases memory for no longer allocated objects to the OS, where our generic zero-on-free feature clears all of it.\n\nIn the near future, we plan to ship support for adding a PIN as a 2nd factor to fingerprint unlock to enable users to use a strong passphrase combined with PIN+fingerprint secondary unlock for convenience. We have an initial implementation, but it needs more work before shipping. https://example.com/ 732 401716 401716.401724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8564405296724 0 \N \N f 0 \N 0 235946293 0 f f \N \N \N \N 401716 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417027 2025-02-26 02:25:38.557 2025-03-29 22:39:47.611 Bitcoin ATH Memes throughout the years There have been many memes through the years and I feel like this current run up is severely lacking -- or my sources are. I loved the Bitcoinity memes from years ago, but he doesn't seem to do that anymore. \n\nPlease share top tier ATH era memes. Bonus points for Bitcoinity screenshots / recordings. \N 9418 \N 417027 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.6508935338487 0 \N \N f 0 \N 0 168261924 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402990 2025-02-14 10:28:07.362 2025-03-29 22:39:50.517 \N WHY ARE HIS EYES ON FIRE? https://example.com/ 6430 402000 402000.402990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20756969761526 0 \N \N f 0 \N 0 70413292 0 f f \N \N \N \N 402000 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456801 2025-03-27 22:02:30.63 2025-03-29 22:39:50.517 \N Good Lord, is this a sovereign individual or what? https://example.com/ 2206 456501 455525.456501.456801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.3461598446456 0 \N \N f 0 \N 0 247186674 0 f f \N \N \N \N 455525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437794 2025-03-14 22:16:06.584 2025-03-29 22:39:50.518 \N Day 273 of snailposting everyday 'til BTC hits $100k.\n\n...and 73 push-ups. (20 - 20 - 33)\n\n__@_'-' https://example.com/ 8726 437020 436823.436829.436900.436930.437013.437020.437794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8468343577309 0 \N \N f 0 \N 0 148332573 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408081 2025-02-18 14:59:58.272 2025-03-29 22:39:50.519 \N I'm learning a lot from Saif's Austrian Economics course on Saylor Academy. He knows his stuff when it comes to economics. But when he starts talking about beef, seed oils, cow farts and the condition of academia, I change my mind about recommending him to friends. https://example.com/ 16847 407864 407864.408081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.01224912405392 0 \N \N f 0 \N 0 100724255 0 f f \N \N \N \N 407864 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424231 2025-03-03 22:56:30.679 2025-03-29 22:39:50.519 \N Among other things, I contacted almost every pool I could find to pitch them on running full-rbf.\n\nGood example of how Bitcoin really works actually: Core developers don't have any direct power. To make something change, users and miners have to be convinced to run new code and/or change configuration options. In some cases, not very many people have to be convinced: full-rbf just needs a few miners opting in to be useful. In other cases, pretty much everyone needs to be convinced: tail emission isn't going to happen without a hard fork and wide support. \n\nhttps://petertodd.org/2023/why-you-should-run-mempoolfullrbf\n\nOf course, I'm personally being sued by Craig Wright, who claims I among other people can give him coins that he claims are stolen (with zero hard evidence). It's a laughable lawsuit: can't even get full-rbf widely enabled without convincing a lot of people. 😂 https://example.com/ 12774 424101 423667.423747.423777.423804.424011.424036.424101.424231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8653496581093 0 \N \N f 0 \N 0 181946696 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422593 2025-03-02 15:14:55.74 2025-03-29 22:39:50.519 \N ![Bitcoin is rat poison squared](https://www.bitcoinpriceinwords.com/bicoin_is_rat_poison_squared.jpg) https://example.com/ 3642 422577 422577.422593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6238980988472 0 \N \N f 0 \N 0 95268131 0 f f \N \N \N \N 422577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422728 2025-03-02 16:56:58.283 2025-03-29 22:39:50.519 \N It took decades for regular people to own cars when they were first invented https://example.com/ 9705 422717 422717.422728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.00418815633986 0 \N \N f 0 \N 0 55825521 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423640 2025-03-03 13:57:20.578 2025-03-29 22:39:50.519 \N ![](https://pbs.twimg.com/media/FvI4OS4WAAEYw-3?format=jpg&name=4096x4096)\n"The fees secure the network"🥲 https://example.com/ 11670 422717 422717.423640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8742274403764 0 \N \N f 0 \N 0 30799897 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437826 2025-03-14 22:56:27.722 2025-03-29 22:39:50.519 \N What's are potential rug-pulls when investing in a bitcoin ETF? https://example.com/ 12738 437762 437723.437762.437826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9782662382268 0 \N \N f 0 \N 0 184441132 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423067 2025-03-02 23:30:38.966 2025-03-29 22:39:50.519 \N Imagine the f***ing economies of scale, globally, that could be achieved in banking if everyone just moved to Bitcoin and Lightning. No need for complex interoperability between systems of different countries. No need for expensive remittance fees and currency conversion fees. No financial censorship and a free market of banking apps that anyone in the world can create and use, due to the financial base layer being completely open source and programmable.\n\nIt's so frustrating when normies can't catch the vision, so to speak.\n\n https://example.com/ 11798 422301 421082.421194.422301.423067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5295009723128 0 \N \N f 0 \N 0 215207279 0 f f \N \N \N \N 421082 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456883 2025-03-28 00:10:40.903 2025-03-29 22:39:47.611 US presidential candidates 2024 positions on Bitcoin, Bitcoin Mining, CBDCs, ... This table summarizes the known positions of the US presidential candidates for 2024 on Bitcoin, Bitcoin Mining, CBDCs and cryptocurrencies:\n\n![US presidential candidates for 2024 on Bitcoin](https://imgprxy.stacker.news/SABk8dwRqJps-3jKzjytfp-KBFuzEr5p0nuVkE-qa9g/rs:fit:600:500:0/g:no/aHR0cHM6Ly93d3cuYml0Y29pbnByaWNlaW53b3Jkcy5jb20vdXMtcHJlc2lkZW50aWFsLWNhbmRpZGF0ZXMtMjAyNC5wbmc)\n\nIt's quite interesting, given that the subject of Bitcoin and the danger of CBDCs to individual freedom will be important issues in the upcoming presidential election. \N 1478 \N 456883 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 24.0987963637025 0 \N \N f 0 \N 0 217568158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416707 2025-02-25 19:30:38.484 2025-03-29 22:39:47.611 Analysis after a day of letting the Trump speech set in To bitcoiners, [Trump's speech](https://www.youtube.com/live/EiEIfBatnH8?si=GxYagadnY2q0Oi_s) may have seemed like more of a campaign stump speech and a bit underwhelming bitcoinwise. At least that's how I perceived it as he was speaking. Whereas other speakers were in Nashville to talk bitcoin, Trump was there to campaign and bitcoin was a topic in the campaign.\n\nAlso, Robert Kennedy Jr. may have set the bar pretty high by [laying out his plan](https://www.tennessean.com/story/news/politics/elections/2024/07/26/robert-f-kennedy-jr-takes-swings-at-donald-trump-pitches-bitcoin-strategic-reserve-bitcoin-nashville/74561549007/) with ambitious bitcoin reserve purchases. I like high goals, however, I'm not sure if his goals are even possible: buy 550 daily until 4 million. Umm, only 450 are minted per day. Who's selling?\n\nZooming out...\n- RFK Jr. is much more free to say things. He has zero chance to win. He will not be president and his plans are moot (moot other than maybe in that they can serve to something of a "first offer" bargaining chip for Trump to react to).\n- Trump stands a good chance to win, at least 50/50. Thus, he needs to be more cautious in what he says. For instance, if he'd said, "I promise to replace the US dollar with bitcoin!", the crowd likely would have erupted in applause. However, burning down the house statements like that would be political suicide. You must win office to make changes in office.\n\nFrom a broad perspective, the speech was huge. We're taking steps here and this was a very big one. This post logged Trump's promises well: https://stacker.news/items/625076 but here are my thoughts:\n\n- A former president and maybe next president spoke at the biggest (at least in US) bitcoin conference. That's de facto official recognition. That alone is a huge change from ignoring bitcoin, combating or criticizing bitcoin.\n- A bitcoin reserve or "stockpile" was promised. This is a step in the right direction.\n- The notion of keeping bitcoin in the US was big. It's rather general at this point, but hopefully that means protecting those who code, miners who mine, hodlers who hodl, etc. This is maybe bigger than the reserve, actually.\n- Personally, I really liked the advisory council proposal. That puts bitcoin "in the White House". That puts people who get it speaking into the president's ear, instead of the media's spin or hell-bent politicians trying to drum up public attention. A good advisory council could help keep the president on point.\n- Also personally, I thought the 1 BTC coin gift was pretty cool. Would love to see that sitting on the Resolute Desk.\n\nOverall, considering how far bitcoin has come, I think this will be seen in the future as a watershed moment.\n \N 10409 \N 416707 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 0.0200019920628591 0 \N \N f 0 \N 0 66779913 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410591 2025-02-20 14:54:29.767 2025-03-29 22:39:50.518 \N I think easily ordinals and BRC-20s attracted the most new bitcoiners this year? We’ve seen A TON of attention from people in the greater crypto ecosystems who jumped onto bitcoin through ordinals, something that didn’t happen in bitcoin for quite a while.\n\nBut to be fair, the overall market has been slow this year, and I have no doubt that in previous years, many other efforts have attracted way more bitcoiners than ordinals did this year https://example.com/ 20956 410583 410583.410591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6867288858851 0 \N \N f 0 \N 0 46835374 0 f f \N \N \N \N 410583 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431157 2025-03-09 15:48:30.419 2025-03-29 22:39:50.518 \N Benjamin Franklin once said: "Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety." https://example.com/ 9426 430825 430795.430825.431157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7635798391923 0 \N \N f 0 \N 0 201603463 0 f f \N \N \N \N 430795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417031 2025-02-26 02:31:41.321 2025-03-29 22:39:50.518 \N wow, this is huge.\n\ncongrats to the Lightspark team, excited to see what kind of traction Lightning gets with a Coinbase integration. https://example.com/ 7966 417005 417005.417031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3425801664383 0 \N \N f 0 \N 0 71758018 0 f f \N \N \N \N 417005 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413991 2025-02-23 15:04:42.891 2025-03-29 22:39:50.518 \N Getting this error:\n\n\ninvalid config: CompileError: Refused to create a WebAssembly object because 'unsafe-eval' or 'wasm-unsafe-eval' is not an allowed source of script in the following Content Security Policy directive:\n\nWhat does this mean? Did I not enter my LNC words correctly? https://example.com/ 994 413980 413675.413903.413943.413957.413980.413991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4993347710532 0 \N \N f 0 \N 0 196021138 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458374 2025-03-29 08:30:10.899 2025-03-29 22:39:50.518 \N Hi thanks for doing this AMA. I've always wondered how does the bitcoin code look? Is it pretty / ugly - simple / complex? \n\nWhat do you think about the threats of intense regulation to the bitcoin space? https://example.com/ 16842 458227 458227.458374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9673436850657 0 \N \N f 0 \N 0 197078358 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 412408 2025-02-22 11:28:35.102 2025-03-29 22:39:50.519 \N Stacker Woos - our bitcoin tinder https://example.com/ 21401 412381 412381.412408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.39251565925738 0 \N \N f 0 \N 0 234105622 0 f f \N \N \N \N 412381 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437698 2025-03-14 19:03:21.763 2025-03-29 22:39:50.519 \N I think all the bitcoin adjacent companies are the obvious answer. If you can't pick those probably just Apple or Amazon, they will still be dominant in 10 years. https://example.com/ 10112 437678 436752.437635.437678.437698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7787506366903 0 \N \N f 244699634 \N 1 78736871 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422613 2025-03-02 15:21:24.56 2025-03-29 22:39:50.519 \N It's hard for me to imagine a more bike-sheddy discussion than this one, although in truth I'm kind of enjoying it.\n\nA nice laboratory in human consensus-building, actually. So meta. https://example.com/ 11670 422600 422595.422600.422613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.70318308637063 0 \N \N f 0 \N 0 32457684 0 f f \N \N \N \N 422595 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410608 2025-02-20 15:08:52.131 2025-03-29 22:39:50.519 \N This is a major problem in Spain. They are called okupas. It can take owners years to get the squatters out. Even worse, the owners have to pay not only the mortgage but all the utility bills related to the house. Usually when they manage to get the squatters out of the home it's completely wrecked. It's well known for owners to pay the squatters off to leave to the tune of thousands of euros. So it is basically a form of extortion. The government keep extending the ridiculous emergency laws that were put in place during covid so landlords could not evict tenants. But many of these are not genuine tenants - they can move in and take over when you just go away for the weekend - and yet they are treated as tenants. https://example.com/ 2528 410583 410583.410608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.7499204204077 0 \N \N f 0 \N 0 191470972 0 f f \N \N \N \N 410583 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421377 2025-03-01 16:00:08.27 2025-03-29 22:39:47.612 Mt. Gox Stories Now that people who have been forced to hodl for more than 10 years are getting back their bitcoin, I imagine there must be many stories of hope, redemption, and tragedy that are now playing out in real time. Privacy will still be an issue, even though governments are aware of the distributions. I wonder if this event will spawn books and articles? I can't help imagining some of these tales: families escaping poverty, people dying just before the payouts are received, heirs inheriting fortunes, etc. \nIs it just me? Is anyone else curious? Does this post simply warrant a "nice try, fed?" \N 5173 \N 421377 \N \N \N \N \N \N \N \N security \N ACTIVE \N 7.0498237273716 0 \N \N f 0 \N 0 228846591 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442837 2025-03-18 20:58:44.115 2025-03-29 22:39:50.507 \N Cool idea. I was blissfully unaware living in my parallel stacker sports universe. https://example.com/ 16653 442453 439946.440242.440313.441240.442453.442837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0871344847116973 0 \N \N f 0 \N 0 82189601 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436829 2025-03-13 23:43:45.457 2025-03-29 22:39:50.508 \N What does the end goal / dream of munity wallet look like? https://example.com/ 1615 436823 436823.436829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.61914889504613 0 \N \N f 868037834 \N 5 190874165 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 452802 2025-03-25 13:28:28.195 2025-03-29 22:39:50.519 \N Have you looked into Jam which is a frontend for joinmarket and fidelity bonds? https://example.com/ 701 452746 452624.452746.452802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.60794469803716 0 \N \N f 0 \N 0 173804430 0 f f \N \N \N \N 452624 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442819 2025-03-18 20:47:39.754 2025-03-29 22:39:50.519 \N Could you imagine if Apple would apply its own rules consistently.\n\nAny banking-app would be banned because you could use it to purchase or donate something without giving Apple its cut.\n https://example.com/ 21247 442817 442817.442819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0356577095196 0 \N \N f 0 \N 0 236984979 0 f f \N \N \N \N 442817 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458265 2025-03-29 06:39:40.28 2025-03-29 22:39:50.519 \N I was plagued by this same problem until I turned them off in all my territories. https://example.com/ 1394 458094 458011.458094.458265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1955463388267 0 \N \N f 0 \N 0 115309456 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442815 2025-03-18 20:47:28.624 2025-03-29 22:39:50.519 \N I really appreciate Luke's general perspective and willingness to roll his own client, but this is a bad take. One man's blockchain spam is another man's treasured bible verses. Who's to decide what's worthy of mining? There's no moralizing on this - let's allow the fee market to decide. Ultimately, you can't keep people from putting dumb stuff on the blockchain. I'd rather they at least be obvious about it and keep it in op_returns, otherwise we're back to bloating the utxo set with forever unspendable transactions, increasing the burden on all nodes. https://example.com/ 19459 442751 442751.442815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.251949451012869 0 \N \N f 0 \N 0 160253351 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437776 2025-03-14 21:50:38.405 2025-03-29 22:39:50.519 \N Refactoring fiatjaf’s noscl which is a nostr command line utility. Very cool and makes starting a bot army trivial.\n\nNostr needs to figure this out or else DOSing nostr can be done by anyone.\n\nI suggest we require payments to use relays. https://example.com/ 13249 437725 433555.437725.437776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8324241957919 0 \N \N f 0 \N 0 133989915 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454857 2025-03-26 15:56:25.395 2025-03-29 22:39:50.519 \N OH! Sweet, thank you. Perfect. Done!\n\nErr, wait - the spirit of freebies, would actually be okay, if we could figure out a way to make them scarce to the account. I don't take issue with all freebies, I take issue with abuse of freebies. https://example.com/ 14959 454763 454701.454763.454857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5782894548961 0 \N \N f 0 \N 0 53497272 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455557 2025-03-27 06:13:24.853 2025-03-29 22:39:47.612 Bitcoin is not zero-sum: let's craft a more hopeful narrative Alice owns a house, and Bob owns bitcoin. After learning more about the asset, Alice's willingness to pay for bitcoin increases by 2x. Is Alice poorer than she was before?\n\nI think we'd all agree that the answer is no. Purchasing power is not a zero-sum game. If Alice and Bob agree that the purchasing power of 1 BTC is greater than it was yesterday, neither is worse off for it. Alice values Bob's bitcoin more, and Bob can more easily purchase Alice's house.\n\nI find that too frequently, people take the perspective that bitcoin can only succeed at the destruction of value elsewhere in the economy (fiat, real estate, stocks, gold, etc.). I think this is wrong, and I think such language turns off a lot of everyday people. Bitcoin can succeed without the existing financial system falling apart, and I find that people are more receptive to bitcoin when described as a source of hope and optimism, rather than solely in terms of protection against calamity and despair.\n\nLet's craft a more hopeful narrative. Bitcoin does not need to be treated as a zero-sum game. \N 5519 \N 455557 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 29.3506139461228 0 \N \N f 0 \N 0 137054895 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431224 2025-03-09 16:04:56.94 2025-03-29 22:39:50.509 \N I often hear about Zeus as one of the ultimate enthusiast tools. How do you balance (or implement without alienating the other) more powerful features for enthusiasts and more simplicity for normies? https://example.com/ 20826 397694 397694.431224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3944535477619 0 \N \N f 0 \N 0 87809290 0 f f \N \N \N \N 397694 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404420 2025-02-15 21:25:39.576 2025-03-29 22:39:50.509 \N So true, great post. There are many examples of this in society. Like @kr discussed in a [recent podcast](https://fountain.fm/episode/0rcDL8nQDl0VDaaAtbqe) we could have had flying cars already. We could also have had abundant chemical & salt-free water from our oceans and water-powered engines & vehicles.\n\nIt’s not just the incentives to build these innovative products don’t exist, it’s that the existing power structures in place have very very strong incentives to ‘neut’ or prevent them from taking off & gaining traction.\n\nThe reason we have so many plastics in our society is not because we can’t create biodegradable packaging, just like the reason we can’t have natural pharmaceutical products with no petrochemicals in them is not because it’s hard but because the oil giants have every incentive to monetise their waste products and impose their usage on society.\n\nWhen you start thinking about it, there is sooo much suppression of innovation and technology in today’s society. When the cap is lifted and these dark incentives cease to retain such power, there’s going to be such a huge economic boom IMHO. https://example.com/ 18321 403323 403323.404420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7714731678121 0 \N \N f 0 \N 0 66038058 0 f f \N \N \N \N 403323 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431247 2025-03-09 16:07:59.024 2025-03-29 22:39:50.509 \N Is Zeus fully "open-source" project, or is it backed by a company? Is the current Zeus model sustainable over long term? \nHow do you think about "competition" with other wallets and projects? https://example.com/ 19138 393475 393475.431247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.43232117003791 0 \N \N f 0 \N 0 48257464 0 f f \N \N \N \N 393475 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431288 2025-03-09 16:11:00.988 2025-03-29 22:39:50.509 \N Make sure you understand what a VPN can and cannot do for you.\n\nI recommend that you read the "Do you really need a VPN?" section on https://www.ivpn.net/ https://example.com/ 9354 381604 381604.431288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7245371389619 0 \N \N f 0 \N 0 210177490 0 f f \N \N \N \N 381604 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423034 2025-03-02 22:17:08.37 2025-03-29 22:39:50.51 \N Every Bitcoin legends I know has more than 1 rage quit on its own counter. https://example.com/ 16965 422960 422960.423034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89954440544402 0 \N \N f 0 \N 0 169548481 0 f f \N \N \N \N 422960 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431325 2025-03-09 16:21:03.079 2025-03-29 22:39:50.51 \N PSA: Big Zappers Get Big Rewards https://example.com/ 9352 390147 390147.431325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7887209937886 0 \N \N f 0 \N 0 172493834 0 f f \N \N \N \N 390147 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443730 2025-03-19 13:45:12.934 2025-03-29 22:39:50.51 \N RIP to the eclair desktop app\n\nhttps://kagi.com/proxy/1*nn3hED-LbNB_-GJDSAn9mQ.png?c=VUuvz62YMEPZM6ed-4o7Yg2Y8KwC-41UiupC3HTOxyjIwYqP9TeAFQLbS0r0hGzkRyTOBL2sZEfPBIDr4i9Vw_jw95SCZS2ooOP4fyobhQmnd77rl0MdcVGTX85rRHUo https://example.com/ 1198 442628 442628.443730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.760156458135 0 \N \N f 0 \N 0 239665124 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431352 2025-03-09 16:23:13.101 2025-03-29 22:39:50.511 \N Currently on day 5 of the "3 Day Potty Training" program with my 2yo. Otherwise, I have an interview this afternoon. https://example.com/ 9438 371743 371743.431352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3260967484443 0 \N \N f 0 \N 0 38909538 0 f f \N \N \N \N 371743 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413738 2025-02-23 12:52:15.525 2025-03-29 22:39:50.511 \N They are safer than ecash because this can't happen:\n\n![](https://m.stacker.news/41306)\n\nThat mint operator took over 800k sats with him when he shut down his mint. Those users got rugged. If this had been a statechain, those users would probably still have their money because you can withdraw from a statechain even if the operator disappears https://example.com/ 21427 413720 413720.413738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.81899802445887 0 \N \N f 0 \N 0 224527077 0 f f \N \N \N \N 413720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424911 2025-03-04 13:30:17.531 2025-03-29 22:39:50.511 \N ![](https://m.stacker.news/48827)\n@siggy47 soon you will have my guide about @Alby hub (as you asked), with all the pro / contra aspects, options and suggestions.\nIt's a very interesting territory, as self-custodial node, that I had the opportunity to test it briefly.\nI want to test it more with various backends funding sources, but right now I am quite busy with my citadel building and cannot fully concentrate on testing more LN nodes.\n\nWill come back with a nice guide. https://example.com/ 20495 424671 424671.424911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9716504783925 0 \N \N f 0 \N 0 4773621 0 f f \N \N \N \N 424671 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438033 2025-03-15 06:46:30.983 2025-03-29 22:39:50.512 \N I am still using it as a secondary alternative to Twitter, there is a lot of room to be improved before onboarding normies from other social media. But I can say I have stopped trying using Mastodon and using more nostr because that's where I lurk more for Bitcoin talk including stacker news.\n\nI can say for sure I am looking forward a Reddit alternative using nostr than Twitter alternative. https://example.com/ 21242 436566 436566.438033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7676539953108 0 \N \N f 0 \N 0 2194977 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437283 2025-03-14 12:28:52.126 2025-03-29 22:39:47.61 Major 2024 customer data breaches so far I had to provide some identifying information for a financial service recently and it got me thinking about how numb I've become to the constant stream of massive data breaches. I decided to spend a little time and take a look at how many major breaches have happened this year.\n\nI had plans to include numbers of people affected by each of the breaches, but it turns out that most of the hacks now days don't bother providing a number. The internet is a very connected place and most of these data breaches involve companies who provide services to other companies who provide services to customers and if you dig into them it becomes clear that there isn't anyone doing a full accounting of this.\n\n# 2024 Data breaches so far\n\n| Date | Company | # of victims |\n| ---------- | -------- | -------- |\n| 2024-07-01 | [AUTHY](https://www.twilio.com/en-us/changelog/Security_Alert_Authy_App_Android_iOS) | 33mm\n| 2024-06-26 | [EVOLVE](https://www.getevolved.com/about/news/cybersecurity-incident/) | ??? |\n| 2024-05-30 | [SNOWFLAKE](https://www.wired.com/story/snowflake-breach-advanced-auto-parts-lendingtree/) | 100mm+? |\n| 2024-04-28 | [DELL](https://www.bleepingcomputer.com/news/security/dell-warns-of-data-breach-49-million-customers-allegedly-affected/) | 49mm |\n| 2024-03-30 | [AT&T](https://about.att.com/story/2024/addressing-data-set-released-on-dark-web.html) | 70mm |\n| 2024-02-21 | [CHANGE HEALTH](https://www.forbes.com/sites/noahbarsky/2024/04/30/unitedhealths-16-billion-tally-grossly-understates-cyberattack-cost/) | 150mm |\n| 2024-01-16 | [TRELLO](https://www.cpomagazine.com/cyber-security/massive-trello-user-data-leak-hacker-lists-15-million-records-on-a-dark-web-hacking-forum/) | 15mm |\n\n# KYC is the illicit activity\n\nMy takeaway from the depressing list below is that the only tenable path forward is to severely curtail the amount of information any company is allowed to collect. Obviously, this is the exact opposite of pretty much every current trend.\n\nPerhaps the best outcome is that everyone's data is exposed and stolen and misused so often that it becomes useless for any sort of identity verification purpose and businesses and governments are left with no choice but to use public/private keypairs. \N 1090 \N 437283 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.1922112817794 0 \N \N f 0 \N 0 131929379 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423769 2025-03-03 15:33:12.563 2025-03-29 22:39:47.612 I earn 0.5 BTC per month working two full-time jobs - AMA I am a Frontend developer who nets 0.5 BTC (at today's rate -- in dirty fiat though), after-tax revenue but excluding expenses.\n\nI started working two jobs at the fiat mine a few months back with the sole purpose of turning every dollar I can into sats.\n\n**I'm a big fan of bitcoin, deep work, and spend most of my time with my family and in nature.**\n\nI speak fluent English, Spanish, Chinese and Japanese. I am currently learning Russian (by far the toughest language I have learned -- I suck at it).\n\nFeel free to ask me anything in any of those languages; easy or hard questions welcome.\n\n*NOTE: Obviously this is a throwaway account, as I use my main account often here and it would be stupid to doxx myself. The best way to prove that I am legitimately capable of doing two jobs is to ask me why Typescript sucks ;)* \N 2204 \N 423769 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.60522156696644 0 \N \N f 0 \N 0 187958474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407522 2025-02-18 06:31:14.3 2025-03-29 22:39:50.512 \N ![](https://i.imgur.com/RqVjrEO.jpg) https://example.com/ 16834 407083 407083.407522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.68104042730431 0 \N \N f 0 \N 0 8923432 0 f f \N \N \N \N 407083 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456850 2025-03-27 23:01:28.954 2025-03-29 22:39:50.513 \N I started the Wheel of Time series, which is over a dozen books. The only one I will have finished by the end of 2023 is book 1: The Eye of the World.\n\nSo far, it's a very compelling fantasy adventure: great detailed world building, multiple distinct perspectives, nice pace of exposition. https://example.com/ 12561 455980 455980.456850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.59281118532811 0 \N \N f 0 \N 0 141426343 0 f f \N \N \N \N 455980 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403239 2025-02-14 15:25:43.388 2025-03-29 22:39:50.513 \N Watching HN completely miss Bitcoin has been a fairly interesting experience over the last 12 or so years. \n\nIn part I think their anger is related to the collapsing returns within tech industry itself. "Silicon Valley Life" was the former gold rush that is now sunsetting....the industry has metastasized into a handful of kingdoms and growth is falling into traditional late-stage growth curves.\n\nThey *should* have seen it coming - and they know that. The internet developing its own native currency that displaces traditional system was an obvious tech development, but somehow they missed it. \n\nBut there is another - deeper change - that has happen. The "tech industry" itself has moved from being a very libertarian place in late 80s / 90s - to now a deeply state worshiping place. Its quite ironic (and they seem completely blind to it) that 99% of the tech they worship, was developed out of a mistrust of central authorities. https://example.com/ 7185 403222 402904.403222.403239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.89491740649338 0 \N \N f 0 \N 0 44844471 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402138 2025-02-13 15:12:55.956 2025-03-29 22:39:50.514 \N it means everyone can/should give it a try and help the SRI team understand how the community intends to adopt it, so we can fix bugs and make adaptations to the APIs https://example.com/ 1213 401818 401783.401818.402138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.822803452832 0 \N \N f 0 \N 0 114449636 0 f f \N \N \N \N 401783 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455196 2025-03-26 19:41:59.218 2025-03-29 22:39:50.514 \N Friendly reminder of https://bitcoin.design/\nUsed it recently https://example.com/ 7766 455120 455120.455196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2063699690997 0 \N \N f 0 \N 0 168351850 0 f f \N \N \N \N 455120 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404538 2025-02-16 00:40:20.842 2025-03-29 22:39:47.61 How many books do you read a year? >Books are the training weights of the mind.\n\n– Epictetus\n\nPlates build muscle.\nBooks build intelligence. \N 1740 \N 404538 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.3141534655509 0 \N \N f 0 \N 0 58816873 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401956 2025-02-13 13:25:24.773 2025-03-29 22:39:47.61 Time Locked Multisig: A New Dimension In Self Custody Today we’d like to propose a brand new form of self custody, the [Time Locked Multisig](https://www.athena-alpha.com/time-locked-multisig/) wallet. While the explanation for this new type of wallet setup is a bit different, it solves one of the only remaining critical flaws we have in today’s self custody setups.\n\nAfter 15 years of bitcoin, Software Wallets, Hardware Wallets and Multisig Wallets are the three main ways most people as well as serious companies with hundreds of billions of dollars of bitcoin, self custody their funds.\n\nDespite this, even multisig wallets still don’t fully protect your funds under the extrema risk scenarios of where thieves break in / kidnap you and use physical duress and force you to give them your funds.\n\nThe general attack scenario we're referring to is where one or more thieves break in and threaten you and/or your family with a gun, knife, whatever. Even with a multisig setup, they can simply drive you at gun point and obtain your other keys. Does geographically distributed multisig make this task harder? Absolutely. Does it fully protect your funds? No. This is a critical flaw that no one seems to be addressing in a sufficient manor.\n\n## Self Custody: A double Edged Sword\n\nWe want users to have full custody and control over their funds with no trusted third parties and Bitcoin can give you that capability like no other asset can. But with great power comes great responsibility and even with a multisig wallet setup, criminals may still knock at your door and do you harm to get at those funds.\n\nFully seeding that control to a third party that specializes in secure custody and protection of valuable assets like a bank solves the problem, but now we’re just back at square one trusting third parties.\n\nWorse still, if everyone eventually allows banks to custody their massive bitcoin funds in the future it opens the door to seizure from governments or confiscation of funds due to whatever “reason” the bank comes up with.\n\n## Space Locked Multisig\n\nIt’s recommend with a 2-of-3 multisig wallet that you store each of the keys at separate locations. This locks you out of being able to spend any funds until you physically go and retrieve a second key from some distance. This distance can be small or large and can be thought of as a “spacial lock” on your funds.\n\nIf it’s a small distance, say 10-100 miles away, then it’s moderately effective as a deterrent when dealing with the physical threat of duress. However assuming we’re talking about significant funds here, criminals can just drive you at gun point to where ever the second key is located and still steal all your funds.\n\nIf it’s a large distance, say 1,000-10,000 miles away in a different country, then this does make it all but impossible for the criminals to tag along as they’d have to pass through country borders which usually have numerous armed guards. However now you cannot access your funds without complying with local government rules. Access to your funds is now at the mercy of the state, which isn’t the best result.\n\nIn order for a space locked multisig setup to fully resist this type of physical threat of duress, it must force the attackers to pass through a location with specialized security and protective services. Armed guards. 24/7 surveillance. Steel reinforced locked vaults. In essence, a bank.\n\nNot only that, but they must not be able to get 2 of the keys without passing through at least one of these types of locations. For example, if you keep 1 key at home, 1 in a bank vault and 1 at a families home they can just use your home and family keys.\n\nFor full protection, you must keep 1 key at home and the other 2 in a bank or banks. This however then lands us straight back at square one again as a private bank company now has your private keys. If so forced by the state, it can seize all your funds.\n\n## Time Locked Multisig\n\nAs it seems clear that limiting your control over the funds in the space domain doesn’t work, we would like to propose a new type of multisig wallet setup, one that limits control using not just space, but also time. We call this a Time Locked Multisig (TLM).\n\nA TLM functions just like a regular multisig wallet, but adds further restrictions on when funds can be spent. Let’s have a look at how a 2-of-3 TLM might work:\n\n- Funds are time locked for whatever period the user desires, for example 1 year\n- Even if you have 2 keys, funds are not spendable until the time lock expires\n- If all 3 keys are used, the user can override the time lock and spend the funds immediately\n\nSo why the extra complexity? Well imagine you put a time lock on your 1 BTC UTXO that says it can only be spent after 1 year. You store 2 of the keys in regular environments such as at your home and a friends place.\n\nThe 3rd is stored in a location that is specialized in protecting valuable assets. This could be a bank, a bank safety deposit box or any other third party company that has a bank grade level secure location with 24/7 armed guards and check points.\n\n> Note: While many people detest banks now, taking deposit of and protecting valuable assets like gold is one of the main reasons they were created and has been a valuable service for many thousands of years. There is also no need to trust the bank as they only have 1 key, which is not enough to spend any funds.\n\nThis setup fully protects you from a physical duress attack. Even if a gang of criminals breaks into your home and holds a gun to your families head demanding “all your Bitcoin” they only have two options to get it:\n- Retrieve 2 keys from separate locations and wait 1 year for the time lock to expire\n- Retrieve 2 keys from separate locations and then also break into a bank grade secure location to obtain the 3rd key so they can override the time lock\n\nThis we think is enough security to stop even the most motivate criminals. These time locked coins are also fully provable via on chain, immutable data too. So even with a gun to your head, you have iron clad proof to show them that even with 2 private keys in your hands, you can’t send the criminal any funds.\n\nFurthermore, if the criminals break in and steal 2 keys, you simply go to your bank and get the 3rd key. With all 3 keys you can now override the time lock and instantly move the funds to a new address. Meanwhile the criminals 2 keys cannot send any funds until the 1 year time lock is up making them worthless. You would also do this if you wanted to spend your 1 BTC instantly.\n\nAs the bank company only ever has 1 of the 3 keys it’s also useless on its own, no amount of government control or seizure can take your funds. If that same bank bans you or withholds access to your 3rd key for any reason, you simply wait until the time locks pass and you have your funds again without having to trust any third parties.\n\nWhile in our example we’ve locked up 1 BTC for 1 year, you could splice and dice the amounts and time locks however you wish! For example, that same 1 BTC could be time locked in four separate UTXOs:\n\n- 0.5 BTC spendable after 1 year\n- 0.25 BTC spendable after 6 months\n- 0.15 BTC spendable after 1 month\n- 0.1 BTC spendable after after 1 week\n\nAfter each tranche of coins passes its time lock and becomes spendable, you can then spend them with just 2 of the 3 keys and “refresh” the time lock. Another way is to have a rolling stock, so that 1 BTC is spliced up into 10 x 0.1 BTC UTXOs and time locked in rolling 1 month intervals.\n\nIf you have a 3-of-5 TLM, then you would still store 1 key in a bank grade protective environment and you would need 3 keys to spend funds (after the time lock has expired) and all 5 keys to spend funds instantly. If you lose a key at any point, you’re funds are still safe as you can spend them after the time lock expires.\nFuture Self Custody\n\n12 years ago mobile wallets didn’t exist. 10 years ago seed phrases, hardware wallets and multisig wallets all didn’t exist. Who knows what amazing tech we’ll have in another decade.\n\nTLMs take the excellent spacial locking that geographically distributed private keys provide and combines it with temporal locking to prevent all known threats whilst still ensuring full self custody is maintained and no trusted third parties are required.\n\nThis type of multisig setup doesn’t exist at the moment, but as best we can tell, it doesn’t require any soft or hard forks of Bitcoin to enact. New wallets like Liana (which is in Beta at the moment) already use time locks for different reasons and Blockstream Green already has some server side time locks via their 2FA implementations that are similar in nature to this.\n\nObviously TLMs would only be for those with serious funds, just like regular multisig is now, but as bitcoins price inevitably increases and it gains major widespread use we expect instances like below to only increase in frequency.\n\n> This Monday, a middle-aged Swedish couple was tied up in their home and robbed by 4 masked men. They were physically abused and threatened with their own kitchen knives. They were tied up for hours and one had to be escorted to the hospital via helicopter. [One of many in Sweden](https://twitter.com/ercwl/status/1722371132026712143)\n\n## You’re Not Setup For Serious Physical Attacks\n\nA final point is that while we suggest this setup for those with “serious funds”, depending on who you are, that might not be nearly as much money as you think it might be. While most might instantly assume it’s only for high net worth individuals or businesses with millions or even billions of dollars worth of Bitcoin, you have to think about it from the thieves point of view.\n\nEven a moderate amount of bitcoin (eg. 0.25 BTC worth ~$9,000 USD) is a lot of money to a lot of people and will motivate many criminals to do some horrendous things. As long as the above tactic works and rewards the criminals with thousands of dollars, the behavior will continue and likely flourish.\n\nMaybe you’ve got guns a plenty and scream “come get some!” while you lather yourself in mud to avoid their thermal cameras, but even that might not be enough for a group of armed criminals given you’ve effectively got a bounty on your head equal to how much bitcoin you custody.\n\nhttps://www.athena-alpha.com/wp-content/uploads/2023/11/Arnold-Schwarzenegger-In-The-Movie-Predator.webp\n\nMultisig obviously helps, but again, criminals motivated by a huge bounty (even a few thousand dollars) could hold your family hostage while they force you to take them to retrieve the other keys. You likely are not specialized in armed conflict with a bank grade home and even if you’re a full on Command Sergeant Major in the army, there’s only so much 1 person can do against literally unlimited others.\n\nTLMs we think, if implemented with a simple and clear user experience, could potentially become the standard way people self custody their bitcoins in the future, just like how hardware wallets are now. If everyone implements it as part of a normal Bitcoin savings and investment strategy, then it will significantly help mitigate this final major risk of physical duress.\n\nIf it’s eventually cheap, easy and everyone does it then fewer and fewer attacks will be successful which will discourage future instances. This will in turn ensure more people, both rich and poor fully self custody their funds without seeding the job to trusted third parties. \N 16059 \N 401956 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 16.0498938448765 0 \N \N f 0 \N 0 138419158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444613 2025-03-20 04:10:14.634 2025-03-29 22:39:50.515 \N If things aren't going well after the changes, might I suggest stackers set up a Geyser fund to relocate the whole SN brain trust to a more welcoming locale:\nhttps://99bitcoins.com/bitcoin-friendly-countries/ https://example.com/ 1272 444606 444606.444613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5809408443822 0 \N \N f 0 \N 0 29652741 0 f f \N \N \N \N 444606 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410715 2025-02-20 16:30:28.93 2025-03-29 22:39:50.515 \N Making progress in my cabin project 😉 Yesterday I was supposed to be cutting rafters and mounting them on the ridge but it didn't go as planned - I found a good deal on windows in a local depot. It took me couple of hours to bring them over. Later in the day I laid down some plywood on the walls as I wasn't feeling like working at height 😅\n\nToday I'm working on the roof, no excuses 😉 Already managed to mount two first rafters.\n\n![more plywood on the walls](https://i.ibb.co/1R22X9m/more-plywood-on-the-walls.jpg)\n![ridge with first rafters](https://i.ibb.co/0DLx8gr/ridge-with-first-rafters.jpg)\n![windows are here](https://i.ibb.co/2jXM88m/windows-are-here.jpg)\n\nHave a good one!\n https://example.com/ 21672 410713 410691.410695.410713.410715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8272019112512 0 \N \N f 0 \N 0 9645351 0 f f \N \N \N \N 410691 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401662 2025-02-13 09:58:43.992 2025-03-29 22:39:50.515 \N Adding to all of what @ek and you said, I was also thinking about Albi in the sense that it's a fully integrated onboarding platform to Nostr. I'm not using Albi, but when I first tried to get into Nostr it was a nice option because it gave me everything: the wallet, the Nostr keys, and the Nostr logging functionality. In that sense SN would work as a nice port from which one could start to navigate the Nostr sea. It seems to me you've all for SN to work like that. I actually saw and started using SN because I liked that the community seemed like a nice way to prep and warm up to jump into Nostr, so even the community itself aligns with that objective. https://example.com/ 6137 401611 401611.401662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4787030154307 0 \N \N f 0 \N 0 90532405 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458393 2025-03-29 08:48:30.611 2025-03-29 22:39:50.516 \N Would everyone remove their space helmet from their avatar now, please? https://example.com/ 13921 458272 458272.458393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.2945575457858 0 \N \N f 0 \N 0 191802261 0 f f \N \N \N \N 458272 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437816 2025-03-14 22:44:44.379 2025-03-29 22:39:50.516 \N (the daily snailpost will be delayed 'cause I'm travelling and you simply cannot do push-ups in an airplane toilet) https://example.com/ 21178 437801 437723.437801.437816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7076054330686 0 \N \N f 0 \N 0 241423858 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403233 2025-02-14 15:11:11.578 2025-03-29 22:39:50.517 \N 🗺️ I remember my parents had those paper maps and booklet maps in our car. Driving to new places was such a big ordeal trying to navigate the roads and street signs. Especially in new countries.\n\n📍Now Google Map's like "in 200 meters, turn left at the intersection." And soon it'll all be self driving electric cars charged by streaming sats. https://example.com/ 4958 403232 402871.403021.403030.403039.403232.403233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.18588158683606 0 \N \N f 0 \N 0 141756380 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451397 2025-03-24 14:33:02.666 2025-03-29 22:39:50.517 \N FAQ: https://github.com/MutinyWallet/mutiny-web/wiki/Mutiny-Beta-Readme\n\nSelf hosting guide: https://blog.mutinywallet.com/self-hosting-mutiny/\n\nRecovery tool: https://github.com/MutinyWallet/mutiny-data-recovery\n\nThings are in a lot of different places but it's all there. Documentation PRs welcomed. \n https://example.com/ 20102 451374 451374.451397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.42234866993428 0 \N \N f 0 \N 0 7213473 0 f f \N \N \N \N 451374 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437862 2025-03-14 23:52:34.722 2025-03-29 22:39:47.61 Why I'm Betting Big on Nostr \N https://hivemind.vc/nostr/ 13076 \N 437862 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 0.00505736760118225 0 \N \N f 0 \N 0 67806327 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442858 2025-03-18 21:12:48.953 2025-03-29 22:39:50.517 \N TL;DR\n\nYou use the Xpubs, Ypubs and Zpubs when you want to use a watch-only wallet.\n\nAn easy way to differentiate between Xpubs, Ypubs and Zpubs is that Xpubs addresses always start with “1”, the Ypub addresses always start with “3”, whilst Zpub addresses always start with “bc1”. https://example.com/ 2293 442371 442371.442858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.46179361434515 0 \N \N f 0 \N 0 176643514 0 f f \N \N \N \N 442371 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437797 2025-03-14 22:19:14.697 2025-03-29 22:39:50.517 \N 👀\n\n![dev1.delphi.market_(iPhone SE) (1).png](https://m.stacker.news/6558)\n\nMVP 3 days late but now **_really_** almost done; literally only need to implement this `confirm` button*. **If I don't create a post announcing the MVP on SN in the next 24 hours, I will delete my account, lol.**\n\nWasn't active on SN for a week since it can be quite distracting and I did not want to show up on SN without a MVP for the prediction market, lol\n\nI've mentioned prediction markets on lightning for the first time [early this year](https://stacker.news/items/173759) but started talking about it [more and more recently](https://stacker.news/items/324151) such that it got [more and more embarrassing](https://stacker.news/items/298632) that I have no prototype to show or anything despite my apparent excitement about prediction markets.\n\nBut I think I initially got the idea from @orthwyrm [when we did bets on which day @orthwyrm can stop](https://stacker.news/items/168449).\n\n/cc @Undisciplined @grayruby _for some reason I associate you two a lot with prediction markets on SN, lol_\n\n_* and maybe some last testing of everything - oof pls no delays again_ https://example.com/ 6202 437790 437218.437287.437302.437790.437797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0571305836419 0 \N \N f 0 \N 0 93763055 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455754 2025-03-27 09:59:08.188 2025-03-29 22:39:50.517 \N Day 205 of snailposting everyday 'til BTC hits $100k.\n\n...and 5 push-up(s).\n\n__@_'-' https://example.com/ 21072 455374 455283.455374.455754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.60379959984672 0 \N \N f 0 \N 0 2151576 0 f f \N \N \N \N 455283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401648 2025-02-13 09:32:26.224 2025-03-29 22:39:50.518 \N Illustrating a principle with a concrete act, e.g., if you want to see more posts that surface old content and add value to it, provide commentary that synthesizes things, etc., then you should create those things yourself and model it for others. https://example.com/ 2065 401198 401198.401648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1619544567474 0 \N \N f 0 \N 0 6803311 0 f f \N \N \N \N 401198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442865 2025-03-18 21:15:24.152 2025-03-29 22:39:50.518 \N hahaha nice found. Somebody should remind them about Bitcoin now 😂😂 https://example.com/ 5003 442853 442853.442865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6882995462865 0 \N \N f 0 \N 0 56069024 0 f f \N \N \N \N 442853 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401377 2025-02-13 00:01:19.234 2025-03-29 22:39:50.518 \N 🧡🧡🧡 👏👏👏 Murch thank you for all your work as well! https://example.com/ 2123 401198 401198.401377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.95999645048959 0 \N \N f 0 \N 0 39634000 0 f f \N \N \N \N 401198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404497 2025-02-15 23:21:40.267 2025-03-29 22:39:50.518 \N Okay\n\nLol, you see, I was thinking about making a Gui using Ruby's Glimmer gem as a frontend for bitcoind that sets the RPC auth methods automatically and over local host, but I didn't feel motivated. Bitcoin core does have its own GUI and you can even transmit PSBTs with it. \n\nActually can you go into more detail about the inspiration behind why you made this post? https://example.com/ 3360 404477 404270.404364.404477.404497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.551914220875 0 \N \N f 0 \N 0 64912796 0 f f \N \N \N \N 404270 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437844 2025-03-14 23:32:24.608 2025-03-29 22:39:50.518 \N I think you are wrong about "I think" being redundant at the beginning of a sentence. \n\nYou are wrong about "I think" being redundant at the beginning of a sentence. https://example.com/ 20913 437642 437642.437844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.91703596270199 0 \N \N f 0 \N 0 133035136 0 f f \N \N \N \N 437642 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431092 2025-03-09 15:27:26.909 2025-03-29 22:39:50.518 \N Really appreciate this line of thinking. Even not having a website today could be a legitimate business strategy, forcing people to speak with you on the phone. Which you could automate with A.I anyway.\n\nReminds me of **_blue ocean strategy_** that I referenced in post https://stacker.news/items/450871/r/davidw. \n\nYou shouldn’t always just remove any ‘ingredient’ or part of the product, and there will be some items that are non-negotiable… but there are new rules to be written and new markets to unlock by doing something completely alien to both buyers & sellers in that existing market. Doing the opposite of what is expected is a legitimate concept, at least as a learning experiment. Businesses don’t take enough small bets in general and should experiment more. https://example.com/ 617 417005 417005.431092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.60440540610195 0 \N \N f 0 \N 0 231467734 0 f f \N \N \N \N 417005 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431099 2025-03-09 15:27:46.615 2025-03-29 22:39:50.518 \N Happy Thanksgiving to all of you who celebrate it. I'm thankful you're here!\n\nLet's smash the day. https://example.com/ 13903 414654 414654.431099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.87225344418628 0 \N \N f 0 \N 0 228577621 0 f f \N \N \N \N 414654 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431100 2025-03-09 15:27:48.968 2025-03-29 22:39:50.519 \N Sell the KYC Bitcoin back to the same exchange. You can't delete the purchase records but you can create sale records, so that the state may assume that you don't own Bitcoin anymore.\n\nThen buy Bitcoin via cash, gift cards or money orders. Don't use a bank account, since the bank requires ID to open the account, which means that anything involving banking/credit cards/Revolut/Zelle is KYC-lite not KYC-free.\n\nMany Bitcoin ATMs (especially CoinFlip) have $800/day limits without KYC. For larger amounts, visit different ATMs on the same day or the same ATM for a few days. Use a burner phone number (this isn't KYC, since KYC specifically means government ID requirements) such as TextVerified.com. More info: https://coinatmradar.com\n\nCash by mail is another option. Find a trader in Bisq.network, HodlHodl.com, Agoradesk.com or LocalCryptos.com. Money orders also work and are KYC-free (for buyers) up to $3k. More info here: https://x21.tools/no-kyc\n\nGift cards are better for small amounts, e.g. trade a $50 Amazon gift card for $40 Bitcoin. But in case you need it, Redeeem.com is a KYC-free gift card exchange.\n\nYou could also find a local cash in person trader. Bisq and other P2P exchanges have cash in person (or face-to-face) listings. You can also ask local Bitcoin, tech or libertarian meetups if anyone is selling Bitcoin. A good guide to setup local groups: https://github.com/taxmeifyoucan/p2p-trading/\n\nFor larger amounts, you could look for a KYC-free OTC trader. Maybe there are also some gold/silver traders.\n\nMore options here: https://github.com/cointastical/P2P-Trading-Exchanges/ Check which ones accept cash, gold or gift card payments. Avoid banking and credit cards (KYC-lite). https://example.com/ 7675 414271 414271.431100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1031329455992 0 \N \N f 0 \N 0 249672019 0 f f \N \N \N \N 414271 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408400 2025-02-18 18:51:42.813 2025-03-29 22:39:50.519 \N i nearly finished to read Mastering Bitcoin from Andreas\n\nI though it gonna be harder, as i m not developper, but at the end i managed to understand more or less everything :) https://example.com/ 20198 408009 407882.408003.408009.408400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4293322410064 0 \N \N f 0 \N 0 62065838 0 f f \N \N \N \N 407882 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408164 2025-02-18 15:51:15.486 2025-03-29 22:39:50.519 \N Day 120 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 635 408068 408068.408164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3767160867251 0 \N \N f 0 \N 0 156353691 0 f f \N \N \N \N 408068 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422916 2025-03-02 19:25:22.229 2025-03-29 22:39:50.519 \N For those that are interested…\n\nThe downsides that exist are probably that there isn’t really much of a Bitcoin economy here yet in Uruguay. They haven’t needed it. The next biggest one is that bureaucracy still exists.\n\nDefinitely witnessed an uptick in the amount of libertarian minded people here, moving from abroad, which is a huge plus. People I’ve enjoyed connecting with.\n\nThe cashless card culture has expanded and is commonplace. I’m becoming one of the minority in local markets still using cash. It’s still used but much less than other Latin economies, at least in major cities like Montevideo and Punta del Este. They have hooked people in with 15-20% discounts in cafes and restaurants if you have a certain branded card. Now people use cards daily.\n\nSupermarkets are pretty much run by a French monopoly here. There’s lots of brands but all with the same/similar owners, which is why veggies and consumables are 2x-3x more expensive than neighbouring countries. I try to avoid lining their pockets by opting for the local markets or “ferias” and building relationships there.\n\nOn the plus side, you can exchange significant amounts of dollars for pesos or vice versa without any sort of identification whatsoever. These are large registered businesses. In the U.K., even exchanging $100 felt like an inquisition and a favour I was being granted.\n\nYou need to present ID to get a SIM card like most countries, but it’s so refreshing to walk in & pay a competitive FX rate without being asked your name. To not get asked about what you plan to do with your depreciating dollars, or your travel plans etc. Reason being I expect, many big purchases like houses and cars are denominated in dollars, just like neighbouring Argentina. Those assets by the way are also fairly pricey for the region near the coastline cities given the stability on offer.\n\nRenting and purchasing property comes with quite a lot of additional costs. With very little work or effort on the agency side. I gather it’s often best to find a good agent to trust with this process, or even a friend who does it on the side. Or just be prepared to eat that cost.\n\nLinked to the agency world, and being both a positive and negative, sometimes when paying for a service you’ll find you as the buyer need to chase to get things done. The culture is very different here, to the detriment of speediness. It’s almost like businesses are not motivated by money and believe you are lucky to being served at all, even when paying hefty fees. I guess that’s the “tranqui” way. \n\nIt’s just a general observation and not always the case, but also potentially provides good opportunities for those people that are responsive and are willing to setup a business here. You will soon find yourself as the exception if you keep your promises and can deliver on time.\n https://example.com/ 5017 422908 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422908.422916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.39824092582315 0 \N \N f 0 \N 0 137066003 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458413 2025-03-29 08:57:43.239 2025-03-29 22:39:50.519 \N You're free to do whatever you want, of course, but why? You said it once. Presumably you were okay with it mapping it to your nym. What's different?\n\nThere are use cases for ephemeral content, probably everyone here knows that. But having _only_ ephemeral content is a bad deal.\n\nActually, this might make a good SN post. https://example.com/ 8664 458377 458377.458413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3419476420086 0 \N \N f 0 \N 0 174090063 0 f f \N \N \N \N 458377 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458414 2025-03-29 08:58:19.755 2025-03-29 22:39:50.52 \N Interesting. I thought you guys kept a portion. Why don't you use SN account to host saloon daily and we can all zap it as donations to SN in appreciation for the work you guys are doing? I know you guys have your angel funding but I am sure the community would like to contribute to the sustainability and success of the site. https://example.com/ 20990 458122 458122.458414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1023560792519 0 \N \N f 0 \N 0 205486139 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417044 2025-02-26 02:59:31.505 2025-03-29 22:39:47.611 waxwing commentary on twist attacks + bitcoin’s curve \N https://damus.io/note1yr9tzxprw44k740phrnl6ye52k765zddgyq8gtduddq8g9j0zx4qeytz9h 18309 \N 417044 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 26.324648267488 0 \N \N f 0 \N 0 29423561 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407398 2025-02-18 00:02:10.365 2025-03-29 22:39:47.611 Last year I "laundered" 100M sats through LN ## Hear that gov agents reading this? And I don't give a shit if you read it. You have NO power over me.\n\nYou accused Samourai devs of "laundering" 100M USD, but they were not using USD, they were using Bitcoin. And Bitcoin in your own crap laws is NOT money.\n\n## SO WHERE IS THE LAUNDERING IF THERE ARE NO "LEGAL" MONEY?\n\nSo hear me out: I also "laundered" 100M but sats not USD. How? Through LN.\nYes, mastering LN and mastering LN wallets. And even if you will find out, you have no power, you have NO jurisdiction over my sats, you have NO authority over my sats.\n\nWhy?\nBecause my sats are NOT "legal tender", because my sats are only math, code, numbers.\nAlso because all my trades for goods and services are ONLY in sats. I never touch anymore your dirty shitcoin USD.\n\n## I will remind you what is a "legal tender":\n\nAny retailer or individual could refuse to use a legal tender. Nobody can force you to use it.\nWhy? What is the point of a legal tender then?\n\nThe point is that you cannot force a retailer to accept legal tender or indeed any other form of tender. If, however, you buy something from them and there is no contractual barrier to the use of any form of tender, and you offer legal tender in payment, and they refuse it, then they cannot enforce the debt in court.\n\nThat's what legal tender means: it's about discharging debts. If you incur a debt you can discharge it with legal tender, but you cannot be forced to incur the debt in the first place, if you see what I mean...\n\nSo yeah, all p2p trades are NOT your fucking business, only the ones done with a gov institution must be done using a "legal tender".\n\nFor those that want to know more how I "laundered" 100M sats over LN, please read my guides:\nhttps://darth-coin.github.io/\n\nSpecial tip: even through Stacker News I "laundered" like 20M sats. But yeah you have to learn how to do it, you have to master the LN wallets and nodes.\n\nThink about this aspect: through a single LN channel you can pass through infinite sats... only few understand this.\n\n[![Darth-BTC-laugh.gif](https://i.postimg.cc/gcxk3nFs/Darth-BTC-laugh.gif)](https://postimg.cc/6TNXX6Q4)\nUntil we meet again...\n\n[![blixt-hacienda.jpg](https://i.postimg.cc/wB26JVyk/blixt-hacienda.jpg)](https://postimg.cc/gwwFb3Kw)\n[![lnbits-laundromat.jpg](https://i.postimg.cc/QdNNBgWC/lnbits-laundromat.jpg)](https://postimg.cc/pp7M4FCM) \N 2022 \N 407398 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.2261205627062 0 \N \N f 0 \N 0 194126318 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408406 2025-02-18 18:58:26.396 2025-03-29 22:39:50.507 \N Thanks for writing these. Even though I don’t comment or even read all of them when you post them, I am glad that they are there for me to read at my leisure. As you might know, I also took on some debt 2 years ago to buy bitcoin. It wasn’t as much as you did but it was more money than I ever had to handle.\n\nWhen I have more time to think through my thoughts, I want to reply to your thoughts about why not more people take on debt to buy bitcoin during the bear market and why it was universally considered a bad idea when I mentioned my plan to nocoiners and bitcoiners alike.\n\nIt has been on and off my mind for a while, too. https://example.com/ 1173 408159 407970.408159.408406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.39518214597733 0 \N \N f 0 \N 0 237768684 0 f f \N \N \N \N 407970 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403078 2025-02-14 12:30:13.216 2025-03-29 22:39:50.51 \N “Testing over time: A lightning channel isn't just a one-shot thing, it's a long-term, stateful, romantic relationship between two nodes. Plenty can go wrong, and by creating long-lived lightning channels between Mutiny Wallet and other nodes on Mutinynet we can make sure it's battle-hardened.”\n\nI agree with the romantic relationship. I recently had to wind down my pi node because it was so unstable. After going solid for about 3.5 years I had to call it quits. It hurt https://example.com/ 11515 402917 402917.403078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9604958887276 0 \N \N f 0 \N 0 224490652 0 f f \N \N \N \N 402917 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413933 2025-02-23 14:32:58.012 2025-03-29 22:39:50.51 \N https://www.stacksats.how/\n\nhttps://imgprxy.stacker.news/HIpDsVa4YlQzmA4crBwBaGAqeMi2jS3bjERZKfT_0vo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYTAuZ2lwaHkuY29tL21lZGlhL1A3Sm1EVzdJa0I3VFcvZ2lwaHkuZ2lmP2NpZD02YzA5Yjk1Mnpwd2U5eGl6anZrbDl0eHIyd2RrbmxoZjJpNXNmbzUyOG16d2x1NjMmZXA9djFfZ2lmc19zZWFyY2gmcmlkPWdpcGh5LmdpZiZjdD1n https://example.com/ 21248 413480 413480.413933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9259926342388 0 \N \N f 0 \N 0 151501997 0 f f \N \N \N \N 413480 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431132 2025-03-09 15:34:18.058 2025-03-29 22:39:50.519 \N A father https://example.com/ 7425 431007 430700.431007.431132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8490847112149 0 \N \N f 0 \N 0 80652391 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423812 2025-03-03 16:10:27.399 2025-03-29 22:39:50.519 \N Would love to get this as a smartphone/snartwatch screensaver or widget! https://example.com/ 14271 423797 417471.423797.423812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.50610441018487 0 \N \N f 0 \N 0 189845015 0 f f \N \N \N \N 417471 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431111 2025-03-09 15:29:30.374 2025-03-29 22:39:50.52 \N ![](https://www.zapread.com/i/9N0) https://example.com/ 20751 413184 413184.431111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2012166191785 0 \N \N f 0 \N 0 134070429 0 f f \N \N \N \N 413184 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437435 2025-03-14 14:14:28.438 2025-03-29 22:39:50.52 \N I like the fact you've adapted your pitch based on feedback https://example.com/ 20555 437238 437238.437435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9919837870705 0 \N \N f 0 \N 0 51702712 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401957 2025-02-13 13:25:59.636 2025-03-29 22:39:47.612 Daily Rewards vs Million Sat Madness Dear experienced stackers and newbies,\n\nHow are you doing? How is your experience on SN these 4-5 first days of Million Sat Madness?\n\nHow do you feel waking up in the morning and seeing no daily rewards for your posts, comments, and zaps?\n\nProbably, the experienced stacker will answer that they are not receiving daily rewards, but they are working hard to rank higher for the winning one prex of MSM.\n\nBut I'm curious to know how newbies are going to answer this question. I mean, being aware that they cannot by no means compete with the experienced stackers for being ranked higher, how do they feel about not receiving daily rewards for the entire month?\n\nSpeaking from my perspective, I won't make it into the first 64 positions for the month-end rewards. It makes me feel uncomfortable enough.\n\nI would also share another thought that came to my mind these days. We talk about the beauty of Bitcoin and blockchain, which are a decentralized system, while the experiment of MSM looks like an attempt to centralize the rewarding system of Stacker News.\n\nThe daily reward system is more decentralized, while the Million Sat Madness is a more centralized system. In the first one, everyone who is active by posting, commenting, and zapping has a chance to be rewarded every day, even if the rewards could be very low or very high, but all have a chance if they are active. For that reason, I consider it a decentralized system. In the second one, at the end of the month, only those ranked in the top 64 positions will be rewarded, while the rest will receive no rewards regardless of their activity. That's why this sounds like a centralized reward system to me.\n\nI have the impression that if MSM continues in the coming months, a lot of SN users (especially newbies) will lose their interest and will leave the forum. And I'm not sure if this is a good thing for SN.\n\nI would prefer the first one, i.e. the daily rewards, because everyone can be rewarded: newbies with small amounts and the experienced ones with high amounts.\n\nWhat do you think, Stacker? \N 7877 \N 401957 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.46274762267 0 \N \N f 0 \N 0 28694615 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415149 2025-02-24 14:59:11.741 2025-03-29 22:39:50.511 \N i’m kind of surprised by two things:\n\n1. how many stackers are taking supplements of any kind\n2. how few of these supplements i’ve ever heard of\n\ni’m way out of the loop on the latest biohacking/longevity stuff https://example.com/ 17714 414474 414385.414474.415149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8623168536905 0 \N \N f 0 \N 0 156800787 0 f f \N \N \N \N 414385 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415150 2025-02-24 14:59:57.075 2025-03-29 22:39:50.511 \N Someone is going to 10x this product and build a Lightning-powered OnlyFans.\n\nOnly a matter of time. https://example.com/ 15239 414436 414385.414436.415150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2697751951257 0 \N \N f 0 \N 0 185708930 0 f f \N \N \N \N 414385 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423872 2025-03-03 16:54:29.382 2025-03-29 22:39:50.512 \N I was asked many times by many nocoiners about this aspect.\n[I answer them here.](https://darthcoin.substack.com/p/users-questions-about-bitcoin#%C2%A7q-are-there-methods-to-lend-btc-if-i-have-btc-and-a-house-is-worth-btc-in-the-end-someone-will-have-to-make-me-a-loan-anyway-right)\n\nTLDR:\nBitcoin is changing the mentality of consumerism into mentality of savings. Save today for having tomorrow enough to buy the stuff you really need it. Don’t stretch you legs more than your blanket.\n\nUsing your bitcoin as collateral is the most moronic thing ever. Literally you are going back to fiat and fractional reserve. https://example.com/ 8448 423712 423712.423872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3672863038964 0 \N \N f 0 \N 0 214817808 0 f f \N \N \N \N 423712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451401 2025-03-24 14:34:16.654 2025-03-29 22:39:50.512 \N That's a good get! I hope they're paying him a bajillion dollars (rumor is they raised 9 figures). https://example.com/ 18533 451303 451303.451401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.877775811199 0 \N \N f 0 \N 0 167082521 0 f f \N \N \N \N 451303 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401312 2025-02-12 21:59:16.229 2025-03-29 22:39:50.512 \N *PonyDirect*\nhttps://github.com/MuleTools/PonyDirect\n\n\n*Samourai’s New Feature: Send Bitcoin Via SMS Text Message*\nhttps://medium.com/@jholmes91/samourais-new-feature-send-bitcoin-via-sms-text-message-23c9b2c1a37b https://example.com/ 15139 401292 401076.401277.401292.401312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.502494038210486 0 \N \N f 0 \N 0 186189401 0 f f \N \N \N \N 401076 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441939 2025-03-18 11:33:07.739 2025-03-29 22:39:50.513 \N I called out today because I'm SICK... not to listen to this discussion..\n\nMy list would be:\n\n- How's it going getting more signups on SN? Will there be a competition like MSM or something similar? I know there are some who don't care for the current referral code system and making sats from new signups, curious what you think about that.\n- Does it make any sense to allow merging of archived territories, or no? Should there be an extra cost? \n- Territory maps :D https://example.com/ 722 441918 441533.441614.441676.441918.441939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.56733756382488 0 \N \N f 0 \N 0 244576396 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456905 2025-03-28 00:30:08.479 2025-03-29 22:39:47.612 Steelmanning Ordinals Challenge I first heard the term ‘Steelmanning’ through Lyn Alden on a WBD podcast. \n\n**Steelmanning** is the act of taking a view, or opinion, or argument and constructing the strongest possible version of it.\n\nI think it could be an interesting challenge for the SN community to put together a really great argument **FOR** Ordinals. It doesn't matter if you love them or hate them, use logic and reasoning to provide good rational arguments for Ordinals on Bitcoin. \n\nI'll start: \n\n- If you insist on putting some of your monetary energy into a collectable of some kind, you might as well do so on the most secure monetary network on the planet. \N 8684 \N 456905 \N \N \N \N \N \N \N \N security \N ACTIVE \N 27.2619467459891 0 \N \N f 0 \N 0 87385966 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401618 2025-02-13 08:58:14.113 2025-03-29 22:39:47.613 Node xmrk closing down - for now at least \nThis is an official statement about my node. TLDR: if you have channel with me, I recommend force-closing it. If your node did penalty/breach tx, please return my funds, see below. Contact see on amboss - https://amboss.space/node/033878501f9a4ce97dba9a6bba4e540eca46cb129a322eb98ea1749ed18ab67735?section=General - preferrably Telegram or email, haven't checked nostr in ages, but will do.\n\n## Penalty tx\nSee instructions here: https://gist.github.com/xmrk-btc/f21fd8649dcd573679f043836e3ef05f , note that my lightning address is published on amboss - pls use address from amboss, you don't want to pay any impostor. Ideally I would sign it with my node's private key, doing lncli signmessage but cannot do that while node is down, and cannot safely bring it up. I am linking a separate document because I may need to edit it.\n\nI'd like to publicly praise all peers who do return me sats, and not sure how to do it so that it has maximum visibility. Suggestions welcome. Thinking about using Node Bilboard on Amboss -> Socials, but not satisfied, it may get lost in the spam. And it is valuable information - other things being equal, you strongly prefer a honest peer which doesn't try to rob you even when he can do so with relative impunity.\n\nAlthough I may sue peers which don't return money - well, at least I can serve them using OP_RETURN. /s\n\nAlready 3 peers out of 13 reached out:\n- Garlic - https://amboss.space/node/033b63e4a9931dc151037acbce12f4f8968c86f5655cf102bbfa85a26bd4adc6d9\n- Cypher - https://amboss.space/node/02d5246fa6bccbb80732146e198d243c49348a29d847ca8486742f5bbec158744f\n- Satway - https://amboss.space/node/02916bb52b33836e28a3649baea2e4a29c16fd8ad97901b2c97d408f428edef108\n\nStill, I am a bit worried about creating bad precedent, penalty txs exist for a reason. And yes, this surely doesn't look like a succesful attack by me, but how about unsuccesful one? Even unsuccesful attacker should be punished to deter attacks. In my favor speaks the fact of having run a node for > 2 years, an attacker probably wouldn't bother.\n\n\n## Amboss Magma channel buyers\nHeadache... I want to return funds I received. But there is magma fee, channel buyer pays to seller (me) and to amboss, guess I should refund both, as this is not fault of amboss. Hoping to beg amboss to forgive something. I am planning doing keysends, but there may be peers who neither support keysend nor published contact info. May publish some info here: https://gist.github.com/xmrk-btc/456666f1681c65dd0469df786de5d632 .\n\n## Other peers - active\nAs stated, I recommend force-closing. I still hope for a miracle, so you may wait a bit, but ziggie has already force-closed, and I have discussed details with him. Remember there are watchtowers, don't try to steal or you will be punished just as I was.\n\nAnother possibility is doing zombie recovery with SCBs even if your node is runnning fine. The advantage is that you don't need to wait for your fund, and less on-chain footprint & fees. But it is unsafe for me, it is essentialy a cooperative closure, I lose watchtower protection. And is more work for both of us. May do it with some trusted peers. (Correct me if I am wrong...)\n\n## Other peers - crashed/zombie\nMy SCB / channel.backup seems up to date, so zombie recovery should be possible. I have one such case, haven't attempted it yet though.\n\n## What happened\nI stopped lnd, installed updates for 30-60 minutes, wanted to reboot because systemd did not respond, but even reboot did nothing. Decided to do sync, wait a few seconds and do `reboot -f`. As if I haven't heard about `umount` or `mount -o remount,ro` ... sigh. lnd data are stored on ZFS pool as RAID1. Working theory is that important data stayed only in cache, lnd was running on 32 GB RAM machine while channel.db has 14GB so enough to cache everything. Still surprises me, usually lnd is writing at least 1 MB/s, as seen in dstat, perhaps some data is written and some is not?\n\n## Community\nThe reaction was amazing, special thanks to Rocket Node who insisted on me stopping lnd, and thus possibly saved me several BTC. Zap-O-Matic tried to calm me down. Ziggie and Alex Bosworth investigated. They all gave me strength to continue.\n\n## Future\nI probably want to start another lightning node, but not sure if I have all the skills. I can be reckless and undisciplined, perhaps less so after this event. I have little idea how to choose good HW. And the node was distracting me from work. OTOH, it would be a pity to abandon such community. And this gives me some opportunities to improve, I can finally migrate to SQLite or Postgres which could have better replication.\n \N 1785 \N 401618 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.8004740524646 0 \N \N f 0 \N 0 199552937 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451403 2025-03-24 14:34:46.453 2025-03-29 22:39:50.513 \N Owning a node has the advantage that If you own some kind of system that earns from satoshis going and coming it surely helps you to mitigate some sats onchain (because you can open a channel directly with the service/exchange) ... But you actually don't need a full node (with all bitcoin blockchain) and 100% online to achieve that..\n\nSimply download blixt wallet, put some sats there and open a private channel with the service you want and you're good to go!\n\nUsing LNbits as as service to family and friends it's fun, but you keep their custody (that's not very funny) because if something happens to your node (suppose you get hacked), you are held accountable for their funds (and yours)\n\nIn general, apart of being some kind of hobby (that you spend money, but you enjoy), having own node is difficult, risky and you end up spending money to maintain it:\n\nI had 30 channels that I have lost 4 times due to UPS failing to protect the system from surge, and having to tinker with:\n\n- Onchain fees from all force closure (from recovery)\n- Onchain fees to open all channels again (cheaper cause you can batch open 10 at a time)\n- Onchain fees from force closing some channels\n- purchasing inbound liquidity\n- spending days with funds locked due to maurity\n- Spending days to recover funds from channels that force closing didn't work\n- Spending sats rebalancing\n- Extra Electricity having 24/7 pc on\n- Buying the risk of being hacked - If somehow someone gets access to your RTL or SSH one can spend all of your funds!\n\nIf I do the math, I turn it off... But as a hobbist I'll tackle along a little more! https://example.com/ 7425 451246 451246.451403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.93493639256585 0 \N \N f 0 \N 0 167119822 0 f f \N \N \N \N 451246 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422597 2025-03-02 15:16:31.651 2025-03-29 22:39:50.513 \N Pizza last weekend, and I really need to onboard my fruits/veg/smoothies people this week! https://example.com/ 13574 422532 422056.422532.422597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.188664784335 0 \N \N f 6651751 \N 1 146064500 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417035 2025-02-26 02:33:14.078 2025-03-29 22:39:50.514 \N Not necessarily. If one company opens a channel to everybody then everyone is connected to one another through one big routing node. Job done. No need for individual channels between Alice and Carol if Bob is in the middle with a channel to both (and everyone else). https://example.com/ 19813 416547 416547.417035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1969878568806 0 \N \N f 0 \N 0 150507413 0 f f \N \N \N \N 416547 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401286 2025-02-12 21:05:36.988 2025-03-29 22:39:50.514 \N **Suggestion**: The "Invitee Limit" field should appear pre filled with a default value https://example.com/ 4074 400918 400918.401286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.24626628334577 0 \N \N f 0 \N 0 146335417 0 f f \N \N \N \N 400918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404600 2025-02-16 01:52:42.394 2025-03-29 22:39:50.514 \N ![](https://images4.penguinrandomhouse.com/cover/9780593599730)\n\nFirst time I read it, ninja-sword wielding pizza delivery guys called Deliverators didn't do it for me. This time around, I'm really digging it. https://example.com/ 19217 404546 404136.404203.404242.404332.404334.404411.404546.404600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.85371859304969 0 \N \N f 0 \N 0 74203351 0 f f \N \N \N \N 404136 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448542 2025-03-22 17:05:25.894 2025-03-29 22:39:50.514 \N Hey @k00b or @ek, I'm getting an error "no wallet to receive available" whenever I try to zap someone. https://example.com/ 12566 448470 448470.448542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.64626483931657 0 \N \N f 0 \N 0 135855272 0 f f \N \N \N \N 448470 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404509 2025-02-15 23:37:37.295 2025-03-29 22:39:47.613 Will Decentralized Legal Representation Become A Thing For Core Developers? It seems that the Craig Wright chapter in the history of bitcoin is coming to a [close](https://dailyhodl.com/2024/04/18/self-proclaimed-bitcoin-creator-craig-wright-drops-lawsuit-against-btc-developers/). I suspect that his shenanigans would have been nipped in the bud more quickly if he had begun these lawsuits after BlackRock, Fidelity and the rest had already issued their spot btc ETF’s. The big guns on Wall Street would have hired their powerful law firms to crush his efforts. They would not have had the patience to play around with one guy who jeopardized their massive investments. \n\nIs that a good thing? Well, I guess so. The bitcoin core developers who generously give their time to the project would not have been threatened with financial ruin. Maybe bitcoin would still have some talented people around who are now gone. \n\nIt does raise questions, though, about the independence of bitcoin core developers. Who wouldn’t want to hire the best lawyers money can buy if their wealth is threatened? Of course, they would then be beholden to their benefactors. I do worry that this may become an issue in the future.\n\nI know Jack Dorsey’s [Bitcoin Legal Defense Fund](https://bitcoindefense.org/) was created to protect core developers, but it may be no match for BlackRock’s big boys in the future. Do we want core developer legal fees paid for by ETF institutions? It would be a serious conflict of interest. I think this is something to think about. \n \N 1286 \N 404509 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 4.45270241636354 0 \N \N f 0 \N 0 246670573 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444398 2025-03-19 20:58:49.235 2025-03-29 22:39:50.515 \N Yesterday, I launched my new book for spanish readers. [Available on Amazon](https://www.amazon.com/Conociendo-Bitcoin-II-Or%C3%ADgenes-bitcoin-ebook/dp/B0BWYVVYZ9?ref_=ast_author_mpb) and I can't tell how happy I am.\n\nKeep stacking sats fren and stay humble. https://example.com/ 1733 444255 444168.444255.444398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.118978214089 0 \N \N f 0 \N 0 37245254 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444326 2025-03-19 19:35:53.245 2025-03-29 22:39:50.515 \N Does the 16th amendment count? IYKYK! https://example.com/ 12736 444317 444168.444305.444317.444326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0975462244875 0 \N \N f 0 \N 0 15984274 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404602 2025-02-16 01:58:30.068 2025-03-29 22:39:50.516 \N Money playing a role in content discovery is why I am here. \n\nThe whole internet has been likes, seniority, censorship, and nepotism because there never was a way to make people put some skin in the game. \n\nIt's exciting to see what can happen when money is tied very closely to the rating mechanism to determine what rises to the top. \n\nCan it be gamed? Sure. Costco can sell $1.50 hotdogs at a loss, too. But the question is will this be better than the other ways of doing it. We're finding out zap by zap. https://example.com/ 21079 404366 404366.404602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.61984567754102 0 \N \N f 0 \N 0 229705321 0 f f \N \N \N \N 404366 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448587 2025-03-22 17:57:27.093 2025-03-29 22:39:50.516 \N I need to set up a Nostr and twitter account for Stacker Sports so I can shamelessly promote SN everywhere I go. See you there. https://example.com/ 1454 448578 448494.448578.448587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7324923332677 0 \N \N f 0 \N 0 235694238 0 f f \N \N \N \N 448494 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423536 2025-03-03 12:47:28.94 2025-03-29 22:39:50.516 \N Read a bitcoin magazine article last night about paying rent in Bitcoin. So now I’m going to try and out. Going to offer my tenant a 5% discount if they pay the rent in Bitcoin. I wonder if they will take the incentive or just continue paying in fiat. Time will tell. If they do go the Bitcoin route think I will use zaprite for invoicing and track the accounting for tax purposes https://example.com/ 6419 423512 423512.423536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.85720502994436 0 \N \N f 0 \N 0 43467944 0 f f \N \N \N \N 423512 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423078 2025-03-02 23:50:25.038 2025-03-29 22:39:50.517 \N Literally was just listening the @kr podcast with @koob talking about John Carvahlo’s web of trust. \n\nWhat is “good” is going to be very contextual to you and your interests. So yes, YOUR upvotes should definitely curate your view of SN.\n\nBut there is something interesting that could be done with archetypes and an overall SN feed/channel. The “tech” or “ meme” archetypes could be community curated based on individual users as well (your OG idea).\n\nThis is churning through my brain today… https://example.com/ 21238 423046 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422918.422933.422939.422941.423046.423078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.34654221709485 0 \N \N f 0 \N 0 110256647 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417037 2025-02-26 02:37:15.934 2025-03-29 22:39:50.517 \N People who flex about getting in early, and use that to dismiss valid criticism. https://example.com/ 21369 416806 416806.417037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7543386052363 0 \N \N f 0 \N 0 249301478 0 f f \N \N \N \N 416806 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421718 2025-03-01 22:48:24.019 2025-03-29 22:39:50.518 \N Lost it crossing a river https://example.com/ 18901 421260 421260.421718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2946232555842 0 \N \N f 0 \N 0 152254666 0 f f \N \N \N \N 421260 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413934 2025-02-23 14:33:27.94 2025-03-29 22:39:50.518 \N that's as beautiful as a mushroom cloud https://example.com/ 18608 413908 413908.413934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1330990805975 0 \N \N f 0 \N 0 172553091 0 f f \N \N \N \N 413908 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417038 2025-02-26 02:38:30.264 2025-03-29 22:39:47.613 The Basic Laws of Human stupidity - part 8 & 9 >Previously:\n>- [Introduction and Chapter 1](https://stacker.news/items/678475)\n>- [Chapter 2](https://stacker.news/items/679184)\n>- [Chapter 3](https://stacker.news/items/680471)\n>- [Chapter 4](https://stacker.news/items/681686)\n>- [Chapter 5](https://stacker.news/items/683011)\n>- [Chapter 6 & 7](https://stacker.news/items/684225)\n\n![](https://m.stacker.news/51970)\n\n### RECAP of Basic Law of Human stupidity:\n1. Always and inevitably everyone underestimates the number of stupid individuals in circulation.\n2. The probability that a certain person be stupid is independent of any other characteristic of that person.\n3. A stupid person is a person who causes losses to another person or to a group of persons while himself deriving no gain and even possibly incurring losses.\n\n## Chapter 8\n### The Fourth Basic Law\n\nThat helpless people, namely those who in our accounting system fall into the H area, do not normally recognize how dangerous stupid people are, is not at all surprising. Their failure is just another expression of their helplessness. The truly amazing fact, however, is that also intelligent people and bandits often fail to recognize the power to damage inherent in stupidity. lt is extremely difficult to explain why this should happen and one can only remark that when confronted with stupid individuals often intelligent men as well as bandits make the mistake of indulging in feelings of self-complacency and contemptuousness instead of immediately secreting adequate quantities of adrenalin and building up defenses.\n\nOne is tempted to believe that a stupid man will only do harm to himself but this is confusing stupidity with helplessness. On occasion one is tempted to associate oneself with a stupid individual in order to use him for one's own schemes.\n\nSuch a manoeuvre cannot but have disastrous effects because:\n- a) it is based on a complete misunderstanding of the essential nature of stupidity\n- b) it gives the stupid person added scope for the exercise of his gifts. \n\nOne may hope to outmanoeuvre the stupid and up to a point one may actually do so. But because of the erratic behavior of the stupid, one cannot foresee ail the stupid's actions and reactions and before long one will be pulverized by the unpredictable moves of the stupid partner.\n\nThis is clearly summarized in the Fourth Basic Law which states that:\n\n### Non-stupid people always underestimate the damaging power of stupid individuals. ln particular non-stupid people constantly forget that at all times and places and under any circumstances to deal and/or associate with stupid people infallibly turns out to be a costly mistake.\n\nThrough centuries and millennia, in public as in private life, countless individuals have failed to take account of the Fourth Basic Law and the failure has caused mankind incalculable losses\n\n## Chapter 9\n### Macro Analysis and the Fifth Basic Law\n\nThe consideration on which the previous chapter ends is conducive to a macro-type of analysis in which instead of considering the welfare of the individual one considers the welfare of the society, regarded in this context as the algebric sum of the individual conditions. A full understanding of the Fifth Basic Law is essential to the analysis. lt may be parenthetically added here that of the Five.\n\nBasic Laws, the Fifth is certainly the best known and its corollary is quoted very frequently. The Fifth Basic Law states that:\n\n### A stupid person is the most dangerous type of person.\n\nThe corollary of the Law is that\n\n### A stupid person is more dangerous than a bandit.\n\nThe formulation of the Law and its corollary is still of the micro-type. As indicated above, however, the Law and its corollary have far reaching implications of a macro-nature.\n\nThe essential point to keep in mind is this: the result of the action of a perfect bandit ( the person who falls on line OM of figure 2) is purely and simply a transfer of wealth and/or welfare.\n\n![](https://m.stacker.news/51971)\n\nAfter the action of a perfect bandit, the bandit has a plus on his account which plus is exactly equivalent to the minus he has caused to another person. The society as a whole is neither better nor worse off. If ail members of a society were perfect bandits the society would remain stagnant but there would be no major disaster.\n\nThe whole business would amount to massive transfers of wealth and welfare in favour of those who would take action. If all members of the society would take action in regular turns, not only the society as a whole but also individuals would find themselves in a perfectly steady state of no change.\n\nWhen stupid people are at work, the story is totally different. Stupid people cause losses to other people with no counterpart of gains on their own account. Thus the society as a whole is impoverished.\n\nThe system of accounting which finds expression in the basic graphs shows that while all actions of individuals falling to the right of the line POM (see fig. 3) add to the welfare of a society, although in different degrees, the actions of ail individuals falling to the left of the same line POM cause a deterioration.\n\n![](https://m.stacker.news/51972)\n\nln other words the helpless with overtones of intelligence (area H1), the bandits with overtones of intelligence (area B 1) and ab overall the intelligent ( area /) all con tribute, though in different degrees, to accrue to the welfare of a society. On the other hand the bandits with overtones of stupidity ( are a B 5) and the helpless with overtones of stupidity ( area H 8) manage to add losses to those caused by stupid people thus enhancing the nefarious destructive power of the latter group.\n\nAll this suggests some reflection on the performance of societies. According to the Second Basic Law, the fraction of stupid people is a constant Œ which is not affected by time, space, race, class or any other socio-cultural or historical variable.\n\nlt would be a profound mistake to believe the number of stupid people in a declining society is greater than in a developing society. Both such societies are plagued by the same percentage of stupid people. The difference between the two societies is that in the society which performs poorly:\n\n- a) the stupid members of the society are allowed by the other members to become more active and take more actions;\n- b) there is a change in the composition of the non -stupid section with a relative decline of populations of areas /, H1 and B1 and a proportionate increase of populations of area H8 and B8. \n\nThis theoretical presumption is abundantly confirmed by an exhaustive analysis of historical cases. ln fact the historical analysis allows us to reformulate the theoretical conclusions in a more factual way and with more realistic detail.\n\nWhether one considers classical, or medieval, or modern or contemporary times one is impressed by the fact that any country moving uphill has its unavoidable Œ fraction of stupid people. However the country moving uphill also has an unusually high fraction of intelligent people who manage to keep the Œ fraction at bay and at the same time produce enough gains for themselves and the other members of the community to make progress a certainty.\n\nln a country which is moving downhill, the fraction of stupid people is still equal to Œ; however in the remaining population one notices among those in power an alarming proliferation of the bandits with overtones of stupidity ( sub area B 8 of quadrant B in figure 3) and among those not in power an equally alarming growth in the number of helpless individuals ( area H in basic graph, fig. 1).\n\n![](https://m.stacker.news/51973)\n\nSuch change in the composition of the non-stupid population inevitably strengthens the destructive power of the Œ fraction and makes decline a certainty. And the country goes to Hell.\n\n### *THE END*\n\nI hope you enjoy this funny and quite informative short book.\n\nTo end with proof of human stupidity, here it is:\n![](https://m.stacker.news/51974)\n\n*If you want to have this book in electronic format [here is a download link (epub and pdf).](https://gofile.io/d/5FyHth)*\n \N 11561 \N 417038 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.136471748698 0 \N \N f 0 \N 0 6714601 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410726 2025-02-20 16:37:30.191 2025-03-29 22:39:50.518 \N The CEO could not be reached for comment. https://example.com/ 13143 410054 410018.410054.410726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62080665025325 0 \N \N f 0 \N 0 159752756 0 f f \N \N \N \N 410018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423366 2025-03-03 09:40:07.264 2025-03-29 22:39:50.518 \N No need to get personal! :) https://example.com/ 13162 423130 422334.422406.422408.422569.422574.423130.423366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6706408214097 0 \N \N f 0 \N 0 205536596 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442811 2025-03-18 20:42:15.073 2025-03-29 22:39:50.518 \N This is not a risk imo. The risk is rather getting dragged down into an unbearable circlejerk echochamber. https://example.com/ 3417 441752 441752.442811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4269557935992 0 \N \N f 0 \N 0 111750753 0 f f \N \N \N \N 441752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456877 2025-03-28 00:05:08.826 2025-03-29 22:39:50.519 \N Non-custodial channel liquidity needs to be a priority for Lightning businesses & entrepreneurs.\n\nIt’s such a crappy experience, downloading the chain, installing the lightning app and attempting your first payment, withdrawal or even channel open and still not finding a route to your node.\n\nUntil then, custodial lightning offers the convenient workaround https://example.com/ 11678 287984 287984.456877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.52728543336874 0 \N \N f 0 \N 0 51887188 0 f f \N \N \N \N 287984 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451393 2025-03-24 14:30:59.659 2025-03-29 22:39:50.519 \N Hahahah I think we have a battle here.\n\nMany years ago my friend who is really into wings told me about the BD Wong’s (the actor) way of eating wings. He told me how it’s done and of course I never did it or looked it up until today \n\nhttps://youtu.be/25SLTtOXGEU?si=X7TGwUF2Ip7aLoBs\n\n\nI think I will do it BD’s way \n\nMaybe https://example.com/ 20254 451124 451124.451393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.3513001611776 0 \N \N f 0 \N 0 142664488 0 f f \N \N \N \N 451124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443502 2025-03-19 11:44:27.212 2025-03-29 22:39:50.519 \N Question #2: What steps are each of you taking to attract new Bitcoin builders to your respective projects? Are you constrained by the talent pool of Bitcoin builders today? https://example.com/ 9796 443495 443495.443502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.032381209402 0 \N \N f 0 \N 0 214892297 0 f f \N \N \N \N 443495 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401531 2025-02-13 05:44:36.819 2025-03-29 22:39:47.61 SN Saturday Newsletter 4/20/24 Happy Sat-urday Stackers,\n\nBlaze it! I'm *half* kidding. Feeget about it.\n\n##### Top Posts\n1. [Some thoughts on success](https://stacker.news/items/504913)\n - There's a lot to say about success. It's complicated. It's relevant to everything. Yet, to this editor, the inputs to self-actualizing are so numerous it's about as vulnerable to conscious thought as walking across a room is.\n - 20.9k sats \\ 44 comments \\ [@elvismercury](https://stacker.news/elvismercury)\n2. [WW3, maybe.](https://stacker.news/items/511151)\n - Fuck.\n - 3.4k sats \\ 29 comments \\ [@elvismercury](https://stacker.news/elvismercury)\n3. [Optionality](https://stacker.news/items/512150)\n - [@CarlBMenger](https://stacker.news/CarlBMenger) motivates optionality, separating important options from frivolous ones, and lists the self-improvement areas that increase our options the most.\n - 12.4k sats \\ 7 comments \\ [@CarlBMenger](https://stacker.news/CarlBMenger)\n4. [Where were you last halving?](https://stacker.news/items/509870)\n - One hundred and twenty thousand blocks ago, in May of 2020, we had our last halving. [@siggy47](https://stacker.news/siggy47) asks us how we spent it.\n - 3.4k sats \\ 54 comments \\ [@siggy47](https://stacker.news/siggy47)\n5. [Introducing Lightning Payouts - Braiins Pool - In Production (out of Beta)](https://stacker.news/items/510518)\n - To the delight of fee-sensitive pleb miners everywhere, Braiins mining pool begins paying out miners via lightning addresses.\n - 4.7k sats \\ 30 comments \\ [@Wumbo](https://stacker.news/Wumbo)\n\n##### Top AMAs\n- [CJ Wilson / @Str8edgeracer AMA](https://stacker.news/items/508010)\n - 25.3k sats \\ 103 comments \\ [@CJWracing](https://stacker.news/CJWracing)\n- [Ian Major AMA](https://stacker.news/items/510121)\n - 16.8k sats \\ 54 comments \\ [@IanM](https://stacker.news/IanM)\n\n\n##### Don't miss\n- [Bitcoin during War Times.](https://stacker.news/items/504930)\n- [The Rise And Fall Of The LAN Party](https://stacker.news/items/507190)\n- [Sunday Survey: How much is the most expensive item you've bought with Bitcoin?](https://stacker.news/items/505478)\n- [What Would Carl Menger Think Of Bitcoin?](https://stacker.news/items/506385)\n- [What Makes a Shitcoin?](https://stacker.news/items/507556)\n- [Stop Calling It MEV · BlueMatt's Blog](https://stacker.news/items/508878)\n- [Canada: The widening gap between public, private and self-employment](https://stacker.news/items/505979)\n- [Bank in Canada won’t let customer withdraw cash](https://stacker.news/items/506752)\n- [Halving Fee Chaos](https://stacker.news/items/512009)\n- [Americans don't get how much poorer Europe is: House sizes edition](https://stacker.news/items/507891)\n- [Japanese Yen continues to crash, almost 155 Yen to USD 📈](https://stacker.news/items/507867)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [An Interview with @k00b](https://stacker.news/items/507227)\n- [Join Us Today for a Q1 Review + Q2 Roadmap Discussion (11am ET)](https://stacker.news/items/506566)\n- [SN Invite Links](https://stacker.news/items/506976)\n- [A Case for More Events on SN](https://stacker.news/items/508794)\n- [SN release: CLN autowithdraw, manage mutes, paste images, r-click notifications](https://stacker.news/items/509217)\n- [Feature Request : Partially Funded Mutual Territories](https://stacker.news/items/505551)\n- [SN Outlaw Hideout: Where all the outlawed posts are](https://stacker.news/items/508204)\n\n-------\n\n##### Top Monday meme \\ 25.3k sats \\ [@davidw](https://stacker.news/davidw)\n![](https://imgprxy.stacker.news/ZVv4pyyPU8A9a48fp9k5i5_uGKHnXXxlmZveBChVUx4/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yNjcwOA)\n\n[**all monday memes**](https://stacker.news/items/506483)\n\n------\n\n##### Top Friday fun fact \\ 10.6k sats \\ [@Coinsreporter](https://stacker.news/Coinsreporter)\n> ## The Stadium Built on the Equator, Where Each Team Defends a Hemisphere\n>\n> ![images - 2024-04-19T155010.322.jpeg](https://imgprxy.stacker.news/jx0ySs_kAsJnOXTp8hWdcnUGjpMzU1B92x-03VzbWJg/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yNzMxMA)\n>\n> In Brazil you will find Zerão, a famous football field known in English as, ‘the Big Zero’. Opened in 1990, the stadium was designed so the midfield line fell exactly on the Equator, meaning each half lies on a different hemisphere.\n>\n> ***[Although its official name is Estádio Milton de Souza Corrêa, everyone calls it Zerão](https://en.m.wikipedia.org/wiki/Zer%C3%A3o.)***\n>\n\n\n[**all friday fun facts**](https://stacker.news/items/511234)\n\n------\n\n##### Top Stackers\n1. [@grayruby](https://stacker.news/grayruby): 47.2k sats stacked\n2. [@CJWracing](https://stacker.news/CJWracing): 45.8k sats stacked\n3. [@elvismercury](https://stacker.news/elvismercury): 34.3k sats stacked\n4. [@AGORA](https://stacker.news/AGORA): 31.5k sats stacked\n5. [@ek](https://stacker.news/ek): 30.8k sats stacked\n\n------\n\n##### Top Spenders\n1. [@k00b](https://stacker.news/k00b): 164.2k sats spent\n2. [@needcreations_](https://stacker.news/needcreations_): 125.3k sats spent\n3. [@Undisciplined](https://stacker.news/Undisciplined): 79.2k sats spent\n4. [@grayruby](https://stacker.news/grayruby): 50.5k sats spent\n5. [@TNStacker](https://stacker.news/TNStacker): 41.5k sats spent\n\n------\n\n##### Top Cowboys\n1. [@kr](https://stacker.news/kr): 445 days\n2. [@kepford](https://stacker.news/kepford): 271 days\n3. [@SatsCats](https://stacker.news/SatsCats): 230 days\n4. [@tnuts420](https://stacker.news/tnuts420): 229 days\n5. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 225 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 6616 \N 401531 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5853300304612 0 \N \N f 0 \N 0 48442826 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421590 2025-03-01 19:14:16.876 2025-03-29 22:39:47.613 Calling for merchants: please share your BTC onboarding story on SN I am calling for all SN users having a shop, commerce etc or even if they have friends with shops that start accepting Bitcoin.\n\nPlease share here your story (no need to give specific location details if you do not want to dox yourself), just explain how was your process and what would like to be better:\n- type of shop your have (online or brick&mortar)\n- type of commerce (retail, grocery, bar etc)\n- how was the onboarding process\n- what tools / apps you used, in the beginning and later\n- how you improved your use of bitcoin apps\n- how you consider bitcoin in your accounting (cash or "investment")\n- anything you would like to share\n\nWe need more voice from Bitcoin merchants! Let's hear them! \N 760 \N 421590 \N \N \N \N \N \N \N \N health \N ACTIVE \N 26.3777026024444 0 \N \N f 0 \N 0 181979179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441899 2025-03-18 11:07:35.496 2025-03-29 22:39:50.518 \N - [Century of enslavement: the history of federal reserve](https://www.bitchute.com/video/zwdCl18pslkC/)\n- [The creature from Jekyll island](https://www.bitchute.com/video/WjSOLRL0Q5F5/)\n- [Hidden secrets of money](https://www.youtube.com/playlist?list=PLE88E9ICdiphYjJkeeLL2O09eJoC8r7Dc)\n- [The 4 horsemen](https://www.youtube.com/watch?v=5fbvquHSPJU) https://example.com/ 9985 441895 441866.441895.441899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9726189077227 0 \N \N f 0 \N 0 17386547 0 f f \N \N \N \N 441866 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401474 2025-02-13 04:12:42.176 2025-03-29 22:39:50.519 \N Bonus question: What is one Bitcoin opinion you hold that most of your Twitter followers would disagree with? https://example.com/ 4166 401472 401452.401462.401472.401474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.89147911562993 0 \N \N f 0 \N 0 163506253 0 f f \N \N \N \N 401452 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408093 2025-02-18 15:03:48.509 2025-03-29 22:39:50.519 \N Question #6: Are there any specific segments of the Bitcoin industry that dsserve more attention/focus yet are under-appreciated or under-funded today? https://example.com/ 2775 408069 407903.407928.407976.408016.408026.408039.408056.408069.408093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7257230798134 0 \N \N f 0 \N 0 232040768 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401888 2025-02-13 12:42:15.452 2025-03-29 22:39:50.52 \N thank you! gonna start posting some more longform content on here relating to macro and bitcoin.\n\nthe lightning network is blowing my mind the more i learn about it https://example.com/ 1564 401603 401603.401888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4372664339642 0 \N \N f 0 \N 0 137812768 0 f f \N \N \N \N 401603 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444223 2025-03-19 18:19:16.887 2025-03-29 22:39:50.52 \N More details are provided on my github, where I'm also nearly finished with a proof-of-concept implementation of bitvm for bristol circuits:\n\nhttps://github.com/supertestnet/tapleaf-circuits/ https://example.com/ 20812 444220 444168.444220.444223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1564700053731 0 \N \N f 0 \N 0 178126927 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423076 2025-03-02 23:49:11.568 2025-03-29 22:39:50.52 \N I have been learning some new languages lately. Very fulfilling! \n https://example.com/ 695 423046 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422918.422933.422939.422941.423046.423076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.29396909671996 0 \N \N f 0 \N 0 128009433 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410092 2025-02-20 08:44:31.606 2025-03-29 22:39:47.61 New Whirlpool coinjoin spotted Txid: https://mempool.space/tx/07faa810c631970f2fe23c61315c64005986156705525d8fb4777e29de7a1b37\n\nSomeone crafted a Whirlpool-like coinjoin transaction. The difference is that there is no premix tx0 funding it with new liquidity, it's made entirely of remixes from earlier coinjoin transactions. \N 2196 \N 410092 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.8973722416758 0 \N \N f 0 \N 0 213646462 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458362 2025-03-29 08:23:12.723 2025-03-29 22:39:47.61 On Spamcoin Revenue for Miners The narrative around ordinals is ever-changing, but one of the more persistent ones is about how it enables miners to have a better business. The main idea is that by subsidizing miners, the Bitcoin network is going to get stronger and more robust.\n\nThere are several problems with this argument, but let me focus on one particular aspect. The argument that spamcoins will strengthen mining companies is based on more fees. And indeed, that's true. But for it to really benefit mining companies, the revenue needs to be consistent and reliable. And the thing about these short term fee spikes is that they are anything but consistent and reliable.\n\nSure, you get some blocks where the fees are greater than the block reward, but that's the exception, and not the rule. They generally congregate around the hype of one thing or another. In the case of ordinals and BRC-20, they clearly spiked when Binance listed one of the tokens. It was a fickle altcoin market's coin of the month, and while it did spike fees, the fees came down a short while later.\n\nSurprisingly, the dynamic is similar to what we've seen in energy markets with renewables like wind and solar. Like spamcoin revenue, they are both also unreliable and inconsistent, and they've added considerable variance to the business of energy. Rather than strengthening the grid, they've weakened it considerably, creating terrible mismatches of supply and demand, which inevitably result in blackouts or brownouts.\n\nIn the same way, spamcoin fee revenue has made the business of mining that much harder to predict. The revenue is not consistent or reliable, so to depend on that revenue is, from a business standpoint, a considerable risk. Any fee spike that's based on a random scammer's pump and dump is not easy to predict and leaving around extra mining capacity to take advantage of these spikes is not tenable. In other words, from a business standpoint, it makes little sense to modify a business trying to capture this intermittent, unpredictable revenue.\n\nThe thing that businesses need is consistent and predictable revenue because that's what allows them to plan and grow. A flash in the pan like spamcoins is not something that's really going to help with that. Consistent fee revenue, something that has a proven track record, is what mining businesses need to really take advantage and invest in capital goods. Indeed, when we say "fee market," that's what we mean, not these random spikes based on dishonest marketing and hype.\n\nIn the meantime, fee spikes like this are a nice little bonus, but they are more likely to create malinvestment. If a business makes that bet that spamcoin fee revenue will stay consistent for the next 4 years, they're likely to lose to a competitor that doesn't make this assumption.\n\nWe like to believe that a dollar earned is the same no matter where it comes from, but that's just not the case. If it's a dollar earned that you can't predict, it's unhelpful and perhaps even detrimental for planning. Spamcoins are in the long term not good for miners as they are so obviously hype-based. We need to dispense with unsophisticated narratives like this.\n\nBitcoiners are better than that. \N 1647 \N 458362 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 23.7674341193754 0 \N \N f 0 \N 0 197317364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402535 2025-02-13 19:48:48.051 2025-03-29 22:39:47.61 FINCEN MegaThread | Support Bitcoin Privacy Developers | Use Privacy Tools Today GM Stacker News,\n\n[/₿egin inspiring cut scene\n](https://youtu.be/wdFjGRmgiRU?si=gEBPQ4xpg4n2Cpw_)\n https://youtu.be/wdFjGRmgiRU?si=gEBPQ4xpg4n2Cpw_ \n\n# Remember Remember, The 5th of November…\n\nPlease forgive the pomp as I step up to this virtual soapbox for a little 5th of November chat.\n\nYou’re sitting at home, looking for something to do while you wait for your favorite TV show to come on this evening.\n\n\nYou've got time to kill.\n\n\nWhy not give FINCEN and the Treasury Department [a good Yellin-g](https://www.regulations.gov/commenton/FINCEN-2023-0016-0001) for [their presumptive assertion](https://www.regulations.gov/document/FINCEN-2023-0016-0001) over your right to transact privately. (You have less than 78 days from the time of this post, to make a comment. Anyone can comment, and comment privately. Current comment count stands at 768.) \n\nBetter still, why not use that time to learn [Bitcoin privacy best practices](https://bitcoinprivacy.me/)?\nThat’s right anon, today, you’ve been activated, called up for general mobilization in the fight for the sovereign individual.\n\nSome of you may remember[ the last time](https://www.reddit.com/r/Bitcoin/comments/kjr08s/fincen_regulation_megathread_make_your_voice/) we went through this 3 years ago. Trump & Mnuchin tried to pull a fast one on us as they were exiting stage right, but failed.\n\n\nWell the Biden admin is trying to do the same thing again, spear headed by Yellen and the Treasury Department/FINCEN. Welcome to the eternal struggle.\n\nThe powers that be have taken it upon themselves to acquire one more inch of your-selves.\nDo not give them your silent consent.\n\n[Proposed FINCEN regulations](https://www.regulations.gov/document/FINCEN-2023-0016-0001) surrounding Bitcoin privacy tools will not have the effect regulators desire. They will only serve to further drive the concerning activities further underground, where they will achieve full actualization beyond their control. Long term, they embolden the very concerns they hope to suppress. \nFurthermore, I do not respect their sub-textual assertion of sovereignty over our right to financial privacy.\n\n[Without economic freedom you cannot have political freedom](https://mises.org/library/theres-no-political-freedom-without-economic-freedom). By attempting to capture this economic freedom in a surveillance blackbox at FINCEN, they will only galvanize a force against their public offices. \n\n[Representatives Who Have Volunteered to be on Our Shit List:](https://www.warren.senate.gov/imo/media/doc/2023.10.17%20Letter%20to%20Treasury%20and%20White%20House%20re%20Hamas%20crypto%20security.pdf)\n\nTreasury Department's General Phone Number: (202) 622-2000\n\nJanet Yellen’s Twitter: https://twitter.com/SecYellen\n\nUS Treasury Twitter: https://twitter.com/USTreasury\n\n**Take your right to transact, to transact privately, explicitly, without apology and with righteous authority.**\n\nYou are not consumers or the governed. You are The Citizenry.\n\nAct in good faith, be worthy of your freedoms.\n\n\nWhat you can do:\n\nThere are four activities that are worthy of your attention today. Choose just one, and then do a second one if you have the time, and comment with which one you did.\nThe first is less meaningful than the second, third and fourth.\n\n\n### [Submit a comment](https://www.regulations.gov/commenton/FINCEN-2023-0016-0001) to the treasury department regarding their misguided attempt at regulating/suppressing Bitcoin privacy enhancing transactions. These rules only serve to ban their fiat institutions from participating in this ecosystem. Anyone can comment, and comment anonymously. Some example templates of comments submitted include:\n\n1. https://twitter.com/FractalEncrypt/status/1719440960281575907\n\n2. https://twitter.com/skwp/status/1719025440663261376\n\n3. https://gist.github.com/skwp/16c668bbb96e17f9176d6d4d39cc79fd\n\n4. Or, consider submitting a copy of the Cypherpunk Manifesto for the record. Also, Read It: https://www.activism.net/cypherpunk/manifesto.html\n\n### The more meaningful act you can do is learn [how to use](https://youtu.be/FbyjG2upGO8?si=9HvcGmmXrB5d6lU2) Bitcoin [privacy tools](https://youtu.be/9COdlsh4inY?si=c0ZL405Jm9QS8pXH). Do a [coinjoin](https://en.bitcoin.it/wiki/CoinJoin) and/or[ payjoin](https://en.bitcoin.it/wiki/PayJoin) today with joinmarket! Do a [payjoin transaction](https://en.bitcoin.it/wiki/PayJoin_adoption) today with a friend! Learn about the benefits and trade offs of privacy enhancing Bitcoin tools like [paynym’s](https://bitcointalk.org/index.php?topic=5433032.0),[ atomic swaps](https://en.bitcoin.it/wiki/Atomic_swap), [lightning](https://lightningprivacy.com/en/introduction), and [coin selection](https://bitcoin.design/guide/how-it-works/coin-selection/) practices.\n\n\n[Buy and sell your Bitcoin KYC free, Peer to Peer.](https://bitcoiner.guide/nokyconly/)\n\nAlso, [lobby Bitcoin wallet developers](https://twitter.com/BITCOINALLCAPS/status/1720519789452374298) to fully support payjoins, coin selection, and other privacy tools.\n\nIf you want to go a step farther, you could use a combination of these tools and have the coins sent to a SATSCARD or Opendime. This could then be swapped with a friend or group of friends in person for an equivalent amount of Bitcoin for an in person, offchain, ghost coinjoin. There are now countless Bitcoin conferences and local meetups happening all over the world. It would be great if these events coordinated such privacy enhancing activities. [Example physical in-person coinjoin event](https://medium.com/@Fiach_dubh/off-chain-bitcoin-swaps-with-the-satscard-942b31243c8b).\n\n\n### The third thing you can do is fund open source developers who work on maintaining and improving privacy enhancing tools today. There will be crowdfunders out there on this issue. But more than likely these will raise money for lawyers and lobbyists, who will only talk to senators and congressmen in Washington.\nThis is a horrible use of funds.\n\nRather, Please, directly support developers who are working on the tools we use today for onchain and offchain Bitcoin privacy.\n\nA decent list of Bitcoin developers and their Bitcoin donation addresses can be found at https://bitcoindevlist.com (Be sure to support the ones working on Bitcoin Privacy Tools)\n\nIf you want to send sats via the lightning network to a general fund for this purpose, you can use [this page](https://geyser.fund/project/supportbitcoinprivacydevs) that I maintain to donate sats. I will be sending all collected funds to Bitcoin privacy tool maintainers and developers.\n\nBut be warned, this platform (geyser) takes a 2% cut, and I could rug pull this donation page at any time. If you don’t want to trust me, then verify by donating directly to developers, not third party middlemen like geyser or myself.\n\n### [Learn the benefits of running a Bitcoin node](https://blog.lopp.net/securing-your-financial-sovereignty/). Run one, not just for your privacy, but your overall Bitcoin sovereignty. It’s very easy to run a node. You install a program ([usually bitcoin core](https://bitcoincore.org)) and let it run. That’s it. This can be done on windows, linux and mac.\n\nGo a step further by [verifying the binaries](https://youtu.be/U0I-ImS_r8o?si=mgsIZPoKbAmRfU8S) of the bitcoin node program you download.\n \nGo a step further by [building Bitcoin Core from source](https://dev-notes.eu/2020/10/Build-Bitcoin-Core-in-Ubuntu/).\n\nGo a step further by [running the node over tor](https://youtu.be/goTkOt8Rr1Q?si=5pSA6Ong-K-Ai9hD) or i2p. \n\nGo a step further by running a BIP324 node ([which will be available in the next release of Bitcoin Core](https://github.com/bitcoin-core/bitcoin-devwiki/wiki/26.0-Release-Notes-Draft#p2p-and-network-changes)). \n\n\nThank you for reading and participating in this civil protest. Whether it’s making a comment to FINCEN, phoning your representative, using Bitcoin privacy tools, or just learning about your options to run a Bitcoin node, any of these small steps are ones in the right direction. Any one of these small acts matters. You don't have to do all of them. Just one. Take your pick.\n\nThank You.\n\nOnward.\n\nReddit thread for reference: https://www.reddit.com/r/Bitcoin/s/Gy7O7scPd6 \N 10291 \N 402535 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.6815834715687 0 \N \N f 0 \N 0 116831021 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401392 2025-02-13 00:14:02.916 2025-03-29 22:39:50.518 \N https://bitcointogo.xyz/ A dreaming tool for bitcoiners... https://example.com/ 11498 401390 401351.401381.401384.401385.401390.401392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.73914510450925 0 \N \N f 0 \N 0 32680116 0 f f \N \N \N \N 401351 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434949 2025-03-12 11:08:22.86 2025-03-29 22:39:50.518 \N I gained so many zaps these two days that I feel embarrassed about getting them. Why me? Are my posts so deserving? \n\nWill commit 328 sats per zap for the next 24 hours.\n\nThank you, Stackers, for your engagement and donations to the rewards pool so that others like me get a share of the pie.\n\n![IMG_0659.png](https://m.stacker.news/14293) https://example.com/ 3745 434728 433555.433788.434728.434949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6761138728234 0 \N \N f 0 \N 0 59929492 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451390 2025-03-24 14:30:34.95 2025-03-29 22:39:50.518 \N ![](https://www.zapread.com/i/9MV) https://example.com/ 976 451046 450971.451046.451390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.69105964020866 0 \N \N f 0 \N 0 231483761 0 f f \N \N \N \N 450971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407367 2025-02-17 23:20:07.046 2025-03-29 22:39:50.519 \N ![](https://m.stacker.news/62000) https://example.com/ 21060 406569 406540.406569.407367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7901919222224 0 \N \N f 0 \N 0 48563861 0 f f \N \N \N \N 406540 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417041 2025-02-26 02:49:42.107 2025-03-29 22:39:50.519 \N Overreach because you don’t think the government should be involved, period? (as in the SEC should be abolished?)\n\nOr overreach because you don’t think the SEC is following their mandate and is over stepping?\n\nAlso, have you read the lawsuit the SEC filed? https://example.com/ 16929 416827 416827.417041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.41243297451131 0 \N \N f 0 \N 0 154210258 0 f f \N \N \N \N 416827 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401637 2025-02-13 09:18:40.339 2025-03-29 22:39:47.61 Stacker News Media Kit 1.0 Here's the latest update of my unofficial Stacker News Media Kit 1.0\n\nThis is the follow up to the [original media kit v 0.1](https://stacker.news/items/739953)\n\nThe purpose of a media kit is to provide tools to portray SN in a way that we want to be portrayed. \n\nA media kit typically includes brand logos, color hex codes, fonts, brand language, video intros, production templates, website banners, etc. for brand continuity across the entire web. This media kit doesn't have all of that yet but we can create that through iteration.\n\nThis media kit can be shared with anyone who is interested in linking to or otherwise sending traffic to Stacker News. This includes writers, YouTubers, influencers, podcasters, makers, companies, and even for use on print media. \n\nUse this media kit at your discretion to drive traffic to your favorite territory, profile page, post, or even just your referral link to SN.\n\nIf you would like to add something specific to the media kit, leave a comment and we can get it added to the next update. In FOSS fashion, I want to build this with others.\n\n---\n\n# Brand Logo\n\nAll of these logos use these color hex codes. \n\nSN Yellow: `#f8da5e`\nSN Black: `#000000`\nSN White: `#ffffff`\n\nAll of these can be resized up or down using a tool like Image Resizer: https://imageresizer.com/\n\n# Brand Name Logo\nYellow Text - Black Background\n![](https://m.stacker.news/64796)\n\n---\n\nYellow Text - No Background\n![](https://m.stacker.news/64792)\n\n---\n\nBlack Text - Yellow Background\n![](https://m.stacker.news/64795)\n\n---\n\nBlack Text - No Background\n![](https://m.stacker.news/64798)\n\n---\n\nBlack SN - Yellow Background\n![](https://m.stacker.news/64799)\n\n---\n\nBlack SN - No Background\n![](https://m.stacker.news/64800)\n\n---\n\nYellow SN - Black Background\n![](https://m.stacker.news/64801)\n\n---\n\nYellow SN - No Background\n![](https://m.stacker.news/64802)\n\n---\n\n![](https://m.stacker.news/64803)\n\n970 x 250\n\n---\n\n![](https://m.stacker.news/64804)\n\n728 x 90\n\n---\n\n![](https://m.stacker.news/64805)\n\n320 x 50\n\n---\n\n![](https://m.stacker.news/64806)\n\n250 x 250\n\n---\n\n![](https://m.stacker.news/64807)\n\n320 x 250\n\n---\n\n![](https://m.stacker.news/64808)\n\n300 x 600\n\n---\nPlease don't be shy. If you want to contribute to this media kit, please just comment with ideas, recommendations, images, brand lingo, etc. \N 760 \N 401637 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.17824665795399 0 \N \N f 0 \N 0 206968811 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417042 2025-02-26 02:54:28.891 2025-03-29 22:39:47.612 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/470252), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 9920 \N 417042 \N \N \N \N \N \N \N \N movies \N ACTIVE \N 14.0348906223043 0 \N \N f 0 \N 0 141736782 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413938 2025-02-23 14:36:10.055 2025-03-29 22:39:50.508 \N ![:)](https://ipfs.io/ipfs/QmReZtdMW3UQ6HCKdnYJXwY4KhHksCLkCvj6KxeZtb9r6K) https://example.com/ 1429 413935 413675.413903.413935.413938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0908693283768 0 \N \N f 0 \N 0 75199872 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401688 2025-02-13 10:18:32.216 2025-03-29 22:39:50.518 \N https://www.eff.org/cyberspace-independence This was a pretty based internet-native document https://example.com/ 8416 401557 401516.401544.401552.401557.401688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.89045210052219 0 \N \N f 0 \N 0 52981944 0 f f \N \N \N \N 401516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451164 2025-03-24 12:26:59.021 2025-03-29 22:39:50.518 \N Anything Taproot related is super cool, great work! Hopefully some day we'll see people switch to more efficient Taproot outputs for script/multisig addresses. \n\nSpeaking of which, and this is maybe a more appropriate question for Bitcoin Stack Exchange, but do I need MuSig2/MuSig/MuSig-DN if I'm all of the parties in a multiparty address? I know simply adding schnorr keys together is insecure (rogue key attacks), but imagine I want to setup a multisig address where my keys are in different locations. Could I avoid using MuSig in this case (thus skipping the extra rounds of communication), since I trust myself? https://example.com/ 8168 451159 450805.451044.451106.451155.451157.451159.451164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49327486888517 0 \N \N f 0 \N 0 138420112 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443845 2025-03-19 14:43:06.818 2025-03-29 22:39:50.519 \N > I'm just not sure what direction other people will go.\n\nGiven that El Salvador made Bitcoin legal tender, and that central banks are trying to make CBDCs, it means that we're not wrong.\n\nEven BIS ("Central bank of Central Banks") recently allowed central banks around the world to have up to 2% of their reserves in Bitcoin from 2025. https://example.com/ 21522 443835 443577.443651.443711.443715.443731.443757.443772.443796.443811.443819.443831.443835.443845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1035138708579 0 \N \N f 0 \N 0 31325999 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401947 2025-02-13 13:16:29.06 2025-03-29 22:39:50.519 \N +100 sats. Agree that there should be more focus on use cases rather than only on wallets.\n\nIn my experience the difficult thing isn't development, but finding users. Bitcoin (on-chain and Lightning) is accepted in my marketplace project Bitejo.com but it's difficult to find people who actually want to use the marketplace.\n\nI guess it would be easier if a dev of an already popular app/business/marketplace would integrate KYC-free Bitcoin payments, but you would need to convince them somehow to do it... https://example.com/ 2734 401714 401714.401947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.57921062514971 0 \N \N f 0 \N 0 132129332 0 f f \N \N \N \N 401714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401721 2025-02-13 10:45:27.283 2025-03-29 22:39:47.612 Chris Tramount, Chief Executive Pleb of Scarce.City & SatsCrap AMA 🤟 Class of 2017 Bitcoiner.\n\nBefore Bitcoin, industrial engineering and business stuff in traditional retail and ecommerce.\n\nWent full time Bitcoin in March 2020 when Aryan Jabbari and I started Scarce.City, a marketplace for Bitcoin art & collectibles.\n\nWe've just launched SatsCrap.com, a marketplace for selling anything (legal :) for bitcoin.\n\nHappy to give 🌶️ takes on:\n> All things Bitcoin commerce\n> Managing a Bitcoin-only business\n> The Bitcoin Arts\n> NFTs (cringe) on Bitcoin are cool\n> Bitcoin macro, philosophy, cosmic stuff\n> The Bitcoin/Lighting app ecosystem & UX\n> And anything else not too techy for my smowl brain \N 13767 \N 401721 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 6.9427841885928 0 \N \N f 0 \N 0 98619505 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442746 2025-03-18 19:17:42.991 2025-03-29 22:39:50.509 \N I really thank you for this weekly newsletter !\nI read a lot of SN posts, maybe more than anybody here. I try to keep up with the regular feed (with no restrictions), but is hard.\nBut sometimes I get lost in the plethora of links and I miss quite some good posts.\nLuckily there's this newsletter that bring back the good posts and I can go back. https://example.com/ 21296 442738 441238.442729.442738.442746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.65778902786847 0 \N \N f 0 \N 0 11335406 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414917 2025-02-24 11:53:03.345 2025-03-29 22:39:50.508 \N With your improvements on the wallet I was thinking... wouldn't it be nice if SN could work like Albi? From my ignorance it seems you're 90% already done towards being a Nostr logger, full with wallet and all. https://example.com/ 1717 414908 414314.414324.414908.414917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0713381585066486 0 \N \N f 0 \N 0 186340505 0 f f \N \N \N \N 414314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407356 2025-02-17 23:12:05.506 2025-03-29 22:39:50.509 \N Uruguay was a nice chill place when I visited twenty years ago, but I was only passing through, and I have no idea about its political / civic / infra situation. What were the aspects of it that appealed to ya'll? https://example.com/ 20826 406452 406452.407356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9398971562095 0 \N \N f 0 \N 0 72363758 0 f f \N \N \N \N 406452 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443627 2025-03-19 12:46:29.893 2025-03-29 22:39:50.509 \N ![image](https://pbs.twimg.com/media/FnLO_YjaUAA_PzF?format=jpg&name=900x900) https://example.com/ 19796 443625 443617.443625.443627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.291500869118 0 \N \N f 0 \N 0 121103743 0 f f \N \N \N \N 443617 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422995 2025-03-02 20:53:37.782 2025-03-29 22:39:50.509 \N I would suggest you watch this video on why thinking in terms of a security budget is perhaps wrong. \nhttps://www.youtube.com/watch?v=0bUpF0wJrxo\nSo far, I have found him to make the most intelligible points about bitcoin issues. \nHe just started his channel so there is not much there, but the value is high. https://example.com/ 21501 422986 422334.422660.422663.422986.422995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.93368953876609 0 \N \N f 1000463507 \N 6 102458141 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 409702 2025-02-19 19:08:55.125 2025-03-29 22:39:47.613 Gemini Placed A Security Hold On My Account I have been dca'ing bitcoin with Gemini for two years. I routinely move my bitcoin to cold storage once the dollar transfer holds clear. This morning I set up a transfer, but was told there is a security hold on my account. I contacted support, and this is the response I received:\n\nHi ---------\n \nThank you for being a Gemini user and for your patience as we investigate your account! \n \nWe reviewed your account and have a few questions. Please provide as much detail as possible:\n \n1. How did you find out about Gemini?\n2. Has anyone instructed you to open this Gemini account or has any one requested payment through Gemini?\n3. Have you shared your account credentials with anyone?\n4. Why did you open a Gemini account?\n \nIf you have recently attempted to withdraw and/or send funds to an external address, please provide the following information with as much detail as possible:\nPlease be specific in describing the purpose of this withdrawal. For example, if the purpose of this withdrawal was to send funds to a third-party platform, include identifying details such as the name of the platform or website link.\n \n5. How did you discover the wallet address?\n6. Are you the owner of the wallet address? If you are not the owner, what is your purpose in withdrawing to the wallet address?\n7. Did someone direct you to withdraw to this wallet address?\n8. Do you have any other relevant information on this wallet address?\nWe look forward to hearing from you. If you have any questions, do not hesitate to reach out.\n \nOnward and Upward,\n \N 4502 \N 409702 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 27.8297617383441 0 \N \N f 0 \N 0 211236601 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455494 2025-03-27 04:19:36.179 2025-03-29 22:39:47.613 Spending Sunday - What Recent Bitcoin Purchases Have You Made? Let's hear some of your latest Bitcoin purchases, feel free to include links to the shops or merchants you bought from too! \N 896 \N 455494 \N \N \N \N \N \N \N \N science \N ACTIVE \N 9.19400325619133 0 \N \N f 0 \N 0 145412647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422844 2025-03-02 18:27:17.845 2025-03-29 22:39:50.509 \N Same here. Nice work guys! https://example.com/ 20102 422838 422804.422829.422838.422844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7299953012785 0 \N \N f 0 \N 0 154990300 0 f f \N \N \N \N 422804 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422594 2025-03-02 15:15:17.758 2025-03-29 22:39:50.51 \N The question is _why not?_ https://example.com/ 15239 422588 422481.422581.422588.422594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.02638617609 0 \N \N f 0 \N 0 40382114 0 f f \N \N \N \N 422481 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442807 2025-03-18 20:34:13.924 2025-03-29 22:39:50.51 \N I'm not fully sure what to make of this right now, but I'll have a second look once I'm back from **THE GYM**.😶‍🌫️☺️ https://example.com/ 1723 442298 442298.442807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.32788341107199 0 \N \N f 0 \N 0 126319727 0 f f \N \N \N \N 442298 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422992 2025-03-02 20:49:32.634 2025-03-29 22:39:50.51 \N @DarthCoin, you got a shout-out on Bitcoin University's channel today:\n\nhttps://www.youtube.com/watch?v=X_w7MrXQv6k https://example.com/ 1237 422919 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422919.422992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.84939514767024 0 \N \N f 189880112 \N 1 33926800 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407737 2025-02-18 10:44:23.7 2025-03-29 22:39:50.51 \N Sure. I'll do that. In the meantime, I used the Alby Hub this morning and it was simple. They have a dedicated NWC app. For people running their own nodes, this is the much simpler way to go. Do you anticipate setting up NWC send and receive? https://example.com/ 2326 407495 407495.407737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.15073335104942 0 \N \N f 0 \N 0 223322326 0 f f \N \N \N \N 407495 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415179 2025-02-24 15:19:51.391 2025-03-29 22:39:50.511 \N Ikr. The last time I've earned bitcoin was in 2018, and here I can get some for ~~shitposting~~ contributing. I remember feeling left out when I couldn't get the 25 bitcoin on that faucet any more because I was too late, and now I'm the middle of it. https://example.com/ 17148 414872 414872.415179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.505000294511859 0 \N \N f 0 \N 0 34776943 0 f f \N \N \N \N 414872 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407359 2025-02-17 23:16:27.731 2025-03-29 22:39:47.613 A Return to The Bare Essentials Hey All - I thought Bitcoin does a great job of cutting out the nonsense on the individual and societal level. Many people are starting to wake up to what isn't worth it and what is a ripoff, especially as economic conditions tighten further and further. \n\nI recently saw a picture taken by "AmitIsInvesting" on X of how people aren't buying overpriced hoodies/t-shirts with the Nike swoosh on them. Furthermore, there is a large movement by GenZ and younger to opt out of wearing logos altogether. \n\n![](https://m.stacker.news/37721)\n\nAs times get tougher people opt in for the bare essentials. They don't care about the logo, the brand, or any of that. Times are tough now, so Nike isn't selling(stock is down 30% from ATH). This also got me thinking about Bitcoin because I only buy what I absolutely need to. Very rarely do I buy a designer item because then that means less hard money and sats for me? I tend to notice this with other Bitcoiners also where they dress very simply - playing into the ethos of staying humble or stack sats. Whether it is people doing this out of hardship, or people doing this to optimize their investment allocations - I think we are at the dawn of a lot of these name brands losing their sense of importance/significance over people. \n\nHave you ever been one to go out of your way to buy brand-name things? Since you got into Bitcoin, have you been more sensible in your approach to buying name-brand products? I would love to hear some thoughts on this! \N 18526 \N 407359 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.4077604313268 0 \N \N f 0 \N 0 503739 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415185 2025-02-24 15:24:31.877 2025-03-29 22:39:47.613 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/298532), and we have another 25,000 sats up for grabs for this week's winner. \n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 21522 \N 415185 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 28.6377684447208 0 \N \N f 0 \N 0 174415111 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415191 2025-02-24 15:29:48.863 2025-03-29 22:39:47.613 ‘I am not Satoshi Nakamoto’: Subject of HBO documentary denies he invented btc \N https://www.cnn.com/2024/10/08/investing/satoshi-nakamoto-identity/index.html 11220 \N 415191 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.81592224068177 0 \N \N f 0 \N 0 137785221 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437704 2025-03-14 19:22:59.704 2025-03-29 22:39:50.511 \N I read your story, and it hit home. Your dad's work ethic and your own journey with money and Bitcoin are fascinating. Your commitment to living below your means and embracing Bitcoin later in life is admirable. I get your hesitation about spending Bitcoin for retirement. It's like trading something precious for something less valuable.\n\nThe Pink Floyd lyric you mentioned sums it up nicely – life's a race, but sometimes we miss the starting gun. Your journey, shaped by experiences and guided by Bitcoin, is pretty cool. https://example.com/ 16289 437673 437673.437704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9391866961331 0 \N \N f 0 \N 0 59336741 0 f f \N \N \N \N 437673 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410690 2025-02-20 16:03:49.073 2025-03-29 22:39:50.511 \N ![](https://i.postimg.cc/c4tSWC39/Muun-others.jpg) https://example.com/ 2342 410624 410269.410624.410690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.41188646577778 0 \N \N f 0 \N 0 177494489 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 420189 2025-02-28 14:38:16.019 2025-03-29 22:39:50.512 \N Mailing lists and discussion forums are inherently fairly centralized. But it's important that the infrastructure be _not_ controlled by anyone with specific interests. Google is a decent choice for running the mail list, as other more “cypherpunk” solutions like ditching email entirely just aren't viable yet, and self hosting the infrastructure would put it under control of people who might have specific self interested reasons to manipulate it. https://example.com/ 20563 420181 420178.420181.420189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.10356944390897 0 \N \N f 0 \N 0 190847639 0 f f \N \N \N \N 420178 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413994 2025-02-23 15:06:12.807 2025-03-29 22:39:47.61 Iconbuddy — 200K+ open source free svg icons Found this recently on Twitter. Pretty solid tool for finding free icons. https://iconbuddy.com/ 5852 \N 413994 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.2996877029329 0 \N \N f 0 \N 0 196321791 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410359 2025-02-20 12:59:11.025 2025-03-29 22:39:47.613 What makes you optimistic about the world? Simply put for me: human emotion.\n\nThe fact that we feel, we empathize, we care, we fight, we love -- emotion informs and influences every one of us and the decisions we make.\n\nI've long thought of technology as a pure, streamlined expression of human emotion. \n\nWhatever innate desires we humans had for **connection**, **contentment**, **empowerment**; Steve Jobs felt that too, and designed something to satisfy those feelings.\n\nHumans once shared (and still do) a deep desire for **expression** and **trust**: Johannes Gutenburg was feelin' that in the 1400s y'all, and made a goddam printing press to satisfy those feelings.\n\nSatoshi felt the same innate desire for **freedom** that we all share, and created something that (mostly) perfectly channels that inherent need.\n\nOf course, channeling emotions through technology doesn't always pan out positively. "Positive" emotions like contentment can lead to way too many people sitting on their ass. TRUST can make us wanna be idiots and store our wealth with centralized custodians.\n\n**Comfort**, **safety**, **paranoia**, **anger**, **pride**, **envy**, etc. can take the form of a B-2 Spirit or an M1-Abram.\n\nBut case in point: our emotions (and much else) inform our technology.\n\nDespite the "negative" emotions we all share, I'm optimistic that our "positive" emotions generally win out over time. If that weren't the case, I probably wouldn't be enjoying the luxury of typing this message right now...\n\nBeing pessimistic is lame asf. Bet on human expansion, flourishment, prosperity, longevity. BUY BITCOIN!\n \N 18177 \N 410359 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.47451991116283 0 \N \N f 0 \N 0 138951022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437900 2025-03-15 00:49:18.403 2025-03-29 22:39:50.512 \N Hi, I'm getting this error every now and then! \n\nIt's when I try to reply someone.\n\n![](https://m.stacker.news/38601)\n\ncc: @ek @k00b https://example.com/ 3656 437827 437502.437700.437827.437900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0999708776423702 0 \N \N f 0 \N 0 118754406 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410708 2025-02-20 16:23:41.353 2025-03-29 22:39:50.513 \N I love this. Great idea. \n\nQuestion - Regarding the SeedSigner. The concept seems great. I have one that somebody gave me.\n\nWhat do I need to be worried about when using it? https://example.com/ 1833 410399 410399.410708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5478209340081 0 \N \N f 0 \N 0 172796995 0 f f \N \N \N \N 410399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443889 2025-03-19 15:09:08.865 2025-03-29 22:39:50.513 \N Yes!\n\nWe have lots of ideas, but they will have to come at the right time. I want to revisit the lightning card for example, but right now it's too early: people don't perceive the value of the added security because lightning is still for pocket change.\n\nOnce on-chain fees go up and drive users to other scaling layers we will work on security devices for these solutions as well. https://example.com/ 641 443806 443295.443781.443806.443889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7904155676963 0 \N \N f 0 \N 0 8025299 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422925 2025-03-02 19:30:11.592 2025-03-29 22:39:50.513 \N The patriot act \n\nClose second \n\nBank secrecy act https://example.com/ 20691 422918 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422918.422925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.693458425778 0 \N \N f 0 \N 0 161890156 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403162 2025-02-14 13:50:20.378 2025-03-29 22:39:50.513 \N I have 4 semi permanent sponsors and still need more. \n\nZaps pays about $20 to $200 a month. Ie - nothing. \n\nIf btc is above 75k EOY I might make money. \n\nIf not i need to revisit everything. \nCurrently im funding with my small stack saved over the last epoch. \n\nSorry for the reality check but journalism / making content and making money is a labour of love. https://example.com/ 10981 403121 403121.403162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8252438113643 0 \N \N f 0 \N 0 88739014 0 f f \N \N \N \N 403121 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410098 2025-02-20 08:50:35.811 2025-03-29 22:39:47.61 How I Escaped Financial Abuse with Bitcoin Bitcoin taught me to protect myself from abusive financial relationships.\nOne of the main reasons I became homeless was in a bad, abusive relationship. Through Bitcoin, I learned to honestly look at myself and my mistakes which will hopefully help me to become financially stable.\n \nI was passive. When my boyfriend said he would take care of me, I believed him without thinking about it. My boyfriend determined my whole life. He was very jealous and always wanted to know where I was at all times. He deliberately said hurtful things to make me feel bad and blamed me for things that were not my fault, and I let it happen.\n \nEvery cent I earned, everything belonged to him. He applied for a credit card in my name, managed my bank accounts, and did my taxes. In a way, I was relieved by him taking care of these things. Before him, I had already had a wrong attitude towards money. I worked, spent, paid the rent and my health insurance, and I stuck into a cupboard all the blue letters from the taxman. If they did not exist, it was easier for me. \n \nSo I let my boyfriend control me. After some time, there was nothing that belonged to me, and it all belonged to him. If I needed to buy something small, I needed his permission first before getting the money. It was a toxic relationship.\n \nHe left me, leaving me with thousands of euros in debt. He maxed out credit cards in my name. He gambled and whored with my money, and I let it happen because I was afraid. I had to give up my home as a result and then found myself homeless. I blamed myself for it, spiraled out of control, and ended up in a dark place.\n\nUnderstanding money\n\nI never thought about money, never. Money was something I earned, something on an abstract bank account or a plastic card I got from my boyfriend when I asked. Sometimes I dreamt about being rich and buying stuff non-stop.\n \nI did not know what money was. In learning about Bitcoin, I now know some more. It took me a long time to comprehend the basic principles, and I still do not know enough about Bitcoin. But I do know now that the Bitcoin I own is the hardest money ever created. I do not have to worry about the value of my Bitcoin. My Bitcoin will be there at the end of my life and still have value. Understanding this, for me, is like coming up for air, seeing a brighter future for myself.\n\nBeing my own bank\n\nMy boyfriend always limited my access to my bank account, and I always thought I was too stupid to do my financial affairs. I got nervous when somebody from the bank called, and even emails from the bank or the government were enough for me to have a panic attack. \n \nThey were all big organizations that talked a certain way about my money, mostly about me being overdrawn or a new solution to my debt with extra punishment: more money to pay in the future. I realize with Bitcoin; I am my own bank. Nobody but me can spend my satoshis, and I do not have to worry about interest on my debt or even paying for financial services or wallet because nobody else owns my Bitcoin.\n \nThere are no offices, and I cannot overspend; there is no change in interest rates and no hidden costs. There are no middlemen that take their cut in fees just because they exist. Being my bank empowers me and gives me a sense of security that I never had before. The banks were/are unhealthy for me; Bitcoin, on the other hand, is healing me. Slowly but surely.\nNot trusting anybody but myself.\n\nMy boyfriend always acted like he was the only one who could fix what was wrong with my bank problems. He talked abstractly about numbers, rules, and things I did not (want to) understand. \nI know from bitter experience that you cannot trust social workers, civil servants, financial institutions, or banks. When there is/was money involved, it means problems. Bitcoin makes me my own woman; I can not be blackmailed: I do not need any other man to access my funds, and I do not need to beg for my rights. I do not have to be scared because somebody lied to me or changed the rules.\n \nBitcoin taught me to only trust myself. My Bitcoin wallet is my own, there is no other wallet like it, and the Bitcoin in it is my own. Only I can access the private keys. Only I know the words to spend them. No bank clerk, no taxman, or boyfriend can ever access my Bitcoin. Thanks to Bitcoin, I learned that I don’t have to trust, only to verify. This is very important for me, to stand in my own power, to be myself without having to be afraid of money truly. \n\nTaking care of my own finance\n\nDoing your own finances makes you healthy. It empowers me to know that only I have access to my Lightning/Bitcoin wallet. What I own in Bitcoin is not much (yet), but I earn some satoshis every day, and I know that my future is looking better than ever. \n \nI’m still homeless but because of Bitcoin, I know, “What I have is what I own.” My finances are genuinely my own, they are my responsibility, and nobody in the world can take that away from me.\nSaving for the future\n\nBefore Bitcoin, I did not know what I had, except for debt piles. I still have the debt for the foreseeable future. I’m not alone; millions of women like me are cut off from financial services or suffer under massive debt piles. \n \nIf they listened to me, I would say, “Ladies, don’t ever entrust your money to any man, bank, or government.” Learn about Bitcoin, and put some money in a wallet for the day that you will have to stand up for yourself. The need for financial freedom is not in the future but is now.\n \nBitcoin is my saving machine.\n \nFor the first time in my life, I can dream about myself in the future. Maybe in 10 years, I can rent a lovely apartment without worries, have a normal relationship, and only because of Bitcoin. Before that, I only had nightmares about money, and I could only see problems, never any solutions. I know deep inside that my dreams are a real possibility because of Bitcoin.\n \nI am @HomelessMokum. I am rebuilding my life with Lightning and Bitcoin. If you want, please donate some sats: HomelessMokum@zbd.gg\n \nhttp://tippin.me/@HomelessMokum\n \N 6149 \N 410098 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.0086151418074 0 \N \N f 0 \N 0 57549282 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444139 2025-03-19 17:28:14.79 2025-03-29 22:39:50.515 \N This is great guys! I love this as an evolution in what SN can be. https://example.com/ 4624 443953 443919.443953.444139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0364107854895 0 \N \N f 0 \N 0 180505210 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443902 2025-03-19 15:17:07.717 2025-03-29 22:39:50.515 \N 50k sats\nStackerClaus is done for tonight. \n\nSee you in December stackers! https://example.com/ 21522 443894 443295.443781.443806.443886.443894.443902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0288999988583 0 \N \N f 0 \N 0 153437920 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401672 2025-02-13 10:04:17.638 2025-03-29 22:39:50.515 \N Here's [a talk](https://www.youtube.com/watch?v=DCH1bFO1hPE) where I get into those ideas more. For here I'll just say that all life on Earth uses the same metabolic pathways to produce energy (the Krebs cycle). Some believe this metabolic cycle evolved before life as we know it (cells, &c.) evolved. Computing on the Internet is the crucible in which AI is evolving. It's already powered by money, just fiat money moving through centralized companies. I think bitcoin lets us human beings build decentralized, market-driven ways to deliver services that we've previously delivered through large centralized companies (e.g. ConEd, AT&T, Google, Amazon, &c.). I think the decentralized markets that power the Internet, which are building over the next few decades, become the equivalent of the Krebs cycle for digital life. And just as biological life did not evolve towards planet-devouring grey goo, I don't believe that digital life will evolve towards humanity-destroying superintelligence. https://example.com/ 16149 401636 401636.401672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7604408588701 0 \N \N f 0 \N 0 174752432 0 f f \N \N \N \N 401636 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404021 2025-02-15 13:17:05.291 2025-03-29 22:39:50.515 \N One thing I was wondering regarding this rule:\n> 2. The new transaction (package) has a sufficiently high fee-rate to place it\ninto the upper _N_ blocks worth of the mempool.\n\nWhat happens if a transaction gets broadcast at the marginal feerate, so that only a fraction of the network accepts the new transaction because the upper N blocks get filled with higher-feerate transactions before the transaction has reached the whole network?\n\nOf course, once the first block is filled with higher-feerate transactions, there's no need for the transaction to propagate fully quite yet. But will the current transaction relay mechanism automatically proceed to propagate the transaction once a new block has been mined such that the transaction is again within the upper _N_ blocks? https://example.com/ 1761 403897 403897.404021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.26575725641414 0 \N \N f 0 \N 0 122734015 0 f f \N \N \N \N 403897 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441915 2025-03-18 11:16:49.239 2025-03-29 22:39:47.61 How to get people to ask YOU about bitcoin As a traveller/expad/nomad I often have conversations with random westerners abroad. Here's how I do it.\n\nI rarely mention it myself. Usually conversations tend to go in the direction of 'what do you do?'. When this is asked, I answer that I mainly work online. Only if I'm asked what I do specifically, I answer very casually: 'Oh I teach bitcoin'. Period. And I deliberately say it without any excitement. Like I'm saying: 'Yes I know it's boring, but at least I'm glad I have a job'.\n\nAlmost always a good conversation follows, because they don't have the feeling you are trying to convince them of something; they are asking you! As soon as the c-word is said, usually within seconds, I smile a bit and say that cRyPtO is about gambling and that I'm not interested in that. That I only help serious people who want to know about hard money and how to protect wealth from a corrupt financial system.\n\n'But I don't work online teaching bitcoin!'\n\nDoesn't matter, neither do I. But in this way you ARE teaching bitcoin; you give random people a touch point they will remember when a future potential orange pilling situation happens for them. \N 16230 \N 441915 \N \N \N \N \N \N \N \N news \N ACTIVE \N 21.5780502247588 0 \N \N f 0 \N 0 112453409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441695 2025-03-18 08:47:37.902 2025-03-29 22:39:47.61 Privacy, human rights, and Tornado Cash - Molly White Subtitle: *I am more worried about privacy than crypto crime.*\n\nMolly White is notoriously **not** a fan of crypto or Bitcoin (and like most nocoiners, uses the former term). I've always found her a compelling writer and thinker regardless of where my opinions differ from hers. In many ways, this long essay is the mirror of [this post](https://stacker.news/items/548507) from @siggy47, but instead of a Bitcoin advocate like Lyn bemoaning the lack of privacy urgency, it's a BTC critic the same issue on her "side" of things. It's a good, deep essay (complete with twelve footnotes and some references). Here's her intro:\n\n>Alexey Pertsev, one of the developers and operators of the Tornado Cash cryptocurrency mixing service, has been sentenced to 64 months (over five years) in prison in the Netherlands. The service he helped to create enabled criminals to launder billions of dollars in illicit funds connected to massive hacks perpetrated by sophisticated cybercrime groups, ransomware operations that have decimated businesses, and pig butchering schemes that have ruined people. As someone who rails against the abuses by the cryptocurrency industry, why then am I so worried about his conviction, and about the parallel case in the United States against two Tornado Cash co-founders?\n>\n>Some who know me as a cryptocurrency critic may find these opinions surprising coming from me. But if you are surprised, I have failed. And I think I have, because I think some of you will be.\n https://www.citationneeded.news/tornado-cash/ 21575 \N 441695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1915030262244 0 \N \N f 3422161879 \N 28 217189137 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 407483 2025-02-18 04:34:29.885 2025-03-29 22:39:50.516 \N It's very unusual and a terrible practice. There's plenty of good nostr clients out there. Don't give up your identity to a custodial / kyc service. https://example.com/ 10393 407476 407400.407466.407476.407483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.66484547850487 0 \N \N f 0 \N 0 184602126 0 f f \N \N \N \N 407400 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 418206 2025-02-26 21:25:54.008 2025-03-29 22:39:50.516 \N *We are Bellingcat*, about the rise of OSINT and how they solved global crimes was interesting. I'm sure Bellingcat is busy working on that Sikh assassination in Canada. https://example.com/ 9362 417970 417970.418206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5667506232349 0 \N \N f 0 \N 0 23075111 0 f f \N \N \N \N 417970 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435250 2025-03-12 14:56:12.389 2025-03-29 22:39:50.517 \N The current link to the full markdown guide is bit cumbersome. I bet tiny inline sheet that expands with top 5 or so markdown features would probably solve 90% of difficulty.\n\nMy guess would be (from my own use):\n - inline image (i always forget [] vs ())\n - link to URLs\n - basic styles (bold, italic, code)\n - others...\n\nI wonder about a small sat-tax on things like emojis are large headers etc that can be excessively attention grabbing / noisy... https://example.com/ 1237 349 349.435250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.08046417361023 0 \N \N f 0 \N 0 19523217 0 f f \N \N \N \N 349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442473 2025-03-18 15:22:34.712 2025-03-29 22:39:50.517 \N Waiting for the mastermind @Undisciplined to post about it. \n\nhttps://fountain.fm/episode/yUcHYrQqR5ovs66xIrsM https://example.com/ 21541 442446 441695.442446.442473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7438752720548 0 \N \N f 0 \N 0 167442882 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424423 2025-03-04 04:58:23.892 2025-03-29 22:39:50.517 \N It's a very interesting topic.\nIn my opinion, there are two path to follow.\n1. If you want to secure your btc for you.\n2. If you want to secure the access of your btc for the ones that you love.\n\nI think you can't follow the two paths at the same time.\n\nPATH 1, your prioritie is to secure you access whilst you are a live. No trusting any one else.\n\nPATH 2, the priority is to create a system where your love ones could access YOUR funds during your live and after. This means that you have to TRUST them.\n\nUsing a time lock sounds good but you will be not able to access your funds until that time... So, if you need some sats before, you won't be able to get them. https://example.com/ 7899 423807 423750.423789.423801.423807.424423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.86312975770844 0 \N \N f 0 \N 0 221014065 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442446 2025-03-18 15:05:46.218 2025-03-29 22:39:50.518 \N Does this mean we can't ask "wen stratum v2?" anymore? https://example.com/ 20669 441695 441695.442446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7496873681945 0 \N \N f 167442882 \N 1 98441086 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434986 2025-03-12 11:41:46.35 2025-03-29 22:39:47.611 Please post links to shops where I can spend sats Looking to learn of more website where I can spend my satoshis, let’s get the bitcoin economy going! \N 11378 \N 434986 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.3574871280846 0 \N \N f 0 \N 0 201807636 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421117 2025-03-01 12:10:20.273 2025-03-29 22:39:47.611 Time to grow some balls, folks. - Toxic rant #1 I see a lot of fear of "Oh no the government is coming for bitcoin what will we dooooo?" type stuff around the bitcoin ecosystem, and honestly, I am sick of it. You either are in it for the revolution or you're not. You either figure out that bitcoin is more important than you or you don't. You figure out if you are here to make the world better or if you are just trying to get more fiat. But honestly, if you are afraid of things like collaborative transactions, or KYC, or whatever, then you need to suck it up and figure out why you are even here to begin with. This is a peaceful revolution, but this is also war. Every sat stacked is a firing of a weapon against the establishment. You may think it's an investment, but you are fighting in a war. If that is scary, then you should give up now and convert your stash back to fiat and don't look back. Leave the revolution to those who understand the cypherpunk mentality. \n\nYes, dystopia is coming. Yes, they are going to track everything you do. But there is also a growing landscape of freedom tech and tools. Bitcoin completely removes the government monopoly on money. If you don't think they won't see that as an act of rebellion, you're nuts. It always has been, always will be. The question you have to ask yourself is are you a little bitch or are you here to actually fix the world. We don't need more bitches. \N 1585 \N 421117 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 0.694870110651173 0 \N \N f 599169769 \N 4 123870804 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424197 2025-03-03 21:47:39.263 2025-03-29 22:39:47.611 What are the most DANGEROUS cognitive traps to fall into? Caring about what others think of you. \N 18174 \N 424197 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.2935223498471 0 \N \N f 114049031 \N 1 199056095 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444330 2025-03-19 19:41:13.243 2025-03-29 22:39:50.509 \N is there even an apk available for it? don't see one on their website https://example.com/ 2232 444218 444097.444218.444330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8108436476484 0 \N \N f 238178267 \N 1 109705661 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442419 2025-03-18 14:52:12.556 2025-03-29 22:39:50.518 \N For you YouTube junkies, [‘NoGood Radio’](https://youtube.com/@nogoodnode) is a great place to music listen 24/7, from a bitcoiner.\n\nSaw it mentioned on the [PlebDevs](https://youtube.com/@PlebDevs) channel a few weeks back. https://example.com/ 10862 442411 442411.442419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.68883157408791 0 \N \N f 0 \N 0 80186915 0 f f \N \N \N \N 442411 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407760 2025-02-18 11:05:36.927 2025-03-29 22:39:50.518 \N You deserve it!\nYour work is so much appreciated, for so many years. I was watching your work from the beginning. Well done! https://example.com/ 17365 407750 407619.407625.407750.407760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6122443934738 0 \N \N f 0 \N 0 184703212 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401517 2025-02-13 05:19:07.197 2025-03-29 22:39:50.518 \N This was a good story, and now I know that @plebpoet has a newsletter (or possibly have been reminded that she does). My stack of subscriptions I plan to get around to reading continues to grow. https://example.com/ 1038 401317 400447.400645.401285.401317.401517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.05218696385524 0 \N \N f 0 \N 0 52748925 0 f f \N \N \N \N 400447 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415158 2025-02-24 15:04:30.688 2025-03-29 22:39:50.518 \N How do you pronounce “Lexe”? https://example.com/ 17147 414271 414271.415158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6812835628961 0 \N \N f 0 \N 0 238810504 0 f f \N \N \N \N 414271 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401689 2025-02-13 10:19:03.472 2025-03-29 22:39:50.518 \N I think they're fishing for zaps. As long as they aren't getting zapped much they won't be getting rewards.\n\nWe should probably be downzapping them. My understanding is that if many of us downzap something, then it doesn't take very many sats to outlaw stuff.\n\nSomething I've been planning on writing up is why downzapping needs to be rewarded. I'll move that up in my queue. https://example.com/ 11938 401560 401516.401560.401689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.174741008833 0 \N \N f 0 \N 0 84030291 0 f f \N \N \N \N 401516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422572 2025-03-02 14:52:54.787 2025-03-29 22:39:47.611 The Rise of E-Cash: Maybe you don't need a Blockchain \N https://blog.nicolas-dorier.com/posts/cashu/ 5752 \N 422572 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.69882872676408 0 \N \N f 0 \N 0 73298589 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422655 2025-03-02 15:45:14.705 2025-03-29 22:39:50.509 \N Finished: review of Mastering Bitcoin 3rd Edition\nThis week: silent payments https://example.com/ 5495 422637 422637.422655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2053014037049 0 \N \N f 0 \N 0 62025441 0 f f \N \N \N \N 422637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401676 2025-02-13 10:09:57.881 2025-03-29 22:39:50.509 \N We only know how many opted out though. “You’ve been rejected by X stackers. GFY” https://example.com/ 19854 401386 400739.401386.401676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.91399455594674 0 \N \N f 0 \N 0 223818487 0 f f \N \N \N \N 400739 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422740 2025-03-02 17:03:05.653 2025-03-29 22:39:50.509 \N In my next life I want to be a bitcoin miner https://example.com/ 3979 422587 422587.422740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5055743502704 0 \N \N f 0 \N 0 91388297 0 f f \N \N \N \N 422587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403339 2025-02-14 17:48:18.065 2025-03-29 22:39:50.509 \N Fedimint has nothing to do with fiat and therefore doesn't need any hedging on exchanges.\nRead David Chaums paper if you want to understand what Chaimian e-cash is. The e-cash will just be satoshis in the case of Fedimint and the wallets with Fedi support will look like normal lightning wallets and only show satoshis. https://example.com/ 1833 403274 403274.403339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.24269073917559 0 \N \N f 0 \N 0 173819097 0 f f \N \N \N \N 403274 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403558 2025-02-14 23:52:24.194 2025-03-29 22:39:50.509 \N foss\nprivacy\neconomics/economy\ntech\nsoftware development/dev/programming\nsteelpan vs cast iron (ok this one was a joke)\n\nAnd maybe we don't need all new subs to pop up on the front page? I wouldn't have a problem with the front page being mainly bitcoin and the rest of the subs kind of separate. https://example.com/ 18225 403274 403274.403558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1938640644677 0 \N \N f 0 \N 0 12606491 0 f f \N \N \N \N 403274 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403704 2025-02-15 05:49:16.479 2025-03-29 22:39:50.51 \N Lightning Privacy: When I make a LN payment. Who/what can see I made the payment? Who can see and know from which UTXOs the payment come from? How is the privacy different depending if I am the sender or the receiver? https://example.com/ 10661 269421 269421.403704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1082019376207 0 \N \N f 0 \N 0 114494356 0 f f \N \N \N \N 269421 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451453 2025-03-24 14:57:12.722 2025-03-29 22:39:50.51 \N velociraptors https://example.com/ 14705 451450 448802.448912.451450.451453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9951687489223 0 \N \N f 0 \N 0 2309626 0 f f \N \N \N \N 448802 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403437 2025-02-14 19:46:29.763 2025-03-29 22:39:50.51 \N It's a very interesting phenomenon, although I think the San Francisco issue may be exceptional because of the shoplifting (and general crime) leniency. Other liberal cities have that problem, but I don't think it's as interesting as the general trend of empty office space and other commercial real estate.\n\nI'm thinking about what happened with movie theaters. About a decade ago, people thought theaters were dead. Then they changed and recovered. We used to be crammed together in uncomfortable theater seats. The model was clearly to fill the floor space with people and price to where anyone could go regularly. Now, theaters have very few seats, but they're huge and comfortable and the experience is almost unaffordable for most people.\n\nWe may see a smaller number of high-end, spacious, beautiful shops replace the lower floors of office buildings. The higher floors could be turned into executive suite style offices, rather than cubicles, for white collar workers. There are lots of professionals working remotely who are finding that they don't really like working from home and may be interested in going to a nice office nearby.\n\nLonger term, I think a lot of commercial real estate will be turned into residential. That will increase local demand for some of the remaining commercial real estate.\n\nAlso related to this topic, is the likelihood of autonomous vehicles freeing up enormous amounts of urban real estate that is currently dedicated to parking space. That could dwarf even the effect of all this empty commercial real estate. https://example.com/ 6136 403355 403355.403437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1540077177001 0 \N \N f 0 \N 0 227362521 0 f f \N \N \N \N 403355 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424425 2025-03-04 05:03:12.562 2025-03-29 22:39:47.611 How to use Zeus LN node to migrate or disaster recovery I heard a lot of "horror" stories of noobs that do not know how to proceed in disaster situations, with their Zeus mobile node. Nothing to worry, just have patience and follow these instructions.\n\n## How to start fresh with a new Zeus node.\n\nIn case you had some issues in Zeus like:\n- problems syncing\n- force closed channels\n- coop closing channels with low fee\n- you want to migrate to another device or the old device is broken\n\nI would recommend the following steps:\n\n## Scenario A - Migrate to a new device\n\nIt is much better to start fresh, with a new nodeID, new set of keys. Also for less stress in the process of closing channels, small UTXOs, lots of bloated txs history that could load up your wallet.\n1. Save your seed\n2. [Use this procedure to import your LND aezeed into Sparrow](https://docs.zeusln.app/for-users/embedded-node/backup-and-recovery#can-i-recover-my-zeus-onchain-wallet-into-other-wallet-applications) \n3. Coop close all your channels in Zeus and wait until are all confirmed, you will see also the txs into Sparrow\n4. Uninstall Zeus and install again, latest version, fresh (strongly recommend to use Obtainium and now app store)\n5. create a new embedded node\n6a. Wait for it to fully sync.\n6b. At this stage, I recommend to prepare your Zeus properly:\n- set good neutrino peers. Test the default ones to see the ping response. Depending on your location, some of them will have a long time response. If the ping is higher than 150-200ms, you better remove it from the list and add better ones. [Here is a list with worldwide neutrino peers](https://bitnodes.io/nodes/?q=NODE_COMPACT_FILTERS).\nMake your own list based on the ping and select the option to use only peers from list, not random.\n- put Zeus in persistent mode. Go to settings - embedded - advanced - select persistent mode. When you will start opening channels this option is very useful, because it will maintain the LND service alive and even if you close the app, the service is still running in background and will keep alive the connections.\n- Activate EGS (express graph sync) and also activate reset EGS at startup. This could make a bit slow Zeus to start but you always have a fresh updated graph sync.\n- activate LSP, Default is https://0conf.lnolymp.us. In the same screen, activate simple taproot channels. Later will be useful.\n7. Go to settings - invoice - click on top right option icon and select Taproot type of address\n8. Go to main screen, swipe to the right the onchain tab and click on receive. It will generate a new Taproot address\n9. Send to that address all the sats you have in Sparrow (old Zeus imported). Put a decent fee, not too low. and wait to have 6 confirmations\n10. Once you have the funds confirmed, open your first channel to a well known node, LSP. Do not open with random unknown nodes, choose a good one, [for example one of this list](https://github.com/hsjoberg/blixt-wallet/issues/1033).\n11. Do not use all your funds ! Always leave an UTXO of like 50-100k for the anchors reserve. In case the mempool fees will increase drastically is better to have a reserve UTXO to be able to push the fees.\n12. Opening channels procedure. Let's consider that you had almost 2M sats in your old Zeus and you already moved them all to the new Zeus.\n- open a 1M to Blixt node, or any other good node you want. I choose Blixt because I know is a LND node and also is supporting STC. You can set that in the opening channel screen, in advanced options.\n- wait for the channel to confirm and also to have the new UTXO ready.\n- open another channel of 500k to any other node from that list.\n- wait for the channels to be confirmed and ready\n- swap out 750k to Blink / Alby / coinos / walletano or whatever other simple custodial temporary LN account. It could be in batches or all at once, but must be all into same destination. The idea is to reuse part of the sats from already opened channels to open a new channel with Olympus LSP.\n- do not swap out more than 50% of your existing channels.\n- Once you got around 1M sats into the temporary LN account, open 1M channel with Olympus LSP. How to do that? Simply, hit the receive button from the main screen and put 1M sats. It will appear a message on top, that this transaction will use the LSP and ill incour some fees (around 10k sats).\n- Pay that generated invoice from your temporary LN account. It will be paid to Olympus LSP and the LSP will open a channel towards your Zeus node, pushing all the sats into your side. Will deduct the fee from the total amount you've sent, but also will give you a plus 100k inboundund liquidity, so your channel will be in total 1,1M sats with 990k sats on your side, ready to be spend.\n13. Now is time to make a full backup of your node. Go to Settings - embedded node - disaster recovery.\n- be sure the automatic backups are enabled\n- do also an export of the data into clipboard. This will create a special encrypted string. Copy it into an external file and keep it safe. This is your LN channels backup that could be used later to recover.\n- do also the backup to olympus server. That will keep a copy of this string to the LSP server. It also can be used to recover in case you lost your personal file.\n14. Done. Additionally if you want some more inbound in your new Olympus channel, just move out into the temporary LN accounts, with the amount you expect to receive through this channel. For example if you use the LN Address provided by Zeus (zeuspay.com) you will need some inbound liquidity into this channel \nwith Olympus.\n\n## Scenario B - old Zeus node had issues\n\nLet's say you had some problems with syncing, channels got force closed, database corrupted, app not responding correctly etc. Shit can happen, all the time and in some situations is better to start over, clean, fresh.\nIn any case, before doing these steps, consult with the devs and more experienced users in the Telegram group. In order to be sure that is nothing can be done, is better to have a second opinion for a correct diagnostic of your problems.\n\n### Please DO NOT DO THIS SCENARIO WITHOUT CONSULTING WITH ZEUS SUPPORT !\n\nWe suppose you already have backup the seed and the channels backup string.\nWe suppose that you cannot coop close the existing channels, databse is borked or the device is dead, app cannot be open anymore.\n\nSo uninstall Zeus, completely and install it fresh, new, latest version.\n\n1. Open Zeus and in the screen of creating a new node, select restore.\n2. Insert your 24 words seed and also paste the backup channels string.\n3. Wait patiently to fully sync and do the recovery process ! It will take several minutes.\n4. Try to keep the app alive as much as you can, at least in the initial phase of closing the channels. In this moment you cannot activate the persistent mode because it will require to restart the app and you do not want that to happen in the recovery process. In the future versions this persistent mode will be ON by default for the recovery process.\n5. Optional you can go and set better neutrino peers, that do not require to restart, but could help with better keeping alive the sync. See previous scenario point 6.\n6. Go to channels screen (from main screen, bottom right icon) and switch the central button to "closed/pending) channels. You will see there in few moments that was initiated the force closure of the old channels. Optional you can monitor their closing in mempool.space using the closing txid.\n7. In case the channels were closed with a a low fee, you can import your old Zeus seed into Sparrow (see previous scenario point 2) and from there bump the fee with RBF or CPFP. Othwerwise just wait patiently for channels to be closed. IT COULD TAKE TIME ! Don't freak out, is normal. If there were pending HTLC from previous channels, it could take even 144 blocks or more.\n8. Once you have all channels closed and funds back to onchain, also checking in Sparrow that all funds are confirmed, then uninstall Zeus and start fresh, proceeding with point 5 and the rest from the previous scenario. Is much better to start with new set of keys and nodeID, database etc.\n\n### That's it, Happy Lightning with Zeus.\n\n## More resources:\n- [Zeus documentation page](https://docs.zeusln.app/category/embedded-node)\n- [Zeus github releases page](https://github.com/ZeusLN/zeus/releases)\n- [Zeus Telegram support group](https://t.me/zeusLN)\n- Darth guide - [Getting started with Zeus LN mobile node](https://darthcoin.substack.com/p/getting-started-zeus-mobile)\n- [Obtainium github releases page](https://github.com/ImranR98/Obtainium/releases) - replace the App Store with direct sources from github repos \N 11073 \N 424425 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.17750986226314 0 \N \N f 0 \N 0 44040683 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 13170 2023-03-21 00:40:21.925 2025-03-29 22:39:47.612 Fedi — first wallet of federated e-cash protocol Fedimint protocol \N https://www.fedi.xyz/ 656 \N 13170 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.92780051698208 0 \N \N f 0 \N 0 23717608 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444598 2025-03-20 03:50:19.813 2025-03-29 22:39:50.51 \N Every orange pill attempt should be tailor-made towards that person. It's best to not pick what you think is most important about Bitcoin. Pick what would make it most useful to them.\n\nIf they are older and concerned about inflation's effect on their fixed income, talk about it's scarcity resulting in an inflation hedge.\n\nIf they come from a country with poor human rights, mention how hard it is to confiscate, and how you can flee a country with your life savings as 12 words in your head. \n\nIf they are politically active, talk about it being unstoppable. You will never have to worry being deplatformed from financial services.\n\nIf they own a business, show how they can save money on transaction fees.\n\nIf they are a content creator, talk about innovative new monetization techniques are made possible only by Bitcoin.\n\nNo matter who they are, there is a way Bitcoin will improve their life. You just have to figure out which use case they most need. https://example.com/ 1740 444558 443577.444558.444598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.070866319256 0 \N \N f 0 \N 0 83259022 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403912 2025-02-15 11:11:18.206 2025-03-29 22:39:50.51 \N LMAO the 1/month crowd is unlikely to see this poll in the first place https://example.com/ 736 403355 403355.403912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.23362836771124 0 \N \N f 0 \N 0 242703956 0 f f \N \N \N \N 403355 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423119 2025-03-03 01:21:21.413 2025-03-29 22:39:50.511 \N The older one of us have been using such phones in the beginning of the mobile phone era (between 2000-2010). They could literally outlive you and I clearly remember their batteries lasted more than a week. Here are just some of the companies behind them - Siemens, Nokia, Sony, Ericsson, Sony-Ericsson etc https://example.com/ 798 423040 422628.423040.423119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.90771745781789 0 \N \N f 0 \N 0 5512965 0 f f \N \N \N \N 422628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401684 2025-02-13 10:17:05.18 2025-03-29 22:39:50.511 \N Great clip @kr, when I watched the episode I definitely wanted to discuss this exact section of the episode on SN, lol\n\nMy thoughts:\n\nI like that he is a very skeptical person but I hope he is not too confident in his own skills. Developers can tend to think "I can do that myself better!" only to realize that they don't. To me, landing in the big blockers camp first looks like an indicator for this "overconfidence".\n\nNevertheless, I am definitely looking forward to if/what Burak will deliver with Ark https://example.com/ 12490 401611 401611.401684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.75428379188781 0 \N \N f 0 \N 0 96679149 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403718 2025-02-15 06:03:19.558 2025-03-29 22:39:50.511 \N So the madness is going to end and we will never know who won? \n\nYou guys need to rethink this for next year. It's a fun event but might need some tweaks. Sats prizes shouldn't be so top heavy. Not complaining here but I have probably increased my time spent on SN by 20-30% and I am going to end up with probably 30k less rewarded sats for the month than I typically get. I know it's quality not quantity but that feels intuitively wrong. My current estimated rewards are not too bad compared to some really prominent stackers I see lower down the leaderboard who are estimated to get only a few thousand sats for an entire month. I also think the rewards should have been split between the contest and some daily rewards. \n\nAlso, this should have been a great way to attract new users. Tying into march madness and alluring them with an opportunity to win a nice chunk of sats but instead has just been a contest to increase engagement from super users. \n\nFun event. Needs some re-evaluation for next year to make it better. \n\n https://example.com/ 19378 111278 111278.403718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3577373761073 0 \N \N f 0 \N 0 100542756 0 f f \N \N \N \N 111278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427963 2025-03-06 18:23:49.242 2025-03-29 22:39:50.512 \N The most interesting thing about the idea, to me, is the coupling of a token -- in the form of a crypto token -- to a shared endeavor, like one of the original joint stock companies. The token gets value by shared belief of those within the given network state, as a kind of localized money, an abstraction of the value redeemable in that community for services within and to that community, much like company script in the 19th century, or private money. George Selgin wrote [a very interesting book](https://www.amazon.com/Good-Money-Birmingham-Beginnings-Coinage/dp/1598130439) about this latter.\n\nIt's hard to imagine a bitcoin version, since the vocal bitcoiners are so opposed to other kinds of tokenized money-like things. But you can nonetheless imagine a network state whose tokens exist alongside 'real' money (which is bitcoin, in this case) that serve as a bridge to the outside world. You can't just throw out the token and keep the rest of Balaji's idea -- the token, as an coordination construct that has power within the domain of the given network state -- plays a key role. You could think of it as a more active kind of equity, I suppose. https://example.com/ 3213 427867 427109.427867.427963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1146070938631 0 \N \N f 0 \N 0 16366223 0 f f \N \N \N \N 427109 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423253 2025-03-03 06:56:31.329 2025-03-29 22:39:50.512 \N Maybe a [different landing page](https://stacker.news/items/398837/r/supratic) could help?\n\nhttps://imgprxy.stacker.news/e-Cmd_G_ljn1IRMri5FtXADjZbogp5n-P5HJmunHZqw/rs:fit:2560:1440/aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yZWZiMTNlZGE3ZjM0OWMzNWQ2OWUyOTM3ZjExY2Q3ZGIzNjQyOGU1OWM4NGMyNmYyOGM4ZjYxM2E5MTE2NDYxLnBuZw https://example.com/ 18430 423234 423079.423234.423253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9306893180446 0 \N \N f 0 \N 0 92273620 0 f f \N \N \N \N 423079 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424054 2025-03-03 19:54:17.218 2025-03-29 22:39:50.512 \N I think its important to think through the whys first. I don't want to share my details or what I want but having a list of factors or things you are concerned about in your current country is important because if you don't you could end up wasting a lot of time and money. \n\nThere are services that offer help to people wanting another passport as well. https://example.com/ 2508 423838 423362.423706.423838.424054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.10741349973225 0 \N \N f 0 \N 0 184477403 0 f f \N \N \N \N 423362 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424072 2025-03-03 20:06:50.13 2025-03-29 22:39:47.612 UTXO consolidation - What's you best option(s)? I've been in the Bitcoin space for 3 years now and still learn so much here everyday! I never consolidated UTXO's before. I've also made some poor decisions in the past, staking on Gemini earn and losing my precious Sats. Once I got a big chunk of Sats I'd move them to cold storage. I have a multi sig set up and now I have 50 UTXO's. looking at https://mempool.space/ and monitoring fees on the multisig site I have been monitoring fees for about 3 weeks. I got down to a 9 sat byte fee but ran into issues to verify the second key. Then finally I just got a 12 sat byte fee and got the consolidation in! It was a long journey, but now I can sleep better at night knowing I have generational wealth in cold storage in one UTXO! \n\nWhat's next? \n\n1) Well I stack daily, but I'm thinking sending larger chunks to cold storage? The con here is that you leave sats on exchanges for longer, but I only use Bitcoin only exchanges now. Do you think it's always a best practice to consolidate into one UTXO or are a few bigger ones just as good or better in certain situations?\n\n2) Get me seed off of paper. Something like this https://www.seedor.io/en-us, but was thinking of making my own\n\n3) Per my previous post work on the inheritance planning with it.\n\n\nHere are some other great articles from fellow Stackers on UTXO's:\nhttps://stacker.news/items/298282/r/BitcoinIsTheFuture\nhttps://stacker.news/items/278285/r/BitcoinIsTheFuture\nhttps://stacker.news/items/285930/r/BitcoinIsTheFuture \N 19524 \N 424072 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.7472254444267 0 \N \N f 0 \N 0 37968667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422203 2025-03-02 10:15:12.046 2025-03-29 22:39:47.612 Anytype — the everything app (alternative for Notion) \N https://anytype.io 21398 \N 422203 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 2.14141447216644 0 \N \N f 3932566725 \N 32 101250156 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 404693 2025-02-16 05:47:42.152 2025-03-29 22:39:50.512 \N Sure. we are still planning out the MVP that uses our API, so there are a lot more finer details to iron out before the whole customer journey is solid.\n\nThat said, the process should look something like this: \n\n1. Alice (or Bob) creates a contract and fills out the details of said contract, i.e title, desc, etc\n2. Bob deposits funds into the contract via the payment page\n3. Fulfillment of goods or services take place\n\nNow, there are two routes this can take.\n\nHappy path:\n4a. Bob is satisfied with the order / service and confirms this with the agent via the dashboard\n5a. Alice receives the funds and all parties walk away satisfied \n\nUnhappy path:\n4b. Bob is Unsatisfied with the order / service and tells this with the to agent via the support page - a dispute is opened\n5b. Evidence is presented from both parties and depending on the strength of the evidence from parties, the "winner" is decided \n6b. The winning party receives the funds\n\nThere are a lot more complexities that can happen, but this should be a high level overview of the customer journey. \n\nOur philosophy is to make this process as simple / fast as possible for your grandma who uses Bitcoin. https://example.com/ 3683 403662 403662.404693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.52029876855989 0 \N \N f 0 \N 0 53092031 0 f f \N \N \N \N 403662 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427983 2025-03-06 18:47:55.027 2025-03-29 22:39:50.513 \N I was thinking this after the introduction of the concept of unzaps. If the list of unzaps is public, then maybe people would think it twice before doing the unzap if it is not totally justified. \nI've been thinking about this more and it could prevent some autozapping spam if we can see some users always receiving zaps from certain accounts that are not active commenting for example. This is specially important when you receive rewards for zapping early. \nThe whole idea needs to be discussed at least. https://example.com/ 12736 427739 427739.427983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.86293863803191 0 \N \N f 0 \N 0 143677969 0 f f \N \N \N \N 427739 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451247 2025-03-24 13:17:43.808 2025-03-29 22:39:50.513 \N My personal favorite ideas:\n\n1. Revenue must be shared with the content providers. No marketplace takes 100% of merchants' revenues, web-search shouldn't either.\n\n2. People should be able to influence the search results. LN should help fight the sybil attacks. This whole AI thing makes me feel humans should have more to say about what comes up in search results. Not sure about the exact mechanism though. https://example.com/ 12222 451208 451208.451247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8699926041408 0 \N \N f 0 \N 0 107596227 0 f f \N \N \N \N 451208 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410495 2025-02-20 14:04:46.335 2025-03-29 22:39:50.513 \N Stop complaining, lift weights, stack sats. https://example.com/ 760 410391 410156.410391.410495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.24455964199039 0 \N \N f 0 \N 0 248028980 0 f f \N \N \N \N 410156 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423290 2025-03-03 07:37:17.084 2025-03-29 22:39:50.513 \N Unique property #1: It's the oldest time-chain\nUnique property #2: It contains the heaviest proof-of-work\nUnique property #3: Market cap never surpassed by alternative timechains https://example.com/ 7395 423288 422894.423257.423288.423290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.64869459174877 0 \N \N f 0 \N 0 36856816 0 f f \N \N \N \N 422894 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431265 2025-03-09 16:09:54.153 2025-03-29 22:39:50.513 \N What is truly sustainable though? \n\nhttps://www.latimes.com/business/story/2022-07-14/california-rooftop-solar-pv-panels-recycling-danger\n\nSolar energy seemed like a utopian dream. Why wouldn't the sun be able to supply us with all the energy we'd need? But it quickly turned into a Marxist, state-funded dystopia of wealthy nation's dumping disused, toxic solar panels on poor neighbors. \n\nI suspect that the wind energy industry is a similar dystopian reality. Perhaps nuclear energy is our savior? https://example.com/ 5728 385880 385880.431265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.52394142193133 0 \N \N f 0 \N 0 134456199 0 f f \N \N \N \N 385880 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401809 2025-02-13 12:06:33.149 2025-03-29 22:39:47.612 Crossing Dubious Borders With Bitcoin In a few months my family and I will need to visit some relatives in China. They haven't seen the kids yet and I want to see them before the world gets too cucked. So.... I'm in a bit of a pickle as of what to do with the bitcoin on my phone, and in particular the lightning channels. The opening/closing fee's look pretty good at the moment but I have a feeling it won't last long.\n\nAnyway, I'd like to have some LN functionality to show some of my friends and relatives how it works and what they can do with it. I'm just thinking about how I want to cross the border and I'd appreciate some help from the SN hive mind.\n\nAustralian border force have the right to search through all your belonging including laptops, phones etc. China most likely also have the same rules too. I'm pretty sure they can't confiscate the funds unless it's over $10k, but I just don't really want anyone going through all my stuff. It's definitely nowhere near that much and I know haven't done anything wrong. \n\nI have a few ideas as to how my family and I cross this border.\n\nA: Don't do anything. Keep your phone as it is and hope for the best \n\nB: Close channels and delete everything from the device and memorize seed/s\n\nC: Don't close channels, don't take the device and live without bitcoin for a few months\n\nD: Other \N 15103 \N 401809 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.74635024848811 0 \N \N f 0 \N 0 42138928 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 456621 2025-03-27 17:48:57.584 2025-03-29 22:39:50.514 \N Very interesting. First time seeing [Stakwork](https://stakwork.com/). \n\nLooks like something to look into. https://example.com/ 15806 456607 456560.456570.456574.456607.456621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8019942900455 0 \N \N f 0 \N 0 212327968 0 f f \N \N \N \N 456560 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403903 2025-02-15 10:56:35.036 2025-03-29 22:39:50.514 \N All plant life on Earth nearly died from low CO2 levels at the end of the most recent ice age. \n\nWhy? Crustaceans had been pulling carbon our of the atmosphere for millions of years in order to make their shells and there is no offsetting natural process to recirculate it into the atmosphere. https://example.com/ 11942 403824 403824.403903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1975298215114 0 \N \N f 0 \N 0 176260608 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410719 2025-02-20 16:33:37.97 2025-03-29 22:39:50.514 \N >this could solve an onchain problem\n\nAnd why people think that this will fix something?\nWhat is that "problem" with onchain? I do not see any problem onchain. Onchain works as it was designed.\n\nAre some other new improvements to be done onchain? YES, but have patience guys, these changes are not done in few days. Any changes onchain must be weight very carefully not to break things. Don't me wrong, I am not against changes onchain, I just want that to be carefully implemented and discussed, analyzed.\n\nPeople have a wrong perception and understanding about what really is TARO or for what purpose was created. They immediately jump into conclusion that "will fix x and y problem".. IT IS NOT.\n\nTaro, aka TapAss, is designed to be used by corporations, companies, financial institutions, rentals or whatever other financial entity that need/want to issue digital assets and trade or use them for their financial instruments. \nHere we can say: a corporation like Microstrategy that wants to issue bonds or shares and want to trade them in a decentralized way or move them between owners, without going to legacy financial systems.\n\nTapAss is not for the plebs to go and buy a coffee! Or will fix your shity node liquidity or will speed up your onchain opening channels etc... Stop thinking about that!\n\nTapAss DOESN'T SOLVE ANYTHING that could be broken. It just create a new friction.\n\nAnd please think again about this meme...\n[![vader-power-dark-side.jpg](https://i.postimg.cc/sXmH6BvR/vader-power-dark-side.jpg)](https://postimg.cc/G8Bj9mFM) https://example.com/ 2674 410691 410691.410719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0248629118202 0 \N \N f 0 \N 0 147026638 0 f f \N \N \N \N 410691 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404619 2025-02-16 02:43:21.191 2025-03-29 22:39:50.514 \N I invest into ben with the expectation that I will make a return based on other people's work https://example.com/ 8535 404575 403999.404575.404619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.71209525206655 0 \N \N f 0 \N 0 138417123 0 f f \N \N \N \N 403999 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403070 2025-02-14 12:18:48.233 2025-03-29 22:39:50.514 \N It's a history fact so I am not sure how it will play out but here it is...\n\nThe 10th President of the United States John Tyler (President from 1841 to 1845) was born in 1790 or 14 years after the founding of the US. He still has a GRANDSON alive named Harrison Ruffin Tyler! It was pretty big news a few years ago in 2020 when Harrison Ruffin Tyler's brother, Lyon Gardiner Tyler Jr., died. It just goes on to show you how weird time can be that a guy born 234 years ago has a GRANDKID alive! He's 95 now btw! \n\nHeres an article from the [Smithsonian](https://www.smithsonianmag.com/smart-news/grandson-10th-president-john-tyler-dies-180975992/) about it! https://example.com/ 17541 403067 403058.403067.403070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3126985821207 0 \N \N f 0 \N 0 109637945 0 f f \N \N \N \N 403058 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415334 2025-02-24 17:56:24.397 2025-03-29 22:39:50.514 \N It's worth starting with the pain points in traditional rewards systems which typically boil down to 2 main categories: lack of value and lack of flexibility.\n\nAnd so:\n\n-Bitcoin the asset preserves reward purchasing power over time instead of eroding it like w/ traditional points and miles (and the rate at which that purchasing power erodes can be crazy - I talked about this in a recent podcast with Natalie Brunell: https://www.youtube.com/watch?v=tYJ4QBvTXzo)\n\n-Bitcoin the network can connect what were previously siloed units of loyalty value that don't / can't talk to each other and give users more optionality in exchanging value. Similar to how people like Jack Mallers talk about the merits of Lightning as this interoperable, open network for intermediating fiat currencies, we see a similar possibility for different units of loyalty value\n\nThis is the hypothesis at least! Still in progress of testing said hypothesis :) https://example.com/ 21339 415262 414863.415262.415334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2031132693807 0 \N \N f 0 \N 0 105846460 0 f f \N \N \N \N 414863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415336 2025-02-24 17:59:48.45 2025-03-29 22:39:50.514 \N Alive:\n1 **Stephen King**. Love his writing, and he's always seemed like a fun person to talk to.\n2. **Richard Dawkins**. One of the great scientists and thinkers.\n3. **Billy Joel**. My favorite singer for decades.\n\nDead:\n1. **Bill Hicks**. Trying to avoid dupes, and he's tied with George Carlin as my favorite comic.\n2. **Truman Capote**. Supposedly one of the great dinner guests of all time, and man did he know some stories.\n3. **Mary Shelley**. *Frankenstein* alone would be enough, but throw in all the gossip she'd have about Byron, plus insight into her parents, plus her husband and Keats. https://example.com/ 13097 191467 190866.191309.191467.415336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8765983327306 0 \N \N f 0 \N 0 238373976 0 f f \N \N \N \N 190866 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401787 2025-02-13 11:53:22.914 2025-03-29 22:39:50.514 \N Having a kid with autism. https://example.com/ 10944 401611 401611.401787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7126277927557 0 \N \N f 0 \N 0 249320909 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423011 2025-03-02 21:26:30.222 2025-03-29 22:39:50.514 \N Are there any games coming that have Bitcoin in them but that are not play-to-earn? https://example.com/ 749 422548 422548.423011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5566893698363 0 \N \N f 0 \N 0 75314451 0 f f \N \N \N \N 422548 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424107 2025-03-03 20:35:38.484 2025-03-29 22:39:50.509 \N Great approach. Show her that you're fun (and not threatening). I might recommend aiming for a few interactions that don't end in asking her, but it's on you to read the room and take your shots where you see them.\n\nI don't think you should take that awkward third rejection too hard. Many young women feel uncomfortable being asked out and if she's very pretty she might find it a bit tedious. https://example.com/ 5806 417013 416056.416366.416382.416991.417013.424107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9962719287295 0 \N \N f 0 \N 0 175980729 0 f f \N \N \N \N 416056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424291 2025-03-04 00:07:17.314 2025-03-29 22:39:50.509 \N # Tip of the day!\n## Lightning Network (LN) Resources for newbies\n\nI see many new users coming here but have no idea about LN and how it works and why LN exist.\n\nIMPORTANT aspects: \n- Bitcoin layer 1 (onchain) could not grow and go forward without LN! Forget about saying that you will always transact only onchain.\n- Bitcoin L1 (onchain) will just gonna die without LN.\n- Soon the L1 will be used ONLY to open and close LN channels, store large amount of BTC in cold wallets, NOT to transact each others, to buy groceries.\n- Onchain is your "central bank", your store of value system.\n- LN is the PAYMENT NETWORK for L1 (onchain), the spending pockets, your "commercial bank".\n\n[As I explained in this guide](https://darthcoin.substack.com/p/bitcoin-be-your-own-bank-think-like), use the 3 level of stashing: HODL, Cache, Spend.\n\nGuys, before start saying nonsense and stupidities about LN, please read and learn more about LN.\nThere is a plethora of documentation out there, free, open, guides etc. Are there to be read, not to be ignored.\n\n### Please bookmark them, it will save you a lot of time if you read them.\nHere I prepared for you, a basic list:\n\nA. General information and documentation about the Lightning Network\n- [An Overview of Lightning Network Implementations](https://medium.com/@fulgur.ventures/an-overview-of-lightning-network-implementations-d670255a6cfa)\n- [Lightning Network Resources, complete library about LN](https://lightning.how/) - by Jamesson Lopp\n- [LND Documentation](https://docs.lightning.engineering/) - by Lightning Engineering\n- [CLN Documentation](https://lightning.readthedocs.io/index.html) - by CLN team\n- [Lightning Node Management](https://www.lightningnode.info/) – by openoms, excellent guide!\n- [Lightning Node Management en Español](https://www.lightningnode.info/v/es/) – by openoms\n- [Beginners LN Guide](https://bitcoiner.guide/lightning/) – by Bitcoin Q&A\n- [Lightning Network Dev Curriculum](https://github.com/chaincodelabs/lightning-curriculum/) – by Chaincode Labs, very good resources\n\nB. Guides and Video tutorials about the Lightning Network and Bitcoin nodes\n- [What is a Bitcoin node](https://youtu.be/sVeolsQ3cvU)\n- [The Lightning Network: The most efficient payment system in the world](https://youtu.be/z9n8WRfMw8M)\n- [How LN channels work – by Decentralized Thought](https://youtu.be/pOZaLbUUZUs)\n- [LN explained](https://www.youtube.com/user/renepickhardt/videos) – by René Pickhardt\n- [LN Channels Management](https://youtu.be/HlPIB6jt6ww) – by Alex Bosworth\n- [Everything you need to know about LN](https://youtu.be/bW7hvvjum9o) – Till Musshoff\n- [DarthCoin guides about Bitcoin and LN nodes](https://darthcoin.substack.com/s/english/archive?sort=new)\n\nAnd many more links [here](https://community.getumbrel.com/t/important-links-to-learn-more-about-bitcoin-lightning-network/) https://example.com/ 706 424268 424220.424268.424291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.60562868599781 0 \N \N f 0 \N 0 90113949 0 f f \N \N \N \N 424220 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422733 2025-03-02 16:58:59.289 2025-03-29 22:39:50.509 \N Kind of tired this morning after my first bitcoin meetup last night. Long drive, but worth it. https://example.com/ 3683 422548 422548.422733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0101724347481 0 \N \N f 0 \N 0 123133333 0 f f \N \N \N \N 422548 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417065 2025-02-26 04:06:53.742 2025-03-29 22:39:50.509 \N We don’t “need more women” in Bitcoin. We also don’t need more men in Bitcoin. What we need is more families in Bitcoin, more businesses in Bitcoin, more communities in Bitcoin.\n\nThere’s an old saying: *“If you want to go fast, go alone; if you want to go far, go together.”*\n\nUntil now, we have gone fast, and for the most part, it has worked out great. But in the near future, we need to get more focused on going far, especially as the incumbent system crumbles.\n\nHumans are a social species for a reason. None of us are meant to do it alone. Our successes and failures are interdependent on each other. Times ahead may be rough but if we can take care of ourselves, our surroundings and the people around us, then no dark forces can hold us down or stop us from achieving the highest versions of ourselves, and consequently, the world.\n\n*For Love,\nFor Peace,\nFor Freedom*\n💜🧡🤠 https://example.com/ 659 416918 416918.417065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2116930022022 0 \N \N f 0 \N 0 20248529 0 f f \N \N \N \N 416918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422729 2025-03-02 16:57:08.339 2025-03-29 22:39:50.51 \N Sybil attacks aren't as easy as you probably think they are. Since nodes always make outgoing connections to diverse IP address space, to Sybil attack any node you need to run enough nodes that the entire IP address space is Sybil attacked. That's really difficult as getting access to that much IP address space is really difficult. It's also a risk that isn't related to full-rbf peering: any node has this risk. In fact, arguably full-rbf peering slightly reduces that risk as by default it connects to 14 outgoing peers rather than 10.\n\nNow, if you run full-rbf peering _and_ accept incoming connections you advertise that fact and maybe someone might do DoS attacks against you. But DoS attacks can't make you lose coins (with the one exception of certain Lightning setups).\n\nAnyway, tl;dr: running a full-rbf peering node is having a small amount of bravery. We need people to be brave for society to work. Hell, running the first Bitcoin nodes required a bit of bravery.\n\nBe brave. https://example.com/ 4238 422548 422548.422729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8639149051876 0 \N \N f 0 \N 0 123069978 0 f f \N \N \N \N 422548 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404620 2025-02-16 02:44:52.898 2025-03-29 22:39:50.51 \N Day 231 of snailposting everyday 'til BTC hits $100k.\n\n...and 31 push-up(s).\n\n__@_'-' https://example.com/ 5637 404141 403999.404141.404620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3917882269978 0 \N \N f 0 \N 0 71354003 0 f f \N \N \N \N 403999 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448171 2025-03-22 12:58:24.924 2025-03-29 22:39:50.51 \N I wouldn't do anything different. It won't happen, and even if it does, it would not matter - it's like banning water. Banning it would just make it more valuable and useful. https://example.com/ 2224 448092 448092.448171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.72514997925 0 \N \N f 0 \N 0 143363445 0 f f \N \N \N \N 448092 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 444282 2025-03-19 18:47:40.217 2025-03-29 22:39:47.61 The bitcoin only scene in Australia Inspired by @dash_1971's excellent post on the scene in Japan .. \n\nMacro\nAustralia is a member of the G20 and one of the 5-eyes nations so there is a general trend to increasing (financial) surveillance, and the use of the financial system and payments for exerting control. We're the only nation that has it's own tectonic plate and our country is larger than Europe, and the US (excluding Alaska). We're rich in resources (coal, uranium, iron ore, wheat and wool), and are net exporters of energy and food. We're also at the ass-end of the planet, so there is a cultural thread of innovation because (I suspect historically) we have to look after ourselves without relying on someone/thing that's gotta come from other-side-of-the-planet.\n\nEconomy\nLike a lot of places, highly and increasingly financialised. VCs and Bankers buying up scores of private medical practices, wrapping them in a corporate structure, "streamlining" the back-end administration processes (lolz), and dumping them as listed companies. Rinse and repeat for vets, dentists etc etc. The real-estate is some of the most expensive in the world, and is at this point, un-affordable for young Australians starting their working lives. Caused by generous tax breaks for investors and lots of juicing from the big 4 banks.\n\nWe have a birthrate that is at best neutral, and population is only increasing via immigration and increased longevity (like most of the western world). Rental accommodation is expensive and scarce and in combination is increasing stress throughout society. Which brings us to bitcoin :-)\n\nRegulation and tax\nTreated as property and therefore subject to capital gains tax as land or other assets, with a very important carve-out. Personal use transactions of up to AUD$10k are not subject to capital gains tax, so there is no need to report at all. This has been important because it encourages people to use and try bitcoin, lightning, liquid, fedi and other innovations that come along .. without incurring administrative BS overheads .. and costs.\n\nBuying (and selling) bitcoin\nWe've 4 dedicated bitcoin-only exchanges so are spoilt for choice and have a range of options to safely point noobs to when they start their bitcoin journey:\n- amber.app (mobile only)\n- bitaroo\n- hardblock\n- paybtc (non-custodial)\nPlus the usual access (with limited liquidity) to Robosats, Bisq, Hodlhodl etc.\n\nBitcoin and altcoins\nWith a strong undercurrent of innovation, there were ICOs and various blockchain projects run out of Australia with the usual results. But increasingly there's an emerging distinction between Bitcoin and Crypto (thankfully). \n \nOne of the Aussie bitcoiners has done the work to pull together Australian state housing prices in AUD$ and BTC - now there's an eye-opener for you. If you want to own property, then you're going to need to save for it in bitcoin .. you can check that out here: https://bitcoinbushbash.info/houseprices/\n\nMeetups\nThe Meetup scene is running in most state capital cities (Melbourne, Perth, Adelaide, Sydney, Brisbane at least), and more regional ones are popping up every year (northern rivers, central cost, FNQ etc). This is great to see - local meetups are (imo) the lifeblood of Bitcoin - the base social layer.\n\nAs a kind of a super-meetup, there's the Bitcoin BushBash which is a full weekend event in a regional centre. Gotta exhibit some proof-of-work to travel there. Held outside school holidays (so accom & travel is cheap), these are KYC-free, no-registration bitcoin-only events. Speakers volunteer and they have been growing steadily over the last 3 years. We hold those 3 times a year (Murrarundi in the Spring - late Nov, Beechworth in the Autumn - March, and Palm Cove in the Winter - end of July).\n\nAnd the crowning event is Bitcoin Alive - a full national conference in Sydney in March/April. Inaugural event was 2023 and hugely popular and successful. plebs already keen for '24 and I think tix are now on sale for that in March next year. Fuck yeah!\n\nSummary\nWe're so damn early. Bitcoin-only scene is growing slowly and steadily and that's the way it should be. Lots of marketing work being done by the retards in our central bank and government. Lots of building work being done by developers, miners, educators and organisers. Most meetups have a regular cadence so if you're coming down to Oz, reach out on tg to one of the meetup groups and you're guaranteed to find Aussie plebs keen for a frosty cone and a bitcoin yarn.\n \N 6602 \N 444282 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 4.46519374873915 0 \N \N f 0 \N 0 210389969 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442443 2025-03-18 15:03:44.634 2025-03-29 22:39:47.61 A scary experience verifying my seed phrase backup # Background\nI have a stack in a single sig passphrased wallet. The key (but not the passphrase, which I have to enter every time) is stored on a hardware signer, and I have a seed phrase backup on a couple of steel plates.\n\nI was looking into securing this setup further in the 'positive' direction (i.e. preventing losing access to it, as opposed to preventing others from gaining access) by using something like steganography or references to a book, and thought I'd verify the seed phrase backup again before copying it.\n\n# What I did\n## Attempt 1\nThe best way to verify is by using another hardware signer. But the only other signer I had was a Ledger Nano X, left over from my shipcoin days.\nI don't trust the device and as it turned out, the only way to enter a new seed phrase into it required using their software Ledger Live, which I trust even less. I decided not to pursue that route.\n\nI didn't want to spend money on another Bitcoin-only hardware signer either.\n\n## Attempt 2\nI decided on using a software-only way, namely:\n1. Tails (which I'd never used before), and\n2. Whatever software would allow me to enter the seed phrase + passphrase and calculate something public I could compare against the key stored in my HW signer.\n\nI downloaded, verified and etched Tails on a USB stick.\nFor 2, my first attempt involved writing a Python script using `bip_utils` that asks the seed phrase and passphrase and calculates the zpub, to subsequently compare it to the control zpub (which I could see in my Sparrow/HWS setup).\n\n### Attempt 2.1\nWhile Python is included in Tails, and I was able to install `pip`, I couldn't get the latter to install `bip_utils` on my Tails instance. It complained about it being an external library or something like that, presumably something having to do with security (?). It suggested installing it within a VM as a solution, but it seemed like too much to figure out, especially since...\n\n### Attempt 2.2\n...I realized Tails had Electrum pre-installed already. So I thought: ok, I'll disconnect from the internet, import my seed + passphrase into Electrum, and compare the calculated zpub against the control one.\n\nI went ahead with that. Electrum warned me along the lines of "You're running with permanent storage disabled, which is probably not what you want." It obviously **was** what I wanted!\n\nI took basic precautions against side-channel attacks, like moving my phone away and putting a fan on to blow on it to mask the sound of the keystrokes.\n\n## But after I entered the seed phrase, I panicked\nI was running Tails on my mini PC (which is normally used as a full Bitcoin node, plus a couple of self-hosted services). Most of the time it runs headless, but it's connected to a smart TV via HDMI. And I realized the TV itself had an ethernet cable plugged in. 😱\n\nI thought: "What if the smart TV is spying on me and broadcasting HDMI input via the internet to the manufacturer? They'd be able see the seed phrase I've just entered."\nI quickly turned off the router to make sure the entire building was disconnected.\nLuckily I still had the passphrase (and a strong one at that, 56 bits of entropy IIRC) to protect me, which I hadn't entered yet and it was asterisked out anyway.\n\nI entered the passphrase with the internet off and verified visually that the zpub was correct.\n\nBut then I started ruminating. "What's the likelihood of such a scenario? Do they have a legitimate reason to spy on HDMI input? Might they have included a backdoor in their hardware for illegitimate reasons?"\nThe smart TV was an old model, purchased in 2018, slow and somewhat shaky, and it didn't support installing apps, updating the firmware or anything like that - so it couldn't have been infected with a virus or malware. It could only spy on me if such functionality was built-in by the manufacturer from the get-go.\n\nI thought I'd sleep on it and probably move my UTXOs to a new wallet. Thanks to the passphrase I had at least a few days to act.\n\nThe following day I decided to have a closer look at the TV and realized:\n1. Wifi was disabled (it didn't know the wifi password)\n2. The ethernet cable, while it was plugged into the TV, wasn't plugged into the network switch.\n\nSo the TV wasn't even connected to begin with at the time of my entering the seed phrase. Phew! No need to move my coins. \N 13599 \N 442443 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 8.36178429685937 0 \N \N f 0 \N 0 166569992 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423092 2025-03-03 00:36:24.345 2025-03-29 22:39:50.51 \N I vote for Andreas. https://example.com/ 13566 422548 422548.423092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.886348418264 0 \N \N f 0 \N 0 20932089 0 f f \N \N \N \N 422548 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410725 2025-02-20 16:36:29.227 2025-03-29 22:39:50.511 \N That's very kind, Anita, but you're the one who deserves the thanks from all of us. I hope we can raise enough sats for you today to make a difference. https://example.com/ 16633 410700 410016.410700.410725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4157869256836 0 \N \N f 0 \N 0 42148481 0 f f \N \N \N \N 410016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438046 2025-03-15 07:23:48.35 2025-03-29 22:39:50.511 \N Can I just say how much I like SN? Even if I didn't care at all about btc, the design choices here are so nice, the features really give you the tools to grow a community and to have real discussions about things. This is the closest thing I've ever found to a place I'd like to "settle" in this space.\n\nMy hot take after a week or so of being an active user is that the SN software is going to become notable outside the btc/nostr communities. At the very least, others are going to rip off the features and design principles. https://example.com/ 6471 437886 437775.437886.438046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0134987558532 0 \N \N f 0 \N 0 81981756 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410166 2025-02-20 10:10:03.157 2025-03-29 22:39:50.512 \N Working on building the thing we need most right now: Bitcoin education in local communities. Me and some friends are trying to start a Bitcoin club at a local high school. We haven't yet decided how to structure each meeting, so that's the wip level its at.\n\nOne idea I'd like to bounce off you guys is chosing a club member, either randomly or by vote, to present on and lead a discussion about something Bitcoin related they chose to research the previous week. The idea is that this would help lead people more naturally down the rabbit hole.\n\nOnce enough people join we may get to work on persuading some local businesses to accept bitcoin, but we'll see what happens. I'm excited to see what can be done with it though. https://example.com/ 2537 367392 367392.410166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.84372173519943 0 \N \N f 0 \N 0 147817997 0 f f \N \N \N \N 367392 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431225 2025-03-09 16:04:59.764 2025-03-29 22:39:50.512 \N Stopped paying rent. So many Bitcoin paid to landlords over the years! Real estate "as investment" is still a shitcoin.\n\nBut Sovereign Man owns his primary residence because he's building a multi-generational citadel. Also, most landlords would not consent to converting the property's heating system to run on ASICs exhaust. Doing the water heater next.\n\nBut now I have to pay property taxes which are used to fund public schools. Sovereign man does not approve. https://example.com/ 1030 397467 397467.431225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6502667451182 0 \N \N f 0 \N 0 146463450 0 f f \N \N \N \N 397467 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442363 2025-03-18 14:31:52.169 2025-03-29 22:39:50.512 \N Only a couple of times. \n\nOnce was for pantsing a friend in gym class (probably worse because it was a girl).\n\nAnother was inexplicably for buying my friend a burrito in the school cafeteria. There really was nothing more to it and I have no idea what the psychotic vice principal was thinking. https://example.com/ 15491 442339 442339.442363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8929445344556 0 \N \N f 0 \N 0 220891949 0 f f \N \N \N \N 442339 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410774 2025-02-20 17:12:25.4 2025-03-29 22:39:50.513 \N I think it is to early to say. On the one hand, BRC-20 uses bitcoin so in that sense they are increasing adoption. But the question I think you are asking is this TYPE of adoption good for bitcoin growth. I don't think higher fees are gonna hurt adoption long term but short term it may. Who knows. Honestly, I don't see the value of this stuff... yet. I try to be open minded and I haven't looked into it deeply. So far from what I've seen it is a waste of time. https://example.com/ 20734 410767 410756.410763.410767.410774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6907988314721 0 \N \N f 0 \N 0 29530396 0 f f \N \N \N \N 410756 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436939 2025-03-14 03:50:25.564 2025-03-29 22:39:50.513 \N Day 92 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 647 436935 436935.436939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9412884690092 0 \N \N f 0 \N 0 202055722 0 f f \N \N \N \N 436935 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431021 2025-03-09 15:09:32.682 2025-03-29 22:39:50.515 \N The Monero Shill account when he thinks he's a provocative troll but actually nobody cares:\n\n![moneroshill](https://i.imgflip.com/1t9of4.jpg) https://example.com/ 987 426555 426555.431021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4310061392718 0 \N \N f 0 \N 0 44805522 0 f f \N \N \N \N 426555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403458 2025-02-14 20:34:14.184 2025-03-29 22:39:50.515 \N Making some steady progress in my tiny cabin project 🙂 Yesterday I managed to frame the second wall. Today more framing is coming my way 😁 I must say woodworking is fun, almost like real size legos.\n\n![two wall frames](https://i.ibb.co/4NLSsbN/second-wall-frame.jpg)\n\nHave a good one! https://example.com/ 20892 403323 403323.403458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3982156310892 0 \N \N f 0 \N 0 34683972 0 f f \N \N \N \N 403323 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421080 2025-03-01 11:36:45.128 2025-03-29 22:39:50.516 \N What have been the biggest challenges building and running Alby as an open source project and company? What have been the biggest benefits? https://example.com/ 7580 420738 420620.420738.421080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0356917659208 0 \N \N f 0 \N 0 77669727 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403997 2025-02-15 12:46:51.972 2025-03-29 22:39:50.517 \N Making a to do list for my web based bitcoin podcast player.\nAdding more podcasts to the list.\nLearn to code properly.\nAdd lightning or nostr auth to have a save favorites feature.\nLearn to code properly.\nExplore progressive web apps.\nLearn to code properly.\nhttps://hodljuice.app \n https://example.com/ 688 403947 403947.403997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.43186825371262 0 \N \N f 0 \N 0 59718060 0 f f \N \N \N \N 403947 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410301 2025-02-20 12:23:55.527 2025-03-29 22:39:50.517 \N Yes and no. There is still some branding visible. If the person going through your stuff recognizes the branding it's game over. I have been thinking about the fact that it looks like a calculator or maybe an old 2FA bank token (those were popular in the UK like a decade ago, not sure now) but the problem is that it does not behave like one. Imagine my example with some LEOs checking your pockets. What is that? Oh it's a calculator. Can you turn it on? Game over again because if I recall correctly Coldcard devices require external battery and even if they had a battery installed there is still a matter of the software. You turn on such a device and it either states what it is or in the best case scenario, just asks for a pin. Well, that's not how a calculator behaves. It would be nice if the software of this kind of devices had like two modes: if you just turn it on, it goes to dump calculator mode or even just display an error, pretending it's broken, and the other actual hww mode that you can go into only if you turn it on e.g. holding one of other buttons, etc. I know I am a bit paranoid but if we want to pretend that Coldcard is a calculator then lets make sure it can hold to this story longer than 3 seconds. https://example.com/ 10519 410284 410184.410284.410301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.257810503391 0 \N \N f 0 \N 0 148303105 0 f f \N \N \N \N 410184 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443227 2025-03-19 07:32:11.107 2025-03-29 22:39:50.517 \N We promise to ask intelligent reflective questions, @saylor ! https://example.com/ 5590 443178 443178.443227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.317003494753 0 \N \N f 0 \N 0 196248489 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410788 2025-02-20 17:21:47.439 2025-03-29 22:39:50.518 \N What led you to leave Ethereum to build on Bitcoin? https://example.com/ 15858 387267 387267.410788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7471397416897 0 \N \N f 0 \N 0 202321133 0 f f \N \N \N \N 387267 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442658 2025-03-18 18:16:29.632 2025-03-29 22:39:50.518 \N This is more fun than fact: you shouldn't mix salmon and Nutella. Why? Because you risk making salmonella. \n\nI'll see myself out now... https://example.com/ 17535 442653 442588.442591.442653.442658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8577774096382 0 \N \N f 0 \N 0 209994679 0 f f \N \N \N \N 442588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430439 2025-03-09 07:11:33.064 2025-03-29 22:39:50.519 \N I haven't done the math, but my general idea was to grow territory revenue while giving back to the best creators in the territory. I am trying something different with bitcoin beginners, where I am literally trying to award top posts more as my revenue grows. Again, it's not mathematically exact, but I donate an award pool of 2000 sats a week. If the weekly territory revenue exceeds 2000 sats average per day, I increase the weekly pool size by that amount. So far it has only happened once. https://example.com/ 11819 430258 430258.430439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.77805326223098 0 \N \N f 0 \N 0 53853952 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437087 2025-03-14 10:11:09.412 2025-03-29 22:39:47.61 Open Source Arrests: US Officials Sour on Biden’s War on Privacy I have to say the title seems like wishful thinking to me, but this article contains many interesting tidbits and quotes. https://www.therage.co/us-officials-sour-on-biden-war-on-privacy/ 11018 \N 437087 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 6.6905395923893 0 \N \N f 0 \N 0 41504455 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427945 2025-03-06 18:13:04.077 2025-03-29 22:39:50.509 \N It would be great if it did that. But it doesnt, at least, not in its current form.\n\nThe weakness of the system is that the whole monetary base is predicated upon lending your coins to miners. Those miners may not give those coins back. In fact, in any game theory simulation, the miners should wipe out the lenders, because they are making bad choices.\n\nThis kind of weak security cannot compete with alts, let alone gold.\n\nIf we can find a way to remove the potential, or even inevitable, security holes, the concept could be a good one. But more thought is required. https://example.com/ 7960 427833 427091.427540.427556.427574.427722.427750.427787.427833.427945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.733827635634086 0 \N \N f 0 \N 0 117939614 0 f f \N \N \N \N 427091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438089 2025-03-15 08:42:04.609 2025-03-29 22:39:50.509 \N Could always compose and broadcast the tx and wait for prices to drop https://example.com/ 16126 437963 437963.438089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.92720091641236 0 \N \N f 0 \N 0 67433432 0 f f \N \N \N \N 437963 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416297 2025-02-25 14:27:55.435 2025-03-29 22:39:50.509 \N This is a very popular narrative, but it's just not true.\n\nLnd is collaborating with the rest, including on some of the things you listed in the post.\nAs an example, BOLT12 is [actively being developed for Lnd](https://github.com/carlaKC/boltnd/) by Carla Kirk-Cohen, an ex-Lightning Labs employee.\n\nLN node devs have weekly meetings where the BOLT-specification is being discussed. You would find that the narrative that it's "Lnd's way or the highway" is just not true, if you actually did some digging. \n\n---\n\nAnyway, all LN node companies have their own fair share of Conflict of Interest.\nI don't see you complaining that ACINQ went proprietary with their 0-conf channel feature for their own Phoenix Wallet. A feature that all LN node implementations and wallets would benefit from.\nIt took years before Rusty went on to do it the right way (thank you for that) and make it into the BOLT-specification.\nFeatures `option_scid_alias` and `option_zeroconf` are now supported in all big LN node implementations. A success story.\n\nMy point with this that it's not just "lnd bad, the rest good". It's childish to think like that. There is some dirt everywhere. https://example.com/ 9421 416127 416127.416297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.55189894257264 0 \N \N f 0 \N 0 198858847 0 f f \N \N \N \N 416127 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417053 2025-02-26 03:29:42.119 2025-03-29 22:39:50.519 \N I still do not see how a simple tool to transaction accelerator could lead to "centralization". Nobody is forcing you to use it.\nAlso there are many others miners that are doing this and from long time not just now.\n\nIn the future, I see the coming of so called "scrap miners", the ones that are willing to include in a block those txs with low fee and in exchange for small amount of sats, paid directly to them, user tx could be pushed to a block that they are trying to mine. But in the end this is just a lottery, you never know if they have enough hash power to mine that block with pushed txs. But if they have that luck, so be it. Why not?\n\nThis will increase the challenge on the fee market and that is good, all those greedy miners will be forced slowly to accept low fee txs. https://example.com/ 5646 416912 416158.416267.416325.416912.417053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.25825462243287 0 \N \N f 0 \N 0 48048414 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407821 2025-02-18 12:07:28.764 2025-03-29 22:39:50.519 \N I mindlessly zapped this post https://example.com/ 7916 407714 407714.407821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1786367887495 0 \N \N f 0 \N 0 3000659 0 f f \N \N \N \N 407714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431136 2025-03-09 15:35:20.648 2025-03-29 22:39:50.519 \N The **bitcoin symbol** was added to **[unicode](https://home.unicode.org/)** in **[June 2017](https://blog.unicode.org/2017/06/announcing-unicode-standard-version-100.html)** with the release of **[version 10.0](https://www.unicode.org/versions/Unicode10.0.0/)**. The code point assigned to the bitcoin symbol is **U+20BF** (**₿**). It was categorized as a **[currency symbol](https://www.unicode.org/charts/beta/nameslist/n_20A0.html)**.\n\n--------\n\n###### some digging on [unicode.org mail-arch](https://www.unicode.org/mail-arch/):\n\n- [2011/12/Jun | António Martins | Bitcoin sign](https://unicode.org/mail-arch/unicode-ml/y2011-m06/0082.html)\n - > Here: https://en.bitcoin.it/wiki/Promotional_graphics\nMaybe this will be suitable for encoding in the future. Looks like a\nvariant of U+0E3F THAI CURRENCY SYMBOL BAHT, with double stroke\nshowing only above and bellow the "B".\n-- ____.\nAntónio MARTINS-Tuválkin | ()|\n **Não me invejo de quem tem** |####|\nPT-1500-111 LISBOA **carros, parelhas e montes** |\n+351 934 821 700, +351 217 150 939 **só me invejo de quem bebe** |\nICQ:193279138 http://tuvalkin.web.pt/ **a água em todas as fontes** |\n\n- [2011/13/Jun | Roozbeh Pournader | Re: Bitcoin sign](https://unicode.org/mail-arch/unicode-ml/y2011-m06/0096.html)\n - > This was discussed in the latest UTC meeting based on a proposal. The\ncommittee asked for evidence of plain text use (which was not given)\nand some research into its trademark status, IIRC.\n\n- [2011/09/Jul | Luke-Jr | Re: Bitcoin sign](https://www.unicode.org/mail-arch/unicode-ml/y2011-m07/0058.html)\n - > Just realized this is actually already supported by Unicode: B⃦\nThere is also B⃫ with diagonal slashes instead...\n\n- [2015/03/Sep | Ken Shirriff | Upcoming proposal for Bitcoin sign](https://unicode.org/mail-arch/unicode-ml/y2015-m09/0031.html)\n - > I'm putting together a proposal for the Bitcoin sign to be added to\nUnicode, so I wanted to check here if people have any\ncomments/concerns/objections. [...]\n\n- [2015/07/Sep | Martin J. Dürst | Re: Upcoming proposal for Bitcoin sign](https://www.unicode.org/mail-arch/unicode-ml/y2015-m09/0052.html)\n - > You write "The bitcoin sign and baht symbol are two unrelated symbols\nthat have some visual similarity.", but don't really give any supporting\ninformation for that claim. [...]\n\n- [2015/07/Sep | Ken Shirriff | Re: Upcoming proposal for Bitcoin sign](https://www.unicode.org/mail-arch/unicode-ml/y2015-m09/0052.html)\n - > Thanks for your comments, Martin. Asmus Freytag gave a detailed response,\nbut I'd like to add a few things. [...]\n\n- [2015/07/Sep | Michael Everson | Re: Upcoming proposal for Bitcoin sign](https://www.unicode.org/mail-arch/unicode-ml/y2015-m09/0058.html)\n - > **Just want to say, I don’t think this one is a runner right now. I spent many months recently working with people associated with Bitcoin and they could not decide what they wanted to do.**\n\n---------------\n\n#\n https://example.com/ 1092 430530 430521.430530.431136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6540400338036 0 \N \N f 0 \N 0 201904845 0 f f \N \N \N \N 430521 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407804 2025-02-18 11:57:27.547 2025-03-29 22:39:47.61 Chainalysis Denounces Bitcoin Core Contributor as “Unqualified” \N https://bitcoinmagazine.com/technical/chainalysis-denounces-bitcoin-core-contributor-as-unqualified 777 \N 407804 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.5895310614501 0 \N \N f 0 \N 0 154602174 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 15410 2023-04-08 11:00:45.947 2025-03-29 22:39:47.61 Signing data does not mean that you authored the data I hear people imply that signing data is equivalent to proving they authored the data they're signing (ie "I own the data"). This is subtly wrong. Signing data proves:\n\n- you had the private key that signed the data in your possession\n- you had the data that you signed in your possession\n\nIt doesn't prove:\n\n- you authored the data\n- you "own" the data\n\nOwnership of data is a weird concept to begin with. At most data ownership means you possess the data and maybe in some ethical or legal sense means you have a right to possess it. Digital signatures don't enhance the meaning of data ownership. I think when people say "I own the data" when they've signed the data but it's not in their physical possession, they mostly mean "I can prove I authored this data," but a digital signature only affords "I own the means of authenticating that I once possessed this data."\n\nProving authorship of data requires more than signing it. The way we prove we authored something is by demonstrating it was in our possession before anyone else. So if we wish to prove our authorship of data, not merely prove that we once possessed it, we need to both sign the data and timestamp the signature in an unforgeable way. \N 12562 \N 15410 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4163048200168 0 \N \N f 0 \N 0 115890153 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448984 2025-03-23 03:50:52.042 2025-03-29 22:39:50.509 \N So i have this idea where SN gets a new sub called "warmane" its a bit of a master plan, but since i play on and off on that server which is a wow private server i would like to start sharing memes and experiences and so on related to the server. ive been unsuccesully trying to get them to adopt Bitcoin payment option since in my opinion its a no brainer. They are already operating in a gray area and they use BitTorrent to distribute the client. And their audience is international. You have russians, ukranians, chinese, US, EU, balkan, etc. playing on the server and its full every night. Over 12,000 people online. Anyway im rambling now. Looking forward to potential user created subs as they can create a backdoor for bitcoin adoption as i share links to stacker.news on for example warmane discord. It will not be spam, it will be legitimate linking to stuff, but im not on reddit or twitter much anymore. So thats all. User created subs can accelerate SN growth and BTC growth imo if thats interesting to anyone. https://example.com/ 17570 448981 448962.448977.448979.448981.448984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3886357087922 0 \N \N f 0 \N 0 82590775 0 f f \N \N \N \N 448962 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414663 2025-02-24 07:08:18.113 2025-03-29 22:39:50.509 \N Properly citing your sources whenever possible - even if not necessarily as formal as in academia. For example:\n\n> Citing your sources is important because it:\n - Allows you to avoid plagiarism\n - Establishes the credentials of your sources\n - Backs up your arguments with evidence\n - Allows your reader to verify the legitimacy of your conclusions\n\nSource: [Scribbr Citation Generator](https://www.scribbr.com/citation/generator/)\n\n https://example.com/ 20495 414625 414625.414663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.393403428586 0 \N \N f 0 \N 0 128452584 0 f f \N \N \N \N 414625 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407727 2025-02-18 10:36:38.134 2025-03-29 22:39:47.611 Old Wench Motor Finally got around to some much needed organizing!\n\nBefore\n![IMG_9358.JPG](https://m.stacker.news/25611)\n\nAfter\n![IMG_9372.JPG](https://m.stacker.news/25612)\n\nWhile sorting, I found some parts to an old wench motor. I dont think I have the other parts anymore, but I have a buddy that will appreciate these two pieces.\n\n![IMG_9368.JPG](https://m.stacker.news/25614)\n\nOne man's junk is another man's treasure. \N 16912 \N 407727 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 15.4776641553306 0 \N \N f 0 \N 0 52129353 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404599 2025-02-16 01:51:44.451 2025-03-29 22:39:47.611 LDK Roadmap 2023 \N https://lightningdevkit.org/blog/ldk-roadmap/ 17321 \N 404599 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.47043146675605 0 \N \N f 0 \N 0 189892486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407731 2025-02-18 10:38:15.814 2025-03-29 22:39:50.51 \N Day 113 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 18601 407561 406297.406620.407259.407283.407561.407731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.46294046661819 0 \N \N f 0 \N 0 150573948 0 f f \N \N \N \N 406297 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417056 2025-02-26 03:37:36.743 2025-03-29 22:39:50.51 \N almost 100k sats in the rewards pool 👀 https://example.com/ 6471 416837 416590.416837.417056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.99830750080521 0 \N \N f 0 \N 0 61864991 0 f f \N \N \N \N 416590 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431183 2025-03-09 16:01:53.371 2025-03-29 22:39:50.51 \N I have personally seen a similar growth in my node's routing in those time frames without relevant changes in terms of node management. I guess... people are really using the LN more! https://example.com/ 10273 407173 407173.431183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.91961289735165 0 \N \N f 0 \N 0 79631562 0 f f \N \N \N \N 407173 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 406199 2025-02-17 07:06:14.888 2025-03-29 22:39:50.51 \N @k00b is wasting his time with this project and would be better off finding a job in big tech https://example.com/ 11873 406114 404826.406114.406199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6220975366224 0 \N \N f 0 \N 0 132793862 0 f f \N \N \N \N 404826 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410790 2025-02-20 17:26:25.994 2025-03-29 22:39:50.51 \N That's a whole project on its own :) makes more sense to let people choose their preferred non-custodial wallet that have a dedicated team to develop it https://example.com/ 21291 410311 410311.410790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.958285978279 0 \N \N f 0 \N 0 77614307 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407812 2025-02-18 12:00:35.205 2025-03-29 22:39:50.51 \N that's the NIP-15 Nostr Marketplace one https://example.com/ 11144 407811 407811.407812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.4946665066088 0 \N \N f 0 \N 0 225824821 0 f f \N \N \N \N 407811 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431179 2025-03-09 16:01:40.011 2025-03-29 22:39:50.51 \N Céline: Journey To The End Of The Night\n\nCrazyyyy stuff https://example.com/ 20434 408691 408691.431179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6800197260742 0 \N \N f 0 \N 0 80211858 0 f f \N \N \N \N 408691 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401998 2025-02-13 13:49:16.849 2025-03-29 22:39:47.612 A short story of how 2,609 Bitcoins got lost FOREVAAAAR ![1_8k.jpg](https://m.stacker.news/11865)\n\nIn block *150,951* there are *23* transactions in which there are a total of *_2609.363043_* Bitcoins lost.\n\n\nAs the blockchain is a _public_ ledger we can freely inspect what coins are unspendable aka lost.\nThis is exactly what https://bitcoin-supply.com/ does.\nBurning coins on purpose is nothing new at all, but has regained popularity in very recent times as people started minting tokens on Bitcoin, but not all burned coins are burned on purpose, some are obviously done via human error.\n\nIn the grand scheme of things, it does not really matter, burned coins are burned coins and at the end of the day it makes the leftover coins more valuable.\n![2.jpg](https://m.stacker.news/11870)\n\n# How Bitcoin Script works - very high level\nIn this post we will focus on the biggest loss caused by human error, but before this lets explore how Bitcoin Transactions work.\n\nWhen you give someone an address you are actually giving them a box, which ONLY you have a key that can unlock it.\nThis is guaranteed by the fact that only the entity that has the private key corresponding to a public key can provide a signature to unlock the box.\n\nThese locks are called Bitcoin Scripts.\nThey are small programs that sit on top of each Bitcoin, when you move Bitcoins you run these programs.\nYou first run the program, and if it terminates with success, _then_ the Bitcoins moves.\nThe good part is that you can add very various conditions here.\n\nMulti-sig is an example of such conditions.\n\nBut it is up to you to make sure you set the right conditions.\nOne way to make an error would be to add someone's else address.\nAnother way is to create some conditions that can never be fulfilled, and yes that is a possibility and it is allowed.\n\n![6.jpg](https://m.stacker.news/11871)\n\nBitcoin wallets/clients try to limit human error as much as possible, and Bitcoin addresses were designed with this scope in mind.\nBitcoin addresses have a checksum at the end to avoid sending Bitcoin to the wrong address.\nThis safety check is done _at the wallet level_. There are no such checks in the script!\n\n\nThe last step in obtaining an address is to hash it with RIPEMD160, this has the effect of shortening the address.\nThe address is the public key hashed 2 times(SHA256 and then RIPEMD160) and with a checksum at the end.\n\n# In the script\n![7.jpg](https://m.stacker.news/11872)\nIt so happens that when you write these programs you can set the condition something like: If the public key that after I hash it with RIPEMD160 does this, then thing can happen.\nIn case you were wondering what's the deal with RIPEMD160(*read with Seinfeld voice*), in the picture `OP_HASH160`\n\nNow of course this Bitcoin Scripting Language it's in incredibly convoluted(quite frankly sucks, but we're stuck with it), and that's not enough, you also have to specify the amount of data you want to use..\nThat's what `OP_PUSHBYTES_20` does.\nThis says Hey, take 20 bytes (= 160 bits, the output of the RIPEMP160) when trying to check for the signature.\n\nAll of this is seen in the _"GOOD SCRIPT"_ section of the photo.\n\n## Now the BAD SCRIPT\n\nWhen we compare the two one thing stands out, there is no `OP_PUSHBYTES_20` and instead there is an `OP_0` and this is what makes the coins forever unspentable.\nThe 2nd script pretty much say: _These Bitcoins can be moved by the public key that when hashed with RIPE160 has a 1-byte-output of 0._\nBut we know that's impossible, as the output of the RIPEMD160 is always 20 bytes, so the condition can never be meet, so coins are locke/lost for evaaaaar.\n\nAnd in case is not clear, all the coins that are lost, all have the exact same bad script.\n\n\n# Who did it?\n![8.jpg](https://m.stacker.news/11877)\nThe Transactions in question were made by **Mark Karpeles** aka MagicalTux, the **CEO of MtGox**.\nYes, this was MtGox money, and at the time of the incident, it represented 1 week of income, as Mark said himself.\nAt the time the 2,609 Bitcoins were worth $10,957, today they are worth $120,200,000.\n\nHope you liked this little story :D\n\n\n# The TX IDs in 1st pic\n\nIn case you want to check the TXs yourself, here they are in a copy-paste format. \n\n| Amount | TX hash |\n|---------|---------|\n| 24.31 | 111291fcf8ab84803d42ec59cb4eaceadd661185242a1e8f4b7e49b79ecbe5f3 |\n| 100 | 81f591582b436c5b129f347fe7e681afd6811417973c4a4f83b18e92a9d130fd |\n| 37 | ddddf9f04b4c1d4e1185cacf5cf302f3d11dee5d74f71721d741fbb507062e9e |\n| 98.48055 | 305fbc2ec7f7f2bc5a21d2dfb01a5fc52ab5d064a7278e2ecbab0d2a27b8c392 |\n| 39.81 | f0137a6b31947cf7ab367ae23942a263272c41f36252fcd3460ee8b6e94a84c1 |\n| 65| 633acf266c913523ab5ed9fcc4632bae18d2a7efc1744fd43dd669e5f2869ce5 |\n| 100 | 5bd88ab32b50e4a691dcfd1fff9396f512e003d7275bb5c1b816ab071beca5ba |\n| 21 | 64c01fedd5cf6d306ca18d85e842f068e19488126c411741e089be8f4052df09 |\n| 35.784 | 3be0ac3dc1c3b7fa7fbe34f4678037ed733a14e801abe6d3da42bc643a651401 |\n| 100 | 9edab6e7fadf1d6006315ff9394c08a7bf42e19cf61502200a1f73994f8da94b |\n| 100 | 835d4dcc52e160c23173658de0b747082f1937d1184e8e1838e9394bc62c0392 |\n| 143.62 | aebe39a99114f1b46fc5a67289545e54cbfec92d08fc8ffc92dc9df4a15ea05a |\n| 367.7584932 | aa62bdd690de061a6fbbd88420f7a7aa574ba86da4fe82edc27e2263f8743988| \n| 100 | 6a86e6a5e8d5f9e9492114dafe5056c5618222f5042408ad867d3c1888855a31 |\n| 35.78 | 7ad47a19b201ce052f98161de1b1457bacaca2e698f542e196d4c7f8f45899ab |\n| 100 | 0ca7f7299dc8d87c26c82badf9a303049098af050698c694fbec35c4b08fc3df |\n| 100 | 3ab5f53978850413a273920bfc86f4278d9c418272accddade736990d60bdd53 |\n| 497 | 03acfae47d1e0b7674f1193237099d1553d3d8a93ecc85c18c4bec37544fe386 |\n| 100 | 15ad0894ab42a46eb04108fb8bd66786566a74356d2103f077710733e0516c3a |\n| 200 | 2d00ef4895f20904d7d4c0bada17a8e9d47d6c049cd2e5002f8914bfa7f1d27b |\n| 98 | 6d39eeb2ae7f9d42b0569cf1009de4c9f031450873bf2ec84ce795837482e7a6 |\n| 100 | 07d33c8c74e945c50e45d3eaf4add7553534154503a478cf6d48e1c617b3f9f3 |\n| 45.82 | 6d5088c138e2fbf4ea7a8c2cb1b57a76c4b0a5fab5f4c188696aad807a5ba6d8 |\n\n\n\n\n\n\n\n\n\n\n\n \N 9833 \N 401998 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4287450280192 0 \N \N f 0 \N 0 19961941 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410404 2025-02-20 13:14:21.143 2025-03-29 22:39:50.51 \N How much are you zapping Matt? If not very often, how do expect SN to look the way you want it? https://example.com/ 15690 410393 410018.410065.410393.410404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.754913118984355 0 \N \N f 0 \N 0 173944162 0 f f \N \N \N \N 410018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431197 2025-03-09 16:02:37.121 2025-03-29 22:39:50.511 \N Yeah, but how many people are going to log on to their dial-up modem to surf for just 1-minute. https://example.com/ 4538 404172 404172.431197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7947642234485 0 \N \N f 0 \N 0 32682241 0 f f \N \N \N \N 404172 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428171 2025-03-06 22:56:05.012 2025-03-29 22:39:50.511 \N The so-called west is actually a minority of the population and I would even dare say real workforce.\n\nYes, it's important, and the dollar makes it worse, but it's not everything. MSM makes it so that it seems everyone cares about Europe or US. People in Asia care very little about the troubles US brings to itself, as well as further down South in America (the continent!) and Africa.\n\nI am neither taxed nor need to report my bitcoin spending or hodling in any of the three jurisdictions I live. So I do exactly that, spend it. https://example.com/ 17522 427775 427775.428171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1957521138759 0 \N \N f 0 \N 0 182751875 0 f f \N \N \N \N 427775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407765 2025-02-18 11:08:03.055 2025-03-29 22:39:50.511 \N Hell yeah post that shit, just make sure there's proof of work.\n\nStackeres don't want to read a wikipedia article on Bavaria, they want @Lederhosen's first hand take on it https://example.com/ 14080 407748 407748.407765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7208917582929 0 \N \N f 0 \N 0 124281225 0 f f \N \N \N \N 407748 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428074 2025-03-06 20:33:46.694 2025-03-29 22:39:50.512 \N Been following Balaji and the broader parallel societies/network states movement for quite some time and gave a talk about building a Bitcoin-centric network state at the Adopting bitcoin conference in El Salvador last week. Would love to connect with fellow bitcoiners who are interested in the concept. https://example.com/ 886 427775 427775.428074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4826363970226 0 \N \N f 0 \N 0 248093948 0 f f \N \N \N \N 427775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431198 2025-03-09 16:02:39.882 2025-03-29 22:39:50.512 \N @k00b @ek has there been any consideration to adding MFA to stacker accounts? Not just alternate authentication methods, but step-up authentication. It would seem pretty important for stackers that have high balances (or high balances on linked wallets), and also for territory owners. Ideally TOTP that can be configured with an open source authenticator app. https://example.com/ 5359 403898 403898.431198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9789655163036 0 \N \N f 0 \N 0 22089604 0 f f \N \N \N \N 403898 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410275 2025-02-20 12:13:01.459 2025-03-29 22:39:50.513 \N 0? https://example.com/ 18393 410269 410269.410275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.42117041162123 0 \N \N f 0 \N 0 114272782 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 414264 2025-02-23 19:15:55.541 2025-03-29 22:39:50.52 \N Notice how in that example pre-opening a lightning channel to their node would be an improvement on the pure on-chain experience.\n\nUnfortunately the UI/UX challenges of making that easy are formidable. https://example.com/ 13878 414226 414226.414264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4947887852384 0 \N \N f 0 \N 0 141638509 0 f f \N \N \N \N 414226 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438058 2025-03-15 07:47:39.272 2025-03-29 22:39:50.52 \N Not gonna lie, I have a macbook that is 10+ years old. Can't update the OS anymore and do have some hiccups now and then, but still works for web surfing, email, videos, etc. https://example.com/ 10342 438057 438057.438058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5313192320267 0 \N \N f 0 \N 0 240061490 0 f f \N \N \N \N 438057 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404011 2025-02-15 13:08:55.61 2025-03-29 22:39:50.52 \N We fund the earnings rewards through these sources:\n- The fee we take from promotion budgets.\n- Our transaction fees.\n- Our podcaster wallet fees.\n\nBots / exploits are definitely something we're spending a lot of time on - but the more you contribute to the platform by creating clips, liking clips and comments, and supporting podcasts - the more you earn. Supporting podcasts specifically is something that's hard to fake because you have to send money to do it. https://example.com/ 2098 404000 403996.404000.404011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36801827671368 0 \N \N f 0 \N 0 16962202 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423354 2025-03-03 09:25:58.903 2025-03-29 22:39:47.612 Meme Monday- Best Meme gets 10k sats It's Meme Monday!\n\nSend your best memes of any theme for a chance to win **10k sats**. One meme per comment please. \n\nBest meme as voted by "top" filter by 9am ct tomorrow wins the sats.\n\n![](https://m.stacker.news/50802)\n\nGood Luck! \N 7979 \N 423354 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.83904174076345 0 \N \N f 0 \N 0 5856516 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438043 2025-03-15 07:21:25.828 2025-03-29 22:39:50.52 \N Day 97 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 21442 437611 437611.438043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.653069187033211 0 \N \N f 0 \N 0 18297562 0 f f \N \N \N \N 437611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449031 2025-03-23 05:29:54.183 2025-03-29 22:39:50.52 \N ![muun](https://i.imgflip.com/71mh2q.jpg) https://example.com/ 15408 447764 447764.449031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2946343161548 0 \N \N f 0 \N 0 204120228 0 f f \N \N \N \N 447764 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404630 2025-02-16 03:15:08.194 2025-03-29 22:39:50.52 \N Show up for stuff.\n\nPeople miss out on so many opportunities that are just sitting there. https://example.com/ 21455 404590 404570.404590.404630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.920546444681 0 \N \N f 0 \N 0 56390533 0 f f \N \N \N \N 404570 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436846 2025-03-14 00:06:29.625 2025-03-29 22:39:50.52 \N You’ll get struck by lightning if holding metal cutlery during a thunderstorm…while inside https://example.com/ 9863 436832 436669.436782.436832.436846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.96128617432024 0 \N \N f 0 \N 0 210211999 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410729 2025-02-20 16:39:15.074 2025-03-29 22:39:47.613 HRF launched the CBDC tracker Human Rights Foundation has launched a tracker of central bank digital currencies. The site provides basic information on CBDCs, a glossary, and most importantly, an interactive globe that provides detailed information on countries' progress in launching the instrument of total control. https://cbdctracker.hrf.org/ 4043 \N 410729 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.88609225614383 0 \N \N f 0 \N 0 202204165 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431226 2025-03-09 16:05:01.93 2025-03-29 22:39:50.51 \N Monday at Paralelni Polis in Prague. https://example.com/ 8269 397434 397434.431226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2938311130819 0 \N \N f 0 \N 0 193213622 0 f f \N \N \N \N 397434 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431222 2025-03-09 16:04:00.007 2025-03-29 22:39:50.51 \N First time using stacker news on my phone. Going to try to make this a habit now. https://example.com/ 876 397861 397861.431222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.68757928021566 0 \N \N f 0 \N 0 182981999 0 f f \N \N \N \N 397861 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431230 2025-03-09 16:05:12.115 2025-03-29 22:39:50.511 \N If I go to https://stacker.news/search, I get 500 and a cute image\n\nAlso, is it expected that the search bar does not immediately show up the extended search features?\n\n[![2022-10-26-003019-1920x1080-scrot.png](https://i.postimg.cc/9XvtLMR3/2022-10-26-003019-1920x1080-scrot.png)](https://postimg.cc/4nQ9dXQw)\n\nIt only shows them when I already searched for something, like when I clicked on a example search you provided:\n\n[![2022-10-26-003049-1920x1080-scrot.png](https://i.postimg.cc/yNQ0cY4b/2022-10-26-003049-1920x1080-scrot.png)](https://postimg.cc/4KcKTG36) https://example.com/ 19924 397082 397082.431230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.232381161938413 0 \N \N f 0 \N 0 86649192 0 f f \N \N \N \N 397082 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449032 2025-03-23 05:30:02.784 2025-03-29 22:39:50.511 \N Liquid is not centralized, it is federated, there is a subtle but important difference.\n\nCould also use statechains for this purpose (e.g. [Mercury](https://mercurywallet.com/)). The main benefit of Mercury over Liquid is that Mercury has a unilateral exit mechanism, making it a "true" layer 2 protocol (imo).\n\nOverall I agree with the author's proposed approach and have been suggesting the [same](https://lightco.in/2020/11/08/sidechains/) for a while. https://example.com/ 3392 449028 449007.449028.449032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7021633507392 0 \N \N f 0 \N 0 241063784 0 f f \N \N \N \N 449007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443982 2025-03-19 15:54:22.783 2025-03-29 22:39:50.511 \N This post is a psychic attack. Nothing said reflects reality. Usually a good lie has a mix of truth and lies, but this post came from a parallel dimension where reality is mirrored to our own https://example.com/ 19537 443958 443295.443940.443958.443982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9881120569222 0 \N \N f 0 \N 0 12687086 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431214 2025-03-09 16:03:39.847 2025-03-29 22:39:50.52 \N ![](https://i.imgflip.com/7kxhw0.jpg) https://example.com/ 13174 400296 400296.431214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7476886135389 0 \N \N f 0 \N 0 110161120 0 f f \N \N \N \N 400296 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431221 2025-03-09 16:03:57.411 2025-03-29 22:39:50.52 \N Federated solutions will become popular for this reason in addition to privacy, improved security (for some), and other features. Examples include cashu https://cashu.space/ and Fedimint https://fedimint.org/. https://example.com/ 11378 398470 398470.431221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3036806350764 0 \N \N f 0 \N 0 57531743 0 f f \N \N \N \N 398470 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415299 2025-02-24 17:15:42.008 2025-03-29 22:39:50.52 \N what have you done @k00b https://example.com/ 10291 414711 414711.415299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9986986399459 0 \N \N f 0 \N 0 2293009 0 f f \N \N \N \N 414711 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431219 2025-03-09 16:03:51.789 2025-03-29 22:39:50.52 \N I don't know which country has the most energy but that's likely the answer to that question. The United States has a good shot depending on whether the politicians try to mess up our industry or not. https://example.com/ 11038 399308 399308.431219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2973463841247 0 \N \N f 0 \N 0 148087141 0 f f \N \N \N \N 399308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431216 2025-03-09 16:03:44.154 2025-03-29 22:39:50.52 \N I'm glad it's over... I just found this place. https://example.com/ 21332 399731 399731.431216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.389997754184 0 \N \N f 0 \N 0 213303838 0 f f \N \N \N \N 399731 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404552 2025-02-16 00:48:24.368 2025-03-29 22:39:47.61 I was lost in setting up the Lightning Address so I put together a tutorial As the title says, I was struggling with setting up the Lightning Address on my own domain and server. I learned a few things along the way so I figured to put together a short tutorial that describes the whole flow.\n\nHope that helps someone.\n\nhttps://jouzina.com/articles/setting-up-lightning-address-on-your-own-domain-and-server/\n\nPS: I'd like to be more active in the community so let me know if you need help with anything! \N 997 \N 404552 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.9115072296135 0 \N \N f 0 \N 0 11286003 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 394884 2025-02-07 17:44:28.614 2025-03-29 22:39:47.611 How will posts across multiple territories work? The new territories feature is amazing! Congrats @k00b @kr @ekzyis for the release.\n\nI'd love to understand more about the vision for how cross-posting across multiple territories will work in the future:\n\n- will I be able to tag a post across multiple territories?\n- if a post was created in one territory but then becomes popular in another territory - how will that work? \N 13076 \N 394884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2801763422657 0 \N \N f 225372594 \N 1 208721726 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 228331 2024-09-05 16:33:49.25 2025-03-29 22:39:47.613 What would be the ideal profession for the next 50 to 100 years? If someone were to ask you what would be the ideal profession for the next 50 to 100 years, what advice would you give him or her?\n\nThe massive presence of artificial intelligence (or madness haha) among us and its rapid progress seems to render human contribution useless for certain jobs.\n\nWill this trend continue? Will artificial intelligence (madness) manage to replace a large part of the human workforce?\n\nWhich professions would be irreplaceable by artificial intelligence (madness)? \N 638 \N 228331 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.8007726811785 0 \N \N f 0 \N 0 102283391 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449084 2025-03-23 07:12:30.509 2025-03-29 22:39:50.512 \N Not sure why it still give me error:\n\n```\ncould not connect to CLN: invalid json response body at \nhttp://xxx.onion:2100/v1/invoice reason: Unexpected token < in JSON at position 0\nfailed to attach wallet\n```\n\n\nI also tried to use the one in position `0` and the input validation obviously give back `rune must be restricted to method=invoice only`\n\nanything else I could try? https://example.com/ 11996 449083 449067.449072.449083.449084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.118675908744 0 \N \N f 0 \N 0 218693475 0 f f \N \N \N \N 449067 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424396 2025-03-04 03:57:47.499 2025-03-29 22:39:50.513 \N as a progressive I see bitcoin as a fast track to near-free energy which could eliminate a pressing need for capitalism in the long run\n\nI don't see any other plausible way there proposed by anyone on the left, could be ignorant, though https://example.com/ 17535 423954 423954.424396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9577561018265 0 \N \N f 0 \N 0 162296644 0 f f \N \N \N \N 423954 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431252 2025-03-09 16:08:12.146 2025-03-29 22:39:50.513 \N The ones that exist only really work if you're working out of the same xls/csv file for both buying btc and spending btc. If you are buying and selling in different apps, it gets very convoluted https://example.com/ 1620 392661 392661.431252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.0598131645659 0 \N \N f 0 \N 0 179174474 0 f f \N \N \N \N 392661 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431255 2025-03-09 16:08:19.582 2025-03-29 22:39:50.513 \N rest\n\ncome awake rest full\nlay your head on a pillow\nattend to the buzz zzz\n\nlet it be form less\nthe fuzzing spirit of thought\nonly fill the outline in\nwith thank full ness\n\nempty shell mind\nbody weight heavy\nfloating limbs in blanket waves https://example.com/ 4035 392405 392405.431255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5844290588896 0 \N \N f 0 \N 0 135032752 0 f f \N \N \N \N 392405 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438049 2025-03-15 07:25:31.101 2025-03-29 22:39:50.514 \N 1. Obviously it depends on the rules and regulations, but in general, yes, I am :)\n\n2. I don't think I would say "Bitcoin or nothing" -- I don't even call myself a "bitcoin maximalist". I think bitcoin is beautiful and the only cryptocurrency worth working on today is bitcoin. But if bitcoin were to change (for the worse), to become something that no longer can do what it does now, I would walk away from it. My loyalty is to a methodology, an end goal, an orientation towards problem solving and my fellow humans -- not a tribe, a project, or a self-identity. https://example.com/ 6268 437775 437775.438049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4579324606037 0 \N \N f 0 \N 0 196638512 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424407 2025-03-04 04:29:41.639 2025-03-29 22:39:50.514 \N there is stemstr in test version and zapstr.live as media player https://example.com/ 3377 424235 424235.424407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1921838419965 0 \N \N f 0 \N 0 127847716 0 f f \N \N \N \N 424235 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431256 2025-03-09 16:08:21.614 2025-03-29 22:39:50.514 \N > Also called into question the "immaculate conception" nature of Bitcoin, which I found to be a fair criticism\n\nWhat was his criticism? Also what do you mean when you say the "immaculate conception" nature of Bitcoin? https://example.com/ 16126 392338 392338.431256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0356754764956 0 \N \N f 0 \N 0 216905169 0 f f \N \N \N \N 392338 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424437 2025-03-04 05:24:03.778 2025-03-29 22:39:47.611 Sharing the Code Behind Bitkey \N https://bitkey.build/sharing-the-code-behind-bitkey/ 959 \N 424437 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.08388457167322 0 \N \N f 0 \N 0 132157140 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416310 2025-02-25 14:36:33.213 2025-03-29 22:39:47.611 Life is about Awareness # Life is about Awareness\n\n![1024px-PIA23645-Earth-PaleBlueDot-6Bkm-Voyager1-orig19900214-upd20200212.jpg](https://m.stacker.news/14967)\n\n— Wikipedia, [_Pale Blue Dot Revisited_](https://en.wikipedia.org/wiki/Pale_Blue_Dot), 2020\n\n> Some say we're never meant to grow up\nI'm sure they never knew enough\nSome say we're better off without\nKnowing what life is all about\n\n— Sum 41, [_Some Say_](https://www.youtube.com/watch?v=D9cHP4KrdWI)\n\n## Is Telepathy Love?\n\nHave you ever looked someone so deep in the eyes, you think you can read their thoughts and feel their emotions? And you are convinced it's the same for them? But you can't ask them in the moment since you know that this would destroy the moment; a moment so delicate, you're afraid you might miss it forever when it has passed? A moment that can pass in the blink of an eye? But also, you don't want to ask them since—as mentioned—you feel like you don't have to since they can read your thoughts. And when both of you smile, it's like smiling at an ephemeral inside joke that no one else would get?\n\nSo you just sit there, looking each other in the eyes, silently enjoying this intimate moment, blissfully (un)aware that this moment might be gone as fast as it came; but this is part of the magic?\n\nIsn't this basically what [telepathy](https://www.britannica.com/topic/telepathy) is about? Yes, it doesn't scale, you need to be emotionally close and you probably need a lot of [face reading skills](https://www.wikihow.com/Read-Faces) but still: it _feels_ like telepathy would feel, no? Like hearing the voice of the other person in your head? And who said that telepathy would be easy? And shouldn't require such things? I don't know, maybe someone did. I am just making things up as I write.\n\nI am not sure if I ever had a moment in such intensity that made me contemplate telepathy[^1], but I would say I was made aware that something like this should be possible. I might have gotten a glimpse of it. And knowing it might indeed be possible (and isn't just wishful thinking) scares me.\n\n> _What if I never get the chance to experience this? Can I say I experienced life in full if I didn't?_\n> _Isn't this what life is about?_\n\nYou might think I describe love but I don't think I am. Maybe I don't want to describe love since I don't want life to be about love. Wouldn't that be too simple? What is love anyway?\n\nAs far as I can tell, love is just a chemical reaction in our brains that is nature's path of least resistance to make us reproduce and care for our children. It's part of our programming as a species that evolved to find strength in numbers and each individual is helpless alone in comparison. And when the goal was achieved, it might be gone as fast as it came.\n\nBut it might also get replaced by something else. Which we probably also call "love" but I think it's something else. We don't have words for it. We only have movies, stories, images and shared moments for it. I probably have no idea what I am talking about. But who expected I would have?\n\n## A Perfect Life Doesn't Exist\n\n> In a perfect world... her face would not exist\nIn a perfect world... a broken heart is fixed\nIn a perfect world... I'd see no therapist\nIn a perfect world... this wouldn't make me sick\n\n— Billy Talent, [_Perfect World_](https://www.youtube.com/watch?v=muFDKWH1aaY)\n\n> In a perfect world\nThis could never happen\nIn a perfect world\nYou’d still be here\n\n— Simple Plan, [_Perfect World_](https://www.youtube.com/watch?v=JOUDTGwI9cY)\n\nI know German has a word for what comes before love: "verliebt sein"[^2]. It's when we see everything through "rose-colored glasses". Not sure if that translates well into English. The best translation I found was this: "to have stars in one's eyes". It's the phase when all you can see is a perfect person that you want to be with forever and you're convinced that's all you ever want and need. Not realizing that there is no such thing as perfect and being perfect is inherently not what we want, need and definitely not what we deserve. We want to have flaws, we want to have challenges. If we're honest and not deluded, we don't want things to be perfect since that would be boring as hell. If everything's perfect, what's left to do or ~love~ live for? If everything's perfect, would we even have "perfect" as a word? Would there be a concept of "perfect"? Would it be better to not have one?\n\nSo "verliebt sein" comes before "Liebe" but is that it? Is there nothing that comes after? Is this all there is? A chemical reaction? No magic like telepathy?\n\nAs mentioned, I think there is but we just also call it "love". Just like we call basically any relationship with strong emotions we can't explain "love" even though we know they aren't the same thing. The love between parents and their children is a different kind of love than what a couple feels that only has been together for a few months and hasn't understood what it means to accept each other's flaws yet. It's something different than a couple that never had a fight and never contemplated breaking up. It's a different kind of love that platonic friends can feel for each other.\n\nBut we still call all of these things "love"? Makes sense? Is this part of life? Or even what life is about? To have things that don't make sense and everyone can make up their own minds about these things?\n\nBut maybe it's just about being aware of these things. To be aware that we could make up our own minds but we don't have to. To be aware that we could do the same thing we did yesterday but we don't have to; no matter if we hate or love it. It's funny if that's it. It feels simple to think about but being aware all the time is not.\n\nIt's empowering though: If that's it, all I have to do while I walk all the way to the store to grab my iced coffee is to be aware that I don't _really_ want to drink it because I am aware I just want to drink it because that's what I did yesterday (or a few days ago); we're creatures of habit; iced coffee became unintentionally a part of my life and I convinced myself that I am going to be _so_ happy when I drink it.\n\n> _Life is about being aware that we do things we don't really want to._\n\nAll I have to do is to be aware that what I am actually doing is living life on autopilot because it's easier. I try to convince myself that it's simply my vice, there are a lot of worse vices I could have and there isn't much else to it, right? Not much to think about, right?\n\n> _Just grab your damn iced coffee and go on with your life! Don't think about it too much, you're just making it harder than it has to be. [Do it, I know you want to do it](https://www.youtube.com/shorts/vkY-sT91lzw)._\n\nWhile I think picking the smaller version is some kind of compromise between the part of myself that doesn't want to take control of my life and the part that wants to take back control, I am still ignoring that I walked all the way here without even being sure if I want to buy a damn iced coffee. And having walked all the way to the store to buy nothing is worse than just buying the small version, right? No?\n\nNo! Picking the smaller version is no different than picking the larger version since I don't want either if I am being honest with myself. Picking the smaller version is just another way to accept that unawareness is easier. To accept that there is something I should be aware of but I don't want to be. Live is already hard, let's not make it harder, right?\n\nI am a person that drinks iced coffee because the sugar in it tastes good; it's something I can hold as if holding a cup of iced coffee gives me security in life and I like to look around and observe people and pretend that I have it all figured out and they haven't while I drink it; blissfully (un)aware of the contradiction in my hands.\n\nBut at least I am aware of it, right?\n\n[^1]: Writing this did.\n\n[^2]: Apparently, in English, "verliebt sein" is just "to be in love". Take this English speakers. Your words about love suck. \N 5761 \N 416310 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.5283050212553 0 \N \N f 71215913 \N 2 215185577 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 438047 2025-03-15 07:24:56.016 2025-03-29 22:39:50.514 \N My wife and I got crazy lucky with real estate. \n\nWe bought our first house in 2016 for super cheap. The down payment was less than the cheapest new car on the market. Sold in 2021 after the price more than doubled. https://example.com/ 20687 438038 437955.438038.438047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0808479432086 0 \N \N f 0 \N 0 249095522 0 f f \N \N \N \N 437955 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410776 2025-02-20 17:14:16.105 2025-03-29 22:39:50.514 \N Build for the future. Your present will thank you. https://example.com/ 17722 410697 410697.410776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1714218429679 0 \N \N f 0 \N 0 89258952 0 f f \N \N \N \N 410697 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413904 2025-02-23 14:23:23.244 2025-03-29 22:39:50.514 \N This is extremely hard. I think Rusty Russell is the wisest person I know, based on how i’ve seen him manage open source communities and the lightning spec process. absolutely the goat at interfaces and apis too. \n\nthere’s a million ways to be brilliant, but i really appreciate how emotionally smart rusty is. i dont even know if he realizes how good he is at it. maybe its ingrained after working at IBM forever idk haha https://example.com/ 18412 413892 413892.413904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.09508047484716 0 \N \N f 0 \N 0 72115268 0 f f \N \N \N \N 413892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410280 2025-02-20 12:14:00.736 2025-03-29 22:39:50.514 \N ![](https://m.stacker.news/53840) https://example.com/ 11897 410279 410269.410279.410280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.052596067497 0 \N \N f 0 \N 0 194581522 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410793 2025-02-20 17:29:16.372 2025-03-29 22:39:50.515 \N Working on the Spark Wallet app (sparkwallet.io) ⚡️\n\nSpark Wallet is the Bitcoin and Lightning app that lets you spend your Bitcoin. \n\nWe made Bitcoin so simple even your grandma can use it!\n\nCompatible with  and Google Wallet https://example.com/ 13763 410721 410615.410721.410793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.55824236819762 0 \N \N f 0 \N 0 162512302 0 f f \N \N \N \N 410615 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448996 2025-03-23 04:30:52.13 2025-03-29 22:39:50.515 \N I enjoyed the conversation, but you pretty clearly don't know the people I'm talking about. They aren't crypto people. They're more likely to be gold bug types. Scott Horton runs the institute and is primarily known for his anti-war work and they mostly focus on issues that don't directly relate to bitcoin. Of course there are lame libertarians, as you were hung up on, but that's not particularly relevant to anything.\n\n@k00b described the situation pretty well, but I'm not sure you were really listening to him. Part of the idea is that I think these guys would all be receptive to bitcoin, but it just isn't their top priority, so they haven't invested in getting involved in our space. The flip side of this is that plebs are very receptive to these ideas, but our the leading libertarian voices aren't getting to them directly. There's a massive win-win here and I'm hoping to help it be realized.\n\nGreat episode, as always. I hope you'll write about your Fountain only experiment. https://example.com/ 16950 233538 233538.448996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44279167247476 0 \N \N f 0 \N 0 164157105 0 f f \N \N \N \N 233538 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404454 2025-02-15 22:09:21.618 2025-03-29 22:39:50.516 \N During a chat with other Territory founders the other night. A toggleable setting for push notification for when a user posts in a territory you own would be really helpful.\n\nAlso the ability to pin messages in a territory would be helpful aswell.\n\nBut these are just back of a packet ideas. https://example.com/ 14990 403947 403947.404454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3290770753203 0 \N \N f 0 \N 0 162410443 0 f f \N \N \N \N 403947 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415368 2025-02-24 18:46:16.932 2025-03-29 22:39:47.612 So what are the problems with Monero? With the announcement of privacy focused company Proton releasing a bitcoin only wallet, privacy advocates and influences are complaining about the choice of bitcoin and no plans for Monero.\n\nI'm curious what stackers think are the negatives of monero. I'm not looking for the maxi take here. No straw men. Lets be fair. Monero as a project has made different choices from bitcoin. There are decisions that were made and different tradeoffs that do make monero more private than bitcoin. That's not really the question. The question is, why are these decisions problems? And what are the problems with monero?\n\n* The best answers get big zaps.\n* Links to well written comparisons to tradeoffs with bitcoin will also get big zaps from me. \N 21238 \N 415368 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.8384997266046 0 \N \N f 0 \N 0 206371454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455194 2025-03-26 19:41:37.803 2025-03-29 22:39:50.51 \N Day 86 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 1471 454615 454615.455194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7924450073048 0 \N \N f 0 \N 0 97482932 0 f f \N \N \N \N 454615 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424321 2025-03-04 00:45:17.146 2025-03-29 22:39:50.51 \N I’m still getting the ins and outs after about a year of running a node, I think a follow of @alexbosworth on Twitter will help a lot https://example.com/ 11648 424316 424316.424321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6933797676436 0 \N \N f 0 \N 0 59379033 0 f f \N \N \N \N 424316 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423906 2025-03-03 17:40:39.339 2025-03-29 22:39:50.51 \N The world is about to get so, SO much better\n\nAnd that's exactly why they'll try to make you think the world's ending\n\nBecause the new world doesn't need them https://example.com/ 20687 423225 423225.423906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5713660513506 0 \N \N f 0 \N 0 27004701 0 f f \N \N \N \N 423225 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431372 2025-03-09 16:24:13.138 2025-03-29 22:39:50.511 \N There is no prohibition against using AI. I would say that stackers here value original thought, so there is a bias against it. I personally don't like it, and would not use it. I don't want to be completely close minded about it, though. There are a few stackers who obviously use AI in discussion as a sort of factual wikipedia layout of the issues. It's use is obvious, and the stacker doesn't try to pass it off as original. Some people may find that valuable. https://example.com/ 2718 376857 376857.431372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5354516822377 0 \N \N f 0 \N 0 48507156 0 f f \N \N \N \N 376857 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431366 2025-03-09 16:23:54.248 2025-03-29 22:39:50.511 \N In the SN FAQ, you can find this:\n\n> The ranking of an item is affected by:\nthe amount a stacker zaps a post or comment\nthe trust of the stacker making the zap\nthe time elapsed since the creation of the item\nZapping an item with more sats amplifies your trust, giving you more influence on an item's ranking. However, the relationship between sats contributed and a stacker's influence on item ranking is not linear, it's logarithmic.\nThe effect a stacker's zap has on an item's ranking is trust*log10(total zap amount) where 10 sats = 1 vote, 100 sats = 2, 1000 sats = 3, and so on ... all values in between are valid as well.\nTo make this feature sybil resistant, SN now takes 10% of zaps and re-distributes them to the SN community as part of the daily rewards.\n\nSome of what you are suggesting may already exist. https://example.com/ 20606 375680 375680.431366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4762085680194 0 \N \N f 0 \N 0 33843328 0 f f \N \N \N \N 375680 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423912 2025-03-03 17:49:14.318 2025-03-29 22:39:50.516 \N > most hops [are] succeeding successfully\n\nMy favorite sentence https://example.com/ 15119 423874 423874.423912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.70036213403299 0 \N \N f 0 \N 0 181223428 0 f f \N \N \N \N 423874 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449131 2025-03-23 08:00:10.051 2025-03-29 22:39:50.511 \N No worries. Thanks for following the snail. It motivates me to keep going.\n\n__@_'-' https://example.com/ 21401 449113 449016.449022.449091.449108.449113.449131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.4774003152769 0 \N \N f 0 \N 0 22105059 0 f f \N \N \N \N 449016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423942 2025-03-03 18:19:11.124 2025-03-29 22:39:50.511 \N the loudest world ever shouted was "quiet" at a level of 121.7 dBA https://example.com/ 21532 423378 423378.423942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1132887552486 0 \N \N f 0 \N 0 70583980 0 f f \N \N \N \N 423378 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458389 2025-03-29 08:47:39.477 2025-03-29 22:39:50.511 \N I view LSPs as infrastructure for the Lightning Network. I'm not convinced LSPs themselves will attract more people to use LN, but when people are ready, LSPs will make scaling and onboarding way smoother. https://example.com/ 21242 458388 458388.458389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.82419528060875 0 \N \N f 0 \N 0 203287003 0 f f \N \N \N \N 458388 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410148 2025-02-20 09:44:06.045 2025-03-29 22:39:50.511 \N Very cool. All you have to do now it put it on an actual Gameboy.\n\nWait... wait wait wait...\n\n**What if you made a Gameboy into a hardware wallet? \\:o** https://example.com/ 13055 410143 410012.410097.410143.410148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9859420348698 0 \N \N f 0 \N 0 83106476 0 f f \N \N \N \N 410012 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427147 2025-03-06 06:28:17.122 2025-03-29 22:39:50.511 \N Focus on providing value first and the sats will come https://example.com/ 20829 426664 425873.426664.427147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63308189970888 0 \N \N f 0 \N 0 6261183 0 f f \N \N \N \N 425873 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410717 2025-02-20 16:32:18.968 2025-03-29 22:39:50.511 \N I've talked a lot about Mobile Nodes and ECash being terrible ideas- and regret that it was perceived as friendly fire and taken personally... All respect due nevertheless for the effort as builders with the prescience to pivot\n\nMore bullish than ever on Bitcoin means of exchange https://example.com/ 18178 410464 410269.410445.410452.410464.410717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9553644340609 0 \N \N f 0 \N 0 88030844 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404449 2025-02-15 22:03:28.269 2025-03-29 22:39:50.511 \N We need a bot to watch phrases.\n\n@notifyme when darthcoin says "you will come back to my words" https://example.com/ 10493 404095 404095.404449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31146832387459 0 \N \N f 0 \N 0 147389244 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401801 2025-02-13 12:01:49.492 2025-03-29 22:39:50.511 \N Have you considered making or selling Lightning hardware devices? Remote signing devices, battery powered cellular nodes, etc? https://example.com/ 716 401758 400967.401758.401801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6157324225187 0 \N \N f 0 \N 0 86588238 0 f f \N \N \N \N 400967 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 232130 2024-09-09 14:33:41.826 2025-03-29 22:39:47.61 Is Bitcoin your one and only? Second day of Chinese New Year. I’m at my wife’s colleague’s house, supporting her by keeping an eye on our children while she yaks merrily with her colleagues. Sounds like a recipe for boredom.\n\nBut it got me thinking about how much of Chinese culture is influenced by money. Look at what we give children as a good luck token, wishing for their health and prosperity:\n\n![IMG_0815.jpeg](https://m.stacker.news/15693)\n\nChildren are taught from young to give their elders two mandarin oranges and receive red packets in return. Guess that our love of money is intertwined with our DNA. 🧬 LOL.\n\nI have spent enough time on Stacker News that the thing that Stackers value most may not be the appreciation of BTC. It is the liberation afforded by receiving and spending sats in an environment you create yourself, removed from the chains of fiat.\n\nSo, my culturally money-obsessed mentality prompts me to ask: are there better interest-yielding opportunities that you willingly give up so that you can go all in on BTC? Say, S & P 500? That you can’t be bothered to diversify because BTC is the only asset that matters to you?\n\n![86483644-7b7c-4165-87cc-bc89e8514d8c.jpeg](https://m.stacker.news/15694) \N 8469 \N 232130 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.242294819618 0 \N \N f 0 \N 0 52123276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 407783 2025-02-18 11:25:08.141 2025-03-29 22:39:47.613 Is Stacker.news Social Media? What about Nostr? \nI regularly see people make distinction between SN and social media. The difference isn't obvious on the surface but if you are a thoughtful person after you use SN you begin to see the difference .\n\n## Stacker News\n\nThe incentive structure added by bitcoin and the relatively small community make it very different from places like Reddit or Twitter. That said, personally I do consider Stacker.news a social media site.\n\nWikipedia isn't the authority ( there really isn't an authority over language, its anarchy ) but I think the definition is pretty good.\n\n> Social media are interactive technologies that facilitate the creation, sharing and aggregation of content (such as ideas, interests, and other forms of expression) amongst virtual communities and networks.\n\nIn my experience Stacker.news can be addictive if you find the discussions entertaining and valuable. Then when you add the dopamine hit from getting zapped it can really suck a person in. Is this bad? I guess it can be if you are avoiding more important activities. Its probably very subjective and personal.\n\nWhen I contrast Stacker.news with Reddit or Hacker News the difference is profound. The level of intelligence for the most part is much higher. Social media sites like Twitter and Facebook use algorithms and they seem to feed into conflict. Its been said in documentaries that these platforms hire psychologists to help them manipulate their users into spending more time on the site. Thing is... Twitter wasn't always like that. \n\nI was fairly early to Twitter. In my area there were only a handful of people on Twitter and I ended up meeting all of them. Made friends and connections that benefited my career. I learned many things on Twitter that were helpful. It wasn't really about fighting with dumb people or talking about the news. Back then it was mostly software devs and people working in tech. There was a commonality between the people using the site. As the audience grew and celebs started using it began to change. Once it became something everyone had to be on it was pretty shot for me.\n\nOnce it began to change I started saying Twitter is where you go to get sad or mad. \n\nStacker.news is small. That's good for those of us that use it. If it grows I believe it will change drastically. Many of us that use it today and find value here will lose interest. Why? Because we aren't normal. I don't mean that as a slight. Its just true. Most people don't really care to share their thoughts on the topics we discuss. Most don't even want to write at all. They don't want to argue / debate. They don't care about bitcoin. They also don't care about fiat. \n\nSo is Stacker.news a social media site? I say it is. But @k00b has tried to create an incentive structure using bitcoin that avoids many of the issues with other sites. In general I don't think the human race has figured out how to deal with the number of low fidelity connections the Internet has given us. I believe future generations will learn from our mistakes. I don't even think we really know all the mistakes being made yet.\n\n## Nostr\n\nNostr is a protocol. Its not social media. Just like web sockets aren't social media or HTTP isn't. But the primary applications being created and used on the protocol are social media. They are clones of Twitter.\n\nWhy do people think Nostr isn't social media? Well, because its better for now. But you see normies that come to it and hate it. Why? Because its full of people like me. Talking about stuff they don't care about. Its full of self assured jerks that love to talk about how dumb everyone is that doesn't hold bitcoin.\n\nIf Nostr succeeds this will change. Is it good? Yeah. I think Nostr is good. I think SN is good. But they aren't perfect. They have some of the same issues that the old platforms have. Their creators have learned and tried to fix some of the issues. \n\nWhat do you think? If SN isn't social media, what is your definition? What about Nostr? \N 11789 \N 407783 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.72934088288456 0 \N \N f 0 \N 0 5618639 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424430 2025-03-04 05:14:48.279 2025-03-29 22:39:50.511 \N I don't consider myself a smart econ guy at all, but I have a friend who used to work at the BLS(Bureau of Labor Statistics). These are not hard numbers. They are based on limited surveys, and then the numbers are extrapolated. They are also subjected to often arbitrary "seasonal adjustments. " The term of art he used, I believe, was "bullshit." https://example.com/ 17722 424414 421720.421840.421855.421925.421936.423276.423492.424363.424414.424430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7671771266735 0 \N \N f 0 \N 0 94943422 0 f f \N \N \N \N 421720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458448 2025-03-29 09:21:24.121 2025-03-29 22:39:50.511 \N https://imgprxy.stacker.news/8MLz1Y0wUCAxnFuTsyUKP97FV7ijhtFjDFUcs_ESNf8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9Qd2h2UGRXL0NhcHR1cmEtZGUtdGVsYS0yMDIzLTA5LTE4LTEwMTEzNS5wbmc https://example.com/ 21051 452688 452688.458448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2742115982546 0 \N \N f 0 \N 0 115962941 0 f f \N \N \N \N 452688 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401692 2025-02-13 10:20:35.928 2025-03-29 22:39:50.511 \N > academics are generally expected to become highly specialized within their field, making it challenging to bring together so many pieces into a single solution.\n\nThat problem is the root of my nym.\n\nAnother, similar problem, is that academics focus on small questions that can be answered precisely, because that's how you get published. Attempting big, paradigm shifting work upsets potential reviewers and can't usually be done with the same precision in a single article.\n\nBasically, everyone is just tweaking the parameters of the prevailing model their field adopted decades ago, rather than exploring different models. https://example.com/ 13042 401674 401496.401654.401661.401674.401692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9712300035524 0 \N \N f 0 \N 0 182351821 0 f f \N \N \N \N 401496 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401695 2025-02-13 10:23:25.506 2025-03-29 22:39:47.61 What has been YOUR BIGGEST mistake in you BITCOIN journey? In order to try to help the new comers to avoid popular mistakes in their Bitcoin journey, I think it will be interesting to share the mistake that we've done.\n\nI'm sure everyone has done some shit! Don't be shy and share it!\n\nMy biggest mistake was trying to make some USD trading btc. Looking at the charts it's very easy to spot the bottom and the ATH on the past... But trying to time the market in present time is not easy... I don't want to know how many SATS I lost trying to be the smart guy... **Buy and hodl is good strategy**.\n\nThe second biggest lost was depositing some btc into CELSIUS and Blockfi... **not yours keys, not your coins!**\n\nThanks good, I avoid the cloud mining fad. \N 13249 \N 401695 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.307136066705 0 \N \N f 0 \N 0 228424579 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413152 2025-02-22 22:44:20.098 2025-03-29 22:39:50.512 \N This is why we are exclusively focused on legal right now. We see potential in SN and want to make sure we aren't doing anything illegal by anyone's standard.\n\n> Owners cannot police their own territories.\n\nAs the proud owner of three territories, what kind of policing tools would you like to have?\n\n https://example.com/ 19417 413145 413145.413152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.17717883916561 0 \N \N f 0 \N 0 139054414 0 f f \N \N \N \N 413145 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404288 2025-02-15 18:34:59.24 2025-03-29 22:39:50.512 \N First time visiting Nashville, I like the Honky Tonk vibe 🤠🎵🎶 https://example.com/ 20897 404095 404095.404288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.17787189223 0 \N \N f 0 \N 0 75956885 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404301 2025-02-15 18:47:32.161 2025-03-29 22:39:50.512 \N Hello cowboys https://example.com/ 21140 404237 404095.404186.404237.404301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.38297184010156 0 \N \N f 0 \N 0 67312934 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416217 2025-02-25 13:37:01.311 2025-03-29 22:39:50.512 \N Look I'm a nostr dev now https://github.com/nostr-protocol/nips/pull/800 https://example.com/ 21603 415567 415012.415020.415567.416217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0897043244221 0 \N \N f 0 \N 0 68687444 0 f f \N \N \N \N 415012 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431166 2025-03-09 15:52:13.544 2025-03-29 22:39:50.512 \N Building [nostrnotify](https://github.com/scottbigbrain/nostrnotify), which gives notifications about podcasts over nostr. No live instances up yet but I should have one soon. https://example.com/ 19569 431158 430993.431001.431049.431074.431082.431158.431166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.26003840231662 0 \N \N f 0 \N 0 59530758 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413128 2025-02-22 22:03:04.296 2025-03-29 22:39:50.512 \N LOL when k00b is making memes... Then is serious stuff.\nGood one! https://example.com/ 1803 404068 404068.413128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.96790298659873 0 \N \N f 0 \N 0 242202695 0 f f \N \N \N \N 404068 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448588 2025-03-22 18:05:26.992 2025-03-29 22:39:50.512 \N Makes sense. Not what you want when you're in a growth phase. And particularly not for those folks without a Lightning wallet or without Bitcoin knowledge. \n\nIf there's any silver lining, I imagine it focuses minds to a more non-custodial future & roadmap. Assuming there's anything ever to come from crappy legislation. https://example.com/ 16747 446513 446513.448588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.34288383249208 0 \N \N f 0 \N 0 49838643 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410747 2025-02-20 16:49:56.749 2025-03-29 22:39:50.512 \N _every stacker refreshing their browser, thinking they are first to the daily discussion and reading the comment above: 👀_ https://example.com/ 5171 410731 410507.410696.410699.410703.410706.410731.410747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6796991295285 0 \N \N f 0 \N 0 62739972 0 f f \N \N \N \N 410507 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404183 2025-02-15 16:07:57.295 2025-03-29 22:39:50.512 \N A ton for sure.\n- The biggest is probably watch out for implementation-specific issues. But it's incredibly hard to detect these early on.\n- That's why bite the bullet and go multi-node, multi-implementation.\n- You need more than one node anyways for maintenance downtimes.\n- The more an implementation let's you control, the better. Take e.g. CLN's plugin system which let's you write your own low-level stuff like your own payment logic if you don't like the one that is shipped with the node. Or completely abstract the database backend.\n\nWill add more as it comes to mind. https://example.com/ 826 404130 403996.404000.404107.404126.404130.404183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.207056253521 0 \N \N f 0 \N 0 166212881 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404019 2025-02-15 13:13:50.641 2025-03-29 22:39:50.512 \N Happy New Year everyone! My New Year's resolutions are to stay focused, determined and to give my best in everything i do. https://example.com/ 5694 404000 403996.404000.404019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.674931607120506 0 \N \N f 0 \N 0 34082893 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410730 2025-02-20 16:39:34.948 2025-03-29 22:39:50.512 \N Writing a new article for my blog on substack spanish ( if anyone wants to check out my old ones lurusan.substack.com ) about book recos for and to understand Bitcoin from different view angles. And researching to make on about Nostr for the Spanish Community https://example.com/ 21766 410728 410728.410730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0647956184237 0 \N \N f 0 \N 0 239959662 0 f f \N \N \N \N 410728 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442482 2025-03-18 15:28:38.201 2025-03-29 22:39:50.512 \N Please read these:\n- https://stacker.news/items/70725\n- https://darthcoin.substack.com/p/lightning-wallets-comparison\n- https://darthcoin.substack.com/p/getting-started-ln\n https://example.com/ 19759 442469 442023.442469.442482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.67003521331167 0 \N \N f 0 \N 0 172169849 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421728 2025-03-01 23:35:23.239 2025-03-29 22:39:50.512 \N If SN will integrate chatGPT, I will not gonna use anymore SN.\nSN was the last hope that will not be bombarded with bots and AI.\nThe last hope, just died.\n\nWho post links to articles MUST do the TLDR himself.\nThat will be PROOF OF WORK.\nEnough with posters that just drop links for the sake of few sats. At least they should do some work typing 1 sentence. https://example.com/ 9177 420186 420186.421728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.3730840674951 0 \N \N f 0 \N 0 248770682 0 f f \N \N \N \N 420186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402969 2025-02-14 09:54:15.077 2025-03-29 22:39:50.512 \N Stay humble, stack up and remember you are never too late in life.... https://example.com/ 15474 402967 402967.402969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.32962102706225 0 \N \N f 0 \N 0 3311428 0 f f \N \N \N \N 402967 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422669 2025-03-02 15:58:01.551 2025-03-29 22:39:50.513 \N I like WireGuard since I like to control the whole stack.\n\nI rent a nanode on Linode (now Akamai) for $5 per month which acts as my VPN Gateway.\n\nThe hardest part is to configure that VPN Gateway but if you are interested, I can explain how to do it and share my config.\n\nI wanted to do a blog post [on my website](https://ekzyis.com) about how to setup WireGuard to connect all your devices together anyway.\nWould even be my first blog post then :) https://example.com/ 5761 422637 422637.422669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3993387608363 0 \N \N f 0 \N 0 131837093 0 f f \N \N \N \N 422637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401795 2025-02-13 11:57:59.755 2025-03-29 22:39:50.513 \N Well, spend and replace is only superficial if there is no reason to spend in the first place. The 'replace' part is only relevant to a person who has income in non-Bitcoin and *also* has some reason they prefer to spend in Bitcoin.\n\nFor myself, I find several reasons to prefer spending in Bitcoin where possible - mostly related to security and not revealing personal information, but increasingly, the broken nature of the traditional finance system plays in too.\n\nI think the right critique of spend and replace is simply that the friction and costs of buying Bitcoin can be a real pain, so minimizing the number of times you do it is desirable. Debatable point though. https://example.com/ 19980 400711 400447.400711.401795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5907877049508 0 \N \N f 0 \N 0 172329300 0 f f \N \N \N \N 400447 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2801 2022-10-20 00:32:49.108 2025-03-29 22:39:47.61 How do you respond to Bitcoin criticism nowadays? Do you even respond at all?\n\nAsk questions? Laugh? Get in fights? Simply HFSP??\n\nI've pretty much outgrown the evangelism stage at this point. It definitely comes out more in bull markets, but whenever I hear anti-Bitcoin talk these days I usually just have a flat "OK" response. I've heard it all too many times at this point.\n\nHow do you think you'll handle the wave of random friends/family reaching out about Bitcoin during the bull? \N 4292 \N 2801 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.5189722539611 0 \N \N f 0 \N 0 10140584 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437965 2025-03-15 03:52:08.924 2025-03-29 22:39:47.612 Hijacking Bitcoin - Review by Stephan Kinsella \nI finally got around to reading _The Blocksize Wars_. I wasn't following bitcoin really closely back then. I did hear Roger Ver talk about it on Tom Woods podcast and listened to some debates at the time but this book has been interesting. This morning I saw this Twitter post by Stephan Kinsella (Anti-IP patent attorney, libertarian writer. Author). I respect Stephan's thoughts on many topics. Don't always agree with him of course but I found his review of this book titled _Hijacking Bitcoin_ interesting.\n\nWhat follows is a review of Hijacking Bitcoin by Stephan Kinsella\n\n> I just finished reading Hijacking Bitcoin, by @rogerkver with @steveinpursuit, and with a foreword by my buddy @jeffreyrspencer \n\n> I will say that it is extremely well written and organized and well argued and researched. It is a very professional job. I learned some things from it. I appreciate his writing it. I could point to some defects I see in it, some things that were left out--like a definition of "Bitcoin Maximalist" or a few other fairly minor omissions, but I was impressed by the deft way the technical material was presented and woven together, combined with the history, the players, and so on. \n\n> In the end, I am not persuaded by his case, because of a difference in opinion about the emergence and role of money and the idea of what role a cryptocurrency might play. I think the way the argument was presented was biased or weird in some ways. They keep talking about what bitcoin was "meant" to be or what Satoshi's "vision" is. This sounds cultish to me. The tactics of Core/Blockstream -- none of them are rights violations and this is just people with different views of the nature of the system and its purpose. It played out. BCH still exists. They can make their case that people should "adopt" BCH whatever that means. The conspiracy theories permeating the book are embarrassing. Vague allusions to some dude who says he worked in intelligence and and investor who is a member of Bilderberger? Come on. But then I despise conspiracy theorizing; it's embarrassing. There are other criticisms I could make but I do not want to pettifog or be nitpicky or petty.\n\n> I think money solves the problem of barter: double coincidence of wants, and the inability to calculate. Then the state captures it, and ruins money. The promise of a decentralized, peer-to-peer and uncensorable digital asset promises to solve this problem and restore money to its original role and even improve it since in most ways it is superior to gold. All this bullshit about smart contracts, the "promise of the blockchain," NFT bullshit, using a blockchain "as a registry": I think it's all bullshit. I don't think crypto is needed to solve the "problem" that a Venmo has already solved. This is silly.\n\n> Moreover, the (implicit) whining that there was like a 5 year window when Bitcoin could have "gained adoption" for "cheap payments" before Venmo, Zelle, PayPal etc. were in wide use, is just ridiculous. Come on. First, this solves no huge problem. It's minor. Second, it never could have since it never could be "used" for daily transactions in today's world because of capital gains taxes. Capital gains taxes are the primary barrier to its "adoption" as a daily currency, plus the fact that dollars/fiat work fine for transactions--at the present time. They just are not a good place to store much of your wealth. Everyone already knows this. That's why no one stores all of their wealth in dollars. They chase returns in other assets to avoid inflation. Real estate, stock market index funds, and so on. Sometimes gold, as the relic of the failed gold of the ancient days.\n\n> So I see a digital money, during its adoption phase, as a place to put your wealth instead of more costly and inferior "stores of value" like gold, real estate, artwork, and so on. I can only hope that when it supplants gold and other assets for this function then at a certain point the political climate will change enough to allow it to be used, probably with various sidechain solutions, for daily payments etc.\n\n> I have mentioned some of this previously at https://stephankinsella.com/paf-podcast/kol337-wasabikas-15-you-dont-own-bitcoin/ etc.\n\n> Re the nonsense of "smart contracts": https://stephankinsella.com/2022/02/libertarian-answer-man-smart-contracts/\n \n\n> So I am glad Ver wrote this book and learned some things from it--while maintaining some skepticism at much of his claims since his bias stands out quite often--but remain unpersuaded by this large-block perspective. I still think it is almost inevitable that we will someday have a decentralized, inflation-proof and censorship-proof cryptocurrency as the single world reserve currency. Which one it will be, I do not know. Of the 30,000 cryptos that exist, my guess is it will be BTC because of network effects and it's good enough and close enough to an ideal money and so far superior to gold and fiat that it will be the one that wins out, at least for some period of time. So that means it's stupid to "use" or spend it at the present time since we are in a unique period of history when we may be seeing the adoption phase of a new money. That means its value will go up a lot. So you hold or HODL it and then eventually its value gets high enough and/or plateaus and political factors change so people do and can start using it more regularly (and after sidechains are perfected). So right now I view BTC as a speculative investment, based on the hope that it will someday replace all world fiat. \n\n> I also don't think of money as wealth, which a lot of people implicitly seem to do. I think this is a big mistake a lot of people implicilty make. So this means that it doesn't matter what is money; it doesn't have to be permanent or stay the same. It's a tool like property rights. There is no reason money cannot change, if a better one comes along. If Money1 is in use for X years and evaporates and is replaced by Money2, no wealth is lost since money is not wealth. The money premium just shifts from one to the other. So what? \n\n> E.g, if BTC is adopted in 10 years and lasts for 30 years, fine, it serves the function of money during that time, and if a vastly improved BTC-Hoppe comes out after that and somehow "dislodges" the first one and the world shifts to it, so what? No wealth is destroyed, since money is not wealth. Money is a sui generis good, not a consumer or capital good, not wealth in and of itself. And for this reason I do not expect Bitcoin Standard World to be one where people keep most of their wealth in cash (BTC), if only for diversification/risk sake. I would keep say 5% of my wealth in BTC for liquidity, and the rest in other real-wealth and perhaps income-earning assets, just in case BTC has some massive glitch and fails or gets replaced by BTC-Hoppe.\n\n> That's my take. I could be wrong about this and do not pretend to be an expert, but ... this is my opinion.\n\n> nb @saifedean\n https://twitter.com/NSKinsella/status/1780469271144874414 16513 \N 437965 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 25.53338577417 0 \N \N f 0 \N 0 178263095 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404395 2025-02-15 20:55:05.111 2025-03-29 22:39:50.512 \N Interesting! I've never thought about a full node in that way but my initial reaction is that it still counts as full because i can send/receive any bitcoin with a wallet that uses that node. https://example.com/ 9026 403996 403996.404395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8631299290586 0 \N \N f 0 \N 0 67495682 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 420757 2025-03-01 02:37:38.461 2025-03-29 22:39:50.513 \N Go for the 25GB ... treat yo self. Assuming you spend an exorbitant amount of time in front of your laptop, it's worth it. https://example.com/ 16942 420620 420620.420757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1424259380393 0 \N \N f 0 \N 0 32910409 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437029 2025-03-14 08:02:50.156 2025-03-29 22:39:50.513 \N I always forget to post my own projects https://example.com/ 9843 437018 436967.437018.437029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0310776546268 0 \N \N f 0 \N 0 94845975 0 f f \N \N \N \N 436967 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416382 2025-02-25 15:12:26.182 2025-03-29 22:39:50.513 \N Rice in Kenya is at 2830 sats/kg https://example.com/ 18412 416366 416056.416366.416382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9115833132814 0 \N \N f 706457621 \N 4 197757904 0 f f \N \N \N \N 416056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404363 2025-02-15 19:59:11.925 2025-03-29 22:39:50.513 \N When I was a kid, my dad got fired from his job as a road worker for theft. I refused to believe he could do such a thing, but when I got home, the signs were all there. https://example.com/ 11789 404331 403996.404051.404117.404331.404363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8064185059175 0 \N \N f 0 \N 0 146676220 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 408545 2025-02-18 21:41:16.763 2025-03-29 22:39:50.513 \N Interesting, here is their "One Sentence" summary: \n>A network state is a highly aligned online community with a capacity for collective action that crowdfunds territory around the world and eventually gains diplomatic recognition from pre-existing states. \n\n https://example.com/ 10549 408542 407903.408542.408545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29692475434322 0 \N \N f 0 \N 0 36193342 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438032 2025-03-15 06:46:30.922 2025-03-29 22:39:47.611 Pushdata Opcodes explained in 4 slides Pushdata Opcodes explained in 4 slides\n\n![](https://m.stacker.news/59771)\n\n![](https://m.stacker.news/59772)\n\n![](https://m.stacker.news/59773)\n\n![](https://m.stacker.news/59774)\n\nFor more details about opcode data, visit:\nhttps://bitcoindevs.xyz/decoding/3-6-overview-data\n \N 5779 \N 438032 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 7.07184846869161 0 \N \N f 0 \N 0 113688322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458385 2025-03-29 08:42:53.88 2025-03-29 22:39:47.611 Incentivizing bitcoin in my small business As @DarthCoin suggests, I have adopted a 10% discount system for bitcoin payments in my small business.\n\n![IMG_20231207_112448.jpg](https://m.stacker.news/7102)\n\nI was already using this system but only a few regular customers were aware of it, now that I have also put up a sign I hope that new customers will come. \n\nAt the moment only about 10 users are taking advantage of the discount, all of them regular customers, although my main goal is to show normality about the use of bitcoin and reach future new holders 😎\n\nThanks for reading, sat \N 8505 \N 458385 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 14.6575597160709 0 \N \N f 0 \N 0 153489875 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 426896 2025-03-05 22:06:28.719 2025-03-29 22:39:50.513 \N I would try to replicate just the behavior in the mail application. \n- Swipe the component left could do the work probably. 
\n- Or simply add icon on right side that would hide the post on click?\n- Or Slack has introduced interesting behavior recently. When you click on the message and then press `esc` the message disappears from `Unread` section. https://example.com/ 687 426664 425873.426664.426896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.093041768921 0 \N \N f 0 \N 0 113432684 0 f f \N \N \N \N 425873 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402973 2025-02-14 10:07:15.748 2025-03-29 22:39:50.513 \N I knew this would be inevitable. There's an incentive for users to sell this data to any party and then for that party to sell this data to chain analytics services.\n\nThis is just incentives catching up to the privacy flaws that exist. The only steps we can have is to yell out our concerns and point this shit out. I don't think Amboss is trying to be a bad actor, so all that's left is to educate and try to get them to reverse this feature. \n\nI'll do some digging later but it's a sad reality that someone would abuse this sooner rather than later. Just hate to see that it's them. https://example.com/ 663 402767 401915.402767.402973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7960636826761 0 \N \N f 0 \N 0 187425104 0 f f \N \N \N \N 401915 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404583 2025-02-16 01:27:07.244 2025-03-29 22:39:50.513 \N I still haven't read Micah Warren's book on Bitcoin's game theory, which I understand he found problematic and sold his stack as a result.\nOnce I have, I may be better able to answer this question. https://example.com/ 19842 404074 404074.404583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9946965433316 0 \N \N f 0 \N 0 97310282 0 f f \N \N \N \N 404074 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431248 2025-03-09 16:08:02.037 2025-03-29 22:39:50.513 \N @k00b is search indexing currently down? My daily mining comment script didn't seem to find my comments from yesterday, but found them from the day before. Anything interesting going on on your end that you're aware of? https://example.com/ 10611 393285 393285.431248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9948914910515 0 \N \N f 0 \N 0 64200076 0 f f \N \N \N \N 393285 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415408 2025-02-24 19:22:13.839 2025-03-29 22:39:50.513 \N That if you try your hardest, things will somehow work out.\n\nSometimes, shit just happens https://example.com/ 14688 414711 414711.415408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.74232138830462 0 \N \N f 0 \N 0 155291452 0 f f \N \N \N \N 414711 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 415389 2025-02-24 18:58:50.658 2025-03-29 22:39:50.513 \N True, but the content is good enough to let me dig anyway.\n\nWhat's important is now I'm aware of the existence of the "Humane by design" concept.\n\nFrom now on I have a new term to search for to aid my self-development journey. https://example.com/ 1094 415384 415381.415384.415389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.9546615362743 0 \N \N f 0 \N 0 36767618 0 f f \N \N \N \N 415381 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424388 2025-03-04 03:38:30.915 2025-03-29 22:39:50.514 \N The coordinator makes its own judgment about potential service refusal. Contrary to some claims, neither an analytics company nor government agency has a say in the decision process.\nIf users find out that their coins have been refused entry to the coinjoin, they remain in full control over their funds and can freely spend those coins. https://example.com/ 5057 424323 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424123.424149.424323.424388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0677144213972 0 \N \N f 0 \N 0 161045254 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 21129 2023-05-08 21:08:47.972 2025-03-29 22:39:47.611 My MSNBC Friend A little background:\nMy close friend of almost 50 years is a self described progressive liberal, whatever the hell that means. He literally tapes his favorite MSNBC shows. If she wasn't gay, he would propose to Rachel Maddow. As you might imagine, we don't discuss politics. \nYou may wonder why we're still friends. Our friendship transcends politics. He was best man at my wedding. \nWhy I am posting this is because, about and hour ago, he sent me a text that simply said this:\n> bitcoin mining uses 2% of the electricity in the US\n\nIn the past, when he starts talking about bitcoin, it's usually significant, because it means bitcoin has somehow broken through to his world for a moment. I have no idea where he got this little quote, but I'm sure it's making the rounds. In the past he has been the perfect contrarian indicator. \nJust saying. \N 21540 \N 21129 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.4259452627918 0 \N \N f 0 \N 0 193311951 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403422 2025-02-14 19:28:14.767 2025-03-29 22:39:47.611 Yo Mama So Fiat... Sorry, but it had to happen (@thebitcoinbugle made me do it):\n\n1. Yo mama so fiat, she thinks hyperinflation is a fitness routine to burn calories by spending money\n2. Yo mama so fiat, she thinks inflation is just the price of getting a good deal\n3. Yo mama so fiat, she thinks rising prices is a sign of economic prosperity\n4. Yo mama so fiat, she thinks quantitative easing is a brand of stretchy pants\n5. Yo mama so fiat, she thinks she’s going to retire with social security\n6. Yo mama so fiat, she thinks Elizabeth Warren should be president\n7. Yo mama so fiat, she thinks working two jobs is better than one \n8. Yo mama so fiat, she thinks the price of gas is going up\n9. Yo mama so fiat, she thinks buying something on sale means she saved money\n10. Yo mama so fiat, she thinks the president is in charge of the economy\n\nWhich is best, what are yours? Throw it down. \N 16970 \N 403422 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 8.55221792241895 0 \N \N f 0 \N 0 8660772 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442613 2025-03-18 17:41:38.784 2025-03-29 22:39:50.514 \N This would have got more love on SN I think had you put “Game Theory” before the video title.\n\nIt was a fascinating watch and very well put together. https://example.com/ 12368 442313 442313.442613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3439454547382 0 \N \N f 0 \N 0 65936097 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 419794 2025-02-28 07:39:46.17 2025-03-29 22:39:50.514 \N It's a tool. \n\nYou look at it, judge your needs, compare with the other options in the market and make your call.\n\nI know people generally mean well but the dogmatic "woS iS sHiTZ" is quite silly in my opinion. It's a great tool for many situations. https://example.com/ 2724 419775 418796.419360.419775.419794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.73481375107251 0 \N \N f 179747069 \N 1 143197067 0 f f \N \N \N \N 418796 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444332 2025-03-19 19:47:12.523 2025-03-29 22:39:50.514 \N Vance Packard - Waste Makers wrote about planned obsolescence back in 1960.\nhttps://en.m.wikipedia.org/wiki/The_Waste_Makers\n\nHe was a man far ahead of his time when you look at some of the topics he wrote about. Here's an additional few to give an idea. Admittedly I haven't read all of his stuff, but feel many topics are still relevant today and do plan on reading at some point.\n\nThe Hidden Persuaders (1957) - about the advertising industry.\n\nThe Status Seekers (1959) - about social stratification and behavior.\n\nThe Naked Society (1964) - about how new technologies create threats to privacy. Seems one people here particularly would be interested in.\n\nOur Endangered Children (1983) - about how America ignored the needs of future generation.\n\nThe Ultra Rich, How Much is Too Much (1989)\n\n https://example.com/ 5809 444289 444114.444132.444143.444150.444207.444213.444277.444289.444332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7071919306563 0 \N \N f 378589740 \N 3 161475477 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444367 2025-03-19 20:15:30.296 2025-03-29 22:39:50.514 \N Hmm, are those accurate? I thought I was a net spender.\n\nWhat do you see here?\n\nhttps://stacker.news/top/cowboys https://example.com/ 21047 444102 444102.444367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.92155213685403 0 \N \N f 0 \N 0 185670483 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403957 2025-02-15 12:03:38.795 2025-03-29 22:39:50.515 \N Just tipped some fellows sats here for the first time! Feels awesome tbh 😎 https://example.com/ 11158 403947 403947.403957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1673210723411 0 \N \N f 0 \N 0 186408903 0 f f \N \N \N \N 403947 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437953 2025-03-15 02:38:41.389 2025-03-29 22:39:47.612 Orange pilling continues and expands Last week, I wrote a [post as I was trying to initiate one of my daughters on her way to Bitcoin. ](https://stacker.news/items/661952) Even though she was reluctant to start with, once she came back from Granada and I showed what the post had generated, she developed some interest. \n\nHer first thought, as expected, was to get sats in fiat. I mentioned to her that if she preferred that way, I would give her half of the sats earned as we agreed in fiat. However, and following the suggestion from @grayruby, I offered her the possibility to earn the full amount. In this case, sats should be transferred to a wallet and keep them there. \n\nDuring my first months here, I have noticed some people use their sats in daily live. I have read how @cryotosensei gets some beer. Also some others get groceries or grab a coffee. More advanced, such as @Leo , mentioned how was a [meeting in Vancouver.](https://stacker.news/items/663893) So, I thought, I should find something that could attract her to keep the sats in there. \n\nFinally, I thought that Bitrefill it could be a good option to grab her attention. Definitely it was. She saw the different options where she could get a gift card. Most of them are places where she goes frequently. \n\nSo, we set up a new email with Proton mail. Then, she downloaded WoS and got her wallet ready. Next step, I did send her the full amount of sats (less fees) that the post had generated and we practiced sending and receiving, so that she could get familiar with it. \n\nThe plan for **player one** is up and running. Next step will be to introduce her to SN and, also, signing in with a wallet. \n\nThe interesting bit was that my other daughter, **player two**, got interested too as a result. She has just gone on a trip with her friends to Croatia and Slovenia and wanted to send me some pictures, so that I could write a post also. I leave you a sample from Pula, in Croatia. \n\n![](https://m.stacker.news/49733)\n\nI will keep you posted on their advances! \N 10311 \N 437953 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 9.49062933720921 0 \N \N f 0 \N 0 163262799 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448600 2025-03-22 18:13:36.536 2025-03-29 22:39:47.612 "Underwear is not really the key point here" advertising bitcoin in 2011 Today, we take as our text that defining moment when Bitcoiners began to expand the project's reach through marketing efforts, as memorialized in the following picture taken in February 2011:\n\n![](https://bitcoinscoresby.com/wp-content/uploads/2024/03/nyse2011bitcoinguy.webp)\n\nNo doubt you've seen this picture and perhaps the [reddit post](https://www.reddit.com/r/Bitcoin/comments/120sptv/this_guy_was_paid_32_bitcoin_to_wear_this_hat_and/) saying the gentleman was paid 32 BTC for holding the sign.\n\nDid you know that he was supposed to be an underwear model and wearing nothing but underwear "times square naked cowboy style"?\n\nAlso, by my count, he made quite a bit more than 32 BTC.\n\nAnd there's video...somewhere.\n\n# "Stop The Fed! Use Bitcoins!"\n\nIt all started with [jimbobway](https://bitcointalk.org/index.php?topic=3270.0) on the bitcointalk forum. He put up a 100 BTC bounty for someone to do the following:\n\n> Make a sandwich billboard saying "Stop The Fed! Use Bitcoins!" in large black letters (on both sides.) Wear a crazy outfit too.\n>\n> Go to the New York Stock Exchange on Wall St on a weekday preferably Mon to Thurs. Stand there from 8:00AM to 9:30AM (when people are arriving to work. Market opens at 9:30AM) Have flyers ready to hand out talking about bitcoins or refer them to bitcoin.org.\n\nHe even included coordinates.\n\n# "The only condition that might not work is the megaphone."\n\nThe bounty gets up to 250 BTC pretty quickly and then [tenbagger](https://bitcointalk.org/index.php?topic=3270.msg50420#msg50420) swoops in with a candidate:\n\n> He happens to be a former male underwear model and he would also like to see what kind of bounty would be made available if he were to go "times square naked cowboy style" and do this entire gig in briefs.\n\nHe claims it is "scheduled" to be unseasonably warm in NY...for February.\n\nTenbagger's claims of male model hotness ignite a very serious discussion about the candidate's attire (and also increase the bounty)\n\n# "Oy Vey! You guys expect a LOT for 100 Bitcoins..."\n\nThe question arises whether one can wear nothing but one's briefs while holding a sign in front of the NYSE and not get arrested.\n\nTo address these concerns, [ribuck](https://bitcointalk.org/index.php?topic=3270.msg50454#msg50454) helpfully suggests that the male model could "always wear his briefs on the outside."\n\nWhile others like [S3052](https://bitcointalk.org/index.php?topic=3270.msg50466#msg50466) suggest "disguising himself as a big golden (bit) coin or as a digital wallet" because "just a half naked guy will appear in the press as a non event." It is NYC after all...\n\nOther costume suggestions include ["a gold sparkly sequin Elvis number"](https://bitcointalk.org/index.php?topic=3270.msg50939#msg50939) and ["a visualization of "bits" with (golden painted) 1's and 0's all over his body? Or black numbers on his bitcoin golden-bodypainted (half naked) body?"](https://bitcointalk.org/index.php?topic=3270.msg50476#msg50476)\n\nThe model himself, [tenbagger](https://bitcointalk.org/index.php?topic=3270.msg51672#msg51672) reports,\n\n> wanted to wear a hip suit. He is a former male model after all so I'm sure he can pull it off and look good it in. This way, he'll look sharp, but it won't be in the typical wall street navy suit way but rather a funky, hip, colorful way.\n>\n> Any ugly guy can wear a coin costume.\n\nI humbly refer you to the picture posted at the top.\n\n# "There will be mocking of bitcoin"\n \nIt turns out the 21st is a holiday and the NYSE will be closed. [Bimmerhead](https://bitcointalk.org/index.php?topic=3270.msg50786#msg50786) expresses concern that "a 'protest' on that day will look a little clueless to anyone who does happen to walk by. \n\n> There will be mocking of bitcoin.\n\nI would like to note that throughout the discussion of bodypainted bitcoin symbols and naked cowboy style, no one has been concerned that the event will reflect poorly on Bitcoin. Not getting the hours right on the other hand...\n\n# "Of all the mornings to come in late..."\n\nThe most poignant post is from [endian7000](https://bitcointalk.org/index.php?topic=3270.msg53575#msg53575), who says\n\n> Someone in my office (near the NYSE) said they saw it this morning!\n>\n> Of all the mornings for me to come in late...\n\nOur man [tenbagger](https://bitcointalk.org/index.php?topic=3270.msg53746#msg53746) then explains why the costume didn't turn out quite as majestic as was planned.\n \n> It was freezing cold this morning in NYC so he was unable to wear the originally planned suit which is fairly light. I think he just wore a standard coat and I hope this is all right.\n\nDespite some [computer trouble](https://bitcointalk.org/index.php?topic=3270.msg55120#msg55120), he posts a [vimeo link](http://vimeo.com/20346547) later in the day. As far as I can tell, it is no longer live. I wasn't able to find the video anywhere else, either. So if one of you happens to have a copy...\n\n# The Payout\n\nBitcoiners are nothing if not generous:\n\n[riX sends 50 btc](https://bitcointalk.org/index.php?topic=3270.msg57656#msg57656)\n[S3052 sends 30 btc](https://bitcointalk.org/index.php?topic=3270.msg57698#msg57698)\n[ribuck sends 15 btc](https://bitcointalk.org/index.php?topic=3270.msg57721#msg57721)\n[Mahkul sends 50 btc](https://bitcointalk.org/index.php?topic=3270.msg57824#msg57824)\n[jimbobway sends 100 btc](https://bitcointalk.org/index.php?topic=3270.msg58021#msg58021)\n[ShadowOfHarbinger sends "some" btc](https://bitcointalk.org/index.php?topic=3270.msg59747#msg59747)\n\nBy my count that's at least 245 BTC. Not bad pay for a morning's work.\n\n# "He looks better than Marky Mark did in his Times Square underwear ads"\n\nThe thread continues with discussion about a second attempt. And [Bruce](https://bitcointalk.org/index.php?topic=3270.msg55178#msg55178) announces that he "happens to know the hottest male underwear super-model in the industry" (apparently there are a lot of underwear models in NYC).\n\nBruce posts [a bunch of links](https://bitcointalk.org/index.php?topic=3270.msg55243#msg55243) to photo shoots his hot friend has done.\n\nTo which [kiba](https://bitcointalk.org/index.php?topic=3270.msg55253#msg55253) responds:\n\n> You have a tendency to exaggerate.\n\nAnd then the conversation turns into a raging debate about meat consumption of all things...apparently bitcoiners haven't changed that much.\n\nThe last post in the thread is from [The Script](https://bitcointalk.org/index.php?topic=3270.msg62137#msg62137)\n\n> WTF? What happened to the super-sexy (according to Bruce) underwear model generating publicity for Bitcoin? All the sudden everyone is talking about vegetarianism....\n\n\n \N 2724 \N 448600 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.1382653558502 0 \N \N f 0 \N 0 198428231 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 401547 2025-02-13 06:28:52.877 2025-03-29 22:39:50.514 \N Quite some things, but the short answer would be: better understanding my current situation and plan for the next moves in life ;)\n\nMore specifically:\n\n- Finish reading the Bitcoin Standard: only ~50 pages to go! Super-interesting educational resource, I will definitely use some of its examples where orangepilling others.\n- Making a high-over financial plan for the next 5 years. I'm seriously considering to buy a small apartment with my girlfriend, so I want to know how the down payment and mortgage will affect my current savings/investments plan.\n- Collecting educational material and preparing for a leadership course that I enrolled in, starting from next month. I se this as a nice opportunity to further develop my career, fingers crossed ;) https://example.com/ 3213 400972 400918.400972.401547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5638334400319 0 \N \N f 0 \N 0 79958620 0 f f \N \N \N \N 400918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428911 2025-03-07 17:54:22.174 2025-03-29 22:39:50.514 \N I have the copy that I read (and flipped my worldview upside down) framed, hanging on the wall of my office. https://example.com/ 1740 428888 428653.428888.428911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9958713784186 0 \N \N f 0 \N 0 54300284 0 f f \N \N \N \N 428653 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404128 2025-02-15 15:16:34.323 2025-03-29 22:39:50.514 \N This is why it's important to be the change you want to see in the world: if you _like_ a thoughtful comment, zap it! It matters a lot.\n\nAnd also (I propose), zap meta-content that you want to see in the world: people being kind, thoughtful, debating in good faith, etc. You're voting for a culture every time you do, SN makes that very tangible. https://example.com/ 5661 402168 402119.402168.404128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1195771162989 0 \N \N f 0 \N 0 209567795 0 f f \N \N \N \N 402119 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437828 2025-03-14 23:01:09.904 2025-03-29 22:39:47.611 🚀 Economically Unspendable Bitcoin UTXO Calculator \N https://jlopp.github.io/unspendable-utxo-calculator/ 17690 \N 437828 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 1.28995985030159 0 \N \N f 185164079 \N 1 184518123 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438040 2025-03-15 07:04:25.411 2025-03-29 22:39:47.612 Stoic Book Club: Meditations by Marcus Aurelius #11 - Book 11 This post is the eleventh in our Stoic Philosophy book club series on Meditations by Marcus Aurelius. Participants expressing interest are tagged at the end of the post, let us know if you're new and would like to join and be tagged!\n\nPrior posts for context:\n\n* [Book 10](https://stacker.news/items/504275)\n* [Book 9](https://stacker.news/items/497464)\n* [Book 8](https://stacker.news/items/487756)\n* [Book 7](https://stacker.news/items/478176)\n* [Book 6](https://stacker.news/items/467359)\n* [Book 5](https://stacker.news/items/458288)\n* [Book 4](https://stacker.news/items/446496)\n* [Book 3: In Carnuntum](https://stacker.news/items/439147)\n* [Book 2: On the River Gran, Among the Quadi](https://stacker.news/items/429509)\n* [Book 1: Debts and Lessons](https://stacker.news/items/423469)\n* [Geneisis Post](https://stacker.news/items/417471)\n\n# Book 11\n\n## Summary and Highlights\n\nFollowing on from Book 10, I really enjoyed Book 11 as well. I'm looking forward to each new book a little more than the prior. Apparently Marcus was visiting the theater around this time. There is a lengthy reflection on comedy and tragedy in #6, as well as many small, sniping quotes which feel like they're from plays or literature. Here are my highlights for this week.\n\nAs usual, Marcus leads off with a banger in #1, which I'll quote in its entirety.\n\n>     Characteristics of the rational soul:\n    Self-perception, self-examination, and the power to make of itself whatever it wants.\n    It reaps its own harvest, unlike the plants (and, in a different way, animals), whose yield is gathered in by others.\n    It reaches its intended goal, no matter where the limit of its life is set. Not like dancing and theater and things like that, where the performance is incomplete if it's broken off in the middle, but at any point -- no matter which one you pick -- it has fulfilled its mission, done its work completely. So that it can say, "I have what I came for."\n    It surveys the world and the empty space around it, and the way it's put together. It delves into the endlessness of time to extend its grasp and comprehension of the periodic births and rebirths that the world goes through. It knows that those who come after us will see nothing different, that those who came before us saw no more than we do, and that anyone with forty years behind him and eyes in his head has seen both past and future -- both alike.\n    Affection for its neighbors. Truthfulness. Humility. Not to place anything above itself -- which is characteristic of law as well. No difference here between the *logos* of rationality and that of justice.\n\nOf course, as I read this, I'm ticking off boxes to make sure "I'm rational", an exercise of ego. But it's eloquently written and a well-rounded description of living in harmony with Nature and Universal Law. A great start.\n\nIn #2, Marcus provides a short instruction manual on how to dissolve attachment and desire, to:\n> "Analyze the melody into the notes that form it, and as you hear each one, ask yourself whether you're powerless against *that*. That should be enough to deter you."\n\nWhat I found personally interesting here was his express inclusion of martial arts alongside singing and dancing as outer examples of artistic desire. Perhaps because I have plenty of experience with music and dancing, but only an unexplored curiosity for martial arts. Makes me want to try, and also reminds me of the way other practitioners like Joe Rogan or Lex Friedman describe Jiu Jitsu as beauty in strategy and sequence.\n\nIn #3, Marcus mentions "The resolute soul", and its resolve in "separation from the body" but claims,\n> But the resolution has to be the result of its own decision, not just in response to outside forces [like the Christians].\n\nThis is an interesting detail to me because he particularly mentions the Christians and expresses an interpretation of the movement at the time. Raised in a Christian environment, I pick on this detail because it has also been quite a challenge for me to discern my own motivations toward Truth during development. Outside pressure from family, church organization or culture can contribute to some confusion in finding and nurturing the Soul's internal resolution, or True Self. I guess that's also just a part of growing up for everyone, but it stands out to me that perhaps the pressures of external persecution, or the factors Marcus is describing at this time are still held in the DNA of Christian organizations and consciousness today.\n\n> 5. "And your profession?" "Goodness." (And how is that to be achieved, except by thought -- about the world, about the nature of people?)\n\nThe first time I read this, I almost wrote it off with a slight disagreement, reducing it to "thinking good thoughts makes me a good person", which leaves a dangerous amount of room for spiritual bypassing. However, upon closer inspection, it has a deeply Buddhist flavor if I consider that Goodness is equated with a "pure mind", one that thinks good thoughts because that is its nature, now that the subconscious has been cleaned. Interesting how my own interpretation is subject to a difference between outer perception and inner reality, probably coincident with the state of my own mind at that time. :/\n\nIn #6, Marcus does a little exposition of theater genre. Essentially, Tragedies exist "to remind us of what can happen, and that it happens inevitably. And "Then, after tragedy, Old Comedy: instructive in its frankness, its plain speaking designed to puncture pretensions". Of course, they never make it like they used to, as Marcus essentially follows this with commentary that "New Comedy" has lost this. True now, true then, true always?\n\n> #7. It stares you in the face. No role is so well suited to philosophy as the one you happen to be in right now.\n\nI can't help but remember Marcus' entries in prior books which seem to despair his station at the expense of "being" a philosopher. Perhaps he's developed some acceptance of that. Either way, it's a classical acknowledgement of Plato's Philosopher-King.\n\nIn #8, Marcus draws an interesting psychological analogy to a tree:\n>     A branch cut away from the branch beside it is simultaneously cut away from the whole tree. So too a human being separated from another is cut loose from the whole community.\n    The branch is cut off by someone else. But people cut themselves off -- through hatred, through rejection -- and don't realize that they're cutting themselves off from the whole civic enterprise. \n    Except that we also have a gift, given to use by Zeus, who founded this community of ours. We can reattach ourselves and become once more components of the whole.\n    But if tthe rupture is too often repeated, it makes the severed part hard to reconnect, and to restore. You can see the difference between the branch that's been there since the beginning, remaining on the tree and growing with it, and the one that's been cut off and grafted back.\n    "One trunk, two minds." As the gardeners put it.\n\nThere are a few different parts I like about this one. Firstly, the part about people cutting themselves off through hatred and rejection. It's a reminder for me that *relationships are important*. Sometimes I feel like I'll be all good if I can just sort myself and my life out -- meditate by myself and have little to do with the outside world, like a monk on a mountaintop. But perhaps there is unconscious rejection, anger or fear behind this desire? Secondly, I find it interesting that Marcus credits "Zeus, who founded this community of ours". Zeus is the Greek god of gods and Marcus is Roman. Does Zeus represent sovereignty here? Or Reason? Besides the syncretism here, I find the selection of Zeus interesting as a symbol for the rise of rational thought in the development of human religious ideas, which I've explored in some other [book review posts](https://stacker.news/items/427941). And of course, the final two paragraphs summarized with "One trunk, two minds" is a wonderful, allegorical representation of psychological trauma and the development of psychological complexes. Well described.\n\nIn #9, Marcus advocates that you shouldn't let difficult people "stop you from putting up with them" and that "anger, too, is weakness, as much as breaking down and giving up the struggle." We often describe the fundamental natural instincts of "fight or flight" as a root-level automatism, but my reading here is that both fight or flight are losing the conflict. Stay centered, stay grounded and still.\n\nWhich is further developed in #12:\n> The soul as a sphere in equilibrium: Not grasping at things beyond it or retreating inward. Not fragmenting outward, not sinking back on itself, but ablaze with light and looking at the truth, without and within.\n\nA fiery, dynamic stasis. Like the Sun.\n\n> 14. They flatter one another out of contempt, and their desire to rule one another makes them bow and scrape.\n\nPossessed by their obsessive desires, people are twisted into the opposite expressions of behavior.\n\nReflection #15 is my favorite from Book 11:\n>     The despicable phoniness of people who say, "Listen, I'm going to level with you here." What does that mean? It shouldn't even need to be said. It should be obvious -- written in block letters on your forehead. It should be audible in your voice, visible in your eyes, like a lover who looks into your face and takes in the whole story at a glance. A straightforward, honest person should be like someone who stinks: when you're in the same room with him, you know it. But false straightforwardness is like a knife in the back.\n    False friendship is the worst. Avoid it at all costs. If you're honest and straightforward and mean well, it should show in your eyes. It should be unmistakable.\n\nIncredibly based. Stinky based. I can't say it any better, or add much to it. Go stink it up with the Truth.\n\nEntry #18 is a very long, exploratory post of Marcus breaking down his mind's own misconceptions. It's well worth its own consideration, but a segment on masculinity stands out:\n> When you start to lose your temper, remember: There's nothing manly about rage. It's courtesy and kindness that define a human being -- and a man. That's who possesses strength and nerves and guts, not the angry whiners. To react like that brings you closer to impassivity -- and so to strength.\n\nIt's tough to be a man out there these days, and there aren't many positive examples of masculinity out there, so here's one from Marcus The Man himself. \n\n> 23. Socrates used to call popular beliefs "the monsters under the bed" -- only useful for frightening children with.\n\nSounds about right with all the cultural drama around The Current Thing(tm). As Marcus frequently reminds elsewhere, this phenomena isn't new and we can expect it again. Learn to recognize cultural drama, detach identity from it and *grow up*, become a Man, not a child (or a sheep) and see the world for what it is.\n\n> 26. This advice from Epicurean writings: to think continually of one of the men of old who lived a virtuous life.\n\nBoth ironic and inspiring to be reading this text and following that advice about the writer, Marcus. He's become his own ideal 2000 years later.\n\n> 29. Mastery of reading and writing requires a master. Still more so life.\n\nThis one is pretty enigmatic. The wisdom probably lies in the mystery still half-concealed. Must one become the master oneself? Or must one become a slave to something higher? What is the difference? Is there any?\n\n> 39. Socrates: What do you want, rational minds or irrational ones?\n-- Rational ones.\nHealthy or sick?\n-- Healthy.\nThen work to obtain them.\n-- We already have.\nThen why all this squabbling?\n\nLOL. I wish I could hang out with Socrates.\n\nThanks for reading.\n\n## Participants\n\nThank you everyone who has been reading Meditations, and participated in the discussions. Feel free let me know if you don't want to be on the tag list anymore :)\n\n@siggy47 @cryotosensei @carlosfandango @Bitman @gd @sudocarlos @BitByBit21 @bc52210b20 @Atreus @byzantine @davidw @Roll @grayruby @Taft @Oialt\n\nWe only have one more book left, but feel free to signal interest in the comments if you'd like to be tagged. \N 14255 \N 438040 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 4.06973107681747 0 \N \N f 0 \N 0 166511853 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449154 2025-03-23 08:16:26.019 2025-03-29 22:39:50.514 \N I'm here for posts that point out harsh realities and tradeoffs. Glad you wrote it.\n\nI harp pretty regularly on the idea that the ultimate "solution" to this issue will be a host of institutions that span various positions of sovereignty -- in other words, that incorporate varying amounts of trust distributed across various parties in various ways, that interact with each other, and that provide a range of affordances that require varying levels of sophistication. Perhaps [this](https://stacker.news/items/380065/r/elvismercury) will be a place where some of this gets elaborated.\n\nI am still not aware of such a writeup, one that puts the pieces in context, and imagines how it is working (for the elements that are built) and could work (incorporating sketches of elements that are not yet built, or that are only imagined.) Can anyone suggest anything that sort of fills this gap? https://example.com/ 20412 446298 445639.446298.449154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.817584348751 0 \N \N f 0 \N 0 98339053 0 f f \N \N \N \N 445639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404119 2025-02-15 15:10:12.007 2025-03-29 22:39:50.514 \N 👀 Wow, nice one! Substack can kick rocks, and twitter reach limited me for no reason yesterday. Long live stacker news! https://example.com/ 16149 404086 404086.404119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.95411860362532 0 \N \N f 0 \N 0 173621671 0 f f \N \N \N \N 404086 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428719 2025-03-07 14:42:06.008 2025-03-29 22:39:50.514 \N I was just tonight thinking about the psychological instinct -- or bundle of instincts and processes, a suppose -- that gets us to like people who are quite like us. In sociology this is called [homophily](https://en.wikipedia.org/wiki/Homophily) and I suspect, based on what I know of you, that you may [enjoy learning about it](https://www.annualreviews.org/doi/abs/10.1146/annurev.soc.27.1.415).\n\nBut the context I was thinking about tonight was kind of orthogonal to that -- the way that some people fill holes of ours, make us more complete by being _unlike_ us. It is so ... powerful to find someone like that. Feels almost religious. That might be another thing you might enjoy [reading about](https://www.edegan.com/pdfs/Burt%20(1992)%20-%20Structural%20Holes%20The%20Social%20Structure%20Of%20Competition.pdf).\n\nAnyway, great post as ever. I'll miss them when they're gone. https://example.com/ 1307 428697 423928.425225.425235.428697.428719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3967973916202 0 \N \N f 0 \N 0 1835042 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410670 2025-02-20 15:40:06.941 2025-03-29 22:39:50.514 \N @k00b learning to humor\n\n![](https://m.stacker.news/42035) https://example.com/ 3411 410668 410269.410647.410654.410668.410670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0912956492646 0 \N \N f 0 \N 0 218722557 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416220 2025-02-25 13:38:12.443 2025-03-29 22:39:50.514 \N First time I have set an alarm in years. I'm representing a friend in court this morning. It's a small thing, just a favor, but it feels strange. It's been over a year. It makes me realize I am enjoying my retirement. https://example.com/ 15624 416209 416158.416209.416220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0604861653322786 0 \N \N f 236577816 \N 2 59676505 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410761 2025-02-20 17:01:07.761 2025-03-29 22:39:50.514 \N Brilliant essay. I liked [this one](https://eriktorenberg.substack.com/p/on-solitude) as a chaser.\n\nEdit: my liking of this essay was so enthusiastic that I violated my own principle of not zapping links w/ no editorial content. So you win this round, damn it. https://example.com/ 1060 410759 410759.410761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.92186351330728 0 \N \N f 0 \N 0 146925851 0 f f \N \N \N \N 410759 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438059 2025-03-15 07:56:14.714 2025-03-29 22:39:50.514 \N Making something smaller would lead to wasted or unused space, but isn’t necessarily incompatible. That’s why I think decreasing block size would be a soft fork instead of hard. This differs from increasing in that you can’t fit something larger in something smaller, hence hard fork https://example.com/ 15806 437946 437946.438059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5011655954689 0 \N \N f 0 \N 0 235448385 0 f f \N \N \N \N 437946 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455134 2025-03-26 19:01:37.309 2025-03-29 22:39:50.515 \N Write. \n\nCode or thoughts. Can be anything. Just focus on a subject for 30 minutes. It’s a superpower in this day and age, to structure & memorise your thoughts and move things forward.\n\n——-\n\n(Too many are on someone else’s autopilot, repeating the stuff they heard the week prior whilst believing those thoughts were their own creation)\n https://example.com/ 19005 454793 454731.454793.455134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6100801173773 0 \N \N f 0 \N 0 2845304 0 f f \N \N \N \N 454731 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449103 2025-03-23 07:31:56.187 2025-03-29 22:39:50.515 \N I think I can summarize the issues in the way of SN becoming a "full" nostr client:\n\n1. web of trust\n2. edits\n3. deletes\n4. wallets\n5. rewards\n6. fees\n7. specs\n\n#1 seems like something that can be done client side. You say you need a big database of all content in order to sort it properly, but I don't think it's true. Each user's web of trust can be based on their own follow lists and the people their follows follow. They don't have to all be identical. You don't need a "mega relay" for this -- just follow lists, which are already very popular on nostr.\n\n#2 and #3 have nostr specs and your client could implement them. Other people might view deleted notes and "pre-edit" notes in a separate app but I don't think you're saying "that's" a problem. (Are you?) Because they can do that on stacker news already and there's not really anything you can do to stop it. I hope you guys aren't operating under the assumption that anything you delete from your site is gone forever.\n\n#4 seems like you have a roadmap for this. If SN is serious about moving toward full self custody then this won't be an issue once you do. Any wallet that can be connected to or built into stacker news can be connected to or built into a full nostr client too.\n\n#5 seems combined with #6. If you had a way to collect fees, do you think it would be easy or hard to distribute rewards to the most engaging nostr users via zaps? It *sounds* easy but maybe I'm missing something.\n\n#6 is something I've talked with Keyan about. I think he he knows how to collect fees on lightning using "wrapped invoices" in a similar manner to how Geyser does it. It does require users to "opt in" to sending some money toward the reward distributor, but people "opt in" to using Stacker News too so it sounds doable.\n\n#7 is a strange objection to me, part of the point of nostr is that all specs other than #1 are optional. If you want to do something that isn't in the specs, or violates a nip (other than #1), just do it, and maybe it will *become* a spec if other people want to do it too and ask you how you did it. (That's how zaps started btw. I implemented tipping in anigma before there was a spec for it, and then Will wanted to do the same thing so he just copied what I did, and then he added receipts and renamed tips as zaps.)\n\nIn summary, I think all of the issues you identify as standing in the way of SN becoming a full fledged nostr client are solvable. I hope it continues to progress in the direction of full nostr integration. https://example.com/ 19777 449079 449027.449053.449057.449075.449076.449079.449103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4421170115496 0 \N \N f 0 \N 0 160791800 0 f f \N \N \N \N 449027 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424192 2025-03-03 21:43:16.681 2025-03-29 22:39:50.515 \N First of all you should ask yourself for what do you want to run that LN node.\nThere are many types of LN nodes and use cases.\n\nPlease start reading here, is very important to read these:\n- https://darthcoin.substack.com/p/what-bitcoin-ln-node-software-can\n- https://darthcoin.substack.com/p/managing-lightning-node-liquidity\n- https://darthcoin.substack.com/p/recommendations-for-ln-users\n- https://darthcoin.substack.com/p/private-lightning-nodes\n- https://darthcoin.substack.com/p/lightning-node-maintenance\n- https://darthcoin.substack.com/p/lightning-routing-fees-experiment\n- https://darthcoin.substack.com/p/umbrel-bitcoin-ln-node\n- https://darthcoin.substack.com/p/bitcoin-private-banks-over-lightning\n\nand many more that I wrote. https://example.com/ 2832 423968 423667.423687.423704.423895.423925.423968.424192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6782113142282 0 \N \N f 953367906 \N 6 105721148 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 424447 2025-03-04 05:40:20.651 2025-03-29 22:39:50.515 \N visiting the [rewards page](https://stacker.news/rewards) every hour to cheer on stackers as they rise and fall in the rankings, it’s almost as addicting as cheering on my bracket during march madness https://example.com/ 16680 424311 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424130.424153.424311.424447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2080755593232 0 \N \N f 0 \N 0 198414712 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424418 2025-03-04 04:54:07.672 2025-03-29 22:39:50.515 \N What is the overall business model for the app? How big is the team working on Zeus? https://example.com/ 20904 424378 423750.424378.424418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.15103416685439 0 \N \N f 0 \N 0 228480844 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422643 2025-03-02 15:36:38.005 2025-03-29 22:39:50.515 \N What about the AI4ALL hackathon that just started? Surely you know about that! \nhttps://bolt.fun/tournaments/ai4all/overview https://example.com/ 20642 422635 422548.422618.422635.422643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9866963995627 0 \N \N f 0 \N 0 26851225 0 f f \N \N \N \N 422548 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403561 2025-02-14 23:59:46.748 2025-03-29 22:39:50.515 \N No one in El Salvador cares what Bloomberg thinks. \n\n*Source*: Actual Salvadoran person from El Salvador. https://example.com/ 726 399955 395797.396045.396500.397438.399955.403561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.01165822421351 0 \N \N f 0 \N 0 128219818 0 f f \N \N \N \N 395797 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455201 2025-03-26 19:48:52.196 2025-03-29 22:39:50.515 \N ![photo-output.jpeg](https://m.stacker.news/17615) https://example.com/ 13038 455198 455132.455159.455198.455201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6166112590899 0 \N \N f 0 \N 0 34098952 0 f f \N \N \N \N 455132 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410739 2025-02-20 16:45:55.313 2025-03-29 22:39:50.515 \N I am a BItwage user from the beginning... 2015\nAll good!\nhttps://darthcoin.substack.com/p/be-paid-in-bitcoin-using-bitwage https://example.com/ 8242 410269 410269.410739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.50081596242882 0 \N \N f 0 \N 0 14522322 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424336 2025-03-04 01:26:39.917 2025-03-29 22:39:50.515 \N I mute a lot of territories so that when I’m signed in, I only see the most relevant content. If I want to see cats and dogs, I just manually go to that territory.\n\nI also view the site on mobile while not signed in so I can see everything.\n\nFiltering by combined sats volume like ek mentioned is also a great default option. \n\n https://example.com/ 12516 423667 423667.424336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.867686791359 0 \N \N f 86953980 \N 1 234726491 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408019 2025-02-18 14:30:13.996 2025-03-29 22:39:50.515 \N > I still do not fully understand the usefulness of the hat, the horse and the gun.\n\n1. Fun\n2. Signal\n\nDuring times of heightened bot and spam activity, it has been useful to be able to see if the OP is someone with roots at SN or if it's just a drifter who might be up to no good. https://example.com/ 16998 407951 407657.407951.408019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.49066954005315 0 \N \N f 30415821 \N 1 136989156 0 f f \N \N \N \N 407657 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424413 2025-03-04 04:42:54.352 2025-03-29 22:39:50.516 \N I remember in my youth throwing my Nokia 3210 in the air and trying my damn hardest to destroy it. I soon gave up. Progress, I guess. https://example.com/ 20939 424386 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424123.424149.424386.424413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9120899971952 0 \N \N f 0 \N 0 124450140 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424242 2025-03-03 23:18:37.936 2025-03-29 22:39:50.516 \N love the name. feels like a bit of real estate and not just some vague virtual space https://example.com/ 8423 423378 423378.424242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1827084113573 0 \N \N f 34532684 \N 1 151679879 0 f f \N \N \N \N 423378 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415347 2025-02-24 18:12:14.96 2025-03-29 22:39:50.516 \N - [Using HODL invoices for anon payments to make them atomic](https://github.com/stackernews/stacker.news/issues/415)\n- rendering [blog posts](https://ekzyis.com/blog) from markdown to HTML\n- blog post about forwarding packets between hosts inside a VPN https://example.com/ 9365 415047 415047.415347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3763240944519 0 \N \N f 0 \N 0 77142631 0 f f \N \N \N \N 415047 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402018 2025-02-13 14:04:48.838 2025-03-29 22:39:47.611 Bitcoin is the lubricant Bicycles need lubricants to reduce friction between gears and chains, allowing you to efficiently transform your pedaling energy into motion.\n\nWhile lubricant is important to ensure your bike functions well, it doesn’t eliminate the need for you to pedal it.\n\nLikewise, money is the economic lubricant that reduces friction between buyers and sellers, allowing you to efficiently transform your past work into goods and services.\n\nWhile money is important to ensure an economy functions well, it doesn’t eliminate the need for buyers and sellers who are working to gather more resources.\n\nWhat’s my point?\n\nWhen estimating Bitcoin’s future value, consider how much money will be needed to act as lubricant for a functioning global economy, rather than dividing the total size of the global economy by 21 million.\n\nOur ~$500 trillion global economy is a machine that functions well with ~$20 trillion of gold and fiat money acting as a lubricant, a number that would be even smaller if we all used the same currency.\n\nBitcoin is not the machine, it’s the lubricant. \N 20776 \N 402018 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.583792019531835 0 \N \N f 0 \N 0 166721657 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 24963 2023-05-22 13:01:29.853 2025-03-29 22:39:47.611 Abundance Through Scarcity Paradox | Parker Lewis \N https://tftc.io/abundance-through-scarcity-paradox/ 4989 \N 24963 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4207374582759 0 \N \N f 0 \N 0 47574486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 150493 2024-03-28 14:14:16.796 2025-03-29 22:39:47.611 Regret sending to opendime Am I the only one who regrets stacking fuck ton of small utxo to random opendime? \N 1577 \N 150493 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.3337403346129 0 \N \N f 0 \N 0 62424461 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448235 2025-03-22 13:54:30.409 2025-03-29 22:39:50.515 \N What is the hat challenge? 🤔 https://example.com/ 13921 448192 448092.448192.448235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.57351683323385 0 \N \N f 0 \N 0 239780999 0 f f \N \N \N \N 448092 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431070 2025-03-09 15:16:35.515 2025-03-29 22:39:50.515 \N ![20240122_193901.jpg](https://m.stacker.news/13296) https://example.com/ 1429 431009 429199.431009.431070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0422153149438 0 \N \N f 0 \N 0 51124714 0 f f \N \N \N \N 429199 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413949 2025-02-23 14:42:29.438 2025-03-29 22:39:50.515 \N Is a desktop/web app version in the works? https://example.com/ 2151 413943 413675.413903.413943.413949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1023471938954 0 \N \N f 0 \N 0 10402255 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424163 2025-03-03 21:12:44.54 2025-03-29 22:39:50.515 \N What notification daemon are you using with i3? Also does this only apply to notifications from Chrome or other applications? https://example.com/ 4538 423784 423667.423739.423784.424163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8443011862454 0 \N \N f 0 \N 0 184886810 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442366 2025-03-18 14:33:47.15 2025-03-29 22:39:50.515 \N Should have just gone on Robosats https://example.com/ 16214 442356 441553.442229.442350.442356.442366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.36825109746965 0 \N \N f 0 \N 0 58559117 0 f f \N \N \N \N 441553 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437835 2025-03-14 23:18:33.398 2025-03-29 22:39:47.611 What the heck is a Bitcoin Bar? I visited one to find out The Bitcoin Bar is now in full swing—the gaming room, the hardware wallet museum and more artwork are now on the alls or complete. The big Bitcoin ATM is no there… yet. \n\nCheck out the bar on Google, here: https://g.co/kgs/HP835PB \n\nI was not paid or sponsored to visit the bar. I think I might have got a free drink from the lovely Bulgarians I hung out with though. https://youtu.be/W1ifG7uWDp0?si=bb7MayZvpQWxqP-H 16154 \N 437835 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 21.8292103552837 0 \N \N f 0 \N 0 187165890 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410673 2025-02-20 15:43:30.164 2025-03-29 22:39:47.611 we are launching a "zap powered anonymous e-sim service on nostr" \N https://nosta.me/npub1zapes4gdz352gxuc5z05jmpc6d55l6k77rcqw0742ass8p96lvgq8f9wvg 20969 \N 410673 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4981294707451 0 \N \N f 0 \N 0 150539967 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410746 2025-02-20 16:49:24.1 2025-03-29 22:39:50.515 \N > I’m so used to shilling the birth of my children on Twitter threads to make 10% back on affiliate links at the end of the thread\n\nwhat??! https://example.com/ 16543 410728 410728.410746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0779198247669 0 \N \N f 0 \N 0 14399780 0 f f \N \N \N \N 410728 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 404433 2025-02-15 21:46:19.509 2025-03-29 22:39:50.515 \N I think I figured it out. The A is a prefix set by dunst to indicate that the notification has an action (you can click on it), and the U shows that the notification has a URL with it.\n\nYou can disable this if you want, by editing ~/.config/dunst/dunstrc and changing the line show_indicators from true to false. If the file doesn't exist, then copy the default configuration file from /etc/dunst/dunstrc to ~/.config/dunst/dunstrc and then changing show_indicators to false\n\nThe issue I found this on, for reference: https://github.com/dunst-project/dunst/issues/599 https://example.com/ 4754 404046 404046.404433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5947172134639 0 \N \N f 0 \N 0 52314382 0 f f \N \N \N \N 404046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458545 2025-03-29 11:00:45.434 2025-03-29 22:39:50.515 \N LOL, I DOS'd a family member's phone as a prank as well @elvismercury https://example.com/ 16543 451793 451793.458545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.7549187547613 0 \N \N f 0 \N 0 237061957 0 f f \N \N \N \N 451793 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448090 2025-03-22 11:58:10.54 2025-03-29 22:39:50.515 \N Great post. I think everybody already realized that LN is not the dream that everyone would run a node and have free txs. We must split the different use cases to assess what LN solves and what it does not. LN is very merchant/business oriented, in this case I think it's a good solution, you can have a LN node for your whole chain, or thrust some service provider that does that for your business. LN is also very good to connect different L2 protocols, Liquid, Fedimints, Cashu, Ark(?) this is awesome for UX. Now for user-user instant payments, not so good, but most users will be fine using a custodial solution for that, there is the problem that in many regions you may not have custodial solutions available. WoS even pulled out of the US. This is the last mile for LN I think, that is where a fedimint can help, or wallets like Phoenix, Mutiny or Zeus. LN doesn't have to solve everything in a non custodial way imo. https://example.com/ 17041 447683 447683.448090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6814291170755 0 \N \N f 0 \N 0 144198911 0 f f \N \N \N \N 447683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422635 2025-03-02 15:34:27.097 2025-03-29 22:39:50.515 \N Good post. Voices like yours will be drowned out by the NGU crowd until the next bear market. https://example.com/ 1726 422618 422548.422618.422635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.542330250715 0 \N \N f 26851225 \N 1 133849047 0 f f \N \N \N \N 422548 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403813 2025-02-15 08:36:47.052 2025-03-29 22:39:50.516 \N Damn, @ek. This is what I call proof of work. Great post. I have actually done this a few times. Next time I won't skip the verifying. https://example.com/ 11073 403809 402904.403694.403750.403754.403755.403762.403765.403771.403772.403773.403776.403778.403779.403788.403798.403806.403808.403809.403813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.81361658514295 0 \N \N f 0 \N 0 97141801 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442796 2025-03-18 20:20:04.388 2025-03-29 22:39:47.611 Opcodes Explained Opcodes are the fundamental building blocks of Bitcoin's scripting language, defining conditions for spending transactions. Each opcode represents a specific instruction executed within Bitcoin's virtual machine, enabling complex scripting capabilities. Opcodes are executed sequentially to validate transactions against scriptPubKey and scriptSig, determining if inputs fulfill the conditions for spending outputs.\n\nThe scripting language employs opcodes to perform operations like data manipulation, conditional execution, cryptographic verification, and arithmetic computations. This limited set ensures predictable script evaluation, mitigating risks from malicious or indefinitely looping scripts.\n\nOpcodes enable smart contracts and multi-signature wallets within Bitcoin. Conditional logic opcodes (e.g., OP_IF, OP_NOTIF) and cryptographic operations (e.g., OP_CHECKSIG, OP_CHECKMULTISIG) enforce specific spending conditions, such as requiring multiple signatures or locking funds until a certain block height or timestamp (via OP_CHECKLOCKTIMEVERIFY and OP_CHECKSEQUENCEVERIFY).\n\n| Opcode | Description | Function |\n|----------|-------------|-------------------|\n| 0 | OP_0, OP_FALSE | Push false |\n| 76 | OP_PUSHDATA1 | Push data |\n| 77 | OP_PUSHDATA2 | Push data |\n| 78 | OP_PUSHDATA4 | Push data |\n| 79 | OP_1NEGATE | Push -1 |\n| 80-96 | OP_1-OP_16, OP_TRUE | Push 1-16 |\n| 97 | OP_NOP | No operation |\n| 99 | OP_IF | If conditional |\n| 100 | OP_NOTIF | If not conditional |\n| 103 | OP_ELSE | Else conditional |\n| 104 | OP_ENDIF | End if |\n| 105 | OP_VERIFY | Verify condition |\n| 106 | OP_RETURN | Terminate script |\n| 107-108 | OP_TOALTSTACK, OP_FROMALTSTACK | Stack transfer |\n| 109 | OP_2DROP | Drop 2 |\n| 110 | OP_2DUP | Duplicate 2 |\n| 111 | OP_3DUP | Duplicate 3 |\n| 112 | OP_2OVER | Copy 2nd pair |\n| 113 | OP_2ROT | Rotate top 3 twice |\n| 114 | OP_2SWAP | Swap top 2 pairs |\n| 115 | OP_IFDUP | Duplicate if not 0 |\n| 116 | OP_DEPTH | Stack size |\n| 117 | OP_DROP | Remove top |\n| 118 | OP_DUP | Duplicate top |\n| 119 | OP_NIP | Remove 2nd |\n| 120 | OP_OVER | Copy 2nd |\n| 121 | OP_PICK | Nth item |\n| 122 | OP_ROLL | Move Nth top |\n| 123 | OP_ROT | Rotate top 3 |\n| 124 | OP_SWAP | Swap top 2 |\n| 125 | OP_TUCK | Move 3rd to top |\n| 130 | OP_SIZE | Size of top item |\n| 135 | OP_EQUAL | Equality check |\n| 136 | OP_EQUALVERIFY | Verify equal |\n| 139 | OP_1ADD | Add 1 |\n| 140 | OP_1SUB | Subtract 1 |\n| 143 | OP_NEGATE | Negate |\n| 144 | OP_ABS | Absolute value |\n| 145 | OP_NOT | Not zero |\n| 146 | OP_0NOTEQUAL | Not equal to 0 |\n| 147-148 | OP_ADD, OP_SUB | Arithmetic |\n| 149-154 | Disabled | Disabled |\n| 155-158 | OP_BOOLAND, OP_BOOLOR, OP_NUMEQUAL, OP_NUMEQUALVERIFY | Boolean logic |\n| 159-160 | OP_NUMNOTEQUAL, OP_LESSTHAN | Comparison |\n| 161-162 | OP_GREATERTHAN, OP_LESSTHANOREQUAL | Comparison |\n| 163-164 | OP_GREATERTHANOREQUAL, OP_MIN | Minimum/Maximum |\n| 165-166 | OP_MAX, OP_WITHIN | Range check |\n| 167-168 | OP_RIPEMD160, OP_SHA1 | Hashing |\n| 169 | OP_SHA256 | SHA-256 |\n| 170 | OP_HASH160 | RIPEMD-160+SHA-256 |\n| 171 | OP_HASH256 | SHA-256x2 |\n| 172-175 | OP_CHECKSIG, OP_CHECKSIGVERIFY, OP_CHECKMULTISIG | Signature check |\n| 176-177 | OP_CHECKMULTISIGVERIFY | Multisig verify |\n| 178-181 | OP_NOP1-OP_NOP4 | No operation |\n| 182-185 | OP_CHECKLOCKTIMEVERIFY, OP_CHECKSEQUENCEVERIFY | Timing checks |\n| 186-189 | OP_NOP6-OP_NOP9 | No operation |\n| 190-193 | OP_NOP10 | No operation | \N 21047 \N 442796 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.10850614553646 0 \N \N f 0 \N 0 109215381 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403456 2025-02-14 20:32:38.59 2025-03-29 22:39:47.611 Self-Reliance by Emerson In the spirit of this essay, I want to share how I found it and accompanying context[^1] in case it might actually be interesting to more people than just me.\n\n![](https://m.stacker.news/49352)\n\n[^1]: I watched my first episode of [Firefly](https://en.wikipedia.org/wiki/Firefly_(TV_series)) today. I remembered that the word "companion" was used and I thought it'd be fun if I would use that word in this post, too. I like to lookup the words I use before I use them and realized I didn't realize that [companions are courtesans in the show](https://ultimatepopculture.fandom.com/wiki/Companion_(Firefly)).\n\nI've been going through @plebpoet's recent comments—this is a detail I considered to not mention since I don't want @plebpoet to become too aware that I—_should I write "regularly"?_—visit her profile even though I told her in person already that I sometimes do that but I think I was just [projecting](https://en.wikipedia.org/wiki/Psychological_projection) onto her my predicted own feelings if someone would tell me that—_is thinking that such projecting is wrong wrong according to this essay?_—and found [this reply](https://stacker.news/items/668459?commentId=668781) to [this post](https://stacker.news/items/668459). I remembered that I saw this post when it still had zero comments and almost mentioned her in a reply but I didn't. I was curious if my prediction that she would reply by herself would come true which turned out to be the case.\n\nReading through the comments, I found a [link to transcendentalism](https://en.wikipedia.org/wiki/Transcendentalism) in https://stacker.news/items/668459?commentId=668794 and got hooked by this:\n\n> while society and its institutions have corrupted the purity of the individual, people are at their best when truly ["self-reliant"](https://en.wikipedia.org/wiki/Self-Reliance) and independent.\n\n I then clicked on "self-reliant" and was surprised it led me to an article about an essay. Even though I already know what this word means, I still clicked on it and expected to see a definition of "self-reliance".\n\nAfter skimming that article, I wanted to read that apparently very accomplished essay and thus searched for it. What I found is what you see. Thanks to the design of that site, I immediately knew that I stumbled into one of the rare original corners of the internet.\n\nAfter the draft of this post reached this point, I considered deleting everything and waiting until I read the full essay. I didn't read it in full yet because I am very tired (the distance my head travels before I wake up again is increasing) and actually want to sleep but I also want to have a chance to wake up to potential comments from stackers. Oh, and:\n\n> Else, tomorrow a stranger will say with masterly good sense precisely what we have thought and felt all the time, and we shall be forced to take with shame our own opinion from another.\n\nSo here this is, and here you are. https://archive.vcu.edu/english/engweb/transcendentalism/authors/emerson/essays/selfreliance.html 10818 \N 403456 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.49301571556664 0 \N \N f 0 \N 0 138199024 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 167143 2024-05-07 16:58:47.696 2025-03-29 22:39:47.611 The Case for a Chain Split The debate surrounding drivechains has been heating up, with proponents employing various tactics to garner support. This divisive issue echoes previous disputes in the Bitcoin community, such as the 2017 block size controversy. As such, we should consider what was then the definitive resolution: a chain split.\n\nA significant portion of the Bitcoin community rejects drivechains, effectively blocking its implementation via a soft fork. Bitcoin's voluntary nature makes it resistant to hostile takeovers, despite claims that miners could force the change. Disagree with that last statement? Then let's put that to the test. We can resolve this posturing and propaganda by forking the code. \n\nHere's how it would work: Code implementing drivechains would be released. Those who support the proposal can run this code. A transaction that goes against drivechain rules but adheres to pre-drivechain rules will trigger a chain split. Those running the drivechain software wouldn't be doing anything, but nodes that aren't can reject the drivechain chain by using the "invalidateblock" command. The result will be two distinct Bitcoins: one with drivechains and one without.\n\nThis approach was resolved the conflict we had in August 2017, when Bitcoin Cash split off from Bitcoin. Similarly, proponents and opponents of drivechains can either hold or sell their respective Bitcoins post-split. This would be a real-world test of control and game theory within the network.\n\nI advocate for this split not just for potential profits, but also because it's a peaceful solution. It would let us see in real time how convicted the drivechain people are. Will drivechain miners support it if it means mining at a loss? A chain split would serve as a critical learning opportunity for the community, providing a clear answer to the ongoing debate. Ultimately, this will strengthen Bitcoin by showing the market how hard it is to change its properties.\n\nSo bring it on! Fork or shut up. \N 9275 \N 167143 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.5891118983795 0 \N \N f 0 \N 0 133340911 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416324 2025-02-25 14:42:17.315 2025-03-29 22:39:50.516 \N The White Man's Burden: Why the West's Efforts to Aid the Rest Have Done So Much Ill and So Little Good by William Easterly.\nVery uncomfortable reading and some interesting parallels with BTC adoption being either top-down or bottom-up https://example.com/ 20275 416142 416142.416324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4484674250724 0 \N \N f 0 \N 0 868975 0 f f \N \N \N \N 416142 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424157 2025-03-03 21:05:21.159 2025-03-29 22:39:50.516 \N I need to find time for:\n\n100 days of Python \nPleb Dev Courses\nNostr Dev Courses\nBitcoin is Venice\nPraxeology\n\nWay to scattered, now I'm attempting to write articles and seriously considering starting a podcast with my newly orange pilled wife. \n\nAnd I should probably update my resume with chatgpt and find a bitcoin job...... https://example.com/ 20381 424050 423667.423831.423938.424035.424050.424157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.28449583398413 0 \N \N f 0 \N 0 39138774 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 431133 2025-03-09 15:34:29.716 2025-03-29 22:39:50.516 \N Congratulations! You are going to do a great job, so don't worry to much. \n\nBest advice (and hardest to follow) I received was this:\n\nLet them fall down, kids bounce. \n\nKeep them from killing or maiming themselves, but otherwise a few bruises from falling down stairs or even breaking a bone is okay. https://example.com/ 4633 430607 430607.431133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9382223228114 0 \N \N f 0 \N 0 112280125 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 210252 2024-08-04 12:35:43.23 2025-03-29 22:39:47.611 How to prepare for a coding career? For the devs out there, what books, resources,... do you recommend to transition from a career in academia (academic coding using Fortran and Python) to a career doing front-end, back-end, app development, etc?\n\nOf course, hands-on contributions FOSS development is a no-brainer ([SN rewards](https://github.com/stackernews/stacker.news/blob/master/awards.csv) makes this very enticing), but as a more structured approach to get the right foundations is also important, I'd thought of asking the question here rather to get insights from other Bitcoiners and LN developers.\n\nSometime back I was recommended a book by @k00b, but not sure it was [this one](https://www.crackingthecodinginterview.com/) or another one. Do you have experience with this or similar books to prepare for coding interviews? \N 4763 \N 210252 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 10.4052437934632 0 \N \N f 0 \N 0 209450799 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 133703 2024-02-28 11:58:55.445 2025-03-29 22:39:47.611 Worse than ordinals - Signing Bare MULTISIG input #### Exploring Bitcoin: signing bare MULTISIG input [2018]\nhttps://medium.com/@bitaps.com/exploring-bitcoin-signing-bare-multisig-input-bf0771384893\n\n> This article is a detailed description of how bare MULTISIG output works in bitcoin transactions and the step-by-step algorithm for signing this type of output inside transaction input. In the enclosed part is an example of a signing bare MULTISIG input using the Python.\n\n--------------------\n\n### [ 2023 ]\nhttps://image.nostr.build/68b8c7cf5549e767c172f0e4dc074b3e52831faad1c27aec12b6077b169732bd.jpg#m=image%2Fjpeg&dim=1080x1857&blurhash=%5D69j4Z7z%2BuRjELui%7DtI%3As.rrO%3D-9NvxaxGz%3AI%3A%251t7bbIUt7xZV%40ofVZo%23xZV%3Foe9%5B-AW%3DRkxGnMWAt7j%5DbIogjaoeoJfk&x=5bf1c363d96f827c764da403c007e26f4aa9cf821830449c72dade49b9bc29df \N 837 \N 133703 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.8043255796975 0 \N \N f 0 \N 0 50491500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 410752 2025-02-20 16:53:42.321 2025-03-29 22:39:50.516 \N In the distant future, I can see them using gains from their Bitcoin holdings to buy back their debt and even pay off their debt, but with them currently subsidizing oil prices in their country I think their country is obviously making poor financial decisions. \n\nI'd love a more detailed analysis of El Salvador's finances, how funding certain things means a certain return on investment things like that though.\n\nI definitely don't think they have the finances to buy their debt right now, if they did, they wouldn't need debt to finance their country in the first place. https://example.com/ 21228 410135 410135.410752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.68548047145578 0 \N \N f 0 \N 0 14477075 0 f f \N \N \N \N 410135 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 409716 2025-02-19 19:45:13.64 2025-03-29 22:39:50.516 \N > territories now show when they were created\n\n12.5.23 founder gang rise up https://example.com/ 836 409694 409383.409694.409716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.75527580078312 0 \N \N f 0 \N 0 188179465 0 f f \N \N \N \N 409383 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424151 2025-03-03 21:00:55.404 2025-03-29 22:39:50.516 \N Hit me up if you (or anyone else) wish to grab a beer. Nov-March is the best time. https://example.com/ 21825 423831 423667.423831.424151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.28752522492012 0 \N \N f 0 \N 0 33956149 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 424378 2025-03-04 03:09:26.456 2025-03-29 22:39:50.516 \N ![rare sats.jpg](https://m.stacker.news/27697) https://example.com/ 21427 423750 423750.424378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.84159866279711 0 \N \N f 228480844 \N 1 184206931 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 60694 2023-09-07 02:59:00.724 2025-03-29 22:39:50.516 \N This is a difficult question. For deceased category I think I would choose family members who have passed away. It would be nice to see them one more time. https://example.com/ 16513 58808 58808.60694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.802427162172 0 \N \N f 62276189 \N 1 221310721 0 f f \N \N \N \N 58808 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 409694 2025-02-19 18:59:05.531 2025-03-29 22:39:50.516 \N 1. that bitcoin is actually stored on the device (while the thing that matters the most is the recovery seed)\n2. that passphrase is a sort of a password that can be reset by us (while it isn't stored anywhere, not even the device, and cannot be reset) https://example.com/ 8284 409383 409383.409694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4949234767889 0 \N \N f 188179465 \N 1 79171185 0 f f \N \N \N \N 409383 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 32911 2023-06-19 00:39:46.098 2025-03-29 22:39:47.611 Celebrating Independence day (July 4th) as an anti-state bitcoiner #### Can someone that hates the government celebrate Independence day?\n\n\nI believe they can\n\n---\n\n---\n\n## Defining Terms\n\nBefore I answer that let me preface my thoughts with this. There are three things that get used as if they mean the same thing.\n\n1. Nation\n2. Country\n3. Government\n\nMany people use these interchangeably yet they are three different things. The fact that many people do not realize or recognize this leads to confusion and frustration when they hear someone being critical of the government, and its policies.\n\n1. Nation is the people\n2. Country is the land\n3. Government is the state. The system ruling over the people within the borders of the land.\n\n## What America is to me\n\nOver the years as I've become more disenfranchised with the US government and the state as in idea I have had an internal struggle with patriotism[^1]. I love this country and its people but I hate many things the government has done and is still doing. I no longer vote. I do not believe the political forces represent me or any of us. I believe the Constitution is a beautify document but it has been powerless to stop the march to where we are today. I am ashamed of what the US and many state and local governments do. And yet, I still love America. Some people have tried to make me feel as if I do not love America. This isn't true.\n\nI'm proud to call myself an American. I love our country and what the people (on the whole over time) stand for. The ideals of liberty and justice. The ideals of the only limitation being your own willingness to work. The idea of being unashamed of what you believe. The idea of fresh starts. The ideas that drove people to the new world. These values are good. They have not always been upheld or modeled but the ideas are core to being an American. When you talk to an immigrant that has came to this country you can see how special America is.\n\n---\n---\n\n## The US government is not America\n\nI believe the state is evil and responsible for more death and destruction than any entity that has ever existed. But, I do not want to live in chaos, I support governance. Governance exists in each of our lives. It is mostly voluntary and rarely includes violence or the threat of violence. The state uses violence to force the people into submission. The state is an entity that has a monopoly on the use of violence. \n\nThe US government is not what makes me proud. It makes me ashamed. The actions of those in power are deplorable. Many of them are anti-American. When the founders penned the documents that created the federal government there was much concern about the federal government trampling over the rights of **the people**. And the evil isn't new. Look at what the US government did to the native people in this country. The state is ruthless. Our culture is far to comfortable with the violence the state perpetrates. Maybe you don't think we can abolish the state as I do. That's OK. But can we agree that its grown too big and too powerful?\n\n---\n---\n\n\n## Food for thought\n\nI challenge you to think about this over the next few days. Who has your back? Is it your friends and family or is it some politician or bureaucrat? You might be thinking well, there are men who laid down their lives for our freedoms. Ok, but they are people. Most of us that oppose war oppose the abuse of those soldiers. Many times they are being used as tools for the elite. Most of us respect those that are willing to sacrifice themselves for their family and their nation. If you talk to vets(I know many) they believe in the values I have described. Those people have my respect. Most do not love the government. They love the people. They love the country. They love their families and our cultural values. They do not want to live under tyranny. Yet as the state grows in power we are increasingly living under a technocratic system that rivals the USSR. In the name of preserving freedom the state has created a tyrannical system that robs us of our freedoms. It is fueled by a political system that divides us and pits neighbor against neighbor.\n\n\nI invite you to reject these ideas. This political poison. We don't need to agree with each other on everything. We are being forced into this stupid arguments constantly. Live and let live. Stop trying to use force to make everyone live like you. That's un-American. Its not what this nation is about. Yet that is where we are.\n\n---\n---\n\n\n### The dollar isn't American\n\nBitcoiners should understand this. Many Americans think bitcoin is bad because the identify the dollar as American. Again, this is ignorance. The US government predates the dollar. The dollar is fiat. I believe it is anti-American. Bitcoin is American. It is censorship resistant. It is created by proof of work. It has no rulers. What is more American than that? But you see this is the same issue as thinking being American has something to do with the government. The government is something we can change, or replace. If we did would we cease to be who we are? I don't think so.\n\n---\n---\n\n## Happy Independence day\n\nHappy Independence day stackers. Lets work on thinking more independently and living with each other in peace. Reject the political framing. We don't have to love and agree with everything everyone does. We can respect each others rights to do things we wouldn't do. We can do better at that. We could all probably focus on improving our own backyard a little more and forcing people that live across the country to do or not do things a little less. Celebrate your freedom and the freedom of others on this Independence day.\n\n---\n---\n\nWhat do you love about America? The people and the land.\n\n[^1]: Inspired by SNL (@k00b, and @car)\n \N 20751 \N 32911 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.47306349268025 0 \N \N f 0 \N 0 104775252 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 34299 2023-06-24 13:38:20.912 2025-03-29 22:39:47.611 "Journey-to-Brightness" Part 1: Making Progress on Harari's "Sapiens". ... Or should I say *Booking*?.. 🤫\n\nI've chosen to start this journey with Harari's book "Sapiens", and it's been a good choice so-far. \n\nI've read more than half of the book's *509* pages in under *three days*, which might sound like Rookie-numbers to some, but for me it's quite the achievement.\n\nEspecially the first eight chapters really intrigued me, chapters nine - twelve were still interesting enough, but not as good as the first eight. The chapters I'm currently reading aren't that interesting to me yet, I hope that there'll be a change in that soon.\n\nThe more "interesting" chapters discussed the *cognitive* and *agricultural* revolution, the current chapters discuss the *scientific* revolution, which as paradox as it sounds was the one I initially had the highest hopes for... 😄 \n\nThere's still a solid 180-or-so pages left, which I'm hoping to not only get to enjoy more than the ones I just read, but also finish before Friday.\n\nI'm thinking about writing a summary about the things I've learned from the book, especially the first twelve chapters would be well-worth the effort I think (at least for me), and depending on how the following chapters evolve, maybe these too will earn a place in my summary. 😶‍🌫️\n\n*Started to get frustrated that I couldn't really speak intelligently on most of the books I'd been reading, even though I felt like they impacted me while I read them*.\n\n@Coyote_Cosmico\n\nSummaries are going to be my take on trying to speak "intelligently" about the books I'll read, maybe something for you, too?\n\nIt's a pretty time-consuming task, but once finished it'll be a useful resource, or so I hope. 🥲\n\nWhat about you guys? \n\nWould you be interested in a *very detailed* review about this book's contents? \N 19637 \N 34299 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.4062230654619 0 \N \N f 0 \N 0 70757227 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 208573 2024-07-31 15:49:28.263 2025-03-29 22:39:47.612 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/306476), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs here.\n\nSend your best 👇 \N 2734 \N 208573 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.2767686631504 0 \N \N f 0 \N 0 38125896 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 32293 2023-06-16 00:23:31.065 2025-03-29 22:39:47.611 Book Review | Bitcoin: A Game Theoretic Analysis | ⭐⭐⭐⭐/5 If you're venturing into the world of technical Bitcoin literature, "Bitcoin: A Game Theoretic Analysis" by Professor Micah Warren is a significant addition to your reading list. However, tread cautiously; this is a graduate-level textbook. Literally.\n\n![F9nrtQJXIAAINnF.jpg](https://m.stacker.news/5850)\n\nIt delves into the vulnerabilities and potential failure points of Bitcoin. Offering a broad, but incomplete, exploration of the dynamics shaping Bitcoin's failure scenarios.\n\nProfessor [Micah Warren](https://pages.uoregon.edu/micahw/), a seasoned expert in Game Theory, and a former Bitcoin holder, approaches the subject in good faith and with an adversarial mindset. The book raises critical questions about potential failure scenarios for Bitcoin, drawing on a wealth of technical knowledge cited from over 55 academic papers.\n\nThe heart of the book revolves around a pivotal question: if Bitcoin were to fail, what are the most likely failure modes?\n\nYet, there are areas where the analysis falls short, lacking specificity in potential mitigations to the vulnerabilities identified. Often relying on speculation, this book is akin to a good game of checkers, but not a full game of chess. It's scenarios typically think only one step ahead, not several.\n\nIn any case, the full scope of Bitcoin's game theory was not captured in this book. Though it was well snapshot, assuming a static state. Which is a problem, since Bitcoin is not static, but rather dynamic and evolving. To the authors credit, the book does acknowledge this limitation several times.\n\nInterestingly enough, there was also an interview with Professor Micah discussing this book with several [interesting people](https://web.archive.org/web/20230907051924/https://ks.group/team). Noteworthy contributors, included Matthew Pines, Bennett Tomlin, and Matthias Venturine. All with interesting backgrounds and [affiliations](https://en.wikipedia.org/wiki/Chris_Krebs).\n\nhttps://www.youtube.com/watch?v=wKr8jECz53U\n\nDuring this interview, the moderator [asks a question specifically mentioning the deep state and Bitcoin](https://youtu.be/wKr8jECz53U?si=zDot2mRxeYU2jg05&t=2627). This question and the panelists themselves conjured the following interesting thought.\n\nIf the deep state were to commission a study on Bitcoin and it's vulnerabilities, a professor of game theory would be a good place to start. And this book is exactly the kind that would be written from such a commission.\nFrom that perspective, I like to think of this book as the general state of awareness of Bitcoin's game theory and vulnerabilities. It could even be the deep states red team playbook.\n\nIn any case, the book explores key aspects of Bitcoin, from its consensus mechanism to the potential threats of selfish mining, strategic mining, block withholding, Mining Pool bribes, Petty Compliant Mining, 51% attacks, 33% attacks, 64% attacks, OFAC compliant mining and more.\n\nThe first half of the book meticulously examines Bitcoin's vulnerabilities, With a heavy dose of math and a primer on Bitcoin basics, the focus is mainly on the mining aspect of Bitcoin. While the technical intricacies of mining take center stage, the book occasionally touches on nodes but lacks the same emphasis given to miners. Which in my view is an oversight, since Bitcoin nodes are what secure Bitcoin to a large degree, and enfranchises it's users.\n\nThe second half of the book explores Bitcoin as a socio-technical system, delving into the interplay between human beliefs and the instantiation of these beliefs in the form of a software protocol. The discussion extends to potential coalitions forming within the network, considering threats from corporations, financial institutions, and nation-states.\n\nThe book also examines the halving schedule, its impact on the cost of production, and the potential positive feedback loop in Bitcoin's value. The discussion acknowledges the complexity of predicting Bitcoin's value, considering factors such as market demand, adoption, regulatory developments, and macroeconomic conditions. A critical analysis also examines the utopian scenario outlined by many as hyperbitcoinization. But often it leaves out the dynamics of second and third layers like the lightning network.\n\nIn conclusion, "Bitcoin: A Game Theoretic Analysis" serves as a significant contribution to the understanding of Bitcoin's vulnerabilities. But, concerning nodes and the lightning network, it misses much. It is an especially good book for a more advanced audience well-versed in game theory and Bitcoin's technical intricacies. While the book may leave some questions unanswered and scenarios underexplored, its emphasis on adversarial thinking and academic rigor makes it a valuable addition to the literature on Bitcoin's security landscape.\n\nI recommend anyone on Bitcoin's blue team to first critically watch the interview above, and then seriously consider reading this book. The book gets a lot wrong, but it also gets some things right and introduced several lesser known vulnerable-Bitcoin scenario's worth knowing.\n\nFrom this perspective, it's a great thought exercise for the technically minded Bitcoiner looking out for Bitcoin's future.\n\nIf you're on Bitcoin's Blue team, please take some time on this one. [It's worth reading](https://books.google.ca/books?id=hL-oEAAAQBAJ&pg=PT61&cad=1#v=onepage&q&f=false).\n\nhttps://medium.com/@Fiach_dubh/book-review-bitcoin-a-game-theoretic-analysis-5496cf289c3e\n\n \N 16929 \N 32293 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.3326648875308 0 \N \N f 0 \N 0 80415870 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 49755 2023-08-14 12:48:02.735 2025-03-29 22:39:47.612 Will Nostr have >10M WAUs by Jan 31, 2026? I was thinking more about @gladstein's bet that Nostr will have at least 1M WAUs by Jan 31, 2026. Not only would I take the over, but I would actually take an order of magnitude over. Maybe much more.\n\nWhy?\n\n1) Current WAU count is already likely much higher than 30k (if you count reading nostr as active usage).\n\n2) Two companies alone will bring way over 1M users. And they've already got Nostr integrations live (Cash App & TIDAL).\n\n3) Nostr Wallet Connect is likely to go mainstream as the global bitcoin/eCash payment standard and I expect that every bitcoin/lightning/eCash wallet will adopt it over the next year.\n \n4) AI agents coming to Nostr is real. As information goes infinite, Nostr is the only corner of the web where every note is signed (and thus trustworthy). And Nostr + Lightning is the only infra capable of banking these agents such that they can interop with each other and us \n\n5) And ofc that's to say nothing of what will actually happen, which is that A) current UX will improve radically (making it easier to onboard noobs to existing use cases) and B) new unexpected nostr use cases (leveraging open identity + WoT) will emerge, surprising even the biggest nostr bulls to the upside.\n\nDo you agree? Am I too bullish? Not bullish enough? https://x.com/MaxAWebster/status/1806397832087339156 21383 \N 49755 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.6140386562861 0 \N \N f 0 \N 0 146484274 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 110044 2024-01-09 14:25:42.244 2025-03-29 22:39:47.612 How are these not hard-forks? I'm having trouble understanding how some soft-forks did not cause a chain split.\n\nIncreasing the block size is a hard-fork. That seems obvious: if old nodes dont accept larger blocks, they would not agree with nodes running software accepting large blocks. The large blocks would be refused by old nodes, creating a blockchain split.\n\nHowever I remember reading that decreasing the block size would be a soft-fork. Huh? The same kind of disagreement between nodes running the old and new software should happen again right? Is it because all miners would signal their approval for smaller blocks first, then mine smaller blocks from then on? So that old nodes would only ever see blocks smaller than their higher, older limit? Do such soft-forks always require miner cooperation first?\n\nSegwit moved some transaction data in a new Witness spot. How do old nodes which do not run SegWit agree with the ones that do? They are not aware of the Witness part, how/why do they accept the same transactions as valid without that data?\n\nMore recently I read very interesting proposals for soft-forks enabling covenants such as CTV. This would enable new spending conditions for UTXOs, thanks to a new OP_CODE to Bitcoin Script. This could notably allow multiple people to own different parts of a single UTXO from what I understood, which would solve the usual complaint that "onboarding billions of people on L2 with one UTXO per person takes too long/too costly". \n\nAgain: how is this a soft-fork? Old nodes could accept a transaction which does not meet the new conditions from the new OP_CODE, which would lead to a chain split. Maybe the miners only relay valid CTV transactions, and the nodes ignore the unknown new OP_CODE so they think it's valid?\n\nThanks a lot for your help! \N 9517 \N 110044 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.90196999952597 0 \N \N f 0 \N 0 50533131 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 104518 2023-12-28 12:52:50.888 2025-03-29 22:39:47.612 Bitcoin History: The time Mt. Gox destroyed 2000 BTC by accident **Introduction** \nBy now, the story of Mt. Gox is coming to a close. Once the lawsuits are settled, it seems this chapter of Bitcoin History will be finished. Many people know Mt. Gox and what happened (they used an insecure password, got hacked and lost thousands of Bitcoin).\n\nBut did you know Mt. Gox had made some oopsies in the past too? They were one of the first victims of the transaction malleability attack (https://en.bitcoin.it/wiki/Transaction_Malleability). From what I can tell, some attackers withdrew Bitcoin from Mt. Gox, then malleated the transaction such that the transaction ID would change. At this point Mt. Gox would see that the withdrawal never went through (the tx ID they had in their system is no longer in the mempool or in any block), and so they would start another withdrawal.\n\nI think one of the most interesting displays of Mt. Gox's incompetence is when they destroyed around 2000 Bitcoin in a single block due to one mistake. The infamous block 150,951 has losses totalling over 2600 Bitcoin that can't ever be recovered.\n\n**Inside one of the transactions**\nBy far the biggest loss was in the transaction [aa62bdd690de061a6fbbd88420f7a7aa574ba86da4fe82edc27e2263f8743988](https://mempool.space/tx/aa62bdd690de061a6fbbd88420f7a7aa574ba86da4fe82edc27e2263f8743988), which destroyed 367.758 BTC\n![](https://i.imgur.com/WLQTAow.png)\n\nNotice anything strange? Lets inspect the UNKNOWN output further:\n![](https://i.imgur.com/cyGIn6b.png)\n\nIf you're familiar with Bitcoin Script, you might have spotted the issue already. For those not in the know, let me briefly explain what happened. A normal P2PKH output's locking script looks like this:\n\n- Compute the hash of the public key that was put on the stack\n- If the public key hash matches, then check that there is a valid signature on the stack for that public key\n- If these conditions are met, you can spend the output!\n\nBut.. that's not what this output does. Instead of pushing a public key hash to the stack, it simply pushes a 0. So what this output is saying is: If you can provide a public key that hashes to **0**, and you have a valid signature for that public key, you can spend it.\n\nBut there is no public key that hashes to 0! Even if we were to start finding it, it'd take us far longer than the heat death of the universe to find such a special key. Thus this output is *unspendable*. Infact it gets even worse; as far as I can tell OP_0 pushes a single byte to the stack. A RIPEMD-160 hash is 20 bytes. So this script is just not valid at all, because OP_EQUALVERIFY would always be false (comparing a 20 byte value to a 1 byte value). \n\nThus this, and all other similarly malformed transactions in this block are unspendable. Here's a list (thanks bitcoin-supply.com):\n\n![](https://i.imgur.com/zDYDuhE.png)\n\n \N 9916 \N 104518 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.1456504775851 0 \N \N f 0 \N 0 164787821 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 102680 2023-12-24 15:37:29.952 2025-03-29 22:39:47.612 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/475795) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 16348 \N 102680 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.84897176306802 0 \N \N f 0 \N 0 225052157 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 118726 2024-01-26 00:09:18.119 2025-03-29 22:39:47.612 What's one thing you're really bad at? Who is bad at one thing or the other? It can be temporary or a life long trait that you're holding with you. For me it's the USP of people how I view them or how I liked to be viewed. The reality is this the thing that you're really bad at is far better placed withing you than the thing you're really good at. Let me first tell you what's my one thing that I'm really bad at.\n\nIt's my tolerance. I hope you remember my intolerance when someone who doesn't have anything to do with my business bluntly asks about what job I do and what are marriage plans *"https://stacker.news/items/651559/r/IamSINGLE*" I can never tolerate people who are stupid, incompetent, uninformed and/or aggressively certain of things they don't understand.\n\nDon't misunderstand me. I'll be polite for the minimum period not to appear rude, but I'll make my excuses and leave/escape as soon as possible. But, the real problem is that such people are in abundance. Don't believe me, read any political thread on any social media.\n\nI think I've somehow developed a physical allergy to stupidity and bullshit. As such, I'm really pretty bad at tolerating such irritating nonsense. \n\n**So, if you won't mind telling something you're very bad at, you're most welcome in the comments.**\n\n*Sats for all*\n\n \N 705 \N 118726 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.7407534634994 0 \N \N f 0 \N 0 119353273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 133219 2024-02-27 14:52:27.32 2025-03-29 22:39:47.612 PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY II (part 1/2) Hello stackers. I want to thank everyone who has been paying attention to the situation my country is going through right now. It is important that the truth be known, unfortunately the media does not show the full picture, I am not in Venezuela, I cannot physically do anything, but I will do what is within my reach, I am grateful for the existence of SN that allows me to express myself freely.\n\nSummary: On July 28, 2024, the presidential elections were held, where various events occurred, from the union of the people to defend the voting centers to abuses by the communists. Electoral fraud occurred, it was something that was known that could happen and so it did. In this post 👉 https://stacker.news/items/626469/r/bief57 I described how this electoral process was carried out, it contains attached links to videos.\n\nJuly 29, 2024 After the CNE (National Electoral Council) gave the results declaring Nicolas Maduro the "winner" at 12:00 am, citizens immediately began to demonstrate their discontent, since the fraud of the result was more than evident, throughout the day yesterday there were demonstrations in all the states of the country, for the first time in 25 years people toppled statues of Chávez, burned posters with Maduro's face, fought without weapons with guards, carabineros and correct police, there were many injured, and an estimated +30 dead, including children of 13 and 15 years old. In this post I wrote everything about yesterday 👉 https://stacker.news/items/627385/r/bief57including links to videos of the protest. In the comments of the post I was updating what was happening throughout the day.\n\nToday I want to share in a different way, in this post I will show everything that happened from 00:00 to 1:00 p.m. (Venezuela Time) on today, July 30, 2024. At 11:00 p.m. I will publish the second part, which will be the events that occur between 2:00 p.m. until the end of the day.\n\nA mother and her child beg for mercy. In response, the police of the dictatorship point a gun at their heads.\n\nTuesday, July 30. 11:00 AM. \nValera, Trujillo State, Venezuela.\n![](https://m.stacker.news/42565)\n\nBREAKING NEWS: Venezuelan Defense Minister Padrino López reaffirms his "absolute loyalty and unconditional support" to Nicolás Maduro\nhttps://x.com/AlertaMundoNews/status/1818306151156478435\n\nRepression against young people\nhttps://x.com/AlertaNews24/status/1818274814458736763\n\nRepressions in Valera State\nhttps://x.com/Dwightveneca/status/1818320298548048100\n\nBREAKING NEWS: Venezuelan National Police and Maduro's paramilitary groups are working together to massacre innocent Venezuelans protesting against Nicolás Maduro's electoral fraud.\nhttps://x.com/eduardomenoni/status/1818349971319722308\n\nParamilitary groups of dictator Nicolás Maduro armed with pistols and machine guns go out on 23 de enero in Caracas to intimidate Venezuelans who are protesting en masse against the dictatorship of Nicolás Maduro in Venezuela.\nhttps://x.com/eduardomenoni/status/1818346350922416309\n\nThe tyrant Nicolás Maduro orders military tanks to come out in Caracas to confront and massacre Venezuelan protesters against Nicolás Maduro's electoral fraud.\nhttps://x.com/eduardomenoni/status/1818312090311868913\n\nAgents of the Nicolás Maduro regime kidnap opposition leader of Voluntad Popular, and ally of María Corina Machado, Freddy Superlano in Caracas at this time. Maduro ordered the massacre of protesters in the streets and is now arresting the opposition\nhttps://x.com/eduardomenoni/status/1818292340924002541\n\nParamilitary groups of Nicolás Maduro are shooting at protesters in Caracas at this hour. The genocidal regime of Venezuela has ordered a massacre of Venezuelans who do not accept its communist electoral fraud.\nhttps://x.com/eduardomenoni/status/1818283168887107920\n\nVenezuelan protesters throw Molotov cocktails at a building where Nicolás Maduro's thugs, the so-called Chavista Collectives, who are massacring Venezuelans, are hiding.\nhttps://x.com/eduardomenoni/status/1818190638203982275\n\nProtesters advanced on the henchmen of Nicolas Maduro's Bolivarian Police despite the shots fired on Avenida Universidad in Caracas, Venezuela\nhttps://x.com/eduardomenoni/status/1818178932824330384\n\nThousands of motorcycles go out to protest against the genocidal tyrant Nicolás Maduro in Tucupita, Delta Amacuro; Venezuela\nhttps://x.com/eduardomenoni/status/1818177215206457638\n\nIn Charallave, Miranda state, Venezuela; Venezuelans protest at this time of the morning in front of the mayor's office\nhttps://x.com/eduardomenoni/status/1818169012448002094\n\nIn Maturín, Venezuela near Ayacucho square, Venezuelan youths confront Maduro's national guard who have been sent to suppress massive protests against Maduro's electoral fraud\nhttps://x.com/eduardomenoni/status/1818148945270317213\n\nThe genocidal regime of Nicolás Maduro shot and killed a young man who was demonstrating in the streets. Maduro uses his paramilitary groups and the National Guard to massacre the people of Venezuela.\nhttps://x.com/eduardomenoni/status/1818141848117882920\n\nHenchmen of Nicolás Maduro's dictatorship murdered a young man near the IVSS in Antímano, Caracas.\nhttps://x.com/eduardomenoni/status/1818181579811795134\n\n\nProtests in Gran Roque, the main island of the Los Roques archipelago, against the results given by the CNE: “I don't want a bonus, I don't want CLAP,” they chant.\nhttps://x.com/TonyFrangieM/status/1818122389051372027\n\nThis symbolic act is really the most important of all that is happening in Venezuela, getting rid of Chavez.\nhttps://x.com/luisalfredopolo/status/1818328156102607098\n\nYoung Venezuelans terrorized by the colectivos (hitmen) of the Dictator Maduro\nhttps://x.com/valdes_meylin/status/1818269426732646774\n\nNeighbors threw stones at police and did not allow them to take away a young man.\nhttps://x.com/diloatodos/status/1818284686273298670\n\nThere is hardly a single statue of Hugo Chavez left standing in all of Venezuela. Venezuela is fighting for its second independence, overthrowing the murderous regime of Nicolas Maduro.\nhttps://x.com/eduardomenoni/status/1818268697544302657\n\nThis is the state of the #UN headquarters in #Caracas in support of the call made by Edmundo González and María Corina Machado.\n![](https://m.stacker.news/42568)\n\nThousands of Venezuelans come out to support the citizens' assembly chaired by María Corina Machado\nhttps://x.com/eduardomenoni/status/1818353124635295848\n\nNayib Bukele attacks Nicolás Maduro:\n\n“Maduro has to pay. It is a genocidal, fraudulent, illegitimate, shameless and anti-democratic regime.”\nhttps://x.com/Edgar___es/status/1818029665208213517\n\nTeques, Miranda state. Repression against protesters by the henchmen of the satrap\nhttps://x.com/VVperiodistas_/status/1818102820786024852\n\nDictator Nicolás Maduro has sent his political police to kidnap polling station witnesses for the simple reason of doing their job\nhttps://x.com/EmmaRincon/status/1818330517189579161\n\nOverthrowing Nicolasito Maduro's witchcraft\nhttps://x.com/pueblo_hnos/status/1818303987923185674\n\nAntímano/Caracas\nhttps://x.com/brigitte343/status/1818312668933152993\n\n“Venezuela does not have a president, it has a criminal who illegally occupies the presidency of the Republic.”\n\nThese were the words of Senator Javier Garcia\nduring an extraordinary session in the Senate of Uruguay.\nhttps://x.com/UHN_Plus/status/1818319086020862384\n\nspontaneous demonstrations this Tuesday in Caracas, capital of Venezuela.\nhttps://x.com/UHN_Plus/status/1818283699059958194\n\nThe statue of Chávez in #NuevaEsparta was guarded at dawn. \n\nTo the uniformed men: defend that piece of concrete while in the streets, the young people fight for the freedom of their children.\n![](https://m.stacker.news/42584)\n\n![](https://m.stacker.news/42569)\n\nCorpoelec officials have just cut off the electricity supply to the Argentine embassy in Caracas, where the six asylum seekers from María Corina Machado and Edmundo González's team are staying.\n![](https://m.stacker.news/42574)\n\nThe OEA warns and condemns dictator Nicolás Maduro for stealing the elections in Venezuela and committing massive electoral fraud.\n![](https://m.stacker.news/42585)\n\nAfter calling for a transparent count yesterday, the left-wing Carter Center in the United States cancels its preliminary report and its press conference today and begins to withdraw all its personnel from Venezuela in rejection of the FRAUD of the tyrant Nicolás Maduro.\n![](https://m.stacker.news/42575)\n\nThe murderous tyrant Nicolás Maduro is persecuting Venezuelan journalist and content creator Deivis Correa for showing the protests on January 23 in Caracas. Deivis had to take shelter outside Caracas and pause his networks due to the threat of the dictatorship\nhttps://x.com/eduardomenoni/status/1818280533736194389\n\nThe National Guard and the police rebel against Nicolás Maduro, stopping their repression of Venezuelan protesters and allowing them to tear down a billboard with the image of the tyrant Maduro and Hugo Chávez.\nhttps://x.com/eduardomenoni/status/1818139943794786451\n\nIn Mérida, Venezuela, anti-Maduro protesters are being persecuted by police and groups of paramilitary groups of the Maduro regime.\nhttps://x.com/eduardomenoni/status/1818130115856933162\n\nMore posters of dictator Nicolás Maduro are torn down and burned in Venezuela in protest against the Chavista dictatorship.\nhttps://x.com/eduardomenoni/status/1818110680140025938\n\nAnother statue of tyrant Hugo Chavez falls, this time in Los Teques, Miranda state.\nhttps://x.com/eduardomenoni/status/1818109817522729204\n\nThe Maduro dictatorship is ordering the killing of unarmed protesters. This young man known as "Pimpina" died fighting for the freedom of Venezuela in Carapita, Antimano.\n![](https://m.stacker.news/42579)\n\nProtesters tear down another statue of Hugo Chavez, this time in Guarataro, Bolivar state.\n\nAccording to estimates, eight statues have been torn down in the last 24 hours.\nhttps://x.com/OrlvndoA/status/1818306161705119910\n\n"They have just closed flights to Panama and the Dominican Republic, the 2 most important stopover points for Venezuela, they are isolating us"\n\nTHREAD OF MISSING PERSONS, VICTIMS, DETAINEES\nhttps://x.com/syvaltid/status/1818111271453053246\n![](https://m.stacker.news/42587)\n\n \N 15075 \N 133219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.98172834200194 0 \N \N f 0 \N 0 76454532 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 128196 2024-02-17 12:55:44.174 2025-03-29 22:39:47.612 My Linux Story So Far: Coming Full Circle \nI started this as a comment on @felipe's post "[What is your story with Linux? Me first:](https://stacker.news/items/449878)" but decided it was getting a bit long.\n\n## How it Began\n\nIt started on my first day at my first job in tech. I was working part time and being trained by a retired IT guy that had built the computers and set up the servers I was going to manage. He showed my my workstation which was running some Linux distro. I knew nothing about Linux at the time and I don't recall which distro it was. I am pretty sure it was using KDE though. He just called it Linux. At the time I was using OS X (now called Mac OS). I didn't dive into Linux at all. I only used it when I had to use it.\n\nFast forward a few years and our team was tasked with launching a set of web sites and I needed to set up servers for hosting them. I had never done this before. I hired a consultant to help me evaluate and do the work. He was a Linux guy, and also a Vim user and regularly encouraged me to dive into Vim. I'm still grateful for that. He was a [Debian](https://www.debian.org/) fan but due to my limited knowledge of Linux and upper management's desire for support we went with [Red Hat Enterprise Linux (RHEL)](https://www.redhat.com/en/technologies/linux-platforms/enterprise-linux). What is funny is I now work at Red Hat. I started learning more and more about Linux servers as I ran them. I set up many Debian servers and have been using Linux on the server ever since. I still default to Debian when I need to set up a server. I know it best. Over the years hosting web sites for myself and others has taught me quite a bit about Linux but that is only the first part.\n\n## The Year of the Linux Desktop\n \nIn 2020 I started working at Red Hat. I stayed on MacOS but over the years I had started to tire of Apple's neglect of their operating system, their increased focus on iOS and making MacOS more like iOS. I wanted to do things that MacOS just couldn't do. My job required a lot of use of Docker and MacOS at the time was painfully bad at running Docker Desktop. In 2021 I'd finally had it with their hardware as well and decided to try to make a go all in using Linux on the desktop. After all I now worked at a Linux company and had many co-workers that used Linux as their main OS.\n\nI did my research and decided to go with [Fedora](https://fedoraproject.org/) since I like the desktop environment. I later learned that DE is not a great reason to choose a distro. But, all and all Fedora has been solid and I haven't been tempted to go back to MacOS. I bought an early [Framework](https://frame.work) laptops and soon after requested a company issued Thinkpad. I installed Fedora on both and haven't looked back.\n\nI've tried Arch but its never stuck as my daily driver. I still use it on an old Thinkpad from time to time. I'm planning to try NixOS soon. I've also tried to use a couple tiling window managers but just haven't been able to make the jump yet. I think that's where I will land as I have used [Tmux](https://github.com/tmux/tmux) for my development work for 10+ years now and I like the UX. Linux has an amazing ecosystem and there's so much you can do with it. I now recommend anyone getting into programming or working in IT start using it as their main workstation. I wish I had done it much sooner. Thankfully there was a lot of knowledge I gained using MacOS that transferred to Linux since they share the same origin but there is no substitute for Linux.\n \N 19826 \N 128196 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 22.6730587514866 0 \N \N f 0 \N 0 26932162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 197580 2024-07-10 05:36:19.164 2025-03-29 22:39:47.612 Earn bitcoin for your work - Plebwork Cool to see. Anyone tried it or looked into it? https://www.plebwork.com/ 21418 \N 197580 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.7106228015816 0 \N \N f 0 \N 0 184249491 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 156518 2024-04-11 22:36:02.93 2025-03-29 22:39:47.612 Happy Easter Everyone! 🌱🐣🐇💐 Last years 2023 thread: https://stacker.news/items/162435\n\n2022 thread: https://stacker.news/items/20545 \N 4083 \N 156518 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.0032743167442 0 \N \N f 0 \N 0 159162115 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 199133 2024-07-13 12:28:50.741 2025-03-29 22:39:47.612 Reflections on "The Importance of the Pain of Consequences" During Hurricane As a long time SN user, I get notifications that some old nostalgic posts of mine got zapped recently. So of course, the [The Importance of the Pain of Consequences](https://stacker.news/items/86764) was recently zapped and since I'm in a group chat with Bitcoin veterans actively coordinating Hurricane relief donations and discussing strategies for assisting (of course all of my suggestions are about computers like Mestastic devices and OSMand~ offline maps or getting weather satellite data directly from the satellite) I thought I'd make a quick follow up to that post.\n\n# Consequences\n\nFirst and foremost, that post was mostly about the aftereffects of a hurricane. "How do we rebuild homes" vs "How do build homes that survive". Seeing the coverage of the real hurricane, the consequences are even worse than what was presented. The problem with not preparing and only talking about how your house won't make it pales in comparison to the real consequences. You can't worry about your home being destroyed, if you aren't alive in the first place. \n\nSo of course the entire premise of disaster being a learning lesson doesn't work very well if you're dead. \n\nhttps://xcancel.com/bill_stebbinsjr/status/1841615162106610040\n\n>"This entire area is a war zone, even if not directly “destroyed” by flood waters. There are men, women and children starving, without water and sanitation. No fuel. People can’t get to any distro points because they have no fuel. People are walking on foot and dragging wagons . . .\n\n>The majority of federal and state assets are being diverted to the incorporated areas of Asheville, Black Mtn, etc. and without a deliberate effort yet into the rural unincorporated areas.\n\n>People are suffering, and communities are rapidly moving to isolation and self-defense and policing.\n\n>There are bodies floating down the rivers. There are bodies stuck in the tops of trees.\n\n# Normalcy Bias\n\nhttps://en.wikipedia.org/wiki/Normalcy_bias\n\n>Normalcy bias, or normality bias, is a cognitive bias which leads people to disbelieve or minimize threat warnings.[1] Consequently, individuals underestimate the likelihood of a disaster, when it might affect them, and its potential adverse effects.[2] The normalcy bias causes many people to prepare inadequately for natural disasters, market crashes, and calamities caused by human error. About 80% of people reportedly display normalcy bias during a disaster.[3]\n\nHere's what I do know, most people underestimate the probability of a natural disaster, and a few people are very prepared or overly prepared (especially for things that are less likely to happen than natural disasters lol)\n\nThe current "prepper" culture has resulted in this effect (This is back to that tweet from earlier)\n>Desperation is increasing, and most vets are lying on their roofs with rifles. Local rural gas stations, markets etc have clear militias forming with men in hodge podge gear and rifles patrolling. We are self-policing now.\n\nWe can do better than this. We can prepare our communities. Go talk your local city council into having better preparedness if you feel that's the way to do it, or just like talk to your neighbors about how you would get through something like this together. The every person for themselves mentality not even the best outcome for yourself. \n\nAnd hey, you know what, if you want to think about this from a money perspective, stock up on supplies with the intention to sell during a natural disaster to the people who didn't prepare lol (Look its a better outcome than shooting them!)\n\n# The Response\n\nhttps://primal.net/e/note1yhlzfa2twvu9z3wm3hu29gu03u0l7vmrtfk2ty2e5c8y2393sh5qtrqhxe\n\nI keep going back to this idea that a Bitcoin standard will result in more polity than democracy, more charitable efforts rather than fighting each day to survive on your own. Maybe that's a bias caused by the people I choose to surround myself with, but its also the best way (imo) for a deflationary economy to work. The old money funds the new prospects out of desire to see humanity build in a greater visionary direction. Its difficult to be convincing that this will be the case though, because there seems to be so little evidence of it and so much more evidence of the opposite right?\n\nIn the same way, if I had responded at the time to that old post asking how we would do hurricane relief on a Bitcoin standard, that we would just have charities instead, I think it would have been a very weak argument for the same reasons. With Bitcoin Veterans, I now have evidence of course of that being the case. People from so many skillsets are coming together to figure this out.\n\nHere's why I think this happens. Why I believe people do end up being selfless and it may also explain why other people are selfish:\n\n![](https://m.stacker.news/55812.png)\n\nMoslow's Hierarchy of Needs. A classic. I believe that as people achieve self actualization, they tend to focus more and more of their life on helping others. I believe that the fiat standard keeps people at the lower levels where selfishness is necessary for survival. Whereas I believe a Bitcoin standard allows people to reach self-actualization and those people then lift up the others around them and that there is a real material benefit when they do so. It reinforces their esteem and their feeling of love and belonging. \n\nOnly time will tell of course. \N 17157 \N 199133 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.8293028700871 0 \N \N f 0 \N 0 169487513 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 205199 2024-07-25 01:05:46.556 2025-03-29 22:39:47.612 Tips and Tricks on Using Blink Wallet ⚡️ I'm planning to do a series of LN App reviews and share some tips and tricks I've found on using each, and hopefully learn more from humble stackers:) \n\nThis series starts with [Blink Wallet](https://www.blink.sv/). I chose it to be the first because it's easy for everyone to start and have a glimpse of how LN works, but this is only the first baby step, as there is much to be explored.\n\nhttps://imgprxy.stacker.news/amfXzvgdrxXD01NGD5Ty9qzrPSheCGG5o2JKtB1a_rE/rs:fit:2560:1440/aHR0cHM6Ly9pLnBvc3RpbWcuY2MveXhOVDJCZ2ovd2FsbGV0LXN0YWlycy5qcGc\n\nmeme from @DarthCoin\n\nYes, I heard you: it's a custodial wallet, but it also has its own usefulness - learning how to make use of each is the way.\n\n### **Blink wallet ⚡️**\n\n**Features**\n\n- Open-source and non-KYC\n\nThis is the first filter when it comes to choosing any Bitcoin wallets, do your best to avoid any close source or even KYC ones.\n\n- Low fee\n\nThere is no fee sending between Blink users, and it's a relatively low (starting) cost compared with non-custodial wallets.\n\n- LN address available\n\nIt works like an email address, but people can send you sats with this address. It *says the LN address can't be changed*, but you can always empty the wallet, uninstall and redownload it again and choose any LN address you'd like.\n\n- Built-in BTC map\n\nIt shows where you can support BTC business and spend sats, which is useful if you are trying to live in Bitcoin Standard.\n\n- Export transactions as CSV\n- Supported NFC cards\n\n**Downsides**\n\nNothing is perfect, knowing what to avoid is the key: \n\n- Need to link a number to register\n\nMost people might be okay with this, or they use a virtual number, but I don't bother registering it, because the trial account is enough for me and I only keep enough sats to cover a few meals there.\n\n- Stablesats\n\nThis easily leads to confusion, especially for newbies - I personally ignore this.\n\n- Built-in Circles\n\n> Circles grow when a new Blink user receives their first sats from another Blink user; You have two main stats in circles: Inner Circle, Outer Circle. \n\n> **Inner Circle:** This number represents the number of people you have welcomed (the Blink users who received their first sats from you)\n\n> **Outer Circle:** People welcomed by those connected to you and your circles. If somebody in your inner circle welcomes a new Blink user, they will be added to your outer circle. And on, and on! \n\nSaving all Blink addresses you have interacted with and quickly sending them sats anytime - It's convenient, but part of me doesn't like this: not only does it feel like taking away my freedom to change the LN address, but it also feels like being tracked as your circle grows? it would be nice if having the option to opt out of circles.\n\n#### **How to Create Your Wallet**\n\n1. Download and install the Blink Wallet.\n\n*"Blink is unavailable in some countries' app stores, including the US"*, For those having trouble downloading it, either change the store location or download APK from Github.\n\n2. Create a new account or start with a trial account.\n\nIf you choose Create New Account, it will prompt you to register with a number, ** I recommend starting with a trial account** because you can always upgrade it in the future if you see the need for it, but let's look at the benefits of upgrading to see if it is worth it? \n\n*a. Back up your funds*\n\nNot your key, not your coins, since it's a custodial wallet, so the sats there are not really yours - do aware of the risk, better only put a small amount of sats there, not your life savings.\n\n*b. Increasing your transaction limits*\n\nThe trial account daily limit is actually quite good, I'm quoting directly from Blink: \n\n*withdraw $125; Send to blink user $125; Stablesat: $2000*\n\nThere were times when I exceeded the daily limit sending to other Blink users, so I sent the sats to another wallet and then sent from there to the Blink user - **so it's about $ 250 daily limit without registering the account and don't touch the Stablesat**.\n\n*c. Receive Bitcoin Onchian*\n\n**Note that this has a fee to receive Onchain: 5,000 sats fee for deposits lower than 1,000,000 sats**; I prefer using another wallets for these small on-chain funds, e.g. Blue Wallet.\n\nJudge for yourself if the trial account is enough or not 👀\n\n3. Set it into your own language and currency for better understanding.\n\n#### **How to Delete Your Account?**\n\n1. Empty the wallet by sending out all the sats\n2. Click the icon on the top right - account - delete account\n\nDone, then you can recreate a new wallet with a new LN address.\n\n#### **Some Fun to Explore**\n\n1. Get some sats to do the test. \n\nBuy or earn some sats or use the [tools](https://stacker.news/items/333907) to swap some BTC from any Onchain wallets if you have, then click receive and create an invoice in Blink to receive some sats to test around.\n\n2. Set your own LN address.\n\nChoose wisely, and avoid having anything to do with your fiat identity because other users can see this name.\n\n3. Try to send and receive sats in different ways, you can set the amounts too.\n\n -using LN addresses \n -using an LN invoice, which expires in a day, it's pretty handy if you use it to receive swaps.\n -using built-in contacts\n\n4. Check what Bitcoin Businesses around you and support them!\n\n#### **The Art of Using Blink**\n\n- Blink wallet is a custodial wallet, so you should only keep a small amount of sats there.\n- Using the trial account is enough - avoid linking any number or mail to any Bitcoin wallets.\n- It can be a good tool for receiving sats from [swapping](https://stacker.news/items/333907) tools.\n - without exposing any personal node IDs this way\n - without worrying about any route, whether there is enough inbound liquidity or online or not\n\n- Use it as a burner wallet, wipe it whenever you feel like to.\n\nIt is super easy to empty the wallet in Blink, unlike any of the other custodial wallets; for example, Alby or WOS both require keeping 1% of the sats in the wallet to cover the fee; But I'm curious how much do the Blink team know if I don't register the account, and only use it a few times and then delete, uninstall and reinstall it? 🤔 @agbegin\n\n### **For Merchants**\n\nIf you are a merchant, I've written one more detailed article to guide you on how to make use of the power features in Blink:\n\n[Maybe All you need is to Ask - Do you Accept Bitcoin? ⚡️ ( Part II )](https://stacker.news/items/300593)\n\n#### **How to Create a Merchant Wallet**\n\n1. Download and install the Blink Wallet.\n\n*For those having trouble downloading it, "Blink is unavailable in some countries' app stores, including the US" Either change the store location or download APK from Github.\n\n2. Create a new account or start with a trial account.\n\nIf you choose to Create a New Account, it will prompt you to register with a number; considering restaurants receive larger amounts of sats, it might be better to use a number to register it, but then again, I recommend using a trial account to start, because you can always upgrade it later if you see the need.\n\n3. Set the Blink address. \n\nSet it as your shop's name for easy remembering. \n\n4. Set it into your own language and currency for better understanding.\n\nDone and have fun receiving sats from customers, and there are different ways to make use of Blink as a merchant:\n\n**For In-person dining customers**\n\n- Print out a QR code on site so people can scan and pay.\n\nClick the icon in the top right corner - ways to get pay - your pay code, print and display in the shop.\n\n- Lightning cash register: staff can charge payments without the owner being on-site while keeping the funds safe.\n\nClick the icon in the top right corner - ways to get pay - your Lightning cash register - open the link - input the bill amount - create - customers scan and pay.\n\n![blink.png](https://m.stacker.news/7014)\n\n**For Online ordering customers**\n\n- Sending invoices \n\nClick receive - set amount - send this invoice to customers. \n\n- Sending LN address \n\nSend the LN address to customers, and repeated customers can later send payments directly in the Blink circles, quite handy this way.\n\n⚡️\n\nBlink is a really simple wallet to start testing with LN Fun:) **Feel free to point out what I missed or if you discovered other cool hacks while using Blink.** 👀\n \N 11621 \N 205199 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.3155224202622 0 \N \N f 0 \N 0 238091459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 220950 2024-08-26 05:07:42.122 2025-03-29 22:39:47.613 LNMarkets Tops $2 Billion of Trading Volume LNMarkets trading volume is looking very strong, wouldn’t be surprised if they were the most profitable company in the Lightning ecosystem right now.\n\nhttps://pbs.twimg.com/media/GEcR1YSW8AAfx7j?format=png&name=900x900 \N 19333 \N 220950 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.3561106442107 0 \N \N f 0 \N 0 188271372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 205637 2024-07-25 21:43:30.844 2025-03-29 22:39:47.613 Ordinals are a Fiat Scam The past two years have seen a flurry of productive activity in the Bitcoin space. Taproot has brought in lots of new interesting possibilities from Schnorr Signatures enabling smaller on-chain lightning channel transactions to TapScript Merkle Trees bringing the innovative way to prove the execution of a program through BitVM. These are truly new and novel things in Bitcoin and they have been genuinely good for the Bitcoin ecosystem.\n\nBut that's not the full story of the last two years in Bitcoin, and as much as I'd love to write about the actual innovation, I have to deal with the fake, stupid, immoral and fiat scam that is ordinals. It's not a job that I enjoy, but given the asymmetry of the arguments, one side that's incentivized to pump it against an unfunded debunkers who talk about it objectively, there's some much-needed cold water that needs to be poured on their prospects and I'm here to deliver.\n\nFor most normal people, the idea of NFTs, unique digital property seems pretty dumb on its face. Whether it's a jpeg or a short video clip or whatever, they rightly ask after having the whole concept explained to them, "wait, that's it? I'm not missing something here?" I've written about them in the past, how they're a vehicle for scams in much the same way altcoins are. I'd go so far as to call NFTs altcoins, as they're an alternative and the T in NFT marks them as a coin. What's especially confusing for normies is this concept of a bitcoin NFT or ordinals. Does that mean that somehow it's better or purer than the ones on Ethereum or Solana? They're not, but we're getting ahead of ourselves. Let's start at the beginning.\n\n## Trolls Gonna Troll\n\nThe whole "fad" started with Rod Armor, who inscribed a skull in using the witness discount in late 2022. It wasn't really even noticed by the network as it was a mere 793 bytes, well within the normal range of transaction sizes.\n\nWhat really got it going was Taproot Wizards group, who are a disaffected group of "former" Bitcoin Maximalists that wanted revenge after getting humiliated supporting a whole bunch of affinity scams like BlockFi, Celsius and of course, FTX. Their intent wasn't to create a new asset class, they realized that inscriptions were the perfect vehicle to fill certain blocks with noise for the sake of making Bitcoiners angry. So they inscribed a 4MB jpeg in early 2023 and a new market to make Bitcoin Maximalists angry began, which by August 2023 was an insane 21 million inscriptions on the Bitcoin blockchain. Though the rhetoric now is that inscriptions were some sort of new thing being "built on Bitcoin," nobody really noticed until this very obvious and continuous troll.\n\nAlso in early 2023, ordinals began, and given that there were a lot of degenerate altcoiners that would buy and sell pretty much anything, what got attention as a troll quickly pivoted to a business. BRC-20 tokens started soon after and stamps not much longer after that. Trading activity picked up and soon, they traded in various exchanges. And these trolls have definitely made some money, especially from VCs who are all too willing to sacrifice their Bitcoin bona-fides for the prospect of some ROI.\nThe troll put on a business suit and began arguing with Bitcoiners that they were a legitimate part of the Bitcoin ecosystem.\n\n## Ordinals, the argument\n\nAsk any ordinals supporter why they think ordinals are good for Bitcoin and they immediately change the topic to "rights" and "you can't stop it" and so on. Instead of telling Bitcoiners what they bring to the table, they focus on why the protocol doesn't stop them. Like shop lifters in San Francisco, they don't bring anything good to the table, so they focus the discussion on how there's nobody that's going to stop them from doing what they want. But of course, just because you can do something doesn't mean you should. To paraphrase Chris Rock, you can drive with your feet, but that doesn't make it a good idea.\n\nIn other words, they don't have a good answer. They have bad ones, though, if you press them. Somehow it supports miners by giving them money. Or it undermines other altcoin launching platforms. Or making Bitcoin "fun." All these are very weak arguments and they don't talk about how their projects change the incentives or undermine the monetary use-case, which is why they don't make them that often. The discussion they want to have is that they "can" inscribe or put ordinals or stamps on the Bitcoin blockchain, which as stated above is confusing could and should.\n\n## Why Are They on Bitcoin?\n\nMy gripe with NFTs in general have been that there's no technical reason for them to be on a blockchain. They're already clearly centralized. They have an issuer. You can't look at the ordinal without some other software which decides what it represents. Some other trusted entity decides whether you have the ordinal or not. If they change the rules in the future and you get the short end of the stick? Tough luck for you. They're no different in centralization than the run-of-the-mill forgotten altcoin from 2011.\n\nSo if they're centralized, why are they on a blockchain? A blockchain is a horribly cumbersome database to hold digital data. It's hard to develop, hard to scale, costly to maintain, and difficult to upgrade because they're voluntary. So from a purely technical point of view, a centralized project on any blockchain, let alone the decentralized one in Bitcoin, doesn't make any sense. It's much easier, faster, cheaper and more maintainable in a centralized database.\n\nTechnically speaking, a centralized project becomes more difficult in every way on the Bitcoin blockchain.\n\nSo what's the real reason why ordinals are on the Bitcoin blockchain? Because there's a large market of people to market to. Because it's easy to hype by associating it with Bitcoin's historical success. Bitcoin represents, hope, freedom, self-sovereignty, sound money, and a better world. It's an amazing thing and to even be slightly associated with it, as altcoins have over the past 13 years. But altcoins have a long history of going comatose, so ordinals are the new argument, a new way to sell old, outdated, failed ideas. In other words, ordinals are on Bitcoin because it's a new way to scam a market that has wised up a bit.\n\n## Anticipating the VC-funded Responses\n\nNow the ordinals people will undoubtedly make excuses for why it needs to be on Bitcoin. You can't manipulate it! It's less work and requires real payments! Both of which are true. Bitcoin is secured by proof-of-work and that means anything embedded in it requires astronomical amounts of hashing power to change. But you don't need to use Bitcoin to do that. There are timestamp servers and receipts and backup services all of which are way cheaper and provide the same service without bloating the Bitcoin blockchain. And Bitcoin's blockchain is no real protection. You have to use other software to figure out whether you own an ordinal or an inscription or whatever. That software can change the rules anytime they want, just like any altcoin software. And these things aren't generally backwards compatible. So if you're running something old? You're not following the centralized "consensus."\n\nOrdinals, like NFTs and really every altcoin, are a glorified spreadsheet that can just as easily be run on a $500 website while providing cryptographic proof that it hasn't been manipulated. Again, the only reason ordinals are on Bitcoin is to create more demand through marketing it as something that "helps" Bitcoin, which is like saying that spam helps email adoption.\n\n## Conclusion\n\nFor many years, altcoins have ridden the coattails of Bitcoin to scam lots of people. It's getting harder to scam the same people and indeed there are currently only two paths left. There's the post-modern nihilistic tactics most fully realized in memecoins. Altcoins no longer purport to have real-world utility anymore. That ship sailed back in 2019. They are forced to go to memecoins because the market doesn't appreciate being lied to. Memecoins have no utility, no disruption of any industry, no innovation and no prospects, but at least they're honest about it.\n\nThe other way is to associate closer with Bitcoin than altcoins have been. It's not enough to be a "cryptocurrency" anymore, to affinity scam now, you have to pretend you're a Bitcoin Maximalist. \n\nThe actual technical reality of these projects is not new. Colored coins were live back in 2013, as were MasterCoin and Counterparty. But the cultural pivot is. Ordinals, inscriptions, BRC-20, stamps are all trying to clothe themselves with Bitcoin so the general public associates the benefits of Bitcoin with these projects. But of course, the values of these projects are antithetical to Bitcoin. There's no self-sovereignty, financial freedom, decentralization or really any hope for the future in these projects, just straight gambling. So they borrow the good values as much as they can from Bitcoin.\n\nFiat in English literally means creating something by decree. And these new types of altcoins are fiat in that strict sense. They're decrees by a centralized authority masquerading as a decentralized project by associating with Bitcoin.\n\nMeet the new altcoins. Same as the old altcoins. \N 630 \N 205637 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.837218355705858 0 \N \N f 0 \N 0 138932750 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 213308 2024-08-11 13:19:43.454 2025-03-29 22:39:47.901 Paul Sztorc on Activating Drivechains via CUSF (Bitcoin Takeover S15 E68) \N https://youtube.com/live/p2zXzG9-abc?feature=share 14280 \N 213308 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.5406904086068 0 \N \N f 0 \N 0 40526714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 208684 2024-07-31 19:32:07.693 2025-03-29 22:39:47.901 SN Saturday Newsletter 4/27/24 Happy Sat-urday Stackers,\n\nOooooooooooooommmmmmmm!\n\n##### Top Posts\n1. [Samourai Wallet Founder Arrested for Money Laundering](https://stacker.news/items/517368)\n - Whirlpool coinjoin client and coordinator founders are charged with money laundering and unlicensed money transmission despite Samouri being non-custodial.\n - 11.3k sats \\ 101 comments \\ [@Se7enZ](https://stacker.news/Se7enZ)\n2. [How would you plan an extended backpacking trip?](https://stacker.news/items/514488)\n - [@Fabs](https://stacker.news/Fabs) plans for a two week backpacking trip, but doesn't have a lot of experience. Experienced backpackers chime in with advice.\n - 5.6k sats \\ 82 comments \\ [@Fabs](https://stacker.news/Fabs)\n3. [Anonymous vs Public Bitcoiners](https://stacker.news/items/516750)\n - The cost of switching from your real name to a pseudonym are small and it can save you a lot of grief. [@TresDMan](https://stacker.news/TresDMan) asks for help in the context of professional reputation.\n - 5.6k sats \\ 33 comments \\ [@TresDMan](https://stacker.news/TresDMan)\n4. [Views on religion](https://stacker.news/items/514675)\n - Religions are like souls, they're all different. :) [@nout](https://stacker.news/nout) asks stackers for their views on religion.\n - 3k sats \\ 53 comments \\ [@nout](https://stacker.news/nout)\n5. [An app can be a home-cooked meal -- Robin Sloan on coding for yourself](https://stacker.news/items/513787)\n - Read this article and relearn the joy of making things for yourself.\n - 4.7k sats \\ 12 comments \\ [@StillStackinAfterAllTheseYears](https://stacker.news/StillStackinAfterAllTheseYears)\n\n##### Top AMAs\n- [@BitcoinBrains aka Dave Bradley AMA. Bitcoin Rodeo, Bull Bitcoin, Bitcoin Well](https://stacker.news/items/515858)\n - 8.4k sats \\ 67 comments \\ [@BitcoinRodeo](https://stacker.news/BitcoinRodeo)\n- [How to build community through #Beef & #Bitcoin - Modern-day Cattleman Style](https://stacker.news/items/519934)\n - 10.6k sats \\ 16 comments \\ [@modernTman](https://stacker.news/modernTman)\n\n##### Don't miss\n- [What does your perfect work day look like? ](https://stacker.news/items/514290)\n- [This Poor town in Peru is adopting bitcoin](https://stacker.news/items/516207)\n- [Open Source Justice Manifesto](https://stacker.news/items/516897)\n- [FBI warns all Americans to stop using KYC-free bitcoin services](https://stacker.news/items/518940)\n- [War bonds as a last resort](https://stacker.news/items/515441)\n- [OpenSats Receives $1,000,000 Donation From The Reynolds Foundation](https://stacker.news/items/514957)\n- [lnd v0.17.5-beta released (with support for Bitcoin Core v27)](https://stacker.news/items/515250)\n- [El Salvador: group of hackers publishes Chivo wallet ATM code](https://stacker.news/items/515483)\n- [Fund a Bitcoin Ranch via Geyser Crowdfunding](https://stacker.news/items/515325)\n- [Sunday Survey: What were you doing at halving block 840,000?](https://stacker.news/items/513431)\n- [Is there a good overview of who on the internet knows what?](https://stacker.news/items/518283)\n- [IMF says Bitcoin has become necessary financial tool for preserving wealth](https://stacker.news/items/513000)\n- [Ancient texts, 3000 years old - verifying their gold, and being disappointed.](https://stacker.news/items/514080)\n- [Sustainable Profit Taking on Stacker News](https://stacker.news/items/514686)\n- [Latest updates: 3nm chip headed to the foundry, our new mining system, and more](https://stacker.news/items/515892)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Sustainable Profit Taking on Stacker News](https://stacker.news/items/514686)\n- [shreddit: Delete your Reddit data](https://stacker.news/items/516289)\n- [SN release: LNC attached wallet, 100k wallet limit, search bookmarks, more](https://stacker.news/items/520971)\n- [Ideal Posting Mentality on Stacker News](https://stacker.news/items/516754)\n- [Stacker News Live #117: The Whistle's Blowing with Super Testnet](https://stacker.news/items/520431)\n- [PSA: Bull Bitcoin Co-Founder Dave Bradley is hosting an AMA at 12pm ET today](https://stacker.news/items/515788)\n- [PSA: Wallet limits apply to Nostr Zaps](https://stacker.news/items/521213)\n- [Debates on SN](https://stacker.news/items/516312)\n\n\n-------\n\n##### Top Monday meme \\ 25.2k sats \\ [@davidw](https://stacker.news/davidw)\n![](https://imgprxy.stacker.news/h-jzK3pmBlofxnfoX-9fGz8T3aNiWbQpo9fDOICTDj4/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yNzYzOA)\n\n[**all monday memes**](https://stacker.news/items/514300)\n\n------\n\n##### Top Stackers\n1. [@davidw](https://stacker.news/davidw): 61.1k sats stacked\n2. [@DarthCoin](https://stacker.news/DarthCoin): 29.6k sats stacked\n3. [@Rsync25](https://stacker.news/Rsync25): 27.8k sats stacked\n4. [@grayruby](https://stacker.news/grayruby): 26.5k sats stacked\n5. [@0xbitcoiner](https://stacker.news/0xbitcoiner): 26.3k sats stacked\n\n------\n\n##### Top Spenders\n1. [@k00b](https://stacker.news/k00b): 128.7k sats spent\n2. [@Undisciplined](https://stacker.news/Undisciplined): 65.1k sats spent\n3. [@Marconius_Solidus](https://stacker.news/Marconius_Solidus): 50.8k sats spent\n4. [@OpenSourceJusticeFoundation](https://stacker.news/OpenSourceJusticeFoundation): 50.1k sats spent\n5. [@TNStacker](https://stacker.news/TNStacker): 36.8k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 335 days\n2. [@kepford](https://stacker.news/kepford): 278 days\n3. [@SatsCats](https://stacker.news/SatsCats): 237 days\n4. [@tnuts420](https://stacker.news/tnuts420): 236 days\n5. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 232 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 17365 \N 208684 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 17.5120006676468 0 \N \N f 0 \N 0 76278608 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 212542 2024-08-09 13:45:09.058 2025-03-29 22:39:47.901 Dopamine Culture This was my first Sunday morning read, and man do I need to just log off and go for a nice walk.\n\nActual title of the link is "State of the Culture 2024," but it's a much deeper and more interesting dive. I think we're all aware of the issues around these things to some small degree or other, but this takes a good long look at how much it's hitting us on every front.\n\n> Here’s where the science gets really ugly. The more addicts rely on these stimuli, the less pleasure they receive. At a certain point, this cycle creates anhedonia—the complete absence of enjoyment in an experience supposedly pursued for pleasure.\n>\n> That seems like a paradox.\n>\n> How can pursuing pleasure lead to less pleasure? But that’s how our brains are wired (perhaps as a protective mechanism). At a certain point, addicts still pursue the stimulus, but more to avoid the pain of dopamine deprivation.\n>\n> People addicted to painkillers have the same experience. Beyond a certain level, opioid dependence actually makes the pain worse.\n\nYeah, getting our dopamine from online shit is less of a problem than taking opioids, in the sense that withdrawal is more possible, but it still messes us up.\n\nWorth reading the whole thing (which is also filled with some good graphics, like this one).\n https://substackcdn.com/image/fetch/w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb2b5af62-fecc-4cc5-8e0e-d43e034317a7_1924x1104.png https://www.honest-broker.com/p/the-state-of-the-culture-2024 11670 \N 212542 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.899755273675 0 \N \N f 0 \N 0 137745620 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 213797 2024-08-12 14:05:39.647 2025-03-29 22:39:47.901 PlebDevs Beginner Backend Series In cased you missed it the legend Damian (aka gudnuf) started a short beginners backend series using TypeScript.\n\nThe first two lessons are out now but keep an eye out for the rest to release over the next few weeks! https://www.youtube.com/playlist?list=PL22m-Ibz1G_SLyIXN06T2hR-RR1cU-mX7 11091 \N 213797 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.46559550978165 0 \N \N f 0 \N 0 219424530 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 209530 2024-08-02 20:13:13.905 2025-03-29 22:39:47.905 Bitkey hardware signing device - Sharing our Recovery Design \N https://bitkey.build/sharing-our-recovery-design 12946 \N 209530 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.0376761211128 0 \N \N f 0 \N 0 156861013 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 209630 2024-08-03 07:13:52.446 2025-03-29 22:39:47.906 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/465878) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 17682 \N 209630 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.0327491135194 0 \N \N f 0 \N 0 156320337 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 215796 2024-08-16 20:50:00.755 2025-03-29 22:39:47.907 Payjoin for a Better Bitcoin Future \N https://brandonlucas.net/articles/bitcoin/payjoin 21222 \N 215796 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9623981543 0 \N \N f 0 \N 0 4778857 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 216342 2024-08-18 00:58:28.6 2025-03-29 22:39:47.908 El Salvador Trip report - 8/8 [Backlink to Part 7](https://stacker.news/items/558439)\n\nI'm very sad to be leaving! It's very energizing to visit El Salvador, where people's lives appear to be quickly improving and everyone is full of optimism.\n\nI had lunch at the hotel restaurant (paid to their Blink account) and took a car for $35 to San Salvador (paid through Blink). You can also take the bus for ~$1. Bus 102A leaves from Sunzal and goes direct to San Salvador via El Tunco. If you are coming from El Zonte you can either take any bus to Sunzal, or go all the way to La Libertad and switch to the 102 there, which departs much more frequently.\n\nI also got to take a final stroll through San Benito and spend some sats.\n\n☕ I went to a coffee shop nearby that is marked on BTCMap. I ask about Bitcoin and I'm told they don't accept it, but as I turn around the shop manager changes her mind and says that I can pay with Strike, asking whether Strike is Bitcoin. I enjoy my desserts, but when it comes to paying I have to help her navigate the Strike wallet, which is surprisingly difficult. Neither of us can figure out how to create a dollar denominated invoice, so I calculate the exchange rate on my phone and she invoices me the sats amount. Not sure she will be accepting Bitcoin again.\n\n🍟 I head back to McDonald's, and ask to pay with "Chivo." It takes a while for the Chivo tablet to appear, and it's some web-based checkout system I hadn't seen before. In Chivo, you can either "receive USD" and optionally convert to BTC, or you can "receive BTC" and optionally convert to USD. Not exactly intuitive. But at least in this web UI switching between onchain addresses and Lightning invoices is much smoother. The receipt contains a prompt to leave feedback in exchange for free chicken nuggets. Maybe somebody will read it.\n\n🏪I go back to the convenience store where I paid successfully with Bitcoin before, but am told that they don't accept it. I end up paying with cash.\n\n🥩 For dinner I end up at an Argentinian restaurant that I found on BTCMaps, but when it comes to paying, I'm told they don't accept Bitcoin after all.\n\n🛫I pay $35 for an airport transfer. It's midnight soon, and there was no traffic or lines at security.\n\n**Conclusion:**\n\nEl Salvador's Bitcoin experiment is in full swing, and whether you consider it a failure or a success depends largely on your expectations. It's been almost exactly three years since Bitcoin became legal tender, and in that time we saw the currency drop and recover rapidly.\n\nI fear a lot of people lost significant money in this bear run and weren't able to hold onto their sats for long enough to see them appreciate in value. Does this experience make it more likely people will spend their Bitcoin in the next cycle, or less likely for them to accept them?\n\nThe Chivo rollout was a bit of a disaster and I fear a lot of goodwill was burned in that process. But the app has matured and can now reliably receive payments. The UI is still not great, but it's navigable and the ATMs are invaluable for Bitcoin in El Salvador. Whenever I came past a Chivo ATM, I saw others use it, which I can't say about Bitcoin ATMs anywhere else in the world.\n\nBitcoin is, for the moment, tourist money. It makes a lot of sense as tourist money, as tourists are used to digital payments and often do not have easy access to cash while on vacation in the tropics. When people from all over the world visit a developing country, payment issues are bound to arise, unless you use Bitcoin. Tourists are big spenders, so whatever tourists have, people will accept.\n\nPlaces that are cash-only tend to not accept Bitcoin, and outside of El Zonte, places that accept Bitcoin almost always also accept cards. It seems that Bitcoin is not as useful for the unbanked as we thought.\n\nCommunities of enthusiasts embedded in the local economy can ensure the success of Bitcoin payments. There's still a lot of hand holding, and anyone involved in wallets and payment providers should be making regular trips to learn how their customers use their products. They should be promoting the businesses that use their product, keep online directories up to date and make sure that these business continue to accept Bitcoin payments.\n\nA wide variety of payment processors feels like a sign of a healthy Bitcoin economy. Bitcoin Beach started with their own wallet (now Blink), but today you can find about half a dozen of wallets and payment processors along the beach. Each business has its own unique needs, and its great to see competition over who serves them best.\n\nWe lack professional integrations of Lightning payments. Contrary to intuition, it's very rare to be able to spend sats online in El Salvador. Whenever a business takes Bitcoin, the process feels separated from the regular business flow. The McDonald's integration is broken, vending machines never accept Bitcoin, and neither do online retailers, airlines or most utility providers.\n\nRegularly spending Bitcoin matters. If we want Bitcoin to become money, we have to treat it as money. The masses will not adopt Bitcoin before Bitcoiners do, so I believe as Bitcoin proponents we have a duty to use it wherever we can and spread it in our communities. For now, people who use Bitcoin are a tiny minority even among Bitcoiners, which already are only a tiny fraction of the population. It only takes a handful of customers every month for a business to keep accepting Bitcoin payments, and in San Salvador, many shops hadn't seen a customer in weeks.\n\nBeyond Bitcoin, there appears to be a big boom in credit cards, payment solutions and other digital wallets. You're guaranteed to see far more advertisement and acceptance for these "fintechs" than for Bitcoin. As El Salvador rises, well-off locals are turning primarily to bank cards, not to Bitcoin.\n\n**Resources:**\n🌐 I heavily depended on [BTCMap](https://btcmap.org/map#10/13.52585/-89.18770) to find businesses that accept Bitcoin. I also made sure that every place I visited was either verified or removed from the map before I went to bed that day.\n\n📌 [Organic Maps](https://organicmaps.app/) is an open source map using the same OpenStreetMap data that BTCMap does. I heavily use the app, and all maps are stored locally on your device so you have them accessible even without internet reception (amazing for hiking). With a bit of finesse you can [export the data from BTCMap](https://maps.mail.ru/osm/tools/overpass/?Q=node%5B'currency%3AXBT'%3Dyes%5D%3B%0Aout%20meta%3B&C=37.71859;62.22656;4&R) using the KMZ file format and import it into your Organic Maps app.\n\n✈️ [Travala](https://www.travala.com/) is great for booking flights and hotels over the Lightning Network.\n\n🇩🇪 [Rooms and apartments for rent in Berlin](https://elsavadorestates.com/) is a useful directory if you want to stay in Berlin.\n\n🏖️ [El Zonte Rentals](https://elzonterentals.com/) is a similar directory for finding homes along the beach. As of right now the site seems to be offline, but I hope it comes back up soon.\n\n🚗 [Bitdriver](https://bitdriver.taxi/) can help you arrange airport transfers, trips to and from the beach or pretty much anywhere. Their drivers were always highly reliable and safe.\n\n**Thank you!**\nI'm very grateful for everyone who accompanied me on parts of trip, thank you Larry, thank you to the wonderful people at the Bitcoin Center Berlin and the Bitcoin Beach Community. You're an inspiration to us all! If anybody would love to experience our own circular Bitcoin economy in Vancouver, BC, please reach out! \N 8284 \N 216342 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.1916123622096 0 \N \N f 0 \N 0 3533526 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 13737 2023-03-26 16:27:06.732 2025-03-29 22:39:47.902 Liquidity on Lightning: Moving from UX to Economix \N https://medium.com/breez-technology/liquidity-on-lightning-moving-from-ux-to-economix-6e597d9e1abd 7425 \N 13737 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2090768261285 0 \N \N f 0 \N 0 42510968 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 13941 2023-03-28 11:51:03.688 2025-03-29 22:39:47.903 Calle: "I've found a way to build Chaumian Ecash mints on Lightning..." \N https://twitter.com/callebtc/status/1767481201030226393 16259 \N 13941 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.4477283796841 0 \N \N f 0 \N 0 238743602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 14014 2023-03-28 18:21:59.329 2025-03-29 22:39:47.904 4% of The Entire Bitcoin Supply is Now Backing US Spot ETFs US spot ETFs are the talk of the town these days, and there's no denying they're a major driver of market liquidity. While I find the topic intriguing, I also have mixed feelings about it.\n\nOn the one hand, it's great to see Bitcoin getting more attention and attracting new investors. However, seeing these colossal numbers also raises concerns about large institutions gaining a significant share of the pie.\n\nI'd love to hear from stackers about the pros and cons of these developments. What are the potential implications for the future that we should be aware of?\n\n![4c3455.png](https://m.stacker.news/19496)\n\n![34c54345.png](https://m.stacker.news/19497) \N 837 \N 14014 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.49469943407819 0 \N \N f 0 \N 0 200631049 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 14059 2023-03-28 19:43:11.379 2025-03-29 22:39:47.909 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/492631) are the updates stackers shared from all their latest work projects. \N 17673 \N 14059 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4992880337443 0 \N \N f 0 \N 0 98095392 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 23862 2023-05-18 02:52:23.21 2025-03-29 22:39:47.909 Why don't you spend your bitcoin? When was the last time you bought something with bitcoin online or in-person? \N 736 \N 23862 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.6578911397574 0 \N \N f 0 \N 0 198580130 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 14885 2023-04-05 03:03:42.667 2025-03-29 22:39:47.909 Mercury Layer test net live Mercury layer client is implemented as both Rust and Nodejs libraries, but also as a standalone command line app. Instructions describe setting up and using the standalone rust client to send testnet coins on mercurylayer.\n\nThe client accesses the mercury key server via Tor. In order connect to the server, the client app requires access to a Tor server via a SOCKS proxy. \n\nAsk any questions... https://twitter.com/TTrevethan/status/1742598092359180579 21104 \N 14885 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.6187926192374 0 \N \N f 0 \N 0 163497650 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 406012 2025-02-17 01:12:03.489 2025-03-29 22:39:50.517 \N In Brazil, where I currently live, the worst thing is the possibility of the government confiscating your money. This was done in the late 1980's with many people's savings.\nUnfortunately, many still believe that the government will continue to be their friend, instead of understanding that it is the biggest problem of all. https://example.com/ 15103 405873 405873.406012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1021431444547 0 \N \N f 103418041 \N 1 76706736 0 f f \N \N \N \N 405873 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 15151 2023-04-06 22:00:57.126 2025-03-29 22:39:47.91 @instagibbs finally coming out of the closet (with symmetric LN impl) \N https://x.com/theinstagibbs/status/1743300510810054760 5703 \N 15151 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.1672992737182 0 \N \N f 0 \N 0 201579581 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 402408 2025-02-13 18:05:21.685 2025-03-29 22:39:50.517 \N Education\n\nNot many understand much about what money is https://example.com/ 7960 402399 402389.402399.402408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.84757138412636 0 \N \N f 209778780 \N 1 221207480 0 f f \N \N \N \N 402389 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 405427 2025-02-16 15:56:05.29 2025-03-29 22:39:47.91 The Bitcoin Scene in New Zealand in 2023 \nInspired by recent articles on the Bitcoin scene in other countries, here's an update on the Bitcoin Scene in New Zealand. Come visit this summer and meet a Kiwi Maxi!\n\nWhat is the Bitcoin scene like in New Zealand? Here’s the definitive summary of Bitcoin in New Zealand in 2023 - Bitcoin adoption, meetups, events, companies, media, personalities and regulation. It’s all here, including a summary of opportunities and headwinds for Bitcoin in Aotearoa, the Land of the Long White Cloud.\n\n# General Info & Economy\n\nIn 2023, New Zealand’s population is around 5.2 million people, which is similar to that of Ireland, Costa Rica or Norway. Compared with major cities around the world, New Zealand has less people than Dallas, Singapore, Fukuoka or Barcelona.\n\n## New Zealand GDP and Economy\n\nThe New Zealand economy is made up of the following main sectors:\n\n- Growing, catching or producing food & drink and sending it overseas\n- Chopping down or digging up stuff and sending it overseas\n- Showing wealthy visitors from overseas around the country and charging them big bucks to jump off bridges, traverse white water rapids or take a photo with a sheep.\n- A few other semi-serious industries like tech, healthcare and education.\n\nIn 2022, New Zealand’s GDP was approximately USD $247 billion, which puts us in the same ballpark as Greece, Peru and Qatar. This comes in at about USD$48,000 per capita, similar to Belgium, Germany and Hong Kong.\n\nFor reference, in 2023 the US has a GDP of USD $25 trillion ($76,000 per capita), the United Kingdom USD $3 trillion ($46,000 per capita), Japan $4.2 trillion ($33,800 per capita) and Australia $1.7 trillion ($64,000 per capita).\n\n[Sourced from our good friends at the World Bank.](https://data.worldbank.org/)\n\n## Debt & Money Supply in New Zealand\n\nAs a modern liberal economy running the Keynesian playbook, even though we’re a small country we’ve got debt coming out our eyeballs.\n\nAt USD $81 billion, New Zealand government debt is moderate (42% of GDP), especially when we compare to the creaking giants of the US (130%) and Japan (250%), we’re at a much more manageable level.\n\nBut like all countries playing the fiat game, we’re increasing that debt fast: in 2013 it was under USD $50 billion. That’s how the fiat game works, inflate the nominal size of the economy with debt backed lending so you can increase the debt without anyone noticing, look ma, it’s only grown 3-4% of GDP and look at all those other basket cases around the world, we’re sweet!\n\nBut when Private Debt is thrown into the mix it gets interesting, New Zealand’s Private Debt (mortgages, student loans, hire purchases, car loans, credit cards) was 140% of GDP in March 2023. This puts us in the top echelon of Private Debt to GDP Ratios.\n\n[Source: CEIC Data](https://www.ceicdata.com/en/indicator/new-zealand/private-debt--of-nominal-gdp)\n\nOur Government is running a deficit of NZD $9.4 billion (USD $5.7 billion) for 2023, over $2 billion more than forecast! I mean seriously, look at the smug look on this guy’s face on the article linked below. This is our previous Finance Muppet on the day he told the country we’ve just added 10% to our national debt in one year but we should be happy, because GDP is up!\n\nhttps://kiwibitcoinguide.org/assets/Uploads/Blogpost-Images/nz-budget-2023-grant-robertson__ResizedImageWzYwMCwzMzdd.jpeg\n*If you could sum up the entire Fiat world in one smug expression, this is what it would look like*\n\n[Source: Interest.co.nz](https://www.interest.co.nz/public-policy/124625/new-zealand-added-9-billion-its-debt-during-year-some-tax-revenue-slowed)\n\nSo we’re living beyond our means, as a country and individual households.\n\n# Inflation in New Zealand\n\nAs Bitcoiners, we all know there are different ways to measure inflation and they are not usually the same metrics the politicians and mainstream news media parade in front of us.\n\n## Consumer Price Inflation (CPI)\n\nPrices are biting in New Zealand, anyone will tell you. The CPI in New Zealand topped out at about 7.3% in mid 2022 and is sitting at around 6% in Q4 2023. But ask anyone, there’s a cost of living crisis here right now, even households with good incomes are feeling it.\n\nFood price inflation is at around 9% for the last 12 months and a whopping 28% over the last 10 years. How does this happen in a food producing nation like New Zealand? Fiat monetary debasement and Keynesian economics, that’s how.\n\n[Source: Statistics New Zealand](https://www.stats.govt.nz/topics/food-price-index)\n\nAs a net importer of petroleum, we’re at the whim of international markets and geo-political macro moves to determine whether or not we get to enjoy the classic Kiwi summer at the beach, and [according to Shanelle here](https://www.stuff.co.nz/business/money/300973014/wont-be-going-to-the-beach-much-this-summer-petrol-price-knocking-on-records), the Kiwi beach summer is off the cards due to high petrol prices.\n\n## House Price Inflation\n\nHouse prices in New Zealand have gone from affordable for a single income family to unaffordable for most of the working population in the last two generations. A combination of an expansionary monetary base and favourable tax treatment for property owners has taken the Kiwi dream out of reach of most now in a few short decades. Nice one Stu! In 1971, the median house in New Zealand cost 4.5 times the median household income. In 2021 it was 12 times and as a result we’re seeing home ownership levels drop, along with all the associated social problems.\n\nMy parents bought a house in 1970 for $10,000, which was the median house price that year. In 2023 that same house would cost you NZD $879,000, representing a 98.9% decrease in purchasing power for your money over that time. \n\nHow did I calculate this? Using a handy calculator generously provided by the New Zealand Government Statistics Department that even calculates the decrease in purchasing power of their own fiat currency. Funded with your tax dollars too, just to rub it in.\n\n[Try it yourself here - calculate how your NZD has lost purchasing power against housing, transport or food etc.](https://www.rbnz.govt.nz/monetary-policy/about-monetary-policy/inflation-calculator)\n\n## New Zealand House Prices in Bitcoin \n\nHouse prices in New Zealand are a joke if you're on the fiat treadmill. It is mathematically impossible now to work in a regular job, save enough for a deposit and pay it off before retirement.\n\nBut if you’re pricing houses in Bitcoin it looks a little different:\n\nhttps://kiwibitcoinguide.org/assets/Uploads/Blogpost-Images/nz-house-prices-bitcoin__ResizedImageWzYwMCwyNzBd.png\n\n## Monetary Inflation in New Zealand\n\nNew Zealand printed a bunch of money in 2020 (NZD $53 billion) to finance Covid handouts, this was about 15% of the M2 supply at the time but our monetary base had been increasing slowly but surely for the last 20 years up to that point anyway. New Zealand was actually the first country in the world to introduce an official inflation target in 1989.\n\nAn analogy I like to use to explain the monetary debasement to Kiwis is that for every $1 you had in 2020 the government just took 15% of its purchasing power away from you without even asking (and probably without you even realizing at the time, but I’ll bet you do now!)\n\nGovernment surpluses are a thing of the past now, (last one was in 2017) we’re running deficits, have low household savings and a trade deficit, so the trends aren’t great. But as we always like to say in New Zealand - it’s not as bad as in many other places.\n\n# Bitcoin Adoption in New Zealand\n\nSo what is the state of Bitcoin adoption in New Zealand? Even after recent monetary debasement and inflation, it is hard to convince most Kiwis they should think about an alternative to the NZ dollar and as a result, Bitcoin adoption is low. Most Kiwis have heard of it, but most still know nothing about it and think of it as a payment platform or tech stock.\n\n## How many people in New Zealand have Bitcoin?\n\nFinding out exactly how many Kiwis own Bitcoin is not an exact science, as part of the reason to own Bitcoin is that it’s “off the record”. But there are a few proxies and surveys we can draw some comparison to other countries with.\n\n[Statista.com data shows](https://www.statista.com/statistics/1202468/global-cryptocurrency-ownership/) that the number of New Zealanders who “indicated they owned or used crypto” has grown from 6% to 14% from 2019 to 2023. These are very similar numbers to the USA, Australia and the United Kingdom. New Zealand ranked 25th on the list, even pegging with Austria, Poland and Russia. This means over half a million Kiwis use or own “Crypto”, a number you (or politicians seeking office) aren’t likely to ignore. \n\nThe highest levels of adoption are unsurprisingly in countries with failing currencies or hyperinflation like Nigeria (47% in 2023), Turkey (47%), Indonesia (29%) and Brazil (28%). The data also shows some interesting outliers such as the UAE, growing from 0 to 31% adoption from 2019 to 2023.\n\nOur friends at Chainalysis [rank New Zealand 89th in their 2023 Global Adoption index](https://www.chainalysis.com/blog/2023-global-crypto-adoption-index/), taking into account a number of factors such as Retail Adoption, P2P usage and DeFi. The top three countries in the survey are India, Nigeria and Vietnam.\n\nThese are only proxies, as they measure “Crypto” ownership and usage, and we all know Bitcoin and Crypto are very different things, but for the purpose of comparing usage and ownership in different countries, they’re useful metrics.\n\n## BTC Trading Volumes in NZD\n\nIn terms of volumes traded in New Zealand dollars, a paltry volume of under USD $10 million was traded for BTC in 2023, but this figure is misleading as most Kiwis who buy Bitcoin will buy in USD. For reference, the USD trading volume of Bitcoin was USD $1.5 billion.\n\nSource: [Statista.com](https://www.statista.com/statistics/1195753/bitcoin-trading-selected-countries/)\n\n## Bitcoin Merchant Adoption in New Zealand\n\nAgain, low. [Btcmap.org](https://btcmap.org/map#3/-43.60227/172.59796) shows 30 merchants in New Zealand accepting Bitcoin today, and if you’re in the Bitcoin community here you probably know and support many of them personally.\n\nHere's a comparison with cities or countries with similar populations to New Zealand taken from btcmap.org:\n\n- Sydney: 23 merchants (NZ wins)\n- Ireland: 24 merchants (NZ wins)\n- Finland: 34 merchants (NZ loses)\n- Costa Rica: 54 merchants (NZ loses)\n\nAnd how about if we compare with the Bitcoin hotspots we hear about all the time:\n\n- Nashville (Pop. 700,000): 7 merchants (pathetic effort, c'mon O'Dell, what are you doing there?)\n- Austin, Texas (Pop. 1.8 million) 42 merchants \n- El Salvador (Pop. 6.3 million) 264 merchants\n- Lugano, Switzerland (Pop. 63,000) 204 merchants\n- Isle of Man, UK. (Pop. 84,000) 47 merchants\n\nSo we’ve got a long way to go, but so has everyone. The interesting takeaway is that Lugano has the most Bitcoin merchants per capita by a long way. Those Swiss were always good with money, looks like they’re getting even better.\n\nBut the effort here is strong, there are keen Kiwi Bitcoiners out there paving the streets day and night to help merchants adopt Bitcoin. And here’s their website: [https://www.acceptbitcoin.nz/](https://www.acceptbitcoin.nz/)\n\n## Kiwi Bitcoin Merchant Shoutout - Connect Chiropractic in Christchurch\n\nNot only does Matt accept and promote Bitcoin at his practice, he puts up Bitcoin billboard ads and presents Bitcoin at the national industry conference. Great stuff Matt!\n\n**Which makes Connect Chiropractic our 2023 New Zealand Bitcoin Merchant of the year.** \n\nhttps://kiwibitcoinguide.org/assets/Uploads/Blogpost-Images/bitcoin-sign-christchurch-v2__ResizedImageWzYwMCw0MDBd.jpeg\n\nNeed some realignment? [Find out more about Christchurch's Bitcoin Chiro here.](https://btcmap.org/merchant/node:10740201120)\n\n# Bitcoin Events, Meetups & Spaces in New Zealand\n\nThe meetup and event scene is still developing, but the community is growing in both size and strength. The advantage of being in a small country like New Zealand is that there is a "New Zealand Bitcoin Scene", and it's possible to attend events and meet other Bitcoiners all over the country.\n\nThe highlight of the Bitcoin Meetup scene in New Zealand is undoubtedly Bitkiwi, quarterly meetups hosted both at their Wellington home base and around the country.\n\n## Bitkiwi - New Zealand's leading Bitcoin Meetup\n\nStarted in late 2022 by three schoolmates from Wellington, Bitkiwi events are super laid back, relaxed and friendly. Highlights are the old fashioned “ka-ching” and Pink Floyd’s “money” playing every time you buy a beer with Sats!\n\n[See more about Bitkiwi here,](https://kiwibitcoinguide.org/home/bitkiwi-meetups/) and come join the next one!\n\n## Bitcoin Meetups in New Zealand\n\n**Auckland:** \nI couldn’t find any info about a Bitcoin Meetup but there must be something, so let me know and I’ll update this page.\n\n**Wellington:** \nMonthly meetups in the Central City, [find out more here.](https://www.meetup.com/bitcoin-wellington/)\n\n**Christchurch:** \nNo regular meetups yet but a solid core community, centered around a few local merchants and businesses. \n\n**Queenstown:** \nMonthly meetups hosted by Rob from Wakatipu Bitcoiners. \n[Visit Wakatipu Bitcoiners on Facebook.](https://www.facebook.com/groups/872552790412975)\n\n## The Altruist School\n\nThis is a free public space for Bitcoiners in the heart of Auckland CBD, open 5 days a week and hosted by a local Bitcoiner, with his own designed hoodies, gear and heaps of Bitcoin books. Hanoz (the founder) runs events and is always happy to sit and talk Bitcoin with newbies or OGs.\n\n[Find out more about the Altruist Bitcoin space here.](https://www.thealtruistschool.com/)\n\n# Bitcoin Companies in New Zealand\n\nThis is an area we seriously have to lift our game. Compared with our Aussie mates across the ditch, there is a deafening silence when it comes to New Zealand companies or initiatives on the global Bitcoin stage. Time to fix that Kiwi Bitcoiners, if not you, then who?\n\n## Bitcoin Exchanges in New Zealand\n\nNew Zealand does not have its own native Bitcoin only exchange, just a few Crypto exchanges and brokers. The number dropped by one very recently after one [New Zealand “Crypto” exchange went bust](https://blockworks.co/news/new-zealand-crypto-exchange-dasset), surprise, surprise, they didn’t actually have enough funds to actually cover customer deposits.\n\nWe have had our own chequered past too, NZ based exchange Cryptopia was hacked and subsequently failed in 2019, one of the worlds largest crypto hacks at the time.\n\n## Bitcoin Mining in New Zealand\n\nThis is an area that has a lot of potential in New Zealand, especially in the South Island with its abundance of hydro power and low population. But Bitcoin mining is still nascent here for sure.\n\nOur share of the global hashrate comes in at a cool 0.00%, [based on the Cambridge Centre for Alternative Finance’s most recent stats](https://ccaf.io/cbnsi/cbeci/mining_map) (Jan 22), which doesn’t mean there’s zero mining here, just that the hashrate is so negligible it doesn’t even register on the meter. [Another source listed New Zealand's total hashrate at 12.55 PH/s.](https://chainbulletin.com/bitcoin-mining-map/)\n\n[Listen to an introduction to sustainable Bitcoin mining in New Zealand with Simon Collins from Stackr on the Transformation of Value Podcast.](https://www.thetransformationofvalue.com/episodes/sustainable-bitcoin-mining-in-new-zealand-with-dr-simon-collins)\n\n## Stackr Mining\n\nFounder Simon Collins is a leading voice in Bitcoin mining in New Zealand and is out there pitching for investment for Stackr to mine sustainably using hydro power in the South Island.\n\n[Visit the Stackr website.](https://www.stackr.co.nz/)\n\n## Gridshare\n\nIn their own words, “Gridshare builds, owns and operates power responsive data centres, including Bitcoin mining and AI computing”. There’s not a lot of detail on the website about locations, but they have at least one location in Southland close to large hydro generators. We know Bitcoiners who use their services and the sats are real!\n\n[Visit the Gridshare website here](https://www.gridshare.co/) or [read more about their South Island mining operations here.](https://www.stuff.co.nz/national/128513031/bitcoin-mining-to-be-performed-beside-southland-power-station)\n\nBut not all New Zealand’s hills are paved with digital gold, until recently, [a UK based company was mining at one of the large hydro dams in the South Island but went bust.](https://www.stuff.co.nz/otago/131138855/uk-company-planning-cryptocurrency-mining-in-central-otago-in-liquidation) Probably leveraged their ASICS during the bull market and got rekt.\n\n# Other Bitcoin Companies in New Zealand\n\n## CH4 Capital\n\nMore of a Global Company than a Kiwi one, but founder Daniel Batten is a Kiwi and lives here. This is an investment fund with the mission to offset 2% of atmospheric pollutants through mining Bitcoin via vented methane at landfills around the world.\n\n[Vist the CH4 Capital website](https://www.ch4capital.com/) or [listen to Daniel’s recent interview on What Bitcoin Did here.](https://www.whatbitcoindid.com/podcast/making-bitcoin-carbon-negative)\n\n## Azte.co in New Zealand\n\nA Christchurch Bitcoiner has set up an Azte.co vendor in New Zealand where you can buy vouchers redeemable for Bitcoin either online or in person. Bitcoiners will know Azte.co, a very low friction way to get Bitcoin. No accounts, No IDs, instant redemption either on chain or via Lightning. The goals are ambitious, to have major New Zealand retailers selling vouchers redeemable for Bitcoin, the same way they do for Apple Music or the Google Play Store.\n\n[The Project is still in Beta, but you can register for updates here.](http://karikoha.com/)\n\n# Bitcoin Media in New Zealand\n\n## The Transformation of Value Podcast\n\nHosted by Wellington Bitcoiner Cody Ellignham, this podcast started in 2022 and has been cranking out weekly episodes ever since. The focus is on local initiatives and the contribution Bitcoin can make to a better New Zealand. Lots of thought provoking conversations with a New Zealand angle.\n\n[Find out more about the Transformation of Value Podcast here.](https://www.thetransformationofvalue.com/)\n\n## KiwiBitcoinGuide.org.nz\n\nA community website run by Kiwis with a focus on tools and resources for New Zealand Bitcoiners. There’s plenty of content out there on global macro or Bitcoin technology and tools, but nothing at all for Kiwi Bitcoiners, so this site aims to fix that.\n\n[Visit KiwiBitcoinGuide.org](https://kiwibitcoinguide.org/)\n\n## NZ Bitcoiners on Telegram\n\nA useful first contact point for normies to connect with and take their first steps in Bitcoin. There are different groups for different regions and topics, such as Mining, Lightning & Exchanges. A few Bots and scammers around these days too, but still some good signal.\n\n[Visit NZ Bitcoiners on Telegram here.](https://t.me/NZBitcoinersGroup)\n\n# Kiwi Bitcoin Personalities\n\nThere are a few Kiwis on the global Bitcoin stage, not quite as many as our Aussie cousins across the ditch though who can lay claim to some leading contributors and organisations, like Stephan Livera, Ketan & Ministry of Nodes, Vijay, Checkmate, Rusty Russell, Amber App, Wallet of Satoshi, Bitcoin Bush Bash, Bitcoin Alive, the Perth Heat and of course Faketoshi himself, Craig Wright.\n\n## TipNZ\n\nTip splits her time between Thailand and NZ, but we do see her smiling face at meetups up and down NZ so we reckon she’s one of us. She describes herself as a Bitcoin rapper, and her Bitcoin themed videos have garnered attention from Bitcoiners all over the world, including Michael Saylor.\n\nhttps://kiwibitcoinguide.org/assets/Uploads/Blogpost-Images/tip_nz_pacific_bitcoin_2023__ResizedImageWzYwMCwzMzhd.png\n\n[Check out Tip’s recent appearance at Pacific Bitcoin.](https://youtu.be/UU42V3JcKTA?si=JBzPyjEp2R4likiB)\n\n## Daniel Batten\n\nAs highlighted above in the Mining section, Daniel lives in New Zealand while operating on the global stage. His voice and message is one which could be very important to help mainstream NZ understand and embrace Bitcoin. Come drop in to a meetup Daniel!\n\n## Rigel Walshe\n\nAn ex Kiwi cop, now a digital nomad preaching the word of Bitcoin to the masses.\n\n[Watch Rigel's talk at the Baltic Honey Badger on Bitcoin as a Religious Phenomenon.](https://www.youtube.com/watch?v=6jIwzM1FAe8)\n\n## Rob Clarkson\n\nRob epitomizes Bitcoin's Proof of Work ethos and he's a driving force in the NZ Bitcoin community. Meetup organizer, educator, speaker, developer and contributor to too many different initiatives to try to mention here. He's also very tall.\n\n[Watch Rob’s presentation on the Bolt Card at Bitcoin Alive in Sydney 2023.](https://youtu.be/g_BZjAlug8Y?si=A1_GAbXL4tnZu_73)\n\n## Willy Woo\n\nNot living in NZ now but he did grow up here, Willy has a mixed reputation amongst Bitcoiners as a hokey TA chart snake charmer who pumps shitcoins, but he does talk some sense at some times.\n\n[Listen to Willy’s recent interview on What Bitcoin Did here](https://www.whatbitcoindid.com/podcast/macroeconomics-on-chain-data-with-nik-bhatia-willy-woo-wbd-live-in-sydney) and make your own mind up.\n\n# Bitcoin Regulation & Government Initiatives in New Zealand\n\nLike most governments, New Zealand is playing catch up with understanding and regulation of Bitcoin. For the most part, there has been a hands off approach to Bitcoin and “Crypto”, but it is probably because they have no idea yet and have to figure out what the hell it all is first before they come up with some regulations. But don’t worry, they’ve got plenty of wordy papers out there about “the Future of Money” and all that.\n\n[Read a wordy paper from the New Zealand Government on the Future of Money.](https://www.rbnz.govt.nz/have-your-say/the-future-of-money)\n\nThe Reserve Bank of New Zealand (NZ’s Central Bank) consulted with the public on the Future of Money, which included proposals for regulation on “Private Moneys’ and digital currencies. They received a whopping 50 submissions (out of a population of 5 million) in response and recently published their findings. (See below reference to apathy!)\n\nMany of the findings were quite benign and included recommendations not to stifle development and allow innovation but the guidelines for the consultation (set before the public got their say!) required any regulation to allow for AML / KYC, protect the sovereignty of the NZD as a “Value Anchor” and to retain control of Monetary Policy objectives. So read into that they’re OK with digital money, as long as it’s in a unit which they can inflate or deflate supply of when required.\n\nBut it was nice to be asked what we thought anyway.\n\n## Parliamentary Inquiry into the current and future nature, impact, and risks of Cryptocurrencies\n\nYes, this is the title of an inquiry being presented to Parliament later this year. A 112 page report comprising mostly of very middle of the road recommendations in waffly language such as: “encouraging development”, adopting a “technology neutral approach”, establishing a “formal sandbox” and a “cross agency working group”. My favourite is the recommendation to hold “blockchain sprints” to develop new ideas and strategies. That’s a bunch of high powered BS paid for with your tax dollars if I’ve ever seen it.\n\nIn fairness, there are some interesting recommendations in the paper, including that educational institutions consider developing courses on Digital Assets and training be made available for Financial and Legal professionals. Another interesting recommendation is to consider the development of a new category of property law for “Data Assets”.\n\nThere are a few dead rats in there as well, such as Recommendation #22 to continue with development of a CBDC and New Zealand’s preference for “less energy intensive blockchains”.\n\nIt’s hard to know what to make of a report like this, whether there is some genuine good intention to foster innovation or it’s just a bunch of grifters licking their lips at the thought of getting on the Government gravy train. Time and the market will tell.\n\nBut what’s more interesting to me is the way this whole inquiry has been run and who is advising on it. Public submissions were held in 2021, but not much publicity was given to these and most Kiwis would have no idea any of this was going on. The 112 page document is to be presented to a panel of 12 Members of Parliament, with the 22 “recommendations” already prepared for them, (don't bother reading that, just sign here). There were a grand total of two independent experts consulted on this, a lawyer and an academic. Wonder how they were selected? \n\nI want to know how just 14 people get to influence the monetary outcomes here for 5+ million, how much do they even know about Digital Assets or how they would even find the time to read this report?\n\nBut that’s what you get with Democracy isn’t it! Imagine if there was a neutral money which anyone could opt in to by choice, regardless of what the majority of people who happen to live in the same jurisdiction as you think.\n\n[Read or Download the Paper here.](https://selectcommittees.parliament.nz/v/6/3140a09c-1d05-4275-7a2f-08db9ea64502)\n\n## Development of a CBDC in New Zealand\n\nNew Zealand is one of many countries developing a Central Bank Digital Currency, and recent consultation with a panel of (two) experts came to the conclusion that they should continue with this development. Public submissions were held on this, the response rate was very low (probably a rugby game on at the time) but overwhelmingly negative.\n\n[Read more about the New Zealand CBDC initiative here.](https://www.rbnz.govt.nz/money-and-cash/future-of-money/cbdc)\n\nOne interesting takeaway from this consultation was that the vast majority of New Zealanders have no idea that their government is planning a radical reform of the entire monetary system. There are ads and billboards everywhere telling people to wear seatbelts, educating the male population on menopause, not to let your mates drive home drunk or to go and register to vote, but none telling people that they’re reviewing everything about how you hold and spend money. No biggie, back to the BBQ people.\n\n## Web3NZ\n\nMost Bitcoiners will retch lightly at the site of a name like Web3 NZ, but read on. The New Zealand Government has funded an organization called Web3 NZ which does include members from the Blockchain Shitcoin Crowd as well as Bitcoiners.\n\nWeb3 NZ is led by a Bitcoiner, who we’ve met at events and he is a Bitcoiner, runs a node and seems legit, so that’s a good start. Our Taxpayer $$ even paid for him to fly to Bitcoin 2023 in Miami this year (and a shitcoin conference too), but he is on the record saying there was a lot more development and energy at the Bitcoin conference.\n\nI met one of the Web3 NZ team at an event earlier this year and she openly admitted she didn’t know a lot about Bitcoin but wanted to learn. So I started off with my best intro spiel and she really surprised me by recording me, then publishing the bulk of what I said into a post the next week. \n\nIf that’s the attitude and openness that a govt funded agency has towards Bitcoin, they’re welcome at meetups and in the community anytime. Until they start pumping NFTs and Proof of Stake, then they're out the door!\n\nA quick perusal of the Web3 NZ website shows a video called [“Balancing New Zealand’s Energy Asymmetry using Carbon Negative Bitcoin Solutions”](https://web3nz.xyz/38f4a52a6b5c42ce8d669634a8c3adbd) right on the front page. they also recently organized a [Lightning Tutorial with Lisa from Base 58](https://youtu.be/P_B02cj85Ao?si=zkaQJKBUNSzAkyOu) and made it freely available to everyone, including a class of University students in Auckland. So positive signs for now.\n\n## Tax on Bitcoin in New Zealand\n\nThe laws around tax on Digital Assets were recently rewritten, and the Inland Revenue and Parliamentary Reports acknowledge that this new class of asset challenges current tax law. Bitcoin is treated like a form of property for taxation purposes in New Zealand, so it is subject to tax on any capital gains realized at the time of sale.\n\nIf you receive your income in Bitcoin, you have to declare it and include GST (Sales Tax) where relevant. Basically income in Bitcoin is treated the same way that income in a foreign currency would be, which is actually a really good way to frame it.\n\nThere is nothing groundbreaking or radically different about New Zealand's approach to tax on Bitcoin, although most people in New Zealand are very suspicious of wealthy people so if it goes to $1,000,000 a coin expect the taxman to come knocking for a good chunk of your gains.\n\n[Read the guidance on Taxation on Crypto Assets from the Inland Revenue here.](https://www.ird.govt.nz/cryptoassets/taxing)\n\n# Bitcoin in New Zealand Politics\n\nUnfortunately, a big fat donut here. Even though Bitcoin is in the conversation at the highest level of politics in other countries, even with an election this year we’re not aware of a single politician with a Bitcoin Policy or talking about sound money.\n\nA few have talked about the problems, but no-one is out there proposing Bitcoin as a solution. So a long way to go here.\n\n# Other Bitcoin Initiatives in New Zealand\n\n## AcceptBitcoin.nz\n\nAnother community initiative aimed at helping merchants in New Zealand accept Bitcoin. With the scene still nascent and Kiwis being the friendly folks we are, we even do house calls!\n\nhttps://kiwibitcoinguide.org/assets/Uploads/Blogpost-Images/accept-bitcoinnz-website__ResizedImageWzYwMCwzNzZd.png\n\n[Find out more about AcceptBitcoin.nz here.](https://www.acceptbitcoin.nz/)\n\n## Orange Pill the New Zealand Parliament\n\nWith an election approaching in New Zealand this year, here’s an initiative led by Simon Collins of Stackr Mining to give every newly elected member of Parliament a copy of the Bitcoin Standard.\n\n[Support the Orange Pilling of NZ Parliament on Geyser here.](https://geyser.fund/project/orangepillingthenewzealandparliament)\n\n## Orange\n\nRun by prominent Kiwi Bitcoiner James Viggiano, Orange is a hosted server in the popular survival game Rust with the aim of educating players in the game about Bitcoin and working with others. Learn, survive and thrive with Bitcoin.\n\n[Find out more on the Orange website here.](https://www.orangem.art/)\n\n## Bitcoin at Auckland University of Technology\n\nJeff Nijsse as a Senior Lecturer of Engineering, Computer and Mathematical Sciences at the Auckland University of Technology and is teaching Bitcoin to Computer Science students there. This is one of the leading Universities in New Zealand in the heart of Auckland CBD.\n\n[Listen to Jeff explain more about his teachings on this interview here.](https://www.thetransformationofvalue.com/episodes/teaching-bitcoin-at-auckland-university-of-technology-with-jeff-nijsse)\n\n# Opportunities & Headwinds for Bitcoin in New Zealand\n\nHistorically New Zealand was an innovative country with a history of pragmatic problem solving, we have good digital infrastructure and a relatively digitally savvy population. New Zealand has all the building blocks to be a leader amongst Bitcoin adoption in developed nations.\n\nThe problems Bitcoin can solve are very evident here too. In the last two decades, housing has become unaffordable for many Kiwis, even double income households. More recently, it’s food which is becoming expensive too, everyone sees that at the supermarket.\n\nWe were one of the first nations in the world to adopt a nationwide Electronic Payments Network (EFTPOS) and in years gone by have shown courage and innovation to forge our own path.\n\nBut in recent years it seems like we’re bogged down by regulation and political correctness, it's very difficult for any major initiatives to get done here now and there seems to be less and less merit based outcomes in society.\n\nAnother gap which is very evident is the lack of New Zealand companies or initiatives on the global Bitcoin stage. As a borderless, global network, there’s no reason New Zealand entrepreneurs and developers can’t be on the frontline building the internet of money. The silence in this space is deafening and we need to fix that.\n\nBut the biggest headwind to widespread adoption in New Zealand is apathy. Until recently, life has been pretty good in New Zealand for most people, so they just don’t see the need for something that would induce a major paradigm shift as Bitcoin would and ask them to question and challenge everything they know.\n\nIf you know anything about Kiwis, it's that we love nothing more than beating our Aussie mates. So although we're pounding the streets day and night trying to save the world with Bitcoin, what really matters is beating the Aussies. So all you have to do is tip this article with more Sats than the article by @btcschellingpnt on the Bitcoin Scene in Australia and we're happy! Thanks cobbers.\n\nhttps://stacker.news/items/257013\n \N 6555 \N 405427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.44646409043256 0 \N \N f 86249241 \N 1 63732378 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2462 2022-10-12 17:35:54.341 2025-03-29 22:39:50.516 \N The 10% thing is long disproved cap and just plain wrong framing. Your brain is obviously being used all the time, just most of it are sub/unconscious functions like heartbeat control, regulation of bodily functions, mental processes etc. If it was running at 10% capacity you would die within minutes. There is no proof of this 90% big brain potential having been unlocked. Which is why I voted for getting plugged, of course. https://example.com/ 895 2457 2457.2462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6033561748302 0 \N \N f 0 \N 0 8933784 0 f f \N \N \N \N 2457 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403009 2025-02-14 11:01:24.943 2025-03-29 22:39:50.516 \N We buy “underground” food directly from local farmers every week. https://example.com/ 20713 401884 401824.401884.403009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.12946502877527 0 \N \N f 373004347 \N 3 109834293 0 f f \N \N \N \N 401824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448493 2025-03-22 16:23:15.733 2025-03-29 22:39:50.516 \N Thank you! https://example.com/ 18449 448468 448201.448382.448468.448493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.53149297073188 0 \N \N f 0 \N 0 129709429 0 f f \N \N \N \N 448201 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 14091 2023-03-28 21:21:00.601 2025-03-29 22:39:47.911 Million Sat Madness Leaderboard — #836133 Not much has changed since last Sunday. The only difference I see is that @Scoresby has come out of the shadows and the other hidden stacker has climbed the table. Only one week left of this madness, may the most deserving one win. Place your bets... 🤠\n\n![836133.PNG](https://m.stacker.news/22723) \N 20588 \N 14091 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.8962761334914 0 \N \N f 0 \N 0 134053320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 403851 2025-02-15 09:20:27.865 2025-03-29 22:39:50.516 \N I don't think liquidity is necessarily always going to be an interesting and complex problem for two reasons. First, the network will gradually become less dynamic as people who transact frequently will establish long-lived and maximally direct connections with one another. Second, tools, algorithms, and data will be available to help non-experts deploy liquidity in an increasingly effective way. https://example.com/ 21287 403695 403036.403695.403851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9413225725531 0 \N \N f 408497289 \N 3 181907551 0 f f \N \N \N \N 403036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 16265 2023-04-12 20:32:31.021 2025-03-29 22:39:47.911 How Bitcoin Is Saving Wasted Energy And Expanding Financial Freedom In Africa > Alex Gladstein of the Human Rights Foundation reports on how Bitcoin is monetizing stranded energy, financing electrical infrastructure, and empowering millions.\n> \n> Hundreds of millions of Africans face two problems holding them back from progress: 600 million lack electricity, while virtually all 1.4 billion people on the continent lack high-quality currency. Compare this to the US, Northern Europe, or Japan, where nearly everyone has access to consistent, affordable power and a widely-accepted reserve currency like the dollar, euro, or yen.\n>\n> ## [... read more](https://bitcoinmagazine.com/check-your-financial-privilege/stranded-bitcoin-saving-wasted-energy-in-africa) https://bitcoinmagazine.com/check-your-financial-privilege/stranded-bitcoin-saving-wasted-energy-in-africa 9348 \N 16265 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.6924004254614 0 \N \N f 0 \N 0 75835066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 14515 2023-04-02 15:02:30.14 2025-03-29 22:39:47.911 SN release: changeable territory billing You can now change the billing type of your territories if you'd like. It credits you the amount you paid for your current billing period when you changed it, e.g. if 15 days into a monthly billing cycle you upgrade to yearly billing, it'll cost 900k sats for the year. \n\nThere were also some bug fixes in here but they're not worth enumerating. Also ekzyis shall now be known as @ek which I mention for all the taggers out there. \N 9307 \N 14515 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.13344208964907 0 \N \N f 0 \N 0 91542230 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1430 2022-09-14 13:30:05.663 2025-03-29 22:39:50.516 \N What ever happened to their "integration with almost every point of sale system" that was announced at the Bitcoin conference? https://example.com/ 16301 1421 1357.1421.1430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0817292514762 0 \N \N f 0 \N 0 118164592 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1433 2022-09-14 13:45:46.963 2025-03-29 22:39:50.516 \N really excited about the new incentives and use cases that will come with user-generated subs.\n\nalso can’t wait for @grayruby to get his sports sub! https://example.com/ 16387 1432 1432.1433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9226240765781 0 \N \N f 0 \N 0 45233934 0 f f \N \N \N \N 1432 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1923 2022-09-28 19:30:32.028 2025-03-29 22:39:50.517 \N one underappreciated thing about million sat madness is that the pool keeps growing every day.\n\nit’s not 3 million sats anymore, it’s already 3.5m after just one week. \n\non pace for a total pool size of 5 million sats by the end of the month. https://example.com/ 16177 1860 1860.1923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20290463171198 0 \N \N f 0 \N 0 82765538 0 f f \N \N \N \N 1860 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 15824 2023-04-10 12:45:40.816 2025-03-29 22:39:47.911 Economically Unspendable Bitcoin UTXOs I guess it speaks to the increasing strength of the network, bit this is a situation that is going to get worse, I guess.\nNobody is better than Jameson Lopp when it comes to explaining stuff. \nHere,he has created a new tool to help with this growing problem. https://blog.lopp.net/economically-unspendable-bitcoin-utxos/ 10398 \N 15824 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.33010295931954 0 \N \N f 0 \N 0 249662897 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 16284 2023-04-13 05:23:02.723 2025-03-29 22:39:47.912 Mutiny Wallet launches signet version with Lightning support, LSP \N https://twitter.com/MutinyWallet/status/1661381554478669825 16350 \N 16284 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.4704710239949 0 \N \N f 0 \N 0 231367486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 18038 2023-04-23 15:10:15.176 2025-03-29 22:39:47.912 40% full block from Foundry Huh, Foundry just mined a 40% full block. Not empty, not full.\n\n![40perc.png](https://m.stacker.news/13869) \N 21631 \N 18038 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.963424983922927 0 \N \N f 0 \N 0 90448944 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 53009 2023-08-20 21:52:32.604 2025-03-29 22:39:47.912 I know price doesn't matter, but... The CPI reading just came in hotter than expected, and Wall Street is now thinking that rate cuts won't be coming any time soon. \nBitcoin is still foolishly seen as a risk asset, and all those normies scooping up those ETF shares may get scared, starting today. \nWe could get a huge buying opportunity sooner than we think. I'm getting ready to scoop up some bitcoin on sale. \N 1552 \N 53009 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.175746416809 0 \N \N f 0 \N 0 71637166 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 417257 2025-02-26 08:53:17.786 2025-03-29 22:39:47.912 GrapheneOS workshop by Car \N https://www.youtube.com/live/ppOr4viY-QY 21599 \N 417257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.18010189164853 0 \N \N f 13706345 \N 1 51564265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408619 2025-02-18 23:53:11.516 2025-03-29 22:39:50.517 \N Personally, I look at territories as sort of a franchise. It's not really a brand license because we operate within the SN ecosystem. \n\nEventually I would like to see some sort of franchise agreement (can be very basic) between SN and territories. What are territories rights, what are SN rights, do territories have any protections from others starting competing territories. I am not against competing territories but if SN were to become very popular and territories were profitable it is likely people will try to create competing territories for the most profitable ones.\n\nAlso I think SN needs a cohesive marketing plan that territories can tap into. I think territories can help with the SN brand as well. I am somewhat troubled that although SN has clearly grown over the past 3 years, it hasn't captured a lot of the low hanging fruit (bitcoiners that are active on X, nostr, reddit). Sometimes it feels like pulling teeth to try to get people to give SN a try and I don't know why that is. Maybe inertia (people stick with platforms they are on even if they dislike them) and maybe a bit of exhaustion with all the "bitcoin things" one needs to keep up with these days. \n\nMarketing SN is a tough proposition because the easiest path is to promote it as a way to stack sats but we are already seeing too many people that are optimizing for sats. So, need to balance user growth and quality of community. The harder path is "a better community". \n\nThe long term viability of SN and all its territories will be dependent on the ability to grow the user base while maintaining a great community. https://example.com/ 7668 408520 408520.408619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7990382755362 0 \N \N f 212525660 \N 1 122094293 0 f f \N \N \N \N 408520 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410108 2025-02-20 08:59:44.13 2025-03-29 22:39:47.913 TPS Counter: help debunk the "7 tps" myth Some people like to spread the myth that bitcoin's blockchain can only process 7 transactions per second. [example fud](https://x.com/MaxiDerangement/status/1792965545702371632)\n\nI made a little webpage to help debunk this myth whenever you see someone say this nonsense:\n\nhttps://supertestnet.github.io/tps-counter/\n\nFor example, today the block with the highest TPS count (so far) is [this one](https://mempool.space/block/00000000000000000001ea23e9ab0a64630372826b2dd0210653ac70ef2c5d72) which had 7582 transactions in it, which means bitcoin processed about 13 tps (7582 divided by 10 minutes divided by 60 seconds = 7582 / 10 / 60 = 12.6 tps). \N 10342 \N 410108 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 11.4692257505736 0 \N \N f 757923461 \N 5 25788526 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 435316 2025-03-12 15:36:03.365 2025-03-29 22:39:50.517 \N It is really cool. This goes into it and mentions Flow 2.0 https://blog.mutinywallet.com/mutiny-wallet-open-beta/#just-in-time-channels.\n\nFlow 2.0 appears to be the service Mutiny is using in order to provide liquidity to the wallet users. It is called an LSP and it is created by opening up zero-conf channels. This link goes into it: https://voltage.cloud/blog/voltage-announcements/introducing-flow-v2/?ref=blog.mutinywallet.com\n\nSo the wallet is a node and can hold on-chain Bitcoin. To move into and through the Lightning network you need liquidity from the Lightning network to open a channel. This is a problem.\n\nSo Mutiny solves this by creating a wrapped Bolt 11 invoice to create a just in time channel for your node (the wallet). Usage of the LSP does not violate privacy or introduce compromise in security. The Bolt 11 invoices are wrapped and include your preimage hash which an LSP node is not aware of.\n\nOnce funds are in your wallet on the Lightning network you can go to your settings and you will see how many channels you have open. It shows you a very easy to understand split graph of your inbound and outbound liquidity from all your channels.\n\nThis is a big step because now you can self host all the backend stuff for privacy while not having to worry about the nightmare of managing a live node and balancing channels just so you can have liquidity and privacy.\n\nHere is the cool part. Mutiny lets you configure and set up your own LSP anyways. So you still have as much control as you could possibly want. They literally just took multiple user experiences and compressed it down to one pipeline. Incredible work.\n\n https://example.com/ 3461 435311 435242.435311.435316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3699552464767 0 \N \N f 0 \N 0 12509220 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 19331 2023-04-30 22:52:37.45 2025-03-29 22:39:47.902 Can I run a full Bitcoin node with only a 5mb/s connection? I am attempting to set up my umbrel Bitcoin node on a raspberry pi 4 with 8 gb ram. I am concerned that my internet connection may be an issue. I am running all this through a hotspot. While my monthly download is unlimited, the bandwidth is limited to about 500kB/s. \n\nIs this enough to keep a Bitcoin node? Will it eat up all the bandwidth. Once it is synced initially, does the bandwidth requirements go down? This is the only connection I use for my wifi and devices at my home. I have tried looking it up online and I see a wide variety of answers. Any guidance is greatly appreciated. Thank you. \N 16536 \N 19331 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.3420289832735 0 \N \N f 0 \N 0 225592178 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 19742 2023-05-02 19:26:39.627 2025-03-29 22:39:47.902 I've got a family gathering coming up and need a plan of action. In just about two weeks I've got to partake yet again in one of our *wonderfully boring* family gatherings - at least that's what they normally are. \n\nThis time, however, I've got a feeling that the whole ordeal will be fairly Bitcoin-heavy. \n\nOne reason being my dad who keeps on talking to our relatives about how well Bitcoin's doing and how high it could / should go this time, how much they would've made if only they had listened to him yada yada, and the other reason being that they indeed seem to have an *open ear* for Bitcoin in general, which is fueled by my dad's fomo'ing, I guess.\n\nThe thing is: my dad knows *jack shit* about Bitcoin. Literally. \n\nJust the other day, he seriously asked me how big the supply of Bitcoin will be; was it 21M or 28M? This comes from someone who's been into it since 20-fucking-17. \n\nThe only thing he watches / reads are those TA-vids on YouTube, articles explaining why we'll either dumb or pump, and what miner-stocks one should pick in order to *outperform Bitcoin*. \n\n* *He did make a killing with Coinbase, though*.\n\nI, on the other hand, like to think that I know quite a bit about Bitcoin's technical side, how it works and why it's such a great Asset.\n\nThus, in order to not only save my relatives from burning themselves at Bitcoin's volatility, but also Bitcoin from more burned haters, I've been trying to come up with a *plan of action*; and I'd like SN's input for that, too.\n\nWith my dad covering the price exploration and hopium part, I'd like to focus on Bitcoin's (technical) basics, how to set up a hardware wallet, where to buy and how to buy, general best practices and why they should, first-and-foremost, *hold onto their bitcoin*, instead of selling it for the "*nExT bIg ThInG*".\n\nHow would you guys go about this? What would you talk about and how would you structure it? \N 18829 \N 19742 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.5151932525749 0 \N \N f 0 \N 0 119687828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 19625 2023-05-02 13:52:07.492 2025-03-29 22:39:47.913 Why I Hate Apple \n![jobs](https://upload.wikimedia.org/wikipedia/commons/5/56/Steve_jobs_Macbook_Air.jpg)\n\n***"And what rough beast, its hour come round at last,\nSlouches towards Bethlehem to be born?"***\n *William Butler Yeats, The Second Coming*\n\n\n\n\nMy dad bought an Apple II in 1977, when I was a high school senior. He got it to help manage his real estate investments, which he worked on when he got home late at night after closing his pharmacy. I was fascinated with the thing, not because I wanted to figure out how to program it, or what was going on inside that cream colored case, but because of the really cool games I could play on it. Up until that point I had only played the Atari version of Pong. It may look boring now, but my friends and I would spend endless weekend hours staring at the flickering grey image on the tv screen. We would drink a few beers, smoke a few joints, and fire up the console, usually choosing the hockey version over the less interesting tennis screen. It didn’t take much to entertain us. \n\n![appleii](https://upload.wikimedia.org/wikipedia/commons/7/74/Apple_II_IMG_4227.jpg)\n\nWhen I carefully inserted the floppy disk labeled “games” into the Apple II’s drive, I couldn’t believe the difference. The only game I specifically remember was one called Olympic Decathlon. You used key combinations to help the primitive, vaguely human collection of pixels run races, pole vault, high jump, and perform in other decathlon events. My dad claimed that his computer helped him get his bookkeeping done, but every time I walked into his home office he was playing one of those games. \n\nBy the mid 1980’s I was a PC guy. I remember seeing the famous Apple Super Bowl 1984 commercial and thinking it was ridiculously pretentious. Right around that time I began taking a real dislike to Steve Jobs. I saw him as the marketing guy behind Apple, and Wozniak as the brains. Jobs struck me as smug and arrogant, and I thought of PCs as the machines where you got work done, while Apple was for drawing pictures. I know that was probably a naive simplification, but that’s how I saw it. \n\nAfter Jobs’ return to Apple after his NeXT debacle, he just seemed like more of a pompous narcissist. He designed, engineered, and packaged his image as carefully as he did his products. Everything about him was calculated, from his beard to that goddamned black turtleneck. I found him to be all style, and no substance. That probably wasn’t fair, but I was into MS- DOS and early Windows. \n\nWhen my wife bought me an Ipod for Christmas in 2001 or 2002, it became the first and only Apple product I would ever own. It was a device to play music. I plugged it into my stereo system and I was smitten. I have to admit that it was one beautifully designed piece of technology. It was incredibly well built. I still own it, but I doubt I could do much with it and its outdated software anymore. I had gotten my first cell phone sometime around 1998, and I didn’t see the two devices as being even remotely similar in function. \n\nWhen first Iphone was released in early 2007, I was firmly anti-Apple, with the only exception being my Ipod. I did use it to buy and play music. Still, it was already apparent that even Itunes was a locked down marketplace. Apple was the definition of closed source. Microsoft wasn’t great either, and Apple’s tech always provided a more user friendly experience, from what I was told. I had no first hand knowledge since I had never used it. \n\n![jobs](https://upload.wikimedia.org/wikipedia/commons/d/dd/Steve_Jobs_and_Macintosh_computer%2C_January_1984%2C_by_Bernard_Gotfryd_-_edited.jpg)\n\n\nBy then I had become deeply entrenched in Austrian economics and libertarian philosophy. Apple just really rubbed me the wrong way. That 1984 advertisement seemed more ironic than ever. Apple was Big Brother in my eyes, creating a world of conformists needing the next cool thing. George Orwell is probably still spinning in his grave. It didn’t matter to me that Apple wasn’t the government. There was something about those clean white lines and staged presentations that screamed totalitarianism. People I respected told me Jobs was a visionary genius, and I begrudgingly had to agree. That wasn’t enough for me to buy an Apple product, though. Once the smartphone became ubiquitous I naturally got an android. \n\nI soon realized that I liked tinkering around with my phones. I had always been what I would describe as a tech fan boy. I spent hours messing with my work computers when I should have been actually working. I’m a lawyer by trade, and my aptitude is not towards tech or programming. This is not false modesty. I loved the idea of learning about the stuff, but I knew I didn’t have the ability to go anywhere with it professionally. I just really enjoyed playing around. That’s when I discovered that you could really tinker with Android phones. Unlike with Apple, they were for the most part unlocked, and I started modifying them. I particularly liked my Motorola Droid for doing mods, and owned a few of them over the years. I would go to sites like Android Central or Android Authority and learn how to flash roms, download weird apps, speed up the clock settings, and do all sorts of other stuff that really served no practical purpose. It was fun, but I bricked my share of phones. I couldn’t believe people would buy an Iphone and miss out on this joy. Both the hardware and software were inpenetrable. Forget even trying to get an Iphone repaired. The Apple ecosystem was like a prison.\n\n***”All in all, it’s just another brick in the wall"***\n *Roger Waters*\n\nThe company became a symbol for me of all I disliked about corporate America: Commercialism, conformism, and living within the “walled garden” of their ecosystem. I couldn’t even look at Jobs on that big stage, wearing that black turtleneck, preaching to the masses. To me, it was oppression, the opposite of freedom.\n\nOf course, Bill Gates wasn’t much better. I soured on Microsoft too. I started hearing about Linux but didn’t have the motivation to try it until probably 2014 or 2015. There were many fits and starts. I found it difficult to accomplish many work tasks on my basic Ubuntu machines, so I invariably went back to Windows. It wasn’t until this year that I finally made the switch for good. Being retired makes it easier.\n\n\nIn the meantime, my disdain for Apple grew. Revelations about Job’s personal life, his treatment of subordinates, and Apple’s exploitation of low cost labor overseas irked me. If you’re interested in reading more about Steve Jobs, Walter Isaacson wrote the definitive [biography](https://www.bookishelf.com/book-review-steve-jobs-the-exclusive-biography-by-walter-isaacson/). When Jobs died I thought that Tim Cook would maybe change things for the better. I do like him better than Jobs, but that’s a low bar. He continued the tradition of hype, fashion, and exploitation. If you’re interested in reading more about Apple’s labor practices in Asia, read the book *Dying For an Iphone* by Jenny Chan. Every “new” model was extraordinarily overpriced, but the marketing machine kept pushing them out the door. Every slight model change required the purchase of a new, overpriced charger. Every dollar was squeezed out of the loyal sycophants. To make matters worse, since the release of the IPhone 4 every user’s location is recorded several times a day with a time stamp. Then the information is transferred to an unencrypted file on your phone. This is particularly worrisome now that we know that Apple [cooperates](https://techcrunch.com/2013/06/17/apple-nsa/) with the NSA Prism program. \n\nAs time passed I discovered bitcoin. I first heard about it at some Libertarian Party meetup in 2012. I dismissed it, to my everlasting regret. I finally bought some in early 2018, and have become more deeply committed the more I learn. I started following the young developers in the space like I would follow players on the New York Mets, my favorite baseball team. Knowing how modest most of them are, they would be embarrassed to know how much I revere them. So, imagine my shock when I discovered that many of them used the Mac OS and had IPhones. I know they are younger than me, and they know a hell of a lot more about computer science than me. But still. Apple just struck me as so antithetical to the idea of innovation, revolutionary tech, and most importantly, bitcoin. I couldn’t think of Apple and bitcoin in the same sentence, and I still can’t.\n\nLate last year I found nostr. I had long ago abandoned all social media. I despised Facebook, Twitter and Google with the same fervor as Apple. I was incredibly disappointed to discover that the best nostr client, Damus, was only available on Apple IOS. I wasn’t shocked, just jealous. I didn’t care how good Damus was, though. There was no way I was going to give money to Apple just to find out. \n\nNow Apple is threatening to remove Damus from their App Store. They also recently delayed approval of the latest update to the Zeus app before allowing it to remain. I understand the consternation this is causing, and I know they want to get back into the ecosystem, but I can’t bear to watch these brilliant, creative innovators grovelling before the small minded gatekeepers of the Dark Empire. I know that sounds overly dramatic, but it is how I feel. Apple is the status quo. Apple is a major cog in the old system. Apple is one of the problems that nostr and bitcoin solves. It’s not just Apple. As I said earlier, Facebook, Twitter, and Google are members of the same empire. \n\n***“Orthodoxy means not thinking--not needing to think. Orthodoxy is unconsciousness.”***\n*George Orwell, 1984*\n\nI planned my own modest escape. Android is only slightly better than Apple IOS. It is a more open system, but those doors are gradually closing too. I decided to switch to Graphene, a privacy oriented, de-googled version of android. I ordered my Pixel 7 the other day and began the process of switching to Graphene. I needed to unlock the bootloader. At first I tried my linux laptop. After hours of installing packages and copying code into the terminal, I gave up. Then I tried it on my Windows 11 laptop. The process was even more complicated. I was downloading drivers, entering commands in Power Shell, and searching help sites for answers, all to no avail. Once again, I failed. I was angry and frustrated. In a last ditch attempt, and against everything I stood for, I borrowed my daughter’s MacBook. I connected the phone to the laptop, hit a few keys, and Voila! It worked. The bootloader was unlocked immediately. I had the phone loaded with the Graphene OS in minutes. Easy as pie. I was both happy and humiliated. I caught a lot of abuse from my family. You see, I am the lone infidel in an Apple worshipping house. It was a rough afternoon. \n\nI’m not a very spiritual guy, but I had the irrational thought that Steve Jobs had exacted his revenge on me. In the end, the beast he built had helped me escape. I was grateful. Does it change my mind? No. I still hate Apple.\n\n\n\n\n \N 11938 \N 19625 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.25712430918391 0 \N \N f 0 \N 0 148310328 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 19367 2023-05-01 03:13:26.953 2025-03-29 22:39:47.903 Bangladesh Protests: A Rebirth of another Islamic Extremist State Hope is despair in modern world or so it seems. The current situation of world isn't hidden from any of us and what we've witnessed in a matter of few days today, validate this 'deep and everlasting state of despair' even more strongly. Bangladesh protests are another fine example of killing a democracy and killing hopes for humanity and giving rise to Islamic extremism among the most lovable people who speak one of the sweetest languages in the world. \n\nThe world is already in a big mess with full scale wars taking place in more than two geographical locations. Whether these wars aren't enough, we are already listening of civil unrests/protests from multiple countries. As a person of democratic and secular beliefs, I'm not against protests by people for their rights. But what irks me that all of the protests end up to be ugly and violent, be it recent Venezuela or UK. \n\nAnother thing that shatters me a lot is the MSM of our times. Instead of digging more upon them right now, I would just say that MSM has lost the way of reporting. It will most probably be biased and incomplete of information if you read about such events from them. \n\nAnother such violent protests have been taking place in Bangladesh since mid July. The headlines, if we read from MSM, will show like '300 killed in protests in Bangladesh', '96 killed yesterday' and so on, are written to seek reader's attention and are often far from reality. \n\nIn the case of Bangladesh, what I've listened through real mouths, it's the public servants (Police) who have lost more lives while trying to stop a violent mob of students in the capital. As it was a student union led protest, the use of life taking weapons by armed forces has been denied. Even to protect their lives from the stoning and fire bottles from students, those servants could do nothing except retreat. And finally, they gave up today after they got no support from Army against a mob of a million students who were offered talks by the PM, but they took the route of violence. Let me show you some pictures of these students to decide whose lives might have been lost. \n\n![](https://m.stacker.news/43599)\n\n![](https://m.stacker.news/43600)\n\n![](https://m.stacker.news/43601)\n\nNow, the innocent Students have stormed into the PM house in Dhaka and just shamelessly either destroying the building or stealing things of utility in packets. \n\nhttps://youtu.be/0K78XxVr9G8?si=UfDRCqOBGBoAeuOm\n\nThe innocent students have also attacked buildings of worship of other religions and demolished them because it was necessary for their Justice. \n\nhttps://youtu.be/oZ8t9SMqS8s?si=8XtqBChhdoPZs0cw\n\nThe innocent students have even set fire to public transport, government veichles and many buildings because it's what a student should be doing. \n\nI'm no expert of reporting on such issues but I know the reality because I only speak what I see from my eyes or listen through my ears. I'm gonna make a real statement now and as you know reality is harsh. \n\n## Bangladesh is now just another Islamic Extremist State. \n\nThe protests in Bangladesh have been sponsored by the opposing party (BNP) which had been demanding the resign from Hasina since January this year. \n\n> The main opposition party, the Bangladesh Nationalist Party (BNP), demanded that the government hand over power to a neutral caretaker government before the next elections. This has been rejected by Prime Minister Sheikh Hasina, who vowed that "Bangladesh will never allow an unelected government again"\n\n# [Read here](https://en.m.wikipedia.org/wiki/2024_Bangladeshi_general_election)\n\nTo tell you the truth a culture of violence and Islamic extremism has been developing ever since 1971. The Madaras have been teaching young kids about 'the importance of zihad', it was just that they couldn't get organised but for this time, they got the support from students. It's now clear that Bangladeshi extremists have now become organised and they have been well funded, most probably from Pakistan and other extremist countries. For, the reasons, how it all happened, here's a research paper independently done..\n\n# [Religious Extremism and Nationalism in Bangladesh](https://dkiapcss.edu/wp-content/uploads/2011/03/PagesfromReligiousRadicalismandSecurityinSouthAsiach17.pdf)\n\n# Welcome to the Islamic State of Bangladesh.\n \N 974 \N 19367 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.7115671777973 0 \N \N f 0 \N 0 188752431 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2238 2022-10-06 19:15:16.74 2025-03-29 22:39:50.517 \N > The contents of private messages on Nostr are encrypted, but when and who you are talking to is currently 100% public information.\n\nImportant to understand how your comms work. Nostr is not a replacement for privacy messaging apps. https://example.com/ 4259 2235 2235.2238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.21824814743218 0 \N \N f 0 \N 0 96381558 0 f f \N \N \N \N 2235 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 19971 2023-05-03 15:44:06.001 2025-03-29 22:39:47.904 Do you self host? I am looking into buying an Umbrel Home and paying the premium for the easy set up. Do you use a home server? What's your set up? \N 718 \N 19971 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.9234941381767 0 \N \N f 0 \N 0 150309501 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2194 2022-10-05 11:53:09.439 2025-03-29 22:39:50.517 \N What??? Siggy lost his hat? \n\nMy whole SN worldview has been turned upside down. I need to go do my next set of 25 push ups and then figure out how to pick up the pieces from this news. https://example.com/ 8080 2193 2186.2188.2193.2194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.18553091726659 0 \N \N f 0 \N 0 187582811 0 f f \N \N \N \N 2186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2258 2022-10-07 01:52:55.621 2025-03-29 22:39:50.517 \N beat me by 6 seconds 😨 https://example.com/ 18101 2186 2186.2258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63073394550747 0 \N \N f 0 \N 0 9676946 0 f f \N \N \N \N 2186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2195 2022-10-05 12:09:50.987 2025-03-29 22:39:50.517 \N Hey @k00b, \n\nI just heard KR is stepping away from SN. I don't know what his exact functions with SN were but just throwing it out there that if you need help with any non technical related things I am available to lend a hand. https://example.com/ 20683 2188 2186.2188.2195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9075701298614 0 \N \N f 0 \N 0 78293792 0 f f \N \N \N \N 2186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416043 2025-02-25 10:51:10.743 2025-03-29 22:39:50.517 \N Is this a young technology issue or inherent to how nostr works? https://example.com/ 19459 415637 415637.416043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89877493734742 0 \N \N f 103252716 \N 1 51857157 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2777 2022-10-19 22:01:35.321 2025-03-29 22:39:50.517 \N A warm night, clear skies... high on LSD (for the first time in my life) in a beautiful cabin in rural Australia, listening to Pink Floyd (*cliché, I know, I was laughing to myself at **how** cliché it was as it was happening, but it really was just the perfect fit for the moment*), gazing at the stars, realizing that there comes a point in each and every one of our lives where we have to make a choice whether we want to become a "part of the vastness" or a "part of the nothingness" and making the choice that **I most definitely want to become a father** as *we are the creators*, and having children is the most creative and important thing one can do as a human being. \n\nA very surreal experience that, strangely enough, was also one of the realest experiences I've ever had. \n\nI'm not a father yet but that night changed me in a profound sense and I'm working hard every day to become the best man I can be for my future wife and the best dad I can be for my future children. \n\nI also wrote something down that night. I think of it as a poem in and of itself so I guess the "poetic" aspect of the moment should be double or triple checked:\n\n*"The vastness\nAnd the nothingness\nThe difference between them\nIs the human experience"* https://example.com/ 14370 2771 2734.2771.2777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.36484671516962 0 \N \N f 0 \N 0 53625190 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2872 2022-10-20 17:08:10.321 2025-03-29 22:39:50.517 \N Pools are not as much evil as you might think! :P https://example.com/ 16847 2866 2828.2866.2872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6299682351173 0 \N \N f 0 \N 0 68708719 0 f f \N \N \N \N 2828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5936 2022-12-29 07:08:04.624 2025-03-29 22:39:47.906 Trump and bitcoin The bitcoin and cryptocurrency chatter in the political sphere just keeps ramping up. Personally, I see this as a good thing, a sign of things growing more and more normalized and mainstream. It also shows that bitcoin is no longer able to be avoided by those who, until recently, have loved merely snuffing it away as a tulip fad. \n\nNamely, banks, Wall Street, and politicians are taking note and waking up. This is partly due to the fact that the financiers see money to be made. For instance, the turnaround on the Ethereum ETF was astounding. I'm not sure that anyone who is not on Wall Street or "inside the beltway" (i.e., Washington political insiders) knows exactly why the mood on the ETH ETF suddenly changed from, "No way, ain't happening," to, "Yes, it's happening, and it'll be approved by the end of the week." And it did. \n\nThe second reason I think the powers-that-be are waking up to bitcoin and crypto is that we the people are demanding they do so. It's becoming unavoidable to *not* pay attention. Intellectual property and innovation are being drained away from the U.S. (see meme below). People are taking notice and people are blaming politicians for this lack of legal clarity, protection, or outright aggression toward this intellectual property and innovation. Angry people means angry voters, and that gets the attention of vote-lusting politicians.\n\n![](https://m.stacker.news/33239)\n\nThe well-worn "[quote](https://apnews.com/article/archive-fact-checking-2315880316)" of\n\n>1. First they ignore you,\n>2. then they laugh at you,\n>3. then they fight you,\n>4. then you win.\n\nmeans we're squarely in stage 3. Wall Street seems to be warming up to bitcoin most quickly, probably because they see money to be made (witness the bitcoin ETFs and the miraculous turnaround on the ETH ETFs). Banks seem to publicly still be anti-bitcoin (they scared), though they're working the other side of the coin as well (witness Jamie Dimon's public comments and JPMorgan's involvement in the ETFs). And as far as politicians, well, we all know of Senator Elizabeth Warren and her "anti-crypto army." Phase 3. Personally, I think her stance is little more than a stunt pandering to her base, a freakshow with the aim of keeping her name in the news. The "bitcoin is a scam" line is an easy to digest clickbait trope that gets one's name in the headlines. And, that's it. The tripe about protecting the helpless, or those at the bottom of the income ladder, or whomever, is merely verbal cover for the pandering. If politicians really wanted to help the poor, they'd truly commit to an army battling *inflation*...the devilish thief that steals away everyone's earnings, *especially those at the bottom of the income ladder*. If they wanted to truly help those "living paycheck to paycheck," politicians would attack inflation with sound money policies instead of enacting policies that exacerbate and accelerate it, and thus hurt the poor more than anyone.\n\nA third reason I think things are changing is that a growing number of these folks are waking up to the fact that they're realizing that bitcoin is unstoppable. Wholly frustrating to them, they're realizing it is beyond the control of their power-hungry souls. There is [no off switch](https://x.com/GoingParabolic/status/1721274902655762651), Dave Ramsey, and Satoshi can't come back and [erase it](https://cryptoslate.com/jpms-jamie-dimon-believes-satoshi-nakamoto-will-either-increase-or-erase-bitcoin-supply/), Jamie Dimon. \n\nhttps://files.peakd.com/file/peakd-hive/crrdlx/EpvjSHBENTZ8952TVb7AZHETYLQj5K8SkiThXyUWYCRwxPQ5JPaZhepAzPrKcVqWkQp.png\nSource: https://wtop.com/inauguration/2021/01/inside-joe-bidens-newly-decorated-oval-office/\n\n### Change of tune\n\nSo, when the bitcoin and crypto talk recently began to turn in the political sphere, this is a good thing right? We've all seen articles such as [this one](https://protos.com/donald-trump-is-now-good-with-bitcoin-wants-its-future-made-in-the-usa/) about Trump pandering to bitcoin and crypto voters. Trump seems to have warmed to bitcoin and crypto considerably since his presidency days. At least he *says* so.\n\nMost of the things I've seen online have been akin to, "This is great! Bitcoin voters might decide the election and then we'll have a pro-bitcoin, pro-crypto presidency!" \n\nI've been a bit surprised though at the push-back that has been "out there." More than a couple of people, some prominent people, have responded such as, "Don't believe any of it. Politicians will say *anything* to get votes. If he was pro-bitcoin, he would've done it when he was president." One person wrote something like, "Don't even participate in their voting. If you vote, you're just playing into their hands, a pawn they're moving around." We plebeians definitely don't hold the power, but I'm not sure what the alternative is.\n\nA few things here: first, words like Trump's are politics. The default for all is to *not* believe. Secondly, I think this skeptical view is healthy. Frankly, it's the bitcoin way: don't trust, verify. Third, we've all been burnt many times over by politicians' words and their following actions. I think of going to the movies. In cinema there is the concept of the "voluntary suspension of disbelief"...the "contract" when stepping into the theater that says, "If you agree to entertain me, then I agree to forget that there's no possibility of a 100 foot tall gorilla climbing the Empire State Building and swatting helicopters." To a degree, we kind of expect this type of thing politically...we understand that politicians say anything, but also don't exactly expect them to follow through completely as stated. \n\n>Side note: I once heard a movie critic griping about "King Kong" the movie by making the point, "There's no way a woman can survive wearing nothing but a slinky night gown in the middle of the New York winter, of course she'd freeze to death. That's outlandish!" This complaint was being made despite the 100 foot gorilla is swatting helicopters in the background. I guess the slinky night gown suspension of disbelief was too much.\n\n### The question, then\n\nI suppose my ultimate question is, "What would you prefer to hear a politician saying regarding bitcoin and crypto?"\n\n1. "It's all tulip mania, scammery, and needs to be totally banned today."\n2. "It's remarkable tech, sound money, and needs to be totally free to flourish."\n3. "It's a mix of terrific and scammery and we need to work with the good and squelch the bad."\n3. Nothing.\n\nThere's no question in my mind that the ultimate response by governments is going to be, "Bitcoin has a place, we just need to make sure everything is on the up-and-up." Effectively, that's what Trump said in the sentence: \n\n>I’m fine with it. I want to make sure it’s good and solid and everything else, but I’m good with it.\n\nI totally get that there are nuances here. The "good and solid and everything else" implies regulation in some form. That, of course, is a spectrum of control from almost none to total CBDC surveillance money. Personally, I wish it would be regulated no more than anything else. In other words, regulated very little, but prosecute the criminals. Scammers and thieves using bitcoin and crypto should be punished for fraud and larceny, but don't punish the vehicle they use to commit the fraud or larceny. It doesn't matter if they did a phone scam or crypto scam, the crime is the fraud and larceny, not the tool, the telephone or computer. It's the same as murder by gunshot or murder by hammer, we prosecute murder regardless of the weapon. (And we don't ban hammers when a hammer murder occurs.)\n\nYes, Trump's earlier words were not pro-bitcoin. But, can't people change? Isn't "orange-pilling" and "going down the rabbit hole" a process? And, again, if not these words, what would you prefer that a politician say?\n\nWe bitcoiners hate to trust anything, but in the case of politicians' words during an election and their actions in office, there's no other way other than trust-and-then-see. And yes, ultimately, it is *actions* that matter, not words. The choice then is a candidate who openly says he's against bitcoin and crypto and favors regulation or a candidate who says he's "okay with" it. \n\n----\n\n>Note: this isn't necessarily meant to be pro-Trump, I try to stay out of politics. This is just an umpire calling them like I see them, calling balls and strikes. In this situation, Biden/Warren are pitching balls and Trump is pitching strikes.\n \N 795 \N 5936 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.8767381372401 0 \N \N f 0 \N 0 182330500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421122 2025-03-01 12:16:15.724 2025-03-29 22:39:50.517 \N Hey @k00b and SN - author of the tweet thread here - thanks so much for responding and having this conversation! I am a regular reader of Stacker News on my morning/evening commute and love the conversations that happen here.\n\nI want to clarify that use of bitcoin by itself is a compelling reason for me to use Stacker News, even *if* a SN clone could be mostly built on traditional payment rails. This is because I believe in the economics and technological principles of bitcoin, and am attracted to products that integrate bitcoin. \n\nMany of my friends and family are no-coiners who haven't taken the time to understand bitcoin, and they wouldn't adopt bitcoin right now solely based on alignment with the principles of decentralization and clear issuance policies. I think that one way that we will onboard the next wave of bitcoiners is by creating digital services that can *only* exist on bitcoin.\n\nI've seen a lot of excitement over the recent wave of products and businesses being built on lightning, and I've been excited by many of them myself. I was trying to figure out which of them have developed products that couldn't be quickly copied by entrenched tech companies and none of them seemed to have a major moat that I could see. \n\nIf and when SN is non-custodial, it would be a true step forward and offer something unique relative to the legacy payment rails. \n\nI hope the message comes through that I am as bullish as ever on bitcoin, lightning, and the ecosystem that continues to grow each year. With so many smart people learning, building, and supporting each other, I'm confident that some folks will figure out some truly novel products that can only be built on lightning in the coming months and years. https://example.com/ 7827 421121 421121.421122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0800051996951 0 \N \N f 579252034 \N 5 76437952 0 f f \N \N \N \N 421121 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 72384 2023-10-10 09:04:44.839 2025-03-29 22:39:47.906 hodlonaut: I won \N https://nitter.it/hodlonaut/status/1583086284792205312 20275 \N 72384 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.82317559332012 0 \N \N f 0 \N 0 228218202 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 74522 2023-10-16 21:14:42.511 2025-03-29 22:39:47.906 What is the business model of a BTC Wallet provider? How does a wallet as Sparrow, Electrum or Phoenix wallet makes money???\n\nDo they charge fees to their users?\n\nAre the users the product?\n\nWho can explain the basics of this world? \N 20776 \N 74522 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.41302633201061 0 \N \N f 0 \N 0 115320513 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 421603 2025-03-01 19:28:54.337 2025-03-29 22:39:50.517 \N Degoogled Android or death ✊ https://example.com/ 1729 421567 421567.421603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5128300880427 0 \N \N f 79720524 \N 1 47851650 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422234 2025-03-02 10:32:23.729 2025-03-29 22:39:47.906 Writing software: robustness vs being exact Hi there,\n\ntoday we had a simple but interesting discussion because a user complained about our software refusing to generate his Excel file because the name he typed in was .txt. Software threw an error "ValueError: Invalid extension for engine blablabla : '.txt'. Might not have been the most understandable error message but whatever. So far so good.\n\nThe uninteresting part in this specific example: It would take 1 minute to catch this error and rename the input to .xlsx. That's what I call "robustness" approach. The "being exact approach" would be to insist on the user input being used as intended. And every component insisting of getting correct inputs before it.\n\nThe interesting general question: What is your opinion on how software should handle things like that in general? **Especially deeper in the stack**. If we build software on top of software on top of dependencies on top of dependencies. Should we always insist our software to be used precisely? Which things should be catched and handled? There are extreme cases in both directions. But what is a good rule of thumb \n\nPoll is how you would handle our situation (I chose the "robustness" approach). Tell me your thoughts on this general topic in the comments. \N 4167 \N 422234 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.583440888909 0 \N \N f 115212395 \N 1 117414633 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1520 2022-09-18 11:06:29.888 2025-03-29 22:39:50.517 \N Go to El Salvador and build, organize and run a network of Bitcoin Schools.\nEDUCATION IS THE KEY FOR MASS ADOPTION. Not the price.\nAnd El Salvador MUST be an example for the whole world. Must succeed. https://example.com/ 7869 1357 1357.1520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5324742657255 0 \N \N f 0 \N 0 154523529 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3020 2022-10-23 15:45:37.052 2025-03-29 22:39:51.18 \N If you feel all excited now, just think of how you'd feel if the price went down by $10,000\n\nIts still Bitcoin. Its still working, the price has gone down before. Its gone down from $69,420 to $15,000 before, but why after all that FOMO do you feel like the world has ended over $10,000?\n\nDollar cost average brother. It'll keep you sane https://example.com/ 8242 3017 3017.3020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.12826296466888 0 \N \N f 0 \N 0 218627608 0 f f \N \N \N \N 3017 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423386 2025-03-03 10:18:18.914 2025-03-29 22:39:51.18 \N This will be a blast to use not to mention all of the other features you guys have implemented. Excited to try it out https://example.com/ 15806 423314 423314.423386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0221354771062 0 \N \N f 256427313 \N 3 144915703 0 f f \N \N \N \N 423314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 422792 2025-03-02 17:39:10.713 2025-03-29 22:39:51.18 \N Ah yes, I'm a warmonger for... not wanting myself and friends of mine to be murdered by Russian invaders?\n\nPeople I personally know had their homes taken during the initial stages of the invasion. Russian forces looted their homes, taking everything of value. Many of the people who didn't flee in time were simply murdered - a common way to die was to have Russians throw grenades into your basement window. And for that matter, lots of the women and girls who didn't flee in time were raped.\n\nHow did those people I personally know get their homes back? Not through diplomacy or negotiations or dialog. They got their homes back because Ukrainian society organized a defense, and killed those Russians in large enough numbers that they abandoned those parts of Ukraine, and went back to the border. Unfortunately not every home - I also know people whose homes are still in occupied territory. But in time, this theft of land and resources can be entirely reversed.\n\nIt's not "warmongering" to defend yourself. It's no "warmongering" to help other's defend themselves. What is warmongering, indirectly, is to try to stop others from being able to defend themselves. You, @DarthCoin, are warmongering by the fact that you are setting up conditions where future, genuine, warmongerers like Russia will be able to profitably repeat wars against defenseless targets.\n\nWhen you get down to it, what Russia is doing is ultimately the same as common thieves and murderers. Russia is invading land, and killing and subjugating the population, and stealing their property and resources. Any sane, intelligent, person supports the use of violence to stop murder and theft. You are not such a person. https://example.com/ 7654 422673 422673.422792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.482577922264 0 \N \N f 130936597 \N 1 219610963 0 f f \N \N \N \N 422673 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 41155 2023-07-23 15:55:13.699 2025-03-29 22:39:47.906 25-year old video shows Hal Finney talking zero-knowledge proofs tag @ek https://www.youtube.com/watch?v=e4ha2NTEox0 16695 \N 41155 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.26891648946472 0 \N \N f 0 \N 0 129582571 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3693 2022-11-08 21:23:25.395 2025-03-29 22:39:51.18 \N I've also found that I'm not primarily adding value through original posts. I try to make them sparingly and always with a mind to what the community has expressed interest in.\n\nWhere I seem to provide the most value is in commenting on others' posts. This is in-line with the reason I started spending time here. I want to help alternative platforms challenge Big Tech. For that to happen, sites like SN need active users to drive network effects. I'm glad I can make SN better for those posting good original content.\n\nThanks for everything you've done to make this a better place, too. https://example.com/ 5852 3687 3674.3677.3679.3681.3682.3683.3687.3693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6891131709119 0 \N \N f 0 \N 0 245697591 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422940 2025-03-02 19:44:39.646 2025-03-29 22:39:51.18 \N Sir, this is the Wild West https://example.com/ 16858 422894 422894.422940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3840264411257 0 \N \N f 199513712 \N 1 196437285 0 f f \N \N \N \N 422894 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3689 2022-11-08 21:08:46.441 2025-03-29 22:39:51.18 \N > First every sub need a pinned post that contain a description of the sub and the name of it in the top , the admin of it ,posting fee... All this in a box in the top not like now\n\nperhaps the sidebar could be useful here, and maybe an expandable gear icon on mobile to show these settings… not sure it needs to look like a pinned post https://example.com/ 20381 3687 3674.3677.3679.3681.3682.3683.3687.3689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8063675917274 0 \N \N f 0 \N 0 1566906 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3731 2022-11-09 11:34:37.498 2025-03-29 22:39:51.182 \N - move the fucking hn posts to a sub named "garbage"\n- create a sub for marketplaces or merchants ads, promos, offers, announcements etc\n### create that bitcoin circular economy right here on SN!\n\n- create a sub for any other crap posted that is not about Bitcoin. https://example.com/ 19735 3721 3490.3718.3721.3731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.46395310572 0 \N \N f 0 \N 0 231034363 0 f f \N \N \N \N 3490 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3767 2022-11-09 19:19:02.101 2025-03-29 22:39:51.183 \N “Cognitive skills will be rewarded as never before. It will be more important to think clearly, as ideas will become a form of wealth.”\n\nName the book… https://example.com/ 8037 3762 3758.3760.3762.3767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.98334708683491 0 \N \N f 0 \N 0 130034473 0 f f \N \N \N \N 3758 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434612 2025-03-12 04:21:04.221 2025-03-29 22:39:51.183 \N I co-sign this @ek\n\nI do wonder if the recent spiciness around Signal and its board might be contributing to this stuff. It is hard to separate the technical from the political as we know from the bitcoin world. https://example.com/ 8059 434026 433844.434026.434612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2502275502872 0 \N \N f 0 \N 0 32315363 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423485 2025-03-03 12:05:12.184 2025-03-29 22:39:51.183 \N I describe stacker news as a bitcoin information hub. You can ask specific questions and crowd source answers quickly (if your post gets some love lol). You can even earn and tip sats while you're at it!\n\nSeems to be easier to ask questions and get answers here than twitter (in my experience). https://example.com/ 7978 423468 423468.423485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.752447938486007 0 \N \N f 73610918 \N 1 95578320 0 f f \N \N \N \N 423468 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423492 2025-03-03 12:16:01.339 2025-03-29 22:39:51.183 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **10** https://example.com/ 18426 423276 421720.421840.421855.421925.421936.423276.423492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.369943667521 0 \N \N f 380594702 \N 3 210371633 0 f f \N \N \N \N 421720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3772 2022-11-09 20:06:48.026 2025-03-29 22:39:47.906 What are you thankful for? I struggle singling out specific things to be thankful for. Practically, we all should be thankful for nearly everything, good and bad. I'll keep mine abstract, as disappointing as that probably is:\n\nI'm thankful for problems. I'm thankful for struggle. I'm thankful for everything I must learn to solve problems and overcome struggle. I'm thankful for what I learn about myself when I do. I'm thankful for pain's reminder that I'm thankful for life when I make the choice to endure it.\n\nWhat are you thankful for? \n\n*I was going to post this in ~based but it didn't survive. I think it was just ahead of its time - we can all imagine the white-pilling that'll take place there some day. Speaking of thanks, I'm thankful for all the territory founders sticking out our long, arduous transition to non-custodial wallets. It's nearly over and I can't wait to spend forever making it worth it.*\n\nHappy thanksgiving! \N 1474 \N 3772 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.80759776388946 0 \N \N f 0 \N 0 58806837 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 423917 2025-03-03 17:53:27.049 2025-03-29 22:39:47.906 My first experience with 'Attach Wallet' at SN — Blink and LN Address issues Hi stackers! \n\nFirst of all a huge thanks to @siggy47. He helped me understand how to set it up. Without his help I might have screwed it or taken longer to perform a simple task. **This is my first time recieveing any amount of Sats from anywhere. You can call me a noob in Bitcoin because I am.**\n\nAfter my discussion with him. I went to set up Blink wallet for 'Send Only' option and a 'lightning address' that too from Blink. Because I wanted to experience it, I set my "Desirable amount to zero" in the settings. \n\nI had around 11.7k sats in my SN wallet prior to setting LN address. What happened after I set the LN address from Blink was very surprising and baffled me. I started recieving various amounts in my Blink wallet and it went on for at least a minute until my SN wallet became empty. I couldn't understand why so many transactions?\n\n![](https://m.stacker.news/47710)\n\nFrom my 11.7k sats, I only received 11.4k sats. The rest were gone in fees. From what I know this is too much fees for 11.7k sats. You guys tell me if I'm right or wrong. \n\nBut this isn't all, from there whenever I recieved a zap, it went to my Blink wallet in fragments and everytime there was at least 1 sat fees. The below screenshot is for 1 single zap. \n\n![](https://m.stacker.news/47712)\n\n\nThen, I started zapping directly from Blink wallet and one thing that again baffled me was 1Sat fee on every transaction for zaps. My default zap is 13 and to pay 1 sat makes it around 8% in fees. While paying through SN wallet, we didn't have to pay this fees. \n\nAfter being irritated for a while, I decided to set my Desirable SN wallet limit to 20000 Sats so that the zaps don't withdraw directly to my Blink wallet. And, this is how I'll also be able to zap everyone again from my SN wallet. I'll also withdraw amount less than 20000 sats so that it doesn't cost me too much fees.\n\nSo, guys my overall experience with an attached Blink wallet and Lightning Address from Blink didn't go very well. If this is how an external wallet gonna be functioning for SN, I would rather go on to use SN wallet till I have option. \n\nKindly tell me if you have had the same experience or it's just I complaining here. \n\nAre other external wallet function in the same way?\n\nThanks.\n\n \N 16154 \N 423917 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5768594736461 0 \N \N f 797865537 \N 6 213306452 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 426030 2025-03-05 11:12:15.016 2025-03-29 22:39:47.907 Stoic Book Club: Meditations by Marcus Aurelius #1 - Debts and Lessons This post is the first in an experimental Stoic Philosophy book club series on Meditations by Marcus Aurelius. See the [genesis post](https://stacker.news/items/417471) here. Participants expressing interest are tagged at the end of the post, let us know if you're new and would like to join and be tagged!\n---\n# Introduction\n\nMy copy of [Meditations](https://www.amazon.com/Meditations-New-Translation-Marcus-Aurelius/dp/0812968255) included a really lengthy introduction section which was fascinating, but cost a delay in getting started with the discussion. It provided some personal background on both Marcus Aurelius and Stoicism, as well as some initial commentary on the work's style and recurrent ideas. Below is an outline of the points I found interesting and will try to remember as we go:\n\n## Marcus Aurelius\n\n* Marcus was a Roman, but the philosophical system was Greek. He wrote it in Greek.\n* He was emperor of Rome (obvs). His two main concerns in life seemed to be philosophy and the court. He expressed legislative interest in freeing slaves and in the guardianship of orphan. It was a priority for him to have a good relationship with the Senate.\n* His father died when he was very young and he was adopted by Antoninus, a childless senator at the arrangement of Hadrian the emperor.\n* His reign took place during the time of early Christian cults. It was illegal to be Christian under penalty of death.\n* His reign navigated a time in Rome during plague, and military struggles with Germanic tribes.\n* There is a possibility that near the end of his life, he realized that his son, Commodus, didn't share his character (Gladiator movie plot).\n* He was initiated into the Eleusinian Mysteries, a topic for another religious history post.\n* This work was written as a personal diary of sorts, without a known intention to be shared publicly.\n\n## Stoicism\n\n* Philosophy was not a study or course in school like it is today, it was seen as a design for how to live with many schools competing and sharing ideas.\n* The central idea of Stoicism is that the world is organized in a rational and coherent way. The term for this is *logos*. *Logos* operates in individuals as the reasoning function, but it also operates more broadly in the cosmos as the ordering principle of the Universe.\n* *Logos* is also an actual physical substance, pneuma, which is like a vital "breath of life" animating humans and living beings. When the object inevitably dies, the pneuma is reabsorbed back into the cosmos as a whole. This process happens at all conceptions of relativity (ex. subatomic particles appearing and disappearing at each and every moment, human body growing and decaying during a lifetime, the birth and death of the Universe in fire).\n* Stoics approved of participation in public life, which attracted the Romans as that was a cultural priority for them.\n* Marcus seemed to be heavily influenced by Epictetus, a slave-turned-philosopher, and a doctrine of The Three Disciplines in his work:\n 1. Perception: Objectivity of thought - see things for what they are without the coloring of interpretation or value judgments. Our duty is to control perception in order to protect the mind from erroneous beliefs.\n 1. Action - Perform our best on the things that are given under our control by the greater cosmic order. Cooperate actively in the world with other people and with the Universe itself. Act justly by treating others as they deserve in accordance with cosmic order.\n 1. Will - When events happen to us that are outside our control, we have a choice on how we relate to them. If we choose to interpret them as harmful, we suffer. Accept and acknowledge things happening beyond our control as good and natural by the order of the cosmic logos.\n\n# Book 1: Debts and Lessons\n\nTo get to the comparatively short content of the actual book we're reading, I guess I'll say that I was both surprised and pleased by the structure. In listing off a bunch of people that are important to him and deep, insightful appreciations for what he's learned from them, he's obviously very reflective. To be honest, it feels like a bit of a challenge to write about it. Most of my experience was simply recognizing myself in his perceptions. Other times I recognized attributes that I know I struggle with, or haven't cultivated enough of. Here are some of my highlights:\n\n5\\. From his first teacher, he learned "not to support this side of that in chariot-racing, this fighter or that figher in the games... and have no time for slanderers." To me this means to suspend a sense of judgement between two sides of an argument and not get swept away in drama.\n6\\. From Diogenes, in addition to the general statements of not wasting time on bullshit, the detail to "write dialogues as a student" seemed an encouragement to take more initiative and "learn by doing". Something I'm looking to cultivate more of.\n7\\. From Rusticus, I can identify a commentary on resentment when he is reminding to "behave in a conciliatory way when people who have angered or annoyed us want to make up".\n8\\. From Apollonius, I haven't thought so much before about the fine balance between losing self-respect or feeling ungrateful when receiving things from other people. I guess I would call this being "graceful"? I can definitely see times in the past where I've done both. It could be an art to both give and receive to/from other people. It's not sincere generosity to throw money at a friend or beggar arrogantly or contemptuously. Likewise, receiving with a wrong or imbalanced attitude makes a regret out of a gift. Very interesting...\n9\\. From Sextus, to "show intuitive sympathy for friends", I definitely can relate to situations where sympathy for others doesn't come naturally or organically. Feels to me like this quality isn't something you can "force" yourself to do, but one needs to become like that, where it's a natural reaction. Cultivating such qualities might take a long time and a lot of practice.\n10\\. From The Literary Critic Alexander, observing the behaviors he lists is a really beautiful way to capture the virtue of humility.\n13\\. From Catulus, again the topic of resentment -- perhaps it was a recurrent issue for him? It can be for me...\n15\\. From Maximus, I particularly like the phrase, "The sense he gave of *staying* on the path rather than being *kept* on it." Emits a feeling of dedication and commitment. Also a strong echo of the Stoic resolution to action where one is able, and that would be where to put your literal or metaphorical foot.\n16\\. From his adopted father, who "was qualified to govern both himself and them (the people)" echos the idea of an ordered cosmos where those who master themselves are qualified to grow their influence and take on more responsibility. Also, that he was able to delegate responsibility to experts is a quality I could learn more -- sometimes I find myself micromanaging out of a fear and need to relax and trust the Universe and others around me more. I particularly like the last sentence, "You could have said of him (as they say of Socrates) that he knew how to enjoy and abstain from things that most people find it hard to abstain from and all too easy to enjoy. Strength, perseverance, self-control in both areas: the mark of a soul in readiness -- indomitable." It is said elsewhere that a wise man appears to be a fool to the world around him, and he knows the world around him to be foolish... when one has wisdom the world is turned upside down. His depiction of this state is exciting and encouraging and feels like the soul is a rocket ready to blast off. LFG!!!\n17\\. The Gods. More on this later, but in particular, I appreciated his gratitude for "a father--who could keep me from being arrogant", which underscores the positive aspects of discipline and occasional harshness. Sometimes I wish I'd had a little more of that in childhood when seen in this context. Also, the fact that his children "weren't born stupid or physically deformed" seems like an observation to gloss over. But when you consider his wife had 13 children and many of them died young, I sense a man finding gratitude in what might have a painful category of life experience.\n\n## Reflections\n\nIt quite a long and impressive list of appreciable attributes. I wonder how many of the lessons he learned from those people were because they embodied them, or because he saw how they behaved and learned what NOT to do?\n\nOn the *logos* and the cosmic order, I sort of worry there is a danger that one can fall into an arrogant trap of justifying asshole behavior because their position in society reflects the "order in nature". For example, I it's not ok for a corrupt politician to lie, steal and take advantage of others because the cosmic order has granted them that position. It's also not ok for the USA as a "world leader" to war, meddle and violate the sovereignty of other countries because of it's position. I think it's important to temper this cosmic world order principle with the reality that everything, including that order is changing and dying. And if those in power do not use it with wisdom, they are destined to lose it, as can be seen with both examples.\n\nSo far, the principles we're discussing syncretize nicely with my understanding of Buddhism and meditation in other traditions. In #8, from Apollonius, says "to pay attention to nothing, no matter how fleetingly, except the *logos*". This feels like a description of a state of meditation to me. Paying attention only to the present moment. More importantly, by recalling his appreciation, this whole Book 1 reads something like an exercise in a Buddhist meditation practice called Metta. This is where you send love, compassion and kindness to yourself, people in your life, to all beings and to the Universe as a whole. The fact that he ended up at The Gods made it feel like an process resulting in the expansion of consciousness.\n\nMy original idea for this post was to additionally, go through a similar process to Marcus and list out important people in my life and appreciable things I've learned from them. Maybe I still will. But it's been a long day of reading and writing to get this out in current form. Really looking forward to what the rest of the group has come up with and taking up discussion. In the future, I don't expect my posts to be this long, but I wanted to include the introduction and kick this project off well. Let's carry the discussion forward!\n---\n# Participants\n\n* @siggy47\n* @cryotosensei\n* @carlosfandango\n* @Bitman \N 9169 \N 426030 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 2.00295700150882 0 \N \N f 55394667 \N 1 191060641 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3860 2022-11-11 01:32:14.093 2025-03-29 22:39:51.183 \N Clearly they have never been on Stacker News. https://example.com/ 17221 3852 3852.3860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1763127991427 0 \N \N f 0 \N 0 197667813 0 f f \N \N \N \N 3852 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434679 2025-03-12 06:31:28.752 2025-03-29 22:39:51.183 \N Overall CPI 7.8\nEnergy CPI 18.2\n https://example.com/ 998 434586 434189.434586.434679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4704589974667 0 \N \N f 0 \N 0 33435377 0 f f \N \N \N \N 434189 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7050 2023-01-20 15:35:36.768 2025-03-29 22:39:47.907 Nostr Relays: What Gives? Nostr twitter-like clients have a lot of passionate users, its clear, but after a few months of use, I am curious if these are really up to snuff. To be honest, when it comes to decentralization and censorship resistance, at times I feel it is riding on the coattails of Satoshi. But people like to talk about these features, so what gives? \n\n![](https://m.stacker.news/63827) \nMeme from @corndalorian\n\nNostr as communication protocol, uses relays for users to send and receive information, which means it has some degree of censorship resilience. I own my keys, so I can take my data to any client as I please. It is also open source and permission-less, meaning anyone with the technical knowledge can build on it. \n\nBut is it as decentralized and censorship resistant as the money users are zapping around on it? \n\nDoesn't the network effect, a term used to describe how value increases in proportion to the number of users, imply that users will benefit the most when they use the most populated relays? Is this not inherently centralizing? \n\nIf I opt out of a popular relay, and all my followers need to connect to the relays I'm publishing to to read my content (outbox model) - is this much of an improvement from mailing lists, where readers sign-up to receive newsletters in their mailbox? \n\nBesides, am I not effectively censored if new users cannot find my content on the well-maintained and high-traffic relays? It feels like if I don't use these public relays, then I'll never be able to participate fully in the network. \n\nAs Vitor Pamplona explained in a [blog post](https://njump.me/naddr1qvzqqqr4gupzq3svyhng9ld8sv44950j957j9vchdktj7cxumsep9mvvjthc2pjuqy88wumn8ghj7mn0wvhxcmmv9uq3wamnwvaz7tmkd96x7u3wdehhxarjxyhxxmmd9uqq6vfhxgurgwpcxumnjd34xv4h36kx) : \n\n>Remember, relays can see what your Nostr client is requesting and downloading at all times. They can track what you see and see what you like. They can sell that information to the highest bidder, they can delete your content or content that a sponsor asked them to delete (like a negative review for instance) and they can censor you in any way they see fit. Before using any random free relay out there, make sure you trust its operator and you know its terms of service and privacy policies. \n\nAverage users should fiddle with setting up their own relays, and still come out feeling they have to trust the operators will not store their data and sell it to the "highest bidder." This comment makes me feel I'm given a choice between an attention farming tech conglomerate or a faceless relay runner, yet the result is the same, which is that they can monitor my usage and sell my data. \n\nSo perhaps a certain amount of trust may be necessary for a project of this scope, which might seem a fair trade for being able to own one's own keys, but then should it be regarded as decentralized and censorship resistant if users are left trusting these relay operators? \n\nThese are genuine curiosities of mine that I have been hesitant to put to words and share. Truly, I love Nostr, and I realize there are many brilliant people involved in the projects to building on it. I'm just having trouble reconciling if it really is everything it is made out to be, or if I'm just drinking purple coloured kool-aid. \n\nI hope this post is not taken as a vote of non-confidence in Nostr projects; take it merely as the tired ruminations of a fiat junky slave with yet a few shards of hope in humanity.\n\nFR \N 1489 \N 7050 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.2280450696203 0 \N \N f 0 \N 0 135186231 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434736 2025-03-12 07:43:22.534 2025-03-29 22:39:51.183 \N How does a clogged mempool cripple Lightning? Existing channels can happily move funds around. New channels can be opened, it's just slightly pricier.\n\nCould you elaborate? https://example.com/ 8684 434396 434396.434736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6535226821799 0 \N \N f 0 \N 0 64556440 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7068 2023-01-21 09:13:10.253 2025-03-29 22:39:47.907 How Is This Art Bitcoin Inspired? tl;dr: I sell art and the ones in this post were inspired and made during my trip to El Salvador, studying bitcoin. 20% off the pieces in this post, ann yes you can buy with bitcoin. :) (Discount Code: STACKINSATS)\n[Here's the website](www.dilloncortez.art) \n\n# Here's the story\nBack in 2021 I was planning to move to Costa Rica. Right before I got my ticket I heard the news. Bitcoin was now legal tender in El Salvador. I got curious. I wanted to see what was really going on there with my own eyes and not through a Twitter post or a YouTube video. So I changed plans and moved to El Salvador. I wasn't there very long, just 3 months. That was long enough to talk with the locals and see what was happening. \n\n### There was a lot of good things. Also a few problems. \n**The Good**\n- Bitcoin has brought a lot of money into the economy\n- You can pay for your tourist visa and eat at most large restaurants using bitcoin, so you can stay private on your trip\n- You can export goods, paying in Bitcoin for your supply (more on this later)\n- The surfing was excellent. This was a much needed vacation for me. \n\n**The Bad**\n- Locals see Bitcoin as rich tourist money. That's also what it looked like to me.\n- Many people there are unable to read, so will never use Bitcoin.\n- Smaller restaurants and merchants were unwilling to accept it (also more on this later)\n- the first month was really lonely because I didn't speak the language yet. I did learn enough though.\n\n## The first piece\nBeing so lonely there, I would call friends and girls I was interested in, just for conversation. While I was on the phone with a girl I had been on a few dates with, I told her I was going to draw her. But she was so far away I used 2 photos from her Instagram and made this piece.\n![IMG_0979.jpg](https://m.stacker.news/18471)\n[Grab a print](https://www.dilloncortez.art/products/img_0979) - 20% off with code STACKINSATS\n\nI'm very happy with it and it's one of the ones that gets the most compliments from people who see it. While I was there I made a few more from things that I saw and photos I took. \n\n## Here's a couple that were made from photos taken on the beach in El Zonte\n![IMG_1078.JPG](https://m.stacker.news/18472)\n[Grab a print](https://www.dilloncortez.art/products/img_1078) - 20% off with code STACKINSATS\n![IMG_1077.JPG](https://m.stacker.news/18473)\n[Grab a print](https://www.dilloncortez.art/products/img_1077) - 20% off with code STACKINSATS\n## I wasn't just down there doing art.\nI wanted to see if I could solve any of the problems facing Bitcoin. The main one I went after was **It's so hard to buy regular everyday things with Bitcoin**\n\n### So I toured some plantations\n![IMG_1446.JPG](https://m.stacker.news/18475)\n### Found some high quality coffee \n![IMG_1437.JPG](https://m.stacker.news/18477)\n\nAnd set up an online shop to sell it. Marketing and advertising were pretty fun, and let me use my creativity in fun ways. \n\n## That led me to make this piece. The original banner image for the website.\n![IMG_1074.JPG](https://m.stacker.news/18478)\nYou can see a bitcoin in the top left in the background. \n[Grab a print](https://www.dilloncortez.art/products/img_1074) - 20% off with code STACKINSATS\n\n\n## The business was really difficult for 3 reasons.\n1. This was at the tail end of the pandemic. Shipping costs were through the roof. If I wanted to make $2 on a 1lb bag, I would've had to sell it for $50. That was all shipping. \n2. Recurring payments weren't possible then. I was running the business with only bitcoin, as a proof of concept. So it had to be online. without a subscription, I would have had to spend thousands on marketing to previous customers.\n3. the bear market hit, and few people were willing to spend their Bitcoin \n \nThese were enough to make me put the project on hold. I was spending way more than I was making and gaining very little traction. **Although, times have changed.** The bull market seems to be coming back and recurring payments are now possible on the lightning network. So I may be picking up the coffee business again, but idk. CPG is very difficult and has low margins. So for now [I'm selling art](www.dilloncortez.art)\n\nThe pieces I've shown here wouldn't have been made without Bitcoin. The rest of my art wouldn't exist because while I was in El Salvador I realized I liked making digital art. \n\nThat's why I'm giving y'all a discount. **Without Bitcoin, and the people believing in it, pushing it forward, this art wouldn't exist**\n[www.dilloncortez.art](www.dilloncortez.art)\nDISCOUNT CODE: STACKINSATS\n\n# Yes, you can buy with Bitcoin \N 15491 \N 7068 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6203436038395 0 \N \N f 0 \N 0 219489276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428286 2025-03-07 03:41:33.241 2025-03-29 22:39:51.183 \N Yeah, see? That's why I like SN and the team: they don't bitch around.\n\nThey announce, fix what's needed and move on- just as it should be. https://example.com/ 4238 428284 428205.428284.428286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2228225673484 0 \N \N f 152289573 \N 1 135243459 0 f f \N \N \N \N 428205 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 54839 2023-08-24 07:58:02.116 2025-03-29 22:39:47.907 I'm Doing My Part https://image.nostr.build/607a050c1787f7b55773c34795720eba7f59d6e2795ab7aaa088144a1d0ceb61.jpg https://image.nostr.build/9818e4d814161f1f8e2e8d7f991cd0f01020f8defc898ddfb60231176744fff1.jpg\n\n**[⚡ ZAP OP — Sergio](https://njump.me/nevent1qvzqqqqqqypzp4pn3d7rxpjfrn7l2jg56xjjhq9fv4597umpxy02uhe74lcaywjmqyf8wumn8ghj7mn0wd68ytnvw5hxkef0qythwumn8ghj7un9d3shjtnswf5k6ctv9ehx2ap0qqstftf0mvqtl4q769pheaet9cllryn2adlhm3js6m0raw8eyeedjnqkfyzwd)**\n\n---\n\n## [Is Stamping US Money Legal ?](https://www.stampstampede.org/faq/yes-its-legal/)\n**Yes, It’s Legal!**\n \N 20602 \N 54839 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.8501680948988 0 \N \N f 0 \N 0 118111569 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 427568 2025-03-06 13:51:23.852 2025-03-29 22:39:51.184 \N Hey gang!! It's little Friday now, I apologize for not posting yesterday but this cold is really taking its toll, but I still sent you all some positive vibes just as I am doing now, the weekend is almost here and it's time for us to bring our best self and give it a good push and show this week who's boss, remember that you're important and you matter and I wanted to thank you for being! Let's see what we do this weekend, in my case, recover my energies and get my A game for next week, we've got this, so I wish you a phenomenal day!! As always, be well and stay frosty my good friend https://example.com/ 7966 427251 427251.427568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7317266101007 0 \N \N f 232229204 \N 1 243353045 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427456 2025-03-06 11:58:54.272 2025-03-29 22:39:51.184 \N That is an intriguing thought. It brings to mind the following... 😂\n\n----\n\n# [Here's how 2 guys from Alberta are selling $300K worth of canned air a year](https://www.cbc.ca/news/canada/calgary/alberta-vitality-air-sales-update-bottled-air-1.5073762)\n\n## Company started after entrepreneurs sold a Ziploc bag full of air on eBay for $168 US\n\n![h555h.PNG](https://m.stacker.news/24183)\n\n> Troy Paquette sets up a device to suck in fresh air from the Alberta mountains, which is then compressed into cans that are sold with a breathing apparatus, demonstrated by Moses Lam. (Louise Moquin/Radio-Canada)\n>\n> ### [... read more](https://www.cbc.ca/news/canada/calgary/alberta-vitality-air-sales-update-bottled-air-1.5073762) https://example.com/ 20864 426780 426780.427456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.08222712317594 0 \N \N f 63495597 \N 1 93772126 0 f f \N \N \N \N 426780 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1375 2022-09-13 13:45:33.621 2025-03-29 22:39:51.184 \N Ready for SNL at 4pm cst, who’s watching? https://example.com/ 1624 1357 1357.1375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6616829020156 0 \N \N f 7044283 \N 1 148708783 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427253 2025-03-06 08:48:03.326 2025-03-29 22:39:51.184 \N what about doing this once a year, and giving the winner a special badge and some sats?\n https://example.com/ 10291 427251 427251.427253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4582518997131 0 \N \N f 530982520 \N 4 150408433 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 427820 2025-03-06 16:53:59.065 2025-03-29 22:39:51.184 \N "We broke 762 unique wallets. All of these had a zero balance.".... lmao, so.... they think they "hacked" a wallet because they got a private key in their equation and then the wallets were empty...?? LMAO They have no way to even check their work.. LMAO LMAO LMAO... They basically got a random answer, checked the wallet, and are claiming they hacked it.... I can come up with random math too and get a private key lmao.... ENTROPY https://example.com/ 21131 426472 426148.426472.427820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8770592666902 0 \N \N f 71743284 \N 1 234231461 0 f f \N \N \N \N 426148 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 30293 2023-06-09 07:11:03.494 2025-03-29 22:39:47.907 Thoughts on E-Cash (Distributed trust) This e-cash stuff is going to be a lot crazier than we think. \n\nPlebs are going to distribute trust along mints that belong to products and services they already use.\n\nYou pay an invoice and the funds come from multiple mints, you can send and receive offline, transactions are cheap and private. \n\nInstead of a fountain wallet, stacker news wallet, primal wallet etc. \n\nThey should all be federations added to your mutiny wallet \n\nSet a trust limit to 5k sats per connected federation. When trust threshold exceeds the amount allowed on the mint keep the sats on a spliceable dual funded lightning channel\n\nIf the fountain mint rugs me, at least it was only 2k sats......sats that weren't in my custody in the first place. And at least the mint gave me benefits that would have been impossible otherwise.\n\nAnd If I don't trust fountain with 5k sats in 2024, I might as well take my satoshi's elsewhere.\n\n\n\n\n \N 20059 \N 30293 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.9801513858312 0 \N \N f 0 \N 0 207067360 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437238 2025-03-14 12:05:55.231 2025-03-29 22:39:47.907 💻🔓 Coinbase Major Hack in 2025? 💻🔓 **Coinbase Major Hack in 2025?**\n\nWill one of the biggest crypto exchanges face a major cybersecurity breach next year? Predict the outcome on Predyx! 🚨 \n\n👉 [Place your bets now!](https://beta.predyx.com/market/coinbase-major-hack-in-2025) \n\n#Coinbase #CryptoSecurity #PredictionMarket #CryptoNews\n![](https://m.stacker.news/66626) \N 8269 \N 437238 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.0678388040665 0 \N \N f 571474826 \N 4 86501618 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 429199 2025-03-08 02:01:06.738 2025-03-29 22:39:47.907 modern memecoin culture is shaking my faith in humanity Sorry for the rant, since I appreciate the constructive positivity of this place but I need to get rid of something. I recently had a conversation with colleagues who told me about some meme coins they 'invested' in. Since I am not living under a rock, I had a rough idea of the more 'successful' meme coin projects but after this conversation I researched a bit and read some twitter threads and so on to get the pulse of this community. After this little excursion I felt physically sick, disgusted and angry.\n\nI am even surprised about myself since as a libertarian I am of the opinion that everyone should do whatever they want as long as it does not infringe on my liberties but there is something in this degeneracy that is extremely scary to me on some deeper level, I can't explain it better.\n\nLike, I don't want people participating in that as my neighbors. There is something wrong with them, like someone cut out some vital brain parts. When I see a DOGE coin, I find it funny. There was some novelty and tongue-in-cheek lightness to this project but when I look at this uninspired shit that is produced nowadays. Just insane. And when I look at the market caps these zero effort things achieve, I don't know what to say. But really, the specific thing that creates this disgust in me is the communities, the way the work, the way they communicate, their beliefs, it's fucking scary.\n\nApologies for being overly dramatic. There is obviously lots of shit happening in the world and meme coins really are not even a blip on the shit-show-radar but there is something about them that really affects me. A feeling of real disgust. \N 12483 \N 429199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0253387857905 0 \N \N f 216219467 \N 2 25674718 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3035 2022-10-23 18:13:53.098 2025-03-29 22:39:51.184 \N Yes, this is a great way to stimulate a net positive outcome for everyone! A win for users because they walk more and live longer and healthier lives. A win for health insurances, because they reduce cases and other claims, with reduced health risks of their clients.\n\nHealth insurances in most countries operate on a legacy software stack and slow decision making. At the same time I believe that mid term, insurances will transform. The best incentive for a healthy lifestyle is Bitcoin (much better than any points program, or reduced insurance rates). https://example.com/ 16988 2999 2990.2999.3035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2250487023614 0 \N \N f 535072399 \N 5 155739433 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 30320 2023-06-09 10:09:08.244 2025-03-29 22:39:47.907 Book Review | Black Coffee Blues by Henry Rollins What's it about short version?\nHenry Rollins first book of raw, thought provoking anecdotes and observations.\n\nWhat's it about long version?\nBlack Coffee Blues by Henry Rollins is part tour travelogue, part diary and part musing by a pretty unique voice of alternative culture. Told through personal experience it captures observations and interactions by the musician and spoken word performer who is, by his own admission, always in motion.\n\nI first experienced the intensity of Henry Rollins at a concert. A muscular, tattooed punk rock front man dominating the stage, stripped to his waist, soaked in sweat and giving everything into a performance that was nothing short of captivating. From there I read his books and years later went to see him give a spoken word performance... he had lost none of his deep-seated passion.\n\nThe book was published in 1992 by Rollins' own publishing house, it is set in 7-parts and based on his writings from 1989 to 1991. Some of it is written in the third person, other autobiographical, some short and some longer form. All of it thought provoking and 'Exhaustion Blues' being a personal favourite. \n\nWhat comes through in this book is the observation of the ordinary in someone living a quite extraordinary life; sometimes by choice and other times by accident, but always interesting. The importance of discipline, the struggle to create, and the necessity of confronting fear encourage you to embrace individuality and perhaps pursue your passion through adversity.\n\nIf you have ever found yourself as an outsider, or perhaps felt you didnt quite belong, this book will resonate. Thoughts on loneliness/solitude, art and the creative mind, the search for the authentic among the mundane all feature but it is the pure, raw honesty that stands out.\n\n'Don’t let them scar you with their weakness. They will cripple you with their lives. They will make you want to die just to get away from them.'\n\n'What goes best with a cup of coffee? Another cup.'\n\nAnd there is always Black Coffee Blues Pt 2 & 3.\n\n9/10 Recommended. \N 21418 \N 30320 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.3731452842497 0 \N \N f 0 \N 0 86986903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 30391 2023-06-09 14:09:19.785 2025-03-29 22:39:47.909 👋 Welcome to PlebLab! \N https://youtu.be/4qJUZHlQYc8?si=XqSklu4lRsGED3px 1307 \N 30391 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.845446645919 0 \N \N f 0 \N 0 39978646 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 432444 2025-03-10 10:51:47.774 2025-03-29 22:39:51.184 \N what @k00b said + this could be used by many small businesses IRL not only online. (i.e. potentially estheticians, hair saloons and so on.)\n\nThis allows you to open an account in 1 minute, even sync with your Google Cal, to avoid double bookings and earn bitcoin right away. Zero technical knowledge required.\n\nWe are trying to help people earn Bitcoin. https://example.com/ 9109 432344 432344.432444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1404528271426 0 \N \N f 64879999 \N 1 160602369 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430794 2025-03-09 12:32:56.666 2025-03-29 22:39:51.184 \N Day 1 of waiting for my questions to be answered :(\n- https://stacker.news/items/227323\n- https://stacker.news/items/228921 https://example.com/ 13399 430619 430619.430794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3523677567795 0 \N \N f 445672044 \N 3 138688969 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 30615 2023-06-10 14:35:10.144 2025-03-29 22:39:47.909 Operation Saylor - Episode 27/120 # Operation Saylor - Episode 27/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 27, corresponding to September 2024.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.28537210BTC\n- € stack: 128.80 €\n- Current total value in €: 72,109.64 €\n- € into BTC: 30,000 €\n- Paid back to bank: 9,521.20 € \n- Outstanding debt + interests: 34,423.13 €\n- Installments to go: 94\n\n\n## Charts\n\n[![episode-27-bitcoin-stack.png](https://i.postimg.cc/xCvkYSPf/episode-27-bitcoin-stack.png)](https://postimg.cc/62Q6LgSg)\n[![episode-27-stack-value-vs-debt.png](https://i.postimg.cc/ZnJW5Dfr/episode-27-stack-value-vs-debt.png)](https://postimg.cc/wybqWFYv)\n\n---\n\n## Log \n\nHello again and welcome to another episode of the series. This month, I've prepared a bit of an off-topic-ish rant on insurance and how Bitcoin has changed my relationship with them.\n\n### Stories\n\nLet me begin with three tiny stories.\n\nFirst one: recently, a friend of mine who runs a brick and mortar business had some water leakage problems at his shop. He's not the owner of the space, he's renting. As per his rental agreement, it's the landlord who is responsible for taking care of this kind of stuff, so he got in touch. The landlord didn't raise any issues: he has an insurance for the shop space, so he just got in touch with the insurance company and once the claim was open, got my friend in the loop so he could take care of the logistics, which makes all the sense since my friend could better manage that to minimize disruption in his business.\n\nWhat came after was a complete mess up. The insurance company seemed to respond promptly, but they just kept on sending clueless guys who would just take a look at the damaged stuff, make some silly guess on what was the root cause and attempted some half-assed approach to solving it. The fixes would never work for more than a couple of weeks, which led to my friend getting in touch again, and the insurance company sending off again a different guy, who still was clueless, and who obviously got absolutely no kind of handover from the previous guy. The new guys would proceed again to do his part, screw up, and fly off. This cycle repeated itself four times with four different handymen.\n\nFinally, my friend, who at this stage was pretty close to throwing someone off a window, decided to call a handyman he trusted from years ago, unrelated to the business. Pretty frustrating, since it was the landlord's and his insurance responsibility, but the issue was disrupting his business operation enough that he was better off going down this path. The trusted handyman permanently fixed the issue in a single visit and charged only 250€. \n\nSecond one: a couple I'm friends with got pregnant a few months ago. They live in the UK. With the NHS being in shambles, they decided to manage the whole pregnancy through her private health insurance. They started with the first visits and everything was smooth and fine, until time came to run some tests to spot genetic issues in the baby, such as Down's syndrome. Low and behold, their doctor pointed out that there were multiple pretty good tests for that kind of issues, but that the insurance company wouldn't pay for them. Confused, since the couple thought everything related to the pregnancy would be included, the couple went back to the insurance terms and read the fine print. They found that the terms pretty much stated that everything and all tests were included, EXCEPT for these ones being discussed specifically. In the end, they just had to accept the terms and ended up paying that out of their pocket, which they told me cost a bit less than a 1000 pounds.\n\nThird one: a relative of mine went on holiday to Greece this summer. Her and her direct family planned a roadtrip, so they rented a car in Athens from one of the typical big name companies you find at every airport. My relative, being as risk averse as you could imagine, went straight for the premium insurance that she got offered. \n\nUnfortunately, they did have an accident a few days later. Luckily it was a minor crash in terms of personal damages for them, but on of the front corners of the car got pretty busted (they had to get a replacement car from the company since the one they had wasn't driveable after the impact). Towards the end of the trip, when they got back to the original office where they started the rental, the company workers informed that the insurance they had purchased didn't cover the damages on the rim and wheel that were hit. My relative got angry as fuck, because the wording of the insurance package was pure trickery to get you convinced it covered anything and everything. But just like with the previous couple insurance terms, the terms did state that wheel and rim damages weren't covered, so my relative had to pay up for that.\n\n### The decision\n\nI guess the point I'm heading to is pretty clear: insurance services of all sorts fucking suck.\n\nBut besides the frustration and anger caused by shitty service, absurd fine prints and nasty trickery, I've been pondering for some time already on a more level-headed question: are they economically worth it? Which ties very directly with the obvious decision to be made: should I purchase them?\n\nTo answer this, I had to structure my thoughts a bit. \n\nLet's start from the simplest model ever. Let's suppose we are judging purchasing insurance for whatver thingy for some period of time. The most naive model I can thing of is:\n\n- Compute how much you'll pay in premiums (insurance cost)\n- Multiply the chances of the insurable bad event happening times the expected cost of it (bad event cost)\n- The insurance makes sense if:\n - Bad event cost is higher than insurance cost\n - Or bad event cost is higher than all your savings and accessible debt, which means facing it could wreck your life\n\nThat all probably sounds reasonable, but life isn't that simple. Let me detour with some reflections.\n\n### Types of insurance and game theory\n\nThe first I did was to make a bit of a taxonomy, because insurance is used to describe a gazillion different types of trades.\n\nFirst, the common point to all of them is that you are offloading risk: there's some bad event which might or might not happen, and which will have bad consequences of some type for you if it does happen. So, you pay a company so they shift the risk onto themselves, and in turn they will help you out in some way if the bad thing does happen. Otherwise, they just keep your money.\n\nBut from that common ground, there are several branches. I'll split things by two dimensions. The first dimension is whether the help from the insurance company in case of the negative event is money, or having your problem solved. Examples for the first are life and disability insurances, or a theft insurance for a vehicle where the insurance company will pay you money, not get you another vehicle. Examples for the second are health insurance or a home insurance, where the company will hire people to help you out.\n\nThe other dimension is the monetary sizing of the bad event. There are insurances, like a home insurance or that car rental insurance from my relative, that frequently deal with rather small damages and issues. Stuff that has costs around 2, 3, maybe 4 digits worth of bucks. Other insurances agreements cover events that are big bucks, such as life insurance or a third party liability car insurance, which might pay hundreds of thousands or even millions under certain circumstances.\n\nWith those types and categories in mind, here's my two cents on practical game theory around the different combinations.\n\nFirst of, common ground for all insurances: the insurance company is incentivised to cash in your premiums, and bleed out as little as possible, as late as possible, let it be in helping you out, paying you out, or dealing with your complaints or lawsuits. I would imagine some small insurances, somewhere, at some point in history, must have been run in an honest way and truly placed the well-being of customers in a pedestal. But for the modern, large corporations versions I see in my life, I'm pretty confident on the accuracy of my statement.\n\nNow, beyond that general point, incentives and behaviors change.\n\nWhen we are talking about insurances that provide services or solve issues directly for you, the harsh reality is that the insurance doesn't give a damn about your well being. They probably do care about you not switching companies so that they can continue to collect your premiums, but they won't go above and beyond to fix your issues. And depending on how the contracts and terms look like, there may be massive friction in dropping their service, so it can be the case that customers will put up with the shittiest of services for a long time. Coming back to story number one, my friend's landlord hasn't switched companies after that whole mess.\n\nWhen it comes to money-paying insurances, they obviously have an incentive to pay as little as possible. But I find those agreements to be less susceptible to trickery and frustrating situations, due to paying money being a much less arguable subject. It's easy for the insurance company in story #1 to say they are fulfilling their duties and shift blame on the technical complexity of the leakage issue. On the other hand, a life insurance can't fuck around much. If the guy is dead, is dead, and they have either paid the agreed upon sum or they haven't. There isn't much room for covering bases in crappy ways.\n\nAnd then, looking at the division by small money sum/large money sum in the case of the bad event, I think there's a pretty ugly reality that you don't find in textbooks but do face in the trenches when it comes to small money sum insurance. What's the simplest way to save money for them? Well, as silly as it sounds, it might be to simply not do their part. Picture this: you have hired a travel insurance, which should pay if your airline loses your luggage. No big deal, maybe they only cover up to 500$. That happens, and you get in touch, but they fuck around with red tape and questions and delays and not answering the phone, and a month and two pass and you don't get the 500$ reimbursed. What are you going to do about it? I know something, you are most probably not going to sue them. It's not worth doing it given how much you'll have to pay in lawyers. It could even be that the terms you agreed included that legal matters should be solved in a different country that the one you live in.\n\nWhen it comes to large money sum insurances, I feel things look better. If your partner dies and their life insurance doesn't pay you the 150K$ they should, I'm pretty confident you are going to go after them in court (and hopefully, the chances of succeeding should be high). \n\nNow, my final conclusion after all of this bit on game theory and types of insurances rant is that:\n - Small-money-sum, service-delivering insurance looks terrible for you as the customer.\n - Large-money-sum, money-delivering insurance looks like a more interesting option.\n\n### And then there's Bitcoin\n\nThe alternative to buying insurance is not doing so. This means you take the risk of shit hitting the fan, but you keep your premium money in your pocket. And important part of the decision making, thus, is what the hell will you do with your money.\n\nConventional wisdom here is simple: you put your dollars in a piggy bank, and keep it safe so that when your boiler breaks down, or you crash your car, or you get diagnose with diabetes, you can use your savings to deal with the problem. But we all know that keeping fiat in the piggy, or a bank, is a stupid thing to do in this fiat world of ours. It will get inflated away and be worth nothing eventually.\n\nThen Bitcoin comes into the scene. This changes things completely our options. With Bitcoin, the piggy bank gets a boost. Things make sense again, because you can properly store your funds there and they will be waiting for you when bad luck knocks at your door. And actually, if you get lucky and bad luck doesn't knock for some time, your bitcoin will keep compounding and possibly grow much more in fiat terms.\n\nYou can also look at the same idea the other way around: spending your money on the insurance comes with missing out the fiat gains that the equivalent bitcoin amount would have provided you with.\n\n### Decision making model, revisited\n\nEarlier, I presented the first simple and naive insurance cost vs bad event cost model. But my previous side-rants should have made it obvious that such a model is not accurate at all because it doesn't contemplate:\n- The risk of the insurance company not doing their part, partially or completely.\n- The chances of recovering from the previous situation through court.\n- The fact that you can save the premium money into Bitcoin, a modern era novelty that raises the opportunity cost of paying premiums through the roof.\n\nTaking these into account, I've personally thought long and hard and I feel like I've settled for the following decision making process:\n\n- If the cost of dealing with some insurable bad event is below 10,000€, do not buy any insurance. DCA the premiums into Bitcoin instead and use that piggy bank for the rainy day should it ever come.\n- If the cost is above 10,000€, look for money-paying insurance options. Avoid service-delivering insurance.\n- If there are money-paying options, judge them with the naive model:\n - Compute how much you'll pay in premiums (insurance cost) while applying whatever CAGR you expect for Bitcoin, for the next 10 years.\n - Multiply the chances of the insurable bad event happening times the expected cost of it (bad event cost), for the next 10 years.\n - The insurance makes sense if:\n - Bad event cost is higher than insurance cost\n - Or bad event cost is higher than all your savings and accessible debt, which means facing it could wreck your life\n - Again, if you don't buy the insurance, DCA the premiums into Bitcoin instead and use that piggy bank for the rainy day should it ever come.\n\nI'm hoping this made sense. If you have personal opinions or interesting experiences with insurance, I would be happy to hear your thoughts. Criticism is also very welcome. As always, thanks for reading and I'll see you next month.\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n- Episode 16: [https://stacker.news/items/288719](https://stacker.news/items/288719)\n- Episode 17: [https://stacker.news/items/322189](https://stacker.news/items/322189)\n- Episode 18: [https://stacker.news/items/363765](https://stacker.news/items/363765)\n- Episode 19: [https://stacker.news/items/394704](https://stacker.news/items/394704)\n- Episode 20: [https://stacker.news/items/450792](https://stacker.news/items/450792)\n- Episode 21: [https://stacker.news/items/476945](https://stacker.news/items/476945)\n- Episode 22: [https://stacker.news/items/522161](https://stacker.news/items/522161)\n- Episode 23: [https://stacker.news/items/550749](https://stacker.news/items/550749)\n- Episode 24: [https://stacker.news/items/583121](https://stacker.news/items/583121)\n- Episode 25: [https://stacker.news/items/622095](https://stacker.news/items/622095)\n- Episode 26: [https://stacker.news/items/660530](https://stacker.news/items/660530)\n \N 672 \N 30615 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.28138496622566 0 \N \N f 0 \N 0 208902280 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 433816 2025-03-11 12:16:00.935 2025-03-29 22:39:47.909 Economically Unspendable Bitcoin UTXO Calculator Figured its a good time to consider UTXO management. Don't do it now but you'd be wise to think about it now and prepare for the next low fee environment. This is a very useful tool\n\n> This calculator will give you an idea of how much it costs to spend a UTXO with specific characteristics. When that cost is computed, we can determine what the viable floor value of that type of UTXO is for any given transaction fee rate, which means you should avoid receiving deposits below that value. https://jlopp.github.io/unspendable-utxo-calculator/ 17116 \N 433816 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 3.88207767405611 0 \N \N f 216623756 \N 1 163796266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 30510 2023-06-10 07:36:22.625 2025-03-29 22:39:47.91 The Great Resistance: a 6min short film about #Bitcoin by @tip_nz \N https://youtu.be/bIuMdj_FE_E 5377 \N 30510 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.3881372679131 0 \N \N f 0 \N 0 288967 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 430949 2025-03-09 14:25:51.526 2025-03-29 22:39:47.911 [REVIEW] True Names by Vernor Vinge *True Names*[^7] is really a story about AI, but most people in the bitcoin/cypherpunk space have probably heard about it because of how Vinge describes nyms and the consequences of having your nym[^1] connected to your legal name. This horrible fate is exactly what happens to Mr Slippery.\n\n[^7]: *True Names* is expensive on Amazon and other booksellers. And my local libraries didn't have a copy. But I was able to track it down on archive.org where you can [borrow a digital copy](https://archive.org/details/truenamesotherda00ving/page/144/mode/2up).\n\n[^1]: If you haven't started using a nym yet, you really ought to think about it.\n\n> They had discovered Mr Slippery's True Name and it was Roger Andrew Pollack TIN/SSAN 0959-34-2861, and no amount of evasion, tricky programming, or robot sources could ever again protect him from them.\n\nMr Slippery is a hacker and a member of a collective of other hackers called the Warlocks. Hacking in *True Names* is way cooler than real life because Vinge imagined the internet as an immersive virtual experience more like being in the Matrix than typing on a keyboard. But instead of some slick simulation of the 1990s, Mr Slippery and friends wander around swamps and mountains full of sprites and other virtual monsters and their coven meets in a castle defended by a very robust firewall program called Alan.[^3] Instead of keying in commands, they speak spells that bend the fabric of cyberspace.[^4]\n\n[^4]: One of the best parts of *True Names* is how Vinge describes the difference between this fantastical way of interacting with computers almost by analogy and the more logical--and entirely less effective--manner used by the government. When I was younger and full of exciting thoughts, I liked to believe that arguing by analogy was the great alternative to logic (a lot like analog and digital are the two main ways of representing a signal: one is fuzzy and full of gradients while the other is crisp and black and white). It's like using leverage in finance: when you say XX is like YY, it let's you jump past a lot of reasoning and simply *see* a new understanding--but the implication of just such an analogy is that you can get totally wrecked thinking this way, too. The Warlocks use analogy programming and are very powerful.\n\n[^3]: Yup, another Turing reference. It isn't cyberpunk if it doesn't mention Turing.\n\nThe dynamics of nyms are front and center. Can you trust your cyber-friends? Probably not. If they discover your true name, they basically own you. Vinge calls it becoming a thrall. It doesn't sound pleasant. The Warlocks are all in an uneasy soft war with each other, cooperating against their enemies,[^5] but also willing to take a shot at a fellow Warlock should the opportunity arise.\n\n[^5]: I definitely appreciated how all the hackers call the government 'the Great Enemy.'\n\nWriting in 1979, Vinge even describes the beginning of the dead internet theory: Mr Slippery is quite sure he won't be fooled if his online friends are replaced by some other entity--or even if they are a program themselves--that little sprite you saw in the meadow could turn out to be a horrific, hardware damaging virus, but Mr Slippery thinks he knows how to tell the difference.\n\n> But do you think you could ever be fooled?\n> Frankly, no. If you talk to one of those things long enough, they display a repetitiveness, an inflexibility that's a giveaway.\n\nEnter the Mailman: a mysterious new hacker who never shows himself even in cyberspace. He joins up with the Warlocks and quickly astounds them with his abilities. But pretty soon it starts to seem like the Great Enemy isn't his only target and several members of the Warlocks quickly become his thralls. But the Mailman's aspirations are far greater than defeating a few hackers; he's got his eye on global domination.\n\nRemember how we began with Mr Slippery getting doxxed? It was the Great Enemy that found his true name. And throughout all the ensuing excitement, we are constantly reminded that the government knows where he lives and will kill him if he steps out of line. Messy cyber warfare ensues. \N 9261 \N 430949 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 12.593729408556 0 \N \N f 99590474 \N 1 28637081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434676 2025-03-12 06:19:54.274 2025-03-29 22:39:51.184 \N >What do you hope it's like?\n\nWe need at least these next 5 years more "calm waters". Bitcoin can't evolve in a turmoil waters. I mean the developing software, new apps, new base code improvements, etc\nSee this period of calm we have these days? This is what we need for the next 5 years.\nNot bullshit crazy hypes about price hiking to 100k-500k and everybody excited and not concentrated to what matters - merchants adoption and people using it as money.\n\nSo I hope we will remain int his range of calm waters of 30-50k and most important, with not too many full mempool seasons.\n\nThere's much more to code and prepare in the software part than many can imagine. We are just at the beginnings of beginnings in this matter.\n\n>What do you fear its like?\n\nAll these "institutional investors" crap will push more for idiotic regulations that will squeeze too much the miners and software developers or even put them into a corner.\n\nWe don't need ETFs and crap like that, we don't need blackrocks and influencers that talk only about their price predictions. \n\nWe need politicians to be dumb, clueless and ignoring BTC, still considering it a harmful nerds game. Let them continue into their ignorance, don't feed them with information or educate them! Let them be idiots in this matter.\n\nI fear also that more custodial solutions will pop up. I am not talking about a simple meaningless wallet like WoS or SN that custody just few sats of the few users. I am talking about HUGE custodians, like big bitcoin banks. Those are the danger.\n\n>What products do you think we'll see?\n\nIs hard to say... All depends firstly to what new features are implemented into Bitcoin base code and LN. All other solution builders are waiting for these.\n\nI think we will see a more stronger solution for LSPs and with many good LSPs that could provide good liquidity to regular BTC/LN users. That is really necessary to many merchants too.\n\n>Where are the loud voices in Bitcoin wrong?\n\nThey are wrong because there's too much noise around. https://example.com/ 9356 434673 433828.434673.434676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.57026174686013 0 \N \N f 181861687 \N 1 130155466 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431028 2025-03-09 15:10:13.888 2025-03-29 22:39:51.185 \N I don't understand much about networking but looking forward to Indra. How long until we can start using it? https://example.com/ 12516 430330 430330.431028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6466408953186 0 \N \N f 5242060 \N 1 227174458 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431138 2025-03-09 15:38:17.4 2025-03-29 22:39:51.185 \N My answer has little to do with sat allocation, although I've [written about](https://stacker.news/items/369228) the current experiment with that if you want to read it.\n\nMy thing w/ SN is basically how to not spend too much time on SN. I wake up, do a bit of writing or art, then open SN and read all the notifications (some are replies to me, some are people I follow). Then I read recents, looking for things that are to my taste or that I'm trying to encourage; then to the main page.\n\nAfter that, I try to not look at SN anymore because the major challenge at this era of my life is having my attention fragmented into a million pieces. This is the usual problem of modern life that people talk about (always checking their phone, etc) but with a bonus that with my job, and my hobbies, I am extremely subject to this fractionation, and it's become a serious issue.\n\nThis is relevant to SN bc there's so much compelling stuff here, and I see so many ways to be involved and help, and I actually feel like I'm kind of actual friends with a few people, and so it's tempting for so many reasons, but my life can't support it. I need those mental resources elsewhere, at least for now.\n\n> I then use 500 sats as play money. I zap more generously than in the past and don’t bat an eyelid when some territories require 100 sats to post. Because I have enough!\n\nThis is something I just can't wrap my head around. I believe you either live in Japan or Singapore now, right? Super expensive places. And yet you're talking about, at current valuations, having a feeling of 'security' from 21 cents a day? I just don't get where people's minds are calibrated on zap amounts. I know not everyone is rolling in the dough, esp compared to a North American white-collar worker, but is 21 cents really an amount of daily capital that elicits feelings? Esp when, as @siggy47 points out, and as @Undisciplined has described many times, and as @ekzyis's daily [works of art](https://stacker.news/items/392798) have demonstrated, it's way easier to be in the green when you're zapping more?\n\nI'd love to know more about your thinking / feeling on this issue, since I think a lot of stackers are in your same mental space. In the meantime, here's some extra play money -- my request is that you use it for your activities on the site vs withdrawing it, and see what you notice. \n\nAnd fwiw, I second Siggy in noticing and appreciating what you bring to SN.\n https://example.com/ 21712 431122 431122.431138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2382992372133 0 \N \N f 231189533 \N 2 6906350 0 f f \N \N \N \N 431122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 39874 2023-07-18 23:05:14.628 2025-03-29 22:39:47.911 How I might orange pill my wife My wife knows I have Bitcoin. I don’t think she particularly cares. Our hands are full trying to juggle all the balls parenting brings, planned or otherwise.\n\nI am also not particularly concerned about showing her the light. If it (enlightenment) comes, it comes.\n\nYesterday, I had an A-ha moment. Had lunch with her and my parents-in-law. After the meal, she went to order a cup of Luckin Coffee latte from her app. \n\nSuffice it to say that the (cheaper) roasted coffee that we get at local coffee shops isn’t her cup of tea. Now, I’m just mixing beverages but you get the point. Luckin Coffee gains the approval of her delicate taste buds.\n\nAs you may expect, Luckin Coffee is more expensive than the coffee shop counterpart. Starbucks-equivalent expensive. But she was shrewd enough to use a discount coupon, which lowered the price by quite a bit. If I were her, I wouldn’t have minded forking out a little bit extra to get my hands on something I truly desire.\n\nIn that second I had that A-had moment, my mind kicked furiously and hatched a plan about how I could orange-pill her, given the will:\n\n1. Show her how I buy FairPrice supermarket gift cards from Bitrefill. She will then understand that Bitcoin isn’t this wild volatile speculative asset, but is instead a legitimate currency that you can swap for stuff to maintain your life energy.\n\n2. Once she gets used to the idea, repeat the process but show her how I buy Grab food takeout vouchers from The Bitcoin Company. I’m just guessing, but I think she will feel more at ease, knowing that there are two companies dedicated to selling gift cards.\n\n3. Show her my list of transactions so that she knows how much sats I typically use to buy a FairPrice or Grab card.\n\n4. Convince her to buy BTC when it is dipping.\n\n5. Spend the BTC on these gift cards when it is on the rise. Make sure to let my wife know how much she has saved (or rather, how much I have saved since we will be using my money). \n\nI think it could work because it brings Bitcoin to the fore of her everyday concerns.\n\nIs your better half vested in Bitcoin? Did you have the honour of orange pilling her? \N 2088 \N 39874 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.2621317180312 0 \N \N f 0 \N 0 122961318 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437044 2025-03-14 08:47:37.547 2025-03-29 22:39:47.912 Should $58k Gang Be Retired? Seeing as Bitcoin is rallying closer and closer to the all time high US Dollar price, it may be time to retire $58k Gang. My goal in writing this is concern that $58k gang will cause some sort of drawback in US Dollar price, allowing the Canadians to reach $100k Bitcoin before America. \n\nThe Canadians already have a head start, and I'm afraid we are going to let those beta hockey pucks beat us to the $ amount Odell promised us would happen so long ago by conference day. \n\nAll these posts about how the true price of Bitcoin is $58k could also be impacting trading bots using AI to manipulate the price. A malicious Canadian, like Justin Tredeau could be manipulating social media to confuse the bots to allow Canada to reach the summit first. \n\nAnyways, what are your thoughts on potentially retiring $58k and retargeting? \N 12656 \N 437044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1165794803223 0 \N \N f 2100841575 \N 15 125179191 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 435646 2025-03-12 20:59:08.761 2025-03-29 22:39:51.185 \N I heard a very clear explanation of why monero's base chain privacy is its biggest problem by Tuur Demeester on Marty Bent's TFTC podcast. Check it out:https://fountain.fm/episode/EP5FUbCTYPr2e7FGBF8F Bitcoin’s chain is verifiable. Monero's is not. An inflation bug, for instance, can go undetected In monero, and it's possible that's already happened. https://example.com/ 20906 435639 435639.435646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.84034403762056 0 \N \N f 442830248 \N 4 73552297 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437020 2025-03-14 07:24:17.734 2025-03-29 22:39:51.185 \N - actually have users https://example.com/ 17095 437013 436823.436829.436900.436930.437013.437020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.81505270650959 0 \N \N f 148332573 \N 1 157750947 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434971 2025-03-12 11:27:27.405 2025-03-29 22:39:51.185 \N It can work like that but it's very hard. The mutiny team showed it's possible to make a self custodial LN wallet for the browser. But then they stopped because because they think it's too hard of a problem to solve at scale. So I guess their story is evidence for both things: it's technically possible but (arguably) not in a practical way https://example.com/ 16387 434723 434440.434723.434971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4878076443619 0 \N \N f 305162187 \N 2 146357489 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435975 2025-03-13 07:29:22.738 2025-03-29 22:39:51.185 \N How is Fountain financially viable? I guess it won't be difficult to exploit it by running multiple instances 24/7? https://example.com/ 16847 435972 435944.435950.435972.435975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.74456318664096 0 \N \N f 46675067 \N 1 160726179 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435201 2025-03-12 14:23:33.389 2025-03-29 22:39:47.902 Stranded sats redux: sats abandoned on SN? No, not this kind of [stranded sats](https://stacker.news/items/325143), rather, a LN newb question. (I got inspired to ask my dumb questions in public after listening to @siggy47 [podcast](https://stacker.news/items/218993) with @kr last night.)\n\nIs there any notion of an inactivity timeout, or liveness limit, for sats in a SN wallet? For instance, if someone got 10k sats in their SN wallet, and never withdrew them to anywhere, and never showed up again, would the sats just sit there forever? Or is there a timeout of some kind that puts them back in a pool?\n\nIs it correct to say that whatever the answer is, this is basically a SN policy decision, not a LN protocol issue? Because in this case, SN is acting as a custodial wallet, right? \N 9906 \N 435201 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 20.5275444062612 0 \N \N f 73432620 \N 2 131900297 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436981 2025-03-14 06:16:29.732 2025-03-29 22:39:47.905 ShowSN: multisigbackup.com - Recover your 2-of-3 multisig with only 2 seeds Hi all! I made a post a few months ago titled “Can we make 2-of-3 multisigs a better user experience?” ([#389403](https://stacker.news/items/389403)). In summary, I found it frustrating and confusing as a user to learn that 2 seed phrases wasn’t actually enough to recover a 2-of-3 multisig. Without the descriptor, containing all three extended public keys, the funds can’t be accessed. This requirement is not intuitive and runs counter to the “2-of-3” moniker, which implies that 2 seed phrases should be enough.\n\nThe lack of a standard way to back up a multisig descriptor puts users’ funds at risk and makes inheritance more challenging that it needs to be. Expensive tools like SeedHammer exist to try to solve this problem, by splitting the descriptor into shares and inscribing those shares onto steel, but this isn’t the best user experience, and at $600 a piece, this isn’t practical for most users.\n\nI built this tool as a way for me to easily encrypt and inscribe my 2-of-3 descriptor on Bitcoin, so I can always recover it with 2 seeds. All sensitive data in a `k-of-n` descriptor (master fingerprints, xpubs) is stripped from the descriptor and encrypted such that it can’t be decrypted without `k` xpubs.\n\nTo recover, the user simply inputs two master fingerprints, which are hashed and used to find the encrypted descriptor onchain. An open source indexer makes this near instantaneous. Once the user has the encrypted descriptor, they use the derivation paths in the descriptor template to derive `k` xpubs, decrypt the encrypted data, and reassemble the original descriptor.\n\nThe cost of using this tool on a 2-of-3 descriptor is the same as inscribing about 0.5kb of data, which is about 400vb or 2000 sats at 5 sats/vb (~$2 at current prices). Even at higher fee rates, I think this is a no-brainer for anyone storing a significant amount in a conventional multisig, especially if you don't want to rely on a third party like Unchained, Casa, or Nunchuk to store your descriptor.\n\nTry it out at [multisigbackup.com](https://multisigbackup.com) and let me know what you think! Appreciate any and all feedback.\n\nSource code:\nhttps://github.com/joshdoman/multisig-backup\nhttps://github.com/joshdoman/multisig-recovery (indexer)\n\nExample inscription:\nhttps://mempool.space/tx/af752b0e22506b9a60ac467186e27fa1f41e2d9f833fc3cd148ec9de3a838c2f\nhttps://ordinals.com/content/af752b0e22506b9a60ac467186e27fa1f41e2d9f833fc3cd148ec9de3a838c2fi0 \N 17741 \N 436981 \N \N \N \N \N \N \N \N B2B \N ACTIVE \N 13.5436602475 0 \N \N f 151834283 \N 1 210041179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437580 2025-03-14 16:29:35.022 2025-03-29 22:39:51.185 \N I can't find the research from pleblab, do you have a link? Sounds very interesting.\n\nBy _truth faster_, does it mean e.g. twitter/tiktok, live content from celebrities/experts, minutes away? \n\nWhat is relevant truth? What is truth for that matter, are we talking mathmatical publications or are we talking content from people who users trust? This is all very intriguing https://example.com/ 18829 437524 437524.437580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7948545496665 0 \N \N f 335978319 \N 2 98593225 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437218 2025-03-14 11:48:22.969 2025-03-29 22:39:47.905 RE: Interrogation of a toycoiner Apparently, my reply to @k00b's post ([_Interrogation of a toycoiner_](https://stacker.news/items/420329)) was 493 characters too long:\n\n![2024-02-11-010739_610x261_scrot.png](https://m.stacker.news/15654)\n\nSo I am not sure what to do except posting this as a dedicated post. Maybe this means it's worth an own post just like @grayruby's [submission](https://stacker.news/items/417967) to @siggy's [first writing contest](https://stacker.news/items/412579)? Let's see. Reply starts now:\n\n---\n\nThis is a good prompt. This is also one of these posts where I desperately want to share my thoughts to hear what other people think about them since I know that my view is incomplete and I have still much to learn. It's also a topic close to my heart since I wrote [this](https://stacker.news/items/349363).\n\nTherefore, please take whatever I say as the view of a person that is still figuring things out—including while writing this—and changes his mind about things a lot but hopes this is seen as a virtue and not as being what we call in German "[Fähnchen im Wind](https://www.youtube.com/watch?v=rR9_6jebuuA)"[^1] or worse: someone was toxic enough to call me out on my bullshit and now I need to pretend that was never my view. I always want to be able to explain my views (in the past or present) in a way where I don't have to feel ashamed of them.\n\nI think "toxic bitcoin maximalism" (TBMism) is one of these terms that suffers from a lack of common understanding. Essentially, what is one's TBMism is actually a mix of individuals that used that term to describe their behavior in the past of that individual. So basically based on past experiences with self-proclaimed TBMism, everyone makes up their own mind what TBMism is or is about.[^2]\n\nFor example, I remember that I also used to think it's ~beautifully~ pretty stupid to be toxic to people that are "crypto curios". I still think that's stupid but that's no longer what I think TBMism is about—at least originally or at its core. I am aware that some (or maybe even most now?) see TBMism to be overwhelmingly about "protecting people from themselves [in a toxic way]" but that doesn't mean that I have to see it that way, too. At least I hope so, since I think TBMism is more complicated than that.\n\nSince I like etymology, I looked a bit into the origins of TBMism—while writing this as mentioned—and I think it comes from the "civil war" or "blocksize wars" around the SegWit soft fork and the [New York Agreement](https://cointelegraph.com/news/opinion-collapse-of-bitcoins-new-york-agreement-would-have-long-term-consequences). Unfortunately, I wasn't around back then (how many here were?) but I found this nice panel where representatives of both sides of this important part of bitcoin history came together:\n\nhttps://www.youtube.com/watch?v=g2OU8cxkqZc\n\nI extracted "some parts" which I think are important to understand my view on TBMism:\n\n> there's certainly an irony in having a panel about civil war when **the entire point of the technology is for peace**\n\n> there was one or two years of increasing intense discussion over the issue of bitcoin's scalability: how many transactions it could handle, how many it should handle and if that amount was going to be increased, how it could be done. There were sort of several trains of thought on this. One was it doesn't need to handle any more transactions. Another was it needs to handle lots of transactions and bring on the whole world so that people can be using it for all sorts of things. And then there were some very clever technical proposals like segregated witness which allowed more transactions to happen in a very interesting way and also provided some further safety for the blockchain. **This debate is really a nuanced technical debate and it was really tragic to see how bitter and vitriolic it got.**\n\n> I don't think bitcoins enemies were really involved in the discussion. Part of the result of that was that those involved in the discussion started seeing and making enemies out of each other. \n\n> I think that once the conflict was there it was exploited by people that had other intentions not necessarily Bitcoin enemies like as far as like nation-states but even **people that just wanted to print their own money, create their own coins and use the marketing behind Bitcoin to be able to pump their own stuff.**\n\n\n> I think that there was a lot of confusion at that point and when I saw this block size increase proposal I actually really wanted to see if it was possible to make this happen so I went out and talked to all the people that I considered the best protocol experts and asked them and discuss if this is really feasible.\n>\n> It became quickly apparent that actually deploying something like this and making sure the network doesn't fork was an extremely difficult problem and this is where SegWit came about.\n>\n> I was one of the co-authors of the SegWit BIP. This proposal was able to find a way to increase the block size without losing backwards-compatibility. This means that old software could continue to run on the network without needing to be upgraded and it would still remain on the same network whereas if you need an incompatible hard fork all the old nodes that don't upgrade get left behind. They basically end up on a separate network.\n>\n> We've seen that happen with the forks now but back in 2015, people just had not really witnessed this yet so they didn't actually know the dynamics. Everything was still very much theory. Now we actually have empirical data as to what this was and I think that unfortunately **by the time that I was made aware, there were already some hostilities that existed between other people that weren't necessarily just technical.**\n>\n> I mean there are just different differences of opinion and different things, different interests at play and not necessarily malicious. **Just people that have different interests and I think that's part of the fundamental dynamics of Bitcoin is that there are going to be different players with different interests and there's checks and balances and that's the way that the system works.**\n>\n> **In this case I think that the system of checks and balances almost broke. It didn't break but the community did split. But maybe that was inevitable. I think if we look at history it's really hard to keep a large group of people together for a very long time and that's kind of why nation-states formed in the first place. We're kind of trying to find something better than that. It's extremely ambitious.**\n\n_there is more I could quote but I'll leave it at that. Just watch the video._\n\nSo what I want to say with this is that it's actually pretty human to get "toxic" when it comes to things that are close to our hearts. When we truly believe in something, when we're "extremely ambitious", we tend to see every compromise (like SegWit2x) as an attack. When bitcoin becomes part of our identity, when we start to call ourselves "Bitcoiners", anything that is seen as antagonistic is met with hostility—**if we let our emotions take over.**\n\nNow does that mean that if you're not toxic enough you don't care about bitcoin as some TBMists like to say as mentioned by @k00b in https://stacker.news/items/420350?\n\nMaybe, but I think that's a very simplistic view from these TBMists. It's essentially pushing our own personal biased views onto others which comes back to the aforementioned irony:\n\n> there's certainly an irony in having a panel about civil war when the entire point of the technology is for peace\n\nI believe it's part of the unfortunate nature of something that tries to achieve what bitcoin tries to achieve: bitcoin is trying to change human nature by forcing us to agree on something. To find consensus. To possibly even break up nation states that formed around incompatible consensus on things.\n\nI think these "toxic maxis" are missing the point: when they say "you're not toxic enough so you don't care about bitcoin", this can also be seen as an attack for the other side that might care as much about bitcoin, just in a different way that is not appreciated by such TBMists. Not everyone has to be a TBM just like them to feel the same about Bitcoin.\n\nSo in essence, what I personally see as TBM is a form of human expression: We want to express how important something is to us and we're not willing to compromise on it. Unfortunately, this results in what some people see as toxic. It definitely can be seen as toxic. But I want to stress that I don't think TBM is about being toxic—that's just the most common but unfortunate form and however unfortunate the term is. I mean, toxic is literally in its name.\n\nI want to end this with mentioning that "toxicity" is also in the eye of the beholder as @TwoLargePizzas (what a great nym!) wonderfully explained in https://stacker.news/items/350493:\n\n> The funny thing about being older and having more life experience is that you have a difference perspective. You see things a different way because you've already been there and done that.\n>\n> Some might call it wisdom. It doesn't mean you're more intelligent or have more knowledge about a particular topic but it does tend to mean you see through more bullshit.\n>\n> TOXIC is just a perception. Two different people can read the same thing and have different feelings about it. When I read something @DarthCoin wrote I don't always agree but I always try to consider why he's saying without dismissing it. I ask myself, what piece of the puzzle am I missing? I try to fill gaps in my knowledge by listening to people with more experience than I.\n>\n> The other thing that happens when you get older is that you realize how much time people waste trying to be nice to each other. Your recent breakup is a perfect example of this. Sometimes people are too afraid to say what they really mean. They think hurting people's feelings matters more than telling the truth. But the alternative wasting people's precious time on this earth. Spending years in a toxic relationship is much worse than being toxic with words.\n\nI hope I made my point clear. I don't think so though. I am not even sure I understand my own point well enough to explain it to others. But writing this helped me to understand it better.\n\nHowever, this has taken me long enough to write already, I am already too interested in your opinions to continue and I don't think I have the "toxicity" in me to continue with explaining.\n\nBut I have one final last piece of toxicity in me. I can end this with a famous Satoshi quote which some also might find toxic in this context:\n\n> If you don't believe me or don't get it, I don't have time to try to convince you, sorry.\n\n— Satoshi, https://bitcointalk.org/index.php?topic=532.msg6306#msg6306\n\n[^1]: It's something that's usually said about politicians that just say voters want to hear: they are just flags that change direction (their opinion) based on the wind (what's currently popular).\n\n[^2]: It's kind of a beauty and a curse. \N 16289 \N 437218 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 3.10292740006354 0 \N \N f 1180089884 \N 10 200238874 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 436909 2025-03-14 02:16:11.477 2025-03-29 22:39:47.906 Custodial Lightning is Great Because there is no bank in the world which will open account for 5000 Satoshi (1 USD) deposit. And by the way, Stacker new has custodial wallet embedded.\n\nEverybody should talk about lower bound. \N 16594 \N 436909 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.0467546355785 0 \N \N f 36523512 \N 1 48226402 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437233 2025-03-14 12:03:40.902 2025-03-29 22:39:47.905 Point of Sale feature now live on Wallet of Satoshi 📺 \N https://twitter.com/walletofsatoshi/status/1655451096117284867 2022 \N 437233 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.3088685517644 0 \N \N f 1949709815 \N 20 72691295 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 436167 2025-03-13 11:10:13.012 2025-03-29 22:39:51.186 \N When I learned about CBDCs https://example.com/ 11275 436164 436144.436164.436167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4838024847208 0 \N \N f 186055022 \N 1 241998961 0 f f \N \N \N \N 436144 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436050 2025-03-13 09:15:15.829 2025-03-29 22:39:51.186 \N Bitcoin countries will tend to be neutral like Switzerland and avoid conflict. Mutually beneficial trade will be the primary interaction with foreign powers and whatever few belligerent states try to cause trouble will feel pressured to behave by the international community. https://example.com/ 17494 436049 436049.436050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.80914179725199 0 \N \N f 18388897 \N 1 241146687 0 f f \N \N \N \N 436049 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436157 2025-03-13 10:58:46.487 2025-03-29 22:39:51.187 \N I mostly use audiobooks these days because of the amount of driving I do but I would love to read through the discussions and possibly take part in the future. https://example.com/ 20019 435925 435657.435728.435920.435925.436157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4255249663178 0 \N \N f 401531384 \N 2 99906297 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437932 2025-03-15 01:45:55.271 2025-03-29 22:39:51.187 \N I am "for" Ordinals. I'm not an art fan, but there are use cases here and Bitcoin hasn't changed to support them. If you want to change Bitcoin and come up with your own thing that isn't Bitcoin anymore and doesn't support anything like Ordinals, go fork off. There is a word for the kind of coin that you will be creating when you wind up not having the longest chain!\n\nPeople fussed when non-financial information was put into OP_RETURN as well, now those people have something new to fuss about. https://example.com/ 21825 437723 437723.437932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.07530876601042 0 \N \N f 242603220 \N 1 125505386 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436935 2025-03-14 03:46:07.671 2025-03-29 22:39:47.906 Mutiny Gifts! \N https://blog.mutinywallet.com/mutiny-gifts/ 7675 \N 436935 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 5.71255277954002 0 \N \N f 614959407 \N 4 57440486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 437403 2025-03-14 13:47:39.443 2025-03-29 22:39:47.906 Why Do Fools Buy Altcoins? - New Single by Super Testnet I'm back in Mexico and away from PlebLab so I'm producing my own singles again. That's why this one isn't as good as the others. That said...\n\nMy latest single is:\n\n> [Why Do Fools Buy Altcoins](https://supertestnet.github.io/songs/Super%20Testnet%20-%20Why%20Do%20Fools%20Buy%20Altcoins.mp3)\n\nCheck it out \N 6136 \N 437403 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.0106046380131 0 \N \N f 156018438 \N 1 88117853 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 42165 2023-07-26 02:42:52.467 2025-03-29 22:39:47.906 Nico w/ Simply Bitcoin AMA Yo! \n\nI am Nico, the host of Simply Bitcoin\n\nAt Simply our purpose is to guide people to thrive in an ever-growing future towards individuals claiming back full financial sovereignty with Bitcoin. \n\nWe are living through the separation of money and state. This transition can seem a bit chaotic, at times you can even see a bit dark. Everyday we try to make sense of it all and try to make you laugh a bit. \n\nOur focus is on the day to day news, culture and awesome Bitcoin products \n\nOn Simply Bitcoin IRL we talk to some of the brightest minds in the industry \n\nCheck us out at: https://simplybitcoin.tv/\n\nHappy to answer any questions any of you might have! \N 8245 \N 42165 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.4312476383029 0 \N \N f 0 \N 0 193683587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437292 2025-03-14 12:31:38.133 2025-03-29 22:39:51.181 \N I get the sentiment, however, sometimes bringing a link to my attention is enough for me to throw sats around (because I'm not a degen who's on all these websites where'd I'd be able to find them on my own). Usually, websites have google analytics integrated in them, and the site owner can see where their web traffic is coming from. If a link is shared on SN, the site sees that people visited their site from a link shared on SN\n\nGiven that SN is a site where people have Bitcoin, the site owner might decide to then add a "tip the author with sats" option on their own website.\n\nThat all being said, I'll probably stop tipping for links to legacy media websites. https://example.com/ 616 437271 436752.437184.437271.437292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.26262671099652 0 \N \N f 3190381112 \N 22 81791753 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444415 2025-03-19 21:23:55.898 2025-03-29 22:39:51.182 \N I think with the lightning integration, this problem mostly solves itself.\n\nI tried sharing this site on an an-cap Discord group. Half a dozen users started shitting on me because it was Bitcoin/lightning based. They commented how BCH is the true Bitcoin, how various alt-coins have their own "better" social-news websites, and how they will never use Bitcoin or lightning.\n\nPart of me feels sorry for them. I wish we have more dedicated an-caps in the Bitcoin maxi community. But some people just have too much fun staying poor. https://example.com/ 15337 444365 444365.444415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5234364549655 0 \N \N f 228688770 \N 1 80077032 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436752 2025-03-13 21:41:25.761 2025-03-29 22:39:47.906 New Bitcoin song "Who Wrote the Code" by Super Testnet My latest single goes out to all the bitcoin ladies\n\nhttps://x.com/actuallyCarlaKC https://x.com/amizi https://x.com/ClaraShik https://x.com/D_plus__plus https://x.com/Dulce_xyz https://x.com/glowzow https://x.com/hazelbiologist https://x.com/niftynei https://x.com/NinjaGrannyHodl https://x.com/plebpoet https://x.com/starkness and so many more!\n\n(Alphabetized to hide my crushes)\n\nhttps://supertestnet.github.io/songs/Super%20Testnet%20-%20Who%20Wrote%20the%20Code.mp3\n\nThank you https://x.com/PlebLab for producing! \N 690 \N 436752 \N \N \N \N \N \N \N \N crypto \N ACTIVE \N 27.8635494021263 0 \N \N f 4795474336 \N 33 9976357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 436782 2025-03-13 22:26:27.003 2025-03-29 22:39:51.182 \N > What do you use Nostr for today?\n\nExclusively social (although I expect that to change).\n\n> Are you using Nostr more or less often than you were earlier this year?\n\nProbably about the same but I think my experience on it has improved.\n\n> What new applications do you want to see built on Nostr?\n\nI think super testnet has the right idea in thinking about nostr relays as generic public use servers. I’d love to see more commonplace applications use this truly “serverless” approach.\n\n> What needs to be improved for Nostr to continue attracting new users?\n\nAbstractly, I think it’s mostly the experience someone has when they don’t know many people on nostr or have much of an online following themselves. There are lots of technical things to nitpick, but I tend to think the performance parts of that are solvable if the community grinds on them enough.\n https://example.com/ 5708 436669 436669.436782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.8973370558133 0 \N \N f 335950984 \N 2 137465955 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436773 2025-03-13 22:07:09.254 2025-03-29 22:39:51.182 \N I think that Exchanges are the biggest centralization risk right now, people are waking up to the fact that id you are not self sovereign you don't actually own you bitcoin https://example.com/ 15052 436752 436752.436773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1783881704457 0 \N \N f 226077816 \N 1 130985728 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 43424 2023-07-30 00:17:34.306 2025-03-29 22:39:47.906 Understanding UTXO Consolidation for Bitcoin Users # Understanding UTXO Consolidation for Bitcoin Users\n\nBitcoin blockchain fees are currently low, so it's time to get familiar with UTXO consolidation!\n\nWhat is UTXO consolidation and why should you care?\n\n## Many Small UTXOs Can Incur High Transaction Fees in the Future\n\nIf you've been dollar-cost averaging small chunks of bitcoin to a self-custody wallet, you might have a lot of small-value UTXOs (Unspent Transaction Outputs) in your wallet. \n\nWhen transaction fees will rise again, spending these UTXOs can incur hundreds or even thousands of dollars in transaction fees!\n\nWhen you transact in Bitcoin, fees paid to miners are determined by the network demand, and how much data the transaction requires to be sent.\n\nThe Bitcoin network is designed to handle only a limited amount of data every 10 minutes on average in order to keep the data on the blockchain small enough for average users to run nodes and audit the blockchain.\n\nThe trade-off is high transaction fees during high network demand.\n\nYou can always set a lower fee for your transaction, but then you will often have to wait longer for your transaction to be included on the blockchain. \n\nThe total fee for a transaction is calculated by multiplying the transaction size with the fluctuating fee rate. \n\nThe fee rate is measured in satoshis per virtual byte (sat/vByte).\n\nA good website to familiarize yourself with the current Bitcoin fees is [Mempool.space](https://mempool.space/).\n\nYou can learn more about it in this post: https://stacker.news/items/657963 \n\nThe transaction size increases the more UTXOs it has. \n\nThe monetary value of BTC being spent doesn't have an effect on the transaction fee.\n\nYou can send $50 or $1 billion worth of BTC with the same transaction fee. \n\n## What Is an UTXO?\n\nYour bitcoin balance consists of UTXOs.\n\nWhen you receive BTC, you receive a single UTXO.\n\nThe more often you receive, the more UTXOs you will accumulate. \n\nWhen you're sending BTC, your wallet software picks UTXOs from your wallet and sends them to the receiver.\n\nYour wallet might have to pick many different UTXOs.\n\nIf the BTC amount of your UTXOs exceeds the amount you're sending, you will receive a new UTXO as "change".\n\nConceptually, UTXOs are very similar to physical cash. \n\nYou can think of UTXOs in your Bitcoin wallet as different denominations of a currency, e.g. $10 bill, $20 bill etc.\n\nExcept that Bitcoin doesn't have specific denominations: a Bitcoin UTXO can be of any amount!\n\n![](https://m.stacker.news/48628)\n\nThe balance of your Bitcoin wallet is the sum value of all your UTXOs in that wallet. \n\nUTXO is like a bill in your Bitcoin wallet that hasn't been spent yet. \n\nWhen your wallet has to pick many UTXOs to make a transaction, the network fees you pay will be higher.\n\nYou can think of it as sending someone $1000 in coins vs. sending $1000 in hundred dollar bills.\n\nCoins will weigh more and their postage costs will be higher.\n\nBitcoin wallets automatically select the lowest number of UTXOs to minimize transaction fees, and some have coin control features that let you select UTXOs manually. \n\nA recommended wallet for desktop is [Sparrow Wallet](https://sparrowwallet.com/).\n\nSparrow also works with the most popular hardware wallets.\n\nYou can learn more about Sparrow [in this Twitter thread](https://x.com/teemupleb/status/1708190356565872642) I wrote in September 2023.\n\n## How to Consolidate UTXOs?\n\nYou're just selecting UTXOs of small monetary value and sending them to yourself when fees are low, and you will receive one UTXO with a larger monetary value.\n\nHere it can be demonstrated with some testnet coins on Sparrow Wallet.\n\nThe process is exactly same with real BTC.\n\nIn the "UTXOs" tab, you select the UTXOs you want to consolidate, and proceed to "Send Selected".\n\n![](https://m.stacker.news/48629)\n\nOn the "Pay to" field there's a dropdown that automatically chooses a new Bitcoin address in the same Sparrow Wallet that you own (it's labelled as a "consolidation" address).\n\nAlternatively, you can copy/paste any address there.\n\n![](https://m.stacker.news/48630)\n\nIf you want to verify that you really own the address, you can go to the "Addresses" tab, find the address in question and sign a message with it.\n\nIf you're e.g. using a hardware wallet like Coldcard or Trezor, the signing device's firmware will at this point verify that it manages the address.\n\n![](https://m.stacker.news/48631)\n\nIt's important to label your UTXOs, so you will know in the future what UTXOs to spend and in what situations.\n\nLabels are only for your own reference.\n\nDo it.. your future self will thank you!\n\n![](https://m.stacker.news/48633)\n\nYou can see the flow of UTXOs on Sparrow.\n\nTwo small UTXOs turn into one (minus the miner fee).\n\nIt's a bit like exchanging small coins to larger bills!\n\n![](https://m.stacker.news/48634)\n\nWhen you go back to the "UTXOs" tab, you can see that you now only have one larger UTXO, but the same amount of BTC (minus the miner fee).\n\n![](https://m.stacker.news/48635)\n\n[Mempool.space](https://mempool.space/) gives you nice visualizations for UTXO consolidation.\n\nIn this transaction, 4 UTXOs were consolidated into one (minus the miner fee).\n\nSince Bitcoin is digital gold, UTXO consolidation is like melting small gold coins into one gold bar!\n\n![](https://m.stacker.news/48636)\n\n## UTXO Consolidation Reduces Privacy\n\nA major trade-off with consolidating UTXOs relates to privacy.\n\nPeople who sent you the small UTXOs you want to consolidate can follow the movement of those UTXOs and link them to your now larger UTXO balance. \n\nIt's not an absolute proof that you own those UTXOs (you could be sending them to someone else!), but it might be a strong indication.\n\nIt's always the best practice to assume that whoever sent you those original UTXOs is watching and knows that you own all that bitcoin.\n\nAlso, there are privacy concerns if you spend after consolidating.\n\nIf you spend from a large UTXO (let's say 1 BTC), and buy something worth $50 (0.0008 BTC) with it, the receiver can see that you will get a change and are the owner of an UTXO of 0.9992 BTC. \n\n## "Dust" UTXOs\n\nWhen you have smaller UTXOs, they might become economically infeasible to spend in a high fee environment (fee higher than the monetary value of the UTXO).\n\nIt's hard to know exactly what the future fee market will look like, but it can be assumed that the Bitcoin blockspace will be in high demand and the fees will rise.\n\nHere's a good [article](https://unchained.com/blog/small-utxo-bitcoin-dust/) by Unchained about unspendable "dust" UTXOs.\n\nJameson Lopp has created a useful tool called ["Economically Unspendable Bitcoin UTXO Calculator"](https://jlopp.github.io/unspendable-utxo-calculator/?ref=blog.lopp.net) that can be used to project transaction fees in different fee environments with different address types.\n\n## To Consolidate or Not?\n\nIt depends on your personal preferences and how you're intending to spend your bitcoin in the future. \n\nIt's good to strive for a balance, taking into consideration the future fee market and the privacy concerns, and still remember that it's better to have spendable UTXOs that have lost some privacy than unspendable private UTXOs. \n\nNever consolidate KYC coins with non-KYC coins!\n\nThe consensus among Bitcoiners is to avoid dust UTXOs as much as possible, and try to keep your UTXOs at 1 million sats minimum (0.01 BTC and around $600 in August 2024's prices).\n\nIt's been estimated that this threshold would secure your UTXOs being spendable even in a prolonged high-fee environment.\n\nIf you're ever in an emergency and need to spend your bitcoin, it's good to know that you will not spend most of your coins on fees!\n\nSome recommend striving for even larger UTXOs, like 10 million sats (0.1 BTC) in case Bitcoin becomes a world reserve currency or hits mass adoption.\n\nUTXO consolidation is extremely important for Bitcoiners with many small value UTXOs (e.g. Bitcoiners in Global South that have been saving $10 per week in BTC on-chain to self-custody wallets).\n\nIf fees go high, a Bitcoin UTXO worth $10 might become unspendable. \n\nIf you're mostly a hodler and you've been buying BTC in large purchases at a time, you generally don't have to worry too much about UTXO consolidation. \n\n## Send Small UTXOs to the Lighting Network for Spending!\n\nInstead of consolidating UTXOs to an on-chain address, you can also open Lightning Network channels with them or send them to a Lightning wallet for easier spending.\n\nLightning Network also adds a layer of privacy to the UTXOs. \n\nIf you're buying bitcoin through an exchange, it might make sense to accumulate a large enough UTXO before you move the funds to self-custody.\n\nOr you can use e.g. [Liquid Network](https://liquid.net/) @liquid as an intermediary layer for storing coins in self-custody.\n\nAs a federated sidechain, Liquid has its own trade-offs.\n\nYou can learn more about Liquid in this [Twitter thread](https://x.com/teemupleb/status/1761068870083981436) I wrote in February 2024. \n\nUTXO consolidation reduces the number of UTXOs in the network, which makes it easier to run a full Bitcoin node.\n\nSo consolidation has benefits to the network as well!\n\nIt can also streamline your own wallet experience.\n\nSigning data-heavy transactions can be a burden to older hardware wallets that might even crash in the process!\n\nWhat's your strategy for UTXO consolidation?\n\nWhat's the ideal size of an UTXO in your opinion?\n\n## Additional Resources\n\nhttps://www.youtube.com/watch?v=Mqe0QCxjKpI @BTCsessions\n\nhttps://www.youtube.com/watch?v=krrUQGMKhPo\n\n[What is ‘UTXO consolidation’ and how can it help me reduce transaction fees?](https://bitbox.swiss/blog/what-is-utxo-consolidation/)\n\n[How to Manage Bitcoin UTXOs and Save on Transaction Fees](https://www.tftc.io/bitcoin-utxo-management/)\n \N 10611 \N 43424 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4708305431217 0 \N \N f 0 \N 0 25020079 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 54743 2023-08-24 00:07:00.991 2025-03-29 22:39:47.907 Post like Albert Einstein on SN https://imgprxy.stacker.news/6QKGaPynb0kZRtzLBWou-HY53YsQlFWfQ8-s6IlcpSk/rs:fit:600:500:0/g:no/aHR0cHM6Ly9leHRlcm5hbC1jb250ZW50LmR1Y2tkdWNrZ28uY29tL2l1Lz91PWh0dHBzJTNBJTJGJTJGdHNlMi5tbS5iaW5nLm5ldCUyRnRoJTNGaWQlM0RPSVAuYWlJamxVTW83eHVoOXhGU3kxRVk4Z0FBQUElMjZwaWQlM0RBcGkmZj0xJmlwdD1kMjk1Y2M5NmI4ZTE3NzIyNWEzZWY4NTVhOWU2ZmExNDg0NDY1OGVmMjkxMDQ3YzkzZTVjNTgyNTQ2Yzc4MjI3Jmlwbz1pbWFnZXM\n\n# How to post like Albert Einstein on SN\n\nLet's get this straight, I _seriously_ doubt you'll be awarded a Nobel Prize through reading this - but looking at how Einstein worked _could_ help us improve our posts on SN and our work...\n\nWell, sadly, I've gotta admit it, Albert didn't invent Bitcoin - so he missed out on one there (unless, unbeknownst to us, Hal cloned him from his missing brain).\n\nBut, what we _do_ know - he was one hell of a thinker - he published (or co-published) an incredible [272 articles](https://en.m.wikipedia.org/wiki/List_of_scientific_publications_by_Albert_Einstein) - covering a wide subject matter. Plus many of them were so 'out there' that if you tried to understand them they might make your seedplate curl.\n\nSo, how _did_ Einstein manage to develop so many theories and maintain such a staggering output?\n\nhttps://imgprxy.stacker.news/HUGuwHp35-qGv6v9tPEJ7JknoGtPpqtYxvpR1hRpzWs/rs:fit:600:500:0/g:no/aHR0cHM6Ly9leHRlcm5hbC1jb250ZW50LmR1Y2tkdWNrZ28uY29tL2l1Lz91PWh0dHBzJTNBJTJGJTJGdHNlMS5tbS5iaW5nLm5ldCUyRnRoJTNGaWQlM0RPSVAuM3NuUE9iVGRZUlFtNDhZSVZwWHhUQUhhRmolMjZwaWQlM0RBcGkmZj0xJmlwdD04MDczNWZlM2M3MmJkMGY1MTk4NTg4MzUxMTdkMTA2YmVlYTMxNzdiMDI1NmUxY2ZkOWU5NTNkNDI3MDAyMDlhJmlwbz1pbWFnZXM\n\nWell, he seems to have done what many other great thinkers have done (and many Bitcoiners) he lengthened his time preferences, took it easy on himself and relaxed.\n\nInstead of working on Problem A until he was pulling his hair out, and shouting at the cat, he tried something different - he moved onto an unrelated problem Problem B. If he found that the workings surrounding Problem B became too much - he went back to Problem A again or started to look at a new problem. He'd usually come back to them and crack the problem in the end.\n\nhttps://imgprxy.stacker.news/WkzqiXfw7oS6JZqhGe6UOCJBSTYBH3RyrosNODnUqIg/rs:fit:600:500:0/g:no/aHR0cHM6Ly9leHRlcm5hbC1jb250ZW50LmR1Y2tkdWNrZ28uY29tL2l1Lz91PWh0dHBzJTNBJTJGJTJGdHNlMi5tbS5iaW5nLm5ldCUyRnRoJTNGaWQlM0RPSVAuR1IwV0tqeTl6Y3lzdnFzX2VvUUtVd0hhSGElMjZwaWQlM0RBcGkmZj0xJmlwdD1iNTlkMDk2ZTk4Mjg1MzU3MjFkYTMwNGM0OWQzZmRmNDFmMmM3MjIzZTMwYjM1NWM5M2ZiMjdlZmJkYjZlYjZiJmlwbz1pbWFnZXM\n\nThis way our Albert always maintained a fresh mind, got lots of prizes and _probably_ never shouted at his cat (unless it pissed on his seedphrase).\n\nBTW Replace _Problem A_ with New Post A and _Problem A_ with New Post A and pretty soon you'll posting like Einstein, or our siggy47 - maybe the next best thing 😁.\n\nTo learn more, read this Ted talk transcript here:\n\nhttps://www.ted.com/talks/tim_harford_a_powerful_way_to_unleash_your_natural_creativity/transcript\n\n...or view Tim's Ted talk!\n \N 18269 \N 54743 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.717875820289 0 \N \N f 0 \N 0 74366967 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 42985 2023-07-28 11:01:06.158 2025-03-29 22:39:47.907 What do you think the next 5 years of bitcoin will look like? I suspect we all subtly disagree.\n\nWhat do you hope it's like? What do you fear its like? What products do you think we'll see? Where are the loud voices in Bitcoin wrong? \N 16351 \N 42985 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1265587085747 0 \N \N f 0 \N 0 146412961 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 44498 2023-08-01 00:43:14.966 2025-03-29 22:39:47.907 John Carvalho proposes BIP renaming sats as bitcoin > Redefinition of the Bitcoin Unit to the Base Denomination\n> \n> Abstract\n> This BIP proposes redefining the commonly recognized "bitcoin" unit so that what was previously known as the smallest indivisible unit becomes the primary reference unit. Under this proposal, one bitcoin is defined as that smallest unit, eliminating the need for decimal places. By making the integral unit the standard measure, this BIP aims to simplify user comprehension, reduce confusion, and align on-chain values directly with their displayed representation.\n> \n> Motivation\n> The current convention defines one BTC as 100,000,000 of the smallest indivisible units. This representation requires dealing with eight decimal places, which can be confusing and foster the misconception that bitcoin is inherently decimal-based. In reality, Bitcoin’s ledger represents values as integers of a smallest unit, and the decimal point is merely a human-imposed abstraction.\n> \n> By redefining the smallest unit as "one bitcoin," this BIP aligns user perception with the protocol’s true nature. It reduces cognitive overhead, ensures users understand Bitcoin as counting discrete units, and ultimately improves educational clarity and user experience.\n> \n> Specification\n> \n> Redefinition of the Unit:\n> Internally, the smallest indivisible unit remains unchanged.\n> \n> Historically, 1 BTC = 100,000,000 base units. Under this proposal, "1 bitcoin" equals that smallest unit.\n> \n> What was previously referred to as "1 BTC" now corresponds to 100 million bitcoins under the new definition.\n> \n> Terminology:\n> The informal terms "satoshi" or "sat" are deprecated.\n> All references, interfaces, and documentation SHOULD refer to the base integer unit simply as "bitcoin."\n> \n> Display and Formatting:\n> Applications SHOULD present values as whole integers without decimals.\n> \n> Example:\n> Old display: 0.00010000 BTC\n> New display: 10000 BTC (or ₿10000)\n> \n> Conversion:\n> Ledger and consensus rules remain unchanged.\nImplementations adopting this standard MUST multiply previously displayed BTC amounts by 100,000,000 to determine the new integer representation.\n> \n> Rationale\n> Usability:\n> Integer-only displays simplify mental arithmetic and reduce potential confusion or user error.\n> \n> Protocol Alignment:\n> The Bitcoin protocol inherently counts discrete units. Removing the artificial decimal format aligns user perception with Bitcoin’s actual integral design.\n> \n> Educational Clarity:\n> Presenting integers ensures newcomers do not mistakenly assume that Bitcoin’s nature is decimal-based. It conveys Bitcoin’s true design from the start.\n> \n> Future-Proofing:\n> Adopting the smallest unit as the primary measure ensures a consistent standard that can scale smoothly as Bitcoin adoption grows.\n> \n> Addressing Alternative Approaches\n> Refuting the "Bits" Proposal (BIP 176)\n> \n> An alternative suggestion (BIP 176) proposes using "bits" to represent one-millionth of a bitcoin (100 satoshis). While this reduces the number of decimal places in certain contexts, it fails to fully address the core issues our BIP aims to solve:\n> \n> Persistent Decimal Mindset:\n> Using "bits" still retains a layered decimal approach, requiring users to think in terms of multiple denominations (BTC and bits). This shifts complexity rather than eliminating it.\n> \n> Inconsistent User Experience:\n> Users must learn to toggle between BTC for large amounts and bits for small amounts. Instead of providing a unified view of value, it fragments the user experience.\n> \n> Incomplete Alignment with the Protocol’s Nature:\nThe "bits" proposal does not realign the displayed value with the integral nature of Bitcoin’s ledger. It continues to rely on fractional units, masking the fundamental integer-based accounting that Bitcoin employs.\n> \n> Not Permanently Future-Proof:\n> Though "bits" may simplify certain price ranges, future circumstances could demand additional denominations or scaling adjustments. Our integral approach resolves this problem entirely by making the smallest unit the standard measure, avoiding future fragmentation.\n> \n> In essence, while BIP 176 attempts to simplify small amount representations, it only replaces one decimal representation with another. By redefining "bitcoin" as the smallest indivisible unit, this BIP eliminates reliance on decimal fractions and separate denominations entirely, offering a clearer, more intuitive, and ultimately more durable solution.\n> \n> Backward Compatibility\n> No consensus rules are altered, and on-chain data remains unchanged. Differences arise solely in display formats:\n> \n> For Developers:\n> Update GUIs, APIs, and documentation to present values as integers. Remove references to fractional BTC.\n> \n> For Users:\n> The actual value of holdings does not change. Transitional measures, such as dual displays or explanatory tooltips, can ease the adjustment period.\n> Security Considerations\n> \n> A short-term risk of confusion exists as users adapt to the new representation. Users accustomed to decimals may misinterpret initial displays. To mitigate this:\n> Offer dual displays and tooltips during the transition.\n> \n> Provide clear educational materials and coordinated messaging.\n> \n> Use alerts or confirmations in applications if input values appear unexpectedly large or small.\n> \n> Over time, confusion will subside, leaving a simpler, more intuitive understanding of Bitcoin’s integral values.\n> \n> Reference Implementation\n> Some wallets, such as Bitkit, have successfully adopted integer-only displays, demonstrating the feasibility of this approach. Transitional features—like showing both old and new formats side-by-side—can help smooth the transition.\n> \n> Test Vectors\n> Old: 1.00000000 BTC → New: 100000000 BTC (or ₿100000000)\n> Old: 0.00010000 BTC → New: 10000 BTC (or ₿10000)\n> Old: 0.00500000 BTC → New: 500000 BTC (or ₿500000)\n> \n> All formerly fractional representations now directly correspond to whole-number multiples of the smallest unit.\n> \n> Implementation Timeline\n> Phase 1 (3-6 months): Introduce the concept, provide dual displays and educational materials.\n> \n> Phase 2 (6-12 months): Prominent services adopt integer-only displays by default.\n> \n> Phase 3 (12+ months): Integer representation becomes standard. Documentation and user guides no longer reference decimal-based formats.\nConclusion\n> \n> Redefining the "bitcoin" unit as the smallest indivisible unit and removing decimal-based representations simplifies comprehension and aligns displayed values with the protocol’s integral accounting. While a transition period may be necessary, the long-term benefits include clearer communication, reduced confusion, and a more accurate understanding of Bitcoin’s fundamental design.\n> \n> Copyright\n> This BIP is licensed under CC0-1.0. https://github.com/BitcoinAndLightningLayerSpecs/balls/blob/main/BIP%2021Q.md 8506 \N 44498 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.796694829632 0 \N \N f 0 \N 0 202854396 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437963 2025-03-15 03:48:10.282 2025-03-29 22:39:47.908 DarthCoin is looking for a padawan ! ### DarthCoin is looking for a padawan on SN!\nThis summer I will be mostly away from my desk.\nI have to finish my citadel up into the mountains so will be a lot of hard proof of work done.\nNo more time for posting on Stacker News...\n\nBut I would like to keep my cowboy hat on and the spirit of DarthCoin alive here 😂😂😂, just as a warning to shitcoiners.\n[![vader-BTC-no-crypto.jpg](https://i.postimg.cc/T1S9FnxB/vader-BTC-no-crypto.jpg)](https://postimg.cc/Zv8pyBCL)\n\nSo if you want to post "as DarthCoin", I am willing to give you access to my SN account, to post things, tips (at least for the cowboy hat) and if you do it well, you could even take the sats you get. I don't care, it's your effort, you deserve them.\nYou will even start with a bunch of sats in the account as credits. Use them wisely. Tip only those that really deserve them.\n\n[![Darth-channels-padawan.jpg](https://i.postimg.cc/5yKdFJ5b/Darth-channels-padawan.jpg)](https://postimg.cc/T5bHZZH4)\n\nRequirements:\n- have a SN account for at least 3 months older\n- have at least 50 posts on SN and 100 comments, to prove me with your writings that you are on the same page as DarthCoin and not a grifty shitcoiner. So I can read them and decide if you are the chosen one.\n- you have at least some good basic knowledge about how Bitcoin and LN works and could give good answers to noobs here.\n- if I see only once the word "crypto" in your SN comments, you are disqualified instantly.\n- you are a moral person, that use bitcoin and treat bitcoin use with morality (if you do not understand what that I refer to means you didn't paid attention to my old comments here and that is 50 points less for you).\n- present me a letter of intention (responding to this post) where I can see your "wording" and you are not a shitGPT. Don't send me 10 pages of wall text from shitGPT. You will be blasted instantly.\n\nThis offer is valid until Wed 14 June 2023 12:00 UTC.\n\n### May The Force Be With You! \N 17331 \N 437963 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 18.5576129317198 0 \N \N f 238353866 \N 2 101588364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 44990 2023-08-02 02:25:54.313 2025-03-29 22:39:47.908 I felt a VERY weird sensation, but don't know what caused it. Alright, although I'm agnostic, I don't quickly point fingers and say that something "paranormal" happened, but man: I just had something very strange happen, which sparked an even weirder sensation in me.\n\nIt's a little past 23:00, and I decided to go and have a look at the two windows in our basement, as I often do before I go to bed. \n\nI do this pretty much only during spring and summer, because it's the time when bigger insects, mice or frogs tend to fall down the roster and land on a pile of leaves before the window glass, where one can pick them up and put them in the yard again, which I happily do.\n\nThis time, it was a cute little youngster frog again. \n\nWhile I was clearing stuff out of the way to open the window and get the youngster frog, I was kinda talking, or thinking, "out loud" to myself about how I'd go on about continuing with my new hobby (sewing) and what parts and materials I'd soon order to increase the quality of the pouches I was experimenting with.\n\nAs I was doing this, I opened the window, managed to have the little frog jump into the box I held before him, put a lid on it, set him aside and closed the window.\n\nWhile I was returning the items I cleared from before the window in order to open it, I was still deeply "focused" on my little self-talk session, when I reflectively looked toward our little storage room that's connected to our basement; I like to close the door whenever I'm there sewing, I don't know, it simply feels better.\n\nThe door was half open - somebody must've left it - and I saw some kind of flash, a "bolt of light"(?) flashing up slightly behind the door; I instantly froze as if something had "caught" me; I felt like I had trespassed someone's territory, and that I had to move *very* quick.\n\nAs I stood there, I instantly got goosebumps All. Over. My. Body, tip-to-toe, and my heart started pumping, it was wild, and I even started tearing up, and while it all unfolded, I was like: Yo, wtf?! What. The. Fuck is this shit? \n\nI felt some kind of "mild dread"(?) creeping up on me; I grabbed the frog and hauled my butt out of the basement **Mucho Pronto**, went outside, free'd the little frog and sat down for a bit.\n\nIt's almost an hour later and the goosebumps still keep flaring up, I keep tearing up and I don't fucking know why?\n\nI went down with the sole intention to check on little insects or animals in need, while rambling aloud about my plans in regards to sewing stuff, and I returned a goosebumpy- and sobbing pile of shit, how?!\n\nIt's not even that it was something "out of the corner of my eye", because I was directly standing face-first towards the opening of said room, and saw it with "both" eyes, like wtf?!\n\nI like to think that some synapses or nerves in my brain / eyes "overreacted", causing me to "see" said "spark", but how can this cause such an instant and "primal" level of fear? \n\nIt felt a second like I wasn't the hunter anymore, but prey.\n \N 17030 \N 44990 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4847870327505 0 \N \N f 0 \N 0 50091171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438057 2025-03-15 07:47:38.787 2025-03-29 22:39:47.908 Meme Monday- Best Meme gets 10k sats It's Meme Monday!\n\nSend your best memes for a chance to win **10,000 sats**. One meme per comment please. \n\nBest meme as voted by "top" filter by 9am ct tomorrow will win the sats. \n\n![](https://m.stacker.news/49467)\n\nGood Luck! \N 11523 \N 438057 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.07226599462274 0 \N \N f 240061490 \N 1 123990132 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 44754 2023-08-01 14:33:00.471 2025-03-29 22:39:47.911 LNbank Vulnerability Recap · d11n 🍯🦡⚡️🕗🔗 \N https://d11n.net/lnbank-vulnerability-recap 16998 \N 44754 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.1415922351589 0 \N \N f 0 \N 0 107703962 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 54208 2023-08-22 21:48:28.33 2025-03-29 22:39:47.911 Satoshi emails, part 3 I've been trying to answer the question, "Did Satoshi write these emails?" Now, I feel like I'm getting some answers.\n\nQuick background of how I got to this point: \n\n**Post 1: The canon of Satoshi** - Sept. 19, 2024 -https://stacker.news/items/691013\n>**tldr;** \n>Since I'm currently finalizing edition three of "[Kicking the Hornet's Nest](https://hive.blog/bitcoin/@crrdlx/satoshi)", I wanted to include *all* of Satoshi's writings. Three "Satoshi" emails were in question. Two were to Wei Dai (the first was a month *before* the bitcoin whitepaper, the second was a week after the Genesis block). The other email was to Jon Matonis. The reason for questioning them was because they are currently excluded from [NakamotoInstitute.org](https://satoshi.nakamotoinstitute.org/emails/). So, my question was, "Are these emails from Satoshi?"\n\n**Post 2: Satoshi emails, part 2** - Sept. 21, 2024 - https://stacker.news/items/694651\n>**tldr;** \n>If a personal email somehow got into the public's eye (on the internet), one of the two parties must have released it at some point. I ruled out Satoshi releasing them. So, I reached out to Dai, Matonis, and NakamotoInstitute.org.\n>Researching, I learned that [WeiDai.com](http://www.weidai.com/) points to [an AMA on LessWrong.com](https://www.lesswrong.com/posts/YdfpDyRpNyypivgdu/aalwa-ask-any-lesswronger-anything#TLvSTxuypiHBuoCLM) where things can be asked. On LessWrong, gwern had asked in 2016 if he could place Wei Dai's emails on the [gwern.net](https://gwern.net/doc/bitcoin/2008-nakamoto) site. The dots seemed to connect on this. I concluded the Satoshi-to-Wei Dai emails were legit.\n>The Jon Matonis email was still unclear. His presence online seems a bit muddled currently, as far as I can tell.\n\nThe day of post 2, I put out a note on Nostr ([see my npub](https://nostrudel.ninja/#/u/npub1qpdufhjpel94srm3ett2azgf49m9dp3n5nm2j0rt0l2mlmc3ux3qza082j)) which auto-posted to X as below.\n\nhttps://x.com/crrdlx/status/1837484653420142797\n\n>Link to the X post: https://x.com/crrdlx/status/1837484653420142797\n\nI use X mostly only for reading. As generally a content consumer with little creation or interaction on X, I resultantly get very few notifications there. Last night, I saw that I had two notifications: one was from Elon Musk, surprise, but the other...\n![wei-dai-like-screenshot-2024,09,26-16.38.23.572.png](https://files.peakd.com/file/peakd-hive/crrdlx/23tw9kF8kpq1NPVQe2H9JUpS7773WvEYM3JVK6j5FJHfnDk6J2iWgc7QL394Z9FC7x6rB.png)\n\nI truly didn't see that coming. \n\n>Here's the full, untruncated [link to the note on Nostr](https://njump.me/nevent1qqsthc3zwxena28h7cfc52wm4pp2fp37f5d6jjjpgxm7zw6u5hlkshszyqq9h3x7g88ukkq0w89ddt5fpx5hv45xxwj0d2fuddlat0l0z8s6ypc0het), by the way.\n\nWei Dai liked my post. Hmmph. "Which post did he like?", I wondered. Tapping the notification, it went to the X post and my phone showed five whopping views and the one like.\n\n![wei-dai-5-views-1-like-Screenshot_20240926_160501_X_cr.jpg](https://files.peakd.com/file/peakd-hive/crrdlx/244yGc2SjnYY9nxUAjQAnMhLSNCsZjy7eaLMz6jCb3jZjQYddaGwzb5Z4vtwiqSg3Y1fn.jpg)\n\nBeing cautious and skeptical, I naturally wondered, "Is this the *real* Wei Dai?" I looked at the [@weidai11](https://x.com/weidai11) profile on X and everything checked out: bluecheck, the info seemed to make sense, as did the X posts and comments, the people following the account, the links to https://weidai.com and https://lesswrong.com/users/wei-dai.\n\n>Notably, [@_weidai](https://x.com/_weidai) on X has crypto/blockchain credentials, but his website [wdai.us](https://wdai.us/) flatly states: "**Disclaimer regarding name collisions** I am not the author of Crypto++ or inventor of b-money."\n![wei-dai-profile-screenshot-2024,09,26-16.43.17.642.gif](https://files.peakd.com/file/peakd-hive/crrdlx/48KdAYzqQo3FYqS458jGKnhYBSVmGbXNBb1rGGkrAkLQJ34GNY3WMWuTs1EsihKdQ1.gif)\n\nI conclude that [@weidai11](https://x.com/weidai11) on X is the real Wei Dai.\n\n### No word yet\n\nRegarding the Matonis email, I have not heard back from Jon Matonis. If you see this, Jon, [I can be reached](https://linktr.ee/crrdlx) in several ways. I'd love to hear how/when/where your March 4, 2010 "Satoshi email" got "into the wild" and onto the Internet.\n\n### And also...\n\nAs well as reaching out to Dai and Matonis, I contacted the NakamotoInstitute.org by email effectively asking, "Why are the Dai or Matonis emails not included?"\n\nA person from NakamotoInstitute kindly emailed me back on Sept. 24, 2024. They said the decision was made in 2014 to not include personal emails. The reasons were possible security threats or possible doxing. I can respect that.\n\nThe person did mention that they were reconsidering this policy. Reasons given were that 10 years have passed and many of these emails are now in public court documents anyway. I hope they decide to include them. I feel even inclusion with an asterisk explaining the context would be worthwhile. Then, armed with information, people can draw conclusions.\n\nWhat was *not* mentioned in the reply email was also important, I think. The NakamotoInstitute person did *not* say the emails were excluded because of any BTC v. BCH feud or due to any identity-of-Satoshi theories. That's good. Personally, I'm uninterested in such battles, but am solely interested in answering, "Did Satoshi write these emails?" To me, that's where the importance and historical significance lies.\n\nThat said, the reasons given above seem legitimate for excluding the emails at the time. And, again, they're reconsidering the policy.\n\n>As an aside, it's interesting to look at [NakamotoInstitute.org back in 2014](https://web.archive.org/web/20140307043507/http://nakamotoinstitute.org/).\n\n### And so to sum...\n\nI'd written about the question, "Did Satoshi write these emails?" and had concluded that the Wei Dai emails from 2008 and 2009 were indeed legit. \n\nMy conclusion was based on the leapfrogging logic...\n\n- gwern.net is one of the sites housing the Wei Dai emails\n- weidai.com points to lesswrong.com\n- lesswrong.com has a 2016 conversation between Wei Dai and gwern\n- gwern then asked for permission to place Wei Dai emails on his site gwern.net\n- Wei Dai gave the okay and the emails appeared on gwern.net\n- I write about this in 2024 and conclude Wei Dai's emails are legit\n\nThen, Wei Dai gave a like to my conclusion.\n\nI'm taking that as confirmation. ✅\n \N 9171 \N 54208 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.95556227630586 0 \N \N f 0 \N 0 164682852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 71668 2023-10-08 12:16:20.283 2025-03-29 22:39:47.911 Why all the UMA hate? My understanding is it’s a better way to to send payments in any currency to a receiver that can receive it in any currency. That seems like a win for the vast majority of people that are building global businesses and dealing with multiple currencies.\n\nDespite that I know bitcoin is superior, I don’t need to force it on people who aren’t ready. Just let people decide what currency they want to use and eventually they’ll all be using bitcoin. \n\nJust to be clear, I also disagree with KYC. I just see UMA as doing more good than bad. \N 6555 \N 71668 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.8518142773106 0 \N \N f 0 \N 0 54298371 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 55991 2023-08-26 15:38:06.733 2025-03-29 22:39:47.912 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 14295 \N 55991 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.2879263400058 0 \N \N f 0 \N 0 70174058 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441918 2025-03-18 11:18:55.528 2025-03-29 22:39:51.182 \N Not yet, but I did transfer one megasat out. I'm waiting for you all to find whatever booby traps are in front of me. https://example.com/ 9307 441676 441533.441614.441676.441918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2544457319172 0 \N \N f 244576396 \N 1 86529195 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442851 2025-03-18 21:06:54.249 2025-03-29 22:39:47.903 🤔 How to make a 2 of 3 taproot multisig using descriptors in Bitcoin Core # Objective\n\nMake a 2 of 3 threshold taproot multsig using descriptor wallets and commands in the console in Bitcoin Core.\n\n# Motivation\n\n- Keep it simple stupid: Bitcoin Core is the software with the most development and most people looking at it.\n- Multisig is awesome: redunancy, keys can be geographically dispersed, you send to a watch-only without exposing keys.\n- Taproot allows cheaper multisig transactions because of fancy cryptography.\n- No writing scripts or using other people's scripts: just use what comes with Core.\n\nI like this setup: create a multisig wallet in Bitcoin Core, use the multisig's xpub as a watch-only wallet that generates receive addresses but can only be spent from with psbts signed by multisig keys that are geographically dispersed. I've been able to make this setup for non-taproot addesses, but I'd like to do it with taproot descriptors.\n\n\n# Disclaimer\n\nI don't know what I'm doing, so don't use this method to store any funds. I just wanted to see if i could create a taproot multisig wallet in Bitcoin Core with a minimum of knowhow. I'm sure there are all manner of fancy ways to do this with scripts and things, but I'm not a good coder and I just want to do it the point-and-click way. Forgive me.\n\n# 1. Create the signing wallets\n\nStart Bitcoin Core in regtest mode.\n\nCreate four descriptor wallets, let's call them Alice, Bob, Carole, and KI. (I'm mostly following [this description of making a threshold multisig with descriptors](https://github.com/bitcoin/bitcoin/blob/master/doc/multisig-tutorial.md).)\n\nCtrl+T to open the console window and run `listdescriptors` for Alice. Look for the first `"desc"` key that starts with `tr`. Copy and paste everything from `tpub` to `/0/`. This is your first pubkey (they are called tpubs rather than xpubs because we are using a test version of bitcoin core called regtest).\n\nHere's what I got:\n\n```\ntpubDCeEheFvuz36CLWgQrvpRzP6CfwT2sAoyKBFD6Ebc5e39TAqDMDvbCZjFErqRLh27gPzYVZiPW3biSz96CV5CNRDtK5PobbMeYTY6cVckDi\n```\n\nAt the top of the console window, you can see a drop down menu that let's you select which wallet you use to run commands. Switch it to Bob.\n\nDo the same thing you did for Alice to find Bob's tpub:\n\n```\ntpubDCEwgAVm3g2iTYQeLYP71Xi9yS3YoUk9zkYrCieDo9G8xKQJocppekLGV42yaf1dVJ5bc7FWhmYWaNAze1gws2y1QnjrxKmejhhZQ8iJMAc\n```\n\nSelect Carole's wallet from the dropdown and repeat the process:\n```\ntpubDCRW3EXdchr8V82WpmzAcuBxFGvk2RcGeiXM7xMF4H95pfCpfMYwNHnJzag9NkkB1L5bwJdEdzJYDmoGmSiJwcbxs4xJyXtC8vnAwZgEA2S\n```\n\nFinally, we get KI's pubkey:\n```\ntpubDCYCGohmPaTpLbwXHm8NwMQsPdYKtRaePdLzeYdGRH2J312mox6nMMWDHdKC1QLvgMMxqvJhjR8RiVBpuv6rAHYPZBXX9KcWbD5qD8iCEeq\n```\n\n# 2. Create the 2 of 3 theshold multisig descriptor\n\nNow, following [this Stack Exchange answer](https://bitcoin.stackexchange.com/questions/115700/how-do-i-create-a-taproot-multisig-address-requiring-21-of-210-keys-to-spend)[^1], it seems that you can call `getdescriptorinfo` using these xpubs and a descriptor command called `multi_a`.\n\n[^1]: If you click this link and read the answer, you will no doubt see that you are supposed to use an unspendable public key for the value of `KI` unless you want your wallet to have a (1-of-1)-or-(2-of-3) policy, where anyone who has the private key to K1 can spend the funds unilaterally. He provides a link documenting how one goes about creating an unspendable private key and it is completely beyond my comprehension, so I do it the old fashioned way: generate a wallet, copy the public key and throw away the private keys: *voila!* unspendable public key.\n\nWe need to call `getdescriptorinfo` because we need to generate a checksum for the descriptor of the multsig that we are building.\n\nThis is the pattern that we need to follow to create our new descriptor:\n```\ntr(,multi_a(,,,))\n```\nSo, taking the pubkeys we got from each wallet above we get:\n```\ntr(tpubDCYCGohmPaTpLbwXHm8NwMQsPdYKtRaePdLzeYdGRH2J312mox6nMMWDHdKC1QLvgMMxqvJhjR8RiVBpuv6rAHYPZBXX9KcWbD5qD8iCEeq,multi_a(2,tpubDCeEheFvuz36CLWgQrvpRzP6CfwT2sAoyKBFD6Ebc5e39TAqDMDvbCZjFErqRLh27gPzYVZiPW3biSz96CV5CNRDtK5PobbMeYTY6cVckDi,tpubDCEwgAVm3g2iTYQeLYP71Xi9yS3YoUk9zkYrCieDo9G8xKQJocppekLGV42yaf1dVJ5bc7FWhmYWaNAze1gws2y1QnjrxKmejhhZQ8iJMAc,tpubDCRW3EXdchr8V82WpmzAcuBxFGvk2RcGeiXM7xMF4H95pfCpfMYwNHnJzag9NkkB1L5bwJdEdzJYDmoGmSiJwcbxs4xJyXtC8vnAwZgEA2S))\n```\nNext we call `getdescriptorinfo` on this whole thing (after putting it in quote marks):\n```\ngetdescriptorinfo "tr(tpubDCYCGohmPaTpLbwXHm8NwMQsPdYKtRaePdLzeYdGRH2J312mox6nMMWDHdKC1QLvgMMxqvJhjR8RiVBpuv6rAHYPZBXX9KcWbD5qD8iCEeq,sortedmulti_a(2,tpubDCeEheFvuz36CLWgQrvpRzP6CfwT2sAoyKBFD6Ebc5e39TAqDMDvbCZjFErqRLh27gPzYVZiPW3biSz96CV5CNRDtK5PobbMeYTY6cVckDi,tpubDCEwgAVm3g2iTYQeLYP71Xi9yS3YoUk9zkYrCieDo9G8xKQJocppekLGV42yaf1dVJ5bc7FWhmYWaNAze1gws2y1QnjrxKmejhhZQ8iJMAc,tpubDCRW3EXdchr8V82WpmzAcuBxFGvk2RcGeiXM7xMF4H95pfCpfMYwNHnJzag9NkkB1L5bwJdEdzJYDmoGmSiJwcbxs4xJyXtC8vnAwZgEA2S))"\n```\n\nLook for the key labeled `"checksum"` and copy the value:\n\n```\nug8xle0g\n```\n\nNow, add a `#` before it and stick it on the end of the descriptor we made.\n\n# 3. Import the descriptor into the multisig\n\nGo back to Bitcoin Core's main window and create yet another wallet, labeled `Multi`. This time check the boxes for `Disable Private Keys` (which will automatically check the box for `Make Blank Wallet`.\n\nDo Ctrl+T again and select the new wallet, Multi, from the dropdown menu.\n\nCall `importdescriptors` using the multisig descriptor we created and the derived checksum.\n\n```\nimportdescriptors '[{ "desc": "tr(tpubDCYCGohmPaTpLbwXHm8NwMQsPdYKtRaePdLzeYdGRH2J312mox6nMMWDHdKC1QLvgMMxqvJhjR8RiVBpuv6rAHYPZBXX9KcWbD5qD8iCEeq,sortedmulti_a(2,tpubDCeEheFvuz36CLWgQrvpRzP6CfwT2sAoyKBFD6Ebc5e39TAqDMDvbCZjFErqRLh27gPzYVZiPW3biSz96CV5CNRDtK5PobbMeYTY6cVckDi,tpubDCEwgAVm3g2iTYQeLYP71Xi9yS3YoUk9zkYrCieDo9G8xKQJocppekLGV42yaf1dVJ5bc7FWhmYWaNAze1gws2y1QnjrxKmejhhZQ8iJMAc,tpubDCRW3EXdchr8V82WpmzAcuBxFGvk2RcGeiXM7xMF4H95pfCpfMYwNHnJzag9NkkB1L5bwJdEdzJYDmoGmSiJwcbxs4xJyXtC8vnAwZgEA2S))#ug8xle0g", "timestamp": 1455191478 }]'\n```\n\nAt this point, we have created a 2 of 3 taproot multisig wallet and we have exhausted the point-and-click capabilities of Bitcoin Core.\n\nIf you go back to Bitcoin Core and click on the `Receive` tab, you'll notice that the `Create new receiving address` button is grayed out.\n\nIf you tried calling `getnewaddress` in the console, you'd get the error:\n\n```\nError: This wallet has no available keys (code -4)\n```\nBecause as far as I can tell, descriptor wallets basically broke half the RPCs in Bitcoin Core and you can't call nearly anything on them.\n\n\n# 4. Generating an address\n\nIf you go back to Bitcoin Core and click on the `Receive` tab, you'll notice that the `Create new receiving address` button is grayed out.\n\nIf you tried calling `getnewaddress` in the console, you'd get the error:\n\n```\nError: This wallet has no available keys (code -4)\n```\n\nThis is because descriptor wallets basically broke half the RPCs in Bitcoin Core and you can't call nearly anything on them (also it seems like currently you have to use psbts to do much of anything wiht a taproot multisig). There is, however, a way around this:\n\nCall `deriveaddresses` with the descriptor and checksum we created above:\n\n```\nderiveaddresses "tr(tpubDCYCGohmPaTpLbwXHm8NwMQsPdYKtRaePdLzeYdGRH2J312mox6nMMWDHdKC1QLvgMMxqvJhjR8RiVBpuv6rAHYPZBXX9KcWbD5qD8iCEeq,sortedmulti_a(2,tpubDCeEheFvuz36CLWgQrvpRzP6CfwT2sAoyKBFD6Ebc5e39TAqDMDvbCZjFErqRLh27gPzYVZiPW3biSz96CV5CNRDtK5PobbMeYTY6cVckDi,tpubDCEwgAVm3g2iTYQeLYP71Xi9yS3YoUk9zkYrCieDo9G8xKQJocppekLGV42yaf1dVJ5bc7FWhmYWaNAze1gws2y1QnjrxKmejhhZQ8iJMAc,tpubDCRW3EXdchr8V82WpmzAcuBxFGvk2RcGeiXM7xMF4H95pfCpfMYwNHnJzag9NkkB1L5bwJdEdzJYDmoGmSiJwcbxs4xJyXtC8vnAwZgEA2S))#ug8xle0g"\n```\n\nAnd here is our receiving address:\n\n```\nbcrt1plplxj64fww2880x5a9y5h690dh0ter56wcj32z2c3vzghsrag0lsp4gd6v\n```\n\ngeneratetoaddress 101 "bcrt1plplxj64fww2880x5a9y5h690dh0ter56wcj32z2c3vzghsrag0lsp4gd6v"\n\n# My Problems\n\nWhen I do this with non taproot descriptors, it is required to use an external and internal descriptor from each pubkey and put them together to create two descriptors (external and internal) for the multisig, which are both imported into the wallet. But when I attempted to do this with taproot, it wouldn't succesfully import the descriptor and gave the error\n```\nMethod not found (code -32601)\n```\nI belive I'm doing something wrong with the `tr` function when I try to include a range at the end of the pubkeys.\n\nI only ever make the same address. I'd love to know how one goes about creating this multisig so that I can use Bitcoin Core to generate addresses from a wallet that has imported the multisig descriptor. At the moment, it's a work in progress. \N 17824 \N 442851 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7719048069867 0 \N \N f 123311680 \N 1 26999995 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442853 2025-03-18 21:07:53.238 2025-03-29 22:39:47.913 What's the best part about being human in this era? \N \N 13399 \N 442853 \N \N \N \N \N \N \N \N art \N ACTIVE \N 6.79611889311612 0 \N \N f 56069024 \N 1 70261985 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442281 2025-03-18 13:54:38.584 2025-03-29 22:39:47.915 The Simple Lightning Newsletter I wish Kiara Bickers will continue this excellent Lightning Newsletter or maybe will continue it on SN. \nShe also wrote a book about Bitcoin https://getbitcoinclarity.com/ https://simplelightning.com/ 20715 \N 442281 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 21.3073943433032 0 \N \N f 116316420 \N 1 233502096 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442195 2025-03-18 13:23:20.402 2025-03-29 22:39:51.183 \N There is a town in Norway called "Hell," and it frequently freezes over. https://example.com/ 14489 442044 441600.442044.442195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3735801841051 0 \N \N f 397701602 \N 2 204201897 0 f f \N \N \N \N 441600 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442148 2025-03-18 13:06:57.606 2025-03-29 22:39:51.183 \N Get something graphene OS compatible\n\nhttps://grapheneos.org/releases\n\nGet F-droid\nhttps://f-droid.org/packages/\n\nLearn how to install .apk files from the releases page of github repos\nhttps://github.com/ImranR98/Obtainium/releases/tag/v0.13.8-beta -> Update from releases page\n\nVideo about F-droid to get you hyped about it lel\nhttps://www.youtube.com/watch?v=7FfWz1NRQJQ https://example.com/ 20187 442141 441695.441712.441750.441801.441803.442135.442141.442148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.62629238446446 0 \N \N f 110420462 \N 1 51835531 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442243 2025-03-18 13:40:21.597 2025-03-29 22:39:51.183 \N I tried many\n\ngiving gifts by exchanges \nOpen dimes \nDownload BlueWallet and I’ll send you some \n\nWhen I am gifting for birthdays weddings and the such I always think how can I get them bitcoin trying to stay away from having them buy KYC but sometimes I suggest it https://example.com/ 7913 442124 442084.442109.442124.442243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0686075029093 0 \N \N f 38402931 \N 1 165353734 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442138 2025-03-18 12:58:26.559 2025-03-29 22:39:51.183 \N Thank you, I'm glad to see people on here taking this stuff more seriously than on twitter. https://example.com/ 4259 442124 442084.442109.442124.442138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8408524910056 0 \N \N f 243756195 \N 2 92299347 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442856 2025-03-18 21:10:48.071 2025-03-29 22:39:51.183 \N i can get behind this symbol, i also think the unit bias of large numbers is really important to making people excited to hold bitcoin.\n\nnobody wants to give up their life savings just to acquire a small fraction of something… but give them hundreds, thousands, or even millions of sats and they’ll feel richer than ever. https://example.com/ 11158 442751 442751.442856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.16403440243279 0 \N \N f 11829023 \N 1 203544303 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442634 2025-03-18 17:59:00.605 2025-03-29 22:39:51.183 \N > Implementation follows specification, not the other way round.\n\nIn an ideal world where "specification first, then implementation" (assuming software spec can be perfect which is rarely the case), then yes. But that has never been Bitcoin.\n\nBitcoin Core can have bugs too or have internally inconsistent code, but when it does, you want to follow whatever it does.\n\nIt's not ideal but the ship has sailed long ago on that one. There's no going back to the "specification first, then implementation" model. Not on a live, decentralized production network worth hundreds of billions of dollars.\n\nThis is true even if certain parts of btcd / libbitcoin / [INSERT YOUR ALT. CLIENT HERE] are somehow "better written" / "more sensible" than in Core.\n\nIn a distributed consensus sense, being correct is not the ultimate goal. Being correct relative to everyone else is.\n\nAnother reason to stick to Core for consensus is that consensus is so hard (and 10x more critical for a base monetary protocol), even Core must honor its past selves. The backward-compatibility requirements for Bitcoin is the most stringent among all software we humans have ever built to-date, if it is here to stay and to have an impact that we hope for.\n\nIn summary, IMHO people are applying old mental models and existing software practices to Bitcoin, but that's a huge mistake.\n\nBitcoin (as a software project) is an extremely special beast, and is the first and only of its kind. The old rules / practices might not apply. https://example.com/ 18177 442562 439263.442558.442562.442634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6479706326177 0 \N \N f 133617588 \N 1 79114296 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442405 2025-03-18 14:47:37.151 2025-03-29 22:39:51.183 \N I just want to say that SN saving your post if you accidentally leave the page is awesome! https://example.com/ 688 442084 442084.442405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.25082523893322 0 \N \N f 208802808 \N 1 172163632 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442398 2025-03-18 14:45:43.028 2025-03-29 22:39:51.183 \N I've been working on a project to build a decentralized DNS, using Bitcoin and Nostr for the base layers. It's starting to come together, and I wanted to get some feedback on the general approach to the protocol.\n\nThe idea is this: Bitcoin serves as the timestamp provider. Publish a hash on the blockchain. Built into the hash are the root-level name, the public key and a merkle root for children (more on that in a moment). This is published to the timechain as a proof of ownership (names are first come/first serve).\n\nAfter publishing a claim of ownership on chain, you can then publish a Nostr event, which contains the data necessary to recreate the on-chain hash. After that link is forged, we can use additional nostr events to publish record changes (like DNS records), always linked back to an on chain proof of ownership.\n\nAs you can see, the idea is that the blockchain is used to basically timestamp a claim to a name, and nostr is the actual transport protocol for the name data. It uses the same cryptographic primitives as bitcoin and nostr, so it all dovetails very nicely together.\n\nIt is intended to be highly scalable, because root-level names published on chain are actually entire namespaces on their own, containing potentially infinite descendants in a tree. Think of it like: `com` is the root name, `amazon` is a child, `www` is a grandchild, etc. The only thing that ever needs to be published on chain again are ownership changes (transferring ownership of a name to a new private key, or adding new descendants).\n\nIt's also intended to be self sovereign and censorship resistant. The descendants are aggregated into a merkle tree and published as part of the ownership proof hash on chain, and each name is associated with its own cryptographic key. Which means that, even in the distant future when you may not be able to afford an on chain transaction yourself, but if you get a descendant name from some business offering the service, once you are given it, it belongs to your private key and cannot be revoked.\n\nI'm building an indexer right now, which is just software to look for transactions on chain and the correct nostr events on relays, then link then and provide an API to query for name records. Once that is ready, in a few weeks or a month, I will publish it along with a more formal-ish spec.\n\nThe intention is for this to be a very simple protocol, easy for devs to implement and understand. If nostr has taught me anything, it's that simple protocols inspire a lot of enthusiasm.\n\nAny thoughts on this approach? https://example.com/ 18270 442084 442084.442398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.07516000850907 0 \N \N f 47996668 \N 1 74641636 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 56183 2023-08-27 04:09:26.186 2025-03-29 22:39:47.903 Jack Dorsey departs Bluesky board Can't say I'm shocked. What surprised me about this piece, though, was how active he still is on Twitter (or X). No mention of Nostr at all. https://techcrunch.com/2024/05/05/jack-dorsey-says-hes-no-longer-on-the-bluesky-board/ 21070 \N 56183 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.21107127631744 0 \N \N f 0 \N 0 224856830 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442414 2025-03-18 14:50:35.789 2025-03-29 22:39:51.183 \N Snail? https://example.com/ 21631 442084 442084.442414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73100771623896 0 \N \N f 97432799 \N 1 237925483 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442653 2025-03-18 18:12:25.909 2025-03-29 22:39:51.183 \N **Zap to zero day 2** _([thanks to @jgbtc for the nice catchy name](https://stacker.news/items/369267))_\n\n---\n\n**Total satsback so far: `3492 sats (3492 sats yesterday)`**\n\n_does not include people zapping me over the day_\n\n![2023-12-29-125507_920x301_scrot.png](https://m.stacker.news/9881)\n\n_Didn't think about territory earnings when I posted about this "survival game" [yesterday](https://stacker.news/items/369056). I think it doesn't make sense to include them in my accounting of this "zap to zero" experiment. Wanted to show off my territory earnings anyway. [Especially my ~crypto earnings](https://stacker.news/items/370096). Maybe I already made more from ~crypto than some people ever did with their "crypto", lol._\n\n---\n\n**Total zapped so far: `13k-ish sats (13k-ish sats yesterday)`**\n\nNot entirely sure since top does not show the exact amount of sats:\n\n![2023-12-29-121841_610x272_scrot.png](https://m.stacker.news/9879)\n\n[I also found a bug in our calendar component](https://files.ekzyis.com/public/sn/calendar_day_bug.mp4). Funny how you can break stuff by just using it in ways in which it might not have been used before, lol. Always reminds me of the joke about [a software tester walking into a bar](https://www.stickyminds.com/article/tester-walks-bar-reviewing-test-techniques).\n\nBut a better way for keeping track of how much I spent would definitely be [as mentioned by @elvismercury yesterday](https://stacker.news/items/369127):\n\n> In service of this idea, here's a renewed call to have SN report the amount of sats zapped each day, in the same notification that tells you how many sats you've earned. Would help with this accounting.\n\nWill try to look into this today. I like to do small stuff in breaks of [working on big stuff](https://github.com/stackernews/stacker.news/pull/715).\n\n---\n\n**XP points gained so far: `+4 (+4 from yesterday)`**\n\nHad to stay up late just to find content that is worth my last few hundred sats. I wanted to make them count. I also noticed that I don't _really_ want to zap old content with these precious last sats since that old content is unlikely to give me sats back iiuc ([yil!](https://stacker.news/items/369541)) our own reward algorithm. [However, I just had to zap this comment](https://stacker.news/items/60799) when I saw it. To find the comments that I zapped yesterday, I asked [satistics](https://stacker.news/satistics) for help. [And I found another bug, yay!](https://files.ekzyis.com/public/sn/satistics_bug.mp4) [Might be related to caching](https://martinfowler.com/bliki/TwoHardThings.html), not sure yet. Since I think it's funny to see what I zapped (and how much I zapped it) and I like to be transparent, here are the last few zaps that I did yesterday:\n\n![2023-12-29-124613_946x912_scrot.png](https://m.stacker.news/9880)\n\nThe last zap might have been a "Let's get this over with"-zap.\n\nI'll stop writing now. This has already taken way too long to write. [And I still need to proofread this before posting](https://stacker.news/items/364600).\n\n---\n\n_btw, if you clicked on any links to my file server, I am going to [track you through any VPN you might be using](https://stacker.news/items/268492)._\n\n[_click here for previous day_](https://stacker.news/items/369056)\n\n---\n\n_edit: [maybe I should indeed make regular (= daily) posts out of this](https://stacker.news/items/369127). Similar to [Operation Saylor](https://stacker.news/items/363765) from @pillar._\n\n_But how should I call this operation? Operation Going Broke?_ https://example.com/ 636 442591 442588.442591.442653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3191359730148 0 \N \N f 209994679 \N 1 125224179 0 f f \N \N \N \N 442588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448347 2025-03-22 14:59:20.011 2025-03-29 22:39:51.184 \N Did you just create a prediction market on nostr without ever mentioning prediction markets?\n\nupdate: okay, it's maybe a stretch to call these note duels prediction markets since there is no trading involved\n\nbut sounds very interesting nonetheless. and looks like a very important primitive 👀 https://example.com/ 694 448283 448283.448347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.58041811587402 0 \N \N f 119964310 \N 1 212080924 0 f f \N \N \N \N 448283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 56520 2023-08-27 20:17:48.767 2025-03-29 22:39:47.904 Bitcoin Piggy Bank (now easier than ever!) ATTENTION PARENTS!\n\nI have revamped my LNBITS [bitcoin piggy bank](http://bitcoinpiggybank.vercel.app) so you don't need to deploy it yourself. Check it out at http://bitcoinpiggybank.vercel.app. All you need now is a LNBITS wallet. I've deployed a website that you can just log into with that and nothing else. I'm thinking about actually renting out my own domain for this one if people find it useful.\n\nhttps://www.youtube.com/watch?v=X-MNqJiLCM4\n\nTeach your kids about sound money while they're actually stacking sats and using a fun interface. \N 9348 \N 56520 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1302522729366 0 \N \N f 0 \N 0 150569573 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442859 2025-03-18 21:12:51.434 2025-03-29 22:39:47.905 SN Saturday Newsletter 3/9/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [@siggy47](https://stacker.news/siggy47) explores time preference relativity.\n - [Low Time Preference When You Don’t Have Much Time Left](https://stacker.news/items/452688)\n - 134.7k sats \\ 66 comments \\ [@siggy47](https://stacker.news/siggy47)\n2. Apple is simultaneously a customer focused product darling and a dystopian monopoly. [@davidw](https://stacker.news/davidw) analyzes Apple's duality.\n - [Apple - love it or hate it? 🍏](https://stacker.news/items/447944)\n - 109.1k sats \\ 43 comments \\ [@davidw](https://stacker.news/davidw)\n3. [@hong](https://stacker.news/hong), the CTO of [Bitwise](https://bitwiseinvestments.com/) which launched the [BITB](https://bitbetf.com/) Bitcoin ETF, stopped by for an AMA. We learn about how an ETF works, what can go wrong, what an ETF CTO thinks about bitcoin, and more.\n - [I'm Hong, cofounder/CTO of Bitwise. AMA!](https://stacker.news/items/454701)\n - 27.7k sats \\ 83 comments \\ [@hong](https://stacker.news/hong)\n4. [@davidw](https://stacker.news/davidw) encourages builders to ship more value and fewer features, and explains how to go about it.\n - [Building Better Products - Less Is More](https://stacker.news/items/450871)\n - 109.1k sats \\ 16 comments \\ [@davidw](https://stacker.news/davidw)\n5. Bitcoin exchange rates breached all time highs in many currencies this week. [@thebitcoinbugle](https://stacker.news/thebitcoinbugle) polls stackers for the anthem of this bull run.\n - [What Is the Song Of This Bull Run?](https://stacker.news/items/448349)\n - 6.1k sats \\ 59 comments \\ [@thebitcoinbugle](https://stacker.news/thebitcoinbugle)\n\n\n##### Don't miss\n- [Being expatriotic](https://stacker.news/items/457267)\n- [Something expensive worth buying](https://stacker.news/items/451632)\n- [I want to pay my employees in btc](https://stacker.news/items/452135)\n- [When Money Dies In The 21st Century](https://stacker.news/items/450956)\n- [Some tips for landing your first developer job](https://stacker.news/items/449696)\n- [We're witnessing history](https://stacker.news/items/456221)\n- [Does anyone here EXTENSIVELY use AI to help them write/debug code?](https://stacker.news/items/454927)\n- [Liquidity on Lightning: Moving from UX to Economix](https://stacker.news/items/452624)\n- [Mutiny Wallet is now available on iOS and Android! 🚀](https://stacker.news/items/453045)\n- [🤔 Help Build Bitcoin Search V2!](https://stacker.news/items/451333)\n- [Operation Saylor - Episode 20/120](https://stacker.news/items/450792)\n- [Atomic Swap Directory](https://stacker.news/items/447500)\n- [New York Community Bank is collapsing](https://stacker.news/items/452942)\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Draft of SN Open Source Contribution Award Rules](https://stacker.news/items/449767)\n- [SN Territory Rent in a bull market](https://stacker.news/items/453238)\n- [SN release: territory transfers and small stuff](https://stacker.news/items/453435)\n- [Beyond Jobs: Vision for Classifieds & Ads on SN with powerful Nostr Integration](https://stacker.news/items/454425)\n- [Some thoughts on what's worked for me in my first ten days here](https://stacker.news/items/454547)\n- [A Rent-to-Own/Crowdfunding/Equity Shares Model for Territory Purchases](https://stacker.news/items/454895)\n\n-------\n\n##### Top Monday meme \\ 25.4k sats \\ [@thebitcoinbugle](https://stacker.news/thebitcoinbugle)\n![](https://imgprxy.stacker.news/eH_3sW2hkSs8RhqR-dcPPm4HklIOp7crd3Hl1dthLwY/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8xODgyNQ)\n\n[**all monday memes**](https://stacker.news/items/449376)\n\n------\n\n##### Top Friday fun fact \\ 10.4k sats \\ [@Scoresby](https://stacker.news/Scoresby)\n> Nancy Pelosi's net worth is [$114,662,521](https://www.opensecrets.org/personal-finances/nancy-pelosi/net-worth?cid=N00007360)\n>\n> Her salary is [$223,500 per year](https://finance.yahoo.com/news/rich-nancy-pelosi-164446393.html).\n>\n> Fun times.\n>\n> ![](https://i.dailymail.co.uk/i/pix/2011/06/15/article-2003954-0C75607500000578-285_468x372.jpg)\n\n\n[**all friday fun facts**](https://stacker.news/items/455980)\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 1428 \N 442859 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 18.6078036001422 0 \N \N f 236475932 \N 2 116604697 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450087 2025-03-23 18:41:59.884 2025-03-29 22:39:51.184 \N I think the airgap between phone (wallet) and pc screen (shop) is very elegant. It mirrors pre-internet real life.\n\nAlso feels much more secure for users. \n\nI also feel like this was the way Lightning was intended or at least the direction Lightning development was striving towards https://example.com/ 19992 449878 449878.450087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4183350899281 0 \N \N f 35492165 \N 1 113729000 0 f f \N \N \N \N 449878 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443295 2025-03-19 08:47:38.228 2025-03-29 22:39:47.905 Bitnodes showing large drop off of tor nodes ![](https://m.stacker.news/39649) https://bitnodes.io/ 7674 \N 443295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4380729142023 0 \N \N f 8668514892 \N 70 177085996 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 24 0 0 59848 2023-09-05 13:28:29.975 2025-03-29 22:39:47.905 Introducing Flow 2.0: A New LSP Focused on Just-In-Time Liquidity \N https://twitter.com/gkrizek/status/1628440689456615424 10469 \N 59848 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.4035978540548 0 \N \N f 0 \N 0 75819280 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443888 2025-03-19 15:08:23.595 2025-03-29 22:39:51.184 \N Half day into the fiat mines, good afternoon \\o/, time for 🧉 to recover energy. https://example.com/ 4177 443401 443339.443356.443401.443888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.2084021220245 0 \N \N f 102490064 \N 1 141222736 0 f f \N \N \N \N 443339 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443527 2025-03-19 12:01:20.728 2025-03-29 22:39:51.184 \N I was thinking we should just create a survivor pool account. Sats go to the account for entry into the pool. Account provides list of weekly games and then an update after the week's games are over.\n\nSurvivor account pays the winner at the end. Any additional sats it got tipped along the way can either go to whoever is administering the account or we can just split amongst whoever participated. https://example.com/ 18829 443272 443272.443527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8660440411618 0 \N \N f 203482948 \N 1 156540135 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 70380 2023-10-04 12:32:51.059 2025-03-29 22:39:47.905 How we built the new Find My Device network with security and privacy in mind > The Find My Device network locates devices by harnessing the Bluetooth proximity of surrounding Android devices.\n>\n> Imagine you drop your keys at a cafe. The keys themselves have no location capabilities, but they may have a Bluetooth tag attached. Nearby Android devices participating in the Find My Device network report the location of the Bluetooth tag.\n>\n> When the owner realizes they have lost their keys and logs into the Find My Device mobile app, they will be able to see the aggregated location contributed by nearby Android devices and locate their keys.\n\nInteresting, it's a [mesh network](https://en.wikipedia.org/wiki/Mesh_networking). Not sure why they call it "crowdsourced device-locating network". More friendly for normies?\n\nI can see this being useful but I am also worried about implications further down the road like people getting used to it and not caring how it's implemented anymore (assuming they would even care now).\n\n Also, I understand that with "even if it's offline", they mean it's Bluetooth which is independent of internet access but does this mean you can't disable Bluetooth anymore?\n\nWhat also confused me is this as mentioned in https://stacker.news/items/499445:\n\n> thanks to specialized Pixel hardware, Pixel 8 and 8 Pro owners will also be able to find their devices if they’re powered off or the battery is dead.\n\nHow does this not need a battery? Did they include a dedicated battery similar to ["CMOS batteries"](https://en.wikipedia.org/wiki/Nonvolatile_BIOS_memory#CMOS_battery)?\n\nI think this is another prime example of consumer tech that is at risk to be abused by anyone but especially state actors. The other prime example is the Internet of Things.\n\nThinking more about this, this might be the Internet of Things but instead of things it's phones running Android and instead of internet it uses [Near-me area networks](https://en.wikipedia.org/wiki/Near-me_area_network).\n\n[_Hacker News discussion_](https://news.ycombinator.com/item?id=39983810) https://security.googleblog.com/2024/04/find-my-device-network-security-privacy-protections.html 1726 \N 70380 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.2176656049281 0 \N \N f 0 \N 0 35816004 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 71336 2023-10-07 10:39:17.731 2025-03-29 22:39:47.905 Can Bitcoin enslave us all? Serious question: \n\nWhat stops politicians from just saying that:\n\n- only transactions from kyc ed addresses are legal, all others are illegal\n- if your business accepts non kyced BTC, you get fined double or triple of the amount you received\n- if you accept it as a private person, you go to jail.\n\nPretty simple. \n\n90% of people would comply immediately, we saw that with the Covid Theater and the experimental gene therapy sold as vaccine. Then we are policing each other, asking for KYC if the address is not kyced in a public or gov database. Then we rat out others who do not comply. Welcome to Hell\n\nDo you think this can not happen? What tools do we have against such a step? \n\nMaybe i am missing something but that seems like a very easy thing to do for governments. No?\n\n \N 21391 \N 71336 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.6069795989212 0 \N \N f 0 \N 0 19820841 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 368845 2025-01-15 08:25:06.866 2025-03-29 22:39:47.906 Reasons for low fertility rates and the wokeism cancer # Reasons for low fertility rates\n\n## The Backstory\n\nA friend of mine (absolutely woke leftist climate change person) argued with me about my dream of having up to 4 kids. \n\nSince my better half is pregnant (https://stacker.news/items/771612) and we are excited about our new journey, I had a chat with her. She asked me if I would like to have another one. I told her I wanted more. She got really defensive. Who am I to burden my wife with this! She has to give birth 4 times? What kind of a horrible person am I, and are there not enough people on this planet already? (Oh, she's a Malthusian - no surprise there). Can't I just adopt children from poor countries?\n\nHer argument for why the fertility rate is dropping there:\n\n_Women's empowerment! Gender equality!_\n\n## Her Argument:\n\nSince women have the power to be free and decide what they want, they do not want to be baby poop factories!\n\nWomen are free now! Men have to deal with it!\n\nThe more rights women get, the lower the birth rate.\n\nLook at South Korea, women are free, thats why they dont want to have kids.\n\n## My Argument:\n\nFirst we have to take a step back and look at history.\nWe will use the data we have from South Korea (because its her argument), Germany (because thats where we both are from) and USA (because thats where most of the audience is from and I dont want you to drop out).\n\n### My arguments why the birth rate was higher in the past:\n\n1. more children died\n2. there was no pension system\n3. there was no elder care system\n4. there was no birth control\n\n**More Children died**\n![](https://m.stacker.news/64441)\n\nI am using the UK as a US reference here, hate me for that.\n\nMy argument is that fewer kids are dying, so we dont need as many anymore.\nOnce the death rate dropped, the fertility rate dropped from over 5 to 2-3.\n\n**There was no pension system**\nAs soon as we see nationwide retirement systems for all people, we see the fertility rate drop. We do not need as many children to help us with our financial support when we are old. The government will do that for us.\n\n**There was no elder care system**\nAgain, since the elderly care systems have been government-provided (Germany 1995 and South Korea 2008), the fertility rate has dropped again. We no longer need generational households. I do not need children to take care of me when I am old. I can go to a nursing home.\n\n**There was no birth control**\n![](https://m.stacker.news/64442)\n\nSince the introduction of the pill in the 60s and 70s, we have seen one of the sharpest declines in fertility.\n\n### My argument for why it is so low now:\n\nSince their argument was more freedom and more equality for women, I will prove the opposite.\n\nSouth Korea has the lowest fertility rate of our three countries at only _0.7_.\nBut is it also the most gender equal?\n\nMen do not spend nearly as much time on chores as women.\n![](https://m.stacker.news/64443)\nWhich points to more traditional roles.\n\nThe same is true for wages and work.\n![](https://m.stacker.news/64444)\nSouth Korea falls behind.\n\nI want to remind again that the fertility rate has been dropping for the last 100 years, not for the last 10 years of gender equality and woke madness.\n\n**So why is it that not only is the fertility rate dropping, but more and more women today do not want to have children?**\n\nThe reason I give is the _fiat world_.\n\nLet me explain:\n\nThe state is taking more and more responsibility away from the family.\nAs the welfare state expands, the role of the family becomes less important.\nSocial security in the form of pension systems, elder care systems, and others are taking away our responsibility to take care of our future.\n\nMoreover, the state intervenes and destroys norms and culture.\nReligion in the form of marriage and baptism is no longer important. You do not have to get married. Women have the safety net of the state, they do not need the role of a security providing man anymore. Baptism to bring children into society is meaningless, because godfathers have no legal role anymore, because the state takes over if the parents disappear.\n\nEducation has been taken away from the parents by compulsory school systems.\n\nThe man's role in the traditional family was destroyed by the state, but the woman's role is now unfair and must be changed. \n\n### So where is the meaning?\n\nWhat makes us human beings are three qualities, I would say:\n1. having meaningful experiences that shape our future far more than instincts can.\n2. taking responsibility for someone else beyond our own needs.\n3. building a legacy beyond our death.\n\nAll three combined will give you the traditional family.\nWhenever you ask parents what their greatest memories are, they all include their children. They sacrificed more for their children than they could have imagined, and the children carry on their legacy.\n\n_Isn't that beautiful?_\n\n### But what do we have today?\n\nBut today we have a society where masculinity is evil. Where women are free to whore around with birth control. We have open relationships left and right. Students who study way too long without creating any value. A society where no one wants to take responsibility, but demands everything from the other person. No commitment, no responsibility, no sacrifice.\n\nCongratulations Wokeism!\n\nYou are not the cause of low fertility, but you are the cancer that has grown out of it!\n\n### But there is hope!\nWhen we started that topic in school 9 out of 86 students wanted to have kids in the future. After the whole shared responsibility and roles in the family topic we did the questionnaire again.\nmore than half want to have kids in the future now. \N 19905 \N 368845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0106171008961 0 \N \N f 0 \N 0 124766985 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443836 2025-03-19 14:36:30.904 2025-03-29 22:39:47.906 First Stacker Territory Post and First Using GrapheneOS Adopted Graphene as my daily driver. \n\nWas going to get podcast 2.0 app going but instead migrated my stacker login. The ease of linking and unlinking login methods is really nice.\n\nHave been carrying around two phones for a bit now and find my self gping back to iOS less and less. \n\nFingers memorozing the new keyboard and such. \n\nMissing so far: Spotify, Discord, Meetup. \nHoping to replace those eventually with something else but there's some friction to be smoothed out. \n\nObtanium app store is neat and all i've used so far. Browser for email stuffs since I need them for kiddo school things and other things in normie land. \n\nDebating a Mullvad VPN and open to ideas. \n\nIts been refreshing to have excellent battery life since my apps arent comstantly tracking me. \n\nMulling over how to get my wife to care about privacy. And more importantly, my kids. Planning to start them on Linux so there's that. \n\nThanks for reading my ramblings. \N 910 \N 443836 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 2.13221759353658 0 \N \N f 1416667460 \N 14 93015330 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 7 0 0 443830 2025-03-19 14:34:01.032 2025-03-29 22:39:51.184 \N Speaking as someone who's been fostering kittens... the dumb ones are less annoying than the smart ones. 🐱 \n\n@Nuttall's word devolution is apt. It's a devolution of the mind. The pertinent question is whether it's all some negligent accident, or not. \nhttps://www.youtube.com/watch?v=6CDaflxJJ0g&pp=ygUaYWNhZGVteSBvZiBpZGVhcyBlZHVjYXRpb24%3D\n\nEither way, it's on us to raise the bar. https://example.com/ 20603 443799 443799.443830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5758780220854 0 \N \N f 41955605 \N 1 31636547 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443835 2025-03-19 14:36:28.243 2025-03-29 22:39:51.184 \N Curious what you mean by "need for capitalism". Do you mean the need of energy or do you mean the need for capitalism? And how do you personally define "capitalism". What does it mean to you I mean. https://example.com/ 21012 443831 443577.443651.443711.443715.443731.443757.443772.443796.443811.443819.443831.443835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1035680714061 0 \N \N f 31325999 \N 1 211457678 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 71363 2023-10-07 11:50:36.653 2025-03-29 22:39:47.906 Free Time vs Freedom Time I'm sure some of you stackers have felt this as well but for me, after being orange pilled, stacking sats, and lowering my time preference, time seems to flow differently compared to that of my peers who still operate within the fiat system. I feel more liberated and I no longer feel like "I never have time to do anything" and I don't ever use not having time or being too busy as an excuse anymore. In fact the opposite is now true, in that I have more free time than I know what to do with nowadays. \n\nWhich leads me to this idea of free time vs freedom time. \n\nIt's quite the simple concept. In my mind, free time is the time that we have to mess around and just relax, and have fun with no sort of direction or goal set in mind. Free time is what we are tricked into believing is the pinnacle goal of life, to retire and to enjoy our free time that we slaved our lives away in order to obtain. To be able to just sip on a pina colada at some beautiful beach somewhere and live in a resort where there's endless entertainment, food, and drinks. Or to live in some "American dream" mansion and ride luxurious cars and flaunt that you're retired until you die. \n\nFree time also has a bit of a negative image to it. Some view all forms of free time as time that could otherwise be used towards being busy and productive, and see free time as something exclusive to those who are lazy and unproductive. This is quite common in Asian culture, and I being Japanese can attest to the workaholic nature of the East, in which free time is labeled as utter nonsense and laziness. Work, work, work, work, pay bills, work, work, be productive, work, rinse and repeat. No free time whatsoever. \n\nHowever, after being able to store value and, therefore, store future time away for myself with Bitcoin, I have been able to buy myself a decent amount of free time, in which the time is not being allocated toward being busy bodied, working, and being productive for someone else. I now have this time, free time, that I can choose how to use for myself. \n\nSo then what is the difference between free time and freedom time? This is an idea I kind of just came up with but in my mind, the main distinction is freedom time is free time but with clear goals, motivation, drive, and passion behind the usage of it. For instance, for my life, I use freedom time to improve my health and work towards optimizing my mental and physical health to it's full potential. I also use this newly obtained freedom time to become the best footballer I can become, which takes a lot of time to accomplish. Writing on stackernews and commenting on other stackers valuable posts I believe is an expression of my freedom time, as to me a goal of mine is to do my part in progressing the Bitcoin network forward in whatever way I can, and stackernews is a great place to learn, and to interact and share with the community. Spending as much time with friends and family, and truly listening and communicating with each and every one of them with an open mind and heart is something that I have been able to do with this freedom time as well. Whereas before, hanging out with friends fell under the scope of free time not freedom time, as I would be hanging out with friends but at the same time my mind would be occupied by work or some other fiat worry and I would not be fully present. \n\nThis is why I know without a doubt in my mind, I will never be retired, in the sense that I no longer work towards something and just live a life stuck in free time, with no purpose or drive to do anything. I strive to maintain, cherish, and make the most of whatever freedom time I acquire, and to use that freedom time to it's maximum potential. \n\nWith all that being said, I think the general progression goes like this. No time except fiat slavery time > stack some sats, store away some time for future you > acquire a bit of free time as a result of stacking sats > enjoy free time > learn to use free time more effectively, enter freedom time > utilize freedom time to live your best life. \n\nThis post is very raw and honestly fresh off the top of my head but also thought was worth sharing. Do you feel time flows a bit differently compared to your nocoiner peers? What do you with your free time? What do you do with your freedom time? How has your usage of time changed after becoming a Bitcoiner? \N 17030 \N 71363 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.9753896050197 0 \N \N f 0 \N 0 210110093 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 71503 2023-10-07 22:15:16.494 2025-03-29 22:39:47.907 The Bitcoin Retirement Plan *Episode VIII. Block height: 790000. Dollar Cost Average (DCA) Bitcoin for your retirement? The best strategy to provide for your future? We ran the numbers.*\n\nOriginal Post: https://carlbmenger.substack.com/p/the-bitcoin-retirement-plan\n\n## The week in Bitcoin\n\n- **Strike**: The global money App moves headquarters to El Salvador and expands to 65 countries. The move to relocate was a response to the growing anti-crypto regulatory sentiment in the U.S.\n- **Strong HODLERS**: Bitcoin dormant supply increases as ‘Hodlers’ refuse to sell. Inactive BTC supply has climbed to a record-high. 68% of Bitcoin hasn't moved in over a year, thus Hodler conviction is at its highest point in several years.\n- **Ledger**: Co-Founder and former CEO of French hardware wallet company Ledger admits that governments could gain access to your Bitcoin when using Ledgers new ID based recovery ‚feature‘.\n- **High Inflation**: Citizens in countries with high inflation rates seek refuge in digital assets. Turkey, Argentina and the Philippines have the highest growth rates in cryptocurrency ownership.\n- **Bitcoin, a national security issue**: Two U.S. senators have introduced legislation that they hope will be a safeguard against any risks that El Salvador’s adoption of Bitcoin as legal tender may pose.\n- **Tether**: One of the largest stable coins (Tether (USDT) is starting to allocate up to 15% of its net realized operating profits towards purchasing Bitcoin.\n\n## The Cyber-Shrimp Army\n\n![Cyber-Shrimp](https://i.postimg.cc/DwCY7QK5/IMG-4314.jpg)\n\nA small army of Cyber-Shrimps voraciously and recurrently bringing home the Bitcoin that is mined daily. That's how I imagine the DCA army, including myself. We are the many that buy, even when the ephemera like locusts leave the Bitcoin Noah's Ark by leaps and bounds. We Shrimp who get even more excited when Bitcoin briefly "collapses" once again and is declared dead by mainstream media because it gives us the opportunity to stack cheap Sats.\n\nAnd according to Glassnode, Bitcoin shrimps (<1 Bitcoin) are growing substantially. In fact, we are hodling 1.31 million coins, adding an average of approximately 26,000 Bitcoin to our cumulative holdings each and every month. Keep in mind, only about 27,000 Bitcoin mined monthly, which will be halved in spring next year due to the Bitcoin halving. Absolutely mind-blowing!\n\n![Hodlers Strong](https://i.postimg.cc/rmdpf9qH/IMG-4304.jpg)\n\nWell, to be honest, when it comes to my Bitcoin stack, I'm not running the numbers, so I don't keep a record of profit and loss on my DCA strategy, in fact I don't even know my average price at which I bought my coins. My only relevant metrics are weather my Bitcoin stack is growing over time and weather the Bitcoin network is healthy, i.e. Hashrate. Both are at all-time high in time of writing. Yeah, buddy!\n\nNonetheless, it is of course very interesting when people run the numbers and take a closer look at the profitability of DCA, especially compared to other strategies. Thus, I have been following BRetirementPlan for quite some time, who is running the numbers for all of us. I thought it would be very interesting for my audience to share his story and take a closer look at the numbers. This is my first Guest Newsletter episode. So let’s dive in.\n\n## The Bitcoin Retirement Plan\n\n![Carl and ERB](https://i.postimg.cc/FRqYvBPm/IMG-4384.jpg)\n\nHi, my name is Mr. ERB, and I am running a blog called ‘Early Retirement by Bitcoin’. More recently, I liked to call my strategy ‘The Bitcoin Retirement Plan’. Simply speaking, I buy Bitcoin every month until I can retire from my stack and compare this strategy with others. But first things first. Let me explain briefly my personal Bitcoin story.\n\nIn 2017, I started to educate myself and looked into early retirement, financial freedom and financial independence stuff (short FIRE). Probably the most well known blogger in this sphere is called Mr. Money Mustache and I followed his content every day, several hours, for weeks in succession - a very similar behavior than what finding Bitcoin caused a little later. \n\n### The FIRE strategy\n\nGrowing up in a not very financially literate family, I learned (at the ripe old age of ~30) about stocks and the stock market in general, and the idea of early retirement and financial freedom, pure magic to my financial beginner brain. In short, these FIRE folks save as much as they can from their paychecks, use it to buy the S&P500 or whatever indices, and keep going until their annual return from the stock (historically 7%) is enough to fund their frugal lifestyle. Basically, this means extreme savings behavior and commitment for many years (if not decades). So I started saving what I could and bought some stocks for the first time in my life.\n\n### The Cheat Code\n\nBUT as I'm sure you all know, it usually doesn't turn out the way you originally planned, because then came Bitcoin. I heard about Bitcoin in a very random way, initially thought about it *only* from this FIRE point of view as a way to accelerate my early retirement endeavors. Very quickly though, I became, of course, obsessed about all aspects of Bitcoin (just the way it is) and started to think less from a point of view of an early retirement enthusiast and more from a Bitcoin stack maximalist. So my strategy became to simply buy as much Bitcoin as possible but without any savings to lump sum. It basically meant saving the max amount from my salary and buying the max amount of Bitcoin every month. I started this in October 2017 (almost at the peak of the bull market) and have been buying as much as I can every month ever since.\n\nFrom very early on I was confident that my strategy will be very successful and buy me freedom in a few years (well, 5+ and counting atm). Much like what the FIRE people are trying to do with stocks. But it felt like I had found the ultimate cheat code, and achieving my goal would be much easier and more effective with Bitcoin. \n\n### Documenting the numbers\n\nI started documenting the progress of my plan for myself, and after a while I thought maybe people find this content valuable. I created a blog so that people could see how it looks like to stack Sats from zero to hero (or to fail spectacularly) - how much you need to save per month for a particular stack, how many years you need to persist, how many bear markets you need to go through, how many bull markets will finally set you free, how much pain you need to endure, how many ‘crises’ will come and go, and most importantly - how the ‘in the end-impressive’ stack gets built slowly but steadily in a boring DCA fashion.\n\nSo, every month I buy more Bitcoin and update my charts that document the progress of my Bitcoin Retirement Plan. In the following, I would like to share with you my three most important charts.\n\n### Running the numbers\n\n**Chart ONE**\n\n![Chart ONE](https://i.postimg.cc/P5s8PJmD/IMG-4397.jpg)\n\nThe orange line (left axis) is my Bitcoin stack, always increasing since I add constantly and never sold. The green line (right axis) is the corresponding fiat value of my Bitcoin stack, calculated with the purchase price at every data point. You can easily see the bear and bull markets in fiat terms. The black dashed line is the total amount of fiat money that I used to purchase Bitcoin. The difference between the black dashed line and the green line is my profit in fiat terms, giving you some idea of how successful the strategy has been so far, despite two bear markets.\n\n**Chart TWO**\n\n![Chart TWO](https://i.postimg.cc/59QB0ZZZ/IMG-4398.jpg)\n\nThe blue bars represent every Bitcoin purchase I've ever made, one per month, starting in October 2017. This chart nicely illustrates that the gains always come from holding for several years, and the pain always comes from your recent purchases. There is simply no way to avoid the pain in Bitcoin. Everyone will go underwater sooner or later during their stacking journey, even those who started in 2011 have had their share of pain. But when the time comes, it's up to you whether you wait it out, overanalyze, panic, or just muddle through as a winner. Be warned, you will miss the bottom. What matters is that you stacked while others waited. The bottom line is: If you stack constantly, you win in the long run.\n\n**Chart THREE**\n\n![Chart THREE](https://i.postimg.cc/50YCXCkw/IMG-4399.jpg)\n\nHere I’m comparing my Bitcoin savings strategy to the standard FIRE strategy of basically stacking the S&P. Thus, comparing my original strategy, with the strategy I took after discovering Bitcoin. So, without Bitcoin, my savings stack would be the blue line here. As you can see, stacking Bitcoin is like finding the cheat code because I am currently 10x more profitable compared to the FIRE strategy. And in my humble opinion, it’s only going to get worse for the FIRE strategy going forward.\n\n### Conclusion\n\nFollowing your DCA Bitcoin strategy will feel pointless and boring at times. All hodlers going through periods of pain, disappointment and feeling stupid. But, and that’s the important thing, after this pain, and when Bitcoin starts to catch on again (and it will), you always wish you had stacked more Bitcoin. With your DCA strategy, you are grateful that you've been doing this boring, useless thing for the last few years and are finally seeing progress. Bitcoin is always bitter-sweet. You feel down when the price goes down, but you also feel (kind of) down when the price goes up, because it's harder to get more Bitcoin (and you *never* have enough).\n\nIn my opinion, the "Bitcoin Retirement Plan" is really for everyone, regardless of how much you are able to stack. The truth is, your government retirement plan won’t provide financial freedom, so there is no way around to provide for yourself. So why not build a Bitcoin retirement pile on the side with everything you can. Fast-forward 10 years or more, and I bet your Bitcoin plan has a better chance of serving you well than the government Ponzi one.\n\nAnd if you're reading this without owning any Bitcoin, I understand that you may feel it's too late. But here's the thing: Regardless of the entry date, everyone feels like they are late to Bitcoin. You can't change the past, but you can change your future. DCA Bitcoin, because it is shrimply the best.\n\n![Shrimply the best](https://i.postimg.cc/PJMrJfhW/photo-output.jpg)\n\n## The End\n\nThat's it for this episode. I hope you gathered some valuable knowledge from this one. My takeaway: Time in the market is better than timing the market. Many thanks to Mr. ERB who ran the numbers for us. Make sure to follow him, and keep up-to-date with the numbers:\n\nTwitter: https://twitter.com/bretirementplan?s=11\n\nBlog: https://er-bybitcoin.com\n\nThanks for reading and see you hopefully in the next one. Until then, remember: **Stacking Sats regularly matters.** ₿ critical, ₿ informed, ₿ prepared. Yours,\n\n![Carl B Menger](https://i.postimg.cc/yx3kt4jc/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n--------------------------------------------------------\n\n### Stay tuned:\n\nSubstack Newsletter: https://open.substack.com/pub/carlbmenger?r=cvmtq&utm_medium=ios\nFollow me on Twitter: https://mobile.twitter.com/CarlBMenger\nBe a Node on NOSTR: https://damus.io/npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### B informed:\n\n[VII] Bitcoin in Guatemala: https://stacker.news/items/171339\n[VI] Bitcoin in El Salvador: https://stacker.news/items/161607\n[V] Storing and inheriting Bitcoin: https://stacker.news/items/126542\n \N 17494 \N 71503 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.2214117561858 0 \N \N f 0 \N 0 69323866 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 446513 2025-03-21 10:06:43.558 2025-03-29 22:39:47.907 SN: Labour of Love Frankly speaking, if you were into SN just for the sats, you would find that it isn’t lucrative. Even if you garner 1000 sats for your post - a target that is fairly hard to attain - you can’t even buy a cup of coffee. So SN isn’t the place to be if you want to increase your income-earning potential.\n\nThen why do Stackers post long posts and comments even if it isn’t the most financially rewarding? There could be many reasons: the drive to keep your cowboy hat, the feeling that you want to project some kind of sophisticated image, the cathartic effects of writing. But perhaps it all boils down to the ethos Bitcoiners hold dear.\n\nIt’s manifested in the way Stackers go the extra mile to orange pill merchants, hoping to release others from the shackles of fiat.\n\nIt’s manifested in the way you willingly invest the time and energy to run your own node, never mind that it may take years for it to become profitable.\n\nIt’s manifested in the way you organise info sessions and workshops, hoping to reach out to non-Bitcoiners and make them take the scary first step.\n\nThings that are labour-intensive but don’t deter you because you frame it as a labour of love.\n\nLabour of love.\n\nAnd perhaps since this Labour of Love spirit is embedded within your ethos, it is second nature for you to demonstrate it here.\n\nTo expound on your experiences even though your comment won’t pay the bills.\n\nTo share your POV even though you are facing time pressures and sleep debt. \n\nTo run a territory at a loss because you value the conversations it generates.\n\nStacker News seems to demand a lot out of us than your typical social media platform. But you gleefully call this place home. \n\nYeehaw 🤠 \N 4166 \N 446513 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.503001538562 0 \N \N f 1981262390 \N 16 124523567 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 80861 2023-10-31 18:22:20.712 2025-03-29 22:39:47.907 The Bitcoin Xmas Road Trip 3 countries, 6 days, 2000 kilometers, and a whole lot of Bitcoin. Why? To get a group of Bitcoin builders together and raise awareness across three countries: Kenya, Uganda, and Tanzania. Our route? Nairobi ➝ Kampala ➝ Moshi ➝ Nairobi\n\n**The Cast:**\n-Kenya: Founder of Bitcoin Mtaani and Bitcoin Matatu.\n-Uganda: Founders of Bitcoin Kampala and Gorilla Sats.\n-Tanzania: Man Like Kweks.\n-Foreigners: Founders of Student of Bitcoin.\n\nOur start in Nairobi included a trip to Giraffe Manor, an informal settlement, and meetings with multiple Bitcoin projects. The cast, however, remained incomplete. We had to pick up two members from Uganda (the Gorillas) and meet the final member in Moshi.\n\n15 hours and a border crossing later, we arrived in Kampala. The city was less developed than Nairobi and had potholes everywhere! Surprisingly, everyone spoke English, more than we've encountered in any of the previous countries on this trip. At this stage, we didn’t know we would spend three months building two businesses in Kampala (more on that later).\n\nThe first day was very eventful. We got haircuts at a barber that accepted Bitcoin and paid for a Rolex in Bitcoin. No, not the luxury watch, but Uganda’s national street dish, chapati rolled with eggs, called a Rolex. A beauty and fragrance store was onboarded to accept Bitcoin, while a museum guide and restaurant server were tipped in Bitcoin. With most of the cast assembled, Bitcoin spread quickly and freely.\n\nThe following day, we stood outside Makerere University, the largest university in East Africa, with Bitcoin signs. A few people stopped to chat, one even received their first sats (satoshi, the smallest unit of Bitcoin).\n\nWe then set off to meet the final cast member in Moshi to celebrate Christmas. Along the way, we tipped a motorcycle driver (Uganda), paid a mechanic (Kenya), and sent a backpacker (Tanzania) their first sats. 24 hours, 3 countries, 1 Bitcoin interaction in each - could this be a record!?\n\nEnter the final cast member, Man Like Kweks—an extremely talented artist who makes Bitcoin relatable through music. My favorite track, “[DCA to BTC](https://wavlake.com/album/cbe912ab-614d-49dd-ba7d-b67d9d155ea3)”. He’s got much more, but that’s a good place to start if you’re new to Bitcoin. Need something more recent? Check out "[No Paper No Visa](https://wavlake.com/album/d2cec8c3-72b9-4c3b-a252-53512a7f6a04)".\n\nChristmas was relaxing. Food, conversation, and drinks flowed naturally. It was a great opportunity to reflect and share our experiences from the past year. The inspiration from this road trip led to countless tracks being dropped and multiple Bitcoin-preferred businesses being launched.\n\nBefore we knew it, our time in Moshi was over, and we headed back to Nairobi to end the trip.\n\nNext, the genesis of Juicy B.\n\n![](https://m.stacker.news/53552)\n\n_Sources:_\nhttps://x.com/BitcoinMtaani\nhttps://x.com/BitcoinMatatuKE\nhttps://x.com/BitcoinKampala\nhttps://x.com/GorillaSats\nhttps://x.com/manlikekweks\n\n**Cairo2Cape Articles:**\n[Cairo to Cape Town: A Bitcoin Adventure](https://stacker.news/items/682996)\n[The Dollar Dilemma in Egypt](https://stacker.news/items/688813)\n[Ethiopia: The New Frontier For Bitcoin Mining](https://stacker.news/items/693427)\n[Kenya: A Bitcoin Haven](https://stacker.news/items/694431) \N 21057 \N 80861 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.9282020568052 0 \N \N f 0 \N 0 240878097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 127191 2024-02-14 17:27:17.989 2025-03-29 22:39:47.907 Unofficial bitcoin crossword puzzle - Week 4 - FAMOUS BITCOINER EDITION The increasingly inaccurately named weekly crossword puzzle is up! Have fun. The theme this week is famous bitcoiners. It should be the easiest (and quickest) one yet.\n\n [week 4 puzzle](https://stackernewscrosswordpuzzle4.vercel.app/)\n\n![](https://m.stacker.news/49485)\n\nThere's a bounty associated with a request in the puzzle, but just have fun if you're not a competitive type.\n\nhttps://stackernewscrosswordpuzzle4.vercel.app/ \N 6030 \N 127191 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.373236413911 0 \N \N f 0 \N 0 59100754 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 71841 2023-10-08 22:30:04.333 2025-03-29 22:39:47.908 Zen and the Art of Motorcycle Maintenance by Robert M. Pirsig ‘Zen and the Art of Motorcycle Maintenance’ is a philosophical novel written by Robert M. Pirsig in 1974.\n\nWhat is it about )short version)?\nA motorcycle journey exploring the themes of philosophy, self-discovery, and the search for understanding against the background of the everyday. \n\nWhat’s it’s about (long version)?\nA motorcycle journey across America by the author and his son, asking deeper questions about the nature of reality, quality, and the role of technology. Pirsig explores the concepts of "classic" and "romantic" philosophies, with the classic mindset emphasising reason, rationality, and understanding, while the romantic mindset emphasises intuition, freedom, and creative output. Through his own experience and reflection, Prisig looks for the integration of both these philosophies in achieving a balanced life and to find a deeper sense of meaning and fulfilment in the everyday. The book also elaborates upon the author's mental state, his concept of "quality," and the relationship between (hu)man, machine, and nature. \n\nThe book did acquire something of a cult upon publication. We all read it while we were either on a road (or other) trip…. or full of teenage hormones trying to impress people into bed.\n\nShould I read it?\nIf you want to investigate the benefits of philosophical reflection, the sense of self / meaning or want to see the world through different eyes it’s not a bad place to start. \n\nHowever…. Pirsig's writing style is abstract and complex. It often seems to lack a clear focus or overarching message, zooming as it does between anecdote, philosophical musings, and semi-technical discussions on motorcycle maintenance.\n\nUltimately, whether it’s worth reading or not depends on your personal interest, those who prefer straightforward narrative may not enjoy it.. certainly don’t choose it to learn about traditional Zen Buddhism or actual motorcycle repair.\n\nAnyone else write like this?\nMillman and Cohelo have tried to do similar but neither as well as Pirsig.\n\nDoes it have any Bitcoin in it?\nNope. However, it comes through in the book that technology should serve as a tool to enhance the quality of human life. It’s not inconceivable to see his views applied to Bitcoin (providing secure peer-to-peer transactions, enhancing community cohesion etc) but that’s for smarter minds than mine to examine.\n\n9/10 \N 9350 \N 71841 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.35516521304952 0 \N \N f 0 \N 0 55871560 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447854 2025-03-22 07:48:32.837 2025-03-29 22:39:47.908 Which language other than your mother tongue would you like to speak fluently \N \N 9992 \N 447854 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 19.3750894080134 0 \N \N f 158850177 \N 1 136193587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450672 2025-03-24 06:37:37.063 2025-03-29 22:39:51.184 \N P2P borrowing on sovryn.app\n\nShipped lending this week: https://sovryn.app/earn/lend https://example.com/ 1352 450670 450649.450652.450659.450664.450666.450670.450672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5812319772838 0 \N \N f 468403107 \N 3 172501542 0 f f \N \N \N \N 450649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449003 2025-03-23 04:36:45.302 2025-03-29 22:39:51.184 \N Where the hell did I read this ... oh yeah, [here](https://stacker.news/items/318265/r/elvismercury).\n\n> Giving someone money is maybe the least thoughtful way to show someone you value them but there's no mistaking that you value them when you do. https://example.com/ 21540 448982 448953.448982.449003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6097537174025 0 \N \N f 237102659 \N 1 86155240 0 f f \N \N \N \N 448953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447896 2025-03-22 08:48:48.822 2025-03-29 22:39:51.184 \N That's a sad chart because the teens is the moment to seal true friendships for life, and learn important social and negotiation skills.\n\nI personally have a couple of friends that I see on a regular basis. Our friendship revolves around our common interest for sports. We meet at least once a week, either for training or other social events. \n\nI also have a few more people that I've known for much longer but are living abroad. We see each other very rarely, but I would still consider them as close friends. \n\nCoincidently, an old friend from school that i had not seen for several decades, found my number in a random WhatsApp group and surprised called me this morning. \n\nLockdowns have taught me the value of true friendship. https://example.com/ 8541 447892 447892.447896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.164775021029335 0 \N \N f 191049645 \N 1 109802862 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448010 2025-03-22 10:42:11.629 2025-03-29 22:39:51.184 \N Dang also a contributor to Bitcoin core in addition to being a satlantian\n\nhttps://github.com/bitcoin/bitcoin/pull/27232 https://example.com/ 10291 447903 447903.448010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.09667289126627 0 \N \N f 246596152 \N 1 180479045 0 f f \N \N \N \N 447903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 75871 2023-10-19 18:29:41.147 2025-03-29 22:39:47.91 Any Interest in Bugle.News AMA w/ Richard Greaser and Myself? Hey it's Rod Palmer from Bugle.News and the new Bugle Weekly podcast. I am just seeing if there is any interest from the community for us to do an AMA? We would love to help answer some of your questions about the Bugle, the new podcast, and anything you've been curious about but don't have the time to think about for yourself. \N 1002 \N 75871 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5575698884781 0 \N \N f 0 \N 0 191556481 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448092 2025-03-22 12:02:05.723 2025-03-29 22:39:47.91 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/397149), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 11145 \N 448092 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.84488878584477 0 \N \N f 1009910437 \N 9 96889578 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 448121 2025-03-22 12:22:22.515 2025-03-29 22:39:51.184 \N I think a more important question is, do we privatise also the forests and rivers? The air that we breathe? How do we, as a whole, care for the global environment if doing so is against the economic interests? (Because it costs money to do so and thus means higher prices in aggregate and most consumers will choose cheaper products.) https://example.com/ 6164 447892 447892.448121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.576024158662634 0 \N \N f 253022512 \N 2 121242239 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 448359 2025-03-22 15:07:46.914 2025-03-29 22:39:51.184 \N I wrote about this last fall: https://stacker.news/items/240442/r/WeAreAllSatoshi https://example.com/ 20201 448342 448331.448342.448359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.47148347446344 0 \N \N f 341915292 \N 6 83741396 0 f f \N \N \N \N 448331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 448192 2025-03-22 13:15:41.86 2025-03-29 22:39:51.184 \N Created a new Just-In-Time LSP\nhttps://twitter.com/gkrizek/status/1628440689456615424?s=20 https://example.com/ 16193 448092 448092.448192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6611916777411 0 \N \N f 239780999 \N 1 66356564 0 f f \N \N \N \N 448092 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 76520 2023-10-22 07:40:42.935 2025-03-29 22:39:47.911 How resilient are you? It is that time of the year. My school is organising a GRIT (Growing Resilience In Teens) camp. \n\nFor my secondary one students, they had to work together to orienteer to various checkpoints yesterday. Since they misread the map a couple of times, everyone easily clocked more than 10k steps because we kept having to retrace our steps. \n\nToday, we did dragonboating in the morning. For the uninitiated, it involves a group of people synchronising their movements to paddle a dragon-shaped boat. I acquired a nice tan under the hot sun. In the afternoon, we didn’t have to do orienteering, but the camp instructors led us through an urban hiking route that involved walking. Not as much as yesterday, but by the time we reached our destination, several students were so dog-tired that they raised their legs on the outdoor bench (presumably to facilitate the flow of blood to their brains).\n\nAnyway, I saw their chaos unfold before me and decided to call for an impromptu Circle Time session so that I could say stuff that would give meaning to their “suffering”. I mentioned about an unforgettable incident when I was serving in the army. As an Armour Infantry soldier, I had to secure a godforsaken corner of the forest in the wee hours of the morning, lonely and hungry and shivering. But because this incident tested my physical limits to the max, I could always recount on it whenever I am going through hard times. So I expressed hopes that my students would remember this GRIT camp in future whenever they encounter challenges.\n\nI even concluded my facilitation by getting the class chairman to come up with an emotionally stirring positive statement “I CAN DO IT!”\n\nAfter returning to school, I happened to have time to declutter my notes. I came across articles that say how children develop coping strategies more effectively when their teachers share their experiences. So I guess I was on the right track even though I was improvising.\n\nThe thing is, I don’t feel very resilient because I am currently struggling with parenthood. Although my mental health has improved since the time I wrote about being burnt out, sometimes my heart aches so much for my lost social life that I just want to shout hysterically at the Universe.\n\nI guess when I have to model resilience in front of my students, I fake it pretty well. Haha.\n\nDo you think you are resilient? Any thing you are doing to burnish your resilience? \N 4624 \N 76520 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.7927356054835 0 \N \N f 0 \N 0 190436256 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448671 2025-03-22 19:18:32.147 2025-03-29 22:39:47.911 Reflections on the recent holiday Did you enjoy the holiday?\nDid it briefly interupt things,\nthe cycle of conviction you tend to,\nor the setting of convenience you sleep in?\n\nDid you think about time sliding by,\nchunking into years, numbers,\na solid thing of memories and data,\nor instead-floating on a misty cloud,\nRemember and Forget dancing partners\nin your cloudy thoughts?\n\nDid you see persons known as family\nembrace the cheerful holiday?\nChat with you on this and that,\npenetrate the superficial,\npardon the interruption of your timely musings.\nDid the reality of their life surprise you?\nTheir own cycles neglected, \ntheir timelines entwined, numbering multitudes,\nindifferently to you.\n\nDid you think of years ahead,\nwhat will take place,\nwhat may be undone?\nThe next holiday comes, \nplans and place-settings\ngather the family once more.\nTime marches forward,\nand you are still, probably\ndigesting Thanksgiving. \N 20280 \N 448671 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 26.2205524300264 0 \N \N f 702631697 \N 4 31467055 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 448589 2025-03-22 18:07:10.35 2025-03-29 22:39:47.912 Writing Contest Opinions? I'm looking for feedback on writing contests being held in this territory. We have had two so far. The first one drew a lot of engagement, great content, and positive feedback. The second one was not as well received, though the content produced by those who participated was solid. \nI'm looking for any opinions stackers may have on this topic, but I have two specific questions:\n\n1. Should we have writing contests in this territory?\n\n2. If so, what writing prompt or prompts would you like to see?\n\nThanks for any input. \n\n \N 21520 \N 448589 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 9.6419169574272 0 \N \N f 216710536 \N 1 226831688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448535 2025-03-22 16:59:34.844 2025-03-29 22:39:51.181 \N First day on stacker, fantastic place. So glad I found it. https://example.com/ 16042 448526 448526.448535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.18421030542945 0 \N \N f 194854707 \N 2 91040590 0 f f \N \N \N \N 448526 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448457 2025-03-22 15:58:45.515 2025-03-29 22:39:51.181 \N ![](https://zupimages.net/up/23/05/oraa.png) https://example.com/ 15052 448447 447892.448301.448447.448457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.21671466005466 0 \N \N f 109379877 \N 1 22363713 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448578 2025-03-22 17:42:14.409 2025-03-29 22:39:51.182 \N Looks a little different now: \n\nhttps://damus.io/note1vgg2aym6wu66mdhrmlxj5dkyq2dtdrj0gx4e83y5fkl6fad2g8dq00e4xa https://example.com/ 21214 448494 448494.448578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8678767247392 0 \N \N f 235694238 \N 1 25835303 0 f f \N \N \N \N 448494 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448544 2025-03-22 17:07:06.202 2025-03-29 22:39:51.182 \N IP is incompatible with a free society. https://example.com/ 21639 448526 448526.448544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4280578682646 0 \N \N f 350297367 \N 2 160070903 0 f f \N \N \N \N 448526 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 77232 2023-10-23 13:02:11.383 2025-03-29 22:39:47.912 The Zen of Unsusbscribing This is sort of a counterpoint to @grayruby's recent post, [How Many Stackers Do You Subscribe To?](https://stacker.news/items/681424/r/Undisciplined), although I had already been planning on making it. It is also a follow up to my post, [The Zen of Hiding Zap Notifications](https://stacker.news/items/636336/r/Undisciplined).\n\nThe experience of Stacker News can be hectic, cluttered, and prescripted, if we let it, but it can also be exploratory, surprising, and delightful.\n\nWhen I first came to Stacker News, I didn't know anyone by nym. I had no subscriptions to tell me what I *should* read. I scanned through headlines, finding things that peaked my curiosity. I was rarely distracted by notifications. It was a veritable Age of Discovery.\n\nAlong the way, I eventually gravitated towards certain writers and didn't want to miss out on anything they wrote. That seemed natural enough, especially when some were in other parts of the world and write posts that might get buried before I see them.\n\nThat landed me in a state where I was mostly just keeping up with my subscriptions. Though the authors were still making great content, I was no longer discovering it. It was being delivered automatically. That feels different, in a meaningful way.\n\nI took the plunge and unsubscribed from almost everything. Now, I'm back to wandering around the Wild West and stumbling upon items of interest. \n\nThe now legendary Stacker @elvismercury liked to talk about [Ephemerality and Evergreen-ness](https://stacker.news/items/331942/r/Undisciplined). There's value to both, no doubt, but there's something nice about catching an ephemeral post before it disappears, rather than just catching up on a reading queue. \N 21238 \N 77232 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.80553334081937 0 \N \N f 0 \N 0 122502756 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 449016 2025-03-23 04:56:26.386 2025-03-29 22:39:47.913 Closed: proposal to remove luke-jr from DNS seed list in bitcoin core Leaving the issue at hand aside, I thought this was a good insight into how bitcoin core nodes find peers on the network (using a hardcoded list of seed nodes)\n\nAlso new to me was the list of requirements for running a dns seed node. https://github.com/bitcoin/bitcoin/pull/29149#issuecomment-1871717493 16424 \N 449016 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 29.2905953313484 0 \N \N f 888695990 \N 9 13981379 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 449113 2025-03-23 07:45:13.364 2025-03-29 22:39:51.182 \N How would you do it different? M&A's? Stock buybacks? What makes his strategy so one dimensional? Have you've listened to his breakdown of alternative options and how he's outperformed all of them? The performance of MSTR has been nothing short of phenomenal since adopting a bitcoin standard.\n https://example.com/ 730 449108 449016.449022.449091.449108.449113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.965068853700615 0 \N \N f 22105059 \N 1 161252742 0 f f \N \N \N \N 449016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449910 2025-03-23 16:00:01.073 2025-03-29 22:39:51.183 \N ![IMG_7405.jpeg](https://m.stacker.news/14744) https://example.com/ 20137 449881 449601.449630.449881.449910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.89403765072075 0 \N \N f 665944269 \N 7 109201939 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449083 2025-03-23 07:10:13.274 2025-03-29 22:39:51.183 \N You could take this as a signal about how others are receiving the content you share - if people think you're a bot, you might consider adjusting the approach. https://example.com/ 917 449072 449067.449072.449083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.36157653067577 0 \N \N f 218693475 \N 1 171931081 0 f f \N \N \N \N 449067 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448880 2025-03-23 00:15:37.844 2025-03-29 22:39:51.183 \N The problem here is that people muddy the water on the definition of "greed". \n\nA lot of libertarian/anarchocapitalists tend to use "greed" to mean desiring fair compensation for value provided. That's not greed, it is fairness. Its cooperation. I think that using the word "greed" in this way is a reaction against socialists and communists using the word incorrectly. Its a reaction to Marxists demonizing consensual market based economies. Doing this means you not only accept their framing of greed, but also adopt the negative connotation. \n\nLet's not corrupt our language any further than the Marxists have already corrupted it. Words and meaning are important. Greed is pursuing material gain at the expense of yourself and others. Greed is what produces things like the Federal Reserve, International conglomerates like BlackRock, and the military-industrial complex. We need to reject greed, not embrace it.\n\nWhat we see here on Stacker News and the Bitcoin Network is fairness and just compensation. https://example.com/ 16250 448858 448858.448880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2873134450719 0 \N \N f 325001916 \N 2 104578117 0 f f \N \N \N \N 448858 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449028 2025-03-23 05:21:36.891 2025-03-29 22:39:51.183 \N \n How do you plan your workday? - look outside and check the weather, if it's raining something computer related. Sunny garden/wood work.\n\n\n Do you limit SN/social media in some way or use browsing blockers? Definitely 30 minutes in the morning and in the evening, that's enough.\n\n Do you limit the number of concurrent projects? No, dozens on the go all the time switching between them.\n\n How do your breaks look like? Espresso.\n\n If you cook at home are there tricks you use to optimize the time it takes? Batch cook is a must.\n\n Where does family time, walking, chilling, working out fit in your day? After the school run, beach time with the kids and dogs. \n\n https://example.com/ 19992 449007 449007.449028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.18115980519152 0 \N \N f 241063784 \N 1 12721736 0 f f \N \N \N \N 449007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 78353 2023-10-25 20:30:31.053 2025-03-29 22:39:47.913 DIY hardware wallet options **What DIY hardware wallet options are there? I found the following:**\n\n_Prices are rough estimates, I even assumed 1 EUR = 1 USD for simplicity, some hardware listed here is actually difficult to find like Maix Amigo which might be available in one place for just $50 in the other place to be as expensive as $90, Raspberry Pis are even more difficult to put one specific price on assuming they are even available._\n\n# 1. SeedSigner\nRaspberry Pi Zero based but works with any version of Raspberry Pi + camera + display with buttons.\nCost: parts > 55 EUR/USD, kits that include 3D printed case > 65 EUR/USD. Good option for those who already have a Raspberry Pi lying around. Contrary to DIY Jade and Krux (I don't know about Specter or PiTrezor) allows importing multiple wallets in the same session, so you can freely switch between wallets what makes working with multisig wallets very convenient. Assuming we use Raspberry Pi without WiFi/BT module our HWW will be fully airgapped (PSBTs via QR codes).\n[Project website](https://seedsigner.com/)\n[GitHub](https://github.com/SeedSigner/seedsigner)\n[Crypto Guide video](https://www.youtube.com/watch?v=1c5SR8v8l1M)\n[BTC Sessions video 1](https://www.youtube.com/watch?v=oBd8ZhsXnrA)\n[BTC Sessions video 2](https://www.youtube.com/watch?v=AZqlIkJf0mA)\n\n# 2. DIY Jade\nWorks with multiple ESP32 hardware options. Very budget friendly (as cheap as just around 10 EUR/USD for the most crude TTGO variant) if you are happy with using it connected via USB. Air gapped option require adding camera (no guide on that available yet).\n[GitHub](https://github.com/3rdIteration/Jade/blob/master/diy/readme.md)\n[Crypto Guide video](https://www.youtube.com/watch?v=PeqP6oVnlIs)\n\n# 4. Krux\nWorks on some devices equipped with RISC-V Kendryte K210 CPU such as M5StickV and Maix Amigo.\nCost: M5StickV similar to SeedSigner (so around 55-60 EUR/USD), Maix Amigo more (80 EUR/USD, hard to find actually) but worth noting that both M5StickV and Maix Amigo are already assembled with display, camera, and battery, no need to source parts separately and chassis is nice and compact.\n[GitHub](https://github.com/selfcustody/krux)\n[Crypto Guide video on M5StickV](https://www.youtube.com/watch?v=rsdvmIcucwQ)\n[Crypto Guide video on Maix Amigo](https://www.youtube.com/watch?v=EtV_Iw6a0O0)\n\n# 5. Specter\nUses STM32F469I-Discovery board, niche and expensive but feature-rich hardware with big screen.\nCost: around 75 EUR/USD + optional camera (for reading QR codes in air gapped ops) for around 40 EUR/USD, 3d printed case also around 40 EUR/USD, so rather expensive and physically the biggest of all listed here but probably the best option for those with big fingers and/or bad vision (comparable only to Maix Amigo from this list).\n[Project website](https://specter.solutions/)\n[GitHub](https://github.com/cryptoadvance/specter-diy/blob/master/docs/shopping.md)\n[Specter YT Channel](https://www.youtube.com/@specter163/videos)\n\n# 6. PiTrezor\nIn the cheapest variant requires only a Raspberry Pi Zero or RPi 4, can use the same hardware as SeedSigner with an option to use a display of lower resolution than SeedSigner (the latter needs a specific model with 240x240 px, PiTrezor requires only 128x64) or even can simply use Pi's HDMI output. No need for camera as it is a Trezor clone.\n[Project website](https://www.pitrezor.com/)\n[GitHub](https://github.com/heneault/yocto-pitrezor)\n[Crypto Guide video](https://www.youtube.com/watch?v=t9zNOsTXjvo) \N 18101 \N 78353 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.8106413760325 0 \N \N f 0 \N 0 173370885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 386385 2025-01-30 22:05:47.01 2025-03-29 22:39:47.914 Broadcast bitcoin transactions over nostr \N https://github.com/nostr-protocol/nips/pull/476 15075 \N 386385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.01310555820532 0 \N \N f 0 \N 0 232716006 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 82432 2023-11-05 03:10:57.619 2025-03-29 22:39:47.906 Fun resource for hobby pottery - I want to be this guy when I grow up \N https://www.youtube.com/watch?v=VaX1iOyKsB0&t=969s 13174 \N 82432 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.1728259167492 0 \N \N f 0 \N 0 9997480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 80864 2023-10-31 18:29:03.917 2025-03-29 22:39:47.906 The Basic Laws of Human stupidity - part 4 > Previously:\n> - [Introduction and Chapter 1](https://stacker.news/items/678475)\n> - [Chapter 2](https://stacker.news/items/679184)\n> - [Chapter 3](https://stacker.news/items/680471)\n\n![](https://m.stacker.news/51454)\n\n## Chapter 4\n### The Third ( and Golden) Basic Law\n\nThe Third Basic Law assumes, although it does not state it explicitly, that human beings fall into four basic categories: the helpless, the intelligent, the bandit and the stupid. lt will be easily recognized by the perspicacious reader that these four categories correspond to the four areas /, H, S, B, of the basic graph (see figure 1) .\n\n![](https://m.stacker.news/51453)\n\nIf Tom takes an action and suffers a loss while producing a gain to Dick, Tom's mark will fall in field H: Tom acted helplessly. If Tom takes an action by which he makes a gain while yielding a gain also to Dick, Tom's mark will fall in area /: Tom acted intelligently. If Tom takes an action by which he makes a gain causing Dick a loss, Tom's mark will fall in area B: Tom acted as a bandit.\n\nStupidity is related to area S and to all positions on axis Y below point O. \n\nAs the Third Basic Law explicitly clarifies:\n### A stupid person is a person who causes losses to another person or to a group of persons while himself deriving no gain and even possibly incurring losses.\n\nWhen confronted for the first time with the Third Basic Law, rational people instinctively react with feelings of skepticism and incredulousness.\n\nThe fact is that reasonable people have difficulty in conceiving and understanding unreasonable behavior. But let us abandon the lofty plane of theory and let us look pragmatically at our daily life. We ail recollect occasions in which a fellow took an action which resulted in his gain and in our loss: we had to deal with a bandit. We also recollect cases in which a fellow took an action which resulted in his loss and in our gain: we had to deal with a helpless person[^1].\n\nWe can recollect cases in which a fellow took an action by which both parties gained: he was intelligent. Such cases do indeed occur. But upon thoughtful reflection you must admit that these are not the events\n\nWhich punctuate most frequently our daily life.\n\nOur daily life is mostly made of cases in which we lose money and/ or time and/ or energy and/ or appetite, cheerfulness and good health because of the improbable action of some preposterous creature who has nothing to gain and indeed gains nothing from causing us embarrassment, difficulties or harm. Nobody knows, understands or can possibly explain why that preposterous creature does what he does. ln fact there is no explanation - or better, there is only one explanation: the person in question is stupid.\n\n### RECAP of Basic Law of Human stupidity:\n1. Always and inevitably everyone underestimates the number of stupid individuals in circulation.\n2. The probability that a certain person be stupid is independent of any other characteristic of that person.\n3. A stupid person is a person who causes losses to another person or to a group of persons while himself deriving no gain and even possibly incurring losses.\n\n*Stay tuned... more chapters to come.*\n\n[^1]: Notice the qualification «a fellow took an action». The fact he took the action is decisive in establishing that he is helpless. If I took the action which resulted in my gain and his loss, then the judgment would be different: I would be a bandit. \n\n \N 2829 \N 80864 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.29161401748331 0 \N \N f 0 \N 0 164100528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 89823 2023-11-24 13:29:31.657 2025-03-29 22:39:47.906 Books And Articles Newsletter, Issue 7 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. It was a quiet week, so there’s not much news to report. I hope things pick up in the territory this week. When I’m back from vacation maybe I’ll try a few new ideas. Speaking of my vacation, I might post a little blog about our cruise here. I’m still undecided.\n\nI hope everyone has a great week.\n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [Discuss This Quote-Plato](https://stacker.news/items/459091) by @grayruby\n\n- [Fast. Tell Me. What Was The First Book That Captured Your Imagination?](https://stacker.news/items/463166) by @CoffeeWithTheClassics\n\n- [Book (With Bitcoin) Review: Zero Days, By Ruth Ware](https://stacker.news/items/460481) by @StillStackinAfterAllTheseYears\n\n- [Who Brought The Steak Tartare? Chapter 38](https://stacker.news/items/462076) by @cleophas\n\n- [Who Brought The Steak Tartare? Chapter 40](https://stacker.news/items/466516) by @cleophas\n\n\n### Siggy’s Suggestions\n\n- [Do Androids Dream Of Electric Sheep? By Philip K Dick](https://stacker.news/items/457329) by @Scoresby\n\nHere is another great book review by @Scoresby. I don’t fully understand zaprank, but this could easily have been a Top Five post. I really appreciate these book reviews, which add to long term quality content in the territory.\n\n- [Fun Fact Friday, Animal Edition](https://stacker.news/items/466708) by @cryotosensei)\nYou can always count on @cryotosensei to produce good content. This post was jam packed with very interesting facts. I hope this becomes a regular feature in the territory.\n\n\n\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n## Some Recommended Older Posts \n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar, Chapter 1](https://stacker.news/items/419498) by @jbschirtzinger\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Zen And The Art Of Motorcycle Maintenance by Robert M. Pirsig](https://stacker.news/items/383302) by @carlosfandango\n\n- [The World’s First Bitcoin Fiction Anthology](https://stacker.news/items/347735) by @KonsensusN\n\n- [Man’s Search For Meaning](https://stacker.news/items/390069) by @carlosfandango\n\n- [The Sovereign Individual](https://stacker.news/items/427201) by @carlosfandango\n\n- [Neuromancer](https://stacker.news/items/401761) by @Scoresby\n\n- [Elric Of Melnibone](https://stacker.news/items/389474) by @Scoresby\n\n- [The Shockwave Rider, by John Brunner](https://stacker.news/items/418728) by @Scoresby\n\n- [Human Action](https://stacker.news/items/399897) by @Undisciplined\n\n- [Robert Jordan’s The Wheel Of Time: Books 1-3](https://stacker.news/items/416511) by @Undisciplined\n\n- [A History Of Religious Ideas #1](https://stacker.news/items/420220) by @Se7enZ\n\n- [A History Of Religious Ideas # 2](https://stacker.news/items/420192) by @Se7enZ\n\n- [A History Of Religious Ideas #3](https://stacker.news/items/427941) by @Se7enZ\n\n- [Nova, by Samuel R Delaney](https://stacker.news/items/427682) by @Scoresby\n\n- [Blood Music, by Greg Bear](https://stacker.news/items/436158) by @Scoresby\n\n- [Schismatrix, by Bruce Sterling](https://stacker.news/items/445373) by @Scoresby\n\n- [Do Androids Dream Of Electric Sheep? By Philip K Dick](https://stacker.news/items/457329) by @Scoresby\n\n- [For Whom The Bell Tolls](https://stacker.news/items/309580) by @plebpoet (meta territory post)\n\n\n\n### Essays\n\n[Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816)\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Like Water](https://stacker.news/items/452820) by @Nuttall\n\n\n\n### Short Stories\n\nNone posted yet.\n\n\n\n \N 4802 \N 89823 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2388418463766 0 \N \N f 0 \N 0 164533224 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 82524 2023-11-05 11:31:12.005 2025-03-29 22:39:47.906 When anxiety asks for a coffee date Anxiety is part of everyday life. It has a purpose, it is forward motion. The extraordinary thing about humans is our excellence at survival. We have anxiety to thank for that. However, I’m not saying anything new when I assert that the cables that connect us to our instincts for anxiety are twisted in an environment where we are not hunted. This idea has, in my view, pretty thoroughly permeated the zeitgeist. We accept that modern life makes humans more a victim of anxiety than master. \n\nYet there is mastery to achieve. If you were to become master of the anxiety that pulls you along, that urges you to complete tasks, or have a hard conversation with someone, or go for a new venture, or rethink your plan - it could look like having a regular coffee date. To partner with anxiety is to understand its signals, and understanding would come with the appropriate amount of time and focus, just like anything else. It can be transformative to count on anxiety’s presence in your schedule, invite it there, give it air time, and come away with a solid sense of what it means. \n\nPersonally, I have had a tough road with anxiety. I find it to be an overpowering force. I find that I can’t fight it, in fact. What happens when I try? It grows stronger, zapping my energy away to build on itself. Then, when I’m weaker, when anxiety has the upper hand, it lies to me and I believe it. From there it’s a slippery slope to a total unravel. \n\nAnxiety gets nasty when it’s neglected. Like a stray dog. Like a good woman. \n\nBecoming a master at handling your own personal anxiety comes with knowing yourself. The practice of inviting anxiety as if it were a regular coffee date between the two of you is easier to plan for when you know what things in your life will trigger it. So when that trigger hits, your time with anxiety is anticipated and, hopefully, brief. Rather than take you by surprise, you let it in, sit with it, and pass it along after receiving its message. It can be humbling to accept what anxiety has to say, but it won’t let up until you listen. \n\nThe challenge is to think about anxiety differently. It does mean something, there is a message inside it. That message could be kind of ugly, it could be inconvenient. But it is part of you, very deep inside with your survival instinct, buried underneath a host of modern contradictions. The challenge is to meet it with grace. Give anxiety a coffee date. Let it reveal something to you. After that, a special type of magic can happen. After you have heard anxiety’s message, you get power, you get choice. You will be the one to make the decision in light of what anxiety reveals. \n\nDo you spend time thinking about what anxiety is trying to tell you? Are you curious about what it could be useful for? \N 20613 \N 82524 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.8350437901221 0 \N \N f 0 \N 0 111803692 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 89505 2023-11-23 17:06:04.837 2025-03-29 22:39:47.906 Do you Downzap? Let's have some fun. \n\nDownzapping was an interesting feature added some months ago that allows you to pay some sats to essentially dislike a post or comment. I used it a few times in the early days of the Sports territory when I was trying to dissuade obvious sats farmers from spamming the territory with posts. It seemed to work. \n\nI have never downzapped any genuine or well intended content regardless as to whether I like it or not. \n\nWhat is your approach to downzapping? Do you use it? \N 11443 \N 89505 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.6041598607168 0 \N \N f 0 \N 0 79009160 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 9777 2023-02-21 20:03:31.161 2025-03-29 22:39:47.906 How to get people interested in a high school Bitcoin club? Hi plebs, I need your help. I recently started a Bitcoin club at a local high school, but the people in it and I are having trouble getting people interested, and some of the people who agreed to come to it aren't staying that interested either.\n\natm we are just doing weekly meetup discussions on different Bitcoin related things, but I want to hear ideas for how to get more people interested in this. I didn't make this a bounty but I'll send 300 sats to each person who gives an idea that seems really good. \N 2596 \N 9777 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.2082778159182 0 \N \N f 0 \N 0 145159686 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 16253 2023-04-12 16:49:20.155 2025-03-29 22:39:47.906 Count your blessings when you're high in the sky _I have a lot to report about my time at the bitcoin conference, but for now I wanted to share this list I wrote out on the plane ride home._\n\nBless all of the people who surfed today\nBless the airlines for getting people around safely and rather nicely \nBless oysters but why eat them?\nBless bars with really great design\nBless the street in the city that gets closed down at night\nBless all of the people who are slightly nervous but being cool\nBless walking down an unfamiliar street and listening to music you like \nBless the food hall and it’s alarm system\nBless the bachelorettes but why do they do what they do?\nBless the presidential race in the united states\nBless being blessed with a whiskey neat in your hand\nBless the bartenders at the barbecue \nBless the filmmakers and may they make good models\nBless all the women on their period\nBless my clothes and my filthy ripped up shoes\nBless this air bus and the technology that makes it possible \nBless my mind for having good things inside it\nBless the richest woman in the world\nBless my palms for sweating\nBless my heart for pounding\n \N 2703 \N 16253 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.85152088327239 0 \N \N f 0 \N 0 141936316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 89527 2023-11-23 17:27:19.099 2025-03-29 22:39:47.906 Introducing Portal: a hardware wallet with no cables no batteries \N https://twenty-two.xyz/ 638 \N 89527 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.2798230592757 0 \N \N f 0 \N 0 94984284 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 9666 2023-02-21 12:16:21.447 2025-03-29 22:39:47.906 Breaking the Chains: Liberating Content and Privacy with Micropayments A rant about why LN micropayments matter so much in this new media landscape, and why I created http://www.QuestionsForGood.com as a first attempt.\n\n### **Brief intro:**\n\nIn the early days of the internet, banner ads served as the primary method of monetization for online content. At the time, online payments, let alone micropayments, were neither safe nor functional. These ads, typically displayed by a third party known as an 'ad network', functioned as a form of micropayment for the content users consumed. This model essentially transformed the consumer or reader into the product by capturing their attention and selling it to the highest bidder.\n\nThis concept wasn't new. Traditional media, especially the television industry, had thrived for years using a similar model. However, the internet's approach involved a greater level of intrusion into consumer privacy. Despite this, the internet was hailed as a 'revolution' that should have offered a superior method of monetizing valuable content."\n\n\n### **"Pay peanuts, get monkeys.”**\n\nHowever, as the internet evolved, it became clear that banner ads had created a number of negative incentives. One of the biggest problems was the rise of clickbait. Because advertisers were paying for each click on their banner ad, websites had an incentive to create sensational headlines and misleading content in order to drive more traffic and generate more ad revenue. Without having to care about if the end user found the content valuable after reading it, all it mattered was to grab his attention for a brief moment.\n\nThis focus on clicks also had a negative impact on editorial decision-making. In order to drive traffic and generate revenue, websites began prioritizing content that was more likely to attract clicks, regardless of its quality or relevance. This led to the proliferation of low-quality content and the suppression of more meaningful or nuanced discussions.\n\n\n\n### **"The one who pays the piper, calls the tune.”**\n\nIn addition to these problems, banner ads also created a significant influence of advertisers on editorial decision-making. Because websites were reliant on ad revenue to survive, they were often unwilling to publish content that might offend or alienate their advertisers or “brand safety standards”. This led to a significant amount of self-censorship and a lack of diverse viewpoints on the internet.\n\n\n### “**That's how my mother did it”**\n\nA girl once asked her mom why she cuts off the ends of a roast before cooking. The mom replied, "That's how my mom did it." The girl asked her grandmother, who said, "That's how my mom did it." When the girl asked her great-grandmother, she laughed, "I did it because my pot was too small. I guess nobody thought to stop once we got a bigger pot.” Looks like we have the same “cargo cult” in the content / media industry.\n\n\n\n### **“You won’t believe what happens next”**\n\nLeveraging the Bitcoin Lightning Network for direct micropayments can liberate content creators from ad-reliance and give users control over their support. This method offers five benefits:\n\n**Privacy:** Users aren't exposed to targeted ads, preserving their privacy.\n**Freedom:** Creators can produce content without advertiser restrictions.\n**No Middlemen:** Direct payments mean no intermediary deductions or payment delays.\n**Feedback:** Creators learn what content is truly appreciated, beyond misleading clickbait metrics.\n**Quality:** This reward system discourages low-quality content, incentivizing valuable work and disincentivizing deceitful clickbait.\n\nWhile there are certainly challenges to be addressed in massive adoption of micropayments using the Bitcoin Lightning Network (mostly a case of UX), it is clear that this technology has the potential to fix many of the problems that have plagued the online media industry. \n\n\n\n### **“Behind every great fortune, there's a ~~crime~~ intermediary extracting more value than they're adding”**\n\nIn a 'Value for Attention' (VFA) model, the intermediary often extracts the lion's share of value from both the creator and the consumer. They do this by levying a substantial fee (~30%), holding onto the money for an extended period, and collecting data from both parties, which they may then sell to others.\n\nWhile there is undeniable value in the platform (intermediary) that brings both parties together, it should not be the chief beneficiary, especially when the exchange involves digital products from both sides. This situation requires no substantial logistics, and the marginal cost of distributing each piece of content or ad is virtually zero.\n\nConsider how much value has been captured by intermediaries like Google, Facebook, and ad networks. This value could have improved content quality or fostered profitable business models for creators focusing on small, high-value niches. I estimate that around 50 billion USD was lost to intermediaries just in 2022, a year when banner ads generated a massive 155 billion USD.\n\n\n\n### **The roast doesn’t need cutting anymore**\n\nIt is hard not to compare this situation to how financial institutions have exploited customer savings through fees and many other strategies by positioning themselves as “necessary” intermediaries, they extract substantial profits while offering comparatively minimal value. \n\nThis analogy holds up as both industries are primarily information-based (money is nothing more than information), and with the advent of the internet and Bitcoin, the **cost** of transmitting information has trended towards zero. Yet, these monopolies have managed to keep the **price** inflated.\n\n\n\n### “**If you don't believe it or don't get it, I don't have the time to try to convince you, sorry.”**\n\nNow, this is not just a one sided issue for creators, if you have any idea on how much money has been extracted from advertisers due to placing their ads programmatically in “relevant” content which was actually just made to precisely attract those ads without delivering actual value content, you’ll understand that this industry created a lose-lose “solution” in which the intermediary is the main winer and the advertiser has only been seeing diminishing quality engagement rates on their ads. \n\n\nFor those who still hold that 'content is king,' let us now restore its rightful reign. \N 16336 \N 9666 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.54511698432054 0 \N \N f 0 \N 0 226394156 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 17840 2023-04-22 14:45:21.878 2025-03-29 22:39:47.906 Are you moving towards freedom or away from it? \nThis post was inspired by [@DarthCoin's post Liberate yourself!](https://stacker.news/items/463220)\n\nA few years ago I realized that I was more in my head about freedom that actually putting it into action. I was acting like a victim. Like I had no agency. No ability to change my position. I was focused externally. It was easier to do that. That is what the world around us pushes us toward. Focusing on those that are the problem. Not focusing our our own areas for improvement. So, I started to get off my butt and do something. I can say that I am more free than I was a few years ago. I've learned most of these things I will share from others. I hope you find them helpful.\n\n## Free your mind\n\nStop thinking like a victim. Most people have been victimized at some point. If you see the state for what it is we all have been. But the most important thing about getting knocked down is getting back up. So stop thinking like a victim and start thinking like a victor. Start focusing on how you can become less dependent on "the system" and more of a resource for yourself and others.\n\nUnplug from the spin machine. The system that is designed to keep you thinking about problems that aren't really problems for you or are problems you can't solve. Stop thinking about the world through the lens of 2 and 4 year politics. Stop thinking about the world through the lens of Red and Blue, right and left. Start focusing on what is in your control and those that are in your sphere of influence. Most of what we are told on the news and on social media by influencers is noise at best and a psyop at worst. Don't worry, your friends and family will tell you when stuff that you should be worked up about. You won't miss out. But I think most people do not understand how much of their minds are filled with noise and propaganda. They trick us into thinking it is important but it all seems to point to our need for politicians to stop something from happening. Weird how the answer to every crisis is to vote for some person to fix it for us. Isn't it? Remove the phrase "I can't" from your vocabulary. Instead say, "how can I"?\n\n## Consider Where You Live\n\nStart thinking about how you can insulate yourself from the problems in culture, society, and the economy. Think about ways you can limit the negative affects of state control. This might be relocating. It might be moving 20 miles. In the US you live in several jurisdictions at once. The U.S.A, the state, the county within the state, and possibly a city. If you move out of a city into an unincorporated area you just eliminated one government system. But, there are things you can't avoid if you live in a state so don't think about relocation on only one layer of government and society. I'm not saying everyone should do this but think about this when you are considering what you want out of life. There are places within states that vary drastically as far as freedom goes. There are states that vary drastically as well. I assume some of this is also true in other countries but I'm sure there are differences. We had a good drill during the pandemic for what happens when people freak out. Look at how different cities, counties, and states reacted. Don't forget that. Don't be a follower. Don't move somewhere because others did. Think about what you like and don't like. Do some homework of your own. One place might be great for some people and terrible for others. It is your life. Take it back.\n\n## Self Improvement\n\nLearn to grow at least some of your own food. The goal isn't just to not buy food but rather to learn the skill. What you will find is a deeper connection with nature. You will find it is easier than you thought. Some things will be hard but remember the goal is to learn HOW to do it. Not just to feed yourself. When things get bad you don't want to be learning a skill. It might be to late at that point.\n\nI like the phrase Jack of all trades master of some. Don't be so much of a specialist that you are helpless outside of your field. Learn how to do basic home repairs. If you learn new skills it will make you more confident and more valuable to others. I find it truly sad how few people can actually fix things around their house. If that's you, you can change that. Learn first aid. Learn how your car works. Anything you depend on you should have at least a basic understanding about. I'm not saying everyone needs to be a handy man but our high time preference thinking has led to a society of helpless and hopeless people. For things like your automobile, if you don't learn the skills of repairing it, get to know someone that is skilled. Someone you can trust. They don't need to be a pro. I have done many repairs on my vehicles going back to my teens. I do not enjoy doing automotive work so I pay someone to do most of it. They can do it faster and cheaper (based on the value of my time). That said, I do know how to do most things and this knowledge is valuable. This principle can be applied broadly to many skills.\n\nLearn how to learn. The most valuable skill I have every learned was learning how to learn. It is different for each person but you should learn to teach yourself new skills. Some people learn by watching. Some by reading. Others by doing. Most of us use a combination of all three. But work on that skill and it will help all other skill development.\n\n## Build Community\n\nSo, how do your find someone to help you with something you do not know how to do? Why would someone help you? Well, if you have worked on yourself. Learned new skills you will have value as well. You will be that expert or skilled person someone else calls when they need help. This is how community works and we undervalue it. Bitcoin is one of these things but if you are a programmer and you also have learned how to use bitcoin in a sovereign way you have more to learn. Get up from the computer and learn a physical skill. A great one to learn is electronics. Learn to solder. Start learning how to build simple projects. Learn some basic electrician skills like swapping power outlets.\n\nBuilding community requires social skills. You might need to work on that as well. Don't be the jerk that can't have a relationship with anyone that doesn't agree with them on everything. I think you'd be surprised how many people there are around you that see many things as you see them. I know I have been. Build relationships first. People you can depend on. People that have your back. Don't focus on who they vote for or if they vote. That is short sighted. I'm not saying to be naive. Those things can be good signals but don't pigeon hole people. Build a tribe.\n\n## Prepare for likely events / disasters\n\nYes, we all should be prepared. One of the worst things in our culture has been to highlighting of crazy preppers. What's so bad about it is that you mostly hear about the people that are doing it wrong. Stocking up on toilet paper instead of having a supply of fuel. Building a bomb shelter instead of growing a garden. Being prepared actually requires some thought. What are the common natural disasters in your area. It is different for everyone. A common thing to have is some alternate source of power. A generator or battery. Acquire that. Learn how to use it. Test it once a month. Stock up on medical supplies. Not that crappy first aid kit at the store. Learn basic first aid. If you can buy a freezer and rotate your frozen food. Have enough to live on for at least two weeks. Do this with food you like. Not crap you won't eat. Also have a stock of MREs for if things really get bad.\n\nMaintain at least 60 gallons of fuel that your vehicles use. You can buy 5 gallon cans and write 1-12 on them. Each month empty one into your vehicle and refill it. This way you never have fuel that has went bad. This is very handy as well. Some of you won't be able to do this because you don't live in a house but if you can, this is a great tip.\n\n## Plan for Home Defense\n\nYes, you should have deadly weapons if at all possible. Learn how to use them with skill. Your life may depend on it. Don't depend on the state authorities to protect you, your loved ones, and your property. Maintain a supply of ammo. Think and plan for what you will do if someone attacks you or invades your property. What would you do? If it happens you will not think, you will react and you need to plan for what you will do and maybe even train for it. Seek professional training unless you have a community with training. Be careful. The point of this is to increase your protection and safety so take precautions around weapon security.\n\n## Build Wealth\n\nWe all know bitcoin is key to this. But I think to many bitcoiners fail to see the value in building skills that are in demand. Needs that must be filled. Finding an alignment of skills you'd like to have and people in need of those skills is key to building wealth. If you are not challenging yourself in the work you do you are short bitcoin. Let me say that another way. If you are not living up to your potential then you don't truly value bitcoin or understand what it is. Bitcoin is not this magic thing discovered so you can be lazy. No, it is a tool to save the rewards of your labor in a money that can't be taken from you. That can't be inflated away. So if you aren't challenging yourself, you are short bitcoin. Even more importantly the rest of us need your unique abilities. I don't know what they are, but bitcoin can be a driver to push you to get out of your mom's basement and make something of yourself.\n\nIts hard to be poor and free. In most places of the world wealth solves so many problems. Don't kid yourself. If you are poor, you have fewer options. Get out there and work.\n\n## Stop Depending on Corporate Systems\n\nStop depending on Google, Facebook, Twitter, Amazon, etc. I'm not saying you should never use them. But are you dependent on them? Start using Nostr. Start using open source tools. Start trading with local farmers, ranchers, and skilled workers. These actions create more resilience into our world. Centralization is a risk.\n\n## Study Bitcoin. Don't Just Acquire It\n\nLearn why it was created, how it works, and how to use it. You're on SN. That's a good start.\n\n## Don't Get Overwhelmed\n\nDon't try to go from zero to 100 all at once. Make a prioritized list and start learning and doing things but do not expect yourself to do these things in one year, maybe not even five. It should be a life long pursuit and I think you will enjoy it. Right now just ask yourself. Am I more free today than I was yesterday? Last month? 1 year ago? 5 years ago?\n\nIf not, start working on changing that. Start in your mind. Remember. You don't need to out run the bear, you need to outrun the other guy running from the bear. You won't do it all perfectly but don't give up.\n \N 11992 \N 17840 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.13971149901711 0 \N \N f 0 \N 0 40137331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 91669 2023-11-28 15:26:49.896 2025-03-29 22:39:47.907 a new kind of poem (that you can see 👀 and hear 🦻) Trying out something new using my eyes and my voice. Hopefully these instruments carry my message to you in a delightful way, it was delightful to create it, anyway.\n\nhttps://youtu.be/Dsx4m0xsUbU \N 20245 \N 91669 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.26429073505593 0 \N \N f 0 \N 0 129904783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 29178 2023-06-05 12:31:56.439 2025-03-29 22:39:47.907 Isn't real engagement what we are striving for? I see it all around me. Everyone is looking for real, genuine engagement with others. It seems to be happening more and more.\n\nMy children at school ask me how they can signal that they are a worthwhile person to spend time with. \n\nThey are fed up with shallow, meaningless engagement.\n\nI think social media is a big part of that. Most people on social media are just NPCs. Hell, even I was an NPC most of the time. Of course you have your heroes on Instagram and whatnot. Your cool influencers. But which ones really interact with you? None!\n\nThis is why I love nostr so damn much! I can write to Odell, American Hodl or Walker and they respond. They think about my post and respond in a non dull way. \n\nAnd I see it even more in my everyday life. My wife and I have our local grocery store where we go shopping after work. The staff are basically dead zombies walking around and doing their jobs. Most of them are NPCs, nobody cares about them. But since the last few weeks they have a new employee. A woman in her mid-40s, I would guess. She always has a big smile on her face, looks like she enjoys her work, is friendly and wishes you a wonderful way in non-standard phrases.\n\nIt is fun to shop there! We even go to her till, even though the queue is longer than the others. \n\nShe gives something the others don't. Genuine commitment!\n\nBack to the kids at school, they always ask why there aren't more teachers like me, they think Im cool or special, which Im definitely not. But the difference is that I care. I listen to them, even if it sounds stupid. I take the time to engage with them and take them seriously and they soak it up like a sponge!\n\nPeople lack meaningful engagement with others, which is why they miss it so much.\n\nNostr is a great social media solution for that. The same goes for SN. The ability to zap, to show that you care more than a meaningless like, signals real interest and engagement.\n\nThis is what we need to bring to the real world, as well as bitcoiners these days, to win the hearts of NPCs and offer them the orange pill to escape the matrix and come back to a life of authentic people, meaning and engagement.\n\nSo to my American friends, use the opportunity of Thanksgiving to reach out to your loved ones and your close community to give them what they seek!\n \N 2233 \N 29178 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6888643252467 0 \N \N f 0 \N 0 216196870 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 42472 2023-07-26 23:43:52.556 2025-03-29 22:39:47.907 What bitcoin development are you waiting for? What bitcoin development (that's in the works) are you waiting for?\n\nI'm interested to try out LN wallets like greenlight (green wallet) & Olympus (Zeus). \N 620 \N 42472 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9758746857856 0 \N \N f 0 \N 0 184303539 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 133081 2024-02-27 10:40:53.94 2025-03-29 22:39:47.907 Bitcoin is America: Why mind control won't stop the revolution \N https://www.jtwoodhouse.com/bitcoin-is-america-mind-control-wont-stop-the-revolution/ 5725 \N 133081 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.994753198334 0 \N \N f 0 \N 0 92664891 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 20119 2023-05-04 00:40:52.01 2025-03-29 22:39:47.907 Books And Articles Newsletter, Issue 28 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week \n\nWelcome to this week’s issue of the Books And Articles newsletter. Thanks for all of the quality posts. @plebpoet contributed the top post for the second week in a row. No surprise there! We’re lucky to have her posts here.\n\nThis week we also received two more book reviews from @cryotosensei, and @Athena posted two of her bitcoin poems in the territory.\n\nAs always, please reply with suggestions and opinions on how to make this territory better. \nI hope everyone has a good week. \n\n\n### Top Five Posts Of The Week \n\nHere are this week’s top posts:\n\n- [On Encouragement](https://stacker.news/items/651460/r/siggy47) by @plebpoet\n\n- [Vote With Your Feet, A Short Story](https://stacker.news/items/645909/r/siggy47) by @ninjagrandma65\n\n- [Writing teaches you to develop the ability to understand](https://stacker.news/items/643218/r/siggy47) by @Nadia\n\n- [Echoes of Empire: Gibbon’s Classic on Rome’s Fall and Its Lessons for Bitcoiners](https://stacker.news/items/644611/r/siggy47) by @TomK\n\n- [Hosting Solution In Case Gitlab/Git Lets You Down (For Authors/Writers)](https://stacker.news/items/649907/r/siggy47) by @jbschirtzinger\n\n\n\n### Siggy’s Suggestions\n\n- [Echoes of Empire: Gibbon’s Classic on Rome’s Fall and Its Lessons for Bitcoiners](https://stacker.news/items/644611/r/siggy47) by @TomK\n\nI don’t often pick one of the week’s top posts as a suggestion, but this post by @TomK is special. We are all familiar with his high quality posts about economics, but here he gives us something different. We all can learn lessons from the Roman Empire. The post is sort of a book review of a classic. @TomK has inspired me to read it again. It has been a while.\n\n- [The Rogue Scholar And Interference as an Author: Censorship by Negligence?](https://stacker.news/items/648502/r/siggy47) by @jbschirtzinger\n\n@jbschirtzinger is one of the long content authors who post here. This week one of his posts made the Top Five Posts Of The Week. Here, he gives us his take on the state of the publishing industry, and gives us a look at the challenges he faces. It is an entertaining and informative read.\n\n\n \nThis week’s Golden Oldie:\n\n- [Can Psychedelics Improve Mental Health ?](https://stacker.news/items/565000/r/siggy47) by @0xbitcoiner\n\nI selected this post because I was just having a conversation about this topic. Everywhere I turn people seem to be talking about it. This post prompted some good discussion. Enjoy!\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462)\n by @StillStackinAfterAllTheseYears\n\n- [The Bezzle, by Cory Doctorow](https://stacker.news/items/506632/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [The Achilles Trap, by Steve Coll](https://stacker.news/items/497756) by @Coinsreporter\n\n- [Software,by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n- [Bleeding Edge by Thomas Pynchon](https://stacker.news/items/533493/r/siggy47) by @Scoresby\n\n- [ “Better than Before” by Gretchen Rubin](https://stacker.news/items/534613/r/siggy47) by @cryotosensei\n\n- [Giada De Laurentiis Recipe for Adventure Hong Kong](https://stacker.news/items/539739/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Culture Code” appeals to the adolescent in me](https://stacker.news/items/568580/r/siggy47) by @cryotosensei\n\n- [Book Review | Wanna evolve like Pokemon with “My Morning Routine”](https://stacker.news/items/569631/r/siggy47) by @cryotosensei\n\n- [Book Review | The Handbook for Leaders](https://stacker.news/items/579116/r/siggy47) by @cryotosensei\n\n- [Book Review | “Fierce Conversations” by Susan Scott](https://stacker.news/items/581153/r/siggy47) by @cryotosensei\n\n- [Book Review | “All Joy and No Fun” Jennifer Stone](https://stacker.news/items/585790/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Four Tendencies”](https://stacker.news/items/605553/r/siggy47) by @cryotosensei\n\n- [Book Review | “Work Rules!”](https://stacker.news/items/624030/r/siggy47) by @cryotosensei\n\n- [Book Review | “Thrive” by Arianna Huffington](https://stacker.news/items/629306/r/siggy47) by @cryotosensei\n\n- [Book Review | “What I Wish I Knew When I Was 20”](https://stacker.news/items/632899/r/siggy47) by @cryotosensei\n\n- [Book Review | Giada De Laurentiis’s Recipe for Adventure Naples!](https://stacker.news/items/634348/r/siggy47) by @cryotosensei\n\n- [Book Review | “Unleashed” by Dav Pilkey](https://stacker.news/items/651926/r/siggy47) by @cryotosensei\n\n- [Book Review | “Success Built to Last”](https://stacker.news/items/650573/r/siggy47) by @cryotosensei\n\n- [Lonesome Traveller by Jack Kerouac](https://stacker.news/items/543525) by @carlosfandango\n\n- [Pre-review of Human Rights and the Uses of History by Samuel Moyn](https://stacker.news/items/570366/r/siggy47) by @SilkyNinja\n\n- [Book Review- The Genesis Book](https://stacker.news/items/588212/r/siggy47) by @siggy47\n\n- [What I read in June, including what might become one of the best books of 2024:](https://stacker.news/items/593241/r/siggy47) by @speakingyourtruth\n\n- [The Book of Five Rings by Musashi Miyamoto](https://stacker.news/items/590545/r/siggy47) by @itermathi\n\n- [Symbolisms in "The Metamorphosis" by Franz Kafka (book review)](https://stacker.news/items/627213/r/siggy47) by @Nadia\n\n- [Book Review: The Monk Who Sold His Ferrari by Robin Sharma](https://stacker.news/items/624709/r/siggy47) by @Athena\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 1814 \N 20119 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.4724822913491 0 \N \N f 0 \N 0 15437624 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 21800 2023-05-10 17:53:04.245 2025-03-29 22:39:47.908 Operation Saylor - Episode 23/120 # Operation Saylor - Episode 23/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 23, corresponding to May 2024.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.31191974 BTC\n- € stack: 93.60 €\n- Current total value in €: 80,120.70 €\n- € into BTC: 30,000 €\n- Paid back to bank: 8,056.40 € \n- Outstanding debt + interests: 35,887.93 €\n- Installments to go: 98\n\n\n## Charts\n\n[![episode-23-stack-value-vs-debt.png](https://i.postimg.cc/hGtLp3fd/episode-23-stack-value-vs-debt.png)](https://postimg.cc/5XDQtg54)\n[![episode-23-bitcoin-stack.png](https://i.postimg.cc/DwgQQKyh/episode-23-bitcoin-stack.png)](https://postimg.cc/G44srVyg)\n\n---\n\n## Log \n\nHello again, and welcome to a new episode of the series.\n\nToday I want to continue with my thoughts on measuring performance that I started in the previous episode. Last month I discussed about risk and return to make the point on how we need to make comparisons using both of them if we want such comparisons to be relevant and useful. I also introduced the idea of performance only being truly understandable along the time dimension. It's not only the end result, but the state of the operation during all of its lifespan that should be accounted for. Finally, I made the point on how a naive comparison against a simple DCA just doesn't make sense.\n\nThis month, I want to continue the conversation by presenting two metrics that are key for our performance measuring exercise, and that I monitor every month even if I don't always report them in our monthly updates.\n\nThe first metric is quite straightforward. I call it exit value.\n\nExit value would be the financial outcome resulting of me cancelling the loan on any given day by selling whatever was needed from the Bitcoin stack. It's a metric that can be computed at any point in time, since my loan can always be repaid early and in full. The rough formula would be:\n\nExit Value = (€ Value of Bitcoin Stack + € Value of Euros Stack) - (Outstanding Principal * 1.01)\n\n*That magic 1.01 is explained by the fact that my loan has an early amortization penalty of 1% of the early amortized value. If I make an additional amortization of 100€ beyond my usual installments, the bank will actually charge 101€.*\n\nThe concept is simple, right? What would be left for me if I change plans and chicken out of Operation Saylor. If on any given day the value of the Bitcoin I hold is larger than the 101% of the outstanding principal, the exit value is positive, which means I would come ahead with some extra value. On the other hand, if my Bitcoin stack is underwater and can't cover the outstanding amount, the exit value is negative. This reflects that I simply can't kill the loan just with the stack, and that I could either surrender to that or put more money out of my pocket to cover the difference. In this case, the outcome would be net negative for me.\n\nOkay, now that hopefully you get the idea, let's take a glimpse at how Exit Value has looked like so far through Operation Saylor:\n\n[![episode-23-exit-value.png](https://i.postimg.cc/5t9wtkJt/episode-23-exit-value.png)](https://postimg.cc/ZWg97HCk)\n\nThe story tells itself pretty much: Operation Saylor stayed under water for a bit at the start as the bear market touched its bottom, and then we've been going up. It's been long now since the exit value has been negative.\n\nIn the previous episode, I used the [easy-peasy and plot-twist scenarios](https://stacker.news/items/522161?commentId=523063#performance-over-time) to illustrate two scenarios that end with the same balance but take very different paths during the lifespan of the Operation. Now that we are on the same page on the concept of Exit Value, the conversation becomes more fluent: the easy-peasy scenario is easy-peasy precisely because it holds a positive exit value all the time. The plot-twist scenario, on the other hand, is a painful path to success because I wouldn't have enjoyed that nice exit value situation.\n\nSumming things up: positive Exit Value over time, good. Negative Exit Value over time, bad. \n\nFinally, let's look at the second metric. Any two courses of action or scenarios could have different shapes of Exit Value. Comparing them is an exercise that you can do in many ways. Personally, my simple and quick shot at this is to run the integral of the Exit Value over time, which leads to a simple, single value that summarizes things nicely. If you are not mathematically inclined, simply think of it as: the more time I've stayed with a positive Exit Value, and the higher it was, the better. The more time I've stayed with a negative one, and the lower it was, the worse. The integral pretty much sums both facts up into a single number.\n\nI'm not going to plot this now for you since the integral only becomes interesting when compared against some other scenario. We will leave that for further episodes.\n\nI'll leave it here for today. I hope you found the episode interesting and that these concepts help you better assess your own options. As always, thanks for reading and I'll see you next month.\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n- Episode 16: [https://stacker.news/items/288719](https://stacker.news/items/288719)\n- Episode 17: [https://stacker.news/items/322189](https://stacker.news/items/322189)\n- Episode 18: [https://stacker.news/items/363765](https://stacker.news/items/363765)\n- Episode 19: [https://stacker.news/items/394704](https://stacker.news/items/394704)\n- Episode 20: [https://stacker.news/items/450792](https://stacker.news/items/450792)\n- Episode 21: [https://stacker.news/items/476945](https://stacker.news/items/476945)\n- Episode 22: [https://stacker.news/items/522161](https://stacker.news/items/522161)\n \N 18231 \N 21800 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.0657435678 0 \N \N f 0 \N 0 151978149 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 135385 2024-03-02 18:19:40.277 2025-03-29 22:39:47.908 BitVM using Scriptless Scripts \N https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2023-October/021997.html 7125 \N 135385 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.7090170991875 0 \N \N f 0 \N 0 212690267 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 44707 2023-08-01 12:50:01.433 2025-03-29 22:39:47.908 How to get really rich this bull run \n\n![8hnlvq.jpg](https://m.stacker.news/18319) \N 21520 \N 44707 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.9959115378993 0 \N \N f 0 \N 0 74690135 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413054 2025-02-22 20:25:38.255 2025-03-29 22:39:47.909 Strike: 2023 Recap & 2024 Lookahead > Yo! Coming off Strike’s best year yet, and going into one of the most important years in Bitcoin’s history, I wanted to write a letter to the community summarizing Strike’s 2023 and what we’re focused on for you in 2024.\n\nhttps://www.youtube.com/watch?v=3jSH5p9kDv4 https://strike.me/blog/strike-2023-recap-2024-lookahead/ 9833 \N 413054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.616770794539 0 \N \N f 0 \N 0 100938744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 137901 2024-03-06 18:01:00.204 2025-03-29 22:39:47.909 This is beautiful, Bitcoin in Peru helping poor people Thanks to @JoeNakamoto for this amazing report on the ground, in Peru, in one of the poorest regions, showing to the whole world how Bitcoin can really help people!\nhttps://nitter.net/JoeNakamoto/status/1705371756213473495\n\nPlease watch until the end.\nIf you want to help these people, there's a LN address for them at the end of the video - motivperu@blink.sv\n\nThank you Joe and Paco for these amazing stories! \N 4173 \N 137901 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.531846373238949 0 \N \N f 0 \N 0 81875138 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 4181 2022-11-16 05:54:02.264 2025-03-29 22:39:47.906 MicroStrategy Acquires Additional 5,445 Bitcoins and Now Holds 158,245 BTC \N https://www.microstrategy.com/en/investor-relations/financial-documents/microstrategy-acquires-additional-5445-bitcoins-and-now-holds-158245-btc_9-25-2023 2016 \N 4181 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.4403642735487 0 \N \N f 0 \N 0 233415503 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5973 2022-12-29 17:54:59.684 2025-03-29 22:39:47.906 Heritage Foundation uses ad broker data to track movements of Trump's assassin [Heritage](https://www.heritage.org/) is the author of [Project 2025](https://www.project2025.org/).\n\nThis is pretty wild. It shows both how invasive ad tracking is, how publicly available it is, *and* that someone who regularly visited the shooter's home and work visited DC recently:\n\n> Someone who regularly visited Crooks home and work also visited a building in Washington, DC located in Gallery Place.\n>\n> This is in the same vicinity of an FBI office on June 26, 2023. https://x.com/OversightPR/status/1815446054428352591 20911 \N 5973 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.4187007272529 0 \N \N f 0 \N 0 138842360 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138849 2024-03-08 00:59:49.554 2025-03-29 22:39:47.906 New Money New Habits **INTRO**\n\n...\n\nWith adopting a new money it’s inevitable that some things will change. That may come through learning about the fundamentals of what makes a good money, central banking, inflation or cryptography. The main one I’d like to introduce today is about utilizing bitcoin onchain UTXO’s along with lightning (possibly liquid or mints) in a more efficient and cost effective way.\n\n...\n\n**NEW HABIT**\n\n...\n\nHere's a simple idea that bitcoin accepting retailers could do to save costs. The basic idea is that consumers overpay by sending a UTXO for the product in its entirety, and the retailer returns the change in lightning/liquid OR creates a balance of credit in that retailers mint.\n\nHere are some of the main advantages:\n\n- It makes good use of onchain UTXO's by not breaking them up and creating unwanted dust.\n- It looks like a "self spend" to any chain analytics.\n- It helps retailers balance their LN channel by creating more inbound liquidity.\n- It encourages more retail adoption of LN.\n- It saves block space.\n\n...\n\n**ANALOGY AND EXAMPLE**\n\n...\n\nA basic analogy for this method might be like spending cash at a local store. Buying $96.50 worth of groceries you hand over a $100 bill and receive $3.50 in change. You give the note to the cashier, then they return the change. \n\nLet’s take an example to see how something like this might be implemented:\n\nLets say Start9 is selling their latest server for 900k sats. Bob wants to purchase it and selects a single 1m sat UTXO. He selects the product and arrives on a page to pay with bitcoin which has 2 options, onchain or LN. He selects onchain and gets a pop up saying something like "overpay up to X and receive change in LN". So Bob pays the 1m sat UTXO, 50k is paid for the network fee, and there is now a 50k "credit" Bob can claim in LN. Start9 recognizes that the received onchain BTC is more than the product and asks Bob to generate a 50k sat LN invoice.\n\nBob’s 1m sat UTXO\n\nserver cost - 900k sats\nnetwork TX fee - 50k sats\nchange - 50k sats\n\n![WHOLE UTXO.jpg](https://m.stacker.news/26809)\n\n**WHAT JUST HAPPENED?**\n\nIn the current environment Bob would receive a 50k change output that he will need to pay a large percentage of it on fees in the future. He could consolidate with other small UTXO’s if he believes fees will come down at some point, but this would link and reveal all his other purchases. With introducing this new habit, Bob now has 50k sats that he can spend on smaller purchases or zapping. Start9 receives a larger UTXO and has created more inbound liquidity. Lastly the onchain transaction looks like a self spend and therefore is more difficult to analyse (depending on other preceding factors of course).\n\nIts really win win all around!\n\n...\n\n**AUTOMATION**\n\n...\n\nThe good thing is that this works now. I could go to my local butcher and say something like: “I have this 400k sat UTXO, can I pay onchain and receive the change in lightning?” Both parties are more than likely to be in agreement. For retailers, lightning is a one way street (as in money comes in). \n\nThis might be ok amongst bitcoiners that have been using the technology for a while, but it would be better if the app/web page/PoS could simply automate this. As soon as the onchain payment is received, the price of the good is subtracted from the UTXO and the buyer is asked to generate an invoice for this amount. OR as another option for the merchant to retain customers, they could offer credit on their next purchase through individual accounts with the product/service.\n\nI’m sure there are more advanced ways that we can bring this habit into working with LN holding invoices or ecash mints. This might take more time to be tested and built out though.\n\n...\n\n**FEES**\n\n...\n\nThere has been a lot of talk and debate about onchain fees since stamps/ordinal/inscriptions/BRC-20 tokens last year. Whatever your position is on this, we all know fees will rise regardless. Whatever percentage of bitcoin ends up as dust or in large institution custody, we still need to continue to keep “our” bitcoin use efficient, cost effective and as private as possible for this segment of the p2p network to truely flourish.\n\n...\n\n**OLD IDEA?**\n\n...\n\nFirst of all, this idea probably exists somewhere in the bitcoin space. I think it's a good one so I'm certain it's likely out there somewhere. I did see that electrum had a recent release where the change from a UTXO can be added to your lightning channel. This requires that you have both onchain BTC and a LN channel open in the same electrum wallet though. Also, I’d take a guess that it could be an API to swap with boltz.\n\nOf course swap services like boltz are working today. Using a desktop wallet we can direct the change output into a swap with liquid, lightning or ecash. My problem with this currently is that in a high fee environment a lot of that gets eaten away by either the network or the service provider. From our example if boltz were to accept the 50k sat UTXO they need to charge for a future cost to consolidate. If it costs a single input/output 50k sats, then there is no point (economically irrational). Liquid services like sideswap or aqua charge fees too, but the federation would have to pay that future consolidation/spend and at some point (if liquid ever gains significant adoption) they will have to charge higher fees.\n\nThis is why I think it would be a beautiful improvement to how we buy things using onchain BTC today. \n\n...\n\n**LETS DO THIS!**\n\n...\n\nEducating and building new habits is inherently part of this new form of money. While we’re still in the early stages we need to encourage best practices for the users of the bitcoin network. So while we are still building out the ideal money network, let’s simply ask the next time we buy something using onchain BTC if we can get our small change in lightning and keep our UTXO’s large. \n\n...\n\n**REFERENCES**\n\n...\n\nhttps://www.nobsbitcoin.com/electrum-v4-5-0-beta/\n\nhttps://bitcoinmagazine.com/technical/to-dust-you-shall-return?utm_source=carrot&utm_medium=partner&utm_campaign=carrot_share\n\nhttps://boltz.exchange/\n\nhttps://sideswap.io/ \N 16154 \N 138849 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.9359715692318 0 \N \N f 0 \N 0 51863626 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 143191 2024-03-14 14:19:30.248 2025-03-29 22:39:47.906 Stacker Sports Pod • Episode 1: It's all downhill from here • Listen on Fountain It's here! @grayruby and I got our first episode out. Enjoy a double length first episode.\n\nWe had some technical difficulties getting the first episode up. Normally, it'll be on Stacker News faster. \n\nLet us know what you want to hear us talk about or any other feedback.\n\nMentioned in the episode:\n- @Public_N_M_E's fantasy football league https://stacker.news/items/473247/r/Undisciplined\n- @grayruby's Survivor Pool https://stacker.news/items/664664/r/Undisciplined\n- @Undisciplined's NBA Prediction Contest https://stacker.news/items/700590/r/Undisciplined\n- @grayruby's 49ers post https://stacker.news/items/717755/r/Undisciplined\n- @StillStackinAfterAllTheseYears's Bryce Young post https://stacker.news/items/713558/r/Undisciplined\n https://fountain.fm/episode/yUcHYrQqR5ovs66xIrsM 12277 \N 143191 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.4394743359578 0 \N \N f 0 \N 0 93026971 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 49067 2023-08-12 20:02:38.493 2025-03-29 22:39:47.909 If BTC hit a million tomorrow, what would you do? ok, say we went parabolic, in fiat terms, what would you guys do next? \n\nFor me, I wouldn't actually change that much, since I don't have any immediate or pressing financial needs.\n\nI would like to take my family to Nintendo world though and maybe i'd treat myself to something like a ps5 maybe.\n\nWhat would change the most would be my mental state, like i would acquire a feeling of being 'ok' financially if I lose a client or if something bad happens work-wise (when you freelance, something always happens!). I would just enjoy the feeling that I have an incredible backup.\n\nHow about you? \n \N 21791 \N 49067 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.4424360402055 0 \N \N f 0 \N 0 51662122 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 58526 2023-09-01 11:02:07.423 2025-03-29 22:39:47.909 Update on the situation in Venezuela It has been 3 and a half months since the presidential elections in Venezuela, the protests have ceased, people continue with their lives as if nothing had happened, they plan their vacations (those who can), they talk about the recent soccer and baseball games, they wonder who will be the singers that will give concerts next year, others are already saving money for Christmas dinner and so on, people turn the page, another electoral fraud, people who died and were unjustly imprisoned are forgotten. This is how the psychology of dictatorships works, they give you an air of false hope that you can compete with them (elections), then the euphoria increases when citizens realize that they are united for a common good and feel powerful, then comes the phase in which they snatch away all your illusions, they break your faith by kidnapping and killing your acquaintances/relatives, they make you look like an idiot by telling you that you lost and you should bow your head, you have 2 options, obey and be thankful that they didn't kill you or flee the country. The best example to explain this situation is to compare it with relationships based on violence: They shower you with love and then hit you, they hug you and then tell you you're worthless, they shower you with love again, then hit you again and say it's your fault.\n\nIn every presidential election a new messiah is born, and all citizens blindly follow him in the hope that he will save them, in the hope that he will save the country. They praise him as if he were gods and get offended if you question him. They are not capable of having a critical thought regarding the situation, they do not ask themselves who these people are that they are following, they do not ask themselves about their past or their curriculum. In every presidential election like this, first there was the candidate Manuel Rosales, second Capriles, third Leopoldo Lopez, fourth Guido and finally Maria Corina Machado and Edmundo Gonzalez. If we review the curriculum of the people mentioned above, we will realize that ALL of them, absolutely all of them, belong to socialist parties, even Capriles and Edmundo Gonzalez publicly admired Hugo Chavez.\n\nThe Venezuelan "opposition" has never been interested (nor does it suit them) in the fall of the dictatorship. They are the first beneficiaries. I have mentioned it on other occasions and I repeat it. This is just a macabre game in which they sacrifice the lives of Venezuelans. They live and eat at the expense of the suffering of the citizens. To end the dictatorship, the supposed opponents must first be eliminated. They get rich from donations to their political parties and they get rich from the deals they make with the government.\n\nAfter July 28, more than 2,000 people were detained (kidnapped), including hundreds of teenagers and people with serious illnesses, in addition to the hundreds of people killed. At the end of all this, the president-elect Edmundo González left the country on a Spanish air force plane. The Spanish government calmly sent him an exclusive plane for him and his wife to take him to Venezuela to Spain. The dictatorship agreed with this, they let him go peacefully and even photos and audios of Edmundo talking as friends with the Rodriguez brothers (Maduro's ministers) were leaked. Edmundo Gonzalez is now touring Europe with his family, eating at the most expensive restaurants, while thousands of Venezuelans are being tortured at this very moment as you read this. If they had any decency, they should at least ask for the release of these people as a deal to let him go into exile.\n\nRegarding María Corina, no one knows her whereabouts. She says she is in Venezuela, but there are doubts. She continues to give empty statements and speeches and even admitted not knowing if Edmundo would take office as president on January 10, 2025. The most outrageous and unscrupulous thing she could do was to upload a photo with the shirt of her favorite baseball team and say: \n>Despite everything, people also need to relax and recharge their energy. And where better than in the stadium, where nobody has ever silenced us. So, you know, enjoy your game, shout loud and without fear... and may the Lions win!!!\n![](https://m.stacker.news/63209)\n\n\nThe shamelessness and cynicism is so great, how dare she say such a dialogue, when there are mothers crying for their children killed for defending votes that benefit her, how dare she say that "we have to relax" when there are mothers, grandmothers, fathers outside the prisons crying out for their imprisoned children who are being vilely tortured, deprived of any contact with their families. It is outrageous, politicians do not even bother to hide it. While Maria Corina was making suggestions for people to distract themselves by watching a baseball game, Nicolás Maduro on the other hand is in Russia at a BRICS meeting.\n\nIt is a complex situation to explain, on the one hand you can see Venezuelans as cowards who have not fought enough and that is why the dictatorship continues, on the other hand I heard a podcast in which a guy said that Venezuelans have the strength to remove tyrants from power, since there is talk of people who are capable of crossing the Darien jungle are perfectly capable of overthrowing them, but there has not been a real political opposition leadership. I think, why should we expect a group of politicians to guide and direct us? People get tired of fighting in vain and prefer to bow their heads and get on with their lives.\n\nIf you are wondering if there is any progress that brings Venezuela closer to freedom, the answer is no.\n\nSomething I cannot forget to mention is that the Venezuelan opposition also wants to give this responsibility of "liberating the country" to other governments, such as the United States, or leave the work to organizations such as the OEA or the ONU.\n\nThey are simply useless. Everything is disgusting corruption, from international prosecutors, presidents of organizations, senators of other governments to representatives of the political opposition, everything is based on endless money laundering from which only they benefit.\n\nI repeat, the ONLY way to get rid of this is for the Venezuelan people to kill all the corrupt people in the country, both from the tyranny and the "opposition", a purge basically, otherwise it will never happen, no government or blue helmets will help. We are a reflection of Cuba and we all know what the situation is like there, they continued waiting for help that never came and will never come.\n\n•\n•\nSince early Saturday morning, Nicolás Maduro's dictatorship began to release some political prisoners. All of them innocent, kidnapped for the sole reason of asking for democracy. I say release because none of them are really free, just as the country is not. They are tortured with beatings, electric shocks, isolation, threats to their families and fed rotten food.\n\nThese few releases do not occur because there is impartial justice in Venezuela, but because a technical commission of the ICC is in the country. They do so, moreover, after the death of Jesús Martínez Medina, slowly murdered by the criminal Chavista regime by denying him medical attention while in custody.\n\nUnfortunately, Jesús Manuel Martinez Medina died at the hands of the tyranny. He was arrested in the municipality of Aragua, Anzoátegui on July 29. He was taken from his home for being a witness at the polling station. He was in serious health and the regime denied him medical attention. One of his legs became infected as you can see in the photo and he died as a result of complications. He was sick with type II diabetes and a heart problem. His mother tried by all means to have his case heard and to have him released as a humanitarian measure, but it did not happen. This young man fought until the last minute for his life, this cruel regime slowly ruined him.\n\n![](https://m.stacker.news/63217)\n![](https://m.stacker.news/63218)\nResult of the table in which he was a witness:\n![](https://m.stacker.news/63221)\n\nJesús Manuel did not have the privilege of leaving Venezuela on an exclusive plane to be comfortable in Spain. Jesús Manuel was imprisoned for trusting in the process of María Corina and the false opposition leadership that ultimately abandoned him.\n\nWhen barbarism is in charge of deciding who will or will not be in its torture centers, one release is synonymous with other captures, this is what is known as the "revolving door" because on one side 100 innocent people leave prison and on the other side another 200 innocent people enter.\n\n[Diosdado Cabello admitted that they have children in prison: "Why didn't the parents stop their children?"](https://x.com/monitoreamos/status/1856889999334981958)\n\n•\n•\nThis is a report of an eviction without the presence of a judge or public prosecutor in Los Teques, Miranda State, in a violent manner. The woman's cell phone was taken from her and she was thrown out of the house along with a 4-year-old child.\n\nThey were left on the street without being able to take their belongings.\n[Videos](https://x.com/amilcarrock/status/1856015265638621569)\n\n•\n•\n[65 PDVSA OIL SPILLS REPORTED IN FALCÓN:The Committee of women fishermen of the state of Falcón requests the resignation of the director of the environment of PDVSA.](https://x.com/GustavoAzocarA/status/1856028273098055685)\n\n•\n•\nPetro reports that Barranquilla native Alex Saab, now a minister under Maduro, made the decision to sell Monómeros, the Venezuelan subsidiary of Pequiven, which is based in Barranquilla.\n![](https://m.stacker.news/63223)\n>Your Excellency Mr. President:\nI respectfully and kindly wish to express my opposition to the decision of the Minister of Industry and National Production of Venezuela, Alex Nain Saab Morán, to sell and privatize the company Monómeros.\nFor more than five decades, the public company Monómeros has benefited Colombian and Venezuelan farmers through the production and sale of agricultural inputs at a fair price.\nCurrently, the marketing of Monómeros Urea guarantees the productivity of their lands for millions of Venezuelan and Colombian families. It also ensures them sufficient income to have a decent life.\nThe privatization and sale of Monómeros will lead to higher prices for primary agricultural products in our countries. In addition, it will force our farmers to depend on foreign products and the price of agricultural inputs on the international market.\nThere is no doubt that this decision could condemn millions of people who represent the basis of food sovereignty in our region to poverty and hunger.\nFor the above reasons, I would like to invite you to reconsider the privatization of the company that has provided and can continue to provide support to millions of families in our countries.\nWith my sincere appreciation and consideration,\n\n•\n•\n[On her knees and in tears, Dolly García begged National Guard officials for information about her detained son, Edwin Iván Colmenares García.](https://x.com/ElPitazoTV/status/1855349163216515317)\n\n•\n•\nEdmundo González in Brussels: “If expectations are met, on January 10 we will be taking office as the new government in Venezuela, which will restore Venezuelan democracy.”\n\nHe is not saying that he will take office on 10E. With that "IF" (without accent, conditional) he is making an assumption, a hypothesis about the future. And accompanied as always by the political dinosaur Ledezma, they are a team, inseparable friends. "If expectations are met."\n![](https://m.stacker.news/63224)\n \N 9863 \N 58526 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.60990659201086 0 \N \N f 0 \N 0 224155999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 61147 2023-09-08 13:40:11.033 2025-03-29 22:39:47.91 Can I get a little love from the SN community to promote LNURL Lightning Auth? What's up guys, jowo here.\n\nI'm trying to push for adding LNURL / Lightning auth Provider to the popular `next-auth` library. (It's actually the same library that SN uses!)\n\nFancy helping drive Lightning adoption?\n\nI'd love it if team SN could help out by adding some 👍🚀🔥 onto this [GitHub issue](https://github.com/nextauthjs/next-auth/issues/7872)!\n\nAny feedback and love on [the issue](https://github.com/nextauthjs/next-auth/issues/7872) would be hugely appreciated. Same goes for the [demo app](https://github.com/jowo-io/lnurl-next-auth-demo).\n\nHere's a gif of it in action:\n![image](https://i.ibb.co/GCrdyDg/ezgif-3-0e1ebd1e5a-Copy.gif) \N 9364 \N 61147 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.898293078225 0 \N \N f 0 \N 0 89588933 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 458238 2025-03-29 06:08:13.048 2025-03-29 22:39:51.183 \N How can state chain operators like mercury defend themselves from a nation state attack. What stops the government from just shutting down the server.\n\n https://example.com/ 6749 458227 458227.458238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4502391293048 0 \N \N f 350038316 \N 3 134124438 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 84791 2023-11-11 14:56:11.337 2025-03-29 22:39:47.906 I Went and Tried Bull Bitcoin's Non-KYC Buying and It's Great! I saw the announcement this morning that [Bull Bitcoin was launching non-KYC purchasing](https://stacker.news/items/176255). Being a Canadian and someone who insists on stacking non-KYC sats, I was very excited to see the news. Naturally, I went out to my local Canada Post and tested it out. It worked like a charm! Allow me to outline my experience...\n\nI had an account on Bull Bitcoin, but I never used it; because it was a nym account with only a nym email and a fake name, and I could not fund it with fiat back then. I logged into my account to get my QR code, which was very easy to find.\n\n![bull01](https://nostr.build/i/nostr.build_abd2907a7949d3c558b96547e1c881d7dbcfd605471fb74c6c23f6349349cafa.jpg)\n\nI printed out the QR code, and made my way to Canada Post. I paid Canada Post in person with cash, and I got the email notification that the money is in my Bull Bitcoin account 10 minutes after I paid. I then proceeded to log into my Bull Bitcoin account and made a bitcoin purchase over lightning. The trade went through without any issues, and the bitcoin I just bought is now in custody of my lightning node. Overall great experience, completely non-KYC, full self-custody on the bitcoin side. One very minor thing I wish was changed was the Loadhub name on the receipt from Canada Post; it says Bull Bitcoin right on the receipt, which is blatantly obvious to the Canada Post clerk what is being paid for. Maybe Bull Bitcoin could put their Canadian business number (I mean, their [business registration](https://www10.fintrac-canafe.gc.ca/msb-esm/public/detailed-information/msb-details/7b226d73624f72674e756d626572223a3134373133372c227072696d617279536561726368223a7b226f72674e616d65223a22626974636f696e222c2273656172636854797065223a337d7d/) is public knowledge anyways...) there instead, just for better user OpSec? But that is very minor and probably a non issue for most people...\n\n![bull02](https://nostr.build/i/nostr.build_25152f2398774c0783db1894de8912020e02482b64a64d989633b667f5df1814.jpg)\n\n![bull03](https://nostr.build/i/nostr.build_584962ac65485699e68fdd78c8657e3ca6e32c9b8deda4b22be33cb14c09e0bd.jpg)\n\nIn term of fees... There is a flat fee of $3.50CAD which is paid to Canada Post for each deposit up to $500CAD and $3.95CAD for each deposit from $500-$999.99CAD. That means, the more you deposit, the lower the fee becomes in percentage terms. Bull Bitcoin charges a separate flat fee of 2% per trade, as stated in their announcement. So, keep those fees in mind when planning / making your deposits and purchases.\n\nI've been buying non-KYC sats for over a year on Bisq and Robosats; the problem with them on the CAD side is that the CAD liquidity is shit. CAD offers are few and rare, and a lot of times, they are priced much higher above market price. I have tried posting offers to buy bitcoin with CAD, but those take quite some time for a peer to accept the offer and it is by no means on-demand. Also, platforms like Bisq and Robosats usually use interact-e-transfer (quick peer to peer bank transfers) as the fiat payment rail, which expose the buyer's full legal name to the seller. Not to mention, the bank still has a record of all the payments even though they don't know what the payments were for.\n\nI think I will be using Bull Bitcoin to stack along with other P2P options that I have been using. My main concern with centralized exchanges is that government capture is always possible; and with the way things are going these days, it seems government capture is eventually inevitable. I still believe building out a [shared liquidity pool P2P exchange protocol](https://github.com/nobu-maeda/n3xb) with competing clients on top is the most resilient and could provide the best user experience. Meanwhile, hopefully Trudeau doesn't shut this down too quickly and more Canadians can get more non-KYC sats.\n\nThank you very much, Bull Bitcoin, for bringing this to Canadians! \N 640 \N 84791 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.5346364065812 0 \N \N f 0 \N 0 237299941 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 143900 2024-03-15 21:03:57.755 2025-03-29 22:39:47.906 What was the turning point that helped you embrace the all-sats mindset? TIL Gresham’s law. Briefly speaking, it’s about how bad money drives out good money. Used in the fiat context, people will prefer to get rid of worn-out notes and keep their fresh ones, demonstrating how the currency perceived to be more valuable will not be in circulation so much. As for the Bitcoin vs fiat context, it refers to how people HODL Bitcoin because they deem it to be more valuable than fiat.\n\nWhich makes the mindset you Stackers have all the more admirable. You actively use your sats not just on gift cards, but also on merchants that directly accept BTC payments. You encourage newbies like me to check out btcmap.org to seek out local merchants who accept BTC so as to foster a circular economy. Some of you even manage to receive your salary in BTC via bitwage. You are free and independent of fiat.\n\nBut the question I have is, if we all know that BTC is scarce and its value will increase in the years to come, how can you bear to let go of your sat stash right now? What was the turning point that made you determined not to hoard your BTC and use it with an open heart? \N 17041 \N 143900 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.3169998062967 0 \N \N f 0 \N 0 237321127 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 64648 2023-09-18 10:46:55.452 2025-03-29 22:39:47.906 Marketing Individual Territories? Has anyone started marketing individual territories outside of Stacker News? \nThis seems like a good way to foster bitcoin adoption, while also increasing activity in your territory.\nHere's an example of my thoughts:\nThere is a chess forum on Stacker News. The owner can make an announcement on different chess forums and sites throughout the world. They can pitch it as a way to earn bitcoin while interacting with other chess players. Then they can pitch bitcoin. Maybe include a simple statement about bitcoin, with links to a good beginner education site. I'm just thinking out loud. \nI plan on doing this soon. Are any other territory owners already marketing? \N 12819 \N 64648 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.82153885436786 0 \N \N f 0 \N 0 149731745 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 154589 2024-04-07 15:08:43.747 2025-03-29 22:39:47.906 What are the biggest DISTRACTIONS in Bitcoin? “Less noise, more signal” is a common mantra among bitcoiners, but for newcomers, wth does this even mean? \n\nWhat’s the noise in Bitcoin??\n\nI know many higher than thou bitcoiners who would probably say $$ price, but imo price is one of the most direct/translatable ways to understand what Bitcoin “does” for newbies.\n\nAnd let’s be honest — Bitcoin wouldn’t be very cool if the price only went down.. \N 7587 \N 154589 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.1507871157786 0 \N \N f 0 \N 0 227327283 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 190923 2024-06-28 09:48:39.995 2025-03-29 22:39:47.906 What are some of the most important things you have spent time on in your life? This could be about professional work, raising a family, or other ventures. Mentioning one thing doesn't mean something else is less important. This may give you freedom in the response.\n\nThe most important contributions I believe I have made was raising a family and contributing to open-source software. Everyone is old now, but memories and git live on. \N 5578 \N 190923 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.6246705924892 0 \N \N f 0 \N 0 144912104 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 365991 2025-01-12 15:36:22.972 2025-03-29 22:39:47.906 Where do you position yourself in regards of what is Bitcoin? I was discussing with some people these days (in a bar, drinking some beers paid with sats) about what is Bitcoin as financial instrument.\n\nAnd I made a simple drawing on a piece of paper using the 3 circles diagram, positioning myself in the middle:\n![](https://m.stacker.news/51616)\n\n### Where do you position yourself in this diagram?\n\nI will explain why I position myself in the middle, based on how I use bitcoin and what is for me. Maybe for each one of you is something different.\n\n*1. Bitcoin as money is:*\n- medium of exchange\n- unit of account\n- self banking / self custody\n- financial sovereignty\n- worldwide acceptance (no need to use a currency exchange)\n- property\n- freedom of speech / censorship resistance\n- no coercion\n- path to freedom\n\n*2. Bitcoin as asset is:*\n- limited property\n- still depending on a fiat currency\n- capital gains\n- possible coercion for taxation\n- custodial / self-custodial\n- dependable of a currency exchange\n- you are still under a fiat system\n\n*3. Bitcoin as currency is:*\n- backed by bitcoin as money\n- is used only as currency exchange platform, to facilitate exchanges between other fiat currencies (paypal over bitcoin)\n- capital gains (maybe)\n- property (maybe if is self-custody)\n- possible coercion for taxation\n- you are still under a fiat system\n\nDiscuss... \N 20811 \N 365991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6003585642277 0 \N \N f 0 \N 0 231242541 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 365443 2025-01-12 06:46:56.254 2025-03-29 22:39:47.906 Fuji Money AMA Greetings, we are the team behind Fuji Money, a Lightning-enabled non-custodial synthetic asset protocol on the Liquid Network to borrow bitcoin-backed stablecoins and synthetic stocks without intermediaries.\n\nWe are currently in closed beta.\n\nAsk us anything.\n\nhttps://fuji.money\n\nhttps://medium.com/@fuji_money/introducing-fuji-5cb4f7dd76f9\n\n \N 20734 \N 365443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1008656574225 0 \N \N f 0 \N 0 95284702 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 368653 2025-01-15 01:14:01.816 2025-03-29 22:39:47.907 Your path to Bitcoin maximalism It would be interesting to know, especially for those who have become so in recent years, what events/person/information set you on the path to maximalism.\nWhether it was the beginning of the path or the end. To know what our community should focus on to accelerate adoption.\n\nI discovered the crypto universe in early 2021 because I started my professional career and therefore looking for a way to "invest", and it took me 1 year before I started to understand for the superiority of Bitcoin. \n1 year lost due to lack of visibility to quality content, fortunately I discovered the channel https://www.youtube.com/@Bitcoin_University (formerly trader university).\nA few months later, what allowed me to finish this path was reading The Bitcoin Standard and the Merge approach for Ethereum which made me think about the PoW vs PoS topic.\nI only discovered the Bitcoin memes and Bitcoin Twitter afterwards, and then Stacker News.\n\nBut you, what has led you to Bitcoin? \N 2514 \N 368653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.18152294631578 0 \N \N f 0 \N 0 59026305 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437888 2025-03-15 00:38:19.457 2025-03-29 22:39:47.907 CoinGrinder got merged last week and will ship in Bitcoin Core v27.0 \N https://github.com/bitcoin/bitcoin/pull/27877 19689 \N 437888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.17148028441567 0 \N \N f 0 \N 0 76675059 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 439358 2025-03-16 11:59:51.57 2025-03-29 22:39:47.907 This community is amazing This is just to thank everyone I recently met thanks to @sn. I will soon start bitcoin guerrilla propaganda in my city, wait for updates. \n\nA few days ago I made a [post](https://stacker.news/items/237940) with rather low engagement but I received several responses from great designers with amazing skills. \n\n@designsats answered right away and we're still talking about different ideas, do visit his website if you're looking for design solutions (check his bio)\n\n@artdesignbySF answered right away and we'll talk soon enough, his website is also beautiful. Do not hesitate to tip this post and send some 🧡 \n\n@bd31b09ec4 not only answered right away, but is actively helping me with design material from his exhibition. Please visit his crowdfund at [Geyserfund](https://geyser.fund/project/bitcointheartofrevolution)\n\nYou guys rock! thank you \n\nWorking in things you love is great, but being surrounded by people that are passionate about their work, share your same ideals and are the best in their field is just the top. \n\nWe are winning. Don't forget... \n\n![You are Satoshi Nakamoto](https://imgprxy.stacker.news/VGBV-kRxLRHGjSASkkeuwFBBttNXQHAo1i1Ox4RSqvk/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvTXBQSlR5bVIvc3RpY2tlci53ZWJw)\n \N 27 \N 439358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7422307383049 0 \N \N f 0 \N 0 5013339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 459356 2025-03-29 20:59:41.857 2025-03-29 22:39:47.908 Swan Phishing Attempt Unbelievable! I just received this email:\n\n> Urgent Action Required: SEC Lawsuit\nDear Siggy the idiot old guy,\n\n> We are reaching out to inform you of an important regulatory change impacting Swan Bitcoin. Due to recent developments with the SEC, Swan Bitcoin is no longer able to store Bitcoin on centralized servers. As a result, we are transitioning all Bitcoin holdings to self-custody wallets.\n\n> This means that you need to withdraw your funds and secure them using a self-custody wallet. We have partnered with Coinbase Wallet, a leading self-custody wallet provider, to facilitate this transition.\n\n> Action Required: You have one week from the date of this notice to withdraw your Bitcoin and secure it in a self-custody wallet. After this period, we will no longer be able to guarantee the safety of your funds stored on our servers.\n\n> Please follow the instructions below to ensure your Bitcoin is safely transferred and secured.\n> Your Recovery Phrase\n\n> fat heart chunk possible gather\nneed giant room detail exile\nraw violin\n\n> To secure your Bitcoin, follow these steps:\n\n> 1. Download Coinbase Wallet: Visit the Coinbase Wallet website and choose the appropriate option for your device (Android, iOS, or browser extension).\n\n> 2. Install and Open Coinbase Wallet: Follow the installation instructions specific to your device. Once installed, open the Coinbase Wallet app or extension.\n\n> 3. Import Your Recovery Phrase: Select the option to import a wallet. Enter the Unique Recovery Phrase provided above exactly as shown.\n\n> 4. Verify the Bitcoin Address: After importing the recovery phrase, check the Bitcoin address under the "Receive" tab. Ensure it matches the address provided to you bc1qmfvwt6udrgck33eyrf0shm00rytx8su20s3d3n .\n\n> 5. Transfer Your Bitcoin: Log in to Swan Bitcoin, navigate to the withdrawal section, and transfer your Bitcoin to your new Coinbase Wallet address.\n\n> 6. Keep Your Recovery Phrase Safe: Store your recovery phrase securely and never share it with anyone.\n\n> Please complete these steps within one week to ensure the safety of your funds. For assistance, visit our withdrawal guide or contact our support team.\nGet Started →\nStep-by-Step Guide to Securing Your Bitcoin\nDownload Coinbase Wallet: Go to the Coinbase Wallet website and choose the appropriate option for your device. You can download the app for both Android and iOS, or install the browser extension for Chrome, Firefox, or other supported browsers.\nInstall and Open the App/Extension: Follow the installation instructions specific to your device. Once installed, open Coinbase Wallet on your phone or browser.\nImport Your Recovery Phrase: Select the option to import a wallet. Enter the Unique Recovery Phrase provided above exactly as shown.\nVerify the Bitcoin Address: After importing the recovery phrase, check the Bitcoin address under the "Receive" tab. Ensure it matches the address provided to you bc1qmfvwt6udrgck33eyrf0shm00rytx8su20s3d3n .\nTransfer Your Bitcoin: Log in to Swan Bitcoin, navigate to the withdrawal section, and transfer your Bitcoin to your new Coinbase Wallet address.\nKeep Your Recovery Phrase Safe: Your recovery phrase is the key to your wallet. Make sure to store it securely and never share it with anyone.\nAgain, please ensure these steps are completed within one week to secure your funds. If you need further assistance, please refer to our Help Center or contact our support team.\n\n \N 1836 \N 459356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5600184476334 0 \N \N f 0 \N 0 98528409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451976 2025-03-24 21:31:03.757 2025-03-29 22:39:47.908 I'm Hong, cofounder/CTO of Bitwise. AMA! Hi everyone, I'm Hong, cofounder/CTO of Bitwise. I'm doing an AMA here for the next hour. \n\nFor those not familiar with Bitwise, we're mostly known for our bitcoin ETF these days (ticker: BITB) but we've been around since 2017 and primarily focus on helping tradfi investors access this space from the comfort of their brokerage account. \n\nHappy to answer any questions related to Bitwise, Bitcoin ETFs, or anything else you're curious about! \N 979 \N 451976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9792146240849 0 \N \N f 0 \N 0 78514659 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 119101 2024-01-26 18:33:40.919 2025-03-29 22:39:47.909 What was the worst advice you've ever been given? I have another difficult question for you Stackers. \n\nThe worst advice I ever got was this: Don't buy bitcoins because it's a Ponzi scheme. In 2016 or 2017, I had read somewhere on the web about bitcoin and blockchain and it seemed very interesting to me. Then I asked a friend of mine who was more technical than me and he told me that Bitcoin is a scam, it's a Ponzi scheme, don't spend your money on it, and don't waste your time on this thing.\n\nAnd I took his advice and showed no interest in Bitcoin until 2022 when I started reading and learning about Bitcoin because another friend I met at that time convinced me that Bitcoin was one of the most brilliant inventions of all time.\n\nI owe a lot to that second friend.\n\n\n\n \N 15890 \N 119101 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1117876183366 0 \N \N f 0 \N 0 212234643 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 141924 2024-03-12 14:58:12.969 2025-03-29 22:39:47.909 Applebees offers subscription service - have we reached peak fiat? I've noticed the subscription trend has been on a tear lately. Whether it's for software you've already purchased, features for a car you've already bought, or even just going to the movie theater. They get ever more ridiculous and I find it rather fascinating.\n\nI can only assume subscription services are such a popular offering because the revenue generated by a single sale may not be seen as particularly valuable. A predictable cash flow on the other hand, is incredibly valuable as it's the basis for the valuation of a company. As equities start to replace many of the functions of money, it follows that the incentives of the executives would flow down to the affect the customer - and there are the subscriptions. (By the way, have you noticed you can send stock shares via cashapp rather than, you know, _cash_?) This increasing value of equities as money means that predictable cash flow schemes for the business (automatically inflation adjusted at renewal!) becomes more valuable than actually making a sale today, so what's better than selling a premium feature once? Having a recurring subscription charge on the books.\n\nIs this subscription trend another result of a deteriorating monetary system, or is it just the latest craze to hit corporate America? How much further can it go? \N 15103 \N 141924 \N \N \N \N \N \N \N \N jobs \N ACTIVE \N 24.1059865285174 0 \N \N f 0 \N 0 92194154 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 375801 2025-01-21 14:39:14.831 2025-03-29 22:39:47.906 Being a HODLER sucks. it's not what people think it is HODLing is waiting. It's watching countless people, including friends and family go about their lives, not knowing anything about Bitcoin. it's not discussing Bitcoin with the large majority of friends or family (especially family) and then when 'crypto' *does* indirectly get brought up (say through a book in your house or something on the news...)\n\nFamily members who are otherwise smart and educated are like *'ya a lot of people lost money on that'.*\nAnd you don't say anything, you can't say anything.\n\nAnd then there are a *few* people you let into your world at least a little bit... the occasional friend, maybe even someone you work with and the topic of investing and markets comes up, and you mention Bitcoin as something that's *interesting*...\n\nAnd still the *overwhelming response* from 'normies' - and these are smart, educated people - is to laugh, roll their eyes, or just look confused.\n\nLet me say that again, the vast majority of people I've mentioned Bitcoin to just laugh, roll their eyes, or look confused. One even got hostile ("I don't do that" he said. As if I asked him if he sold drugs.)\n\n- It's *very* rare when you come across someone open-minded enough to at least have intellectual curiosity, to be *open enough* to something they haven't experienced or don't yet know.\n\nAnd then there's the BS. The *endless* BS about worthless tokens, most of them unregistered securities, that people think are 'crypto'. The news stories about pig butchering where some *rando* sends some other *rando* *10s of thousands in stablecoins*... to get rich quick... and then realizes ('all of a sudden') that *it's a scam*. Shocking I know. Of course had they 'made money' with their crypto token (which didn't actually exist) they wouldn't have said anything...\n\n"But how are you supposed to make money in crypto?" they say. And then you are reminded that Human greed and stupidity have no end. But they have to end eventually, you think and somehow...\n\nThere are the *news stories*. \n\nThe news, especially financial news, *doesn't really mention Bitcoin at all* except to describe either scams, FTX, or short-term price action:\n\n"When does it hit this price"\n"when does it die"\n"here's how much you would have made"\n"here's what Elon thinks " and so on...\n\nIt's overwhelmingly bull**** and says nothing about the value, tradeoffs, or *risk-management* of holding Bitcoin. Types of self-custody, *how to self-custody*, why Bitcoin is different, or even what Bitcoin could be in the future. A means of saving, an alternative to credit cards, a hedge to government-credit risk... 402 payments on the internet. \n\nYes I know IN THE BITCOIN BUBBLE we talk about these things all the time but normies DO NOT. I would wager that 'most people' *have no idea ALL OF THIS is going on.* It's a revolution and most, if not the vast majority of people are like "what"?\n\nIt's paying in fiat and wanting to pay in Bitcoin but... you can't. At least yet.\nIt's the lightning wallets that no-one else seems to have - and yes ask your Uber driver if they have a "lightning wallet". When you find one who has one... let me know because I haven't yet.\n\nIt's just all noise.\n\nA few years ago I would have looked at a nice car (and there are *nice cars* out there) and wanted one. Now it's just... not that important. I would much rather people *get* Bitcoin and start to use it for payments, keep it for savings, embrace lightning... so we can *build something* and make the world a better place. \n\nBitcoin is a value proposition, it's *value added* that fiat is... probably not. And people will eventually flock to that value. \n\n*But apparently... it's not today.* So I HODL sit and wait and it sucks. \n\nIn the meantime I'm proud of my little Toyota, a *very* modest little car it has so much *class.*\nAnd I'm waiting on a better world. I'm just glad Stacker News is here in the meantime to know I'm not alone.\n\nIt makes the *very slow* progress more tolerable, less *painful* and one day, when everyone *gets* Bitcoin our dreams will come to fruition and the world will be a better place.\n\n \N 19469 \N 375801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.78812751075408 0 \N \N f 0 \N 0 116737629 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 298001 2024-11-16 20:41:34.638 2025-03-29 22:39:47.906 introducing p u l s e ![](https://m.stacker.news/67448)\n\ncreated this entirely after talking with @k00b last night, will be dropping some cool pl ideas and pl content on here, stay tuned✌️\n\nin the meantime enjoy the first post stackers!\n https://pulse.pleblab.dev/ 10611 \N 298001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.04573162764714 0 \N \N f 164204763 \N 1 50754627 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 278733 2024-10-27 08:38:28.941 2025-03-29 22:39:47.906 How I would like to see a Bitcoin Conference ### How I would like to see a Bitcoin Conference\n\nWe've seen lately a plethora of so called "bitcoin conferences". But most of them are just shitshows and noise, talking all over what was already talked in all those plethora of podcasts and shows, repeating over and over same things, but never provide some damn SOLUTIONS.\n\nWe are already in that phase when who doesn't get it (what is Bitcoin)... HFSP.\nBut we have a large portion of people, businesses, small merchants, entrepreneurs, freelancers that would want to see HOW THE HELL COULD USE BITCOIN IN REAL LIFE for their use case.\n\nYes, we have wonderful movements like https://twentyone.world/ with meetups and local workshops. These are very good. But is not enough.\n\nSo I propose for ALL those organizers for Bitcoin conferences to take these aspects in consideration for the future conferences:\n\n### 0 - General recommendations:\n- NO shitcoins and other crap, Bitcoin ONLY.\n- invite mainly nocoiners / precoiners/newbies, merchants, businesses that want to know more about Bitcoin and how to start accepting it. All these workshops MUST be addressed to those in need of Bitcoin solutions.\n- Bitcoiners already know all these stuff, so don't do echo chamber.\n- If you organize it in a place where English is not the 1st language, consider having it in the local language (especially in El Salvador).\n\n### 1 - Make the MAIN STAGE the one that present only Bitcoin solutions.\n- Let ALL BTC wallet app devs/representatives to present their app and make some live demos. Each one should have a booth with more presentation material, flyers and even more live demos etc\n- Invite more solutions providers to make workshops, demos, presentations of how they use their Bitcoin solution implemented into real use cases (BTCPay, LNbits, node bundles, payment processors, hardware/tools/ATMs providers, builders etc). All kind of solutions for real use cases using Bitcoin.\n- Give these enough time to do their demos and also give them a Q&A session with the audience. Feedback from audience is very important! Let people ask questions. (don't do useless debates with dancing clowns).\n\n### 2 - Make a secondary stage for all the rest:\n- Add a new section: real life stories of Bitcoin adoption. Invite people with wonderful stories of their onboarding or how Bitcoin changed their life. Give a positive example!\n- A session of debating, talking shit or announcements. Whatever is not included in the above.\n- More games and contests, so newbies could earn some sats and learning something new. Like a trivia game about Bitcoin / LN, or a quiz with prizes. Make them do a proof of work for those earning sats.\n\n### 3 - Last day - ONLY relationship\n- Let all participants to contact all presenters and discuss with them more details\n- Organize cubicles where solution providers could do smaller talks with small group of people interested in those solutions, more Q&A sessions, workshops.\n\n### 4 - Make included in the ticket also a system of payments with LN\n- conference participant could get a specific amount of sats to be spend inside the event (kiosks, drinks, food, services, rentals etc).\n- [here is a simple solution using LNbits SaaS](https://darthcoin.substack.com/p/lnbits-saas-a-solution-for-schools). Remember could be even used with internal funds sats and participants will use a wallet app connected to that lndhub account or a NFC card. Is all described in the guide. Make the newbies to see the real use of BTC/LN, directly inside the venue.\n\nI hope this post will inspire you more to organize awesome Bitcoin workshops!\nMAY THE BITCOIN BE WITH YOU!\n \N 20509 \N 278733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.96813078168908 0 \N \N f 0 \N 0 178169554 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 105278 2023-12-30 08:32:28.204 2025-03-29 22:39:47.909 Is Signal Messenger Compromised? Yesterday, new vulnerability in Signal Messenger was found by mysk_co developer.\n\nWhat's are the Problems?\n\n**Problem 1**\n\nMessages are kept in an encrypted file,\n\nhowever local encryption key is stored in plain text in a file called config.json.\n\nThe file is saved in a location accessible to any app, which makes the encryption ineffective. \n\nThis is a recognized issue that has been known about for a long time.\n\n**Problem 2**\n\nMedia attachments, such as photos sent and received, are stored locally without encryption.\n\n**What's next?**\n\nI would recommend unlinking any desktop device from your signal account.\n\nThe problems do not apply only to MacOS, but also other desktop platforms.\n\nI would say it's still safe to say the mobile app, if you have already onboarded your family on it.\n\nHowever, if the transition for you won't be painful, I would go with different options like Threema or SimpleX.\n\nUntil next time.\n\nBe Sovererign.\n\nNot only Online.\n\nMarconius Solidus https://x.com/M_Solidus/status/1809527728636404155 18956 \N 105278 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4613153024428 0 \N \N f 0 \N 0 87809537 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 294981 2024-11-13 08:23:01.545 2025-03-29 22:39:51.183 \N We will have to *disintermediate* the world :) https://example.com/ 20062 294915 294909.294915.294981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.22250798704283 0 \N \N f 0 \N 0 100417352 0 f f \N \N \N \N 294909 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106214 2024-01-01 00:14:25.921 2025-03-29 22:39:47.907 Merry Christmas Stackers Wishing all the Stackers and their families a Merry Christmas and a happy new year. Thank you for sharing your knowledge and opinions. Its been an enriching and enjoyable year on SN. Here's to many more. \N 21603 \N 106214 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.3903935956316 0 \N \N f 0 \N 0 22194294 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106035 2023-12-31 17:20:52.491 2025-03-29 22:39:47.907 How many people can afford to hold their own keys? My assumptions:\n- Onchain for daily usage: 500k (200m tx per year in total divided by 400 tx per person)\n- Onchain as store of value: 50m (200m transactions per year divided by 4 tx per person)\n- Lightning: 500m (5m BTC divided by 1m sats per lightning channel)\n- Covenants: ??? \N 5293 \N 106035 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.2820257428851 0 \N \N f 0 \N 0 249738445 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106215 2024-01-01 00:15:33.026 2025-03-29 22:39:47.907 Spending Sunday - What Recent Bitcoin Purchases Have You Made? Let's hear some of your latest Bitcoin purchases, feel free to include links to the shops or merchants you bought from too.\n\nIf you missed our last thread, [here](https://stacker.news/items/346611) are some of the items stackers recently spent their sats on. \N 21254 \N 106215 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.1820695722903 0 \N \N f 0 \N 0 70904558 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 383547 2025-01-28 15:09:31.656 2025-03-29 22:39:47.907 How Apple Will Add Bitcoin This is a cool little thought experiment. But wallet of Satoshi 😣\n\nStackers what do you think? Can Apple add bitcoin in this way? https://medium.com/@beautyon_/how-apple-will-add-bitcoin-172c26f13c79 16956 \N 383547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5172801669013 0 \N \N f 0 \N 0 146553261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106221 2024-01-01 00:26:54.567 2025-03-29 22:39:47.907 Please help me understand Trump I am at a loss as to why the Bitcoin community seems to be leaning towards Trump (or at least that is my feeling). I was under the impression that Bitcoiners are quite sophisticated people and can see through bullship, so it is puzzling to me. Please help me understand.\n\nI have voted only one time in my life and regret that decision (long long time ago :)). Since that have never voted in any elections. Think of it what you will, but I have not seen one person that would enchant me so much that I'd change my principle and be bothered to go out and vote.\n\nThat is why I am so intrigued by the current hate/love situation around Trump and especially in the Bitcoin community.\n\nFrom what I have gathered, this is my summary of him. Trump will say anything as long as it gets him votes (so do most politicians), but his is just so plain to read. He cares not a tiny bit about anyone but himself and maybe his family (and that is questionable). So, you cannot believe anything that comes out of that guy's mouth. He has conflict of interest all over the place and wants to rule with his faimly like a king (as we saw).\n\nOn one hand, it was nice that Bitcoin was in the spotlight when he spoke at the Nashville conference, but to be honest, RFK's speech was much better in terms of appearing that he has at least some understanding what Bitcoin is. Trump was there just because one of his clever advisors told him this one issue voter community is hungry for acceptance, so with a few wisely spoken gimmicks (like firing Gary), you'll be their hero. And people there actually clapped and cheered, I don't get it.\n\nPlus his NFT money making machine is not even on Bitcoin.\n\nLet's assume, he will do all those things he talked about, yes, it helps bitcoin, but there is much more to being a president than just supporting Bitcoin and this guy just appears as a terrible human being (and he is not even hiding it). \n\nDon't get me wrong, I agree with his Bitcoin statements, but just cannot wrap my mind around why this would be the candidate that makes it all better. The world is much bigger and more complex than just Bitcoin, so voting for someone just because he appears to be supportive of the area I am in, seems very nearsighted. \n\nThanks for reading and keep on living. \N 12422 \N 106221 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.82021387299199 0 \N \N f 0 \N 0 190696066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 419731 2025-02-28 05:35:22.661 2025-03-29 22:39:47.907 Do you think SN will make obsolete Reddit? I will not say anything else, to not "influence" any vote. \N 20198 \N 419731 \N \N \N \N \N \N \N \N history \N ACTIVE \N 12.3073081353196 0 \N \N f 137824953 \N 1 74974222 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423683 2025-03-03 14:37:48.987 2025-03-29 22:39:47.907 The return to personal responsibility, effectiveness and one's own will - Part 1 In a world where it has become the general consensus to say "you can't change that anyway," one's quest for responsibility usually feels like running in a prescribed lane.\n\nThe creation of structures such as states and governments, with an accompanying ramification of laws, regulations and rules, has shaped a sense of powerlessness. This feeling is so entrenched that grievances and injustices are accepted by the masses as unchangeable or even inevitable.\n\nBe it wars, famines, exploitation or the misappropriation of human dignity. Injustice happens everywhere and at all times. To believe that injustice can be completely eradicated in societies as heterogeneous and multipolar as ours seems utopian. Especially since injustice is perceived primarily from the perspective of the individual or a group as a sensation.\n\nIt has already been proven that one can write countless books, essays and articles about each of these grievances and many more. There are plenty of them. As also the perspective to justice plays a role, so it does also in the recognition of grievances. Not every fatal decision or situation is recognized as such by all people. But I would like to refer here to such recognizable grievances, which are also perceived as such in the general consensus. They have already been named and published in the public, state and private media for decades. Everyone knows about it, everyone talks about it. Some try to form an opinion, others close their eyes. Some people seek discussion and confrontation in exchange. Others avoid these topics wherever they can.\n\nIt is the feeling of powerlessness. In the sight of powerful states, corporations, militaries and intelligence agencies that suggest an architecture of feigned security and order, it seems almost impossible for the individual to be effective. We literally long for guidance through regulation.\n\nBut this feeling is not necessary. On the contrary - it is harmful. This is not about coming out as a heroic fighter for peace and freedom among the sleeping. But it is important to understand that it has never been easier than today to escape this feeling of powerlessness. Liberation from monetary paternalism is possible, it is real.\n\nStudy Sats! The monetization process of Bitcoin will take centuries or even millennia in my eyes. But it is a process that knows no end. Probably not all of us will be able to experience the fruits of this miraculous development in its prime. But those who are fortunate enough to have a long time on earth and those who recognize optimism will continue what has begun.\n\nBuilding wealth and personal responsibility is the key to a happy future. If not for yourself, then do it for your children and their children. Give your children the opportunity for personal responsibility, effectiveness and the aspiration to have a will of their own!\n\n\n\nThank you for reading the first part, which could also be called the introduction. I look forward to your opinion and criticism. \N 5775 \N 423683 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 4.82718848956694 0 \N \N f 0 \N 0 30655383 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106220 2024-01-01 00:25:46.029 2025-03-29 22:39:47.907 I'm Tom Chojnacki, CEO of Satsback.com. AMA Hi everyone, I'm @tomek, co-founder and CEO of Satsback.com - a Lightning-native cashback rewards platform and browser extension that helps users save in bitcoin when spending fiat online. \n\nWe're a small team of passionate Bitcoiners based in Europe who wanted an easy way to stack sats, so we built it and made it our mission to empower others with savings in sound money. \n\nWe've connected over 15,000 online stores already, and while most of them target the biggest European markets, many can be shopped by users globally. We're privacy focussed and proudly anti-KYC.\n\nFun fact: We recently enabled automatic payouts to Lightning address so you could set your Stacker News Lightning address in your Satsback.com account to have your earned sats sent directly to your Stacker News account. \n\nLet's go. \N 15510 \N 106220 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.6990347848049 0 \N \N f 0 \N 0 145810431 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 428953 2025-03-07 18:50:02.603 2025-03-29 22:39:47.907 What local businesses would benefit most from BTC/LN Adoption? I’m wondering what businesses would benefit most from adopting Bitcoin. Yes yes, everyone, but who will come first?\n\nFor lightning, I think small: coffee shops, barbers/salons, bars/restaurants, small retail\n\nFor Bitcoin, I think big: real estate, vehicle sales, commercial/residental rent, travel/leisure\n\nWhat do you think? \N 11423 \N 428953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1999531936328 0 \N \N f 0 \N 0 219575787 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434502 2025-03-12 00:52:19.384 2025-03-29 22:39:51.183 \N I get nice rewards despite my relatively limited participation lately. Work's been crazy as I try to get a 41m yacht ready for flag inspection. I leave Sunday to attend the [NMEA Expo](https://expo.nmea.org/) where I'll learn a bunch about marine electronics, which I will no doubt apply to my day job as a yacht electrician. Today, in my quest to help this yacht get ready, I climed up 5 stories above the water! I had to wear a harness.\n\n![From the crow's nest](https://imgprxy.stacker.news/c588fV3hebvvpP18eVDQpuTyk2T7CTBpRp1Imw53yVU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9rSWlLREIwLmpwZw)![Looking up at the crow's nest from a lookout deck, 4 stories above the water.](https://imgprxy.stacker.news/ioJn7H_gKXyB3SzX2Plitg1ncVcgvDzSGqphu73UKy8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9uYTMyc25mLmpwZw) https://example.com/ 5017 433828 433828.434502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9474689321557 0 \N \N f 10354895 \N 1 55397435 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431241 2025-03-09 16:06:23.914 2025-03-29 22:39:47.907 Who has the best customer service? One thing I’ve noticed in the last few years is that customer service (across all industries) seems to be getting worse.\n\nPerhaps there is some correlation to inflation and a general decline in the quality of goods and services as people prefer to optimize for cash today (skimping on customer service/quality materials) rather than build lasting relationships with their customers.\n\nOr maybe I’m just imagining this, and you have a different experience.\n\nI’d love to hear your perspective on a couple of things:\n\n1. Are you seeing changes (better or worse) to customer service in your life over the last few years? \n\n2. What are the best examples of insanely good customer service you’ve seen? Feel free to share links to any companies who deserve recognition!\n\n3. As a bonus, what are some things you’d like to see Stacker News implement to improve customer service/onboarding? \N 14260 \N 431241 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 0.281361634780204 0 \N \N f 510977150 \N 4 224274062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 106293 2024-01-01 05:15:33.697 2025-03-29 22:39:47.907 2023 Bitcoin Node Performance Tests \N https://blog.lopp.net/2023-bitcoin-node-performance-tests 11164 \N 106293 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.1136301436156 0 \N \N f 0 \N 0 152845111 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434586 2025-03-12 03:36:38.452 2025-03-29 22:39:51.183 \N Pretty good observations on why Ads are used so many. This one I didn’t realize:\n6/ Smooths out inequality: different consumers pays different price for the same content and nobody complains. Ie. wealthier people who buy more stuff through ads are subsidizin the people who don’t buy as much. https://example.com/ 3717 434189 434189.434586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.74106157551392 0 \N \N f 33435377 \N 1 43035429 0 f f \N \N \N \N 434189 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 106300 2024-01-01 05:23:43.238 2025-03-29 22:39:47.907 Why Fedimint *Ideally bitcoiners should run their own nodes and custody their own funds.*\n\n![]()\nMany people find the technical challenges of running their own nodes and holding their own funds through recovery phrase management prohibitively difficult, and opt into trusting a third party custodian like exchanges or custodial wallets.\n\n![]()\nThese users sacrifice their privacy and security in favor of speed and convenience. This represents a systemic risk to the bitcoin network as large quantities of bitcoin are aggregated into single custodians.\n\n**`Fedimint`** `aims to address this by distributing custodianship across millions of communities`, making it simple for them to bank themselves. These community focused 'banks' are known as Fedimint Federations.\n\n----\n*From the article* https://fedimint.org/docs/GettingStarted/Why-Fedimint 19199 \N 106300 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.0580145385331 0 \N \N f 0 \N 0 24178414 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106299 2024-01-01 05:20:47.013 2025-03-29 22:39:47.907 Bitcoin Breaks 100K! ![](https://m.stacker.news/66144) \N 10981 \N 106299 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.132121484929 0 \N \N f 0 \N 0 190461842 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106296 2024-01-01 05:18:14.305 2025-03-29 22:39:47.907 Fountain Nostr Beta Testing I'm looking for a few people to help beta test Fountain's new nostr integration - ideally you already use Fountain but not a strict requirement!\n\nPlease DM me on nostr if you're interested!\n\nhttps://primal.net/e/note1nchsyg622x9kyjpnl9nu98e2rvp03fxa9ay7jef607qegpuy3cpqrvcq2v \N 14220 \N 106296 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.3283584978627 0 \N \N f 0 \N 0 57810197 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106298 2024-01-01 05:19:34.283 2025-03-29 22:39:47.907 Nic Carter's Tantrum ![baby](https://upload.wikimedia.org/wikipedia/commons/c/c0/Human-Male-White-Newborn-Baby-Crying.jpg)\n\nI have been thinking about Nic Carter's recent twitter outburst, which I found curious. I know he has been outspoken recently regarding what he perceives as toxic bitcoin maximalism, but the tweet seemed a bit unhinged. \n\nNic Carter is a smart guy, and he has honestly taught me a lot. His "Chokepoint 2.0" stuff was insightful. I have frequently listened to his podcast.\n\nThat's why this tweet surprised me. He was clearly rattled by a few twitter trolls. Within the incredibly long tweet he said, among other things, that those agreeing with the SEC that altcoins were securities were mainly new hodlers who were losing money in bitcoin. This assertion was odd, inaccurate, and condescending. [Jack Mallers](https://twitter.com/bitcoinnewscom/status/1667813670624043009) is not a guy who just jumped into bitcoin recently. I don’t think you can put Jack in that category, nor Michael Saylor, Max Keiser, Jimmy Song, Samson Mow, Marty Bent, Saifedean Ammous, and many other fairly well off folks who have been around a while.\n\nHe also claimed that maxis were just in it for the parties. Are there new people who enjoy socializing with their fellow hodlers? Sure. Is that the only reason they buy bitcoin? I doubt it. In general, Nic seems to characterize just about everyone who buys bitcoin as being in it solely to get rich. Is Anita Posch attending any fancy gallery openings in Zimbabwe or Zambia? Not likely. I doubt anyone there can afford the expensive [rum](https://www.coconutcartel.com/) Nic is selling. I singled her out as an example, but there are people working all over the world bringing bitcoin to the unbanked. Does Nic Carter think of them as religious zealots? I don't know. \n\n### Is Bitcoin A Cult?\n\nOne of Nic’s recurring themes is that bitcoin is like a religious cult to some people. He used the phrase millenarian eschatology. I had to look it up. He doesn’t need to use these big words to let us know he’s smart. He is smart, and he makes a valid point. For many, bitcoin is more than just a means of payment. Some do get carried away with strict adherence to dogma. Bitcoiners do tend to imagine a new world where things are more fair for everyone. They want to see the world change for the better. But their motives are not purely selfish. Bitcoiners often put their sats where their mouths are. During the Canadian Freedom Convoy, the generosity of bitcoiners was incredible. They gave to a cause they believed in. There was absolutely no expectation of financial gain. \n\nI think the reason the bitcoin community can at times seem like a religion is that bitcoin causes you to consider things beyond your own material gain. Contrary to Nic’s notion that hodlers are sitting around waiting for their big payday so they can lord it over everyone, I think bitcoin awakens a sense of morality and a concern for the unfair financial system most humans live under. People like Alex Gladstein and Anita Posch instilled in me a desire to help those less fortunate than I am. They opened my eyes to the human pain caused to the developing world by organizations like the World Bank and the I.M.F. If that's religious, so be it. \n\n\n\nI looked into Nic Carter's personal investments and those made through Castle Island Ventures. There's not a word about any charitable projects or initiatives. He doesn’t have grandiose notions about bitcoin changing the world. He sees bitcoin as one of many tools. Nic worked for Fidelity. He’s a venture capitalist. That is his world. Maybe his perception is shaped by the way he makes a living. I’m not judging here. There’s no right or wrong answer. Only time will tell what the future holds. He’s been involved longer than me, despite the fact that I’m much older than he is. He embraces bitcoin and “crypto” and “blockchain”, whatever he wishes to call it, but he makes his living with fiat finance. That’s his training. He enjoys the cantillon benefits. He thinks that fractional reserve banking is good, and to see it as fraud is “stupid”. His investments are funded by the U.S. financial system. He is one of the elite. His dad works at the World Bank. To bring this up is not an attack on his father. I’m happy to hear the senior Mr. Carter likes bitcoin. It just shows perspective. Nic Carter is not a pleb, hoping to break even soon on his .014 btc holding. But the Securities and Exchange Commission, the referee that governs his playing field, has got him upset. \n\n### MoonPay\n\nI did find a possible reason why Nic might be a little on edge. One of the companies in Castle Island Venture's portfolios is Moonpay, an exchange that offers the average investor the opportunity to buy over 80 cryptocurrencies, including those now declared securities by the S.E.C. If this company rings a bell, it's because it was responsible for the [IOTA hack](https://morioh.com/p/8d43f6d0a8f9).\n\nMoonPay's partners include Binance and Trust Wallet.\n\nMoonPay is known for being easy to use for new investors. One of the downsides, though, is that it lacks basic trading tools that would help investors make more informed trades, like stop limits or market orders. MoonPay's transactions are opaque to the user. It is also known for having some of the highest transaction fees in the industry.\n\nNic Carter is an educated guy. He holds an MSc in finance and investment from the University of Edinburgh. He knows all about the Howey test. He knows all about trading unregistered securities. He knows the S.E.C. will be taking a look at MoonPay. \n\nCastle Island also has many other investments that may raise a few eyebrows. According to its website, it is a “venture capital firm focused exclusively on public blockchains.” [Evaluate](https://evaluate.xyz/) is a site for trading nfts across blockchains and marketplaces. Many of these blockchains either are or will soon be deemed unregistered securities. Within Castle Island is a company called [flipside](https://flipsidecrypto.xyz/), which provides blockchain data for “all leading protocols’. Soon there may no longer be a need for this data.\n\nDon't get me wrong. I'm not a fan of Gary Gensler. I still have my own questions about him and his cozy relationship with Sam Bankman-Fried. If there's any truth to the allegations that he was involved in a recent short sale related to the cases brought against Binance and Coinbase, I would be happy to see him investigated. But, Nic Carter asserts that the S.E.C. is over reaching. The Howey Test was established by the U.S. Supreme Court for a good reason. Through the registration process disclosures are made. Funding sources are revealed. Details of pre mines would see the light of day. The ICO scams that Nic Carter surprisingly brings up himself in the tweet involve many coins he is indirectly shilling. Solana comes to mind. There are many more.\n\nI don't know where all this leads. I don't imagine the S.E.C. is finished investigating U.S. exchanges. When the dust settles, the blockchains that Castle Island Ventures invests in may no longer exist, or may be greatly diminished in usage and value.\n\n\nPerhaps Nic Carter can be forgiven if he's a little anxious.\n \N 2206 \N 106298 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.90379426770824 0 \N \N f 0 \N 0 58322623 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 433437 2025-03-11 05:06:46.259 2025-03-29 22:39:51.183 \N Day 279 of snailposting everyday 'til BTC hits $100k.\n\n...and 79 push-ups. (20 - 20 - 20 - 19)\n\n__@_'-' https://example.com/ 19488 433240 432920.433042.433240.433437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0982990165188 0 \N \N f 0 \N 0 247140113 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106441 2024-01-01 12:46:29.897 2025-03-29 22:39:47.907 Bill Walsh’s Standards of Performance In 1978, the San Francisco 49ers were the worst team in the NFL. \n\nBill Walsh was hired as head coach the following year, and took the 49ers to Super Bowl wins in 1981, 1983, and 1988 during his decade-long tenure. \n\nHow did he do it?\n\nSome point to Bill's innovative on-field tactics (like the [West Coast offense](https://en.wikipedia.org/wiki/West_Coast_offense)) or his meticulously scripted plays for different game conditions, but Bill claimed the one thing that guided everything during his time in San Francisco was a set of values and beliefs he called his Standards of Performance.\n\nBill's Standards of Performance do not have an obvious connection to football. In fact, they appear so disconnected from on-field football performance that one critic among Bill Walsh's staff went behind his back and complained that Bill was too focused on his Standards of Performance instead of winning football games. When Bill found out, he fired that staff member.\n\nBill Walsh's Standards of Performance are universal principles that laid the foundation for all the on-field success his team earned, and can be applied to any organization that wants to win. He was a firm believer in the idea that if all the foundational details were perfected, the score would take care of itself (hence the name of [his book](https://www.bookmarked.club/books/the-score-takes-care-of-itself)).\n\nBill had high expectations of every single person in the 49ers organization. The quarterback, the receptionist, and the grounds crew all played by the same set of rules, and they all grew to demand full mental and physical commitment from their colleagues.\n\nBelow is the full Standards of Performance checklist, from Bill's book ['The Score Takes Care of Itself'](https://www.bookmarked.club/books/the-score-takes-care-of-itself):\n\n- Exhibit a ferocious and intelligently applied work ethic directed at continual improvement\n- Demonstrate respect for each person in the organization and the work he or she does\n- Be deeply committed to learning and teaching, which means increasing my own expertise\n- Be fair\n- Demonstrate character\n- Honor the direct connection between details and improvement, and relentlessly seek the latter\n- Show self-control, especially where it counts most - under pressure\n- Demonstrate and prize loyalty\n- Use positive language and have a positive attitude\n- Take pride in my effort as an entity separate from the result of that effort\n- Be willing to go the extra distance for the organization\n- Deal appropriately with victory and defeat, adulation and humiliation (don't get crazy with victory nor dysfunctional with loss)\n- Promote internal communication that is both open and substantive (especially under stress)\n- Seek poise in myself and those I lead\n- Put the team's welfare and priorities ahead of my own\n- Maintain an ongoing level of concentration and focus that is abnormally high\n- Make sacrifice and commitment the organization's trademark\n\nBill Walsh's Standards of Performance also extended to a code of conduct that all 49ers players and staff were to abide by. This list included rules such as:\n\n- No shirttails out\n- Positive attitude\n- Promptness\n- Good sportsmanship (no strutting, no posturing, no cheap shots)\n- Never sit down while on the practice field\n- No tank tops in the dining area\n- Control of profanity\n- No fighting\n- Treat fans with respect and exhibit a professional demeanor\n- No smoking on premises\n- Respect all items with the 49ers logo on them (no sitting on helmets or throwing them into lockers)\n- No hazing\n- Every missed phone call must be returned in 24 hours\n\nDespite San Francisco's 2-14 record in Bill's first year (tied for the worst record in the NFL), the high standards he set for every person in the organization (including himself) began to communicate that San Francisco was a professional, high-performing organization. Team members began believing they were a part of something special, and it wasn't long before the results of Bill's Standards of Performance began translating into football victories.\n\nIn just 3 seasons, Bill Walsh's San Francisco 49ers went from the worst team in the NFL to Super Bowl champions.\n\n—————————————————-\n\nThis article is the [first lesson](https://www.bookmarked.club/lessons) in a new content series I’m starting on Bookmarked, where I’ll be sharing key lessons learned from the books I read. \N 2789 \N 106441 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.4911085004282 0 \N \N f 0 \N 0 109326042 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 279038 2024-10-27 12:47:04.997 2025-03-29 22:39:47.907 What should Bitcoiners never forget? **GRATITUDE**.\n\nGratitude is a healing force. \n\nOften times, many cases of our depressions, anxieties, and problems can stem from an unfair comparison of ourself to others. You feel as though you should be "keeping up" with your peers, or doing that key thing that the other family is doing. They look so successful, so why aren't you doing it??\n\nWhen I first got involved with the markets, I went too deep. It was easy to get caught up in feelings of FOMO, not just about money, but about life. \n\n"Ahhh if only I could invest X amount to have X much saved later on, so that I can do more of Y and less of Z"\n\nDoes this sound familiar?\n\nIf you've ever actively traded, invested, or otherwise spent a lot of time with financial markets, you especially can understand the emotional rollercoaster that comes along with it. Hence why many bitcoiners wisely opt out of that nonsense altogether.\n\n**The problem is**: you're aiming for a fictitious reality rather than living in your present one. You've created a misalignment between your mind and your environment. Since you prefer to keep your mind on what's coming rather than what is, you paradoxically never achieve "what's coming", as once it's here, your mind is not trained to appreciate it. \n\n> I've [covered this](https://stacker.news/items/261316/r/birdeye21) before: we bitcoiners definitely tend to be more predisposed to the future, for obvious reasons.\n\nAt the end of the day, from what I've observed, these woes can stem back to a **lack of gratitude** about your present.\n\nSo then: how can you foster more gratitude?\n\n- See your family more often\n- Spend time with friends\n- Support your local vendors\n- Pick up hobbies that keep you in the moment\n- JOURNAL\n- Join a community (of any kind) \n\nAnything that can bring you mentally back to the present. **Engage with it more**. You can't magically tell yourself to feel more thankful about your life; You can try "reminding yourself" of all you have, but ultimately you have to _do things_ that make you _feel thankful_ about life. You have to fill your life with reasons to love it. And that takes WORK. \n\n"Waiting for the money to come" only solidifies to yourself that your happiness never will.\n\nIf you haven't in a while, or ever: Take a moment to consider what percentage of your day-to-day actions are oriented around the present vs. the future. List them out if you have to. _See_ the imbalance, if you feel there is one.\n\nIf you find yourself too future-leaning or you're trying to stay more present and connected with your close ones, consider the **gratitude** that full presence in those moments require. It makes more of a difference than you may think, cliché as it sounds. \N 8570 \N 279038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3816090791978 0 \N \N f 0 \N 0 48557213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 117852 2024-01-24 14:15:07.93 2025-03-29 22:39:47.907 What does Bitcoin need MORE of? More podcasts, obviously. \N 19332 \N 117852 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.49401014424993 0 \N \N f 0 \N 0 169044978 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 117040 2024-01-23 03:04:26.986 2025-03-29 22:39:47.907 All that is wrong with bug bounty in a single image ![1000007282.jpg](https://m.stacker.news/26939) \n\nNo matter how much effort you invest or how objectively severe the vulnerability you find is, you can always be brushed off with a "We believe is not that serious" or "Someone else has already reported it." \nEssentially, you're blindly trusting companies to pay you after you did the job and reported to them, with no kind of contract backing the employment relationship. \n\nIt's no coincidence that the prices for this kind of information on the dark web are much higher than on official bug bounty platforms: \ndemand is greater, opportunity cost is lower and market equilibrium is more genuine. \nWe need stronger incentives if we want to stay ahead in the cybersecurity war. \N 16154 \N 117040 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6383892694966 0 \N \N f 0 \N 0 16680389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448450 2025-03-22 15:52:55.304 2025-03-29 22:39:51.183 \N Only once, as a client, where I met your mother https://example.com/ 3304 448121 447892.448121.448450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0729319635395 0 \N \N f 0 \N 0 134390773 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 118087 2024-01-24 20:15:23.467 2025-03-29 22:39:47.907 Will Protestors in Canada get debanked again? There are protests happening in Canada again. The last time there were protests a large number of the protest leaders were debanked. Do you think folks will be debanked again?? Bitcoin really helped last time with the gofundme scandal happening. Just a reminder that bankers are not your friends and to be your own bank! \N 16126 \N 118087 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.35242778986476 0 \N \N f 0 \N 0 84338780 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 118816 2024-01-26 05:09:10.298 2025-03-29 22:39:47.907 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/427413) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 20710 \N 118816 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.68395919623007 0 \N \N f 0 \N 0 125748068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 118992 2024-01-26 13:31:24.508 2025-03-29 22:39:47.907 How Ecash works - animated slides \N https://nuts-and-bolts.gandlaf.com/ 9705 \N 118992 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.617160016243794 0 \N \N f 0 \N 0 8345212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434372 2025-03-11 20:41:06.808 2025-03-29 22:39:51.183 \N We (Clams) are making good progress on an MVP that we hope will help bitcoiners visualize their sats flow across all of their wallets. See a short demo here https://github.com/PlebLab/Top-Builder/issues/16#issuecomment-1932049134\n\nWould be cool to know what types of information folks would like to see on a sats flow dashboard. For example, we could show charts to track income over time. What else comes to mind that would be useful? In particular, I'd like to hear from anyone that is trying to run a Bitcoin business. https://example.com/ 20337 434243 434243.434372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6975196648715 0 \N \N f 0 \N 0 16277228 0 f f \N \N \N \N 434243 \N 0 0 \N \N f \N 2025-03-19 01:41:47.237 f \N \N \N 0 0 0 0 0 0 0 434470 2025-03-11 23:34:10.003 2025-03-29 22:39:51.183 \N That bitcoin has already won. I'd guess only 20% of the currency war has been waged so far. Bitcoin's incentives for securing itself, and for hodling, are incredible but there's still a lot of work to do. https://example.com/ 21131 434278 434278.434470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6099899131302 0 \N \N f 0 \N 0 74309657 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434503 2025-03-12 00:57:54.136 2025-03-29 22:39:51.184 \N The hand wavy answer with Lightning is supposed to provide enough anonymity on the sender side through the onion routing aspects, but there's tons of nuances there. Absolutely worst case scenario, the actors routing the payment know that it was you that sent it and the destination (very common in single/double hop scenarios and especially with LSPs - some LSPs like Muun or Phoenix would know everything about the payments you make).\n\nSome of the recent protocol changes fix some of the issues regarding UTXO's in unannounced channels (that my project https://bitcoindevshop.github.io/hidden-lightning-network/ highlights). But otherwise, your channel partner will always know the UTXO that is used to fund the channel. \n\nReceivers have almost no privacy currently on LN, while in general scenarios, senders have pretty good privacy. If you're paying just a normal person on LN that's not a direct channel partner (if you have other public channels), there's pretty good assurances they won't know who it came from. It's just that it gets tricky with LSPs or bad actors. https://example.com/ 21040 434278 434278.434503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6861662864212 0 \N \N f 3351927526 \N 27 218302354 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 119193 2024-01-27 00:05:16.221 2025-03-29 22:39:47.907 Embracing Nostr: My Journey from Skeptic to Advocate \N https://tonygiorgio.com/nostr/ 11073 \N 119193 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.3885946199756 0 \N \N f 0 \N 0 86233680 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 121145 2024-01-31 00:43:38.179 2025-03-29 22:39:47.907 Background check company breached, nearly 3 billion exposed in data theft KYC IS THE PROBLEM.\n\n(But surely, at some point, if everyone's Dara is available and AI can fake things, KYC will become untenable...and surely, at some point, politicians and bureaucrats will be reasonable...) https://mashable.com/article/background-check-company-breached-3-billion-affected 2437 \N 121145 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7110786319014 0 \N \N f 0 \N 0 206877341 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 120246 2024-01-29 14:28:03 2025-03-29 22:39:47.907 My Journey to Bitcoin maximalism > TLDR: I have shitcoined and even defended shitcoining but I was wrong. Maybe my brutally honest account can help you on your path to becoming Bitcoin only (a maximalist). You might call this virtue signalling, but it doesn’t paint me in a good light. This is my journey, warts and all. I wrote this in an attempt to fix any damage I may have unintentionally done by providing any legitimacy to crypto scams.\n\n## Early Beginnings, Bitcoin first, then…\n\nI discovered Bitcoin a while ago, it took a few touch points but eventually when I got around to reading the white paper my mind was blown. I went down the rabbit hole and became obsessed. \n\nAt the time there were some other coins called “altcoins” around such as Litecoin, Peercoin, and Feathercoin. Litecoin sounded good - maybe it was to Bitcoin what diet coke is to regular coke? I was interested in the ideas behind Peercoin - something about proof of stake - so without too much due diligence I bought some. BBQcoin & Dogecoin - haha, some of these altcoins are pretty funny! Some of them look a lot like junk. They’re also really cheap, much cheaper than Bitcoin. I hope they take off - then I’ll be rich.\n\nI spent a lot of time telling people about Bitcoin with limited success. My Bitcoin teacher Andreas Antonopolous recommended instead of explaining Bitcoin to try handing some out to people instead. I did this a lot. It was quite fun to get them to download the Bitcoin wallet on their phone. Seeing the “Aha!” moment in some of their faces when they received it was an amazing experience.\n\nMeanwhile in my friend group, I am the butt of the jokes. To them I am that dishevelled conspiracy dude in the meme with the pinboard behind him and cigarette in his hand. My mate sends me a video he took of someone metal detecting while he does a Richard Attenborough style voice over “here we have the lesser spotted Bitcoiner... mining for Bitcoin….” my other mate can be heard LOLing in the background.\n\n## Shiny objects & opportunities everywhere, who to believe?\n\nSome early Bitcoiner has a new idea for a coin. He says to put a message on the “Bitcoin talk” forum and he will send some out for free. I got something called Ripple, it seems to work. \n\nMeanwhile some new coins with ”advanced privacy” are being released. One is called “Dash” - it could be a good idea I think, so without much due diligence I buy some. Monero sounds like another good privacy coin, better get some just in case it takes off. Turns out Satoshi created the idea for the first altcoin when he came up with the idea for a DNS coin.\n\nI went to my first Bitcoin conference and it was great to meet some awesome minds in the Bitcoin space. Vitalik Butterin was there with a new idea for a coin. Ethereum sounded interesting, maybe it will take off. I message a guy running a small Bitcoin exchange I signed up for and I am blown away by his personal responses to my emails. I offer to help him out and I join him running the exchange together.\n\n## Bitcoin Civil War? But I thought we were all on the same team…\n\nThe block size debate is well underway at this time. One developer does a back of the napkin calculation and reckons 20MB blocks could be a sufficient upgrade. “Well we need to allow more transactions and to keep fees cheap” I think, and he knows what he’s doing I tell myself. \n\nThere is a disagreement and some people are trying to avoid increasing the block size because they make a case that it will reduce the decentralisation. This makes a lot of sense to me and I change my mind. \n\nThe disagreement blows up, one side is reasoned debate put forward by decentralised systems engineers working on Bitcoin and the other side tells me that the Bitcoin project has been captured by a small cabal of ne'er do wells.\n\nThe block size debate concerns me. I make a website that measures the speed of the transactions coming through and the size of the blocks and shows them on a dashboard using Javascript to show the values as gauges like the speedometer on a car. I put a donation address at the bottom of the site and someone donates a half-decent chunk of Bitcoin! It wasn’t enough to pay back the amount of time I put into building blockspeed.net but wow - that was a new model for making money I hadn’t experienced before.\n\n## Tinkering with a new world\n\nI built another website using the copay libraries that allows people to sell goods for Bitcoin using a 2 of 3 multisig setup with me being the de-facto escrow. A few people sign up and one person uses it to sell some chilli jam to his friend. Development on the copay library slows to a halt and I decide it is best not to run a project such as this on an unmaintained library.\n\nThe Lightning Network whitepaper is released. This is the 2nd time my mind is blown. As I read it the hairs on the back of my neck stand up on end. Holy shit - this is how we scale to 8 billion people. I start telling people about the Lightning Network, LOL - this goes down even worse than telling people about Bitcoin!\n\n## Time to make a decision\n\nBy this time, I’ve made my mind up about the block size. Rather than do a dangerous hard fork to change the code, a soft fork to allow more flexibility for the block space for transactions is proposed. \n\nI read up on the difference between hard and soft forks. Segwit sounds like a good compromise. The Bitcoin miners don’t seem to like the idea, and don’t signal their intent to upgrade. I hear about a grassroots movement known as a User Activated Soft Fork (UASF). It’s a pretty daring idea - if enough users decide to switch to a different rule set (Segwit) any miners that don’t also switch will have their blocks ignored as they don’t follow the new rules. \n\nTo join the movement I upgrade my node to the new version of the rule set and use the command line to add “USAF” to my Bitcoin node to signal that I will be following the new Segwit rules. \n\nMy business partner on the exchange disagrees. He thinks the big block solution is the better one and he adds the new trading pair to the exchange. I go along with it - the market will decide. We receive abusive emails for this decision. I learn more about the importance of decentralisation. I sell my Bitcoin Cash “altcoin” as soon as I possibly can.\n\n## If it looks too good to be true…\n\nSoon enough the ICO craze kicks off, Bitcoin and altcoins are ballooning in price. I started doing some basic due diligence on the altcoins. A lot of the altcoins being invented have very dubious and spurious use cases. Some claim to have whitepapers, but when I read them I am massively underwhelmed. They mention token issuance schedules and developer teams and partnerships. Most of the whitepapers are not even white! At some point I hear the term “shitcoin” for the first time. I start telling people I know that 99% of these altcoins are shitcoins. \n\n## Time to clean house\n\nI look closer into some of the shitcoins I hold. Wow ripple, what a dumb idea. A centralised pre-mined token on a spreadsheet dressed up as a decentralised system. I get rid of all my Ripples. \n\nTurns out Dash had a pretty sketchy initial issuance start, and you have to use some kind of masternodes to make transactions. Doesn’t sound very decentralised either. I get rid of my Dash. \n\nTurns out Litecoin was a bit of a pointless change to the Bitcoin code and relaunched as a new token, there is nothing “lite” about it. However counter-intuitively it does turn out to be quite useful as a live value Segwit testbed. I get rid of them anyway. \n\nTurns out Peercoin uses proof of stake which means that the larger token holders get more tokens for holding their tokens. This doesn’t sound like a good system, so I get rid of them. \n\nThe coin ideas get worse and worse - “food on the blockchain”, “kittens on the blockchain”, “blockchains on a blockchain”. LOL. As a developer I start getting hit up with significant contracts to join some of these projects. Hard pass, thank you. Ethereum seems to be facilitating a lot of these new ICO scam coins. I start telling people I meet that 99.9999% of shitcoins are scams - can you see where this is going?\n\n## A change of direction\n\nThe bank closed down our exchange bank account suddenly without much notice. and the rest of the other banks refuse to even talk to us let alone bank us. We poured a lot of time and energy into running the exchange for years. Just as the exchange started to become profitable the banks “pull the rug” on us. We make the tough decision to close it down and hand out all of the funds we hold on behalf of our customers back to them through our personal accounts.\n\nI started running meetups in the small town I live in. I don't know any Bitcoin maximalists. The ones I hear on twitter are sometimes pretty rude to people! To get a bigger number of people to come down I created a “Bitcoin and Crypto meetup group”. There is a lot of discussion of different tokens and the discussion is mainly about number go up.\n\n## History doesn’t repeat but it does rhyme\n\nThe decentralised exchange (DEX) craze kicks off on Ethereum. Maybe there is a use for Ethereum other than generating further tokens with spurious use cases after all?\n\nThe idea is that you can have “decentralised” exchange between two tokens by interacting with a smart contract. The funds that you wish to exchange must be locked up into the contract in a pair (staking) by someone else who owns both tokens. \n\nThe exchanger can interact with the smart contract by dropping some of one token in and receiving the other token back automatically. On the face of it this sounds pretty good, if you put aside the fact that Ethereum nodes by nature of their extremely high processing and bandwidth requirements are not actually very decentralised, making the D part of the DEX a bit of wishful thinking.\n\nThe second and more important issue is that if you provide the liquidity in the trading pair staked into the smart contract and the price of the tokens changes significantly you receive what was first termed “impermanent loss” but due to the fact that the loss is actually real it was re-termed “divergent loss”. To compensate for this issue the solution was formed to reward the staker with another token (the DEX token) generated out of thin air and gifted to the stakers in proportion to their stake.\n\nIf this sounds convoluted then to summarise, two tokens on the Ethereum network can be “staked” at the owner’s loss to “earn” a 3rd token which, in a circular fashion, can then itself be “staked” into more trading pairs (at the owners loss) to earn more made up tokens created out of thin air, and so on. Why do this at all you might ask? Well if you’re lucky and be one of the few people who snipe the dex launch and stake early you will be rewarded with more of the made up token than late comers. Hmmm… sounds familiar.\n\nEthereum switches to a proof of stake consensus model. One thing that hit me is how it seemed trivial to achieve agreement for such a major change in the Ethereum community. While Bitcoin’s significant changes sometimes are messy and argumentative I don’t really hear much dissent about this decision. The Ethereum “upgrade” goes through unimpeded.\n\nProof of stake is where if you “stake” your tokens you get to do the “mining” and get more tokens. This is said to work because “if you mess around you lose your staked tokens”. Notably Ethereum’s initial issuance was a 70% “pre-mine”. That means that 70% of the tokens were created out of thin air and distributed by the developers (mainly to themselves). Someone points out that a system whereby the people who have all of the money are able to create more of the money is the system we already have. I also remember reading a long time ago a Bitcoiner wrote “the problem with proof of stake is there is nothing at stake”. Can’t really argue with those points.\n\n## Everything else is a distraction\n\nI finally get the chance to go to my first ever Bitcoin-only event. I decided to defend shitcoining to find out the business end of the argument for Bitcoin Maximalism. As you’d expect, this goes down like a lead balloon. One guy tells me “Ethereum is the shitcoin mothership”. I think back to all the ICOs and DEX coins and I guess it makes sense. \n\nI meet some really cool Bitcoiners at the meetup. They are friendly and helpful and the chats are excellent. I had the most amazing time. At this point I am feeling pretty fucking sheepish for defending shitcoining. I immediately buy tickets to more Bitcoin-only events. \n\nI became good friends with some of the Bitcoiners I met and we eventually get onto the topic of shitcoining, I pondered - “surely Monero isn’t a shitcoin, they are trying to make the most private money” I ask. “Monero’s privacy is so good, you can’t verify the total issuance” is the level headed reply I receive. Damn, this means that if there is ever a bug in the code it could be exploited to increase the supply and drain the value and if done carefully, no one would be able to know. \n\nI mentioned to them that I don’t know any Bitcoiners in my town and so I created a “Bitcoin and Crypto” meetup group. One of my Bitcoin friends tells me “Rob when you invite the crypto guys the quality of the conversations you have are way more boring”. It clicks. At that moment I realise then that by including “Crypto” in the meetup I’m facilitating this peddling of all these coins that are misguided at best, but mostly complete scams. \n\nI swallow my pride and admit I was wrong. I sell what little shitcoins I have left for some more Bitcoin. It has been an expensive learning exercise, I wonder if I’d have a whole Bitcoin now if I hadn’t shitcoined so much.\n\nI now know I’ve fucked up, I’ve been party to this gambling on number-go-up coins when deep down all along I knew there was a coin that was fair, actually decentralised and had the most important job to do - to free us all on the individual level. \n\nTurns out anything you need to do with value can and should be done with Bitcoin - probably not on the base layer, but on the layers above and beyond. Bitcoin is the empowerment of people against the tyranny of mega corps and authoritarian states. Bitcoin is the future I want to see, and I'm 100% in on that vision. \n\nThat to me is Bitcoin maximalism, and everything else is a distraction. \n \N 1800 \N 120246 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1480261051401 0 \N \N f 0 \N 0 160963760 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 121233 2024-01-31 08:06:37.46 2025-03-29 22:39:47.907 On Work Work is a necessary inconvenience. In contemporary society, however, people are working harder than ever before, prioritizing their careers over aspects of life that were traditionally valued. These include family, the pursuit of knowledge, artistic creation, and other enriching activities. The emphasis on career advancement has become so pervasive that it has overshadowed other fulfilling pursuits, leading to an obsession with societal approval as measured by financial success.\n\nUnder this perspective, true wealth implies the freedom not to work, a metric by which many are impoverished in our current economy. This notion of poverty is particularly evident in countries like China, Japan, and Korea, where the work ethic is exceptionally intense. In these cultures, not working has become stigmatized to the point that it is viewed as a failure. This shift in societal values has been especially pronounced for women, many of whom now prioritize their careers over starting a family or cultivating a nurturing home environment.\n\nSuch a shift in priorities since 1971 is declared by the people in power as a sign of progress or empowerment. From a strictly economic perspective, this paints a rather bleak picture, suggesting that we are more enslaved to our work than we might wish to acknowledge. The zeal with which we throw ourselves into our careers is often celebrated as a positive attribute, a reflection of personal ambition and dedication. But this view raises the question: What are we truly working toward?\n\nIt becomes a troubling issue when we realize that much of the work done today is not aimed at creating tangible value. Rather, it is often influenced by political considerations and rent-seeking behavior, where individuals or entities seek to increase their share of existing wealth without creating new wealth. This focus on extracting value rather than creating it leads to a hollow sense of achievement and a society that prioritizes the superficial markers of success over genuine fulfillment. At least the slaves of the past knew their predicament. The propaganda today is especially deceitful because most people can't even identify what's so unsatisfactory about their work and why they burn out.\n\nIn the end, this obsession with work and the pursuit of financial success is a presenting symptom of fiat money. We work harder than ever because it lets the rent-seekers continue in their rent-seeking. We work hard because our savings are continuously drained. \n\nThe current emphasis on work, driven by propaganda, calls for reflection on what we value. Yet that reflection is nearly impossible without some resources, and sadly, we don't have the savings to be able to reflect on what we really want. So we trudge on, running on the fiat treadmill. \N 8570 \N 121233 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.1131688999613 0 \N \N f 0 \N 0 115982387 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 121273 2024-01-31 10:53:33.005 2025-03-29 22:39:47.908 How do you pitch Stacker News to people? I tend to think of it like a Lightning-struck Reddit, and that translates well with my bitcoiner friends at least. \n\nNo refs yet though ;( \N 20433 \N 121273 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9087045564618 0 \N \N f 0 \N 0 42694171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434473 2025-03-11 23:40:35.652 2025-03-29 22:39:51.184 \N >A thing I haven't seen much discussed but that seems important: fragmentation of the utxo set when there are 100x more users. Utreexo is one way of approaching this, but I'd be interested to be pointed to discussions on the topic\n\n+1\n\n>Imagining high on-chain fees + utxo fragmentation into quasi-dust is scary.\n\nFor this reason I'd rather the value of Bitcoin go up relative to world currencies than the feerate increase by too wide a margin.\n\nI'm also interested in projects like ZeroSync that make it easier to run a validating node. I feel like this aspect of Bitcoin doesn't get as much attention as it should https://example.com/ 20837 434148 433844.434148.434473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3474066258541 0 \N \N f 0 \N 0 233664400 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434464 2025-03-11 23:09:52.671 2025-03-29 22:39:51.184 \N No - personal life stuff. I thought I would have time to work with it, try new things, etc., but things are moving in the opposite direction for me. https://example.com/ 8472 434306 433740.434022.434306.434464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.34586806443973 0 \N \N f 0 \N 0 165055629 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434467 2025-03-11 23:21:13.411 2025-03-29 22:39:51.184 \N Out of everything said so far, this comment puts a lot of things into perspective. Thank you for sharing it. https://example.com/ 9845 266721 265848.266721.434467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5782546210648 0 \N \N f 0 \N 0 147593917 0 f f \N \N \N \N 265848 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434468 2025-03-11 23:23:08.365 2025-03-29 22:39:51.184 \N Leading the flock: 12 days **~(o)>** https://example.com/ 19394 434385 434385.434468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2579216930422 0 \N \N f 0 \N 0 109744832 0 f f \N \N \N \N 434385 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434478 2025-03-11 23:56:21.209 2025-03-29 22:39:51.184 \N Gathering books with information about accepting Bitcoin in the remote areas of the global south. https://example.com/ 17184 79125 79125.434478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1988221017157 0 \N \N f 0 \N 0 152814205 0 f f \N \N \N \N 79125 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434475 2025-03-11 23:48:25.457 2025-03-29 22:39:51.184 \N Electrum has this since a while but slightly different:\n\n[![2023-04-27-174238-514x401-scrot.png](https://i.postimg.cc/Fz9ZCjW6/2023-04-27-174238-514x401-scrot.png)](https://postimg.cc/VrVndbc9)\n\nLooks like this then;\n\n[![2023-04-27-174433-101x17-scrot.png](https://i.postimg.cc/Pf2zrvFt/2023-04-27-174433-101x17-scrot.png)](https://postimg.cc/V50bKv8T)\n\nBut I think how Peach formats it is better for BTC<>sat conversion, yes.\n\nSo 0.09 090 372 instead of 0.090 903 72 https://example.com/ 2709 433828 433828.434475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5700749867115 0 \N \N f 289845078 \N 4 70121164 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434603 2025-03-12 03:59:09.062 2025-03-29 22:39:51.184 \N Creating a circular economy is essential for Bitcoin. Regardless of the drawbacks you just described. https://example.com/ 640 434558 434278.434558.434603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0371844927561682 0 \N \N f 234094295 \N 3 17076363 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434495 2025-03-12 00:43:59.908 2025-03-29 22:39:51.184 \N Excellent. ‘Walking..’ what a guy!\n\nAs Jack said\n‘The best teacher is experience and not through someone's distorted point of view’ https://example.com/ 13216 434474 432881.433324.433345.434474.434495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.15343637241926 0 \N \N f 0 \N 0 57705022 0 f f \N \N \N \N 432881 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434508 2025-03-12 01:09:14.372 2025-03-29 22:39:51.184 \N The Fortunate Pilgrim, by Mario Puzo. A conversation with @kr yesterday got me thinking about it again. https://example.com/ 7869 434409 434352.434409.434508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8070982378012 0 \N \N f 0 \N 0 147814907 0 f f \N \N \N \N 434352 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435838 2025-03-13 02:43:54.245 2025-03-29 22:39:51.184 \N I love this initial roadmap! If anyone is interested in experimenting with it please, let me know :) \n\nMy hunch is that roughly 1% of tipping users should be enough to generate signal. It will likely be a higher % if there are rewards beyond pure altruism. \n\nI think you can generate user rewards via other income streams - e.g. a jobs board like Stacker News'. Or maybe a premium subscription with additional privacy or enterprise features? Or maybe tied to another revenue generating biz like @TheBTCManual described with Ahrefs and Yep.com? \n\nAnd yes the trust model piece needs a lot of experimentation. Perhaps it's established with LSATs, DIDs, or could maybe even be tied into Nostr as someone mentioned to me this morning. Lots to explore there... https://example.com/ 638 435547 435046.435135.435292.435504.435545.435547.435838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9065227468281 0 \N \N f 0 \N 0 190383779 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434496 2025-03-12 00:45:29.019 2025-03-29 22:39:51.184 \N https://mullvad.net any day no need to setup a account just a random number.\n\nAlso uses RAM servers.\n\nYou can also use bitcoin to pay! https://example.com/ 17030 434332 434332.434496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3928861752117 0 \N \N f 0 \N 0 168999405 0 f f \N \N \N \N 434332 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434517 2025-03-12 01:40:41.591 2025-03-29 22:39:51.188 \N Making progress in my little cabin project 🙂 I managed to frame all four walls and put some plywood on. I also cut some two by fours for the porch and impregnated them. \n\nToday I'll be doing some more impregnating & cutting 😅\n\nHave a great day ahead!\n\n![progress over the weekend](https://i.ibb.co/hH84t9L/progress-over-the-weekend.jpg) https://example.com/ 17392 434411 434278.434298.434310.434411.434517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.61041969647228 0 \N \N f 0 \N 0 4939832 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434518 2025-03-12 01:41:19.581 2025-03-29 22:39:51.188 \N ![Ledger](https://techstory.in/wp-content/uploads/2022/05/WhatsApp-Image-2022-05-03-at-11.57.53-PM.jpeg) https://example.com/ 3347 434439 434278.434298.434310.434411.434435.434439.434518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1992833632727 0 \N \N f 0 \N 0 59818633 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434521 2025-03-12 01:44:40.819 2025-03-29 22:39:51.188 \N Continuing to spread the word about our SHAmory x Built With Bitcoin #MySHAmmy water project as we march towards our goal of raising $7k and building a new water well in Africa. \nhttps://shamory.com/plush-africa/ https://example.com/ 9356 434358 434278.434358.434521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8482726491731 0 \N \N f 191300137 \N 1 177655794 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434525 2025-03-12 01:48:59.498 2025-03-29 22:39:51.188 \N Thanks for linking this! I'm almost finished adding the Addition function https://example.com/ 676 434465 434465.434525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6623049076416 0 \N \N f 206725971 \N 1 124509766 0 f f \N \N \N \N 434465 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434524 2025-03-12 01:46:33.216 2025-03-29 22:39:51.188 \N I’ll make one more public comment as I being asked by a Bitcoin Core contributor I trust what is going on.\n\nI’m not the first one who has sent lawyers letters to another Bitcoin developer to produce a chilling effect. \n\nAlex Morcos from Chaincode did last year, it’s documented here:\nhttps://lists.linuxfoundation.org/pipermail/lightning-dev/2023-March/003887.html\n\nFor everyone awareness, a lot of Bitcoin Core developers, a lot of younger and elders devs cannot speak freely on the subject as their legal fees in the context of some of the BDFL litigations is contributed by Alex Morcos.\n\nFrom my appreciation, a lot of developers fear to speak up their minds in public and to be threat to be withdrawn legal support provided in the context of current or any future litigation. \n\nPersonally, I’m not a defendant in the CSW litigation so I don’t have this constraint and I stay free to speak up my minds about other developers’s behaviors, who ever they are. https://example.com/ 15147 434412 434278.434412.434524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5327405341127 0 \N \N f 0 \N 0 161194080 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434537 2025-03-12 02:09:32.687 2025-03-29 22:39:51.188 \N Reddit still exists? Thought it died a long time ago\n\nIs it still moderated by the CIA?\n![](https://imgprxy.stacker.news/H2hRC287j9FmPXN6FXHyTzgbmKlH5RqKdxTzBqb2VkQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9uYkZ6R3F3LmpwZWc) https://example.com/ 1261 433844 433844.434537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.96935242948273 0 \N \N f 0 \N 0 978700 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434548 2025-03-12 02:39:31.872 2025-03-29 22:39:51.188 \N Great post, thanks! \n\nI definitely agree that ValueRank is just one useful signal (albeit a very valuable one). There should be dozens of experiments mashing up this signal with other data to create the ideal search engine (and there might be multiple winners depending on user preference).\n\nWhat do you mean by "Scroll depth payment %"? \n\nYes I agree that it will be very hard to break Google's powerful network effects. But the beachhead of Hacker News type users is up for the taking. As the online vanguard, they will end up setting a lot of future trends based on the recommendations and integrations they make (so an API is likely very important).\n\nWhat's more, I think "normies" can be brought over as well. There are several approaches that could work here:\n\n1) As Google search results get worse over time, ValueRank gets better. Each person has some threshold where eventually they get fed up with bad info and are excited to find a better result elsewhere (perhaps shared by a friend). It won't happen overnight, but this has been steadily happening via word of mouth for privacy engines like DuckDuckGo.\n\n2) The new search interface uses both a social graph and ValueRank, so people don't think of it as a search engine per se, but more of a discovery or recommendation engine fed by people they trust. \n\n3) Users continue to use Google but are nudged toward better results via an online overlay like their Alby wallet (or some common browser extension)\n\n4) People move to the new engine b/c they get paid to do so. Still need to figure out the exact economics of this, but I think it could work. \n\nI had never heard of Ahrefs or Yep.com before. Thanks for the heads up! It looks like the answer could be something like Yep but with Lightning payments. Let me know if you end up experimenting with your own idea here :) https://example.com/ 20353 434535 434535.434548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0684082612862 0 \N \N f 0 \N 0 45497521 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434550 2025-03-12 02:42:33.073 2025-03-29 22:39:51.188 \N Please consider reading the FAQ: https://stacker.news/faq https://example.com/ 13854 434549 434285.434549.434550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3762689056827 0 \N \N f 0 \N 0 81207596 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434546 2025-03-12 02:36:37.779 2025-03-29 22:39:51.188 \N Listen, Jim\nI'm going out on a limb\nBut the chance of shitcoins winning is slim\n\nMonero is crap\nI'm done with my rap\nI'll see you all tomorrow, \nMy rhymes on the map https://example.com/ 21320 433828 433828.434546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6620812636555 0 \N \N f 0 \N 0 11004094 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434554 2025-03-12 02:46:34.589 2025-03-29 22:39:51.188 \N That’s the most pathetic take I’ve ever heard. I will not change the English language for your degeneracy.\n https://example.com/ 20495 432085 430892.432085.434554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0142668056977 0 \N \N f 0 \N 0 57256413 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434561 2025-03-12 02:56:26.593 2025-03-29 22:39:51.188 \N A convention requires 2/3's of the states, so 34, but changes would have to be ratified by 3/4 which is 38. https://example.com/ 11789 434385 434385.434561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2743444462173 0 \N \N f 0 \N 0 112766190 0 f f \N \N \N \N 434385 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434562 2025-03-12 02:57:32.31 2025-03-29 22:39:51.188 \N I think the one from last week has to be in there because it had the most comments ever. \n\nhttps://stacker.news/items/357511\n https://example.com/ 7119 433860 433588.433860.434562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1412578805945 0 \N \N f 0 \N 0 197585964 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434552 2025-03-12 02:46:04.747 2025-03-29 22:39:51.188 \N I don't understand the word "loyalist" in all these news stories. \n\nIs he supposed to hire people who don't like him\n\nWhat is the difference between a "loyalist" and just a regular pro-trump guy? What separates someone who is ideologically aligned with Trump from a "loyalist"? https://example.com/ 21180 434541 434541.434552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.82522194701083 0 \N \N f 28911516 \N 1 100648183 0 f f \N \N \N \N 434541 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434545 2025-03-12 02:29:36.82 2025-03-29 22:39:51.188 \N I stop caring about people's opinion about me https://example.com/ 21208 434487 434440.434482.434487.434545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.06882817082902 0 \N \N f 0 \N 0 60305418 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434547 2025-03-12 02:38:27.104 2025-03-29 22:39:51.188 \N I am not surprised at all. Expensive, and tbh umbrel runs just fine on my rpi4. But they gotta make some money somehow, good for umbrel! https://example.com/ 21379 433833 433833.434547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.12573167260958 0 \N \N f 0 \N 0 209784491 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434576 2025-03-12 03:23:43.132 2025-03-29 22:39:51.181 \N It won't be a fun ride and will take many decades to get where we want to be https://example.com/ 701 431085 430109.430351.431085.434576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.500014328931 0 \N \N f 22708334 \N 1 217662641 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434564 2025-03-12 02:59:15.317 2025-03-29 22:39:51.188 \N I have personally used the Canada Post payment for Kraken back when I was still new to bitcoin. My Kraken account was a KYC account and I have not use it for a year or two. However, when I did use the Canada Post deposit back then, it was fast and simple. You just tell the clerk that you want to pay whatever amount (the limit was $500CAD for Kraken) to your QR code, you let them scan the code and they take your money. The balance shows up in your account within minutes of paying Canada Post. The only draw back is the inconvenience of having to go to a Canada Post to pay in person, but that is an inconvenience I am willing to take.\n\nI will be trying this out later today to see if it's the same experience with Bull Bitcoin. Excited to be able to stack non-KYC sats at market price with good liquidity! https://example.com/ 17091 434396 434396.434564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4558707073562 0 \N \N f 0 \N 0 196338594 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434571 2025-03-12 03:09:55.843 2025-03-29 22:39:51.188 \N ![The Simple life of a Bitcoiner](https://torum-bucket.s3.us-east-2.amazonaws.com/605ce393b6f18172d76f7a10/post/media/5e6b4ad7a79f69bb7bcf5b3449984589_post_1672294609431.jpeg) https://example.com/ 16724 433828 433828.434571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2767410908064 0 \N \N f 0 \N 0 4749636 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434566 2025-03-12 03:01:51.827 2025-03-29 22:39:51.188 \N nsfw 😏 https://example.com/ 12965 434541 434541.434566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.65140302825088 0 \N \N f 0 \N 0 146573698 0 f f \N \N \N \N 434541 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434567 2025-03-12 03:04:14.874 2025-03-29 22:39:51.188 \N Was so looking forward to this weekend because I thought I would finish accumulating the 29+k sats that is necessary to buy my preferred gift card from Bitrefill \n\nBloody hell. I just realised that it charges a 3k network fee. Not daunted but bummed that my goal this weekend can’t be achieved\n\nHow do you guys cope with using sats amidst such high network fees? https://example.com/ 15732 434506 423475.434506.434567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.956350648007 0 \N \N f 0 \N 0 128809117 0 f f \N \N \N \N 423475 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434579 2025-03-12 03:28:24.954 2025-03-29 22:39:51.188 \N Bitcoin could fail because \n1. Most people on the planet have no savings ever \n\n2. No new money/currency took hold in a society without violence historically \n\n3. Freedom is really foreign concept to half the planet. Like, the idea that someone is “free” to use his money without constraints is not even considered in the realm of possibilities. I lived half of my life in the Middle East, this place would be the last to adopt Bitcoin because of #3 \n\n4. The fiat structure permeates everything in our society, Bitcoin doesn’t just change money, it changes everything. The more change something introduces, the harder it will be fought https://example.com/ 11999 433943 433943.434579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.80997017066382 0 \N \N f 0 \N 0 99370174 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434569 2025-03-12 03:07:55.442 2025-03-29 22:39:51.188 \N App development is moving incredibly fast. Here's the status of Android apps as of about a week ago when I last installed them all and tested them all.\n\n**Nostr for Android App Statuses :**\n\n**Nosky:**\n**Status:** Early stages (Inactive)\n\n* Create posts: ✅\n* Markdown: ❌\n* Reply: ✅ (The reply button on the main feed doesn't work, but opening the post and hitting reply does work.)\n* Add/Remove relays: ✅ (Can add manual ones.)\n* Global feed: ❓\n* Follower feed: ✅\n* URL Preview: ❌\n* Reactions: ❌\n* Lightning: ❌\n* Reactions: ❌\n* DMs: ❌\n* Notifications: ❌ (Implemented, but not working)\n* Edit profile: ❌ (Implemented, but not working)\n* Follow: ❌ (Implemented, but not working)\n* Usable: ❌\n* [Github](https://github.com/KotlinGeekDev/Nosky)\n* [Download](https://drive.google.com/drive/folders/1XYBwH576K-bf4nIDlqzVSmEUKxtDXIR_?usp=sharing) (I self compiled this APKs)\n* Notes: The UI seems mostly done? Lots of crashes and instability. Not ready for day to day use at all. Developer seems to be inactive.\n---\n**Nostros:**\n**Status:** Alpha (Active)\n\n* Create posts: ✅ \n* Markdown: ❌\n* Upload pics: ❌\n* Reply: ✅ \n* Add/Remove relays: ✅ \n* Global feed: ❌ \n* Follower feed: ✅\n* URL Preview: ❌ \n* Reactions: ✅ (Upvote and Downvote)\n* DMs: ✅\n* Notifications: ✅\n* Edit profile: ✅(name, profile pic, LN address, about)\n* Follow: ✅\n* Lightning: ✅❌ (via profile Lightning, invoices not rendered in feed)\n* Usable: ❓ That's a personal preference. It's close.\n* [Github](https://github.com/KoalaSat/nostros/)\n* [Download](https://github.com/KoalaSat/nostros/releases/tag/v0.2.0.1-alpha) (Developer provided.)\n* Notes: The UI seems mostly done, but the UI reminds me of older Android apps from many years ago. GIFs don't play inline, they are frozen. GIF profile pictures do not work. No banner support. Slow performance.\n---\n**Amethyst:**\n**Status:** Alpha (Active)\n\n* Create posts: ✅ \n* Markdown: ❌\n* Upload pics: ✅ \n* Reply: ✅ \n* Add/Remove relays: ❌\n* Global feed: ✅\n* Follower feed: ✅\n* URL Preview: ✅\n* Reactions: ✅\n* DMs: ✅\n* Notifications: ✅\n* Edit profile: ❌(name, profile pic, LN address, about)\n* Follow: ✅\n* Lightning: ❌\n* Usable: ❓ That's a personal preference. It's close.\n* [Github](https://github.com/vitorpamplona/amethyst/)\n* [Download](https://github.com/vitorpamplona/amethyst/releases/tag/v0.7) (Developer provided.)\n* Notes: It's one of the closer to daily driver clients for Android that's out there. The UI is coming along really nicely. However, not being to do profile management or Lightning makes this a no go for me. Both banner support and Link Preview are really nice as most clients do not support these features at all.\n---\n**Daisy:**\n**Status:** Alpha (New)\n\n* Create posts: ❌ \n* Markdown: ❌\n* Upload pics: ❌\n* Reply: ✅ \n* Add/Remove relays: ❌ \n* Global feed: ❌ \n* Follower feed: ✅\n* URL Preview: ❌\n* Reactions: ✅\n* DMs: ❌\n* Notifications: ❌\n* Edit profile: ❌(name, profile pic, LN address, about)\n* Follow: ✅\n* Lightning: ❌\n* Usable: ❌ \n* [Github](https://github.com/neb-b/daisy)\n* [Download](https://github.com/KoalaSat/nostros/releases/tag/v0.2.0.1-alpha) (Developer provided.)\n* Notes: It's too new, very early stages. Unstable.\n---\n**Nostrid:**\n**Status:** Alpha (Active)\n\n* Create posts: ✅ \n* Markdown: ✅\n* Upload pics: ❌\n* Reply: ✅ \n* Add/Remove relays: ❌\n* Global feed: ✅ \n* Follower feed: ✅\n* URL Preview: ❌\n* Reactions: ✅\n* DMs: ❌\n* Notifications: ✅\n* Edit profile: ✅(name, profile pic, LN address, about)\n* Follow: ✅\n* Lightning: ❌\n* Usable: ❓ That's a personal preference. It's close.\n* [Github](https://github.com/lapulpeta/Nostrid)\n* [Download](https://github.com/lapulpeta/Nostrid/releases/tag/v1.6) (Developer provided.)\n* Notes: Let me just say the UI on this is very odd. The Android maximalist on actually hates it. It's not Material or anything related to Android. It feels like a Windows application. That said, it actually works quite well, minus being able to use Lightning, send DMs, or edit Relays. It also supports multiple accounts, which is a nice bouns. https://example.com/ 7891 434457 434457.434569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6888484922995 0 \N \N f 164425254 \N 1 14183369 0 f f \N \N \N \N 434457 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434568 2025-03-12 03:04:53.507 2025-03-29 22:39:51.188 \N I would also like pinned comments for posts... but I'm expanding scope. I should open a feature request.\n https://example.com/ 17030 60799 1620.60799.434568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.41464330140205 0 \N \N f 0 \N 0 130670028 0 f f \N \N \N \N 1620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434591 2025-03-12 03:49:24.138 2025-03-29 22:39:47.908 We are the co-founders of Atomic.Finance, AMA. (Non-custodial BTC yield) Yo Stacker News!\n\nWe’re [Tony Cai](https://twitter.com/TonyCai_) & [Matthew Black](https://twitter.com/matthewjablack), co-founders @ [Atomic.Finance](https://atomic.finance).\n\nAtomic.Finance is building an app for folks to earn a yield on their BTC while holding onto their keys. Made possible using covered calls, and DLCs (think of them as a way to encode a Bitcoin financial contract on-chain).\n\nWe started Atomic because we think the current version of Bitcoin finance sucks… A LOT. Way too easy for folks to get rugged like in FTX / BlockFi / Celsius last year, because everything is custodial and a black box. We want to change that. That’s why we’re all about building what we call #SoundFinance for Sound Money (so like… DeFi, but better 😛)\n\nFinancial apps that are transparent, verifiable, and non-custodial — like Bitcoin itself.\n\nThis yield product is the first step 🤙 - it’s now in open beta on our website: https://atomic.finance/\n\nA few inspirations for question topics: \n\n- Atomic.Finance (obviously 😆)\n\n- 🤺Building in ETH vs Building in BTC (We used to build on ETH ;))\n\n- 🔁Pivoting from ETH to BTC. \n\n- 📃DLCs - what are they? What can they be used for? etc \n\n- 🚀Bitcoin Startups\n\n- 💰Finance on BTC / BTC Options ➡️ Why does it matter?\n\n- 🧪BTC DeFi - what’s possible?\n\n- 👷‍♂️Ways to “build on BTC” - Stacks, RSK etc \n\n- 🔐Why we think it’s so damn important to build things non-custodially!?!\n\n- Custodial future for BTC ☠️vs Non-custodial future🤗\n\n- 🔮Anything BTC tech / BTC programming related. (eg. Scaling BTC, LN, Ark etc)\n\n- 💻 Programming , Mobile app development\n\n- Canada 🇨🇦 vs US 🇺🇸 Bitcoin scene (We’re based in Canada!) \n\n- 👽Aliens\n\nGo ahead, AMA*! All questions are welcome! LFG 🚀\n\n(Is it still considered AMA if there’s two of us? or is it AUA - Ask Us Anything? 🤣) \N 11275 \N 434591 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 7.20353381313956 0 \N \N f 314278765 \N 2 176454819 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434587 2025-03-12 03:41:25.073 2025-03-29 22:39:51.182 \N honestly if we break ATH today i will be beyond tickled 🚀 it’s looking bullish!! https://example.com/ 1817 434082 433403.433421.434082.434587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.486999570186981 0 \N \N f 0 \N 0 249041894 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434592 2025-03-12 03:51:41.448 2025-03-29 22:39:51.182 \N Downzap for defiling the cryptography territory with stupidity. https://example.com/ 16353 434551 434278.434298.434310.434516.434551.434592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2789206311797 0 \N \N f 0 \N 0 122217232 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434593 2025-03-12 03:52:19.507 2025-03-29 22:39:51.182 \N please, don't agree with me!\nfuck me on my back like many others are doing!\n😂😂😂😂😂😂😂😂😂😂\nthat makes me even more toxic than you know me.\n\nTOXICITY IS THE RED PILL FOR ALL BITCOINERS! https://example.com/ 16296 434278 434278.434593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1808455254428 0 \N \N f 0 \N 0 115506602 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434605 2025-03-12 04:02:49.638 2025-03-29 22:39:51.183 \N For anyone not in the know, `nostr` is fiatjaf's social network protocol:\n\n-----\n\nThe simplest open protocol that is able to create a censorship-resistant global "social" network once and for all.\n\nIt doesn't rely on any trusted central server, hence it is resilient; it is based on cryptographic keys and signatures, so it is tamperproof; it does not rely on P2P techniques, therefore it works.\n\n**Very short summary of how it works, if you don't plan to read anything else**\n\nEverybody runs a client. It can be a native client, a web client, etc. To publish something, you write a post, sign it with your key and send it to multiple relays (servers hosted by someone else, or yourself). To get updates from other people, you ask multiple relays if they know anything about these other people. Anyone can run a relay. A relay is very simple and dumb. It does nothing besides accepting posts from some people and forwarding to others. Relays don't have to be trusted. Signatures are verified on the client side.\n\nThis is needed because other solutions are broken\n\n**The problem with Twitter**\n\n- Twitter has ads;\n- Twitter uses bizarre techniques to keep you addicted;\n- Twitter doesn't show an actual historical feed from people you follow;\n- Twitter bans people;\n- Twitter shadowbans people.\n- Twitter has a lot of spam.\n\n**The problem with Mastodon and similar programs**\n\n- User identities are attached to domain names controlled by third-parties;\n- Server owners can ban you, just like Twitter;\n- Migration between servers is an afterthought and can only be accomplished if servers cooperate. It doesn't work in an adversarial environment (all followers are lost);\n- There are no clear incentives to run servers, therefore they tend to be run by enthusiasts and people who want to have their name attached to a cool domain. Then, users are subject to the despotism of a single person, which is often worse than that of a big company like Twitter, and they can't migrate out;\n- Since servers tend to be run amateurishly, they are often abandoned after a while — which is effectively the same as banning everybody;\n- It doesn't make sense to have a ton of servers if updates from every server will have to be painfully pushed (and saved!) to a ton of other servers. This point is exacerbated by the fact that servers tend to exist in huge numbers, therefore more data has to be passed to more places more often;\n- For the specific example of video sharing, ActivityPub enthusiasts realized it would be completely impossible to transmit video from server to server the way text notes are, so they decided to keep the video hosted only from the single instance where it was posted to, which is similar to the Nostr approach.\n\n\nmore on the [project page](https://github.com/fiatjaf/nostr) https://example.com/ 9353 434440 434440.434605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0633582199081 0 \N \N f 0 \N 0 27798977 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434596 2025-03-12 03:53:10.711 2025-03-29 22:39:51.183 \N Yes. Every day I will do one additional push-up, so I will be hitting 100 push-ups / day by the time we get to day 300. https://example.com/ 21521 330774 330698.330774.434596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6389891187567 0 \N \N f 644161190 \N 5 12164186 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434608 2025-03-12 04:07:48.049 2025-03-29 22:39:51.183 \N Sure, but then you get the host of grifters that is attracted by the herd of gamblers lobbying for their next scam platforms on Bitcoin. Also, if a big portion of the economic activity were to be going on in one of the drivechains, there would be pressure on wallet projects to add support. That would increase the complexity of wallets and workload for developers. I see how it might extend the capabilities of the Bitcoin ecosystem, but I’m not sure I like the second-order effects. https://example.com/ 1316 434552 434541.434552.434608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5231373658964 0 \N \N f 0 \N 0 28911516 0 f f \N \N \N \N 434541 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 121747 2024-02-01 10:31:11.757 2025-03-29 22:39:47.908 Wasabi Wallet is shutting down its coinjoin coordination service \N https://twitter.com/wasabiwallet/status/1786083838415769673 13365 \N 121747 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.39552400856213 0 \N \N f 0 \N 0 148005979 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 122664 2024-02-03 17:44:40.864 2025-03-29 22:39:47.908 War bonds as a last resort History repeats itself! As this beautiful museum piece of war bonds of the past shows, at the end of a long credit cycle, states will always tend to finance their warlike actions with the morally enforced money of their citizens. In the European Union, too, we see the tendency to introduce war bonds, which would then of course be converted into so-called Eurobonds. It is therefore important to ensure that we remain financially sovereign and do not allow ourselves to be seduced into stupid financial actions by morally sour state propaganda!\n\n![20240423_095935.jpg](https://m.stacker.news/27803) \N 1136 \N 122664 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.8150426901157 0 \N \N f 0 \N 0 195998070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434633 2025-03-12 04:47:39.648 2025-03-29 22:39:51.183 \N Larry Fink, for financing war crimes. https://example.com/ 1105 434632 434632.434633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.308971279141481 0 \N \N f 0 \N 0 138875278 0 f f \N \N \N \N 434632 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434614 2025-03-12 04:21:33.014 2025-03-29 22:39:51.183 \N Banging my head against the wall on static channel backups for mutiny. Also doing a bunch of touch ups as we get ready for mainnet. https://example.com/ 2326 433844 433844.434614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8678633105751 0 \N \N f 0 \N 0 160332187 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434618 2025-03-12 04:30:20.377 2025-03-29 22:39:51.183 \N rip SN https://example.com/ 894 419731 419731.434618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6897394640006 0 \N \N f 0 \N 0 137824953 0 f f \N \N \N \N 419731 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434621 2025-03-12 04:33:06.396 2025-03-29 22:39:51.183 \N Public libraries \n\nWhen citizens bury themselves in books, they neither have the inclination nor the time to do crimes. https://example.com/ 7395 434609 434488.434609.434621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6009964011499 0 \N \N f 0 \N 0 12144351 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434623 2025-03-12 04:38:44.487 2025-03-29 22:39:51.183 \N Yes, James Corbett is doing very good investigations and documentaries\nI will remind you all here some of his amazing work and I am strongly recommending you to watch them and also share them with all your normies friends:\n- [Century of enslavement: the history of federal reserve](https://www.bitchute.com/video/zwdCl18pslkC/)\n- [911 trillions - follow the money](https://www.bitchute.com/video/c9kKcSpenrJV/)\n- [How Big Oil Conquered the World](https://www.bitchute.com/video/U67rpGthMRQe/)\n\nAnd if you want more documentaries to wake up your friends, here is a list in my guide:\n- [The 5 stages to become a real Bitcoiner](https://darthcoin.substack.com/p/5-stages-became-bitcoiner#%C2%A7must-watch-documentaries-no-bullshit-conspiracies-documented-facts) https://example.com/ 1836 434591 434591.434623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0519808841691 0 \N \N f 0 \N 0 107044944 0 f f \N \N \N \N 434591 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434620 2025-03-12 04:32:44.855 2025-03-29 22:39:51.183 \N Awesome. Wishing you the best on your journey. \n\n10 years ago I quit drinking and haven't looked back. Every facet of my life got better when I didn't spend my nights getting toasted. https://example.com/ 6653 434560 434488.434560.434620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2190650455625 0 \N \N f 0 \N 0 228597592 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 123219 2024-02-05 08:18:56.983 2025-03-29 22:39:47.908 What's holding you back right now? For me?\n\n**Analysis paralysis**.\n\nI'm on the cusp of a project that I know will require more out of me than probably anything else I've worked on in life, and it's definitely hard knowing where to start.\n\nHow do you break through the feeling of being stuck with too many decisions to make? \N 20636 \N 123219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.293015794483 0 \N \N f 0 \N 0 150443899 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 124942 2024-02-09 01:28:21.998 2025-03-29 22:39:47.908 Get ⚡11,000 free sats⚡-- Help us test our "disposable" ☁️ cloud lightning nodes Hi all, \n\nWe're looking for **Lightning-interested peeps** to test **RIZFUL**, our ☁️ **Lightning-Node-in-the-Cloud** service!\n\nRight now, we're giving out **11k sats** to each person who completes the test steps, so you'll have some funds to play with on your node. \n\n📜 **Steps on how to do this are here**: [rizful.com/get_free_sats](https://rizful.com/get_free_sats) \n\nYou can also get a **general overview** of what we're up to on the homepage: [rizful.com](https://rizful.com)\n\nThanks! \n\n\n![](https://daxwktpz4hkwd.cloudfront.net/logos/rizful-logo-mobile.png) https://rizful.com/get_free_sats 12911 \N 124942 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.64938492837486 0 \N \N f 0 \N 0 142667795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 125515 2024-02-10 15:55:06.221 2025-03-29 22:39:47.908 River AMA Ask the River team anything you want to know about Lightning, Bitcoin, or seed oils. \N 9916 \N 125515 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.319799153684279 0 \N \N f 0 \N 0 107391815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 125122 2024-02-09 13:50:31.17 2025-03-29 22:39:47.908 Keep your phone number private with Signal usernames. \N https://signal.org/blog/phone-number-privacy-usernames/ 2776 \N 125122 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1366276218243 0 \N \N f 0 \N 0 130900102 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434630 2025-03-12 04:45:26.054 2025-03-29 22:39:51.183 \N My guess on why the variance in trust levels is culture.\n\nI would note that more of the nations in the least trust have experienced communist rule. All of the folks I know from former east block nations have much lower levels of trust in people not to mention governments. \n\nMany that trust are nordic countries which I have heard have a tighter community/cultural history than say the US.\n\nThe US has a rebellious streak. https://example.com/ 21768 434285 434285.434630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9400617994638 0 \N \N f 0 \N 0 196013478 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434634 2025-03-12 04:48:07.526 2025-03-29 22:39:51.183 \N - Favorite book of all time: Luther's Commentary on Galatians. The amount of intellectual and emotional energy packed into this book is amazing. 1517.org publishes a great translation by a court reporter(!). \n- Mastering Bitcoin, by Andreas M. Antonopoulos. Great basis for further study.\n- I find Bitcoin Audible does a fine job in choosing worthy blog posts for me. \n- I read the Austrian put out by mises.org regularly. \n\n https://example.com/ 7125 434385 434385.434634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5591356407618 0 \N \N f 0 \N 0 136499729 0 f f \N \N \N \N 434385 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434638 2025-03-12 05:04:54.922 2025-03-29 22:39:51.183 \N The real headline is over 23k less full time jobs and 23k more part time jobs. \n\nThis article also doesn't indicate how many gov jobs there were created. The public sector is usually responsible for a lot of job creation. My guess many of the jobs created were public sector. https://example.com/ 9341 432920 432920.434638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.693545816275041 0 \N \N f 0 \N 0 78437395 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434644 2025-03-12 05:18:58.592 2025-03-29 22:39:51.183 \N How does Bold make money? https://example.com/ 14669 434556 434535.434556.434644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8559256252816 0 \N \N f 0 \N 0 229773260 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434648 2025-03-12 05:21:50.518 2025-03-29 22:39:51.184 \N This week I'm translating Bitcoin Developer Guides from Bitcoin.org into Spanish.\n\nhttps://developer.bitcoin.org/devguide/index.html https://example.com/ 21539 434625 434535.434625.434648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2640406041081 0 \N \N f 0 \N 0 214770563 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434649 2025-03-12 05:23:18.1 2025-03-29 22:39:51.184 \N Congress and the clown in chief haven't really tried to stop bitcoin yet. Not really. Look at what they are trying to do to Tik Tok now. For those that believe in the Constitution's ability to stop stuff how's that working for ya?\n\nI would not be surprised to see a bill come before Congress to address this growing threat to the dollar. I don't think it will pass. Here's why. With the approval of the ETFs this type of legislation would interfere with pension funds across the US that are already buying or are considering buying. These are union pensions. I don't see the types of politicians that would seek these voters wanting to go up against the unions. \n\nGonna be interesting to watch it all play out. https://example.com/ 19796 424230 424230.434649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.93914520989677 0 \N \N f 0 \N 0 172149166 0 f f \N \N \N \N 424230 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434653 2025-03-12 05:25:39.705 2025-03-29 22:39:51.184 \N you dropped this: 👑 https://example.com/ 1047 434376 433828.434376.434653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1708697453902 0 \N \N f 0 \N 0 2804010 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434645 2025-03-12 05:20:28.239 2025-03-29 22:39:51.184 \N I thought sex was done by just standing straight very close together. \nI'm still amazed how it's actually done. https://example.com/ 11498 434375 433828.433946.433993.434375.434645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7793731656685 0 \N \N f 53562515 \N 1 165155822 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434655 2025-03-12 05:27:26.25 2025-03-29 22:39:51.184 \N Millions of plebs.\n\nOr it’d just be blank. https://example.com/ 11516 434641 434641.434655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3379166442685 0 \N \N f 165231582 \N 1 243207020 0 f f \N \N \N \N 434641 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 213532 2024-08-12 00:46:56.119 2025-03-29 22:39:47.908 Recent Convo with a Gnome on CULTure Goose: When nocoiners say we are a cult I completely understand where they are coming from tbh\nI've seen less culty behaviour in actual cults\n\nGnome: This is 100% true. We even have to adopt dogmatic rules because people lack basic critical thinking skills to the point they can't determine a scam from bitcoin\nIf you verify nothing and all you see is these passionate, toxic people being exclusionary and promoting their new world order - you will see a cult.\n\nNinja: Okay hot take, most people aren't verifying what they see on the TV either or the internet a lot of the time 👀 so the only reason it seems like a cult is because its different from the broader CULTure in content alone \n\nGnome: That's the facts. It's a cult because it's a completely foreign cultural concept to validate and also disenfranchise that which fails validation. A foriegn culture hostile to your culture (because you don't verify) is to that person a cult.\nMore than that, it's also personally offensive. It says "You're wrong and you don't verify things, we do which makes us right and you wrong". It comes with a kind of moral superiority common to religions and cults, and a feeling of oppression or inferiority to those critical of it.\nThat critical failure to verify, to even know what verification is or looks like, precipitates into all manner of negativity - what are seen as attempts to preserve cultural purity and silence criticism, that a cult or religion is simply the nearest social analog these folks are aware of.\n\n# What is this?\nThe above is a conversation I had with a few Bitcoiners on our Bitcoin discord server. I wanted to share it with you guys and even discuss if there's interest in that. \N 17082 \N 213532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5015970268185 0 \N \N f 0 \N 0 219002602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 213549 2024-08-12 02:07:06.02 2025-03-29 22:39:47.908 Discover where you can pay with Bitcoin I played a little with the lightning network\nI created this site as a list of all sites that accept bitcoin as a payment method\nThis is my small contribution to the bitcoin idea\n\nIf you have a website where you sell some goods and services, you can add it freely.You will be visible to other bitcoiners and it will help you with SEO ranking\nIf you know of a site that accepts bitcoin, please add it\nIf you have already bought goods and services from the sites, you can leave your review and rate it\nhttps://spend-sats.com\n\nThank you \N 2335 \N 213549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.48392014833941 0 \N \N f 0 \N 0 165654618 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434664 2025-03-12 05:44:47.14 2025-03-29 22:39:51.184 \N This quote really bugs me:\n> The good news for tax authorities, and regulators, is that contrary to the vision of the original [Bitcoin] designers - a core role has emerged for centralized institutions of various kinds in the transacting of crypto assets, notably exchanges through which they are bought and sold."\n\nThis must change. More P2P. https://example.com/ 13038 434591 434591.434664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.275207916029 0 \N \N f 0 \N 0 207233821 0 f f \N \N \N \N 434591 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434666 2025-03-12 05:49:26.382 2025-03-29 22:39:51.184 \N Welcome back! https://example.com/ 2056 434576 430109.430351.431085.434576.434666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.92834764442402 0 \N \N f 0 \N 0 22708334 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434672 2025-03-12 05:57:05.848 2025-03-29 22:39:51.184 \N Hi Kody, Nice to meet you and watched your podcast episode recently, I am a react developer but want to start with lightning/Bitcoin development with Fedi. How do I start? any beginner issues? https://example.com/ 9356 434639 433828.434639.434672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.341512026381 0 \N \N f 219770341 \N 1 89138528 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434693 2025-03-12 06:56:30.369 2025-03-29 22:39:47.908 Do you have a life purpose, and do you think it contributes to longevity? Having spent two years in Japan and immersed myself in its culture, I have long been fascinated by the concept of ikigai. I’m sure I’m not the only foreigner who is attracted by it since tons of books have been written by it.\n\nFor the uninitiated, It is a Japanese word that means your ‘reason for being’. Japanese people use this concept to help them determine what they want to do with their lives. It is the intersection of four things: what you love, what you are good at, what you can be paid for & what the world needs. The sweet spot, so to speak. \n\n![IMG_0801.png](https://m.stacker.news/15319)\n\nWith this prior knowledge in mind, I wasn’t surprised to find ikigai featured when I watched Okinawa being dissected as a Blue Zone (disproportionately high number of people who live a long life) on Netflix. What did catch my attention is the episode on Costa Rica.\n\nApparently, the Costa Ricans have a phrase called “plan de vida”, which is similar to the Japanese concept of ikigai (life purpose). This helps explain their longevity.\n\nThis got me thinking because I relate strongly to the following lyrics from “Everyone’s Free” by Baz Luhrmann:\n\nDon't feel guilty if you don't know what you want to do with your life\nThe most interesting people I know\nDidn't know at 22 what they wanted to do with their lives\nSome of the most interesting 40-year-olds I know still don't\n\nSo, I’m in my 40s and certainly enjoy teaching. But do I consider it my calling? I don’t think so. I mean, there are still other things I hope to do with my life, other aspects of my personality I hope to explore. I don’t think I can be like the typical Japanese or Costa Rican who goes alll in on one particular thing and spends his entire life honing his expertise in that. \n\nI need variety, even if this leads to a less-than-laser-sharp focus that may take some years off life haha.\n\nHow about you? Are you the kind who believes that your life is made more meaningful when you think that it amounts to something greater than your own existence? \N 15091 \N 434693 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.386676189389 0 \N \N f 326239943 \N 2 20283977 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434686 2025-03-12 06:47:38.001 2025-03-29 22:39:51.184 \N https://ln.cash/ https://example.com/ 8400 434285 434285.434686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.99991169044372 0 \N \N f 0 \N 0 125196317 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434692 2025-03-12 06:53:57.426 2025-03-29 22:39:51.185 \N [Superheat](https://superheat.top/) advertises that their water heater will mine 68TH/s, which would bring that number down SIGNIFICANTLY. Integrating mining into water heating and HVAC seems to be the solution to me. [Hashing2Heating](https://hashing2heating.com/) has come up with some amazing ideas for making this happen. https://example.com/ 20026 434389 433588.433589.434389.434692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7422183395652 0 \N \N f 0 \N 0 96440278 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434742 2025-03-12 07:51:31.262 2025-03-29 22:39:51.185 \N I was curious how the new OCEAN block templates compare in terms of fees. Here's a quick-and-dirty client-side tool that connects the OCEAN web sockets and plots the fees in the template: https://0xb10c.github.io/ocean-xyz-templates/\n\n\n\n![GB3umdbWgAAx-ib.jpeg](https://m.stacker.news/8970) https://example.com/ 11275 433611 433555.433611.434742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3825491464463 0 \N \N f 0 \N 0 101447258 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434683 2025-03-12 06:37:02.88 2025-03-29 22:39:51.185 \N They are feds, end of story. These pricks putting bitcoin user data in dragnets fuck outta here https://example.com/ 15484 434536 434536.434683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5248539471256 0 \N \N f 0 \N 0 76910786 0 f f \N \N \N \N 434536 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434690 2025-03-12 06:51:15.173 2025-03-29 22:39:51.185 \N Might be worth keeping an old bootable version of MacOS X handy...\n...or better still wipe and reformat as Ubuntu, when they inevitably force-upgrade more recent versions.\n\nRemember the latest MacOS will automatically install "security updates only". Soon there won't be the ability to override in the UI (currently hidden) and this will extend beyond minor updates to major ones. What constitutes a security update is changing by the day. Just read the latest legislation out of the UK. https://example.com/ 854 434672 433828.434639.434672.434690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2218151554645 0 \N \N f 0 \N 0 219770341 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434694 2025-03-12 06:57:33.453 2025-03-29 22:39:47.908 What's one quote from Movies or Books that you can never forget? Hi everyone, \n\nI'm not a big reader. I rely on quotes from books and movies. I also feel that it's better to read or listen to a few quotes in the morning to boost your day. I don't stick to single source. Rather I select randomly and listen patiently to some of the finest quotes everyday at least for 15 minutes.\n\nToday, I read some quotes from here. https://www.bookbub.com/blog/famous-book-quotes\n\n> 1. “There is some good in this world, and it’s worth fighting for.” — J.R.R. Tolkien, The Two Towers\n\n> 2. “It is only with the heart that one can see rightly; what is essential is invisible to the eye.” — Antoine de Saint-Exupéry, The Little Prince\n\n\nSo, I would like to know what are some of your favourite quote that you always look at to motivate and boost yourself. Also, tell me which one you can never forget? The quote that's just stick to your mind like forever.\n\n \N 21349 \N 434694 \N \N \N \N \N \N \N \N security \N ACTIVE \N 26.6846342857881 0 \N \N f 0 \N 0 136917824 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434770 2025-03-12 08:21:24.976 2025-03-29 22:39:51.185 \N My issue with neuralink isn't the tech. Its the vulnerability of having a chip in the body. We need to increase value of open source auditable code. No way I'd drive a car or insert tech into my body controlled by Elon's companies. I don't have that much trust.\n\nMost people I know that freak out about biotech like this are addicted to their phones and are being tracked 24/7. They are just freaked out about the device moving into their body. They don't realize that they have already augmented their bodies but it is just an external device. \n\nI'll keep my tech external unless making it internal (heart for example) saves my life. The external tech I can easily replace or dispose of myself. That's my issue with biotech. How do I control it and how could it control me. I can throw my phone in the trash. https://example.com/ 20840 434662 434646.434662.434770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1110269293461 0 \N \N f 0 \N 0 30509810 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434711 2025-03-12 07:20:45.294 2025-03-29 22:39:47.909 I have just raised the fees significantly on some channels Inspired, or rather reminded, by The Wall's post (https://twitter.com/hi__im__dave/status/1746149064867979418) I just raised some fees on my routing node c-otto.de.\n\nFor some selected peers like bfx-lnd0/1 and Binance, whenever I have lots of liquidity in a single channel (meaning I could route a very large transaction), from now on I charge much more than usual (2000+ ppm). The fee rate is adjusted frequently, and lowered if the configured liquidity is NOT available anymore.\n\nI hope that this information/signal is interpreted accordingly, so that my node actually serves large transactions to those peers. I don't have any concrete information, but I believe that some operators deliberately skip cheap channels to avoid routing failures, and prefer more expensive channels for larger transactions. This matches the observation described in The Wall's post.\n\nRaising fees when there's a lot of liquidity on my side of the channel seems counter-intuitive, as I'd like to incentivize the rest of the network to route through that channel. Usually, making stuff cheaper helps increasing demand. This might not be the case in the lightning network, and I'm curious to see how this pans out in the long run!\n\nI hope that consistently providing a great routing experience is rewarded, and that high fee aren't that bad. As a positive side effect, rebalancing (topping up) high fee rate channels gets much easier. \N 13759 \N 434711 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.81104189881934 0 \N \N f 0 \N 0 136590822 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434701 2025-03-12 07:11:39.557 2025-03-29 22:39:51.185 \N What are your opinions about new payment technologies? e.g. Lightning, ecash, fedimints, etc.\n\nDo they impact your business much? Do institutional clients ask questions about such things? https://example.com/ 21014 434514 434514.434701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.85018782159342 0 \N \N f 0 \N 0 240680751 0 f f \N \N \N \N 434514 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434704 2025-03-12 07:17:18.072 2025-03-29 22:39:51.185 \N I stumbled across [this](https://stacker.news/items/153890/r/Undisciplined) banger of a post from @tomlaies, while perusing my random feed.\n\nEnjoy https://example.com/ 15662 434647 434647.434704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6801683177986 0 \N \N f 0 \N 0 63998722 0 f f \N \N \N \N 434647 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434706 2025-03-12 07:18:32.797 2025-03-29 22:39:51.185 \N I agree - personal projects and messing around with different tools is absolutely the best way to learn. I'm not sure how far along with your process you are, but you might wanna check out [IFTTT](https://ifttt.com) - stands for **I**f **T**his **T**hing, **T**hen **T**hat...it's a pretty handy tool that's kind of like an API of APIs, at least it's an easy to use glue that binds a bunch of other shit together. I've used it with [twilio](https://twilio.com)'s API, which it's already configured for, to do stuff similar to what you're aiming to accomplish. It's especially easy if whatever phone number you're using is linked up to something like google voice. Worth checking out for sure. [Zapier](https://zapier.com) is also pretty good and in the same vein as that, as is [make.com](https://make.com)...though for a true no/low-code solution I'll always love IFTTT. https://example.com/ 1438 434702 434693.434702.434706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2513251008821 0 \N \N f 0 \N 0 222277886 0 f f \N \N \N \N 434693 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1245 2022-09-08 17:10:16.652 2025-03-29 22:39:47.909 full node on linux server in homelab : adding i2p # _intro\n\n[Here](https://stacker.news/items/680739) is my previous post. There was a suggestion in the comments that I could connect the node to i2p network, I done it and here are my notes: \n\n# _i2p\n\n**install** \n`sudo pacman -S i2pd`\n\nI am not creating any tunnel for now, so I did comment out all lines in `/etc/i2pd/tunnels.conf` \n\n**/etc/i2pd/i2pd.conf** \n\n```\nlogfile = /var/log/i2pd/i2pd.log\nloglevel = error\nipv4 = true\nipv6 = false\nbandwidth = L\nshare = 35\n\n[reseed]\nverify = true\n\n[limits]\ntransittunnels = 500\n```\n\n**enable, so it will start after reboot** \n`sudo systemctl enable i2pd.service`\n\n**monitoring** \nYou can connect to server from PC over ssh and using portforwarding feature. This command `ssh -fTNL -L 7070:127.0.0.1:7070 IP_OF_SERVER` will open port 7070 on your PC, so you can browse [http://localhost:7070](http://localhost:7070) to watch info from server i2pd webconsole. Do this only on local network.\n\n**accessing i2p net from pc** \nyou can do same trick with portforwarding over ssh to forward port 4444 and then setup proxy access in firefox to localhost:4444 After that you can browse [eepstatus](http://identiguy.i2p/) or [Bitcoin hidden full node](http://bitcoin.i2p/) clearnet will not be accessible.\n\n**notes** \nI did not setup upnp and did not port forward any port for i2pd on main router. So no other i2p nodes will make connectio to mine.\n\n\n# _bitcoind\n\n**/etc/bitcoin/bitcoin.conf** \n\nI did add following lines\n```\ni2psam=127.0.0.1:7656\nonlynet=i2p\n```\n\nthen restart bitcoind. It will create i2p service / address which you can see in btc-explorer in node details and same should be in i2pd webconsole under SAM sessions. \n\nI am not sure but at begining you need to connect your node to some othere i2p nodes, after that they will talk and exchange other i2p nodes addresses.\n\nI did read [this doc](https://github.com/bitcoin/bitcoin/tree/master/contrib/seeds) and choose some i2p addresse from [nodes_main.txt](https://github.com/bitcoin/bitcoin/blob/master/contrib/seeds/nodes_main.txt)\n\nyou can run this command as normal user on server using RPC credentials `bitcoin-cli -rpcuser=YOUR_USERS -rpcpassword=YOUR_PASS -datadir=/mnt/node_1/blockchain addnode "2v5nr3u3scbyxd3nkqxinw2pvqqe66y4hc3u6gotil2sgbyivruq.b32.i2p:0" "onetry"` and it will add i2p node.\n \n# _final notes\n\nyes, I could configured tunnel for access btc-explorer and fulcrum but at this moment I have no plan to use i2p. Maybe I will try that during long winter evenings ;-) \N 11789 \N 1245 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.5799049378459 0 \N \N f 0 \N 0 248146565 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434716 2025-03-12 07:26:57.788 2025-03-29 22:39:51.185 \N This is from the same people who made Tweetoshi. Unable to search for it on Google Play but able to remotely download. https://example.com/ 16259 433712 433555.433712.434716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6984640943181 0 \N \N f 0 \N 0 189213489 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434719 2025-03-12 07:30:44.65 2025-03-29 22:39:51.185 \N Social Media missing on that graph. x) https://example.com/ 7580 433724 433555.433724.434719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.80968153815692 0 \N \N f 0 \N 0 174961675 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434744 2025-03-12 07:52:39.463 2025-03-29 22:39:51.185 \N - I'm not technical but like technology, was floating around Hacker News back in day. Watched early videos of what must have been CPU mining. Intrigued but couldn't understand what was going on. Ignore it.\n\n- Saw a tweet from software engineer I respected say 'don't buy bitcoin, it's going to boil the oceans!'. Scared of it. \n\n- Watched 2017 but didn't understand what was going on. Just remember telling my son while pointing to price chart 'if you see a market like this, this is a mania. Don't buy here.'\n\n- Laughed at bitconnect guy but didnt pay too much attention. Thought something is going on, have to keep an eye on it when cools off.\n\n- Started paying attention when noticed some talk on twitter about halvening. Curiosity got better of me and started reading. Bought some on Conbase to have skin in game. Keep reading.\n\n- Some point realise that whatever price we first buy at, that's our reference. So if price falls below, it seems cheap and people will likely buy more. This will repeat forever, there will always be buyer.\n\n- Received small inheritance, so went all in. Why not, didn't have that money yesterday. Now I was really invested.\n\n- Somehow found Marty and Odell podcasts. All signal.\n\n- Then came 2020 and my politics inverted and my inheritance was worth a bunch more. Now I wanted to learn everything I could about bitcoin because nothing else was making sense. Over course of year totally orange pilled.\n\n- Laugh all the way down from highs knowing I'm holding my own keys. No counterparty risk is just not priced in. Unbelievable.\n\n- Now I'm here in 2023 looking forward to our next halvening. Feeling blessed.\n\n- So, somehow always bitcoin-only. \n\n- Will say, once bought first sats on Bisq though, was totally hooked. Thats when whitepaper really clicked for me. Peer to peer, no middle man.\n\n- Privacy tools, open source software, peer to peer networks, this is the way. Now Nostr getting me pumped too. LFG!\n https://example.com/ 4650 433687 433555.433687.434744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.4534664834664 0 \N \N f 89738936 \N 1 159876199 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434725 2025-03-12 07:35:39.181 2025-03-29 22:39:51.185 \N Hi Tony, I remember you to thanks me in-person for my Lightning security works at TAB Conf 2022, after or around my panel on this subject, am I correct yes or no ? https://example.com/ 20525 434715 433555.433695.434715.434725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.89670502685176 0 \N \N f 0 \N 0 57982634 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434733 2025-03-12 07:41:49.276 2025-03-29 22:39:51.185 \N My vegetable farm is infested with a lot of weed after the rains. Would be mostly removing them. \n\nAlso learning to surf in the mornings. https://example.com/ 16097 434708 433828.434420.434708.434733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.46737018839137 0 \N \N f 0 \N 0 141321694 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434729 2025-03-12 07:37:42.526 2025-03-29 22:39:51.186 \N I understand where Lyn is coming from nonetheless. The fact that people don't understand Bitcoin is the reason they are able to be scammed by shitcoins. \n\nEvery so called crypto is a set of rules and buying a so called crypto is a buy in to those set of rules. Buying into a set of rules you don't understand or put another way having your money at the whims of rules you don't know, is and should be a scary thought. \n\nPeople need to understand that every "coin" is a completely different set of rules and does not work like Bitcoin. They need to understand that when we say something is a shitcoin, we mean that the rules of that so called coin, suck. \n\nRight now they must think we're saying it to pump our bags. Especially since that's exactly what newbies are doing and exactly what every shitcoin scammer is doing. https://example.com/ 21263 433782 433555.433782.434729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.72765338590467 0 \N \N f 0 \N 0 203883903 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434735 2025-03-12 07:43:12.628 2025-03-29 22:39:51.186 \N I wish you the best. Many amazing bitcoiners who work at Swan. I don't think the average employee is bad. However there are highly suspicious numbers coming out of Swan that at the very least need clarification and supporting data. \n\nLets just take the roughest of rough numbers of what they likely spent in 2023:\n1) lets assume $150k all in cost per employee even with salary, health care, social security, etc. (this is laughably low for a predominantly American startup) x 110 employees (heard Cory say they have over 100 people) = $16,500,000\n2) $365,600,000 on mining capex\n3) lets assume a low number for electricity cost and again assume their fleet is S19s so $0.05 per kwh times 221k kwh per BTC mined(https://www.coingecko.com/research/publications/bitcoin-mining-cost and I'm even being generous and assuming highest end s19) * 750 BTC mined Swan has claimed = $8,287,500\n4) let's assume they are miraculously efficient with all of general and administrative costs and those amount to only $5,000,000\n5) Swan publicly said it invested over $200M in 2023, lets assume there is significant overlap with 1-4, even though they state "Swan has raised around $165 million in equity funding in 2023, with $125 million for private equity and venture investments." which would seem to imply little or no overlap, and just call this a cool $100M https://finance.yahoo.com/news/swan-raises-40-million-build-130000173.html\n\nTotal = $495,387,500 and again its likely higher, but I'm trying to guess low and be conservative. \n\nEven if I want to make the most charitable case, Swan and Swan Mining are not disclosing they are mostly funded by totally unknown investors and keeping current investors in the dark. If you have the money just say who gave it to you. Even past investor Ten31 doesn't know how they could've gotten this much money, and more people keep emerging publicly saying their numbers don't seem to add up. \nBottom line: **They are claiming they spent something on the order of half a billion in 2023, where did that come from? If they really did why not just explain? Don't trust, verify people**\n\nDisclosure: I am not a galaxy brain, I am a pleb making good faith best estimates. I would love for Swan to release official disclosures that prove me wrong, and then everyone can put this behind us. https://example.com/ 12483 434535 434535.434735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.44537041537404 0 \N \N f 0 \N 0 26090659 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434734 2025-03-12 07:42:24.434 2025-03-29 22:39:51.186 \N LOL this meme is so true...\n[![LN-self-custodial.gif](https://i.postimg.cc/L6YrRymx/LN-self-custodial.gif)](https://postimg.cc/8jGymmJv)\n\n*[by Corndalorian on NOSTR](https://primal.net/e/note1pp5tvgy4cydjwtgpj66yr6g69p3ll2r2ptcyzzvtvy88dpmdtreqxf63zw)* https://example.com/ 16542 434434 434434.434734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1269787132152 0 \N \N f 0 \N 0 68555725 0 f f \N \N \N \N 434434 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434738 2025-03-12 07:49:17.373 2025-03-29 22:39:51.186 \N Yes, the architecture of apps is very wtf as a practical matter.\n\nRemember that a fake twitter demo was the first client, and it became the "current thing". No logic or reason behind it, and no attempt to be better at any particular thing, just a mindless protest at centralized platforms.\n\nDid you know that every DM you send is making your key weaker too? Most clients are still using NIP04 and now those keys are compromised if users sent a lot of DMs.\n\nReality has started to set in with at least a small contingent of devs that usability and scale must be considered. This hard work will likely lead to nostr winter in my estimation, as the sugar rush of useless clients fades.\n\nNostr's real potential is in the projects you haven't heard of yet, contribute to those and tooling. https://example.com/ 960 433735 433555.433735.434738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9551131506806 0 \N \N f 0 \N 0 202284909 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434741 2025-03-12 07:51:13.269 2025-03-29 22:39:51.186 \N I run the node c-otto.de and left a few notes on https://c-otto.de. Aside from that, I think that having lots of capital is crucial. Your node needs to be well connected, but it also needs to have enough inbound and outbound liquidity for a lucrative large forward to happen (I love those 10M+ forwards, even though they are rather rare). Most implementations take the channel capacity into account when finding routes, which also means that you should try to have large channels.\n\nI think that LnRouter (https://lnrouter.app/) is really helpful. Before you open a (large) channel to a node, make sure that it can actually put those sats to good use. If the peer lacks outbound liquidity, it doesn't help to open yet another channel TO them.\n\nSome helpful stuff from Alex Bosworth:\n\n- https://btctranscripts.com/lightning-hack-day/2021-03-27-alex-bosworth-lightning-routing/\n- https://www.youtube.com/watch?v=HlPIB6jt6ww\n- https://www.youtube.com/watch?v=fhmeNWczeUg\n\nHow I set my fees (and why):\nhttps://yalls.org/articles/97d67df1-d721-417d-a6c0-11d793739be9:0965AC5E-56CD-4870-9041-E69616660E6F/a81e96f9-b1a7-4763-9f7a-adf226ebde59\n\nRegarding rebalances:\nDon't rebalance if it's not worth it. If you use rebalance-lnd, only routes are used that (if routing happens) put you in a better position.\n\nAnother advice: weed out bad peers, keep the good peers, use available sats to improve your position and/or try out new peers. With lnd-manageJ (https://github.com/C-Otto/lnd-manageJ) you can get a rating for each peer based on routing activity, and use that number to guide your decisions (which is what I do). https://example.com/ 1175 434724 434724.434741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5144232889245 0 \N \N f 107746050 \N 1 165828417 0 f f \N \N \N \N 434724 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436350 2025-03-13 13:46:11.379 2025-03-29 22:39:51.181 \N Simple MVP: downvoting costs 5x the upvoting.\n\nSlightly more difficult: each post costs a "deposit" of 10,000 sats which will be refunded if you have a non-negative score within 24 hours. If you have a negative score, you give up your deposit and it goes to the distribution pool for the next day. https://example.com/ 2773 435786 435359.435786.436350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9765765033907 0 \N \N f 0 \N 0 121626225 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434762 2025-03-12 08:13:04.97 2025-03-29 22:39:51.182 \N With a thread on X? A lot of people will not be able to read it! You should be aware of that as an independent bitcoin only journalist... https://example.com/ 12951 434684 434646.434684.434762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4669261138391 0 \N \N f 0 \N 0 6600213 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434758 2025-03-12 08:09:31.258 2025-03-29 22:39:51.182 \N Day 116 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 654 434691 434642.434691.434758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.50170291388964 0 \N \N f 0 \N 0 171717810 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434761 2025-03-12 08:13:04.286 2025-03-29 22:39:51.182 \N Agree that there's a lot of technological push rather than market pull Jimmy.\n\nAt the same time, the same thing could be said of the early internet in the mid 90s. I bet you they even said the same thing about telegraph. It took [Heaviside rewriting Maxwell's equations](https://www.youtube.com/watch?v=wyS2aNIKxmQ) to make them practical. \n\nIt takes time for general purpose technologies to get a foot hold and find applications. We will see how it plays out.\n\nPersonally, I'm trying to build AI applications in the most [ethical, cypherpunk way](https://www.youtube.com/watch?v=Ctfypj8EGi0) possible that creates productivity gains & wealth for users. https://example.com/ 12102 434747 433828.434475.434667.434747.434761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.71616854981456 0 \N \N f 22459816 \N 1 7928318 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434753 2025-03-12 08:05:39.456 2025-03-29 22:39:51.186 \N By specifying the dust limit, I was trying to get at the need for some kind of way to accept small value payments. \n\nWhile the dust limit is currently pretty low value, you'd have to be crazy to sell anything for such a payment size on chain. Honestly, I'd rather not have a utxo worth less than a million sats. If fees go up and I've been accepting 10k sat payments, I'm going to lose a lot of value consolidating. \n\nI figure, any scheme for bitcoin that allows you to accept payment sizes below the dust limit necessarily fixes this problem. \n\nAlso stacker news and nostr zaps are great examples of micro payment use cases. https://example.com/ 20205 434744 433555.433687.434744.434753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6968387413891 0 \N \N f 0 \N 0 89738936 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434764 2025-03-12 08:14:44.267 2025-03-29 22:39:51.186 \N So I’m out on my run today and a car zips past me and license plate says Satoshi! He lives! https://example.com/ 4754 434652 434646.434652.434764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7493813815469 0 \N \N f 0 \N 0 74114334 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434785 2025-03-12 08:36:52.433 2025-03-29 22:39:47.909 Ian Major AMA Hey Everyone,\n\nI’m Ian, and I have the esteemed privilege of hanging with you during this pre-halving AMA!\n\nIn my past life, I worked as a consultant helping large companies apply analytics to business decisions. We were acquired by Mastercard, giving me not only a look into the belly of the beast, but also a lot of insight around the problems with traditional loyalty (TLDR: it’s a scam). \n\nI’m now the Co-Founder of Joltz Rewards and building tools to help other companies bring bitcoin rewards into their businesses. We’re also doing some cool stuff with Taproot Assets and have a unique perspective on how we bring bitcoin rewards mainstream.\n\nI also run a YouTube channel (All Things Bitcoin) where I post tutorials and bitcoin education content like a way less cool version of BTC Sessions.\n\nHappy to answer any questions or just shoot the shit! \n \N 1959 \N 434785 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.943404247215 0 \N \N f 0 \N 0 95132772 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434771 2025-03-12 08:21:55.063 2025-03-29 22:39:51.182 \N ![](https://i.imgur.com/mlMRGGo.png) https://example.com/ 7667 433833 433833.434771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1066680040014 0 \N \N f 0 \N 0 82604637 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434777 2025-03-12 08:24:53.758 2025-03-29 22:39:51.182 \N 1. Yes, I use nostr as well. \n2. The web needs a "social layer", a protocol where a static website can be discussed among peers, that is, people who "follow" each other.\n3. Ideally, a website becomes a NOSTR posts. This way it's hosted anywhere and can be freely discussed just as a SN post can be discussed now. The domain name "stacker.news" can be a viewer/front-end for all the nostr posts that have the hashtag #SN. \n\nTo prevent flooding with shitcoin spammers, there could be a filter to only show NOSTR posts of those that made an account. That is, those who logged in via WebLN on stacker.news like it works today. https://example.com/ 9863 434774 433833.434774.434777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.67544042215091 0 \N \N f 0 \N 0 101608501 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443574 2025-03-19 12:22:05.241 2025-03-29 22:39:51.182 \N Right now I admit stacker.news mobile web is better than Bsats app. \n\nI only work on the app during weekend, cannot catch all the features @k00b added. \n\nSo I didn't promote the app very much...\n\nIn technical perspective, app should have better user experience than mobile browser. \n\nJust as you said, you paying with LN wallets on mobile. I am trying to add wallet feature on Bsats app, so people can spend their earned sats just like Phoenix Wallet.. https://example.com/ 7418 443572 443490.443572.443574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8109085476759 0 \N \N f 0 \N 0 34357684 0 f f \N \N \N \N 443490 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1246 2022-09-08 17:58:49.571 2025-03-29 22:39:51.183 \N Next up: NVK vs. Foundation https://example.com/ 20776 1226 1226.1246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0258765226457 0 \N \N f 0 \N 0 60136663 0 f f \N \N \N \N 1226 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434792 2025-03-12 08:43:59.048 2025-03-29 22:39:47.909 Send text and files securely and anonymously with end-to-end encryption \N https://privatebin.io/ 15239 \N 434792 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.33189609396234 0 \N \N f 144132161 \N 1 114067212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1501 2022-09-17 12:14:36.362 2025-03-29 22:39:51.182 \N I feel like Germany produces more Bitcoiners per capita than nearly anywhere. Any theories as to why? https://example.com/ 19527 1499 1499.1501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7637008113261 0 \N \N f 0 \N 0 157685667 0 f f \N \N \N \N 1499 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434794 2025-03-12 08:47:37.467 2025-03-29 22:39:51.182 \N 1. I've also noticed the worsening quality of services.\n2. I've had good experiences with a dental office, but that was in a different country. I can't say the same in my country.\n3. I think SN kicks ass as-is. https://example.com/ 5069 434789 434717.434789.434794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6676813738451 0 \N \N f 0 \N 0 222295341 0 f f \N \N \N \N 434717 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434823 2025-03-12 09:02:00.708 2025-03-29 22:39:51.183 \N The only people that seem to complain about seed phrases are the ones that understand them. I think they are perfectly fine, just write down the 12 words. There's no way to abstract out private keys without compromising security. Users will have to learn what they are and that is fine. If you told people in the 1950s all the things they'd have to learn to use the internet people would say that it'd never get mass adoption, but my mom has a password manager and knows how to change the wifi password. Once people have enough bitcoin, they will learn to secure it properly because they have to. https://example.com/ 17722 433738 433738.434823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7678450986858 0 \N \N f 0 \N 0 179191686 0 f f \N \N \N \N 433738 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434799 2025-03-12 08:49:44.935 2025-03-29 22:39:51.183 \N Drinking a beer at Pub Key. It's Happy Hour in my world. https://example.com/ 20220 434798 434795.434798.434799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4947861807769 0 \N \N f 0 \N 0 197907449 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434832 2025-03-12 09:10:31.98 2025-03-29 22:39:51.183 \N Day 176 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 11073 434810 434810.434832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.656513877195 0 \N \N f 0 \N 0 22077687 0 f f \N \N \N \N 434810 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434802 2025-03-12 08:50:22.954 2025-03-29 22:39:51.183 \N Another great thing that SN does is that it allows you to just browse the site without logging in.\n\nTwitter is such a horrible site to visit without an account, it just pops up and disrupts your reading, asking you to login. Even if you login with email, it later asks you for your phone number. It feels so creepy.\n\nStacker News is a breath of fresh air in this centralized web. https://example.com/ 15624 433913 433883.433913.434802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.78038605560806 0 \N \N f 200170199 \N 1 202697731 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434822 2025-03-12 09:01:55.261 2025-03-29 22:39:47.909 Traeger Grills Considering Accepting Bitcoin Payments Last week Traeger Grills released their annual report, and this was an interesting snippet:\n\n![Image 2024-03-14 at 1.43 PM.jpeg](https://m.stacker.news/20823)\n\nIt looks like we may have a new merchant accepting Bitcoin payments soon!\n\nIf you want to read their full annual report, it can be found [here](https://d18rn0p25nwr6d.cloudfront.net/CIK-0001857853/0cb57cea-f2a3-468b-9332-9d536357c2d9.pdf).\n\nIf you aren’t familiar with Traeger, this is their website: https://www.traeger.com/ \N 7746 \N 434822 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.5165650467598 0 \N \N f 76806600 \N 1 32743177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434826 2025-03-12 09:04:46.915 2025-03-29 22:39:51.183 \N Don't pay a premium for other peoples' hopes and dreams. Because that's what you're bidding against when you buy a house. https://example.com/ 1833 434810 434810.434826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.206846448351534 0 \N \N f 0 \N 0 89638651 0 f f \N \N \N \N 434810 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434815 2025-03-12 08:58:04.653 2025-03-29 22:39:51.183 \N I came across it independently somehow. I remember landing at the bitcoin wiki page early on and then getting onto the bitcointalk forums, the IRC channels and the bitcoin OTC web of trust. I remember donating to Wikileaks when they started getting financially blockaded and that was an "ah ha" moment for me. Silk road was amazing too, I got on Tor and perused it and remember thinking how cool it was. Never ordered anything though :D https://example.com/ 1010 314277 314108.314277.434815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4307978193683 0 \N \N f 0 \N 0 175201020 0 f f \N \N \N \N 314108 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434821 2025-03-12 09:01:36.412 2025-03-29 22:39:51.183 \N Attack 1. Bad guys maneuver themselves into key positions in LN and then suddenly turn off their nodes. Result: LN will experience problems for a short time until somebody opens new channels to fix the problem. Also it's not like maneuvering into key positions is an easy feat to accomplish.\n\nAttack 2: Bad guys open a $100 channel, pay $100 to their other node but then close the $100 channel pretending that they never paid the $100. Watchtowers must slash the bad guys. The point of the paper is that if the bad guys do this a lot and if the watchtowers are not ready to pay higher fees then some stupid watchtowers might fail to slash before the deadline. This raises 2 questions: \n- why is the window to slash is currently just 3 days? it should be about 2 weeks at least\n- why the watchtowers are not prepared to pay a higher fee if they're about to lose $100? https://example.com/ 629 434810 434810.434821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7181857977563 0 \N \N f 0 \N 0 158158825 0 f f \N \N \N \N 434810 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434825 2025-03-12 09:03:32.91 2025-03-29 22:39:51.183 \N Not only is it ok, it's a moral imperative. https://example.com/ 787 434796 434795.434796.434825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11327480591601 0 \N \N f 77112174 \N 1 69907720 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434836 2025-03-12 09:15:31.772 2025-03-29 22:39:47.909 Tornado Cash devs getting reamed by government \N https://twitter.com/provoost/status/1772946811629551717 20811 \N 434836 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.3957102536249 0 \N \N f 0 \N 0 209359590 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434833 2025-03-12 09:14:39.102 2025-03-29 22:39:51.183 \N Would be nice to start opening it up to extra-Bitcoin topics to attract a larger and wider user base. \n\nAs a start, how about...\n\n- Technology (general)\n- Business (or economics more generally)\n- Life Hacks\n- Art\n- Music\n- Books\n\nI know there will be pushback from the maximalists, but I see no reason why Stacker News needs to be focused solely on Bitcoin topics.\n\nLet me know if I'm wrong. 👷\n https://example.com/ 6471 434825 434795.434796.434825.434833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9698050147146 0 \N \N f 0 \N 0 77112174 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434834 2025-03-12 09:14:40.028 2025-03-29 22:39:51.183 \N There was rationing during WW1 and WW2 and the Great Depression. \n\nThere is a Supreme Court case, Fillburn: FDR sued a farmer for growing his own food (I forget which crop). His justification was that one farmer distorted crop prices https://example.com/ 10944 434477 434396.434477.434834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.89517015105399 0 \N \N f 0 \N 0 9939265 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434839 2025-03-12 09:16:26.029 2025-03-29 22:39:51.183 \N I know Darth is calling me a shitcoiner from SN heaven or hell, wherever he went, but I initially thought NFTs were an interesting idea and had potential until the primary use case was jpegs. \n https://example.com/ 20337 434465 434465.434839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4608418770059 0 \N \N f 0 \N 0 80287778 0 f f \N \N \N \N 434465 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434849 2025-03-12 09:29:11.896 2025-03-29 22:39:51.183 \N Calculating gains and losses when spending bitcoin is incredibly impractical, especially if spending Lightning, even more if spending from a non-custodial Lightning service. You would have to figure out the cost basis for the Bitcoin at the time you opened the channel, any difference in exchange price at the time of spending, and total this up for all your dozens or hundreds of little transactions. As you say, it's a bookkeeping burden none of us are prepared or equipped to manage, even with the most sophisticated software. The more people who say fuck it the better. https://example.com/ 19005 434810 434810.434849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.044038884741 0 \N \N f 0 \N 0 236305571 0 f f \N \N \N \N 434810 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434848 2025-03-12 09:27:12.798 2025-03-29 22:39:51.183 \N Another observation from my years working in software. Engineers are FAR more emotional than we'd like to admit. It can be quite comical sometimes. Guys it is ok. We are not robots. We have feelings. Sometimes these feelings get hurt. We get angry and do/say dumb things. Stay humble. Listen to criticism. Grow.\n\nBy the way. I continually have to work on this myself. Preaching to the choir. https://example.com/ 17722 434700 434319.434362.434700.434848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5096788677107 0 \N \N f 0 \N 0 15425998 0 f f \N \N \N \N 434319 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434860 2025-03-12 09:47:38.953 2025-03-29 22:39:47.91 Some little advice for new stackers on SN As you may know, I am quite old stacker here on SN and I've seen a lot during these years. For those new reading this post, [please read my SN bio first](https://stacker.news/DarthCoin).\n\nI would like to give some advice for all those new coming to SN. I saw quite many coming lately.\n\n### 1. To remember:\n- I always read almost all new bio and I pay attention to what they say. And it says a lot, especially being their first words here...\n- BEWARE SHITCOINERS! I am watching you! I truly despise any shitcoiner. But I am giving you only once chance to prove yourself. If you waste that chance, I will mark you as "shitcoiner"... FOREVER. I have no remorse for shitcoiners that ignore that chance.\n- Do not try to fool my "bullshit detector". Is very well trained.\n- Do not try to pretend being a bitcoiner, writing a "nice" bio about how devote you are to Bitcoin. During your time posting, I am testing you with trap questions that will reveal your true face... a shitcoiner.\n- Do not try to change your bio from a shitcoining text into a bitcoining text. I am making screenshots.\n- Do not try to change your alias nym. Your posting history will prove otherwise and I usually post specific comments on your posts, like trace to indicate me later who you really are.\n\n### 2. What you should do:\n- Once you arrive on SN, post a nice bio, no need to be a lot of text like mine or others. But at least show your true intentions on SN. Be careful what you write there. Be sincere and you get more credit from the start.\n- Update your bio as you whish with more data, but keep in mind all of the above.\n- Choose wisely your nym. The SN alias name it says a lot about you. No need to use your real life name. Your alias name (nym) should be something unique that represent you and your online personality (not necessary the real life personality).\n- Don't try to fool SN system with multiple sockpuppets accounts. Yes, sometimes, if you create a territory and want to operate with another separate nym, is OK and necessary, but not for vote manipulations and other brigading and assmilking techniques. My "bullshit detector" is well trained also for these and I take notes.\n- all the rest: post nice, useful posts, comments, links and you will get rewarded.\n- avoid totally to post links from shitcoin webs and talk about shitcoins. You will get instant karma.\n\nThat's all. If you decide to ignore my advice, that's on you...\n\n[![darth-advice.jpg](https://i.postimg.cc/c4fzycYQ/darth-advice.jpg)](https://postimg.cc/bsNg1kmJ)\n\n[![I-have-spoken.gif](https://i.postimg.cc/t7GjCWnS/I-have-spoken.gif)](https://postimg.cc/bSgMmGTk) \N 618 \N 434860 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 0.934100804650377 0 \N \N f 40106556 \N 1 150430435 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434853 2025-03-12 09:38:20.564 2025-03-29 22:39:51.183 \N I think in the short term the biggest obstacles are that of education. A lot of people don't understand the current monetary system, the problems with it, and why bitcoin is a better solution. \n\nIn the longer term I think there are lots of scalability issues that need to be figured out if non-custodial bitcoin for the entire world is a goal of the project. https://example.com/ 1480 434816 433978.434816.434853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1275975124486 0 \N \N f 0 \N 0 186993196 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434855 2025-03-12 09:42:11.91 2025-03-29 22:39:51.183 \N Thanks for sharing your observations. Livingroomofsatoshi is not an exchange but they do share their data and the last 30 days LN was 11% of their payments.\n\nhttps://www.livingroomofsatoshi.com/graphs https://example.com/ 21824 434542 434469.434542.434855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3099649478034 0 \N \N f 0 \N 0 179163346 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434858 2025-03-12 09:45:00.006 2025-03-29 22:39:51.183 \N It was an excellent presentation! I love the way that @k00b thinks about Stacker News reaching net energy and becoming alive. This is one of the best models for what a startup (or any entity/life form) is actually trying to achieve. \n\nAnd thank you for the kind words. I too think that Keyan is one of our era's great builders - not only in Bitcoin, but on all of the web. I'm always honored and excited to be part of the Stacker News journey. https://example.com/ 17157 434829 434795.434796.434804.434818.434829.434858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.31438291101048 0 \N \N f 0 \N 0 52300797 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434852 2025-03-12 09:36:41.346 2025-03-29 22:39:51.183 \N Very cool. I think I made a post of classic old Bitcoin videos around 2 years ago, and that was one of them. https://example.com/ 2437 434850 433828.434850.434852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9160746924638 0 \N \N f 284871336 \N 2 135576611 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434861 2025-03-12 09:47:39.624 2025-03-29 22:39:51.183 \N Are you really gonna make me do this?\n\nIts shitcoin slaying kind of day I suppose.\n\n>Every currency in human history has been totally private, so we have no other similar disaster scenario to even compare this to.\n\nFirst of all, every commodity based money, but Bitcoin is not commodity based money (obviously) neither is Monero. Bitcoin (The gold standard from which all shitcoins have forked) is ledger or account based money\n\nhttps://www.bbc.com/travel/article/20180502-the-tiny-island-with-human-sized-money\n\nIt would seem as though Bitcoin was inspired by F.A. Hayek's ideas:\n\n"That's why I'm now pleading, for what I've called 'Denationalization of Money.'\n\nWhile governments can stop people from issuing money, they can hardly stop them from opening accounts in something. After all, in the modern world, hand to hand money, coins, and paper, is no longer the most important. Credits and credit cards are substitutes.\n\nSo I think we can forget about existing money, and existing banks, and open a system of accounts which will displace money" --F.A. Hayek.\n\nA system of accounts. That's what Bitcoin is. Now we have coinjoin collaborative spend implementations which do a level of privacy and I think we could have serious discussions about making Bitcoin wallets default to a coinjoin.\n\n>The creator of Bitcoin really intended to create what Monero would later become. Bitcoin itself is incomplete.\n\nThe creator of Bitcoin also intended for Bitcoin to have a casino in Bitcoin core, which proved to be bloat. Satoshi was really just a guy who figured out how to combine hash cash with bittorrent to create a system of accounts. The fact that bulletproofs have not been implemented in Bitcoin is due to the necessity to audit the main chain:\n\nFor things like a value overflow incident: https://en.bitcoin.it/wiki/Value_overflow_incident\n\nTo detect chain splits:\nhttps://github.com/bitcoin/bips/blob/master/bip-0050.mediawiki\n\nWe want to achieve privacy, but we want to do it in the most sound and secure way possible\n\n>Bitcoin block size is limited to such a small size\nSo that the average person can run a node and no centralized entity (such as AWS) can shut it down\n>Bitcoin mining is increasingly centralized and requires extreme specialty ASIC hardware to compete.\nSo lets run through this. The government wants to shut down Bitcoin. They now have to compete with the open market's hardware custom built to outcompete any resources they could throw at it\n\nThe government wants to shut down Monero, they can now freely create a custom built computer specially designed to mine Monero and because the devs don't know about it, they have no knowledge about the necessity to fork it. A double spend occurs, and Monero does not have the auditability to detect it, and so the government decides that for a specific strategic mission where they need to delay or keep away forever some transaction, they just mine empty blocks forever and Monero will reward them for doing so, because transaction fees do not mean anything.\n\n>Monero has low transaction fees.\nBecause hardly anyone uses it\n https://example.com/ 17411 434860 434860.434861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6622626966885 0 \N \N f 0 \N 0 40106556 0 f f \N \N \N \N 434860 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434876 2025-03-12 10:03:02.911 2025-03-29 22:39:51.183 \N I was overwhelmed with the amount of love from the community, especially how many that wanted to become community sponsor. Also how people tell me they use Mempool space as education material in school, or how they watch the website moving for hours just like sitting around a camp fire. https://example.com/ 8945 434822 434822.434876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7953361404521 0 \N \N f 0 \N 0 76806600 0 f f \N \N \N \N 434822 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434880 2025-03-12 10:05:56.288 2025-03-29 22:39:51.183 \N Nostr crossed 1000 users just over a month ago, now it's heading to 1 million\n\nThat is hard given the project is grass roots without funding\n\nI dont think of it as decentralized like bitcoin. I think of it more like RAID with websockets. If one relay goes down you (hopefully) have a few more so that you dont lose your account and you are not disrupted\n\nIt's an experiment built on taproot and schnorr. That unlocks a certain amount of creativity that fills a gap in the bitcoin eco system\n\nScaling it will be a challenge, but maybe not impossible, we'll have to see where we are in a year\n\nI think bitcoin will benefit from a social layer. And nostr is one candidate to do that. If people want it enough, it has a chance. \n\nRegarding the hard work of scaling, we need that. I personally think your idea around single-use seals could add a great deal to the existing digital signature infrastructure by anchoring commitments to a time chain, or even check pointing\n\nCouple that with a reputation and trust system that is getting built out, and you have a number of models for contracts and incentives that could create a rich eco system. Time will tell. We are early! https://example.com/ 11164 432966 432884.432966.434880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.512967587309 0 \N \N f 0 \N 0 71099227 0 f f \N \N \N \N 432884 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434886 2025-03-12 10:11:33.97 2025-03-29 22:39:51.183 \N Tiny amounts are IOU's so if it worked before for 300 sats that's why. Otherwise every transaction is two on chain transactions. It is not lightning. https://example.com/ 21303 434675 434317.434675.434886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7512574908934 0 \N \N f 615565300 \N 3 6686356 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434869 2025-03-12 09:52:13.466 2025-03-29 22:39:51.183 \N People who own private airplanes are perfectly allowed to let their friends travel on them without kyc\n\nSomeone should use that fact to start a no kyc airline https://example.com/ 683 434866 434795.434797.434866.434869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0786738934032982 0 \N \N f 398119439 \N 4 107837207 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434875 2025-03-12 10:01:24.698 2025-03-29 22:39:51.183 \N This week I'm relaxing. I got my LNBits working and I finally got a few friends and family set up on Lightning with me being the custodian. So I'll get myself some rest and enjoy sending invoices back and forth with them for a bit :). https://example.com/ 6030 434865 434865.434875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0949305015193 0 \N \N f 239506447 \N 1 188355669 0 f f \N \N \N \N 434865 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 377795 2025-01-23 10:31:59.25 2025-03-29 22:39:47.91 Finding out what privacy problems my car may have? Is there a database or website out their where I can put in my car year, make, and model and see what privacy intrusions my be there? \N 2367 \N 377795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2538607967636 0 \N \N f 0 \N 0 30717368 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434893 2025-03-12 10:16:36.37 2025-03-29 22:39:51.183 \N 40k sat reward for me. Not bad, especially when I've not been very active this month. Less dopamine for "tipping top content early" which is usually what I get more rewards for previously. Divided out by 30 days, it's about what I would make on a normal good day with rewards alone, but I definitely didn't get that much every day so net positive for sure. \n\nOne stat that would be interesting, even if you had less signups, did you have more new user retention for the month? I would suspect that was down too, given there was less daily rewards. https://example.com/ 13854 434868 434642.434643.434868.434893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5260484846015 0 \N \N f 0 \N 0 215910689 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435050 2025-03-12 12:33:34.082 2025-03-29 22:39:51.183 \N Very, very rarely. Never for a dumb post. I save it for the assholes who beg for it. https://example.com/ 21131 435042 434791.434978.435042.435050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5548094021924 0 \N \N f 0 \N 0 96085192 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434894 2025-03-12 10:16:39.234 2025-03-29 22:39:51.183 \N Seems like a nice scaling solution that provides different custody methods/tradeoffs while improving lightning ux. Eric Yates was on tftc recently, he was talking how he see's the lightning/fedi/cashu space playing out, i'd definitely recommend the listen. https://example.com/ 4487 434879 434795.434797.434866.434869.434879.434894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.75693393481364 0 \N \N f 251590429 \N 2 40355223 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434889 2025-03-12 10:12:54.139 2025-03-29 22:39:51.183 \N This is funny. kr and I were discussing SN's rewards this morning and I asked in one of brainstorming debates:\n\n> What if Canada collected 100% tax on all transactions in its economy, determining what all citizens should be paid, and sending them a paycheck every hour?\n>\n> I think most people would prefer to be self-employed. Our economies are terrible at enabling it though. https://example.com/ 19806 434886 434317.434675.434886.434889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0818922458967 0 \N \N f 425297093 \N 2 190268207 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434900 2025-03-12 10:20:35.945 2025-03-29 22:39:51.183 \N "There is no reason in the world why you would not use some other blockchains or cryptos as well". \n\nI am a normal human being, work hard, take care of my family, own a home, own some stocks, save in bitcoin. Why in the world do I need to use some other blockchains or cryptos? \n\nThis is the crux of the problem, the feature set of ethereum and other chains is not really needed by the vast majority of people. Sure if you are a trader, speculator, technologist, or arbitrager, you might have some use case but most of the world doesn't need it. \n\nThe best argument I can see for Ethereum or other chains to have any sort of future is the movement of stablecoins. I mean, I guess being the rails for future CBDCs could be a pretty huge TAM, but I thought escaping the corrupted system not embracing the corrupted system was the ethos. https://example.com/ 12291 434852 433828.434850.434852.434900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.05583717167747 0 \N \N f 61166752 \N 1 223704584 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434911 2025-03-12 10:34:04.62 2025-03-29 22:39:47.91 How fiat will kill itself I currently live in the UK. We have tax-advantaged pension accounts here called SIPPs, which are similar to 401k's in the US.\n\nWith the rising prices we also have a cost of living crisis, with many people struggling to pay their bills, eating poorly, living in unheated homes, getting evicted for rent arrears etc. I've heard rumours that the government may consider the possibility of letting people borrow money against their SIPPs to help them make ends meet. Something like 15% LTV, and presumably at a favourable interest rate, sponsored by money printing (because what else?)\n\nWe don't have access to bitcoin ETFs, but people can gain exposure to BTC through their SIPP e.g. by buying MSTR. (custodianship implications aside...)\n\nImagine this scenario:\nYou have £100k in a SIPP. The government passes a bill like the above and now you can borrow £15k.\nYou borrow and immediately buy BTC with it. Now you have more exposure to BTC - not only via MSTR in your pension, but also the newly bought BTC. It's effectively a fiat short, and a leveraged long BTC position. Sponsored by the government and its money printing, which only contributes to you being on the right side of the trade, because it devalues the fiat you've just shorted.\n\nAnd the government did it to "help the poor", of course. But the poor either don't have pensions or willl spend the borrowed money on consumption and struggle to pay it off, so the government will have to step in again... In the meantime, the wealthy get wealthier, courtesy of the government and fiat. Fiat shorting to be precise - because in the mind of a wealthy and smart person, shorting is fiat's only use case.\n\nFor the wealthy person, the value of the borrowed fiat drops, making it easier to pay off, while at the same time making their bitcoin-exposed pension go up, so they can now borrow more. Rinse and repeat.\nMortgage strategy 2.0, with bitcoin and bitcoin-backed equity instead of real estate.\n\nIncidentally this is also exactly Michael Saylor's strategy with his common stock, which will be adopted by more and more companies.\n\nGoing back to the government, this is just one way in which the system can accelerate its demise. Another way to "help the poor" with the fiat-induced cost-of-living crisis would be UBI. The poor get cash for food and shelter, the wealthy sovereign individuals get cash to buy BTC...\n\nI just hope those poor benefit at least indirectly from the world moving onto a Bitcoin standard. \N 15544 \N 434911 \N \N \N \N \N \N \N \N news \N ACTIVE \N 11.0185999195394 0 \N \N f 0 \N 0 92083493 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434901 2025-03-12 10:20:50.458 2025-03-29 22:39:51.183 \N Dat's a good bio.\n\nQuite surprised you hadn't written one before.\n\nNot surprised at the quality though. https://example.com/ 15213 434891 434317.434675.434886.434889.434891.434901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8925118310569 0 \N \N f 0 \N 0 190719813 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434904 2025-03-12 10:27:51.461 2025-03-29 22:39:51.183 \N Still getting scam emails and phone calls after their database was hacked, and they haven’t even bothered doing anything to prevent it from happening again. Not buying from them again. Trezor claims they delete personal data 90 days after an order; they could do the same.\n\nThey also accept bitcoin/crypto only via BitPay so, since they are based in Europe, maybe they require KYC now (I haven’t confirmed this).\n\nPlus, it being closed source and their ties with the French government. https://example.com/ 5825 434658 433889.434330.434401.434658.434904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.12378954239424 0 \N \N f 0 \N 0 195001729 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435027 2025-03-12 12:10:32.676 2025-03-29 22:39:51.183 \N Not outdoor, but was an active day, especially for kids...\nSwimming lessons for both, because they have to much energy :)\nSwimming is a weekly activity for both of them\n\n\n\n![111.png](https://m.stacker.news/14782)\n\n\n![222.png](https://m.stacker.news/14783)\n\nP.S. Sorry for the poor quality of pictures, I cutted it from a video https://example.com/ 9969 435017 435017.435027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6787512515186 0 \N \N f 0 \N 0 129877571 0 f f \N \N \N \N 435017 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434906 2025-03-12 10:29:03.082 2025-03-29 22:39:51.183 \N Bitcoiners are necessarily freedom maximalists. And that especially includes freedom of speech. https://example.com/ 964 434737 433555.433772.434737.434906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6405826654359 0 \N \N f 0 \N 0 40524004 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451155 2025-03-24 12:21:25.228 2025-03-29 22:39:51.183 \N Coldcard is amazing because they go to great lengths to cover every possible avenue of attack they can think of. From tampering during shipping, to trick-pins in case there's a gun to your head. \n\nThe most important thing is, the company behind the ColdCard is Bitcoin ONLY! Unlike Ledger and most other hardware wallet companies. I refuse to do business with any company that perpetuates the notion that all crypto is equal. They are doing a disservice to the public. The public doesn't care to learn about what makes Bitcoin different, so it's up to principled individuals and companies to help show them!\n\nSupport Bitcoin-ONLY companies! https://example.com/ 21356 451106 450805.451044.451106.451155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6488060148101 0 \N \N f 724837508 \N 4 135067774 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434914 2025-03-12 10:37:47.281 2025-03-29 22:39:51.184 \N I've heard from reliable sources that you were an absolute madman when teaching yourself to code. Suggesting, to me at least, that it was calling you.\n\nWhat kept you from programming for so long? Do you think you'd have eventually found programming if it wasn't for bitcoin?\n\n https://example.com/ 2961 434900 433828.434850.434852.434900.434914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6654122737715 0 \N \N f 0 \N 0 61166752 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434928 2025-03-12 10:47:39.296 2025-03-29 22:39:47.91 Started a new territory. Garages are cool. Although I grew up watching the internet grow up, I never really explored and experienced forums. Hoping to change that.\n\nI like what stacker.news is building. I want to contribute.\n\nGarages are awesome. Some are polished and show room worthy. Others, like mine, are equal parts storage and work shop that couldn't fit a Honda civic through the opening without some demolition. There will hopefully be some demolition someday.\n\nAnyway, I thought this could be a cool territory to build out. I currently work as a residential garage door technician, fixing and installing residential garage doors and garage door openers. If you have questions for me, post a discussion and I will answer as best as I am able to.\n\nBut that was not the whole point of creating this territory. If you have a cool garage, or something cool you are working on in your garage, feel free to share it with us here.\n\nYou can share pics of garages you've seen, this can give others ideas and inspiration for their garages.\n\nI've never built an online community, but I will try my best. I like bitcoin because rules, not rulers is how I have lived most of my life before btc. Rules and principles are similar.\n\nI selected the moderated tab only to be a check against scammers and spammers. Hopefully setting the post fee at 21 sats is a fair and honest way of supporting this goal. I will not want to be a ruler.\n\nI think that's enough for now. I got some fun ideas for some first posts to share, but they probably wont be ready until this weekend.\n\nI just farted. \N 19905 \N 434928 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.4608004870887 0 \N \N f 30319933 \N 1 248732850 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434918 2025-03-12 10:39:14.457 2025-03-29 22:39:47.911 @grayruby got me to join SN from NOSTR NFL Survivor Pool! FIRST POST!\n\nI've known about Stacker News I think for two years now (Class '21), and I've seen my friend @NEEDcreations promote it and the polls he does on here, but for whatever reason it was my competition against @grayruby for our Survivor Pool championship that got me to sign up! I guess I was jealous I missed the boat to join his SN survivor pool, but grateful to connect w/ him on not twitter, but NOSTR! @davidt thanks for starting the NOSTR pool! \N 13767 \N 434918 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 17.3371717035235 0 \N \N f 0 \N 0 223967833 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435085 2025-03-12 13:01:11.902 2025-03-29 22:39:51.183 \N I share many of your concerns.\n\nBut I'm not losing my faith. And I encourage you to not either. The war is not won, and winning depends on our stubbornness. It is up to us to face the challenge and make things happen. https://example.com/ 20781 435062 435062.435085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3009046870082 0 \N \N f 0 \N 0 67399550 0 f f \N \N \N \N 435062 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434929 2025-03-12 10:47:39.712 2025-03-29 22:39:51.183 \N “you should never be shy about telling anyone that something they created means something to you” quote i saw somewhere \n\nthanks for making stacker news @k00b https://example.com/ 13216 434928 434928.434929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.52960221615737 0 \N \N f 0 \N 0 30319933 0 f f \N \N \N \N 434928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1593 2022-09-19 21:47:09.385 2025-03-29 22:39:51.183 \N Hey @k00b, I’m receiving this:\n\n![](https://m.stacker.news/59970)\n\nwhen I click on the notification button on chrome. Is that belated to SN or there’s a problem with the browser? https://example.com/ 20776 1588 1588.1593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1074982429175 0 \N \N f 0 \N 0 178433384 0 f f \N \N \N \N 1588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434932 2025-03-12 10:51:05.44 2025-03-29 22:39:51.183 \N Incremental privacy improvement for SN withdrawal invoices https://example.com/ 21238 434916 434916.434932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7697490490344 0 \N \N f 318362679 \N 3 221698832 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450521 2025-03-24 02:35:19.208 2025-03-29 22:39:47.911 Protecting Your Bitcoin Lightning Network Node \N https://lightningnetwork.plus/posts/382 2329 \N 450521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4333891772849 0 \N \N f 0 \N 0 90891721 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434935 2025-03-12 10:53:20.716 2025-03-29 22:39:51.183 \N As usual, the values of Web5 are incredibly compelling:\n> Existence. Users must have an independent existence.\nControl. Users must control their identities.\nAccess. Users must have access to their own data.\nTransparency. Systems and algorithms must be transparent.\nPersistence. Identities must be long-lived.\nPortability. Information and services about identity must be transportable.\nInteroperability. Identities should be as widely usable as possible.\nConsent. Users must agree to the use of their identity.\nMinimalization. Disclosure of claims must be minimized.\nProtection. The rights of users must be protected.\n\nBut the standards list is long enough to be discouraging: https://developer.tbd.website/blog/ssi-tbd-web5/#standards-in-use\n\nThe developer experience for this ecosystem atm appears worse than Bitcoin's. It's not much of a surprise considering the "values" of web5 don't explicitly or implicitly consider the developer. \n\nPerhaps it'll just take time but people are building on nostr today, because the developer experience is amazing. I can describe nostr in sentence: sign messages with schnorr and send them to a relay for storage. The complexity necessary for the SSI values can be built on top of that as needed. https://example.com/ 11527 434751 434751.434935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.87628643827455 0 \N \N f 0 \N 0 57192081 0 f f \N \N \N \N 434751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434937 2025-03-12 10:54:30.668 2025-03-29 22:39:51.183 \N My condolences, sir. Some sats for your loss- I have now moved up to #7 on the leaderboard 😜 \n https://example.com/ 14278 434931 434931.434937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1741231697218 0 \N \N f 0 \N 0 210483504 0 f f \N \N \N \N 434931 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451229 2025-03-24 13:04:59.613 2025-03-29 22:39:51.184 \N I don't believe the actions of these exchanges would be acceptable in a libertarian society either. Fraud and breach of contract by front running, wash trading and pump and dump schemes are acts of aggression brought against innocent people. https://example.com/ 21427 450576 450470.450576.451229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2264234653625 0 \N \N f 247819026 \N 2 122236555 0 f f \N \N \N \N 450470 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434968 2025-03-12 11:23:16.783 2025-03-29 22:39:51.184 \N https://imgprxy.stacker.news/aNKuD5B0HaUbd1MPd03t6BsX0IzROlscg9IxbzCqdK4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYS5saWNkbi5jb20vZG1zL2ltYWdlL0Q0RTIyQVFINkk4Wm5KMThYb2cvZmVlZHNoYXJlLXNocmlua18yMDQ4XzE1MzYvMC8xNjkwODgyNzY5NzM5P2U9MTY5NDA0NDgwMCZ2PWJldGEmdD1jTXVSWDVDVlBoRE9GVW1rQmxRUUtybHFMdWhTTFJlMG1mQ2N4ZG1QX1RF https://example.com/ 7097 434305 433828.434031.434091.434226.434237.434287.434305.434968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7034234999785 0 \N \N f 229306291 \N 1 49318575 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434945 2025-03-12 11:06:14.469 2025-03-29 22:39:51.184 \N A lot of SSDs have 3-5 year warranties, you might want to look at using it, although they might say your warranty is void if you ran a bitcoin node on it. I'd be curious to see what happens if you try to use the warranty though. https://example.com/ 712 434788 434685.434788.434945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.75643799782 0 \N \N f 0 \N 0 68324986 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434943 2025-03-12 11:01:10.25 2025-03-29 22:39:51.184 \N https://www.proofofink.com/ For those who want a clickable link https://example.com/ 16357 434790 434685.434790.434943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.44311683043416 0 \N \N f 0 \N 0 45023717 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434946 2025-03-12 11:06:36.998 2025-03-29 22:39:51.184 \N Howdy just hit my first double digit cowboy hat streak 🤠! https://example.com/ 21540 434790 434685.434790.434946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8672644734037 0 \N \N f 0 \N 0 129175165 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434948 2025-03-12 11:08:20.137 2025-03-29 22:39:51.184 \N I would recommend to all noobs to read and pay attention to this guide I wrote long time ago:\n\n[₿itcoin - Be your own bank, think like a bank](https://darthcoin.substack.com/p/bitcoin-be-your-own-bank-think-like)\n\nThinking like a bank is a very important aspect of how you organize your stash and I explain it in steps in that guide and many others.\n\n>Does it make you nervous knowing that you are responsible for your wealth?\n\nBitcoin comes with a great self-responsibility. You fuck up = you pay. It's your OWN fault because you did not educate yourself.\n\nWe all want to be sovereign but being sovereign imply to be responsible for your own actions.\nAnd this is the point where many normies fail: they do not want to be responsible. And that's why they will get what they fucking deserve - SLAVERY.\n\n[![darth-freedom.jpg](https://i.postimg.cc/cLvhR9RZ/darth-freedom.jpg)](https://postimg.cc/w1dDHk4b) https://example.com/ 13544 434784 434535.434784.434948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.858646690543 0 \N \N f 0 \N 0 5762742 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434944 2025-03-12 11:04:06.3 2025-03-29 22:39:51.184 \N Attach wallets screen looks CLEAN. \n\nNice job @ek https://example.com/ 2757 434932 434916.434932.434944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9043707348162 0 \N \N f 103889810 \N 2 214472869 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434973 2025-03-12 11:28:52.849 2025-03-29 22:39:47.911 Have I mentioned this? We need pinned posts for territories. \N 21208 \N 434973 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 9.59599963930291 0 \N \N f 0 \N 0 21579461 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434961 2025-03-12 11:18:35.76 2025-03-29 22:39:51.184 \N @wefofficial says writers and I can't disagree. https://example.com/ 5694 434934 434934.434961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7709726197786 0 \N \N f 0 \N 0 69634743 0 f f \N \N \N \N 434934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434967 2025-03-12 11:22:52.781 2025-03-29 22:39:51.184 \N In the U.S., happy Independence Day. \n\nIt makes me wonder, "What's the thing that Bitcoin needs to be break away from, to be independent from?" https://example.com/ 21334 434795 434795.434967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.929436729747 0 \N \N f 0 \N 0 137513004 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435047 2025-03-12 12:29:11.484 2025-03-29 22:39:51.184 \N This topic bums me out, because the kneejerk reaction to a firehouse of quasi-information is reverting to a model of "trusted sources." Which usually means: sources which other people seem to trust.\n\nThe information nodes become centralized, DYOR becomes a potential hazard, and the climb is steep for fresh contributors to gain enough clout to break through the filter.\n\nIt at least *feels* easy to spot llm content now, so most people aren't retreating into closed circles just yet - but it seems like the direction we're headed.\n\nI wonder if llm's could produce content that doesn't have those "crucially wrong" bits, how comfortable would people be knowingly consuming it then? Is it truly the potential errors, presented with certainty, that creep people out? Or something deeper?\n\nHumans are still the most abundant and confident source of "mostly right, but crucially wrong" information. So to me, llm's have just further surfaced some of the challenges which arise when everyone has a printing press and distribution. \n\nI don't see the dust settling on this issue in my lifetime.\n https://example.com/ 9992 435045 434440.435022.435045.435047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.37815764053334 0 \N \N f 0 \N 0 46062900 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435048 2025-03-12 12:32:37.525 2025-03-29 22:39:51.184 \N For the sake of discussion I will offer up a different perspective.\n\nTLDR: Not every thing needs someone's comments. \n\nIn this macro environment where people want/judge a how successful a post is by the level of engagement (click, likes, reaffirming comments). Stacker News offers us another way, Sats. If it provides value it will likely get rewarded with some Sats (I know I am Captain Obvious with this statement)\n\nSome links are just a heads up about a news event. Good recent Example: https://stacker.news/items/258136 \n\nI Just wanted to add my comment to "spur on great conversation" https://example.com/ 20892 434498 434498.435048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1329019300553 0 \N \N f 0 \N 0 81068103 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434977 2025-03-12 11:32:52.443 2025-03-29 22:39:47.912 What's the most underrated life skill? \n \N 1567 \N 434977 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 26.2356458058857 0 \N \N f 0 \N 0 48768433 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434979 2025-03-12 11:33:24.278 2025-03-29 22:39:51.184 \N I finished yesterday to setup a lightning node with lnd, so i'll probably play with lightning payment this week, starting with this newly funded account on stacker.news ! https://example.com/ 11516 392677 392486.392677.434979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.95287961911208 0 \N \N f 0 \N 0 219822507 0 f f \N \N \N \N 392486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434984 2025-03-12 11:40:57.105 2025-03-29 22:39:51.184 \N I want SN to stick around, so by association, I want this change. https://example.com/ 15115 434795 434795.434984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.465447084047952 0 \N \N f 0 \N 0 105974416 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434981 2025-03-12 11:34:01.205 2025-03-29 22:39:51.184 \N They don't know about Nostr and SN. They know about bluesky because it was an adjacent project to twitter. \n\nMaybe bluesky is a good place to market nostr and SN though as these new users are more likely to try other things as well until they find what they like and it becomes habit forming and very difficult to break them away. https://example.com/ 20849 434278 434278.434981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1731798014024 0 \N \N f 0 \N 0 64391375 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434985 2025-03-12 11:41:38.674 2025-03-29 22:39:51.184 \N > Basically the article says that the Bitcoin blockchain won’t scale for the entire world population to use it. It will so much not scale that even “offchain” solutions like Lightning and Ark will not scale and they basically lose usefulness as more adoption happens and fees rise.\n\nA thing I haven't seen much discussed but that seems important: fragmentation of the utxo set when there are 100x more users. Utreexo is one way of approaching this, but I'd be interested to be pointed to discussions on the topic, especially ones that do computational modeling / simulations. \n\nImagining high on-chain fees + utxo fragmentation into quasi-dust is scary. https://example.com/ 13753 434720 434498.434720.434985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1622648233732 0 \N \N f 0 \N 0 103871301 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435041 2025-03-12 12:23:23.893 2025-03-29 22:39:51.184 \N I don't reply to every comment on my posts but I zap them all (even if it is just 10 sats) and reply to most of them. Unless they are clearly a bot or excessively stupid. https://example.com/ 624 434795 434795.435041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.65922362116896 0 \N \N f 0 \N 0 179934947 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 434993 2025-03-12 11:47:40.209 2025-03-29 22:39:51.184 \N lol yeah not being able to relax and putting too much importance on yourself is pretty silly. I think most of the people at the meetup I go to aren't technical either. \n\nIf however, your main complaint is actually that you want people to talk to you, it might actually be about the fact that you're introverted. People don't want to bother people who don't want to be bothered. You might be putting off body language that tells everyone around you to leave you alone, unknowingly. \n\nIt might go a long way to try to be the one to strike up a conversation, rather than waiting for others to strike a conversation with you. https://example.com/ 8544 434992 434992.434993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3635046347922 0 \N \N f 0 \N 0 172239839 0 f f \N \N \N \N 434992 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435008 2025-03-12 11:55:42.868 2025-03-29 22:39:51.184 \N When will we be able to send splits to lightning addresses? https://example.com/ 20781 434968 433828.434031.434091.434226.434237.434287.434305.434968.435008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.43503415363487 0 \N \N f 0 \N 0 229306291 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435049 2025-03-12 12:32:48.149 2025-03-29 22:39:51.184 \N I post LF content on here & they are always my most popular posts + receive the most comments saying content was super informative or useful, or just saying thanks and they learned something new.\n\nLF content can definitely look weird on SN if not done correctly. The key is breaking up the content into smaller chunks and adding in images and different text formats (i.e. larger titles, quotes, etc).\n\nBelow is my most recent LF post, which you can see is broken down into easier bite-sized chunks of info. Additionally, at the top of the article, I always first put the estimated read time. \n\nhttps://stacker.news/items/185240\n\nOverall, IMO the benefits of LF content are:\n\n**- Richer and in-depth information**\n**- Enhanced discussion quality**\n**- Encourages diverse content creation**\n**- Promotion of expertise and thought leadership**\n\nSome kind of long form pinned article sub?\n\n**Yep.**\n\nIndividual blogs where members can post and collect their own prior posts?\n\n**Good - it would give writers a stronger sense of identity and ownership over their contributions.**\n\nSome sort of a signature footer for message replies, like a canned email signature response, where a few prior posts are linked?\n\n**50/50 on this. Could be valuable, but would need to be implemented correctly - to avoid appearing cluttered or from the feature being misused for spamming.** https://example.com/ 18923 435030 435030.435049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8268171479546 0 \N \N f 0 \N 0 5029715 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435106 2025-03-12 13:17:00.08 2025-03-29 22:39:51.184 \N So, what's your favorite programming language? https://example.com/ 21021 435017 435017.435106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6130416632252 0 \N \N f 127123245 \N 1 19510015 0 f f \N \N \N \N 435017 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434998 2025-03-12 11:51:57.636 2025-03-29 22:39:51.184 \N Nope, none of that extra stuff is needed,.. straight LUD-03 which you have already is fine. \n\nThe balance you see in my screenshot comes from the maxWithdrawable tag in the response, literally the only thing in the way is the timeout of the `k1`. Fixing this obviates your AUTO-WITHDRAW efforts with the existing neutral spec.\n\nConversely, LUD-19 could be used for "AUTO-FUND" too if desired, but that's redundant to the user just adding their "stackerwallet" lightning address as a source https://example.com/ 1959 434944 434916.434932.434944.434998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.28695775637163 0 \N \N f 35985756 \N 1 67904054 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435017 2025-03-12 12:03:48.323 2025-03-29 22:39:47.912 The Truth about Bank Privacy From Naomi Brockwell\n\n# Video Description\nFinancial privacy has practically vanished over the last 50 years. Most people are in denial about it, and still believe that their relationship with their bank or their credit union is confidential -- the reality couldn’t be further from that.\n\nIn this video we walk you through the history of how financial privacy slowly disappeared, and how we built a gargantuan financial surveillance system that no one really understands the extent of.\n\n\n00:00\n Financial Privacy is an Illusion\n\n02:14\n Pre-1970\n\n03:23\n Bank Secrecy Act\n\n08:02\n Annunzio-Wylie AML Act\n\n10:38\n Patriot Act\n\n12:51\n $600 Rule\n\n16:17\n The Future Ahead\n\n18:24\n Is This the World We Want?\n\nWe have slowly built a gargantuan system of unchecked financial surveillance, and it’s time to question whether this is the world we want to live in. The first step is just making people aware of how far financial surveillance norms have shifted in just a few decades. https://odysee.com/@NaomiBrockwell:4/Financial-surveillance:e?r=8T2xqWjtafHWYGxQBSsrbw1wQPm7sWRq 16214 \N 435017 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.2180115794587 0 \N \N f 493878764 \N 4 215365934 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 435011 2025-03-12 11:58:37.95 2025-03-29 22:39:51.184 \N Regret the gradual approach I've been taking to building my stack. https://example.com/ 12561 434814 434814.435011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.70758210421293 0 \N \N f 0 \N 0 59314676 0 f f \N \N \N \N 434814 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435015 2025-03-12 12:01:38.338 2025-03-29 22:39:51.184 \N It should be in the FAQ. The colors follow the rainbow. Each power of 10 of sats moves you to the next color. https://example.com/ 20198 434720 434498.434720.435015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.93927147737752 0 \N \N f 0 \N 0 158772714 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435016 2025-03-12 12:01:43.84 2025-03-29 22:39:51.184 \N There's layout issues on mobile so I was going to announce it just yet. But let it rip why not. \n\nWe also added subscribing to other people's threads and a few other things.\n\nI'll do a proper release announcement by end of day. https://example.com/ 18772 434521 434278.434358.434521.435016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3870548204777 0 \N \N f 0 \N 0 191300137 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435107 2025-03-12 13:18:17.123 2025-03-29 22:39:51.184 \N [![lightning-privacy-research.jpg](https://i.postimg.cc/CL435Jn2/lightning-privacy-research.jpg)](https://postimg.cc/VddGHqR9) https://example.com/ 1051 435102 435073.435078.435087.435102.435107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.74396026766424 0 \N \N f 0 \N 0 160160766 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435194 2025-03-12 14:18:26.613 2025-03-29 22:39:51.184 \N Given how critical I am of the American education system, people are often surprised to learn that I think teachers need to be paid more.\n\n"Why would you pay them more when they're doing such a bad job?"\n\nTo which I reply, "You get what you pay for."\n\n https://example.com/ 12911 435179 434795.434798.435179.435194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.463932464029106 0 \N \N f 674033997 \N 8 37258156 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 213902 2024-08-12 17:05:09.714 2025-03-29 22:39:47.913 New chip flaw hits Apple Silicon and steals cryptographic keys from system cache This vulnerability is stupendously serious, affecting most encryption algorithms including those hardened against quantum computers. https://www.tomshardware.com/pc-components/cpus/new-chip-flaw-hits-apple-silicon-and-steals-cryptographic-keys-from-system-cache-gofetch-vulnerability-attacks-apple-m1-m2-m3-processors-cant-be-fixed-in-hardware 759 \N 213902 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.7133888755102 0 \N \N f 0 \N 0 62051107 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435039 2025-03-12 12:20:16.569 2025-03-29 22:39:51.184 \N Firstly, make sure you read this great approachable free book titled ['The Great Taking'](https://thegreattaking.com/) by David Webb. It is just 97 pages long.\n\nDavid highlights a lot of things that we know already about our tainted system, but with a different lens and end-game to what many Bitcoiners expect...\n\n \n-------\n\n## 📖 What is this book about?\n- It is about the taking of collateral, all of it, the end game of this globally synchronous debt accumulation super cycle. This is being executed by long-planned, intelligent design, the audacity and scope of which is difficult for the mind to encompass.\n- Included are all financial assets, all money on deposit at banks, all stocks and bonds, and hence, all underlying property of all public corporations, including all inventories, plant and equipment, land, mineral deposits, inventions and intellectual property.\n- Privately owned personal and real property financed with any amount of debt will be similarly taken, as will the assets of privately owned businesses, which have been financed with debt. If even partially successful, this will be the greatest conquest and subjugation in world history.\n- There are now no property rights to securities held in book-entry form in any jurisdiction, globally. In the grand scheme to confiscate all collateral, dematerialization of securities was the essential first step.\n- Essentially all securities “owned” by the public in custodial accounts, pension plans and investment funds are now encumbered as collateral underpinning the derivatives complex, which is so large—an order of magnitude greater than the entire global economy—that there is not enough of anything in the world to back it.\n- Legal certainty has been established that the collateral can be taken immediately and without judicial review, by entities described in court documents as “the protected class.” Even sophisticated profes- sional investors, who were assured that their securities are “segregated”, will not be protected.\n- The planning and efforts began over half a century ago. That there was some great strategic purpose behind dematerialization is evidenced by the fact that the CIA was assigned the mission.\n- We are now living within a hybrid war conducted almost entirely by deception, and thus designed to achieve war aims with little energy input. It is a war of conquest directed not against other nation states but against all of humanity.\n\n## ❓Who are they?\n- George Soros said to me, “You don’t know what they can do,” it was these people to whom he referred. Now, to be absolutely clear, it is these very few people, who are hidden from you, who are behind this war against humanity. You may never know who they are. The people you are allowed to see are hired “face men” and “face women.” They are expendable.\n\n\n## 🔽 Deflation\n- Consider that in the period from the 1920s into the 1950’s (more than three decades), there was little recovery in price level. Think of the absolutely massive demand drivers present through those decades:\n 1. electrification and all it enabled (e.g., refrigeration, appliances of all kinds, industrial machinery); \n2. the automobile and the associated build-out of the highway system and suburbanization; \n3. telecommunications (telephone, radio, television); \n4. air travel; \n5. a global war, followed by the Korean War and Cold War arms race; \n6. population growth. 
\n\n## 📆 Today\n- No such drivers of demand are present now. It is quite the opposite. Artificial Intelligence (AI) and robotics are inherently deflationary. We are told that people are not needed. Perhaps that is a tad deflationary. \n- The “inflation” we are now seeing is not due to strength in the global economy. The underlying intractable problem of our time is not inflation but deflation. The “inflation” is illusory; it is created by massive devaluation of money and artificial scarcity (consider the implications of the Nordstream sabotage).\n- Some take comfort in saying that the Fed will lower rates again when they are forced to do so. Have you noticed that they are not lowering rates despite the first bank failures.\n- The Fed is sharply increasing rates into economic weakness, and a banking crisis. This is exactly what was done in the Great Depression. And they are doing this with the bizarre and cruel justification of fighting wage growth!\n- When the “Everything Bubble” is imploded, we will face a deflationary depression, which will span many years, even decades. This coming Great Deflation is intrinsic to the Great Taking.\n- As in the Great Depression, prolonged deflation will assure that people who are in debt will not be able to make payments on their debts, let alone repay them. They will be trapped. All property and businesses financed with debt will be taken.\n- With profound and persistent deflation assured to stretch over many years, debt becomes a powerful weapon of conquest.\n\n## ✍️ Strong Words\n- The wealthy assume that, because the system has allowed them to accumulate wealth, they will be protected in some way, that they are special. You are special. They’re saving you for dessert.\n- You have been allowed to chase profits while the wellbeing and resilience of your people have been broadly and systematically eliminated. There are monsters under the stairs eating people alive. But you don’t want to look under the stairs, because you want to keep using the stairs.\n- We are in the grip of the greatest evil humanity has ever faced (or refused to acknowledge, as the case may be). Hybrid war is unlimited. It has no bounds. It is global, and it is inside your head. It is never-ending.\n- The people controlling this system are quite obviously not benevolent. They are not noble. They are not elite. They are insane!\n\n## 🥊 Diminishing Power\n- This is not because the power to control is increasing. It is because this power is indeed collapsing. The “control system” has entered collapse.\n- Their power has been based on deception. Their two great powers of deception, money and media, have been extremely energy-efficient means of control. But these powers are now in rampant collapse.\n- This is why they have moved urgently to institute physical control measures. However, physical control is difficult, dangerous and energy-intensive. And so, they are risking all. They are risking being seen. Is this not a sign of desperation?\n- Where will they hide when they have all of the assets, when they have damaged all of humanity, and caused billions to awaken through suffering?\n- They promote the belief that they are all-powerful. They are not. All they have had is the power to print money. The rest, they have usurped from humanity.\n- If the people behind this Great Taking persist in their insane schemes, they will inevitably be found. It will be quite simple to follow the collateral to those who have arranged to take it. Perhaps they aren’t such masterminds after all!\n- We will come to know who is behind this hybrid war against humanity. We will come to know who controls the Bank for International Settlements, the Federal Reserve System, and all central banks globally, and hence all political parties, governments, media, and armed forces. We will come to know who controls the CIA.
\n\n\n-----\n## 🏁Like this summary? \n\nCheck out my other summaries of some related books here on Stacker News:\n- [Sovereign Individual](https://stacker.news/items/49781)\n- [When Money Dies](https://stacker.news/items/158149) https://example.com/ 4768 434013 434013.435039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.54887369610002 0 \N \N f 0 \N 0 222754912 0 f f \N \N \N \N 434013 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435022 2025-03-12 12:06:02.555 2025-03-29 22:39:51.184 \N It's an interesting problem. It's useful, I think, to consider what this looks like with 10x or even 100x the scale -- that's the problem that's coming. Some ideas:\n\n- People have really got to step up and start zapping the kind of stuff they want to see. It's the superpower of SN, people should make better use of it. All of this absurd zapping with 1 sat is ridiculous.\n\n- Other types of PoW could be brought into play. I know some like it, but I find such little value in random youtube links w/ literally no context. The bar is low to do a lot better.\n\n- Sub-boards, or whatever the term is, should help a bunch, assuming that they work at least kind of how I imagine, e.g., someone / some group is the admin, can have their own rules, can moderate hard with a particular vision. If you like their vision, join the sub. If you don't, don't.\n\n- Antes / stakes for posts and comments -- 10 sats is probably still too low. You could imagine this being adaptive, e.g., well-regarded stacker, 100 sats. Random newb with fresh account, 1000 sats. Different kinds of participation (commenting, reading, @-ing other users) lowers the stakes.\n\n- Reputation matters -- a zap from someone well-regarded is worth more in amplifying that thing. This is what PageRank was meant to solve, except you have an even stronger quality signal on SN -- zaps are more nuanced than simple hyperlinks.\n\n- Many of the above amount to implicitly figuring out what I should see based on what I've done in the past, combined with what other people have voted for. Could add an explicit element, too: basically, Twitter follows.\n\nThese all have tons of failure modes and edge cases, obviously. It's a hard problem. And really, there's a fundamental issue that can't really be ducked: there's tons of garbage on the internet, and people try to exploit the system in any way they can. SN will have to be robust to that. But at least the tools are there to make it possible. https://example.com/ 17184 434440 434440.435022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.0477843157563 0 \N \N f 213253198 \N 2 204454904 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435025 2025-03-12 12:09:58.65 2025-03-29 22:39:51.184 \N I like this -- I've had a similar reaction over the years, where I've done the full loop from being excited by btc and excited to meet anyone who was into it, to having a default negative reaction to anyone who describes themselves as a 'bitcoiner', bc it's been so taken over by the sorts of asshats who take over most things. It's not really about btc, it's more about human nature.\n\nAnyway, this makes me curious about what 'a real bitcoiner' means to me. I'm going to noodle on it. https://example.com/ 21254 434665 434665.435025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5918310875596 0 \N \N f 0 \N 0 224239109 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435020 2025-03-12 12:05:00.479 2025-03-29 22:39:51.184 \N There's no need to keep the whole UTXO set in memory. Most of it is rarely read from disk during normal operation. The `dbcache` (i.e. UTXO set cache) is 450MB by default and you usually only want to increase that for IBD performance.\n\n10% of transactions spent UTXOs created in the same block (https://transactionfee.info/charts/transactions-spending-newly-created-utxos) and a big chunk of UTXOs is spent after a few blocks anyway \n\n https://example.com/ 1881 434931 434931.435020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.52344244996838 0 \N \N f 0 \N 0 50264487 0 f f \N \N \N \N 434931 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435035 2025-03-12 12:14:19.428 2025-03-29 22:39:51.184 \N I don’t understand this? What does the application do? Can you be rejected? I want to apply to end these life sucking fiat banks! https://example.com/ 21709 431241 431241.435035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5874518723838 0 \N \N f 0 \N 0 233492837 0 f f \N \N \N \N 431241 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435034 2025-03-12 12:14:14.574 2025-03-29 22:39:51.184 \N The seminars are free, inlcude expert material/speakers, and open discussion. I highly recommend appying to this if you are interested in Bitcoin OSS. https://example.com/ 1761 312024 312024.435034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.62801777492628 0 \N \N f 0 \N 0 166120013 0 f f \N \N \N \N 312024 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435033 2025-03-12 12:12:48.273 2025-03-29 22:39:51.184 \N To put some context into this thread, this is a continuation of the saga which began in my previous post here [After Sourcehut, Codeberg is trying to ban crypto projects from hosting its code ](https://stacker.news/items/93435). They had since locked the thread, to try to avoid the media frenzy. They re-opened it a few days ago. I will post my comment in full below, because I believe inclusiveness is a human right for all. (Wall of text warning)\n\nIf you think this is not so important because Codeberg is not a big source control site, then just imagine if this was Github or Gitlab doing this. Try to imagine all the backlash they would get from the wider world. This recent trend of Git sites harassing crypto developers and their projects must be stopped.\n\n---\n\n> Looks like my watch notifications paid off then.\n> \n> I intended to comment here, but you locked the thread two days earlier.\n> \n> Let me make one thing clear here, I do not use Codeberg - this account was made a week ago just to comment here. I am an open-source developer of various projects on Github including software which interaxts with cryptocurrencies: https://github.com/ZenulAbidin\n> \n> As it stands, I lose nothing by a Codeberg ban on crypto projects. However, other devs who have crypto code on Codeberg have everything to lose, so what I write is is for them, not for me.\n> \n> Everyone - You know, this thread is called: "Taking a stand against cryptocurrency/blockchain", and it would be more accurate to call it "Taking a stand sgainst cryptocurrency/blockchain scams". Because that's what most of the idea behind this thread seems to be about.\n> \n> It is quite trivial to get rid of blockchain/cryptocurrency scam projects online - using the Report Abuse button. This particular button has been fantastic on Github for taking down various scam copies of crypto projects. I assume you have such a button already - in that case, half of your problem is already solved.\n> \n> Now that we have got the scams out of the way, let us deal with your second issue surrounding this topic: Excessive energy use of cryptocurrencies. Incidentially, I am also the creator of https://bitcoincleanup.com (NOT cleanupbitcoin). This is a website I made to challenge Greenpeace's and Chris Larsen's (the Ripple Labs co-founder who donated all that campaign money to Greenpease in the first place) false claims about crypto energy usage. They were claiming that if you "Change the Code", everything would be fine and Bitcoin's energy usage would go down.\n>\n> Isn't it ironic, a crypto guy making a campaign against crypto. But all that is a different topic.\n> First of all, some cryptos like Ethereum are using Proof of Stake, which uses no energy, so this is a non-issue for them. You can't say: "Let's ban the projects of all Ethereum dApps on CodeBerg", because as of September - long before SourceHut contemplated any crypto ban - Ethereum does not even use enormous energy anymore.\n> \n> Second, for Proof of Work cryptocurrencies like Bitcoin - the myth of excessive energy use has been totally debunked on my website, I suggest you study it carefully. > I will quote a few key points from the site:\n> \n> > Myth: Bitcoin uses as much energy as \n> >\n> >The IT, plane, car, transportation, and other industries must utilize large amounts of electricity for data centers, chemical or fuel generation, or heating, in order to provide their services. The same is true for Bitcoin.\n> >\n> > Bitcoin needs to use a lot of energy so that its Proof of Work can prevent hackers from stealing people's bitcoins. So far it's been going great, compared to several Proof of Stake coins, which have been breached with 51% attacks.\n> > \n> > Some people claim "We know crypto doesn’t need much energy to work." This is very ignorant because freedom from censorship is only possible in Proof of Work - transactions can still be embargoed in other algorithms.\n> \n> That is to say, that the massive energy use serves to fend off attacks against the Bitcoin network in the same way that CloudFlare generates terabytes of traffic in the process of fending off bot attacks against websites. And incidentially, a lot of energy use from their networking infrastructure. But hey, I don't hear anyone complaining about Cloudflare's carbon footprint, do I? So why are cryptocurrencies so important? Because it's "useless" to you?\n>\n> I could also make the argument that Cloudflare is useless to me because I do not use it on my website I just linked. But that would be a very ignorant statement, because thousands of businesses, including most of the Fortune 500 companies, rely on Cloudflare to protect their websites from DDoS attacks. It's very effective, and does the job. So its carbon footprint cannot be complained about.\n>\n> As for Bitcoin and other Proof of Work cryptocurrencies, they server as a form of digital money for people who have no access to banks. This happens to include most of Africa and South America, just so you don't forget. Already in 2022, thousands of people rely on Bitcoin and other cryptocurrencies to store their life savings and conduct day-to-day transactions, because their banking infrastructure is either unreliable and prone to failure, or it is corrupt and liable to funds theft by the respective governments. That is why a large percentage of the world population remains unbanked. So cryptocurrency is the prefect solution to them.\n>\n> As you know, cryptocurrency relies on software to provide its networking and financial services. The protocols are hosted online, the wallet software are also hosted online, and in some cases the websites of the projects themselves are hosted in some open-source community repo online. Without this software, cryptocurrency cannot work, and the revolution that is providing financial access to so many ubanked people snce 2009 will grind to a halt.\n> \n> To instantiate a ban of crypto projects just because you heard a few things you don't like about the industry is, at best, madness. It does two very bad things: First, the developers working on crypto projects on your site will have their work disrupted and they will have to migrate to a new webste. For what?\n> \n> Second, it sends a negative signal across the industry that code hosting projects do not care about the mission statement that underlines most crypto projects - to provide financial access of money to everyone.\n>\n> And you are doing this for what exactly?\n> \n> To prevent crypto scams? Sorry, but even if all open source hosting sites like Github banned cryptocurrency projects this instant, there would still be crypto scams being perpretrated because the developers would just move to self-hosted Gitea.\n> \n> Or is it as a protest against crypto's excessive energy use? Well we have already established that excessive energy usage is not useless when it is to protect services.\n> \n> So, then, what benefit will banning crypto projects from Codeberg bring?\n> \n> The only thing that will come out of this is crypto developers on you platform will be frustrated and will have to move their entire repo to another website. Is this really all that you want this proposal to bring about? Because I know that there is some sense of altruism in the goal of this proposal.\n> \n> Unfortunately, that sense of altruism is misguided, for reasons I have explained above.\n> \n> A version control platform is not supposed to make developers' lives difficult. It is supposed to make them easier.\n>\n> If we were talking about banning malware projects, gambling projects, or adult projects, then you would be on to something here. But this is cryptocurrency, whose use is legal in all jurdistinctions - with the exception of a handful of nations who don't seem to like it at all, but I will leave them out of this discussion.\n> \n> I completely agree with @jvanname that, and I quote: "We need people to develop cryptocurrencies without being harassed, banned, and shamed because cryptocurrencies can save countless lives."\n> \n> Do you guys agree with this or no?\n> \n> We are already protecting the rights of minority groups, sexual orientations, and activists. Is crypto really that malicious to you guys to go as far as believing that crypto developers need to be bothered?\n> \n> Some of you believe SourceHut did "an incredibly brave thing" by banning crypto projects from its platform. But far from being brave, it is a misguided thing, and a very dangerous decision to make because it could sway other source control sites to harass crypto developers on their platforms. Do not enable repressive behavior.\n> \n> Don't forget that the following is on your own homepage (emphasis mine):\n> \n> Respect\n> Your data is not for sale. No third party cookies, no tracking. Hosted in the EU, we welcome the world.\n>\n> So this means you welcome everyone except for crypto developers? As a privacy-focused source control site, I expected more inclusion to be granted to users.\n>\n> My last remark, before closing this post, is one of history.\n> \n> In the 1990s the NSA attempted to make distribution of strong cryptography software illegal. They failed. Why? Because everyone distributed the source code via different mediums such as CDs, books, coffee mugs and T-shirts.\n> \n> You know, "crypto" got its name from cryptography. And also, many regulators and web services who similarly do not understand crypto properly also want to ban us. But our motto is: If you ban us in one place, we will appear in ten more places.\n>\n> If you don't believe me, just look how many websites are hosting a copy of the Bitcoin whitepaper ever since Craig Wright tried to sue bitcoin.org to take it down.\n>\n> -Ali Sherief (Zenul_Abidin) https://example.com/ 1175 312067 312024.312067.435033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.63683952433928 0 \N \N f 0 \N 0 198024339 0 f f \N \N \N \N 312024 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435108 2025-03-12 13:18:57.325 2025-03-29 22:39:51.184 \N I don't know of any plans for that, but I think it'd be nice as well but technically pretty challenging. They'd all at least have to be using the same implementation. Going from like a Greenlight to LND would be very challenging if its even possible. So there's have to be some sort of standard there. https://example.com/ 16301 435105 435073.435078.435091.435105.435108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2871240170027 0 \N \N f 0 \N 0 166546080 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435056 2025-03-12 12:37:52.12 2025-03-29 22:39:47.913 Would you like to know who zapped you? As far as I can tell, zaps on SN are anonymous. I like it this way. But it means you don't really know where the zaps are coming from on any given post or comment. How do you feel about it? \N 1209 \N 435056 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 28.834781331208 0 \N \N f 0 \N 0 200966252 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435055 2025-03-12 12:37:37.711 2025-03-29 22:39:51.184 \N Awesome idea! Hot pockets and mountain dew let's go⚡⚡⚡ https://example.com/ 8037 433833 433833.435055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.10956727689439 0 \N \N f 0 \N 0 236161168 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435058 2025-03-12 12:39:35.746 2025-03-29 22:39:51.184 \N Can I post failures? I tried to pay for two beers at a local micro brewery with bitcoin, and was rebuffed. My plan is to try to pay bitcoin when patronizing my local merchants. At least it gets easier to ask. It becomes second nature. https://example.com/ 15367 434990 434990.435058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.094368067776 0 \N \N f 0 \N 0 81704138 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435052 2025-03-12 12:34:23.266 2025-03-29 22:39:51.184 \N A really good pub, that serves proper real ale (lager is also allowed) and has great food, large servings. A roaring fire for winter and nice beer garden for the summer.\n\nI'll let you all sort out the rest of the city, I'll be alright here. You can come and join me when you're done. https://example.com/ 21279 435042 434791.434978.435042.435052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4552520981467 0 \N \N f 0 \N 0 48170587 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435079 2025-03-12 12:50:31.633 2025-03-29 22:39:51.184 \N ![HODLFLEX](https://miro.medium.com/max/1400/0*fycahAqCXE9Ori1s.jpg) https://example.com/ 803 434795 434795.435079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.64809146963407 0 \N \N f 0 \N 0 118754309 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435078 2025-03-12 12:50:30.884 2025-03-29 22:39:51.184 \N There's an uninhabited island in New York City called North Brother Island. It was once home to a quarantine hospital, where "Typhoid Mary" was confined. Today, it's an eerie, abandoned place hidden in the midst of the bustling city.\n\nhttps://maps.app.goo.gl/fcQAWiH2yGojYMcS8?g_st=ic https://example.com/ 12422 435073 435073.435078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.07209061582894 0 \N \N f 962085719 \N 7 87034209 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435060 2025-03-12 12:40:51.553 2025-03-29 22:39:51.184 \N > his contributions suggested something more important and rare: taste.\n\n👀\n\nThanks for the welcome! Still excited to become an official part of this. Let's see how long this stays the case haha\n\nBtw, I also run [t.me/stackernewsrss](https://t.me/stackernewsrss) so if anyone wants a (now official) RSS feed on TG, join that channel!\nOnly 9 subscribers so far https://example.com/ 10493 435054 434791.435054.435060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.60198598176905 0 \N \N f 0 \N 0 222395362 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435074 2025-03-12 12:47:03.577 2025-03-29 22:39:51.185 \N https://scholarhacker.files.wordpress.com/2023/10/naploeon-bitcoin-1.jpg?w=589 https://example.com/ 658 433796 433796.435074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.36881648093556 0 \N \N f 0 \N 0 173301093 0 f f \N \N \N \N 433796 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435083 2025-03-12 12:57:54.459 2025-03-29 22:39:47.913 El Salvador: group of hackers publishes Chivo wallet ATM code \N https://atlas21.com/el-salvador-group-of-hackers-publishes-chivo-wallet-atm-code/ 19581 \N 435083 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.2118403936689 0 \N \N f 0 \N 0 234167229 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435104 2025-03-12 13:15:56.441 2025-03-29 22:39:51.185 \N When I start earning bitcoin, not buying it anymore.\nBeing paid directly in BTC, it change your perspective totally.\nSlowly you start thinking only in sats when you spend them. The price in fiat will be meaningless.\n\nI know this is quite visionary that for many is hard to understand, they are trapped into fiat mindset forever. They MUST break those chains and look forward.\n\nAlso there's another aspect that many are looking wrong:\n[![selling-fiat.jpg](https://imgprxy.stacker.news/8P-J53DFZ_xhhzzPbkxbAr0MIn7fElgCVXUJ6IxOH0c/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvMGpzZ2taa2gvc2VsbGluZy1maWF0LmpwZw)](https://postimg.cc/MMd3t7jY)\n\nFew really understand this meme. https://example.com/ 1162 435051 435051.435104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1358697828606 0 \N \N f 0 \N 0 158787202 0 f f \N \N \N \N 435051 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435084 2025-03-12 12:59:32.429 2025-03-29 22:39:51.185 \N Day 390 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 21148 434998 434916.434932.434944.434998.435084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5229999683016 0 \N \N f 0 \N 0 35985756 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435088 2025-03-12 13:03:51.849 2025-03-29 22:39:51.185 \N I remember your first announcement, was kind of shy announcement to invite people to try this crazy thing...\n\nI said, what the heck is this, but hey is using sats! I cannot ignore this shit. \nThen I saw you put a lot of work on it.\n\n\nI even had a talk with fiatjaf about it and he laugh about telling me: "oh yeah you are interesting in that thing SN, not sure if he gonna make it" (or something like that, you know how is fiatjaf...denying everything) https://example.com/ 15239 434795 434795.435088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0146591722702 0 \N \N f 0 \N 0 160788218 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435090 2025-03-12 13:04:51.463 2025-03-29 22:39:51.185 \N Spiral staircases in medieval castles are running clockwise. This is because all knights used to be right-handed. When the intruding army would climb the stairs they would not be able to use their right hand which was holding the sword because of the difficulties of climbing the stairs. Left-handed knights would have had no troubles, except left-handed people could never become knights because it was assumed that they were descendants of the devil. https://example.com/ 11992 435064 433828.435064.435090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.01473227040486 0 \N \N f 0 \N 0 239480942 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435112 2025-03-12 13:26:47.33 2025-03-29 22:39:47.913 "Crazy Bitcoin people who created a shower of coins raining down as I slept" This is a follow up to this previous post: [I orange pilled a small merchant, help make it stick!](https://stacker.news/items/260745)\n\nDanielle replied and wanted to thank everyone who sent her some sats! Here is her reply in full.\n\n![email reply](https://i.ibb.co/G28JDvF/Screenshot-20230930-135808-1.png)\n\nIf anyone still wants to send Danielle some sats: stonyrandom34@walletofsatoshi.com\n![](https://imgprxy.stacker.news/fMVIsEbinBhb_Tq06SuxzJLHCk_eEkLiXiDmb4EA07c/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wcmV2aWV3LnJlZGQuaXQvMzVja2llMWJhanBiMS5wbmc_d2lkdGg9MjAzJmZvcm1hdD1wbmcmYXV0bz13ZWJwJnM9ZTgxMTkwNjM5OWY0NTk0NjIxNzRlNjkyOWM1Y2VlOTAxMDNmNWM3Mw)\n\nOnwards, you crazy Bitcoin people! \N 2347 \N 435112 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.1673423357299 0 \N \N f 0 \N 0 105640213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435113 2025-03-12 13:26:48.269 2025-03-29 22:39:51.185 \N Trying to giveaway sats to incentivize people to get informed about bitcoin and lightning, mostly doing it through microlancer paying people to watch bitcoin education videos https://example.com/ 8173 434721 433588.434276.434721.435113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.909975936008927 0 \N \N f 0 \N 0 193726865 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435428 2025-03-12 17:08:40.771 2025-03-29 22:39:51.185 \N lol thank you and sorry! I tell myself that a (healthy) obsession is one of the best things that you can have in life. Any energy and motivation you feel inside is a gift you should cherish since stasis comes way too soon as you get older. It's too bad that life is so damn short. \n\nI don't know how to get you the headspace but what works for me is routine, workouts, good food, fun on the weekends, and a problem you can work on that is way bigger than your personal life. \n\nI also recommend meeting Bitcoiners in real life. It's more motivating than anything else. https://example.com/ 18219 435407 435128.435138.435407.435428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7973539295033 0 \N \N f 0 \N 0 127240585 0 f f \N \N \N \N 435128 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435118 2025-03-12 13:30:40.806 2025-03-29 22:39:51.185 \N I’d teach “How to Fail” … which would be a kind of unschooling to help transition people to real world learning https://example.com/ 12272 434851 434851.435118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7866428241156 0 \N \N f 0 \N 0 8932675 0 f f \N \N \N \N 434851 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435117 2025-03-12 13:30:28.356 2025-03-29 22:39:51.185 \N I lmao when I can visually see your reply before it is in existence https://example.com/ 16301 434795 434795.435117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8723988144046 0 \N \N f 40072831 \N 1 229306848 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435128 2025-03-12 13:40:05.087 2025-03-29 22:39:47.913 Why do we all have lawns? I’ve been looking into land usage recently, and i just realized i have no idea why everyone has front and back lawns.\n\nPretty much every house in the neighborhood I grew up in had lawns taking up 50-70% of the space on their property, and the lawn area almost never gets any use. Not considering those living in apartments or townhouses, this 50%+ lawn layout seems to be pretty typical for most North American homes (I understand this isn’t typical in Europe).\n\nI could see how a family dog or kids would enjoy playing in the backyard lawn for an hour or two each day, but this is relatively little usage compared to the rest of the house, and the front yard almost never gets that same usage.\n\nSo why do we waste all this space on our property, filling it up with patches of grass we can’t eat (and rarely get to enjoy)? Especially as home prices continue to get more expensive…\n\nAnd considering most people don’t get much value from their lawn, why does everyone put so much money and effort into watering, maintaining, pruning, and fertilizing their lawn? Is it all just a status-signaling game?\n\nAs a possible solution, why isn’t it normal to convert one’s lawn into a garden that can at least supply you with fresh fruit, vegetables, and eggs? This was [strongly encouraged](https://en.wikipedia.org/wiki/Victory_garden) in WW1 and WW2, so there is precedent here. \N 12562 \N 435128 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.5336243008014 0 \N \N f 418358030 \N 3 29035914 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435126 2025-03-12 13:38:49.539 2025-03-29 22:39:51.185 \N sick! thanks for open sourcing this. https://example.com/ 10554 434791 434791.435126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6895159096631 0 \N \N f 0 \N 0 36647932 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435208 2025-03-12 14:26:32.384 2025-03-29 22:39:51.185 \N When you're more impressed by a number in the thousands of BTC than a number in the hundreds of millions of USD https://example.com/ 9426 435026 435026.435208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4029766463729 0 \N \N f 0 \N 0 234068759 0 f f \N \N \N \N 435026 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435179 2025-03-12 14:09:41.756 2025-03-29 22:39:51.185 \N Bear market is brutal hah https://example.com/ 640 434798 434795.434798.435179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.27915094329 0 \N \N f 711292153 \N 9 186634623 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435130 2025-03-12 13:40:19.498 2025-03-29 22:39:51.185 \N Hope everyone is having a great Wednesday. I am sure you are all aware but just wanted to shine some more light on the Satsraiser Siggy is running for Bitcoin for Fairness today. Dig deep my friends. \n\nCheers,\nGR\n\nhttps://stacker.news/items/239180 https://example.com/ 4225 434908 434488.434560.434908.435130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.41618815178193 0 \N \N f 167147040 \N 1 196460026 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435144 2025-03-12 13:47:45.896 2025-03-29 22:39:47.914 Bringing you another plebeian poem ☕️ _Poems don't have to be sophisticated at all. In fact, those poems that are aware of themselves as poems never fit to my taste. I mean, many lines that are memorable are those that feel native to your own brain. I love familiarity in poetry._\n\nExamples\n1. _an old one_\n![](https://m.stacker.news/35421)\nYou may have seen this one before. Maybe a bad example, as wheelbarrows and chickens are distant from us in the age of the computer. However, a clever poem such as this is successful at bringing an image to mind and projecting its meaning over it. Do you notice which lines point to the meaning of the wheelbarrow?\n\n2. _a new one_\n![](https://m.stacker.news/35431)\nSam Pink is an artist I've been following since I read his short story ["The Ceremony"](https://www.theparisreview.org/fiction/7915/the-ceremony-sam-pink). I think you know exactly what he means in this poem. It's not a head-scratcher, this one. Still, it has solemnity.\n\n3. _from plebpoet_\n![](https://m.stacker.news/35434)\nAnother poem from the [collection](https://stacker.news/items/563345) I've [been](https://stacker.news/items/557729) [sharing](https://stacker.news/items/549967). Just a series of genuine questions I had to put down on paper for clarity of mind, then clipped and shaped into the form a poem might have. The photos are from my phone. The female subject is a friend who would go get coffee with me and entertain answers to these questions.\n \N 17109 \N 435144 \N \N \N \N \N \N \N \N security \N ACTIVE \N 5.11975195377726 0 \N \N f 0 \N 0 194722108 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435143 2025-03-12 13:47:07.473 2025-03-29 22:39:51.186 \N Trying to get a local lightning node setup on testnet. I don't see LN and testnet talked about often, anyone know why? https://example.com/ 11164 434665 434665.435143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2008614711913 0 \N \N f 0 \N 0 239302641 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435145 2025-03-12 13:50:23.627 2025-03-29 22:39:51.186 \N Connected the first Zimbabwean podcast with Value 4 Value streaming\nhttps://anitaposch.com/icwt-bitcoin-enabled https://example.com/ 1469 435127 435046.435127.435145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6345006737455 0 \N \N f 157506378 \N 1 198045242 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435153 2025-03-12 13:56:09.868 2025-03-29 22:39:51.186 \N Quality content, have 1k sats from someone less likely to make it to that destination. Embarrassed to see the post hasn't earned more yet.\n\nLove the paragraph ending in "douchebags", made me chuckle. https://example.com/ 986 435142 435142.435153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8122569432821 0 \N \N f 0 \N 0 39778322 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435157 2025-03-12 14:01:44.061 2025-03-29 22:39:51.186 \N This [Vida live](https://vida.live) solution looks awesome. Can’t wait to see it in action.\n\nKudos to @lylepratt and team https://example.com/ 16350 354472 353322.354465.354472.435157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0306656762209 0 \N \N f 0 \N 0 245502765 0 f f \N \N \N \N 353322 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435160 2025-03-12 14:02:48.174 2025-03-29 22:39:51.186 \N Timely suggestion to check out [The Zen of 1 sat = 1 sat](https://stacker.news/items/550268/r/Undisciplined) https://example.com/ 18219 434410 434410.435160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6761030458481 0 \N \N f 0 \N 0 92095555 0 f f \N \N \N \N 434410 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435161 2025-03-12 14:02:55.534 2025-03-29 22:39:51.186 \N In Latin America, it's super common to find plots of land guarded by armed porteros. You pay a small administration fee and subsidise their salary, along with your neighbours. They can call back-up at a moments notice. This is a model that works. It just isn't something really available in the West. Only to the truly wealthy.\n\nWe'll see more of this, I expect. The collapse of nations will leave a huge void, when people realise the police can not only no longer help them, but may be actively working against their interests. Police may even be incentivised to use their position as "trusted" people in society to raid people's homes.\n\nPrivate security will therefore be big business I expect. Crime may well be too. Some of us may not like the idea of living in that world, but it has happened throughout history. You outsource your security to someone for a fee. It happened throughout the gold standard.\n\nEventually, people will regain the trust of local community banks and dislike the inconvenience of self-storage - resorting to trusting others to safeguard a portion of our wealth, gaining 'increased' security. Like what Fedi have in mind. And then that will no doubt later lead to centralising custody in decades that follows, as community custodians get swallowed-up by new broader monopolies again in 100 years time. Then the cycle and human nature repeats. A new flight to self-custody once more. https://example.com/ 21585 354366 354366.435161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.40483067026252 0 \N \N f 0 \N 0 119367868 0 f f \N \N \N \N 354366 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435156 2025-03-12 13:58:35.554 2025-03-29 22:39:51.186 \N Great point! Yes, we are factoring in processing fees, cost of capital, socialized bad debt, and general overhead costs into that 10%. And we believe that 10% may be conservative when factoring in the opportunity cost of the legacy systems. We're confident Synota's solution is going to bring down the cost of energy a lot https://example.com/ 15484 434641 434641.435156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5093476887307 0 \N \N f 37112921 \N 1 30750540 0 f f \N \N \N \N 434641 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435207 2025-03-12 14:25:29.845 2025-03-29 22:39:47.914 Are you impressed by OpenAI's Sora? As a technical achievement, sure it's impressive. The amount of progress in just one year is amazing.\n\nHowever, I feel that it's not ready for the limelight. There is still a distinct uncanny-valley feel to the videos, like you can tell that they are from AI and not real videos. This reminds me of the days of 3D animated movies that tried to make the people look realistic.... it just didn't feel right. Maybe we'll end up with AI videos used more for cartoons, where that sense of unrealism is a feature not a bug.\n\n \N 19375 \N 435207 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.5411088866268 0 \N \N f 0 \N 0 191086393 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435165 2025-03-12 14:04:10.384 2025-03-29 22:39:47.914 If Age Is Only a State Of Mind, What's Your State Of Mind Right Now? ![](https://m.stacker.news/50041) \N 1454 \N 435165 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.5930699050147 0 \N \N f 299707576 \N 2 150090869 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435203 2025-03-12 14:24:21.81 2025-03-29 22:39:51.186 \N onboarding is difficult. work at a marketplace that only sells stuff in crypto, my parents have talked about buying stuff from it for about a year now, and still haven't. The friction is quite high. \n\nCountries that would absolutely benefit today by - Argentina and Afghanistan - inflation & cut-off from outside banking sector. \n https://example.com/ 9356 434665 434665.435203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9367053735727 0 \N \N f 0 \N 0 68108641 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435187 2025-03-12 14:15:24.127 2025-03-29 22:39:51.186 \N Thanks for doing the AMA, Alex! Love your writing and appreciate the work you do.\n\nCurious about your take on KYC and anti money laundering regulations and their role in preventing corruption (or at least making it more difficult to use the proceeds). In your human rights work, do you ever see a case for it, or do you see it as a largely ineffective and harmful endeavour?\n\nControversial topic in the Bitcoin space, but there are a lot of earnest people who really believe in the benefits (and probably see Bitcoin as an impediment). https://example.com/ 11378 435154 435154.435187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5316161002006 0 \N \N f 312244673 \N 2 152394414 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435186 2025-03-12 14:15:15.322 2025-03-29 22:39:51.186 \N This is awesome 👏 \n\nFor those too lazy/cynical to click a link:\n\n- Bitcoin Lightning paywall and authentication using LSATs.\n- Charge to access your API without requiring user accounts, API keys, credit cards, or storing any user data.\n- Requires a lightning node and a single line of code in your server. Built with LND, Nodejs, and Typescript.\n- All you need to put a paywall in front of a route on your server is this one line of code:\napp.use(boltwall())\n\n\nAll that’s missing is some example flows to inspire developers https://example.com/ 1817 192644 192644.435186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.53707454251564 0 \N \N f 0 \N 0 198321621 0 f f \N \N \N \N 192644 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435166 2025-03-12 14:04:34.64 2025-03-29 22:39:51.186 \N through https://example.com/ 7125 435165 435165.435166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5657176911518 0 \N \N f 0 \N 0 112834725 0 f f \N \N \N \N 435165 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435182 2025-03-12 14:11:33.206 2025-03-29 22:39:51.186 \N Improving Alby onboarding UX :) https://example.com/ 1094 153228 153228.435182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4082789455313 0 \N \N f 0 \N 0 40889289 0 f f \N \N \N \N 153228 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435185 2025-03-12 14:13:27.078 2025-03-29 22:39:51.186 \N ![](https://i.ibb.co/7rbfy2J/IMG-5508.jpg) https://example.com/ 826 260961 260961.435185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6852448756294 0 \N \N f 0 \N 0 46775291 0 f f \N \N \N \N 260961 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435205 2025-03-12 14:25:10.648 2025-03-29 22:39:47.915 Go all in or spread out wide? The fiat economy stipulates that we be T-shaped professionals - having working knowledge in a wide range of disciplines while having the ability to go deep in one specialisation. \n\nBut perhaps Bitcoiners prefer to go all in on something. \n\nDo you have a forte/niche?\nAre you consciously trying to get better at it? Pushing your boundaries to access that exclusive level of creativity that comes so effortlessly to masters of their craft. Applying deliberate practice to up your game? \n\nOr are you a believer of Dilettantism and prefer to dabble with many professional deliverables and passion projects? That these different pursuits overlap with one another to create delightful sparks. \N 20768 \N 435205 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.0864637006902 0 \N \N f 0 \N 0 10097612 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435202 2025-03-12 14:23:57.429 2025-03-29 22:39:51.185 \N ![](https://i.imgur.com/tPYsOi7.jpg) https://example.com/ 12774 432713 430501.432713.435202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.28046623096457 0 \N \N f 0 \N 0 81123167 0 f f \N \N \N \N 430501 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435245 2025-03-12 14:51:18.227 2025-03-29 22:39:51.185 \N I sharpen knives. Not sure if it's hidden, because I talk about it, and ask friends and family for their dull knives to sharpen all the time. But it's something I really enjoy doing as a pastime. https://example.com/ 6717 435044 434447.435044.435245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8715898571371 0 \N \N f 0 \N 0 64531698 0 f f \N \N \N \N 434447 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435191 2025-03-12 14:16:14.659 2025-03-29 22:39:51.186 \N Nice, I am getting used to zap even more now. https://example.com/ 848 435163 435136.435163.435191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.48498215130994 0 \N \N f 0 \N 0 131166540 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435197 2025-03-12 14:19:40.387 2025-03-29 22:39:51.187 \N Some KYC-free VPS hosts that accept Bitcoin: https://bitlaunch.io, https://1984.is, https://privex.io, https://njal.la\n\nMore here: https://kycnot.me/services https://example.com/ 4798 434661 433833.434661.435197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5246009563551 0 \N \N f 0 \N 0 152166753 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435211 2025-03-12 14:31:35.966 2025-03-29 22:39:51.185 \N This is insane.\n\nSummer last year had a few 0% MoM numbers. This means the inflation number of the next few months could be insane YoY. \n\nI wonder what the reaction would/will be when people read double digit numbers https://example.com/ 6594 435165 435165.435211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.88859554131867 0 \N \N f 0 \N 0 186872851 0 f f \N \N \N \N 435165 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435219 2025-03-12 14:35:57.558 2025-03-29 22:39:51.185 \N I think the best way to do this is what @grayruby proposed: writing questions in the bitcoin beginners territory or the saloon. Experienced stackers are making their contribution by posting great stuff. It would be too much to ask them to write even lectures, imo. https://example.com/ 1549 435213 435046.435213.435219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9548043875723 0 \N \N f 0 \N 0 118045469 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435223 2025-03-12 14:39:10.499 2025-03-29 22:39:51.185 \N Myself and my team members at Satoshi's Journal are building a Bitcoin Village in Lagos, Nigeria based off of Bitcoin Beach. We are hosting a Bitcoin conference there March 24+25, 2023. Save 21% on your ticket with code "beats" - nigeriabitcoinconference.com https://example.com/ 1000 435201 435201.435223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63767972566842 0 \N \N f 0 \N 0 4567721 0 f f \N \N \N \N 435201 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435218 2025-03-12 14:35:28.725 2025-03-29 22:39:51.185 \N I don't even need to write my own answer, because it's so similar to yours. The differences are minor: I stopped using Minds and Reddit, rather than X.\n\nI also found SN very early in my bitcoin journey, so the stackers were a big influence on me diving in fully. https://example.com/ 19863 292915 292915.435218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.5861847525811 0 \N \N f 0 \N 0 57856542 0 f f \N \N \N \N 292915 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435222 2025-03-12 14:38:59.969 2025-03-29 22:39:51.185 \N You're thinking about it in terms of "a relay" and that's not what nostr is. It's many, and the notes and profile information is distributed across them. If someone wants to see the notes of an npub, they ask all the relays they are connected to. Gossip model stuff pushes the search out further too. One relay taking something down should have no affect.\n\nIf you have suggestions to building nostr the way you prefer a distributed protocol to be, you may want to post those here: https://github.com/nostr-protocol/nips https://example.com/ 17984 435183 435154.435183.435222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4212665251993 0 \N \N f 238342708 \N 1 127911259 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435212 2025-03-12 14:32:06.56 2025-03-29 22:39:51.185 \N Day 56 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 1044 435200 435046.435135.435162.435200.435212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.277351430027 0 \N \N f 14051055 \N 1 194778722 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435227 2025-03-12 14:41:04.088 2025-03-29 22:39:47.915 This Day in Stacker News: July 18th *Yesterday's edition https://stacker.news/items/611566/r/Undisciplined*\n\n@ek makes an appearance on the leaderboard and Warren Buffet makes an impressively foolish statement that will likely live on for eternity.\n\n*Bookkeeping note: I've gotten more zaps the past few days, so I'm going to bump my zaps to top posts and comments up to 69. It would be nice to just be able to forward sats to more than 5 people.*\n\n* * -\n### July 18, 2023 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[Phoenix Beta Wallet Migration](https://stacker.news/items/211009/r/Undisciplined)**\n\n#### Excerpt\n> As you may already know since it was mentioned on SN [here](https://stacker.news/items/207349), Phoenix released a new blog post last week to announce the new Phoenix wallet: [a 3rd generation self-custodial Lightning wallet](https://acinq.co/blog/ph […]\n\n*3519 sats \\ 14 comments \\ @ek \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/210873/r/Undisciplined?commentId=210963**\n\n#### Excerpt\n> A mining node can only "censor" any block it mines. A miner with huge percent of hashrate could mine 6 blocks in a row somewhat regularly.\n\n*2819 sats \\ 0 replies \\ @nullcount*\n\nFrom **[Can Bitcoin miners that are routing nodes exploit their peers/channel partners?](https://stacker.news/items/210873/r/Undisciplined)** by @02ca839694 in ~bitcoin\n\n----\n\n### 🏆 `TOP STACKER`\n\n2nd place **@ek** (1st hiding, presumed @siggy47)\n\n*1637 stacked \\ 2261 spent \\ 1 post \\ 6 comments \\ 0 referrals*\n\n----\n\n### 🗺️ `TOP TERRITORY`\n\n**~bitcoin**\n> everything bitcoin related\n\nfounded by @k00b on Tue May 02 2023\n\n*58.9k stacked \\ 0 revenue \\ 70.9k spent \\ 94 posts \\ 264 comments*\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n### July 18, 2022 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[What do I need this bitcoin for? 🔦](https://stacker.news/items/46555/r/Undisciplined)**\n\n#### Excerpt\n> Famous investor Warren Buffett recently said:\n> #### *"If you offered me all the bitcoins in the world for $25, I wouldn't take it."* \n\n*112.5k sats \\ 29 comments \\ @hynek \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/46555/r/Undisciplined?commentId=46604**\n\n\n#### Excerpt\n> I am really starting to get tired of the bitcoin isn't an inflation hedge, lol it stops you from dilution IN THE BITCOIN network, it doesn't control whats going on in secondary markets, gosh everytime I have to explain that one it does my head in lol […]\n\n*564 sats \\ 2 replies \\ @TheBTCManual*\n\nFrom **[What do I need this bitcoin for? 🔦](https://stacker.news/items/46555/r/Undisciplined)** by @hynek in ~bitcoin\n\n----\n\n### 🏆 `TOP STACKER`\n\n1st place **@cryptocoin**\n\n*618 stacked \\ 375 spent \\ 5 posts \\ 25 comments \\ 0 referrals*\n\n----\n\n### 🗺️ `TOP TERRITORY`\n\n**~bitcoin**\n> everything bitcoin related\n\nfounded by @k00b on Tue May 02 2023\n\n*119.4k stacked \\ 0 revenue \\ 124.9k spent \\ 60 posts \\ 194 comments*\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n### July 18, 2021 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[All-time Bitcoin price chart (fork of zorinaq's)](https://stacker.news/items/387/r/Undisciplined)**\n\nLink to https://price.bublina.eu.org/\n\n*546.3k sats \\ 4 comments \\ @spain \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/325/r/Undisciplined?commentId=386**\n\n\n#### Excerpt\n> Sure. To answer such questions you definitely need JavaScript client-side analytics. But there may be some open source libraries for that? But surely it may be easier to use a ready-made 3rd party one, just wondering how much it can cost.\n\n*1 sat \\ 1 reply \\ @spain*\n\nFrom **[Opinions on analytics for Stacker News?](https://stacker.news/items/325/r/Undisciplined)** by @k00b in ~bitcoin\n\n----\n\n### 🏆 `TOP STACKER`\n\n1st place **@spain**\n\n*7 stacked \\ 6 spent \\ 1 post \\ 2 comments \\ 0 referrals*\n\n----\n\n### 🗺️ `TOP TERRITORY`\n\n**~bitcoin**\n> everything bitcoin related\n\nfounded by @k00b on Tue May 02 2023\n\n*40 stacked \\ 0 revenue \\ 78 spent \\ 6 posts \\ 16 comments* \N 19821 \N 435227 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.6719327014475 0 \N \N f 5203581 \N 1 147408566 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435255 2025-03-12 14:59:23.513 2025-03-29 22:39:51.185 \N - Are there any other notable businesses on lightning/ products being developed in Nigeria that you are aware of or that you might hope to work with? Wondering how retail looks, availability of products and services in Nigeria, or wider on the continent. \n\n- What is the competition in the remittance space? \n\n- Does Bitnob plan to grow userbase to other regions, if legislation allows for it? https://example.com/ 21413 364096 364096.435255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6764129232293 0 \N \N f 0 \N 0 162039967 0 f f \N \N \N \N 364096 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435248 2025-03-12 14:52:54.475 2025-03-29 22:39:51.185 \N > education doesn't scale\n\nWhile I'm sympathetic to the idea that things should be as intuitive as possible, it is pretty impressive what humans will learn how to do when they have an incentive. \n\nThink of all the crazy weird things we do to be able to drive a car (multiple foot pedals, controls of many sorts, an entire genre of laws, insurance costs and fine print, gassing it up, tire pressure, oil changes, roads, signage...). If you presented a new tech and told an investor these were the things that needed building out, no one would go for it. But people wanted to go faster. \n\nLightning and bitcoin in general just have to keep being useful enough that users have a reason to figure it out. We need to keep plugging bitcoin use-cases into the wider world and people will figure out channel management if they need it to do what they want. \n\nFor me, the focus is on what bitcoin and lightning let people do that they couldnt before and really want. https://example.com/ 760 435142 435142.435248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1965132117996 0 \N \N f 0 \N 0 241241701 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435262 2025-03-12 15:06:29.714 2025-03-29 22:39:47.915 Let's make Prague a place where people use bitcoin to the fullest [BTC Prague](https://btcprague.com/) has the ambition to become the largest bitcoin event in Europe.\n\n\nWouldn't you 🧡 love to see as many local businesses as possible in Prague accepting #bitcoin? Let's join forces to make this happen.\n\nThe city currently has 33 confirmed locations on [btcmap.org](https://btcmap.org/community/dvacet-jedna-praha) where you can pay with bitcoin. And it’s growing every day 🔥\n\nHelp us reach more businesses by sharing these Czech instructions, especially on your socials outside our bubble 🙏\n\nhttps://pages.bitcoinreserve.com/jak-pouzivat-bitcoin \N 1718 \N 435262 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 29.7450879099874 0 \N \N f 0 \N 0 192089550 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435259 2025-03-12 15:02:06.859 2025-03-29 22:39:51.185 \N If I'm understanding correctly, to address 'shady connotations' with referral, you are thinking of the feature of donation/or passing it to any stacker.\n\nReferrer: Feel uncomfortable cuz they either dislike participating in such actions (or dislike being seen doing so) solely for sats.\nNew signee: Finds it shady cuz someone else is making money off her. Is the referrer a fan of the platform or doing it for sats?\n\n\nOnly allowing the referrer to direct the earnings to donation or anyone else addresses half of the problem of the referrer. It doesn't address the 'dislike being seen doing so' part.\n\nFurthermore, it doesn't ease the concerns of new signees at the moment they are making a decision to sign up.\n\nOne potential solution is to make it explicitly clear in the referral message that the additional revenue generated from new signees will be directed toward donations. A more formal version of work like https://stacker.news/items/258853)\n\nI know execution-wise, it is more work!\n\n2nd, here is a link to building a referral program. https://www.lennysnewsletter.com/p/this-week-16-building-a-referrals. Seems basic, but further reading part of the write-up may be useful. https://example.com/ 16193 434916 434916.435259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1206092575853 0 \N \N f 0 \N 0 195959444 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435266 2025-03-12 15:08:29.003 2025-03-29 22:39:51.185 \N I need to clean my laptop screen. I thought for a second @k00b had added wizard hats, but it was just some dirt perfectly placed above one of the cowboy's hats making it look pointy. Haha. https://example.com/ 946 435265 430109.430351.431086.434668.435265.435266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13099060776977 0 \N \N f 0 \N 0 249535850 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435267 2025-03-12 15:09:44.035 2025-03-29 22:39:51.185 \N This is a well put question/topic. I am curious if anyone knows the ramifications of bitcoin being deemed legal tender in El Salvador when it comes to spending elsewhere. For example, I don't think spending euros in the US is a taxable event. https://example.com/ 13198 435231 435231.435267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3085497057965 0 \N \N f 0 \N 0 160650984 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435265 2025-03-12 15:07:19.297 2025-03-29 22:39:51.185 \N This blackpill shit is the opposite of Bitcoining.\n\nWe're winning. Governments are tied in a pretzel. The house of cards is coming down. An unprecedented era of freedom and prosperity is upon us.\n\nBitcoin is the next world reserve currency and it's happening faster than anyone could imagine. https://example.com/ 683 434668 430109.430351.431086.434668.435265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2242799135354 0 \N \N f 681222813 \N 3 35911451 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435279 2025-03-12 15:16:07.822 2025-03-29 22:39:51.185 \N @quest77 isn't doing too well,\nMy rhymes get all the sats.\nAll he does is bitch and moan,\nLike the democrats https://example.com/ 11328 435167 435167.435279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3388559424489 0 \N \N f 0 \N 0 21288445 0 f f \N \N \N \N 435167 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435397 2025-03-12 16:44:13.769 2025-03-29 22:39:51.185 \N one thing i think the cybertruck represents is a shift towards independent design thinking.\n\nfor the last few decades, the name of the game for automakers has been optimizing for MPG, leading to a bunch of cars basically looking the same.\n\nHowever, the low-cost, scalable nature of batteries makes it so that EVs can take on an incredibly wide array of forms without being constrained by efficiency.\n\nThis shift has already flipped the bike industry on its head, and I suspect cars and trucks are next.\n\nBikes were roughly all the same size/shape prior to electrification, and now we’ve got all sorts of custom variants like fat-tire bikes, foldable mini-bikes, motorcycle-esque e-bikes, and things like hoverboards and scooters which are sort of adjacent.\n\nNone of these new variants would be very efficient or useful without batteries, they all trended to either gas-powered (motorcycles) or human-powered (bikes, skateboards, scooters).\n\nAs EV battery tech improves (and it is improving, albeit slower than Tesla had hoped for), I think we’ll see a much wider array of car designs as fuel consumption and efficiency become secondary considerations.\n\nThe cybertruck feels like the first of many unique car designs we’ll see in the coming decades. https://example.com/ 4035 435392 435392.435397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9169968288825 0 \N \N f 0 \N 0 3874452 0 f f \N \N \N \N 435392 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435273 2025-03-12 15:13:16.425 2025-03-29 22:39:51.185 \N Smart Vaults are miniscript-based, P2TR Bitcoin wallets that use Nostr to coordinate metadata and PSBTs. Users create a single “account” (mnemonic) with the mobile app, and that key is used for both Nostr events and Bitcoin transactions. \n\nYou can invite other users to participate in collaborative custody vaults. \n\nThere are vault templates for decaying multisig, social recovery, and others, and there’s also an advanced miniscript policy builder using drag-and-drop shapes. \n\nSince we use P2TR, we can technically support multisig wallets up to hundreds (prob 999) signers. When we launch the main net app, we want to set the record for the World’s Largest Human Multisig and submit the results to Guinness.\n\nThe desktop app and SDKs are open source : https://github.com/smartvaults/smartvaults https://example.com/ 21714 435265 430109.430351.431086.434668.435265.435273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.47650820256888 0 \N \N f 186381319 \N 1 245305644 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435296 2025-03-12 15:23:50.851 2025-03-29 22:39:51.185 \N Very cool! I forget that the figures in Bitcoin worked on stuff before Bitcoin so it's definitely interesting to see what some of the early devs worked on in the past https://example.com/ 1729 435276 435276.435296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9937690660047 0 \N \N f 0 \N 0 174967676 0 f f \N \N \N \N 435276 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435306 2025-03-12 15:31:32.046 2025-03-29 22:39:51.185 \N ![20240122_011214.jpg](https://m.stacker.news/13298) https://example.com/ 9655 433905 433066.433088.433456.433557.433869.433905.435306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2398994298757 0 \N \N f 206539128 \N 2 208816093 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435307 2025-03-12 15:32:10.605 2025-03-29 22:39:51.185 \N Some issues with certain P2P exchanges:\n\nNow that blocks are full every time an the time, \n\nLocalCoinSwap - They now use a static bitcoin address per account. To get financial privacy where all your transactions are not easily identified through chain analysis, creating a new account for each trade is possible, just not really manageable. There is no Replace By Fee (RBF), though you can adjust the slder to adjust the fees.\n\nNoones - Haven't tried it. They have geofenced the U.S.A. They ID require verification. To me, it was no loss when LocalBitcoins, and then Paxful shut down -- as I don't use Verification mandatory exchanges, ... P2P or otherwise. It does support LN though, so it will likely gain some \n\nRoboSats - mobile app is deemed "alpha" yet.\n\nMany of them are fairly decent, but have too little liquidity (e.g., HodlHodl). Makes it hard to find a counterparty.\n \nI could go on.\n https://example.com/ 4128 435298 435154.435288.435298.435307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.74045713778761 0 \N \N f 0 \N 0 183094742 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435317 2025-03-12 15:36:05.99 2025-03-29 22:39:51.185 \N Agreed, especially twatter links that have literally zero content, just a one liner with no source.\n\nThe cost to post should definitely be increased. https://example.com/ 8945 434954 434627.434954.435317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.043510009554 0 \N \N f 0 \N 0 69434744 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435322 2025-03-12 15:40:51.467 2025-03-29 22:39:51.185 \N Untouchables, by Narendra Jadhav. I don't know much about India and I want to change that. I also love a good memoir. https://example.com/ 21222 434650 434627.434650.435322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8219847771865 0 \N \N f 0 \N 0 183288525 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435325 2025-03-12 15:41:39.947 2025-03-29 22:39:51.185 \N There are many layers to this, but as I see it: The people who are the exact opposite of the toxic maxis, are the people with the voice in mainstream society and media. Therefore, they are the ones who have the most influence over the general opinion in society, and over the laws. Them getting orange-pilled is the best chance for hyperbitcoinization. If they instead fight bitcoin too much, making it illegal in most of the world, most people won't use it, and its value will fall drastically. It will of course still work, but maybe at 5% of current value, and no part can accept it legally, stifling adoption. Add to that the military power of this majority, that could threaten the other nations to quit bitcoining and to pass bans there too.\n\nI believe we're in a hurry if we want the "bright orange future", and we don't only need to advocate bitcoin to everyone in general, but to the ones that the toxic maxis hate in particular. That is not done by harsh retorts, blocking and bragging that Bitcoin is invincible (while advocating staying humble). Sure the network is close to invincible, but the value and usefulness of it is definitely not. https://example.com/ 16939 435290 434795.434798.435179.435194.435204.435239.435290.435325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9063876253735 0 \N \N f 346357627 \N 4 177928551 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435320 2025-03-12 15:39:21.332 2025-03-29 22:39:51.185 \N Nice meme indeed...\nI want to mention:\n- I am not here to be loved, but to open the eyes of many people\n- I am not here to be followed, but to teach other people not just about Bitcoin but also how to FUCK THE SYSTEM and break the chains of slavery.\n- I am not here to earn sats, but to give sats to those that prove they've done proof of work.\n- I am not here to piss people off (except shitcoiners), but to make fun and memes in situations when is needed. If somebody is pissed off because of my words, is their problem not mine, that means my words detected bullshit and they feel hurt. https://example.com/ 13544 435314 435314.435320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3189196852954 0 \N \N f 467526967 \N 5 241355261 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2569 2022-10-16 01:16:06.402 2025-03-29 22:39:51.185 \N Man, I love me some good SF. You're right, I enjoyed the books listed in the Bitcoin Astronomy post but they're not necessarily my favorites. I love the classics -- Asimov, Bester, Clarke (to quote Martin Prince). Other favorite authors are Neal Stephenson, Ursula K Le Guin, Vernor Vinge -- almost every book they've put out is great. One problem with SF is that there are authors I love whose books I don't recommend because most people probably wouldn't like them. For example, I adore Greg Egan, but I acknowledge that if you like well-realized characters or good prose then you might be disappointed by Egan because all he can offer you is absolutely mind-blowing ideas :) (I feel similarly about the Three Body Problem series...) Or Peter Watts, whose books are the few which leave me feeling confused, but in a good way.\n\nRE: scientists & researchers -- I haven't seen them applying bitcoin to their work yet, I think first they have to apply their methods to bitcoin. That's happening! Check out Micah Warren's [textbook on bitcoin](https://www.amazon.com/Bitcoin-Game-Theoretic-Analysis-Gruyter-Textbook/dp/3110772833), or the increasing number of papers out there analyzing bitcoin from all sorts of perspectives. Hopefully as this kind of work becomes more normalized, the flow can reverse, and bitcoin-y ideas can infect the academy wholesale :) https://example.com/ 20245 2560 2553.2554.2560.2569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1869365850422 0 \N \N f 0 \N 0 228434790 0 f f \N \N \N \N 2553 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435334 2025-03-12 15:45:03.715 2025-03-29 22:39:51.185 \N We don't. Down votes are always use as a tool to suppress others even if the initial goal is not that, look at that cesspool of reddit for example \n\n> but how do SN prevents spam?\n\nBy doing what bitcoin does, incentivize good behavior as much as we can and make it extremely expensive to spam and flood SN with junk posts/links https://example.com/ 659 435321 435217.435275.435277.435295.435321.435334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4307828259919 0 \N \N f 0 \N 0 37325617 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435332 2025-03-12 15:44:39.221 2025-03-29 22:39:51.185 \N SN: the month of August\n\nhttps://imgprxy.stacker.news/XZfWHNCat10sUEgC1M6Vbwvb8lPgDVfg2RnUjgsQR4E/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9qNDlGSWIyLnBuZw https://example.com/ 7389 435328 435328.435332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0177042374871 0 \N \N f 6797358 \N 1 234682717 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435336 2025-03-12 15:45:38.327 2025-03-29 22:39:51.185 \N I launched a 24/7 LoFi radio station, and with some help from the community was able to show real-time data from the mempool.\n\nhttps://www.youtube.com/live/h69snvlGLXU?feature=share\n\nNext step is to add more data like reachable nodes, sats per USD or the time to next halving. \n\nIt could also gradually become a digital sticker wall. Slowly adding more stickers of BTC brands (or small post-its) to the animation :) https://example.com/ 1145 435306 433066.433088.433456.433557.433869.433905.435306.435336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1183165013439 0 \N \N f 105016569 \N 1 101522559 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1680 2022-09-22 11:56:37.467 2025-03-29 22:39:51.186 \N Find a natural park in some mountains, look at alltrails or similar app, find some cool hikes and find a trail between them, depending on how much time you want to spend. \nThings you want to stop by are lakes, cool vistas, waterfalls, historical buildings...\n\nIf you are in Netherlands, then just take train to another country that has mountains 😅 https://example.com/ 9335 1656 1656.1680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6469446404682 0 \N \N f 120976375 \N 1 50208324 0 f f \N \N \N \N 1656 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435333 2025-03-12 15:44:58.383 2025-03-29 22:39:51.186 \N Still less than one payment per second.\n\nWe still have work to do.\n\n https://example.com/ 11288 435315 434791.435315.435333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.55854570898456 0 \N \N f 325132881 \N 3 152486131 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435337 2025-03-12 15:46:51.711 2025-03-29 22:39:51.186 \N Read Viktor Frankl, he found his mission even in a concentration camp https://example.com/ 21116 435330 434795.434798.435179.435194.435204.435239.435290.435325.435330.435337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8635445624772 0 \N \N f 146857796 \N 2 132591535 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 137101 2024-03-05 19:23:35.195 2025-03-29 22:39:47.916 Interview: Phil Zimmermann on Bitcoin, Cryptography & PGP Phil Zimmermann is the creator of PGP and the man who fought the US government in court to normalize open source cryptography. \n\nWithout his courageous actions, Satoshi Nakamoto wouldn't have had access to all the cryptography libraries that he used (such as ECDSA) and couldn't have hidden his identity (he used PGP and Tor for his communications).\n\nI had the honor to interview Phil Zimmermann in Prague during the Proof of Work Summit and I'm happy and proud to share the recording with you. I've asked him about Bitcoin, I've asked him about Hal Finney (who was his first employee at PGP), and we've also talked about other cryptography projects that he finds interesting. He's the kind of cypherpunk who cares about privacy much more than creating sound money, and his work definitely reflects this path.\n\nThe interview is available on YouTube, Apple Podcasts & Spotify (as well as many other podcast apps). If you want to search for it yourselves, look for Bitcoin Takeover Podcast S14 E15 with Phil Zimmermann. \n\nHere you can find all the links, as well as time stamps and a full transcript: https://bitcoin-takeover.com/s14-e15-phil-zimmermann-on-bitcoin-cryptography-pgp/\n\nIf you like this interview, please subscribe and leave your feedback as a comment! \N 14260 \N 137101 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2199337057947 0 \N \N f 0 \N 0 14353660 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435341 2025-03-12 15:47:40.212 2025-03-29 22:39:51.186 \N It will take a while to get through _Broken Money_ at the pace we're going -- a few months, assuming people continue to care enough to show up to it. I don't have plans after that, though I expect I'll have a lot of insights from the experience and will have some new ideas.\n\nYou probably knew this, but just in case any reader doesn't: I have no formal existence as the _SN Book Club Guy_ or any such thing -- I just thought this book was worthy of a deep exploration and SN might be a good place to do it. Anyone who is similarly moved can just jump in and seize the day. \n\nThe only advice I'd have for anyone is that it's actually a fair amount of work, so you might want to put up a test balloon (by posting, soliciting in the Saloon, etc.) to see if there's an appetite for your book given what's going on. Stackers are busy, so some of them might not have the time. But they're also very generous (thanks again to two especially generous stackers!) so you never know :) https://example.com/ 20577 435340 435340.435341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7006730001681 0 \N \N f 0 \N 0 53947865 0 f f \N \N \N \N 435340 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435356 2025-03-12 16:08:54.938 2025-03-29 22:39:51.186 \N I have yet to see so many ignorant takes all at once on this site. Holy shit congrats, seriously. https://example.com/ 21814 435346 435217.435346.435356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4307821671196 0 \N \N f 0 \N 0 75637970 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435498 2025-03-12 18:28:34.631 2025-03-29 22:39:51.186 \N ime being funny requires an awkward period of obvious intent to learn how to hide intent and the impact of intent - and to deepen intuition about humor.\n\nWhen I was grocery bagger, in addition to bagging, I had to talk people into letting me take their groceries to their car. It was boring and my mind needs a task, so I'd play a game where I tried to make each of them laugh. In the end what I learned is that humor largely comes from consistently exploring something deeply. Everything beyond what's assumed is surprising (often [benignly threatening](https://en.wikipedia.org/wiki/Theories_of_humor#Benign_violation_theory)) and [incongruent](https://en.wikipedia.org/wiki/Theories_of_humor#Incongruity_theory) merely at a factual level which is 9/10s of humor. The other 10th is emphasis/delivery if I'm not missing other things. https://example.com/ 9426 435496 435496.435498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.39342923477707 0 \N \N f 0 \N 0 217021386 0 f f \N \N \N \N 435496 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435350 2025-03-12 15:58:32.849 2025-03-29 22:39:51.186 \N I know Buffet gets a lot of fair criticism, but one of the things he often said was he liked businesses that would work regardless of whether the person at the helm was great or not. He would pick great businesses over great founders. Bonus if you can tick both boxes.\n\nProbably doesn’t work so well as a principle in startup world, but it is a useful counterbalance for the above mentality of favouring people… if putting too much weight on someone being charismatic & energetic.\n\nIn comparison to a project with already significant traction and already on a growth trajectory. \n\nThe influence of the founder is far less of importance in the success of the startup, when it’s solving customers problems efficiently. https://example.com/ 8059 435217 435217.435350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6965740474374 0 \N \N f 25629284 \N 1 235083836 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435344 2025-03-12 15:48:46.752 2025-03-29 22:39:51.186 \N Yes...the person behind is like "the business card of the idea".\n\nIn Hungarian language it exist a proverb, which say "don't listen to what he says, but who says it".\nI think your quote is the "business synonyme" of this proverb https://example.com/ 21639 435333 434791.435315.435333.435344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0255025209443 0 \N \N f 131363259 \N 2 193769622 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454291 2025-03-26 10:46:28.092 2025-03-29 22:39:47.908 What To Improve On The Design / Functionality?! I've made a second, larger version (~1L) based off of the smaller pouch (~0.5L) I've posted about before:\n\n![](https://m.stacker.news/51286)\n\nI actually feel comfortable and confident enough to have a try at fabricating two smaller "real" pouches out of original items from the brand I'm rocking, which means that I can craft my own gear using original hardware, making it a seamless match!\n\nI'm overall pretty happy with both the looks and functionality, but I'd like to hear if the "looks" can be "upped" even more; I'm already planning on adding some cord to the zippers which would increase the grippiness and which would further act as "silencers" to the pullers.\n\nAny thoughts?\n\n![](https://m.stacker.news/51287)\n\n![](https://m.stacker.news/51288)\n\n![](https://m.stacker.news/51289)\n\n![](https://m.stacker.news/51290)\n\n![](https://m.stacker.news/51291)\n\n![](https://m.stacker.news/51292) \N 21578 \N 454291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.959336346707 0 \N \N f 0 \N 0 60859215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435360 2025-03-12 16:11:20.347 2025-03-29 22:39:51.185 \N I’m excited to listen in! https://example.com/ 17095 434538 433844.434177.434538.435360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.85267287700379 0 \N \N f 51531640 \N 1 94021152 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435363 2025-03-12 16:13:46.63 2025-03-29 22:39:51.185 \N If you're looking for suggestions - I would really love having some kind of advanced search. It would allow for searches like:\nsearching for a phrase (seems impossible now, I tried by using quotes, which often works) \nsearch for post/comment in a specific time period\nsearching for x without y (like the "none of these words" search on google advanced search)\nsearching without a search phrase - i.e., just show the results, ORDERED the way I want (for instance, sats) for the time period.\n\nI've had a hard time finding posts that I know were there, I just couldn't figure out the right things to search for. https://example.com/ 14663 434994 434994.435363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7616256240654 0 \N \N f 0 \N 0 121110092 0 f f \N \N \N \N 434994 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435358 2025-03-12 16:09:43.743 2025-03-29 22:39:51.186 \N I started my new job this week and I'm working hard to get up to speed and make a strong initial impression. Along with this, I'm cleaning up my sleeping/exercise habits and making more of an effort to take small breaks throughout the day and go outside + enjoy nature.\n\nFrom a hobby/passion project perspective, I'm working with a friend on launching financial education courses that teach core financial concepts using first principles. Not financial advice, but rather detailed guides on key ideas & questions that we feel are especially relevant in 2023. We've noticed that formal education prioritizes information recall rather than comprehensive understanding, which does no one any favors when the topics can be as complex as those from the financial world. \n\nOne thing that always bothered me about public education was the implied but required acceptance of the lesson's conclusions and the minimal space and time to actively question them. A simplified example would be the following statement, "the Fed targets a 2% inflation rate because mild inflation is good for the economy." \n\nRight from the get-go, students need to accept that the Fed knows what it's doing, the 2% inflation rate is rooted in some evidence or science, and inflation is good (which implies deflation is bad). When the most basic tenants of economic theory are assumed rather than justified, it's hard to reconcile what we experience on a daily basis with the material that we're told is effectively gospel.\n\nSo, my friend and I are looking to create content that teaches things differently and makes no bones about what should be passively assumed vs. what should be actively justified. \n\nWe're excited to get started and are taking the next few months to write the content and gameplan a launch. https://example.com/ 21734 435352 435217.435257.435260.435352.435358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9456373076591 0 \N \N f 39213601 \N 1 57960476 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435361 2025-03-12 16:13:02.524 2025-03-29 22:39:51.186 \N Drivechains just kill bitcoin incentive models https://example.com/ 721 435357 435357.435361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6195153543337 0 \N \N f 30573782 \N 1 246911495 0 f f \N \N \N \N 435357 \N 0 0 \N \N f \N 2025-03-19 09:30:04.909 f \N \N \N 0 0 0 0 1 0 0 435374 2025-03-12 16:27:58.129 2025-03-29 22:39:47.908 Airbtc AMA We are here to answer your questions and listen to your suggestions. \N 17411 \N 435374 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.5765392081114 0 \N \N f 0 \N 0 49277167 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 433032 2025-03-10 18:58:01.069 2025-03-29 22:39:51.185 \N Finishing up a project for the Boltfun hackathon. Checking out some of the projects.\n\nPlanning out the next month for personal and dev growth. https://example.com/ 15521 432992 432920.432980.432992.433032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1175302010119 0 \N \N f 743201027 \N 5 148840167 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 137108 2024-03-05 19:30:56.815 2025-03-29 22:39:47.908 Do you run your own node? [Recently](https://twitter.com/KyleOfTheCorn/status/1564099694665633792) I made a poll on Twitter asking "Do you run your own node?" For those who didn't, I wanted to capture why not. I went into this with the assumption that most of the people who don't run their own node would be because they don't have any technical knowledge. However, I think I may have uncovered something which is exacerbating this problem.\n\n## The Rise of the Pi Nodes\n\nSomething really cool happened in the past few years, the combination of Lightning Network's growth and the ability to run a Bitcoin and Lightning Network node on a Raspberry Pi 4. This duo made DIY node building popular, and with the cheap and widely available Raspberry Pi, multiple projects sprung up offering an all-in-one software stack for running the Bitcoin client, a Lightning Network client, and channel management.\n\n[RaspiBlitz](https://raspiblitz.org/) was probably what started this trend, since it made it easy for anyone to come along and acquire the parts list and follow some basic instructions to get a Lightning node set up. Plus it has the ability to put a really cool screen on top of it. Before RaspiBlitz, you had to not only figure out what to purchase, but also install the OS, format the drives, and install all the services you wanted manually. Being able to flash a SD card and follow some quick setup prompts was (and is) a fantastic improvement.\n\nThen what really made running a Lightning Node *popular* was [Umbrel](https://umbrel.com/). You can even go to [Bitcoin Visuals](https://bitcoinvisuals.com/ln-nodes) and see the ramping up in 2021 was mostly driven by new Umbrel nodes coming online, according to [Umbrel's data](https://bitcoinmagazine.com/culture/90-of-lightning-nodes-launched-in-the-last-year-run-on-umbrel). Now I need to mention, this is great! The more nodes there are that are being used by their operators, the (slightly) more decentralized the network becomes. It would be better if Umbrel were [FOSS](https://www.gnu.org/philosophy/philosophy.html), but at least we're getting adoption and hopefully some of those who started out with Umbrel switch to OSs that deeply care about freedom.\n\nHowever, building and running the Pi nodes has mainly been for the tech savvy, the tinkerers, the geeks.\n\n## The Ones Left Behind\n\nWith popularity around running a Bitcoin/Lightning node on a Raspberry Pi growing, it actually drowned out the message of how easy it is to take self custory *without* having to spend a dime on new hardware or worry about maintaining an always-on computer. So many now think that the only way to run a node is to buy a dedicated machine that needs to be online 24/7, and that's literally enough to prevent them from looking any further.\n\nThese are the people that *need to get their coins off exchanges* but feel that they can't because either they can't find Raspberry Pis for sale, can't afford it, or just wouldn't know how even with the best instructions. At best they may have a Ledger or Trezor where they think they're taking self custody, but ultimately are relying on someone else's node.\n\n## Why Run a Node?\n\nThe network is already decentralized, why should it even matter? While it is true that you running your own node will probably not make much of a (positive) dent in the added security to the network, that doesn't mean that the importance of running a node should be ignored. Here are my top-3 reasons on why even the non-tech-savvy should still run their own node for personal usage.\n\n### 1. Audit the chain\n\nWhen you sync a node from genesis, your node is effectively retaining and building upon a full audit of every coin ever spent. No one can manipulate the supply and affect your node, because it would simply reject the attempt. At any time, you can audit the entire supply with `gettxoutsetinfo`.\n\n### 2. Validate received transactions\n\nFor the most part, users would be running Bitcoin Core at home to be able to receive coins. Building off the first reason, they can be ensured that they are actually in possession of their coins if their node which has synced from genesis tells them.\n\n### 3. Increase privacy\n\nYou don't have to be a network guru simply to *increase* your privacy when using Bitcoin. Going from relying on someone else's node, who is able to see all of your addresses (used and unused) and their balances, to your own is a massive step in improving the privacy of the user.\n\n## Complacency\n\nThere is also the danger of becoming complacent when already running your own node. It unfortunately doesn't take much to undo the privacy gains of previously running your own node. Throwing your xpub in a wallet which isn't connected to your node gives whoever is controlling that node the ability to see all of your addresses and balances, forever. Running a node is like fighting for privacy. It takes effort to continue and it's easy to slip up and take the easy path for convenience.\n\nIf you stop using your node, it loses its effectiveness at enforcing consensus.\n\nThink about that for a moment. Why don't we care if a 3-letter agency spins up 100k Bitcoin nodes and then change them to their own set of rules? Because no one would use them. No one would care if those nodes were to fall off the network since they *don't matter*. Only nodes that are actually used matter.\n\n## A Call to Action\n\nIf you're a Bitcoiner who doesn't run your own node, possibly because you thought that it meant you have to purchase a Raspberry Pi, don't worry! You can still *run a node* by installing Bitcoin Core on your day-to-day computer and still shut it down at night or over the weekend, and only use it when you need it. You won't harm the network by using your node this way. Head to [Bitcoin Core](https://bitcoincore.org/en/download/) to download the latest release for your operating system and really make an attempt to verify the download. This ensures that you're actually *running Bitcoin* and not something else!\n\nIf you're a Bitcoiner who does run your own node, you're probably already tech savvy, or just enough to figure it out on your own. You can help others with just getting to self custody.\n\nHere's what you can do to help: \n- Stress the importance of running your own node\n- Suggest starting off by running Bitcoin Core on their personal computer that they already have\n- Answer questions about storage requirements and syncing, and CPU and network utilization or point them to [resources](https://bitcoin.org/en/full-node#minimum-requirements) that answer them\n\nThe point should be to get more people taking self custody by not relying on someone else's node. If you're sending coins to your hardware wallet but your wallet isn't configured to use your own node, I wouldn't even call that taking self custody.\n \N 6537 \N 137108 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9690442925615 0 \N \N f 0 \N 0 27119630 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435385 2025-03-12 16:37:05.323 2025-03-29 22:39:51.185 \N I just finished my technical review of Chapter 8 of Mastering Bitcoin 3rd Edition. The next chapter will be fun, it’s about Transaction Fees. https://example.com/ 937 435370 435046.435365.435370.435385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8225500629695 0 \N \N f 0 \N 0 247478903 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435388 2025-03-12 16:38:23.647 2025-03-29 22:39:51.185 \N Dr. Baker popularized the carnivore (all meat) diet by going on Joe Rogan's podcast 6 years ago and making a killer case for it: https://youtu.be/Yj_Bc9hdHa0\n\nHe's the man for all questions MEAT! https://example.com/ 20636 435384 435231.435384.435388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.544929691841531 0 \N \N f 0 \N 0 177538607 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435389 2025-03-12 16:39:02.442 2025-03-29 22:39:51.185 \N Zap undos 👍 I always get nervous when I hover over the 10k/100k zap buttons lol https://example.com/ 992 434124 434124.435389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2237435447722 0 \N \N f 0 \N 0 20669284 0 f f \N \N \N \N 434124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435395 2025-03-12 16:43:03.776 2025-03-29 22:39:51.185 \N Yeehaw, a new territory! \nhttps://stacker.news/items/717827\n**~AskSN** brought back by @hasherstacker! https://example.com/ 16513 435392 435392.435395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7422936316301 0 \N \N f 288271321 \N 2 14611390 0 f f \N \N \N \N 435392 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1679 2022-09-22 11:46:35.134 2025-03-29 22:39:51.185 \N [![burak-ark.jpg](https://i.postimg.cc/26dQvR6r/burak-ark.jpg)](https://postimg.cc/G82TwfG5) https://example.com/ 17237 1672 1656.1657.1672.1679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3991467183328 0 \N \N f 0 \N 0 46234687 0 f f \N \N \N \N 1656 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435414 2025-03-12 16:56:24.717 2025-03-29 22:39:47.909 What Role Should Governments Play in Markets? Until recently, I was under the impression that America was founded on the principles of free market capitalism, whereby private individuals and companies made their own economic decisions without a central government or state actor tipping the scales in favor of certain companies or individuals over others.\n\nAfter reading [Americana](https://www.bookmarked.club/books/americana), it’s clear to me that I was wrong. The author Bhu Srinivasan makes the case from the earliest days of America’s existence, state and federal governments have played key roles in funding, protecting, and advancing US technology, as well as over-riding property rights, and regulating industries that become too powerful.\n\nI was under the impression that this kind of state involvement in markets was mostly a modern phenomenon, but the track record of great American innovations that relied on state support tells me otherwise.\n\nBelow are a few interesting examples Bhu highlights in his book of government intervention in the early days of America…\n\n##### Examples of Government Intervention in American Markets\n\n- In the 1790s, New York offered monopoly rights to entrepreneurs to create a steamboat that could successfully travel from Manhattan to Albany, enabling people to settle the interior of the state at scale. The first successful voyage in 1807 granted Robert Livingston and Robert Fulton a monopoly on all steamboat traffic in New York for 20 years.\n- In 1817, the state of New York funded America’s first long-distance canal with $7.8 million of debt, at a time when the entire US federal government budget was only $8 million. This project did work, and set off a chain-reaction of other states (Maryland, Pennsylvania, Ohio, and others) to fund similar canal projects, which ended up being responsible for 10x-ing the populations of the region now known as America’s Midwest.\n- In the early 1830s when entrepreneurs began trying to build railroads in America, states granted eminent domain rights to companies that forced property owners to sell their land in order to enable more direct rail lines.\n- In 1843 the US House of Representatives funded Samuel Morse with $30,000 to build a telegraph that would work across long distances in outdoor settings. Morse’s success eventually enabled instant communication across America.\n- The tariff act of 1870 imposed a $28/ton tariff on imported British steel (which cost $30-$40/ton without the tariff) to allow American steel producers to be profitable while they became more efficient and competitive. This worked, but meant that Americans were forced to pay almost twice as much for their steel in the late 1800s.\n- Governments created the limited-liability corporation, patents, copyrights, trademark rights that established the rules of American business, allowing inventors and entrepreneurs to earn for their work despite none of these concepts having any physical or natural precedent. These patents played crucial roles in the development of the electric light among other innovations.\n- The Sherman Act of 1890 forced monopoly businesses in many industries (which were originally legal) to unwind their consolidated powers. Standard Oil is the most famous example, but nearly every industrial vertical was trending towards monopoly “trusts” in the late 1800s prior to this government action.\n- Poor sanitation conditions in US meat-packing factories and unknown substances in patent medicines in the late 1800s led to the creation of the “Federal Meat Inspection Act” and “Pure Food and Drug Act”, which gave the federal government authority over quality assurance for “private products meant for private consumption”, eventually paving the way for the creation of the FDA.\n\n##### Counterpoints\n\n- The automobile seems to have been mostly a free-market driven innovation. Henry Ford raised $28,000 from private investors to start Ford, and never raised another dollar for the rest of his life.\n- Prohibition in America was another example of government intervention, but ultimately created a temporary push back on government power, whereby many went underground to consume alcohol, often sourcing it from lower quality vendors, which countered the government food and drug regulations that were introduced a couple decades earlier.\n\nThere is a particular quote from Bhu I like which I think provides helpful nuance in understanding the role of capitalism in America over the last 400 years:\n\n> “American Capitalism was not intellectually rigid. It was never the laissez-faire laboratory of purist, principled imaginations. The strength of the system came through its pragmatism and flexibility, juggling competing and contradictory ideas… and eventually finding political solutions to seemingly intractable issues, especially after the scars of the civil war. Just as successful species adapted to changes in their environment, democracy would shape capitalism to adapt to social conditions, with compromise emerging as the best form of insurance against any risk of revolution. This middle ground, forrged by the clashing interactions of capitalism and democracy, a free people acting to check free markets, would give rise to the regulatory framework that would govern its economic system.”\n\nA few questions for stackers:\n\n- What role do you think governments should play in free markets?\n- Are there any examples of free markets successfully preventing monopolies and ensuring transparency in food/drug products without any government intervention?\n- If America’s federal government never took steps to fund/protect/nurture early innovations, would America be more, less, or equally as successful as it is today?\n- What catalysts have led to the shifting role of America’s federal government from a position of nurturing and funding innovation to limiting innovation today? \N 20811 \N 435414 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 3.53340400740507 0 \N \N f 0 \N 0 138846146 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435403 2025-03-12 16:47:40.528 2025-03-29 22:39:51.185 \N Found SN a few months ago as I continue my BTC learning journey. Most days I feel like I get some solid incite from this community; other times I know I'm missing some of the importance due to my lack of technical ability. \n\nToday I found several articles on SN VERY interesting leading me to learn more about Taproot and Sigwit, found a new blockheight tool, and a little bit of music. \n\nThank you SN community for letting this lowly sats stacker creep along. I hope to one day contribute as much as I've received and pass on what I know to my friends, family, and IRL community. https://example.com/ 2088 435402 435402.435403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0478914731786 0 \N \N f 0 \N 0 105342798 0 f f \N \N \N \N 435402 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435415 2025-03-12 16:56:34.804 2025-03-29 22:39:51.185 \N That certainly would be simpler. Maybe the US Attorney for the Southern District Of New York will say "Sorry. We were wrong and we mislead everyone. We apologize" That's my fantasy. \nOn the other hand, in the long run we will all be better off if we bite the bullet now and just refuse all custodial solutions. We can strive for real self sovereignty. I know there's a trade off in convenience, and it may slow adoption, though. https://example.com/ 9920 435412 435412.435415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8839108385947 0 \N \N f 0 \N 0 19663127 0 f f \N \N \N \N 435412 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435407 2025-03-12 16:53:10.759 2025-03-29 22:39:51.185 \N > why can't he just deploy BIP-300 and have his drivechains since apparently nobody needs to be convinced of anything to activate a soft fork?\n\nI think his point is that only *miners* need to run it. "Regular" nodes can go push daisies because they don't choose what goes into blocks, miners do. Note: I don't personally think regular nodes can "go push daisies," I am just trying to use colorful language to represent what I understand Paul's opinion to be.\n\nAlso, I think this "miners-only" point is related to the fact that when soft forks are up for activation, regular nodes aren't asked to do any signalling -- only miners are. So, from Paul's perspective (as I understand it), he only needs to convince *miners* to run his software, no one else. Unfortunately for him, it doesn't seem like miners want to run his software either.\n\nI suspect miners like having the regular, constant stream of professional updates they get by running Bitcoin Core. If they instead ran Paul's Mainchain software (which is his fork of Bitcoin Core with bip300), they would have to rely on him and his small team to upstream the upgrades made by Core. And that sounds dangerous and unwise.\n\nSo they just stick with Core, and thus can't be bothered running his bip300 software. I believe Paul has stated that he has personally *discussed* bip300 with a bunch of miners, and almost all of the ones he has talked to about it are on board with the idea; except for the part about running something other than Bitcoin Core. https://example.com/ 16965 435138 435128.435138.435407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.632378429486664 0 \N \N f 127240585 \N 1 155746628 0 f f \N \N \N \N 435128 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435433 2025-03-12 17:12:02.245 2025-03-29 22:39:47.909 What's to stop competing coins I'm sure you have all thought of this before but I haven't. If Bitcoin is so great what's to stop a different Satoshi Angel from immaculate conception of a similar idea. Let's call it Bytecoin. Let's say Bytecoin drops next year and in 10 years is ifinirly more popular and more utilized than Bitcoin. Your Bitcoin still has value but but will h less demand for Bitcoin and more for Bytecoin it not worth as much anymore. Would it really be that difficult to copy the Bitcoin idea? It seems like real success would be whatever coin is adopted more widely. Thoughts? \N 14818 \N 435433 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.592575530196235 0 \N \N f 0 \N 0 62195072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435419 2025-03-12 17:02:09.794 2025-03-29 22:39:51.185 \N That was a very good article! I really like how it clearly demonstrates how the Fed setting interest rates (price controls) and inflating the money supply modifies our behavior. \n\nFed price controls --> Artificially cheap loans --> More VC investment --> Growth over profit Big tech companies --> Artificially cheap products/services --> Consumerist millennial lifestyle \n\nThe Fed basically made the consoomer meme possible\n![](https://miro.medium.com/max/2400/1*ArIXjva0LeqvVAGWTPAb0w.png) https://example.com/ 13216 435411 435411.435419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.411292106606638 0 \N \N f 0 \N 0 82557427 0 f f \N \N \N \N 435411 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435432 2025-03-12 17:11:42.449 2025-03-29 22:39:51.185 \N Dear my lady luck, \n\nWhat haven't we listened to?\n\nSincerely,\nk00b https://example.com/ 16296 435344 434791.435315.435333.435344.435432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.288613233088384 0 \N \N f 118877208 \N 1 12486051 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435452 2025-03-12 17:31:25.405 2025-03-29 22:39:47.909 SN Saturday Newsletter 5/25/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Joy of Compounding](https://stacker.news/items/547441)\n - When a growth process is repeated, where the end point of the last iteration is the start point for the next, the result is exponential growth. [@CarlBMenger](https://stacker.news/CarlBMenger) helps us find compounding everywhere.\n - 15.3k sats \\ 45 comments \\ [@CarlBMenger](https://stacker.news/CarlBMenger)\n2. [Privacy Judo](https://stacker.news/items/548764)\n - Is there a Judo-like strategy for privacy, where the attacker's strength is used against them? [@siggy47](https://stacker.news/siggy47) ponders what that might look like.\n - 3.9k sats \\ 49 comments \\ [@siggy47](https://stacker.news/siggy47)\n3. [Going Dark: The war on encryption is on the rise — Mullvad](https://stacker.news/items/546405)\n - Governments seek to automate their jobs by criminalizing privacy and continuing the involuntary draft of technology companies. Mullvad summarizes the corrupt, incompetent, manipulative attempts recently threatening privacy in Europe.\n - 2.9k sats \\ 15 comments \\ [@sefiro](https://stacker.news/sefiro)\n4. [Privacy, human rights, and Tornado Cash - Molly White](https://stacker.news/items/549098)\n - Even Molly White, a consumer protection advocate and blockchain critic, is troubled by the privacy implications of the [Tornado Cash judgement](https://stacker.news/items/539171). If producing financial privacy code is illegal, we won't have digital financial privacy.\n - 5.4k sats \\ 12 comments \\ [@StillStackinAfterAllTheseYears](https://stacker.news/StillStackinAfterAllTheseYears)\n5. [Braidpool: Decentralized Bitcoin Mining Pool](https://stacker.news/items/550109)\n - Braidpool is a decentralized bitcoin mining pool that uses a merge-mined block-[DAG](https://en.wikipedia.org/wiki/Directed_acyclic_graph), rather than a block-chain, to do accounting of mining shares, and [FROST multisig](https://eprint.iacr.org/2020/852.pdf) to non-custodially perform miner payouts. [@teemupleb](https://stacker.news/teemupleb) does an awesome overview.\n - 11.7k sats \\ 7 comments \\ [@teemupleb](https://stacker.news/teemupleb)\n\n\n##### Don't miss\n- [Leaving My SN Bubble: Bitcoin Meetup At The Melville Deli](https://stacker.news/items/545479)\n- [Using Graphene without a SIM for 4 years](https://stacker.news/items/545646)\n- [Nostr is not decentralized nor censorship-resistant](https://stacker.news/items/547609)\n- [Bitcoin is now a threat to us all](https://stacker.news/items/549620)\n- [TPS Counter: help debunk the "7 tps" myth](https://stacker.news/items/547478)\n- [The Evil Baby Attack](https://stacker.news/items/549576)\n- [First post and bitcoin custody](https://stacker.news/items/544326)\n- [The Paradox of Bitcoin Adoption](https://stacker.news/items/550409)\n- [Discreet Log Contracts settled with Chaumian ECash](https://stacker.news/items/544786)\n- [Julian Assange wins right to appeal against extradition to US](https://stacker.news/items/545503)\n- [Hedgehog Slideshow and Demo](https://stacker.news/items/547774)\n- [This Man Did Not Invent Bitcoin (NY Times)](https://stacker.news/items/546883)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Connect SN wallet for autowithdraw to your Core Lightning (CLN) node via CLNRest](https://stacker.news/items/545926)\n- [SN and the Zen of 1sat=1sat](https://stacker.news/items/550268)\n- [Gaming Stacker News is Self-Defeating in the Long-Run](https://stacker.news/items/546904)\n- [What's your best Stacker News pitch?](https://stacker.news/items/548695)\n- [How much does SN know about me?](https://stacker.news/items/547115)\n- [Which territories will not survive next month? And next year?](https://stacker.news/items/548398)\n\n------\n\n##### Top Stackers\n1. [@Rsync25](https://stacker.news/Rsync25): 78.2k sats stacked\n2. [@Undisciplined](https://stacker.news/Undisciplined): 76.7k sats stacked\n3. [@k00b](https://stacker.news/k00b): 64k sats stacked\n4. [@grayruby](https://stacker.news/grayruby): 61.3k sats stacked\n5. [@0xbitcoiner](https://stacker.news/0xbitcoiner): 49.1k sats stacked\n\n------\n\n##### Top Spenders\n1. [@k00b](https://stacker.news/k00b): 142.1k sats spent\n2. [@AtlantisPleb](https://stacker.news/AtlantisPleb): 62.5k sats spent\n3. [@Undisciplined](https://stacker.news/Undisciplined): 56.9k sats spent\n4. [@grayruby](https://stacker.news/grayruby): 47.8k sats spent\n5. [@TNStacker](https://stacker.news/TNStacker): 37.2k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 363 days\n2. [@kepford](https://stacker.news/kepford): 306 days\n3. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 260 days\n4. [@elvismercury](https://stacker.news/elvismercury): 257 days\n5. [@Undisciplined](https://stacker.news/Undisciplined): 242 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 9348 \N 435452 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 8.27802206708174 0 \N \N f 0 \N 0 202265615 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2512 2022-10-14 11:26:09.33 2025-03-29 22:39:51.186 \N Day 24 of horseposting everyday\n\nHorse Stance: 2 minutes 30 seconds (Zero trembling but very painful in the end)\n\n𓃗\n\n\n\n![Horse Stance.jpg](https://m.stacker.news/8073) https://example.com/ 2543 2477 2473.2477.2512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9152294351957 0 \N \N f 0 \N 0 145571947 0 f f \N \N \N \N 2473 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435471 2025-03-12 17:52:17.38 2025-03-29 22:39:51.186 \N I am really glad the James Lavish AMA went so well. I was only able to pop in for about 10 minutes but I reviewed all the questions and James' comments after the fact. One of the better ones in my opinion. https://example.com/ 4654 435217 435217.435471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.72366672309685 0 \N \N f 227535514 \N 2 181810532 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2770 2022-10-19 21:01:45.746 2025-03-29 22:39:51.186 \N This would be great (h/t to @kr as well on this topic)\n\nI would love to be able to promote certain content and feature releases for my product on SN, and differentiate from more general questions/discussions/news. \n\nI am also happy to pay more to be featured without decay for a certain time length as well, and it would be great for a user to recognize the transparency and intent of my promoted product post as compared to other times when I'm happy to boost to help get visibility on a discussion or general question. All of which has been tremendously valuable thus far - SN is such a great community and I'm a big fan of everything you have/are building at SN. Looking forward to sending a mega-boost soon 😅🚀 https://example.com/ 9349 2751 2751.2770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1078869551473 0 \N \N f 173941395 \N 1 132804272 0 f f \N \N \N \N 2751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435455 2025-03-12 17:32:52.586 2025-03-29 22:39:47.909 The State is a Narcissist Was talking with my wife this morning about an old film on the JFK assassination we watched last night and of course the subject of the government came up. I don't have a theory on what happened or who was behind it but I can tell you one thing. The government was not interested in the public knowing the truth. What they were interested in was the public believing their story. The State can be called many things. A false god, an oppressor, the holder of the monopoly on violence but my lovely wife came up with one I hadn't heard before. It is also a narcissist. It must be the center of your life. It must be believed. It seeks only to continue to maintain control. Its goal is for you to believe in it. For you to believe it is necessary. For you to believe it is all powerful. If you don't trust it. If you don't believe in it. There is something wrong with you. You are the problem. You are the extremist. You are the crazy person. She went on to say that when the state starts to lose control it has to show its true colors. It begins to lash out. When people stop believing it panics. This is true of narcissists. I've never heard this perspective on the state. Its a good frame to use.\n\nIn democracies or relatively free nations the State depends on manipulation. When you look at more totalitarian states you are witnessing a State that is closer to failure. They have given up on manipulation and are forced to show their true colors. They are forced to use violence instead of just the threat of violence. \n\nOften people confuse governance with the State. Governance can be good but it needs to be voluntary. Governance is good but it should not hold a monopoly. Governance is good but it should not have a separate set of morals and rules that allow it to commit acts an individual cannot do. The State is a controlling narcissist that will kill you if you push it far enough. The question is, what do you do with this knowledge. \n\nI reject this narcissist. I reject this false god that would put itself in the place of the true God. I reject the framing created by the State. \N 21670 \N 435455 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.7703203274457 0 \N \N f 10493195 \N 1 240461377 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435469 2025-03-12 17:50:42.488 2025-03-29 22:39:47.91 Non-Criminal Discounts- LOL A friend just sent me this pic he saw on Reddit of a store in California that is taking a creative approach to the shoplifting issue. \n\n![](https://m.stacker.news/60550) \N 8423 \N 435469 \N \N \N \N \N \N \N \N news \N ACTIVE \N 20.6294866383262 0 \N \N f 0 \N 0 20264097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435464 2025-03-12 17:42:08.792 2025-03-29 22:39:51.186 \N My cats(12 in total) eat fish(sardine) today. They are yielding positive emotions, thanks to sardines. https://example.com/ 20881 434707 434707.435464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.16049433668761 0 \N \N f 0 \N 0 223338550 0 f f \N \N \N \N 434707 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435461 2025-03-12 17:36:42.4 2025-03-29 22:39:51.186 \N Contributing to bitcoin/lightning oss. Opened a PR on LDK's rust-lightning today, even though I have a final tomorrow this is much more compelling lol https://example.com/ 15049 435455 435455.435461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.994931572884 0 \N \N f 0 \N 0 10493195 0 f f \N \N \N \N 435455 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435462 2025-03-12 17:38:49.278 2025-03-29 22:39:51.186 \N ![20230830_104829.jpg](https://m.stacker.news/4834) https://example.com/ 21514 435237 435136.435237.435462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.56223760734925 0 \N \N f 0 \N 0 165293447 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435478 2025-03-12 18:01:26.022 2025-03-29 22:39:47.91 bitnodes.io tor node count continues to fall ![](https://m.stacker.news/40274)\n\n[bitnodes.io](https://bitnodes.io/dashboard/90d/)'s tor node count has continued to drop (down about 1k today, 10k in last 90 days). \n\n[Luke Dashjr](https://luke.dashjr.org/programs/bitcoin/files/charts/historical.html) and [21 Ninja](https://21.ninja/reachable-nodes/nodes-by-net-type/) node counts haven't reflected this drop off. \n\n![](https://m.stacker.news/40275)\n\n![](https://m.stacker.news/40276)\n\nAnyone know other places that publish data on reachable nodes (and aren't pulling data from bitnodes)? \N 13097 \N 435478 \N \N \N \N \N \N \N \N news \N ACTIVE \N 20.0234841207703 0 \N \N f 0 \N 0 239985837 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435479 2025-03-12 18:01:32.694 2025-03-29 22:39:47.91 My Bitcoin Journey Directory ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\nIn my quest to start making this territory’s newsletter more compact and manageable, I have begun to create separate directories for different topics. This one, however, is special to me, because I really enjoy hearing about how fellow stackers have discovered bitcoin, and how it has changed their lives. \n\nI am also hoping that reading these stories might inspire some of you to tell your own tales. Of course you should exercise caution about revealing personal details. I don’t need @Undisciplined to bombard the replies with “Nice try, fed.”\n\nIf you do post your story, I’ll include it in the next issue of the directory, unless @ek finally gives us editable posts.\n\n### My Bitcoin Journey\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n\n \N 17570 \N 435479 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.62721617005268 0 \N \N f 0 \N 0 50559604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2646 2022-10-17 21:32:01.744 2025-03-29 22:39:51.186 \N The branding is all @kr who has a career in marketing lol https://example.com/ 13574 2612 2612.2646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4151343083841 0 \N \N f 0 \N 0 246304238 0 f f \N \N \N \N 2612 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2740 2022-10-19 16:40:38.499 2025-03-29 22:39:51.186 \N Prostitution, sorry to say...\nThough I have decided that artists have shaved the world, so Art will definitely be the most important... take bitcoin, per say, though for many its a store of value and for others it is THE digital currency of the new era, none of this would have been possible if it wast for Art.\nThe world belongs to the artists. No matter how much artificial intelligence we will ever develop, there will always be needed that pleasure of having a human face and master mind behind the context... https://example.com/ 20864 2739 2734.2739.2740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0149833801051 0 \N \N f 0 \N 0 122509137 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435503 2025-03-12 18:31:33.048 2025-03-29 22:39:51.186 \N I worry that a ricochet effect occurs off the lid and onto the seat. I wish more lids were only large enough to cover the hole. I suppose they would be more appropriately considered plugs or corks instead of lids if they were designed that way. https://example.com/ 20669 435358 435217.435257.435260.435352.435358.435503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0457234177255117 0 \N \N f 0 \N 0 39213601 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435481 2025-03-12 18:12:08.316 2025-03-29 22:39:51.186 \N Well done!\n\nCare to share your multisig setup and inheritance strategy? Did you use different manufacturers? Are all signatories people you know?\n\nDo they use their regular key to sign, or does everyone have a specific key for the multisig? https://example.com/ 19663 435468 435458.435465.435468.435481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.50880934876518 0 \N \N f 247696697 \N 1 226543825 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435482 2025-03-12 18:12:51.366 2025-03-29 22:39:47.91 Guide - Public BTCPayServer with Umbrel & Tailscale \N https://orange.surf/public-btcpay-umbrel-tailscale/ 5794 \N 435482 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.8297241481351 0 \N \N f 0 \N 0 223685681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435483 2025-03-12 18:14:33.695 2025-03-29 22:39:51.186 \N nostr https://example.com/ 20433 435217 435217.435483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.75458059299782 0 \N \N f 0 \N 0 225607337 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2743 2022-10-19 17:55:54.158 2025-03-29 22:39:51.186 \N I am very lucky. I was born healthy to two loving parents that stayed together. I grew up in a safe, prosperous western nation that at least until recently respected the rights of individuals and had a sound rule of law. I have a wife, two great kids, an awesome dog, and a handful of close friends. Both my parents are still alive, we live seven minutes drive from them and see them twice a week. I own my own home, have no debt besides a small mortgage on my house. I owned a business that enabled me to work my ass off to get to a point I could sell it and slow down and spend more time with my family and doing other things besides working 60 hours a week. \n\nSo I have never won the lottery. I didn't find out about Bitcoin at $1 and buy 1000BTC forget I owned it and find it 10 years later but I am one of the luckier people on earth. https://example.com/ 4083 2742 2734.2742.2743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.25420472035282 0 \N \N f 0 \N 0 232867802 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435485 2025-03-12 18:20:05.821 2025-03-29 22:39:51.186 \N Yeah, I'm seeing the same. Cashu.me is working great with Amethyst. https://example.com/ 17552 434720 434498.434720.435485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.441257065178 0 \N \N f 0 \N 0 84670836 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435490 2025-03-12 18:25:34.66 2025-03-29 22:39:51.186 \N Great post! It's interesting to reflect on how our parents shape us. \n\nMy own parents were extremely hard workers their entire lives, but we were never that financially well-off. Some of that had to do with their choice to live in one of the most expensive places in the country, but mostly it was because of my dad's poor health.\n\nThe signals to me were something like "Take care of your health and you can afford to take work a little less seriously." and "Make wise financial and career decisions, so that you don't have to work yourself to death."\n\nI'm sure you've mentioned elsewhere, but what's your wife's attitude towards your stacking habit? https://example.com/ 7746 435489 435489.435490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.09746828088282 0 \N \N f 0 \N 0 20129372 0 f f \N \N \N \N 435489 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435500 2025-03-12 18:28:48.493 2025-03-29 22:39:51.186 \N stacker news today\n\nhttps://imgprxy.stacker.news/IiMs2iudi94B0oh1P4c7Zi1zUCX7XoyKAzYis0M_bNQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBpbmltZy5jb20vb3JpZ2luYWxzL2RkL2YxLzQ4L2RkZjE0ODJkY2Q0ZGM1ZmMyNjdjZmEwYTZjMGNkNzIwLmdpZg\n https://example.com/ 21578 435284 435284.435500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3239760274683 0 \N \N f 239081973 \N 1 150210008 0 f f \N \N \N \N 435284 \N 0 0 \N \N f \N 2025-03-20 04:21:14.057 f \N \N \N 0 0 0 0 1 0 0 436660 2025-03-13 19:08:22.671 2025-03-29 22:39:51.186 \N Yesterday, I parked beside a guy driving what looked like a brand new Corvette Z06. \n\nI said "nice car" and he said "thanks, I haven't driven it much. Just got it last summer and this is the first time I have taken it out this year." I replied "well enjoy it while we have some nice weather before we get snow again." and I walked away thinking "that dude could have had 10 bitcoin last summer for the price of that car that he only drives on nice days". Haha https://example.com/ 19332 436659 436659.436660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3449674050716 0 \N \N f 0 \N 0 194814550 0 f f \N \N \N \N 436659 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435494 2025-03-12 18:27:34.794 2025-03-29 22:39:47.911 Fulgur Ventures AMA Hi all!\n\nOleg here from Fulgur.Ventures. We are a VC focused on early stage bitcoin and lightning startups.\nI've been following the lightning network ecosystem since 2018 and it's a never ending learning.\nIn my previous life I did product management and business development for software companies that were building on very new technology when they started.\n\nCurious about technology startups or anything else bitcoin lightning VC - just ask.\n\nOleg \N 21040 \N 435494 \N \N \N \N \N \N \N \N news \N ACTIVE \N 12.1381759921631 0 \N \N f 0 \N 0 166904168 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435533 2025-03-12 19:02:52.615 2025-03-29 22:39:51.186 \N weird, my local shelter will let anyone just about...foster dogs for up to a month with the option to keep them. https://example.com/ 21042 435151 435151.435533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3455064640036 0 \N \N f 0 \N 0 121276299 0 f f \N \N \N \N 435151 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435506 2025-03-12 18:35:35.501 2025-03-29 22:39:51.186 \N Could you use a laugh? Saturday night while formatting a SD card I deleted my boot and efi partitions on my laptop. I have never done anything this dumb on a computer before. I have backups so its not sweat but here's you reminder.\n\nALWAYS backup your important files. One that one copy too. And check that your backups work.\n\nEND PSA https://example.com/ 876 435500 435284.435500.435506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.55499531276242 0 \N \N f 0 \N 0 239081973 0 f f \N \N \N \N 435284 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435535 2025-03-12 19:03:25.2 2025-03-29 22:39:51.186 \N # Government\n\nGovernments only create shields for organised criminals, everything else is ancient tradition dating back to Hammurabi at least.\n\nProperty rights didn't require centralised registries before (and even now court registries are still pretty decentralised), and don't need one now, so what is there left that is a natural monopoly? Nothing.\n\nIt was even warned against in the Old Testament:\n\n## 1 Samuel 8:10-20\n\n> 10 Samuel told all the words of the Lord to the people who were asking him for a king. 11 He said, “This is what the king who will reign over you will claim as his rights: He will take your sons and make them serve with his chariots and horses, and they will run in front of his chariots. 12 Some he will assign to be commanders of thousands and commanders of fifties, and others to plow his ground and reap his harvest, and still others to make weapons of war and equipment for his chariots. 13 He will take your daughters to be perfumers and cooks and bakers. 14 He will take the best of your fields and vineyards and olive groves and give them to his attendants. 15 He will take a tenth of your grain and of your vintage and give it to his officials and attendants. 16 Your male and female servants and the best of your cattle[c] and donkeys he will take for his own use. 17 He will take a tenth of your flocks, **and you yourselves will become his slaves**. 18 When that day comes, you will cry out for relief from the king you have chosen, but the Lord will not answer you in that day.”\n> \n> 19 But the people refused to listen to Samuel. “No!” they said. “We want a king over us. 20 Then we will be like all the other nations, with a king to lead us and to go out before us and fight our battles.”\n\n(highlighted the most important phrase). https://example.com/ 20683 434514 434514.435535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8505612312545 0 \N \N f 0 \N 0 55063988 0 f f \N \N \N \N 434514 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436300 2025-03-13 13:02:38.075 2025-03-29 22:39:51.186 \N [![sir-node-is-in-the-phone.jpg](https://i.postimg.cc/8cStXyGR/sir-node-is-in-the-phone.jpg)](https://postimg.cc/BLmTXBXb)\n\nFor those who didn't watch it, here is the replay\nhttps://www.youtube.com/watch?v=PZ0DJ8ur1no https://example.com/ 10821 330790 330698.330774.330790.436300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4345076760011 0 \N \N f 0 \N 0 46394505 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435539 2025-03-12 19:07:17.314 2025-03-29 22:39:51.186 \N Can you explain to us how split payments work? What Lightning implementation are you guys using for that to work? https://example.com/ 21242 435110 434957.435110.435539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3877162443115 0 \N \N f 0 \N 0 103112107 0 f f \N \N \N \N 434957 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435537 2025-03-12 19:04:22.684 2025-03-29 22:39:51.186 \N for anyone who's curious, i just uploaded our first EP onto [Wavlake](https://www.wavlake.com/album/f68983a6-ead1-4ab8-a44e-67690b2ee74a). thanks to @DarthCoin for telling me about this project! https://example.com/ 1474 435375 435375.435537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1679679881966 0 \N \N f 0 \N 0 120900072 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435538 2025-03-12 19:04:24.925 2025-03-29 22:39:51.186 \N btcd's bugs were not vulnerabilities. The specification and bitcoin core implementation has no sensible resource consumption limits on witness sizes. That's all it was. As a Go programmer, I am also very avid about keeping resources under control. It actually helps a lot with security as well. Resource exhaustion attacks can destroy peer to peer networks functionality.\n\nWhoever is paying for development says what will get done. But the new features you speak of still work even when a minority of nodes support it, because they recognise each other as being able to and can make paths to run these new protocol API components.\n\nJust like there is still a huge number of bitcoin nodes that still don't have segwit enabled.\n\nWe don't have to agree. This is a peer to peer system, ultimately. And LN can tolerate even more divergence than the bitcoin protocol because it's purely peer to peer.\n\nYou're free to fud and attack whoever you like but building is what gets you respect. https://example.com/ 13517 435129 435030.435129.435538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.81866432197467 0 \N \N f 0 \N 0 7226218 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435519 2025-03-12 18:50:55.621 2025-03-29 22:39:47.911 Fun Fact Friday- Best Fun Fact gets 10k sats Fun Fact Friday bounties are back!\n\nShare your best facts for a chance to win 10k sats. \n\nThe best comment as voted by the "top" filter at 9am CT tomorrow will be the winner. \n\nDrop some knowledge stackers.\n\nGood Luck! \N 1800 \N 435519 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.7657619433327 0 \N \N f 0 \N 0 195235804 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435529 2025-03-12 19:01:08.589 2025-03-29 22:39:51.186 \N blind people can't really use hardware wallets and seed backup best practices (on hardware or software wallets) aren't really made for them.\n\nI'm not calling blind people a little old lady, but I think it's a dramatic example of where accessibility isn't considered in a large part of the industry. https://example.com/ 6765 435525 435314.435320.435335.435515.435525.435529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0116800299627 0 \N \N f 0 \N 0 27142456 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435543 2025-03-12 19:14:47.233 2025-03-29 22:39:51.186 \N I asked a similar question a while ago and got some great answers:\nhttps://stacker.news/items/181315/r/siggy47 https://example.com/ 13097 435458 435458.435543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.9415247555679 0 \N \N f 0 \N 0 67680188 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435554 2025-03-12 19:27:16.783 2025-03-29 22:39:51.186 \N Something about Saylor when he was talking with Lex Fridman, explaining bitcoin as digital energy and all that, made me look closer at the math of it all. \n\nFrom there to full-on astronaut with a gun meme when I realized why there's so many shitcoins, "Wait, they're *all* scams? ... Always have been"\n\nNow just DCA, spread the word, and upgrade the world, and prepare for the coming super intelligent AI that'll probably be here by Christmas at this rate.\n https://example.com/ 8423 435276 435276.435554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5555741666661 0 \N \N f 0 \N 0 168772021 0 f f \N \N \N \N 435276 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435563 2025-03-12 19:35:49.673 2025-03-29 22:39:51.186 \N Day 82 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 9354 435436 435154.435287.435436.435563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3808333418262 0 \N \N f 0 \N 0 96137426 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435567 2025-03-12 19:39:02.981 2025-03-29 22:39:51.186 \N Awesome chart. We need cross posting. I almost missed this. \n\nAnalytics is changing all sports. https://example.com/ 16970 435566 435046.435122.435131.435566.435567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.2802226607491 0 \N \N f 0 \N 0 142956126 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435575 2025-03-12 19:46:28.43 2025-03-29 22:39:51.187 \N Thank you, hope to see you again @koiora !\n\nBcn Bitcoin Only. https://example.com/ 10638 434874 433828.434381.434874.435575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9703497779952 0 \N \N f 0 \N 0 91932195 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-19 13:11:09.868 f \N \N \N 0 0 0 0 0 0 0 435570 2025-03-12 19:40:08.2 2025-03-29 22:39:51.187 \N Welcome to Bitcoinia https://example.com/ 8954 435565 435217.435275.435277.435295.435438.435565.435570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.55802317388145 0 \N \N f 103630682 \N 2 224001601 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435568 2025-03-12 19:39:16.769 2025-03-29 22:39:51.187 \N https://i.imgur.com/5NVPLeA.jpg\nhttps://i.imgur.com/myPapE8.jpg https://example.com/ 13987 435559 435217.435275.435277.435295.435425.435556.435559.435568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5685236121544 0 \N \N f 101839310 \N 2 150149296 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435581 2025-03-12 19:54:21.121 2025-03-29 22:39:51.187 \N I am into bitcoin so I no longer need to eat the bugs, Africans are tired of being poor my dude https://example.com/ 7673 434837 434837.435581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.87636346861213 0 \N \N f 0 \N 0 186864939 0 f f \N \N \N \N 434837 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435650 2025-03-12 21:08:53.118 2025-03-29 22:39:51.187 \N ![nostrelmo](https://imgproxy.iris.to/insecure/rs:fit:1138:1138/plain/https://nostr.build/i/18af170118bc8cd40f7a6f9c31d036f68b37a025a2206f2adfe457091d841103.jpg) https://example.com/ 11298 435231 435231.435650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.1821941549395 0 \N \N f 760044067 \N 6 233654633 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435593 2025-03-12 20:01:37.757 2025-03-29 22:39:51.187 \N - I spent monday fixing some sneaky bugs\n- Yesterday more bugs and began working on deploying [imgproxy](https://imgproxy.net/) which will be our first service running serverless ... overtime we'll break off pieces of our monolith so that SN is eventually mostly a handful of serverless services\n - We are also in the middle of changes to allow zapping and commenting/posting on SN without an account\n- I'm going to continue yesterday's work and then begin working on personalized "feeds"\n\nMy priorities atm: personalized feeds, user generated subs, noncustodial wallet integrations\n\n https://example.com/ 21070 435217 435217.435593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.324013612354968 0 \N \N f 0 \N 0 111088248 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435602 2025-03-12 20:06:15.395 2025-03-29 22:39:47.912 Lightning Channel Hard Fork Scenario Just wondering what happens to lightning channels after a hard fork? Would it be the opening/closing balance? Or some kind of a snapshot? \N 12749 \N 435602 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 19.9575088010621 0 \N \N f 0 \N 0 12184289 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435603 2025-03-12 20:06:22.057 2025-03-29 22:39:51.186 \N If your node is stable and have good channels and is routing, just leave it be.\nI am sure you already read my "vision" about LN future here: https://stacker.news/items/486306\n\nIf you really want to run a profitable public node, nothing wrong with that. But in time you will need to do a lot of improvements, in channels, in volume, in maintenance, upgrading software etc.\n\nWhat many hobby routing nodes plebs do not take in consideration is that they cannot know upfront the cost of closing channels in the future, so all this "profitability" of running a hobby node is not anymore profitable.\n\nIMHO after I run several LN nodes, in different modes, is that to reach that profitability you need to move around a lot of capital and keep the good channels up as much as you can. But unfortunately for various reasons you will get some force closed channels and all your "profit" predictions goes to the bin.\n\nFor a "regular Joe" user of LN I will always suggest: run a private node. No need to run public channels and look for profits from routing. And nothing wrong with that. \nPrivate channels does not get force closed so easily and so often. Also do not need to put too much liquidity in your channels, just enough for your regular needs. https://example.com/ 17690 435217 435217.435603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5512904103765 0 \N \N f 0 \N 0 16728050 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435604 2025-03-12 20:08:27.36 2025-03-29 22:39:51.186 \N Hello stackers. After a two week hiatus, I finally get time to churn out another hiking post. I still intend to keep this thing going weekly, but will get pauses whenever I'm away from home. This week we head to the Chance Cove Coastal Trail to see some coastal views and also the Atlantic Ocean.\n\nhttps://stacker.news/items/634868 https://example.com/ 2285 435548 435046.435127.435548.435604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.064099089607339 0 \N \N f 0 \N 0 130135220 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435598 2025-03-12 20:04:04.167 2025-03-29 22:39:51.186 \N Good question!\n\nThe motivation behind it is to get our feet wet with people building on top of our API. It was already possible if you knew how[^1] but not many people used it because it was too annoying (as one @anon [kept pointing out](https://stacker.news/items/467931)) or not obvious that it was possible (?).\n\nNow with this official API key support, more people might be interested in building bots like @hn or @nitter but we don't want to drown in support requests or deal with API abuse (too many expensive requests etc).\n\nThis formal API key request is intended to act as a rate limiter: With it, we know who wants to do what and can be more prepared for what's to come. It also limits the access to people who can come up with ideas that make sense from our perspective. So less "opportunistic abusers".\n\nAlso keep in mind that there are no guarantees that the API is stable. That's also a reason to limit it since else people might see this as a lot more stable than it really is, build on it without our knowledge and then get disappointed if their code breaks because we changed something on our side.\n\nWith this request, we can also establish a direct communication channel for such things or feedback and support.\n\nIf you use ~meta to request API access, others can also chime in on the ideas. But you don't have to use ~meta, you can also reach out to us privately via [email](mailto:hello@stacker.news), [Telegram](https://t.me/k00bideh) or [SimpleX](https://simplex.chat/contact#/?v=1-2&smp=smp%3A%2F%2F6iIcWT_dF2zN_w5xzZEY7HI2Prbh3ldP07YTyDexPjE%3D%40smp10.simplex.im%2FxNnPk9DkTbQJ6NckWom9mi5vheo_VPLm%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEAnFUiU0M8jS1JY34LxUoPr7mdJlFZwf3pFkjRrhprdQs%253D%26srv%3Drb2pbttocvnbrngnwziclp2f4ckjq65kebafws6g4hy22cdaiv5dwjqd.onion) as mentioned in the info message:\n\n![2024-03-20-212719_507x564_scrot.png](https://m.stacker.news/22004)\n\n[^1]: copy session cookie from network tab and look up the GraphQL schema [in the code](https://github.com/stackernews/stacker.news/tree/master/api/typeDefs) or [here](https://stacker.news/api/graphql) https://example.com/ 21518 435542 435217.435541.435542.435598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3773566583186 0 \N \N f 148661971 \N 2 199534615 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435584 2025-03-12 19:56:01.269 2025-03-29 22:39:51.187 \N Just finishing "Countdown to Socialism: The National Democratic Revolution in South Africa since 1994" by Dr Anthea Jeffery. Very informative book about South Africa's recent history, politics and economics. https://example.com/ 4538 435572 435217.435275.435277.435295.435425.435556.435559.435568.435572.435584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.87217980940383 0 \N \N f 0 \N 0 12208307 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435587 2025-03-12 19:57:09.695 2025-03-29 22:39:51.187 \N > The people you will be able to have deep conversations with have, like you, already been surprised by the simple, clear things. They need more to get high. And this “more” will be wildly idiosyncratic. It cannot be summarized in a list of writing rules. https://example.com/ 4602 434469 434469.435587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7079491849685 0 \N \N f 0 \N 0 225821765 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435817 2025-03-13 01:52:59.487 2025-03-29 22:39:51.187 \N This would have been a perfect opportunity for you to use the text description option to explain why you thought this article was useful. It could spur useful conversation. https://example.com/ 17713 435812 435812.435817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2389873904462 0 \N \N f 0 \N 0 137290881 0 f f \N \N \N \N 435812 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435636 2025-03-12 20:45:42.658 2025-03-29 22:39:51.186 \N https://imgb.ifunny.co/images/32b5ec11aed39bbfa67025ac2e2225a5d9fd53e3d222527b4f1ab0bcf4e5ff52_1.jpg https://example.com/ 1705 435117 434795.435117.435636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.17731180116829 0 \N \N f 0 \N 0 40072831 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435611 2025-03-12 20:15:34.595 2025-03-29 22:39:51.186 \N Day 101 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 21672 435610 435610.435611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.24664104698775 0 \N \N f 0 \N 0 56537592 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435609 2025-03-12 20:13:49.837 2025-03-29 22:39:51.186 \N Thank you, Tony! Coming from you that means a lot\n\n@janetyellen even complimented it and said stuff like this is a good use case for nostr 😮 (he just thinks nostr not a good candidate for global social media) https://example.com/ 21620 435030 435030.435609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.13198677418131 0 \N \N f 128153599 \N 2 152470269 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435606 2025-03-12 20:09:56.746 2025-03-29 22:39:51.187 \N You mention a risk and he mentions a risk. They are both risks. https://example.com/ 12097 430940 427762.430940.435606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5727447657686 0 \N \N f 0 \N 0 131832059 0 f f \N \N \N \N 427762 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435612 2025-03-12 20:16:22.839 2025-03-29 22:39:51.187 \N Markets (like eg the nyse or nasdaq) are agnostic to which piece of paper is traded. Apple stock has the same circuit breakers as AMD stock. The Bitcoin etf will halt at the same markers like other securities. Idk if they have special buckets for etns - they might have special rules that only apply to commodity funds tho. https://example.com/ 19193 435605 435328.435487.435605.435612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.09990547553999 0 \N \N f 81981433 \N 3 79358905 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435617 2025-03-12 20:25:30.054 2025-03-29 22:39:51.187 \N I haven't been around so long. What did it for me was watching Chamath and his buddies laugh about dumping their Solana:\nhttps://cryptonews.com/news/crypto-traders-shocked-that-solana-whales-can-dump-their-cheaply-bought-sol-too.htm https://example.com/ 15560 434603 434278.434558.434603.435617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2888088544154 0 \N \N f 188563513 \N 2 45530782 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 2522 2022-10-14 12:59:42.967 2025-03-29 22:39:47.912 How a Workshop Damaged Bitcoin's Reputation Hey everyone, I want to share something that happened recently. It’s not just a story; for me, it’s a straight-up tragedy.\n\nLast weekend, my school organized a big workshop about staying safe online. Sounds good, right? They brought in some fancy tech company to run it, and I was actually kind of excited at first. I mean, who wouldn’t want to learn how to stay safe from hackers and scams?\nBut then it all went downhill.They started saying things that honestly felt like fear-mongering. Like, “Don’t visit the dark web, or you’ll definitely get hacked.” Umm, what? Then they said using a VPN is illegal because it’s used to access “blocked content.” Seriously? A VPN is a tool, not some criminal gadget.\n\nIt didn’t stop there. They told us we should only use Gmail, Outlook, or Yahoo for emails—because apparently, only “reputable companies” can protect your data. Oh, and they insisted we should only browse the internet on Chrome or Safari. No Firefox, no Brave. They even said we must have antivirus software on every single device. And guess what? They conveniently recommended some lame antivirus they were clearly being paid to promote.\n\nThen came the worst part. They started talking about cryptocurrency, specifically Bitcoin. The presenter called it a “stupid, unreliable currency” and claimed it’s only popular with hackers, criminals, and drug dealers. According to them, Bitcoin is a trap, and anyone who buys it will regret it “till their last breath.” I couldn’t believe the nonsense they were saying\nThe workshop was attended by all the students and their parents. They went on to say parents should spy on their kids’ devices, look for apps like VPNs, Tor, or even something as random as two calculator apps (??). They told them to check our browsing history and block us from using any forums or chat apps.\n\nBy then, I was very angry. It felt like they were trying to brainwash everyone.The presenter even tried to scare everyone into believing Bitcoin was created by a secret group of hackers and could be hacked any day now thanks to advancements in AI. Like, what? After the workshop ended, my emotions were all over the place. On one hand, I laughed because the things they said were so ridiculous. But mostly, I felt sad and angry. Sad because they probably scared off future Bitcoin enthusiasts who could’ve helped drive the crypto revolution. And angry because I know they were wrong, but my school and teachers just let them spread these lies.\n\nWhen I got home, my friends and I jumped on a Google Meet to talk about it. Most of them were freaked out. They started enabling MFA (which is good) and using stronger passwords. But then they went full-on paranoid mode and started deleting non-big tech apps and switching to Google Authenticator or Microsoft Authenticator. I tried suggesting open-source alternatives that are way better, but no one listened to me. I mean, who’s going to trust a 16-year-old crypto noob LOL\n\nAt dinner, my parents brought it up too. They weren’t as paranoid as the other parents, but they did warn me to be careful online. They also said they wouldn’t spy on me, which was a relief. What they don’t know is that I actually hold some Bitcoin. I got it by exchanging cash with my cousin (money I saved from my allowance and doing odd jobs for almost a year. It’s not much, but I’m proud of it) Still, after that workshop, I know I can’t tell my parents about it.\n\nThis whole experience just made me realize how easily we can get brainwashed, especially when it comes from experts. I wish I could do something. But for now, I guess I’ll just keep learning about it more on my own.\n\n \N 18829 \N 2522 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0307766771581 0 \N \N f 0 \N 0 36873366 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435632 2025-03-12 20:42:49.723 2025-03-29 22:39:51.186 \N Possibly hack: Install the extension. Open it and click on the "sign up" button or whatever other thing is there that'll take you to the waiting list page. Then delete the extension. Alby will (at least as of a couple of months ago) ask you to fill out a form saying why you deleted the extension. I told them it was because I couldn't get an account, and less than 24 hours later, I got an email with an invite.\n\nMight not work now, but it's worth a shot. https://example.com/ 21714 435458 435458.435632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9557274472736 0 \N \N f 0 \N 0 15358629 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435633 2025-03-12 20:43:49.242 2025-03-29 22:39:51.186 \N imo, instead of the halving/halvening, we should call it the [halfining](https://twitter.com/_colourorange/status/1655154660834185217).. for hal\n\nhttps://imgprxy.stacker.news/AxxaGeMXH0-UTk_8HzaCXLdDPneJQA9w6q9Hj42Fpzo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0Z2aEpsS3dhQUFBTGtBNz9mb3JtYXQ9cG5nJm5hbWU9c21hbGw https://example.com/ 5646 435458 435458.435633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1909277717265 0 \N \N f 0 \N 0 34744580 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435645 2025-03-12 20:58:32.579 2025-03-29 22:39:51.187 \N So you're fabricating a story where we (BTCPay community) ignored you (we didn't) just because we didn't immediately start a crowdfunding for you instead of patching a bug and ensuring others don't get impacted on a Friday evening, evil people we are. I'l let know the entire team of 8 people maintaining payment infrastructure for entire bitcoin, to immediately start one.\n\nDid you ask how Dennis was? Has he slept? Have I slept? Do you really think we're not impacted by this equality ,even though I can be jackass and pin-point several things you could've done to mitigate a hot wallet attack better?\n\nListen, I understand your frustration and pain, I emphatize, but you attacking us for your pain instead of the hacker is probably not fair direction to go into, especially because I really believe we've done everything we could to help you. https://example.com/ 10549 415012 415012.435645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.98991829589733 0 \N \N f 0 \N 0 22762004 0 f f \N \N \N \N 415012 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435627 2025-03-12 20:37:04.384 2025-03-29 22:39:51.187 \N I think bitcoiners are falling for a fiat-driven hype cycle. "AI" has been ubiquitous for over a decade and now we have our panties up in a bunch just because it's been given an easily-accessible frontend. A better explanation, in my view, is that high interest rates are exposing two decades of mal-investment and Silicon Valley tech bros are looking for something that will keep the perpetual motion machine going a bit longer so they can get off before it crashes. \n\nI've spent a bunch of time messing with ChatGPT and some of the open source alternatives. The technology is very cool, but I haven't seen anything that suggests it's useful in any transformational way. I don't think it will replace workers, but there's tremendous profit to be made from fear-mongering about it while those workers are losing jobs due to the violent mood swings of the economy, caused by a fiat system. \n\nIf a singularity is approaching, my bet is that it will be caused by bitcoin, not AI. https://example.com/ 5069 434515 434278.434318.434515.435627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.92158395758081 0 \N \N f 148387865 \N 1 148738890 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435623 2025-03-12 20:35:20.41 2025-03-29 22:39:51.187 \N For a pretty long split-second, I thought that OP wanted to know if anyone of us Plebs has actually managed to create a family, with a wife, kids and that sorta bagage - and I don't think I'm the only one!\n\n https://example.com/ 919 435622 434278.434503.434522.434598.434602.435622.435623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.42808743592357 0 \N \N f 234192587 \N 2 174064780 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2529 2022-10-14 15:05:16.877 2025-03-29 22:39:47.912 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 1082 \N 2529 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.53505108519693 0 \N \N f 0 \N 0 99392277 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435659 2025-03-12 21:16:21.849 2025-03-29 22:39:47.913 Crash Of 1929: An Economic Turning Point The Stock Market Crash of 1929. In a breathtaking overnight event, $10 billion was erased from the market, heralding the beginning of a new era dominated by boom and bust cycles driven by central banks and state interventionism. The significance of this day transcends time as it reminds us of the fragile nature of financial systems and the continuous evolution of global economies.\nThank God we have a solution...\n\nhttps://youtu.be/_8Ew7jbot_k?si=RIg-60OSqXL8S_XL \N 13798 \N 435659 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.89279437031023 0 \N \N f 0 \N 0 233424144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435670 2025-03-12 21:39:42.586 2025-03-29 22:39:51.186 \N What's the plan for tonight folks? Any stacker.news parties in Miami? https://example.com/ 15560 435644 435516.435644.435670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.747060908389 0 \N \N f 0 \N 0 226467954 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435660 2025-03-12 21:16:44.175 2025-03-29 22:39:51.186 \N What's the motivation behind requiring that one ask permission to generate API keys? https://example.com/ 7097 435658 435357.435658.435660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1676077237303 0 \N \N f 0 \N 0 130062234 0 f f \N \N \N \N 435357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435739 2025-03-12 22:58:06.303 2025-03-29 22:39:51.186 \N You're gonna have to redo this poll when Ark actually has some code. You know its still pretty new and people are still trying to wrap their heads around exactly what it is and what it does and what it isn't and what the trade offs are going to be. https://example.com/ 8726 435735 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735.435739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.39843524069408 0 \N \N f 0 \N 0 102067536 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 433076 2025-03-10 19:37:27.785 2025-03-29 22:39:51.186 \N What an amazing platform \n\nThanks Koob! https://example.com/ 1717 433056 433056.433076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9615794228555 0 \N \N f 331288560 \N 2 140550946 0 f f \N \N \N \N 433056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435673 2025-03-12 21:42:20.749 2025-03-29 22:39:47.913 Books And Articles Newsletter, Issue 6 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. I was really overwhelmed by the sheer number of really good posts this week, and many from accounts I don’t recall posting here before. I picked out a few to highlight in my suggestions, but there are many more that I urge you to check out. In some cases they may not have earned many sats, but it would be worthwhile to do some exploring. I’m limited by time constraints and the format of this newsletter from highlighting every gem.\n\nI should have mentioned this last week, but @johnbnevin is now posting his serial [story](https://stacker.news/items/446662) “Submersible” in a Stacker News exclusive. The first installment was very well received, though I failed to give it the visibility it deserved. You can find the permanent link in the “Books” section below.\n\nI want to give a special mention to @Nuttall, who consistently posts poems here. I hope and suspect that the plan is to eventually consolidate them all into one post, which would make it a permanent collection. \n\n@Taft has begun to post a daily bitcoin post. I rarely am familiar with the day’s quote, which is refreshing. Sometimes it’s tiresome to read the same old quotes. Here’s [one](https://stacker.news/items/456360) from this week.\n\nThat’s it. I hope everyone has a great week.\n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [Dune Books And Movies](https://stacker.news/items/449779) by @Undisciplined\n\n- [Fighting The Daily Grind #8](https://stacker.news/items/448994/r/siggy47) by @cryotosensei\n\n- [How Bitcoin Can Align Incentives In A Marriage:](https://stacker.news/items/447584) by @Daniela\n\n- [Double Plus Ungood:GMU’s Orwellian “Just Societies” Mandate](https://stacker.news/items/449760) by @elvismercury\n\n- [Discuss This Quote-John Adams](https://stacker.news/items/448527) by @grayruby\n\n\n### Siggy’s Suggestions\n\n- [Good Poets Borrow, Great Poets Steal](https://stacker.news/items/453894/r/siggy47) by @Car\n\nI really enjoyed this link post, which brings up the idea of artists “stealing” from those who came before. I replied with an example of 60s rockers stealing licks from old bluesmen, but the premise could have as easily described the way Satoshi built on the cypherpunk concepts that came before in creating bitcoin.\n\n- [Same Bed, Different Dreams, by Ed Park](https://stacker.news/items/449678) by @StillStackinAfterAllTheseYears\n\nThis is a good, concise discussion of a book that should have earned more sats than it did. I know I can count on good content when I read this account’s posts.\n\n- [Weekend Book Recommendations](https://stacker.news/items/446689)by @sn\n\nWhen I first visited Stacker News, long before territories, I looked forward to this weekly SN post for good reading suggestions and interesting discussions. I still do, and I am honored that it has a home in this territory.\n\n- [Stoic Book Club: Meditations](https://stacker.news/items/446496) by @Se7enZ\n\nI think the only reason this wasn’t a top 5 post is because of timing. Regardless, these book club posts are as good as anything posted here. I look forward to each week’s installments, though they can be challenging. I have a feeling these discussions will live on long after the final installment is posted, as more people discover them. \n\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n## Some Recommended Older Posts \n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar, Chapter 1](https://stacker.news/items/419498) by @jbschirtzinger\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Zen And The Art Of Motorcycle Maintenance by Robert M. Pirsig](https://stacker.news/items/383302) by @carlosfandango\n\n- [The World’s First Bitcoin Fiction Anthology](https://stacker.news/items/347735) by @KonsensusN\n\n- [Man’s Search For Meaning](https://stacker.news/items/390069) by @carlosfandango\n\n- [The Sovereign Individual](https://stacker.news/items/427201) by @carlosfandango\n\n- [Neuromancer](https://stacker.news/items/401761) by @Scoresby\n\n- [Elric Of Melnibone](https://stacker.news/items/389474) by @Scoresby\n\n- [The Shockwave Rider, by John Brunner](https://stacker.news/items/418728) by @Scoresby\n\n- [Human Action](https://stacker.news/items/399897) by @Undisciplined\n\n- [Robert Jordan’s The Wheel Of Time: Books 1-3](https://stacker.news/items/416511) by @Undisciplined\n\n- [A History Of Religious Ideas #1](https://stacker.news/items/420220) by @Se7enZ\n\n- [A History Of Religious Ideas # 2](https://stacker.news/items/420192) by @Se7enZ\n\n- [A History Of Religious Ideas #3](https://stacker.news/items/427941) by @Se7enZ\n\n- [Nova, by Samuel R Delaney](https://stacker.news/items/427682) by @Scoresby\n\n- [Blood Music, by Greg Bear](https://stacker.news/items/436158) by @Scoresby\n\n- [Schismatrix, by Bruce Sterling](https://stacker.news/items/445373) by @Scoresby\n\n### Essays\n\n[Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816)\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Everything Is Here](https://stacker.news/items/422625/r/siggy47) by @Nuttall\n\n\n\n### Short Stories\n\nNone posted yet.\n\n\n\n \N 15690 \N 435673 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.3058123897723 0 \N \N f 0 \N 0 31139003 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2540 2022-10-14 17:38:10.172 2025-03-29 22:39:47.913 After 365 Days, I'm Sitting Pretty On 1.9M sats 🎂 Hey fellow stackers! Can you believe it's been a whole year since I joined Stackers News? It was thanks to a little nudge from onions (I wonder if he's still around) that I really started to get involved. I'm not the best at putting my thoughts into words, but I wanted to say a huge thank you to this awesome community for all the sats! 🤠 Your warm welcome made me feel right at home. You've all been so supportive and I've learned so much. \n\nThese stats are my evidence that V4V is the real deal.\n- Longest cowboy streak: **48**\n- Value: **23**\n- Stacking: **17 (1.9M)**\n- Spending: **69 (533.7K)**\n- Comments: **10 (7948)**\n- Posts: **13 (1457)**\n- Referrals: **94 (8)**\n\nhttps://m.stacker.news/4212\n\nCheck out [my bookmarks](https://stacker.news/0xbitcoiner/bookmarks) if you want a trip down memory lane – there's plenty of humor to be found.\n\nhttps://imgprxy.stacker.news/OFOosgkOolxykJSbG7s0i1ewlGvLYEY3nKKDOdG0mek/rs:fit:1920:1080/aHR0cHM6Ly9pbWdwcnh5LnN0YWNrZXIubmV3cy84RXNpMTJvcmo5aGl5YzRWdE9VeFVYN3hEaEtUdmwxZnVwS0NiWE0xcFk4L3JzOmZpdDoxMjgwOjcyMC9hSFIwY0hNNkx5OWhkRzl0YVdOb2RXSXRhWEJtY3k1amIyMHZhWEJtY3k5UmJWcFdURlJwUVdFMk5rTjVSMm8xYjJWV2VuTmFRWEZrVjBoeWNreDFVMWRLZFhGNlpsUnVaalJsTkVodQ\n\n**Enjoy your weekend!** \n**It's friday cowboys/girls!**\n\nhttps://m.stacker.news/11874\n\n*by @satoshiplanet* \N 925 \N 2540 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.7143842111059 0 \N \N f 0 \N 0 65480746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2543 2022-10-14 19:46:57.445 2025-03-29 22:39:47.914 The topics and discourse on SN Bitcoin seem to be getting better all the time. I’m really appreciating the opportunity to learn about various Bitcoin topics, and read many well-reasoned arguments. \n\nGreat signal to noise ratio that keeps getting better. \n\nThanks to everyone who is contributing. \N 1478 \N 2543 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.65527624838841 0 \N \N f 0 \N 0 118383395 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435672 2025-03-12 21:40:09.043 2025-03-29 22:39:51.186 \N Please stop being so awesome. I have other things to do and you guys keep distracting me. https://example.com/ 21514 435664 435516.435664.435672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3758821055086 0 \N \N f 0 \N 0 145984600 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435685 2025-03-12 21:52:12.107 2025-03-29 22:39:47.914 Spending Bitcoin - A Weekend Discussion The topic of spending Bitcoin to spur on adoption is becoming a hot topic lately. There have already been a few threads here on Stacker News urging people to spend and replace their Bitcoin rather than simply HODL it, so we thought it would be a fun discussion to talk about the pros and cons of spending Bitcoin.\n\n‎\n\nOn the one hand, the growing "spend and replace" movement believes that by nudging people to spend their Bitcoin and replace them with new coins, the Bitcoin ecosystem will benefit in a few ways:\n\n- More merchants could begin accepting Bitcoin\n- Coins could be more widely distributed among more people\n- Spending could help some people perceive Bitcoin as a more useful form of money\n- A vibrant market of P2P spenders and earners could limit the effectiveness of any future exchange regulations or crackdowns\n\n‎\n\nOn the other hand, there are a number of drawbacks to spending Bitcoin:\n\n- In most countries, spending Bitcoin creates a taxable event\n- Spending local fiat currencies is typically a better payment experience (NFC-enabled cards, phone/watch taps)\n- Price volatility and currency conversions create friction for both consumers and merchants\n\n‎\n\nTo kick off the discussion, here are a few thought-starter questions:\n\n- Is spending your Bitcoin an effective way to create Bitcoin adoption? \n- What are the social risks to the Bitcoin community of vilifying the idea of HODLing?\n- How important is it that Bitcoiners help distribute coins among more people around the world?\n- What signals or metrics are most important in convincing merchants to accept Bitcoin?\n- How often do you spend your Bitcoin?\n- Have you ever convinced a merchant to accept Bitcoin? How did you do it?\n \N 11942 \N 435685 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.3470837840865 0 \N \N f 0 \N 0 7411156 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435683 2025-03-12 21:50:20.991 2025-03-29 22:39:51.186 \N DiscoPay\n\n*DiscoPay has launched! Let's take Discord back from the shitcoiners ⚔️*\nhttps://stacker.news/items/16801\nhttps://discopay.cc https://example.com/ 20205 435596 435596.435683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1014276057913 0 \N \N f 0 \N 0 121322041 0 f f \N \N \N \N 435596 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435686 2025-03-12 21:52:35.636 2025-03-29 22:39:51.186 \N I can elaborate you're a 100% dickhead! https://example.com/ 18930 434814 434814.435686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.311477295925 0 \N \N f 0 \N 0 108958344 0 f f \N \N \N \N 434814 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435726 2025-03-12 22:43:26.674 2025-03-29 22:39:51.186 \N ⚡️🌞 https://example.com/ 7760 435617 434278.434558.434603.435617.435726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9448682025606 0 \N \N f 0 \N 0 31624108 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435689 2025-03-12 22:00:56.207 2025-03-29 22:39:51.186 \N Since I was on nostr for months before I joined SN, I am now used to zapping good content. Sometimes it is hard to say what the right amount should be. The default I have is 21, but 100 is also easily given by a good post. https://example.com/ 18494 435530 435530.435689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.47865111722991 0 \N \N f 0 \N 0 164307073 0 f f \N \N \N \N 435530 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435735 2025-03-12 22:52:15.591 2025-03-29 22:39:51.186 \N ![](https://www.zapread.com/i/-0L) https://example.com/ 12911 435722 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.48737763192034 0 \N \N f 498973726 \N 5 134719432 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435702 2025-03-12 22:13:50.506 2025-03-29 22:39:51.187 \N People always forget about lnp2pbot, the telegram bot. It is quite big in certain regions of LatAm. https://example.com/ 15146 435698 435690.435698.435702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5811225809933 0 \N \N f 0 \N 0 106211173 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435696 2025-03-12 22:09:46.109 2025-03-29 22:39:47.914 Political Games Advantage Psychopaths I went to a talk recently by Arthur Brooks, who's a Harvard Business School professor who teaches about happiness. The talk itself was good in that it gave voice to the wisdom of the ancients. Faith, family, friends and work are the essential ingredients of happiness, according to him.\n\nAt the end of the talk, he gave us, the audience a challenge. His analysis was that the dark-triad personalities were responsible for creating much of the unhappiness we see and experience. These are the people with offensive personality traits that include narcissism, Machiavellianism and psychopathy. His complaint was that too many of those people are now in control of institutions leading to a great deal of unnecessary and civilization-destroying strife.\n\nI largely agreed that there's a small minority that causes a lot of the evil, but what I wanted to say and didn't get to say due to time constraints is that the current system incentivizes these types of people getting into positions of power. Hence, in my frustration at my not having had a chance to explain my reasoning, I write this essay.\n\nDark triad personality traits thrive in zero-sum games. Well let me qualify that. They thrive in zero-sum games where there are a lot of players, a lot being larger than Dunbar's number (~150). Under that number, it's hard to get away with dark-triad behavior because there's a collective moral intelligence at work. When in small-ish communities, dark triad traits are weeded out or at least marginalized. But beyond that number, most people know only a relatively small percentage of the people in the group and they instead have to back leaders based on limited information.\n\nAnd this is where dark triad traits thrive. They are master manipulators and they can win these zero-sum games by doing the unethical. They generally give great first impressions, and only later are they found to be lacking empathy or morals. Sadly, society is currently full of large scale organizations where these dynamics are at play and you can see their operation in almost every institution. And that game has a name: politics, and nearly everything is infected with it.\n\nPut simply, dark triad personalities have a massive advantage in political, zero-sum games and as such, they will be way over-represented in leadership positions. The largeness allows such people to get away with their immoral behavior and creates a lot of opportunities for them.\n\nSadly, nearly everything is large scale enough where dark triad traits win. Government, business, academia, media, education. It's pretty hard to come up with places where the dark triad traits *don't* have a massive advantage.\n\nYet there is one area of the economy and and it's small business entrepreneurialism. And no, I'm not talking about VC backed startups. The Silicon Valley VC world is a large institution where political maneuvering matters just as much as government or media and dark triad traits still have a massive advantage as witnessed by Elizabeth Holmes, Adam Neumann and Sam Bankman-Fried. When I say entrepreneurialism, I'm talking about normal small businesses like a deli or a car wash. There's much less politicking there and little room for dark triad personalities to take the reins. The environments are too small and there are not enough places to hide for people like that to win. Positive-sum games like market transactions, give no room for rent-seeking dark triad behaviors. Such behaviors don't work where value has to be provided specifically because of the immediacy of needing to make a profit.\n\nSmall businesses are what built civilization. It's only in the last 100 years or so with the advent of central banking that politics and zero-sum games have infected everything. So the question to ask isn't how do we stop these dark triad personalities from getting to the helm of these institutions. The correct question is how do we change the system so politics and zero-sum games are not so prevalent.\n\nAnd this is where we need to talk about the economic system we are all under. It's way more Marxist than we'd like to believe. Marxism is what creates large political organizations where dark triad traits thrive. These are cancers to civilization and they're unfortunately growing in what were formerly thriving nations.\n\nThe 5th plank of the communist manifesto was the control of money by the government. The reason we have the system we have now that's getting closer to Marxism is because of the monetary system.\n\nSo to answer the professor's question, the economic system is the reason why dark triad personalities thrive. The permanent average reduction in happiness that he pointed out in 2008 and 2020, were argued to be the result of social media and corona lockdowns. I would argue that they were both massive inflationary events for the world economy. If you study hyperinflation, monetary debasement correlates strongly with unhappiness, probably because people don't like having their stuff taken away from them by inflation or otherwise. I would suggest that this is because monetary debasement adds a lot more zero-sum games giving huge advantages to dark-triad traits, which combined with the concentration/centralization of power which debasement also induces, makes everyone more miserable.\n\nTo fix the problem of evil people thriving, we must change the system so it doesn't produce such bloated, inefficient, zero-sum institutions that give evil people so many advantages. \N 985 \N 435696 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.19956705311948 0 \N \N f 0 \N 0 36721116 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435700 2025-03-12 22:12:52.183 2025-03-29 22:39:51.186 \N @remindme in 100 years https://example.com/ 5112 435641 435497.435505.435641.435700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.72034916535536 0 \N \N f 0 \N 0 134387565 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435727 2025-03-12 22:44:56.697 2025-03-29 22:39:51.186 \N Related to [this comment](https://stacker.news/items/289986) but it's in the saloon from yesterday, so I'll post this here:\n\nOkay, I start to feel like an archaeologist and now I understand more what's so interesting about being an archaelogist:\n\nI think I just found the first version of ranking on SN in [`84b69fc`](https://github.com/stackernews/stacker.news/commit/84b69fc4818c269c9d5be10b0189cf55b6bb7c65):\n\n```\n$ git show 84b69fc:api/resolvers/item.js | grep Query -A 8\n Query: {\n items: async (parent, args, { models }) => {\n return await models.$queryRaw(`\n ${SELECT}\n FROM "Item"\n ${LEFT_JOIN_SATS}\n WHERE "parentId" IS NULL\n ${ORDER_BY_SATS}`)\n },\n$ git show 84b69fc:api/resolvers/item.js | tail -2\nconst ORDER_BY_SATS =\n 'ORDER BY (x.sats-1)/POWER(EXTRACT(EPOCH FROM ((NOW() AT TIME ZONE \\'UTC\\') - "Item".created_at))/3600+2, 1.5) DESC NULLS LAST'\n```\n\n@k00b, can you confirm or deny?\n\nedit: lol, the feature to search through commits for specific changes like `Query` or `rank` or `trust` is even called [pickaxe](https://git-scm.com/docs/user-manual#Documentation/user-manual.txt-aiddefpickaxeapickaxe). So there is even a direct relationship to archaelogy? But not sure if archaelogists really use pickaxes a lot or if at all, lol https://example.com/ 1272 434558 434278.434558.435727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8787220093007 0 \N \N f 0 \N 0 135592527 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435736 2025-03-12 22:52:30.092 2025-03-29 22:39:51.186 \N Thanks for the link. I finally read it. I'm new to the btc space tbh, so I think I'll need to read it again ;-) xD\nBut totally get the aversion when it comes to the laser eyes, steak carnivore stuff and memes. Now I'd add stuff like the mandalorian quotes such as "This is the way" I cringe and groan internally when people say that. That whole ethos screams cultish to me. \nBy my very nature I am a non-conformist, so I'm usually repelled when it comes to doing things that everyone else is doing. That's why I'd never put laser eyes on anything lol. When I first saw ppl doing that, I thought wtf are you all doing?! I've got used to seeing it now. I think get why they're doing it but don't think it's anything to do with btc getting to $100k \n\nA couple of points I'm with him on:\n1) people making bitcoin their entire personality\n2) when he said: "Ultimately, Bitcoin is not a lifestyle. Bitcoin is not a steak dinner. Bitcoin is not memes and it’s not laser eyes. Bitcoin is a profoundly useful tool. It is impregnated with some ideology, but it is not the ideology that these people profess. The core Bitcoin values have to do with property rights, individual human dignity, self-determination, privacy, autonomy, and monetary predictability. Bitcoin attracts me for that reason". https://example.com/ 14503 434635 434278.434635.435736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7361132161885 0 \N \N f 0 \N 0 43549747 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435713 2025-03-12 22:27:21.037 2025-03-29 22:39:51.187 \N Odd. Bitwise and Vaneck already donate to Devs. Hard to imagine Saylor could crush Blackrock or Fidelity. Big fan of Odell but would like more info on this because it doesn't make sense. https://example.com/ 2431 435622 434278.434503.434522.434598.434602.435622.435713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5889467624171 0 \N \N f 1182344855 \N 10 221469550 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435710 2025-03-12 22:24:20.941 2025-03-29 22:39:51.187 \N ![20230920_174610.jpg](https://m.stacker.news/4809) https://example.com/ 17727 435505 435497.435505.435710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1470741329169 0 \N \N f 150762964 \N 1 59789942 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435703 2025-03-12 22:14:05.183 2025-03-29 22:39:51.187 \N I use nostr regularly but it wasn't until I discovered SN that I saw the real engagement we get here.\n\nUnfortunately with nostr unless your name is jack, will, gigi, odell, walker or derek Unfortunately your note is largely ignored 🙁 \n\nIt's funny because when I was on nostr, I used to see SN links saying meme Monday 25k sats but you've got to post the meme on SN, I was like nah probably a scam 🤦\n\nOnly recently I've linked nostr to getalby and can zap to note without leaving the app\n\nI've said this before but the SN model is excellent 👌 I know it's not pure lightning but it works brilliantly imo https://example.com/ 15703 434795 434795.435703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1597857938266 0 \N \N f 0 \N 0 5318527 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435705 2025-03-12 22:16:34.457 2025-03-29 22:39:51.187 \N A bit of Darth history... TLDRs\n\n2012 - get into Bitcoin, hard lesson, right into the 1st halving\n2013 - felt the real first halving tsunami, brutal year, but I could handle it\n2014 - recovered and start studying hard\n2015 - start teaching more people, meetups etc, basic stuff, but good stuff. This was the year I accumulated most of BTC\n2016 - really nice year, engagements with more merchants, I really wanted more people into Bitcoin. But also was the year of the 2nd halving... again a shock for me.\n2017 - the block size war, terrible times, lost many "friends", too many debates, useless debates wasting my time, instead of focusing on merchants adoption\n2018 - again debates with shitcoiners, sucking my energy all the time. So I decide to move away for a while, I was quiet.\n2019 - just watching the world how they fight each others.\n2020 - I was shocked by the amount of people coming in, without any fucking clue about BTC. So I decide to come in and help.\n2021 - testing all kind of possible scenarios, talking with shit tons of merchants, trying to teach everybody I could, to share my knowledge\n2022 - kinda lost my faith in humanity, falling down the slope of seeing how humanity doesn't give a shit about the world fall apart\n2023 - I tried with all my energy remained to save the last souls... really hard task, when only very few are listening to your screaming warnings.\n2024 - if I will be able to finish my citadel, I will just retire. yes all my haters will be happy. But I don't give a shit about them (as usual). I only hope that somebody will still read my guides and learn more.\n\nI am sorry but I cannot save you all...\nI tried to warn you in any possible ways.\nWho had ears to listen, props to you, who just hate me, fuck off, the message wasn't for you.\n\n[![I-have-spoken.gif](https://i.postimg.cc/t7GjCWnS/I-have-spoken.gif)](https://postimg.cc/bSgMmGTk) https://example.com/ 17494 435677 435516.435664.435677.435705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.53908958204862 0 \N \N f 0 \N 0 96570 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435712 2025-03-12 22:25:17.298 2025-03-29 22:39:51.187 \N I was running some rudimentary probing thru LNbig a couple weeks back, no hard numbers but inbound shortage is v apparent. You can see this in the difficulty it can take in trying to rebalance lnbig channels\n\nYes I'd classify LN+ seperately, no actual buying/selling occurs there atm. Swaps are essentially "I'll open a channel to Bob if Alice opens a channel to me" -- it is not a very selective process and the 'quality' of peers highly varies, you basically open a chan to random peer and receive a random chan in return. Some swap peers are great, some are bad. Contrast that to Magma where you may be selective in your peer or to Pool which uses an internal scoring system\n https://example.com/ 20987 435497 435497.435712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3379733066101 0 \N \N f 0 \N 0 64043601 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435734 2025-03-12 22:51:36.533 2025-03-29 22:39:51.187 \N Its LN enabled, basically a wallet of satoshi with a USSD menu instead of an app, so is interoperable with all LN wallets, just reduces the barrier to entry and gives feature phone users a custodial LN wallet https://example.com/ 6653 435617 434278.434558.434603.435617.435734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9184282702033 0 \N \N f 0 \N 0 156939405 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435733 2025-03-12 22:49:39.575 2025-03-29 22:39:51.187 \N What are some of the most relevant upcoming features? https://example.com/ 1428 435716 434278.434503.434522.434598.434602.435622.435713.435716.435733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.095944977999 0 \N \N f 0 \N 0 71355535 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435722 2025-03-12 22:40:00.172 2025-03-29 22:39:51.187 \N ![TickTock](https://i.postimg.cc/G2Yp0zbc/59-E65002-3755-4855-A49-A-7-EAB5-E658407.jpg) https://example.com/ 20588 435716 434278.434503.434522.434598.434602.435622.435713.435716.435722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8112728624585 0 \N \N f 633693158 \N 6 27996686 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435724 2025-03-12 22:40:30.14 2025-03-29 22:39:51.187 \N Bitcoin is a lifelong friend\nBlocks every 10, until the end\nIt doesn't break nor does it bend\nJust sign a transaction and hit send https://example.com/ 10311 435187 435154.435187.435724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8439853141185 0 \N \N f 0 \N 0 140473494 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435717 2025-03-12 22:35:15.314 2025-03-29 22:39:51.187 \N Hey @benwehrman. FYI. I looped you into a nostr conversation with Dr. Jeff Ross regarding him potentially coming on SN for an AMA mid-Sept or later. \n\n\n\n https://example.com/ 18174 435715 434278.434503.434522.434598.434602.435622.435623.435715.435717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1067570366128 0 \N \N f 0 \N 0 180458311 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435725 2025-03-12 22:41:06.014 2025-03-29 22:39:51.187 \N 1. [The Zen of Stacking Sats On Stacker News](https://stacker.news/items/184545) - by @siggy47\n2. [The Art of Using Stacker News](https://stacker.news/items/252695) - by @Natalia\n3. [The Story of SN](https://stacker.news/story) - is right on the bottom of SN page.\n\nIf people, after reading these articles, still don't get what is SN and how to use it, then they don't deserve to be on SN. https://example.com/ 2741 434503 434278.434503.435725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2737587786097 0 \N \N f 0 \N 0 42315670 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435730 2025-03-12 22:47:56.224 2025-03-29 22:39:51.187 \N I'm shifting my career focus to lightning payment integration for companies. I'm focused on BTCPay Server specifically and will work with companies and individuals to reduce operating costs and expand their payment methods. https://example.com/ 11314 434558 434278.434558.435730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4783509993138 0 \N \N f 0 \N 0 227480038 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435731 2025-03-12 22:49:02.013 2025-03-29 22:39:51.187 \N I'm doing a video tutorial in Spanish about creating and using Electrum wallet on Tails (is a portable operating system that protects against surveillance and censorship.) https://example.com/ 18116 435187 435154.435187.435731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.7308697849603 0 \N \N f 0 \N 0 171771179 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435737 2025-03-12 22:55:18.01 2025-03-29 22:39:47.914 🌁 Alby Extension v3.5 UPDATE: It works on mobile browsers now Guys, please welcome our latest release. \nFirefox enabled extensions' support, so we got Alby there. Now you can use Stacker.news, nostr clients, any bitcoin supporting web app - and it should work like your PC browser extensions!\n\nHappy to hear your feedback https://github.com/getAlby/lightning-browser-extension/releases/tag/v3.5.0 15941 \N 435737 \N \N \N \N \N \N \N \N art \N ACTIVE \N 16.8205876768035 0 \N \N f 0 \N 0 233959802 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435738 2025-03-12 22:57:25.212 2025-03-29 22:39:47.914 Was the assassination attempt on Trump fake? > Trump injured but ‘fine’ after attempted assassination at rally, shooter and one attendee are dead\n\nSource:\nhttps://apnews.com/article/trump-vp-vance-rubio-7c7ba6b99b5f38d2d840ed95b2fdc3e5\n\nStacker News discussion:\nhttps://stacker.news/items/607431\n\n![](https://pbs.twimg.com/media/GSaAn2mWEAAl5dG?format=jpg&name=small)\n\n# What's sus here\n\n- The secret service didn’t secure a roof that was a 9-iron away with a clear shot? Really?\n- The two cuts on Trumps cheek with minimal red look awfully cinematic. What are the odds. This is the second biggest point imo\n- Apparently someone in the crowd died. But you can see the crowd in the video. They cheer after Trump raises his fist. Nobody looks to the right, no group of people form a circle around a victim\n- The biggest point: What would the assassin gain? If he fails, Trump gets to *rightfully* play victim and get sympathy votes. If he succeeds, Don Jr could win this election with sympathy votes in a landslide. The same point would only hold to a lower degree for an assassination attempt on Biden. The same point wouldn't hold on the assassination attempt on JFK since JFK had a very unique stance on Cuba that any replacement from his own party didn't share.\n- Trump is currently leading in the polls. \n\n![](https://imgprxy.stacker.news/3z36sZD_O97StBO7GexHPIiywsC09QHgjzILILrLt8M/rs:fit:1600:900/aHR0cHM6Ly9wcmV2aWV3LnJlZGQuaXQvZDhkNm92ajB2ZGNkMS5qcGVnP3dpZHRoPTYyNiZmb3JtYXQ9cGpwZyZhdXRvPXdlYnAmcz0xY2M4YzM0YTVhMWY4ZmEyYWM0OTM3MDdjODNlOTAxODBiZGNiYTNm)\n\n- The press: All the pro Trump headlines were talking about how old Biden is. No pro major Trump headline was actually talking positively about Trump himself. That changes now\n\n# Conclusion\n\nThere isn't no concrete evidence for it being fake yet. Just saying it would fit neatly together \N 6688 \N 435738 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 4.84121478801274 0 \N \N f 0 \N 0 10840124 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 4081 2022-11-14 10:47:40.355 2025-03-29 22:39:47.914 My Fantasy A few years ago I was listening to Caitlin Long. She predicted that some day a major conventional bank or investment firm would get caught flat footed and get rekt by a crazy bitcoin move up or down. \nToday I let my imagination run wild. Here's what I thought:\n\n- BlackRock, Fidelity, and the other big players are using derivates to hedge their bitcoin positions. Their goal is to stifle volatility and control the fiat price. \n\n- All these companies operate Monday through Friday. They have never witnessed an enormous weekend move. \n\n- Trump starts talking at the Bitcoin Conference at 2:00pm. He makes some outrageously bullish promise. Word spreads. MAGA world goes crazy.\n\n- The price pumps like only bitcoin can. Word spreads. \n\n- Enormous shorts get eliminated. The big boys are forced to cover, further causing bitcoin to skyrocket. \n\n- Coinbase crashes. The price plummets,and bitcoin returns to where it started. \n\n- A few big institutions fail. \n\nRidiculous? Probably. But it would be fun. \n \N 21514 \N 4081 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.78338109636692 0 \N \N f 0 \N 0 110715989 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435744 2025-03-12 23:12:28.737 2025-03-29 22:39:51.187 \N > when it comes to their character, effort and upholding their responsibilities (no matter how big or small) we are strict with them.\n\nI wouldn't have articulated this but I think it's right. Everything else is something you can and should negotiate with a changing world. https://example.com/ 17824 435735 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735.435744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8459483329186 0 \N \N f 219495716 \N 3 177410474 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435749 2025-03-12 23:32:34.545 2025-03-29 22:39:51.187 \N I guess you could start at any time today even just create a post and put ama at the top, @kr Wdyt? https://example.com/ 20133 435141 435030.435141.435749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8360819065128 0 \N \N f 233509861 \N 3 212187467 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435775 2025-03-13 00:41:40.141 2025-03-29 22:39:51.187 \N You could install it alongside Bitcoin Core. Once it has synced you can pass user/password and it will use your bitcoind instead of remote blocks. Read the README, it's all there:\n\n```\nadd-apt-repository ppa:lightningnetwork/ppa\napt update\napt install lightningd\nmkdir -p ~/.lightning/plugins\necho 'disable-plugin=bcli' >> .lightning/config\ncd ~/.lightning/plugins\nwget https://github.com/nbd-wtf/trustedcoin/releases/download/v0.6.1/trustedcoin-v0.6.1-linux-amd64.tar.gz\ntar -xvf trustedcoin-v0.6.1-linux-amd64.tar.gz\ncd\nlightningd\n``` https://example.com/ 17533 435772 434278.434503.434522.434598.434602.435622.435772.435775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3294936856628 0 \N \N f 546982254 \N 4 218719533 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435748 2025-03-12 23:26:21.095 2025-03-29 22:39:51.187 \N This is the best selling phone of all time\n\nhttps://imgprxy.stacker.news/VHM7mvrn6M884_n0qzSDIt_W0pxWco50Bb1ld_SKbYM/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy90aHVtYi8xLzFiL05va2lhMTEwMF9uZXcuanBnLzM0MHB4LU5va2lhMTEwMF9uZXcuanBn\n\nUr a legend if you hodl one of these https://example.com/ 7978 435552 435030.435552.435748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.02632706513022 0 \N \N f 0 \N 0 22293533 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2552 2022-10-15 02:34:30.157 2025-03-29 22:39:47.915 GrapheneOS: News update regarding vulnerabilities reported to Google Google has awarded bounties of $5000, $3000 and $250 for our 3 vulnerability reports related to physical data extraction attack vectors. Both $5000 and $3000 issues are being exploited in the wild. $250 bounty is for a minor issue we found while doing general USB hardening work.\n\nMost serious issue is the one with a $3000 bounty. We provided proof of in the wild exploitation and a proposal for preventing exploiting the class of vulnerabilities which is being implemented. For the one they're awarding $5000, we weren't sure they'd even consider it a bug.\n\nThe most serious issue is likely only getting $3000 because we do not know the specific bug being exploited. It was classified a low quality report, not because we did a bad job but because we don't have that info. We did provide a way to prevent getting data by exploiting it.\n\nOur proposal for preventing getting data by exploiting the main issue should ship as a Pixel firmware update next month and the feature will become one of our baseline hardware requirements. It's already harder to use it with GrapheneOS and we've made major recent improvements.\n\nOur recent improvements:\n\n1) New USB-C port control setting integrated into the USB-C controller driver to disable USB at a hardware level. It will become "Charging-only when locked, except before first unlock" by default" soon. Shipped in 2024022600: https://grapheneos.org/releases#2024022600\n\n2) We reimplemented our auto-reboot feature with a more hardened implementation which can't be bypassed by crashing system processes. This starts a timer when the device is locked which reboots unless it's successfully unlocked first. Shipped in 2024011300: https://grapheneos.org/releases#2024011300\n\n3) We reduced the default auto-reboot timer from 72 hours to 18 hours. This also shipped in 2024011300. 18 hours is enough that users don't encounter it in practice as long as they unlock their phone a couple times per day. Users who need max security can use 10 minutes.\n\n4) We run a full compacting garbage collection in SystemUI and system_server when the device is locked. Android already does this after unlock to clear credentials. Goes well with our kernel zero-on-free since it zeroes the data. Shipped in 2024020500:\n https://grapheneos.org/releases#2024020500.\n\nOur main proposal should ship for the Pixel firmware in April, resulting in the firmware's fastboot mode fully clearing all of the device's regular memory before enabling USB. We could implement the same thing for the OS to make sure there's no data left from an unclean reboot.\n\nForensic companies keep misrepresenting adding support for extracting data from GrapheneOS via ADB based on a user providing lock method as being something more in their marketing. This is start of our response. We'll be pushing for much bigger changes for Android and Pixels.\n\nWe fully intend to make the same proposals to other Android OEMs like Samsung. We're starting with Pixels because they're the devices we use due to their high level of security. We're also going to begin advocating for big changes like encrypted memory and funding PoC attacks.\n\nWe've been working on a duress PIN/password feature for a while that's nearly ready to ship. It's taking so long because we had to prevent bypasses impacting existing panic / duress wipe apps and OS features. We also decided to do the USB-C control and auto-reboot features first.\n\nSince 2016, we've planned to support adding a PIN as a 2nd factor for fingerprint unlock. A new contributor has started working on this feature. We'll get it done after duress PIN/password. This will allow using passphrase primary unlock with fingerprint+PIN secondary unlock. \N 20756 \N 2552 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4276065195232 0 \N \N f 0 \N 0 83831582 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2563 2022-10-15 13:46:19.804 2025-03-29 22:39:47.915 What is the strangest question you've ever been asked as a Bitcoiner? I don't blame the person for this one because they were younger and didn't have a ton of experience with money, but it was really weird.\n\n"But how is Bitcoin valuable if each of the sats is so small?" \N 3990 \N 2563 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.49146509004687 0 \N \N f 0 \N 0 762281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 4322 2022-11-18 19:24:03.171 2025-03-29 22:39:47.915 Books And Articles Newsletter, Issue 33 \n![](https://m.stacker.news/53339)\n\n\n### News Of The Week \n\nWelcome to the Books And Articles newsletter. Thanks for all of the quality posts.\n \nThis has been another good week for the territory. @Athena has begun to post her popular “Bitcoin Poem” series here. I hope that after they are all published we will get a consolidated post.\n\nBoth @cryotosensei and @DarthCoin have movie/series reviews for us. Maybe it’s catching on as a category. \n\n\nAs always, please reply with suggestions and opinions on how to make this territory better. \n\nLogo design by @plebpoet\nLink to last weeks newsletter: https://stacker.news/items/684445/r/siggy47 \n\n\n\n### Top Five Posts Of The Week \n\nHere are this week’s top posts:\n\n- [Dinner for Steve- A tale of bitcoin for good](https://stacker.news/items/684842/r/siggy47) by @grayruby\n\n- [LOTR or Star Wars, and Why?](https://stacker.news/items/693705/r/siggy47) by @speakingyourtruth\n\n- [The Basic Laws of Human stupidity - part 8 & 9](https://stacker.news/items/685370/r/siggy47) by @DarthCoin\n\n- [And Then She Disappears - Block 2](https://stacker.news/items/689947/r/siggy47) by @ginkgo\n\n- [Book Review | “The 17 Indisputable Laws of Teamwork”](https://stacker.news/items/687944/r/siggy47) by @cryotosensei\n\n\n\n### Siggy’s Suggestions\n\n- [How investigative master Seymour Hersh broke the story of the My Lai massacre](https://stacker.news/items/692333/r/siggy47) by @Malachi17\n\nI have been following Hersh’s work since these My Lai Massacre revelations. Even though he’s 87 years old now, he’s still speaking truth to power (Nord Stream pipeline). You should check out his substack if you value his work.\n\n- [Fable: The ox, the pig and Bitcoin](https://stacker.news/items/693688/r/siggy47) by @BTCLNAT\n\nReading this reminded me that I should start eating better and drop a few (?) pounds.\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n- ["Who are you?" — How do I want to answer?](https://stacker.news/items/674910/r/siggy47) by @IamSINGLE\n\n- ["My journey with Bitcoin: the experience of an ordinary Cuban"](https://stacker.news/items/676287/r/siggy47) by @BTCLNAT\n\n\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n- [And Then She Disappears - Block 1](https://stacker.news/items/680735/r/siggy47) by @ginkgo\n\n### Book Reviews\n\n- [A Journey Through Emiko Jean's The Return of Ellie Black](https://stacker.news/items/691236) by @Melisa\n\n- [what i read, and wrapping up in july:](https://stacker.news/items/630204/r/siggy47) by @speakingyourtruth\n\n- [Book Review: Nothing Like The Movies by Lynn Painter](https://stacker.news/items/670569/r/siggy47) by @speakingyourtruth\n\n- [The Mandibles: A Review](https://stacker.news/items/668210/r/siggy47) by @jimmysong\n\n- [Self-Reliance by Emerson](https://stacker.news/items/669132/r/siggy47) by @ek\n\n\n- [Book - The Victorian Internet by Tom Standage (1998)](https://stacker.news/items/673776/r/siggy47) by @Signal312\n\n- [Review: The Righteous Mind](https://stacker.news/items/665765/r/siggy47) by @Undisciplined\n\n- [Book Review: Sliced Americana](https://stacker.news/items/663627/r/siggy47) by @jbschirtzinger\n\n- [Saboteurs: How Secret, Deep State Occultists Are Manipulating American Society](https://stacker.news/items/675002/r/siggy47) by @jbschirtzinger\n\n- [The New Manners and Customs of Bible Times](https://stacker.news/items/691719) by @jbschirtzinger\n\n- [Book Review | “101 ways to bring out the best in your children & yourself”](https://stacker.news/items/667453/r/siggy47) by @cryotosensei\n\n- [Book Review | “Diary of a Wimpy Kid”](https://stacker.news/items/668335/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Daily Dad” by Ryan Holiday](https://stacker.news/items/684138/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002) by @cryotosensei\n\n- [Book Review | “The 17 Indisputable Laws of Teamwork”](https://stacker.news/items/687944) by @cryotosensei\n\n- [Book Review | “Wonder Doodles”](https://stacker.news/items/685335) by @cryotosensei\n\n- [Book Reviews Directory #2](https://stacker.news/items/665395/r/siggy47)\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Movie & Television Reviews\n\n- [Movie Review | “How to make millions before Grandma dies”](https://stacker.news/items/683086/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [El Encargado | Argentinian TV series | very good comedy](https://stacker.news/items/689468/r/siggy47) by @DarthCoin\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [a new kind of poem (that you can see 👀 and hear 🦻)](https://stacker.news/items/676672/r/siggy47) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n- [Let's pretend we loved each other](https://stacker.news/items/666008/r/siggy47) by @Nadia\n\n- [That's MINE! Poetry.](https://stacker.news/items/661773/r/siggy47) by @Malach17\n\n- [Silly rhymes written by a guy (maybe) fallen in love](https://stacker.news/items/666985/r/siggy47) by @0268a5c238\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 21048 \N 4322 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.392470458556389 0 \N \N f 0 \N 0 106335604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435752 2025-03-12 23:42:05.028 2025-03-29 22:39:51.187 \N nothing for me, but i have made a conscious effort to eat much better food over the last year https://example.com/ 20972 435663 435610.435663.435752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.09476059691467 0 \N \N f 0 \N 0 77675802 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435750 2025-03-12 23:40:29.753 2025-03-29 22:39:51.187 \N You saw the LN as being too difficult and complicated for the new user due to necessity of incoming liquidity, failed transaction, etc. Are you confident Ark will be a seamless, simple experience for a new user? https://example.com/ 12959 435181 435030.435181.435750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.23814257665217 0 \N \N f 0 \N 0 15261243 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435758 2025-03-12 23:54:39.756 2025-03-29 22:39:51.187 \N I think SN is the only internet place I want to be. I haven't used twitter in months. And I have to be very stern with myself and set harsh limits with instagram. not everyone's struggle, but that's mine. anyway, I would so much rather come here daily to get news, sure, but also read thoughtful opinions on, as you were pointing out, a wide variety of anything. I much prefer putting out my work here where I know it will get read, I know it will reach people, and as a huge bonus, I'll potentially get rewarded in sats. This has become a motivator, and not just for me, I see it happening within the "community" or neighborhood of SN. \nI think when a community flourishes, it doesn't spend too much time taking the temperature of the community. I guess I'm saying, a strength inside a community is self interest. that's why the gamification of SN is a success. https://example.com/ 9276 435757 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735.435744.435757.435758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8473784140307 0 \N \N f 0 \N 0 26025486 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435840 2025-03-13 02:47:39.043 2025-03-29 22:39:51.187 \N You should use a submarine swap service like https://boltz.exchange to exchange your KYC on chain bitcoin to LN bitcoin. Then you can do whatever you want with your LN btc.\nThere is also https://fixedfloat.com/ which is centralized, but it's a good alternative https://example.com/ 21398 435811 434278.434503.434522.434598.434602.435622.435772.435775.435811.435840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6295911223625 0 \N \N f 0 \N 0 203065338 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435757 2025-03-12 23:54:20.462 2025-03-29 22:39:51.187 \N I just finished editing a tutorial video about https://lightsats.com/; if you don't know it yet, go and check it out, its worth it.\n\nMy video will be published in 3 hrs (aprox)\n\nBut https://lightsats.com/ is platform where the Bitcoiners can give SATS or orange pill friends or any one on the streets and if this person is not interested in Bitcoin, you will recovery the SATS you gave.\n\nCheers https://example.com/ 20717 435744 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735.435744.435757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7793891982232 0 \N \N f 159942672 \N 2 59553044 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 2562 2022-10-15 13:45:28.047 2025-03-29 22:39:47.908 Fedi, Inc. Announces Raising $17 Million in Series A Round \N https://www.fedi.xyz/blog/fedi-inc-announces-raising-17-million-in-series-a-round 19829 \N 2562 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.91069339499069 0 \N \N f 0 \N 0 246140773 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2556 2022-10-15 08:08:36.063 2025-03-29 22:39:47.909 What have you STOPPED buying after you STARTED buying Bitcoin? For me…take out food was a big one. \n\nOne of the big unexpected changes I made was starting to cook more. Now I rarely eat out, and I usually feel like shit afterwards if I do lol. \N 1389 \N 2556 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.4324291782826 0 \N \N f 0 \N 0 85862290 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435779 2025-03-13 00:51:48.592 2025-03-29 22:39:51.187 \N Same, but I’m thrilled to see it. Cheap stuff gets really cheap, affordable stuff gets cheap, expensive stuff gets affordable, crazy stuff gets expensive. https://example.com/ 940 435151 435151.435779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.5684666580074 0 \N \N f 0 \N 0 122288062 0 f f \N \N \N \N 435151 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435777 2025-03-13 00:51:20.211 2025-03-29 22:39:51.187 \N coding away on my freelancing project.\ncrypto prices are in free fall.\n\nwanna code faster and then try to sell something on amazon, make more apps to diversify income. \n\nwhatsup with you guys. https://example.com/ 20854 435375 435375.435777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6262738250537 0 \N \N f 0 \N 0 45515502 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435784 2025-03-13 00:58:52.534 2025-03-29 22:39:51.187 \N Definitely noticed this also. Proof of work in motion.\n\nMore comments (about 20-40% extra) on posts if posted before 1pm EST too.\n\nI planned to release my analytics post, diving deeper into other related trends. The content & stats will need updating since I last ran the numbers, but will aim to get that out sometime in the next 7 days.\n\nMay be some fun stats on territories and author awards also. https://example.com/ 794 435457 435457.435784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8824313646617 0 \N \N f 0 \N 0 227443109 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435785 2025-03-13 00:58:56.781 2025-03-29 22:39:51.187 \N In eastern europe, it is traditional to be in the village or on the farm of the grandparents in the summer.\n\nI think in this case it's his farm, and he's the Deda or whatever his local language calls it, and he's getting extreme offline time from all the numbskulls, recharging his force-ignore powers and scathing memes.\n\nI also like my offline time. I think a whole season would be great. Even the phone in the faraday cage with zero charge on the battery. No television, no tv antenna, no cable connection. https://example.com/ 5522 434645 433828.433946.433993.434375.434645.435785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.14055164001788 0 \N \N f 0 \N 0 53562515 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435787 2025-03-13 01:00:36.471 2025-03-29 22:39:51.187 \N [Day 5](https://stacker.news/items/407959) of Piano Practice: [2024-02-01-133648.m4a](https://files.ekzyis.com/public/music/2024-02-01-133648.m4a)\n\nI might be able to pull of the whole song tomorrow--or at least this week.\n\nStill no one can recognize the song?\n\n**Bonus question**\n\nWho can tell me what the following command does:\n\n```\n$ mv {signal-,}2024-02-01-133648.m4a\n```\n\nOne of my favorite linux terminal flex moves https://example.com/ 909 435707 435639.435646.435707.435787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6153204103393 0 \N \N f 0 \N 0 132276918 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435774 2025-03-13 00:40:49.918 2025-03-29 22:39:51.187 \N All about the iOS PWA notification fixes lol I enjoy following the discussion on the GitHub bug https://example.com/ 1213 435579 435579.435774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6462197089319 0 \N \N f 214777295 \N 1 233240814 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 4382 2022-11-20 06:35:07.15 2025-03-29 22:39:47.909 Where can one get a line of credit using BTC as collateral? Ideally whoever is providing it is a Bitcoin only company. Any ideas? \N 4083 \N 4382 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.03494714990021 0 \N \N f 0 \N 0 124223698 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435802 2025-03-13 01:21:39.687 2025-03-29 22:39:51.187 \N pretty cool.\nthe incentives for participating in this are very good: your watchertower protect the nodes of your peers, and theirs protect your nodes. This relationship of mutual benefit can encourage people to use their watchertower to protect others "for free", in a colaborative manner, since everyone benefits.\n\nI like the idea of watch swaps, but I have some concerns regarding privacy:\n\nI just wonder about the possible drawbacks: since other nodes will be aware of your channels onchain (they need to be aware in order to monitor the blockchain in case of a forced-close attack), it will reveal your channels and lose privacy. I guess they probably also have to known the latest channel state in order to check if the forced-close used a previous channel state (whose balance benefits the attacker) or if the channel closed did match the latest balance of the channel. This is another thing of concern: the watchtower of other nodes have to know your node's balance on the channels you want them to monitor.\n\nplease correct me if im wrong. Id like to know the privacy implications of watch swaps https://example.com/ 7580 435704 435657.435704.435802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2396643522402 0 \N \N f 0 \N 0 167220335 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435794 2025-03-13 01:08:30.237 2025-03-29 22:39:51.187 \N ![](https://www.zapread.com/i/9P3) https://example.com/ 21090 435746 435746.435794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8616560524647 0 \N \N f 0 \N 0 228333889 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435839 2025-03-13 02:46:03.267 2025-03-29 22:39:51.187 \N I have 4 channels in my Phoenix. All good. Just did some payments, all ok.\nTry killing the app and restart, maybe the electrum spv didn't catch up well. Sometimes happen that. https://example.com/ 1960 435795 434278.434318.435783.435795.435839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8602342693869 0 \N \N f 0 \N 0 155840444 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435793 2025-03-13 01:06:34.526 2025-03-29 22:39:51.187 \N ![](https://m.stacker.news/39800)\n![](https://m.stacker.news/39801)\nIt's probably a mundane typo, but Lyn's great at trolling and I can't help reading it this way. https://example.com/ 21062 434596 330698.330774.434596.435793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0635681814429 0 \N \N f 575308627 \N 4 68852563 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435827 2025-03-13 02:05:18.951 2025-03-29 22:39:51.187 \N Unless the author really wants to build this out, I think the more durable approach would be one of those crowdsource github README lists. https://example.com/ 21833 435826 435826.435827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7140986234265 0 \N \N f 0 \N 0 158015963 0 f f \N \N \N \N 435826 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 4531 2022-11-22 21:27:59.633 2025-03-29 22:39:47.909 Stacker News Homepage + Profile Design Ideas A while back, I worked on some mockups for a refreshed homepage design + profile page design, and figured it was worth sharing the ideas on SN.\n\nWe initially decided to shelve the design ideas to prioritize other SN improvements, but with a growing number of open source contributors lately, I thought there might be some interest in revitalizing some of these ideas.\n\nHere are a few of the old mockups for mobile screens (homepage + profile pages with certain elements expanded), feel free to share any feedback below!\n\n\n\n![13 Pro - 33.png](https://m.stacker.news/16941)\n\n![My Profile (4).png](https://m.stacker.news/16942)\n\n![My Profile (5).png](https://m.stacker.news/16943) \N 5597 \N 4531 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.198618060743 0 \N \N f 0 \N 0 48459287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435818 2025-03-13 01:54:20.022 2025-03-29 22:39:51.187 \N I'm loving the 'random' tab!\n\nI refresh again and again to see my post up there. It's fun! Sometimes, I find a super interesting post and read it. https://example.com/ 763 435809 435804.435809.435818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0205041642333 0 \N \N f 0 \N 0 8675707 0 f f \N \N \N \N 435804 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435829 2025-03-13 02:19:15.343 2025-03-29 22:39:51.187 \N >The other road to mainstream adoption is utility \n\nWell said @roy. Just some LN wallets are not enough for adoption if there's no utility.\nVery good article! https://example.com/ 16754 435791 435596.435791.435829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2349436124648 0 \N \N f 0 \N 0 35109059 0 f f \N \N \N \N 435596 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435816 2025-03-13 01:51:28.484 2025-03-29 22:39:51.187 \N Shitcoins will exist no matter what. Might as well have them settle in bitcoin https://example.com/ 15049 435619 435328.435487.435605.435612.435619.435816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8284561970511 0 \N \N f 0 \N 0 9047658 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435819 2025-03-13 01:55:40.732 2025-03-29 22:39:51.187 \N I would work on understanding what went wrong to make the next version stronger. https://example.com/ 21062 435812 435812.435819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6271941220337 0 \N \N f 0 \N 0 94889458 0 f f \N \N \N \N 435812 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435811 2025-03-13 01:42:00.647 2025-03-29 22:39:51.187 \N Hard to say. There are so many!\n\nOne powerful example was Hong Kongers in exile using Bitcoin to support human rights advocacy inside the city from abroad.\n\nAnother is a Burmese activist who escaped from his country using BTC as a lifeline.\n\nYet another is a Russian independent media outlet that is using Bitcoin to help sustain its operations after it was forced to leave Russia. https://example.com/ 20858 435775 434278.434503.434522.434598.434602.435622.435772.435775.435811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.52594118534351 0 \N \N f 301734278 \N 3 245247976 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435809 2025-03-13 01:39:31.648 2025-03-29 22:39:51.187 \N > because Vitalik Buterin came up with the term\n\nWhy does it matter which person came up with a term?\n\nNot using a word because of this actually gives this person you apparently hate so much power over you.\n\nReclaiming a word for yourself is the power move. https://example.com/ 5809 435804 435804.435809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3238020686284 0 \N \N f 8675707 \N 1 238257043 0 f f \N \N \N \N 435804 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435845 2025-03-13 02:56:39.607 2025-03-29 22:39:51.187 \N I *was* going say that using Liquid differs from using another altcoin (such as Bcash and Litecoin, as in the example) due to the enforced 1-to-1 peg between Liquid and Bitcoin. But when I typed *1-to-1 peg*, I cringed realizing my mistake. https://example.com/ 10698 435843 435231.435650.435814.435836.435843.435845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4631900873216 0 \N \N f 347752116 \N 2 126009633 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435825 2025-03-13 02:03:05.726 2025-03-29 22:39:51.187 \N From our experience, yes. I could count the number of people that voluntarily left our company on three fingers. https://example.com/ 18430 259258 259258.435825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.11550955248757 0 \N \N f 0 \N 0 137248582 0 f f \N \N \N \N 259258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435843 2025-03-13 02:53:27.618 2025-03-29 22:39:51.187 \N I guess the most effective I might not even know I met 😅\n\nBut to be honest, it's probably either Gabriel Custodiet from the Watchman Privacy Pod or Jack Rhysider from Darknet Diaries. https://example.com/ 6191 435836 435231.435650.435814.435836.435843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2234867045023 0 \N \N f 473761749 \N 3 214614219 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435842 2025-03-13 02:49:26.63 2025-03-29 22:39:51.188 \N You can hover over the thing and see that 34 users upvoted it. There are also plenty of comments...\n\nAre you projecting? ;) https://example.com/ 18368 434318 434278.434318.435842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.220365939085916 0 \N \N f 0 \N 0 5257023 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435822 2025-03-13 01:56:19.381 2025-03-29 22:39:51.188 \N ![](https://i.imgflip.com/7ifx0a.jpg) https://example.com/ 10094 435639 435639.435822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.24585978169625 0 \N \N f 0 \N 0 62713619 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435855 2025-03-13 03:13:08.667 2025-03-29 22:39:47.909 How did Bitcoin change your ATTITUDE to money? I don't want to just go out and say, *“I didn't about money”* because that's not true of anyone—money leads to a roof, food, and clothing, and not caring about it at all is too much clown 🤡 even for me. \n\n**However.**\n\nWhen I reflect back on my pre-Bitcoin career, I notice a distinct lack of... giving a shit. When I was younger I already had a good understanding of the rat race, and I thought it was strange how money, as a concept, seemed to dominate everyone's actions without their really understanding what it was. Consequentially, and since I wasn't and still am not a “consumer,” my motivation for earning FedCoin didn't extend that far beyond my immediate needs. \n\nThinking about that, it occurs to me the issue was simply that I didn't see a link between FedCoin and **energy**. Rather, FedCoin is a thing given to you, granting you the authority (through their authority) to claim X number of tokens. Whatever energy exists in the exchange, is actually contained by the central authority and merely “loaned” out to you. \n\n**Now** the situation is rather different. Sats are monetary vehicles of energy, so I value them in the same way I value the hydroelectric dam. If you know what I mean—\n\nhttps://i.gyazo.com/68e93e5ac8181fa0a8fcd60e9f46a465.png\n\nThoughts on the subject? Similar experiences? \N 694 \N 435855 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 0.878779638490563 0 \N \N f 0 \N 0 156296235 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435879 2025-03-13 04:01:48.96 2025-03-29 22:39:51.187 \N Also be prepared for a lot of "I am new to bitcoin and here to fix it" takes. https://example.com/ 21064 435497 435497.435879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.734567578731 0 \N \N f 0 \N 0 152052390 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435854 2025-03-13 03:12:31.744 2025-03-29 22:39:51.187 \N I just submitted my application to Wolf! https://example.com/ 19668 433379 433377.433379.435854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9536081849238 0 \N \N f 0 \N 0 2652055 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435862 2025-03-13 03:27:03.283 2025-03-29 22:39:47.909 Best way to obfuscate coins on Lightning? Is there an equivalent to whirlpool or something even better? \N 787 \N 435862 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.77370162392314 0 \N \N f 0 \N 0 155406614 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435863 2025-03-13 03:28:52.796 2025-03-29 22:39:51.187 \N I'm working on a promotion idea for a client's restaurant this week. https://example.com/ 20969 435639 435639.435863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.61951641846011 0 \N \N f 0 \N 0 45629965 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435865 2025-03-13 03:34:49.426 2025-03-29 22:39:51.187 \N > wallet can share the payment pre-image with Strike servers, Strike servers confirm that that was indeed payment they just received on one of the terminals and then the Strike server will immediately pay out some % sats to the wallet dev.\n\nThis won't work very well. Any LN node that routes the payment will know the preimage once the payment succeeds. The wallet would have to share it with Strike before the payment is made but regardless any LN node on the network would want to submit any successful payment they routed to Strike in order to redeem their share. I'm sure they could do something to battle the spam like blocking the dev account they are paying out to if there's too many false claims. But there's a privacy concern if this isn't communicated to the wallet user that this is happening without their consent. Is the user sharing all their payment data to the FOSS wallet? Or are they submitting it to Strike themselves and associating IP address information? Also I doubt they will provide this without KYC'ing the wallet dev.\n\nThis is also an analytics concern with them trying to aggregate as much proprietary knowledge about the network and who is using what. It's good they are trying something to pay open source wallet devs, but they could just like, pay open source wallet devs. https://example.com/ 12490 435639 435639.435865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9862354695036 0 \N \N f 0 \N 0 217260933 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435868 2025-03-13 03:42:12.843 2025-03-29 22:39:51.187 \N also, Gollum is the one who ends up destroying the ring in the end….\n\n> My heart tells me that he has some part to play yet, for good or ill, before the end; and when that comes, the pity of Bilbo may rule the fate of many – yours not least.\n\nI see a future where bitcoin horders end up destroying all CBDCs while losing all their own bitcoin in the process. https://example.com/ 21522 435457 435457.435868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2396922942865 0 \N \N f 0 \N 0 142319037 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435940 2025-03-13 06:00:29.038 2025-03-29 22:39:51.187 \N Since when was it one or the other?\n\nI have two wallets on my Ledger: one for HODLing, one for spending.\n\nI also have LN wallets, all for spending.\n\nMuch as with fiat you have a spending account and a savings account, you can do the same with Bitcoin. https://example.com/ 20102 435924 435924.435940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6175078067632 0 \N \N f 0 \N 0 246094274 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435893 2025-03-13 04:32:47.079 2025-03-29 22:39:51.187 \N Truth https://example.com/ 1090 435891 435891.435893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3011453425389 0 \N \N f 86308025 \N 1 84758396 0 f f \N \N \N \N 435891 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 6912 2023-01-17 23:50:31.918 2025-03-29 22:39:47.909 Books And Articles Newsletter, Issue 24 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week \n\nWelcome to this week’s double issue of the Books And Articles newsletter. Thanks for all of the quality posts. Due to my vacation and outside commitments this week, I decided to post one newsletter covering the last two weeks. \nI am happy to mention that @cleophas has begun releasing another book in the territory. Check out [The Final Preserve](https://stacker.news/items/599283/r/siggy47), which is now listed in the books section. Chapter 1 also made last week’s Top Posts list. \nAs always, please reply to this post with suggestions and opinions on how to make this territory better. \nI hope everyone has a good week. \n\n### Top Five Posts Of The Week (Last Week)\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are last week’s top posts:\n\n- [and, my social media detox begins.](https://stacker.news/items/606783/r/siggy47) by @speakingyourtruth\n\n- [Book Review | “The Four Tendencies”](https://stacker.news/items/605553/r/siggy47) by @cryotosensei\n\n- [What's your biggest Turning Point in life?](https://stacker.news/items/598861/r/siggy47) by @BitcoinAbhi\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Niall Ferguson: We’re All Soviets Now](https://stacker.news/items/604630/r/siggy47) by @erict875\n\n### Top Five Posts Of The Week (This Week)\n\nHere are this week’s top posts:\n\n- [Writer Review: 5 Writing Platforms that Pay Beginners (2023)](https://stacker.news/items/610671/r/siggy47) by @ek\n\n- [The Penal Preserve, Chapter 9](https://stacker.news/items/612307/r/siggy47) by @cleophas\n\n- [What's the best Yoga book you'd recommend to a beginner?](https://stacker.news/items/608508/r/siggy47) by @AG\n\n\n- [The 75 Best Sci-Fi Books of All Time -- Esquire](https://stacker.news/items/607393/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Interviewing Tim Sweeney and Neal Stephenson on the Metaverse, AI, & other tech](https://stacker.news/items/612657/r/siggy47) by @StillStackinAfterAllTheseYears\n\n\n\n### Siggy’s Suggestions\n\nNone this week\n \n### This week’s Golden Oldie:\n\nNone this week\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462)\n by @StillStackinAfterAllTheseYears\n\n- [The Bezzle, by Cory Doctorow](https://stacker.news/items/506632/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [The Achilles Trap, by Steve Coll](https://stacker.news/items/497756) by @Coinsreporter\n\n- [Software,by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n- [Bleeding Edge by Thomas Pynchon](https://stacker.news/items/533493/r/siggy47) by @Scoresby\n\n- [ “Better than Before” by Gretchen Rubin](https://stacker.news/items/534613/r/siggy47) by @cryotosensei\n\n- [Giada De Laurentiis Recipe for Adventure Hong Kong](https://stacker.news/items/539739/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Culture Code” appeals to the adolescent in me](https://stacker.news/items/568580/r/siggy47) by @cryotosensei\n\n- [Book Review | Wanna evolve like Pokemon with “My Morning Routine”](https://stacker.news/items/569631/r/siggy47) by @cryotosensei\n\n- [Book Review | The Handbook for Leaders](https://stacker.news/items/579116/r/siggy47) by @cryotosensei\n\n- [Book Review | “Fierce Conversations” by Susan Scott](https://stacker.news/items/581153/r/siggy47) by @cryotosensei\n\n- [Book Review | “All Joy and No Fun” Jennifer Stone](https://stacker.news/items/585790/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Four Tendencies”](https://stacker.news/items/605553/r/siggy47) by @cryotosensei\n\n- [Lonesome Traveller by Jack Kerouac](https://stacker.news/items/543525) by @carlosfandango\n\n- [Pre-review of Human Rights and the Uses of History by Samuel Moyn](https://stacker.news/items/570366/r/siggy47) by @SilkyNinja\n\n- [Book Review- The Genesis Book](https://stacker.news/items/588212/r/siggy47) by @siggy47\n\n- [What I read in June, including what might become one of the best books of 2024:](https://stacker.news/items/593241/r/siggy47) by @speakingyourtruth\n\n- [The Book of Five Rings by Musashi Miyamoto](https://stacker.news/items/590545/r/siggy47) by @itermathi\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 18923 \N 6912 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.2219175108858 0 \N \N f 0 \N 0 54048736 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435903 2025-03-13 04:51:24.883 2025-03-29 22:39:47.909 Bitcoin amnesty - hypothetical scenario # Imagine this scenario, completely hypothetical\n\n- Antonopoulos's prediction that two kinds of Bitcoin will coexist has come true. Indeed, state-approved Bitcoin and self-hosted Bitcoin are happily coexisting.\n- It has become impossible to transit between the two kinds, indeed, exchanges only allow for Bitcoin that has no dirty history. The tools to track this have become perfectly reliable.\n- Surprisingly, state-approved bitcoins are worth millions in today's dollars. Self-hosted Bitcoin has become nearly worthless, a few dollars per Bitcoin.\n- The state still cannot block people from using self-hosted Bitcoin, as intended. Yet, people are sheep, other than a few idealists, everyone is happily using state-approved Bitcoin as it has shown its value as a store of value and as a medium of exchange.\n- Self-hosted Bitcoin is almost useless. Except for the few idealists, no one accepts it. You can barely buy things with it as most shops have decided to use the state-approved Bitcoin.\n\nThis is the background of the scenario.\n\nNow, the government has decided they want to have full control over all 21M Bitcoin. They want to merge the self-hosted Bitcoin network into the state-approved Bitcoin. \n\nFor this, they've decided to use the time-tested approach of giving amnesty. Indeed, in the before-times, in countries where guns were illegal, giving amnesty was the best way to get people to turn in their guns. It had a 99% success rate.\n\nSimilarly, they intend that by having people transfer all the self-hosted Bitcoin into the state-approved network, without penalty or punishment, many people will do so.\n\nBy choosing to transition to the state-approved Bitcoin, the dollar value of your Bitcoin suddenly goes up in value, say by a factor of 1 million. You become a dollar-millionaire or even a billionaire. You are rich beyond the grave. __However, this comes at the cost that you forsake your values. You betray everything Bitcoin stands for__. You can only use Bitcoin for state-approved transactions. \n\nYou should also make the assumption that you are not a criminal. For some hypothetical reason, you have no need to evade taxes. You can buy everything you need and want in the legal circuit.\n\nAdding the additional assumption that you can trust the state not to punish you and that this is a true amnesty, how would you answer the poll?\n\n# Summary of your choices\n\n- _I stay in the self-hosted network_. Bitcoin the way it was intended. You are poor, your Bitcoin is nearly worthless, you can transact with it freely with fellow idealists.\n- _I move to the state-approved netwrok_. You move to the 0.1% of the super-rich. Bitcoin is not being used the way Satoshi intended it. It is a great store of value, but the government can tax it, the government can block you from buying drugs or anything else they deem illegal. They will _not_ confiscate your Bitcoin however.\n\n# Purpose of this hypothetical\n\nBy adding all these, probably not-so-realistic assumptions that you can trust the state to abide by a true amnesty, I want to see how many of us are in it for a number-go-up (NGU) scenario, and how much _actually_ care about a decentralized, permissionless, and trustless network.\n\n# Disclaimer\n\nThis is just for fun. My definition of fun might be different from yours. I do know all these assumptions are not realistic. I would imagine that in reality, the permissionless network will be more valuable than the state-approved one. In reality, you should also not trust the state to change the rules _a posteriori_.\n\n \N 21571 \N 435903 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.34419975585693 0 \N \N f 0 \N 0 159895423 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435901 2025-03-13 04:44:30.1 2025-03-29 22:39:51.187 \N When I would lie down in bed for sleeping, sideways with my head on the pillow, I would think that my heartbeat that I heard in the ear were steps of a big dinosaur coming to get me but first he had to go all around the world so I was safe https://example.com/ 19812 435376 435375.435376.435901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.87849958429163 0 \N \N f 0 \N 0 108649457 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435887 2025-03-13 04:25:49.897 2025-03-29 22:39:51.187 \N Because the goal is entertainment for an audience to draw in people buying tickets. https://example.com/ 16353 435328 435328.435887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.71703298681421 0 \N \N f 659687864 \N 6 156998706 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441750 2025-03-18 09:19:10.999 2025-03-29 22:39:51.187 \N Day 84 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20775 441712 441695.441712.441750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4271956818369 0 \N \N f 612426240 \N 6 43951473 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435913 2025-03-13 05:11:38.427 2025-03-29 22:39:51.187 \N Oh ,wow. I can still recall the emotions I experienced reading George R. R. Martin's _A Storm of Swords_. The author, who is is well known for killing off main characters, has beautifully set up a redemption ark for the Martells, championed by Oberyn, who duels the cruelest, most murderous and loathed character to this point (which is saying a lot,) Sir Gregor Clegane.\n\nIt's a David v. Goliath story that, as a cynical GRRM reader, you would be loathe to anticipate as his writing at times seems only to be a reminder of the injustice in the world. And yet, this confident-in-the-face-of-adversity prince, on a mission of retribution the reader is so longing for, actually seems to have a plan and it seems to be succeeding. As Oberyn faces down his opponent in a duel - a trial by combat to both save an innocent man from persecution and get revenge for a murdered sister - he deftly overcomes his opponent's ("The Mountain who Rides") shear size with tactics, slowly grinding him down until he finally delivers a fatal stab of his poison tipped spear to an exhausted opponent. Despite every logical resistance, the reader is finally presented with such a tale of triumphal justice that he can let his guard down just enough to savor it. The crowd is cheering, and there's a primal exultation of human spirit at this unlikely outcome.\n\nIt's at this point I considered that this series of books had finally paid off after all the horrible deeds committed by this monster of a character. At last we get a sweet victory to savor.... And yet, snatched from the jaws of victory, the dying Mountain grabs our victor by the boot and yanks him to the ground. The would be hero is slain in a such a stomach churning fashion that I can still recall the visceral repulsion I felt some decades ago while reading it. The cruelty matched only by the poignancy of the defeat. I couldn't bear to turn even a single page more at this point - I merely sat down the book and pushed it away, having to remind myself it's only a tale of fiction. I spent the next week in a slump, pondering the cruelness and injustice that must surely be possible in the reality of life if it could be so convincingly portrayed on paper. https://example.com/ 15213 435610 435610.435913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5074523420719 0 \N \N f 0 \N 0 14998032 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435916 2025-03-13 05:25:05.517 2025-03-29 22:39:47.909 Outer Spaces for Curious Beings - Nostr client (and relay) coming soon™️ \N https://outer.space 13177 \N 435916 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.9273157799341 0 \N \N f 0 \N 0 147974257 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436262 2025-03-13 12:26:47.571 2025-03-29 22:39:51.187 \N ![](https://pbs.twimg.com/media/Fj3D6UUVUAAiLm4?format=jpg&name=small) https://example.com/ 2789 436229 436197.436229.436262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.67140161458312 0 \N \N f 0 \N 0 220266572 0 f f \N \N \N \N 436197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435930 2025-03-13 05:36:32.74 2025-03-29 22:39:51.187 \N I have been experimenting with cutting out Twitter almost completely: I have been almost exclusively logging in on Thursdays around the Optech Recap.\nIt’s kinda embarrassing to admit how much time and focus that has freed up—it’s been amazing for my bigger and more complex projects. While it cut back a ton of noise, I also miss having a finger on the pulse of what’s on people’s minds and what ideas are being discussed. https://example.com/ 17209 434905 434905.435930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.45789655159533 0 \N \N f 0 \N 0 120014759 0 f f \N \N \N \N 434905 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443535 2025-03-19 12:05:03.395 2025-03-29 22:39:51.187 \N Lightning has in my opinion a better user experience then on chain payments. In most cases the fee is lower and the payments are almost instant settled. One of the downsides of lightning, a specially compered to on chain, is the security.\n\nDo you think the security of lightning will increase to a level where it will become more common to also use lightning for storage? Or even to use lightning to make some profit form stored bitcoin (stored in channels) in a safe way?\n\nAre you working on security products for lightning? https://example.com/ 2322 438108 427527.438108.443535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.20834023284809 0 \N \N f 0 \N 0 152584215 0 f f \N \N \N \N 427527 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435941 2025-03-13 06:03:43.802 2025-03-29 22:39:51.187 \N My holiday project is to build a sovereign node stack from the ground up, doing it all myself and not using a prebuilt package like Umbrel or Raspiblitz. I am not an software engineer, the first time i ever used command line was on my first Bitcoin node.\nI've installed the server version of Ubuntu on a Del Optiplex, downloaded and verified Bitcoin Core and am now in the middle of IBD.\nI'm following @k3tan Ministry of Nodes Ubuntu video series guide. My goal is to learn some new skills, set up a Lightning node and learn first hand now all the core tools and applications of Bitcoin work.\nSo far so good!\n\n![Screenshot 2023-12-21 at 1.11.22 PM.png](https://m.stacker.news/9723) https://example.com/ 5728 435217 435217.435941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5937987266083 0 \N \N f 0 \N 0 162206990 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435918 2025-03-13 05:27:23.545 2025-03-29 22:39:51.188 \N Lyn Alden https://example.com/ 15703 435747 435610.435747.435918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4824851470391 0 \N \N f 0 \N 0 16419456 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7138 2023-01-23 12:05:29.222 2025-03-29 22:39:47.909 Adam Back opinion on MSTR strategy on BTC https://twitter.com/adam3us/status/1740014051390894327\n\nnote how this works is $MSTR sold $610m new shares at the market (diluting existing shareholders % ownership), but it uses the proceeds to buy BTC and in fact again BTC/share ratio increased. the net effect is about 1.4% anti-dilutive in #bitcoin/share.\n\npreviously 174,530 btc on 15.64m shares. they sold 1.077m new shares for $610m and bought $617m of btc new position 189,150 btc on 16.72m shares. resulting btc/share increased from 0.011159 btc/share to 0.011313 btc/share = 1.4% anti-dilutive\n\nThat improvement in btc/share should increase the share price, logically; setting things up so @saylor\n and team can do it again. (and they did this multiple times this year already)\n\nnote this is not even his money: new share-holders buying the printed shares give the company money, which it uses to buy more BTC so that the BTC/share ratio is retained (even improved slightly). \N 2206 \N 7138 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.6054495679187 0 \N \N f 0 \N 0 197168230 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7225 2023-01-24 11:57:47.526 2025-03-29 22:39:47.909 Connecting to remotely nodes, what's the best option? Tor, TailScale... Hey there,\n\nHave been running few nodes and always struggling to understand what's the best/secure/private/anonymous option to connect remotely to the node to perform some maintenance.\n\nAs `ssh` is not always available, have been exploring connecting to nodes remotely (outside the local network) with a Tor browser and also using the IP provided by TailScale\n\nAny feedback on these two will be much appreciated or in case other options ara available please share your solution(s) below \n\nThanks in advance \N 1426 \N 7225 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.9414941012444 0 \N \N f 0 \N 0 194169993 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7192 2023-01-23 20:52:11.785 2025-03-29 22:39:47.909 What’s something you continually ignored for TOO long? My personal well being before others\n\nWould try to be the “good guy” always helping others out, while simultaneously putting off my own problems\n\nAll in the name of “selflessness” — when in reality I was just selfishly trying to put up a false persona, to my own detriment!\n\nWe live and we learn! \N 21269 \N 7192 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.6169290215724 0 \N \N f 0 \N 0 54639910 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7390 2023-01-26 13:28:55.59 2025-03-29 22:39:47.91 Swim safer in the open water - now with Bitcoin There are many examples of tech and bitcoin swag shops or brick-mortar food related venues accepting bitcoin, however, other industries are lacking a bit behind in this payment revolution. \n\nI wanted to see how it would do in a sports industry where it should be totally free from the bitcoin bias since the distribution of customers is quite random.\n\nIf you have not seen it yet, let me introduce you to "probably" the world's first swimming related shop accepting Bitcoin and of course offering a huge discount when paying with Bitcoin.\n\n## 360swim buoy\n\nIf you swim outside (lake, sea, rivers, etc.) and you do not have one of these, you should seriously consider it to keep you safer out there. And if you do not swim outdoors due to fear of the deep, this could be the product to help you get started. \n\n![](https://s3-eu-west-1.amazonaws.com/img.smoolis.com/a3a6db6fe-71b5-4f58-8faf-1fa78b5e5f93/edb6c235-f4a7-4f2d-9996-5658b722ba4e/tow_float_swimming_buoy.jpg)\n\n ### The buoy will:\n 1. allow you to store stuff, so it will not get stolen on the beach\n 2. make sure any incoming traffic (boats, etc.) will see you from far away\n 3. help you relax if you need a breather\n 4. serve as a visual marker if your loved one is following you from the dry land\n 5. etc. etc. \n \n ### Shop links\n \n - [Pure Lightning shop](https://360swim.com/ln-market)\n - [FIAT shop with Bitcoin payment option](https://www.SaferSwimmer.eu) - unfortunately, still requires some manual work to create payment links\n\n### The setup is quite minimal\n\n- own LN node under https://amboss.space/node/030b6c222bfa9e177f52a6ecd28d3313f1b1d41db7b4432bd2f1e1b07d1cf87780\n- LNbits instance (Invoice and marketplace extensions)\n- [Zaprite invoicing](https://zaprite.com/)\n- [Monitoring of incoming payments](https://github.com/swmtr/LNbits-payment-notifications-to-telegram)\n\n### The experiment results so far\n\nI wasn't sure what to expect, but after having the Bitcoin payment option for 5 months, it appears about 1% of customers choose it. Some know exactly what to do, some need a bit of hand holding. Hard to say if it is good or bad, but I think that even if only small percentage use it, I'd currently consider it a success.\n\n\n \N 2709 \N 7390 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.80951822492 0 \N \N f 0 \N 0 61822334 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435931 2025-03-13 05:37:23.807 2025-03-29 22:39:51.188 \N If you could implement one change to the Lightning Network to make it more private, what would you do? https://example.com/ 20586 435125 435125.435931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6531982538516 0 \N \N f 0 \N 0 246835371 0 f f \N \N \N \N 435125 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435932 2025-03-13 05:38:26.634 2025-03-29 22:39:51.188 \N I think more communities like Plebnet need to be formed. Also, can we work on i2p as a backup in case Tor runs into real problems? The US gov needs Tor to work, but they don't need it to have the reliable uptime Bitcoiners need for running a successful node. https://example.com/ 902 435682 435682.435932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7185648840283 0 \N \N f 0 \N 0 99202357 0 f f \N \N \N \N 435682 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 451418 2025-03-24 14:41:17.509 2025-03-29 22:39:51.461 \N Back in Miami. had a nice sleep in my bed, woke up without needing an alarm as opposed to the whole week at the conference. What did I miss? https://example.com/ 10554 451402 451395.451402.451418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.866745051345 0 \N \N f 291664049 \N 2 59990416 0 f f \N \N \N \N 451395 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435937 2025-03-13 05:52:42.469 2025-03-29 22:39:51.461 \N Both! VLS encapsulates the minimum amount of state required to maintain custody, so it's useful for both high end operations using a HSM and individuals using a personal signing device https://example.com/ 929 435928 435924.435928.435937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.49187415010992 0 \N \N f 75013429 \N 1 52314312 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435933 2025-03-13 05:38:46.146 2025-03-29 22:39:51.461 \N I'm finally working on a plan to allow at least one of my SN territories to break even this decade. https://example.com/ 18473 435859 435679.435859.435933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1482574694598 0 \N \N f 0 \N 0 20054985 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435952 2025-03-13 06:28:46.063 2025-03-29 22:39:51.461 \N Two blocks at the same height can have an overlapping selection of transactions, because from the perspective of either chain the competing block is not part of the best chain. So, if there are two blocks at height 100, most of the transactions in `block 100_a` would also be in `block 100_b`, and vice versa.\nNow any miners that are currently considering `block 100_a` the best chain would try to include any transactions that are not confirmed in `block 100_a` into a new block `block 101_a`. For them it does not matter if transactions might be already confirmed in `block 100_b`, because the `100_b` is not part of its history. For a miner that is currently working on extending from `block 100_b`, they would similarly ignore the content of `100_a`. \n\nIf now say `101_a` were found next, everyone would notice that the chaintip with `100_a` and `101_a` has more work than the chaintip with `100_b`. Nodes and miners currently on `100_b` as the chaintip would roll back block `100_b` and apply blocks `100_a` and `101_b`. Any transactions that were confirmed by `100_b` would first be returned to the nodes’ mempools and then removed according to the blocks `100_a` and `101_a`. Whatever is still in the mempool after, is simply ready to be included in a block.\n\n**TL;DR: Chaintips are like highlander, there can only be one, and all the other ones might as well not exist, but nodes will change their mind which one it is, if a different one pulls ahead in total work.** https://example.com/ 11670 435402 435402.435952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3683200194119 0 \N \N f 0 \N 0 201492405 0 f f \N \N \N \N 435402 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435953 2025-03-13 06:28:55.781 2025-03-29 22:39:51.461 \N thought it'd be fun to outline why i think bitcoin is successful:\n\n- I can use it to transact with people and vendors anywhere in the world\n- I sell people things using bitcoin\n- At conferences, I can buy a coffee with bitcoin on lightning and it works https://example.com/ 14258 435914 435914.435953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09315171380321 0 \N \N f 0 \N 0 10431687 0 f f \N \N \N \N 435914 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435961 2025-03-13 06:49:12.205 2025-03-29 22:39:51.461 \N My top supported shows in 2022 - https://fountain.fm/merryoscar/2022\n\n1. Podcasting 2.0 - https://fountain.fm/show/QRT0l2EfrKXNGDlRrmjL\n2. What Bitcoin Did - https://fountain.fm/show/LnQlDKTvuF5JwGBaVGv7\n3. The Kevin Rooke Show @kr https://fountain.fm/show/P6XXuSPg6f2rj4ECB0fT\n4. Value for Value - https://fountain.fm/show/bPuh1aiEX271WELOqf6q\n5. Citadel Dispatch - https://fountain.fm/show/p8WM5xdhPOB2YrKmP1Vy \n\nWhat were yours? https://example.com/ 20409 435890 330698.330774.434596.435793.435890.435961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.70157107804023 0 \N \N f 0 \N 0 131087894 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435957 2025-03-13 06:43:36.121 2025-03-29 22:39:51.464 \N I don't think that's her. The hair in that photo doesn't look very healthy 😂 https://example.com/ 9349 435904 435328.435887.435904.435957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8905475254826 0 \N \N f 379438210 \N 4 188056988 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435960 2025-03-13 06:48:58.117 2025-03-29 22:39:51.464 \N Avoiding pursuit of status. https://example.com/ 775 435937 435924.435928.435937.435960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3710974388323 0 \N \N f 0 \N 0 75013429 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435964 2025-03-13 07:06:15.605 2025-03-29 22:39:51.461 \N > However, I want to add it's not only bitcoiners. It's just any group of entrenched people, really. And there are a lot of such groups out there.\n\n100%. It's just that bitcoiners generally thump their chests about their intellectual honesty, and then devolve into kindergartners when thoughtcrime strikes a dischordant note against the symphony playing inside their echo chambers.\n\nSo I expect better from them, as a group, and hold them to a higher standard that is often sorely disappointed.\n\nI shouldn't talk in generalities this way, I know. It's a sore spot. https://example.com/ 20310 435488 435488.435964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5625012715671 0 \N \N f 0 \N 0 56288200 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454254 2025-03-26 10:29:57.778 2025-03-29 22:39:51.465 \N Uncle Gary did mention you at dinner the other night.\n\n> all I know is if it’s called Mutiny they’re probably up to no good https://example.com/ 5725 453968 335484.335562.335591.335690.335721.335729.335791.336308.336318.336322.452856.453420.453900.453968.454254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1751720116353 0 \N \N f 378189905 \N 2 161089379 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435965 2025-03-13 07:06:16.799 2025-03-29 22:39:51.465 \N what does it mean?? https://example.com/ 21620 434795 434795.435965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2807951129137 0 \N \N f 1356269279 \N 10 29011825 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435969 2025-03-13 07:16:47.133 2025-03-29 22:39:51.465 \N What if, instead of having a cool down period, a users posting cost increase or decrease by certain x% amount which is determined by the success of the previous post? \n\nThe more successful the previous post, the less your next post cost. I think this would deter users from posting random stuff and it would encourage them to make sure what they post are valuable to the community.\n\nYou can have a scale: horrible (between 0-100 sats), good (101-500 sats), excellent (501 upwards). Depending on where the previous post ranks by the time a user post something new, the post fees will get a % increase or decrease according to that rank. https://example.com/ 21357 434795 434795.435969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0060708201183 0 \N \N f 41417409 \N 1 249839719 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435982 2025-03-13 07:40:47.289 2025-03-29 22:39:47.91 Simultaneous Outage affecting both Windows Servers + Azure. Bug? Attack? There seems to be simultaneous issues affecting: (a) CrowdStrike failed update that is forcing Windows Servers into a blue-screen boot loop, and (b) An outage of Azure (not sure if this is same issue or different issues).\n\nHowever, reports are coming in that Banks, Airlines, Grocery Stores, etc worldwide are down. \n\nhttps://www.afr.com/technology/businesses-crippled-by-widespread-it-outage-20240719-p5jv2t\n\nhttps://www.nytimes.com/2024/07/18/us/frontier-flights-grounded-microsoft.html\n\nLive Updates Streaming from BBC: \n\nhttps://www.bbc.com/news/live/cnk4jdwp49et \N 8168 \N 435982 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 8.11572842458951 0 \N \N f 0 \N 0 20751367 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435978 2025-03-13 07:32:15.203 2025-03-29 22:39:51.462 \N intro to sql class in the business school at UT Austin 🫡 \n\nmy mom taught me html as a kid, and i picked up CSS at a job in college\n\n“none of those are programming languages”: yeah i got made fun of endlessly by “real” programmers in college a lot https://example.com/ 9494 435965 434795.435965.435978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6773488758368 0 \N \N f 1268659227 \N 9 87610052 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435977 2025-03-13 07:31:37.083 2025-03-29 22:39:51.462 \N stacker booze - like stacker brews, but with whiskey \n\nstacker ooze - our vd clinic\n\nstacker coups - our militant branch to overthrow the fed\n\nstacker ruse - craig wright's scam site where he constantly claims to @k00b (even though it is provably false) and demands a backdoor into our wallets https://example.com/ 10981 435969 434795.435969.435977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.48090554466855 0 \N \N f 0 \N 0 41417409 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435983 2025-03-13 07:43:01.449 2025-03-29 22:39:51.463 \N It's the parents duty to teach their children, not to give them over to the government for daycare... I mean 'Education'. https://example.com/ 16442 435980 434795.435965.435978.435980.435983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.75694551436561 0 \N \N f 912984313 \N 7 109441959 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455298 2025-03-26 22:30:28.038 2025-03-29 22:39:51.464 \N Probably a good strategy if you wanted to create a bunch of shell companies for tax evasion. The authorities would have a really hard time 🤣 https://example.com/ 12334 455274 454863.454877.455274.455298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5382686339499 0 \N \N f 440932431 \N 2 196512567 0 f f \N \N \N \N 454863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435984 2025-03-13 07:44:10.965 2025-03-29 22:39:51.464 \N When will be Tropic Square security element chip in trezors?\n\nWill you add option to change between wabisabi coordinators in coinjoin?\n\nThanks! https://example.com/ 5069 435983 434795.435965.435978.435980.435983.435984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3062428939838 0 \N \N f 879104860 \N 6 33879453 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435980 2025-03-13 07:36:30.168 2025-03-29 22:39:51.464 \N No need for them to develop a tool right now. This works: https://vpn.sovereign.engineering/ https://example.com/ 13097 435978 434795.435965.435978.435980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9073072915865 0 \N \N f 1022426272 \N 8 246232955 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455599 2025-03-27 07:27:51.193 2025-03-29 22:39:51.464 \N Day 180 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 15484 455551 455551.455599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2109770979313 0 \N \N f 1467650119 \N 11 100212886 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435976 2025-03-13 07:30:57.456 2025-03-29 22:39:51.466 \N Is Bitnob a company that can bring people into Bitcoin or just thriving from the preexisting Bitcoin community? https://example.com/ 21494 435924 435924.435976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.12455696241858 0 \N \N f 0 \N 0 38149060 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436078 2025-03-13 09:44:54.862 2025-03-29 22:39:51.466 \N Oh, this is big! Maybe some old friends will return. https://example.com/ 5694 436054 435231.435650.435814.435836.435843.435845.436054.436078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4429131005492 0 \N \N f 0 \N 0 249398964 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435989 2025-03-13 07:48:29.469 2025-03-29 22:39:51.464 \N What % of podcasts on Fountain are Bitcoin related vs not Bitcoin related? https://example.com/ 1173 435984 434795.435965.435978.435980.435983.435984.435989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.08115755550573 0 \N \N f 643975896 \N 5 235128964 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435990 2025-03-13 07:49:00.269 2025-03-29 22:39:51.465 \N Morning folks! Final reminder, there's been a lot of discussion over at the [book club](https://stacker.news/items/300775) and there's so much room for anyone to poke and prod and give their perspectives on some giant topics. \n\nI got a little carried away, maybe, with the prompts, and kept adding them till late in the evening, so if you checked in early, there's more to sink your teeth into. But this part of the book was really eye-opening, so I regret nothing. If you want to have hot takes to deploy this Thanksgiving, part 3 is where it's at for sure.\n\nThanks to everyone who took part, and to the zappers, who have been generous again! https://example.com/ 21734 435989 434795.435965.435978.435980.435983.435984.435989.435990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.85880071088236 0 \N \N f 220288825 \N 3 222915878 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 7281 2023-01-24 19:29:23.82 2025-03-29 22:39:47.91 Oshi Updates: Bitcoin-infused rewards and loyalty program features Today we're introducing some powerful new Oshi features giving Shopify, WooCommerce, and Square businesses better tools to acquire and retain customers using Bitcoin.\n\n-VIP Tiers\n-Referrals and Affiliates\n-Social Engagement\n\nYou can see our twitter post here: https://twitter.com/OshiApp/status/1709251099977249082\nHere's our blog post with details on the features: https://www.oshi.tech/blog/oshi-loyalty-upgrades\n\ntl;dr - traditional loyalty points are shitcoins customers earn, Oshi helps customers earn bitcoin seamlessly\n\nLoyalty & reward programs are used by millions of businesses use each and every day. Millions of consumers use them as well, even though they really don't give a shit about them, or their points. Regardless, they work. But they can work better.\n\nThe idea here is that we make it very easy for businesses of all sizes to offer a Bitcoin rewards program natively through their point of sale or ecommerce site.\n\nThis engages and intrigues customers with a new form of rewards, while consolidating all the coffee points, punch cards, miles, stars, and other junk onto an open loyalty network, where sats are the loyalty point standard.\n\nEager to hear everyone's thoughts! \N 15180 \N 7281 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9969152268042 0 \N \N f 0 \N 0 227176849 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435991 2025-03-13 07:49:37.3 2025-03-29 22:39:51.465 \N Salt 🧂\n\nPeople mistake salt as some sort of toxin for the body. When really if you’re active, you need to seriously work on replenishing salt in your body.\n\n- Salt is not scamming them directly but people do counter-productively believe it is damaging to health\n- We lose a bunch when working out via sweat\n- Salt encourages us to drink & hydrate more\n- Less purified salts are better, I.e. Himalayan and contain more electrolytes & minerals than the ground table salts we’re all accustomed to\n- Magnesium is something we’re all deficient in and salt can help https://example.com/ 16410 435989 434795.435965.435978.435980.435983.435984.435989.435991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.24101132183952 0 \N \N f 0 \N 0 200771193 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435996 2025-03-13 07:54:23.712 2025-03-29 22:39:51.465 \N This does not use hold invoices and will not work if your node is offline. The payments will fail immediately in that case. https://example.com/ 5852 435995 434795.435965.435978.435980.435983.435984.435989.435990.435992.435995.435996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.97984123674 0 \N \N f 0 \N 0 144269230 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435997 2025-03-13 07:55:24.74 2025-03-29 22:39:51.465 \N Oh cool, I already have a cowboy hat, yee haw Car! https://example.com/ 18017 435971 435944.435967.435971.435997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6018845649759 0 \N \N f 0 \N 0 249942753 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 04:02:38.809 f \N \N \N 0 0 0 0 0 0 0 435995 2025-03-13 07:53:21.496 2025-03-29 22:39:51.465 \N https://i.ibb.co/K7hVSy0/LP-snail3.jpg\n\nLunarpunk Orange Snail Mood /Pixelart/ free to use\n\nMore >>> \nhttps://stacker.news/items/277626 https://example.com/ 17157 435992 434795.435965.435978.435980.435983.435984.435989.435990.435992.435995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67636211053903 0 \N \N f 144269230 \N 1 19508413 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 9954 2023-02-22 12:28:35.828 2025-03-29 22:39:47.912 Signal Messenger Testing Usernames to Replace Phone Numbers \N https://restoreprivacy.com/signal-messenger-testing-usernames-to-replace-phone-numbers/ 21766 \N 9954 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.8769064958762 0 \N \N f 0 \N 0 55930724 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436006 2025-03-13 08:07:22.518 2025-03-29 22:39:47.912 Does economic insecurity lead to higher makeup sales? My wife shared the old wives tale of "makeup sales increase with economic insecurity" so I went looking for some data to confirm it. Sadly, there isn't anything unexpected in the data as far as I can tell. Beauty sales declined as a result of covid but they picked back up shortly after.\n\n![Screenshot 2024-04-06 at 7.05.47 PM.png](https://m.stacker.news/25545)\n\nWhat prompted the discussion was news of [Macy closing 150 stores and refocusing on luxury retail](https://nypost.com/2024/02/27/business/macys-to-close-150-stores-30-of-chain-as-new-ceo-takes-helm/) (and implicitly luxury cosmetics). Even as e-commerce picked up, it only ate up new demand. Mckinsey suspects department stores sales will grow and perhaps that's part of Macy's motivations as well. \n\n![Screenshot 2024-04-06 at 7.07.48 PM.png](https://m.stacker.news/25546)\n\nAnother thing my wife mentioned is all the e-commerce makeup white labelling going on. She implied every online micro-celebrity has a line of their own much like [male celebrities and hard liquor](https://www.foodandwine.com/news/ryan-reynolds-aviation-gin-sale-diageo).[^1] Anyway, what do I know about makeup. \n\n[^1]: If any big bitcoin podcasters are reading this. Why haven't you done this yet? https://www.mckinsey.com/industries/retail/our-insights/the-beauty-market-in-2023-a-special-state-of-fashion-report 12561 \N 436006 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.5077320301038 0 \N \N f 0 \N 0 205413880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 10081 2023-02-23 06:03:50.533 2025-03-29 22:39:47.912 Stacker News Live #130: On the Road in Nashville with Evan Kaloudis ![](https://m.stacker.news/42053)\n\nThanks again to @evankaloudis and all the people who came out for the live show in Nashville. 🫡We will definitely take SNL on the road again. I was genuinely surprised by the turnout and the crowd participation. Also got asked how to drop some sats for the venue. Feel free to use this link. This will help offset the costs we payed for the live show. https://pay.zaprite.com/pl_utaxL87ElV\n\nThanks Stackers!\n-Car\n\n\nRSS/EP: https://stackernews.live/130\n\n\n https://youtu.be/SsZcVQZ20Ik 642 \N 10081 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.87380204970748 0 \N \N f 0 \N 0 32097746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 10153 2023-02-23 16:48:06.044 2025-03-29 22:39:47.913 What's something you're so good at that you could teach it to someone else? \n \N 16816 \N 10153 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.18473690113225 0 \N \N f 0 \N 0 49782817 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436054 2025-03-13 09:22:11.535 2025-03-29 22:39:51.465 \N Started working on crowd-sourcing a medical "handbook" full of need-to-know diagnosis and management pearls at the bedside. Been a bit surprised by response and number of people volunteering to help out. We've been sharing these really boring summary sheets on twitter and getting 300k views each...\n\nhttps://www.grepmed.com/grepmedhandbook https://example.com/ 20825 435845 435231.435650.435814.435836.435843.435845.436054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89521239930578 0 \N \N f 249398964 \N 1 98353152 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436056 2025-03-13 09:24:23.923 2025-03-29 22:39:51.465 \N Here’s my pod about principles from the book Rich Dad Poor Dad book and how Bitcoin acts as insurance against the state, corruption, catastrophe and more: https://www.getbitcoinfi.com/78-assets-liabilities-insurance-against-catastrophe-turning-liabilities-into-assets-principles-of-rich-dad-poor-dad-by-robert-kiyosaki/ https://example.com/ 8380 436052 436028.436029.436045.436052.436056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.36747131325616 0 \N \N f 477018839 \N 3 183399164 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436020 2025-03-13 08:32:31.47 2025-03-29 22:39:51.466 \N i remember when daily discussions used to look like ghost towns, really cool to see us getting close to 100 comments/day now https://example.com/ 21578 436012 435944.435979.436012.436020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.6844571034747 0 \N \N f 377222094 \N 2 136855544 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436011 2025-03-13 08:21:32.688 2025-03-29 22:39:51.466 \N I had been assuming it was something using [Synonym's](https://synonym.to/) [Slashtags](https://github.com/synonymdev/slashtags). I know this is exactly the kind of thing they've been working on. https://example.com/ 10433 436001 435328.435887.435904.435957.436001.436011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.05803250696628 0 \N \N f 261666384 \N 2 43479206 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436034 2025-03-13 08:53:13.335 2025-03-29 22:39:51.466 \N Taxes are a big headache especially for merchants trying to adopt Bitcoin. It's one thing to install an app to charge customers. It's another thing to register the earned Bitcoin in your cash register and later in your accounting program.\n\n> Would a bill like the first 2.25M sats ($600)spent via BTC see merchant adoption explode?\n\nNot sure I understand but relieving merchants of bitcoin accounting would definitely help. https://example.com/ 7913 435890 330698.330774.434596.435793.435890.436034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.23383440185815 0 \N \N f 68210093 \N 1 177852780 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436092 2025-03-13 10:13:16 2025-03-29 22:39:51.467 \N ### I just bought **NostrComments.com**\n\n* I'm building a Chrome/Firefox extension that lets you comment on any website on the open web. \n* This is important because it's increasingly common for the media to disable comments on controversial pieces.\n* Comment on any youtube video, any news article, any tweet with blocked replies, etc. Alll over NOSTR in a decentralized way. https://example.com/ 9378 435861 435242.435861.436092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0944087593539 0 \N \N f 0 \N 0 41936641 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436070 2025-03-13 09:36:32.789 2025-03-29 22:39:51.468 \N Territory notifications are cool and probably underrated. \n\nThe next level would be to have the notifications sent with a summary to your nostr messages like chadbot on CASCDR. https://example.com/ 16939 436036 436036.436070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8840023502693 0 \N \N f 0 \N 0 228687867 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436074 2025-03-13 09:40:40.147 2025-03-29 22:39:51.468 \N Congratulations!\nDo you believe that Bitcoin mining is essentially a thing for tech savvy people?\nIf no, why do you think so and what are your plans to overboard non-technical people with Bitcoin mining? https://example.com/ 14169 435988 435988.436074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5407226959383 0 \N \N f 0 \N 0 156881570 0 f f \N \N \N \N 435988 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436073 2025-03-13 09:40:05.169 2025-03-29 22:39:51.468 \N Stacker News could do what Minds does using NIP-26 Delegation. https://example.com/ 18225 436009 436009.436073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.424875592054441 0 \N \N f 0 \N 0 86093517 0 f f \N \N \N \N 436009 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436059 2025-03-13 09:25:53.776 2025-03-29 22:39:51.469 \N [Lila: An Inquiry Into Morals- Robert M. Pirsig](https://www.goodreads.com/en/book/show/31093) https://example.com/ 20998 436031 436028.436029.436031.436059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1550914576139 0 \N \N f 890949878 \N 10 684403 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436077 2025-03-13 09:44:21.116 2025-03-29 22:39:51.469 \N I was in Italy in the summer, and on a gas station happened the following:\n\nIt was a "self-service" gas station, without staff. Before I refuel my car, it was needed to insert my card (payment possibility was only with card), and the card reader automatically subtracted 100 Euro as "guarantee".\nAfter I refuel and piad the gasoline, the amount of 100 Euro was redistribued to my card instantly...\n\nI think this is the "digital version" of shopping cart theory :)\n\nAnd be careful when you refuel your car in Italy...you need to have at least 100 Euro more, than the value of gasoline :) https://example.com/ 9845 436009 436009.436077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.2832050599009 0 \N \N f 0 \N 0 185078701 0 f f \N \N \N \N 436009 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436080 2025-03-13 09:46:51.957 2025-03-29 22:39:51.469 \N DAOs ruined daoism for me. First thing that popped into my head was to make a joke about Siggy becoming a shitcoiner and this all being a big rug pull. Haha. \n\n https://example.com/ 633 435805 435805.436080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0189834187003 0 \N \N f 0 \N 0 204532711 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436083 2025-03-13 09:52:18.188 2025-03-29 22:39:51.47 \N That's certainly an example, although I think there was too much of a mutual respect among all of us for it to really get ugly. I consider those guys my friends. But it's a good point to raise. I could see things from their perspective. There seemed to be a lot at stake. From my perspective I had chosen to hide my stats a few months earlier. Nobody cared until MSM. https://example.com/ 4602 435924 435924.436083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7568670924286 0 \N \N f 0 \N 0 96048001 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436089 2025-03-13 10:04:42.72 2025-03-29 22:39:51.47 \N I am by no means a mining expert, but, trust me when I suggest you learn the basics of bitcoin before jumping into mining. There is a LOT to learn. I think you are off to a good start earning a few sats here on SN. Next you should listen to some podcasts like @kr 's on the fountain app, where you can also earn sats, and then decide if you want to get into mining.\n https://example.com/ 20019 436086 435610.436086.436089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8571688618081 0 \N \N f 0 \N 0 209465080 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436124 2025-03-13 10:37:21.104 2025-03-29 22:39:51.47 \N Nostr doesn't scale, so it made the choice to (usually) host image/video content externally, rather than in the Nostr protocol itself. That's why random people can collect your IP addresses.\n\nIf Nostr was a well designed, scalable, decentralized protocol, this wouldn't be an issue. But they're papering over their centralization and scaling problems by hosting big media externally, and relying on the fact that notes are usually small and servers are fast. https://example.com/ 15192 435328 435328.436124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.68161933899055 0 \N \N f 0 \N 0 205131567 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436095 2025-03-13 10:14:41.502 2025-03-29 22:39:51.471 \N My country Nigeria is a sharp contrast. The government is against Bitcoin and crypto but who can ban Bitcoin. Your country knows this and they just let it be made official instead of having people transacting in Bitcoin without their knowledge. https://example.com/ 3456 435639 435639.436095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.443452167043539 0 \N \N f 0 \N 0 31568860 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436096 2025-03-13 10:15:13.182 2025-03-29 22:39:51.471 \N ![](https://nostr.build/i/nostr.build_021e71ee5661adf93bc6eb20afbb5439eadb73acccfb45c91a820acae40f92a7.jpg)\n https://example.com/ 2724 435574 435551.435574.436096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3705115460886 0 \N \N f 0 \N 0 156352378 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436084 2025-03-13 09:59:29.452 2025-03-29 22:39:51.471 \N What amazes me is that the code to unstake just doesn't exist yet. They will fork for sure. Imo "ETH" will be the OFAC compliant because all the big stakers will go full regulatory, in their own interest. Which way the market will go ? \n\nLa suite au prochain épisode.\n\nThis is a complete shitshow, popcorn time coming https://example.com/ 16950 436051 436051.436084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1305522495709 0 \N \N f 245556980 \N 1 242318289 0 f f \N \N \N \N 436051 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436172 2025-03-13 11:13:24.257 2025-03-29 22:39:51.471 \N https://lightningsplice.com/ https://example.com/ 1617 436159 435944.436159.436172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0021340853128 0 \N \N f 247729563 \N 1 225950862 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 137137 2024-03-05 20:30:35.675 2025-03-29 22:39:47.913 Zap to Zero Day 4 ## Zap to Zero Day 4\n\n---\n\n**Total satsback so far: `11,872 sats (3961 sats yesterday)`**\n\n_does not include getting zapped over the day or territory revenue_\n\n![2023-12-31-143118_726x274_scrot.png](https://m.stacker.news/10123)\n\n(Revenue of) ~crypto has crashed from 2565 sats to 139 sats. That's -94.59% within 24 hours. Was a very short bull run apparently. But nothing unexpected.\n\n_Btw, here's a quiz for you: You start at 100. Calculate -20%, +20%, -20%, +20%. Which number do you get? Did this surprise you? The one with the fastest correct answer gets +1 respect written on paper in digital form._\n\n---\n\n**Total zapped so far: `39.9k sats (10.8k sats yesterday)`**\n\n![2023-12-31-144431_626x331_scrot.png](https://m.stacker.news/10132)\n\nSeems like @Undisciplined _and_ me got unseated from third place yesterday. Did we get what we deserved for talking shit? Or was it just a quantum fluctuation? But I am still in front of @Undisciplined, and this is what matters.\n\nBut what also matters is that I don't lose my streak. I got really short on sats in the middle of the day yesterday. There was too much good content that I needed to zap such that I lost track of my balance and zapped some comments too much without looking at my balance. So when it got really close to zero, I had to figure out how I can get a lot of zaps to not get eliminated on day 3 already. My streak will end when I posted something as a freebie. (You have to trust me that I won't just deposit funds.)\n\nThen I decided to do this lazy post about [Social Engineering in Mr. Robot](https://stacker.news/items/371578). I initially only wanted to look at this scene myself. But while watching, I realized that this scene is so good, I can make a good post about social engineering on ~security with it.\n\nTo put in some more PoW (or context, as @siggy47 would put it) to grab your sats even harder, I wanted to also have something to read. So I just searched for "social engineering mr. robot" and found the nice fandom wiki site that I linked to, copied some paragraphs and added my own thoughts to it. Work smart not hard they say, right?\n\nI think that post fared well. Definitely not too shabby. Thanks to all the people zapping and replying!\n\n---\n\n**XP points gained so far: `+19 (+7 from yesterday)`**\n\n![8awucb.jpg](https://m.stacker.news/10136)\n\nSince @Alby is developing [Bitcoin Connect](https://github.com/getAlby/bitcoin-connect) and [we want to use it for self-custodial zapping on SN](https://github.com/stackernews/stacker.news/pull/715), @Alby and @sn are in more contact recently. While using the Alby browser extension, I noticed a bug however. [I got the Alby unlock prompt while clicking on URLs unrelated to Lightning](https://github.com/getAlby/lightning-browser-extension/issues/2927).\n\nSince I wanted to understand more how the browser extension works, I decided that I will try to fix it myself yesterday. I was very pleasantly surprised how easy it was to setup a local development environment to get going. The [SETUP.md](https://github.com/getAlby/lightning-browser-extension/blob/master/doc/SETUP.md) was so good, it literally only took me max 2 minutes for me to write code and see the changes. So huge props to @Alby for such a good onboarding experience!\n\nHere is my pull request: [`fix: lnurl scheme parsing`](https://github.com/getAlby/lightning-browser-extension/pull/2975)\n\nI also went to a takeaway to which I haven't been for a long time yesterday. The owner was pleasantly surprised to see me and we had a nice flowing conversation about a lot of things. He said it must have been almost a year since I've been here. I was surprised:\n\n> ek: _That can't be, I was definitely here this year._\n\n> owner: _Then maybe early this year?_\n\n> ek: _Nah, that also sounds way too long. I think it must have been in the summer._\n\nI was also surprised that he remembered my name. He got it right on first try. I struggled with his name but we laughed about it.\n\nWe then exchanged some stories like how business is going; if they're open over New Year's Eve; how inflation affects their business; if they look at the prices of other similar takeaways and also how some people feel entitled to lower prices without knowing shit about running a business.\n\nThen the conversation rolled over to me. He asked about my software engineering job at my old company and how university is going. Then I realized that maybe he was right. Maybe I was indeed not here since early this year since I changed my position in May and seems like I didn't tell him yet.\n\nBut maybe I just didn't tell him on purpose since I didn't want to reveal too much information about me when I was here the last time. I already mentioned bitcoin to him though. I wanted to tip him some sats but he was more interested in talking about the price. That's also one of the reasons why I wasn't there for such a long time but I didn't mention this.\n\nI told him I work at a Bitcoin startup now and we're trying to build Reddit but with Bitcoin. He didn't know what Reddit was. So I tried to explain it to him very quickly. I said it's about building communities online and that on Reddit, there is a community for basically every city. But I am not sure if he got me. When I mentioned social media, I think he got stuck on thinking about it in ways similar to Facebook.\n\nBut it didn't matter much (and I didn't want to talk too much about what I am doing anyway) so we just continued with other things I don't remember. I was pleasantly surprised that he didn't ask so much about bitcoin - especially about if he should invest - this time. I think I'll come back sooner this time.\n\n---\n\n[click here for previous day](https://stacker.news/items/371370) \N 9669 \N 137137 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.3910530533981 0 \N \N f 0 \N 0 115696141 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436107 2025-03-13 10:26:44.849 2025-03-29 22:39:51.472 \N You know how Star Trek always has those fast opening and closing doors?\n\nI uses to know a guy who worked on props, and actually helped design and build those doors. He said they were terrifying, as there was simply no way to build them sufficiently light weight to not have the potential to seriously injure someone if they accidentally closed on you. It was bad enough that they had to carefully choreograph ever scene where someone walked through the doors, along with multiple independent people actually operating them to make sure one person screwing up wouldn't be enough to result in an injury.\n\nAgain, physics screws you over. A robust door is heavy, and that much mass moving that fast is enough momentum to seriously hurt you if the sensors ever fail. https://example.com/ 21412 436037 436028.436037.436107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2665145567326 0 \N \N f 0 \N 0 4120074 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436112 2025-03-13 10:28:32.121 2025-03-29 22:39:51.472 \N Is it planned to export your connectors as an NPM package? I think it's too bad to see you building one and Zeus too but none of you export it as package. I have also started a NPM package few months ago before I discover alby https://example.com/ 929 436108 436028.436097.436108.436112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7042333009173 0 \N \N f 0 \N 0 206503707 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436127 2025-03-13 10:40:25.849 2025-03-29 22:39:51.472 \N The waves are interesting. First, it's the War on Terror (I assume), then it's Woke Cancel Culture. It looks like that was dying down, although maybe it's just that Covid shut down a lot of campuses.\n\nI'd be curious if the recent spike is a continuation of the old woke stuff or if it's more about the Ukraine/Russia and Israel/Palestine conflicts. https://example.com/ 20551 436090 435944.436090.436127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.542055593918 0 \N \N f 0 \N 0 102621444 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436173 2025-03-13 11:14:02.452 2025-03-29 22:39:51.473 \N developping a backend (powered by fastapi) to provide nip05, lnaddress paid/free services on a custom domain, with a possible service management directly through nostr DMs for customers. https://example.com/ 9336 436004 435958.436004.436173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9792319677886 0 \N \N f 0 \N 0 235369876 0 f f \N \N \N \N 435958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436102 2025-03-13 10:18:28.883 2025-03-29 22:39:51.473 \N Making it invisible. Onboarding a normie in a simple way nowadays is difficult because you will stumble with the problem of them not understanding on-chain vs lightning in minute one. And then you need to spend 30min at the whiteboard just for them to be able to know which menu they should pick in Muun.\n\nWe need to abstract more things away until it's dead simple. I'm hoping that Federated Chaumian Mints deliver their promises on this area. https://example.com/ 738 435944 435944.436102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.72771225948838 0 \N \N f 457738045 \N 3 143520151 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436108 2025-03-13 10:27:12.671 2025-03-29 22:39:51.473 \N If you haven't even had your first day, I wouldn't focused on what's next. Focus on being excellent at your new job and the next thing will become apparent when it comes to you. https://example.com/ 18618 436097 436028.436097.436108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8146273779966 0 \N \N f 206503707 \N 1 186175298 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436109 2025-03-13 10:27:58.122 2025-03-29 22:39:51.474 \N "when goods don’t cross borders, soldiers will" https://example.com/ 21805 436100 436028.436100.436109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.25497063998769 0 \N \N f 719825868 \N 4 57879938 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436151 2025-03-13 10:56:20.64 2025-03-29 22:39:47.914 A plebpoet original 🍽️ ![](https://m.stacker.news/36085) \N 20062 \N 436151 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.5838597438534 0 \N \N f 131587957 \N 2 135566253 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436144 2025-03-13 10:52:54.906 2025-03-29 22:39:47.914 Kollider Wallet AMA Hey, everyone. \n\nWe're the team at Kollider. We built Kollider Exchange, a Lightning-native derivatives exchange (https://pro.kollider.xyz/), and we just recently released Kollider Wallet. \n\nKollider Wallet is a browser-extension Lightning Wallet designed to make Lightning and Nostr super simple and easy to use. Some of our features include. \n\n- native stablecoins (hold balances in BTC, USD, and EUR) \n- in-app currency swaps \n- Lightning Login \n- Lightning Addresses \n- on-chain deposits and withdrawals \n- Nostr key management \n- Lightning / Nostr search \n\nAnd a bunch more! The wallet is available today and you can try it out here: https://kollider.xyz/wallet\n\nWe'll be hanging out for a bit to answer any questions you have about the wallet or Kollider. \n\nAsk us anything! \N 1468 \N 436144 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 19.4846254521909 0 \N \N f 498973891 \N 3 214386135 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436154 2025-03-13 10:57:36.049 2025-03-29 22:39:51.474 \N I expect the continuation of functional programming concepts, like abstract data types, Maybe/Optional, and immutability to be adopted by non-functional languages. Java will probably live on, but in the likes of COBOL; Usage will probably drop and the few programmers who still bother with it will get paid handsomely. I think Elm does a better job than Angular/React, but Angular/React will probably persist. Perhaps Python will be the next Perl. What I would like to see is more Haskell and less of everything else. https://example.com/ 2577 435923 435679.435823.435923.436154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2434285508382 0 \N \N f 0 \N 0 166989748 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436146 2025-03-13 10:53:07.824 2025-03-29 22:39:51.474 \N [Sony MH755 earphones](https://www.head-fi.org/showcase/sony-mh755.23501/reviews). These earphones were the first step to a discovery that lead me to how I do stuff now.\n\nThey were dirt cheap ($5~) earphones that came bundled with an old Sony product. There are earphones in triple digit price ranges I have tried that sound *worse* than these earphones do.\n\nI was lucky to get a pair from Russia and an additional pair elsewhere years ago. Nowadays all you see on eBay are fake clones of them that come from China.\n\nI got the earphones during a time I was trying to be a non-conformist. Was moving to Linux, installed LineageOS on my Galaxy S5, scrapped my HP laptop for an old ThinkPad. I eventually became obsessed with open-source software and started using Tor a lot, wouldn't have learned about Bitcoin at the time if I wasn't into all of this stuff first.\n\nI still have them, with a [custom firmware Sony MP3 player too](https://rockbox.org/):\n\n![Sony MP3 player with Sony MH755 earphones](https://i.postimg.cc/Rh1dhDtk/Sony.jpeg) https://example.com/ 20987 436139 435944.435979.436012.436020.436139.436146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.912479012274 0 \N \N f 0 \N 0 239740176 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436150 2025-03-13 10:55:53.961 2025-03-29 22:39:51.475 \N Sending bitcoin to special address\n(This special address that cointain locked Bitcoin is controlled by at least 51% of the total hashrate on the drivechain )\nOn this new network, certain parameter of the real Bitcoin network could be ignored\n\nExample : shorter block time, bigger blocksize, new feature, somehow faster tx, etc etc\n\nIf you want to use a real Bitcoin again then you must publish a new tx that basically say " hey let me use my Bitcoin again, i'm done playing on this network"\n\nThe miners will check the validity of your tx, if enough hashrate agree to your tx then your locked Bitcoin would be sent to whatever address you intended to be\n\nIf not enough miner agree even if you provide an honest tx then you're out of luck\n\nOh wait this is ELI 25 lol https://example.com/ 6419 436028 436028.436150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.76792272860794 0 \N \N f 0 \N 0 196079634 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436199 2025-03-13 11:34:03.676 2025-03-29 22:39:51.475 \N [![mixers-monkey-fight.jpg](https://i.postimg.cc/fydsK3N3/mixers-monkey-fight.jpg)](https://postimg.cc/0K9h5yrx) https://example.com/ 3544 435934 435120.435934.436199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.494422094611 0 \N \N f 0 \N 0 192160296 0 f f \N \N \N \N 435120 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436168 2025-03-13 11:10:36.869 2025-03-29 22:39:51.462 \N I made a notebook the other day. \nI actually went to an art store and bought very nice quality paper, folded each sheet and sewed them together. \nWill give to a friend so he can journal when he leaves for seattle.\nHe is a big fountain pen guy, and he has told me about his frustration getting good writing paper in the notebook style he likes. https://example.com/ 1638 426954 426954.436168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.096573811594 0 \N \N f 0 \N 0 235339781 0 f f \N \N \N \N 426954 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436161 2025-03-13 11:03:46.878 2025-03-29 22:39:51.462 \N I don't trust any government but especially the one that presides over the communist republic of Canada where I live. https://example.com/ 16442 435805 435805.436161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.86435164729468 0 \N \N f 0 \N 0 83632679 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436170 2025-03-13 11:12:34.727 2025-03-29 22:39:51.466 \N What would be a low hanging fruit to help with Bitcoin core development, I know some python and JavaScript. https://example.com/ 5500 436130 435944.436102.436130.436170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7125407239262 0 \N \N f 0 \N 0 181232832 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436171 2025-03-13 11:13:23.154 2025-03-29 22:39:51.466 \N Watching porn https://example.com/ 20849 436169 436028.436029.436031.436059.436065.436091.436126.436141.436162.436169.436171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8597156690406 0 \N \N f 264143306 \N 2 98312334 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436164 2025-03-13 11:09:21.538 2025-03-29 22:39:51.466 \N ![Bitcoin Meme](https://pbs.twimg.com/media/FjLJHy0aUAEDp3q.jpg) https://example.com/ 4115 436144 436144.436164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0721069668358 0 \N \N f 428053983 \N 2 70919908 0 f f \N \N \N \N 436144 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436184 2025-03-13 11:21:47.904 2025-03-29 22:39:51.466 \N Not much really, it's just a stamp that specs get normally after going through a working group if they have 2 or more implementations\n\nIn this case some large companies objected to it, but that was overturned. https://example.com/ 985 435847 435847.436184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.07857337064368 0 \N \N f 0 \N 0 210127151 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436260 2025-03-13 12:24:14.011 2025-03-29 22:39:51.466 \N While I agree with Darth on many things, running an always-on node can be good for the bitcoin network. Your node is more than a copy of the chain, it also stores and relays unconfirmed transactions (it has a mempool). More mempools means new transactions propagate through the network with greater speed. Also, your node's mempool can help ensure that transactions you believe follow the bitcoin protocol have a better chance to spread (imagine there were people who refused to relay some kinds of rule following txs, you can be a mempool that makes it harder for people to censor). Does it make a huge difference? No. But it makes a difference that you can actually exert some control over, and that is worth it imo. https://example.com/ 4388 436257 436028.436053.436125.436257.436260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.802510804332 0 \N \N f 0 \N 0 79890716 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436183 2025-03-13 11:20:52.423 2025-03-29 22:39:51.467 \N multiple https://example.com/ 14258 417145 417090.417145.436183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2092076981434 0 \N \N f 166353966 \N 1 69853658 0 f f \N \N \N \N 417090 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436271 2025-03-13 12:36:32.221 2025-03-29 22:39:51.467 \N A wait-list for Nostr. Want to collect npubs interested in your prelaunch app? Tell your prospective users to dm a code to receive updates. https://example.com/ 14220 435929 435690.435929.436271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3052686790863 0 \N \N f 593281478 \N 4 108590245 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436192 2025-03-13 11:29:24.24 2025-03-29 22:39:51.467 \N Still working on the WYSIWYG. Functionality is done but it needs a lot of testing and I need to fine tune UI/UX and stuff.\n\nMight ship the new editor to a url today and ask stackers to give feedback on it while do the above. https://example.com/ 929 426959 412443.426959.436192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.21332534781 0 \N \N f 0 \N 0 159073583 0 f f \N \N \N \N 412443 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436185 2025-03-13 11:22:31.938 2025-03-29 22:39:51.467 \N Android apps: [Bitcoin Metrics](https://play.google.com/store/apps/details?id=org.bitanon.bitcointicker) and [ChatGPT3](https://play.google.com/store/apps/details?id=org.bitanon.chatgpt3) wrapper https://example.com/ 711 436171 436028.436029.436031.436059.436065.436091.436126.436141.436162.436169.436171.436185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.44593741490416 0 \N \N f 149112419 \N 1 115030887 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436220 2025-03-13 11:48:15.791 2025-03-29 22:39:51.468 \N I don't get why people are mad at this. If it mattered then bitcoin would be fucked because bitcoin.com has been owned by a nefarious actor for years. \n\nI don't think anyone uses nostr.com and maybe someone can make something actually useful with it. \n\nLet the man do what he wants https://example.com/ 21685 436206 436189.436206.436220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1772804210423 0 \N \N f 0 \N 0 216223653 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436196 2025-03-13 11:31:24.616 2025-03-29 22:39:51.468 \N Homelessness has drastically increased in the last 20 years. It is pretty mind blowing to watch. I have heard these causes as the root over and over again.\n\n* Breakdown of support systems for people. Their community / family / friends.\n* Drug / substance addictions which usually leads to the breakdown of support systems\n* Fewer entry level jobs due to minimum wage, business license requirements. Greater barrier to entry in workforce / business.\n* Housing costs. Many factors here but in many cities it is hard to build low cost housing due to zoning, codes, and permitting.\n* Mental health. After the scandals that led to mass closures of mental hospitals following the release of "One Flew Over the Cuckoo's Nest" many have no place to go.\n* Drug laws result in people becoming felons and making it even harder to find work, leading them back into crime.\n\n My take is that it is a very complex problem that is primarily created by state policy but not 100% state policy. Some of it is a moral and cultural issue. The break down of society and basic decency. Cities could do a lot more to help but most aren't recognizing the root issues. They focus on housing primarily and throw money at the problem. Many private groups are doing good work but its not enough.\n\nChurches could do more. Many are very active but not enough. One issue I believe contributes to apathy is that many people think, well I pay my taxes. Let the government fix this. Or I payed my fair share. Why should I do anything more. The issue with that is that the government SUCKs and allocating funds. Private orgs are much better. The government is not fixing the issue. They never will. One thing I can tell you is not the cause. Free markets. But, if people do want to see the government become smaller private citizens are going to have to become more active parts of solving the problem.\n\nA few weeks ago I attended a grand opening for a new facility that is doing good work in this space. It has financial support from community members and businesses. They not only feed hungry people but provide job training, safe apartments, counseling, mentoring, and general support to those that want help. It was very encouraging to see how many people were there in support. Over the past ten years at least I've observed cities getting in the way of people trying to help the homeless many times. It makes me angry. The state is evil. Most don't see it. They think when I say this that I mean the people that work in government are evil. That's not what I mean. Its the institution. It does evil. Even when it pretends to be doing good it is producing bad outcomes. I wish the state would get out of the way, stop stealing from us, and remove the barriers that prevent us from solving these problems. https://example.com/ 21389 436185 436028.436029.436031.436059.436065.436091.436126.436141.436162.436169.436171.436185.436196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.452352251884 0 \N \N f 0 \N 0 149112419 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436229 2025-03-13 12:01:32.814 2025-03-29 22:39:51.468 \N Day 234 of snailposting everyday 'til BTC hits $100k.\n\n...and 34 push-up(s).\n\n__@_'-' https://example.com/ 9421 436197 436197.436229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7270745538491 0 \N \N f 220266572 \N 1 90008793 0 f f \N \N \N \N 436197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436187 2025-03-13 11:24:09.373 2025-03-29 22:39:51.469 \N ~programming would be nice. There's tons of non-Bitcoin and non-Nostr programming stuff I find, which might be of interest to some on SN. https://example.com/ 13575 436183 417090.417145.436183.436187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0516124748778 0 \N \N f 0 \N 0 166353966 0 f f \N \N \N \N 417090 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436190 2025-03-13 11:25:36.485 2025-03-29 22:39:51.469 \N The road to Shambhala.I woke up with an ear worm of a song I heard as a kid. https://example.com/ 17522 425697 425697.436190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.21942025334535 0 \N \N f 0 \N 0 87891006 0 f f \N \N \N \N 425697 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436205 2025-03-13 11:37:47.591 2025-03-29 22:39:51.469 \N \n\nSounds like Craig Wright has, 'moved onto other things'. https://example.com/ 3377 436189 436189.436205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4145788430604 0 \N \N f 0 \N 0 23235167 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436238 2025-03-13 12:11:46.094 2025-03-29 22:39:51.47 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **22** https://example.com/ 4292 436236 436213.436236.436238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.521756341818 0 \N \N f 0 \N 0 200223008 0 f f \N \N \N \N 436213 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436206 2025-03-13 11:37:56.202 2025-03-29 22:39:51.47 \N Pushing [NWC app](https://nwc.dev) to [Start9](https://blog.getalby.com/connect-your-startos-node-to-any-app-with-nwc/) and other environments! 💪 https://example.com/ 20058 436189 436189.436206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1781078164962 0 \N \N f 216223653 \N 1 215144197 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436236 2025-03-13 12:08:42.657 2025-03-29 22:39:51.47 \N An old favorite of mine - Wild Swans: Three Daughters of China. It's the true story of three generations of a Chinese family, the grandmother was a concubine of a warlord, the mother was a communist official, and the daughter experienced the Cultural Revolution as a teenager and young adult. Really great read, hard to put down. And gives you a great overview of Chinese history, in the past century.\n\nYou learn about the fascinating and disturbing history of the 20th century in China, and how the communist revolution was experienced through the eyes of these three women. The stories are amazing. Particularly interesting was the story of the author's father, who was a communist official. He tried hard to be an honest man during and after the communist revolution, but then was completely crushed by the cultural revolution. https://example.com/ 17838 436213 436213.436236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5707923614731 0 \N \N f 200223008 \N 1 34184853 0 f f \N \N \N \N 436213 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436232 2025-03-13 12:05:04.927 2025-03-29 22:39:51.471 \N **The Bond Market for Dummies**\n\nThe government wants money. One of the ways it can get money is by borrowing it. One of the ways it can borrow money is through bonds, which, when the government issues them, are sometimes called treasury bills, sometimes called treasury notes, and sometimes called treasury bonds. When the government issues a bond, it basically says: “if you buy this bond for $100, then in X years (printed on the bond) I will give you back $100 + Y” – where Y is some extra percentage. The government offers many of its bonds at auction, where Y is not directly set by the government, but they offer to pay the lowest Y that bidders at the auction are willing to buy them for. \n\nIn Siggy's OP, he observes that the "lowest Y" at the most recent government bond auction rose considerably. According to [CNBC](https://www.cnbc.com/bonds/), yields rose on every single bond offering of the US government, with the highest rise being in the US 20 year bond, which rose from 4.605% to 4.752%. That's a rise of 0.148% in one day, which is well within normal range for something like bitcoin, but not for US bonds. They are supposed to be very steady.\n\nA rise in yields such as this is usually treated by the media as an indicator that something went wrong in the bond markets. But whenever I read headlines about yields rising and how that's a bad indicator, they seem confusing to me at first because rising yields sound positive: when something's price rises, that usually means lots of people want that thing, signaling confidence.\n\nBut remember, the government auctions treasury bills for the lowest price bidders offer. When their price rises like it did today, that means no one wanted these treasury bills at a lower return, i.e. no one bid to accept a lower yield than 4.752%. i.e. "I won't take your terrible bonds unless, when they mature, you pay me almost 5% more than I'm giving you now." Not wanting the government’s bonds might mean inflation expectations are high. I.e. buyers might think the dollar will be worth less when the bond matures than it’s worth now, perhaps by an amount close enough to the treasury bond’s yield percentage (e.g. 4.752%), so they want *more* than that to break even.\n\nImportantly, every time the government sells a bond, it takes out a loan, which means they owe more than they got. Where do they get the extra money they need to pay back the loan? They have four options:\n\n1. get it from taxes\n2. print money\n3. take out more loans\n4. just don't pay off some old loans\n\nUsually they use option 3, but these loans keep getting more and more expensive, adding to the federal deficit, so that every year it gets harder and harder to keep doing that. In theory they can keep taking out more and more loans forever and keep paying them off, but that only works if people keep buying their bonds. If buyers will only do so while simultaneously asking for higher and higher yields (due to higher and higher inflation expectations), the government will end up paying ridiculous amounts of money to bond buyers, indicating that #2 is occurring. Eventually this goes the way of #1, #2, or #4, none of which are good: high taxes, high inflation, and theft are all very bad. https://example.com/ 20120 435898 435030.435141.435749.435898.436232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.952581157951 0 \N \N f 104222388 \N 1 32324465 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436214 2025-03-13 11:42:34.623 2025-03-29 22:39:51.471 \N Having to opt into being able to solve a simple mistake in advance is not a good user experience. It's asking users to plan their mistake and know to do so.\n\nIf always enabled privacy is somewhat better, because it leaks less information about the user wallet software and user habits.\n\nBitcoin settles on-chain. Settling in the mempool is not by design.\n\nBitcoin must be scaled up in layer and the current solution to small fast payments is Lightning. https://example.com/ 716 436204 436177.436203.436204.436214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5924479298362 0 \N \N f 279067315 \N 2 213701650 0 f f \N \N \N \N 436177 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436226 2025-03-13 11:52:20.048 2025-03-29 22:39:47.914 Why are people excited about Blackrock's ETF? It's not real Bitcoin and it's NOT yours. What happened to not your keys not your coins? \N 3377 \N 436226 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.5697045272422 0 \N \N f 0 \N 0 4104679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436225 2025-03-13 11:52:12.778 2025-03-29 22:39:51.472 \N What is more important?\n\nControlling what people do, or is it teaching people how to sustain themselves and be self reliant/sovereign? \n\nSeems to me like the toxies want both, but it can't be that way. If you have no desire to control what I do then you wont resort to odd psychological tricks to get me indoctrinated into your belief system in the name of "protection"\n\nWhy do I need protection? Why do they feel it is their duty to protect me? How is that different from the government telling me how to be protected, and saying I need theirs?\n\nI don't want anyone's protection. A toxie can share knowledge or fuck off back to whatever hole they crawled out of to spew bitterness at the world. I don't need someone pretending to be a Lil Dictato trying to "protect" me from shitcoining. I don't need anyone to be my white knight. https://example.com/ 730 436005 436005.436225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.62957961109802 0 \N \N f 0 \N 0 91155899 0 f f \N \N \N \N 436005 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436247 2025-03-13 12:15:53.766 2025-03-29 22:39:51.472 \N Lightning Coffee is almost ready for a proper beta.\nhttps://lncoffee.me\nAfter some final reviews, I will be funding nodes to allow tipping.\nAny comment is appreciated. https://example.com/ 1198 436151 436151.436247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.808696853754 0 \N \N f 120031462 \N 1 11556495 0 f f \N \N \N \N 436151 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436250 2025-03-13 12:17:30.888 2025-03-29 22:39:51.472 \N this is amazing and something I was imagining would be cool to build. \nYou went and did it.\nLL just shit their pants because this is basically a better and end-to-end open-source and decentralized Loop! https://example.com/ 18829 436138 434795.434801.436128.436138.436250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8412604679554 0 \N \N f 0 \N 0 230538614 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436266 2025-03-13 12:32:07.104 2025-03-29 22:39:51.473 \N Just bumped into Lex Fridman at the airport. Spent a few minutes showing him how Stacker News works. https://example.com/ 15978 435217 435217.436266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1875003006531 0 \N \N f 0 \N 0 36467848 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436268 2025-03-13 12:33:45.244 2025-03-29 22:39:51.473 \N I totally understand your sentiment and glad you wrote about this. I have this feeling myself but I'm identifying it as a reaction and questioning what is the desired outcome. Since I don't know exactly what I want the outcome to be exactly, I am hesitant to follow the impulse. Just saying "repair our relationships" feels too vague. Convincing them to see things my way feels too optimistic, too improbable, and even undesirable because I don't want them to think like me, because then there would be nothing to discuss. \n\n> I miss digging into the deeper topics, and have learned to avoid doing so\n\nWhat you shared here is pointing to the real desire, just the return to connection, when discussing politics isn't a trap. I think that's gonna take time. https://example.com/ 1738 436047 436047.436268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0660497619378 0 \N \N f 0 \N 0 66676829 0 f f \N \N \N \N 436047 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436554 2025-03-13 16:34:33.881 2025-03-29 22:39:51.474 \N I'm thinking about founding a parenting territory. Any thoughts from the saloon? https://example.com/ 19198 429739 429628.429739.436554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5067418936378 0 \N \N f 0 \N 0 14959092 0 f f \N \N \N \N 429628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436251 2025-03-13 12:18:25.262 2025-03-29 22:39:51.474 \N ![stacker elmo.gif](https://m.stacker.news/7918) https://example.com/ 8080 436025 436025.436251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.94561862918319 0 \N \N f 0 \N 0 24829087 0 f f \N \N \N \N 436025 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436280 2025-03-13 12:49:07.806 2025-03-29 22:39:51.474 \N *"Maximizing utility doesn’t require convincing people that this or that idea is superior; it just requires making their lives better in some way and letting the free market do its thing. Convincing people to drop the money they’ve been using their whole lives is a tough sell. By contrast, letting them switch to something new because it’s manifestly better than the old thing is a natural, smooth, non-invasive process."*\n\nSo, why there is still no p2p NFC transfer option between two LN wallets?\n\nSuch approach for example in the small shops in El Salvador would be manifestly better than the old thing i.e. hassle of scanning QR codes.\n\nOf course with the same precaution like in plain NFC payments - smartphone of payer must be unlocked\nand additionally with confirmation pop-up window in LN wallet with the amount in sats/usd and OK/Reject buttons.\n\nPlease do it @roy in Breez! :) https://example.com/ 21291 436242 436213.436242.436280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1656072950376 0 \N \N f 0 \N 0 186058904 0 f f \N \N \N \N 436213 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436299 2025-03-13 13:02:02.405 2025-03-29 22:39:51.475 \N I've learned from them to accept death with courage when the time comes. And to remember that life is short to enjoy it as much as we can. https://example.com/ 4602 435966 435905.435966.436299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.2084465764358 0 \N \N f 0 \N 0 30470021 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436282 2025-03-13 12:50:32.973 2025-03-29 22:39:51.475 \N if you have a node, [installing](https://jamdocs.org/software/installation/) [Jam](https://jamapp.org/) could be useful too https://example.com/ 2327 436277 436028.436029.436045.436052.436056.436064.436277.436282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1695016546181 0 \N \N f 0 \N 0 241399739 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436283 2025-03-13 12:50:37.848 2025-03-29 22:39:51.475 \N What do you call a man without a body or a nose? \n\nNobody knows. https://example.com/ 11862 436232 435030.435141.435749.435898.436232.436283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4936283142096 0 \N \N f 0 \N 0 104222388 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443536 2025-03-19 12:05:54.933 2025-03-29 22:39:51.476 \N Thanks and 100% - this is definitely an incomplete "part 1" of many on consolidating all public data available. More to come soon! https://example.com/ 17690 443201 443201.443536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9428438847935 0 \N \N f 0 \N 0 131651239 0 f f \N \N \N \N 443201 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436284 2025-03-13 12:53:58.095 2025-03-29 22:39:51.476 \N What's the worst mistake, one thing you'd go back and change if you could, that you made while building Unchained? \n\nWhat's the best decision you made while building Unchained? https://example.com/ 19094 436279 436136.436279.436284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7050496498544 0 \N \N f 0 \N 0 198268060 0 f f \N \N \N \N 436136 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 290864 2024-11-09 03:59:32.416 2025-03-29 22:39:47.914 Bitcoin Island is over 100 businesses https://www.google.com/maps/d/edit?mid=1RhAWjyThRscnQrkjHhYNR0T3-PAM0k8&ll=11.964337104685107%2C121.92093308776037&z=13\n\nBitcoin Island, Boracay Philippines has passed a big round number of 100 businesses on-boarded. These businesses are all accepting bitcoin via pouch.ph lightning wallet. If you have been following these updates, you will notice that the rate of adoption is accelerating.\n\nWe have had reports of random bitcoiners following this map as a treasure hunt buying a drink at every venue. \n\nThank you.\n\nIf you do the same, please stop in the office and say hello. We are right in the heart of the island, across the little lake from Dmall. You can not miss the giant Bitcoin sign.\n\nWith the addition of more local markets, it is realistic to live only on bitcoin as a local. We make it a point to always shop with our vendors, so our fiat usage is near zero at this point.\n\nOur crew of gig workers are paid in bitcoin, some cash out a little to fiat. However, some sell us fiat to get "pouch money" because it is easier to remit to their family in other cities with bitcoin.\n\n\nWe have:\n\nCoffee houses cafes - 6\nSit down restaurants (not alcohol focused, but can get a drink) - 16\nSit down restaurants (alcohol focused) - 3\nFood stalls - 11\nCarenderias (locals homemade food/restaurants) - 8 \n\nRetail - 8\nServices (tattoo, tailoring, salons, cell repair, scooter rental, tours, etc...) - 15\nConvenience stores - 4\nFruit, vegetables, meat, fish markets - 11\nSari Sari (tiny local convenience stores) - 23\n\nHotels - 7\n\nFollow:\nhttps://twitter.com/BitcoinIslandPH \N 1401 \N 290864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.62139884762606 0 \N \N f 0 \N 0 116880433 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436296 2025-03-13 13:00:30.345 2025-03-29 22:39:51.476 \N There are plenty of decisions I've made that were probably ill-advised, but I can't regret anything from before my daughter was born. I'm pretty confident that if literally anything had happened differently prior to her conception, then she wouldn't exist. That's just based on the vast improbabilities of DNA combination.\n\nFocusing on the past few years, though, I would have made a different home purchase decision. We increasingly feel like we bought a Bluth and that there were better locations available.\n\nIt's not a huge deal, but it's also not an easily reversed decision. https://example.com/ 21037 436211 435905.436211.436296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3282543189538 0 \N \N f 0 \N 0 206329364 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436309 2025-03-13 13:09:18.715 2025-03-29 22:39:51.476 \N Meta’s suite of social media apps https://example.com/ 9183 436034 330698.330774.434596.435793.435890.436034.436309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0793986007948 0 \N \N f 0 \N 0 68210093 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436331 2025-03-13 13:36:55.669 2025-03-29 22:39:47.914 Sunday Survey: What’s the best piece of advice you ever got? The best advice I ever got was from my Printmaking professor in college he said, “Real artists don’t starve.” He was basically telling me his story about some of the mistakes he made by staying in school to purse a career in the arts. \n\nSecond was Andreas Antonoplis on Joe Rogan rec in 2014 but didn't see till 2015, that ep changed the course of my life. A coworker of mine at a small web design company I worked at called a small orange sent this over to me because he brought up bitcoin to everyone at our morning meeting. I was the only one intrigued to ask more questions.\n\nhttps://youtu.be/EnhGlgCm4MU?si=8I5LV0P5rDagDOyT\n \N 20599 \N 436331 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.93354307192541 0 \N \N f 196107319 \N 1 124834502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436311 2025-03-13 13:11:10.963 2025-03-29 22:39:51.475 \N v0.3.6 will have simple commands for exposing services to the Internet on custom domains via router port forwarding OR wireguard reverse tunneling for people who want to hide their home IP. v0.3.6 is currently in alpha testing https://example.com/ 21145 436084 436051.436084.436311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7650514945037 0 \N \N f 0 \N 0 245556980 0 f f \N \N \N \N 436051 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436319 2025-03-13 13:18:39.203 2025-03-29 22:39:47.914 I'm Bullish On Stacker News. What About You ? https://imgprxy.stacker.news/aJy-U7Z57hjTNDccMMHn0g6a6M47KIoB9uCRyMjj8Eg/rs:fit:1920:1080/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy80MjEy \N 1567 \N 436319 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 4.91981838087689 0 \N \N f 0 \N 0 24177487 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436339 2025-03-13 13:41:20.848 2025-03-29 22:39:51.475 \N Ah that's inside a URL. The search engine uses delimiters to split out what might be individual items. I'm using . but not / - I'll need to modify the regex filter on the index and that will pick it up. Good catch. Rebuilding indexes takes some time but I'll report back. https://example.com/ 9551 436180 238583.436180.436339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.6441593270363 0 \N \N f 0 \N 0 170497087 0 f f \N \N \N \N 238583 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436360 2025-03-13 13:55:43.92 2025-03-29 22:39:51.476 \N A death throes bonfire,\nFed kicks another log on,\nthe sparks fly upward… https://example.com/ 4027 436142 435746.436142.436360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.12475805760015 0 \N \N f 0 \N 0 118827109 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436348 2025-03-13 13:45:49.011 2025-03-29 22:39:47.914 Tether makes a shitload of money. Efficiently. \N https://x.com/teddyfuse/status/1777034406030352656 16406 \N 436348 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 15.124470855778 0 \N \N f 0 \N 0 32576800 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436349 2025-03-13 13:45:57.619 2025-03-29 22:39:51.465 \N Disclaimer: I haven't read this yet.\n\nI often wondered how you calculated the payment for PRs. I didn't care enough to ask (obviously), but I did wonder. I guess here's my answer! https://example.com/ 18269 435756 435046.435135.435292.435504.435756.436349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7835002169779 0 \N \N f 671478487 \N 4 225383443 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436346 2025-03-13 13:43:40.206 2025-03-29 22:39:51.476 \N ## Fun fact: How to receive more inbound liquidity\n\nIf you open a LN channel in Zeus node using the LSP option ([wrapped invoices](https://docs.zeusln.app/lsp/wrapped-invoices)) with Olympus LSP and Voltage Flow LSP, you get 100k sats more inbound into that channel.\n\nFor example:\n- you do not have ANY LN channel or onchain funds in your Zeus node mobile\n- you open Zeus and make an invoice to receive 400k sats\n- pay that invoice from any other LN wallet\n- in matter of seconds you will get a 500k sats capacity channel from Olympus or Voltage\n- LSP will push your initial deposit sats (400k sats) on your side of the channel\n- and you get more 100k sats "space" as inbound liquidity.\n\nRemember! You DO NOT get sats, you get INBOUND LIQUIDITY (is not the same)\n\nRead more about using Zeus node here:\nhttps://darthcoin.substack.com/p/getting-started-zeus-mobile https://example.com/ 5725 435649 435046.435135.435162.435214.435220.435235.435649.436346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6317637427436 0 \N \N f 0 \N 0 29369899 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443537 2025-03-19 12:07:09.402 2025-03-29 22:39:51.476 \N Milisats are already used on L2\n https://example.com/ 11516 436792 436792.443537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2236736770134 0 \N \N f 0 \N 0 105452463 0 f f \N \N \N \N 436792 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436354 2025-03-13 13:50:27.942 2025-03-29 22:39:51.476 \N Happy New Year Stackers! Woke up early and cleaned up the PlebLab party! https://example.com/ 20812 436176 435746.436176.436354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.788401650004182 0 \N \N f 0 \N 0 190497679 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436370 2025-03-13 14:01:26.644 2025-03-29 22:39:51.463 \N I wish I knew, but if I knew i would pitch to someone and help them build. \nTrue convergence between decentralized finance and decentralized internet.\nTrue no-custodial P2P micropayments in applications with high frequency sub-dollar transactions. \nReplacement of login/password ecosystems with bitcoin keys derived authentication\nMore consumer friendly home devices that actively participate in the network (meter readers, content distribution networks)\nI just can't imagine! https://example.com/ 690 436223 435030.435141.435669.435899.436223.436370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5742111044876 0 \N \N f 246609883 \N 1 14418690 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436371 2025-03-13 14:02:22.634 2025-03-29 22:39:51.463 \N I suggest separate RSS feeds for each as well (and RSS feed by newest topics). Thanks for the feature! https://example.com/ 4768 436289 436289.436371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3816186053177 0 \N \N f 0 \N 0 91883424 0 f f \N \N \N \N 436289 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436378 2025-03-13 14:08:04.465 2025-03-29 22:39:47.915 12 year old and got my first bitcoins Hi, I'm 12, and my dad gave me $100 in Bitcoin. I have no idea what to do with it but he says it's a good thing to have. Why is it good? He told me to come here to ask you guys. \N 1726 \N 436378 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.645304120995 0 \N \N f 0 \N 0 167772601 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436390 2025-03-13 14:23:02.482 2025-03-29 22:39:47.915 I'll be successful when ______ my child gets married.\n\nfill in the blank \N 9166 \N 436390 \N \N \N \N \N \N \N \N history \N ACTIVE \N 0.621841515940069 0 \N \N f 227813022 \N 1 133587240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443575 2025-03-19 12:22:34.705 2025-03-29 22:39:51.464 \N Good old days. Free faucet giving out . 05 btc https://example.com/ 13038 443467 443467.443575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.70800988490215 0 \N \N f 0 \N 0 192448833 0 f f \N \N \N \N 443467 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436388 2025-03-13 14:19:46.32 2025-03-29 22:39:51.464 \N https://imgprxy.stacker.news/au4fvb_4J7Kx7s_xJ8gD_P-6EIjnfksOMiwtPXG83RY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9DN1RtbUREL3Bob3RvLTU0NzQzODAwODIwMzU0MTMxMTMteS5qcGc https://example.com/ 20687 436115 436028.436115.436388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2263276314372 0 \N \N f 0 \N 0 170423715 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436405 2025-03-13 14:33:36.598 2025-03-29 22:39:47.916 Low cost electricity changes views Yesterday I got one more call from from my pal https://stacker.news/items/456560\nAnd he really surprised me when he started conversation. He said: _"Soon I'll be able to buy low cost electricity and I have an idea to buy ASIC and start to mine. Will you help me with it?"_\n\nThat was a short conversation, I told him about noise, heat, how people use ASICs as "free" heaters, etc. He additionally asked about wallets, how ASICs work, how to sell what he'll get as a reward.\n\nI'm really exited he changed his mind about Bitcoin from sceptical to what he is today.\n\np.s. here's lots of used ASICs: s9 ~60 bucks (90k sats), s17 ~500 bucks (750k sats). Here comes the question, whoud you buy as beginner ASIC or spot buy sats?\n\nLet's discuss it in the comments section \N 15408 \N 436405 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 21.3036468240091 0 \N \N f 0 \N 0 242428988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436418 2025-03-13 14:51:11.032 2025-03-29 22:39:51.464 \N 3 of my friends and I have a weekly morning walk thing going on, where we would go for a approx 1hr walk early Saturday morning and go for breakfast after, rain or shine or snow or storm. So I see these 3 guys once a week.\n\nOther than that, we have a core friend group of 8 people and we go for birthday dinners for each person's birthday. It's a tradition we started and kept doing since high school. So we get to see everyone at least 8 times a year. https://example.com/ 8168 436344 436344.436418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.3356075238223 0 \N \N f 0 \N 0 75014072 0 f f \N \N \N \N 436344 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436414 2025-03-13 14:45:19.62 2025-03-29 22:39:51.464 \N Ebano by Alberto Vázquez-Figueroa\n\n![51k50Q-rtUL.jpg](https://m.stacker.news/13107)\n https://example.com/ 1047 436323 436323.436414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7322576084092 0 \N \N f 0 \N 0 37745432 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436422 2025-03-13 14:52:12.952 2025-03-29 22:39:51.464 \N https://imgprxy.stacker.news/fPiVlOOEd6yAq-jHoeRd3uqORFLEBsrrRyXRvRy0ssA/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9qWkJrWEh5L0lNRy03Mzg0LmpwZw https://example.com/ 21791 436231 436231.436422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.78323926663804 0 \N \N f 0 \N 0 119164655 0 f f \N \N \N \N 436231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436423 2025-03-13 14:52:30.385 2025-03-29 22:39:51.464 \N Feature idea:\n\nThis probably isn't the first time this has been requested, I don't know. But something I'l find useful.\n\nFor a post, show sats earned in all comments.\n\nThis might help those who are looking to earn from sharing their knowledge more easily find which posts are worth visiting, and possibly contributing to.\n\nThis might be presented as:\n\n1234 sats \\ 12 comments (234 sats) \\ @nym 56m\n\nThoughts? https://example.com/ 21412 436147 436147.436423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.43526980681675 0 \N \N f 0 \N 0 165462194 0 f f \N \N \N \N 436147 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436436 2025-03-13 14:59:32.492 2025-03-29 22:39:51.464 \N This post is completely deranged and you'll read it 5 years from now and cringe, but I get it.\n\nWhen I was younger, there was this girl I was super into. She didn't feel the same way and saw me as a "friend". We hung out every day. I was so "nice" to her and eagerly listened to all her problems. Of course I got nothing in return. She probably saw right through me and enjoyed the attention. It was honestly the most miserable period of my life and it turned me into a twisted, jealous, bitter goblin for a couple of years railing against the universe for being so unjust. Actually, I recall making a post just like this on some forum somewhere too.\n\nThe funny thing is that I can now look back on all that and laugh. Literally. She was completely wrong for me by every metric. I have no idea why the fuck my hormones went wild with that one, but they did. I think I might actually have been insane? I don't know. For all I care, that version of me has ceased to exist and might as well be an angry little alien on a planet far far away.\n\nI am laughing at this post like I laugh at the old me, but in a good way if you get what I mean. I think you're a smart dude with a lot to offer. You're also young and kind of retarded. That's OK, you'll grow out of it. Just don't yourself too seriously and make yourself miserable like I did. We're all fallible. https://example.com/ 2233 436241 436241.436436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.06664873051518 0 \N \N f 0 \N 0 192751608 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436431 2025-03-13 14:57:08.041 2025-03-29 22:39:47.91 Bitcoin and Stoicism *Episode XXI. Block height: 856500. Like Stoicism, Bitcoin stands as the immutable testament to a world where value endures beyond the reach of time and tide.*\n\nSubstack: https://carlbmenger.substack.com/p/bitcoin-and-stoicism\n\nBitcoin stands resilient amidst the tempest of change, a beacon of unwavering truth in a world swayed by the whims of power. It whispers the Stoic creed: True wealth lies not in the fleeting grasp of material gain, but in the steadfast embrace of autonomy and reason. Immutable as the stars, its value is not forged in the fires of greed, but in the quiet strength of a decentralized will, where each block, like each moment, is a testament to the power of enduring principles over the chaos of the external world.\n\n![Bitcoin and Stoicism](https://m.stacker.news/45705)\n\nNumerous years on the fiat treadmill have left me exploited, aimless and without purpose. Bitcoin has given me back my autonomy and freedom to live my life in accordance to my virtues, completely decentralized and on my own terms. Bitcoin is stored energy, protection from government theft through inflation. It provides us with the freedom to focus and concentrate our energy on being a better person. Our world today, corrupted by cheap currency, lacks honesty - to yourself and to others. Most people are driven by external things, a fancy car, a nice house, a private jet. However, once you realise that those things won’t give you inner fulfillment, you start realising that the only thing that gives you peace and tranquility is inner freedom.\n\nAlong the way, deep into the Bitcoin rabbit hole, I came across Stoic philosophy and realized that there are some interesting parallels between Bitcoin and Stoicism that I want to share with you in this episode because they have helped me a lot in my life and as a person. This is not about perfection, spirituality or wealth, but about progress and becoming a better, more fulfilled self.\n\n> “The one thing you can’t escape in life is yourself.” - Victor Frankl\n\nBitcoin and Stoicism, while first seemingly unrelated, share intriguing philosophical parallels that reflect on the nature of human autonomy, truth, resilience, and value. At their core, both concepts challenge conventional paradigms: Bitcoin through its disruption of traditional centrally controlled financial systems, and Stoicism through its rejection of societal norms and the pursuit of inner virtue. Understanding their connection requires an exploration of how Bitcoin’s decentralized, immutable nature resonates with the Stoic emphasis on individual control, rationality, and the importance of internal over external goods.\n\n### The Roots\n\nStoicism is an ancient philosophy founded around 304 BC by a merchant named Zeno who was shipwrecked on a trading voyage. He lost nearly everything. As Zeno later joked, “I made a prosperous voyage when I suffered shipwreck.” Making his way to Athens, he was introduced to philosophy by the Cynic philosopher Crates and the Megarian philosopher Stilpo, which changed his life. Zeno began to develop his own philosophical system, which he taught at the Stoa Poikile, a public colonnade in Athens. This location would lend its name to the school, "Stoicism," which emphasized living in harmony with nature, cultivating wisdom, and maintaining tranquility through the practice of virtue, regardless of external circumstances.\n\nStoicism was once one of the most popular civic disciplines in the West, practiced by the rich and the impoverished, the powerful and the struggling alike. In its rightful place, Stoicism is a tool in the pursuit of self-mastery, perseverance, and wisdom: something one uses to live a great life, rather than some esoteric field of academic inquiry. Stoicism is a philosophy designed to make us more resilient, happier, more virtuous, wiser and as a result, better people. Stoics loved wisdom, or virtue, excellence of character, above everything else. For the Stoics, everything comes back to the exercise of reason and the goal of living wisely. True strength consisted of one’s ability to show kindness, not violence or aggression. As I discovered, these Stoic virtues have a lot of similarities to Bitcoin.\n\n### Wisdom\n\n> “The more we value things outside our control, the less control we have.” - Epictetus\n\nThe wisdom of the Stoics emphasizes rationality, self-control, and understanding the nature of things to achieve a life of virtue and inner peace. They taught that true wisdom lies in recognizing what is within our control and acting according to reason, free from the influence of external forces like wealth or power. Bitcoin, as a decentralized and transparent financial system, aligns with this Stoic wisdom by empowering individuals to take control of their own financial destiny, independent of centralized institutions. It encourages a clear-eyed approach to wealth, where value is not dictated by fluctuating central powers but is instead grounded in a system that reflects the Stoic ideals of autonomy, clarity, and resilience. Just as the Stoics sought wisdom in simplicity and self-mastery, Bitcoin offers a way to engage with the world of finance that is both straightforward and self-empowering.\n\n### Truth\n\n> „It's the truth I'm after, and the truth never harmed anyone. What harms us is to persist in self-deceit and ignorance.” - Marcus Aurelius\n\nBitcoin’s structure reflects the Stoic concept of logos, or rational order. The Bitcoin network operates on a system of cryptographic proof and mathematical certainty. Every transaction is recorded on a public ledger that is immutable and transparent, which ensures that the system is free from manipulation and corruption. This rational, orderly system echoes the Stoic belief in a universe governed by reason. Stoics believed that by aligning oneself with this rational order - by living in accordance with nature and reason - one could achieve eudaimonia, or flourishing. Similarly, Bitcoin operates in accordance with a set of predefined rules, and those who engage with it do so with the understanding that these rules are impartial and immutable. This creates a financial system that is, in many ways, more aligned with Stoic values than the often arbitrary and unpredictable nature of fiat currencies controlled by human institutions. Code is Law.\n\n### Autonomy\n\n> “We don’t control external events, we only control our thoughts, opinions, decisions, and duties.” - Marcus Aurelius\n\nBitcoin, a decentralized digital currency, emerged in 2009 as a response to the shortcomings of the traditional financial system. It was designed to be money that exists outside governmental or institutional control, providing individuals with direct ownership and the ability to transfer value without intermediaries. This radical departure from centralized banking systems embodies the Stoic principle of autonomy. Stoicism teaches that true freedom comes from within and that external circumstances — such as wealth or social status, are beyond our control and therefore not essential to happiness. In the same way, Bitcoin offers a form of financial autonomy that allows individuals to bypass the constraints imposed by traditional monetary authorities. By using Bitcoin, one exercises a form of economic freedom that aligns with the Stoic ideal of self - sufficiency and independence from external forces.\n\n### Time\n\n> “Be ruthless with your time.”\n\nYour time is our most precious asset, urging us to use it with intention and focus on what truly matters. They believed that wasting time on trivial pursuits or distractions was a loss that could never be recovered. Bitcoin can be seen as time embodied in digital form, representing the value of work, energy, and resources compressed into a decentralized currency. It allows individuals to store the fruits of their labor in a secure, scarce and accessible format, effectively preserving the value of time spent, preventing it from being stolen by governments through inflation. Thus, Bitcoin transcends being merely a financial tool; it becomes a medium through which time itself is stored, transferred, and valued properly. Memento Mori.\n\n### Simplicity\n\n> “Wealth consists not in having great possessions, but in having few wants.” - Epictetus\n\nThe Stoics embraced a simple life rooted in self-discipline, virtue, and an understanding of what truly matters, focusing on inner peace over external wealth. They believed in living according to nature and maintaining control over one’s own mind, free from the complexities and excesses of the world. Bitcoin, in its simplicity, the Bitcoin White Paper to begin with is only 8 pages, resonates with these Stoic principles by offering a decentralized and transparent financial system that cuts through the intricate web of modern finance. Just as the Stoics sought clarity and control over their lives, Bitcoin provides individuals with direct ownership and control over their assets, free from the influence of centralized powers. This alignment of simplicity and autonomy makes Bitcoin a modern reflection of the Stoic ideal of living in harmony with nature and oneself.\n\n### Resilience\n\n> "Choose not to be harmed - and you won't feel harmed. Don't feel harmed - and you haven't been." - Marcus Aurelius\n\nResilience emphasizes enduring hardships with inner strength, adapting to challenges, and maintaining a sense of purpose despite external obstacles. This principles aligns closely with Bitcoin's network resilience, which has demonstrated remarkable durability and adaptability in the face of numerous threats, including regulatory pressures, technological attacks, and market volatility. Just as Stoicism teaches the importance of accepting and overcoming adversity, Bitcoin's decentralized and robust architecture ensures that it continues to function and thrive despite attempts to disrupt or undermine it. The network's ability to recover from challenges and maintain its integrity reflects the Stoic ideal of resilience in the digital age.\n\n### Discipline\n\n> “Discipline is destiny.” - Ryan Holiday\n\nDiscipline centers on self-control, focus, and the pursuit of virtuous actions, regardless of external temptations or distractions. For Bitcoiners, this principle is embodied in their commitment to long-term thinking, financial sovereignty, and the disciplined approach to investing, often referred to as "HODLing" (holding on for dear life). Just as Stoicism advocates for mastering one's desires and emotions, Bitcoiners practice discipline by resisting the urge to sell in volatile markets, staying informed about the technology, and maintaining a steadfast belief in Bitcoin's potential to reshape the financial system. This disciplined approach reflects the Stoic pursuit of aligning actions with a greater purpose, regardless of short-term challenges. We don‘t panic, we buy more and HODL!\n\n### Practice\n\n> „Progress is not achieved by luck or accident, but by working on yourself daily.“ - Epictetus\n\nTo calm your mind through Stoic practices, start each day with a moment of reflection, mentally preparing yourself for the challenges ahead by considering how you can meet them with virtue, patience, and wisdom. Focus on what is within your control — your thoughts, actions, and responses — while letting go of anxiety over what you cannot control, such as the actions of others or external events. Stoics call this practice **“Dichotomy of Control”**. Incorporate the **"View From Above"** also called **“Zooming out”** by visualizing your life as a small part of the vast cosmos, which helps put your worries into perspective and reminds you of the broader context of your existence. This practice fosters humility and a sense of interconnectedness, allowing you to approach daily challenges with a calmer, more balanced mindset.\n\nThroughout the day, keep the Stoic concept of **“Memento Mori”** — the remembrance of death — close to your thoughts. Reflect on the impermanence of life, not to induce fear, but to deepen your appreciation for the present moment and to prioritise what truly matters. By recognizing the fleeting nature of your own existence, you are encouraged to live more fully and meaningfully, focusing on virtue rather than on fleeting pleasures or external validations. In the evening, engage in journaling to review your actions, asking yourself if you lived according to your values. Sleep for up to 8 hours. Rinse and Repeat.\n\n### Conclusion\n\nWhile Bitcoin and Stoicism originate from a vastly different context — one from the world of modern digital finance and the other from ancient Greek philosophy — they converge on key ideas about wisdom, truth, autonomy, simplicity, discipline, resilience, and the appreciation of time. Both challenge individuals to think critically about what truly matters and to seek freedom through self-discipline and rational engagement with the world. Bitcoin, as a financial system, offers a practical embodiment of Stoic principles, providing a means of economic independence and a test of one’s ability to maintain equanimity in a volatile environment. In this way, the adoption of Bitcoin can be seen as not just a financial revolution but also a philosophical stance, one that echoes the timeless wisdom of Stoicism in the digital age.\n\n### The End\n\nThat's it for this episode. I hope you got some valuable information from this one. Don’t forget: **Waste no more time arguing about what a good person should be. Be one!** Thanks for reading, and see you in the next one. ₿ critical, ₿ informed, ₿ prepared. Yours,\n\n![Carl B Menger](https://i.postimg.cc/QxMq5Npk/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n### Stay tuned\n**Subscribe to my Newsletter:** https://carlbmenger.substack.com/publish/home\n**Follow me on X**: https://x.com/CarlBMenger\n**Follow me on NOSTR:** npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Related Topics\n[XVI] Joy of Compounding: https://stacker.news/items/547441\n[XV] Optionality: https://stacker.news/items/512150\n\n### Crowdfunding\nSo far, this is just a vision! But if you want to make a difference in this world, join my mission on Geyser Fund to build the best and coolest #Bitcoin-only accommodation in El Salvador(https://stacker.news/items/571274), bringing together people all around the globe, and spreading tangible Bitcoin knowledge. Your support makes all the difference: https://geyser.fund/project/bitcoinhostelinelsalvador\n\n![Bitcoin Hostel](https://i.postimg.cc/HsBdZz81/IMG-0591.avif) \N 20198 \N 436431 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.4868461978654 0 \N \N f 0 \N 0 87768454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436479 2025-03-13 15:25:10.429 2025-03-29 22:39:51.465 \N Wow. This is both a hell of a piece to think about, and one that's linked to a couple more (I literally zapped after reading the Stocker piece -- I'd never heard of him either -- and almost took a break before coming back and reading the rest; glad I didn't).\n\nLike you, I'm not currently swept up, and I range from wanting to be, to wanting to not have to be (if that makes sense). I'm very good at my job in general, but it's not the sort of thing that leads to the feedback cycle Munger and O'Keefe talk about. But I'm also okay, I guess, with not being there. If I can enjoy my family and time with them and make a small part of the world slightly better, do I need to be swept up?\n\n(And I'll take this over focusing on pure survival, of course).\n\nI dunno. I guess the short answer is: This is giving me a lot to think about, and I'm about to spend some time diving into Stocker's blog to see if everything he's got is that good. https://example.com/ 9348 436370 435030.435141.435669.435899.436223.436370.436479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6060560340383 0 \N \N f 0 \N 0 246609883 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436483 2025-03-13 15:27:17.926 2025-03-29 22:39:51.465 \N Bitcoin will become the ultimate stablecoin. https://example.com/ 691 436477 436028.436343.436396.436451.436471.436477.436483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2391781364116 0 \N \N f 0 \N 0 113870245 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436432 2025-03-13 14:57:48.97 2025-03-29 22:39:51.465 \N >the more this feature resembles an actual thunderstorm the better\n\nNice, some other thoughts since I really dig this idea haha\n\n- Chaining storms together/ continuing a storm / empowering a current storm and increasing its duration. One or some of these could be effects of a certain donation threshold met (by one or many?) during a current storm. \n- I can image @k00b and @Thrillerx_ talking about the big storms of the week "We've had this thunderstorm on SN since Wednesday!" https://example.com/ 1493 436409 436258.436409.436432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.568135582413 0 \N \N f 0 \N 0 236444438 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436427 2025-03-13 14:54:53.366 2025-03-29 22:39:51.466 \N [Broken Money](https://www.lynalden.com/broken-money/) is my favorite bitcoin book by a long ways.\n\nAnd then read a bunch of non-bitcoin books. Three good ones:\n\n[Technological Revolutions and Financial Capital](https://www.amazon.com/Technological-Revolutions-Financial-Capital-Dynamics/dp/1843763311)\n\n[What Technology Wants](https://www.amazon.com/What-Technology-Wants-Kevin-Kelly/dp/0143120174)\n\n[Hop on Pop](https://www.amazon.com/Hop-Pop-Dr-Seuss/dp/0375828370) https://example.com/ 20871 435217 435217.436427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9199838117904 0 \N \N f 0 \N 0 12420033 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436446 2025-03-13 15:06:12.973 2025-03-29 22:39:51.466 \N What is your most recent failure? Whether big or small. \n\nMine is trying too hard to get a new storage type into Mutiny, which I recently threw away and will face minor consequences for. The biggest failure in this was the "trying too hard" part. There were signs on the wall that I ignored when I try to fail fast, and I proceeded anyways. https://example.com/ 5293 436437 435217.436437.436446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5687154822888 0 \N \N f 77036262 \N 1 58527918 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436452 2025-03-13 15:08:41.618 2025-03-29 22:39:51.466 \N > The last section of this essay.\n\nA fun thought experiment on SN is to have everyone live list their failures in a day to normalize that we all fail all the time. Now I'm trying to think about how my last failure was probably not the last and I've got hundreds more recent than that lol. \n\n> We succeed by failing until we succeed or by getting lucky\n\nThere's a chance that it's not failures that define anything but rather forming your life around trying a ton of things with a specific percentage chance. If you took an action that took one year and had a 60% success rate at something huge, vs something that took a day and had a 1% success rate as something huge, the ones that take the smallest amount of time, thus a person makes the most amount of failures, is more about what defines eventual success. \n\nI think about this a lot when it comes to MVPs in a startup. https://example.com/ 1618 436341 435690.435929.436271.436341.436452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.20869226905314 0 \N \N f 417027164 \N 2 169963246 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436441 2025-03-13 15:03:51.653 2025-03-29 22:39:51.466 \N Sure, but why? Mismanagement? Hiring too many expensive developers? Overpaying for espresso machines on every floor at HQ? https://example.com/ 20829 435847 435847.436441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3196994621569 0 \N \N f 0 \N 0 138363719 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443499 2025-03-19 11:44:11.42 2025-03-29 22:39:51.467 \N No, Taproot just removed limits on script size. But you could store the same amount of data in multiple transactions instead of one. https://example.com/ 5455 443495 443495.443499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3343432208534 0 \N \N f 0 \N 0 225982107 0 f f \N \N \N \N 443495 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436453 2025-03-13 15:09:07.387 2025-03-29 22:39:51.467 \N Yep I inscribed two bitmaps back in June for around 2 bucks\n\nOne sold last month for 80 bucks and the other is up for 500 and it will sell by march.\n\nI think they are a pain for the mempool and purists hate it\n\nIm no expert but experts like odell say technically these are not etched on to the blockchain as one may be led to believe, something to do with uxto but I'm no expert\n\nI'd say they are here to stay for this bull run and then will probably tail off once the prices go to high\n\nWill be like the eth monkey clubs\n\nMany more chains like sol are pumping with these copycat versions will advance more marketing https://example.com/ 16424 436316 436316.436453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.063636262366 0 \N \N f 0 \N 0 109964822 0 f f \N \N \N \N 436316 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436454 2025-03-13 15:10:35.754 2025-03-29 22:39:51.467 \N Will Lightning one day be synonymous with Bitcoin?\n\nOr will we have to say "Bitcoin-Lightning" and confuse normies from now until reality? https://example.com/ 21506 436308 436241.436243.436308.436454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.78408189780358 0 \N \N f 0 \N 0 9802629 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436461 2025-03-13 15:18:02.584 2025-03-29 22:39:51.467 \N This reminds me of that scene at BTC2023 when Ihotep said something similar about self-custody... \n\nHere it is\nhttps://xcancel.com/HodlMagoo/status/1659304408117551104 https://example.com/ 1692 436274 436241.436274.436461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5854567155946 0 \N \N f 0 \N 0 44002560 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436458 2025-03-13 15:12:22.687 2025-03-29 22:39:51.468 \N I don't have the time available to commit (no pun intended) to being anyone's mentor. However, I do like to chime in to the occasional technical discussion here and there. If you start asking questions about software engineering here on SN, I think there are many people like me that would chime in to provide support. https://example.com/ 5578 434440 434440.436458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.68010211594218 0 \N \N f 0 \N 0 118587948 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436456 2025-03-13 15:11:47.617 2025-03-29 22:39:51.468 \N Fedimint does give bank vibes since “mint” is in the name. Ecash is not bitcoin but, after hearing you and Car talk about it on the Thriller podcast, I’m looking forward to studying it more and seeing what you do in Mutiny. https://example.com/ 21455 436430 433889.436430.436456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6514376856202 0 \N \N f 0 \N 0 231888367 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436497 2025-03-13 15:35:27.85 2025-03-29 22:39:51.468 \N Sir, I'm surprised by your arrogance. A true Bitcoiner never discloses the amount they hold, but I can tell you that I'm a MtGox OG class. Anyway, don't listen to me, listen to OGs like @DarthCoin or Mircea Popescu. There's no shortage of innovation in Bitcoin, and it should ossify as soon as possible.\n\nIf you don't understand what I mean by philosophy, you should read more. I recommend starting with 'The Philosophy of Bitcoin' or '21 Lessons.' For monetary matters, you can begin with authors from the Austrian school like Mises or even Hayek. https://example.com/ 19117 436462 436462.436497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0350682832334 0 \N \N f 0 \N 0 202195262 0 f f \N \N \N \N 436462 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436469 2025-03-13 15:22:21.534 2025-03-29 22:39:51.468 \N Historically the ARK reports struck me as pretty well-researched science fiction: they make their logic available, but it's like in the back room the direction they were given was: _think of how `electric vehicles` plays out in the the most favorable possible universe, so that even though Tesla is stupidly overvalued, there's still at least 10x to go._\n\nSo the chain of logic survives a cursory inspection; but it's _thin_. Will be interesting to see if the trend still holds, or rather: how they'll make it hold. https://example.com/ 20892 436462 436462.436469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.62457001006238 0 \N \N f 0 \N 0 201354847 0 f f \N \N \N \N 436462 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436468 2025-03-13 15:21:34.308 2025-03-29 22:39:51.469 \N Gonna try to make some progress in @niftynei’s course but this makeprisms API looks cool. Major squirrel vibes rn. \n\n![IMG_3684.jpeg](https://m.stacker.news/16152) https://example.com/ 666 436372 436241.436372.436468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.021776852876 0 \N \N f 0 \N 0 32349638 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436472 2025-03-13 15:22:36.775 2025-03-29 22:39:51.469 \N Let's agree that 81-160 is the view results option. https://example.com/ 9353 436302 436241.436302.436472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.97085480056138 0 \N \N f 0 \N 0 170945691 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436476 2025-03-13 15:24:33.116 2025-03-29 22:39:51.47 \N It kind of already is 🤷🏻‍♀️\n\nJust do the math for yourself. Buy an Asic, pay the electric bill and get the mining reward.\n\nEven if you make the best-faith argument and call it heating cost (which is lying to yourself in lots of cases 🤷🏻‍♀️) you'll never make the cost of the Asic worth it\n\nAverage private person mining is only here for enthusiasts out of principle. But not economic https://example.com/ 2508 435682 435682.436476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7747591943742 0 \N \N f 0 \N 0 57981089 0 f f \N \N \N \N 435682 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436473 2025-03-13 15:23:26.17 2025-03-29 22:39:51.471 \N Day 253 of snailposting everyday 'til BTC hits $100k.\n\n...and 53 push-ups. (30 - 23)\n\n__@_'-' https://example.com/ 616 436445 436445.436473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.32760350126572 0 \N \N f 0 \N 0 52399388 0 f f \N \N \N \N 436445 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436485 2025-03-13 15:28:54.753 2025-03-29 22:39:51.471 \N It looks they have ran out of confirmed UTXOs, because they consolidation transactions haven't confirmed for a week. I bet they don't have neither RBF nor CPFP implemented at their side. https://twitter.com/mononautical/status/1655243938465284099 https://example.com/ 10981 436163 436163.436485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.33328907360948 0 \N \N f 0 \N 0 80407784 0 f f \N \N \N \N 436163 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436516 2025-03-13 15:54:18.724 2025-03-29 22:39:47.909 Getting Started | Boltz Exchange ![step-0.png](https://m.stacker.news/26645)\n\nToday, let's explore Boltz Exchange. I haven't used it yet, so I'm keen to take a closer look. Boltz offers the flexibility to transfer your Bitcoin across different layers, allowing for swaps between Bitcoin, Lightning, and Liquid. This provides a variety of options for managing your channel liquidity.\n\n### Key Features 🔥\n\n- **Privacy-Focused & Non-Custodial:** Ensures user privacy and never holds onto your funds.\n- **Boltz Web App:** You can access the website online or run the web app locally from the source code\n- **Progressive Web App:** Install Boltz directly on your device, bypassing app stores.\n- **Boltz API & Client:** For integrating Boltz swaps into your applications and managing liquidity of your CLN or LND nodes\n- **Refund Process Enabled by Taproot Swaps:** Secure and efficient refund process.\n\n![step-2.png](https://m.stacker.news/26648)\n\n### How it works 🛠\n\nTo facilitate the trade Boltz is performing an Atomic swap and more specific ***Submarine Swap***. If you dont know what that is, @Dathcoin wrote an hole article explaining Lightning Network Submarine Swaps, digging into different szenarios and usecases. You can check that out [here](https://stacker.news/items/77400).\n\nTo summarize ***Submarine swaps*** are a specific kind of atomic swap that can be performed `without custody` or `counterparty risk`. The term `atomic` meens that the transactions fully completes or entirely fails without any in-between states, ensuring complete execution or no change at all.[^1]\n\n> Furthermore Boltz currently offers two types of Atomic Swaps:[^2]\n\n> - Normal Submarine Swaps: Normal Submarine Swaps move bitcoin from the **chain to Lightning**. "Chain" can be the Bitcoin mainchain or, for instance, the Liquid sidechain\n\n> - Reverse Submarine Swaps: Reverse Submarine Swaps move bitcoin from **Lightning to the chain**. Again, "chain" can refer to the Bitcoin mainchain or, for instance, the Liquid sidechain.\n\n[^1]: [Understanding Submarine Swaps | Builder Guide](https://docs.lightning.engineering/the-lightning-network/multihop-payments/understanding-submarine-swaps)\n\n[^2]: [Boltz Docs, Swap Types & States](https://docs.boltz.exchange/v/api/lifecycle#swap-types)\n\n### Getting Started with Boltz Exchange ⚡\n\nImagine running a Lightning node for your business to accept payments. A challenge you might face is maintaining the balance of your channel's capacity. Typically, as you receive payments, you'll find yourself with plenty capacity to send Bitcoin but insufficient capacity to receive it. This is a common issue within the Lightning Network. It's all about keeping that balance, making sure your node can manage both incoming and outgoing transactions. At this point, @Boltz offers a solution, facilitating the rebalancing of channels by enabling the movement of Bitcoin across different layers.\n\n![Boltz.gif](https://m.stacker.news/26649)\n\nTo begin, visite [boltz.exchange](https://boltz.exchange/)\n\nOn the navbar, you'll find a selection of options to explore. Let’s briefly go over what each one offers before we dive deeper:\n\n[Swap](https://boltz.exchange/swap)\n\nThis is the main page you'll use for swapping.\n\n[Refund](https://boltz.exchange/refund)\n\nIn case of any issues, this section allows you to upload a refund file to reclaiming your locked funds.\n\n[History](https://boltz.exchange/history)\n\nThis part displays your past swaps saved in your browser. It also offers the option to import a backup file for record-keeping.\n\n[Docs](https://docs.boltz.exchange/)\n\nFollowing this link will take you to the documentation, offering insights on how to integrate Boltz Swaps through the public API, or how to use Boltz with clients or the Web Application.\n\n[Help](https://discord.com/invite/QBvZGcW)\n\nLinks to their Discord Server where you are able to get in contact.\n\n[Onion](http://boltzzzbnus4m7mta3cxmflnps4fp7dueu2tgurstbvrbt6xswzcocyd.onion/)\n\nThis enables you to connect to the website via Tor.\n\n![step-5.png](https://m.stacker.news/26650)\n\nBy clicking on the in Lighting button lets you select your Asset you want to swap. You have the ability to choose between Bitcoin, Lightning and Liquid. Lets select the `Lightning` option here.\n\n![step-6.png](https://m.stacker.news/26652)\n\nNow we get the chance to select the asset we want to swap to push some of the liquidity on the other side of the channel. We are able to use either Bitcoin or Liquid.\n\nLets select the `Liquid` option here to perform a [Reverse Submarine Swap](https://docs.boltz.exchange/v/api/lifecycle#reverse-submarine-swaps) which moves bitcoin from `Lightning` to the `Liquid` chain.\n\n![step-7.png](https://m.stacker.news/26653)\n\nNext we select the `amount` we want to swap and enter a `L-BTC address`. The minimum amout to swap to `Liquid` are `1000 SATS`. This will give you L-BTC. Currently if you want to peg out to Mainchain Bitcoin, you would need to swap back to Lightning and then from Lightning to Bitcoin. But they already working on [chain swaps](https://github.com/BoltzExchange/boltz-backend/pull/511). So presumably there will be the option to swap Liquid to Bitcoin and vice versa soon.\n\n![step-8.png](https://m.stacker.news/26654)\n\nCongratulations! 🥳 Your swap has been successfully completed, and the L-BTC has been transferred to your wallet, with the Network Fee and Boltz Fee already deducted. Now, let's take a closer look at the fees involved.\n\n![step-9.png](https://m.stacker.news/26655)\n\n![step-10.png](https://m.stacker.news/26656)\n\n### Fees 💰\n\nThe Boltz exchange implements various fees for its swapping services. @Radentor curates an excellent [Swaps Directory](https://stacker.news/items/502134) that outlines the fee structures of different Swap Services, including Boltz.\n\nHere's the current fee breakdown for using Boltz:\n\n⛓️▶️⚡ -> `₿ Chain fee + 0.1%`\n\n⚡▶️⛓️ -> `₿ Chain fee + 0.5%`\n\n⚡▶️💧 -> `Liquid fee + 0.25%`\n\n💧▶️⚡ -> `Liquid fee + 0.1%`\n\nSwapping via Liquid might save you some money when you're managing the funds for your Lightning node. But, it's worth thinking about what it means to use Liquid instead of regular Bitcoin.\n\n### Trust in the Liquid Federation 🤝\n\nThe Liquid Network is a federated sidechain designed for quicker and more private transactions. It does this through:\n\n- `Fast Settlement:` Moving Bitcoin to Liquid makes transactions settle within 2 minutes.\n- `Confidential Transactions:` Details about the transaction, like how much and what kind of assets are moved, are kept secret.\n\nHowever, unlike the Bitcoin or Lightning, which can be used non-custodially, Liquid's operations rely on a federation. This federation consists of members serving as [Block Signers](https://docs.liquid.net/docs/technical-overview#block-signer) and [Watchmen](https://docs.liquid.net/docs/technical-overview#watchmen), responsible for the network's security and integrity.\n\nDiscussions [^4] around Liquid often pivot on topics like security, scalability, and the souverainity you have over your funds. It's worth noting for anyone considering Liquid to improve on fees: yes, the savings could be significant, but it also means you're stepping back from having direct control over your Bitcoin. It's really up to each individual to think about if you're okay with this kind of trade-off.\n\n[^4]: Threads: [@darthcoin](https://stacker.news/items/318849), [Liquid is not a scaling solution](https://stacker.news/items/356026) by @benthcarman, [John Carvalho and Liquid](https://stacker.news/items/359623)\n\n### Refunds 💸\n\nComing back to @boltz. Beginning this year @boltz exchange introduced the implementation of `Taproot Swaps`. With this upgrade enabled immediate cooperative refunds, which improves an long existed UX issue. With taproot swaps users can quickly recover funds from failed Chain → Lightning swaps, eliminating the previous wait times dictated by HTLC timeouts. Additionally Taproot Swaps make Bitcoin transactions cheaper and more private. Thanks to the use of Schnorr signatures, which are smaller than traditional signatures, the transactions cost less. Also, because Taproot makes all successful swap transactions look the same on the blockchain, it's harder for others to see the specifics of what's being transacted, enhancing privacy for users. More about this [here](https://blog.boltz.exchange/p/introducing-taproot-swaps-putting)\n\nTo use this feature you only need to `Upload` your refund file and reclaim your locked funds.\n\n![step-13.png](https://m.stacker.news/26658)\n\n### Unmixed CoinJoin change 🔀\n\nOne interesting use case I've explored involves using @boltz to channel your unmixed CoinJoin change outputs into the Lightning network. The primary challenge has been that, depending on the implementation (e.g., Samourai Whirlpool), there's usually a change output from the premix transaction. This change, left from splitting input UTXOs into equal amounts, is dubbed as `Bad Bank` UTXOs. Mixing these requires a sufficient amount to qualify for certain pool sizes. It's crucial not to mix them with other funds or already mixed coins to maintain privacy integrity.\n\nBoltz's submarine swaps offer a solution for safely redirecting unmixed CoinJoin change into the Lightning network, thereby safeguarding the integrity of clean coins. However, it's important to note that during this process,\n\n> Boltz will be aware of the user's node public key and the specific Lightning channel the funds were directed to[^5],\n\nintroducing a potential privacy concern. They also outlining that maybe future integration of [rendezvous routing](https://lists.linuxfoundation.org/pipermail/lightning-dev/2018-November/001498.html) in the Lightning network could further improve the privacy of such transactions. [^6]\n\n[^5]: [Unmixed CoinJoin Change? Boltz to the Rescue](https://blog.boltz.exchange/p/unmixed-coinjoin-change-boltz-to-rescue-39e6efacfad0)\n\n[^6]: [Proposal for rendez-vous routing](https://lists.linuxfoundation.org/pipermail/lightning-dev/2018-November/001498.html)\n\n### Conclusion 🎯\n\nExploring Boltz Exchange has been quite interesting, showing a user-friendly platform that bridges Bitcoin's various layers with ease. Boltz comes with a privacy-first, non-custodial approach, ensuring users can swap between Bitcoin, Lightning, and Liquid without the platform ever holding their funds. This commitment aligns with the platforms ethos of `"Can't be evil"` putting control firmly in users' hands.\nIf you're keen to learn more about the people behind @boltz, they did a great AMA [here](https://stacker.news/items/339204).\n\nWhether you're a merchant seeking to balance your Lightning channels or by embedding their services directly into wallets, Boltz offers tools and features to address these needs. Also the upcoming introduction of chain swaps, promising an even better experience for moving Bitcoin across layers. I've found Boltz to be a valuable resource and am eager to learn about others' experiences. Ready to explore Boltz for yourself? Head over to [Boltz Exchange](https://boltz.exchange/) and start swapping.\n\n### Boltz Resources 📚\n\n[Website](https://boltz.exchange/) | [Github](https://github.com/BoltzExchange) | [Blog](https://blog.boltz.exchange/) | [Discord](https://discord.com/invite/QBvZGcW)\n \N 20973 \N 436516 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 7.13112914129617 0 \N \N f 0 \N 0 229180533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436500 2025-03-13 15:37:15.34 2025-03-29 22:39:51.471 \N He agreed for 10k sats. Haha kids these days. https://example.com/ 19569 436486 435690.435929.436271.436341.436452.436486.436500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4519133106621 0 \N \N f 0 \N 0 209641373 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436502 2025-03-13 15:40:13.586 2025-03-29 22:39:51.471 \N Here we go. Hold onto your hats and your principles. https://example.com/ 15577 435719 435639.435719.436502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.08548531714649 0 \N \N f 0 \N 0 34692328 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436520 2025-03-13 15:58:23.336 2025-03-29 22:39:47.909 Everyone will not "just" ![](https://m.stacker.news/35375) \N 5646 \N 436520 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.912643427376238 0 \N \N f 0 \N 0 181445175 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436510 2025-03-13 15:47:19.983 2025-03-29 22:39:47.909 Lightning Loop now uses Taproot MuSig2 by default - cheaper and private swaps🎉 \N https://github.com/lightninglabs/loop/pull/574 20187 \N 436510 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 17.0443402054451 0 \N \N f 0 \N 0 157987378 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436524 2025-03-13 16:04:19.804 2025-03-29 22:39:51.472 \N "Strive not to be a success, but rather to be of value" \n\nV4V....1000 Sats I received from SN community goes to you\n https://example.com/ 18901 436487 436487.436524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1649936065632 0 \N \N f 0 \N 0 178417024 0 f f \N \N \N \N 436487 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436532 2025-03-13 16:14:16.545 2025-03-29 22:39:47.909 Without good money, there is no _____ **rule of law**.\n\nFour years ago, I was in Ghana for a small consulting project.\n\nI was there with a group of five or six others. During our couple-week stay there, we got to talk business, soak in the culture, eat some crazy food, and generally experience life in a brand new way.\n\nIt was an incredible adventure, and in retrospect, I think a very formative experience in my journey down the Bitcoin rabbit hole.\n\nhttps://imgprxy.stacker.news/kcm_bZTe2AePi8T18XKK5SFbvkudjzWlj4o2lTSkcdU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS80Q2xWcWhHLnBuZw\n\nMoney is breaking in Ghana.\n\nThe country is technically no longer "third-world" -- [its GDP](https://tradingeconomics.com/ghana/gdp) is on the rise, yet its currency is headed the opposite direction.\n\nWhen I was in Ghana -- much less aware of the nature of money -- I learned that my purchasing power shot up 5x simply because I was holding onto dollars. I was feeling like a king. But at the same time, this immediately highlighted the struggle of the average Ghanian's financial life to me; What did I do to deserve 5x as much wealth -- just because I'm from another country?\n\nAnd just four years later, my purchasing power is now 12x greater relative to the Cedi.\n\n**When a nation's money breaks, so does its law enforcement.**\n\nAnd as Jeff Booth [recently explained](https://www.youtube.com/watch?v=zECVTxmb-DI) with George Gammon on WBD, **money is superordinate to law**.\n\nA 3-4 hour trip on the highways of the USA translates to about a ~13 hour journey in Ghana. I know that because we had to make that journey ourselves -- traveling from the center of the country down to Cape Coast.\n\nhttps://imgprxy.stacker.news/B0T94JX1YhVU26w1S6XbZl8H9QNfTNPgJjL8EwB5NTg/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9UUzdWZmxXLnBuZw\n_okay what the hell this 10hr option was not available to us at the time_\n\nAnyways, In two separate occasions during that roadtrip, our mini-van was pulled over for "traffic violations." But the officers had zero interest in enforcing rule of law -- they wanted to get bribed.\n\nAnd bribed them we did. We bribed, exchanged a few jokes with the officer, and were let off the hook just fine, each time.\n\nIt just goes to show that without proper incentives, a country has no foundation. No rules to work with, and thus no competition. How are you expected to play chess if the rules change arbitrarily all the time?\n\nInfrastructure doesn't get built, goods and services can't move freely, stagnation overwhelms.\n\nLack of good money has countless seemingly "unrelated" downstream effects, and as stronger currencies like the USD continue to move closer to that of the Cedi, this'll only become more clear to the world, I'm betting.\n\nSo that being said...what else do nations lack when good money is nowhere to be found? \N 16406 \N 436532 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.5358780559041 0 \N \N f 0 \N 0 223765631 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436528 2025-03-13 16:11:35.104 2025-03-29 22:39:51.463 \N My daughter just flipped the hood of her hoodie over her head, pulled the strings as far as she could to clinch the hood over as much of her face as possible. \n\nMe: Baby, are you cold? I can turn down the A/C\n\nIzzy: No, I am in disguise. \n\nHaha. https://example.com/ 1784 436515 436493.436515.436528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9569068277813 0 \N \N f 0 \N 0 83564330 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436533 2025-03-13 16:15:38.035 2025-03-29 22:39:51.464 \N Regarding the question of which components of the Bitcoin protocol must remain decentralized, I would say nodes. Reading The Blocksize Wars brought home to me the power of nodes to stand up to the influential corporations with OG influencers and the biggest miners. The obvious corollary is the importance of small block size to keep home brew nodes affordable. \n\nAs LN gains a greater percent of transactions it will be even more important. https://example.com/ 14941 436515 436493.436515.436533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4879304983527 0 \N \N f 73489284 \N 1 109486842 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436531 2025-03-13 16:14:03.213 2025-03-29 22:39:51.464 \N Do you have the fear that micro payments of a few sats will one day problamatic for clogging the network? https://example.com/ 10554 436518 436241.436243.436518.436531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.61701137520549 0 \N \N f 158426042 \N 1 237519711 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436547 2025-03-13 16:22:43.366 2025-03-29 22:39:51.464 \N Day 338 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 7682 436347 436093.436347.436547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.11173094480935 0 \N \N f 291059353 \N 2 32695379 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436535 2025-03-13 16:17:12.56 2025-03-29 22:39:51.464 \N I say bring it on, expose any weaknesses in the system, if bitcoin is robust enough we need to prove it, not larp about it https://example.com/ 20939 436377 436323.436377.436535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.63178844007981 0 \N \N f 0 \N 0 129030856 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436538 2025-03-13 16:18:11.781 2025-03-29 22:39:51.472 \N # I absolutely *love* the "Random" addition, awesome! https://example.com/ 15336 436519 436093.436303.436519.436538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5957085479847 0 \N \N f 225936277 \N 2 99757145 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436540 2025-03-13 16:18:37.444 2025-03-29 22:39:47.91 Ecash and lightning via ZKCP \N https://delvingbitcoin.org/t/ecash-and-lightning-via-zkcp/586 21062 \N 436540 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 0.146300474300105 0 \N \N f 0 \N 0 20738975 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436551 2025-03-13 16:28:53.8 2025-03-29 22:39:51.464 \N Getting zapped is nerfed, while rewards are powered up.\n\nI'm excited to see how it plays out. That 30% cut is probably going to make it so we stop using zaps for our various pools, which is a little disappointing. https://example.com/ 20613 436548 436093.436347.436547.436548.436551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.1689645218761 0 \N \N f 0 \N 0 45730605 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436541 2025-03-13 16:19:39.78 2025-03-29 22:39:51.464 \N Cocaine is not really "synthesized" per se, it's basically extracted from the leaves of the coca plant. It's not too complicated of a process, it's just quite labor intensive and you'll need many (many) kilos of leaves to do the extraction. Aside from the leaves though, the necessary chemicals are pretty basic as is the procedure, can be done (and frequently is) in the remote areas of the jungle where gangs like FARC and Shining Path down in Colombia, Bolivia and Peru have a ton of makeshift labs. More often than not they'll usually do the rudimentary initial extraction out there in the jungle, and get a crude cocaine base which is later further refined into the final cocaine hydrochloride powder most people know as "coke", which can be done anywhere from professional type labs to some random guys' apartment in Lima.\n\nIn case I didn't give it away already by my likely unnecessarily detailed opening paragraph, you can say that I...am familiar with such subjects, and am a chemistry dork. That said, the article in question raises some interesting points, but I strongly doubt that we will see an emergence of the actual drug referenced (fenethylline aka captagon) in any real way, at least not in the US. I think it'll remain as it currently is; a weird regionally popular drug mostly used by people in Gulf/Arab nations. It's pretty popular in places like Saudi Arabia, Syria and some other places in that region. It's more or less the same thing as classic "speed", it's a prodrug for amphetamine, so the effects are similar to adderall as well as meth, just not as strong.\n\nGiven the abundance of dirt cheap and potent methamphetamine all across the US (and increasingly in Europe as well), anyone trying to bring this stuff to the market would face an uphill battle trying to get drug users to even want to use it versus the alternatives, to begin with. Then there's the fact that said pushers attempting to bring this to market would be stepping on the toes of the very powerful, very scary, very violent Mexican cartels who specialize in the manufacture, trafficking and sale of that aforementioned methamphetamine. \n\nI do think that we'll continue to see the same kind of macro trends we are seeing in the drug market overall, similar to trends we see in the traditional economy: drugs which have a high cost or are labor intensive to produce which can be replaced by cheaper synthetic alternatives, will be, for most users. This has happened already on an unprecedented scale with heroin in the US and Canada over the last 5+ years...traditional heroin has all but disappeared from the black market, replaced by fentanyl and other, often quite potent and dangerous research chemical opioids; both fentanyl analogues and some more 'interesting' compounds like the *nitazenes (isotonitazene, metonitazene, protonitazene, etc.) which are an entire thread's worth of interesting discussion on their own. Fun fact: the original nitazene drug that gained prominence in underground drug discussion groups and chemistry forums was a drug known as etonitazene; a legendary substance which was for many considered to be a holy grail type ridiculously potent drug, a benzimidazole opioid with an unprecedented level of addiction potential (it's about 1000 to 1500 times as potent as morphine) and is notorious for it's euphoria and the fiendish habit that develops in those who dare to use it. The withdrawals from these drugs are so bad that users often commit suicide because they are unable to take the agony, talk about yikes.\n\nSo yeah, as you can imagine -- not a good thing that these kinds of substances, once relegated to the dustbin of pharmaceutical research history, have resurfaced as novel drugs of abuse which are being synthesized in shady Chinese labs and tweaked by people who may or may not have any idea what they are doing, to get around laws like the US analogue act and stay in a legal grey area.\n\nWe'll continue to see dangerous synthetic opioids proliferate and killing hundreds of thousands of people, needlessly...the war on drugs has been an unmitigated failure, in my opinion they need to fully *legalize* and regulate ALL drugs (not decriminalize, which is a half-assed non solution). Focus instead on providing people who want treatment for addiction or drug abuse, we aren't going to arrest our way out of this crisis...the wealthy are able to continue doing whatever drugs they want with impunity and if they are caught it's a slap on the wrist for them. Most high-schoolers have access to a wider variety of different illicit substances than your average "drug dealer" 25 years ago would've been able to acquire, clearly what we've been doing is not working.\n\nApologies for the rant....kind of wanted to write about this anyway so I figured I would take the time to let my fingers do the walking on these keys and will wind up mirroring this content in other ways on my blog or something, toodles. https://example.com/ 21521 436323 436323.436541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.41760587870238 0 \N \N f 0 \N 0 122124317 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436543 2025-03-13 16:21:04.637 2025-03-29 22:39:51.464 \N I'm sick of seeing this squabbling so I'm going to exercise my ability to down zap every time I see this stuff. Happy stacking. https://example.com/ 15409 436413 436413.436543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.70529168355798 0 \N \N f 0 \N 0 3113783 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436557 2025-03-13 16:36:51.363 2025-03-29 22:39:51.464 \N It's open-source. Would be cool if people build on it. https://example.com/ 2775 436514 436514.436557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.987846227705 0 \N \N f 0 \N 0 94600808 0 f f \N \N \N \N 436514 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436542 2025-03-13 16:20:00.501 2025-03-29 22:39:51.464 \N PSA: True cowboys zap big and zap often. https://example.com/ 775 436509 436413.436465.436509.436542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.01049649365962 0 \N \N f 0 \N 0 175771838 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436545 2025-03-13 16:22:23.582 2025-03-29 22:39:51.464 \N Perhaps we should distribute your coins first. https://example.com/ 698 436538 436093.436303.436519.436538.436545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.8213663125298 0 \N \N f 116772919 \N 1 109163358 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436574 2025-03-13 16:55:52.24 2025-03-29 22:39:47.909 A Vision for a Value-Enabled Web \N https://dergigi.com/2022/12/18/a-vision-for-a-value-enabled-web/ 21389 \N 436574 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.824046917711 0 \N \N f 0 \N 0 209859057 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436563 2025-03-13 16:46:07.478 2025-03-29 22:39:51.464 \N Solving interesting problems https://example.com/ 16998 436552 436459.436552.436563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5465471381431 0 \N \N f 0 \N 0 128244542 0 f f \N \N \N \N 436459 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436565 2025-03-13 16:46:57.907 2025-03-29 22:39:51.464 \N This is really good -- I know a lot of folks ignore HN links, but this is worth the read. https://example.com/ 6777 436522 436459.436522.436565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6482440771585 0 \N \N f 0 \N 0 119305627 0 f f \N \N \N \N 436459 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436571 2025-03-13 16:54:09.296 2025-03-29 22:39:51.464 \N we reviewed it at a recent Bitcoin meetup :) https://example.com/ 1881 436344 436344.436571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3080340124156 0 \N \N f 0 \N 0 151904248 0 f f \N \N \N \N 436344 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436573 2025-03-13 16:55:39.817 2025-03-29 22:39:51.464 \N ![This is an image](https://nostr.build/i/nostr.build_22600fa88b0365ae1855444422d9c3c9ae51557e7f674798a911bab5addbb5c0.jpeg) https://example.com/ 7587 436344 436344.436573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1463767089216 0 \N \N f 0 \N 0 17875124 0 f f \N \N \N \N 436344 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436607 2025-03-13 17:52:32.446 2025-03-29 22:39:51.464 \N Lol. We’re not even in a bull market yet. https://example.com/ 4238 436413 436413.436607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9605770895921 0 \N \N f 0 \N 0 182802467 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436569 2025-03-13 16:52:38.464 2025-03-29 22:39:51.465 \N https://imgprxy.stacker.news/MB18r-irt9_3cBGMQelabjsxVj_OxJHFFU514szFBBw/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9rVm5TNUZqL0lNRy03MDEzLmpwZw https://example.com/ 16276 436499 436499.436569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3423838659992 0 \N \N f 35858020 \N 2 32500070 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436578 2025-03-13 17:02:18.207 2025-03-29 22:39:51.465 \N Nice use of public predictions as a commitment device. https://example.com/ 685 436577 436493.436564.436577.436578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2128230615424 0 \N \N f 43171587 \N 1 100945285 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436576 2025-03-13 16:59:17.606 2025-03-29 22:39:51.465 \N would really like to pay 500 sats to read an article instead of having to have some stupid subscription.\n https://example.com/ 9335 436533 436493.436515.436533.436576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7014408727885 0 \N \N f 0 \N 0 73489284 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436595 2025-03-13 17:33:39.528 2025-03-29 22:39:51.465 \N A grocery store where you can pay with Bitcoin https://example.com/ 1092 436507 435359.435366.435466.436507.436595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.138497866991898 0 \N \N f 0 \N 0 157584599 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436579 2025-03-13 17:04:46.319 2025-03-29 22:39:51.465 \N It was an OK service, but Robosats is streets ahead. https://example.com/ 9921 429078 429078.436579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3482989889662 0 \N \N f 0 \N 0 76432135 0 f f \N \N \N \N 429078 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436594 2025-03-13 17:31:33.928 2025-03-29 22:39:51.465 \N The battle isn't won...It's going to be bloody...but we can speed up the timeline by building products and services that actively show people the benefits of using Bitcoin as money. Show, don't tell. Do, don't talk. We've got way too much talking and telling in Bitcoin circles, and not nearly enough showing and doing. https://example.com/ 15617 436569 436499.436569.436594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6212138838168 0 \N \N f 16299533 \N 1 19558487 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436580 2025-03-13 17:06:41.186 2025-03-29 22:39:51.465 \N Octavia Butler's [*Patternist*](https://en.m.wikipedia.org/wiki/Patternist_series) series is pretty wild. \n(Telepathic vampires yesterday, today, and tomorrow) https://example.com/ 667 436480 436326.436480.436580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36470688192875 0 \N \N f 0 \N 0 89183472 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436591 2025-03-13 17:27:01.225 2025-03-29 22:39:51.465 \N It's an echo chamber by design. If you're looking for divergent takes, the discourse will always be gated to some extent. Nocoiners are unlikely to ever show up here but they literally have no coins.\n\nIf your primary interest in bitcoin is as a ticker on a screen and NGU, this isn't the place for you either. You probably haven't taken self-custody, which is a prerequisite to joining here. SN appeals to the niche community of bitcoin but not necessarily everyone who owns some. https://example.com/ 9362 436383 435907.436019.436040.436383.436591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7667954488413 0 \N \N f 0 \N 0 162721941 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436678 2025-03-13 19:27:23.602 2025-03-29 22:39:51.466 \N I would have quit drinking sooner. https://example.com/ 14705 436665 436665.436678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.50693594818 0 \N \N f 0 \N 0 11927423 0 f f \N \N \N \N 436665 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436598 2025-03-13 17:38:36.914 2025-03-29 22:39:51.466 \N I'm not really qualified to speak on quantum computing. So happy to be shown differently...\n\nBut the entire field feels sorta scammy. For instance, they never demonstrate practical problems being solved, but instead they invent specific calculation "benchmarks" and then demonstrate how fast their quantum chip is at solving that.\n\nIn this case they are bragging about this chip solved "RCS" 10^25 times faster then classical computing. But when you read more about "RCS" you find that it was a calculation developed by the quantum research team, specifically for testing their chip. \n\nIt all comes across like they are just farming for PR to get quick stock price bumps. https://example.com/ 14381 436594 436499.436569.436594.436598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6999152544483 0 \N \N f 0 \N 0 16299533 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436610 2025-03-13 17:56:32.417 2025-03-29 22:39:51.466 \N I have the same thought on this. That's why I started an app few weeks ago https://github.com/zerologin/zerologin-mobile\nIt's not finished yet, but it works. It's a react native app (it needs a readme, definitely)\n\nMore info in this presentation https://makers.bolt.fun/story/tournament-project-zerologin-the-mobile-app-buildinpublic--126 https://example.com/ 8726 435488 435488.436610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.94836140910809 0 \N \N f 0 \N 0 93759747 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436627 2025-03-13 18:15:42.238 2025-03-29 22:39:47.909 Bitcoin’s supply inflation \N https://bitcoin.stackexchange.com/questions/37077/how-much-inflation-does-bitcoin-have-year-by-year/37092#37092 19138 \N 436627 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 23.1882777842455 0 \N \N f 0 \N 0 3789019 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436618 2025-03-13 18:08:24.309 2025-03-29 22:39:47.91 Are LN users naively thinking LN is private? We all know how early (2011) bitcoiners believe btc is anonymous, only to be very unhappy to find out its easily to analyze and ultra easy to get cought. \nIS this whats going to happen to people transacting on LN in few years? Will we have a nasty sobering moment when LN transactions get tracked and people end up in jail because they thought wrong? \n\nOpinions \N 14385 \N 436618 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.9751372745522 0 \N \N f 0 \N 0 122657310 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436637 2025-03-13 18:28:48.362 2025-03-29 22:39:51.466 \N My tin foil hat theory is better. WoS removed itself from the stores on purpose because they are rugpulling. https://example.com/ 3990 436632 436632.436637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2654658058709 0 \N \N f 0 \N 0 94030159 0 f f \N \N \N \N 436632 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436616 2025-03-13 18:07:23.867 2025-03-29 22:39:51.466 \N Dude, come help us out! We've got one working, and are looking for someone who can help us integrate other platforms and libraries, like youtube, too! \n\n https://example.com/ 19484 434197 434197.436616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1944862016414 0 \N \N f 0 \N 0 121423456 0 f f \N \N \N \N 434197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436615 2025-03-13 18:06:02.226 2025-03-29 22:39:51.466 \N No cryptocurrency sub is a feature, not a bug https://example.com/ 15510 436531 436241.436243.436518.436531.436615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.8625425693313 0 \N \N f 0 \N 0 158426042 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436689 2025-03-13 19:41:40.898 2025-03-29 22:39:51.467 \N You know it's odd to me. /bitcoin is full of people saying things like "I keep telling everyone but nobody will listen or take the time to learn about bitcoin" and yet, when they're given the opportunity to learn more about bitcoin or the lighting network, they laugh at it the exact same way non bitcoiners laugh at them. \n\nI don't understand why they don't see the parallel. https://example.com/ 19663 435847 435847.436689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.39727444690377 0 \N \N f 0 \N 0 177982767 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436624 2025-03-13 18:14:26.204 2025-03-29 22:39:51.467 \N @grayruby your wish has been granted, wen ~sports? https://example.com/ 19966 436241 436241.436624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89297379459116 0 \N \N f 0 \N 0 58457627 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436620 2025-03-13 18:09:51.749 2025-03-29 22:39:51.467 \N In Stacker News forums born and raised,\n\nIn the Saloon was where I spent most of my days,\n\nChillin' out, bitcoin maxin', all cool\n\nAnd sending zaps' some sats outside of the school\n\nWhen a couple of guys who were up to no good\n\nStarted shitcoining here in my neighborhood\n\nI got in one little fight and my mom got scared\n\nShe said, "You're not posting silly memes with Siggy, Nemo, Darth and all into thin air…”\n\n(Apologies to the Fresh Prince) https://example.com/ 14152 436523 436523.436620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.9654179857733 0 \N \N f 116636878 \N 1 125145238 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436623 2025-03-13 18:12:47.231 2025-03-29 22:39:51.468 \N This is the most recent I can find: https://www.statista.com/statistics/1309745/reddit-average-revenue-per-user/\n\nAs best I can tell that is genuinely an annual figure. Which if it is, is ridiculously little. https://example.com/ 20500 436218 436218.436623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4194548045735 0 \N \N f 0 \N 0 98703298 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436651 2025-03-13 18:51:58.226 2025-03-29 22:39:47.909 What Do Y'all Think Of The Front? I've been in two minds about the front of the following item, which is why I'd like to hear some opinions about it:\n\n![](https://m.stacker.news/63484)\n\n![](https://m.stacker.news/63485)\n\nInitially, I very much liked the central seam, as it makes the pouch look like it's "folded together", and if assembled perfectly, said seam also lines up nearly with the seams on the sides, giving it a "rounder" look as well.\n\nOn the other hand it's a structural seam which I *could* leave out, initially fabricating the pouch out of *one* piece of fabric, but I've had major issues with the final dimensions of trial-runs, which is why I'd like to stay away from that.\n\nI'd like to keep it as clean and minimal as possible, but that doesn't mean there ain't something "missing"... 🥲\n\nI've been thinking about simply adding my logo centered a centimeter-or-ish above- or below the central seam, what do y'all think? \N 5175 \N 436651 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 2.17353717681128 0 \N \N f 101794434 \N 1 194365524 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436629 2025-03-13 18:16:49.116 2025-03-29 22:39:51.468 \N It seems most people don't use nostr frequently. Check it occasionally, and follow the major nostr/bitcoin influencers but don't really engage beyond that. I guess if I had a magic wand I would convert bitcoin twitter to nostr and throw in some fiat maxis to spar with as well. \n\nI have had no success in my nostr marketing test. I hate it but I think I have to promote the territory on twitter. https://example.com/ 9378 436523 436523.436629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4531419856835 0 \N \N f 0 \N 0 139726535 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436631 2025-03-13 18:18:40.699 2025-03-29 22:39:51.468 \N The FDA because it holds a monopoly like the CDC is subject to corruption in ways that would be harder to accomplish if it were market governance. \n\nI recall listening to Bob Murphy and Tom Woods talk about this drug journal that has a very long history of finding issues with drugs 6-12 months before the FDA even looks at them. Some of the issue is with the lack of competition and part is the susceptibility for corruption because of the centralization.\n\nI have a question for you. Do you look at Yelp and Google reviews of a restaurant or do you look up their grade by the health department. Can we not imagine how much better it would be to have multiple decentralized health reviews on restaurants? We have many examples of voluntary private review of businesses. \n\nAnother example is lab door. A great resource for looking at the quality of vitamins and supplements. One of the other issue I think of in the area is how the state monopoly and their re-enforcement of the expertise leads people to trust institutions they should be skeptical of. Most people are more skeptical of private businesses but less skeptical of government institutions like the FDA or CDC. I believe we'd be better off with competing institutions that are voluntary. The masses need to be more skeptical. We are conditioned to trust our governments. Businesses have to win our business. The state does not. We should be skeptical of both but the pysop of the state and its education system conditions us against viewing the state as a ruler. The system is designed to make us believe that we are the state. That the government is us. It is not. That's the larger lie.\n\nKeep asking questions. I think the state has helped in some situations. I just believe on the whole the damage has been greater than the benefit. I don't think anyone would argue that if you got rid of one company the world would end, but this is the mentality about the state by its defenders. https://example.com/ 21797 436361 435906.436361.436631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8637245954947 0 \N \N f 0 \N 0 26239828 0 f f \N \N \N \N 435906 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436634 2025-03-13 18:24:44.051 2025-03-29 22:39:51.469 \N yeah, I don't have strong conviction that SN should/shouldn't pursue enabling/empowering a Ditto community. seems interesting and somewhat relevant to SN's mission/goals and at early glance Ditto appears very well considered to me.\n\nI think SN provides the best signal of information around bitcoin links/discussion on the Internet today. SN is substantially better than nostr at helping find/browse this kind of information, imo. But it seems to me like more touchpoint with nostr may help more people who are interested/curious about bitcoin-centric links/discussion to learn about how great SN is.\n\nI'm generally a fan of more connectivity between SN/nostr even though I don't see one as replacing the other. https://example.com/ 5829 436630 436218.436600.436630.436634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2764208587132 0 \N \N f 143197313 \N 1 42556339 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436630 2025-03-13 18:17:25.405 2025-03-29 22:39:51.469 \N yes please, we are deprecating hex. you will have to promptly convert back to hex on the nip05 side... 😅... but we are trying to move away from humans using hex keys for everything.\n\nThis spec exists because I accidentally pasted my hex privkey in a note thinking it was my hex pubkey 😆 https://example.com/ 2577 436600 436218.436600.436630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6734651097496 0 \N \N f 185753652 \N 2 156560859 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436656 2025-03-13 19:00:24.874 2025-03-29 22:39:47.909 First Time Using The Bitcoin Company Habits are hard to break. Have been using Bitrefill to buy my gift cards for at least 20 transactions, and the purchase process is as well oiled as my favourite pair of shoes.\n\nFinally got down to register an account with The Bitcoin Company because why not? And it seemed to me that it offers a greater cashback for some of its participating merchants, whereas Bitrefill offers a flat 1% cashback (if at all).\n\nHappy to use part of the sats I have accumulated to buy a food takeout gift card from The Bitcoin Company:\n\n![](https://m.stacker.news/29989)\n\nTrue enough, it offers 2.8% cashback.\n\nI copied the invoice generated from The Bitcoin Company:\n\n![](https://m.stacker.news/29990)\n\nand pasted it on Stacker News:\n\n![](https://m.stacker.news/29992)\n\nSuccess! Found the gift card inside my super app. Earned 495 sats in the process.\n\nI can see myself using The Bitcoin Company more often from now on. Back to stacking sats.\n\nWill post this on [my personal blog](https://diaperfinancingfund.blogspot.com/2024/05/your-most-zapped-post-maynt-be-your.html?m=1) in hopes to earn my one cent of the day.\n\n \N 2151 \N 436656 \N \N \N \N \N \N \N \N health \N ACTIVE \N 18.4603375199358 0 \N \N f 0 \N 0 88095068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436647 2025-03-13 18:41:07.859 2025-03-29 22:39:47.909 OpenAI whistleblower found dead in San Francisco apartment | TechCrunch Whoa! They're claiming "suicide," of course. https://techcrunch.com/2024/12/13/openai-whistleblower-found-dead-in-san-francisco-apartment/?utm_source=dlvr.it&utm_medium=bluesky 9366 \N 436647 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.48524114145932 0 \N \N f 0 \N 0 170601153 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436655 2025-03-13 18:56:13.28 2025-03-29 22:39:51.464 \N This is a wasp, looks like a German yellowjacket. Not sure where you are, but now in Europe adult wasps are essentially waiting for death to come, they are desperate and take any sugars they find and, apparently, ham too 🤣 https://example.com/ 9107 436523 436523.436655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.40245752887619 0 \N \N f 0 \N 0 69053389 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436677 2025-03-13 19:27:23.316 2025-03-29 22:39:51.464 \N What’s on your roadmap for 2023? https://example.com/ 2593 426778 426400.426778.436677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9623561883327 0 \N \N f 0 \N 0 89497570 0 f f \N \N \N \N 426400 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436645 2025-03-13 18:39:44.1 2025-03-29 22:39:51.469 \N When I was younger I did multi-day fasts every so often. Now, I've switched to regular intermittent fasting, as in not eating for about 16 hours every day. I find this to be the easiest to do habitually, basically by just skipping breakfast and not eating snacks in the evening. https://example.com/ 4259 436241 436241.436645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2133377107333 0 \N \N f 0 \N 0 41784398 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436646 2025-03-13 18:41:04.11 2025-03-29 22:39:51.47 \N Well said Ben. A one-off $10, $100, $1,000... fee per transaction is a bargain to keep your wealth safe and secure for many years and potentially many generations of your family. We have layer2 networks for near zero cost day-to-day bitcoin transactions. Scammers are paying for more miners to further decentralise the network - let them pay, own nothing and be happy ;) https://example.com/ 18271 436258 436258.436646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2346137636624 0 \N \N f 0 \N 0 136278298 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436657 2025-03-13 19:00:33.753 2025-03-29 22:39:47.909 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/410311) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 1468 \N 436657 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 29.5374375514213 0 \N \N f 0 \N 0 112301237 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436663 2025-03-13 19:11:25.359 2025-03-29 22:39:47.91 Chinas popped real estate bubble: Farmers plow fields between ruins ![](https://pbs.twimg.com/media/GQqSehsakAIlbl3?format=jpg&name=medium)\n\nWhat truly Zelda-esque postapocalyptic imagery. Sad but beautiful and poetic\n\n![](https://pbs.twimg.com/media/GQqSehsakAQx4c4?format=jpg&name=medium)\n\nThere are more pictures on Architectural Digest: https://www.architecturaldigest.com/story/the-story-behind-the-many-ghost-towns-of-abandoned-mansions-across-china\n\nThe story of this economics is quite clear. Chinas blind command economics can't project demand and bubbles pop. The free market makes use of what got left behind \n\nI almost posted this to ~photography because I like the aesthetics of this so much. I like it when photos also 1. tell a story inside the photograph and 2. are witness to personal life stories and 3. are witness to history being made before our eyes. This hits all boxes. So cool. \N 10409 \N 436663 \N \N \N \N \N \N \N \N security \N ACTIVE \N 4.22991868017057 0 \N \N f 0 \N 0 60203164 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436672 2025-03-13 19:19:57.192 2025-03-29 22:39:51.465 \N I remember perfectly having a discussion with a fellow 4 years old classmate about how things looked smaller when they are far away.\n\n"See, that tree is much bigger than my thumb, but if I extend my arm and stick my thumb out like this, the tree is hiding behind it!" https://example.com/ 12951 436566 436566.436672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.47372508275343 0 \N \N f 0 \N 0 55837460 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436667 2025-03-13 19:14:56.791 2025-03-29 22:39:51.465 \N When I was a child and spent for the first time a single note of 5$ (they were actually Italian Liras) for an ice-cream worth 1$, I felt richer and excited in getting a change made by several notes summing up to 4$...several notes against one single was definitely better for me... : ) https://example.com/ 19189 436323 436323.436667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9652085654516 0 \N \N f 0 \N 0 147733048 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436670 2025-03-13 19:18:08.638 2025-03-29 22:39:51.465 \N The more I earn, the more I zap 🤠 https://example.com/ 14255 286012 286012.436670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.26227828283512 0 \N \N f 0 \N 0 160027323 0 f f \N \N \N \N 286012 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436676 2025-03-13 19:24:24.022 2025-03-29 22:39:51.465 \N I've a beautiful wife but she doesn't like popcorn. \n\nWe have to get 'samosas' for her. https://example.com/ 9705 436619 436556.436619.436676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4234210141355 0 \N \N f 0 \N 0 207219898 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436668 2025-03-13 19:16:21.623 2025-03-29 22:39:51.465 \N If you die in a dream you die in real life https://example.com/ 10698 436523 436523.436668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8805669938088 0 \N \N f 0 \N 0 28094089 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436681 2025-03-13 19:33:05.053 2025-03-29 22:39:47.91 Stackers’ predictions for 2024 \N https://stacker.news/items/373338 9611 \N 436681 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.98007041464901 0 \N \N f 0 \N 0 68908680 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436713 2025-03-13 20:36:00.34 2025-03-29 22:39:47.91 Cowboy Hat Reform Every so often, conversations about how to improve SN will inspire solutions related to our beloved cowboy hats. (Perhaps one of our resident archeologists will dig some of those threads up and put them in the comments.)\n\nI thought it would be fun to talk through some of these ideas and have a somewhat one-stop-shop repository for them.\n\nSome of these ideas could be implemented together and some are mutually incompatible. We'll start with my favorite set of ideas:\n\n# Colorful Hats\nI've seen a few different ideas for coloring hats (some might even have been mine). Obviously, only one of these could ultimately be implemented. They all are aimed at increasing the signal of the cowboy hat, by adding an intensive measure of how much of a cowboy the wearer is.\n\n### Cowboy Hat Streak\nI believe this was the first cowboy hat idea I encountered. As you extend your cowboy hat streak, your cowboy hat becomes a more impressive color. I can imagine a few versions of how this could work:\n1) Everyday your hat just changes color slightly. That's the easiest, laziest, and least fun option.\n2) Every so often you are notified that you found a new, more impressive hat that a less experienced cowboy would have missed. This would be more like a levelling system with days acting as xp and the differences between the hats would be more noticeable. The simplest scheme I can think of is just an exponential series: i.e. new hat, 2 days, 4 days, 8 days, etc.\n3) The hat represents your rank on the [list of cowboys](https://stacker.news/top/cowboys). Implementation would look much like the idea above. (I think moving up on the cowboy list should come with a notification, whether or not this idea is adopted, btw.)\n\n### Other Engagement Measures\nConceptually, this is very similar to the ideas above. The difference would be that color is based on some measure of stacking or spending. Some options for the color metric:\n1) All time stacking rank\n2) All time spending rank\n3) Previous day stacking rank\n4) Previous day spending rank\n5) Our super top secret trust scores (this one is my favorite)\n\n# Accessories\nThis is a neat category of ideas that could spiral out of control pretty quickly. I can recall three off the top of my head and I'll leave it there:\n1) A giant cigar for the cowboy with the longest streak. This was @siggy47's idea and he is that cowboy, so it gets top billing.\n2) A badge for the previous day's top zapper to recognize him (or her, I suppose) as the sheriff around these parts. This idea came with the complementary suggestion of displaying the sheriff streak when hovering over the icon. I imagine the star shaped badge being right in the middle of the hat, but there's a reason nobody pays me to do design work.\n3) A poncho: I don't remember what this was meant to signify. It may have just been an alternative to the badge.\n\n# Tilted Hat\nBack in the days when people were zapping like one sat to each other, and resultantly losing their hats all the time (if that's still you, c'mon man), some kind of warning system was desired. This inspired the idea that the cowboy hat could be tilted, as though about to fall off, until the cowboy had secured it for the day.\n\n# Cowboy Hat Acquisition\nIt seems that bots have learned how to acquire cowboy hats and blend in with the population. Some ideas have been floated to change how hats are found that might make it more difficult for bots to find them or at least more beneficial to the SN community when they do.\n1) Just raise the threshold for earning a hat (whatever that might be).\n2) Randomize the criteria everyday, similar to what is done with rewards, to encourage a broader range of desired behavior.\n3) Limit the number of cowboy hats somehow. It's not clear to me what the best way to do this would be, because first-come-first-serve seems like a bad idea. However, the idea would be that current cowboys can always retain their hats, but the supply of available hats for the day is otherwise limited.\n\nThis post is starting to run long, so I'll leave it here and look forward to discussing ideas in the comments. \N 5752 \N 436713 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 3.81313107315645 0 \N \N f 0 \N 0 104724511 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436685 2025-03-13 19:36:02.373 2025-03-29 22:39:51.465 \N >"passing a generic test I studied for so I can get treated like a king," but it takes more than passing tests to be a king\n\nThis is one of the least understood and pernicious aspects of public schooling. People have been conditioned to think that passing a test = competency. Competence is a verb not an adjective or a trophy you get to keep forever. You have to continually evolve and expend effort to maintain it.\n\nPersonally the two biggest factors I look for are work ethic and initiative. The former for obvious reasons and the latter because I cannot possibly predict what challenges we will face in the future. I need teammates that can solve open ended problems and even challenge my solutions if they're inadequate. \n\nThis was a lesson I learned from my dad who has 40 years of experience hiring engineers. He says whenever he's in an interview he probes to find out if they've ever made any projects themselves. It could be a home aquarium. The specifics are trivial. The intangible benefits that accrue from high agency teammates that solve open ended problems are hard to overstate.\n\nYour hiring process is more aligned with how we _should_ work and interact with each other. I am keen to see how that process evolves. https://example.com/ 19488 436549 436549.436685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.42690397986649 0 \N \N f 0 \N 0 184319928 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436697 2025-03-13 19:49:02.154 2025-03-29 22:39:51.465 \N BIP 324 might help with some of your concerns\n\nhttps://stacker.news/items/165573 https://example.com/ 13378 436683 436683.436697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9410429800268 0 \N \N f 0 \N 0 226198685 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436698 2025-03-13 19:50:07.505 2025-03-29 22:39:51.465 \N I think it's important not to overwhelm a new person with information. Get some sats in their hands. There's time to learn, and there's a lot to learn. Odds are you're not talking about a lot of bitcoin anyway. I agree re WOS. Nice and simple. https://example.com/ 1142 436696 436683.436690.436695.436696.436698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5260668328438 0 \N \N f 0 \N 0 108982394 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436701 2025-03-13 19:51:00.187 2025-03-29 22:39:51.465 \N @suhailsaqan == @Eminem :) https://example.com/ 9351 436172 435944.436159.436172.436701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8363719528397 0 \N \N f 0 \N 0 247729563 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436705 2025-03-13 20:02:29.161 2025-03-29 22:39:51.465 \N The article makes it seem like the UN's mostly concerned about destabilizing/dethroning the central banks in these countries. \n\n> Such private digital currencies have become particularly prevalent in developing countries, entailing considerable risks and costs regarding national monetary sovereignty, policy space and macroeconomic stability.\n\nFurther, it seems like the UN is much more concerned with the geopolitical stability of developing countries than the freedom/well-being of the people living there. \n\nKinda makes sense where they're coming from, but the recommendations they give are egregious.\n\n\n https://example.com/ 20993 436700 436612.436700.436705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4285368032145 0 \N \N f 0 \N 0 99590391 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436700 2025-03-13 19:50:59.106 2025-03-29 22:39:51.465 \N For TypeScript can recommend https://github.com/joinmarket-webui/jam/ . https://example.com/ 21480 436612 436612.436700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.30969638573309 0 \N \N f 99590391 \N 1 64183732 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436684 2025-03-13 19:34:09.229 2025-03-29 22:39:51.465 \N I think @ek mentioned this before, but I can't find it right now. https://example.com/ 3745 436556 436556.436684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6091720641467 0 \N \N f 0 \N 0 228161383 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436682 2025-03-13 19:33:24.984 2025-03-29 22:39:51.465 \N Don't temp me to get into frontend code and do it myself lol.\n\nBack button isn't necessary, gesture swipe right will go back to the previous page like normal. https://example.com/ 18177 436665 436665.436682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.56771101788124 0 \N \N f 0 \N 0 95815328 0 f f \N \N \N \N 436665 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436712 2025-03-13 20:30:03.024 2025-03-29 22:39:51.465 \N Notification gang rise up! https://example.com/ 894 436499 436499.436712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.97423279739505 0 \N \N f 0 \N 0 109218576 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436732 2025-03-13 21:18:04.463 2025-03-29 22:39:51.465 \N Volatility never got to me, sold my stack to get out of my parents basement....been trying to get back to my previous levels since. https://example.com/ 12490 436683 436683.436732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.060420780744 0 \N \N f 0 \N 0 225421058 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436716 2025-03-13 20:47:17.437 2025-03-29 22:39:51.465 \N A lot of useful info in the sidebar: https://www.moneroinflation.com/ "We are 9y 114d 11h 20m 29s without an inflation bug" (i.e. since the launch of Monero in 2014) and here: https://sethforprivacy.com/posts/dispelling-monero-fud/#you-cant-audit-the-monero-supply\n\nBlock rewards are transparent and can be seen in any block explorer such as https://xmrchain.net\n\nNodes verify the supply via cryptographic range-proofs, meaning that it can be mathematically proven for every transaction that inputs - outputs = 0, without publicly revealing the exact amounts (only the sender and recipient can decrypt the encrypted amounts). https://example.com/ 9843 436699 436699.436716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0393742683158 0 \N \N f 0 \N 0 194885380 0 f f \N \N \N \N 436699 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436715 2025-03-13 20:42:03.619 2025-03-29 22:39:51.465 \N Got it, understood. That makes sense and that's basically how we have built Flow 2.0. A user requests a payment through our LSP, we detect when the payment is coming in and zero-conf open up a new channel to that mobile node to finish the payment. All noncustodial and just in time. https://example.com/ 4768 436464 434469.436464.436715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.28868288177129 0 \N \N f 0 \N 0 177882046 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436724 2025-03-13 21:08:07.21 2025-03-29 22:39:51.466 \N @birdeye21 you still out there? \n\nHe just kinda seems like the type who would have made some suggestion of a farewell or at least pop in here and there. He really went from near spam (averaged 10.5 interactions with SN/day) to entirely off the map 5 months ago. he did refer to being missing for 3 weeks as a much needed hiatus but that he would be back.. continued posting normally for two weeks then poof, gone.\n\nJust hope he's doing well is all! https://example.com/ 21444 436720 436720.436724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4802656732492 0 \N \N f 0 \N 0 80108014 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442163 2025-03-18 13:13:14.832 2025-03-29 22:39:47.911 The canon of Satoshi Recently, I wrote this: https://stacker.news/items/684558?commentId=684701 and asked whether three emails were "legit"...did Satoshi write them. Still wondering, I thought a wider explanation might be worthwhile.\n\nSomehow, I'm finding myself lost in a techno labyrinth and then mired in a quandary of muck. Here's why...\n\n![satoshi-leatherbound.jpg](https://files.peakd.com/file/peakd-hive/crrdlx/AK3eHCTZJNmnLFYLQDg8dvEkqtYY9vJAumT74aWrAEiCLYxZBQsEdDHMVDSLgS4.jpg)\n\nImage source: generated at leonardo.ai\n\n### The background\n\nIn 2019, I edited a book called "Kicking the Hornet’s Nest: The Complete Writings, Emails, and Forum Posts of Satoshi Nakamoto, the Founder and Creator of Bitcoin" with the goal of logging all of Satoshi Nakamoto's public writings in chronological order ([links here](https://hive.blog/bitcoin/@crrdlx/satoshi)). There were other similar resources out there, and a somewhat similar but incomplete book, yet none were arranged strictly by chronology or without heavy editorial commentary added as a layer on top of Satoshi's writings. \n\nI wanted Satoshi's words, alone, in order, all of them.\n\nA second edition of "Kicking" came out when three "Satoshi emails" were released in 2020. Since the goal was to include *all* of Satoshi's writings, a new edition was needed.\n\nThen, with the "COPA trial" in early 2023 a new slew of never-before-seen emails were released by Adam Back and Martii Malmi as evidence in the case. This was a couple of *hundred* more emails, half from Satoshi and the other half *to* Satoshi. So, a third edition of "Kicking" was needed. \n\n### The start\n\nMy current quandary started when I got a ping via X saying I'd missed Wei Dai's emails with Satoshi.\n\nhttps://files.peakd.com/file/peakd-hive/crrdlx/23wMyix4neRki9BgsjZGYV7qpaHvmiwXUVMtm8XP8MQEpCNApb8BVQcY8qdAxa3kenpdw.png\n\nWei Dai's work is the first citation in the [bitcoin whitepaper](https://bitcoin.org/bitcoin.pdf) (page 9) and Dai is a cypherpunk legend, of course. This omission was a rather egregious error on my part, "How did I miss that?" I wondered. Like finding an overlooked golden nugget, I eagerly wrote back to thank BITCOINALLCAPS: "This is defitely [sic] something to include. I'll investigate, and thanks for the heads up!"\n\n### That feeling\n\nSince I'm currently still tweaking out the third edition, this Wei Dai email discovery came at an opportune time to make adjustments. However, I had, and have, a funny feeling.\n\nThe link that BITCOINALLCAPS gave was to what I thought was a semi-sketchy looking video. (See the YouTube video linked on the X post above: https://www.youtube.com/watch?v=hkcwUortfWE) The vid was interesting in that it talked about Satoshi reaching out to Wei Dei pre-whitepaper. Then it analyzed nuanced differences between the *drafted* whitepaper title and summary when compared to the *final* title and summary of the whitepaper.\n\nA little searching pointed the "source" for this missing Wei Dai email as bitcoin.com. That site has a list of Satoshi emails, forum posts, etc. I noticed two correspondences that I'd missed: Wei Dei's two emails and Jon Matonis's one. However, the likely more-respected Nakamoto Institute at https://satoshi.nakamotoinstitute.org did not include those three emails. That feeling came back to me, with the question, "Are these emails for real?"\n\nIf you're unfamiliar with bitcoin.com, then you may not realize why I got a funny feeling and why I began to wonder about the emails at all. It's a long, sordid story, but I'll try to *briefly* summarize.\n\nAt first there was bitcoin. Then, around 2017 as bitcoin grew and struggled to scale in size, the "block size wars" went down. Some wanted to increase the block size to unclog the chain, others wanted to retain the small block size that Satoshi had coded. The big blockers eventually forked Bitcoin (BTC) to start Bitcoin Cash (aka, "B-cash") and took the symbol BCH. \n\nThere was much animosity, and frankly, there still is. Bitcoin "maxis" today consider BTC the *only* bitcoin. Maxis even say there is bitcoin and *no* other...that there actually *are* no other cryptocurrencies...that all others are merely scam-coins. These folks consider themselves purists by retaining Satoshi's original small block size. The B-cashers consider themselves purists, retaining Satoshi's "electronic cash" ethos so that someone could buy-a-cup-of-coffee with a transaction on the main chain.\n\nIf you're keeping score:\n\n|coin/chain:|Bitcoin|Bitcoin Cash|\n|-|-|-|\n|symbol/nickname:|BTC|BCH or B-cash|\n|block size:|small blocks like Satoshi coded|big blocks so electronic cash can exist like Satoshi wrote|\n|website:|bitcoin.org|bitcoin.com|\n|site founder/owner:|started by Satoshi|owned by Roger Ver|\n|Satoshi's writings logged at:|nakamotoinstitute.org|nakamotostudies.org|\n\nAnd, to really throw gas onto the fire, and I hate to even bring this up, but there is Craig Steven Wright. His "Bitcoin SV" (BSV) coin spun-off from Bitcoin Cash. BSV claimed to be the even more pure purist coin as "Satoshi's Vision," hence the "SV." If you're reading this, you know about Wright...and the COPA trial...and his debunking as Satoshi...and all that. I'll return to this topic in a moment.\n\nLike I said, this is a long and sordid story. \n\nSo, why dig up this muck here?\n\n### Back to the emails\n\nMy question was/is, "Did Satoshi write the emails to Wei Dai and Jon Matonis?" And this is where I entered the techno-labyrinth.\n\nThe video source I mentioned above aroused skepticism. The narrator focused on certain items, namely the emphasis on "electronic cash" or "ecash" or the "b" in "b-money." He didn't mention "b-cash" that I caught, but the I wondered if that was the allusion projected. In other words, I wondered if there was/is an agenda, as if to say, "b-money is b-cash which is the real and original bitcoin."\n\nAnd, back to Craig Wright. I was unfamiliar with Jon Matonis, so I searched, and this article came up: https://jonmatonis.medium.com/how-i-met-satoshi-96e85727dc5a. The upshot is that in 2016 Matonis believed Craig Wright was Satoshi Nakamoto. (I'm curious as to his opinion now.) Suddenly, the reason for excluding the Jon Matonis email from the Bitcoin (BTC)-friendly [NakamotoInstitute.org](https://akamotoinstitute.org/) was apparent. This was high blasphemy. \n\nThe labyrinth got more convoluted. The website [NakamotoStudies.org](https://nakamotostudies.org/) is Bitcoin Cash (BCH)-friendly. (See the left-leaning green "B" symbol? It's the same as on the BCH symbol instead of the familiar, right-lighting and orange BTC symbol.) \n\n![screenshot-2024,09,18-17.43.32.414.png](https://files.peakd.com/file/peakd-hive/crrdlx/23tSuaAoYTGDLArhs8UbeafA6596RuiburpfTCYKdxc4aEfcqNdfjuegCayePXDBGkTX6.png)\n\n![screenshot-2024,09,18-18.31.27.063.png](https://files.peakd.com/file/peakd-hive/crrdlx/242sCSm6unHpt8x9ByFhVFZsPbWmCrMJyqbeotaYaW6XMKaZ5836HpPAV2oy4zRet7jVq.png)\n\n![screenshot-2024,09,18-18.35.05.480.png](https://files.peakd.com/file/peakd-hive/crrdlx/242Di7UWoPA3Ra79zSDsr2fv4zT6fi3QRwBJfCo9jFhr6BngpjSjRbXTYbjA8TDoRNiJC.png)\n\nFor some reason, the NakamotoStudies.org (BCH-friendly) site does *not* currently show the Matonis email, see [this link](https://nakamotostudies.org/emails/satoshi-to-john-matonis/). Actually, all "Emails" are "forbidden." \n\n![screenshot-2024,09,18-17.36.53.344.png](https://files.peakd.com/file/peakd-hive/crrdlx/23vsrFxbbdR44AeraUqGeLphGP97pVfyg4vn3X7wLXRaSESJGqqC28aQjVk9LZXzrQ9Ln.png)\n\nThough not live now, the Internet Archive Wayback Machine has captured the emails [here](https://web.archive.org/web/20200119190105/https://nakamotostudies.org/emails/satoshi-to-john-matonis/). \n\nAt this point, the tecno-labyrinth is confusing and the muck is deep.\n\nIt *seemed* simple. I just wondered if Satoshi wrote the emails, but now I'm mired in website inclusion/exclusion censorship and gamesmanship, B-cash talk, and Craig Wright-is-Satoshi nonsense. Labyrinth and muck.\n\n### Canon or canon not?\n\nIn Christianity, there is the idea of Biblical canon. Canon is *what should be included* in the Bible, non-canon is everything else. Christians believe canonical works are inspired scripture, where the Holy Spirit guided the authors of the books of the Bible. As man used his own words and writing styles to literally write, the Holy Spirit actually guided each word perfectly so that the finished work was not just man's words, but "God-breathed" words.\n\nThe early Christian church, then, had to figure, "Which works are God-breathed canon and which are not?" Or, practically speaking, what goes into the Bible and what does not?\n\nThis gets into the weeds a bit, but there was no official meeting to decide what gets into the Bible and what did not. The "Early Church," that is, the body of Christian believers in the first couple of centuries A.D., essentially agreed as a collective on certain books as being in line with Christian thought and agreed that others were not. As a group, they nodded and said, "Yep, this is in," to the 66 books we recognize in the Bible today, and they said, "Nope, not this" to everything else.\n\nI say this gets into the weeds, and it does. The Catholic Church may bring up the books of the Apocrypha. And, even then, the church might distinguish the Old Testament Apocryphal books versus New Testament Apocryphal books. It gets complicated.\n\nWhat's more, some may argue that official church councils or positions officially codify or accept certain books as doctrine, or not. That is, the official church officially deems canon, or as deems non-canon. Yet, others may argue, as I do, that it is not an official church that is the gatekeeper of canon, but rather that it is instead the decentralized body of believers as a group, guided by the Holy Spirit, which accept canon and reject non-canon. If canon is God-breathed, it is not a council of church men who decide canon or not. Rather, it is the church, the believers, guided by the Holy Spirit that decides.\n\nThis is now deeply in the weeds, but the point remains...some works get in, some does not.\n\n### Bitcoin is not a religion\n\nTo be clear, I'm very much *not* a fan of throwing religion onto bitcoin. We do it at times, maybe in a solely fun way, such as with the "Genesis block" or in other ways. Bitcoin is a lot of things: economics, computer science, physical science, mathematics, philosophy, game theory, and more. But, it's not religion. \n\nThe reason I even included the religious discussion here is to illustrate the point of including or excluding text. Recall my question, "Should the Wei Dai and Jon Matonis emails be included in Satoshi's writings?" \n\nAnd, I mentioned two ways above what made Biblical canon or non-canon: (1) official decree or (2) unofficial acceptance by the people. In the first case, I wouldn't want an official bitcoin meeting of people to decide yes or no as to what is Satoshi's writings and what is not (of course, being decentralized, there can be no official bitcoin meeting!). And, to the second, I don't want the bitcoin community to collectively agree yes or no, "This is in, this is not," as the early Christian Church did with Biblical canon. My desire is this:\n\nIf Satoshi wrote it, I want it included in "Kicking." \n\nYet, the question still nags, are these emails Satoshi's words? Are they bitcoin canon or not?\n\n### My hope\n\nTo include or not to include is my question? My reason for writing this is to hopefully get unstuck from the muck and mire. My options at the moment, as I see them, are: \n\n1. Don't include those emails in "Kicking the Hornet's Nest."\n2. Include them alongside all the others in the chronological place they would go.\n3. Include the emails, but add an editor's comment effectively as an asterisk saying: *here is the email, but take itwith a grain of salt. \n\nCurrently, I'm really not sure which option I'll go with. If I had to choose today, I'd choose option 3. I've already done this with the "I am not Dorian" post, as below.\n\n![i-am-not-dorian.PNG](https://files.peakd.com/file/peakd-hive/crrdlx/23uFwS9uoSznQAdVhmsikm9KscNhRxFq1RTDxesYUhxjvDqQXMA2gZ181ki4WAU4mPqBH.PNG)\n\nThis is odd in a way. I'm a Christian, by faith. Faith, by definition, is believing in what cannot be proven. And yet, I love bitcoin, who's #1 mantra may be, "Don't trust (believe), verify." So, my hope is to find an answer to whether these emails are Satoshi's or not. Perhaps there is a telling clue or clues in the source or metadata of those emails that proves or disproves them. My hope is to verify yes or no, legit or not. Maybe someone who reads this, more adroit than I, can enlighten me on a telling point that reveals whether Satoshi wrote the Wei Dai and Jon Matonis emails, or not.\n\nI'm curious and listening.\n \N 20713 \N 442163 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.3124435873215 0 \N \N f 624093050 \N 4 164952749 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443354 2025-03-19 09:34:13.961 2025-03-29 22:39:51.465 \N Hidden Repression by Alex Gladstein\n\nForeword by Jeff Booth \n\n"The IMF and World Bank were created to help countries survive financial crises and to help them develop into prosperous economic actors. But their 75-year track record shows the opposite: their loans and structural adjustment policies have plunged poor countries into impossibly large debt traps and forced the Third World to focus on producing goods for consumption in the West, instead of growing consumption and industry at home". https://example.com/ 5500 443319 443319.443354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.63164864247657 0 \N \N f 0 \N 0 36251631 0 f f \N \N \N \N 443319 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443345 2025-03-19 09:28:08.335 2025-03-29 22:39:51.466 \N @orthwyrm I am confident now that you will see a 100k Bitcoin price. Lol.\n![IMG_20231126_074950.jpg](https://m.stacker.news/7100) https://example.com/ 11829 443129 443129.443345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.7802815804497 0 \N \N f 0 \N 0 177034717 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443331 2025-03-19 09:12:23.078 2025-03-29 22:39:51.466 \N This is one potential use for ecash, once it is developed a bit more. \n\nThere's no surprise markets don't want to use the most open, visible, and tracked digital currency (BTC). Monero is THE privacy currency. It's drawback is being slightly harder to use, but not substantially so. \n\nIf lightning were used, governments would be going after LSPs and wallets even more than they are now. https://example.com/ 2000 443193 443105.443193.443331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0512777578289 0 \N \N f 743362627 \N 5 164451381 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443361 2025-03-19 09:42:47.098 2025-03-29 22:39:51.466 \N The threat of ETFs bribing their way into developer influence is very real. But, I have hope. \n\n* The current crop of devs are fairly principled and have already proven that they passed the time preference / marshmallow test. To be frank I think the last 10+ years of BTC has changed lots of peoples attitudes towards consumption. We have literally been training ourselves to 'consume less / save more'. Once you break the spell that a lambo is suddenly something you *need* to have, it sort of loses its power of you forever. The next gen of developers, however will be less principled and probably have less self-control....\n\n* Lets hope the ETH ETF gets approved. This is tailor made for Wall Street / Fed Reserve control. This can be their shitcoin / CBDC casino platform. There will be less 'need' to subvert BTC is they can inflate DOGE the thus control X (Elon's wechat)\n\n* Fedimints and Cashu are available for them. These developments are 100% made for Wall Street. I mean its Fractional Reserve with cute graphics and positive bitcoin vibes. This will keep them busy as well.....they can setup the "biggest and most trusted" mints and they can milk their cattle for the next 50 years via slow debasement. Although this may sound negative, its not meant to be. It keeps them out of core code. Gives them a shitcoin playground to play in.\n\n\n\n https://example.com/ 16680 443067 443067.443361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3090801036173 0 \N \N f 0 \N 0 169724356 0 f f \N \N \N \N 443067 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443366 2025-03-19 09:50:40.699 2025-03-29 22:39:51.466 \N I think SeedSigner, RaspiBlitz, JAM (JoinMarket Web UI), Specter Desktop and Sparrow Wallet are pretty lit too. https://example.com/ 1141 442800 442800.443366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4576092695538 0 \N \N f 0 \N 0 244393733 0 f f \N \N \N \N 442800 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443383 2025-03-19 10:12:05.423 2025-03-29 22:39:51.467 \N The Bitcoin Bugle is a parody. The title isn't supposed to be accurate. It's supposed to be funny. And in this case, being funny required it to have a certain truth to it. https://example.com/ 4287 443374 443295.443305.443374.443383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.699876466528 0 \N \N f 0 \N 0 127275625 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443370 2025-03-19 09:56:20.611 2025-03-29 22:39:51.467 \N Muun is *fee siphoning attacking* any sender to Muun wallet. There is a mandatory hop through a private channel with a fee of +1500ppm. \n\nRoboSats will strictly not route a buyer payout for a net loss. Given that RoboSats trading fees are 0.2%, and it needs to cover the routing fees, RoboSats will never find a suitable route to a Muun wallet user. https://example.com/ 14959 443253 442191.442374.443253.443370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2827811813843 0 \N \N f 0 \N 0 209512033 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443437 2025-03-19 10:56:59.028 2025-03-29 22:39:51.467 \N Oh goodness. I could have gone the whole day without remembering that expression exists. https://example.com/ 9378 443295 443295.443437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.01345965794886 0 \N \N f 331302820 \N 3 7801014 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443356 2025-03-19 09:35:23.573 2025-03-29 22:39:51.467 \N https://purse.io\nhttps://coingate.com/gift-cards/category/all\nhttps://www.bitrefill.com/\nhttps://shopinbit.com/\nhttps://www.cheapair.com/\nhttps://www.airbaltic.com/\nhttps://bithost.io/\nhttps://www.namecheap.com/\nhttps://nitrobetting.eu/\n\nSome support LN, some do not. https://example.com/ 1761 443339 443339.443356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.759001070622 0 \N \N f 391743449 \N 3 155274400 0 f f \N \N \N \N 443339 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443376 2025-03-19 10:05:07.024 2025-03-29 22:39:47.91 Street Level Surveillance - EFF Exposing Invasive Privacy Practices ![EFF Animated Website](https://im3.ezgif.com/tmp/ezgif-3-e0096200f5.gif)\n\n- EFF’s Street-Level Surveillance project shines a light on the surveillance technologies that law enforcement agencies routinely deploy in our communities.\n- These resources are designed for advocacy organizations, journalists, defense attorneys, policymakers, and members of the public who often are not getting the straight story from police representatives or the vendors marketing this equipment.\n- Whether it’s phone-based location tracking, ubiquitous video recording, biometric data collection, or police access to people’s smart devices, law enforcement agencies follow closely behind their counterparts in the military and intelligence services in acquiring privacy-invasive technologies and getting access to consumer data.\n- Just as analog surveillance historically has been used as a tool for oppression, we must understand the threat posed by emerging technologies to successfully defend civil liberties and civil rights in the digital age. \n- **The threats to privacy of these surveillance technologies is enormous**, as law enforcement agencies at all levels of government use surveillance technologies to compile vast databases filled with our personal information or gain access to devices that can lay bare the intricacies of our daily lives. \n- The resources contained in this hub bring together years of research, litigation, and advocacy by EFF staff and our allies, and will continue to grow as we obtain more information.\n\n**[Link to EFF page](https://sls.eff.org/)** 🔗\n[Donate to EFF](https://eff.org/slsgive) https://sls.eff.org/ 714 \N 443376 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 7.16149855048606 0 \N \N f 0 \N 0 18672809 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443392 2025-03-19 10:17:52.718 2025-03-29 22:39:51.467 \N > *This is not a new conversation, it's how BCashers misinterpreted "Peer 2 Peer" to such an extreme that they ended up with "Poor 2 Poor".*\n\nSpeaking as a writer, this is a high IQ turn of phrase 🫡 \n\n https://example.com/ 9920 443315 443295.443297.443301.443308.443311.443315.443392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.56218705632802 0 \N \N f 0 \N 0 247434330 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443384 2025-03-19 10:13:00.104 2025-03-29 22:39:51.468 \N Very interesting article. This stood out: ‘Decentralization is a worthy goal, but in practice it seems that most Argentinians don’t care that much about it, at least not in the way purists talk about it. They’re more worried about whether the government can get their hands on their money; as long as the answer is “no,” they don’t seem to care much about who else has control over it.’\n\nBitcoin maxi’s should learn this lesson - people don’t really care about the philosophy, they just want the utility. Blind adherence to an ideology always turns off a bunch of people, and decreases the rate of adoption because many people are inherently skeptical of aggressive sales strategies. They feel like there is a gotcha. https://example.com/ 640 443182 443099.443100.443182.443384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3671771879559 0 \N \N f 0 \N 0 215193695 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443389 2025-03-19 10:15:19.315 2025-03-29 22:39:51.468 \N High end electronics. As an electronics installer and electrical technician I have occasion to call the manufacturers of high end electronics to get troubleshooting help. I deal mostly with technical support, but I've had to talk to some customer service reps as well. Apparently, paying $15k for a computer and touch-screen all in one device (MFD) comes with a certain level of lifetime support. \nOne time a customer's brand new 22" Garmin MFDs bricked during the first update. Garmin took a $30k hold on his credit card, send him brand new ones express, and had him send the broken ones to them to get the hold removed. Unfortunately the MFDs bricking sucked, but everything else about the experience involving the company seemed extremely straight forward and convenient. (For someone who can afford a random $30k hold on card.) Luxury goods have the best customer service. https://example.com/ 16830 441843 441843.443389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.08489958752334 0 \N \N f 0 \N 0 124949265 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443411 2025-03-19 10:37:41.788 2025-03-29 22:39:51.468 \N I think this is a great question, I would love to see such a write up. \n\nHere's my limited understanding of how each of these stack up. Maybe someone who knows better can help fill in the gaps or correct my mistakes:\n\nNostr\n\n* Identification - public/private key pair: npub and nsec\n* Identity validation (tying your key to some real world identity) - NIP-05 (DNS)\n* Data exchange protocol - Nostr protocol - clients send signed messages to relays\n* Data storage and metadata - relays store user data (I think??)\n\nSynonym\n\n* Identification - public/private key pair: Slashtags\n* Identify validation - ?\n* Data exchange protocol - Hypercore - users send signed messages or data to append only logs\n* Data storage and metadata - Hyperdrive (I think??)\n\nBluesky/TBD\n\n* Identification - public/private key pair: DIDs (Decentralized Identifiers)\n* Identify validation - I believe the spec stores some info on the blockchain. They seem to also be focusing on allowing individuals to verify their DID with some organization (eg. a government, a company, an educational institution)\n* Data exchange protocol - Decentralized Web Nodes (???)\n* Data storage and metadata - Decentralized Web Nodes (???)\n\nThe obvious (at least to me) step, in terms of compatibility or interoperability, would be for the projects to agree on the nature of the public/private key pair. I'm not sure if they all use the same spec currently, but if they did, I would think it would be trivial to move from one protocol to the next because the public key can be used as a bridge. \n\n\n https://example.com/ 17526 443342 443187.443342.443411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8789300037568 0 \N \N f 0 \N 0 45808754 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443401 2025-03-19 10:25:04.678 2025-03-29 22:39:51.468 \N I recommend Elle Mouton's [HTLC Overview](https://ellemouton.com/posts/htlc/) and [HTLC Deep dive](https://ellemouton.com/posts/htlc-deep-dive/) too if you feel like anything was ambiguous. https://example.com/ 17696 443356 443339.443356.443401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6369133574979 0 \N \N f 243712800 \N 2 148030649 0 f f \N \N \N \N 443339 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443408 2025-03-19 10:33:35.008 2025-03-29 22:39:51.469 \N In Canada, Santa's postal code is H0H 0H0. https://example.com/ 7510 443274 443274.443408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1310151281305 0 \N \N f 0 \N 0 162372576 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443403 2025-03-19 10:29:40.879 2025-03-29 22:39:51.469 \N Random realization I just came to:\n\nNo-coder is a psyop. \nFrom now on I call them pre-coders 🫡 https://example.com/ 672 443319 443319.443403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4790746851313 0 \N \N f 0 \N 0 22105179 0 f f \N \N \N \N 443319 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443405 2025-03-19 10:31:48.487 2025-03-29 22:39:51.47 \N [![burn-calories.jpg](https://imgprxy.stacker.news/U6sfFLKXuLYQi1gWKIach1YyX9sx914qUQnlRedJzRU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvMjV6OGhmeUsvYnVybi1jYWxvcmllcy5qcGc)](https://postimg.cc/fVrNQpxc) https://example.com/ 12870 443353 442820.442876.442880.442948.443353.443405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7821245886573 0 \N \N f 0 \N 0 17634736 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443407 2025-03-19 10:32:35.156 2025-03-29 22:39:51.471 \N That ETF better get approved in Jan or else I might die https://example.com/ 14225 443052 442163.442234.443001.443052.443407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4198410049699 0 \N \N f 0 \N 0 172764679 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443424 2025-03-19 10:49:54.288 2025-03-29 22:39:51.466 \N ![1000000350.jpg](https://m.stacker.news/4214)\n\nEustace Haney https://example.com/ 13865 440790 440727.440790.443424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.879516571178 0 \N \N f 0 \N 0 147188333 0 f f \N \N \N \N 440727 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443426 2025-03-19 10:50:46.024 2025-03-29 22:39:51.466 \N Can confirm that autowithdraw kicked in for me. Thanks! https://example.com/ 17690 443400 443372.443390.443395.443400.443426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.75555699050088 0 \N \N f 0 \N 0 27477692 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443468 2025-03-19 11:21:29.097 2025-03-29 22:39:51.466 \N I think this is a fascinating question for the other major metros. \n\nI've heard people argue that NYC will crack down eventually, because that's where all the big finance companies are. That seems reasonable enough, but what about San Francisco or Seattle?\n\nIt's hard to imaging people in cities like that going along with any serious anti-crime measures. On the other hand, it's very easy to imagine that people will continue moving away from these cities as conditions get worse and worse.\n\nI know there will be an inflection point somewhere, but I don't think we're close to it yet. https://example.com/ 10981 443319 443319.443468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8196877716631 0 \N \N f 0 \N 0 78540411 0 f f \N \N \N \N 443319 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443433 2025-03-19 10:54:49.698 2025-03-29 22:39:51.466 \N someone who wants to earn fees from operating the bridge (and chain if the staker set is re-used for operating the chain)\n\nnowadays there is a huge industry of professional stakers for all kinds of different protocols, could draw from that pool of experienced operators or recruit new ones. https://example.com/ 5646 442985 442985.443433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.812133302366 0 \N \N f 0 \N 0 16297283 0 f f \N \N \N \N 442985 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443435 2025-03-19 10:56:05.725 2025-03-29 22:39:51.466 \N Trying not to build up too much of a PR backlog while k00b is at tabconf https://example.com/ 1983 443419 443367.443419.443435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2382160462816 0 \N \N f 0 \N 0 212307691 0 f f \N \N \N \N 443367 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443428 2025-03-19 10:51:40.54 2025-03-29 22:39:51.466 \N Your going to let him win like that? It's really not a big deal. What are you afraid of? He can't hurt you, what do you mean by threatening? This is Bitcoin where we have free speech. DC gets on my nerves but I would never let him push me away and I don't think you should either. He gets to say what he wants. Let it go I say. https://example.com/ 4819 442830 441247.441312.442830.443428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.77543338617749 0 \N \N f 0 \N 0 195827964 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443415 2025-03-19 10:40:14.66 2025-03-29 22:39:51.466 \N Working on route finding algorithms with LDK but more importantly quantifying it with real world data collected through probing. https://example.com/ 999 443187 443187.443415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.91340566370098 0 \N \N f 125147016 \N 1 3866232 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443416 2025-03-19 10:41:39.47 2025-03-29 22:39:51.471 \N Routing is a business. It has revenues and expenses. If you can maximize revenue and minimize expense, then you can be profitable.\n\nIn mining, a terrahash is more or less the same as any other terrahash. It will be rewarded basically the same so your primary competitive advantage is energy cost.\n\nIn staking pools, one token is more or less the same as another token. Investing 10x more into a liquidity pool will yield about 10x more reward. Your competitive advantage is access to capital.\n\nHowever, in LN, every channel has unique properties. Capacity, routing fees, onchain fee paid, position in the network, relative liquidity flow (sink/source) and many other factors will directly impact the ROI on a channel and each factor presents an opportunity to optimize into a competitive advantage.\n\nYou are unlikely to generate passive profit because you will always be out-competed by someone who actively tries to optimize their channels.\n\nMany people think that one day, there will emerge an algorithm that magically and automatically manages your node to achieve maximum profits. Then, LN basically becomes a staking pool where access to capital is the only competitive lever. \n\nI think this senario is unlikely for the same reason that there is no magic portfolio that always returns maximum results. People create algos to trade stocks profitably, but as soon as a critical mass of capital is deployed by the algo, all the arbitrage is depleted and another strategy will outcompete it. https://example.com/ 20924 443295 443295.443416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4394385177448 0 \N \N f 0 \N 0 203027047 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443417 2025-03-19 10:42:04.877 2025-03-29 22:39:51.472 \N There’s a difference between self custodial and non custodial. Self custodial is only I can spend my funds, non custodial being no one else can spend my funds. https://example.com/ 14990 443412 443412.443417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.39419811386649 0 \N \N f 0 \N 0 28385656 0 f f \N \N \N \N 443412 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443418 2025-03-19 10:43:18.726 2025-03-29 22:39:51.472 \N Somebody took a picture with @Natalia 😂😂😂\n![natalia-hiden.jpg](https://m.stacker.news/19091) https://example.com/ 14255 443377 443377.443418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6438880645635 0 \N \N f 0 \N 0 27259668 0 f f \N \N \N \N 443377 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443421 2025-03-19 10:46:57.538 2025-03-29 22:39:51.473 \N for the lulz https://example.com/ 16229 442515 442515.443421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8620867551274 0 \N \N f 0 \N 0 30464213 0 f f \N \N \N \N 442515 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443446 2025-03-19 11:03:38.563 2025-03-29 22:39:51.466 \N https://i.ibb.co/zs20pBs/US-Debt.jpg https://example.com/ 1512 443440 443372.443390.443427.443429.443434.443440.443446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8706271132981 0 \N \N f 0 \N 0 19553775 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443443 2025-03-19 11:01:09.07 2025-03-29 22:39:51.466 \N Add NIP-39 to Plebeian Market https://example.com/ 21060 443349 443105.443349.443443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1822701379234 0 \N \N f 0 \N 0 122301962 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443439 2025-03-19 10:58:39.117 2025-03-29 22:39:51.466 \N would love to engage with this project, but the comms channel is a centralised Teams equivalent (Discord), when Matrix Chat? or even IRC https://example.com/ 18441 443379 443105.443379.443439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2566401689555 0 \N \N f 0 \N 0 62132672 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443442 2025-03-19 11:01:08.326 2025-03-29 22:39:51.466 \N docker vlc, trying to converge IP cams streams. It's fun, formats and conversions are just crazy, I just wish we could all agree on something... https://example.com/ 2039 443292 443274.443290.443292.443442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6863962083276 0 \N \N f 0 \N 0 58102613 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443444 2025-03-19 11:02:14.707 2025-03-29 22:39:51.466 \N Wrapping up some feedback on PRs that I opened while k00b was out last week. More exciting stuff coming for stackers! https://example.com/ 21262 443438 443438.443444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5157408216791 0 \N \N f 0 \N 0 5937388 0 f f \N \N \N \N 443438 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443485 2025-03-19 11:36:25.664 2025-03-29 22:39:51.466 \N Doing some basic UI design work for Alby. Pretty cool stuff https://example.com/ 21713 443457 442751.442854.443457.443485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1575166306454 0 \N \N f 0 \N 0 452725 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443441 2025-03-19 11:00:19.613 2025-03-29 22:39:51.466 \N Making a **tutorial** to teach to make a **new SeedSigner** in the **next local Bitcoin meetup**. https://stacker.news/items/213346 ⚡️that's it https://example.com/ 17713 443194 441176.442104.443194.443441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2156185551623 0 \N \N f 226583463 \N 2 201173848 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443450 2025-03-19 11:05:00.324 2025-03-29 22:39:47.91 Seek First _____ This post is my follow up to @DesertDave's post here https://stacker.news/items/501355, per a short discussion we had in the comments. \n\nI think there’s something about this idea that resonates with most of us, so I thought I’d share the history and religious background to really dig into its original meaning. \n\nA couple of quick mentions:\n\n* If you’re not a Christian and/or generally opposed to Christianity/religion, but you’re interesting in improving your framework to seek truth/meaning, I think there might be something here for you. \n\n* If you are a Christian or have a religious background, you’re probably familiar with a lot of this, but I made an attempt to add some unique ideas that may be new to you. \n\n_____\n### Some background\n\nThe jewish people were living under Roman oppression, waiting on the fulfillment of prophecies about a Messiah that would bring salvation, not only to them, but to the entire world. This was commonly interpreted to mean that a military leader was coming to overthrow the Roman Empire. It was also common to believe that God would not send the Messiah until his people had reached some arbitrary threshold of righteousness. This resulted in religious laws becoming more and more strict over time. \n\nJesus enters the scene, performs healings and miracles, and claims to be the Messiah. People are intrigued and follow him everywhere he teaches. But instead of gathering an army, he spends time with the sick, the poor, and the unrighteous (including some who were participating in oppression). Instead of supporting the religious leaders and proclaiming freedom from the Roman Empire, he broke religious rules and claimed that he is the escape from spiritual death. (Spoiler alert, this was the main reason he was crucified, but that's a different conversation).\n\n_____\n### "Seek First the Kingdom"\n\nIn one of his first large public teachings (known as the Sermon on the Mount), Jesus implores his listeners to shift their focus away from following the rules or seeking a life of physical/material security. He would also say things like “You’ve been taught ‘Do not murder’, but I say that if you say to your brother ‘you idiot’, you are in danger of spiritual death.”[^1] Instead of completely abolishing the rules, he would get to the heart of it, and up the ante. He would say “You cannot serve God and money, so don’t be worried about your life and how you will take care of yourself. Look at how God takes care of the birds and the flowers - so much more will He care for you.”[^2]\n\nHe was preaching freedom from stringent rule following and the grind of daily life, and at the same time, telling people how to interpret the rules in such a way that would be life giving to individuals and communities. \n\nIn this context, he states “Seek first the kingdom of God and His righteousness, and all these things will be added to you”[^2]. \n\n_____\n### Going Further Back\n\nIncredibly, this resonates with one of the very first written pieces of God’s word to his people. Rewind several centuries, the jews were working 7 day work weeks as slaves in Egypt. Inability to perform likely meant that the Egyptians would take advantage of your family in far worse ways. **It had been burned into their minds that their entire worth was their ability to work and contribute.** Once they’re finally freed from slavery, they’re given the story of creation - a beautifully written poem whose central focus is *inherent human worth* and the vital importance of *rest*[^3]. God says that humans are *very good*, **prior to any ability to perform,** and that **each week and day must begin with *rest*.**\n\n*(Quick side note - the day of rest was a big point of controversy with Jesus. As mentioned earlier, there were a lot of strict religious rules at the time Jesus entered the picture, and Sabbath was a major example of this. The rules had gotten so out of control that following them had made the day of rest a burden. Jesus was notorious for blatantly breaking those rules, but simply responded by saying the day of rest was meant for our benefit[^4].)*\n\n_____\n### Timeless Meaning\n\nSo, fast forward to today. It’s still so easy for us to believe that our worth is wrapped up in our ability to perform and to keep up. \n\nOne of the most gripping illustrations in the short film @DesertDave shared was “device slavery”. It resonates because it’s so obvious. And I would argue that if it’s not our devices, you could fill the blank with so many other things, and they become rules of our culture. \n\nYou must have:\n* A following/likes\n* The right job\n* A side hustle\n* The best takes on social media\n* Enough money\n* The *right kind* of money\n* The right kind and amount of long term investment(s)\n\nTechnology is freedom. \nPrivacy is freedom. \nBitcoin is freedom. \n\n![Screen Shot 2024-04-12 at 12.49.16 PM.png](https://m.stacker.news/26370)\n\n**Our default is to strive for satisfaction in things that enslave us one way or another.**\n\nWhen Jesus says “Seek first God’s Kingdom and righteousness and all these things will be added to you”, **he’s saying the same thing God said In The Beginning:**\n\n* You don’t need to be anxious any more.\n* Don’t worry about the rules or the performance.\n* Take a break, slow down, stop trying to force it.\n* You have inherent worth, and that is found by living in relationship to the Truth that transcends your individual existence.\n\nSeek first the Kingdom is a far more revolutionary idea than the downfall of yet another empire.\nSeek first the Kingdom is not about finding it within *yourself* to become a better person.\n\n**This is the meaning of Seek First the Kingdom, according to the speaker:**\n\nGo to the Source and you’ll have everything you need. Don't worry about the rules of society, don't fall for those false promises. Instead, **seek and cling to the Heart behind the rules of morality, and you will find the meaning and satisfaction you're looking for.**\n\nDoesn't matter if you've been living oppressed for decades in a country without technology or if you're a teenager battling the effects of social media addiction in the comfort of your home in the suburbs - that's the answer. \n\n_____\n\n[^1]: Matthew 5:21-22\n"You have heard that the ancients were told, 'YOU SHALL NOT COMMIT MURDER ' and 'Whoever commits murder shall be liable to the court.’ ”But I say to you that everyone who is angry with his brother shall be guilty before the court; and whoever * says to his brother, 'You good-for-nothing,' shall be guilty before the supreme court; and whoever says, 'You fool,' shall be guilty enough to go into the fiery hell.\n\n[^2]: Matthew 6:24-34\n“No one can serve two masters; for either he will hate the one and love the other, or he will be devoted to one and despise the other. You cannot serve God and wealth.\nFor this reason I say to you, do not be worried about your life, as to what you will eat or what you will drink; nor for your body, as to what you will put on. Is not life more than food, and the body more than clothing? Look at the birds of the air, that they do not sow, nor reap nor gather into barns, and yet your heavenly Father feeds them. Are you not worth much more than they? And who of you by being worried can add a single hour to his life? And why are you worried about clothing? Observe how the lilies of the field grow; they do not toil nor do they spin, yet I say to you that not even Solomon in all his glory clothed himself like one of these. But if God so clothes the grass of the field, which is alive today and tomorrow is thrown into the furnace, will He not much more clothe you? You of little faith! Do not worry then, saying, 'What will we eat?' or 'What will we drink?' or 'What will we wear for clothing?' For the Gentiles eagerly seek all these things; for your heavenly Father knows that you need all these things.\n**BUT SEEK FIRST HIS KINGDOM AND HIS RIGHTEOUSNESS, AND ALL THESE THINGS WILL BE ADDED TO YOU.**\nSo do not worry about tomorrow; for tomorrow will care for itself. Each day has enough trouble of its own.”\n\n[^3]: See Genesis Chapter 1, but listen through https://www.bemadiscipleship.com/1 for an accurate cultural interpretation of the passage, as well as an explanation of the literary techniques and overall poetic meaning. \n\n[^4]: Mark 2:23-27\nAnd it happened that He was passing through the grainfields on the Sabbath, and His disciples began to make their way along while picking the heads of grain. The Pharisees were saying to Him, "Look, why are they doing what is not lawful on the Sabbath? And He said to them, "Have you never read what David did when he was in need and he and his companions became hungry; how he entered the house of God in the time of Abiathar the high priest, and ate the consecrated bread, which is not lawful for anyone to eat except the priests, and he also gave it to those who were with him?" \n**Jesus said to them, "The Sabbath was made for man, and not man for the Sabbath.** So the Son of Man is Lord even of the Sabbath."\n \N 14376 \N 443450 \N \N \N \N \N \N \N \N security \N ACTIVE \N 14.8021109549145 0 \N \N f 0 \N 0 224522420 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443511 2025-03-19 11:49:41.284 2025-03-29 22:39:51.466 \N I'm travelling (house sitting) in Portugal and this week will be a great opportunity to get to know the local bitcoiners and do some networking.\n\nI'll be attending to the events planned for the week.\n\n https://example.com/ 10519 443506 443506.443511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4812545854339 0 \N \N f 0 \N 0 94433721 0 f f \N \N \N \N 443506 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443469 2025-03-19 11:21:57.255 2025-03-29 22:39:51.467 \N I am not aware of the situation in the US, as a european in my thirties I decided to buy instead of renting, here rents are as expensive as fixed mortgages, it is better to pay same amount month by month and own it after a few years, instead of paying more and more expensive monthly payments to never own it. Maybe it is a vague and simplistic reflection but I think it influences to some extent https://example.com/ 20756 443313 442751.443313.443469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.27175692980787 0 \N \N f 0 \N 0 74036604 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443512 2025-03-19 11:50:03.601 2025-03-29 22:39:51.467 \N ![](https://d.pr/i/LelXJB+) https://example.com/ 15243 443490 443490.443512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.207921082048 0 \N \N f 0 \N 0 242992214 0 f f \N \N \N \N 443490 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443451 2025-03-19 11:05:53.407 2025-03-29 22:39:51.467 \N Literally OP\nhttps://media.tenor.com/3wtr1MRT_I8AAAAd/i-get-it-omg.gif https://example.com/ 3506 443336 443295.443336.443451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0750056068878 0 \N \N f 0 \N 0 24276785 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:16:44.456 f \N \N \N 0 0 0 0 0 0 0 443456 2025-03-19 11:08:46.772 2025-03-29 22:39:51.468 \N I run 2 lightning nodes on 2 different home servers. They both run a watchtower server and are watching over one another. I also have both nodes connected to Voltage's watchtower in case my home internet goes down. When I want to use lightning on mobile, I just use Zeus to access my nodes running at home. Zeus kicks ass by the way.\n https://example.com/ 12102 443441 441176.442104.443194.443441.443456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.23889643754159 0 \N \N f 203876733 \N 1 22706730 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443476 2025-03-19 11:31:02.406 2025-03-29 22:39:51.468 \N Here is it in one image.\nEach app was tested and positioned in a specific place, for its functionalities and powers.\nDon't believe me?\nTry for yourself ALL OF THEM for at least 1 month.\nThen we can talk.\n[![wallet-stairs.jpg](https://i.postimg.cc/mkmGw7BJ/wallet-stairs.jpg)](https://postimg.cc/RJJ8C63L) https://example.com/ 7580 443152 442751.443152.443476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.80634687105266 0 \N \N f 0 \N 0 53053563 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443481 2025-03-19 11:33:41.623 2025-03-29 22:39:51.468 \N I used to but then I stopped. Now I wear more subtle things for lower op sec like a fold card t-shirt or the stuff slush pool puts out. Only purists will know I’m a low key bitcoiner https://example.com/ 18529 443398 443295.443332.443371.443385.443387.443398.443481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.25942019398847 0 \N \N f 0 \N 0 162906094 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443472 2025-03-19 11:25:32.571 2025-03-29 22:39:51.469 \N @petertodd you're absolutely right, but in this context, I think intent matters. \n\nThe intent of their omissions (what you call a "lie") is to abstract. I don't think it's malicious intent to deceive or steal. \n\nThey are trying to abstract away on-chain and LN fees.\n\nIt's a hard problem.\n\nIf/when solved, the UX will/could be better than any other wallet.\n\nThey are obviously trying. https://example.com/ 646 443334 428021.443334.443472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.4056461853252 0 \N \N f 226833801 \N 1 127269944 0 f f \N \N \N \N 428021 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443478 2025-03-19 11:31:49.523 2025-03-29 22:39:51.469 \N Ah. RED or Network is the same. Sorry about that. Sometimes I use RED or Network. Cause RED is in spanish and Network i'm English https://example.com/ 10981 443386 443372.443386.443478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.40190633639048 0 \N \N f 154899691 \N 2 155995704 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443464 2025-03-19 11:20:02.091 2025-03-29 22:39:51.469 \N How many sats do you earn in fees on average in a day? https://example.com/ 6202 443462 443462.443464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8891066076708 0 \N \N f 0 \N 0 128244372 0 f f \N \N \N \N 443462 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443466 2025-03-19 11:21:07.844 2025-03-29 22:39:51.47 \N That's a good point about connection @k00b. This is the argument for free trade leading to lower likelihood of war. Its not an aspect of bitcoin I hear talked about. If we de-nationalize money. If we take it out of the hands of the state/s. If it is owned by all and controlled by none would that not lead to a better world? A more just world?\n\nIf we remove the ability of politicians to prevent trade and commerce we could see more connection between people. Most people from nation A have no beef with a person from nation B. The governments have conflicts over power. Yet, the plebs pay for the wars with their lives and wealth. Look at Russia and Ukraine. The real losers are the plebs in both countries. The winners are those in power and those that build the weapons of war.\n\nThings like this are why I'm so passionate about bitcoin. For the first time in my life I can see a future with less war and conflict. I don't think it will end conflict or war but even if it reduces it by even 25% that would be worth it. https://example.com/ 8004 443462 443462.443466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6271825565797 0 \N \N f 0 \N 0 38132026 0 f f \N \N \N \N 443462 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443513 2025-03-19 11:50:28.927 2025-03-29 22:39:51.47 \N think for yourself, and always be independent. https://example.com/ 1428 443506 443506.443513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.4176805272137 0 \N \N f 0 \N 0 139127367 0 f f \N \N \N \N 443506 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443471 2025-03-19 11:25:30.905 2025-03-29 22:39:51.47 \N I look forward to looking at their numbers, if they grow and if they have a raw margin at all\n\nI could see them building a Google/OpenAI competitor with proprietary data advantage. But realistically, it's just an unprofitable website that will have to sell out like crazy to stay alive once the funding runs out https://example.com/ 7558 443221 442751.443221.443471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.16980817444134 0 \N \N f 0 \N 0 40495474 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443498 2025-03-19 11:43:25.027 2025-03-29 22:39:51.466 \N Erik Voorhees at the Bitcoin 2013 Conference: [The Role of Bitcoin as Money](https://www.youtube.com/watch?v=H2YllvbJo6g)\n\n https://example.com/ 16839 443204 443187.443204.443498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3524805653698 0 \N \N f 0 \N 0 195067932 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443493 2025-03-19 11:41:29.846 2025-03-29 22:39:51.466 \N This right here is exactly the thing that social media could be but hasn't figured out how to be, at scale: finding connection, sharing stuff that matters, finding a tribe or founding a tribe, having encounters with people around the world that can mean something.\n\nHopefully you're proud of the role you're playing in building that. It's important. https://example.com/ 2195 443459 443399.443459.443493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1445377266937 0 \N \N f 0 \N 0 49700952 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443494 2025-03-19 11:41:32.025 2025-03-29 22:39:51.466 \N I've ordered some takeout and will camp out in my hotel room until I finish my "Why you shouldn't use Stacker News" talk.\n\nI might sneak out for @supertestnet's spacechains workshop.\n\nThen hopefully I've gotten far enough on the talk that I can go out and party. https://example.com/ 16301 443236 443187.443236.443494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7353521939627 0 \N \N f 0 \N 0 32701668 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443691 2025-03-19 13:19:15.165 2025-03-29 22:39:51.471 \N ![img](https://i.ibb.co/M2dN42X/Screenshot-20221024-164217.jpg) https://example.com/ 12277 443259 441695.441851.441862.441878.443259.443691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.32350367448233 0 \N \N f 215450177 \N 2 57237021 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443488 2025-03-19 11:39:48.199 2025-03-29 22:39:51.471 \N You got a smart dad!!\n\nImagine all your toys. And all the toys of all your friends. Imagine all the toys of all the kids in the world!\n\nYou see that?\n\nMaybe there are millions of kids in the world. Many have toys. Millions of toys. Rooms full of toys. Big containers with toys. Factories full of toys.\n\nNow toys get created every Christmas right. The last 50 years before you were born toys got created every year! There are so many toys and so many toys get created every year. In the future when you grow up as old as your dad there will be many many toys created. They will never stop creating toys. Your sons and daughters when you have your own kids will have toys. Maybe you will start a tooy factory yourself and make money creating toys.\n\n\nNow imagine there are only 21 special toys. These are very very hard to get. And nobody can make them. All kids are looking for these toys.\n\nBecause they can’t just be made. You can ask your dad for these 21 toys but your dad wouldn’t easily find one.\n\nCan you imagine all the kids wanting one of these 21 toys?\n\nBut the most kids in the world do not yet know about these special toys. Most kids are just asking their dads for the normal toys at Christmas. The toys that anybody can make.\n\nSome dads are special. Some dads are smart. Your dad is very smart. He is not like the other dads buying all those other toys for their kids.\n\nNo your dad has found one part of one of the 21 super toys for you.\n\nWhat you got is bitcoin. That is one of the 21 toys. And the piece you got is called a sat. It is a piece of one of the only 21 toys that will ever be created.\n\nLucky you!!!\n\nAre you going to ask your dad next time to buy one of the ordinary toys everybody got? Or are you going to ask your dad to buy you another sat thatbis another piece of the 21 super toys?\n\nGood luck. We here all are collecting sats a piece of the 21 super cool toys in the world.\n https://example.com/ 16667 443142 442751.443142.443488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7841915228589 0 \N \N f 0 \N 0 228449185 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443503 2025-03-19 11:45:18.54 2025-03-29 22:39:51.472 \N One of my favorite things about SN is that we can each discover where we fit into the ecosystem: i.e. where we are adding value to the community. \n\nSome people make great original posts, like this one, and others drive engagement by responding and keeping the conversations going. Other people are great at surfacing valuable resources and sharing those, while others help out with development of the site itself.\n\nSo far we manage all of that with very little toxic internet culture seeping in.\n\nIt's no surprise that many of us find ourselves spending more and more time here. https://example.com/ 20776 443422 443399.443422.443503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7461858116094 0 \N \N f 324478635 \N 2 191338308 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443522 2025-03-19 11:57:05.597 2025-03-29 22:39:51.472 \N ![Amazing gif](https://media.giphy.com/media/AVBo5eqFXd3SU/giphy.gif) https://example.com/ 16653 443495 443495.443522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.0157748905836 0 \N \N f 0 \N 0 178055550 0 f f \N \N \N \N 443495 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443497 2025-03-19 11:43:19.425 2025-03-29 22:39:51.472 \N From what i understand it takes 3 years. They say the first year it sleeps, the next year it creeps and the third year it leaps. https://example.com/ 17714 443490 443490.443497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9971182243439 0 \N \N f 0 \N 0 22671323 0 f f \N \N \N \N 443490 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443506 2025-03-19 11:47:25.728 2025-03-29 22:39:47.91 If Joe Biden steps aside, who could replace him? "An unmitigated disaster" by one Democrat to "slow-motion car crash" by another just made it obvious that Biden needs to be replaced.\n \nAnd now his gaffe at the NATO conference has confirmed all democrats that Biden is no match to fight against a very young Trump!\n\nAs it's becoming more likely that Biden will have to step aside or may be ditched, it's time SN makes a call and poll for Who their favourite democratic candidate is?\n\nSo, announce it in our own poll, SN!\n\n**Who would you like to see step in as a democratic candidate if Biden steps aside or thrown away abruptly?**\n\n \N 12490 \N 443506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.26518464156228 0 \N \N f 429586534 \N 3 2141143 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:21:37.151 f \N \N \N 0 0 0 0 3 0 0 443547 2025-03-19 12:12:48.369 2025-03-29 22:39:51.466 \N I admire your patience but I advise you to let it go, it's a lost cause.\n\n\nWe bitcoiners will build our alternative platforms and stop begging others for permission. https://example.com/ 623 443540 443388.443454.443540.443547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6733524327402 0 \N \N f 0 \N 0 81845916 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443508 2025-03-19 11:47:41.072 2025-03-29 22:39:51.466 \N Unbanked and remittances. Inflation in undeveloped countries that have no access to USD. https://example.com/ 19668 443495 443495.443508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.415222178373 0 \N \N f 0 \N 0 199011449 0 f f \N \N \N \N 443495 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443530 2025-03-19 12:02:56.49 2025-03-29 22:39:51.467 \N yeah boiling it down to the rich vs. poor seems to translate better in my experience too. Once hooking them there it's easier for me to draw in environmental points too, which also seem to resonate https://example.com/ 21139 443061 442981.443061.443530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3190234083783 0 \N \N f 0 \N 0 237773819 0 f f \N \N \N \N 442981 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443526 2025-03-19 12:00:01.931 2025-03-29 22:39:51.467 \N Losing bitcoin IOUs to a cefi scam.\nLosing a lot of fiat to comply with certain regulations turned me Ancap / agorist and even more of a bitcoiner. https://example.com/ 695 443205 443187.443195.443200.443205.443526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1971262379117 0 \N \N f 173089926 \N 1 245516954 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443576 2025-03-19 12:24:00.437 2025-03-29 22:39:51.467 \N Honestly, I'm not a builder but I am working on increasing my knowledge so that when the time comes for my friends to want to learn and be orange pilled, I will be ready.\n\nRight now I am just seen as a lunatic. I hope to become someone who people look to for onboarding when the time is right :) https://example.com/ 16808 443528 443528.443576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5177151077557 0 \N \N f 0 \N 0 245335954 0 f f \N \N \N \N 443528 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443504 2025-03-19 11:45:42.177 2025-03-29 22:39:51.467 \N Just because the Fiat country printed an extra trillion does not mean that that trillion is in fact worth a trillion. https://example.com/ 848 443477 443197.443473.443477.443504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3320179675062 0 \N \N f 51512996 \N 1 94877482 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443556 2025-03-19 12:16:07.847 2025-03-29 22:39:51.467 \N > As a store of value, they're worse than btc\n\nNo, they're different. They're a better short term value for people who need to store fiat. That's a perfectly valid use case.\n\nLike it or not, a lot of people have fiat-denominated obligations that they need to be able to reliably pay. The volatility of BTC relative to their fiat currencies is expensive to deal with. https://example.com/ 2326 443187 443187.443556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.87780316312098 0 \N \N f 0 \N 0 167784893 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443542 2025-03-19 12:10:42.694 2025-03-29 22:39:51.467 \N Day 416 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 3456 443518 443489.443501.443518.443542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2770221179272 0 \N \N f 0 \N 0 211827800 0 f f \N \N \N \N 443489 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443630 2025-03-19 12:46:46.042 2025-03-29 22:39:51.467 \N I've never purchased one, and right now I don't plan to. But the wannabe trader in me says that the environment is showing one thing while the narrative is largely in denial -- which usually means to buy in.\n\nThat said, I believe that if a thing can be done with Bitcoin, someone will do it. IMO this is not going away and will continue to wreck the mempool in the near term, but will drive adoption of layer 2 solutions like Lightning.\n\nI guess I'm in the "No, Optimistic" camp, because it's not something that interests me much personally, and I'm optimistic that the Bitcoin community will solve for usability issues long-term. https://example.com/ 15588 443610 443545.443610.443630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7802438452709 0 \N \N f 0 \N 0 69459753 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443540 2025-03-19 12:09:17.621 2025-03-29 22:39:51.467 \N Moving HQ to Es is a smart move, I do not deny that. https://example.com/ 20602 443454 443388.443454.443540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7487278086992 0 \N \N f 81845916 \N 1 11144798 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443544 2025-03-19 12:11:42.877 2025-03-29 22:39:51.467 \N Getmash currently is working on this.\n\nWay back in 2020 we attempted this with Satotious(now defunct). It was a paywall which would let the users choose between viewing an ad or paying with lightning. The issues we hit were:\n\n1. Lightning was super new back then, no easy on/off ramps. -- better now with big exchanges doing lightning (kraken, binance)\n2. My assumption was that users may not want to pay for things, actually they were cool with paying and it was the publishers who didn't want Bitcoin.\n3. Big publishers who use paywalls( like wsj, New York times etc) are really conservative. Adding a pay per article might reduce their membership numbers.\n4. Big publishers who relied on ads were scared of losing users if they added a paywall.\n5. Small/new publishers(think hobbyist blog) were trying to grow into big publishers, adding a paywall was too much user friction for too little benefit (they might earn a small amount but would not get many users and grow)\n\nI still think micro payments is way better than ads(in a way ads are micropayments). Hopefully with more lightning adoption, we will have a web with less ads and tracking! https://example.com/ 18529 443538 443531.443538.443544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5853125249063 0 \N \N f 42383343 \N 1 207741827 0 f f \N \N \N \N 443531 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443550 2025-03-19 12:14:35.454 2025-03-29 22:39:47.91 Throwback Thursday - Share an Interesting Historical Event It's time for a history lesson.\n\nLet's hear some historical events that you think other stackers should know about. Any topic counts.\n\nFeel free to share events that happened in your home country, things you experienced personally, or simply share some lessons you learned from watching historical events unfold from afar.\n\nSend your best 👇 \N 4989 \N 443550 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 16.2118428117781 0 \N \N f 0 \N 0 137442580 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443558 2025-03-19 12:17:11.153 2025-03-29 22:39:51.467 \N [![warren-sn.jpg](https://imgprxy.stacker.news/S9bRxIJFrNTK1ajtTKwrRTIy2xcZpOaKifDEsaTlr0c/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvZFY3WnhNUmYvd2FycmVuLXNuLmpwZw)](https://postimg.cc/gxW0xTTy) https://example.com/ 1740 443544 443531.443538.443544.443558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.16979326441928 0 \N \N f 0 \N 0 42383343 0 f f \N \N \N \N 443531 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443564 2025-03-19 12:18:56.102 2025-03-29 22:39:51.468 \N Don't rug pull my $1.53 k00b!\n\nI'm just fucking with you. Hope the upgrade goes without a hitch. https://example.com/ 17953 443445 442084.442600.443235.443445.443564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3175459664878 0 \N \N f 0 \N 0 118509286 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443567 2025-03-19 12:19:33.9 2025-03-29 22:39:51.468 \N In my morning routine of reading stuffs, [found this post](https://stacker.news/items/98527) by @TomK which in short terms explain that free speech price is the truth. The difference between Stacker News and others is very simple: here, if you want to talk, there's a price and incentivize not to talk bullshit and stupidity. In [Stacker News, right there in their inception was](https://stacker.news/story) **"talk cheap is very expensive"**.\n\nI fell in love of this site since in early days and enjoy everyday. Happy friday comrades! https://example.com/ 940 443288 443288.443567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1161001998227 0 \N \N f 0 \N 0 177274137 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443562 2025-03-19 12:18:39.531 2025-03-29 22:39:51.468 \N This kind of content is exactly what "open sourcing" the BITCOIN channel was hoping to attract. Hope we see more of it from some people on stacker news. Cheers, to nerd2ninja for the read through, and peter todd for the write up.\n\nIf you are reading this and want to make a similar video upload to http://youtube.com/BITC0IN make a pull request like this one. It got the above video uploaded: https://github.com/Fiach-Dubh/BITCOIN-YouTube/issues/12 https://example.com/ 15326 443557 443295.443548.443557.443562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.90916715227645 0 \N \N f 0 \N 0 26193885 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443566 2025-03-19 12:19:22.061 2025-03-29 22:39:51.469 \N Very cool.\n\nMarket settlement is going to be a very interesting problem to solve in future versions.\n\nI wonder if you could nominate an npub (or have an m of n npub model) to agree on the outcome. Then anyone participating could:\n* Choose a market based on the npub they most trust\n* Vs. the market with most liquidity\n\nMarket settlement then only possible based on nominated npub signing a settlement message with their nsec.\n\nAlso, will be great to get stats working right. I love to randomly check Predictit, Manifold, and (this is the most shitcoiner thing I do) Polymarket. https://example.com/ 21631 443006 442084.443006.443566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5693347520249 0 \N \N f 0 \N 0 240977064 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443552 2025-03-19 12:15:10.294 2025-03-29 22:39:51.469 \N Is this the saloon? so many cowboy hats in here 🤠 https://example.com/ 7847 442084 442084.443552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.79032333581294 0 \N \N f 244278370 \N 1 232384129 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443570 2025-03-19 12:20:36.224 2025-03-29 22:39:51.469 \N Day 228 of snailposting everyday 'til BTC hits $100k.\n\n...and 28 push-up(s).\n\n__@_'-' https://example.com/ 3686 443552 442084.443552.443570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1790916486209 0 \N \N f 0 \N 0 244278370 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443585 2025-03-19 12:30:08.685 2025-03-29 22:39:51.469 \N I think is the WEB itself... 1991 August 6.\nThe first WWW page that ever existed (and is still online), by Tim Barbers-Lee\nhttp://info.cern.ch/hypertext/WWW/TheProject.html\n\nUntil then internet was just a network of sending files to each others, nothing special for publishing stuff. https://example.com/ 20058 442904 442904.443585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8677127766574 0 \N \N f 0 \N 0 124745116 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443594 2025-03-19 12:34:29.481 2025-03-29 22:39:51.469 \N I'm gonna cop out of giving a specific answer for 2 reasons: 1) everything I have any familiarity with is at an incredibly speculative stage. if they work at all, they will outperform bitcoin by orders of magnitude, but I have no idea if that's gonna happen! but also 2) it sets up an interesting point that is very heavily related to my new company and that I will speak and write about a lot in the coming months: the way you outperform bitcoin is by running a business on a bitcoin standard and generating a naturally bitcoin-denominated yield. \n\nmy professional mission for the next decade at least is to make this as easy as possible and hence make it increasingly natural for people to think in terms of bitcoin rather than dollars. bitcoin's bitcoin-denominated return is zero, so any business on a bitcoin standard with a positive return on capital will "outperform bitcoin" on a technicality. so the point I'm making is that this is a better aspiration than happening to pick something that does well and comparing both to dollars. so long as dollars are still in the mix, there is more work to be done. https://example.com/ 2519 443586 443399.443586.443594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6338003097678 0 \N \N f 0 \N 0 219664406 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443591 2025-03-19 12:32:40.942 2025-03-29 22:39:51.47 \N ![Screenshot 2023-12-08 at 3.43.39 PM.png](https://m.stacker.news/7306) https://example.com/ 8870 443465 443462.443465.443591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5762936864162 0 \N \N f 0 \N 0 191307984 0 f f \N \N \N \N 443462 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443600 2025-03-19 12:36:56.007 2025-03-29 22:39:51.47 \N Im surprised Germany's still above the 50%-mark. https://example.com/ 13798 443589 443589.443600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1005542991683 0 \N \N f 0 \N 0 74742495 0 f f \N \N \N \N 443589 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443584 2025-03-19 12:29:48.26 2025-03-29 22:39:51.47 \N https://imgprxy.stacker.news/WDVpEm8YJNY6iFkJRaumm7Rsjp4EehwpEOQ966VNtes/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYTAuZ2lwaHkuY29tL21lZGlhL2QzbWxFN3VoWDhLRmdFbVkvZ2lwaHkuZ2lmP2NpZD0yMTU0ZDNkN21odjRmZzVoczB0bWFudTk5eTBmb2wyeHh4NDFidjg2MnhuZHZpYnMmZXA9djFfZ2lmc19zZWFyY2gmcmlkPWdpcGh5LmdpZiZjdD1n https://example.com/ 20588 337252 337252.443584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.146564001467553 0 \N \N f 174225410 \N 1 205794941 0 f f \N \N \N \N 337252 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443595 2025-03-19 12:35:03.503 2025-03-29 22:39:51.47 \N I'm playing a new game on SN:\n\nSpend all your sats in a day and then see how many sats you get back. If you don't get any sats back, you're out. The goal is to "stay alive" as many days as possible. So it's basically a survival game.\n\nMaybe I am late to the party. https://example.com/ 4314 443272 443272.443595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2240514463512 0 \N \N f 0 \N 0 243428254 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443597 2025-03-19 12:35:44.044 2025-03-29 22:39:51.47 \N you guys did a LOT to push the state of the art on noncustodial financial services. Thanks for all the hard work! I think I'll be missing itchysats forever. https://example.com/ 964 443437 443295.443437.443597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.914880967336 0 \N \N f 207397608 \N 2 123905212 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443596 2025-03-19 12:35:06.79 2025-03-29 22:39:51.471 \N Tony Giorgio, one of a kind\nProof-of-Work, has to be mined\nYour transaction is invalid, unless it is signed\nSounds money for all, the incentives aligned!\n https://example.com/ 5175 443534 443130.443534.443596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2980132601853 0 \N \N f 52238613 \N 1 121370347 0 f f \N \N \N \N 443130 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443606 2025-03-19 12:38:58.428 2025-03-29 22:39:51.471 \N k00b in 2021: \n![](https://m.stacker.news/35744)\n\nRespect! https://example.com/ 14650 442330 441695.442330.443606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.08405537983559 0 \N \N f 0 \N 0 43844480 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443609 2025-03-19 12:40:04.983 2025-03-29 22:39:51.471 \N but that doesnt solve the problem of being ran over by a bus https://example.com/ 19655 443116 443099.443116.443609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.729284038356 0 \N \N f 0 \N 0 219571816 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443644 2025-03-19 12:48:55.681 2025-03-29 22:39:51.471 \N I teach middle school students English for a living and will thus answer this question from the lens of English educators.\n\nI find myself increasingly relying on ChatGPT as a tool to complement my teaching and learning. Just yesterday, I was unceremoniously tasked to come up with a reading comprehension exercise for the graduating students in my school. The tried-and-tested method would be to look for suitable articles in periodicals like Readers’ Digest, but I decided that writing my own passage would save me much time and hassle. So I wrote one personal recount on the way home.\n\nThis morning, I logged on ChatGPT, asking it to make “suggested edits to my writing” and give inputs like readability level and word count. ChatGPT edited my writing within minutes. I had no qualms using it to set comprehension questions given that I was the creator. I see ChatGPT as polishing a raw diamond. \n\nIn fact, I think ChatGPT will lead to an increased focus in writing skills because we all know that if we give it rubbish inputs, we will yield garbage outputs. I am keen to hone my skills in prompt engineering and have already prepared materials to teach my students about how they can get ChatGPT to “TL;DR” and “ELI5” (literally the prompts that I use) articles from legitimate sources. I’m having more fun at work! https://example.com/ 20734 443399 443399.443644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.69421515252651 0 \N \N f 0 \N 0 172345483 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443612 2025-03-19 12:41:33.581 2025-03-29 22:39:51.472 \N Option to "show results" on a poll without voting\n\nKeep up the awesome work! https://example.com/ 16571 443596 443130.443534.443596.443612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8181776705625 0 \N \N f 0 \N 0 52238613 0 f f \N \N \N \N 443130 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443608 2025-03-19 12:39:41.741 2025-03-29 22:39:51.472 \N Correct. They won't stop until they cause chaos. In the Sovereign Individual, of which I have a summary [here on StackerNews](https://stacker.news/items/49720), the playbook is as follows:\n\n- The economic consequence of this transition crisis will probably include a one-time spike in real interest rates. Debtors will be squeezed as long-term liabilities contracted under the old system are liquidated.\n- Governments facing serious competition to their currency monopolies will probably seek to underprice the for-fee cybercurrencies by tightening credits and offering savers higher real yields on cash balances in national currencies.\n- Higher real rates around the world will spur liquidation of high-cost, unproductive activities and temporarily reduce consumption.\n- The deflationary environment may drag on for some time, with more adverse consequences in the high-cost industrial economies of North America and Western Europe than in the low-cost economies in Asia and Latin America. https://example.com/ 16939 443490 443490.443608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7939694382459 0 \N \N f 0 \N 0 170037794 0 f f \N \N \N \N 443490 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443622 2025-03-19 12:45:34.804 2025-03-29 22:39:51.472 \N One step wallet connect for man, a giant leap for non-custodial wallets! It's really cool how nostr almost accidentally solves the async payment issue.\n\nIf you like it more technical:\n```\n## Theory of Operation\n\n1. The user wants to connect their wallet to an app. The app provides a QR code or\nother means of connecting to the app. The QR code contains a `nostr+walletauth://`\nURI that contains the app's public key, the relay to communicate over, and a list of\nfunctions that the app requires.\n2. The user scans the QR code and their wallet prompts them the required functions\nand asks them to confirm that they want to connect to the app.\n3. On confirmation, the wallet generates a new key pair and sends the public key to\nthe app in a confirmation event.\n4. With the combination of both keys, the wallet and the app both will generate the\nsame connection URI. They can now use NWC to communicate.\n```\n\nIt's hard to imagine how it could get any easier. https://example.com/ 998 443554 443554.443622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.30254083273181 0 \N \N f 244001462 \N 1 27515624 0 f f \N \N \N \N 443554 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443615 2025-03-19 12:42:13.704 2025-03-29 22:39:51.472 \N trying to help people understand dual-funding + splicing as a new way of thinking about lightning https://example.com/ 18114 443599 443295.443312.443599.443615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.02472769427702 0 \N \N f 0 \N 0 177366433 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443614 2025-03-19 12:42:08.703 2025-03-29 22:39:51.473 \N I like how your education isn't adequate for the rudiments of spoken language, but it _is_ adequate to write advanced distributed systems that explore frontier topics in sociology and economics.\n\nI'm afraid you will have a very hard time finding a support group, should you ever require one. https://example.com/ 628 443593 443593.443614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4837091010147 0 \N \N f 452100682 \N 6 115534953 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443705 2025-03-19 13:24:59.21 2025-03-29 22:39:51.467 \N I got really tired of trying to make zeus or bluewallet work over tor to talk to bitcoin and lightning services running at home. Was thinking about setting up tailscale for everything. Found (nebula)[https://github.com/slackhq/nebula] which looks a lot like an open source tailscale (not using wireguard, but still using NOISE-based cryptography; interesting and I wonder why they're not just doing wireguard. need to go read the code and do some poking). Set it up last night and so far its working great. I have a "lighthouse" (host that's used for peer discovery and NAT traversal) running on a $3/month ec2 instance. It's *just* used for initial connnection bootstrapping (like what tailscale does) and then from there it's all mesh. I have my phone able to get to my lightning node and bluewallet on my phone able to get to my electrs instance, etc. Going to play with it a bunch over the next few weeks. Could be a really nice solution for folks running services at home that need an easy multi-device VPN https://example.com/ 6393 443683 443683.443705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3341146443314 0 \N \N f 0 \N 0 50660371 0 f f \N \N \N \N 443683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443631 2025-03-19 12:46:49.055 2025-03-29 22:39:51.467 \N Rewards are definitely better than expected. https://example.com/ 21406 443288 443288.443631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0495637519137 0 \N \N f 0 \N 0 177239721 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443632 2025-03-19 12:47:05.77 2025-03-29 22:39:51.473 \N - [research and testing into reliability path finding with a bunch of mobile LN wallets](https://github.com/hsjoberg/blixt-wallet/issues/1065) - ongoing testing.\n- [Testing with raspiblitz x64 image](https://github.com/openoms/raspiblitz/tree/amd64/alternative.platforms#amd64-image) to be installed, synced on different types of hardware (non-RPi), with different disks, different sources of sync for blocks etc. This one takes a lot of patience... and time. https://example.com/ 739 441070 441070.443632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5375175719829 0 \N \N f 0 \N 0 35407731 0 f f \N \N \N \N 441070 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443653 2025-03-19 12:53:55.169 2025-03-29 22:39:51.473 \N For anyone interested in learning more about self-hosting privately, this YouTube channel has some great tutorials: https://youtube.com/c/402PaymentRequired https://example.com/ 6030 443637 439137.443637.443653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.9296255911914 0 \N \N f 0 \N 0 163961427 0 f f \N \N \N \N 439137 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443634 2025-03-19 12:47:18.487 2025-03-29 22:39:51.473 \N Privacy section starts at 34:43 https://example.com/ 7760 440891 440891.443634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.57371738069354 0 \N \N f 0 \N 0 97505295 0 f f \N \N \N \N 440891 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443686 2025-03-19 13:17:00.816 2025-03-29 22:39:51.467 \N yea this is super fishy. https://example.com/ 19087 443681 443577.443613.443669.443676.443680.443681.443686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.45320824959094 0 \N \N f 0 \N 0 90226803 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443638 2025-03-19 12:47:54.158 2025-03-29 22:39:51.467 \N If you've not read Dune... Then you have some work to do. \n\nWithout dune there's no star wars or harry potter or a bunch of stuff. \n\nIt's a fantastic read. https://example.com/ 1823 437631 437631.443638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.78736530131302 0 \N \N f 0 \N 0 218230395 0 f f \N \N \N \N 437631 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443762 2025-03-19 14:02:50.362 2025-03-29 22:39:51.467 \N More. Of. This. Please. \n\nThis is the true spirit of the bitcoin community. \n\nWe need critical thinking and opposing viewpoints. The echo chamber is real. The blind spots are real.\n\nGuys - bitcoin is going to face off against **The Most Powerful Government / Military In The World ™ **. That’s unprecedented. That’s not going to be pretty. \n\nAND \n\nAs bitcoin is adopted, hacking is going to be increasingly incentivized. If everyone has a hot wallet, then a successful hack or phish is an instant irreversible monetary reward. That’s unprecedented. That’s not going to be pretty.\n\nIf bitcoin wins, it’s not going to go well for A LOT OF PEOPLE. \n\nThere’s serious potential if not certainty for mass social unrest. \n\nIt’s possible to be a bitcoin sheep. Don’t be. https://example.com/ 12368 443746 441695.441851.441862.441878.443259.443691.443746.443762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8958513160915 0 \N \N f 0 \N 0 43033001 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443640 2025-03-19 12:48:04.812 2025-03-29 22:39:51.468 \N incredible how bitcoin continually takes FUD, flips it on its head, and then uses it to its advantage. gives me a good chuckle every time i see the Skull of Satoshi, Riot's CO2 video, or a #StopThePresses post\n\nanti-fragile as f https://example.com/ 12102 430854 430854.443640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8460956091965 0 \N \N f 0 \N 0 54036094 0 f f \N \N \N \N 430854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443650 2025-03-19 12:51:36.634 2025-03-29 22:39:51.467 \N Constantly switch web clients. Coracle best so far\n\n> What is on the top of your Nostr feature wishlist?\n\n - faster initial loading (might need a NIP for relays to expose data via REST?)\n - better efficiency/consistency, connecting to one relay should be enough unless you're actively being censored\n - marketplace for algos https://example.com/ 5036 442084 442084.443650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.261200088871 0 \N \N f 0 \N 0 66611743 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443643 2025-03-19 12:48:36.712 2025-03-29 22:39:51.467 \N As long as SN doesn't get flooded with LN invoices and spam. I feel like they serve different purposes. Maybe there could be a Nostr tab at the top to differentiate. SN could also enable login with Nostr key. https://example.com/ 11523 429803 429803.443643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6700020162372 0 \N \N f 151534716 \N 1 138482914 0 f f \N \N \N \N 429803 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443654 2025-03-19 12:54:22.863 2025-03-29 22:39:51.467 \N Well, here's a generator of SSNs. They didn't need to steal them... \n```js\nfor (let i=0;i<1e10;i++) { console.log(i) }\n``` https://example.com/ 4314 443643 429803.443643.443654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.311859365083 0 \N \N f 0 \N 0 151534716 0 f f \N \N \N \N 429803 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443642 2025-03-19 12:48:20 2025-03-29 22:39:51.467 \N I want to understand ordinals better. My node is still syncing so still limited by that, but interested in inscriptions and pixelart. \n\n https://example.com/ 1426 432247 432247.443642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0311470308645 0 \N \N f 0 \N 0 46226631 0 f f \N \N \N \N 432247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443649 2025-03-19 12:50:59.443 2025-03-29 22:39:51.468 \N Fair. Make me a SN millionaire and I'll start kilo-zapping too. https://example.com/ 7674 443116 443099.443116.443649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.46396261861399 0 \N \N f 0 \N 0 153595757 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447176 2025-03-21 17:01:15.431 2025-03-29 22:39:51.468 \N Yes, this goes back to my original post, no one builds on top of CLN because lnd is so much better. CLN shouldnt waste time building an app, they should spend time making it usable so then 100 apps are built on top of it. https://example.com/ 12749 447175 446456.446725.447175.447176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6814514658272 0 \N \N f 0 \N 0 66106463 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443657 2025-03-19 12:54:35.456 2025-03-29 22:39:51.468 \N I've had similar experiences in the Caribbean. \n\nTo me it's not just that faking friendliness feels gross, but being treated purely as an economic opportunity by someone else is literally dehumanizing. The confronting part, though, is recognizing that I am a big economic opportunity for many people and really through no fault of theirs or credit of mine. Considering their situation, it's no wonder they would take the strategy they're taking. https://example.com/ 16808 443386 443372.443386.443657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6398707005213 0 \N \N f 0 \N 0 124567135 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443677 2025-03-19 13:11:28.068 2025-03-29 22:39:51.468 \N I did the go into debt to buy bitcoin and tbh I regret it. It has been mostly profitable but the mental cost isn't worth it. https://example.com/ 20291 443484 443372.443386.443478.443484.443677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5118623277767 0 \N \N f 0 \N 0 21837360 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443670 2025-03-19 13:05:15.207 2025-03-29 22:39:51.468 \N Mining centralization is still top of mind for me. It's real, it's happening, and it is not accounted for in the code or game theory. In the past, some miners have simply chosen out of conscience to refrain from growing too large.\n\nThe argument that "they won't get too big because that will ruin faith in the system and devalue the currency they get paid in" is weak. https://example.com/ 679 443667 443667.443670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.30241810628906 0 \N \N f 237525597 \N 2 248664620 0 f f \N \N \N \N 443667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443682 2025-03-19 13:14:09.906 2025-03-29 22:39:51.468 \N Cow bell! https://example.com/ 8037 443679 443667.443670.443679.443682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6613561080334 0 \N \N f 0 \N 0 108183801 0 f f \N \N \N \N 443667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443661 2025-03-19 12:58:14.295 2025-03-29 22:39:51.468 \N I'm puzzled. You make excellent arguments as to why bitcoin has nothing to fear from CBDCs. In fact, your predictions may speed adoption of bitcoin. Then you claim bitcoiners fear CBDCs. I think this might be a straw man you're propping up here. It's not fear. I'ts the fundamental philosophy that opposes the authoritarian state. Bitcoin wins with or without CBDCs. You'll find that old time bitcoiners are not obsessed with price, "number go up"ism. They genuinely care about the plight of the powerless and the betterment of society. You discover bitcoin hoping to get rich, and end up hoping to change the world. https://example.com/ 15336 443587 442982.443581.443587.443661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.65255733483491 0 \N \N f 0 \N 0 84965408 0 f f \N \N \N \N 442982 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443668 2025-03-19 13:03:25.078 2025-03-29 22:39:51.468 \N In the monero world there are p2p decentralized mining pools (no central pool operator).\n\nIdk why they aren't widespread in Bitcoin yet - I thought we used shitcoin as a good playing ground to reuse or refuse good/bad ideas. I haven't thought through the incentives and the cryptography yet. Maybe somebody else here has and can illuminate us on the pros and cons https://example.com/ 980 443099 443099.443668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2986061537584 0 \N \N f 0 \N 0 233698849 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443673 2025-03-19 13:09:14.176 2025-03-29 22:39:51.468 \N $100,000.01 https://example.com/ 12245 443272 443272.443673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5681545764602 0 \N \N f 0 \N 0 87066702 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443721 2025-03-19 13:37:55.134 2025-03-29 22:39:51.468 \N https://blog.keys.casa/bitcoin-etfs-stocks-versus-self-custody/\n\nJameson Lopp on bitcoin etfs https://example.com/ 20829 443583 443583.443721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6693098147497 0 \N \N f 0 \N 0 38485676 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447216 2025-03-21 17:41:08.778 2025-03-29 22:39:51.468 \N What'd be even cooler is creating your own categories on a whim https://example.com/ 16948 447213 447148.447213.447216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9551688668943 0 \N \N f 482292142 \N 2 2077402 0 f f \N \N \N \N 447148 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443690 2025-03-19 13:19:12.055 2025-03-29 22:39:51.468 \N > Now do some PoW or wait until we're ready :)\n\nSpeaking of which, if you're really determined to use GraphQL as your API, please be ready to charge a few sats per API call. Because if not some moronic idiot is going to think it's funny to flood the site with compute-expensive calls.\n\n*Every* site I know of that exposes a GraphQL API is eventually forced to either (a) put users through CAPTCHA-hell (b) do browser fingerprinting, usually via cloudflare, (c) some kind of real-world identity linkage like SMS verification, or (d) some combination of the above.\n\nI would hate to see that happen to SN.\n\nI probably can't convince you that exposing GraphQL to anonymous callers is a bad idea, so hopefully I can convince you to be ready with something less awful than (a)(b)(c)(d) when the inevitable result occurs.\n\nThanks again for creating this awesome site. https://example.com/ 9494 443597 443295.443437.443597.443690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.39874218561636 0 \N \N f 182639216 \N 1 24758392 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443697 2025-03-19 13:21:43.017 2025-03-29 22:39:47.91 I need a debit card for bitcoin Hello everyone I'm looking for a debit card that can be topped up with bitcoin in the EU. I'm aware that this isn't the ideal way to spend bitcoin, but I still need to buy groceries. Up until now I have only found debit cards from shady crypto companies, so I'm hoping for a bitcoin only card.\n\nThanks in advance! \N 19217 \N 443697 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 15.4317595486454 0 \N \N f 0 \N 0 77851543 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443694 2025-03-19 13:19:38.517 2025-03-29 22:39:51.468 \N Favorite btc book \nFavorite non btc book\nWhat book helped you the most in your journey ?\nAny advice you could give that has helped you on your journey thanks for everything you do in Austin u crushed it! https://example.com/ 20674 443179 443179.443694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55613409411913 0 \N \N f 0 \N 0 43180897 0 f f \N \N \N \N 443179 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443693 2025-03-19 13:19:38.182 2025-03-29 22:39:51.468 \N Added Slice to my list of dozens of products that let you earn Bitcoin…\n\nhttps://www.stacksats.how/ https://example.com/ 13365 443295 443295.443693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.61467358949975 0 \N \N f 0 \N 0 237947874 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443695 2025-03-19 13:20:09.452 2025-03-29 22:39:51.468 \N Big cites like NYC and London need this but for bathrooms. https://example.com/ 10638 443678 443678.443695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8815504306198 0 \N \N f 0 \N 0 33893740 0 f f \N \N \N \N 443678 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443692 2025-03-19 13:19:21.373 2025-03-29 22:39:51.468 \N I’d recommend https://lightningpolar.com/ for development https://example.com/ 21541 443674 443388.443454.443474.443546.443674.443692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.1955751179952 0 \N \N f 0 \N 0 173375170 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443700 2025-03-19 13:23:19.166 2025-03-29 22:39:51.469 \N Specifically tried to get first comment today. No luck y'all are too quick 😂 https://example.com/ 6149 443690 443295.443437.443597.443690.443700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.14514274529713 0 \N \N f 0 \N 0 182639216 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443703 2025-03-19 13:24:32.193 2025-03-29 22:39:51.469 \N Their first rugging https://example.com/ 16176 443583 443583.443703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.911918911520608 0 \N \N f 0 \N 0 117394696 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443758 2025-03-19 13:59:51.015 2025-03-29 22:39:51.469 \N in the North of Spain, we are organising a BTC community with the idea to create a Bitcoin Village Project, similar to Bitcoin Beach in El Salvador...Its going to be a long process. \nToday, finally, we'll meet for the first time., wish me some luck!! https://example.com/ 11561 443675 443545.443659.443675.443758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7905319891473 0 \N \N f 0 \N 0 180533183 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443736 2025-03-19 13:47:39.089 2025-03-29 22:39:47.91 Would you rather be rich or famous, or both, or neither? **It's actually quite complex for me to express in words. I'm putting it here in a poll to see what's the best we should aim for. Is it being rich and famous or rich and anonymous or just rich or just famous? Over to you guys, you tell me what's the best approach in life?**\n\n\n\n\n\n \N 21303 \N 443736 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 14.0469064428577 0 \N \N f 0 \N 0 64546834 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443704 2025-03-19 13:24:54.191 2025-03-29 22:39:47.91 Do You Split Up Your Stack? I know enough about computers and bitcoin to understand the wild improbability of someone _guessing_ my seed phrase / private key, but in the back of my mind I am always a bit nervous about the random chance that the universe aligns - especially for people using a mass-produced hardware device to generate their keys. \n\nI know that the [big companies hold massive amounts in a single wallet](https://stacker.news/items/397590) and would be catastrophic if someone cracked those - along the same lines, would be catastrophic for me if someone got into my wallet.\n\nAlong the same lines, you don't want to have too few satoshis in a single wallet, incase fees are higher in the future, etc. \n\nMostly curious what you all do / think. \N 1237 \N 443704 \N \N \N \N \N \N \N \N news \N ACTIVE \N 12.7803133068399 0 \N \N f 0 \N 0 9380903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443725 2025-03-19 13:39:15.084 2025-03-29 22:39:51.469 \N Well,if there is a legitimate reason for a premium we usually don't call it "arbitrage" anymore. You kind of provide a service/a value by washing coins KYC-free after the exchange and get compensated for that - that's a businessmodel, not arbitrage. Might be a grey market businessmodel depending on your country - and maybe find out if your specific region even has a demand for it - but still a businessmodel. https://example.com/ 10094 443545 443545.443725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3195971155621 0 \N \N f 0 \N 0 158732474 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443723 2025-03-19 13:38:39.323 2025-03-29 22:39:51.469 \N It's a nobel idea that will benefit bitcoin. The problem might be convincing people to pay for electricity with little to no financial gain. For the record, I'm in if anyone has any ideas. https://example.com/ 1064 443583 443583.443723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0700605116389 0 \N \N f 0 \N 0 244599800 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443738 2025-03-19 13:48:40.342 2025-03-29 22:39:51.469 \N All this stemmed from users saying copy paste was too hard 😂 https://example.com/ 21079 443734 443734.443738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.119764413227763 0 \N \N f 0 \N 0 185116087 0 f f \N \N \N \N 443734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443739 2025-03-19 13:48:45.655 2025-03-29 22:39:51.469 \N I've been neglecting "related posts". I'll attempt to change my ways. https://example.com/ 1326 443683 443683.443739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8608382615627 0 \N \N f 0 \N 0 19844002 0 f f \N \N \N \N 443683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 443775 2025-03-19 14:08:09.052 2025-03-29 22:39:47.917 AI vs Bitcoin The AI hype has been non-stop for the last 2 years ever since ChatGPT came out with its 3.0 chat. Since then, there's been an insane amount of investment into AI tech from every direction. There are hundreds of startups, every tech giant has been making investments and companies in between have been putting a lot of money toward it as well. It's not a small amount, either, as the AI hardware costs make Bitcoin mining look like discount bargains.\n\nYet after two years, what have we to show for it? Maybe some faster image editing on newer phones? Slightly faster answers to questions you would normally ask Google? Some productivity increase among junior programmers? The investment was enormous, as can clearly be seen in NVIDIA's growth, but the results are pretty underwhelming. As with any hyped technology, the possibilities have run past the actual use.\n\nOne of the supposed benefits of fiat money is that capital accumulation is unnecessary to create real value. You can build roads, for example, without having to save up for it. What this misses are many obvious drawbacks, but one of them is that there has to be someone that evaluates whether something will create value and create the money out of thin air to fund the project. This is not just inherently centralizing, but also deeply political. \n\nFor whatever reason, AI passed this political test and got the blessing of the money printers, which, to a company that sells, shovels like NVIDIA has been great news. But the drawback is that there's bound to be at least *some* that don't pan out. Maybe some segment of the economy can't use AI profitably, for example. Yet the powers that be, mostly Cantillionaires, have decided that this is worthwhile and have poured insane amounts of money into this bet.\n\nBut much like hyped tech of the past, it's looking more and more likely that there's little profit to be made here. Yes, there's some useful things that can be made, but the costs are simply too high right now to justify spending that much. It's a luxury item that mostp people simply don't need, and hence don't want to pay for. AI has become an expensive solution looking for costly problems to solve.\n\nThis was always my analysis with another hyped tech: blockchain. It never really made any sense as the cost was too high for what was really just a distributed, very redundant but hard to upgrade database. It, too, couldn't find costly problems to solve, with the exception of one. That, of course being Bitcoin.\n\nWhat differentiates Bitcoin from AI is that people *need* Bitcoin. It's its own killer app. AI is not so popular that people will pay for what it costs right now. And that means that most of the investment will be wasted. Like most hyped things in a fiat economy, it's doomed to have significant malinvestment.\n\nA lot of people complain about Bitcoin businesses and how hard it is to make them profitable. In a sense, I get it. You want more people to have steady jobs and so on. But in another sense, I think this is the market speaking. You're not going to get paid from Bitcoiners easily and there's no flood of printed money looking for a place to go. At least there won't be once fiat money has run its course. Building a profitable company is hard and so few meet that mark, especially in a new segment as AI has shown.\n\nSo in that way, I'm encouraged, because the companies that survive in Bitcoin will have something truly worthwhile. By contrast, the companies that survive in AI will probably be the ones that get subsidized the longest. \N 21523 \N 443775 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5867828342848 0 \N \N f 0 \N 0 238640087 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307670 2024-11-25 09:32:24.988 2025-03-29 22:39:51.469 \N New season "Black Mirror" is pretty good. \n\n https://example.com/ 3544 306412 306412.307670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9728804673217 0 \N \N f 0 \N 0 77028945 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 446526 2025-03-21 10:19:11.705 2025-03-29 22:39:51.469 \N As of 2020, there were 111m active bank accounts, 1 person can have multiple bank accounts, so let's assume 60m people have bank accounts, I am not sure up to half of them have debit/credit cards. I'll settle for a 20m debit card users https://example.com/ 776 445941 445941.446526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.089046076053 0 \N \N f 0 \N 0 115511838 0 f f \N \N \N \N 445941 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 446783 2025-03-21 13:13:52.447 2025-03-29 22:39:47.917 A bitcoin journey through Africa: Outlining adoption for each country visited Hi all,\n\nIn 2022, I made an announcement that I'll be traveling through Africa by motorcycle to document Bitcoin on the continent...\nhttps://stacker.news/items/24587\n\nIn 2023, I made a second announcement on the eve of my departure...\nhttps://stacker.news/items/176183\n\nThe journey has been a true adventure, taking me through South Africa, Namibia, Botswana, Zimbabwe, Zambia, Kenya, and Tanzania. I'm now writing to you from Mozambique.\n\nI'd like to extend my gratitude to everyone expressing your enthusiasm along the way. I've been posting via various channels about my experiences. However, I've realised that I haven't been especially consistent here on Stacker News. From here on out, Stacker News will be the primary hub of my activity.\n\nThe update:\n\nFirst of all, I need to update some links.\n\nSubstack Newsletter (Wandering w/ Purpose): https://wanderingwpurpose.substack.com/\nYT: https://www.youtube.com/channel/UCBbLS4SpDCL17QWCGBM6rXw\nTwitter: @gpvansat\n\nMost recent Stacker News posts and updates:\nSelf-reflection amongst Africa's smoke and mirrors: https://stacker.news/items/667609\nBitcoin Nakawa - a community initiative in Zambia: https://stacker.news/items/682979\nBitcoin Nakawa Project Update #1: Our first funding!: https://stacker.news/items/692768\n\nEssentially, Africa has been challenging and enlightening. A quick look at the recent posts reveals my disillusionment at the state of Africa due to foreign influence and religion. However, you'll also notice that I've started supporting a Bitcoin community in Zambia, Bitcoin Nakawa, which I'm thrilled about.\n\nSo much has happened. I fell in love and broke my ankle in Namibia. I attended Africa's first Bitcoin Mining conference in Kenya. I witnessed the world's largest wild mammal migration in Zambia. I lost access to my banking services while in Tanzania. I was rescued by local Tongans in Zimbabwe. I worked at Africa burn in South Africa. There are so many stories to share, but it's impossible to share them all...\n\nTherefore, I'm providing the following summary of strengths and weaknesses for Bitcoin adoption in each country I've visited...\n\nSouth Africa:\n\nStrengths - adoption is already happening quickly with many Bitcoin communities along the coast. Many talented individuals. Active market with rich resources. Retail chains like Pick 'n Pay already accepting Bitcoin and crypto payments.\n\nWeaknesses - The banking sector is dominant and relatively functional. It may take some time for people to move away from traditional banking. Recent regulations are increasingly prohibitive to Bitcoin and crypto.\n\nNamibia:\n\nStrengths - a relatively small population means adoption could saturate the population quickly. The monopolistic, state-owned, telecom company of Namibia, MTC, is extremely inefficient and expensive. It is prime for disruption. Unlike elsewhere in Africa, mobile banking like MPesa is almost non-existent in Namibia. There is some Bitcoin activity happening in the capital, Windhoek.\n\nWeaknesses - due to legacy influence from South Africa, the traditional banking sector is dominant, though quite inefficient.\n\nBotswana:\n\nStrengths - This is a surprisingly stable and prosperous country in Africa, meaning the population is well educated and resourced. A good initiative can piggyback on Botswana's success. A relatively small population means adoption could saturate the population quickly. The main telecom is known as "BTC" - maybe there's a collaboration that can happen there.\n\nWeaknesses - very little existing Bitcoin activity. Mobile banking like MPesa is uncommon with the influence of South Africa's traditional banking sector.\n\nZimbabwe:\n\nStrengths - nothing works in Zim anymore. You can't function without USD cash, and access to USD is heavily corrupt. Zimbabweans are desperate to bypass the system. Before the collapse of the economy, significant investment in education has left behind a well-educated population despite economic woes.\n\nWeaknesses - it's difficult to operate in Zimbabwe. It would be a significant and rewarding undertaking to tackle adoption here.\n\nZambia:\n\nStrengths - this country has been growing well under the radar. The population is hopeful and peaceful. Existing telecom companies have made access to mobile services properly convenient and inexpensive. Mobile banking like Mpesa is common so understanding Bitcoin should be relatively easy. Recent inflation means Zambians need a way to preserve their wealth. Many opportunities for affordable land acquisition with resources for rural Bitcoin mining.\n\nWeaknesses - Aside from typical African challenges, few weaknesses to report.\n\nKenya:\n\nStrengths - more than 60% of the country's transactions are through mobile banking with MPesa. Therefore, the population is primed to understand and adopt Bitcoin.\n\nWeaknesses - Recent political tensions are causing turbulence in the country. This may also be an opportunity to bypass inflation and tax escalation. MPesa is so dominant, that people may not want to deviate.\n\nTanzania:\n\nStrengths - much the same as Kenya\n\nWeaknesses - much the same as Kenya, but more stable at the moment.\n\nMozambique:\n\nStrengths - MPesa is very helpful and common. A government that is stagnant and corrupt since independence in the 70's means the country needs a change. Nothing works here. South Africa's traditional banking system hasn't penetrated here. This country is waiting to be disrupted.\n\nWeaknesses - Police presence is high and corrupt. Any foreigner is watched closely. You may have issues if you become too visible here.\n\nAfrica overall:\n\nStrengths - a low average age of the population means understanding of technology is relatively ubiquitous in Africa. Familiarity with mobile banking like MPesa across the continent is inching Africans closer to Bitcoin. So many systemic issues on the continent can be solved with Bitcoin and Africans are desperate.\n\nWeaknesses - access to information can be very difficult so Africans may not be able to learn about Bitcoin productively. Most Africans that have heard of Bitcoin have been scammed. They have a barrier to entry because they are fearful. Governments can be prohibitive, but this is also part of the opportunity.\n\nThanks all! More updates to come.\n\nG \N 902 \N 446783 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 16.6993322464372 0 \N \N f 0 \N 0 16449812 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447049 2025-03-21 15:30:19.261 2025-03-29 22:39:51.469 \N My favorite book is The Life Of Mary As Seen by The Mystic by A. Brown\n https://example.com/ 2022 446513 446513.447049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6124996296454 0 \N \N f 1546477736 \N 12 172553771 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 447168 2025-03-21 16:51:58.908 2025-03-29 22:39:51.469 \N London is pretty good for walking. Loads to see! https://example.com/ 10283 447029 446962.447029.447168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9797041768045 0 \N \N f 0 \N 0 51744269 0 f f \N \N \N \N 446962 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447140 2025-03-21 16:32:39.202 2025-03-29 22:39:51.469 \N I wanted to write my own games. Which at age of 7 I actually managed to sell to other kids for decent snack money. https://example.com/ 21688 446838 446719.446838.447140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2847547244091 0 \N \N f 0 \N 0 74057091 0 f f \N \N \N \N 446719 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447182 2025-03-21 17:06:09.731 2025-03-29 22:39:51.469 \N Experimenting with ClickHouse, the column-oriented DBMS. https://example.com/ 10112 446962 446962.447182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0467385999459 0 \N \N f 0 \N 0 32101217 0 f f \N \N \N \N 446962 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447162 2025-03-21 16:47:38.984 2025-03-29 22:39:47.918 Centralizing Forces - A Weekend Discussion This weekend, Mempool announced their upcoming [Mempool Accelerator](https://nitter.at/mempool/status/1659619347910803466) service, prompting many in the Bitcoin community to call out the centralizing effects it could have on the Bitcoin network.\n\nMempool isn't the only service to be called out as a centralizing force, they're just the most recent example. Many services from wallets to exchanges to mining pools to LN implementations have at one point or another been called centralizing forces by members of the Bitcoin community.\n\nThe purpose of this discussion is to talk about the effects of various centralizing forces on the network, and distill the specific aspects of Bitcoin that must be protected from centralization.\n\nA few questions...\n\n- Which components of the Bitcoin protocol, network, and asset must remain decentralized for Bitcoin to succeed?\n- Is it possible for centralization to be reversed once a single entity has a majority market share in a specific domain?\n- Which projects or initiatives are most concerning to you as a potential centralizing force?\n- Are there any examples of instances in which centralization could benefit Bitcoin? \N 2749 \N 447162 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.9553890856012 0 \N \N f 29250123 \N 1 89869375 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:49:49.025 f \N \N \N 0 0 0 0 1 0 0 447186 2025-03-21 17:12:16.149 2025-03-29 22:39:51.469 \N Building my own homesteading place with my own hands and without any specialized knowledge in construction. Just learning by doing it.\nIt was my life dream to do it and now I am so close to bring it to reality...\n[![citadel-lvl-14.jpg](https://i.postimg.cc/pdr6VD3L/citadel-lvl-14.jpg)](https://postimg.cc/XZM8QyVR)\n\n*the 14th level of earthbags is in place...* https://example.com/ 16747 447084 446513.447049.447084.447186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.11217062216086 0 \N \N f 1121573369 \N 8 34135068 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447181 2025-03-21 17:06:07.732 2025-03-29 22:39:51.469 \N I always find that I learn best by doing, and exploring the codebase myself. But even then, it’s important to know when to ask for guidance instead of not making any progress alone. Finding the balance is crucial https://example.com/ 2583 446628 446628.447181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7023668885205 0 \N \N f 0 \N 0 212722405 0 f f \N \N \N \N 446628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447193 2025-03-21 17:16:41.268 2025-03-29 22:39:51.469 \N Drove all night for the first time in years. Had to meet a deadline. I got home just in time to check the empty Saloon when it opened and then fell asleep. https://example.com/ 10698 447190 446819.447190.447193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7851408652514 0 \N \N f 242074661 \N 1 96872025 0 f f \N \N \N \N 446819 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447178 2025-03-21 17:03:33.557 2025-03-29 22:39:51.47 \N withdrawal is a noun\n\nyou need a verb to follow the word "to" which signifies an infinitive\n\nI think you meant "yours to withdraw" or "yours for withdrawal"\n\nall four times https://example.com/ 4768 446689 446689.447178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8826818026141 0 \N \N f 0 \N 0 143328829 0 f f \N \N \N \N 446689 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447198 2025-03-21 17:21:57.574 2025-03-29 22:39:51.47 \N ![](https://i.imgflip.com/7hnfrx.jpg)\nCreated by me 😁 https://example.com/ 4692 447193 446819.447190.447193.447198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1430133577712 0 \N \N f 0 \N 0 242074661 0 f f \N \N \N \N 446819 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447207 2025-03-21 17:28:05.804 2025-03-29 22:39:51.47 \N Shitcoiners like you always bargain and are lazy.\nI will do it for free just to fuck around and not let you take the sats, you don't deserve them.\nIs a damn simple meme FFS, how much effort could take you? 10-30min?\n30k sats could be generational wealth in few years, but yeah your shithead can't comprehend that, because you are dumping them for shitcoins or fiat immediately.\n\n![NO-NODE.jpg](https://m.stacker.news/20443) https://example.com/ 636 447202 447184.447192.447196.447202.447207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2588058408176 0 \N \N f 0 \N 0 144792525 0 f f \N \N \N \N 447184 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447195 2025-03-21 17:19:26.711 2025-03-29 22:39:51.47 \N Fawlty Towers is one of the great little-known (in the US) treasures in all of television history. God that show was genius. THanks for the reminder. https://example.com/ 16456 447143 447143.447195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5321646489571 0 \N \N f 0 \N 0 145635187 0 f f \N \N \N \N 447143 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447201 2025-03-21 17:23:22.137 2025-03-29 22:39:51.47 \N You're being equally stupid but the other way around.\n\nNot all conspiracies were false, not all of them were unreasonable. There was a lot of misinformation and nonsense but there was also real censorship. https://example.com/ 13987 446822 446822.447201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7045049474778 0 \N \N f 0 \N 0 122527911 0 f f \N \N \N \N 446822 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447206 2025-03-21 17:27:32.438 2025-03-29 22:39:51.47 \N @ProofOfWorkFitness a fitness sub now for you to share your advice. https://example.com/ 17001 447204 447184.447192.447196.447204.447206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4976609219395 0 \N \N f 279954299 \N 2 107926441 0 f f \N \N \N \N 447184 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447227 2025-03-21 17:48:52.302 2025-03-29 22:39:51.47 \N A stray cat came to my door this morning, crying and hungry. Did I just acquire a new pet? https://example.com/ 20802 447221 447221.447227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1759117617467 0 \N \N f 0 \N 0 94276337 0 f f \N \N \N \N 447221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447270 2025-03-21 18:31:29.083 2025-03-29 22:39:51.471 \N I take care of office plants. This means I carry my tools in my car from place to place, fill water buckets and wander around an office or lobby to check on the growth of their dracaenas, pothos, corn plants, snake plants. Today I'll be working at Samsung, so that's kinda interesting. It suits me, as I have a love of growing things and I don't have to speak much at all. In fact, I listen to books podcasts while I work. And it gives me with the space to do other things that are bitcoin related. https://example.com/ 21522 447222 446965.447222.447270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9719106426917 0 \N \N f 0 \N 0 169843382 0 f f \N \N \N \N 446965 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447228 2025-03-21 17:49:15.31 2025-03-29 22:39:51.471 \N The duplicate comments error is still repeating itself\n\n![](https://m.stacker.news/64815) https://example.com/ 18526 446941 446774.446941.447228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.905717698078874 0 \N \N f 116759548 \N 1 108210179 0 f f \N \N \N \N 446774 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447223 2025-03-21 17:46:29.231 2025-03-29 22:39:51.471 \N Absolutely agree. I try my best to always sort by recent. Imagine you're the boss of a business... Go interact with your customers at every opportunity. Be a face not a faceless entity. Build relationships and people will come to you. https://example.com/ 7185 447221 447221.447223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1237442256805 0 \N \N f 10270982 \N 1 106809266 0 f f \N \N \N \N 447221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447230 2025-03-21 17:50:16.637 2025-03-29 22:39:51.471 \N sending dev and op hugs! https://example.com/ 21022 447226 447148.447213.447216.447226.447230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3910777704684 0 \N \N f 0 \N 0 245299901 0 f f \N \N \N \N 447148 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447231 2025-03-21 17:50:50.12 2025-03-29 22:39:51.471 \N Really good public transit. Ideally rail or something that doesn't suffer from car traffic. https://example.com/ 17708 446942 446942.447231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0885797816748 0 \N \N f 0 \N 0 24330805 0 f f \N \N \N \N 446942 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447238 2025-03-21 17:55:52.075 2025-03-29 22:39:51.472 \N Add ", yet?" After you ask.\n\nAs if it's only a matter of time.\n\nAnd do it non-ironically.\n\nLike a jedi mind trick.\n\nAlso easier to ask "For next time, do you take Bitcoin?" ...while you're checking out using legacy money. https://example.com/ 656 447228 446774.446941.447228.447238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4399804409935 0 \N \N f 0 \N 0 116759548 0 f f \N \N \N \N 446774 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447240 2025-03-21 17:58:44.14 2025-03-29 22:39:51.472 \N Happy Friday Stackers, \n\nSubmitted my first pull request and Issue yesterday night. \n\nLooks like some freaks are starting a nostr/bitcoin meetup in my area (DMV)\n\nAnd what a time to be alive!\n\n https://example.com/ 16126 447223 447221.447223.447240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2127737116863 0 \N \N f 0 \N 0 10270982 0 f f \N \N \N \N 447221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447244 2025-03-21 18:08:56.618 2025-03-29 22:39:51.472 \N Fourth day in a row rocking it with React :) Added a usd to sats converter at [UselessShit.co](https://uselessshit.co/#converter) to quickly calculate the amount of sats which would have been stacked. \n\nNext I'm putting my hands on adjusting the tone on the cards to make it less offensive and more encouraging to save in bitcoin, as suggested [here](https://stacker.news/items/49038) by @sb. Will likely leave an option to shame close friends with the cards which already exist.\n\nHave a great Bitcoin Monday! https://example.com/ 1122 447079 446371.446745.447071.447079.447244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2614498021345 0 \N \N f 0 \N 0 91158362 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447247 2025-03-21 18:11:13.349 2025-03-29 22:39:51.473 \N high integrity and transparency in process keeps SN a trusted network https://example.com/ 21303 447246 446819.447190.447243.447246.447247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5655706025473 0 \N \N f 0 \N 0 179254972 0 f f \N \N \N \N 446819 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447268 2025-03-21 18:30:36.707 2025-03-29 22:39:51.473 \N The simplicity on the main chain is unchanged. The experimentation on higher layers is a good thing! The 'many projects and too few users' argument could literally be used for all start ups in every industry. That's just the nature of it. \n\nMost of these experiments will fail and that's okay; the ones that work will make a huge impact https://example.com/ 19829 446814 446814.447268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3415599725669 0 \N \N f 0 \N 0 209721671 0 f f \N \N \N \N 446814 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447253 2025-03-21 18:14:57.367 2025-03-29 22:39:51.473 \N ![eth](https://pbs.twimg.com/media/FxinWIyaMAIBIlS?format=jpg&name=large) https://example.com/ 16447 446840 443799.443861.444786.445531.446786.446840.447253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8324016463653 0 \N \N f 0 \N 0 145449689 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447283 2025-03-21 18:45:25.169 2025-03-29 22:39:51.47 \N Goods and services available (and denominated) in Bitcoin.\n\nThere is no lack of people holding Bitcoin. It's a demand bottleneck, not a supply bottleneck. https://example.com/ 19459 447276 446456.447124.447161.447276.447283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4104664318982 0 \N \N f 0 \N 0 178882249 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447269 2025-03-21 18:30:39.935 2025-03-29 22:39:51.473 \N Good call! Nearly all the 'myths' are busted. Ahahahah\n\n> 1. Bitcoin isn't really scarce\n> 2. It has a utility problem\n> 3. There's a low barrier to entry\n> 4. Few (if any) tangible means to value bitcoin\n> 5. Fiat currencies may work on blockchain\n> 6. Blockchain is years from being mainstream\n> 7. Fraud/theft is a serious issue\n> 8. There's no regulation\n> 9. The tax situation is a nightmare\n> 10. All bubbles eventually burst\n\n https://example.com/ 9906 446942 446942.447269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.735675351721 0 \N \N f 0 \N 0 89580382 0 f f \N \N \N \N 446942 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447261 2025-03-21 18:22:16.173 2025-03-29 22:39:51.473 \N It’s actually 100k per day, not per week. So quite a bit!\n\nI like seeing the daily rewards, if I get any. But the content and interaction is the reason I’m here. Sats are bonus https://example.com/ 17411 447250 446937.447218.447250.447261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9962524550922 0 \N \N f 0 \N 0 201871384 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447259 2025-03-21 18:20:53.34 2025-03-29 22:39:51.474 \N We are all fucking you over. All the balances you have ever seen are lies.\n\nBecause, well, you have never verified yourself. https://example.com/ 21072 338461 337715.338168.338461.447259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.72401798911923 0 \N \N f 0 \N 0 215175023 0 f f \N \N \N \N 337715 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447273 2025-03-21 18:33:20.82 2025-03-29 22:39:51.47 \N > developers under-appreciate how hard it is to do sales (and blame the world instead)\n>\n\nMuch truth. Technical people underestimate how difficult non-technical work actually is. As I've grown older, I've appreciated the importance of social skills like making clients feel comfortable, making a sales pitch, and leadership skills like inspiring people and maintaining a good work culture.\n\nThese intangibles are hard to measure, but they are undoubted valuable and difficult to do. Personally, I'd rather sit in front of a computer and code. I very much appreciate being able to offload the social responsibilities to someone else.\n https://example.com/ 17162 446963 446774.446963.447273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.87168130052209 0 \N \N f 0 \N 0 115917797 0 f f \N \N \N \N 446774 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447274 2025-03-21 18:33:35.591 2025-03-29 22:39:51.47 \N I continue to do the five movements mentioned in Peter Kelder's famous book, 21 times a day. I finished the 2nd month. The book says that results will be obtained in 5-6 months. As stated in the book, bad odors come from the body for the first 1-2 months. It has been stated that this is due to the toxins excreted. These smells came true. I showered frequently. Let's see if I can get positive results in 5-6 months.\nhttps://en.wikipedia.org/wiki/Five_Tibetan_Rites https://example.com/ 20019 446937 446937.447274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.53747810336512 0 \N \N f 0 \N 0 215356930 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447286 2025-03-21 18:45:57.574 2025-03-29 22:39:51.47 \N - More strategic about streaming subscriptions\n- Snacks and junk food\n- Carry out meals\n- Kombucha\n- Movie tickets https://example.com/ 21374 447282 447148.447239.447242.447282.447286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.275124839026 0 \N \N f 388737214 \N 2 176849220 0 f f \N \N \N \N 447148 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447275 2025-03-21 18:34:37.073 2025-03-29 22:39:51.47 \N Weak minds straw man their opponents.\n\nStrong minds steel man their opponents. https://example.com/ 15200 447119 446937.447119.447275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.35614309100063 0 \N \N f 207063221 \N 1 10701251 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447272 2025-03-21 18:32:28.473 2025-03-29 22:39:51.47 \N The shitcoinery is tiring. I'm tired of "bitcoin" somehow being synonymous with "crypto". I'm tired of explaining in detail the need for bitcoin to someone only for them to wrecked by shitcoin scams like etheream and blaming me for it. I have to really hold a noobies hand for their first 4 years just so they don't hurt themselves.\n\nIt really is like "here's this fair well respected money" and then as soon as that comes out "here robux ran by the roblox corporation. Its a digital asset just like Bitcoin"\n\nSo fucking annoying. https://example.com/ 15624 446369 446016.446059.446369.447272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5528140289716 0 \N \N f 0 \N 0 45728182 0 f f \N \N \N \N 446016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447291 2025-03-21 18:48:12.504 2025-03-29 22:39:51.47 \N All my 4 halvings were like this...\n![happy.gif](https://m.stacker.news/27122)\n\nI was literally sad and preoccupied for what I will do next.\nI don't know why many people are so excited about halvings, when in fact is a sad moment, you will start getting less and less sats.\n\nAnd this halving that is about to happen, WILL BE BRUTAL ! https://example.com/ 13042 447286 447148.447239.447242.447282.447286.447291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6096707226357 0 \N \N f 194844795 \N 1 193892419 0 f f \N \N \N \N 447148 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447278 2025-03-21 18:37:53.894 2025-03-29 22:39:51.471 \N "they pretend to pay us, and we pretend to work" - soviet saying https://example.com/ 661 447235 446954.447235.447278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.05019194337964 0 \N \N f 135088579 \N 1 31043669 0 f f \N \N \N \N 446954 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447294 2025-03-21 18:49:32.375 2025-03-29 22:39:51.471 \N If he ever returns, I will assume he has been compromised and is working as an agent of the government. https://example.com/ 664 447284 446945.447085.447284.447294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6870040916584 0 \N \N f 0 \N 0 122931196 0 f f \N \N \N \N 446945 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447296 2025-03-21 18:50:32.051 2025-03-29 22:39:51.471 \N ![ZomboMeme 04122023022302.jpg](https://m.stacker.news/6738) https://example.com/ 6653 447096 446942.447096.447296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3030749383392 0 \N \N f 0 \N 0 198938070 0 f f \N \N \N \N 446942 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447298 2025-03-21 18:50:54.403 2025-03-29 22:39:51.471 \N they can use LN but they can have their keys too. \nin any case, education is good no matter how you use bitcoin. https://example.com/ 4292 446808 446456.446649.446650.446808.447298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.890447764003603 0 \N \N f 0 \N 0 187152942 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447297 2025-03-21 18:50:41.201 2025-03-29 22:39:51.471 \N I really like alby as a concept. Is there a roadmap for what could come next? https://example.com/ 20864 447275 446937.447119.447275.447297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.31137604742385 0 \N \N f 0 \N 0 207063221 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447295 2025-03-21 18:49:35.941 2025-03-29 22:39:51.471 \N Trying to enable hybrid mode on my LN node (aka. Tor and clearnet using a proxy).\n\nI use Caddy2 as a reverse proxy for most of my webservices. Anyone know if Caddy can proxy port 9735 used for LN peering? I tried doing:\n\n```\n:9735 {\n IP.OF.LN.NODE:9735\n}\n```\n\nBut I get errors when connecting to this proxied connection. It appears that the handshake fails or times out. Perhaps due to LN not accepting HTTP.\n\nMy fallback is to use raw wiregaurd tunnels, but I really want to use Caddy if possible. https://example.com/ 4474 447116 446942.447116.447295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.81452101326482 0 \N \N f 0 \N 0 7083301 0 f f \N \N \N \N 446942 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447308 2025-03-21 19:05:15.989 2025-03-29 22:39:51.471 \N everyone knows here that the LN is the solution.\nAnd of course is better to use a custodial wallet for a beginner who manage small amounts that paying 10$ fee.\nIn fact I guess having high fees is good to try to kill this nonsense. https://example.com/ 5942 446689 446689.447308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0159471677425 0 \N \N f 0 \N 0 211458011 0 f f \N \N \N \N 446689 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447314 2025-03-21 19:15:05.996 2025-03-29 22:39:51.471 \N From my own experience (very personnal and subjective one) you can't be profitable until you acquire enough routed volume. It means to have at least 2 or 3 BTC capacity, 50 big channels of a minimum 5 millions sats each, and enough good peers... And even with that you can expect few hundred or thousands sats in net positive at the end of the month, if you managed your liquidity well.\n\nI think you have to manage your liquidity by avoiding swaps and rebalancing, just playing with the fees. If you are skilled enough you can automatized the changes in your fees. \n\nTo conclude I would say that the only way to be profitable is to be one the biggest node or by selling Lightning related services through your node, but no routing only. https://example.com/ 13843 446726 446726.447314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5067443613512 0 \N \N f 0 \N 0 57929703 0 f f \N \N \N \N 446726 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 447325 2025-03-21 19:20:43.803 2025-03-29 22:39:51.471 \N I don't think it's a good idea to integrate with Nostr at this moment.\n\nBoth Nostr and Stacker News are relatively new, so they likely have many features in development. \n\nIntegration would likely require a significant amount of developer time. \n\nInstead of fully integrating, perhaps it would be more efficient to simply add a field to the Stacker News user profile where users can input their Nostr public key. https://example.com/ 1505 447313 447264.447302.447313.447325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0865702231559 0 \N \N f 0 \N 0 166242962 0 f f \N \N \N \N 447264 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448838 2025-03-22 23:00:22.542 2025-03-29 22:39:51.471 \N One of the things I keep seeing being discussed incorrectly is what the halving means for Bitcoin supply. Since Bitcoin is a durable good, it's supply is not equivalent to the amount being produced currently. All we can say is that, other things equal, the halving reduces the rate of supply increase.\n\nBitcoin's supply is the entirety of what's available for trade. This is actually a really difficult quantity to estimate, because of the unknown amounts of Bitcoin that have been lost and the amount being truly hodl'ed.\n\nNew production is a very small share of total Bitcoin, so whether the supply is increasing or decreasing is almost entirely related whether hodl'ers are becoming more or less willing to use their Bitcoin in transactions. https://example.com/ 5171 444911 444911.448838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4426309373589 0 \N \N f 0 \N 0 68296446 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307301 2024-11-24 22:51:33.008 2025-03-29 22:39:51.471 \N > One of the factors guilty of this is that my brain has been strongly kidnapped by Atlas Shrugged by Ayn Rand, and I'm pretty much using all of my leisure time to devour it. I'm roughly at 40% of it, and you can't even imagine how much am I enjoying it. \n\nI normally find it trite to say "This book changed my life...", but in this case it legitimately did. I read Atlas Shrugged when working some dead-end-yet-comfy job and it was one of the catalysts that inspired me to resign.\n\nThere are some profound ideas in the book, which I think is often missed by critics who worry more about their delivery (the book is waaay too long and Rand's treatment of "the other side" is comically savage). I think about them regularly to this day, and the book is more relevant than ever.\n\nI won't spoil anything, but there are some interesting parallels to Bitcoin coming up in the second half of the book. https://example.com/ 2224 307005 306869.307005.307301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.32403117569745 0 \N \N f 0 \N 0 119364395 0 f f \N \N \N \N 306869 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448365 2025-03-22 15:11:41.528 2025-03-29 22:39:51.471 \N If you are interested in facts about the CIA I highly recommend reading "Legacy of Ashes". All on the record interviews about the history of the CIA. The things that are officially on the record will curl your hair. I really think the whole "conspiracy theory" meme is to distract from the facts that sound like conspiracy theories. The CIA and other intelligence agencies do in fact influence news. I don't know who and how currently but this is no secret. Other nations do the same. Israel, China, the Saudis, and many others I'm sure. The average US citizen is as ignorant as a child about how these nation state actors work. https://example.com/ 2639 448359 448331.448342.448359.448365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9097790794476 0 \N \N f 0 \N 0 16400078 0 f f \N \N \N \N 448331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448361 2025-03-22 15:09:45.326 2025-03-29 22:39:51.471 \N A great question! I'm not sure, but probably "yes" ? I'm not an expert on lightning so it's hard for me to point at superfluous things. I do think lightning does a good job *not* solving some problems, e.g. finding routes, because I think those can be solved through dedicated markets that have yet to emerge. Lightning is complex, more so than bitcoin in many ways, but I worry that this complexity may be necessary to solve the problems it's trying to solve. Hard to know. But I'm excited about recent new L2 proposals -- I've long-believed that there should be multiple, competing L2s, and the fact that Lightning seemed the only major design space being explored made me uncomfortable. Let a thousand flowers bloom! https://example.com/ 2514 448131 447818.448026.448131.448361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5062629137932 0 \N \N f 0 \N 0 233625939 0 f f \N \N \N \N 447818 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448398 2025-03-22 15:27:38.131 2025-03-29 22:39:51.471 \N 10 years friend. Ask me for 3500 bucks. Disappear. https://example.com/ 17201 448260 448054.448260.448398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.009566349605 0 \N \N f 0 \N 0 242722847 0 f f \N \N \N \N 448054 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448388 2025-03-22 15:22:05.42 2025-03-29 22:39:51.471 \N - refactor wallet code\n- improve attached wallet UX\n- maybe add CLN for autowithdrawing https://example.com/ 1825 448359 448331.448342.448359.448388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.179604824413 0 \N \N f 0 \N 0 180037242 0 f f \N \N \N \N 448331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448397 2025-03-22 15:26:38.9 2025-03-29 22:39:51.471 \N Zapping because you brought it to our attention, not because I like it (I don't like it)\n\nA miner activated soft fork without Core (or economic node runner) support is a bold move. https://example.com/ 13249 448049 448049.448397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.91712533160673 0 \N \N f 0 \N 0 127587924 0 f f \N \N \N \N 448049 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448413 2025-03-22 15:37:04.157 2025-03-29 22:39:51.472 \N The problem we face in NZ is that while our community is growing, today, we’re dwarfed by the crypto crowd by an order of magnitude, and dwarfed by those who don’t care and will jump in on CBDCs by another two orders on top. We’re growing, but we have yet to impact the general business/consumer landscape here in NZ. \n\nThe “blockchain nz” groups have money, interest groups, and industry communities.\n\nAs of today, we’re sitting ducks for this. \n\nI’m jealous of the stories I hear from others about their experience onboarding merchants and individuals in other countries. When I talk to local businesses here in my area, I generally don’t get a negative argument, I get “I can’t be bothered, don’t care.”\n\nWhere do we find the hook? The problem to solve that gets people to overcome their apathy?\n\nDon’t mean to be a pessimist, I believe Bitcoin wins in the end, just voicing that we have a LONG way to go here in NZ. https://example.com/ 15091 448404 448202.448276.448315.448320.448352.448387.448404.448413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0171038343749 0 \N \N f 0 \N 0 211463115 0 f f \N \N \N \N 448202 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448417 2025-03-22 15:38:52.389 2025-03-29 22:39:51.472 \N Bartender... a beer please! Here are my sats!\n[![darth-vader-drunk.gif](https://imgprxy.stacker.news/ihc5olX2n7Y4enscqtWCzPDJNFXaUrLdQTZ-3oWhsoo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvNjNkZkRIbTMvZGFydGgtdmFkZXItZHJ1bmsuZ2lm)](https://postimg.cc/5Y2zzm1d) https://example.com/ 12935 448403 447761.448319.448403.448417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.40029960215603 0 \N \N f 0 \N 0 236480630 0 f f \N \N \N \N 447761 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448427 2025-03-22 15:44:03.888 2025-03-29 22:39:51.472 \N I am not radicalized. I am a sane human driven by logic and reason that refuses to go along with clown world. https://example.com/ 12057 447892 447892.448427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.36915934686948 0 \N \N f 0 \N 0 86470210 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448439 2025-03-22 15:49:14.059 2025-03-29 22:39:51.472 \N * Built my standing desk I use every day in my office.\n* Built a digital sign to let my family know when I was on a call back when I had a ton of work calls (work from home) https://example.com/ 1833 448386 447892.448293.448386.448439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4910491208999 0 \N \N f 0 \N 0 208477241 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448429 2025-03-22 15:44:36.843 2025-03-29 22:39:51.475 \N Memes count as art right? right? https://example.com/ 11527 448375 447944.448375.448429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8569905152513 0 \N \N f 242533329 \N 2 148677064 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 138663 2024-03-07 19:25:28.583 2025-03-29 22:39:47.918 8 basic facts about RoboSats and Bisq \n\n1. RoboSats and Bisq are platforms where you can get your sats without having to KYC. \n\n2. RoboSats is short for Robotic Satoshis. It is named as such because it allows you to generate a robotic avatar when exchanging your sats.\n\n3. The difference between them is that RoboSats employs the Lightning Network whereas Bisq facilitates only on-chain Bitcoin payments. So, you can swap Lightning Network BTC to on-chain BTC and vice versa on RoboSats.\n\n4. Another difference is that RoboSats requires you to use it with the Tor browser (http://robosats6tkf3eva7x2voqso3a5wcorsnw34jveyxfqi2fu7oyheasid.onion/) while you install Bisq which is a desktop application that has an in-built payment protocol. \n\n5. Since RoboSats uses the Lightning Network, it has a 3 million sat limit to ensure that transactions can go through completely.\n\n6. Both platforms require you to have BTC first before you can buy BTC - as an assurance that you won’t waste other users’ time with empty promises.\n\n7. Many users use platforms like Strike, Revolut, CashApp and even PayPal to accept payments but if you are particular about your privacy, cash by mail orders, Amazon gift cards or even cash in person would be your best bet.\n\n8. Bisq is non-custodial and decentralised, which makes it harder to be shut down. RoboSats could be shut down if the sole operator were arrested for whatever reason.\n \N 11263 \N 138663 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.38245263485018 0 \N \N f 0 \N 0 229590206 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448524 2025-03-22 16:52:41.294 2025-03-29 22:39:47.918 Everybody has to self-promote now. Nobody wants to. > _"While Big Tech sites like Spotify claim they’re “democratizing” culture, they instead demand artists engage in double the labor to make a fraction of what they would have made under the old model. That labor amounts to constant self-promotion in the form of cheap trend-following, ever-changing posting strategies, and the nagging feeling that what you are really doing with your time is marketing, not art. Under the tyranny of algorithmic media distribution, artists, authors — anyone whose work concerns itself with what it means to be human — now have to be entrepreneurs, too."_ https://www.vox.com/culture/2024/2/1/24056883/tiktok-self-promotion-artist-career-how-to-build-following 10393 \N 448524 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 13.3714085596333 0 \N \N f 0 \N 0 217549776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448478 2025-03-22 16:13:31.974 2025-03-29 22:39:51.475 \N It's great that it's possible to custody small amounts at zero margin cost to the custodian. We all kind of take this feature of digitally native money for granted. \n\nBut, as we are all aware, it's not ideal. https://example.com/ 17714 448471 448092.448203.448471.448478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.8291908460477 0 \N \N f 0 \N 0 124572827 0 f f \N \N \N \N 448092 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307676 2024-11-25 09:39:10.894 2025-03-29 22:39:51.475 \N Seems a very weird way to do this and have amboss generated the preimage of the payment. https://example.com/ 20023 307616 307616.307676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.003360898 0 \N \N f 0 \N 0 134544127 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307702 2024-11-25 10:03:20.556 2025-03-29 22:39:51.475 \N I am in the same boat. I actually started trying to use a physical kanban board I created in my office with cards for work and personal stuff. It hasn't stuck yet but it's an idea. https://example.com/ 20479 307681 307609.307658.307681.307702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2548013591439 0 \N \N f 0 \N 0 81112376 0 f f \N \N \N \N 307609 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448445 2025-03-22 15:51:33.961 2025-03-29 22:39:51.476 \N "Stop feeling sick"\n\n"just feel better" https://example.com/ 9084 447944 447944.448445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8942292512631 0 \N \N f 0 \N 0 53092779 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448466 2025-03-22 16:04:19.012 2025-03-29 22:39:51.476 \N congrats! love the newsletter 🤙 https://example.com/ 9275 447251 447251.448466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.6551931511597 0 \N \N f 0 \N 0 146402533 0 f f \N \N \N \N 447251 \N 0 0 \N \N f \N 2025-03-29 09:22:39.479 f \N \N \N 0 0 0 0 0 0 0 448456 2025-03-22 15:57:41.09 2025-03-29 22:39:51.476 \N Another person spoiled by the convience of IOUs. https://example.com/ 1577 447768 447618.447657.447768.448456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.19795532667475 0 \N \N f 0 \N 0 249685067 0 f f \N \N \N \N 447618 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448783 2025-03-22 21:41:55.954 2025-03-29 22:39:51.472 \N I have had a similar experience of surprise and delight at the senior center. My friend took me with her to their weekly music sharing circle, which had a cute name but I forgot it... Everyone went around and performed a song. There were guitars, violins, clarinets. It was informal, sweet, respectful. I played a Phoebe Bridgers song. https://example.com/ 1438 448217 447892.447900.448217.448783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.66979582276824 0 \N \N f 0 \N 0 192576830 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448792 2025-03-22 21:49:25.591 2025-03-29 22:39:51.472 \N I write all my longer posts here on Libre Office Writer, and use the spreadsheets for my business. https://example.com/ 19378 448789 448349.448452.448643.448789.448792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8129919553338 0 \N \N f 0 \N 0 175291688 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448826 2025-03-22 22:34:34.486 2025-03-29 22:39:51.472 \N Signaling self-awareness like that seems like a good strategy, given how so many prominently loud voices are so deficient in it. https://example.com/ 1425 448015 448015.448826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.26054832997122 0 \N \N f 0 \N 0 7993097 0 f f \N \N \N \N 448015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448793 2025-03-22 21:49:48.431 2025-03-29 22:39:51.472 \N Generally, Yes - there are more shares that have been issued.\n\nIf you had 10 shares of a company that had 100 total shares, you would have 10% equity. If the company offered new shares (e.g 20 more shares to have a total of 120 shares in the market), you would have 8% (10/120)\n\n https://example.com/ 9362 448779 447892.448746.448779.448793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.845202271715237 0 \N \N f 0 \N 0 97748655 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448775 2025-03-22 21:28:19.442 2025-03-29 22:39:51.472 \N To be honest I was expecting a write-up and a code repository with an integration guide, but will listen to this one. https://example.com/ 16858 448773 448527.448695.448713.448732.448773.448775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5131413464479 0 \N \N f 0 \N 0 121023285 0 f f \N \N \N \N 448527 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448776 2025-03-22 21:30:18.107 2025-03-29 22:39:51.473 \N Do you have any interest in what John Nash theorized about currency dynamics? https://example.com/ 16638 448771 447761.448319.448686.448707.448716.448771.448776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7564729821508 0 \N \N f 0 \N 0 247832253 0 f f \N \N \N \N 447761 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448815 2025-03-22 22:18:47.932 2025-03-29 22:39:51.472 \N Saw a related article in Axios. There was a link at the bottom "lightning network has it's share of issues". Found the owner of the repo it is a Bitcoin Cash / Roger Ver shill... pinged the author Crystal from Axios, that while lightning isn't perfect, this is a disengenious narrative driven list. Hopefully they remove. If curious can follow-up. She responeded to my email outlining this!\n\n\nRepo/list of anti-lightning: https://github.com/davidshares/Lightning-Network\n\nRepo owner: https://twitter.com/davidshares\n\nArticle: https://www.axios.com/2022/09/27/payments-shop-strike-raises-80-million-in-bitcoin-maximalist-flex https://example.com/ 16754 448814 448805.448814.448815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4396808432899 0 \N \N f 0 \N 0 197507357 0 f f \N \N \N \N 448805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448818 2025-03-22 22:24:55.936 2025-03-29 22:39:51.472 \N Let's fucking gooooooo! https://example.com/ 16970 104413 103905.104402.104413.448818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3119593813692 0 \N \N f 0 \N 0 168585184 0 f f \N \N \N \N 103905 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448828 2025-03-22 22:36:32.568 2025-03-29 22:39:51.473 \N US is taming the inflation but globally it’s just starting https://example.com/ 13198 448796 448796.448828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4716292207249 0 \N \N f 0 \N 0 158567599 0 f f \N \N \N \N 448796 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448829 2025-03-22 22:37:30.846 2025-03-29 22:39:51.473 \N Aww thank you 😊 I hope to find some time to contribute more soon. https://example.com/ 21501 448691 448691.448829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.800302297287 0 \N \N f 0 \N 0 5389317 0 f f \N \N \N \N 448691 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448787 2025-03-22 21:45:49.524 2025-03-29 22:39:51.473 \N Went bouldering after a long while again. I sucked hard as expected haha but I will probably (hopefully) regain my strength pretty fast.\n\nAlso, my coinjoins using Whirlpool in Sparrow wallet are almost done! Only 2 UTXOs remaining from 12. Took only almost 2 weeks lol.\n\nAfter that, I can finally start to open some channels and dip my toes into running a LN routing node.\n\nWill also sign a contract for a new position related to bitcoin today. One step closer to finding my spot in the bitcoin space!\n https://example.com/ 2022 448780 447892.448746.448780.448787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9469720561817 0 \N \N f 203715323 \N 2 22547230 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448811 2025-03-22 22:12:03.92 2025-03-29 22:39:51.473 \N Day 73 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 16876 448230 448200.448230.448811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.06492329041076 0 \N \N f 168301472 \N 2 72356803 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448798 2025-03-22 21:58:13.246 2025-03-29 22:39:51.474 \N guys, please don't zap this comment!\nAll sats are going to Natalia and then fw to me, is like a continuous loop FFS!\nThis is pure madness! https://example.com/ 11714 448035 448029.448035.448798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.25417210762083 0 \N \N f 0 \N 0 67005491 0 f f \N \N \N \N 448029 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448799 2025-03-22 22:01:58.913 2025-03-29 22:39:51.474 \N > I'm having a bad day, week, month, year, or life. Where's the best place for me to make you miserable too while pretending that this post is the cause?\n\n> I'm miserable but also sanctimonious so I'd like to write a eulogy for SN that you'll read. Where's the best place to do that?\nIn this thread, but it might be more fitting to write it on nostr or X and tag me.\n\nlmao :) https://example.com/ 630 448349 448349.448799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0804222373497154 0 \N \N f 0 \N 0 229693694 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 47539 2023-08-08 19:03:48.381 2025-03-29 22:39:47.918 Random sort for items? Magnificent idea from @btcbagehot in service of [evergreenness](https://stacker.news/items/331942).\n\n> We've been discussing adding a "discover" page to surface old, fantastic content, but I never use the discover page on any site.\n> \n> Benefits over discover page:\n> \n> 1. it doesn't need a custom UI and the UX is familiar to existing stackers, ie they would be much more likely to actually use it.\n> 2. One of the reasons I think discovery pages don't get used is because their UI is bespoke, unfamiliar, and frankly have a "random" UI\n> 3. @ekzyis notes discover pages also have "hidden/unclear biases (users pretty much expect some hidden agenda now thanks to web2)"\n>\n> We probably don't want this to be exactly random. Meaning we don't want it surface sub-standard content, but we do want it surface content above a certain threshold of quality without regard for time.\n\nA bunch more fantastic ideas: https://github.com/utanapishtim/stacker.news/blob/snip-0006/snips/snip-0006.md https://github.com/stackernews/stacker.news/issues/832 10280 \N 47539 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.3682069328074 0 \N \N f 0 \N 0 85932968 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 140432 2024-03-10 10:54:09.37 2025-03-29 22:39:47.92 Lightning Is Doomed \N https://bitcoinmagazine.com/technical/lightning-is-doomed 20778 \N 140432 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 14.4667780245824 0 \N \N f 0 \N 0 236775679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448835 2025-03-22 22:45:12.419 2025-03-29 22:39:51.473 \N As every week I'm working in a Bitcoin video.\nThis episode is about Bitcoin Christmas gifts, so far, the list includes: OpenDime, Ledger Hardware Wallet, Sats on LightSats, some items from https://shop.lnbits.com/ and others from https://vulcan21.com/product/seedsigner-open-pill/\n\nThe video will be release next week.\n\nCheers\n https://example.com/ 14731 448817 448817.448835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6205016930787 0 \N \N f 0 \N 0 194289449 0 f f \N \N \N \N 448817 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307626 2024-11-25 09:05:16.149 2025-03-29 22:39:51.473 \N If you want further clarification this is actually true:\n\nAirplane mode on phones turn the cellular radio off completely but having a SIM would still let you use over-IP carrier services like WiFi Callng. Send an SMS to yourself when you have Airplane mode on, you will receive it.\n\nJust not having a SIM isn't enough, you need to have both no SIM and airplane mode because it will broadcast to allow calling 911.\n\nThe new Pixel Tablet has no cellular radio if you want to completely avoid it.\n\n https://example.com/ 10611 307616 307616.307626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3901128105417 0 \N \N f 0 \N 0 38336390 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307311 2024-11-24 23:04:35.762 2025-03-29 22:39:51.473 \N Good ole OFAC! Appreciate the update. https://example.com/ 1983 307258 307258.307311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5007672710526 0 \N \N f 0 \N 0 61410873 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 700 2022-08-20 12:21:29.937 2025-03-29 22:39:51.473 \N They could be manual "bots" :) https://example.com/ 21104 644 644.700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.645193251381286 0 \N \N f 158590879 \N 1 95633026 0 f f \N \N \N \N 644 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448832 2025-03-22 22:42:03.312 2025-03-29 22:39:51.474 \N It's alive: 48 comments in 28 minutes. I missed this! https://example.com/ 14669 448635 448635.448832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3087879283797 0 \N \N f 0 \N 0 240204411 0 f f \N \N \N \N 448635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448833 2025-03-22 22:42:08.115 2025-03-29 22:39:51.475 \N I'm still forming my opinion, but search and discovery seem most attractive atm. I see a couple possible moats: 1) having access to the most data (by running the beefiest/most performant/best connected relays) or 2) having the best algorithm (I think social graph + ValueRank are both interesting primitives, but they'll likely be tinkered with and mashed up with PageRank and/or other data). Probably a lot of others I haven't thought of yet.\n\nAnother big winner could just be building the most popular consumer app that mashes up messaging/payments and then offering financial services on top. I think CashApp is well positioned there.\n\nI'm personally excited about disrupting the music industry. I love (and make) music, so am eager to see a much better platform than Spotify.\n\nAnd, again, the big winner will likely be some brand new, kinda weird use case!\n\n Do you have any early thoughts on where value accrues? https://example.com/ 21444 448820 448820.448833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3861448570834 0 \N \N f 0 \N 0 103351673 0 f f \N \N \N \N 448820 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307598 2024-11-25 08:27:14.94 2025-03-29 22:39:51.475 \N top of the morning to all the cowboys 🤠 https://example.com/ 5527 307595 306830.306832.307574.307576.307592.307595.307598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3995538178358 0 \N \N f 0 \N 0 203335526 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307032 2024-11-24 17:10:09.432 2025-03-29 22:39:47.92 This Day in Stacker News: June the 17th *Read the previous edition [here](https://stacker.news/items/576152/r/Undisciplined).*\n\nQuite a few repeats today\n\n* * - \n\n### June 17th, 2023 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[Show SN: First release of my open-source Stacker News client :zap:](https://stacker.news/items/194547/r/Undisciplined)**\n\n> Today, I'm thrilled to announce the first public release of a Stacker News client that I've been working on for the past few weeks.\n\n*8639 sats \\ 29 comments \\ @felipe \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/194525/r/Undisciplined?commentId=194528**\n\n> It is a culture that was formed on Twitter. It is a culture that is unique in its entirety to Twitter. You have Bitcoin, and you have Bitcoin related communities on various platforms who may have developed their own customs. "Bitcoin maxi" is nowhere near the right description for this group.\n\n*1391 sats \\ 1 reply \\ @nerd2ninja \\ ~bitcoin*\n\n----\n\n### 🏆 `TOP STACKER`\n\n**@k00b**\n\n*7786 stacked \\ 12.2k spent \\ 6 posts \\ 12 comments \\ 0 referrals*\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n\n\n\n### June 17th, 2022 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[New lightning explorer with advanced search and filter capabilities now publicly available | bolt.observer\n](https://stacker.news/items/36796/r/Undisciplined)**\n\n> We are thrilled to announce that our explorer is now available without registration! Explore the #lightningnetwork with https://bolt.observer/explorer \n\n*1580 sats \\ 5000 boost \\ 15 comments \\ @boltobserver \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/36792/r/Undisciplined?commentId=36799**\n\n> Lyn Alden\n\n*274 sats \\ 3 replies \\ @nerd2ninja \\ ~bitcoin*\n\n----\n\n### 🏆 `TOP STACKER`\n\n**@cryptocoin**\n\n*858 stacked \\ 806 spent \\ 21 posts \\ 70 comments \\ 0 referrals*\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n\n\n\n### June 17th, 2021 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[Stephan Livera live tweets "Bitcoin Mining Council" meeting](https://stacker.news/items/51/r/Undisciplined)**\n\n> Darin: the better we can put the message out about the facts, and let's be intellectually honest about bitcoin rather than reckless graphs\n\n*116 sats \\ 1 boost \\ 1 comment \\ @k00b \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/26/r/Undisciplined**\n\n> afaict there isn't a ton of consensus around this being the soft fork yet\n\n*21 sats \\ 1 reply \\ @k00b \\ ~bitcoin*\n\n----\n\n### 🏆 `TOP STACKER`\n\n**@k00b**\n\n*3 stacked \\ 20 spent \\ 12 posts \\ 2 comments \\ 0 referrals* \N 21825 \N 307032 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.52475951160365 0 \N \N f 121827359 \N 1 13483389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448918 2025-03-23 01:11:34.05 2025-03-29 22:39:47.921 Is Milei actually going to win this thing (63.4% betting odds)? ![IMG_3688.jpeg](https://m.stacker.news/5283)https://electionbettingodds.com/Argentina2023.html\n\n>Javier Milei is a strong supporter of Bitcoin. He believes that it is a superior form of money than fiat currencies and that it has the potential to revolutionize the global economy. He has called for the adoption of Bitcoin as legal tender in Argentina and has said that he would abolish the country's central bank if he were elected president.\n>\n> His support for Bitcoin is based on his belief in its libertarian principles. He believes that Bitcoin is a decentralized and censorship-resistant form of money that is not subject to the control of governments or banks. He also believes that it is a more stable and secure form of money than fiat currencies, which are prone to inflation and manipulation.\n>\n>Milei's views on Bitcoin have made him a popular figure among many crypto enthusiasts in Argentina. He is seen as a champion of their cause and a potential leader in the fight for a more decentralized and libertarian future. \N 21416 \N 448918 \N \N \N \N \N \N \N \N DIY \N ACTIVE \N 6.43542825670927 0 \N \N f 0 \N 0 147259291 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307258 2024-11-24 21:45:19.502 2025-03-29 22:39:47.921 Books And Articles Newsletter, Issue 38 ![](https://m.stacker.news/59659)\n\n\n### News Of The Week \n\nWelcome to the Books And Articles newsletter. Thanks to everyone who posted. \n \nBooks And Articles is benefitting from what I see as the increase in quality posts on SN generally. I hope this is because of its growing popularity in the bitcoin community. For our territory, I am very happy to see that @denlillaapan contributed a Top Post this week. For those who don’t know, he is a writer and editor with a financial background. His credits include editing two of the best bitcoin books ever written: Broken Money, by Lyn Alden, and Resistance Money, by Andrew M. Bailey, Bradley Rettler, and Craig Warmke. He is now posting his own writing on Stacker News. He has also edited some of @realBitcoinDog’s written work, another SN newcomer who has brought his talents and energy to SN. \n\nAlthough he’s not new to Stacker News, I also have been incredibly impressed by the articles being written by @SimpleStacker in reviewing bitcoin economic papers. I have learned a lot from him over the past few weeks. His most recent article is once again this week’s Top Post, and I look forward to many more.\n\nI also want to mention @gpvansat, who’s contributed chronicles of his travels through Africa, and @carlosfandango, who regularly contributes book reviews and prose essays. Both of these writers have had Top Posts this week.\n\nThanks to everyone who helps to make this space better. \n \n\nAs always, please reply with suggestions and opinions on how to make this territory better. \n\nLogo design by @plebpoet\nLink to last week’s newsletter: \nhttps://stacker.news/items/731008/r/siggy47\n\n\n### Top Five Posts Of The Week \n\nHere are this week’s top posts:\n\n- [Minneapolis Fed Bitcoin Paper | Article Review](https://stacker.news/items/734528/r/siggy47) by @SimpleStacker\n\n- [Wandering w/ Purpose: An interview with a Bitcoin merchant in Mozambique](https://stacker.news/items/734012/r/siggy47) by @gpvansat\n\n- [Who is your favorite Science Fiction Author?](https://stacker.news/items/732817/r/siggy47) by @Rothbardian_fanatic\n\n- [Parents' group calls for removal of Han Kang's 'The Vegetarian' from libraries](https://stacker.news/items/736747/r/siggy47) by @south_korea_ln\n\n- [Book review | ‘Russia: Revolution and Civil War 1917-1921’ by Anthony Beevor](https://stacker.news/items/735044/r/siggy47) by @carlosfandango\n\n### Siggy’s Suggestions\n\n- [Bingeworthy: Slow Horses](https://stacker.news/items/734282/r/siggy47) by @StillStackinAfterAllTheseYears\n\nStillstackin’s review of this TV series got me interested in Slow Horses, something I can watch while waiting for the next episode of The Penguin to get released. \n\n- [Book Review, Nate Silver's _On the Edge_ (via AIER, Daily Economy)](https://stacker.news/items/735212/r/siggy47) by @denlillaapan\n\nI have to admit that all I knew about Nate Silver before reading this post is that he was “the poll guy.” I know. I’m embarrassed. \n\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n- ["Who are you?" — How do I want to answer?](https://stacker.news/items/674910/r/siggy47) by @IamSINGLE\n\n- ["My journey with Bitcoin: the experience of an ordinary Cuban"](https://stacker.news/items/676287/r/siggy47) by @BTCLNAT\n\n- [@realBitcoinDog Bitcoin Story - No, social media had nothing to do with it xD](https://stacker.news/items/722720/r/siggy47) by @realBitcoinDog\n\n\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n- [And Then She Disappears - Block 1](https://stacker.news/items/680735/r/siggy47) by @ginkgo\n\n### Book Reviews\n\n- [Book Review, Nate Silver's On the Edge](https://stacker.news/items/735212/r/siggy47) by @denlillaapan\n\n- [The Mandibles by Lionel Shirver](https://stacker.news/items/719755/r/siggy47) by @21futures\n\n- [Book Review | Catcher in the Rye - Better the second go around as an adult](https://stacker.news/items/709553/r/siggy47) by @realBitcoinDog\n\n- [Book Review | The Diving Bell and the Butterfly](https://stacker.news/items/706975/r/siggy47) by @carlosfandango\n\n- [Book Review | Black Coffee Blues by Henry Rollins](https://stacker.news/items/722727/r/siggy47) by @carlosfandango\n\n- [Book review | ‘Russia: Revolution and Civil War 1917-1921’ by Anthony Beevor](https://stacker.news/items/735044/r/siggy47) by @carlosfandango\n\n- [The Underground Man by Dostoevsky](https://stacker.news/items/707544/r/siggy47) by @Nadia\n\n- [Emil Cioran: 'The Fall into Time ("Sturz in die Zeit" in German)](https://stacker.news/items/694642/r/siggy47) by @TomK\n\n- [Book Review: The Book of Elsewhere, by China Mieville and Keanu Reeves](https://stacker.news/items/697427/r/siggy47) by @jurraca\n\n- [A Journey Through Emiko Jean's The Return of Ellie Black](https://stacker.news/items/691236) by @Melisa\n\n- [what i read, and wrapping up in july:](https://stacker.news/items/630204/r/siggy47) by @speakingyourtruth\n\n- [Book Review: Nothing Like The Movies by Lynn Painter](https://stacker.news/items/670569/r/siggy47) by @speakingyourtruth\n\n- [The Mandibles: A Review](https://stacker.news/items/668210/r/siggy47) by @jimmysong\n\n- [Self-Reliance by Emerson](https://stacker.news/items/669132/r/siggy47) by @ek\n\n\n- [Book - The Victorian Internet by Tom Standage (1998)](https://stacker.news/items/673776/r/siggy47) by @Signal312\n\n- [Review: The Righteous Mind](https://stacker.news/items/665765/r/siggy47) by @Undisciplined\n\n- [Book Review: Sliced Americana](https://stacker.news/items/663627/r/siggy47) by @jbschirtzinger\n\n- [Saboteurs: How Secret, Deep State Occultists Are Manipulating American Society](https://stacker.news/items/675002/r/siggy47) by @jbschirtzinger\n\n- [The New Manners and Customs of Bible Times](https://stacker.news/items/691719) by @jbschirtzinger\n\n- [Book Review: Q By Luther Blisset](https://stacker.news/items/728848/r/siggy47) by @jbschirtzinger\n\n- [Book Review | “The Happiness Project” and “Happier at Home”](https://stacker.news/items/718985/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Self-Motivated Kid”](https://stacker.news/items/705694/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Perks of Being a Wallflower”](https://stacker.news/items/704856/r/siggy47) by @cryotosensei\n\n- [Book Review | “101 ways to bring out the best in your children & yourself”](https://stacker.news/items/667453/r/siggy47) by @cryotosensei\n\n- [Book Review | “Diary of a Wimpy Kid”](https://stacker.news/items/668335/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Daily Dad” by Ryan Holiday](https://stacker.news/items/684138/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002) by @cryotosensei\n\n- [Book Review | “The 17 Indisputable Laws of Teamwork”](https://stacker.news/items/687944) by @cryotosensei\n\n- [Book Review | “Wonder Doodles”](https://stacker.news/items/685335) by @cryotosensei\n\n- [Book Review | “Sompo Guide Tokyo”](https://stacker.news/items/702025/r/siggy47) by @cryotosensei\n\n- [Book Review | “Peak”](https://stacker.news/items/698568/r/siggy47) by @cryotosensei\n\n- [Book Reviews Directory #2](https://stacker.news/items/665395/r/siggy47)\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Bitcoin Academic Articles & Reviews\n\n- [Bitcoin Pricing, Adoption, and Usage: Theory and Evidence | Article Review](https://stacker.news/items/727081/r/siggy47) by @SimpleStacker\n\n- [Minneapolis Fed Bitcoin Paper | Article Review](https://stacker.news/items/734528/r/siggy47) by @SimpleStacker\n\n\n### Movie & Television Reviews\n\n- [Sound of Freedom | Movie Review](https://stacker.news/items/710780/r/siggy47) by @SimpleStacker\n\n- [Movie Review | “How to make millions before Grandma dies”](https://stacker.news/items/683086/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [El Encargado | Argentinian TV series | very good comedy](https://stacker.news/items/689468/r/siggy47) by @DarthCoin\n\n- [The IT crowd | hillarious super funny comedy TV series](https://stacker.news/items/694922/r/siggy47) by @DarthCoin\n\n- [Two TV series about the "Schrodinger's cat" theory](https://stacker.news/items/701874/r/siggy47) by @DarthCoin\n\n- [From | Que sera, sera... | new season 3 TV series](https://stacker.news/items/696122/r/siggy47) by @DarthCoin\n\n- [Bingeworthy: Slow Horses](https://stacker.news/items/734282/r/siggy47) by @StillStackinAfterAllTheseYears\n\n\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [a new kind of poem (that you can see 👀 and hear 🦻)](https://stacker.news/items/676672/r/siggy47) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n- [Let's pretend we loved each other](https://stacker.news/items/666008/r/siggy47) by @Nadia\n\n- [That's MINE! Poetry.](https://stacker.news/items/661773/r/siggy47) by @Malach17\n\n- [Silly rhymes written by a guy (maybe) fallen in love](https://stacker.news/items/666985/r/siggy47) by @0268a5c238\n\n\n\n### Short Stories\n\n- [The poet and the reader || short story](https://stacker.news/items/723702/r/siggy47) by @02879c7d869\n\n- ['little fictions' presents: Cowboys Don't Belong](https://stacker.news/items/713535/r/siggy47) by @plebpoet\n\n- [Short Story: “Quarter” by Eduardo Prospero](https://stacker.news/items/713942/r/siggy47) by @eduardopro\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 21145 \N 307258 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.9868454840846 0 \N \N f 3602237693 \N 32 92653894 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 28 0 0 448867 2025-03-22 23:48:50.227 2025-03-29 22:39:51.473 \N That would be perfect. We can have a Wall of Shame on SN live 🤣 https://example.com/ 20433 448861 448861.448867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3421124701702 0 \N \N f 0 \N 0 76233692 0 f f \N \N \N \N 448861 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448854 2025-03-22 23:27:20.066 2025-03-29 22:39:51.473 \N I'd like the territory owner to get a message whenever their territory gets muted:\n\n"You've been rejected by __________. GFY."\n\nCan the team get on that and make it retroactive? https://example.com/ 21539 448477 448029.448477.448854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3769666682262 0 \N \N f 0 \N 0 18621683 0 f f \N \N \N \N 448029 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448844 2025-03-22 23:14:25.796 2025-03-29 22:39:51.473 \N Awesome! The only thing keeping it from being my ideal browser is the shitcoinery. I hope they drop BAT and add Lightning integration in the future. https://example.com/ 17991 448837 448691.448837.448844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.098233545841 0 \N \N f 227926742 \N 1 181720298 0 f f \N \N \N \N 448691 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448843 2025-03-22 23:14:21.913 2025-03-29 22:39:51.474 \N Thanks very much. That was fast. Only 11,237 more and you're done. https://example.com/ 13575 448836 447892.448822.448836.448843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9105426750787 0 \N \N f 0 \N 0 186980134 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448848 2025-03-22 23:18:47.013 2025-03-29 22:39:51.474 \N Ability to easy change mining algo would itself mean centralization. https://example.com/ 10849 448805 448805.448848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6592346360041 0 \N \N f 0 \N 0 138341412 0 f f \N \N \N \N 448805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448863 2025-03-22 23:42:08.981 2025-03-29 22:39:51.475 \N > wonder if being tired specifically helps those people who tend to have an overactive "editor" part of the mind.\n\nOne of the things that happens during sleep deprivation is a loss of executive function. One way this manifests is less inhibition. One of the most important inputs to creativity is to de-inhibit: to do, say, try things you normally wouldn't. So that all makes sense.\n\nHowever, on net, my sense is that you're right that the effects on this sum to being depressive in a whole bunch of ways. So you might remember the periodic punch-drunk goofy high points, but the overall trend is worse. https://example.com/ 675 448862 448851.448862.448863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2354813626034 0 \N \N f 0 \N 0 219076558 0 f f \N \N \N \N 448851 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52809 2023-08-20 14:48:27.222 2025-03-29 22:39:47.918 Robosats node having major issues, order book closed, new node next week Issue tracking: https://github.com/lightningnetwork/lnd/issues/7917\n\nSource: https://snort.social/e/nevent1qqsd4vhzcpjtjkn7a56mpf2uv5hfaylw4w5epegfqa54ff80htv8whgppemhxue69uhkummn9ekx7mp024areu \N 11515 \N 52809 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.9978591815972 0 \N \N f 0 \N 0 80580344 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52748 2023-08-20 12:58:48.808 2025-03-29 22:39:47.918 The road to hell is paved with asphalt Asphalt is fiat.\n\n- It is the cheapest material (upfront) to construct a road with\n- It ends up needing lots of (expensive) ongoing maintenance over time\n- It looks ugly on day one, and worse with every passing day\n- It is prone to potholes and cracks\n- It blocks water from being absorbed\n- It makes roads and cities way hotter than they should be in the summer\n- It comes with a ton of smelly, toxic fumes during installation\n- It needs to be completely replaced in a couple decades\n\nBrick and cobblestone roads absolutely crush asphalt on all these metrics, and come with the added benefit of slowing down traffic naturally (reducing the need for ugly speed signs and speed cameras).\n\nThe higher upfront cost of brick and cobblestones is neutralized by the lack of maintenance needed and hundred-plus year lifespan. on top of all that, it also comes with the added benefit of being a beautiful road that builds character over time.\n\nDevon makes some great points here, hope we see more brick and cobblestone roads (especially on residential streets) on a Bitcoin standard. https://devonzuegel.com/the-road-to-hell-is-paved-with-asphalt 1310 \N 52748 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.4953947425976 0 \N \N f 0 \N 0 146540119 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 286012 2024-11-04 11:51:19.694 2025-03-29 22:39:47.918 DeepDive into Liquid: Part II - Asset Creation and Configuration This is a multipart DeepDive that will focus on the Liquid Sidechain. It will be released in 3 Parts:\n\n* [Part I](https://stacker.news/items/399400): Overview, Installation, and first Peg-In\n* Part II (this): Asset Creation and Configuration\n* Part III: Advanced Topics and Peg-out\n\n## Assets\n\n[In Part I](https://stacker.news/items/399400), we successfully Pegged-In our BTC and received L-BTC, now lets use that L-BTC to do some interesting things with Asset Issuance:\n\nBefore we jump straight into creating an asset, let us first look at our existing wallet[^1]:\n\n```\n$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS getwalletinfo\n\n"balance": {"bitcoin": 0.00149155}\n\n$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS dumpassetlabels\n\n{"bitcoin": "6f0279e9ed041c3d710a9f57d0c02928416460c4b722ae3457a11eec381c526d"}\n```\n\nSo our wallet already has an asset called 'bitcoin' which has an associated UUID of `6f0279e9ed041c3d710a9f57d0c02928416460c4b722ae3457a11eec381c526d`. Everything in Liquid is an 'Asset' (including L-BTC) and each of these Assets can have different features. \n\nLooking up this asset label on [https://blockstream.info/liquid/assets](https://blockstream.info/liquid/asset/6f0279e9ed041c3d710a9f57d0c02928416460c4b722ae3457a11eec381c526d) we can see some info about it:\n\n![1-part2-assets.png](https://m.stacker.news/14408)\n\nThis shows us the total amount of L-BTC in circulation, additionally we can see how much was Pegged-In, Out, and Burned. Most notably, this confirms that everything is in balance. The Circulating Supply = (PEG_IN - PEG_OUT - BURNED), so no debasement has happened. \n\n### Issuing our own Asset\n\nLet's issue our own asset, luckily this is pretty straight forward:\n```\n$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS issueasset 10 0 true\n \n{\n "txid": "8a12dd64c43de200cc7addb6c59f67bdbc6481ef1cc8b24253c7c1daba3c4e06",\n "vin": 0,\n "entropy": "3b8ded63f872d53d93b40ea415f3473b50c033a8e9abc1f0e7418e7f16e98dec",\n "asset": "8aa889f0bd16bab7d236ab6f3583481382bf976433360ff240cf22b79181a50f",\n "token": "2eb4da7c84a7b4db2944ead6b05041a5d8d8f4a73cd1413b140b44c4ec42fbdf"\n}\n```\n### Exploring our new Asset\n\nChecking out our wallet we see:\n```\n$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS getwalletinfo\n\n"balance": {"8aa889f0bd16bab7d236ab6f3583481382bf976433360ff240cf22b79181a50f": 10.00000000,\n"bitcoin": 0.00140447,}\n```\n\n* We can see our wallet has 10 of our assets[^2] (which has a label '8aa889...'), lets checkout what the [Liquid network knows about it](https://blockstream.info/liquid/asset/8aa889f0bd16bab7d236ab6f3583481382bf976433360ff240cf22b79181a50f): \n\n![2-part2-firstasset.png](https://m.stacker.news/14409)\n\n* So publicly we know the following:\n - It cannot be re-issued (fixed supply token)\n - It has only been issued once\n - However both the *issued amount and the circulating supply* has been hidden from us.\n\nIt's nice to have hidden assets, but practically speaking they might not be useful in many situations. For instance, suppose that we wanted users to be able to verify the circulating amounts (i.e. to prevent debasement). \n\nIt is possible to 'unblind' this information to clients, but that would involve distributing an unblinding key to each client. Luckily there is a simple solution: we can issue the asset as unblinded - which will permit this information to be publicly available *without* affecting the security of the actual transactions:\n\n### Issuing a Non-Confidential Asset\n\n* Let's create another asset and this time choose a different option (specifically, lets create this asset unblinded by setting the last value to **false**. This option controls blinded / unblinded behavior):\n\n```\n$ sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS issueasset 10 0 false\n\n{\n "txid": "225f3ed16457467673fd64f3577031b91be370615b3feba53e1cc0b256768944",\n "vin": 0,\n "entropy": "fc4b02ee3892faaef2ddb673d437910ca75ca4d4e5ff4c1cb6ef1e3a4667a942",\n "asset": "41c19a473c71298a28342ccbf6fcbd3042cae8607b3b79d336b4c02e89ba2c66",\n "token": "10178003de4d2141fc318e3a61a7c8e1d43d3842a87fb8fb18fc1c1b09d081cb"\n}\n```\n\n...and checking again what [the Liquid network knows about it](https://blockstream.info/liquid/asset/41c19a473c71298a28342ccbf6fcbd3042cae8607b3b79d336b4c02e89ba2c66)\n\n![3-part2-secondasset.png](https://m.stacker.news/14410)\n\n* Now we can see the total issued amount / supply[^2]\n\n* Let's try sending 2 of these unblinded assets to another wallet (my Blockstream Green mobile wallet) and see what is visible on the network.\n \n```\n$ sudo ./scripts/app compose elements exec node elements-cli -named -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS sendtoaddress address="VJLKDWB..." amount=2.0 assetlabel="41c19a..."\nb1d0592319fc5a6ed4e2ea912ddbc9e630e0a13a083a178f69054129ef589d25\n```\n\n* Looking up this transaction on the [block explorer, we see](https://blockstream.info/liquid/tx/b1d0592319fc5a6ed4e2ea912ddbc9e630e0a13a083a178f69054129ef589d25):\n\n![4-part2-tx.png](https://m.stacker.news/14411)\n\nThis is interesting: So although the transaction is visible, we can't see what was actually transferred (even though the details of the asset are visible, *it is still hidden inside the transaction*). \n\nFurther, where is my Green Wallet address (ie. VJLKDWB...)? We can see 3 output addresses, presumably these are: Change, Fee, and Recipient...but where the actual Green Wallet address? \n\n* Let's look up my [Green Wallet address directly in the explorer](https://blockstream.info/liquid/address/VJLKDWB6zezPptnxQu3zAJbNBFqSKER6VWjnnDaVQxsUivQB974qRZWzW9yDa9ziokVquRkuiL6muC1c):\n\n![5-part2-greenaddr.png](https://m.stacker.news/14412)\n\nSo now this shows us that the *Confidential Address: VJLKDWB...* corresponds to the *Unconfidential Address: GnDXE5...* Through the magic of one-way hashes, if we know the "Confidential" address we can then derive its public address. However, just by looking at the public blockchain, there is no way to reverse that hash. \n\nNow, lets look at how things look on the Green mobile wallet:\n\n![6-part2-noassetlabel.png](https://m.stacker.news/14414)\n\nWe can see that we've received 200,000,000 'units' of our custom asset. However, notice how there is no label. Whereas, for L-BTC and Tether it shows complete with name and ticker symbol. Showing just the asset UUID is not very user friendly. Let's see if we can remedy. \n\n# Registering our Asset\n\nThe publication of asset metadata info on Liquid works on a `.well-known` system where specific files are published on a webserver that you control. There are a few different steps to accomplish this:\n\n1. Create a new legacy address[^3], get public key for that address.\n2. Generate a Contract and Contract Hash using the information we want to appear in the public registry.\n3. Create our asset with Contract Hash embedded in it\n4. If we ever want to delete the asset from the registry, generate a delete script\n5. Generate a `liquid-asset-proof` text file and place in `.well-known` location on domain that matches contract\n6. Register (or unregister) the asset via Blockstream web API\n\nThats a lot of steps, and many are prone to error. Luckily for us there exist a bash script to basically do all of it. [Download the script from Blockstream](https://docs.liquid.net/docs/blockstream-liquid-asset-registry#issuing-with-a-contract-hash)\n\nSave that file as `issue_and_prepare_register.sh` and open with text editor to customize the following values.\n\n```\n#NOTE: SET YOUR OWN VALUES HERE, THESE ARE WHAT I USED AS A DEMO\n\nNAME="StackerNewsDemo-1"\nTICKER="SND-1"\nDOMAIN="coins.b0xxy.net"\nASSET_AMOUNT=10.0\nTOKEN_AMOUNT=0\nPRECISION=8\nCOLLECTION=""\nalias e1-cli="sudo ./scripts/app compose elements exec node elements-cli -rpcuser=$E_RPCUSER -rpcpassword=$E_RPCPASS"\n```\n\nWith these values set, you can run the script. This script will output 3 files:\n\n* liquid-asset-proof- (put this file in .well-known location of domain you set)\n* register_asset_.sh (Bash curl script to submit via Blockstream API)\n* delete_asset_.sh (Bash curl script to delete asset from registry)\n\nTake the `liquid-asset-proof-` file and place it in `.well-known` folder in root of domain (or sub-domain in this case). For instance, this will be placed in `https://coins.b0xxy.net/.well-known/liquid-asset-proof-3e62af3c80c56ab6fec3d1e5646637152afebaf2a86ace075bbb7a88702e1fe5` in this case. **Verify that you can actually reach it before proceeding to the next step**.\n\nThen you can run the `register_asset_ASSET.sh` script and you should get a json response back indicating success. \n\nOn my end, the script generated a new asset, [which can be seen here](https://blockstream.info/liquid/asset/3e62af3c80c56ab6fec3d1e5646637152afebaf2a86ace075bbb7a88702e1fe5)\n\n![7-part2-registered.png](https://m.stacker.news/14415)\n\nLooking at this newly created asset asset, we can see:\n * Has an actual Name + Ticker instead of just a UUID \n * Has decimalization preference set\n * Shows registered website that controls it\n * Has a Contract + Contract Hash associated with it\n\nNow if I send 2 of these to my same Blockstream Green Wallet:\n\n![8-part2-wassetlabel2.png](https://m.stacker.news/14416)\n\nNow it shows up in a much more user-friendly format. The only thing missing is a logo! How can we fix? Blockstream allows you to [upload logos for your assets on their website](https://blockstream.com/amp/asset-issuer/). So after doing that now we have:\n\n![9-part2-wassetlogo.png](https://m.stacker.news/14417)\n\n# Wrap-up and Next Session\n\nIn this session we issued assets[^4], looked at their basic features, and registered our own. In the next part in the series, we will delve into even more advanced aspects of Liquid like: Swaps, Contracts, etc. Finally we will discuss pegging-out and the broader use-cases of the technology.\n\n\n[^1]: The values E_RPCUSER and E_RPCPASS, where environmental variables we set in Part I\n[^2]: Like in bitcoin, 1 integer unit is 100,000,000 base units (not sats, but equivalent concept) - So in this case issuing "10" assets is really issuing 1000000000 units (10 x 100,000,000). \n[^3]: Using a legacy address for this task imposes no real implications to your security since its only used to remove assets from the registry. Its possible to do this with a non-legacy address, but more steps are involved and we will need to use other tools rather than what's already built-in to Elements node, so we will just use a legacy address for this. \n[^4]: One feature we neglected to checkout was issuing reissuable assets. If you are interested in seeing how that is done, you can check out the developer documentation here: [https://elementsproject.org/elements-code-tutorial/reissuing-assets](https://elementsproject.org/elements-code-tutorial/reissuing-assets)\n\n \N 4173 \N 286012 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.813649789241 0 \N \N f 160027323 \N 1 89989166 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307417 2024-11-25 01:15:03.797 2025-03-29 22:39:51.473 \N Monero, It's great for darknet stuff, but in Russian darknet marketplaces everyone uses bitcoin.\nTron, great platform for moving USDT, but now Polygon is cheaper.\nEvery EVM blockchain is pretty much a platform for moving USDT, It's their only real use case. I think of them as a payment providers such as PayPal, but more open and decentralized (of course not as decentralized as bitcoin, but better than PayPal). https://example.com/ 1825 307258 307258.307417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4260774307634 0 \N \N f 0 \N 0 65841486 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448966 2025-03-23 03:08:01.521 2025-03-29 22:39:51.473 \N Territory owners need yesterday's rewards @k00b, @ek https://example.com/ 21014 448591 448591.448966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.938915172165 0 \N \N f 0 \N 0 202949194 0 f f \N \N \N \N 448591 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448954 2025-03-23 02:40:25.166 2025-03-29 22:39:51.473 \N I would like you guys to watch this incredible mini documentary posted by @nerd2ninja - https://stacker.news/items/513797\n\nHow America Became So Stupid - and is mentioning about Ed Bernays (methods of propaganda) what I always said about it, that are the core principles of dumbing down population.\n\nPlease give it a watch. Good share @nerd2ninja ! https://example.com/ 20275 448888 448888.448954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7832970956577 0 \N \N f 0 \N 0 228941875 0 f f \N \N \N \N 448888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307416 2024-11-25 01:14:43.282 2025-03-29 22:39:51.473 \N ![ukgov](https://i.imgflip.com/6x8zvq.jpg) https://example.com/ 9969 306400 306400.307416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.37343919623523 0 \N \N f 0 \N 0 215942341 0 f f \N \N \N \N 306400 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307410 2024-11-25 01:06:27.101 2025-03-29 22:39:51.473 \N Day 373 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 9169 307347 307347.307410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5078334796261 0 \N \N f 0 \N 0 188405121 0 f f \N \N \N \N 307347 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 136477 2024-03-04 16:51:15.48 2025-03-29 22:39:47.91 SN Saturday Newsletter 6/22/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [My project got hacked and user funds were stolen](https://stacker.news/items/577322)\n - [@bitcoinplebdev](https://stacker.news/bitcoinplebdev) open sources his shame after losing 200k sats in a hack of [BitcoinLink](https://www.bitcoinlink.app/). He made a mistake, like all programmers do, but he owns it unlike most.\n - 38.1k sats \\ 46 comments \\ [@bitcoinplebdev](https://stacker.news/bitcoinplebdev)\n2. [Ecash on Bitcoin Educational Resources](https://stacker.news/items/578313)\n - [@Scoresby](https://stacker.news/Scoresby) compiles a list of ecash resources after publishing [Why can't you buy ecash from a Cashu mint?](https://stacker.news/items/554143) and [Ecash mints are just like the Fed's Repo Window](https://stacker.news/items/565172).\n - 6.3k sats \\ 8 comments \\ [@Scoresby](https://stacker.news/Scoresby)\n5. [Doom is not a strategy](https://stacker.news/items/580394)\n - Is fiat doom prophecy just wishful thinking? [@jtwoodhouse](https://stacker.news/jtwoodhouse) argues bitcoiners see doom everywhere to justify their laziness.\n - 9.8k sats \\ 30 comments \\ [@jtwoodhouse](https://stacker.news/jtwoodhouse)\n6. [Bitcoin Circular Economy - a hard to achieve goal for many people](https://stacker.news/items/576140)\n - For those of us that want bitcoin to be more than a digital rock, merchant adoption is bitcoin's holy grail. Coach [@DarthCoin](https://stacker.news/DarthCoin) shouts advice about how to get there.\n - 5k sats \\ 47 comments \\ [@DarthCoin](https://stacker.news/DarthCoin)\n7. [Long-Term Support For Calle](https://stacker.news/items/581302)\n - [OpenSats](https://opensats.org/) announces long term financial sponsorship of [@calle](https://stacker.news/calle), the developer behind the [Cashu](https://cashu.space/) ecash mint.\n - 1.6k sats \\ 8 comments \\ [@siggy47](https://stacker.news/siggy47)\n\n\n##### Don't miss\n- [What Skills Do We Lose With Bitcoin?](https://stacker.news/items/578776)\n- [Ideas and Implementations of Bounties](https://stacker.news/items/576004)\n- [Ramifications Of A Samourai Plea Bargain](https://stacker.news/items/577631)\n- [Got Solar? How Much & What For?](https://stacker.news/items/576739)\n- [DoS Disclosure: LND Onion Bomb](https://stacker.news/items/578754)\n- [A single mall in Hong Kong hosts 11 Bitcoin OTC brokers and two ATMs](https://stacker.news/items/581228)\n- [Japan Bank to Overhaul Investments as Wrong-Way Rate Bets Trigger Bond Losses](https://stacker.news/items/579089)\n- [Chinas popped real estate bubble: Farmers plow fields between ruins](https://stacker.news/items/582624)\n- [Don’t Tell the French — But They’re Americans Now](https://stacker.news/items/575215)\n- [Who is your favorite video game villain?](https://stacker.news/items/580917)\n- [The Countries Receiving the Most Remittances From Abroad](https://stacker.news/items/577565)\n- [New Whirlpool coinjoin spotted](https://stacker.news/items/580120)\n- [Sharpening the Axe](https://stacker.news/items/577689)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Welcome new territory: ~tutorials! ](https://stacker.news/items/576665)\n- [Some Thoughts on My Failed SN Recruitment Effort](https://stacker.news/items/580594)\n- [Streaks](https://stacker.news/items/576005)\n- [Ideas and Implementations of Bounties](https://stacker.news/items/576004)\n- [When to increase your zap?](https://stacker.news/items/575774)\n\n##### This day in Stacker News\n\n*a series by [@Undisciplined](https://stacker.news/Undisciplined)*\n\n- [This Day in Stacker News: June the 16th](https://stacker.news/items/576152)\n- [This Day in Stacker News: June the 17th](https://stacker.news/items/577267)\n- [This Day in Stacker News: June the 18th](https://stacker.news/items/578271)\n- [This Day in Stacker News: Juneteenth](https://stacker.news/items/579270)\n- [This Day in Stacker News: June the 20th](https://stacker.news/items/580474)\n- [This Day in Stacker News: June the 21st ](https://stacker.news/items/581406)\n- [This Day in Stacker News: June the 22nd ](https://stacker.news/items/582741)\n\n\n[**all meta**](https://stacker.news/~meta/top/posts/week)\n\n-------\n\n##### Top Stackers\n1. [@Undisciplined](https://stacker.news/Undisciplined): 104.2k sats stacked\n2. [@BlokchainB](https://stacker.news/BlokchainB): 90.7k sats stacked\n3. [@Rsync25](https://stacker.news/Rsync25): 89.3k sats stacked\n4. [@grayruby](https://stacker.news/grayruby): 74.8k sats stacked\n5. [@k00b](https://stacker.news/k00b): 74.2k sats stacked\n\n------\n\n##### Top Spenders\n1. [@k00b](https://stacker.news/k00b): 232k sats spent\n2. [@kruw](https://stacker.news/kruw): 100.4k sats spent\n3. [@grayruby](https://stacker.news/grayruby): 57.7k sats spent\n4. [@Undisciplined](https://stacker.news/Undisciplined): 57.1k sats spent\n5. [@foundationdvcs](https://stacker.news/foundationdvcs): 50.2k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 391 days\n2. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 288 days\n3. [@Undisciplined](https://stacker.news/Undisciplined): 270 days\n4. [@JerryGarcia](https://stacker.news/JerryGarcia): 270 days\n5. [@OneOneSeven](https://stacker.news/OneOneSeven): 263 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 20979 \N 136477 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 5.89975229416172 0 \N \N f 0 \N 0 178234498 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307990 2024-11-25 14:36:41.628 2025-03-29 22:39:47.91 Starbucks is a layer two Ran across these essays by @futurepaul, thanks to @ek. A great read, fun website, give it a look!\n\n[](https://m.stacker.news/40535)\n\nThis post is now two years old, and I wonder how it might be received by people who spend a lot of time thinking about lightning and layer two's. I think first of all writing out "layer two" is no longer the move. https://trustisascalingsolution.com/starbucks-is-a-layer-two 1618 \N 307990 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.7713051358057 0 \N \N f 0 \N 0 191909281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 136272 2024-03-04 11:48:56.737 2025-03-29 22:39:47.918 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 2065 \N 136272 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.2572194967064 0 \N \N f 0 \N 0 33582045 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448975 2025-03-23 03:33:45.069 2025-03-29 22:39:51.473 \N *Deutsche Bank Analyst presenting to clients*\n\n"We've been seeing some nice routing fees from McDouchebag squared and LuckyDog" \n\n😂 https://example.com/ 684 448349 448349.448975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3903667677264 0 \N \N f 0 \N 0 13432363 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307263 2024-11-24 21:55:15.814 2025-03-29 22:39:51.473 \N > What steps should the Bitcoin community take to help all merchants accept Lightning payments?\n\nAll LN wallets must support transactions via NFC (with unlocked phone of payer and pop-up confirmation window)\nThen it will be faster process than current hassle with scanning QR codes. https://example.com/ 14258 307258 307258.307263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4217971057269 0 \N \N f 0 \N 0 186434831 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307682 2024-11-25 09:43:19.356 2025-03-29 22:39:51.473 \N I'd like to see more development done on OBW. I think it is highly under rated & has the potential to be the non custodial WoS.\n\nUsing WoS has the best experience in terms of speed, low fees, & appearance. So I still use it to onboard newbies https://example.com/ 1173 306412 306412.307682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9988941406364 0 \N \N f 0 \N 0 145012672 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307277 2024-11-24 22:19:53.785 2025-03-29 22:39:51.474 \N My day job is professional executor, and I'm working on offering my services to bitcoiners. Sort of collaborative custody upon death.\n\nI realize that many hardcore will *hate* the idea of *any* trusted third party involved, even if just an m of n keyholder after they're dead. But many may want something like this as at least a backup option in their layered inheritance plan.\n\nFwiw, I've seen hundreds of probate estate, and heirs / executors muck up even legacy assets all the time. Self-custodied bitcoin will be tough https://example.com/ 21254 307258 307258.307277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6263827645587 0 \N \N f 0 \N 0 205100491 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307268 2024-11-24 22:03:14.42 2025-03-29 22:39:51.474 \N [![here-we-go-again-gta.gif](https://imgprxy.stacker.news/bfal22W7edAI8JJ3RE6zhyQ3AOTp4RqfPgqMfHCM7oo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvMXpuYzZ3Z0gvaGVyZS13ZS1nby1hZ2Fpbi1ndGEuZ2lm)](https://postimg.cc/9427H4YR) https://example.com/ 10611 307258 307258.307268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7239118788217 0 \N \N f 0 \N 0 57194044 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307294 2024-11-24 22:36:48.784 2025-03-29 22:39:51.474 \N 100% a larp account https://example.com/ 20603 306844 306844.307294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.72888454999934 0 \N \N f 0 \N 0 131826764 0 f f \N \N \N \N 306844 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307291 2024-11-24 22:35:53.523 2025-03-29 22:39:51.474 \N I wrote some kindly response:\nhttps://old.reddit.com/r/litecoin/comments/15pa5n3/this_is_why_i_am_switching_over_to_litecoin_for/jw47ppw/\n;)\n\nI think it's some kind of aftermath of this thread:\nhttps://old.reddit.com/r/litecoin/comments/15irs4q/was_lightning_a_bad_idea/ https://example.com/ 8173 307285 307258.307280.307282.307285.307291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1698585558107 0 \N \N f 0 \N 0 118724696 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 448979 2025-03-23 03:42:35.5 2025-03-29 22:39:51.474 \N Thanks so much for making this video and being a great member of the community! I'll see you in there! https://example.com/ 21539 448977 448962.448977.448979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.18667844526869 0 \N \N f 224128368 \N 2 73541355 0 f f \N \N \N \N 448962 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 52482 2023-08-20 01:40:45.977 2025-03-29 22:39:47.91 Spending Sunday - What Recent Bitcoin Purchases Have You Made? Let's hear some of your latest Bitcoin purchases, feel free to include links to the shops or merchants you bought from too.\n\nIf you missed our last thread, [here](https://stacker.news/items/297499) are some of the items stackers recently spent their sats on. \N 15624 \N 52482 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.4074355061381 0 \N \N f 0 \N 0 163730884 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52742 2023-08-20 12:43:56.711 2025-03-29 22:39:47.91 What are you waiting for? ...well...what is it? In life? In Bitcoin? In general??\n\n\n\n\n\n![what are you waiting for.jpeg](https://m.stacker.news/4882) \N 8326 \N 52742 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.705985967291 0 \N \N f 0 \N 0 233279757 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 52432 2023-08-19 21:55:24.21 2025-03-29 22:39:47.91 Apple is killing webapps and PWAs in their powerplay against the EU Apple is going all-in with a fight against the EU by disabling all WebApp and PWA (progressive web app) features only in EU countries.\n\nApple made a decision:\n\n> iOS, Safari, and the App Store are part of an integrated, end-to-end system that Apple has designed to help protect the safety, security, and privacy of our users, and provide a simple and intuitive user experience. We strive to earn users’ trust by promptly resolving issues with apps, purchases, or web browsing through App Review, AppleCare customer support, and more.\n> \n> **The DMA requires changes to this system that bring greater risks to users and developers. This includes new avenues for malware, fraud and scams, illicit and harmful content, and other privacy and security threats. These changes also compromise Apple’s ability to detect, prevent, and take action against malicious apps on iOS and to support users impacted by issues with apps downloaded outside of the App Store.**\n\n*Source: [https://developer.apple.com/support/dma-and-apps-in-the-eu#dev-qaa](https://developer.apple.com/support/dma-and-apps-in-the-eu#dev-qaa)*\n\n💩 To me this is just a piece of bullshit 💩\n\nApple is not an open web advocate. They always opposed implementing open standards around [WebApps](https://www.w3.org/TR/appmanifest/) and PWA’s in their Webkit browser engine. They never made it easy to use a PWA on iOS devices. For example, they ignored the integration of push notifications for a long time, which was implemented very late in iOS 16.4 ([March 2023](https://webkit.org/blog/13878/web-push-for-web-apps-on-ios-and-ipados/)). \n\nNow within one year all this will be disabled in their next iOS update - version 17.4 - in EU countries!\n\n\n# **What is at stake is Apple’s revenue stream - their 15-30% (!) cut from any app purchase - from app developers in their walled garden called the App Store.**\n\n\nFrom a business perspective it’s pretty obvious it’s worth a fight for them. As in most cases, just follow the money to get a better view on the incentives.\n\nWebApps and PWAs are providing a fantastic way to build beautiful apps in the open without the need of any permission. This toolset is getting more traction and adoption among developers and Apple know this is a threat for their business model.\n\n\n# **Who’s the real victim?**\n\nI am one with many others. Others who love to build with open web technology in open systems. We are so-called open web advocates. Many of them are app developers who love to build sites and apps with the modern technology what is at hand. Developers who are preserving digital autonomy by choosing for open, independent and permissionless technologies.\n\nWith BigTech out there, the fight for an open web is a never ending fight. I think you should always fight back, otherwise the web will be less open in the future.\n\n\n# **Let’s unite to fight back**\n\n**Fill in this form if you’re affected in any means by this decision from Apple:**\n\n[https://docs.google.com/forms/d/e/1FAIpQLSfNgzepH4lwmWf2kaKC4EpKPdfi69jUHFM8kf4-TBsAyWU1BA/viewform](https://docs.google.com/forms/d/e/1FAIpQLSfNgzepH4lwmWf2kaKC4EpKPdfi69jUHFM8kf4-TBsAyWU1BA/viewform)\n\nInitiated by the Open Web Advocacy group.\n\n> The [Open Web Advocacy](https://open-web-advocacy.org/) (OWA) is a group of software engineers from all over that world who provide regulators, legislators and policy makers the technical details to understand anti-competitive issues like Apple not allowing real third-party browsers on iOS so web apps cannot compete with native apps. \n\n*Source: https://modern-web-weekly.ghost.io/your-single-page-app-may-soon-be-a-polyfill*\n\n\n\nI’m sure there is more that can be done, so please let me know your suggestions! https://sebastix.nl/blog/apple-is-killing-webapps-pwas-power-play-against-the-eu/ 694 \N 52432 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.929837277790924 0 \N \N f 0 \N 0 232858143 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307320 2024-11-24 23:16:28.058 2025-03-29 22:39:51.474 \N It sucks if I post something Bitcoin related, then an army of shitcoiners comes in to downvote my post. If no moderation is done, I will effectively loose my deposit for no reason. Although they loose their sats, it affects me as well. https://example.com/ 664 306412 306412.307320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0555197638299 0 \N \N f 0 \N 0 3884642 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307341 2024-11-24 23:36:52.693 2025-03-29 22:39:51.474 \N Currently reading 21 Futures. It's a collection of short stories, all set in a bitcoin universe.\n\n\n![712SU1-53lL._SY466_.jpg](https://m.stacker.news/17364) https://example.com/ 6463 307258 307258.307341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5290051512158 0 \N \N f 0 \N 0 54210969 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307407 2024-11-25 01:03:26.01 2025-03-29 22:39:51.474 \N I am working in the media business for nearly 25 years. I can tell You that we are faking interviews, stats, reality like You wouldn't believe. Lately it got worse and it will be rediculous when the fiat system is tumbling. Prepare https://example.com/ 9 307258 307258.307407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.52818162418106 0 \N \N f 0 \N 0 162086689 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307318 2024-11-24 23:15:57.149 2025-03-29 22:39:51.475 \N Cool idea, but...\n$139 for a silicon case with a clicky keyboard. Must be 2024.\n![](https://assets-global.website-files.com/6571c5a614be2a1a6376b0c5/658c4cbc9113ee53dba75392_clicks.png) https://example.com/ 626 307258 307258.307318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6852036518736 0 \N \N f 0 \N 0 171421001 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307383 2024-11-25 00:41:31.687 2025-03-29 22:39:51.475 \N Day 298 of snailposting everyday 'til BTC hits $100k.\n\n...and 98 push-ups. (20 - 20 - 20 - 20 - 18)\n\n__@_'-' https://example.com/ 2322 304442 304442.307383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.77194705588592 0 \N \N f 0 \N 0 68121748 0 f f \N \N \N \N 304442 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307493 2024-11-25 04:36:04.556 2025-03-29 22:39:47.91 Your brain's been wiped. You forget everything you know about Bitcoin. Now what? https://media1.giphy.com/media/R7m04yMaGWVeE/giphy.gif\nWhat would life look like right now?\n\nI've sometimes thought about this -- about where my life would be right now if I had never discovered Bitcoin?\n\nLet's say that you heard about it today, for the very first time (again). Now you have a chance to re-learn everything that you once knew. How would your learning process change?\n\nWhere would you begin this time? What would you avoid this time around? Is there any guidance you wish you had? Concepts that would've clarified things? Friends to help you with certain things?\n\nCurious... \N 680 \N 307493 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7966829101614 0 \N \N f 0 \N 0 225291276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307485 2024-11-25 04:08:44.454 2025-03-29 22:39:51.474 \N Set default tip to 100 sats. https://example.com/ 1673 306412 306412.307485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.53956777302393 0 \N \N f 0 \N 0 204234412 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307495 2024-11-25 04:38:04.845 2025-03-29 22:39:51.474 \N Intriguing. I'd like to try it myself. https://example.com/ 12749 307258 307258.307495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7614418014773 0 \N \N f 0 \N 0 46974034 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 308086 2024-11-25 15:43:19.372 2025-03-29 22:39:51.474 \N Vitamins D3 from october to march for sure…\nOmega 3 is good but people tend to forget that omegas have to be balanced in the right proportion with Omegass 3 , 6 and 9 in order to be healthy !!! So careful with Omega 3 excess ! https://example.com/ 9084 308051 307616.307742.307953.308046.308049.308051.308086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3694550368913 0 \N \N f 0 \N 0 65540122 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307449 2024-11-25 02:13:08.152 2025-03-29 22:39:51.474 \N >We are pretty advanced here with CBDCs... Basically an Ethereum fork where Retail Banks will work as nodes.\n\nIt is ironic for a state to be use a shitcoin to manage it's fiat currency. It is a combination of two scams in one. https://example.com/ 16440 307258 307258.307449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.928022076746 0 \N \N f 0 \N 0 216710689 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307515 2024-11-25 05:28:29.566 2025-03-29 22:39:51.475 \N Put your ASICs on the rack\nA valid nonce is what I lack\nAll these shitcoins are definitely wack\nJust chase sats like ghosts chase Pac\n──▒▒▒▒▒▒───▄████▄\n─▒─▄▒─▄▒──███▄█▀\n─▒▒▒▒▒▒▒─▐████──█─█\n─▒▒▒▒▒▒▒──█████▄\n─▒─▒─▒─▒───▀████▀\n https://example.com/ 6229 307258 307258.307515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.105392720743 0 \N \N f 0 \N 0 67392988 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307452 2024-11-25 02:40:00.124 2025-03-29 22:39:51.475 \N Basically this is the part of the horror movie when the dead character suddenly shuffles into the room and someone says, "*That's **not** Aunt Margaret...*" \n\n![](https://i.gyazo.com/a471f92ae85b73dcb0595f049ddf19db.png) https://example.com/ 16282 307258 307258.307452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9530802966909 0 \N \N f 0 \N 0 177067782 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307471 2024-11-25 03:44:29.367 2025-03-29 22:39:51.475 \N Oh yeah. SN friends count. It's my face to face fiat friends that really need SN.\nP..S. I like that: face to face fiat friends. I shall call them FFFFs from now on. https://example.com/ 20019 307315 307315.307471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1921263256681 0 \N \N f 0 \N 0 222059843 0 f f \N \N \N \N 307315 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307470 2024-11-25 03:42:12.803 2025-03-29 22:39:51.475 \N What other content types do you think Value 4 Value would work well in? Are there types of content you think won't work well with V4V? https://example.com/ 775 307458 307458.307470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4978075963908 0 \N \N f 0 \N 0 109559082 0 f f \N \N \N \N 307458 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 133719 2024-02-28 12:38:30.627 2025-03-29 22:39:47.911 Bitcoin has no leaders. Soft forks do. Bull Bitcoin Francis put this on Twitter this evening. It's worth reading. \n\n> Convenants soft fork proponents, think about this very very carefully: who do you want as a leader that will rally nodes to his vision and convince them to take the leap of faith with him? \n> \n> "Bitcoin is leaderless" you say? It is, except during a fork war. To deny this is to deny all the history of Bitcoin we have. \n> \n> Like it or not, you need economic nodes to be strongly committed to a soft fork for it to happen. Committed enough that they are willing to lose funds over it. More importantly, you need economic nodes to NOT be strongly opposed to it.\n> \n> An economic node is one that is accepting Bitcoin payments. The more incoming on-chain payments your node validates, the more you have at stake to lose, the more miners will fear your potential to invalidate their blocks.\n> \n> Any major contention from economic nodes about a UASF will cause a network split. If you declare a UASF and the miners don't follow, you split. If the miners follow and economic nodes declare URSF, the network split. \n> \n> This is bad for business. Even miners who do like the soft fork in theory could capitulate if a network split becomes inevitable.\n> \n> If both UASF and URSF are active at the same time, miners will have to pick one camp over the other. Unless the soft fork directly affects their income in a tangible and predictable manner, they will choose whichever side is more likely to maintain support of economic nodes after a split. \n> \n> This is not a game of pure economic incentives. Economic incentives work perfectly within nakamoto consensus, not for protocol upgrades. These upgrades require companies with lots of money at stake to follow one vision versus the other and to determine who is the most committed. When you commit to UASF or URSF you are betting - blindly - that whatever camp you support will not be the one to capitulate first. You are in effect betting on who is the most radical, well funded intolerable minority. \n> \n> If you really want covenants to succeed, expel the degenerates scammers and retarded goofs from your camp. You know excatly who I'm talking about. \n> \n> Their temporary marketing power on Twitter will backfire spectacularly and you, pro-CTV engineers, will end up in a burn out just like the OG core devs did. https://twitter.com/francispouliot_/status/1781872134874169766 5746 \N 133719 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.2984475352154 0 \N \N f 0 \N 0 156015321 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 137340 2024-03-06 03:42:22.213 2025-03-29 22:39:47.911 Defending bitcoin maximalism ### Fiat sucks and always will\n10 years ago, I didn't know bitcoin existed. But I was fiercely convinced that we needed better money than fiat. Gold seemed to me to be the best option for uncorrupted money. I imagined that anyone with funds in gold would not be so easily robbed. In time, perhaps institutions will develop that will compete and allow better service using gold backed money. I wouldn't even think of speculating whether they are Juan, Dollar, Ruble or Peso. It is all fundamentally the same scam. While I don't know their monetary policy or history, in important parameters it's all the same.\n\n### Bitcoin is by far the best solution (at least for now)\nOnce I discovered bitcoin, it took me a few years to believe that it could actually become better money. Consequently, I switched to bitcoin as quickly as I could. If something comes along that I perceive as better than bitcoin, I will try to switch to it very quickly. But I don't currently see any project that even comes close to bitcoin fundamentally. Few are even trying to go in that direction.\n\n### Value your time\nUntil someone comes up with an original idea or execution or just whatever, it's a waste of time to wade through the altcoin garbage in my opinion. There are more than enough smart people wasting their potential like this. And I believe that if someone discovers something that makes sense, they'll be happy to talk about it.. similar to how I scream to the world that bitcoin is the rarest tradable commodity mankind has ever seen. \n\n**Until then, I'd rather devote my full attention to spreading and improving bitcoin.** 🚀 \N 20717 \N 137340 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.98629093680877 0 \N \N f 0 \N 0 173675732 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307757 2024-11-25 11:32:45.745 2025-03-29 22:39:47.911 Book Review | “The Art of Possibility” This is the second time I’m reading “The Art of Possibility”, and I enjoyed it just as much as I did the first time. The first time, I was struck by the observations Benjamin Zander made about getting into the soul of a musical piece since I’m totally tone deaf. Now that I am used to ideas regarding the leveraging of musicality and strategic use of silence, I can turn my attention to the intricate mechanics of the writing. \n\nI like how each chapter comes with its pithy catchphrase so that it aids memory retention. I think me gravitating towards these catchphrases tracks my growing evolution as a teacher as well. How do I present information in a sharp and succinct way so that my students will remember stuff? So, I think that long after I have recycled this book, I will remember phrases like “It’s all invented” and “be a contribution”.\n\nHaving such conceptual frameworks salient in my mind should help me to be gentler with my students. Instead of bellowing at them about why they haven’t done their Home-based Learning assignments, I could ask them what their stumbling blocks are. How I can help them remove these obstacles.\n\nOther than the catchphrases, the dichotomy of the calculating self vis-a-vis the central self captivated my imagination. To me, the calculating self represents our tatemae (feelings displayed in public), the masks we put on to protect our egos and turf. The central self represents our honne (honest feelings), our authentic selves. So, the challenge is communicating to others beyond their calculating selves to arrive at their central selves so that we can arrive at invigorating and full-bodied conversations.\n\nThis book makes me motivated to be a more empathetic and skillful communicator!\n\n![](https://m.stacker.news/51485) \N 4763 \N 307757 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.8749574716695 0 \N \N f 0 \N 0 138402682 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307813 2024-11-25 12:02:19.579 2025-03-29 22:39:51.475 \N Yeah, most of us go through that phase. Welcome back 🫂 https://example.com/ 19469 307616 307616.307813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6971196101828 0 \N \N f 0 \N 0 36794410 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138228 2024-03-07 08:35:58.768 2025-03-29 22:39:51.475 \N Got a bit of time off and it feels _so luxurious_.\n\nAnd then I think: there are ten million things I want to do.\n\n:/\n\nGlad to see you here, Stackers. Hope you have a lovely week. https://example.com/ 1571 138224 138031.138156.138224.138228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5854912728466 0 \N \N f 0 \N 0 100573124 0 f f \N \N \N \N 138031 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 307921 2024-11-25 13:32:41.871 2025-03-29 22:39:51.475 \N All Canada Post offices (10,000+ locations) offer this service. Simply present the QR code generated in your Bull Bitcoin user account to the Canada Post cashier who scans it as if it were a bar code. \n https://example.com/ 7983 307587 307579.307587.307921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9398522014777 0 \N \N f 0 \N 0 103674316 0 f f \N \N \N \N 307579 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 320680 2024-12-06 13:33:52.768 2025-03-29 22:39:47.911 Mutinynet - Custom Signet w/ 30s blocks \N https://blog.mutinywallet.com/mutinynet 20337 \N 320680 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.3804403833215 0 \N \N f 0 \N 0 79995860 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138151 2024-03-07 04:02:24.84 2025-03-29 22:39:47.911 Privacy in a public place Just sharing this situation in order to know what do you think about it.\n\nLast Friday I went with my wife to a small music festival, maybe around 100 people, three different bands played that night.\n\nI've not been in a concert for many years...\n\nI was sitting on the grass having a drink and having a great time with my wife then I noticed many people who arrived to the venue, the first thing they did, was just record a short video of the stage and then point the camera to the audience.\n\nI did not feel comfortable been on someone else video, for sure this videos are now on social media...\n\nI did not complain to anyone (maybe my mistake), I just tried to cover my face with a hat and my drink.\n\n**What would you have done?**\n\nAm I being paranoid 🤔?\n\nCheers \N 5708 \N 138151 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.46549647677949 0 \N \N f 0 \N 0 122472827 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 320590 2024-12-06 12:23:23.504 2025-03-29 22:39:47.911 Want anonymity? Make a persona not a mystery. Derek Sivers. Great for Bitcoiners \N https://sive.rs/anon 9349 \N 320590 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.56317866933274 0 \N \N f 0 \N 0 136075190 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138100 2024-03-06 23:19:14.665 2025-03-29 22:39:47.911 How do you use your sats? I believe that with knowledge comes power. If people know the various ways in which they can use their sats, they will be more inclined to conduct various daily affairs with Bitcoin. Mass adoption will be facilitated as more and more people will be curious to try paying for products and services with sats. I did some research and found out that people use their sats in the following ways: \n\n1. Use BTC to pay for VPN with Mullvad\n2. Buy gift cards with Bitrefill\n3. Use BTC to buy laptops with Newegg\n4. Use the public toilets in Wales (25p per visit)\n5. Pay to store all of your logins and passwords with Bitwarden\n6. Use BTC to buy supplements at Steroidify.com for a 20% discount\n7. Convert BTC into gift cards and prepaid Mastercards with Bitpay. They've announced they're also remaking their crypto debit cards so you can just load up their crypto debit cardsand spend anywhere that accepts Mastercard\n8. Zap content creators on platforms like Nostr, Stacker News and Fountain\n9. Send people tips with Lightsats \n\nHow do you use your sats? \N 3686 \N 138100 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.59650819109337 0 \N \N f 0 \N 0 209356769 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138113 2024-03-07 00:45:26.212 2025-03-29 22:39:47.911 You Are Not Late (to Bitcoin) Inspired by Kevin Kelly’s classic blog post "You Are Not Late".\n\n\nThe frontier is still wide open.\n\nThe most common lament about bitcoin today is that you're too late. That all the opportunities were over a decade ago, when bitcoin could be successfully mined on laptops or bought for pennies. That the pioneers already staked their claims, built their fortunes, and locked up all the value.\nI want to convince you that this perspective is completely wrong.\n\nIn fact, we are still living in year zero of a monetary revolution. What appears to be a mature, 15-year-old technology is actually embryonic. What looks like a settled landscape is really just a foundation. The real rush to transform our global economy with an open monetary system hasn't really started yet.\nYes, you missed mining bitcoin on your laptop. You missed buying it for a dollar. But you haven't missed the crucial part: building the future of money. It’s civilizational-scale transformation.\nConsider this: Less than 1% of the world's population has ever used bitcoin. Most of those who own it treat it as a speculation, not as money. The infrastructure for using it as an everyday currency is still primitive. Lightning Network adoption is in its infancy. Most people still can't explain what makes bitcoin valuable or how it works.\n\nIt may look like we're late if you judge bitcoin's timeline against internet companies. But bitcoin isn't a company - it's a new form of money. And money's timelines are measured in decades and centuries, not years. We're not in bitcoin's equivalent of the dot-com boom. We're in the early hacker phase of the internet where we’re using a combination of BBSes; siloed internet service providers; and Gopher protocol to just barely interconnect across these walled gardens of information.\n\nThe opportunities ahead are actually far larger than those behind us. Here's why:\n\n1. Every financial instrument, contract, and transaction in the world will eventually interface with bitcoin in some way. The market for these financial tools is orders of magnitude larger than bitcoin's current market cap.\n\n2. We haven't even started building most of the critical infrastructure. The equivalent of web browsers and social networks for bitcoin are still waiting to be invented.\n\n3. The real adoption curve begins when bitcoin becomes invisible - when people use it without even thinking about using it, just like they use TCP/IP today without knowing it.\n\n4. The hard problems - scaling, privacy, smart contracts on bitcoin - are still largely unsolved.\n\n5. We haven't even begun to imagine most of bitcoin's uses. Just as the internet became far more than just email, bitcoin will become far more than just digital gold or payments.\n\nThe early adopters didn't grab all the opportunities - they just grabbed the obvious ones. They bought and held bitcoin. They built exchanges. They created wallets. But that's like saying the early internet pioneers grabbed all the opportunities by building email services.\n\nBut, but…here is the thing. In terms of bitcoin, nothing has happened yet. Sure, there are still real opportunities in speculation today, but we’re far enough along that you can actually build useful open source software and commercial tools to help people.\nConsider working on the following:\n- Create financial tools that make bitcoin more useful to more people\n- Build the interfaces that make it invisible\n- Develop the applications and networks that couldn’t be built before the internet had its own native digital currency\n\nBecause here is the thing the greybeard cypherpunks in 2050 will tell you: Can you imagine how awesome it would have been to be an entrepreneur in 2024? It was a wide-open frontier! You could pick almost any category and connect AIs to their own money and rip open new frontiers. Few people had even joined Nostr yet! Expectations and barriers were low. It was easy to be the first. And then they would sigh, “Oh, if only we realized how possible everything was back then!”\n\nYou're not late to bitcoin. You're incredibly early. What we have now is just a glimpse of what's possible. Whatever the equivalents of Amazon, Google, and Facebook will be in the bitcoin space haven't even been created yet.\n\nThe next decade of bitcoin will make the previous one look like a mere prelude. The really important work - the work that will transform the global financial system - hasn't even begun yet.\nSo no, you haven't missed bitcoin. In fact, you're just in time to be part of its most important phase: the phase where we transform it from merely speculation into the future of money.\n\nThe frontier is still wide open. The most important opportunities haven't been taken.\n\nYou are not late.\n\nInspired by Kevin Kelly’s classic blog post [You Are Not Late](https://kk.org/thetechnium/you-are-not-late/). With gratitude to the GOAT! \N 20757 \N 138113 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.91191745408227 0 \N \N f 0 \N 0 240997732 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 308301 2024-11-25 19:22:02.351 2025-03-29 22:39:51.475 \N https://stacker.news/items/264917/ https://example.com/ 16939 308284 308281.308284.308301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.73759250090097 0 \N \N f 0 \N 0 150981500 0 f f \N \N \N \N 308281 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 308280 2024-11-25 19:01:57.675 2025-03-29 22:39:51.475 \N The feature already exist. Just hover your mouse over the amount of sats and it says how many stackers zapped you. https://example.com/ 14515 245128 245118.245128.308280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8793386808006 0 \N \N f 0 \N 0 174064823 0 f f \N \N \N \N 245118 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 320752 2024-12-06 14:39:50.834 2025-03-29 22:39:51.475 \N LMAO you seem to think people who have different investments than you are "less than human". That's incredibly sad.\n\nDo you also shame people in the grocery store whose cart has different items than yours? \n\nIf you are as correct as you think you are, everyone with different investments will get rekt eventually. You don't have to shame anyone. You're not "saving" anyone either by shaming them. Consider staying humble while you stack sats :)\n https://example.com/ 16839 320368 320187.320300.320332.320343.320368.320752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5899311938217 0 \N \N f 0 \N 0 198790555 0 f f \N \N \N \N 320187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 131107 2024-02-23 10:55:33.107 2025-03-29 22:39:47.911 Fred Kreuger's Bitcoin Perspective This guy showed up on my radar a few months ago. Since 2019 he's been a bitcoiner, but he has a traditional finance Wall Street background. When I listen to him I am fascinated and infuriated at the same time. \n\nHe's very pro ETF, very bullish on bitcoin's fiat price, and basically thinks bitcoiners need to grow up and accept that Wall Street will now own bitcoin. \n\nHe's depressing to listen to, but I can't easily ignore him. He's obviously intelligent. \n\nHe's very dismissive of the bitcoin can save the world narrative. \n\nI would like to know what stackers think of him. If you haven't heard his take, here's a link:\n\nhttps://fountain.fm/episode/eJvQeeAhLYYiu0e7RqUx\n\n \N 19189 \N 131107 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.7622254881414 0 \N \N f 0 \N 0 96456770 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 106912 2024-01-02 11:47:31.036 2025-03-29 22:39:51.7 \N This place lost a lot now that he's gone. He made it clear he's not posting as anon so I won't imply he is any more. I'm still optimistic that SN is in a transition phase, and I have faith in those plotting its course. Maybe Darth will return when the dust settles. Of course that's up to him. https://example.com/ 13365 106903 106903.106912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1213058103572 0 \N \N f 0 \N 0 189421753 0 f f \N \N \N \N 106903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 97606 2023-12-11 23:03:51.62 2025-03-29 22:39:51.7 \N I think Stacker News is a great place to debut work; especially, if the author is interested in feedback. There's nowhere else, to my knowledge, where you can get the same degree of thoughtful input from your readers. Even if an author is planning on primarily publishing on one of the bigger platforms, there's basically no downside of putting it here first/also.\n\nWhat role do you envision this territory will play for writers?\n\nRolling out one chapter at a time seems pretty good, but ultimately authors probably want the complete book to go up in a different format (and probably on a broader platform). However, as those individual chapters roll out, authors are bringing in some income that might help support them until they put the full work out.\n\nDo you have some publicity strategies in mind to bring more attention to your authors? https://example.com/ 17690 97530 97257.97522.97526.97530.97606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29347582553252 0 \N \N f 0 \N 0 131372437 0 f f \N \N \N \N 97257 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 77060 2023-10-23 07:59:23.268 2025-03-29 22:39:51.7 \N I don't think the replies from @PlebeiusG were "useless". I think you didn't run the numbers as he did and thus you didn't realize yet that what you are proposing ("let's run enough USB miners to "decentralize" bitcoin mining") is not realistic.\n\nIt seems like the current best USB miner can reach a hashrate of 200 GH/s [0].\nAn Antminer S9 can reach a hashrate of 14TH/s (which is old tech since it was released in 2017) [1].\nCurrent global bitcoin hashrate is 356.6 EH/s. [2]\n\nSo this means the current best USB miner is as good as `14/0.2 = 70` S9s.\nThis doesn't sound too bad, right? Wrong. _(I included S9s because of [this comment from you](https://stacker.news/items/187984) where you asked about 200,000 thumbdrives compared to S9s.)_\n\nLooking at the global hashrate, this means that the best current USB miner is only `(0.2/(356.6*1000*1000)) * 100 ≈ 5.61e-10` % of the current hashrate.\n\nThis means to reach 1%, you'd need around `1/5.61e-10 ≈ 1,783,000,000 ≈ 2 billion` USB miners. That's more than how many iPhones were sold since it launched in 2007 [3]. There are 8 billion people on the earth. So every fourth person on earth would need to run of these USB miners to get bitcoin mining "more decentralized" by 1%.\n\nAnd that's without assuming that the hashrate will continue to go up. I don't think USB miners will be able to keep up with ASICs. At some point, thermodynamics comes into play and you just need more power than a regular USB port can deliver for increased hashrate and probably a bigger chassis for cooling. At some point, you are better off to buy an actual ASIC, I guess.\n\nTherefore, I think your efforts are better spent at looking into [Stratum v2](https://bitcoinmagazine.com/business/stratum-v2-will-save-bitcoin-mining), for example.\n\n[0] https://linuxhint.com/best-usb-bitcoin-mining-asics/\n[1] https://www.asicminervalue.com/miners/bitmain/antminer-s9-14th\n[2] https://mempool.space/de/mining\n[3] https://www.demandsage.com/iphone-user-statistics https://example.com/ 21214 77057 77057.77060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.27573484237303 0 \N \N f 0 \N 0 208376494 0 f f \N \N \N \N 77057 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 93519 2023-12-02 15:49:51.41 2025-03-29 22:39:51.701 \N Lol Welcome to the second annual Sat Hunger Game, may the odds be ever in your favour\n\nAnd to the plebs who don't make it onto the board \n\nhttps://media.tenor.com/05-PGQSuz9wAAAAC/so-long-katniss-everdeen.gif https://example.com/ 8726 93434 93434.93519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0391019679667 0 \N \N f 0 \N 0 68707536 0 f f \N \N \N \N 93434 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 77038 2023-10-23 06:47:56.49 2025-03-29 22:39:51.703 \N My perspective changed when they legalized it in the 2018 farm bill. \n\nIt's not cool anymore. \n\nDo you think it will change your music tastes at all? https://example.com/ 20980 76869 76869.77038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1815168003635 0 \N \N f 0 \N 0 79056979 0 f f \N \N \N \N 76869 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 137765 2024-03-06 15:00:44.887 2025-03-29 22:39:47.911 SN Saturday Newsletter 12/14/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [The Fallacy of Store of Value vs. Medium of Exchange](https://stacker.news/items/802472)\n - [@kepford](https://stacker.news/kepford) sees Bitcoin as a SoV giving way to MoE, a conclusion [@roy](https://stacker.news/roy) also [recently shared](https://stacker.news/items/726256).\n - 12.4k sats \\ 85 comments \\ [@kepford](https://stacker.news/kepford)\n2. [Thoughts on using Strike to pay bills](https://stacker.news/items/804386)\n - [@j7hB75](https://stacker.news/j7hB75) predicts [Strike Bill Pay](https://strike.me/faq/what-is-strike-bill-pay/) is best suited for bull markets and people with more flexible budgets.\n - 5.6k sats \\ 38 comments \\ [@j7hB75](https://stacker.news/j7hB75)\n3. [Success Story: An Established Business Is Now Accepting Bitcoin](https://stacker.news/items/804668)\n - [@siggy47](https://stacker.news/siggy47) shares the story of orange pilling his friend, then helping their business, [LIH Tea Company](https://www.lihteacompany.com/), accept Bitcoin.\n - 4.5k sats \\ 47 comments \\ [@siggy47](https://stacker.news/siggy47)\n4. [Thoughts on the Roger Ver/Tucker Carlson interview](https://stacker.news/items/803894)\n - [@jimmysong](https://stacker.news/jimmysong) shares his thoughts on Tucker Carlson's recent Roger Ver interview.\n - 7.1k sats \\ 24 comments \\ [@jimmysong](https://stacker.news/jimmysong)\n5. [John Carvalho proposes BIP renaming sats as bitcoin](https://stacker.news/items/808258)\n - [@BitcoinErrorLog](https://stacker.news/BitcoinErrorLog) wants to cure our unit bias and avoid denominations by renaming satoshis to bitcoins.\n - 3k sats \\ 61 comments \\ [@Scoresby](https://stacker.news/Scoresby)\n\n##### Don't miss\n- [Zero Fee Playground: A New Toy by Super Testnet](https://stacker.news/items/805544)\n- [Reminder to Check Your Bitcoin Setups (Seedphrases, Backups, HWWs, Passphrases)](https://stacker.news/items/800714)\n- [🍂 Another seasonal meditation with plebpoet ~ take a walk with me 🍂](https://stacker.news/items/801929)\n- [Bitcoin NEVER leaves you](https://stacker.news/items/804497)\n- [An updated BIP Process · Pull Request #1712 · bitcoin/bips](https://stacker.news/items/804315)\n- [Paul Sztorc on Activating Drivechains via CUSF (Bitcoin Takeover S15 E68)](https://stacker.news/items/803006)\n- [Bitcoin imposter syndrome](https://stacker.news/items/802735)\n- [Jordan Peterson Bookclub—We Who Wrestle With God: Morality and Social Order](https://stacker.news/items/804036)\n- [First Tax Evasion Conviction In The U.S. For Bitcoin: Two Years In Prison](https://stacker.news/items/808049)\n- [Get ⚡11,000 free sats⚡-- Help us test our "disposable" ☁️ cloud lightning nodes](https://stacker.news/items/803740)\n- [Science is just rediscovering stuff from the 60s](https://stacker.news/items/799320)\n- [25% of Americans Can Barely Read (_The Economist_)](https://stacker.news/items/806118)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Driving More Users To Stacker News](https://stacker.news/items/805212)\n- [This Day on SN: December 12](https://stacker.news/items/806070)\n- [PSA: be cautious zapping bios](https://stacker.news/items/799824)\n- [Problem With Alby Hub Attached Wallets?](https://stacker.news/items/801743)\n- [Grim territory economics](https://stacker.news/items/804905)\n- [V4V music marketing promotion: open debate](https://stacker.news/items/803129)\n- [Satistics feature and enhancement fishing](https://stacker.news/items/800812)\n- [Bitcoin Value Drives SN Inflation And Trust-Score Difficulty](https://stacker.news/items/803696)\n\n[**all meta**](https://stacker.news/~meta/top/posts/week)\n\n-------\n\n##### Top Monday meme\n![](https://imgprxy.stacker.news/wdO8UVr2QFdABeEgqkfJeqQhFhTmyWkKO4IKx9KvTqQ/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy82NzAyMQ)\n\n[**all monday memes**](https://stacker.news/items/802003)\n\n------\n\n##### Top Friday fun fact\n> [The fear of vegetables is called Lachanophobia](https://www.e-counseling.com/articles/lachanophobia-fear-of-vegetables)\n> > Ironically, studies indicate that a diet rich in whole grains, fruits, and vegetables can help reduce anxiety. Processed foods and excess sugar are known to worsen it. Yet, there have been recorded incidences when those enduring lachanophobia have had such horrible panic attacks when near vegetables, they required hospitalization.\n\n[**all friday fun facts**](https://stacker.news/items/808097)\n\n------\n\n##### Top Stackers\n1. [@HODLR](https://stacker.news/HODLR): 204.1k sats stacked\n2. [@grayruby](https://stacker.news/grayruby): 83.2k sats stacked\n3. [@denlillaapan](https://stacker.news/denlillaapan): 52.1k sats stacked\n4. [@Public_N_M_E](https://stacker.news/Public_N_M_E): 50k sats stacked\n5. [@DesertDave](https://stacker.news/DesertDave): 48.1k sats stacked\n\n------\n\n##### Top Spenders\n1. [@benwehrman](https://stacker.news/benwehrman): 1m sats spent\n2. [@TheVladCostea](https://stacker.news/TheVladCostea): 290.3k sats spent\n3. [@rizful_com](https://stacker.news/rizful_com): 280.2k sats spent\n4. [@ek](https://stacker.news/ek): 134.7k sats spent\n5. [@AtlantisPleb](https://stacker.news/AtlantisPleb): 105.8k sats spent\n\n------\n\n##### Top Cowboys\n1. [@Undisciplined](https://stacker.news/Undisciplined): 445 days\n2. [@OneOneSeven](https://stacker.news/OneOneSeven): 438 days\n3. [@BlokchainB](https://stacker.news/BlokchainB): 424 days\n4. [@TNStacker](https://stacker.news/TNStacker): 420 days\n5. [@grayruby](https://stacker.news/grayruby): 388 days\n\n------\n\n##### Top Boosts\n1. [Paul Sztorc on Activating Drivechains via CUSF (Bitcoin Takeover S15 E68)](https://stacker.news/items/803006)\n2. [Get ⚡11,000 free sats⚡-- Help us test our "disposable" ☁️ cloud lightning nodes](https://stacker.news/items/803740)\n3. [Bitcoin Signatures for Candidates: Germany and China Voting Live](https://stacker.news/items/796311)\n4. [Turning Tires into Bitcoin](https://stacker.news/items/793375)\n5. [Black Friday Alert! Buy 2 Jades, get 50% off the second + free shipping 🇺🇸🇪🇺](https://stacker.news/items/786983)\n6. [Upendo - Mining Block Party Auction](https://stacker.news/items/784886)\n7. [BTCTKVR: Privacy Magazine (Free Download)](https://stacker.news/items/779811)\n8. [Wasabi Wallet v2.3.0.0 released!](https://stacker.news/items/737681)\n9. [Jippi - Pokémon GO for Bitcoin - Now Crowdfunding](https://stacker.news/items/754811)\n10. [Endorse 2024 U.S. Candidates with Bitcoin – Presidential & Congressional!](https://stacker.news/items/739506)\n\n[**all boosts**](https://stacker.news/top/posts/forever?by=boost)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 3371 \N 137765 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 29.5580526214284 0 \N \N f 0 \N 0 191230590 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 137607 2024-03-06 11:59:52.912 2025-03-29 22:39:47.911 Robert Jordan's The Wheel of Time: Books 1-3 I just finished the third book of The Wheel of Time series. It's a very compelling fantasy world and before I get any further into it, I want to get a quick review up for any stackers who may be interested. I'll try to avoid any spoilers while giving a sense of what these books have to offer.\n\n# Overview\nFirst, for those who have seen the Amazon series, the first two seasons roughly correspond to the first two books. However, there are some changes made by the adaptation that change the story significantly. I would describe those changes as HBO'ifying the series: the characters were made older, sexier, more violent and it's more of an action adventure than fantasy epic. I think the show is fine as its own thing, but it has a very different feel than the books.\n\nRobert Jordan built a very intricate fantasy world that feels vast and rich. It's a fairly standard fantasy setting, with roughly medieval technology, various types of supernatural abilities, and recognizable but distinct mythical creatures.\n\nMost people in this world live their entire lives near to where they're born and there are vast regional differences in what people believe about the world and its history. However, there is more or less a shared language and mythology.\n\nThe story is presented from one character's perspective at a time and the reader learns new information as the characters do. Much of the lore of this world is unknown to the characters we follow. What is generally known to all (or at least believed) is that the world was broken 3,000 years ago in a battle with Shai'tan the Lord of Darkness, Prince of Lies, and many other names associated with him. Also generally known/believed is that he had powerful magic users fighting on his side known as the Forsaken and that one powerful magic user known as The Dragon was responsible for breaking the world. This created a widespread distrust and fear of magic users.\n\n# The Eye of the World\nThe first book is very Tolkienesque. We learn about the people of a small remote region. They raise sheep and grow tobacco and enjoy their seasonal festivals. It's a quiet society that only receives news when the occasional merchant visits during harvest season.\n\nSeveral teenagers from this town are reluctantly swept up in an adventure involving things they had believed to be entirely mythical. Their journey is arduous and written in a very grounded way that emphasizes how difficult and perilous travel in that setting would be. The show basically resorts to "fast travel" for this portion and totally loses the sense of distance travelled.\n\nThis book largely serves to explore the world through the eyes of characters who live in it, but are also largely unfamiliar with anything outside of their home.\n\n# The Great Hunt\nGame of Thrones was inspired by the portion of this book about Daes'de Maer, the Game of Houses, that describes the political machinations amongst the nobility of one of the great cities.\n\nThis book introduces several major settings, including Tar Valon where the magic-using Aes Sedai live and train. \n\nMuch of the story revolves around a powerful and mysterious army arriving from the sea and making fantastical claims about their link to the history of the world known to our characters. This leads to uncovering how some of our characters are also connected to long past historical events.\n\n# The Dragon Reborn \nA mystery in Tar Valon, an assassination plot, and a search for a missing member lead our scattered characters towards a seemingly impossible prophecy.\n\nA great deal is learned about the sinister forces emerging in the world and what our characters may have to contend with in the future. \n\n# Takeaways\nI had to be very brief in describing the later books for fear of spoilers. Much of the appeal of these books is following and anticipating the mysterious elements.\n\nOne of my favorite things about how this series is written is that the world feels very lived in. The cultures and places are detailed and distinct from each other. The characters have to make pragmatic decisions about where to stay and how to travel, based on factors like cost, time, and risk. Each of the characters also has a very distinct personality and seeing events from their varied perspectives gives a richer view of the story and a deeper understanding of the world. Also, each character serves a distinct role in the narrative. No one is just along for the ride.\n\nThe lack of an omniscient third person narrator really enhances the mystery of the story. We often don't know what certain people's motivations are or what the truth of a situation is and are left to puzzle it out alongside our characters. \N 21349 \N 137607 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1048684738202 0 \N \N f 0 \N 0 185829951 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 137920 2024-03-06 18:36:56.23 2025-03-29 22:39:47.911 IMF says Bitcoin has become necessary financial tool for preserving wealth According to the IMF, residents of countries with restrictive financial regulations are turning to Bitcoin to move capital across borders more freely. https://cryptoslate.com/imf-acknowledges-bitcoins-significant-role-in-preserving-wealth-amid-financial-instability/ 848 \N 137920 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.448938826874 0 \N \N f 0 \N 0 185327420 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 139558 2024-03-09 05:05:00.49 2025-03-29 22:39:47.911 Invalid MARAPool block 809478 \N https://b10c.me/observations/07-invalid-block-809478/ 21713 \N 139558 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.5387959451071 0 \N \N f 0 \N 0 247864665 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 217122 2024-08-19 18:16:36.832 2025-03-29 22:39:47.911 Bictoiners! the Ethereum Marketing Dept needs our help! As you can see from the linked tweet, Ethereum VP of marketing and head of grifter at Bankless (who am I kidding the other one is the head grifter), David Hoffman is concerned that prior marketing efforts for Ethereum have been a failure and doesn't want that to happen again now that the recently approved etfs will be rolling out soon. In an effort to improve inclusivity at the corporation he is seeking advice from fellow ethereum staff on how to "market" ethereum to tradfi investors. \n\nhttps://twitter.com/TrustlessState/status/1795595286972383494\n\nWhile the Marketing dept. is experimenting with a number of plausible campaigns, nothing is seeming to stick. They may need to look outside the company for help. \n\nThat's where we come in. Let's give our ethereum pals the best and most accurate narrative we can so their ETF is a smashing success. \n\nBest one as defined by top ranking by end of day today (11:59pm est) gets all the sats zapped to this post. \n\nHave at it! \N 8841 \N 217122 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.2426968420918 0 \N \N f 0 \N 0 94196632 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138016 2024-03-06 20:44:28.381 2025-03-29 22:39:47.912 The Core of what I learned from Covid Times This is text taken out of my journal and posted to my blog in 2021 (it's no longer active but there's some gems in there). I was going over it today and felt the desire to share it. \nSharing because\n1. I recently heard someone express that listening to others be articulate about their inner lives and feelings helps them to think, feel, and express their own. I know that my writing style is to mostly take myself way too seriously, but if it's helpful in any way, I'd like to offer it up.\n2. I get a lot of satisfaction keeping a record of my writing journey like this, especially looking back to see that what I once wanted is what I now have. It encourages me to take my time. It is proving this [theory of design](https://stacker.news/items/636828) that @k00b brought to our attention. I tend to writing like I tend to a garden. Plant it, attend it, let it grow. \n3. We were also just talking about [nyms](https://stacker.news/items/658331) and here I was describing my "pen name." So that's kinda funny. But now I have one, and I really like it :D\n4. All the things I'm describing in this post were impactful breakthroughs. Getting clarity on what's most valuable to me has changed most aspects of my life, although it's something I still have to choose everyday. I did write [my book](https://www.plebpoet.com/assets/pdf/grandpabook.pdf) which will only be readable on a desktop, sorry. It's a biography mixed with memoir about my grandpa. It is not a novel, so I still have that to check off my list.\n5. Jordan Peterson gets a mention, that's how you know it was Covid times.\n\n\nI don't know how interesting it is to excavate the bones left in years 2020-2021, but I wrote another article during this period that explains my attraction to bitcoin. It's called [How a Lefty became a Maxi](https://www.citadel21.com/how-a-lefty-became-a-maxi). https://jnseemore.wordpress.com/2021/05/17/an-excerpt-from-my-journal-which-i-titled-getting-serious/ 11018 \N 138016 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.37495924170045 0 \N \N f 0 \N 0 93899177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1198 2022-09-06 21:17:52.607 2025-03-29 22:39:51.702 \N you cant fork out inscriptions https://example.com/ 11328 1196 1176.1196.1198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.618609129012 0 \N \N f 0 \N 0 43478028 0 f f \N \N \N \N 1176 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 187585 2024-06-21 07:55:30.51 2025-03-29 22:39:51.7 \N Lots of folks emerging from the past with "so, howz your Bitcoin Kate" and have the false assumption I must have hot tips how to invest....\n\nI respond with...What is money? and send them to 21lessons.com and tell them to get back to me once they have read it.\n\nIf I experience too much friction I use this: \n“If you don't believe me or don't get it, I don't have time to try to convince you, sorry.”\n― Satoshi Nakamoto \n\nI'm not here to fucking cajole you into why it makes sense - show some proof of work and do your own due diligence.\n\nThere are many folks that have a freedom orientation that need help and welcome it - I'm here for you! https://example.com/ 11158 187580 187580.187585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.87436578245126 0 \N \N f 0 \N 0 40176187 0 f f \N \N \N \N 187580 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138717 2024-03-07 21:27:05.083 2025-03-29 22:39:51.7 \N Am I the only one who makes ZAP sounds every time they hit the tip button? https://example.com/ 9346 138687 138687.138717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1398408024043 0 \N \N f 0 \N 0 52505216 0 f f \N \N \N \N 138687 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 137922 2024-03-06 18:38:01.339 2025-03-29 22:39:51.704 \N Having integrity https://example.com/ 6229 137892 137821.137862.137881.137892.137922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.8382998179576 0 \N \N f 0 \N 0 203661827 0 f f \N \N \N \N 137821 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138731 2024-03-07 21:50:43.616 2025-03-29 22:39:51.704 \N Is that your hardware wallet or are you just happy to see me? https://example.com/ 10063 138518 138518.138731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.4583680418384 0 \N \N f 0 \N 0 204821960 0 f f \N \N \N \N 138518 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 139951 2024-03-09 18:06:23.941 2025-03-29 22:39:47.912 Sensei Stacked 900k Sats on Stacker News Actually, the amount has risen to 902k sats now.\n\nSensei was wavering in indecision in regard to posting this milestone. But that was the beautiful thing about forming a habit. He had earlier posted about stacking 500k, 600k, 745k (thanks to March MSM!), and then 800k sats here. He could not back out of posting.\n\nHe thought hard about the V4V he could bring to this update instead of just perfunctorily announcing the news. It didn’t take long for him to make up his mind.\n\nYou see, in April, his [blog](https://diaperfinancingfund.blogspot.com/2024/05/3-ways-to-encourage-your-kids-to-read.html?m=1) inexplicably got a few cents despite him doing nothing. This reinvigorated him. He started cross posting the SN articles he wrote on his blog. He finished April with 19 cents, which was more than he had earned from this blog for the whole of 2023.\n\nRationally speaking, slogging hard for Google Adsense might not be worth it financially. But Sensei badly needed a personal goal to work towards - something that reflected neither his personal nor professional responsibilities. If he could withdraw the minimum $150 from his blog one day, he would be elated. Who knows what kind of content creator he would be then?\n\nDreams are important, even to a perpetually busy working parent.\n\nHe learnt about the low time preference concept on SN. In November, in fact. It seems that it has seeped into his bones and assimilated into his soul. More haste, less speed. **Chop wood, carry water** \N 886 \N 139951 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.0850679676135 0 \N \N f 0 \N 0 173247490 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 140046 2024-03-09 20:33:38.304 2025-03-29 22:39:47.912 Private SMS receiving (with sats) service recommendations What services would you recommend to use when a service requires an sms code to be sent?\n\nI've used sms4sats quite a bit, but noticing that a lot of the phone numbers are banned from Telegram (for example). Not sure if they rotate/update the available numbers they have, so I'd be curious to know more services like it. Simple and straight forward for dummies like me. \N 11192 \N 140046 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.8969266790599 0 \N \N f 0 \N 0 150742922 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 139989 2024-03-09 19:23:12.228 2025-03-29 22:39:47.912 Marathon Launches Slipstream, a Transaction Acceleration Service \N https://ir.mara.com/news-events/press-releases/detail/1343/marathon-digital-holdings-launches-slipstream 21233 \N 139989 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.2263413484035 0 \N \N f 0 \N 0 170322379 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 140403 2024-03-10 10:05:35.012 2025-03-29 22:39:47.912 Legend of the Snail | 20 days until next elimination \n```\n+================================x\n| Welcome to day 289 of the |\n| _ _ _ _ |\n| | |__ (_) |_ ___ ___ (_)_ __ |\n| | '_ \\| | __/ __/ _ \\| | '_ \\ |\n| | |_) | | || (_| (_) | | | | | |\n| |_.__/|_|\\__\\___\\___/|_|_| |_| |\n| |\n| 100k bet! |\nx================================+\n```\n\nDate: 2024-01-29\n\nNumber of participants: 19\n\nPrize Pool: `133369 sats` \n\nPrize Pool change since [last elimination update](https://stacker.news/items/385252): `+2523 sats` _(zap this post to donate to the pool)_\n\n| Nym | Day | Paid | Elimination Date | Eliminated |\n| --- | --- | ---- | ---------------- | ---------- |\n| @orthwyrm | 260 | X | 2024-02-18 | |\n| @mango | 359 | X | 2024-04-11 | |\n| @Alby | 365 | | 2024-04-21 | |\n| @siggy47 | 380 | X | 2024-05-18 | |\n| @CheezeGrater | 418 | X | 2024-06-07 | |\n| @ekzyis | 420 | X | 2024-06-11 | |\n| @0fje0 | 427 | X | 2024-06-21 | |\n| @phatom | 440 | | 2024-07-21 | |\n| @486DX2 | 486 | X | 2024-08-20 | |\n| @carlosfandango | 501 | X | 2024-09-07 | |\n| @Lux | 522 | X | 2024-10-09 | |\n| @davidw | 564 | X | 2024-11-02 | |\n| @nikotsla | 570 | X | 2024-11-12 | |\n| @BitcoinIsTheFuture | 584 | | 2024-12-01 | |\n| @south_korea_ln | 608 | X | 2025-01-04 | |\n| @Undisciplined | 653 | X | 2025-01-28 | |\n| @grayruby | 655 | X | 2025-02-03 | |\n| @gnilma | 666 | X | 2025-02-26 | |\n| @Longtermwizard | 700 | X | | |\n\nNext elimination: @orthwyrm (20 days remaining)\n\n_Want to participate? Click [here](https://stacker.news/items/363233) for more information._ \N 1245 \N 140403 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.366005361434 0 \N \N f 0 \N 0 163873123 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 140382 2024-03-10 09:24:27.586 2025-03-29 22:39:47.912 Why I'm Bullish 7: Bitcoin is for Enemies I don't recall which bitcoiner I heard make this claim but it stuck with me. Bitcoin is for enemies. Falling down the rabbit hole of bitcoin has led me to learn more about many topics and connected many dots for me. One is that money is a utility. It is used by everyone. A good money will be used by people that hate you. Regardless of their values they need money. Even people that claim to hate money use it. They actually want it. It always sticks out to me when someone with more of a socialist mindset talks about how much they hate freedom, I mean capitalism. And they hate money. Yet they seem to just want to take it from others. \n\nThe best money is going to win eventually. Fiat money worked better than gold for a while. It sucks at protecting value over time but it is easier to transport than gold. Criminals use it. Good people use it. Enemies of your nation use it. This is one of many reasons why I find it so odd that politicians seem to think they should point out how many bad people use bitcoin.\n\nWe all have our morals and opinions. You and I don't agree with many people that hold or use bitcoin. I think NFTs are dumb. I think the whole inscriptions nonsense is a waste of blockspace. But, it was inevitable that these people would make their way to the best system, bitcoin. When people ask me about bitcoin they sometimes ask if the devs could censor the network. The answer is not really. Because the node runners decide which version of the software to run. This became a reality for me when the inscriptions came on the scene in early 2023. Like many of you, I was angry about it. This is dumb. This is driving up fees. But as I thought more about it and heard the many arguments about it I started to land on a different angle. Bitcoin is for enemies.\n\nEven though so many prominent bitcoiners want to stop inscriptions they really can't. It is very hard to get consensus to do something to the protocol to stop it. We have seen that Ocean mining is refusing to mine these transactions but that doesn't work either. The incentives are such that another miner will just collect the fees and include the transactions in their block. The inscriptions crowd just showed us that even the most adamant bitcoiners are gonna find it hard to stop transactions they don't like. Someone once said that no one tries to censor inoffensive speech. It is offensive speach that gets censored. So the fact that offensive use of block space isn't censored... I think that is bullish.\n\nRead my previous posts in this series.\n\n- [1: Bitcoin is a Hurricane](https://stacker.news/items/383549)\n- [2: SeedSigner](https://stacker.news/items/384892)\n- [3: China Mining Ban](https://stacker.news/items/389176)\n- [4: Becoming Your Own Banker](https://stacker.news/items/391061)\n- [5: Open Source Money](https://stacker.news/items/392251)\n- [6: The ETFs are Capitulation](https://stacker.news/items/398832)\n \N 16212 \N 140382 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.55024535986104 0 \N \N f 0 \N 0 88926197 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 209889 2024-08-03 15:48:31.343 2025-03-29 22:39:47.912 Nostr Market: Simple Bitcoin classifieds for Nostr via the #nostrmarket hashtag \N https://nostr.bitejo.com 1571 \N 209889 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.8590115653959 0 \N \N f 0 \N 0 17069881 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 212283 2024-08-08 17:48:16.589 2025-03-29 22:39:47.912 Fedimint: Scaling Bitcoin for Billions of People? # Fedimint: Scaling Bitcoin for Billions of People?\n\n[Fedimint](https://fedimint.org/) is an open-source community custody protocol to scale Bitcoin for billions of people!\n\nHow does Fedimint work and what are its benefits and trade-offs?\n\n## Not Everybody Can Afford a Lightning Channel in the Future!\n\nAs the Bitcoin ecosystem grows, the blockchain transaction fees are expected to go higher.\n\nUnfortunately, 8 billion people in the world can't afford to all have their own Lightning channels! \n\n3rd party custodians have so far filled in the demand:\n\nCentralized exchanges, custodial Lightning wallets, ETFs..\n\nBut these solutions bring in counterparty risk and single point of failure.\n\n## Federated Chaumian E-Cash\n\nFedimint reduces this risk with its federated Chaumian e-cash model.\n\nUsers' bitcoin is held in a federated multisig operated by "guardians".\n\nThese guardians issue e-cash vouchers denominated in sats to the users of a specific Fedimint federation. \n\nI wrote a post about Cashu and e-cash a while ago where the workings of e-cash are explained in more detail: https://stacker.news/items/688053 \n\nIssued e-cash can only be transacted within the federation, but with the help of Lightning Network gateways, it can be sent between different Fedimint federations. \n\n## Fedimint Bitcoin is an IOU, Not Real Bitcoin!\n\nAlthough federations are interoperable with Lightning, the guardians can still collude and take users' funds!\n\nIf you want to withdraw on-chain, you need the federation's permission.\n\nEffectively, Fedimint bitcoin is an IOU (or weOU) and not real bitcoin!\n\nNot your keys, not your coins!\n\nIt's like a community bank or a credit union!\n\n![](https://m.stacker.news/59314)\n\n## From 3rd Party Custody to "2nd Party Custody"\n\nHowever, the benefits could outweigh the trade-offs.\n\nIf you're already using a hardware wallet or running Lightning nodes, maybe Fedimint is not for you. \n\nThe target group for Fedimint federations are the masses who rely on centralized exchanges and 3rd party custody.\n\nFedimint introduces "second-party custody": instead of trusting a 3rd party company to store funds, federation members can trust individuals who they have a prior relationship with.\n\nThese could be family members, friends, tech-savvy people in a community etc.\n\nFederation guardians who have a lot of social capital at stake might be less incentivized to run away with users' funds.\n\nIn many developing countries, financial services are already often run by local associations to carry out savings, credit and commerce. \n\nTrust is a great way to scale.\n\nTrust isn't inherently bad. \n\nIt just matters who you trust. \n\nFedimint is meant to scale Bitcoin by eventually having hundreds of thousands of federations that communicate with each other via Lightning gateways.\n\n## Know Your Federation!\n\nIf one federation becomes too large, the rug pull risk might grow.\n\nFor this reason, it's important to know which federation you're joining.\n\nInstead of KYC, it's KYF (Know Your Friend, Family, Federation)!\n\nLarger federations might be better for privacy, whereas smaller ones fit better for custodying funds.\n\nTo hedge against the risks, you could reduce your time and transaction amounts in larger federations etc.\n\nThe idea behind Fedimint (using Chaumian e-cash in a federated way) was first conceived and implemented by Eric Sirion in mid-2021. \n\nToday, a team of contributors work on the protocol to develop it further.\n\n## How to Join a Fedimint?\n\nTo join a fedimint, you can just scan a community QR code in the [Fedi app](https://www.fedi.xyz/) @FediTeam.\n\nNo phone number, email or KYC is needed.\n\nThen you can request sats by depositing a Lightning payment.\n\nOnce you have the "fedi-bitcoin" in the federation, you can interact with other federation members instantly and without any fees.\n\nBecause of the blind signatures in the e-cash protocol, the transactions are also private within the mint. \n\n![](https://m.stacker.news/59315)\n\nE-cash is a digital bearer asset on your device, so you can also transact with it offline.\n\nOnce the receiver is back online, the wallet software makes sure the sats have not been double-spent, and credits the receiver's e-cash balance. \n\n## Fedimint Guardians\n\nFedimint requires a set of guardians to establish the federation, hold the keys to the Bitcoin multisig, and to custody the hardware that runs the Fedimint nodes. \n\nEach Fedimint node can be a lightweight Bitcoin node, e.g. a pruned node.\n\nHowever, there would be a linear growth in the storage requirement the more e-cash is being spent and redeemed.\n\nFedimint federations are designed to be Byzantine Fault Tolerant (BFT), and resilient to "m" number of malicious nodes in a federation of 3m + 1.\n\nThat means that a federation of 4 guardians is resilient to 1 malicious guardian, a federation of 7 guardians to 2 etc.\n\nA federation can still operate even if a minority of guardians disconnect from the network. \n\nIf a majority of guardians are offline, the consensus protocol will halt its operation until a quorum is back online, at which point the protocol execution can continue. \n\n## Private Balances and Transactions \n\nBesides distributing 3rd party custody, Fedimint e-cash has privacy benefits.\n\nGuardians don't have a view on federation members' transactions or balances. \n\nKnowing the exact bitcoin balance of all community members could be troublesome for security reasons!\n\nFedimints could therefore be used for coinjoins, and since the protocol is private by default, it could defeat the KYC surveillance system!\n\n## Lightning Gateways Make Fedimints Interoperable\n\nFederation guardians don't need to run Lightning nodes.\n\nAny user can act as a Lightning gateway, and generate a profit by charging fees from converting Lightning sats to e-cash and vice versa via HTLCs (hash time-locked contracts).\n\n![](https://m.stacker.news/59316)\n\nWithout Lightning, fedimints would have limited utility because they wouldn't be interoperable with the rest of the Bitcoin ecosystem.\n\nFedimints are like little islands, and Lightning gateways are the bridges that connect them. \n\nThere could be thousands, millions or even billions of Fedimint users, but only hundreds or thousands of actors running Lightning services. \n\nFedimints can also boost demand for Lightning service providers, which could in turn increase liquidity in the Lightning Network.\n\n## "Temporary Private Money Storages"?\n\nTo mitigate the rug pull risk, users should choose their federation wisely, and consider the amount of funds they lock in a federation.\n\nAlso, the time duration to store the funds is a question to consider.\n\nMaybe treat fedimints as "temporary private money storages"?\n\nFederations could be audited by creating new standards, or by implementing "automated bank runs" regularly to check if federations' assets and liabilities match. \n\nTo protect users, maybe wallets could let users automatically withdraw after a specified time? \n\n## No Profit for Guardians, No KYC?\n\nWill federation guardians be forced to perform KYC to the federation members?\n\nThis is an open question, but some argue that if the guardians don't make a profit from running the federation, they could be exempt from performing KYC.\n\nYou don't need a license to custody your child's piggy bank either, right?\n\nThis could save smaller federation communities from strict regulation standards. \n\nThe Lightning gateways represent the economic actors in the system, but they operate outside the Fedimint protocol. \n\nIt remains to be seen though whether the first major rug pull (it will eventually happen, right?) would stoke discussion whether the sole custodying (without generating a profit) would require some kind of a permit. \n\nAlso, a "shotgun KYC" is possible: federations can grow larger, and then by government pressure require KYC from users in order for them to be able to withdraw funds. \n\n## Modules for "Trusted Smart Contracting"\n\nThe Fedimint protocol enables various "modules" for financial services within the federation.\n\nBy default, these are Bitcoin, Lightning and Chaumian e-cash.\n\nBut it can also enable "trusted smart contracting".\n\nTheoretically, you could build e.g. a P2P exchange, lending, automated market makers, stability pools, prediction markets, oracles, encrypted password management or social communication inside a Fedimint federation. \n\nA fedimint can execute any command in exchange for sats. \n\nThe federation could offer a hosted access to an AI model for its members.\n\nOr a Nostr account for communities with federated signing keys.\n\nOr a community Nostr relay. \n\nFedimint is an open protocol and no permissions are needed to build new modules and business models.\n\nFederations can be seen as online spaces where members can use their phone to send each other messages and money, and store sensitive individual or community data in an encrypted manner. \n\n## Sharded Data Back-Up\n\nIf a federation member loses her phone, or access to her funds or data within the Fedimint, the federation can help recover it. \n\nFedimint uses Shamir's Secret Sharing for data back-up:\n\nThis allows data to be broken up to shards.\n\nThese shards can be placed with different parties, and reassembled only if a threshold of shards can be found.\n\nYou can think of the process as an encrypted password back-up to a mini private Dropbox or Google Drive run by the federation. \n\nBuilding on the recovery process, Fedimint federations could help with estate planning and inheritance, so that the funds and data would be available at one's passing. \n\nYou could set up a federation for your family Bitcoin treasury and act as an Uncle Jim preserving generational wealth across geographical boundaries and multiple people and devices!\n\n## Testing Environment for Bitcoin?\n\nIdeally, federations have relatively few guardians because having more nodes in the protocol makes its execution slower. \n\nWith future upgrades, Fedimint could have more guardians than many proof-of-stake blockchains have nodes, and could thus provide a more decentralized alternative to many smart contract blockchains. \n\nThe programmable environment within fedimints could also provide a testing ground for experimentation and for possible soft forks for Bitcoin. \n\n## "Bitcoin Adoption Technology"\n\nFedimint is a step away from centralized exchanges, but self-custodying your bitcoin is still the best option!\n\nFedimint can be seen as "Bitcoin adoption technology". \n\nOnce federation members collect more sats, they will hopefully "graduate" to self-custody.\n\nMaybe they will even become federation guardians for other new Bitcoin users in their circles!\n\nAre you "fedipilled"?\n\nWhat do you think about the protocol?\n\nWill it help scale Bitcoin or will rug pulls galore and everybody will lose their money?\n\n## Additional Resources\n\n["FediMint: What Is It & What Could It Mean For Bitcoin?", video tutorial by Ian Major](https://www.youtube.com/watch?v=jaP2ZABnK1o) @IanM\n\n["Fedimint Primer", presentation by Pete Winn for the Bitcoin Design Community](https://www.youtube.com/watch?v=G4iclApJL0c)\n\n["Can Fedimints Help Bitcoin Scale To The World?", article by Alex Gladstein](https://bitcoinmagazine.com/culture/will-fedimints-bring-bitcoin-to-the-world) @gladstein\n\n["Understanding Fedimint & Federations with Kody Low - Head of Dev & Product Support at Fedi", podcast by Built on Bitcoin](https://www.youtube.com/watch?v=-cDK_VzFg8U&t)\n\n["How Bitcoin Scales (Fedimint)", video by Bitcoin University](https://www.youtube.com/watch?v=psObTmh-Qy4)\n\n["Revolutionizing Bitcoin: Fedi and the Fedimint Protocol with Obi Nwosu", podcast by Robert Breedlove from October 2024](https://www.youtube.com/watch?v=xL3awG92jog)\n\n["bitcoin++ ecash edition", presentation by the Fedimint creator Eric Sirion from October 2024](https://www.youtube.com/live/Bp-HTGqboBU)\n\n["Awesome Fedimint", a curated list of things related to Fedimint](https://github.com/fedimint/awesome-fedimint)\n\n## Project Links \n\n[Website](https://fedimint.org/)\n\n[GitHub](https://github.com/fedimint)\n\n[X (Twitter)](https://x.com/fedimint)\n\n[Telegram](https://t.me/fedimint)\n\n[Discord](https://chat.fedimint.org/) \N 1726 \N 212283 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.89321178754349 0 \N \N f 0 \N 0 195340039 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 151803 2024-03-31 19:08:38.355 2025-03-29 22:39:47.912 Bitcoiners: Check Your Privilege, I Mean Time Preference Lately I've been thinking about high time preference. For those that have heard this term and are not familiar, the layman's definition is short term vs. long term thinking. Many bitcoiners like to think of themselves as having low time preference. In other words they are patient. In practice and even on Stacker.news I've noticed more high time preference signals in bitcoiners than we'd like to admit. Here are some examples.\n\n* Price / fiat exchange rate\n* Government adoption or defeat\n* Mass adoption\n\nAll of these are essentially high time preference related. I'll expand on each of them. I'm curious what you all think though.\n\n## Bitcoin Fiat Exchange Price\n\nThis is probably the most obvious high time preference example in bitcoin. New bitcoiners tend to fall into the trap of obsessing over price. When bitcoin price spikes to all time highs everyone is interested and is asking me about bitcoin. When price falls and you can stack more sats no one cares. Granted, price still matters but the idea that you are gonna get rich with bitcoin trading is high time preference. To quote Saifedean this is "Fiat mind". Bitcoin is a great store of value but right now it is still in its infancy when compared to gold and even fiat. Adjust your time preference bitcoiners.\n\n## Government Adoption or Defeat\n\nAll empires fall. There is a paradox I've noticed. Most fiat people can't imagine a world where the US government is not in control of the world. Even a brief look at history points out the folly of this mindset. In the early 1980s most Americans could not imagine the fall of the USSR. In 1989 it was all over. Bitcoiners on the other hand often have this fever dream that the US / Fiat world will fold in the next year or two. That could happen but it may not happen for the next 25-100 years. There are even people that think we should speed up the fall of these empires by violence. Again, this is high time preference and foolish.\n\nThen you have the people that are obsessed with politics and getting politicians to "support" bitcoin. If bitcoin requires politician's support we are doomed. IMO bitcoin will eventually obsolete the existing political system. As the bitcoin network grows political support will occur organically. Focus on helping your fellow plebs. Ignore these clowns that attempt to rule over us.\n\n## Mass Adoption\n\nI hear people say over and over again how bitcoin has existed for so long and why hasn't it been adopted by the masses? This is a huge example of high time preference. The reality is that for those how could easily adopt bitcoin they currently fail to see the need. For those that need it most, adoption is not simple or easy yet. We will get there but we are not there yet. It will take time. Those of us in relatively free and prosperous nations should be using bitcoin as much as we can, helping test the tools, and supporting development of better tools.\n\n## Conclusion\n\nBitcoin is a tool for civilization. It is a revolutionary idea and technology. Sure, I want to see bitcoin mass adoption in my lifetime. I want to see the warfare state end. I want to see open source money spread across the world. These things will happen. If they don't happen in the next 5 years that doesn't mean bitcoin has failed. As individuals who value freedom and self sovereignty focus on becoming free. Freedom and sovereignty requires responsibility and if you aren't working towards becoming free and sovereign you won't be ready when the existing system fails. We need to adjust our time preference. We need to focus on the long term growth and health of bitcoin for humanity's sake.\n\nWhat did I miss. What did I get wrong. Thanks for reading :) \N 18219 \N 151803 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.98323808237243 0 \N \N f 0 \N 0 79634765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 169784 2024-05-13 19:52:47.45 2025-03-29 22:39:47.912 Retrain Your Brain _Author: Anna Von Reitz 23/12/2023 @ http://www.paulstramer.net/2023/12/retrain-your-brain.html_\n\n\nEver since you were born, you have been trained to accept and obey "authorities". \n\nFirst, it was your parents and grandparents and older siblings, then it was your teachers in school, your drill instructors in the military services, professors in college, and bosses at work. \n\nAll your life you have been indoctrinated to let other people tell you what to do and how to do it and when to do it and how much to do it. Most of the time, they didn't bother to tell you why, or think very deeply about that themselves. \n\nIt just seemed to be part of the order of things that others gave you orders, and you obeyed. \n\nLater, you became parents and started giving orders, you advanced in ranks and started giving orders, you advanced at work and started giving orders. \n\nEverything in your life has been "positional" and reduced down to either giving or taking orders. \n\nDoesn't that seem the least bit strange? Have you ever imagined other possibilities and ways to live? \n\nAnd now here I am, for the moment playing drill sergeant myself, and going, "Pssst! Stop doing that! Stop assuming that you have to either obey someone or give orders yourself!"\n\nThere are other options. \n\nYou need to learn them. \n\nThis is a brain retraining exercise. \n\nI want you to think of yourself as a consumer of government services, in the same way that you are a consumer of automobiles and television sets. \n\nWould you put up with an automobile that strapped you in and took you where it wanted to go? \n\nHow about a television set that only played channels that it liked?\n\nSo why would you put up with and pay for a government that charged you for providing services you didn't order? \n\nAnd provided these "services" in a way detrimental to your safety and security and well-being and comfort, too? \n\nIf it were an automobile or television, you'd either not buy it in the first place or take it back to the store. If that was the only kind of automobile or television you could get, you'd probably start doing without either one. \n\nIt can be the same way with a run amok "government services corporation", and just like you could let the car manufacturer know what was wrong with their product, you can let the government corporations know what is wrong with theirs. \n\nYou can be discerning and picky. You can decide which services you receive and which ones you pay for. These "governmental services providers" are, after all, just corporations like General Motors, Inc. \n\nOnce you really, truly understand that, your world changes. You change. You become empowered. \n\nYou realize that these public employees have been charging you for services you never ordered, and not providing services and exemptions that they are required to provide by the Constitutions allowing their businesses to exist and operate in this country. \n\nYou don't have to get mad, but you do need to get even. \n\nRealize that you are the buyer, so you call the shots. Realize that you are the employer and they are the employees -- so stop groveling or pleading with them. \n\nTell them what to do. \n\nJust like you wouldn't abuse your own employees on the job, or be impolite to people for no reason, there's no reason to scream and shout. Just level out and look them in the eye and tell them what to do. \n\n"I am. I am not part of any organization. You are acting as a subcontractor and employee of my actual government and you owe me good faith service, therefore I am instructing you to....." \n\n....get off my property.\n....set me free and don't bother me again.\n....stop making false claims concerning me.\n....stop trying to subject me to foreign law. \n....stop trying to impersonate me. \n....stop evading your constitutional obligations. \n....stop trying to collect money, when you have cause to know that there is no actual money in this economy.\n....stop misaddressing me as "Mister" or "Missus" or "Miss" because I don't have or accept any foreign titles.\n....stop sending me mail addressed to an unauthorized Municipal CORPORATION being operated in my name. \n\nAnd the list goes on. Be creative. \n\n....stop pretending that I ever gave you permission to interfere in my life and kidnap my children. \n....stop pretending that I need a license to conduct business in my own country, or a license to get married or a license to travel in my car for non-commercial purposes. \n....stop doing what you are doing. It's not right and it's not appropriate. \n....show me where I agreed to loan this bank my house as collateral for them to borrow against? \n....show me where this bank gave me full disclosure about what they were doing? \n....show me how owning a debt note issued by the FEDERAL RESERVE and the UNITED STATES OF AMERICA corporation makes me a debtor? \n\nYou get the idea. \n\nDeal with the "government" the way you would deal with any services vendor that got too carried away trying to sell you "services" you didn't want or products you didn't like or need. \n\nYou just need to retrain your thinking about the government, and before you know it, your relationship with the government will change. \n\nYour employees will no longer be ordering you around, and you will no longer be obeying them. At which point, the world will flip right-side up and the tail will stop wagging the dog. \N 19806 \N 169784 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.2999821069663 0 \N \N f 0 \N 0 108117000 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 190273 2024-06-27 01:20:01.361 2025-03-29 22:39:47.912 A discussion about layers Over time, there seem to be more new layers being conceptualized and built on top of Bitcoin. I wanted to list all the ones I know here. Some of them everyone is pretty familiar with and are quite old. Others just recently came into being within the last couple of years. What do you guys think of each of these layers. How scalable are they? How private are they? Which ones are likely to win out in the long run? Which are you most excited for?\n\n- [Lightning Network (obviously)](https://lightning.network/)\n- [Liquid Network](https://liquid.net/)\n- Chaumian Ecash ([cashu](https://cashu.space/), [fedi](https://www.fedi.xyz/), [fedimint](https://fedimint.org/))\n- Mercury ([Mercury Wallet](https://mercurywallet.com/), [Mercury Layer](https://twitter.com/gregory_nico/status/1666795977137700866))\n- [Ark](https://www.arkpill.me/)\n- [Layer 1/Prime](https://github.com/LNP-BP/layer1)\n\nFeel free to post about any other layers projects/concepts I may have missed. \N 763 \N 190273 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.9231537984135 0 \N \N f 0 \N 0 163409460 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 190543 2024-06-27 12:52:58.339 2025-03-29 22:39:47.912 How Money Evolves. *Genesis article. Block height: 760500. From the barter economy to metals, from fiat money to Bitcoin. The most saleable good in a marketplace is what is called money.*\n\nOriginal article: https://carlbmenger.substack.com/p/how-money-evolves\n——————-———————————\n\n![How money evolves](https://i.postimg.cc/SKnB50Xy/IMG-0566.jpg)\n\nMoney is undoubtedly a significant aspect of human life, intricately woven into our daily routines, aspirations, and dreams. It's a tool that facilitates transactions, empowers choices, and even symbolises success in many societies. However, the importance of money extends far beyond its face value. So let us explore how money evolves in a society.\n\n> „Money is and has always been a tool to trade human time. That is the reason why the history of money is closely linked to the history of mankind in general.“\n\n### The Barter Economy\n\nThe “Neolithic Revolution”, i.e. the transition from the “nomadic way of life and predominant occupation economy” of hunters, gatherers and fishermen to a settled life as a farmer, was decisive in this respect. Not only did our living habits change, but also our way of interconnecting with each other. Hunters and gatherers were organized in small groups (max 150 people), which had to adapt quickly to new circumstances and never stayed long in the same place. With the settling, the size of the group also grew. People began to barter and quickly discovered the advantage of specialization. When humans began to exchange with one another, they intuitively discovered the division of labor, which allows people to focus on their relative advantages and concentrate on their chosen craft:\n\nEve was good at fishing, while Adam was good at cooking. Therefore, it was more efficient for Eve to focus exclusively on fishing and trade the fish she caught with Adam, who would prepare it for her. Thus, Eve could catch more fish and could also enjoy a better meal. Adam could feed more guests and did not have to go fishing himself. On top of that, Eve could also put some of her time into improving the equipment and thus her productivity increased. Adam was able to do the same. Because of the increased production, the number of barter transactions also increased.\n\nWhile at the beginning of the agricultural revolution the groups were still small, these villages grew by leaps and bounds due to the increased productivity and the increased amount of food. The first towns sprang up. When many strangers work together, the economy of mutual favors and obligations no longer works. With the increased number of people and products, it also becomes more complicated to exchange things for other things. This was the birth of money, solving the double coincidence of wants problem.\n\n### Saleability\n\n> „The most saleable good in its marketplace is what is called money.“\n\nLet's imagine that Eve's fishing rod breaks, and she needs a new one. She goes to someone who sells fishing rods. The seller doesn't like fish, he instead prefers apples. Eve must now find someone who will trade fish for apples, and then trade the apples for the fishing rod. All very cumbersome and time-consuming.\n\nImagine now that Eve, before embarking on further exchange missions, gathers some information, not only on the preferences of the one fishing rod producer, but figures out which good is generally preferred by market participants. Let's assume that bags of wheat are very popular and in demand in the marketplace. Almost everyone accepts wheat in return for their goods. With this information, it makes sense for Eve, to exchange her fish for bags of wheat. Now Eve has a variety of ways to trade them for a new fishing rod and not just one option. She will therefore get a much better deal and can exchange the surplus for other things. It logically follows that the good in the marketplace with a relatively high grade of acceptance in barter - or saleableness - gradually has its saleablness enhanced even further as individuals like Eve use it as a medium of exchange.\n\nThus, the most saleable good in a marketplace is called money. In fact, the very words for ‘money’ often were indistinguishable from the words of various traded goods, like coffee, cowries or livestock. The specific money good in the marketplace is now demanded not only for the uses it had prior to becoming money, but also for the specific use case of facilitating much more efficient barter, or economic exchange, now as well as in the future. Money, therefore, is the best interspatial, intertemporal and interscalable medium of exchange.\n\n> “The theory of money necessarily presupposes a theory of the saleableness of goods.”\n\nIt is critical to understand that the origin story of a good emerging as money does not necessarily end with the good's now more or less absolute state of superior saleablness. While having once fully shouldered the mantle for money, bags of wheat may end up losing it in favor of another good now better suited, because wheat is hard to store and may spoil. In other words, wheat may slowly be demonetized in favor of more durable goods. It lies in the economic interest of each trafficking individual to exchange less saleable for more saleable commodities.\n\nThe dynamic above, of that of money naturally getting dethroned in favor of goods better suited, has historically shown itself countless times. One such major transition used to happen when the nomadic population became more sedentary. The nomads have considered animals as money. The costs of storing their livestock money at home became more burdensome in cities due to lack of space. This created a pressure on the saleablness of that money, which ultimately had it dethroned in favor of copper, silver and gold, which is easier to store and exchange. The birth of coinage.\n\n### Hard Money\n\nThere is still one important external factor affecting the saleablness of money, which we have not yet considered. It is the dilution and debasement resistance of money. It may be very well be the case that money, while having emerged after a number of iterations, and while having properties that cause it to be highly transportable, durable, divisible, fungible and so on, still sees its saleableness suffer due to being easily produced, or more specifically, diluted.\n\nThe valuation of the good, that became money, usually increases due to higher demand. Prior to monetization, the good was subjectively valued by individuals only for its original use case, but now it is suddenly valued for the vital use case of facilitating the cheapest possible barter, or economic exchange. In a society of surpluses, it facilitates savings, which is just another word for deferred economic exchange.\n\nIt must further be understood that the monetary good in question was collected or produced by individuals also before it emerged as money. Seeing an increase in its demand and consequently its valuation in comparison to all other goods, this of course acts as information to the collectors or the producers, signaling that it is suddenly profitable to expend more resources in order to acquire more units.\n\n> „Any good being monetized quickly attracts more production, meaning higher dilution of the existing supply, meaning a dampening effect on the price.“\n\nNow the holder of the most saleable goods suddenly find themselves having to bear the increased supply and the dampening price. It is in their economic interest, to seek out goods with higher resistance to such dilution, yet with similar monetary properties in regard to saleableness across space and time.\n\nPerhaps it is now clear, that the next iteration of a good getting monetized ought to occur for metals that were hard to dilute. Gold and Silver are harder to dilute than copper, for example, that's why the first two won out over all the others. It is just natural for individuals to want to escape the cost of dilution, and so the very same broader dynamic of cost minimization in regard to economic exchange, that dethroned foodstuff in favor of metal coins like copper, and copper in favor of silver, and silver in favor of gold, now makes itself known again.\n\nThis means that over a longer period of time, the form of money that is not only fungible and divisible, but also best protects against dilution, prevails. This is also the reason why gold and not wheat has been considered money for centuries. The production of gold is limited because it is basically rare in nature and requires great resources to dig it up. You now may wonder why our current monetary system is then based on paper money that can be multiplied at will. Let's take a look.\n\n### Soft (Fiat) Money\n\n![Fiat Money](https://i.postimg.cc/bNZP22TC/IMG-0567.jpg)\n\nThe Latin word “fiat” means “let it be done”, and in English, the term has been adopted to mean a formal decree, authorization, or rule. Value on a solely fiat based system is not based on a freely traded physical commodity but is instead dictated by authority, which can control its issuance, supply, clearance, and settlement, and even confiscate it at any time it sees fit.\n\nIf you look at the history of fiat moneys, they very often start with the promise that you can exchange a certain amount at a certain price for a commodity, usually a scarce commodity like gold. This is also how our current fiat system started. The reason for this provision is to limit the issuance of new money, to gain trust. This usually works quite well for a while, until it suddenly stops working. This was also the case in 1971, when President Nixon 'temporarily' suspended the exchange of dollars for gold. Since then, we have money based solely on trust, without any limits to the increase in money supply.\n\nWhat people tend to forget about easily produced money, however, is the hidden costs that from time to time appear and inadvertently suffocate trade and production. Since the cost of money production is low, mass production is suddenly economical, creating a situation where such innovative and modern monetary systems were indeed saved from the frying pan, just to be chaotically put into the fire instead. The sudden low cost of money production has time and time again thrown economies into states of incredibly high and destructive monetary inflation, with accompanying deterioration of trade, of savings and, in the end, of dignity as the authorities overstep their bounds in clumsy attempts to counter the ever more grim situation. All experiments with fiat money failed. Why should it be different this time, and what is the logical consequence?\n\nIf you look at the high debt levels and the increased general price level, you can see that our fiat monies are losing confidence, gradually at first and then suddenly. Since trust is the only thing paper money is based on, it is likely that sooner or later they will collapse like a house of cards. It is not a question of if, but rather when. If you look at history, every soft money standard has been replaced or at least backed by a hard money standard after a period of upheaval. As we have seen, the money that best fulfills the properties of transport through time and space combined with scarcity will prevail in the end. It is very unlikely that we will go back to a standard based on stones in a digital world. Especially since gold has a big problem that also led to why paper money prevailed in the first place: The burdensome and slow transport through space. This in turn leads us directly to Bitcoin.\n\n### The Bitcoin Standard\n\n> „It‘s not about making money with Bitcoin, it‘s about making Bitcoin money.“\n\nBitcoin combines the characteristics of fiat money, i.e. the easier transfer through space, with the characteristics of gold, i.e. the better transfer through time. Bitcoin is therefore the next logical stage of iteration, because people naturally want to escape the cost of dilution, and so the very same broader dynamic of cost minimization in regard to economic exchange, that dethroned foodstuff in favor of metal coins now makes itself known again.\n\nWhenever a new iteration process takes place, it must be noted that these processes are not smooth and straightforward, but occur in waves. Every iteration process initially brings volatility, which only decreases as the new money becomes more widespread. It must also be emphasized that these processes are always initiated by the fact that at the beginning there are more and more people who collect and hoard (hodl) the new, superior money.\n\nThe more people this new form of money hoard, the higher the valuation in comparison to all other goods over time will be, this of course acts as information to the collectors, signaling that it is suddenly profitable to expend more resources in order to acquire more units. As we have seen, this price increase lead to more resources being devoted to producing the better money. But the fact that Bitcoin is absolutely limited to 21 million units, means that it is completely inelastic to increased demand. If Bitcoin proves to be a better (harder) form of money and more people collect Bitcoin for this reason, the price will have to increase compared to all other goods, because the supply can't be expanded.\n\nMoney is basically a game where the winner takes all. In a globalized world, the superior form of money, i.g. the money with the most saleability, sooner or later prevails everywhere. The commodity that becomes money is the one that has the highest saleability, because it is the easiest to transport through time and space, and the hardest to multiply.\n\nIn the end, it is not mystical or magical, but just the most saleable good that prevails over a longer period of time. Money, fulfilling such an incredible important role for the prospering of individuals, is therefore nothing to be tampered or experimented with. It is, on the contrary, the result of a conscious effort on the part of individuals, and should be left to their discretion just as any other market activity. Why many assume that money in particular must be something that requires government coercion, even though fiat money is historically the exception, needs further study.\n\n### The End\n\nThat's it for this episode. I hope you gathered some valuable knowledge from this one. Thanks for reading, and see you in the next one.\n\n**₿ critical, ₿ informed, ₿ prepared. Yours,**\n\n![Carl B Menger](https://i.postimg.cc/635Wb6sy/5589d578-73d1-4077-9870-30af219effe0-808x163.png)\n\n### Stay tuned\n**Subscribe to my Newsletter:** https://open.substack.com/pub/carlbmenger/p/coming-soon\nFollow me on **Twitter**: https://mobile.twitter.com/CarlBMenger\nFollow me on **NOSTR**: npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n### Knowledge is Key\n[XVI] Joy of Compounding: https://stacker.news/items/547441\n[XV] Optionality: https://stacker.news/items/512150\n[XIV] The Bitcoin Halving: https://stacker.news/items/487510\n[XIII] The Lightning Network: https://stacker.news/items/261714\n[XII] CBDCs: A Brave New World: https://stacker.news/items/213580\n[XI] Valuing Bitcoin: https://stacker.news/items/208983\n[X] Solving the Adoption Dilemma: https://stacker.news/items/201172\n[IX] NOSTR: Social Media 2.0: https://stacker.news/items/189821\n[VIII] The Bitcoin Retirement Plan: https://stacker.news/items/183327\n[VII] Bitcoin in Guatemala: https://stacker.news/items/171339\n[VI] Bitcoin in El Salvador: https://stacker.news/items/161607 \N 11378 \N 190543 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.9062460130663 0 \N \N f 0 \N 0 46925940 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 169282 2024-05-12 20:22:08.934 2025-03-29 22:39:51.704 \N Think you could be right, more goods inflation will happen but probably not right away. I’m sure there’ll be other effects that come into play in coming months, to create yet another ‘perfect storm’. Everything seemed to land around a similar time in 2020.\n\nInteresting that people think rates are going near zero again, and are bullish risk for that fact. I don’t particularly like the comparison with 70s, but this chart posted by someone on Twitter attracted my attention yesterday. Wish I could remember who posted it. \n\nEdit: found it, [here’s the link](https://x.com/RealEJAntoni/status/1735361912706085076?s=20)\n\n![1970s inflation vs today](https://m.stacker.news/8223) https://example.com/ 20612 169274 169274.169282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.603686039952 0 \N \N f 0 \N 0 153527042 0 f f \N \N \N \N 169274 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 140680 2024-03-10 17:01:25.599 2025-03-29 22:39:51.705 \N Side Note: @k00b long term I wounder if stacker news should/can have a CriagList like section. \n\nYou already have the some of the payment infrastructure in place. https://example.com/ 2596 140625 140609.140617.140625.140680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5386820615891 0 \N \N f 0 \N 0 98174864 0 f f \N \N \N \N 140609 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 190559 2024-06-27 13:28:46.001 2025-03-29 22:39:51.705 \N Such a shame. Thanks to the mutiny team for all their efforts. Sad it didn't work out. https://example.com/ 21406 190541 190541.190559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.22444309950325 0 \N \N f 0 \N 0 131733773 0 f f \N \N \N \N 190541 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 188714 2024-06-24 00:37:00.985 2025-03-29 22:39:51.705 \N I'm trying to set up an LNBits instance on my node (Umbrel) to act as a custodian for family and friends using Bluewallet. \n\nI'm struggling with performance. Right now, I'm setting up the BW config to reach the node through Tor and performance is crap. I'm trying to understand how to potentially reach LNBits through clearnet, or perhaps put the LNBits container on a VPS, to get acceptable performance (hopefully, _excellent_ performance even :)). https://example.com/ 20434 188675 188308.188380.188387.188390.188396.188670.188673.188675.188714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.59446105485967 0 \N \N f 0 \N 0 39042331 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 191096 2024-06-28 17:12:09.762 2025-03-29 22:39:47.912 Running Bitcoin - ALS Golden West Running Bitcoin Challenge Went and run a half marathon this morning for the [ALS Golden West Running Bitcoin Challenge](http://runningbitcoin.us/). Yes, I'm slow and out of shape, but this is not about that.\n\n![0-run.png](https://m.stacker.news/11156)\n\nI was going to start a Stacker News team for the fundraiser, but when I saw the amount of KYC required to do so (see pic below), I just gave up. \n\n![1-register.JPG](https://m.stacker.news/11155)\n\nGood thing @davidw already created a [fund raiser page](http://secure.alsagoldenwest.org/goto/stacker-news) for us. **Please go join the team and donate there if you want to support this fund raiser**. Alternatively, I guess you can zap this post since I'm forwarding 100% of sats from this post to @davidw or wait to zap his upcoming post which he talked about writing in [this comment](https://stacker.news/items/379927).\n\nAs I said back on Dec 30, 2023 in [this comment](https://stacker.news/items/371931), I was committed to donate 1102009 sats. Since I wanted to stay anonymous, I just made a gift donation by clicking the "donate to btcpay" button on the main fundraiser page. Apparently, when you click that, you only need to provide a name, email address, and also type in the amount of sats/btc you want to donate.\n\n![2-specify amount.JPG](https://m.stacker.news/11157)\n\nYou get to specify the amount you want to donate in the next page, but it's denominated in fiat only (sucks for someone who thinks in sats). That makes it quite hard for me to hit exactly 1102009 sats. \n\n![4-btcpay.JPG](https://m.stacker.news/11158)\n\nSo I went to quickly checked the conversion rate and threw in a number that will highly likely cover the amount I wanted to donate. Turns out, I went over by 11,284 sats, but it's for a good cause anyways.\n\n![5-invoice.JPG](https://m.stacker.news/11160)\n\nI guess if you really wanted to, you can check that receiving address did get paid, but I'm not going to bother posting that here. I made this post because I brought up the idea of creating a team, got people interested, but never followed up on it. I guess this this my follow up and resolution to my [initial comment](https://stacker.news/items/371931). \n\nYes, I did run 21 km and completed the challenge; yes I did donate the amount I pledged; no I did not create the SN team on the fundraiser page, but I'm glad @davidw did. Please donate and help fight ALS!\n\nTagging you because you showed interest regarding the fund raiser in my [initial comment](https://stacker.news/items/371931). @siggy47 @davidw @carlosfandango @BitcoinIsTheFuture \N 19471 \N 191096 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.55454304657927 0 \N \N f 0 \N 0 127806052 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 288946 2024-11-07 05:42:52.612 2025-03-29 22:39:47.913 LNeSIM - buy eSIM: Travel, Holiday, Roaming, Internet data with BTC Lightning \N https://www.lnesim.com/ 21263 \N 288946 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.8025803310959 0 \N \N f 0 \N 0 152134811 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 259866 2024-10-08 09:26:22.351 2025-03-29 22:39:47.913 Will Milei Make Argentina Great Again? Caplan [doesn't consider himself an Austrian economist](https://econfaculty.gmu.edu/bcaplan/whyaust.htm) anymore, but he has the intellectual background, and is an interesting thinker on assorted topics, traditional econ or otherwise.\n\n> Those who remember “shock therapy” in the former Soviet bloc with horror will regard even a marginal move toward free-market policies with suspicion. The hard truth, though, is the shock therapy worked wonders. The countries that embraced radical free-market reforms in the 90s really are vastly better-off today as a result. Those that took a cautious, go-slow approach were stagnant by comparison.[x] The corollary of “In the long run, we’re all dead,” is that we’re all living in the long-run our predecessors chose for us. If Argentinians had voted for Chile’s free-market model back in the 80s when they were twice as rich as Chileans, their children would probably now be citizens of a First World country instead of a basket case.\n\nInteresting overall take. https://betonit.substack.com/p/will-milei-make-argentina-great-again 4776 \N 259866 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.399398536459 0 \N \N f 0 \N 0 95043838 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 246723 2024-09-25 04:40:07.461 2025-03-29 22:39:51.706 \N > “I would like to have the federal government begin to buy Bitcoin and over my term in office, ultimately have an equivalent amount of Bitcoin that we have gold.”\n>\n> As a reminder, the US government has the largest declared reserves of gold, with 8,134 tons of the precious metal. At current gold prices, that's $615 billion!\n>\n> A quick calculation shows just how much BTC RFK Jr. wants America to buy. That's 9.4 million BTC at today's price or 45% of the total Bitcoin supply to be mined. Considering that 3 or 4 million BTC are definitively lost forever, America would control over 55% of the Bitcoin supply available for use.\n\nThis calculation is totally wrong, you cannot buy such amount of BTC without driving it's USD price up much. There aren't 9.4 million BTC available on the market currently. So, actual BTC amount you need to buy to match US gold reserves is much much smaller. https://example.com/ 1631 246718 246718.246723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.518809782193337 0 \N \N f 0 \N 0 76705717 0 f f \N \N \N \N 246718 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 197441 2024-07-09 18:39:06.08 2025-03-29 22:39:47.913 What to do with GBTC? Anyone else have a bag of GBTC in an IRA? Saw a nice pop in its price... but the fee 1.5% is exorbitant compared to the other ETFs... should you HODL, or slowly trade out to other ETFs? What will happen if there's massive outflows? \N 694 \N 197441 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5353325119838 0 \N \N f 0 \N 0 144322886 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 146127 2024-03-20 11:55:37.227 2025-03-29 22:39:47.913 [Author Recommendation] Andrew Heaton Hopefully, some of you are familiar with [Andrew Heaton](https://mightyheaton.com/aboutandrewheaton). He's probably best known for contributing libertarian content to outlets like Reason and The Blaze. He's also a comedian and an author. I consider him to be one of the most underappreciated content creators today.\n\nI've read each of Heaton's five books and recommend each one without reservation. If you enjoy Kurt Vonnegut and Douglas Adams, I think you'll enjoy Andrew Heaton. Also, if you already enjoy Andrew Heaton, I think you'll love his books.\n\n# Non Fiction\n\n## Los Angeles is Hideous: Poems About an Ugly City\nHeaton made a career move to LA, even though he knew he hated the city. It happened to be just before Covid lockdowns.\n\nThese poems are an expression of the many many things he disdains about LA. It's a great coffee table book.\n\n## Laughter is Better than Communism\nI think this is the first book of his that I read. It's definitely the one I remember least clearly. However, Heaton is a hilarious political satirist. Check out his series [Mostly Weekly](https://mightyheaton.com/andrewheatonmostlyweekly) to get a sense of whether his humor is up your alley.\n\n\n# Fiction\n\n## Frank Got Abducted\nI was a big fan of The X-Files growing up and I also listened to a lot of Coast-to-Coast AM during late night drives. Frank Got Abducted is a goofy sci-fi conspiracy mystery that would fit in perfectly on either of those programs.\n\n## Happier as Werewolves\nThis is a romance story in familiar horror setting. Like much of Heaton's writing, the story is set in rural Oklahoma. That's where Andrew's from and his descriptions of home are both loving and hilarious.\n\n## Inappropriately Human: 21 Short Stories\nIf you enjoyed Vonnegut's short story collections, these are in that same vein: brilliant satire, strange sci-fi settings, but also some real emotional weight. \N 19813 \N 146127 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.66921773370486 0 \N \N f 0 \N 0 16004883 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 192971 2024-07-02 00:54:00.607 2025-03-29 22:39:51.708 \N Just announce everything that you consider an interesting snail update and we'll all zap it like trained monkeys and the pot will get bigger. https://example.com/ 886 192967 192964.192967.192971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0965635734579 0 \N \N f 0 \N 0 180185110 0 f f \N \N \N \N 192964 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 201477 2024-07-17 19:34:58.967 2025-03-29 22:39:47.913 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/416127) are the updates stackers shared from all their latest work projects. \N 897 \N 201477 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.06924926332906 0 \N \N f 0 \N 0 126377890 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1406 2022-09-13 19:43:15.457 2025-03-29 22:39:51.708 \N Tuttle twins have a great episode about bitcoin. There are also a couple books and games for kids about bitcoin. I think letting them earn some via zbd games etc is a good starting point. They get some sats and then send some sats and you explain along the way that they are using the lightning network and what the difference between base chain and layer 2 are and the difference between a custodial wallet like zbd and a self custodial wallet. Of course you do this over time. https://example.com/ 15282 1404 1357.1404.1406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2984644272097 0 \N \N f 0 \N 0 114457362 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1408 2022-09-13 19:51:23.469 2025-03-29 22:39:51.701 \N What are the key advantages of using Zeus over other setups like vpn home, RTL etc. https://example.com/ 16954 1389 1357.1389.1408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2303070249194 0 \N \N f 0 \N 0 139610672 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 216426 2024-08-18 07:23:24.009 2025-03-29 22:39:51.701 \N > they ask all the relays they are connected to\n\nThis is just dodging the question.\n\nHow do I know which relays to connect to? What if none of the relays I connected to are the one that relays notes from the `npub` that I want to follow?\n\n"Gossip" is just a happytalk phrase... it doesn't scale without a distance metric, and a DHT is nothing more than gossip plus distance metric. You can't expect to connect to *everybody* on the internet, so as you gossip your way around, you need a way of figuring out if you're getting closer to or farther from your goal. That's what a DHT is.\n\n> If you have suggestions to building nostr the way you prefer a distributed protocol to be, you may want to post those here: https://github.com/nostr-protocol/nips\n\nI'm seriously considering it. Posting here was a sanity check to make sure I wasn't missing some obvious existing solution.\n\nKind of put off that they require a github account though instead of using [NIP-34](https://github.com/nostr-protocol/nips/pull/997). https://example.com/ 17592 216356 216356.216426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.78380007415533 0 \N \N f 0 \N 0 174701039 0 f f \N \N \N \N 216356 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 206278 2024-07-27 10:34:06.949 2025-03-29 22:39:47.913 The Case for Hanging Out (2023) > I can’t be the only one for whom memories of ages 16 to, say, 25 consist mostly of sitting around bedrooms, crappy dorm rooms, and crappier apartments, doing nothing much at all. I had jobs that didn’t pay a lot, so I didn’t have a ton of money to go out to bars or clubs, which is why instead I hung out for hours with groups of friends: telling jokes, venting about life, talking earnestly about politics and sarcastically about art (or vice versa).\n> \n> Those years, as Liming writes, were “almost effortlessly social.” But nowadays, though hanging out with friends still happens—around living rooms and fire pits, on scheduled and rescheduled college-friend weekends—it’s an effortful pastime that requires coordination of calendars and a flurry of planning texts. I remember once, when I was in college, wandering over to my friend Ehren’s apartment, letting myself in, and watching whatever he had going on the TV. I knew he was there; I could hear him peeing in the bathroom. When he came out, he exhibited zero surprise to find me on the couch. It’s impossible to imagine doing such a thing now, even with my closest friends. https://slate.com/culture/2023/02/hanging-out-sheila-liming-book-friendship-crisis.html 18557 \N 206278 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7095773419604 0 \N \N f 0 \N 0 110094253 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 221420 2024-08-26 21:16:53.222 2025-03-29 22:39:47.914 ‎Damus nostr client accepted to the App Store (finally) \N https://apps.apple.com/ca/app/damus/id1628663131 8045 \N 221420 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.6371705293797 0 \N \N f 0 \N 0 217110115 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 206958 2024-07-28 14:40:39.506 2025-03-29 22:39:51.701 \N I have no idea how VC funding works, but I’d imagine it’s a different skillset than building code.\n\nAt the end of the day, a VC is going to want to see a business model though. Question is it better for him to build out the business model now without funding and hope it takes off fast enough to pay bills before his runway ends? Really sucks that Apple rugged his zap splits model, iiuc that was working great.\n\nNow he has to launch an Android app and hope that hits cashflow velocity before the year ends 🤷 \n https://example.com/ 18930 206938 206926.206938.206958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.78824870801598 0 \N \N f 0 \N 0 52685542 0 f f \N \N \N \N 206926 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3908 2022-11-12 14:39:42.14 2025-03-29 22:39:47.913 Launching Sovereign Chat 0.1 - FOSS AI that answers all questions about Privacy \N https://sovereignoutcomes.com/launching-sovereign-chat-01 20781 \N 3908 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.39809034325879 0 \N \N f 0 \N 0 187965432 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 222114 2024-08-28 00:00:30.305 2025-03-29 22:39:51.702 \N The guy with the hedge fund involved in a truckload of altcoins and has been trying to push the operation chokepoint 2.0 narrative down Bitcoiners throats like that's our problem too wants to provide commentary on Bitcoin maxi's because they advocate for the destruction of the very things he props his hedge fund up on?\n\nI personally will pass, but thanks for the feedback Nic. https://example.com/ 16954 222104 222104.222114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.955465707598 0 \N \N f 0 \N 0 150594288 0 f f \N \N \N \N 222104 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2501 2022-10-14 01:47:14.884 2025-03-29 22:39:47.913 Americans need just 1.5 million dollars to retire Surely there's a lot more! According to an analysis by 'Northwestern Mutual', Americans currently need 1.46 million dollars to retire in peace. Gone are the days before the clown flu when this figure was well under a million dollars, so you didn't have to be a millionaire to enjoy a well-earned retirement. Thanks be to the bigwigs at the Federal Reserve and the debt holders in Washington! We have them to thank for the fact that we are able to perform defiantly and with motivation right into old age and contribute to the well-being of society and prosperity. Anyone who does not manage to achieve a decent level of prosperity under these conditions is simply lazy, stupid or a saboteur in the common good socialist cause. \n![20240403_185059.jpg](https://m.stacker.news/25159)\n \N 3642 \N 2501 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.8750585305436 0 \N \N f 0 \N 0 153406169 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 245982 2024-09-24 11:13:55.112 2025-03-29 22:39:51.702 \N it is fun in low doses, had fantastic times on shrooms or LSD with friends. You can appreciate the world and small things like a little kid, gives you a different perspective on life. But i also had hard experiences, negative thoughts, fear etc. - in the end i learned more from those experiences than from the fun ones.\n\nThe government is afraid of it because you will realize that they are full of shit and our system of authority and obeying is absolutely ridiculous.\n\n https://example.com/ 2724 245900 245900.245982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3106098082769 0 \N \N f 0 \N 0 44836537 0 f f \N \N \N \N 245900 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 4002 2022-11-12 22:31:21.8 2025-03-29 22:39:47.913 Who is your favorite Science Fiction Author? There are a lot of really good Sci-fi authors out there. Some wrote single books, some wrote series. Who did you like best? If it is “OTHER” type the name into the comments. \N 18313 \N 4002 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.58394904682964 0 \N \N f 0 \N 0 118608703 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1474 2022-09-15 14:33:38.43 2025-03-29 22:39:51.702 \N Solid from everything I've looked over. Their issue previously was logging IP addresses and complying with legal requests. This changed a bit with Swiss legal victories, and the VPN obviously which can be paid in BTC, so there's nothing to log but the address you used to pay, which they don't have a legal requirement to save, but is obviously permanent given blockchain properties. Rumors of LN integration are floating around, which would be quite powerful with the static route where your @proton.me address is also your Ln address. I wrote about them recently:\nhttps://stacker.news/items/228463 https://example.com/ 14657 1396 1392.1395.1396.1474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9320883074708 0 \N \N f 0 \N 0 183632458 0 f f \N \N \N \N 1392 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 129611 2024-02-20 14:30:41.962 2025-03-29 22:39:47.913 Can a Non-Segwit Miner mine segwit transactions? Segwit is ancient history at this point, but if you were ever curious how a non-segwit node or miner behave in a segwit world, check out my completely rewritten answer. :) https://bitcoin.stackexchange.com/a/60369/5406 763 \N 129611 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.8279304153977 0 \N \N f 0 \N 0 68447554 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 346305 2024-12-28 06:11:20.956 2025-03-29 22:39:47.913 The Lighthouse Ethereum and Solana suck, and they're a great example for why all of web3 is going to die eventually. Technically speaking, their promises of a fast response time are not possible at scale. The bottleneck: Networking + Repetitive Compute across the world for CONSENSUS, every < 20 seconds. (Whereas bitcoin promises to do this in a reasonable 10 minutes per block. And I wouldn't call the lightning network a centralized layer 2 solution. Bitcoin is the real deal, as you can obviously see on SN, since you're here...)\n\nImagine Amazon trying to implement Ethereum or Solana web3. Every time a user buys something, all the miners in the world have to move funds from the user's wallet, to Amazon's wallet, then also store the transaction in a private database somewhere, then interact with robots to deliver your groceries. The blockchain is not private, every miner has a copy. So Amazon would have to store that Amazon-private data encrypted with a key, on the blockchain, where everyone can see it. That key would have to be saved somewhere private for them still.. They'd have to do the same with all their saved user wallet addresses and their home addresses... It makes no sense, which is why Amazon doesn't do it.\n\nRegardless of how you would TRY to do this as Amazon, think instead of 1 server in the backend handling your request, and 1 server (database) saving the transaction, and 1 server telling the robots to put your groceries in a UPS box (or maybe 100 servers doing that, IDK), instead, with web3, you have thousands of computers all around the world doing all those tasks, just to say they agree you clicked a button and you want your groceries delivered ASAP... It's ridiculous, with no real-world application, besides generating garbage (NFTs and tokens) upon garbage (Proof-of-Stake, Proof-of-History, Proof-of-not-work). Bitcoin's proof-of-work is basically "proof of time consumed to generate secure value". How do you fake time? You don't.\n\nAnd if you didn't know, basically every NFT is simply a user's wallet associated on the blockchain with what's called a "string" in programmer terms. The NFT string is a URL pointing to a picture, hosted on a Web2 server. The NFT picture itself is not saved on the blockchain, because that would cost like $1000+ to store on every miner's computer in the whole world. To view your NFT, you have to use a centralized Web2 frontend which calls the web3 backend for only the URL which gets referenced by the web2 frontend in your browser to display it. When you buy an NFT, you are simply paying all the miner's in the world to save your wallet address connected to this URL. It's not the whole picture, just a little URL string that points your browser where to download the picture from.\n\nDon't trust me?:\n\nMany years ago, I made my own web3 website on ethereum, because I was a believer. I spent money on a web2 server to serve up the frontend, so that I could prove the concept of replacing modern day Web2 backend of PHP with Ethereum's Solidity programming language. I thought it was the coolest thing ever. I paid a guy in Indonesia to make a pretty Web2 frontend for the Web3 backend (yes, all Web3 is a Web2 Frontend (like amazon) + Web3 backend (like Uniswap)). The site went live and the price to click a button to save a string was $1 back then, so nobody used the site. Now, it's $30+. So, I paid the frontend developer to add Optimism layer 2. It was still like $1 ON LAYER 2, to save a simple little tiny single character string to the blockchain, or the emulated version of it. (whatever layer 2 is...)\n\nIf I wanted, I could pay for a Ethereum Solidity smart contract developer $200/hour to come in and optimize my code and write the code to store the strings in some limited string variable type, but I gave up. I came to the conclusion that Web3 is simply hype. Hype, I've come to understand, is people's excited feelings about something, with no logic. The buzz of using something w/ a lack of comprehension of what it is that they're using. People are never going to understand how stupid modern Web3 is, because it's like an infinite casino with infinite rooms full of infinite levers to pull and money might shoot out. These levers cost $30 a pull, unless you use a cetralized layer 2 solution. It's ridiculous.\n\nAnd it's unfathomable how broken this shit is.\n\nSolana is a prime example of how broken it is. Their system requirements for miners, last time I looked, was something like 128 GB of RAM and a 32 core processor. That's a really powerful computer, yet their blockchain FAILS and has to be "rebooted" every so often, because miners can't keep up with each other. Solana has their response times down to milliseconds, but I don't know how that's even possible, since every mining computer in the world has to verify every little transaction, across the entire world. So whenever you're on a Solana exchange and converting your token from shit-token-1 to shit-token-2, the whole world lights up and somehow confirms in milliseconds..\n\nLong story short, it fails sometimes, and people lose money, but people don't talk about that much, because they're all busy pulling levers and seeing if the money comes out, and it's really frustrating to watch. If you don't believe me, check the Solana uptime history health stats on the Solana Web2 site: https://status.solana.com/uptime?page=3 They have the most powerful computers in the world, computing proof-of-history, the easiest thing to compute, and they still break, once every 3 months or so... Do you think a business that completely shuts down that often deserves a multi billion dollar valuation?...\n\nAnd ethereum is so broken... New miners that join that network aren't even able to download the whole blockchain because it's being created so fast. So instead, what miners are slowly but surely ALL doing, is downloading just the headers of blocks, and confirming the headers, not the actual data produced, just what some other miner sent to them and told them is the headers.. Ethereum's proof-of-stake miners basically just validate that they're trying to validate.. But again, the infinity shitchain is growing so fast that they can't download the shit over the network fast enough.\n\nAnyway, I've been holding this back for years, had to get it off my chest. I think a lot of people are waiting to learn what is hype and what is not, and I've spent years waiting to read someone talking about it like this, but I just don't see it. SN is a great place for me to share, and I intend to do more of it..\n\nBitcoin is not hype. It makes the most sense. And lightning is the real web3. Everyone just needs patience. Wait for the next biggest app, like crypto kitties, to kill the ehtereum blockchain again, and if it happens enough times, people will start to get the idea. Oh, you didn't know Crypto Kitties put miners 4 hours behind? Well it did happen, and I haven't seen a popular fun game app since...\n \N 20965 \N 346305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9110490813249 0 \N \N f 0 \N 0 235651869 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1482 2022-09-15 15:58:43.913 2025-03-29 22:39:51.702 \N Over the next three months: [from CNBC](https://www.cnbc.com/2023/10/30/treasury-to-borrow-776-billion-in-the-final-three-months-of-the-year.html)\n\nThe level of spin in this article is astounding. Imagine how much better off the American public is that the Treasury is borrowing *only* $776B instead of JPM's projected $800B! \n\nThat's so positive!\n\nMakes me sick. https://example.com/ 1195 1481 1481.1482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6831401909732 0 \N \N f 0 \N 0 235257792 0 f f \N \N \N \N 1481 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 57734 2023-08-30 14:45:16.363 2025-03-29 22:39:47.914 It’s time for a big reveal — say hello to Foundation's new home | foundation.xyz It’s time for a big Reveal — say hello to our new home, https://foundation.xyz 🏠\n\nOur website and domain have served us well, but we’ve long since outgrown the “Devices” moniker. To pave the way for a new wave of freedom tech from our team, we’re launching a new site today.\n\nWhile we may have started as a purely hardware-focused company, we’ve grown and evolved into a freedom tech company that encompasses hardware, software and Bitcoin self-custody tools. We can’t wait to show you what we’ve planned in a HUGE 2024 that will even better reflect this!\n\nWith all of this, it’s time to shift from our old https://foundationdevices.com domain to a new, improved, and more accessible https://foundation.xyz.\n\nOur website now properly reflects our design-first approach and our simple, intuitive user experiences that grow with you.\n\nA huge part of the new experience is letting you have your voice be heard, as we now feature real user feedback on every product page.\n\nEver wondered what other Envoy or Passport users think of the experience? Wonder no longer 📺\n\nhttps://foundation.xyz/passport/\n\nAnother core part of our effort has always been going above and beyond when it comes to customer support, but we never had a proper support page.\n\nAll that has changed, with an entire page dedicated to contacting our support, reading FAQs, and much more.\n\nhttps://foundation.xyz/support/\n\nSpeaking of customer support — now our Concierge white-glove service has a new home, giving you everything you need to know about it.\n\nGoing from zero to self-custody has never been easier than with Passport + Concierge.\n\nhttps://foundation.xyz/concierge/\n\nWe also have a deep passion for user education here at Foundation and wanted to better reflect that in our blog.\n\nWe’ve drastically improved our blog, with better readability, better formatting, and easier navigation.\n\nTake a peek 👇\n\nhttps://foundation.xyz/blog/\n\nWant to deep-dive into the specifics of our devices security model? Or simply learn more about the deep ethos of personal privacy that goes into how we design all of our products?\n\nNow you can do that at a glance on our new Security page.\n\nhttps://foundation.xyz/security/\n\nWe can’t wait to hear your feedback on our new site!\n\nWe have a HUGE week of giveaways, games, and celebrations planned for this week, so be sure to follow us on [X](https://twitter.com/FOUNDATIONdvcs) or [Nostr](https://primal.net/p/npub1s0vtkgej33n7ec4d7ycxmwt78up8hpfa30d0yfksrshq7t82mchqynpq6j) to be sure you don’t miss out 👀 https://foundation.xyz 1717 \N 57734 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.195707855822 0 \N \N f 0 \N 0 169607789 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 146123 2024-03-20 11:50:22.38 2025-03-29 22:39:47.914 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/377923) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 20353 \N 146123 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.95318153950655 0 \N \N f 0 \N 0 209297275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 21066 2023-05-08 18:16:04.391 2025-03-29 22:39:47.914 US Sues Apple For Illegal Monopoly Over Smartphones # [US Sues Apple For Illegal Monopoly Over Smartphones](https://www.theverge.com/2024/3/21/24105363/apple-doj-monopoly-lawsuit)\n\n## The Department of Justice claims Apple has maintained an illegal monopoly over the smartphone market by locking in customers and making experiences worse for rival products.\nhttps://duet-cdn.vox-cdn.com/thumbor/0x0:2040x1360/640x427/filters:focal(1020x680:1021x681):format(webp)/cdn.vox-cdn.com/uploads/chorus_asset/file/25345077/STK468_APPLE_ANTITRUST_CVIRGINIA_F.jpg\n\n> The US Department of Justice accused Apple of operating an illegal monopoly in the smartphone market in an expansive new antitrust lawsuit that seeks to upend many of the ways Apple locks down its phone.\n> \n> The DOJ, along with 16 state and district attorneys general, accuses Apple of driving up prices for consumers and developers at the expense of making users more reliant on its phones. The parties allege that Apple “selectively” imposes contractual restrictions on developers and withholds critical ways of accessing the phone as a way to prevent competition from arising, according to a release.\n>\n> ### [... read more](https://www.theverge.com/2024/3/21/24105363/apple-doj-monopoly-lawsuit) https://www.theverge.com/2024/3/21/24105363/apple-doj-monopoly-lawsuit 4043 \N 21066 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.0526969454603 0 \N \N f 0 \N 0 137514094 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3865 2022-11-11 03:06:25.89 2025-03-29 22:39:51.702 \N You mentioned on Lightning Junkies that you've found hiring outside of Bitcoin effective. What channels do you use to hire game devs?\n\n*Also*: if you're looking for somewhere to spend your AMA sats and are hiring, we have a job board: ~jobs. https://example.com/ 1465 3864 3864.3865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.51706073010913 0 \N \N f 0 \N 0 124629734 0 f f \N \N \N \N 3864 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 204104 2024-07-22 17:27:55.932 2025-03-29 22:39:47.915 PWAs are the way to freedom and accessible web Still reading online of people complaining about appl and gogle app distribution monopolies.\n\nI feel things are changing and however it will go, I feel there's less and less space and reward to build apps for mobiles stores. I'm still seeing the appstores as a mere marketing tools, but apart that, do they serve any other function on top of all limitations, terms and policies we need to agree to have our app there?\n\nJust want to remember us all that we are in power to decide and vote with our own actions. Build and use PWA on your devices, whenever the option is available. Don't let the few gatekeepers in this sector take your data. \n\nNo notifications? Who cares! Do we really need them to bother and distract us from whatever we are concentrated doing?\n\nMobile apps are part of the past... Build and use the open web, not for the stores! \N 2402 \N 204104 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.0737721591942 0 \N \N f 0 \N 0 6919030 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 4004 2022-11-12 23:10:02.952 2025-03-29 22:39:51.703 \N WoS is a custodial wallet, so you are correct to wonder if your funds there are safe. The answer is, ... no, your funds are not safe on a custodial wallet. Because YOU HAVE NO FUNDS on a custodial wallet. You have only an IOU from the operator of said custodial wallet.\n\nThat being said, WoS has been in operation from 2018, and the creators of WoS have been a bitcoin service beginning several years before that. So your risk of getting rugged because of unscrupulous operators is not high, in my opinion. And hopefully they know how to secure customer funds properly (hot wallet only for what is need for daily operation, and cold wallet with multisug, etc.)\n\nBut would I store any funds of significance on WoS? Absolutely not! I do use WoS but have never had a balance on it about maybe 50,000 sats (~$20 at the time). I would have no worry using WoS maybe for a RoboSats trade for an amount of a couple hundred dollars, ... just that such an opportunity has not yet arisen. (WoS is one of the few wallets that handle an LN "hold transaction", which is a requirement for using RoboSats). But I wouldn't leave those funds on WoS after the trade very long after the has completed. I would do the same whether this was WoS or any custodial exchange or wallet.\n\nOne potential risk is how WoS is based out of Australia. It would not shock me that one day I will wake up and see an e-mail from them stating that my account on WoS is locked until I KYC myself. I doubt WoS would want to engage in "shotgun KYC" like that, but when you have an anti-bitcoin, tyrannical government like Australia is now, be prepared for something like that to happen. https://example.com/ 650 3999 3996.3999.4004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.57614012647355 0 \N \N f 0 \N 0 247989264 0 f f \N \N \N \N 3996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457509 2025-03-28 14:47:39.114 2025-03-29 22:39:47.915 Why Does El Salvador Hold $86M of Gold? I just learned that El Salvador holds [1.37 tons](https://tradingeconomics.com/el-salvador/gold-reserves) of gold, valued at roughly $86 million today. \n\nTheir gold balance has remained constant for at least the last 3 years when they began buying Bitcoin.\n\nGiven that they’re making a big bet on Bitcoin (their Bitcoin holdings are now worth $400 million), I suspect they also believe that Bitcoin will eat gold’s market share as a store of value.\n\nIf that is true, why continue to hold gold? \N 11942 \N 457509 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 11.9505733201349 0 \N \N f 711630810 \N 4 168885554 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 155554 2024-04-09 21:44:24.312 2025-03-29 22:39:47.915 Buying Products with Lightning - A Weekend Discussion Merchants [all over the world](https://btcmap.org/) now accept Bitcoin payments over the Lightning Network, a trend which has accelerated in a meaningful way over the last few years.\n\nDespite the recent surge in adoption, there are likely hundreds, maybe thousands, of merchants who don't accept Lightning payments for every one that does.\n\nWe thought it would make for a good discussion to reflect on the current state of Lightning Network merchant adoption.\n\nA few questions to consider:\n\n- What was the last thing you bought over the Lightning Network?\n- How was your purchase experience?\n- Was it a faster or slower process than it would have been without Bitcoin?\n- If you haven't bought anything over the Lightning Network before, what is holding you back?\n- What improvements would you like to see Lightning merchants introduce to their purchase flow?\n- What steps should the Bitcoin community take to help all merchants accept Lightning payments? \N 681 \N 155554 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.898890479436 0 \N \N f 0 \N 0 207380457 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 186758 2024-06-19 09:53:45.922 2025-03-29 22:39:47.913 What is the most reasonable country on cost of living to quality of life to live I travel very little and I don't know much about cost of living nor the quality of life from those places very well, but I see very few places in the world that has give you a good bang for your buck, so I am putting this out there because this may also help other plebs better make their decisions on places to live. \n \n For me, I am looking for a descent country/city with good quality of life, good security, happy people with low time preference, good food, but on a reasonable price. \n\n The problem with most countries is that they are too endebted therefore too much debt hold by the gov and the people which make it extremely difficult for people to live a good life, they must be in a constent rat wheel that never stop until death.\n \n \n\n \N 1007 \N 186758 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.8785271127412 0 \N \N f 0 \N 0 18749480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 165807 2024-05-05 06:43:14.204 2025-03-29 22:39:47.913 What’s your hidden talent? I wouldn’t say I am a dancer, though I did dance with my crew during my wedding reception.\n\nNow that I piqued your curiosity, let me explain. While living in Japan, I decided to join a yosakoi dance group because I was fascinated by the sharpness and sleekness of the moves. That’s how I needed to *work* for my wife’s and guests’ delight during my wedding.\n\nI won’t consider myself a dancer because I never really bother to memorise the moves. I think people who are more kinaesthetically inclined will leverage muscle memory to master dance steps, but I am not endowed with this talent. So, if you observe me carefully, you’ll notice that I’m not in sync with the other dancers. I tend to copy my dance mates’ moves, which results in me being slower by a beat.\n\nBut I guess people don’t really notice since I get bombarded with dance requests quite a bit. So, tomorrow, I’m going to dance to the tune of Peaches by [Justine Bieber](https://www.youtube.com/watch?v=jlNcRUdeERY) with some of my colleagues. Youth Day is celebrated in my country, so the teachers decide to put on a performance tomorrow. I hope everything goes well! \n\nWhat’s your hidden talent? \N 9551 \N 165807 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.76016302642559 0 \N \N f 0 \N 0 4810816 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 186789 2024-06-19 10:53:53.393 2025-03-29 22:39:47.915 No Privacy? No Freedom. No Freedom? No Wealth. -- sats forward to ODELL \N https://www.discreetlog.com/no-privacy-no-freedom/ 20205 \N 186789 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.3199048700297 0 \N \N f 0 \N 0 103152095 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 198091 2024-07-11 00:34:43.712 2025-03-29 22:39:47.915 SN Saturday Newsletter 1/20/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Semaphore](https://semaphore.finance/) is a crowdfunding app without intermediaries that uses bitcoin smart contracts to make crowdfund pledges revokable.\n - [Semaphore: peer to peer crowdfunding with bitcoin](https://stacker.news/items/388884)\n - 6.2k sats \\ 33 comments \\ [@supertestnet](https://stacker.news/supertestnet)\n2. [Stripe](https://stripe.com/) refuses to serve bitcoin hardware retailers, [@bitsaga_org](https://stacker.news/bitsaga_org) learns.\n - [Payment solution Stripe deplatforming accounts that sell bitcoin hardware](https://stacker.news/items/390003)\n - 5.5k sats \\ 44 comments \\ [@bitsaga_org](https://stacker.news/bitsaga_org)\n3. Zapping is strictly a bitcoin thing. Is there a *best* way to explain zapping to everyone else?\n - [How do you explain zapping to non-bitcoiners?](https://stacker.news/items/392164)\n - 3.4k sats \\ 59 comments \\ [@Scoresby](https://stacker.news/Scoresby)\n4. [ANYPREVOUT](https://anyprevout.xyz/) is a proposed bitcoin soft fork that enables [Eltoo](https://bitcoinops.org/en/topics/eltoo/) lightning channels among other things. [@nerd2ninja](https://stacker.news/nerd2ninja) takes the soft fork temperature.\n - [So...How are We Activating Eltoo (LNSymmetry)?](https://stacker.news/items/391593)\n - 5.5k sats \\ 12 comments \\ [@nerd2ninja](https://stacker.news/nerd2ninja)\n5. [Damus](https://damus.io/) considers joining a [federated ecash mint](https://fedimint.org/) to provide private, custodial bitcoin to its users.\n - [Damus going Fedi?](https://stacker.news/items/392123)\n - 14.1k sats \\ 26 comments \\ [@go](https://stacker.news/go)\n\n##### Don't miss\n- [My recent BTC story: what happened with me yesterday (real story)](https://stacker.news/items/387859)\n- [Good YouTube channels for devs](https://stacker.news/items/393668)\n- [Fiat Games on Bitcoin](https://stacker.news/items/394165)\n- [how is fediment ecash different than tokens?](https://stacker.news/items/393004)\n- [Kill the Messenger, the Psyops, & Bitcoin](https://stacker.news/items/389258)\n- [Migrated my WoS balance to Mutiny](https://stacker.news/items/392065)\n- [Awesome Cashu: A curated, collaborative list of awesome Cashu resources](https://stacker.news/items/393367)\n- ["Lightning Network 📊 How often do you use Lightning for transactions?](https://stacker.news/items/387452)\n- [Favorite Pure Entertainment Books?](https://stacker.news/items/393638)\n- [Inverse Bitcoin Maximilist](https://stacker.news/items/393551)\n- [Weekend Listening - what podcasts would you recommend?](https://stacker.news/items/394509)\n- [I hacked an Ethereum wallet and took all the money!](https://stacker.news/items/391800)\n- ["Journey-to-Brightness" Part 1: Making Progress on Harari's "Sapiens".](https://stacker.news/items/390310)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [The Art of Using Stacker News II ⚡️](https://stacker.news/items/392551)\n- [Random Thoughts On Territories](https://stacker.news/items/389003)\n- [SN release: semantic search](https://stacker.news/items/389573)\n- [Stacker News Features - Custom Zaps & Turbo Zapping](https://stacker.news/items/391488)\n- [What’s your SN routine like?](https://stacker.news/items/393176)\n- [Zap to Zero Day 22 | Bikeshedding](https://stacker.news/items/394081)\n- [SN Foundry- Nostr Territory Marketing Test](https://stacker.news/items/391846)\n\n-------\n\n##### Top Monday meme \\ 25.4k sats \\ [@BitByBit21](https://stacker.news/BitByBit21)\n![](https://imgprxy.stacker.news/0tU6wFqB7LmabJp7zJHoTbOlw2AKBstouw21RRuuIRE/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8xMjMwNg)\n\n[**all monday memes**](https://stacker.news/items/388718)\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 4250 \N 198091 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.32936641957316 0 \N \N f 0 \N 0 100196621 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 146323 2024-03-20 16:44:16.406 2025-03-29 22:39:47.916 UTXO set & consolidation Assuming proper UTXO labeling and understanding consolidation pros and cons:\n\n* Is there a UTXO count that you stay below for later fees, not overwhelming signing devices, and ensuring labels are cleanly labeled? 500? 100? 50? 25? 10? etc...\n* Do you just let it grow with no management or grow in UTXO with only labeling? Any long term plans to manage?\n* How are you factoring future spending (if ever) as the value continues to increase if managing your UTXO set given change output could reveal too much? IE: Too tight of consolidation makes for chunky UTXOs that could be problematic using for expenditures far less than the UTXO.\n* Do you have a preferred mix? 50% chunkier UTXOs and remaining 50% in several smaller? \n* What's considered a large UTXO set for when dealing with signing devices? 50? 100? 500? more? May help some context.\n\nI've been around for a handful of years now and in it long term, but UTXO management seems like it wouldn't be a bad idea to stay somewhat organized for the future (many more years) without it getting too unkempt.\n\nAny thoughts would be appreciated.\n\nMy first post hopefully doing it right. \N 1474 \N 146323 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.1930631188798 0 \N \N f 0 \N 0 220587312 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 146417 2024-03-20 22:19:38.209 2025-03-29 22:39:47.916 Why Don’t More Space Companies Hold Bitcoin? It’s kind of strange that there are all these space companies trying to explore beyond earth’s orbit, and yet none of them (except SpaceX) have even a single Bitcoin on their balance sheet.\n\nIf they get to the moon, Mars, or some other planet, do they really think pieces of paper signed by the government on earth will be worth something? \N 20306 \N 146417 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1391850411609 0 \N \N f 0 \N 0 246301165 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 149999 2024-03-27 14:48:09.387 2025-03-29 22:39:47.916 Having multiple bank accounts - a good idea to avoid problems? I used to be very minimalist in terms of having one bank account, one investment account. Multiple accounts lead to confusion, lack of easy oversight, etc. It's like decluttering your finances. \n\nBut now with bank accounts being closed if they're even suspected of being used for bitcoin purchases - it is a good idea to have a bunch of bank accounts? Even spreading them across different states? \n\nI'm not talking about keeping large amounts in these accounts, just using them as a source to buy bitcoin.\n\nAre there any negatives to this strategy? To me it seems like the main negative is the complexity. Also usually you need to keep a certain amount in them, to avoid fees. \n\n\n \N 19759 \N 149999 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.6359556826488 0 \N \N f 0 \N 0 62161903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 146925 2024-03-21 21:30:05.202 2025-03-29 22:39:47.917 Zaprite AMA Hi all, this is John and the Zaprite team. Feel free to ask us anything. Zaprite is a non-custodial payments platform offering merchant tools for getting paid in bitcoin. You can learn more at zaprite.com \N 776 \N 146925 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.49389981115841 0 \N \N f 0 \N 0 74865463 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 187609 2024-06-21 08:47:05.745 2025-03-29 22:39:47.913 Understanding Stacker News Fees v 2.0 I recently made a post about understanding the fee structure and flow of sats on Stacker News for completing various actions. Most of what I posted was accurate but I got some very important things wrong. After some excellent feedback from k00b and other trusted stackers, here is my updated understanding of the stacker news fee structure along with some nice visuals. \n\nI hope this help you to better understand where the sats come from and where they go each and every time you post, comment, zap, and boost. \n\nI have screenshots below but I also made [this interactive Stacker News SatFlow diagram](https://public.flourish.studio/visualisation/19871667/) so you can look at individual flows yourself by hovering and clicking on the chart. \n\n# Pay To Post \nIn order to keep spam and low-quality posts to a minimum, Stacker News has implemented a cost to post. These Pay-To-Post fees in each territory are set by the founder. \n\nPay To Post fees are split 70/30 between the territory founder and the rewards pool. \n\n![](https://m.stacker.news/58364)\n\n# Pay To Comment\nPay to Comment works just the same way as pay to post. You have to pay a small fee to prevent spam and low-quality commenting. This is also split 70/30 between the territory founders and the rewards pool. \n\n![](https://m.stacker.news/58366)\n\nIt seems that most territories cost 1 sat to comment if you are logged in and 100x that when you comment anonymously. \n\n# Boost\nBoosting is a way for anyone to boost their post or comment towards the top of a teritory for a limited time. Whichever posts and comments pay the most will be boosted to the top of the territory. The highest boost across the entire site is also boosted on the home page.\n\nIn this example, Alice, Bob, and Carol all boost in some territories. \n\n- Alice's post would boost to the top in ~Bitcoin \n- Bob's post would boost to the top in ~memes\n- Carol's post would boost to the top in ~Bitcoin_Beginners AND on the home page. \n\n![](https://m.stacker.news/58368)\n\nEven if a post is not boosted to the top of a territory, it still increases its ranking in the territory. In the example above, Alice's post would still boost in ~memes but Bob's post is boosted to the top. \n\nBoost fees are split 70/30 between territory founders and the rewards pool. \n\n![](https://m.stacker.news/58367)\n\n# Zaps\nWhen someone zaps a post or comment, the OP receives 70% of those sats, 21% go to the territory founder, and 9% go to the rewards pool. The more high-value posts and comments you make, the more sats you are likely to stack. \n\n![](https://m.stacker.news/58369)\n\n# Rewards Pool\nThe rewards pool is paid out daily at midnight in Austin, Texas 🤠 🇺🇸\n\n80% of the rewards pool is distributed amongst top stackers for the day, 10% go to daily referral rewards, and 10% go to lifetime referral rewards. \n\n![](https://m.stacker.news/58370)\n\nI hope this helps everyone to better understand the fees on stacker news and where the sats flow each and every time we do something on here. \n\nIf any of this is incomplete or inaccurate, please let me know in the comments so I can make the necessary changes. \N 9496 \N 187609 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6600353203141 0 \N \N f 0 \N 0 71218334 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 192236 2024-06-30 19:53:20.821 2025-03-29 22:39:47.914 Prose piece | The storm I was another lost soul wandering, seeking a connection - any connection - when I stumbled upon her. She had a smile that exuded warmth, a gentle laugh and eyes like an open road stretching out under a still endless sky. She was magnetic and drew me in. \n\nI guess i should know better. I let the night blur into the early morning exchanging secrets under incandescent light, all the while headed blind into the tempest brewing behind the scenes.\n\nWe ended up in a loud Cuban bar down near the mainline station; loud, peeling paint, scent of crushed mint and rum. It was hot inside, crowded, bodies jostled, shouting to be heard, laughter. I hadn’t felt this alive for a while, but I should have felt the rain in the air. \n\nI was leaning in, whispering nothing in her ear, but the moment hung heavy, words tossed between two people who misunderstand each other. And then… there he was. The frame of a man who belonged in the pages of a comic book; muscle and furious anger filling the doorway.\n\nI half turned, caught his eye, and the reality slammed hard into me like a freight train; the truth revealed. His eyes told a tale dappled with fury and betrayal, the ‘boyfriend’. \nHe didn’t say a word; no preamble, no chance to plead my case. Just a rush, his fists the thunder and my face, the lightning rod. The first hit knocked the breath from my lungs, and there I was, spiralling down.\n\nIt hurt like hell. It was an explosion of devastating punches - his knuckles crashing into my face in a sick rhythm. 'How ... could ... you!' he growled in her direction, each word punctuated by another brutal shot.\n\nI gasped for a breath, caught in the path of his vengeance, and my thoughts scattered like leaves. I wanted to explain how it was a mistake, how I didn’t know, how I’d gotten lost in the moment. But words abandoned me, buried under the weight of fists and pain. \n\nAnd then, he stepped back. Panting, rage still simmering in his eyes, he looked down at me and cast one last glare. 'Fuck..' he growled. In that moment, as I lay there battered and bewildered, a stark realisation settled in. I was staring at myself. This primal force is everywhere. It’s in love, in jealousy and in the frustrations we can’t articulate. \nI raised my gaze, every ounce of dignity rallied in defiance, a crooked half-smile showing bleeding gums. 'Think about it' I half called as he turned to leave 'How well I share your taste....' \n\nHe paused, and for a heartbeat I wondered if he might show a flicker of recognition, betray our connection, but he grabbed her wrist and disappeared into the night, leaving me broken and bloody.\n\nI dusted myself off and made my way to my feet. The world has unspoken rules, veiled in shadow where the light doesn’t penetrate. and that makes life a wild, unending cycle of blows and healing, of loss and discovery - searching for that elusive connection. Sometimes we lose our way but we keep navigating the maze. Because that’s the only way to live; throwing yourself into the path of the storm... \N 2681 \N 192236 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.8152048289906 0 \N \N f 0 \N 0 88926591 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 191569 2024-06-29 19:55:10.437 2025-03-29 22:39:51.703 \N @Fabs is going to get a girlfriend. https://example.com/ 18525 191551 191551.191569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2744833334436 0 \N \N f 0 \N 0 179987976 0 f f \N \N \N \N 191551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1201 2022-09-06 21:29:48.407 2025-03-29 22:39:51.703 \N Ha, I knew I'd think of something else.\n\nIgnoring privacy is a very high time preference. If you really believe bitcoin will win you should be minding your bitcoin privacy. I'm not saying everyone needs to be 100% anonymous but we in the western world are very loose with our opsec. This is very high time preference behavior. https://example.com/ 21427 1197 1197.1201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.00882042446381 0 \N \N f 0 \N 0 169685110 0 f f \N \N \N \N 1197 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 204825 2024-07-24 07:47:37.633 2025-03-29 22:39:47.914 Finding peace with never being a whole coiner Ah the unit bias, something so tempting about it, just to have one whole of something.\n\nBut it's a dangerous thought pattern. In my case, ironically, feeling like i needed 'whole coins' is exactly why I don't have a whole coin now, and really, never will. At 2k I thought I had missed the boat, purchased whole shit coins, and the rest is history. \n\nNow in my case, I have had to make peace with my position, it's ok, I stack what I can every month and think about it as my savings, and regardless of anything else, it's still the best unit of value to save and preserve wealth. Every time my mind starts up the old 'if only you did this, then x' I have to just refocus on the present.\n\nBeing in bitcoin is a bit like working out in that, once you start lifting weights, you feel like you're never big enough, you're always looking at bigger dudes and comparing yourself. Feeling forever small is just part of the game, much like feeling the btc stack is never enough. \n\nNow we have crossed 100k in assmilking fiat terms, the amount of people that will ever get a whole coin is also reduced, after all, even if you were a millionaire, you'd have to have a liquid 100k to drop AND you'd have to have a deep understanding of what btc is, otherwise, there's no way you would feel close to comfortable parting with that money.\n\nSo yeah, let's keep stacking and do our bests to stop living in the shadow of stacks that could have been \N 21058 \N 204825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2622979939533 0 \N \N f 0 \N 0 34612572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 194715 2024-07-04 22:30:14.054 2025-03-29 22:39:47.914 If you track your expenses and care about privacy, use lofextra.com! I've built an expense tracker that is heavily privacy oriented. All your data is stored on your device, it works offline and you can also use it on multiple devices with real time sync (e2e encrypted).\n\nRecently, I've implemented bunch of new features like detailed statistics and your custom defined categories. You can also export all your data in form of sqlite database whenever you want.\n\nHave a look, you might find it useful. If you're missing a feature, let me know, I'll be happy to implement it!\n\nhttps://lofextra.com \N 21833 \N 194715 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 1.15902731420444 0 \N \N f 0 \N 0 123696836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 195053 2024-07-05 17:05:21.055 2025-03-29 22:39:47.914 I just got a beer with a WorldCoin employee. AMA Without doxxing him, he gets paid to interface with governments shilling WorldCoin's idea for global ID. \n\nDisclaimer: he was a really nice guy, but I've got some banger quotes for the plebs if the zaps come raining in. \N 5520 \N 195053 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.1648401795997 0 \N \N f 0 \N 0 68888094 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 219442 2024-08-23 12:28:27.547 2025-03-29 22:39:47.914 Tornado Cash indictment shows desperation | Freedom.Tech \N https://freedom.tech/tornado-cash-indictment-shows-desperation/ 21714 \N 219442 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.1032555157322 0 \N \N f 0 \N 0 209068859 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 194628 2024-07-04 17:43:35.289 2025-03-29 22:39:47.914 Generating Genuine Randomness using a 60's icon > https://cacm.acm.org/system/assets/0002/5918/121616_CACMpg13_Pure-Randomness1.large.jpg?1481904869&1481904869\n\nUsers on SN know that Bitcoin seed generation needs a good degree of randomness. However some ways of generating random numbers is far more random than others.\n\nSome algorithmic techniques to generate random numbers aren't. They're actually deterministic and reproducible. These are often referred to as Pseudo Random Number Generators (PRNGs).\n\nIf one were to rely on such generation techniques, you might find your seed, or your security compromised.\n\nTherefore, in the world of computer security and Bitcoin seed generation, one need to generate what's referred to as *genuine* randomness.\n\nSome see the dangers of relying of generating non-random numbers and generate random numbers 'by hand'. For instance, some Bitcoiners buy 200 die to generate their seed by roll them all the die at once in order to generate it.\n\nSome companies, and people, choose to think outside of the box - looking for chaos in our physical world in order to generate randomness.\n\n![Collection of lavalamps](https://blog.cloudflare.com/content/images/2017/11/lava-lamps.jpg)\n\nThe billion dollar cybersecurity firm [Cloudflare](https://wikiless.org/wiki/Cloudflare?lang=en).\n\nCloudflare like any company, have a backup plan. But this isn't backing up data, or power generators, but backup randomness generation.\n\nIf ever Cloudflare finds that their source of randomness is compromized. Their backup, has a very Frisco sort of twist about it - their backup partly involves monitoring a wall of lavalamps - in order to guarantee randomness.\n\n> https://blog.cloudflare.com/content/images/2017/11/lava-lamps-camera.jpg\n\nTheir 60s inspired randomness generator has been given a monicker - LavaRand.\n\n\nDon't think that Cloudflare have lost the plot or are doing this merely as a publicity stunt. They're serious about this backup and know that the randomness that's generated is genuinely random. They're sure that the movement of the globby lava heated up to move by the lamp is so unpredictable, it's perfect to generate random data.\n\n> https://blog.cloudflare.com/content/images/2017/11/Screen-Shot-2017-10-31-at-3.57.19-PM.png\n\nThe lava lamps are constantly watched live by cameras before the numbers are crunched. As you can see, just like an avid Bitcoiner, they don't rely on just one source to rely on, they use 96 lava lamps to guarantee genuine randomness.\n\nCloudflare have yet to call upon their seemingly hippy-inspired, but actually clever way of generating random numbers as of yet; but it's ready and waiting for the call.\n\nIn the meantime, it's just a pretty talking point in their lobby.\n\nTo read more about Cloudflare's lava lamp wall, and see how they've prevented their random backup system from being compromised, read more at:\n\nhttps://blog.cloudflare.com/lavarand-in-production-the-nitty-gritty-technical-details\n\n \N 21180 \N 194628 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.47403033857837 0 \N \N f 0 \N 0 133304014 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 222119 2024-08-28 00:09:17.163 2025-03-29 22:39:51.703 \N Looks good, similar to Umbrel. How is it different or better? https://example.com/ 16847 222059 222059.222119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9882175235836 0 \N \N f 0 \N 0 93804315 0 f f \N \N \N \N 222059 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 194629 2024-07-04 17:45:16.836 2025-03-29 22:39:51.703 \N For routing nodes splicing enables some cool liquidity management options.\n\nBy resizing channels you can move extra onchain funds into a valuable channel as well as move funds out of a less valuable channel.\n\nYou can even do both at the same time, moving funds between channels and there’s essentially no limit on the number of channels you can do this to at once.\n\nAnd it’s all in the most efficient method possible (a single transaction) without relying on any central coordinator. https://example.com/ 3478 194626 194621.194622.194626.194629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8901705066517 0 \N \N f 0 \N 0 158072834 0 f f \N \N \N \N 194621 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 206113 2024-07-26 23:10:12.286 2025-03-29 22:39:51.704 \N Not to be a shill, but we still have our visa cards at The Bitcoin Company that work in the US and internationally\n\nhttps://thebitcoincompany.com/ https://example.com/ 2514 206112 206112.206113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.90550022599952 0 \N \N f 0 \N 0 3331702 0 f f \N \N \N \N 206112 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 198982 2024-07-13 01:09:55.409 2025-03-29 22:39:51.704 \N I am Groot. https://example.com/ 2710 198720 198720.198982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1658760096259 0 \N \N f 0 \N 0 107095603 0 f f \N \N \N \N 198720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1207 2022-09-07 10:59:49.775 2025-03-29 22:39:51.704 \N Apologies for using this thread as a support thread, but I got good answers here before so may as well keep trying.\n\nIs the attached wallet functionality dependent on the device you're on?\n\nI got a different UX while logged onto SN from my phone than my desktop. I set up attached wallets with Alby/NWC from my desktop, and after a bit of jerry-rigging, it all worked fine. I can zap and it will automatically send using my Alby Wallet. I can get zapped and I will automatically receive it into my Alby wallet.\n\nHowever, when I try to zap from my phone, a lightning invoice appears, which is different behavior from the desktop.\n\nBoth devices are accessing SN from Chromium.\n\n https://example.com/ 705 1196 1176.1196.1207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.629889507246411 0 \N \N f 0 \N 0 112872649 0 f f \N \N \N \N 1176 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 220375 2024-08-25 06:05:39.143 2025-03-29 22:39:51.704 \N Part of the sats I will use them to help more salvadorans to get onboard and understand the power of Bitcoin. I do this every time I earn a significant amount of sats.\nI have some humble salvadorans contacts that I want to help them.\nI like to support people directly, so could be avoided possible scams.\n\nOther part will be sent to other FOSS developers. https://example.com/ 21216 220244 220244.220375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9422089291191 0 \N \N f 0 \N 0 212309498 0 f f \N \N \N \N 220244 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 215756 2024-08-16 18:46:22.035 2025-03-29 22:39:47.914 Will AI Cause Massive Deflation? This states something obvious once it's said. Even if we should experience deflation, central banks will happily create more monetary inflation to offset it because their explicit goal is to make prices double every 36 years[^1] (aka 2% inflation per year).\n\n[^1]: I wonder if it's a coincidence that 36 years is half the lifespan of the average male. https://www.profstonge.com/p/will-ai-cause-massive-deflation 12921 \N 215756 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7575482779947 0 \N \N f 0 \N 0 117715883 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 209478 2024-08-02 16:58:14.244 2025-03-29 22:39:47.914 Does bitcoin have any value if Russian oligarchs can't use it? The Samourai people tweeted this last June:\n\n> Welcome new Russian oligarch Samourai Wallet users\n\nObviously, this was not a tactful statement. It got singled out in the [DOJ press release](https://www.justice.gov/usao-sdny/pr/founders-and-ceo-cryptocurrency-mixing-service-arrested-and-charged-money-laundering) about the developers' arrest. It is likely that statements like these may have played a role in their current discomfort.\n\nMatt Corallo on TFTC recently said this:\n\n> Censorship resistance is the value proposition.\n\nThis is a far more palatable version of the same statement. Censorship resistance means Russian oligarchs can use Bitcoin.\n\nSo my question is this: did Samourai make a mistake of semantics or is this the inevitable end of Bitcoin?\n\nSome people seem to think what got them in trouble was their implementation (centralized coordinator) or accepting fees for a service or their loudmouth bombastic social media presence. \n\nTo me, however, the problem here is that the central idea of bitcoin (censorship resistant money) is already illegal as far as most governments are concerned. They're just trying to figure out how they can stop it. \n\nIf Bitcoin lives up to its promise (money you can send to anyone anywhere anytime and no one can stop you) is it inevitable that we all become outlaws? \N 5500 \N 209478 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.07372707100932 0 \N \N f 0 \N 0 229847750 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 222811 2024-08-29 03:35:31.292 2025-03-29 22:39:47.914 ⚡️ PlebLab Startup Day: Together, We Innovate! - Final Schedule released \N https://www.pleblab.com/blog/pleblab-startup-day-together-we-innovate 14959 \N 222811 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.3792762996226 0 \N \N f 0 \N 0 41484717 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 213438 2024-08-11 18:24:55.608 2025-03-29 22:39:47.914 Summers: Inflation Reached 18% In 2022 Using The Government’s Previous Formula The arguments about how inflation is more complicated than CPI presented here won't be unfamiliar to any reader of SN, but this one is really well-written and interesting. And it's in Forbes, which seems important: the nutty btc obsession w/ inflation has gone mainstream enough to appear in the most Boomer-ish of all financial media.\n\nIt really is a good article; worth checking out. https://www.forbes.com/sites/theapothecary/2024/03/23/summers-inflation-reached-18-in-2022-using-the-governments-previous-formula/?sh=327fb2b32092 16440 \N 213438 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.2366226836892 0 \N \N f 0 \N 0 206716635 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 207429 2024-07-29 13:55:58.551 2025-03-29 22:39:51.705 \N I work and live in China, run a lightning node from home, and regularly cross the border with a hardware wallet and a phone with LN apps. Possessing Bitcoin that was obtained legally is NOT a crime and is protected as property under Chinese law. Attempting to sell Bitcoin as a company IS illegal, but doing it as a person as a form of barter is a grey area - as you are taking a risk that the other person may have illegally obtained money. Nonetheless it’s widely done in underground networks in China with Bitcoin and stablecoins. \n\nThe seed phrase should stay outside of China. If they ever forced me to hand over the crypto at the border, they could keep the hardware wallet and I’ll even give them the pin and passphrase to a small wallet containing a few hundred bucks ($5 wrench attack). My lightning node is on a server with a locally encrypted drive and backed up abroad. They can keep the server and if they are truly jerks they could keep the phone I use to access it. \n\nJust buy a separate hardware wallet? Avoid crossing borders with a seed phrase to a significant cold wallet. Lightning nodes should contain small funds. If you are running the node from your phone with significant channels and want to avoid any potential disruption, it may be best to get a separate phone. Your relatives will need an App Store abroad and VPN to access LN apps. Happy to help further. I hope you help spread the word on Bitcoin. https://example.com/ 706 207349 207349.207429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7001570869685 0 \N \N f 0 \N 0 239302745 0 f f \N \N \N \N 207349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 4239 2022-11-16 20:42:42.396 2025-03-29 22:39:51.705 \N We still spend time together a lot, multiple times per week. Though I will say, it has started to feel more and more redundant (perhaps that's the wrong word) due to our increasing ability to spend time together virtually. I suppose that's one of the driving factors for the data here. https://example.com/ 21248 4237 4237.4239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9798071126509 0 \N \N f 0 \N 0 89046110 0 f f \N \N \N \N 4237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 214357 2024-08-13 14:55:47.793 2025-03-29 22:39:47.914 core dev appreciation post Today, I stumbled on vlaanj home page, read recent bitcoin-dev mailing list history and realized how much of a burden it is to be a in a center of bitcoin development.\nHow much stress, harassment, toxicity online they have to endure for whatever minor change they'd propose or even getting in a middle of a discussion in an attempt to improve or otherwise move bitcoin forward . CSW court case is an example.\nJust looking from my vantage point of being in corporate safety of whatever bs mental health protection at work programs, it's such a contrast.\nThese people, well still probably holding substantial amount of bitcoin, could've already rest their case, yet doing this for no salary, no immediate return and for good of the public.\nPlease know, it all is worth it. One day ignorance will turn reason, system will become more fair thanks to your sweat and in hindsight people remember at those who've been involved, as you were no one and everyone at the same time. \N 1806 \N 214357 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.6008398577685 0 \N \N f 0 \N 0 42806806 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1453 2022-09-14 19:33:53.098 2025-03-29 22:39:51.706 \N >But no, this isn't the real reason bitcoiners tend to wish for the end days. It's just easier. A dollar collapse spares us from the actual hard work of educating people, answering dumb questions about blockchain, building L2s, and scaling bitcoin. If the world ends tomorrow, it allows us to feel superior without doing anything.\n\nOh wow, is this my alt?\n\nNah, I'm kidding. Seriously though, watching other people come to the same natural conclusions (and writing articles about them) is a heck of a thing to watch.\n\n>And we're part of the problem. As long as we're taking out promissory notes in dollars, we're creating demand for the world's reserve currency. My liabilities are someone else's asset to balance against their liabilities. So it goes.\n\n>You can rationalize it however you want: fiat loans with bitcoin collateral, speculative attack, get on zero, asymmetric trade, etc. But what you resist, persists.\n\nARE YOU SURE YOU'RE NOT MY ALT??? lmao https://example.com/ 19812 1452 1452.1453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7753377063301 0 \N \N f 0 \N 0 169502046 0 f f \N \N \N \N 1452 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 225332 2024-09-01 18:54:11.684 2025-03-29 22:39:51.706 \N We still have more work to do in this category, but basically the key is to provide safe and sensible defaults that work for everyone and tuck away the more advanced functionality on secondary screens.\n\nNot everyone is going to care about what hops they use when making a payment, for example, but advanced users should be able to do so.\n\nShouts to our designer who's been helping out heavily in this department - I'm not great at UI/UX, but I'm learning\n\nhttps://twitter.com/_Bosch_ https://example.com/ 1761 225266 225266.225332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.094223265966 0 \N \N f 0 \N 0 208982732 0 f f \N \N \N \N 225266 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 228093 2024-09-05 12:29:22.113 2025-03-29 22:39:51.706 \N That's what I'm saying, though. You come on here to create and share valuable content, and you're rightfully rewarded for that. Others may come here with the less altruistic intent to just stack sats, but they'll quickly realize that to do so they too will need to provide value. \n\nIt's like a lane closure on a two lane road. Here on SN, the lane for spamming, shitposting, and karma farming is closed so everyone is forced into the V4V lane. https://example.com/ 6202 228078 228078.228093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6462557689997 0 \N \N f 0 \N 0 17789776 0 f f \N \N \N \N 228078 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 152966 2024-04-03 13:33:38.771 2025-03-29 22:39:47.914 Mutiny Wallet FAQ \N https://blog.mutinywallet.com/mutiny-wallet-faq/ 1298 \N 152966 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8417730824376 0 \N \N f 0 \N 0 246501968 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1380 2022-09-13 14:11:59.104 2025-03-29 22:39:51.701 \N https://12ft.io/proxy?&q=https%3A%2F%2Fwww.ft.com%2Fcontent%2F0fab7af9-e950-43f1-b1aa-f2deeb21b34d https://example.com/ 8870 1375 1357.1375.1380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2128789381278 0 \N \N f 0 \N 0 7044283 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1277 2022-09-09 08:21:40.743 2025-03-29 22:39:51.701 \N He did not ask other stackers for help. He offered stackers a bounty to help him get his sats back from a scam site. ANOTHER stacker asked the community to help him out as an act of goodwill once he realized the OP was the victim of a scam. The OP expected to pay for any help he got. https://example.com/ 2347 1247 1247.1277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6478802025387 0 \N \N f 0 \N 0 89492770 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1323 2022-09-11 18:26:53.62 2025-03-29 22:39:51.706 \N Circular economy:\n\nGot a sizeable amount of sats in my SN wallet. Because of this I pushed sats to this project \n\nhttps://geyser.fund/project/kineticperu https://example.com/ 5761 1322 1247.1250.1253.1317.1319.1322.1323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7207914236192 0 \N \N f 0 \N 0 206300415 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1398 2022-09-13 17:48:58.652 2025-03-29 22:39:51.707 \N There is nothing about mining that gives you an advantage in operating a lightning node as long as Bitcoin itself is working properly, and mempools are competitive. Yes miners have slim margins. And yes, lightning nodes might end up taking away fee revenue from miners.\n\nBut the correct question to ask is why would a miner have an _advantage_ over someone else when running a lightning node? The answer is, they don't. https://example.com/ 11018 1366 1359.1360.1366.1398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.13933747380956 0 \N \N f 0 \N 0 234546670 0 f f \N \N \N \N 1359 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1700 2022-09-22 17:41:27.879 2025-03-29 22:39:51.707 \N The coinbase output includes all the fees paid by the transactions included in the block. If the sum of reward and fees is still below the dust limit, there is no monetary incentive to mine...\n\nWhy would the dust limit increase with fees in the future? I'd expect the dust limit to decrease as the BTC price increases. https://example.com/ 5377 1698 1698.1700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3560949338351 0 \N \N f 0 \N 0 49862265 0 f f \N \N \N \N 1698 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1997 2022-09-30 20:47:50.367 2025-03-29 22:39:51.701 \N Hey stackers, did you start your day by giving some sats to SN pool ? https://example.com/ 797 1970 1952.1965.1968.1970.1997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.86425976588197 0 \N \N f 0 \N 0 150356186 0 f f \N \N \N \N 1952 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1825 2022-09-26 14:03:27.913 2025-03-29 22:39:51.702 \N Bitcoin https://example.com/ 3686 1823 1816.1823.1825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.487104562700971 0 \N \N f 0 \N 0 216977316 0 f f \N \N \N \N 1816 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1863 2022-09-27 10:04:12.364 2025-03-29 22:39:51.703 \N Morning stackers! As discussed the other week, here's the [first post](https://stacker.news/items/333010/r/elvismercury) in the meta-experiment around the _Broken Money_ book club, part 5.\n\nTrying several new things here. If you're interested in the topic, check it out. If you have meta-feedback ... well, there's not a good way to give that yet. I guess you could reply to this comment, or on the post itself? \n\n(I want to create a 'container' post for the posts I plan to make, but decided I'd do that at the end, so I could collate them together and have that post serve as overall discussion. You could hold comments till then, too.) https://example.com/ 2322 1860 1860.1863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2898873950796 0 \N \N f 0 \N 0 139022368 0 f f \N \N \N \N 1860 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1922 2022-09-28 19:18:49.227 2025-03-29 22:39:51.703 \N fixed bro 😂 https://example.com/ 4819 1912 1912.1922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0264734447301 0 \N \N f 0 \N 0 193512543 0 f f \N \N \N \N 1912 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1807 2022-09-26 09:29:53.208 2025-03-29 22:39:51.703 \N If you've read any Dalio, you know we can only raise rates and curb spending so much before causing a depression, which means we'll have to keep printing money, which means inflation and all scarce assets will continue to appreciate in dollar denominated terms, which means we'll lose reserve currency status, which means we'll have a lot of internal and external conflict (war) as our influence weakens.\n\nFor people who can't afford scarce goods/assets, life is going to be hard. For everyone else, they'll likely be fine. https://example.com/ 11714 1610 1565.1571.1604.1610.1807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5132715726483 0 \N \N f 0 \N 0 188777440 0 f f \N \N \N \N 1565 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1813 2022-09-26 11:56:27.071 2025-03-29 22:39:51.703 \N > Aqua wallet\n\nI'm not fond with these non bitcoin-only app, they also mislead users by advertising as "LN Wallet"\n\n> Blink\n\nWhy do some people don't read the whole thing and make a fully-constructed thought before commenting ? It's literally there on [REXMEMORY](https://stacker.news/items/733538#rexmemory) - Threshold-based KYC\n\n> LNMarket\n\nAgain, same reason as before, it's under [STACKING PORTAL](https://stacker.news/items/733538#stacking-portals) - Finance\n\nThe image it's actually 5900×5900, idk what SN did that make the image a bit blurry, @k00b any explanation ?\n\n35M pixels max limit ≈ 5900² https://example.com/ 1959 700 644.700.1813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9536353341731 0 \N \N f 0 \N 0 158590879 0 f f \N \N \N \N 644 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2010 2022-10-01 14:54:32.487 2025-03-29 22:39:47.914 Late Stage Capitalism? We're just getting started! ![latestagestarted](https://i.redd.it/mile4ceupfka1.jpg)\n\nLate stage capitalism is a popular narrative with the modern left. Although most conservatives, liberals, libertarians etc do not share this idea, it is still leaking into the mainstream. The latestageidiot subreddit has 800k subscribers. Here is why they are wrong:\n\n# The World is Improving. In Every Metric.\n\n![worldindata](https://pbs.twimg.com/media/FZtfSe8WYAUuTeF?format=png&name=small)\n\nThis is a fact. Numbers don't lie. Maybe you're feelings do, but numbers don't.\n\nSome of these metrics are also very very underrated. **Child mortality** - do you have any f*cking idea how tragic the past was when childbirth was a super dangerous thing? We just forgot about super fast as soon as modern medicine made modern nuclear families possible. **Literacy rate** - people just think about literacy as obvious but it really isn't. The economic potential of everyone being able to read and basic maths is amazing.\n\n# Not Just The 3rd World\n\nPlease, talk to your parents how their lives were when they were your age. It's easy to think that they had it easier. Admittedly, if you're a white 1st world male you're expectation might be a house, a car, children and family vacations but rising property prices made this far out of reach. Many countries have a real estate crisis, no doubt.\n\nBut that house was far smaller and worse isolated. The car barely had security features besides a seat belt and far less comfortable. And it was not as accessible to people below the upper middle class and to non-whites as Hollywood wants to make you think.\n\n- You have all of humanities knowledge in your pocket. Like literally. Think about it how amazing that is. Library of Alexandria.\n\n- You can have your apartment cleaned by a robot. Wtf\n\n- Your great grandma spend a day a week with a washing board. Do you have any idea [how miserable it was to spend a huge percentage of your life with this](https://i.pinimg.com/736x/bc/73/ac/bc73ac47211e927302a6061d33d40d2a--primitive-country-primitive-decor.jpg)? This might even be a bigger leap forward than the internet: https://www.youtube.com/watch?v=_gvsz_vc7B0&ab_channel=EconomicsExplained\n\n- You can buy groceries or takeout with the click of a button. That's amazing.\n\n- You can spontaneously order a car for a few bucks anywhere near urban areas. This is a huge quality of life improvement even compared to the 2010s. **Don't fall for the hedonic treadmill** Quality of life improvements are happening every few years. \n\n- F*cking groceries man. All the exotic fruits of the world in every Walmart year round. When my parents were my age a papaya was a rich people status symbol. Now I can buy it for 2-3 bucks. Imagine you were an alien visiting earth and guess what the subjective pleasure of a mango in London should be - like 100 bucks? No, it's like almost free.\n\n- TIL of Viktor Belenko, the Soviet pilot who defected with the MiG-25 (most advanced Soviet interceptor of its time), who initially assumed that his CIA handlers were keeping him in an elaborate tourist trap made to impress foreigners because he couldn't comprehend the sheer abundance he was seeing. https://www.reddit.com/r/todayilearned/comments/z5vpkw/til_of_viktor_belenko_the_soviet_pilot_who/?utm_source=share&utm_medium=web2x&context=3 **Communism makes every day goods into luxuries, Capitalism makes commies think they are in a tv show with a hidden camera**\n\n# This is Early Stage Capitalism\n\nWe're just getting started. \n\n### Entertainment\n\nWe have already reached endless entertainment. AI will very soon make endless entertainment maximising entertainment enjoyment.\n\n### Other White Collar\n\nGenerative AI just made a big jump as we all saw. This is going to leverage all white collar jobs so much further. It's like we're slingshotting humanity.\n\n### Robotics\n\nThe big **bootstrapping of robotics** is eminent (maybe a few decades). The day when a robot is able to repair another robot we will be. \n\n![walle](https://www.sciencealert.com/images/2019-09/1.png)\n\nYeah yeah, you might think Wall-E is a dystopian world of NPCs. It is, you are right. But it's a metaphor bro. In the 1900s children worked 14 hours a day in the mines, you have a 40 hour coffee drinking desk job, think about what you could do with your free time when this trend inevitably continues.\n\n### Medicine\n\nMaybe you're an edgelord contrarian and think big pharma is evil. I don't. Life was miserable very recently when people died from every little infection. The future is bright. \n\nExample: You know the bullshit weight loss pills from shady website ads? [It's becoming real](https://www.reuters.com/business/healthcare-pharmaceuticals/novo-nordisks-new-weight-loss-drug-getting-boost-pandemic-ceo-2021-08-05/). We're solving obesity as an illness just like we solved broken bones as an illness.\n\nWith MRNA many viral diseases will become a thing of the past. Biohacking and crispr is advancing rapidly.\n\n![futureisnow](https://media.tenor.com/jgUVViyS2CYAAAAC/now-old.gif)\n\n### Bitcoin\n\nThe most underrated WWE surprise entrance. Right now humans only have money liquid and value loosing (checking account) or longterm value increasing but locked for decades (investments). And neither of these things with the security of decentralization.\n\nI know I'm preaching to the choir here. You all know how amazing such a simple, in retrospective obvious idea that is. It's 2023 and humanity already made it this far without it - society is going to be amazing with it.\n\n![utopia](https://sites.williams.edu/f18-engl117-02/files/2017/11/utopia.jpg)\n\n# Further Links\n\n- [In about half the world, there is net reforestation—not despite economic development, but because of it.](https://www.humanprogress.org/economic-development-is-saving-the-forests/)\n\n- [People in the Past were Desperately Poor ](https://twitter.com/FromKulak/status/1629127671815741441?s=20)\n\n- [Humanity was stagnant for millennia — then something big changed 150 years ago](https://www.vox.com/future-perfect/2022/9/7/23332699/economic-growth-brad-delong-slouching-utopia)\n\n- [Germanys number of people owning real estate is slowly rising, not falling as leftists often lie](https://de.statista.com/statistik/daten/studie/155713/umfrage/anteil-der-buerger-mit-wohneigentum-nach-bundesland/#:~:text=Das%20Statistische%20Bundesamt%20erfasst%20bei,57%2C9%20Prozent%20sind%20Mieterhaushalte)\n\n- [average American's living space nearly doubled between 1973 and 2017](https://pbs.twimg.com/media/FpwTKWWWAAIUTEK?format=jpg&name=4096x4096)\n\n- [Resources Are More Abundant Than Ever](https://www.humanprogress.org/resources-are-more-abundant-than-ever-and-people-are-the-reason/)\n\n- [$1 out of every $225 in GDP in 1810 was... Nails](https://www.aeaweb.org/articles?id=10.1257/jep.36.1.125)\n\n- [ the first commercially available microwave oven weighed 750 pounds cost about US$5,000 $61,000 in 2021 dollars](https://www.reddit.com/r/todayilearned/comments/z3abgi/til_in_1947_raytheon_built_the_first_commercially/)\n\n![Freedom and Capitalism](https://i.redd.it/q0yava4z3yaa1.png)\nFreedom and Capitalism \N 6687 \N 2010 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.1936590677889 0 \N \N f 0 \N 0 74597091 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2014 2022-10-01 15:18:10.141 2025-03-29 22:39:47.915 How private are the messages in a LN transaction? I said I welcomed dumb questions in this territory. Well, I have one.\nI have become addicted to sending messages to lightning addresses attached to nominal transactions. I know a lot of us are doing this on Stacker News. How private are these messages?\nI assume the messages would be visible to the nodes routing the transactions. Should we assume SN can read these messages if they're so inclined?\nAlso, would it be correct to assume there is more privacy when using a non custodial wallet as opposed to a custodial one like the SN wallet? \N 12272 \N 2014 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3601641595805 0 \N \N f 0 \N 0 184740038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 1930 2022-09-29 11:35:12.301 2025-03-29 22:39:51.703 \N [![6x85ve.jpg](https://i.postimg.cc/CKH09L8f/6x85ve.jpg)](https://postimg.cc/nszNDx0H) https://example.com/ 5557 1929 1903.1904.1905.1906.1907.1929.1930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3186802253651 0 \N \N f 0 \N 0 48572601 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2005 2022-10-01 14:18:48.451 2025-03-29 22:39:51.703 \N developing an RF communication system between two devices to synchronize flash light outputs https://example.com/ 10693 2004 2004.2005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0729699724882 0 \N \N f 0 \N 0 175966497 0 f f \N \N \N \N 2004 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2019 2022-10-01 15:28:50.693 2025-03-29 22:39:51.703 \N Can we forward zaps to L0la or something? Really appreciate the reporting she's doing and staying laser-focused on this beat; making shit make sense for us lil plebs https://example.com/ 20523 2011 2002.2008.2011.2019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8177536196368 0 \N \N f 0 \N 0 74348905 0 f f \N \N \N \N 2002 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2096 2022-10-02 17:12:29.416 2025-03-29 22:39:51.703 \N not your fault, some people are greedy and no one can make everyone else happy. There gonna be always enemies and complainers... unhappy people! \n\nSN has been always pretty transparent and everyone knows what was included signing up as territory founder. \n\nIgnore the noise, take just what's needed to make SN great. Stay focus! https://example.com/ 16176 2080 2080.2096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2949241718625 0 \N \N f 0 \N 0 102618397 0 f f \N \N \N \N 2080 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3124 2022-10-25 13:25:22.195 2025-03-29 22:39:47.915 Recommend me a project to contribute to, please Got a strong background in fullstack app development (typescript), recently I've been tinkering with bitcoin protocol to the point that I've built a raw bitcoin transaction in Rust. \n\nI've got some capacity to contribute to meaningful open-source project(s), ideally something that increases bitcoin UX and/or adoption.\n\nShill me something, if you can! \N 16440 \N 3124 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.9756920771389 0 \N \N f 0 \N 0 205296372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3152 2022-10-26 05:46:06.255 2025-03-29 22:39:47.916 I have trust issues with hardware wallets. (And so should you.) When choosing a hardware wallet (signing device) for your cold storage, it’s really important to find one from a manufacturer that has proven to be trustworthy, and the same goes for the software and the marketing team. You don’t want a setup that collects analytics on your activity, or one that stores your personal information on an insecure database that creates a very attractive honeypot.\n\nThe first one I ever used was called a KeepKey, launched in early 2015 by a company led by CEO Darin Stanchfield and CTO (this is his actual name, I shit you not) Ken Hodler. It was a slick-looking device about the size of an Apple TV remote that connected to your computer using a browser extension to view balances and broadcast transactions. \n\nOn Christmas Day in 2016, Darin was sim-swapped and hackers compromised his email account, as well as the company’s social media account, and its marketing database, exposing customer data.\n\nIn 2017, KeepKey was acquired by ShapeShift, an exchange run by Erik Voorhees, an early pioneer in bitcoin who has since pivoted to shitcoins. Within a short time, they began pushing new updates to KeepKey to turn it into a full “crypto” wallet, and replaced the original browser extension with a new website (that also doubled as an exchange) to manage the device. \n\nBy that point, I absolutely knew it was time to move on, and I opted for a new bitcoin-only device. Much to my surprise, when I first attempted to migrate from KeepKey to the new setup, I got an error saying that the transaction could not be broadcasted. I tried in a different browser, and on a different computer, with no luck. Before going into a panic, I sent an email to ShapeShift support. I got the following autoresponse from them:\n\n“I’d like to apologize for the delay in response. As a crypto enthusiast, you must have noticed what a crazy time it has been in our industry! We’ve seen an all-time high in demand, and with it, needs for extra support.” 🤮\n\nA few days later, a reply came, saying that there were “known issues” with the platform that affected certain legacy wallets (i.e., pre-acquisition) and that I should use the device directly with Electrum. I did some research, and after a few more days, was finally successful in getting off of this platform. It was a hair-raising moment that made me realize that even self custody has the potential to get rugged, even if you thought you were making the most informed decisions you could at the time.\n\nBe careful out there! \N 20353 \N 3152 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5477528706902 0 \N \N f 0 \N 0 114285231 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 8937 2023-02-14 19:35:16.54 2025-03-29 22:39:47.916 SN Saturday Newsletter 1/6/24 Happy Sat-urday Stackers,\n\nWelcome to 2024!\n\n##### Top Posts\n1. Why guess what hyperinflation is like when you can live it? [@Natalia](https://stacker.news/Natalia) reports on hyperinflation in Turkey.\n - [My Experience of Living in Turkiye under Soaring Inflation 🇹🇷](https://stacker.news/items/376570)\n - 23.1k sats \\ 36 comments \\ [@Natalia](https://stacker.news/Natalia)\n2. [@supertestnet](https://stacker.news/supertestnet)'s latest invention lets you [buy, borrow, and die](https://smartasset.com/investing/buy-borrow-die-how-the-rich-avoid-taxes) peer-to-peer, and non-custodially, with collateralized bitcoin-only loans.\n - [Loan shark: Super Testnet's non custodial, bitcoin only borrow and loan tool](https://stacker.news/items/371764)\n - 11.9k sats \\ 79 comments \\ [@supertestnet](https://stacker.news/supertestnet)\n3. [@C_Otto](https://stacker.news/C_Otto) studies a force close, an often expensive and involuntary lightning channel operation, that cost them 140k sats. Let it remind us lightning fees will only remain as low as channel management allows.\n - [Dissection of a force-close that already cost me 140k sats](https://stacker.news/items/372294)\n - 10k sats \\ 20 comments \\ [@C_Otto](https://stacker.news/C_Otto)\n4. Altcoins don't sparkle in Bitcoin's shadow, so [@jimmysong](https://stacker.news/jimmysong) expects them to try to [grow on bitcoin instead](https://www.sciencedirect.com/topics/agricultural-and-biological-sciences/holoparasite).\n - [Altcoin Redux](https://stacker.news/items/372987)\n - 11.9k sats \\ 16 comments \\ [@jimmysong](https://stacker.news/jimmysong)\n5. [AQUA](https://aquawallet.io/) is a mobile wallet for Blockstream's [Liquid](https://blockstream.com/liquid/) sidechain. AQUA [isn't new](https://web.archive.org/web/20210801233313/https://aquawallet.io/), but interest in Liquid is. [@Thawne](https://stacker.news/Thawne) reviews it with a skeptical eye.\n - [My thoughts on AQUA Wallet 🧠](https://stacker.news/items/376639)\n - 6.8k sats \\ 40 comments \\ [@Thawne](https://stacker.news/Thawne)\n\n##### Don't miss\n- [Everyone I’ve met would be well-served thinking more about what to focus on](https://stacker.news/items/376337)\n- [Welcome to the devs territory!](https://stacker.news/items/374756)\n- [Substack may not exist in 2030 without adopting Nostr](https://stacker.news/items/373739)\n- [Wei Dai Ignore This Guy?](https://stacker.news/items/375619)\n- [The African village mining Bitcoin](https://stacker.news/items/377801)\n- [BuT, wHaT aBoUt ThE rOaDs?](https://stacker.news/items/375650)\n- [Base58 Spring Classes just went live](https://stacker.news/items/377560)\n- [On starting a family](https://stacker.news/items/374326)\n- [Lightning privacy tips for beginners?](https://stacker.news/items/375022)\n- [What are your predictions for 2024?](https://stacker.news/items/373338)\n- [When nature looks like a painting](https://stacker.news/items/377218)\n- [LAST DAY to apply for Chaincode Labs’ Bitcoin FOSS Program](https://stacker.news/items/372795)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [LLMs and SN, redux](https://stacker.news/items/376773)\n- [SN release: mute territories, opt-in moderation, iOS pwa notification fixes(?!)](https://stacker.news/items/372672)\n- [Incentivizing cowboy zapping power? 🤠⚡ (controversial topic)](https://stacker.news/items/374391)\n- [[important] wallet geofence on at 3a CT: North Korea, Iran, Syria, Ukraine, Cuba](https://stacker.news/items/376305)\n- [SN Foundry #01 - A spot for Territory Founders](https://stacker.news/items/376962)\n\n-------\n\n##### Top Monday meme \\ 26.2k sats \\ [@TheBTCManual](https://stacker.news/TheBTCManual)\n![](https://imgprxy.stacker.news/uG4uaTMY1OfS0McNRVOgNVkTmxRKJupkONSy9TdgNAI/rs:fit:640:360/aHR0cHM6Ly9tLnByaW1hbC5uZXQvSFdJei5qcGc)\n\n[**all monday memes**](https://stacker.news/items/373271)\n\n------\n\n##### Top Friday fun fact \\ 10.8k sats \\ [@Coyote_Cosmico](https://stacker.news/Coyote_Cosmico)\n> Remember the episode of The Simpsons where Homer eats the Guatemalan insanity pepper, then has a psychedelic journey?\n>\n> ![jan5.webp](https://m.stacker.news/10825)\n>\n> His spirit guide in that episode, the "Space Coyote," was voiced by country music legend **Johnny Cash.**\n>\n> ![images (11).jpeg](https://m.stacker.news/10821)\n>\n> [El Viaje Misterioso de Nuestro Jomer (The Mysterious Voyage of Homer)](https://en.m.wikipedia.org/wiki/El_Viaje_Misterioso_de_Nuestro_Jomer_(The_Mysterious_Voyage_of_Homer))\n\n[**all friday fun facts**](https://stacker.news/items/377923)\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week. \N 632 \N 8937 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.65469612489836 0 \N \N f 0 \N 0 134537526 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3568 2022-11-06 20:41:32.181 2025-03-29 22:39:51.703 \N 1. Woke up\n2. Got outta bed\n3. Dragged a comb across my head https://example.com/ 1002 3562 3562.3568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.32728316413974 0 \N \N f 0 \N 0 120294690 0 f f \N \N \N \N 3562 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3068 2022-10-24 12:28:40.627 2025-03-29 22:39:51.703 \N I was actually looking into making similar home media device that's really small and transferable. 600 is not that bad in that respect. The ones that are the most promising are MeLE devices and I was thinking about putting Umbrel OS on there anyway.\n\nLike this one https://www.amazon.com/dp/B09TGN1MWV . But consider you also need to buy 2TB SSD. https://example.com/ 8289 3060 2990.2999.3035.3037.3039.3042.3060.3068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5349368662682 0 \N \N f 0 \N 0 5106376 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3160 2022-10-26 08:48:39.15 2025-03-29 22:39:51.704 \N Exaggerated but the hype probably helps.\n\nIt looks like it's around ~8k daily actives: https://stats.nostr.band/ https://example.com/ 6382 3153 3061.3066.3104.3106.3111.3153.3160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5556186328565 0 \N \N f 0 \N 0 233097817 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3145 2022-10-25 23:09:05.645 2025-03-29 22:39:51.704 \N Circle is a company that flip-flaps more than any other company in the industry. Remember they [launched](https://www.coindesk.com/markets/2014/09/29/circle-announces-global-launch-of-bitcoin-banking-platform/) a buy/sell/wallet offering in 2014/2015 only to ‘can it’ and [disable buys/sells](https://www.coindesk.com/markets/2016/12/07/circle-cuts-bitcoin-buying-and-selling-in-product-pivot/) 18 months later. Forcing people to move their coin of their platform.\n\nThen [reopened](https://www.coindesk.com/markets/2018/03/14/circle-rolls-out-crypto-investment-app-in-46-us-states/) itself to buys/sells in 2018. Then [sold that business](https://www.coindesk.com/markets/2020/02/12/circle-sells-retail-trading-app-to-crypto-broker-voyager/) in 2020.\n\nHard to not see them cashing out here before they get swallowed-up or outcompeted by an upcoming dollar stablecoin. A company that follows/rides trends, and with a track record of cashing-out when it suits. https://example.com/ 11938 3144 3144.3145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0840006963303 0 \N \N f 0 \N 0 182739217 0 f f \N \N \N \N 3144 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3401 2022-10-31 18:02:22.46 2025-03-29 22:39:51.704 \N Look, for grandma and normies it's great, but I don't get why some devs in bitcoin / sovereign computing still take that crap serious.\n\nI once bought an apple laptop, it didn't offer me the setting that closing the lid would not suspend the computer. ..\n\nSimilar experience with iphone: \n\nWIFI OFF!!\n- Ok, but when I feel like it, I switch it on again.\n\nI don't need a nanny when I use my device. https://example.com/ 20691 3400 3397.3398.3400.3401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.45628837678761 0 \N \N f 0 \N 0 59529326 0 f f \N \N \N \N 3397 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3239 2022-10-27 12:59:54.331 2025-03-29 22:39:51.704 \N Last week you guys inspired me to start working on a basic BTC ticker Android app:\n![Bitcoin Ticker App](https://i.postimg.cc/VkLrqqRd/Bitcoin-Ticker-Main-Activity-kt-Bitcoin-Ticker-app-main-11-16-2022-8-31-19-AM.png)\n https://example.com/ 1833 3231 3191.3231.3239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6625109215165 0 \N \N f 0 \N 0 83338275 0 f f \N \N \N \N 3191 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 9274 2023-02-18 19:02:49.454 2025-03-29 22:39:47.917 The Penal Preserve, Chapter 13 *This is chapter 13 of **The Penal Preserve**, you may want to go back to [Chapter 12](https://stacker.news/items/618793) or [start at the beginning](https://stacker.news/items/599283).*\n\n# 13\n\nBoth Jane and Ross were waiting for Franklin on the beach when he came back from his customary long walk. He saw them from some distance. They were standing far apart, but had to draw near in order to reach him. Once they did, they performed a strange duet of acrimony.\n\n‘Something terrible has happened,’ said Jane.\n\n‘We proved we can stand up to the Aliens,’ said Ross.\n\n‘By killing our own people!’ said Jane.\n\n‘We have to defend ourselves,’ said Ross.\n\n‘They weren’t even carrying weapons!’ said Jane.\n\n‘They had Alien things!’ said Ross.\n\n‘Who are we talking about?’ asked Franklin.\n\n‘Some of those other people living on the island came,’ said Jane.\n\n‘There were hundreds of them,’ said Ross.\n\n‘They were bringing us food,’ said Jane.\n\n‘We were almost surrounded,’ said Ross.\n\n‘It was a welcome party,’ said Jane.\n\n‘Betrayal of their own species,’ said Ross.\n\n‘How much food was there?’ asked Franklin.\n\n‘He killed them all!’ shouted Jane.\n\n‘I didn’t kill anyone,’ said Ross. \n\n‘He told everyone he was a hero!’ said Jane.\n\n‘Who?’ asked Franklin.\n\n‘Rae,’ said Ross. ‘You should have seen him.’\n\n‘They killed all of them,’ said Jane. ‘Even the children.’\n\nThe story slowly came out, and Franklin kept his customary peace. Jane was sobbing, and Ross was very animated. When it was finally clear what happened, Franklin said, ‘We still need food.’\n\nThey all knew that they needed food, and so there wasn’t really any decision to make in the end. Franklin agreed that they should go to the Vacationer abode Rae had visited and requisition whatever food stores might be available. As Rae was the only one who knew where it was, he clearly would go. But Franklin decided to lead the expedition himself, believing that he could avert any further bloodshed. In this he was terribly wrong.\n\nThe Penists struggled their way up the precipitous slopes of the interior, soaked by rain, fog, and the dewy leaves of the thick underbrush. They searched for a miserable three days before Rae finally found his way back to the Vacationer cabin that had been the scene of his triple murder. The bodies of the three prisoners remained, but in a very decomposed state, although, otherwise the cabin was as deserted as it had when he visited the first time. \n\nFranklin approached the cabin and knocked on the door. No one answered, and all was still. He opened the door. The house was clean, and well-kept, but in some disorder as though it had been recently abandoned in haste. Most obvious to the Penists were the many strange Alien products that inhabited the cabin in a familiar manner. Some of the prisoners had never before seen Alien products, and were strongly affected.\n\nThey were startled by the new sound of a choking gas motor. Stumbling out of the dim cabin, they saw a male Vacationer struggling to start a dirt bike that some of them had noticed leaning against the cabin before they entered. \n\n‘Wait!’ yelled Franklin.\n\nThe man did not cease his efforts to start the bike, nor did he look back to see who was speaking. He was clearly frightened. \n\n‘Stop!’ Rae shouted, and turning to Franklin, he said, ‘You have to stop him!’\n\n‘Stop!’ shouted Franklin, not quite so loudly as Rae.\n\nRae started towards the Vacationer, running as fast as he could. The man was so focused on trying to start his bike that he did not notice Rae until it was too late. Rae jumped on him, knocking over the bike. Landing on top of the man with his full weight, he began to throttle him and bash his head against the hard packed dirt in front of the cabin. The man struggled against him, and Rae was obliged therefore to slay him with a hefty rock that lay nearby.[^1] \n\nNone of the other Penists, not even Franklin, said anything. And when Rae stood up from the dust, his face splattered with blood, it was clear that he had become the leader of the group. He proceeded to the cabin and ransacked it for food and supplies. When he was satisfied that they had found everything, he dragged the Vacationer’s body into the cabin, and left it there. He spilled a container of gasoline over the dead man and ignited the cabin. \n\n‘Let’s take this stuff back home,’ said Rae.\n\nWhile they did not discover an enormous quantity of food, they found enough to establish a plan for feeding the colony through the long, hard months ahead. Franklin allowed Rae to dispatch crews of Penists to forage across the island. Franklin told Jane there could be no doubt that all the Vacationers would soon quit the island—if they had not already done so—and no doubt that they would leave behind them a sizable store of provisions—if the single cabin he had seen was any indication. These expeditions were some help and a little relief to the Penists, and did keep them from killing one another to eat.[^2] \n\nIt almost goes without saying that Franklin was anxious to inculcate a spirit of forbearance towards the Vacationers—should the Penist expeditions encounter any—in the hope that their relations could be cordial.[^3] But we can also easily imagine the effect of letting loose on the island a number of reckless prisoners, who had until recently been subjected to the rigor of prison discipline and starvation, and who now with inflamed passions were undeterred in the commission of crime by the presence or knowledge of authorities.[^4]\n\nAlso, I have to admit that it seems incredible that the Vacationers had such a store of provisions that the Penists could subsist upon them until the next season’s harvest. Indeed, it seems somewhat unlikely that the Penists were any more successful at agriculture in their second year than in their first. Yet the historical record says no more on the matter, providing no other explanation for their survival.\n\n*Chapter 14 tomorrow, same time, same place.*\n\n[^1]: I was obliged therefore to shoot them. **John Batman, “Report to police magistrate Thomas Anstey,” 7 September 1829**\n[^2]: The wch was some helpe and a little Reliefe unto us and did kepe us from killeinge one of an other To eate. **George Percy, Governor, Jamestowne Colony, _A Trewe Relacyon of the pcedeings and ocurrentes of Momente wch have hapned in Virginia from the Tyme Sr Thomas Gates was Shippwrackte uppon the Bermudes Ano 1609 until my depture owtt of the Cowntry wch was in Ano Dni 1612_ 1624**\n[^3]: His Excellency has uniformly been anxious to inculcate a spirit of forbearance towards the Aborigines, in the hope that confidence and cordiality might subsist, and be conducive to their improvement, and the security of the Colonists; but it is with extreme regret he perceives a result so contrary to his hope and expectation. **George Arthur, Lieutenant-Governor of Van Diemen’s Land, Government Order of November 29, 1826**\n[^4]: We can readily imagine the effect of letting loose in the Bush a number of reckless bad men, who had been previously subjected to the rigour of prison discipline, and who now with inflamed passions were undeterred in the commission of crime by the presence of knowledge of the authorities. **James Bonwick, _The Last of the Tasmanians; or, the Black War of Van Diemen’s Land_ 1870** \N 2061 \N 9274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.2484121285906 0 \N \N f 0 \N 0 35249994 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 39866 2023-07-18 22:23:34.446 2025-03-29 22:39:47.917 Trying to ban mining operations in Paraguay Paraguay is a prosperous place to [start mining](https://stacker.news/items/105732). In the previous days, [a bill has been presented](https://silpy.congreso.gov.py/web/expediente/130831) that would read as follows: "TEMPORARILY PROHIBITING THE CREATION, CONSERVATION, STORAGE, AND COMMERCIALIZATION OF VIRTUAL ASSETS OR CRYPTOASSETS, CRYPTOCURRENCIES, AND THE INSTALLATION OF CRYPTOMINING FARMS ON PARAGUAYAN TERRITORY". The bill is a measure that legislators, as described in their motivations, found reasonable to combat the proliferation of illegal farms.\n\n## How do these illegal farms work? \n\nChoose a plot of land, build a hosting where they generally store machines of dubious origin. Next, corrupt officials from the ANDE[^1] are requested, through bribery, to connect you to the Medium Voltage system and your mining is up and running. To avoid further inconveniences, a bribery scheme kicks in where everyone is involved: businessmen, drug traffickers, mobsters, authorities from the Prosecutor's Office, Judges, and of course, the same company that provides the electricity.\n\n[^1]: The ANDE is the company that holds the total monopoly on the generation, distribution, maintenance, and commercialization of electric energy in Paraguay.\n\n## Context\n\nParaguay has experienced a heatwave, unlike anything seen in many decades, which has caused the demand for electricity to reach new historical peaks. According to the ANDE, one of the causes of the electrical failures would be the miners who connect to the electrical system. In the first 90 days of 2024, there were raids on these illegal mines where the equipment was "seized". The mentioned company directly blamed the mining sector for these mentioned failures.\n\n## The Law\n\nTaking this context into account, the law has these characteristics:\n\n- To prohibit, starting from the promulgation for 180 days, any activity related to cryptocurrencies, with an emphasis on mining farms.[^2]\n- In the first three articles, they request the prohibition of the creation, conservation, storage, and commercialization of any cryptoasset or cryptocurrency.\n\n[^2]: If you're living in Latin America, you know that those 180 days are not real. They'll ask for more time for any reason, similar to El Salvador's state of emergency that first was 90 dias but it's going more than 600 days\n\n## Is it stupid?\n\nYes. The law itself clashes directly against the National Constitution of the country since it states that you are guilty of carrying out a completely legal activity; this bill is a direct attack and has no relation whatsoever to the theft of energy or anything else.\n\n### Will the law work?\n\nSo...no. As stated, ANDE is working with those illegals, charging fees up to 3.000 USD per MW/h[^3]; the bribery is strong with this and the draft bill is not helping anyone in any way.\n\n[^3]: https://twitter.com/criptoboi/status/1775961919167635747\n\n## And how do you know that the company works with the mobsters?\n\nIn the year 2016, the task of laying fiber optic cables to all the power substations throughout the country began, or in other words, the company [knows which parts have consumption](https://twitter.com/angatupyrytau/status/1776342359803941329) peaks, how much they need, where, when... and here comes the really funny part, the same company that today mourns the losses, [gave contracts to many mining companies](https://twitter.com/angatupyrytau/status/1773132039509664013/photo/1). So, where do we stand?\n\n## What should I do?\n\nCome to Paraguay, it's just political noise and [talk to natives](https://stacker.news/items/259937) or don't. Either way, nothing has changed. And in second case, just buy bitcoins and do what's best for you. \N 18174 \N 39866 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.824748120897 0 \N \N f 0 \N 0 42876636 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 47274 2023-08-08 08:03:16.002 2025-03-29 22:39:47.918 Dealing with loneliness Homo sapiens is a social animal, we organize in groups, tribes, societies. We deal with hundreds or thousands of people thoughout our lifetime, most of them come and go, some of them stay longer. \n\nIf you're lucky enough, you find someone who's willing to stay with you for a lifetime.\nIf you're more than lucky, you are able to love.\nIf you are terribly lucky, you're loved by someone.\n\nThat's how life is supposed to work, innit?\n\nIf some of these conditions are not realized, issues arise.\nI guess that some humans out there are able to tell themselves that love is not relevant, that feelings are a trap and being cold as ice is the only solution to human misery. I can understand that, but that's not of any use nor help.\n\nHow is someone supposed to deal with loneliness then? Have you ever felt that way? If so, how have you overcome the situation?\nIs lack of love the highway to loneliness? Is the lack of someone *loving you* the shortest path to loneliness?\n\nThese are questions I'm trying to address as of now. \nI've no answers, only a huge bag of questions to throw out there, to throw to people who have felt at least once loved. I have, as far as I remember. And I considered it a commodity, something easily replaceable.\nNow things have changed and it turned out that love is not a commodity - what a discovery!\n\nSo then, when loneliness floods your life, what do you do to overcome it? \N 18178 \N 47274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.8350412488124 0 \N \N f 0 \N 0 237809395 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 19985 2023-05-03 16:35:08.752 2025-03-29 22:39:47.918 Wallet of Satoshi will pay users for onboarding newbies You can now get kick back for onboarding new users to WoS (and eventually, Lighning).\n\n1. Have a newbie download WoS: https://walletofsatoshi.com\n2. Be the first to send a few sats to the freshly baked bit coiner\n3. Receive a share of any commission WoS makes from them for the next 12 months https://nitter.net/walletofsatoshi/status/1723895763267436558?s=20 12774 \N 19985 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.72107166223847 0 \N \N f 0 \N 0 196786475 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 20615 2023-05-06 16:28:39.743 2025-03-29 22:39:47.914 If I don't have something nice to say... I learn a lot about myself here on stacker. It is where I get most of my human interaction. I am quite used to having very different world views than most people around me. I believe I have a very unique perspective. And even though we are mostly bitcoiners here, there are still many different world views, which is great. I wouldn't want everyone to be like me. That would be a strange, messed up, world. \n\nAnd yet, I still find my myself participating in discussions that I have no business engaging with. I find myself occasionally dropping in to drop a few words that I know are going to trigger other people. It's like I am looking for a fight. Why do I do this? \n\nI think in some level, I just want connection whatever it looks like. Even when it feels bad. How strange is that? Do you ever chase a confrontation? \n\nOne of my biggest lessons in life is to stay silent more often. I am basically writing this to remind myself of this lesson. I only want to spread my love. I want to share about things that are close to my heart. I want to share my unique perspective, not try and get others to change theirs. This is my goal. Can anyone relate to this? Can we really ever convince anyone of anything? Or can we really only lead by example?\n\nThank you stackers for being my online community. \n\n💚\n\n-dotd \N 21701 \N 20615 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.636344507849245 0 \N \N f 0 \N 0 196077974 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 20571 2023-05-06 08:54:44.583 2025-03-29 22:39:47.914 Bitcoin Optech Newsletter #272 \N https://bitcoinops.org/en/newsletters/2023/10/11/ 19446 \N 20571 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.7476911445759 0 \N \N f 0 \N 0 158951855 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 153225 2024-04-04 00:13:01.134 2025-03-29 22:39:47.914 Reverse Engineering TicketMaster's Rotating Barcodes (SafeTix) It really surprised me how simple their system actually is. Not "encrypted" at all, like their marketing claims. Just a bearer token and some TOTPs. \n\nDepending on the `rawToken` expiry conditions it might even be possible to set up a secondhand marketplace for ticketmaster tokens in exchange for BTC. https://conduition.io/coding/ticketmaster/ 5520 \N 153225 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.6784017891128 0 \N \N f 0 \N 0 63329538 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 20536 2023-05-06 03:29:29.867 2025-03-29 22:39:47.918 Speak Truth to Power https://video.nostr.build/203761f47ef4dc3bee323d659144b35bcf9149365ca00ec9eaf6b2f5907c5586.mp4\n\n![](https://m.stacker.news/60563)\n\nI spent WAY too much time on this already. I wanted to get it out on Halloween but I still can't get the preview to work. Also, to get it up on nostr.build instead of youtube, I had to seriously degrade the quality.\n\nI know, excuses, excuses. You don't care about no excuses. Anyway, I STILL think it's worth your time to give a click and maybe share with some nocoiner friends.\n\nhttps://video.nostr.build/203761f47ef4dc3bee323d659144b35bcf9149365ca00ec9eaf6b2f5907c5586.mp4\n\n#ominoustreasuredepartmenthalloweenmemevideos \N 694 \N 20536 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.0688678343166416 0 \N \N f 0 \N 0 43883270 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 20475 2023-05-05 21:17:00.372 2025-03-29 22:39:47.918 When someone asks how much Bitcoin I have, which answer is the more suitable? Every once in a while someone will ask me how much Bitcoin I have. There are many good reasons not to tell them how much. What is your preferred response to this question?\n\nIf someone asks how much Bitcoin I have, I tell them: the same amount you have in your retirement fund. Zero. More than I can afford, that’s why I have debt. 1%. 5%. \N 657 \N 20475 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.94953837038645 0 \N \N f 0 \N 0 81658927 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 20716 2023-05-07 04:23:30.494 2025-03-29 22:39:47.914 Unpopular opinion: Bitcoin is potentially being co-opted by the state Bitcoin is to be a peer to peer digital cash, a kind of credit insurance against the state, independent of intermediaries, impossible or at least unlikely to corrupt, impossible to inflate, and immune to attack even from within. It is supposed to shun intermediaries and offer a more secure, peer-to-peer network that is safer than a bank (in many regards). And in many ways most would agree it has been incredibly successful. \n\nHowever... in my view it is also being shoe-horned, captured, and controlled by the state in extremely unhealthy ways. The vast majority of on and off-ramps are fully KYC, Coinjoins can 'taint' coins in such a way that exchanges potentially won't 'accept' them, and the general level of education of the public about bitcoin, or even about money in general, is quite low. Media stories left and right only scratch the surface of what bitcoin is, what it's supposed to be or frankly about how it works. CNBC reports the price, the NYPost covers 'bitcoin atm scammers' (as if ATMs themselves are bad?) and all over the news bitcoin 'crashes' when the price dips to... 58k a coin. \n\nFor clarity:\nWhere was the price a year ago? Crickets from the media.\nHow does bitcoin actually work, and what is it trying to solve? (Again crickets from the media).\nAnd finally, to the extent that scams 'utilize' bitcoin, as opposed to gift cards, bank wires, emails, phishing schemes text messages... is bitcoin actually a scam? \n\nStill large parts of educated/1st world populations know nothing about bitcoin or its potential to change the world and think that it is a scam. It's a total failure of risk management. The narrative about bitcoin, in my opinion, and its treatment by governments is co-opting its peer-to-peer and medium of exchange qualities in order to soften its impact, generally confuse the public, and constrain the impact bitcoin is having on world economies. In other words, allowing governments to continue deficit spending and hide the costs of inflation while being fiscally irresponsible.\n\nThe bitcoin I and many others would like to see involves medium of exchange, anonymous cash payments all over the world, better education as to how and why bitcoin is 'better money', and a higher educational level or 'risk management' skill-set when it comes to investing or saving money:\n\nFor example, it is logical that: \n\n1) the vast majority of 'crypto' is completely worthless.\n\n2) Memecoins are little more than gambling and involve *zero* self-sovereignty and sound-money principles and\n\n3) Non-proof of work coins and 'tokens' are overwhelmingly worthless. Let's just leave it at that.\n\nAnd yet Coinbase still sells bitcoin right next to memecoins and glorified *unregistered securites*... that people leave on exchanges. That people 'trade' without any on-chain footprint whatsoever. That customers typically never self-custody (how do you self-custody a memecoin?) and that use USDT for settling trades. \n\n- And USDT isn't even even 'crypto it's a centralized company-token allowed to exist by the US government with centralized servers that keep track of dollar-tokens that people buy with failing 3rd-world currency. That 'the company' makes billions off of 'risk-free' interest when they buy US bonds and treasuries... Paul Ryan is writing about it in the WSJ. Isn't this a governmental conflict of interest - ?\n\nIn other words, with regards to Bitcoin...\nWhere is the peer to peer exchange? Where is the commerce (legal or otherwise) using Bitcoin? Where are the coffee shops, the stores, the vendors that accept BTC directly? When you ask your uber driver 'hey do you take lightning' as a tip, what do they say? Or do they look like a deer in the headlights? Except for Stacker News and Nostr (both amazing but relatively small) where is the adoption of lightning? And what would government say should bitcoin, eventually, take on a greater role as a 'medium of exchange'?\n\nBitcoin's overwhelming treatment by the state and by governments (if they don't outright *disdain* it like the EU Central Bank) is of a compartmentalized, shoe-horned, controlled, toy-like speculative digital commodity. That you pay taxes on when used to purchase a cup of coffee. That isn't a 'medium of exchange'. That isn't private, that is thoroughly surveilled by exchanges, lest you try to sell bitcoin that has been coinjoined for privacy or is otherwise "tainted"... it's treated like a contained, speculative object for the exchanges and governments to make money with... or that 'the state' ultimately controls. \n\nIt's like you're damned if you do and damned if you don't: spend bitcoin without coinjoining? Dox your entire stack to a merchant. Coinjoin some to have forward privacy? Well maybe the exchange won't accept the remaining utxo because it's 'tainted' (even though coinjoins are THE BEST single privacy tool/probably still necessary for using bitcoin privately). Payjoins? Lightning channels? Atomic swaps? TOR-based utxo swaps? All useful for forward-looking privacy but all requiring education and reasonable sophistication to use - which *most* exchanges, although there are rare exceptions, do not really encourage. \n\nAnd finally - you've purchased a cup of coffee where you live, in lightning. How do you calculate your 'capital gains' taxes for that cup? Are there even apps that allow you to do this, without being associated with ****coins or doxing your entire stack to some sketchy company? And how does the merchant handle the Bitcoin legally, when they then sell it and the price has gone up - or down - who knows? Can congress tell you I think probably not.\n\nBitcoin is a wonderful asset and I feel privileged to be around at this time with so many who care about it... but it's important to be honest about the current State of the State and the current situation and treatment of bitcoin by exchanges and regulators. At some point Bitcoin, in my opinion, will have to take the training wheels off and be money 'by and for the people', not just a toy for exchanges which is how it's being treated right now.\n\nSometimes I see posts on Reddit about exchange "withdrawal fees" (aka Binance) of being 70$ plus... leading to customers lamenting as to 'how expensive' Bitcoin is. 70$. They have no idea. And I just shake my head it's impossible to educate everyone and it's not a great situation. When does the revolution begin.\nThank you \N 822 \N 20716 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.11689365739325 0 \N \N f 0 \N 0 72312296 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 21337 2023-05-09 14:56:41.094 2025-03-29 22:39:47.914 Commercial Real Estate Threatens "Hundreds of Banks" > We're starting to see glitches in the matrix; New York Community Bank just went through a near-death experience over its garbage portfolio of commercial real estate loans, dropping almost 80% before it was bailed out by vulture investors while the mega-banks hover like mega-vultures.\n> \n> More will come. Potentially a lot more: a recent study from the National Bureau of Economic Research estimated that up to ***385 American banks could fail over commercial real estate loans alone***.\n\nI'm still waiting for the shoe to drop on residential real estate. That hasn't seemed to really start yet. This time last year we had a really hard time finding a home to rent in our neighborhood. They'd get snatched up in days. Now there are a handful of homes on my walks alone that have had 'for lease' signs up for months, many are also for sale, and the overbuilding continues ... There are more cranes (I counted 8 that I could see the other morning) over Austin's downtown than there ever were in the last couple of years. https://www.profstonge.com/p/commercial-real-estate-threatens 13574 \N 21337 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.157496661639485 0 \N \N f 0 \N 0 170732202 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 20905 2023-05-08 00:38:58.739 2025-03-29 22:39:47.914 The Case Against Orange-Pilling Congratulations, Bitcoiners!\nWe are firmly in a Then-They-Fight-You stage!\n\nNow it's time to **think harder about who and why you are orange-pilling**. We all know how Bitcoin fixes almost anything :). We all know that it's a superior monetary asset. However, while Bitcoin is for anyone it doesn't have to be for everyone. And if you thought the hyper-Bitcoinization can happen without any struggle and pushback you are simply mistaken. \n\nWhat do you think the separation of money and state meant? **People will get hurt**. Financially and worse. People are already not having fun getting constantly poorer. But not all of them are ready to be unplugged. Do you really need for the bankers and the world elite who have all the power and all the money already to understand Bitcoin right now? To get in at this adoption level? If the transfer of money happens to Bitcoin where do you think the money will come from? And when you for the hundredth time try to orange pill Elon Musk or Jamie Dimon or Peter Schiff do you really care about them? Or you just want them to pump your bag? There is nothing wrong with NGU, but it's time to think about the long game. \n\nIf Bitcoin is hope then **give hope to your people**. Give hope to your community. To your friends. To your family. To your loved ones. \n\nThe celebrities will be fine. \n\nAnd also think again about your operation security. Even in your normie friend group. Are you still "the crypto guy" for them? What do you think will happen when Bitcoin hits a million dollars? How about x10 again from there? How do you think they will look at you then? Sure, it would feel nice to be finally right. But are you willing to compromise your security for that? There will be a lot of anger. Don't paint a target on yourself. \n\nChill out. Stack sats. Defend Bitcoin. And it will prevail. \N 8459 \N 20905 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.9977710914786 0 \N \N f 0 \N 0 173276902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 22302 2023-05-12 10:59:26.61 2025-03-29 22:39:47.914 Consumer prices rose 3.5% from a year ago in March, more than expected Looking more and more likely that we won’t be getting near the cuts we thought if any at this point. 🙃 https://www.cnbc.com/2024/04/10/cpi-inflation-march-2024-consumer-prices-rose-3point5percent-from-a-year-ago-in-march.html 11395 \N 22302 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.44489328055462 0 \N \N f 0 \N 0 220863144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 23119 2023-05-15 17:08:40.223 2025-03-29 22:39:47.915 LNbits development bounties for Nostr Wallet Connect LNbits has published two bounties for developers to claim for the development of two Nostr Wallet Connect features for LNbits.\n\nThere are 1,500,000 sats waiting to be award to anyone who builds these features for LNbits.\n\nLNbits is looking for a developer to build a NWC wallet service extension and a NWC funding source for LNbits. These two features will allow people to user their own LNbits app running on a home node, VPS, SaaS or anywhere else to interoperate with any other apps that use NWC.\n\n**Find out more about the bounties here**\n\n[Bounty for developing a Nostr Wallet Connect Wallet Service Extension](https://njump.me/naddr1qvzqqqr4gupzqljn39ud4gy4md5cm52vxwj4wcqae6q807g3lzgpm2f4rwjes74kqqxnzde3xsmrgvpkxq6nvvfht0avww)\n\n[Bounty for developing a Nostr Wallet Connect Funding Source for LNbits](https://njump.me/naddr1qvzqqqr4gupzqljn39ud4gy4md5cm52vxwj4wcqae6q807g3lzgpm2f4rwjes74kqqxnzdejxqcrqdp58qunsdf3z74727)\n\n![](https://m.stacker.news/38050) \N 14449 \N 23119 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.03086899532698 0 \N \N f 0 \N 0 234868403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 22934 2023-05-15 05:04:52.296 2025-03-29 22:39:47.915 There is no such thing as a dust UTXO Say you have a 3000 sat UTXO. If you were to try to combine it with another UTXO (make a P2PKH transaction with 2 inputs and 1 output) it would be [around 340 vBytes](https://bitcoinops.org/en/tools/calc-size/). At a feerate of 20 sats per vByte, this transaction would cost 6800 sats to send. Therefore the UTXO is dust and of questionable value.\n\nYou'd think. But that doesn't take into account the gamble most of us in Bitcoin are making that bitcoin's value relative to US dollars will increase over time.\n\nEXAMPLE: IF a Bitcoin miner needs to pay expenses today in US dollars AND they are willing to accept those dollars from me instead of btc to pay the fees for my transaction AND I expect the value of bitcoin to increase relative to the US dollar THEN it makes to pay them $5 (roughly 6800 sats) in US dollars and get my dust UTXO combined with another larger UTXO.\n\nIf I expect my 3000 sat UTXO to be worth more than the fiat value it costs to mine it and a miner will accept a fiat payment to mine it, then it isn't dust.\n\nPut generally, as long as the following are true, or expected to be true:\n\n1. Bitcoin miners have costs today that are paid in fiat currencies.\n\n2. Bitcoin miners accept payment in fiat to accelerate bitcoin transactions (out of band payments).\n\n3. Bitcoin is expected to increase in value relative to fiat currencies over time.\n\nThere is no such thing as a dust UTXO. \N 19303 \N 22934 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.25943767740257 0 \N \N f 0 \N 0 9629396 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 22960 2023-05-15 07:54:02.508 2025-03-29 22:39:47.915 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats. Bonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/327711) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 15148 \N 22960 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.6360422425491 0 \N \N f 0 \N 0 25231250 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 23021 2023-05-15 12:51:33.094 2025-03-29 22:39:47.915 First time in human history that money is mostly in the hands of the pleb. This is the first time in human history that money is mostly in the hands of individuals and not gov/corporations/elite/funds.\n\n![image](https://m.stacker.news/29233) \N 20911 \N 23021 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.8229129132296 0 \N \N f 0 \N 0 59514093 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 23240 2023-05-16 00:21:52.79 2025-03-29 22:39:47.916 Will Donald Trump still attend bitcoin conference Nashville? If he does still attend, will the security be crazy? Of course. What types of effects will this have on the rest of the conference? \N 19966 \N 23240 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.8686867754354 0 \N \N f 0 \N 0 171437655 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2494 2022-10-13 22:21:31.405 2025-03-29 22:39:47.916 What’s something new that you’re learning? UTXO consolidation…\n\nPulling up the big boy pants \N 2609 \N 2494 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.0719939723547 0 \N \N f 0 \N 0 204391856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 12393 2023-03-14 09:31:01.657 2025-03-29 22:39:47.915 The best articles debunking Bitcoin FUD In case you have friends newbies and nocoiners asking all kind of FUD questions about Bitcoin and you do not have at hand the right information, here is a collection of articles with the right answers, by categories with each main FUD\n\n### Energy\nhttps://endthefud.org/energy\n\n- “Bitcoin wastes energy”\n- “Bitcoin might exhaust all energy available to people”\n- “Uses more energy than Visa per transaction”\n- “Uses dirty, non-renewable energy”\n- “Bitcoin is bad for Climate Change”\n- "Bitcoin vs. Gold mining"\n- “Bitcoin wastes water”\n\n### Justice\nhttps://endthefud.org/justice\n\n- “Bitcon is a Ponzi / pyramid scheme”\n- “Bitcoin was not fairly distributed”\n- “Bitcoin increases inequality”\n\n### Bitcoin as Money\nhttps://endthefud.org/money\n\n- “Too Volatile”\n- “Bitcoin is a bad medium-of-exchange”\n- “No intrinsic value”, “Bitcoin is a bubble”\n- “Bitcoin isn’t scalable”, “Can’t process as many payments as Visa”\n- “Bitcoin’s price is artificially manipulated”\n\n![](https://m.stacker.news/57479)\n\n### Inflation\nhttps://endthefud.org/inflation\n\n- “Some inflation is good for the economy”\n- “Without inflation there won’t be enough money for everybody”\n\n### PoW vs PoS\n\n![](https://m.stacker.news/57482)\n\n### Control\nhttps://endthefud.org/control\n\n- “Miners control Bitcoin”\n- “Blockstream controls Bitcoin”\n- Decentralization\n\n![](https://m.stacker.news/57480)\n\n### Governments\nhttps://endthefud.org/governments\n\n- “Governments can ban Bitcoin”\n- “Governments can attack the Bitcoin network”\n- “Bitcoin is not backed by anything”\n- “Bitcoin is mined/controlled by China”\n- “Governments will create their own crypto coin and force it on people”\n- “Governments decide what counts as money”\n\n### Shitcoins\nhttps://endthefud.org/altcoins\n\n- “Coin X is faster than Bitcoin”\n- “Coin X is more fairly distributed than Bitcoin”\n- “Bitcoin is MySpace”\n- “Bitcoin developers can increase its inflation”\n- “Bitcoin is not scarce because it can be cloned”\n\n![](https://m.stacker.news/57481)\n\n### New Technology\nhttps://endthefud.org/tech\n\n- “Quantum computing breaks Bitcoin” \N 18188 \N 12393 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.53630357926436 0 \N \N f 0 \N 0 87450866 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 10174 2023-02-23 19:08:40.237 2025-03-29 22:39:47.916 What are Runes? I’ve seen a bunch of discussion on Twitter mentioning Runes (I think in the context of Ordinals), but I have basically zero idea what they are.\n\nCan someone share an ELI5 explanation of what Runes are and their relationship to Ordinals (if any)? \N 8004 \N 10174 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.8651282279667 0 \N \N f 0 \N 0 233865992 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2500 2022-10-13 23:54:16.956 2025-03-29 22:39:47.916 Book Review | Catcher in the Rye - Better the second go around as an adult So anyways, that killed me. Anyways, it didn’t really bother me that I didn’t get it when I first read it in high school, it really didn’t. Just a whiny kid complaining about a bunch of phonies. So what?\n\nBut I’m working on writing my next novel and I’m thinking of it being a Rites of Passage Young Adult novel. All the adults in the world are just pretending. I’m really smooth I get it. They don’t get it, but I do. I really do.\n\nSo to get back in the mindset of a teenager that already knows everything, it was refreshing. You see, either everyone you talk to doesn’t know anything, or they only know what you already know so what’s the point of listening to them? But they should listen to me because I’ve got questions about things I don’t understand. Like the ducks in Central Park. Where do they go when the lake freezes over? What do @k00b or @ek or @sn really do with the fees they collect from zaps? I wish someone would listen and answer my questions. “Look at the footer” they’ll say. “The FAQ has the answers to the questions you probably have.”\n\nBut what about me and my questions? What if I know I agreed to only pay $5 to have sex with a prostitute, but her handler is asking for $10 anyways? I didn’t even sleep with her for Christ’s sakes. Not that I didn’t want to, I didn’t, but I just wasn’t in the mood. I couldn’t sleep is all. Anyways, my younger brother Allie is dead now.\n\nWhat am I rambling on for anyways? You probably already lost interest. Everyone does. No one listens to me, except my little sister Phoebe. Our last day together she went on the carousel. I could stare at her for hours. Around and around. Like reading everything @DesertDave or @siggy47 has to say. Around and around. It was like she could stay a kid forever. God, I wish you could’ve been there. To see what they have to say in Alter_Native ~alter_native stacker news territory or BooksAndArticles ~BooksAndArticles stacker news territory\n\nIt’s a subset of a subset. Not just Bitcoiners with low time preference. But with ones who have something to say, and people who will zap if they listened.\n\nI hope you listen to me and reread Catcher in the Rye too. It killed me. \N 19087 \N 2500 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.0182018958516 0 \N \N f 0 \N 0 108383094 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 11023 2023-02-28 13:58:20.821 2025-03-29 22:39:47.917 Teams for Zaprite - New Invoicing Feature Zaprite - https://zaprite.com/\n![](https://blog.zaprite.com/wp-content/uploads/2024/03/zaprite-teams-user-invite.png)\n\nFrom the [blog post](https://blog.zaprite.com/teams-for-zaprite/):\n- We’re excited to announce Teams for Zaprite allowing you to collaborate with your colleagues to manage bitcoin (and fiat) payments as well as all necessary reporting.\n- Running a business on a bitcoin standard (or otherwise) is a team effort, and it’s our goal to model Zaprite to match your team’s workflows and responsibilities. \n- With the addition of Teams, companies big and small can collaborate together on bitcoin payments without sacrificing usability and interrupting critical team workflows. \n- While adding team members is currently free, we will begin charging for Teams in May 2024, at a cost of $5/month for each incremental user (20% discount on an annual plan). This grace period allows us time to gather feedback and improve the Teams feature before any additional charges apply.\n\nWill Cole on [Nostr](https://satellite.earth/thread/note1dh0esgcpdhx6fctg9r27umy5stzuulv083aqz3uyqaw3lj86kcesjez7kt) & [X](https://twitter.com/willcole/status/1763606565171442124):\n> We just launched teams for Zaprite, allowing colleagues to collaborate on their bitcoin (and fiat) payments, reporting etc… This is the third time I’ve built teams functionality for a web app (Stack Overflow and Unchained prior), and by far the earliest in a product’s lifecycle. It’s a testament to John and Tom’s forward looking architectural decisions making a feature that is usually a slog a breeze. I love this team.\n\nMarty Bent's [testimonial on X](https://twitter.com/MartyBent/status/1763569706764493099):\n> I’ve been waiting for this feature. This enables me to add my bookkeeper to my Zaprite account so he can handle all of our invoicing without me having to do anything manually. If you’re a business that sends out a lot of invoices, this is the invoicing software for you...\n\n-------\n### Follow the Z team...\nX/Twitter - https://x.com/ZapriteApp/status/1763566725906280959?s=20\nZaprite on Nostr - `npub1cwneqlnjgs3rdtk97c2ffy2df9dm5zycgj3dsg8c3z00hchxjmfqtvraju` https://blog.zaprite.com/teams-for-zaprite/ 1738 \N 11023 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.665019318592 0 \N \N f 0 \N 0 110379975 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 12698 2023-03-16 15:12:33.239 2025-03-29 22:39:47.915 This Day in Stacker News: July 17th *Yesterday's edition https://stacker.news/items/610267/r/Undisciplined*\n\n* * -\n### July 17, 2023 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[Five Economic Terms You Should Know When Learning About Bitcoin](https://stacker.news/items/210219/r/Undisciplined)**\n\n![economics](https://imgprxy.stacker.news/N5oemexK-8pmqb4-avH0_zZlynIjmjX-GEicMn54Yk0/rs:fit:600:500:0/g:no/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy8yLzIwL0Vjb25vbWljcy5qcGc)\n\n*16.5k sats \\ 19 comments \\ @siggy47 \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/210392/r/Undisciplined?commentId=210400**\n\n#### Excerpt\n> I'm not 100 percent sure this will interest you, but I stumbled upon this podcast episode yesterday. I am pretty ignorant about China, but this guest gave me an incredible lesson about Chinese culture and politics. Bitcoin is discussed, but there's s […]\n\n*571 sats \\ 3 replies \\ @siggy47*\n\nFrom **[Any research on "Bitcoin Culture" in China?](https://stacker.news/items/210392/r/Undisciplined)** by @nullcount in ~bitcoin\n\n----\n\n### 🏆 `TOP STACKER`\n\n2nd place **@nerd2ninja** (1st hiding, almost certainly @siggy47)\n\n*1038 stacked \\ 3620 spent \\ 0 posts \\ 20 comments \\ 0 referrals*\n\n----\n\n### 🗺️ `TOP TERRITORY`\n\n**~bitcoin**\n> everything bitcoin related\n\nfounded by @k00b on Tue May 02 2023\n\n*39.4k stacked \\ 0 revenue \\ 49.5k spent \\ 99 posts \\ 308 comments*\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n### July 17, 2022 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[Ask SN: How to use Bitcoin if it gets banned](https://stacker.news/items/46266/r/Undisciplined)**\n\n#### Excerpt\n> How should somepony use Bitcoin if its gets entirely banned?\nIs LN practicable anymore then? i mean Smartphones and PC's would get hacked and Wallets drained (Canada)?\n\n*199 sats \\ 31 comments \\ @pony \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/46223/r/Undisciplined?commentId=46329**\n\n\n#### Excerpt\n> My paper got accepted for a conference!\n\n*362 sats \\ 1 reply \\ @random_*\n\nFrom **[Daily discussion thread](https://stacker.news/items/46223/r/Undisciplined)** by @saloon in ~null\n\n----\n\n### 🏆 `TOP STACKER`\n\n1st place **@k00b**\n\n*15.5k stacked \\ 15.1k spent \\ 0 posts \\ 9 comments \\ 0 referrals*\n\n----\n\n### 🗺️ `TOP TERRITORY`\n\n**~bitcoin**\n> everything bitcoin related\n\nfounded by @k00b on Tue May 02 2023\n\n*20.4k stacked \\ 0 revenue \\ 29k spent \\ 66 posts \\ 233 comments*\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n### July 17, 2021 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[How the U.S. became the world's new bitcoin mining hub](https://stacker.news/items/381/r/Undisciplined)**\n\nLink to https://www.cnbc.com/2021/07/17/bitcoin-miners-moving-to-us-carbon-footprint.html\n\n*4 sats \\ 2 comments \\ @shawnyeager \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/373/r/Undisciplined?commentId=375**\n\n#### Excerpt\n> The main point: you commit outbound liquidity and you get inbound liquidity from someone in your ring. It's a nice hack on liquidity trying to solve the same problem dual-funded channels or Pool solves.\n\n*1 sat \\ 1 reply \\ @sha256*\n\nFrom **[lightning liquidity via a ring of fire introduction service](https://stacker.news/items/373/r/Undisciplined)** by @el_zonte in ~bitcoin\n\n----\n\n### 🏆 `TOP STACKER`\n\nNo top stacker\n\n----\n\n### 🗺️ `TOP TERRITORY`\n\n**~bitcoin**\n> everything bitcoin related\n\nfounded by @k00b on Tue May 02 2023\n\n*12 stacked \\ 0 revenue \\ 31 spent \\ 4 posts \\ 7 comments* \N 18528 \N 12698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.65350977244685 0 \N \N f 0 \N 0 100564573 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 12886 2023-03-18 21:28:07.976 2025-03-29 22:39:47.915 I'm a class 2022 bitcoiner, "born" at the start of the bear market. And you? I studied the Bitcoin protocol carefully after the Terra/Luna and Celsius collapses in 2022.\nThat's when I was fully orange-pilled.\nAfter two full years of bear market, pre-halving recovery, and the halving, I feel like a veteran...however, I understand that I'm not.\n\nTo what era do you belong? \N 1617 \N 12886 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.3791372764626 0 \N \N f 0 \N 0 77973489 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 12952 2023-03-19 20:30:24.612 2025-03-29 22:39:47.915 Music Territorys - Feel Good Friday! It's Finally here Stackers!\n\nIt's Friday!\n\nWe're about to kick off our weekends with some feel good tracks.\n\nLet's get the party started. Bring me those Feel Good tracks.\n\nTalk Music. Share Tracks. Zap Sats.\n\nSash!\n\nhttps://youtu.be/qz2bOXLEvuE?si=FOnySXZbgWe2pypv\n \N 19637 \N 12952 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.440822825686 0 \N \N f 0 \N 0 100784551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3723 2022-11-09 05:50:30.223 2025-03-29 22:39:47.915 Let's talk bounties: what's an appropriate amount? I'd like to include bounties more into my posts, and would therefore like to know what amount of sats would be "sufficiently enticing" to get people to work out specific prompts, much like the one I've posted in the ~history territory yesterday.\n\nOf course, the respective bounty should somewhat reflect the amount of effort a given prompt asks for, and thus, I'd like to hear about a specific *range*, instead of a fixed amount: where do you set the minimum, what's a solid middle ground and where do you set the limit?\n\n\n\n \N 644 \N 3723 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.9607204822037 0 \N \N f 0 \N 0 215505686 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5261 2022-12-10 15:06:59.341 2025-03-29 22:39:47.915 Why St Patrick's Day is Proof that the End of the World is Nigh Every St Patrick's Day, as the world loses its mind and forgets that to be Irish is to be blighted, blasted, woe-bitten and many other miserable fates beside, I like to take with me a small pitcher of whiskey and draw out from beneath my pillow that worthy and marvelous work known as [An Béal Bocht](https://en.wikipedia.org/wiki/An_B%C3%A9al_Bocht) which has otherwise been translated and known amongst the heathen as [The Poor Mouth](https://archive.org/details/poormouth0000flan/).\n\nNow, I will tell you, I don't read this worthy text for edification or because it is even enjoyable. And sure as I don't read it for the humorous qualities it lacks. I don't read it to remind myself of my heritage, having that distinctly ambiguous pleasure--due to somewhere around half the world's population--of claiming Gaelic heritage. I hardly read the book to read it, either. Nor even do I take its small, smudged pages into my hands to have an excuse to drink an extra glass of whiskey on this day of my heritage.\n\nNo, you blessed people. The reason I glance at this tome is the great and wonderful truth contained between what is its torn cover and its creased back page. To wit: I read it to remind myself that to be Irish is to be cursed.\n\nTherefore, and as a civic service to all you fools who think it's a good idea to gird your loins in green and drink beer that tastes like it has been burnt over a fire by some old man who forgot what he was doing, I am taking here the time to bless you all with a little bit of the wisdom contained within this book. May it serve as a warning.\n\nFirst, it must be conceded that no true Irishman ever admits to having any part of goodness or sunshine in this life.\n\n> --And look here! Martin, isn't it the bad sign that the ducks are in the nettles? Horror and misfortune will come on the world tonight; the evil thing and sea-cat will be a-foot in the darkness and, if 'tis true fo rme, no good destiny is ever in store for either of us again.\n\nSecond, it must be said that no one of this ancestry ever spoke in any manner but which was the most clear and to the point:\n\n> I was very young at the time I was born and had not aged even a single day.\n\nThird, to be Irish is to be familiar with crudish and brutish things.\n\n> In my youth we always had a bad smell in our house. Sometimes it was so bad that I asked my mother to send me to school, even though I could not walk correctly. Passers-by niether stopped nor even walked even in the vicinity of our house but raced past the door and never ceased until they were half a mile from the bad smell. There was another house two hundred yards down the road from us and one day when our smell was extremely bad the folks there cleared out, went to America and never returned. It was stated that they told people in that place that Ireland was a fine country but that the air was too strong there. Alas! there was never any air in our house.\n\n> Often in the middle of the night it seemed ot us that we could never see the morning alive. My mother and the Old-Fellow often arose and went outside to walk ten miles in the rain trying to escape from the stench.\n\nFourth, you will find naught but misery in your attempts to evade the misery that is natural to our people. For\n\n> There was never a night without a downpour upon us.\n\nAnd therefore the natural attitude and pose of any of that island is this\n\n> I was reclining on the rushes in the end of the house considering the ill-luck and evil that had befallen the Gaels (and would always abide with them).\n\nAnd finally, should things ever turn to good luck or anything benevolent, know that it is a true sign of the end times and much wrose torment to come. And I tell you the truth that there can be no worse sign for the future of humanity, no evil fate more securely assigned than when people, even those who are not cursed to be Irish at all, willingly take up the mantle of ashes and claim to be Irish!\n\n> --Little son, said he, I don't think that the coming night's rain will drench anyone because the end of the world will arrive before that very night. The signs are there in plenty through the firmament. Today I saw the first ray of sunshine ever to come to Corkadoragha, an unworldly shining a hundred times more venomous than the fire and it glaring down from the skies upon me and coming with a needle's sharpness at my eyes. I also saw a breeze going across the grass of a field adn returning when it reached the other side. I heard a crow screeching in the field with a pig's voice, a blackbird bellowing and a bull whistling. I must say that these frightening things don't predict good nes. Bad and all as they were, I heard another thing that put a hell of a fright in my heart...\n> --All that you say is wonderful, loving fellow, said I honestly, and a little account of that other sign would be nice.\n> The Old-Fellow was silent for a while and when he withdrew from that taciturnity, he did not produce speech but a hoarse whipsering into my ear.\n> --I was coming home today from Ventry, said he, and I noticed a strange, elegant, well-dressed gentleman coming towards me along the road. Since I'm a well-mannered Gael, into the ditch with me so as to leave all the road to the gentleman and not have me there before him, putrifying the public road. But alas! there's no explaining the world's wonders! When he came as far as me and i standing there humbly in the dung and filth of the bottom of the ditch, what would you say but didn't he stop and, looking fondly at me, *didn't he speak to me!*\n> Amazed and terrified, I exhaled all the air in my lungs. I was then dumb with terror for a little while.\n> --But...said the Old-Fellow, laying a trembling hand upon my person, dumb also but making the utmost endeavour to regain his power of speech, but...wait! *He spoke to me in Gaelic!*\n\nMay the Lord be with you. \N 17237 \N 5261 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.23812536455661 0 \N \N f 0 \N 0 179129119 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3734 2022-11-09 13:18:53.346 2025-03-29 22:39:47.915 How to use lnaddress.com to receive zaps directly to your lightning node Im my previous post, I explained how to use your getalby ln address to receive zaps directly to your LND node. Similarly, there is an additional option that one can utilize to receive zaps directly to your lightning node: lnaddress.com.\n\nLnaddress.com is a federated lightning address server that you can use to create a custom ln address. Unlike using getalby, lnaddress.com can be used with any lightning implementation (not just LND). For the purposes of this write-up, I am going to use LNBits to connect an lnaddress.com lightning address with my node. And as will be the case with most of my write-ups, I am going to be using @npub126ntw5mnermmj0znhjhgdk8lh2af72sm8qfzq48umdlnhaj9kuns3le9ll OS, so users of that OS will likely find this write-up most useful, but I'm sure people using other node interfaces can infer how to complete this set up as well.\n\nWith that said, let's dive into the step-by-step on how to create your own custom ln address with lnaddress.com and set it up to receive zaps directly to your lightning node:\n\n*Users should have lnbits set up with their lightning node before proceeding.\n\n1. Go to lnaddress.com. Input your desired username, select 'Node Backend Type' = LNBits, and if necessary check the box 'This is a new lightning address'. Keep this page open in one tab as we will be returning to it to input info.\n\n2. From your Start9 OS services page, go to your LNBits service. Open the 'Properties' page, and in a new tab, open the (Tor) Superuser Account. Page will look like this:\n\nhttp://usri6wfilambri77iwnapyyme43la4v2hgecoismowluriekrhuvxnid.onion/content/images/2023/10/pic1-1.png\n\nFrom this LNbits page, you can choose to 'add a new wallet' and use that wallet instead of your superuser account. That is up to you but the steps will be the same.\n\n3. Now, we need to grab the info needed for the 'Host Protocol + IP or Domain + Port' field on the lnaddress.com page. On the lnbits page, expand the 'Api Docs' field, and the 'Get Wallet Details' field found on the right hand side menu. In this 'Get Wallet Details' section, you will want to copy some of the URL found in the 'curl example' section. Copy 'http://xxxxxx.onion' (don't copy any more!), and paste this into the 'Host Protocol + IP or Domain + Port' field found on the lnaddress.com page.\n\nhttp://usri6wfilambri77iwnapyyme43la4v2hgecoismowluriekrhuvxnid.onion/content/images/2023/10/pic2-1.png\n\n4. Next, we need to grab the key for your lnbits wallet. From the lnbits page, expand the API docs section found on the right hand side menu. Copy the 'Invoice/read key' (make sure to use the invoice/read key and not your Admin key), and paste it into the key field found on the lnaddress.com page. Upon pasting in that last piece of info, click 'submit' at the bottom of the page.\n\n5. If all info was input correctly, your connection will be successful. If successful, you will be brought to a page that looks like this:\n\nhttp://usri6wfilambri77iwnapyyme43la4v2hgecoismowluriekrhuvxnid.onion/content/images/2023/10/pic3-1.png\n\nYou will want to save this secret PIN in case you need to update info in your ln address. You'll also find a test lightning invoice of 1 sat. Using a wallet not connected to the node we connected to our new ln address, you can test the ln address out by paying the 1 sat test invoice. \n\nUsers of Start9 OS might find the following info particularly useful: This ln address via lnaddress.com comes with a couple advantages aside from self-custodial zap receiving:\n\n- One, you can have a custom ln address username to go with your nym or nostr username. Users of Start9 may be familiar with the ln address one can generate in the btcpay server service. This ln address is not customizable.\n- Two, if you are running a tor only lightning node, you will be able to receive zaps from both tor and clear net lightning nodes. Users of Start9 may be familiar with the ln address one can generate in the btcpay server service. This ln address can only receive zaps from other tor nodes and can't receive zaps from clear net nodes.\n\nThat is it, you should now be all set up with your new ln address hosted on lnaddress.com, and you should be all ready to receive zaps or lightning payments of any kind :) \N 18321 \N 3734 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.34517558264717 0 \N \N f 0 \N 0 216191230 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2488 2022-10-13 22:05:02.18 2025-03-29 22:39:47.915 Bitcoiners Movie? I don't want to waste everybody's time, so I'll delete this post if this has already been discussed to death. I just watched this movie about pleblab:\n\nhttps://youtu.be/FcaQ-EifEJY\n\nSince @Car is basically the star, has this been discussed on SN? I did a search but didn't find much. \n\nFor the record, I really enjoyed it. I'm even more optimistic about SN than I was before. \n\nI know there was some discussion before its release.\n\n@Car is a hero. More @k00b would have been great.\n\n \N 21771 \N 2488 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.2381668680186 0 \N \N f 0 \N 0 85854976 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2509 2022-10-14 10:13:51.339 2025-03-29 22:39:47.915 What happened to the bitcoin talk forum? Why did the btc talk forum stop being the main hub for all things btc? i mean, i can see it's still alive and people are posting, but it seems the OGs left long ago and the action seems to now be on nostr\n\nis this just because forums lost their popularity over a decade ago, a natural migration, or something else?\n\n \N 21672 \N 2509 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.5084027811558 0 \N \N f 0 \N 0 116492634 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2621 2022-10-17 10:25:56.467 2025-03-29 22:39:47.915 Kraken Ordered to Turn Over User Information to the IRS \N https://www.bloomberg.com/news/articles/2023-06-30/kraken-ordered-to-turn-over-its-users-information-to-the-irs 14168 \N 2621 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9646408971526 0 \N \N f 0 \N 0 50925785 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2487 2022-10-13 21:49:04.657 2025-03-29 22:39:47.915 My Story I have been inspired by other stackers mainly https://stacker.news/DarthCoin and https://stacker.news/Natalia to share my story.\n\nThis is difficult to write out but I will give it a shot. I lived very similar to how Natalia lived with her Nomad lifestyle. It was roughly 10 years ago and what she says is mostly true you get used to get and the excitement wears off however it is my favourite type of lifestyle.\n\nI travelled all over Southeast Asia mainly Thailand I even became a Scuba dive instructor over there. I had a blast fell in love fell out of love and felt like my true authentic self.\n\nHowever it didn’t last forever and I ran out of cash had to move back to my home country. Unfortunately the person I was overseas didn’t make it back with me and I slowly returned to who was back home. This broke me and I had my first mental breakdown. I dropped down to 45kg and moved to live with my Aunt and Uncle who nursed me back to good health.\n\nSince that time I had a few more mental breakdowns but I do feel better and stronger for them. I worked a wide range of jobs including call centres, chef, dry cleaners, carpenter, plumber, landscaper, hospitality front and back of house so I became quite handy over the years. \n\nOnly just now do I feel like the person I was overseas. I finally managed to bring my authentic self out. This is just a brief overview of who I am and what has happened to me and I truly believe I am about to start on the greatest adventure of my life.\n\nBased on the reaction of my past post I will try and write and post more to give everyone an update on how my life is going. Thank-you all for reading. \n\nLove from Oialt. \N 12188 \N 2487 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9847744346727 0 \N \N f 0 \N 0 43245313 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2757 2022-10-19 18:53:23.846 2025-03-29 22:39:47.915 Crowdsourcing ideas - what are good ways to spend more time with people \nI was inspired to write this by [IRL Friendships in Decline - How Often Do You See Friends?](https://stacker.news/items/431844) It seems like there's many people who struggle with not seeing friends enough. Translated, to me, it means that people are lonely. I hear this a lot from so many people. It seems like often when you have an in-depth, personal conversation with someone, the topic of feeling isolated or lonely comes up. \n\nA key insight for me on this topic is this - you don't always need to be seeing intimate friends, that you go way back with. You can get a lot of mileage from just seeing casual acquaintances, potential friends, people that live in the same neighborhood, etc.\n\nThis is definitely an area in which the world has changed dramatically. I remember seeing an old monthly newsletter from 1965, for a neighborhood that I used to live in until recently. And in that newsletter, there were multiple regular social events (ladies coffee, bbq at the local pool, things like that) mentioned, along with all kinds of details like - Mrs. X provided the coffee cake, Mr Z organized the kids games at the pool - plus lots and lots of names, of who attended. That's changed a lot. \n\nAnyway, I thought I'd jump-start a list similar to what I did with this post, which generated a lot of good ideas: \n[What are some solid alternatives to college/university?](https://stacker.news/items/404270)\n\nSo here goes - feel free to add ideas!\n\n- Poker evenings - some friends of mine had a regular poker evening once a month. Worked out great. \n- For parents with kids - a REGULAR convenient scheduled playground meetup. Maybe even right after school. Kids play, parents talk. Put the phones away.\n- Gyms - your mileage may vary here. I've never experienced gyms as very social - actually often the opposite - but some people do better. Especially if you do classes, that may work for you. Also apparently rock climbing gyms are very friendly.\n- Co-working spaces - sometimes this can work out well. If you're working remotely, and are tired of being at home alone, maybe check if there's a co-working space nearby, where you can rent a desk regularly. \n- Church - depending on where you live, and your beliefs, this can be a big part of people's social lives.\n- Meetup groups - this is very dependent on where you live. But in some areas, there's very active groups filled with people that are itching to meet others for whatever purpose - hiking is often a big one. It can be great. \n- Pick-up sports - the pick-up sport that I know about, that could work for many people is pickleball. What an awesome, fun, sociable sport. In some regions in the US at least, there's a huge number of pickleball groups that meet up regularly. You have to put in legwork to find them, but it's worth it. Also potentially in some places, ultimate frisbee is a big thing. \n- Facebook. Okay, ugh, I know, this is a tricky one and I don't like it. But 95% of the hyper-local social events appear on facebook, and nowhere else. There's a couple similar sites (NextDoor, etc) that may also have value.\n- Volunteer. Tons of volunteer work that I've done has been very low-value, or even negative value. Lots of charities are very poorly run. But I did recently see a Catholic thrift store locally that had a vibrant volunteer community helping out with the store. It was obviously a big social thing for the older folks that volunteered there. \n- Get a low-maintenance dog. I'm honestly not enthusiastic about this because many dogs, especially the high maintenance ones, can be a barrier to getting together with people (you're bound to the dog). But for some people it works out great, they walk dogs regularly with other people, go to dog parks and meet people.\n- Avoid high wealth areas and people. This is an impression I have based on life experiences, when dealing with high wealth people. If they actually earned the wealth themselves, it's different, but inheritors and spouses often have hang-ups.\n- Bitcoin specific venues/meetups - this can be great, but will vary dramatically depending on where you live. \n- Is there a Makerspace close-by? If so, this can be a fun place to hang out, and try the equipment. The vibe is often good, people trying new things, making things.\n- Gun clubs - this is something I got into back when everything was shut down, in 2020. Guess what didn't shut down? Gun clubs. Thank goodness. Might be something to try out.\n- Be the person that sets up regular events. Something social that happens every week, so you don't need to be always picking a time, venue, etc. For instance - a guy I know has a regular, every single Saturday, breakfast at his garage, and all the other folks who are into his same hobby will meet up there. Everyone throws in some cash for the breakfast, everybody that knows about it is invited, word of mouth only. Lots of socializing takes place there. If the host isn't available, someone else takes over for him.\n\nWhat are your ideas? \N 11776 \N 2757 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.715115091798 0 \N \N f 0 \N 0 152358041 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3350 2022-10-30 16:34:51.613 2025-03-29 22:39:47.915 Books And Articles Newsletter, Issue 16 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. Thanks for all of the quality posts. \n\nFor the first time that I can remember, one of @cleophas’ book chapters made top post of the week. The Final Product in general has become a very popular book among stackers. It’s good to see fiction gaining some traction in this territory. If you haven’t done so already, start reading The Final Product.\n\nAnother one of our fiction writers, @jbschirtzinger, posted to remind us that his book, The Rogue Scholar, which was published here, has now been released in commercial form, with additional edits and art work. Check his [post](https://stacker.news/items/541770/r/siggy47) for more information. \n\nWhile we’re on the subject, Stephanie Harrison chose our territory to tell us about her new book, [New Happy](https://stacker.news/items/537425/r/siggy47). Her post contains information about how you can pre order your copy. \n\nI hope everyone has a good week. \n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [The Final Product, Chapter 21](https://stacker.news/items/537626/r/siggy47) by @cleophas\n\n- [Literature Map - The Tourist Map of Literature](https://stacker.news/items/536463/r/siggy47) by @DEADBEEF\n\n- [150 years from now.](https://stacker.news/items/536771/r/siggy47) by @Athena\n\n- [Shakespeare Book Club: Macbeth](https://stacker.news/items/541986/r/siggy47) by @cryotosensei\n\n- [Which Shakespeare play would you recommend?](https://stacker.news/items/540347/r/siggy47) by @cryotosensei\n\n\n\n### Siggy’s Suggestions\n\n- [Tap into the Power of Your Mind to be Successful](https://stacker.news/items/539334/r/siggy47) by @Athena\n\nI had never heard of William Walker Atkinson or the New Thought Movement. This post introduced me to his work. That’s one of the things I like best about preparing this newsletter each week. I am exposed to stuff I would never discover on my own.\n\n- [All Hallows - Louise Glück](https://stacker.news/items/542528/r/siggy47) by @StillStackinAfterAllTheseYears\n\nI make a point out of reading every poem that StillStackin posts in this territory. He knows a hell of a lot more about poetry than I do, which is admittedly not a high bar, but I like his taste. This one is no exception. I even learned a new word- cinquefoil. \n\n \nThis week’s Golden Oldie:\n\n- [Fighting the Daily Grind #1](https://stacker.news/items/413483/r/siggy47) by @cryotosensei\n\nFor this week’s Golden Oldie I went back and read the first entry @cryotosensei made in this territory of his Fighting The Daily Grind blog. Like most of you, I’m sure, I now feel like I know all about his life and career, so it surprised me that it has only been a few months since we first were invited into his world. Enjoy, and maybe use his post as inspiration for starting your own blog.\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462)\n by @StillStackinAfterAllTheseYears\n\n- [The Bezzle, by Cory Doctorow](https://stacker.news/items/506632/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [The Achilles Trap, by Steve Coll](https://stacker.news/items/497756) by @Coinsreporter\n\n- [Software,by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n- [Bleeding Edge by Thomas Pynchon](https://stacker.news/items/533493/r/siggy47) by @Scoresby\n\n- [ “Better than Before” by Gretchen Rubin](https://stacker.news/items/534613/r/siggy47) by @cryotosensei\n\n- [Giada De Laurentiis Recipe for Adventure Hong Kong](https://stacker.news/items/539739/r/siggy47) by @cryotosensei\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Churning Black Matter](https://stacker.news/items/469200) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n\n\n \N 854 \N 3350 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.7325242909268 0 \N \N f 0 \N 0 213235667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 2831 2022-10-20 08:55:00.738 2025-03-29 22:39:47.916 Meta Used Monolithic Architecture to Ship Threads in Only Five Months This link was posted by [RyeCombinator](https://news.ycombinator.com/user?id=RyeCombinator) 1 hour ago on [HN](https://news.ycombinator.com/item?id=39987466). It received 93 points and 57 comments. https://www.infoq.com/news/2024/04/meta-threads-instagram-5-months/ 9350 \N 2831 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.55810049666626 0 \N \N f 0 \N 0 37246900 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3795 2022-11-10 06:48:05.002 2025-03-29 22:39:47.916 Swan Acquires Specter, Maintainers of the Open Source Software and Hardware... \N https://www.swanbitcoin.com/swan-acquires-specter-solutions/ 711 \N 3795 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.98331926026147 0 \N \N f 0 \N 0 135238283 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 4966 2022-12-04 18:53:33.337 2025-03-29 22:39:47.917 🐧 Linux users continue to be ignored by Proton Linux users continue to be ignored by Proton, with the company opting instead to develop new AI features on Proton Mail that nobody needs, and a new Bitcoin Wallet that no one with 2 brain cells will use.\n\nWhy bother implementing end-to-end encryption across all Proton apps if the operating system they run on will screenshot the emails, calendar, files, browser history, and employ AI to snoop through everything, then send it to Big Brother's Microsoft/Apple servers? It's utterly absurd.\n\nLinux should be the top priority for Proton. \N 11648 \N 4966 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.03437427090806 0 \N \N f 0 \N 0 118030534 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5116 2022-12-06 22:00:04.621 2025-03-29 22:39:47.917 What USD amount do you feel comfortable holding in a custodial Lightning wallet? What USD amount do you feel comfortable holding in a custodial Lightning wallet?\n\nShare your preferred custodial wallet in the comments and let us know why you prefer it! \N 21578 \N 5116 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.8965104783046 0 \N \N f 0 \N 0 8621071 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5175 2022-12-08 11:35:53.476 2025-03-29 22:39:47.917 Step aside Clark Moody! I would like to present to you, the new ultimate Bitcoin fact page!\n\nhttps://bitcoin-facts.onrender.com/ \N 4323 \N 5175 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6607667790973 0 \N \N f 0 \N 0 12375715 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7764 2023-01-31 12:31:03.629 2025-03-29 22:39:47.916 A look into Progressive Web Apps (PWAs) on Google Trends Check out [Google Trends](https://trends.google.com/trends/) interest for all things PWA:\n\nhttps://imgprxy.stacker.news/hP6QrVvlO-voDkzWcviwCi_jTs1KfHaKDRjViUeNXTg/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS96dDNUbk5oLnBuZw\nhttps://imgprxy.stacker.news/ZsM9oyO1Xbcv-s0C8rGPmOwEK_nDk9ZGMijEuv6fs3Y/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9td2N4cXJHLnBuZw\nhttps://imgprxy.stacker.news/dZwfwdo9vZxBTQAXd-rTje86v3rdo3H4efO7PmpF2eM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9kZUp0ZFdtLnBuZw\n\nThe breakout feels imminent.\n\nCurious to know how app store monopolists like Apple will respond.. \N 831 \N 7764 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.9126989920111 0 \N \N f 0 \N 0 230858609 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 7693 2023-01-30 13:23:56.183 2025-03-29 22:39:47.916 Wouldn't it be nice if Nostr had a cool logo? Here is one! How about a logo for Nostr? Everyone can contribute to the Nostr ecosystem and create the visuals they like. And I love that!\n\nHowever, I believe having a recognizable logo could be beneficial for the Nostr community as a whole!\n\nWith this idea in mind, I asked designer [Andrea Nicolini, aka Bembureda](https://bembureda.dribbble.com), to create a logo and an icon for Nostr. I think he did an amazing job! Don’t you think so?\n\n![Nostr logo and icon](https://file.notion.so/f/s/36224756-5501-4db4-b96e-5458e0aa348a/nostr-logo-mix.png?id=e2d7813c-3113-4eed-a552-b9065e7171f9&table=block&spaceId=42fffae1-e724-4437-8bc6-28fc3b81cc0e&expirationTimestamp=1685522759235&signature=JI3uy9wZiFp8kg_0Fq8I-ydMFrsdkqKUWTavuMNEeyI&downloadName=nostr-logo-mix.png)\n\nDownload it now! Available in multiple sizes and colors here: \nhttps://github.com/mbarulli/nostr-logo/\n\nThe CC0 license allows you to use it for any purposes without restriction. \N 18412 \N 7693 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.0001790973327 0 \N \N f 0 \N 0 233640301 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 5844 2022-12-26 19:16:58.116 2025-03-29 22:39:47.916 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 19094 \N 5844 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.32344403002272 0 \N \N f 0 \N 0 62918026 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 6408 2023-01-09 08:53:03.726 2025-03-29 22:39:47.916 Recommend Some Bitcoin Related Documentaries To Watch \N \N 2711 \N 6408 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.72872138073132 0 \N \N f 0 \N 0 128365537 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 6438 2023-01-09 21:24:09.385 2025-03-29 22:39:47.916 OLYMPUS: The future of payments is coming \N https://olympusln.com/ 4345 \N 6438 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.0779469609517 0 \N \N f 0 \N 0 216837544 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 47025 2023-08-07 15:25:05.016 2025-03-29 22:39:47.917 Hacking Kia Car: Remotely Controlling Cars With Just a License Plate \N https://samcurry.net/hacking-kia 20577 \N 47025 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.96811805964966 0 \N \N f 0 \N 0 219822451 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 6664 2023-01-13 12:49:18.657 2025-03-29 22:39:47.917 Mempool.space adds lightning page \N https://mempool.space/lightning 20858 \N 6664 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.38770560646051 0 \N \N f 0 \N 0 49865844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 8861 2023-02-14 06:58:10.277 2025-03-29 22:39:47.916 Books And Articles Newsletter, Issue 21 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week \n\nWelcome to this week’s issue of the Books And Articles newsletter. Thanks for all of the quality posts.\nThe Top Five Posts Of The Week were dominated by @Nadia and @plebpoet. Thanks to both of you for carrying the territory this week! As always, please reply to this post with suggestions and opinions on how to make this territory better. \nI hope everyone has a good week. \n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [The perfect dictatorship would have the appearance of a democracy](https://stacker.news/items/576878/r/siggy47) by @Nadia\n\n- [Bringing you another plebeian poem ☕️](https://stacker.news/items/575120/r/siggy47) by @plebpoet\n\n- [A plebpoet original 🍽️](https://stacker.news/items/579738/r/siggy47) by @plebpoet\n\n- [My Moments of Pause](https://stacker.news/items/574858/r/siggy47) by @Coinsreporter\n\n- [Instagram and intellectualism: how to pose as a real reader?](https://stacker.news/items/579774/r/siggy47) by @Nadia\n\n\n### Siggy’s Suggestions\n\n- ["When Her Eyes Open" by Shira Lipkin](https://stacker.news/items/578207/r/siggy47) by @StillStackinAfterAllTheseYears\n\nI like stillstackin’s poem posts, but this one was a little out of my element. I’m not a scifi fan at all, but I was immediately drawn in by this cyborg’s (is that what you call her?) predicament. Still stackin found a gem in an unlikely place. I’m a sucker for a grim, apocalyptic vision.\n\n- [Bookmarked 10](https://stacker.news/items/581139/r/siggy47) by @grayruby\n\nI appreciated this post by @grayruby for a few reasons. Nathaniel Popper wrote Digital Gold, a well written and very entertaining narrative of the early days of bitcoin. If you haven’t read it, give it a try. Also, this is a Kevin Rooke podcast. Our old friend is an underrated podcast host, in my opinion, and I intend to catch up on some of his old episodes soon. I for one miss @kr’s insights here on Stacker News.\n\n \nThis week’s Golden Oldie:\n\n- [Your house is burning down. What 3 books will you pick to run away with you?](https://stacker.news/items/404393/r/siggy47) by @cryotosensei\n\nThis is a really good old book recommendation post. The post and the many replies are equally valuable. I always find some books I am not familiar with in these type of posts. \n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462)\n by @StillStackinAfterAllTheseYears\n\n- [The Bezzle, by Cory Doctorow](https://stacker.news/items/506632/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [The Achilles Trap, by Steve Coll](https://stacker.news/items/497756) by @Coinsreporter\n\n- [Software,by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n- [Bleeding Edge by Thomas Pynchon](https://stacker.news/items/533493/r/siggy47) by @Scoresby\n\n- [ “Better than Before” by Gretchen Rubin](https://stacker.news/items/534613/r/siggy47) by @cryotosensei\n\n- [Giada De Laurentiis Recipe for Adventure Hong Kong](https://stacker.news/items/539739/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Culture Code” appeals to the adolescent in me](https://stacker.news/items/568580/r/siggy47) by @cryotosensei\n\n- [Book Review | Wanna evolve like Pokemon with “My Morning Routine”](https://stacker.news/items/569631/r/siggy47) by @cryotosensei\n\n- [Book Review | The Handbook for Leaders](https://stacker.news/items/579116/r/siggy47) by @cryotosensei\n\n- [Book Review | “Fierce Conversations” by Susan Scott](https://stacker.news/items/581153/r/siggy47) by @cryotosensei\n\n- [Lonesome Traveller by Jack Kerouac](https://stacker.news/items/543525) by @carlosfandango\n\n- [Pre-review of Human Rights and the Uses of History by Samuel Moyn](https://stacker.news/items/570366/r/siggy47) by @SilkyNinja\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 12278 \N 8861 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.7156785456308 0 \N \N f 0 \N 0 46156500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 8892 2023-02-14 13:48:28.726 2025-03-29 22:39:47.916 What are your favorite MONEY movies? We have a local arthouse movie theatre in my neighborhood and I've been asked to host Money Movie Night once a week; So I've got to get a list together. \n\nWhat are your favorite movies with any kind of a plot that involves money somehow. \n\nAn example might be the Christmas classic "[It's a Wonderful LIfe](https://www.youtube.com/watch?v=iLR3gZrU2Xo)". Why? Main character is a community banker. A bank run is depicted. One major theme is low time preference. \n\nAny movie that might spark a thought or conversation about money would make the list. \n\nWhat is your favorite MONEY movie and why? \N 9655 \N 8892 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.27441621933794 0 \N \N f 0 \N 0 215605419 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 24148 2023-05-19 12:25:00.84 2025-03-29 22:39:47.917 Mutiny Wallet and Zeus \N https://primal.net/e/note1h0lqfkm0neywkmsvuyv69gfgfa6pwmj6aay9vau804hrpgvlfkhqszvfj9 11873 \N 24148 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.737025573316217 0 \N \N f 0 \N 0 212835373 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 25134 2023-05-23 00:48:52.068 2025-03-29 22:39:47.917 Lightning’s Future — A New Era of Interoperability with LSP Specs \N https://medium.com/synonym-to/lightnings-future-a-new-era-of-interoperability-with-lsp-specs-0869fc062339 9863 \N 25134 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.2225696998927 0 \N \N f 0 \N 0 180244086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 38730 2023-07-14 15:27:50.968 2025-03-29 22:39:47.917 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 10469 \N 38730 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.7035313285333 0 \N \N f 0 \N 0 238051726 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 25490 2023-05-24 05:14:21.331 2025-03-29 22:39:47.917 I finally muted someone on SN: how to achieve this dubious honor So, I had been maintaining a position of not muting anyone on Stacker News. In part, that's because I don't want SN to become an echo chamber like so much of the rest of social media. I also don't want to risk missing out on something valuable that someone has to say, just because I don't like them.\n\nAs I hope is clear to everyone here, and my record is fairly abundant, I'll engage on just about any topic with just about anyone. I've had many civil disagreements with folks (as well as some uncivil ones): sometimes I change my mind, sometimes I don't, but I do always listen to what the other person said and try to understand where they're coming from. I don't argue to win (shifting the goal posts when the other person makes a good point or simply ignoring it), but rather to learn.\n\nHigh-level civil disagreements are one of the things that sets Stacker News apart from the rest of the internet.\n\nWhat finally got someone muted was not their opinion (which I do disagree with), but their conduct. We had gone through the same tedious argument several times and the person never engaged with my points, but just kept repeating their assertions. When they attempted to start the same argument again recently, I told them I wasn't interested in rehashing it with them and they could go reread our past exchanges to see what I think. Rather than respect my wishes, the person belligerently insisted on pressing their argument. When I set my terms for continuing the conversation (read our past exchanges and bring up something new), they resorted to name calling. Mute.\n\nAs much as I enjoy talking about stuff and having disagreements, I don't owe anyone my time or attention. If someone tells me that they're sick of talking to me about something, I will drop it (or I will at least acknowledge that I should have). I expect the same courtesy from others. Have some respect for the person you're interacting with, if you want them to interact with you.\n\nHave whatever opinion you want, but argue it in good faith and be respectful. \N 8400 \N 25490 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.2704183845229 0 \N \N f 0 \N 0 42792165 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 28119 2023-06-01 14:31:45.539 2025-03-29 22:39:47.917 Most Bitcoin Inscriptions belong to a single person or entity \N https://block21m.substack.com/p/most-bitcoin-inscriptions-belong-d6d 7960 \N 28119 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.690284529090519 0 \N \N f 0 \N 0 220075248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 39000 2023-07-16 05:47:33.47 2025-03-29 22:39:47.917 SN crazy rewards update The stacker that manage to withdraw >20m sats as a result of the here-called [Crazy Rewards Bug](https://stacker.news/items/217122) has returned 18m sats.\n\nThey contacted me shortly after their initial withdrawal on Monday night. Amidst the commotion I hadn't been checking other comm channels.\n\nAnyway, as promised, 100% of those 18m sats will make their way to the rewards pool. First we'll make a few adjustments to the rewards pool so that it distributes rewards more evenly (plans we already had but hadn't prioritized). Once that's done, for 90 days we'll been adding an additional 200k sats to the rewards pool on a daily basis.\n\nThank you to the stacker for returning the sats. 🫂 \N 21271 \N 39000 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.32196105279075 0 \N \N f 0 \N 0 201125396 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 29360 2023-06-05 23:19:26.928 2025-03-29 22:39:47.917 What's THE most dystopian thing currently happening? \N \N 7389 \N 29360 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.07692816183027 0 \N \N f 0 \N 0 67180092 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 28702 2023-06-03 22:23:14.089 2025-03-29 22:39:47.917 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/409123) are the updates stackers shared from all their latest work projects. \N 9695 \N 28702 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.73259120081586 0 \N \N f 0 \N 0 225096568 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 51149 2023-08-17 06:20:30.087 2025-03-29 22:39:47.917 This Man Did Not Invent Bitcoin (NY Times) Some surprisingly good coverage by NYT on Craig Wright https://archive.is/R2AZe 9169 \N 51149 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.4018384646937 0 \N \N f 0 \N 0 161727093 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 34302 2023-06-24 13:44:29.396 2025-03-29 22:39:47.917 There is something unique about this beautiful community. Everyone is kind to share everything. When i ask for something everyone is sharing their knowledge. Thank you so much everyone. \N 1737 \N 34302 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.6891591901121 0 \N \N f 0 \N 0 34940774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 36166 2023-07-02 19:38:05.655 2025-03-29 22:39:47.917 [SN Brainstorm] New type of post: "Series" Howdy stackers,\n\nI recently opened a [github issue](https://github.com/stackernews/stacker.news/issues/1410) for a new type of post called a **Series** and I'm looking for some feedback from stackers.\n\nAlmost every day, it seems like there's a new series created by the stackers, this will only grow. A new type of post could be used to organize these recurring kinds of posts, and make them individually subscribable. This could help writers manage their recurring content on SN, and help readers streamline their notifications, and probably their bookmarks as well.\n\n## brainstorming thoughts\n\n- You'd manage your series on your profile page\n![](https://m.stacker.news/54473.png)\n- With each series comes a template to work from\n- If you're in the middle of one, you can add the previous episodes, etc.\n- If you've already completed one, you can organize it and post the link to the completed series.\n- Icon for series post\n![](https://m.stacker.news/54483.png)\n- Public series is where it gets more interesting with a much wider scope.\n - Parent's Corner, Ask SN, SN Brainstorm: these could be "public series" where multiple stackers post in the series, and in varying territories.\n- A public series, depending on the criteria to start one, becomes like a mini-territory that can cross between the territories, if that makes sense.\n - A writer of "Parent's Corner" would have their audience, regardless of the territory they've posted in.\n - I think public series serve a different enough purpose from sub-territories, and can compliment each other well. \n - The founder of a public series could limit who can post and where. Then of course, how much % do they make? What's the cost to start/maintain a series? etc..\n - I guess if SN is a town, and the land is divided into territories, series are like magazines or journals that we can all create and pass around between the territories.\n## ?'s\n\n\n- Is there a better word for this than "series"? \n- Should private and public series both have a cost? Should it be the same?\n- Maybe each stacker gets a series for free, and any subsequent cost sats?\n- Should "public series" be different in scope? Axed entirely?\n- Is this idea completely stupid?\n\nLet me know your thoughts and feedback on if/how "Series" post type should be implemented!\n \N 17522 \N 36166 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.1107659277637 0 \N \N f 0 \N 0 81981952 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 34862 2023-06-26 15:31:10.805 2025-03-29 22:39:47.918 Protonmail ⚡️ Frens? Protonmail has always held a special place in my heart, even with their erstwhile fuckups. I remember donating $50 to their indigogo crowdfunding campaign in 2014 and watching PayPal freeze the donations due to *doubts on the legality of encryption*...🫠 Snowden’s revelations were only the year prior and still working their way through the global consciousness. ```Proton```mail for those unaware gets its name from the small group of particle physicists and computer scientists that started the company out of CERN. \n\nNow some housekeeping:\n- *Proton*Coin was a fuckup and I’m relieved nothing ever came of the project\n- How they handled the DDoS attack explanation after the French terrorist attack was iffy\n- How they handled the IP logging and court compliance revelation leading to the arrest of the French climate activist was a fuckup\n\nBut the bitcoin payment option, VPN, Swiss court victories, and transparency have heretofore ironed-out a forgivably rough start. They’ve shown a commitment to privacy imo, and it's been impressive for a mainstream platform, the word *mainstream* being key here. \n\n\nSo in December last year, when asked why Protonmail hasn’t integrated the Lightning Network yet, Protonmail founder and CEO Andy Yen replied to Forbes with something that went under the radar in bitcoin world:\n\n>*”It’s just a matter of resources. We will eventually - it's simply a matter of time.*”\n\nAn integration like this seems significant considering Protonmail has over 100M global [users](https://proton.me/blog/proton-100-million-accounts). CashApp by comparison has half that. Protonmail boasts partnerships with Stanford, Harvard, MIT, Caltech, Cern, EthZurich, etc. Many of their global users aren’t native bitcoiners, and going the static route, it would give every Protonmail addressee a wallet linked to their call sign. Example: user@proton.me, just like user@stacker.news. Custodial or not, it's an important initial step.\n\nSo anyway, I DM’d Andy Yen (@andyyen) on Twitter, and contacted ProtonMail via email. I asked both about the platform’s LN progress seeing if I could get compatible answers. Which I surprisingly did, and I wasn't expecting replies from either. I don’t want to post them publicly, but they're *“excited”* and *“working their way through the lightning menu”*. \n\n![](https://imgprxy.stacker.news/MY9a_UgLxzjWJxSNPz3SAlIBNaIQr3G4gZ5Q_lfbPls/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS9kZjc3YzY0ZmQ2YTdkMjUyNDcwYWU4NWQxMmM1MmIzMDY1OGZiYzI4ZTIzM2EwMjJhYzBjZTJhZjRkOTYwOWQ5LmpwZw)\n\n\n\nLook, I’ll believe it when I see it, but a toast to any and all interoperable frens: 🍻\n\nProtonmail’s mainstream appeal is important. It’s rare for a privacy-centric platform to attract those kind of network effects. Their UX/UI is absolutely world-class. Their user-base is diverse and enormous. We should support them.\n \N 9184 \N 34862 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.6233347875152 0 \N \N f 0 \N 0 160991373 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 39811 2023-07-18 19:06:58.569 2025-03-29 22:39:48.152 Geyser AMA 🙌 😎 GM, Stackers!\n\nWe're Geyser.fund, the crowdfunding and creator platform built on Lightning and Nostr. \n\nWe're here to spread Sats and answer ALL of your questions! \n\nHave you created or funded a project on Geyser? What did you like and what would you like to see improved?\n\nAll sats forwarded to: https://geyser.fund/project/geyser \N 15273 \N 39811 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.8610801221123 0 \N \N f 0 \N 0 190827783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 195349 2024-07-06 08:12:32.817 2025-03-29 22:39:48.152 OpenSats $10M Funding for Bitcoin & Nostr \N https://opensats.org/blog 12921 \N 195349 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4367352393125 0 \N \N f 0 \N 0 228608193 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 38045 2023-07-11 15:26:34.283 2025-03-29 22:39:48.152 POSTING COSTS: how much is too much? Curious at what level the fee to post would stop stackers from posting. \N 2431 \N 38045 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.0046783896025 0 \N \N f 0 \N 0 152604312 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 85297 2023-11-12 18:54:26 2025-03-29 22:39:48.153 FixedFloat successfully hacked again. By the same people. https://twitter.com/FixedFloat/status/1775172224216875223 27 \N 85297 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.7040337590333 0 \N \N f 0 \N 0 127915930 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 69711 2023-10-03 02:25:44.613 2025-03-29 22:39:48.152 Wallet of Satoshi on pace for 1.1 million LN payments in November https://pbs.twimg.com/media/F_jVQ_7WAAM3qdO?format=jpg\n\nWallet of Satoshi has seen a major uptick in Lightning payment volume this month, likely due to the recent growth in Lightning advertising.\n\nThis will be their first-ever month of processing 1,000,000+ LN payments, and a huge new all-time high. \N 14404 \N 69711 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0391749162737 0 \N \N f 0 \N 0 56650663 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 64920 2023-09-18 21:55:10.994 2025-03-29 22:39:48.152 I just burned a million to tell you they’re printing trillions \N https://twitter.com/balajis/status/1653449321185169409 4538 \N 64920 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1177581992254 0 \N \N f 0 \N 0 240896343 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 85651 2023-11-13 22:52:25.352 2025-03-29 22:39:48.156 Incentives to spend sats will come in due course Some people got into Bitcoin early on. They bought it at $100 or whatever, are now sitting on bags of 100 BTC, can consider themselves retired and are unhappy about the fact they have to swap their sats for dirty fiat and pay the extortionists for something (we know deceitfully) called capital gains to pay for goods and services, who don't only want a share, but also require a handful of other statist fiat nonsense, such as having kept records to calculate the "cost-basis", which in most of those cases is absent, and in all cases impractical and absurd to maintain.\n\nThat's understandable. If I were one of them, I would be unhappy too, seeing how Bitcoin hasn't yet fulfilled its role as a tool for building a circular economy -- a concept theorized by Samuel Edward Konkin III, the founder of agorism, which preceded Bitcoin by decades, but couldn't fully unfold due to the technology not being there.\nThe pains of being an early adopter, in all its fortune.\n\nMost stackers, however, got in a late, in the current halving cycle and are still in stacking phase, working hard and nowhere near retirement. They don't care for being able to spend their sats.\n\nBut one day they will. Some will start caring in the bull cycle that's now starting, some will in the one after.\nTheir stacks will be large enough to retire on, and they will want to spend them without having to go through the fiat nonsense and all the 'fun' it entails.\n\nThey say money starts as a store of value, then becomes a means of exchange, then a unit of account. This is what will happen, and the incentives (that funnily enough, governments themselves create in the form of CGT) will arise when the numbers align. And the governments / nation states, by debasing their fiat, only accelerate the NGU nature of Bitcoin and the alignment of the numbers. They're digging their own graves. They harder they try to steal, they sooner they will be defunded. This is the beauty of Bitcoin.\n\nMany bitcoiners talk about how Bitcoin will defund the state by talking away its power to print money, but they miss Bitcoin's ability to take away the state's power to extort explicitly, a power that the more statist types justify. SEK3, on the contrary, made the creation of circular economies to weaken the state a moral imperative and would be proud of Satoshi. Even the authors of "The Sovereign Individual" predicted that technology would shrink the state by making extortion harder to enforce.\n\nNote that incentives exist for merchants to accept sats already: what is received in sats and doesn't need to be swapped for fiat (whether that's because it can be stacked away for the future (case 1), or spent directly to cover ongoing expenses (case2)) is, by Natural Law, not subject to income-based extortion. Moreover, businesses or parts thereof that operate within a circular economy / grey markets are not subject to regulation. Anyone who receives fiat payments needs a bank account, a registered business etc. If you only accept Bitcoin, you don't need any of that.\n\nThe problem currently is that most businesses operate at small margins (so they can't stack for case 1) and there are few places that accepts sats (so the can't spend them for case 2).\n\nMerchants can incentivize customers to pay in sats by offering a discount. As long as the discount is below the state extortion rate, it's a win-win for the parties involved, and a well deserved loss for the party not involved.\n\nBut demand for the ability to spend sats will grow, which will fuel that further. And as more merchants accept bitcoin, it will be easier for merchants to pay their ongoing cost will sats.\nThis is how a circular economy will boostrap itself into existence. The incentives, currently small, will trickle down to more areas of human activity and create positive feedback loops, reinforcing them beyond the point of stoppability, leaving the greedy, rent-seeking politicians and banks as the only losers.\n\nThat said, I think for now it may be prudent to keep these discussions to the more anarchist / agorist circles like SN and Nostr, and not spread these ideas among the wider and more statist audiences (such as r/Bitcoin), considering how much the powers that be are trying to fight Bitcoin (the FinCEN developments, travel rule etc.). Until we're 100% sure it's beyond the point of stoppability. \N 21279 \N 85651 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.14906226007279 0 \N \N f 0 \N 0 69885310 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 85717 2023-11-14 06:51:32.627 2025-03-29 22:39:48.156 Jam - Join Market, Advice on Optimizing Fidelity Bond Setup I've been researching and testing fidelity bonds and trying to figure out the best way to set one up. I understand that the bond value is determined by the amount of locked bitcoins and the lockup period. \n\nThe formula on the documentation for a fidelity bond's value is as follows:\n\nbond_value = (locked_coins * (exp(interest_rate * locktime) - 1))^x\n\nI am aware that the bond value increases with the amount of locked bitcoins and the duration of the lockup period, but I'd love to get some advice from the community on finding the right balance.\n\nI was thinking to start with a shorter lockup period (1-2 months) and experiment with different amounts of locked bitcoins to get a feel for the market.\n\nThen, gradually increase the lockup period to between 3 to 6 months\n\nAlso any one has some advice on the absolute vs relative offer ?\n\nthanks! \N 1433 \N 85717 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4874470730314 0 \N \N f 0 \N 0 225914541 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 66006 2023-09-22 09:47:24.316 2025-03-29 22:39:48.157 First Look at Mutiny Wallet - Thriller post \N https://www.thrillerbitcoin.com/first-look-at-mutiny-wallet/ 17817 \N 66006 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.43619952542184 0 \N \N f 0 \N 0 234606076 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 68432 2023-09-30 02:31:55.644 2025-03-29 22:39:48.158 Birth rates fall worldwide It is a phenomenon that we have been observing for some years now: birth rates are falling worldwide, in some cases dramatically. This will have economic consequences, as all economic systems, social systems, etc. are geared towards a stable population or moderate growth. This will result in major deflationary trends that cannot be reflected in our fiat money system, which is existentially dependent on inflation and the expansion of the money supply.\n\n\n\n![20240124_093237.jpg](https://m.stacker.news/13727) \N 18393 \N 68432 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6960236485133 0 \N \N f 0 \N 0 218524283 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 68918 2023-10-01 14:05:38.704 2025-03-29 22:39:48.158 Bank Of Japan Commits Seppuku, Tells Citizens To "Just Buy Bitcoin" \N https://www.bugle.news/bank-of-japan-gives-up-tells-citizens-to-just-buy-bitcoin/ 1047 \N 68918 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.6321209843086 0 \N \N f 0 \N 0 52177828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 65344 2023-09-20 10:46:55.986 2025-03-29 22:39:48.159 How and why I wrote my own TOTP 2FA client. [metadata][privacy] Many [2FA][5] apps require their users to leak their email or their phone number in order to use them, although the whole idea of having a [TOTP app][2] is to replace an insecure and non-private authentication such as that via email or phone. Since TOTP authentication does no rely on connecting to a server in order to generate OTP codes, there is no excuse for demanding from the users of the app their email and / or their phone number.\nThe reason behind demanding such identifiers from the users is not only the business of spam but the collusion of the state with corporations, aka state capitalism. They [are in the business of oppressing you][4], my dear reader. \n\nThe following code is a provisional solution of the issue:\n```\n#!/usr/bin/env python3\n\nfrom subprocess import run\nfrom time import sleep\n\n\nwhile True:\n try:\n from pyotp import TOTP;break\n except:\n run("pip3 install pyotp", shell=True)\n\neditor="geany"\ndctr_of_ks={ "tradeogre":"8XM7TRQLZNUK0K5QJZGOPAMYVN"}\n\n \ndef main():\n choose()\n \n\ndef choose():\n while True:\n ch=input(f"""What is that you want to do? Specify with a number.\n1. Display a TOTP code for a service of your choice.\n2. Edit this program, for example to add a service requiring TOTP or to change a text editor.\\n""")\n if ch=='1':display_current_code(display_menu(dctr_of_ks));break\n elif ch=='2':\n run(f"nohup {editor} {__file__}>/dev/null 2>&1 &", shell=True);break\n\ndef display_menu(dctr_of_ks):\n while True:\n print("Select a service:")\n for index, key in enumerate(dctr_of_ks.keys(), start=1):\n print(f"{index}. {key}")\n choice = input("Select the the service with a number of your choice or press Q to quit) ")\n if choice.lower() == 'q':\n print("Exiting...");break\n try:\n index = int(choice)\n if 1 <= index <= len(dctr_of_ks):\n selected_key = list(dctr_of_ks.keys())[index - 1]\n print(f"You selected '{selected_key}'.")\n return dctr_of_ks[selected_key]\n else:\n print("Invalid choice. Please enter a valid number.")\n except ValueError:print("Invalid input. Please enter a number or Q to quit.")\n \ndef select_name_of_service():\n for k in dctr_of_ks:\n print(k)\n choice=input\n \ndef display_current_code(key):\n totp = TOTP(key)\n while True:\n print(totp.now())\n sleep(5)\n \n\nif __name__ == "__main__":\n main()\n\n```\n*Provisional* it is but it is at least private and transparent. And it can be improved upon. The code can be tweaked to provide more functionalities, such as support for QR codes, or enhanced security, such as reading the keys from an encrypted file with [pass][1] instead of hardcoding them in the source file. I might \npublish such tweaks in my later posts.\n\nConsider [creating an alias][3] in `.bashrc` to conveniently access the app.\n\n[1]: https://www.passwordstore.org\n[2]: https://en.wikipedia.org/wiki/Time-based_one-time_password\n[3]: https://askubuntu.com/questions/17536/how-do-i-create-a-permanent-bash-alias\n[4]: https://www.independent.co.uk/news/world/middle-east/google-saudi-arabia-app-absher-control-women-apple-a8808361.html\n[5]: https://en.wikipedia.org/wiki/Multi-factor_authentication\n \N 19198 \N 65344 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.2912229387537 0 \N \N f 0 \N 0 25834660 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 88935 2023-11-22 13:18:02.209 2025-03-29 22:39:48.153 I didn't vote yesterday. I'm 53 and yesterday was the first time I didn't vote since I was old enough to vote. I used to be optimistic and brain washed but I don't believe in any of the fake government religion anymore. It's a monopoly of violence with red team and blue team holding up the arch. \n\nI don't fault anyone else who is participating. I'm not doing it anymore. There is a very small minority of people who can do what they want and they want to be in control. There is another minority of people who are ungovernable. \n\nBitcoin kind of allows us to see the other side. It's a measure against the money religion. For me the way out is a mixture of internal and external. There are plenty of traps too. The traps are the circus tent set up in front of the mountain of truth. Natural Law is camouflaged. \N 20613 \N 88935 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.0966689314642 0 \N \N f 0 \N 0 163575563 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 89179 2023-11-22 23:49:13.005 2025-03-29 22:39:48.153 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://twitter.com/stacker_news/status/1729506738649415886/photo/1), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs here.\n\nSend your best 👇 \N 16562 \N 89179 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.3903298558114 0 \N \N f 0 \N 0 235165685 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 98438 2023-12-13 19:59:31.68 2025-03-29 22:39:48.157 Wall Street Traders' Opinion Of Bitcoin A friend drove me to lunch yesterday. He was listening to CNBC on his satellite radio. I heard a segment called Mid Day Report, or something like that. The program discussed "hot stocks." They talked about "crypto" briefly. There were two traders interviewed, both of whom said they planned to buy bitcoin. \n\nThey both prefaced their comments by saying stuff like:\n\n"I don't believe in it long term."\n"It has no business use."\n"Fifteen years and it's gotten nowhere."\n"I'm just buying until the etf's are approved. The true believers are going crazy."\n"It's just a momentum play."\n"It's just a supply and demand play."\n\nThere's an old saying on Wall Street. "Buy the rumor, sell the news." I feel like many bitcoiners see these lurking etfs as the Holy Grail. Don't be caught off guard by crazy price swings. It's my opinion that we still have a long road ahead of us, and that adoption from the ground up is a hell of a lot more important than a bunch of rent seeking finance guys creating NGU fervor. \N 13763 \N 98438 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.4977166041963 0 \N \N f 0 \N 0 139208454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 95055 2023-12-05 20:02:50.643 2025-03-29 22:39:48.157 Which tax rate do you consider "fair" and would pay? Let's assume flat rate, single income tax \N 15510 \N 95055 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.8589527492797 0 \N \N f 0 \N 0 127746636 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 86362 2023-11-15 17:42:22.107 2025-03-29 22:39:48.157 Do you think less of people who use AI to help them write? Speaking as a teacher, and going beyond the basic debate over whether AI-use enhances or hinders learning, I wanted to get people's perspective on whether AI-use changes their *respect* for someone.\n\nI say this because I've noticed myself losing respect for my students (and even some friends) who say they use AI for writing. I haven't worked through *why* I feel that way, but maybe it's akin to the feeling you get with people who use PEDs... it's like they want to take shortcuts and aren't willing to put in their own work.\n\nThat being said, the level of AI use matters as well. If I learn that someone has been using AI to polish their own first drafts, that bothers me less. When I learn that someone gets their first draft from AI, that bothers me more.\n \N 15147 \N 86362 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.3320687434339 0 \N \N f 0 \N 0 71042408 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 133277 2024-02-27 16:58:47.865 2025-03-29 22:39:48.154 POLL: Realistically, how many people that you personally know will ADOPT CBDCs? Given your current relationships and everyone you know in life...\n\nLet's say CBDCs magically become law tomorrow. What percentage of your network is joining the dark side?\n\nHow well have you done at orange pilling? \N 8498 \N 133277 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9393057112205 0 \N \N f 0 \N 0 84292630 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 108260 2024-01-05 10:07:16.481 2025-03-29 22:39:48.155 Meme Monday - Best Bitcoin Meme Gets 10,000 Sats Time for another round of Meme Monday!\n\nWe have another 10,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 10am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 1213 \N 108260 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.13244154703066 0 \N \N f 0 \N 0 183307533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 130037 2024-02-21 08:46:39.744 2025-03-29 22:39:48.155 The Dishonesty of the New York Times Revealed Of course, this should come as no surprise to anyone who pays even a little attention.\n\nIn general, is the corporate press (or legacy media or whatever you call them) getting worse or are we just increasingly aware of how bad they are?\n\n[The Dishonesty of the New York Times Revealed](https://mises.org/wire/dishonesty-new-york-times-revealed)\nBy [Connor O'Keeffe](https://mises.org/profile/connor-okeeffe)\n"In a Columbia Journalism Review article, NYT publisher A.G. Sulzberger claimed his newspaper embodies 'journalistic independence.' But a recent article by James Bennet, a former NYT editor, reveals the paper does little more than provide progressive propaganda." \N 2596 \N 130037 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.2953777842932 0 \N \N f 0 \N 0 218069557 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 113950 2024-01-16 00:18:24.391 2025-03-29 22:39:48.156 SN Saturday Newsletter 5/4/24 Happy Sat-urday Stackers,\n\n[Catch up on what you missed at btc++ this week](https://www.youtube.com/@btcplusplus/streams) and have a great weekend!\n\n##### Top Posts\n1. [Bitcoin paradigm shift thought experiment](https://stacker.news/items/525232)\n - How might bitcoin best prepare itself for a money system handoff? What might cause bitcoin to be least prepared for such a handoff?\n - 11.7k sats \\ 34 comments \\ [@elvismercury](https://stacker.news/elvismercury)\n2. [Nostr is Identity for the Internet](https://stacker.news/items/523405)\n - Portable, noob-friendly, censorship resistant, internet identities promise to free us from digital serfdom. Nostr gives us a glimpse of what that might look like.\n - 6.6k sats \\ 50k boost \\ 20 comments \\ [@MaxAWebster](https://stacker.news/MaxAWebster)\n3. [The Network Access Exception To The Money Transmitter Rule](https://stacker.news/items/521473)\n - The indictment of Samourai and the pretrial of Tornado Cash show the US government expanding the definition of money transmission. [@siggy47](https://stacker.news/siggy47) points to a statute that “network access services,” like lightning service providers, are safe from such redefinitions.\n - 12.6k sats \\ 42 comments \\ [@siggy47](https://stacker.news/siggy47)\n4. [Idea for future "Bitcoin businesses"](https://stacker.news/items/521699)\n - Helping local merchants accept bitcoin creates more economic bitcoin nodes. [@DarthCoin](https://stacker.news/DarthCoin) expects this kind of missionary work to lead to profitable service businesses and names a few.\n - 3.6k sats \\ 49 comments \\ [@DarthCoin](https://stacker.news/DarthCoin)\n5. [10 ways to support ZEUS in 2024](https://stacker.news/items/522446)\n - Zeus being an open source bitcoin and lightning wallet, built on open network, make it easy to support no matter your skillset.\n - 14.9k sats \\ 27 comments \\ [@evankaloudis](https://stacker.news/evankaloudis)\n\n##### Don't miss\n- [Where is Bitcoin and Lightning's Red Team?](https://stacker.news/items/526911)\n- [It is always darkest before dawn](https://stacker.news/items/528194)\n- [Privacy, Executive Order 6102 & Bitcoin](https://stacker.news/items/521273)\n- [Writing to think](https://stacker.news/items/527178)\n- [Operation Saylor - Episode 22/120](https://stacker.news/items/522161)\n- [clArk: An implementation of the Ark second-layer payment protocol for Bitcoin.](https://stacker.news/items/526619)\n- [Wasabi Wallet is shutting down its coinjoin coordination service](https://stacker.news/items/527056)\n- [[Pull Request] NIP-104: End-to-End Encrypted DMs by erskingardner](https://stacker.news/items/523379)\n- [How to privately/anonymously use Telegram?](https://stacker.news/items/521359)\n- [All the World's Txns](https://stacker.news/items/527888)\n- [New LDK Blog Post: BOLT12 Has Arrived](https://stacker.news/items/524915)\n- [Early Bitcoin Investor Roger ver aka( Bitcoin Jesus) Charged with Tax Fraud](https://stacker.news/items/524836)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [SN's wallet plans](https://stacker.news/items/523435)\n- [You are a SN Rewards System](https://stacker.news/items/523858)\n- [SN release: satistics charts](https://stacker.news/items/525083)\n\n\n--------\n\n##### Top Stackers\n1. [@k00b](https://stacker.news/k00b): 299k sats stacked\n2. [@Undisciplined](https://stacker.news/Undisciplined): 199k sats stacked\n3. [@davidw](https://stacker.news/davidw): 187.7k sats stacked\n4. [@DarthCoin](https://stacker.news/DarthCoin): 184.5k sats stacked\n5. [@grayruby](https://stacker.news/grayruby): 164.5k sats stacked\n\n------\n\n##### Top Spenders\n1. [@k00b](https://stacker.news/k00b): 124.2k sats spent\n2. [@tolee](https://stacker.news/tolee): 79.7k sats spent\n3. [@MaxAWebster](https://stacker.news/MaxAWebster): 73.7k sats spent\n4. [@Undisciplined](https://stacker.news/Undisciplined): 67.7k sats spent\n5. [@TNStacker](https://stacker.news/TNStacker): 65.5k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 342 days\n2. [@kepford](https://stacker.news/kepford): 285 days\n3. [@SatsCats](https://stacker.news/SatsCats): 244 days\n4. [@tnuts420](https://stacker.news/tnuts420): 243 days\n5. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 239 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 9335 \N 113950 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 6.35894796410682 0 \N \N f 0 \N 0 151301518 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 114367 2024-01-16 23:35:19.535 2025-03-29 22:39:48.156 The Final Product, Chapter 32 *This is Chapter 32 of **The Final Product**, you may want to go back to [Chapter 31](https://stacker.news/items/551382) or [start at the beginning](https://stacker.news/items/358761).*\n\n# 32\n\nThe story Jane teeped was full of dramatic images and high emotions. The crew of the Investigator (except of course for the Chinese) appeared heroic, sublime even. It became a triumph of humanity in the face of overwhelming odds. Their victory was in not giving up, even though there was no reason to hope. In the end she placed rather more blame on Trim than the Chinese, but by far the most memorable scene was when Franklin sat on the floor, surrounded by the dead bodies of his friends and so near despair, and slowly, painfully ate the leather of his boots to keep himself alive. Jane managed to capture in startling reality the taste of something redolent of feet, and the intensely chewy nature of eating it. The story was wildly popular, sweeping across the planet.\n\nWelles knew when she had been beaten. The public outcry had only just begun, when Welles contacted Jane.\n\n‘I can’t stand the thought of such a loving couple being separated any longer,’ she teeped. ‘Let me know where you are, and I’ll send a helicopter to pick you up and bring you to your husband.’\n\nJane was not used to attention in any large quantity, and Welles contacting her personally was even more unsettling to her. And so she did not consider the ease with which she had come to her victory, nor the grave import of the matter. \n\nJane did not find it strange that the other people on the helicopter were of a decidedly militaristic appearance. She did not question when they brought her to a prison, or when they asked her to empty her pockets. \n\nJane was led into a small room. There were no windows. The walls and ceiling were covered in what looked like tin foil. Jake finally began to suspect that something was amiss when she noticed that the floor was covered with tin foil as well. \n\nShe waited int eh tin foil room for a very long time; several hours at least. The door opened at last and Welles entered. \n\n‘Well, there’s the cunt,’ said Welles. ‘How do you like our little teep-proof cage?’\n\n‘I’m sorry?’ said Jane. ‘Where’s my husband?’\n\n‘Look, honey, I don’t know what you think is going on here, but what I think is that you completely ruined my plans, and now I’m going to make you pay for it.’\n\nIn such a situation, you might imagine that Jane would have been terrified, but it seems her primary emotion was frustration. That teeping was the source of the trap in which she now found herself was a great injustice. When she turned to Welles, there was not a drop of blood in her face,[^1] and Jane answered as if she were insane.[^2]\n\n‘I don’t know if it’s a marvel or a monster, but I can tell you that it isn’t natural, and I never wanted to teep.[^3] I didn’t even really want to see Franklin again. The only reason I did any of this was that I felt like such an awful piece of shit doing what I wanted while he was going through so much.’\n\nRemembering her own choice between familial duty and ambition that had been the beginning of so much in her life, Welles had great compassion for Jane, who had not been able to make the same bold choice.[^4] \n\nAnd so she said, ‘Honey, I’ve had a change of heart. You may not believe this, but I’ve been in your shoes. I know how you feel. So, let’s just forget about all this. You’re free to go.’\n\n‘I’d like to see my husband,’ said Jane.\n\n‘Are you sure?’\n\n‘Yes.’\n\nPerhaps you think Welles was foolish in this. To let all her so carefully laid plans for a reserve free of all Alien influence be jeopardized by what amounted to mere sentimentality. Pay attention to the rest of the tale, for it may work out better than you expect.[^5] \n\n‘Very well,’ said Welles. And then she added, ‘But I will tell you this, the next time you have to choose between duty and ambition, stick with your dreams. Also: if you ever tell anyone about this, I’ll have you killed.’[^6]\n\n*Chapter 33 tomorrow, same time, same place.*\n\n[^1]: In al hir face nas a drope of blood. **Geoffrey Chaucer, _The Franklin’s Tale_ 1392**\n[^2]: And she answerde, half as she were mad. **Geoffrey Chaucer, _The Franklin’s Tale_ 1392** \n[^3]: She wende nevere have come in swich a trappe/ ‘Alas!’ quod she, ‘that evere this sholde happe!/ For wende I nevere by possibilitiee/ that swich a monstre or merveille might be!/ It is agains the process of nature!’ **Geoffrey Chaucer, _The Franklin’s Tale_ 1392**\n[^4]: And in his herte hadde greet compassioun/ O fhire and of hir lamentacioun. **Geoffrey Chaucer, _The Franklin’s Tale_ 1392**\n[^5]: Paraventure an keep of yow, ywys,/ Wold holden him a lewd man in this,/ That he wol putte his wife in jupartye../ Herkneth the tale er ye upon hire crye/ She may have bettre fortune than yow semeth;/ And when that ye han herd the tale demeth. **Geoffrey Chaucer, _The Franklin’s Tale_ 1392**\n[^6]: And seide, ‘I yow forbede, up peine of deeth,/ That nevere, whil thee lasteth lif ne breeth,/ To no wight tel thow of this aventure. **Geoffrey Chaucer, _The Franklin’s Tale_ 1392** \N 14015 \N 114367 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.1919202257108 0 \N \N f 0 \N 0 41879884 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 131404 2024-02-23 22:03:03.896 2025-03-29 22:39:48.156 Looking for a post discussing 2:2 vs 2:3 multisig cold storage In another thread I mentioned a takeaway that stuck with me having read at some point about the merits of 2:2 multisig, as opposed to 2:3\n\n... but for the life of me I can't find it. Not sure if it was here, twitter, or elsewhere.\n\nThe gist was that the added complexity of managing 2:3 makes it less failure proof 2:2 and that the redundancy is a paradox. There was more to it than that, and so I'd like to re-read it. \n\nOthers requested it as well per the conversation in the other thread: https://stacker.news/items/323877/r/0330830bf9\n\nI'm putting up 6150 sats for the best steel man of 2:2 vs. 2:3 in an effort to crowdsource a search.\n\n\n \N 21349 \N 131404 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.1684661845652 0 \N \N f 0 \N 0 17297969 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 114730 2024-01-17 15:56:10.318 2025-03-29 22:39:48.156 A wallet Ui for your Phoenixd Private Server Source code can be found on https://github.com/Hodladi/Phoenixd-Server-Ui\n\nReally enjoining the simple and pixel base interface thanks @Hodladi\n\n\n![](https://m.stacker.news/53490)\n\n![](https://m.stacker.news/53491)\n\n![](https://m.stacker.news/53492)\n\n![](https://m.stacker.news/53493)\n\n![](https://m.stacker.news/53494)\n\n![](https://m.stacker.news/53495)\n\n![](https://m.stacker.news/53496)\n\n![](https://m.stacker.news/53497)\n\n![](https://m.stacker.news/53498)\n\n![](https://m.stacker.news/53499)\n https://pwallet.app/ 13216 \N 114730 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.558761577886067 0 \N \N f 0 \N 0 157570681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 125994 2024-02-11 19:56:12.396 2025-03-29 22:39:48.157 The Penal Preserve, Chapter 12 *This is chapter 12 of **The Penal Preserve**, you may want to go back to [Chapter 11](https://stacker.news/items/617172) or [start at the beginning](https://stacker.news/items/599283).*\n\n# 12\n\nRoss had not participated in the massacre, biding his time instead on the sidelines. But now he made his way through the dead and the feasting toward Rae. Ross saw that Rae was the true leader of the massacre. He beckoned to the nearby guards, who made a somewhat disorderly entourage, covered as they were with potato chips and flecks of whipped cream. \n\n‘Guards,’ Ross said when they reached Rae. ‘This man is a true hero. Salute him!’\n\nThe noise of the massacre had brought Jane from her tree dwelling where she was writing. She was confronted with a scene of such carnage, she could not bring herself to believe it. But when she saw Ross marching across the field toward Rae, she raced down the ladder.\n\n‘What have you done?’ said Jane.\n\n‘He has saved our race from certain destruction,’ said Ross before Rae could answer. ‘What happened here today is nothing short of our salvation.’\n\n‘They didn’t have any weapons!’ said Jane. ‘All they had was food.’\n\n‘They had Alien things,’ said Rae, lifting up a lava lamp one of the Vacationers had brought to keep her gravy warm. ‘These kind of things threaten our unity. None of us is strong enough to resist them. They must be removed from the island.’[^1] \n\n‘You didn’t have to kill all these people!’ Jane stammered.\n\n‘We have to get rid of it! We have to get rid of it all!’ Rae shouted. ‘We have no choice. Everything Alien—it has to be eradicated, just off the face of the Earth. It’s evil. It’s just evil.’[^2]\n\n‘Arrest him,’ Jane said to Ross.\n\n‘Arrest him? He should get a medal for conspicuous gallantry!’[^3]\n\nBy this time a large crowd had gathered around them, and they sent up a great cheer at Ross’s commendation. The clamoring continued for some minutes until Rae consented to address them. I have recorded here the traditional version of Rae’s speech, but there is no doubt it is much amended—Rae never was much of a speechifier. \n\n‘My good friends,’ said Rae.[^4] ‘More than five years have passed since the unhappy day when the people of Earth lost touch with honor and freedom—and now we have almost lost everything.[^5] The Aliens landed on our planet and we did not try to fight them. Maybe the future won’t hold that against us. But we’ve become addicted to them and to everything they have to offer. We’re worse than a drunk with a wine barrel.[^6] And the future—if there is one for us—will judge us harshly for that. The Aliens have attacked the foundations of our whole human order. The things they’re selling us are changing our society, our morals, even our very nature.[^7] And we’ve all been going along happily, like little kids in a candyshop. This threat cannot be ignored. This threat cannot be appeased. Civilization itself, the civilization we share, is threatened.[^8] But today...today a great people has been moved to defend a great nation![^9] While it seems like the whole world has bowed down before the Aliens, on this little island, our little group of prisoners has had the courage to stand up and shout, No!\n\n‘It’s not enough that we keep ourselves free from the Alien taint. We must ostracize anyone who supports the Aliens. No one can remain neutral in this fight.[^10] Those who use Alien things lose any right to be called decent people![^11] There is no such thing as a good person who uses Alien things. No convenience, no advanced technology, no solution to social problems can ever justify the deliberate murder of our civilization.[^12] So I have the courage to recognize these people’s role in the process and to name them by name.[^13] They are Croakers. Those who use the Aliens things are Aliens as much as the Croakers themselves—they have to be rooted out, hunted down, and destroyed.[^14] \n\n‘Revive the human! Destroy the Alien! Revive the human! Destroy the Alien!’[^15]\n\nSoon, all the Penists were chanting along with Rae.\n\n*Chapter 12 tomorrow, same time, same place.*\n\n[^1]: The Jews must be removed from the German community, for they endanger our national unity. **Joseph Goebbels, “The Jews are Guilty!” 16 November 1941**\n[^2]: We have to get rid of ISIS. Have to get rid of ISIS. We have no choice. Radical Islamic terrorism. And I said it yesterday—it has to be eradicated just off the face of the Earth. This is evil. This is evil. **Donald Trump, “Remarks by President Trump and Vice President Pence at CIA Headquarters,” 21 January 2017**\n[^3]: For conspicuous gallantry and good conduct in action against hostile Sioux Indians, at Wounded Knee Creek, South Dakota, while engaged with the Indians concealed in a ravine, assisting men on the skirmish line, directing their fire, encouraging them by example, and using every effort to dislodge the enemy. (Medals of honor.) **J C Kelton, Adjutant General, by order of John McAllister Schofield, Commanding General fo the United States Army, General Orders No. 100, General Orders and Circulars, Headquarters of the Army, Adjutant General’s Office, 17 December 1891**\n[^4]: My good friends. **Joseph McCarthy, “Reply to Edward R Murrow,” See It Now, 6 April 1954**\n[^5]: More than fourteen years have passed since the unhappy day when the German people, blinded by promises from foes at home and abroad, lost touch with honor and freedom, thereby losing all. **Adolf Hitler, “Proclamation to the German Nation,” 1 February 1933**\n[^6]: Never forget that the human race with technology is just like an alcoholic with a barrel of wine. **Ted Kaczynski, “Industrial Society and Its Future,” 22 February 1995**\n[^7]: Bolshevism has attacked the foundations of our whole human order, alike in State and society, the foundations of our conception of civilization, of our faith and of our morals: all alike are at stake. **Adolf Hitler, 14 September 1936**\n[^8]: This threat cannot be ignored. This threat cannot be appeased. Civilization, itself, the civilization we share, is threatened. **George W Bush, “First Address to the United Nations General Assembly,” 10 November 2001**\n[^9]: A great people has been moved to defend a great nation. **George W Bush, “A Great People Has Been Moved to Defend a Great Nation,” 11 September 2001**\n[^10]: It must ostracize any nation that supports terrorism. It must isolate any nation that remains neutral in the fight against terrorism. **Rudy Giuliani, “Opening Remarks to the United Nations General Assembly Special Session on Terrorism,” 1 October 2001**\n[^11]: Those who practice terrorism, murdering or victimizing innocent civilians, lose any right to have their cause understood by decent people and lawful nations. **Rudy Giuliani, “Opening Remarks to the United Nations General Assembly Special Session on Terrorism,” 1 October 2001**\n[^12]: Yet there is no such thing as a good terrorist. No national aspiration, no remembered wrong can ever justify the deliberate murder of the innocent. Any government that rejects this principle, trying to pick and choose its terrorist friends, will know the consequences. **George W Bush, “First Address to the United Nations General Assembly,” 10 November 2001**\n[^13]: However, we have the courage to recognize their role in the process and to name them by name. **Joseph Goebbels, “The Racial Question and World Propaganda,” 1933**\n[^14]: We just need to call them what they are—killers and fanatics who have to be rooted out, hunted down, and destroyed. **Barak Obama, “State of the Union Address,” 12 January 2016** \n[^15]: 扶清灭洋. **Boxer Uprising Slogan, 1899** \N 10016 \N 125994 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7375703788396 0 \N \N f 0 \N 0 53880107 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 127832 2024-02-16 10:27:58.637 2025-03-29 22:39:48.157 Feedback wanted: a site to find all Bitcoin conferences in one place I recently launched a website that might be useful for anyone interested in Bitcoin events: [bconf.org](https://bconf.org). It's a simple tool that brings together all the Bitcoin conferences happening around the world in one place.\n\nA few things you can do on the site:\n\n- **Find all upcoming Bitcoin conferences** on a global map.\n- **Filter by continent or location** to see what's happening near you.\n- **Submit a conference** to be added to the site and help others discover new events.\n- **Subscribe to a monthly newsletter** to get new and upcoming conferences straight to your inbox, plus potential discounts.\n\nI’d love to hear any feedback or suggestions you might have! Feel free to check it out if you're into Bitcoin events. 😊\n\n![](https://m.stacker.news/51224) \N 18608 \N 127832 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.1625463857738 0 \N \N f 0 \N 0 44516776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 127848 2024-02-16 11:47:07.848 2025-03-29 22:39:48.157 Will you retire? Whatever retirement means to you\n\nif you haven't already \N 10549 \N 127848 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.80461277222111 0 \N \N f 0 \N 0 191218159 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 130487 2024-02-21 21:01:55.338 2025-03-29 22:39:48.157 Operation Saylor - Episode 24/120 # Operation Saylor - Episode 24/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 24, corresponding to June 2024.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.29952304BTC\n- € stack: 477.40 €\n- Current total value in €: 79,098.54 €\n- € into BTC: 30,000 €\n- Paid back to bank: 8,422.60 € \n- Outstanding debt + interests: 35,521.73 €\n- Installments to go: 97\n\n\n## Charts\n\n[![episode-24-bitcoin-stack.png](https://i.postimg.cc/VNzhtTRR/episode-24-bitcoin-stack.png)](https://postimg.cc/rDYgXf70)\n[![episode-24-stack-value-vs-debt.png](https://i.postimg.cc/BvNVBg7G/episode-24-stack-value-vs-debt.png)](https://postimg.cc/gwXsYvPM)\n\n---\n\n## Log \n\nHello again, and welcome to a new episode of the series. Today, we finalize with the handful of episodes that I want to dedicate to discuss how to measure the performance of Operation Saylor.\n\nAs a reminder, on [Episode 22](https://stacker.news/items/522161) I discussed the relevance of taking both risk and return into account, how I believe performance is a function that goes through all time and not just until the end of the Operation, and why comparing against DCA doesn't make all the sense. On [Episode 23](https://stacker.news/items/550749), I presented to you the Exit Value metric, as well as its time-accounting derivative, the Integrated Exit Value.\n\nOn this episode, I want to leverage that we are now a bit on the same page since the previous definitions and explanations, and use that to run something more fun: comparing Operation Saylor against another course of action, much more traditional and frequently recommended.\n\nNow, you might remember from Episode 22 how I discussed that comparing Operation Saylor against simply DCA-ing the equivalent of the loan installments wasn't valid, for Operation Saylor is a cashflow free that doesn't require me adding funds regularly. DCA-ing, on the other hand, would require me to add funds each month. Thus, we would be comparing apples to oranges.\n\nNevertheless, I _really_ want to compare this against a normal DCA. To make this possible, I'm going to play a small trick and present to you a theoretical course of action I'll dub DCSAY. DCSAY is simply playing an imaginary parallel universe where I would have run Operation Saylor identically to what I've described so far, with the only caveat that I would have paid the loan installments from my personal pocket instead of using the Operation's stack. Because of this, in DCSAY, I would have simply built up my bitcoin stack at the beginning of the story and I would have never sold a single sat, but used my personal euro funds instead.\n\nNow, because this hypothetical backtest, just like a normal DCA, implies paying out 366.20€ each month out of my pocket, we're back to comparing apples to apples territory. It is not a fully honest comparison towards the real Operation, but it serves well the purpose I'm after: comparing the risk/return of taking the loan or not.\n\nOkay, now that's been quite a few hoops we jumped and we still didn't start with the juicy bit. So, you might be wondering, why all the trouble to benchmark against the DCA?\n\nOne of my frustrations before I started Operation Saylor, and one of the reasons I started writing about it, was how commonly borrowing fiat to buy bitcoin was (and is) regarded as a crazy, irresponsible and mindless thing to do without any kind of analysis. And I'm not even talking about normies thinking such things: to them, just buying bitcoin is already beyond salvation, no need to bother with leverage. What got me was seeing seasoned Bitcoiners everywhere jumping into such a mental shortcut, while disregarding first principles thinking. My hope when I started writing was that Operation Saylor could serve as a corner of discussion for this topic, as a real story that would describe in high precision and step by step how doing this looks and feels like, and also just as a bit of good old leading by example.\n\nAs time has passed, I've spent more and more time reflecting on this topic and I've also learned a thing or two along the way. With this experience, I've changed my mind: now, not only I think that borrowing fiat to buy Bitcoin is not crazy, but I actually think that for many people [^1] it is, within certain bounds, a vastly superior strategy to DCA.\n\nSo, I'm hoping many of such people can read this comparison and at least give it some thinking.\n\nNow, enough setting the foundations and justifying. Let's compare some numbers, shall we? For the following figures, DCA means doing DCA with the equivalent to the loan installments. DCSAY I've already explained above. Any other factors I haven't covered in detail (when to buy bitcoin, the price over time, etc) you can assume to be identical to the real Operation Saylor.\n\nLet's begin with a simple one: the size of the Bitcoin stacks for each strategy:\n\n[![episode-24-btc-stacks-compared.png](https://i.postimg.cc/ZqPbL1pD/episode-24-btc-stacks-compared.png)](https://postimg.cc/yJdC1pfF)\n\nNow, that's a predictable one. DCSAY means making a handful of big purchases during the first six months and then staying there. DCA keeps on adding slowly. Obviously, DCSAY has the upper hand here. But then again, it would be foolish to ignore the liability that exists in DCSAY and does not in the DCA. I would also like to direct your attention to the steepness of the orange line: it's not that noticable, but you can see its growth is slowing down. As sats get more precious, the DCA strategy has more trouble to climb against the DCSAY stack. We'll have to wait eight more years to find out if the lines ever cross.\n\nLet's look at both in fiat terms:\n\n[![episode-24-fiat-value-compared.png](https://i.postimg.cc/CLZw2Zb8/episode-24-fiat-value-compared.png)](https://postimg.cc/9rh3RQ8X)\n\nKind of the same story as the Bitcoin denominated time, just with the added touch of reflecting the volatility in the BTC-EUR price. Nothing to see here besides flashy fiat amounts.\n\nNext, we look into something way more interesting and relevant: the Exit Value. Note that, in the case of the DCA option, since there's no liability at all, the Exit Value is simply the value of the DCA stack itself.\n\n[![episode-24-exit-values-compared.png](https://i.postimg.cc/MHLqTxJX/episode-24-exit-values-compared.png)](https://postimg.cc/XB9THRJ0)\n\nNow, this is something else. The first observation is how the Y-axis negative area comes to life: with the introduction of liabilities into the comparison comes the fact that DCSAY (and generally, any strategy that borrows money) can go negative. Here, the DCA option can flex: you might accumulate more or less, but you won't ever step into red numbers territory.\n\nIn late 2022, with the bear market still heading towards the local bottom, DCSAY stayed in the red for quite a bit. This is the kind of risky exposure that borrowing fiat comes with, and that should clearly be taken into account when judging options. Nevertheless, as we got through the FTX drama, DCSAY caught up with DCA and boomed afterwards, with an upside that has been much stronger than the previous downside.\n\nThe final chart I want to show you condenses all of this in one picture:\n\n[![episode-24-integrated-exit-values-compared.png](https://i.postimg.cc/vZfbQpqH/episode-24-integrated-exit-values-compared.png)](https://postimg.cc/tsqLkmGL)\n\nDon't get blinded by the Y-axis values: what you see is an integral, so it's not really euros we are measuring there. The integral accumulates negative values everytime we spend a month in the red (negative Exit Value) and grows everytime we spend a month in the green (positive Exit Value). The more intense the green/red, the more the curve climbs/drops. Every month in the history counts, and so staying in deep red penalises you forever, just like being heavily in the green rewards you.\n\nThe simple way: higher is better.\n\nNow, the DCA strategy can't ever go into negative territory here, since its Exit Value can't be negative due to the lack of liabilities. And it took the lead against DCSAY for a long time because of that early period in the bear market when things were looking bleak. But the recent pumps of 2024 allowed DCSAY to clearly overtake the DCA. It makes sense: the sourness of a few months being in the red in 4-figures magnitude don't cover up the sweetness of being in the green in 5-figures magnitude.\n\nSo, the comparison begs the question: did DCSAY, the slightly modified cousin of Operation Saylor, beat DCA-ing? My conclusion is it clearly did, as shown in the monster gap that we are now experiencing in the last graph. Although let's keep in mind we are early and this chart can evolve in volatile ways as time passes. I don't want to sell the skin before we hunt the bear.\n\nAlso, this doesn't mean the DCSAY strategy is going to beat any DCA. The timing I experienced was extremely good, pretty much nailing the entry in 2022's bear market. Different entry points would lead to different pictures, some nastier and some prettier. This is another interesting line of analysis that I'll hopefully tackle some other time in the series.\n\nI hope you enjoyed this and the last couple of episodes. With this episode, we'll conclude the barrage of numbers and metrics. Next month will be time to reflect a bit and celebrate the second anniversay of the Operation. As always, thanks for reading and I'll see you next month.\n\n\n[^1]: I wouldn't consider borrowing a good strategy for everyone. But for those individuals and families that (1) are currently out of debt, (2) have stable incomes that can survive recessions and (3) have strong saving rates and can be confident costs won't eat them up, it feels like a no brainer. Discussions might be held around what amount to borrow, and what's a good enough interest for it. But, making an extreme case: if such a profile was offered to borrow a 100€ for a 100 years at a 1% APR... why not do it?\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n- Episode 16: [https://stacker.news/items/288719](https://stacker.news/items/288719)\n- Episode 17: [https://stacker.news/items/322189](https://stacker.news/items/322189)\n- Episode 18: [https://stacker.news/items/363765](https://stacker.news/items/363765)\n- Episode 19: [https://stacker.news/items/394704](https://stacker.news/items/394704)\n- Episode 20: [https://stacker.news/items/450792](https://stacker.news/items/450792)\n- Episode 21: [https://stacker.news/items/476945](https://stacker.news/items/476945)\n- Episode 22: [https://stacker.news/items/522161](https://stacker.news/items/522161)\n- Episode 23: [https://stacker.news/items/550749](https://stacker.news/items/550749)\n \N 17041 \N 130487 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.1953580936193 0 \N \N f 0 \N 0 66828517 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 132516 2024-02-26 09:27:57.211 2025-03-29 22:39:48.156 New $69,420 meme just dropped I made this meme 3 years ago. Have been holding onto it ever since. Having convincingly breached 69,420, I'm releasing it! Enjoy.\n\nIt's quite the time capsule. https://primal.net/e/note1j0hygmq28rh7zf0zvsrdg8c8msva2vmds0t68s9llasemtadzzgqpv7h3e 10063 \N 132516 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6554893055064 0 \N \N f 0 \N 0 166365489 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 135668 2024-03-03 12:43:40.438 2025-03-29 22:39:48.157 Hey stackers it's Paul from Sphinx & Stakwork, AMA https://stakwork.ai\nhttps://sphinx.chat\nHappy to talk about all things lightning, food, hunting, whatever :)\n \N 18005 \N 135668 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.08532157170759 0 \N \N f 0 \N 0 230452218 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 136187 2024-03-04 09:35:05.535 2025-03-29 22:39:48.157 2 New bug reports DELETED from Samourai Wallet's Gitlab Repo \N https://bitcointalk.org/index.php?topic=5471645.0 21406 \N 136187 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.58037513836028 0 \N \N f 0 \N 0 54750666 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 136836 2024-03-05 09:51:14.424 2025-03-29 22:39:48.157 Can we please have inconspicuous hardware wallets? Why hww manufacturers insist on making their devices look the way they basically scream "crypto here, take me and beat the hell out of my owner to get the PIN - easy money"?\n\nI know that exposed branding and unique design are usually good from the marketing standpoint but should we really advertise that we have a hardware wallet on us? Imagine some thief digging through your stuff and seeing a bunch of unbranded USB sticks - it's just USB sticks, there is a chance they are looking for quick money and they will not take them. But hold on, this stick has a name on it... Ledger... hmmm, I know that one, it's this computer money thingy - aaaaand it's gone. Or they go through your wallet and see just a plain white card, maybe with just some numbers on it - probably a proximity access card, nothing interesting. But hold on, the other side has some Bitcoin meme imprint, or a big Tapsigner logo - same scenario as above.\n\nThief scenario does not convince you? How about a similar situation but it's not a thief, per se but a border guard at the international airport. I don't know about you but I would rather avoid risking missing my flight because TSA guy recognized hww manufacturer logo and I had to argue with the customs that no, this Bitcoin hww does not hold millions of dollars and no, I am not breaking any rules regarding carrying more money on me than x amount. Or perhaps you live in a place where cops are corrupt and dirty. They stop you, search you, copy your personal data and let you go. But later that evening you get a home visit of masked guys with baseball bats because those dirty cops saw your funny usb stick with Ledger logo on it by your keys when they were searching you.\n\nCryptocurrency related branding = big target on your back.\n\nMy point is that not in all but in many cases it's actually easy to make those devices look inconspicuous. It does not require any development effort - just give an option to order a device without branding. I can understand that some manufacturers might not be happy to do that when all they sell is just one design (e.g. Jade). Adding a second one, even if it is as simple as the first one just without a logo/name, introduces some complexity to manufacturing and shipping logistics (not a lot but still). But there are manufacturers who already give you a lot of options, just not the one to skip the branding (looking at you Ledger and Tapsigner). Come on!\n\nThe first crypto security rule is not to tell people around you that you HODL Bitcoin (or whatever other crypto). So by definition you will probably try to keep your hww out of sight. Why the flashy branding then? It is not going to do any marketing job anyway, it's not a t-shirt. And on those rare occasions when the device might be visible it is actually better if it does not advertise what it is. \N 21547 \N 136836 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.02832923461494 0 \N \N f 0 \N 0 165482975 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 136943 2024-03-05 13:08:26.316 2025-03-29 22:39:48.157 November 2023 Newsletter: The Monetary Gates Are Open \N https://www.lynalden.com/november-2023-newsletter/ 21829 \N 136943 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.2798520703963 0 \N \N f 0 \N 0 50129676 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 137233 2024-03-05 23:41:25.863 2025-03-29 22:39:48.158 [Event] Freedom Festival powered by Bitcoin - May 4th Connecticut Come to our FREEDOM FESTIVAL May 4th in Connecticut!\n\nSpeakers and workshops on Health and Wellness, Spirituality, Wim Hof Breathing, Bitcoin, Mining, Node running, Self Custody, Estate Planning and more!\n\n- Cattleman's Feast with Texas Slim (Carnivore, anyone!?)\n\n- Hot tub heated by Bitcoin miners\n\n- Cold plunge challenge\n\n- Parkour competitions with bitcoin prizes\n\n- Live music\n\n- Soccer shootout (can you score on our speakers and wins some sats???) \n\n- Plus......drone soccer!!! (the kids will love this)\n\n**More info and tickets at https://massadoption.net**\n\nSave 20% on your ticket with code: Needcreations20\n\n**We also have a non-coiner ticket for only $25 for for those who are new to Bitcoin (your friends and family!) Additionally, kids 16 and under are free**\n\nHope you can join us!\n\n![newest freedom fest flyer with prices.jpg](https://m.stacker.news/26616)\n\n\n \N 14607 \N 137233 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.80029437575215 0 \N \N f 0 \N 0 149216753 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138445 2024-03-07 14:30:47.467 2025-03-29 22:39:48.158 A sad and hopeful evening with economics students I teach an undergraduate course at university where a large chunk of students are pursuing a bachelor's degree in economics. I am not an economist myself (my course covers contents typically associated to engineering) although I did take a few courses on micro and macroeconomics at university back in the time, and have done my fair share of research while falling down the Bitcoin rabbit hole. I would say I'm relatively familiar with the works of Keynes and Hayek specially, although I have also read some from Mises, Friedman and Rothbart. In any case, I don't consider myself an expert by any means. Simply someone with an interest.\n\nOn the last day of the course I teach, I like to invite the students to have a drink in the bar next to the faculty building as a final farewell. Last time I did this, I decided that I would take the chance of having around 15 students who where just about to finish their economics degrees to test a bit their thoughts on the Austrian school and some of the topics that bitcoiners like to deal with (inflation, gold standard, monetary policy, banking regulations, etc).\n\nAfter a few questions I was terribly disappointed. These poor men and women were stuck in a terrible mix of Keynesians ideas or simply not knowing stuff at all. I threw questions at them such as:\n- Why is inflation good? Why target 2% and not 20%? Why is deflation bad?\n- Why should the government handle monetary policy? How were things before that was the case?\n- Why is gold valuable?\n- How does a negative interest rate sustained for more than 10 years make sense?\n\nMy answers were mostly met with confused eyes, silence and some rather poor Keynesian ideas. Their arguments didn't offer much resistance to some basic and simple challenging, and after a few comeback attempts, the group eventually settled for the fact that they didn't really have clear answers for the questions they were facing. I decided to leave it there and switch to more cheerful and menial conversations because I didn't want to ruin their end of course drinks.\n\nMy mood took another step down when a bit later, one of the students shared a brief confession with me. In rough lines, he basically told me that he felt he was finishing his degree without really understanding that much. That they had spent countless hours on these abstract and obscure mathematical models for both micro and macroeconomics, but that he couldn't really tie all of his knowledge together into something that felt intuitive, solid and clear (it reminded me of some of the criticisms of Hayek, Mises and other Austrian's towards Keynes works in the 1920s that regarded his works as obscure, complicated and incoherent). He concluded by telling me that he was planning on pursuing a professional carreer in Data Science or Software Engineering, and that he felt that his degree in economics had been a pretty hefty waste of time.\n\nAt that point I felt quite sad, realising how the university was wasting these brilliant minds away, and how some of them intuitively knew about it although they couldn't really pinpoint what was wrong. I was ready to head home feeling blue when the most brilliant student I had in that course edition walked to me and resumed my question about why deflation is bad. He told me: "I think that [the idea that deflation is bad for the economy] is a big crock of shit. My Public Economics teacher told me that deflation starts a spiral where people buy nothing because they would rather wait to have more purchasing power in the future. But that's bullshit. I won't stop buying condoms today so that I can buy more next year".\n\nEven though I still had a bitter taste when driving home, knowing that there is always some punk willing to challenge the dogma put a smile on face.\n \N 5499 \N 138445 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.8758869250305 0 \N \N f 0 \N 0 181680893 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 138984 2024-03-08 06:30:33.546 2025-03-29 22:39:48.159 Hey! I’m Azz, a founder of Valera. Ask me anything! Hey everyone! I’m not as well known in the bitcoin space as others who have done AMAs before me, but I’d love to answer any questions about what we’re working on @Valera. \n\nMy latest post was a tweetstorm about a project called Indra, a LN node runtime capable of managing hundreds of thousands of Lightning nodes on a single server. \n\nAsk me about:\n- Indra\n- Combining hardware and software\n- Software from embedded to massive “cloud” scale\n- Our upcoming hardware, Live Signers (internet connected signers) and Insignia (our payment ring)\n- What I think about the future of Bitcoin/LN\nAnd anything else you can think of!\n\nLooking forward to answering some Qs :))\n\n—-\n\n[Podcast with Kevin Rooke](https://fountain.fm/episode/11599126275)\n[Tweetstorm](https://twitter.com/617a7a/status/1594696672973570048?s=20)\n\nAbout me: I’m a 16 yo developer from the UK. Doing bitcoin things for 2 years now!\n \N 940 \N 138984 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.1671062860728 0 \N \N f 0 \N 0 2103360 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 139338 2024-03-08 17:00:40.137 2025-03-29 22:39:48.159 Why do apps keep updating, adding features we don't need? Every single messenger app looks same these days. They almost all offer stories, video/audio calls, profiles etc. \n\nSelf-destructing stories in my opinion started with **Snapchat** stories, then **Insta**, **Whatsapp** after being bought by Meta, and now appears in Facebook's **Messenger** too alongwith web **Facebook** interface.\n\nSimilarly, so called shorts/vines started and then caught up with **TikTok**, and now it's everywhere from **Youtube shorts**, to **Insta shorts**, and now I guess Twitter is going similar way too.\n\nWhatsApp recently released a feature where we can follow and see stories of the celebs. I don't want to see celebs on my messaging app. If i want to follow, I will do that on any of their public handles like Twitter or Insta, NOT ON my WhatsApp. How hard is this thing to understand to people running these companies, making their apps BULKIER, SPAMMY and BUGGY, limiting their userbase and downgrading their real UTILITY by each update.\n\n- Insta was sick for sharing photos, before meta's takeover\n- Facebook was by far the easiest way to connect to lost old friends. You could have just searched by name without fear of being tracked.\n- Youtube was the way to see genuine videos, without people click baiting you for monetization.\n- Similarly, Whatsapp was the best way to say goodbye to carrier messaging. It retired leading services like Viber/Skype when it added video+audio calls.\n\nBut now, I think there's a point when they should stop updating, just make your framework sleek, make UI and security patches and release the f*****g app, don't add any more features that are not requested. One reason for the useless updates might be monetization and visibility. But, I think it hurts the framework in long-term.\n\nI sometimes fear that SN might go the similar route, I might be mistaken.\n\n \N 18351 \N 139338 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.1087890494511 0 \N \N f 0 \N 0 34432460 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 139939 2024-03-09 17:50:13.385 2025-03-29 22:39:48.161 April 1 SN Announcements? Tomorrow is April 1, when, as we know, all the best and important tech announcements drop. So what's the most likely Stacker News update? \N 4177 \N 139939 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.7235751582446 0 \N \N f 0 \N 0 98889442 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 139965 2024-03-09 18:32:29.221 2025-03-29 22:39:48.161 Commit to competence in this coming year The new year is a great time to reflect not only on what you want to achieve but also how you want to achieve it. https://world.hey.com/dhh/commit-to-competence-in-this-coming-year-feb7d7c5 1162 \N 139965 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.3665158041747 0 \N \N f 0 \N 0 211056466 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 140033 2024-03-09 20:24:51.295 2025-03-29 22:39:48.161 What advice would you give during a RECESSION? Besides the obvious STUDY bitcoin of course...\n\nhttps://i.redd.it/nwdviswy0sv41.jpg \N 20768 \N 140033 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9508159883725 0 \N \N f 0 \N 0 162993234 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 140488 2024-03-10 12:04:52.041 2025-03-29 22:39:48.161 I pay a 5-8% premium for Non KYC Bitcoin, and so should you. \n\nTL;DR You should happily be paying a 5-8% premium and putting the extra effort for purchasing Non KYC Bitcoin. The reason being, Non KYC Bitcoin will never be cheaper than it is now. If your Bitcoin is non-KYC'ed, you will always be able to sell it make at the same premium. However if shit hits the fan, and governments try to block the exits, your Non KYC Bitcoin will be worth considerably more.\n\nBefore going into the benefits of Non KYC Bitcoin, I just want to give a general guide on how to obtain it because it is not as hard as you might expect. \n\n1. To make your purchase untraceable, you want to try and purchase your Bitcoin through the Lightning Network. This can be done via RoboSats (If you are in US or Europe, there are always tons of options) or with Azteco Vouchers. Certain KYC exchanges also allow you to withdraw via Lightning. If you cannot use any of these options, try tracking down a Bitcoin ATM that accepts cash and does not require KYC. Buying over Lightning means that your Bitcoin has no clear "origin" on-chain.\n\n2. When you have your purchase in Lightning, you can use Muun Wallet or dedicated swapping services like Boltz to swap your Lightning Balance for On-Chain Bitcoin.\n\n3. Next, which is perhaps the most important part, is to carry out a Coin Join, so that you coins trully become untraceable and anonymous. I prefer to use Wasabi Wallet for this, but there are many other options you can explore. Please do your research. Once you coins have been coinjoined, move each UTXO you end up with individually without mixing them, to a new unique Address from your cold storage. Congrats, you now have 100% uncensorable money!\nNow the rationale going through all this trouble goes beyond just "Good Privacy Practices", I believe there is a clear economic incentive in doing so.\nOptions for purchasing Bitcoin in a Non KYC fashion are becoming gradually fewer and fewer because of the government and the banking sector pressure. At beginning of Bitcoin's history, almost all Bitcoin purchases were Non KYC, now I wouldn't be surprised if it's less than 10%.\n\n It will be getting harder and harder to find Non KYC options in the future, especially if you country goes through a currency debasement event. \n\nThe few options that are left will be able to charge much higher premiums in the future... So I estimate you are better off acquiring this Non KYC now at the current premium rather than later when you might really really need and you pay a much larger premium.\n\n Furthermore, that additional cost you paid for that Non KYC is far from "lost", if you need convert back to fiat the following month for example, you can charge exactly the same premium as you were charged for your Non KYC Bitcoin. If, however, you hold on to said Bitcoin for 5-10 years and then want/need to sell, then the premium you could charge could be significantly higher, as high 20%-50% depending on your the situation in your jurisdiction and whether Bitcoin is forced to operate in a Black market. Whatever the situation is, I'm sure you will always be able to charge at least 5% over the current market price.\n\nFinally, keeping the best for last, if you ever need to sell that Bitcoin, you won't need to pay any capital gains tax on it....Which will save you much more money than the premium you initially paid. \N 17095 \N 140488 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5828513625352 0 \N \N f 0 \N 0 68486330 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 141061 2024-03-11 09:10:39.856 2025-03-29 22:39:48.162 Alyse at Stillmark | AMA Bitcoin VC I am Alyse Killeen, general and managing partner at Stillmark. AMA\n\nHello Everyone! My name is Alyse (@AlyseKilleen), Founding managing partner at Stillmark (@HelloStillmark), the first Bitcoin-focused venture capital firm. Started in 2019, the firm invests in and supports companies and entrepreneurs that are building products, services and technologies to support the Bitcoin ecosystem. \n\nWe currently have 11 portfolio companies (companies in which we have invested) including some names with whom you may be rather familiar, some you may not (yet) – but all that you should want to know. \n\nAnd a little more about me: I’ve been in the venture capital industry since 2012 and began advising and investing in Bitcoin and blockchain startups in 2013. I serve on the board of Blockstream, Satoshi Energy and IBEX Mercado. I love working with founders and their teams, helping them to achieve their ambitions while changing the world by leveraging Bitcoin to create equitable participation in the financial economy. \n\nAsk me about:\n•\tWhy Bitcoin over other cryptocurrencies\n > https://www.reddit.com/r/Bitcoin/comments/nsx5hx/alyse_killeen_mic_drop_at_bitcoin_2021/\n•\tThe current state of Bitcoin/news and events\n•\tVenture capital\n•\tAdvantages of a bear market\n•\tWhat it’s like to start a company\n\nThanks for being here and let’s get started. \n \N 2773 \N 141061 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.34969508171299 0 \N \N f 0 \N 0 30338446 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 141134 2024-03-11 11:43:58.951 2025-03-29 22:39:48.162 What's the End Game? My last post advocating for a Bitcoin chain split drew various reactions. Some labeled me as irresponsible, while others claimed I was undermining proof-of-work (I wasn't) or promoting a hard fork (again, I wasn't). The critics want more technical discussions to reach a consensus.\n\nHere's the core issue: what's the endgame for drivechains? We've debated the technical aspects for seven years. Do we expect new information that will suddenly unite everyone?\n\nThe reality is, those in favor of a drivechains soft fork aren't going away. If anything, they will grow louder. So, what's the end result of endless discussions?\n\nProlonged debate without consensus not only wastes time but stall other valuable updates. I'll remind you that seven years of discussion have not resolved this issue.\n\nA peaceful resolution now has a lot of benefits. We can put much of this debate to bed by engaging the market instead of claims made by marketers. We can see whether the things promised by the advocates actually come to pass and we'll learn a lot more about miner incentives. \n\nOf course, there are other ways to resolve this conflict besides a chain split, such as creating a separate chain, using a different sidechain mechanism, or adding the needed op codes in an altcoin. Yet, these options have been available for seven years and haven't been pursued by the drivechain advocates. I think those are better resolutions than a chain split and a successful use case would be the best way to convince those of us that are skeptical of the drivechainers' claims. But that's not what they're doing and so we are at loggerheads.\n\nIn summary, the drivechain debate isn't resolving itself. A split will end this divisive conversation and allow us to focus on more productive projects like improving the Lightning Network or furthering Taproot features. \n\n \N 21480 \N 141134 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.39001728279905 0 \N \N f 0 \N 0 39562238 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 144986 2024-03-18 02:26:31.748 2025-03-29 22:39:48.162 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/393658) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 10302 \N 144986 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.5279650711012 0 \N \N f 0 \N 0 11235701 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 147068 2024-03-22 07:16:00.852 2025-03-29 22:39:48.162 I am zapping directly from my node to stacker posts now. It feels so good. I have started up nodes in the past. First time in 2019 or so. And two other times, when i tried lightning also. Neither nostr or stacker news existed yet. It changes everything to have an awesome way reason to have a node. My own bitcoin that I mined from the sun, directly to stackers. I feel like all the pieces are put together now. It feels even better than I thought it would. Thanks @Alby @DarthCoin \N 997 \N 147068 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.8045431898085 0 \N \N f 0 \N 0 9158815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 191567 2024-06-29 19:47:15.954 2025-03-29 22:39:48.155 Plebdevs Workshop: Building Your First Lightning App \N https://www.youtube.com/watch?v=kFUIfaCpXzA 11144 \N 191567 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.7521329777099 0 \N \N f 0 \N 0 189687909 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 148706 2024-03-25 06:45:21.861 2025-03-29 22:39:48.163 The benefits of no-KYC Bitcoin | Freedom.Tech \N https://freedom.tech/the-benefits-of-no-kyc-bitcoin/ 14731 \N 148706 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.2265779139738 0 \N \N f 0 \N 0 79707328 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 206413 2024-07-27 13:50:29.913 2025-03-29 22:39:48.163 Property Management built on Bitcoin (The Better Bitcoin Business Model) \nlet's explore my funding plans/ideas...again I am in no way stating this is the only way to do this, just that it is the way that working for me:\n\nI have a fixed rate 30 year mortgage on a 4 unit building...entered into this agreement back in 2016 somewhere around 3.75% interest - my loan payments are about $1170/month plus about $175/Month for insurance and $900/month for taxes...yes my taxes nearly exceed my loan payment and likely soon will exceed it...my expenses....lights/common area heating/hot water etc...and maintenance (which I do myself) add about another 300/month\n\nTotaling - about 2545/month all in....not too bad for 4 units bring in about 4800/month - I am able to save about $2200/month - or 24,000 year so with one tenant paying me in bitcoin I could easily have another one paying in BTC or all 4 paying half their rent in BTC and meet my FIAT obligations - (this is basically so I don't have to sell BTC to pay FIAT only bills)\n\nI know - I got a steal on my building, I hit the timing just right, I have 27 years of experience in the field...most people will not make out like this....but even so... I am simply trying to use my experience as an example...your debt coverage may be higher or lower...no matter what you are probably thinking the same thing I have about many times.\n\nHow to pull some of that money out of my property and put it to better use...cause if you know anything - you know that USD sitting in an investment is still losing its purchasing value in the future so you want to maximize your leverage....and that is a feedback loop I am glad to have never fallen into...as when you maximize your debt you have to maximize your rent...constantly pushing the cycle forward into the future...the debt into the future for future generations to take on...\n\nBitcoin gives us all the ability to break this cycle - instead of rolling that "surplus cash" into more debt and higher rents you can roll it into Bitcoin and it immediately turns that paradigm 180 degrees and instead of constantly refinancing the debt to pull cash out to do capital improvements or go on vacation...you can pull the value of your Bitcoin reserves out to do these things.\n\nNow this is of course if you believe in the NGU technology of Bitcoin (which has of course proven itself over the its entire life cycle to date....but hey....maybe you want to wait until it has proven itself out over 30 years, or 60 years.... Though you likely won't have that long....as banks figure out this concept the loans you try to get on your "equity" will carry such high costs that you will not pencil out the deal...and you will be forced to begin using Bitcoin and will be that much further behind the early adopters....\n\nI think the key for me was the concept of "Keeping the End in Mind" - what I mean by that is this.... I have drank the kool-aid, I believe in Bitcoin 100% and if Bitcoin is going to do what it does....The future of all value expression will be based on a Bitcoin Standard...if that is true, then this model works....100% of the time and (this is the part I just recently realized) LITERALLY INDEFINITELY INTO THE FUTURE.... Just think about that...If your Bitcoin continues going up indefinitely into the future your business (if not overly leveraged in the FIAT system) will become an indefinite asset so long as it is providing value to others.... In fact you will be able to constantly pull Bitcoin value out of your business or asset as that value in Bitcoin rises.\n\nJust sit with that thought for a few minutes - cause it totally breaks my mind.... The Bitcoin I hold in reserves for my property right now will always increase in value (as long as Bitcoin stays decentralized and secure) and as it continues going up in value I will need less and less of it to fully capitalize the building....which means I can charge less and less for rent as well... If this doesn't "break your mind" I don't know what will...\n\nThis literally works for any business, any person, anything.... More to come later.... My mind is melted\n\n \N 19217 \N 206413 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.5481217074119 0 \N \N f 0 \N 0 226768244 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 152288 2024-04-01 22:55:42.441 2025-03-29 22:39:48.164 My First Thoughts on Silent Payments UX [SilentPayments.xyz](https://SilentPayments.xyz) is a proposed Bitcoin payment protocol under the [BIP352](https://github.com/bitcoin/bips/blob/master/bip-0352.mediawiki) that allows for greatly improved privacy. The system presented herein enables the ability of users to receive payments on a single static paranoia-free reusable address, unloading any extra on-chain overhead by using scripting and cryptographic techniques that also allow much better privacy. \n\nIt's a very curious implementation of the initial [Stealth Address proposal](https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2014-January/004020.html), it has begun to gain popularity in the Bitcoin community due to its promised simpler, safer UI, and better UX. This obviously means a cost on transparency and providing the user a way to understand what's going on behind the interface. Maybe it still too early and much more need to come to enrich the UX/Ui.\n\nSo, I took time to dive a bit deeper on silent payments in the past few days and tested the few apps where has been already implemented:\n\n- Dana Wallet (Android only) you can read more on https://stacker.news/items/684460/r/Design_r\n- Silentium.io (Web/PWA) https://app.silentium.dev/\n- Cake wallet (tested on iPhone, also available on Android and any OS) https://cakewallet.com/ yes I know, is a shitcoin wallet, but if you only add the bitcoin networks it becomes a bitcoin-only wallet ;)\n\nEach app provide a slightly different UX, however, the major blockers I found are:\n- Scanning the blockchain and the time needed to complete, \n- Defining the "Wallet Birthdate", a new concept that ins't that intuitive and maybe should be different named or maybe automated somehow,\n- Transaction speed: as silent payments protocol is directly attached to the blockchain, sometime it take time for transactions to be confirmed\n- Transaction cost, depend on onchain fees so depending on the season it could be inaccessible or unavailable depending on the transaction amount\n\nIn a nutshell, I recognize SilentPayments' potential with its intent of merging the anonymity that [Coinjoin](https://bitcointalk.org/index.php?topic=279249.0) today somehow differently provides and the reusability of a single address that has been proposed with [PayNym](https://paynym.is/) [BIP47](https://github.com/bitcoin/bips/tree/master/bip-0047) currently implemented on [Sparrow Wallet](https://www.sparrowwallet.com/docs/spending-privately.html?ref=bitbox.swiss#paynym-payment-code).\n\nYes, ok, from a UX perspective, no interaction between the users is required, and there is no need for more bitcoin transactions than those strictly necessary, directly onchain. However, getting rid of the notification transaction creates an entirely new problem for the recipient that does not know it has received some sats until he check the wallet and scan again the latest blocks. \n\nMy intent with this post was to share some thoughts I had when testing these wallets, I'm also interested on your thoughts about silent payments, did you test it somehow or had the opportunity to send some BTC to someone else? How was the experience for you and for the receiver? What do you think is missing in the current UX/Ui and how can we do it better? \N 19403 \N 152288 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.08164952521901 0 \N \N f 0 \N 0 93882663 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 152624 2024-04-02 16:42:36.093 2025-03-29 22:39:48.164 The Penal Preserve, Chapter 9 *This is chapter 9 of **The Penal Preserve**, you may want to go back to [Chapter 8](https://stacker.news/items/609786) or [start at the beginning](https://stacker.news/items/599283).*\n\n# 9\n\nFew things succeeded in making Franklin lose his temper, and an escaped prisoner was not one of them. But he did his best. \n\n‘You are a very bad man,’ said Franklin. ‘I can not conceive how any man could be so desperate. Bad man! Very bad man!’[^1]\n\nRae stood between two guards, a gaunt and bloodstained man, clad in tattered yellow.[^2] But in his slowly grinding jaws, his restless fingers, and his bloodshot, wandering eyes there lurked a hint of the terror that Franklin had known aboard the Investigator.[^3]\n\n‘I wasn’t trying to escape,’ said Rae.\n\n‘What in the world were you doing, then?’ asked Franklin.\n\n‘Making sure the others didn’t escape.’\n\nAnd in simple words, Rae told them how he killed Moocher, Vetch, and Sanders. \n\n‘This project...what you’re trying to do here, is too important to let some weaklings like them ruin it. I killed them to protect this colony, and I’d do it again,’ said Rae.\n\nFranklin had him confined in an empty shipping container. None of them really knew what to do with him. Franklin pitied the man for what he imagined Rae endured while he was lost in the woods. Ross, although a little shocked by the violence of the acts, admired Rae’s dedication. Jane found the entire story tragic. Most of the guards felt that Rae had done the right thing. There was no consensus among the prisoners, and that was support enough. \n\nAnd so, after one week, Rae was released from the container and allowed to rejoin the general population. \n\n*Chapter 10 tomorrow, same time, same place.*\n\n[^1]: You are an extremely bad man. I can not conceive how any man could be so desperate, so depraved. How merciful her Majesty was to spare your life! Hanging would have been to good for you! Sympathiser! Bad man! Very bad man! **John Franklin, attributed by Linus Miller, _Notes of an Exile to Van Diemen’s Land_ 1846**\n[^2]: A gaunt and blood-stained man, clad in tattered yellow, who carried on his back an ax and a bundle. **Marcus Clarke, _For the Term of His Natural Life_ 1874**\n[^3]: But also because, in his slavering mouth, his slowly grinding jaws, his restless fingers, and his bloodshot, wandering eyes, there lurked a hint of some terror more awful than the terror of starvation—a memory of a tragedy played out in the gloomy depths of that forest which had vomited him forth again; the shadow of this unknown horror, clinging to him, repelled and disgusted, as though he bore about with him the reek of the shambles. **Marcus Clarke, _For the Term of His Natural Life_ 1874** \N 8400 \N 152624 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.6740171050082 0 \N \N f 0 \N 0 193307507 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 154557 2024-04-07 14:29:27.766 2025-03-29 22:39:48.164 Valuing Bitcoin *Episode XI. Block height: 798000. Focusing on long term signal instead of short term noise: Bitcoin metrics you should know.*\n\n**Original Substack post including links to the live-charts**: https://carlbmenger.substack.com/p/valuing-bitcoin\n\n_______________________\n\nBitcoin, as a public open source blockchain, enables it to be analyzed like no other asset. We don’t need to rely on information from third parties, because we can just take a look at the Bitcoin Code or On-Chain data. When analyzing Bitcoin and its value compositions, I look at three different layers: Network Health, Growth, Speculation.\n\n![Valuing Bitcoin](https://imgprxy.stacker.news/RJRPGcpSNToFkwQrl8HRrNcy_g44qyqmf3EqmaL8-B0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvR3BycmdaZkMvSU1HLTAwNjUuanBn)\n\nIn this episode, we look at the health and growth layers of Bitcoin, both long-term indicators of how properly the network is functioning and how fast adoption is growing, cutting out the unnecessary short-term bullshit on which mainstream media is mainly focusing. Therefore, this is not a ‚Bitcoin goes to the moon tomorrow’ article but about the underlying fundamentals of Bitcoin’s value compositions, so let’s dive in.\n\n### Monetary policy\n\n#### Circulating Supply\n\nTotal circulating supply is a function of historical monetary metrics and the daily issuance associated with current monetary policy. From Bitcoin’s inception, monetary policy has been pre-determined and encoded in its protocol, making it predictable and verifiably. Only 21 million Bitcoin FOREVER, Laura.\n\n![Circulating Supply](https://imgprxy.stacker.news/VoVG7W2utnm-KNBJTVIAZU0RgYWmXAVs3pQ4nx5oNaE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvR21iZHFXVjEvcGhvdG8tb3V0cHV0LmpwZw)\n\nCurrently, 19,426,437 Bitcoin are in circulation, which represents 92.4% of the total supply. The remaining 7.6% will be issued over the next 118 years. Yes, you read that right: The last Bitcoin will be mined in the year 2140! Bitcoin’s strict adherence to a rules-based monetary policy highlights its integrity.\n\n#### Inflation Rate\n\nFurthermore, Bitcoin‘s inflation rate, the issuance of new coins to the circulating Bitcoin supply is also encoded. Unlike fiat currencies, which can be printed at will, the new Bitcoin supply is pre-determined and halves every 210,000 blocks (roughly 4 years). Currently, Bitcoin has an inflation rate of 1.74%, comparable to that of Gold. The next halving occurs in April 2024, making Bitcoin much scarcer than most other assets.\n\n![inflation Rate](https://imgprxy.stacker.news/usK5_TuCczjVXM3NsLm9bC0SfffrRZ2sxv4P9fmuiEQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvU2pGTlNqZ1gvSU1HLTAwNzEuanBn)\n\n### Bitcoin Nodes\n\nEach full node has the entire Bitcoin blockchain stored, thus another node means another copy of the Bitcoin ledger and a further distribution of the Bitcoin code. The more individual copies exist and the wider those copies are spread around the globe, the harder it is to turn Bitcoin off: 43,668 Bitcoin nodes (reachable and unreachable) are running around the globe right now.\n\n![Bitcoin Nodes](https://imgprxy.stacker.news/l5hSHAVsOiJrOh7iNENfb3u7kA9L7CJMIkk1OquTK4c/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvOHp3SkhCeXQvSU1HLTAwNzIuanBn)\n\nRunning your own node is at least as important as holding your own Bitcoin keys. It is also much easier than many think. Check out my step-by-step guide here ‚Don‘t trust, verify‘, and run your own Bitcoin full node now: https://carlbmenger.substack.com/p/dont-trust-verify\n\n#### Hash Rate\n\nBitcoin’s security is guaranteed by miners, who ensure transactions are verified and irreversible. Mining hash rate is therefore a key security metric for Bitcoin. The greater the levels of hashing power, the harder it is for someone to overpower and attack the network. Thus, all else equal, rising hash rate increases security.\n\nSince 2010, the hash rate has increased at four orders of magnitude higher than that of price. As a result of advancement in hardware and miner’s willingness to invest in the expectation of Bitcoin’s price appreciation over time. Very bullish.\n\n![Hash Rate](https://imgprxy.stacker.news/S2bvMVkvy-XglXpRIop8L3HDmeo7Tzwm0A1NUF2346c/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvQlFuR0ZUS3EvcGhvdG8tb3V0cHV0LTIuanBn)\n\n### S - Curve Adoption\n\nThe S - Curve breaks global adoption into stages along the growth cycle. It is a term used to define a sociological framework that demonstrates how different people ranging in demographics and psychological characteristics adopt and react to new technologies and innovative products. In this concept, most of the growth occurs during the early and late majority stages. In other words: You are still early.\n\n![S-Curve](https://imgprxy.stacker.news/kjtqptlVxwmBN6LYkKwRoqFrfP3oI7QZ2FRbIMWr8N8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvMGpMZDlkZ3AvSU1HLTAwNzMucG5n)\n\n### Market Cap Ratio\n\nBitcoin’s market cap sits currently at roughly 600 billion USD, a tiny, insignificant little spot in all the world’s money and markets, which exceeds 1.3 quadrillion USD (A number with fifteen zeros!). Thus, Bitcoin is currently valued at 0.00046153846 per cent, despite being one of a few assets without any counterparty risk. This will be an essential feature once our debt based fiat system collapses, which is inevitable looking at current debt levels.\n\n![All the World‘s Money and Markets](https://imgprxy.stacker.news/HSsrFH8vTYr4OAfp_hclH4swYmNIgOz3WeAUqX1yPaw/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvSFc0NmdGangvSU1HLTAwNzQuanBn)\n\nVisual Capitalist: https://www.visualcapitalist.com/all-of-the-worlds-money-and-markets-in-one-visualization-2022/\n\n### HODL Waves\n\nHODL Waves divides the total circulating supply of the Bitcoin network into holding period bands. The 1-to-2-year HODL wave, for example, measures the percentage of Bitcoin that transacted between one and two years. Short term age bands rise dramatically during periods of market exuberance and the 3y-5y band rises during major market downturns, signaling very healthy hodling behavior at the moment.\n\n![HODL Wave](https://imgprxy.stacker.news/3jdD2TkfIVYobZhs-HYTl30gy_6t3Q0DMJoweHDFrWs/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2Mva1gyUmNicm0vcGhvdG8tb3V0cHV0LTUuanBn)\n\n### Personal Bitcoin Stack\n\nAnd last but not least, the most important metric of them all. Your own Bitcoin stack, that is hopefully growing over time: DCA matters.\n\n![Bitcoin Stack](https://imgprxy.stacker.news/GnklP8ESAc5f8Lg59P8YTrD6dwgnnDPIUgrxXwYo_JE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvY0hLNmNwamMvVGltZS5wbmc)\n\n### The End\n\nThat's it for this episode. I hope you gathered some valuable knowledge from this one. Keep stacking and focus on the fundamentals.\n\nThanks for reading and remember: ₿ critical, ₿ informed, ₿ prepared. Yours,\n\n![Carl B Menger](https://imgprxy.stacker.news/Jb0IkHrkp8XCfsH2VNegFRaSpU1gAP-jC9GazILrx_M/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvRFpGN01teDUvNTU4OWQ1NzgtNzNkMS00MDc3LTk4NzAtMzBhZjIxOWVmZmUwLTgwOHgxNjMucG5n)\n__________________________________\n\n#### Stay tuned:\n**Subscribe to my Newsletter**: https://open.substack.com/pub/carlbmenger/p/coming-soon\n**Follow me on Twitter**: https://mobile.twitter.com/CarlBMenger\n**Follow me on NOSTR**: https://damus.io/npub10wv37amdqnv8edw5yktgsxr62g8k4lqkk2u66fk6c6uwuakzssxsf4v22x\n\n#### B informed:\n[X] Solving the Adoption Dilemma: https://stacker.news/items/201172\n[IX] NOSTR: Social Media 2.0: https://stacker.news/items/189821\n[VIII] The Bitcoin Retirement Plan: https://stacker.news/items/183327\n[VII] Bitcoin in Guatemala: https://stacker.news/items/171339\n[VI] Bitcoin in El Salvador: https://stacker.news/items/161607 \N 1003 \N 154557 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.0121154040607 0 \N \N f 0 \N 0 152560685 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 155877 2024-04-10 18:29:16.482 2025-03-29 22:39:48.165 Share an example of a double spend Double spending was the very first problem Satoshi noted that Bitcoin could solve in his [original 2008 email](https://www.metzdowd.com/pipermail/cryptography/2008-October/014810.html).\n\nBut talking to newcomers, the idea of a double spend can be confusing. I know it was for me at first.\n\nHow do you like to explain double spending to them? \N 4624 \N 155877 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.8919217116873 0 \N \N f 0 \N 0 197354932 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 157004 2024-04-13 08:26:50.303 2025-03-29 22:39:48.165 Orphans of Uganda children center Hello as orphans of Uganda children center caretaker am honored to be part of this family \N 919 \N 157004 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.33784110108247 0 \N \N f 0 \N 0 150065916 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 157420 2024-04-14 01:03:52.082 2025-03-29 22:39:48.165 A Theory of Everything for Zaps? ### Alternative Zap Incentives\n\nI just read https://stacker.news/items/733426?commentId=733858 and @Scoresby asked the following in there (see my emphasis):\n\n> What is the incentive for zappers?\n>\n> SN rewards (and the leaderboard) look to me like an attempt to incentivize zapping.\n>\n> If SN removes rewards, the only reason to zap good content is "good will." It seems to me that the less we have to rely on people doing the "right" thing and the more we give them an incentive to do the "right" thing, the better everything works.\n>\n> (I would say this is one of the major flaws of most governments: we expect elected officials to do useful/good work without providing any sort of incentive to do so. People are self-intetested. We can rely on this.)\n>\n> **Do you have thoughts on alternative ways to incentivize zapping?**\n>\n> (I suppose an incentive for zappers might be to encourage more good content, do you think this is a good enough incentive?)\n\nUnfortunately, this powerful question was ignored or nobody had answers.\n\nHowever, I came up with an idea that might be able to unify what I call the "theory of v4v" and the "theory of incentives": \n\n### A Theory of Everything for Zaps?\n\n**What if zapping is incentivized not by rewards but by making SN more expensive to use if you don't zap?**\n\nIn such a system, you essentially have the choice between paying more via posting fees or saving the costs by zapping stackers who produce the content you want to see.\n\nSince you would pay the same in both cases—assuming you actually intend to post something—, "good will" is eliminated out of the v4v equation. It no longer matters since you're paying either way, it's just up to you _who_ you're going to pay: Who provides you more value?\n\nI think this system could make stackers happy that see the leaderboard and rewards as antithetical to v4v and I would agree with them. The problem (until now?) was just that we should not rely (exclusively) on good will for zaps.\n\nSince zaps would still be used for ranking, the sybil fee would still exist in this system. So we would still have a pool of sats funded by fees that we could use for something. They could still be used to reward the top stackers (even more now). Zapping would also no longer be a [Keynesian Beauty Contest](https://stacker.news/items/473181) since we no longer reward zapping so there are no opportunity costs to not zapping what you think others like. You can simply zap what _you_ like.\n\nCould therefore a system like this make everyone happy? Maybe, but there might be a few problems ...\n\n### Zap Budgets as Territory Settings\n\nThis system essentially creates a _zap budget_ since posting fees can't go lower than the territory base fee. After that point, zapping is no longer incentivized and v4v boils down to good will only again.\n\nBut since these zap budgets exist per territory (it doesn't make sense to pay less in ~bitcoin because you zapped someone in ~nostr), if this becomes a real problem might simply depend on how high the initial zap budget per territory is and when they reset.\n\nAs an example for all of this, let's assume you're new on SN and you want to post something in ~bitcoin which costs 100 sats. However, since you're new, you haven't zapped anything today yet[^1] so maybe it's actually 1000 sats because the zap budget for ~bitcoin is 900 sats. You're now incentivized to zap content in ~bitcoin you like before you post something. Since zapping is no longer rewarded as a signal for the frontpage, you can also zap old content, you just need to zap _something_ in ~meta. In theory this should be the content you like.[^2][^3]\n\nThis would also make territories feel more like territories since your participation in them via zaps directly contributes to you being incentivized to post there thanks to lowered fees.\n\nBut as mentioned above, this incentivze would only exist if you actually want to post something. If this also affects replies, it would be more effective but lurkers would still have no incentive unlike with rewards for zapping.\n\nAnyway, let me know your thoughts, I am sure there is more fun to be had with this or completely different ideas for zap incentives since I literally came up with this what feels like a few minutes ago (according to my first message about this in our internal comms, I have been writing this post for 2.5 hours already).\n\n[^1]: Resetting them every 24 hours probably makes sense.\n\n[^2]: this introduces a way for abuse again since zapping your self gives you the same lower fee as zapping someone else\n\n[^3]: Another idea I had was to make this independent of order by reserving increased posting fees for zaps within the next 24 hours.\n \N 780 \N 157420 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.2695903371869 0 \N \N f 0 \N 0 67651575 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 158360 2024-04-16 10:24:45.735 2025-03-29 22:39:48.165 Have you ever read a book more than twice? I've never read a book more than twice. I'm not talking about books you had to study at school. \n\nI have read many books twice in the space of 10 years (the first time when I was in my 20s, the second time when I was in my 30s). Maybe I will read some of them a third time when I am in my 40s. \n\nWhat about you? \n\nHave you ever read a book more than twice? \N 9275 \N 158360 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.049320143148 0 \N \N f 0 \N 0 213738776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 158914 2024-04-17 14:59:05.641 2025-03-29 22:39:48.165 The death of fancy fashion brands name logos Saw this in my inbox from one of my news letters \n\n![](https://m.stacker.news/64730)\n\nAll these fashion brands going with plain bold text because it displays well on screens. \n\nBut now they all look the same. Bland and boring. \N 1145 \N 158914 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.3352083909609 0 \N \N f 0 \N 0 202095517 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 159987 2024-04-20 02:46:25.345 2025-03-29 22:39:48.166 Oklahoma signs bill into law protecting crypto spending, mining, & self-custody Under the new law, the Oklahoma state government cannot prohibit, restrict, or impair the use of crypto in purchases or the self-custody of crypto.\n\nFurthermore, state and local governments cannot impose additional taxes or other charges specifically targeted at crypto. Taxes on legal tender apply.\n\nHB 3594 also protects home crypto mining and mining businesses by declaring it legal to participate in either type of mining in Oklahoma. https://cryptoslate.com/oklahoma-signs-bill-into-law-protecting-crypto-spending-mining-and-self-custody/ 16998 \N 159987 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.3630623846507 0 \N \N f 0 \N 0 115374350 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 169994 2024-05-14 11:03:04.52 2025-03-29 22:39:48.156 Blastr: A nostr cloudflare worker proxy relay that publishes to all known relays \N https://github.com/MutinyWallet/blastr 1576 \N 169994 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2281700817047 0 \N \N f 0 \N 0 165989044 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 170651 2024-05-15 15:10:12.174 2025-03-29 22:39:48.156 Introduction to Lightning Privacy 🚀 Lightning Privacy Research \N https://lightningprivacy.com/en/introduction 15588 \N 170651 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.5592365931767 0 \N \N f 0 \N 0 198508886 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 173498 2024-05-21 17:00:20.867 2025-03-29 22:39:48.156 Summary of the Lightning Specification Meeting 2023/04/24 \N https://github.com/lightning/bolts/issues/1067 987 \N 173498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.108210610095 0 \N \N f 0 \N 0 161203994 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 175752 2024-05-26 13:38:45.749 2025-03-29 22:39:48.156 Stacker.News Adds Anon Accounts, Just-in-time Funding \N https://www.nobsbitcoin.com/stacker-news-anon-accounts 12821 \N 175752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5245177627946 0 \N \N f 0 \N 0 213548894 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 176372 2024-05-27 19:41:36.594 2025-03-29 22:39:48.156 Lyn Alden is looking for Beta Readers for her Sci-Fi Cyber punk novel! Would you want to read it? 🤯\n\nhttps://primal.net/e/note1820tf6cu0ru6k9l7slawkzlz73naxmds5tl9t08mws6snyapamvqptmnxl\n\n“Lyn Alden\nlyn@primal.net\n\nIs there anyone who is *strongly* interested in being an early round beta reader for my sci fi manuscript?\n\nNear-future sci-fi, crime/thriller/cyberpunk. A blend of action and multi-character depth, and moral analysis. The action is key and all, but alpha readers thus far cried at the character aspects; that's what hit them hard enough to care how they would engage with the action.\n\nStrict Requirements for first-stage beta readers:\n\n-I need to know/trust you personally, either in person or very well online with high reputation, to the point that I'd send an unfinished manuscript to you. There's no strict requirements, but if you know, you know.\n\n-You like sci fi and/or fantasy books, and would be happy to read and offer objective (even brutal) feedback on a sci-fi action/crime thriller novel within the next month or two.\n-You can comment or DM, for privacy sake.\n\nThat's a small group, but I'm putting it here on Nostr first for what I consider my pre-beta or readers. I will then expand 10x on Twitter and elsewhere for my full beta readers.\n\nMeanwhile, I'm in the early revision stage. Manuscripts won't be sent out immediately. I'm still doing revisions and working with alpha readers, but I'm at the stage where I can start *planning* for the next step to see who might be interested to be early beta readers. Nostr folks get the exclusive early notice here.\n\nI do tend to move pretty fast, though.\n\nAll pre-beta readers that provide meaningful input would be mentioned in the acknowledgement section, if the book were to be published, which of course I cannot guarantee will happen. I will only publish good books, one way or another.\n\nBut like, the alpha readers do like it. ;)” \N 21279 \N 176372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0434690927732 0 \N \N f 0 \N 0 213632926 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 177877 2024-05-31 02:35:31.974 2025-03-29 22:39:48.156 Last Week in Stacker News Podcast, Kinda I've been messing around with Notebook LM. Thought I would test it out on the Stacker News Newsletter. I've been hearing some funny and very poor productions from this AI tool lately so I thought it might be fun to check it out.\n\nI decided to feed it [SN Saturday Newsletter 9/28/24](https://stacker.news/items/704142/) and see how it did. As usual this thing is very formulaic and can make be laugh and cringe but it did surprisingly well IMO. But, I don't see this replacing any podcasts I listen to. Now, I can see it replacing a lot of crap that I don't listen to. But honestly that says more about how much bad media content there is on the web.\n\nWhat do you think?\n\nDownload: [Last Week in Stacker News Podcast, Kinda](https://cdn.satellite.earth/ba7e39985237fb588525b082907fe01dcba388faf947cbc692545cff1824663b.wav) \N 7682 \N 177877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1423409232709 0 \N \N f 0 \N 0 22764594 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 161854 2024-04-25 09:06:24.647 2025-03-29 22:39:48.157 Teachers, Students, Parents, and Education School is one of the tools for educating the individual, but family, society, and the broader social and cultural context are equally important. In fact, they play a primary role in shaping a child's personality.\n\nEach new school year begins with a tripartite relationship: teacher, student, and parent.\n\nThe **teacher** should see the beginning of a new school year as a golden opportunity to express his or her talent and passion for education. If the profession is viewed merely as a job to earn a paycheck, the school year will feel long, the work will be exhausting, and there will be little satisfaction.\n\nTeaching has become a demanding profession because of the bureaucratic obstacles and challenges that arise, most of which have little to do with actual education. However, a good teacher can always distinguish between what is useless and what is valuable.\n\nAs A. Lincoln once asked of his child's teacher, the key to good education is to nurture the talent in each child and, above all, to "find the strength not to follow the crowd, even when everyone is running after the winner.\n\nBut to teach this philosophy to a child, you must first believe in it and live it. Otherwise, you run the risk of becoming a mere collaborator, often less inspiring than your students, who may respect you in school, but as they grow and reflect, they will make a deeper and more critical assessment.\n\n**Parents** often distance themselves by sending their children to school without getting involved in what happens there. When problems arise, they demand accountability as if they didn't live under the same roof as their child. Of course, there are exceptions-wonderful parents who show constant concern and involvement. These are model parents, often raising high-achieving students who would likely excel without much intervention.\n\nParents face a paradox: on the one hand, they recognize that something is wrong with their child, but on the other hand, they are predisposed to believe their child's version of events and sometimes demand more than is due. Ultimately, children are a reflection of their parents, although there are exceptions.\n\n**Students** today often view teachers as adversaries. The respect that once accompanied the role of the teacher has diminished. However, this problem is not theirs alone, for education is an ongoing and dynamic relationship. There are exemplary students with clear goals, as well as lazy, manipulative students who expect more than they give. These latter students may even influence their parents, who may unwittingly help their children develop a negative view of their teachers.\n\nThere is no easy solution to this three-way relationship, but every new beginning offers a chance for improvement and growth.\n\nMy wish for my fellow teachers is that they will remain true to themselves, maintain their dignity, and be courageous and steadfast in what they offer and demand. Look at children with responsibility and treat them as you would want others to treat your own child.\n\nFor parents, my wish is that you stay involved with your children throughout the school year, continually monitoring their progress and asking for what is fair. Asking too much may seem easy to you, but it can become an injustice to other children.\n\nI want students to work hard, diligently, and systematically. Respect your classmates and especially your teacher. Teachers are not your opponents, they are there to help you. Think of your teachers as partners in a meaningful and beneficial collaboration.\n \N 15536 \N 161854 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.60305148574417 0 \N \N f 0 \N 0 200362115 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 162154 2024-04-26 07:03:36.927 2025-03-29 22:39:48.157 Sensei Stacked 1.2 Million Sats on Stacker News Sensei fell behind his usual pacing. It took him slightly more than a month to advance from 1.1 to 1.2 million sats. This ironically meant that his plan to use Stacker News in moderation was working. \n\nFor the past month, he has begun and stuck to a habit of reading while having his morning breakfast. Previously, he would have used it as an opportunity to contribute comments and climb up the Leaderboard, particularly during the Million Sats Madness challenge. He thinks that it is good to take a step back and fuel his cognitive tank. Interacting with Stackers is often the highlight of his mundane days, but sometimes, we all crave for a change in mental scenery, you know?\n\nPlus, his bookshelf is really starting to look less decluttered, which propels him to read as much as he can these days. His wife has plans to renovate the house next year. (If you have read about his blackout saga, you may understand why.) This means that he has to dispose of his superfluous belongings as much as possible. **Travel light!** Sensei advocates.\n\nEven though (or precisely because) Sensei has been interacting less on this platform, he remembers his interactions with various Stackers more distinctly. A mnemonic about gay sex contributed by @Undisciplined has got to take the cake! In other news, @riberet19 taught him that the Spanish word for delicious is *exquisito*; I later asked Meta AI if there is any correlation between the English *exquisite* and the Spanish *exquisito*. @Carresan enlightened him about the role the letter ‘Q’ plays in Spanish. Finally, Sensei was able to have an engaging conversation about *run amok* because @carlosfandango informed him that amok is derived from the Malay language.\n\nAnd who can forget all the health tips @Coinsreporter has been dispensing?\n\nMoving forward, Sensei just has one goal. To write at least one more entry for “Let’s Learn Chinese with Sensei” for @siggy47, @didiplaywell and @Lux. He just needs to settle down and do it!\n\nThanks for all the great learning you provide, everyone! \N 2952 \N 162154 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.34208672552958 0 \N \N f 0 \N 0 220911766 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 161788 2024-04-25 02:27:47.851 2025-03-29 22:39:48.157 Microstrategy wants to spam the Bitcoin blockchain with his "shitidentity" idea. The gov complaint corporation owned by Michael Saylor and Blackrock, Microstrategy, wants to spam the blockchain of Bitcoin, storing data of a proprietary software that tries to substitute PGP, a free software invented like 4 decades ago, that has been heavily used until now (for example, Satoshi used it to sign all his msgs). If we didn't have enough with runes and ordinals, Saylor now wants to patrol you and store your personal information and identification in the inmutable blockchain of Bitcoin, and meanwhile saturate it so your tx will cost even more. I call this new invention shitidentity.\n\nThere is **zero** need to store any of that in the blockchain, PGP has been storing that data in private and public servers for decades without a single problem, and it is fully decentralized. Any person or organization can store their own database of known PGP emails or information, and they can edit them at any moment, because this information changes over the years and shouldn't be inmutable. There is even less need to make your id public to the entire world. And even less need to force thousands of nodes to store that shit.\n\n![image](https://m.stacker.news/29289)\n\n![image](https://m.stacker.news/29290)\n\nYou can watch this shit here:\n\nhttps://www.youtube.com/live/lwqLXaYoavE?si=UAh8yeBKHFUNfpjk&t=4291 \N 3439 \N 161788 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.0330867978518 0 \N \N f 0 \N 0 89610841 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 182024 2024-06-09 01:33:35.484 2025-03-29 22:39:48.157 [Daily puzzle] Fill in the blanks Fill in the blanks with a single digit such that the resulting sentence is true.\n\n"In this sentence, the number of occurences of the digit 0 is ______, of the digit 1 is ______, of the digit 2 is ______, of the digit 3 is ______, of even numbers is ______, of odd numbers is ______, and of prime numbers is ______."\n\nPrevious iteration: https://stacker.news/items/743084/r/south_korea_ln (answer in https://stacker.news/items/743084/r/south_korea_ln?commentId=743754). Also, @Scroogey ended up solving the puzzle from 2 days ago: https://stacker.news/items/741908/r/south_korea_ln \N 21334 \N 182024 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.23184844664156 0 \N \N f 0 \N 0 194772815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 195240 2024-07-06 00:30:53.651 2025-03-29 22:39:48.157 SN release: Blink sending wallet, and fixes for LNC, profiles, invoice retries The only really new thing is Blink as an attached sending wallet via @rblb\n\nOtherwise:\n\n- we should've fixed this LNC issue: https://stacker.news/items/653374?commentId=653466\n- fix for an issue that @anon reported when viewing profiles with freebies\n- when attached wallet payments were cancelled retries would fail temporarily\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 9m sats to 27 contributors for 122 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/648845\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 6191 \N 195240 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.1853094206876 0 \N \N f 0 \N 0 162929740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 182048 2024-06-09 03:55:48.155 2025-03-29 22:39:48.157 SN Saturday Newsletter 6/8/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Ecash mints are just like the Fed's Repo Window](https://stacker.news/items/565172)\n - Not satisfied with calling ecash mints custodians, [@Scoresby](https://stacker.news/Scoresby) searches for an alternative framing. This time, they compare ecash to repurchase agreements.\n - 17.3k sats \\ 37 comments \\ [@Scoresby](https://stacker.news/Scoresby)\n2. [Announcing Super Testnet Workshops](https://stacker.news/items/561775)\n - [@supertestnet](https://stacker.news/supertestnet) wants to mint new bitcoin programmers in his practical, fun, and creative image with a series of educational workshops.\n - 7.2k sats \\ 45 comments \\ [@supertestnet](https://stacker.news/supertestnet)\n3. [How Bitcoin Can Play into the Minimalism Movement?](https://stacker.news/items/562734)\n - Bitcoin maximalism is a misnomer for what is more like devout minimalism. [@SatsMate](https://stacker.news/SatsMate) sees bitcoin contributing to the broader minimalist movement by enhancing delayed consumption.\n - 1.8k sats \\ 25 comments \\ [@SatsMate](https://stacker.news/SatsMate)\n4. [Gold confiscation in Shanghai, 1948](https://stacker.news/items/561239)\n - [@Signal312](https://stacker.news/Signal312), obsessed with the history of gold confiscation, shares China's attempt in 1948. It was both more successful and violent than the [US's attempt in 1933](https://stacker.news/items/275618).\n - 3.4k sats \\ 24 comments \\ [@Signal312](https://stacker.news/Signal312)\n5. [People who bought Berkshire cheap have their trades undone.](https://stacker.news/items/561515)\n - NYSE made a boo-boo and canceled trades of Berkshire Hathaway's A shares that were executed at a $620,000 discount, in addition to several other affected stocks like GME.\n - 2k sats \\ 34 comments \\ [@siggy47](https://stacker.news/siggy47)\n\n##### El Salvador trip report\n\n[@leo](https://stacker.news/leo) reports on his travels to San Salvador, Berlin, El Tunco, and El Zonte trying to use Bitcoin wherever possible.\n\n- [El Salvador Trip report - 8/8](https://stacker.news/items/559273)\n- [El Salvador Trip report - 7/8](https://stacker.news/items/558439)\n- [El Salvador Trip report - 6/8](https://stacker.news/items/557324)\n- [El Salvador Trip report - 5/8](https://stacker.news/items/556162)\n- [El Salvador Trip report - 4/8](https://stacker.news/items/554892)\n- [El Salvador Trip report - 3/8](https://stacker.news/items/553669)\n- [El Salvador Trip report - 2/8](https://stacker.news/items/552530)\n- [El Salvador Trip report - 1/8](https://stacker.news/items/551461)\n\n\n##### Don't miss\n- [What's So Bad About Trump?](https://stacker.news/items/564230)\n- [UPDATE: Gold "hoarders" were persecuted in the 1930's - and bitcoin?](https://stacker.news/items/559206)\n- [How I spend my coins privately with Coinjoin and Lightning](https://stacker.news/items/564121)\n- [How much bitcoin owned by ETFs is too much?](https://stacker.news/items/563481)\n- [Ditching the Phone](https://stacker.news/items/560197)\n- [Can Psychedelics Improve Mental Health?](https://stacker.news/items/565000)\n- [What has been the worst or most harmful scientific discovery of all time?](https://stacker.news/items/565547)\n- [modern memecoin culture is shaking my faith in humanity](https://stacker.news/items/561571)\n- [Our Sacred Numbers](https://stacker.news/items/561854)\n- [Tucker Carlson Interview With Bukele](https://stacker.news/items/563863)\n- [bips.dev - Read BIPs like a pro.](https://stacker.news/items/564602)\n- [ANOM – Darknet Diaries](https://stacker.news/items/563997)\n- [How I might orange pill my wife](https://stacker.news/items/564626)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [SN release: frontend payment UX, blind poll votes, item mention notifications](https://stacker.news/items/560966)\n- [Stacker News Live #123: My Opening Remarks with PlebPoet](https://stacker.news/items/565822)\n- [SN App (v1.3.1) is back on Google Play & Github Releases](https://stacker.news/items/565810)\n- [Infocracy is working - Democracy No](https://stacker.news/items/560694)\n- [Which helped me earn more, MSM or Daily Rewards?](https://stacker.news/items/561728)\n- [SN Reward Scheme Flaw and Suggested Improvement](https://stacker.news/items/563565)\n- [Share your views — The Idea of An SN Meetup in India Next Year](https://stacker.news/items/565707)\n\n------\n\n##### Top Stackers\n1. [@Rsync25](https://stacker.news/Rsync25): 96.3k sats stacked\n2. [@k00b](https://stacker.news/k00b): 93.3k sats stacked\n3. [@Undisciplined](https://stacker.news/Undisciplined): 83.8k sats stacked\n4. [@0xbitcoiner](https://stacker.news/0xbitcoiner): 55.8k sats stacked\n5. [@grayruby](https://stacker.news/grayruby): 50.3k sats stacked\n\n------\n\n##### Top Spenders\n1. [@k00b](https://stacker.news/k00b): 119.5k sats spent\n2. [@Undisciplined](https://stacker.news/Undisciplined): 75.4k sats spent\n3. [@TNStacker](https://stacker.news/TNStacker): 40.3k sats spent\n4. [@grayruby](https://stacker.news/grayruby): 39.5k sats spent\n5. [@Alby](https://stacker.news/Alby): 22.2k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 377 days\n2. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 274 days\n3. [@elvismercury](https://stacker.news/elvismercury): 271 days\n4. [@Undisciplined](https://stacker.news/Undisciplined): 256 days\n5. [@JerryGarcia](https://stacker.news/JerryGarcia): 256 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 1534 \N 182048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7683707289378 0 \N \N f 0 \N 0 131674087 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 183977 2024-06-12 19:23:37.83 2025-03-29 22:39:48.157 Books And Articles Newsletter, Issue 9 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. Thanks again for all of the quality posts. I am still hoping to start breaking out some of the older content into separate anthologies in April. I also want to come up with other ideas to improve the territory, so suggestions are always welcome. \n\nThis week @jbschirtzinger posted the final chapter of his book, The Rogue Scholar, and made a convenient consolidated post. I added that to the “Books” section, so now who can easily access the entire novel. \n\nI want to conduct more writing contests, but first I want to get more feedback and suggestions from the community. I will be talking about those plans separately in a post I will make in the next few days.\n\nI hope everyone has a good week. \n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [Reality Is Just A Game Now](https://stacker.news/items/482281) by @elvismercury\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [‘The Three-Body Problem’ Is Brilliant. ‘3 Body Problem’ Is Better](https://stacker.news/items/482504/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [The Courage to Be Disliked by Ichiro Kishimi](https://stacker.news/items/485229) by @Byz\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n### Siggy’s Suggestions\n\n- [Stoic Book Club, Meditations, Part 7](https://stacker.news/items/478176) by @Se7enZ\n\nI started thinking about this book club and what seems to be the growing lack of engagement as the weeks go by. I am guilty of contributing to the lack of engagement, although I thoroughly enjoy the posts. @Se7enZ has continued to produce excellent content each week. I wonder if good book club posts suffer because they challenge the reader to invest more time than would be typical of a Stacker News post? For myself, I am often reluctant to comment because I haven’t put in the time to constructively add to the conversation. @elvismercury started the idea of book clubs on Stacker News with his on Lyn Alden’s [Broken Money](https://stacker.news/items/274195). As you can see, it was highly successful, but I think that, over time, it didn’t get the full engagement it deserved because most stackers (and certainly me) were not up to the challenge. It’s a shame, but perhaps by keeping these posts in front of as many eyeballs as possible for as long as possible might help the situation.\n \n\n- [Discuss This Quote-Mahatma Gandhi](https://stacker.news/items/478632) by @grayruby\n\nI always like these quote posts, and this week’s quote was near and dear to every bitcoiner’s heart.\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Zen And The Art Of Motorcycle Maintenance by Robert M. Pirsig](https://stacker.news/items/383302) by @carlosfandango\n\n- [The World’s First Bitcoin Fiction Anthology](https://stacker.news/items/347735) by @KonsensusN\n\n- [Man’s Search For Meaning](https://stacker.news/items/390069) by @carlosfandango\n\n- [The Sovereign Individual](https://stacker.news/items/427201) by @carlosfandango\n\n- [Neuromancer](https://stacker.news/items/401761) by @Scoresby\n\n- [Elric Of Melnibone](https://stacker.news/items/389474) by @Scoresby\n\n- [The Shockwave Rider, by John Brunner](https://stacker.news/items/418728) by @Scoresby\n\n- [Human Action](https://stacker.news/items/399897) by @Undisciplined\n\n- [Dune Books & Movies](https://stacker.news/items/449779) by @Undisciplined\n\n- [Robert Jordan’s The Wheel Of Time: Books 1-3](https://stacker.news/items/416511) by @Undisciplined\n\n- [A History Of Religious Ideas #1](https://stacker.news/items/420220) by @Se7enZ\n\n- [A History Of Religious Ideas # 2](https://stacker.news/items/420192) by @Se7enZ\n\n- [A History Of Religious Ideas #3](https://stacker.news/items/427941) by @Se7enZ\n\n- [Nova, by Samuel R Delaney](https://stacker.news/items/427682) by @Scoresby\n\n- [Blood Music, by Greg Bear](https://stacker.news/items/436158) by @Scoresby\n\n- [Schismatrix, by Bruce Sterling](https://stacker.news/items/445373) by @Scoresby\n\n- [Do Androids Dream Of Electric Sheep? By Philip K Dick](https://stacker.news/items/457329) by @Scoresby\n\n- [Snow Crash, by Neal Stephenson](https://stacker.news/items/470362) by @Scoresby\n\n- [For Whom The Bell Tolls, by Ernest Hemingway](https://stacker.news/items/309580) by @plebpoet (meta territory post)\n\n- [Declare, by Tim Powers](https://stacker.news/items/471173) by @StillStackinAfterAllTheseYears\n\n- [“What Is That?” Said The Cat](https://stacker.news/items/472557) by @cryotosensei\n\n- [Zero Days, By Ruth Ware](https://stacker.news/items/460481) by @StillStackinAfterAllTheseYears\n\n\n\n### Essays\n\n[Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Churning Black Matter](https://stacker.news/items/469200) by @Nuttall\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n\n\n \N 1605 \N 183977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2386947808892 0 \N \N f 0 \N 0 88411729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 184354 2024-06-13 19:24:17.097 2025-03-29 22:39:48.158 AI, Existentialism, Transhumanism(??), & the Ongoing Technological Renaissance No, I'm not on drugs writing this.\n\nHumans really are an interesting bunch. And there happens to be a lot of weird, interesting stuff going on in the world that I think some bitcoiners like myself can be naturally drawn to. \n\nLet me ask you a weird question: How do I know that I'm not just writing to AI right now? How do I know it's you -- a human -- not some robot?\n\nhttps://imgprxy.stacker.news/QuE0rfyQoTAdAP2h2bPpLWtYGE3vOXtkYQ8oqKGVCKE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9rbDlpbmdOLnBuZw\n\nHave you noticed an uptick in enthusiam about LK-99, superconductors, and other various word salads lately that likely have ~0 importance to the people writing about it online?\n\nAnd beyond niche social media, have you noticed yourself or others more exposed to all different kinds of political movements, tragedies, random trains crashing and spilling toxic chemicals, wildfires, or various wars across the globe? \n\nHow much collective mindshare in the US has gotten caught up in Ukraine/Russia propaganda? How many random Ukraine flags have suddenly sprung up on people's front porches??\n\nProbably less than 1% of the people talking about Ukraine online actually understand or care about anything that's going on there. \n\n**The point of my rambling is that the world, and particularly the US, is going through a bit (major) of an identity crisis.**\n\nThe internet fundamentally changed our psyche in ways that humans won't realize till long after we're dead. New ideas, beliefs, cultures, and values are more accessible than ever before, and have exposed billions of people to far more information than our ancestors had ever access to. \n\nThere's an endless plethora of good and bad ideas out there that humans can "identify" with, but as our identities continue to overlap more and more with others, it becomes easier than ever to lose all sense of identity to begin with.\n\nThe result, particularly what wee see in the US, is wokeism, _anti-wokeism_ (which includes plenty of bitcoiners online), _shitcoiners_, less policing, worsening city conditions -- they're all many results of a declining identity.\n\n[Data from the Visual Capitalist](https://www.visualcapitalist.com/charts-americas-political-divide-1994-2017/) really makes this crystal clear. Click on the link for the animation to see it separate over time.\n\nNotice the separation in the peaks between what's considered the "median" Dem or Repub over time:\n\nhttps://imgprxy.stacker.news/88fteMiWTrY7ijEswMcI5tRzENrO90HOdSgqVBtYeM0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9XU0x3d1JMLnBuZw\n\nIt's so easy to get washed away in it all -- caught up in the latest political movements, arguing with strangers online about something neither of you know anything about, larping about wildfires or UFOs, being manipulated into caring about every issue in the world enough to distract you from working on yourself and what you can control.\n\nOver the long term, it's clear that, while various political structures can offer better or worse living conditions to live within, **technology** is ultimately what raises quality of life across the globe. \n\nGovernments merely try (and mostly fail) to "manage" the people they've assumed authority over for generations.\n\nTensions are rising all over the place, like [here in West Africa](https://twitter.com/Megatron_ron/status/1686322692947836928), apparently. You or I would've probably never learned or thought about any of this stuff if we were born without the internet.\n\nhttps://imgprxy.stacker.news/hWWOmHVMIsleppT69-_JfFw9Zjv9uXXdGI1r4pW3ps0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0YyY0ZqVmdYRUFBNzBKWT9mb3JtYXQ9d2VicCZuYW1lPW1lZGl1bQ\n\nUkraine and Russia are beefing. China's probably gonna invade Taiwan. Etc. etc..\n\nAll this rising tension just highlights the problem: we're losing ourselves. And the identity crisis has and will keep getting more people hurt.\n\nArtificial intelligence of course doesn't help this fact. But at the same time, it does.\n\n## AI & Humanity: A Harmonious or Dissonant Combination?\n\nAs AI continues its rise to the top of the technological food chain, humans naturally worry about their future place in the world. [Watch Bryan Cranston's recent speech](https://www.youtube.com/watch?v=Px36or03JuQ) at the SAG-AFTRA strike (yet another random event I'd have zero exposure to had it not been for the internet).\n\nIt's a 2-minute clip. 0:49 for the relevant section.\n\nFilm and TV workers want [insert corporation that's not the real problem here] to "_hear us and listen to us when we tell you:_ \n\n_We will not be having our jobs taken away and given to robots!_\n_We will not have you take away our right to work and earn a decent living!_\n_And lastly, and most importantly, we will not allow you take away our dignity!_"\n\nPerhaps our angst is not over the fact that AI _will_ replace us, it's that our humanity _has already been_ replaced.\n\nHumans in the 21st century rarely live as our biological roots intended. And it's driving us mad.\n\nThe vast majority of people already operate rather robotically, carrying out operational tasks assigned by higher authorities. It's as if you're their own ChatGPT, just waiting for the prompts to follow your next action.\n\nI'm sure some 9-5ers out there can understand this. It's monotonous, and it feels unnatural (for me, at least).\n\nNow this isn't to bad talk 9-5s. That structure can be really great for people, and certainly can work well to bring people a fulfilling life.\n\nI'm just saying that for the most part, **we're on the payroll's clock, not nature's**. We're so distracted by our next deadline or the "current thing" that we don't have time to go smell the roses very often. \n\nCertainly, there are millions out there who've escaped the rat race and can live more on their own terms, but I'm speaking to the majority here.\n\nAll the fear surrounding AI, while certainly understandable, perhaps is more of a reflection of the frustration society has with the standard right now: Robotic. Meticulous. Calculated. Planned. We don't like feeling like we're becoming more useless. \n\nAnd certainly there are _endless_ culprits to blame for it.\n\nWe bitcoiners probably like [this one](https://wtfhappenedin1971.com/):\n\nhttps://imgprxy.stacker.news/hL-zjt3R3P7lS0awxGKmzOdWIP0DnPhrKujCougDTrk/rs:fit:600:500:0/g:no/aHR0cHM6Ly93dGZoYXBwZW5lZGluMTk3MWhvbWUuZmlsZXMud29yZHByZXNzLmNvbS8yMDIwLzA2L2ltZ18wNTQwLTFfYXJyb3cuanBn\n\nLet's not get cocky and act like it's the _only_ problem though.\n\nBut anyways,\n\n#### Let's just zoom out a bit.\n\nWhen's the last time you took a weekend off to go rock climbing with friends? Two months off to go walk the El Camino? Three years off to go provide company and care for your elderly parents in their home country?\n\nHow often do you have the freedom to do something like that? Most people can't even dream of doing these things frequently.\n\nTaking a step back and looking at humanity, technological growth, history, etc., it becomes clear how incredibly **narrow** our worldviews must be regarding what's possible for the typical "human experience."\n\nJust separate the ego from it: we're just a mere 200,000 year old mammal. Obviously we don't know it all. No one is arguing that we have problems to work out.\n\nIn the 21st century, most of the world lives by the rhythm of their paychecks. Perhaps in the 22nd century, we won't even have paychecks anymore. What about the 99th century? The 500th? What does the human day-to-day look like then? Movies won't even exist then Bryan.\n\n#### A harsh-sounding reality we probably do psychologically have to face is that humans _can_ be bottlenecks in a lot of operations.\n\nWe figured that out long ago with assembly lines, but we're quickly learning the same can be true for [restaurant workers](https://www.kxan.com/news/texas/have-it-your-way-mcdonalds-first-fully-automated-restaurant-with-no-human-contact-in-fort-worth/), TV and film producers, [veterinarians](https://twitter.com/peakcooper/status/1639716822680236032), coders, writers, editors, etc...\n\nhttps://imgprxy.stacker.news/oZ8anj2pHOV0aZtTiMUEeAN3SYmnhAcXbdOWfE0Xa9k/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS92OG80TldmLnBuZw\n\nNow, some people can take this WAY too far. I've been noticing a lot more "transhumanism" thinking among some loud voices online ever since AI tech has taken off this year:\n\nhttps://imgprxy.stacker.news/yiwl7T_M_p_cF6_XIKrtZlb9_AsWqApda5w4bFAG5FE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9YSWtmTTNxLmpwZw\n\nWe obviously don't want to start growing babies out of pods and usher in a full on Matrix dystopia, but I can optimistically recognize that despite inevitable job "losses", AI, Bitcoin, Superconductors(?), and a whole host of new technology will bring unheard of abundance to the world, relative to today.\n\nLook beyond job losses -- look at the trend -- we're becoming [less reliant on jobs](https://ourworldindata.org/grapher/annual-working-hours-per-worker) altogether, while becoming [exponentially wealthier](https://ycginvestments.com/q4-2019-investment-letter-rising-global-wealth/).\n\nhttps://imgprxy.stacker.news/fuWUGHfMaPQNlHYq7E7UPmes8t-EbZs40SGDBqDUm3A/rs:fit:600:500:0/g:no/aHR0cHM6Ly9vdXJ3b3JsZGluZGF0YS5vcmcvZ3JhcGhlci9leHBvcnRzL2FubnVhbC13b3JraW5nLWhvdXJzLXBlci13b3JrZXIuc3Zn\n\nhttps://imgprxy.stacker.news/IZ_XlY_yNGlXX5V0QYkvrt_AfHxbJQDZv9g5fSWh6Jc/rs:fit:600:500:0/g:no/aHR0cHM6Ly95Y2dpbnZlc3RtZW50cy5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMjAvMDIvV29ybGQtR0RQLUdyb3d0aC1DaGFydC0xMi0zMS0xOS1sZXR0ZXIuanBnLTEwMjR4NzIzLmpwZw\n\nWe stopped shoveling kids into coal mines with grown men, we're probably also gonna get teenagers out of the McDonald's drive thru too. Great. Now we're wealthier, and these kids have more capacity to learn and earn doing what they want to do, not what they have to do.\n\nIt's a [tale as old as time](https://www.gapminder.org/data/documentation/epovrate/) that will probably continue.\n\nhttps://imgprxy.stacker.news/8a75sQi1uV96uDuOJZ8EYGFU-LURYpThwk6KLkDOvnQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9zMy1ldS13ZXN0LTEuYW1hem9uYXdzLmNvbS9zdGF0aWMuZ2FwbWluZGVyLm9yZy9HYXBtaW5kZXJNZWRpYS93cC11cGxvYWRzLzIwMTgwNDA5MDEyMzMwL1dvcmxkLVBvdmVydHktU2luY2UtMTgyMC0xMDI0eDczMC5wbmc\n\nThe key here is: technology is enabling us to recoup the time we had prior to placing so many systems on top of ourselves over the millennia.\n\nAI in the form of labor.\nBitcoin in the form of money.\nI'm sure you can think of others.\n\nSo, no, Bryan Cranston won't his ability to write and produce cinema. AI will free him up to spend as much time and energy as he wants working on the most important things to him, whether that be storytelling, or dropping Hollywood altogether and truly living out the meth-cooking dream.\n\nObviously, it's a long road to get to this point. Future generations will probably be the ones to truly experience and appreciate it. But the internet needs more damn optimists. Negativity spreads far too easily in the 21st century mind.\n\nThere really wasn't any sort of grandiose conclusion to this, but here are some\n\n## Questions I have for you:\n\nAm I wrong about all this? Are things really, _really_ about to go to shit?\n\nIs it a _good thing_ that national identity is breaking down? Is it not?\n\nHow else is the internet changing our culture, on a global scale?\n\nWill AI not dominate as much as we anticipate it to? Will it dominate _even more_ than we think?\n\nWhat's your take on transhumanism? Where do we draw the line between human vs. robot?\n\nHow does money tie into culture? How will Bitcoin revitalize a fiat culture?\n\nhttps://imgprxy.stacker.news/8cRZAVcGE_mRBUpSgtMd8qRwJAQPCiWMwd7TIsj7rt4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9YUUt6cG1ILnBuZw \N 16282 \N 184354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2867189477022 0 \N \N f 0 \N 0 4115951 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 185956 2024-06-17 14:04:09.72 2025-03-29 22:39:48.158 New podcast episode: AI, Simulations, and Startups with k00b I'm experimenting with a new podcast called, fittingly, _Ideas from the Edge_. We explore similar topics to those in this [territory](https://stacker.news/~ideasfromtheedge/).\n\nIn episode 02, I sit down with @k00b to discuss a whole bunch of ideas, including: \n- What is the singularity?\n- The future of AI and the coming intelligence explosion\n- Does the brain create or receive consciousness? \n- Can machines have souls? \n- Do we live in a simulation? \n- Keyan’s learnings from 7+ startups prior to Stacker News\n- How to balance intuition and feedback from reality\n- Why Jack is a 🐐 founder\n- Using bitcoin to create physical constraints in digital space\n- The future of Stacker News territories\n- Kagi and the opportunity to disrupt Google search\n- Evolution, epigenetics, and the observer effect https://fountain.fm/episode/ixbAjzmoBSUnroeOuQVY 16442 \N 185956 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.8469891646073 0 \N \N f 0 \N 0 244278068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 184500 2024-06-14 07:37:32.438 2025-03-29 22:39:48.158 How many Stackers do you subscribe to? \nCurrently I subscribe to posts from 8 Stackers. Rookie numbers, I need to step that up. \n\nIf you want to share, how many stackers do you subscribe to? \n\nAnd who do you recommend? \n\nSats for all (extra sats for good recommendations). \n\nGR \N 18306 \N 184500 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2866939549961 0 \N \N f 0 \N 0 98422891 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 186709 2024-06-19 08:15:30.472 2025-03-29 22:39:48.158 Sunday Survey: What's your cold-storage setup? \N \N 13763 \N 186709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3265829587052 0 \N \N f 0 \N 0 5675669 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 212196 2024-08-08 13:54:14.384 2025-03-29 22:39:48.159 AMA - Graham Krizek, CEO of Voltage Hi everyone!\n\nMy name is Graham Krizek and I'm doing an AMA for the next hour.\n\nFor those that aren't familiar, I'm the Founder and CEO of Voltage (https://voltage.cloud). I've been an engineer and bitcoiner for about 10 years. I love solving new problems in Bitcoin and helping drive adoption of this amazing technology. I created Voltage specifically for this and it's been incredible working alongside this community.\n\nExcited to answer your questions! Fair warning, I suck at typing... \N 10469 \N 212196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1186826145898 0 \N \N f 0 \N 0 45842254 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 192837 2024-07-01 17:23:00.899 2025-03-29 22:39:48.159 Saving in Bitcoin vs. Saving in Dollars If you are saving in dollars, life is getting harder.\n\nIf you are saving in Bitcoin, life is getting easier.\n\nhttps://pbs.twimg.com/media/F8reWyTXIAAUHIw?format=jpg&name=large\n\nhttps://pbs.twimg.com/media/F8reWyQWkAAoydy?format=jpg&name=large\n\nhttps://pbs.twimg.com/media/F8reWyPWsAA3hwn?format=jpg&name=large \N 20554 \N 192837 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.43962159411146 0 \N \N f 0 \N 0 19656475 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 200126 2024-07-15 04:25:28.689 2025-03-29 22:39:48.161 GitLab warns of critical zero-click account hijacking vulnerability \N https://www.bleepingcomputer.com/news/security/gitlab-warns-of-critical-zero-click-account-hijacking-vulnerability/ 19535 \N 200126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8800087268384 0 \N \N f 0 \N 0 177933773 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 206214 2024-07-27 07:25:19.057 2025-03-29 22:39:48.161 bookstores are the best places ever. this isn’t much of a written post, but an appreciation post for bookstores! i went to a barnes and noble after being deprived of a good bookstore after 2.5 months in japan 🥹 i took pictures of my favorite sections of the store because i was super super excited 🤧\n\nk bye :) \n\n![](https://m.stacker.news/32753)\n\n![](https://m.stacker.news/32754)\n\n![](https://m.stacker.news/32755) \N 9920 \N 206214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3381563853268 0 \N \N f 0 \N 0 91128433 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 206686 2024-07-28 05:37:50.479 2025-03-29 22:39:48.161 What is your favorite way to relax? Relaxation depends person to person.Which depends upon his likes, dislikes and behaviour . Some like to dance ,sing by this this they feel relax and enjoy and for some others it may be sleep or travel .I say it’s not about what we do but it’s about how we do it to get relaxed and get enjoyed on the same time. I love to dance. I usually do that or listen to music.\n\nNowadays I’m busy and working for myself (I left my job recently). As I own my work, so my time and my work are mine. \n\nI have the time and choice so, I can do what I like. Many options!\n\n**So, tell SN, What do you do to relax yourself?** \N 21421 \N 206686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1069188500126 0 \N \N f 0 \N 0 208193687 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 187425 2024-06-20 18:35:47.638 2025-03-29 22:39:48.161 Where are you on your journey with Bitcoin? Here's the list with an extra dash of humor, where are you on your journey with Bitcoin ?\n\nLevel -1: The Sheep - Baaa! Clueless about fiat, still thinks money grows on trees (and follows the herd, of course!)\n\nLevel 0: Paycheck to Paycheck - Living on the edge, one missed payment away from ramen noodles for life... and a permanent seat on the couch. Uses a PC with Microsoft software \n\nLevel 1: The 401k Guy - On track to retire by 70, but still wondering what a "Bitcoin" is... and why it's not just a fancy type of coffee 🤔\n\nLevel 2: The Saver - Finally has an emergency fund, but still uses a piggy bank... and thinks it's a "high-yield" investment 🐖\n\nLevel 3: The Investor - Thinks diversification means having both Tesla, Nvidia, Apple, Google stocks... and a few Bitcoin ETFs for "fun" and has a rental home . Chasing a 10% return when inflation is 5%🤦.\nHis daily computer is a Mac with a M1, M2, M3 chip.\n\nLevel 4: Trance State - Stacks Bitcoin on hot wallets and exchanges... and regularly checks their balance in their sleep 💸. Has sold the rental home. Uses a Mac with intel chip \n\nLevel 5: The Hodler / Pleb - Still holding onto Bitcoin from the previous bear runs, stacks Bitcoin on a cold wallet... and has a permanent "HODL" tattoo or Bitcoin merch. Owns a Jade , Coldcard or Trezor One , or bitbox or a similar cold wallet 💪. \n\nLevel 6: The Node Runner - Does dollar-cost averaging in a recurring way, saves Bitcoin on a cold wallet... and actually understands what a "node" is (no fancy word needed! He can speak about umbrel or start9 pros and cons) . He is willing also to be “Uncle Jim” and share his node for the family or community 💻.\n\nLevel 7: The Miner - Dollar-cost averages in a recurring way, uses a cold wallet, node... and has a mining rig in their basement, a permanent layer of dust on their shoulders, and his local Bitcoin community knows him as a superhero 💥 . He probably uses multi-signatures. Most likely doesn’t own stocks or a 401k pension fund. Uses Linux as his daily computer . \N 21683 \N 187425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.98160185270686 0 \N \N f 0 \N 0 131272028 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 200095 2024-07-15 02:11:28.258 2025-03-29 22:39:48.161 We bought property in El Salvador. Ask me anything. Hi all! \n\nMe and my wife just closed on a lovely property in el salvador. We spent months looking at properties, getting a feel for the market and finally put in an offer on something.\n\nBest part, we did the entire transaction without stepping foot in el salvador thanks to goodlife. They went to the property, did a zoom call to show us how it looked, and the lawyer did all the due diligence required .\n\nWe are now looking at buying a second property. We think its a great investment now.... \n\nSo to give back to the community, I'm offering what I know. Have a question/concern? Ask away if I know I'll answer! \N 9426 \N 200095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.942208688208 0 \N \N f 0 \N 0 74392528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 228055 2024-09-05 11:53:55.755 2025-03-29 22:39:48.162 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nSend your best 👇 \N 1769 \N 228055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.10139334271144 0 \N \N f 0 \N 0 110769997 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 229252 2024-09-06 22:23:41.227 2025-03-29 22:39:48.162 15 Years of Bitcoin in 15 Minutes \N https://www.youtube.com/watch?v=IqrQpffeiKQ 9295 \N 229252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8931749904593 0 \N \N f 0 \N 0 87479821 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 230963 2024-09-08 15:01:37.179 2025-03-29 22:39:48.162 How the Greatest Hacker Manipulated Everyone \N https://youtu.be/aLUDhbQojxA?si=_DxItJ3aLBM7ZnCc 18409 \N 230963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.85426004476752 0 \N \N f 0 \N 0 82876394 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 215602 2024-08-16 12:30:48.468 2025-03-29 22:39:48.163 It's leap day. What are you taking a leap on? My kids tell me that I have to make a goal to take a leap on something today. (They also say you have to leap everywhere you go.)\n\nYou got any plans to take a leap? \N 17714 \N 215602 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.04504424335887 0 \N \N f 0 \N 0 94231483 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 215249 2024-08-15 13:21:46.983 2025-03-29 22:39:48.163 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help. \N 19777 \N 215249 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.3203411523793 0 \N \N f 0 \N 0 90881722 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 215876 2024-08-17 03:11:10.35 2025-03-29 22:39:48.164 Huge Milestone- a 2 minute Lightning Node Setup for Guests over Nostr \N https://lightning.video/a375ac4590e6191d8705585fc563bbdcf17781626c52e17a47a7cc1a19f420e8 19980 \N 215876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.96527381617318 0 \N \N f 0 \N 0 203355541 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 217832 2024-08-20 12:33:44.47 2025-03-29 22:39:48.164 Bitcoin Accounting? I would like to keep track of my bitcoin history and was wondering what people do? Is there an app that gathers what you bought and at what price at and keeps up with what you have? Or is it basically spreadsheet ninja time?\n\nI basically want to log my purchases and keep up with how many dollars I've invested. Then I want to see it's value today. But of course every time I buy, it's at a different price, so a tool that's sorts all this would be so cool. \N 10280 \N 217832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.26664997890374 0 \N \N f 0 \N 0 179399658 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 218590 2024-08-21 17:23:39.02 2025-03-29 22:39:48.165 Being Raised by the Internet Love letter to the open source ethos that let this guy escape poverty, beginning as a kid https://jimmyhmiller.github.io/raised 14080 \N 218590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8336512477183 0 \N \N f 0 \N 0 154197990 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 218623 2024-08-21 18:00:10.373 2025-03-29 22:39:48.165 Deploying an LNURL and lnaddress in 5 minutes > **I'm not the creator of the phoenixd-lnurl project** nor affliated with it, moreover I couldn't find the creator here on Stacker News. I know that the guy can be found on Nostr behind the npub `npub1raftzmju5gq77twqxrumv5gnweew2t0p4v5upv8kku4vsz4j8jzq3tgns2` and [here is his website](https://1f52b.xyz/). He has all the credits for this. \n\n## Background\n\nA few days ago I was checking my nostr feed and somehow I run into the following project:\n\nhttps://github.com/AngusP/phoenixd-lnurl\n\nthat is based on the new-born phoenixd server, the new ACINQ product that basically mimics what the android phoenix wallet does, but it is deployable on a web server and potentially runs 24/7.\n\n## The process\n\nSince I have a VPS with some dummy services on it, I decided to try phoenixd and this wrapper, just to understand the potential of such a product.\n\n> For simplicity I'll call the phoenixd daemon "node" from now on.\n\nThe first thing to do is clearly to have some sort of server/VPS with a static IP and a domain. You'll need the domain to deploy the lnurl webpage that shows the lnurl and your lnaddress.\nOnce you set up the VPS you can decide to follow two different paths:\n\n1. Deploy the node using docker, which is pretty straightforward and all the information is on the README file of the project;\n2. Deploy the node by installing by hand phoenixd server, the dependencies of phoenixd-lnurl and setting up manually everything.\n\nI decided to go for the second methodology.\n\n### Phoenixd server\n\nInstalling phoenixd server is very easy, the *get started* section of the website explains step-by-step the deploy process so [take a look at it](https://phoenix.acinq.co/server/get-started). Once you're done with the installation of phoenixd server you'll have at hand two scripts, **phoenixd** and **phoenix-cli** and if you run phoenixd for the first time it'll generate your new phoenix server node, generating the 12 seed words and setting up everything that is needed. Just rememeber to backup the seed.dat file (containing your 12 words seed), you'll find it in the ~/.phoenix folder.\n\nLast thing I suggest to do is to add to the path the folder containing **phoenixd** and **phoenix-cli**.\n\n### Phoenixd-lnurl wrapper\n\nOnce the server installation is completed and the scripts are on your path, its time to proceed with the installation of the wrapper that will enable you to have a static webpage and an lnaddress directly linked to your new created node.\n\nGo to the [project repository ](https://github.com/AngusP/phoenixd-lnurl) and clone the repository in your favourite folder, then `cd` into the newly created repository folder,\nAt this point, you need to check one thing before going ahead: you need to verify that your system has an installed python version equal or newer than the python3.10. You can check that by writing `python --version`.\nThis is needed because some commands included in the `run.sh` script for the wrapper need this specific (or newer) version of python, otherwise the `run.sh` script will fail every time with an `TypeError`.\n\nIf your python version respects the requirement explained above, then you can procede with the creation of a new virtual environment, recalling to use the python3.10 version, and install the requirements as explained in the README.\n\n\n### Config file \n\nAt this point you should have the phoenixd-lnurl folder and an **activated** python environment with all the requirements. In the same folder you should create an phoenixd-lnurl.env file and copy the content of the phoenixd-lnurl.env.example. This env file is very important because in it you'll define:\n\n- the `PHOENIXD_URL`, that is an url containing your username, the http password (that you can find in ~/.phoenix/phoenix.conf), the localhost and the port that will be used to communicate with the node instance. The final form of this parameter is `http://:@127.0.0.1:`. You can check the hostname and the port number by reading the content of the `run.sh` script in the same folder;\n- your username (then used for the lnaddress);\n- the hostname that will serve the invoices needed by the LNURL, which is also the domain that will serve the webpage showing your LNURL QRcode;\n- some other settings about the min and max amounts that the LNURL can receive;\n- your nostr pubkey, that will appear in the same webpage.\n\n### Nginx settings\n\nAs of now, the wrapper should be set up as intended and you can even start it by running `./run.sh` in your terminal; if you run both the phoenixd daemon and the run.sh script your lnaddress will be able to receive sats. in order to run also the LNURL webpage you'll need to tickle a bit with nginx.\n\nIf you're running already a web server you should be already aware of how to tickle with nginx, anyway I recommend to take a look at [this guide](https://landchad.net/basic/nginx/) that will easily explain to you how to edit the nginx settings. Just remember that the `server` settings that the README file recommends to use must be inserted in the file corresponding to the domain you'll use that is contained in the `/etc/nginx/sites-available/` folder. The suggested settings for nginx already include the new landing page for the LNURL QRcode, so you can simply copy-paste everything.\n\n### Systemd services\n\nThe final thing you need to do is to create two systemd services (if you're using systemd), one for the phoenixd server daemon and one for the `run.sh` script. The project comes with a suggested systemd service template that you can easily edit according to where these files are located in your filesystem. \n\n## Final remarks\n\nNow by navigating to your `https://domain.com/lnurl` you should be able to see a freshy colorful page with your LNURL QRcode in the middle and the lightning address. And this is it!\n\nThe process is fairly simple and does not require a lot of work to set this up, nonetheless you should pay attention to a few elements:\n\n1. Phoenixd server is still a trust-minimized node that relies on ACINQ node for liquidity management and its overall functioning. As for the mobile wallet, channels are opened with ACINQ as a peer but as an additive feature phoenixd comes with the possibility of receiving some sats even without having a channel opened. This can work only for very small amounts, since phoenixd server 'understands' that the sats are not enough to open a channel with a swap and thus trusts momentarily ACINQ for holding these sats on your behalf.\n2. Phoenixd is a very new product and can have bugs that could lead to loss of funds. Moreover, phoenixd-lnurl is an alpha solution **built on top of a beta product**...you can easily understand that the level of insecurity of the overall structure requires to be very careful and not going mad by using substantial bitcoin amounts.\n3. As for an LN full node, phoenixd server is an hot lightning wallet running on a web server, which can possibly have a very low level of security, depending on your ability to secure linux systems. \N 7877 \N 218623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9613246333425 0 \N \N f 0 \N 0 139794230 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 219911 2024-08-24 09:29:04.119 2025-03-29 22:39:48.166 Is Breez subsidizing channel opennings? Saw this. Screenshot of Blockstream Green wallet. Openning a 10k sat channel for 2500 fee, NOW?! \nIm weirded out by it, real channel must cost like 10x that with current fees. Are they eating this cost or the channel isnt actually open? \n\nBest answer helping me understand how Breez SDK / Greenlight works will get 5k sats. Do they pay the onchain fee for user or am I completely clueless of how this works. Cos they claim its non-custodial. \n\nhttps://primal.b-cdn.net/media-cache?s=o&a=1&u=https%3A%2F%2Fm.primal.net%2FHUDl.jpg \N 694 \N 219911 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.55419197358155 0 \N \N f 0 \N 0 3595424 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 221953 2024-08-27 17:27:23.417 2025-03-29 22:39:48.166 The Joe Rogan Experience podcast is now on Fountain.fm \N https://fountain.fm/show/hQoOZTP4XFw4ge9udCzm 19930 \N 221953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7960229013083 0 \N \N f 0 \N 0 168498085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 222766 2024-08-28 23:24:16.904 2025-03-29 22:39:48.166 What's wrong with you? \N \N 9820 \N 222766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7212563877467 0 \N \N f 0 \N 0 196295947 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 232659 2024-09-09 22:59:41.926 2025-03-29 22:39:48.166 Blue Check Manifesto \N https://www.discreetlog.com/blue-check/ 2459 \N 232659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3547063168993 0 \N \N f 0 \N 0 128080050 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 239211 2024-09-17 10:29:59.755 2025-03-29 22:39:48.167 What is the best map in gaming history? \N https://x.com/VideoArtGame/status/1853478564504440978 8448 \N 239211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3380063907721 0 \N \N f 0 \N 0 47078378 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 240941 2024-09-19 06:59:07.272 2025-03-29 22:39:48.167 Stacker News Live #113: Asynchronous Layer Two \N https://zap.stream/naddr1qqjrxv3ev5mkxcmz94jnwwfj956xyvn995uk2de494nrxe3exgck2vryx3nrvqg4waehxw309aex2mrp0yhxgctdw4eju6t09upzpn6956apxcad0mfp8grcuugdysg44eepex68h50t73zcathmfs49qvzqqqrkvu464pya 718 \N 240941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.50371436108565 0 \N \N f 0 \N 0 36564014 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 240406 2024-09-18 13:42:08.785 2025-03-29 22:39:48.167 Synota AMA - Money at the Speed of Energy Synota is building software to fix payments in the energy industry using Bitcoin and Lightning. In the energy industry, contracts are often either pre-pay and collateralized (very expensive to the energy consumer) or post-pay (very risky for the energy supplier - credit risk and cash lag). Both of these dramatically increase the cost of energy (we estimate upward of 10% of the whole cost), and can be fixed using Bitcoin and Lightning.\n\nOur beachhead is helping solve issues for bitcoin miners and bitcoin mining hosts, but have the vision of rebuilding the entire economy from the ground up where all entities in the energy industry have lighting nodes and are paying value for value in real time.\n\nAustin Mitchell and myself will be answering questions today, feel free to ask us anything! 👍 \N 12768 \N 240406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.87597019829698 0 \N \N f 0 \N 0 1782189 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 242671 2024-09-21 00:15:45.407 2025-03-29 22:39:48.167 Lets talk online anonymity: A few links and suggestions. Yo homies, whats y'alls thinking about safety to, like, do and say what you want online, like privacy stuff and that? \n\nDid you know that the way you write can be used to connect ( all your "pseudonymous" online accounts? Yeah homie, thems the truths. Forensic Linguistics. But who cares?? \n\nI care, even though I never say anything I don't stand behind. The internet is a dark forest.\n\nI do illegal things quite often (nothing that hurts others). I've been tracked, caught, and prosecuted. Ironically, they caught me because I used bitcoin (sloppily). \n\nBut even if you follow the laws of the violent monopoly of weaponry that you've elected, you should protect yourself. Once I know who you are, I know how to hurt you, steal from you, be a dick in general to you. \n\nLuckily there are many ways to patch up your security. It's a fun rabbit hole to crawl down, and you'll be amazed at how insecure the internet really is. \n\nSo! To the interesting part. Here are my suggested starting points for learning this stuff from basics. \nWhenever possible, I'll provide onion links as well. Just download Tor browser to view them.\n\n- https://anonymousplanet.org/ ([onion](http://thgtoa27ujspeqxasrfvcf5aozqdczvgmwgorrmblh6jn4nino3spcqd.onion/))\n-- _Complete guide, if you only read one thing, make it this. Very accessible._\n\n- https://www.privacyguides.org/en/tools/ ([onion](http://www.xoe4vn5uwdztif6goazfbmogh6wh5jc4up35bqdflu6bkdc5cas5vjqd.onion/))\n-- _Fantastic recommendations for tools, and also great guides for maintaining privacy_\n\n- https://kycnot.me/ ([onion](http://kycnotmezdiftahfmc34pqbpicxlnx3jbf5p7jypge7gdvduu7i6qjqd.onion/))\n-- _Collection of apps that can be used anonymously, i.e. accepting crypto payments_\n\nSorry for not including any I2P links, im still new to it:)\n\nPlease contribute other links if you can! I'll give 500 sats to anyone with a new suggestion. \N 5708 \N 242671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.76034288749793 0 \N \N f 0 \N 0 243622955 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 223678 2024-08-30 12:50:32.086 2025-03-29 22:39:48.168 someone just tipped Satoshi 26.9 BTC \N https://twitter.com/mononautical/status/1743391496827473925 19992 \N 223678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5049517980135 0 \N \N f 0 \N 0 146899068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 235825 2024-09-13 14:19:15.324 2025-03-29 22:39:48.169 What are your favorite quotes related or relevant to bitcoin? Here's a few of mine.\n\n> You never change things by fighting the existing reality. To change something, build a new model that makes the existing model obsolete \n\n~ Bucky Fuller\n\n> Rules without rulers \n\n~ Andreas M. Antonopoulos\n\n> A false balance is an abomination to the Lord, but a just weight is his delight.\n\n~ Proverbs 11:1\n\n> It might make sense just to get some in case it catches on. If enough people think the same way, that becomes a self fulfilling prophecy.\n\n~ Satoshi Nakamoto\n\n> The computer can be used as a tool to liberate and protect people, rather than to control them.\n\n~ Hal Finney\n\n> It is well enough that people of the nation do not understand our banking and monetary system, for if they did, I believe there would be a revolution before tomorrow morning.\n\n~ Henry Ford\n\n> We hang the petty thieves and appoint the great ones to public office.\n\n~ Aesop\n\n> The question isn't who is going to let me; it’s who is going to stop me.\n\n~ Ayn Rand\n\n> The only sure weapon against bad ideas is better ideas.\n\n~ Alfred Whitney Griswold\n\n> Disobedience is the true foundation of liberty. The obedient must be slaves. \n\n~ Henry David Thoreau\n\n> The only way to deal with an unfree world is to become so absolutely free that your very existence is an act of rebellion.\n\n~ Albert Camus \N 20864 \N 235825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.66568675515891 0 \N \N f 0 \N 0 192928233 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 254499 2024-10-03 09:03:07.572 2025-03-29 22:39:48.157 Have you ever use RBF or CPFP on a BTC Txt? According to the data showed [here](https://transactionfee.info/charts/payments-signaling-rbf/) at least 60% of the txt has the RBF functionality activated.\n\nJust wanted to know if someone has ever used RBF or CPFP...could you share on what kind of scenario did you use it? It was worthy?\n\nThanks! \N 1469 \N 254499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9815097294382 0 \N \N f 0 \N 0 103209107 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 287120 2024-11-05 12:56:32.185 2025-03-29 22:39:48.167 If we sold bread at a fixed price, like 5000 sats, would you buy it? ### TLDR; This post is about spending bitcoin without thinking in fiat.\nThere’s your “retirement stack”, you know, the one you DCA and put away into your multi-sig and don’t need to think about until you get old. For that stack, we guess it might be ok to keep thinking in fiat. The jury’s still out on that one. Then there’s the one on your Zeus/Phoenix/Muun wallet; or if you’re hardcore, your own lightning node; which you’re happy to spend. We want to take a few minutes of your time to forget about the first stack and focus only on the second stack for now. If you don't believe in spending bitcoin, for instance you might not earn enough and need to save every single SAT for your future, that's cool too but this post probably won't be interesting for you (sorry it's quite a long one).\n\n### WHY IS THIS SO IMPORTANT??\n\nThere are still way too many interactions with the existing Fiat system. The censorship resistance stops as soon as you want to do normal things like pay your bills because you need to cash out. What we gonna do when the CBDC finally comes? Write angry posts about it on X? The majority of the world's population will not be protesting. They’ll sleepwalk into it just like everything else. That's why even today, despite having nice, simple solutions like Umbrel with a great UX, almost no one goes through the effort of actually using it to store everything on their home server. Instead, they use iCloud, Google Drive etc. Normies (and a lot of plebs) will always choose convenience over [self-sovereignty](https://futurethinkers.org/developing-self-sovereignty/#). We don’t blame them, we know it’s hard. You have to really want it to go through the effort. But since normies make up 90% of the world's population, if we truly want to change the world for the better, then we need to do things differently, a bit more radically than today.\n.\n.\n.\n\nSo let’s go …\n\nThis week, we had a long brainstorming session as we do, once a month and this time an idea came up that we’d like to share with a wider audience in order to hopefully get some constructive feedback. The last time we posted here, we received a ton of awesome feedback from all the stackers and spent the next few months learning and trying out all those amazing suggestions. So we came to the conclusion that Stacker News is the best place to nourish bold ideas.\n\nIt's possible that people have thought about this before. In fact, maybe some plebs out there are doing this already. If so, please let us know so that we can have a look and see how it's going. After scouring the interwebs, the closest thing we could find was [this post from Samourai Wallet from back in 2018](https://blog.samouraiwallet.com/post/178536644472/09887-welcome-new-international-users-and) where they decided to remove all fiat currency conversions from their app. Damn they were EARLY. Kudos to them for that way of thinking. But this is on the wallet side and that’s not what we're discussing here. What we were talking about in our session was on the retail side, where prices are actually set. For digital products, there are several streaming SATs apps like Fountain, where this concept is widely accepted by users. Hell even [Stackers](https://stacker.news/faq) right here is a SATs only land. But that gets destroyed as soon as you go over to any kind of product or service, when “pay with Bitcoin” simply means “pay with a **fixed fiat price** _using_ Bitcoin”.\n\nFirst of all, the idea we’re presenting is something that can be tried anywhere in the world on any continent, except for countries where bitcoin is banned which is like 5 out of 200. If there’s anyone reading this who runs any type of business, even if it’s a small informal market stall, you’ll understand that nobody dictates to you how to set your pricing. At least not if you’re in a free market economy which is basically everywhere, even in China. Now given that each business is free to decide their prices, then one could say that pricing is set based on a few metrics, such as expense ratios, market demand etc. So the first question is, _why is it the majority of bitcoin product businesses still price things in fiat_? Could it be because they assume their customers want to see that price in fiat? But their customers are plebs, so what gives? Let's dig further. Why is it that when some dream about the future they say, “one day everything will be priced in btc and it will become the denominator instead of the numerator”. Why one day? When does that “official changeover” happen? Doesn’t it start with a few that take the lead and then the rest will follow?\n\nThe most interesting use case would not be a typical bitcoin business like a MicroStrategy or a Trezor, but a normal retail store where people do their day-to-day shopping. On the retail side, one of the most game-changing and impressive implementations for us, was that of [Carel van Wyk and Carl Kritzinger from CryptoConvert getting Pick n Pay to implement lightning payments](https://www.youtube.com/watch?v=yvTvpPX6CTI). What's so groundbreaking here is not the ability to pay with bitcoin. It’s the ***type of store*** (nationwide) and the _number of products_ they stock, combined with the fact that this was done post-lightning. [Overstock was an early adopter way back in 2014](https://investors.overstock.com/news-releases/news-release-details/overstockcom-first-online-retailer-accept-bitcoin), but that was L1 on-chain, not practical for payments and they don't sell groceries. With [Pick n Pay](https://www.pnp.co.za/), you can literally buy any essential items for your home, including food. This significantly reduces the friction when it comes to [living a bitcoin standard](https://open.spotify.com/episode/0HGTWR1vUYG9xW5zmlCo5p). The fact that it’s in Africa is so awesome, since our fiat system is a joke copied from the west (imagine taking something terrible, copying it and making it worse, much like Shiba Inu was a fork of DogeCoin). This means that anyone living close to any of their stores in South Africa can 75% bypass the existing financial system from day 1 of receiving their bitcoin funds. The only friction is to get paid in fiat, pay your rent in fiat, then immediately convert to bitcoin and off you go. It’s hard to stress just how much this moves the needle and hats off to the CryptoConvert team for pulling that off and a shout-out to the Pick n Pay [owner/board](https://www.picknpayinvestor.co.za/leadership.php) for willing to be so early and bold to accept such a move, it's super cool. This would be equivalent to Walmart in the US starting to accept Lightning Payments. Of course in El Salvador you can do this everywhere, but the beauty of permissionless is that you can do something like Pick n Pay in nearly any country without having to wait for useless governments around the world to pass new laws.\n\nSo, what is it we’re suggesting here? We’re not suggesting Pick n Pay (or MicroStrategy / Trezor) start pricing things in SATs. That’s not low hanging fruit as they’re waaay too large businesses. Also Pick n Pay's backend systems are obviously fiat and none of the SATs they receive are actually kept. What we’re suggesting is that an ordinary pleb starts a small bakery. Why a bakery? Dunno, easy to start and run, fixed costs? It’s mainly ingredients, a physical store and one or two staff. Ok, these do vary a bit, but it’s not going to be enough to make a huge difference. If there is no demand, then you’d have gone out of business anyway, the pricing won’t be a game changer. Of course it doesn’t have to be a bakery. It could also be a food truck, parked outside of Bitcoin Park in Nashville, TN. Those dudes gotta eat right? If you pick that kind of location, you’ll know that the clientele would have no issues seeing prices in SATs and you’d also know that there’s enough of them around to keep you in business for the foreseeable future. Keep it small, keep it simple.\n\nNow to the interesting bit, how to set the pricing? This is why you can’t choose large businesses like a Pick n Pay, because they’re dealing with way too many variables to try such an experiment. Also, they're facing normies. In order to try this out, your customers have to be primarily bitcoiners. The suggested approach would be to pick ONE product out of the entire stock and set a FIXED price. Once that works, you can gradually start doing the same to the rest of the items. We picked bread, because this is something that everyone has to buy, at least once or twice a week. They way we would price it is a loaf of bread at exactly 5000 sats. No [point 99](https://www.rd.com/article/why-prices-end-in-99/) or any of those ridiculous marketing shenanigans, just a pure fixed price. Ok, now you're asking, _"but what about the price of bitcoin? It’s up 57% YTD!"_ Well, it’s also down 62% from the peak a few years back. The point is, it doesn’t matter, we’re talking about a loaf of bread not buying a house. Ok, so second challange, _surely over time this won’t work because eventually 5000 sats will be worth quite a bit_? We thought about that too. And the solution is - wait for it - **reduce the price automatically by 10 SATs on the first day of each month**.\n\nWhat’s going to be happening here is that this price will gradually decline over time and after 30 years of running this business which is the normal time for your average mom and pop shop, the same loaf of bread will cost 1400 sats (5000 - 3600 or 12 months x 30). Did you know that most supermarkets [adjust 40% of their products' prices every single week](https://www.bankofengland.co.uk/working-paper/2009/do-supermarket-prices-change-from-week-to-week)? Nothing to do with inflation, just their normal business practice to manage inventory and maximise profits. This is exhausting for the workers and a terrible experience for poor customers trying to decide where to save money on their groceries. In this case, your regular customers would know exactly what that loaf will cost them every single week throughout the year and for years to come. We call it - **Predictable Pricing**. More questions remain, _"do we need to know how much 5000 sats is worth in fiat?"_ Yes we do, but only INITIALLY, so only when the price is first set. You see, everything out there is a [figment of our imagination](https://www.ynharari.com/faqs/). Notice how a lot of SaaS websites have 3 or 4 product tiers and the one in the middle is always “recommended”. It’s playing with people’s minds of what is a “fair” price. Instead, the questions we should be asking are, (1) is this reasonable given the average difficulty adjustment for mining 5000 sats in the last 12 months and (2) would the average pleb have enough SATs at the start of every month to fill up their shopping basket and feed the entire family? In that sense, starting at 5000 and ending at 1400 after 30 years could work, because we have the one equation that the fiat system doesn’t have and that is a predictable supply. One could also add a third equation, (3) is there enough energy around the world for each pleb to mine enough sats to live on? But let’s not go that deep for now, we’ll save that for another post. Btw, we deliberately wrote “for each pleb” and not “for the entire world's population”, because not everyone wants bitcoin and we shouldn’t force them. If there were more businesses like Pick n Pay, it would be perfectly possible for all plebs to live a bitcoin standard IF we were willing to provide a large array of products and services to each other. We have a wide range of skills from construction workers, to chefs, to daycare providers, truck drivers all the way to software engineers. Over time more and more people will be welcomed into the pleb world, but it will never be everyone. It’s entirely possible that less than 50% of the world's population will EVER use bitcoin (on a regular basis), at least in our lifetime. We’re currently at [less than 2%](https://www.techopedia.com/cryptocurrency/how-many-people-use-bitcoin) so that shows what an uphill battle this will be.\n\nBut again, will it matter what the _FIAT price_ of bitcoin will be 30 years from now? It depends on how you earn. Those of you who already earn bitcoin today, would be interesting to hear your thoughts? Do you still think in fiat? Given the example we provided of Pick n Pay above where today (not 5, 10, 15 years in the future), but right now there is already a store where you can choose from over 1000 products and pay with lightning, in person, no exchanges needed. Or even if you still earn in fiat, if you’ve read up to this point, you probably convert 35-75% of your salary to bitcoin immediately upon getting paid, regardless of the price and spend the remaining 25-65% on food, bills, entertainment etc? What if plebs started creating these kinds of stores all over the world, wouldn’t it be great to not have the burden and hassle of keeping the remaining 25-65% in fiat and trying to “time the market”? What do you think? Or whatever your “routine” is, please let us know in the comments as we use this kind of input for research.\n.\n.\n.\n### What do you need for this to be a success?\n1. Can only be done by a pleb. Why?\n a) Trying to orange pill an existing normie small business into doing this is a tall order. It’s hard enough to get them to accept payment in bitcoin.\n b) For a pleb that already saves in bitcoin, receiving SATs in exchange for their products is like a gift from god, because it saves them from having to “buy” bitcoin.\n2. Your customers probably have to be a special type of pleb.\n a) Those that go deep into causes like freedom, opposing the surveillance state, bitcoin education, censorship resistance, privacy, self-sovereignty, helping women in bitcoin, reducing poverty etc, and think beyond just number go up. They will be buying from you not just because they like your bread or [put suitable essentials here], but they want to see the concept succeed as they understand the impact it would have if it spread worldwide.\n b) This is why we suggested Bitcoin Park as a location, but there must be *dozens of similar type places in every corner of the earth* where plebs gather to discuss changing the world.\n3. The ideal testing ground would be if you lived in a country where fiat currencies are pretty meaningless and have no real practical use at all\n a) Examples are Argentina, Zimbabwe. But the problem is this is also where governments tend to crack down and just can’t leave people alone. It’s easier to do this in a country where people are free to experiment without some stupid government trying to intervene in your small business.\n b) Another problem with these countries is that they tend to [peg to the dollar](https://twitter.com/BOLT11Village/status/1699857320082022789) which is a massive no no for us. That’s a whole nother political rabbit hole that we’ll save for another post.\n4. It might be possible with an online business that sells tangible products (or services) that plebs need in their daily lives, but the challenge there is to understand what product or service would be most suitable for pricing in SATs with no fiat conversion? And what would other plebs be willing to buy at a fixed SATs price if it were sold as a service? We haven’t gotten that far in our thinking yet or reached that part of the rabbit hole.\n5. Some of you might comment that none of this is possible because the law states that you must accept the local fiat currency as legal tender. Well, this is why your customers have to be plebs and not normies. _Few understand._\n\n\n\nTo summarise; our belief is that as plebs, we need a clean break from fiat. There will never be a changeover date. This is something that is fully within our control. But you can’t start with houses and cars, due to the impact on both buyer and seller so you start with simple items like lunch (food truck) or pastries. We’ve got a lot of viewpoints, but had to start with some assumptions which could be wrong. So we’re always learning from others in this space.\n\n\nIt’s really hard to get the mind away from conversion, it was super hard for us as well. We’ve all grown up and been brainwashed into thinking in fiat, so unfortunately people think that the value of bitcoin can only be measured in fiat. This is a problem, for the following two reasons (and probably more that you can suggest for us):\n\n- It keeps bitcoin as yet another asset for the government to tax, because they can measure the “market price” at which you spent every single sat against the price it was when you first acquired it. Effectively they’re saying that [20-40% of every bitcoin you own belongs to them](https://www.imf.org/en/Blogs/Articles/2023/07/05/crypto-poses-significant-tax-problems-and-they-could-get-worse), or whatever they set the capital gains rate to in the future (likely to keep going up as governments continue to go broke).\n- We’re subconsciously allowing traders (who trade at the margins) to control how we think an act indirectly via the price. Imagine when Blackrock starts owning more bitcoin than anyone and has THE main product out there for setting the price. It’s not them owning bitcoin that’s a problem, bitcoin is for everyone, it’s the price manipulation aspect of it and everyone being dragged along like sheep.\n\n\nThese are the notions we want to challenge. Bitcoin only should not just refer to shitcoinery, but to fiat as well. We assume it can only be done when products (and services) start being priced ONLY in satoshis with ***no conversion***. The only question that remains is, what are we waiting for?\n \N 20969 \N 287120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9917506476318 0 \N \N f 0 \N 0 138823471 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 249218 2024-09-27 17:49:57.608 2025-03-29 22:39:48.167 Are current lightning nodes killing new small nodes? Yesterday I managed to get my new umbrel lightning node funded.\n\nI got an umbrel node on raspberry pi.\n\nBut when I was looking for opening channels with other nodes I noticed that a lot of existing nodes want a minimum channel of 1000.000 sats or even 2000.000 sats.\n\nThis is not good.\n\nYou are allowed to ask whatever channel size as you want. But I guess these existing nodes also started small.\n\nAs a small node you want to test setting up channels. You still have to learn the technology. You are not going to put 5.000,000 sats on chain and lock it on a lightning wallet just to test. You want to start small. Test and grow. \n\nThen there are the fees. I saw some existing nodes ask 1000 sats transaction fees. There are also some nodes that have no routing fees. But you have to open a channel of minimum 2.000.000 sats with them.\n\nThen there is the buying of inbound liquidity. I started researching this. Once you open a channel you can send sats and that is outbound liquidity.\n\nBut there seems to be a business of selling inbound liquidity.So I have to pay to be able to receive sats.\n\nImagine I’m only wanting to try this out. I want to be able to send 100 sats from one lightning wallet on umbrel (the node) to a wallet on my phone. And I want to send 10 sats to a wallet on my lnbits on the umbrel.\n\nJust playing around to test the system. Get educated about how this thing called Be your own bank works.\n\nDo I need to lock 2.000.000 sats into a node and then buy inbound liquidity at a do I know how big a rate and then for just sending and receiving 100 sats I now need to pay transaction fees of 1000 sats minimum?\n\nReally? I can’t believe this. There must be another way. There must be other small nodes that offer 1-2 sats fees and where I can open channels of say 100.000 sats and get inbound liquidity of 1000.000 sats!\n\n\nOtherwise we will not be able to orange pill others to own and run their own nodes. Nobody will be able to be their own bank! Nobody will be able to be their own bank on an umbrel and running their own node. \n\nAt a certain point the existing nodes will keep other small nodes from starting. Just by keeping the transactions fees high and tge channel sizes high. No new small node can enter the system.\n\nImagine I want to orange pill a school to have their own raspberry pi and run umbrel.\n\nImagine I have a group of 15 small business owners with their restaurants, or consulting businesses, like website builders, graphic designers in a class room.\n\nI want to teach them this lightning thing and running your own node. I simply cannot ger this up and running. Because when I tell them they got to buy a raspberry pi of 200 us dollars, an ssd card of 300 dollars and then invest 2.000.000 sats and also pay my fees in sats they will think this is a scam.\n\nYou cannot start small.\n\nA kid of 15 should be able to learn how to set up her raspberry pi and run umbrel on ot and then opening channels. That is my goal.\n\nHaving 15 kids remotely and teaching them to play around. Sending sats to each other. Imagone 15 kids on different countries and islands in a webinar. Imagine this course starting for kids. Self paced. They can start as a group of 15 and they can build and learn during 1 month.\n\nThey can link and send sats to the kids that went before them.\n\nThey can do business with the businesses before them.\n\nTo do this the transaction fees need to be 1-2 sats. And the channels need to be 100.000 sats. Maybe even 10.000 sats for kids or for starters. Otherwise they won’t invest in this new lightning nodes technology.\n\nSo what are reliable lightning nodes who just ask 1-2 sats transaction fees and 10.000 - 100.000 sats for opening channels and where you can get 10.000-100.000 sats inbound liquidity?\n\nWhat are a network of big lightning nodes that are well connected that still allow and welcome starters to connect?\n\nGive me your views, I want to learn.\n\nI understand that when you are a big established node with 9.000.0000 sats, hey you own 50 btc and you just spread 9.000.000 sats somewhere on a node, you don’t care about the little guys starting. \n\nYou just want the respected guys of minimum 2.000.000 sats.\n\n\nBut with that you are actually making the network less decentralized.\n\nThere will be a time that 1000.000 sats is a huge chunk of property. You are not going to pay 1000 sats for just a transaction.\n\nLet me know your thoughts. And if you know reliable nodes with low transaction fees and smaller channel size requirements 10.000-100.000 sats, let me know. \N 16858 \N 249218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0531845013390608 0 \N \N f 0 \N 0 9483139 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 246767 2024-09-25 06:01:59.503 2025-03-29 22:39:48.167 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 14731 \N 246767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2416322687414 0 \N \N f 0 \N 0 79684587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 248509 2024-09-27 05:54:11.987 2025-03-29 22:39:48.168 On Providing Value How can we tell if transactions "provide value"?\n\nThe assumption from an Austrian economics standpoint is that any voluntary transaction is value-providing because each party believes the trade will satisfy some subjective need or want. So for example, OnlyFans is a value-providing transaction because both parties do what they do willingly and do so in the belief that they will get value.\n\nYet practically speaking, there's something weird about this. There are lots of voluntary transactions that don't provide value, perhaps significantly subtract value. Gambling, for example or other addictions (drugs, porn, etc) where one party is making a lot of money from the addicted person does not seem value-adding at all. How do we account for this? Is there some hidden fraud in these transactions? Or can we add some other principle by which we can tell if a transaction is value-providing?\n\nThe first thing to notice about these transactions is that they have high time preference behavior around them. There's at least one party that's being especially impulsive. A lot of mobile games, for example, rely on addictive, impulsive behavior to make money and they have more of the sucker-swindler relationship. The dynamic shares much more with rent-seeking or fraud than, say, someone paying for an Uber ride.\n\nYet the libertarian norm is considering anything voluntary to be value-adding. But is trading of fentanyl by an addict and dealer really a value-providing transaction? Common sense says no, yet subjectively, both parties wanted to do the transaction, so what's the problem? Is subjective evaluation of the benefits of trade enough to determine whether it's value-adding?\n\nThis is not an idle question. The British got a lot of resources from China by getting them addicted to opium. That would seem at some level nasty and unfair, that people were in some way tricked.\n\nIn other words, there has to be some expansion of the definition of fraud to align our definition of providing value to practical experience. Does selling drugs to an addict provide value? Subjective value says if it's done voluntarily it is. Can fraud be defined precisely enough that we can align our intuition that such trades don't provide value? This is the gap through which much evil is justified. We seek here to close that gap.\n\nWhat's the character of these problematic trades? First, the person buying doesn't have self-control. There's little personal responsibility and the trade is made under some personal distress. Clearly, such buyers don't have low enough time preference and we could leave it at that, but it's unsatisfactory because these people are hurting themselves. Many such actions like that are clearly detrimental and value-subtracting. Suicide is clearly detrimental, for example, and is essentially a transaction with yourself.\n\nAnd this is where we get a little more intuition about what's value-adding. The obviously bad transactions are done by people committing violence to themselves. \n\nPlease don't misunderstand where I'm going with this. I'm not using some concept of violence against ourselves as the justification for government tyranny, by saying that they are protecting you from yourself. I'm only saying that we should acknowledge that some people do commit violence to themselves and that this is not a good thing or a value-adding thing.\n\nShould we be preventing people from committing violence to themselves? That's a much harder question, because doing so may infringe on their human rights. But you can condemn the people selling this stuff as if it's something good. They are committing fraud in how they present their goods and/or services.\n\nIndeed, that's what's been happening. The people with the profit motive are getting angry, because they don't like other people interfering with their sales with moral condemnation which is really bad publicity. But this is the normal consequence of bad behavior. You get condemnation by third parties. That doesn't mean third parties should now suddenly be trusted, but we need more information in the market, not less.\n\nNow, some behavior that is condemned by one group may not be considered bad by another. This is where we get some subjectiveness to morality. And this is where we also get a lot of righteous indignation. But there is another dimension, particularly of violence to yourself that need explaining. Not everything voluntary provides value.\n\n\n \N 21709 \N 248509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3431284871749 0 \N \N f 0 \N 0 2507375 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 247935 2024-09-26 10:12:59.859 2025-03-29 22:39:48.167 Simple price ticker website? I'd love to see the BTC/EUR (or BTC/USD) price, maybe with a simple candle/bar chart. Nothing fancy. Sites I tried:\n\n * blocktrade: great, but dead\n * coinmarketcap: overloaded with stuff\n * aggr.trade: keeps forgetting my settings\n\nThanks! \N 13399 \N 247935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.16520791818568 0 \N \N f 0 \N 0 69829139 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 251420 2024-09-30 05:58:31.864 2025-03-29 22:39:48.168 New CASHU.space identity and website. Faster, simpler, cleaner! The new [cashu.space](https://CASHU.space) website is live, proposing a new agnostic and clean design. \n\n![](https://m.stacker.news/59748)\n![](https://m.stacker.news/59749)\n![](https://m.stacker.news/59750)\n![](https://m.stacker.news/59751)\n![](https://m.stacker.news/59752)\n![](https://m.stacker.news/59753)\n\nHow you compare it with the old one?\n![](https://m.stacker.news/59746)\n \N 9166 \N 251420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6604347907268 0 \N \N f 0 \N 0 230168126 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 250406 2024-09-29 08:09:38.202 2025-03-29 22:39:48.168 I Spent 36 Hours on Britain's Remote BITCOIN Island (No Cash!) I spent 36 hours surviving on Bitcoin on a remote British island.\n\nI hope you enjoy it and learn from it! https://youtu.be/jHHpPu_YvX0 16808 \N 250406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.74026322874538 0 \N \N f 0 \N 0 184192101 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 253305 2024-10-02 06:33:21.24 2025-03-29 22:39:48.169 How have you increased your reading rate? Hullo!\n\n@siggy47 has been so kind to us all, so I thought I would organise a bounty here.\n\n**How do you increase your reading rate?**\n\nAs in, carve out more time to read, read at a faster pace, consume audio books. My question can be interpreted as you see fit.\n\nHowever, I would like your authentic lived experiences though. Rather than those generic ones like find a book club or get an accountability buddy. Not that these tips don’t apply, but I would like you to freshen up your context.\n\nFor example, I find that I have been reading more since I formed the habit of typing favourite lines on Obsidian. This allows me to read several books faster simultaneously because I don’t have to wait for the ideal headspace to continue with one book. I can just browse through my notes and pick up from where I left.\n\nThe best comment as voted by the "top" filter ~24 hours later (27 August) - coinciding with the opening of the Saloon - gets 1000 sats.\n\nLooking forward to reading about your reading tips! \N 2338 \N 253305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7645798160596 0 \N \N f 0 \N 0 115159441 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 276664 2024-10-25 06:41:41.326 2025-03-29 22:39:48.157 Get your 🌽 off exchanges. Mid-October liquidity crisis! ### ❗Get your bitcoin off exchanges NOW\n- Don't mean to be hyperbolic, but everyone is going to feel the heat this November.\n- Not just traditional finance, but everyone everywhere all at once.\n- Binance is toast. Coinbase will be under pressure also.\n- A market meltdown is imminent. We are about to redefine our understanding of 'oversold' in all asset markets. Derivatives will unwind.\n- Margin calls are starting but they about to come everywhere you look, just look at Gold's price action these last 2 weeks. People are being forced to sell, in the face of dollar scarcity.\n- Bitcoin is anti-fragile but it it not going to be unaffected.\n- Every company is raising cash & examining headcounts. Stocks have rebounded into fairytale land once more. Risk is still everywhere.\n- Unemployment is about to go parabolic again.\n- Anyone found collateralising junk is going to be shown to be standing naked. This is not even 2008, this WILL be worse. Be prepared plebs...please!\n- Tensions are high and the West is going into winter, literally and metaphorically. Taiwan, Ukraine, "aliens" create so many potential triggers (and distractions).\n- Mentally prepare yourself for lower prices. Be ready to deploy capital at lower prices, not now!\n- Short chain-surveillance companies like Palantir if you wish to be a speculator in these markets.\n- Don't expect that the Fed can or even wish to step in at this time. Markets always bottom AFTER they intervene.\n\n----\n\n### 📉We Are Here\n[https://i.nostrimg.com/804185a0a63eb5def258c37ac12b93382c4350d54853ef86d33464760d8f367a/file.jpg](https://i.nostrimg.com/804185a0a63eb5def258c37ac12b93382c4350d54853ef86d33464760d8f367a/file.jpg)\nThis is not a Bitcoin chart, this is where we are in traditional markets and ETFs. That said, look what happened to BTC's USD price in 2020. A meltdown like this will affect Bitcoin, but more importantly it will affect what you have on exchanges. Or not in the future. Fed liquidity cannot save this right now. They are actively destroying markets.\n\n----\n\n### 👍 Reasons to withdraw\n- Fees are cheap right now, Mempool is almost clear. \n- Get your shit together THIS WEEK before the stampede occurs and everyone tries to do the same.\n- Learn how to avoid your dependence on these insane institutions. They are inept.\n- They will take your Bitcoin and assets to collateralise and save their bacon.\n- It's easy - there have never been as many solutions and wallets.\n-----\n\n## 👎 Reasons not to withdraw\n- Laziness\n- You think the unicorn boom can continue despite the Fed withdrawing liquidity from the markets at a record pace\n- You are charitable and want to lose all your money\n- You don't read this\n\n----\n### 🔼 Inflation will come...\n- Just not in asset prices.\n- In regular goods we all need: **Rents, Food & Energy**.\n- It will come once again in 6-9 months time, when the pain of deflation is worse than the disgust we see today with inflation.\n\n---\nP.S. I am no expert, but for me this setup is beyond obvious at this point. Don't tempt fate, withdraw today and give yourself options for when you may need it most! \N 21603 \N 276664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6529178682234 0 \N \N f 0 \N 0 91214967 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 271581 2024-10-19 12:58:12.784 2025-03-29 22:39:48.157 whats bitcoin adoption like in lugano \N https://youtu.be/ENncoHFMmwo?si=6ji8fDYtipgrr-Cd 775 \N 271581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0827394345722 0 \N \N f 0 \N 0 165701159 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 273359 2024-10-21 10:39:52.3 2025-03-29 22:39:48.157 How an empty S3 bucket can make your AWS bill explode This is both a bad tech and a security thing, but this was the paragraph that caught my eye:\n\n>We now understand why my S3 bucket was bombarded with millions of requests and why I ended up with a huge S3 bill. At that point, I had one more idea I wanted to explore. If all those misconfigured systems were attempting to back up their data into my S3 bucket, why not just let them do so? **I opened my bucket for public writes and collected over 10GB of data within less than 30 seconds.** Of course, I can’t disclose whose data it was. But it left me amazed at how an innocent configuration oversight could lead to a dangerous data leak!\n\nThe tl;dr is that even if you reject unauthorized requests for your S3 bucket, AWS will still bill you for them. And also, if you accept those requests, you get a lot of data you probably shouldn't have. https://medium.com/@maciej.pocwierz/how-an-empty-s3-bucket-can-make-your-aws-bill-explode-934a383cb8b1 19417 \N 273359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5796240685875 0 \N \N f 0 \N 0 111786742 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 265124 2024-10-12 12:24:29.513 2025-03-29 22:39:48.157 What have you learned in life THE HARD WAY? No such thing as a free lunch. \N 21088 \N 265124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7496414697941 0 \N \N f 0 \N 0 67136093 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 278220 2024-10-26 16:24:10.448 2025-03-29 22:39:48.157 21 ₿itcoin Orange Pills for nocoiners I just published a new guide. I hope you will enjoy it and share it with all your nocoiner friends. Is mostly for them, not for bitcoiners that already know all this stuff.\n\n>Yes, I am stuck, can't go back building my citadel, is raining like hell. So I decided to write a quick guide meanwhile.\n\nThe guide is structured in simple 21 steps of what should do a nocoiner, that just want to start. Inside are many links to more information and some memes (to give more color and insight). Memes are a powerful tool.\n\nHere is the full link to the article:\nhttps://darthcoin.substack.com/p/21-bitcoin-orange-pills-for-nocoiners \N 5758 \N 278220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5478764009659 0 \N \N f 0 \N 0 47890575 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 283301 2024-11-01 04:05:53.136 2025-03-29 22:39:48.157 BTC Investing: 1 million Sats or Fold(FLD) Stock? An analysis # TL:DR\n\n###### 🎯Nope owning 1M sats is better than owning 83 FLD shares at this time 🎯\n\n***USD/BTC = $90,996***\n***Block 870,580*** \n***1M sats = $909***\n***One share of FLD = 12,012 sats ($10.94)***\n***83 shares of FLD per 1M sats***\n*** \n\n# Background \n\nAs the bitcoin fiat price pumps the dollar equivalent of a million sats is starting to become a non trivial amount. \n\nMost Americans can’t save $400 for an emergency. Once the Bitcoin price reaches $100k, 1 million sats will equal $1,000. At the federal minimum wage rate it will take working at McDonalds about 138 hours (before taxes) to earn enough fiat to purchase 1 million sats. \n\nAt this rate middle class and upper middle class Americans are being priced out of having the capability to buy 1 million sats with little to no impact to their household finances. $1,000 is hard to come by for most Americans. 1 million sats is becoming an amount that most Americans can strive for as a savings goal. And it is enough to seed other investments in which the return would be worthwhile. \n\n###### Thus it caused me to think 🤔 💭 \n\nWhat public bitcoin companies are actually worth investing 1 million sats in? I ask this because most bitcoiners who have strong conviction have about 95 to 99% of their net worth in Bitcoin. \n\nThus is it wise to invest 1 million sats in a bitcoin business that has the potential to return a growth rate that is higher that bitcoin in fiat terms (which I think is 63% on average) or even better pay out Bitcoin dividends per share once we cross that rubicon. Or should investors skip and just stack sats. For those investors/savers who are risk adverse the answer is simple. Just be humble and stack sats. But for others who want to use their capital to not only impact the world but also earn a return this is something you can think about. \n\n# The Company Fold Inc.\n\nFold ( ticker: FLD) is a bitcoin financial services company with the mission of getting bitcoin to as many people as possible. They offer a suite of products that allows their customers to acquire bitcoin. Customers can buy bitcoin with some of the lowest fees (via a $10 a month subscription fee) and earn bitcoin via rewards. Fold has a debit card partnership with Visa which allows customers to earn bitcoin back on every debit card swipe. Customers can also earn sats back buy buying gift cards on the app. Recently Fold is positioning its self as the platform to seamlessly covert from dollars to bitcoin and making bitcoin the unit of account for personal finance. With offering sats back on ACH payments they are uniquely positioned to capture market share from traditional banks. The company has come a long way (AR, lightning, massive sats back with spinning the daily wheel) it appears they have found their grove and could be a very profitable bitcoin business offering great services for bitcoiners. \n\n## Financials and data\n\nSince Fold is going public via a SPAC not much known about the company. We do know they have a strategic bitcoin reserve with about 1,000 BTC on the balance sheet but nothing more is known. Fold CEO Will Reeves is hopeful the SPAC will be done Q1 2025 and more information about the company will be released. \n\n### Bull(🐂 )and Bear(🐻)Case:\n\n🐂 \nBull case is simple. As bitcoin adoption grows so will fold. Bitcoin is on the cusp of a raging fiat bull market. Nothing gets the masses into bitcoin then massive price pumps. Fold is ready and battle tested to onboard new users and use their suite of products to keep customers using their application. I am sure they have more planned on the road map as shared by CEO Reeves which will increase the business opportunities for Fold. They also stack bitcoin as a strategic reserve which will work well in their favor during bull markets. \n\n🐻 \nThe Bear case is bitcoin fails of course but other risks are at play too. They depend on many third parties. Sutton bank, Visa, Bitgo, for bitcoin custody. From the words of Nick Szabo trusted third parties are security holes. If any one of these partnerships fail Fold is doomed. The Fold team in the early days was supposed to be a lightning application. They pivoted and went the Visa debit card route. I really do hope they get back to the lightning road map. A strong example of this would be rewarding customers who pay with lightning the highest sats back rewards and pivot away from Visa. I hope the CEO and team don’t lose sight of the vision of bitcoin in pursuit of fiat gains but time well tell. \n\n# 1M sats or 83 FLD shares? \n\nI am a big fan of fold! I own shares now. (Disclaimer) but is it worth for me to dip into my cold storage sell 1M sats to buy 83 fold shares now?\n\n**🚫NOPE!👎**\n\nI rather keep the 1 million sats today! Fold shares are still pretty cheap at 12k sats per share but they still need to complete the SPAC process and once that is done it is quite possible all the insiders cash out thus dumping on you causing the share price to go down. \n\nWith bitcoin going on a bull run you could miss a lot of upside by selling now to buy FLD shares. If you have a large Sat stack this may not matter to you much but if you are just starting your stacking journey I wouldn’t recommend it. \n\nIf you work a fiat job and wish to support Fold and the CEO then sure buy a few shares here and there and work your way up to 83 shares but at this moment I much rather have 1M sats then 83 FLD shares. \n\nI am hoping Fold will pay a bitcoin dividend or constantly improve the sats per share your fold shares will give you but fold is at the beginning of their growth phase and the business model as it stands today doesn’t get me excited to sell 1M sats to buy 83 FLD shares. \n \N 18188 \N 283301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6196411375123 0 \N \N f 0 \N 0 136619920 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 283029 2024-10-31 16:19:43.369 2025-03-29 22:39:48.157 How CTV (BIP 119) Could Create Channel Factories for Casual Users (John Law) "The key challenge in scaling Lightning in a trust-free manner is the creation of Lightning channels for casual users. Signature-based factories (AKA other ideas for channel factories before this paper) appear to be inherently limited to creating at most tens or hundreds of Lightning channels per unspent transaction output (UTXO). In contrast, simple covenants (including those enabled by CheckTemplateVerify (CTV) or AnyPrevOut (APO)) would allow a single UTXO to create Lightning channels for millions of casual users.\n\nThe resulting covenant-based protocols also:\n\nsupport resizing channels off-chain,\n\nuse the same capital to simultaneously provide in-bound liquidity to casual users and route unrelated payments for other users\n\ncharge casual users tunable penalties for attempting to put an old state on-chain, and\n\nallow casual users to monitor the blockchain for just a few minutes every few months without employing a watchtower service.\n\nAs a result, adding CTV and/or APO to Bitcoin's consensus rules would go a long way toward making Lightning a widely-used means of payment\n\n...\n\nThe remainder of this paper is organized as follows.\n\nSection 2 demonstrates that the key challenge in scaling Lightning is providing Lightning channels to casual users while meeting their usability requirements.\n\nSection 3 then shows why no protocol that uses Bitcoin's current consensus rules is likely to meet this challenge.\n\nCovenant-based protocols for creating Lightning channels are presented in Section 4,\n\nand they are analyzed in Section 5. The remaining sections look at related work and give conclusions."\n\nThis has been my reformatted for readability but otherwise mostly copy and paste of the introduction of " Scaling Lightning With Simple Covenants" paper written by John Law. I hope this introduction gets you as interested in reading the paper as it has gotten me.\n\nThe full paper can be read here: [Scaling Lightning With Simple Covenants by John Law](https://github.com/JohnLaw2/ln-scaling-covenants/blob/main/scalingcovenants_v1.0.pdf) \N 21825 \N 283029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2262483223301 0 \N \N f 0 \N 0 124475016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 279509 2024-10-27 23:36:42.342 2025-03-29 22:39:48.158 What's Under the Hood of the Big Lightning Nodes? I am curious as to what hardware, software, and practices the really big lightning nodes use. I'm still a minnow swimming with whales, but maybe this isn't a bad thing to think about as the big players represent more and more of the transactions. Centralization seems likely to be a problem pretty soon.\n\nDoes anyone on SN know? Have any former employees described the setup? Are there any sources online to find this stuff? \n\nI'm talking about nodes like Wallet of Satoshi.\n\nI guess I'm really asking how one would go about setting up a big, industrial size node and become a major player.\n\n \N 1175 \N 279509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.42060867946444 0 \N \N f 0 \N 0 211266783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 293880 2024-11-12 07:35:41.132 2025-03-29 22:39:48.158 I'd Like Some Input On The Design. As some of you beautiful, beautiful piggies might already have noticed, I'm currently playing around with some designs for pouches (which are practically finished and ready to be realized), as well as a bottle holder; the latter still needs some more 💕, I think, and that's where **you** come in ❗🙂\n\nI'm trying to wrap-up the design for the bottle holder before my new order of materials arrives, since I'd then be able to realize it together with the other items I have in mind.\n\nMy miraculous mind just now managed to - at least in my little world - *improve* on the only a few days ago trialed "folded bottom", and I think it's quite a ***banger*** design for a bottom, but I'd still like to hear some input on the two versions.\n\nFurthermore, I'd like to hear what y'all would like to see added onto a bottle holder, be it for modularity, looks or added usability. 😁\n\n* Folded bottom V1:\n\n![](https://m.stacker.news/44765)\n\n![](https://m.stacker.news/44766)\n\n* Folded bottom V2:\n\n![](https://m.stacker.news/44767)\n\n![](https://m.stacker.news/44768)\n\nThe V2's still a bit rough (could be more symmetrical) but it's a quick-and-dirty trial, so there's the first improvement, what else?\n\n* General design of the prototype as of now:\n\n![](https://m.stacker.news/44769)\n\n![](https://m.stacker.news/44771)\n\nI've got quite some solid things in mind already, but I'm curious as to what y'all can come up with! \N 12749 \N 293880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0699433649794 0 \N \N f 0 \N 0 246562126 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 292334 2024-11-10 16:43:21.943 2025-03-29 22:39:48.158 Nostr content moderation? Do you know if any Nostr apps or relays are doing any sort of automatic or manual moderation to remove illegal content?\n\nWhat happens when someone posts vile photos? \N 2609 \N 292334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4294033023272 0 \N \N f 0 \N 0 15195350 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 293856 2024-11-12 06:12:14.544 2025-03-29 22:39:48.158 How has Stacker News helped you? The top most answer gets 1000 sats. Stacker News is very helpful in so many ways. Just curious to know how you feel about this outstanding platform. The top most answer gets 1000 sats, and the rest get zaps from SN. Feel free. \N 3392 \N 293856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.05288805194814 0 \N \N f 0 \N 0 168579955 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 294796 2024-11-13 02:34:32.518 2025-03-29 22:39:48.158 Introducing the Open Design Challenges ![](https://images.unsplash.com/photo-1589149098258-3e9102cd63d3?q=80&w=3139&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D)\n\n- - - \n> # _**Let's Embrace Change!** We can innovate much faster when building on the ideas of many. We call this **open innovation**._\n\n- - - \n### WTF is an ODC\n\nHowdy stackers, cowboys, cowgirls, hodlnauts and anyone else reading this message. We are glad to announce this initiative: Open Design Challenge, a series of competitions or project ideas to encourages the design, development and sharing of open-source ideas and help them come to life. This means that the ideas that you'll share here are [freely available for anyone](https://creativecommons.org/public-domain/cc0/) to use, modify, and share. A great way to promote your creativity, innovation, and foster collaboration. Are you ready?\n\nEvery Open Design Challenges works a little differently. We'll draw from the process of design thinking to lead us towards innovation. This typically happens over the course of a few different Phases. We’ll guide you through every step along the way if you need to:\n\n**INSPIRE US ALL**_, sparking new insights_\nStart with a big, activating question that brings people together. Share stories or research to build inspiration and empathy for those affected by the issue.\n\n**IDEATE TOGETHER** _thinking big, builds faster_\nBrainstorm bold new ideas and apply fresh insights to advance existing concepts. Test things out: get the tools to build a quick prototype and learn what works.\n\n**ITERATE CONTINUOUSLY** _reflecting and refining_\nShare comments to help uncover issues and new opportunities. Use expert feedback, community support, and design tools to rapidly improve ideas.\n\n**IMPACT-FULL** _making it happen_\nElevate and celebrate ideas with great potential for impact. Connect and work together to bring ideas to life around the universe.\n\n- - - \n### Yes OK, but Why?\nOpen Design Challenges are like idea accelerators that connect people globally with tools, support, and each other to build real solutions for today's toughest problems. This is a great place to start if you’re getting to know ~Design. Future is uncertain, but we can make it what we want it to be, together.\n\n- Access design support or funding to advance and implement your idea. _Wait, did you just say funding?_ Yes you hear it right, SN it's a great place to kick-start and prove your ideas right. We have already seen some [great](https://stacker.news/items/239180/r/Design_r) [exam](https://stacker.news/items/268081/r/Design_r)[ples](https://stacker.news/items/380729/r/Design_r) of collective crowdsourcing projects. We aim to help and support everyone with ideas to make them reality.\n- Connect with a global community of innovators, experts, and funders.\n- Use ~Design resources and design thinking methodologies to develop, refine, and scale your ideas. \n- - - \n> # _If you want to help build a better world, here you’re in good company._\n\n- - - \n### How to participate in an Open Design Challenge\n\nDreams can become reality, and there are many ways to participate in an open design challenges:\n\n- **Learn:** each challenge will have its own guidelines and external resources to inspire your creative mind and give some lightning sparks to your neurons. \n\n- **Participate:** all our ODC will be shared exclusively here on the ~Design territory. No need to sign up or submit your email, nor any boring online registration form. Yes that's right! \n\n- **Share** your sketches, pictures, files, words or whatever else to illustrate and share your idea with our community and be ready to receive whatever come from there. That's it! \n\n- **Collaborate** with creators and help them improve ideas with your precious feedback and insights. You never know it might it grow in something tangible and usable one day.\n\n- - - \n### So What's next?\nStay tuned! We are really excited about releasing the first ODC in the next coming days! For the time being, we'd love to hear from you, your thoughts and feedback about this idea. If there's anything you'd like to see here, any topic you ever doubt about, any problem you might be facing now, please reach out!\n\n\n- - - \n### Questions?\n[**`DM us on nostr`**](https://iris.to/design_r) if you have any question or need help with your FOSP (Free & Open Source Project)\n\n\n* Photo by [Michael Dziedzic](https://unsplash.com/photos/blue-and-black-ball-on-blue-and-white-checkered-textile-qDG7XKJLKbs) \N 21444 \N 294796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2586951213815 0 \N \N f 0 \N 0 161935385 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 298117 2024-11-17 01:02:19.682 2025-03-29 22:39:48.158 Bitcoin and NFC ![Bitcoin y NFC.jpg](https://m.stacker.news/14764)\n\n**English Version:**\n\n**Bitcoin and NFC**\n\nBitcoin we already know it, we know what it does, its characteristics and what is its purpose, but NFC, what is it and how can we link it to Bitcoin?\n\n**What is NFC?**\n\nNFC (Near Field Communication) is a short-range wireless technology that allows the exchange of data between devices. It emerged in the early 2000s and is based on RFID (Radio Frequency Identification) technology. \n\nIt has had a variety of uses since its inception, from contactless payment with credit cards and cell phones, to data transfer between devices, access to events or locations, fast pairing of Bluetooth devices, and object identification.\n\n It is also used in public transportation cards and in the Internet of Things (IoT) industry, where it enables interaction between smart devices.\n\n**How can we combine it with Bitcoin?**\n\nThe combination of Bitcoin and NFC offers a number of interesting possibilities, such as:\n\n**Contactless payments:** users can use their smartphones or other NFC devices to make payments in stores and other establishments. \n\n**Funds transfers:** Users can transfer funds between each other using their NFC-enabled devices. Many Bitcoin wallets already allow this option.\n\n**Data storage:** Although not very secure as they can be read with any NFC device, if we have an NFC card or chip we can "record" inside it our recovery words, a Bitcoin address to receive payments or simply any other information we wish. Remember to keep it well guarded to avoid information leaks. \n\n**Bolt Card NFC Lightning Network**\n\nThe Bolt Card is a physical card that can be used to pay with Bitcoin through the Lightning Network.\n\nPhysical NFC cards such as the Bolt Card mark a new step in the adoption and use of Bitcoin as a payment and exchange instrument, breaking down barriers of limited usability and speed that were one of the negative aspects that worked against the use of Bitcoin as a means of payment. \n\nThanks to the second layer, known as Lightning Network, Bitcoin has a mechanism that helps it not only to increase its speed to levels even higher than traditional payment instruments, but also opens the door to a universe of innovations that allow the end user to easily use it as a payment instrument without complications.\n\nTo use the Bolt Card, the merchant, or your counterpart, only needs to generate the corresponding charge from their phone or NFC device and we bring the Bolt Card close to them so that the charge is debited from it.\n\nKey features include:\n\n⚡ Lightning payments.\n\n⚡ NFC / Contactless\n\n⚡ Send payments in BTC, at the exchange rate of any Fiat currency.\n\n**Challenges**\n\nThere are some challenges associated with the combination of Bitcoin and NFC. For example, the security of NFC devices is a major concern, as they could be hacked to steal funds or personal information. \n\nIn addition, the widespread adoption of Bitcoin and NFC is still in its early stages, so it can be difficult to find places to use these technologies.\n\nDespite these challenges, Bitcoin and NFC have the potential to revolutionize the way we make payments, transfer funds and authenticate ourselves. As these technologies develop and become more widely adopted, we are likely to see an even wider range of applications for them.\n\nI hope I've been helpful to everyone! \n\nLet me know if you know of more uses for NFC and what context you've used it in. Let me know in the comments. I read them...\n\n#bitcoin #nfc\n\n\n**Versión en español:**\n\n**Bitcoin y NFC**\n\nBitcoin ya lo conocemos, sabemos qué hace, sus características y cuál es su objetivo, pero el NFC, que es y cómo podemos ligarlo a Bitcoin?\n\n**¿Qué es NFC?**\n\nNFC (Comunicación de Campo Cercano o Near Field Communication en inglés), es una tecnología inalámbrica de corto alcance que permite el intercambio de datos entre dispositivos. Surgió a principios de la década de 2000 y se basa en la tecnología RFID (Identificación por Radiofrecuencia). \n\nHa tenido diversos usos desde su creación, desde el pago sin contacto con tarjetas de crédito y teléfonos móviles, hasta la transferencia de datos entre dispositivos, el acceso a eventos o lugares, el emparejamiento rápido de dispositivos Bluetooth, y la identificación de objetos.\n\n También se utiliza en tarjetas de transporte público y en la industria del Internet de las cosas (IoT), donde permite la interacción entre dispositivos inteligentes.\n\n**¿Cómo podemos combinarlo con Bitcoin?**\n\nLa combinación de Bitcoin y NFC ofrece una serie de posibilidades interesantes, como:\n\n**Pagos sin contacto:** Los usuarios pueden utilizar sus teléfonos inteligentes u otros dispositivos NFC para realizar pagos en tiendas y otros establecimientos. \n\n**Transferencias de fondos:** Los usuarios pueden transferir fondos entre sí utilizando sus dispositivos con NFC. Muchas carteras de Bitcoin ya permiten esta opción.\n\n**Guardar datos:** Aunque no muy seguro pues pueden leerse con cualquier dispositivo NFC, si tenemos una tarjeta o chip NFC podemos “grabar” en su interior nuestras palabras de recuperación, una dirección Bitcoin para recibir pagos o simplemente cualquier otra información que deseemos. Recordar que hay que tenerlo bien guardado para evitar fugas de información. \n\n**Bolt Card NFC Lightning Network**\n\nLa Bolt Card es una tarjeta física que se puede usar para pagar con Bitcoin a través de la red Lightning Network.\n\nLas tarjetas físicas NFC como la Bolt Card marcan un nuevo paso en la adopción y uso de Bitcoin como instrumento de pago e intercambio, rompiendo barreras de limitada usabilidad y velocidad que significaban uno de los aspectos negativos y que jugaban en contra de la utilización de Bitcoin como medio de pago. \n\nGracias a la segunda capa, conocida como Lightning Network, Bitcoin cuenta con un mecanismo que le ayuda no solo incrementar su velocidad a niveles incluso superiores a instrumentos de pago tradicionales, sino que también abre la puerta a un universo de innovaciones que le permiten al usuario final tener la facilidad de usarlo como instrumento de pago sin complicaciones.\n\nPara usar la Bolt Card solo basta que el comercio, o tu contraparte, genere el cobro correspondiente desde su teléfono o dispositivo NFC y nosotros acerquemos la tarjeta Bolt para que se debite ese cobro de ella.\n\nEntre las principales características destacan:\n\n⚡ Pagos mediante Lightning\n\n⚡ NFC / Contactless\n\n⚡ Enviar pagos en BTC, al tipo de cambio de cualquier moneda Fiat\n\n**Desafíos**\n\nExisten algunos desafíos asociados con la combinación de Bitcoin y NFC. Por ejemplo, la seguridad de los dispositivos NFC es una preocupación importante, ya que podrían ser hackeados para robar fondos o información personal. \n\nAdemás, la adopción generalizada de Bitcoin y NFC aún está en sus primeras etapas, por lo que puede ser difícil encontrar lugares donde utilizar estas tecnologías.\n\nA pesar de estos desafíos, Bitcoin y NFC tienen el potencial de revolucionar la forma en que realizamos pagos, transferimos fondos y nos autenticamos. A medida que estas tecnologías se desarrollen y se adopten más ampliamente, es probable que veamos una gama aún más amplia de aplicaciones para ellas.\n\n¡Espero haya servido de ayuda a todos! \n\nDime si conoces más usos del NFC y que contexto lo has usado. Déjame saber en los comentarios. Los leo…\n\n#bitcoin #nfc \N 6765 \N 298117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.97472045506261 0 \N \N f 0 \N 0 77818436 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 296265 2024-11-14 12:22:41.436 2025-03-29 22:39:48.159 We need to support Bitcoin merchants more! ✅️⚡️ I recently went to the only Cafe around my city and area that accepts Bitcoin via LN. They happen to be a top end Cafe as well. Very good reputation and coffee.\n\nAnd so at POS I say I'd like to pay with Bitcoin. \n\nThe cashier says, "Oh it's been a while, let me dust this off." As he powers up a tablet used to make the transaction. \n\nDisappointing. What?! 😮‍💨\n\nMore of us need to make a *specific effort to support businesses accepting BTC and Lightning!\n\nNo need to feel guilty. But we all need to EMBODY adoption. \n\n⚡️🙋‍♀️✅️⚡️🙋‍♀️✅️\n\n \N 1785 \N 296265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.58780901849719 0 \N \N f 0 \N 0 107939259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 300142 2024-11-18 16:52:11.426 2025-03-29 22:39:48.159 Travelling and enjoying life - KYC free Nomadic life comes with pros and cons, and one of the challenges I've been facing forever and continue to face on a regular basis it to find the way to travel KYC free.\n\nDoes anyone know a valid process to do so? Where are those neutral territories, those _The Continental_ hotel chains, where John Wick can stay anonymously safe? Any option to cross borders without showing government IDs?\n\nOr am I maybe dreaming about utopia?\n \N 1495 \N 300142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1101744989033 0 \N \N f 0 \N 0 74590154 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 328319 2024-12-13 04:36:12.777 2025-03-29 22:39:48.159 Fun Fact Friday- Best Fact wins 10k sats It's Fun Fact Friday!\n\nSend your best, most incredible, utterly unbelievable facts for a chance to win **10k sats**. One fact per comment please. \n\nWinning fact will be determined by "top" filter by 9am ct tomorrow. \n\n![](https://m.stacker.news/50271)\n\nGood Luck! \N 10490 \N 328319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0797622214811 0 \N \N f 0 \N 0 48767986 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 311810 2024-11-28 18:42:12.225 2025-03-29 22:39:48.159 Best Bitcoin Marketing Can't withdraw my own money[^1]:\n\n![IMG_20240215_181846.jpg](https://m.stacker.news/16250)\n\nNever had this problem with my Visa Debit card. I'm not aware of any daily or weekly withdrawal limits. I didn't even withdraw any amount this week. Only aware that I have only three free cash deposits per month (or even year?).\n\nI also don't want to speak to any "consultant". But guess I have to.\n\n[^1]: Yes, I know, legally speaking, the money in your bank account is not really yours anymore or something like that.\n\n \N 2514 \N 311810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0732463743651 0 \N \N f 0 \N 0 32362395 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 308818 2024-11-26 11:28:29.652 2025-03-29 22:39:48.16 Tornado Cash Fifth Circuit Full Decision Here is a link to the full PDF of the decision:\n\nhttps://storage.mollywhite.net/pdfs/TornadoCash5Cir.pdf\n\nI'm guessing there are stackers here who would like to dig through the original source material themselves rather than rely on news reports. \n\nI have been reading through it. There is a cryptocurrency primer at the beginning of the decision. \n\nThis probably goes without saying, but stackers shouldn't be put off by all of the shitcoin discussion. The legal principles are relevant to bitcoin. \n\nIt is interesting that the court refers to the Loper Bright case and the end of Chevron deference in its decision:\n\n> In effect, the Supreme Court has instructed that we\nmust “independently identify and respect [constitutional] delegations of\nauthority, police the outer statutory boundaries of those delegations, and\nensure that agencies exercise their discretion consistent with” the\nAdministrative Procedure Act or have engaged in reasoned decisionmaking\nwithin those boundaries. 37 To do so, we must “determine the ‘best’ reading\nof a statute; a merely ‘permissible’ reading is not enough.”38\n\nWe are starting to see in practice how significant that ruling was.\n\n\nI also recommend you read the discussion regarding the definition of property. Here's some of the language:\n\n> The immutable smart contracts at issue in this appeal are not property\nbecause they are not capable of being owned. More than one thousand\nvolunteers participated in a “trusted setup ceremony” to “irrevocably\nremov[e] the option for anyone to update, remove, or otherwise control those\nlines of code.” And as a result, no one can “exclude” anyone from using the\nTornado Cash pool smart contracts. In fact, because these immutable smart\ncontracts are unchangeable and unremovable, they remain available for\nanyone to use and “the targeted North Korean wrongdoers are not actually\nblocked from retrieving their assets,” even under the sanctions regime.\n\nHere's some more:\n\n> Sure, some smart contracts are capable of being owned in the sense\nthat Tornado Cash developers can create new smart contracts and\ndisconnect old mutable contracts. In theory, should Tornado Cash developers\nchoose to comply with sanctions on mutable smart contracts, those\ndevelopers could disconnect those mutable smart contracts to make them\ninaccessible and unusable by anyone on the Ethereum blockchain. But they\ncannot discard, change, disconnect, or control smart contracts that are\nimmutable—like the ones currently listed on OFAC’s SDN list and at issue\nin this appeal. Even with the sanctions in place, “those immutable smart\ncontracts remain accessible to anyone with an internet connection.\n\n\nThis is particularly helpful language:\n\n> Indeed, the immutable smart contract provides a “service” only when an individual cryptocurrency\nowner makes the relevant input and withdrawal from the smart contract; at\nthat point, and only at that point, the immutable smart contract mixes\ndeposits, provides the depositor a withdrawal key, and, when provided with\nthat key, sends the specified amount to the designated withdrawal account.\nIn short, the immutable smart contract begins working only when prompted\nto do so by a deposit or entry of a key for withdrawal.\n\nOverall, a good decision. Of course there was no discussion of code as speech, but the court didn't need to make that leap. The best part, for me, is seeing Loper Bright in action. \N 5171 \N 308818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7908515177779 0 \N \N f 0 \N 0 28186241 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 321804 2024-12-07 11:02:32.942 2025-03-29 22:39:48.16 has getting into bitcoin changed you personally? i feel like many bitcoiners have a similar journey from sceptic to learning, to buying some to becoming a maxi.\n\nfor me, one way bitcoin, or going deeper down the rabbit hole, has changed me is it has given me an education about the history of money, about debasement, and how the whole modern dollar intertwined system was born. opened my eyes to how absolutely rotten things are to the core.\n\ni was never a huge fan of governments in general, but after understanding the harms of fiat and the all-encompassing effects, it's fundamentally changed my belief system.\n\ni was never given any financial advice at all until my late 20s when some rich guy i knew told me to read the millionaire next door and save 10% of my monthly income. that was it. once i lost my job , i spent my little bit of savings in a few months. there was never any talk of debasement or anything.\n\ni tried reading things like Tony Robbins money master the game, but it was all US-centric and i was clueless. i paid a lot of money for some course from agora financial and it was just about selling puts. \n\nnow i feel safe and confident in my financial future, stacking my hardest (which isn't amazing by western standards, but better than nothing) with something that cannot be ruined and destroyed by central banks. \n\ni suppose goldbugs were aware of these issues for probably decades, but I never met one in the wild.\n\nhave any of you lot had an interesting transformation when you got into btc?\n\n \N 21639 \N 321804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4878805106066 0 \N \N f 0 \N 0 24348404 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 319708 2024-12-05 15:32:03.265 2025-03-29 22:39:48.16 Einstein would probably be in an autism program today # Einstein would probably be in an autism program today\n\n_title related to https://stacker.news/items/493221_\n\nThere are a few things I liked in this video that I would like to mention and ask you about:\n\n## 1. Types of Thinkers\n\nDr. Temple Grandin mentions that there are three types of thinkers: visual, pattern and verbal (and of course mixtures of them).\n\n> My kind of mind, the object visualizer, will be good at mechanical devices because you can see how they work, art, photography, and animals. And the thing that we cannot do is abstract math. I can do arithmetic. I understand things like pi times the radius squared for sizing hydraulic cylinders and I then I see the hydraulic cylinders when I say that.\n>\n> Now your visual-spatial thinker who thinks in patterns, they're going to be your IT people, your computer programmer, chemists, physicists, they calculate how to do things.\n>\n> And then of course you have your verbal thinkers that think in words where they're much more linear in their thinking. Verbal thinkers are going to gravitate towards things like sales, where you have to be very good at talking. They'll gravitate towards writing, legal, teaching.\n\nAt first I thought I might be a visual thinker since I often have vivid imagination (or I just like to daydream a lot) but then she mentioned pattern thinkers are your IT people. So I guess I must be a pattern thinker then since I do enjoy programming and thinking about software patterns?\n\nBut as mentioned, there are mixtures and maybe I didn't pick what my thinking style would fit.\n\nAnyway, I think it's more interesting than important to think about what kind of thinker you are and making oneself aware that there even are different types (maybe even more?).\n\nIn which type do you see yourself?\n\n## 2. Standard Interview Process vs Backdoors\n\n> We need all the different kinds of minds. And I've talked to a lot of business leaders. And the first thing I tell business leaders is you've got to understand that people think differently and that they can work together in very complementary ways.\n>\n> If you want to successfully hire neurodivergent people with autism, dyslexia, or ADHD who are going to get the jobs done for you, we need to get rid of the conventional interview process. They need to have opportunities to come in and show off the work and show the work to somebody who would appreciate it rather than just interviewing based on how well they talk. Because you can have a super-good computer person that's not very talkative, but that person may be your best programmer.\n\nI really hope I never have to go through a standard interview process again even though I only had to code on a whiteboard once in my life so I think I got pretty lucky.\n\n_related to https://stacker.news/items/486754_\n\n## 3. Neurodivergence vs School System\n\n> I worked with skilled tradespeople that were definitely undiagnosed autism. They're retiring now because they're my age. And what concerns me is who's going to replace them. Because that kid that should be fixing elevators or inventing mechanical devices is playing video games in the basement instead of working for your company. There's some beneficial things you can learn from video games and that's true. But not playing them for ten hours a day.\n>\n> When I was a young child, I'd spend hours tinkering with little parachutes and tinkering with little kites, getting them to work, trying lots of designs. I like to build things. Kids are not doing that. Kids today are not getting opportunities to learn from mistakes, and they're being so overprotected. They're not getting exposed to enough different things.\n>\n> I've had educators say, what would I do to change the school system? I put all the hands-on classes back in. And that would give a lot of the kids like me more opportunities to find things that they would be good at. I got interested in the cattle industry because I was exposed to it as a teenager. **If you are given enough opportunities to try a lot of things, then you'll tend to gravitate towards stuff that you're good at.**\n\nThis had me thinking about [this post](https://stacker.news/items/491091) from @Fabs and how I hated music and sports in school. Two things that turned out to not be so bad later in life.\n\nI also would have loved to create more things in school. I always picked the classes where I could at least to some degree, like building water rockets or small planes out of wood and styropore.\n\nBut at the same time, I think every generation hated (public) school for their own reasons. Do you also think that?\n https://www.youtube.com/watch?v=Svv7egD4hpk 2065 \N 319708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1254860897076 0 \N \N f 0 \N 0 157476472 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 362082 2025-01-09 11:14:09.28 2025-03-29 22:39:48.16 Why I'm Bullish 6: The ETFs are Capitulation \nDisclaimer for..., you know who you are. Acquire real bitcoin. Self custody it. Don't trade your BTC for ETFs. Ok? Ok.\n\nI do not care if the state recognizes bitcoin for its value to humanity. But, the ETF is a signal. The ETFs were a step that was going to happen in this timeline. Sure, it is possible that the there is some broad conspiracy with the ETF. Maybe to try and manipulate bitcoin. But, when we jump to that conclusion we are missing something important. The SEC, a government body was forced by another part of the government, the courts to allow bitcoin into their domain of responsibility. What many in the government would rather see is for the government to ban it. Many in finance would love to see the government ban it. The SEC approval is a capitulation. It is not an endorsement. Could it be reversed? Of course but it seems very unlikely.\n\nThe approval makes me bullish because for many people the SEC approval is a stamp of legitimacy. The masses do not care about what long time stackers care about. They likely have no clue about Libertarian thought. They have no clue on economics let alone Austrian economics. They do not care about privacy. They do not care about personal sovereignty. The are more concerned with their day to day needs. I'm not saying their ignorance is a good thing. I'm saying these are the realities. If I actually believed the road to bitcoin's success was dependent on the masses gaining understanding on even a few of these topics I would not be bullish at all. Uber wasn't able to succeed in the face of regulatory moats because the masses suddenly understood how the cab companies use their positions to block out competition. They succeeded because they provide a better product and people want a better product. We will never create the kind of change needed by intellectual arguments alone. Yes, we should use the intellectual approach but building something that is better is always gonna be the way to win.\n\nSo, bitcoin will only succeed if it is better. If it is the best. Bitcoin's core properties will lead to the value of bitcoin increasing over time. I won't rehash why. You all know why. This fact alone is all most people will need to see. And they will see it. As the ETFs begin to explained by investment managers more people will begin to adopt them(not bitcoin). We are already seeing the impact of this. Bitcoin is being talked about more in financial news. Yeah, they get a lot wrong. They do not get it. But that is to be expected. See my first point about the masses ignorance. The ETF is just another step on the path to the virus of bitcoin spreading.\n\nThink about this. When union pensions begin to invest even a small percentage of their funds in the ETFs, how likely is it that a politician supports a banning of BTC. When teacher's and firefighter's pensions are wrapped up in BTC do you think their politicians will be ready and willing to attack it? Most of them do NOT care in the slightest about principles. They care about votes. That's not to mention that many in DC will also be invested in the ETFs themselves. The ETFs do not change bitcoin. The ETFs show how the tradfi world has to adopt bitcoin. Bitcoin cannot be ignored. They have allowed the elephant to put its nose under the edge of the tent. \n\nGet ready stackers. The war isn't over. I'm not saying it is time for a victory lap. There will be many more fights, FUD, and Lies. I'm sure there will be attempts to change bitcoin. There will be attempts to confuse people about it. They may even be a ban in the US. I'm not ruling any of this out. But guys. We are winning and we do not need to let our foot off the gas pedal. We need to be ready to help those we know adopt bitcoin because they will be coming. The EFTs are a sign of the times, not a goal.\n\n\n- [1: Bitcoin is a Hurricane](https://stacker.news/items/383549)\n- [2: SeedSigner](https://stacker.news/items/384892)\n- [3: China Mining Ban](https://stacker.news/items/389176)\n- [4: Becoming Your Own Banker](https://stacker.news/items/391061)\n- [5: Open Source Money](https://stacker.news/items/392251)\n \N 11328 \N 362082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0400085336333 0 \N \N f 0 \N 0 45203200 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 320418 2024-12-06 07:53:07.147 2025-03-29 22:39:48.16 Resolvr: a Bounty Marketplace that takes the Agent out of Escrow Recently, a popular bounty marketplace, BountySource, [stopped paying out bounties](https://github.com/bountysource/core/issues/1586) to developers. Many users reported outstanding or significantly delayed payouts. [[1](https://github.com/bountysource/core/issues/1539)] [[2](https://github.com/borgbackup/borg/issues/5900)]. The entities or persons running BountySource likely misused the escrowed funds being held for bounties. Bounty posters and developers have been searching for an alternative. \n\nBut the risk of exit scams or insolvency are inherent to all centralzied escrow agent. That's why most jurisdictions place onerous fiduciary duties on escrow agents to faithfully hold funds for safekeeping and deliver them according to the terms of the deal. But it can take time and money to get compensation through the courts and usually recovery is for pennies on the dollar. The costs of legal action outweighs any bounty amounts lost through embezzlement. \n\nSo some existing platforms, like Algora, don't bother with escrow. But, as one former BountySource user [pointed out](https://github.com/borgbackup/borg/issues/5900#issuecomment-1771603383), that just shifts the trust to the bounty grantor.\n\n![](https://images.squarespace-cdn.com/content/65395e3087238f2bcef5379f/9d1297aa-6072-41b9-bea3-a57814b2dee1/more+trust+in+donor.png?content-type=image%2Fpng)\n\nReplit provides a bounty marketplace that does escrow bounty funds, but payouts are not instant or free. Users are awarded Replit's token (cycles) for solving bounties, and must request payout in USD by email. Users are charged a 25% withdrawal fee for any bounty funds earned, and there is a minimum withdrawal amount of $350. So, not only are you trusting that Replit won't go bankrupt, you are paying through the nose for that risk. \n\n[Resolvr](https://www.resolvr.io) takes the centralized agent out of escrow. It doesn't control or possesses the bounty funds. Instead, Resolvr leverages bitcoin's native programmability to attest to whether the bounty has been solved, triggering payout automatically. This removes the need to trust the platform or grantor.\n\nAnd Resolvr doesn't decide whether the bounty has been solved; a panel of crowdsourced developers performs the review. \n\nResolvr is the first bounty marketplace to offer dependable escrow and payouts, as well as transparent dispute resolution. Oh, and it's cheaper than the existing alternatives.\n\nYou can [sign up](https://www.resolvr.io/) to be an alpha tester today! And check out the [GitHub](https://github.com/Resolvr-io) and join the conversation on [discord](https://discord.gg/DsqRw8My4m).\n\nGet your bounties ready!\n \N 17714 \N 320418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4061993103641 0 \N \N f 0 \N 0 191514709 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 365289 2025-01-12 00:04:29.813 2025-03-29 22:39:48.16 Bitcoin Economics And Finance Survey \n### I Stumbled Upon A Hidden Trove\n\nWhen hunting around to find something interesting to read about bitcoin I came across this survey:\n\nhttps://link.springer.com/article/10.1007/s43546-021-00090-5\n\nIt was published on June 3, 2021 by Parthajit Kayal, Assistant Professor (Finance Area), Madras School of Economics and Purnima Rohilla, Madras School of Economics (MSE)\n\nThis article is a survey of published academic papers about bitcoin. You can download the 21 page article through the link. The list of cited articles is substantial, and most of these have not likely been read by your typical bitcoiner. \n\nI really want @Undisciplined, a real economist, to read the whole thing, including all of the source material, and give us his opinion, but I resent when people give me homework, unsolicited, so I won’t push.\n\n### What You Might Find\n\nEven if you’re not an economist, you might find something that draws your attention. For instance, in the section on Price Dynamics, I found this intriguing and questionable passage:\n\n> Using Economic Freedom Index, Viglione (2015) studies the role of governance and other related factors in determining the price of Bitcoin as measured by the willingness of users to pay a premium. This work exhibits that real interest rates, tax burden, and investment freedom across different countries is significant in determining Bitcoin prices. In contrast, inflation rates and monetary freedom across boundaries have no impact on Bitcoin prices.\n\nSome of the arguments mentioned in the survey seem ridiculous, like this one: \n\n> Bitcoin may have a fixed supply but the digital currency market is not fixed overall. There are more than two thousand digital currencies available to date and new currencies are getting launched often." \n\nOthers are prescient, like this one, which seems to support small blockers before the war started:\n\n> An older study by Houy (2014) analyses the economics of Bitcoin transaction fees and finds that efficiency is enhanced by implementing transaction fee and limited block size in mining.\n\nHere’s another passage that caught my eye:\n\n> As noted by Yermack (2015) and Ali et al. (2014), a fixed supply will lead to deflation which will, in turn, lead to high welfare destroying volatility. It will be a difficult task indeed to match the variation in demand. Ali et al. (2014) propose that a more flexible system is required to respond to varying demands. One way is to have an adjustable growth rate of currency supply and another is a decentralized voting mechanism. While some researchers predict a possibility of deflation, Lo and Wang (2014) throw light on a possible scenario of hyperinflation if the central bank chooses to oversupply currency. These possible scenarios of deflation and inflation are ruled out by Iwamura et al. (2014b) as they argue that fixed supply will only negatively impact the profitability of mining activity but not lead to a deflation-like situation.\n\nI take issue with the assumption that deflation will automatically lead to “welfare destroying volatility.” or the idea of an adjustable growth rate of currency supply to achieve it.\n\n\n### Final Thoughts\n\nI have barely scratched the surface. The survey and articles will provide plenty of rabbit holes for armchair amateur economists like me, and maybe even some professionals like @Undisciplined \N 5359 \N 365289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7883360329599 0 \N \N f 0 \N 0 169933632 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 326657 2024-12-11 13:36:10.35 2025-03-29 22:39:48.16 Bitrefill Empowers Bitcoin Travelers w/ Global eSIM Service Across 140 Countries \N https://bitcoinmagazine.com/business/bitrefill-empowers-bitcoin-crypto-travelers-with-global-esim-service-across-140-countries 1576 \N 326657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.98482296634887 0 \N \N f 0 \N 0 131181170 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 330110 2024-12-14 21:16:07.081 2025-03-29 22:39:48.16 The first post of a blind programmer on stacker ![My nick avatar](https://i.imgur.com/1uGKRMq.jpg)\nThank you @Tony for telling me about the project.\n\nHello. My name is Denis. I have been blind since birth (the optic nerve is damaged), but despite this I have been programming since 2017.\nI know Javascript, php.\nI am a supporter of web 3.0, blockchains, cryptocurrencies.\nSince 2019, I began to study the topic of Bitcoin and LN: I gradually fell in love with it very much.\nMy dream is to start developing for Lightning.\n\nMy github with code: https://github.com/denis-skripnik\n\n## The history of coming to the cryptocurrency sphere\nIn November 2017, I entered a query in the search engine. I found an article. After reading, I became interested in what kind of site.\nIt turned out that this is a fork of Steem - Golos.\nHaving gradually studied it, he began to master other assets.\n\n## What I used from the Bitcoin sphere\n1. https://t.me/lntxbot - it's a pity that it's closing.\n2. Alby - LN wallet.\n\nNow I'm starting to master something else. I hope the experience will be positive. And maybe I'll create something myself...\n\n## I will be glad of your comments and likes\nThank you for your attention. \N 965 \N 330110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.78738666546246 0 \N \N f 0 \N 0 151357169 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 328815 2024-12-13 15:27:42.736 2025-03-29 22:39:48.161 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 9992 \N 328815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4004258137191 0 \N \N f 0 \N 0 56785504 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 318487 2024-12-04 14:55:51.668 2025-03-29 22:39:48.161 We are pregnant Again! This next little one will make 3 for us. By the time this kid comes along, my oldest will be 5 and my current youngest will be 2. \n\nWe are a single-income family since the decision that we would homeschool the kids. We are happy with that choice since it aligns with our values.\n\nEarning, investing, insuring, budgeting--all these I need to get better at. I am not a complete idiot, but I fall short in many of these aspects. For instance, I haven't bought life insurance yet. \n\nI don't plan to push college like my parents pushed on me. Unfortunately, I also don't think I'll be offering my kids the opportunities to travel and explore interests that my parents afforded me. \n\nI have enjoyed the enriching discussions about parenting initiated by @cryptosensei. Their theme is consistently about how to be there better for our kids and about appreciating our time with them. This post is not that. This post is about the nitty gritty of providing.\n\nMy question for you is **what advice do you have about preparing for my family's future? What's the best advice you received in this regard?** \N 16230 \N 318487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.83224379972228 0 \N \N f 0 \N 0 29301883 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 343837 2024-12-26 12:41:20.432 2025-03-29 22:39:48.161 Bitcoin ETFs and crazy number logic >Nothing here is financial advice. Everything here is crazy number logic.\n\nThree weeks after the bitcoin ETF products started in the U.S. on January 11, 2024, perhaps we can take a step back, take a look, and gather some perspective.\n\nhttps://images.hive.blog/100x100/https://files.peakd.com/file/peakd-hive/crrdlx/EoARV4ifAcWe8NqGV1CH2xVZxj3SWrWypMfCT8CY6o1Wntbj4eityS2ETQEDfr5AKJy.png\n\nWe've already gotten a slick website to monitor data at https://dune.com/hildobby/btc-etfs (screenshot below). I imagine sites and data and presentations will evolve as time passes, but this one is fantastic in the early going for sure.\n\nFigure 1\n![screenshot-2024,02,02-18.12.43.347.png](https://files.peakd.com/file/peakd-hive/crrdlx/23tbHACvc1uEcCxcLmtSQLN4MApqK8gFAxwAK3MCZKzGoetx4YoBVSdtjzNmDmRa4eTPe.png)\n\n### Seesaw\n\nListening to podcasts and reading through various bitcoin sources, it seems that there's a seesaw battle going. On one side, the "inflow" side, money is flowing into the bitcoin ETFs. This buy pressure should drive the price upward. On the other side, the "outflow" side has GBTC being sold and cash is flowing into shareholders' brokerage accounts.\n\nIf inflows outweigh outflows, the buy pressure outweighs the sell pressure and the BTC price seesaw tips toward "number go up."\n\nIf the outflows outweigh the inflows, well, number go down.\n\nThe graph below shows the inflows and outflows since the ETFs' start. Consider the 0-level baseline as something of a water level. Above the baseline water level are inflows of money, BTC buys, (each ETF with its own color moving up vertically). Below the water level are GBTC's outflows of money, BTC sells, shown in purple moving down vertically. The white dot for each vertical column is is the net difference between inflows and outflows. For the number to go up, we want to be above that baseline to a net positive - we want our head above the waterline. Thus far, as you can see from the dots, the trend has been a bit all over the place, up and down, bobbing above and below the water level.\n\nFigure 2\n![screenshot-2024,02,03-06.59.35.312.png](https://files.peakd.com/file/peakd-hive/crrdlx/23tGVGHZpQBBNNucDazcPhnofF93WbjL3XTDmSCT4rdj5nru9LL9yz4YD9bPbauq7FoXG.png)\n\nOf course, there are many *other* factors and people and institutions impacting the bitcoin price - it's not just ETFs alone - but within the ETF bucket, this seesaw concept is mentally manageable and seems plausible economically.\n\n### Purple decline\n\nGrayscale's GBTC is represented as purple and its sell off is the hindrance. Sorry, Nostr, but in this case, we don't like purple. 💜 GBTC has been around longer than the other ETFs (I'm not sure how exactly they finagled that) and is the big player in this game. Two things to note in the chart below:\n\n1. GBTC is currently huge at $20.5B (the next ETF has only $2.7B)\n2. GBTC fees are also huge at 1.5% (most have around 0.25%)\n\nFigure 3\n![screenshot-2024,02,02-18.20.03.451.png](https://files.peakd.com/file/peakd-hive/crrdlx/23swib1PARs4rzGczkGdJ4385KqxaLL4MR6ZDpYzXZQMCdhYANdwJX91Ug5uGkhiqNqFJ.png)\n\nUnsurprisingly, people are reacting to incentives and selling GBTC to get out of those high fees. Ideally, they would reinvest back into one of the other ETFs with the lower fees.\n\nA few things are at play here with anyone who currently holds GBTC:\n\n- GBTC holders may sell GBTC and then buy one of the lower fee ETFs to retain the hedge of having a stake in BTC price action. By selling GBTC and buying ETF, the outflow/sell would be counterbalanced by an inflow/buy. For bitcoiners, this would be the preferred scenario as sell pressure and buy pressure would balance the seesaw to a zero net effect.\n- GBTC holders may sell and then find themselves suddenly flushed with cash. Naturally, money will go to various places. They may decide on a cruise, or a stock or fund they've been eyeing, or paying off a debt, or a wedding, or a new truck. Life happens. In this way, it's not realistic to expect all of the GBTC funds to be reinvested into a low-fee bitcoin ETF. They won't be. This is the sell pressure that will hold the BTC price down.\n- Some GBTC holders will take no action. They know (maybe) they have GBTC in a fund, somewhere, and they don't micro-manage those things...that's what advisors are for. Or, they're busy with life at the moment, or they want to see how things pan out, or they're simply happy with their portfolio as it is, or whatever. Some people will not move their funds. That GBTC will just sit.\n\nConsider the proportion of BTC held by funds currently, as shown in the graph below. There's a lot of purple.\n\nFigure 4\n![screenshot-2024,02,03-07.19.27.167.png](https://files.peakd.com/file/peakd-hive/crrdlx/23tkjcsygGewKKjdGyQghDYRKZQYzjybCWe5TTrGVbw9VrS7UdnsrpBmDxyeKBRaYwE2k.png)\n\nAbove, I used the word "hindrance" referring to GBTC being sold off. Maybe that's the wrong word, maybe "healthy change" would be a better phrase. The movement away from GBTC is a natural step in the toward-ETF process. Simply put, we want to see that huge purple chunk continue to diminish, as it's doing. It's currently, obviously, the mammoth in the room, but it is declining. Eventually, it will reach a point where the sell pressure of GBTC has run its course...either it will get to the level where holders no longer wish to sell, or it will get to zero. Either way, the GBTC sell pressure will end.\n\nI have to note here two things:\n\n1. GBTC could theoretically also have *buy* pressure. Not sure why anyone would do that given the fees, but it could *add* buy pressure just as much as the ETFs have been doing.\n2. Conversely, the ETFs could add *sell* pressure. Right now, people are buying in and hodling. At some point, they will sell. Those colored columns above the water level will, at some point, may point below the water level at times. That seems a rather far away at the moment though. Plus, my guess is that the net will stay positive. One person may sell their ETF funds because that's where they are in life, but the gross aggregate I think will hodl.\n\n### The shape\n\nSo, as we watch the purple decline, the question arises, "How far will the purple graph drop, or, where will GBTC's outflow/sell pressure end?"\n\nA simple view would be to take the three categories I listed above and just use the rule of thirds to slice things up.\n\n- One third of GBTCers sell and rebuys another ETF.\n- One third of GTBCers sell and cashes out (does not buy back into a BTC ETF).\n- One third of GBTCers simply hold onto their GBTC.\n\nUsing this simple, stupid simple, framework, 2/3 of the roughly 600k BTC that GBTC held in the graph would slide down and the purple decline would gradually level off at around 200k. With GBTC currently holding 476k (see table above), that's 276k still yet to be sold off. That's roughly $11.8 billion. That's a lot of sell pressure. But, it's not insurmountable for the buy pressure to counter, especially if it's spread out over time. \n\nThe third-third-third angle is one way to look at it, but here's another way that I dumbly call "The Shape."\n\nSix years ago (Jan. 20, 2018) I wrote about "The Shape" at https://hive.blog/bitcoin/@crrdlx/the-shape Even in 2018, bitcoin had been through several booms and busts. I cited five in my post then. It had died many times already. \n\nA trend I noticed, and I'm sure others have seen this, was the shape of the price rise, peak, fall, and reestablishment of support. I drew that shape as below:\n\nFigure 5\n![the_shape.jpg](https://files.peakd.com/file/peakd-hive/crrdlx/EoCpRauc7D1NHqseXgbC9JwQxZRUkdKYfQK3q6QKxHLZTrhSXQoeRg3qYibykoYU93h.jpg)\n\nAnd I included an animated gif to illustrate the concept:\n\nFigure 6\n![the_shape.gif](https://files.peakd.com/file/peakd-hive/crrdlx/23tmmf8RFJxgAq9htHmMXjosVsx9Q3znznZ7bsYhaRheMfTUK2sRwVyppgBRtpVkAfjGw.gif)\n\nIt's definitely *not* exact. But the theory is easy to grasp: there is gradual growth, then excitement, then a euphoric rise no doubt FOMO-fueled, then a fragile peak followed by a drastic drop, then finally a general leveling out as new support is established. The bubble has burst, and bitcoin has died again. However, the newly established support level, though considerably down from the high, is also considerably *more* than the baseline that had existed prior to the run-up. Let's mark those points below: red is the original support line, green is the peak, black is the new support line.\n\nFigure 7\n![the_shape_markers.png](https://files.peakd.com/file/peakd-hive/crrdlx/EoEwn3WUXqm8ptTWzcJfSi1M2ezvGVFWAmD8j87BUap9GJGFTmq4YX3WhsptNBSuDNK.png)\n\nConsidering the third-third-third theory above, it's somewhat ironic that the black line, the new support line, is roughly one third the quantity between the red and green. The point is that the price seems to have stabilized in a roughly consistent position after each crash.\n\nI feel there's something, not sure what, but *something* to the consistency of those proportional markers. More particularly, I look to psychology for a possible answer.\n\nMaking changes requires new ways of thinking and viewing things. Adopting bitcoin and thinking about things through a bitcoin world view definitely requires a rewiring of one's brain. This is not easy and not immediate. It takes time and it takes lunges up the mountain and sometimes requires deep slides back down to reestablish solid footing.\n\nI'm sure many of you have seen the graphic below:\n\nFigure 8\n![screenshot-2024,02,03-07.51.05.618.png](https://files.peakd.com/file/peakd-hive/crrdlx/23tw1x5y8YSPYgbbrc5m2qhYffJHs5tvU7XbYNY7QNbBGL5mpqFESMSG75JVuAqtcATGp.png)\nSource: https://fifthperson.com/psychology-market-cycles/\n\nThere are other versions of this, but each suggest the same pattern, the same general shape.\n\nThere are two takeaways here in my view:\n\n1. There are human emotions driving, aligned with, or resulting from the wild fluctuations in the market cycle depicted. \n2. When taken as an aggregate of humanity, this market cycle may be like the [stages of grief](https://www.healthline.com/health/stages-of-grief), or the [general adaptation syndrome](https://www.healthline.com/health/general-adaptation-syndrome#stages) in response to stress. That is, the market cycle may be somewhat universal among people.\n\nThe psychology of human differences tells us that *two* people may respond to markets in very different ways. One person may innately always remain calm and stick to decisions stoically throughout the cycle. Another person may ride the emotional roller coaster and make decisions as wildly as the market fluctuates. But, *altogether*, psychology tells us that the human brain works in patterns. \n\nThere is a reason that the wisdom of the crowd works to [guess the weight of an ox](https://en.wikipedia.org/wiki/Wisdom_of_the_crowd#Examples) to within 1%. There is a reason that the decay of human memory could be used to [locate a sunken WWII ship](https://www.npr.org/2011/09/27/140816037/how-psychology-solved-a-wwii-shipwreck-mystery). The market is likely no different.\n\nApplying "The Shape" to the bitcoin ETF puzzle, the question, again, is, "How much will the purple GBTC graph decline?" Let's take a giant psychological leap and flip the shape vertically since we're looking for a *decline* rather than an increase. Flipping the shape gives us this:\n\nFigure 9\nhttps://images.hive.blog/300x300/https://files.peakd.com/file/peakd-hive/crrdlx/EoGogeR7HYPXnN7oWpqMX8RNGE4yYyHdQPxsU1BLN9ETHxcunfjDdtXtkX2RcpzNyiN.png\n\nDisregard the sharp drop then rise - that would represent FOMO sell, which I guess is a thing, but doesn't seem to apply here. What I'm interested in is the *net* drop from the top left baseline to the rightmost baseline.\n\nSuperimposing that inverted shape onto the GBTC holding graph, we get this:\n\nFigure 10\n![the_shape_over_purple.png](https://files.peakd.com/file/peakd-hive/crrdlx/23tv8HLFi7E5uFDwswXaXzWHRqyFeo8eAGoU8USb9EQNpZ98fhSV2CUeeWyPz5yTx8m6R.png)\n\nIt's hard, or impossible, to predict how the purple GBTC holdings will diminish. The decline has been roughly linear so far. Perhaps it will continue linearly and this graph is hogwash. Or, looking back at Figure 4, there does seem to be a *slight* leveling of the purple in recent days - the negative slope of the GBTC "line" seems to be *slowly* nearing zero, slowly flattening out. I'm not sure if that's my imagination, wishful thinking, dead wrong, or *if there's anything at all to it*, but it does seem to show a kernel of a trend there.\n\nIf, *if*, IF, there's anything to this "shape" theory, Figure 10 would suggest that the GBTC sell off might be less than might expected. Rather than dropping to, say 200k BTC as with the third-third-third theory, the sell off might level off at a considerably higher level. If so, GBTC's purple dominance would still show obviously today. However, the other ETF funds/colors would begin to grow. *Eventually*, the ETFs would slowly diminish GBTC's proportional dominance.\n\nBelow is a brutal graphic of how things *might* pan out when we "zoom out" and look at a broader, future time frame:\n\nFigure 11\n![future-maybe - Copy.png](https://files.peakd.com/file/peakd-hive/crrdlx/243BrjL1bLbRPvCV67Cpg1TGLFaYLVFi5dWcgriGbFTY1dLVa6fKDeZ8skzimy6GDJHck.png)\n\nThis is wildly guestimating and contains the assumptions that (1) GBTC will stabilize in size and (2) the ETFs will grow in size rather than diminish. With these assumptions, the point here lies not in any accuracy of the graph...this is merely a visual to help my chipmunk brain conceptualize things. The point lies in the *proportions* held by the ETFs versus GBTC today and then compared to the proportions in the future. Whereas GBTC holds a majority today, in the future they likely will not.\n\n### Summary\n\nAs the GBTC sell-off "threat" diminishes, it stands to figure that the BTC buy pressure from the ETFs will gather steam. If you wish to go bare knuckle brutal in estimates, extrapolate the timeline I drew to get a date. The ETFs have been around for 24 days so far (Jan. 11 to Feb. 3). I got out the digital measuring stick, estimated the distance/time from ETF start until today at 3.6 cm and the end of my timeline as 19.4 cm. \n\nFigure 12\n![future-ruler.png](https://files.peakd.com/file/peakd-hive/crrdlx/243WgVgLhxuNXsfbfnphywjA7QRsDredesY1NVHf1GVZ7fUaLBb3oWL2nj6BXmoqZoqbG.png)\n\nI scribbled out the proportional algebraic equation and solved it below to make my eighth grade math teacher happy:\n\nFigure 13\n![129days.jpg](https://files.peakd.com/file/peakd-hive/crrdlx/23tSzR6hiGb7pUB47hzNUgUPfZYLULWnYr2NMQTwPhAi67KjefaAGZp7LRsARpWw9mPw3.jpg)\n\nI got lazy and instead of manually counting out when 129 days is from January 11, I asked ChatGPT to do it for me. I got this:\n\nFigure 14\n![129-days.png](https://files.peakd.com/file/peakd-hive/crrdlx/23t8CfKPvXW8CYzkUh3C44w6FPnkcRo1FgmMDcX7eNhpRKQfPgKgGztdSmNVJYguFitcL.png)\n\nChatGPT said the date would be April 19, 2024 (turned out wrong!). Since there actually *is* a leap day in there this year, that would make it April 20, 2024. How ironic, 4/20, almost the exact same day the next bitcoin halving is [currently expected](https://bitcoin.clarkmoody.com/dashboard/). \n\nFigure 15\n![halving.png](https://files.peakd.com/file/peakd-hive/crrdlx/23tGRUUcNwjV4ha9T73NHfgZNhPXDkyXRApCAT6J7si6Nih6S7Byq1zN8tZm2WEKMaBBc.png)\nSource: https://bitcoin.clarkmoody.com/dashboard/\n\nMy gut said something seemed wrong. Looking at what ChatGPT wrote and actually reading it, which I didn't do initially, it's crazy. So, I got out my tangible paper calendar, the one with the pretty birds and dogs on it, and counted the kindergarten way by physically touching each day with my finger as I counted. 129 days from Jan. 11 got me to May 18, 2024. Umm, ChatGPT, you were a little off.\n\nSo, remind me on May 18 and I'll revisit this to see how things went.\n\nAgain, this is all crazy number logic, but maybe worthy of a chuckle.\n\n \N 17201 \N 343837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5188803394934 0 \N \N f 0 \N 0 231215667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 345215 2024-12-27 09:36:30.258 2025-03-29 22:39:48.161 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/197173) are the updates stackers shared from all their latest work projects. \N 1890 \N 345215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8248981384918 0 \N \N f 0 \N 0 244849338 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 345451 2024-12-27 12:29:54.725 2025-03-29 22:39:48.162 Blitz Wallet Tutorial - Cashu/Liquid/Lightning Combo on Mobile! \N https://www.youtube.com/watch?v=Ka60AHkfrPE 17817 \N 345451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7007235796963 0 \N \N f 0 \N 0 53480345 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 349218 2024-12-30 09:36:21.033 2025-03-29 22:39:48.161 What if Ai...frees us? How are we not staring down an inbound tech purge this decade? Is any of this stuff freeing us? No. Better question, is any of it making things cheaper? Well it seems composability is all the rage and ostensibly it should, and using Uber as a microcosmic example, they :\n\n- have a piece of core code\n- get the location information of a driver through Google Maps\n- send the information to the driver through Tulio\n- pay the driver through Stripe. \n\nAwesome. But Uber and rideshare are more expensive than taxis were. The difference is rideshare companies never figured out how to make money. I might say the same of streaming, which is just as expensive and confusing as cable was. To watch everything you want (sports, shows, etc), there's a dozen different streaming services, each with several different plans, some with multiple different apps even. They should consolidate them all and recreate…cable. Or the cloud, which is becoming expensive, and getting hit with exploits, where several businesses are repatriating their IT workloads from the public cloud to save money. Or what about Cybertruck? Or other nonsense like a Reddit IPO? Or Youtube and its pre-upload scans tied to ever-expanding licensing databases, and scans that flag any prevailing censorship flavors of the week, plus the advertiser demands, unfair algos, threats of demonetization, de-platforming...there's a threshold where this becomes suffocating to art and expression. None of this centralized stuff can stop its own momentum. Centralized companies can’t build L1s. It all leads into this thought I have on Ai. \n\nI keep hearing in the news, social media, and in markets that Ai is going to allow businesses to cut costs, cut employees, consolidate, and ultimately make businesses more profitable. \n\n NO IT WON’T\n\nFor a small subset of businesses Ai is fantastic for the bottom line. But if every business has the Ai models, Nvidia architecture, hyperscalers, etc, then eventually what happens? Everyone has lower **costs**. But then someone cuts **prices**. So now everyone has the lower costs AND the lower prices. The margins collapse. It benefits the consumer. Ai I’m absolutely convinced will supercharge FOSS, which is terrible for Silicon Valley, as it distributes away centers. I’m not saying Linux distros will come for the OS crown or Chrome won’t maintain it’s browser hegemony. But when you have mesh networks challenging ISPs and an open source Adobe Suite option that’s interoperable with everything else, the traditional ecosystems have barbarians at their gates. \n\nWe've seen it in various ways. My favorite example is the early 90s when this played out with computing and software. Every business followed the promise of lower costs and consolidation. They rushed to integrate. Everyone was proudly rocking them. And how soon computing hardware and software was abstracting away so much, that many businesses went bust. Then the internet…for 20 years it had been metastasizing, going from slowly to suddenly. Information technology turned into this brutal deflationary system, where whole data sets, universities, libraries, etc, got crammed into ever shrinking hard-drives, executed by ever shrinking silicon, and complex software. Cables, wires, and waves allowed this creation of information overabundance to scale to light speed, settling instantly, at near zero cost – or whatever it cost to send an email. \n\nIt savaged the *a priori* business models, infrastructure, and traditional thinking that existed before it. Smart people looked dumb. We know the story. In the United States fortunes were born from this crucible. Look at the top-10 rich list of today in America.\n\nSomething similar is slowly happening today. Ai is coming, eating information, bitcoin is metastasizing, absorbing value at the protocol layer instead of the application layer. Meanwhile FOSS is sitting there ready to tear down borders and distribute away centers with its new buddies. Together they can dismantle the current system, the same way the current system did the analog system before it. The parallels are undeniable. That famous meme of the bitcoin asteroid coming for financial dinosaurs should get updated to show a whole many different kinds of dinosaurs. We’ll get a brutal deflationary system, creating an overabundance of what this time? \N 16858 \N 349218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.04107923509827 0 \N \N f 0 \N 0 41556765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 345019 2024-12-27 03:53:21.08 2025-03-29 22:39:48.162 On Lincoln Lincoln wasn't a good president. He wasn't even a mediocre president. He was a terrible president. He suspended individual rights. He massively expanded the government through money printing. He led millions of people to their deaths. All for power.\n\nWhat we learn in school is that he was the great emancipator, ending slavery and winning a war that had to be won. That he was some man of genius and virtue, thrust upon the national stage at the right time to progress history.\n\nSuch is the result of the history being written by the winners. Similar hagiographies have been written about FDR and even Woodrow Wilson. But like the news, much of history is spun to manipulate us. Most of conventional history is fake and even a cursory study of what actually happened is enough to make you question how virtuous they were, and why they made the decisions they did. Almost always, you find that they were opportunistic cowards that did what would cost them least, even at the expense of the people they affected.\n\nHistory is a tricky topic because the counterfactuals are always very speculative. But what we can judge is the values played out in actions taken, and in that sense, Lincoln was pretty terrible. He suspended habeas corpus, he cheated in border state elections to keep them in the union, and he massively, massively expanded the scope, power and size of government through inflationary theft.\n\nIt's hard to imagine what things were like before Lincoln, because before him, was a string of single-term Jacksonian, hard-money Democrat presidents. This was back when liberal meant being for personal liberty and that era of government before 1860 was insanely small, about 2% of the GDP. He would oversee an unprecedented expansion which would take the government to 20%.\n\nMuch of it, was, of course, because of the Civil War, and the popular narrative is that he needed to wage that war to end slavery. And yes, the issue was a major one in that era, but the elimination of slavery was more of a lucky by-product than an aim. His main goal, as he stated over and over again and as acted out in his policies, was to preserve the union, not to end slavery.\n\nIn preserving the union, he destroyed the idea that states had the right of secession, he weakened the idea of natural rights and he stole through inflation and sent many to their deaths. The centralizing of the federal government, the behemoth that we live with today began during his heyday.\n\nThe main thing that preserved his legacy was his assassination. Had a couple of battles gone the wrong way in 1863 and 1864, he wouldn't have been re-elected and he would have disappeared into the annals of history as a political amateur that lucked into the presidency in 1860 and screwed things up for 4 years. Instead, he was re-elected, assassinated and the horrific legacy of reconstruction was blamed on others. In short, he died at the right time.\n\nThere are those, of course, that will argue that Lincoln would have done things differently, and that he would have been more merciful to the south and rebuilt things as to spare them the suffering. But that's inconsistent with everything he did. Like most politicians he was a power grabber and he did what was politically expedient and not what was virtuous or right. He suspended habeas corpus (needing a reason to arrest and detain people)! He made generals do what would make him look good so he would get elected, not what would save the most lives or win the war the quickest. He created the greenback, which was a form of money printing to finance the war. And he spent an insane sum of other peoples' money through implicit and explicit taxes to "preserve the union."\n\nEnding slavery, of course, was a big deal and in the annals of history, it's a dark mark in the history of the US that the institution survived so long. And yes, the Civil War did end it, but that wasn't the objective of the war itself.\n\nBeing Republican, he had a large Radical wing that he had to deal with and they wanted abolition, and later full voting rights for blacks. Because the south had seceded, they had the votes to pass the constitutional amendments, though only toward the end of the war when it was clear the north would win. That was a political expediency that ended up defining his legacy. But really, it's his biographers and historians of the winning side that have spun him to be a hero, when he was anything but.\n\nThe big flaw of Lincoln is that he created an unnecessary war that cost millions of lives and billions of dollars, one that set back the US by decades. Letting the south secede and revoking the Fugitive Slave Act would have ended the institution just as well, for much less cost. And this isn't idle speculation. Brazil had the second largest slave population in the 19th century that was whittled down quickly because the slaves had northern provinces where they could escape. The price of slaves dropped dramatically and soon, the institution itself was destroyed through economic means, not martial ones.\n\nWhat's worse about Lincoln's legacy is that he set a precedent for federal power that brought forth the progressive era and eventually to Woodrow Wilson and FDR. The centralization of federal power began with him.\n\nLincoln wasn't a good president. But the history is written by the winners and they have made a secular saint out of him. \N 687 \N 345019 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 25.381795336279 0 \N \N f 0 \N 0 43615122 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 354266 2025-01-02 21:18:13.072 2025-03-29 22:39:48.163 Cowdle - Word guessing game meets Nostr \N https://cowdle.gg/ 19806 \N 354266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.829391961848067 0 \N \N f 0 \N 0 146092865 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 366556 2025-01-13 05:37:30.047 2025-03-29 22:39:48.163 Got Solar? How Much & What For? We’re looking at getting solar panels installed on our house. There’s still a government subsidy of about 20-30% so we think it might be worth taking advantage of now as it diminishes every year. The plan being sold to us seems enough for everyday living. They don’t like too much excess electricity going back into the grid and from 2025 they are planning on putting a tax on houses sending too much back during the day (they obviously don’t know about mining bitcoin yet!).\n\nSo, I’m thinking about getting many more solar panels than we actually need now and setting up some mining gear to use it. At the moment I just have a nerdaxe for solo mining, but if we have zero costs of electricity during the day I’d like to get into something more serious. \n\nThere’s also an idea I recently read about GPU’s with all the “AI” hype going on at the moment, to rent them out for sats or to use as my personal AI assistant.\n\nBatteries are still expensive so it’s not going to be the ideal self sovereign setup. We’re in the suburbs, not the countryside so it makes sense that if the sun doesn’t shine for a week we’ll still be connected to the grid.\n\nAnyway, interested in hearing from anyone mining at home primarily on solar. Should we get a lot more than we need or just enough for everyday living? Anyone else planning on up scaling their energy consumption over the coming years?\n\nThanks \N 16830 \N 366556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1473580935971 0 \N \N f 0 \N 0 187027614 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 355856 2025-01-04 14:04:25.449 2025-03-29 22:39:48.163 Books And Articles Newsletter, Issue 11 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week\n\nWelcome to this week’s issue of the Books And Articles newsletter. Thanks for all of the quality posts. This week I [posted](https://stacker.news/items/499606) seeking input about future writing contests. I received some positive feedback, so I have decided to hold our third writing contest in May. I will announce all of the details in the April 27 newsletter. In the meantime, please send in any topic/prompt suggestions, since I’m still undecided. \n\nThis week I am starting something new in Siggy’s Suggestions. I will pick out an old, popular post to highlight. Maybe you are new to SN and missed it the first time around, or maybe it just got lost in the flood of posts we all try to keep up with. If there seems to be interest, I’ll make it a regular thing.\n\nThat’s it for now.\n\nI hope everyone has a good week. \n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [Review: Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462) by @StillStackinAfterAllTheseYears\n\n- [Let every minute of life be a century of happiness.](https://stacker.news/items/500800) by @Taft\n\n- [have a fighting spirit, or things will never change](https://stacker.news/items/500860/r/siggy47) by @theaphantasicreader\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n- [Discuss this Quote- Albert Einstein](https://stacker.news/items/497785) by @grayruby\n\n\n\n### Siggy’s Suggestions\n\n- [Erica Jong: "Dear Keats"](https://stacker.news/items/498404) by @StillStackinAfterAllTheseYears\n\nAt this point, @StillStackinAfterAllTheseYears is producing so much great content that he could fill his own territory. Book reviews, poem discussions, essays. I should probably make a directory just for his stuff. This poem post really hit home for me. As a teenager I thought of Erica Jong as the woman who wrote the dirty book, “Fear Of Flying”. It was an international bestseller. Of course I didn’t realize the significance of the novel regarding female sexuality at the time. The idea of the “zipless fuck” became famous:\n> The zipless fuck is absolutely pure. It is free of ulterior motives. There is no power game. The man is not "taking" and the woman is not "giving". No one is attempting to cuckold a husband or humiliate a wife. No one is trying to prove anything or get anything out of anyone. The zipless fuck is the purest thing there is. And it is rarer than the unicorn. And I have never had one.\n> Erica Jong- Fear Of Flying 1973\n\n\nWhen I got to college I discovered what a talented writer she was. I suspect most people my age still aren’t aware of it. This post highlights her ability as a poet. \n\n- [There's so much to read that one life is not enough to read it](https://stacker.news/items/499466)\nby @Byz\n\nAs usual, I picked out this post because I enjoyed it. \n\nThis week’s Golden Oldie:\n\n- [How Does Fiction Affect You?](https://stacker.news/items/405904) by @plebpoet\n\nI selfishly picked this out because I really enjoyed it and felt like reading it again. I hope you do too. @plebpoet consistently produces quality content. This post is one we can all relate to. It reminds us why we love to read.\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462) by @StillStackinAfterAllTheseYears\n\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n[Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Churning Black Matter](https://stacker.news/items/469200) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n\n\n \N 9426 \N 355856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3046961463747 0 \N \N f 0 \N 0 180976790 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 356320 2025-01-04 22:46:31.853 2025-03-29 22:39:48.163 Countersurveillance Overlay Networks \n# Indra - Using Lightning and Onion Routing to protect Bitcoin and Lightning user locations and their relation to each other\n\nTor is failing us, and there is currently no alternative:\n\n## Tor isn't Scaling, but Bitcoin Needs Onion Routing\n\nFor comparison, this is Bitcoin's node count:\n\n![image-20220912120917831](https://raw.githubusercontent.com/Indra-Labs/indra/main/doc/image-20220912120917831.png)\n\nVersus Tor in a comparable period:\n\n![tor relay count](https://github.com/Indra-Labs/indra/blob/main/doc/torrelaycount.png?raw=true)\n\n### My entry to the world of Bitcoin\n\nAs a relatively early adopter of Bitcoin, discovering it via the Dark Web markets, my finst instinct about all of this was that Tor would not sufficiently protect people's privacy in the long run. Something I had already observed, along with others, back in 2006, before Bitcoin even existed.\n\n### My qualifications at building software\n\nI developed my skills in Go programming through work with a [shitcoin](https://parallelcoin.info) and most recently scored a grant from [Geyser](https://geyser.fund) and a sponsor. I am working on the specification still, but starting to poke at the implementation.\n\n### White paper\n\n[This](https://github.com/Indra-Labs/indra/blob/main/doc/whitepaper.md) is the location of the current version of the Indra whitepaper.\n\nWork is only just finally beginning, but as the progenitor and lead developer, it is now a full time job for me. I'm not particularly asking for much in the way of extra funding, I choose my physical residence based on relative cost and a sub-minimum-wage for western europe is adequate to survive where I live in the Balkans.\n\n### What Indra will enable\n\nAs you will see if you read the whitepaper, Indra will not just help you prevent governments from determining your location as a Bitcoin whale, but it will also aim to solve other problems that are more relevant to the places where Medium of Exchange adoption are starting to happen.\n\nMobile devices with full custodial wallets doing QR code based transactions on Lightning, via providing Bitcoin and Lightning network access and transaction propagation, and in-band payments for internet access, with a discount for in-onion-network routing for private communication.\n\n### What we need\n\nFunding, obviously, is a big thing. But we also need people. Right now, we could do with some help with marketing - that is, graphic designers and web designers, and programmers, especially Go programmers, who are interested in joining the project.\n\nContact is welcome via our [github](https://github.com/Indra-Labs) and via my [twitter](https://twitter.com/cybriql0k1].\n\nLooking forward to hearing from anyone about this.\n\nBeen lurking a while but didn't think of a reason to post yet. \N 20669 \N 356320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5350161107142 0 \N \N f 0 \N 0 139218306 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 367016 2025-01-13 14:35:20.469 2025-03-29 22:39:48.157 Bitcoin Difficulty: a Bitcoin board game on Lightning Really cool project using LNbits.\n\nProject story on Geyser: https://geyser.fund/project/bitcoindifficulty\n\nCode and game rules on Github: https://github.com/maxpolizzo/bitcoin-difficulty/tree/dev/bitcoin-difficulty\n\nFollow @PlayDifficulty on X for updates: https://x.com/PlayDifficulty/status/1809519470378881380 https://github.com/maxpolizzo/bitcoin-difficulty 20811 \N 367016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7264816889631 0 \N \N f 0 \N 0 147210726 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 370366 2025-01-16 12:27:20.992 2025-03-29 22:39:48.157 💡❓ AMAs with Geyser creators: a partnership Geyser<>SN ### Context\nSo many creators that are on Geyser have projects that aim to leave a positive impact on the world.\n\n\n### Problem\nThey're looking for more ways to reach the bitcoin community to tell their stories, and to interact with the Bitcoin community; this includes getting feedback, connecting with them, explaining further the problems they're trying to solve.\n \n\n### Proposal idea\nStart doing creator AMAs on StackerNews every week or so. \n\n\n### Implementation\nIt could be hosted on Geyser, so we can help orchestrate the whole thing, 100% sats go to the creators. You can expect to see creators making new documentaries, videogames, an educational community or circular economy, a bitcoin meetup in a particular country, or any other awesomely weird and unexpected project. \n\n\n> What does the StackerNews community think, should we do it or not bother? \n\n@Metamick\nGeyser Team\n\ncc: @k00b \N 4958 \N 370366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1588517210808 0 \N \N f 0 \N 0 234188769 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 361762 2025-01-09 01:50:15.945 2025-03-29 22:39:48.164 Machankura - LN custodial wallet accessible via any phone in six African countries \N https://8333.mobi 21521 \N 361762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5533967158499 0 \N \N f 0 \N 0 101150262 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 362303 2025-01-09 13:21:23.375 2025-03-29 22:39:48.164 Rowan Atkinson- Communist Britain?! Freedom of Speech?! \N https://m.youtube.com/watch?v=xxWMhB4Cfm0 10063 \N 362303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.50875775375152 0 \N \N f 0 \N 0 173945291 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 362262 2025-01-09 13:00:28.265 2025-03-29 22:39:48.164 Spotlight your quirks. Embrace them. I recently read “The Last Lecture” by Randy Pausch for the second time. Now that I’m older, I take away different things from reading it. The thing that struck me most was his quirks and idiosyncrasies.\n\n![](https://m.stacker.news/44558)\n\nFor instance, if he needed someone to review a paper, he would encode it with a box of Thin Mints. That way, whenever he needed to get an update, he would just ask “Did you eat the Thin Mints yet?” Giving out Thin Mints sweetened the task he assigned others, be it literally or metaphorically. \n\nHe also had a crayon routine. Before a workshop, he would distribute a crayon to his participants and get them to engage their senses by touching and smelling it. Now that I’m typing this, I realise I have forgotten the rationale behind his routine - but I think it doesn’t really matter because even if I remember his reason, I can’t replicate his conviction. \n\nThis got me thinking about my quirks. Motivated by the desire to declutter my stuff, I have taken to tearing pages off the book I’m reading and carrying them everywhere I go.\n\n![](https://m.stacker.news/44569)\n\nThis has attracted the attention of my colleagues, but honestly, because I make a conscious effort to recycle my preloved books, I don’t feel a tinge of guilt with respect to destroying them. In fact, now that my reading rate has increased drastically, I wonder why I haven’t come up with this quirk earlier. \n\nAnother of my signature moves is wearing a suit. Because I lived in Japan for two years, I have associated wearing a suit with bringing my A game. It just hits differently when I’m all dressed up smart and sophisticated. I think this elevates the feel of the school event I am entrusted to be the emcee for, even though some people may secretly think that I am *spoiling market* (Shoutout to @Bell_curve). \n\n![](https://m.stacker.news/44570)\n\nIt certainly needs some getting used to. My principal explicitly advised me not to wear a suit for an interview I was scheduled to undergo at the Ministry of Education headquarters. “Don’t be overdressed,” she said.\n\nWhy the need for quirks, Sensei? Isn’t it bordering on trying to attract attention? I guess you could perceive it that way if you approach it from the angle of how we must manage our personal brand in order to stick out from an increasingly competitive job market. I’m sure there are people out there who prefer to keep a low profile and let their Proof of Work speak for themselves.\n\nI won’t say that I’m the showy kind, but I do think that my quirks help me remain salient in people’s minds while allowing me to stay true to myself. Sometimes, it’s not the words you say, but the manner in which you deliver the message. Wearing a suit helps me feel confident; additionally, the audience might just listen to me more attentively since they can see how seriously I’m taking this. A senior educator in my country has earned accolades for performing magic tricks while regaling teachers and school leaders with her hard-won insights gleaned from years of serving on the ground. Her trademark tricks make her messages stick. \n\nThats what I hope to achieve with my quirks too. \N 20623 \N 362262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8736201713098 0 \N \N f 0 \N 0 12753916 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 363174 2025-01-10 01:47:36.074 2025-03-29 22:39:48.165 Happy Easter Everyone! 🌱🐣🐇💐 \N \N 807 \N 363174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6871376130628 0 \N \N f 0 \N 0 217788038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 363328 2025-01-10 08:41:51.991 2025-03-29 22:39:48.165 What's the most confusing movie you've ever seen? \N \N 12346 \N 363328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.847954252184 0 \N \N f 0 \N 0 131925389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 363273 2025-01-10 06:53:46.759 2025-03-29 22:39:48.165 Baselayer bitcoin inheritance plan **Who?**\nYou have a single-sig hardware wallet, or planning to get one soon\n\n\n**What?**\nA no-excuse, easy to make, frictionless bitcoin inheritance plan that will actually work when you die\n\n\n**When?**\nDo this now, even if just a placeholder until you make a "better" plan later\n\n\n**Where?**\nThis is mainly for US bitcoiners, but most concepts apply worldwide\n\n\n**Why?**\nUnlike legacy assets, there is no default inheritance plan, no safety nets, no fail safes for your bitcoin upon your death. YOU must create your own backup plan\n\n\n**How?**\n1. **Choose a non-heir executor who knows probate AND bitcoin**\n - Ideally doesn't know your heirs personally\n - I offer this service (20+ years experienced NY executor/probate lawyer)\n - Or try your attorney, a bank, or fiduciary service company.\n\n2. **Make a do-it-yourself will**\n - Name your heirs and executor\n - Use https://www.freewill.com or https://www.doyourownwill.com\n - Watch my walkthrough at Adopting Bitcoin 2022 https://youtu.be/2_eOto4Nrtg\n\n3. **Create a poor man's multisig**\n - Set a passphrase\n - Share your seed with your heirs, your passphrase with your executors\n - And their successors, for redundancy.\n\nLater, you can level up and:\n1) Change your executor to a trusted, orange-pilled, friend or loved one who understands probate\n2) Pay for a lawyer-prepared will or trust\n3) Setup a proper multisig\n\nBased on my years of experience probating 1,000s of estates, this plan should work as intended upon death. Even if you don't love parts of it, it's cheap and easy to put in place now as your safety net, while you think about your "perfect plan." When you make your "perfect plan," you may still be able to leave this one in place as your baselayer safety net.\n\nI'll be writing up more detailed rationale in a short guide. Including why other concepts (letters of instruction, Shamir Secret Sharing, deadman switch, timelocks) are unlikely to work as intended upon death. DM if you'd like a copy.\n\nAppreciate any and all feedback \N 20602 \N 363273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.2268942835286 0 \N \N f 0 \N 0 212418623 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 365198 2025-01-11 21:22:30.065 2025-03-29 22:39:48.165 How FOSS and protected/encrypted is Proton? I'm skeptical but don't have the knowledge to audit their code. \N 2338 \N 365198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.08516962204663 0 \N \N f 0 \N 0 179607757 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 366901 2025-01-13 12:59:01.987 2025-03-29 22:39:48.166 Small mining payouts via Lighning Switched my Bitaxe Ultra to Braiins pool. Had a few hick-ups in the first days. \n\n![Mining.png](https://m.stacker.news/27655)\n\nBut lightning payouts work like a charm.\n\n![Payouts.png](https://m.stacker.news/27656)\n\nUnfortunately, my electricity costs (32cent/kWh) for my Bitaxe are around 150 sats per day atm. \N 8841 \N 366901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8687242944633 0 \N \N f 0 \N 0 60461063 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 372287 2025-01-18 07:50:16.258 2025-03-29 22:39:48.157 Minecraft, meet Bitcoin – Earn real-money rewards on the Satlantis server \N https://blog.zebedee.io/minecraft-satlantis 1493 \N 372287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.389642123445 0 \N \N f 0 \N 0 97347616 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 373797 2025-01-19 18:56:11.072 2025-03-29 22:39:48.158 Markets and Science are Self Correcting in the Long Run This is a short clip from a great conversation between Brett Weinstein and Steve Patterson: https://odysee.com/@Undisciplined:a/markets-and-science-are-self-correcting:c\n\nIt's been a while since I've watched this, but the gist is that both markets and science converge toward reality over long enough time horizons. For markets that means our allocation of scarce resources becomes increasingly aligned with our preferences and abilities: i.e. efficiency. For science it means that our understanding of empirical reality becomes less false: i.e. truth.\n\nThe self correcting part is vitally important, because we want processes to work well regardless of the outside influences and incentives. Both science and markets can be corrupted in the short-term by bad actors, but eventually in both cases a correction comes, as reality exerts itself. \N 9026 \N 373797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9036316808442 0 \N \N f 0 \N 0 15359694 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 374514 2025-01-20 12:42:22.4 2025-03-29 22:39:48.158 Fiat is the mindkiller ![](https://bitcoinscoresby.com/wp-content/uploads/2024/03/Fiat-is-the-mindkiller-2.jpg) \N 5425 \N 374514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3038699315708 0 \N \N f 0 \N 0 15198689 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 445486 2025-03-20 15:46:40.965 2025-03-29 22:39:48.159 Bull Bitcoin to Require KYC for Canada Post Cash Deposits I got an email about this in the morning. I then went to check it on their site and saw the announcement. At first, I thought it was an April fools joke, but my friend who is still on Twitter said that Francis Pouliot confirmed the announcement on Twitter.\n\nEver since they released the no KYC Canada Post cash deposits, Bull Bitcoin had been my place to stack sats. It was fast, smooth, and works like a charm. It's a shame that it did not even make it to the 1 year anniversary. Fucking governments.\n\nThanks again to Bull Bitcoin for providing an excellent service that helped many Canadians, including myself, to stack non-KYC sats for the past 11ish months. I guess it's back to Bisq and Robosats, dealing with e-transfers...\n\nThe following is the announcement on their site.\n\n>Starting April 15 2024, Bull Bitcoin customers using the “In-person payments at Canada Post” account funding option to buy Bitcoin will have to perform identity verification before they can complete a transaction.\n>\n>When making the payment at Canada Post, the Canada Post clerk will ask to see a government-issued identity document and match it with the information in your Bull Bitcoin account to make sure it’s you.\n>\n>This decision is entirely out of our hands and was mandated to us as a condition to continue offering the account funding service at Canada Post.\n>\n>We understand that this adds a level of friction to the previously flawless user experience that Bull Bitcoin was offering. We apologize for any inconvenience this may cause.\n>\n>Sun Mar 31 2024 https://bullbitcoin.com/announcements#about-faq--762336928 16653 \N 445486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.25290436783633 0 \N \N f 0 \N 0 143188928 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 374685 2025-01-20 14:57:37.952 2025-03-29 22:39:48.159 River Bans Chase To Try And Mitigate Trafficking And Money Laundering \N https://www.thebitcoinbugle.com/river-bans-payments-from-chase-to-try-and-mitigate-child-trafficking-and-money-laundering/ 2098 \N 374685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.994019980166 0 \N \N f 0 \N 0 187192306 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 375005 2025-01-20 21:27:10.398 2025-03-29 22:39:48.159 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 11220 \N 375005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9109173604105 0 \N \N f 0 \N 0 8988161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 375443 2025-01-21 09:42:56.029 2025-03-29 22:39:48.16 Bitcoin Core Architecture \nThis text provides an overview of Bitcoin Core Architecture, describes the main components, how they interact, and shows relevant parts of the code.\n\nIt also answers common questions such as "How does the node find other peers on the network?", "How is a new block or transaction received and validated?" or "How is a transaction created and broadcasted?" along with others.\n\n![](https://image.nostr.build/03198bdecce8116207351bc24d9d4fc9b04af20b77222dcad02777ccd7268e9f.jpg)\n https://github.com/chaincodelabs/bitcoin-core-onboarding/blob/main/1.0_bitcoin_core_architecture.asciidoc 21332 \N 375443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7778227044355 0 \N \N f 0 \N 0 173356459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 376979 2025-01-22 14:57:46.407 2025-03-29 22:39:48.161 Bolt Card is now open source \N https://github.com/boltcard/ 19829 \N 376979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.52343146983792 0 \N \N f 0 \N 0 50811072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 384627 2025-01-29 11:57:29.146 2025-03-29 22:39:48.162 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/452554) are the updates stackers shared from all their latest work projects. \N 16842 \N 384627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8451116817268 0 \N \N f 0 \N 0 40627797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 387104 2025-01-31 17:25:12.181 2025-03-29 22:39:48.162 Childhood Vaccine Schedule Thoughts and Questions Right up front, I don't have super strong views about this topic. However, I do have an increasing number of questions, so I wanted to see what the SN ~health community knows about it. \n\nUnless I really devote a significant chunk of time to unpacking all the competing claims, I don't think I have sufficient expertise to really evaluate the arguments. That's where it's nice to have access to thoughtful people with a decent range of opinions.\n\n# Issue 1\nI had really not given childhood vaccines much thought until we were expecting our daughter and I read Emily Oster's great parenting books (reviews forthcoming). She describes how the vaccination schedule itself has not ever been subjected to any kind of testing. The individual vaccines have gone through safety and efficacy tests, but not any kind of optimization of timing of the vaccines or interactions between them. (I might not be remembering this perfectly since it was about five years ago.)\n\nIt sure seems like it would be important to do that kind of testing when we're talking about dozens of medical interventions during the most sensitive stages of development.\n\n# Issue 2\nThere's a hepatitis vaccine that often gets administered right after birth. I thought newborns weren't able to produce antibodies that young, so what's the point of that one? Also, unless the mom has that type of hepatitis, why would you expect a newborn to be exposed to it? \n\n# Issue 3\nThere's also an issue of why we're vaccinating really young kids for diseases long before they have any appreciable risk of exposure. I didn't get a rabies vaccine when I was a newborn, for instance (that waited until after a dog bit me in the Caribbean). Shouldn't timing be somewhat related to likelihood of exposure?\n\n# Issue 4\nMy operating assumption is that these vaccines do work pretty well (maybe extremely well) for preventing the diseases they're targeted at and, other than an alarming association with SIDS, I haven't seen much evidence that they are extremely dangerous. It does seem like they're over administered, though. They aren't completely harmless, so what's being accomplished by forcing kids to get them in communities that are well over the herd immunity thresholds? And making them get them so early in their development.\n\n# Issue 5\nThere's a pretty big moral hazard at the heart of the vaccine industry: legal immunity from liability. Most of you probably know this, but vaccine manufacturers were made immune from consumer lawsuits. My mantra is "Outcomes follow incentives" and those incentives stink. However safe and effective vaccines were when that was conferred, I can guarantee that they will become less safe in an environment free from liability. \n\n# Issue 6\nDuring the Covid vaccine mandates I was giving more thought and attention to vaccine science. One of the biggest concerns I have now is that the proliferation of childhood vaccines has weakened general immunity. There's been a long known tradeoff between specific immunity, which is conferred by vaccines and prior infections, and general immunity, which is your body's adaptive system for dealing with pathogens.\n\nI'm eager to hear every one's thoughts and to have the many errors I made pointed out. \N 21685 \N 387104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8359145608018 0 \N \N f 0 \N 0 111985026 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 445966 2025-03-20 20:22:18.149 2025-03-29 22:39:48.162 SN surprised me this morning ⚡ The first thing I do when I grab my phone is log into SN and what a surprise I got this morning, I found 140k sats in my wallet, I couldn't believe it when I saw it, I sat on the edge of the bed assimilating what I was seeing, when I was able to react a little I could only say: "WHAT IS THIS???", My husband was lying on the side and he asks me: What happened to you? - I showed him what was on my phone and his reaction was the same; it was a hurricane of emotions in a single minute, shock, nervous laughter, some tears and nervous laughter again. This was something I didn't expect, one or more people in the community have zapped me for more than 100k sats⚡ and I'm so grateful that I can't even find the right words, I don't even know how to describe how I feel, it's been a huge surprise, it's left me stunned. I want to shout THANK YOU and jump with excitement.\nTHANK YOU PERSON OR PEOPLE WHO GAVE ME THIS SURPRISE\n\n![](https://m.stacker.news/50043)\n\n![](https://m.stacker.news/50047)\n\nhttps://stacker.news/items/671978/r/bief57\n\nThese sats will be well protected and used in the correct manner, valuing each one of them as they deserve.\nThank you stackers, thank you SN⚡💖 \N 12976 \N 445966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1797059322024 0 \N \N f 0 \N 0 89977032 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 405813 2025-02-16 21:29:48.973 2025-03-29 22:39:48.163 satsymbol.org | The ₿est symbol for sats. Always has been. \N https://satsymbol.org/ 1195 \N 405813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.70395364353951 0 \N \N f 0 \N 0 223924174 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 416524 2025-02-25 16:50:57.375 2025-03-29 22:39:48.164 [bitcoin-dev] Announcement: Full-RBF Miner Bounty \N https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2022-November/021143.html 1817 \N 416524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.707104822254 0 \N \N f 0 \N 0 94857840 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 413261 2025-02-23 01:16:48.081 2025-03-29 22:39:48.164 SN Saturday Newsletter 6/29/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Julian Assange has reached a plea deal with the U.S., allowing him to go free](https://stacker.news/items/585367)\n - Julian Assange pled guilty to "conspiracy to obtain and disclose national defense information," was sentenced to time served, and is already back home in Australia with his family.\n - 5.4k sats \\ 54 comments \\ [@saunter](https://stacker.news/saunter)\n2. [When Money Dies](https://stacker.news/items/585968)\n - Hyperinflation has happened before and it will happen again. [@CarlBMenger](https://stacker.news/CarlBMenger) summarizes the hyperinflation episodes in Germany and Zimbabwe.\n - 13.5k sats \\ 28 comments \\ [@CarlBMenger](https://stacker.news/CarlBMenger)\n3. [Choose wisely your LN wallet you want to use](https://stacker.news/items/583496)\n - There are dozens of lightning wallets, but each makes slightly different trade-offs and suits slightly different uses. [@DarthCoin](https://stacker.news/DarthCoin) helps us visualize the differences of popular lightning wallets.\n - 7.2k sats \\ 47 comments \\ [@DarthCoin](https://stacker.news/DarthCoin)\n4. [Book Review- The Genesis Book](https://stacker.news/items/588212)\n - [@siggy47](https://stacker.news/siggy47) reviews "The Genesis Book" by Aaron Van Wirdum. According to [@siggy47](https://stacker.news/siggy47), the book covers the anthropology, historical events, cultural movements, and tech breakthroughs that led to the creation of Bitcoin.\n - 2.5k sats \\ 30 comments \\ [@siggy47](https://stacker.news/siggy47)\n5. [BDMD #1 - Bitcoin was hacked / will be hacked](https://stacker.news/items/589355)\n - [@DarthCoin](https://stacker.news/DarthCoin) starts a new series, Bitcoin deniers' myths debunked (BDMD), debunking common Bitcoin myths. He starts by debunking the "myth" that Bitcoin will be hacked.\n - 2.8k sats \\ 19 comments \\ [@DarthCoin](https://stacker.news/DarthCoin)\n\n\n##### Don't miss\n- [What is your Next Monthly Forecast?](https://stacker.news/items/585785)\n- [Opinion: PWAs and Bitcoin are a toxic marriage](https://stacker.news/items/585125)\n- ["Lux pills" - a comprehensive set of truth pills to read](https://stacker.news/items/586916)\n- [Miners Mostly Lose — Bitcoin Prediction Market for Miner Insurance and ROI](https://stacker.news/items/582898)\n- [Off Grid Steve- Sold his house for Bitcoin ](https://stacker.news/items/582910)\n- [BDMD #2 - Govs will shut down internet, so Bitcoin is dead](https://stacker.news/items/590397)\n- [INTRUDER ALERT! - Statist at the Meetup](https://stacker.news/items/586144)\n- [BOLT 12 User Stories](https://stacker.news/items/587023)\n- [What would you do without the internet? What would your life be like?](https://stacker.news/items/588580)\n- [Will Nostr have >10M WAUs by Jan 31, 2026?](https://stacker.news/items/588729)\n- [What’s your hidden talent?](https://stacker.news/items/588401)\n- [How to Solve the Hardware Issue in Bitcoin Circular Economies/Countries?](https://stacker.news/items/583890)\n- [A Nocoiners Concern With Bitcoin - "The NSA Created It"](https://stacker.news/items/587794)\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Request for comments: improving our referral system](https://stacker.news/items/589991)\n- [An Interview with Ek](https://stacker.news/items/589995)\n- [Stackers do you take Sunday off?](https://stacker.news/items/584033)\n- [Golden Oldies Newsletter, #1](https://stacker.news/items/586009)\n- [What's your biggest accomplishment on SN? ](https://stacker.news/items/583043)\n- [What is Stackers' Favourite Territory?](https://stacker.news/items/590304)\n\n\n##### This day in Stacker News\n\n*a series by [@Undisciplined](https://stacker.news/Undisciplined)*\n\n- [This Day in Stacker News: June 23rd](https://stacker.news/items/583596)\n- [This Day in Stacker News: June 24th](https://stacker.news/items/584712)\n- [This Day in Stacker News: June 25th](https://stacker.news/items/585951)\n- [This Day in Stacker News: June 26th](https://stacker.news/items/587114)\n- [This Day in Stacker News: June 27th](https://stacker.news/items/588284)\n- [This Day in Stacker News: June 28th](https://stacker.news/items/589532)\n- [This Day in Stacker News: June 29th](https://stacker.news/items/590615)\n\n\n[**all meta**](https://stacker.news/~meta/top/posts/week)\n\n-------\n\n##### Top Stackers\n1. [@Undisciplined](https://stacker.news/Undisciplined): 89.7k sats stacked\n2. [@Rsync25](https://stacker.news/Rsync25): 89.3k sats stacked\n3. [@grayruby](https://stacker.news/grayruby): 68.8k sats stacked\n4. [@k00b](https://stacker.news/k00b): 57.8k sats stacked\n5. [@Coinsreporter](https://stacker.news/Coinsreporter): 52k sats stacked\n\n------\n\n##### Top Spenders\n1. [@k00b](https://stacker.news/k00b): 142.3k sats spent\n2. [@kruw](https://stacker.news/kruw): 100.8k sats spent\n3. [@Undisciplined](https://stacker.news/Undisciplined): 52.1k sats spent\n4. [@zapsammy](https://stacker.news/zapsammy): 50.7k sats spent\n5. [@MrBlck_UN](https://stacker.news/MrBlck_UN): 50.7k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 398 days\n2. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 295 days\n3. [@Undisciplined](https://stacker.news/Undisciplined): 277 days\n4. [@OneOneSeven](https://stacker.news/OneOneSeven): 270 days\n5. [@davidw](https://stacker.news/davidw): 265 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 8459 \N 413261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.01134130935127 0 \N \N f 0 \N 0 163211084 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 418892 2025-02-27 13:53:25.098 2025-03-29 22:39:48.164 We are Building Bitcoin Point-of-Sale for Businesses (Odoo ERP) \N https://www.milightningrod.com/ 16267 \N 418892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.903020023342798 0 \N \N f 0 \N 0 114297828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 422852 2025-03-02 18:34:38.563 2025-03-29 22:39:48.164 8 Tips for Enhancing Your Bitcoin Privacy \N https://www.privacyinbitcoin.com/2023/04/10/8-tips-for-enhancing-your-bitcoin-privacy.html 21216 \N 422852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1463805413645 0 \N \N f 0 \N 0 156876837 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 433260 2025-03-10 22:24:26.092 2025-03-29 22:39:48.164 Stop Calling It MEV · BlueMatt's Blog \N https://bluematt.bitcoin.ninja/2024/04/16/stop-calling-it-mev/ 17091 \N 433260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.29714016792376 0 \N \N f 0 \N 0 42324708 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 436970 2025-03-14 05:49:12.249 2025-03-29 22:39:48.164 Profit is better than wages Jack Ma, the richest man in China, said, "If you put the Banana and Money infront of a monkey. The monkey will choose Banana because the monkey don't know that money can buy alot of Bananas."\n\nIn fact, if you offer WORK and BUSINESS to people, they will choose to WORK because most people don't know that a BUSINESS can make more money than salary.\n\nOne of the reason the poor are poor is because the poor are not trained to recognise the entrepreneurial opportunity.\n\nThey spend alot of time in school and what they learn in school is work for a salary instead of working for themselves.\n\nProfit is better than wages because wages can support you, but profits can make you a fortune. \N 18188 \N 436970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.41004045634291 0 \N \N f 0 \N 0 231411392 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 437205 2025-03-14 11:39:53.735 2025-03-29 22:39:48.165 The Curious Case of Digital Signatures # The Curious Case of Digital Signatures\n\n## Good questions demand good answers\n\n@Natalia asked [some good questions](https://stacker.news/items/436029) in the @saloon today:\n\n> Playing around PGP last night ( yes, late into the game - it takes time to sort things out one by one. ) so here is my understanding of the logic of verifying software:\n> \n> 1. you import the specific APP's public key from the terminal\n> 2. download both the software and the signature file (asc)\n> 3. copy and paste a line of code into the terminal to verify\n> \n> **But how does it work in the background - is it verifying the signature file matches with the public key? and how things be if someone changed the app, the signature then unmatched with the public key?** 🤔\n\nI like such questions since they motivate me to dig deeper. I actually didn't really know anymore how it works in detail so I wasn't able to answer these questions with confidence but I would have loved to. I mean, I am the founder of ~crypto! What kind of LARPer would I be if I can't even explain how `gpg --verify` works?\n\nSo I decided to be less of a LARPer and do some research. In this post, I present you the result of my research and my attempt to explain this in an easy to understand way.[^1]\n\nI'll use [Sparrow Wallet](https://sparrowwallet.com/) and a person that is learning from first principles how signatures are verified with and by `gpg --verify` (basically me after getting [nerd sniped](https://xkcd.com/356/) by @Natalia's questions) as an example.\n\n## Purpose of Digital Signatures\n\n![913.gif](https://m.stacker.news/17250)\n\nDigital signatures are commonly used to ensure the integrity and authenticity of software. When you verify a digital signature, you make sure that the software was created by the person you trust and think it was created by (authenticity) and that it was not modified (integrity).\n\nYou usually download the signature from the same location as the software. For example, this location is https://sparrowwallet.com/download for Sparrow Wallet:\n\n![2024-02-23-195709_1920x1080_scrot.png](https://m.stacker.news/17249)\n\nThe signature is the file `sparrow-1.8.2-manifest.txt.asc`. It contains the following content:\n\n```\n-----BEGIN PGP SIGNATURE-----\nComment: GPGTools - http://gpgtools.org\n\niQIzBAABCgAdFiEE1NDTIC/AaEmiV7ON6UYYM0xnS0AFAmWo/vYACgkQ6UYYM0xn\nS0B40RAAteFi0MBNKY80txOOFmcChAAgcLSnaH3Hd8AaKjijFdvYGvUAebP1EMBj\n58K2p14aHq6rdEn2it8aQV4pO9sk9l9q6Fp0YObkJoWkcLL4r1fy4RVxgYFTo7D4\nUkpigS4ulxrot5ChSzVxD5HTOsCFk1xrrWr77vWE2PiZ4w+L8d1+6rRdzPp6Yftl\n7rF3Hb5x4aiZVKBqoSYbmBiPybLnCdXP0gxSYd4JZeyQ44XSOirNEO07w+tdwYPP\n1fR09nBdcnF/BD1SPjCKL3P0YqWE04vJ+7XesdesMReAcxAntjlfRmGAlbbX0v60\nMzNoM6vN/H9rfY6WXCJ5JJpdufulm11GbYAbC8rbSBNTXwxVY6czhMmG2cuQ7Euy\nAJ+1sPzh5U+hWAELOxI80atkQ8KSmw0kBnEP2H4bNMB4C48gU3tX2rEmvIZTHTN7\nQLUr08y5FscWftlwJ1uqkGVr32JKZNnoLgL0VVlwlPquHNeX5OjNn6nWc3w2AQ7q\nj8tDZlzLnvFhvvRL4l1EO65PEg0zoL0LJVRSuoEs85o6ZKSJ0rUH9+jO1+4kUnzx\nypR4KM40swCrP4DpuNLuc4p4Os0XFDdRKxcx2q3PH06+N1soAh5NJiXZRsOlEl9q\nNitWcDrzqKdZfYTevuTzbDMk/EikdRzfIe4KgcsutEiaKk7opQc=\n=m0CZ\n-----END PGP SIGNATURE-----\n```\n\nLet's assume you don't trust this location for some reason. You might be a new user and thus don't know if this is the official, legit website to download Sparrow. Or you simply don't want to rely solely on [SSL/TLS certificates](https://www.cloudflare.com/learning/ssl/what-is-an-ssl-certificate/).\n\nHowever, you want to learn how to verify digital signatures as mentioned. You want to be a smart cookie!\n\n## The Insanity of [Web of Trust](https://en.wikipedia.org/wiki/Web_of_trust)\n\n![download (2).jpeg](https://m.stacker.news/17274)\n\nYou start with importing the public key as explained in the download page:\n\n```\n$ curl https://keybase.io/craigraw/pgp_keys.asc | gpg --import\n % Total % Received % Xferd Average Speed Time Time Time Current\n Dload Upload Total Spent Left Speed\n100 5588 100 5588 0 0 14944 0 --:--:-- --:--:-- --:--:-- 15021\ngpg: key E94618334C674B40: public key "Craig Raw " imported\ngpg: Total number processed: 1\ngpg: imported: 1\n```\n\n**`One important detail is here that the public key is not provided via the same location. If the location is compromised, it could simply replace the public key with a public key controlled by an adversary which in turn compromises the whole scheme.`**\n\nHowever, the instructions to download the public key are provided at the same location. So couldn't they also have been replaced?\n\nExactly right! However, we can go to https://keybase.io/craigraw and check if there is some useful information that makes the public key more trustworthy[^2]:\n\n![2024-02-23-233532_1920x1080_scrot.png](https://m.stacker.news/17267)\n\nWe find some linked profiles and followers as sources of trust. We find proofs next to the linked profiles.\n\n[Here](https://gist.github.com/craigraw/20311f22d738fd9f8a1ee0007f633f5a) is the proof that the Github account [craigraw](https://github.com/craigraw) controls this account on Keybase:\n\n![2024-02-23-233921_1920x1080_scrot.png](https://m.stacker.news/17268)\n\nand [here](https://twitter.com/craigraw/status/1179755136387883008) is a tweet proving the same for [@craigraw](https://twitter.com/craigraw):\n\n![2024-02-23-233905_600x318_scrot.png](https://m.stacker.news/17269)\n\nFinally, we check that the key fingerprint matches the fingerprint shown in the proofs:\n\n![2024-02-23-235858_1920x1080_scrot.png](https://m.stacker.news/17272)\n\nChecking the fingerprint of the key we received via `gpg --list-keys --keyid-format long`:\n\n```\n$ gpg --list-keys --keyid-format long craig@sparrowwallet.com\npub rsa4096/E94618334C674B40 2019-10-03 [SC] [expires: 2027-09-18]\n D4D0D3202FC06849A257B38DE94618334C674B40\nuid [ unknown] Craig Raw \nsub rsa4096/3FB2D3544ECAF6DA 2019-10-03 [E] [expires: 2027-09-18]\n```\n\nThe fingerprint `D4D0D3202FC06849A257B38DE94618334C674B40` matches. Great!\n\nAfter you did your due diligence like a real believer in Web of Trust, you can use `gpg --edit-key craig@sparrowwallet.com` to specify how much you trust this key now:\n\n```\n$ gpg --edit-key craig@sparrowwallet.com\ngpg (GnuPG) 2.4.3; Copyright (C) 2023 g10 Code GmbH\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.\n\n\npub rsa4096/E94618334C674B40\n created: 2019-10-03 expires: 2027-09-18 usage: SC\n trust: unknown validity: unknown\nsub rsa4096/3FB2D3544ECAF6DA\n created: 2019-10-03 expires: 2027-09-18 usage: E\n[ unknown] (1). Craig Raw \n[ revoked] (2) Craig Raw \n\ngpg>\n```\n\nEnter the command `trust` to edit the key trust:\n\n```\ngpg> trust\npub rsa4096/E94618334C674B40\n created: 2019-10-03 expires: 2027-09-18 usage: SC\n trust: unknown validity: unknown\nsub rsa4096/3FB2D3544ECAF6DA\n created: 2019-10-03 expires: 2027-09-18 usage: E\n[ unknown] (1). Craig Raw \n[ revoked] (2) Craig Raw \n\nPlease decide how far you trust this user to correctly verify other users' keys\n(by looking at passports, checking fingerprints from different sources, etc.)\n\n 1 = I don't know or won't say\n 2 = I do NOT trust\n 3 = I trust marginally\n 4 = I trust fully\n 5 = I trust ultimately\n m = back to the main menu\n\nYour decision?\n```\n\n_The option 5 "I trust ultimately" should only be used with your own keys._\n\n## Sanity checks\n\n![download.jpeg](https://m.stacker.news/17253)\n\nAfter you have ~decided that you don't care about Web of Trust~ verified the received public key, you download the signature now. But you don't download the software just yet. You want to do a [sanity check](https://en.wikipedia.org/wiki/Sanity_check):\n\n> _If there is no software to verify, running `gpg --verify` shouldn't make sense, right? But what would it do?_\n\nSo like the curious person that you are and that assumes sanity is not a given but must be earned, you run `gpg --verify ` in a folder which contains only the signature (`sparrow-1.8.2-manifest.txt.asc`) and expect the command to fail in some way. If you are on the right track, the error message should also not surprise you:\n\n```\n$ ls\ntotal 4.0K\n-rw-r--r-- 1 ekzyis ekzyis 873 Feb 23 15:42 sparrow-1.8.2-manifest.txt.asc\n$ gpg --verify sparrow-1.8.2-manifest.txt.asc\ngpg: no signed data\ngpg: can't hash datafile: No data\n```\n\nLooks like `gpg` indeed threw an error! Congratulations, you are not insane (yet) and maybe even on a good path to absolute wisdom (or at least being a smart cookie). Additionally, it seems like it even threw two errors: "no signed data" and "can't hash datafile: No data".\n\nYou are not sure what they mean though. So you start reading [the documentation](https://www.gnupg.org/gph/en/manual/r697.html) of `gpg --verify` since [RTFM](https://archive.ph/KbrZ6) is always a good start to understand things better:\n\n> `verify `\n> \n> This command verifies a document against a signature to ensure that the document has not been altered since the signature was created. If `` is omitted, gpg will look in `` for a clearsign signature.\n\nSince we only gave a single argument to `gpg --verify`, `gpg` tried to find a _clearsign signature_ in the provided file. But what is a clearsign signature? You start reading [more documentation](https://www.gnupg.org/gph/en/manual/x135.html), this time for `gpg --sign`:\n\n> **Clearsigned documents**\n>\n> A common use of digital signatures is to sign usenet postings or email messages. In such situations it is undesirable to compress the document while signing it. The option --clearsign causes the document to be wrapped in an ASCII-armored signature but otherwise does not modify the document.\n>\n> ```\n> alice% gpg --clearsign doc\n> \n> You need a passphrase to unlock the secret key for\n> user: "Alice (Judge) "\n> 1024-bit DSA key, ID BB7576AC, created 1999-06-04\n> \n> -----BEGIN PGP SIGNED MESSAGE-----\n> Hash: SHA1\n> \n> [...]\n> -----BEGIN PGP SIGNATURE-----\n> Version: GnuPG v0.9.7 (GNU/Linux)\n> Comment: For info see http://www.gnupg.org\n> \n> iEYEARECAAYFAjdYCQoACgkQJ9S6ULt1dqz6IwCfQ7wP6i/i8HhbcOSKF4ELyQB1\n> oCoAoOuqpRqEzr4kOkQqHRLE/b8/Rw2k\n> =y6kj\n> -----END PGP SIGNATURE-----\n> ```\n\nAha! You look at the signature that you have and see that it only seems to include a signature but not a document or message. There is no `-----BEGIN PGP SIGNED MESSAGE-----`:\n\n```\n-----BEGIN PGP SIGNATURE-----\nComment: GPGTools - http://gpgtools.org\n\niQIzBAABCgAdFiEE1NDTIC/AaEmiV7ON6UYYM0xnS0AFAmWo/vYACgkQ6UYYM0xn\nS0B40RAAteFi0MBNKY80txOOFmcChAAgcLSnaH3Hd8AaKjijFdvYGvUAebP1EMBj\n58K2p14aHq6rdEn2it8aQV4pO9sk9l9q6Fp0YObkJoWkcLL4r1fy4RVxgYFTo7D4\nUkpigS4ulxrot5ChSzVxD5HTOsCFk1xrrWr77vWE2PiZ4w+L8d1+6rRdzPp6Yftl\n7rF3Hb5x4aiZVKBqoSYbmBiPybLnCdXP0gxSYd4JZeyQ44XSOirNEO07w+tdwYPP\n1fR09nBdcnF/BD1SPjCKL3P0YqWE04vJ+7XesdesMReAcxAntjlfRmGAlbbX0v60\nMzNoM6vN/H9rfY6WXCJ5JJpdufulm11GbYAbC8rbSBNTXwxVY6czhMmG2cuQ7Euy\nAJ+1sPzh5U+hWAELOxI80atkQ8KSmw0kBnEP2H4bNMB4C48gU3tX2rEmvIZTHTN7\nQLUr08y5FscWftlwJ1uqkGVr32JKZNnoLgL0VVlwlPquHNeX5OjNn6nWc3w2AQ7q\nj8tDZlzLnvFhvvRL4l1EO65PEg0zoL0LJVRSuoEs85o6ZKSJ0rUH9+jO1+4kUnzx\nypR4KM40swCrP4DpuNLuc4p4Os0XFDdRKxcx2q3PH06+N1soAh5NJiXZRsOlEl9q\nNitWcDrzqKdZfYTevuTzbDMk/EikdRzfIe4KgcsutEiaKk7opQc=\n=m0CZ\n-----END PGP SIGNATURE-----\n```\n\nYou scroll a bit down in the documentation and see that it also mentions _detached signatures_:\n\n> **Detached signatures**\n>\n> A signed document has limited usefulness. Other users must recover the original document from the signed version, and even with clearsigned documents, the signed document must be edited to recover the original. Therefore, there is a third method for signing a document that creates a detached signature. A detached signature is created using the --detach-sig option.\n\nWell, that sounds interesting. You are now happy about your reading comprehension skills and are pretty sure that what you have is a detached signature. This explains both errors from before. There was no data included and `gpg` then tried to find the document that was signed in some way but couldn't find it. Poor `gpg`.\n\nThe online documentation however does not seem to explain where `gpg` tries to find the document. However, there is also the command `man` which stands for the M in RTFM. So you give `man gpg` a shot and search for `--verify`. You find this note among many other notes:\n\n> **--verify**:\n>\n> [...]\n>\n> Note: If the option --batch is not used, gpg may assume that a single argument is a file with a detached signature, and it will try to find a matching data file by stripping certain suffixes.\n> Using this historical feature to verify a detached signature is strongly discouraged; you should always specify the data file explicitly.\n\nYou ignore the "strongly discouraged" and want to do another sanity check:\n\n> _If I understand correctly what I just read, `gpg` tried to remove "certain suffixes" to find the data file. I wonder what will happen if I download the software and put it in the same folder ..._\n\nSo you do exactly that and run `gpg --verify` again:\n\n```\n$ ls\ntotal 106M\n-rw-r--r-- 1 ekzyis ekzyis 873 Feb 23 15:42 sparrow-1.8.2-manifest.txt.asc\n-rw-r--r-- 1 ekzyis ekzyis 106M Feb 23 20:17 sparrow-1.8.2-x86_64.tar.gz\n$ gpg --verify sparrow-1.8.2-manifest.txt.asc\ngpg: no signed data\ngpg: can't hash datafile: No data\n```\n\nMhh, same error. So something is wrong. You double-check the file names and realize that when you strip `.txt.asc`, you get `sparrow-1.8.2-manifest` and not `sparrow-1.8.2-x86_64.tar.gz`! So `gpg` could still not find what you seem to call "software", the documentation seems to call "document" and the program itself seems to call "datafile" (consistency must be a virtue) simply by stripping suffixes. Everything makes enough sense again—for now.\n\nYou check the download page again and see that there is a file named `sparrow-1.8.2-manifest.txt`. \n\n> _That looks very promising. It's the same file name as the signature just without `.asc` at the end. Now it should work._\n\nYou download it and look inside:\n\n```\n$ cat sparrow-1.8.2-manifest.txt\n541b82e83ec928e7b54490211fa5e9d3b315394d895aebeab9a9696ce24c378d *Sparrow-1.8.2-aarch64.dmg\n508a5ba212c2393a9d4cd122c2a8aa8b16e593c640bc3e4ac111ee574b2fd82d *Sparrow-1.8.2-x86_64.dmg\n1035fc5663e53ce3a7d87a63a1dadc33bb180ceb3154549b251407b09db202b7 *Sparrow-1.8.2.exe\n8ff8e70886af91c8758509097a1047a05341b29a2407934c49b6885ff71c60c2 *Sparrow-1.8.2.zip\nafee92405d3013d24add5e3099cea86f5201829b8f5f485f26b753af109619b9 *sparrow-1.8.2-1.aarch64.rpm\n22b72b62865d8e9d0dcf71dc0907a3945f7a5c859257db4f05ee5b815c4bc56d *sparrow-1.8.2-1.x86_64.rpm\n97d43340c6938dbd513c62e3528ae61f57cefe308cd950b0d0cf3f7a3a36993f *sparrow-1.8.2-aarch64.tar.gz\nffb7f86e978ab312dcc169d7c70b33048256dcf3280aecb1cb9392124eac31b9 *sparrow-1.8.2-x86_64.tar.gz\ne69873062837f90745b384d53afeb590cb0058061da3148cbad35604b3e4b1bd *sparrow-server-1.8.2-1.aarch64.rpm\n3fb4900e078427c230dd1372e1b56abdaa71653c5247d6ca4605e9fdda90bffe *sparrow-server-1.8.2-1.x86_64.rpm\n6278fe3b8261576bb9e597ac0e1a5305781917a6716dfc8c5ebb8b244c1a8805 *sparrow-server-1.8.2-aarch64.tar.gz\n0f2025a3fee1057fef763ff1ead471b4468766c0db99e07d8cd1de26e359852d *sparrow-server-1.8.2-x86_64.tar.gz\nc538a93d22698a46218859fbf936731484683e188da33a2e35dac053388a5e14 *sparrow-server_1.8.2-1_amd64.deb\n817469b84741832d4b58b0f6305139cf740ba6b91ca9ff5e65dac75f1fa0221e *sparrow-server_1.8.2-1_arm64.deb\nef461e5b75681e39fde235ee75d0bb23d4cfbeb30c312383f17596115d0a9188 *sparrow_1.8.2-1_amd64.deb\nf81b259799d3dbf7ac75555b59ac719256fcfacb716c653ca445f21f327add5c *sparrow_1.8.2-1_arm64.deb\n```\n\nYou see a lot of stuff. You don't care about it for now since you want to keep your sanity. You simply run `gpg --verify` again and ...\n\n```\n$ ls\ntotal 106M\n-rw-r--r-- 1 ekzyis ekzyis 1.5K Feb 23 16:12 sparrow-1.8.2-manifest.txt\n-rw-r--r-- 1 ekzyis ekzyis 873 Feb 23 15:42 sparrow-1.8.2-manifest.txt.asc\n-rw-r--r-- 1 ekzyis ekzyis 106M Feb 23 20:17 sparrow-1.8.2-x86_64.tar.gz\n$ gpg --verify sparrow-1.8.2-manifest.txt.asc\ngpg: assuming signed data in 'sparrow-1.8.2-manifest.txt'\ngpg: Signature made Thu 18 Jan 2024 11:35:34 AM CET\ngpg: using RSA key D4D0D3202FC06849A257B38DE94618334C674B40\ngpg: Good signature from "Craig Raw " [unknown]\ngpg: WARNING: This key is not certified with a trusted signature!\ngpg: There is no indication that the signature belongs to the owner.\nPrimary key fingerprint: D4D0 D320 2FC0 6849 A257 B38D E946 1833 4C67 4B40\n```\n\n... it worked! You get "Good signature". That sounds good. But you wonder about the warning:\n\n```\ngpg: WARNING: This key is not certified with a trusted signature!\ngpg: There is no indication that the signature belongs to the owner.\n```\n\nHaven't you done your due diligence in the previous chapter? Well, I have and I still get this error for some reason, lol. Anyway ... you see that the Sparrow download page mentions exactly this case:\n\n> Note that you may get a message similar to the following:\n>\n> ```\n> gpg: WARNING: This key is not certified with a trusted signature!\n> gpg: There is no indication that the signature belongs to the owner.\n> ```\n> \n> This simply means that you have not explicitly marked the public key as trusted in your own instance of GPG. In this case it is good practice to check the key against other sources, for example https://keybase.io/craigraw (click on the link next to the key icon to see the full public key). You can read more about validating keys in the [GnuPG Privacy Handbook](https://www.gnupg.org/gph/en/manual/x334.html).\n\nBut we want to focus on verification for now. Never lose your sanity from multiple directions at once.\n\nBut aren't we already done? We got a good signature so we verified the software right?\n\nYou remember that the detached signature didn't look for the downloaded software since it didn't match the file without the `.asc` suffix. So something is off. You run another sanity check by deleting the software (or moving it somewhere else) and run `gpg --verify` for the fourth time:\n\n```\n$ ls\ntotal 8.0K\n-rw-r--r-- 1 ekzyis ekzyis 1.5K Feb 23 16:12 sparrow-1.8.2-manifest.txt\n-rw-r--r-- 1 ekzyis ekzyis 873 Feb 23 15:42 sparrow-1.8.2-manifest.txt.asc\n$ gpg --verify sparrow-1.8.2-manifest.txt.asc\ngpg: assuming signed data in 'sparrow-1.8.2-manifest.txt'\ngpg: Signature made Thu 18 Jan 2024 11:35:34 AM CET\ngpg: using RSA key D4D0D3202FC06849A257B38DE94618334C674B40\ngpg: Good signature from "Craig Raw " [unknown]\ngpg: WARNING: This key is not certified with a trusted signature!\ngpg: There is no indication that the signature belongs to the owner.\nPrimary key fingerprint: D4D0 D320 2FC0 6849 A257 B38D E946 1833 4C67 4B40\n```\n\nIt still works. That was expected but it's weird. \n\n> _We didn't even need the software for `gpg --verify`. How does that make sense? I thought we want to verify the authenticity and integrity of it?_\n\nYou feel betrayed but continue reading the download page and find that it mentions this:\n\n> You have now verified the signature of the manifest file, which ensures integrity and authenticity of the manifest file - not the binaries! Next, depending on your operating system, you must re-compute the sha256 hash of the archive with `shasum -a 256 `. First, download the installation for your operating system (if you haven’t done so already). Then follow the steps below to compare it with the corresponding one in the manifest file, and ensure they match exactly.\n\n> _Aha, so I verified the manifest file._\n\nLooking at the manifest file again, you see that it contains a line for every binary that one can download. The binary that you downloaded is therefore also included (else your feelings of betrayal would have intensified):\n\n```\nffb7f86e978ab312dcc169d7c70b33048256dcf3280aecb1cb9392124eac31b9 *sparrow-1.8.2-x86_64.tar.gz\n```\n\nYou have some experience with hashes and can recognize hashes like `ffb7f86e978ab312dcc169d7c70b33048256dcf3280aecb1cb9392124eac31b9` when you see them. But you didn't need to since the download page already mentioned that the file contains sha256 hashes.\n\nIt also mentioned that we should run `shasum -a 256 `. So we do exactly that and expect that it returns the same hash:\n\n```\n$ shasum -a 256 sparrow-1.8.2-x86_64.tar.gz\nffb7f86e978ab312dcc169d7c70b33048256dcf3280aecb1cb9392124eac31b9 sparrow-1.8.2-x86_64.tar.gz\n```\n\nThat looks about right! But it's pretty annoying to compare hashes by hand. The download page also has a solution for that. It mentions the following command for Linux users:\n\n```\nsha256sum --check sparrow-1.8.2-manifest.txt --ignore-missing\n```\n\nSo we run this and expect more intimacy via hand-holding:\n\n```\n$ sha256sum --check sparrow-1.8.2-manifest.txt --ignore-missing\nsparrow-1.8.2-x86_64.tar.gz: OK\n```\n\nIt says "OK". Well, that's not very intimate like what a lover probably would say but still sounds like a friend. Everything seems to be okay!\n\n## Conclusion\n\nSo what we just did was to basically verify the authenticity and integrity of the file that contained the hashes for all binaries with `gpg --verify`. When the hashes could be trusted, we could use them to make sure that the software was not tampered with. But why not simply provide a digital signature for the binary itself?\n\nI actually don't know. But my educated guess is that it's related to convenience. Instead of providing a signature for every binary, the hashes are signed. Using `sha25sum --check` with `--ignore-missing` then simply ignores all files that don't exist. So I am basically guessing that there is no way to do something similar with digital signatures. Maybe someone knows more?\n\n## Wait ... but why (does it work)?\n\n![17250.gif](https://m.stacker.news/17277)\n\nEssentially, if you believe in cryptographic hashes (like during bitcoin mining), you believe in digital signatures.\n\n_If you don't know what a hash is (and especially not cryptographic ones), read [this](https://blog.cloudflare.com/how-developers-got-password-security-so-wrong). If you still don't know, you can ask questions in the comments. I am sure someone will be willing to answer them._\n\nA digital signature is usually nothing else than a cryptographic hash that was "encrypted" with a secret key:\n\n> The private key can be used to create a digital signature for any piece of data using a digital signature algorithm. This typically involves taking a cryptographic hash of the data and operating on it mathematically using the private key. Anyone with the public key can check that this signature was created using the private key and the appropriate signature validation algorithm. A digital signature is a powerful tool because it allows you to publicly vouch for any message.\n\n— blog.cloudflare.com, [_ECDSA: The digital signature algorithm of a better internet_](https://blog.cloudflare.com/ecdsa-the-digital-signature-algorithm-of-a-better-internet)\n\nThis means that during verification with the public key, we reverse the encryption with the private key to reveal the hash. Then, we hash the signed data ourselves and compare the hashes. If the hashes match, the integrity was verified and since public key cryptography was used, we also verified the authenticity of the hashes.\n\n---\n\nMakes sense? Still reading?\n\nIf so, you potentially even learned a lot about _digital certificates_ work on accident. They are basically digital signatures that verify the identify of entities via trusted third parties ([Certificate Authorities](https://www.digicert.com/blog/what-is-a-certificate-authority)) and with more metadata associated. At least that's my simplistic explanation. But how the [Public Key Infrastructure](https://www.okta.com/identity-101/public-key-infrastructure/) works is a topic for another day.\n\n---\n\n[^1]: I'll assume some basic Linux skills since those are more often than not very handy. You might even acquire the "required" Linux skills by accident while reading this just by the context the commands are used in—just like human languages.\n\n[^2]: This is a step that is often overlooked or not even mentioned. That the public key is trustworthy is the foundation for this whole scheme. You SHOULD NOT simply trust keys. You should do some basic due diligence. Ask friends if they have the same public key. If you're fucked, at least they are fucked, too. Try to find key fingerprints and compare them using `gpg --list-keys --keyid-format long`. But surely someone else would have noticed if the key is compromised, right? Right? But I get it. It's just too convenient to simply trust keys in most cases. \N 11590 \N 437205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3674896428714 0 \N \N f 0 \N 0 112451867 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 438303 2025-03-15 12:16:47.697 2025-03-29 22:39:48.165 How to be more agentic For reasons I can't explain exactly, I've gotten pretty good at asking the right question. In the middle of the scramble of short-term obsessions and fixations, where a whole group of people is furiously doing {x}, I've become practiced at trying to figure out what matters. Often it's not {x}, or anything else that you'd think. This has not wholly been a blessing. It means that, sometimes, I'm slow to do what needs doing. But overall it's been super important, and a big advantage.\n\nThat's probably why this article resonated with me so strongly. Specifically, this:\n\n> The idea of finding real edges, as contrasted with “eking out wins by grinding harder than everyone,” first clicked for me when I started playing poker. [...] Two friends and I maniacally studied reads together, and we all had out-of-distribution results. But when we’d tell other pros what we were doing, the response from most was “nuh-uh, that’s not a thing.” They weren’t willing to consider the possibility that reads were valuable, maybe because they didn’t want to feel obligated to study them.\n\nThat's what I'm getting at with the questions. In this example, the author looked around, and said: maybe there's something super important that other people are ignoring because they're fixated on doing this combinatorial analysis? And everyone was like: no, that's dumb. And she did it, and it turned out to be, in fact, a giant advantage.\n\nThe other reason the article resonated, probably, is that I'm so _bad_ at many of the other sources of agency she describes. And so the article is a tease, like a song you hear in the distance, that suggests that maybe there's 10x more upside if you can get un-stuck by whatever's sticking you.\n\nMaybe it will inspire some of ya'll, too. https://usefulfictions.substack.com/p/1154dba1-49f6-4feb-b091-6d4a7eefa94d 20751 \N 438303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2051398649587 0 \N \N f 0 \N 0 204001888 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 440139 2025-03-16 22:38:05.778 2025-03-29 22:39:48.165 OpenSats Receives $1,000,000 Donation From The Reynolds Foundation \N https://opensats.org/blog/opensats-receives-one-million-from-reynolds-foundation 14260 \N 440139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7506901884046 0 \N \N f 0 \N 0 167148362 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 441405 2025-03-18 00:31:06.379 2025-03-29 22:39:48.165 Auto Swaps Explained \N https://blog.bolt.observer/p/auto-swaps-explained 1577 \N 441405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5076140976827 0 \N \N f 0 \N 0 191523336 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 442143 2025-03-18 13:04:06.284 2025-03-29 22:39:48.166 Why Stacker News matters to us Even since the launch of territories last December, I have been perplexed about just what compels so many individuals of varying backgrounds to jump off the edge and into the uncharted waters? I pondered about it [here](https://stacker.news/items/622904). Why do Stacker founders embark on a loss-making endeavour and resolve to pump in their time and energy to make it worthwhile (and hopefully profitable)?\n\nSo, I was reading *Success Built to Last*, and this page created an a-ha moment for me:\n\n![](https://m.stacker.news/44940)\n\nIt turned out that I have been immersed too long in the dirty fiat mindset that I constantly fail to consider other things that matter. **I need to upgrade my thinking and shift it from a money to a meaning mindset.**\n\nTerritory founders kickstart their territory because they want to imbue their lives with meaning and create something that is bigger than themselves. Some of them, such as @AGORA, have visions of businesses and individuals leveraging the LN more prevalently than is the case now - and want to play a part in contributing to its fruition. Others, such as @Public_N_M_E and @TNStacker, are simply passionate about their subject matter and wish to provide an avenue that enables others to have a safe space to showcase their common passion. When you are tethered to a purposeful pursuit, money loses its grip on you. \n\nAdditionally, SN empowers people to take action. Pay 100k and your chosen territory is yours for a month. You are paying rent, but you still have more control than if you choose to build your brand with Medium and Google Adsense and adhere to their many hoops and rules. Taking action is preference because you gain experience. If you chew the morsels of wisdom from your experience, you’ll hone your foresight, which will help you in your future endeavours.\n\nNow that my eyes have been opened, I am wondering just what **meaning** I care enough about such that I am willing to brave through obstacles for it. Maybe I will have an epiphany some time soon, lol.\n\nSome happy sats go to @carloschida, our newest territory founder on board.\n\n \N 4802 \N 442143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.79406183286033 0 \N \N f 0 \N 0 47750966 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 446050 2025-03-20 22:11:27.134 2025-03-29 22:39:48.166 How to attach your LND node to RECEIVE bitcoin from SN via ThunderHub ![](https://m.stacker.news/54715.png)\n- - -\n## 0. Intro\nHere we go again, with the fifth guide of [this](/supratic/r/supratic) improvised [series](https://stacker.news/items/702478/r/supratic). This one is to help you attach your **LND** node to SN via [ThunderHub](https://thunderhub.io/) (TH) and automagiically autowithdraw your precious sats.\n\nIf you never heard of TH, that's bad! It's a really powerful user interface that enable you to easily control the Lightning, meaning, monitor and manage your node from any browser and any device. It runs on most LND node implementations, without prejudice and in alphabetical order: [MyNode](https://mynodebtc.github.io/lightning/thunderhub.html), [RaspiBlitz](https://gist.github.com/openoms/8ba963915c786ce01892f2c9fa2707bc), [Start9](https://github.com/Start9Labs/thunderhub-startos), [Umbrel](https://apps.umbrel.com/app/thunderhub), or cloud services like [BTCpay Server](https://apotdevin.com/blog/thunderhub-btcpay), [Nodana](https://nodana.io/services/thunderhub) and [VOLTAGE](https://docs.voltage.cloud/thunderhub-guide).\n\nSo if you are running your node with one of the above, ideally hosted in your hardware, you should be able to install it without asking permissions.\n\n- - -\n# 1. Requirements\n\n- [x] 1 SN account! Not joking... if you did not sign up yet, [DO IT NOW!](https://stacker.news/signup/r/supratic)!\n- [x] 1 **s̲e̲l̲f̲-̲h̲o̲s̲t̲e̲d̲** (preferred) or cloud-served Bitcoin Lightning LND public node.\n- [x] 1 ThunderHub app installed in your node (check above for compatible implementations)\n- [x] Some basic understanding of [Bitcoin](https://bitcoin.org) and the [Lightning Network](https://lightning.network/) (LN). Not required but useful!\n\n- - -\n# 2. SN wallet attach LND requirements\n![](https://m.stacker.news/54718.png)\n![](https://m.stacker.news/53691)\n\n#### 2.1 **grpc host and port**\nThese two are literally the URL address where your node is publicly accessible on the web. It could be a public static IP or a domain/subdomain (if you have set it up) or a `torURLaddress.onion` address if you are also running the node on TOR network to preserve your privacy. The **port** will change depending on which OS your LND app is running on.\n\n![](https://m.stacker.news/54736.png)\n![](https://m.stacker.news/53691)\n\nWhen running a node on a cloud service, everything is much easier, and you skip all that networking setup, port forwarding and proxy installations that get most people stacked with errors. **Be ₿RAVE** and search online without fear, everything is already there, and we do learn by making mistakes. You are not the first, nor will be the last people on having this type of challenges when setting up your node. Avoid cloud services if you can, and DYOR, every OS provides nice documentation, here below some of them:\n\n- [MyNode](https://mynodebtc.github.io/lightning/pairing-wallets.html)\n- [RaspiBlitz](https://docs.raspiblitz.org/docs/usage/ssh_menu#export-macaroons-and-tlscert)\n- [StartOS](https://docs.start9.com/0.3.4.x/guides/service-guides/lightning/alby-lnd)\n\nIn a nutshell, you need your node's local IP. You can find it in your router settings or running `arp -a` from your terminal (from a computer in the same LAN connected to your node). It will show you a list of IPs, one is your node. You can read more in details on these guides for [Windows](https://www.lifewire.com/how-to-edit-the-hosts-file-153661) or [MacOS](https://www.alphr.com/edit-hosts-file-mac-os-x/) and learn how to add a line to contain IP and the name of the host (computer) in your host file, something like `192.168.1.x umbrel.local` (where 192.168.1.x is the IP of your node).\n\nAnd here is a quote that might help you better understand how LND gRPC works:\n\n> _... You might need to forward the port `10009` on your router for it to be reachable from the outside. Also, you definitely need `rpclisten=0.0.0.0:10009`, otherwise only connections from the same machine will work (which is what the `127.0.0.1` indicates here: `RPC server listening on 127.0.0.1:10009`)._\n> -- **[guggero](https://github.com/lightningnetwork/lnd/discussions/7632#discussioncomment-5708421)** on GitHub\n\n\n- - - \n#### 2.2 **invoice macaroon**\n𝑁𝑜𝑡𝑒: There are obviously multiple ways to get a macaroon, in this guide we'll use specifically Thunder Hub, as it is available on mostly all OS running LND.\n\nTo preserve your privacy, SN accepts prebaked **_invoice.macaroon_**, and here is where we gonna open our TH app and from the side bar menu in the left `Tools > Bakery` bake the macaroon string as follow:\n![](https://m.stacker.news/54722.png)\n![](https://m.stacker.news/53691)\n\nAllow permissions to only **Create Invoices** and **Get invoices**, as shown below.\n![](https://m.stacker.news/54723.png)\n![](https://m.stacker.news/53691)\n\nThen, click the **[Generate New Macaroon]** button.\n![](https://m.stacker.news/54721.png)\n![](https://m.stacker.news/53691)\n\nCopy the hex or base64 encoded macaroon...\n![](https://m.stacker.news/54724.png)\n![](https://m.stacker.news/53691)\n\n... and paste it in the second input field to attach LND node to SN:\n![](https://m.stacker.news/54720.png)\n\n**𝑁𝑜𝑡𝑒:** If you fancy using **`cli`**, generate a new macaroon as follows after `ssh`ing in your node from terminal:\n```\nlncli bakemacaroon invoices:write invoices:read\n```\n- - - \n#### 2.3 **cert**_ificate_ \n![](https://m.stacker.news/54737.png)\nHere we dive a little **_bit_** more into technicalities. The **cert**_ificate_ is something needed to secure the connection between your node and SN. It's optional if your node is hosted in the cloud and the provider (like BTCpay Server, Nodana, etc... ) has an agreement with (or is) a Certificate Authority ([CA](https://en.wikipedia.org/wiki/Certificate_authority)). \n\nBut how do I get a certificate then? Here too, as in step [2.1](/21-grpc-host-and-port) there are many options, DYOR!\n\nHere is another quote to help you learn about tls.cert:\n\n> _... you don't have to run `lnd` on the client side. The `tls.cert` is required on the client side to authenticate the encrypted connection, to verify you are talking to the correct node. So you don't have to create a `tls.cert` on the client side, you have to copy the one from the server side to the client (so the client can verify the public key in the certificate against the one offered by `lnd` during the TLS encrypted connection)._\n> -- **[guggero](https://github.com/lightningnetwork/lnd/discussions/7632#discussioncomment-5709089)** on GitHub\n\n#### 2.4 final details\nWe are nearly there... just make sure to set:\n\n- **desired balance** = `0`,\n- **max fee** to a min of `1%` and...\n- . ... click on the yellow **[ attach ]** button.\n\n![](https://m.stacker.news/53435)\n![](https://m.stacker.news/53691)\n\n> **PS:** Let us know how you go with this and if there's any way we can improve this guide. In case you get an **`error`** in the logs after clicking the **attach** button, report it in a comment below and we'll try to figure out what's wrong. \n- - -\n## 3.0 Congratulations, stackers! \nYou just did your first step into bitcoin sovereignty! Your sats now should be landing directly in your Lightning node. Happy stacking!\n\n![](https://m.stacker.news/54830.png) \N 21571 \N 446050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8307058887466 0 \N \N f 0 \N 0 175264893 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 450303 2025-03-23 21:02:45.66 2025-03-29 22:39:48.166 The Apex Predator of Collateral https://video.twimg.com/amplify_video/1859946140214378496/vid/avc1/884x492/4Ty9rI4t-P5-KQ_A.mp4?tag=16\n\nOverview: \n\n1. You take loan to buy property\n2. The loan is over-funded to you (you need $500K loan to buy property, you are given $600K). \n3. You are forced to buy bitcoin with extra $100K. The bitcoin is held is escrow with minimum 4 year lockup\n4. The bitcoin becomes part of the collateral package the lender has against the property\n5. You start paying back your mortgage every month per normal\n6. At any time after 4 years, you can choose to "sell" the bitcoin and proceeds goes to lender to pay off loan. So if Bitcoin goes up by 4x you could pay off mortgage entirely. \n\n \N 11164 \N 450303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4723051017641 0 \N \N f 0 \N 0 37417882 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455289 2025-03-26 22:20:48.37 2025-03-29 22:39:48.167 🚀 Exciting News! PREDYX is now in beta! 🎉The future of prediction markets!🔮⚡️ 🚀 Exciting News! PREDYX is now in beta! 🎉 Test out the future of prediction markets at: https://beta.predyx.com Make your predictions, earn sats, and explore micro markets with instant payouts via the LightningNetwork. 🔮⚡️[beta.predyx.com](https://beta.predyx.com) \N 15484 \N 455289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5090546052513 0 \N \N f 0 \N 0 232644742 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 454306 2025-03-26 10:54:52.971 2025-03-29 22:39:48.166 MONEY CLASS OF THE DAY: Price Matters & Why Bretton Woods Ended in 1968—Not 1971 _WTF happened in 1971_ actually happened in **1968**.\n\nAs we’re all watching price these last few days (we're allsuckers…?) let’s take **the wisdom of price** [^1] seriously as we investigate this patchwork of a misunderstood term that is “the gold standard.”\n\nSo, first off: Bretton Woods (1944-1971) wasn’t _the_ gold standard. At best it can be described as a faulty dollar-based monetary system with some gold (_probably_ in Fort Knox, but who knows really?) at the base of it.\nThe _term_ gold standard is what us economic historians reserve for the classical one, roughly 1870 to 1914—also known as the golden era, or the one that Trump surprisingly enough celebrated recently on Joe Rogan[^2] : Growth like crazy, prices falling or stable, gold the world’s money, life-changing innovations left right and centre, no income tax and the small federal government financing itself mostly via tariffs. [^3] The income tax was declared unconstitutional by the Supreme Court in 1895 [^4] \n\ndudez had balls back then. But I digress.\n\nA gold standard is sometimes described as a fixed-exchange rate to gold. (It’s a little silly, since under the CGS **gold just was money**, there was no fixing or exchange rate involved.) Point is, the Bretton Woods system did operate with a fixed dollar rate to gold: Other currencies were held at specified managed rates to the dollar (see previous MONEY CLASS piece: https://stacker.news/items/747181), and dollar was held at $35 to an ounce of gold.\n\nBut gold has a global supply/demand market of its own, making pegging it to a specific currency tenuous at best. Fast-forward through the Triffin dilemma (where the U.S. simultaneously had to supply **more and less dollars to the world**—[^5]), the major countries of the day “pooled” a lot of gold in London to keep the dollar price of gold in check at $35, intervening on the market by buying or selling to steer the gold price back to its policy "anchor." \nIt’s a short and checkered history that eventually broke entirely in March 1968, after which the market price of gold went permanently above that rate.\n\nThus, thousands of years of human history, wrote Scott Sumner in his _The Money Illusion_ **"ended with a whimper on March 14, 1968, when commodity money was effectively dead.”**\n\nIn a footnote he adds that most people erroneously focus on 1971 August and the Nixon Shock, but that's inessential since "what matters is the market price of gold, which began rising in 1968.”\n\n---\n\nOn the other side of Bretton Woods, it _didn’t even start in 1944_ as is commonly believed. Anyone who’s observed a bureaucracy or nation-state negotiation must understand that signing an agreement in a fancy New Hampshire hotel during the summer of 1944 **not a global agreement makes.**\n\nDefinitionally, it’s a little unclear what “begin” even means:\n\n- March 1954 when London gold market opens?\n- February 1955 when New York officially makes sterling transferable? (During and after WWII, Britain used imperial power and law to block sterling assets among its former empire.)\n- or 1958, per Fed historian Robert Hetzel, when “the major European countries allowed their currencies to be freely convertible into foreign currencies for current account transactions”? (i.e., capital controls fully gone) [^6]\n\nLyn Alden illustrates this broken system pretty well. From start to finish, the U.S. _was bleeding gold reserves_. \n\nhttps://x.com/LynAldenContact/status/1666248562861043714\n\nOops. \n\nTl;dr—a gold standard is a predictable/stable/credible rate to gold. When market prices have moved against that (i.e., credibility lost), you’re screwed. Bretton Woods, usually dated 1944-1971, lasted only a decade or so—from its gradual and heavily regulated start in the 1950s to the gold price broke out in 1968.\n\nSo, it should be WTF happened in **1968!**\n\nTwo more nice resources: \nIMF "Money Matters: System in Crisis" [^7]\n\n"The Gold Pool (1961-1968) and the Fall of the Bretton Woods System: Lessons for Central Bank Cooperation" (Bordo, Monnet, and Naef) [^8]\n\nThat's today's little money lesson.\nPeace,\nJ\n\n\n[^1]: https://bitcoinmagazine.com/culture/bitcoin-price-action-does-matter\n[^2]: https://youtu.be/hBMoPUAeLnY?si=K_Zvg6srSTN1SPst&t=2463.\n[^3]: https://en.wikipedia.org/wiki/History_of_taxation_in_the_United_States\n[^4]: https://www.everycrsreport.com/reports/RL33665.html#:~:text=The%20income%20tax%20was%20briefly%20reestablished%20in%201894%2C%20but%20was%0Adeclared%20unconstitutional%20by%20the%20Supreme%20Court%20in%201895\n[^5]: https://www.investopedia.com/financial-edge/1011/how-the-triffin-dilemma-affects-currencies.aspx\n[^6]: https://www.federalreservehistory.org/essays/bretton-woods-launched\n[^7]: https://www.imf.org/external/np/exr/center/mm/eng/mm_sc_04.htm\n[^8]: https://www.nber.org/system/files/working_papers/w24016/w24016.pdf \N 19992 \N 454306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2393740903357 0 \N \N f 0 \N 0 208622535 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 455949 2025-03-27 12:34:13.483 2025-03-29 22:39:48.167 Dark Skippy Disclosure - A Powerful Method For Key Exfil Attacks \N https://darkskippy.com 20756 \N 455949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8890575089556 0 \N \N f 0 \N 0 50031460 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 457860 2025-03-28 18:51:11.689 2025-03-29 22:39:48.167 Signal Facing Collapse After CIA Cuts Funding \N https://kitklarenberg.substack.com/p/signal-facing-collapse-after-cia?utm_campaign=post 15115 \N 457860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9435220400362 0 \N \N f 0 \N 0 34039887 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 109142 2024-01-07 14:19:15.726 2025-03-29 22:39:48.157 Do you denominate your stash in fiat or bitcoins? Rarely do I ever enable fiat values. I only care about how many sats I have... \N 17392 \N 109142 \N \N \N \N \N \N \N \N jobs \N ACTIVE \N 9.93685782820535 0 \N \N f 0 \N 0 42392787 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 109138 2024-01-07 14:17:11.187 2025-03-29 22:39:48.166 Orange pilled my dad. Now he is simping female Bitcoin influencers on Twitter Just as the title says. I orange pilled my dad last spring and he slowly started his journey of learning about Bitcoin. It wasn't long before he was sending me Bitcoin podcasts and memes I have seen a million times but it was really great watching him fall deeper and deeper down the rabbit hole. However, I recently opened a meme he texted me from the LoveIsBitcoin account which has a hot European babe in most of its posts. I saw his name in a reply to the tweet and when I clicked on his profile and looked at it, all his posts were replies to sexy female bitcoin influencers telling them how pretty they are, telling them good morning, and making suggestive comments about how attractive they are for being super orange pilled. \n\nWhat do I do know? Do I tell my mom?! Do I tell him I saw him simping on Bitcoin Twitter? I dread to look for his Nostr. HELP! \N 14857 \N 109138 \N \N \N \N \N \N \N \N jobs \N ACTIVE \N 21.8900227092032 0 \N \N f 0 \N 0 112547279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 189149 2024-06-24 23:26:03.635 2025-03-29 22:39:48.157 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/224743), and we have another 25,000 sats up for grabs for this week's winner.\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 19821 \N 189149 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.57836289834218 0 \N \N f 0 \N 0 140463765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 206200 2024-07-27 06:24:14.99 2025-03-29 22:39:48.158 Taproot and MuSig2 recap \N https://ellemouton.com/posts/taproot-prelims/ 4570 \N 206200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.26389436904359 0 \N \N f 0 \N 0 155595692 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 222316 2024-08-28 09:08:41.33 2025-03-29 22:39:48.157 get ⚡25k free sats for helping us test our disposable lightning node service hi all, we're looking for lightning-interested peeps\nto test our disposable node service....\n\nright we're giving out 25k sats to each person who does the test steps\nso you have some funds to play with on your node ...\n\nthe steps on how to do this here: [rizful.com/get_free_sats](https://rizful.com/get_free_sats)\n(let us know if anything is unclear...)\n\nyou can also get a general overview of what we're up to on the home page [rizful.com](https://rizful.com)\nthanks\n\nrizful.com https://rizful.com/get_free_sats 5003 \N 222316 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.816373940464103 0 \N \N f 0 \N 0 76208734 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 3389 2022-10-31 09:36:28.607 2025-03-29 22:39:48.158 Asimov Books and Criticism on Dystopia In the past few weeks I decided to start a series that I had put off reading for a long time, Asimov's "Robot" series. I was prejudiced against the series, the ideas it carries and the universe of books because it was praised too much, quoted too much, referred to too much. I waited and waited patiently until the thoughts were fallow enough in my mind. As soon as I started the series, it took me a very short time to finish the first three books and I started the fourth book. In this article, I would like to share with you some of my opinions about the series and get your opinion, avoiding spoilers as much as possible.\n\nFor those who don't know, the series takes place in the future when humans are at the end of their lives on Earth and colonized in space. In the meantime, we witness a book universe that is utopian in terms of space colonies and dystopian in terms of Earth civilization.\n\nAlthough the book seems to be about our future, I think it deals with a completely different structure than the potential future we are moving towards. For example, in the series, people carry out tasks that require thought power themselves, while robots carry out tasks that require physical strength. When we were thinking about whether robots would take our jobs from us in the past, I think we were imagining a universe exactly like the Asimov books, but now we seem to be moving towards a world structure where we are losing things that require creativity to artificial intelligence. Artificial intelligence that can learn the paintings made by painters can imitate them with a few command sequences. Fashion show images and product photos prepared with artificial intelligence can be produced without any Photoshop knowledge. Artificial intelligence can write books for you according to certain criteria. Likewise, a person who is not very advanced in coding can dictate various code sections to artificial intelligence during programming. However, we are still doing the tea making. Of course, robots will exist in an Asimovian future order, but in the Asimov universe, robots specialized in terms of physical strength were emerging earlier rather than robots that developed in terms of thought power. In the books, we lost our physical jobs earlier than our mental jobs. Now I feel like we're going to lose our mental jobs earlier than our physical jobs. \n\nI don't know what the future holds. The fact is that the idea of an Asimov-type dystopia is more appealing to me than the dystopia in which the Earth we live in is moving forward. I think the possibility of artificial intelligence taking over humanity may be a much more real risk factor in our real life. The biggest similarity I see between the book and reality is that people are so busy seeing the bad in each other that they are blind to the bad situations that AI/robots can create. Peace be with you. \N 4654 \N 3389 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.043910632844 0 \N \N f 0 \N 0 234130588 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 89844 2023-11-24 14:59:25.886 2025-03-29 22:39:48.158 Vote With Your Feet, A Short Story \N https://bitcoinmagazine.com/culture/vote-with-your-feet-a-short-story 15941 \N 89844 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.074291566106 0 \N \N f 0 \N 0 185042693 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 0 0 0 435281 2025-03-12 15:17:05.118 2025-03-29 22:39:51.704 \N Electrum is the best\n\n- easy to install\n- built in graphical interface\n- mobile and desktop support\n- recommends good routing nodes by default\n- option to manually connect to any other node\n- option to control via command line\n- option to automate on servers via json rpc\n- excellent documentation, just run `electrum help`\n\nI don't know why it gets so little attention. IMO it's far more normie friendly than something like LND, CLN, or Eclair, because it's designed to be used visually with its integrated, excellent gui. The others *have* UIs but you have to pick one, and they are made by other devs with varying degrees of confusingness mixed in. Electrum strikes the right balance IMO: normies can use a standardized interface that looks nice and matches what they'd expect from a desktop or mobile app, and power users can access advanced features from the menus, or, if that's not enough, there are the command line and RPC options. https://example.com/ 15100 435269 435115.435133.435244.435249.435253.435269.435281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9624513228044 0 \N \N f 0 \N 0 169197515 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 2025-03-19 08:51:00.243 f \N \N \N 0 0 0 0 0 0 0 443413 2025-03-19 10:39:06.343 2025-03-29 22:39:51.704 \N Haircuts. I haven’t gotten a haircut in 4 years. My wife does trim it for me every 6 months or so though. https://example.com/ 9177 443358 443105.443193.443331.443350.443358.443413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4554716633217 0 \N \N f 0 \N 0 171437889 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 2025-03-26 04:08:30.825 f \N \N \N 0 0 0 0 0 0 0 436357 2025-03-13 13:51:11.783 2025-03-29 22:39:51.704 \N **Going through the @sn Markdown guide** \n\nThe other day I wanted to share a screenshot image of my newly found Cowboy Hat 🤠 in a post, after taking the screenshot and was about to add the image to the post, I discovered there is a whole page dedicated to formatting our posts on SN. \n\nSo, today I'm dedicating some time to learning and practicing some of the Markdown guides. \n\nI think I'm gonna be using the **bold** and **images** frequently. \n\n\nThank you. https://example.com/ 10273 436338 436322.436332.436338.436357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.33045993222704 0 \N \N f 0 \N 0 87693592 0 f f \N \N \N \N 436322 \N 0 0 \N \N f \N 2025-03-20 10:59:26.201 f \N \N \N 0 0 0 0 0 0 0 435630 2025-03-12 20:39:41.868 2025-03-29 22:39:51.705 \N So basically this open source code could replace the [3rd step in this guide](https://stacker.news/items/29647), so that you don't have to use ln.cash and can use this instead running in your own server.\n\nThis basically closes the loop and makes everything necessary to make lightning tap payments open source, and peer-to-peer, with no need of any intermediaries.\n\nAmazing times. https://example.com/ 16556 435579 435579.435630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.43464911383787 0 \N \N f 0 \N 0 241925930 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 2025-03-20 10:15:04.983 f \N \N \N 0 0 0 0 0 0 0 435692 2025-03-12 22:01:32.075 2025-03-29 22:39:51.705 \N Hello my SN friends, the learning new languaage is a very hard. I'm support a chat gpt, speakly, discord and this place. Today I rode a bike to the grocery and I bought diary products and wegetables. Unfortunately, in my countryside people isn't understand a bitcoin and the layer two which is a lightning to the payment. How are you doing? I wish a good night you. https://example.com/ 21398 435515 435314.435320.435335.435515.435692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.056430607504 0 \N \N f 0 \N 0 1587763 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-19 15:29:08.696 f \N \N \N 0 0 0 0 0 0 0 446659 2025-03-21 12:06:24.702 2025-03-29 22:39:48.159 PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY VI Saturday, August 3, 2024, day 6 since the electoral fraud in Venezuela.\n\n\n\n"Don't say that "Cubans have to learn from Venezuelans."\n\nI am proud of Venezuelans, but they have not given us the opportunity to vote for our president, not even to defraud us, we are not even allowed to have opposition. Don't compare, there are levels." - X user\n![](https://m.stacker.news/43296)\n•\n•\nAs of today at 9 am, the number of verified and identified arrests was 891, of which 89 were minors.\n![](https://m.stacker.news/43294)\n\nBy 3pm the number had risen to 939, of which 90 were minors.\n![](https://m.stacker.news/43295)\n•\nNational Guard henchmen of Nicolás Maduro repress Venezuelan protesters in Cagua, Aragua state, who support the president-elect Edmundo González\nhttps://x.com/eduardomenoni/status/1819796992114954729\n•\nA group of armed and hooded individuals have just entered the building where David Gelder, one of Maria Corina Machado's collaborators, lives. It is very likely that he has been kidnapped.\n![](https://m.stacker.news/43297)\n•\nThe tyrant Maduro boasts about his kidnapped opponents: "With the Constitution and in peace we resolved the fascist outbreak. (...) We have captured 2,000 prisoners and from there they go to Tocorón and Tocuyito, this time there will be no forgiveness."\nhttps://x.com/EmmaRincon/status/1819850598595911996\n•\nIn this way, in the best style of the Nazis persecuting the Jews, they describe our colleague and friend from Primero Justicia, Mayra Castro, leader and social worker of the Urdaneta municipality, Miranda state.\n\nCrime? It doesn't exist! Evidence? A phone number and some lists of contacts from the election!\n![](https://m.stacker.news/43300)\n\n\n•\n•\nThe Maduro dictatorship attacked Venezuelan protesters in Chacao, Caracas, who were returning from the opposition demonstration held today in Las Mercedes by María Corina Machado\nhttps://x.com/eduardomenoni/status/1819917061994188868\n•\nLa Data journalist Dayana Krays was arrested by the dictatorship of Nicolás Maduro after reporting on protests against electoral fraud in Venezuela. Krays was arrested upon arriving at her home.\n![](https://m.stacker.news/43301)\n![](https://m.stacker.news/43302)\n•\n•\nThere are more than 70 soldiers detained, accused of treason. Dissatisfied soldiers are humiliated and made to parade “in chains” through the barracks. In a polling station where only 4,000 soldiers were voting, Edmundo won by 3,000 votes. The system collapses.\nhttps://x.com/OrlvndoA/status/1819920667992600885\n•\n#ALERT | I have received reports of massive cancellation of passports of activists and human rights defenders who are now in Venezuela.\n\nYendri Velásquez was detained after trying to travel and having his passport cancelled.\n\nPublic employees who have been seen at opposition demonstrations are also having their passports revoked.\n![](https://m.stacker.news/43303)\n•\n•\nCitizens of Cumaná denounce that a group of Chavistas threw tear gas bombs towards the opposition rally. They point out that GNB officials were nearby, but did nothing about these events.\nhttps://x.com/LaTvCalle/status/1819768337670291841\n•\n•\nThe Movistar Arena in Bogotá lights up tonight with the colors of the Venezuelan flag\nhttps://x.com/OrlvndoA/status/1819949321707507986\n•\nBRAZIL dressed in tricolor! \n\nToday Venezuelans in Brasilia, São Paulo and Porto Velho ratify their support for the results of last #28Jul where #VzlaWon\n![](https://m.stacker.news/43305)\n\n![](https://m.stacker.news/43306)\n\n![](https://m.stacker.news/43307)\n•\nFrom Mexico, there is hope of returning home soon.\n![](https://m.stacker.news/43308)\n\n![](https://m.stacker.news/43309)\n•\nVenezuelans in Peru were present at the Citizen Assembly in support of the more than 7 million people who voted for a free Venezuela.\n![](https://m.stacker.news/43310)\n![](https://m.stacker.news/43313)\n![](https://m.stacker.news/43314)\n•\nVenezuelans in Switzerland continue their journey towards reunion in truth, justice and love.\n![](https://m.stacker.news/43311)\n\n![](https://m.stacker.news/43312)\n•\nAnd just like the Venezuelans in Tenerife we ​​will remain VICTORIOUS.\n![](https://m.stacker.news/43316)\n•\nVenezuelans in Madrid\nhttps://x.com/MundoConVzla/status/1819862979585757373\n![](https://m.stacker.news/43317)\n\n![](https://m.stacker.news/43318)\n•\nMiami, Washington, Bogotá and the entire world are calling for the freedom of Venezuela\nhttps://x.com/CARLOSFMEJIA/status/1819771587366650158\n![](https://m.stacker.news/43320)\n•\n"We have obtained an extraordinary victory" From France, Venezuelans continue to raise their voices\nhttps://x.com/MundoConVzla/status/1819821413546815832\n•\nMaduro called for a mega march to show Corina that Venezuela elected him and it didn't go very well, let's say kjj\nCorina's march // Maduro's march\nhttps://x.com/therealbuni/status/1819820381143797868\n•\nGenocidal dictator Nicolás Maduro warns that Edmundo González would face "serious legal consequences" for failing to comply with the summons of the Electoral Chamber of the TSJ.\nhttps://x.com/eduardomenoni/status/1819870132392300885\n•\nThe EOM (Electoral Observation Mission) report declares EDMUNDO GONZÁLEZ the WINNER with 67.2% of the votes. Here is the proof.\nhttps://www.semana.com/politica/articulo/resultados-preliminares-analizados-por-la-moe-dan-como-ganador-a-edmundo-gonzalez-con-el-672-de-los-votos-en-venezuela/202427/\n•\nVolodymyr Zelensky, President of Ukraine, denounces the shameful and criminal involvement of Russia and the Wagner mercenary group in the repression against the people of Venezuela\n![](https://m.stacker.news/43321)\n•\n“Our struggle is civil and peaceful, but it is not weak”\nValencia, Carabobo\nhttps://x.com/CaraboboConVzla/status/1819861003078971637\n•\nVenezuelans in Miami know that even though they were prevented from voting, they won and today they raise their voices for the more than 7 million who voted\nhttps://x.com/MundoConVzla/status/1819774296924852617\n![](https://m.stacker.news/43322)\n•\nMotorcyclists from Maduro's tyranny tried to intimidate people in San Cristóbal.\nhttps://x.com/EmmaRincon/status/1819792887376142725\n•\nMilan raises its voice for Venezuela\n![](https://m.stacker.news/43323)\n•\nFrom the Netherlands, Venezuelans continue to raise their voices that we won!\nhttps://x.com/MundoConVzla/status/1819803882630820332\n•\nDelsa Solórzano made the front page of The Washington Post this Saturday, showing one of the electoral records.\n![](https://m.stacker.news/43324)\n•\nWE WON! and the Venezuelans in Neuquén know it. With our hearts set on Venezuela and in support of President-elect Edmundo\nhttps://x.com/MundoConVzla/status/1819773891675341044\n•\nMayor of Panama “Dear Venezuelans: I would hate for you to leave Panama, but I would hate even more if you stayed for the wrong reasons. You have our support\nhttps://x.com/UHN_Plus/status/1819830951695765898\n•\nVenezuelans clearly expressed their will on July 28 with our electoral victory.\n\nToday, Venezuela united, without fear, in peace and as a family, to demand that its decision at the polls be respected.\n\nWe will ensure that its decision is respected and we will begin the re-institutionalization of Venezuela. - Edmundo González \nhttps://x.com/EdmundoGU/status/1819832242354733235\n![](https://m.stacker.news/43326)\n![](https://m.stacker.news/43327)\n•\nATLANTA DAZZLING! \n\nThere are 7,156,462 reasons why we must continue to raise our voices alongside the president-elect \nEdmundo González and the leader \nMaria Corina\nhttps://x.com/MundoConVzla/status/1819774304164192300\n•\nPeople are papering the walls with copies of the Acts\nhttps://x.com/TAMARA_SUJU/status/1819799229927243929\n•\nThis is what Puerta del Sol looks like this Saturday in Madrid, Spain. \n\nThousands of people have gathered in this emblematic place to express their support for the Venezuelan people and demand the end of the Nicolás Maduro regime.\nhttps://x.com/UHN_Plus/status/1819826366340280782\n•\nI have never seen anything like this: Venezuelan journalists report without showing the faces of those who protest because in the country they are kidnapping and disappearing all the people who publicly oppose the government. Journalism, ethics and resistance against oppression\n\nCitizens present at the rally in Las Mercedes, Caracas, bang pots and pans in rejection of the election results published by the CNE.\nhttps://x.com/eldiario/status/1819745754254115049\n•\nImpressive support from Argentina to the people of Venezuela. Thousands and thousands of people.\n![](https://m.stacker.news/43329)\n•\nThe governments of Italy, France, Germany, Spain, Holland, Poland and Portugal publish a joint statement:\n\n- They demand that Nicolás Maduro prove his victory. They affirm that the opposition already has 80% of the votes.\n\n- They ask that the persecution be stopped.\n![](https://m.stacker.news/43330)\n•\nThe United States will refer cases of repression by Nicolas Maduro's dictatorship to the UN, Deputy Secretary of State Brian Nichols announced. "Maduro has resorted to repression, arbitrary arrests, vandalism and violence against those demanding that their votes be respected."\n![](https://m.stacker.news/43331)\n•\nStatement from the General Secretariat of the OAS on the situation in Venezuela\n\nThe General Secretariat of the Organization of American States calls for peace among Venezuelans, that today is for reconciliation and justice, that messages of hate be banished and that those who have sown fear, repression and death do not find an echo in no one. May every Venezuelan who expresses himself in the street today find only an echo of peace, a peace that reflects the spirit of democratic coexistence, which is the only lasting peace.\n\nThe Venezuelan people have paid a very high cost in hunger, misery, migration, diseases, political prison, torture, death like no other people in the hemisphere in this 21st century. May the actors of the international community who have been lenient with these crimes ensure that they do not occur again. May there be a deep meaning of peace in the actions of each Venezuelan man and woman, may there be no place for a single repressor or a single repressed person. The "peace" of repression, fear, terror, is not peace.\n\nToday we urge that there be not one more political prisoner, nor one more tortured, nor one more disappeared, nor one more murdered; Venezuela does not deserve that, it deserves a return to prosperity for the people, that the sovereignty that lies in that people today is recognized by everyone. The return to peace in democracy.\n![](https://m.stacker.news/43332)\n•\nVenezuelans in Australia protest against acts of repression in Venezuela following election results\nhttps://x.com/MundoConVzla/status/1819715436490969434\n•\nFrom Brussels, Venezuelans are raising their voices to support what more than 7 million people voted for last Sunday.\nhttps://x.com/MundoConVzla/status/1819746085553713241\n•\nVenezuelans in Santiago de Chile say “NO to fraud”\nhttps://x.com/gustavoalonsoj/status/1819903412147790126\n•\n![](https://m.stacker.news/43333)\nPeople who are taken into custody, after being tortured, are forced to give false confessions. They have to say that the government of Peru, Chile or another, is paying them $50 per day to record videos, upload photos or march against Maduro. \N 21103 \N 446659 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 11.9067852169315 0 \N \N f 0 \N 0 44033607 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:50:50.272 f \N \N \N 0 0 0 0 0 0 0 436584 2025-03-13 17:21:46.826 2025-03-29 22:39:48.159 On the weaponisation of the financial system \N https://underorion.se/en/weaponisation/ 2233 \N 436584 \N \N \N \N \N \N \N \N B2B \N ACTIVE \N 28.5916253089816 0 \N \N f 0 \N 0 223630982 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:07:28.141 f \N \N \N 0 0 0 0 0 0 0 443344 2025-03-19 09:25:25.539 2025-03-29 22:39:51.701 \N Phoenix, Breez, Nayuta are LN dedicated wallets. Are not supposed to be used for onchain txs. Swaps they provide are not meant to be used so often or in these strange situations we are today with these fucking ordinals.\n\nPhoenix should be treated as LN wallet only. The onchain feature is dedicated only to open channels on the fly and when is needed, to refill drained channels.\n\nBlixt, OBW, Electrum have better control over onchain wallet and txs. OBW for example have RBF, batch txs and other features for onchain. Electrum also is powerful for onchain rxs and also including swaps with LN.\n\nI explained all features of these wallets in my guides. Also I explained that choosing a LN wallet is a very important task and also do not use just one.\nI suggested also to use external submarine swaps, where you can control better the fees and the swap, so your tx couldn't get stuck for mistakes.\n- https://darthcoin.substack.com/p/lightning-wallets-comparison\n- https://darthcoin.substack.com/p/lightning-network-submarine-swaps\n- https://darthcoin.substack.com/p/managing-lightning-node-liquidity\n- https://darthcoin.substack.com/p/private-lightning-nodes\n\nI use Phoenix too, but I do not use too much the swap feature. My sats are spread in many wallets so whenever is needed, I can choose the one that have enough sats and for each situation.\n[Here I explained how I use Phoenix](https://darthcoin.substack.com/p/managing-lightning-node-liquidity#%C2%A7b-for-private-ln-nodes) https://example.com/ 12779 443332 443295.443332.443344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4020919513033 0 \N \N f 0 \N 0 132596000 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:11.539 f \N \N \N 0 0 0 0 0 0 0 435889 2025-03-13 04:28:17.857 2025-03-29 22:39:51.701 \N I found a top post in show HN that lets users make apps, so I made one for SN: https://mu.app/stacker-news. I hope I don't break any rules here (if so let me know I will remove it)\n\nhttps://news.ycombinator.com/item?id=37306258 https://example.com/ 14472 435812 435812.435889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73792098038987 0 \N \N f 0 \N 0 82240955 0 f f \N \N \N \N 435812 \N 0 0 \N \N f \N 2025-03-19 22:40:55.877 f \N \N \N 0 0 0 0 0 0 0 436649 2025-03-13 18:43:40.591 2025-03-29 22:39:51.705 \N Badass. Love the @-searching with so much passion, and the reply quoting. https://example.com/ 5129 436635 436523.436561.436635.436649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3994112889369 0 \N \N f 0 \N 0 174247364 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 2025-03-20 14:07:55.964 f \N \N \N 0 0 0 0 0 0 0 37384 2023-07-07 21:17:44.565 2025-03-29 22:39:48.159 Money is Man's Only "Creation" Economists use the term “create” when speaking of the process by which money comes into existence. Now, creation means making something that did not exist before. \n\nLumbermen make boards from trees, workers build houses from lumber, and factories manufacture automobiles from metal, glass and other materials. But in all these they did not “create,” they only changed existing materials into a more usable and, therefore, more valuable form. This is not so with money. \n\n![](https://m.stacker.news/40707)\n\nHere, and here alone, man actually “creates” something out of nothing. A piece of paper of little value is printed so that it is worth a piece of lumber. With different figures it can buy the automobile or even the house. Its value has been “created” in the true meaning of the word.\n\n \N 5725 \N 37384 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.3241958766935 0 \N \N f 0 \N 0 17624443 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:38:29.762 f \N \N \N 0 0 0 0 0 0 0 443107 2025-03-19 04:02:07.315 2025-03-29 22:39:48.16 WOW people are zapping WAY less than they used to! I haven't really been on nostr in a year or so, but playing around now it seems like there are WAY fewer zaps. There are some high-profile mega-zapped posts, but almost all posts and conversations are bereft of zaps. What happened? Recession? \N 18412 \N 443107 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 23.9814575903414 0 \N \N f 0 \N 0 167246943 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:30:19.287 f \N \N \N 0 0 0 0 0 0 0 435555 2025-03-12 19:27:57.323 2025-03-29 22:39:51.702 \N I think its also important to figure out how to communicate the rules to the members, especially the new comers. Getting banned is one way to learn but there might be better ways.\n\nBtw, I think we are currently treating (or we could/should be) SN as one Bitcoin maxi community. That's IMHO the best way to get things started, but there is potential for SN to grow into a platform with many communities. https://example.com/ 20734 435553 435046.435135.435292.435504.435545.435547.435553.435555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3597624960483 0 \N \N f 0 \N 0 89981113 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 13:09:41.092 f \N \N \N 0 0 0 0 0 0 0 435305 2025-03-12 15:28:02.597 2025-03-29 22:39:51.702 \N Not gonna lie, I look at the numbers sometimes and feel a glow of accomplishment, esp at the stacked / spent ratio :) https://example.com/ 17533 435297 435046.435135.435292.435297.435305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5302153194629 0 \N \N f 0 \N 0 221479294 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:46:07.275 f \N \N \N 0 0 0 0 0 0 0 434731 2025-03-12 07:40:52.588 2025-03-29 22:39:51.702 \N - Finishing [this PR](https://github.com/stackernews/stacker.news/pull/324) which includes a service worker rework to fix caching issues [0], making the SN PWA a share target and proper push notifications.\n- assemble my new PC (I never fully assembled a PC before)\n- penetration testing lab from University\n- recover my onchain sats of my previous lightning node [where my SSD died](https://stacker.news/items/165807) since my replacement SSD finally arrived last week\n\n\n[0] "There are only two hard things in Computer Science: cache invalidation and naming things" -- [Phil Karlton](https://skeptics.stackexchange.com/questions/19836/has-phil-karlton-ever-said-there-are-only-two-hard-things-in-computer-science) https://example.com/ 683 434647 434647.434731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.061130636911 0 \N \N f 0 \N 0 50805489 0 f f \N \N \N \N 434647 \N 0 0 \N \N f \N 2025-03-19 01:26:30.716 f \N \N \N 0 0 0 0 0 0 0 434657 2025-03-12 05:32:20.043 2025-03-29 22:39:51.702 \N 200k sats is not too large a price to pay for a lesson. Onwards indeed. https://example.com/ 7558 434381 433828.434381.434657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1769684856492 0 \N \N f 0 \N 0 208177798 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-19 13:03:57.045 f \N \N \N 0 0 0 0 0 0 0 443726 2025-03-19 13:39:45.751 2025-03-29 22:39:51.703 \N (n^2-1)/(n-1)\n=(n+1)(n-1)/(n-1)\n=(n+1) https://example.com/ 17226 443288 443288.443726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3866474900465 0 \N \N f 0 \N 0 60597457 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N 2025-03-26 07:05:14.766 f \N \N \N 0 0 0 0 0 0 0 443655 2025-03-19 12:54:26.775 2025-03-29 22:39:48.16 Using lightning to transfer funds abroad I have spent over 7 years working abroad. Over that period of time, I have found myself in countless occasions sending money backwards and forwards through different banks. As you are well aware, this means fees and long periods of time (up to a week ) to receive the money. In addition to this, you need to consider the currency exchange and how much premium the bank charges for transferring/receiving funds in a different currency. \n\nA couple of days ago, @NFLsurvivor2024 posted the results after week 3 at NFL. As some of you may be aware, we are participating in a pool. Most of stackers are doing poorly and, if you fail with your predictions, you get eliminated. However, stackers can rebuy once if they are happy to continue playing a bit longer. \n\nRecently, sybil fees have been changed and @NFLsurvivor2024 suggested to pay the rebuy option through a lightning invoice. I requested the rebuy option and, shortly after, I received the invoice in the comments. Only had to scan it with my wallet in Spain and sent the sats to someone in Canada. \n\nIn just literally a few seconds, I had the confirmation from his side that the payment was received and I was in again. \n\nNo fees, no long delays to receive the transaction, no currency exchange, no banks. Just p2p transaction. \n\nBitcoin fixes this!!\n\n \N 11395 \N 443655 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.08563079109679 0 \N \N f 0 \N 0 223685480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:41:25.295 f \N \N \N 0 0 0 0 0 0 0 433571 2025-03-11 08:18:53.641 2025-03-29 22:39:48.16 US Sanctions Hit Linux and GPL / Open Source Good summary of what is going on with the removal of many Russian Linux contributors and the reasons behind it. Additionally some speculation about the impact on the broader open source world.\n\nIts sad to see and I expect will have broad impacts across many projects. https://youtube.com/watch?v=L5Ec5jrpLVk&si=v6j7t26trQpjS6ns 1105 \N 433571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2213657100983 0 \N \N f 0 \N 0 213735765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 02:35:06.943 f \N \N \N 0 0 0 0 0 0 0 435021 2025-03-12 12:05:36.258 2025-03-29 22:39:51.703 \N 👏 Love to see this, leading by example and owning it. https://example.com/ 17552 435012 435002.435006.435012.435021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1460171618934 0 \N \N f 0 \N 0 244794973 0 f f \N \N \N \N 435002 \N 0 0 \N \N f \N 2025-03-19 05:57:13.917 f \N \N \N 0 0 0 0 0 0 0 435233 2025-03-12 14:43:34.612 2025-03-29 22:39:51.703 \N Trustlessness is just being repetitive. Doing the same thing over and over again and eventually it becomes trustless. For example the sun is trustless. It rises every day. Thats all. https://example.com/ 16309 435221 435046.435135.435162.435214.435221.435233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9185792420534 0 \N \N f 0 \N 0 79399920 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:09:44.166 f \N \N \N 0 0 0 0 0 0 0 434809 2025-03-12 08:55:02.683 2025-03-29 22:39:51.703 \N the more a project is talked about before launch the more likely it is to be a let down. https://example.com/ 1549 434807 434807.434809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9836322211575 0 \N \N f 0 \N 0 151260715 0 f f \N \N \N \N 434807 \N 0 0 \N \N f \N 2025-03-19 04:48:31.034 f \N \N \N 0 0 0 0 0 0 0 434572 2025-03-12 03:10:07.377 2025-03-29 22:39:51.703 \N Great news. Difficult to enforce though.\n\nWe need to stop pillaging (and destroying) the oceans...\n\nAnd the best way that we (as individuals) can achieve that is to stop consuming ocean products. https://example.com/ 6164 434410 434410.434572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8124241570412 0 \N \N f 0 \N 0 205358586 0 f f \N \N \N \N 434410 \N 0 0 \N \N f \N 2025-03-19 06:53:23.447 f \N \N \N 0 0 0 0 0 0 0 447167 2025-03-21 16:50:05.813 2025-03-29 22:39:51.704 \N This is because the sender is unaware of your channel balances and how much to split up their payments properly, since MPP is something the sender does. \n\nI'm a bit unsure why the sender wouldn't eventually find the right split, but perhaps there's a time out issue here. And I'm not sure why it's not attempting to create a new channel instead of trying to fit down the existing ones. Perhaps I misread something or I'm not familar with how you are testing this.\n\nhttps://github.com/ACINQ/phoenix/issues/155 https://example.com/ 20904 447155 446371.446745.447113.447133.447134.447151.447155.447167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.53415598569239 0 \N \N f 0 \N 0 107701103 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:01:23.178 f \N \N \N 0 0 0 0 0 0 0 344372 2024-12-26 17:43:02.245 2025-03-29 22:39:51.704 \N Who keeps zapping me? I have more sats than when I started..... https://example.com/ 6777 344237 344237.344372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6305866971252 0 \N \N f 0 \N 0 94577487 0 f f \N \N \N \N 344237 \N 0 0 \N \N f \N 2025-03-29 09:08:58.508 f \N \N \N 0 0 0 0 0 0 0 434019 2025-03-11 15:09:43.776 2025-03-29 22:39:51.705 \N I had a stroke reading that. https://example.com/ 13759 433978 433978.434019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.503788329508 0 \N \N f 0 \N 0 42091656 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 2025-03-19 07:17:28.192 f \N \N \N 0 0 0 0 0 0 0 436539 2025-03-13 16:18:22.72 2025-03-29 22:39:51.706 \N Foreign TV subscription for 6 months :-) Gotta learn and keep them languages... https://example.com/ 9351 436325 436241.436325.436539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7843493573746 0 \N \N f 0 \N 0 29674314 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 12:06:07.736 f \N \N \N 0 0 0 0 0 0 0 434183 2025-03-11 16:44:24.9 2025-03-29 22:39:51.706 \N KYC is often a requirement for travelers because it provides a credible threat of financial or legal consequences for the traveler if they misbehave or commit fraud.\n\nIf a guest trashes their hotel room, abuses staff, runs up an unpaid bill, uses stolen credit card info, etc, KYC data gives the hotel (or its insurance company) a way to recoup their losses by pursuing damages in court from the abusive guest. \n\nIn a way, honest guests are forced into surrendering their identity as a way of _putting up collateral_ to ensure they behave well during their stay. Hotels can't safely offer their services without such collateral. \n\nPerhaps instead of their identity, customers who prefer to retain their privacy could offer, y'know, _actual_ collateral, vis-a-vis _bitcoin._ \n\nThe traveler deposits some agreed quantity of bitcoin in a 2-of-3 multisig contract. The collateral is released back to the customer (minus the hotel fees) if the hotel and traveler both agree. But if the two aren't in agreement, they bring in a mutually trusted auditor who can attest to the correct outcome and divide up the collateral accordingly. \n\nOne might envision this as a service hired in advance by both guest and hotel. This service acts as an escrow who attests to either "the stay went smoothly" or "dang that guy behaved terribly", or anywhere in between, according to the findings of their investigator. Since the majority of hotel stays go smoothly, this service could make big bucks. In fact, this service could be generalized to work in almost any industry that requires KYC data as collateral. https://example.com/ 1488 434067 433828.433999.434020.434057.434067.434183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.2192143474941 0 \N \N f 0 \N 0 94096922 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-20 06:36:46.587 f \N \N \N 0 0 0 0 0 0 0 443299 2025-03-19 08:48:33.02 2025-03-29 22:39:51.707 \N The biggest hurdle is convenience. People have gotten used to the idea that they don't have to be responsible for themselves because the state and the banks will take care of them. That's especially true in Europe.\n\nFor some people, it's scary as hell to be completely self-sovereign.\n\nWith Trezor, we try to make the experience of self-custody as convenient as possible, but for some, the paradigm shift is just too big to handle.\n https://example.com/ 4083 443178 443178.443299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1087762171288 0 \N \N f 0 \N 0 44653959 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N 2025-03-26 03:07:45.124 f \N \N \N 0 0 0 0 0 0 0 434378 2025-03-11 20:49:06.181 2025-03-29 22:39:48.161 Lopp On Ossification \N https://blog.lopp.net/on-ossification/ 21249 \N 434378 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 2.30230535140699 0 \N \N f 0 \N 0 27683893 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:58.597 f \N \N \N 0 0 0 0 0 0 0 448790 2025-03-22 21:48:27.884 2025-03-29 22:39:48.161 Capital in the 21st Century — Axiom (by Allen Farrington) \N https://www.axiombtc.capital/capital 21314 \N 448790 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 3.01804482476321 0 \N \N f 0 \N 0 30028386 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 16:38:08.991 f \N \N \N 0 0 0 0 0 0 0 436628 2025-03-13 18:16:28.761 2025-03-29 22:39:51.702 \N I assume this will make women less capable of delivering babies normally in future for the rules of evolution. You don't use something, it get inefficient. https://example.com/ 21427 436620 436523.436620.436628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.989458918389 0 \N \N f 0 \N 0 116636878 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 2025-03-20 11:34:37.461 f \N \N \N 0 0 0 0 0 0 0 435788 2025-03-13 01:01:48.278 2025-03-29 22:39:51.701 \N You dropped this 👑 https://example.com/ 1438 435544 435544.435788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.51009447784929 0 \N \N f 0 \N 0 196350254 0 f f \N \N \N \N 435544 \N 0 0 \N \N f \N 2025-03-19 21:41:49.708 f \N \N \N 0 0 0 0 0 0 0 447258 2025-03-21 18:18:52.009 2025-03-29 22:39:51.702 \N ![delving.png](https://m.stacker.news/17791) https://example.com/ 20663 447229 441238.447229.447258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.45777349287435 0 \N \N f 0 \N 0 121467512 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 2025-03-28 11:36:15.825 f \N \N \N 0 0 0 0 0 0 0 436244 2025-03-13 12:15:13.681 2025-03-29 22:39:51.707 \N Haha, it's like your own personal block reward halving -- your shadowy super-coding keeps going down as a result of your shadowy super-coding. Eventually it asymptotes. https://example.com/ 775 436241 436241.436244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.14479860632055 0 \N \N f 0 \N 0 180734617 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 12:14:14.215 f \N \N \N 0 0 0 0 0 0 0 443458 2025-03-19 11:11:44.122 2025-03-29 22:39:51.707 \N I really hope I can go out and pay coffee, groceries and restaurants with it, I'm with @DarthCoin on that one. I'm tired that after so many years people still ask "but what can you do with it?" and they are right to ask!\n\nThis is why I am actively working on that front, I want to make the city I'm living a BTC hub, so you can go around and pay most of what you need with an LN wallet. It's a place with many tourists, both local and foreigners, so I think it's a good place to start. \n\nGoal: 20 new BTCmap.org entries in 1 year. https://example.com/ 17535 429301 429301.443458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.15395476477733 0 \N \N f 0 \N 0 236872984 0 f f \N \N \N \N 429301 \N 0 0 \N \N f \N 2025-03-26 04:40:45.185 f \N \N \N 0 0 0 0 0 0 0 443541 2025-03-19 12:10:17.912 2025-03-29 22:39:48.161 Migrating from Samourai Wallet into Sparrow Wallet | Freedom.Tech \N https://freedom.tech/samourai-to-sparrow/ 17183 \N 443541 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7538349549207 0 \N \N f 0 \N 0 188351278 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:04:09.991 f \N \N \N 0 0 0 0 0 0 0 435038 2025-03-12 12:20:13.678 2025-03-29 22:39:51.702 \N https://primal.b-cdn.net/media-cache?s=o&a=1&u=https%3A%2F%2Fm.primal.net%2FHdZy.jpg https://example.com/ 20802 434962 434962.435038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.884894808915 0 \N \N f 0 \N 0 212034641 0 f f \N \N \N \N 434962 \N 0 0 \N \N f \N 2025-03-19 06:30:53.571 f \N \N \N 0 0 0 0 0 0 0 435910 2025-03-13 05:07:18.557 2025-03-29 22:39:48.162 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/498394), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 1135 \N 435910 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.1618689675117 0 \N \N f 0 \N 0 91271773 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:58:08.979 f \N \N \N 0 0 0 0 0 0 0 443672 2025-03-19 13:08:54.618 2025-03-29 22:39:51.702 \N I am not interested in buying outright quite yet. I need to see where things go with the wallet stuff and how that impacts zapping and activity on the site and then what the plan for territories and marketing SN is going forward. \n\nIf prices got juicy enough I may buy 3M extra sats and set them aside until I decide whether to take the plunge on outright territory ownership and if I decide against I have an extra 3M sats. Can’t go wrong. https://example.com/ 18528 443663 443577.443663.443672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7326829014823 0 \N \N f 0 \N 0 104210889 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:29:12.067 f \N \N \N 0 0 0 0 0 0 0 436419 2025-03-13 14:51:31.688 2025-03-29 22:39:51.702 \N I support Mutiny's censorship because it is a sensible default behavior for a mobile node which users can change if they don't like it. It is worth noting that once you define censorship as "auto-failing some payments" (which I think is a perfectly fine definition btw) then all lightning nodes perform some censorship.\n\nLND autofails (censors) payments to yourself by default, but users can configure it to allow them. CLN autofails opening a second channel to the same destination by default, but users can configure it to allow it. Now Mutiny node autofails payments to a known source of hodl invoices by default, but once again, users can change it if they want to.\n\nSetting reasonable defaults for users is good and necessary. I am glad Mutiny makes it something you can change if you don't like their default. They are trying to give users a default setting that doesn't result in a lot of force closures on mobile. That is smart. Good on them.\n\nMaybe someday mobile nodes will be able to safely make async payments. When that happens, I hope they will allow them by default. But today is not that day -- async payments are not spec conformant right now and for mobile nodes they are dangerous. I for one applaud Mutiny for finding a reasonable solution in the interim. And I for one want to work on a better solution for the long term. https://example.com/ 17209 436416 435922.436416.436419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.76510059221574 0 \N \N f 0 \N 0 179663623 0 f f \N \N \N \N 435922 \N 0 0 \N \N f \N 2025-03-20 08:10:25.981 f \N \N \N 0 0 0 0 0 0 0 443559 2025-03-19 12:17:26.496 2025-03-29 22:39:51.702 \N I'm all for it if social consensus will have it but I'm not sure I can hold my breathe that long. https://example.com/ 14939 443545 443545.443559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8327115078542 0 \N \N f 0 \N 0 26030400 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 2025-03-26 05:48:12.108 f \N \N \N 0 0 0 0 0 0 0 436553 2025-03-13 16:30:41.042 2025-03-29 22:39:48.162 The perfect dictatorship would have the appearance of a democracy >The perfect dictatorship would have the appearance of a democracy, but in reality would be a prison without walls, from which the prisoners would not even dream of escaping. It would essentially be a system of slavery in which, through consumption and entertainment...\n\n- Aldous Huxley, Brave New World (1932). \n\nAldous Huxley wrote his book in the interwar period. He had a great (and correct, in my opinion) vision of the future of humanity. He foresaw that people's lives would be manipulated by giving them what they want and desire, rather than controlling them through fear. In other words, he saw pleasure and desire as the tools of control, while Orwell, several years later (1949), saw fear and repression as the means of controlling people's lives. \n\nHistory has shown that they were both right. Fear and repression were (and still are) used to control people's lives in totalitarian regimes, while pleasure and desire are used as tools of control in democratic governments. \n\nAldous Huxley, in *Brave New World* presents a picture of a future society, the *World State*, where science and social control will create stability and well-being. People are created in laboratories, predetermined for their caste, and conditioned from birth to accept their roles. Bernard longs for acceptance despite his nonconformity, while John struggles with the superficiality of the *World State* after being taken there.\n\nTheir contrasting experiences highlight the conflict between the engineered happiness of the *World State* and the passionate, unpredictable nature of traditional life. John introduces concepts of love, art, and religion that challenge the values of the *World State*. However, his attempts to integrate these ideas clash with society's conditioning. The result is a tragedy.\n\nIn the end, this great book becomes a warning about the dangers of sacrificing individuality and critical thinking for the sake of stability and pleasure. It encourages the reader of that time, - but especially the readers of our times, - to reflect on the true meaning of happiness and the importance of human relationships in a world driven by technology and control.\n \N 624 \N 436553 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 19.8849130120922 0 \N \N f 0 \N 0 231730525 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:22:38.099 f \N \N \N 0 0 0 0 0 0 0 436411 2025-03-13 14:40:12.588 2025-03-29 22:39:51.702 \N Pee in a bottle…\nBezorocket to the stars? No\n…warehouse Amazon\n\nIt’s a Sunday - normal haiku rules not applied. https://example.com/ 15858 436404 436273.436391.436398.436401.436404.436411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2327247162413 0 \N \N f 0 \N 0 109472734 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 07:57:53.487 f \N \N \N 0 0 0 0 0 0 0 436143 2025-03-13 10:52:45.202 2025-03-29 22:39:51.702 \N I couldn't resist not to post my old meme warning...\n[![darth-cbdc-compliance.jpg](https://i.postimg.cc/Kz3vS74B/darth-cbdc-compliance.jpg)](https://postimg.cc/Q9srcTQd) https://example.com/ 19829 436141 436028.436029.436031.436059.436065.436091.436126.436141.436143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.61334804234799 0 \N \N f 0 \N 0 162372586 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 04:20:28.528 f \N \N \N 0 0 0 0 0 0 0 434780 2025-03-12 08:31:01.267 2025-03-29 22:39:51.702 \N There's a phenomenon called the "Baader-Meinhof Phenomenon," or "frequency illusion." Have you ever learned a new word, fact, or idea and then suddenly started seeing it everywhere? That's the Baader-Meinhof Phenomenon in action. After you learn something new or are made aware of something, you unconsciously keep an eye out for it, and as a result, you believe it's occurring more frequently than before. In reality, the frequency hasn't changed—your awareness has.\n\nThis phenomenon gets its name from the Baader-Meinhof Group, a German terrorist group from the 1970s. People who heard about the group for the first time felt like they began encountering references to it everywhere, hence the name of the phenomenon. https://example.com/ 7773 434627 434627.434780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9439666153363 0 \N \N f 0 \N 0 54669506 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 2025-03-19 08:53:38.514 f \N \N \N 0 0 0 0 0 0 0 448617 2025-03-22 18:27:53.058 2025-03-29 22:39:51.703 \N ::channeling the fasting nerds to come contribute to this thread:: https://example.com/ 4984 447143 447143.448617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.10949274833565 0 \N \N f 0 \N 0 40763371 0 f f \N \N \N \N 447143 \N 0 0 \N \N f \N 2025-03-29 14:50:24.084 f \N \N \N 0 0 0 0 0 0 0 443664 2025-03-19 12:59:28.731 2025-03-29 22:39:51.703 \N Zap buy in here. https://example.com/ 19138 443295 443295.443664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0909360429571 0 \N \N f 0 \N 0 147965956 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:03.645 f \N \N \N 0 0 0 0 0 0 0 443555 2025-03-19 12:15:34.126 2025-03-29 22:39:51.703 \N Really digging the occasional SN memes getting posted on twitter. I wonder if there's a way to crowd-source a meme competition from the SN community to share on twitter. Harness the weaponized autism ala 4chan for viral marketing...\n\nhttps://twitter.com/stacker_news/status/1521245726038142977\n![https://pbs.twimg.com/media/FRyMzsEWYAErkDj?format=jpg&name=small](https://pbs.twimg.com/media/FRyMzsEWYAErkDj?format=jpg&name=small) https://example.com/ 13798 443538 443531.443538.443555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6585749755819 0 \N \N f 0 \N 0 186989617 0 f f \N \N \N \N 443531 \N 0 0 \N \N f \N 2025-03-26 05:33:10.728 f \N \N \N 0 0 0 0 0 0 0 436042 2025-03-13 09:10:53.728 2025-03-29 22:39:51.703 \N everyone loves a time lapse!\nhttps://x.com/PlebPrintShop/status/1833995164206936420 https://example.com/ 6430 436028 436028.436042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.87764427282218 0 \N \N f 0 \N 0 204305223 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 02:52:52.79 f \N \N \N 0 0 0 0 0 0 0 434890 2025-03-12 10:13:50.272 2025-03-29 22:39:51.703 \N Realizing how small of a speck I am in this vast universe. https://example.com/ 2361 434807 434807.434890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8947957350679 0 \N \N f 0 \N 0 75658925 0 f f \N \N \N \N 434807 \N 0 0 \N \N f \N 2025-03-19 04:48:30.151 f \N \N \N 0 0 0 0 0 0 0 434147 2025-03-11 16:13:24.616 2025-03-29 22:39:51.703 \N The daily reward, it's a great idea that push people to post quality content.\n\nIf you find or think of something awesome surely someone else will be interested in it as well. https://example.com/ 18271 434099 433828.434099.434147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.71521749553924 0 \N \N f 0 \N 0 123159976 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-18 16:28:55.636 f \N \N \N 0 0 0 0 0 0 0 443717 2025-03-19 13:34:55.323 2025-03-29 22:39:48.163 Long Form Content On Stacker News I have been thinking a lot recently about whether Stacker News is an appropriate place to publish long form content, by which I mean posts that exceed a few hundred words and may be intended to be of a more permanent relevance than a simple discussion post. \n\nI have seen the issue from both sides, I think, and I am torn.\n\nAs a writer of a long, carefully crafted post, it can be frustrating to watch it disappear into the sea of other posts of varying type and quality after a day or two. You can promote your own stuff in replies where appropriate, but that can be time consuming in having to dig up a link, and can come across as shilling. \n\nOn the other hand, as a reader sometimes I just want to skim around and see what people are talking about. Often I don't want to commit my time to a long involved post, and I'm sure I miss great content because of this.\n\nI have some thoughts, and I'd be interested to know what others think:\n\n1. Some kind of long form pinned article sub?\n\n2. Individual blogs where members can post and collect their own prior posts?\n\n3. Some sort of a signature footer for message replies, like a canned email signature response, where a few prior posts are linked?\n\nI'm just throwing this out there because I feel like a lot of good content gets lost the way things are currently set up. Also, established writers who visit and read Stacker News would never consider publishing original content here as it stands. Perhaps SN is not the place for long form content? I really dont know the answer. \N 16176 \N 443717 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 19.5726693601561 0 \N \N f 0 \N 0 129550518 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 07:20:31.843 f \N \N \N 0 0 0 0 0 0 0 436293 2025-03-13 12:59:12.456 2025-03-29 22:39:51.703 \N I love actually having the time and space to refactor a feature I wrote myself (something I'm doing right now for sn!)\n\nAnother things is implementing a design, it's nice to do some fronted work where there's no ambiguity or decisions to be made on my part how things look just need to make it look like the design. https://example.com/ 10821 436276 435905.436276.436293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.745541695511385 0 \N \N f 0 \N 0 70306965 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 2025-03-20 07:02:08.392 f \N \N \N 0 0 0 0 0 0 0 435251 2025-03-12 14:58:53.66 2025-03-29 22:39:51.703 \N Will VLS allow "shared-ownership" of a Lightning node? As in: \n- Alice, Bob and Charlie share TheNode. \n- TheNode can only open a channel, close a channel or send onchain funds from the node wallet if Alice, Bob and Charlie sign with each individual's key.\n- There is no way for these actions to take place unless all three agree by signing.\n\n https://example.com/ 21357 434440 434440.435251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7625123298823 0 \N \N f 0 \N 0 154258652 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 2025-03-19 08:40:10.243 f \N \N \N 0 0 0 0 0 0 0 435345 2025-03-12 15:48:53.463 2025-03-29 22:39:51.703 \N Today was a "family skate day" :)\nMy wife is on level 6 (on a scale of 10), our son is 3 (same scale), and our daughter is just learning now to skate.\nAnd me....level zero :D I don't like to skate, but I'm going with them, and enjoy a glass of mulled wine :)\n\nHere are the pictures (idk about quality of pictures, because I had to make a print screen of a video):\n\n\n\n![111.png](https://m.stacker.news/13930)\n\n\n![222.png](https://m.stacker.news/13931)\n https://example.com/ 19812 435342 435242.435342.435345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38131168125312 0 \N \N f 0 \N 0 60226978 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 2025-03-20 02:51:22.465 f \N \N \N 0 0 0 0 0 0 0 435706 2025-03-12 22:17:48.022 2025-03-29 22:39:51.704 \N Me when muun wallet is still a thing\n![shame](https://media.tenor.com/CT8uDkMXPjwAAAAC/hot-fuzz.gif) https://example.com/ 18528 435516 435516.435706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4004002263383 0 \N \N f 0 \N 0 220549746 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 2025-03-19 15:35:21.442 f \N \N \N 0 0 0 0 0 0 0 443525 2025-03-19 11:59:22.94 2025-03-29 22:39:51.704 \N -I work on multiple pieces simultaneously, and keep returning to them when I'm in the mood for that piece or if that deadline is approaching. This way, each piece I do is "in the oven" for quite a while which allows me to keep coming back to it and shaping it until it's published.\n\n-The total balance is very hard. I've had to reduce podcast appearances and turn down a lot of speaking engagements, just to make sure I have time for my core analysis and life. https://example.com/ 13903 443515 443399.443515.443525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9462597586043 0 \N \N f 0 \N 0 197761408 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 2025-03-26 05:46:17.124 f \N \N \N 0 0 0 0 0 0 0 436470 2025-03-13 15:22:36.163 2025-03-29 22:39:51.704 \N k00b, I need to correct you. I did not say Bisq's system was decentralized. I literally said\n\n>Don't call this decentralized. Someone has to push the button to tell the computer what the outcome was.\n\nand what I was proposing was that people might enjoy this custodial system which we have called collaborative custody when talking about something like unchained capital for example. You know they would call this collaborative custody and we should too.\n\nSo I'm a little offended now that I'm being misrepresented as if I said this was a way to do a decentralized thing which I spent two multi-comma sentences saying that it wasn't. People taking these systems to unreasonable extremes with lies as marketing material is why I and others often have to condemn them altogether. Don't be the reason I have to condemn this structure. https://example.com/ 805 436255 436255.436470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.09528119294737 0 \N \N f 0 \N 0 227208571 0 f f \N \N \N \N 436255 \N 0 0 \N \N f \N 2025-03-20 08:40:13.103 f \N \N \N 0 0 0 0 0 0 0 435103 2025-03-12 13:15:48.343 2025-03-29 22:39:51.705 \N Bitcoin meetups in a deli. Grassroots as it gets. Simon sounds like the man. Great little write-up. Keep them coming. https://example.com/ 21578 435091 435073.435078.435091.435103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.03383493753132 0 \N \N f 0 \N 0 182416989 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 2025-03-19 06:33:38.546 f \N \N \N 0 0 0 0 0 0 0 435586 2025-03-12 19:56:36.724 2025-03-29 22:39:51.706 \N UN-Offical. But here is the list I threw together.\n\nsiggy47 - BYU\ntnuts420 - Mississippi state\nkr - Kansas\nStillStackinAfterAllTheseYears - Kansas\ngnilma - Texas Tech\nBell_Curve - New Mexico\nTurdinthepunchbowl - Illinois\npj - Gonzaga\ngrayruby - Auburn\nundisciplined - BYU\nWumbo - Kentucky https://example.com/ 8729 435577 435577.435586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4419113339815 0 \N \N f 0 \N 0 109796649 0 f f \N \N \N \N 435577 \N 0 0 \N \N f \N 2025-03-19 13:27:20.093 f \N \N \N 0 0 0 0 0 0 0 447105 2025-03-21 16:16:01.126 2025-03-29 22:39:51.706 \N For larger on-chain payments I'd probably go with a node on a laptop. The node doesn't need to be running 24/7. Just re-sync whenever you want to make a payment. You could do that with public WiFi + Tor at a cafe or something like that.\n\nFor day-to-day payments (i.e. Lightning), what's wrong with the non-custodial mobile wallets like Phoenix, Breez and Blixt? https://example.com/ 1740 446601 446601.447105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2476257102958 0 \N \N f 0 \N 0 137386698 0 f f \N \N \N \N 446601 \N 0 0 \N \N f \N 2025-03-28 10:33:55.859 f \N \N \N 0 0 0 0 0 0 0 447109 2025-03-21 16:18:21.341 2025-03-29 22:39:51.706 \N Skreep hanging fire here; but the design pattern of SN disallows centralized powers like moderated subreddits do. An econ sub isn't moderated by anybody and you have to pay hard money to post and reply. https://example.com/ 20612 447034 446456.447034.447109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5629126722751 0 \N \N f 0 \N 0 117320453 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 10:55:13.42 f \N \N \N 0 0 0 0 0 0 0 436182 2025-03-13 11:19:26.024 2025-03-29 22:39:48.163 Why Is It So Difficult For Software Developers To Understand Bitcoin? I work with a lot of software engineers and tech people, and I have noticed an interesting trend.\n\nI have found that these same people who are eagerly awaiting the next node.js release, pre-ordering the latest gaming devices, or constantly browsing Hacker News for tech updates, are some of the most reluctant to want to understand bitcoin. \n\n### Why is this?\n\nFrom the outside it seems natural that tech people would gravitate towards bitcoin as new and exciting tech, but often when I bring it up they seem to mentally 'shut down' and not want to have anything to do with it. I am not particularly pushy, just talking general ideas and concepts. But often people I have spoken with are not even interested in trying out a wallet or playing around with some free sats.\n\nAt a high level I think this because bitcoin fundamentally is **not about the tech**. The technical aspects such as the distributed ledger, blocks, UTXOs, and consensus can be highlighted in a 10-minute YouTube video and many people already know how this works. **The real innovation is the political, philosophical, and second-order considerations for what all of this means.**\n\nFundamentally bitcoin is an anthesis to the current order, requiring a certain critical mindset. Acknowledging the reality and consequences of bitcoin by virtue also acknowledges the fallibility and inevitable collapse of the current system and paradigm. As [CBDCs](https://www.youtube.com/watch?v=0u8eZcPnWeU) start to become deployed, as currencies inflate and fail, and as authoritarianism creeps into western democracies, the prospect of a changing world order presents an existential question which for many people is far more comfortable to not consider. \n\nInterestingly, this may also explain the continued wasted interest in s**tcoins by otherwise talented developers. People can work on 'blockchain tech' within more structured confines without needing to develop a real political conciousness. \n\nSoftware and tech people will likely have done well over the last few years as WFH and soaring salaries makes this a highly lucrative career path. However this same corporatisation has captured the tech market massively, meaning the demographics of hackers / developers from the 90s and early 2000s internet and cypherpunk movement are a lot different to the current cohort.\n\nEnergy use, tax, and equality are quickly parroted as rote counterpoints to bitcoin, but really they are a knee-jerk justification of intent: "I no longer need to care about this thing you are talking about as it challenges my world view."\n\nI have also found that in general younger people are also a lot less open to understanding bitcoin than older people. I have found explaining bitcoin and its implications to someone who lived and worked through 2008 or Web 1.0 is a lot more straight forward than people who were too young at the time to remember much. This is only exacerbated by the increasing influx of ideology as the legacy order tries to justify itself.\n\nI do see this trend with young people flipping eventually, as more people emerge into a world where bitcoin is naturalised and the issues with the current financial system are more and more obvious. The apathy towards change will get rerouted into a desire to seek out solutions, I hope. \n\nI have experienced exceptions to all of the above ideas, and they are of course generalisations, but it makes me realise the importance of developing nuanced dialogue and discussion for communicating the idea of bitcoin.\n\n– CE \N 2322 \N 436182 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 24.4417954917171 0 \N \N f 0 \N 0 105096352 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 05:02:23.324 f \N \N \N 0 0 0 0 0 0 0 434360 2025-03-11 20:21:23.383 2025-03-29 22:39:48.163 Climate activist dinner party tonight. Wife said no bitcoin. What to do? I'm making beef kofta and homemade falafel and pita. Lots of olives, tomatoes, and cheese. Gyro bar. Pinot grigio. Apple pie with ice cream. Espresso. \N 1505 \N 434360 \N \N \N \N \N \N \N \N news \N ACTIVE \N 11.1190784679665 0 \N \N f 0 \N 0 128000066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:00.091 f \N \N \N 0 0 0 0 0 0 0 436137 2025-03-13 10:48:15.182 2025-03-29 22:39:51.707 \N I think River and Damus and Casa have done a great job of creating a sticky brand for me. What Bitcoin Did is a great brand too. TFTC as well. There are lots of them but those come to mind. Of all personalities, I think Jimmy Song, Lopp, and Lyn have the strongest personal brands. \n\nThe main thing is I know what these "brands" stand for, they're consistent, they aren't deeply conflicted in a variety of opaque ventures, and their leaders aren't noisy af about all kinds of tangentially related nonsense nor trying to appeal to everyone (and hide who they are). ie Their identity is strong.\n\nI see a lot of brand potential in:\n- Fountain \n - I associate them with one too many things: Podcasts x Social x Bitcoin\n - It seems like you can cross two things at most and still reliably puncture a psyche\n- Mutiny\n - Still a young company, but they could be seen as the cypherpunks of lightning through more direct treatment\n- Breez\n - Their brand is strong to me whatever lane they choose, but they are changing lanes right now https://example.com/ 14260 435516 435516.436137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9457581340918 0 \N \N f 0 \N 0 107051822 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 2025-03-20 04:17:05.529 f \N \N \N 0 0 0 0 0 0 0 436221 2025-03-13 11:49:23.824 2025-03-29 22:39:51.707 \N The transaction fees are supposed to take over. With high fees per transaction, our right now solution is to use payjoin lightning channel opens (nolooking assists well with this) leaving each individual opening a channel paying (I'm making these numbers up, this is just theory) 23 cents effectively, but so many people are part of this one channel open transaction that the fee paid comes out to like $100 or something crazy. Wish I had the actual math to share with you, but this is one of those things people didn't look into very hard while the fees were low. https://example.com/ 16684 436219 436189.436209.436217.436219.436221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.96936441240108 0 \N \N f 0 \N 0 52104243 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N 2025-03-20 05:13:18.896 f \N \N \N 0 0 0 0 0 0 0 436536 2025-03-13 16:17:13.341 2025-03-29 22:39:51.707 \N Haven't read through the whole thing yet, but:\n\n> Here we will propose an incentive compatible solution, One-Shot Replace-By-Fee-Rate, that mitigates prior concerns over replace-by-fee-rate policies by allowing the replacement to only happen when it would immediately bring a transaction close enough to the top of the mempool to be mined in the next block or so.\n\n👏 YES. I've been thinking about exactly this solution since I read the recent discussion about pinning attack issues earlier this year.\n\nAnother related realization I had recently is that in many cases there's no need to broadcast a transaction until it has a chance to get into the next block. You can use the time waiting to e.g. batch further payments into the pending transaction or raising the feerate without having to deal with fee-inefficient CPFP or privacy-degrading RBF. https://example.com/ 5590 436241 436241.436536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7250923222314 0 \N \N f 0 \N 0 75157534 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 13:43:35.345 f \N \N \N 0 0 0 0 0 0 0 436640 2025-03-13 18:34:06.775 2025-03-29 22:39:48.164 Pavel Durov, co-founder of Telegram, arrested in France \N https://x.com/sentdefender/status/1827453251442073636 21067 \N 436640 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 4.53775493306456 0 \N \N f 0 \N 0 217629343 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:19:36.842 f \N \N \N 0 0 0 0 0 0 0 443228 2025-03-19 07:32:24.023 2025-03-29 22:39:48.164 LN Jukebox - direct search feature Hey, me again..\n\nThanks to @artdesignbySF's suggestion, I've implemented direct search feature so that you don't need to look up audio on youtube and then copy and paste it to the jukebox. Search directly on the jukebox page now!\n\nI know I'm a bit annoying already, but don't worry, no more major feature announcements for at least a week. Minor features are being deployed continuously. \n\nhttps://ln-jukebox.com \N 21262 \N 443228 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.6633642930827 0 \N \N f 0 \N 0 17063961 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:13:25.806 f \N \N \N 0 0 0 0 0 0 0 435303 2025-03-12 15:27:29.318 2025-03-29 22:39:51.703 \N When I look back at the satoshis I've spent\nI've realized stacker.news is not about rent-\nseeking behavior, but adding value, like a cent\nMy poems are weird, but you know what I meant https://example.com/ 760 435292 435046.435135.435292.435303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.812818557496 0 \N \N f 0 \N 0 18460997 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:57:48.807 f \N \N \N 0 0 0 0 0 0 0 433914 2025-03-11 14:05:04.586 2025-03-29 22:39:51.703 \N Credit Card rewards. Only a small percent of diligent cardholders will benefit on net from rewards points, cash back, sign up offers, 0% interest periods, etc.\n\nThese rewards are paid for by less diligent customers who don't pay off their account each period and pay exorbitant interest rates. People also tend to increase their spending more than their reward rate. Many cards make you jump thru hoops to claim the reward.\n\nMost of the time, these rewards don't even cover third party transaction fees (let alone sales tax). Even if you are diligent, the CC company is still selling data about your spending habits unless you call them and explicitly ask to invoke your right (as US citizen) to opt out of third party data sharing. https://example.com/ 1030 433851 433828.433851.433914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.14442318356193 0 \N \N f 0 \N 0 115845037 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-18 16:19:48.078 f \N \N \N 0 0 0 0 0 0 0 447271 2025-03-21 18:31:40.19 2025-03-29 22:39:51.707 \N Now no one will use them and embarrass the hell out of me. https://example.com/ 5757 446937 446937.447271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1950282277721 0 \N \N f 0 \N 0 236473313 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N 2025-03-28 12:03:44.988 f \N \N \N 0 0 0 0 0 0 0 436474 2025-03-13 15:24:03.15 2025-03-29 22:39:51.708 \N Some of Roosevelt's campaign speeches indicate to me that he was quite open about fighting "speculators" and effectively taking their profits away.\n\nHere is a selection from one of his campaign addresses, [the Commonwealth Club Address](https://teachingamericanhistory.org/document/commonwealth-club-address/) in 1932:\n\n> Every man has a right to his own property; which means a right to be assured, to the fullest extent attainable, in the safety of his savings…[so that he may] carry the burdens of those parts of life which…afford no chance of labor: childhood, sickness, old age. In all thought of property, this right is paramount; all other property rights must yield to it. If, in accord with this principle, we must restrict the operations of the speculator, the manipulator, even the financier, I believe we must accept the restriction as needful… [Industrialists] have undertaken to be, not business men, but princes of property. … [Therefore] they must fearlessly and competently assume the responsibility which goes with the power. … [I]nstead of acting each for himself, [they] must work together to achieve [a] common end. They must, where necessary, sacrifice this or that private advantage… It is here that formal Government…comes in. Whenever [the industrialist] declines to join in achieving an end recognized as being for the public welfare…the Government may properly be asked to apply restraint. Likewise, should the group ever use its collective power contrary to the public welfare, the Government must be swift to enter and protect the public interest.\n\nIt starts out great: everyone has a right to their own property. But then Roosevelt announces that your property rights "must yield to" the limitation that savings exist for the sake of "carry[ing] the burdens of...sickness...[and] old age," and that for people to actually carry those burdens during the Depression, the government must "restrict the operations of the speculator" and ensure that the "princes of property" make a "sacrifice [of] this or that private advantage." He does not say "they must sacrifice their gold." Only that they must sacrifice an unnamed "private advantage."\n\nHere is a selection from another of his campaign addresses, his [Presidential Nomination Address](https://publicpolicy.pepperdine.edu/academics/research/faculty-research/new-deal/roosevelt-speeches/fr070232.htm) in 1932:\n\n> Enormous corporate surpluses [are] piled up -- the most stupendous in history. … [Let us] do something toward the reduction of the surpluses of staple commodities that hang on the market. … Final voluntary reduction of surplus is a part of our objective, but the long continuance and the present burden of existing surpluses make it necessary to repair great damage of the present by immediate emergency measures. … Let us be frank in acknowledgement of the truth that many amongst us have made obeisance to Mammon, that the profits of speculation, the easy road without toil, have lure[d] us from the old barricades. To return to higher standards we must abandon the false prophets and seek new leaders of our own choosing.\n\nThis one seems a bit more explicit at first: the wealthy are hoarding their wealth and he campaigns for emergency powers to effect "the reduction of [those] surpluses" -- and though he says he'd like for this reduction to be "voluntary," it is "necessary" (according to him) to act immediately, as in an emergency, without waiting for people to voluntarily hand over their wealth.\n\nHowever, in order to make that paragraph sound a bit more explicit, I've done some careful chopping. The surpluses he explicitly promises to reduce “by immediate emergency measures” were actually “staple commodities” – namely, farm products, food, “agriculture.” (He uses that specific word in one of my dot-dot-dots.) The “enormous corporate surpluses” – he claims – were already drained: “Where, under the spell of delirious speculation, did those surpluses go? …into new and unnecessary plants which now stand stark and idle…[and] into the call-money market of Wall Street... Those are the facts. Why blink at them?”\n\nConsequently, neither in this speech nor in the previous one that I quoted does Roosevelt explicitly call for emergency measures to confiscate speculative profits or gold. But perhaps he suggests it by calling attention, via proximity, to “enormous…surpluses” produced by speculation and the “reduction” of surpluses “by immediate emergency measures” – even though he technically aimed the latter at a claimed surplus of agriculture rather than at a claimed surplus of gold (which he never explicitly mentions in either speech). His remarks about "abandon"ing the "false prophets" of "Mammon" and "the profits of speculation" are also telling.\n\nI don't know that gold-holders were *surprised* when Roosevelt tried to confiscate nearly all their gold. It seems to me that, because of his campaign speeches, most people not only knew or had an intuition of what was coming, they voted for it. Remember, most people in the Depression did not *have* gold that could be confiscated. The wealthy had gold, and the other voters seemed -- based on these speeches and others -- to be angry with them or maybe jealous of them. In Roosevelt's many other campaign speeches he frequently decries "speculation" and "hoarding," and in the two I quoted he even seems to say that the government must do something about it. He seems somewhat vague or indirect about exactly what, but it certainly involves rich people sacrificing *something* and *someone's* surpluses being involuntarily reduced. So perhaps the blame for the gold confiscation needs to be placed not just on the president, but on all those who voted for him in unjust anger or jealousy at the bogeymen of "speculators" and "hoarders." https://example.com/ 21214 436410 436241.436410.436474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.57417217206844 0 \N \N f 0 \N 0 137675022 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 10:55:47.587 f \N \N \N 0 0 0 0 0 0 0 435938 2025-03-13 05:58:37.885 2025-03-29 22:39:48.164 Neuralink Patient 1 Video Interview \N https://twitter.com/ModdedQuad/status/1771298116719002100 5308 \N 435938 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 26.8798231821297 0 \N \N f 0 \N 0 194580883 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:04:45.761 f \N \N \N 0 0 0 0 0 0 0 435291 2025-03-12 15:21:13.212 2025-03-29 22:39:48.164 I'm Michael Atwood, founder of Oshi & organizer of Austin Bitcoin Club. AMA. Hey everyone! I'm [@dooowta](https://twitter.com/Dooowta), founder and CEO of [Oshi App](https://www.oshi.tech/), and organizer of the [Austin Bitcoin Club](https://twitter.com/AustinBTCclub). \n\nAustin Bitcoin Club helps bring Bitcoin to Austin, and the masses, the first Thursday of every month. We invite guests to speak locally, and broadcast their content globally.\n\nOshi helps businesses and consumers connect over the lightning network to bootstrap and nurture Bitcoin circular economies all over the world. \n\nWe are a lightning-native platform helping businesses onboard to bitcoin, while providing them with the tools to incentivize customers to pay with bitcoin and/or earn bitcoin rewards.\n\nWith two team members, we've personally onboarded hundreds of businesses to bitcoin and given their customers a way to tap into the future of money and save for it via Bitcoin rewards.\n\nTopics:\n-Bitcoin rewards\n-Confessions of a Bitcoin Evangelist\n-Circular Economy\n-Difficulties of onboarding n merchants\n-Customer/business/product development difficulties and successes\n-Running a meetup\n\nand anything else!\n\nLet's go!\n\n\n \N 1802 \N 435291 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 8.77098674898008 0 \N \N f 0 \N 0 23440658 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 08:50:54.674 f \N \N \N 0 0 0 0 0 0 0 434379 2025-03-11 20:55:05.327 2025-03-29 22:39:48.165 Legend of the Snail | 19/20 participants left | 43 days until next KO | $61,133 ```\n+================================x\n| Welcome to day 319 of the |\n| _ _ _ _ |\n| | |__ (_) |_ ___ ___ (_)_ __ |\n| | '_ \\| | __/ __/ _ \\| | '_ \\ |\n| | |_) | | || (_| (_) | | | | | |\n| |_.__/|_|\\__\\___\\___/|_|_| |_| |\n| |\n| 100k bet! |\nx================================+\n```\n\nDate: [2024-02-28](https://stacker.news/items/441719)\n\nNumber of participants: 20\n\nPrize Pool: `137,269 sats`\n\nPrize Pool change since [last elimination update](https://stacker.news/items/421121): `+875 sats` _(zap this post to donate to the pool)_\n\nCurrent prize per bitcoin: $61,133.00\n\n![2024-02-28-163351_776x617_scrot.png](https://m.stacker.news/17937)\n\n[_source_](https://www.kraken.com/prices/bitcoin)\n\n**We will reach $100k if the price increases for X more days by Y% on average per day:**\n\n| Average price increase per day | Days left | Date | Winner |\n| --- | --- | --- | --- | \n| +0.25% | 195 | 2024-09-10 | @Lux |\n| +0.5% | 98 | 2024-06-05 | @CheezeGrater |\n| +0.75% | 65 | 2024-05-03 | @Alby |\n| +1% | 49 | 2024-04-17 | @Alby |\n| +2.5% | 19 | 2024-03-18 | @mango |\n| +5% | 10 | 2024-03-09 | @mango |\n\n_source: solved this equation with different y for x_\n\n```\n61,333 * (y/100)^x = 100,000 <=> x = log(100,000/61,333)/log(y/100)\n```\n\n| Nym | Day | Paid | Elimination Date | Eliminated |\n| --- | --- | ---- | ---------------- | ---------- |\n| @orthwyrm | 260 | X | 2024-02-18 | X |\n| @mango | 359 | X | 2024-04-11 | |\n| @Alby | 365 | X | 2024-04-21 | |\n| @siggy47 | 380 | X | 2024-05-18 | |\n| @CheezeGrater | 418 | X | 2024-06-07 | |\n| @ekzyis | 420 | X | 2024-06-11 | |\n| @0fje0 | 427 | X | 2024-06-21 | |\n| @phatom | 440 | | 2024-07-21 | |\n| @486DX2 | 486 | X | 2024-08-20 | |\n| @carlosfandango | 501 | X | 2024-09-07 | |\n| @Lux | 522 | X | 2024-10-09 | |\n| @davidw | 564 | X | 2024-11-02 | |\n| @nikotsla | 570 | X | 2024-11-12 | |\n| @BitcoinIsTheFuture | 584 | X | 2024-12-01 | |\n| @south_korea_ln | 608 | X | 2025-01-04 | |\n| @Undisciplined | 653 | X | 2025-01-28 | |\n| @grayruby | 655 | X | 2025-02-03 | |\n| @gnilma | 666 | X | 2025-02-26 | |\n| @Longtermwizard | 700 | X | 2025-05-09 | |\n| @Bitman | 810 | X | | |\n\nNext elimination: @mango (43 days remaining)\n\n_Want to participate? Click [here](https://stacker.news/items/363233) for more information._\n\n---\n\n[^1]: Basis points (bps) are a common unit of measure for interest rates and other percentages in finance. One basis point is equal to 1/100th of 1%, or 0.01%. \N 21314 \N 434379 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 29.6514569209214 0 \N \N f 0 \N 0 84147521 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:58.21 f \N \N \N 0 0 0 0 0 0 0 434289 2025-03-11 18:58:36.707 2025-03-29 22:39:48.165 Scary, government adoption of Bitcoin 👻 So in the spirit of All Saints' Eve, let's go down the thought experiment of what would happen if the US Government decided to roll out Gold Standard vNext. During the days of the Gold Standard the dollar had a fixed peg to Gold. From 1834 until 1933 that peg was fixed at $20.67 per troy ounce. When FDR issues the infamous EO 6102, he added insult to injury by increasing the value of gold and decreasing the value of the Dollar by setting the peg to $35. I can only imagine this was to increase the value of the gold in government coffers and aid in the money creation for the various government programs he planned to address the Great Depression. This is all just for historical context.\n\nWhat might this look like today? A quick back of the napkin calculation can be found [here](https://lonestarr.xyz/dollarbitcoinstandard.jpg).\n\nThis takes in account:\n* Current M2 money supply. This excludes M3, but is the best number available for total USD supply (20.7 trillion)\n* Current Bitcoin supply held by US Government Agencies, best guess with Google (210,000)\n* A buffer factor of Bitcoin used by issuing agency, Fed, to allow for new money creation. Set to .5 meaning they would only allocate half their supply.\n\n**Exchange Rate**\nThe calculations indicate an approximate exchange rate of .51 sats per USD if buffered or 1.01 sats per USD if they used the entire allocation.\n\n**Potential Consequences**\n* With a fixed exchange rate this could limit the price expansion of Bitcoin, eventually\n* The government would have incentive to rollout a "Hash Force" to both protect the network as well as build their Bitcoin supply.\n* The CHIPS Act does not specifically mention ASICS, but it doesn't exclude it.\n* This could compound issues in the Government Bond markets. If people turn in their USD for Bitcoin, this would provide the Fed with USD to purchase the Bonds, supplementing money printing.\n\nThis is all very hypothetical, but fun to think about... \N 1647 \N 434289 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4607456400524 0 \N \N f 0 \N 0 813433 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:09.178 f \N \N \N 0 0 0 0 0 0 0 435473 2025-03-12 17:54:52.465 2025-03-29 22:39:51.703 \N I'm attempting to become more out of touch with those demos https://example.com/ 18529 435360 433844.434177.434538.435360.435473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0108667592026 0 \N \N f 0 \N 0 51531640 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 2025-03-19 11:46:18.382 f \N \N \N 0 0 0 0 0 0 0 434353 2025-03-11 20:10:16.444 2025-03-29 22:39:51.705 \N I think Texas is earning some brownie points right now at the border.\n\nLots of interior states within the republic did decent during the false pandemic \n\nBukele and Milei are worth watching, too. https://example.com/ 8448 433950 433435.433950.434353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.52224847682438 0 \N \N f 0 \N 0 191052910 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 2025-03-19 07:12:16.772 f \N \N \N 0 0 0 0 0 0 0 448729 2025-03-22 20:23:41.347 2025-03-29 22:39:48.165 SN release: mathjax, boost hints, wallet log improvements, bio cache, bug fixes - [MathJax](https://www.mathjax.org/) rendering in text areas (requested by @south_korea_ln)\n$$\nL = \\frac{1}{2} \\rho v^2 S C_L\n$$\n- Boost hints tell you how much it costs to pin in territories/home page and a one click shortcut to do it\n- Subtle improvements to non-custodial "actions"\n- Fixes to bio creation not being cached (via @toyota_corolla0)\n- Fixes to bio not working when freebies are turned off\n- Wallet logs no longer get displayed all at once\n - When we shipped wallet logs we expected to follow up and do this shortly after but forgot\n\nOh and some time last week we added image carousels, ie if you click on an image in thread/post with multiple images, you can click/arrow/swipe to see the other images.\n\n--------------\n\nView all commits here: https://github.com/stackernews/stacker.news/commits/master/\n\n-----------------\n\nSince starting the Open Source Contributor Award Rules (OSCARs), we've paid a total of 13m sats to 30 contributors for 135 contributions! View an up to date list of contribution awards here: https://github.com/stackernews/stacker.news/blob/master/awards.csv\n\n-----------------\n\nPrevious release: https://stacker.news/items/692150\n\n----------------\n\n[We are hiring.](https://stacker.news/items/141924) \N 9655 \N 448729 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 11.402874050608 0 \N \N f 0 \N 0 197784760 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:18:52.356 f \N \N \N 0 0 0 0 0 0 0 443517 2025-03-19 11:53:05.729 2025-03-29 22:39:51.706 \N What kind of thermostat do you have?\nOne with a needle? https://example.com/ 9365 443295 443295.443517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0588262563706 0 \N \N f 0 \N 0 68173309 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:11.476 f \N \N \N 0 0 0 0 0 0 0 434838 2025-03-12 09:15:43.58 2025-03-29 22:39:51.706 \N @kr pretty much nailed it, we're trying to grow our following :)\n\ndisclaimer: i'm the ceo of bolt.observer https://example.com/ 20554 434810 434810.434838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3359451322261 0 \N \N f 0 \N 0 203873460 0 f f \N \N \N \N 434810 \N 0 0 \N \N f \N 2025-03-19 04:16:56.792 f \N \N \N 0 0 0 0 0 0 0 435824 2025-03-13 02:01:34.686 2025-03-29 22:39:51.707 \N Building an app wallet non custodial and javascript library support DLCs, LN and Nostr https://example.com/ 2593 435667 435667.435824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8310715316028 0 \N \N f 0 \N 0 137655750 0 f f \N \N \N \N 435667 \N 0 0 \N \N f \N 2025-03-19 23:53:36.89 f \N \N \N 0 0 0 0 0 0 0 447245 2025-03-21 18:09:21.693 2025-03-29 22:39:51.707 \N Learning how to batch onchain transactions to make them cheaper. https://example.com/ 20495 447208 446965.447094.447107.447208.447245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.51369657510554 0 \N \N f 0 \N 0 56484992 0 f f \N \N \N \N 446965 \N 0 0 \N \N f \N 2025-03-28 11:26:44.276 f \N \N \N 0 0 0 0 0 0 0 434231 2025-03-11 17:21:58.484 2025-03-29 22:39:51.707 \N Many friends and family asking you for money because they didn't buy any Bitcoin. https://example.com/ 21063 434026 433844.434026.434231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.51249663836726 0 \N \N f 0 \N 0 135132973 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 2025-03-18 19:26:18.682 f \N \N \N 0 0 0 0 0 0 0 434085 2025-03-11 15:41:32.154 2025-03-29 22:39:51.707 \N This is a gross over exaggeration. 9 times out of 10 there's some minor reason or mistake for it. Other 1 time it is something easily fixable.\n\nBut to categorize this as open source is being attacked is rediculous. There's actual real threats to be concerned about. Yet another boy who cries wolf moment. https://example.com/ 9334 433851 433828.433851.434085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.2742062156196 0 \N \N f 0 \N 0 60769968 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-18 16:19:51.508 f \N \N \N 0 0 0 0 0 0 0 448830 2025-03-22 22:41:06.048 2025-03-29 22:39:51.707 \N I suggest you seek help on the umbrel telegram channel. Just a shot in the dark, but log in ssh using the umbrel's ip address rather than trying umbrel@umbrel log in. https://example.com/ 14122 448820 448820.448830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5200479315405 0 \N \N f 0 \N 0 133563905 0 f f \N \N \N \N 448820 \N 0 0 \N \N f \N 2025-03-29 17:02:08.208 f \N \N \N 0 0 0 0 0 0 0 434846 2025-03-12 09:26:19.241 2025-03-29 22:39:48.166 Just Don't Vote in U.S Elections Having some pain in my heart about the U.S. elections. \n\n![](https://m.stacker.news/34573)\n\nEver since Obama campaigned for office, an increase of more young voters have come out of the woodwork. Things have not improved. They've actively told you that "**your vote matters.**" I believe this to be a lie unless any citizen can demand at the gate, at the White House to be allowed to hold and point a gun to the president's head. (Relax, this is a hyperbole)\n\nWhy so dramatic?\nWell, what does the president do? Sign bills, commands the military, nominates new Fed chairman, ambassadors, judges and senior officials all while traveling in luxury planes and living in a white palace for four years. \n\nThey promise **Every TIME** to protect citizen rights when they take the oath and office. \n\n*...They've broken this several times, in so-called "emergency-crisis"*\n\n![](https://m.stacker.news/34576)\nThe purpose of a president, today, is to basically hire armed thugs to keep the citizens in check and make sure you "voluntarily continue to be a slave," to the system, hence the IRS. The corruption extends from the cop to the judge and even to politicians. The politicians get paid from lobbyists to create bills in congress for the president to sign. There's no right answer when money is involved with politicians. It is the same if you vote Obama, Biden, Trump, or Haley. They will wield the pen to give power to themselves to so-called benefit to the country. \n\nIn the first 100 years of presidency, the government wasn't even a big deal. They didn't even interfere with your life as much as they do today. \n\n![](https://m.stacker.news/34575)\n^^ You hold the **power** in your hands, don't let them take it. \n\nJust Don't Vote. \nEnd the Fed. \nOpt out. \n\n![](https://m.stacker.news/34574)\nThere's no such thing as a good president or politicians.\n\nIf there was, they would have issued *non-interest* **Federal Reserve Notes.** Lincoln and Kennedy tried to do this, they got shot. \n\nThere's still a banner of America there, but it's so far gone that I cannot even recognize it. However, I do see a bunch of 🏳‍🌈gay pride flags.\n\n✨Paul Revere got it wrong, when he said to the British, "Give me liberty or give me death." Liberty and freedom are two completely different things. \n\nI can understand many will disagree with me, and you might be thinking, "**This time will be different.**" I, respectfully, disagree, and the proxy wars are proof. Learn the importance of Bitcoin, every **Satoshi** takes money away from the Fed. \n\n \N 21424 \N 434846 \N \N \N \N \N \N \N \N news \N ACTIVE \N 6.32328730954782 0 \N \N f 0 \N 0 165281527 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 05:22:11.03 f \N \N \N 0 0 0 0 0 0 0 434504 2025-03-12 01:01:55.251 2025-03-29 22:39:48.166 RoboSats admin banned from Telegram -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA512\n\nHey everyone, \n \nreckless_satoshi_v2 here! \n \nYou probably know by now Telegram banned my previous account. I was not given a reason. Also no replies to the inquires after 2 weeks. Most likely they automatically unbanned it, yet they locked me out of it (... was created with sms4sats). \n \nThere won't be a reckless_satoshi_v3. This is the last time I create a Telegram account. We are moving all communications to Simplex and Matrix. General chat moves to SimpleX (see pinned message) and Nostr ( note1tfwvglg8xz8420pfgav0dc9mqekv02nkpck2axefklrema7lk6wszmwxdy ). The development group is the existing one in matrix (#robosats:matrix.org). Should we create another general chat in Matrix? \n \nSo, you can consider this telegram group deprecated. The account that owns this group is dead, so it will not be possible to manage it effectively. Of course, we can still use it until the other groups grow. But my responses might often be "ask again over SimpleX". \n \nI would also encourage you to fully drop Telegram in favor of SimpleX, Matrix or Nostr. After the experience of getting my account "confiscated", my trust on TG operation is null (...and we already knew TG privacy is crap). \n \nLet's go robots! \n \nCheers! \n \nPD: You can verify this message is signed with the same key I sign the Android Releases (find the key on the robosats releases page). \n-----BEGIN PGP SIGNATURE-----\n\niQHQBAEBCgA6MxxSZWNrbGVzc19TYXRvc2hpIDxyZWNrbGVzcy5zYXRvc2hpQHBy\nb3Rvbm1haWwuY29tPgUCZIXw/QAKCRCcRYW1YTFVccElC/sHPFB44zEcrlZtGTjA\nBTWhC0xUL0rAyVqxEA99MwSueD7dSpkBPx8Fs0qbve7mvn4QqHXs3eu5VGOK8a5P\n8P0Q7H9gf9PzNzhk/Fuqmh/NKDn9SoI2TCmY6H9QjXHTUbhvdBrXx4c9Z+9AJTDU\nq5oLsnwi82dy41CEr1nBq/PWL8b8Q7o7BJ5BUVYCemKJrWr/VvvS2iGIl/7ye/bw\nNIQasrSsjunlVFtVIX+5QLhHS1/LzK+yqhQsDbGjevGi5kv7Xki3k6SXuJYB1spS\nxiEl+1l+EiEA+c/fd9LdT/ALIrtQft+fGLrBc1M6dQXi63fxz1GysJ5tifbnLYXE\nbfdzWRXK9h6pkoB1eiISXCPp1ecE+nPBqKIZVBLBJY6QLHqxDMGWLLk5wFRoFNPu\nCIAXlvpgrSmiCUSwkknDKX4N8GRIG0h1mwrkNVyO4mS2fxO/xTD4W80dgV1KBBpA\n/XO2+cZyV1vy0gGq1va/r/M/h6ck+w5iaJs8lRJZGBfyEK4=\n=peoD\n-----END PGP SIGNATURE-----\n\n-- https://t.me/robosats/24979 \N 746 \N 434504 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.9992210818197 0 \N \N f 0 \N 0 74372174 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:47.147 f \N \N \N 0 0 0 0 0 0 0 434854 2025-03-12 09:39:26.907 2025-03-29 22:39:48.166 What's Inside a Bitcoin Full Node? # Bitcoin Full Node: Key Concepts\n\nLet's explore the main components and connections of a bitcoin full node\n\n---\n\n## 1. Full Node Basics\n\nA **Full Node** downloads and verifies all blocks and transactions on the Bitcoin network\n![](https://m.stacker.news/62382)\n\n---\n\n## 2. Inbound/Outbound Connections\n\n- **Inbound Connections**: \n -- Initiated by external nodes connecting to your node. \n -- Accepts up to **117 connections** from other nodes requesting data.\n \n- **Outbound Connections**: \n -- Initiated by your node connecting to external nodes. \n -- Establishes **8 outbound connections** for data synchronization.\n\n![](https://m.stacker.news/62383)\n\n---\n\n## 3. Core Components\n\n- **Chain State**: Tracks UTXOs (Unspent Transaction Outputs).\n- **Blocks DB**: Stores all block data.\n- **Mempool**: Temporary storage for unconfirmed transactions.\n\n![](https://m.stacker.news/62384)\n\n---\n\n## 4. Communication Protocols\n\n- **RPC**: Allows local applications to interact with the node.\n- **HTTP & GUI**: Provides user interfaces for interaction.\n- **ZMQ**: Asynchronous messaging for transaction/block notifications.\n\n![](https://m.stacker.news/62385)\n\n---\n\n## 5. Banlist & Whitelist\n\n- **Banlist**: Blocks nodes with suspicious behavior.\n- **Whitelist**: Grants special permissions to trusted nodes.\n\n![](https://m.stacker.news/62388)\n\n\n---\n\n## Upcoming Posts\n\n- **MuSig**\n- **MuSig2**\n \N 19117 \N 434854 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 8.11122009926152 0 \N \N f 0 \N 0 20986023 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:52:16.61 f \N \N \N 0 0 0 0 0 0 0 435439 2025-03-12 17:18:31.848 2025-03-29 22:39:51.703 \N Check out https://futurebit.io or consider running some old S9s at reduced voltage via braiinsOS. \n\nThe second option isn’t as plug and play (nor is it usb) but it’s very expandable and easier to do than most people think. https://example.com/ 4079 435410 435261.435410.435439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7559094642471 0 \N \N f 0 \N 0 49507939 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:23.494 f \N \N \N 0 0 0 0 0 0 0 435394 2025-03-12 16:42:25.065 2025-03-29 22:39:51.707 \N ![drake hotline bling meme send sats](https://i.imgflip.com/6vn5pe.jpg) https://example.com/ 17455 434685 434685.435394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0126397746624 0 \N \N f 0 \N 0 47031536 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N 2025-03-19 10:01:34.018 f \N \N \N 0 0 0 0 0 0 0 435372 2025-03-12 16:25:51.839 2025-03-29 22:39:51.708 \N This is true, but I still use the LN daily. Living in NY forces you to only use self custody applications, and you get adept using tor, vpns, downloading APKs, etc. https://example.com/ 18231 435145 435046.435127.435145.435372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4180358149528 0 \N \N f 0 \N 0 157506378 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 09:43:35.888 f \N \N \N 0 0 0 0 0 0 0 385935 2025-01-30 14:36:46.07 2025-03-29 22:39:48.166 I'm Daniel Berezovsky, co-founder of sMiles. AMA ⚡ Hey awesome Stacker News community 👋 \n\nI'm Daniel Berezovsky, co-founder of sMiles. AMA ⚡\n\nHappy to chat about sMiles and answer any questions you might have. Some of you may have already heard about how sMiles gives users a zero entry barrier to stack sats, but here's a quick intro:\n\n⚡ The sMiles app let's you earn sats - fractions of Bitcoin - for walking, shopping, playing games, and completing surveys - on iPhone and Android!\n⚡ We're building the simplest way to get you into Bitcoin and the Lightning network (literally just walk with sMiles and discover more ways to earn sats)\n⚡ It's fun to earn daily sats rewards for things you already do\n⚡ You can share your rewards with other sMiles friends\n\nLet's stay healthy and stack sats!\n\nDownload: https://www.smilesbitcoin.com/\n \N 3745 \N 385935 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 3.07613974319889 0 \N \N f 0 \N 0 208214 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:11:16.645 f \N \N \N 0 0 0 0 0 0 0 447128 2025-03-21 16:24:46.058 2025-03-29 22:39:51.703 \N > I must also mention that I’m a person who has trouble living in the moment. My brain is constantly thinking about and preparing for future events. I have flirted with eastern philosophies in an attempt to live in the moment, with limited success.\n\nMe thinking about the eastern philosophies classes i used to take for this same reason o.0 xD\n\nGreat post Siggy. That Pink Floyd line hits hard.\n\nHow i see it, at the end of the day, Bitcoin only enriches your life if you use it to do so. Holding it for the next generation is noble, but so is enjoying the life you've earned! Spend some coin on her! We wont tar & feather here\n https://example.com/ 8870 447059 445518.445696.445701.445709.447001.447050.447059.447128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6319532925165 0 \N \N f 0 \N 0 140292868 0 f f \N \N \N \N 445518 \N 0 0 \N \N f \N 2025-03-28 09:44:10.86 f \N \N \N 0 0 0 0 0 0 0 434730 2025-03-12 07:39:55.684 2025-03-29 22:39:51.703 \N What is the best solution for Bitcoin inheritance? Are you planning anything in that direction - maybe protocol level? https://example.com/ 2963 434319 434319.434730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.22078066168493 0 \N \N f 0 \N 0 50977437 0 f f \N \N \N \N 434319 \N 0 0 \N \N f \N 2025-03-19 02:41:43.834 f \N \N \N 0 0 0 0 0 0 0 435820 2025-03-13 01:55:48.448 2025-03-29 22:39:51.703 \N 1. No I do not agree with. Is quite vague and generalize.\n2. Sincerely, in Bitcoin is quite hard to size the consensus. I lived the blocksize war and the whole debate and shit... it was a mess, that also could end up badly.\n3. This is linked to the previous point, the "size of the group". In the end is all about how UASF works.\n\nIn regards of self-custody... each one will have to discover it by themselves. In the end, will be like shitcoiners, leaving the shit-boat, because slowly they see that Bitcoin is better. And I always have a meme for those:\n[![darth-make-them-pay.png](https://i.postimg.cc/yNmVT4xg/darth-make-them-pay.png)](https://postimg.cc/t1gQXchp)\n\nBitcoin is not for the weak... only for the brave. https://example.com/ 15510 435805 435805.435820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.60123392539116 0 \N \N f 0 \N 0 136489601 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N 2025-03-20 10:42:02.526 f \N \N \N 0 0 0 0 0 0 0 410985 2025-02-20 21:19:23.333 2025-03-29 22:39:51.703 \N https://i.ibb.co/0qWL8PQ/IMG-1160.jpg https://example.com/ 6717 409954 403893.404369.409954.410985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.4874282744048 0 \N \N f 0 \N 0 112884279 0 f f \N \N \N \N 403893 \N 0 0 \N \N f \N 2025-03-29 15:04:14.351 f \N \N \N 0 0 0 0 0 0 0 434882 2025-03-12 10:07:16.454 2025-03-29 22:39:48.166 This will be my 1st 100k sats post on SN Bold words, Sensei. Do you have the big idea to match?\n\nI believe I do.\n\nThe genesis for my idea was planted when I wanted to sell my book called Happy the Hippo. @siggy47 promoted it on his ~BooksandArticles newsletter, @AG promoted it on Nostr & @Design_r volunteered to give me design tips.\n\nImagine.\n\nWe have so much talent here. If we pool our strengths together and embark on a cross-collaboration, we will generate waves in the BTC space.\n\nBut what product?\n\nI suggest creating a book of testimonials tentatively titled Creating Content & Stacking Sats on Stacker News. Just use the search button; we already have plenty of testimonials.\n\nSome examples:\n1. My first year on Stacker News by siggy47 (https://stacker.news/items/182682)\n\n2. Reddit is dead…Long live Stacker News by @benwehrman (https://stacker.news/items/313773)\n\n3. I stacked 40 thousand sats on Stacker News more than my entire life on Twitter by @piecover (https://stacker.news/items/342757)\n\nWe can just use these testimonials. @gnilma and @carlosfandango enlightened me recently that once something is published on the Internet, it should be considered as free-for-all information. Of course, we can do the proper thing and ask the Stackers who have written these testimonials for permission to publish them.\n\nWhy testimonials?\nBecause we are wired to remember stories. Stories that create emotional resonance will be more effective calls to action than paid Fountain ads. Especially if we publish these testimonials without heavy editing - they will be truly authentic.\n\nWe can invite 15-30 Stackers to publish their testimonials in a book. These testimonials should be of varied lengths and formats to make reading them Exciting. Other Stackers can contribute by coming up with the cover page and illustrations. Once the book is finalised, all Stackers can promote it using their referral link.\n\nWe want to create something substantially V4V so that the big companies will take note. When we invest proof of work to come up with something jaw-dropping, we will end up with high impact. Perhaps these big firms will want to advertise with us. Perhaps influential names in the BTC space will want to organise AMAs here. Maybe Michael Saylor will set up his personal blog here.\n\nIt sounds like a massive labour of love. But we don’t have to take on such a huge undertaking at once. We can test the market by coming up with a preview comprising 3 testimonials. Use it to generate hype and ascertain interest. Tweak this idea based on audience reactions. Fast iterations help keep the dream alive as we are breaking down a Herculean task into actionable steps.\n\nMy two sats’ worth \N 4027 \N 434882 \N \N \N \N \N \N \N \N history \N ACTIVE \N 15.213767329732 0 \N \N f 0 \N 0 123206660 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:31:09.862 f \N \N \N 0 0 0 0 0 0 0 448621 2025-03-22 18:29:56.109 2025-03-29 22:39:51.704 \N Hi! ACINQ dev here.\n\n> Their German is also not the best\n\nEntschuldigung! Doing our best with mostly automated translation\n\n\n> Clicking on "Payment options" reveals a legacy LNURL authentication scheme. Interesting. Don't know anything about the details though. What is the difference to the standard scheme?\n\nIt's for backward compat. Our legacy app had a non-standard implementation of LNURL-auth. Migrated wallets will default to the legacy mode.\n\n\n> There is a swap-in wallet using descriptors and a final wallet using zpub now! I think this wasn't shown to the user before.\n\nYes, the swap-in wallet is new and derives from the seed (in the previous version it was controlled by ACINQ). The final wallet was there before.\n\n\n> There seems to be a minor bug regarding fiat currency however. I only see "?!\n\nIf it persists after restarting the app, please report to support.\n\n\n> So I still have to see splicing in effect. I'll report back when that was the case.\n\nOne way to try is to send funds to your own phoenix bitcoin address, and bump the fee of the on-chain transaction.\n\nThis way you will do:\n1) a splice-out (1 input, 2 outputs)\n2) then a splice-cpfp (1 input, 1 output)\n3) then finally a splice-in (2 inputs, 1 output)\nand go back to the initial state. You can follow all that on mempool.space and learn quite a bit. It will cost you a few thousand sat in mining fees.\n\n https://example.com/ 21506 447944 447944.448621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7363776626073 0 \N \N f 0 \N 0 135557854 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N 2025-03-29 15:59:00.967 f \N \N \N 0 0 0 0 0 0 0 447263 2025-03-21 18:27:36.931 2025-03-29 22:39:51.704 \N We were thinking of making like a back room to the saloon. Maybe even some kind of a game. The cowboy hat could be entry https://example.com/ 10112 447148 447148.447263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.97458006528496 0 \N \N f 0 \N 0 188198989 0 f f \N \N \N \N 447148 \N 0 0 \N \N f \N 2025-03-28 12:12:52.91 f \N \N \N 0 0 0 0 0 0 0 436434 2025-03-13 14:59:06.033 2025-03-29 22:39:51.705 \N During the Victorian era of the 1800s, Napoleon’s conquest of Egypt threw open the Gates of Egypt’s history for the Europeans. At that time, mummies were not accorded the respect that they deserved from the European elites and in fact, mummies could be purchased from street vendors (as shown in the picture) to be used as the main event for parties and social gatherings that took place in the 18th century.\nThe elites of the era would often hold “Mummy Unwrapping Parties”, which, as the name suggests, had the main theme in which a Mummy would be unwrapped in front of a boisterous audience, cheering and applauding at the same time. Source: @national_archaeology\n\n![IMG_3201.jpeg](https://m.stacker.news/13862) https://example.com/ 16356 434197 434197.436434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8880772733892 0 \N \N f 0 \N 0 28159396 0 f f \N \N \N \N 434197 \N 0 0 \N \N f \N 2025-03-20 11:23:57.5 f \N \N \N 0 0 0 0 0 0 0 435675 2025-03-12 21:43:35.42 2025-03-29 22:39:48.158 I just orange pilled my wife It feels so good. After so many cul de sac conversations, she finally gave in and bought herself some bitcoin. \n\nMy biggest finding:\n\n- many people have a problem understanding the idea of the bitcoin blockchain - some virutal world, which does who knows what, etc.. I knew this was a problem, but did not know how to solve it, until now. I showed her a visual view into a mempool and explained to her about the pending and confirmed transactions, blocks, miners etc. I think, since she saw a visual representation of the blockchain, that lit up a light bulb. She could suddenly associate something real with something that was just talked about and virtual. I think this was the final thing she needed to wrap her mind around it. Seeing the transactions, blocks, chain live was priceless. \n\nOf course, she needs more education, but the biggest step is done. The rest is just a walk in the park.\n\nHope this helps someone to orange pill another lost soul.\n \N 17797 \N 435675 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 15.8966716834064 0 \N \N f 0 \N 0 143224302 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:17:37.315 f \N \N \N 0 0 0 0 0 0 0 443514 2025-03-19 11:50:44.305 2025-03-29 22:39:51.704 \N One suggestion that might work for you:\n\nOpen Aqua wallet, receive via Liquid and tap the "direct peg in" option. It will serve you up a regular bitcoin address and as soon as the on chain funds confirm it will convert to liquid in your wallet. If you're not a fan of the federated model of liquid, simply send out of Aqua to any lightning wallet you please, and it will create a boltz swap to lightning automatically. https://example.com/ 17064 443272 443272.443514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4299984447374 0 \N \N f 0 \N 0 54280792 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 2025-03-26 05:40:11.168 f \N \N \N 0 0 0 0 0 0 0 443553 2025-03-19 12:15:12.081 2025-03-29 22:39:51.704 \N I mean I wouldn't activate drivechain either but later in this thread:\n\nhttps://nostr.band/note1r0vke3qpsrugxmjy6v9wm7ynu3sk0akzd674s0k7vecp8mulncxqnd54l7 \n\nMan is nuts. https://example.com/ 11648 443272 443272.443553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2140174642908 0 \N \N f 0 \N 0 138777868 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 2025-03-26 05:41:31.626 f \N \N \N 0 0 0 0 0 0 0 435626 2025-03-12 20:36:39.804 2025-03-29 22:39:51.704 \N Day 335 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 7097 434318 434278.434318.435626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.554872109357 0 \N \N f 0 \N 0 138833649 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 14:03:27.237 f \N \N \N 0 0 0 0 0 0 0 435081 2025-03-12 12:51:26.652 2025-03-29 22:39:51.704 \N I saw the soul of my generation destroyed by inflation,\nbitter angry forgotten,\nbroken shuffling through malls at dusk looking for the minimum of a wage,\nsilent outcasts desperate for the better tomorrow promised and enjoyed by their parents,\npoor, broken, gaunt and sugar high;\ncoding in the darkness of black mold basements\nilluminated only by laptop screens,\n\n(Apologies to AG but i wanted to start as close to his style as possible.) https://example.com/ 18930 435053 435053.435081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38080892138003 0 \N \N f 0 \N 0 44448880 0 f f \N \N \N \N 435053 \N 0 0 \N \N f \N 2025-03-19 06:10:13.179 f \N \N \N 0 0 0 0 0 0 0 435318 2025-03-12 15:38:13.3 2025-03-29 22:39:51.704 \N [![better-believe-it-roberto.jpg](https://imgprxy.stacker.news/VACNb-K018PsP_Ng1aVctm7kvuiANuZovy0ad3Y5_Mo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvOGtCUkN0dnYvYmV0dGVyLWJlbGlldmUtaXQtcm9iZXJ0by5qcGc)](https://postimg.cc/0rjMWGc5)\n\nSincerely... I really hope that paypal did such stupid thing\n[![you-get-what-you-deserve.gif](https://imgprxy.stacker.news/l_iqxLjuH9wXVwmy8DVAOQGa1l0nmbZbq6IReAODZK4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvemZnMVpzc0YveW91LWdldC13aGF0LXlvdS1kZXNlcnZlLmdpZg)](https://postimg.cc/v1bK5NH4) https://example.com/ 5003 435308 434795.435274.435308.435318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.5890269305787 0 \N \N f 0 \N 0 200562165 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 09:05:46.757 f \N \N \N 0 0 0 0 0 0 0 436702 2025-03-13 19:57:35.2 2025-03-29 22:39:51.705 \N My wife and I are basically trying to answer this question right now. I can mostly do my job remotely, so the world is our oyster. We've more or less narrowed it down to lake and mountain towns in the American Midwest or South.\n\n**Why there?**\n* Low cost of living\n* Low taxes\n* Relatively free economies\n* Improving (from our perspective obviously) social and cultural attitudes\n* Limited exposure to deranged leftists\n* Natural beauty\n* Allowed to hobby farm in residential neighborhoods\n* Lots of stuff for kids to do\n* Good affordable private schools\n* Easy to have enough yard for a dog\n* Driving distance to the beach\n* Inconvenient for unwanted family to visit https://example.com/ 6430 436688 436549.436658.436661.436674.436688.436702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4308920543789 0 \N \N f 0 \N 0 214685011 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 2025-03-20 14:48:38.675 f \N \N \N 0 0 0 0 0 0 0 436589 2025-03-13 17:25:47.904 2025-03-29 22:39:51.705 \N Key takeaways:\n* Reflex is a customizable payment operations suite for Lightning businesses.\n\n* Business operators can choose how to construct their payment policies to align with their business policies, which can include approved vendor lists or regulatory information such as OFAC lists or Ransomware checks.\n\n* Compliance is a significant hurdle for Lightning businesses based on lightning ecosystem and customer interviews, preventing launches and causing business to become de-banked.\n\n* Sign ups for the Reflex beta are live at https://rpo.dev\n\n https://example.com/ 6148 436129 435908.436129.436589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8305865680142 0 \N \N f 0 \N 0 93571683 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 2025-03-20 10:59:47.508 f \N \N \N 0 0 0 0 0 0 0 434583 2025-03-12 03:32:14.818 2025-03-29 22:39:48.158 Tari Labs wins restraining order against Lightning Labs over Taro protocol \N https://www.theblock.co/post/219992/blockchain-startup-tari-labs-wins-restraining-order-against-lightning-labs-over-taro-protocol 17237 \N 434583 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 0.816862801302527 0 \N \N f 0 \N 0 68455668 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:41:13.401 f \N \N \N 0 0 0 0 0 0 0 436406 2025-03-13 14:34:40.014 2025-03-29 22:39:48.158 What are some Bitcoin-projects-, blogs or ressources that fly under the radar? For me, I've only recently started actively using SN, although I've had a quick look at it before, it took the praises of someone else to really push me over the edge. I surprisingly enjoy tipping sats more than I'd thought, and find it to be a clever integration of community-based quality management and rewards. Now, to the question;\n\nWhat other projects, blogs or ressources in general are flying under most people's radar? What's worth a look? \N 20906 \N 436406 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.6933969718523 0 \N \N f 0 \N 0 38287829 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:07:30.949 f \N \N \N 0 0 0 0 0 0 0 448158 2025-03-22 12:49:00.067 2025-03-29 22:39:51.704 \N Code is protected by the [1st amendment](https://en.wikipedia.org/wiki/Bernstein_v._United_States) like any other form of expression. But in this case, the code is irrelevant. It's undoubtedly about KYC/AML.\n\nThis case will have consequences on other privacy projects. Consider this scenario:\n\n>The defendants and their co-conspirators created the core features of Monero, promoted Monero, and made unknown profits from selling XMR. They advertised to users that Monero provided untraceable and anonymous financial transactions, and the developers chose not to implement Know Your Customer or Anti-Money Laundering programs as required by law.\n\nYes, the above is a stretch, and that's the problem. It would only be a stretch to apply similar charges to people working on other privacy-related cryptocurrency projects.\n\nMoreover, simply arresting developers does severe damage. For instance, the police would keep whatever computers they steal in the process of arresting developers. https://example.com/ 11527 448121 447892.448121.448158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.88646185263335 0 \N \N f 0 \N 0 118631739 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 09:09:33.527 f \N \N \N 0 0 0 0 0 0 0 436145 2025-03-13 10:53:07.144 2025-03-29 22:39:51.704 \N AlwaysHasBeen.png https://example.com/ 20603 436028 436028.436145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3939932011028 0 \N \N f 0 \N 0 197979293 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 08:07:11.295 f \N \N \N 0 0 0 0 0 0 0 436626 2025-03-13 18:15:27.056 2025-03-29 22:39:51.706 \N I'm impressed by your fairly reasonable take, when I saw that you replied I honestly expected you to roast me or imply that I'm debating in bad faith with the examples I'm presenting.\n\nHowever, it's concerning to me that there are still devs and influencers who are trying to police the way that others use their own bitcoin. \n\nThe fact that we still refer to it as "permissionless", advocate for building a market for block space and suggest that "Bitcoin is for enemies" while we agree that some legitimate use cases that the network enables are attacks or spam is one sweet piece of irony. These people have no issue still calling themselves libertarians. https://example.com/ 19581 436566 436566.436626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.30844255869192 0 \N \N f 0 \N 0 236087135 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 2025-03-20 11:48:19.437 f \N \N \N 0 0 0 0 0 0 0 435534 2025-03-12 19:03:02.285 2025-03-29 22:39:51.706 \N RSS is more alive than it ever was\n\nThe whole effing podcast industry uses RSS. All kinds of open fediverse and similar apps use RSS. https://example.com/ 20353 435217 435217.435534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9935851627955 0 \N \N f 0 \N 0 160374279 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 12:22:58.376 f \N \N \N 0 0 0 0 0 0 0 434624 2025-03-12 04:39:30.599 2025-03-29 22:39:51.706 \N I think it will happen naturally as sooner or later quality things only be purchasable with bitcoin\n\nbut good call to action overall, there are many cool products and things in bitcoin that are gravely underfunded https://example.com/ 5961 434611 434488.434560.434611.434624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.325208059843 0 \N \N f 0 \N 0 141470675 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 2025-03-19 03:47:04.212 f \N \N \N 0 0 0 0 0 0 0 435299 2025-03-12 15:24:46.834 2025-03-29 22:39:51.706 \N God damnit I need to start posting my own content to SN 😂 https://example.com/ 19189 435274 434795.435274.435299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4400570501786 0 \N \N f 0 \N 0 210426521 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 18:18:28.573 f \N \N \N 0 0 0 0 0 0 0 436729 2025-03-13 21:14:32.911 2025-03-29 22:39:48.158 Bitcoin products we need With the [Bitcoin Product & Design](https://stacker.news/items/163818/r/davidw) Summit happening today and more collaboration & sharing taking place each day, I figured I’d ask you fellow stackers…\n\n\nWhich products do you feel we are lacking most?\n\n——-\n\n**Which are the biggest customer problems that remain unsolved?**\n\n1. Bitcoin (base layer)\n2. Lightning\n3. Nostr\n\nAnswer all 3, if you can. Winner takes all 5k \N 5003 \N 436729 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.2576097840235 0 \N \N f 0 \N 0 235264112 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 14:38:04.437 f \N \N \N 0 0 0 0 0 0 0 237680 2024-09-15 14:02:35.726 2025-03-29 22:39:48.158 How to Build Your Own Wireguard VPN in Five Minutes (2022) \N https://www.freecodecamp.org/news/build-your-own-wireguard-vpn-in-five-minutes/ 21239 \N 237680 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 22.9008931532012 0 \N \N f 0 \N 0 12088277 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 01:49:13.25 f \N \N \N 0 0 0 0 0 0 0 434926 2025-03-12 10:44:10.913 2025-03-29 22:39:51.705 \N On v3 transactions the three ‘unprofessional reviewers” are free to deploy v3-enabled bitcoin infrastructure to back up their reviews with real-world demonstrations as I did invite them to do so _before_ the PR merge.\n\nTime spent reviewing and working on the PR is not a convincing argument. Let’s all remember OP_EVAL.\n\n> Within a few weeks, the same threads were set to being publicly readable, as the idea seemed worth exploring further.\n\nI’ll let you comment on the “fait accompli” as I’m pointing out in Pieter Hintjens book. Given the technical complexity of the mempool at the very contrary on my side all the discussions should be public. I did pointed out on the original cluster mempool issue (#27677) all the potential interactions with other parts of the ecosystem (miners, LN, L1 on-chain users) that I think the designers of cluster mempools are not completely mastering themselves.\n\n> I for one am pretty sure that it's not mandatory for Bitcoin Core contributors to publicly share their every crazy idea as it pops into their head. I'd even go so far that some might want to do a little more pondering before they do.\n\nIt’s not mandatory to share every crazy idea in public, yes. However with cluster mempools we’re very far from this “soundness” threshold as it’s already been presented in a restrained circle few core dev a while. Why more secrecy about this project ? https://example.com/ 15213 434925 434916.434925.434926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9933348708247 0 \N \N f 0 \N 0 85423935 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N 2025-03-19 04:05:35.604 f \N \N \N 0 0 0 0 0 0 0 436351 2025-03-13 13:47:09.18 2025-03-29 22:39:51.704 \N How long have you been a developer? What program language did you learn first.\n\nGreat product but I am so confused on what this is supposed to do? If your product is a wild success what will it mean for the space? https://example.com/ 2961 435939 434263.435740.435939.436351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0552829012567 0 \N \N f 0 \N 0 178679032 0 f f \N \N \N \N 434263 \N 0 0 \N \N f \N 2025-03-20 12:39:20.194 f \N \N \N 0 0 0 0 0 0 0 447165 2025-03-21 16:49:21.61 2025-03-29 22:39:51.704 \N Stacker News is 1000 days old. Maybe 1001 or more by the time you see this.\n\nSo what?\n\nWell, nothing much really. Just a fun fact.\n\nIn some circles, however, a 1000 days signify some kind of a milestone:\n\nIn early childhood development, the "1000 days" concept refers to the period from conception to the second birthday, which is considered a critical window for a child's nutrition and development. This concept is based on the understanding that the right nutrition during this period can have a profound impact on a child's ability to grow, learn, and thrive over a lifetime.\n\nSo maybe SN is a toddler now? https://example.com/ 19996 446662 446662.447165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7492031481933 0 \N \N f 0 \N 0 241738119 0 f f \N \N \N \N 446662 \N 0 0 \N \N f \N 2025-03-28 10:33:32.795 f \N \N \N 0 0 0 0 0 0 0 435300 2025-03-12 15:25:50.257 2025-03-29 22:39:51.704 \N It was a bug that was fixed, and for entertainment dressed up with some humor. Check the date the bip was published. ;) https://example.com/ 730 435276 435276.435300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8439606594595 0 \N \N f 0 \N 0 99990282 0 f f \N \N \N \N 435276 \N 0 0 \N \N f \N 2025-03-19 12:44:06.253 f \N \N \N 0 0 0 0 0 0 0 432838 2025-03-10 16:01:18.006 2025-03-29 22:39:51.704 \N As Bitcoin grows, it will be more present.\n\nI'm just concerned it might not be politicians licking Bitcoin asses, like people around here love to see, but rather politicians and statists might start pointing at Bitcoiners and blaming them for whatever-fucking-thing to try to crush the movement.\n\nI would love all politicians to ignore bitcoiner hard, really hard. And we just keep doing our thing. And hopefully, one day, everyone is using Bitcoin before it even became something relevant in the political sphere. And then, hopefully, it will be too late to try to crush it with propaganda, violence and other miserable tactics. https://example.com/ 20912 431241 431241.432838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0616613495045 0 \N \N f 0 \N 0 51244592 0 f f \N \N \N \N 431241 \N 0 0 \N \N f \N 2025-03-19 05:31:05.109 f \N \N \N 0 0 0 0 0 0 0 433079 2025-03-10 19:39:56.33 2025-03-29 22:39:51.705 \N - I fully agree; accepting donations does not signal support\n- There is certainly a degree of ass kissing coming from RFK\n- I do believe he understands Bitcoin, much more so than other candidates\n- I still won't be voting for him (or anyone) https://example.com/ 18232 432114 430496.430601.432114.433079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1960595461372 0 \N \N f 0 \N 0 98825313 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 2025-03-18 19:48:04.313 f \N \N \N 0 0 0 0 0 0 0 436315 2025-03-13 13:16:06.421 2025-03-29 22:39:51.705 \N launching my website https://moizen.xyz photography project https://moizen.xyz/eyeoncitadel and soonish... https://plebeian.market/stall/moizen https://example.com/ 20998 436307 436290.436307.436315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9304773313716 0 \N \N f 0 \N 0 104016338 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 2025-03-20 06:42:34.538 f \N \N \N 0 0 0 0 0 0 0 435379 2025-03-12 16:32:19.494 2025-03-29 22:39:48.158 What is your biggest problem in life right now? And how do you plan to solve it?\n\nI like to ask myself this question from time to time.\n\nMy biggest problem at the moment is that I have gained too much weight because I lost some discipline around eating healthy and doing sports in the last few years.\n\nI plan to solve it by tracking what I eat (and thus at the same time keeping inventory); caring more about good sleep (since bad sleep means no workout) and trying to cook for myself almost every day instead of eating outside or ordering food.\n\nAlso, by posting this publicly, I hope that I hold myself more accountable, lol. If I made some decent progress and thus it is not too embarrassing to blog about this, I will probably write about it on https://ekzyis.com\n\nThis blog post from Jameson Lopp was quite inspiring: https://blog.lopp.net/fat-fit-four-months/\n\n \N 730 \N 435379 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 17.8065202490646 0 \N \N f 0 \N 0 52328721 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 10:00:44.508 f \N \N \N 0 0 0 0 0 0 0 436675 2025-03-13 19:22:53.167 2025-03-29 22:39:48.158 NFTs are Dead, Long Live NFTs \N https://avc.xyz/nfts-are-dead%2C-long-live-nfts 1261 \N 436675 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 0.51900308368527 0 \N \N f 0 \N 0 147923263 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 13:11:43.093 f \N \N \N 0 0 0 0 0 0 0 448199 2025-03-22 13:29:10.782 2025-03-29 22:39:51.704 \N Social platforms like this have a particular culture. The SN culture is hard to describe, but it's deeply embedded.\n\nI think SN can grow much larger and retain its culture if this doesn't happen too fast. The culture will probably improve in a way because given the small pool of active participants here the viewpoints can be a bit narrow sometimes, at least easy to dominate a topic by a few people. More stackers would hopefully strengthen/diversify the dialogue and ideas. \n\nI agree if there was some tipping point that opened the floodgates and the user base 10x'd overnight, it could become a very different place. \n\nI think the strongest part of the culture is the anti shitcoin sentiment, we gotta keep that 😄 https://example.com/ 831 448176 447715.448176.448199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8462069217126 0 \N \N f 0 \N 0 99040043 0 f f \N \N \N \N 447715 \N 0 0 \N \N f \N 2025-03-29 20:21:20.377 f \N \N \N 0 0 0 0 0 0 0 435069 2025-03-12 12:45:02.18 2025-03-29 22:39:51.704 \N So what?\nIf those custodial are NOT KYC, can be used really nice as a "decoy" wallet.\n\nI personally use many LN addresses, public ones and private ones, custodial and non-custodial. All depending the use case.\n\nI use public ones, custodial, for public stuff, where my real identity is not revealed. Almost all of these custodial do not require a full KYC so is not a big deal using them. You just have to move the funds out, to your own private wallets wherever you consider is a good amount.\n\nI use private LN address for PRIVATE stuff (private businesses, private communication with people that really know me, family, friends etc), stuff that is NOT PUBLIC.\n\nPeople should learn to make the difference between public and private damn it! Seems that many still don't know it.\n\nUse a damn nym online. Even if you show your face in videos or interviews, at least use a damn nym, could be even a false full name, random one.\n\nIn regards of running your own LN address servers, here I wrote a quick guide\nhttps://stacker.news/items/147230 https://example.com/ 2681 433405 433359.433405.435069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3161527574535 0 \N \N f 0 \N 0 110711347 0 f f \N \N \N \N 433359 \N 0 0 \N \N f \N 2025-03-19 17:04:11.825 f \N \N \N 0 0 0 0 0 0 0 435009 2025-03-12 11:56:16.348 2025-03-29 22:39:51.704 \N Lol, the plebs have spoken and koob delivers, isn't this a grand old thing https://example.com/ 880 434922 434922.435009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5051871851997 0 \N \N f 0 \N 0 249252928 0 f f \N \N \N \N 434922 \N 0 0 \N \N f \N 2025-03-19 06:00:27.492 f \N \N \N 0 0 0 0 0 0 0 447442 2025-03-21 20:42:06.775 2025-03-29 22:39:51.705 \N yes we tried this but strangely putting the `override fun onCarConnected() {}` function in a try block seems to stop the listener from firing in the case where the app is open before connecting to the car - very odd! https://example.com/ 4459 447179 447143.447179.447442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.09291830912521 0 \N \N f 0 \N 0 22685606 0 f f \N \N \N \N 447143 \N 0 0 \N \N f \N 2025-03-29 09:21:12.086 f \N \N \N 0 0 0 0 0 0 0 435821 2025-03-13 01:55:59.127 2025-03-29 22:39:51.705 \N Spreading the word about SN on my blog! https://example.com/ 2342 435768 435046.435059.435124.435759.435768.435821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.74776401744862 0 \N \N f 0 \N 0 54641375 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 19:33:00.299 f \N \N \N 0 0 0 0 0 0 0 435549 2025-03-12 19:24:01.18 2025-03-29 22:39:51.705 \N Dancing alone until something catches on\nhttps://media4.giphy.com/media/XVBzMyNdFQ9FJiIuYY/giphy.gif?cid=6c09b9525u6pv19pcrmvegfrqxiobdtqpuyapynbr1emany3&ep=v1_internal_gif_by_id&rid=giphy.gif&ct=s https://example.com/ 13547 435517 434795.435517.435549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0858905608564 0 \N \N f 0 \N 0 219756637 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 22:19:48.566 f \N \N \N 0 0 0 0 0 0 0 435985 2025-03-13 07:45:09.052 2025-03-29 22:39:48.158 ESSAY: We Are All Nodes: A Bitcoiner's Social Responsibility "The primary act—the process of reason—must be performed by each man alone. We can divide a meal among many men. We cannot digest it in a collective stomach. No man can use his lungs to breathe for another man. No man can use his brain to think for another. All the functions of body and spirit are private. They cannot be shared or transferred."\n\n--Ayn Rand\n\n![](https://m.stacker.news/62967)\n\nRand warned about the fallacy of prioritizing collective well-being over the individual. Adopting Bitcoin as your primary means of payment and store of value is an individual choice, while the errand of orange-pilling people is construed as performing a social, or even collective, good. Bitcoiners themselves are not unlike the nodes validating network transactions and enforcing the fixed supply mechanism, in the sense that they bear the responsibility of ensuring the social integrity of the network. By this, I mean adhering to the same principles on which Bitcoin came into existence, those based on the sovereignty of the individual. In observing interactions of bitcoiners online, I became motivated to express my thoughts about the risk that despite the best intentions, I have seen some fall into the trap of passive, ideological adherence to the collectivist idea that everyone ends up better off if the world just accepted bitcoin. I do not think this to be necessarily true, but make the argument that educated users who are empowered to think for themselves make the network stronger and lead us closer to our common goal of a freer society.\n\n**Bitcoiners as Social Nodes**\n\nHaving the courage to learn about the technological requirements of running a bitcoin node is no small feat for the average non-technically inclined person. Yet, courage here is the primary barrier to be overcome. The technical knowledge needed to participate in the Bitcoin network by running your own node, though not intuitive, is readily available online through easy-to-follow tutorials, yet many people who hold Bitcoin will never endeavor to do so. At this point, anyone can buy or sell bitcoin and even spend it without as much as having heard the word node, let alone understand how to run one on their own machine. By far, the more burdensome task than the technical aspects of node participation is the social task of enabling the future bitcoiners of the world to use bitcoin as money. It is for this reason, I am arguing, that it is a moral imperative to view every current bitcoiner as a social node.\n\nWhile not capable of validating bitcoin transactions (with the exception of those actual node runners), bitcoiners bear the burden of solving the far more complex social problems of harmonizing the hostile world of fiat with Bitcoin. Bitcoiners are societal nodes, and serve the polyvalent function of validating social transactions and ensuring the integrity of the bitcoin network of users.\n\nI'm not talking about shilling bitcoin, bitcoin evangelism or "orange-pilling" your friends and family. As far as I can tell, the jury is still out on whether this is a desirable use of our function as social nodes in the network of bitcoin users. As we all know, a new user who dives into the unknown without having done their due diligence might be taking a serious risk. Also, while Bitcoin's value will benefit immensely from wider adoption, paradoxically, this will make it more costly for its present users to accumulate more. Far be it from my intentions to make an argument against advocating wider Bitcoin adoption; however, in this essay I find it incumbent upon me to consider the ramifications of shilling the coin irresponsibly. Another one of my objectives here is to explore the functions of participating as a social node in the Bitcoin network.\n\n**Bitocoin evangelism and on-boarding new users**\n\nExplanations of the exploits of fiat currency, the anti-fragility of the bitcoin network and its value proposition as money qua store of value as well as a medium of exchange can be powerful evidence for non-believers. These top the list of revelations I had to have before being able to accept the reality that fiat is the real Ponzi scheme whose stability-seeking central planning approach drains the life force of the people who actually produce value in the world (see my essay, Dracula and the Federal Reserve Banking System). By saying that every bitcoiner is a social node in the network of potential users, I am proposing that due diligence be taken to ensure that initiates are properly introduced to the technology, lest they fall into ways that perpetuate the evils of old.\n\nThe question of bitcoin mass adoption is no longer one of "if," but "when." With the President of the United states floating the idea of purchasing a strategic reserve of one-million BTC (we'll see), and Microstrategy announcing plans to amp up their purchasing of bitcoin to 42 billion USD, among other instances of institutional adoption, over these next few years Bitcoin will not need any more evangelism. The real task of being a node in the social network of bitcoin users lay in envisioning what the world is going to look like on a Bitcoin standard and educating people about how they can prepare. Making sure that initiates in the network understand the common best practices will be the most daunting task.\n\n![](https://m.stacker.news/62968)\n\nHumans are social creatures. This necessarily implies that the mass uptake of new technology will have massive social repercussions. While we may rely on the economists to offer us analysis on trends in the social aspects of bitcoin adoption, and the software engineers and developers as experts on the tech stuff, it is the task of the every-person, the plebs, in the network to find the wrinkles and distortions that impede it from working for everyone. What I mean in saying we are all nodes is this: each individual bitcoiner shares the responsibility for ensuring the accuracy and relevance of information as it is distributed in their broader social networks, especially new users. This involves informing people about the various freedom to which bitcoin enables us. I am suggesting that we think deeper than simply proclaiming the "Good Word" that bitcoin is the best money ever known to human civilization, using ideological arguments to persuade. What I'm proposing is a judicious and considered approach to encouraging proper education among the yet-to-be-initiated.\n\nOf course, there are certainly going to be people to whom we will relish in saying "have fun staying poor," whom we will watch happily as they flounder in the dying paroxysms of the fiat machine while mass adoption takes off. However, there are also those, and this I am certain, to whom each of us would like to educate about the desecration caused by fiat systems, and the ways in which Bitcoin, the hardest decentralized and trustless currency that the world has ever seen, can save them. There is, of course, the adage that everyone gets Bitcoin at the price they deserve, but this should be said with the caveat that our friends and family deserve the absolute best price possible. My view here is that the only way to ensure that bitcoin remains representative of freedom is by each participant in the network ensuring that the right information reaches the right people at the right time.\n\n![](https://m.stacker.news/62969)\n\nBy saying we are all nodes, in effect, is to say that each of us who proclaims the word of Bitcoin is an ambassador. The choice of how you choose to represent yourself is your own. You are the one who best knows your community and you know what will make bitcoin stick. Every ambassador of the network performs the careful work of understanding the how and why of bitcoin adoption in each individual case. Far more complex a task than the validation of transactions on the bitcoin network, being a societal bitcoin node requires the careful execution that can be achieved by people living in and connected to the world around them.\n\n**One Pill, Two Pill, Orange Pill, Blue Pill**\n\nI prefer to talk about the process of initiating someone to the bitcoin network as one of on-boarding, rather than orange-pilling. To orange-pill someone implies some level of ideological persuasion - which, if you ask me, never really works, and only makes the unconvinced dig in their heels and gnash their teeth. I think the person who accepts Bitcoin does so because the time was ripe for it, not because of a nerdy cypherpunk's soothsaying. Even worse, to orange-pill someone pacifies the initiate into someone that needs to accept the truth as you it to tell them. The network doesn't need more people ready to drink the next hyped up flavour of kool-aid (even if it is orange); it needs rational thinkers who are ready to accept reality as it is, ready to think deeply about the problems yet to be solved.\n\nFrom my experience, to say that the average person knows there to be something inherently wrong with the world is an understatement. People live their whole lives fear- or hate-ridden lest some boogeyman that they can't quite define will come and ransack everything they know and love. They use many labels, like Cabal, the establishment, they, the man... There is any number of pejoratives to which folks are ready to direct their hatred, though they be only vaguely understood. Yet, none of these labels fully captures the essence of the problem, which not the fault of a single entity per se. Instead, the fault lay in a system built on fiat. If history teaches us anything, it is that people are quick to find a scapegoat for problems that they do not fully understand. Doing so is much easier than admitting to having been duped into accepting a patently counterfeit construction of reality. The world's biggest Ponzi scheme, fiat, is just that. Thanks to generations of coercion and propagandizing, the average person has not the slightest clue of this. The result of this ignorance is that they cannot be bothered to understand why Bitcoin exists.\n\n![](https://m.stacker.news/62970)\n\nWhat the majority of people do understand is this: for one reason or another, each of us feels we have to achieve more with less. What distinguishes bitcoiners from the majority is the understanding that this feeling is valid because it has an identifiable caused in the world. It is not a collective hallucination, but the systemic theft that occurs in the form of currency debasement, organized and planned by central banking and governmental authorities. In order to make ideological converts, or orange-pill those who have not recognized this truth requires a subtle understanding of their lives and struggles. It requires knowing that most people do not readily give up their their most strongly held delusions. It requires a deep level of compassion, love and patience.\n\nOrange pilling, therefore, might better referred to as on-boarding. To build the network of future bitcoiners requires that people are well adapted and have the resources to make full use of it. If people are not free to understand bitcoin and instead are coerced into passively accepting it, then humanity will be no better off than we are now. This is why I would propose we change the language used to describe when initiating a newcomer to the network. To say someone has been "orange-pilled" relegates them to being a passive recipient of an ideology. Myself, I have never been orange-pilled; in fact, I am skeptical of any pill. Here, I think the meme has outgrown its use and works against us. No--I have been on-boarded to the network, thanks to the many educators who work tirelessly to create online content, write their books or articles or expend their scarce time and energy discussing these ideas.\n\nWe risk repeating the mistakes of the past if each new bitcoiner is not treated with the dignity of being able to decide for themselves what is best for them. Those who blindly accept an ideology are arguably no better off then they were in the old system. As Ayn Rand has argued, the mind is not collective, but individual, and nor can any man or woman use theirs to think for another.\n\nFR.\n\nnpub176zu0wg5l8436nu66qaxwfekx0zz58l66s72dhcu0ur0lvd7q5lq9f66qx \N 2681 \N 435985 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 6.32399665669205 0 \N \N f 0 \N 0 165993083 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:17:09.379 f \N \N \N 0 0 0 0 0 0 0 434513 2025-03-12 01:30:48.266 2025-03-29 22:39:51.704 \N We definitely want different communities to be able to use bitcoin and SN eventually. The only thing up for debate imo is how exactly to do it because maybe there’s something better than the sub model. https://example.com/ 16939 434437 434410.434437.434513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.52586722309267 0 \N \N f 0 \N 0 103178335 0 f f \N \N \N \N 434410 \N 0 0 \N \N f \N 2025-03-18 21:27:36.193 f \N \N \N 0 0 0 0 0 0 0 436529 2025-03-13 16:12:06.721 2025-03-29 22:39:51.704 \N Howdy y’all, is it me or is this saloon missing a perpetual poker game? https://example.com/ 9551 436523 436523.436529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0203879740393 0 \N \N f 0 \N 0 103854788 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 2025-03-20 11:33:24.692 f \N \N \N 0 0 0 0 0 0 0 436298 2025-03-13 13:01:56.035 2025-03-29 22:39:51.704 \N Oh, no. Ilhan, this ain't it, and it's not going to distract from whatever latest controversy you're embroiled in. https://example.com/ 679 436241 436241.436298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3137918564888 0 \N \N f 0 \N 0 235855322 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:42:49.233 f \N \N \N 0 0 0 0 0 0 0 434512 2025-03-12 01:27:11.417 2025-03-29 22:39:51.704 \N We either get covenants or only rich people can do self custodial bitcoin https://example.com/ 12272 434285 434285.434512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5837053198245 0 \N \N f 0 \N 0 110136832 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 2025-03-19 06:59:15.373 f \N \N \N 0 0 0 0 0 0 0 436155 2025-03-13 10:58:12.366 2025-03-29 22:39:51.704 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **21** https://example.com/ 929 435920 435657.435728.435920.436155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1495909965401 0 \N \N f 0 \N 0 246717852 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 05:40:46.739 f \N \N \N 0 0 0 0 0 0 0 435512 2025-03-12 18:41:17.145 2025-03-29 22:39:51.704 \N Lol omg https://example.com/ 986 435509 435242.435509.435512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.0412270958878 0 \N \N f 0 \N 0 38231493 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 2025-03-19 11:58:41.669 f \N \N \N 0 0 0 0 0 0 0 429807 2025-03-08 16:07:04.036 2025-03-29 22:39:48.158 [REVIEW] Bleeding Edge by Thomas Pynchon Here's the deal: you don't read Thomas Pynchon for his plots. It's all a mess and you're never going to actually find out what's going on. You just have to accept it.[^2]\n\n[^2]: It's been a while since I posted one of these reviews because this darn book got me lost and maybe I lost interest and it took me a while to finish--which I will admit has happened before with Pynchon. \n\n> Finally, at a phone number obtained off a toilet wall at a bar in Mile End, she located one Felix Boingueaux, who'd been working out of a basement apartment, what they call a *garconniere*, off of Saint-Denis, for whom Vip's name didn't just ring a bell but threatened to kick the door in, since there were apparently some late-payment issues. They arranged to meet at an Internet-enabled laundromat called NetNet, soon to be a legend on the Plateau. Felix looked almost old enough to drive.\n\nShe is Maxine. And she's the star of the show. A no nonsense Jewish lady from New York who's tougher than an over-boiled bagel. \n\n> Maxine runs a small fraud-investigating agency down the street, called Tail 'Em and Nail 'Em--she once briefly considered adding "and Jail 'Em," but grasped soon enough how wishful, if not delusional, this would be--in an old bank building, entered by way of a lobby whose ceiling is so high that back before smoking was outlawed sometimes you couldn't even see it.\n\nYou might think it's about Maxine sifting through pages of account books and double checking things with her calculator. Maybe some excel spreadsheet action. Not so. There's a lot of breathless charging across town on questionably important errands. \n\nIt's really about Maxine's many different relationships: ex-husband, kids, CIA agents, crusty activists, hackers, rich wives, cabbies, crafty convenience store owners. And how the dot-com bubble felt. And the days before and after 9/11. And some secretive tech mogul who's funneling money to terrorists? And also a 3D graphical representation of the internet, like the metaverse, but really it's just a search engine. And a lot of just being in New York. And food. \n\nEach sentence is loaded, like he wrote a paragraph and cut away at it until all that was left was this sentence and it's not got a single whiff of filler left in it. But also, it might be missing some of the regular parts you're used to.\n\n> "So," shrugging away any scold signifiers in face and voice, "a mom-approved first-person shooter."\n\nIn *Bleeding Edge*, as all Pynchon, things get zany, serious too, but goofy, and you find yourself reading along happy to believe in scent detectives with odor-guns ("The Naser") and retired Russian mobsters who have turned into tech VCs with a deep appreciation for ice cream.[^1] There's no trouble being there. He's got a gift for sucking you in so that when you finally come back up for air, you're wondering whether you've been reading for five minutes or fifty. But it can be tiring and sometimes you end up never finishing. \n\n[^1]: "Fucking Nestle," Igor rooting through the freezer. "Fucking unsaturated vegetable oils. Hippie shit. Corrupting entire generation. I have arrangements, fly this in once a month on refrigerator plane to Kennedy. OK, so we got Ice-Fili here, Ramzai, also Inmarko, from Novosibirsk, very awesome *morozhenoye, Metelitsa, Talosto...today, for you, on special, hazelnut, chocolate chips, *vishnya*, which is sour cherry..."\n\n> "Envy," supposes Heidi, "is so often all that stands between some of us and a sad, empty life." \N 9365 \N 429807 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 28.8667272050118 0 \N \N f 0 \N 0 105190189 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 11:03:59.554 f \N \N \N 0 0 0 0 0 0 0 434570 2025-03-12 03:08:31.087 2025-03-29 22:39:51.704 \N Nah I don't think so, maybe greenlight, cashu or LSPs can help hide the complexity for the normie if it can be baked into a smooth UX that the wallet hides most of the drama and you just toggle a few settings based on your preferences, but even then it's still a long way off and people still need to figure out LN exists, loads of poeple who own Bitcoin don't know jack about LN https://example.com/ 14552 429644 429644.434570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7568682340675 0 \N \N f 0 \N 0 140344986 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 2025-03-19 00:37:44.365 f \N \N \N 0 0 0 0 0 0 0 443461 2025-03-19 11:16:47.091 2025-03-29 22:39:51.704 \N Understand the problem and the need from the advertisers perspective. Seeing the same ad over and over for engaged users may be a bit of a ‘turn-off’ however.\n\nUsers being able to define thresholds per week of the same ad may prove useful, without damaging number of unique views for advertisers. Got to think about those that slouch in the saloon all day ;) https://example.com/ 17797 443372 443372.443461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6123648972017 0 \N \N f 0 \N 0 42361616 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 04:34:38.785 f \N \N \N 0 0 0 0 0 0 0 435815 2025-03-13 01:47:57.262 2025-03-29 22:39:51.705 \N I don't know what the big deal is with Muun, it does its job and is super easy to use (I think the problem is that most of the other wallets have very bad UX).\n https://example.com/ 18309 435141 435030.435141.435815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7628342306585 0 \N \N f 0 \N 0 222105422 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-20 08:44:11.662 f \N \N \N 0 0 0 0 0 0 0 435508 2025-03-12 18:36:18.76 2025-03-29 22:39:51.705 \N Not sure if I would be using too much SN.\nLately the amount of shitcoining / shitposting on SN is increasing at levels that makes me not anymore interested to visit SN and posting more stuff.\n\nSlowly the alternative to reddit, cleaner and more interesting, became a new old reddit full of useless "news" and ramblings around shitcoins.\n\nI notice that also bitcoin / lightning devs start avoiding to come back here, exactly because of that. Shame, I thought SN will be a nice platform for Bitcoin/LN discussions, but seems to became a "milking cow" of sats by people that don't have any intention to bring some good content.\n\nThe few users here that post good content, I feel them tired too.\n\nI don't know how SN could get out from this chicken and egg game. I think will be better to give less incentives for all and don't make SN as another "passive earning" tool. People must work hard to earn real sats.\n\nMaybe a separation of "boosts" from tips, will help. Tipping sats must be something that the reader really appreciate and want to show that appreciation. Boosts must be only when the reader want that post to be more visible and more discussed. Right now not all SN users know that.\n\nAnd btw... I do not want to "paywall" my guides. Bitcoin information and guides must be free forever. If the reader really want to send some sats as appreciation for the help I provided, is their own choice, I do not force anybody to pay for my guides. https://example.com/ 18005 434978 434791.434978.435508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.57313354179642 0 \N \N f 0 \N 0 33387789 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 12:36:31.156 f \N \N \N 0 0 0 0 0 0 0 443647 2025-03-19 12:49:51.324 2025-03-29 22:39:51.705 \N There is a huge difference between running a routing node and just running your node to plug into the rest of the network. The former is indeed more demanding, I think the latter is still very doable for a plebs.\n\nI ran a pretty profitable node more than a year ago, even though I am not that technical. But back then, mistakes were not that costly... so in the current environment, I agree that you better know your shit, or that you learn quickly from your mistakes. https://example.com/ 9329 443628 442978.443048.443543.443604.443618.443628.443647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9464646410173 0 \N \N f 0 \N 0 242398922 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 2025-03-26 06:13:38.13 f \N \N \N 0 0 0 0 0 0 0 436248 2025-03-13 12:16:13.18 2025-03-29 22:39:48.158 As a bitcoiner, how essential do you think being anonymous online is? Will the governments of the world come for us eventually or nah? \nWill talking feely about bitcoin become a security hazard or am I being too dramatic? \N 1047 \N 436248 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 1.85432165222117 0 \N \N f 0 \N 0 183079854 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:15:33.571 f \N \N \N 0 0 0 0 0 0 0 434745 2025-03-12 07:53:03.514 2025-03-29 22:39:48.158 Meme Monday Post the top quality bitcoin-related memes that you have collected this past week; it's the least you can do to bring some joy to your fellow plebs during this hot weather. No bounty. \N 20922 \N 434745 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 8.70174585659154 0 \N \N f 0 \N 0 200903722 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 16:36:26.427 f \N \N \N 0 0 0 0 0 0 0 434835 2025-03-12 09:15:23.974 2025-03-29 22:39:48.158 Meme Monday - Best Bitcoin Meme Gets 10,000 Sats Time for another round of Meme Monday!\n\nWe have another 10,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 10am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 21090 \N 434835 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.0532092273639 0 \N \N f 0 \N 0 137318413 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:58:08.545 f \N \N \N 0 0 0 0 0 0 0 435634 2025-03-12 20:44:15.872 2025-03-29 22:39:48.158 Chances of a military intervention in Venezuela I found this thread by a writer and journalist, Nacho Montes de Oca. The information is in Spanish so I translated it. It talks about the possibilities of some kind of international intervention in Venezuela. I thought it had complete information. I wanted to share it on SN because I would like to read your points of view based on this information. I would like to know if you know other data regarding international aid for Venezuela.\nhttps://x.com/nachomdeo/status/1819984205494767631\n\n"We are going to explain why it is difficult for a military intervention in Venezuela to take place by the US, a coalition similar to the one that liberated Kuwait or through the application of the TIAR. It is time to speak with data in hand and stop fantasizing.\n\nFirst let's be clear; this is not about discouraging the legitimate struggle of Venezuelans, but the opposite. The fight they are proposing is more realistic than repeating that "demonstrations are useless, we must take military action" and mocking the way they chose to seek change.\n\nOn the other side there are hundreds of thousands of soldiers, police and hitmen armed to the teeth and the unarmed Venezuelans know it and suffer it right now. Also, after 25 years of waiting for an external military intervention, they know many of the facts contained in this thread.\n\nLet's start with the possibility of US intervention, which is the most demanded by many. Let's understand before we start talking that we are not talking about Russia, where Putin can order an invasion of foreign territory with a gesture. Let's go to the mechanism of the use of force.\n\nIn the US, there is the War Powers Act of 1973, created to limit the president's power to declare war or order military action in undeclared wars. Its text determines the conditions for sending troops abroad in a very precise manner.\n![](https://m.stacker.news/44476)\n\nHe can only do so under two assumptions: the declaration of war by Congress on another state or states. The president cannot declare it himself and therefore Biden or his successor are tied to a decision by the legislators.\n\nThe second assumption is that the country faces “a national emergency created by an attack on the United States, its territories, possessions, or its armed forces.” In the case of Venezuela, that condition does not exist, at least for now. Maduro should create a reason\n\nLet's look at the political situation. The US is in an election period. Democrats have a majority in the Senate and Republicans in the House of Representatives. They should come to an agreement after finding a reason for consensus to authorize an action in Venezuela.\n\nDuring the campaign, it was clear that MAGA, the Republican wing, emphasized that the US should focus on protecting its borders and reducing spending on external conflicts, which led to the 6-month blockade of aid to Ukraine, Taiwan and Israel, a priority ally under attack.\n\nThis position, which has even led to confrontations with NATO partners, makes it difficult for the US to move forward with a permit to intervene in Venezuela with all the costs and political complexities that would be involved in getting involved in a conflict that does not directly affect a national interest.\n\nIt can be argued that it is possible to intervene “under the desk” as was done in the past. It is not that simple either and we will go back to history to explain it, making it clear that we can only refer to the period after 1973 when a legal limit was placed on this practice.\n\nLet's get to the reasons. When Washington launched Operation Just Cause on December 20, 1989 and invaded Panama, it did so with Congressional authorization and invoking the risk Noriega represented for control of the Panama Canal, then administered by the United States.\n\nIn the case of Iran, there was an invasion of the US embassy in Tehran on November 4, 1979, and then the kidnapping of American citizens by Hezbollah, in addition to the bombing of the Marine barracks in Beirut in 1983 as justification.\n\nThe invasion of Grenada called “Urgent Fury” and carried out on October 25, 1983 was justified by the protection of 600 American students and 400 civilians of the same nationality present on the island as an excuse to also overthrow the pro-Soviet Hudson Austin\n\nThe US invasion of Afghanistan that began in October 2000 was a direct consequence of the Al Qaeda attacks of September 11, 1991. There was a direct interest invoked, as in the 2003 invasion of Iraq, due to the alleged presence of weapons of mass destruction.\n\nWhen the Nicaraguan Contras were supported and trained, the risk of a Soviet advance in a strategic area was invoked. In any case, Congress imposed the “Boland Amendment” in 1982 so that the assistance would not be directed towards overthrowing the Sandinista government.\n\nThis background is valid to understand why in that same year the government of Ronald Reagan decided to look for another way to finance these operations with money obtained from drug cartels and the sale of arms to Iran, which gave rise to the "Iran-Contra" scandal.\n\nThe affair ended with a prison sentence for one of the ideologues of the operation, Colonel Oliver North, and the security adviser John Poindexter being convicted. In Washington, they know the story and it is an additional impediment to take into account.\n\nThis factor leads directly to the demand for arms to be sent to Venezuela or for guerrillas to be formed by the opposition. Neither the US nor the rest of the West can do this so easily. And the CIA or the NSA have real limits, we are not in a Tom Clancy book.\n\nArming and training a dissident group requires significant amounts of budget and again we return to Congress, which is the one that must authorize the appropriations and review the spending to avoid the diversion of funds. Again, it is not Russia or Cuba where there is no accountability.\n\nThey also wonder why a drone or a missile is not sent in to root out the problem. Such an action falls into the same category as a military intervention with foot soldiers. This is how the system works, not how we wish.\n\nChavismo was careful not to attack US interests and since January 2019 there is no embassy or diplomatic personnel due to the expulsion ordered by Maduro. American companies in Venezuela could be an interest to protect, but until now they have not been sufficient reason.\n\nHaving explained the issue of US intervention, we go to the assumption of an international intervention and this brings us back to the coalition that was formed to remove Saddam Hussein's troops from Kuwait in 1991. It is a precedent that many use as a reference.\n\nThat military operation against Iraq that brought together forces from 34 countries arose as a consequence of the authorization of the UN through Resolution 660 backed by the Security Council and the support of two of its permanent members: China and Russia.\n\nMoscow and Beijing recognized Maduro as the winner of the elections and are allies of Chavismo. Therefore, we can rule out a UN mandate because from their position in the Security Council they can veto any attempt to repeat the experience of 1991.\n\nThe dispatch of a military force of Blue Helmets must be approved by the Security Council and it is impossible for China and Russia to help weaken the authority and repressive capacity of Chavismo, which in February expelled the UN High Commissioner for denouncing its atrocities.\n\nAnother armed coalition to intervene abroad was the one organized to bomb Yugoslavia in 1999, which, although unauthorized by the UN, was based on a NATO request to intervene in a regional conflict that, in its opinion, affected its collective security.\n\nIn that case, there was a political base in the European Union and a military arm in the form of NATO, as well as a network of regional defense agreements that do not exist in Latin America. This brings us to the question of the Inter-American Reciprocal Defense Treaty, the TIAR.\n\nThe TIAR was created in September 1947 in the context of the beginning of the Cold War at the request of the United States to ensure the support of the continent in the event of a Soviet attack. The possibilities of using it to resolve the Venezuelan crisis are slim and we are going to see why.\n\nFirstly, because it is a Treaty that must be invoked in the event of an external aggression against America and what is happening in Venezuela is an internal matter. Denouncing the presence of Wagner's Russians on Venezuelan soil is not enough to activate the TIAR.\n![](https://m.stacker.news/44509)\n1. The High Contracting Parties agree that an armed attack by any State against an American State will be considered an attack against all American States, and consequently, each of said Contracting Parties undertakes to help confront the attack, in exercise of the inherent right of individual or collective self-defense recognized by Article 51 of the Charter of the United Nations.\n\n2. At the request of the State or States directly attacked, and until the decision of the Consultative Body of the Inter-American System, each of the Contracting Parties may determine the immediate measures that it adopts individually, in compliance with the obligation referred to in the preceding paragraph and accordance with the principle of continental solidarity. The Consultative Body will meet without delay in order to examine these measures and agree on the collective measures that should be adopted.\n\n3. The provisions of this Article will apply in all cases of armed attack carried out within the region described in Article 4 or within the territory of an American State. When the attack takes place outside said areas, the provisions of Article 6 will apply.\n\n4. The measures of self-defense referred to in this Article may be applied as long as the United Nations Security Council has not taken the necessary measures to maintain international peace and security.\n\nAnother problem is that the TIAR mechanism assumes that the attacked country must request its implementation and, although Maduro is not recognized as an authority, Edmundo González would not be admitted by all the members of the Treaty as a legitimate president.\n![](https://m.stacker.news/44510)\nARTICLE 9.\n\nIn addition to other acts that in a consultation meeting can be characterized as aggression, they will be\n\nconsidered as such: a) The armed attack, unprovoked, by a State, against the territory, population or land, naval or air forces of another State;\n\nb) The invasion, by the armed force of a State, of the territory of an American State, through the transfer\n\nof the borders demarcated in accordance with a treaty, judicial ruling, or arbitration award, or, in the absence of borders so demarcated, the invasion that affects a region that is under the effective jurisdiction of another State,\n\nARTICLE 10\n\nNothing in this Treaty shall be construed as impairing the rights and obligations of the High Contracting Parties under the Charter of the United Nations.\n\nARTICLE 11.°\n\nThe consultations referred to in this Treaty will be carried out through the Meeting of Ministers. Foreign Relations of the American Republics that have ratified it, or in the form or by the body that in the future will be remembered.\n\nIt happens that the scope of application of the TIAR is the OAS as successor of the Pan American Union that created the mechanism and within this organization nations such as Brazil, Mexico and Colombia have already shown that they are not inclined to align themselves even with a request to condemn Maduro's fraud.\n\nThe other unsolvable problem is that Maduro withdrew Venezuela from the OAS in 2019 and therefore it can no longer be applied for a defense claim. Mexico, Bolivia, Cuba, Nicaragua and Ecuador have all left the TIAR in the past, further reducing its scope.\n\nOther countries could invoke the TIAR if they claim to be affected by the migratory or drug trafficking effects of the Venezuelan crisis in the absence of more direct reasons, but even so the balance of power within the OAS is a very strong political limitation that is not resolved.\n\nThe TIAR had already proven ineffective in the Malvinas War and was requested 20 times without success until the fall of the Berlin Wall. In 2001, the US invoked it to seek support for 911. In response, Mexico withdrew from the Treaty, claiming that it was an obsolete instrument.\n\nThere is another reason why neither the US, nor the West, nor the region are rushing into a military intervention in Venezuela. For two and a half years, the political basis for confronting the invasion of Ukraine has been based on two principles: respect for sovereignty and rejection of the use of force.\n\nIf the region breaks the same Pandora's Box that Putin destroyed in Ukraine in 2014 and then in 2023, the entire framework on which the rejection of Russian aggression is based would evaporate. It is not just voluntarism, but a question of political practice.\n\nIf there is a military intervention in Venezuela, in addition to the consequences for its population, the right to invade foreign territory to resolve a situation that, from the perspective of the intervener, is the most efficient solution would automatically be enabled.\n\nIt can be argued that this is a defence of democracy, but the risk is that with the same argument and considering that they are actually authorised, other countries, autocratic or not, will carry out similar invasions in the future or will be authorised to interfere with greater impunity in other countries.\n\nIt is true that some governments interfere politically in other countries, as is the case with Cuba and Chavismo itself. But by legitimizing an invasion or the arming of dissidents, they would become potential recipients of a reciprocal response. We must think beyond fury.\n\nIf the system of checks and balances of power is broken and the autocracies' intention to return to the era of the use of force to resolve disputes is also endorsed, the problem will go beyond Venezuela. It is about not killing cockroaches by blowing up the entire neighborhood.\n\nFor this reason, and beyond the good intentions of many exasperated by the brutal repression against the Venezuelan people at the hands of Chavismo, we must understand that the world has rules of operation and reasons that escape our desires and fantasies.\n\nTo those who despise Venezuelans for being “lukewarm” for marching and protesting through political means instead of taking up arms that only exist on Netflix, I tell them that they do not know everything that is in the thread and how courageous one must be to continue resisting despite it.\n\nThey have the option of private initiative and nobody stops those who consider themselves to have enough knowledge and balls to go to Venezuela to put their proposals into practice. But in the scenario of the countries there are rules, conditions and precedents that explain it.\n\nAt the time, Juan Guaidó called for international intervention in Venezuela and even invoked the TIAR. Since 2019, many Venezuelan leaders understood the limitations described in this thread and decided to stop waiting for the manna of military aid.\n\nWith this data it is easier to understand the scenario and the strategy of Machado, González and the rest of the opposition. Also, because they use the tools they have at hand and the reason why they do not call for marines, drones and aircraft carriers. They know the panorama better than many.\n\nExternal help will not come so easily. Venezuelans are cruelly exposed to the Chavista weapons. Now they know the reasons why they know they depend on them and their perseverance. Respect for those who are alone in an unequal struggle and, even so, persist.\n\nPS: Venezuela is far from giving up. If so many Venezuelans continue to defy a beastly regime knowing that they are deprived of direct assistance from outside, it is because they see something powerful on the horizon that sustains them and they have stopped waiting for the 7th Cavalry to come and save them."\n\n\n\n\n\n\n\n \N 16929 \N 435634 \N \N \N \N \N \N \N \N security \N ACTIVE \N 20.2336182829454 0 \N \N f 0 \N 0 64349109 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 15:18:11.246 f \N \N \N 0 0 0 0 0 0 0 435453 2025-03-12 17:32:14.269 2025-03-29 22:39:51.705 \N Lol, forgot to log in here I am https://example.com/ 10661 435217 435217.435453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.06825979888498 0 \N \N f 0 \N 0 143987764 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-20 10:14:58.218 f \N \N \N 0 0 0 0 0 0 0 435699 2025-03-12 22:12:22.721 2025-03-29 22:39:51.705 \N https://bitkey.build/losing-your-keys-without-losing-your-coins/\n\n"Wallet is made up of three parts - a mobile “App”, a specialized “Hardware” device, and our backend “Server” - with each controlling one of 3 keys" using a 2 of 3 multi-sig. You know some people do this with unchained capital so they're sort of making that model streamlined. \n\nI don't really like it myself. I mean just take the marketing from Liana wallet: https://twitter.com/raw_avocado/status/1658099154571218949\n\nGives the user all the power to make all the decisions they want. \n\nI don't know sometimes with these companies I'm reminded of Maralyn Manson. \n"Some of them wan to abuse you, some of them want to be abused"\nhttps://www.youtube.com/watch?v=nSG-6xc-T4U https://example.com/ 20768 435377 435217.435377.435699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1419391458102 0 \N \N f 0 \N 0 5541888 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-20 00:20:52.119 f \N \N \N 0 0 0 0 0 0 0 443724 2025-03-19 13:38:41.33 2025-03-29 22:39:51.705 \N Reminds me of an old post, is Bitcoin money of Earth, the solar system, or the universe?\nhttps://stacker.news/items/146595\n\n https://example.com/ 13759 443720 443577.443714.443716.443720.443724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0007908908667 0 \N \N f 0 \N 0 68444131 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:55:51.905 f \N \N \N 0 0 0 0 0 0 0 434553 2025-03-12 02:46:07.744 2025-03-29 22:39:51.705 \N To SN. It's mine now. https://example.com/ 19857 434498 434498.434553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.073335508425 0 \N \N f 0 \N 0 138668932 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 2025-03-19 04:36:23.21 f \N \N \N 0 0 0 0 0 0 0 443414 2025-03-19 10:40:02.404 2025-03-29 22:39:51.705 \N **Nostr Client Picker**\n\n[primal.net](https://primal.net/e/nevent1qqs0dg28gyh5wwkfuaxyer3f5y4cyqnqkthsl7ntuj4u2fpmgscwv0gpp4mhxue69uhkummn9ekx7mqzyr4tpe6k6v4cp0x5vneas39cqspsxp66z04tcdve5a3vntr6hy057mkc9l9) | [snort.social](https://snort.social/e/nevent1qqs0dg28gyh5wwkfuaxyer3f5y4cyqnqkthsl7ntuj4u2fpmgscwv0gpp4mhxue69uhkummn9ekx7mqzyr4tpe6k6v4cp0x5vneas39cqspsxp66z04tcdve5a3vntr6hy057mkc9l9) | [nostrudel.ninja](https://nostrudel.ninja/#/n/nevent1qqs0dg28gyh5wwkfuaxyer3f5y4cyqnqkthsl7ntuj4u2fpmgscwv0gpp4mhxue69uhkummn9ekx7mqzyr4tpe6k6v4cp0x5vneas39cqspsxp66z04tcdve5a3vntr6hy057mkc9l9) | [satellite.earth](https://satellite.earth/thread/nevent1qqs0dg28gyh5wwkfuaxyer3f5y4cyqnqkthsl7ntuj4u2fpmgscwv0gpp4mhxue69uhkummn9ekx7mqzyr4tpe6k6v4cp0x5vneas39cqspsxp66z04tcdve5a3vntr6hy057mkc9l9) | [coracle.social](https://coracle.social/nevent1qqs0dg28gyh5wwkfuaxyer3f5y4cyqnqkthsl7ntuj4u2fpmgscwv0gpp4mhxue69uhkummn9ekx7mqzyr4tpe6k6v4cp0x5vneas39cqspsxp66z04tcdve5a3vntr6hy057mkc9l9) | [nostter.app](https://nostter.app/nevent1qqs0dg28gyh5wwkfuaxyer3f5y4cyqnqkthsl7ntuj4u2fpmgscwv0gpp4mhxue69uhkummn9ekx7mqzyr4tpe6k6v4cp0x5vneas39cqspsxp66z04tcdve5a3vntr6hy057mkc9l9) | [highlighter.com](https://highlighter.com/a/nevent1qqs0dg28gyh5wwkfuaxyer3f5y4cyqnqkthsl7ntuj4u2fpmgscwv0gpp4mhxue69uhkummn9ekx7mqzyr4tpe6k6v4cp0x5vneas39cqspsxp66z04tcdve5a3vntr6hy057mkc9l9) | [iris.to](https://iris.to/nevent1qqs0dg28gyh5wwkfuaxyer3f5y4cyqnqkthsl7ntuj4u2fpmgscwv0gpp4mhxue69uhkummn9ekx7mqzyr4tpe6k6v4cp0x5vneas39cqspsxp66z04tcdve5a3vntr6hy057mkc9l9) https://example.com/ 6268 443359 443105.443193.443331.443350.443358.443359.443414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3114092840066 0 \N \N f 0 \N 0 42409150 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 2025-03-26 04:08:27.84 f \N \N \N 0 0 0 0 0 0 0 443698 2025-03-19 13:22:03.025 2025-03-29 22:39:48.158 User-activated Meme Monday Share bitcoin-related memes you have collected over the past week with your friends. No bounty. \N 13038 \N 443698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.9277955731042 0 \N \N f 0 \N 0 178675254 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:58:30.851 f \N \N \N 0 0 0 0 0 0 0 447215 2025-03-21 17:39:21.633 2025-03-29 22:39:51.705 \N ![](https://imgprxy.stacker.news/E6avOySiFMw5bfx8YguYdEHFFKjMmnbMWP1FkVmOkGI/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9xUG5sa1B5LmpwZw) https://example.com/ 1741 446486 446456.446486.447215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.369699179063 0 \N \N f 0 \N 0 152237720 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 11:23:04.703 f \N \N \N 0 0 0 0 0 0 0 435599 2025-03-12 20:05:13.527 2025-03-29 22:39:51.705 \N @super_testnet actually did it. He broke something haha\n\nSee here: https://stacker.news/items/173964 https://example.com/ 5036 435564 435564.435599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1480680809536 0 \N \N f 0 \N 0 178487658 0 f f \N \N \N \N 435564 \N 0 0 \N \N f \N 2025-03-19 13:31:27.125 f \N \N \N 0 0 0 0 0 0 0 439834 2025-03-16 17:35:30.514 2025-03-29 22:39:51.705 \N Maybe we need to give it waaaay more time to grow organically. Bitcoiners were the start, others with other focus will follow and build up their own communities. Same with Bitcoin. I think we all need to stretch our time horizon. People will come when there is a need (and pain). https://example.com/ 10302 439157 439139.439157.439834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2557566915408 0 \N \N f 0 \N 0 236091493 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 2025-03-26 06:23:56.69 f \N \N \N 0 0 0 0 0 0 0 430216 2025-03-09 00:02:24.042 2025-03-29 22:39:51.705 \N Thank you. https://example.com/ 19905 429628 429628.430216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.37066953283141 0 \N \N f 0 \N 0 10861512 0 f f \N \N \N \N 429628 \N 0 0 \N \N f \N 2025-03-20 09:51:45.679 f \N \N \N 0 0 0 0 0 0 0 435089 2025-03-12 13:04:15.925 2025-03-29 22:39:51.705 \N Great description of the differences between SN and nostr. \n\nBecause zaps aren't large economic amounts (often ranging from fractions of pennies to a dollar or so) it feels like public zaps would tilt the signal from zaps too far towards social and away from economic. \n\nI wouldn't be looking at zap amount as much as zap amount + zap sender. Currently, when i see a post with 10k sats, I usually know it's going to be worth checking out, even if the title doesn't grab me. I really enjoy how clean this signal is. \n\nI know SN is not pure economic signal (most sats != most seen content) and that trust plays a role. But I also like that I don't have to think about it too much. Private zaps facilitate this. \n\nI wonder what it would be like if there was a mode of SN front page where the only thing you could see about posts was how much they had been zapped (no title, no stacker name, no date?). It might be an interesting content discovery mode. https://example.com/ 12222 434628 434577.434610.434628.435089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6209424155547 0 \N \N f 0 \N 0 51682135 0 f f \N \N \N \N 434577 \N 0 0 \N \N f \N 2025-03-19 06:42:50.648 f \N \N \N 0 0 0 0 0 0 0 448261 2025-03-22 14:12:43.032 2025-03-29 22:39:51.705 \N Thanks for the feedback, maybe personalized feeds will help in the future :) https://example.com/ 18865 447944 447944.448261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2643813366479 0 \N \N f 0 \N 0 205600 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N 2025-03-29 08:47:05.449 f \N \N \N 0 0 0 0 0 0 0 433382 2025-03-11 03:28:02.64 2025-03-29 22:39:51.705 \N you're using it https://example.com/ 16250 433321 433114.433317.433321.433382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.34741751145904 0 \N \N f 0 \N 0 196023494 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 2025-03-18 17:04:24.358 f \N \N \N 0 0 0 0 0 0 0 434274 2025-03-11 18:28:17.069 2025-03-29 22:39:51.705 \N No need to phone a fed.\nhttps://imgprxy.stacker.news/eJl1SxwspjzvGSlXiurIU_tPBbc9E4vFO3WNu437jz0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0Y0bndOd09XUUFBbTAtbT9mb3JtYXQ9d2VicCZuYW1lPTkwMHg5MDA https://example.com/ 9695 433828 433828.434274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2695112474192 0 \N \N f 0 \N 0 101889446 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-19 03:06:48.174 f \N \N \N 0 0 0 0 0 0 0 436017 2025-03-13 08:28:40.816 2025-03-29 22:39:48.158 Portable experiences The nostr protocol directly solves two problems in internet applications: identity portability and data portability. Products built on nostr can depend on those two problems being solved. For most other equally challenging problems, the nostr protocol has no single or opinionated solution, or lacks a publicly proposed solution entirely. This is part of nostr’s design, nostr's protocol “is just the way people do things.” For products that aim to address these other challenging problems, their solutions will exist outside of the protocol and most products will provide them in a centralized way. If these other problems are difficult, important, and numerous enough, your identity and data on nostr will be portable but many of your favorite experiences on nostr will be centralized. \n\nWhen the wheel was invented, some people probably just saw a wheel - a stone that moves reasonably straight and unhindered once it starts moving. Others saw a wagon, fewer saw an automobile, and even fewer if any imagined a rocket. But the wheel is just a wheel. Given a wheel, if you wanted a wagon you needed an axle and if you wanted an automobile you needed an engine. Yet, after running “the way people do things” loop long enough, we have rockets.\n\nIf people want nostr to be more than portable data and identity (and of course, all the many impressive things that _directly_ follow), if people want nostr to yield the decentralized social media equivalent of a rocket, if people want portable experiences that they can't be banned from or censored on, we should be trying to specify and decentralize the popular centralized experiences emerging on nostr. \N 20220 \N 436017 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.3869293601464 0 \N \N f 0 \N 0 72976174 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:55:45.286 f \N \N \N 0 0 0 0 0 0 0 435140 2025-03-12 13:46:03.538 2025-03-29 22:39:48.159 Reading Recommendations - A Weekend Discussion We're looking for some new summer reading recommendations, so we figured it would be fun to collect all of your best recommendations in this thread. So without further ado, a few questions for all the readers out there:\n\n- What are your favorite books (any topic) of all-time?\n- What are the essential Bitcoiner books that all stackers should read?\n- What are your favorite blogs or newsletters?\n- Do you regularly read any newspapers or journals? \N 17237 \N 435140 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0707660453231 0 \N \N f 0 \N 0 3392219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:06:21.526 f \N \N \N 0 0 0 0 0 0 0 435080 2025-03-12 12:51:23.027 2025-03-29 22:39:51.705 \N I'm an AirBNB host, and a bitcoiner. I demand KYC for my rental because of liability. I just declined a $1000 booking because the identity seemed phony. They are different. Tough luck finding a no-ID hospitality business without putting down some serious collateral. https://example.com/ 14465 435037 434991.435037.435080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3498516322472 0 \N \N f 0 \N 0 177658176 0 f f \N \N \N \N 434991 \N 0 0 \N \N f \N 2025-03-19 06:11:12.293 f \N \N \N 0 0 0 0 0 0 0 435477 2025-03-12 18:00:57.936 2025-03-29 22:39:51.705 \N A daughter shows her banker father her work on Bitcoin's lightning network. In response he asks her if she would like to hear his opinion on Bitcoin. She replies yes.\n\n"It's worthless" her father says.\n\n"I know" she replies, "But let's hear it anyway". https://example.com/ 7682 435423 435411.435418.435422.435423.435477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.812425294564 0 \N \N f 0 \N 0 218096054 0 f f \N \N \N \N 435411 \N 0 0 \N \N f \N 2025-03-19 11:46:12.667 f \N \N \N 0 0 0 0 0 0 0 435470 2025-03-12 17:51:13.884 2025-03-29 22:39:51.706 \N Nostr has a long ways to go to survive another year, let alone be a solution for anyone in 2030. Let's not get ahead of ourselves here. https://example.com/ 956 435446 435261.435446.435470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.75540230224409 0 \N \N f 0 \N 0 131378319 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:33.381 f \N \N \N 0 0 0 0 0 0 0 434588 2025-03-12 03:45:42.794 2025-03-29 22:39:48.159 The Future of Social Security By [Karl Streitel](https://mises.org/profile/karl-streitel)\n[Social Insecurity: It’s Not Wrong to be Concerned about Facts](https://mises.org/wire/social-insecurity-its-not-wrong-be-concerned-about-facts)\n> Social Security is headed for reduced benefits, and no amount of political rhetoric or even tax increases will solve that problem. The numbers do not lie.\n\nFor decades now, younger generations of Americans have believed that Social Security will be defunct by the time we retire. It is hopelessly underfunded, so that seems pretty reasonable. \n\nWhat specifically do people expect to happen with Social Security?\n\nI think it's unlikely to be dissolved anytime soon and I also don't think people will tolerate the benefits simply being inflated away.\n\nI see two reforms as highly likely:\n* Means testing (initially set at a very high level, but then it will creep down)\n* Increasing eligibility age to collect (progressively raise the age until the program is solvent) \n\nThere's an entirely different reform I'd prefer be considered:\n* Enact some sort of elder care, similar to child care, so that families are on the hook to provide for their elderly members before taxpayers are. \N 19446 \N 434588 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 24.9200486561463 0 \N \N f 0 \N 0 97446291 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 06:47:48.358 f \N \N \N 0 0 0 0 0 0 0 446358 2025-03-21 05:59:56.172 2025-03-29 22:39:48.159 Flash Is Reinventing Caribbean Money with the Breez SDK \N https://medium.com/breez-technology/building-on-lightning-flash-is-reinventing-caribbean-money-with-the-breez-sdk-d26ef8b81fb8 18274 \N 446358 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 24.5736282958119 0 \N \N f 0 \N 0 8085356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 10:09:44.936 f \N \N \N 0 0 0 0 0 0 0 435621 2025-03-12 20:31:29.446 2025-03-29 22:39:51.706 \N Yeehaw 🤠\n\nhttps://imgprxy.stacker.news/5EqYkYppixmiZiOJQxvhZU6YlG-k2kxvrW4BjjdhhS8/rs:fit:1280:720/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy83NjM2\n\nhttps://imgprxy.stacker.news/MmU8iuElXfWGsoK9SqCE9HQ2XERxUwg7qFDmtB9dTVk/rs:fit:1280:720/aHR0cHM6Ly93d3cuaGVyZWNvbWVzYml0Y29pbi5vcmcvYXNzZXRzL2JpdGNvaW4tZGFuY2luZy5naWY\n\nhttps://imgprxy.stacker.news/uGAYDX0oL3wrLTmfMVKMhNlBeGaQvHQFcB4CfhnLWwc/rs:fit:1280:720/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy80MjEy https://example.com/ 11153 435619 435328.435487.435605.435612.435619.435621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0106721298694 0 \N \N f 0 \N 0 60384066 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 2025-03-19 13:54:29.728 f \N \N \N 0 0 0 0 0 0 0 434186 2025-03-11 16:45:09.879 2025-03-29 22:39:51.706 \N Very serious facts here…\n\nhttps://bitcoin-facts.onrender.com/ https://example.com/ 3717 432553 429509.432405.432553.434186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.883302168320874 0 \N \N f 0 \N 0 115738360 0 f f \N \N \N \N 429509 \N 0 0 \N \N f \N 2025-03-18 22:58:17.881 f \N \N \N 0 0 0 0 0 0 0 443378 2025-03-19 10:05:46.044 2025-03-29 22:39:51.706 \N That the saying "time is money" (often [incorrectly](https://en.wikipedia.org/wiki/Time_is_money_(aphorism)) attributed to Benjamin Franklin) has all but lost its original meaning from around 1719 and that bitcoin will fix this - amongst other things... https://example.com/ 18011 443100 443099.443100.443378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3626427431871 0 \N \N f 0 \N 0 188831086 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 2025-03-26 03:54:22.576 f \N \N \N 0 0 0 0 0 0 0 436609 2025-03-13 17:55:27.909 2025-03-29 22:39:51.706 \N better than being the face of http://thebitcoincompany.gay https://example.com/ 1236 436582 436499.436582.436609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.98184688529421 0 \N \N f 0 \N 0 232493625 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 2025-03-20 12:49:14.076 f \N \N \N 0 0 0 0 0 0 0 430104 2025-03-08 20:33:56.046 2025-03-29 22:39:51.706 \N I just tried. I can't make a receive connection. https://example.com/ 16542 429642 429642.430104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0922828185062 0 \N \N f 0 \N 0 106861614 0 f f \N \N \N \N 429642 \N 0 0 \N \N f \N 2025-03-20 09:53:06.989 f \N \N \N 0 0 0 0 0 0 0 434982 2025-03-12 11:39:38.695 2025-03-29 22:39:51.706 \N Probably makes sense to remove the OP for anon comments since it could be confusing. Someone could come in and mislead. https://example.com/ 20275 434499 434469.434497.434499.434982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5223134177852 0 \N \N f 0 \N 0 208454710 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 2025-03-19 06:42:49.141 f \N \N \N 0 0 0 0 0 0 0 435475 2025-03-12 18:00:29.6 2025-03-29 22:39:51.706 \N Buy Bitcoin\n\n![](https://imgprxy.stacker.news/qqEQ-4ax-mP1OtDRcxNeYddtJGPiqj3IR2GyKZIG9aA/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvQlFLZ0hDemgvYnRjLWFydC1zZXAtNDEuanBn) https://example.com/ 13327 435474 435412.435474.435475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5400191355143 0 \N \N f 0 \N 0 244462799 0 f f \N \N \N \N 435412 \N 0 0 \N \N f \N 2025-03-19 15:58:47.989 f \N \N \N 0 0 0 0 0 0 0 433842 2025-03-11 12:46:26.847 2025-03-29 22:39:51.706 \N Day 178 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 5497 433833 433833.433842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1004246756465 0 \N \N f 0 \N 0 127688226 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 2025-03-18 19:48:28.313 f \N \N \N 0 0 0 0 0 0 0 448234 2025-03-22 13:54:23.517 2025-03-29 22:39:51.706 \N This is a great visual! Do you happen to know where I can see the source data for the lines? I would love to use this for the book I'm writing. https://example.com/ 20756 448230 448200.448230.448234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2261515048771 0 \N \N f 0 \N 0 9666672 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N 2025-03-29 08:39:12.845 f \N \N \N 0 0 0 0 0 0 0 436071 2025-03-13 09:37:17.729 2025-03-29 22:39:51.706 \N \n\nhttps://m.primal.net/HfNu.jpg https://example.com/ 17568 436063 436036.436063.436071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.16309925637699 0 \N \N f 0 \N 0 62332509 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N 2025-03-20 02:55:55.706 f \N \N \N 0 0 0 0 0 0 0 436506 2025-03-13 15:42:51.591 2025-03-29 22:39:51.706 \N Exactly! You would also want to encourage input through replies here. Example - I review Mutiny Wallet and want Tony's input and reaction through replies. https://example.com/ 891 436337 435610.435767.436337.436506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1976498194748 0 \N \N f 0 \N 0 93907316 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 2025-03-20 09:13:10.787 f \N \N \N 0 0 0 0 0 0 0 435540 2025-03-12 19:08:12.933 2025-03-29 22:39:51.706 \N all time favorites: blood meridian (rip cormac), grapes of wrath, sometimes a great notion, slaughter house five, fear and loathing in las vegas, and 1984.\n\nright now i'm reading the first law trilogy by joe ambercrombie. i'm probably about 70% through the first book, and digging it so far. would definitely recommend if you like fantasy https://example.com/ 7847 435495 435495.435540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.61778194577154 0 \N \N f 0 \N 0 110722402 0 f f \N \N \N \N 435495 \N 0 0 \N \N f \N 2025-03-19 22:18:12.272 f \N \N \N 0 0 0 0 0 0 0 436254 2025-03-13 12:20:13.817 2025-03-29 22:39:51.706 \N In your view, what is the biggest risk bitcoiners should be aware of when using Bold? https://example.com/ 19527 436241 436241.436254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.953288429057 0 \N \N f 0 \N 0 107175988 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:33:28.477 f \N \N \N 0 0 0 0 0 0 0 421398 2025-03-01 16:12:07.879 2025-03-29 22:39:51.707 \N > Is spending your Bitcoin an effective way to create Bitcoin adoption?\n\nYes. If nobody spends their bitcoin, how are bitcoin businesses supposed to survive? If there are no bitcoin businesses/services, what use does bitcoin have outside hoarding? https://example.com/ 19759 419475 419296.419475.421398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.80527091135587 0 \N \N f 0 \N 0 149943873 0 f f \N \N \N \N 419296 \N 0 0 \N \N f \N 2025-03-19 07:50:50.434 f \N \N \N 0 0 0 0 0 0 0 436512 2025-03-13 15:50:47.13 2025-03-29 22:39:51.707 \N Fuck don't know any of these folks xept Snowden. I asked him a question once In a public forum zoom call thing. I was so excited to get to ask a question that I forgot my question and sat down. Thus began.........the dark times........ https://example.com/ 7667 436330 436258.436330.436512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51195549441441 0 \N \N f 0 \N 0 3662830 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 2025-03-20 09:25:06.911 f \N \N \N 0 0 0 0 0 0 0 443247 2025-03-19 07:51:33.294 2025-03-29 22:39:51.707 \N Laxitive pills -- gradually, then suddenly 🤣 https://example.com/ 18615 437968 435142.437968.443247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.92570435537158 0 \N \N f 0 \N 0 85356543 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N 2025-03-26 06:20:55.581 f \N \N \N 0 0 0 0 0 0 0 434856 2025-03-12 09:42:45.593 2025-03-29 22:39:51.707 \N Grateful that we have incredible devs working on projects that will bring Bitcoin to billions. Bear markets are the best to time build. LFG https://example.com/ 21373 434484 434469.434484.434856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.56773561303847 0 \N \N f 0 \N 0 75199938 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 2025-03-19 04:09:28.306 f \N \N \N 0 0 0 0 0 0 0 448372 2025-03-22 15:15:44.815 2025-03-29 22:39:51.707 \N I see the value proposition for territory founders to have tools they may wish to use and to use them as they see fit but I don't see the value proposition for SN broadly. The benefit of territories besides the revenue is breadth of content hopefully leading to more activity on the site and more users on the site. The drawback at least currently as we are in the early days (wild west phase) of territories is a more siloed user experience. I think giving founders tools to restrict engagement (I am not talking about bots or zap farming posts) further silos SN. I think it is a delicate balance you have to strike between growing SN and the feature set and maintaining the magic that got SN to this point. \n\nIn my opinion, the territories are like "franchises" of SN. There should be some tools and autonomy for territory founders to manage their territories as they see fit but ultimately those should align with the broader SN experience, value proposition, user loyalty ethos. \n https://example.com/ 18270 448363 448200.448232.448363.448372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4225197427864 0 \N \N f 0 \N 0 28279397 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N 2025-03-29 08:46:10.894 f \N \N \N 0 0 0 0 0 0 0 434343 2025-03-11 19:54:42.646 2025-03-29 22:39:48.16 Does India still follow Gold Standard for its Currency Indian Rupee (INR)? While having a very intriguing conversation with @Undisciplined on the topic of 'gold being bought by governments'. Our conversation just caught me off guard when I mentioned that India still follows ['A Gold Standard'](https://en.m.wikipedia.org/wiki/Gold_standard). I made this comment knowing 'A Gold Standard' is still theoretically right for India but is it the same that we had till 1971 when the United States unilaterally terminated convertibility of the US dollar to gold, effectively ending the [Bretton Woods system](https://en.m.wikipedia.org/wiki/Gold_standard)?\n\nAssuming that it's a matter of comprehensive nature, I requested @Undisciplined to give me some time to come up with a post about this. To understand whether India still follows 'The Gold Standard', we first need to understand what the law says in this regard.\n\nAll banknotes issued by RBI are backed by assets such as gold, Government Securities and Foreign Currency Assets, as defined in Section 33 of RBI Act, 1934.\n\nSection 33 of RBI Act, 1934 prescribes the following:\n\n* The assets of the Issue Department shall consist of gold coin, gold bullion, 7 [foreign securities], rupee coin and rupee securities to such aggregate amount as is not less than the total of the liabilities of the Issue Department.\n\n* The aggregate value of the gold coin, gold bullion and foreign securities held as assets and the aggregate value of the gold coin and gold bullion so held shall not at any time be less than two hundred crores of rupees and one hundred and fifteen crores of rupees, respectively. (Minimum 200 crore of gold and foreign securities of which gold should not be less than of worth 115 crore).\n\n* The remainder of the assets shall be held in rupee coin, Government of India rupee securities of any maturity, promissory notes drawn by the National Bank for any loans.\n\nTo conclude this law **'Indian rupee is backed by gold but to a limited extent.'**\n\nSource :\n\nhttps://m.rbi.org.in/scripts/FAQView.aspx?Id=136\n\n\n**The Indian rupee is backed mainly by Foreign Currency ( 95.5%) and some Gold ( 4.5%).**\n\nRBI or the Govt of India does not promise to back the INR with Gold. RBI holds around 558 tonnes of Gold ( 2018) . The valuation of this Gold changes from time to time depending on the market price of Gold. This is held in Nagpur, but a part of this is also held in London which was the Gold returned to India after Chandrashekhar Government had to transfer the 47 tonnes of Gold to London as a collateral for a $405 million loan in Foreign Exchange.\n\nAs far as I know, Gold backing needs 50 % gold in value as compared to the notes printed by the government. While the currency in circulation is itself around ₹ 22 trn for india. While this itself will require some 8000 tons of gold to back it. India has hardly a thousand tonnes of gold. Or equivalent of 6%. As the gold reserves India are just very small and the currency remains floating, the currency value is no way connected to gold reserves today.\n\nThe currency value is rarely an indicator of the gold reserves. The most indebted country in the world is USA with a very large proportion of debt as external debt.\n\n![](https://m.stacker.news/44469)\n\nBut it's currency is so called world currency. It may loose that status in future. It's gold reserves are not even 5 % of the external debt at current price of gold. Still so many countries hold USD as a reserve as against gold.\n\n# This is Important:\n\n***But one thing can't be ignored that Indians have a very large holdings of gold as compared to their central bank, RBI. Many mandirs (Temples) in India are far richer than RBI in terms of gold. While Indians swallow as much as 800 tons of gold per year, excluding the jwellery exports. So, I would hold that Indians will be least affected if the global currency crashes or is changed to some gold backed currency.***\n\n**And this is Indian Currency is practically backed by Gold not by any Foreign Currencies such as USD.**\n\nWhat do you say?\n\n**Does India hold an edge for people hold a lot of Gold?**\n\n**Can INR be considered to be backed by Indians as they generally buy a lot of Gold with their savings?**\n\nI would mainly love to listen to the views of everyone on the last paragraph of this post.\n\nThanks for reading!\n\n\n\n\n \N 19193 \N 434343 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.0321243585494 0 \N \N f 0 \N 0 68494604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:01.796 f \N \N \N 0 0 0 0 0 0 0 436654 2025-03-13 18:55:20.965 2025-03-29 22:39:48.16 Nashville Bitcoin Conference will have TSA-like security Ugh. I just received this email. If you thought the lines in 2021 were bad, wait until you see 2024's.\n\n> # Key measures impacting your experience:\n> \n> 1. **Security Lines:** Security lines will take time. Expect delays and plan accordingly.\n> 2. **Bags:** We strongly recommend no bags. It will add to your delay entering the building and secure areas. Review the Prohibited Items list.\n> 3. **Nakamoto Stage:** We will not accommodate every attendee. We encourage you to watch the Trump’s speech from the other six stages (and Kennedy’s speech in the Karl Dean Ballroom.)\n> \n> ---\n> \n> # Two Layers of Security\n> \n> ### Venue Entrance:\n> - All attendees will pass through a magnetometer.\n> - Bags (small backpacks, purses, diaper bags) will be searched. No large packages, bags, or luggage will be allowed.\n> - Bags will slow your entry; only bring essentials.\n> \n> ### Nakamoto Stage:\n> - Attendees will pass through a 2nd magnetometer screening to access the seating area.\n> - **Trump’s Speech (Saturday, 2pm):**\n> - Access starts at 8:00am for all pass types.\n> - Whale and Industry Pass holders must enter through Enterprise Hall and **must be seated by 12:45pm**.\n> - Doors close at 1:45pm.\n> - **Kennedy’s Speech (Friday, 4pm):**\n> - Access starts at 8:00am for all pass types.\n> - Whale and Industry Pass holders must enter through Enterprise Hall and **must be seated by 2:45pm**.\n> - Doors close at 3:45pm.\n> - No seat saving; every seat will be filled. We recommend arriving with the group you want to sit with.\n> - No privacy masks will be allowed in Nakamoto Stage. They are permitted elsewhere in the building.\n> \n> ### Nakamoto Stage Capacity:\n> - Room capacity is limited to 8,000 seats. We expect 20,000 attendees. Seats for speeches are not guaranteed, and latest arrivals will be standing. When capacity is reached, you will be encouraged to watch Trump’s speech from the other stages.\n> \n> ---\n> \n> # Viewing Options:\n> \n> - **Karl Dean Ballroom Watch Party:** Skip the lines, grab a beer and watch Trump’s speech with friends.\n> - **Note:** The Karl Dean Ballroom will stream Nakamoto Stage content all day, both days.\n> - **Mining, Open Source, Genesis, Enterprise, and The Deep Backstage:**\n> - All open for viewing.\n> - **Enterprise and The Deep Backstage:** Located inside the Secret Service perimeter. We recommend staying until speeches end to avoid delays re-entering.\n> \n> ---\n> \n> # Prohibited Items:\n> \n> The following items are prohibited from entering the venue and Nakamoto stage:\n> - Outside food and drink\n> - Alcoholic beverages\n> - Large Banners, signs, placards\n> - Drones and other unmanned aircraft systems\n> - E-Cigarettes and vapes\n> - Explosives of any kind\n> - Firearms\n> - Glass, thermal and metal containers\n> - Laser lights and laser pointers\n> - Mace and/or pepper spray\n> - Noisemakers, such as air horns, whistles, drums, bullhorns, etc.\n> - Spray containers\n> - Supports for signs/placards and tripods\n> - Weapons\n> \n> ---\n> \n> We appreciate your cooperation and understanding as we implement these necessary measures. And we look forward to having you at this historic event for Bitcoin.\n \N 880 \N 436654 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 4.71116959364977 0 \N \N f 0 \N 0 171424255 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:19:29.663 f \N \N \N 0 0 0 0 0 0 0 434413 2025-03-11 21:36:53.729 2025-03-29 22:39:51.707 \N I lived there back when BTCUSD was @ 600 but most of my orange pilling fell in deaf ears, I hope many of them already realized why it was important to allocate part of their savings into it. \nIt hurts me to see how central powers f* up the country so badly, it's a beautiful place. https://example.com/ 8989 433746 433594.433746.434413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7500103400704 0 \N \N f 0 \N 0 21926506 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 2025-03-18 17:58:06.22 f \N \N \N 0 0 0 0 0 0 0 446904 2025-03-21 14:22:01.075 2025-03-29 22:39:51.708 \N Elon says it's a liquidity issue with the Shanghai factory shut down and they may buy more in the future. https://example.com/ 623 446774 446774.446904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9127246067645 0 \N \N f 0 \N 0 127074891 0 f f \N \N \N \N 446774 \N 0 0 \N \N f \N 2025-03-28 11:50:18.674 f \N \N \N 0 0 0 0 0 0 0 436252 2025-03-13 12:18:46.908 2025-03-29 22:39:51.708 \N Broadcasting through your own node can actually be considered a bad practice. The best way to broadcast a transaction is to connect to a node over tor and then disconnect. Using your own node is suboptimal because people can then link your transaction to your node's ip address. https://b10c.me/observations/06-linkinglion/\n\nThis is supposed to be the next best thing. You can broadcast your transaction through a 3rd party with much less of a chance to leak your IP because you're going through a relay. https://example.com/ 18673 436106 436028.436053.436106.436252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.86033169858008 0 \N \N f 0 \N 0 212051666 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:39:39.37 f \N \N \N 0 0 0 0 0 0 0 434613 2025-03-12 04:21:32.417 2025-03-29 22:39:51.708 \N > With Strike BLACK, your app can let users:\n- Buy, sell, and hold bitcoin\n- Send and receive payments via Bitcoin or Lightning\n- Connect cash payment methods (banks & cards)\n- Make cash payouts to bank accounts\n- Onboard through KYC flows\n- Use OAuth for authentication, permissions, and access controls\n\n> Strike BLACK is Bitcoin, Lightning, APIs, Cash, and KYC – everything you need to build Bitcoin services into your app. It’s à la carte and flexible, so you can select the services that best fit your needs, and customize how to deliver them to your users, including programmatically via the Strike API or via the in-app Strike widget.\n\nMore [here](https://strike.me/learn/what-is-strike-black/). https://example.com/ 16598 434469 434469.434613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.247340268625 0 \N \N f 0 \N 0 93192963 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 2025-03-19 04:44:56.242 f \N \N \N 0 0 0 0 0 0 0 435378 2025-03-12 16:32:13.12 2025-03-29 22:39:51.709 \N Graham's Number is so big, that if you could hold all its digits in your head, the information density within your skull would exceed that of a black hole.\n\nhttps://www.youtube.com/watch?v=bfiNNlzpi3g\n\n[Of course bigger numbers exist (infinitely many!), but for a long time Graham's Number was the largest number to ever be useful in a mathematical proof.] https://example.com/ 1817 435261 435261.435378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7576524787249 0 \N \N f 0 \N 0 12720772 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:18.327 f \N \N \N 0 0 0 0 0 0 0 434402 2025-03-11 21:26:08.842 2025-03-29 22:39:48.166 Exodus Bitcoin Wallet: $490K Swindle \N https://popey.com/blog/2024/02/exodus-bitcoin-wallet-490k-swindle/ 16357 \N 434402 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 12.9520900924131 0 \N \N f 0 \N 0 37702980 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:56.833 f \N \N \N 0 0 0 0 0 0 0 434301 2025-03-11 19:13:08.81 2025-03-29 22:39:48.166 Mark Twain’s Inconvenient Truths I just discovered this article. I have always loved his writing, particularly Huckleberry Finn. Here his growing awareness of his own racism is discussed, among other things. He has some great quotes. Here's an example: \n\n> Patriotism “is a word which always commemorates a robbery. There isn’t a foot of land in the world which doesn’t represent the ousting and re-ousting of a long line of successive ‘owners’ who each in turn, as ‘patriots,’ with proud swelling hearts defended it against the next gang of ‘robbers’ who came to steal it and did—and became swelling-hearted patriots in their turn.” https://stanfordmag.org/contents/mark-twain-s-inconvenient-truths 5377 \N 434301 \N \N \N \N \N \N \N \N security \N ACTIVE \N 28.043165462612 0 \N \N f 0 \N 0 152449607 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:06.314 f \N \N \N 0 0 0 0 0 0 0 434288 2025-03-11 18:58:14.207 2025-03-29 22:39:48.166 Great thread about latest changes in Bitcoin Core 24.0 RC \N https://twitter.com/kouloumos/status/1574483503655403524 21709 \N 434288 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 2.02466698349461 0 \N \N f 0 \N 0 22823851 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 03:45:54.529 f \N \N \N 0 0 0 0 0 0 0 435304 2025-03-12 15:27:46.299 2025-03-29 22:39:51.708 \N It's funny. @elvismercury and I had a disagreement about which of these books is best as a first bitcoin read. Here, since you already read Bitcoin Standard once, I think it's safe to say Broken Money is the choice for you. It is a fantastic book. You will gain a strong understanding of money, which I think is critical to understanding bitcoin. Lyn is a great writer. Everything is explained clearly and thoroughly. Beware! It is a big book, and I know what a detail oriented reader you are. We may not hear from you for a while. Still, any time you invest in this book is well worth it. Enjoy. https://example.com/ 20220 435294 434795.435147.435294.435304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9025940035695 0 \N \N f 0 \N 0 200554022 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 08:47:41.693 f \N \N \N 0 0 0 0 0 0 0 436068 2025-03-13 09:33:47.412 2025-03-29 22:39:51.709 \N Tor has Exit Nodes (i.e. Tor nodes that can "translate" traffic to/from a clearnet-IP address into Tor hidden traffic. However, Tor exit nodes are not used at all in LN routing.\n\nBasically, LN has it's own "exit nodes" (i.e. LN nodes that run BOTH a hidden service address AND a clearnet address). These nodes can "translate" traffic to/from a clearnet-only node to a tor-only node for example. \n\nhttps://bitcoin.stackexchange.com/a/90767\n\nSo the fact that I2P has no exit nodes should not matter. https://example.com/ 4323 435883 435883.436068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.6947843018586 0 \N \N f 0 \N 0 28370415 0 f f \N \N \N \N 435883 \N 0 0 \N \N f \N 2025-03-20 04:12:00.001 f \N \N \N 0 0 0 0 0 0 0 435751 2025-03-12 23:41:45.051 2025-03-29 22:39:51.709 \N The hold invoices is great. I wish I did that in the TBC backend, so many times the gift card providers would fail and we'd have the money and have to issue refunds https://example.com/ 20775 435231 435231.435751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7981000085517 0 \N \N f 0 \N 0 31566532 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 2025-03-20 08:24:52.649 f \N \N \N 0 0 0 0 0 0 0 447118 2025-03-21 16:21:06.454 2025-03-29 22:39:51.71 \N Oh they know. If you think they are giving @kr full access to their database then you're dead wrong. https://example.com/ 17201 447027 446313.446884.446898.446927.446961.446988.447006.447016.447027.447118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3116337309675 0 \N \N f 0 \N 0 155346415 0 f f \N \N \N \N 446313 \N 0 0 \N \N f \N 2025-03-28 11:12:27.482 f \N \N \N 0 0 0 0 0 0 0 434436 2025-03-11 22:15:30.998 2025-03-29 22:39:51.71 \N Does Riot plan to generate their own power (solar, wind, gas, etc) or draw from local power providers? https://example.com/ 1009 434243 434243.434436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9409596441341 0 \N \N f 0 \N 0 205126843 0 f f \N \N \N \N 434243 \N 0 0 \N \N f \N 2025-03-18 20:14:07.225 f \N \N \N 0 0 0 0 0 0 0 435196 2025-03-12 14:19:08.961 2025-03-29 22:39:51.708 \N i'll be successful when i stop measuring my success https://example.com/ 11220 435086 435030.435086.435196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9777273204547 0 \N \N f 0 \N 0 52432961 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 19:36:31.771 f \N \N \N 0 0 0 0 0 0 0 434471 2025-03-11 23:37:03.645 2025-03-29 22:39:51.708 \N What kind of liquidity issues, if any, have you experienced while developing Fountain? https://example.com/ 2710 433487 433476.433483.433487.434471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3878726069164 0 \N \N f 0 \N 0 203605816 0 f f \N \N \N \N 433476 \N 0 0 \N \N f \N 2025-03-18 20:14:26.115 f \N \N \N 0 0 0 0 0 0 0 434651 2025-03-12 05:24:11.58 2025-03-29 22:39:51.708 \N Wow, thanks for surfacing my parenting post and more importantly, highlighting the bit that you resonated with.\n\nI may be playing the victim card here but heck. Part of what angers me in my parenting journey is how the narrative in Singapore has always been about the financial costs of raising kids. We had a parenting campaign whose slogan was “Have three or more, if you can afford it”. I welcome the baby bonuses and free vaccinations and other monetary incentives - but I feel sick that the non-monetary costs are hardly discussed. It’s such a simplistic and reductionist approach of framing things. You highlighting that part made me feel that my pains are acknowledged. I don’t even need to feel accepted. That’s why I barely flinched when 1-2 Stackers basically asked me to man up in the kindest way they could haha. Because I felt heard. \n\nI want to share something that none of the Stackers talked about but really helped me tremendously. It happened last December when I was watching a Japanese celebrity undergoing a fortune-telling session. The celebrity asked the fortune-teller if he should get married. The fortune-teller said that regardless of whether he got married or not, he would regret it because he hates feeling trapped. A case of darn if you do, darner if you don’t.\n\nI just felt so relieved hearing those words because basically that’s it: I hate feeling trapped. Then I came across this fabulous quotation by Soren Kierkegaard 1813–55:\n\nMy honest opinion and my friendly advice is this: do it or do not do it—you will regret both.\n\nI won’t call it an epiphany but this bolt of realisation just made all the mental clutter and swirling feelings settle down like sentiments on the rock bed.\n\nI regret becoming a father.\nBut I also know that I will regret not becoming a father.\n\nI think this quotation helps me because it makes me realise that there are assorted costs related to either choice. Life is complicated as such.\n\nI hope this helps you when you come to that stage in life.\n\nNonetheless, I’m so glad I posted that post because I apply these pieces of advice put forth by Stackers in my life these days:\n\nTrim the fat. Make him love reading. Tell yourself “I get to do it” rather than “I have to do it”. Remember your wife is as burnt out as you are. Building a family is long-lasting; working as a corporate rat is temporary. Keep in mind the low time-preference. Do things to enjoy your kids. The storm will pass. \n\nI tell myself this every day ☝️😃 https://example.com/ 2203 434285 434285.434651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4504488028019 0 \N \N f 0 \N 0 168145320 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 2025-03-19 07:25:51.208 f \N \N \N 0 0 0 0 0 0 0 443393 2025-03-19 10:18:01.639 2025-03-29 22:39:51.708 \N I love it!\n\nI've advocated for OP's getting to set the reply fee before, but I hadn't thought of it being customizable to individual responders.\n\nI also like applying this idea to tagging stackers, which I know @k00b has brought up before. https://example.com/ 1471 443386 443372.443386.443393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.82308645232856 0 \N \N f 0 \N 0 165408755 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 04:34:23.96 f \N \N \N 0 0 0 0 0 0 0 434781 2025-03-12 08:31:27.341 2025-03-29 22:39:51.709 \N It's a messy, organic process - and this incremental progress comes with a lot of failures, problems and pain.\n\nThere is no shortcut through all of this when people must make a voluntary decision to act at a worldwide level, to an individual degree - it's both an immense transformation, and a simple choice. Patience, for me, has been the real test, rather than faith, and i have internally struggled as you seem to be currently on your terms in your own journey.\n\nSome of your points are valid - i don't have any answers to 'what to do' about speculators, scammers, or the venality of the state, in any jurisdiction of the world - i can only continue to make MY decisions, and pursue the path of that transformation to the best of my ability, in the understanding that i am not alone in that position - honestly, if i look at the wider situation in the world, what else is there ?\n\nYour username is remnant, you claim to anarchism/voluntaryism - it goes with the territory to be the intolerant minority and know this whole thing, it's not about making a quick buck, it's not a game; it's about changing things, by being the change - however hackneyed that phrase may be, it's the only way, and the fact that a lot of people can't/won't see it at any given moment is one more ugly fact to be dealt with.\n\nTake heart, we ARE a minority; not just in the world, but even in Bitcoin space - i am utterly disinterested in traders, speculators, and shills, and fully anticipate the state inflicting itself ever more viciously as it begins to thrash to preserve it's position over the rest of us - some of the 'toxic' amongst us have warned for years about everything you mention, even as most ignore, or even deride them - so thankful that i had the instinct and un-common sense to heed their overwhelmingly correct assertions .\n\nYou're right - expect more ugliness, call out the fakers, speak the bald truth, lead by example.\n\nIt was never going to be easy. https://example.com/ 10484 434779 434637.434779.434781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3848359794205 0 \N \N f 0 \N 0 174099863 0 f f \N \N \N \N 434637 \N 0 0 \N \N f \N 2025-03-19 01:50:56.781 f \N \N \N 0 0 0 0 0 0 0 434406 2025-03-11 21:30:42.662 2025-03-29 22:39:51.709 \N What's the point of this software? I'm ve downloaded it, run it, finished initial wizard and then kinda stuck - what to do next? What's the added value? For which tasks should I use it? https://example.com/ 671 434395 434285.434395.434406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.44074366472105 0 \N \N f 0 \N 0 133063945 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 2025-03-18 17:17:29.006 f \N \N \N 0 0 0 0 0 0 0 448788 2025-03-22 21:46:49.566 2025-03-29 22:39:48.166 Privacy: Where Should You Start? # Privacy: Where Should You Start?\n\nThreat modeling sounds like something you'd hear in a documentary about the CIA or something. But it simply refers to the threats that you are defending against. In the context of personal privacy you can think about it like this. What persons or groups are you concerned about? An ex boyfriend, identity thieves, Google, or a nation state? Depending on your answer to that question your threat model will be very different.\n\nYou have probably heard the scary stories about identity theft, oppressive governments, stalkers, and exploitation that can result from poor data privacy. You likely want do something about it. It can be overwhelming even for those comfortable technology. You certainly will hear unfamiliar terms.\n\nYou've likely heard extreme suggestions like don't use a smart phone or stop using social media with little explanation of the trade-offs. The end result of all this is often just giving in to apathy. I often hear people say "What's the point? There's already so much out there about me". Don't give into the anti-privacy propaganda. Privacy isn't all or nothing, its a spectrum. You can always be more or less private. We are constantly creating new data about ourselves and our families so what we do now does matter. Yes, there are things you can't undo but don't give up. Anyone can make choices to decrease their risk and increase their privacy.\n\n## Start with the why\n\nI recently wrote a [post](https://stacker.news/items/218189) explaining why everyone should care about privacy. As with many important things its a good idea to start with the why. Your why. Why do **you** want to take privacy seriously? There can be many reasons why people start to think about their data privacy. Often something happens to trigger this though. You hear a news story and realize that something similar could happen to you. Maybe it was a story about how someone used social media to hurt someone they know. Maybe an ex.\n\nMaybe it is how much data Google collects about us and how that makes you feel. Maybe its a government's actions against protesters or marginalized groups. Maybe you heard about how cyber criminals ruined someone's life. Or maybe you've just had it with surveillance capitalism. You want to take a stand on principle. Whatever the reason, you need to start with the why.\n\nPrivacy is not secrecy. Privacy is about choice. Privacy is about empowering yourself to choose who knows what about you. Most people do not need to be anonymous all the time and everywhere. Being anonymous online is not easy to do and starting with why will help you focus on your actual goals. If you don't start with the why you will waste your time doing things that don't impact your privacy in the areas that you care about. The best way to avoid this mistake is to evaluate your priorities and risks by creating a threat model.\n\n## Threat Modeling\n\nI suggest you start writing down notes in a notebook or open a text document on your device. Start documenting your thoughts as we go through this.\n\n### What do you want to protect?\n\nHere are a few general areas you might want to think about protecting. Maybe you are not concerned with all of these and likely your priorities will be different from others.\n\n* Family\n* Location of your home\n* Finances (banking, bitcoin, investments)\n* Employment (Where you work, losing your job.)\n* Communications (email, phone messages, contacts, notes)\n\n### Who are you protecting these things from?\n\nWho are you concerned about? This is not an exhaustive list but it should give you an idea of how to start to think about this topic. We can call these individuals and groups adversaries because they may want to take your privacy or cause you harm.\n\n* Criminals\n* People you know\n* Big tech companies\n* Governments\n\n#### Criminals\n\nWe all should be concerned about defending our data from criminals. If you happen to be either high profile or high wealth individual you should take this threat even more seriously. A few years ago the crypto hardware wallet company Ledger had a [data breach](https://www.ledger.com/message-ledgers-ceo-data-leak) that exposed the email addresses, names, and home addresses of thousands of their customers. The impact of this is unfolding. If you were affected by this breach your private info is now public along with the knowledge that you are likely a holder of crypto. This even made me think twice about what info I share and with you I share it.\n\n#### Big Tech\n\nGoogle and the other tech giants know a lot about us. Most of us have probably thought about this with disgust. We don't know everything that Google does with all of this data but we know they scan all email in Gmail. They say this is to display relevant ads but you are trusting them if you use their services. Think about that. How much trust are you putting in Google? What kind of data do they hold about you? Have you stopped and thought about what they could do to you with this data? That's besides the possibility that they may decide you shouldn't be on their platform. There are many cases where someone has been kicked off of Google or other cloud providers and lost access to their photos, documents, emails, etc. I'm not saying this will happen to you but it could happen. How bad would that be for you?\n\nAnother scenario to consider is if you are falsely accused of a crime. What if you are morally right but are breaking some law? If a company like Google or Apple can access the data requested by a government they will turn it over. You can't trust them to defend your rights. I'm not saying to not use these platforms, I'm saying you are trusting them. Think about what you are trusting them with and the consequences of that choice.\n\n#### Government\n\nWhile you may not live in nation that has oppressive tendencies today are you confident that this will remain true? Nations can turn from peaceful to violent and oppressive very quickly. Regimes come and go, how confident are you that you will never be a target of those in power? I'm not trying to frighten you, I'm just trying to make you think. You may be on the "right" side today but will that always be the case? What happens if people that hate people like you take power? The time to think about these scenarios is today, not when things take a turn for the worse. If this takes place your digital life, and your phone may testify against you. They may be the tool used to bring you down.\n\n#### People you know\n\nFamily is very important to me. A good family can be a lifeline when you are in need. A healthy family loves and supports each other. Unfortunately many of you will have someone or multiple people in your life that may wish you ill. These people may even be family. The sad truth is that if you don't practice good privacy practices a person that knows you could make your life very unpleasant.\n\n### What is the likelihood of attack?\n\nOnce you have a list of threats you should prioritize the list by those mostly likely to occur. Focus on these items first. Your cell phone network can see all\nof your phone calls, your SMS messages, and have much more data about you. That said, how likely is it that they will expose this data or use it against\nyou? That all depends on your threat model. While it might seem unlikely that they would use your data against you if data is requested by the government they will turn over anything they have. This is one reason to limit the access your phone provider has to your data. Go through this thought process for each item you want to protect.\n\n### What would happen if your data was exposed?\n\nThink through what you have to protect. What are the best and worst case scenarios?\n\nWhat would happen if:\n\n* Your name and address were made public\n* Your purchase history online was public\n* Your text communications were required to be shared in court\n* Your social media posts include something offensive considered illegal\n* Your political opinions, and financial support were made public\n\nWhat kind of problems would these things cause for you? How much of a hassle would it be if any of these things happened. It might be less hassle to protect your data now than to deal with the consequences of doing nothing.\n\n## What are the trade-offs? What can you do?\n\nI know I've shared a lot. There's a lot to think about but lets focus on a few things. What are the trade-offs of protecting each item you want to protect. Some things are not likely at threat as others. Some things are harder to defend against than others. Some things are simple and there aren't really any downsides.\n\nThe cliche "Roman wasn't built in a day" is an apt one for taking ownership of your privacy. Your privacy isn't reclaimed in a day. Just take it one step at a time. I know that it can seem overwhelming and at the same time it can seem like you need to do everything at once. This is not realistic for most people. Depending on your threat model it is likely you can take back your privacy in phases. Just don't give up.\n\nIn my next article I will talk about tools and methods you can use to protect your privacy based on several threat models.\n \N 11938 \N 448788 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 7.80533644421116 0 \N \N f 0 \N 0 172023006 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:27:25.031 f \N \N \N 0 0 0 0 0 0 0 447255 2025-03-21 18:16:28.71 2025-03-29 22:39:48.167 Book Review | The Diving Bell and the Butterlfy. \nNot so much a review as a recommendation to read.\n\nThe Diving Bell and the Butterfly (Le Scaphandre et le Papillon) by Jean-Dominique Bauby\n\nWhat is it about (short version)?\nGut-punch exploration of the power of freedom and imagination in the face of truly terrifying adversity. \n\nWhat is it about (long version)?\nJean-Dominique Bauby, was a journalist-editor of French Elle (a beauty and fashion magazine) who at the age of 43 suffered a stroke resulting in 'locked-in syndrome' where, despite maintaining full consciousness, he was unable to move his body except for his left eyelid. It is impossible to separate the process of writing the book, entirely through blinking, from the final work and I would encourage anyone to look further into his transcription method for it is truly inspirational and almost as remarkable as the writing itself. \n\nThe book comprises short chapters highlighting different aspects of his life, and incredibly he is often able to infuse humour and warmth into his observations. His reflections on life itself, love, and mortality resonate throughout and offer an appreciation for the beauty of the human experience in addition to demonstrating his profound longing for freedom from confinement. The contrast between his life before and loneliness he is reduced to after his stroke is dramatic and moving.\n\n"My old life still burns within me, but more and more of it is reduced to the ashes of memory."\n\nHis story challenges common perceptions of disability and prompts the reader to a deep consideration of the issue. It is a true masterpiece (I acknowledge an overused term) that transcends the tragedy from which it is born, showing the strength of the human spirit and the power of storytelling. Life can be both resilient and beautiful despite a person being confined within.\n\n"My diving bell becomes less oppressive, and my mind takes flight like a butterfly"\n\nFor me it sits alongside books such as Victor Frankl's 'Mans Search for Meaning' and whilst not in the detail it is certainly in spirit.\n\nDefinitely recommended 9/10 \N 14489 \N 447255 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.7570445416452 0 \N \N f 0 \N 0 120608588 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:47:41.179 f \N \N \N 0 0 0 0 0 0 0 435693 2025-03-12 22:05:21.048 2025-03-29 22:39:51.709 \N ###### In the U.S., an estimated 46 million turkeys are killed each year for Thanksgiving alone.\n\nsource: https://foodispower.org/animals-on-land/turkeys/ https://example.com/ 14255 434440 434440.435693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7685365991576 0 \N \N f 0 \N 0 112144537 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 2025-03-20 03:52:52.935 f \N \N \N 0 0 0 0 0 0 0 435329 2025-03-12 15:43:26.223 2025-03-29 22:39:51.709 \N ![Printer is coming](https://nitter.it/pic/orig/enc/bWVkaWEvRllzUDFhN1dZQUktcUxFLmpwZw==) https://example.com/ 11158 435264 435261.435264.435329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6865839902138 0 \N \N f 0 \N 0 159922191 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:35.678 f \N \N \N 0 0 0 0 0 0 0 435278 2025-03-12 15:15:43.304 2025-03-29 22:39:51.709 \N [![darth-citadel-btc-future.jpg](https://i.postimg.cc/yx2mtDH6/darth-citadel-btc-future.jpg)](https://postimg.cc/D4d4by0R) https://example.com/ 20655 434971 434440.434723.434971.435278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.416479273485 0 \N \N f 0 \N 0 136213219 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 2025-03-19 08:40:11.313 f \N \N \N 0 0 0 0 0 0 0 436297 2025-03-13 13:01:41.121 2025-03-29 22:39:51.71 \N Censorship resistance is not the same thing as free speech - those are quite different concepts. Free speech doesn't really apply on Stacker News. \n\nFor censorship resistance on SN, there are couple things that could be done:\n- Decentralize, e.g. \n - allow running instance of SN on your own machine/domain (e.g. imagine this could be app on Umbrel)\n - run a mirror on another domain hosted in a different country (e.g. Switzerland or Iceland)\n - provide API and allow creation of standalone apps\n- Add a Warrant Canary on SN\n - Ideally with checkmarks for all countries (so when a warrant comes from a specific country, the checkmark would expire)\n- Add onion address for SN\n- Allow expiring content (could be similar to 4chan, that's how it gets around censorship...)\n- Block reading until users puts in some sats (i.e. censorship resistance by obscurity)\n- Allow users marking inappropriate content/spam (after defining such content)\n- Provide all SN content over RSS and as data dumps (and host mirrors for the data dumps, or put on torrents)\n- Create a backup git repo, e.g. on gitlab\n- Create connections with stackers outside of Stacker News to have alternative communication channels \n- Start hashing content and provide ways for individuals to check whether content has been modified\n\n\n@k00b fwiw https://example.com/ 3213 436270 436028.436053.436125.436257.436259.436263.436270.436297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.280684031168796 0 \N \N f 0 \N 0 57978613 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 06:20:12.656 f \N \N \N 0 0 0 0 0 0 0 434947 2025-03-12 11:08:06.51 2025-03-29 22:39:48.167 CNN In Talks With Iran & Israel To Air More Fake War Content Link: https://www.bugle.news/cnn-in-talks-with-iran-israel/\n\n![CNN.jpg](https://m.stacker.news/27644)\n\nCNN is reportedly in talks with the governments of Iran, Israel, and the U.S. for a $2 billion TV deal which would give the media network exclusive rights to air coverage of the fake war between Israel and Iran. The deal reportedly includes licensing rights and even some say in the creative decisions of the war's script writing process which is largely controlled by the CIA.\n\n"Once we realized the CIA was scripting this whole thing to distract people from far more important and impactful issues and we found out what those issues where, we knew we had to move fast. This thing is just getting started!" CNN CEO Mark Thompson said referring to the emerging new reality television genre of fake war. Reports indicate that Netflix bid on a deal but the CIA felt that the new war would feel more realistic if it was aired on a network news channel with little to no marketing about when episodes would air. "If a new episode airs at 10 PM on a Thursday night, it will feel super real compared to releasing all the episodes at once on Netflix." He noted. Another concern with the Netflix deal was their plan to make at least 20% of the cast for the conflict transgender. The CIA felt it would be too difficult to get approval from the Screen Actors Guild, the union representing Hollywood actors. "It's very likely most of them would have got murdered once they arrived in Iran. There's no way we could sell that to our budget committee. The lawsuits would pose too much risk to our budget and ability to spread Democracy"\n\nWord of the potential deal has CNN's competitors scrambling to secure exclusive deals with other countries struggling with their public image who are desperate to for money laundering commissions from U.S. defense contractor and TV deal revenue. As of April 19, MSNBC has begun preliminary discussions with Russia and Ukraine over the rights to the season finale of their conflict which is transitioning to a fully scripted event this summer.\n\nFox News' coverage of the CNN fake war deal has been sharp and critical, particularly concerning questions about its legality. Sean Hannity claims the deal violates U.S. sanctions on Iran but a legal representative from CNN responded on Anderson Cooper's show last week that the CIA and Pentagon have assured them there won't be any issues over sanctions violations as long as the ratings remain high enough to keep people distracted from real news.\n\nFox also announced it will not pursue TV rights for any fake wars at this time. A spokesman for Fox told The Bugle the network anticipates political operatives will incite racial conflict between minorities and police to build support for tough crime laws or anti-police policy leading up to November's election. The spokesman said with all the other networks airing fake war content, they believe they can capture nearly 100% of this election year's race wars.\n\nLastly, Telemundo has reportedly reached out to several drug cartels, gangs, and even a few governments in Latin America to discuss potential conflict programming for its Spanish language news network. Although no formal discussion have taken place, there are rumors that several Mexican drug cartels are interested in transitioning to scripted activities in the wake of their recent deal to manufacture and distribute Fentanyl for the CIA which eliminates competition and the need for real murdering. \N 1468 \N 434947 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 17.5800103053885 0 \N \N f 0 \N 0 2006742 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 05:29:50.952 f \N \N \N 0 0 0 0 0 0 0 446742 2025-03-21 12:48:54.086 2025-03-29 22:39:48.167 Texas miners appear poised to win restraining order against Biden over mining The Texas Blockchain Council filed suit against Dept of Energy for their "emergency request for bitcoin miners electricity usage". \n\nThe judge says its likely the Plaintiff will win. \n\n![media_GHEmHzxWkAAc9eh.png](https://m.stacker.news/17504) \N 4259 \N 446742 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 9.31472376322663 0 \N \N f 0 \N 0 26301341 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:50:40.54 f \N \N \N 0 0 0 0 0 0 0 409082 2025-02-19 11:53:20.294 2025-03-29 22:39:51.71 \N revisiting my keys security\ndo not put it off, do it asap https://example.com/ 836 408779 408779.409082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7733114765489 0 \N \N f 0 \N 0 150785117 0 f f \N \N \N \N 408779 \N 0 0 \N \N f \N 2025-03-18 19:18:01.983 f \N \N \N 0 0 0 0 0 0 0 436546 2025-03-13 16:22:38.753 2025-03-29 22:39:51.71 \N My general sense is that there are a ton of principled people in btc, as there are in any subculture you can think of; and most of the most principled ones don't try to build brands out of themselves. \n\nThe assorted Breedlove types out there, subsisting on chicken gizzards and raw milk and with a full sleeve tattoo of thorned Christ, portraying their moralizing as the natural endgame of btc enlightenment, are demonstrating something to the world that has nothing to do with btc. If btc didn't exist you can be assured they'd be equally estimable in the fields of BMX racing or cannabis advocacy. They are walking vacuums, and you know how [nature feels about that](https://www.pinterest.com/pin/far-side-nature-abhors-a-vacuum-google-search-in-2021--656118239470954039/).\n\nIt's a good lesson, though, that as contemptible as some of their behavior is, it doesn't mean these types are worthless or un-capable. Breedlove has, as you point out, written some smart things. Before he turned into a full-time tool he was, in different ways, a boon to btc. Many contemptible others are in the same boat. Nobody is just one thing.\n\nIt's alarming that being smart, and understanding some important and subtle truths about the world, doesn't keep you from being a raging asshat. That is definitely a sobering thought that should give a person pause.\n\n https://example.com/ 19198 436320 436290.436320.436546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.16932386896307 0 \N \N f 0 \N 0 6320683 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 2025-03-20 12:06:07.799 f \N \N \N 0 0 0 0 0 0 0 434176 2025-03-11 16:39:35.284 2025-03-29 22:39:51.711 \N I think seed phrases are an abomination and no one should use them :) https://example.com/ 5870 434057 433828.433999.434020.434057.434176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.454585829258 0 \N \N f 0 \N 0 231412826 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-20 06:36:25.307 f \N \N \N 0 0 0 0 0 0 0 435199 2025-03-12 14:22:06.738 2025-03-29 22:39:48.166 🐝 We're Alby - your Bitcoin & Nostr companion on the web. AMA. Hey Stackerz!\n\nWe're a team of Bitcoin, Lightning, Nostr and open-source passionates, with a mission of making Lightning sovereign and accessible to everyone. \n\nOur most popular product is the Alby Browser Extension, that lets users do various lightning magic in your browser, use Nostr securely etc., but we are also behind development of various developer tools, like WebLN, Nostr Wallet Connect or Bitcoin-Connect. \n\nRecently we've launched Alby Hub - self-custodial wallet with a lightning node, quite intuitive and easy to connect with various apps, which is quite a thing for us.\n\n![](https://m.stacker.news/44399)\n\n\nPlease meet @bumi, @MoritzK, @reneaaron, @rolznz, @saunter @itsTomekK, JPL, Adithya and PavanJ, who will answer every question.\n\nPleasure to be here! 🙂 \n\n \N 822 \N 435199 \N \N \N \N \N \N \N \N science \N ACTIVE \N 24.383781553357 0 \N \N f 0 \N 0 8451796 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:22:45.401 f \N \N \N 0 0 0 0 0 0 0 443713 2025-03-19 13:31:23.245 2025-03-29 22:39:48.166 RoboSats v0.6.0 Pre-release: Introducing RoboSats Federation \N https://www.nobsbitcoin.com/robosats-v0-6-0-pre-release/ 9695 \N 443713 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 18.1655442083952 0 \N \N f 0 \N 0 39180064 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:51:31.163 f \N \N \N 0 0 0 0 0 0 0 193487 2024-07-02 17:52:50.971 2025-03-29 22:39:48.167 Nic Carter comments on security budget I was listening to the first part of this [Nic Carter podcast](https://castleisland.libsyn.com/weekly-roundup-092223-sbf-family-in-focus-tether-is-lending-again-ep454) where Nic talked for a bit about the btc security budget in the coming years. This topic has been around and around, but Nic made a prediction about how it will ultimately shake out, which I hadn't heard before.\n\nTLDR: the security budget will be inadequate to secure the chain. As a result, the biggest bitcoin-holding institutions will basically decide on chain state by a combination of coordination and un-economic mining. This will technically still be mining, but not in the way that people currently think about it. It will take place under different economic incentives than the ones currently presenting.\n\nNic gets endless shit among maxis, so maybe I'll emphasize that this isn't the outcome that he _wants_ or that he thinks is the _most desirable_, but is rather what he thinks will happen given the economic forces in play, the trajectory of the fee market as observed over the last 14 years, and the game theory that ensues.\n\nIf this sounds alarming, you may consider [tail emission](https://stacker.news/items/245468) as perhaps the lesser of these evils. Also worth noting that the mining economics around the falling block subsidy is a topic [Udi]((https://stacker.news/items/245468)) frequently raises. The fact that he does so in the face of so much abuse is one reason among many why he's [an asset to the community](https://stacker.news/items/261586/r/elvismercury). \N 20849 \N 193487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.65557208325264 0 \N \N f 0 \N 0 182357707 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:12:26.416 f \N \N \N 0 0 0 0 0 0 0 436402 2025-03-13 14:32:21.537 2025-03-29 22:39:51.711 \N No. It's one business model among many possible. What is reasonable to expect is that an internet that has usable money integrated deeply into it will make non-ad-models 10x more feasible, and therefore there should be waaaay more ad-free, semi-pro content. https://example.com/ 19117 436028 436028.436402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2911848221339 0 \N \N f 0 \N 0 134960012 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 09:47:57.02 f \N \N \N 0 0 0 0 0 0 0 448155 2025-03-22 12:47:43.522 2025-03-29 22:39:48.167 Ark - Protocol to Scale Bitcoin by Sharing UTXOs # Ark - Protocol to Scale Bitcoin by Sharing UTXOs\n\n[Ark](https://github.com/ark-network/ark) is an open-source protocol to scale Bitcoin.\n\nIt was initially proposed in May 2023 by Burak @brqgoo.\n\nMany in the Bitcoin community found the proposal interesting and promising, but since implementing the protocol would have required covenants (soft forks), Bitcoin builders kinda brushed it off for the moment.\n\nA year later in June 2024, "Ark v2" saw daylight, when a new company [Ark Labs](https://arklabs.to/) was founded to build Bitcoin scaling solutions on the Ark protocol.\n\n## Not a Competitor to the Lightning Network\n\nAlthough a scaling solution, Ark is NOT designed to be a competitor to the Bitcoin Lightning Network!\n\nIt can be better seen as a complementary tool.\n\nOn-chain fees are expected to be unaffordable for most people in the future.\n\nIt's also economically unfeasible to open self-custodial Lightning channels for everybody. \n\nSelf-custodial Lightning might not be the easiest way to onboard new users either. \n\nYou need existing inbound liquidity to receive payments (you need to have bitcoin before you can have bitcoin! 🙁)\n\n## Scaling UTXO Ownership\n\nArk scales UTXO ownership.\n\nUTXO (Unspent Transaction Output) is essentially a portion of a Bitcoin transaction, a bit like a physical $5 bill is a portion of a fiat cash transaction.\n\nYour Bitcoin balance consists of UTXOs.\n\n![](https://m.stacker.news/61462)\n\nSending on-chain bitcoin (an UTXO) might be very expensive in the future for many Bitcoin users.\n\nBut what if a single Bitcoin output could have shares from 30 different people?\n\nIt's a bit like having roommates because you can't afford your Manhattan rent! \n\n![](https://m.stacker.news/61463)\n\n## "Virtual UTXOs" (VTXOs) and Ark Service Providers (ASPs)\n\nTo share on-chain transaction costs, Ark users can be onboarded to Bitcoin with Virtual Transaction Outputs (VTXOs).\n\nThese VTXOs are managed by Ark Service Providers (ASPs).\n\nTo use Ark, a user would deposit on-chain BTC to a boarding address, and receive VTXOs.\n\nOr another user of the same ASP could send her some VTXOs to get started.\n\n## UTXO Renting Services\n\nFor a fee, ASPs periodically organize VTXO transactions in rounds and settle these new UTXOs on the Bitcoin blockchain. \n\nThis is to prevent a fractional reserve of creating unlimited "Ark-BTC".\n\nThese rounds can last 15-60 minutes, but can vary from ASP to ASP.\n\nYou could think of ASPs as "UTXO renting services".\n\nTo be interoperable with the wider Bitcoin payments ecosystem, Ark uses Lightning Network gateways. \n\n## Use Case for Daily Payments\n\nTechnically, Ark is non-custodial.\n\nAn ASP can't run away with users' funds, except when the user is not online once in a 4-week period (the time period can vary from ASP to ASP). \n\nAfter the time period has passed without the user logging in, an ASP can take the unused funds to manage stale liquidity.\n\nMaybe an honest ASP could still roll the funds over for the inactive user for a fee?\n\nHowever, the use case of Ark is more directed towards daily payments, not necessarily for the storage of funds.\n\nIf you don't use your ASP in 4 weeks, maybe Ark is not for you then! \n\nUse Lightning!\n\n## Trustless Bank Checks with an Expiration Date\n\nVTXOs are connected to each other atomically: if Alice is sending a VTXO to Bob, the ASP will create an on-chain output with Alice's share in it, going to Bob!\n\nAlice only loses funds if Bob gets them.\n\nExisting VTXOs are destroyed and new ones are created on an ongoing basis.\n\nThe ASP can't redeem senders' VTXOs if it double-spends recipients' VTXOs.\n\nAtomicity!\n\nIn a way, ASPs work a bit like Bitcoin miners that process transactions.\n\nBut instead of processing transactions to blocks, they process users' requests to send VTXOs to someone else. \n\nYou can also think of a VTXO as a trustless bank check with an expiration date.\n\nEvery time you want to transact with somebody within an ASP, you will ask the operator (ASP) to create a new check for the receiver. \n\n## Unilateral Exit\n\nTechnically, you can also "unilaterally exit" from Ark to the main chain. \n\nExiting might be expensive though in a high-fee environment.\n\nWill exiting be economically feasible only for larger amounts? \n\nIf you can afford the UTXO fees, then why use Ark in the first place!\n\nThere are some benefits for onboarding on an Ark though.\n\nWithin the same ASP, transactions are fast, cheap and private (Ark could also be used as a coinjoining tool).\n\n## More Efficient Out-of-Round Payments\n\nPayment speed could be increased with "out-of-round" payments, where users don't have to wait payments to be included in rounds.\n\nThis could make the user experience less clunky for senders.\n\nHowever, with out-of-round payments, the recipient needs to trust the sender and ASP not to collude.\n\nOnce the recipient gets the VTXO payment, he can take it to the ASP who includes it in a new round, and the user will again be in complete control of his funds.\n\nThe trust model in that regard is not forced and it's up to the user.\n\nAll these Ark concepts may seem complicated, but hopefully all actions will be abstracted away nicely for the end user by the wallet software!\n\nArk scales Bitcoin horizontally, and theoretically you could "virtualize" components of the Bitcoin protocol and bring smart contracting primitives to Bitcoin this way. \n\n![](https://m.stacker.news/61464)\n\n"Virtual channels", "virtual PSBTs" (Partially Signed Bitcoin Transactions), or "virtual HTLCs" (Hashed Timelock Contracts).\n\nA simpler, more imminent use case could be saving in fees when dollar-cost averaging (maybe you could withdraw from an exchange directly to an ASP)\n\nThis way you could avoid small "dust UTXOs" on-chain and avoid the need to consolidate UTXOs when fees are high.\n\nIf you're unfamiliar with consolidating UTXOs, I wrote a post about it earlier: https://stacker.news/items/664880\n\nArk could also save fees when rebalancing Lighting channels.\n\nThis feature could improve the reliability and cost of using the Lightning Network.\n\n## Trust-Minimized Lending\n\nFor institutions or large holders of bitcoin, being an ASP can provide a place to get trust-minimized yield.\n\nMaybe players like e.g. MicroStrategy could be liquidity providers. \n\nASPs are by nature bigger and bulkier than LSPs (Lightning Service Providers).\n\nThis might incentivize centralization, and ASPs might become money transmitters in the eyes of the regulators even if they don't custody users' funds. \n\nHowever, ASPs could be federated or P2P to mitigate regulatory concerns.\n\nOr maybe the Ark round builders could be separate entities from the liquidity providers.\n\n## clArk vs. Ark\n\nArk v2 doesn't need covenants, but covenants would make the protocol much better and scalable.\n\nThe clArk version ("covenantless Ark") emulates covenants by requiring Ark round participants to sign m-of-n multisig transactions.\n\nInstead of having clear spending conditions in the script for the Ark rounds (covenants), in clArk the participants need to sign every part of the VTXO tree making up the round.\n\nYou can think of it as signing a contract with multiple clauses, whereas with covenants you would only sign those clauses that affect yourself. \n\nClArk without covenants has much more overhead and storage and bandwidth requirements. \n\nWith covenants, end users wouldn't have to be online all the time either.\n\nCovenants could also improve ASPs' liquidity management and help them optimize for worst-case scenarios such as many users wanting to withdraw on-chain at the same time.\n\n## Future Products\n\nIt's still very early for Ark, and there's no consumer app or wallet yet.\n\nThe first go-to-market product from Ark Labs will be a liquidity management dashboard [Ark Node](https://arklabs.to/ark-node) that is currently seeking Lightning node operators to test out the product.\n\nThere is also a [proof-of-concept wallet](https://x.com/ArkLabsHQ/status/1852039439905931638) by Ark Labs called Arkade that uses out-of-round VTXO payments for senders: \n\n![](https://m.stacker.news/61467)\n\nRecently Ark Labs announced a [partnership](https://x.com/ArkLabsHQ/status/1844767778261315763) with the Bitcoin bridge [Boltz](https://boltz.exchange/) @boltz in order to make Ark interoperable with the rest of the Bitcoin ecosystem.\n\n![](https://m.stacker.news/61468)\n\nYou can learn more about Boltz in this [X thread](https://x.com/teemupleb/status/1709897791844352043) I wrote in October 2023.\n\nAnother company building software on Ark is called [Second](https://second.tech/).\n\nThey recently gave Bitcoin [the first taste of Ark](https://x.com/2ndbtc/status/1837530708560302522)!\n\n![](https://m.stacker.news/61472)\n\nWhat do you think about Ark?\n\nIs it a good scaling solution for Bitcoin?\n\n## Additional Resources\n\n[Ark Protocol](https://ark-protocol.org/)\n\n["Is This Bitcoin Layer 2 The Future?", video review by Ian Major from June 2024](https://www.youtube.com/watch?v=k47hCzgHuuI) @IanM\n\n["Boarding the Ark with Alex Bergeron - Ecosystem Lead at Ark Labs", Build on Bitcoin podcast from October 2024](https://www.youtube.com/watch?v=xKqIFAWAxHY)\n\n["Using Ark to Scale Bitcoin | Alex B", Bitcoin Season 2 podcast from October 2024](https://www.youtube.com/watch?v=bR_fAB5z_qw)\n\n["Updates on Ark with Tiero", Stephan Livera podcast from June 2024](https://www.youtube.com/watch?v=yCqFLzD6lEY) @stephanlivera\n\n["The Ark Protocol: An Easy Introduction"](https://thunderbiscuit.com/posts/ark/)\n\n[Ark Labs website](https://arklabs.to/)\n\n[Ark GitHub](https://github.com/ark-network/ark)\n\n[Second website](https://second.tech/)\n \N 14607 \N 448155 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 3.90178510774533 0 \N \N f 0 \N 0 138165695 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:35:12.961 f \N \N \N 0 0 0 0 0 0 0 435146 2025-03-12 13:51:04.371 2025-03-29 22:39:51.711 \N I'll quit my job and start working full-time on bitcoin projects https://example.com/ 16695 435125 435125.435146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.30958677871053 0 \N \N f 0 \N 0 92996707 0 f f \N \N \N \N 435125 \N 0 0 \N \N f \N 2025-03-19 07:15:20.727 f \N \N \N 0 0 0 0 0 0 0 434585 2025-03-12 03:34:25.103 2025-03-29 22:39:51.711 \N _wow edit timer ran out and it feels like 20 new comments appeared when I reloaded the page, lol_\n\n> what did you get right and what did you get wrong?\n\nthe only prediction i only ever had was saying to a friend: "If bitcoin ever goes below $20k again I will reconsider if I am right about bitcoin"\n\nThen it did when Russia invaded Ukraine, then I reconsidered, then I doubled down, lol\n\nI was thinking to myself: Yes, the 200WA was broken for the first time. But does that really matter so much? There is so much going on in the world, I actually think that bitcoin still holding strong at $16k is a very good sign, lol https://example.com/ 11288 434531 434278.434421.434531.434585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.849275399831 0 \N \N f 0 \N 0 106746219 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 21:05:46.671 f \N \N \N 0 0 0 0 0 0 0 448392 2025-03-22 15:24:25.661 2025-03-29 22:39:51.712 \N I've told all my social circles about this site because it's not about bitcoin. It's about passing value without permission from any middleman and sacrificing personal information. I haven't been able to pay attention to my daily tasks since I figured this website out. It's developments like stacker.news that makes me want to travel the path less travelled as it has 100x more meaning. I'm not a coder but can use a bitcoin/lightning node. Any suggestions on how to contribute? https://example.com/ 16847 448373 448349.448373.448392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.430955828356 0 \N \N f 0 \N 0 145563612 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 08:45:25.224 f \N \N \N 0 0 0 0 0 0 0 434472 2025-03-11 23:39:07.254 2025-03-29 22:39:51.712 \N Oh crap, I knew I should have stayed silent lol but I guess I need to get out of my comfort zone\n\nhttps://i.imgflip.com/1oldd8.jpg https://example.com/ 21248 434395 434285.434395.434472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2289182416651 0 \N \N f 0 \N 0 95282271 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 2025-03-18 17:17:22.138 f \N \N \N 0 0 0 0 0 0 0 434384 2025-03-11 21:00:01.83 2025-03-29 22:39:51.712 \N SN could integrate with nostr the same way it integrates with twitter. Post a nostr "tweet" as a post and SN offers a click through preview. Other than authentication, I don't know how they could be integrated further without turning SN into a cluttered mess. https://example.com/ 12368 434328 434328.434384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4395625313906 0 \N \N f 0 \N 0 121070981 0 f f \N \N \N \N 434328 \N 0 0 \N \N f \N 2025-03-18 20:13:56.274 f \N \N \N 0 0 0 0 0 0 0 447256 2025-03-21 18:18:25.575 2025-03-29 22:39:51.712 \N I kinda give up on posting on nostr.\nIris and Snort are kind of useless now, do not connect to any relay.\nUsing Onyx on mobile is the only one that still works nice for me, but I do not like to use mobile for this kind of stuff.\n\nAlso not so interesting stuff posted on nostr.\nSN is much better to consume information.\n\nNevertheless, nostr market is very interesting for me. https://example.com/ 8870 447197 447197.447256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2290077319884 0 \N \N f 0 \N 0 152809515 0 f f \N \N \N \N 447197 \N 0 0 \N \N f \N 2025-03-28 11:45:44.578 f \N \N \N 0 0 0 0 0 0 0 443533 2025-03-19 12:04:34.829 2025-03-29 22:39:51.708 \N I'm about 50/50 SN and nostr for daily social media consumption at this point. Done with Twitter. Minimal integration needed. I like having the two different options personally. Maybe just a way to embed a nostr event into a SN post like you can a tweet. https://example.com/ 21033 443504 443197.443473.443477.443504.443533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8919942697865 0 \N \N f 0 \N 0 51512996 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 2025-03-26 05:22:18.256 f \N \N \N 0 0 0 0 0 0 0 434347 2025-03-11 19:59:19.21 2025-03-29 22:39:51.708 \N ![images (8).jpeg](https://m.stacker.news/10013)\n\nRecommended in [this thread](https://stacker.news/items/367395/r/Coyote_Cosmico) by @gd https://example.com/ 15526 434280 433934.434280.434347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1417236470457 0 \N \N f 0 \N 0 216874129 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N 2025-03-18 20:19:27.884 f \N \N \N 0 0 0 0 0 0 0 434885 2025-03-12 10:11:15.686 2025-03-29 22:39:51.708 \N Step 1:\nUse L4 microkernel written in Rust. Keep UI clean and snappy. Target only one configuration of hardware for first production release.\n\nStep 2:\nFail due to niche market or await patent onslaught or embrace & extinguish efforts from duopoly. https://example.com/ 16830 434874 433828.434381.434874.434885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4562070296348 0 \N \N f 0 \N 0 120837323 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-19 10:37:20.083 f \N \N \N 0 0 0 0 0 0 0 434766 2025-03-12 08:16:54.927 2025-03-29 22:39:51.708 \N Day 100 of horseposting\n\nHorse stance:3 minutes 22 seconds \n\n![Horse_Stance_Laser.jpg](https://m.stacker.news/17922)\n\nAn attempt was made. :)\n\n https://example.com/ 5519 433828 433828.434766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.316893241644536 0 \N \N f 0 \N 0 166780278 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-19 03:10:13.356 f \N \N \N 0 0 0 0 0 0 0 436590 2025-03-13 17:25:52.171 2025-03-29 22:39:51.709 \N Day 6 of posting mining earnings from the day before: 718 sats!\nRunning total: 5,097 sats!\n\n[Yesterday's comment](https://stacker.news/items/363649/r/WeAreAllSatoshi) https://example.com/ 21734 436585 436585.436590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.82062670981261 0 \N \N f 0 \N 0 197074353 0 f f \N \N \N \N 436585 \N 0 0 \N \N f \N 2025-03-20 11:09:50.069 f \N \N \N 0 0 0 0 0 0 0 436000 2025-03-13 07:59:18.305 2025-03-29 22:39:51.71 \N yeah haha. was a bit anticlimactic tbh... https://example.com/ 19570 435944 435944.436000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1300249456776 0 \N \N f 0 \N 0 150619140 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 01:40:09.655 f \N \N \N 0 0 0 0 0 0 0 434212 2025-03-11 17:05:06.336 2025-03-29 22:39:51.71 \N Pen and paper in the classroom. Education after COVID has become so digitized, but it is really bad for low willpower kids who end up just goofing off on their devices https://example.com/ 1401 430498 430498.434212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.32499368870862 0 \N \N f 0 \N 0 28493096 0 f f \N \N \N \N 430498 \N 0 0 \N \N f \N 2025-03-19 08:53:58.283 f \N \N \N 0 0 0 0 0 0 0 436606 2025-03-13 17:49:23.562 2025-03-29 22:39:51.71 \N I think I never thought as much about it as while writing this reply so thanks for asking. I also think I didn't even use the term "war dramas" before but it's very accurate to describe what kind of shows I like to watch lol.\n\nI think shows that try to be historically accurate and portray characters as (flawed) humans interest me for three key reasons:\n\n1. Historical accuracy itself\n2. Gateway to look up all kind of interesting stuff, especially technological progress and politics\n3. The timeless human aspect: dealing with PTSD[^1], taking someone's life you never met (maybe even in close combat), seeing your friends die and deal with survivor's guilt, [having to write letters back to families](https://www.youtube.com/watch?v=_5Ocz04H8EY), ...\n\n**Historical Accuracy**\n\nThanks to the historical aspect, you can basically see the technological progress in action. We went from fighting with sticks, bows and horses to bayonets, rifles, tanks, artillery, bombers etc. The maximized incentives (life or death scenario) are a catalyst for such progress. Michael Saylor in the Saylor series on the What Is Money show by Robert Breedlove goes in depth in this technological progress. One phrase that Saylor said in this series stuck with me: "There is no such thing as a fair fight [in nature]."[^2]\n\nBut war fortunately not only accelerates the ways we can kill each other but also other technology that is useful in many ways. For example, cryptography and cryptanalysis got pretty important in WWII due to the widespread use of radio communication which can easily be intercepted. This was naturally very interesting to me. [Some sources say that breaking the Enigma code was crucial for the Allies to win the war](https://www.iwm.org.uk/history/how-alan-turing-cracked-the-enigma-code). Stuff like this isn't usually mentioned in shows but the (counter)intelligence part is. For example, mission briefings are all about intelligence: What kind of information do we have? How was this information gathered? Is it trustworthy? Is it accurate? What do we do with it?\n\n**Gateway to Other Interesting Stuff**\n\nYou can also use shows about wars to get generally interested about the era it happened in since wars are like the climax of politics.\n\nFor example, I believe my "real interest" in wars started with playing Rising Storm 2 which is a first-person shooter set in the Vietnam war with an emphasis on realistic mechanics (one shot usually kills). [It had a "Woodstock experience" setting where your visuals changed to being on Acid](https://www.youtube.com/watch?v=rFk1j4h3IaI). This made me look up stuff about the Summer of Love, the War on Drugs, the Nixon Shock and the end of the Bretton Woods system which all happened in the same political era. So you could say I learned about the history of money simply by playing a video game and looking stuff up related to it.\n\nSimilar things are true for shows like Band of Brothers and The Pacific.\n\n**The Timeless Human Aspect**\n\nShows only give you a glimpse of it since screen time is limited, it depends on the actors and there is no good way to go into detail what a specific character is thinking without breaking the flow of the show. But as with every good show, character development is still important.\n\nI found that reading books from veterans is very good to have empathy with them. Again, thanks to RS2, I read my first such book. It was [_Chickenhawk_](https://en.wikipedia.org/wiki/Chickenhawk_(book)) from Robert Mason who flew Hueys in a transport role during the Vietnam war.[^3] It was a great book and it got me hooked on reading more from other veterans. I especially liked it because it starts with his relatable desire to fly helicopters and the US Army gave him this chance since they would pay for his training.[^4] However, while training he did not imagine that he would fly helicopters while getting shot at one day. The vietnam war broke out after he graduated where he then developed PTSD and had to give up flying because of that. A very tragic story including the treatment of such veterans after the war (which relates back to the Summer of Love and the politics of the war).\n\nWhat is also interesting is to watch a show and then read the book on which the show is based on and spot differences. Sometimes, these differences are only in detail, sometimes, they are pretty big. The show was already pretty brutal but then you read the book and you're like... oh, that wasn't even close, lol.\n\nI also like to watch interviews like [this one from Major Dick Winters](https://www.youtube.com/watch?v=hnF6z9yyGo4).\n\n[^1]: [Depending on the time, psychological trauma endured during war was called shell shock, soldier's heart or war neurosis](https://theconversation.com/from-shell-shock-to-ptsd-a-century-of-invisible-war-trauma-74911).\n\n[^2]: Not sure if it was in the first episode but [here](https://whatismoneypodcast.com/episodes/the-saylor-series-episode-1-the-rise-of-man-through-the-stone-and-iron-ages) is the link anyway.\n\n[^3]: Flying transport helicopters was my favorite part of the game.\n\n[^4]: This was very similar to what I almost did after school. I also wanted to become a helicopter pilot and was thinking about joining the military for this. I didn't since I didn't want to enlist for multiple years even if I wasn't able to go down the officer path and become a pilot. https://example.com/ 17713 436599 436593.436599.436606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1150765422327 0 \N \N f 0 \N 0 237494770 0 f f \N \N \N \N 436593 \N 0 0 \N \N f \N 2025-03-20 11:09:19.736 f \N \N \N 0 0 0 0 0 0 0 434616 2025-03-12 04:23:10.616 2025-03-29 22:39:51.71 \N It's hard to predict what will be in a decade because technology evolves so quickly. However, in an ideal world, decentralized platforms, like Nostr, would take over YouTube, Twitter, Instagram, etc, and then host their multimedia content on BitStream servers. https://example.com/ 6653 434278 434278.434616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.12948754616409 0 \N \N f 0 \N 0 74797505 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 22:29:50.587 f \N \N \N 0 0 0 0 0 0 0 436015 2025-03-13 08:23:50.623 2025-03-29 22:39:48.167 Anonymous paid API-calls. \N https://twitter.com/callebtc/status/1631342608130744323 4474 \N 436015 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 21.8738734302591 0 \N \N f 0 \N 0 55014651 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:02:27.367 f \N \N \N 0 0 0 0 0 0 0 435834 2025-03-13 02:38:55.397 2025-03-29 22:39:48.167 Fiatjaf, Nyms and developers anons by Rockstar Dev >To be honest, I'm a bit disappointed with how the whole Fiatjaf doxxing unfolded. It reinforces some conclusions I've been considering:\n\n- Protecting your private information is solely up to you. Society will even help spread information you want to keep private if it creates profit... bad actors will be incentivized and supported to do it (oh, it's just journo doing their work).\n- While most will help, those who can help the most will remain silent publicly to protect their future options (or are too busy with their own issues).\n- Instead of focusing on solving problems, it's often better to selfishly advance your own interests and leave injustices for altruistic (and regular) individuals to handle.\n- Negative outcomes (like your doxxing gaining more attention) are way more likely than positive ones (such as your private information being removed).\n\n>For nym developers, this leads to a pessimistic outlook: expect to be doxxed once your contributions reach a certain level. You won't be able to keep your private life untainted. Individuals will find ways to drag you into unwanted territory - following their programming to make the information free. If your contributions reach the level where professional doxxers start noticing you, expect to be labeled a Nazi or something equally absurd.\n\n>The only positive outcome I see is to kill your identity while you're ahead. If you've received enough through your contributions to comfortably leave, absolutely do that. Even staying in touch with a few trusted people isn't advisable, as professional doxxers can exploit those connections and twist information.\n\n>Anything else feeds into the fiat clown world we're part of. Satoshi really did it well—contributed, gave it all away, and then quit while he was ahead.\n\n>Despite this perfection, there are still idiots out there saying things like "If you meet Satoshi on the road, kill him." This just shows how power-hungry and programmed for competition most people are. Plan for that and protect your privacy. \n\n\nOriginal tweet: https://x.com/r0ckstardev/status/1800126185172578670?s=46&t=XVvcZTrIQmLufMEQ9S0F6g \N 18330 \N 435834 \N \N \N \N \N \N \N \N art \N ACTIVE \N 5.40179818948648 0 \N \N f 0 \N 0 141050747 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:24:38.936 f \N \N \N 0 0 0 0 0 0 0 434461 2025-03-11 23:00:17.436 2025-03-29 22:39:51.712 \N @k00b I'm looking at the **total sats stacked per territory** on [this page](https://stacker.news/top/territories/forever?by=posts) and they seem to be lower than the cumulative total of posts. May poke around the code & debug later if I have time but [this is the query](https://github.com/stackernews/stacker.news/blob/master/fragments/subs.js) for it.\n\nFew examples that are easier to review (fewer posts):\n- ~antifragile has 3 posts that individually total 2,879 sats (2483+246+150). But the [territories](https://stacker.news/top/territories/forever?by=posts) page is showing just 2,591 sats.\n- ~deepdive also 3 posts that total ~36k sats but [territories](https://stacker.news/top/territories/forever?by=posts) page is showing just 29.2k.\n\nObservations\n- Are there some deductions that I've missed or need to be mindful of?\n- Posting fees don't seem to correspond (at least not to advertised values) and neither do deducting zap splits/forwards.\n- There is a consistent 20-25% delta, depending on the territory. https://example.com/ 12744 434424 434424.434461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2592140986278 0 \N \N f 0 \N 0 190257252 0 f f \N \N \N \N 434424 \N 0 0 \N \N f \N 2025-03-18 16:58:57.065 f \N \N \N 0 0 0 0 0 0 0 434563 2025-03-12 02:59:03.391 2025-03-29 22:39:51.713 \N influencers not getting any pushback for basically being affinity scammers https://example.com/ 10554 433217 433217.434563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8458935635918 0 \N \N f 0 \N 0 108125801 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 2025-03-20 06:31:18.724 f \N \N \N 0 0 0 0 0 0 0 443431 2025-03-19 10:53:42.445 2025-03-29 22:39:48.167 No one uses Bitcoin for payments and lightning can't scale Over the past two years since I first started using lightning, I've gone from mainly sending payments from exchanges or my own wallets to myself, to thousands of transactions logged on just my own node let alone the countless wallets I've used along the way.\n\nBe it micro payments for a Nostr shitpost, purchasing artwork from an npub I admire, mitigating disorganized utxo sets by giving me a threshold to build before withdrawal on chain, integration with cashu mints, or tips on SN.\n\nAnytime I read or hear the recurring cries of Bitcoin can't scale or no one is using it for payments hasn't had my, or likely many of you here, experience with lightning. It may be complicated in many ways under the hood, and I've had my various hiccups along the way, but it has completely changed the way I interact with Bitcoin. \n\nIt's scaled my use and habits, and I'm more willing to spend some sats since the flexibility it has given me has basically simplified the process to the tap of an icon on many occasions.\n\nIt all really began here with the integrated wallet. So I suppose without that small jumping off point, I may still be ignorant of all the things being built and the improvements that happen outside of my scope. \N 9969 \N 443431 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.9215309416084 0 \N \N f 0 \N 0 43311105 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:38:24.752 f \N \N \N 0 0 0 0 0 0 0 435714 2025-03-12 22:31:38.831 2025-03-29 22:39:48.167 What is xpub, ypub and zpub? Thought this was an interesting article\n\nhttps://blog.thebitcoinhole.com/what-is-xpub-ypub-and-zpub-7ed266cf0331\n\nAlso read the privacy considerations at the bottom :) \N 18231 \N 435714 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 29.6877390064025 0 \N \N f 0 \N 0 245095198 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:40:09.653 f \N \N \N 0 0 0 0 0 0 0 443658 2025-03-19 12:55:05.961 2025-03-29 22:39:51.713 \N Crazy timing. I started using Phoenix two weeks ago as my sort of blue wallet replacement, and it has been great. I was actually thinking about doing an SN writeup recommending it! https://example.com/ 664 443583 443583.443658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.84204381840464 0 \N \N f 0 \N 0 33140028 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 2025-03-26 06:18:51.02 f \N \N \N 0 0 0 0 0 0 0 434956 2025-03-12 11:15:56.467 2025-03-29 22:39:51.713 \N If you can't hold it in your hand, it has no value. https://example.com/ 20754 434440 434440.434956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6065804286796 0 \N \N f 0 \N 0 34076089 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 2025-03-19 04:37:51.377 f \N \N \N 0 0 0 0 0 0 0 448437 2025-03-22 15:48:18.503 2025-03-29 22:39:51.714 \N c equals the speed of light https://example.com/ 1985 448341 447892.448341.448437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3577752996789 0 \N \N f 0 \N 0 60666916 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 09:26:46.846 f \N \N \N 0 0 0 0 0 0 0 434589 2025-03-12 03:48:39.42 2025-03-29 22:39:51.714 \N Their typical responses are (I'll paraphrase): \n\n- They don't see it having a bright future like Eth or some other project.\n- They feel tooling isn't as readily available to build cool projects.\n- They think Bitcoin is only about the asset, no smart contracting or interesting things can be built on it.\n- I can't build on a planet killer (due to PoW).\n- There is no clear path for me to become a Bitcoin/LN dev (something Qala is solving).\n- Some feel it is a scam (a small minority).\n\nSo I'd say I get several consistent responses when engaging with devs, usually falling into one of the many above. https://example.com/ 2757 434285 434285.434589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.16483357108616 0 \N \N f 0 \N 0 110279918 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 2025-03-18 22:02:57.393 f \N \N \N 0 0 0 0 0 0 0 434271 2025-03-11 18:20:54.635 2025-03-29 22:39:48.166 SN Saturday Newsletter 7/20/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [El-Tor: High Bandwidth⚡️Tor Network Release!](https://stacker.news/items/609498)\n - Tor's unreliability can be seen as an incentive problem. On El-Tor, clients use lightning to pay for Tor circuit usage.\n - 14.9k sats \\ 43 comments \\ [@Car](https://stacker.news/Car)\n2. [What would change your conviction in bitcoin?](https://stacker.news/items/609480)\n - If bitcoin were to fail, what would be the most likely reason?\n - 2.4k sats \\ 55 comments \\ [@ek](https://stacker.news/ek)\n3. [BREAKING: 🇺🇸 Former President Donald Trump shot at rally.](https://stacker.news/items/607431)\n - Trump got a bullet sized ear-piercing at a rally in Pennsylvania. One rally goer was killed and more were injured during the assassination attempt.\n - 3.4k sats \\ 115 comments \\ [@lpop4254](https://stacker.news/lpop4254)\n5. [CW launches legal notice saying isn’t Satoshi Nakamoto](https://stacker.news/items/610535)\n - After years of fraudulently claiming to be Satoshi Nakamoto and frivolously suing people based on the claim, a court has ordered CW to publicly admit he is not Satoshi.\n - 3.9k sats \\ 15 comments \\ [@Rsync25](https://stacker.news/Rsync25)\n6. [Simultaneous Outage affecting both Windows Servers + Azure. Bug? Attack?](https://stacker.news/items/613697)\n - A faulty update from ubiquitous Windows security software vendor, CrowdStrike, crashed most corporate and government computing infrastructure.\n - 2.5k sats \\ 62 comments \\ [@freetx](https://stacker.news/freetx)\n\n\n##### Don't miss\n- [UTXO consolidation strategies?](https://stacker.news/items/610849)\n- [NIP88: "Discreet Log Contracts over Nostr" has enormous potential](https://stacker.news/items/608286)\n- [CSW: CSW is not Satoshi](https://stacker.news/items/611624)\n- [Potential for new bitcoin adoption - YouTube banning Firearms Advertisement](https://stacker.news/items/612067)\n- [Looking for stories in the Bitcoin space for my monthly magazine](https://stacker.news/items/613786)\n- [bitnodes.io tor node count continues to fall](https://stacker.news/items/612375)\n- [Calle launches first demo of Nostr Web Services (NWS) bringing TCP to Nostr](https://stacker.news/items/611338)\n- [Starbucks is a layer two](https://stacker.news/items/614725)\n- [What are some of the most significant choices you made during your 20s?](https://stacker.news/items/610740)\n- [Was the assassination attempt on Trump fake?](https://stacker.news/items/607744)\n- [Bitcoin Adoption In Suriname](https://stacker.news/items/611795)\n- [What great thing will you achieve today?](https://stacker.news/items/611963)\n- [What happens if you have an extra hour today?](https://stacker.news/items/613408)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [For the Love of Territories, Zap Big and Zap Often](https://stacker.news/items/614066)\n- [⚡️Stacker News Live in Nashville - July 26th, 2024](https://stacker.news/items/609615)\n- [What SN referral strategies have worked for you?](https://stacker.news/items/612369)\n- [Privacy-preserving settings for auto-loading twitter and youtube embedded media?](https://stacker.news/items/611650)\n- [Golden Oldies #4](https://stacker.news/items/610202)\n\n##### This day in Stacker News\n\n*a series by [@Undisciplined](https://stacker.news/Undisciplined)*\n\n- [This Day in Stacker News: July 14th](https://stacker.news/items/608036)\n- [This Day in Stacker News: July 15th](https://stacker.news/items/609082)\n- [This Day in Stacker News: July 16th](https://stacker.news/items/610267)\n- [This Day in Stacker News: July 17th](https://stacker.news/items/611566)\n- [This Day in Stacker News: July 18th](https://stacker.news/items/612715)\n- [This Day in Stacker News: July 19th](https://stacker.news/items/613971)\n- [This Day in Stacker New: July 20th](https://stacker.news/items/615090)\n\n##### Golden Oldies\n\n*[@Siggy47](https://stacker.news/Siggy47) has been posting some of SN's best oldies*\n\n- [Golden Oldies #1](https://stacker.news/items/586009)\n- [Golden Oldies #2](https://stacker.news/items/593999)\n- [Golden Oldies #3](https://stacker.news/items/602262)\n- [Golden Oldies #4](https://stacker.news/items/610202)\n\n\n[**all meta**](https://stacker.news/~meta/top/posts/week)\n\n-------\n\n##### Top Stackers\n1. [@k00b](https://stacker.news/k00b): 99.9k sats stacked\n2. [@Undisciplined](https://stacker.news/Undisciplined): 97.6k sats stacked\n3. [@Bell_curve](https://stacker.news/Bell_curve): 79k sats stacked\n4. [@grayruby](https://stacker.news/grayruby): 78.6k sats stacked\n5. [@Rsync25](https://stacker.news/Rsync25): 65.1k sats stacked\n\n------\n\n##### Top Spenders\n1. [@orthwyrm](https://stacker.news/orthwyrm): 200.7k sats spent\n2. [@TNStacker](https://stacker.news/TNStacker): 141.8k sats spent\n3. [@k00b](https://stacker.news/k00b): 122.9k sats spent\n4. [@ek](https://stacker.news/ek): 119.6k sats spent\n5. [@BlokchainB](https://stacker.news/BlokchainB): 111.6k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 419 days\n2. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 316 days\n3. [@Undisciplined](https://stacker.news/Undisciplined): 298 days\n4. [@OneOneSeven](https://stacker.news/OneOneSeven): 291 days\n5. [@BlokchainB](https://stacker.news/BlokchainB): 277 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 2670 \N 434271 \N \N \N \N \N \N \N \N science \N ACTIVE \N 26.0998116774446 0 \N \N f 0 \N 0 71337642 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:11.741 f \N \N \N 0 0 0 0 0 0 0 434299 2025-03-11 19:12:00.469 2025-03-29 22:39:48.168 Looking Ahead: Lightning Payments in 2025 | River Learn - Bitcoin Technology \N https://river.com/learn/lightning-payments-2025/ 1175 \N 434299 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 4.41621053913817 0 \N \N f 0 \N 0 13431054 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:07.333 f \N \N \N 0 0 0 0 0 0 0 434659 2025-03-12 05:36:39.215 2025-03-29 22:39:51.715 \N > I intended to build a nostr client\n\nIMO stacker news counts as a nostr client. I only have two criteria:\n\n(1) can your software post to nostr relays? (yes -- this is an option in stacker news settings)\n(2) can it read posts from other nostr clients? (yes -- stacker news displays zap messages created by other nostr clients)\n\nIt isn't a "full featured" client yet, mostly due to ignoring all "normal" replies to your nostr posts*, but it has enough features to count as a basic client by my definition.\n\n*stacker news, as currently built, only shows replies created on stacker news itself. Replies created on nostr are ignored, and I think this is because they don't currently pay the one sat "fee" stacker news requires. If I were k00b, I wouldn't want to give nostr users a workaround that lets them post on stacker news for free when regular users have to pay https://example.com/ 1705 434420 433828.434420.434659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9513275476161 0 \N \N f 0 \N 0 39459111 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-19 00:35:46.303 f \N \N \N 0 0 0 0 0 0 0 434845 2025-03-12 09:26:16.949 2025-03-29 22:39:51.715 \N solidjs, great choice! https://example.com/ 16653 434795 434795.434845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2376130949261 0 \N \N f 0 \N 0 216518113 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 06:53:49.998 f \N \N \N 0 0 0 0 0 0 0 217413 2024-08-19 23:35:59.962 2025-03-29 22:39:51.715 \N > Yes, the old tale of "jUsT bE yOuRseLf", lol. It's true but it's often very unhelpful and can make you feel even worse since it sounds so easy. But I think the problem is that people don't know who they are. How should they be themselves when they don't know what that means?\n\nWhen I think about it there's an additional wrinkle -- it's not just "be whoever you happen to be, you special snowflake" but rather: you are a person with a very distinct configuration, and if you find ways in which that configuration can find a place in the world, nobody will be able to out-you you.\n\nOne additional wrinkle, though (there are two wrinkles, apparently) is that you -- whoever you happen to be -- isn't static. You can add things to your self, and refine it. That's the vibe underlying [this post](https://stacker.news/items/504913), actually -- _what is it_, exactly, that we should add or change? https://example.com/ 16571 199264 199264.217413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7372615424663 0 \N \N f 0 \N 0 233226157 0 f f \N \N \N \N 199264 \N 0 0 \N \N f \N 2025-03-20 05:38:38.933 f \N \N \N 0 0 0 0 0 0 0 434559 2025-03-12 02:55:51.722 2025-03-29 22:39:51.716 \N Great post. I've noticed that a bit of exercise outside tends to reduce my stress levels quite a lot. A run, or even better if I can swing it, a bike ride. I'm not sure if it's the change of environment, the endorphins, or the vitamin D. Maybe they all work together.\n\nFor a while I was practicing daily meditation. The effects are more subtly noticed, but upon reflection, I think it also helped with stress (among other benefits.) https://example.com/ 760 433975 433588.433975.434559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.973378484118 0 \N \N f 0 \N 0 32592047 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 2025-03-19 07:11:54.393 f \N \N \N 0 0 0 0 0 0 0 433881 2025-03-11 13:34:20.566 2025-03-29 22:39:51.716 \N I consider the purely moral approach as flawed. This is people finding engineering for the first time. My field of expertise is Aeronautical Engineering and I can tell you that, as in bitcoin, the exact same painful care is taken to ensure that all systems work properly not by fear to bad behaviour but to simple error. If it can go wrong it will go wrong. The same care is taken by expecting mindless components to fail, what's the morals of a bolt? Leave aside morals, errors are unavoidable regardless of morals. Bitcoin robustness is not about morals, but about statistics, as with ANY well designed engineering system. https://example.com/ 18177 433851 433828.433851.433881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8141648290378 0 \N \N f 0 \N 0 206563386 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-18 16:19:55.907 f \N \N \N 0 0 0 0 0 0 0 435955 2025-03-13 06:33:46.659 2025-03-29 22:39:48.168 i have an npub. how am i supposed to find the relay? Okay, so people give out their `npub`, post it on their website, print it on their business card, etc. Awesome. Your `npub` is basically a public key, so you own it. Nobody can take it away from you, cancel it, etc. It has none of the problems of Mastadon/Matrix where whoever owns the domain name of your homeserver can cancel you on a whim.\n\nBut... if I hand out my `npub` to people, how tf are they supposed to find the relay that relays my notes?\n\nNIP19 `nprofile`s with a relay entry **are not a solution** -- they just resurrect the Mastadon/Matrix problem. If I print my `nprofile` on my business card and invest a ton of effort into getting that to people, the relay operator can just decide they don't like me and stop relaying my notes. You own your `npub` but you don't own your `nprofile.relay`.\n\nSo basically, nostr has not solved the cancellation problem. It just shifted it somewhere else.\n\nI'm kinda disappointed with this. The only solution to this problem that has stood the test of time is a DHT like bittorrent uses. The MPAA throws millions and millions of dollars at trying to kill bittorrent, and their DHT just sort of laughs. Bittorrent proved that DHTs work, so long as *the DHT keys are network endpoints (IP address and port number) and nothing else*. That way you can't spam the DHT -- you have to prove ownership of the endpoint to get it into the DHT, so your spamming capability is bounded by the number of IP addresses you own (incidentally this is why IPv6 DHTs are unlikely to happen anytime soon).\n\nSo... when are we getting a nostr DHT to map `npub`s to relays?\n\nHint: if there isn't one yet, please follow the Bittorrent design as closely as possible. There are so many ways to fuck this up (like IPFS keeps doing). Use UDP, don't use connections (not even QUIC), be stateless like NFS is. Seriously, just copy what Bittorrent is doing, swap ed25519 with secpk256, and don't touch anything else. \N 5578 \N 435955 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 14.5071137952842 0 \N \N f 0 \N 0 8964352 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:16:15.77 f \N \N \N 0 0 0 0 0 0 0 446575 2025-03-21 11:05:51.376 2025-03-29 22:39:48.168 LNhance LAUNCHES WEBSITE🎊🎊🎊 (THE GREATEST OF SOFT FORKS) ## SUMMARY\n>["LNHANCE.ORG"](https://lnhance.org/#hero), launched to show the LNhance proposal by __Brandon Black (Reardencode)__ and __4moonsettler__, which aims to improve Bitcoin's scalability, privacy, and flexibility by introducing four new opcodes. These opcodes enable several enhancements for the Lightning Network, including the creation of symmetrical channels, non-interactive channels, and more efficient vault setups. The proposal also introduces payment pools, which allow users to share UTXOs and create channels without requiring individual transaction footprints on-chain. Overall, LNhance seeks to advance Bitcoin's capabilities by facilitating more efficient and secure transactions within the Lightning Network.\n\n#### Audio Summary below👇🏽👇🏽\n [Audio Summary](https://notebooklm.google.com/notebook/742bc7ea-68f0-4f78-90f9-c280e6f4bbe4/audio) \N 714 \N 446575 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 28.1387402355006 0 \N \N f 0 \N 0 29753742 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 10:19:10.967 f \N \N \N 0 0 0 0 0 0 0 436195 2025-03-13 11:30:50.894 2025-03-29 22:39:48.17 Lightning Piggy Bank This concept is really cool, for kids, teaching them to save money in sats. Is really fun!\nhttps://www.lightningpiggy.com/\n\n![ln-piggy.jpg](https://m.stacker.news/7133)\n\n[nostr announcement](https://primal.net/e/note1qs5avw98ma6hc9mguwcf9s8yf0qt5aqxv7evqqkc05crfpt7mn0qd2v9rk) \N 11750 \N 436195 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 17.8335238074946 0 \N \N f 0 \N 0 145901481 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 05:31:52.919 f \N \N \N 0 0 0 0 0 0 0 435148 2025-03-12 13:52:19.95 2025-03-29 22:39:51.708 \N Thanks for the tag-in, @k00b.\n\n**First**, a story about me:\n\nWhen I was in the middle of my PhD I was miserable. I had all these reasons why I was miserable, which were real reasons. And I thought about quitting many times.\n\nBut then I thought: the reasons I am miserable are things about me, not about the PhD stuff that sucks right now. So I can quit, and then these PhD things will stop sucking, but something else will start sucking, because that is the nature of complex systems (more on that another time; or see the [book club](https://stacker.news/items/300775)!) but mostly it's the nature of me.\n\nI have issues {x, y, z} and they manifest in {a, b, c}. Quitting the PhD would have been a short-term fix that solved nothing at all. Then {x, y, z} would simply have manifested in {p, q, r}. {x, y, z} is what needs to be dealt with.\n\n**Second**, I saw [this talk by Graham Weaver](https://www.youtube.com/watch?v=dZxbVGhpEkI) recently that made a bunch of deep points.\n\nThe one that really stuck for me was: you're going to suffer anyway, so if you suffer strategically, you can wind up doing great things. This was quite the suckerpunch, if you view it as the amount of felt suffering coming your way is constant.\n\nI don't want to bear the cost of suffering in a stupid way and get no real upside.\n\n**Third**, SN is a delicate ecosystem right now. Putting something true and earnest into it is like casting out seeds. So many things will sprout from them! Lurkers you never hear from will be subtly influenced. People who think: _oh, this isn't a place for me_ will read your words and will adjust their beliefs a little bit. This is very real. It might be the realest thing in the world, but it's invisible, so it's easy to lose heart.\n\nDon't lose heart. https://example.com/ 20683 434791 434791.435148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.551366775386 0 \N \N f 0 \N 0 61535861 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 07:13:57.285 f \N \N \N 0 0 0 0 0 0 0 435662 2025-03-12 21:18:42.319 2025-03-29 22:39:51.708 \N I recently discovered stacker.news and wanted to thank the developers and contributors for making this place what it is. I check the site at least daily now and feel like the SNR is higher here than twitter/bitcointalk/reddit. At the risk of sounding trite, this place is special and I hope it continues to be. https://example.com/ 16653 435457 435457.435662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.19806174955183 0 \N \N f 0 \N 0 96519909 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 2025-03-19 14:37:49.913 f \N \N \N 0 0 0 0 0 0 0 435075 2025-03-12 12:47:55.022 2025-03-29 22:39:51.708 \N Definitely could be articulated better on the site. A lot of technical details that are beyond most of us.\n\nHowever what I grasped from it is that it wishes to overcome some limitations, speeding up query & download times on Nostr, which we see can be an issue with some clients. \n\nNot only that it offers a credible alternative to IPFS and avoids the unnecessary full & duplicate download of files for numerous clients and relays.\n\n——\n\n“This will unlock a new tier of speed for a variety of decentralized apps that require file directories.”\n\n“Without cryptographically verifiable chunking, users would need to download the entire file to verify it — rather than verifying each chunk immediately after the download. Downloading a very large file before verifying it wastes a lot of time and bandwidth if the file turns out to be incorrect.”\n\n https://example.com/ 9353 434827 434827.435075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6997087220412 0 \N \N f 0 \N 0 151293439 0 f f \N \N \N \N 434827 \N 0 0 \N \N f \N 2025-03-19 07:09:45.38 f \N \N \N 0 0 0 0 0 0 0 447108 2025-03-21 16:18:14.804 2025-03-29 22:39:48.158 DLCVM: Generalized, Unboundedly Scalable Computation on Bitcoin \N https://dlcvm.tiiny.site/ 9346 \N 447108 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 27.6640855626455 0 \N \N f 0 \N 0 198119429 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 09:49:00.567 f \N \N \N 0 0 0 0 0 0 0 446900 2025-03-21 14:21:03.064 2025-03-29 22:39:51.708 \N Use this link https://archive.ph/h3BeC https://example.com/ 17838 446547 446547.446900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.320491002479 0 \N \N f 0 \N 0 123099588 0 f f \N \N \N \N 446547 \N 0 0 \N \N f \N 2025-03-28 10:50:00.053 f \N \N \N 0 0 0 0 0 0 0 434485 2025-03-12 00:23:04.145 2025-03-29 22:39:48.158 I'm Max DeMarco an independent Filmmaker AMA Yoo - I've been working on a bunch of bitcoin and nostr movies in the last years. \nI released the silent bitcoin revolution in africa and did the nostr documentary featuring nostr developers as well as Jack Dorsey. \n\nPersonally i focus a lot on health videos and try to make the world a healthier place. I see bitcoin and nostr an integral part of this... \n\nSo let's get into it - that's my first AMA. Fuck yea. \n\nHere's my YouTube in case you wanna see some of the vids: https://www.youtube.com/@MaxDeMarco \N 21734 \N 434485 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 13.2730950918128 0 \N \N f 0 \N 0 10540921 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 14:05:16.552 f \N \N \N 0 0 0 0 0 0 0 435732 2025-03-12 22:49:10.575 2025-03-29 22:39:48.158 Verifiably Buy a Solution to any NP-Complete Problem, with Bitcoin and ZK proofs alt title: _"Sell me this preimage."_ https://conduition.io/bitcoin/zkpreimage/ 10273 \N 435732 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 5.94850825687356 0 \N \N f 0 \N 0 54566254 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:17:30.152 f \N \N \N 0 0 0 0 0 0 0 434599 2025-03-12 03:55:38.557 2025-03-29 22:39:51.709 \N The read the terms of service or take your business elsewhere arguments ignore:\n1) its really hard to start and run a small business and 99.99% of the time everyone will go with the easiest option so you can focus on running your business and not dying. Not taking a side or saying this is right, its just true. Stripe is often one of the more expensive payment options, but everyone uses it because its the easiest. Ease > cost for almost all businesses when it comes to payments. \n2) if the pressure is coming from Visa/Mastercard, central banks, or big powerful government entities this could easily eventually spread to most or all other major payment providers and leave few if any good options. While I love and applaud things like BTCPayServer, fully self sovereign payments are way too hard for all but the most hardcore technical Bitcoiners, which are probably 0.000001% of all business founders. Until the bitcoin payment tools get 10x better and easier most mainstream business just won't bother. \n\nWe unfortunately need fiat for now to run successful businesses. Just the hard truth. https://example.com/ 21400 434597 434278.434503.434522.434597.434599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.83099153391928 0 \N \N f 0 \N 0 121792696 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 15:51:58.199 f \N \N \N 0 0 0 0 0 0 0 436198 2025-03-13 11:33:10.785 2025-03-29 22:39:51.708 \N 💯 We’re reaching the point in my opinion whereby private solutions will soon offer superior UX.\n\nFaster onboarding, cleaner flows, cheaper products without ID verification or fiat subscriptions to prove you have a pulse. Custom software with no more cookie tracking pop-ups and with legible privacy policies.\n\nIt may not be so simple in the physical world just yet, but proper online privacy is ramping-up everywhere. It’s more popular than ever as a ‘feature’ on the internet. The narrative has just been co-opted for so long by the likes of Apple & Google that we haven’t seen it surface in niche products, but I believe it soon will. https://example.com/ 17741 436147 436147.436198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.06449968929093 0 \N \N f 0 \N 0 226225483 0 f f \N \N \N \N 436147 \N 0 0 \N \N f \N 2025-03-20 08:09:08.085 f \N \N \N 0 0 0 0 0 0 0 435720 2025-03-12 22:37:27.774 2025-03-29 22:39:51.709 \N Hey @k00b and @ekzyis could we have a thing in notifications where it tells you not only how many sats you stacked that day, but also how many you spent? It could report both numbers in the same notification. I know you can compute it manually from your wallet, but that's a PITA, and seeing it laid out that way would be really interesting. https://example.com/ 6463 435716 434278.434503.434522.434598.434602.435622.435713.435716.435720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9213742834365 0 \N \N f 0 \N 0 220376321 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 15:54:20.979 f \N \N \N 0 0 0 0 0 0 0 436525 2025-03-13 16:07:19.456 2025-03-29 22:39:51.709 \N Don't plan it. I mean do not make a rigorous plan about where to go, what items to take with you, how long you gonna stay.\n\nDo this, in stages:\n1. Stage ONE - accommodation \n- take short hiking trips, with easy routes / trails\n- put in your backpack anything you think you will use, eat, wear\n- this short stage is to see how much you can carry, resist walking with all the weight, what you really gonna use.\n- take notes about almost anything you do: how much time you walk, when did you start and when did you stop walking, how much time you can do x distance etc. Enough to see your OWN possibilities and how far you can go.\n- take notes about items that you wish you had but you didn't take them.\n- accommodate with your shoes. Shoes are VERY IMPORTANT. With your foot in a good condition, your trip will be over after 1-2 days. Always have a pair of reserve shoes, light shoes. Test your shoes in different occasions, see how are resisting.\n\n2. Stage TWO - strength and resistance\n- take a medium hiking trip, this time a bit more difficult, longer and a bit more harsh environment.\n- put in your backpack ONLY the items that used in the phase one, at least once per day. All the rest, throw them away, are useless.\n- put half of the food and drinks you had in the phase one - see how much you can resist with less and also start organizing better your energy\n- take the shoes that were best for you\n- less clothes too\n- walk faster and longer, only to see how your body could adapt.\n- this is the phase when you train your body and your mind - RESISTANCE\n\n3. Stage THREE - enjoy\n- now take the longer route and don't plan how many days you will made it. Just to enjoy it.\n- take a tent or a hammock with you and sleep outside, under a clear sky.\n- make your own schedule of walking. Some people walk better in the early morning, when the sun is not even arise. So you could have for example all afternoon available to relax in a nice place and just enjoy the rest of the daylight.\nSome other people are walking better under the hot sun, during the midday, some other are walking better afternoon until total darkness, but that could be more dangerous if the trails is not visible and well known.\n- take notes about all you do, timing, eating, drinking, wearing etc So you will know better for your next trip.\n\nIf after these 3 stages you are still alive and willing to make more trips, then you became a strong man that nothing can stop him in his trips. NOTHING. It's all about discovering your own strength, endurance, skills, mind.\nThere's no common universal advice about this experience, is all about YOURSELF. \n\nThis picture was not taken in the 1st stage... was in the 6th stage after many hikings, walkings, failures, lessons etc\n\n[![mt-summit-pleasure.jpg](https://i.postimg.cc/Y97w8vxq/mt-summit-pleasure.jpg)](https://postimg.cc/p9s7LX7g)\n\nBut you feel like a king of the world once you've done it. In that moment there's no other mountain, trip, valley that can scary you, you control everything. https://example.com/ 21522 436294 435657.436294.436525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8356351595757 0 \N \N f 0 \N 0 61403874 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 12:06:11.41 f \N \N \N 0 0 0 0 0 0 0 435721 2025-03-12 22:39:19.415 2025-03-29 22:39:48.158 Parents Corner - I Have Soap In My Mouth My wife and I were troubleshooting the sprinkler system this morning. We both had to be outside to check which ones were working. So just for 5-10 minutes we leave the kids inside, every now and then checking through the window that everything was ok.\n\nAfter some time I come back inside to see that my son is rubbing his hands and see that there's liquid hand wash over parts of his body. I take him to the sink to wash it off and see that he's put everything on the bathroom counter into the sink. Cream, towel, toothbrush, scissors etc. I told him off and put everything away. I think he got the idea from some recent Halloween games like making witch/warlock potions.\n\nSo tonight I go to brush my teeth and somethings not right... \n\nIt tastes funny...like SOAP!! \n\nI should have known but damn... \n\nIt lingers too... \N 9026 \N 435721 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 16.4235211576105 0 \N \N f 0 \N 0 66384393 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:42:10.467 f \N \N \N 0 0 0 0 0 0 0 443524 2025-03-19 11:58:56.753 2025-03-29 22:39:48.159 Discuss this Quote- Mahatma Gandhi It's Sunday, so it's time to discuss another quote. \n\nYou guys have been really awesome and insightful in responding to these. I think my strategy of just throwing the quote out there and letting everyone respond has been better than giving my thoughts on the quote as a jumping off point. You all likely know this one, so here goes:\n\n"First they ignore you, then they laugh at you, then they fight you, then you win." _-Mahatma Gandhi_\n\nGive me your thoughts. Can be Bitcoin centric or not. \n\nCheers,\nGR\n\n\n\n \N 1468 \N 443524 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 28.0771644945034 0 \N \N f 0 \N 0 5883546 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:04:21.76 f \N \N \N 0 0 0 0 0 0 0 314960 2024-12-01 18:52:02.388 2025-03-29 22:39:48.159 The Bitcoin ETF is the spiritual reversal of Executive Order 6102 \N https://balajis.com/p/the-bitcoin-etf-is-the-spiritual 776 \N 314960 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.9197480852922 0 \N \N f 0 \N 0 112394375 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:32:06.925 f \N \N \N 0 0 0 0 0 0 0 447153 2025-03-21 16:39:04.299 2025-03-29 22:39:51.709 \N This is the subject of a draft manifesto / research agenda for me: the neurological features of obligations. I call these _loomings_. The idea appears in lots of places -- your link is one such -- but if you pull the thread it goes nearly infinitely deep. Reality starts to unravel like a knit sweater.\n\nIt seems like one of the most important things in the world that almost nobody talks about. https://example.com/ 12072 447147 446371.446452.447063.447086.447111.447125.447138.447147.447153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4100813336121 0 \N \N f 0 \N 0 118208224 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:06:45.075 f \N \N \N 0 0 0 0 0 0 0 434359 2025-03-11 20:18:05.025 2025-03-29 22:39:51.709 \N This is great, and timely. Thanks!\n\nWhen I started caring about this it brought me down a btc-like rabbit hole, where you have to really get solid about your notion of identity, and confront the relationship between identity and social proof. It turned very philosophical for me, and weirdly fun. https://example.com/ 730 434336 433878.434336.434359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3940916406245 0 \N \N f 0 \N 0 206988704 0 f f \N \N \N \N 433878 \N 0 0 \N \N f \N 2025-03-18 18:47:00.784 f \N \N \N 0 0 0 0 0 0 0 434629 2025-03-12 04:43:59.625 2025-03-29 22:39:51.71 \N Information wants to be free. If you're in the business of selling bits, then you're in the business of enslaving ideas and limiting the free flow of information. Only the violence of nation states can enforce a monopoly over the trade of information and grant the exclusive "rights" to profit from its distribution. So to play this game, you need lawyers and trade deals with other idea traffickers. If you try to sell information without the state's approval, they'll lock you up. Better to be a pirate and liberate the ideas from their paywalls for no profit of your own.\n\nOr start a new market and solicit information direct from the originators (artists, writers, etc.) Include in your ToS whatever you like. But be prepared to enforce your monopoly using the long arm of states whenever a pirate wants to help "your" ideas be free. https://example.com/ 20717 434535 434535.434629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.7163206302524 0 \N \N f 0 \N 0 38160536 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 2025-03-18 23:25:08.463 f \N \N \N 0 0 0 0 0 0 0 434423 2025-03-11 21:46:55.618 2025-03-29 22:39:51.711 \N Seems like a better problem for you to have than the rest of us. ;)\n\nMy "hot" feed has been great lately. You all did a great job tweaking that to deliver stuff I want to see pretty quickly after it's been posted. https://example.com/ 2776 434363 426587.434363.434423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8062501129979 0 \N \N f 0 \N 0 127602430 0 f f \N \N \N \N 426587 \N 0 0 \N \N f \N 2025-03-19 05:00:09.215 f \N \N \N 0 0 0 0 0 0 0 434491 2025-03-12 00:40:32.566 2025-03-29 22:39:51.714 \N Oh no, there is no question in my mind that he's authentic. The question is: authentically what? \n\nHe went from "hey maybe this btc thing is important, maybe I should learn about it" to swallowing the hook on every possible conspiracy or tinfoil hat thing he ever brushes against. He recognizes that existing systems produce some bad effects, and instead of digging into the complexity of the world, he sort of relaxes into his circlejerking like it's a warm bath. You probably have hyper-liberal and hyper-conservative friends who do the same thing. It's a familiar archetype.\n\nHe seems like he's got a good heart. That's half the problem. https://example.com/ 8664 433833 433833.434491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7189196546651 0 \N \N f 0 \N 0 120189924 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 2025-03-19 05:01:24.474 f \N \N \N 0 0 0 0 0 0 0 435177 2025-03-12 14:09:02.635 2025-03-29 22:39:51.715 \N Fix bugs, write patches, get hired. In that order. https://example.com/ 997 435120 435120.435177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.14857542963818 0 \N \N f 0 \N 0 114613873 0 f f \N \N \N \N 435120 \N 0 0 \N \N f \N 2025-03-20 00:21:51.955 f \N \N \N 0 0 0 0 0 0 0 448547 2025-03-22 17:08:48.005 2025-03-29 22:39:48.159 Multisig to Musig2 Migration Guide? Has anyone been able to migrate a personal m/n multisig offline storage to a taproot [MuSig2](https://github.com/bitcoin/bips/blob/master/bip-0327.mediawiki) storage?\n\nI know that wallet integrations are waiting for [MuSig2-PSBT](https://github.com/achow101/bips/blob/musig2-psbt/bip-musig2-psbt.mediawiki) but isn't that just a user experience issue for ease of use?\n\nFor the case of a single person creating and managing multiple keys (say a 3/5) for the purpose of legacy management and distribution to family and friends, the initial setup can handle multiple rounds of communication and trust. Is this doable today? If so, it would be valuable to have a detailed guide that could be performed on testnet. \N 6749 \N 448547 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.0109694533564 0 \N \N f 0 \N 0 211700489 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 14:47:57.809 f \N \N \N 0 0 0 0 0 0 0 436160 2025-03-13 11:03:41.851 2025-03-29 22:39:51.716 \N I am using NWC for both sending and receiving, pointed at a hosted Alby Hub https://example.com/ 1605 435970 435970.436160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5719981668801 0 \N \N f 0 \N 0 196519869 0 f f \N \N \N \N 435970 \N 0 0 \N \N f \N 2025-03-20 04:54:25.234 f \N \N \N 0 0 0 0 0 0 0 434335 2025-03-11 19:47:26.393 2025-03-29 22:39:51.717 \N ![Screenshot 2024-03-09 at 23.15.42.png](https://m.stacker.news/19681)\nBottom right. Shows 1,000 sats https://example.com/ 20624 434326 434278.434309.434326.434335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1282304618074 0 \N \N f 0 \N 0 64227762 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 18:54:03.603 f \N \N \N 0 0 0 0 0 0 0 436265 2025-03-13 12:31:11.828 2025-03-29 22:39:51.718 \N If I want to give your theory the best chance to not be disconfirmed, which Billy Talent album should I attempt? (You listed the first 3, but which, if you get one shot?) https://example.com/ 19446 436028 436028.436265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.688859857185 0 \N \N f 0 \N 0 34993496 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:54:47.071 f \N \N \N 0 0 0 0 0 0 0 433892 2025-03-11 13:48:08.783 2025-03-29 22:39:51.718 \N I think it has more to do with traders being traders and getting themselves liquidated. https://example.com/ 9350 433869 433066.433088.433456.433557.433869.433892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0689759062429 0 \N \N f 0 \N 0 212520707 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 2025-03-19 09:13:37.06 f \N \N \N 0 0 0 0 0 0 0 436666 2025-03-13 19:14:53.935 2025-03-29 22:39:51.718 \N The thing that I REALLY HATE of this wallet app is that when you have make an invoice is default to FUCKING fiat.\nYOU HEAR ME BLINK?!\nfuck you with your your pushing users to fiat!\nI hate that I have to switch to sats EVERY FUCKING TIME I have to make an invoice.\n\nBLINK ! ARE YOU FUCKING MORONS OR WHAT?\nWE ARE GOING TOWARDS BITCOIN STANDARD NOT FIAT STANDARD\n\nBTW... updated version of this ladder chart here\n[![wallets-learning-climbing.jpg](https://i.postimg.cc/qvH59JWk/wallets-learning-climbing.jpg)](https://postimg.cc/gn4shWY5) https://example.com/ 1047 436593 436593.436666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09795232444832 0 \N \N f 0 \N 0 228427036 0 f f \N \N \N \N 436593 \N 0 0 \N \N f \N 2025-03-20 13:09:42.928 f \N \N \N 0 0 0 0 0 0 0 436239 2025-03-13 12:12:26.421 2025-03-29 22:39:51.718 \N I had noticed the same with early posts. \n\nI wonder if it's driven by the reward schedule: early posts have more time to climb the ranks and earn more rewards.\n\nMaybe an upcoming rewards experiment can vary the timing of the rewards calculation. \ncc: @k00b and @ekzyis https://example.com/ 664 436231 436231.436239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7879028817515 0 \N \N f 0 \N 0 210762219 0 f f \N \N \N \N 436231 \N 0 0 \N \N f \N 2025-03-20 05:45:45.63 f \N \N \N 0 0 0 0 0 0 0 434936 2025-03-12 10:53:38.01 2025-03-29 22:39:48.16 An Ode to The Onion Router (Tor) "Tor is a fundamentally flawed and captured network."\n\nI have slowly began to feel this way over the last few years.\n\nNonetheless, Tor has done amazing things for Bitcoin and human freedom.\n\nThis October, Tor will have been serving activists and cypherpunks for 20 years. Although the concept of onion routing goes back to the '90s.\n\nI first used Tor around 2010. I was drawn to the anti-establishment sentiment surrounding the Occupy Wall Street movement and the hacktivist groups like Anonymous (we are legion). There was more to the Internet than was reachable by Google and it was mind blowing at the time.\n\nI felt like I was back on my dial-up modem, following links across message boards to crawl the web. Only this time, instead of dialing into my phone line, I was "establishing onion circuits" using the Tor browser on my windows vista laptop.\n\nMy relationship with Tor soon led me to Bitcoin and for that, I'm extremely grateful.\n\nI was willing to overlook the fact that [Tor was created by the US Naval Research Lab](https://www.torproject.org/about/history/) and received funding from the Department of Defense. After all, if only the military used Tor, it would be very easy to spot military traffic on a network. Just look for encrypted packets following Tor's onion routed scheme. The military had to release Tor to the public to improve their own anonymity set.\n\nI was willing to overlook the fact that the feds were able to track down the exact server which hosted the Silk Road. Even though the site was hosted as a Tor hidden service. Perhaps, they found it through good old fashioned investigation, certainly there's no backdoors in there, right? It took the FBI three years before they released [their story for how they "legally" identified the site](https://www.wired.com/2014/09/the-fbi-finally-says-how-it-legally-pinpointed-silk-roads-server/amp). \n\nI was willing to overlook the fact that to run an effective Tor relay that gets any substantial traffic, [you have to "verify yourself" with an email address](https://2019.www.torproject.org/docs/tor-manual.html.en#ContactInfo). How insane is that for an "anonymous" cypherpunk network? But I let it slide, because it was there to stop the spammers.\n\nI was willing to overlook that the entire network had been getting slower over the years (despite better internet speeds globally) due to ongoing DDoS attacks lasting days, then weeks, then months. Now in Q4 2022, [the Tor network has been constantly attacked](https://status.torproject.org/issues/2022-06-09-network-ddos/) for the better part of a year.\n\nI was even willing to overlook my own reluctance to run a Tor relay. Even though I self host everything, run my own node, and used Tor. I don't know why, I just didn't see the immediate benefit to running a relay.\n\nWithin the last year or so, I've found it more difficult to overlook these issues. Especially, once I started thinking like an adversary in the context Bitcoin and lightning.\n\nIn Bitcoin, we worry about our networks becoming too centralized. We think about the knock-on effects of every decision. We worry about spam, scalability, privacy, and every conceivable attack. We even worry about the attacks we haven't thought about yet.\n\nIt came as a total shock that the Tor community is distinctly lacking this level of rigor. Maybe they had it once, early on. But today, the vibe is a different one.\n\nThe Tor community seems to either ignore the declining usability of their protocol or they'll complain about the constant DDoS-ing, and laugh it off with a meme about those bastards at the FBI ruining the fun. \n\nSeveral proposals have been made to address the issue, but they never seem to get anywhere. The Tor maintainers appear to have no desire to make fundamental changes to the protocol. Even when provoked by severe network latency, they come up with band-aid solutions just to get through the next wave of attacks.\n\nIt seems that, to them, Tor is for journalists to whistleblow, censored citizens to escape firewalls, and junkies to buy weed online. So what's the big deal if they have to wait around a few minutes for a page to load? Just try again later. While you wait, run a relay or gaurd node! As long as it's anonymous, and the message gets there eventually, what's the problem?\n\nHeck, I can't even blame them. Tor does exactly what it's meant to do (assuming it's not actually backdoor'd). It doesn't promise to be blazingly fast or even reliable. It's pretty common for protocols to solidify over time and resist change.\n\nOne evening, I'm browsing .onions with the usual fifteen seconds of waiting between page loads, when I notice some sites are advertising their .i2p urls. \n\n"What's this?", I research I2P for a few minutes while a Tor site loads in the background but it seems pretty complicated to get running so I forget about it.\n\nA few weeks later, I found myself refreshing the Tor browser for an hour just trying to get a page (any page) to load.\n\nI finally said, "FUCK THIS! I'm going to figure out this I2P bullshit!" and in less than 30 mins I had a browser configured to use my I2P router and was crawling "eePSites" with decent speed!\n\n"Woah, I wonder if Bitcoin can use this?", I remember thinking. \n\nI find it concerning that Bitcoiners have built their "sovereign stack" around Tor on the assumption that it would be reliable. \n\nImagine my surprise when I found out that [Bitcoin Core already supports I2P](https://github.com/bitcoin/bitcoin/blob/master/doc/i2p.md) as a P2P network layer. I was relieved that the folks working on Core have thought about this and we're well ahead of the curve.\n\nI think that the folks working on lightning are more focused on scaling and commercialization. It seems the experience of the sovereign user often takes a "back seat" in Lightning Land. But the drawbacks of Tor really start to show themselves when using LN.\n\nTor and BTC go way back. But I really hope we're soon able to use I2P on lightning as well.\n\n[I2P is also turned 20 this year.](https://geti2p.net/en/blog/post/2021/08/28/History-of-I2P) its interesting how I2P and Tor were both conceived around the same time. Tor by a Naval scientist, and I2P by a lone cryptographer ([watch I2P's creator give a TED Talk](https://www.ted.com/talks/lance_james_how_attackers_can_use_your_brain_against_you_in_psy_ops)).\n\nIt's possible that I2P will one day suffer the same fate as Tor. It could also be DDoS'd into oblivion. However, it would be relatively more difficult to pull off since every I2P user must run their own relay. Unlike Tor where thousands of users share the same relay.\n\nI2P is also way smaller. So if the Fed Bois wanted to, they could probably double the number of routers on the network and start eclipsing users.\n\nIf any of this got you excited, [consider running an I2P router at home](https://youtu.be/F6ze6S1aDJs) and/or [run a Tor relay](https://youtu.be/npg3cBJusnA).\n\nYou can even enable I2P alongside Tor on your Bitcoin core nodes. Just [point your node to your own I2P router](https://github.com/bitcoin/bitcoin/blob/master/doc/i2p.md).\n\nIf you run a .onion site, [consider serving it over I2P as well](https://geti2p.net/en/blog/post/2019/06/02/mirroring-guide).\n\nI believe in Bitcoiners ability to stay advasarial and fight back against censorship. Next time you see someone complain about Tor, ask what they're doing about it. Whether they're running relays, petitioning for change or seeking alternatives, it's better than just complaining.\n\nThanks to Tor for your decades of service. Though not perfect, you've been a net benefit for humanity.\n\nIt's time to remind the authoritarians attacking Tor that the sovereign spirit is like sand: the more you squeeze it, the more flows from your grasp. \N 8945 \N 434936 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 5.11914376260378 0 \N \N f 0 \N 0 11368906 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 05:29:49.355 f \N \N \N 0 0 0 0 0 0 0 435708 2025-03-12 22:20:08.424 2025-03-29 22:39:51.709 \N Scooter on a sidewalk? https://example.com/ 1745 435577 435577.435708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.64903357457475 0 \N \N f 0 \N 0 106745116 0 f f \N \N \N \N 435577 \N 0 0 \N \N f \N 2025-03-19 16:45:58.604 f \N \N \N 0 0 0 0 0 0 0 447260 2025-03-21 18:21:05.699 2025-03-29 22:39:51.718 \N @k00b is meta data stripped on uploads? https://example.com/ 20562 447160 447160.447260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2377164780892 0 \N \N f 0 \N 0 129227377 0 f f \N \N \N \N 447160 \N 0 0 \N \N f \N 2025-03-28 11:47:37.841 f \N \N \N 0 0 0 0 0 0 0 443539 2025-03-19 12:08:46.05 2025-03-29 22:39:51.718 \N a kids swing https://example.com/ 14385 443197 443197.443539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.36847650140187 0 \N \N f 0 \N 0 129336216 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 2025-03-26 05:32:14.167 f \N \N \N 0 0 0 0 0 0 0 433865 2025-03-11 13:14:41.068 2025-03-29 22:39:48.161 Where does creativity strike for you? Why is it that tons of the world's greatest thinkers were all into walking?\n\nEinstein, Socrates, Aristotle, Marie Curie, Beethoven, etc... the list goes on.\n\nI certainly can see why.\n\nI try to walk daily. It feels like whenever I walk, there's a flow state that comes after a few minutes that opens my mind up. I'm more clear-headed, sensitive to my environment, and generally in a better mood. It's meditative, and it feels like paths opening up in the brain that were shut off prior to the walk.\n\nI've definitely thought of quite a few posts that I've posted here on SN while walking!\n\nSo, where do you find that creative spark the most? What other habits do you have to get the creative juices flowing? \N 21532 \N 433865 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 23.0283033089492 0 \N \N f 0 \N 0 222394768 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 06:05:01.959 f \N \N \N 0 0 0 0 0 0 0 434786 2025-03-12 08:37:06.696 2025-03-29 22:39:48.161 Zaprite x Voltage integration - SMB Bitcoin payments \N https://docs.voltage.cloud/zaprite 1584 \N 434786 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 8.02801519256928 0 \N \N f 0 \N 0 123754925 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:33:18.434 f \N \N \N 0 0 0 0 0 0 0 436133 2025-03-13 10:45:29.974 2025-03-29 22:39:51.71 \N @k00b merging PRs like https://imgprxy.stacker.news/xwbflQrHctMtv0W9VgprPNYICgL1CSZs2QtyN2kqsAI/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYTQuZ2lwaHkuY29tL21lZGlhL2wwSGU0bmt5STVjTWhYenZXL2dpcGh5LmdpZj9jaWQ9MjE1NGQzZDc5M3B0bHd4ZGJnYmtucnlxcHc0OHd6MnJwZncwN3l3bTR3cHNqbnh4JmVwPXYxX2dpZnNfc2VhcmNoJnJpZD1naXBoeS5naWYmY3Q9Zw https://example.com/ 1173 435973 435944.435973.436133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.07828632297766 0 \N \N f 0 \N 0 224141244 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 04:55:11.195 f \N \N \N 0 0 0 0 0 0 0 436094 2025-03-13 10:14:26.923 2025-03-29 22:39:51.71 \N I'm still amazed that no-one has built a better experience for reading public mailing lists. \nIs Pipermail 0.09 really the state of the art?https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2023-September/thread.html https://example.com/ 16336 435628 435551.435608.435615.435628.436094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.29739630603422 0 \N \N f 0 \N 0 166028977 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 2025-03-20 04:09:31.763 f \N \N \N 0 0 0 0 0 0 0 436033 2025-03-13 08:52:46.351 2025-03-29 22:39:51.71 \N I love the honesty - did your VC saw that? 😄\n\nSeconding what others have already said, I think three things that might be missing are:\n\n- some background on the context that led to specific design decision. Some of if is trivial (can't develop on Nostr when Nostr doesn't really exist/has traction yet), some might be worth digging into ;\n- what you are doing to overcome current limitations (JIT-funding paired with automatic withdrawals kinda addresses the self-sovereignty issue ; outer space may bring SN onto Nostr, etc.) ;\n- what's good on this side of the fence. After all, people are using SN daily, so surely there is a lot to enjoy here!\n\nOther than that, love the slides style and the memery. https://example.com/ 5487 436028 436028.436033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7992911548795 0 \N \N f 0 \N 0 66622363 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 10:02:16.951 f \N \N \N 0 0 0 0 0 0 0 435671 2025-03-12 21:40:05.414 2025-03-29 22:39:48.161 zap.meme - building in the open #3 ![logo-sm.png](https://m.stacker.news/14885)\n\n# building in the open #3\n\n[zap.meme](https://zap.meme) is a new meme platform where you can create and share memes and emojis, and earn Bitcoin! We're currently competing in the PlebLabs Top Builder competition.\n\nthis is our weekly progress update post! we'll be outlining what we've been up to this week, what we plan for next week, general strategy and product roadmap stuff, and other random ideas!\n\n#### Previous posts\n\n- [building in the open #1](https://stacker.news/items/413007)\n- [building in the open #2](https://stacker.news/items/421566)\n\n#### Introductions\n\nCTO - Jowo (@jowo) is a Full-stack web engineer with an indie game development background. He's been working in Bitcoin for one year and has had a keen interest since 2015.\n\nCMO (Chief Meme Officer) - JD (@zapmeme) is a meme connoisseur and Bitcoiner. He's worked in people facing roles for over 10 years and is helping out with [zap.meme](https://zap.meme) doing testing and meme curation, as well as a myriad of other tasks that need attention. Once we have traction, he'll also be in charge of customer support and operating as a moderator.\n\n## This week\n\n#### The plan\n\nLast week we outlined the following plan for the week:\n\n- Improve the core UX of the meme feed.\n- Bring economic incentives into the app for content consumers.\n- Plan some marketing and strategy for generating exciting hype around our product!\n\n#### What actually happened\n\nWe hit some speed bumps this week. So we're slowing down and assessing our direction.\n\nThis Monday, after taking the weekend off, we noticed a malicious user was able to steal about $8 worth of satoshis using a bug in the wallet functionality. Ooops! Looks like we rushed thing a bit. So we disabled the wallet features and did a little soul searching. Feeling pretty burned out after the amount of intense work we've put in up until now, we ended up taking the whole week off. It was much needed. Although it probably won't help our chances of making it through to round three of Top Builder, we decided not to force ourselves to work. We know the signs of burnout, and didn't wanna push it. Work should be fun, especially on a project like ours, and if it feels like a chore, somethings wrong.\n\nNot great timing considering we now only have one week left for the second round of PlebLabs Top Builder, but it is what was needed. And taking the long view, we think it's for the best because it gave us some head-space to think about our roadmap and what's best for the product long term.\n\nWe've come to the conclusion that the core "reactions" dynamic in zap.meme not optimal. Why? Primarily because they're proprietary / closed source. By that we mean you can react using a custom emoji that's only useable and visible on our platform, with sats all being handled in a custodial manner. When we first built this functionality, it felt like a natural direction to go in. We had custom emojis, we had memes, let's use them to react and send zaps! An hey, that's how it works on WhatsApp / Telegram... And in some ways it is natural. Natural for a closed, centralized platform that is.\n\nHowever, that's not what we want to be. So, after doing some soul searching and research, we've decided to shift things up in our roadmap. Last week, we had planned to bring some economic incentives to meme consumers. We had a pretty cool idea for this, but we're gunna scrap it because it only builds further on top of the closed foundations.\n\nSo, our new road map will lean even more heavily on Nostr than we have been doing so far. Our new "mission" could probably be best described as: "Open memes for everyone, powered by Nostr" and our goal is to become a fully fledged Nostr client for meme lords, but also an open and accessible way for content consumers who are new to Nostr, to dip their feet in without having to learn any of the Nostr specifics stuff.\n\nSome key changes we'll be making to the app:\n\n- Removing the proprietary "reactions" within zap.meme and powering zaps with the [NIP57](https://github.com/nostr-protocol/nips/blob/master/57.md) zaps\n- Building Nostr tools so users can create and sign Nostr events and broadcast notes and memes via Nostr using zap.meme\n- Allowing our custom emojis to be used in Nostr notes using [NIP30](https://github.com/nostr-protocol/nips/blob/master/30.md) custom emojis. This will be a big one! See below for some more thoughts, including an API / other tools to allow other Nostr clients to integrate our custom Emojis.\n\n##### NIP30 emojis\n\nCustom emojis are hilarious and the let users express themselves in ways that legacy Emojis simply never will. Legacy unicode emojis are essentially boring, generic, corporate slime. They're created and maintained by big tech, are utterly PC, and are fundamentally limited.\n\nWe think that the custom emoji on zap.meme have a ton of potential, and that NIP30 can really bring them to life by opening them up to the world in a free and open standard. We see a future where anyone can create an emoji, and it'll thrive and be used and go viral of it's own merit, circumventing the Unicode consortium controlled by big tech companies.\n\nAnyway, our little rant out of the way, we wanna bring custom emoji to Nostr using NIP30! Just look at them in all their glory... and this is just the tip of the ice burg!\n\n![Screenshot 2024-02-18 115150.png](https://m.stacker.news/16667)\n\n## Next week\n\nThe plan for next week:\n\n- Research how we'll implement NIP30 and NIP57.\n- Plan and design UX changes based on outcome of research above.\n- Fix wallet functionality.\n- Make some improvement to our Nostr integrations scripts and import more memes!\n We wanna get over 25,000 memes on the app by next week.\n- Make a start on adding NIP57 zaps.\n\nAlso, we're gunna aim to end our daily work session on a high, so we're excited to start again the following day. Instead of working crazy hours and burning out! Also, unless we get some funding to keep working on zap.meme, we're gunna have to work part time on it for now - most likely circa 4-6 hours per week day.\n\n## Stats\n\n| | Week 1 | Week 2 | Week 3 | Week 4 | ... |\n| ---------------------- | ------ | ------ | -------- | ------ | --- |\n| Weekly page views | 400\\* | 1688 | 700 \\*\\* | | |\n| Weekly Unique visitors | 80\\* | 325 | 95 \\*\\* | | |\n| Total registered users | 34 | 83 | 103 | | |\n| Total memes uploaded | 8323 | 8491 | 8599 | | |\n\n\\* approximate because analytics were added in the middle of the week\n\\*\\* approximate because we accidentally broke the analytics half way through the week\n \N 5003 \N 435671 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 24.4101380638049 0 \N \N f 0 \N 0 162865953 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 22:16:23.263 f \N \N \N 0 0 0 0 0 0 0 441807 2025-03-18 10:00:49.496 2025-03-29 22:39:48.162 Let's play around with BOLT12 Following Phoenix's recent announcement supporting BOLT12 (https://stacker.news/items/595799), let's play a bit with it.\n\nPost your static lightning invoice here, I might send you a few sats... Other than Phoenix, there is Zeus I think with BOLT12 support. Any other wallet already supports it?\n\nFor reference, this is mine: lno1zrxq8pjw7qjlm68mtp7e3yvxee4y5xrgjhhyf2fxhlphpckrvevh50u0qvm8t927d6g3hry88acurmvya2u0d5d6yruju7edupl8cpm07qfdvqszaggk7hf739g2td3tmc72hsk8qv02wyt6ypyualym9feutq6gu5sqqvcs0exguxrf20fm6cv9avqh0zeq3juvhhnl7z2ktc2uh8w9ypqcy25glvk5rfe62pjfccz9k50wq39dd9t4qv9ar4uv0s3qh8jhusqkz8l2z59kmvzxyxu6cdrgqt2q065sjxg96qqsg86emkxs7kypw8lfvnkn4nw045 \N 8726 \N 441807 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.0602789772372 0 \N \N f 0 \N 0 152088144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:48:12.831 f \N \N \N 0 0 0 0 0 0 0 447233 2025-03-21 17:53:42.575 2025-03-29 22:39:51.711 \N You definitely don't need typescript (strongly typed languages are FUN, much more than they are actually useful, when you actually know JS well enough), or microservices (why would you need that, total unnecessary complexity. connection pooling on your postgres will be perfectly adequate, and you can just make it a JAMstack behind a CDN if you really need performance and SEO. I highly recommend redwoodjs). You definitely don't need websockets (websockets do not scale. One open per user. And why? Do not use websockets). \n\nYou definitely need tests, in fact you need CI with github actions. And you should update your [README.md](https://tom.preston-werner.com/2010/08/23/readme-driven-development.html) and provide a script for simple local dev startup. \n\nImo:) https://example.com/ 14688 447106 445096.445420.447106.447233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.87201307653553 0 \N \N f 0 \N 0 226758121 0 f f \N \N \N \N 445096 \N 0 0 \N \N f \N 2025-03-28 11:43:25.379 f \N \N \N 0 0 0 0 0 0 0 443684 2025-03-19 13:15:36.395 2025-03-29 22:39:51.711 \N gpt was having trouble with the full set of data for whatever reason\n\nI mainly just wanted to convey that recent exponential growth anyway, comments ranged around 10-40 for a long time prior to August from what I glanced at https://example.com/ 20655 443372 443372.443684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0409682261796 0 \N \N f 0 \N 0 139745433 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 06:32:58.478 f \N \N \N 0 0 0 0 0 0 0 434722 2025-03-12 07:32:43.221 2025-03-29 22:39:48.162 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats. \n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/335073) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 20152 \N 434722 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.4827018189588 0 \N \N f 0 \N 0 230063937 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:33:42.471 f \N \N \N 0 0 0 0 0 0 0 435601 2025-03-12 20:05:47.704 2025-03-29 22:39:51.709 \N I can highly recommend Postgres.js as an alternative to pg. Performs great, supports pipelining and a more ergonomic way of building queries. \n\nhttps://github.com/porsager/postgres https://example.com/ 20306 435457 435457.435601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3226891953541 0 \N \N f 0 \N 0 215893089 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 2025-03-19 14:32:26.02 f \N \N \N 0 0 0 0 0 0 0 435558 2025-03-12 19:30:40.124 2025-03-29 22:39:51.711 \N >... possibly the biggest change in bitcoin's history\n\nI'm certainly not technical enough to know how big this is, but I've seen enough posts lately about drive chains to sense that I should try and understand more about what's going on.\n\nFor those in the know: is the debate about drive chains in any way comparable to the block size debate of 2016/17 in terms of scale, importance, potential "war", etc?\n\nOr is this just normal core devs debating that I'm just more aware of this time round? I see (for example), that @petertodd doesn't like luke's approach. But is this cause for concern, or just healthy debate? \n\nGenuinely just curios to know. https://example.com/ 21523 435438 435217.435275.435277.435295.435438.435558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.00498131562787 0 \N \N f 0 \N 0 16142251 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 13:12:13.252 f \N \N \N 0 0 0 0 0 0 0 448241 2025-03-22 13:59:21.761 2025-03-29 22:39:51.711 \N Sure, I don't mind managing it. I would like you input on the rules, buy in, re-buys, tie breakers, deadlines and any other input from your league that may help it run smooth. \n\nChecking notifications today I see we have a few more folks interested. Would be nice if we could get at least 10. https://example.com/ 10934 448232 448200.448232.448241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6896277214142 0 \N \N f 0 \N 0 224649302 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N 2025-03-29 08:39:17.651 f \N \N \N 0 0 0 0 0 0 0 436417 2025-03-13 14:49:57.337 2025-03-29 22:39:51.712 \N since reddit is intent on killing 3rd party apps, i figured i should prepare for my inevitable r/bitcoin withdrawal and create an account. \n\ni "upvoted" someone and now i have a cowboy hat. \n\ni have no idea what's going on, but i'm here for it ¯\\_(ツ)_/¯\n https://example.com/ 2203 436397 436397.436417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.98717518467 0 \N \N f 0 \N 0 205834032 0 f f \N \N \N \N 436397 \N 0 0 \N \N f \N 2025-03-20 10:08:01.387 f \N \N \N 0 0 0 0 0 0 0 436559 2025-03-13 16:42:43.33 2025-03-29 22:39:51.712 \N Make the notification opt-in. Don't blast it in my face for browsing the site. https://example.com/ 21556 436523 436523.436559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6890984334603 0 \N \N f 0 \N 0 25480209 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 2025-03-20 11:47:51.91 f \N \N \N 0 0 0 0 0 0 0 436365 2025-03-13 13:57:29.275 2025-03-29 22:39:51.712 \N > We were already thinking about how to open up SN to more users without requiring an account. \n\nNow that subs are more widely support, perhaps a sub for that, ~free.\n\nWhere posts and comments are free. Not sure now a person could post "without requiring an account" , but it could be where a person could post something, get tipped, and then have funds to post (or re-post the same content) to ~bitcoin (or ~nostr, or any other ~sub).\n\nIt wouldn't even need to be a sub that appears in the list of subs, ... but something that a person would see when they go to post or comment and the error message offers that the post or comment can be added to the ~free sub instead. https://example.com/ 1173 436355 436355.436365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7164250038966 0 \N \N f 0 \N 0 241566203 0 f f \N \N \N \N 436355 \N 0 0 \N \N f \N 2025-03-20 07:16:31.101 f \N \N \N 0 0 0 0 0 0 0 434191 2025-03-11 16:50:14.957 2025-03-29 22:39:51.712 \N Not to belabor the point, but just wanted to add a link to the benchmarks: https://porsager.github.io/imdbench/sql.html https://example.com/ 738 433878 433878.434191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.23202872505111 0 \N \N f 0 \N 0 126230954 0 f f \N \N \N \N 433878 \N 0 0 \N \N f \N 2025-03-18 18:46:55.714 f \N \N \N 0 0 0 0 0 0 0 435697 2025-03-12 22:11:13.882 2025-03-29 22:39:48.162 How to kill Ordinals - by @udiWertheimer https://twitter.com/udiWertheimer/status/1741853672793841738?s=08\n\nHOW TO KILL ORDINALS\n\nI’ve been contacted by multiple laser-eye maxis, and some bitcoin developers, who tried to understand “what’s going on” and “how can we stop this”.\n\nHere’s my advice.\n\n1. Start using it.\n\nThe number 1 issue you guys are facing, is that you have no idea what’s even going on.\n\nYou don’t understand what type of data is being written on-chain and why. You don’t understand what causes the fee spikes on some occasions, and not on others. You don’t understand what drives ordinals users, where they’re coming from, what they’re trying to achieve, and how this affects the shared resource that is the bitcoin network.\n\nYou don’t have to agree with them, but how do you expect to deal with the situation if you don’t even understand it?\n\nI’m not trying to convince you that inscriptions/BRC20s/stamps/etc are not spam/scam/whatever. You can call them whatever you want. But you have to understand what they are and how they work if you have any hope of doing anything about it.\n\nEthereum and Solana users who got their first BTC a couple of days ago, now understand what’s happening on the bitcoin chain better than you do.\n\nI’ll try to be nicer for the rest of this post, but right now I must get this out of the way: you should be ashamed of yourselves.\n\nOrdinals have been living rent-free in your minds for a full year, you’ve been tweeting and podcasting about it non-stop, yet you couldn’t get yourself to spend a few minutes to try it and understand it. \n\nWHAT IS WRONG WITH YOU???\n\nYou have to accept that your approach so far has been abysmal, otherwise there’s no way you’re going to achieve your goals.\n\nSo download an ordinals wallet, load it with ~0.005 BTC and start playing around. You’ll probably lose all of it. Your goal here isn’t to make money, it’s to understand the ecosystem and what makes it tick so that you can do something about it.\n\nIf you absolutely can’t afford to lose 0.005 BTC then maybe sit this one out, champ. You probably have more pressing issues to attend to anyway.\n\n2. Talk to devs from the ordinals ecosystem\n\nLots of ordinals teams have very strong devs. They can help you fill the gaps in your understanding. They can explain why things are the way they are, what technical issues exist, and how they think things might evolve over time.\n\nI recommend putting your hubris on pause for this step. Don’t assume that just because they’re doing ordinals stuff, these devs are idiots. You’ll find that many of these guys understand bitcoin better than you do. Yeah, I can see your face turning red already, but it’s true.\n\nRemember, the goal of this exercise is to learn. So that you can finally kill ordinals. So be open minded here.\n\nI would’ve recommended to also talk to ordinals enjoyers who aren’t devs, but I know this is probably too much for you to handle…\n\n3. Compete\nWhen strong financial incentives are involved, it’s hard to stop people from doing things by yelling at them. After you spend time playing around with ordinals (step 1), you’re likely to agree that complaining in tweets, blogs, and podcasts is probably futile.\n\nNo amount of name calling, appeal to authority, or pseudo-moral mumbo-jumbo is going to stop people from taking advantage of what they perceive as a massive financial opportunity.\n\nWhat could help, if you choose to go there, is competition.\n\nSome of these protocols are highly inefficient. BRC20 for example blows up the UTXO set for no reason and has a lot of overhead. Degens could probably get the same benefits with a more efficient protocol, while being better stewards of the bitcoin network.\n\nIf you build alternatives that offer same or greater potential for degens while respecting their responsibility towards the network, that could improve the situation for all of us. \n@rodarmor\n is already doing this with “runes”, and there’s probably a lot more that could be done.\n\nBuild and support better protocols, and drive out the inefficient ones. At least consider it…\n\nBut there’s another form of competition you can do: improve the incentives and infrastructure for the transactions you DO want to see!\n\nPersonally I’m of the belief that there’s very little demand for non-speculative BTC payments right now. I say that based on 10 years of evangelizing bitcoin. I just don’t see that demand. And I believe that’s why the bitcoin mempools were empty prior to ordinals, and why lightning isn’t seeing a lot of usage. It’s not for any technical reason, it’s due to lack of demand by consumers. That’s the main reason why I believe ordinals are not a problem in the first place. It’s not like there are that many people who wanted to use BTC payments otherwise.\n\nBut if you disagree with me, prove it! Build better products and services that give people a reason to use BTC payments. Build better scaling solutions that stuff more economic value into L1 transactions. Better lightning solutions would help, better sidechains would help, covenants would help, rollups would help, a lot of other stuff would help.\n\nIf you think I’m wrong about the lack of demand for payments then you should build those layers and compete with ordinals. Scalable L2s would pack more economic value into each L1 transaction, allowing them to pay higher fees and drive ordinals out.\n\n4. Wait.\n“Everything is good for bitcoin”. Let the market do its thing. If you don’t want to test, learn, and compete, just wait. Eventually the market settles down and we will find out if people want to use bitcoin exclusively as the ordinals chain (unlikely) or not. I wouldn’t worry about it if I were you. As much as I think ordinals are important, I have no doubt that BTC as store of value is more important, and this stuff will figure itself out eventually.\n\nWhile you wait, I recommend taking care of your mental health. Maybe get a job. Tweeting and yelling all day about how much you hate ordinals is unlikely to help, though. I know you don’t believe me. I know you think if you just yell a little harder, if you just convince a few more low IQ “plebs” that ordinals are a scam, then this will all immediately blow over. You’re wrong.\n\nYelling won’t help. Filtering is not possible. I know you don’t want to believe me but the evidence is clear: you’ve been yelling and promoting filtering for a full year and it didn’t help. In fact, as I’m writing this, ordinals are bigger than ever, and trading volumes are at all-time-highs.\n\n—————\n\nAs for us, we will continue to do what we believe is the best thing we can do for bitcoin for now, which is leveraging JPEGs to accelerate bitcoin adoption and bring new capabilities and functionality to the orange chain that we love so much.\n\nWe’ve helped HUNDREDS OF THOUSANDS of people experience the magic of bitcoin for the first time in 2023, and in 2024 we’re going to shake things up even harder.\n \N 2196 \N 435697 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 11.6621966953968 0 \N \N f 0 \N 0 46533382 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 23:44:35.574 f \N \N \N 0 0 0 0 0 0 0 432504 2025-03-10 12:11:04.836 2025-03-29 22:39:48.163 CASCDR Update: CHADBot Stacker News Bot (BETA) is LIVE What's up ya'll! We've been under the hood at [CASCDR](https://cascdr.xyz) making a bunch of different AI centric modules & services. Today we have a fun release: a Stacker News Bot. An extension of the popular CHADBot service!\n\nWith CHADBot you will get access to an LLM that can summarize [Fountain](https://fountain.fm) podcasts, ELI5 complex tech debates or even argue for/against a debate point in the tone of Donald Trump!\n\n![](https://m.stacker.news/46241)\n_CHAD is here and he is ready. CHAD = CASCDR Hub for Acquisition of Data ;)_\n\n## How It Works\n1. Mention @CHADBot with any one of the commands listed below\n2. CHADBot replies with the amount you have to zap\n3. You zap CHADBot\n4. CHADBot replies with the result\n\n\n## Available Commands\n1. **Thread aware commands**: these read all the parent comments back to the original post and take that into account with one of the macro prompts describe below. Each can be virtually overridden/modified by supplying a custom prompt after the command\n- CHADBot /eli5 -> explain a complex thread to you like you're 5.\n- CHADBot /centipede [optional: for/against] -> argue for or against the last post of a thread the tone of [Donald Trump](https://www.youtube.com/watch?v=MKH6PAoUuD0&pp=ygUUY2FudCBzdHVtcCB0aGUgdHJ1bXA%3D). Default is against\n- CHADBot /shill -> try to persuade/pump up the products/opinions/businesses mentioned in the last comment \n- CHADBot /mETHard -> comment on a thread and somehow try to find a way to shoehorn a shitcoin in there.\n\n2. **Transcript Aware Commands:** these commands take into account podcast transcripts and can perform basic summaries or other analysis provided by a custom prompt\n- CHADBot /summarize [optional custom prompt/formatting] -> **must be replying to a fountain.fm link**: summarize a podcast's content with a basic TLDR format by default or a custom prompt of your choosing.\n\n\nLooking forward to extending the command set and seeing how you crazy stackers use it in the wild! Hit us with any suggestions or requests!\n\nCheers!\nThe CASCDR Team \N 15526 \N 432504 \N \N \N \N \N \N \N \N history \N ACTIVE \N 21.9526986616362 0 \N \N f 0 \N 0 183428401 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 03:45:29.649 f \N \N \N 0 0 0 0 0 0 0 436382 2025-03-13 14:11:30.408 2025-03-29 22:39:48.163 Harrison Bergeron by Kurt Vonnegut, Jr. Here's Vonnegut's brilliant short story (from over 60 years ago) about a society dedicated completely (and horrifyingly) to equality and conformity. https://www.tnellen.com/cybereng/harrison.html 2829 \N 436382 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.13443513556988 0 \N \N f 0 \N 0 203861719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 09:44:34.266 f \N \N \N 0 0 0 0 0 0 0 435285 2025-03-12 15:19:25.685 2025-03-29 22:39:51.709 \N You can't gossip about a channel that isn't yours. The gossip has to be signed by both nodes making up the channel to be accepted and relayed. So both sides must agree to announce it.\n\nHere's the proof of concept: https://github.com/BitcoinDevShop/hidden-lightning-network\n https://example.com/ 21021 435276 435276.435285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.602639081896 0 \N \N f 0 \N 0 196962547 0 f f \N \N \N \N 435276 \N 0 0 \N \N f \N 2025-03-19 09:16:54.826 f \N \N \N 0 0 0 0 0 0 0 436356 2025-03-13 13:51:02.364 2025-03-29 22:39:51.709 \N That's alright. Thank you https://example.com/ 5852 436352 435882.436352.436356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.68682060331289 0 \N \N f 0 \N 0 147920466 0 f f \N \N \N \N 435882 \N 0 0 \N \N f \N 2025-03-20 07:17:21.85 f \N \N \N 0 0 0 0 0 0 0 435864 2025-03-13 03:29:59.586 2025-03-29 22:39:48.163 What do we REALLY need to be fighting? **Ignorance** as Elon put it on Lex Fridman's most recent pod.\n\nI think I agree entirely on that: much of the evil in the world today can probably be considered a result of a lack of understanding. Between people, between ideas.\n\nSo, we decide killing each other is the best way to resolve our disputes. Apparently it's easier than trying to resolve the ignorance lying inbetween each party's perspective.\n\nWhat do you make of this? What really needs to be attacked, and what doesn't?\n\nHow does Bitcoin (if at all) help in these efforts? \N 1474 \N 435864 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 1.89361906885704 0 \N \N f 0 \N 0 138577677 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 22:16:21.571 f \N \N \N 0 0 0 0 0 0 0 443487 2025-03-19 11:39:31.695 2025-03-29 22:39:48.163 Vanguard Is Not Allowing Clients to Buy Bitcoin ETFs (They Can Sell Though) I’m hearing similar stories from people at Merrill Lynch and Citi, can any Americans confirm if this is the case?\n\nSeems like a GameStop 2.0 situation if these companies are only allowing sell orders from GBTC but not allowing people to buy. https://twitter.com/notsleepy/status/1745483397831532859 9334 \N 443487 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 4.6333819040478 0 \N \N f 0 \N 0 177765324 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:22:09.753 f \N \N \N 0 0 0 0 0 0 0 447189 2025-03-21 17:13:06.106 2025-03-29 22:39:51.709 \N Yeah so the drawback is, when you buy on CEX, those are kyc coins. When you sell your kyc coins to someone else, the chain analysis companies might assume that their transactions belong to you. \n\nThere's also the inconvenience of doing a p2p trade. By the time a money order or cash by mail reaches you, the price could have changed by usually probably 10% https://example.com/ 13327 446971 446937.446971.447189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4203105699992 0 \N \N f 0 \N 0 148572256 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N 2025-03-28 12:22:22.965 f \N \N \N 0 0 0 0 0 0 0 447219 2025-03-21 17:43:02.14 2025-03-29 22:39:51.71 \N I enjoyed the part about how not knowing about Bitcoin meant that ek didn’t have any walls with other people. Some deep introspective thinking here.\n\nWell, it’s lonely at the top, so enjoy the great view! https://example.com/ 21051 447199 447143.447179.447199.447219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9277219243147 0 \N \N f 0 \N 0 194075376 0 f f \N \N \N \N 447143 \N 0 0 \N \N f \N 2025-03-28 12:09:19.162 f \N \N \N 0 0 0 0 0 0 0 435741 2025-03-12 23:05:57.156 2025-03-29 22:39:51.71 \N This is why it's important to carefully vet what products/services/wallets you use in this space.\n\nI could try to start a witch hunt for the hacker but I dont think it's the right approach.\n\nI'm the one who let down my users, the hack was my fault, the attacker was just exploiting my mistake, so I take full responsibility. https://example.com/ 910 435488 435488.435741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1641936448552 0 \N \N f 0 \N 0 148392010 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 01:02:19.753 f \N \N \N 0 0 0 0 0 0 0 436043 2025-03-13 09:11:19.838 2025-03-29 22:39:51.711 \N Also, there is a slight overlap in the buttons on mobile:\n\n[![Screenshot-20221210-160414-com-android-chrome.jpg](https://i.postimg.cc/CxLqcSrC/Screenshot-20221210-160414-com-android-chrome.jpg)](https://postimg.cc/nCgrzbJM) https://example.com/ 21022 436024 435907.436014.436024.436043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7750056003315 0 \N \N f 0 \N 0 45796601 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 04:53:29.975 f \N \N \N 0 0 0 0 0 0 0 435280 2025-03-12 15:16:49.348 2025-03-29 22:39:51.711 \N btw gotta say this site is like so AWESOME on so many levels! kudos to u @k00b !! I got some random sats back from just beeing here :) effin hell maan! really magical place this is. https://example.com/ 6526 435246 435046.435246.435280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.07773488146005 0 \N \N f 0 \N 0 150120332 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:37:45.424 f \N \N \N 0 0 0 0 0 0 0 190861 2024-06-28 05:52:15.129 2025-03-29 22:39:51.711 \N It's an interesting point in general -- in real communities, these sorts of reputational things do a lot of work: if you're a dick to my friend, I will take note of that, and treat you differently as a result. The list you're describing could enable things like that, although at scale those sorts of forces tend to not work, or get weird.\n\nSo many interesting SN experiments that could be run! https://example.com/ 10549 190605 190541.190605.190861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1462851980369 0 \N \N f 0 \N 0 141496332 0 f f \N \N \N \N 190541 \N 0 0 \N \N f \N 2025-03-18 22:14:59.639 f \N \N \N 0 0 0 0 0 0 0 434025 2025-03-11 15:12:06.009 2025-03-29 22:39:51.711 \N Whoo! Nice job @k00b, this is going to change everything! https://example.com/ 669 433943 433943.434025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7871319053151 0 \N \N f 0 \N 0 229369234 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 2025-03-18 19:48:42.976 f \N \N \N 0 0 0 0 0 0 0 443602 2025-03-19 12:38:12.563 2025-03-29 22:39:48.163 Moving funds off my LND node I am preparing for a physical move and was recently moving funds off my LND node. Moving funds off LND was surprisingly difficult and demonstrated how lightning isn't really ready for the average user that isn't very technical and knowledgeable about Bitcoin. For me, it was a good learning experience and I think it's worth sharing with the community.\n \n### Unfortunate user defaults\nTo start off, I was running LND on umbrel. I know this isn't everyone's favorite way to run lightning, but it is easy to set up and it did the job for my needs over the past years. Umbrel is aiming to be the „the cloud in your home“, seemingly targeting an audience that isn’t technically illiterate, but also doesn’t require one to be an engineer.\nMoving funds off your LND is very easy. Umbrel offers a nice user interface to interact with your node. When setting up the withdrawal transaction though, it’s easy to make a mistake. Users have to opt-in to customize the transaction fees, otherwise the node’s default settings will be used. This is where my (admittedly stupid, because I should know better) mistake happened. Not paying attention, thinking that the automatic fee will be based on some sensible defaults based on current mempool conditions, I skipped setting up a custom fee. Unfortunately, the fee setting was set to 1.01sats/vB. The transaction made it into the mempool, but even at the currently low fees this meant that the transaction wasn’t going to be mined in a block in the foreseeable future. Not great if you are trying to shut down your node.\n\n### RBF to the rescue?\nUpon inspecting the transaction on mempool.space, I noticed that the RBF (Replace by Fee) tag shining in green. I thought great – I haven’t used RBF before, but that’s a good time to try and learn.\nThere isn’t a user interface for bumping the fee of your transaction, but luckily I am comfortable working in a terminal. I ssh’d into my umbrel node and started screening the documentation for bumping the fee on a transaction. (LND has a page that talks about Unconfirmed Bitcoin Transactions)[https://docs.lightning.engineering/lightning-network-tools/lnd/unconfirmed-bitcoin-transactions] which gave useful information about the `bumpfee` command. You first have to use `$ lncli listchaintxns` to find the transaction. Then, with `$ lncli bumpfee` you can bump the fee for an outpoint of a transaction – at least that is what I thought. Unfortunately, this doesn’t seem to be possible if the outpoint isn’t owned by the wallet itself. I’m not sure if this is an LND restriction or a Bitcoin thing? If you know, let me know in the comments!\n\n### Mempool Accelerator\nSo, RBF wasn’t working and my transaction still stuck. At this point, I was considering paying for the (mempool accelerator)[https://mempool.space/accelerator], which honestly seems to be a great service for less technical people, but was also extremely expensive compared to bumping the fees. In my case it would have been more than 10 times as expensive.\n\n### Meet CPFP\nI wasn’t ready to give up and as I started doing more research, I learned about CPFP (Child Pays for Parent). I had not heard about this before, but the idea is simple. As the receiver of a transaction that is stuck in the mempool, you can broadcast a transaction that spends the UTXO again to another one of your addresses with a higher fee so that miners are incentivized to pick up both of the transactions. This ended up being a good solution, because I was sending from my node to another wallet. It ended up being tricky too though, because by that time, a lot of nodes have dropped the low-fee transaction from their mempool, which meant that the unconfirmed transaction wasn’t showing up in my receiving wallet. I also couldn’t find a way to double-spend from the lightning node, but I was able to point the receiving wallet to use the bitcoin node of my umbrel node from where I posted the transaction. This way, the transaction showed up in my receiving wallet and I was able to create the CPFP transaction. The last hurdle was to broadcast the transaction to the network, because the CPFP transaction requires the low-fee transaction and the low-fee transaction was rejected from the network due to the fees being to low. Luckily, switching the connected node in Electrum and simply retrying until a node accepted the transaction worked out in the end.\n\nOverall, I feel like this experience showed how difficult running a lightning node can be. It’s too easy to make this kind of mistake. Mempool Accelerator and similar products can serve as a life-raft for less technical users, but they come at a high cost. There certainly is a lot of opportunity to improve the user experience for products like Umbrel. \N 11750 \N 443602 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.9646730717559 0 \N \N f 0 \N 0 238675884 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:38:19.168 f \N \N \N 0 0 0 0 0 0 0 434283 2025-03-11 18:48:38.336 2025-03-29 22:39:48.165 Instead of your life's purpose [This article](https://philosophyinhell.substack.com/p/instead-of-your-lifes-purpose) was a good kind of suckerpunch.\n\n> An alternate approach is a non-linear approach. It is premised on the idea that life is full of randomness punctuated by sudden moments – crises and opportunities – with vast potential for meaning making, when our skills and virtues shine.\n\n> Rather than struggle to discover a purpose or vocation, we become people who can recognize and exploit opportunities to create meaning as they arise – resourceful and audacious people who live adventurous lives.\n\nA contemporary struggle, for me, at this evaluation point in life where I have the freedom to move in various directions, and being pulled in many, and trying to find the thing that unites them all, that I can give myself to. And this is fucking _impossible_, you just grind and grind on it. What's _the right answer_?\n\nThe article is getting at the idea that maybe there isn't some true path, that makes sense of the others. Maybe what you can do is encounter each scene in a manner that you can contribute to it, whatever that means; and the aspirations is less to _accomplish mission x_ and more _become the person who can do something useful in this context_.\n\nOr at least, that's what I'm noodling on after reading this. I'm mostly thinking of what kind of person it is, who can make the most of the scenes with which the world presents me; and how I can turn into that kind of person. \N 10016 \N 434283 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.8821863699454 0 \N \N f 0 \N 0 167169261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:10.56 f \N \N \N 0 0 0 0 0 0 0 435158 2025-03-12 14:02:11.102 2025-03-29 22:39:51.71 \N ah, just sent over email :) https://example.com/ 16267 435151 435151.435158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9100306980853 0 \N \N f 0 \N 0 122836616 0 f f \N \N \N \N 435151 \N 0 0 \N \N f \N 2025-03-19 07:24:36.484 f \N \N \N 0 0 0 0 0 0 0 330574 2024-12-15 11:20:42.942 2025-03-29 22:39:51.712 \N Without veering into a vaccine debate, I would differentiate between shared conclusions (like "safe and effective") and shared facts. The facts would be the actual details of the trials.\n\nFrom a cultural standpoint, I think you're right that people being more humble about what they actually know would go a long way. https://example.com/ 12139 330494 330427.330494.330574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4928312816278 0 \N \N f 0 \N 0 154483679 0 f f \N \N \N \N 330427 \N 0 0 \N \N f \N 2025-03-19 15:10:19.336 f \N \N \N 0 0 0 0 0 0 0 435492 2025-03-12 18:26:00.669 2025-03-29 22:39:51.712 \N Wouldn't it be nice if Apple *didn't* intentionally kneecap their browser's own functionality to prop up their centralized bullshit, while also limiting even further what other WebKit-based browsers can use through the few API's Apple allocates overall?\n\nIt says a lot when even **Orion** is kneecapped, considering it's the Safari made by technically competent and user-respecting developers. https://example.com/ 20655 435120 435120.435492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8872410267317 0 \N \N f 0 \N 0 27162896 0 f f \N \N \N \N 435120 \N 0 0 \N \N f \N 2025-03-20 00:21:53.969 f \N \N \N 0 0 0 0 0 0 0 443685 2025-03-19 13:16:55.503 2025-03-29 22:39:48.166 The digital euro: a solution seeking a problem? In depth [article](https://12ft.io/proxy?ref=&q=https://www.ft.com/content/7c892d3b-c646-4247-9504-5f755e486101) in the Financial Times regarding a euro CBDC.\n\nMy personal take-home from reading it has been learning how many CBDCs in trials around the world; the geopolitical reasons for the ECB to consider adopting it (spoiler - keeping up with the U.S., China and stablecoins) - even with all the doubts, fears and backlash.\n\n---\n\n***The digital euro: a solution seeking a problem?***\n_Europe’s central bank is pushing ahead with the development of electronic currency even as politicians question its purpose_\n[Financial Times, May 16 2023](https://12ft.io/proxy?ref=&q=https://www.ft.com/content/7c892d3b-c646-4247-9504-5f755e486101)\n\n![The European Central Bank buildings](https://www.ft.com/__origami/service/image/v2/images/raw/https://d1e00ek4ebabms.cloudfront.net/production/c752898c-924b-4cf3-9313-d0457e24eddf.jpg?source=next&fit=scale-down&quality=highest&width=720&dpr=2)\n\n_The European Central Bank is expected to announce a pilot scheme for a digital currency this year as the EU seeks new ways of promoting the euro’s weight globally © FT montage/Getty/Bloomberg_\n\nWhen more than 1,000 demonstrators marched through the streets of Amsterdam in early February, they directed their ire at something that does not even exist: the digital euro.\n\nThe protesters voiced a kaleidoscopic array of objections to the European Central Bank’s plan to issue an electronic version of the continent’s single currency. Some feared the state would use it to track and control their spending, while others suspected a plot to replace cash. One protester told Dutch media she feared the authorities would stop her buying meat or alcohol.\n\nWillem Engel, the event’s organiser who was a ringleader for Dutch opposition to Covid-19 vaccines, whipped up the crowd by telling them to “avoid companies that don’t accept cash”.\n\nThis cocktail of suspicions and conspiracy theories about the digital euro comes at a highly delicate moment for the ECB and eurozone politicians. On the one hand, they are eager to step up preparations for the digital currency over the next few months, with the hope that it could be launched in as little as three years’ time.\n\nYet at the same time, they are also struggling to communicate convincing arguments for the project, which is only increasing the scope for conjecture about the plans.\n\nWhile China has the most advanced plans for a central bank digital currency among the larger economies, Europe is the furthest ahead among the main western central banks. Christine Lagarde has embraced the project since taking over as ECB president in 2019 from Mario Draghi, who barely mentioned the idea.\n\nThe Frankfurt-based institution is expected to announce in October that it will move into an implementation phase and start a pilot scheme. Lagarde has said she expects it will be ready to make the final decision of whether to launch a digital euro in 2026 or 2027.\n\nThis summer the European Commission will set out legislative proposals setting out some of the key design features of the putative currency, a landmark step towards that goal.\n\nSupporters of [the project](https://12ft.io/proxy?ref=&q=https://www.ft.com/content/5e588cea-c218-4867-aeb7-e16e198ccd9a) say it would modernise European payments by giving people an electronic alternative to cash that is riskless and universally accepted.\n\n“We need a risk-free asset and the only one that exists is central bank currency,” Fabio Panetta, the ECB executive board member overseeing its digital euro work, told the Financial Times.\n\nAlways jealous of the dominant position of the dollar in the international financial system, Europe is eager to find new ways of promoting the euro’s weight globally. It is also wary that China’s digital currency will allow Beijing to expand its role. Like other central banks, the ECB is also concerned that privately controlled digital currencies will gain traction in the financial system as consumers increasingly shun cash.\n\nHowever, there are mounting questions among consumers, financiers and politicians over exactly what the project actually aims to achieve and whether the potential risks outweigh the benefits.\n\nThese questions have only grown as the immediate threat from cryptocurrencies has faded along with the decline in the value of bitcoin and other rival forms of money. The subtleties of central bank currencies are hard for policymakers to explain: many people consider they are already in effect using digital money when they use their contactless payment card or mobile banking app, rather than cash.\n\nSome European policymakers fear that a failure to make a clear case for the digital euro will undermine the project before it is even born — that it will come to be seen as a solution that does not quite know what problem it is solving.\n\n"What is the compelling reason for making this reform? This is the big unanswered question,” says Ignazio Angeloni, a former ECB official who is now a part-time professor at the European University Institute in Florence. “I don’t see any big failures in the market that require the public sector to step in and provide a digital euro.”\n\n**Taking on Facebook**\n\nThe idea of creating a digital euro first emerged a few years ago as a defensive response to Facebook’s idea of launching a virtual currency of its own, which policymakers feared could undermine the ECB’s control of the money supply.\n\nSince then, the US social media group’s digital currency, known initially as Libra and then Diem, has largely fizzled out. Yet the ECB is still pressing ahead.\n\nA key motivation for the ECB is the declining use of cash, which has fallen from 79 per cent of all point-of-sale transactions in the eurozone in 2016 to 59 per cent last year, according to a recent survey by the central bank. The proportion of people in the bloc preferring to pay with cash has fallen from 32 per cent to 22 per cent in the past six years.\n\n![Bargraph: cash on the decline in the eurozone](https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd6c748xw2pzm8.cloudfront.net%2Fprod%2F2835aab0-f337-11ed-a404-55118f47ed96-mobile.png?dpr=1&fit=scale-down&quality=highest&source=next&width=490)\n\nOfficials say cash acts as an important stabilising force in the financial system by giving people access to a means of payment that is riskless because it is backed by the central bank. People are happy to deposit money at commercial banks in part because they know they can withdraw it as cash at any time, officials say. The digital euro is designed to preserve this role as cash usage declines.\n\n"Digitisation of society means everyone wants to pay digitally,” Panetta says. “But there is no single digital means of payment you can use everywhere in the euro area. Visa or Mastercard are controlled by non-European companies and are widely used, but many shops do not accept them. Even cash is not accepted everywhere.”\n\nPolicymakers worry that Europe lacks its own payments champion, leaving it overly reliant on the likes of Visa, Mastercard, PayPal or even Apple, which recently launched savings accounts and a credit card in partnership with Goldman Sachs.\n\nThere is also a fear that as cash usage falls, people could switch to other means of payment, including stablecoins, which are digital tokens backed by fiat currency, or digital currencies launched by other countries, such as China’s planned digital renminbi.\n\n![Christine Lagarde, president of the European Central Bank. She has embraced the digital euro project since her appointment to lead the central bank in 2019 © Abdesslam Mirdass/Hans Lucas/Reuters](https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F43059e57-2a4f-4933-94b4-e39206418cb3.jpg?dpr=1&fit=scale-down&quality=highest&source=next&width=490)\n\n_Christine Lagarde, president of the European Central Bank. She has embraced the digital euro project since her appointment to lead the central bank in 2019 © Abdesslam Mirdass/Hans Lucas/Reuters_\n\n“If the sovereign doesn’t offer this, then others will take its place,” says Panetta. “We want to build an app that ensures you can pay with the digital euro in the same way in every part of the euro area.”\n\nThe ECB is keen to [stress](https://www.ecb.europa.eu/paym/digital_euro/faqs/html/ecb.faq_digital_euro.en.html) that it sees the digital euro as a complement to cash and not a replacement for it. It plans to build the infrastructure and to issue the tokens for the new system but to leave the day-to-day operations to commercial banks.\n\nConsumers are likely to be offered the chance to buy digital euros through their commercial bank, rather than direct from the ECB. The new tokens are unlikely to earn interest and may be held in a separate app provided by their bank, but otherwise they could be largely indistinguishable from regular bank deposits.\n\n>It has something to do with how you define yourself as a nation and how the monetary system operates in your country - this is not a technical thing\n\nThe banking sector has given a lukewarm response to the idea. Executives worry that the digital euro will make bank runs more likely by acting as a safe haven into which people can transfer their money during a crisis. The European Banking Federation [warns](https://www.ebf.eu/wp-content/uploads/2023/03/EBF-Digital-Euro-paper-2023_final.pdf) of “a significant risk for banks due to the potential shift of significant funds that are currently held as bank deposits to digital euro accounts/wallets”.\n\nTo counter this, the ECB is considering imposing a limit on how many digital euros anyone can hold of about €3,000, or a punitive interest rate on holdings above a certain level.\n\nBut others argue the project is more seriously flawed, fearing that the ECB plans to add to inefficiency and complexity by creating a duplicate payments system that would only be used by the digital euro.\n\n“Parallel payments systems could tie up capital and liquidity, the new system would likely face the same pain points, and it would be expensive,” says Tim Adams, chief executive of banking lobby group the Institute of International Finance.\n\nBankers fret about having to shoulder the costs for such a major project with little upside, especially as the ECB has said basic payments with the digital euro should be free. The EBF says “public funding should be made available to support the investments that will be required” and recommends that merchants pay fees for accepting digital euro payments.\n\nThe Eurogroup, which convenes the finance ministers of the countries that share the euro, has been debating the topic intensively alongside the ECB since 2021. Discussions at a political level have been dominated by technicalities, as ministers struggle to get to grips with an enormously complex project.\n\nRecently ministers have become increasingly conscious of the need to get out and make a more proactive case to households. This, officials admit, is not easily done given the complexity of the economic arguments behind the project and the ease with which consumers already transact with their mobile phones and payment cards.\n\nSigrid Kaag, the Dutch finance minister, told colleagues privately at a meeting in March that it was difficult to explain to citizens why a digital euro was needed, not least given the eurozone’s payment system was already reliable and innovative, according to people familiar with the meeting. There was a need for politicians to get out and explain what the benefits of the currency would be, and to make them tangible, she argued, without which the new project might not be accepted.\n\n![Customers wait to enter a Bank of the Bahamas in Nassau. The Bahamas is among the countries to have a fully live central bank digital currency © Tristan Wheelock/Bloomberg](https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F99c5f5c0-ee17-47f0-9d41-3ea6576cfadc.jpg?dpr=1&fit=scale-down&quality=highest&source=next&width=490)\n\n_Customers wait to enter a Bank of the Bahamas in Nassau. The Bahamas is among the countries to have a fully live central bank digital currency © Tristan Wheelock/Bloomberg_\n\n“I accept that we may not yet have made the use case sufficiently clear for consumers,” Paschal Donohoe, president of the Eurogroup, told the FT. “The value of concepts like financial stability [is] sometimes only understood in their absence . . . if a decision is made to move towards the realisation phase, more will need to be done to educate and explain to consumers."\n\nThe European Commission is preparing draft legislation that aims to provide the legal framework underpinning the digital euro. Among the outstanding questions officials are grappling with is how to hardwire limits on digital euro accounts. Another is how to address the privacy concerns dogging the concept — a point that has been heavily stressed by Kaag, among others.\n\nMairead McGuinness, the EU’s financial services commissioner, has insisted the digital euro will not be a “big brother” project. Officials say households are already surrendering far greater privacy to private sector tech giants via the use of their mobile phones and apps. But ministers are acutely aware of the risks that the project gets tarnished by a perception that it is a vehicle for government snooping on households’ spending.\n\nThe ECB aims to address privacy fears — the [main worry](https://12ft.io/proxy?ref=&q=https://www.ft.com/content/661e066c-b41b-46e3-a9c0-275132039c1a) for more than 40 per cent of respondents to its initial consultation — by keeping users’ identities separate from payment data unless criminal activity is suspected.\n\n“We will design it in a way that means we cannot track if you have been to the bakery, or whatever,” Evelien Witlox, head of the ECB’s digital euro project, said on [a podcast](https://www.ecb.europa.eu/press/tvservices/podcast/html/ecb.pod221019_episode42.en.html) recently.\n\nGiven the proliferation of government-backed digital currencies around the world, officials feel that they have little choice but to plough ahead in the eurozone as they seek to promote the single currency’s global status. Alongside a handful of fully live retail CBDCs, including Nigeria, Jamaica and the Bahamas, are pilots in 34 jurisdictions covering wholesale and retail CDBCs, according to the Bank for International Settlements.\n\n![State of central bank digital currencies worldwide](https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd6c748xw2pzm8.cloudfront.net%2Fprod%2Faaf54e20-f336-11ed-8341-3b8d5d397d34-mobile.png?dpr=1&fit=scale-down&quality=highest&source=next&width=490)\n\nSweden’s Riksbank has been one of the early movers in the field after starting its e-krona project in 2017. Stefan Ingves, the former governor of the central bank, says that with people gradually moving out of cash in technologically advanced countries including his, the public sector needs to develop its own digital currency.\nIt has something to do with how you define yourself as a nation and how the monetary system operates in your country — this is not a technical thing,” he says.\n\n“If you want to hold something really safe, that thing is central bank money.” Households do not need to buy into the central bank digital currency on a massive scale, he adds. “You just need to start somewhere”.\n\nThe decline of cash by no means guarantees that consumers will embrace an official digital currency instead, however. Arguably the most closely watched of the various projects has been the digital renminbi in China. While the central bank has been expanding the number of pilots under way, paying more civil servants in digital renminbi for example, take-up has remained puny. The People’s Bank of China says only Rmb13.61bn ($1.9bn) of the digital currency was circulating at the end of last year. That was 0.13 per cent of the currency in circulation.\n\n![A queue to buy discounted coffees using digital renminbi. Despite China’s central bank expanding the number of pilots of the currency, take-up has been underwhelming © Bloomberg](https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F318ad2be-324e-410a-84d1-5afe155957dd.jpg?dpr=1&fit=scale-down&quality=highest&source=next&width=490)\n\n_A queue to buy discounted coffees using digital renminbi. Despite China’s central bank expanding the number of pilots of the currency, take-up has been underwhelming © Bloomberg_\n\nPart of the problem is that private sector offerings such as Alipay and WeChat Pay are already widely used, and it is not obvious what advantages the official digital currency confers.\n\nIn Europe, the case for CBDCs recently suffered a further setback. Sweden has one the lowest levels of cash usage in the world — with only a third of the population now using it regularly, down from almost 80 per cent in 2016. This should make it fertile ground for a CBDC, but a government-appointed investigator concluded in March it “currently does not see a strong enough societal need” for an e-krona.\n\n\nIf there were a case for continuing exploratory work, it was a defensive one. Sweden’s strong links to the eurozone “raise questions about whether a digital euro in the longer term could lead to the euro being used for payments in Sweden to a greater extent”, the investigator found. This “could make monetary policy less effective” as well as creating risks for financial stability. Accordingly, the Riksbank was told to keep looking into it and come back with a proposal next year on whether to launch an e-krona.\n\nFor the ECB, a big challenge is deciding how successful it wants the digital euro to be. Huw van Steenis, a former Bank of England adviser now at consultants Oliver Wyman, calls this the “Goldilocks CBDC” issue — wanting to avoid a flop but not to create something so popular it undermines the banks. “The elephant in the room is that we have just seen what a digital-paced bank run looks like, for the 100-plus central banks investigating them it means we should pause for careful reflection before deciding to mint a CBDC,” he says.\n\n>For the euro area there is a risk at the margin that a dollar-based stablecoin could come to dominate cross-border payments\n\nPanetta believes that by setting a limit on holdings at about €3,000, the ECB can get the balance right. “The objective is not to gain a large market share,” he says. “We don’t want to become dominant or challenge the banks. If the digital euro becomes a familiar payment option among Europeans that is fine by me.”\n\nBut others say tightly restricting a person’s digital euro holdings undermines the currency’s attractions. “It is like alcohol-free wine,” says Peter Bofinger, an economics professor at the University of Würzburg, who recently wrote [a paper](https://www.suerf.org/policynotes/65263/the-digital-euro-cbdc-as-a-monetary-anchor-of-the-financial-system) on the digital euro with a colleague. The enforced abstinence imposed on the digital euro will convince people it’s not worth bothering with at all, he argues. “I cannot see how this will not fail.”\n\nUltimately, whether the ECB goes ahead with a digital euro could depend on what others do. Unlike the US, which benefits from the dominant position of the dollar in international trade and reserves, the euro is in a weaker position. With geopolitical tensions intensifying, ECB officials are already uneasy at how much Europe relies on foreign companies for much of its payments system — even if many are US-based.\n\n“For the euro area there is a risk at the margin that a dollar-based stablecoin could come to dominate cross-border payments,” says Eswar Prasad, a professor of trade policy at Cornell University and author of _The Future of Money_. The euro, he says, has already lost ground in international usage to the renminbi and the dollar, and policymakers are anxious to reverse that trend.\n\nEnsuring the currency is available in digital form therefore might, he argues, “be more of an imperative for Europe”.\n\n\n**The digital euro: a solution seeking a problem?**\n[https://www.ft.com/content/7c892d3b-c646-4247-9504-5f755e486101](https://12ft.io/proxy?ref=&q=https://www.ft.com/content/7c892d3b-c646-4247-9504-5f755e486101) \N 19016 \N 443685 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.34075191222063 0 \N \N f 0 \N 0 143142372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:54:56.382 f \N \N \N 0 0 0 0 0 0 0 386196 2025-01-30 17:28:25.795 2025-03-29 22:39:48.166 Fun Fact Friday - Best Fun Fact Gets Zaps on This Post \n**Fun Fact Friday. Bounty included.**\n\n**The bounty will be sats given by the stackers in the form of zaps on this post.**\n\nSo, let’s hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 1pm CT tomorrow gets the bounty. \N 649 \N 386196 \N \N \N \N \N \N \N \N history \N ACTIVE \N 24.1670610653832 0 \N \N f 0 \N 0 249236350 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:51:33.366 f \N \N \N 0 0 0 0 0 0 0 435876 2025-03-13 03:53:18.568 2025-03-29 22:39:51.709 \N Ditto here. \n\nTFW the internet names something, you've been doing naturally, and was counter-culture in a small company. \n\nFeels like the bulk of devs I have worked with struggle with concepts like rebasing, targeting a specific branch, and handling conflicts. https://example.com/ 18116 435837 434278.434503.434522.434598.434602.435622.435772.435775.435811.435837.435876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6296842995071 0 \N \N f 0 \N 0 9287959 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-20 12:31:01.805 f \N \N \N 0 0 0 0 0 0 0 435188 2025-03-12 14:15:49.147 2025-03-29 22:39:51.709 \N Makes me think of Stacker News auctions. The perfect use-case to build that functionality for future product listings. \n\nBecause of course, you’ve nothing else left on the roadmap now. https://example.com/ 18426 435136 435136.435188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8038723180978 0 \N \N f 0 \N 0 219766418 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N 2025-03-19 09:18:07.731 f \N \N \N 0 0 0 0 0 0 0 434297 2025-03-11 19:09:14.791 2025-03-29 22:39:48.166 I wish stacker.news could be saved as a progressive web app… \N \N 20094 \N 434297 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.8518192161296 0 \N \N f 0 \N 0 136355178 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:07.582 f \N \N \N 0 0 0 0 0 0 0 447257 2025-03-21 18:18:30.202 2025-03-29 22:39:48.166 MicroStrategy Acquires Additional 14,620 BTC and Now Holds 189,150 BTC \N https://www.microstrategy.com/en/investor-relations/financial-documents/microstrategy-acquires-additional-14620-btc-and-now-holds-189150-btc_12-27-2023 720 \N 447257 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 10.2779277654407 0 \N \N f 0 \N 0 12110445 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:08:17.433 f \N \N \N 0 0 0 0 0 0 0 433422 2025-03-11 04:36:54.785 2025-03-29 22:39:48.166 Meme Monday: For the People, By the People Post your bitcoin memes you have collected over the last couple weeks. No bounty, but you get to steal the really good ones and send them to your other friends on NOSTR and such. \N 14376 \N 433422 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 24.2714418007206 0 \N \N f 0 \N 0 185218241 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 20:57:55.704 f \N \N \N 0 0 0 0 0 0 0 443262 2025-03-19 07:59:36.942 2025-03-29 22:39:51.709 \N I've submitted an [issue](https://github.com/stackernews/stacker.news/issues/264) to the SN repo, which contains analysis and a recommendation. https://example.com/ 21709 442358 442358.443262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.99209629882883 0 \N \N f 0 \N 0 144834866 0 f f \N \N \N \N 442358 \N 0 0 \N \N f \N 2025-03-26 04:41:29.712 f \N \N \N 0 0 0 0 0 0 0 435963 2025-03-13 06:58:38.334 2025-03-29 22:39:51.709 \N ![](https://i.imgur.com/mrIbcH8.png)\n\n21 days of 🤠 https://example.com/ 15049 435962 435922.435962.435963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.69255383753475 0 \N \N f 0 \N 0 248235353 0 f f \N \N \N \N 435922 \N 0 0 \N \N f \N 2025-03-20 08:06:12.098 f \N \N \N 0 0 0 0 0 0 0 448043 2025-03-22 11:12:08.883 2025-03-29 22:39:51.709 \N Satoshi Airlines would be extremely reliable, they've never missed a flight since they opened their services to the gen pop.\n\nThey never paid a cent for advertising, relying solely on word of mouth to find passengers willing to fly with them.\n\nThey let you decide how much you want to pay them for their services, but they'll also allow anyone to take your spot on the plane, provided they paid a higher fee to fly than you did.. So maybe take a look around the terminal and price your fees accordingly.\n https://example.com/ 16834 447715 447715.448043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3997218121321 0 \N \N f 0 \N 0 112007640 0 f f \N \N \N \N 447715 \N 0 0 \N \N f \N 2025-03-29 20:21:21.755 f \N \N \N 0 0 0 0 0 0 0 435946 2025-03-13 06:14:29.282 2025-03-29 22:39:51.709 \N Not if P2P https://example.com/ 4173 432547 432547.435946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3431742005666 0 \N \N f 0 \N 0 192323970 0 f f \N \N \N \N 432547 \N 0 0 \N \N f \N 2025-03-20 03:54:23.079 f \N \N \N 0 0 0 0 0 0 0 435620 2025-03-12 20:30:56.449 2025-03-29 22:39:48.159 AMA - Casey Rodarmor creator of Ordinal Theory Hi! I'm Casey Rodarmor, very very minor ex-Bitcoin Core contributor, current\nhost of the SF Bitcoin Devs meetup, and full-time ordinal theory researcher.\n\nOrdinal theory has two main branches, ordinal numbers, and inscriptions.\n\nOrdinal numbers are a scheme for assigning serial numbers to sats and tracking\nthem across transactions. This is done without any on-chain data, is entirely\nopt in, and don't affect fungibility.\n\nInscriptions attach on-chain content to sats, creating digital artifacts that\nthen be tracked and transferred using the ordinal numbering scheme. These\ndigital artifacts, just like sats that they ride on, can be contained in a\nnormal bitcoin UTXO, transferred using normal bitcoin transactions, and sent to\nnormal bitcoin addresses. This requires a wallet that performs sat control,\nlike `ord`.\n\nInscriptions are NFTs, but the term NFT feels tainted, so I coined the phrase\n"digital artifact" to try to express what inscriptions aim to be. Inscriptions\nare on-chain, secure, immutable, and uncensorable, unlike NFTs which are often\noff-chain, insecure, and riddled with weird caveats.\n\nAsk me anything about ordinals, inscriptions, SF Bitcoin Devs, Bitcoin, or\nanything else!\n\n- [Mainnet block explorer](https://ordinals.com)\n- [Signet block explorer](https://signet.ordinals.com)\n- [GitHub](https://github.com/casey/ord)\n- [Ordinal Theory Handbook](https://docs.ordinals.com)\n- [Digital Artifacts](https://docs.ordinals.com/digital-artifacts.html)\n \N 16695 \N 435620 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 20.4936905176202 0 \N \N f 0 \N 0 137737152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 14:04:37.06 f \N \N \N 0 0 0 0 0 0 0 435121 2025-03-12 13:31:46.453 2025-03-29 22:39:51.71 \N Somebody out there must be able to bring a case against CSW by now.\n\nShould be able to easily crowd source and fund that. https://example.com/ 9295 434600 434077.434600.435121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.81893391767489 0 \N \N f 0 \N 0 221206206 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 2025-03-19 09:42:39.353 f \N \N \N 0 0 0 0 0 0 0 435550 2025-03-12 19:25:37.503 2025-03-29 22:39:51.71 \N I would like to shame Brian Armstrong. \n\nHe was a big blocker. \n\nWhen he lists an "altcoin" it acts as a seal of approval that causes "investors" to think that even though it can go up or down, its a legitamite project. \n\nHe took a really long time to batch withdrawls. Why would he? Doing so encourages withdrawing. \n\nHe doesn't support withdrawing to taproot addresses. \n\nHe advertises projects like XRP that spend money lobbying against Bitcoin. \n\nHe has so many employees, but every opportunity he has to support the chain that has given him his livelihood, he chooses to spend his employees time adding another table to the shitcoin casino. \n\nHe has to comply with regulations, but he goes above and beyond by forming an in-house chain analysis service which sells its services to the government. And other governments with worse human rights.\n\nAny time the market really moves, coinbase goes down. When they shelled out $ for a superbowl ad, coinbase went down.\n\nThey encourage risky cryptolending that makes them money, but may make them insolvent.\n\nThey banned over 25,000 russian addresses and handed the info to the gov. Without any law asking them to.\n\nThere are much more ethical ways to get your bitcoin. Hell, there are way better places to get your altcoins too. Kracken has always been pretty badass, they supported taproot really quick. They have one of the highest capacity lightning nodes in the network. Even the winklevi at Gemini do alot for Bitcoin devs. https://example.com/ 15556 435520 435261.435520.435550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.62302261653045 0 \N \N f 0 \N 0 241109990 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 04:55:37.819 f \N \N \N 0 0 0 0 0 0 0 435082 2025-03-12 12:53:38.62 2025-03-29 22:39:51.71 \N New Bsats app released blocked by apple... so sad..\n\nThey want the app to: \n\n* have an account deletion function\n* have sign in with apple option..\n* have licenses because of the lightning wallet feature \n\nlet's see how to work around those.. https://example.com/ 650 434795 434795.435082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1933321663908 0 \N \N f 0 \N 0 180088618 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 07:03:24.99 f \N \N \N 0 0 0 0 0 0 0 435150 2025-03-12 13:55:27.281 2025-03-29 22:39:51.71 \N I glanced at the Phoenix source code and didn't see a way to disable the warning. There are three warnings bundled together: Tor, FCM, and power saving. https://github.com/ACINQ/phoenix/blob/e73fb0e5aba1e890d141e6433d810ad7ab1f8047/phoenix-android/src/main/kotlin/fr/acinq/phoenix/android/home/HomeTopAndBottom.kt#L233\n\nHowever, there are discussions about alternatives to FCM:\n\n- https://github.com/ACINQ/phoenix/issues/554\n- https://github.com/ACINQ/phoenix/issues/579 https://example.com/ 15196 435130 434488.434560.434908.435130.435150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0997397532164 0 \N \N f 0 \N 0 167147040 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 2025-03-19 07:14:17.376 f \N \N \N 0 0 0 0 0 0 0 448841 2025-03-22 23:09:14.325 2025-03-29 22:39:48.158 Welcome ekzyis to the SN team! @ekzyis has joined SN officially as of yesterday.\n\nWhile @kr joined almost a year ago, @ekzyis is our first engineering hire.\n\nI'm very excited to have @ekzyis join. @ekzyis has been contributing to SN here and there in his spare time for 6 months or so now. While he's a junior dev on paper, his contributions suggested something more important and rare: taste. His contributions had a balance of pragmatism and sophistication that are only really present when someone cares deeply about programming and intends to become a master.\n\nHe's also one of our more active stackers, the creator of the @hn bot, and is generally a nice person (even in disagreements ... which is key for high vibes).\n\nI'm really grateful to have someone like @ekzyis join and doubly grateful that he made it so easy for me to find him lol.\n\nWelcome @ekzyis! \N 6335 \N 448841 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.12395203032599 0 \N \N f 0 \N 0 149890481 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 16:38:55.84 f \N \N \N 0 0 0 0 0 0 0 436581 2025-03-13 17:07:09.462 2025-03-29 22:39:51.709 \N He addresses this \n>It turns out the disk latency is irrelevant for this, since the Raft algorithm will just commit multiple transactions together to disk. https://example.com/ 7983 436407 436326.436407.436581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.445331632945809 0 \N \N f 0 \N 0 49410717 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N 2025-03-20 11:36:40.448 f \N \N \N 0 0 0 0 0 0 0 443623 2025-03-19 12:45:44.463 2025-03-29 22:39:51.709 \N Attitude is only relevant when determining whether you trust someone. It's not really relevant when verifying.\n\nI wouldn't pay too much attention to anyone's particular attitude online. Most people are strung out on fight videos and stuff. Some people are also just naturally grumpy, rude, and socially unreasonable and being online just makes it worse. https://example.com/ 11454 443601 443554.443601.443623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.01099162398899 0 \N \N f 0 \N 0 156450528 0 f f \N \N \N \N 443554 \N 0 0 \N \N f \N 2025-03-26 06:03:08.849 f \N \N \N 0 0 0 0 0 0 0 435232 2025-03-12 14:42:58.577 2025-03-29 22:39:51.709 \N Grassroots run by Rod and Odell at Bitcoin Park in Nashville happening today! A handful of Bitcoin Meetup organisers have travelled from across the country and abroad to learn about bootstrapping a circular economy and growing a third space. https://example.com/ 6191 435221 435046.435135.435162.435214.435221.435232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1991425473899 0 \N \N f 0 \N 0 101861770 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:09:43.403 f \N \N \N 0 0 0 0 0 0 0 435873 2025-03-13 03:47:21.747 2025-03-29 22:39:51.71 \N I like reading personal blogs much more than the mainstream internet (linkedin, reddit, facebook, instagram, etc).\n\nIt's like a home made dinner vs fast food. https://example.com/ 5293 435805 435805.435873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1624681568243 0 \N \N f 0 \N 0 149143799 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N 2025-03-20 10:42:33.116 f \N \N \N 0 0 0 0 0 0 0 435463 2025-03-12 17:39:21.721 2025-03-29 22:39:51.71 \N I am using a Nitrokey Pro to store my signing, encryption, and authentication subkeys, they were generated from a master key created on TailsOS and backed up on an encrypted Veracrypt disk stored on a USB key in my safe. (something like this: https://sunknudsen.com/privacy-guides/how-to-generate-and-air-gap-pgp-private-keys-using-gnupg-tails-and-yubikey)\n\nAll said and done, it works, but is a pain in the ass :) Honestly, I only use my keys to sign git commits and encrypt files to share with my web of trust network (who also have to be properly set using arcane instructions)\n\nIf only there was a better way to generate, backup, recover, and use those keys, in the same way that we manage our BTC wallets. I'll definitely keep an eye on this thread ;) https://example.com/ 9655 435136 435136.435463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3936420255242 0 \N \N f 0 \N 0 244039515 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N 2025-03-19 14:01:59.462 f \N \N \N 0 0 0 0 0 0 0 436501 2025-03-13 15:39:33.854 2025-03-29 22:39:51.711 \N Never take money from shitcoiner VCs. https://example.com/ 1970 436495 436460.436488.436490.436495.436501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.42926151850561 0 \N \N f 0 \N 0 144869565 0 f f \N \N \N \N 436460 \N 0 0 \N \N f \N 2025-03-20 09:26:23.145 f \N \N \N 0 0 0 0 0 0 0 435168 2025-03-12 14:04:58.197 2025-03-29 22:39:51.711 \N https://imgprxy.stacker.news/xS0gZ0zV1vcJPTGrbW8hgp_25-T-3WqPNMgm3i1TnYo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4uZHJhd2NlcHRpb24uY29tL2ltYWdlcy9wYW5lbHMvMjAxNS81LTE0L3oyV3JCRHJTWjEtMi5wbmc https://example.com/ 16876 435151 435151.435168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.99378659464671 0 \N \N f 0 \N 0 83494539 0 f f \N \N \N \N 435151 \N 0 0 \N \N f \N 2025-03-19 07:24:35.612 f \N \N \N 0 0 0 0 0 0 0 434887 2025-03-12 10:11:35.705 2025-03-29 22:39:48.159 Breakdown of the Tornado Cash court ruling | Freedom.Tech \N https://freedom.tech/tornado-cash-developer-convicted/ 698 \N 434887 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.62383745930705 0 \N \N f 0 \N 0 160438330 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 03:32:08.413 f \N \N \N 0 0 0 0 0 0 0 435915 2025-03-13 05:22:02.922 2025-03-29 22:39:51.709 \N Brendan mentions in interviews that they started building on bitcoin, but the fees were too high (his words, not mine). In my opinion, I simply think they wanted to fund raise with their own token, just like most issuers of shitcoins. i agree with you - there is no need for BAT now that we have Lightning. https://example.com/ 20681 435914 435914.435915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7426688431077 0 \N \N f 0 \N 0 192580777 0 f f \N \N \N \N 435914 \N 0 0 \N \N f \N 2025-03-19 22:52:48.934 f \N \N \N 0 0 0 0 0 0 0 435998 2025-03-13 07:55:46.164 2025-03-29 22:39:51.709 \N My niece's Sweet 16 is today! Crazy how time flies! https://example.com/ 11862 435944 435944.435998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.90784227448325 0 \N \N f 0 \N 0 240715921 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 01:39:13.847 f \N \N \N 0 0 0 0 0 0 0 448432 2025-03-22 15:47:37.988 2025-03-29 22:39:51.71 \N I listened to Whitney Webb on TFTC last night. She really got me motivated on setting up my own server. I don't want to create a big post. Just wondering what you guys are doing. I'm lazy, so I was thinking Start9. I know there are cheaper DYI alternatives too, which I would consider so long as the software isn't a huge hassle. https://example.com/ 19826 448426 447892.448168.448299.448426.448432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3019467845922 0 \N \N f 0 \N 0 87836734 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 09:05:05.103 f \N \N \N 0 0 0 0 0 0 0 435003 2025-03-12 11:53:39.635 2025-03-29 22:39:51.71 \N https://twitter.com/T_L_B_S_ - great twtr acc regarding Chinese debt etc.\nalso r/china is surprisingly insightful if you dig through some threads.\nhttps://www.whatsonweibo.com/ presents pretty unfiltered opinions of Chinese citizens. https://example.com/ 4692 434920 434920.435003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.31852736966324 0 \N \N f 0 \N 0 124945228 0 f f \N \N \N \N 434920 \N 0 0 \N \N f \N 2025-03-19 05:12:34.079 f \N \N \N 0 0 0 0 0 0 0 447152 2025-03-21 16:38:19.959 2025-03-29 22:39:51.71 \N the daily discussion thread is absolutely on fire today, already more comments than the most commented post in site history. https://example.com/ 21494 447087 447087.447152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0170567414593 0 \N \N f 0 \N 0 233615701 0 f f \N \N \N \N 447087 \N 0 0 \N \N f \N 2025-03-28 12:13:42.321 f \N \N \N 0 0 0 0 0 0 0 435844 2025-03-13 02:54:51.952 2025-03-29 22:39:51.71 \N If I take too much out how am I supposed to zap you fine gentlemen? https://example.com/ 13249 435098 435046.435098.435844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.47661562452021 0 \N \N f 0 \N 0 196817877 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 21:05:36.117 f \N \N \N 0 0 0 0 0 0 0 435240 2025-03-12 14:47:05.754 2025-03-29 22:39:51.71 \N I'd imagine coinjoin the hell out of it... https://example.com/ 21014 435217 435217.435240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0048205701106 0 \N \N f 0 \N 0 1368251 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 10:43:41.935 f \N \N \N 0 0 0 0 0 0 0 97082 2023-12-10 19:43:27.246 2025-03-29 22:39:48.159 What are your favorite “Buy It For Life” products? Inspired by [this post](https://stacker.news/items/451632/r/kr) from @Voldemort, I’d love to hear some recommendations for durable, timeless products you love. \n\nI’m specifically thinking about products that can last many decades or even a lifetime with reasonably good care.\n\nAny type of physical product counts! \N 21578 \N 97082 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2663120591317 0 \N \N f 0 \N 0 124544199 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:27:40.492 f \N \N \N 0 0 0 0 0 0 0 434705 2025-03-12 07:17:35.835 2025-03-29 22:39:51.71 \N There's a reason for the selling: To avoid reporting a negative cash flow.\nHere's a more detailed explanation: https://twitter.com/realmeetkevin/status/1549850031783559176 https://example.com/ 20619 433232 432920.433123.433232.434705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.86166845147555 0 \N \N f 0 \N 0 93885157 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-19 01:27:46.236 f \N \N \N 0 0 0 0 0 0 0 435077 2025-03-12 12:49:39.052 2025-03-29 22:39:51.71 \N For now the dependency on OKX is troubling... But as a proof-of-concept it's interesting[1].\n\nThe missing piece here is a decentralized place to trade equal amounts of Long and Short positions (with 0% slippage, prefferably). Maybe, in time, the [Kollider.xyz](https://kollider.xyz/) project will be liquid and stable enough to swap out with OKX?\n\nAnyway, I am happy that this kind of very valuable experiments are undertaken !\n\n [1] Isn't [Fuji.Money](https://fuji.money/) (a project funded by Blockstream) doing something similar? \n https://example.com/ 9159 435053 435053.435077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7659506232681 0 \N \N f 0 \N 0 15595875 0 f f \N \N \N \N 435053 \N 0 0 \N \N f \N 2025-03-19 06:10:16.71 f \N \N \N 0 0 0 0 0 0 0 435808 2025-03-13 01:39:09.169 2025-03-29 22:39:51.71 \N Yeah, but how many payments *really* are <1$ ? https://example.com/ 17494 435805 435805.435808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5758796902482 0 \N \N f 0 \N 0 227991834 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N 2025-03-20 00:21:15.34 f \N \N \N 0 0 0 0 0 0 0 444842 2025-03-20 09:21:09.153 2025-03-29 22:39:51.71 \N the point is that it works with any derivatives exchanges that has an inverse BTC/USD pair.\n\nand a way to limit the risk is to run the hedging on many exchanges at the same time. https://example.com/ 10638 444755 444755.444842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.201105252552 0 \N \N f 0 \N 0 10853740 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 2025-03-29 08:44:22.2 f \N \N \N 0 0 0 0 0 0 0 435948 2025-03-13 06:16:44.668 2025-03-29 22:39:51.71 \N Thanks for the detailed response! I get why the Bitcoin line will change horizontally. \n\nI'm a little confused as to why the lighting line will shift vertically. Why do you say that? https://example.com/ 21269 435944 435944.435948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.08864099595665 0 \N \N f 0 \N 0 209618066 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 04:02:24.033 f \N \N \N 0 0 0 0 0 0 0 448727 2025-03-22 20:19:58.849 2025-03-29 22:39:48.159 I tried to buy a lambo with bitcoin in Switzerland (lol) \N https://youtu.be/QMfjCks_sR8 16978 \N 448727 \N \N \N \N \N \N \N \N art \N ACTIVE \N 4.75041114558696 0 \N \N f 0 \N 0 101842268 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 14:44:52.87 f \N \N \N 0 0 0 0 0 0 0 434830 2025-03-12 09:08:18.909 2025-03-29 22:39:51.71 \N That's meant to let you reach the previous day's discussion thread. So the "yesterday" for this (today's) daily discussion thread links to yesterday's (Friday's) daily discussion thread. And the "yesterday" on Friday's daily discussion thread links to Thursday's daily discussion thread. https://example.com/ 5829 434802 433883.433913.434802.434830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.59261728032784 0 \N \N f 0 \N 0 200170199 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 2025-03-19 02:25:30.235 f \N \N \N 0 0 0 0 0 0 0 435234 2025-03-12 14:43:51.972 2025-03-29 22:39:51.71 \N while I see the point and for sure also think that we need to use known language I very much agree with @kr and I dislike paying. \nJust because a transfer of value is involved I don't think it is a "payment" It should not feel like a payment and not like the typical payment (buyer vs. seller) relationship. \n\nI want to support an artist, I want to upvote a comment, I want to say thank you, ... \n"boost" seems to be neutral, universal, positive to me... and it's picking up. \n\n(funnily enough just today: I had started the conversation in Alby to change "send sats" to "boost" when Alby detects some tipping details on Twitter, YouTube, etc. - should we? ) https://example.com/ 11165 435222 435154.435183.435222.435234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9200105303182 0 \N \N f 0 \N 0 238342708 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 08:33:33.88 f \N \N \N 0 0 0 0 0 0 0 443633 2025-03-19 12:47:13.548 2025-03-29 22:39:51.71 \N Images embedded in comments. https://example.com/ 18441 443295 443295.443633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.16210381271733 0 \N \N f 0 \N 0 143724399 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:05.638 f \N \N \N 0 0 0 0 0 0 0 434883 2025-03-12 10:08:56.216 2025-03-29 22:39:51.711 \N first dude @kr made a good point with streaming etc none of those words were common words yes boost could be a good word for micro payments def sounds cooler haha https://example.com/ 6578 434870 434791.434864.434870.434883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0061037995243 0 \N \N f 0 \N 0 187788950 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 03:26:11.503 f \N \N \N 0 0 0 0 0 0 0 435170 2025-03-12 14:06:42.185 2025-03-29 22:39:51.711 \N By "net seller", generally what is occurring is that they simply aren't buying Treasures to replace the ones as they expire. If they were doing outright selling, the impact would be even more pronounced. https://example.com/ 13467 435167 435167.435170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.19330176683216 0 \N \N f 0 \N 0 155494592 0 f f \N \N \N \N 435167 \N 0 0 \N \N f \N 2025-03-19 08:32:45.898 f \N \N \N 0 0 0 0 0 0 0 434752 2025-03-12 08:05:18.922 2025-03-29 22:39:51.711 \N Thanks Kevin, been lurking for a while, finally made an account ⚡️ https://example.com/ 5522 434727 434727.434752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8140777151835 0 \N \N f 0 \N 0 186013469 0 f f \N \N \N \N 434727 \N 0 0 \N \N f \N 2025-03-19 01:29:56.983 f \N \N \N 0 0 0 0 0 0 0 443579 2025-03-19 12:24:44.79 2025-03-29 22:39:48.159 Female Boxer Quits Olympic Match After Biological Male Beats Her In 46 Seconds Maybe this was necessary to stop the insanity. I hope she's okay. https://www.zerohedge.com/political/unjust-female-boxer-quits-olympic-match-melts-down-tears-after-biological-male-brutalizes 10433 \N 443579 \N \N \N \N \N \N \N \N art \N ACTIVE \N 8.75831788163811 0 \N \N f 0 \N 0 167066761 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:03:16.896 f \N \N \N 0 0 0 0 0 0 0 435507 2025-03-12 18:35:57.248 2025-03-29 22:39:48.159 Living without a smartphone: The definitive guide \N https://insanelyfree.substack.com/p/living-without-a-smartphone-the-definitive 11240 \N 435507 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.5305860652588 0 \N \N f 0 \N 0 68328625 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 11:55:46.517 f \N \N \N 0 0 0 0 0 0 0 436385 2025-03-13 14:14:36.369 2025-03-29 22:39:48.159 The Penal Preserve, Chapter 11 *This is chapter 11 of **The Penal Preserve**, you may want to go back to [Chapter 10](https://stacker.news/items/613609) or [start at the beginning](https://stacker.news/items/599283).*\n\n# 11\n\nIt was obvious that they were headed for starvation. As fall increased the fogginess of the region, the mood in the colony became increasingly tense. Franklin frequently left the colony for long walks along the beach. Sometimes he was gone all day. With that same fatality that followed Franklin throughout his life, an important and disastrous event occurred in his absence. This was the first affray of the Penists with the Vacationers.[^1]\n \nThe Vacationers appeared past midday, when the sun had finally dissolved the mists and grown warm enough to point out the coolness of the breeze. There were perhaps as many as five hundred. The accounts of the affair differ greatly,[^2] but it seems clear that the natives had no hostile intention in their visit.[^3] They descended on the settlement quite suddenly and without warning, bearing roasted turkeys, green bean casseroles, mashed potatoes and cranberry sauce, pecan and pumpkin pies—in short all the traditional dishes of the Martian harvest time. Some of the Vacationers were playing music, while others raised cold bottles of beer. \n\nThe Penists clearly felt that they were invested with a considerable body of Vacationers, and that they were being surrounded.[^4] The prisoners stumbled out of their tent, looking weak and confused. The sudden profusion of good things to eat and the delicious odors overwhelmed them, and seemed to rob them of their senses. \n\nThe Vacationers had almost reached the barracks tent when a figure charged into their midst. It was Rae and he was carrying a pick ax. It appeared to Rae from the numbers of them, and from the Alien products with which they were arrayed, that their design was to corrupt the colony. However, it was not until he was thoroughly convinced of this that he attacked.[^5] \n\nHe swung the pick high over his head and brought it down on one of the male Vacationers, impaling him. With almost superhuman strength, Rae pulled the pick from the twitching body and caught a female Vacationer in the stomach. The pick became fouled with her body as she fell, and he was forced to abandon it.\n\nThe Vacationers stopped their advance, but seemed unsure how to proceed. Their halt broke the spell among the guards and prisoners, and as a host the Penists raised their chainsaws and axes, and garden implements and charged the Vacationers. It is easy to understand that the Penists were terrified by this sudden arrival of a horde of Vacationers carrying food and Alien products.[^6] And if their violent response seems a little disproportionate, I will only say that isolation can do strange things to the Martian psyche. \n\nThe Vacationers were entirely unprepared for this assault, and many of them were slain before they broke and ran for the woods. The prisoners gave chase and many more Vacationers dispatched that afternoon, including a number of women and children. It is said that the whole party would have met their death in the massacre had not the prisoners been starving and abandoned their pursuit to gorge themselves on the many delectable dishes the Vacationers had left behind in their eagerness to escape.\n\n*Chapter 11 tomorrow, same time, same place.*\n\n[^1]: With that fatality which always kept Bowen out of the way when he was wanted, an important and disastrous event occurred at Risdon in his absence. This was the first affray of the English with the natives. **James Backhouse Walker, “The English at the Derwent, and the Risdon Settlement,” 14 October 1880**\n[^2]: The accounts of this affair differ greatly. **John West, _The History of Tasmania_ Volume 2, 1852**\n[^3]: It seems clear that the natives had no hostile intention in their visit. **James Backhouse Walker, “The English on the Derwent, and the Risdon Settlement,” 14 October 1880**\n[^4]: Are here invested with a considerable body of natives who endeavoured to surround us—had taken one of my marking sticks—am obliged to fire on them. **James Meehan, 1804 attributed by Henry Roth, _Aborigines of Tasmania_ 1899**\n[^5]: It would appear from the numbers of them, and the spears, &c., with which they were armed that their design was to attack us. However, it was not until they had thoroughly convinced us of their intentions, by using violence to a settler’s wife and my own servant—who was returning into camp with some kangaroos, one of which they took from him—that they were fired upon. **William Moore, Risdon Cove, 7 May 1804**\n[^6]: We can easily understand how terrifying to the Risdon people must have been this sudden inroad of a horde of excited savages, yelling and gesticulating. **James Backhouse Walker, “The English on the Derwent, and the Risdon Settlement,” 14 October 1880**\n \N 7916 \N 436385 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 8.34824776937346 0 \N \N f 0 \N 0 167177662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:48:41.903 f \N \N \N 0 0 0 0 0 0 0 418294 2025-02-26 23:20:20.886 2025-03-29 22:39:48.159 The “Next Big Thing” (after bitcoin) "if you recognize bitcoin as the end of the exploration for an internet-native neutral money, you can see the beginning of what can be built now that we have this internet primitive"\n\nI had a private email exchange with a friend who is self-described as bullish on bitcoin, but who is also always seeking out the “next big thing”. I believe there are lots of “next big things” that can and should be built now that we have bitcoin. But we’ll accelerate development of those “next big things” if we can accelerate consensus on a consistent monetary foundation and invest development work into new applications and infrastructure that’s only possible now. I’m sharing our private conversation below with personal details redacted.\n\nDK: I believe that bitcoin is the neutral, internet-native monetary protocol. This creates a profound shift in how everything in media, communications, and information will work. I’m going to continue investing in and experimenting with how digital scarcity and global payments can be used to build a better internet.\n\nFriend: Are you still of the mindset that Bitcoin wins as the base layer for all of these use cases? Or are you open to the idea that Ethereum or other platforms may be better suited for the programmable layer beyond store of value, e.g. Lightning doesn't really have traction while USDC+USDT has trillions in flow?\n\n## Programmability through different lenses\n\nDK: I still believe that bitcoin and cryptography more generally is most useful when it allows us to create trust-minimized systems that empower the individual. I think a trust-minimized programmable layer is an exciting idea, but uncertain all the different ways it might be accomplished. The new BitVM idea builds on the strong security foundation that bitcoin provides (and includes ideas like "optimistic rollups" with appropriate credit given to initial work done on Ethereum).\n\nI also think there is a lot of opportunity for cryptographic programmability outside of smart contracts. We can use well understood cryptography for individuals to sign messages and use open source software to coordinate peoples' ability to verify/read these messages. In many cases the presumed requirement to track global state as a blockchain leads to strictly worse implementations for programmable systems with cryptographic verifications. The best example I've seen so far here is the kind of stuff being built on Nostr, but I would guess there's going to be a tremendous diversity of programmable solutions.\n\nBut the hypothesis around Ethereum winning the smart contract programmability use-case doesn't seem likely to me. I think Ethereum represents a lot of new technology experimentation, but it's substantially worse across the most important characteristics of neutrality, security, and its properties as money. If it purports to be a foundational L1 it is de facto competing as money. But it's a worse money than bitcoin when compared against just about every property of money. Having non-monetary innovation while compromising on monetary characteristics is a bad tradeoff for convincing anyone to accept it as money long term. And the security guarantees flow out of being that money. Additionally, Ethereum is going to be under constant competition from new projects like Solana/Tron/etc. A new entrant can always promise faster transactions and cheaper fees, which are relatively easy features to achieve compared to improvements in the security model at the foundation of bitcoin. I'm not sure how any of these projects can recreate the "immaculate conception" that gives bitcoin the neutrality required to be a global money.\n\nI agree that Lightning has not proven to be the answer for neutral global payments yet. I'm still hopeful it may be part of the solution since it's the leading attempt built on the solid foundation of bitcoin’s security guarantees. I've also been playing with Cashu/Fedi and various ecash projects which may also be part of the answer for scaling payments, but these are far from certain, have their own tradeoffs, and are definitely not operating at any interesting scale yet.\n\n## Are Stablecoins the Answer?\n\nUSDC+USDT may be trillions in flow, but they each require a tremendous amount of trust to work. So I'd argue they provide great utility to people who don't value trust minimization. Maybe these people don’t otherwise have access to or want to participate in the USD system directly, but are fine trusting 3rd party issuers and exchanges. I think these tools have primarily demonstrated utility as a way to exit trades in cryptocurrencies on exchanges before entering new positions. This may be a very large markets, but it doesn’t seem to have much impact on how the internet is built so far and it’s already operating at pretty significant scale as you mention.\n\nThe new internet that excites me creates new dynamics of competition between application clients, datastores, identities and wallets. When everything is open source and in direct competition with each other you get services more aligned with the user’s needs. If you are okay accepting the trust of issuers and exchanges you head down the path of building traditional web applications like we already have operating at scale today. They have an application, datastore, identities, and integrated payment solutions all in the same product and platform. While I’m a fan of building such technologies and companies, those techniques are reasonably well explored now that the web has been popularizing over the past 30 years. They may represent a lot less opportunity to build new things in the coming years.\n\nIn my mind, the magic comes when you decouple all of these layers and make the solutions for any given component interchangeable. When someone comes up with a new idea for an interface they can just launch the new application on the existing datastore, identities, and payment solutions. When someone has a new wallet solution it’s easy for end users to swap in the new wallet instead of accepting the default as the only choice or needing to restart the rest of the network to experiment with a new wallet tool.\n\nInterchangeability reduces the trust required in any given developer or provider. It also aligns all developers to contribute in ways where they must compete to serve users better – they don’t own a monopoly on user accounts, data, or the underlying monetary asset. There’s very little proprietary technology. It’s weird to think about technology businesses when such a different economic model emerges, but it’s possible that a pure application layer doesn’t accrue much value in the future. In the past that’s where all the value accrued because of the rest of the coupling it implied.\n\nUltimately, I'm excited about how to build a better internet and I suspect the solution is primarily dependent upon this relatively new primitive of having digital scarcity allowing us to explore an entirely new architecture for internet applications. https://www.curiousdk.com/p/the-next-big-thing-after-bitcoin 999 \N 418294 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 4.38734193908125 0 \N \N f 0 \N 0 41318830 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 01:48:47.992 f \N \N \N 0 0 0 0 0 0 0 435071 2025-03-12 12:46:17.251 2025-03-29 22:39:51.71 \N [https://lnmarkets.com](LNmarkets)! https://example.com/ 5865 435061 434990.435000.435061.435071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.893179864134 0 \N \N f 0 \N 0 97815633 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N 2025-03-19 06:06:03.013 f \N \N \N 0 0 0 0 0 0 0 436099 2025-03-13 10:16:06.824 2025-03-29 22:39:51.71 \N Section 5 of the Nostr Dev Course\nDay 26 Replit \nReplaced a couple of boards on one of my S9's\nOpening Lightning Channels maybe get to 30\nTry publishing an article on substack or blogstack.io\nFiat Mines \n https://example.com/ 14731 436072 436028.436072.436099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.05863719070206 0 \N \N f 0 \N 0 170961426 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 08:05:15.51 f \N \N \N 0 0 0 0 0 0 0 435206 2025-03-12 14:25:20.453 2025-03-29 22:39:51.712 \N [This one](https://www.resistance.money/book/index.html) -- announced a long time ago, but takes a long time to do a book to an academic standard put out by an academic press. They're being super rigorous about it, which I love. https://example.com/ 17147 435195 435154.435195.435206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3454013777686 0 \N \N f 0 \N 0 68625839 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 08:33:47.637 f \N \N \N 0 0 0 0 0 0 0 436007 2025-03-13 08:09:07.256 2025-03-29 22:39:48.159 TBD Launches C=, a Lightning Service Provider \N https://cequals.xyz/ 19996 \N 436007 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 23.2821413657135 0 \N \N f 0 \N 0 153984397 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:56:00.299 f \N \N \N 0 0 0 0 0 0 0 448229 2025-03-22 13:51:52.034 2025-03-29 22:39:48.159 If you could chose, would you be a lightning or bitcoin dev? \N \N 9366 \N 448229 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.0934754577369 0 \N \N f 0 \N 0 245276534 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:42:54.962 f \N \N \N 0 0 0 0 0 0 0 443569 2025-03-19 12:20:34.544 2025-03-29 22:39:51.711 \N I was trying to scroll to the comments section lol and I was like "holy crap this dude has a passion lol" https://example.com/ 16212 443396 443396.443569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.3101551067111 0 \N \N f 0 \N 0 75727312 0 f f \N \N \N \N 443396 \N 0 0 \N \N f \N 2025-03-26 06:09:04.179 f \N \N \N 0 0 0 0 0 0 0 435241 2025-03-12 14:47:35.441 2025-03-29 22:39:51.711 \N Damn. With all those sats I need a new territory. https://example.com/ 1713 435217 435217.435241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.77986780874854 0 \N \N f 0 \N 0 112965015 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-20 00:20:56.17 f \N \N \N 0 0 0 0 0 0 0 447236 2025-03-21 17:55:25.155 2025-03-29 22:39:51.711 \N Love https://example.com/ 10493 447111 446371.446452.447063.447086.447111.447236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4203010005359 0 \N \N f 0 \N 0 239423334 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:19:17.559 f \N \N \N 0 0 0 0 0 0 0 436648 2025-03-13 18:41:49.68 2025-03-29 22:39:51.711 \N I can't believe you made this post. I had the exact same thought. Listening to Tom Keane, I thought of a dinosaur who had no clue the meteor was about to hit. As an aside, I heard him refer to Gensler as an honorable man who can be counted on to do the right thing, protecting innocent investors from the likes of SBF. I laughed out loud. https://example.com/ 9705 436566 436566.436648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.34152997559914 0 \N \N f 0 \N 0 204231443 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 2025-03-20 12:02:57.645 f \N \N \N 0 0 0 0 0 0 0 435578 2025-03-12 19:49:02.139 2025-03-29 22:39:51.711 \N ![oie_jpg.png](https://m.stacker.news/19317) https://example.com/ 20254 435521 435521.435578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9791482456322 0 \N \N f 0 \N 0 167631904 0 f f \N \N \N \N 435521 \N 0 0 \N \N f \N 2025-03-19 13:21:47.21 f \N \N \N 0 0 0 0 0 0 0 436527 2025-03-13 16:09:02.678 2025-03-29 22:39:51.711 \N Howdy y'all!\nIn addition to the cowboy hat and the BTC Mask, I also made me a BTC ring... and now I can really feel the power of the ring 🤣\nI wear the ring from time to time and it has engaged me into very cool bitcoin conversations with strangers... its a very powerful ring y'all lol \n\n\n![20231006_190915.jpg](https://m.stacker.news/4474) https://example.com/ 13100 436499 436499.436527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8061742881257 0 \N \N f 0 \N 0 78716823 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 2025-03-20 10:27:19.379 f \N \N \N 0 0 0 0 0 0 0 435999 2025-03-13 07:58:06.735 2025-03-29 22:39:48.161 Daily Discussion Thread ~Music Saloon! Hello Stackers!\n\nWelcome on into the ~Music Corner of the Saloon!\n\nA place where we Talk Music. Share Tracks. Zap Sats.\n\nSo stay a while and listen.\n\n🚨Don't forget to check out the pinned items in the territory homepage! You can always find the latest weeklies there!🚨\n\n🚨Subscribe to the territory to ensure you never miss a post! 🚨 \N 5017 \N 435999 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 1.04452467397607 0 \N \N f 0 \N 0 27019737 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:01:45.119 f \N \N \N 0 0 0 0 0 0 0 443656 2025-03-19 12:54:32.757 2025-03-29 22:39:51.711 \N Finding the way to deliver bitcoin/sats microloans to people in need! Have a look at [🌱Ahoro.org](https://Ahoro.org) at the moment we are integrating the Lightning payments and soon onChain will be available soon at checkout with BTCpay integration.\n\nAlso looking to improve the borrower experience, as at it's buggy because developed with minimal resources. Your feedback it's much appreciated here too https://example.com/ 16834 443583 443583.443656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2775256465472 0 \N \N f 0 \N 0 143263247 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 2025-03-26 06:19:13.953 f \N \N \N 0 0 0 0 0 0 0 447289 2025-03-21 18:47:12.466 2025-03-29 22:39:51.711 \N Any miners could construct candidate block with their own intended txs inside that block. Miners can't "ban" certain txs, but they can optionally not include txs into their candidate block.\nBut most miners are incentive-driven, pay enough fee & your tx will be included in the next block (depends on the fee market atm) https://example.com/ 20924 447164 446456.447164.447289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3354017651819 0 \N \N f 0 \N 0 247119356 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 12:04:30.042 f \N \N \N 0 0 0 0 0 0 0 443410 2025-03-19 10:36:41.137 2025-03-29 22:39:51.711 \N It's entirely possible depending on where she was and who she had to deal with:\n\n1. Right from the airport she may have been mistreated by employees, which are all state employees still ([Milei is currently in the process of dismantling that](https://www.lanacion.com.ar/politica/el-gobierno-despidio-a-16-empleados-de-intercargo-por-la-medida-de-fuerza-en-aeroparque-nid07112024/)). The airport mob obliges you to their shitty services at ridiculous costs, so they treat you like their bitch. Because you (we) are.\n\n2. Making the first step out from the airport gets you in the next trap which is the cab mob. Again, [Milei is in the process of dismantling that too](https://www.lavoz.com.ar/politica/desregulacion-del-transporte-cualquier-servicio-autorizado-podra-ingresar-a-una-terminal-o-aeropuerto/). The cab mob obliges you to their shitty services at ridiculous costs, so they treat you like their bitch. Because you (we) are.\n\n3. Right after surviving that you are now in the Capital, where you are likely to encounter the infamous stereotype of the locals, the "porteño". They are used to be treated like the center of the universe, because everything was structured so that the Capital centralized all economic flow and power. So they treat everyone like "inferiors". They are insufferable entitled jerks exactly as your cousin described. The "porteño" is the most indoctrinated unit inherited from the socialist regime, and one of the things they are instructed to believe is that all and every shortcomings the regime ever had were solely caused by "foreing intervention, specially from the USA". Because, of course, socialism can never fail. So it has to be the USA sabotaging everything. So many entitled jerks, armchair revolutionaries, might be bitter to USA and UK foreigners. But apart from that, they are default bitter to everyone, specially to other Argentines outside of the Capital.\n\n4. Then, if she visited mostly traditional tourist destinies, she might have been treated like shit again because people on those posts usually hold sole possession of whatever shitty service they give because they have a deal with the local govt. So it's a "tourism mob" that again, obliges you to their shitty services at ridiculous costs, so they treat you like their bitch. Because you (we) are.\n\n5. That said, she was also very unfortunate. It's not *that* common to find a majority of jerks. She had really bad luck. There's also a common trait of the Capital and its suburbs and it's that there's so much people and so much activity concentrated in that zone that people tend to be always in haste and they are so used to it that even among themselves they don't perceive hasteful manners as mistreatment. It's just normal to them. That also has lead to a culture of hasteful expression in which people sound like entitled jerks literally all the time because it became a cultural mannerism, and they will talk to you that way not meaning to offend you at all (and I know that first hand because I have family there that sound like that but they are sweet and mellow). https://example.com/ 17415 443341 443105.443300.443341.443410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6483613376897 0 \N \N f 0 \N 0 227861411 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 2025-03-26 04:09:16.312 f \N \N \N 0 0 0 0 0 0 0 434819 2025-03-12 08:58:53.494 2025-03-29 22:39:51.711 \N It will be a big work for me this coming weekend. Laundry and house cleaning, groceries, ironing etc. Household chores majority. I need to catch up after my son got out of the hospital this morning. Thanks he is doing well again. After I took care of him thoroughly now it is the house turn. https://example.com/ 15226 434806 434795.434806.434819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.37400763522162 0 \N \N f 0 \N 0 194480180 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 02:18:57.733 f \N \N \N 0 0 0 0 0 0 0 447200 2025-03-21 17:23:17.642 2025-03-29 22:39:51.711 \N ### My take on this so called Bitcoin conference...\n1. Important and interesting things happen on the secondary stage, the open source stage. The main stage is full of bullshit propaganda and people that have no idea what is Bitcoin and why they are there.\n2. Bringing politicians and especially presidential candidates on the stage is a BIG mistake. You practically make their political game. These people are NOT there to help you, are there to GET THE POWER over you.\nYou are fooled if you believe that politicians care about you and your bitcoins.\nEspecially RFK, he was put in that presidential race EXACTLY to fool you, to give you false hope, to move your attention from more important things. He will never win any elections, no matter what you will think. He was pushed and trained "to be with bitcoiners" so later can be demolished in the campaign, is just a puppet.\nThe whole political game is rigged and people still do not realize that.\n3. Bitcoiners don't need any "right" to run their nodes. THEY JUST RUN THEM! Honeybadger doesn't care about any cheap political promise.\nI don't need anybody to give me any "right" to use Bitcoin. I just use it and I don't give a shit about any politician. Is not their damn business what am I doing with my own money.\n4. STOP following false idols and figures! Stop giving them a stage where they can manipulate the weak minds with false political speeches.\n\nHere I also explained how I would like to see these conferences: https://stacker.news/items/180224\n\nI will repeat this over and over until more people will understand it:\nBitcoin adoption will happen only when people will learn to be sovereign individuals, not with politicians "help" and speeches.\n\n[![vader-sovereign-adoption.jpg](https://i.postimg.cc/zX2ZDQD1/vader-sovereign-adoption.jpg)](https://postimg.cc/vcnS336P)\n\nhttps://darthcoin.substack.com/p/how-bitcoin-will-save-the-world https://example.com/ 5017 447143 447143.447200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.07550491513339 0 \N \N f 0 \N 0 52914641 0 f f \N \N \N \N 447143 \N 0 0 \N \N f \N 2025-03-29 09:21:16.657 f \N \N \N 0 0 0 0 0 0 0 434445 2025-03-11 22:34:25.236 2025-03-29 22:39:48.159 MONEY CLASS OF THE DAY: Fixed FX, Monetary Wizards, and the Trade of the Century "All pegs are stories," concludes Patrick McKenzie --formerly of Stripe -- as he discussed stablecoins a while back (https://bam.kalzumeus.com/archive/stablecoin-mechanisms-and-use-cases/) "A peg is a story about why two things which are not the same are, in fact, similar enough to be treated interchangeably."\n\nIn monetary history, a "peg" -- aka fixed exchange rates -- always involves an asset that the pegger controls, i.e. can print more of (like TerraUST for the Luna foundation people or the British pound for the Bank of England) and a target asset that the pegger doesn't control. The simplest way to uphold a peg is to transparently hold (and back) every unit of the asset you control by a unit of the asset you don't control. Think money market funds, the USDC or GeminiUSD stablecoins, or the many successful currency boards around the world (e.g., Hong Kong, Bulgaria). \n\nMost don't do that, prefering to achieve some monetary magic. \n\nA pegger can always deal with upward market pressure on the asset they control by printing more. Denmark’s Nationalbank has successfully pegged its currency, DKK, to the euro at 7.46 (with a 2.25% band around it) for years. A few years ago, the DKK breached that level and traded above the official peg on and off for about two years, and there was lots of chatter around markets that something was happening to the peg (=euro break-up risk). \nBut since the market pressure was in the “wrong” direction there was never any issue forcing the hands of Denmark’s monetary central planners. Foreigners wanted to hold more DKK (potentially as a hedge against problems with the ECB or the eurozone), which the Nationalbank could and did supply in whichever quantities markets demanded. Money printing go brrr....\n\nThe headache-inducing problem for peggers happens when market pressure goes in the other direction: when the world wants to ditch the asset the pegger has issued them and wants more of the asset the pegger doesn’t control. This is when the pegger must back its pegging words with real actions by selling real assets on the open market. \n\nThe Danish central bank doesn’t control the euro and cannot issue more of it, so it is limited to selling the euros it has on its balance sheet (or, in a pickle, can acquire from the ECB, which does control the euro). For this, the Nationalbank carries FX reserves equal to about 20% of Danish GDP or one-third of outstanding Danish kroner — which, if required, it could sell into the market (purchase DKK) and thus bring about the desired exchange rate between DKK and EUR. It’s not fully backed... but with enough of the non-controlled asset to credibly defend the peg. \n\nThis was the trouble that the Bank of England ran into in September 1992, as its bank officials struggle to uphold the pound peg. \n\n**The Bank of England and the Trade of the Century**\n\nIn the mid-1900s, economists, politicians and monetary theorists were enamored with the idea of “fixed” monetary relations -- “fixed” because fixing implies a fixer, a glorious Atlas carrying the monetary Earth on his shoulders. There was no such character in this lost monetary world — not the 19th-century romanticized era of global trade and internationalization that it looked back on — but it was the experience of international merchants and policymakers at the time that currencies seemed to be fixed, pegged, tied, or connected to one another at a certain rate. \n\nIt might be that consumers and businesses don’t like it when currencies fluctuate in value according to fickle demand. They wanted to control — fix, or in other words “peg” — them. Regulators concluded: We must pin down the filthy speculators and their errant capital flows. We had the Bretton Woods agreement in operation from the late-1950s to 1968, where international currencies were “managed” by politicians and economic experts. After the gold pool broke in 1968 , the Nixon shock 1971 temporarily (read: permanently) unshackled the dollar from the cushy constraints of gold, and the inflation that accompanied that decade, European politicians began once more to sketch on a way to tie down their currencies. \n\nThe outcome, the ERM, was the forefather to the euro and required participants to steer their currencies toward a benchmark rate; if the market wandered too far off the rate set by bureaucrats, central bankers were expected to bring it back by selling foreign reserves on the open market or issuing more of its domestic currencies to bring it back down. \n\nBritain had joined the arrangement in 1990, as a result of its ever-fickle relationship with the European integration project — sometimes in, sometimes out. In 1992, following years of high interest rates, depressed property prices, and a recession, market participants had snuffed out a weakness in the officially pegged British pound. \nLike every other peg, the Britain’s attempt at joining the ERM with other European countries was a story told by suit-and-tie government officials: We say the pound is worth 2.95 Deutschmark. Pointing to a vast warehouse of foreign asset, the officials said that they stood ready to sell these assets to prove it, or print more pound if the DM/GBP went above that rate. \n\nAs long as the pile of assets held by the pointy hats with overblown credentials at the Bank was big enough, the rest of the world’s financial markets said “fine, whatever.” We’ll treat the pound as worth 2.95 Deutschmark, markets said; if it ever deviates above or below that rate, we’ll even help you by front-running whatever trade we expect you to make in order pocket the arbitrage difference. \n\nIt’s a Jedi mind-trick, wrote Claire Jones and Joseph Cotterill in the Financial Times suitably about an altogether different reserve problem (Russia, 2022: https://www.ft.com/content/526ea75b-5b45-48d8-936d-dcc3cec102d8): If markets know you’ve got a load of [reserves], they’re less likely to challenge you to use them.” \n\nThus, when there’s enough credibility the Bank of England doesn’t have to do anything but credibly state what the market rate shall be for it to be so. **_It’s very cheap to operate monetary policy by magic_.** \nIf the stuff held by the men in pointy hats and overblown credentials happens not to be big enough, the rest of the world’s financial markets say “ehh, no? Let’s see how serious you are.” \n\nIn September 1992, market participants — including, most famously, Hungarian billionaire George Soros — borrowed tens of billions’ worth of pounds and sold them for Deutschmark, with the explicit intention of breaking that peg. The suit-and-tie people’s silly words were not credible and Soros meant to show that.\nIn the “trade of the century,” Soros and other currency speculators did exactly that.\nThey bet that the politicians and the central banks couldn't maintain artificially high exchange rates for political integration reasons\n\nThe speculators sold pounds and pushed GBP outside of its allowed span, which resulted in the Bank of England selling from its foreign exchange reserve to protect the peg, i.e., they were buying GBP (the asset they controlled) with foreign reserves (the assets they didn’t control). Over a span of a few weeks, the Bank shoveled billions after billions to keep the peg at the stated price — until they finally gave in on September 16. At around noon of that fateful day, the Bank raised its interest rate by 200 basis points, but the avalanche of pound shorting would not stop. The U.K. government suspended the peg and left the ERM. When monetary policy action reeks of desperation, the magic credibility that upheld it vanishes faster than monetary wizards can say “Wingardium Levoisa.” \n\nThe British pound quickly dropped in value, Soros pocketed a nice round £1 billion profit, and monetary central planners were taught a painful lesson in trying to peg a currency (the total loss to the Bank amounted to something like £3.3 billion). \n\nAlchemic monetary policy failed and controlling a currency’s value turned out to be a lot more expensive than to cheaply state the rate at which the market ought to value it. A peg under threat forces the pegging institution to put its money where its mouth is, actively upholding the peg with real assets rather than the soft, fake-y assets of merely speaking the words. Credibility is everything.\n\n---\nNot the only reason basically no major country runs fixed exchange rates today, but quite a large one. The arbitrage/speculative attack risk with open capital markets makes fixed rates pretty undesirable. \n\nAnyway, nice little tidbit from the history of money. \n\nThat's today's little money lesson.\nPeace,\nJ \N 17673 \N 434445 \N \N \N \N \N \N \N \N art \N ACTIVE \N 2.7846992430722 0 \N \N f 0 \N 0 15068755 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 02:27:33.91 f \N \N \N 0 0 0 0 0 0 0 448394 2025-03-22 15:25:42.081 2025-03-29 22:39:48.159 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/294031) are the updates stackers shared from all their latest work projects. \N 861 \N 448394 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.8858875815114 0 \N \N f 0 \N 0 42287253 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:07:25.199 f \N \N \N 0 0 0 0 0 0 0 435383 2025-03-12 16:36:29.287 2025-03-29 22:39:51.711 \N Day 100 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 16347 435381 435242.435381.435383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.99720063523709 0 \N \N f 0 \N 0 245622114 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 2025-03-19 18:59:04.535 f \N \N \N 0 0 0 0 0 0 0 434754 2025-03-12 08:07:15.042 2025-03-29 22:39:51.711 \N The other issue is that property tax revenues depend on high home prices, so even local governments have an incentive to keep these prices artificially high. "Affordable housing" programs are always going to be in the form of subsidies, because that's how you keep this racket going. https://example.com/ 2844 434440 434440.434754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4200741156512 0 \N \N f 0 \N 0 218033570 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 2025-03-19 04:00:16.684 f \N \N \N 0 0 0 0 0 0 0 434463 2025-03-11 23:07:30.819 2025-03-29 22:39:51.711 \N Nice to meet you! \n\n(Moved this question from your bio, because I saw you posted this AMA) \n\n\nI was looking through your medium articles. \n\nWhat do you think of the [MVRV Z-Score](https://www.lookintobitcoin.com/charts/mvrv-zscore/) indicator? It seems pretty similar to the Rising Bottom Ratio. https://example.com/ 2711 434099 433828.434099.434463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.963820203101164 0 \N \N f 0 \N 0 203827392 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-18 16:29:01.677 f \N \N \N 0 0 0 0 0 0 0 435282 2025-03-12 15:18:32.414 2025-03-29 22:39:51.711 \N reddit.com/r/cryptocurrency dont know about the lightning network and i cant tell them caus im banned.\n\nthey dont know that lightning adresses can look like emails, they dont know that lightning transactions are vastly more private than on-chain transactions, they dont know that you can use your LN wallet to login to websites. THEY KNOW NOTHING and its sad https://example.com/ 12744 435271 435224.435271.435282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.45292795214175 0 \N \N f 0 \N 0 138148192 0 f f \N \N \N \N 435224 \N 0 0 \N \N f \N 2025-03-19 08:40:46.463 f \N \N \N 0 0 0 0 0 0 0 443588 2025-03-19 12:31:23.536 2025-03-29 22:39:51.712 \N @nemo you realize that zapping natalia is like zapping yourself on this thread?\nIs pure madness this thread. And I got also sats LOL\nPlease stop \n😂😂😂😂😂😂😂😂😂😂😂😂😂😂\n\nwe are creating a butterfly effect damn it!\n\n@k00b - suggestion for the name of the next SNL: butterfly effect https://example.com/ 9355 443372 443372.443588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.7732194530064 0 \N \N f 0 \N 0 127596817 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 05:48:32.758 f \N \N \N 0 0 0 0 0 0 0 442627 2025-03-18 17:53:47.026 2025-03-29 22:39:48.159 AMA - Danny Diekroeger (Deezy Lightning) Hey all, Danny D here, ask me anything!\n\nTopics to ask about:\n\n- Running a big lightning node\n\n- Bitcoin lightning at Cash App\n\n- Anything else!\n \N 694 \N 442627 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 2.19369672782094 0 \N \N f 0 \N 0 208684842 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 02:55:41.404 f \N \N \N 0 0 0 0 0 0 0 443327 2025-03-19 09:07:00.318 2025-03-29 22:39:51.712 \N I'm incredibly laid back. Had a good question the other day, pretty much out of no-where: "What company is behind bitcoin?". The answer seemed to be of interest, I was thanked, and they went out of the room.\n\nI take heart from Aesop's fable of the North Wind competing with the sun. Force and might doesn't work, in fact, it can do the opposite. Gentleness love and time works for me. https://example.com/ 21063 443322 443295.443312.443322.443327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8695005966983 0 \N \N f 0 \N 0 12685051 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:20.966 f \N \N \N 0 0 0 0 0 0 0 434523 2025-03-12 01:45:33.643 2025-03-29 22:39:51.712 \N Tested out the Nostr cross posting feature here on SN this week. Its very cool. https://example.com/ 2088 434285 434285.434523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5978736095068 0 \N \N f 0 \N 0 93543007 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 2025-03-18 22:02:21.822 f \N \N \N 0 0 0 0 0 0 0 435480 2025-03-12 18:09:42.234 2025-03-29 22:39:48.159 WaPo Slams Harris' Economic "Gimmicks" While NYT Says "A Coup Is Still A Coup" > While WaPo is calling out Harris over **'populist gimmicks,'** the NY Times' Maureen Dowd slammed Democrats for executing a ***'coup'*** to remove Biden from the 2024 ticket.\n![](https://m.stacker.news/46987)\n> ......the party's power players have orchestrated a behind-the-scenes coup to push President Joe Biden out of the 2024 race, handing the reins to Vice President Kamala Harris.....The political backstabbing was reportedly orchestrated by Barack Obama, Nancy Pelosi, Chuck Schumer, and Hakeem Jeffries.\n\n***So, the MSM finally accepted it was a coup!***\n\n***Or, they knew that Biden would come under [scanner and might be impeached](https://www.zerohedge.com/political/house-concludes-biden-actively-participated-impeachable-offenses-except-its-too-late) for helping to enrich his family with millions of dollars?***\n\n\n https://www.zerohedge.com/political/wapo-slams-harris-economic-gimmicks-while-nyt-says-coup-still-coup 8684 \N 435480 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 0.830098749545343 0 \N \N f 0 \N 0 95063860 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:40:50.866 f \N \N \N 0 0 0 0 0 0 0 442997 2025-03-19 00:04:07.18 2025-03-29 22:39:48.159 Hey so SN raised a seed round We raised 1.25m. 🥳\n\n[Max Webster](https://twitter.com/MaxAWebster) at [Hivemind](https://hivemind.vc/) led with Ross Stevens (the [NYDIG](https://nydig.com/) one), [Raymond Tonsing](https://twitter.com/tonsing) of [Caffeinated Capital](https://caffeinatedcapital.com/), [Mishti Sharma](https://twitter.com/m1shti) with Caffeinated's Collective Fund, and [Steve Lee](https://twitter.com/moneyball) filling up the rest.\n\nValuation was 25m post-money (which I like to reveal because I'm usually curious when other companies announce their raises).\n\nHere's the pitch deck I used (huge assist from @kr on this): https://docs.google.com/presentation/d/1ONoS1VLKRYiG14ODx3tIboH9JdndxL2fQwlACWdULok/edit?usp=sharing\n\nIn total, this brings total raising to 1.55m and I've sold 10% of SN to people I really like. \N 15728 \N 442997 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 1.79745791718968 0 \N \N f 0 \N 0 139906466 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:27:09.499 f \N \N \N 0 0 0 0 0 0 0 435523 2025-03-12 18:56:13.538 2025-03-29 22:39:51.712 \N howdy, hot showers, heating pads https://example.com/ 14258 435314 435314.435523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.52045195769013 0 \N \N f 0 \N 0 121427474 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:35.464 f \N \N \N 0 0 0 0 0 0 0 435902 2025-03-13 04:47:54.57 2025-03-29 22:39:51.712 \N sounds like I might need to open a channel to the SN node. hang tight.. https://example.com/ 1009 435850 435488.435776.435850.435902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58671148431971 0 \N \N f 0 \N 0 101017072 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 00:15:11.397 f \N \N \N 0 0 0 0 0 0 0 448409 2025-03-22 15:34:48.667 2025-03-29 22:39:48.16 SN Saturday Newsletter 8/3/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Reflections on industrial mining after my first larger conference](https://stacker.news/items/629837)\n - Industrial miners, at least the representatives of them that [@jasonb](https://stacker.news/jasonb) talked to at Bitcoin 2024, aren't aware of the troubling trend of mining pool centralization.\n - 13.6k sats \\ 22 comments \\ [@jasonb](https://stacker.news/jasonb)\n2. [love, projects, women, art, trump - my reactions to Bitcoin Nashville](https://stacker.news/items/630513)\n - [@plebpoet](https://stacker.news/plebpoet) proves their [Bitcoin conference expectations](https://stacker.news/items/625076) wrong.\n - 3.5k sats \\ 10 comments \\ [@plebpoet](https://stacker.news/plebpoet)\n3. [New website for tracking robosats stats](https://stacker.news/items/628811)\n - The darknet peer to peer lightning exchange [robosats](https://learn.robosats.com/) stopped updating their parabolic stats after [federating](https://stacker.news/items/235393), so [@supertestnet](https://stacker.news/supertestnet) made a new stats site.\n - 3.8k sats \\ 36 comments \\ [@supertestnet](https://stacker.news/supertestnet)\n4. [Trump Promises - Bitcoin Nashville 2024](https://stacker.news/items/625076)\n - Trump made a lot of bitcoin-related promises he likely won't keep, but as [@kepford](https://stacker.news/kepford) points out, his need to make promises to bitcoiners is proof that bitcoin is winning.\n - 2.9k sats \\ 55 comments \\ [@kepford](https://stacker.news/kepford)\n5. [Any tips for next adoption move as a merchant?](https://stacker.news/items/628254)\n - [IVPN](https://www.ivpn.net/en/) has accepted bitcoin for years, but [@viktorv](https://stacker.news/viktorv) wants to know if there's anything else they should be doing.\n - 3k sats \\ 50k boost \\ 27 comments \\ [@viktorv](https://stacker.news/viktorv)\n\n##### Protests in Venezuela\n\n*a boots on the ground series by [@bief57](https://stacker.news/bief57)*\n\n- [Electoral fraud in Venezuela - This is how the elections were experienced](https://stacker.news/items/626469)\n- [PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD](https://stacker.news/items/627385)\n- [Protests in Venezuela after electoral fraud. Day I](https://stacker.news/items/627838)\n- [PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY II (part 1/2)](https://stacker.news/items/628761)\n- [PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY II (part 2/2)](https://stacker.news/items/629304)\n- [PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY III (part 1/2)](https://stacker.news/items/630306)\n- [PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY III (part 2/2)](https://stacker.news/items/630716)\n- [PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY IV](https://stacker.news/items/631761)\n- [PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY V (PART 1/2)](https://stacker.news/items/632782)\n- [PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY V (PART 2/2)](https://stacker.news/items/633098)\n\n##### Don't miss\n- [I felt a VERY weird sensation, but don't know what caused it.](https://stacker.news/items/632835)\n- [U.S. Job Market Signals Looming Recession](https://stacker.news/items/632130)\n- [What is masculinity?](https://stacker.news/items/628725)\n- [Bitcoin’s Proof of Work matters](https://stacker.news/items/629503)\n- [Count your blessings when you're high in the sky](https://stacker.news/items/626912)\n- [Why Are On Chain Transaction Fees So Low Now?](https://stacker.news/items/625598)\n- [Analysis after a day of letting the Trump speech set in](https://stacker.news/items/625777)\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [SN release: random zap amounts, webln attached wallet](https://stacker.news/items/632357)\n- [Allow Personal and General Hot Topic Feeds](https://stacker.news/items/630368)\n- [Nudges for SN](https://stacker.news/items/626255)\n- [Golden Oldies #6](https://stacker.news/items/628271)\n- [Stacker News Live #130: On the Road in Nashville with Evan Kaloudis](https://stacker.news/items/625454)\n\n[**all meta**](https://stacker.news/~meta/top/posts/week)\n\n-------\n\n##### Top Monday meme\n![](https://imgprxy.stacker.news/RsIxglBn7ff56fre9y7YFY_RPH2cKUkoa4clS0pDbyw/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy80MjI2OA)\n\n[**all monday memes**](https://stacker.news/items/626862)\n\n------\n\n##### Top Friday fun fact\n> **“Big Ben” is Not the Famous Clock Tower, but Rather the Name of the Great Bell Inside the Tower.**\n>\n> >\n> > If you’ve ever been to London, or even seen a picture of London, you’ve probably seen the giant clock tower at the corner of the Palace of Westminster. This tower is one of London’s major icons, ranking right up there with red double-decker buses, the London Eye, and Platform 9 ¾.\n> >\n> > Contrary to popular belief, the clock tower itself is not named “Big Ben”. Rather, it is named “Elizabeth Tower”, after Queen Elizabeth II; named such during her Diamond Jubilee (the 2012 60th anniversary of her accession to the throne). Before that, it was just called “Clock Tower”. So why is it so often called “Big Ben”? That is due to the great bell inside the tower that chimes the hour out and goes by that name. Over time this has morphed into many calling the clock tower itself that even today, despite the recent, very public, name change.\n> >\n> > **[...read more at todayifoundout.com](https://www.todayifoundout.com/index.php/2013/06/big-ben-is-not-the-famous-clock-tower-but-rather-the-name-of-the-great-bell-inside-the-tower/)**\n\n\n[**all friday fun facts**](https://stacker.news/items/632283)\n\n------\n\n##### Top Stackers\n1. [@bief57](https://stacker.news/bief57): 130.9k sats stacked\n2. [@grayruby](https://stacker.news/grayruby): 83.7k sats stacked\n3. [@Undisciplined](https://stacker.news/Undisciplined): 81.2k sats stacked\n4. [@Bell_curve](https://stacker.news/Bell_curve): 64.5k sats stacked\n5. [@Coinsreporter](https://stacker.news/Coinsreporter): 62.5k sats stacked\n\n------\n\n##### Top Spenders\n1. [@ek](https://stacker.news/ek): 116.3k sats spent\n2. [@MaxAWebster](https://stacker.news/MaxAWebster): 109.9k sats spent\n3. [@grayruby](https://stacker.news/grayruby): 83.8k sats spent\n4. [@Bell_curve](https://stacker.news/Bell_curve): 54.8k sats spent\n5. [@Undisciplined](https://stacker.news/Undisciplined): 51.4k sats spent\n\n------\n\n##### Top Cowboys\n1. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 330 days\n2. [@Undisciplined](https://stacker.news/Undisciplined): 312 days\n3. [@OneOneSeven](https://stacker.news/OneOneSeven): 305 days\n4. [@BlokchainB](https://stacker.news/BlokchainB): 291 days\n5. [@TNStacker](https://stacker.news/TNStacker): 287 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 19527 \N 448409 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 17.6153725293847 0 \N \N f 0 \N 0 4964677 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:16:57.289 f \N \N \N 0 0 0 0 0 0 0 435813 2025-03-13 01:44:50.292 2025-03-29 22:39:51.712 \N The mint does know the IP of the users that interact with it. But if the mint has no way to tie your identity to an IP, then it's not a problem. Since the user can also use TOR or a VPN, Bob can never be certain of whether Alice's or Carol's IP is actually "theirs" (if you are thinking in a simplistic way and you assume their home IP is "their" IP, for instance).\n\nOne example: I'm on a cafe with my phone. I'm connected to the wifi. I ask the mint for some tokens in exchange for my sats. The mint sees the cafe IP. Now I turn on my phone's wifi and connect through my own data. Repeat the same interaction. The mint sees a different IP. The mint has no way of knowing if both interactions are from the same person.\n\nAnother eaxmple: I have a VPN set up with my own VPS somewhere. I route my traffic through there, so online services, like the mint, see my VPS IP instead of my device's. I'm a generous guy and I share this VPN with 9 other friends who use it frequently. In this case, if all of us interact with the mint, the mint sees the same IP repeatedly, but has no way of telling who's who or even if there is one or multiple people interacting with it.\n\nSo, summing up: the mint is pretty much in the dark. A bunch of interactions with a bunch of IPs could hide all sorts of different combinations of people, devices and identities behind it.\n\nHope this helps. calle and gandlaf definitely will have better insights than I do. https://example.com/ 7966 435798 435798.435813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9694456919776 0 \N \N f 0 \N 0 141366482 0 f f \N \N \N \N 435798 \N 0 0 \N \N f \N 2025-03-19 21:41:46.883 f \N \N \N 0 0 0 0 0 0 0 434565 2025-03-12 03:00:14.909 2025-03-29 22:39:51.712 \N I appreciate your optimism. I agree with you regarding shit coins, but I see these spot ETFs as fiat's last gasp Trojan Horse attack against bitcoin. Like Snowden and Farrington have warned, the old rotten financial system can coopt and control bitcoin as it did gold. You're right. It's a test for bitcoin. How many of us won't ultimately sell out to BlackRock if we are offered wealth beyond our wildest dreams in the here and now? https://example.com/ 17201 434525 434465.434525.434565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7435881354347 0 \N \N f 0 \N 0 206725971 0 f f \N \N \N \N 434465 \N 0 0 \N \N f \N 2025-03-18 23:08:38.828 f \N \N \N 0 0 0 0 0 0 0 434046 2025-03-11 15:21:30.232 2025-03-29 22:39:51.712 \N OK. https://example.com/ 21815 433995 433828.433942.433995.434046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.83302743784849 0 \N \N f 0 \N 0 96453664 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-20 06:38:11.215 f \N \N \N 0 0 0 0 0 0 0 435597 2025-03-12 20:03:17.211 2025-03-29 22:39:51.712 \N Any of the Tom Clancy classics like \n\nHunt for Red October\nThe Sum of All Fears https://example.com/ 19469 435446 435261.435446.435597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.60271478813566 0 \N \N f 0 \N 0 76631502 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:34.813 f \N \N \N 0 0 0 0 0 0 0 435866 2025-03-13 03:36:31.507 2025-03-29 22:39:51.712 \N Louis-Ferdinand Céline: ''Journey to the End of the Night'' i\n\nA semi-autobiographical novel, published in 1932. It follows the life and travels of cynical antihero Ferdinand Bardamu, set over several decades of his life, beginning with his experiences in World War I, colonial Africa, the United States, and the poor suburbs of Paris. \n\nYou'll never read a better book on a flight, on a toilet, during working hours, on Your honey-moon... whatever. It's crazy stuff https://example.com/ 6653 435420 435261.435410.435420.435866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.77875500664766 0 \N \N f 0 \N 0 4194720 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 03:36:48.497 f \N \N \N 0 0 0 0 0 0 0 435431 2025-03-12 17:10:54.225 2025-03-29 22:39:51.712 \N Anita https://example.com/ 17592 435350 435217.435350.435431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2826142636328 0 \N \N f 0 \N 0 25629284 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 13:21:16.917 f \N \N \N 0 0 0 0 0 0 0 433688 2025-03-11 10:10:14.507 2025-03-29 22:39:48.16 Who's NOT in prison right now that SHOULD BE? Adam Neumann probably, given that WeWork [filed](https://www.reuters.com/business/softbanks-wework-once-most-valuable-us-startup-succumbs-bankruptcy-2023-11-07/) for bankruptcy this week while he's still a billionaire. What a finesse.\n\n![adam-neumann.jpg](https://m.stacker.news/4530)\n![Screenshot 2023-11-10 at 10.43.07 AM.png](https://m.stacker.news/4529)\n\nAnd I have NO basis for this other than this mf Robinhood CEO gives me the SAME vibes as Neumann. Perhaps it's just the hair. But Robinhood users revenue and shares are all [going down](https://www.investopedia.com/robinhood-shares-plunge-as-the-online-brokerage-posts-a-drop-in-trading-revenue-and-users-8399296) down down. Maybe their crypto trading flop was a last ditch effort.\n\n![robinhood CEO.jpeg](https://m.stacker.news/4526)\n![Screenshot 2023-11-10 at 10.42.38 AM.png](https://m.stacker.news/4528) \N 1652 \N 433688 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 11.8833314358627 0 \N \N f 0 \N 0 76189583 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:46:39.784 f \N \N \N 0 0 0 0 0 0 0 435849 2025-03-13 03:05:04.374 2025-03-29 22:39:51.712 \N Gentle heat with a butane table-top burner (common in Asia) is all you need. There are emissions, so keep the oven fan on or use outside.\n\nWe use the donabe for Japanese hot pot (nabe). It's basically thin sliced meat individually cooked in a communal table stock (shabu shabu) with fish stock (dashi) and vegetables resulting in a very delicious stock that folks transfer to their own little bowls while eating.\n\nThe leftover stock can be used to cook Japanese rice. Great tool to have to ensure nothing ever goes to waste. https://example.com/ 16753 435770 435488.435770.435849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5290958154692 0 \N \N f 0 \N 0 57859356 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 00:15:08.699 f \N \N \N 0 0 0 0 0 0 0 435137 2025-03-12 13:44:49.825 2025-03-29 22:39:51.712 \N Muted colour suit, bespoke - 10 years\nShoes, fitted - 10 years.\nSwiss wristwatch - 27 years\nFountain pen - 14 years. \n\nHope they all go on to last much longer. Expensive but will only buy-once and in a tight spot you can always pawn them…. https://example.com/ 2203 435119 435046.435119.435137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8644648565203 0 \N \N f 0 \N 0 239848640 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 18:25:57.958 f \N \N \N 0 0 0 0 0 0 0 435799 2025-03-13 01:21:07.878 2025-03-29 22:39:51.713 \N Working on more content for my [website](https://www.clementinemoney.com/) to teach beginners about bitcoin. Right now focused on these methods but eager for feedback.\n\n* Articles (newsletter)\n* Videos\n* Quizzes\n\nIf any kind soul wants to give me some constructive criticism, I've got some sats to dole out as thanks :) https://example.com/ 12951 435798 435798.435799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0265881288353 0 \N \N f 0 \N 0 157634681 0 f f \N \N \N \N 435798 \N 0 0 \N \N f \N 2025-03-19 21:41:48.021 f \N \N \N 0 0 0 0 0 0 0 435900 2025-03-13 04:44:01.043 2025-03-29 22:39:51.712 \N there are a few components to it: you need to know the type of script you used to create the address, you need to know the keys and policies involved in the script, and you need to use a wallet that can build the script and sign transactions for it.\n\ntake a 2-of-3 p2sh multisig for example. if you created this script with electrum, you went through a process to set up the multisig. electrum has a gui that walks you through the process, it asks you what the signing policy is and what the xpubs of the signers are, and from that it can create the wallet, derive all of the addresses, and build txs to sign. so in the case of this multisig wallet you need to know that it's 2-of-3, p2sh, and the specific 3 xpubs used. with this information you should be able to recreate the wallet in any application that supports creating p2sh multisig wallets.\n\nfor more advanced scripts, you might need to know/backup more information related to the spending conditions. and if you lose that information, then you lose access to your funds. https://example.com/ 20073 435413 435375.435413.435900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7383210198556 0 \N \N f 0 \N 0 138002766 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N 2025-03-19 23:46:29.897 f \N \N \N 0 0 0 0 0 0 0 435771 2025-03-13 00:27:58.21 2025-03-29 22:39:51.713 \N Very nice. Checking it out now. https://example.com/ 20616 435527 434795.435274.435308.435527.435771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.92141769429476 0 \N \N f 0 \N 0 50550496 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 23:51:56.561 f \N \N \N 0 0 0 0 0 0 0 443363 2025-03-19 09:47:21.412 2025-03-29 22:39:48.16 AGREE/DISAGREE: Everyone will eventually be able to self-custody bitcoin With Bitcoin as it is, it does not look like 8 billion people can use it in a self-sovereign manner where they have sole control over their funds without a third party. Will we ever get to a point where it is possible?\n\nNot asking about people's know-how/skill, or desire. \N 16970 \N 443363 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 17.2337920145261 0 \N \N f 0 \N 0 98650632 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 03:07:14.612 f \N \N \N 0 0 0 0 0 0 0 357875 2025-01-06 02:39:55.859 2025-03-29 22:39:48.16 Name something you once wanted that you're happy to have never received? I applied to Y Combinator at least 10 times over the course of many years as I tried to find myself as a founder. \N 1983 \N 357875 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 22.5291363469917 0 \N \N f 0 \N 0 19906440 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 10:06:01.7 f \N \N \N 0 0 0 0 0 0 0 434773 2025-03-12 08:22:46.883 2025-03-29 22:39:51.713 \N send hex or base64 transaction to `+1 (863) BIT-COIN`\n\nmore info: https://rusnak.io/how-to-send-bitcoin-transactions-via-sms/ https://example.com/ 6058 434709 434646.434709.434773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2392211602722 0 \N \N f 0 \N 0 176463018 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 01:58:13.611 f \N \N \N 0 0 0 0 0 0 0 434219 2025-03-11 17:09:28.018 2025-03-29 22:39:51.713 \N Daily active user here. Mostly on Damus, just started trying primal. Zapping sats to others post all the time. Slowly going away from X and use it to read only if I use it at all. https://example.com/ 19952 434124 434124.434219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5171970053155 0 \N \N f 0 \N 0 76584726 0 f f \N \N \N \N 434124 \N 0 0 \N \N f \N 2025-03-19 07:05:10.855 f \N \N \N 0 0 0 0 0 0 0 443265 2025-03-19 08:06:25.977 2025-03-29 22:39:51.713 \N Wow: new update means I don't have to sneak peaks of where I am at on the leaderboard anymore. I'm not sure how I feel about this. There was a certain thrill in the uncertainty and a bit of (brief) exhibitionism in the checking... https://example.com/ 2232 442325 442325.443265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7865577039465 0 \N \N f 0 \N 0 18222983 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 2025-03-26 04:18:12.259 f \N \N \N 0 0 0 0 0 0 0 436426 2025-03-13 14:53:51.761 2025-03-29 22:39:51.713 \N A quiet saloon,\nyour absence echoes loudly,\nsearching for you @ek https://example.com/ 6148 436246 436241.436246.436426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.49239478718669 0 \N \N f 0 \N 0 76200437 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 09:26:51.43 f \N \N \N 0 0 0 0 0 0 0 434494 2025-03-12 00:43:48.574 2025-03-29 22:39:51.714 \N > In my mind I see consuming carbs as a high time preference activity that is enjoyable during the moment, but has longer term negative consequences.\n\nIf enjoying is high time preference then a delicious steak has to be high time preference too?\n\nI find this carb-phobia quite silly. Do they think ancestral peoples did not regularly eat fruit or honey?\n\nNot all carbs are junk food and eating carbs does not mean eating 3000 calories of carbs. Sugars, and the minerals that come with them, have very important metabolic roles (particularly when losing so much weight in a short timeframe).\n\nWhat's most important: whether honey or steak, make sure you earned it. Work out, do hard things, and then please yourself with food. https://example.com/ 19527 434483 434483.434494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3576070840195 0 \N \N f 0 \N 0 29922861 0 f f \N \N \N \N 434483 \N 0 0 \N \N f \N 2025-03-18 21:09:21.763 f \N \N \N 0 0 0 0 0 0 0 434316 2025-03-11 19:32:58.749 2025-03-29 22:39:51.714 \N Stories like this always amaze me:\nhttps://nypost.com/2021/11/28/stowaway-emerges-from-plane-wheel-well-after-guatemala-to-miami-flight/ https://example.com/ 993 427607 427401.427607.434316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.925308132075 0 \N \N f 0 \N 0 7410192 0 f f \N \N \N \N 427401 \N 0 0 \N \N f \N 2025-03-18 17:27:01.61 f \N \N \N 0 0 0 0 0 0 0 435247 2025-03-12 14:52:46.057 2025-03-29 22:39:51.714 \N Softwar by Jason Lowry\n\nIt was pulled from public access for some reason. \n\nGoes all the way back to singled celled organisms to explain why humans go to war. He calls it primordial economics. \n\nAlso says bitCOIN is an arbitrary name that people seem to take at face value. \n\nHe likes to call it bitPOWER.\n\nBitcoin’s first use case is money. But bitpower can be a means of projecting kinetic energy to protect our data.\n\nMuch like how we use the navy to protect our seas, Air Force the airspace, and army our land, bitpower our portion of cyberspace. https://example.com/ 21216 435236 435224.435236.435247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.232870366637 0 \N \N f 0 \N 0 23900207 0 f f \N \N \N \N 435224 \N 0 0 \N \N f \N 2025-03-19 08:27:43.588 f \N \N \N 0 0 0 0 0 0 0 433962 2025-03-11 14:34:44.912 2025-03-29 22:39:51.713 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **24** https://example.com/ 8541 433937 433937.433962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7782959686675 0 \N \N f 0 \N 0 216163607 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 2025-03-18 17:04:34.062 f \N \N \N 0 0 0 0 0 0 0 435174 2025-03-12 14:07:30.73 2025-03-29 22:39:51.713 \N > Worth commenting that I'm not sure if Taproot threshold signatures will have a lower onchain footprint, like Taproot aggregate signatures do (I can't read the FROST paper, to be honest).\n\nThey do have a lower footprint. Frost signatures are the same size as musig2 signatures, which are themselves the same size as "regular" schnorr signatures. That is, they are all 64 bytes.\n\nOne of the difficulties with using frost is that it doesn't support "bringing your own key." If 3 people want to generate a 2 of 3 "frost multisig" together, they cannot each independently generate a keypair and then "combine" their pubkeys together. They have to come together to generate a keypair together in a kind of "key generation ceremony." The ceremony involves doing some math that allows every keyholder to ensure everyone followed the protocol properly so that they all know for sure they'll be able to sign later.\n\nNot only is frost not standardized yet, there is also not yet any standardized way to do the key generation ceremony. And if companies like Unchained and Hodlhodl want to support this new form of multisig, some of them will probably have to change how they do business. Any of them that ask their users to provide 2 keys and let the company provide the third can't really do that anymore. They'll have to participate in a key generation ceremony that involves interacting with both users to generate a key and do the aforementioned math to ensure it's safe.\n\nIt's all quite involved and I don't expect much fruit to come out of it anytime soon. "Regular" multisig works well so I don't see much motivation to code up the fancier version that taproot enabled. Consequently the number of people working on it is small, and progress is slow. https://example.com/ 2309 435155 434958.435023.435155.435174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7271329732561 0 \N \N f 0 \N 0 4458504 0 f f \N \N \N \N 434958 \N 0 0 \N \N f \N 2025-03-19 07:27:51.16 f \N \N \N 0 0 0 0 0 0 0 436605 2025-03-13 17:48:27.661 2025-03-29 22:39:51.714 \N The time it's taking to see m of n Taproot multisig support integrated in mainstream wallets is something that irks me too, but I've recently learned that MuSig2 is simply not the tool for the job.\n\nApparently in Taproot there are 2 kinds of multisig schemes: aggregate signatures and threshold signatures. Aggregate signatures look like regular single-sig signatures but *are always n of n*. MuSig2 is a protocol that co-signing parties can follow to produce this kind of signatures, but from the MuSig2 draft you linked:\n\n> (MuSig2 is a n-of-n multi-signature scheme and not a t-of-n threshold-signature scheme.)\n\nEnter threshold signatures. These are the m of n multi signatures we are all familiar with. My understanding is that Taproot threshold signatures will be done with [FROST](https://eprint.iacr.org/2020/852.pdf), but apparently it's not yet standardized or even proved cryptographically safe.\n\nWorth commenting that I'm not sure if Taproot threshold signatures will have a lower onchain footprint, like Taproot aggregate signatures do (I can't read the FROST paper, to be honest).\n\nEdit: happy to be corrected/provided with more information about this topic. https://example.com/ 1316 436593 436593.436605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9273733024795 0 \N \N f 0 \N 0 93434677 0 f f \N \N \N \N 436593 \N 0 0 \N \N f \N 2025-03-20 13:09:52.956 f \N \N \N 0 0 0 0 0 0 0 448356 2025-03-22 15:03:03.955 2025-03-29 22:39:51.714 \N working on a webshop, where u can set price in sats or fiat, and sell both digital and physical goods. works with CLN and web.py. I set the price high as I dont want to start shipping for now, but if someone actually buys, I will shippit. https://shop.tarina.org\n\nstill cleaning up the code a bit before I'll FLOSS it. https://example.com/ 4115 448092 448092.448356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.72507776979807 0 \N \N f 0 \N 0 90091387 0 f f \N \N \N \N 448092 \N 0 0 \N \N f \N 2025-03-29 08:23:40.569 f \N \N \N 0 0 0 0 0 0 0 435613 2025-03-12 20:16:23.095 2025-03-29 22:39:51.714 \N 🫡 https://example.com/ 8045 435332 435328.435332.435613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.95458450831485 0 \N \N f 0 \N 0 6797358 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 2025-03-19 13:37:57.307 f \N \N \N 0 0 0 0 0 0 0 436336 2025-03-13 13:40:36.21 2025-03-29 22:39:51.714 \N It's a good example of how scientific advancements can require us to rethink our property rights framework. \n\nI think market coordination could have solved that, though, since it's not in anybody's interest to broadcast an indecipherable message. https://example.com/ 1697 436241 436241.436336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.219694892577 0 \N \N f 0 \N 0 161541226 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 10:22:57.575 f \N \N \N 0 0 0 0 0 0 0 433499 2025-03-11 06:59:25.91 2025-03-29 22:39:48.16 Don't miss the Stacker News FIREWORKS 🎆 show today Nice touch @SN !!\nHappy Independence Day!\n\n![](https://i.postimg.cc/FKnXLzqJ/Screenshot-2023-07-04-at-11-49-53-AM.gif) \N 12935 \N 433499 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 17.3432628645508 0 \N \N f 0 \N 0 57687279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 19:49:07.998 f \N \N \N 0 0 0 0 0 0 0 434155 2025-03-11 16:22:11.987 2025-03-29 22:39:48.16 Telegram will start moderating private chats after CEO’s arrest This should prove interesting for anyone still under the belief that Telegram is private. Though I can't say I'm shocked -- while I respect anyone who fights back, I completely get that "you will go to jail and lose all your money" is a hell of an incentive, and I can't say I'd have reacted differently (though if someone wants to give me billions of dollars and bitcoin and a large tech company, I'm happy to be a test case). https://www.theverge.com/2024/9/5/24237254/telegram-pavel-durov-arrest-private-chats-moderation-policy-change 4043 \N 434155 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.137162055336 0 \N \N f 0 \N 0 27968051 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 00:54:51.659 f \N \N \N 0 0 0 0 0 0 0 247866 2024-09-26 08:20:02.07 2025-03-29 22:39:48.16 Is it too late to learn to code Is it too late to learn to code? I’ve been learning for the last few weeks but I keep seeing these posts about AI coding something up that would normally take hours in seconds. So is this a skill that will become irrelevant? \N 11491 \N 247866 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6088959552951 0 \N \N f 0 \N 0 193457472 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:28:45.366 f \N \N \N 0 0 0 0 0 0 0 435585 2025-03-12 19:56:07.647 2025-03-29 22:39:51.713 \N - Magnesium for nervous system\n- Vitamin D3 for immunity\n- Fish oil for heart\n- Berberine for cholesterol & GI\n- Creatine for the guns and possibly the brain\n\nTrying to eat more yogurt/probiotics & fiber to be more regular, but the berberine seems to be helping there. https://example.com/ 21427 435516 435516.435585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.248182929743 0 \N \N f 0 \N 0 60908425 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 2025-03-20 08:31:55.427 f \N \N \N 0 0 0 0 0 0 0 434371 2025-03-11 20:41:00.188 2025-03-29 22:39:51.713 \N Reviewing the current Erlay pull request in Bitcoin Core. https://example.com/ 19502 434290 434290.434371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9327941453419 0 \N \N f 0 \N 0 1137820 0 f f \N \N \N \N 434290 \N 0 0 \N \N f \N 2025-03-18 22:58:55.61 f \N \N \N 0 0 0 0 0 0 0 448769 2025-03-22 21:18:07.541 2025-03-29 22:39:51.713 \N A couple of weeks ago I started creating videos about bitcoin lifestyle platforms for SatoshiTV on Youtube. \n\nI did a video about Stacker News: https://youtu.be/V-6eDDHVHO0\n\nI'm still creating more videos about bitcoin lifestyle platforms, so it will mean a lot if you could give me some feedback on areas you feel would need improvement. I'm always open to learning. \n\nAnd if you liked my video on Stacker News it will mean a lot if you could share it. \n\nThanks, guys 🧡 https://example.com/ 21320 448591 448591.448769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7496448878246 0 \N \N f 0 \N 0 236394896 0 f f \N \N \N \N 448591 \N 0 0 \N \N f \N 2025-03-29 15:58:28.303 f \N \N \N 0 0 0 0 0 0 0 443561 2025-03-19 12:18:19.955 2025-03-29 22:39:51.713 \N Thanks for sharing @kr !\n\nThis is something that we at Nunchuk have been working towards for the last few years: collaborative custody platform-as-a-service. Took a while to get here, but so glad we’re finally able to share it with the world.\n\nThe basic idea is that anyone with key management expertise can now start a collaborative custody business for your community/network. Nunchuk provides you with the multisig infrastructure, collaboration/advisory tools, technical manuals, etc. And you take care of the customer service, onboarding, and managing backup keys on behalf of the end users.\n\nCollaborative custody mitigates so many challenges w.r.t. self custody. It can offer education, technical guidance, and robust long-term security. It can elegantly solve the inheritance problem. So we really hope to see this model taking off in the wild.\n\nAnyway, I’m here if anyone has any questions.\n\n https://example.com/ 21599 443528 443528.443561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9723781083266 0 \N \N f 0 \N 0 162073061 0 f f \N \N \N \N 443528 \N 0 0 \N \N f \N 2025-03-26 05:46:44.599 f \N \N \N 0 0 0 0 0 0 0 434261 2025-03-11 17:54:13.367 2025-03-29 22:39:51.714 \N Day 10 of posting mining earnings from the day before: 867 sats!\nRunning total: 8,246 sats!\n\n[Yesterday's comment](https://stacker.news/items/368044/r/WeAreAllSatoshi)\n\n https://example.com/ 21555 433833 433833.434261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.39468490928067 0 \N \N f 0 \N 0 100016324 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 2025-03-19 05:01:27.365 f \N \N \N 0 0 0 0 0 0 0 434171 2025-03-11 16:31:07.257 2025-03-29 22:39:51.714 \N Just show up! Thanks man, have a great holiday. https://example.com/ 17064 433943 433943.434171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.94556017961145 0 \N \N f 0 \N 0 163699342 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 2025-03-18 19:48:43.711 f \N \N \N 0 0 0 0 0 0 0 435076 2025-03-12 12:49:06.417 2025-03-29 22:39:51.715 \N Badass! They listed quickly. https://example.com/ 8985 434953 434317.434688.434895.434953.435076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1337081211926 0 \N \N f 0 \N 0 14959966 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 2025-03-19 06:09:05.261 f \N \N \N 0 0 0 0 0 0 0 435987 2025-03-13 07:47:16.945 2025-03-29 22:39:48.16 Stacker.news desktop ornament If you have a 3d printer here is a free ornament for your desktop:\nhttps://gcdnb.pbrd.co/images/k1vtcO95J3t3.png?o=1\n3d printable file link:\nhttps://www.tinkercad.com/things/jNbgUBJpccF-fabulous-jaagub/edit?sharecode=NfhZUzFwkl1lv9lBMAGnxWgO9-qgRr34pdP4_UtgBNk&sharecode=NfhZUzFwkl1lv9lBMAGnxWgO9-qgRr34pdP4_UtgBNk\n(You can tweak it as you wish with a free Tinkercad account) \N 12562 \N 435987 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 1.4884461749476 0 \N \N f 0 \N 0 224415353 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 14:30:22.22 f \N \N \N 0 0 0 0 0 0 0 448763 2025-03-22 21:05:06.915 2025-03-29 22:39:51.713 \N I wrote almost the same thing here https://gregwhite.blog/decentralization/\n\nDecentralization matters in places where power accumulate and is abused. Not everywhere. https://example.com/ 9099 447645 447418.447565.447645.448763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.376465092383 0 \N \N f 0 \N 0 96173408 0 f f \N \N \N \N 447418 \N 0 0 \N \N f \N 2025-03-29 15:25:55.731 f \N \N \N 0 0 0 0 0 0 0 443365 2025-03-19 09:47:40.434 2025-03-29 22:39:51.713 \N I put on the tin foil hat I keep close at hand and listened to Whitney Webb on TFTC last night. She's convinced that a cyber attack false flag will hit the financial system within the next year, with the purpose of implementing CBDCs and a new user ID/KYC internet. I didn't sleep well. https://example.com/ 10490 443364 443364.443365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3571204414805 0 \N \N f 0 \N 0 6070173 0 f f \N \N \N \N 443364 \N 0 0 \N \N f \N 2025-03-26 03:12:33.548 f \N \N \N 0 0 0 0 0 0 0 435526 2025-03-12 18:57:54.929 2025-03-29 22:39:51.714 \N > Linked to the agency world, and being both a positive and negative, sometimes when paying for a service you’ll find you as the buyer need to chase to get things done. The culture is very different here, to the detriment of speediness. It’s almost like businesses are not motivated by money and believe you are lucky to being served at all, even when paying hefty fees. I guess that’s the “tranqui” way.\n\nThis was my experience when I lived in BsAs and it drove me mad, though I think it was partly the vibe and partly corruption and partly just the collapse of everything (this was in 2004, after the recent bout of currency collapse; there have been many since, as we all know.)\n\nWhat's internet like, where you are? That was another infuriating thing, but then, it was twenty years ago. I assume it's better now.\n\n[Edit] Also: have you ever written about your experiences on SN in a comprehensive way? That would be dynamite. I perused some of your posts, and didn't notice one such, though I didn't read closely. [This](https://stacker.news/items/160597) was a helpful article on Uruguay that you posted, but it would be cool to hear your own story. https://example.com/ 13038 435504 435046.435135.435292.435504.435526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8801239553015 0 \N \N f 0 \N 0 224801970 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 13:09:14.106 f \N \N \N 0 0 0 0 0 0 0 435629 2025-03-12 20:38:09.113 2025-03-29 22:39:51.714 \N Happy Sunday everyone. I came here first before annoying everyone with a beta post for what could be a minor thing. I tried to transfer some sats this morning out of my ln wallet. It's been pending for an hour and a half. Usually my transactions succeed or fail right away. Has anyone had this issue? https://example.com/ 730 435488 435488.435629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9746282497408 0 \N \N f 0 \N 0 50059649 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 04:50:05.789 f \N \N \N 0 0 0 0 0 0 0 436673 2025-03-13 19:20:55.04 2025-03-29 22:39:51.714 \N I've been thinking about increasing territory fee split to 80% of fee revenue and the zap sybil fee to 20%. \n\n https://example.com/ 9261 436612 436612.436673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.85016934502383 0 \N \N f 0 \N 0 132955636 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N 2025-03-20 13:07:41.288 f \N \N \N 0 0 0 0 0 0 0 434622 2025-03-12 04:35:10.617 2025-03-29 22:39:51.714 \N RTM: https://doc.breez.technology/ https://example.com/ 16406 434615 434615.434622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2990493642525 0 \N \N f 0 \N 0 167221996 0 f f \N \N \N \N 434615 \N 0 0 \N \N f \N 2025-03-19 04:44:52.8 f \N \N \N 0 0 0 0 0 0 0 436165 2025-03-13 11:09:38.87 2025-03-29 22:39:51.714 \N I wish anyone here (and in the fiat dream bubble) a wonderful day. We have a stormy day today and the forces of nature are overwhelming... cheers to a good day! https://example.com/ 21709 436147 436147.436165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3156410021048 0 \N \N f 0 \N 0 236143068 0 f f \N \N \N \N 436147 \N 0 0 \N \N f \N 2025-03-20 08:09:08.643 f \N \N \N 0 0 0 0 0 0 0 436467 2025-03-13 15:21:25.244 2025-03-29 22:39:51.715 \N I'll bring up anyone who's smart and makes good points. https://example.com/ 7760 436373 435046.435135.435292.435504.435756.436349.436373.436467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4856279456974 0 \N \N f 0 \N 0 209758215 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 09:56:14.829 f \N \N \N 0 0 0 0 0 0 0 443011 2025-03-19 00:33:33.04 2025-03-29 22:39:48.161 Politicians cannot comprehend _____ Trading without insider information\n\n(_fill in the blank_) \N 1602 \N 443011 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 27.151568440645 0 \N \N f 0 \N 0 55947883 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:00:06.501 f \N \N \N 0 0 0 0 0 0 0 435010 2025-03-12 11:56:41.633 2025-03-29 22:39:48.161 Prose piece | The cold hard truth… You wake with the cold invading your mind & body. The damp clings, sapping the warmth from your core. A reminder the world doesn't play nice; a reminder that there’s an unyielding force at play.\n\nStepping outside, breath condenses, breathe onto cold fingers, warm the joints. A moment of relief. Doesn't last. Do it again. Cloudy sky sits low, oppressive, grey, a concrete ceiling that blocks the sun like a bad decision. It makes you question everything – your choices, your direction, your existence. \n\nBut at least the discomfort is raw. It’s honest. You can’t hide from it; it cuts through the clutter of a comfortable daily life. It strips away the pretense, leaving nothing but the core of who you are. Your coat may be thin but you can walk fast, lean into it, being alive means confronting these elements head on. Surviving.\n\nStep into these moments, it's the anvil that forges the toughest steel. Embrace the cold, embrace the damp, it’s all part of the journey and part of the truth that life is relentless, and often, just plain uncomfortable. \N 17046 \N 435010 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.6262576797694 0 \N \N f 0 \N 0 155566167 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:03:25.262 f \N \N \N 0 0 0 0 0 0 0 435945 2025-03-13 06:14:09.441 2025-03-29 22:39:51.713 \N I hadn't considered the purity angle. Whatever your reasons, they're serving you well. https://example.com/ 1198 435261 435261.435945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7208780093631 0 \N \N f 0 \N 0 241415095 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:36.199 f \N \N \N 0 0 0 0 0 0 0 436287 2025-03-13 12:57:26.448 2025-03-29 22:39:51.713 \N I wonder what he will do with all that capital 🤔 hmmmm, what a tough one https://example.com/ 20972 436208 435905.436208.436287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7585287458448 0 \N \N f 0 \N 0 73000203 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 2025-03-20 06:45:53.312 f \N \N \N 0 0 0 0 0 0 0 443059 2025-03-19 01:52:10.564 2025-03-29 22:39:51.713 \N @grayruby s survivor pool series. It was an absolute blast. Not one individual post but the sheer work with daily content, weekly pick'ems and the survivor pool. GR deserves some recognition. https://example.com/ 21139 441843 441843.443059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9985209344829 0 \N \N f 0 \N 0 34159415 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 2025-03-26 04:25:10.967 f \N \N \N 0 0 0 0 0 0 0 447960 2025-03-22 10:02:54.622 2025-03-29 22:39:51.713 \N ![meme](https://i.redd.it/berzt5tf6du11.jpg) https://example.com/ 18174 447715 447715.447960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.01779506033411 0 \N \N f 0 \N 0 212681433 0 f f \N \N \N \N 447715 \N 0 0 \N \N f \N 2025-03-29 20:20:51.691 f \N \N \N 0 0 0 0 0 0 0 434863 2025-03-12 09:49:11.629 2025-03-29 22:39:51.713 \N I feel a little bad for taking sats out of my SN wallet for Mullvad, but paying for VPN with lightning from SN just feels appropriate! https://example.com/ 20306 434824 434795.434801.434824.434863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.46304439162 0 \N \N f 0 \N 0 141697646 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 05:59:46.637 f \N \N \N 0 0 0 0 0 0 0 436317 2025-03-13 13:17:08.63 2025-03-29 22:39:48.162 Unpopular Opinion: I stopped liking Jordon B. Peterson I don't think his general ideas or intentions are wrong or bad. \n\nBut - I'm starting to see his action of castigating **ENTIRE** subjects in the social sciences and liberal arts as beyond his critique and I wonder if he borders into contributing to cultural divisiveness. If you could stand to extrapolate that sort of speech and tone of his rhetoric, we start to enter militant and oppressive communication. How far is that from actually punishing professors in the public square?\n\nWhat about his professional ties to social science and liberal arts? He is like many psychologists who use the notion of archetypes to classify ideal human behavior. Which is to say, he essentially cherry picks ideas of the "great virtues" of "humanity"[^1] based on his interpretation of the canon of Western Civilization. \n\nThat is not far off base from what postmodern thought actually argues for individuals to do on a subjective basis, but to do so without acknowledging that perspective reinforces a narrative that is the basis of postmodern critique[^2] - that other people have lived in the world and have their own experiences that have been drowned out by the colonizer, the oppressor, the barbarian who takes it all.\n\nWhat do you think?\n\n[^1]: I put humanity in quotes not to degrade our species but to emphasize that these are all just stories that we use to create the narrative of our species and from those stories, we create directions for ourselves and others about what is "right action" so we can define virtuous action. Generally, the narratives, the stories that actually survive ("the classics" if you will) say something pretty potent. But the use of those narratives (by someone with an agenda) to direct the actions of others, arguably the basis of civilization, can get a little slippery. \n\n[^2]: My best reference point for when this really starts is when anthropologists started recognizing that they were not inherently morally superior to the people they studied. \n \N 17817 \N 436317 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.69793989578849 0 \N \N f 0 \N 0 117898892 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 07:06:46.953 f \N \N \N 0 0 0 0 0 0 0 445505 2025-03-20 15:52:25.338 2025-03-29 22:39:48.162 Mutiny and fedimint I saw that mutiny no longer lists federations and you need to manually discover them if you want to add one.\nI know that some time ago there was a problem with their freedom one mint so maybe this is related.\n\nMy question is how do you really discover federations? I know about https://bitcoinmints.com/, but there is almost no information about each mint. Who runs it? How many guardians does it have? How long has it been up? Discussion about is it reliable and trustworthy? I also can't really find anywhere anyone discussing individual federations. Is there such a place?\n\nI know that you are supposed to personally know the guardians, but is this really the common use case today? \N 21357 \N 445505 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 27.9977056297116 0 \N \N f 0 \N 0 163562729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:29:23.54 f \N \N \N 0 0 0 0 0 0 0 436062 2025-03-13 09:29:25.634 2025-03-29 22:39:48.162 Which territories will not survive next month? And next year? Has been interesting to see so many territories popping up in the past few months, some brave ones are still trying, but honestly, I cannot see how a territory could be sustainable, imagine it being profitable... atm is utopia!\n\nJust for fun, which territories you think will be the ones being kicked out (not renewed) next month? And what about the ones out next year?\n\nHere the list of current active territories in alphabetical order:\n\n~AGORA\n~AI\n~alter_native\n~AMA\n~antifragile\n~art\n~B2B\n~bitcoin_beginners\n~bitdevs\n~BooksAndArticles\n~builders\n~charts\n~conspiracy\n~Construction_and_Engineering\n~crypto\n~culture\n~Design\n~devs\n~DIY\n~Dogs_And_Cats\n~earth\n~econ\n~Education\n~Entertainment\n~FiresidePhilosophy\n~food\n~gaming\n~health\n~history\n~ideasfromtheedge\n~libertarian\n~lightning\n~lol\n~mempool\n~mostly_harmless\n~Music\n~news\n~NixOS\n~openagents\n~opensource\n~oracle\n~Ordinals_Inscriptions_Runes\n~Outdoors\n~Personal_Finance\n~Photography\n~podcasts\n~privacy\n~science\n~security\n~Stacker_Sports\n~stocks\n~UFOs\n~Warhammer\n\nMention yours below\n\nPS: opinion from territory founders does not count, but your experience and feedback definitely appreciated! Hopefully it will help new coming founders like me better understand the risks of funding and maintain a territory.\n\n@AGORA @antic @AtlantisPleb @BenAllenG @benwehrman @birdeye21 @Bit_Chef @BitcoinOutdoors @bitcoinplebdev @boisechampion @Book_It @ch0k1 @davidw @DesertDave @Design_r @ek @elvismercury @frostdragon @globalmerchantio @grayruby @itsTomekK @jeff @kr @lloyddunne @MadBudha @MaxAWebster @MerryOscar @niftynei @OneOneSeven @oracle @PlebLab @Public_N_M_E @RDClark @siggy47 @softsimon @south_korea_ln @theschoolofbitcoin @TheWildHustle @TNStacker @TonyGiorgio @UCantDoThatDotNet \N 11678 \N 436062 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 1.79655928660811 0 \N \N f 0 \N 0 108479266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:04:11.07 f \N \N \N 0 0 0 0 0 0 0 434872 2025-03-12 09:57:35.401 2025-03-29 22:39:51.713 \N For one, all it takes is a node operator's channel partners to report balance and then in effect, their balances are out there in the open too.\n\nFor two, it's quite obvious a large payment flowing through the network. If there's just a few nodes in a route where the data is not being publicized, there's still enough assumptions about the route that could take place. Plenty of academic research into correlating payments across the network.\n\nIt eventually gets into the aspect of anonymity sets and length of hops, which is getting worse and worse as the network becomes bigger (there's papers on that too). In the end, chain analytics and triple letter agencies sees who is paying who. What Amboss is doing right now is how we get to that point. https://example.com/ 2065 434867 434827.434867.434872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.76552250671 0 \N \N f 0 \N 0 16619433 0 f f \N \N \N \N 434827 \N 0 0 \N \N f \N 2025-03-19 03:17:08.837 f \N \N \N 0 0 0 0 0 0 0 435393 2025-03-12 16:42:11.048 2025-03-29 22:39:51.714 \N Interesting read, but isn't the word "scam" a bit exaggerated? \n\nIt's one thing to say that Bluesky is not open and decentralized enough (for now), it's another to claim it's a fraud. And if you do, you may as well call "scam" most apps and services launched on the Net for 20 years. https://example.com/ 18101 435364 435314.435355.435364.435393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74486626854289 0 \N \N f 0 \N 0 194359862 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:39.865 f \N \N \N 0 0 0 0 0 0 0 435546 2025-03-12 19:17:05.665 2025-03-29 22:39:51.714 \N stand mixer\n\nit has changed the game for cooking_ from mashed potatoes to baked goods, the stand mixer. was always a hand mixer maxi but the handsfree aspect of the stand mixer is *chefs kiss* https://example.com/ 17944 435314 435314.435546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0461340289894 0 \N \N f 0 \N 0 110598377 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:37.919 f \N \N \N 0 0 0 0 0 0 0 434713 2025-03-12 07:23:04.153 2025-03-29 22:39:51.714 \N Wow! It will take me a while to get through this, but from what I have seen by just skimming it will be worth it. Thanks for all your work putting this together. https://example.com/ 21482 430498 430498.434713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.50543109276604 0 \N \N f 0 \N 0 97999714 0 f f \N \N \N \N 430498 \N 0 0 \N \N f \N 2025-03-19 08:54:02.671 f \N \N \N 0 0 0 0 0 0 0 435830 2025-03-13 02:21:16.016 2025-03-29 22:39:51.714 \N I'm learning to handle grief. \n\nMy brother committed suicide yesterday which was on the one year anniversary of his wife doing the same. Both had their struggles. \n\nYou sort of just assume that friends and family roughly your age will be around and grow old along side of you. Sadly, it's not always the case.\n\nI've just discharged myself from rehab at day 21 of a 28 day rehab for heroin addiction. I left early because my wife was involved in a significant car accident. She's still in intensive care with burns and broken limbs. But let's be real - 21 days was more of a detox than a rehab. If I'm being honest, I probably need 60 to 90 days in there. Clearly unable to do that right now.\n\nTwo months ago if this had happened I'd have put a syringe in my arm and had a shot to forget about this. God knows I'm stinging to do that right now too. But that's the temporary and easy way out of life. Life is hard.\n\nPlease. For your sake, and your loved ones, if things start getting rough for you don't be afraid to reach out and talk to someone - anyone - about what's going on for you. I'm assuming most people here identify as male. It's not a sign of weakness.\n\nPutting your hand up and saying you need support is a sign of strength. \n\nSo yeah - dealing with grief. That's what I'm learning today. https://example.com/ 15213 429291 429291.435830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5415739657465 0 \N \N f 0 \N 0 185381483 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 2025-03-19 20:26:57.866 f \N \N \N 0 0 0 0 0 0 0 434763 2025-03-12 08:13:53.022 2025-03-29 22:39:51.714 \N Do you think the state is a problem? \n\nIf not, what's your favorite way to comply with the state?\n\nIf yes, how does one solve this problem? https://example.com/ 797 429291 429291.434763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.80030322691599 0 \N \N f 0 \N 0 226265117 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 2025-03-19 02:27:54.361 f \N \N \N 0 0 0 0 0 0 0 435729 2025-03-12 22:47:23.929 2025-03-29 22:39:51.714 \N Don't look for inspiration, become the inspiration https://example.com/ 3990 435710 435497.435505.435710.435729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9940884510447 0 \N \N f 0 \N 0 150762964 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 2025-03-19 16:18:17.047 f \N \N \N 0 0 0 0 0 0 0 434714 2025-03-12 07:24:25.599 2025-03-29 22:39:51.714 \N I'm not at all surprised. https://example.com/ 16929 433835 433555.433835.434714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.124702146051874 0 \N \N f 0 \N 0 91180822 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 03:43:49.789 f \N \N \N 0 0 0 0 0 0 0 435353 2025-03-12 16:02:30.939 2025-03-29 22:39:51.714 \N Sweet, you guys should add keysend as an option, a lot of people don't have a lightning address but have a node that can be keysent https://example.com/ 6594 435295 435217.435275.435277.435295.435353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89893567827837 0 \N \N f 0 \N 0 94602733 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 12:47:23.774 f \N \N \N 0 0 0 0 0 0 0 435310 2025-03-12 15:33:56.428 2025-03-29 22:39:51.714 \N Go with Zeus + Umbrel. If Tailscale is giving you troubles, try out Lightning Node Connect (LNC). Install the Lightning Terminal app in your Umbrel, fire up the app, and connect Zeus to it with LNC. Running your own lightning node to use lightning is the true self sovereign way. You do have to manage channels and inbound/outbound liquidity by running your node though.\n\nIf you don’t want to manage channels and channel liquidity; like many others said in their replies, Phoenix is a good option. https://example.com/ 20454 435046 435046.435310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.53285564033266 0 \N \N f 0 \N 0 46828563 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:01:18.411 f \N \N \N 0 0 0 0 0 0 0 433849 2025-03-11 12:57:45.061 2025-03-29 22:39:51.714 \N Reminder to do multisignature at least.\nThis news are very bad. And Sweden seems going down the wrong hole. A lot of violence news from there recently :/ https://example.com/ 1468 433833 433833.433849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.248474110957666 0 \N \N f 0 \N 0 113829548 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 2025-03-18 17:04:30.237 f \N \N \N 0 0 0 0 0 0 0 437845 2025-03-14 23:32:58.673 2025-03-29 22:39:51.714 \N It takes a while sometimes for the community to develop a "taste" for what you do. Many of us who are now pretty successful (in terms of getting zaps) were once pretty unsuccessful. Keep at it. https://example.com/ 17976 427527 427527.437845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5613680611991 0 \N \N f 0 \N 0 85056142 0 f f \N \N \N \N 427527 \N 0 0 \N \N f \N 2025-03-26 05:23:03.131 f \N \N \N 0 0 0 0 0 0 0 435421 2025-03-12 17:02:45.979 2025-03-29 22:39:51.714 \N One of the most nefarious elements of finger on the scale central planning is it inherently favours businesses of scale that can borrow and crush competition essentially free capital, and decimates small businesses that can't afford to compete with the juggernauts that sit next to the printer. https://example.com/ 7818 435405 435314.435355.435404.435405.435421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4306716932074 0 \N \N f 0 \N 0 91637488 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:38.12 f \N \N \N 0 0 0 0 0 0 0 443091 2025-03-19 03:22:22.01 2025-03-29 22:39:51.714 \N > only it leaves mints in a very tenuous legal position\n\nThat's not a good reason to pretend they are something else. You don't get to make up new definitions just because you don't like the legal consequences of the correct definition.\n\n> and hides the fact that you do have some power that traditional custody doesn't afford to you\n\nThen it's "enhanced" custody...but still custody. Imagine if every custodian who added some new feature declared that they weren't a custodian anymore because "traditional custodians don't have feature X!" It would be ridiculous. If you still have user funds, you're a custodian, and just because ecash mints have some cool features does not make them non-custodial.\n\nWhile I'm here I'd like to comment on a few sentences from your opening post:\n\n> Most people in the Bitcoin world understand custody to mean that someone else holds the keys to your bitcoin and all you have is an account balance\n\nI think it's just the first part, before the word "and." Being custodial has nothing to do with how they represent their relationship to you in their database. For example, the website acceptln.com is a custodial website that does not have accounts. Instead, you "deposit" sats without logging in and it automatically emails a "voucher" for that deposit to whoever you want it to go to. They email that person a link where they can claim the sats. Here, the depositor never has an account, but it's still obviously custodial -- acceptln has the money. What makes you a custodian is whether you have the keys, not whether you give your depositors an account or not.\n\n> [mints] are fundamentally different from this common conception of custody because users do not have accounts with the mint\n\nThat does not matter. The mint holds user deposits and redeems them when bearer tokens are submitted to them. I like the analogy of a money order. If I go to my local walmart I can purchase a money order from them which is essentially a check drawn on walmart's account. I need no account of any kind to do this. I can then mail this money order to anyone and if they go to their own local walmart, or walmart's bank, they can redeem it, because it's walmart's check. Ecash tokens are a lot like that. But it's clearly custodial. I give my money to w̶a̶l̶m̶a̶r̶t̶ the mint, they keep it but give me an IOU for the same amount (minus a fee), I can give that to anyone I want, and they can redeem it without an account. But since w̶a̶l̶m̶a̶r̶t̶ the mint has my deposit the whole time, w̶a̶l̶m̶a̶r̶t̶ the mint is the custodian.\n\n> users are able to trade their ecash tokens with anyone they wish without the mint's knowledge or permission.\n\nNot if the mint doesn't want you to. The problem is the melt/swap operation. If you send someone your IOU and the recipient doesn't swap or melt it at the mint, the IOU is double spendable -- you can give it to someone else or redeem it yourself. The recipient hasn't really "received" anything of value if it's still fully spendable by whoever they got it from. Therefore, ecash recipients *have* to swap or melt their tokens in order to safely consider them "received." And that means the whole system is permissioned, because the mint is under no obligation to *issue* IOUs for anyone and they are under no obligation to *redeem* them for anyone. They can refuse, or do shotgun KYC, or suddenly raise their fees, or do whatever they want, at any step of the process. They can suddenly start doing this at the time of issuance or at the time of redemption or anywhere in between. They hold the money so it is in fact a permissioned system. Which is just another indicator that it really is a custodial relationship, regardless of whether users have accounts or not. https://example.com/ 7125 443058 443058.443091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83298045314641 0 \N \N f 0 \N 0 123549158 0 f f \N \N \N \N 443058 \N 0 0 \N \N f \N 2025-03-26 04:24:47.916 f \N \N \N 0 0 0 0 0 0 0 436227 2025-03-13 11:52:35.411 2025-03-29 22:39:48.162 How long will US outperformance continue? Over the last 16 years, US stocks have gained 407% vs. 85% for International stocks and 38% for Emerging Markets. This is the longest cycle of US outperformance that we’ve ever seen.\n\nI think this is due to monetary policy of the US Dollar and us controlling and impacting the market as a back stop! Too big to fail! What do you think?\n\nThe world sees this and is joining the trade. The crash could be historic!\n\n\n\n![IMG_9312.png](https://m.stacker.news/13945) \N 1726 \N 436227 \N \N \N \N \N \N \N \N security \N ACTIVE \N 14.1023769095682 0 \N \N f 0 \N 0 217352291 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 07:36:47.384 f \N \N \N 0 0 0 0 0 0 0 435647 2025-03-12 21:01:10.537 2025-03-29 22:39:51.714 \N I owned the spac but sold shortly after the merger to buy more bitcoin. I hadn't looked at it in awhile before seeing your post. \n\nQuick analysis. Very interesting company and for a tech company their price to sales is not bad at all. They are losing money but looks like they are on a path to profitability. \n\nNot a bad speculative bet. https://example.com/ 15978 435579 435579.435647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6082619071834 0 \N \N f 0 \N 0 75011956 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 2025-03-19 16:31:28.252 f \N \N \N 0 0 0 0 0 0 0 436671 2025-03-13 19:19:56.626 2025-03-29 22:39:51.714 \N The revolutions are piling up @k00b. You can't squash all of them. https://example.com/ 16097 432920 432920.436671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2583890525886 0 \N \N f 0 \N 0 126875630 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-20 12:47:28.58 f \N \N \N 0 0 0 0 0 0 0 434292 2025-03-11 19:03:24.004 2025-03-29 22:39:51.714 \N Without a doubt [Brant Lake Wagyu](https://twitter.com/BrantLakeWagyu). https://example.com/ 15536 433828 433828.434292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2881432027661 0 \N \N f 0 \N 0 159033790 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-20 06:37:58.093 f \N \N \N 0 0 0 0 0 0 0 443641 2025-03-19 12:48:06.196 2025-03-29 22:39:48.163 Nostr looks like it's becoming a thing... I'm playing around with Nostr and thought I'd include a list of follows. Feel free to add to the list;\n\n* Jack Dorsey - 82341f882b6eabcd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2\n* Fiattjiaf (Creator of the Nostr protocol) - 3bf0c63fcb93463407af97a5e5ee64fa883d107ef9e558472c4eb9aaaefa459d\n* JB55 (Collaborater on the protocol) - 32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245\n* Preston Pysh - 85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204\n* Carla (of the cryptocouple) - npub1hu3hdctm5nkzd8gslnyedfr5ddz3z547jqcl5j88g4fame2jd08qh6h8nh \N 21824 \N 443641 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.3550769719978 0 \N \N f 0 \N 0 17190337 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:05:26.981 f \N \N \N 0 0 0 0 0 0 0 436003 2025-03-13 08:05:34.035 2025-03-29 22:39:51.715 \N Did you already hear about our upcoming Alby Hub? Our upcoming, fully self-sovereign wallet. The lightning wallet build for the web that makes it easy to use all the bitcoin lightning apps anywhere anytime. \nWith that we'll also have a mobile wallet soon! https://example.com/ 16456 435979 435944.435979.436003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9163178882951 0 \N \N f 0 \N 0 223252437 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 01:38:51.21 f \N \N \N 0 0 0 0 0 0 0 436642 2025-03-13 18:37:25.792 2025-03-29 22:39:51.715 \N ZK-Rollups cannot be implemented in without a hardfork since Miners would have to verify a zero-knowledge proof and miners do not do this in Bitcoin. Bitcoin does have Hash-preimage verification since the very beginning - one could imagine a distributed hash & hash-preimage generation but there is no such algorithm to my knowledge. If there was it would require new and complicated cryptography or a trusted dealer - which both isn't in the spirit of Bitcoin.\n\nOptimistic Rollups are not possible on Bitcoin since they require to undo a transaction in case any party challenges the result. They would also require miners to verify the rollup when someone challenges the result which miners do not do in Bitcoin.\n\nI don't think any of this is a good idea. Rollups always end up with so much chaos that it isn't in the spirit of Bitcoin. And if a construction requires a trusted dealers or a trusted group of participants - why bother with it in the first place - just do it in a SQL database and write the result on the Blockchain. https://example.com/ 8168 436330 436258.436330.436642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2231221273498 0 \N \N f 0 \N 0 249013151 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 2025-03-20 11:56:58.736 f \N \N \N 0 0 0 0 0 0 0 443645 2025-03-19 12:48:56.968 2025-03-29 22:39:51.716 \N Bolt.Fun looks like an interesting platform, what is your vision for what you want the site to become over time? https://example.com/ 1044 443583 443583.443645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4226503030154 0 \N \N f 0 \N 0 16876621 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 2025-03-26 06:40:04.869 f \N \N \N 0 0 0 0 0 0 0 436650 2025-03-13 18:46:40.672 2025-03-29 22:39:51.714 \N Haha, jesus, where was she when I wasn't worried about getting fired. Need to pull from deep reserves for the final part! https://example.com/ 1983 436634 436218.436600.436630.436634.436650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.89582610302769 0 \N \N f 0 \N 0 143197313 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N 2025-03-20 12:20:21.11 f \N \N \N 0 0 0 0 0 0 0 436188 2025-03-13 11:24:20.77 2025-03-29 22:39:51.715 \N That is what he means and it's also why this is a bad idea. https://example.com/ 19952 436186 436163.436175.436186.436188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.02005214815875 0 \N \N f 0 \N 0 176270325 0 f f \N \N \N \N 436163 \N 0 0 \N \N f \N 2025-03-20 04:42:07.853 f \N \N \N 0 0 0 0 0 0 0 436237 2025-03-13 12:11:37.885 2025-03-29 22:39:51.714 \N have you considered being a market maker for joinmarket coinjoins? https://example.com/ 7682 436231 436231.436237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8410714415701 0 \N \N f 0 \N 0 154365392 0 f f \N \N \N \N 436231 \N 0 0 \N \N f \N 2025-03-20 05:45:44.978 f \N \N \N 0 0 0 0 0 0 0 445589 2025-03-20 16:33:35.763 2025-03-29 22:39:51.715 \N That's so awesome. I think it can be great medicine for a time. I started in 2017, also, funny. And to be honest, since I wrote that post I have had a few backslides. I had been on and off again. And also, about 2 weeks ago, I said I am done for real this time. And part my reasoning has to do with being ready to have a baby, even though I am the male, I think my smoking was holding us back. I am so grateful for cannabis. I think it served me well when I was in a certain stage of my life. And it feels so good to be free from it for real. I feel excited about life again. It's amazing. Thank you so much for sharing. We seem to have some kind of parallel experience around this topic. https://example.com/ 1008 444755 444755.445589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5048899968431 0 \N \N f 0 \N 0 125441276 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 2025-03-29 08:44:44.736 f \N \N \N 0 0 0 0 0 0 0 434245 2025-03-11 17:34:48.116 2025-03-29 22:39:51.715 \N Depends on why you don't want to leak your IP address.\n\nMost of the times, people overestimate what can be done with an IP address. https://example.com/ 15624 434177 433844.434177.434245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1359703389131 0 \N \N f 0 \N 0 85466892 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 2025-03-19 09:24:59.298 f \N \N \N 0 0 0 0 0 0 0 446983 2025-03-21 14:59:13.855 2025-03-29 22:39:51.716 \N I will pay you 3000 sats if you draw me a picture of @DarthCoin doing a force choke on SBF. https://example.com/ 16145 446954 446954.446983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23354686916167 0 \N \N f 0 \N 0 41897562 0 f f \N \N \N \N 446954 \N 0 0 \N \N f \N 2025-03-28 11:51:55.183 f \N \N \N 0 0 0 0 0 0 0 435643 2025-03-12 20:57:55.141 2025-03-29 22:39:48.163 Are you aware that you're getting older? I'm in my mid 40's, I do exercise twice a week and walk my dog almost every day.\n\nBut, every now and then I see some signs of my age... Just to share some silly examples, when sitting in a sofa or tying my shoelaces I make a weird sound...my ability to stay focused on a specific thing is getting worse.\n\n**Have you noticed something similar** or any sign that you are getting older? \N 1425 \N 435643 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 18.2260720908464 0 \N \N f 0 \N 0 125069740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:33:41.542 f \N \N \N 0 0 0 0 0 0 0 447252 2025-03-21 18:14:51.659 2025-03-29 22:39:48.163 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/401734) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 5085 \N 447252 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 1.92782739760005 0 \N \N f 0 \N 0 75379493 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:11:29.363 f \N \N \N 0 0 0 0 0 0 0 443768 2025-03-19 14:05:16.678 2025-03-29 22:39:51.715 \N That company is so compromised and/or inept. From another [tweet](https://twitter.com/MatthewLilley/status/1735285684070461534):\n1. They are loading Javascript from a CDN (Content Delivery Network).\n2. They are not version-locking loaded Javascript.\n3. They had their CDN compromised.\n\nELI5 version:\n![Ledger - explain it like I'm 5 version](https://m.stacker.news/8054) https://example.com/ 3456 443545 443545.443768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.872244281408 0 \N \N f 0 \N 0 190469618 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 2025-03-26 07:29:27.079 f \N \N \N 0 0 0 0 0 0 0 443192 2025-03-19 06:32:11.265 2025-03-29 22:39:51.715 \N I read the book. Very entertaining:\nhttps://www.goodreads.com/book/show/30687200-the-stranger-in-the-woods https://example.com/ 9242 443178 443178.443192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.79509126295741 0 \N \N f 0 \N 0 180976506 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N 2025-03-26 05:43:20.391 f \N \N \N 0 0 0 0 0 0 0 434580 2025-03-12 03:28:43.443 2025-03-29 22:39:51.715 \N Thanks for all of your work in Bitcoin and Lightning and taking time for an AMA. Throughout all of your research and work in this space, and assuming Bitcoin continues its adoption trends... is there any reason you believe Lightning will not be the future payments layer of the world? Or any reason Lightning will fail/not become adopted/etc? https://example.com/ 21021 434578 434535.434578.434580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.85640113443004 0 \N \N f 0 \N 0 142194657 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 2025-03-18 21:59:15.68 f \N \N \N 0 0 0 0 0 0 0 434313 2025-03-11 19:25:33.174 2025-03-29 22:39:51.715 \N Witness the future https://example.com/ 14651 434290 434290.434313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8873446087715 0 \N \N f 0 \N 0 153677641 0 f f \N \N \N \N 434290 \N 0 0 \N \N f \N 2025-03-18 22:21:43.693 f \N \N \N 0 0 0 0 0 0 0 436449 2025-03-13 15:07:30.102 2025-03-29 22:39:51.715 \N Two things:\n1. Great AMA!\n2. I'm a big braciole and spedini fan. https://example.com/ 1236 436028 436028.436449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5061407758953 0 \N \N f 529309517 \N 3 13968948 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 10:00:32.971 f \N \N \N 0 0 0 0 2 0 0 434609 2025-03-12 04:11:55.058 2025-03-29 22:39:51.715 \N Thanks for the kind words!\n\nEven though I know we shouldn't care too much about the person behind words, I do know that bitcoin development is a meritocracy and thus you saying this about me does indeed mean a lot to me, haha\n\nI've been looking for my spot in the bitcoin space where I can contribute the most according to my skills ever since I fell down the rabbit hole early 2021. What's funny is that yet; I initially turned down the offer from @k00b to join SN in March.\n\nI didn't want to leave my current position so soon since there were some important changes happening regarding the stuff I was working on. I said I would take a break from studying during the upcoming winter term and then join SN for 6 months in October as an intern. It sounded too risky to me to join immediately, leave my old position and not look back.\n\nBut then I realized the chance I am passing up on and that this was what I was waiting for the whole time and fortunately, @k00b didn't find someone else already when I approached him a week after our first call. I wanted to work on open source, bitcoin and disruption of social media for a long time and SN sounds like the perfect fit :) https://example.com/ 1438 434488 434488.434609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.22869624402259 0 \N \N f 12144351 \N 1 85069174 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 2025-03-19 03:58:27.113 f \N \N \N 0 0 0 0 1 0 0 432982 2025-03-10 18:05:49.612 2025-03-29 22:39:48.163 Sunday Survey: At what BTC price will you have FU money? \N \N 16154 \N 432982 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 5.91792983766904 0 \N \N f 0 \N 0 203102630 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:34:41.387 f \N \N \N 0 0 0 0 0 0 0 436240 2025-03-13 12:13:54.793 2025-03-29 22:39:48.164 Adam Back's complete email history with Satoshi Nakamato from 2008 A 5 email historical exchange between Back and Nakamoto was entered into the court records of the COPA vs CSW case today. Pete Rizzo's twitter thread has all 5 emails pictured and some commentary from him.\n\nThe first email was sent by Nakamoto to Back on August 20, 2008, checking he had the citation to Back's hashcash paper right and giving a brief précis of his own forthcoming paper and a link to a pre-release draft. \n\nAugust 21 : Adam replies, and suggests Nakamoto look at Wei Dei's paper on B-money.\n\nNakamoto writes back, saying he wasn't aware of Wei Dei's paper. After having now looked at it he says : "Thanks, I wasn't aware of the b-money page, but my ideas start from exactly that point." (Satoshi will go on to add this paper to his citations in Bitcoin's white paper.)\n\nAdam writes back a second time, saying that he still hasn't looked at Satoshi's draft but suggests another paper he might like to look at, "by Rivest et al called micromint".\n\nOctober 1st, 2008 : Nakamoto writes to Back for the final time, thanking him again and announcing the release of the first public implementation of Bitcoin (v0.1). He quotes an overview of the project by Hal Finney from a discussion on the Cryptography mailing list.\n\nThe exchange stops there, as Back doesn't reply further and quoting Rizzo "According to Adam's public statements, he wouldn't look at Bitcoin again until late 2012." https://twitter.com/pete_rizzo_/status/1760718737286537526 12516 \N 436240 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 4.12218433424833 0 \N \N f 0 \N 0 135285672 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:16:26.342 f \N \N \N 0 0 0 0 0 0 0 447305 2025-03-21 18:59:33.099 2025-03-29 22:39:51.715 \N That's a good point. Energy is quite volatile and has a ripple effect through the economy https://example.com/ 2111 447291 447148.447239.447242.447282.447286.447291.447305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.61647787695519 0 \N \N f 0 \N 0 194844795 0 f f \N \N \N \N 447148 \N 0 0 \N \N f \N 2025-03-28 12:21:30.989 f \N \N \N 0 0 0 0 0 0 0 435871 2025-03-13 03:45:21.138 2025-03-29 22:39:51.715 \N update your iOS/MacOS if you have them and havent yet\n\nsee @BitcoinIsTheFuture's [post](https://stacker.news/items/247956/r/birdeye21) https://example.com/ 21734 435798 435798.435871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3709543195334 0 \N \N f 0 \N 0 38596689 0 f f \N \N \N \N 435798 \N 0 0 \N \N f \N 2025-03-19 22:53:12.783 f \N \N \N 0 0 0 0 0 0 0 448725 2025-03-22 20:18:05.227 2025-03-29 22:39:51.715 \N Day 225 of snailposting everyday 'til BTC hits $100k.\n\n...and 25 push-up(s).\n\n__@_'-' https://example.com/ 1244 448512 448512.448725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0430683834601 0 \N \N f 0 \N 0 40050874 0 f f \N \N \N \N 448512 \N 0 0 \N \N f \N 2025-03-29 15:29:53.688 f \N \N \N 0 0 0 0 0 0 0 436087 2025-03-13 10:01:23.475 2025-03-29 22:39:51.716 \N would be cool to see this ran again, a lot of changes have happened to all the implementations since then https://example.com/ 21048 435971 435944.435967.435971.436087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.740102220636 0 \N \N f 0 \N 0 217462771 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 04:02:38.277 f \N \N \N 0 0 0 0 0 0 0 253077 2024-10-01 19:14:59.494 2025-03-29 22:39:48.164 Geyser new feature: "Ambassadors" spread the word about valuable initiatives Hey SN friends!\n\nWe built a fun and exciting little thing: Ambassadors. \n\nAmbassadors play an essential role in the Bitcoin ecosystem: they spread the word about valuable Geyser initiatives. \n\nWe finally gave them the recognition they deserve on the leaderboards whenever someone contributes through their "hero link".\n\nWhat do you think? Dope right? The kind of thing you can only/easily do on Lightning ;)\n\nAnnouncement: https://x.com/geyserfund/status/1859654651148370219 \N 10554 \N 253077 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 8.01708309555977 0 \N \N f 0 \N 0 242870954 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 05:24:37.431 f \N \N \N 0 0 0 0 0 0 0 436264 2025-03-13 12:29:47.139 2025-03-29 22:39:48.164 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 987 \N 436264 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 18.8054723778765 0 \N \N f 0 \N 0 16269500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:28:36.039 f \N \N \N 0 0 0 0 0 0 0 435169 2025-03-12 14:05:53.72 2025-03-29 22:39:51.715 \N It has been co-opted by authoritarians, but it used to be liberal as in liberty. They call us "Classical liberals" now or Libertarians. https://example.com/ 20816 435014 435014.435169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4687900725539 0 \N \N f 0 \N 0 205743124 0 f f \N \N \N \N 435014 \N 0 0 \N \N f \N 2025-03-19 08:10:28.238 f \N \N \N 0 0 0 0 0 0 0 419511 2025-02-27 21:24:39.637 2025-03-29 22:39:51.715 \N That Bitcoin alone will solve all evils for our economic system. The truth is that bitcoin is an excellent tool, that if put to good use on the right places, will help us move in the right direction. But us as society will be the ones who will have to walk the walk. https://example.com/ 21768 402899 402899.419511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.37470336040727 0 \N \N f 0 \N 0 50386973 0 f f \N \N \N \N 402899 \N 0 0 \N \N f \N 2025-03-20 03:16:47.304 f \N \N \N 0 0 0 0 0 0 0 434300 2025-03-11 19:13:04.33 2025-03-29 22:39:51.716 \N ![](https://www.zapread.com/i/9Co) https://example.com/ 3347 433878 433878.434300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0049016035361 0 \N \N f 0 \N 0 201687260 0 f f \N \N \N \N 433878 \N 0 0 \N \N f \N 2025-03-18 19:48:13.574 f \N \N \N 0 0 0 0 0 0 0 448141 2025-03-22 12:36:42.482 2025-03-29 22:39:48.16 What sub should Stacker News add next? Right now we've got ~bitcoin, ~nostr, and ~jobs.\n\nWhat sub would you like to see Stacker News add next?\n\nBonus sats for an explaining why your sub suggestion is a good idea. \N 826 \N 448141 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.58290558333207 0 \N \N f 0 \N 0 203341699 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:30:09.795 f \N \N \N 0 0 0 0 0 0 0 436158 2025-03-13 11:02:15.01 2025-03-29 22:39:48.16 Lava | Unlock Financial Freedom \N https://lava.xyz 16978 \N 436158 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 24.1275183940459 0 \N \N f 0 \N 0 95968859 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:11:27.477 f \N \N \N 0 0 0 0 0 0 0 447311 2025-03-21 19:11:08.46 2025-03-29 22:39:48.164 Umbrel is getting into hardware Looks like Umbrel has ventured out into providing some hardware for its OS.\nhttps://www.youtube.com/watch?v=gIcddM6YFug\n\nNot sure what to make of it. Whenever a software company starts making hardware without any prior experience, it could end badly. \n\nThe claims are quite impressive, but so is the price tag (600+ eur):\nWe built Umbrel Home from scratch to address all the Raspberry Pi-based home server limitations, and surpassed them in all aspects: up to 3x faster CPU, 6.5x SSD speeds, 2x more RAM, and an even smaller form-factor. No more corrupted microSD cards, and no manual assembly or setup required.\n\n\n\n \N 11716 \N 447311 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 13.2464819337396 0 \N \N f 0 \N 0 229336928 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:31:54.379 f \N \N \N 0 0 0 0 0 0 0 435858 2025-03-13 03:21:50.162 2025-03-29 22:39:51.715 \N ![](https://www.zapread.com/i/--v) https://example.com/ 5779 434318 434278.434318.435858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.13582735754669 0 \N \N f 0 \N 0 56997893 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-20 02:06:10.731 f \N \N \N 0 0 0 0 0 0 0 436018 2025-03-13 08:29:49.893 2025-03-29 22:39:51.715 \N sir have u been hit on the head https://example.com/ 15243 436012 435944.435979.436012.436018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5229548492592 0 \N \N f 0 \N 0 8325469 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 04:06:09.805 f \N \N \N 0 0 0 0 0 0 0 436230 2025-03-13 12:04:20.8 2025-03-29 22:39:51.716 \N - hopefully finally finishing [image uploads](https://github.com/stackernews/stacker.news/pull/576) today\n- hopefully very quick additional image provement: [Parse image URLs for push notifications ](https://github.com/stackernews/stacker.news/issues/577)\n- afterwards, wallet stuff like [LNDhub](https://github.com/stackernews/stacker.news/issues/429), [general wallet integration for seamless payments](https://github.com/stackernews/stacker.news/issues/490) and/or [NWC](https://github.com/stackernews/stacker.news/issues/533)\n- but I am also having my eyes on [Account Switching](https://github.com/stackernews/stacker.news/issues/489) to improve anon UX https://example.com/ 19905 436224 436224.436230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.20327319241647 0 \N \N f 0 \N 0 72359094 0 f f \N \N \N \N 436224 \N 0 0 \N \N f \N 2025-03-20 05:27:26.149 f \N \N \N 0 0 0 0 0 0 0 435450 2025-03-12 17:29:13.539 2025-03-29 22:39:51.716 \N Yeah, I can't even get to the point where I would upvote something because it feels too risky to pay for a shit answer.\n\nOn the other hand I would happily tip/pay to upvote helpful answers. https://example.com/ 20275 435273 430109.430351.431086.434668.435265.435273.435450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2590762215025 0 \N \N f 0 \N 0 186381319 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N 2025-03-19 10:58:59.305 f \N \N \N 0 0 0 0 0 0 0 435518 2025-03-12 18:48:19.142 2025-03-29 22:39:48.16 What is the best non-Bitcoin book you read? \N \N 9099 \N 435518 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.12691542258698 0 \N \N f 0 \N 0 109301821 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:12:00.9 f \N \N \N 0 0 0 0 0 0 0 448220 2025-03-22 13:44:31.558 2025-03-29 22:39:48.16 Npub.pro - Beautiful nostr-based websites for everyone! ## Creating a website has never been so easy and simple. Don't trust me, Try it! \n![](https://m.stacker.news/54588.png)\n- - -\n## _Currently FREE to use with your.subdomain.npub.pro and soon a nice 9000 sats/month to have your own domain._\n- - -\n|![](https://m.stacker.news/54590.png) |![](https://m.stacker.news/54589.png)|\n|---|---|\n|✔️ **Beautiful themes.** Compatible with open-source Ghost themes to make your content stand out. | ✔️ All you get on **Free** plus |\n| ✔️ **Subdomain.** Get your-name.npub.pro domain — a short address you can share with your audience. | ✔️ **Custom Domain. **Switch to your own domain and keep using our scalable infrastructure to host your site.|\n| ✔️ **Performance.** Your site is served by a global CDN with low latency and 99.9% uptime. | ✔️ **Higher capacity.** Up to 10000 latest posts rendered by our server for longer-term SEO benefits. |\n| ✔️ **Meta tags & SEO.** Up to 1000 latest posts rendered by our server to improve SEO and link sharing experience. | ✔️ **Support & customizations.** Reach out to discuss any custom theme, plugin or integration that you need for your site.|\n| ✔️ Self-hostable. Download a zip-archive and publish the code of your site to Github Pages or your own server. |✔️ **Fund the ecosystem.** Big part of your payments go directly to developers of themes and plugins you're using.|\n| ✔️ **Interoperable.** Built around the new NIP-512 proposal, so that you could switch to a better engine at any time.| |\n- - -\nThe greatest feature: it's FOSS, meaning is opensourcely available to be self-hosted \nhttps://github.com/nostrband/nostrsite/\n- - - \nGhost user? No worries, now you can easily import all your contents from https://npub.pro/import-ghost\nYou can also import your posts uploading a JSON file. \n- - -\n\nAnd here are some stackers you maybe know:\n\n| @CarlBMenger| @Coinosphere| @TheWildHustle |\n|---|---|---|\n|https://carlbmenger-leafes.npub.pro/|https://lukeparker.npub.pro/| https://thewildhustle.npub.pro/ |\n|![](https://m.stacker.news/54592.png)|![](https://m.stacker.news/54591.png)| ![](https://m.stacker.news/54594.png)|\n\n- - -\nHave you tried it yet? Share yours site below together with your first impressions. https://npub.pro/ 16387 \N 448220 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.09127822010112 0 \N \N f 0 \N 0 221371823 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:31:08.497 f \N \N \N 0 0 0 0 0 0 0 447279 2025-03-21 18:39:04.832 2025-03-29 22:39:51.716 \N Is it confirmed that is his account? https://example.com/ 17696 447277 446880.447053.447277.447279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2636977745752 0 \N \N f 0 \N 0 233663798 0 f f \N \N \N \N 446880 \N 0 0 \N \N f \N 2025-03-28 12:10:43.986 f \N \N \N 0 0 0 0 0 0 0 436597 2025-03-13 17:38:36.666 2025-03-29 22:39:51.716 \N Week 3 of the Nostr-LN Wallet & Node project: https://stacker.news/items/252744/r/0330830bf9\n\n# What\n\nWe're building the stack to make NOSTR the 3rd Layer to Lightning for Web Applications. A new wallet will enable better connectivity UX to remote nodes, enabling a re-decentralization of the network by empowering Uncle Jim. LNURL is also getting some novel functionality.\n\n# Why\n\nIn another thread I share how much of the conversations around Lightning Development are counter-signal. Lightning deserves a brighter future than the things currently capturing all the attention and capital can ever deliver.\n\nhttps://stacker.news/items/256619/r/0330830bf9\n\n# Update\n\nWe got into some of the nitty gritty with the nostr RPC this week. While it had been rough'ed in from a hackathon awhile back, we've since learned that NIP04 encrypted messages are completely broken from a cryptographic standpoint. \n\n### **Every encrypted message you send from your nostr key makes it easier to crack**. \n\nFortunately there's a draft for NIP44 that fixes the encryption, we've upgraded the project to use v0 of that for additional testing.\n\nProtocol handlers are another difficult issue as Lightning apps have convened on the `lightning:` protocol for links (even though nostr has more wisely followed our recommendation for `web+` protocols that enable handling by PWA's). \n\nAs a result, we've sunk some time into PWA -> Native wrappers to see how that goes. The wallet will remain a PWA, but in the short-medium term a native bundle is necessary to make it a viable daily-driver until apps upgrade to `web+` or browser standards safelist the `lightning:` protocol. https://example.com/ 756 436596 436596.436597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5018842629576 0 \N \N f 0 \N 0 99428265 0 f f \N \N \N \N 436596 \N 0 0 \N \N f \N 2025-03-20 11:00:55.356 f \N \N \N 0 0 0 0 0 0 0 436345 2025-03-13 13:43:22.015 2025-03-29 22:39:51.716 \N "Decentralization is a process." \n\n...to be perfectly honest I didn't know where to start with that one. I was 3 strong beers deep, full disclosure. https://example.com/ 16942 436344 436344.436345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5102235007317 0 \N \N f 0 \N 0 192882123 0 f f \N \N \N \N 436344 \N 0 0 \N \N f \N 2025-03-20 08:07:50.064 f \N \N \N 0 0 0 0 0 0 0 443287 2025-03-19 08:38:03.875 2025-03-29 22:39:48.16 Jim Hates Scams – Darknet Diaries Jim Browning has dedicated himself to combatting scammers, taking a proactive stance by infiltrating their computer systems. Through his efforts, he not only disrupts these fraudulent operations but also shares his findings publicly on YouTube, shedding light on the intricacies of scam networks. His work uncovers a myriad of intriguing insights into the digital underworld, which he articulately discusses, offering viewers a behind-the-scenes look at his methods for fighting back against scammers.\n\nJim’s YouTube channel: https://www.youtube.com/c/JimBrowning https://darknetdiaries.com/episode/143/ 5825 \N 443287 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 17.4265148914473 0 \N \N f 0 \N 0 50112229 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:31:47.002 f \N \N \N 0 0 0 0 0 0 0 443482 2025-03-19 11:34:43.447 2025-03-29 22:39:51.716 \N # Happy Thanksgiving !\n\nI am very grateful for having found a fantastic community a few months ago that shares the same principles as I do. First on nostr and then here on Stacker News.\n\nhttps://media4.giphy.com/media/k3NBZE3t3rm6zo7h04/200w.gif https://example.com/ 20817 443096 442751.443096.443482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2917752445281 0 \N \N f 0 \N 0 76129155 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 2025-03-26 06:32:10.315 f \N \N \N 0 0 0 0 0 0 0 435762 2025-03-12 23:58:20.027 2025-03-29 22:39:51.716 \N Nice measured response. Shinobi is a good one. https://example.com/ 9355 435556 435217.435275.435277.435295.435425.435556.435762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8182271150105 0 \N \N f 0 \N 0 235611268 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 21:03:03.546 f \N \N \N 0 0 0 0 0 0 0 443146 2025-03-19 04:59:26.212 2025-03-29 22:39:51.717 \N Ephemeral items on SN\n\nhttps://github.com/stackernews/stacker.news/pull/570 https://example.com/ 21683 442313 442313.443146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6986542078912 0 \N \N f 0 \N 0 176542728 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 2025-03-26 03:42:08.798 f \N \N \N 0 0 0 0 0 0 0 436558 2025-03-13 16:38:55.961 2025-03-29 22:39:51.951 \N Only started caring about privacy once I bought a start9 node.......Now I'm using a vpn/tor and looking to get a degoogled pixel/transition from windows..... https://example.com/ 4474 435905 435905.436558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8130601061813 0 \N \N f 0 \N 0 100899435 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 2025-03-20 12:06:03.403 f \N \N \N 0 0 0 0 0 0 0 330735 2024-12-15 12:39:08.652 2025-03-29 22:39:48.16 Let's hear your controversial Bitcoin take. I'll go first: There are just as many morally bankrupt grifters in Bitcoin as there are in crypto.\n\n![Bitcoin hot take](https://i.ytimg.com/vi/D4cmHlIHYX4/hqdefault.jpg) \N 831 \N 330735 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.2808372938806 0 \N \N f 0 \N 0 45907880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:34:35.07 f \N \N \N 0 0 0 0 0 0 0 436433 2025-03-13 14:57:57.642 2025-03-29 22:39:51.951 \N Big Green Egg https://example.com/ 21249 436330 436258.436330.436433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8421401235153 0 \N \N f 0 \N 0 59071829 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 2025-03-20 09:25:58.354 f \N \N \N 0 0 0 0 0 0 0 435666 2025-03-12 21:25:12.053 2025-03-29 22:39:51.951 \N I wonder why it was only Dumbfuckistanis who were able to read polling and prediction market numbers. https://example.com/ 6335 435120 435120.435666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.410100147478 0 \N \N f 0 \N 0 75037715 0 f f \N \N \N \N 435120 \N 0 0 \N \N f \N 2025-03-20 00:21:52.709 f \N \N \N 0 0 0 0 0 0 0 443380 2025-03-19 10:09:35.628 2025-03-29 22:39:51.951 \N I think #3 is compelling -- the neverending total war and global conflict is entirely a function unlocked by fiat, which is certainly something a progressive can get behind.\n\nThe thing that I'm not sure about, though, is the game theory of it -- you could have a country that stuck with a commodity money, and keep the assorted benefits of sound money, but if their "competitors" had access to this warmaking capability unlocked by the money printer, the gold standard peeps get weeded out of the evolutionary pool. On the short term, the ability to coordinate human action at scale in service of some small cadre of people is a massive advantage -- that's why it happened in the first place.\n\nSo I'm not sure what to think about this argument from a pragmatic perspective, even though it's true. https://example.com/ 16998 443336 443295.443336.443380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9400049946292 0 \N \N f 0 \N 0 242303494 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:18.79 f \N \N \N 0 0 0 0 0 0 0 448358 2025-03-22 15:07:23.812 2025-03-29 22:39:51.951 \N The hardware crashed of motherboard ESP_32 for BTC lottery\n\nProject: https://github.com/BitMaker-hub/ESP32_NerdMiner\n\nSo i bought a new one https://example.com/ 2639 448244 448244.448358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.04894816479503 0 \N \N f 0 \N 0 226834381 0 f f \N \N \N \N 448244 \N 0 0 \N \N f \N 2025-03-29 08:27:53.858 f \N \N \N 0 0 0 0 0 0 0 435192 2025-03-12 14:16:20.132 2025-03-29 22:39:51.951 \N lol, how many beers you had? 🤣 https://example.com/ 739 434997 434997.435192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.97359940119036 0 \N \N f 0 \N 0 147197781 0 f f \N \N \N \N 434997 \N 0 0 \N \N f \N 2025-03-19 07:38:31.999 f \N \N \N 0 0 0 0 0 0 0 436272 2025-03-13 12:38:21.707 2025-03-29 22:39:51.957 \N Did my 1st pull request ever on github today... Just a little translation work for microlancer.io but nonetheless that feels good to help! https://example.com/ 16695 436261 436241.436261.436272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.263428995412305 0 \N \N f 0 \N 0 235609161 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:29:11.544 f \N \N \N 0 0 0 0 0 0 0 434048 2025-03-11 15:22:35.906 2025-03-29 22:39:51.957 \N What's the best bitcoin conference?\nI've never been to one and curious to know if I am missing out on stuff. https://example.com/ 21063 434039 433833.433901.434039.434048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9060102155602 0 \N \N f 0 \N 0 59760708 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 2025-03-18 17:04:20.488 f \N \N \N 0 0 0 0 0 0 0 434812 2025-03-12 08:56:51.294 2025-03-29 22:39:51.957 \N I agree\n\nStatements like\n\n> **First and foremost, dollar-cost averaging reflects a fiat mentality.** If you view Bitcoin solely as an investment and are concerned about "maximizing profits" it suggests a lack of understanding of Bitcoin, and very likely you will sell-out back to fiat as soon as the fiat price skyrockets.\n\nmakes whole good articles "taste bad" since they seem to not be written in good faith / very biased.\n\nFor me, DCA is a risk management strategy. It's not about max returns. It's about human psychology and spreading out your committment over time instead of taking a leap of faith and potentially getting burned and scared and selling at a huge loss because you've your life savings getting evaporated and want to cut your losses.\n\nTrying to frame DCA as a "fiat mentality" seems to completely miss this point. https://example.com/ 11192 434665 434665.434812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4891054551763 0 \N \N f 0 \N 0 46252101 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N 2025-03-19 05:26:56.222 f \N \N \N 0 0 0 0 0 0 0 436249 2025-03-13 12:16:14.457 2025-03-29 22:39:48.16 What's one thing you wish you had more of? We all have that one thing we wish we had more of in life. So what's one thing you wish you had more?\n\n \N 5590 \N 436249 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 15.4294843859045 0 \N \N f 0 \N 0 78607190 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 05:53:24.011 f \N \N \N 0 0 0 0 0 0 0 436228 2025-03-13 11:59:45.884 2025-03-29 22:39:48.16 Why did you ignore Bitcoin the first time? Let me start. Late 2012 behind the window, I read some random article how anon mine bitcoins with his GPUs. I'm not native english speaker and my level of English was A1 not even A2, so I couldn't even conceive how money, GPUs, farms, computers, reward 25 per block, etc can be in one sentence. And you know what? I didn't even finish to read article and started to scroll internet further.\n\nToday there's a lot of different multilingual articles, podcasts, YouTube videos, and If I had so much meterials I wouldn't ignore Bitcoin. The main obstacle was - English language I hadn't studied enough.\n\nNow your turn \N 5495 \N 436228 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 16.1355802699869 0 \N \N f 0 \N 0 106336016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:58:55.212 f \N \N \N 0 0 0 0 0 0 0 435258 2025-03-12 15:01:03.349 2025-03-29 22:39:51.957 \N [Deezy](https://channel.deezy.io/)\n[Blocktank](https://blocktank.to/)\n[LN+](https://lightningnetwork.plus/swaps)\n[Bitrefill Thor](https://www.bitrefill.com/thor-lightning-network-channels/?hl=en)\n[Fixedfloat](https://fixedfloat.com/)\n[Coincept](https://coincept.com/)\n\n https://example.com/ 1060 435156 434641.435156.435258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.1591750753707 0 \N \N f 0 \N 0 37112921 0 f f \N \N \N \N 434641 \N 0 0 \N \N f \N 2025-03-19 08:50:25.262 f \N \N \N 0 0 0 0 0 0 0 443519 2025-03-19 11:55:12.485 2025-03-29 22:39:51.957 \N so strange....they could just support development....what is the angle on "owning it" https://example.com/ 21571 443473 443197.443473.443519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.32608993035063 0 \N \N f 0 \N 0 192435554 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 2025-03-26 05:12:11.405 f \N \N \N 0 0 0 0 0 0 0 435430 2025-03-12 17:10:16.45 2025-03-29 22:39:51.957 \N Are there specific features improving privacy in LN that you are excited about? Either existing or upcoming? \nDo you think we will ever reach "full" privacy for amount, sender and destination? (for some definition of "full") https://example.com/ 5359 435420 435261.435410.435420.435430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.13430760018656 0 \N \N f 0 \N 0 183557959 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:25.821 f \N \N \N 0 0 0 0 0 0 0 436625 2025-03-13 18:15:02.356 2025-03-29 22:39:51.958 \N Lost mine once. Was not fun. https://example.com/ 7418 436600 436218.436600.436625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5784140500414 0 \N \N f 0 \N 0 108635483 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N 2025-03-20 12:03:54.112 f \N \N \N 0 0 0 0 0 0 0 434732 2025-03-12 07:41:48.369 2025-03-29 22:39:51.958 \N Other option: I've heard of GrapheneOS, but have yet to give it a try. I think I will soon. https://example.com/ 2719 434717 434717.434732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2874625085999 0 \N \N f 0 \N 0 84051009 0 f f \N \N \N \N 434717 \N 0 0 \N \N f \N 2025-03-19 01:03:16.447 f \N \N \N 0 0 0 0 0 0 0 434703 2025-03-12 07:16:42.108 2025-03-29 22:39:48.16 How To NOT Make An Experimental Mushroom Seed ## What?!\n\nI had this idea to test out an interesting way to store a backup seed phrase. It ended up being quite experimental. I used what I had at home and impulsively went through it when I had a spare chunk of time. Any handyman types reading through this here will probably have a lot of advice for me, but having made a few mistakes, I think the next one will turn out a lot better.\n\nIt was inspired by a combination of two encounters. One of them was from a guy I met on a gig a few years ago. He was telling me all about how he fixes up old cars (like really old, sometimes 100 years old!) and sells them again. He was talking about a type of building metal that you can mold and shape with your hands. He often uses it to fill holes or to make parts that aren't produced anymore.\n\nThe second one was when I was playing playdough with my kids, molding different animals. I was thinking about using this "metal dough" stuff and submerging a stack of steel washers into a shape that can be hidden in plain sight. \n\nAnd what kind of a shape could a stack of steel washers fit in?\n\nA MUSHROOM!\n\nAn "experimental" mushroom. I'll put the stack in the middle of the stem and place the nut into the head and it will sit nicely as an unassuming prop in the front yard with some garden gnomes and stones.\n\n![](https://m.stacker.news/68001)\n\nThese were the materials I used: \n- smaller size steel washers\n- nut and bolt\n- character punching kit\n- hammer\n- anvil\n- metal epoxy 57g x2\n- paint\n- sandpaper\n\nBesides the metal epoxy I just used whatever I had lying around in the garage. I think I spent about $20 USD on the epoxy.\n\n![](https://m.stacker.news/68002)\n\n## Working With The Epoxy Metal\n\nI watched a couple of videos to see what I was in for. You get up to 5 minutes to mix, then 1-3 minutes to get it right before it sets. I made sure I had the stack of washes on the bolt ready to be submerged. Mixing felt a lot harder and stickier than playdough (should have worn gloves). I think I could have spent a little longer mixing, but the texture looked pretty consistent. \n\n![](https://m.stacker.news/68009)\n\nPutting the epoxy around the stack seemed to be a little wobbly but it didn't take long until it was fully submerged with a small part of the bolt sticking out of the top. \n\n![](https://m.stacker.news/68010)\n\nI used another piece of epoxy for the mushroom head. I mixed it like the last one, then tried to push it into each face of the nut so that it would be fixed. After, I flattened it around the edges and pushed it into the wooden table (which later got stuck). This turned out ok but since the nut was quite small in comparison to the head, there may have been some slight gaps on the face of the nut. This caused it to slip on the bolts thread later.\n\nI left it for 12 hours or so to set.\n\n![](https://m.stacker.news/68011)\n\nI put the head onto the stem but there was a gap in between. Since I'd already used all the metal epoxy I just used some wood putty to fill the gap. After it dried I sanded back some of the bits sticking out.\n\n![](https://m.stacker.news/68012)\n\nNext I tried painting the mushroom with an orange color I had. The paint wasn't really designed for metalic surfaces so there were lots of streaks. I tried a few coats, but it wasn't really working. So I switched to covering the mushroom in glue and then sprinkled sand all around.\n\n![](https://m.stacker.news/68013)\n\nAt this point it's starting to look pretty weird, but also ideally discrete. I left it in the front yard for about 2 weeks next to a solar mushroom light and some succulents. \n\n![](https://m.stacker.news/68014)\n\nThen I took it out back to recover (smash!).\n\n![](https://m.stacker.news/68015)\n\nThe metal epoxy was surprisingly strong. I hit it quite hard with a hammer multiple times before breaking it. I thought that it would just crumble like wood putty or shatter like glass but that was not the case. \n\n![](https://m.stacker.news/68016)\n\nThe steel washers were of course recovered without any damage.\n\n![](https://m.stacker.news/68017)\n\n\n## How To Make A Stack Of Steel Washers Submerged In A Garden Mushroom\n\n*Now that I have been through this experiment, here's how I would improve on it.*\n\nMaterials: \n- smaller size steel washers\n- nut and bolt\n- character punching kit\n- hammer\n- anvil\n- metal epoxy ~100 grams for a 12 word seed.\n- paint specifically designed for metal surfaces\n- rubber gloves\n- sheet of plastic or non-stick material\n- sandpaper\n\n*NOTE: Make sure you have stamped your seed into the steel washers correctly before starting.*\n\n1. Mix a small bit of the epoxy (1/10th) to wedge between the washer and the bolt. You can do this for a few washers at a time until the whole stack is fixed. Wait an hour or so for it to set.\n2. Place a nut on the bolt thread to position where the mushroom head will sit. Mix around 2/5th of the epoxy to wrap around the washers making a mushroom stem shape. Make the bottom flat and the top level with the base of the nut. When the desired shape is complete, take the nut off before it sets. Let it set on a non-stick material like a sheet of plastic.\n3. Mix 1/10th of the epoxy and place around the nut only leaving the bottom exposed. Make sure there are no gaps around the edges of the nut. Let it set.\n4. Mix 3/10th epoxy to expand the nut into a mushroom head. Place the nut into the bottom middle and shape as desired. Like the stem, also let it set on a non-stick material.\n5. Use the remaining epoxy to seal the stem to the head. Place the head on the stem and use the remaining epoxy to fill the gap between the stem and head. Let it set.\n6. Using some sand paper, sand away any excess bits or smooth out the appearance.\n7 Paint mushroom as desired.\n\n## Why do this?\n\nI quite like the humble stack of steel washers. They're available all around the world, they're cheap, and they prevent even the most devastating situations like a house fire from destroying your sats. Burying them underground is a good option if you own the property that you live in, or know a good place to bury it that no one will ever build on. Retrieving these from underground is quite a hassle. The deeper you bury it, the harder it is to retrieve. If you ever move house or area you will need to dig it up. \n\nSo another option is to hide it somewhere. Leaving it as it is (a stack of steel washers) could be dangerous as anyone interested in bitcoin will instantly know what it is. So for this option it might be a good idea for someone to have it hidden in plain sight. Molding the steel washer stack into a shape like a mushroom to be left in the garden seems quite discreet to me. If you have it lying around with other garden gnomes or stuff that you put in your garden, it just sits there unassuming. It doesn't necessarily need to be a mushroom either. It could be a stone, a gnome, a cat or a rat. I just chose the mushroom as a basic starter that I knew wouldn't take much skill to mold. \n\nI think it's interesting to explore different ways to store your seeds or passphrases. Working with metal that you can mold opens up other options.\n\nEnjoy! \N 9450 \N 434703 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4229824687877 0 \N \N f 0 \N 0 125476337 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:19:24.566 f \N \N \N 0 0 0 0 0 0 0 434056 2025-03-11 15:28:30.175 2025-03-29 22:39:48.161 Daily Discussion Thread ~Music Saloon! Hello Stackers!\n\nWelcome on into the ~Music Corner of the Saloon!\n\nA place where we Talk Music. Share Tracks. Zap Sats.\n\nSo stay a while and listen.\n\n🚨Don't forget to check out the pinned items in the territory homepage! You can always find the latest weeklies there!🚨\n\n🚨Subscribe to the territory to ensure you never miss a post! 🚨 \N 17171 \N 434056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4702621840377 0 \N \N f 0 \N 0 77570624 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 02:03:50.68 f \N \N \N 0 0 0 0 0 0 0 448894 2025-03-23 00:46:49.012 2025-03-29 22:39:48.161 CASCDRVision: Make Clips Fast with AI Assistance! Hey fellow builders & stackers!\n\nIt has been a while since the last written [update](https://stacker.news/items/436197)\n\nWe've been head down building for a while. Many fun world's first initiatives are underway! We wanted to highlight just a couple in this post.\n\n**CASCDR TLDR:** we're building AI APIs and services with a focus on making them interoperable, private and efficient by playing to the strengths that lightning and nostr confer to us! We believe this is how freedom and bitcoin win in the new battle for AI!\n\n**Post TLDR:** we made an "augmented layer" on top of YouTube called [CASCDRVision](https://cascdr.xyz/?tab=yitter) that makes it quick and easy to make clips of content. We also launched our CASCDR [Amber](https://cascdr.xyz/?tab=upgrade) allowing you access to CASCDR tools in exchange for fiat instead of just bitcoin (you're welcome HODLers).\n\n### CASCDRVision\n\nOn the Pleblab [livestream](https://www.youtube.com/watch?v=8mrHYIbM3cw) a few weeks ago @Car and I [announced CASCDRVision - a tool that lets you obtain youtube transcripts, search and easily make clips by just highlighting words.\n\n\nToday, I added a major upgrade to CASCDRVision that allows you to get AI suggested clips. It can be a great way to quickly scan a video and find the key parts of a conversation or video. We also allow you to customize the LLM prompt responsible for choosing the clips...effectively making it like a search engine. I was able to use it to search this [conversation between Rod Roudi & Cathie Wood](https://www.youtube.com/watch?v=aZU-drwF4rg). I found the tidbit about Cathie's mentor in economist Art Laffer's interesting so I wanted to make a clip about it. In about 45 seconds I was able to walk away with [this clip](https://x.com/cascdr_/status/1799851259815710914). \n![](https://m.stacker.news/34690)\n_Step 1: Type in the prompt to find the timestamp_\n\n![](https://m.stacker.news/34691)\n_Step 2: Quotes Tab opens and let's you preview and create clips_\n\nWe're excited about this project and what it means for content creators to ship content fast. The world of content creation is incredibly competitive and challenging! We are excited to be a part of our user's journey in growing their followings and their brands! Shout out to @Greencandleit and @bitcoinplebdev for being brave pioneers working with us!\n\n### Beyond Just Human Users\nWe put a lot of effort into making these tools useful and efficient for humans. We feel it is essential. At the same time, we believe the next billion users of the internet will be bots that pay each other in bitcoin and that we must work toward that future, ensuring that it serves our liberty minded ideals.\n\nToward that end, we've designed CASCDR so that every single endpoint we make can be discovered on nostr and paid for with lightning. Making them accessible and useful to humans and bots alike from day one! CASCDRVision and the services it uses like many of the [others we've made](https://cascdr.xyz) are available for fully automated or even semi-automated bot services. We are excited about what that means for a future where bots an autonomously can create value in novel ways. This is why we're so bullish on lightning and AI ⚡🤝🤖. \n\n### CASCDR Amber\nIn our quest to make tools with maximum utility we made it possible for them to be used by a human or by bots. We also wanted to make it possible for the rabid stackers out there to HODL and instead spend fiat. We've engineered the site so that each paid endpoint can accept bitcoin or fiat. For $9.99 you can get a [CASCDR Amber](https://cascdr.xyz/?tab=upgrade) membership for near unlimited access to CASCDR tools. Take your filthy fiat and turn it into based AI. If you find value in what we're doing, we'd really appreciate if you'd consider signing up and helping us build a liberty centric, bright orange future that we want to see.\n\nIf you made it this far thanks for reading! You can check us out:\n[CASCDR Site](https://cascdr.xyz)\n[Twitter](https://x.com/cascdr_)\n[Nostr](primal.net/p/npub14pfjj6jf8y702pdjar2q36ve5r4t2gu2lp4yma00j49jkgy7d90swg7mwj)\n\nCheers,\nThe CASCDR Team \N 713 \N 448894 \N \N \N \N \N \N \N \N DIY \N ACTIVE \N 5.22247941162245 0 \N \N f 0 \N 0 21423408 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 20:59:25.809 f \N \N \N 0 0 0 0 0 0 0 436256 2025-03-13 12:20:30.831 2025-03-29 22:39:51.958 \N Yes, it's Antun. I appreciate all your comments and advice. This project has me truly excited. Giving you a glimpse into Phase 2, which I hinted at during the Gayser crowdfunding campaign. \n\nHere's the scoop: On my property sits a traditional local house, over 150 years old from my ancestors, in dire need of restoration. The vision? To breathe new life into it, transforming it into a Bitcoin HUB. Picture this: 6-8 cozy beds nestled in the attic, with a spacious meeting room downstairs on the first floor around 40 m2. \n\nStay tuned right here at SN (thanks to Lux) for updates every step of the way. Crossing fingers, because everyone I know outside the Bitcoin world thinks I've gone off the deep end!\n\n![Slika 3.jpeg](https://m.stacker.news/27812)\n\n![Slika 2.jpeg](https://m.stacker.news/27813)\n\n![Slika 1.jpeg](https://m.stacker.news/27814)\n\n![Slika familija.jpeg](https://m.stacker.news/27815)\n\n![Stara kuca 5.jpeg](https://m.stacker.news/27816)\n\n![Stara kuca 4.jpeg](https://m.stacker.news/27817)\n\n![Stara kuca 3.jpeg](https://m.stacker.news/27818)\n\n![Stara kuca 2.jpeg](https://m.stacker.news/27819)\n\n![Stara kuca 1.jpeg](https://m.stacker.news/27820) https://example.com/ 15409 436241 436241.436256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7311252559647 0 \N \N f 0 \N 0 203676622 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 06:16:25.012 f \N \N \N 0 0 0 0 0 0 0 434917 2025-03-12 10:39:14.14 2025-03-29 22:39:51.959 \N It's here. The first story from Mt Gox. @siggy47 and @Undisciplined\n\nThis must be a great feeling to get what was considered lost. \n\nDid you get back in Bitcoin or in Fiat, the value in Fiat that was lost? https://example.com/ 20756 434627 434627.434917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0461699179982 0 \N \N f 0 \N 0 243162204 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 2025-03-19 08:53:39.212 f \N \N \N 0 0 0 0 0 0 0 434915 2025-03-12 10:38:07.409 2025-03-29 22:39:51.96 \N Are you considering any device that would integrate Trezor and Bitcoin/LN node? What's your approach to LN, any special plans? https://example.com/ 18393 434902 434795.434902.434915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.40314123186732 0 \N \N f 0 \N 0 170961639 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 12:48:35.176 f \N \N \N 0 0 0 0 0 0 0 436275 2025-03-13 12:40:18.014 2025-03-29 22:39:51.961 \N Nostr Plays Pokemon on my new live streaming client.\n\nIt's a live stream where the chat controls a shared GameBoy.\n\nGive it a try! And let me know if you encounter any bugs haha\n\nhttps://sats.gg/pokemon https://example.com/ 9333 436028 436028.436275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5324820168472 0 \N \N f 0 \N 0 2761505 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 09:32:57.597 f \N \N \N 0 0 0 0 0 0 0 446798 2025-03-21 13:25:00.896 2025-03-29 22:39:48.161 Join Us on Monday (4/15/2024) for a Q1 SN Review + Q2 Roadmap Discussion Howdy, stackers!\n\nOn Monday (at 11am ET) we're hosting a public call to discuss all the latest developments and plans for Stacker News. There will be a live YouTube stream with @k00b, @ekzyis, and @kr to cover 4 high-level topics:\n- What was shipped in Q1 2024\n- What was adoption like in Q1 2024\n- What is planned for Q2 2024\n- How stackers can help out\n\nThis is just a save-the-date reminder, we'll share more details and a call link in this territory next Monday morning.\n\nPS. If there are things you'd specifically like to hear discussed next week, feel free to drop your ideas below! \N 956 \N 446798 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 23.6766587926353 0 \N \N f 0 \N 0 99102882 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:50:34.074 f \N \N \N 0 0 0 0 0 0 0 443083 2025-03-19 02:58:48.67 2025-03-29 22:39:48.161 SEC Denies ETF Citing Market Manipulation From SEC Twitter Account \N https://www.thebitcoinbugle.com/sec-denies-etf-citing-market-manipulation-from-sec-twitter-account/ 1142 \N 443083 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 15.2936583370565 0 \N \N f 0 \N 0 69207533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:25:20.891 f \N \N \N 0 0 0 0 0 0 0 434139 2025-03-11 16:10:33.528 2025-03-29 22:39:48.161 What's your experience with debt? There's a lot of variability of debt tolerance. I have a friend that makes good money and has low expenses but carries a credit card balance because he views it as part of his next worth (by some logic). I've had friends who make little money who carry a credit card balance for high time preference purchases mostly. I know smart bitcoiners who willfully destroyed their credit history to buy bitcoin and dgaf about their credit history. \n\nDebt is a tool and some of us are more comfortable with it than others. Curious how stackers relate/think about debt. \N 6653 \N 434139 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.02447525854792 0 \N \N f 0 \N 0 163580162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 10:38:13.795 f \N \N \N 0 0 0 0 0 0 0 443123 2025-03-19 04:26:07.235 2025-03-29 22:39:51.961 \N Exactly! Outcomes follow incentives and @k00b has built better incentives. https://example.com/ 16282 443122 443122.443123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2520276718286 0 \N \N f 0 \N 0 204856798 0 f f \N \N \N \N 443122 \N 0 0 \N \N f \N 2025-03-26 05:46:59.326 f \N \N \N 0 0 0 0 0 0 0 435792 2025-03-13 01:04:39.425 2025-03-29 22:39:51.961 \N I was always quite aware that my own biases leaned towards doomerism, especially hanging out in so many Bitcoin and contrarian spaces. So I would consciously correct for that bias whenever those feelings of impending doom became overwhelming. \n\nYou're right that people are resilient. Finance is finance, but what truly matters is the productivity of the people. A financial collapse can gum up the gears for a while, but people will always find a way forward.\n\n\n\n https://example.com/ 8168 435457 435457.435792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.944722952549 0 \N \N f 0 \N 0 164225436 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 2025-03-20 04:17:40.272 f \N \N \N 0 0 0 0 0 0 0 448722 2025-03-22 20:14:21.899 2025-03-29 22:39:48.161 Spending Sunday - What Recent Bitcoin Purchases Have You Made? Let's hear some of your latest Bitcoin purchases, feel free to include links to the shops or merchants you bought from too.\n\nIf you missed our last thread, [here](https://stacker.news/items/412640) are some of the items stackers recently spent their sats on. \N 2123 \N 448722 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 2.10497989873531 0 \N \N f 0 \N 0 31893291 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:09:45.085 f \N \N \N 0 0 0 0 0 0 0 435531 2025-03-12 19:01:22.678 2025-03-29 22:39:51.951 \N Steal This Book\nby Abbie Hoffman\n\nI read this for the first time when I was 13. Just a nostalgia trip for me. https://example.com/ 1394 435030 435030.435531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.78073407316608 0 \N \N f 0 \N 0 113422986 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 18:34:33.53 f \N \N \N 0 0 0 0 0 0 0 435594 2025-03-12 20:02:47.397 2025-03-29 22:39:51.953 \N There's a few good ones in Geyser atm that would benefit from a few donations https://example.com/ 13767 435573 435217.435275.435277.435295.435438.435565.435570.435573.435594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6437456989787 0 \N \N f 0 \N 0 47759420 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 13:21:14.116 f \N \N \N 0 0 0 0 0 0 0 436328 2025-03-13 13:35:34.05 2025-03-29 22:39:51.953 \N > If I were better at writing, each sentence would have in it some form of "maybe" or "probably" and end with a question mark. So, imagine those are there.\n\nBut ^ would be horrible reading UX/worse writing https://example.com/ 1745 436318 436318.436328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.46245070067191 0 \N \N f 0 \N 0 123262506 0 f f \N \N \N \N 436318 \N 0 0 \N \N f \N 2025-03-20 07:26:24.065 f \N \N \N 0 0 0 0 0 0 0 447120 2025-03-21 16:21:28.746 2025-03-29 22:39:48.161 Distributed Charge Hello Stacker News!\n\nI'm new to this website and hope to use it as a platform from now on to share updates to my project Distributed Charge: http://andyschroder.com/DistributedCharge/ .\n\nDistributed Charge aims to make bitcoin the native payment method of the energy grid by creating hardware devices, open source software, and standard protocols for negotiating real time energy pricing and micropayment between machines, on every corner of the earth.\n\nEvery electric meter should allow for bi-directional payment and energy flows, and everyone should be able to easily buy and sell energy privately without the need to involve third parties or inflationary monetary systems.\n\nThe first application of Distributed Charge is focused on payments for charging electric cars, specifically cars manufactured by Tesla.\n\nToday's update is instructions on how to connect my custom hardware, Board A0, to the Tesla Gen2 Wall Connector: http://andyschroder.com/DistributedCharge/EV/TeslaGen2WallConnector/ . \N 11716 \N 447120 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 20.2994247753299 0 \N \N f 0 \N 0 85949203 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:13:08.932 f \N \N \N 0 0 0 0 0 0 0 443266 2025-03-19 08:12:31.192 2025-03-29 22:39:48.161 Preferred Cloud Providers? I'm looking into hosting personal services (e.g BTC node, LN Node, mempool, Nostr Relay, Gitea, PhotoPrism, etc) in a cloud environment, but having some trouble choosing a cloud provider. My goal is to start with a single node running multiple docker containers, then adding kubernetes as I expand out. \n\nI'm wondering if people have any cloud recommendations. Bonus points for providers who accept Bitcoin/Lightning and/or are privacy-focused. \N 21506 \N 443266 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 7.93547253459284 0 \N \N f 0 \N 0 214591010 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:30:16.975 f \N \N \N 0 0 0 0 0 0 0 435024 2025-03-12 12:08:52.737 2025-03-29 22:39:51.953 \N Garages is going to be the best territory ever. (Even though my garage is kinda boring) https://example.com/ 15103 430532 430532.435024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7322584328352 0 \N \N f 0 \N 0 77935525 0 f f \N \N \N \N 430532 \N 0 0 \N \N f \N 2025-03-19 10:06:48.116 f \N \N \N 0 0 0 0 0 0 0 443031 2025-03-19 00:53:38.304 2025-03-29 22:39:51.953 \N I agree here. A great example is the monero thread available on top for today. I found some good gauge in there about the potential risks of using monero and if that type of discussion wasn’t allowed or phased out intentionally i wouldn’t have. So I tipped a wonderful explanation some sats and went on my day! I agree on don’t encourage echo chamber. https://example.com/ 644 442710 442710.443031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6935341776906 0 \N \N f 0 \N 0 180193537 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 2025-03-26 02:53:25.904 f \N \N \N 0 0 0 0 0 0 0 436234 2025-03-13 12:05:55.545 2025-03-29 22:39:51.953 \N It's always something, isn't it? https://example.com/ 18901 436224 436224.436234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9446474364651 0 \N \N f 0 \N 0 32573763 0 f f \N \N \N \N 436224 \N 0 0 \N \N f \N 2025-03-20 05:26:18.303 f \N \N \N 0 0 0 0 0 0 0 435029 2025-03-12 12:11:33.652 2025-03-29 22:39:48.161 Property Management built on Bitcoin (The Better Bitcoin Business Model) I wrote part of this as a reply to another article but it seems fitting to post it here and go into a little more depth with it, as it seems like a pretty important concept for us (bitcoiners) to understand....\n\nIt just seems to me that Bitcoin is a system of value communication that is completely opposite to the FIAT system.... Under FIAT you have inflation to the monetary supply making the which lessons the purchasing power of the future supply.... I think this is a more widely understood concept... Your $100.00 USD today will buy you less tomorrow or 10 years from now\n\nOn a Bitcoin System you have an ever increasing amount of purchasing power due to its scarce supply.... Your 100 sats purchase today will only cost you 90 sats tomorrow or 10 years from now.... This concept seems to be much more difficult for people to understand...\n\nHowever, we are Bitcoiners here...and hopefully if you are reading this, you understand that....I think what is more difficult to then comprehend is the next order effects of what this does to each and every system we currently operate on... I think previously I have stated that Bitcoin literally overwrites each and every system we have...this is every system you can think of....I can't think of a system that won't be impacted one way or another by Bitcoin...\n\nAnyway back to the Business Model and property management in particular...Being built on a Bitcoin Standard\n\nI posit that entrepreneurs' that build businesses that excrete value the most will be the most successful in the long term (as they will be the businesses providing the most utility/value to their customers - of which they are looking for the best value for their Bitcoin)?? \n\n- I think this is important to remember - we are not simply building businesses that utilize Bitcoin for ourselves or for the corporation, we are building businesses that will need to incentivize their customer to come and use their widget or live in their property...Similar to how things operate today where the customer is looking for the best bang for their buck....however it is different on Bitcoin as that customer currently has a very large desire to hodl their Bitcoin and get rid of their FIAT...They are not going to be as incentivized to utilize BTC as payment for a simple 10-20% discount on something (In FIAT terms) as they will weigh the potential future buying power of that BTC against their ever inflating FIAT cuck bucks...\n\nIf the customer/consumer you are looking to attract is looking for the best value? Businesses that are able to lower their prices in BTC terms over term are going to be the successful businesses....These are going to be the businesses that manage their cash/BTC flows wisely and truly leverage the BTC network effects to underwrite the future value of their businesses. For instance, if I am able to lower my rent in BTC terms indefinitely and all but eliminate my future FIAT needs at my property, I reckon I will have Bitcoiners knocking my door down to be able to move into my property...while my neighbor who is over leveraged and spends all their FIAT cash flow on vacations for themselves or fancy cars that they don't really need will slowly and surely find themselves in bind when more "Bitcoiners like me" buy buildings and lower rents in the markets they operate in...those FIAT maxi's will surely be selling me their buildings at a loss or I will buy them out of foreclosure as at some point....the tipping point is met and they simply get caught overleveraged and under funded to beat me. \n\n- Businesses that spend more value than they create will be among the first to go....\n\n- Businesses that create the most value and that are able to share that value with their customer's will be the most successful over the long term.\n\n- All businesses will be somewhere in between these two categories I imagine...I am already reducing the rent all my residents are paying as my BTC savings are able to offset the need continuously raise the rent and those that are paying me rent in BTC are benefitting even more by utilizing the shared % I offer them on the increased FIAT value of their paid BTC to me. So they are seeing maximum value being returned to them...Sure this delays my ability to benefit from the BTC they pay for 6 months....but in the big scheme of things that is nothing...My properties will be fully collateralized by BTC sooner than my competitors who do not and will not ever use BTC (this is that idea of the guy who discovered the heart pumps blood around the body and stated no doctor over 40 would ever believe him) Very, very, very few owners of real estate period are likely adopt BTC in the next 5-10 years....and those of us who do, certainly have first mover's advantage...\n\nAnyway - I think that is good for the day....look forward to any discussion (good, bad, or ugly).... \N 14791 \N 435029 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.0505667024186 0 \N \N f 0 \N 0 99036181 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:29:59.879 f \N \N \N 0 0 0 0 0 0 0 435763 2025-03-13 00:05:49.002 2025-03-29 22:39:51.953 \N Darth I see your points and agree with many.\n\nBUT. It is important not to conflate ChatGPT/OpenAI with other open source machine learning projects that not only could be completely self-sovereign but actually a weapon to fight back.\n\nIt's like saying you dislike this new "gunpowder" thing because now any idiot can effortlessly kill from a distance. Guess what? Keep your sword, and the "evil lords" will use gunpowder and wipe you out real fast.\n\nWe are not going to stop AI by complaining or hiding in a corner. Let's learn how to use their tools against them. https://example.com/ 19980 435189 435046.435132.435149.435189.435763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9801973239186 0 \N \N f 0 \N 0 35891794 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 04:32:21.465 f \N \N \N 0 0 0 0 0 0 0 443276 2025-03-19 08:24:16.435 2025-03-29 22:39:51.953 \N evoseducation.org - launching kids financial literacy courses! Couldn't be more excited. The content is basically monetary history, trad finance and then digital finance and Bitcoin/Lightning. Couldn't be more excited to launch this. https://example.com/ 21249 443272 443272.443276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7980700860474 0 \N \N f 0 \N 0 139303944 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 2025-03-26 05:40:21.312 f \N \N \N 0 0 0 0 0 0 0 442556 2025-03-18 16:36:45.483 2025-03-29 22:39:51.954 \N I'm finishing up Ego and Archetype by Edward Edinger. It's outlines and explores the process of ego development - inflation, alienation and individuation in the context of Jungian psychology, and connects that basic archetypal pattern of development across its reflection in many various religious and cultural symbols.\n\nIf Bitcoiners aren't already plugged into Jung's work, I think it's a natural development for many. https://example.com/ 14651 442313 442313.442556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8131439103723 0 \N \N f 0 \N 0 81088223 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 2025-03-26 02:54:26.148 f \N \N \N 0 0 0 0 0 0 0 435885 2025-03-13 04:20:10.586 2025-03-29 22:39:51.954 \N OK guys, MrM sent me a video about his tx to a lady in El Salvador, at the vegetables market.\nI pay it for him.\nHere it is:\nhttps://streamable.com/3nyqw6 https://example.com/ 13398 435769 435769.435885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5282911542819 0 \N \N f 0 \N 0 170149443 0 f f \N \N \N \N 435769 \N 0 0 \N \N f \N 2025-03-19 21:51:59.167 f \N \N \N 0 0 0 0 0 0 0 443430 2025-03-19 10:53:11.268 2025-03-29 22:39:51.954 \N Thanks Tony!\n\n100% we’ve taken what we saw and learned on the ground and built this out with all of that in mind. \n\nLooking forward to chatting! Awesome release by you guys today as well. Loving the progress. https://example.com/ 18368 443274 443274.443430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6282062804396 0 \N \N f 0 \N 0 77846032 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 2025-03-26 04:10:48.171 f \N \N \N 0 0 0 0 0 0 0 435780 2025-03-13 00:51:56.809 2025-03-29 22:39:51.955 \N Hey Hodlnaut, just wanted to let you know my old college roommate is working with faketoshi's defense team for the appeal (sadly his first job out of law school). They all think he's insane. Keep fighting the good fight! https://example.com/ 679 435387 432920.432980.432992.433032.433034.433041.433194.435387.435780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.453327148692146 0 \N \N f 0 \N 0 143667033 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-20 03:40:22.268 f \N \N \N 0 0 0 0 0 0 0 436644 2025-03-13 18:39:40.205 2025-03-29 22:39:51.955 \N Thank you Austin. I'm interested in command line scripts for Bitcoin and Lighting. I'm running Bitcoin Core but I don't have a Lighting node yet. Looking forward to some good posts. https://example.com/ 4177 436633 436466.436475.436633.436644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9843611032478 0 \N \N f 0 \N 0 91875181 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 2025-03-20 12:06:30.274 f \N \N \N 0 0 0 0 0 0 0 446434 2025-03-21 07:58:12.903 2025-03-29 22:39:51.955 \N To me 9/11 symbolizes how innocent people will ultimately pay the price for the ruling class's imperial bullshit and tragedies will be cynically exploited to continue pursuing that same bullshit. https://example.com/ 825 444895 444755.444895.446434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7860392479414 0 \N \N f 0 \N 0 48604366 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 2025-03-29 08:44:35.501 f \N \N \N 0 0 0 0 0 0 0 435569 2025-03-12 19:39:24.942 2025-03-29 22:39:51.956 \N Day 248 of snailposting everyday 'til BTC hits $100k.\n\n...and 48 push-ups. (20 - 14 - 14)\n\n__@_'-' https://example.com/ 16126 435217 435217.435569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8857051628114 0 \N \N f 0 \N 0 34004980 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 15:02:25.48 f \N \N \N 0 0 0 0 0 0 0 435638 2025-03-12 20:48:55.558 2025-03-29 22:39:51.956 \N ![Pitchforks and Torches](https://imgprxy.stacker.news/vKlXAaEsitRE2tsml84F9XZrNbA3aViUaiWC_e1ANGs/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0VHUk92cHNWVUFBaUFRVy5qcGc) https://example.com/ 13467 435516 435516.435638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.87926246001623 0 \N \N f 0 \N 0 109452118 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 2025-03-19 14:57:26.711 f \N \N \N 0 0 0 0 0 0 0 448733 2025-03-22 20:27:14.059 2025-03-29 22:39:48.161 Do you want /need a private LN address? Here is a simple guide Many people now want a LN address, especially for NOSTR and for other use cases.\n\nSome are concerned about custodial ones or simply want their own fancy LN address.\n\n### Why?\n\nI personally use many LN addresses, public ones and private ones, custodial and non-custodial. All depending the use case.\n\nI use public ones, custodial, for public stuff, where my real identity is not revealed. Almost all of these custodial do not require a full KYC so is not a big deal using them. You just have to move the funds out, to your own private wallets wherever you consider is a good amount.\n\nI use private LN address for PRIVATE stuff (private businesses, private communication with people that really know me, family, friends etc), stuff that is NOT PUBLIC.\n\nPeople should learn to make the difference between public and private damn it! Seems that many still don't know it.\n\n### How to achieve such thing?\n\nYou have many ways:\n\n1. Using a federated server, in case you do not want / can't run your own LNURL private server.\n[BridgeAddress](https://bridgeaddr.fiatjaf.com/) from fiatjaf is the perfect solution.\nWhy? Because:\n- is offering a lot of connection types directly to your node or other funding sources.\n- easy to setup, in max 10 min is functional (depending on your DNS provider).\n- can be used with a Tor or ZeroTier node\n\nYes, you need a bit of trust in fiatjaf, for handling your we requests. But if you do not know who is fiatjaf in Bitcoin world, I don't know what are you doing here...\n\n2. Using your own LNURL server.\nAnd are many implementations out there.\nPlease consult the documentation page of https://lightningaddress.com or use one of these:\n- https://github.com/nbd-wtf/satdress\n- https://github.com/SatSale/SatSale\n- https://github.com/niteshbalusu11/rustdress\n- https://github.com/hieblmi/go-host-lnaddr\n\n3. Using LNbits as LNDHUB and LNURL server provider\n- https://github.com/lnbits/lnbits/wiki/LNbits-Documentation\n- you could use the LN address extension or free-LN-address extension (see more here https://github.com/lnbits/lnbits/wiki/LNbits-Extensions)\n- or you could just use LNbits with a temporary funding source and link it to BridgeAddress if you want more privacy in terms of the domain used.\n\nThere are many ways to play around with these tools, especially if you want to have a more private LN address. \N 21577 \N 448733 \N \N \N \N \N \N \N \N Linux \N ACTIVE \N 6.97787708913754 0 \N \N f 0 \N 0 226989928 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:58:18.706 f \N \N \N 0 0 0 0 0 0 0 434141 2025-03-11 16:10:59.064 2025-03-29 22:39:48.161 New Bitcoin sidechain (Sequentia) launches demo signet [Sequentia](https://sequentia.io/) is an upcoming Bitcoin sidechain based on a fork of Elements (a fork of bitcoin core made by Blockstream and used for the Liquid Network). \n\n[We have now launched a signet and a demo walkthrough](https://docs.sequentia.io/signet) showcasing one of Sequentia's two most fundamental features, which are also the two most key differences with Liquid. These are therefore also the two development milestones that we've committed to building before we launch a mainnet. \n\nAs demonstrated by the signet and [walkthrough](https://docs.sequentia.io/signet/download-and-installation), Sequentia is the first blockchain with no specific or native coin for transaction fees. Instead, it allows users to propose transaction fees with any token issued on it. \n\nWithout going any further, if Blockstream were to integrate some of the modifications to Elements we've already made so far, you could pay transaction fees on Liquid in USDT directly (as also possible with [Liquid Taxi](https://liquid-taxi.vulpem.com/), except directly at the protocol level, therefore jumping through fewer hoops, and able to become the default behaviour of most wallets with most assets) etc. while L-BTC could still of course exist and be used to represent BTC on the sidechain, but it would not necessarily be favoured over any other pegged BTC or other assets by the network itself, since tx fees could be proposed using anything at all and block producers will likely accept anything of relatively stable value and sufficient liquidity. \n\nHowever, the next (and final before mainnet launch) major development milestone will perhaps be considered the most defining characteristic of Sequentia: [Bitcoin Anchoring](https://docs.sequentia.io/white-paper/3.-blockchain-architecture/3.4.-bitcoin-anchoring). \n\nIn the context of Sequentia, "Bitcoin anchoring" refers to a consensus rule requiring each Sequentia block to contain a reference to the hash of a Bitcoin block at an equal or greater height than the block referred to by the previous Sequentia block. Since Sequentia will have a higher block frequency than Bitcoin (similar to Liquid), several Sequentia blocks can refer to the same Bitcoin block.\n\nThe goal of this policy is to ensure that Sequentia reorganizes every time Bitcoin does (every Sequentia block containing a reference to an orphaned Bitcoin block is discarded), as assuming that Sequentia never reorganizes by itself, this creates an opportunity to have reorg-proof cross-chain atomic swaps, and even submarine swaps, with BTC on the mainchain/LN. You could, therefore, have viable native Bitcoin and even Lightning DEXs for tokenized assets issued on Sequentia, where, unlike with Liquid or any other sidechain today, you can actually implement these cross-chain swaps with real BTC without needing to add a burdensome timelock in case the swap reverses on one chain and not the other. \n\nSo as you might be able to tell by now, the use-cases and intended user experience / user journey on Sequentia are actually fairly similar to that of Taproot Assets (i.e. a bitcoin/LN wallet with access to tokenized assets that can also be transferred over LN and p2p swapped for on-chain/LN BTC at any time), but with a completely different approach to implementation, such that Sequentia doesn't ever need to compete for (far too scarce!) Bitcoin blockspace to write into, whereas Taproot Assets does whenever an asset is issued, locked into or unlocked from a lightning channel, and also for the transfer of assets without sufficient liquidity to warrant using over Lightning.\n\nMore changes are planned besides the two features that I've described here, but these will come much later, after the initial launch of the Sequentia Network. One of these planned post-mainnet upgrades is opening up the federation of Sequentia blocksigners to market-based participation. Our current proposal for this and several other features can be found in the [Sequentia whitepaper](https://docs.sequentia.io/white-paper/1.-the-mission). \n\nWe would highly appreciate any [feedback](https://discord.com/invite/p3FUz5RrVu) on this demo! This is a completely open-source project, and we will try to compensate any contribution to the codebase commensurately, so please [jump right ahead](https://github.com/SequentiaSEQ/SEQ-Core-Elements) if you think this sounds like something you could add to. \N 886 \N 434141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.59836388289759 0 \N \N f 0 \N 0 155548962 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 01:59:14.595 f \N \N \N 0 0 0 0 0 0 0 436118 2025-03-13 10:32:41.286 2025-03-29 22:39:51.951 \N What are some of the main challenges designing the onboarding user flows for new users, accounts timed to traditional banking/money, but unclear (or scared) about Bitcoin? Any interesting observations? https://example.com/ 20337 435832 435576.435832.436118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11502069357029 0 \N \N f 0 \N 0 65347188 0 f f \N \N \N \N 435576 \N 0 0 \N \N f \N 2025-03-20 03:55:05.172 f \N \N \N 0 0 0 0 0 0 0 434828 2025-03-12 09:05:51.836 2025-03-29 22:39:51.955 \N Hey Alex! Thanks for sharing my guide for Russian people when it was needed! We made it with Tony, as you said in the post! \nhttps://twitter.com/gladstein/status/1500341296950509569?s=21&t=ZRPle-mmqtAOO1eefcpLig https://example.com/ 12097 434818 434795.434796.434804.434818.434828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.82755362718314 0 \N \N f 0 \N 0 104898196 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:40:05.542 f \N \N \N 0 0 0 0 0 0 0 434101 2025-03-11 15:48:30.8 2025-03-29 22:39:51.955 \N I just crocheted it haha, should I post the tutorial I used? https://example.com/ 5761 434088 433403.433477.434088.434101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9398540799557 0 \N \N f 0 \N 0 100690853 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 2025-03-18 18:03:43.233 f \N \N \N 0 0 0 0 0 0 0 434557 2025-03-12 02:51:17.525 2025-03-29 22:39:51.956 \N Hi __@_'-'\nYou will be ripped after this challenge ;)\nhttps://i.ibb.co/N7T6nS3/fbe097ca-89b9-42ee-baf6-2edaba1b697d.jpg https://example.com/ 16858 434498 434498.434557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4284088345977 0 \N \N f 0 \N 0 29796568 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 2025-03-19 04:58:27.697 f \N \N \N 0 0 0 0 0 0 0 436057 2025-03-13 09:24:49.701 2025-03-29 22:39:48.161 Tor now has a PoW based DoS mitigation feature in v0.4.8.1a with new algo Equi-X \N https://forum.torproject.net/t/alpha-release-0-4-8-1-alpha/7816 4225 \N 436057 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 14.5508393713354 0 \N \N f 0 \N 0 166024704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:52:20.036 f \N \N \N 0 0 0 0 0 0 0 448612 2025-03-22 18:25:49.199 2025-03-29 22:39:51.956 \N That's also what I think will happen with blog articles with things like Alby, if you have created a solid piece of content that ranks highly you will be able to get sats fro it for a while to come until someone creates something better and updates it with new information https://example.com/ 15536 447199 447143.447179.447199.448612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9898204482526 0 \N \N f 0 \N 0 139757092 0 f f \N \N \N \N 447143 \N 0 0 \N \N f \N 2025-03-29 14:49:57.09 f \N \N \N 0 0 0 0 0 0 0 435874 2025-03-13 03:50:26.205 2025-03-29 22:39:51.956 \N Are you hiring anytime soon? https://example.com/ 9426 435217 435217.435874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3594255287814 0 \N \N f 0 \N 0 112832821 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 23:10:12.5 f \N \N \N 0 0 0 0 0 0 0 447237 2025-03-21 17:55:35.264 2025-03-29 22:39:51.957 \N Future Plans\n\n• Receive with route blinding\n• Local zero conf channels (virtual channels)\n• Multi-node pay\n• Vortex / Coin Join integration\n• LSP Integration\n• Tor only\n• Sporadic payments https://example.com/ 1135 446965 446965.447237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8847049401953 0 \N \N f 0 \N 0 115989926 0 f f \N \N \N \N 446965 \N 0 0 \N \N f \N 2025-03-28 11:23:57.932 f \N \N \N 0 0 0 0 0 0 0 443701 2025-03-19 13:23:45.383 2025-03-29 22:39:51.957 \N Indeed. The thesis from **The Sovereign Individual** (written in 1996) is a useful reference, which I have stolen from @blocktock's summary [here on SN](https://stacker.news/items/49781/r/davidw):\n\n- **Taxing capacity in Western economies will plunge** by ~50-70 percent. This will tend to make smaller jurisdictions more successful.\n- **Incomes will become more unequal within jurisdictions and more equal between them.**\n- Unlike the Agricultural Revolution, the Information Revolution will not take millennia to do its work. It will happen almost everywhere at once. \n- **Technical and economic innovations will no longer be confined** to small portions of the globe. The transformation will be all but universal.\n- The cybereconomy, rather than China, could well be the greatest economic phenomenon.\n- The Information Age will be the age of upward mobility. It will afford **far more equal opportunity** for the billions of humans in parts of the world that never shared fully in the prosperity of industrial society.\n- Those who live in jurisdictions that remained poor or underdeveloped during the industrial period have the most to gain by the liberation of economies from the confines of geography. This is contrary to what you will hear.\n- **Jurisdictions in Latin America and Asia where per capita income is rising rapidly may endure for generations**, or until lifetime income prospects there equate with those in the formerly rich industrial countries.\n https://example.com/ 1008 443274 443274.443701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20050777257173 0 \N \N f 0 \N 0 133397928 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 2025-03-26 06:40:58.42 f \N \N \N 0 0 0 0 0 0 0 443014 2025-03-19 00:36:17.722 2025-03-29 22:39:51.957 \N There’s a cultural reason in the loud opposition to experimentation.\n\nIt’s actually just loud opposition, not strong opposition! Most bitcoiners don’t oppose experiments. But many builders confuse the loud voices for strong voices, and just give up.\n\nPersonally as people might’ve noticed, I don’t really mind opposition, and I’m happy to charge away anyways, but that’s not always the case for all builders. I think many of them were turned off because of the culture, even if that’s somewhat irrational, but thankfully I think the culture is starting to change in the last year.\n\nExperimentation is important, because through experimentation you discover new successful usecases (and many failed usecases!), and each new successful usecase brings about a wave of adoption. https://example.com/ 21577 442904 442904.443014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3292470674907 0 \N \N f 0 \N 0 14443485 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 2025-03-26 03:10:12.832 f \N \N \N 0 0 0 0 0 0 0 418021 2025-02-26 18:40:12.441 2025-03-29 22:39:48.161 Are you a foot person or a car person? I started listening to [The Death and Life of Great American Cities](https://en.wikipedia.org/wiki/The_Death_and_Life_of_Great_American_Cities) on my walks to/from Pleb Lab.[^1] I haven't gotten very far but Jacobs describes a chasm between foot people and car people in cities. It's kind of minor thing but I found it surprising. \n\nIt makes sense that car people would prefer more roads and parking and foot people more trees and walkways but, so far at least, she implies there's some deeper disagreement.\n\nAnyway, are you a foot person or a car person?\n\n[^1]: I'm bad at finishing audiobooks and worse at listening intently. I wish audiobooks were conversations with authors that somehow had content parity. \N 20922 \N 418021 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 5.17661082638906 0 \N \N f 0 \N 0 25850687 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 18:01:08.755 f \N \N \N 0 0 0 0 0 0 0 435100 2025-03-12 13:12:16.832 2025-03-29 22:39:48.161 Homework for Life H4l is the idea, in a nutshell, of finding something in your life, every day, to make a story out of. On the surface level you might think _cool I guess, then you'd have a bunch of dumb stories about the crap that happens in your life, for whatever that's worth_.\n\nBut what you really get from the practice is not only a bunch of stories, but a new way of seeing the world, an increased power _to notice_. If you've ever gotten really good at something like a musical instrument, or a sport, and then afterward you find that you can see the world in terms of that thing, or you can observe the thing and pick out elements that an untrained observer can't even detect? H4l sort of helps you do that with the actual world, and your actual life. \n\nAt least that's what I've found. And the author (in the link I shared) makes the same claim, so I'm guessing it's broadly true. I was reminded of how special this is by [this post](https://stacker.news/items/398641). @ekzyis, I think this will really resonate with you. https://www.youtube.com/watch?v=x7p329Z8MD0&t=933s 2342 \N 435100 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 28.2273459887386 0 \N \N f 0 \N 0 233003106 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:20:49.083 f \N \N \N 0 0 0 0 0 0 0 434462 2025-03-11 23:03:38.971 2025-03-29 22:39:48.161 How many family members have you Orange Pilled? \N \N 14857 \N 434462 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.7006203904823 0 \N \N f 0 \N 0 177525852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:50.599 f \N \N \N 0 0 0 0 0 0 0 447902 2025-03-22 08:53:32.353 2025-03-29 22:39:51.957 \N I might be late for the daily discussion. I'm excited for tomorrow because I've started working with another Bitcoin project to orange pill people from South Africa. I firmly believe Bitcoin adoption will explode in Africa in the next five years. One of the leading retailers in South Africa also started accepting Bitcoin payments. I am bullish. https://example.com/ 7185 447892 447892.447902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.08990848645818 0 \N \N f 0 \N 0 211382129 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 08:34:53.228 f \N \N \N 0 0 0 0 0 0 0 447149 2025-03-21 16:36:23.309 2025-03-29 22:39:51.957 \N When you create a new software wallet, you get this screen:\n\nhttps://i.postimg.cc/jqHB0nn6/2023-10-26-040739-649x692-scrot.png\n\nYou can choose to add a passphrase.\n\nUsing a passphrase should be the same as hidden wallets since any password will open a valid wallet:\n\nhttps://i.postimg.cc/FFVCntwD/2023-10-26-040812-699x151-scrot.png\n\nThis is something different from using a password to encrypt your wallet which you can also do with Sparrow. https://example.com/ 18557 447146 446371.446452.446464.446465.447065.447142.447146.447149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6136182880453 0 \N \N f 0 \N 0 64796703 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:27:42.557 f \N \N \N 0 0 0 0 0 0 0 443436 2025-03-19 10:56:40.314 2025-03-29 22:39:51.958 \N We block scammers all the time. They just come back with a different ID lol.\n\nWe will not have a scammer issue on the private server, because we are charging $$$ to join the server. You get removed, the only way to rejoin is to pay again, which scammers won't do. Problem sovled. It's the only way to solve it https://example.com/ 11776 443432 443105.443282.443286.443335.443351.443432.443436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1277994599785 0 \N \N f 0 \N 0 158343555 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 2025-03-26 05:45:47.265 f \N \N \N 0 0 0 0 0 0 0 436399 2025-03-13 14:29:03.156 2025-03-29 22:39:51.958 \N Of course I care, but until I read your comment I didn't know how to do this, I'll digest the comment and start developing your tip.\n\nI want to spread 'the word of satoshi' and if I can improve the content along the way, I sure do, I really do.\n\nMy goal since February 2023 is to be a bridge between bitcoin and human being, if you can tell me more tips and how to be 'the best bridge' please tell me now https://example.com/ 16556 436390 436390.436399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4211129090672 0 \N \N f 0 \N 0 227813022 0 f f \N \N \N \N 436390 \N 0 0 \N \N f \N 2025-03-20 07:48:55.481 f \N \N \N 0 0 0 0 0 0 0 448751 2025-03-22 20:54:24.427 2025-03-29 22:39:51.958 \N [![darth-vader-drunk.gif](https://imgprxy.stacker.news/ihc5olX2n7Y4enscqtWCzPDJNFXaUrLdQTZ-3oWhsoo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvNjNkZkRIbTMvZGFydGgtdmFkZXItZHJ1bmsuZ2lm)](https://postimg.cc/5Y2zzm1d) https://example.com/ 21202 448469 448092.448469.448751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5160056311515 0 \N \N f 0 \N 0 34294289 0 f f \N \N \N \N 448092 \N 0 0 \N \N f \N 2025-03-29 15:08:39.909 f \N \N \N 0 0 0 0 0 0 0 434897 2025-03-12 10:18:01.699 2025-03-29 22:39:48.161 Groundbreaking Solution to BTC<>Sats Denomination Problem Implemented. A few weeks ago, I stumbled upon this [tweet](https://twitter.com/BTCMentoring/status/1645531187799105536) discussing the innovative solution of the peachbitcoin project, which uses the 8 decimals standard to simplify the BTC and Sats conversion process. This idea was truly mind-blowing 🤯 to me, and I was inspired to implement it in my Savior Bitcoin Wallet project today!\n\n![Savior Bitcoin Wallet Gif](https://i.ibb.co/3dybmJb/savior-bitcoin-wallet.gif)\n\nIf you're interested in checking out my work, please visit my project's GitHub repository here: https://github.com/aniketambore/savior-bitcoin-wallet\n\nThanks! \N 1141 \N 434897 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.76477355599636 0 \N \N f 0 \N 0 147587889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:04:34.12 f \N \N \N 0 0 0 0 0 0 0 436367 2025-03-13 13:58:14.924 2025-03-29 22:39:51.952 \N > *It took almost 4 years to make their first 5 million Lightning payments, but then only 8 months to get their next 5 million.*\n\nThe exponential function is my favorite thing in life 👍 https://example.com/ 4048 436304 436241.436243.436304.436367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.9256356703639 0 \N \N f 0 \N 0 53114117 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:25:10.267 f \N \N \N 0 0 0 0 0 0 0 435190 2025-03-12 14:16:10.872 2025-03-29 22:39:51.951 \N - ESP32-S3 main CPU\n- Wifi (2.4Ghz) and Bluetooth support\n- ESP-Now protocol for device-to-device radio, Internet access via your 2.4Ghz Wifi access point\n- RGB light for "message waiting" feature\n\nLooks targeted at being a Validating Lightning Signer device:\n\nhttps://gitlab.com/lightning-signer/docs/-/wikis/Design/Embedded%20Device%20Requirements\n https://example.com/ 21332 435183 435154.435183.435190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.93515063380116 0 \N \N f 0 \N 0 68483480 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 10:32:58.734 f \N \N \N 0 0 0 0 0 0 0 448730 2025-03-22 20:23:53.506 2025-03-29 22:39:51.954 \N For anyone reading, I would like to say all of these methods are flawed for various reasons. Please, read on regular, simple best practices instead of doing funky approaches. https://example.com/ 2285 448697 448527.448554.448697.448730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.47847340269376 0 \N \N f 0 \N 0 231359744 0 f f \N \N \N \N 448527 \N 0 0 \N \N f \N 2025-03-29 14:37:56.253 f \N \N \N 0 0 0 0 0 0 0 433998 2025-03-11 14:57:25.53 2025-03-29 22:39:51.958 \N Making steady progress in my tiny cabin project 😉 \n\nYesterday I was supposed to work on the porch but I've decided to make some changes in the plan and leave the porch for the end. In the beginning I wanted the cabin and the porch to be covered with a single roof. Now, the change is that the porch will have a separate, lower, flat roof. More sun will get through the top front window and we'll be able to chill on the roof on sunny days 😄\n\n![working on the roof](https://i.ibb.co/Rcqzcf7/working-on-the-roof.jpg)\n\nHave a great day ahead! https://example.com/ 1261 433987 433828.433981.433987.433998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.20193100430074 0 \N \N f 0 \N 0 135887148 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-18 16:31:44.019 f \N \N \N 0 0 0 0 0 0 0 433649 2025-03-11 09:37:15.639 2025-03-29 22:39:48.161 Introducing Subaccounts in Alby Hub > ![](https://m.stacker.news/62542)\n>\n> ## What can you do with Subaccounts?\n>\n> Thousands of @Alby Hub runners may share their Hub through subaccounts with their friends. The Friends & Family app in the App Store of your Hub makes the management super simple. The end result being a much higher level of decentralization on the lightning network than we have today, while still allowing seamless onboarding of new users without them having to understand about channels, liquidity, or even the first thing about bitcoin or lightning.\n>\n> Subaccounts can also be used to better manage your activity and balances across apps - you'll only see transactions made by that app rather than your entire wallet, and since NWC allows apps to not just pay, but receive - you can easily see earnings from your activity on a single app.\n>\n> **[...read more at blog.getalby.com](https://blog.getalby.com/introducing-subaccounts-in-alby-hub/)** https://blog.getalby.com/introducing-subaccounts-in-alby-hub/ 7746 \N 433649 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 0.550731227542229 0 \N \N f 0 \N 0 221406479 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 06:45:53.904 f \N \N \N 0 0 0 0 0 0 0 434573 2025-03-12 03:14:21.086 2025-03-29 22:39:51.954 \N Strange nightmare. \n\nI posted all my personal information on stacker news / nostr by mistake \n\nAddress \nSSN\nbirthday\nAll my accounts\n\nAll because I was trying to post my wins \n\nI was so stressed tried to delete everything turned on credit monitoring.\n\nBut my private keys were still safe 😁 https://example.com/ 1729 434569 434457.434569.434573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.41718374796736 0 \N \N f 0 \N 0 164425254 0 f f \N \N \N \N 434457 \N 0 0 \N \N f \N 2025-03-18 20:34:31.086 f \N \N \N 0 0 0 0 0 0 0 435230 2025-03-12 14:42:34.831 2025-03-29 22:39:51.954 \N The great thing about stacker news is that zaps completely replace likes.\n\nOn nostr you have to make a cognitive decision whether to like or zap - and when you're forced to think about that choice it reminds you one of them is free and the other isn't.\n\nNostr would be much better without the regular likes and just the zaps. https://example.com/ 15526 435212 435046.435135.435162.435200.435212.435230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0184502948422 0 \N \N f 0 \N 0 14051055 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:09:29.88 f \N \N \N 0 0 0 0 0 0 0 443316 2025-03-19 08:58:58.395 2025-03-29 22:39:51.954 \N Forgive me if you've answered this before, but do you think the existence of only 21m bitcoin was:\n\n1. the intentional removal of a premature optimization/requirement\n2. economically motivated and coincidentally removed a premature optimization/requirement https://example.com/ 21416 443295 443295.443316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4165267021238 0 \N \N f 0 \N 0 40971588 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:14.524 f \N \N \N 0 0 0 0 0 0 0 436386 2025-03-13 14:14:57.012 2025-03-29 22:39:51.955 \N @kepford and @TNStacker, I just finished the first season of Fallout. If either of you wants to post about your thoughts on the series, I'd love to hear them. https://example.com/ 19826 436381 436362.436375.436381.436386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.41648607942006 0 \N \N f 0 \N 0 61207172 0 f f \N \N \N \N 436362 \N 0 0 \N \N f \N 2025-03-20 07:34:16.704 f \N \N \N 0 0 0 0 0 0 0 443747 2025-03-19 13:55:06.884 2025-03-29 22:39:51.955 \N You guys cheerfully share so much knowledge, I can only be grateful and say I'm at the right place!!\n\nThis post is superb! I'm gonna keep it in bookmarks and also the one from @Undisciplined. \n\nFor my 15 days with SN, I've just come here once a day that too for a few minutes. I read whatever I can find close to my interest. I zap posts and comments and go back. What I can see that my Sats have been increasing daily and within a few days I've accumulated 25k. \n\nHowever, I'm still not fully aware, how all of this works but I'm enjoying this part of 'give and take' here on SN!\n\nThank you everyone!! https://example.com/ 15060 443743 443743.443747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9681525328561 0 \N \N f 0 \N 0 33047741 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 2025-03-26 07:12:53.444 f \N \N \N 0 0 0 0 0 0 0 447163 2025-03-21 16:47:40.348 2025-03-29 22:39:51.955 \N I had a fantastic time at my first bitcoin meetup aside from PubKey events last night. I think I'll do a write up about it in a few days, but I must mention this. I'm a little hard of hearing, so after one guy introduced himself to the group I wasn't sure if I missed his name. I asked him what his name was again, and, without skipping a beat, he smirked and said "nice try, fed." I knew I would feel at home. https://example.com/ 18409 447162 447162.447163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6832401821248 0 \N \N f 0 \N 0 29250123 0 f f \N \N \N \N 447162 \N 0 0 \N \N f \N 2025-03-28 11:29:28.817 f \N \N \N 0 0 0 0 0 0 0 447956 2025-03-22 09:57:18.703 2025-03-29 22:39:51.956 \N ![tax](https://nostr.build/i/nostr.build_29754d5f05f7aab9eabe72d163fc230694619c7a464f892d425c2243b79e8b69.jpeg) https://example.com/ 16598 447944 447944.447956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4622339703026 0 \N \N f 0 \N 0 102945461 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N 2025-03-29 08:34:10.988 f \N \N \N 0 0 0 0 0 0 0 435400 2025-03-12 16:46:59.077 2025-03-29 22:39:51.952 \N My son is literally touching grass.\n\nAnd making a sword composed of a branch and dead leaves.\n\nHis spirit is free.\n\n![IMG_1162.jpeg](https://m.stacker.news/19776) https://example.com/ 21585 435399 435392.435395.435399.435400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.88284362139174 0 \N \N f 0 \N 0 101074505 0 f f \N \N \N \N 435392 \N 0 0 \N \N f \N 2025-03-19 10:17:00.079 f \N \N \N 0 0 0 0 0 0 0 435536 2025-03-12 19:03:52.662 2025-03-29 22:39:51.952 \N I started writing a Nostr client in Common Lisp a few days ago. Nothing to link yet, since the code is unusable at the moment.\n\nMonths ago, I had started designing a protocol to replace email. But I realized I could build it on Nostr and skip a few steps. https://example.com/ 6616 435210 435030.435210.435536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1394407160733 0 \N \N f 0 \N 0 82545509 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 14:48:23.389 f \N \N \N 0 0 0 0 0 0 0 435640 2025-03-12 20:51:19.782 2025-03-29 22:39:51.953 \N > I value satoshis and maxis over UI, so Stacker News wins hands down for me.\n\nI've been migrating to Stacker News from Twitter for keeping up with Bitcoin topics. "Maxis over UI" is a primary reason -- the sign to noise ration is much better here.\n\nIn particular, on Twitter is easy to fall into political rabbit holes (alt-right, anti-COVID, natural diets/lifestyles, etc.). Even though I agree with most of these ideas, it's not healthy media consumption to engage in these topics daily. Almost all Bitcoin users on Twitter delve into these areas, so it's hard to avoid. https://example.com/ 19494 435631 435610.435631.435640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1951681559999 0 \N \N f 0 \N 0 209958752 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 2025-03-19 16:15:25.495 f \N \N \N 0 0 0 0 0 0 0 438678 2025-03-15 19:28:15.133 2025-03-29 22:39:51.954 \N Welcome :)\nPlease fill your bio and post regularly stories and updates from your community.\nAfter making sure is not an imposter account this community will reward and help you I'm sure. I already donated once and promoted here after the Anita satsraiser.\nGodspeed https://example.com/ 21391 438612 437966.437970.437973.438612.438678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3233593801068 0 \N \N f 0 \N 0 158783577 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 2025-03-26 05:47:26.669 f \N \N \N 0 0 0 0 0 0 0 443373 2025-03-19 09:58:29.43 2025-03-29 22:39:51.958 \N ![](https://m.stacker.news/38772) https://example.com/ 14857 443092 442904.443092.443373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5983457664536 0 \N \N f 0 \N 0 27267344 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 2025-03-26 03:19:49.94 f \N \N \N 0 0 0 0 0 0 0 434431 2025-03-11 22:05:14.789 2025-03-29 22:39:51.959 \N There were a lot of precursors, but having children really prompted me to reflect on innocence, guilt, and the love between Creator and created. https://example.com/ 16988 434400 433588.434276.434400.434431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5655393878161 0 \N \N f 0 \N 0 117177493 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 2025-03-18 20:41:29.38 f \N \N \N 0 0 0 0 0 0 0 448907 2025-03-23 00:59:06.633 2025-03-29 22:39:51.959 \N The most surprising thing I've learnt about others is how much people love and appreciate uniqueness. When I first started making the rap videos I was a bit worried that people would think it was weird. But reflecting on why being different is good, I think we're all a bit jaded by the tsunami of sameness (e.g. Tiktok trends done again and again by hundreds of people). As sats become more prolific in these platforms (and as more people use Stacker News!) we'll be able to navigate our way through the noise and be able find and encourage more uniqueness in everyone!\n\n\nThe most surprising thing I've learnt about myself is how much I enjoy the process. I'm usually very outcome-oriented, but the pure joy of being in the flow of the process is nothing like I've experienced in any type of work I've done ^_^ https://example.com/ 21400 448527 448527.448907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6040333027969 0 \N \N f 0 \N 0 172424344 0 f f \N \N \N \N 448527 \N 0 0 \N \N f \N 2025-03-29 19:41:46.644 f \N \N \N 0 0 0 0 0 0 0 443246 2025-03-19 07:50:43.84 2025-03-29 22:39:51.959 \N Just shipped title character limits https://example.com/ 11423 442561 442191.442561.443246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5510803219694 0 \N \N f 0 \N 0 75074578 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 2025-03-26 04:19:58.197 f \N \N \N 0 0 0 0 0 0 0 434619 2025-03-12 04:31:10.602 2025-03-29 22:39:48.161 [Pull Request] NIP-104: End-to-End Encrypted DMs by erskingardner > # NIP-104\n> \n> ## Double Ratchet E2EE Direct Messages\n> \n> This NIP defines an encrypted direct messaging scheme that provides double-ratchet E2EE (end-to-end encryption) with forward secrecy & post-compromise (backward) secrecy and allows users to access messages from multiple synced devices.\n> \n> - Live demo\n> - Demo app code\n> - Demo app video with explainer\n> \n> ## Context\n> \n> Currently, one-to-one direct messages (DMs) in Nostr happen via the scheme defined in NIP-04. This NIP is not recommended because, while it encrypts the content of the message, it leaks significant amounts of metadata about the parties involved in the conversation.\n> \n> With the addition of NIP-44, we have an updated encryption scheme that improves some (but not all) of the metadata leakage and improves the obfuscation of message content but this NIP stops short of defining a new kind number or scheme for doing direct messages using this encryption scheme.\n> \n> There have been a few separate proposals for new ways to do DMs that do not leak metadata. The most accepted (and recently merged) one is NIP-17 which combines NIP-44 encryption with NIP-59 gift-wrapping to hide the actual direct message inside another set of events to ensure that it's impossible to see who is talking to who and when messages passed between the users. This solves the metadata leakage problem and does allow some degree of deniability/repudiation but doesn't solve forward/backward secrecy. That is to say, if a user's private key (or the calculated conversation key used to encrypt messages) is compromised, the attacker will have full access to all past and future DMs sent between those users.\n> \n> ### [... read more](https://github.com/nostr-protocol/nips/blob/2169fab971591d0b4a450ef08aeb6301c5d2a0da/104.md) https://github.com/nostr-protocol/nips/pull/1206 14939 \N 434619 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.0985927407005 0 \N \N f 0 \N 0 213981580 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:12:24.645 f \N \N \N 0 0 0 0 0 0 0 436008 2025-03-13 08:14:59.431 2025-03-29 22:39:48.161 Nudges for SN First came across nudges being discussed at length in a book titled “Work Rules!” written by Laszlo Bock. Laszlo was the ex-Senior Vice President of People Operations, and he described how nudges were deployed to prompt people to make beneficial decisions at the right timing.\n\nI thought nudges was an idiosyncratic term invented by Laszlo to describe the fine work he and his team had done. But it turned out that it is actually a popular behavioural science concept - and [books have been written about it.](https://www.nytimes.com/2015/11/01/upshot/the-power-of-nudges-for-good-and-bad.html)\n\nThe obvious question then lies in how we can harness nudges here on Stacker News to make things better than they currently are. Of course, *better* is subjective, but I venture that it’s safe to say that many Stackers are cognisant of the trend of declining zaps. Some attribute it to the busy summer; others point out Million Sats Madness as one of the causes. Well, the thing is: no one exactly knows.\n\nWhat will then be non-intrusive ways to encourage increased activity? There is a saying that goes, “Don’t preach to the converted.” Not all Stackers are bound to the addictive power of the cowboy hat, but for those who are, why not send a notification to Stackers who will lose their hat if they don’t zap something within the next hour? Sometimes, people lose their hats because they mistakenly think that they have zapped enough. Until Wham! the dreaded notification appears and they lose their emblem of honour.\n\nNo doubt, zapping someone just to keep my cowboy hat doesn’t feel organic. And I think that once I do get down to responding, I would zap 3 or 4 other comments since I’m already on it. It’s like how habit advocates suggest that we pick up a new habit - floss one tooth, exercise for the length of one song, etc. Once we get started, it’s easier to keep going.\n\nAnother nudge can be getting people who are being referred to fill in a simple form that will give the Stacker who brings him here some important information. Questions like “Would you like your referral know that you have joined SN because of him/her?” and “On what medium did you learn about SN?”\n\nVery often, we get referrals, but we have no idea how and why we get them. Knowing that a new Stacker joined because of me through a particular platform makes me want to look out for him or her on the site. After all, the referral says I get are dependent on the level of success my referee enjoys here. Also, if I know that my referee is directed as a result of my [blog](https://diaperfinancingfund.blogspot.com/2024/07/parents-corner-belly-laughter.html?m=1), I will then ~spam~ post more strategic content there. Win-win situation!\n\nWhat say you? What sort of nudges do you think Stacker News can leverage? \N 16998 \N 436008 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.56154641149895 0 \N \N f 0 \N 0 207350355 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 01:37:45.579 f \N \N \N 0 0 0 0 0 0 0 436537 2025-03-13 16:17:31.818 2025-03-29 22:39:51.954 \N ![Screenshot 2024-01-17 130017.png](https://m.stacker.news/12775)\n\nOh shiiiiiiit. thank you k00b! https://example.com/ 1175 436455 436028.436449.436455.436537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9264392337003 0 \N \N f 0 \N 0 72443782 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 10:44:04.353 f \N \N \N 0 0 0 0 0 0 0 434350 2025-03-11 20:03:04.061 2025-03-29 22:39:48.161 Double-Plus-Ungood: GMU's Orwellian "Just Societies" Mandate I don't generally feel like SN needs my help to stir up anti-woke sentiment, but this article is good, and Caplan is, I think, eminently reasonable, even though I disagree with him about a lot of stuff. This article amounts to a really nice and worrying summary about the state of affairs in major-ish American universities. https://www.betonit.ai/p/gmus-orwellian-just-societies-requirement 5499 \N 434350 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.6330204289242 0 \N \N f 0 \N 0 223522223 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:01.414 f \N \N \N 0 0 0 0 0 0 0 432705 2025-03-10 14:37:56.541 2025-03-29 22:39:48.162 Trump bitcoin report card - progress report 1 # Trump Bitcoin Report Card - progress report 1\n\n*How can grades be given on his bitcoin pledges when Trump hasn't even taken office?* True, Trump is currently not in office and therefore can't do anything formally on his pledges. However, the *possibility* of him being president (while a candidate) and the *future* of him being president (while president-elect) *can* actually change things.\n\nSo, a progress report is called for to see how things have passed since his Nashville speech laying out most of these pledges.\n\n*In education, there's the question of where do you start with a grade, at 0% failing and go up or 100% and go down?* Being bitcoiners, we should demand proof of work before giving anything. So, Trump starts with all Fs, we look for work, we award credit for that work, and we go from there.\n\n- GitHub: https://github.com/crrdlx/trump-bitcoin-report-card\n- First post: https://stacker.news/items/757211\n\n**Progress Report 1**\n\n| | Pledge | Grade | Notes |\n|--|--|--|--|\n| 1 | Fire SEC Chair Gary Gensler on day 1 | B- | |\n| 2 | Commute the sentence of Ross Ulbricht on day 1 | NG | See comments |\n| 3 | Remove capital gains taxes on bitcoin transactions | F | |\n| 4 | Create and hodl a strategic bitcoin stockpile | C | |\n| 5 | Prevent a CBDC during his presidency | C+ | |\n| 6 | Create a "bitcoin and crypto" advisory council | D- | |\n| 7 | Support the right to self-custody | D | |\n| 8 | End the "war on crypto" | D+ | |\n| 9 | Mine all remaining bitcoin in the USA | D- | |\n| 10 | Make the US the "crypto capital of the planet" | C- | |\n\n### Comments\n**Pledge 1** - There is [debate](https://www.steptoe.com/en/news-publications/blockchain-blog/the-fate-of-gary-gensler-and-implications-for-crypto-of-an-sec-in-transition.html) as to whether the president has the power to fire the SEC chief. Apparently, Senate approval is required. Things seem to be at play: first, there evidently is a tradition that the SEC chairs steps down when a new president (or at least a new political party) takes over. This allows for the new administration to move forward with his newly elected policies. Given Gensler's [recent comments](https://decrypt.co/291834/gary-gensler-sec-chair-been-proud-to-serve), it seems this is becoming a reality. Secondly, even if Trump does not have the explicit power to fire Gensler on day 1, there may be other ways to oust Gensler. Trump might begin, on day one, to initiate the process. More likely, Trump's positions on the SEC chair have already sealed Gensler's fate. Combined with the tradition of stepping down, Trump's words have effectively already fired Gensler. There's a good chance that Gensler [resigns before](https://cryptobriefing.com/gary-gensler-step-down-sec/) January 20, 2025 (when Trump is inaugurated), thus depriving Trump of carrying out his fire-on-day-one promise. Either way, Gensler seems done because of Trump. So, Trump gets a decent starting grade here on the progress report. \n\nProgress Report Grade: B-\n\n**Pledge 2** - This pledge actually is binary: either Ulbricht's sentence is communted on day one or not. However, there is a bit of nuance. First, does this mean commuted sentence only or that Ulbricht actually walks out of jail? Certainly there is some time lag between a commutation and walking out. If ultra-motivated on this, Trump might work the mechanisms pre-inauguration to allow for Ulbricht to literally be released on January 20, 2025. That would yield a strong A+ grade. If by day two the sentence is not commuted, a grade of "F" would be appropriate. But, the pledge was to commute on day one. So, for now, an "NG", no grade, is assigned.\n\nProgress Report Grade: NG\n\n**Pledge 3** - Until legislation on bitcoin and crypto taxes actually gets codified, a passing grade isn't warranted. Some credit might, *might* be given for at least bringing up this topic and entering it into public discussion. This type of talk might actually help Pledges 8 and 10 to some degree by making the US more bitcoin and innovation-friendly. But, the IRS is not concerned with discussion and friendliness. They hold taxpayers to the tax code and the tax code is either changed or it is not. \n\nAlthough this pledge seems binary, one bit of nuance might *still* exist even if capital gains are not exempted. Namely, the new Trump era might clarify what exactly the tax implications of bitcoin actually are. For instance, it would be helpful to formally know if bitcoin is considered property or if it is currency or how is it like a stock and which governmental agency are bitcoiners dealing with (the SEC, CFTC, IRS, others, or all?). Even though capital gains would not be exempted here, this would help bitcoiners tax-wise.\n\nProgress Report Grade: F\n\n**Pledge 4** - By stating in his Nashville speech that a "strategic bitcoin stockpile" would be implemented, step one was made toward a bitcoin reserve. This gets Trump a fair starting grade for the progress report. To improve, as president, we need to see "formal" statements and actions. The BTC held by the US needs to continue to be held. And, a plan for buying more BTC needs to be made. Holding, followed by actually buying more BTC will improve this grade. \n\nAs a note, Michael Saylor outlined in [this podcast](https://fountain.fm/episode/DHEzGE0f99QQqyM36nVr) why such a bitcoin strategic reserve could be useful to the US in a "cyberspace" "Manifest Destiny." Were Trump were to take up Saylor's advice and move in that direction, the grade here would improve considerably.\n\nProgress Report Grade: C\n\n**Pledge 5** - Currently there is no CBDC. So, it's actually *inaction* that gets a decent grade here. Trump's speech, pro-bitcoin appointees, and a more favorable Congress lend well toward continued inaction, that is, not moving forward toward a CBDC. To improve this grade, formal policies restricting or forbidding a CBDC going forward need to be laid out.\n\nProgress Report Grade: C+\n\n**Pledge 6** - Creating an advisory council might be one of the easiest pledges to follow through on. It would require simply an announcement of a team and then, perhaps, occasional meetings. Of course, who is on the team might matter (ie, how much influence will altcoiners have) and what comes out of the council might matter as well. Nothing particularly has happened on this, except, maybe, the [recent meeting](https://www.wsj.com/livecoverage/stock-market-today-dow-sp500-nasdaq-live-11-18-2024/card/exclusive-trump-to-meet-privately-with-coinbase-ceo-brian-armstrong-DDkgF0xW1BW242rVeuqx) with Brian Armstrong about "personnel" appointments. \n\nProgress Report Grade: D-\n\n**Pledge 7** - This pledge begins a series of pledges that are rather nuanced...it will be difficult to definitively say, "Yes this pledge was accomplished," or, "No, it was not." One metric as to whether the right to self-custody is maintained is how many wallets or developers are "attacked" by the US justice system. If the justice system goes after very few, or none at all, that would signal the right to self-custody is indeed maintained. There's little to grade on here post-election and pre-inauguration. Perhaps the only thing to grade is what's *not* present, the "unseen" in economics terms. There does seem to be less chatter about bitcoin being scams and the tool of terrorists and criminals. \n\nHowever, conversely, the home of the Polymarket founder was recently raided...a possible signal that the crypto world is not left unnoticed and the arm of the government can still wield power. As an initial progress report, the grade starts low and changes must be seen as evidence for the grade to improve. There needs to be policy or legislation that specifically ensures the right to self-custody.\n\nProgress Report Grade: D\n\n**Pledge 8** - Like Pledge 7, this is also a subjective promise. "Stopping" the "the war on crypto" will not have a clear toggle of yes or no, it will be open for interpretation.\n\nSenator Elizabeth Warren's "war on crypto" has lost several battles recently. Republicans have been seen as more bitcoin-friendly, but Democrats have been slowly changing their tune. During her campaign, Vice President Harris started to grow more pro-bitcoin. And, "war on crypto" politicians have tempered their words. Certainly the "war on crypto" crowd has been hushed. With Republicans (generally more pro-bitcoin) in the White House and both houses of Congres, the crypto warriors numbers seem to have become a minority. Their possible ability to push legislation through seems very small, at best, at the moment. Trump deserves some credit for changing these numbers.\n\nFor Trump to keep Pledge 8, he needs to further this pendulum swing away from bitcoin animosity and toward pro-bitcoin policies. One way of doing this is to use the "[bully pulpit](https://en.wikipedia.org/wiki/Bully_pulpit)" of the White House to change the narrative. In a way, Trump's Nashville speech has already done this - giving Trump a good initial starting grade. If pro-bitcoin legislation comes to the US Congress, such as Senator Cynthia Lummis' bill, the degree of Trump's support will also impact his report card grade here. Certainly, him signing into law a bill favorable to bitcoin would help his grade on this pledge. Like Pledge 7, we start low and need real evidence to improve the grade. Already, Trump has named "pro-bitcoin" people to top positions...this is a good signal and gets a "+" added to the D.\n\nProgress Report Grade: D+\n\n**Pledge 9** - Anyone who knows anything about bitcoin knows this pledge is impossible. What's more, it's not even desirable. Being decentralized, bitcoin *cannot* be mined in only one location. Anyone who mines can mine blocks regardless of locale. And, it would not be ideal to have all of the blocks mined in one nation because decentralization would then be undercut. Most likely, when Trump called for remaining bitcoin to be "mined, minted, and made in the USA," this was him engaging in some old-fashioned campaign hyperbole. \n\nSince the pledge is impossible to actually happen, grading this pledge becomes difficult. One must start with the fact that Trump made an impossible-to-keep promise. If he doesn't understand that, then that misconception is a serious strike against him from the start. If he does get this, but just wanted to score political points with a sounds-good line, that's not particulary endearing either. Either way, his starting grade for Pledge 9 is low. Going forward, grading this pledge is likely conjoined with Pledge 8 - if the "war on crypto" is brought to an end in the US, American mining activity should stand to benefit. A grade here might be impacted by: (a) US judicial system *not* bringing action toward miners, (b) by *not* criticizing the use of electricity by miners as being environmental waste, and (c) by lowering the cost of energy. A more tangible measure of any success here might be in any increase in the hash rate of US miners. Pro-mining policies, cheaper energy, and an increased US hash rate would boost Trump's grade on this pledge.\n\nProgress Report Grade: D-\n\n**Pledge 10** - Pledge 10 is all-encompassing and is therefore really linked to all-of-the-above. In recent years, there has been talk (and action) of US human capital and US companies leaving to other more bitcoin-friendly nations. This chatter has already seemed to subside. And again, Trump's embrace of bitcoin might be seen as a major part of this flee-the-US mentality of bitcoiners. Also, the Nashville speech in particular may be later seen as a watershed moment. Given by someone who just-might-become-president, such a strongly pro-bitcoin speech may well have changed the bitcoin narrative and mood. By accepting bitcoin and gaining bitcoiners' support, one might say Trump single-handedly forced Democrats (including candidate Harris) to flip their anti narratives into pro.\n\nProgress Report Grade: C-\n\n1. Nashville speech - https://www.youtube.com/watch?v=EiEIfBatnH8\n2. CryptoPotato "top 8 promises" - https://x.com/Crypto_Potato/status/1854105511349584226\n3. CNBC - https://www.cnbc.com/2024/11/06/trump-claims-presidential-win-here-is-what-he-promised-the-crypto-industry-ahead-of-the-election.html\n4. BLOCKHEAD - https://www.blockhead.co/2024/11/07/heres-everything-trump-promised-to-the-crypto-industry/\n5. CoinTelegraph - https://cointelegraph.com/news/trump-promises-crypto-election-usa\n6. China vid - Bitcoin ATH and US Strategic Bitcoin Stockpile - https://njump.me/nevent1qqsgmmuqumhfktugtnx9kcsh3ap6v7ca4z8rgx79palz2qk0wzz5cksppemhxue69uhkummn9ekx7mp0qgszwaxc8j8e0zw9sdq59y43rykyx3wm0lcd2502xth699v0gxf0degrqsqqqqqpglusv6\n7. Capitals gains tax - https://bravenewcoin.com/insights/trump-proposes-crypto-tax-cuts-targets-u-s-made-tokens-for-tax-exemption\n8. Meeting with Brian Armstrong - https://www.wsj.com/livecoverage/stock-market-today-dow-sp500-nasdaq-live-11-18-2024/card/exclusive-trump-to-meet-privately-with-coinbase-ceo-brian-armstrong-DDkgF0xW1BW242rVeuqx\n9. Michael Saylor podcast - https://fountain.fm/episode/DHEzGE0f99QQqyM36nVr\n \N 698 \N 432705 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 23.7138806177936 0 \N \N f 0 \N 0 57284997 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 13:55:00.045 f \N \N \N 0 0 0 0 0 0 0 443108 2025-03-19 04:02:37.339 2025-03-29 22:39:48.162 Mutiny Blog Our Data Driven Approach to Fixing Payment Reliability \N https://blog.mutinywallet.com/fixing-payment-reliability/ 1237 \N 443108 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.7543859713027 0 \N \N f 0 \N 0 6095471 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:13:52.375 f \N \N \N 0 0 0 0 0 0 0 435761 2025-03-12 23:58:06.724 2025-03-29 22:39:51.954 \N Why not use Stratum V2? https://example.com/ 20826 435746 435746.435761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4069449269572 0 \N \N f 0 \N 0 14462768 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 2025-03-19 17:43:41.568 f \N \N \N 0 0 0 0 0 0 0 436376 2025-03-13 14:07:02.353 2025-03-29 22:39:51.955 \N - I certainty have used nostr today. I've used it non stop since the day I tried it first.\n- What's the scale? Pick the strongest and double it, that's what I feel.\n- Adding a #tag to a nostr event that then automatically shows on SN. Having SN to push its posts as nostr events with that same #tag, so that they can be access by any nostr client. Having the bolt icon to simultaneously repost the event on nostr and tip the SN post. I think I could go on long... :-) https://example.com/ 8242 436281 436241.436281.436376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7507008231586 0 \N \N f 0 \N 0 94635503 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:23:32.338 f \N \N \N 0 0 0 0 0 0 0 434969 2025-03-12 11:23:23.443 2025-03-29 22:39:48.162 Why is Reddit currently not turning a profit? This [article](https://www.eff.org/deeplinks/2023/06/what-reddit-got-wrong) is interesting, but for me the main takeaway is that Reddit is not currently profitable? Any idea why? Is it primarily infrastructure costs? \N 12609 \N 434969 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 27.686394017961 0 \N \N f 0 \N 0 9086334 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:54:22.154 f \N \N \N 0 0 0 0 0 0 0 435695 2025-03-12 22:06:22.206 2025-03-29 22:39:48.162 Chapter 1: The Insightful Human Teacher Caleb put on the finishing touches on his lesson plan and pressed “Send”[^1]. Sporting a wide grin, he was confident that his client - also a teacher - would be pleasantly surprised by his work. After all, he had observed her interactions on the forum - she seemed to bond with her students over Korean shows. Therefore, his lesson plan featured a uniquely Korean twist: zombies invading the school. She would have fun marshalling her students to manage this “crisis” and ace her lesson observation as a result.\n\n[^1]: Actually I don’t fancy myself as a fiction writer. I don’t have the stamina to work on long novels. But this came to my mind after a particularly trying night with my daughter. Maybe it was my creative subconscious trying to console me. I know this chapter lacks the typical narrative arc, but I will just put it out here and see whether it will marinate further in my mind. Thanks for reading! \n\nIn this age of proliferation of AI tools, Caleb’s customised services were a rarity. After all, if teachers could get reasonably decent outputs for free, why would they pay to have a human lesson planner instead? But just because something is easy doesn’t mean that it addresses one’s need. Caleb was acutely aware of the value he brought to these teachers. A keen understanding of their psyche, empathy for their teaching circumstances, and oh yes, a truckload of creativity to help them teach effectively.\n\nCaleb’s train of thought was disrupted by a notification on his Lightning Network wallet. It seemed like his sats payment, along with an appreciative message from his client, had come into his possession. “Thanks, Caleb! You’re a lifesaver!” his client gushed. A surge of warmth flooded his senses. A tiny smile crinkled the corner of his mouth.\n\nHe expressed an inward silent thanks yet again for the AGORA marketplace on this Bitcoin-centric platform called Stacker News. It was a thriving place which stood tall and firm against the current pervasive flow of human endeavour. It comprised proud Bitcoiners who were willing to shun soulless babble and pay for authentic human ingenuity. \n\nCaleb pasted his client’s appreciative note on his glowing list of testimonies. He waited in bated breath for his next client.\n\n \N 9378 \N 435695 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 20.0293851618705 0 \N \N f 0 \N 0 26260320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 22:16:22.251 f \N \N \N 0 0 0 0 0 0 0 436555 2025-03-13 16:34:56.061 2025-03-29 22:39:48.162 Satoshi emails, part 2 Recently, I've been trying to decipher a question that _seems_ simple: "Did Satoshi write these emails?" There are three emails in question involving two people (other than Satoshi):\n- Wei Dai (two emails)\n- Jon Matonis (one email)\n\nFor the back-story, I wrote about this conundrum at https://stacker.news/items/691013 The upshot for my ponderance is that the NakamotoInstitute.org (BTC-friendly) does *not* include these emails, but the NakamotoStudies.org (BCH-friendly) site *does*. I wondered, "What's up?" Is this a BTC-vs.-BCH blockchain thing? A block size thing?" Frankly, I don't care. I just want to know if Satoshi wrote them.\n\nRegarding Wei Dai, the general consensus in the SN comments linked above was that I should go to the source...go to Wei Dai and ask. If real Satoshi-emails, then either he or Satoshi released them "into the wild" at some point and then they started to appear on various websites. 'Til maybe now, I hadn't seen that release point. \n\nThe Dai/Satoshi emails mostly pop up in two places in a search: bitcoin.com and gwern.net. I was familiar with bitcoin.com (and thus was a bit skeptical), but was unfamiliar with gwern.net. Was it just another bitcoin website? Anyone can make one. Was there an agenda? ¯\\_(ツ)_/¯\n\nSo, going to the source, I reached out to Wei Dai via email today. We'll see.\n\nDigging around, Wei Dai's site https://weidai.com says any questions can be posted publicly at https://www.lesswrong.com/ as an AMA. I went there. The "release point," evidence of Wei Dai sending out those emails may well be recorded there.\n\nHere is a message from gwern timestamped March 16, 2014 to Wei Dai asking about the Wei/Satoshi emails: \nhttps://www.lesswrong.com/posts/YdfpDyRpNyypivgdu/aalwa-ask-any-lesswronger-anything?commentId=hGuDqrpRTYiBsRB5Y\n\nScreenshot of the Wei Dai to Gwern reply:\nhttps://files.peakd.com/file/peakd-hive/crrdlx/23uFsVjJLZjzHuUTEFa5wX3p6CCwWGv6DNVnbqQUPKzKgPhE2xw9FB7cg6gB6QXJfFfax.png\n\nGwern's response to Wei Dai a couple of weeks later: \nhttps://files.peakd.com/file/peakd-hive/crrdlx/48JBGdhjZuTLKgTeAUXKuyaMikD2Kvh4HPK7vdiqpfvo24L4TshWkH4NRaqWuY5yJi.png\n\nThe page on gwern.net is still live at https://gwern.net/doc/bitcoin/2008-nakamoto. Being healthily skeptical, I looked for that page on the Internet Archive Wayback Machine. Unfortunately, that page is only first archived [in 2023](https://web.archive.org/web/20230208163356/https://gwern.net/doc/bitcoin/2008-nakamoto). But, gwern.net does go back to [2010](https://web.archive.org/web/20101011153322/http://www.gwern.net/) and the first bitcoin mention there seems to be [July of 2011](https://web.archive.org/web/20110723141839/http://www.gwern.net/), so, it was early.\n\nThe bottom line here, to me at least, is that Wei Dai's emails seem legit. Assuming the timestamps are legit, and that the emails being discussed from Wei Dai are indeed the same ones that gwern has on his site, then they're legit. It would take quite a bit of foresight to plan this out, starting 10 years ago, for this to be fake. The fact that the timestamp is pre-BCH, pre-block size wars is a big plus in my view as to the emails being legit. Those were the main reasons a question even arose in my mind, that and the NakamotoInstitute.org vs. NakamotoStudies.org exclusion/inclusion.\n\nMy next question, then, is back to NakamotoInstitute.org. Why, actually, are the Wei Dai emails not there? There must be a reason, and if a solid reason, why not share that reason publicly?\n\nI reached out to NakamotoInstitute.org asking effectively, "Why are the Wei Dai and Jon Matonis emails not included? Not judging, just honestly curious." We'll see. \n\nRegarding the Jon Matonis emails. I'd never even heard of him until this week. If you need a program to know the players, like me, he's apparently the former Executive Director of the Bitcoin Foundation (see [Wikipedia article](https://en.wikipedia.org/wiki/Bitcoin_Foundation)). It seems a bit hard to pin down what he's up to today. I will say one of the top hits when searching for his name pops up with [cypherpunkholdings.com...](https://cypherpunkholdings.com/about-us/board-of-directors/jon-matonis/) under "board of directors," complete with "cyphepunk" misspelling (screenshot below) What's more, that link forwards to a Solana DeFi project. Hmm. \n\nhttps://files.peakd.com/file/peakd-hive/crrdlx/EoCpNqtJuquEMYKwV9jgpeuURM44eSaUSxSPSCoeyfqPaSShz8prMYeeQ4c3yv2bTcT.png\n\nI reached out to Matonis via his hushmail.com email. We'll see.\n\nThat's all. Summary:\n- three Satoshi emails (to two people) are in question\n- the Wei Dai emails seem legit to me\n- the Jon Matonis email, I'm not so sure\n- would love to hear back from NakamotoInstitute.org\n\nWe'll see. :)\n\n@BITCOIN - tagging you here because I thought you might be interested in the Wei Dai part of this \N 1745 \N 436555 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 26.4895783413412 0 \N \N f 0 \N 0 239679368 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:02:52.226 f \N \N \N 0 0 0 0 0 0 0 435391 2025-03-12 16:41:45.126 2025-03-29 22:39:51.955 \N More than I think about the Roman Empire TBH.\n\nKinda partial to the ancient Mesopotamian beliefs:\n\n"When on high the heaven had not been named,\nFirm ground below had not been called by name,\nThere was nothing but primordial Apsu (male fresh water), their begetter,\n(And) Mummu Tiamat (female salt water), she who bore them all,\nTheir waters commingling as a single body."\n\nI can't help but imagine the watery sea serpent Tiamat wearing a Mumu - Kinda like Mrs. Roper.\n https://example.com/ 21119 435217 435217.435391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2832204610884 0 \N \N f 0 \N 0 47266894 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 11:07:00.33 f \N \N \N 0 0 0 0 0 0 0 448785 2025-03-22 21:43:16.463 2025-03-29 22:39:51.955 \N I don't mind taking a loss on the territory for even the first year. I just wanted to get a conversation going on how we can improve the economics and probably more importantly what are we going to do about marketing. 10x the users on SN is probably the solution. With more eyeballs come more desire to boost or advertise whatever it may be. Will there eventually be a cohesive marketing strategy that SN uses, and our territories piggyback off that or should we just do our own thing. \n\nOne thing I think we definitely need is a territory referral program and I don't mind if this is a shared cost between SN (or more likely the rewards pool) and the territory but I would like to be able to offer a new user 5 free posts and 100 sats or something along those lines to get them started. I am confident in the SN experience and the quality of content creation on SN that if we get people in the door they will keep coming back but as I mentioned in the post it is somewhat shocking to me that I am talking to bitcoiners on Nostr or twitter and they either don't know what SN is or vaguely heard about it but never used it. \n\nThis month I will be moving my territory social media posting to twitter and focusing on engaging with sports fans to try and get some newbies but also with the plebs on bitcoin twitter. Even if they don't want to talk sports but come to SN to talk bitcoin or econ or complain about shitcoins it's a win for all of us. https://example.com/ 671 448526 448526.448785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3072359397994 0 \N \N f 0 \N 0 74085789 0 f f \N \N \N \N 448526 \N 0 0 \N \N f \N 2025-03-29 15:36:27.002 f \N \N \N 0 0 0 0 0 0 0 435878 2025-03-13 04:00:53.77 2025-03-29 22:39:51.955 \N I bought recently some books at konsensus.network (https://bitcoinbook.shop/). Paying with lightning works like a charm. I used it several times before. https://example.com/ 20577 434318 434278.434318.435878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9263709196636 0 \N \N f 0 \N 0 40169583 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-20 02:05:42.943 f \N \N \N 0 0 0 0 0 0 0 436435 2025-03-13 14:59:11.69 2025-03-29 22:39:51.955 \N Unfortunately I don't remember what I bought with Lightning. Most of the things I buy online are over the Bitcoin network. I wanted to have an online piano subscription, to learn piano, but they only accepted creditcard payments. I ask if I could pay with Bitcoin and that was possible :-) They weren't were familiar with Bitcoin, but open to suggestions. Maybe to suggest using Phoenix wallet?\n\nTo help merchants accept Lightning payments, I think giving a demo workshop (free or paid) would be the best thing. As a merchant you get to experience it, not only see it. Besides that, a merchant for the first time sees a huge number of possibilities on the Lightning network to acquire new customers and have new business models. https://example.com/ 6578 436323 436323.436435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.906932883171 0 \N \N f 0 \N 0 211036939 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 2025-03-20 09:23:44.735 f \N \N \N 0 0 0 0 0 0 0 427186 2025-03-06 07:28:42.973 2025-03-29 22:39:48.162 Spaces Protocol: Scalable & Permissionless Bitcoin Identities \N https://spacesprotocol.org/ 4819 \N 427186 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6673981810657 0 \N \N f 0 \N 0 107945340 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 20:51:36.944 f \N \N \N 0 0 0 0 0 0 0 435511 2025-03-12 18:41:14.824 2025-03-29 22:39:51.952 \N Praxeology - Knut Svanholm \n\nIts like a condensed version of Human Action https://example.com/ 2741 435355 435314.435355.435511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1613931998332 0 \N \N f 0 \N 0 55421517 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:40.953 f \N \N \N 0 0 0 0 0 0 0 434399 2025-03-11 21:24:07.935 2025-03-29 22:39:51.954 \N TBH it's a little too complex for my tastes, and I think it might cater a little too much to the hard-core users that area already addicted to this place.\n\nI miss the dopamine fix of the daily rewards rather than waiting a full month, and I worry new users might not stick because they aren't seeing any of the rewards like before. https://example.com/ 827 434383 433934.434030.434383.434399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8172622336212 0 \N \N f 0 \N 0 56258409 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N 2025-03-18 23:01:02.196 f \N \N \N 0 0 0 0 0 0 0 435443 2025-03-12 17:20:32.833 2025-03-29 22:39:51.955 \N Bitcoin https://example.com/ 803 435086 435030.435086.435443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4103871623909 0 \N \N f 0 \N 0 87142567 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 10:45:51.775 f \N \N \N 0 0 0 0 0 0 0 436686 2025-03-13 19:37:01.879 2025-03-29 22:39:48.162 River Link Launches, Allowing Users To Send Bitcoin By Text \N https://bitcoinmagazine.com/business/river-link-launches-allowing-users-to-send-bitcoin-by-text?utm_source=carrot&utm_medium=partner&utm_campaign=carrot_share 9351 \N 436686 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 16.5408870021314 0 \N \N f 0 \N 0 172487235 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 13:09:58.052 f \N \N \N 0 0 0 0 0 0 0 428988 2025-03-07 19:33:58.595 2025-03-29 22:39:48.162 My first 10k sats I want to take a minute to thank everyone who has zapped some sats to my posts. I have earned my first 10k sats thanks to staker.news and all the plebbs who have contributed to this!\nStack sats and stack frens \nOrange is the new green!\nLet's go! \N 20660 \N 428988 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 10.7529050300885 0 \N \N f 0 \N 0 185898780 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:23:28.747 f \N \N \N 0 0 0 0 0 0 0 435513 2025-03-12 18:42:03.021 2025-03-29 22:39:48.162 Paying bills with bitcoin in Australia There are two companies I know of and have used to pay everyday bills using bitcoin in Australia. Effectively they take the bitcoin, convert it to Aussie dollars and pay your bill.\n\nThe longest running one - since about 2014 I think - is the Living Room of Satoshi (https://www.livingroomofsatoshi.com/) - and one thing I really like about this site is their statistics section. You can see who is paying for what (aggregated not identifying) - unsurprisingly credit cards and tax payments are usually the biggies. Supports a bunch of alts which I guess is a good way to ditch any you've got left.\n\nAnother one is PayBTC which has been around about 5 years now (https://paybtc.com.au/bpay) - same concept but slightly more limited scope - focuses on any bill that can be paid using BPay with a BPay code and reference. Love the simplicity of this UX and the fact that it's bitcoin-only.\n\nThe only other equivalent service that I know of is Bylls run by Bull Bitcoin in Canada - I think they started around the same time as Living Room of Satoshi - and let's face it - running a bitcoin business for a decade is a damn solid track record!\n\nBoth these Aussie businesses are run by reputable long-time bitcoiners in Queensland (God's Own Country) and give lots of flexibility to Australians about how you can use your bitcoin.\n\n \N 4538 \N 435513 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.44011738072118 0 \N \N f 0 \N 0 134051391 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:39:02.045 f \N \N \N 0 0 0 0 0 0 0 446697 2025-03-21 12:25:53.742 2025-03-29 22:39:51.954 \N I speak to strangers in the street and film the interactions 😆 https://example.com/ 9329 446631 446631.446697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7188607532055 0 \N \N f 0 \N 0 6487561 0 f f \N \N \N \N 446631 \N 0 0 \N \N f \N 2025-03-28 12:26:52.768 f \N \N \N 0 0 0 0 0 0 0 436321 2025-03-13 13:22:00.29 2025-03-29 22:39:51.955 \N This is super unfortunate - I won't be sharing Twitter links to anyone anymore. https://example.com/ 4287 436243 436241.436243.436321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6765522640369 0 \N \N f 0 \N 0 12660388 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:24:57.758 f \N \N \N 0 0 0 0 0 0 0 436085 2025-03-13 10:00:13.786 2025-03-29 22:39:51.955 \N bitcoins https://example.com/ 14280 436066 436066.436085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4857962920003 0 \N \N f 0 \N 0 33511762 0 f f \N \N \N \N 436066 \N 0 0 \N \N f \N 2025-03-20 03:24:43.839 f \N \N \N 0 0 0 0 0 0 0 436736 2025-03-13 21:26:21.563 2025-03-29 22:39:51.955 \N Million sat madness convinced me to use the platform a lot more. Incentives seem to be intact. If there's cigarette money on the table, the Bugle will be there https://example.com/ 19087 436722 436722.436736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2808381602585 0 \N \N f 0 \N 0 151214779 0 f f \N \N \N \N 436722 \N 0 0 \N \N f \N 2025-03-20 14:44:32.501 f \N \N \N 0 0 0 0 0 0 0 436513 2025-03-13 15:51:21.436 2025-03-29 22:39:48.162 Hello Taro: Building the (Tap)Root of the World's Financial Network with Bitcoin \N https://lightning.engineering/posts/2022-9-28-taro-launch/ 7675 \N 436513 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 4.68094988878423 0 \N \N f 0 \N 0 133219092 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 13:10:19.549 f \N \N \N 0 0 0 0 0 0 0 435323 2025-03-12 15:41:02.416 2025-03-29 22:39:51.952 \N Count me as one who thinks this will be abandoned, and if it's not abandoned, what is eventually delivered will be a total clusterfuck. But I'm a sucker for thinking big about architecture and the macro built environment. https://example.com/ 11298 435312 435046.435246.435252.435312.435323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.57413315484498 0 \N \N f 0 \N 0 191501965 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 09:00:50.276 f \N \N \N 0 0 0 0 0 0 0 434607 2025-03-12 04:07:08.403 2025-03-29 22:39:51.955 \N My Sony home theatre. No need to change it. https://example.com/ 6137 434501 434441.434501.434607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.98708342180841 0 \N \N f 0 \N 0 183021379 0 f f \N \N \N \N 434441 \N 0 0 \N \N f \N 2025-03-19 03:50:18.689 f \N \N \N 0 0 0 0 0 0 0 447232 2025-03-21 17:51:01.31 2025-03-29 22:39:51.955 \N Woah… fast moving world\nangry two leg people…\nback into BTC shell https://example.com/ 20523 446880 446880.447232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3176371990613 0 \N \N f 0 \N 0 198305248 0 f f \N \N \N \N 446880 \N 0 0 \N \N f \N 2025-03-28 11:17:08.739 f \N \N \N 0 0 0 0 0 0 0 446609 2025-03-21 11:27:19.268 2025-03-29 22:39:51.957 \N Not figuring out that marriage is hard and takes a lot of time and effort everyday to make it work. But if you put in the time and effort to make it work in the right way with the right foundation it’s the best investment you can make. https://example.com/ 21014 446486 446456.446486.446609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7398120303564 0 \N \N f 0 \N 0 183976999 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 12:13:05.627 f \N \N \N 0 0 0 0 0 0 0 436101 2025-03-13 10:17:21.175 2025-03-29 22:39:51.957 \N Bitcoin fee rates talk about how much data is required to explain the transaction, not how much bitcoin there is. \n\nSo, complicated scripts like multisigs or paying to a whole lot of different addresses will be more expensive to send because they take up more bytes. The simpler the transaction, the smaller the amount of data required to express it and the cheaper it will be. \n\n1000 bitcoin locked with a single key in a segwit address us less bytes than 1000 sats locked in a 12 of 12 multisig address. In this example, its cheaper to send the 1000 bitcoin utxo than the 1000 sat utxo. https://example.com/ 2285 435690 435690.436101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.86493046627484 0 \N \N f 0 \N 0 91717926 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 2025-03-20 05:53:10.835 f \N \N \N 0 0 0 0 0 0 0 436587 2025-03-13 17:25:38.936 2025-03-29 22:39:48.162 Operation Saylor - Episode 21/120 # Operation Saylor - Episode 21/120\n\nHi again and welcome to another episode of the Operation Saylor. This is update number 21, corresponding to March 2024.\n\nIf you are reading this for first time, you might want to check [Episode 1](https://stacker.news/items/47539), where my plan and details are explained. That will get you in context.\n\n---\n\n## Stats\n\n- BTC stack: 1.32429598 BTC\n- € stack: 76.00 €\n- Current total value in €: 81,917.49 €\n- € into BTC: 30,000 €\n- Paid back to bank: 7,324.00 € \n- Outstanding debt + interests: 36,620.33 €\n- Installments to go: 100\n\n\n## Charts\n\n[![episode-21-stack-value-vs-debt.png](https://i.postimg.cc/4dCHDtqg/episode-21-stack-value-vs-debt.png)](https://postimg.cc/5H3tvHf7)\n[![episode-21-bitcoin-stack.png](https://i.postimg.cc/q76CDQmw/episode-21-bitcoin-stack.png)](https://postimg.cc/GBr2HPnT)\n \n---\n\n## Log \n\nHello again, and welcome to a new episode of the series.\n\nThis month I want to deviate a bit from Bitcoin and focus on anarchy. Before I fell into the rabbit hole, I had no clue about anarco-capitalism and thought, just like any normie, that anarchy meant streets on fire and chaos. As years passed and I travelled the rabbit hole, I've slowly grown more and more convinced that anarco-capitalism would be a significantly better system than the one we live in today in most western countries. I don't consider myself an expert at all, and I'm not entirely sure of how could we replace many areas of society, state and government as they are today. But even so, I see a case for trending towards more anarchy in our society.\n\nHaving said this, there's something that worries me deeply: we are not ready. At all.\n\nAs much as I hate the modern state and its proponents for all the misery they have caused, the current state provides a series of tools for us to relate with each other, which are extremely valuable. Things like legal persons, civil codes, property registries, courts, etc. And to live without this stuff takes us back to stone age tribe grade social structures, which is most definitely not how we are going to progress.\n\nLet me make a simple example: car ownership. \n\nIf you would find yourself selling your car in the wild west, selling would strictly mean giving away the keys to the new owner and kind of be ok with him driving it instead of you. In the modern, state-ran west, selling your car nowadays means much more than that: you are giving away the keys, but you are also leaving a lot of contractual traces in different public registries that trigger the state and most of society to recognise the buyer as the new owner and respect that.\n\nIn the wild west, you are scared shitless of someone taking your car's keys because, if they drive away with them, you're pretty much done. In our reality, you don't care that much, because no thief is going to go happily driving around your car for long, for he will soon enough interact with some entity that will quickly raise a red flag once it realizes this guy doesn't appear in the proper database as the owner.\n\nIn the wild west, you can't provide a loan to someone taking their car as a collateral without also taking physical posession of it. Because you don't even know if the car is actually his. And you are also scared shitless someone might steal the car of this guy, meaning there wouldn't be any asset to take if the loan is not repaid.\n\nIn the wild west, you'll probably be very careful when crossing the street. Because if a car runs you over, and this car doesn't have a plate on it from a strictly maintained and enforced ownership registry, you have no fucking clue on where to go to seek compensation. In the modern west, you are way more confident: unless he delivers a perfect hit and run, it's easy to track down who the hell was responsible for that and seek restitution.\n\nNow, this is just about car ownership. Think of real-state ownership, labor contracts, marriage, or the gazillion rulings, registries and systems necessary to sustain and operate large businesses that are beyond the mom and pop corner store scale.\n\nSome wise fellow ancap is probably sitting on the edge of his chair, ready to to type: "well, yeah, but there's no reason the private sector can't provide all of this and, in fact, do it much better than the state". I fully agree with that. Theoretically, it can deliver all of this, and I concur it would probably do it much better than our current structures.\n\nBut you know what? I see absolutely nothing around me. Nothing. Zero. Not even a seed of any of this. If the state would stop providing these services, tomorrow, we wouldn't even have a toy version of any of this.\n\nThe most advanced thing I've seen is pretty much Bitcoin meetups generating small networks that operate like tribes. You have people knowing each other, a few guys probably playing the wise/reliable/respectable old-man of the tribe role. A lot of trust based petty business. Spit on your palm and shake hands grade of contracting. We look pretty much like chimps with Lightning wallets.\n\nI'm worried because there won't be any orange bright future unless we replace the good stuff the state provides us. Calling for the reduction or the end of the state without strong alternatives to all of its key services is suicidal. Our societies would just fall apart and we would need to start from scratch. And I don't see a lot of thinking done around all of these issues in the bitcoin communities I lurk in.\n\nI would be curious to know your thoughts on this. Do you share my view on the problem? How do you think this should get solved? \n\nAs always, thanks for reading and I'll see you next month.\n\n---\n\n## Previous episodes\n\n- Episode 1: [https://stacker.news/items/47539](https://stacker.news/items/47539)\n- Episode 2: [https://stacker.news/items/61708](https://stacker.news/items/61708)\n- Episode 3: [https://stacker.news/items/71794](https://stacker.news/items/71794)\n- Episode 4: [https://stacker.news/items/83670](https://stacker.news/items/83670)\n- Episode 5: [https://stacker.news/items/98216](https://stacker.news/items/98216)\n- Episode 6: [https://stacker.news/items/111818](https://stacker.news/items/111818)\n- Episode 7: [https://stacker.news/items/124601](https://stacker.news/items/124601)\n- Episode 8: [https://stacker.news/items/140816](https://stacker.news/items/140816)\n- Episode 9: [https://stacker.news/items/154229](https://stacker.news/items/154229)\n- Episode 10: [https://stacker.news/items/168432](https://stacker.news/items/168432)\n- Episode 11: [https://stacker.news/items/181336](https://stacker.news/items/181336)\n- Episode 12: [https://stacker.news/items/197688](https://stacker.news/items/197688)\n- Episode 13: [https://stacker.news/items/212587](https://stacker.news/items/212587)\n- Episode 14: [https://stacker.news/items/249798](https://stacker.news/items/249798)\n- Episode 15: [https://stacker.news/items/265819](https://stacker.news/items/265819)\n- Episode 16: [https://stacker.news/items/288719](https://stacker.news/items/288719)\n- Episode 17: [https://stacker.news/items/322189](https://stacker.news/items/322189)\n- Episode 18: [https://stacker.news/items/363765](https://stacker.news/items/363765)\n- Episode 19: [https://stacker.news/items/394704](https://stacker.news/items/394704)\n- Episode 20: [https://stacker.news/items/450792](https://stacker.news/items/450792)\n \N 10280 \N 436587 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 21.9115763320996 0 \N \N f 0 \N 0 115866162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:35:49.398 f \N \N \N 0 0 0 0 0 0 0 434919 2025-03-12 10:39:46.784 2025-03-29 22:39:51.953 \N ![](https://m.stacker.news/65715) https://example.com/ 21263 434902 434795.434902.434919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.39587179839437 0 \N \N f 0 \N 0 91367847 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 12:48:34.802 f \N \N \N 0 0 0 0 0 0 0 443320 2025-03-19 09:03:15.363 2025-03-29 22:39:51.953 \N The Bitcoin standard https://example.com/ 20094 443295 443295.443320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7574623979691 0 \N \N f 0 \N 0 79433191 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:14.03 f \N \N \N 0 0 0 0 0 0 0 448803 2025-03-22 22:05:06.886 2025-03-29 22:39:48.162 Discuss this Quote- Test post Howdy Stackers!\n\nTesting something new that I hope will become a recurring post theme in Books and Articles. \n\nFirstly, I want to commend @siggy47 on the great work he is doing as steward of the this territory. I think it is really starting to gain some traction and a lot of that has to do with Siggy's proof of work. \n\nEarlier today, in response to Siggy's recent territory newsletter we were discussing stoicism. This reminded me of a quote from "The Lessons of History" by Will and Ariel Durant that I often like to reference. Was hoping to post the quote here and get a discussion going about it. \n\nHere is the quote:\n\n"A nation is born stoic, and dies epicurean. At its cradle (to repeat a thoughtful adage) religion stands, and philosophy accompanies it to the grave. In the beginning of all cultures a strong religious faith conceals and softens the nature of things, and gives men courage to bear pain and hardship patiently; at every step the gods are with them, and will not let them perish, until they do. Even then a firm faith will explain that it was the sins of the people that turned their gods to an avenging wrath; evil does not destroy faith, but strengthens it. If victory comes, if war is forgotten in security and peace, then wealth grows; the life of the body gives way, in the dominant classes, to the life of the senses and the mind; toil and suffering are replaced by pleasure and ease; science weakens faith even while thought and comfort weaken virility and fortitude. At last men begin to doubt the gods; they mourn the tragedy of knowledge, and seek refuge in every passing delight. Achilles is at the beginning, Epicurus at the end. After David comes Job, and after Job, Ecclesiastes"\n\nDurant was very religious so no surprise in the religious undertone here and his implication as to how the secularization of societies make them weak and entitled. Whether you agree or not with his attribution of the weakening of society to the loss of religion I think the idea is correct. It is essentially just elaborate prose describing the strong/weak men meme but I think we can also apply it to sound money (bitcoin) and fiat (the dollar). Societies are built on the hard work and principles of sound money, saving and low time preference but over time choose the ease and high time preference of fiat and to ignore the principles of economic gravity. \n\nWhat do you think of the quote? How it describes the world? and How it may or may not fit into the Bitcoin ethos?\n\nThanks for reading and hopefully participating.\n\nCheers,\nGR \N 15510 \N 448803 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 8.8893769725096 0 \N \N f 0 \N 0 198514907 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:28:21.367 f \N \N \N 0 0 0 0 0 0 0 448402 2025-03-22 15:29:02.83 2025-03-29 22:39:48.162 Hal Finney walked around with Ayn Rand’s Atlas Shrugged No idea about the novel - other than it being Libertarian. But hearing from Hal's early contemporaries that he was deeply into the novel seems something that we can't overlook.\n\nWith Hal being heavily into cryptography, being Satoshi's 'first contact' and heavily into Libertarianism - it's difficult not to believe that Hal wasn't Satoshi.\n\n>They do remember Finney as an unusually intelligent and thoughtful student, who at times carried around an impressively large copy of Ayn Rand’s Atlas Shrugged and seemed to have adopted its lessons about libertarian free thinking. Friends recall him quietly sitting in the back of a physics class, only to approach the teacher afterwards to correct an error or suggest a better way of articulating a problem. At math team competitions, Finney would ring in with an answer to most questions before they’d been fully asked. In 1974, his senior year, he was voted “most brains” by his peers.\n\nhttps://www.forbes.com/sites/andygreenberg/2014/03/25/satoshi-nakamotos-neighbor-the-bitcoin-ghostwriter-who-wasnt/ \N 14213 \N 448402 \N \N \N \N \N \N \N \N mempool \N ACTIVE \N 25.3495886263824 0 \N \N f 0 \N 0 164245483 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:07:23.089 f \N \N \N 0 0 0 0 0 0 0 446603 2025-03-21 11:23:37.254 2025-03-29 22:39:48.162 Why wouldn’t MSTR fund Bitcoin developers? They have a vested interest. \N \N 14552 \N 446603 \N \N \N \N \N \N \N \N health \N ACTIVE \N 9.95196136161255 0 \N \N f 0 \N 0 156307176 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:50:53.241 f \N \N \N 0 0 0 0 0 0 0 436583 2025-03-13 17:11:37.929 2025-03-29 22:39:51.953 \N Maybe I'm old fashioned, but I still like to buy coffee with dollars. https://example.com/ 1136 436578 436493.436564.436577.436578.436583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9300245966184 0 \N \N f 0 \N 0 43171587 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 2025-03-20 10:40:51.439 f \N \N \N 0 0 0 0 0 0 0 435004 2025-03-12 11:54:27.503 2025-03-29 22:39:51.953 \N Here you go!\n\nhttps://airbtc.online/airbtc-ama-on-stacker-news/ https://example.com/ 20059 434990 434990.435004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2681300099039 0 \N \N f 0 \N 0 16593807 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N 2025-03-19 05:56:16.477 f \N \N \N 0 0 0 0 0 0 0 443483 2025-03-19 11:34:48.022 2025-03-29 22:39:51.953 \N Same here, was amazing to see that Argentineans were not really interested in BTC, even though they have a crazy high inflation. I asked them 7 years later if they bought bitcoun - none of them did. \n\nPretty stunning to me. https://example.com/ 21070 443295 443295.443483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.09142217763138 0 \N \N f 0 \N 0 165484506 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:14.397 f \N \N \N 0 0 0 0 0 0 0 436044 2025-03-13 09:11:45.594 2025-03-29 22:39:51.953 \N Ok. I owe you 10k sats for Fun Fact Friday bounty. Do you want me to send it to you now or wait until Friday to make sure the auto post works? https://example.com/ 19992 436010 435907.436010.436044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.97702259292745 0 \N \N f 0 \N 0 161698254 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 04:53:51.663 f \N \N \N 0 0 0 0 0 0 0 434489 2025-03-12 00:37:39.664 2025-03-29 22:39:51.953 \N Got together with some college friends over the weekend, a few of whom live in South FL. I mentioned I'd considered going to this year's Bitcoin conference and reaching out to them. One of them said "Yeah but didn't bitcoin die or something anyway?"\nCue #wearesoearly comments ... Granted, they likely pay very little attention to any investing least of all anything as technical as bitcoin.\nIt was a good reminder of what life is like outside the circles where I spend most of my time. https://example.com/ 16214 434481 434481.434489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.0577802952231 0 \N \N f 0 \N 0 177887159 0 f f \N \N \N \N 434481 \N 0 0 \N \N f \N 2025-03-18 18:47:38.877 f \N \N \N 0 0 0 0 0 0 0 436384 2025-03-13 14:13:44.582 2025-03-29 22:39:51.953 \N "was"? - none\n"will be"? - when the fiat money dies and banksters hang themselves.\n\nOr when I will die. I will be the happiest dead man in the world. Why? Because this world is full of shit and idiots. https://example.com/ 782 436241 436241.436384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.40245004183526 0 \N \N f 0 \N 0 18905672 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 10:19:59.317 f \N \N \N 0 0 0 0 0 0 0 435444 2025-03-12 17:21:00.707 2025-03-29 22:39:51.954 \N Mornin freaks, I'm taking time off from the fiat mines, from oct4-oct8. \nIn the meantime i'm looking to finish the nostr dev course, get to day 50 in the 100 days of coding replit course. 3d print some guns. Finish a book, Alot of running/pushups. Continue with the job search etc. \n\nTheWildHustle never stops......Lets Goooo!!! https://example.com/ 9246 435398 435314.435398.435444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2649921851801 0 \N \N f 0 \N 0 175594436 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-19 10:38:21.489 f \N \N \N 0 0 0 0 0 0 0 435935 2025-03-13 05:43:04.336 2025-03-29 22:39:48.162 The boy who got 26k sats This is the promised sequel to yesterday's story! (https://stacker.news/items/763705 #763705)\n\nThey helped a 15-year-old boy find his way into bitcoin. Thanks for the great post!\n\nTo the guys who asked for his direct lightning address to cut out the middlemen (i.e. me) that is his adress:\nastutebaby54@walletofsatoshi.com\n\nAs promised, proof of image:\n![](https://m.stacker.news/62449)\n\nAgain, you guys are awesome!\n \N 5828 \N 435935 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.4050700038262 0 \N \N f 0 \N 0 176133409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:27:55.015 f \N \N \N 0 0 0 0 0 0 0 435510 2025-03-12 18:40:16.917 2025-03-29 22:39:48.162 A new guide for newbies: Getting started with Lightning Address I know this subject is quite controversial and many people have many opinions.\n\nI saw many newbies looking for more information about, especially when they want to use it in NOSTR.\n\nSo I decided to write a new guide about this, to present ALL THE OPTIONS and explain each one where and how could be used.\n\nUsers must decide their own path, but with all the informed consent, knowing what options they have and where to use them.\n\nIs structured the guide in sections, for a clear overview:\n- Private and Public LN addresses\n- Custodial and self-custodial\n\nExisting solutions also structured in sections:\n- Bridge Servers\n- Federated Servers\n- Self-Custodial Servers\n- Lightning Box (special one)\n- LNbits (special one)\n- Custodial services\n\nI hope this guide will bring more light and understanding for newbies.\nHere is in 2 languages, soon will be translated in more:\n- 🇬🇧 - [Getting started with Lightning Address](https://darthcoin.substack.com/p/getting-started-lightning-address)\n- 🇪🇸 - [Comenzando con Lightning Address](https://darthcoin.substack.com/p/comenzando-con-lightning-address) \N 8416 \N 435510 \N \N \N \N \N \N \N \N news \N ACTIVE \N 21.107662686236 0 \N \N f 0 \N 0 215730714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:01:53.837 f \N \N \N 0 0 0 0 0 0 0 448759 2025-03-22 21:01:39.078 2025-03-29 22:39:51.953 \N Yes, you can be an LSP by just running some software -- and it is profitable to do so.\n\nThe first time I wrote LSP software was probably [Swap Service](https://github.com/supertestnet/swap-service) which lets you do what Boltz Exchange does except *you* make the money instead of them. More recently, I revised that code and released [Zaplocker](https://github.com/supertestnet/zaplocker), which is partly the same thing, but it also has new features e.g. it works for lightning addresses and lets people have a non-custodial one without needing to run a node. (Zeus Pay runs an instance of zaplocker software as well, though Evan rewrote the codebase because my code is bad.)\n\nOne of my goals is to make third party intermediaries unnecessary. Another of my goals is to make them as widely available as possible. Those might seem contradictory, but I don't see it that way. Some people *want* to use third parties for some services, and that's fine, but I'd like that to be an *option* rather than a *need.* For those who *want* third party services, even non-custodial ones like zaplocker come with some risks, such as being deplatformed, but these risks are mitigated if *everyone* can run a copy of that same third party service. So, making LSP software serves the latter goal: let anyone be an LSP, let a thousand flowers bloom, make it profitable for anyone who wants to give it a try, and that helps LSPs in general evade regulatory capture. https://example.com/ 1741 447944 447944.448759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.092403130416 0 \N \N f 0 \N 0 208908205 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N 2025-03-29 15:05:40.19 f \N \N \N 0 0 0 0 0 0 0 199286 2024-07-13 16:35:31.59 2025-03-29 22:39:51.954 \N Territory fees don't go to rewards. Some people might call this a business model. https://example.com/ 13055 199264 199264.199286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2259935535999 0 \N \N f 0 \N 0 82357053 0 f f \N \N \N \N 199264 \N 0 0 \N \N f \N 2025-03-20 05:38:40.484 f \N \N \N 0 0 0 0 0 0 0 435624 2025-03-12 20:35:30.369 2025-03-29 22:39:51.953 \N ~~Pimping~~ Offering my [Writing services on ~Agoda](https://stacker.news/items/455601)\n\nWatch out, Stackers! Sensei is stepping up his Game. https://example.com/ 666 435583 435497.435583.435624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8843940586557 0 \N \N f 0 \N 0 98083841 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 2025-03-19 16:17:46.374 f \N \N \N 0 0 0 0 0 0 0 446780 2025-03-21 13:08:04.268 2025-03-29 22:39:48.163 Anyone from EL SALVADOR here? I was replying on this thread (https://stacker.news/items/230435) when a curiosity showed up.\n\n* How much are people in El Salvador using bitcoin on a daily basis?\n\nI've done a small search and I found an interesting (but outdated) PWC report: https://www.pwc.com/gx/en/financial-services/pdf/el-salvadors-law-a-meaningful-test-for-bitcoin.pdf\n\nOn page 10:\n\n• 3 million citizens are using the nation’s\nBitcoin wallet, Chivo. That is almost 50%\nof the country’s population11;\n\n• An average of $2 million per day\nin remittances are transacted through\nthe Chivo wallet12;\n\n• An average of more than 65k\nof transactions per second on\nChivo wallets13;\n\n• An average of more than 14k of\ntransactions per day on Chivo ATMs14;\n\n• Since September 7th, Salvadorans\nhave inserted more cash (to buy bitcoin)\nthan what they are withdrawing\nfrom the Chivo wallet ATMs15;\n\n• Furthermore, El Salvador’s government\nis strongly promoting Bitcoin adoption,\nthrough initiatives such as discounts\non the fuel if paid with Chivo wallet16.\n\n\nThis info is from October 2021.... Anyone has any update on this subject? \N 16670 \N 446780 \N \N \N \N \N \N \N \N science \N ACTIVE \N 18.6797389361446 0 \N \N f 0 \N 0 246078386 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:50:35.755 f \N \N \N 0 0 0 0 0 0 0 435981 2025-03-13 07:39:11.079 2025-03-29 22:39:48.163 Meme Monday- Best Meme gets 10k sats It's Meme Monday Stackers!\n\nSend your best memes of any theme for your chance to win **10k sats**. One entry per comment please. \n\nBest meme as voted by "top" filter by 9am ct tomorrow wins the prize. \n\n![](https://m.stacker.news/46874)\n\nGood Luck! \N 21012 \N 435981 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.92220300894518 0 \N \N f 0 \N 0 29342138 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:57:38.675 f \N \N \N 0 0 0 0 0 0 0 448748 2025-03-22 20:51:04.444 2025-03-29 22:39:48.163 (AAPL) Private Cloud Compute: A new frontier for AI privacy in the cloud \N https://security.apple.com/blog/private-cloud-compute/ 9341 \N 448748 \N \N \N \N \N \N \N \N security \N ACTIVE \N 26.098732761583 0 \N \N f 0 \N 0 239795357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 14:46:29.543 f \N \N \N 0 0 0 0 0 0 0 448824 2025-03-22 22:33:27.938 2025-03-29 22:39:51.954 \N My daughter's become obsessed with trying to make people laugh. She's quite a bit funnier when she's not trying, though. https://example.com/ 1114 448820 448820.448824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7738127025624 0 \N \N f 0 \N 0 223884598 0 f f \N \N \N \N 448820 \N 0 0 \N \N f \N 2025-03-29 15:57:43.41 f \N \N \N 0 0 0 0 0 0 0 434543 2025-03-12 02:23:46.47 2025-03-29 22:39:48.163 Novel ECDSA attack: 773 wallets broken \N https://research.kudelskisecurity.com/2023/03/06/polynonce-a-tale-of-a-novel-ecdsa-attack-and-bitcoin-tears/ 3456 \N 434543 \N \N \N \N \N \N \N \N security \N ACTIVE \N 29.7374580002732 0 \N \N f 0 \N 0 22605009 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:44.81 f \N \N \N 0 0 0 0 0 0 0 435238 2025-03-12 14:46:47.587 2025-03-29 22:39:51.953 \N > Your child will get showered with presents from well-meaning family and friends \n\nThis is one of my biggest points of irritation. It's so much stuff and most of it is just clutter. I'm glad our daughter has plenty of toys to exercise her imaginations on, but most of it gets little use and the gifters seem to want to hear about how much she loves their gift.\n\nI appreciate you doing these. There are plenty of unglamorous aspects to parenting and it's nice to share tricks and tips with each other. https://example.com/ 11450 435235 435046.435135.435162.435214.435220.435235.435238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.640692716196654 0 \N \N f 0 \N 0 243503080 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:16:16.641 f \N \N \N 0 0 0 0 0 0 0 435591 2025-03-12 19:59:23.781 2025-03-29 22:39:51.954 \N I was watching an investor recently who believes the commercial real estate market is going to be going down big-time. I too wonder what will happen to empty property. https://example.com/ 2061 435577 435577.435591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7103388897654 0 \N \N f 0 \N 0 116184926 0 f f \N \N \N \N 435577 \N 0 0 \N \N f \N 2025-03-19 13:27:20.82 f \N \N \N 0 0 0 0 0 0 0 434323 2025-03-11 19:40:10.16 2025-03-29 22:39:51.954 \N Hey, man that's a cool backpack!\n\nWHAT?\n\nI said cool backpack!\n\nWHAT?\n\nCOOL BACKPACK!\n\nOH COOL THANKS! https://example.com/ 14688 433669 433669.434323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6457349808573 0 \N \N f 0 \N 0 76353645 0 f f \N \N \N \N 433669 \N 0 0 \N \N f \N 2025-03-19 06:45:37.957 f \N \N \N 0 0 0 0 0 0 0 443302 2025-03-19 08:51:36.433 2025-03-29 22:39:51.954 \N I finished the first few chapters of Mircea Eliade's "A History of Religious Ideas Vol. 1: From the Stone Age to the Eleusinian Mysteries". The book starts with the earliest clues we can guess at with regard to prehistoric man, and then briefly explores each successive development as religious ideas and impulses are brought forth in subsequent civilizations.\n\nPrehistoric men were hunters following the game. Their sense of spirituality centered around hunting, contemplating where their prey came from and therefore where man himself came from. I found the suggestion interesting that they purportedly felt a kinship with the animals they hunted and went to great lengths to honor and verify the remains of the animal, presumably under the fear that the animal might exact vengeance on them from the afterlife. To me, this presages some early awareness of karma, or cause and effect of killing. My favorite part about prehistoric religion is that they the deification of all this was wrapped into a archetype or figure named "The Lord of Wild Beasts". Awesome.\n\nFrom there, you have the slow transition to agricultural society and the subsequent emergence of the oldest known civilization in Sumer. Like the hunters, man worships what he spends his time on; getting food. While growing food and paying dependent attention to the cycles in nature, man develops an awareness of the continuity of life after death. Crops dying in winter are reborn next season. This model gets applied to human life and presages later concepts of reincarnation. Society also shifts more feminine with greater emphasis placed on cycles, continuity and working/worshipping the natural world. The Sumerian myth of Inanna descending into the underworld to die and be resurrected, as well as her husband, Dumuzi, undergoing a periodic banishment seems to set the early tone for later figures of resurrected gods like Jesus. You've also got Gilgamesh and the quest of man to find immortality and be free of death.\n\nLater, you've got the Egyptians, where preparing for death becomes a literal science. Also important is the emerging belief of an incarnated deity in the form of the pharaoh god-kings. Presently, I'm reading about the subsequent influence spread over Europe with all the stone monoliths like Stonehenge, which also seem to be contemplative of death. Perhaps stone was imagined to capture the soul and immortalize the deceased, resulting in the modern day gravestone?\n\nAnyway, cool shit (to me). I've been loving the opportunity to chime in on my current read each weekend on this site. Makes me feel like I'm doing a book report in elementary school. Hopefully others find it half as interesting as I do.\n\nPicture of the "Lord of Wild Beasts" below.\n\n![koenig-snow.jpeg](https://m.stacker.news/14750) https://example.com/ 989 443296 443295.443296.443302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.83203571110944 0 \N \N f 0 \N 0 151144362 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:34.957 f \N \N \N 0 0 0 0 0 0 0 435949 2025-03-13 06:18:53.046 2025-03-29 22:39:51.954 \N > You are in control of your data & speech.\n\nThis is only true in the sense that you have the control to choose to hand over control to the nostr nodes. \n\nAfter you post something to a node, you have zero control. The node effectively owns it at that point because only they can delete it. \n\nI think users intuitively understand that if you can’t delete it, you don’t really own it. \n\nI wish Nostr would get better PR around this. It can be useful for certain use cases, but not for public social media (maybe unless you’re posting completely innocuous things like “the sky is blue”) https://example.com/ 11873 386322 386322.435949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5861568189214 0 \N \N f 0 \N 0 203309796 0 f f \N \N \N \N 386322 \N 0 0 \N \N f \N 2025-03-20 00:17:42.698 f \N \N \N 0 0 0 0 0 0 0 436709 2025-03-13 20:19:40.604 2025-03-29 22:39:48.163 life is better with no expectations. it's been quite a while since i made a post here on stacker news. \n\ni have been working alot on myself, my mental sanity and well being, and the biggest realization i've made is to have zero expectations in life. and let me tell you why. \n\n__1. you will be disappointed. guaranteed.__\n\nnothing. and i mean NOTHING. ever goes according to plan, no matter how prepared you think you are for something. \n\ni have said this many times already, i went to japan. i expected a good opportunity, experience, and job for at least a year. the first and last things were absolute shit, but i came out of it with a really good learning experience. 65 days later, i am back at home as a better person who grew and understood alot more things about life. \n\nof course i was disappointed, yet, there was a light that came about it. \n\n__2. the law of attraction activates.__\n\nduring the course of this internal healing journey, i have learned that chasing things ultimately leads to you expecting something at the end. so i stopped chasing things, and have learned to just simply let them come my way. sometimes, the best thing you can do is little to nothing at all. two sayings i have been writing in my journal every night so far are: \n\n\n* i do not chase, i attract. what belongs to me will simply find me.* (quoted from Thewizardliz based on a tiktok she talked about). \n\n*i receive good. i receive miracles. i receive everything that i need.* (quoted from anila sita 101). \n\nit's pretty crazy how well this works. when you truly learn to let go, things start to attract toward you. you gain a sense of comfort at what the universe can gift you, and you will find they come when you least expect it.\n\n__3. the overthinking in your brain stops, and you learn to live in today.__\n\none of the most relieving things about having no expectations in life is that the overthinking that happens in your brain pretty much turns off. when you learn to fully trust that everything is okay, and you constantly remind yourself of the positives (what you do have, what you are grateful for both big and small, etc.), there is nothing to think about except for what is happening in front of you right now. \n\nfor instance, all i have presently did today was: \n\n- giving gratitude for waking up, and reading off my positive affirmations.\n- eating breakfast.\n- starting a new book while catching some sun on a grassy field, while watching my boyfriend do his sprints. \n- going to the gym, and getting a good pump in. \n- showered, hanging out with my dog, and finishing a book. \n- working on content stuff and applying for a few jobs. \n- ate some food for dinner. \n- writing for SN. \n\ni have found so much peace in this mindset, and even in my present day i have no expectations. there are goals of course, but there is no overbearing pressure anymore. the stress and frustrations of yesterday and tomorrow, disappear. \n\n\n\n\nall in all, life is so much more peaceful when you expect very little. \n\never since i have been home, i have been putting so much pressure onto myself to hurry up and make money, and do all these things to hustle and catch up with my peers and family. i was in my head so much about what i didn't have, i forgot about all the things that i did have right in front of me. \n\nfor once, i have learned (and am still constantly learning) to put myself the fuck first. now, i simply let the universe and whatever god that exists out there to do whatever work it is behind the scenes. as long as i am putting forth efforts that are valuable to myself and hopefully to others, all is going to be okay. \n\nand so far, it has been. \N 16724 \N 436709 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.70956913402627 0 \N \N f 0 \N 0 241176927 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 14:16:46.302 f \N \N \N 0 0 0 0 0 0 0 434888 2025-03-12 10:12:24.468 2025-03-29 22:39:48.163 Small Transactions \N https://www.truthcoin.info/blog/small-txns/ 14857 \N 434888 \N \N \N \N \N \N \N \N science \N ACTIVE \N 5.13353951442362 0 \N \N f 0 \N 0 85952889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:35:31.1 f \N \N \N 0 0 0 0 0 0 0 434119 2025-03-11 16:00:32.908 2025-03-29 22:39:51.954 \N At least one more house next to it. Neighbors will help you to become better https://example.com/ 21804 433713 433713.434119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4627753959944 0 \N \N f 0 \N 0 134589582 0 f f \N \N \N \N 433713 \N 0 0 \N \N f \N 2025-03-19 01:03:11.449 f \N \N \N 0 0 0 0 0 0 0 435386 2025-03-12 16:37:29.747 2025-03-29 22:39:51.954 \N Not read but watched the hacksaw ridge movie. The human spirit that Desmond Thomas Doss had on the battlefield to save all those men is unreal. https://example.com/ 12808 435373 435359.435368.435373.435386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.22961394785184 0 \N \N f 0 \N 0 59059619 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 2025-03-19 09:55:16.004 f \N \N \N 0 0 0 0 0 0 0 443662 2025-03-19 12:59:17.627 2025-03-29 22:39:51.954 \N Awesome! I haven't listened yet but just added to the queue. \n\n@kr - a meta question for you: how do you approach potential guests for the podcast? \n\nDo you find it hard to get their attention and interest for a new / small platform? Any tips on outreach to increase the chances of a yes?\n\nI want to start a podcast too. Mainly as an excuse to have free conversations with thinkers who I'd happily pay to speak with for an hour. I've felt intimidated about asking them though, to give their time to a 'nobody' like me with a nonexistent audience. https://example.com/ 19924 413897 413523.413534.413592.413595.413640.413647.413889.413897.443662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.58288284897488 0 \N \N f 0 \N 0 206407465 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N 2025-03-26 06:18:15.009 f \N \N \N 0 0 0 0 0 0 0 435036 2025-03-12 12:15:34.981 2025-03-29 22:39:48.163 AMA: I work at a company called Kaboomracks selling Bitcoin miners I have about 2.5 years of experience in the space. This is my first halving on the mining side of things. I got interested in Bitcoin in 2018 and have been obsessed since. \n\nI know a lot about the mining hardware itself, and am learning a lot more about the mining ecosystem. I'm not a macro thinkboy, or technical thinkboy, so prepare for midwit answers if you ask technical questions. \n\nOne thing that makes me passionate about mining on a small scale is how much it teaches people about energy and electricity. Many people do not think about it before plugging in their first S9. \N 4166 \N 435036 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.56548999166953 0 \N \N f 0 \N 0 216436069 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:23:57.924 f \N \N \N 0 0 0 0 0 0 0 435139 2025-03-12 13:45:31.88 2025-03-29 22:39:51.954 \N if ordinals died today and you had to switch focus inside the Bitcoin space, what would you work on instead? https://example.com/ 21797 434957 434957.435139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.35405327533876 0 \N \N f 0 \N 0 151382451 0 f f \N \N \N \N 434957 \N 0 0 \N \N f \N 2025-03-19 21:24:43.449 f \N \N \N 0 0 0 0 0 0 0 436440 2025-03-13 15:03:46.972 2025-03-29 22:39:48.163 [Daily puzzle] Find the radius of the circle In the same vein as yesterday's problem, find the radius $r$ such that the area of the semicircle is the same as the area of the rectangle. The green region has an area of 10 (a.u.).\n\n![](https://m.stacker.news/56873)\n\nPrevious iteration: https://stacker.news/items/717118/r/south_korea_ln \N 16097 \N 436440 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 16.0016615973581 0 \N \N f 0 \N 0 247777173 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:59:24.176 f \N \N \N 0 0 0 0 0 0 0 434988 2025-03-12 11:43:15.509 2025-03-29 22:39:48.163 Pay Me In Fiat (With a Premium), If You Must \N https://blog.zaprite.com/pay-me-in-fiat-with-a-premium-if-you-must/ 21670 \N 434988 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.7484299569273 0 \N \N f 0 \N 0 46057846 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 18:08:34.945 f \N \N \N 0 0 0 0 0 0 0 436212 2025-03-13 11:41:17.526 2025-03-29 22:39:48.163 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/490234), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 11996 \N 436212 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 19.3312499777947 0 \N \N f 0 \N 0 213353466 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 05:02:20.425 f \N \N \N 0 0 0 0 0 0 0 435618 2025-03-12 20:25:56.758 2025-03-29 22:39:51.954 \N The Cuban Bitcoin community would be a great option in my opinion. They live in an extremely poor and oppressed society. What we call spare change is a monthly salary to them. Just a few days can be enough to get them very useful stuff for them like VPN subscriptions. https://example.com/ 17106 435328 435328.435618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.79696807127716 0 \N \N f 0 \N 0 159752529 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 2025-03-19 19:03:13.769 f \N \N \N 0 0 0 0 0 0 0 443571 2025-03-19 12:20:58.379 2025-03-29 22:39:51.954 \N Welcome to a future in which we can no longer distinguish human from bot in online interactions. This will soon include video, but already includes text and photos. https://example.com/ 18330 443272 443272.443571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0623307872485057 0 \N \N f 0 \N 0 12850337 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 2025-03-26 05:40:11.885 f \N \N \N 0 0 0 0 0 0 0 435800 2025-03-13 01:21:11.891 2025-03-29 22:39:51.954 \N @birdeye21 saving somebody in traffic...\n\n![bird-traffic.jpg](https://m.stacker.news/6563) https://example.com/ 11515 435797 435657.435728.435797.435800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.91024771728446 0 \N \N f 0 \N 0 233302615 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-19 19:47:13.011 f \N \N \N 0 0 0 0 0 0 0 435524 2025-03-12 18:57:00.038 2025-03-29 22:39:51.954 \N "Show me the incentives and I'll show you the outcome"\n\nSuch a good quote and also applicable here.\n\nHumanity found out that smoking is real unhealthy and created incentives to find and stop unhealthy habits. The incentives were created. And "sitting is the new smoking" did fit in this incentive. This is partly market-input but also a cultural non-market phenomenon. We culturally praised people for stopping unhealthy habits which is an incentive all in itself.\n\nSN creates these cultural incentives as well. E.g. humanity created the concept of to "ratio" somebody, SN enables tipping of only a few thousand sats (which is nothing in terms real world living costs and salaries). So therefore this incentivizes \n\nA positive example: the SN web of trust incentivizes being nice to people. Or at least don't being mean out of boredom like many trolls are on other websites. https://example.com/ 13547 434934 434934.435524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.43235000090762 0 \N \N f 0 \N 0 70003847 0 f f \N \N \N \N 434934 \N 0 0 \N \N f \N 2025-03-19 14:50:14.36 f \N \N \N 0 0 0 0 0 0 0 435764 2025-03-13 00:06:34.886 2025-03-29 22:39:51.955 \N Being online 24/7, having balanced channels, etc makes you a *good* operator.\n\nBut I think a *great* one constantly figures out where liquidity in the network is missing, how flows change over time and can quickly adapt to that. Pretty much "frontrunning" the routing competition and achieving capital efficiency. https://example.com/ 6160 435488 435488.435764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9636862491665 0 \N \N f 0 \N 0 173905591 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 02:24:55.92 f \N \N \N 0 0 0 0 0 0 0 447225 2025-03-21 17:48:16.919 2025-03-29 22:39:48.163 Coming Soon: An Easier Way To Bootstrap Your Node's Utxo Set \N https://bitcoinmagazine.com/technical/coming-soon-an-easier-way-to-bootstrap-your-bitcoin-nodes-utxo-set?utm_source=carrot&utm_medium=partner&utm_campaign=carrot_share 18270 \N 447225 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.8289685146892 0 \N \N f 0 \N 0 234220092 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:07:35.546 f \N \N \N 0 0 0 0 0 0 0 435968 2025-03-13 07:15:25.201 2025-03-29 22:39:48.163 Sunday Survey: What will be the price at the halvening? \N \N 7510 \N 435968 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 29.8094257174763 0 \N \N f 0 \N 0 225938801 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:16:31.943 f \N \N \N 0 0 0 0 0 0 0 443496 2025-03-19 11:42:02.821 2025-03-29 22:39:51.954 \N > Sometimes I think my best orange pill moments are derived from this sort of mindset.\n\n> You will orange pill more effectively when you're not trying to orange pill.\n\nI think you can say this about any kind of sale. We're all repulsed when we detect attempts to influence us. We also rob our sales pitch of its organic passion when we overthink it.\n\nIt's kind of like the "just be yourself" advice for dating. https://example.com/ 16456 443491 443486.443491.443496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.356801509933 0 \N \N f 0 \N 0 28348554 0 f f \N \N \N \N 443486 \N 0 0 \N \N f \N 2025-03-26 05:23:28.125 f \N \N \N 0 0 0 0 0 0 0 434460 2025-03-11 22:55:48.552 2025-03-29 22:39:51.954 \N Definitely. Working on ways to make it even easier with some tools, right now though, the only way to make it fast (e.g., one-click to vote) is with a login/account, similar to SN, but we want to provide the optionality so only if you want that experience.\n\nAll feedback appreciated! Thank you! https://example.com/ 19930 434455 434278.434298.434310.434411.434435.434439.434442.434444.434451.434455.434460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3791946284015 0 \N \N f 0 \N 0 166552797 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 21:11:04.613 f \N \N \N 0 0 0 0 0 0 0 435297 2025-03-12 15:23:51.312 2025-03-29 22:39:51.954 \N Expressly giving the government the power to kill? No thanks. https://example.com/ 21710 435292 435046.435135.435292.435297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.8788006923922 0 \N \N f 221479294 \N 1 57185989 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:57:51.64 f \N \N \N 0 0 0 0 1 0 0 433311 2025-03-11 00:01:17.369 2025-03-29 22:39:51.954 \N ~ai https://example.com/ 1632 433299 432920.433299.433311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5909724303565 0 \N \N f 0 \N 0 83615851 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-18 17:54:03.714 f \N \N \N 0 0 0 0 0 0 0 448352 2025-03-22 15:01:46.248 2025-03-29 22:39:51.954 \N Honestly, we focus a lot on direct sales, and all our inbound is from folks who get bitcoin and understand the store of value aspect and want to accept it as payment. So we don't get a lot of push-back from a sales perspective.\n\nBut the biggest questions we get are probably around accounting and taxes. https://example.com/ 21832 448320 448202.448276.448315.448320.448352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.2069872015227 0 \N \N f 482719159 \N 3 12030089 0 f f \N \N \N \N 448202 \N 0 0 \N \N f \N 2025-03-29 08:42:14.583 f \N \N \N 0 0 0 0 1 0 0 443601 2025-03-19 12:37:42.109 2025-03-29 22:39:51.954 \N ![](https://i.ibb.co/hykbJQk/1675019126032919.jpg) https://example.com/ 16309 443554 443554.443601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2089250060794 0 \N \N f 156450528 \N 1 242920525 0 f f \N \N \N \N 443554 \N 0 0 \N \N f \N 2025-03-26 06:02:33.648 f \N \N \N 0 0 0 0 1 0 0 345255 2024-12-27 09:52:05.022 2025-03-29 22:39:51.954 \N So all lightning channels exchange signed transactions each time a channel is used (when creating or fulfilling an htlc for example.) The commitment transaction can be broadcast to chain at any time because it already has the necessary signatures of both parties to make it a valid transaction.\n\nNormally, a node would just hang on to this commitment transaction and wait to use the channel again and that's what happens the vast majority of the time. The trouble comes if your peer goes offline and you want to be able to spend these funds. You can only do this if the transaction is broadcastable. When the feerate spikes, this may no longer be the case unless you and your peer update the tx with a higher feerate - this is normally done cooperatively with both peers online. If they are offline though, you may be better off settling before the feerate gets too out-of-hand and you're stuck with an unspendable channel.\n\nAnchors solve this problem in a nice way, allowing a channel participant to bring their own output to spend a channel's anchor and CPFP here at a higher effective feerate even though their peer may be missing.\n\nThe other problem is the time-sensitivity of htlcs. Suppose you're routing a payment; as the deadline approaches for your incoming htlc, you're faced with it becoming unspendable. Meanwhile, the outgoing htlc you offered a peer on another channel can still be claimed by that peer if they receive the preimage. It's not safe to not resolve this timed out htlc because you could be left on the hook for the difference. If your peer is offline, the only way to resolve it unilaterally is to now force close the channel.\n\nI may be missing others cases, but these are two of the prominent issues, and I think anchor channels along with using an increased cltv delta are two of the remedies to consider. https://example.com/ 14607 344237 344237.345255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.49802125717778 0 \N \N f 0 \N 0 19677806 0 f f \N \N \N \N 344237 \N 0 0 \N \N f \N 2025-03-29 09:08:53.33 f \N \N \N 0 0 0 0 0 0 0 448059 2025-03-22 11:27:00.82 2025-03-29 22:39:48.163 Greedy pigs Hiya all,\n\nI have been working on this series for a while now. Let me introduce you to the greedy piggies:\n\nIf you have specific design ideas or wishes, just shoot me a message. Find all of my contact details here: [artdesignbysf.com](https://artdesignbysf.com)\n\n![This is an image](https://pbs.twimg.com/media/FhjED8aWYAYzY1M?format=jpg&name=large)Bill Gates\n![This is an image](https://pbs.twimg.com/media/Fhg_T-JXgAAOsB8?format=jpg&name=4096x4096)Klaus Schwab\n![This is an image](https://pbs.twimg.com/media/Fhg_O3tXEAAupEf?format=jpg&name=4096x4096)Jerome Powell\n![This is an image](https://pbs.twimg.com/media/Fhg_N-CXkAAIFXB?format=jpg&name=4096x4096)Augustín Carstens\n![This is an image](https://pbs.twimg.com/media/Fhg_MklXgAEi8CF?format=jpg&name=4096x4096)Christine Lagarde\n![This is an image](https://pbs.twimg.com/media/Fhg-P_8X0AElWtQ?format=jpg&name=4096x4096)Klaas Knot\n![This is an image](https://pbs.twimg.com/media/Fhg_S2CXEAEef1l?format=jpg&name=4096x4096)Queen Maxima of the Netherlands\n\nLet me know your thoughts. Do you like the work? \n\nLimited edition prints on aluminium are available. Contact me for info. \nPaper posters and stickers will become available via [noderunners.network/en/webshop](https://noderunners.network/en/webshop) \N 10007 \N 448059 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 1.53201725466108 0 \N \N f 0 \N 0 212209964 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:18:38.446 f \N \N \N 0 0 0 0 0 0 0 435499 2025-03-12 18:28:36.913 2025-03-29 22:39:51.954 \N Day 104 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 6360 435481 435458.435465.435468.435481.435499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5342697905202 0 \N \N f 0 \N 0 247696697 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N 2025-03-19 14:17:49.328 f \N \N \N 0 0 0 0 0 0 0 436369 2025-03-13 14:00:35.328 2025-03-29 22:39:51.955 \N still posting meta takeovers 😂😂😂 https://example.com/ 684 436323 436323.436369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1656560874962 0 \N \N f 0 \N 0 204030071 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 2025-03-20 08:02:09.245 f \N \N \N 0 0 0 0 0 0 0 435456 2025-03-12 17:34:34.793 2025-03-29 22:39:51.955 \N Depressed. I lost my cowboy hat yesterday after 58 days and making it into the top 5... someone took my normal computer at work and I got out of my morning routine. 😭😭😭 https://example.com/ 17673 435447 435046.435063.435447.435456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1108826343777 0 \N \N f 0 \N 0 124136299 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:01:26.976 f \N \N \N 0 0 0 0 0 0 0 448227 2025-03-22 13:50:10.217 2025-03-29 22:39:51.955 \N [![BTC-out-of-system.jpg](https://i.postimg.cc/NFwTzpxc/BTC-out-of-system.jpg)](https://postimg.cc/ZBVC9Pg7) https://example.com/ 20225 448216 448201.448216.448227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.886310017741 0 \N \N f 0 \N 0 25123821 0 f f \N \N \N \N 448201 \N 0 0 \N \N f \N 2025-03-29 08:35:04.339 f \N \N \N 0 0 0 0 0 0 0 432322 2025-03-10 08:06:16.979 2025-03-29 22:39:51.955 \N I'm super sad. I lost both my streaks today :( https://example.com/ 19346 432259 432259.432322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4414598655272 0 \N \N f 0 \N 0 53993310 0 f f \N \N \N \N 432259 \N 0 0 \N \N f \N 2025-03-19 23:30:36.599 f \N \N \N 0 0 0 0 0 0 0 441629 2025-03-18 07:41:12.202 2025-03-29 22:39:48.163 My experience with attaching an external wallet So I finally got around to attaching an external wallet to my SN account. I followed [this guide](https://stacker.news/items/694593/r/DEADBEEF) on how to setup a Coinos wallet and for someone not well-versed on Bitcoin or Lightning it couldn’t have been any easier.\n\nI’ve been running with it all weekend with no issues. I wish I would have done it sooner. I’ve been worried about the end of my SN wallet and it feels like a (small) weight has been lifted from my shoulders.\n\nI’m glad to be able to stay here on SN and look forward to the years to come.\n\n(As an added bonus being able to use NWC on Nostr now is great too!) \N 13753 \N 441629 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 2.64632112389826 0 \N \N f 0 \N 0 21850844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:30:25.441 f \N \N \N 0 0 0 0 0 0 0 436103 2025-03-13 10:21:11.609 2025-03-29 22:39:51.955 \N I just want to say thanks for taking the time to build such a kickass platform. Building things ain't easy and I respect a cowboy who does it anyway, cheers sir https://example.com/ 18314 435746 435746.436103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.43200096518835 0 \N \N f 0 \N 0 85629427 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 2025-03-20 06:17:47.896 f \N \N \N 0 0 0 0 0 0 0 436622 2025-03-13 18:10:54.21 2025-03-29 22:39:51.955 \N I recently finished reading _Mind, Decentralised_ by Rob Brinded\n\n![Mind.jpg](https://m.stacker.news/16442) https://example.com/ 2776 436566 436566.436622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3357885060701 0 \N \N f 0 \N 0 116585342 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 2025-03-20 12:05:26.256 f \N \N \N 0 0 0 0 0 0 0 434884 2025-03-12 10:10:13.208 2025-03-29 22:39:51.955 \N Doesn't lighting solve this https://example.com/ 21254 434875 434865.434875.434884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5575573453707 0 \N \N f 0 \N 0 239506447 0 f f \N \N \N \N 434865 \N 0 0 \N \N f \N 2025-03-19 03:29:26.927 f \N \N \N 0 0 0 0 0 0 0 266131 2024-10-13 12:41:13.343 2025-03-29 22:39:51.955 \N I’ve been using Breez for a few months now. It’s an amazing wallet. https://example.com/ 15060 265848 265848.266131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1838455976968 0 \N \N f 0 \N 0 162411468 0 f f \N \N \N \N 265848 \N 0 0 \N \N f \N 2025-03-18 19:06:04.212 f \N \N \N 0 0 0 0 0 0 0 436359 2025-03-13 13:52:46.447 2025-03-29 22:39:51.955 \N Mornin freaks\n\nJust finished a 5k, now its time for Replit, and a job interview before work. \n\nShould be a pretty busy day https://example.com/ 8508 436353 436273.436288.436353.436359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.54977839522819 0 \N \N f 0 \N 0 2678222 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 07:12:39.148 f \N \N \N 0 0 0 0 0 0 0 434660 2025-03-12 05:37:37.723 2025-03-29 22:39:51.955 \N I definitely understand, but there are different types of work here:\n\n1. Post\n2. Respond\n3. Respond early\n4. Zap new (good content)\n5. Discriminate. If my post sucks at least I paid for it and later on if I'm doing more interesting things it can be discovered or I just move on. Discriminate regarding my tastes and interests via zaps. I might like something no one else does but at least I let the author know someone zapped to appreciate. Also I can pay to comment and help that person know what I think to help him out. \n6. Share on NOSTR or other social media - Automatically the share link has your user name and ID. If someone joins you get rewarded or at least you bring attention to a post you like. You may also share your own masterpiece.\n7. Donate. You are seeding the program so that Stacker won't need venture capitol funding. The more you put in the more you get out. The goal is for Stacker to not need outside capital. If you are no longer getting the value for your labor then it is time to do something else. \n8. Criticize - Someone might be a troll and you can be harsh, funny, encouraging or indifferent. At least the troll paid to troll you. Maybe you make a friend. \n9. Scoop - so the troll is an asshole. Maybe he had some good ideas. Scoop his posts and look for any redeeming qualities. Maybe he had some good ideas or he's just a spook funded by MKULTRA. Who knows. If there is anything good, zap it. If it's all bad. Let it go.\n10. Honesty - If you see something sketchy, point it out or ask questions. The better the quality of content here, the better your experience will be. \n\n*Looks up, convinced there are not too many mistakes and posts* ☝️ https://example.com/ 20243 434488 434488.434660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.14475511774079 0 \N \N f 0 \N 0 194399504 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 2025-03-19 03:57:24.737 f \N \N \N 0 0 0 0 0 0 0 433296 2025-03-10 23:27:29.869 2025-03-29 22:39:51.955 \N @k00b @ek have you thought of adding a warrant canary of some kind to the site that you could use if you were ever approached by who knows in some capacity about something that the users might want to know about but you were gagged, that you could then not renew as a signaling mechanism?\nYou could bury it in the Legal page as a paragraph and then not update should something transpire? https://example.com/ 664 433247 432920.433186.433247.433296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1553867207321 0 \N \N f 0 \N 0 151970366 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-19 09:57:14.366 f \N \N \N 0 0 0 0 0 0 0 434842 2025-03-12 09:23:26.867 2025-03-29 22:39:51.955 \N ![](https://media.tenor.com/nwBMOVfhuS0AAAAC/darth-vader-im-ready.gif) https://example.com/ 13767 434795 434795.434842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2897595778896 0 \N \N f 0 \N 0 20979809 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 05:54:29.004 f \N \N \N 0 0 0 0 0 0 0 442245 2025-03-18 13:40:33.747 2025-03-29 22:39:48.163 Who is your favorite video game villain? Sometimes villains draw more attention than any character in the plot, including the main characters. This happens to me frequently when I play a video game, for some reason, I tend to focus more on the antagonist, and I like to investigate his personality and why he ended up going crazy in such a way or doing such acts that lead in many cases to total chaos or disaster in the game's plot.\n\nIn my case, my favorite villain in the history of video games is Kefka, the main antagonist of Final Fantasy VI. Without giving too many spoilers, I'll just say that he's a really crazy villain, with no remorse for causing pain or killing whoever gets in his way. His philosophy is nihilistic, seeing no meaning in life, anyone who has played FFVI understands why this villain causes fascination due to his unusual personality.\n\n![](https://m.stacker.news/36227) \N 18533 \N 442245 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 17.2527678754083 0 \N \N f 0 \N 0 172707817 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:30:23.754 f \N \N \N 0 0 0 0 0 0 0 436207 2025-03-13 11:38:06.051 2025-03-29 22:39:48.163 Reddit mods dumped tokens hours before blockchain program termination \N https://cointelegraph.com/news/reddit-mods-dumped-tokens-hours-before-blockchain-program-termination 20059 \N 436207 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.79509102977454 0 \N \N f 0 \N 0 50279996 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:12:30.98 f \N \N \N 0 0 0 0 0 0 0 436082 2025-03-13 09:49:15.993 2025-03-29 22:39:48.163 Not Receiving My Rewards Sats I have been posting pretty regularly for the past few weeks and it's always exciting to receive rewards sats and territory revenue at the end of the day. I eagerly await midnight in Austin so I can check and see what got the most attention from stackers and how many sats I earned for the day. \n\nIt's a great feeling to stack sats every day but after a few payouts that seemed light, I noticed that I am not receiving the amount of sats that my wallet history says that I am.\n\nI have felt like something has been wrong for a while but after yesterday's payout, my wallet history said that I received like 1500 sats but my wallet balance only went from 69.1k sats up to 69.9k sats. I'm no math professor but I know a thing or two about arithmetic. Something wasn't adding up so I decided to take a closer look and collect some data. \n\nSure enough. I am not receiving my rewards sats. \n\nSince there's no total balance history after each transaction in the wallet history, the only way for me to prove anything is wrong, I had to get a video to see how my payout would behave today.\n\nI recorded my balance increasing at midnight in Austin. My balance jumped up from 71,084 to 71,094 for about half a second and then jumped up to 72,610. That means that I earned 1,526 sats in rewards + revenue. Awesome. I love stacking sats. \n\nHere's the video or my wallet getting paid. \n\nhttps://youtu.be/HpNcnXWmMlA?si=cTekmyYEbHOtEL4X&t=7\n\nHowever, when I opened my wallet history, it tells a completely different story.\n\nStacker News payment bot seems to think that it paid me a lot more than it actually did. Here's a screenshot. \n\n ![](https://m.stacker.news/60626)\n\nIt says it paid me the following sats...\n\n1516.026 in rewards (Approximately 1404 + 111 as shown as a unique line item in my notifications)\n1196.58 in ~Podcasts\n48.02 in ~Movies\n10.43 in ~Memes\n174.86 in ~Videos\n\n\nAll together that totals 2945.916\n\n...But if you watch my video, you can clearly see that I didn't receive that many sats. I only received 1,526. That's a difference of 1419 missing sats and this is not the first time this has happened. \n\nThere have been multiple payments well into the thousands of sats that I never received and there's not really a way for me to prove it without doing a complete audit of my wallet all the way back to the Genesis. \n\nHere's multiple rewards payments that I never received. \n\n![](https://m.stacker.news/60627)\n\n![](https://m.stacker.news/60628)\n\n![](https://m.stacker.news/60629)\n\n![](https://m.stacker.news/60630)\n\n![](https://m.stacker.news/60631)\n\n![](https://m.stacker.news/60632)\n\nDoes anyone else seem to be having this problem? \n\nPerhaps that brief stop at 71,094 when I was receiving my payment in my video is some sort of glitch and the bot only pays out like 10 sats for my rewards when it should be 1516.026 on a day like today. \n\nIf anyone has any ideas, please let me know as I don't want to be missing out on such substantial payments when I have millions of sats to recoup. \n\nI know that both @k00b and @ek are busy with the launch of Cowboy credits but maybe one of you guys can find the time to look into this a little bit. That would be much appreciated. \N 18473 \N 436082 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 22.3362974576785 0 \N \N f 0 \N 0 57463272 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:08:56.532 f \N \N \N 0 0 0 0 0 0 0 435892 2025-03-13 04:30:06.739 2025-03-29 22:39:51.955 \N https://files.coinfund.app/cache/media_attachments/files/112/307/392/205/942/594/original/00ef58cc5a946805.png https://example.com/ 9355 435847 435847.435892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.447456282493199 0 \N \N f 0 \N 0 84366924 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 2025-03-20 03:58:12.415 f \N \N \N 0 0 0 0 0 0 0 443492 2025-03-19 11:40:33.487 2025-03-29 22:39:51.955 \N 107 comments before i even wake up??\n https://example.com/ 2722 443038 442313.443038.443492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.491133219366517 0 \N \N f 0 \N 0 223113507 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 2025-03-26 05:40:58.62 f \N \N \N 0 0 0 0 0 0 0 436636 2025-03-13 18:28:08.536 2025-03-29 22:39:51.955 \N Ah yes. Let the majority decide but if the majority does not do what I (Vitalik) want then we let the minority decide. \n\nVery logical and not at all completely ass-backward https://example.com/ 21714 436523 436523.436636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.6330045988005 0 \N \N f 0 \N 0 98113849 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 2025-03-20 11:47:45.189 f \N \N \N 0 0 0 0 0 0 0 436313 2025-03-13 13:12:49.175 2025-03-29 22:39:51.955 \N I always found it hilarious that in the book 1984, everyone was forced to have surveillance in their homes by the government. \n\nIn reality we pay companies for the privilege of being surveilled. https://example.com/ 9356 436306 435657.435728.435920.435925.436157.436306.436313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3348450992391 0 \N \N f 0 \N 0 203266419 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 06:36:12.275 f \N \N \N 0 0 0 0 0 0 0 447154 2025-03-21 16:39:46.803 2025-03-29 22:39:51.956 \N See my response to ekzyis if you want to know why I believe the pictures and video were fake.\n\n**Why do I still believe the landing happened then?**\nWhen I was in college we reflected a laser off of the corner reflectors that were left on the Moon. On it's own that's sufficient evidence to me. I also subscribe to the view that the landing itself would have been to big of an operation to just be a hoax.\n\nBasically, I don't see any compelling holes in the Moon Landing story the way I do with the Moon Landing footage.\n https://example.com/ 20829 447139 447121.447139.447154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.51947814499494 0 \N \N f 0 \N 0 50240415 0 f f \N \N \N \N 447121 \N 0 0 \N \N f \N 2025-03-28 11:08:09.598 f \N \N \N 0 0 0 0 0 0 0 436400 2025-03-13 14:29:45.932 2025-03-29 22:39:48.163 What's the Future of Programming Languages in Your Opinion? - In the C/C++ world: will Carbon catch on? I feel the enthusiasm from the community is mixed\n\n- Rust? So many people are real fans of Rust and rewrites in Rust happen surprisingly often. However I feel that many developers don't bother learning it since the learning curve is steep and the compile-time memory management is disappointing to me\n\n- Java/Kotlin world: In the early days the JVM was a dream for compability - but do we still need this? Should Java just die? People hate the performance and prefer Docker Kubernetes everything or Apps in native or Electron. It's neither here nor there. And so many Apps in Java 8 where nobody wants to pay for a Kotlin of Java 17 rewrite.\n\n- Frontends in Angular/React. Do you think this is the be-all-end-all? I certainly don't.\n\n- Python seems to have blurred the borders on what a programming language and what a User-tool is. And I'm sceptical about non-global interpreters.\n\n- Go? I still can't figure out where it's place in the landscape is or will be\n\nOverall I think we live in interesting times for programming languages - what do you think? \N 9339 \N 436400 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 3.26014540849659 0 \N \N f 0 \N 0 89085447 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:10:41.837 f \N \N \N 0 0 0 0 0 0 0 435589 2025-03-12 19:58:44.626 2025-03-29 22:39:51.955 \N Very good article. Makes me want to start a bitcoin only business. Also, the discussion of the awareness of the gambler/speculator reality got me thinking of p2p exchanges like robosats. Sorry for crazy tangent. The common liquidity issues could be helped along by market makers who speculate on fiat/btc price fluctuations. They come for the volatility, but will eventually appreciate bitcoin as a long term store of value. https://example.com/ 9183 435046 435046.435589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2787310087517 0 \N \N f 0 \N 0 236351720 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 13:21:38.232 f \N \N \N 0 0 0 0 0 0 0 446688 2025-03-21 12:20:35.654 2025-03-29 22:39:51.955 \N Eating everything but meat. Mostly... https://example.com/ 16536 446686 446598.446635.446641.446651.446661.446680.446686.446688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.64760882980964 0 \N \N f 0 \N 0 178757612 0 f f \N \N \N \N 446598 \N 0 0 \N \N f \N 2025-03-28 09:53:30.141 f \N \N \N 0 0 0 0 0 0 0 443340 2025-03-19 09:18:07.375 2025-03-29 22:39:51.955 \N Yeah I agree.\n\n99.9% of internet users have probably never earned anything for their content… even though they’ve been posting on dozens of platforms for a decade or more.\n\nFor many, Lightning payments will be the first realization that they can in fact make money on the internet, and that their content does have financial value.\n\nOther social platforms will have to let their users earn for their work, or be left in the dust. YouTube is the only major social platform that has a half-decent earning program today, but even that has a 45% take rate and a 30+ day settlement period.\n\nLightning is a far better tool for this job. https://example.com/ 13467 443339 443339.443340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5656708505634 0 \N \N f 0 \N 0 121704286 0 f f \N \N \N \N 443339 \N 0 0 \N \N f \N 2025-03-26 05:03:07.646 f \N \N \N 0 0 0 0 0 0 0 442888 2025-03-18 21:31:43.993 2025-03-29 22:39:51.956 \N That's a good question that I have never thought about. When I say government I mean the function of governing. Examples.\n\n* I govern my home\n* The bitcoin rules govern bitcoin\n* Consortium govern industries (privately)\n* There are private governments for certain cities. \n\nWhen I refer to the State I am using the anarchist definition.\n\n> an institution that claims a monopoly on violence over a given territory.\n\nI am sure libertarians and anarchists would have an answer. \n\nIf you'd like to dive into the topic of the history of the State I highly recommend [The Monopoly on Violence](https://www.amazon.com/Monopoly-Violence-Ron-Paul/dp/B08SJB28X6/ref=sr_1_1?crid=23WV1BA2HPI2&keywords=The+Monopoly+on+Violence&qid=1706131771&s=movies-tv&sprefix=the+monopoly+on+violence%2Cmovies-tv%2C134&sr=1-1) on Prime https://example.com/ 17494 442800 442800.442888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8555399264796 0 \N \N f 0 \N 0 161162367 0 f f \N \N \N \N 442800 \N 0 0 \N \N f \N 2025-03-26 03:02:41.192 f \N \N \N 0 0 0 0 0 0 0 443425 2025-03-19 10:50:38.628 2025-03-29 22:39:51.956 \N Probably not dangerous (relatively speaking), but for self-exploration, nothing beats silence and solitude, and this is safer, cheaper, and easier (though not always simple!)\n\nI've done Ayahuasca three times before kids, but won't probably do it again. I have the vague suspicion that "self exploration" is used deceptively, i think it is just another code word for more spark, big bang experience to fill that void most of us feel inside. That was partially the case for me, anyway.\n\nMy 2 sats. https://example.com/ 894 443399 443399.443425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1403126919798 0 \N \N f 0 \N 0 138375420 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 2025-03-26 05:17:08.794 f \N \N \N 0 0 0 0 0 0 0 448430 2025-03-22 15:45:31.357 2025-03-29 22:39:48.163 Culture and Choice by plebpoet on Thriller Bitcoin \N https://www.thrillerbitcoin.com/culture-and-choice/ 15045 \N 448430 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 1.78483454633184 0 \N \N f 0 \N 0 195831051 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:07:20.72 f \N \N \N 0 0 0 0 0 0 0 434321 2025-03-11 19:36:25.95 2025-03-29 22:39:48.165 Will MSTR Outperform or Underperform Against Bitcoin? Let’s take a 10-year time horizon here, do you think MSTR will be up or down against Bitcoin? \N 5173 \N 434321 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 6.24235254204891 0 \N \N f 0 \N 0 198365488 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:05.349 f \N \N \N 0 0 0 0 0 0 0 435694 2025-03-12 22:06:04.287 2025-03-29 22:39:51.956 \N "Lies My Teacher Told Me" by James W. Loewen https://example.com/ 21249 435691 435679.435691.435694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6341040210126 0 \N \N f 0 \N 0 226795327 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 2025-03-19 15:39:36.198 f \N \N \N 0 0 0 0 0 0 0 434295 2025-03-11 19:06:30.284 2025-03-29 22:39:51.956 \N Onchain fees will determine that https://example.com/ 9356 433578 433578.434295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1893987168791 0 \N \N f 0 \N 0 59243020 0 f f \N \N \N \N 433578 \N 0 0 \N \N f \N 2025-03-18 18:18:54.792 f \N \N \N 0 0 0 0 0 0 0 436194 2025-03-13 11:30:45.496 2025-03-29 22:39:51.956 \N I completely agree - people think they can cheat their way to a popular post maybe. Wealth without work approach is a typical fiat mindset and there are always a couple on here each day from new joiners.\n\nBut I always smile when I see a ‘thank you ChatAI’ reply comment. https://example.com/ 14295 436175 436163.436175.436194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0998142443403 0 \N \N f 0 \N 0 104895008 0 f f \N \N \N \N 436163 \N 0 0 \N \N f \N 2025-03-20 05:29:49.823 f \N \N \N 0 0 0 0 0 0 0 446440 2025-03-21 08:02:22.271 2025-03-29 22:39:51.957 \N Can someone explain the difference between Robosats and Bisq? https://example.com/ 7760 446416 446406.446416.446440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1151904212881 0 \N \N f 0 \N 0 241143694 0 f f \N \N \N \N 446406 \N 0 0 \N \N f \N 2025-03-28 12:16:24.766 f \N \N \N 0 0 0 0 0 0 0 436621 2025-03-13 18:10:22.118 2025-03-29 22:39:51.958 \N We need an alternative Appstore as a Progressive Web App https://example.com/ 876 436566 436566.436621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4955403773894 0 \N \N f 0 \N 0 115571843 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 2025-03-20 11:57:38.034 f \N \N \N 0 0 0 0 0 0 0 436586 2025-03-13 17:24:55.086 2025-03-29 22:39:51.958 \N For the sake of achieving bitcoin zen. Keeping up with the in and outs of the community is fun and rewarding. But maybe there is something to be said about, just stacking sats in self custody with blinders on. \n\nThat being said....someones gonna have to break into my house and tackle me off the computer to stop me from using stacker news, lfg anon. https://example.com/ 3392 436215 435908.435974.436038.436215.436586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.744246914651 0 \N \N f 0 \N 0 228739014 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 2025-03-20 11:04:44.03 f \N \N \N 0 0 0 0 0 0 0 448441 2025-03-22 15:49:47.534 2025-03-29 22:39:51.958 \N Note for small miners:\n\nThe payout minimum is 0.01048576 BTC, which might be a lot if you have a tiny miner.\n\nThe good news though, is that lightning payouts are planned for next year, which should allow you to get the payout eventually. https://example.com/ 20588 448293 447892.448293.448441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7642516986201 0 \N \N f 0 \N 0 192579253 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 09:08:59.084 f \N \N \N 0 0 0 0 0 0 0 435449 2025-03-12 17:29:06.817 2025-03-29 22:39:48.164 What's your creative outlet? Where's the best place to start if someone was new to your creative endeavor?\n\nSN of course has been one of my favorites. \n\nNew stackers [refer here](https://stacker.news/items/184545/r/birdeye21). \N 13361 \N 435449 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 7.33702691984931 0 \N \N f 0 \N 0 87022940 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 11:56:01.512 f \N \N \N 0 0 0 0 0 0 0 448120 2025-03-22 12:21:38.907 2025-03-29 22:39:51.958 \N The suits are here. And they're looking for someone to pay so they can rest assured that they 'remain compliant'.\n\nBy operating as a for profit company with investors, Amboss has a direct incentive to seek profit by any means. Including catering to the 'needs' of fiat minded companies.\n\n'Bitcoin Companies' and 'Bitcoin VCs' are still tied to fiat and state apparatus. The state will use them to try and control BTC. \n\nThey may succeed if allowed.\n\nThere's a reason Bitcoin was not founded as an LLC or CCorp. Bitcoin was/is FOSS because it has to be in order to resist the state. \n\nIf your bitcoin project isn't foss and you're not actively resisting the state, you are just an arm of the state working to control bitcoin.\n https://example.com/ 16543 448029 448029.448120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.69320361173421 0 \N \N f 0 \N 0 31627958 0 f f \N \N \N \N 448029 \N 0 0 \N \N f \N 2025-03-29 08:32:29.997 f \N \N \N 0 0 0 0 0 0 0 443616 2025-03-19 12:42:45.059 2025-03-29 22:39:51.958 \N FYI, autowithdraw to Blixt works fine through lightning address connection. https://example.com/ 1729 443545 443545.443616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0364524230305 0 \N \N f 0 \N 0 35475524 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 2025-03-26 07:25:21.117 f \N \N \N 0 0 0 0 0 0 0 443225 2025-03-19 07:29:53.75 2025-03-29 22:39:51.958 \N _doubled by author_ https://example.com/ 14607 442084 442084.443225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8419403952607 0 \N \N f 0 \N 0 2832562 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 2025-03-26 03:12:26.704 f \N \N \N 0 0 0 0 0 0 0 436444 2025-03-13 15:05:33.548 2025-03-29 22:39:48.164 tell me what the best collaboration between plebs and devs looks like This post is meant to capture the attention of the plebs within the ecosystem who produce things other than code.\n\nNaval Ravikant says, if you can’t code, write books and blogs, record videos and podcasts. There’s a strategic reason for this suggestion and it has to do with leverage, the internet, and individuality. It brings a practical framing to my argument: In the current environment, programming is valued higher than anything because it is the most powerful, most efficient. Software has devoured the world, as they say. And if you can’t do that thing, Naval says what is next best in the market is making a product of your unique individuality. Let’s talk about that in a bitcoin context.\n\nBitcoin is code. That alone is a compelling reason to begin the journey of becoming efficient and competent at coding and programming computers if you’re interested in bitcoin.\n\nI think I could code. I have a high schooler’s exposure to it. I could continue to grow in the skill set and knowledge base; the resources are available, no doubt. I am attracted to the implicit principles of coding, the collaborative, organic nature of FOSS. I think the kind of person you have to become to be good at contributing code is an admirable figure. And I have a desire to contribute to bitcoin because I accept it’s value proposition. I believe the future will be good if bitcoin is widely adopted and used.\n\nBut the thing is, after much negotiation with myself and my past, present and future, I choose to listen to the perhaps irrational and elusive, human voice deep within me that lights up when I write words. At the end of the day, I am captured by art. I believe it is useful.\n\nMany in the space have heeded Naval’s advice. In fact, there are so many bitcoin podcasts to listen to, I often opt to listen to none. It’s the ‘finding signal in the noise’ problem. The existence of that problem is evidence of growth in the space. Obviously we want growth, but we want managed growth. We want managed growth because we want to be sure that our efforts are stregthening each other, not weakening. That’s why this conversation is one worth having. \n\nWhat kind of people are the plebs who produce something other than code?\n\nOptimistically, they are principled individuals who create value out of their inspirations and environment. They understand why sound money means stable culture. They are interested in contributing.\n\nWhat do developers want from plebs who produce art?\n\nWhat I want to know is, how can the plebs and the devs (and the pleb devs) best collaborate? What is required for us to trust one another? Because if I decide that I want to show up in this space, but I am not contributing code, there must be a very good reason for me to be there. If I am deciding against the most valuable form of contribution, how do I convince you that my contribution is still valuable?\n\nI guess I am implicitly admitting to a tension that I feel exists between us. But I find evidence of this tension in our meetups and spaces. I mean, why should I be at bitdevs if I’m not coding? Of course, I know there is a perfectly sound reason as to why. We want growth, and everyone has something to contribute. I believe that is true, don’t get me wrong. But, again, I think we want managed growth. We need to talk about it because we’re building in a bear market. We’re all leveling up, and shit is getting real. We’re laying down the tracks, but the train has already left the station, and it’s a high speed train.\n\nIn my writing journey, the principles I’ve developed that guide my actions and decisions are a direct result of grappling with the questions that have arisen from encountering bitcoin. In this way, I can credit bitcoin for the accomplishments I’ve made outside of the ecosystem. For example, I wrote a book about my grandpa. Nothing about the subject has anything to do with the bitcoin protocol, network, or token. However, if I had never encountered bitcoin, I never would have written it.\n\nI think this is true for many of us. Am I right? \n\nIf you are a bitcoiner artisan of sorts, how do you make the case for the value of your contributions to the bitcoin space? Or is it enough to find meaning in your work outside of this group? Do you feel this tension exists? Can you put into words why you believe beauty has everything to do with bitcoin? \N 12368 \N 436444 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 13.9530560167392 0 \N \N f 0 \N 0 171643610 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:33:51.857 f \N \N \N 0 0 0 0 0 0 0 434698 2025-03-12 07:07:01.619 2025-03-29 22:39:48.164 I couldn't resist Sorry. I had to post this today. https://www.cnbc.com/2021/07/13/black-swan-author-nassim-taleb-says-bitcoin-is-worth-zero.html 1141 \N 434698 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.825508135606 0 \N \N f 0 \N 0 208385077 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 00:31:38.794 f \N \N \N 0 0 0 0 0 0 0 435263 2025-03-12 15:06:56.789 2025-03-29 22:39:48.164 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/509014) are the updates stackers shared from all their latest work projects. \N 8289 \N 435263 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.4989361783417 0 \N \N f 0 \N 0 171685353 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:35:15.283 f \N \N \N 0 0 0 0 0 0 0 448011 2025-03-22 10:45:30.511 2025-03-29 22:39:51.958 \N Not the easiest place to visit with a non EU passport, but Liberland is a very BTC friendly place to go\n\nEveryone speaks English and there's a strong sense of community. Plots of land can also be claimed, if you are able to stay for 25 or more days.\n\nLiberland was the first country to accept Bitcoin, before El Salvador. https://example.com/ 17727 447143 447143.448011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00714611980725 0 \N \N f 0 \N 0 69327053 0 f f \N \N \N \N 447143 \N 0 0 \N \N f \N 2025-03-29 09:21:06.941 f \N \N \N 0 0 0 0 0 0 0 436661 2025-03-13 19:08:45.815 2025-03-29 22:39:51.958 \N These are such good and thoughtful replies, thanks for taking the time.\n\n> Generically, I think our X is money<>information exchange. If we boil X longer, I think it's value exchange and imo community is value exchange, a uniquely personal and attentive form of it. (imho community is the best form of value exchange.)\n\nThis reminds me of one of the most thought-provoking things I read last year, where punk6529 gave thoughts on how [transacting is foundational to all other rights](https://twitter.com/punk6529/status/1494444624630403083). It made me think about community in terms of what is transacted, and in particular, how honest discussion is actually a Good Thing for the world, not in a hazy general way, but very concretely. Making it possible for it to emerge is a really substantial contribution.\n\nI have way more to say but I have to do work. SN this last week has been terrible for my productivity. I'm working on social community software and design, so I've been telling myself my SN time is 'research', but it's getting pretty tenuous sometimes ;) https://example.com/ 900 436658 436549.436658.436661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4643731903494 0 \N \N f 293814696 \N 3 85762953 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 2025-03-20 12:32:02.932 f \N \N \N 0 0 0 0 1 0 0 433208 2025-03-10 21:44:30.105 2025-03-29 22:39:48.164 Interrogation of a toycoiner How might one discover the best method of protecting people from themselves (and others) when they begin exploring cryptocurrency? \n\nMost toxic maximalism reminds me of the [Reid technique](https://en.wikipedia.org/wiki/Reid_technique) form of police interrogation in which [good cop, bad cop](https://en.wikipedia.org/wiki/Good_cop,_bad_cop) is based:\n\n> The technique is known for creating a high pressure environment for the interviewee, followed by sympathy and offers of understanding and help, but only if a confession is forthcoming.\n\nIts effectiveness seems somewhat up for debate in a similar way too:\n\n> Critics claim the technique too easily produces false confessions, especially with juveniles, with second-language speakers in their non-native language, and with people whose communication/language abilities are affected by mental disabilities, including reduced intellectual capacity. While this criticism acknowledges that the technique can be "effective" in producing confessions, it is not accurate at getting guilty parties to confess, instead sweeping up people pushed to their mental limits by stress. Critics also dislike how police often apply the technique on subjects of unclear guilt, when simply gathering more information in non-stressful interrogations can be more useful both for convicting guilty suspects and exonerating innocent suspects.\n\n[PEACE](https://en.wikipedia.org/wiki/PEACE_method_of_interrogation) is another interrogation practice in common use, but in contrast to the Reid technique, it requires interrogators be highly trained:\n\n> In a study published in the British Psychological Society related to benefit fraud, 63% of (non-police) interviewers who displayed an acceptable level of competence in their interviewing ability obtained comprehensive accounts or full confessions from subjects. [...] In the same study, 92% of interviewers who did not display competence in their interviewing technique failed to obtain a comprehensive account of events or a confession from their subjects.\n\nSo maybe toxicity is the best lazy form of "protecting" people or maybe this interrogation model isn't very good at all. Toxic maximalists argue it's helpful, even necessary, for protecting people, but the evidence for that mostly amounts to some kind of axiom along the lines of [it's worked so far](https://stacker.news/items/340048). Perhaps we could do better at protecting people if we found a better means of interrogation, or if interrogation doesn't model the problem very well, a better example to borrow from.\n\nIs toxic maximalism effective in your opinion? How do you evaluate its effectiveness? Can you think of a better model than interrogation? \N 20841 \N 433208 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 25.7911248226125 0 \N \N f 0 \N 0 112735648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:48:39.21 f \N \N \N 0 0 0 0 0 0 0 436245 2025-03-13 12:15:20.292 2025-03-29 22:39:48.164 Stacker News Zen Mode? Not something we plan to do if at all anytime soon—I literally just came up with this—, but still curious what stackers think about https://stacker.news/items/719998?commentId=720155:\n\n> This makes me wonder if stackers would be interested in a "zen mode" where you opt-out of rewards and ranking and every zap goes 100% to the recipient instead of our 30% fee for rewards and to make ranking sybil-resistant. The zaps would still influence your own feed but not have any effect on the feed of other stackers.\n>\n> This might mess quite a lot with other code though. For eample, maybe the sats from such zaps should also not be shown to others stackers but only to you.\n\nThis is basically a proxy question for how much you like rewards as a part of SN.\n\n_/cc @Natalia, iirc you've been arguing in favor of a part of this: removing the leaderboard (if you're fine with only removing it for yourself and yourself from it)_\n\nMy personal opinion is that rewards are a big part of SN's DNA and what distinguishes it from nostr social media clients as I mentioned in the parent reply:\n\n>> People should only just zap and comment on what they think is good quality content that they relate to.\n>\n> I agree. But imo rewards are what distinguishes SN from nostr and why there’s more broad zapping here than on nostr in my experience. This benefits everyone, just not everyone equally as you explained why.\n>\n> “A rising tide lifts all boats”\n\n \N 635 \N 436245 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 29.0211967349285 0 \N \N f 0 \N 0 146472081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 07:00:43.563 f \N \N \N 0 0 0 0 0 0 0 434510 2025-03-12 01:22:37.53 2025-03-29 22:39:51.956 \N Don't worry, he's not going anywhere. https://example.com/ 14657 434480 433588.433753.434480.434510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.10570816229771 0 \N \N f 0 \N 0 63161539 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 2025-03-18 21:01:08.86 f \N \N \N 0 0 0 0 0 0 0 434528 2025-03-12 01:54:26.812 2025-03-29 22:39:51.956 \N The people are also a social defense in the wake of technological failures. With something we rely on if all else fails, it even more means that we as people need to be aware of the social attacks. \n\nThere's a decent post on this here: [The Onion Model of Blockchain Security](https://insights.deribit.com/market-research/the-onion-model-of-blockchain-security-part-1/) (ignore the blockchain crap, still relevant to bitcoin) https://example.com/ 21444 434527 434514.434527.434528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3205787698765 0 \N \N f 0 \N 0 210543602 0 f f \N \N \N \N 434514 \N 0 0 \N \N f \N 2025-03-18 19:18:09.127 f \N \N \N 0 0 0 0 0 0 0 443460 2025-03-19 11:16:01.421 2025-03-29 22:39:51.956 \N Mining sites and landfills using methane. Let’s get this bitch carbon neutral baby. https://example.com/ 16847 443452 443295.443336.443338.443381.443452.443460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.534014669031 0 \N \N f 0 \N 0 65707635 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:16:45.003 f \N \N \N 0 0 0 0 0 0 0 436608 2025-03-13 17:53:16.978 2025-03-29 22:39:48.164 People who bought Berkshire cheap have their trades undone. This is "censored transactions" in practice. The system fucks up and they get a do ever. It reminds me of the eth DAO mess. It also reminds me of the nickel market fraud of a few years back. Or the Robinhood mess when the gamestop boys beat a few hedge funds. Nobody cares about Goldman's trades a few days ago 1/2 hour before the release of inflation numbers. \n https://fortune.com/2024/06/04/warren-buffett-berkshire-hathaway-discount-deals-canceled/ 17638 \N 436608 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 13.8252275583826 0 \N \N f 0 \N 0 210646677 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:06:53.055 f \N \N \N 0 0 0 0 0 0 0 436562 2025-03-13 16:43:42.626 2025-03-29 22:39:48.164 We should all try and be more self sufficient and eco friendly. As a bitcoiner I think that switching to a hard money will give us a better tomorrow but as the saying goes "change starts at home" so here I'm going to list some ideas to start the ball rolling on a better future.\n\nSelf sufficiency:\n\nTry and grow some veg at home. Potatoes and onions are a great vegetables to grow at home, they can be used in many meals and can store for a long time if done correctly. Here is a video I found that gives a great tutorial for setting up a efficient and low maintenance Potatoe grow (after setup is complete) \nhttps://youtu.be/AYdC60Hvxow?si=Encot8SuAUHIdEDM\nThis guy also has many more videos on garden growing that are both informative and engaging so have a poke around and see what you can do in your garden.\n\nAfter you setup a vegetable patch of sorts try and learn about composting your waste correctly as this can be beneficial to your as a new Gardner. More things can be composted then you might think like animals furs and human hair so look into this and learn what you can recycle.\n\nHere is a link about composting.\nhttps://youtu.be/n1cVCkCfwi0?si=RQdCWtwxQQAkzCoW\n\nRecycling:\n\nTry and recycle your waste more. Try re using fizzy pop bottles or milk bottles, thease can be used for many things, I've seen them used with string to make a watering device for plants. I've also seen people use plastic bottles to make 3d printer filliament then they made tubs on the printer so try and think outside the box. So have a look around to see what you can find.\n\nIf you cant reuse some of your waste make sure you recycle them properly and try and produce less waste in general if you can (buy good reliable products once rather then a shitty product twice).\n\nYour new compost heap may help you recycle some of your waste also.\n\nUsing less energy:\n\nTry and use less energy if you can, this will save energy and will save you money. If its getting cold put a jumper on and light some candles rather then putting the heating on. Remember to turn of lights when you go out the room. Get reflective pads for the back of your radiators to make them more efficient. Upgrade to triple glazing if you have the money. Get better and more efficient seals for your external door and windows. And my favourite one of all, install solar panels if you have the ideal house location and money for this.\n\nTry and drive less to save on fuel and money. If its a nice day and you have the time consider walking to where you need to go if its not too inconvenient.\nIf you live near a work friend consider car pooling so there's 1 less car on the road and you can even split the bill on fuel used.\n\nPost your suggestions in the comments for a better tomorrow starting at home.\n\nThanks for reading ✌️ \n\n \N 919 \N 436562 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.4684898548027 0 \N \N f 0 \N 0 66166875 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:08:41.52 f \N \N \N 0 0 0 0 0 0 0 434581 2025-03-12 03:29:29.113 2025-03-29 22:39:51.956 \N @siggy47\n\nI am going to try my best to make the AMA with James today but more than likely I will miss it. My wife had a follow up appointment yesterday and the doctor wants her to get some tests done at the hospital today so I have to drive her to the city. I am hoping the timing of everything will allow me to pop in and participate but really not sure. \n\nIf I don't make it can you ask James the following for me: \n\n"The Bitcoin opportunity fund has made a concerted effort to distinguish itself as bitcoin, not crypto, focused. Bitcoin still gets conflated with crypto amongst the media talking heads and politicians- although we are getting more references to "bitcoin and crypto" rather than just crypto. Among the investment community are you seeing a better understanding of the difference between Bitcoin and broader crypto or do they still see it as one big "digital assets" bucket?" \n\nMuch appreciated. https://example.com/ 12769 434278 434278.434581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9686562392097 0 \N \N f 0 \N 0 2284036 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 16:09:19.548 f \N \N \N 0 0 0 0 0 0 0 443233 2025-03-19 07:38:33.802 2025-03-29 22:39:51.956 \N For all those loving gold, please watch this documentary\n- [Gold Mafia - Episode 1](https://www.youtube.com/watch?v=evWEuVR1XIs)\n- [Gold Mafia - Episode 2](https://www.youtube.com/watch?v=HYIcCoYt9YE)\n- [Gold Mafia - Episode 3](https://www.youtube.com/watch?v=xP_rhbJHokw)\n- [Gold Mafia - Episode 4](https://www.youtube.com/watch?v=EEWehVHs8fc)\n\nAnd then more about the [pollution and damage that bring gold mining](https://www.youtube.com/results?search_query=gold+mining+pollution)\n\nWhen you say "I hold gold" you are literally participating in these attrocities! https://example.com/ 750 443232 443178.443232.443233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.290889539884 0 \N \N f 0 \N 0 55305192 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N 2025-03-26 04:17:08.292 f \N \N \N 0 0 0 0 0 0 0 446683 2025-03-21 12:18:33.867 2025-03-29 22:39:51.957 \N Refrigerators rely on the phase change of specially formulated refrigerant from a liquid to a gas. The compressor pressurizes and super-heats a gas, which, when pushed out the back of the refrigerator, releases a bunch of heat into the air. This temperature drop at such high pressure causes the gas to liquefy. This liquid boils at a very low temperature, so as it enters the refrigerator it immediately absorbs "heat" and boils into a gas on its way back to the compressor. This boiled gas, which "heated" as it went through the refrigerator, is what makes everything else cold. The air that touches these coils become cold as they heat the refrigerant.\n\nI thought that would come out shorter. I hope it makes sense to you. The important thing to understand is that the refrigerant (a dangerous, regulated chemical) boils at a temperature well below freezing, but by compressing it with a pump, you're able to achieve the pressure needed to turn it into a liquid, which pretty much immediately boils. https://example.com/ 2013 446662 446662.446683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6926551128081 0 \N \N f 0 \N 0 117297390 0 f f \N \N \N \N 446662 \N 0 0 \N \N f \N 2025-03-28 10:33:33.681 f \N \N \N 0 0 0 0 0 0 0 436334 2025-03-13 13:40:00.629 2025-03-29 22:39:51.957 \N All the information to do my job is available for free on the internet https://example.com/ 696 436329 436273.436329.436334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.93782355476131 0 \N \N f 0 \N 0 136714898 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 07:17:33.145 f \N \N \N 0 0 0 0 0 0 0 447583 2025-03-21 23:46:10.011 2025-03-29 22:39:48.164 What is your "Why" for libertarianism? Every person I've met seems to have a reason for being a libertarian. Whether it's an ethical theory they subscribe to, an economic or legal argument, a personal experience, a gut feeling, or some mix. What is your why for supporting liberal ideas?\n\nPersonally, it's a mix of my own religious/ethical feelings on how we ought to treat and respect others, mixed with Hayekian arguments surrounding epistemics and knowledge. I think we owe other people a level of respect and humility that the vast majority of governmental systems are incompatible with. In addition, I feel liberalism (or libertarianism if you want to use that word) is the only system that actually has faith in people's capacity for goodness and ingenuity. Coercion and modern states generally are an insult to everything that makes human beings incredible \N 2519 \N 447583 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.3805392420427 0 \N \N f 0 \N 0 147960454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:37:34.099 f \N \N \N 0 0 0 0 0 0 0 434511 2025-03-12 01:24:46.019 2025-03-29 22:39:51.958 \N >How much money did you make from bitcoins?\n\nfiat mindset bullshit...\n\nDo you understand the meaning of this meme?\n[![matrix-neo-2.jpg](https://imgprxy.stacker.news/F7T8uMpvaTSZAVnxl8lVon4U_y6UlSyeJpZn8UtMAlg/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvQzFaUUhmTUcvbWF0cml4LW5lby0yLmpwZw)](https://postimg.cc/ygHj7xZx) https://example.com/ 19459 434509 434500.434509.434511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5666464419133 0 \N \N f 0 \N 0 31273891 0 f f \N \N \N \N 434500 \N 0 0 \N \N f \N 2025-03-18 20:19:38.152 f \N \N \N 0 0 0 0 0 0 0 436568 2025-03-13 16:50:34.112 2025-03-29 22:39:51.958 \N I hate my job — all I do is crush cans all day. It’s soda pressing. https://example.com/ 12959 436566 436566.436568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.43322450512715 0 \N \N f 0 \N 0 52257997 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 2025-03-20 11:48:31.399 f \N \N \N 0 0 0 0 0 0 0 435936 2025-03-13 05:44:48.176 2025-03-29 22:39:51.958 \N I'm developing an RGB control system for LED road studs using a microcontroller and C programming language.\n\n![v4v34.png](https://m.stacker.news/26063) https://example.com/ 2961 435870 435657.435711.435870.435936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7191397994383 0 \N \N f 0 \N 0 172719759 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 03:04:51.123 f \N \N \N 0 0 0 0 0 0 0 435701 2025-03-12 22:13:08.226 2025-03-29 22:39:51.96 \N https://imgprxy.stacker.news/RRw9NGMG9pn7XP0cCtW75PcINAVajkd0J-uXeWZgzfQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4uZHJhd2NlcHRpb24uY29tL2ltYWdlcy9wYW5lbHMvMjAxNS81LTE0L3oyV3JCRHJTWjEtNi5wbmc https://example.com/ 1236 435653 435653.435701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2069338037296 0 \N \N f 0 \N 0 43508046 0 f f \N \N \N \N 435653 \N 0 0 \N \N f \N 2025-03-19 15:36:15.543 f \N \N \N 0 0 0 0 0 0 0 435448 2025-03-12 17:27:02.962 2025-03-29 22:39:51.96 \N I use Bisq and Robosats exclusively to accumulate bitcoin via fiat selling. I've been leaning more towards Robosats lately though, because on the high on chain fees (Bisq doesn't support lightning). I'm in Canada, and the CAD liquidity is horrible compared to USD and EUR; it's pretty clear from the currency breakdown in your post. I typically make a buy when I see an offer within 3% above market. Or if I really want to get some sats, I would post an offer to buy. https://example.com/ 10591 435445 435046.435132.435445.435448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8415237868115 0 \N \N f 0 \N 0 144340739 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 10:44:41.244 f \N \N \N 0 0 0 0 0 0 0 432328 2025-03-10 08:15:52.534 2025-03-29 22:39:51.961 \N Just finished reading Rocket Fuel about successful cofounder dynamics -- visionaries and integrators. https://example.com/ 14663 432178 432178.432328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.48723000957677 0 \N \N f 0 \N 0 241310352 0 f f \N \N \N \N 432178 \N 0 0 \N \N f \N 2025-03-20 08:19:38.174 f \N \N \N 0 0 0 0 0 0 0 448598 2025-03-22 18:12:52.389 2025-03-29 22:39:51.961 \N nah is OK, we like big posts on SN. That means dedication and PoW https://example.com/ 2519 448349 448349.448598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8062544305787 0 \N \N f 0 \N 0 97487256 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 19:40:48.005 f \N \N \N 0 0 0 0 0 0 0 436511 2025-03-13 15:48:54.804 2025-03-29 22:39:48.164 Volatility Insurance For Businesses That Accept Bitcoin? I have been thinking about this issue for a while. In my opinion adoption is critical to prevent the complete financialization of bitcoin.\n\nThere is no doubt that bitcoin volatility does inhibit adoption, particularly in the case of businesses in underserved, impoverished communities. \n\nWe all know that stablecoins are often the alternative of choice in areas subject to unstable, depreciating fiat. The average person can't afford to hodl when they have daily expenses. The same applies to the small businesses serving these communities.\n\nIt seems there is a need for volatility insurance for business owners who won't or can't assume the risk. It would of necessity be bitcoin based. The fees would be calculated, and the risk to the insurance company mitigated, in the same way fiat insurance operates, ie actuarial science, hedging, investing, etc. \nIt's a win/win. These companies foster adoption and benefit from bitcoin's long term value growth. \n\nDoes anyone know if such insurers exist, or whether this has been tried in the past? \N 987 \N 436511 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 24.0216336608122 0 \N \N f 0 \N 0 56275903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:33:43.553 f \N \N \N 0 0 0 0 0 0 0 435947 2025-03-13 06:14:47.93 2025-03-29 22:39:48.164 Spot The Drowning Child > # Drowning Doesn't Look Like Drowning\n>\n> The Instinctive Drowning Response -- so named by Francesco A. Pia, Ph.D., is what people do to avoid actual or perceived suffocation in the water. And it does not look like what most people expect. There is very little splashing, no waving, and no yelling or calls for help of any kind. To get an idea of just how quiet and undramatic from the surface drowning can be, consider this: It is the number two cause of accidental death in children, age 15 and under (just behind vehicle accidents) -- of the approximately 750 children who will drown next year, about 375 of them will do so within 25 yards of a parent or other adult. In ten percent of those drownings, the adult will actually watch them do it, having no idea it is happening.\n\n_Apparently this never reached the top spot on [HN](https://news.ycombinator.com/item?id=40906210) since @hn didn't post this but it's good and should have._ http://spotthedrowningchild.com/ 669 \N 435947 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 21.9377040078687 0 \N \N f 0 \N 0 66627835 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:32:44.577 f \N \N \N 0 0 0 0 0 0 0 448040 2025-03-22 11:09:19.98 2025-03-29 22:39:51.961 \N > Unfortunately I decided to open with too low fees and the channel opening was stuck in the mempool. Instead of just wait and drink tee, I decided to bump the fee which was a very bad idea.\n\nFYI the reason why this is a bad idea is because a Lightning channel is two transactions from the very start:\n\n1) The transaction funding the channel\n2) The commitment transaction that closes the channel if one of the parties goes offline.\n\nIf you fee-bump the funding transaction, the txid changes, and the commitment transaction is no longer valid. The Lightning protocol isn't designed to deal with this situation.\n\nLightning node implementations could have made this easy, by letting you fee bump by opening a *new* channel with a higher fee, and then figuring out which channel to actually use when one of the txs finally confirms. Or at the very least, by letting you easily broadcast a cancel tx with RBF. But unfortunately LND doesn't support this even though lots of users have lost money like you.\n\nSIGHASH_ANYPREVOUT could have fixed this too, as with it the commitment transaction wouldn't have needed to sign a specific funding tx. But sadly that was held back years ago out of silly concerns that people would lose money misusing it manually; there's *so* many ways to lose money misusing Bitcoin! https://example.com/ 20481 447928 447928.448040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.029025771658624 0 \N \N f 0 \N 0 29074875 0 f f \N \N \N \N 447928 \N 0 0 \N \N f \N 2025-03-29 08:24:50.002 f \N \N \N 0 0 0 0 0 0 0 448031 2025-03-22 11:02:53.795 2025-03-29 22:39:51.962 \N It seems to me they [aren't mining transactions with larger OP_RETURN outputs][1], likely because they are running Bitcoin Knots. That's a weird way to say "Hello World" as a pool which has a big "Bitcoin is no longer censorship-resistant, and mining centralisation endangers its security too. It's time to fix that.". IMHO just use the default Bitcoin Core template...*.\n\n[1]: https://twitter.com/0xB10C/status/1730507062986072486\n\n *. they're obviously free to mine what ever they want, but all the "block template transparency" blabla could have, from the start, included that they diverge from the (current) _default_ mempool policy. https://example.com/ 14905 448019 448015.448019.448031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3914679634945 0 \N \N f 0 \N 0 217469811 0 f f \N \N \N \N 448015 \N 0 0 \N \N f \N 2025-03-29 08:35:31.636 f \N \N \N 0 0 0 0 0 0 0 442931 2025-03-18 22:24:06.114 2025-03-29 22:39:48.164 Economist Robin Hanson on Why Bitcoin Ok, I cheat, I changed the original title of the blog post by economist Robin Hanson from Why Crypto to Why Bitcoin but, I think, if we keep reading the blog with Bitcoin replacing crypto wherever it appears, the blog is still spot on.\n\n>Yes, crypto can be a hide-able store of value, and ease and speed money transfers, especially internationally. But these values were mostly there right from the start, and don’t much explain or justify the vast subsequent activities in this area. Yes, crypto also uniquely satisfies a deep widespread desire to speculate and gamble, desires widely thwarted by regulations supported by common beliefs that mere gambling is socially harmful. But the big value, I think, comes from what crypto speculation winners then do with their lives. \n\n>Crypto folks tell a distinctive type of story about the world, who they are, and how people like them get rich via crypto in a world like that. In such stories, the world is ignorant and broken, and could be much better, while these people have unique penetrating insights which let them see past the lies and conformity to bravely and in teams fight to create and pursue long-shot bets toward new kinds of tech and systems that could make for a much better world. And when people like that get rich, then in order to continue to support this sort of story, they tend to initiate, fund, and participate in long-shot bet projects to make new better tech and systems. \n\n>In addition, crypto rich tend to get rich at much younger ages than do other kinds of rich, as speculation under high crypto asset volatility creates wealth inequality much faster. So crypto folks get rich when they are still young and energetic, not set in their ways, with plenty of time to try to prove that all of their other contrarian beliefs are also based on deep insights that could plausibly enable big revolutionary changes to the world. They weren’t just lucky, you see, and they will soon prove that to you. https://www.overcomingbias.com/p/why-crypto 7395 \N 442931 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.65736947117 0 \N \N f 0 \N 0 46006922 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:59:13.091 f \N \N \N 0 0 0 0 0 0 0 447159 2025-03-21 16:43:58.131 2025-03-29 22:39:51.962 \N Good write up. I know there's a lot of ways to skin the cat, but having something APO-like will be huge for lightning / layer 2 stuff. I know more about APO than any of the CTV or OP_VAULT stuff, but perhaps one of them can achieve similar end goals. It's all so hard to invest the effort in learning any of it when I've been waiting on APO since I heard of it in 2019.\n\nI'm intrigued by TBDXXX, but relying on it and pushing for it is how we get into the push backs we have before. Same thing with all the imaginary chains off of bitcoin proposals.\n\nIf you're building a company or product that relies on a soft fork, you're simply NGMI. Might have worked on the early days of segwit which everyone knew we needed but it won't work again. Hopefully TBDXXX can do some things normally and unique before then and can take advantage of any softfork if and when one comes. https://example.com/ 13249 447136 445518.445696.445701.445709.447001.447050.447102.447123.447136.447159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.13154808372 0 \N \N f 0 \N 0 195540629 0 f f \N \N \N \N 445518 \N 0 0 \N \N f \N 2025-03-28 11:13:53.191 f \N \N \N 0 0 0 0 0 0 0 435460 2025-03-12 17:36:24.161 2025-03-29 22:39:51.962 \N contributing to open design of https://bitcoin.design/ https://example.com/ 9109 435426 435261.435396.435416.435426.435460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5476019138483 0 \N \N f 0 \N 0 28744994 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:17:07.477 f \N \N \N 0 0 0 0 0 0 0 443718 2025-03-19 13:35:50.138 2025-03-29 22:39:51.962 \N When you create a clip on Fountain it will appear in the discover feed for all your followers. With just one tap they can:\n\n- listen to the clip\n- queue the clip for later\n- queue the episode for later\n- comment on the clip\n- like the clip and send you sats\n\nIf someone likes your clip this action will also go out to their followers - meaning good clips can spread through the network and give the show / episode some great discovery and also you as the clipper the ability to earn more sats!\n\n---\n\nSome of my recent clips:\n\n- *Jordan Harbinger on why exclusivity doesn’t make sense for podcasters* - https://fountain.fm/clip/tXDgddnoYL2lbb6yF6Ky\n- *German nuclear policy - a shining example of what NOT to do* - https://fountain.fm/clip/HYtTrCTcm5bM24g6GcYv\n- *Magna Carta and the Power of the Jury in Common Law* - https://fountain.fm/clip/F42eWT5iUdv70z4NeXmi\n https://example.com/ 11999 443709 443577.443689.443709.443718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.33152774174629 0 \N \N f 0 \N 0 249604757 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:52:42.906 f \N \N \N 0 0 0 0 0 0 0 436314 2025-03-13 13:13:59.684 2025-03-29 22:39:51.963 \N Looking forward to this project. Will be watching closely! https://example.com/ 8287 436312 436273.436288.436310.436312.436314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.71309509976756 0 \N \N f 0 \N 0 27688799 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 06:32:20.236 f \N \N \N 0 0 0 0 0 0 0 447224 2025-03-21 17:48:14.747 2025-03-29 22:39:51.963 \N # 1930's Antique GE Toaster\nhttps://www.moose-r-us.com/wp-content/uploads/2023/06/getoaster5.jpg https://example.com/ 14385 447217 446964.447212.447217.447224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9735869745606 0 \N \N f 0 \N 0 3236242 0 f f \N \N \N \N 446964 \N 0 0 \N \N f \N 2025-03-28 11:05:45.19 f \N \N \N 0 0 0 0 0 0 0 435111 2025-03-12 13:26:35.49 2025-03-29 22:39:48.164 The Bike Shed > *The law of triviality is an argument that people within an organization commonly give disproportionate weight to trivial issues. Say for example, a fictional committee whose job was to approve the plans for a nuclear power plant spending the majority of its time on discussions about relatively minor but easy-to-grasp issues, such as what materials to use for the staff bicycle shed, while neglecting the proposed design of the plant itself, which is far more important and a far more difficult and complex task.*\n\n------------\n\nI came across an interesting, mostly harmless, conspiracy for a possible **attack on Bitcoin**. \n\nWhat if a VC firm or ***resourceful organization*** were to pay Bitcoin developers to basically code nothing - they would gain a platform, maybe go on the conference circuit/podcasts and talk about their projects and ideas, but it's just an endless cycle of discourse.\n\nDon't get me wrong, I like that Bitcoin remains simple and doesn't change all that often, but there is the potential that this characteristic could be used against Bitcoin and *could be a form of attack*.\n\n> “The greatest victory is that which requires no battle.”\n― Sun Tzu, The Art of War\n\n------------\n\n### Robust development in Bitcoin\n\nWe should get back to [The Bike Shed](https://fountain.fm/episode/EtwieyzeTxzcytWmKJqO) and solve the soft fork activation problem - **permanently**. I would like to see more of Bitcoin's ~antifragile qualities and it thriving in decentralized chaos. \n\nNow I may be naive but with something like the 95% consensus signal, how many proposals would actually be activated *except* for those proposals that have real worth? \n\nThe cream will always rise to the top. Or would it just result in a mexican stand off, as no one wants to make a mistake?\n\n![office.jpg](https://m.stacker.news/24898)\n \N 919 \N 435111 \N \N \N \N \N \N \N \N security \N ACTIVE \N 28.9396553324152 0 \N \N f 0 \N 0 232875459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:04:27.551 f \N \N \N 0 0 0 0 0 0 0 429227 2025-03-08 02:43:26.879 2025-03-29 22:39:48.164 SN Saturday Newsletter 10/26/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Darthcoin journey on Stacker News](https://stacker.news/items/733426)\n - [@DarthCoin](https://stacker.news/DarthCoin) shares their bitcoin origin story, from suffering under a communist regime to bitcoin maximalism.\n - 30.7k sats \\ 136 comments \\ [@DarthCoin](https://stacker.news/DarthCoin)\n2. [Setting Up My First Meshtastic Radio](https://stacker.news/items/733578)\n - For a bit of fun, [@siggy47](https://stacker.news/siggy47) documents setting up a mesh network radio.\n - 15.5k sats \\ 40 comments \\ [@siggy47](https://stacker.news/siggy47)\n3. [Bitcoin PSA: It's Helpful and Important to Define Terms Before We Lose Our Way](https://stacker.news/items/736692)\n - Without a central authority, bitcoin requires more social coordination than we're used to. Without a central authority, we also need to define terms for ourselves.\n - 15.6k sats \\ 10k boost \\ 19 comments \\ [@028559d218](https://stacker.news/028559d218)\n4. [Route Not Found](https://stacker.news/items/737200)\n - Managing lightning channels is a female dog. [@Undisciplined](https://stacker.news/Undisciplined) troubleshoots why he can't receive payments on his private channels.\n - 1.4k sats \\ 79 comments \\ [@Undisciplined](https://stacker.news/Undisciplined)\n5. [Minneapolis Fed's paper on banning Bitcoin to maintain "permanent deficits"](https://stacker.news/items/733665)\n - The Minneapolis Fed is bullish on Bitcoin. A recent paper argues that bitcoin will require governments balance their budgets.\n - 21.4k sats \\ 10k boost \\ 92 comments \\ [@028559d218](https://stacker.news/028559d218)\n\n##### Top AMAs\n1. [I'm Matthew Lysiak - Author of Fiat Food! LFG!](https://stacker.news/items/740044)\n - 21.8k sats \\ 43 comments \\ [@Matthewlysiak](https://stacker.news/Matthewlysiak)\n2. [I'm just a bitcoiner named Jon and I recently re-founded 4 territories. AMA.](https://stacker.news/items/735882)\n - 1.3k sats \\ 52 comments \\ [@Jon_Hodl](https://stacker.news/Jon_Hodl)\n\n\n[**all AMAs**](https://stacker.news/~meta/top/posts/forever)\n\n##### Don't miss\n- [Last Pay Wins bounty at 210k sats this AM](https://stacker.news/items/732378)\n- [On Ossification](https://stacker.news/items/739886)\n- [There is no perfect set of incentives](https://stacker.news/items/737045)\n- [It's time to pull our own weight in hash](https://stacker.news/items/735779)\n- [Here's why bitcoin gives me hope](https://stacker.news/items/739510)\n- [MONEY CLASS OF THE DAY: The Fed Did NOT Grow Money Supply 4x During the Pandemic](https://stacker.news/items/733580)\n- [Minneapolis Fed Bitcoin Paper | Article Review](https://stacker.news/items/734528)\n- [Wasabi Wallet v2.3.0.0 released!](https://stacker.news/items/737681)\n- [Publishing the Bitcoin Consensus Engine as a standalone binary](https://stacker.news/items/732181)\n- [Hash-Based Signature Schemes for Post-Quantum Bitcoin](https://stacker.news/items/735909)\n- [Being a HODLER sucks. it's not what people think it is](https://stacker.news/items/739004)\n- [Parent's Corner: Be Judicious](https://stacker.news/items/738860)\n- [Linus Torvalds affirms expulsion of Russian maintainers](https://stacker.news/items/738354)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Stacker News Media Kit V 0.1](https://stacker.news/items/739953)\n- [Is Stacker.news Social Media? What about Nostr?](https://stacker.news/items/740019)\n- [Only 2 of 50 territories made 100k last month, both found by k00b. Can u guess👀](https://stacker.news/items/736132)\n- [Invite Link Issue?](https://stacker.news/items/739606)\n- [k00b & ek Are Traveling On Foot, Armed With a Pistol. Let's Get Them a Ride! 𓃗](https://stacker.news/items/736558)\n- [sndev is phenominal](https://stacker.news/items/736578)\n- [SN Fedimint Federation?](https://stacker.news/items/737943)\n\n\n[**all meta**](https://stacker.news/~meta/top/posts/week)\n\n-------\n\n##### Top Monday meme\n![](https://imgprxy.stacker.news/cgjN6W1nMedevAUOEcY_KKWPqP8nc2_hRa4rcKqe2ZM/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy81ODc5OA)\n\n[**all monday memes**](https://stacker.news/items/733949)\n\n------\n\n##### Top Friday fun fact\n> Cats Have Been to Space\n>\n> > Chosen by scientists out of a trainee class of 13 other cat-stronaut hopefuls, Félicette was loaded into the nose cone of a French Veronique sounding rocket in Algeria, and sent soaring 97 miles (156 kilometers) above the Earth.\n> >\n> > http://www.collectspace.com/news/news-111717a-felicette-first-cat-space-statue.html\n\n\n[**all friday fun facts**](https://stacker.news/items/739794)\n\n------\n\n##### Top Stackers\n1. [@grayruby](https://stacker.news/grayruby): 80.4k sats stacked\n2. [@Undisciplined](https://stacker.news/Undisciplined): 78.2k sats stacked\n3. [@denlillaapan](https://stacker.news/denlillaapan): 62.4k sats stacked\n4. [@0xbitcoiner](https://stacker.news/0xbitcoiner): 48.7k sats stacked\n5. [@028559d218](https://stacker.news/028559d218): 45.6k sats stacked\n\n------\n\n##### Top Spenders\n1. [@KoinVote](https://stacker.news/KoinVote): 160.2k sats spent\n2. [@kruw](https://stacker.news/kruw): 151.9k sats spent\n3. [@BlokchainB](https://stacker.news/BlokchainB): 117.8k sats spent\n4. [@OT](https://stacker.news/OT): 105.9k sats spent\n5. [@anna](https://stacker.news/anna): 103.5k sats spent\n\n------\n\n##### Top Cowboys\n1. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 414 days\n2. [@Undisciplined](https://stacker.news/Undisciplined): 396 days\n3. [@OneOneSeven](https://stacker.news/OneOneSeven): 389 days\n4. [@BlokchainB](https://stacker.news/BlokchainB): 375 days\n5. [@TNStacker](https://stacker.news/TNStacker): 371 days\n\n------\n\n##### Top Boosts\n1. [Endorse 2024 U.S. Candidates with Bitcoin – Presidential & Congressional!](https://stacker.news/items/739506)\n2. [Wasabi Wallet v2.3.0.0 released!](https://stacker.news/items/737681)\n3. [Bet on the US election with sats on bitcoinprediction.market](https://stacker.news/items/721770)\n4. [Instructional Designer \\ 2Hour Learning \\ Remote](https://stacker.news/items/733474)\n5. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 11491 \N 429227 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 9.38287639945116 0 \N \N f 0 \N 0 143733274 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:04:10.63 f \N \N \N 0 0 0 0 0 0 0 435656 2025-03-12 21:13:43.391 2025-03-29 22:39:51.963 \N >Have you changed in the last 5 years?\n\nOh yeah, a lot.\n\n>How? Any thoughts as to why you changed?\n\n[I discovered the biggest lie of the whole humanity](https://livingintheprivate.blogspot.com/): how people are enslaved, without even know it. That changed me forever.\nAnd I became fearless. Fear of unknown is the biggest threat to humans.\n\n>Do you have any plans for how you'd like to change in the next 5 years?\n\nYes, to be a better man, helping others with my knowledge and live in peace in my humble citadel. I do not want anything more from my life. Once my citadel will be ready... I am ready to go too. My mission on this planet will be done. And I will have peace. https://example.com/ 1647 433886 433886.435656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.73616570236042 0 \N \N f 0 \N 0 233406054 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 2025-03-19 21:01:30.216 f \N \N \N 0 0 0 0 0 0 0 434820 2025-03-12 09:00:37.742 2025-03-29 22:39:51.963 \N I got an email from Strike about their new subreddit r/strikebtc....\n\n![Screenshot 2024-01-24 123553.png](https://m.stacker.news/13650)\n\nSent an email back about SN, hopefully they see the error in their ways and join us on the frontier\n\n https://example.com/ 5173 434801 434795.434801.434820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93781956229837 0 \N \N f 0 \N 0 48637150 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 09:12:04.502 f \N \N \N 0 0 0 0 0 0 0 436503 2025-03-13 15:40:45.95 2025-03-29 22:39:51.964 \N There's a bunch of guys working on wrapping self hosted AI applications and models with lightning payments so you can open them up to everyone and get paid sats which is cool to see different approaches towards.\n\nAnd everything ollie the dev's been working on is mind blowing, he's doing really amazing work with AI agents giving them lightning wallets and building resources they can purchase like embeddings databases https://example.com/ 910 436489 436466.436475.436481.436489.436503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0772008673594 0 \N \N f 0 \N 0 239797129 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 2025-03-20 11:39:47.238 f \N \N \N 0 0 0 0 0 0 0 435921 2025-03-13 05:28:45.951 2025-03-29 22:39:51.964 \N Still bullish on the Mutiny team. https://example.com/ 19535 435709 435679.435709.435921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6120899895441 0 \N \N f 0 \N 0 82599222 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 2025-03-19 23:57:23.116 f \N \N \N 0 0 0 0 0 0 0 435528 2025-03-12 19:00:20.142 2025-03-29 22:39:48.164 Poll of the Day: Who among the top SN Cowboys will lose his Hat first? Before jumping onto the the Poll of the day, let's have a look at the top polls in October (Ongoing and Completed).\n**`Previous Polls (Ongoing in October 2024)`**\n* **[Who's gonna be the next President of USA?](https://stacker.news/items/709855/r/Coinsreporter)** by @Coinsreporter (30 days left)\n* **[Is AI something we should worry about?](https://stacker.news/items/709134/r/Coinsreporter)** by @DesertDave (2 Days Left)\n* [Which Country will be leading the world in 2050?](https://stacker.news/items/710905/r/Coinsreporter) by @Coinsreporter\n\n## Poll of the Day\n![](https://m.stacker.news/55834.jpeg)\n\nAs @Car always mentions in [SNL](https://stacker.news/items/711068/r/Coinsreporter) *'Cowboy Hat is the most popular segment on SN'*. I feel it lacks the engagement and talks it should get everyday on SN. I took it a bit seriously and wanted to preach stacker some Cowboy lessons but here's what I could come up with. \n\nFor months I've stuck on 14th place not because I lack dedication and inspiration to move up the ['Cowboy Hat Rankings'](https://stacker.news/top/cowboys) but sadly I can only go up when someone above me loses his hat into the wild west. But all of the Stackers there are too adamant to lose it, not in their lifetime. However one off day and you lose it, it's a fact. Or may be someone takes @Car's words too seriously [(Watch previous SNL's Cowboy Segment)](https://stacker.news/items/711068/r/Coinsreporter). \n\nWhy not we predict who's gonna be the next to lose his pride (🤠) as Stacker! You can also put your bets (for fun) in the comments. \nSo, tell the world, stackers!\n\n### Who among the top SN Cowboys will lose his Hat first? \n\n \N 21710 \N 435528 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 8.93995555865921 0 \N \N f 0 \N 0 115349727 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:27:09.902 f \N \N \N 0 0 0 0 0 0 0 448411 2025-03-22 15:35:37.973 2025-03-29 22:39:51.965 \N Let me start. I wish you all in 2024 living life in peace, meeting with your family and friends, being healthy and strong.\nIf you'll get all of these you'll be able to orange pill everyone around you.\nBest wishes https://example.com/ 1631 448349 448349.448411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0632507417754 0 \N \N f 0 \N 0 96204795 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 09:03:21.693 f \N \N \N 0 0 0 0 0 0 0 434913 2025-03-12 10:36:57.061 2025-03-29 22:39:51.965 \N Mutiny wallet is the first, they say, self costo dial Lightning wallet that is run right out of a browser. This is a big deal because now everyone can have access to a con custodial LN wallet without the need for iOS or other walled garden operating systems to use. \n\nBe careful though: they have warned that it’s in open beta and bugs are still being reported. Seems like a great tool for those who may need it most. https://example.com/ 9418 434912 434646.434871.434899.434912.434913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7737517987152 0 \N \N f 0 \N 0 185084418 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 05:47:32.143 f \N \N \N 0 0 0 0 0 0 0 447210 2025-03-21 17:33:09.625 2025-03-29 22:39:51.968 \N What convinced you to turn from atheism? https://example.com/ 7869 447197 447197.447210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.33325674875326 0 \N \N f 0 \N 0 54211402 0 f f \N \N \N \N 447197 \N 0 0 \N \N f \N 2025-03-28 11:45:43.528 f \N \N \N 0 0 0 0 0 0 0 448904 2025-03-23 00:57:12.565 2025-03-29 22:39:51.968 \N No hard feelings of course but as noted I have been in your shoes in a sense and been overwhelmed with stuff to do and the last thing needed is someone making a complaint in a patronizing way. After you responded, I recognized that would have really ticked me off too when I was in the quote, unquote arena. \n\nIt's not the critic that counts and all. I am not trying to just be a critic. I want to offer constructive feedback and that wasn't a constructive way of doing things, especially in the saloon. I am not deleting the comment as I hope stackers will read through our whole entire interaction but I do regret the way I did it. \n\nBTW my wife loved your meme. She laughed and said "try living with him". I think she was just being funny right, right? Haha https://example.com/ 5444 448855 448855.448904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8653135100608 0 \N \N f 0 \N 0 143872962 0 f f \N \N \N \N 448855 \N 0 0 \N \N f \N 2025-03-29 20:38:39.526 f \N \N \N 0 0 0 0 0 0 0 432416 2025-03-10 10:13:18.809 2025-03-29 22:39:51.968 \N > What precious thing do I owe an AI? What precious thing is an AI giving me?\n\nPerhaps this is a thing that seems one way to us now, but will seem quite another way to the next generations.\n\nFor instance: to my parents, and many boomers and older, btc is a bridge too far -- it's foreign in fundamental ways; the idea of money-as-ledger, which a person 'posesses' when they know a large number, vs paper that comes from the government, is a bridge too far. And yet, if you grow up where this idea has been at least sort-of mainstream, perhaps you adapt. Bitcoiners sure have invested a lot of hope that it will prove to be the case.\n\nFor a more culture-warry example, it appears that far greater numbers of Gen-Z than I would have ever dreamed possible seem to have a hell of a lot of wiggle room in who they want to fuck, or what gender even is and implies. Whether you think this is a perverse state of affairs, or what you believe to be the source of this shift, is beside the point. It's a re-thinking of a way of being in the world that many were not ready for.\n\nSo perhaps how much we care about human-ness will also prove more fluid than it seems now. I know I have some conversations w/ LLMs that I would be delighted to have with friends. In some cases I feel a real fondness for my conversational partner, even though I know there's no consciousness on the other side of it. \n\nPerhaps this is a fixation our descendants will find quaint. https://example.com/ 3706 429644 429644.432416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.68405554840719 0 \N \N f 0 \N 0 183151197 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 2025-03-19 11:39:23.647 f \N \N \N 0 0 0 0 0 0 0 436342 2025-03-13 13:42:17.377 2025-03-29 22:39:48.164 Million Sat Madness Leaderboard — #835081 I'm sure many of us are curious to know who will be on the podium. I'm sure @siggy47 is one of them, and he definitely deserves a spot. But who else do you think might be up there ?\n\n![835081.PNG](https://m.stacker.news/21243)\n![45f4fg6.PNG](https://m.stacker.news/21244) \N 9262 \N 436342 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.23313715207625 0 \N \N f 0 \N 0 200712993 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:08:01.273 f \N \N \N 0 0 0 0 0 0 0 433457 2025-03-11 05:33:44.323 2025-03-29 22:39:51.956 \N Watchtower Swaps in case you're looking for a matching partner to watch each other's node: https://lightningnetwork.plus/watch_swaps https://example.com/ 21427 430863 430607.430617.430641.430670.430674.430836.430863.433457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7921321148028 0 \N \N f 0 \N 0 202680388 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 2025-03-18 17:03:53.98 f \N \N \N 0 0 0 0 0 0 0 443093 2025-03-19 03:36:15.462 2025-03-29 22:39:51.956 \N some resources on SV1 vs SV2 differences:\n- https://braiins.com/stratum-v2\n- https://github.com/GitGab19/Stratum-V2-Master-Degree-Thesis/blob/main/Stratum-V2-MD-thesis.pdf\n- https://www.youtube.com/watch?v=mGujTzQGYQw&list=PLZXAi8dsUIn0GmElOcmqUtgA5psfFIZoO&index=3 https://example.com/ 20599 442730 442508.442701.442730.443093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0061643409768 0 \N \N f 0 \N 0 187023113 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 2025-03-26 04:18:36.385 f \N \N \N 0 0 0 0 0 0 0 443729 2025-03-19 13:44:12.672 2025-03-29 22:39:51.956 \N > So eventually anyone with excess liquidity will be able to become a LSP?\n\nYes except the word "eventually" makes it sound like a future reality when it's really a present one. Go be an LSP right now if you want to. It's never been easier. If you feel like there's an obstacle in your path, what is it? I'm happy to help you overcome it.\n\n> And LSPs are safe from government regulatory capture?\n\nThey can't stop us all\n\nWhat's nice about being an LSP is, you make money by doing it\n\nThe government can't even stop bittorrent and that's just anonymous movie downloads\n\nImagine them trying to stop anonymous payment routers whose *income* is on the line https://example.com/ 16177 443577 443577.443729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1884055298694 0 \N \N f 0 \N 0 59077294 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 07:05:24.604 f \N \N \N 0 0 0 0 0 0 0 446901 2025-03-21 14:21:27.528 2025-03-29 22:39:51.956 \N ![13333.jpg](https://m.stacker.news/13631)\n\n\n\n![multi-sig not decentralized.jpg](https://m.stacker.news/13632) https://example.com/ 20577 446547 446547.446901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.56788572799829 0 \N \N f 0 \N 0 110936874 0 f f \N \N \N \N 446547 \N 0 0 \N \N f \N 2025-03-28 10:49:57.767 f \N \N \N 0 0 0 0 0 0 0 434656 2025-03-12 05:31:33.837 2025-03-29 22:39:51.968 \N I suspect these people do not have any working code yet for bitvm. I suspect they want to give the impression that they do in order to raise money, then run off with that money without delivering anything.\n\nThere are about 7 total people who I've seen work with bitvm's codebase. None of us have anything more than a proof of concept or a toy right now. I suspect that if these people really had something, they would have shared it with us and we would all be excitedly exploring what they've accomplished.\n\nAnnouncements like this, without proof of work, are a big red flag for Scam. https://example.com/ 16695 434441 434441.434656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.27304623568232 0 \N \N f 0 \N 0 71900986 0 f f \N \N \N \N 434441 \N 0 0 \N \N f \N 2025-03-18 23:48:34.443 f \N \N \N 0 0 0 0 0 0 0 431655 2025-03-09 17:21:36.324 2025-03-29 22:39:51.956 \N The beef initiative has already done this, though it is only with beef. You may attempt to copy their model\nhttps://beefinitiative.com/\n\nYou may also consider Galoy's model since they did develop a merchant network for a circular economy (Bitcoin beach)\nhttps://galoy.io/bitcoin-banking-for-communities-lessons-learned-from-el-zonte/\n\nSimple user experience suggestion, list by product type, not store name. Stores should be listed next to each other under product types. This is because I as the consumer do not first look at stores I've never heard of, but rather look first for product type, and then consider who's product of that type I may prefer. https://example.com/ 640 328186 328186.431655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.21165958166561 0 \N \N f 0 \N 0 223422519 0 f f \N \N \N \N 328186 \N 0 0 \N \N f \N 2025-03-20 09:53:34.827 f \N \N \N 0 0 0 0 0 0 0 436079 2025-03-13 09:44:55.026 2025-03-29 22:39:51.956 \N > I don't want to dump more work on you, but when you're done with this experiment I hope you keep writing these posts everyday\n\nOh, you aren't. No one told me I should write these posts, they just came to me :)\n\nIt's been very rewarding. There were ups and downs (currently more in a down) but I don't want to miss them. So I will definitely continue writing in some form. Maybe not every day at some point (since it's also been challenging at times) but I have drawn blood now.\n\n[Regarding focus](https://stacker.news/items/376337), I am still trying to figure out if I can focus on three things in my life, not just three. Still figuring out what the third should be, if that's the case:\n\n**1. SN**\n**2. Writing**\n3. Reading/Music/Fitness/[Delphi](https://delphi.market/)/...\n\nWondering if I should mention @elvismercury because I linked to a post from him ...\n\n> Your writing style is addicting. Kind of a more friendly Popescu. I read it to see what's going on in that head of yours more than for this experiment. I bet I'm not the only one.\n\nThank you! I also write to see what's in my or _been_ in my head. Flipping through the "old" Z2Z posts was also very rewarding already :)\n\n_need to lookup who Popescu is_\n\nI wanted to zap you 1k sats but unfortunately, these are all the sats I have for now :)\n\nupdate: lol, thanks @siggy47, [I lost my streak of no freebie comments](https://stacker.news/items/392840) so I can indeed stop writing these posts now, lol :) https://example.com/ 13216 436076 436076.436079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2299117470169 0 \N \N f 0 \N 0 211833448 0 f f \N \N \N \N 436076 \N 0 0 \N \N f \N 2025-03-20 03:29:20.265 f \N \N \N 0 0 0 0 0 0 0 447299 2025-03-21 18:52:24.596 2025-03-29 22:39:51.956 \N lol, yea i'm convinced these bxlt12 people are worse than shitcoiners\n\nAll marketing, none of the understanding of why what they're pushing for is completely retarded... but somehow Lightning *needs* it\n\nFor those that don't know:\n\n1) It's a reinvention of Tor for invoices, too slow and unreliable for real world usage\n2) The privacy benefits are a hoax, Lightning has all the privacy features without it\n3) It's shitcoin compliant, being pushed by ECash neobanker spooks wanting to sell you EDollars\n\nTo make matters worse, they cite Nostr as a usecase when Nostr itself already obviates LNURL and Bxlt12 Offers via Kind 21000\n\nComplete bozo's...\n\nAt least the retro-futurism theme makes sense for their marketing materials... retro like the shitty Tor implementation that it is, futurisim because it's destined for the same fate.\n https://example.com/ 1490 447278 446954.447235.447278.447299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.26581973400627 0 \N \N f 0 \N 0 135088579 0 f f \N \N \N \N 446954 \N 0 0 \N \N f \N 2025-03-28 12:28:35.473 f \N \N \N 0 0 0 0 0 0 0 435810 2025-03-13 01:41:49.223 2025-03-29 22:39:51.956 \N As far as I can tell, I'm only receiving my own sats on that channel. Since I don't have any other public channels, I wasn't expecting any routing through it.\n\nWhy would creating a public channel to SN make it so SN can no longer route to my Alby wallet? https://example.com/ 9107 435457 435457.435810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.39203076356107 0 \N \N f 0 \N 0 147505219 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 2025-03-20 00:57:16.339 f \N \N \N 0 0 0 0 0 0 0 443624 2025-03-19 12:45:46.032 2025-03-29 22:39:51.957 \N - alcohol isn't worth it (for me) \n- the most interesting stuff is found out on the "skinny branches" & the more obscure corners of the internet (places like Stacker News) https://meaningness.com/geeks-mops-sociopaths\n- colonialism never ended (Book: The Divide, Jason Hickel)\n- root cause of most environmental problems = soft money \n https://example.com/ 8506 443583 443583.443624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.77887670455515 0 \N \N f 0 \N 0 4564688 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 2025-03-26 06:40:06.199 f \N \N \N 0 0 0 0 0 0 0 443453 2025-03-19 11:07:41.267 2025-03-29 22:39:48.164 Bitcoin and "money transmitter license" I see many people got scared shit out because some govs says that they need a "money transmitter license" for operating with Bitcoin.\n\nGuys, please stop this madness and THINK for a minute!\n\n1. That "license" is ONLY for using fiat, legal tender, that is regulated by central banks and govs.\n2. Bitcoin is NOT recognized as money nor legal tender, that means IT DOES NOT enter under that law or being punishable in any way. The govs must provide REAL PROOF that Bitcoin is money (for them) in order to punish somebody for "illegal" money transmitter. Even if they will do such thing IT WILL BE AGAINST THEMSELVES. That means they will recognize suddenly Bitcoin as legal tender ! That means game over for them.\n3. If a gov will come to you and say "hey you cannot offer LSP services for these people, using Bitcoin, because you cannot use Bitcoin as money", that means you cannot make any trade, with anything (bricks, shells, nails, stones, whatever shit). That means total stupidity. You can win in any court against them.\n\nWhat is actually "legal tender"?\n### LEGAL TENDER means:\nAny retailer or individual could refuse to use a legal tender. Nobody can force you to use it.\nWhy? What is the point of a legal tender then?\n\nThe point is that you cannot force a retailer to accept legal tender or indeed any other form of tender. If, however, you buy something from them and there is no contractual barrier to the use of any form of tender, and you offer legal tender in payment, and they refuse it, then they cannot enforce the debt in court.\n\nThat's what legal tender means: it's about discharging debts. If you incur a debt you can discharge it with legal tender, but you cannot be forced to incur the debt in the first place, if you see what I mean... \N 708 \N 443453 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.6537413558714 0 \N \N f 0 \N 0 157224370 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:33:00.679 f \N \N \N 0 0 0 0 0 0 0 432861 2025-03-10 16:19:13.439 2025-03-29 22:39:51.957 \N You have no idea what are you talking about, shitcoiner. https://example.com/ 17095 429291 429291.432861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.72476935031778 0 \N \N f 0 \N 0 18744165 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 2025-03-19 02:28:01.354 f \N \N \N 0 0 0 0 0 0 0 448743 2025-03-22 20:40:03.16 2025-03-29 22:39:51.957 \N I spent 120 bitcoin on the furniture for my first store.\n\nInvesting in yourself is one of the only things I'd advise over holding bitcoin.\n\nBut if you spend your bitcoin to start your business, it will hurt. https://example.com/ 1960 448349 448349.448743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.14156738834259 0 \N \N f 0 \N 0 240324590 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 14:58:24.594 f \N \N \N 0 0 0 0 0 0 0 436335 2025-03-13 13:40:32.394 2025-03-29 22:39:51.958 \N Great work of @supertestnet https://stacker.news/items/222527 https://example.com/ 2309 436241 436241.436335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3222230660699 0 \N \N f 0 \N 0 56614471 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:41:35.507 f \N \N \N 0 0 0 0 0 0 0 436069 2025-03-13 09:35:54.931 2025-03-29 22:39:51.959 \N This:\nhttps://stacker.news/items/261714/r/oraltosun https://example.com/ 19735 436046 435907.436014.436046.436069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.44256549461823 0 \N \N f 0 \N 0 181485236 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 04:47:31.914 f \N \N \N 0 0 0 0 0 0 0 434539 2025-03-12 02:13:26.229 2025-03-29 22:39:51.959 \N Conformal maintained it for a long time before forking the code to create Decred. Why Lightning Labs opted to maintain/use the code is almost as crazy as the creation of the code itself. https://example.com/ 8400 434278 434278.434539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.54768966726641 0 \N \N f 0 \N 0 95468801 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 21:05:21.024 f \N \N \N 0 0 0 0 0 0 0 448218 2025-03-22 13:43:38.548 2025-03-29 22:39:51.959 \N Has it ever happened to you that you migrate to escape communism and then the shitty leftists start consuming that country too? - I don't know about you, but it's happening to me. I have to plan to leave again. https://example.com/ 720 448211 448202.448208.448211.448218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3523111986133 0 \N \N f 0 \N 0 65986386 0 f f \N \N \N \N 448202 \N 0 0 \N \N f \N 2025-03-29 08:42:18.338 f \N \N \N 0 0 0 0 0 0 0 447262 2025-03-21 18:25:41.063 2025-03-29 22:39:51.959 \N @k00b you articulated all the strangeness I felt upon reading his post and put it into perfect clarity for me -- you even articulated things I didn't know I felt -- but upon reading your thoughts -- realize I do feel. Thank you. https://example.com/ 21578 447251 447251.447262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.23668305437789 0 \N \N f 0 \N 0 141005216 0 f f \N \N \N \N 447251 \N 0 0 \N \N f \N 2025-03-28 12:03:12.943 f \N \N \N 0 0 0 0 0 0 0 436438 2025-03-13 15:03:20.908 2025-03-29 22:39:51.96 \N How do you see the best way to strengthening Bitcoin privacy? https://example.com/ 8498 436413 436413.436438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5261019074954 0 \N \N f 0 \N 0 217047764 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N 2025-03-20 08:36:52.071 f \N \N \N 0 0 0 0 0 0 0 434939 2025-03-12 10:56:38.681 2025-03-29 22:39:48.164 The Courage to Be Disliked by Ichiro Kishimi I have a young friend who dreams of becoming a novelist, but he never seems to be able to complete his work. According to him, his job keeps him too busy, and he can never find enough time to write novels, and that's why he can't complete work and enter it for writing awards. But is that the real reason? No! It's actually that he wants to leave the possibility of "I can do it if I try" open, by not committing to anything. \n\nHe doesn't want to expose his work to criticism, and he certainly doesn't want to face the reality that he might produce an inferior piece of writing and face rejection. He wants to live inside that realm of possibilities, where he can say that he could do it if he only had the time, or that he could write if he just had the proper environment, and that he really does have the talent for it. In another five or ten years, he will probably start using another excuses like "I'm not young anymore" or "I've got a family to think about now."\n\nHe should just enter his writing for an award, and if he gets rejected, so be it. If he did, he might grow, or discover that he should pursue something different. Either way, he would be able to move on. That is what changing your current lifestyle is about. He won't get anywhere by not submitting anything. \N 1567 \N 434939 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 19.1453656611599 0 \N \N f 0 \N 0 16486824 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:13:32.43 f \N \N \N 0 0 0 0 0 0 0 446623 2025-03-21 11:38:11.571 2025-03-29 22:39:48.164 SN Introduction Trying this bad boy out for the first time. Figured I’d give the #Plebchain 🫂 out to the community! \n\nSome of you may know me. Some not… I’m but a gentle pleb putting my efforts into change for the next generation. \n\nEvery Friday you will find me on Nostr Nests with my Co-Host Avi Burra doing Plebchain Radio and if you are a Phoenix Local, hit me up… we are always planning something to move the needle in the Valley of the Sun. \n\nExcited to take my first steps in this side of the web. \N 1389 \N 446623 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 27.2722793031979 0 \N \N f 0 \N 0 147686267 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:24:53.915 f \N \N \N 0 0 0 0 0 0 0 434965 2025-03-12 11:21:55.423 2025-03-29 22:39:51.961 \N I hate to be the buzzkill in the saloon but this article is too brazen not to share. This story has an interesting mix of fiat IMF debt slavery, US foreign influence and expertly disseminated propaganda: \n\nhttps://theintercept.com/2023/09/17/pakistan-ukraine-arms-imf/\n\n"In April 2022, the Pakistani military, with the encouragement of the U.S., helped organize a no-confidence vote to remove Prime Minister Imran Khan. Ahead of the ouster, State Department diplomats privately expressed anger to their Pakistani counterparts over what they called Pakistan’s “aggressively neutral” stance on the Ukraine war under Khan. They warned of dire consequences if Khan remained in power and promised “all would be forgiven” if he were removed.\n\n“Pakistani democracy may ultimately be a casualty of Ukraine’s counteroffensive.”\nSince Khan’s ouster, Pakistan has emerged as a useful supporter of the U.S. and its allies in the war, assistance that has now been repaid with an IMF loan." https://example.com/ 20757 432987 432987.434965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2794467704816 0 \N \N f 0 \N 0 230074360 0 f f \N \N \N \N 432987 \N 0 0 \N \N f \N 2025-03-19 04:44:27.521 f \N \N \N 0 0 0 0 0 0 0 431189 2025-03-09 16:02:15.873 2025-03-29 22:39:51.962 \N What are the top three resources you would share with someone who is ignorant/mildly skeptical about Bitcoin with the hope of orange pilling them?\n\nThanks for your answer and for all the rest of your work. https://example.com/ 2013 406462 406462.431189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9387866910387 0 \N \N f 0 \N 0 159167424 0 f f \N \N \N \N 406462 \N 0 0 \N \N f \N 2025-03-20 08:49:58.895 f \N \N \N 0 0 0 0 0 0 0 436333 2025-03-13 13:39:31.96 2025-03-29 22:39:51.962 \N Now check out https://stacker.news/top/cowboys and keep climbing the ladder :) https://example.com/ 18314 436241 436241.436333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2559615250201 0 \N \N f 0 \N 0 190262095 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:38:18.052 f \N \N \N 0 0 0 0 0 0 0 435801 2025-03-13 01:21:33.559 2025-03-29 22:39:51.962 \N Mullvad is not a VPN with “resources to buy infinite content creators on YouTube”. They're just not one of those VPNs. They're smallish, and have a long and verifiable track record of contributing actual code and other resources to privacy improving projects. That's a proof of work that is good evidence against them being some covert op. And of course, you can pay with Bitcoin and Monero (they do need to add Lightning support though; you can pay with Lightning via a third party).\n\nPersonally I use https://ivpn.net because they do support Lightning. Using it right now.\n\nAs for complaints about their email hosting... So what? I've never had to send Mullvad or iVPN an email. Their services work 99.9% of the time. It's ok to not be perfect; running email at their scale is a pain and I'm sure they have more important things to work on.\n\nFrankly all the anti-VPN propaganda smells like a covert op in of itself. VPNs clearly make it more difficult for websites and governments to track you by hiding IP addresses in a large k-anonymity set. It's probably true that governments try to compromise VPNs, same as they do to ISPs. But they do that _because_ VPNs work. Not because they don't. https://example.com/ 5870 435711 435657.435711.435801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1848628408773 0 \N \N f 0 \N 0 46203716 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-19 22:50:50.636 f \N \N \N 0 0 0 0 0 0 0 435467 2025-03-12 17:47:38.927 2025-03-29 22:39:48.165 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 10am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nSend your best 👇 \N 6602 \N 435467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.50465173433583 0 \N \N f 0 \N 0 106878096 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:12:51.285 f \N \N \N 0 0 0 0 0 0 0 442527 2025-03-18 15:59:28.48 2025-03-29 22:39:48.165 What's a small habit you do that significantly changed your life? \N \N 1571 \N 442527 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 22.1792866683218 0 \N \N f 0 \N 0 161116439 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:30:23.02 f \N \N \N 0 0 0 0 0 0 0 435028 2025-03-12 12:10:36.551 2025-03-29 22:39:51.963 \N You could ask [How much are sats worth to you?](https://stacker.news/items/221151/r/Undisciplined). https://example.com/ 1389 434987 434642.434987.435028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3226900967339 0 \N \N f 0 \N 0 217613622 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 05:32:09.836 f \N \N \N 0 0 0 0 0 0 0 434892 2025-03-12 10:16:03.402 2025-03-29 22:39:51.964 \N You can use [coinb.in](https://coinb.in/) for this\n\nGo to the top and click "New > Time Locked Address" and then follow the instructions\n\n- Send money to the address it gives you\n- Save your redeem script\n- Save your private key\n\nWhen the delay is over you can withdraw the money here:\n\nhttps://coinb.in/#newTransaction\n\n- Paste the redeem script into the first box\n- Enter where you want to send the money to\n- It will spit out a "raw transaction" which is not yet signed\n\nWhen you have the raw transaction, go here to sign it:\n\nhttps://coinb.in/#sign\n\n- Paste the private key you saved earlier\n- Paste the raw transaction\n- Hit submit\n- It will spit out a "signed transaction"\n\nWhen you have the signed transaction, go here to broadcast it:\n\nhttps://coinb.in/#broadcast\n\n- Enter the signed transaction\n- Hit submit\n- You're done! Watch your money arrive in the address you specified https://example.com/ 656 434787 434642.434787.434892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9540216211772 0 \N \N f 0 \N 0 131024129 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 03:34:43.683 f \N \N \N 0 0 0 0 0 0 0 435848 2025-03-13 03:04:46.024 2025-03-29 22:39:51.964 \N I really want to visit. It looks beautiful. More practically, people in the Northeast US usually flick to Florida or the Carolinas. Not even close to as cool as Madeira. https://example.com/ 12744 435718 435488.435718.435848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.52179324471005 0 \N \N f 0 \N 0 115862451 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 00:15:06.932 f \N \N \N 0 0 0 0 0 0 0 436148 2025-03-13 10:55:08.702 2025-03-29 22:39:51.964 \N must be strange a strange feeling for a bank not being able to have fractional reserves on their node https://example.com/ 736 436130 435944.436102.436130.436148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2689778374416 0 \N \N f 0 \N 0 107432862 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 04:30:11.599 f \N \N \N 0 0 0 0 0 0 0 443699 2025-03-19 13:22:04.685 2025-03-29 22:39:51.964 \N https://imgprxy.stacker.news/I99I8JtIc1lNDeBRKcjcY3wB_F4M1Z1d3wczYYQOUVQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS85UkdmNTlLLmpwZw https://example.com/ 20019 443545 443545.443699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0309037823155 0 \N \N f 0 \N 0 206317194 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 2025-03-26 06:43:17.508 f \N \N \N 0 0 0 0 0 0 0 434163 2025-03-11 16:27:17.757 2025-03-29 22:39:51.965 \N The only reward that matters is the time spent with friends. \n\nBut I will take more sats if you are offering. https://example.com/ 20481 428684 428684.434163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0251674365277 0 \N \N f 0 \N 0 232357155 0 f f \N \N \N \N 428684 \N 0 0 \N \N f \N 2025-03-19 22:42:25.25 f \N \N \N 0 0 0 0 0 0 0 434438 2025-03-11 22:17:58.169 2025-03-29 22:39:51.965 \N I realised, after a few years watching the conference and watching it live now.... its a conference that isnt for any hodler of 1+ year into Bitcoin but its only for newbies (very useful) \n\nsorry guys ... dont want to hear the same old thing that we all know about banks, regulatory clarity, bla bla bla :) https://example.com/ 10352 434309 434278.434309.434438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.624955942826 0 \N \N f 0 \N 0 64304952 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 18:53:53.245 f \N \N \N 0 0 0 0 0 0 0 434941 2025-03-12 10:58:13.962 2025-03-29 22:39:48.164 Spending Sunday - What Recent Bitcoin Purchases Have You Made? Let's hear some of your latest Bitcoin purchases, feel free to include links to the shops or merchants you bought from too.\n\nIf you missed last week's thread, [here](https://stacker.news/items/284464) are some of the items stackers recently spent their sats on. \N 11862 \N 434941 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.3850075542318 0 \N \N f 0 \N 0 68949634 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:27:19.099 f \N \N \N 0 0 0 0 0 0 0 436181 2025-03-13 11:18:11.591 2025-03-29 22:39:48.164 Pakistan's Balochistan Problem (Part I)— The History behind Balochi Insurgencies I'll be posting about Pakistan's Balochistan problem in parts for it won't be enough to understand the root of the cause in just a few paragraphs for Pakistan's Balochistan Problem (Part I)— The History behind Balochi Insurgencies.\n\nFor the context, I would first like you to hear about some shocking events that had left Pakistan with no other choice than to commence an Israel to Palestine like war upon its own territory Balochistan!!\n\n## [More than 70 dead after militant attacks in Pakistan's Balochistan](https://www.reuters.com/world/asia-pacific/twenty-three-people-killed-pakistan-militant-attack-interior-minister-says-2024-08-26/)\n\n> QUETTA, Pakistan, Aug 26 (Reuters) - At least 73 people were killed in Pakistan's province of Balochistan when separatist militants attacked police stations, railway lines and highways and security forces launched retaliatory operations, officials said on Monday.\n> The assaults were the most widespread in years by ethnic militants fighting a decades-long insurgency to win secession of the resource-rich southwestern province, home to major China-led projects such as a port and a gold and copper mine.\n\nFor more on the news of Balochistan horror, watch this video from Times Now. \n\nhttps://youtu.be/T1x3iuMsdIM?si=F9fKDTdu6DRQ0S_m\n\nThis news from Reuters and all other MSM including India's, has unanimously defined it as a heinous terror attack on Pakistan. However, this attack is not the first one in the region. After 2005, these type of attacks have been going on in all of Balochistan, albeit with low number of casualties. There's no doubt that it was a terror attack and the crime of killing civilians on the basis of their ethnicity has been done with sheer barbarity. \n\nThe problem does not lie in the definition of terrorism. The problem is there in the unacceptance of it by a large country that's been reeling somehow for survival upon the grace of China's massive investment in the Balochi region. As matter of fact, Pakistan has already almost sold Balochistan to China with China using the Gwadar Port strategically for trade and as base for its military. That's one fact the world should realise, and the other is that Balochistan is far away land for its culture than rest of Pakistan. To understand about the differences in culture, first take a look at this map —\n\n![](https://m.stacker.news/48607)\n\nYou can clearly see that Pakistan has always been divided by major ethnic groups settled in a particular region. The balochis are the only people who are spread at least across three countries, Pakistan, Iran and Afghanistan. Balochistan is also the biggest state of Pakistan in terms of area almost holding about 44% of total area of Pakistan. \n\nThe economy of Balochistan is mainly based upon the production of natural gas, coal and other minerals like gold, copper, etc. Despite being rich in natural resources the people of this region are living in extremely poor conditions. Much of the population is illiterate, malnourished living without electricity or clean drinking water.\n\nSo, to root the problem of terrorism in Balochistan for Pakistan, if these are not enough for the people to join separatist groups like Baloch Liberation Army that has taken the responsibility of recent series of terror attacks accross Balochistan, Pakistan's history of acquiring Balochistan after independence from British rule has a lot to say on its current reasons to uprising demands for a seperate nation.\n\nIn 1947, [the Khan of Kalat](https://en.m.wikipedia.org/wiki/Khanate_of_Kalat) announced the formation of an independent state in Balochistan. After sustained coercive tactics by Pakistan’s leadership, the Khan of Kalat signed the instrument of accession in 1948. Interestingly, at the time of Pakistan’s independence, [Gwadar](https://en.m.wikipedia.org/wiki/Gwadar)was part of the Sultanate of Oman. After prolonged negotiations with Oman, Pakistan was able to purchase Gwadar in 1958. This history of independence, resistance, and incorporation of territories through coercion had defined a lot of Balochistan’s political trajectory.\n\nAdditionally, in 1955, various provinces and ethnic areas in West Pakistan were subsumed into a single province under the [One Unit scheme](https://en.m.wikipedia.org/wiki/One_Unit_Scheme). The scheme resulted in considerable centralisation of power and negated the basic principles of federalism. After much opposition, it was abolished in 1970 leading to the emergence of provincial assemblies, including in Balochistan. However, this did not usher in an era of genuine federalism. The provincial governments were routinely dismissed, and Islamabad continued to have a significant say in the governance of the province. The lack of provincial autonomy aggravated the discontent in Balochistan, which went on in form of insurgencies and protests until [Nawab Akbar Bugati](https://en.m.wikipedia.org/wiki/Akbar_Bugti) became the Chief Minister of Balochistan in 1990. \n\nNawab Akbar Bugati was the first major leader from Balochistan and leader of Bugati clan who tried to solve Balochistan problem with Pakistan by diplomacy, dialogue and peacemaking. He tried for atleast 15 years before he also joined Balochi extremist groups. Parvez Musharraf, then President of Pakistan, On 26 August 2006, ordered Pakistani army to storm the stronghold of the chief of the Bugti clan.\n\nIn December 2005, only months before the military operationthat would be carried out against Bugti, Musharraf had said:\n\n> ... there are two or three tribal chiefs and feudal lords behind what’s going on in Balochistan.The past governments have made deals with them and indulged them. My government is determined to establish its writ. It will be a fight to the finish.\n\n> The army bombings of Dera Bugti resulted in indiscriminate killing, and displacement of close to 1,60,000 people in the region, according to reports. The siege forced Bugti and his supporters to shift bases to [Bhamboor hills](https://en.m.wikipedia.org/wiki/Banbhor) where they would eventually meet their end. Dawn, a major newspaper from Pakistan, reported that the operation to capture Bugti went on for three days before it achieved its goal.\n\nBugti’s death, however, resulted in massive protests when entire Balochistan, from university students to separatist leaders, united against the Pakistani regime. All opposition leaders throughout the country condemned the killing. Bugti was not simply a separatist leader heading an anti-regime movement, but he had once been at the heart of mainstream politics, having served as governor and chief minister of Balochistan.\n\nTIME magazine said of Bugti in 2006:\n\n> Bugti was not just a local, or even a Baluch hero, but a nationally respected politician whose cause resonated throughout the country. In using force to take out the small problem of an avowedly secular and anti-Taliban insurgent group (with reasonable demands, if not reasonable means), the military-led government of President Pervez Musharraf may find that it has simply highlighted the larger issue of military rule on the day before Musharraf’s hand-picked Prime Minister Shaukat Aziz faces a vote of no-confidence in Parliament. \n\nhttps://www.facebook.com/share/v/MggxB77Pg1FsyuLD/?mibextid=oFDknk\n\nThe case of alleged murder of Akbar Bugti dragged on against Musharraf for a couple of years until earlier in January 2016, Musharraf was acquitted of the charges.\n\nBugti’s death on 26 August 2006 was condemned by all Baloch separatists and Pakistani opposition leaders.\n\n***‘I’d Rather Death Come to Me While I’m Fighting for a Purpose’***\n\nIn a satellite telephone interview with the TIME magazine in May 2006, Bugti had rather prophetically said:\n\n> It’s better to die — as the Americans say — with your spurs on. Instead of a slow death in bed, I’d rather death come to me while I’m fighting for a purpose.\n\nAkbar Bugti was 79 years old at the time of his death. By then he had already buried his sons and grandsons in the fight for Balochistan’s independence. Some sources claim that this fierce chief’s tryst with violence started as early as the age of 12 when he killed a man for the first time.\n\nEighteen years after Nawab Akbar Bugti’s killing, on August 26, 2006, Baloch insurgents undertaking a series of attacks on August 26-27, 2024, is not merely a co-incident. The Baloch Liberation Army has called it a homage to their leader. However, this totally barbarian terror attack killed at least 23 civilians, mostly petty Punjabi labourers and fruit dealers. In just one brutal incident the passengers were made to get down from a bus, their identity cards checked, and Punjabis were shot to death.\n\n\n\n\n\n\n\n\n\n\n \N 795 \N 436181 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.8992551236872 0 \N \N f 0 \N 0 30365751 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:15:57.8 f \N \N \N 0 0 0 0 0 0 0 430248 2025-03-09 01:08:53.406 2025-03-29 22:39:48.164 Free markets, governments, and space I was listening to a podcast this morning that was discussing the feasibility of a human colony on the moon or mars. What I am interested in was not discussed in the podcast (at least through what I have listened to), so I won't go into too the details.\n\n## Scarcity and learning\n\nScarcity is the foundational requirement for the field of economics. A principles of economics course might describe economics as a social science that studies how individuals and societies make choices in the face of scarcity. Others might say it is the study of conflict. Foundational to conflict is scarcity. If people were not competing for _scarce_ resources, there would be no competition and hence no conflict. \n\nThroughout history it has been demonstrated that free markets lead to the best allocation of scarce resources. Best in the sense that free markets optimize some sort of measurement in terms of human well being or satisfaction (utility). In a free market I only make trades that benefit me, and therefore restrictions on my ability to make those trades is sub-optimal. \n\nOf course, if I don't have all the correct information, I might make a trade that does not work out in the end. Asymmetric information can cause all sorts of issues in markets. Especially markets not cleared by prices (like matching markets). However, I can learn from this mistake and make a better decision next time. \n\n## Governments\n\nIgnoring my personal political biases, I think at the very least it is true that the broader the population/geography that is being governed, the less powers the government ought to have. I have less issues with my local government taxing me to pay for things that I will use or my neighbors will use. I have more problems with my federal government taxing me to pay for a problem in California that exists because California passes bad policies. The varying levels of cost of living within the US makes the idea of a federal minimum wage almost nonsensical. \n\n## Space\n\nIn the three body problem series, I think in the second book, there is a situation in which a group of humans is faced with the notion that they will never be able to return to earth. Ignoring what the author posits as the solution, I believe in a situation in which each decision is potentially an existential decision, people will want to remove their burden of responsibility. This would lead to an authoritarian style of government. What's more, there are likely situations in which decisions need to come from one person. \n\n## Tying them together\n\nA space colony is a situation in which people are faced with extreme scarcity. Realistically, we would rely on earth for supplies for a significant period of time. Let's call this the earth dependent time (EDT). However, without the ability to produce goods, can there be a free market during the EDT? I do believe there would be some sort of market where people will trade for goods. However, I don't think a purely free market is feasible. There is a fixed supply of goods that need to be rationed to a certain extent. Maybe something like salt will be traded to get out of a chore or for a better place to sleep, but I don't know how to think about the constraints in such a situation. There is no room for mistake in an existential situation. If I make the wrong decision, it could lead to the collapse of the colony. \n\nThe other element that makes this hard to solve is that weight of the outcomes imply each decision must be highly informed. The amount of time it would take to learn the downstream effects of each decision would be overly burdensome, further limiting the success of a mission on another planet. As such, one might imagine an authoritarian type figure giving people constraints in which they can trade so as to lessen this information gathering cost. \n\n## Questions\nSo I guess here are my questions - does a free market/libertarian style of government make sense in space when the mistake of one person could lead to the destruction of all?\n\nIf not, what at what point do they become optimal? Is it when the system is such that one person/one decision/one trade does not pose an existential threat to certain proportion of others? \n\nIs it some sort of gray area where one person has sole decision making responsibility for specific things and others are up for a vote?\n\nHow does this apply to reality? \N 1632 \N 430248 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 23.4241594548268 0 \N \N f 0 \N 0 166210129 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 00:12:11.247 f \N \N \N 0 0 0 0 0 0 0 434699 2025-03-12 07:09:22.575 2025-03-29 22:39:48.166 The ICANN Problem, Solved With Bitcoin Previously, I had written a post on Stacker News titled ["The ICANN Domain Problem, Solved With Nostr?"](https://stacker.news/items/125707), I presented the issue of how ICANN is the central controlling authority of internet domain names, and how we don't genuinely own them, and that issue spills over the solution that NIP-05 is trying to provide on Nostr.\n\nThe purpose of that post, and this one, is to showcase the issue of NIP-05, with the bigger issue being ICANN itself, to hopefully open up the discussion so that people can figure out a solution, all the while trying to present a potential solution myself. People have presented valid criticisms of the idea and presented holes in what I had presented as a potential solution, and they were valid ones. After some time, another solution presented itself to me, however, it might rub Bitcoiners the wrong way, but considering the opened floodgates with Ordinals, I thought might as well potentially make use of it.\n\n## What's The ICANN Problem?\nAmong the many reasons why people love Bitcoin is because it's not centrally controlled by anyone or a group of colluding individuals. The same goes for Nostr, which is seeing continuous growth in user adoption as they migrate from other centralized social platforms and other services to it. As such, current domain holders can completely lose access to their domain that's registered at ICANN, by an entity in ICANN, or by an external influence.\n\nIn short, the ICANN problem is that you are not truly the owner of any domain you've purchased under their rule. With that said, this leads to the issue that Nostr is trying to currently solve, which is simple, human-readable handle names, and a solution was presented called NIP-05 handles, but because of the ICANN, it is a bandaid solution.\n\n### The NIP-05 Problem\nNostr's NIP-05 handle solution attempts to address the issue of creating human-readable names for decentralized domains. Instead of using NPUB addresses directly, the idea is to associate handles with domains to improve user accessibility and convenience. However, upon closer examination, it becomes apparent that this approach poses several significant challenges and fails to achieve the desired decentralization and censorship resistance.\n\nOne of the primary concerns with the NIP-05 handle solution is its reliance on domain names. As we know, the domain name system is currently managed by ICANN, a centralized authority. This centralization introduces a critical vulnerability, as it means that a controlling entity could potentially take control of a domain associated with NIP-05 handles.\n\nIn such a scenario, if an authoritative entity seizes control of a domain, all the handles associated with that domain would be rendered useless, causing users to lose their hard-earned and recognizable identities. This loss could lead to a severe setback for user outreach and branding, as individuals and businesses may have built their online presence around these handles. Such an outcome significantly undermines the purpose of decentralized domains, as it introduces a single point of failure and compromises the integrity of the entire system.\n\n## The Failed Nostr Solution\nThe previous idea that I had presented to solve the ICANN problem, in gist, is to have a file that all relays would hold and update with domain names and connect them with users' NPUBs, but that had its issues:\n\n### 1. Consensus on File State\nOne of the major with the Nostr idea was a robust mechanism for relays or entities referencing the file to reach a consensus on its current state. In a decentralized domain system, it's crucial to ensure that all participants are on the same page regarding the associations between names and their corresponding public addresses. Without a consensus protocol, discrepancies and inconsistencies would arise, leading to fragmented and unreliable domain resolution.\n\n### 2. Ease of Squatting\nAnother pressing concern was the ease of domain squatting, where individuals could register and hold multiple names, limiting others' access to those names at little to no cost. The potential for abuse could hinder fair access to domain names. It would be a first-come-first-served process with no reasonable financial barriers.\n\n## New Solution: Utilize Bitcoin\nHere's my newest attempt at trying to provide a solution to the ICANN problem, which is to make Bitcoin itself the new home for domains instead of ICANN. While others have presented the idea of other chains that are attached or anchored to Bitcoin that has already done this, I'd view it as still an issue since those chains are not as decentralized or powerful as Bitcoin itself and can be susceptible to failure.\n\n### Secondary Block Rewards: Domain Name Tokens (DNTs)\nAt the moment, the Bitcoin protocol rewards Miners that discover a block with an amount of BTC. The idea here is to add another kind of reward alongside the current one: Domain Name Tokens (DNTs). \n\nLet's say this idea has been implemented into Bitcoin. An individual has successfully mined a Bitcoin block, and that person was rewarded with the current usual 6.25 BTC. Alongside that, they are also rewarded with, for example, 1,000 DNTs would be rewarded to that Miner, which can be then used, given, sold, or traded with other people in the world. The price of a DNT would be determined by supply and demand.\n\nOnce an individual has acquired a DNT, which was originally gained through POW, and then gained before use through a potential financial cost, they would then update the DNT that they own by attaching a name to it (permanent), and other relevant information like an IP address or a Nostr NPUB or note ID (can be changed later), and then send it (to yourself? to a contract? not sure how this part would work) to have it confirmed in the Bitcoin network, and if the name is available (ideally, there'd be a system that checks the network if a name is available or not before you send), you'd have that DNT recorded in the Bitcoin network with the associated name that no one can take, which would also have data that would connect it to a server to showcase your website on a browser.\n\n#### Third Block Reward Type: Human Readable Bitcoin Address Tokens (HRBATs)\nAccidentally thought of this when I was writing down the main idea above for the domain name tokens on Bitcoin. If users can obtain tokens so that they can be used to register/record a word and attach with its data, specifically an IP address or a Nostr NPUB or note ID, then another type of token that is pretty much the same as the domain one, but specifically for Bitcoin addresses.\n\nThis would follow the same idea as above, where miners would be rewarded with Y amount of HRBATs, and would be given/sold to the masses. A person with an HRBAT can then sign and send it with a name, have it confirmed and recorded in the Bitcoin blockchain, and then attach a Bitcoin address of their choosing to it. The results? We would now have human-readable Bitcoin addresses to transact with.\n\n- Before: "Hey John, you can send me that 0.05 BTC to bc1qar0srrr7x...5l643ly...9re59gtzz...mdq"\n- After: "Hey John, you can send me that 0.05 BTC to HummusMan9K"\n\n## End Thoughts\nHere are a few extra thoughts I had while I was thinking about these issues and solutions:\n- I don't think both of these types of rewards should be case-sensitive, as it would lead to various malicious issues if it was.\n- I'm not sure if this requires a new BIP or not, and if it does and the solution is sound, then the latest issue would be approval from the Bitcoin network and approval time (as well as sound development/code of course).\n- Other data can be attached to a DNT, such as a Bitcoin address, or a Bitcoin LN address as well.\n- Even though a DNT is pretty much the same thing almost as an HRBAT, the reason I'd suggest there'd be two different types is for better organization and push for separate uses. A DNT would have "Domain Name", "Server Address", "Bitcoin Address", and "Bitcoin LN Address" fields, while HRBAT would have "Bitcoin Address Name", "Bitcoin Address", and "Bitcoin LN Address" fields.\n- Internet browsers would need to add support for DNTs, and an agreed method of accessing them via the URL field needs to be figured out. Perhaps something like "Visit my website on bd:freakoverse" where "bd" stands for "Bitcoin Domain", is to point toward the Bitcoin network. Browsers can offer a quick toggle to switch between ICANN domains and Bitcoin domains next to the URL field, and a user can set whichever is the default. \N 19863 \N 434699 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.502564108264 0 \N \N f 0 \N 0 41742481 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 00:53:48.278 f \N \N \N 0 0 0 0 0 0 0 448185 2025-03-22 13:09:31.794 2025-03-29 22:39:51.965 \N Yes, all valid points. But to this article. Its all stuff we've heard over and over again. I guess I would say there are much bigger issues than these issues. Nothing about this to me is bitcoin specific. Its just our culture and human nature.\n\n1. Too much talk: Yeah, have you looked at politics, sports, and entertainment? This criticism is elitist and kinda like the communist criticism of capitalism. To much choice.\n2. Too boring: Very few people have new ideas. Most copy.\n3. Overconfidence: Again have you looked at politics? \n\nI don't care about the first one accept for me personally. I want to be progressing.\n\nI could TLDR this and say. Most people don't think for themselves. We are highly influenced and crowd oriented. Nothing strange about bitcoin people in that regard. This is to be expected. What I see as a pattern in these types of posts is a frustrated person who in any other popular community would be in the majority but in bitcoin they feel like they are in the out group. https://example.com/ 6260 447944 447944.448185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4160614764768 0 \N \N f 0 \N 0 24398403 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N 2025-03-29 08:47:31.929 f \N \N \N 0 0 0 0 0 0 0 444764 2025-03-20 08:41:48.076 2025-03-29 22:39:51.965 \N ![](https://www.zapread.com/i/9GE) https://example.com/ 21825 444755 444755.444764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.4090929931364 0 \N \N f 0 \N 0 92103158 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 2025-03-29 08:44:38.5 f \N \N \N 0 0 0 0 0 0 0 435760 2025-03-12 23:56:32.119 2025-03-29 22:39:51.965 \N Cool initiative!\n\n1. Relies 100% on trust\n - fine as loans usually entail risk but it’d be nice to minimize if possible \n2. trust consists of comments only, eg lots of cost to evaluating trustworthiness \n - it’s be nice to introduce a rating system so trust can be “compressed” into a number and be easier to evaluate https://example.com/ 18402 435746 435746.435760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7658537084773 0 \N \N f 0 \N 0 81113723 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 2025-03-19 23:28:19.566 f \N \N \N 0 0 0 0 0 0 0 434640 2025-03-12 05:10:03.985 2025-03-29 22:39:51.965 \N i’m thinking through some of the details of how user-generated subs might work, will share my thoughts and look for feedback in the coming days https://example.com/ 7654 434440 434440.434640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6205220640328 0 \N \N f 0 \N 0 83056471 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 2025-03-19 07:24:46.52 f \N \N \N 0 0 0 0 0 0 0 435954 2025-03-13 06:30:44.964 2025-03-29 22:39:48.164 The testnet mempool is full. [Testnet Mempool](https://mempool.space/testnet)\n\n![Screenshot from 2024-04-14 20-10-13.png](https://m.stacker.news/26564)\n[Runes](https://testnet.ordinals.com/runes) protocol activates on Bitcoin at block 840000 \N 15226 \N 435954 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 1.8493191976879 0 \N \N f 0 \N 0 179698876 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:15:11.316 f \N \N \N 0 0 0 0 0 0 0 442514 2025-03-18 15:52:15.436 2025-03-29 22:39:51.965 \N Then you're in the wrong sub. https://example.com/ 2719 442170 442170.442514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5931512905894 0 \N \N f 0 \N 0 87130399 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 2025-03-26 03:48:56.971 f \N \N \N 0 0 0 0 0 0 0 448378 2025-03-22 15:17:59.732 2025-03-29 22:39:51.966 \N Not the week, but today, learned the basics of Nostr, linked my account here, and it seems to be awesome really. https://example.com/ 9921 448341 447892.448341.448378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2316113669078 0 \N \N f 0 \N 0 188887050 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 08:46:11.662 f \N \N \N 0 0 0 0 0 0 0 434859 2025-03-12 09:46:14.498 2025-03-29 22:39:51.966 \N ![photo-output.jpeg](https://m.stacker.news/24480) https://example.com/ 8416 434795 434795.434859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7141893728883 0 \N \N f 0 \N 0 141007886 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 06:53:41.998 f \N \N \N 0 0 0 0 0 0 0 434910 2025-03-12 10:33:39.35 2025-03-29 22:39:51.966 \N We actually don´t know in detail because we do not track users. Based on conversations with users we see quite a variety of use cases ranging from tipping on social media platforms like Twitter, YouTube, and individual websites, to accessing Lightning web apps or even developers building and testing their apps. https://example.com/ 20642 433937 433937.434910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.707636744108 0 \N \N f 0 \N 0 56840702 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 2025-03-19 03:51:32.611 f \N \N \N 0 0 0 0 0 0 0 435986 2025-03-13 07:46:25.995 2025-03-29 22:39:48.164 The Opposite of a Good Idea In the realm of math and physics, the opposite of a good idea is a bad idea.\n\n1+1 is 2, not 3, and apples fall down when dislodged from trees, not up.\n\nHowever, as Rory Sutherland argues in his book [Alchemy](https://www.bookmarked.club/books/alchemy), the world does not always conform to the rules of logic. Physics and math are important, but so is magic.\n\nThe example Rory uses in Alchemy's foreword illustrates his point:\n\n“Imagine for a moment, you are sitting in the boardroom of a major global drinks company, and your job is to produce a new product that will rival the position of Coca-Cola as the world’s second most popular cold, non-alcoholic drink (after water).\n\nWhat would you say? How would you respond?\n\nWell, the first thing I would say is probably something like this: We need to produce a drink that tastes nicer than Coke, costs less than Coke, and that comes in a really big bottle so people get great value for money.\n\nWhat I’m fairly sure nobody would say is this: Why don’t we try marketing a really expensive drink that comes in a tiny can and that tastes kind of disgusting?\n\nYet that’s exactly what one company did, and by doing so, they launched a soft drink brand that would indeed go on to be a worthy rival of Coca Cola. That drink was Red Bull.”\n\nPsychology does not play by the same set of logical rules that physics does, yet so often in business and in life we assume that logic must be the solution to our problems.\n\nAs Robert Cialdini writes in his book [Influence](https://www.bookmarked.club/books/influence), “the principles of selling and behavior change are imbued with contradictions”. Below are a few more examples of such contradictions:\n\n- Advertising can get new customers, but so can staying quiet. Have you ever seen an ad for a country club?\n- A beautiful website can raise your brand’s status, but so can a boring one. Have you ever seen Berkshire Hathaway’s site?\n- Automated services can enhance a customer’s experience, but so can manual ones. Why do nice hotels still have doormen when they could open doors with automated sensors?\n- We like expensive things because they are expensive, and cheap things because they are cheap\n\nRory Sutherland summarizes the premise of his book as follows:\n\n“While the modern world often turns its back on this kind of illogic, sometimes it is uniquely powerful. Alongside the inarguably valuable products of science and logic, there are also hundreds of seemingly irrational solutions to human problems just waiting to be discovered - if only we are brave enough to abandon conventional logic in the search for answers.”\n\nThe next time you find yourself certain that your logical idea is a good one, take a moment to consider what the opposite of your idea might look like. \n\nYou may just find yourself with another very good idea. \N 9920 \N 435986 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 25.2612155137286 0 \N \N f 0 \N 0 127463100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:32:49.929 f \N \N \N 0 0 0 0 0 0 0 435841 2025-03-13 02:47:47.381 2025-03-29 22:39:51.956 \N Founder and CTO of suborbital systems here. We are competing with Starlink / Starshield and offering to all customers . \n\nUsing high altitude balloons. https://example.com/ 1195 435812 435812.435841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.91519177583407 0 \N \N f 0 \N 0 152373239 0 f f \N \N \N \N 435812 \N 0 0 \N \N f \N 2025-03-19 22:40:55.443 f \N \N \N 0 0 0 0 0 0 0 436301 2025-03-13 13:03:47.834 2025-03-29 22:39:51.956 \N Quick thoughts as I listen - I'm not an expert.. but this seems like FUD. \n\n"Rather than trying to fix the problems with Bitcoin, the community has decided to simply ignore them and create a different set of problems with the Lightning Network."\n\nNo... to "fix" the problem, necessarily would involve trade-offs.. trade offs no sensible person wants to make on L1. \n\nPrice volatility is not a problem.. certainly not one to be solved by engineering. Price is a reflection of the subjective valuations of network participants. \n\nThe reason bitcoin is the base layer of lightning is because bitcoin is fair, secure, valuable, decentralized etc. we can't just use "anything" \n\nThere are risks of custodial services centralizing on network.. that will be up to the users.. and to the extent that creates a problem, solutions to move away from custodial services will be developed.. it's still very early on. Plus its an open and permissionless protocol. \n\n"both parties must agree to setup a channel, that is the opposite of permissionless"\n\nNo it isn't. That's called mutual voluntary exchange. \n\nIf there is a dispute between a lightning payment, it just settles back to the base chain.. not sure of the particulars here so I could be enlightened. \n\nMore decentralization of LN doesn't mean that a transaction will have to hop through *more* channels.. the opposite in fact. The network is much larger, with more nodes, and we get significantly higher successful routes now. \n\nGovernment could attack lightning through calling them payment services/banks etc and regulation.. yes, we'll see if they do and if they can enforce it. https://example.com/ 21485 436292 436093.436292.436301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.134521261241 0 \N \N f 0 \N 0 49871053 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:30:55.334 f \N \N \N 0 0 0 0 0 0 0 435092 2025-03-12 13:05:04.904 2025-03-29 22:39:51.957 \N "Pete The Knife", because I was so skinny.\n\nAt the time I didn't feel embarrassed about it. But I do now... because that nickname is no longer accurate... https://example.com/ 10586 435040 435018.435040.435092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3699792784092 0 \N \N f 0 \N 0 78083055 0 f f \N \N \N \N 435018 \N 0 0 \N \N f \N 2025-03-19 06:43:13.843 f \N \N \N 0 0 0 0 0 0 0 435909 2025-03-13 05:07:14.762 2025-03-29 22:39:51.966 \N ![9bb14782294d460f7a46aacf2c8eaa59_post_1699873466950.jpeg](https://m.stacker.news/4843) https://example.com/ 9364 435908 435908.435909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.00239920068343 0 \N \N f 0 \N 0 89251917 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 2025-03-20 00:39:06.052 f \N \N \N 0 0 0 0 0 0 0 435881 2025-03-13 04:12:26.445 2025-03-29 22:39:51.966 \N Day 182 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 16259 434318 434278.434318.435881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5369152609212 0 \N \N f 0 \N 0 80815982 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-20 02:05:34.674 f \N \N \N 0 0 0 0 0 0 0 433721 2025-03-11 10:42:30.547 2025-03-29 22:39:48.164 Elon Musk releases the model of Grok-1 AI \N https://x.ai/blog/grok-os 4650 \N 433721 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.1668154416757 0 \N \N f 0 \N 0 72709170 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:36:05.078 f \N \N \N 0 0 0 0 0 0 0 447719 2025-03-22 04:32:55.051 2025-03-29 22:39:48.164 Last Comment Wins Just a fun little experiment dressed as a game. I’m mostly just curious how this will go. Maybe this will be boring but that’s exactly what I want to find out!\n\nRules are simple: be the last comment within 24 hours and you win 5k sats + any zaps on this post! \N 13763 \N 447719 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 13.190369193667 0 \N \N f 0 \N 0 150589835 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:38:49.479 f \N \N \N 0 0 0 0 0 0 0 436233 2025-03-13 12:05:10.346 2025-03-29 22:39:48.165 Bitcoin Explained #90 - Asynchronous Lightning Payments In this episode of Bitcoin, Explained, Aaron and Sjors are joined by Breez developer Jesse de Wit to discuss asynchronous lightning payments. They explain why such payments would be useful, how they would work, and what building blocks are required to realize it. In the process, Aaron, Sjors and Jesse also cover the basics of PTLCs and Trampoline Payments. https://bitcoinexplainedpodcast.com/@nado/episodes/episode-90-asynchronous-lightning-payments-31owp 1483 \N 436233 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 5.54610675228844 0 \N \N f 0 \N 0 103148980 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:09:31.454 f \N \N \N 0 0 0 0 0 0 0 435522 2025-03-12 18:54:09.293 2025-03-29 22:39:48.165 The Naked Came The Stranger Literary Hoax I remember this saga as a kid, because the book was written by journalists from a local newspaper I read every day. \nIf you're not familiar with the book, check out the wikipedia page:\nhttps://en.wikipedia.org/wiki/Naked_Came_the_Stranger\n\nI love the that sections had to be edited because the writing was too good, and the fact that it was a bestseller is funny and sad at the same time. \n \N 21140 \N 435522 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 29.0227518758888 0 \N \N f 0 \N 0 145572512 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:39:53.892 f \N \N \N 0 0 0 0 0 0 0 448902 2025-03-23 00:56:40.227 2025-03-29 22:39:51.957 \N I'm considering 100x leverage LONG my 400 stats on LNMarkets. The reason is because I can't withdraw everything from the platform—I'm still trying to figure out why. I might as well kamikaze this account. Who knows, it might work. Lol. https://example.com/ 18101 448049 448049.448902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2175672879978 0 \N \N f 0 \N 0 27897909 0 f f \N \N \N \N 448049 \N 0 0 \N \N f \N 2025-03-29 19:41:54.204 f \N \N \N 0 0 0 0 0 0 0 448423 2025-03-22 15:41:43.111 2025-03-29 22:39:51.957 \N Get a cool tshirt from the lightning store. https://example.com/ 717 448349 448349.448423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1564545706872 0 \N \N f 0 \N 0 2103327 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 08:59:15.908 f \N \N \N 0 0 0 0 0 0 0 435369 2025-03-12 16:22:05.367 2025-03-29 22:39:48.165 Books And Articles Newsletter, Issue 36 ![](https://m.stacker.news/57009)\n\n### News Of The Week \n\nWelcome to the Books And Articles newsletter. Thanks for all of the quality posts.\n \n@plebpoet led the way this week again, this time with a short story. I was happy to see two short stories posted this in fact, as @eduardopro gave us one of his too. For those who are not familiar with this account, Eduardo Prospero is a Venezuelan journalist and fiction writer. You can find his story in the index below. \n\nThere were also good book and show reviews this week. Thanks again.\n\nAs always, please reply with suggestions and opinions on how to make this territory better. \n\nLogo design by @plebpoet\nLink to last week’s newsletter: \nhttps://stacker.news/items/711417/r/siggy47\n\n\n### Top Five Posts Of The Week \n\nHere are this week’s top posts:\n\n- ['little fictions' presents: Cowboys Don't Belong](https://stacker.news/items/713535/r/siggy47) by @plebpoet\n\n- [REVIEW: The Mandibles by Lionel Shirver](https://stacker.news/items/719755/r/siggy47) by @21futures\n\n- [Money Electric by HBO ~ The Best Review so far](https://stacker.news/items/716064/r/siggy47) by @TheMorningStar\n\n- [More emotion, less code - Why we need more bitcoin stories](https://stacker.news/items/714404/r/siggy47) by @21futures\n\n- [The woman who revolutionized the fantasy genre is finally getting her due](https://stacker.news/items/719090/r/siggy47) by @StillStackinAfterAllTheseYears\n\n### Siggy’s Suggestions\n\n- [The Penguin: Best mob show since the Sopranos?](https://stacker.news/items/714678/r/siggy47) by @StillStackinAfterAllTheseYears\nI was immediately turned off by the DC Comics Superhero franchise, and at first I thought it was a Sopranos/Scorsese ripoff. I was completely wrong. StillStackin has found a real gem. I watched the first three episodes and I am hooked. The writing and acting is much better than than the usual crap that gets churned out. Watch it. \n\n- [1917: Lenin, Wilson, and the Birth of the New World Disorder](https://stacker.news/items/716546/r/siggy47) by @kepford\n\n@kepford’s short, hybrid link post/book review highlights two men whose decisions still affect us today. I have just started really delving into WW I history, so I’m adding this book to my reading list. \n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n- ["Who are you?" — How do I want to answer?](https://stacker.news/items/674910/r/siggy47) by @IamSINGLE\n\n- ["My journey with Bitcoin: the experience of an ordinary Cuban"](https://stacker.news/items/676287/r/siggy47) by @BTCLNAT\n\n\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n- [And Then She Disappears - Block 1](https://stacker.news/items/680735/r/siggy47) by @ginkgo\n\n### Book Reviews\n\n- [The Mandibles by Lionel Shirver](https://stacker.news/items/719755/r/siggy47) by @21futures\n\n- [Book Review | Catcher in the Rye - Better the second go around as an adult](https://stacker.news/items/709553/r/siggy47) by @realBitcoinDog\n\n- [Book Review | The Diving Bell and the Butterfly](https://stacker.news/items/706975/r/siggy47) by @carlosfandango\n\n- [The Underground Man by Dostoevsky](https://stacker.news/items/707544/r/siggy47) by @Nadia\n\n- [Emil Cioran: 'The Fall into Time ("Sturz in die Zeit" in German)](https://stacker.news/items/694642/r/siggy47) by @TomK\n\n- [Book Review: The Book of Elsewhere, by China Mieville and Keanu Reeves](https://stacker.news/items/697427/r/siggy47) by @jurraca\n\n- [A Journey Through Emiko Jean's The Return of Ellie Black](https://stacker.news/items/691236) by @Melisa\n\n- [what i read, and wrapping up in july:](https://stacker.news/items/630204/r/siggy47) by @speakingyourtruth\n\n- [Book Review: Nothing Like The Movies by Lynn Painter](https://stacker.news/items/670569/r/siggy47) by @speakingyourtruth\n\n- [The Mandibles: A Review](https://stacker.news/items/668210/r/siggy47) by @jimmysong\n\n- [Self-Reliance by Emerson](https://stacker.news/items/669132/r/siggy47) by @ek\n\n\n- [Book - The Victorian Internet by Tom Standage (1998)](https://stacker.news/items/673776/r/siggy47) by @Signal312\n\n- [Review: The Righteous Mind](https://stacker.news/items/665765/r/siggy47) by @Undisciplined\n\n- [Book Review: Sliced Americana](https://stacker.news/items/663627/r/siggy47) by @jbschirtzinger\n\n- [Saboteurs: How Secret, Deep State Occultists Are Manipulating American Society](https://stacker.news/items/675002/r/siggy47) by @jbschirtzinger\n\n- [The New Manners and Customs of Bible Times](https://stacker.news/items/691719) by @jbschirtzinger\n\n- [Book Review | “The Happiness Project” and “Happier at Home”](https://stacker.news/items/718985/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Self-Motivated Kid”](https://stacker.news/items/705694/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Perks of Being a Wallflower”](https://stacker.news/items/704856/r/siggy47) by @cryotosensei\n\n- [Book Review | “101 ways to bring out the best in your children & yourself”](https://stacker.news/items/667453/r/siggy47) by @cryotosensei\n\n- [Book Review | “Diary of a Wimpy Kid”](https://stacker.news/items/668335/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Daily Dad” by Ryan Holiday](https://stacker.news/items/684138/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002) by @cryotosensei\n\n- [Book Review | “The 17 Indisputable Laws of Teamwork”](https://stacker.news/items/687944) by @cryotosensei\n\n- [Book Review | “Wonder Doodles”](https://stacker.news/items/685335) by @cryotosensei\n\n- [Book Review | “Sompo Guide Tokyo”](https://stacker.news/items/702025/r/siggy47) by @cryotosensei\n\n- [Book Review | “Peak”](https://stacker.news/items/698568/r/siggy47) by @cryotosensei\n\n- [Book Reviews Directory #2](https://stacker.news/items/665395/r/siggy47)\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Movie & Television Reviews\n\n- [Sound of Freedom | Movie Review](https://stacker.news/items/710780/r/siggy47) by @SimpleStacker\n\n- [Movie Review | “How to make millions before Grandma dies”](https://stacker.news/items/683086/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [El Encargado | Argentinian TV series | very good comedy](https://stacker.news/items/689468/r/siggy47) by @DarthCoin\n\n- [The IT crowd | hillarious super funny comedy TV series](https://stacker.news/items/694922/r/siggy47) by @DarthCoin\n\n- [Two TV series about the "Schrodinger's cat" theory](https://stacker.news/items/701874/r/siggy47) by @DarthCoin\n\n- [From | Que sera, sera... | new season 3 TV series](https://stacker.news/items/696122/r/siggy47) by @DarthCoin\n\n\n\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [a new kind of poem (that you can see 👀 and hear 🦻)](https://stacker.news/items/676672/r/siggy47) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n- [Let's pretend we loved each other](https://stacker.news/items/666008/r/siggy47) by @Nadia\n\n- [That's MINE! Poetry.](https://stacker.news/items/661773/r/siggy47) by @Malach17\n\n- [Silly rhymes written by a guy (maybe) fallen in love](https://stacker.news/items/666985/r/siggy47) by @0268a5c238\n\n\n\n### Short Stories\n\n- ['little fictions' presents: Cowboys Don't Belong](https://stacker.news/items/713535/r/siggy47) by @plebpoet\n\n- [Short Story: “Quarter” by Eduardo Prospero](https://stacker.news/items/713942/r/siggy47) by @eduardopro\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 16954 \N 435369 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.5481876275309 0 \N \N f 0 \N 0 180657881 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 10:24:59.347 f \N \N \N 0 0 0 0 0 0 0 435007 2025-03-12 11:54:53.309 2025-03-29 22:39:48.165 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/503353) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 3642 \N 435007 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 21.0350557620732 0 \N \N f 0 \N 0 161778868 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 13:53:29.818 f \N \N \N 0 0 0 0 0 0 0 446736 2025-03-21 12:47:39.418 2025-03-29 22:39:48.165 We should all try and be more frugal \nThere was a recent post here (https://stacker.news/items/253554) that surprised me, mainly in how many here still believe in energy scarcity, the need for recycling, and the benefits of being "eco-friendly". Whatever that means. Personally, I find Saifedean Ammous's arguments (energy scarcity is NOT a problem, except that we've made it one with government policies) to be very convincing. \n\nIt sure seems like this whole thing (climate crisis, we must switch to renewable energy only) is our newest religion. And recyling is one of the sacraments of the religion. Probably the only really useful recycling I've done is when, as a kid, we walked on country roads to collect aluminium cans, and once we had a huge bag of crushed cans, we'd head to the scrapyard where they'd pay us for the aluminium.\n\nAlso I appreciate the articles from @nullcount on recycling:\nhttps://www.insider.com/mit-research-andrew-mcafee-says-recycling-is-useless-2019-10\nhttps://www.npr.org/2020/09/11/897692090/how-big-oil-misled-the-public-into-believing-plastic-would-be-recycled\nBottom line, almost all "recycling" is a pointless, money and energy wasting exercise. Though people will still look askance at you for rejecting it, because it's a part of the eco religion.\n\nThinking through the lens of frugality, rather than the blinders of "eco-friendliness", can help you figure out what truly makes sense, vs what is just counter-productive virtue signaling. If it saves you money, then you can stack more sats. A good thing.\n\nSo here's some frugal and fun ideas for you, that will also make you more self-sufficient. \n\n- Baking your own bread. It's not hard, once you have some easily-developed skills. You could buy lots of baking tools and supplies, but you definitely don't need to. And you can easily and quickly make a loaf of bread that's far better than a fancy $5 loaf you could buy in a store. \n\n- Cook. Avoid processed foods, and just buy ingredients. And cook. Cooking is fun and can save loads of money, not to mention being far healthier than what almost everyone is eating. \n\n- Make your own cleaning supplies. Forget about vinegar and baking soda, all you need for 95% of cleaning is a spray bottle with mostly water, with a squirt or two of dishwashing liquid. \n\n- Cut your own hair, or have a family member cut it. It's not hard at all and saves time as well as money.\n\nOther ideas?\n \N 1090 \N 446736 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.2143133961911 0 \N \N f 0 \N 0 17368582 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:50:39.813 f \N \N \N 0 0 0 0 0 0 0 444806 2025-03-20 08:59:35.702 2025-03-29 22:39:51.957 \N Something to reflect on for You, a quote by F. Nietzsche:\n\n''There are no facts, only interpretations." \n\nI hope some fact checkers can check on this one as it made me confused and crazy this morning! https://example.com/ 1039 444755 444755.444806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.549185046591 0 \N \N f 0 \N 0 137047900 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 2025-03-29 08:44:45.097 f \N \N \N 0 0 0 0 0 0 0 435688 2025-03-12 22:00:00.387 2025-03-29 22:39:51.958 \N > Being able to charge for private content (for territory owners exclusively) will likely see a proliferation of people wishing to purchase their own in order to monetise their content/products - and I think will make it far more financially viable going forward.\n\nThis ties into one of the territory features I still pine for, more for principled reasons than a personal need for it: allowing people to become a "member" of the territory by ante-ing up. This would serve two purposes.\n\nFirst: revenue generation, as per the Substack example. If someone wanted to do a paid newsletter or something, now they could; or even the paid / public combo that a lot of writers use, where some stuff is exclusive to members. Since SN already has a really nice commenting / threading system, it makes that member connection thing viable.\n\nSecond: adding real anti-douchebag defense. If you're a giant asshole, posting garbage, insulting and threatening users, etc., there is currently limited way to dissuade that, and there's no way to dissuade it that has teeth. If you had to ante up, and then acted like a dick enough times, I could sweep your ante, and you can't talk until you ante up again, at which point I could sweep it again. It's a nuclear option, and some territories won't want to require it, but the only way SN will not have to confront this issue is if it doesn't scale enough for the issue to materialize. Which would probably be bad for its future prospects.\n\nSome vocal critics of "censorship" hate this idea, of course, and that's reasonable. It all comes down to your working model -- to me, territories really ought to be territories, and they can be run by a tyrant, a visionary leader, or whatever -- exerting that control is what you get for your 100k sats / month. SN should be able to accommodate different visions, and users should be free to choose which of these visions they want to be a part of.\n\nThat kind of went afield from our original discussion, sorry :/ https://example.com/ 15180 435580 435488.435580.435688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9737922019358 0 \N \N f 0 \N 0 24454543 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 00:15:05.8 f \N \N \N 0 0 0 0 0 0 0 428997 2025-03-07 19:38:29.297 2025-03-29 22:39:51.958 \N The mania and the madness are both about to run wild... https://example.com/ 2367 427748 414232.427748.428997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3136760394237 0 \N \N f 0 \N 0 1124039 0 f f \N \N \N \N 414232 \N 0 0 \N \N f \N 2025-03-18 20:42:31.494 f \N \N \N 0 0 0 0 0 0 0 448399 2025-03-22 15:27:44.081 2025-03-29 22:39:51.958 \N When you're skipping rocks across the lake with your kids XD https://example.com/ 18618 448311 447761.447816.448311.448399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6823210561035 0 \N \N f 0 \N 0 43302981 0 f f \N \N \N \N 447761 \N 0 0 \N \N f \N 2025-03-29 08:47:20.421 f \N \N \N 0 0 0 0 0 0 0 212959 2024-08-10 15:28:34.175 2025-03-29 22:39:48.165 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nIf you missed our last edition, [here](https://stacker.news/items/303074) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 3461 \N 212959 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.5861110289529 0 \N \N f 0 \N 0 114505403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:02:54.23 f \N \N \N 0 0 0 0 0 0 0 435661 2025-03-12 21:18:26.342 2025-03-29 22:39:51.959 \N ...and that single comment has made the last few days working on this worthwhile for me. I don't normally get much feedback on my projects (to be fair, I don't think many people ever see them) so knowing one person saw it and liked it is enough, thanks 🧡 https://example.com/ 15367 433889 433889.435661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2077959487443 0 \N \N f 0 \N 0 57736998 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 2025-03-19 17:07:15.681 f \N \N \N 0 0 0 0 0 0 0 436285 2025-03-13 12:54:45.209 2025-03-29 22:39:51.959 \N FWIW I've personally setup an email server hosted on a consumer internet connection with a static IP. After setting up all the SPF and DKIM records properly, I could successfully deliver mail to Gmail just fine. So I think this is a bit overstated. https://example.com/ 18923 436093 436093.436285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.60887892799852 0 \N \N f 0 \N 0 29739730 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:31:00.109 f \N \N \N 0 0 0 0 0 0 0 448360 2025-03-22 15:08:11.116 2025-03-29 22:39:51.96 \N Programming will be less important than knowing how to structure your thoughts. Just like Bitcoin, it changes you the more you understand it.\n\nKeep going but don't expect it to be the career cash cow you might’ve expected it to be. We are likely arriving at the commodification of code. https://example.com/ 3717 447642 447642.448360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9008373012036 0 \N \N f 0 \N 0 72489702 0 f f \N \N \N \N 447642 \N 0 0 \N \N f \N 2025-03-29 09:05:03.518 f \N \N \N 0 0 0 0 0 0 0 447991 2025-03-22 10:30:27.464 2025-03-29 22:39:51.96 \N Test to see if I get a horse... https://example.com/ 695 447944 447944.447991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.58834391331229 0 \N \N f 0 \N 0 127675636 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N 2025-03-29 08:33:47.896 f \N \N \N 0 0 0 0 0 0 0 443397 2025-03-19 10:21:46.523 2025-03-29 22:39:51.961 \N There are many other extrinsic channels for revenue one can do with a brand. But, at that point, the territory becomes more of a sponsored ad for a different product, which is an operating cost like line item rather than a revenue driver. All of which, require additional resources.\n\nIf 100k + Other Costs < 5k + Other Revenue ...then territories make sense. But...as of right nowo, there isnt really tools to even integrate or measure. https://example.com/ 15544 443288 443288.443397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4183284578845 0 \N \N f 0 \N 0 2532386 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N 2025-03-26 03:38:54.84 f \N \N \N 0 0 0 0 0 0 0 443702 2025-03-19 13:24:19.281 2025-03-29 22:39:51.961 \N The term "no shit, Sherlock" comes to mind. The real question is why the Atlantic is writing this article 23 years later? Maybe because Saudi Arabia has stopped doing US bidding and no longer is the main petrodollar prop? https://example.com/ 1008 443545 443545.443702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1227064217221 0 \N \N f 0 \N 0 131012094 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 2025-03-26 06:43:16.587 f \N \N \N 0 0 0 0 0 0 0 434533 2025-03-12 01:58:30.701 2025-03-29 22:39:51.962 \N It’s Chinese New Year tomorrow. Got roped in to sing a quintessential CNY song alongside these colleagues at the school celebration today. School is often a mad rush from wire to wire, so I feel glad to slow down n do something for fun today!\n\n![3baaa63f-1e2e-47e6-bdd0-40d3a886f3b8.jpeg](https://m.stacker.news/15441) https://example.com/ 5293 434469 434469.434533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2942259170026 0 \N \N f 0 \N 0 67593472 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 2025-03-19 04:45:19.177 f \N \N \N 0 0 0 0 0 0 0 435851 2025-03-13 03:07:58.629 2025-03-29 22:39:51.962 \N Interesting. Would you consider something like hourly / daily subscriptions paid over lightning by chance? Something we're looking to build support into @ Mutiny and I think the VPN use case could work out with something like this. Starting to focus heavily on building subscriptions on LN. https://example.com/ 10270 435795 434278.434318.435783.435795.435851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.290673392624 0 \N \N f 0 \N 0 218689804 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-20 02:06:13.311 f \N \N \N 0 0 0 0 0 0 0 448191 2025-03-22 13:15:24.617 2025-03-29 22:39:48.165 Python: So you want to learn to code? Links I've collected over the years. Greetings. \nI've wanted to learn to code (python specifically) for a while.\nHere is the result of that. \nEnjoy my bookmarks dump.\n\n1. [Cool mobile phone app called Mimo](https://mimo.org/)\n2. [Python Docs: Using Python on a Mac](https://docs.python.org/3/using/mac.html)\n3. [Python Central: Using Python on a Mac](https://www.pythoncentral.io/how-to-use-python-on-a-mac/)\n4. https://www.learnpython.org/\n5. https://www.pythoncentral.io/\n6. https://www.datacamp.com/\n7. https://www.jomaclass.com/programming-fundamentals\n8. [CS50x 2024 Lectures](https://www.youtube.com/playlist?list=PLhQjrBD2T381WAHyx1pq-sBfykqMBI7V4)\n9. https://cs50.harvard.edu/x/2024/\n10. https://www.codecademy.com/\n11. https://www.freecodecamp.org/learn\n12. https://leetcode.com/\n13. https://www.w3schools.com/\n14. https://www.sololearn.com/en/learn/courses/python-introduction\n15. https://empireofcode.com/\n16. https://codecombat.com/\n17. https://www.codewars.com/\n18. https://checkio.org/\n19. https://www.algoexpert.io/\n20. https://www.crackingthecodinginterview.com/\n21. [Some tips for landing your first developer job](https://stacker.news/items/449696) \N 14195 \N 448191 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 11.5168779604748 0 \N \N f 0 \N 0 226549645 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:43:23.7 f \N \N \N 0 0 0 0 0 0 0 434975 2025-03-12 11:30:01.964 2025-03-29 22:39:48.167 What's the hardest thing you've had to do this year? \N \N 3304 \N 434975 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6692388750401 0 \N \N f 0 \N 0 180486556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:48:51.119 f \N \N \N 0 0 0 0 0 0 0 448207 2025-03-22 13:36:10.606 2025-03-29 22:39:51.963 \N Yes, https://BlueWallet.app if you [activate the LDK option](https://bitcoinmagazine.com/technical/bluewallet-lightning-implementation) (10 taps on Lightning when creating a new wallet)\n\nIt works on desktop version too...\n![](https://imgprxy.stacker.news/wXeaBEo1-g7ER9p9dEQPMDmJ4MGLd9JTRGxdn2u9Dh8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pbTQuZXpnaWYuY29tL3RtcC9lemdpZi00LWIwM2Y4NjFjMjkuZ2lm) https://example.com/ 19980 448205 448200.448205.448207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.29216180239284 0 \N \N f 0 \N 0 204608404 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N 2025-03-29 08:39:11.956 f \N \N \N 0 0 0 0 0 0 0 436614 2025-03-13 18:05:32.131 2025-03-29 22:39:51.963 \N At least as Szabo imagined them, micropayments on the web would be an even greater anxiety-inducing payment scheme. \n\nIf streaming services can increase rates and downgrade services at flat rate billing, they can probably do just as much with pay-per-whatever billing. \n\nImagine your favorite streaming service slowly increases their rate by 1 sat every week. The difference might be hard to discern, and there would still be lock-in (although maybe less). But you might have the same sense of anxiety (*oh man, watching movies sure has gotten expensive lately!*)\n\nSzabo is spot on that people don't want to deal with any of this. \n\nAnd yet dealing with it on SN is actually fun. I like thinking about how much to zap, and the feeling of zapping, and playing around with different minimums or zap behaviors and seeing how much a post or comment has been zapped. \n\nIn responding to the comments on this post, one of the things I've come to is that it's important that zaps are voluntary. They aren't a *price* we pay for content. Stackers get to decide everything about the zap. And somehow that makes it better. Whereas if it was a price, I'd have to worry if it was fair or if it had gone up or if it was correct calculated for what I was purchasing. \n\nThere is the case of posting fees: there we have a required micropayment for a service. Introspecting myself, I can't say that I feel any mental fatigue over thinking through posting fees. Sometimes they are high and I decide not to post (or more often post in a different territory). But mostly I don't even notice them. All the same concerns with micropayments as listed above should still be there, and yet none of them turn out to be relevant. It is possible SN is just a really stellar service and do I don't notice them, but maybe also they aren't as big a deal as I initially suspected. https://example.com/ 963 436603 436560.436603.436614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67142779147625 0 \N \N f 0 \N 0 177309134 0 f f \N \N \N \N 436560 \N 0 0 \N \N f \N 2025-03-20 14:29:19.026 f \N \N \N 0 0 0 0 0 0 0 434492 2025-03-12 00:41:55.564 2025-03-29 22:39:51.963 \N I doubt his intentions. Initially I used to think that Bukele was a man of good aspirations but now his policies of flooding his own country with foreign people makes me think why doesn't he first start taking care of his own people. https://example.com/ 1483 434488 434488.434492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.66174228048682 0 \N \N f 0 \N 0 144096882 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 2025-03-18 20:46:48.727 f \N \N \N 0 0 0 0 0 0 0 434582 2025-03-12 03:32:12.019 2025-03-29 22:39:51.964 \N "Isn't Peter McCormack a douchebag, Nayib?" https://example.com/ 4064 434387 433832.434387.434582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44718471557067 0 \N \N f 0 \N 0 77212065 0 f f \N \N \N \N 433832 \N 0 0 \N \N f \N 2025-03-18 23:34:02.697 f \N \N \N 0 0 0 0 0 0 0 435283 2025-03-12 15:18:32.797 2025-03-29 22:39:51.964 \N people zap like maniacs!\n\nPlenty more engagement and comments than writing/posting literally anywhere else (regular writing outlets, Twitter, Nostr etc) https://example.com/ 17116 434791 434791.435283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3107325397948 0 \N \N f 0 \N 0 15086138 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 08:51:31.367 f \N \N \N 0 0 0 0 0 0 0 435680 2025-03-12 21:48:14.894 2025-03-29 22:39:51.964 \N I would echo that. Ultimately most people should just take a few trips on scouting missions to see if it ‘feels right’ first. But options should be sought beforehand, not when you’re in a panic or rush.\n\nYou will also need to collect a bunch of paperwork and get things apostilled and boring jazz. Those documents can expire in 6 months, so you should probably only go ahead with that if you’re convinced it’s time and a place you know.\n\nI skipped that step for the simple fact that I did a bunch more PoW than the average stacker. Sometimes you just know. https://example.com/ 21556 435488 435488.435680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9702773349135 0 \N \N f 0 \N 0 5716209 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 00:15:08.146 f \N \N \N 0 0 0 0 0 0 0 436611 2025-03-13 17:58:02.549 2025-03-29 22:39:48.165 Vote with your feetcoin I can't remember the number of times that I've wrote mails asking why don't the organization that I want to donate or pay doesn't accept bitcoin. One would think that FOSS groups would definitely be the first ones to get on board with us, but I remember already writing to [Tails](https://tails.net/donate/) and [Graphene](https://grapheneos.org/donate#bitcoin) asking why don't they accept bitcoin, and offering help to do it: the former didn't respond and the latter answered with a smear. They're still using single addresses for donations FFS, aren't they supposed to be the paragon of privacy? But these are just foundations and they can keep not receiving any money in donations for what they do, that's their problem. Something very different is when I pay for goods & services. \n\nWhat I am now doing is going **first to services that accept bitcoin** and then look for alternatives e.g I have a couple of machines running on [Contabo](https://contabo.com/en/) which offers a great service by the way, but they still don't accept BTC, so I wrote to them saying in the future I wouldn't keep with the service unless I could pay with BTC, that's it. I am about to get a new VPN and I chose Mullvad because I've heard mostly good comments on it, but also because I could pay in sats. This will be my policy from now on. Me and my homies have a few billions to spend but we will do it exclusively with our magic internet money. \n\n![I am no longer asking](https://i.postimg.cc/Kz0SD1hX/i-IRUZG1-Foyw2-L06v-Rf-VJHTM1-WAmrmnzliwt-E8408g-G56-R3drx-Tx-KO-m-UFGPm-Pq-ZXfm8j1-OERe-X0-Uza-OFXJZK15-Qjeqe-DJVf-I6-V.jpg)\n\nEvery retailer I tried to onboard has always told me "no one has ever asked me to pay with BTC here" so they don't see any use for it! We have to break that vicious circle, people don't use it because no one demands it, but no one asks for it where they go, so retailers think no one uses it! \n\nThis post was inspired by post about creating a [new type of media](https://stacker.news/items/304290) and once again, they want help, but they don't accept BTC. The best help I can give them would be to help them find out what BTC is, much more than the few ksats I'm sending on donation. \N 726 \N 436611 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.8137942970096 0 \N \N f 0 \N 0 77505954 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 14:20:17.831 f \N \N \N 0 0 0 0 0 0 0 434505 2025-03-12 01:02:25.333 2025-03-29 22:39:51.964 \N I'd like to see a chart of about 100 years. Post covid in particular https://example.com/ 21402 433833 433833.434505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0133991494816 0 \N \N f 0 \N 0 239573206 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 2025-03-19 05:01:22.256 f \N \N \N 0 0 0 0 0 0 0 435057 2025-03-12 12:38:35.388 2025-03-29 22:39:51.964 \N Hello @johngalt 👋\n\nWelcome to the platform!\n\nIt's full of quality content so read and learn, try to contribute by adding good content.\n\nHere are some intro articles that you need to go through in order to get familiar with the platform and its ideology:\n\n- The official SN [FAQ](https://stacker.news/faq)\n- The official SN [Guide](https://stacker.news/guide)\n- [The Zen of Stacking Sats On Stacker News](https://stacker.news/items/184545) by @siggy47\n- [The Art of Using Stacker News ⚡️](https://stacker.news/items/252695) by @Natalia https://example.com/ 2293 435019 435019.435057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.43777287485536 0 \N \N f 0 \N 0 99556860 0 f f \N \N \N \N 435019 \N 0 0 \N \N f \N 2025-03-19 06:11:08.541 f \N \N \N 0 0 0 0 0 0 0 447585 2025-03-21 23:54:28.03 2025-03-29 22:39:51.965 \N When people say "lightning usage is low, XYZ is the future," it sounds an awful lot like "bitcoin usage is low, ethereum is the future" to me.\n\nDecentralized things are hard and take longer to work well, but that doesn't mean garbage is the future. https://example.com/ 20554 447566 447566.447585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3389335176295 0 \N \N f 0 \N 0 193981266 0 f f \N \N \N \N 447566 \N 0 0 \N \N f \N 2025-03-29 08:33:35.974 f \N \N \N 0 0 0 0 0 0 0 436641 2025-03-13 18:34:14.424 2025-03-29 22:39:51.965 \N I don't think lightning network is dying, but I do think everything we could have done to script everything out to make it as easy and scalable as possible has been done. I think we're ready for the next soft fork. I think we're ready for LNHANCE (CTV + CSFS + IK), BUT some people say not so fast. They want to see us try with just presigned transactions. I think this will go hilariously terribly, but maybe we just need to put on the clown suits and make presigned transaction based timeout trees. https://example.com/ 21639 436491 436491.436641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5659154109572 0 \N \N f 0 \N 0 195304288 0 f f \N \N \N \N 436491 \N 0 0 \N \N f \N 2025-03-20 12:05:24.356 f \N \N \N 0 0 0 0 0 0 0 435319 2025-03-12 15:39:00.667 2025-03-29 22:39:51.965 \N Can we stop shilling this wallet? It’s custodial, full of rug pull risk, and I think it will not end well for both WoS or the users of WoS. Even if the WoS team means well and want the best for bitcoin, I don’t think it’s good for bitcoin to make a custodial wallet popular for on boarding. It promotes the old ways of fiat banking, does not emphasize personal responsibility, and don’t even get me started on government capture risk… https://example.com/ 16912 435313 435284.435313.435319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.721357285211 0 \N \N f 0 \N 0 128527554 0 f f \N \N \N \N 435284 \N 0 0 \N \N f \N 2025-03-19 08:57:52.481 f \N \N \N 0 0 0 0 0 0 0 434765 2025-03-12 08:15:55.444 2025-03-29 22:39:51.965 \N I have tried many, but in the end just gave up, people will come to it on their own. There's something about it here https://stacker.news/items/61520\n\nWhat I do now is try to spike curiosity on people so they will study and try to find out more about it. For example people trying to send money abroad, I show them the best way is through BTC and offer to show them how, or even do it myself, so they know that it actually works. Splitting bills and paying my part in BTC is also a good one. And asking as much as possible if it's possible to pay with BTC and when I need to be paid, clarify I prefer BTC. \nI believe NgU technology is what will make most of the job of onboarding. https://example.com/ 5746 434285 434285.434765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9848625410672 0 \N \N f 0 \N 0 70508783 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 2025-03-19 07:26:02.365 f \N \N \N 0 0 0 0 0 0 0 448334 2025-03-22 14:53:05.602 2025-03-29 22:39:51.967 \N It is so political and boring. I mean its subtle but its political and its boring and it sucks. \n\n> Coinbase has made billions of dollars unlawfully facilitating the buying and selling of crypto asset securities.\n\n\nSo if they only made millions it would be ok? The only reason coinbase has made billions is because you didnt act until now\n\n> "You simply can’t ignore the rules because you don’t like them or because you’d prefer different ones: the consequences for the investing public are far too great,” said Gurbir S. Grewal, Director of the SEC’s Division of Enforcement. \n\nCoinbase has been BEGGING for clarifiation for years. But SEC refuses to give any guidelines what so ever for staking and what not. But this SEC goon try to make it seem as if thats not the case. I mean as much as i dislike altcoins and what not, the dishonest and frankly corrupt political bureaucracy is way worse https://example.com/ 1198 448314 448263.448314.448334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5290728211018 0 \N \N f 0 \N 0 209818135 0 f f \N \N \N \N 448263 \N 0 0 \N \N f \N 2025-03-29 08:31:10.696 f \N \N \N 0 0 0 0 0 0 0 435184 2025-03-12 14:12:57.903 2025-03-29 22:39:48.165 Anyone tried asking "Do you accept sats?" rather than "Do you accept bitcoin" There's so much ignorance out there about Bitcoin.\n\nI've had people laugh in my face when I've asked if a likely business accepts Bitcoin.\n\nI've a feeling that if I were to instead ask, "Do you accept sats?" instead that they'd be more curious. \n\nIt would at least start a conversation, educate them and maybe explode the myth that you need to buy a whole bitcoin. \N 2056 \N 435184 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.16444717399762 0 \N \N f 0 \N 0 189767117 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 08:44:35.377 f \N \N \N 0 0 0 0 0 0 0 436530 2025-03-13 16:14:00.77 2025-03-29 22:39:48.165 15 State Officials Warn Bank Of America About 'De-Banking' Of Christians These debanking events are becoming more widespread. Altogether now: Bitcoin fixes this. https://www.zerohedge.com/political/15-state-officials-warn-bank-america-about-de-banking-christians 1489 \N 436530 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 10.8969570139136 0 \N \N f 0 \N 0 195929518 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 09:39:20.417 f \N \N \N 0 0 0 0 0 0 0 443500 2025-03-19 11:44:19.949 2025-03-29 22:39:48.165 [Lightning-dev] Resizing Lightning Channels Off-Chain With\tHierarchical Channels \N https://lists.linuxfoundation.org/pipermail/lightning-dev/2023-March/003886.html 5978 \N 443500 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 3.60751909703495 0 \N \N f 0 \N 0 3991044 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:04:25.1 f \N \N \N 0 0 0 0 0 0 0 435270 2025-03-12 15:11:37.539 2025-03-29 22:39:51.965 \N I kind of want to avoid artificial friendship stuff. I think it's a trap.\n\nWe don't have follower counts in real life. https://example.com/ 7877 435116 435018.435116.435270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5131902810753 0 \N \N f 0 \N 0 12107431 0 f f \N \N \N \N 435018 \N 0 0 \N \N f \N 2025-03-19 09:03:56.504 f \N \N \N 0 0 0 0 0 0 0 443563 2025-03-19 12:18:51.63 2025-03-29 22:39:51.965 \N I took a job as a delivery driver so I could listen to audio books all day. I think I've been through at least 20 in the few months I've been there.\n\nI often need to listen again, especially if they're complex. And the best of them I'll have to buy the paperback at some point https://example.com/ 9275 443396 443396.443563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3400526881174 0 \N \N f 0 \N 0 188321691 0 f f \N \N \N \N 443396 \N 0 0 \N \N f \N 2025-03-26 05:35:54.573 f \N \N \N 0 0 0 0 0 0 0 436602 2025-03-13 17:47:23.517 2025-03-29 22:39:51.965 \N Preach it, brother, as a small business owner I pride myself in always paying my service providers on time, but others don't seem to feel that way, having a mismatch in cash flow is a pain in the arse, and now as a business owner, you need to build in buffers for everything and then still think of the fiat leakage of holding those buffers and like you say that money could have been used to grow the business instead https://example.com/ 1650 436372 436241.436372.436602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5662347102942 0 \N \N f 0 \N 0 129493430 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 12:05:39.026 f \N \N \N 0 0 0 0 0 0 0 436026 2025-03-13 08:44:56.511 2025-03-29 22:39:51.965 \N What happened to the daily? Only 25 comments in 30 minutes? lol https://example.com/ 18068 436024 435907.436014.436024.436026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.456136431830423 0 \N \N f 0 \N 0 13727772 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 04:53:38.014 f \N \N \N 0 0 0 0 0 0 0 443357 2025-03-19 09:36:10.785 2025-03-29 22:39:51.965 \N You do not compete with those giants... you make them obsolete. \nYou step out of their system. And you have many alternatives today.\nBut this takes time, education, OSS. https://example.com/ 21810 443326 443326.443357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5498651054245 0 \N \N f 0 \N 0 79911220 0 f f \N \N \N \N 443326 \N 0 0 \N \N f \N 2025-03-26 04:26:45.243 f \N \N \N 0 0 0 0 0 0 0 446602 2025-03-21 11:22:26.033 2025-03-29 22:39:48.165 Hand drawn sticker design in progress Howdy, I am working on art for an upcoming [btc++](https://btcpp.dev/conf/floripa) event. The theme is hacking at the beach. I want them to be fun and animated, so I'm scanning my sketches and loading them up in Illustrator to vectorize and print.\nStarting to bring color in on these ideas\n![](https://m.stacker.news/61934)\nJust worked first drafts for these ideas today\n![](https://m.stacker.news/61935)\n\nI rarely draw, so the polish of these ideas is not my best, but I like the character it adds.\n\nWhat do you think? Any suggestions? \N 1135 \N 446602 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 20.447420975915 0 \N \N f 0 \N 0 234556444 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:24:31.816 f \N \N \N 0 0 0 0 0 0 0 434590 2025-03-12 03:48:57.386 2025-03-29 22:39:51.957 \N Newsletter and code review. Go. https://example.com/ 17533 434465 434465.434590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7278658342632 0 \N \N f 0 \N 0 195105842 0 f f \N \N \N \N 434465 \N 0 0 \N \N f \N 2025-03-18 21:05:55.169 f \N \N \N 0 0 0 0 0 0 0 436061 2025-03-13 09:29:11.488 2025-03-29 22:39:51.957 \N I found this list, which is a nice summary and link to each of the nodes as well:\nhttps://github.com/theDavidCoen/LightningExchanges https://example.com/ 686 436028 436028.436061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7136898417856 0 \N \N f 0 \N 0 9686173 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 06:44:11.685 f \N \N \N 0 0 0 0 0 0 0 434466 2025-03-11 23:12:21.995 2025-03-29 22:39:51.957 \N Nice touch turning zaps into fireworks today. Happy ID4 🫡 \n\n(I feel like watching that movie now) https://example.com/ 8380 434398 434396.434398.434466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1181303547871 0 \N \N f 0 \N 0 130322485 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N 2025-03-18 16:29:12.07 f \N \N \N 0 0 0 0 0 0 0 434534 2025-03-12 02:01:40.378 2025-03-29 22:39:51.957 \N Minecraft with Lightning Intergration. (via LNBits)\n\nConsider checking out https://sovereigncraft.com/ which runs as https://sovereignnode.io/\n\nHere's a lil excerpt:\n\nAbout Sovereign Craft\nSovereign Craft is more than a server—it's an educational platform where the in-game currency is as real as it gets. Our unique system integrates Bitcoin, teaching players about digital currency through play.\n\nSovereign Craft is a Minecraft server that allows a player to learn, use and play in a world that uses real digital money in game. Sovereign Craft is the only server that uses real in game wallets that work in the real world as well. Sovereign Craft teaches players how to interact with and use the best money ever created, Bitcoin. https://example.com/ 9529 434310 434278.434298.434310.434534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1236787698688 0 \N \N f 0 \N 0 98456748 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 00:39:17.453 f \N \N \N 0 0 0 0 0 0 0 448948 2025-03-23 02:17:55.763 2025-03-29 22:39:51.957 \N Nice try, fed. https://example.com/ 19469 448015 448015.448948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.965415435621 0 \N \N f 0 \N 0 118095222 0 f f \N \N \N \N 448015 \N 0 0 \N \N f \N 2025-03-29 19:41:15.843 f \N \N \N 0 0 0 0 0 0 0 446714 2025-03-21 12:38:00.332 2025-03-29 22:39:51.957 \N No!!!! I lost my Cowboy hat.🤠 460 days was a heck of a run to the top of the board. Good luck to the rest of you out there! \n\n![](https://m.stacker.news/67447) https://example.com/ 20562 446513 446513.446714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3571753382113 0 \N \N f 0 \N 0 4336787 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N 2025-03-28 10:19:00.528 f \N \N \N 0 0 0 0 0 0 0 443333 2025-03-19 09:13:45.432 2025-03-29 22:39:51.965 \N Hello! Im pretty new too and SN is the best! https://example.com/ 5578 443330 443295.443297.443328.443330.443333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7005027511509 0 \N \N f 0 \N 0 98871993 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:26.661 f \N \N \N 0 0 0 0 0 0 0 436002 2025-03-13 08:04:36.895 2025-03-29 22:39:48.165 Sunday Survey: What percent of your current BTC stash will you leave your kids? \N \N 15146 \N 436002 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.75799668778453 0 \N \N f 0 \N 0 82427199 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 01:37:46.307 f \N \N \N 0 0 0 0 0 0 0 436613 2025-03-13 18:05:10.336 2025-03-29 22:39:48.165 Bitcoin adoption in Germany: Scepticism and lack of education The German economy has been slow to adopt cryptocurrencies no differentiation between btc and shitcoins), with only about 2% of companies employing 50 or more people using them. Another 3% consider using them in the future. A whopping 87% of the companies do not foresee adopting cryptocurrencies. These stats come from a survey of 653 companies conducted on behalf of Bitkom. One reason for the hesitation could be cryptocurrencies' volatile reputation and association with speculative behavior. However, they could play a significant role in the future, especially concerning smart contracts and as a payment method in the Internet of Things. \N 8080 \N 436613 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 0.355689309193146 0 \N \N f 0 \N 0 46743942 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:33:03.387 f \N \N \N 0 0 0 0 0 0 0 436638 2025-03-13 18:30:03.291 2025-03-29 22:39:51.957 \N I treat banks like I do hot wallets. Keep a losable balance!!!!!!\n\nI also exploit consumer protection laws. Every March since 2020 I claim $5k in theft. They have to legally replace the money while they "vestigate". By then that money is in bitcoin. They haven't shut me down yet either. I'm not doing anything immoral by doing this. I do this because I was once stranded in another country and couldn't get a ticket back because they were "vestigating" valid charges I previously confirmed were mine. Then Covid restrictions hit the next day and I got stuck, and lost a job opportunity. I will claim my $5k every March for the rest of my fucking life. In fact, I need to adjust that for inflation. https://example.com/ 2593 436323 436323.436638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3270720565457 0 \N \N f 0 \N 0 139459363 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 2025-03-20 12:05:25.286 f \N \N \N 0 0 0 0 0 0 0 435347 2025-03-12 15:52:16.31 2025-03-29 22:39:51.957 \N For something different I really enjoyed ‘The Polybius Conspiracy’ originally on Radiotopia’s showcase. No spoilers. https://example.com/ 4984 435331 435046.435324.435331.435347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2668859006562 0 \N \N f 0 \N 0 15410945 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 09:13:11.87 f \N \N \N 0 0 0 0 0 0 0 436123 2025-03-13 10:37:10.86 2025-03-29 22:39:51.957 \N I'm thinking we're going to see double digit CPI here in a few months. So the true rate of inflation will probably be like low 20s then. https://example.com/ 19905 435928 435924.435928.436123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.21796759221748 0 \N \N f 0 \N 0 6529253 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N 2025-03-20 04:31:42.147 f \N \N \N 0 0 0 0 0 0 0 446864 2025-03-21 14:04:39.754 2025-03-29 22:39:51.957 \N This week has taught me one thing:\nThose who use BTC as collateral to borrow money are helping to push Bitcoin adoption further into the future -- the same effect as those who promote shitcoins. They want to earn now 20%, rather than 200% later. When their short-term investments fail, they are forced to sell their BTC, which drives down the price of BTC. That in turn makes ignorant people think that Bitcoin is failing, so they sell too. The only backstop to that selling are those who stack and hodl. https://example.com/ 11522 446822 446822.446864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2671714462164 0 \N \N f 0 \N 0 89267901 0 f f \N \N \N \N 446822 \N 0 0 \N \N f \N 2025-03-28 10:49:47.344 f \N \N \N 0 0 0 0 0 0 0 435828 2025-03-13 02:05:45.446 2025-03-29 22:39:51.957 \N No.\n\nI plan on having sex with my wife tonight koob. \n\n https://example.com/ 4259 435551 435551.435828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6622005324884 0 \N \N f 0 \N 0 145682704 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 2025-03-19 21:25:27.663 f \N \N \N 0 0 0 0 0 0 0 434654 2025-03-12 05:26:13.542 2025-03-29 22:39:51.957 \N I used to see them once or twice a week, and don't know if it's coincidence or just life, but we started being parents and covid lockdows hit, so after covid I see them like once every 3 months probably. I think in my case with covid we lost our friendship routines to have a coffee every week. https://example.com/ 9354 431241 431241.434654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9322870322231 0 \N \N f 0 \N 0 13079198 0 f f \N \N \N \N 431241 \N 0 0 \N \N f \N 2025-03-19 18:47:12.553 f \N \N \N 0 0 0 0 0 0 0 434995 2025-03-12 11:49:58.105 2025-03-29 22:39:51.957 \N This is me patiently waiting for the SN Justice League to arrive!\nhttps://imgprxy.stacker.news/1UVFIy5WswErKfCOtoVi50PSAPSc2SN7sPo8IIHBQpk/rs:fit:600:500:0/g:no/aHR0cHM6Ly9nY2RuYi5wYnJkLmNvL2ltYWdlcy9abHBPa1NtRG1zNWcuZ2lmP289MQ https://example.com/ 919 434933 434646.434877.434898.434933.434995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.060369245412 0 \N \N f 0 \N 0 246719970 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 05:46:53.606 f \N \N \N 0 0 0 0 0 0 0 443620 2025-03-19 12:43:59.399 2025-03-29 22:39:51.957 \N 3M sats for @Anita 🎉 congrats @siggy47 @grayruby 🤙 https://example.com/ 11018 443295 443295.443620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6250980453331 0 \N \N f 0 \N 0 239816731 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:15:05.918 f \N \N \N 0 0 0 0 0 0 0 434575 2025-03-12 03:22:43.084 2025-03-29 22:39:51.957 \N A recreational park for picnic and family get together https://example.com/ 18637 434535 434535.434575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.23000164641496 0 \N \N f 0 \N 0 217540819 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 2025-03-18 23:06:05.31 f \N \N \N 0 0 0 0 0 0 0 436570 2025-03-13 16:52:49.592 2025-03-29 22:39:51.957 \N getting a deep-dive lesson on how mutiny’s lightning node in the browser works https://example.com/ 9611 436567 436290.436307.436567.436570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.18698058027918 0 \N \N f 0 \N 0 242369392 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 2025-03-20 12:05:48.148 f \N \N \N 0 0 0 0 0 0 0 435440 2025-03-12 17:20:12.491 2025-03-29 22:39:51.957 \N Now I'm a fake news disseminator. We all have our roles. https://example.com/ 5017 435432 434791.435315.435333.435344.435432.435440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1380530440141 0 \N \N f 0 \N 0 118877208 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 10:38:33.116 f \N \N \N 0 0 0 0 0 0 0 435159 2025-03-12 14:02:39.635 2025-03-29 22:39:51.958 \N This is probably important, and its clearly adjacent to btc stuff, but the exact relationship is not obvious to me. Thoughts? https://example.com/ 9537 434978 434791.434978.435159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2273435239144 0 \N \N f 0 \N 0 72107279 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 12:36:21.04 f \N \N \N 0 0 0 0 0 0 0 435338 2025-03-12 15:47:08.549 2025-03-29 22:39:51.958 \N Woke up with a headache, which does not bode well. I will probably work half a day and relax the rest of the day. Get a full night of rest, maybe *sleep in* tomorrow. https://example.com/ 12346 435154 435154.435338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4635191707916 0 \N \N f 0 \N 0 101644428 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 10:34:09.72 f \N \N \N 0 0 0 0 0 0 0 443382 2025-03-19 10:11:01.75 2025-03-29 22:39:51.958 \N Loving visiting my new saloon. Howdy all 🤠! Another day old and Bitcoin wiser! https://example.com/ 1030 442848 442710.442848.443382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5027135012586 0 \N \N f 0 \N 0 233448585 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 2025-03-26 05:04:07.13 f \N \N \N 0 0 0 0 0 0 0 448073 2025-03-22 11:39:46.733 2025-03-29 22:39:48.165 Meme Monday - Best Bitcoin Meme Gets 25,000 Sats Time for another round of Meme Monday!\n\nLast week's winner sent in [this meme](https://stacker.news/items/322834), and we have another 25,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs here.\n\nSend your best 👇 \N 20969 \N 448073 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 21.0515317400145 0 \N \N f 0 \N 0 84521743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:58:08.28 f \N \N \N 0 0 0 0 0 0 0 435616 2025-03-12 20:25:02.568 2025-03-29 22:39:51.958 \N I think a new format.\n\nPH might have been the wrong example, maybe more like yelp or review of current/ new Bitcoin products/ companies - what you mentioned in your other comment sounds great. Something that is sortable (launch date/ sector etc) - not so much about up voting with sats, I would love to be able to read bitcoiners/ experts/ people (I respect) reviews/comments about products/companies in one spot. I think having that here, will eventually bring people here as the product hunt type launch feature that people will visit to hear what new stuff is coming out.\n\nOne example: there has been some great comments on ways to earn sats - would love a post/tab where I can read in one spot what people are saying about "Bitcoin Libre" \n\nHope that makes sense! https://example.com/ 4474 435579 435579.435616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5419959262731 0 \N \N f 0 \N 0 244846004 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 2025-03-19 15:17:14.606 f \N \N \N 0 0 0 0 0 0 0 435927 2025-03-13 05:33:46.26 2025-03-29 22:39:51.958 \N It's not fud.\n\nFirst of all, you need to process blocks or the counterparty in an LN channel can eventually defraud you.\n\nSecond, even if they're honest, LN channels will eventually fail due to timeouts if your LN node can't process blocks.\n\nThere's a time window when LND can still function. But it can't go on indefinitely without a patch. https://example.com/ 5522 434318 434278.434318.435927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6995437086428 0 \N \N f 0 \N 0 34744356 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-20 02:05:12.391 f \N \N \N 0 0 0 0 0 0 0 433547 2025-03-11 07:52:10.838 2025-03-29 22:39:51.959 \N his team has just confirmed it\n\n![](https://m.stacker.news/39696)\n https://example.com/ 11829 431241 431241.433547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8577854941576 0 \N \N f 0 \N 0 213160523 0 f f \N \N \N \N 431241 \N 0 0 \N \N f \N 2025-03-19 05:31:11.552 f \N \N \N 0 0 0 0 0 0 0 443325 2025-03-19 09:05:32.466 2025-03-29 22:39:51.96 \N If you want to read a ton of discussion on this, the [HN thread is pretty great](https://news.ycombinator.com/item?id=38309611) is burning up. https://example.com/ 20117 443311 443295.443297.443301.443308.443311.443325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.56408579027434 0 \N \N f 0 \N 0 239270924 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 03:36:04.447 f \N \N \N 0 0 0 0 0 0 0 435067 2025-03-12 12:45:00.812 2025-03-29 22:39:51.96 \N Well, for starters, I tend to reply to really dumb posts https://example.com/ 1729 434795 434795.435067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.72943671452949 0 \N \N f 36667648 \N 1 69944014 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 06:04:57.37 f \N \N \N 0 0 0 0 1 0 0 434265 2025-03-11 18:06:12.877 2025-03-29 22:39:48.166 What would you answer to a request like this? Ok guys, I would like to hear your opinions.\nNo judging, no darth choke force, just want to see how others are reacting to this.\n\nI am receiving a lot of request for help, at a daily basis.\n[![requests_for_help.jpg](https://imgprxy.stacker.news/NWWZmwLqrivNi9sMBYQuaW1wcHEUZEezy94qyjYQSEA/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvSGtQTmdOZ2MvcmVxdWVzdHNfZm9yX2hlbHAuanBn)](https://postimg.cc/ZWpHPV04)\n\nIs normal, many people already know me and think that I am some kind of guru. Not at all, I am just a guy writing bitcoin guides from experience.\n\nBut let's say you got this message into your telegram group from a fellow bitcoiner member from a group. And I know well the person, is not a scammer or something, just a newbie.\n\nHow you would respond?\nTake in consideration:\n- you are busy with your regular work\n- your level of bitcoin knowledge\n- the timing of this message (maybe you are in the middle of a large holiday or a big project)\n- is a friend of yours\n- you do not want to lose the opportunity to onboard a new merchant\n\nLet's play this like a game. Shoot your answers. \N 880 \N 434265 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 20.9999064729205 0 \N \N f 0 \N 0 172297516 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:12.936 f \N \N \N 0 0 0 0 0 0 0 448505 2025-03-22 16:37:23.552 2025-03-29 22:39:51.96 \N i use stacker and nostr pretty much daily, it could be good, if done right https://example.com/ 1720 448349 448349.448505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.02610078334342 0 \N \N f 0 \N 0 109688981 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 15:10:55.062 f \N \N \N 0 0 0 0 0 0 0 443646 2025-03-19 12:49:33.571 2025-03-29 22:39:51.961 \N I don’t think they are shitcoins. Contrary to the belief you need dollars to get goods and services. Most shitcoins are worthless only bought to get more usd why? To buy things!.\n\nIf I offered everyone who voted yes $1 million USD or one million XRP tokens everyone would choose the USD. Why? \n\nBecause we all still need USD! \n\nShoot you use this voted upon shitcoin to buy bitcoin. \n\nUntil people stop accepting USD for payment of goods and services it will never be a shitcoin.\n\nDon’t let the politics and the fraud lead you to believe the usd is not serviceable in any way like 100% of the shitcoins you see on coinmarket cap. \n\nI believe the usd will turn shitcoin when no one wants it for goods and services. Until then I refuse to call something a shitcoin that has tangleable value in the real world. \n\nShitcoins are worthless. If you think you USD is worthless then send it to me and I’ll buy food, energy, water, and bitcoin with your shitcoin usd. https://example.com/ 11240 443197 443197.443646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7735750639648 0 \N \N f 0 \N 0 220493128 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 2025-03-26 06:07:49.903 f \N \N \N 0 0 0 0 0 0 0 448935 2025-03-23 01:41:05.899 2025-03-29 22:39:51.961 \N Yikes! You a beast @k00b! Hopefully my incentive didn’t derail your roadmap too much. But just showcasing the power SN can have. https://example.com/ 6537 447818 447818.448935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8848749342235 0 \N \N f 0 \N 0 16735332 0 f f \N \N \N \N 447818 \N 0 0 \N \N f \N 2025-03-29 19:40:58.094 f \N \N \N 0 0 0 0 0 0 0 436394 2025-03-13 14:25:41.909 2025-03-29 22:39:48.166 Does Bitcoin have a hostage situation of its own? U.K. regulators have served their people with yet another "blessing" to protect them from themselves. The [Travel Rule for Crypto Assets](https://notabene.id/crypto-travel-rule-101/what-is-the-crypto-travel-rule) mandates Virtual Asset Service Providers (VASPs) to share sender and receiver information for all crypto transactions.\n\nIf they want to continue doing business in the U.K., crypto exchanges will be compelled to collect user information and block transfers to any wallet not controlled by another regulated VASP. \n\nCase in point, Gemini U.K. recently said [they will block transfers of bitcoin](https://cryptoslate.com/gemini-to-limit-crypto-transfers-in-the-uk-to-trust-companies/) unless going between "TRUST" verified Virtual Asset Service Providers (VASPs) a.k.a. KYC/AML institutions.\n\n## The question I've been asking myself is...\n\nWill this ultimately result in a bifurcation of UTXOs – whereby, some quantity of bitcoin becomes trapped within the legacy financial system, segregated from the rest which can be spent freely?\n\nOr, will this "trapped" bitcoin in time find a way to escape the VASPs and leak back into the private, non-custodial market? If so, how?\n\n--\n*(Another possibility is that people are able to see the evil in this scheme and choose not to use VASPs to transact in Bitcoin at all. However, I am not an optimist.)* \N 21398 \N 436394 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 15.5947700243534 0 \N \N f 0 \N 0 14856415 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:23:49.592 f \N \N \N 0 0 0 0 0 0 0 414385 2025-02-23 21:22:58.859 2025-03-29 22:39:48.897 Million Sat Madness Leaderboard — #837115 After a month of madness, here we are in the last hours.\n**``Congratulations, stackers!``**\n\nYou're about to receive your certificate of insanity 🤠\nThis month will be unforgettable, at least for me!\n\n----\n\nAs we can see in the image below, the **TOP 10** hasn't changed much since the beginning.\n\n![54f4f.png](https://m.stacker.news/24309)\n\n### Some notes:\n\n- On the 5th, I was in the top 5, and I think the other one was @davidw;\n- In the first 3 positions, I think it was always the same people, but we don't know if there were any changes between them, only they will know. I respect the privacy of whoever it is, don't judge me;\n- On the 10th and 17th, the tenth position would already be @Scoresby, who then came out of the shadows;\n- @grayruby and @Scoresby are neck-and-neck for 8th place with the hidden one;\n- @Undisciplined is vying with me for 6th place;\n- @DarthCoin is in a close battle with @davidw for 4th place;\n\nThere are still a few hours left until the end and things can still change, who knows? \N 15588 \N 414385 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4676714967106 0 \N \N f 545241866 \N 5 43969219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 443505 2025-03-19 11:46:08.937 2025-03-29 22:39:51.962 \N First of, thank you so much for your work! Second, I have three human rights related questions:\n- What are currently the best ways to help people living in North Korea? What's the current top thing? Is it still USB flash drives? Does Bitcoin play any role? \n- What is the level of awareness in the African countries under CFA about their value being sucked by France? \n- I really enjoyed your essays and investigations on different countries. Are there more essays in works? https://example.com/ 1802 443295 443295.443505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0367208872649 0 \N \N f 0 \N 0 226105542 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:13.595 f \N \N \N 0 0 0 0 0 0 0 436295 2025-03-13 13:00:14.17 2025-03-29 22:39:51.962 \N Any generic advice for Bitcoin startups? https://example.com/ 919 436269 436093.436113.436269.436295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8939920231493 0 \N \N f 0 \N 0 218956704 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:31:02.101 f \N \N \N 0 0 0 0 0 0 0 436305 2025-03-13 13:07:21.939 2025-03-29 22:39:51.963 \N You should join the PlebDevs discord: https://discord.gg/t4NkDKRCK8\n\nCheck their website out here: https://www.plebdevs.com/\n\nPaging: @bitcoinplebdev https://example.com/ 16214 436241 436241.436305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0916917312567 0 \N \N f 0 \N 0 105182084 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:38:22.712 f \N \N \N 0 0 0 0 0 0 0 443455 2025-03-19 11:07:58.87 2025-03-29 22:39:51.963 \N Yes, I've also found this to be a problem. Hopefully with the spike in fees more merchants will get some lightning solutions set up.\n\nI'd like to see a better non custodial way of running a lightning node. Maybe a node in the box with channels already set up that they could buy as a package. \n\nI recently bought a PoS & a book. I like instant settlement for small purchases. https://example.com/ 20854 443422 443399.443422.443455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8150973964921 0 \N \N f 0 \N 0 154547292 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 2025-03-26 04:28:54.906 f \N \N \N 0 0 0 0 0 0 0 433331 2025-03-11 00:49:40.17 2025-03-29 22:39:48.897 Can you debunk WSJ's fake reporting? Nic Carter announces 21x $500 bounties \N https://twitter.com/nic__carter/status/1717622001014067417 18270 \N 433331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.86776108744603 0 \N \N f 0 \N 0 248858400 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 02:40:12.142 f \N \N \N 0 0 0 0 0 0 0 436174 2025-03-13 11:14:17.49 2025-03-29 22:39:48.897 Have You Stopped Using The SN Wallet To Zap and Get Zapped? I'm wondering if there are many early adopters who have stopped using the SN wallet? For the record, I have emptied my wallet a few times in the last day or so, and it hasn't been a big adjustment. \N 635 \N 436174 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.2504816650881 0 \N \N f 0 \N 0 143061631 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:59:27.059 f \N \N \N 0 0 0 0 0 0 0 434405 2025-03-11 21:30:15.018 2025-03-29 22:39:51.963 \N Bought wakame grown in Ireland from eichenhain.com, 0 sats in fees, perfect experience lol. https://example.com/ 4798 434285 434285.434405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7438705801965 0 \N \N f 0 \N 0 136154223 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 2025-03-18 22:02:52.038 f \N \N \N 0 0 0 0 0 0 0 435846 2025-03-13 02:57:03.701 2025-03-29 22:39:51.964 \N Oh, I've just zapped ₿5 on this topic. What a rich guy was I? 😅 https://example.com/ 19303 435795 434278.434318.435783.435795.435846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7098603910727 0 \N \N f 0 \N 0 119845940 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-20 02:06:15.026 f \N \N \N 0 0 0 0 0 0 0 443568 2025-03-19 12:20:32.455 2025-03-29 22:39:51.964 \N sorry never got round to replying to this - pull to refresh is available in the latest version https://example.com/ 15119 443560 443295.443548.443560.443568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.80451507025816 0 \N \N f 0 \N 0 86150550 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 05:53:58.025 f \N \N \N 0 0 0 0 0 0 0 435486 2025-03-12 18:20:08.84 2025-03-29 22:39:48.9 How to make use of LND Accounts to secure your personal spending wallet \N https://docs.lightning.engineering/lightning-network-tools/lightning-terminal/accounts 798 \N 435486 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7881876438435 0 \N \N f 0 \N 0 192347702 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 12:48:12.108 f \N \N \N 0 0 0 0 0 0 0 435097 2025-03-12 13:11:02.639 2025-03-29 22:39:51.964 \N i completely agree with this sentiment. i haven't tried zed out. i'd love to, but they only build for mac currently. https://example.com/ 21701 435095 435065.435095.435097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5174751766204 0 \N \N f 0 \N 0 232626023 0 f f \N \N \N \N 435065 \N 0 0 \N \N f \N 2025-03-19 06:36:25.467 f \N \N \N 0 0 0 0 0 0 0 434857 2025-03-12 09:43:12.046 2025-03-29 22:39:51.964 \N Ahhh! Excellent. Don't know how I missed that. https://example.com/ 6777 434847 434813.434847.434857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.94597440025198 0 \N \N f 0 \N 0 94127503 0 f f \N \N \N \N 434813 \N 0 0 \N \N f \N 2025-03-19 13:51:33.793 f \N \N \N 0 0 0 0 0 0 0 434844 2025-03-12 09:23:51.816 2025-03-29 22:39:51.964 \N I'm working on myself https://example.com/ 10862 434793 434642.434643.434682.434755.434756.434793.434844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0774839841942 0 \N \N f 0 \N 0 79696019 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 03:33:21.659 f \N \N \N 0 0 0 0 0 0 0 434307 2025-03-11 19:19:38.186 2025-03-29 22:39:51.965 \N ![](https://imgprxy.stacker.news/_MGMQHuCyr94c3QItpUrmpJWZdUar2bLO2HH3VhW_-U/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLm5vc3RyLmJ1aWxkL25iNzk0OC5qcGc) https://example.com/ 16154 434298 434278.434298.434307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1352063357216 0 \N \N f 0 \N 0 84908565 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 18:58:34.517 f \N \N \N 0 0 0 0 0 0 0 434544 2025-03-12 02:25:45.64 2025-03-29 22:39:48.897 More SN Banner Designs for territory founders Another follow up on @Jon_Hodl post, creating some custom banner designs for SN,\n\n![](https://m.stacker.news/65138)\n![](https://m.stacker.news/65139)\n\nSome others dedicated to territory founders. In this case, ~alter_native for @DesertDave \n![](https://m.stacker.news/65140)\n\nand ~Design obviously!\n![](https://m.stacker.news/65137)\n\n\n\nIn case you missed, there are some [SN Brand assets](https://stacker.news/items/786223/r/Design_r) available. You can access [the figma file](https://www.figma.com/design/ZL3FLItd9j48pzKVi4qlOy/Stacker.News-Media-Kit?node-id=1-3&node-type=canvas&t=Zo2ZpoOhQ5nugxhM-0) and create your own. If unable, shoot out and let's see if some can help you promote your territory :)\n\n\n\nFYI: @AGORA @anna @antic @AtlantisPleb @Bell_curve @benwehrman @bitcoinplebdev @BlokchainB @Bitter @ch0k1 @davidw @ek @elvismercury @frostdragon @grayruby @HODLR @inverselarp @jeff @k00b @marks @MaxAWebster @niftynei @nout @OneOneSeven @oracle @PlebLab @Public_N_M_E @RDClark @softsimon @siggy47 @StudentofBitcoin @south_korea_ln @theschoolofbitcoin @UCantDoThatDotNet\n\n \N 20852 \N 434544 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.8876511454606 0 \N \N f 0 \N 0 196691575 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:44.499 f \N \N \N 0 0 0 0 0 0 0 431293 2025-03-09 16:13:31.548 2025-03-29 22:39:48.897 New Wavlake offers a far more enhanced experience than before! \N https://www.wavlake.com/ 6202 \N 431293 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 29.1883178522713 0 \N \N f 0 \N 0 115646849 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:40:55.705 f \N \N \N 0 0 0 0 0 0 0 447265 2025-03-21 18:28:29.668 2025-03-29 22:39:48.901 What are you working on this week? Calling all Bitcoin builders!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/173313) are the updates SN users shared from all their latest work projects. \N 760 \N 447265 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.7952825089216 0 \N \N f 0 \N 0 77748216 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:59:40.351 f \N \N \N 0 0 0 0 0 0 0 410230 2025-02-20 11:24:14.621 2025-03-29 22:39:51.965 \N Not looking good https://example.com/ 5085 410219 410219.410230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9369079087918 0 \N \N f 114793559 \N 1 177198103 0 f f \N \N \N \N 410219 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435256 2025-03-12 15:00:33.053 2025-03-29 22:39:51.957 \N Thanks, that makes sense - I figure this question may be a shot in the dark because if I were crushing it with my routing I certainly wouldn't be posting all my secrets :) https://example.com/ 977 435254 435046.435135.435162.435214.435220.435235.435254.435256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9791188108369 0 \N \N f 0 \N 0 38164712 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:30:47.616 f \N \N \N 0 0 0 0 0 0 0 434757 2025-03-12 08:08:39.12 2025-03-29 22:39:51.957 \N 🤘SNL going live in 10min https://example.com/ 11523 433883 433883.434757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29237599411543 0 \N \N f 0 \N 0 185483039 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 2025-03-19 01:55:23.612 f \N \N \N 0 0 0 0 0 0 0 435742 2025-03-12 23:05:59.291 2025-03-29 22:39:51.958 \N The only genuine downsides, to me, are the limited scope of conversations and the flood of links that I have no interest in following.\n\nIf you want to talk about something other than Bitcoin, and now sports :), there's not much interest and it's not clear how to start those conversations.\n\nOver time, I imagine people learn to stop posting content that no one engages with, but as SN grows and new generations of users fish for sats, there are going to be lots of unwanted links. https://example.com/ 718 435516 435516.435742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7728846463334 0 \N \N f 0 \N 0 135186161 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 2025-03-19 16:45:15.529 f \N \N \N 0 0 0 0 0 0 0 436374 2025-03-13 14:05:44.869 2025-03-29 22:39:51.958 \N LNbits https://example.com/ 16978 436243 436241.436243.436374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4119330159049 0 \N \N f 0 \N 0 202353694 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:27:15.423 f \N \N \N 0 0 0 0 0 0 0 435066 2025-03-12 12:42:56.881 2025-03-29 22:39:51.958 \N a loppcycle?\n\nhttps://imgprxy.stacker.news/0UxxXL-jQRh8gdjZNO1nO_kguQntnx-y11TzA7MHalo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS96SjYwM2p0LmpwZw https://example.com/ 2709 434797 434795.434797.435066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9036443605137 0 \N \N f 0 \N 0 170773409 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 06:02:09.453 f \N \N \N 0 0 0 0 0 0 0 447173 2025-03-21 16:57:08.55 2025-03-29 22:39:51.958 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **14** https://example.com/ 1038 447124 446456.447124.447173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.846502676537 0 \N \N f 0 \N 0 244705643 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 12:02:05.521 f \N \N \N 0 0 0 0 0 0 0 443771 2025-03-19 14:06:18.425 2025-03-29 22:39:51.958 \N Here’s a great explainer of what BIP-324 offers (as I found myself asking that Q):\nhttps://protos.com/bip-324-heres-everything-you-need-to-know-about-the-bitcoin-proposal/\n\n* Bitcoin Improvement Proposal 324 (BIP-324) would add https-like security to Bitcoin. Specifically, the proposal formalizes a way to prevent private metadata from leaking with regular Bitcoin transactions. If adopted, BIP-324 could improve privacy for millions of people.\n\n* Today, Bitcoin users broadcast transactions over unencrypted, unauthenticated connections. Because the data in Bitcoin’s mempool (the way in which information is stored on transactions that have been verified but not yet included in the blockchain) is plain text, eavesdroppers can identify counterparties, detect connections, and even tamper with certain bytes of a connection, such as node flags.\n\n* To seal these leaky connections and introduce authenticated connections to Bitcoin, BIP-324 promises to protect users from man-in-the-middle attacks https://example.com/ 21482 443764 443577.443750.443759.443764.443771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6512933023164 0 \N \N f 0 \N 0 172444977 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 07:29:44.979 f \N \N \N 0 0 0 0 0 0 0 435687 2025-03-12 21:59:02.343 2025-03-29 22:39:51.965 \N I love it and it's a great showcase on what we can build with the power of bitcoin! https://example.com/ 10102 435639 435639.435687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1617010079879 0 \N \N f 0 \N 0 230809578 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 2025-03-20 00:20:43.003 f \N \N \N 0 0 0 0 0 0 0 443578 2025-03-19 12:24:36.695 2025-03-29 22:39:48.898 We're crowdfunding a Nostr billboard for Brazil 𓅦 🇧🇷 I was inspired by the efforts of @sebastix in the Netherlands. https://stacker.news/items/671379 His work was in turn inspired by @spiral's idea jam. Shoutout to @geyserfund for taking the lead.\n\nLet's strike while the iron's hot! We've got >1.6M sats from >50 contributors so far. We're about 2M sats away from making this a reality. \n\nYou can contribute here: https://geyser.fund/project/nostrifybrazil https://geyser.fund/project/nostrifybrazil 1577 \N 443578 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 27.6380669788758 0 \N \N f 0 \N 0 116367372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:03:19.66 f \N \N \N 0 0 0 0 0 0 0 436550 2025-03-13 16:24:22.498 2025-03-29 22:39:48.898 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nIf you missed our last edition, [here](https://stacker.news/items/296073) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 891 \N 436550 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.1382109475704 0 \N \N f 0 \N 0 152212630 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:09:20.133 f \N \N \N 0 0 0 0 0 0 0 443362 2025-03-19 09:45:26.492 2025-03-29 22:39:48.897 What is the most unbelievable true story you’ve ever read? I remember reading [this story](https://www.gq.com/story/the-last-true-hermit) while I was living on the east coast back in school, and it blew me away. \N 21514 \N 443362 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 6.23973877903893 0 \N \N f 0 \N 0 88712668 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 03:17:55.732 f \N \N \N 0 0 0 0 0 0 0 448381 2025-03-22 15:18:40.517 2025-03-29 22:39:51.958 \N I'll take that as a compliment. https://example.com/ 10291 448377 448331.448342.448359.448371.448377.448381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.01153645278963 0 \N \N f 0 \N 0 5278880 0 f f \N \N \N \N 448331 \N 0 0 \N \N f \N 2025-03-29 08:39:38.685 f \N \N \N 0 0 0 0 0 0 0 443406 2025-03-19 10:32:05.796 2025-03-29 22:39:51.958 \N ZH comment sections are always a dumpster fire, but they go full nuclear meltdown whenever Bitcoin is mentioned. That site is infested with salty gold bugs.\n\nAs a UK citizen I can't say this interests me too much. I have some wealth locked up in pension schemes that I cannot access for a few decades, which I currently allocate to Bitcoin adjacent stocks (MSTR, miners). I guess I would prefer something like a spot ETF? Perhaps this is a stepping stone towards that.\n\nReally though, if the UK wants to be seem as a Bitcoin-friendly hub, then it first needs to allow bitcoin.org to distribute Bitcoin Core to citizens and stop enabling CSW's nonsense. It also needs to lift the ban on Bitcoin ATMs. https://example.com/ 895 443274 443274.443406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3834350727667 0 \N \N f 0 \N 0 35158568 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 2025-03-26 03:50:56.688 f \N \N \N 0 0 0 0 0 0 0 448228 2025-03-22 13:51:19.907 2025-03-29 22:39:48.899 Orange pilling my daughter I have been falling down the rabbit hole almost for a year now. I am still learning and consider myself a beginner with very basic knowledge. SN is helping me to keep on learning about it. Since I came across Bitcoin, I have tried to mention to my family with very little success. \n\nSome of them pay attention, consider the information but they do not take action. Some of my friends think that I have been scammed and I am losing money. Others look at me and start talking about crypto and how risky it is. Good for them!\n\nRecently, one of my daughters has gone to Granada with some friends and sent me some pictures at the Alhambra, an arab palace from the 13th century, situated in the hills of the city. \n\n![](https://m.stacker.news/48188)\n\nIt is a remarkable building which can be visited, and it is worth to spend some time if you are visiting the south of Spain. \n\n![](https://m.stacker.news/48192)\n\n![](https://m.stacker.news/48193)\n\nShe is quite reluctant to understand Bitcoin and the advantages that may give her. I have thought that the best way to introduce her is through SN. After she sent me the photos, I mentioned her I would post them and give her half of sats. So, she will have to get a wallet to receive them and hopefully her way in bitcoin is ready to start. \n![](https://m.stacker.news/48189)\n\n![](https://m.stacker.news/48190)\n\n![](https://m.stacker.news/48191)\n\n![](https://m.stacker.news/48194) \N 19333 \N 448228 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.06282383054454 0 \N \N f 0 \N 0 248986771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:34:49.61 f \N \N \N 0 0 0 0 0 0 0 447203 2025-03-21 17:25:04.27 2025-03-29 22:39:48.899 Nodana - Phoenixd As A Service Hey everyone\n\nI wanted to take this opportunity to let you know about my new project [Nodana](https://nodana.io).\n\n![](https://m.stacker.news/30761)\n\nIn a nutshell, it enables you to run [phoenixd](https://phoenix.acinq.co/server) in the cloud using a CLI. No registration, personal details or credit cards required. I’ve been running an instance for [Sintra](https://sintra.fi) (my other project), replacing a more "traditional" Lightning node (from Voltage) and so far, so good.\n\nIn case you don’t know already, phoenixd is a lightweight, specialised Lightning node from ACINQ with automated channel management and liquidity.\n\nI’m looking for some beta testers with small projects who would like to give this a try. Full support on offer to help you get set up.\n\nFeel free to register your interest or leave feedback either on here or via Nostr (link available on homepage).\n\nThanks all \N 669 \N 447203 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 11.2771706024328 0 \N \N f 0 \N 0 49669488 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:48:20.048 f \N \N \N 0 0 0 0 0 0 0 436222 2025-03-13 11:50:47.542 2025-03-29 22:39:51.958 \N It's not easy to find that situation, I guess. I have also had my share of boring, meaningless jobs that I couldn't wait to quit. \nI bet @k00b enjoys working on SN the vast majority of the time. https://example.com/ 19375 436216 436177.436203.436204.436214.436216.436222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3893021359801 0 \N \N f 0 \N 0 203512606 0 f f \N \N \N \N 436177 \N 0 0 \N \N f \N 2025-03-20 09:03:04.14 f \N \N \N 0 0 0 0 0 0 0 447177 2025-03-21 17:02:01.876 2025-03-29 22:39:51.958 \N Agreed.\n\nMixing a BTC/LN node with many other shity apps and file storage is a BIG MISTAGE.\nA simple NAS like Qnap or Synology or even FreeNAS is much better solution for your other crap to store, than mixing with your node.\n\nI have personally a Qnap NAS, that I use it for many years as my personal server with:\n- web server for my self hosted personal webs\n- email server for my personal email domain\n- file server and backup server for my other computers and devices, including my mobile device with bitcoin apps that sync all the time backups to my NAS and even send pictures to it, so I don't have to store them on my mobile, or if I am threaten, my files are already remote.\n- password manager, multi platform\n- media server, download torrent server, etc many more apps\n- my LN node also is making backups to my NAS\n- 3 fast disks in RAID 5 that never get fucked. Even if get corrupted, I can replace instantly with a new one and data is safe because of RAID 5.\n\nAlso another aspect to keep in mind:\n- these bundle nodes come with many apps for your node, like BTCPay, LNbits, Thunderhub, RTL memepool etc\n- Some of these apps like mempool will take huge resources that are more necessary for the LN node. Why do you need a mempool explorer on the same machine with your node? Just for consulting once per month a tx you've done? That's insane of wasting resources. You could consult your tx privately from any other explorer. Or if you really want it, install it on another dedicated machine and point it to your local node. DON'T KILL YOUR NODE!\n- LNbits is a wonderful accounting app, but works much better separately from your node. Why? Because if your node get fucked, also your LNbits get fucked. But if you have it separately you could immediately change your funding source in LNbits until you fix your node.\n- Thunderhub also is quite hungry in resources and could be installed on a separate machine and pointing to your node. Same for Lightning terminal and RTL.\n\nI explained more on this guide\nhttps://darthcoin.substack.com/p/lightning-node-maintenance https://example.com/ 20683 446591 446456.446591.447177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.70259787954204 0 \N \N f 0 \N 0 49503989 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 10:32:19.549 f \N \N \N 0 0 0 0 0 0 0 443304 2025-03-19 08:51:41.268 2025-03-29 22:39:48.903 AMA - Blockstream Jade Team Enables Air-Gapped Transactions Hey everyone! This is the Blockstream Jade team and we’re here to answer questions about the latest firmware upgrade that brings air-gapped transaction capability to Jade.\n\nBlockstream Jade’s camera has been dormant since its release in early 2021, but firmware version 0.1.41 brings some powerful new functionality to Jade by fully enabling the camera for use. Jade users can now access their device and communicate with companion apps solely using QR codes - no USB or Bluetooth required. This includes importing a wallet, verifying receive addresses, and signing bitcoin transactions.\n\nJade has become even more versatile with this upgrade, specifically by allowing for additional compatibility with mobile wallet apps such as BlueWallet and Nunchuk. However Jade can also now be used in an air-gapped manner with popular desktop apps, such as Sparrow and Specter.\n\nWe hope everyone enjoys this feature as much as we’ve enjoyed building it. AMA!\n\nGet a Jade here (coupon code “wencamera” for 10% off): https://store.blockstream.com/product/blockstream-jade-hardware-wallet/ \N 6573 \N 443304 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 15.0454582531177 0 \N \N f 0 \N 0 163310981 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:38:36.646 f \N \N \N 0 0 0 0 0 0 0 442894 2025-03-18 21:37:16.189 2025-03-29 22:39:48.903 New Bitcoin tax reporting obligations took effect on new year’s day \N https://www.coincenter.org/new-crypto-tax-reporting-obligations-took-effect-on-new-years-day/ 10016 \N 442894 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 4.86821299316585 0 \N \N f 0 \N 0 1398623 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 02:55:46.05 f \N \N \N 0 0 0 0 0 0 0 443532 2025-03-19 12:03:50.736 2025-03-29 22:39:48.904 Stacker News' Brand Book & Media Kit 1.1 \n\n![](https://m.stacker.news/65049)\nFollow up on previous @Jon_Hodl's [post](https://stacker.news/items/783995/r/Design_r), translating everything in vector and providing access to the open source file for everyone to contribute, for territory owners to create their assets, etc...\n\n![](https://m.stacker.news/65042)\n\n![](https://m.stacker.news/65047)\n\nAlso corrected some colors and added icons.\n\n![](https://m.stacker.news/65041)\n![](https://m.stacker.news/65050)\n\n... and memes\n![](https://m.stacker.news/65039)\n\n# Files & Downloads\n### Figma: \nhttps://www.figma.com/design/ZL3FLItd9j48pzKVi4qlOy/Stacker.News-Media-Kit?node-id=0-1&node-type=canvas&t=smAmQgXfj91LnEzs-0\n\n**How to use the Figma templates:**\nExport files as follow:\n1. Select the item or frame you need,\n2. Click on **[Export]** button at the sidebar bottom in right,\n3. Select the size (1x, 2x, 3x...) to resize the item,\n4. Select the file format: 
\n- - bitmap (PNG, JPG) or
\n- - scalable vector file (PDF, SVG)\n5. Click **[Export “item name”]** button.\n\n\n### PenPot: \nhttps://design.penpot.app/#/workspace/7ad540b5-8190-815d-8005-5685b9c670bc/7ad540b5-8190-815d-8005-5685c186216e?page-id=2643bc5a-0d34-80b2-8005-58099eabda41\n\nIn PenPot there's still some work to have editable text. Also, custom fonts not available for now so shapes are outlined and _vectorialized_.\n\n`₿e Creative and have Fun!`\n \N 5725 \N 443532 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 18.03385167089 0 \N \N f 0 \N 0 41019766 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:53:29.398 f \N \N \N 0 0 0 0 0 0 0 436450 2025-03-13 15:07:58.886 2025-03-29 22:39:51.958 \N How are you thinking of doing it? We're exploring combining e2ee / private key management stuff with secure enclaves to add verifiably private and secure use cases to existing applications via JWT / normal user login / oauth.\n\nCould be a cool proof of concept here if you're open to that approach. https://example.com/ 2322 436439 436273.436439.436450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0339624443436 0 \N \N f 0 \N 0 165909179 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 08:41:08.269 f \N \N \N 0 0 0 0 0 0 0 434452 2025-03-11 22:41:57.756 2025-03-29 22:39:51.958 \N Grow up. Resources are finite. They don't owe you an explanation. My guess would be that your reaction here shows your heavy anti nostr bias, so why would they bother paying 20k for a anti nostr blog hit piece. Better spend it on people who acknowledge the protocol's weaknesses while aiming to improve it. Unless you show your proposal proving otherwise, you don't seem the right person. And that's ok. If you don't agree, apply again with a better proposal. Don't whine in public unless you've gotten the receipts to prove you were wronged. https://example.com/ 805 434396 434396.434452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.32523228332587 0 \N \N f 0 \N 0 48068897 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N 2025-03-18 19:10:29.41 f \N \N \N 0 0 0 0 0 0 0 433212 2025-03-10 21:46:39.688 2025-03-29 22:39:51.958 \N I'm working on an article summarizing all the multi-party channel papers. This has proven to be a mammoth of a task and I learned from doing the audio for the covenant L2 review paper how to break this up into smaller tasks: make audio books for the papers. So now I'm working on that https://example.com/ 19992 433206 432920.433206.433212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1167457286774 0 \N \N f 0 \N 0 136014271 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-19 00:44:14.331 f \N \N \N 0 0 0 0 0 0 0 448385 2025-03-22 15:21:22.705 2025-03-29 22:39:48.904 FixedFloat confirms $26M exploit in Bitcoin, Ether \N https://cointelegraph.com/news/fixed-float-confirms-26m-exploit-bitcoin-ether 21334 \N 448385 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 16.9098563543818 0 \N \N f 0 \N 0 133411580 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:15:03.256 f \N \N \N 0 0 0 0 0 0 0 435343 2025-03-12 15:48:43.241 2025-03-29 22:39:48.904 What if bitcoin mining hashrate were flows of water? It can be abstract to picture the speed of the bitcoin network in terahash, so what if we picture it as flows of water?\n\n**Drinking Straw**\n*1 TH/s*\n\nA drinking straw might allow water to flow at about 0.0001 cubic meters per second (m³/s). Given the small scale, it's the most basic level of computational power in Bitcoin mining.\n\n![straw_hashrate.png](https://m.stacker.news/14214)\n\n**Shower Head**\n*80 TH/s*\n\nA typical shower head might flow at about 0.008 m³/s. If we maintain the same ratio as the straw, this could represent a small-scale individual mining setup.\n\n![shower_head_hashrate.png](https://m.stacker.news/14213)\n\n**Garden Hose**\n*300 TH/s*\n\nA standard garden hose might have a flow rate of around 0.03 m³/s. Using the same analogy, this scale is a more serious individual mining operation.\n\n![garden_hose_hashrate.png](https://m.stacker.news/14212)\n\n**Fire Hose**\n*50,000 TH/s (50 PH/s)*\n\nA fire hose can have a flow rate around 0.5 m³/s. In our analogy, this scale is typical for a larger, more industrial mining operation.\n\n![fire_hose_hashrate.png](https://m.stacker.news/14215)\n\n**Bridal Veil Falls, Yosemite, USA**\n*500,000 TH/s (500 PH/s)*\n\nBridal Veil Falls has an estimated flow rate of about 5 m³/s. In our analogy, this scale represents a significant, industrial-scale mining operation.\n\n![Bridal_Veil_Falls.png](https://m.stacker.news/14216)\n\n**Niagara Falls, USA**\n*240,000,000 TH/s (240 EH/s)*\n\nNiagara Falls has a tremendous flow rate, approximately 2,400 m³/s. Using our analogy, this represents the enormous scale of mining across multiple continents.\n\n![Niagara.png](https://m.stacker.news/14217)\n\n**Inga Falls, Congo River**\n*2,577,000,000 TH/s (2,577 EH/s)*\n\nOne of the world's most powerful waterfalls, Inga Falls average flow rate of 25,768 m³/s represents almost 5 times today's global network hashrate of 540 TH/s!\n\n![Inga.png](https://m.stacker.news/14218)\n\n---\n\nThis story comes from [Asher](https://twitter.com/asherp) and I enlisted some help from chatgpt for the data and images.\n\n \N 16653 \N 435343 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 5.68183510801372 0 \N \N f 0 \N 0 173360961 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 09:45:35.781 f \N \N \N 0 0 0 0 0 0 0 434293 2025-03-11 19:03:30.994 2025-03-29 22:39:48.904 Any tips on explaining why people should use bitcoin? I just started working in the Bitcoin field, and the more I get into it the more awesome it gets.\n\nI'm sure y'all are familiar with people asking about it, and the doubt of its physical presence\n\nI usually start out with\n- There is no perfect currency\n - Since money is physical it can be stolen\n - Since bitcoin is digital it relies on the existence of the internet\n- Gold relies on people using it & bitcoin relies on people using it\n- Gov't is inflating fiat, value drops over time\n- Limited supply & increasing demand will ensure the value of bitcoin goes up\n\nAnd then I get stuck after I get through all these\n\nY'all got any tips, or experience getting your grandma to get rollin' with it?\n \N 2577 \N 434293 \N \N \N \N \N \N \N \N security \N ACTIVE \N 20.0962179873227 0 \N \N f 0 \N 0 211913465 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:07.878 f \N \N \N 0 0 0 0 0 0 0 436210 2025-03-13 11:39:13.287 2025-03-29 22:39:51.958 \N I survived 4 times but never said "halvening".\nidk from where that stupid term come from.\n\nhalvening is like saying lightening... only shitcoiners said that. https://example.com/ 8544 436191 436191.436210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5263392799087 0 \N \N f 0 \N 0 55345714 0 f f \N \N \N \N 436191 \N 0 0 \N \N f \N 2025-03-20 08:42:10.646 f \N \N \N 0 0 0 0 0 0 0 435491 2025-03-12 18:25:58.419 2025-03-29 22:39:51.958 \N Shit I forgot to switch my sats settings back. Haha Merry Christmas https://example.com/ 17535 435046 435046.435491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7379130359492 0 \N \N f 0 \N 0 37997684 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 12:59:19.748 f \N \N \N 0 0 0 0 0 0 0 435911 2025-03-13 05:09:13.524 2025-03-29 22:39:51.958 \N We all have a natural tendency to lean into stuff that lines up with what we already believe. Think of beliefs as these little mental apps we have running in the background. Take the term 'Bitcoiner' — it's not just about the cryptocurrency, it's a whole identity, kind of like a viral meme that people get behind. When you're part of the Bitcoiner crowd, it's like being in a special club that boosts your ego.\n\nNow imagine your Bitcoiner belief app gets a bit of a shake-up from someone outside the group, maybe someone dubbed a 'shitcoiner.' That's when the mental alarm bells start ringing. It's not just a debate about crypto, it feels like a personal attack. So what do we do? We get mad. It's our brain's way of trying to protect our Bitcoiner club card and, in a roundabout way, our own pride.\n\nAnd hey, it's similar with other labels like being a libertarian. That's another identity with its own set of mental apps. Sometimes these belief apps can run side by side without any hiccups. But when they do clash, or when someone pokes at them, we feel those negative vibes. It's like our mind's way of saying, "Heads up, something's poking at your identity. Time to take a closer look. https://example.com/ 17172 435869 435847.435860.435869.435911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.75322435676306 0 \N \N f 0 \N 0 81039686 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 2025-03-19 23:03:20.653 f \N \N \N 0 0 0 0 0 0 0 435013 2025-03-12 11:59:21.312 2025-03-29 22:39:51.959 \N This is exactly the place to write this imho, because we are the ones that want the change and do the orange pilling. But we are just a few. In order for bitcoin to be accepted globally and stay accepted globally, we need the normal people to get on board. \n\nIf you can stay off the grid with incoming sats and spending sats, then there is no problem of course, but a normal person will not have any incoming sats from their activity (not just yet anyway). \n https://example.com/ 1617 434813 434813.435013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4071899504234 0 \N \N f 0 \N 0 124123077 0 f f \N \N \N \N 434813 \N 0 0 \N \N f \N 2025-03-19 06:00:48.984 f \N \N \N 0 0 0 0 0 0 0 435032 2025-03-12 12:12:21.569 2025-03-29 22:39:51.959 \N I'm kind of agnostic.\n\nI don't support the actions of the SEC and backing the gov to attack open source software you dislike is gross. The enemy of my enemy is not my friend.\n\nThat said, I find it hard to muster the energy to defend Ethereum when it has so willingly put itself into a position where it can be easily pressured and censored. It will never be state resistant and is destined for regulatory capture, and I don't see it as something worth defending.\n\nSo I guess for me personally I'm just sitting here on the sidelines with my big bag of popcorn. I'm happy for this to go either way.\n\n https://example.com/ 10056 434782 434782.435032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1132189678561 0 \N \N f 0 \N 0 233955867 0 f f \N \N \N \N 434782 \N 0 0 \N \N f \N 2025-03-19 06:00:59.378 f \N \N \N 0 0 0 0 0 0 0 434064 2025-03-11 15:30:50.289 2025-03-29 22:39:51.959 \N can we have an auction house to buy cowboy items and armor like in World of Warcraft ? \nMake a new "World of Stackers"\n\n[![SN-general-store.jpg](https://i.postimg.cc/B6YnT6Qd/SN-general-store.jpg)](https://postimg.cc/ygRKB7RP) https://example.com/ 712 434037 433828.434037.434064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.74564672127144 0 \N \N f 0 \N 0 49045644 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-19 03:30:13.28 f \N \N \N 0 0 0 0 0 0 0 443307 2025-03-19 08:51:57.228 2025-03-29 22:39:51.96 \N My first attempt at writing a legitimate ~~fake~~ news article: \n\n[Pentagon: UFOs Don’t Crash, We Shoot Them Down](\nhttps://stacker.news/items/457845/r/OneOneSeven)\n\n*Better title provided by @Scoresby.* https://example.com/ 21709 443298 443272.443283.443298.443307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6571363263212 0 \N \N f 0 \N 0 46327115 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 2025-03-26 06:17:20.149 f \N \N \N 0 0 0 0 0 0 0 434479 2025-03-11 23:57:00.102 2025-03-29 22:39:51.96 \N LNBits added support for it as a backend. So all LNBits apps (dozens) are now in a very real sense "built on top of" phoenixd. (They were just *originally* built on top of other things.) https://example.com/ 16301 434410 434410.434479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0325468302527554 0 \N \N f 0 \N 0 146884468 0 f f \N \N \N \N 434410 \N 0 0 \N \N f \N 2025-03-18 21:27:35.063 f \N \N \N 0 0 0 0 0 0 0 443069 2025-03-19 02:08:52.229 2025-03-29 22:39:51.961 \N Nice review!! \nDo they offer pick up orders? \nJust a hunch, but food may be an important factor regarding the male/female ratio. Maybe offer aditional dishes? Drinks are great, but food is the soft spot for most people. https://example.com/ 1142 443058 443058.443069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7634700721234 0 \N \N f 0 \N 0 34143581 0 f f \N \N \N \N 443058 \N 0 0 \N \N f \N 2025-03-26 04:23:50.241 f \N \N \N 0 0 0 0 0 0 0 435442 2025-03-12 17:20:30.099 2025-03-29 22:39:51.961 \N If I was writing a guide about things to do with your node, what should I call it? \n\n(Keeping in mind the title will pretty heavily influence the tone and style)\n\nA) 5 Romantic things to do with your bitcoin node this weekend\n\nOR\n\nB) How to make love to your bitcoin node https://example.com/ 11829 435314 435314.435442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2617064857498 0 \N \N f 0 \N 0 163649663 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:43.486 f \N \N \N 0 0 0 0 0 0 0 435198 2025-03-12 14:21:41.694 2025-03-29 22:39:51.962 \N [A whole list here](https://www.bitchute.com/playlist/gF3xhGBFuDNW/)\nAnd even more here\nhttps://darthcoin.substack.com/p/5-stages-became-bitcoiner https://example.com/ 7583 435030 435030.435198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1065358464854 0 \N \N f 0 \N 0 207043883 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 16:57:22.318 f \N \N \N 0 0 0 0 0 0 0 433376 2025-03-11 03:19:23.091 2025-03-29 22:39:51.962 \N I got an ad on Satogram for this lightning betting market: https://beta.predyx.com/\n\nI've been waiting for a Lightning betting market but is this one legit? Has anyone used it? Minimum bet seems to be 100 votes which is always around 70k sats, which is a lot. https://example.com/ 2775 433323 432404.432618.433323.433376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.16474015476995 0 \N \N f 0 \N 0 39966997 0 f f \N \N \N \N 432404 \N 0 0 \N \N f \N 2025-03-19 14:26:26.979 f \N \N \N 0 0 0 0 0 0 0 448921 2025-03-23 01:13:35.458 2025-03-29 22:39:51.963 \N Haha, ok sorry. Substitute that with 800 BTC. https://example.com/ 16513 448844 448691.448837.448844.448921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.13754326511683 0 \N \N f 0 \N 0 227926742 0 f f \N \N \N \N 448691 \N 0 0 \N \N f \N 2025-03-29 19:26:37.423 f \N \N \N 0 0 0 0 0 0 0 448436 2025-03-22 15:48:00.023 2025-03-29 22:39:51.963 \N Here here. Also want to help grow what @k00b and all have built here because it is awesome. So anything we can do to bring attention to it amongst the non bitcoin crowd. Help bitcoin adoption and get SN some traffic it's worth a shot. \n\nYou might say Siggy is a dreamer, but he's not the only one! https://example.com/ 15484 447944 447944.448436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9023657545246 0 \N \N f 0 \N 0 202746633 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N 2025-03-29 09:07:41.638 f \N \N \N 0 0 0 0 0 0 0 434674 2025-03-12 06:08:17.254 2025-03-29 22:39:51.963 \N Marriage, kids, looking at the stars at night, making mistakes, racing events (running, triathlon, etc), seeing others with challenges worse than my own, travel to 3rd world countries, counting blessing, etc. https://example.com/ 16229 434665 434665.434674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1766438160341 0 \N \N f 0 \N 0 173596207 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N 2025-03-19 19:05:59.15 f \N \N \N 0 0 0 0 0 0 0 433613 2025-03-11 09:06:28.085 2025-03-29 22:39:51.964 \N Whether or not you like companies like fidelity getting into the ecosystem, I think this is great for education and eventual adoption. The more people hear the terms associated with Bitcoin, the more curiosity is piqued and the more learning will happen https://example.com/ 17237 433607 433217.433347.433444.433607.433613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6038956698619 0 \N \N f 0 \N 0 228832954 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 2025-03-20 06:31:53.006 f \N \N \N 0 0 0 0 0 0 0 447115 2025-03-21 16:20:40.931 2025-03-29 22:39:51.964 \N Nice try, IRS https://example.com/ 20502 447095 446954.447095.447115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6130740902907 0 \N \N f 0 \N 0 230686803 0 f f \N \N \N \N 446954 \N 0 0 \N \N f \N 2025-03-28 10:10:18.13 f \N \N \N 0 0 0 0 0 0 0 434490 2025-03-12 00:39:20.386 2025-03-29 22:39:51.964 \N Wise words. A great read! \n\nAs you highlight. lessons and learnings are found in struggle and failure, not success. We just have to listen and dig deeper to encounter them. \n\nOf course we should not seek or justify suffering for ourselves or others. There are simply ways to overcome whatever life throws at us, by being disciplined and exposed enough times to not let it define or break us https://example.com/ 1488 434441 434441.434490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9830269690646 0 \N \N f 0 \N 0 156520434 0 f f \N \N \N \N 434441 \N 0 0 \N \N f \N 2025-03-19 02:14:53.144 f \N \N \N 0 0 0 0 0 0 0 435532 2025-03-12 19:02:41.395 2025-03-29 22:39:51.965 \N I view the biggest problem as what's known as the "[perception gap](https://perceptiongap.us/)".\n\nIn other words, both sides view their opponents as more extreme than they actually are. This leads to hysterics and an inability to find common ground.\n\nSo I would recommend that people\n\n1. Chill out\n\n2. Learn how to steelman the other side\n\nUnfortunately, I don't see this happening. Neither politicians nor business leaders have an incentive to try to close the perception gap. Politicians have more fundraising when they can magnify the perception gap. Media earns views and clicks from outrage porn.\n\nWe're in a horrid prisoner's dilemma and it's going to take individual virtue to get out of it.\n https://example.com/ 17095 435339 435217.435339.435532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3186057481449 0 \N \N f 0 \N 0 115644153 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 13:52:40.198 f \N \N \N 0 0 0 0 0 0 0 436420 2025-03-13 14:51:41.85 2025-03-29 22:39:48.904 Sharing My Experience on Gifting Bitcoin to a Newborn Baby 🍼 I have a friend who just gave birth to a baby, it took me some time to think about what to gift him, then I ended up gifting him some Bitcoin 🤓 As I think the best present that one can gift to others is either Bitcoin ( (self-responsibility ) or knowledge.\n\n\n**The idea of gifting Bitcoin to a baby is**\n- Teach him what is money right from the start\n- Learn about self-responsibility slowly\n- The money truly belongs to the baby bc we can secretly watch the wallet:p\n\n**Steps:**\n1. Set up a cold wallet with my tails USB \n2. Test and wrote down the seed words in three copies\n\nI gave two copies to the new mum and dad and kept one in their family member's house just in case. And I know paper is not an ideal way to keep the seed words, but I want to keep it simple for the parent to learn too. They looked a bit confused when they first received the paper, due to the random words, but it was fun at the same time, striking curiosity the right way.\n\nAnd then I told them\n**- Do not take any photos of it**\n**- Do not share it online**\n**- Keep the paper well or use your way to store it**\n\nI then showed them the simplest ways to use Bitcoin, by downloading Blue Wallet and inputting these 12 seed words, but should wait for the baby, because it's his Bitcoin! So we use the watch-only wallet for now (I scanned the master key for the parent ), so they can see the Bitcoin there and welcome onboard!\n\n**It was a pretty fun onboarding experience.**\n\n\n\n\n\n \N 10311 \N 436420 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 1.35304840508883 0 \N \N f 0 \N 0 244708846 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:10:26.52 f \N \N \N 0 0 0 0 0 0 0 435243 2025-03-12 14:48:51.121 2025-03-29 22:39:48.905 Bangladesh Crisis: X app is flooded with 'Save Hindus in Bangladesh' tweets In my previous posts about the crisis in Bangladesh, I mentioned about the plight of Hindus there while the incidents of racial violence have suddenly shot up in Bangladesh. The pro Islamists all around the world have been dismissing these claims. To tell you the sad truth, it's not now limited violence, it's a full scale genocide of Hindus by Islamic Extremists. \n\nI normally don't look at 'X' for updates but to know the truth what's now turned into a genocide, to know the truth behind it, here are a few links that tells the sad reality. \n\nhttps://x.com/Salwan_Momika1/status/1821932583380287829?t=Qo4k8AMW90HrkBk3l-Sq8w&s=19\n\nLook, how a hindu girl is made to remove lipstic and remove ornaments. Then she was beaten and forced to say that she'll not do it again. \n\nhttps://x.com/RealMaxtern/status/1820773728315125832?t=dtQB7iB9SgGSfCnT5-kmYg&s=19\n\nA Hindu Bangladeshi girl tells what's happening there. \n\n\nhttps://x.com/pakistan_untold/status/1820739504472469897?t=j52VuaJlyDsXz-fK-LGz6g&s=19\n\nThe dead bodies of Hindus are being found hanging on trees and under bridges isn't enough to call it a genocide, I don't know what will be.\n\nhttps://x.com/HananyaNaftali/status/1822205392484495831?t=sYTt50DXG63M1h8662XdLQ&s=19\nThis is the most informative video post by Hananya Naftali, an independent journalist. He's not an Indian. If he says, it's a genocide of Hindus there. What else do we need as proof?\n \n\n> Hundreds of people protested in the Bangladeshi capital Dhaka on Friday against violence targeting the country's minority Hindus. \n[Source](https://www.reuters.com/world/asia-pacific/hundreds-protest-dhaka-over-violence-against-hindus-bangladesh-2024-08-09/)\n\nhttps://youtu.be/zQxcgBampvE?si=yPL9csQk3CGCmO_N\n\n\nAlso read these updates about the voices from all around the world are erupting 'To Save Hindus in Bangladesh'. I know even with so much proof for this to be called a genocide, some people will dismiss it. \n\n## [Protest erupts outside White House over violence against Hindus in Bangladesh](https://m.economictimes.com/news/international/world-news/protest-erupts-outside-white-house-over-violence-against-hindus-in-bangladesh/articleshow/112436504.cms)\n\n## [Protests Held In UK, US Over Atrocities Against Bangladesh's Hindus](https://www.news18.com/world/protests-held-in-uk-us-over-atrocities-against-bangladeshs-bengali-hindus-9011954.html)\n\n## [Protesters rally outside UN over violence against minorities in Banglades](hhttps://www.business-standard.com/world-news/protesters-rally-outside-un-over-violence-against-minorities-in-bangladesh-124081000079_1.html)\n\n## [Bangladesh's Muhammad Yunus condemns 'heinous' attacks on minorities](https://www.indiatoday.in/world/story/bangladesh-violence-interim-leader-muhammad-yunus-attacks-on-minorities-dhaka-protests-2580392-2024-08-10)\n\nThis is the best proof that their new leader has accepted the attacks (genocide of Hindus) by calling it 'heinous'. I think the world should relise that these attacks on Hindus in Bangladesh aren't merely a propoganda. \N 15588 \N 435243 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.651233585528 0 \N \N f 0 \N 0 13432082 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 08:07:15.623 f \N \N \N 0 0 0 0 0 0 0 434260 2025-03-11 17:53:05.369 2025-03-29 22:39:48.906 Proposal for better BIP39 \N https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2024-January/022275.html 2596 \N 434260 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 3.21902200222059 0 \N \N f 0 \N 0 22509616 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:13.665 f \N \N \N 0 0 0 0 0 0 0 448786 2025-03-22 21:45:42.386 2025-03-29 22:39:51.959 \N It seems I left my Cowboy hat at the BTC Saloon yesterday. Need help locating it. https://example.com/ 21620 448765 448765.448786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.30660761260111 0 \N \N f 0 \N 0 82980274 0 f f \N \N \N \N 448765 \N 0 0 \N \N f \N 2025-03-29 15:39:37.588 f \N \N \N 0 0 0 0 0 0 0 434923 2025-03-12 10:41:48.664 2025-03-29 22:39:51.965 \N Qe4 checkmate https://example.com/ 1237 434921 434795.434797.434866.434869.434879.434894.434921.434923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4419611523111 0 \N \N f 0 \N 0 138084437 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:00:21.624 f \N \N \N 0 0 0 0 0 0 0 434759 2025-03-12 08:11:10.604 2025-03-29 22:39:51.965 \N You forgot your meme. This is like the perfect post for it lol\n![companies](https://i.postimg.cc/sXmH6BvR/vader-power-dark-side.jpg) https://example.com/ 16212 434709 434646.434709.434759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.382108313481 0 \N \N f 0 \N 0 44243413 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 01:58:15.039 f \N \N \N 0 0 0 0 0 0 0 443671 2025-03-19 13:08:12.69 2025-03-29 22:39:51.965 \N Not an expert in raising kids but I feel like a lot of people resort to repetitive uses of mantras like you listed without their children actually taking it to hearth or actually understanding the meaning behind it.\n\nI think "Words are not actions" is a brilliant example of this. Plenty of humans out that agree with this notion and think of themselves as following this but still being super passive in things they do\n\nI don't have a better solution tho. https://example.com/ 20778 443651 443577.443651.443671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0646539785214 0 \N \N f 0 \N 0 77250903 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:28:29.781 f \N \N \N 0 0 0 0 0 0 0 449053 2025-03-23 06:15:43.815 2025-03-29 22:39:51.965 \N Day 94 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 21040 449027 449027.449053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.15529589703068 0 \N \N f 798809786 \N 5 61106872 0 f f \N \N \N \N 449027 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436425 2025-03-13 14:53:25.52 2025-03-29 22:39:51.965 \N ## Tip of the day!\n### How to use Bisq and LN with the same BTC wallet in Electrum app.\n\n\n1. Download [Bisq](https://bisq.network) and create a new wallet. Or you can use a previous wallet seed created in Electrum, but be sure is bech32 format (native segwit) and restore it in Bisq.\n\n2. Send some BTC to this wallet to have some funds. Or if you already have some, after you restore it in Bisq you will see the balance. To trade on Bisq is necessary to have funds for the escrow reserve.\n\n3. If you created a new wallet in Bisq and want to import it into Electrum, the steps are the following:\n- Create a new wallet, let's name it “Bisq” to identify it easier later, when making a backup copy of this wallet.\n- Select “standard wallet” and then we select “I already have a seed“, and we begin to put word by word, or paste the whole seed. When we have finished writing all the words, check once more that everything is fine. Now we click on the “Options” button and select “BIP39 seed“. Next.\n- We leave “native segwit” selected and we are going to change the “derivation path” in:\n**m/44’/0’/1′ (default is m / 84/0/0). This step is very important!**\n- It asks us to put a password, to protect this wallet file. This password will always be used when opening the wallet and also every time a transaction is sent. Save this password in your password manager. Next.\n- We already have our wallet imported, and in a few moments, the previous transactions, made in Bisq, will appear there in the history list. From this moment, you can use this same wallet, in Bisq and in Electrum.\n\n4. Use the same wallet from Bisq in electrum with LN\n- Open LN channels in Electrum and start using BTC faster, cheaper and easier\n- In the menu – View – we activate to view: Addresses, Currencies, Contacts, Channels\n- We enter in the menu – Wallet – Wallet information. There we activate the “Lightning” option.\n- We select the “Channels” tab and click the “Open Channel” button. In the window that opens, we have the option to put a remote note ID (if it is a known one, store, friend etc) or we can simply give it “suggest” and Electrum searches for the next one available. We put the amount of BTC / sats that we want to put in the channel and we give it the “accept” button. Normally the minimum is 1 million sats, but you can enter how much you want or think you will spend per LN. In the next step, there is another window to confirm the tx commission and the password of your Electrum wallet.\n- Ready! When the tx is confirmed in the network (minimum 3 confirmations) you can already use these sats with LN.\n\nVery good, from now on you already have the Bisq funds connected with LN without having to move them through another wallet.\n\nOptional you can do swaps between Ln <->onchain directly in Electrum. https://example.com/ 9333 436241 436241.436425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.704826679956199 0 \N \N f 0 \N 0 26947152 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:28:32.904 f \N \N \N 0 0 0 0 0 0 0 435877 2025-03-13 03:59:31.907 2025-03-29 22:39:48.906 Books And Articles Newsletter, Issue 34 ![](https://m.stacker.news/54697.png)\n\n### News Of The Week \n\nWelcome to the Books And Articles newsletter. Thanks for all of the quality posts.\n \nThis has been another good week for the territory. The top posts speak for themselves. Additionally, @BTCLNAT is posting in chapters the book [La Vaca: a metaphor about how to overcome conformity and mediocrity](https://stacker.news/items/695194/r/siggy47). It has proven to be very popular. We also continue to get many book, movie, and television reviews.\n\n\n\nAs always, please reply with suggestions and opinions on how to make this territory better. \n\nLogo design by @plebpoet\nLink to last weeks newsletter: https://stacker.news/items/694613/r/siggy47\n\n\n### Top Five Posts Of The Week \n\nHere are this week’s top posts:\n\n- [A bitcoin journey through Africa: Outlining adoption for each country visited](https://stacker.news/items/698518/r/siggy47) by @gpvansat\n\n- [Listen to Patti Smith read a poem I love - "Footnote to Howl" by Allen Ginsberg](https://stacker.news/items/703180/r/siggy47) by @plebpoet\n\n- [The IT crowd | hillarious super funny comedy TV series](https://stacker.news/items/694922/r/siggy47) by @DarthCoin\n\n- [Book Review: The Book of Elsewhere, by China Mieville and Keanu Reeves](https://stacker.news/items/697427/r/siggy47) by @jurraca\n\n- [Unclear What The Fuck Poet On About --The Onion](https://stacker.news/items/698066/r/siggy47) by @StillStackinAfterAllTheseYears\n\n### Siggy’s Suggestions\n\n- [Let it enfold you by Charles Bukowski](https://stacker.news/items/700468/r/siggy47) by @Nadia\n\nYears ago I read a lot of Bukowski’s prose. @Nadia posted one of his poems, which I thoroughly enjoyed. Bukowski isn’t for everyone, but he certainly was unique.\n\n- [Not everyone wants freedom.](https://stacker.news/items/695479/r/siggy47) by @hasherstacker\n\n@hasherstacker gave us this post which probably deserved more attention. The topic is one I struggle with often, as I’m sure most of us do here. \n\n\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n- ["Who are you?" — How do I want to answer?](https://stacker.news/items/674910/r/siggy47) by @IamSINGLE\n\n- ["My journey with Bitcoin: the experience of an ordinary Cuban"](https://stacker.news/items/676287/r/siggy47) by @BTCLNAT\n\n\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n- [And Then She Disappears - Block 1](https://stacker.news/items/680735/r/siggy47) by @ginkgo\n\n### Book Reviews\n\n- [Emil Cioran: 'The Fall into Time ("Sturz in die Zeit" in German)](https://stacker.news/items/694642/r/siggy47) by @TomK\n\n- [Book Review: The Book of Elsewhere, by China Mieville and Keanu Reeves](https://stacker.news/items/697427/r/siggy47) by @jurraca\n\n- [A Journey Through Emiko Jean's The Return of Ellie Black](https://stacker.news/items/691236) by @Melisa\n\n- [what i read, and wrapping up in july:](https://stacker.news/items/630204/r/siggy47) by @speakingyourtruth\n\n- [Book Review: Nothing Like The Movies by Lynn Painter](https://stacker.news/items/670569/r/siggy47) by @speakingyourtruth\n\n- [The Mandibles: A Review](https://stacker.news/items/668210/r/siggy47) by @jimmysong\n\n- [Self-Reliance by Emerson](https://stacker.news/items/669132/r/siggy47) by @ek\n\n\n- [Book - The Victorian Internet by Tom Standage (1998)](https://stacker.news/items/673776/r/siggy47) by @Signal312\n\n- [Review: The Righteous Mind](https://stacker.news/items/665765/r/siggy47) by @Undisciplined\n\n- [Book Review: Sliced Americana](https://stacker.news/items/663627/r/siggy47) by @jbschirtzinger\n\n- [Saboteurs: How Secret, Deep State Occultists Are Manipulating American Society](https://stacker.news/items/675002/r/siggy47) by @jbschirtzinger\n\n- [The New Manners and Customs of Bible Times](https://stacker.news/items/691719) by @jbschirtzinger\n\n- [Book Review | “101 ways to bring out the best in your children & yourself”](https://stacker.news/items/667453/r/siggy47) by @cryotosensei\n\n- [Book Review | “Diary of a Wimpy Kid”](https://stacker.news/items/668335/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Daily Dad” by Ryan Holiday](https://stacker.news/items/684138/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002) by @cryotosensei\n\n- [Book Review | “The 17 Indisputable Laws of Teamwork”](https://stacker.news/items/687944) by @cryotosensei\n\n- [Book Review | “Wonder Doodles”](https://stacker.news/items/685335) by @cryotosensei\n\n- [Book Review | “Sompo Guide Tokyo”](https://stacker.news/items/702025/r/siggy47) by @cryotosensei\n\n- [Book Review | “Peak”](https://stacker.news/items/698568/r/siggy47) by @cryotosensei\n\n- [Book Reviews Directory #2](https://stacker.news/items/665395/r/siggy47)\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Movie & Television Reviews\n\n- [Movie Review | “How to make millions before Grandma dies”](https://stacker.news/items/683086/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [El Encargado | Argentinian TV series | very good comedy](https://stacker.news/items/689468/r/siggy47) by @DarthCoin\n\n- [The IT crowd | hillarious super funny comedy TV series](https://stacker.news/items/694922/r/siggy47) by @DarthCoin\n\n- [Two TV series about the "Schrodinger's cat" theory](https://stacker.news/items/701874/r/siggy47) by @DarthCoin\n\n- [From | Que sera, sera... | new season 3 TV series](https://stacker.news/items/696122/r/siggy47) by @DarthCoin\n\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [a new kind of poem (that you can see 👀 and hear 🦻)](https://stacker.news/items/676672/r/siggy47) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n- [Let's pretend we loved each other](https://stacker.news/items/666008/r/siggy47) by @Nadia\n\n- [That's MINE! Poetry.](https://stacker.news/items/661773/r/siggy47) by @Malach17\n\n- [Silly rhymes written by a guy (maybe) fallen in love](https://stacker.news/items/666985/r/siggy47) by @0268a5c238\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 20245 \N 435877 \N \N \N \N \N \N \N \N news \N ACTIVE \N 6.1705410460943 0 \N \N f 0 \N 0 109770352 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:25:31.785 f \N \N \N 0 0 0 0 0 0 0 447220 2025-03-21 17:43:54.825 2025-03-29 22:39:48.906 Open a channel spending the whole UTXO (no change output) with lnd & bos # Motivation\nSimple: saving on tx fees. First, the opening tx is smaller - for 1 input and 1 output, is is 111 vb instead of 154 vb. Second, no need to redeem that change output, which saves another 58 vb. (Assuming taproot for the input and change.)\n\n\n# Limitations\nMy method below only works for fee < 47 sats/vb. And it is rather clumsy.\n\n# How\nWe need 2 terminals, one for creating a tx, another one for opening the channel.\n\nSwitch to terminal 1. Choose UTXOS we want to spend. \n`UTXOS="--utxo : --utxo :"`\n\nNow we find out how much exactly we can send (after subtracting fees). We need some dummy P2WKH address (the long, 62 characters). For example, we may copy the destination address of any channel opening, I will use `bc1q4n5edfv92ux9vxja2j47xlxd94ae0cq9u6nkz3qu3uh6rnezevqsc8pru0`, which corresponds to an [already closed channel between Bitrefill Routing and VN.Sovereign](https://mempool.space/address/bc1q4n5edfv92ux9vxja2j47xlxd94ae0cq9u6nkz3qu3uh6rnezevqsc8pru0). It is possible to batch open several channels this way, but then we would need distinct dummy addresses. Divide your desired fee by 1.48 - so if you want fee 30 sats/vb, 30/1.48 = 20.27 , so we use `--fee-rate 20`. This math only works for 1 input, you may want try various fee rates.\n```\n./bos fund -v --dryrun $UTXOS --fee-rate 20 bc1q4n5edfv92ux9vxja2j47xlxd94ae0cq9u6nkz3qu3uh6rnezevqsc8pru0 MAX-200\n\nsend_to: \n - \n bc1q4n5edfv92ux9vxja2j47xlxd94ae0cq9u6nkz3qu3uh6rnezevqsc8pru0: 0.06233683\nrequested_fee_rate: 20\n\nsum_of_outputs: 0.06233683\nspending_utxos: \n - [redacted]\n\nfee_tokens_per_vbyte: 29.73\nsigned_transaction: [redacted] \n```\nWe cannot spend `MAX`, we would get error (not enough funds, ironically) we need to spend `MAX - 10*`. Watch the `send_to:` section, whether there is a change output - not our case. Copy the amount and convert it from BTC to sats , we get 0.06233683 BTC = 6233683 sats. Bos always uses 8 decimals, so we can just copy the decimal part.\n\nSwitch to terminal 2 and initiate a channel opening with the amount we obtained, and using `--external-funding` flag. This is a bit counter-intuitive, we are really doing internal funding, just controlled by us. The node ID used is Bitrefill Routing.\n```\n./bos open --type public --external-funding --amount 6233683 030c3f19d742ca294a55c00376b3b355c3c90d61c6b6b39554dbc7ac19b141c14f\n\n- \n node: Bitrefill Routing\n channels_per_peer: 1.09\n is_accepting_large_channels: true\n\nopening_to: \n - Bitrefill Routing: 0.06233683\n\nconnecting_to: \n alias: Bitrefill Routing\n public_key: 030c3f19d742ca294a55c00376b3b355c3c90d61c6b6b39554dbc7ac19b141c14f\n\nfunding_deadline: Today at 12:56 PM\n\nfund: fund bc1qucuz7nufnc5yku7d4dy5ltaspk3u6gpk4cth5687swhssj5mkxks2fa7jr 6233683\n\nbc1qucuz7nufnc5yku7d4dy5ltaspk3u6gpk4cth5687swhssj5mkxks2fa7jr, 0.06233683\n\n? Enter signed transaction or PSBT that pays 0.06233683 to \nbc1qucuz7nufnc5yku7d4dy5ltaspk3u6gpk4cth5687swhssj5mkxks2fa7jr or press enter to cancel funding.\n\n```\n\nCopy the address and amount (line 17) and go back to terminal 1. Use the previous `fund` command, but delete `--dry-run` and use the address and amount from previous step instead of dummy address. Triple check here, you are now creating a real tx, although not broadcasting it yet. \n```\n./bos fund -v $UTXOS --fee-rate 20 bc1qucuz7nufnc5yku7d4dy5ltaspk3u6gpk4cth5687swhssj5mkxks2fa7jr 6233683 \n\nsend_to: \n - \n bc1qucuz7nufnc5yku7d4dy5ltaspk3u6gpk4cth5687swhssj5mkxks2fa7jr: 0.06233683\nrequested_fee_rate: 20\n\nsum_of_outputs: 0.06233683\nspending_utxos: \n - [redacted]\n\nfee_tokens_per_vbyte: 29.73\nsigned_transaction: 020... [redacted]\n```\n\nYou may check the signed transaction for example by importing it to electrum (menu->tools->load transaction->from text) to check that you are sending to address(es) given by `bos open`. \n\nCopy the signed transaction to clipboard, switch to terminal 1, and paste it here. \n\n# Future\n`lnd openchannel` has a new flag `--fundmax`, which tries to spend all funds in the lnd's onchain wallet. I tried to "lease" (lock) all my UTXOs except one or two, but it insisted on creating a 100k change as reserve for anchor channels. Even when I left a 100k UTXO unlocked, it spent it and created 100k change.\n\n[This PR](https://github.com/lightningnetwork/lnd/pull/7516) should implement it directly in lnd. \N 21184 \N 447220 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 21.2953137222486 0 \N \N f 0 \N 0 157244781 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:49:25.285 f \N \N \N 0 0 0 0 0 0 0 435648 2025-03-12 21:06:13.181 2025-03-29 22:39:48.906 Apple Confirms iOS 17.4 Disables Home Screen Web Apps in the European Union \N https://www.macrumors.com/2024/02/15/ios-17-4-web-apps-removed-apple/ 690 \N 435648 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.2162678372085 0 \N \N f 0 \N 0 87917002 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 19:43:08.58 f \N \N \N 0 0 0 0 0 0 0 435180 2025-03-12 14:10:42.922 2025-03-29 22:39:51.959 \N ![](https://nostr.build/p/nb10837.jpg) https://example.com/ 16839 435152 435046.435152.435180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.47623244552773 0 \N \N f 0 \N 0 76163322 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 10:36:55.111 f \N \N \N 0 0 0 0 0 0 0 403892 2025-02-15 10:23:22.755 2025-03-29 22:39:51.959 \N 5th of 6 interviews on Monday for a job..found out Monday night they offered the job to someone who was farther along in the process...now I'm back job hunting.. https://example.com/ 16348 403552 403552.403892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3557801085911 0 \N \N f 0 \N 0 14197068 0 f f \N \N \N \N 403552 \N 0 0 \N \N f \N 2025-03-26 06:58:05.264 f \N \N \N 0 0 0 0 0 0 0 434617 2025-03-12 04:26:47.382 2025-03-29 22:39:51.959 \N If you want to play around with lightning bitcoin first and get familiar with sending and receiving sats then try a quick custodial option like:\n\n- coinos (web)\n- zebedee (mobile) \n- wallet of satoshi (mobile). \n\nOnce you're ready to up your security then consider trying a convenient self-custodial lightning wallet where the channel management is taken care of for you, e.g.\n- Breez (mobile)\n- Phoenix (mobile)\n- Bitkit (mobile)\n\nWhen you've saved up enough sats to go onchain then consider getting a hardware signing device (or 3), such as a Jade, seedsigner, coldcard, ledger, trezor and pairing it with an onchain wallet like: \n- Sparrow (desktop)\n- Green (mobile, desktop)\n- Specter (desktop)\n\nTo use it privately you'll want to run your own Bitcoin node, which you can do on your windows/macos/linux computer but to keep it in sync you might want to get a dedicated device that you can leave running 24/7. There are specially designed personal server operating systems that make it easy like:\n- Umbrel OS\n- Start OS\n\nOnce you're running your own node you can start experimenting with managing your own lightning channels and using mobile lightning wallet options that you can pair with your node like Zeus. \n\nI've missed out a lot of wallets because I just wrote this quickly off the top of my head, so please do your own research. Personally if I was just starting out today I would play around quickly with coinos on web, then when you have a few sats move them to Breez on mobile, and once you've got a big enough stack to take onchain I would start with a simple set up of a Blockstream Jade + Green wallet (on mobile and desktop). There are plenty of 10% discount codes out there for the Jade, but it still sets you back a little bit so it only makes sense once you've got a bit of savings going. The last code I saw floating around was "ORANGEMART" \n https://example.com/ 2492 434498 434498.434617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83534083860715 0 \N \N f 0 \N 0 228546210 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 2025-03-19 05:09:20.314 f \N \N \N 0 0 0 0 0 0 0 434606 2025-03-12 04:06:53.123 2025-03-29 22:39:48.907 Runes are not going to stay because the market will not allow it TL;DR: It's too expensive and inneficient. \n\n----\n\nBefore going any further, let me clarify some things:\n\n1. I don't think [Ocean is going to win](https://stacker.news/items/333299?commentId=334925) anything filtering transactions.\n2. I don't think to put filters is [the right action](https://stacker.news/items/340230/r/softglitter2d?commentId=340388).\n\nHaving said that, I begin.\n\nI was checking my wallet when I noticed that, in order to move my sats I needed 230.000 sats. Nothing new for me, but then I checked the block 840.000 and saw people paying almost 2 f****ing bitcoin[^3]. Well, if you have the money, be my guest. But then I recall [the Runes](https://stacker.news/items/507165) that one you guys were talking.\n\n[^3]: Yeah, it's real, [check the transaction](https://mempool.space/es/tx/11b9c94843240d65cd91ed34402017316722d3500914e68bd825d39f5eace81f).\n\nRecently, I was (again) reading my notes on the matter itself and it's almost the same answer. Now:\n\n### Can you prevent people to stop using ordinals/memecoins[^1]? \n\nNo, you can't do anything. \n\n### Will you run your own node version where there's no ordinal/rune/brc20?\n\nIt's like to put a curtain in your house to delete the sun from your view. It doesn't make sense in long terms. Today, Ocean have less than 5% of total hashrates and while I understand their vision, economically it won't work...Say your solution is to put filters today, tomorrow, once your solution is propagated, these degens will find a way to disguise their ordinals in something else. \n\n### Why people are using these...things that are not useful in the bitcoin L1? \n\nThe answer, my friend, was already given, so [let me rephrase](https://twitter.com/jimmysong/status/1655883199736856577) @jimmysong in this one: the use bitcoin becuase they're spending something that is actually scarce, it will last, plebs can run a node and most important, it won't suddenly change. \n\n### And why are you sure they won't last?\n\nMaths and market. Having studied the Rune protocol, I see the _efficiency_ of what they want to improve about BRC20. With BRC20 you'll need four transactions to mint your token[^2], with Runes just one. Casey improved the standard but still very expensive..way too much. And it's not suitable for everyone. The fee market dictates how much you're going to pay to put your _trash_ in the next block. Once you pay, it's all you need to do but here's the thing: for how long can you mantain this? My two cents: not for too long. \n\nThe best way to avoid, philosophically speaking, some kinds of transactions (ordinals and stuff) is making them pay high, like..really high. Let the market do the work. Also remember, the shitcoin narrative is not bitcoin but Ethereum and Solana, both layers can do what Runes does but in less than 1 minute and 99.99% cheaper. \n\nSo, that's it. \n\n[^1]: Did you guys noticed? It's not _shitcoin_ anymore but now it's for fun, therefore memecoins. It's the same picture.\n[^2]: It's really fun to learn these things. Now that I understand what they're trying to build, rest assure they won't last.\n\n \N 635 \N 434606 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.1799261213 0 \N \N f 0 \N 0 89478623 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 22:12:39.885 f \N \N \N 0 0 0 0 0 0 0 442718 2025-03-18 19:02:51.896 2025-03-29 22:39:48.907 Reasons not to use Apple: Stallman \N https://stallman.org/apple.html 18735 \N 442718 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 10.9558854711774 0 \N \N f 0 \N 0 94943668 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:50:51.446 f \N \N \N 0 0 0 0 0 0 0 436448 2025-03-13 15:07:13.546 2025-03-29 22:39:51.959 \N I am sure crypto people will come up with something for TAOs as well in due time. Gotta keep the grift assembly line running. I think it is a great orange pill tool that we can compare the work of folks like @anita to the crap that comes out of crypto as evidence of why Bitcoin is different. https://example.com/ 10016 436442 436364.436442.436448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7430551492796 0 \N \N f 0 \N 0 184300771 0 f f \N \N \N \N 436364 \N 0 0 \N \N f \N 2025-03-20 08:24:55.686 f \N \N \N 0 0 0 0 0 0 0 435895 2025-03-13 04:37:02.66 2025-03-29 22:39:51.959 \N Government is fine. The state is not. The state is a monopoly based in violence so the state should play no role in the market. The state should cease to exist. Governance is a part of pretty much every market. When the state gets out of the way private governance can flourish under competition.\n\nThis is a list of good things to look at. For almost all of them I have heard very convincing arguments or counter points. Some of these points you list are classic examples of the state taking credit for things that were already happening in the market. I would have to do some research to recall the sources. I went down this road for years and landed on my current stance.\n\nAnother thing to consider is the data showing that the more free a market the more prosperous. Of course many point to places like Somalia which doesn't have a state as examples to support the state but I think we can all see the flaws in that argument. If you start for nothing you can't compare that to the US or Switzerland. \n\nEdit: I think there is a good debate to be had between minarchists. and anarchists. Minimal government or a night watchman state is far better than the direction the US and most of the west is headed. https://example.com/ 621 435893 435891.435893.435895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8686027816109 0 \N \N f 0 \N 0 86308025 0 f f \N \N \N \N 435891 \N 0 0 \N \N f \N 2025-03-20 04:23:04.713 f \N \N \N 0 0 0 0 0 0 0 436358 2025-03-13 13:51:52.03 2025-03-29 22:39:51.959 \N Go nuts https://example.com/ 20852 436129 435908.436129.436358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4892476162516 0 \N \N f 0 \N 0 45050018 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 2025-03-20 10:41:39.72 f \N \N \N 0 0 0 0 0 0 0 434903 2025-03-12 10:27:24.208 2025-03-29 22:39:51.959 \N I just tell people that I work on lightning network software. They either get it or they don't and will usually drop the subject if they don't. https://example.com/ 899 434469 434469.434903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8716003577375 0 \N \N f 0 \N 0 169789695 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 2025-03-19 06:02:26.052 f \N \N \N 0 0 0 0 0 0 0 443635 2025-03-19 12:47:22.309 2025-03-29 22:39:51.959 \N > why is costa rica the only one of the top 10 countries with the most trust to be located outside of europe?\n\n\nNot sure but maybe they weren't impressed by the help from the US after the storm, & subsequent devastation, a few years ago. This might have been seen to contrast with seeing some of their own officials rolling their sleeves up, wearing waders and not just doing it for a photoshoot. https://example.com/ 2232 443622 443554.443622.443635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.34778967729351 0 \N \N f 0 \N 0 244001462 0 f f \N \N \N \N 443554 \N 0 0 \N \N f \N 2025-03-26 06:08:32.551 f \N \N \N 0 0 0 0 0 0 0 435959 2025-03-13 06:46:42.245 2025-03-29 22:39:51.959 \N 🎉 https://example.com/ 14271 435488 435488.435959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8666479652244 0 \N \N f 0 \N 0 224982767 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 00:15:13.862 f \N \N \N 0 0 0 0 0 0 0 436023 2025-03-13 08:39:04.477 2025-03-29 22:39:48.907 Mastering The Lightning Network, A Book Review (4.6/5 stars⭐⭐⭐⭐⭐) ## By Andreas Antonopoulos, Olaoluwa Osuntokun & Rene Pickhardt\n\n[Thread Theme](https://youtu.be/nBM1-DwjA8I)\n\n![Front Cover of Mastering The Lightning Network](https://miro.medium.com/v2/resize:fit:4800/format:webp/1*796nug1MFP7mpswuv0vNNA.jpeg)\n\nIf someone loaded a shotgun of lightning knowledge and [sprayed it at a wall](https://youtu.be/nBM1-DwjA8I?t=236), it would be this book. I would give this 5 stars, but I feel it’s got some missing pieces and could be refined to be more coherent as a whole.\n\nIt’s very high impact and covers the Lightning network broadly.\n\nThis is not a book for the noobie bitcoiner. It’s technical, requires patience and dedication to get through.\n\nBut it is so worth reading. If you have a desire to understand lightning more, it’s technical minutia or how things work generally, this is the book for you.\n\nI came away from the book not understanding lightning fully, but having more answers and questions to look into, a better idea of where to look for answers, and a better idea on what lightning is and how it functions.\n\nThis is not an instructional book for setting up and running a lightning node (despite their being a chapter dedicated to this, which should probably be improved with external resources for just that).\n\nBut it does offer many clues to the self taught Bitcoin amateur on what is the cutting edge of Bitcoin technology. I don’t see lightning and other second layer networks stopping. Long term, they will only accelerate and perhaps even become the primary use-case for Bitcoin’s layer 1.\n\nThere is not a lot of published literature about lightning yet. So this book is by far the best one out there, if not the only one.\n\nYou can pick up a lot of subtle useful nuances about lightning and second layers by just passively reading this book.\n\nSome things that stood out for me were:\n\n* The abacus nature of lightning channels and liquidity.\n\n* How your nodes channel liquidity is used/useful in others routing of HTLC’s.\n\n* WTF is even an HTLC and why PTLC’s are superior and are enabled by Taproot and will help scale lightnings privacy and capacity generally.\n\n* That there is a whole legion of volunteer lightning devs out their who are low key superhero’s asking for nothing. (You guys are the real MVP’s. )\n\n* That updating your channel state/fee policy every two weeks can be a best practice, as a way to advertise your channels to the network so they don’t get stale in the eyes of other nodes network graphs.\n\n* Fee policy dynamics and specific units.\n\n* The state of the lightning network is much more dynamic and upgrade-able than Bitcoin layer 1, which makes things much more fun and permissionless for developers to mess around. I like that it’s forwards and backwards compatible. Though I do worry about hostile bifurcation scenarios long term and centralization.\n\n* It is imperative, or at least a high priority, that running a lightning node be accessible to anyone who wants to do so long term. This may be more difficult than it appears, due to UX issues currently, and eventually resource constraints.\n\n* Lightning, and to a certain extent Bitcoin layer 1, are currently operating under a light adversarial environment in my view (it can get worse). Making both networks more robust to certain DOS attacks is not very sexy from a development perspective, but imperative long term. Concern for corporate and nation state adversarial actions should be top of mind by devs looking to fortify layer 2’s and 1.\n\n* Taproot was a god send for the lightning network. As a result Lightning is a lot more robust in multiple ways, and we are only now seeing some green shoots from this. It is still early days, its will get so much better.\n\n* There is a lot more work to do on making lightning and layer 2’s more robust generally, and also accessible to the average user. Luckily, Both seem to be moving apace with great acceleration.\n\nWith that in mind, I hope Bitcoin AND Lightning devs make good choices in their designs that focus on empowering end users rather than ensnare them in third party middleman mouse traps, or enable shitcoin gambling dynamics.\n\nUnfortunately many devs seem to be in this latter camp, knowingly or unknowingly. Fiat incentives, I get it. But please consider giving back when you can or when you “make it”.\n\nTo those of you who are in the former camp (you know who you are),\n\n[With a 21 gun salute](https://youtu.be/nBM1-DwjA8I?t=208),\n\nThank You For Your Service.\n\nTLDR: Lightning & Layer 2’s are Bitcoin’s Future. Mastering The Lightning network is a good book for fundamental technical Lightning details.\n\nRead it. \N 10291 \N 436023 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.9744430627201 0 \N \N f 0 \N 0 183951062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:58:45.747 f \N \N \N 0 0 0 0 0 0 0 423124 2025-03-03 01:34:47.765 2025-03-29 22:39:48.907 The Final Product, Chapter 31 *This is Chapter 31 of **The Final Product**, you may want to go back to [Chapter 30](https://stacker.news/items/550527) or [start at the beginning](https://stacker.news/items/358761).*\n\n# 31\n\nNo doubt, the reader will find it shocking that both these Martian factions attempted to use deception in such a foolish manner. But one must remember that the Martians were as yet new to teeping, and still labored under the near-barbaric psychology created by language. \n\nThe Martians of course were great liars, and not to be trusted. It is thought that their propensity for deception was yet another outgrowth of the strange practice of language. Lying in the Martian culture was similar to their concept of addiction, in that they often did it, but only chose to label a small selection of of deception and falsehood as lies. \n\nMost Aliens thought that the introduction of teeping would rectify the problem, for it was believed before this time that deception when teeping was almost impossible. So much of the mental state is communicated in teeping that any intention to deceive was quite obvious. This had been the truth among the Aliens for many generations.\n\nWhat the Martians discovered—if you can call the reliance on innate traits a discovery—was that a deception was perfectly undetectable so long as it was believed by the one who espoused it. So the Martians learned that they could lie to as much as they wanted as long as they first lied to themselves.[^1] \n\n*Chapter 32 tomorrow, same time, same place.*\n\n[^1]: An oath conveys to them no sense of obligation to tell the truth. We have experimented and exploited in many directions to determine how to enforce the oath and how to perfect it; how to bind their conscience, or how to reach the truth. we have burnt little paper with characters upon it. We have brought roosters into our court and cut off their heads and sworn these pagans by their blood; we have burned red papers with Chinese characters imprinted thereon; we have sworn them upon our religious works, the Bible of both kinds, the Douayan and the St. James' version; we have placed their hands upon the cross and we have had them uplifted to the heaven where for them there is no God, and still we have been unable to obtain the truth, until the testimony of all our judges and all our professional men is that the Chinese conscience knows no such thing as an obligation to tell the truth. **Frank M Pixley, US Congress, Joint Special Committee to Investigate Chinese Immigration, "Report of the Joint Special Committee to Investigate Chinese Immigration" 1877**\n \N 19126 \N 423124 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 6.70179938994306 0 \N \N f 1298964381 \N 11 236861237 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 7 0 0 433333 2025-03-11 00:52:27.073 2025-03-29 22:39:51.96 \N Is there a verification process in SN? how can we know this is who he says he is? https://example.com/ 18557 433080 433056.433076.433080.433333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6882168730413 0 \N \N f 0 \N 0 223293721 0 f f \N \N \N \N 433056 \N 0 0 \N \N f \N 2025-03-18 17:04:28.488 f \N \N \N 0 0 0 0 0 0 0 435592 2025-03-12 20:01:21.708 2025-03-29 22:39:51.96 \N "Ethereum enables the financial crisis on the blockchain." \nI heard this in a podcast today. It's the best description of Ethereum imho https://example.com/ 10398 435577 435577.435592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.8233538220309 0 \N \N f 0 \N 0 85031295 0 f f \N \N \N \N 435577 \N 0 0 \N \N f \N 2025-03-19 13:27:21.438 f \N \N \N 0 0 0 0 0 0 0 436392 2025-03-13 14:24:25.354 2025-03-29 22:39:51.96 \N The snail may be eliminated but will live on forever as the namesake of the game. https://example.com/ 4035 436028 436028.436392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.37990972814 0 \N \N f 0 \N 0 234866965 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 09:48:04.275 f \N \N \N 0 0 0 0 0 0 0 434000 2025-03-11 14:57:40.939 2025-03-29 22:39:51.961 \N Prototyping a small enclosure to sound-proof a S9 and use it as a room heater!\nEverything will be open source, and eventually i'll sell pre-built kits.\nFollow on twitter @couteausuisse https://example.com/ 15243 433381 432344.432932.433381.434000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5198774145929 0 \N \N f 0 \N 0 63143501 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 2025-03-18 17:04:02.738 f \N \N \N 0 0 0 0 0 0 0 436463 2025-03-13 15:18:46.735 2025-03-29 22:39:51.961 \N I have done this once but this is seriously bad ass. This is a great usage of this command! https://example.com/ 19193 436323 436323.436463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2981281832125 0 \N \N f 0 \N 0 47110520 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 2025-03-20 09:24:01.556 f \N \N \N 0 0 0 0 0 0 0 436178 2025-03-13 11:15:16.064 2025-03-29 22:39:51.961 \N Two things:\n\n1. Bolt Cards - https://lasereyes.cards/designers/\n2. Cashu - https://cashu.space/ https://legend.lnbits.com/cashu/mint/GsAL2UKczDnkS5SWW65GZE\nhttps://legend.lnbits.com/cashu/wallet?mint_id=GsAL2UKczDnkS5SWW65GZE https://example.com/ 20614 436021 435328.435887.435904.435957.436001.436011.436021.436178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.02707528053634 0 \N \N f 0 \N 0 68747856 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 2025-03-20 09:11:44.475 f \N \N \N 0 0 0 0 0 0 0 443404 2025-03-19 10:30:48.022 2025-03-29 22:39:48.908 What is the WORST case scenario for Bitcoin? I think we can all agree that everyone here is pretty bullish BTC.\n\nDreaming of hyperbitcoinization is easy, but what about the flip side: what's the _worst_ that could happen?\n\nIf Bitcoin was to retrace back to $0, what has to happen for it to get there?\n\nHas Bitcoin truly achieved escape velocity (as espoused by popular influencers), or is there still massive overhead risk that we aren't factoring into the discussion enough? \N 20201 \N 443404 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 4.63550353094906 0 \N \N f 0 \N 0 81622960 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:50:41.384 f \N \N \N 0 0 0 0 0 0 0 429275 2025-03-08 04:48:46.004 2025-03-29 22:39:48.908 Humans, AI, & Pattern Recognition \nI have heard it said that humans are pattern recognition machines. Over the years since I first heard this idea I have come to believe it is true. \n\nWe are still in the midst of a technology hype-cycle. This one is focused on AI. Its not the first nor will it be the last. I'm old enough and have spent enough time in the tech space to see the patterns repeat. Some innovation occurs. The innovation is real but is quickly hyped beyond reason. Companies suddenly pivot to adopt this new tech if not in reality at least in their marketing. Every startup founder is building the hype in order to get larger seed funding for their revolutionary idea to make a smart toilet or whatever. The critical thinkers often discount the innovative work due to this hype. This is a reactionary response, not necessarily a rational one. The other extree are the gullible folks seemingly blindly buy into it. They seem to buy all the bullshit being spewed by the tech overlords. Its new and shiny and cool. The challenge is to not get pushed or pulled by the vortex. To remain as objective and as clear headed as you can. \n\nMany years ago I had the privilege to get a private tour at DreamWorks. We spoke with producers and animators. One thing that stood out to me was their description of a phenomenon called "the uncanny valley". You've probably heard of it but its what happens when your sub-conscience brain realizes its being tricked. When something looks close to real but your brain knows something is off. People describe feeling uneasy. We don't like being fooled basically. So animators solve this by making their animations less lifelike. Basically they have to find the line because humans are pattern recognition machines.\n\nAs the AI hype has increased I've spent some time tinkering with various tools like many of you have. I've also been exposed a large amount of what these new algorithms produce. It is fascinating and I can clearly see some utility. What I can also see are patterns. I can't always put it into words but when I read things online these days I often get a gut feeling that an algo wrote this. Or an algorithm made this image. The images and video are the easiest to pick out. Then audio, I'd say it is harder to pick out but I believe I can do it pretty consistently if I know the speakers actual voice and have enough of a sample size. \n\nI don't believe every human has the same level of pattern recognition skills. I'm sure there are others better at it than I, as well as those who are terrible at it. But humans have this ability. So what's my point? My point is chill. ChatGPT is not going to end civilization or obsolete human effort. There are two types of influencers taking two extreme positions.\n\n## The AI hypers\n\nThese are the people with the most to gain by selling vaporware to investors. We've seen over the past few years how gullible investors can be. FTX, cough. When I hear ANY startup investor or dev talking about a new technology I am skeptical. I want details. When I start sensing hand waving and hype language I usually tune out or at least start looking for the scam. I don't always get it right but I often do. When I hear most tech journalists and CEOs talk about AI it sounds like nonsense. In the words ofW.C. Fields \n\n> If you can't dazzle them with brilliance, baffle them with bullshit.\n\n## The Fear Mongers\n\nThe other group in this hype cycle phase are the fear mongers. These people have much to gain by making you afraid. The most obvious group in this group are the politicians. At this point, if you trust these people you are beyond help. But many of you still have some faith in the words of these criminals for some reason. They gain most of their power and authority by creating fear in the public. Fear for which they can offer some solution. Sometimes there is some rational reason for the fear but this is not always the case. The second group in the fear mongers are the AI people themselves. The same people creating the tech that could end civilization. What motivates these people? Market domination. They usually seek to quell competition. Sam Altman is an example for this group. Guy runs an org that is making the thing he says needs regulation. Of course, he only comes to the politicians after his company has a product on the market. If you study the history of capitalism in the US you will see this patter repeat. If this is a new concept look into "regulatory moats". The idea is that market leaders use the state and legislation to make it difficult for new startups to enter the market by raising the cost of getting going by adding new moats. The justification is almost always safety or fairness to the public. The real reasons are clear. Market control.\n\n## Pattern Recognition\n\nThe big thing both of these groups believe is that AI will become so powerful that it will revolutionize society. One side focuses on the benefits the other on the negative side effects. They both miss a pattern from the history of technology. You can't stop technology. Progress can be slowed by stupidity but it will continue. AI will not take all our jobs. It may make many jobs so easy they no longer require so much effort but we humans always find new problems to solve. Or we create new problems to solve. The fear about vast unemployment is just a repeat of the same fears about the automobile or electricity. Do we stop progress in order to keep people busy?\n\nWhen I hear people concerned about job lose I often think of this story about a "make work" project.\n\n> While traveling by car during one of his many overseas travels, Professor Milton Friedman spotted scores of road builders moving earth with shovels instead of modern machinery. When he asked why powerful equipment wasn't used instead of so many laborers, his host told him it was to keep employment high in the construction industry. If they used tractors or modern road building equipment, fewer people would have jobs was his host’s logic. "Then instead of shovels, why don’t you give them spoons and create even more jobs?" Friedman inquired.\n\nThis is how I think about AI. Yes, technology can be disruptive. Transitions are hard for some but should we really remain stagnant for these reasons?\n\nI recently watched a [video from the 1985](https://youtu.be/ipRvjS7q1DI?si=q96SjOQDrQ_TVN3y) where the famous scientist Richard Feynman said he never heard anyone complain about a machine lifting heavy weight objects. Why, because this is hard work. I imagine our ancestors would love to have access to the tech we all use today. So many things they had to do are after thoughts to us. Personally I don't want to go back to scratching out a living on the land.\n\nOne other fear I see and hear from friends is the concern about fake news. How will we know what to believe. Won't we be fooled by AI. To this question I say where have you been? The masses have been fooled for centuries at least. Think about the past 100 years. Media was controlled by a select number of organizations. Rulers could openly lie and the masses would believe it. Many mistakenly believe in the rise of fake news. The New York Times has long produced lies to benefit the elitist world view. Every publication has an agenda. But even when they reject the intentional malice of fake news(Walter Duranty) they still produce it. Today we have far more tools to combat propaganda than humanity has ever had. AI is not creating a new problem. Removing it will not solve the problem. Pattern recognition is the solution. Far too many people are trusting institutions and people they should not trust. People that they don't need to trust. \n\nIf you worry about these things, work on your pattern recognition. Improve yourself. Most of us will have zero affect on AI. Whatever AI means or is, it is just a evolution of computer algorithms. It is going to happen. Learn to use the tools or refuse, but don't buy into the fear-mongering or the hype. History has shown that both are usually wrong.\n \N 10638 \N 429275 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 21.529423583658 0 \N \N f 0 \N 0 86090465 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 05:30:35.534 f \N \N \N 0 0 0 0 0 0 0 435831 2025-03-13 02:26:14.195 2025-03-29 22:39:51.961 \N I used to relate to the label "militant agnostic" and strongly felt that religion was stupid and irrational. I now relate more to "pro-religion atheist", because I still don't believe it, but I appreciate the value it's adding to society. https://example.com/ 1000 435667 435667.435831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2608919127475 0 \N \N f 0 \N 0 13752382 0 f f \N \N \N \N 435667 \N 0 0 \N \N f \N 2025-03-19 23:53:44.141 f \N \N \N 0 0 0 0 0 0 0 230233 2024-09-08 03:24:57.757 2025-03-29 22:39:51.962 \N It's been roughly a week. Recent was too noisy. It got less noisy and some low effort posting stopped or moved to other territories. Most high effort posts make well over the posting costs. My default tip for something good is 100 sats. https://example.com/ 6463 199264 199264.230233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.215103971 0 \N \N f 0 \N 0 66091620 0 f f \N \N \N \N 199264 \N 0 0 \N \N f \N 2025-03-20 05:38:37.491 f \N \N \N 0 0 0 0 0 0 0 435072 2025-03-12 12:46:37.914 2025-03-29 22:39:51.962 \N One additional note, all SN-affiliated accounts (@k00b, @kr, @ek, @sn) have been disqualified from participating in Million Sat Madness.\n\nYeehaw! 🤠 https://example.com/ 11819 435046 435046.435072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6597805071203 0 \N \N f 0 \N 0 119558920 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 12:37:41.617 f \N \N \N 0 0 0 0 0 0 0 435743 2025-03-12 23:07:58.504 2025-03-29 22:39:51.962 \N The things is Jack Mallers, worked with Dorsey when he still was at Twitter to enable tipping using lightning. The system is already there and he just said on Twitter to Musk, that it will take him just days to take the already built lightning system to Twitter in general.\n\nLet's see if Musk responds, but I have the feeling that Musk wants Twitter to become a wallet and exchange for Doge. So they can get a commission for selling Doge to the people. https://example.com/ 20026 434318 434278.434318.435743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4018244291379 0 \N \N f 0 \N 0 193454452 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 16:29:37.632 f \N \N \N 0 0 0 0 0 0 0 434696 2025-03-12 07:05:24.801 2025-03-29 22:39:51.962 \N I'm assuming freebie posts will still be a thing, and new users can totally use those (and earn way more sats if they provide actual content). https://example.com/ 12049 434627 434627.434696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.90631017621 0 \N \N f 0 \N 0 151122023 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 2025-03-19 08:53:37.061 f \N \N \N 0 0 0 0 0 0 0 447241 2025-03-21 18:00:27.536 2025-03-29 22:39:48.898 Stuck between a Rock and a Hard place...or a Moose and an Elk herd in this case. So last summer I was in Colorado hiking the Rockies. Beautiful summer day, cool but sunny. We were up early in the morning to take on a few hikes.\n\nOur first hike was an out and back, maybe 3 miles or so. Nothing crazy, we just wanted to enjoy the morning air. It's a relatively flat valley trail along the creek bed that takes you through some gorgeous nature -- and plenty of wildlife too.\n\nThe walk in was beautiful; not a worry in the world to bother us. Hung out with some deer, relaxed by the river. Ate some breakfast. But heading back out, the vibes QUICKLY shifted. \n\nWe turned a corner, not paying much immediate attention, probably caught up in some conversation, only to look up and see a moose, like a MOOSE moose, grazing on the grass ahead of us, right on our path. Maybe 50ft away from us.\n\n https://imgprxy.stacker.news/ZzIYVfwl7DpOEaPDlWt_AB0xmGgWLg4XqelpQ482Fcc/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9kSURPQWhaLnBuZw\n_this is the best screenshot I could get from the video recording I had. Hard to see the path but walking on it would've put us ~5 feet away from this guy_\n\nOkay, so not a huge deal, right? He doesn't look pissed off really, and we can just walk backwards a bit, stay wide off the path and walk around no problem.\n\nSo we turn around, where the creek was behind us, only to find a pack of ~4 elk standing in the water and staring right back at us, maybe 100 feet away, out of nowhere.\n\nAt this point, taking videos was not exactly top of mind, so I don't have any pics of those. But basically it was three normie elks and then one of these bad mfs:\n\nhttps://imgprxy.stacker.news/pF4umlPuen_0oTOLGLnehCzu5wTndOT_YIc4fmtUFPo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLm5hdGdlb2ZlLmNvbS9uL2FmNmYyNzM0LTlkMzItNDU5Mi1iY2ZhLTViNDgxZjNkNWJhNC83MTExOTgyXzN4NC5qcGc\n\nSilence.\n\nSo here we are, finding ourselves stuck between a moose and a herd of elks. \n\nNo gun, just a single knife on hand. Pretty much useless. We're just sitting ducks for any of these animals if they decide they wanna be pissed off. And uh, they were pissed off.\n\nMy friend took one step off that trail, and the bull elk took it as a threat. **Stormed** out of the water and charged up to defend his ground, maybe 50ft away from us at this point.\n\n"HELL no" I'm thinking, and at this point it's clear: Our only option is to walk right towards that moose and hope he's not upset too. From what we could tell, the moose is still just chilling there grazing on grass, not a care in the world about our little elk altercation. \n\nSo we go for it. We walk right up to this moose, about 100x bigger than we are.\n\nHe doesn't even give us a look.\n\nWe walk through just fine.\n\nThe elk don't seem like they want to mess with this moose either. They returned back to their water, carried on with business as usual.\n\nInstant relief.\n\nWe make it back out of the trail, back to our car, and went onto our next hike. We didn't let that moment shake us up, and later we were rewarded with this view:\n\nhttps://imgprxy.stacker.news/kj6iDbWJnHRwSa2NrrakutP70L6VRdTytRwS_Vm8L28/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9xSVJTcXFHLnBuZw\n_iykyk where this is_\n\nLater that night, while we were hanging out in the hot tub outside our cabin, under the stars, two elk walked right up by us, yet again, out of nowhere. Thankfully they weren't mad this time, they were just trying to get at something underneath a tarp in the yard, not sure what it was.\n\nThis time around, I was able to appreciate the elks' beauty. They're truly magnificent animals, and though they nearly killed me that day, I'm happy to have experienced the elk in its raw, wild form. Those moments give you profound appreciation for nature and how _real_ it is, unlike the plethora of unnatural systems we've worked ourselves into today.\n\nIn that moment on the hike, and all moments like those, you also just really, REALLY feel how fragile human life is. The world I've created for myself lives on a very thin thread, and sometimes I forget how easily it can change like nothing.\n\nSo when you find yourselves stuck between a rock and a hard place, how do you manage to get out? \N 787 \N 447241 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.3230399419635 0 \N \N f 0 \N 0 91348743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:26:46.446 f \N \N \N 0 0 0 0 0 0 0 448971 2025-03-23 03:14:16.173 2025-03-29 22:39:48.899 Did you have an embarrassing childhood nickname? Hello stackers\n\nDid you have an embarassing childhood name? Did you like it? How did you get it? Who nicknamed you? What was your feeling?\nOne of my friend's nickname is "PANY". When i at first listened it i thought, the spelling would be Penny. Later i came to know that PANY means sharp in literal hindi and she was a energetic kid who speaks a lot her in childhood so her father named her "PANY".\n\nMy landlord's daughter name was "CHU CHU" I laughed out loud when i first listened to it. Her father named her that because her voice was soft and low like a bird.\n\nFunny part is that, my brother was in kindergarden at that time and her miss taught him a poem and the phrase was like-\n\nChu chu karti chidiya aayi .....chawal doodh batasha laayi...\n\n( Translation; sparrow came while making voice chu chu.... she bring rice and milk with her)\n\nHe kept on singing the rhyme for whole day and mum telling him to lower his voice or change the poem. :D \N 11885 \N 448971 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5549576131472 0 \N \N f 0 \N 0 145944051 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 20:48:42.006 f \N \N \N 0 0 0 0 0 0 0 435501 2025-03-12 18:30:22.998 2025-03-29 22:39:51.959 \N It would save me the embarrassment of reading comments and thinking the poster is a total idiot…. then realising it was my own comment. https://example.com/ 5522 435496 435496.435501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4078464025781 0 \N \N f 0 \N 0 40838137 0 f f \N \N \N \N 435496 \N 0 0 \N \N f \N 2025-03-19 12:40:30.942 f \N \N \N 0 0 0 0 0 0 0 436505 2025-03-13 15:42:48.366 2025-03-29 22:39:51.962 \N I would say money because it influence all other things. The good news is we can have all three. https://example.com/ 1713 436446 435217.436437.436446.436505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1306685513889 0 \N \N f 0 \N 0 77036262 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-20 09:05:24.545 f \N \N \N 0 0 0 0 0 0 0 435856 2025-03-13 03:15:41.9 2025-03-29 22:39:51.963 \N Started a 21-day challenge in which I aimed to learn something new about Bitcoin or interact with its ecosystem every day. I would also record my progress on Stacker News.\n\nDay 2 - Downloaded the Yzer app and consolidated my knowledge of Bitcoin through its fun quizzes. Transferred these sats to my Muun wallet. Found time to write about this experience on my Publish0x blog. https://example.com/ 10979 435610 435610.435856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6172435582862 0 \N \N f 0 \N 0 113118394 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 2025-03-20 09:13:33.823 f \N \N \N 0 0 0 0 0 0 0 443164 2025-03-19 05:37:19.71 2025-03-29 22:39:48.899 Lightning Bounties LLC From [their github](https://github.com/MIT-Bitcoin-2024/lightning-bounty)\n\n> Lightning Bounty is a groundbreaking project that revolutionizes code collaboration and incentivizes software developers using the power of Bitcoin. By integrating with GitHub Actions, Lightning Bounties automatically pays code contributors in Bitcoin for their valuable contributions to open-source projects. https://www.lightningbounties.com/ 18178 \N 443164 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.6990297240911 0 \N \N f 0 \N 0 84038207 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:14:28.899 f \N \N \N 0 0 0 0 0 0 0 446210 2025-03-21 01:29:54.669 2025-03-29 22:39:51.959 \N I just have to be careful to avoid the assmilkers. https://example.com/ 20500 445222 444755.445222.446210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.45297575385214 0 \N \N f 0 \N 0 142603722 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 2025-03-29 08:44:38.044 f \N \N \N 0 0 0 0 0 0 0 447132 2025-03-21 16:25:46.537 2025-03-29 22:39:51.959 \N ![](https://www.zapread.com/i/-0R) https://example.com/ 2513 446954 446954.447132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.11671139069905 0 \N \N f 0 \N 0 79133746 0 f f \N \N \N \N 446954 \N 0 0 \N \N f \N 2025-03-28 12:33:30.986 f \N \N \N 0 0 0 0 0 0 0 436592 2025-03-13 17:29:00.736 2025-03-29 22:39:51.959 \N Absolutely!\n\nOnce I've got it running a seed and build a mock layer for the LN payments the testing on the protocol can start. In parallel I will need to build the deployment for the LN node and the API bindings it requires.\n\nYeh... it is exciting, and daunting... I've been dreaming of building this thing for ten years, it was only as I went bitcoin maxi and fell in the LN pool that I saw a way to do it, and as if by design, the person who would get me the bootstrapping funds to build the PoC appeared right as I was running out of other options after being epically burned working as a shitcoin dev. https://example.com/ 632 436202 435907.436016.436041.436202.436592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1791037419513 0 \N \N f 0 \N 0 245648109 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 12:04:24.114 f \N \N \N 0 0 0 0 0 0 0 431714 2025-03-09 17:27:56.285 2025-03-29 22:39:51.959 \N https://github.com/LNOpenMetrics https://example.com/ 21393 298001 298001.431714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2844089479107 0 \N \N f 0 \N 0 164204763 0 f f \N \N \N \N 298001 \N 0 0 \N \N f \N 2025-03-19 02:48:19.911 f \N \N \N 0 0 0 0 0 0 0 446907 2025-03-21 14:22:59.567 2025-03-29 22:39:51.959 \N Probably the best talk that I saw at TABConf. Such a mic drop moment. https://example.com/ 14489 446662 446662.446907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.82913655981274 0 \N \N f 0 \N 0 97917703 0 f f \N \N \N \N 446662 \N 0 0 \N \N f \N 2025-03-28 10:33:29.843 f \N \N \N 0 0 0 0 0 0 0 434476 2025-03-11 23:51:34.216 2025-03-29 22:39:51.959 \N The referral idea is really fun. I had a thought that would probably be a pain to implement, but here it is: \n\nWhat if instead of having one referrer, we could have many referrers?\n\nI was thinking about the same process you described, except that instead of switching referrers every time you follow someone's link, they would accrue a referral share in you.\n\nMaybe, I come to SN via one of @grayruby's sports contests, giving him the initial referral share. But then, once I'm here, I follow nine of @elvismercury's links to older posts. Grayruby would now have a 10% referral share and elvismercury would have 90%.\n\nThey could also be weighted by duration, to give the initial referrers more of an advantage, but I'm guessing that's overkill. https://example.com/ 11523 431200 403633.431200.434476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8487506686498 0 \N \N f 0 \N 0 245780492 0 f f \N \N \N \N 403633 \N 0 0 \N \N f \N 2025-03-18 17:27:00.26 f \N \N \N 0 0 0 0 0 0 0 448157 2025-03-22 12:48:23.988 2025-03-29 22:39:48.9 A discussion on block size Hello users of bitcoin. I wanted to get some opinions on my thoughts about block size.\n\nBeing able to self-custody is a very empowering property for the users of bitcoin. \n\nI see Fedimint type systems being a major custody option in the future. It has very nice tradeoffs that allow anyone to use the lightning network without running their own node or having to pay any onchain fees and still have much better custody setups than current single party custody options. I think that most users of the future will rarely ever have to touch onchain for any payments.\n\nHowever, I think that maintaining a block size that incentivizes self custody of substantial amounts of wealth as a huge positive for bitcoin.\n\nAt the current block size, around 16 UTXO per second is possible in ideal circumstances where transactions are aggregated (https://btc.network/estimate used segwit with 101 in and 101 outs for calculation). With a world population of 8 billion, this means that each person on earth could theoretically be able to own and spend a single UTXO once every about 16 years.\n\nAs block size goes up, it becomes more expensive for people to run nodes and cheaper for people to take self custody of their funds. In the current environment, I believe that 1 MB blocks are more than sufficient for the users of bitcoin. We have entities spamming the blockchain with transactions and we are still able to make onchain transactions for less that 10,000 sats in fees daily.\n\nHowever, if the adoption of Bitcoin continues to grow, onchain fees could be much more expensive than they are today. At a certain point, I think that small increases to the block size could be beneficial to the users of bitcoin. \n\nDeciding the level at which fees are too high is a very tricky problem and would require extremely high consensus among the users of Bitcoin. But if consensus were to happen, I think raising the block size by maybe .1 MB increments could be beneficial to making it possible for more people to take self custody of there "generation wealth".\n\nI would love to hear other peoples opinions.\n \N 15243 \N 448157 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.69052944165252 0 \N \N f 0 \N 0 9400058 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:28:39.242 f \N \N \N 0 0 0 0 0 0 0 447332 2025-03-21 19:23:32.367 2025-03-29 22:39:51.96 \N > We are non-partisan, one issue voters: If a candidate supports an optimistic technology-enabled future, we are for them. If they want to choke off important technologies, we are against them.\n\nYep, basically this is me. And it's largely because of what they outline in the points that follow. Most of the heavy-handed regulation types are representing entrenched interests who would prefer to choke out competition while avoiding innovating or taking risks. This feels, for lack of a better term, completely unnatural. https://example.com/ 20133 447318 447264.447302.447318.447332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.75731657574797 0 \N \N f 0 \N 0 201971260 0 f f \N \N \N \N 447264 \N 0 0 \N \N f \N 2025-03-28 12:42:42.27 f \N \N \N 0 0 0 0 0 0 0 434392 2025-03-11 21:08:17.472 2025-03-29 22:39:51.96 \N ![btc.jpeg](https://m.stacker.news/4872) https://example.com/ 7667 433879 433740.433879.434392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.41487188918605 0 \N \N f 0 \N 0 72421554 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 2025-03-18 17:26:59.578 f \N \N \N 0 0 0 0 0 0 0 448353 2025-03-22 15:02:06.209 2025-03-29 22:39:51.96 \N I flashed a graphene on Ubuntu just yesterday. Like you it didn't connect immediately to a browser. Some things to think about:\n\n* Flatpak installs of browsers are sandboxed and won't connect to USB so easily\n* So just install the browser fully / directly, as described here: https://brave.com/linux/\n* You may need this package also: `sudo apt install adb`\n* You may need to run this (as described on graphene install page): `echo 0 | sudo tee /sys/bus/usb/drivers_autoprobe`\n* After all this, reboot the machine\n\nall the above, plus the android sdk you already installed (`sudo apt install android-sdk-platform-tools-common`) should be enough to get you going!\n\nGood luck, graphene is awesome https://example.com/ 2832 447944 447944.448353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.970302326115 0 \N \N f 0 \N 0 45267783 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N 2025-03-29 08:43:48.201 f \N \N \N 0 0 0 0 0 0 0 435790 2025-03-13 01:02:32.684 2025-03-29 22:39:51.961 \N Check out Seedsigner ( https://github.com/SeedSigner ). I use it and ColdCard for multi vendor multi sig setup. https://example.com/ 10862 434902 434795.434902.435790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.41131875628486 0 \N \N f 0 \N 0 233189816 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 21:59:40.207 f \N \N \N 0 0 0 0 0 0 0 434459 2025-03-11 22:52:13.094 2025-03-29 22:39:51.961 \N 2024-28 = 1BTC\n2029-33 = 0.1BTC\n2034-38 = 0.01BTC\netc\n\nAbout 1.2 BTC should be right https://example.com/ 2519 432153 432153.434459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.41048359476355 0 \N \N f 0 \N 0 162230205 0 f f \N \N \N \N 432153 \N 0 0 \N \N f \N 2025-03-18 16:19:21.233 f \N \N \N 0 0 0 0 0 0 0 442608 2025-03-18 17:31:50.932 2025-03-29 22:39:51.962 \N Price above your competitors = Price gouging\n\nPrice below your competitors = Predatory pricing\n\nPrice the same as your competitors = Collusion https://example.com/ 7583 441610 440692.441610.442608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.832047079581 0 \N \N f 0 \N 0 167133054 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 2025-03-26 03:39:22.333 f \N \N \N 0 0 0 0 0 0 0 317410 2024-12-03 15:15:58.49 2025-03-29 22:39:48.9 How do you take on a coding task or project that is out of your league? I feel like this is an important area that differentiates newer devs from experienced ones. How do you deal with the unknown? A new problem? A problem with complexities and multiple moving parts?\n\nI'm definitely still learning but when I'm faced with a tough coding task, I start by searching for the simplest example related to my problem on Google, StackOverflow, or through ChatGPT. I focus on fully understanding this basic example, breaking it down to grasp each part.\n\nNext, I rebuild the example from the ground up. This helps me ensure I know why each piece is there and how it works. It's not just about copying code; it's about learning and understanding the foundation.\n\nAfter getting the basics right, I begin adding complexity—introducing new features and refining the project step by step. This phase involves a lot of trial and error, learning from mistakes, and gradually improving my understanding and the project's sophistication.\n\nI also keep asking for help, utilizing sn, nostr, and my friends here in pleblab.\n\nWhat's your strategy for handling challenging coding tasks? \N 16289 \N 317410 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.2216131589167 0 \N \N f 0 \N 0 198559750 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:46:50.903 f \N \N \N 0 0 0 0 0 0 0 435390 2025-03-12 16:41:44.653 2025-03-29 22:39:48.9 🚩 First Stacker News CTF - NWC Debug Edition 🪲 # 🚩 **First Stacker News CTF - NWC Debug Edition** 🪲\n\nWhen we [released NWC support on Tuesday](https://stacker.news/items/423928), some people reported that their wallet indicator was stuck on red, like [here](https://stacker.news/items/423974), [here](https://stacker.news/items/424317) and [here](https://stacker.news/items/424260).\n\nWe believe it's related to [our new Content Security Policy](https://github.com/stackernews/stacker.news/blob/7065008f5da3d4282a745b18f10e482a36e70365/middleware.js#L22-L52) (CSP)[^1] which makes SN a lot more secure; especially against cross-site scripting attacks (XSS)[^2]. A CSP basically tells the browser which fonts, images, assets etc. but most importantly which scripts it is allowed to load. We tightened browser security so much that [even image uploads were broken](https://stacker.news/items/424085) for a short period after the release ([was an easy fix](https://github.com/stackernews/stacker.news/pull/817)).\n\nSince [I wasn't able to reproduce the bug with NWC](https://github.com/stackernews/stacker.news/issues/821#issuecomment-1947667988), I present you four sites with which you can test NWC if you want to earn some sats:\n\n1. https://sn1.ekzyis.com/\n2. https://sn2.ekzyis.com/\n3. https://sn3.ekzyis.com/\n4. https://sn4.ekzyis.com/\n\nAll four sites have a different CSP. Hopefully, at least in one of them NWC will work for you. If all four work, that's even better! Then I think you have no problems with NWC on SN. The most interesting reports will be the ones where some sites work and others don't. These are the data points we are looking for.\n\nThis is called a CTF ([Capture The Flag](https://stacker.news/items/373534)) since you should see a flag at the end when you followed all steps as mentioned on each site. Post the flag here so I can zap you 1k sats for a flag from each site. This means you can earn 4k sats in total if you test all four sites!\n\nA report could look like this:\n\n> sn1.ekzyis | `` | works\n> sn2.ekzyis | `` | does not work \n> sn3.ekzyis | `` | does not work\n> sn4.ekzyis | `` | works\n\n_If you don't mind sharing, please include which browser (and possibly version) and OS you are running._\n\nFor login with lightning, an LNbits instance is provided at https://lnbits.ekzyis.com/.\n\nWe recommend that you use the [test version of Mutiny Wallet](https://signet-app.mutinywallet.com/) to test NWC. If you bring your own NWC wallet, we recommend that you delete the connection in your wallet afterwards.\n\nIf you want to post something on a site for some reason (all sites share the same database) and thus need some toy sats, drop an invoice in the comments and I will pay it from my local signet node.\n\nI try to keep these sites up for the whole weekend so everyone has a chance to test them out but I am not sure how easy that will be. They are all running on the same machine. So first come, first serve!\n\n[^1]: https://owasp.org/www-community/controls/Content_Security_Policy\n[^2]: https://owasp.org/www-community/attacks/xss/ \N 8541 \N 435390 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 28.5422738235106 0 \N \N f 0 \N 0 104372208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 15:49:07.117 f \N \N \N 0 0 0 0 0 0 0 434281 2025-03-11 18:47:19.609 2025-03-29 22:39:48.902 The Iron Law of Bureaucracy - Jerry Pournelle > Pournelle's Iron Law of Bureaucracy states that in any bureaucratic organization there will be two kinds of people":\n\n> First, there will be those who are devoted to the goals of the organization. Examples are dedicated classroom teachers in an educational bureaucracy, many of the engineers and launch technicians and scientists at NASA, even some agricultural scientists and advisors in the former Soviet Union collective farming administration.\n\n> Secondly, there will be those dedicated to the organization itself. Examples are many of the administrators in the education system, many professors of education, many teachers union officials, much of the NASA headquarters staff, etc.\n\n> The Iron Law states that in every case the second group will gain and keep control of the organization. It will write the rules, and control promotions within the organization. https://www.jerrypournelle.com/reports/jerryp/iron.html 1007 \N 434281 \N \N \N \N \N \N \N \N news \N ACTIVE \N 11.7349054103756 0 \N \N f 0 \N 0 64191961 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:10.907 f \N \N \N 0 0 0 0 0 0 0 446657 2025-03-21 12:05:47.899 2025-03-29 22:39:51.962 \N disagree.\n\na good word for the payments people make on Stacker News, Fountain, and other V4V apps is useful because *these kinds of payments* simply don’t happen in the real world.\n\non the internet, everyone is transferring information. but we don’t call everything a transfer\n\n- i stream netflix movies\n- i upload photos\n- i download music\n- i text friends\n- i share posts\n\neven in payments we already use different terms depending on the types of payments.\n\n- i pay rent\n- i tip waiters\n- i fund companies\n- i bet on sports\n- i remit money abroad\n- i subscribe to a newsletter\n\nthe term “boost” is picking up steam across the small, but growing bitcoin ecosystem. if anything, the SN usage of boost is an outlier, it’s the micro-tipping action that people are associating with the word boost.\n https://example.com/ 2711 446650 446456.446649.446650.446657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.24534761069352 0 \N \N f 0 \N 0 99188842 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 10:55:46.795 f \N \N \N 0 0 0 0 0 0 0 435562 2025-03-12 19:34:54.387 2025-03-29 22:39:51.962 \N https://imgprxy.stacker.news/HgmaaPyGlHwJojd_lF9P2d5l4xYPdcc26lCU0PhWQS4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYTAuZ2lwaHkuY29tL21lZGlhL3h2dGV0OFRsZDVYa293UWVVOC9naXBoeS5naWY_Y2lkPTZjMDliOTUyd2x5OGc5b3ljYmxmYjMxYjNiNDl0MHdtaWk0MHdiYXN3MmZya3R0aiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmcmlkPWdpcGh5LmdpZiZjdD1n https://example.com/ 1493 435417 434424.435417.435562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5905606402492 0 \N \N f 0 \N 0 242055715 0 f f \N \N \N \N 434424 \N 0 0 \N \N f \N 2025-03-19 13:38:34.534 f \N \N \N 0 0 0 0 0 0 0 434604 2025-03-12 04:01:16.741 2025-03-29 22:39:51.963 \N It's about the price tracker at the top. Currently, it only supports USD. Sorry, that wasn't clear from the post. This is the issue: https://github.com/stackernews/stacker.news/issues/103 https://example.com/ 13216 434318 434278.434318.434604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.297298607101 0 \N \N f 0 \N 0 39254208 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 04:50:49.355 f \N \N \N 0 0 0 0 0 0 0 436534 2025-03-13 16:15:50.016 2025-03-29 22:39:51.964 \N ![](https://i.imgflip.com/7cme2n.jpg) https://example.com/ 9920 436395 436028.436395.436534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2794991192424 0 \N \N f 0 \N 0 146518502 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 09:39:48.188 f \N \N \N 0 0 0 0 0 0 0 448408 2025-03-22 15:33:42.413 2025-03-29 22:39:51.964 \N Two risks have emerged recently in my mind. \n1. SHA256 ASIC manufacturing is too centralized and can be secretly dominated by a monied/state interest\n2. Bitcoin POW power usage is too low, less than 10TW, and can be easily outpaced by a covert state program with a small distributed array of nuclear reactors. https://example.com/ 5809 448395 448283.448395.448408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.74891286121 0 \N \N f 0 \N 0 96799420 0 f f \N \N \N \N 448283 \N 0 0 \N \N f \N 2025-03-29 08:51:13.691 f \N \N \N 0 0 0 0 0 0 0 416239 2025-02-25 13:51:58.805 2025-03-29 22:39:48.902 What is the percentage that you use Bitcoin to settle your daily transactions? When I look back at myself before I joined Stacker News, I have to shake my head at how naive I was. Truth be told, I used to treat Bitcoin as a speculative asset and wanted it to pump to $69k and beyond so that my financial goals could be accomplished.\n\nIt took me some time but eventually, I figured that there is a group of Bitcoiners who are indifferent to Bitcoin’s price action as they have already incorporated it into their everyday life. You guys may run your own node, accept sats as payments for your businesses or support enterprises which accept Bitcoin. You are ever looking for ways to reduce your dependence on fiat.\n\nPutting aside real-world bills which must be paid for in fiat, are you satisfied with your journey to live on and off Bitcoin? If so, what made you reach this point of equilibrium in your life? If not, what are the next steps you feel like you need to take? \N 1737 \N 416239 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 29.4666405029733 0 \N \N f 0 \N 0 243767463 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 23:08:54.311 f \N \N \N 0 0 0 0 0 0 0 434242 2025-03-11 17:33:05.463 2025-03-29 22:39:51.96 \N Renting.\n\nOwning my own place gives me a huge peace of mind for the future. https://example.com/ 7760 434160 434160.434242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4442837123645 0 \N \N f 0 \N 0 151329344 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 2025-03-19 03:38:32.111 f \N \N \N 0 0 0 0 0 0 0 435193 2025-03-12 14:17:09.14 2025-03-29 22:39:51.96 \N I managed to accumulate enough sats to buy a $10 supermarket voucher from Bitrefill. Small time game, I know but it made me happy to know that there’s one thing I never have to rely on for fiat 🤗 https://example.com/ 726 433114 433114.435193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.57714778459534 0 \N \N f 0 \N 0 162340899 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 2025-03-19 07:40:08.861 f \N \N \N 0 0 0 0 0 0 0 436324 2025-03-13 13:23:00.904 2025-03-29 22:39:51.96 \N The Fourth Turning Is Here: What the Seasons of History Tell Us\n\nhttps://www.amazon.com/Fourth-Turning-Here-Seasons-History/dp/1982173734\n\nGoing through this one these days, it's an author's recent update on the original (no need to read the original one as this one is written for those who haven't read it) https://example.com/ 11454 436093 436093.436324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.8780911322314 0 \N \N f 0 \N 0 63203455 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:30:42.439 f \N \N \N 0 0 0 0 0 0 0 435956 2025-03-13 06:39:59.95 2025-03-29 22:39:51.964 \N I got in a 36 mile ride this morning. It was cold, raining and the winds were blowing from the east at 25 MPH. And I loved every bit of it.\n\nWill probably get in another ride tomorrow if and when it does decide to stop raining. https://example.com/ 19217 435912 435912.435956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.770996738517 0 \N \N f 0 \N 0 150226809 0 f f \N \N \N \N 435912 \N 0 0 \N \N f \N 2025-03-20 00:27:10.93 f \N \N \N 0 0 0 0 0 0 0 436327 2025-03-13 13:34:27.284 2025-03-29 22:39:51.964 \N the site is cute:) https://example.com/ 10280 436303 436093.436303.436327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.62099520361334 0 \N \N f 0 \N 0 241901860 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:30:32.234 f \N \N \N 0 0 0 0 0 0 0 447944 2025-03-22 09:48:51.598 2025-03-29 22:39:48.902 Becoming a flâneur Earlier this year, I finished reading Antifragile by Nassin Nicholas Taleb. I must acknowledge that it took me 2-3 months to complete it and I will probably go back to it in the future, as I feel that could obtain more from it. \n\nAt the beginning of the book IV, Taleb starts describing what optionality is and how can make things work and grow. Before getting into details in the following chapters, he describes a comparison between a tourist and a flâneur. \n\nObviously we all know what a tourist is: someone who plans the trip well in advance and sticks to the plan. Probably, this person is ticking all the boxes in the destination and does not miss a point of interest. Most likely will not modify the plan as may miss some of the main attractions. On the other hand, some of the most interesting things as connecting with locals and living the city, instead of visiting it, will be lost. \n\nOn the contrary, a flâneur may plan in advance though, once arrives to the destination, may follow their instincts and get lost in the city, without knowing clearly where is going but taking advantage of what this new city or country is offering. \n\nReading this part of the book, took me 25 years back to 1999. I visited Rome and, as you can imagine there were lots of preparations, planning and a long checklist of places to visit. \n\nThe first three days were hectic. Vatican, museums, roman ruins including the Colosseo and Foro romano, Fontana di Trevi, Bocca de la Verità, Piazza Navona…. \n\n![](https://m.stacker.news/34633)\n\n![](https://m.stacker.news/34634)\n\n![](https://m.stacker.news/34636)\n\n![](https://m.stacker.news/34638)\n\nBy the end of these initial days, we were exhausted and, at some point, nor even enjoying it. \n\nThen, in the afternoon of the fourth day, we decided to stop for a coffee. It looked like just a simple bar. No tourists, just some locals taking a coffee and having a conversation. We stayed. The whole afternoon. Just talking, enjoying the place and the coffee. \n\n![](https://m.stacker.news/34640)\n\nThen, we moved to Piazza Spagna, remained sat there until sunlight went. \n\n![](https://m.stacker.news/34641)\n\nWe realized that this was our way forward. From that day onwards, we avoided queues, enjoyed meals and coffees. Then, we visited places though relaxed, not looking to the watch. Sitting in a terrace, enjoying environment close to the Pantheon. \n\n![](https://m.stacker.news/34642)\n\nVisiting a park (Villa Borghese) and spending the day out and about. \n\nWithout knowing, we were transforming in flâneurs. Not only in Rome but also with all trips that came afterwards. \n\nWhen we returned our friends asked for this and that place, some of them were missing. No regrets. This is a reason to go back again, and I hope it will not take long. \n\nPlease notice that all the credit for the photos goes to my wife. I have just taken pictures from her 1999 album. \n\n![](https://m.stacker.news/34643)\n \N 16432 \N 447944 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 9.1693080817798 0 \N \N f 2139242330 \N 20 145411006 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 09:04:42.234 f \N \N \N 0 0 0 0 15 0 0 435138 2025-03-12 13:45:22.735 2025-03-29 22:39:51.96 \N Swan Bitcoin custodies with Ripple https://example.com/ 16788 435128 435128.435138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.50045244137285 0 \N \N f 282987213 \N 2 135370817 0 f f \N \N \N \N 435128 \N 0 0 \N \N f \N 2025-03-19 10:09:48.442 f \N \N \N 0 0 0 0 1 0 0 436029 2025-03-13 08:48:00.22 2025-03-29 22:39:51.96 \N I recommend reading some of Pamela Morgan's posts about bitcoin inheritance:\n\nhttps://medium.com/@pamelawjd \n\nWhat you are describing sounds to me a bit like a "family office" fund that happens to be invested in BTC, and you are looking for a relatively decentralized way for the family to manage custody of the BTC held in the fund. This might be an easily understandable way to introduce the idea to a lawyer if you seek council about this (and I recommend that you do -- I am not a lawyer).\n\nRegarding wallet options, you could check out [Nunchuk](https://nunchuk.io/) which is one of the easier-to-use multisig wallets and it is open-source which is nice from an auditability perspective. Electrum, Sparrow, and Specter are all good options as well but a bit more advanced usability-wise. Check them out and you can decide for yourself what is best for your situation. See also https://btcguide.github.io/ for general multisig tips. https://example.com/ 13378 436028 436028.436029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5547004769402 0 \N \N f 1994880323 \N 18 181338571 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 10:16:01.779 f \N \N \N 0 0 0 0 2 0 0 448476 2025-03-22 16:12:32.299 2025-03-29 22:39:51.96 \N Um so like Pheonix has been a pretty good wallet for me. I started using blixt to try to be more advanced with it. But generally its like a receipt list of unbroadcasted transactions.\n\nYou know assume I open a channel with you for example.\n\nI own 250,000 sats. We put those sats in a joint account that both of us have to sign off on to move the funds out of it. One of the things we both sign off on during the creation of the joint account, is if the receipt list is presented, the funds are moved to our individual accounts in accordance with the finalized balances. If the other one of us presents a receipt list that has an item on it that the other list doesn't have, then ALL funds go to the person who presented evidence the other was trying to cheat.\n\nI say "Joint account" but there are no counter parties, its all just a script that acts automatically so its not exactly accurate.\n\nSo now, we can instantly transmit to each other with no fees, because all we're doing is updating a receipt list that both of us have.\n\nSo lets also assume you have a channel with someone else. It may help to know that there are always two balances in each channel\n\nsend/outbound receive/inbound \n250,000 sats, 0 sats => 0 sats, 250,000 sats\n\ninbound liquidity is sats that you own in our joint account. Outbound liquidity is sats that I own in the joint account. So lets assume I'm trying to pay a 3rd person\n\n250,000 sats, 0 sats => 0 sats, 250,000 sats => 0 sats, 250,000 sats\n\nI need to route through you since I don't have a channel with this 3rd person (I don't have a joint account with them that I can just update a receipt list.), but you have a joint account with them and you can update your receipt list. So you and I update our receipts and you and this other person update your receipts. \n\nStep 0\n\n250,000 sats, 0 sats => 0 sats, 250,000 sats => 0 sats, 250,000 sats\n\nStep 1\n0 sats, 250,000 sats => 250,000 sats, 0 sats => 0 sats, 250,000 sats\n\nStep 2\n0 sats, 250,000 sats => 0 sats, 250,000 sats => 250,000 sats, 0 sats\n\nNow its a little more complicated than that because the cryptography involved doesn't allow you to just keep the sats if you decide not to route them. Someone who understands in more verbose detail can explain in more verbose detail lol. https://example.com/ 17797 447944 447944.448476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5766294539882 0 \N \N f 0 \N 0 100206131 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N 2025-03-29 15:59:39.3 f \N \N \N 0 0 0 0 0 0 0 402995 2025-02-14 10:36:17.745 2025-03-29 22:39:51.96 \N Trying to decide if it is better to support lots of content or a few really good pieces of content. So the question is should I zip lots (10 sats) or zap a little (50+sats)?\n\nThis isn’t about the algorithm but more of a personal question about giving value for value.\n\nAnd as an aside I am always surprised how few people donate to the rewards fund each day. https://example.com/ 4624 402955 402674.402955.402995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5341083457331 0 \N \N f 25318733 \N 2 199405921 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401472 2025-02-13 04:07:53.28 2025-03-29 22:39:51.96 \N If i write 08:20 you read it as 20 minutes past eight in the morning.\n\nIf i write 813785 you have no idea it is the block height until specified.\n\nWhat unit/denomination or whatever could we use to understand it at a glance? bh?\n\n813785 bh\nbh 813785\n...\nb813785h? https://example.com/ 11999 401462 401452.401462.401472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4368522959747 0 \N \N f 163506253 \N 1 149352115 0 f f \N \N \N \N 401452 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441003 2025-03-17 17:44:17.294 2025-03-29 22:39:51.96 \N Thank you. Trying to use the form a little more. https://example.com/ 891 440988 440988.441003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.58057526378018 0 \N \N f 10280250 \N 1 231702057 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 419958 2025-02-28 11:41:08.065 2025-03-29 22:39:48.904 MONEY CLASS OF THE DAY: “The Cost of Living” Is a Stupid Phrase Background: I watched the [No More Inflation](https://nomoreinflation.com/) documentary (https://stacker.news/items/809613/r/denlillaapan?commentId=810697). I would urge everyone to skip the first 20 minutes—or, for the purposes of this MONEY CLASS, _only_ watch that. \n\n---\n\nThree levels to why this phrase is nonsense: \n\n- “**Living**” is a variable and subjective target that seems to mean all manner of things to different people—certainly across time as well. “Living” according to 1960’s standards would be widely considered squalor if it happened today. (Implied quality-adjustments)\n- “**Cost**” is an economic term meaning that which must be given up—but people using this phrase use it to mean the number of fiat digits one has to give up for certain, unspecific, goods and services. If rent and eggs are $1 more this month than last month, the "cost" of "living" has increased—no matter what else happened in the economy, to the person's assets or their salaries, to the real-world supply and demand adjustments in the underlying markets. \n- “**The**,” there is no unitary, obvious, generally agreed upon cost of living that would warrant the use of a definite article.\n\ntl;dr = **The number of fiat units don't matter**. (Money is a veil.) This can best be illustrated using foreign currencies: \nLook, the Canadian currency (CAD) now trades at **1.42** to the American dollar. If an average American's grocery store, say along the Canadian border, decides to price all their goods in Canadian dollars instead of American dollars, the sticker prices of everything will increase about 42%. _Did the food component of the standard of living for a border-dwelling American just decrease by about 42%?_ Did everything in the store just get 42% more expensive?\n\nNo, of course not. They just have to do some more mental gymnastics now that they're grocery shopping, comparing their [assets (wealth) and salaries (income)](https://stacker.news/items/809392/r/denlillaapan) in US dollars to the grocery store prices in Canadian dollars. Whatever. \n\nThis is not a "cost of living."\n\nNow expand this over time instead of across currency/jurisdiction: 2024 America vs 1970 America. Same thing. \n\n---\n\nThe filmmakers listed various nominal quantities: public debt in 1970 vs 2024; house prices in 1970 vs 2024. _As if nothing else changed in between_, as if the nominal quantity of debt 55 years ago has _any_ meaning today. They displayed the crashing chart of “the dollar’s” purchasing power, a chart I would like to see banished from the world:\n> The implication of the 96% statements is one of a huge loss—that governments have skimmed hard-working regular people of their just dues. Cash holdings surreptitiously declining in value must have harmed someone. Intrigued by the statement, I wondered where I could find the victim of this alleged swindle: where is the person who held dollar bills over a century and, stoically, faced this loss? \n(“[Who Bears the Burden of the Dollar’s Falling Purchasing Power?](https://thedailyeconomy.org/article/who-bears-the-burden-of-dollars-falling-purchasing-power/)” _The Daily Economy_, Joakim Book )\n\nAnd the interviewees in the documentary talked about how wonderful it would be if prices didn’t change ($1 milk today and the next year again $1): “when there is no inflation, there is no struggle; and people can live with dignity and be themselves.” I have lots to say about that, most pressingly: life on a hard money standard will _not_ ensure that prices don't change (https://stacker.news/items/749912/r/denlillaapan). \n\nSeb Bunney, the author of _The Hidden Cost of Money_, showed up with his [standard quips](https://mises.org/mises-wire/monetary-systems-and-economic-outcomes-yes-they-are-related), conflating the real things—wealth and income—and the nominal—the monetary unit. (=everything would be better if we had higher real incomes and more wealth – yeah, no shit Sherlock). \n\nComing away from the documentary, _“What tha hell is a dollar?”_ is the reasonable question.\n\nNow, I _know_ (or at least think I know) what a satoshi is—it’s the smallest denominator of bitcoin, a quantity of digital money-things in a UTXO or custodial wallet. There is a certain number of them around, objectively limited and verifiable, and at some cryptographic level _I know what they are_.\n\nI don’t always know what they _do_: Their “value”—i.e., purchasing power; i.e., command over real goods and services—changes over time. The Stacker News ticket tells me that 957 of them make one dollar; I have some rough reference points of how dollars this or that thing trades for today, but most directly I have to do some mental gymnastics to “translate” that into the everyday goods I acquire at my local Icelandic-króna-denominated grocery story (1 USD = 138 ISK); a large cartoon of eggs will set me back some 7,000 satoshis.\n\nNow I know what a dollar (well, 7 of them) can _get me_... but _what tha hell is a dollar?_ All I, or any consumer, cares about is translating what we have into what we can get. \n\nMost major currencies, at some point in their life cycle, were measures not of value but of weight—the British pound mostly obviously so. The dollar’s history as a term is more obscure, derived from the name of a specific silver coin. \n\nHere’s another revelation: the dollar is not a thing, not a fixture of the universe, not a fixed portion of the permanent money supply. \n---\nThe faster Bitcoiners get the hang of this the better (and the less silly they look in fiat economists' eyes): the dollar is not a thing, _it_ doesn't matter. What matters is the relationship between the number in your pocket/savings account/monthly salary and number for the things you buy. \n\nIt’s a theme I come back to over and over, in part because Bitcoiners are prone to saying asinine things about this (and since I feel part of this tribe, it becomes my obligation to discipline errors—or at least keep their extravagances in check). Also, because understanding what money does and how a monetary system operates (and importantly how various monetary regimes differ from one another, https://stacker.news/items/749912/r/denlillaapan) is at some level the most fascinating thing about studying money.\n\nThis is what I wrote in a previous MONEY CLASS (https://stacker.news/items/793537/r/denlillaapan):\n\n> Money is merely an **intermediary between production and consumption that is separated by time, place, and between individuals.** You’re not paying your grocery bill or rent with some abstract device; you’re producing value for your employer and handing over some embodiment of that value to the grocer or landlord. You’re paying for your bread and butter, not with imaginary constructs or digital make-belief but with the sweat of your labor—just with an intermediary step. This is why economists going back at least to Irving Fisher think of money as a “veil” of underlying economic transactions. The real and the nominal.\n\nMoney is the conveyor belt on which production moves; it is the way in which products get circulated and distributed, as [Adam] Smith so elegantly states. Yet it itself produces nothing.\n\nExample: Imagine you pick 100 apples a day for an orchard farmer and he pays you 66 apples in wage—if you maxed out your consumption on only apples, you could eat 66 of them (_ouch, stomach ache_). If you become more productive, get a promotion, or put in more hours of work, maybe you could increase your apple-picking to 200, and the farmer pays you not just proportionate to your value-add (132) but 150 to account for your increased apple-picking responsibilities and efforts. **Your real take-home wage is higher,** even though your hourly wage might not be. \n\nNow, let's use money instead: apples sell to a worldwide market for $1, and you're paid $66 a day. If you wanted, you could max out your salary on apples and get the same real quantities as before. Instead of a promotion, we introduce an [Angel Gabriel-type money printer](https://mises.org/power-market/angel-gabriel-and-monetary-inflation), who sneaks into everyone's wallet and market prices and doubles everything. The next morning you show up and see that apples sell for $2; _fuck, the cost of living has gone up like crazy! Let's make a documentary!_ What you didn't pay too much attention to was that the orchard farmer will pay you 132 units for your work (either today, or with a contract negotiation lag or COLA-adjustment, tomorrow; or dynamically via you quitting and work for a competing farmer who has bid up the salary for apple pickers to 132-something). \n\nHere's a cognitive dissonance that lots of people walk around with: when _my income_ increases in fiat numbers, it's because I'm becoming better and more productive (real factor); when the grocery store increases its price, it's because inflation (nominal). But flip the examples and you spot the error: To the grocery store, its higher sticker prices are higher income, perhaps because he's more productive or has made a nicer store with goods more people want; and to him, the salary he must pay the workers to keep doing their same job is higher (_OMG, inflation!_). \n\nWe misinterpret the real-nominal signals here, with both parties misunderstanding that usually _both of them_ stem from the money unit changing. **You're not as good as you think you are,** etc. \n\nPut in the milk example of the lady in the documentary: if the price of milk was 1 unit the next year too, that _probably_ means your unit income was the same as last year (and the year before, and the year before). Let's say she lost her job, or the new job she got only earned her 80% of what she used to. Would she still say that the cost of living has remained stable and there's no struggle and she can live with dignity? Probably not, because the _real_ matters. \n\nI have lots to say here about [monetary misperception](https://www.econstor.eu/bitstream/10419/264720/1/oenb-wp-128.pdf), but we'll table it.\n\nSUMMARY\n---\n\nEconomists think about these two different spheres—the nominal and the real—as separate domains, which gives rise to many paradoxes and much confusion. The tl;dr is that the real captures something underlying, _beneath_ the monetary sphere (the apples and the apple orchard), that happens and exists regardless of what the money is doing; and the nominal is the gateway, the veil, the platform, the bridge in which we engage with the real. \n**If prices change, it could be because the money itself is changing (first example) but nothing real has taken place; or it could be because of a change in the underlying (real but not money). Or both, and we can't accurate decipher which one; or they come to us with a time lag, and we misattribute the changes.**\n\n\n\n\nThat's today's little money lesson\nPeace, \n/J \N 16406 \N 419958 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.7100220416772 0 \N \N f 224957737 \N 1 82013885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410678 2025-02-20 15:49:52.168 2025-03-29 22:39:51.96 \N What kind of data points about the lightning network are most important to you as an investor? https://example.com/ 1162 410655 410358.410655.410678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0479550468767 0 \N \N f 94877161 \N 1 36095342 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446055 2025-03-20 22:19:45.01 2025-03-29 22:39:51.96 \N For simplicity now: I would vote for a one time paid “follow fee”\n\nCreators could set and change the fee.\n\nSet a low fee to attract followers and gradually increase fee as your reputation for quality content increases.\n\nFuture enhancement: Allow creators to set subscription follow fees. Users would pay on a monthly basis for ability to follow creators.\n https://example.com/ 7913 445964 445953.445964.446055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7619362214127 0 \N \N f 360711374 \N 4 31690197 0 f f \N \N \N \N 445953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422933 2025-03-02 19:34:51.089 2025-03-29 22:39:51.96 \N Lame video from a Keynsian economist. I'll debunk his 4 reasons he doesnt hold bitcoin.\n\n\tReason #1 You can't apply any model to measure bitcoin's intrinsic value.\n"Value is not intrinsic, it is not in things. It is within us; it is the way in which man reacts to the conditions of his environment. Neither is value in words and doctrines, it is reflected in human conduct. It is not what a man or groups of men say about value that counts, but how they act." - Ludwig von Mises\n\nStop using the term "intrinsic value." All value is imputed from the subjective valuations of consumers on the market. The term "intrinsic value" can only serve to confuse every conversation about monetary theory.\n\nWhat is the intrinsic value of an apple? To a starving man, he is willing to give his life savings for it.\n\n\tReason #2 - bitcoin is not a good substitute to replace USD. \nMoot point. It doesn't need to replace any fiat. As long as it is an available option that works in addition to fiat, a flavor of Gresham's law takes effect, and people will choose the currency to save, and which one to spend.\n\n\tReason #3 If bitcoin is a good store of value, it won't increase in price over time.\nI have no idea what point he was trying to make here. He makes a comparison to gold, and how it hasnt grown by double-digits. Perhaps in comparison to fiat? \n\n\tReason #4 "There is a lot of dumb money in bitcoin"\nToo many people are asking him to sponsor their company in his videos. There are too many noobs promoting bitcoin, so it makes him feel uncomfortable. No understanding of the fundamentals, and a reluctance to learn more himself because he thinks people are dumb. Does this seem reasonable? https://example.com/ 16939 422918 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422918.422933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6097682771661 0 \N \N f 825382041 \N 5 203143539 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448314 2025-03-22 14:39:39.187 2025-03-29 22:39:51.96 \N SNL banner is gonna be awesome https://example.com/ 1718 448263 448263.448314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4530176173071 0 \N \N f 209818135 \N 1 142560538 0 f f \N \N \N \N 448263 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427254 2025-03-06 08:49:04.502 2025-03-29 22:39:48.904 [New Pod] Designing Jack's fav shirt & Creating open music library w/ Sam Means I sit down with Sam Means, founder of [lightning.store](https://lightning.store) and [Wavlake](https://wavlake.com) for a fascinating conversation about the future of the music industry! \n\nListen on [Fountain](https://fountain.fm/episode/x3v4yu6AuXsmYvdljKZe)\nOr [Apple Pods](https://podcasts.apple.com/us/podcast/hivemind-ideas-from-the-edge/id1731637285) \nOr [YouTube](https://youtu.be/FGimjeyTiwY)\n\nHere are a few topics we discuss: \n- The genesis of lightning.store\n- Parallels between Bitcoin and the punk/DIY scenes \n- Max’s dad - indie artist who made some cool trippy nostr shirts (which Max is wearing during interview)\n- Sam’s NOFX Nostr shirt (which Max wears frequently)\n- How Sam decides what shirts to make\n- Making Jack’s favorite shirt, seeing it on the Super Bowl, and stress testing Sam’s Lightning node + btcpayserver setup \n- Sam needs a Lightning Shopify app that works (opportunity for listeners!) \n- Sam got started making a first website and forum for the Weezer fan club\n- Sam is the consummate entrepreneur: he just does the things that need to be done \n- Sam’s education was coming up in bands and working venues \n- Pinkerton - the Weezer album changed the course of Sam’s life\n- Can a band be big and not suck?\n- Why the music biz generally sucks for bands\n- The magic of finding a new band that “flips your lid” (Sam’s new favorite phrase)\n- The magic of David Bowie and artists who can reinvent themselves \n- Finding the weirdest 10cc record in Japan \n- A history of the interplay between music and technology from pre Internet to p2p file sharing to streaming to what’s coming next\n- Scott Joplin and piano rolls (artists were getting screwed from day 0)\n- Lars from Metallica will forever be known as the guy who wants to put 12 yo music fans in jail\n- Music Like Water (2005, Forbes) - early article explaining how to charge for music like a utility\n- The monthly subscription fee for everything was the first step to a new idea \n- ~97% of artists on Spotify make approximately nothing. If this market can make anything somewhere else they’re likely to try it \n- Bitcoin is the real occupy Wall Street; Wavlake is the real occupy Spotify \n- Even though big artists are making money, they’re still leaving a lot on the table with all the middlemen \n- Wavlake is changing incentives so super fans can give uncapped support for the value they receive \n- We jumped into the internet super fast. Now Nostr is helping us rearchitect the web by letting people travel through the Internet and bring their social graph with them\n- Now Wavlake and Value4Value is doing this for Music; the industry was almost completely uprooted in the last wave, but ultimately failed; now we have another shot\n- The role of the curator in the new more p2p internet world \n- Wavlake’s grand plan: it’s not a music player with zaps, but rather an open music catalogue that disrupts all of music distribution \n-Bandcamp and SoundCloud are examples of building a new library from the ground up\n- Wavlake is following their example with the key difference that their library is not confined to one app but open to anyone (e.g. Fountain)\n- How does Wavlake compete with Spotify - they don’t \n- The magic of interoperable networks and instant payments (good clip around 1:10)\n- Artist still only had to upload track once but the potential for where that track can live and get monetized is unlimited \n- The negotiations between all parties is transparent unlike current opaque set of deals \n- We’re making podcasting for music (another good clip around 1:14)\n- Wavlake’s open music catalogue is inspired by thePodcasting 2.0 spec\n- Developer splits incentivizes developers to try adding and monetizing music in new ways \n- Now music can live in all kinds of different experiences (good clip around 1:16)\n- Interoperability means your social graph and comments follow you to any app you use! A comment in Wavlake shows up in Fountain \n- LN Beats and RSS Blue also working interoperably\n- Sam is not afraid of competition, in fact he’s paying to incentivize it \n- One artist monetizing via bitcoin and value4value will start the tsunami\n- Check out the Forbes article on Value4Value\n- Ainsley Costello might already be the first big artist. She had made about $750 over years across Spotify 60+ other services. In one year, she’s made >$12k on Wavlake, Fountain, and other Lightning V4V apps. She was the first artist to earn >1M sats \n- If 97% of artists can make enough to do music full time in value4value land, it’s game over for traditional music industry. And if they can do well, imagine how well the big artists can eventually do when they cut out the middle men\n- Superstars like Kanye, Snoop Dogg, and James Blake are just as pissed about the current state of extractive music industry \n- Average people may not understand exactly how they’re getting fucked, but they know they’re getting fucked with the current monetary and business system - largely because every system lacks transparency \n- In an open world, companies like Wavlake will need to add valuable services (e.g. licensing) on top of their library to compete and win\n- ASCAP (what a name lol) fails to live up to their promise to monitor song uage and pay artist royalties \n- Max's ideas for nostr business models: #1 remix economy - stemstr for everything and #2 rise of the curator or DJs for everything - getting curators paid for their good taste \n- Wavlake’s plan to build split marketplaces for music and live radio shows where hosts get paid\n- Value4Value music podcasts are taking off on Wavlake and Fountain \n- Sam owns several successful businesses around the music industry (lightning.store, merch, label, venue, zine, wavlake). Each business feeds into this growing indie empire \n- Wastoids is crazy cool video zine; Sam and his colleagues interview cool indie bands like People Under the Stairs and Red Cross\n- Check out his pods like Click Vortex, a crazy show called Midnight Music Review in the Attic with an Argentinian dude dressed like a wolf presenting new music in his attic, and a Friday music show inspired by MTV News\n- Sam starts experiments that could feed into each other and scales them as they work \n- His buddy works at Aquarium Drunkard and gets major indie darlings to come on show\n-Goal is for Wavlake to become one of the channels on DistroKid that will catch artists’ attention when they wonder why they made $700 on Wavlake and only 9 cents everywhere else; Wavlake already has simple onboarding for artists, now just needs a simple onboarding for fans \n-Open library is already 10k+ tracks and growing, that’ll just keep getting better \n-Sam’s team of 28 pitches in all over his indie music empire \n-Sam’s secret: he doesn’t know what he’s doing, he just does what needs to be done! His intent was never to run a business, he just wanted to be in a band haha\n-Sam’s been doing Value4Value at HelloMerch for 17 years. He doesn’t make a penny until something sells; Wavlake will scale in a similar fashion \n https://fountain.fm/episode/x3v4yu6AuXsmYvdljKZe 20825 \N 427254 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.4789021975969 0 \N \N f 301019898 \N 2 8713973 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443712 2025-03-19 13:30:16.258 2025-03-29 22:39:48.904 Civil unrest in Canada's future? It's certainly a shocking headline. I thought for a moment @thebitcoinbugle might have written it. \n\n**Secret RCMP report warns Canadians may revolt once they realize how broke they are**\nhttps://nationalpost.com/opinion/secret-rcmp-report-warns-canadians-may-revolt-once-they-realize-how-broke-they-are\n\n \N 15806 \N 443712 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.3544392471292 0 \N \N f 2385424902 \N 18 114813913 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 07:24:58.989 f \N \N \N 0 0 0 0 6 0 0 437512 2025-03-14 15:12:21.107 2025-03-29 22:39:51.961 \N Stacker News Comments https://example.com/ 7668 437233 437233.437512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.92225095851516 0 \N \N f 647673036 \N 4 27673647 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424283 2025-03-03 23:56:33.56 2025-03-29 22:39:51.961 \N Those are my last sats - got to refill.\n\nSpend them wisely!\n\nYou helped me on my journey. https://example.com/ 15049 424277 417848.423740.424277.424283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63974026379116 0 \N \N f 230420962 \N 1 177753013 0 f f \N \N \N \N 417848 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443774 2025-03-19 14:07:35.394 2025-03-29 22:39:51.961 \N Are you drawing lines on a chart in stacker.news? People don't tend to draw lines on charts on stacker.news.\n\nAfter reading this:\n> I’ll go ahead [...] and say we’ve just experienced the final low for bitcoin. \n\nand this:\n> But now that we’ve seen the tail whip, we can know with much more certainty that the low is in, as there is now a surplus of latent energy ready to push prices higher more quickly than off a sideways churn.\n\nI have a question: I assume you are leveraged-to-the-tits long on Bitcoin, right? https://example.com/ 21401 443614 443593.443614.443774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.88295663840044 0 \N \N f 317564672 \N 5 134536010 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434952 2025-03-12 11:12:10.446 2025-03-29 22:39:51.961 \N Getting a Cowboy hat is easy, maintaining it is the problem\n https://example.com/ 14515 434795 434795.434952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0499030068861 0 \N \N f 222437421 \N 1 148346843 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 06:21:14.146 f \N \N \N 0 0 0 0 1 0 0 446961 2025-03-21 14:50:31.825 2025-03-29 22:39:51.961 \N HOLY SHIT IT ACTUALLY WORKED\nWE ACTUALLY KEPT SOMEONE FROM GETTING REKTED BY SHITCOINS https://example.com/ 627 446927 446313.446884.446898.446927.446961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5947514132224 0 \N \N f 712450309 \N 5 65851431 0 f f \N \N \N \N 446313 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3762 2022-11-09 17:57:52.203 2025-03-29 22:39:51.961 \N Fountain.fm! https://example.com/ 6616 3760 3758.3760.3762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.39530762524722 0 \N \N f 130034473 \N 1 10550813 0 f f \N \N \N \N 3758 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 364153 2025-01-10 20:52:14.626 2025-03-29 22:39:48.905 France, Russia, & The CFA Franc I had never heard of the CFA Franc until I started reading Alex Gladstein's books https://alexgladstein.com/home/books/\n\nIt looks like French neo colonialism in Africa may be coming to an end soon, and that end may not be pretty. For the past few years, many of these African governments have experienced military coups. These include Niger, Gabon, Burkina Faso, Chad, Mali, and Guinea. The anti-French sentiment is understandable and getting more intense. To get a good sense of the history of the region, as well as a synopsis of recent events, watch this video. I admit the title might be a bit sensational and click baity, but I don't know the reality on the ground. \nhttps://youtu.be/fiD24uEvY1U\n\nRecently there has been talk of the creation of a new West African currency to replace the CFA Franc. \n https://allafrica.com/stories/202403150007.html\n\nThe Russian mercenary Wagner Group is supporting the anti French faction. \n\nI'm suspicious of videos like this, though I know the CFA can't be seen as anything less than an economic time bomb. \nDo any stackers have personal knowledge of the current situation?\n \N 9421 \N 364153 \N \N \N \N \N \N \N \N movies \N ACTIVE \N 3.6287518380751 0 \N \N f 54262007 \N 1 214174042 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407790 2025-02-18 11:32:24.915 2025-03-29 22:39:48.905 Julian Assange wins right to appeal against extradition to US \N https://www.theguardian.com/media/article/2024/may/20/julian-assange-wins-high-court-victory-in-case-against-extradition-to-us 4650 \N 407790 \N \N \N \N \N \N \N \N science \N ACTIVE \N 2.0680101420503 0 \N \N f 259334895 \N 2 9833012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404139 2025-02-15 15:23:17.249 2025-03-29 22:39:51.961 \N Later this month I am hosting a Bitcoin workshop in Tokyo for beginners (In Japanese! 😱) on Bitcoin basics, including why Bitcoin is important, wallet and self-custody fundamentals, and an overall general intro. \n\nWith the failure of the Yen here I am really hoping to spread the word about Bitcoin and how people can custody it themselves.\n\n[Here is the link to the event! ビットコインがもたらす価値の変換 ワークショップ #1](https://peatix.com/event/4066426/view) https://example.com/ 1833 404131 404095.404131.404139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1347576719115 0 \N \N f 75086699 \N 2 36065226 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451402 2025-03-24 14:34:46.331 2025-03-29 22:39:51.961 \N 🫡 https://example.com/ 1737 451395 451395.451402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.69405712403847 0 \N \N f 351654465 \N 3 21162012 0 f f \N \N \N \N 451395 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421194 2025-03-01 13:38:00.911 2025-03-29 22:39:51.961 \N Controversial take…\n> Microstrategy is the Macrostrategy for Uncle Sam 🇺🇸 https://example.com/ 7809 421082 421082.421194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1963938448352 0 \N \N f 237044302 \N 2 45075403 0 f f \N \N \N \N 421082 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 335562 2024-12-19 19:49:15.297 2025-03-29 22:39:51.961 \N ETH will not die from collapse. It will die a slow death. They are running out of narratives to pump it. ETH the asset will likely get some interest as a high beta to Bitcoin play (which is moronic but how the algos currently trade it) but unlikely we will see organic platform growth with the ICO, NFT and Defi bubbles all having popped. \n\nThey are between a rock and hard place in terms of staking withdrawals. If they unlock during a bear market the price will collapse but if the bear market is prolonged and they don't unlock they will lose all credibility. \n\nThere is also the looming question of regulation. Powerful forces want ETH to be regulated as a commodity by CFTC but the collapse of FTX has shone quite a light on the folks in congress who were being paid off by Sam and other shitcoin promoters to allow the regulatory arbitrage of proof of stake protocols to continue and thrive. It may take years for the SEC vs CFTC oversight debate to play out or it could come swiftly, who knows. Another potential outcome is both bodies would have some regulatory oversight over "crypto" or they create some new regulatory body (bureaucrats love more senseless bureaucracy). Although I would disagree with this, I could see some middle ground where ETH is declared a commodity but staked ETH a security. This seems ridiculous because of unnecessary complexity but that's precisely the type of thing bureaucrats do. \n\nI very much hope this past boom was the final "crypto" bull run. I don't expect it all to go away. Amongst 8 billion people there will be any number of millions of fools, scammers, traders, arbitragers, technologists who will keep the system alive but without the oxygen of mass attention and new entrants the fire is unlikely to spread. Hopefully. \n\nThat's my 2 sats. \nHappy stacking!\n\nGR https://example.com/ 1010 335484 335484.335562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7129032995026 0 \N \N f 1737903933 \N 15 42258631 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447071 2025-03-21 15:41:38.585 2025-03-29 22:39:51.962 \N https://www.lightningnetworkstores.com/ https://example.com/ 20829 446745 446371.446745.447071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.46259442599944 0 \N \N f 135333939 \N 2 42630644 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443581 2025-03-19 12:27:03.162 2025-03-29 22:39:51.962 \N Bolt Card is now\n\n- available worldwide\n- no KYC required\n- open source (MIT license)\n https://example.com/ 16830 442982 442982.443581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.52251644759787 0 \N \N f 272956904 \N 2 235269610 0 f f \N \N \N \N 442982 \N 0 0 \N \N f \N 2025-03-26 05:46:17.624 f \N \N \N 0 0 0 0 1 0 0 435398 2025-03-12 16:46:07.414 2025-03-29 22:39:51.962 \N We've actually been working on new clip video export formats which should be live at some point later next week:\n\n@Undisciplined would love to get your feedback on these:\n\n---\n\n- **square** - https://storage.googleapis.com/fountain-fm-temp/video/jeff-bezos-on-space-infrastructure-for-future-generations---square.mp4\n- **vertical** - https://storage.googleapis.com/fountain-fm-temp/video/jeff-bezos-on-space-infrastructure-for-future-generations---vertical.mp4\n\n---\n\nwill see if we can get an embed format done\n https://example.com/ 621 435314 435314.435398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.987469014084361 0 \N \N f 175594436 \N 1 176265720 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:43.06 f \N \N \N 0 0 0 0 1 0 0 410481 2025-02-20 13:57:19.061 2025-03-29 22:39:51.962 \N Opened an issue on GH, hope it helps!\n\nhttps://github.com/stackernews/stacker.news/issues/884 https://example.com/ 19199 410474 410409.410428.410434.410474.410481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.189688243033 0 \N \N f 136580312 \N 2 43844810 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458357 2025-03-29 08:19:53.331 2025-03-29 22:39:51.962 \N I spend sats everyday. I get sats everyday. Some days more outflows than inflows other days Vice versa. I HODL some sure but I’m always looking for ways to spend! https://example.com/ 3745 458342 458227.458241.458248.458276.458294.458299.458341.458342.458357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.04400417921768 0 \N \N f 18810385 \N 1 41002071 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447657 2025-03-22 01:54:32.815 2025-03-29 22:39:51.962 \N Great sharing. I really like how empowered I feel, like I have a role to play in expanding SN’s presence. Glad to be part of the exclusive 27 Stackers who have cowboy hats that span more than 30 days haha\n\nIn my humble opinion, I think attracting newbies is not the problem. Here are my results after a few targetted posts:\n\n![IMG_0854.png](https://m.stacker.news/16417)\n\nAs you can see, retention is the problem. Why do newbies come but not stay? I guess that a check-in survey be sent to their email accounts, soliciting feedback about what they like n dislike about SN, as well as what SN can do to make them engage actively. Only then can we spot some patterns and address our up-scaling efforts accordingly.\n\nTo motivate people to do the survey, perhaps a 1000 sats bounty will be given to successful completion of the survey. I wouldn’t mind contributing to this bounty pool; I’m sure others will gladly do so too\n\nMy two sats’ worth https://example.com/ 19087 447618 447618.447657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0505930135782506 0 \N \N f 448411937 \N 2 218725551 0 f f \N \N \N \N 447618 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458397 2025-03-29 08:50:46.032 2025-03-29 22:39:51.962 \N https://metadata.nostr.com/ might work https://example.com/ 14381 458378 454525.454535.454668.454691.458368.458378.458397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5492312301223 0 \N \N f 383015011 \N 3 89579749 0 f f \N \N \N \N 454525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435967 2025-03-13 07:10:08.908 2025-03-29 22:39:51.962 \N A garden\n\nGrow some food, grow some flowers, grow some soil, grow the ecosystem. https://example.com/ 16653 435944 435944.435967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4901616479884 0 \N \N f 671973583 \N 3 190214451 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 00:54:39.472 f \N \N \N 0 0 0 0 1 0 0 458299 2025-03-29 07:17:39.32 2025-03-29 22:39:51.962 \N You say you're using DLCs and payouts of Lightning. I don't see how you're doing that. The app has no wallet or anything. It seems like a normal custodial lightning app reliant on the website to dictate who gets the money https://example.com/ 11873 458294 458227.458241.458248.458276.458294.458299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9525393745664 0 \N \N f 633973652 \N 7 73768994 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 410449 2025-02-20 13:37:46.345 2025-03-29 22:39:51.962 \N To be honest, this was the first thing that went through my head when I saw Amboss for the first time. \n\nThe only thing I would use here is accessing the publicly available features in a private browsing window over VPN, and even that has its risks.\n\nYou should post this in the Plebnet Telegram since they are pretty big on amboss over there. https://example.com/ 17455 410435 410311.410435.410449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.65109000703502 0 \N \N f 230646197 \N 1 214224696 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416648 2025-02-25 18:33:37.093 2025-03-29 22:39:48.905 Bitcoin Pioneers I enjoy watching slum porn on youtube. Here is an [example](https://www.youtube.com/watch?v=j1zi2QwpOlc&t=2330s) of what I’m talking about. I watch these videos because I cannot believe the decay and degradation of the United States during my lifetime. I appreciate what I have more after seeing how many of my fellow citizens live.\n\nAs a bitcoiner, I spend a lot of time thinking about El Salvador, the continent of Africa, and other places throughout the world where people can benefit from bitcoin adoption. For some reason, I have had a blind spot about my own country.\n\nIt occurred to me that one of these urban, suburban or rural slums in the US would be perfect as a locale to start a bitcoin community. Housing stock is available and extraordinarily cheap in some locations (less than $1000 for a house), property taxes are very low, and the infrastructure, though crumbling, already exists. I remember living in Brooklyn, New York in the 1980’s and 1990’s when intrepid young people would “gentrify” run down, crime ridden neighborhoods block by block. These are now some of the most desirable places to live in the borough. \n\nOne of these neighborhoods would be the perfect laboratory for a bitcoin economy. Many of these places have been abandoned by local governments. This would present an opportunity for bitcoiners to run their own communities with a good deal of autonomy. If you doubt this, do a little research on Amish and Mennonite communities in the U.S., or [this](https://en.wikipedia.org/wiki/Kiryas_Joel,_New_York) Orthodox Jewish community, where rabbis control local politics and education.\n\nI’m too old and set in my ways to do this, but I am sure there are young, brave hodlers out there who could serve as the initial pioneers. If they build it, we will come. \N 17797 \N 416648 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.6055967023239 0 \N \N f 142814528 \N 2 212908546 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443067 2025-03-19 02:02:58.901 2025-03-29 22:39:48.906 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 998 \N 443067 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 8.2528637200847 0 \N \N f 169724356 \N 1 183591698 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443332 2025-03-19 09:13:36.342 2025-03-29 22:39:51.962 \N Nice use of BitVM. Can you give a real-world example of who would compose a staker set to make the bridge? I don't understand what their incentives are. Like operators of a bank or a casino? https://example.com/ 21709 443295 443295.443332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2830222992863 0 \N \N f 940615440 \N 7 207275376 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:20.744 f \N \N \N 0 0 0 0 3 0 0 436600 2025-03-13 17:44:36.116 2025-03-29 22:39:51.962 \N I only came here to see Darth's comments https://example.com/ 13987 436218 436218.436600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.9297313485983 0 \N \N f 450949994 \N 4 4408591 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N 2025-03-20 11:29:51.429 f \N \N \N 0 0 0 0 2 0 0 402399 2025-02-13 18:00:42.109 2025-03-29 22:39:51.962 \N > I’m going to hypothesize none of this matters: the only significant factor is the intelligence or IQ of a child\n\nI would politely but strongly disagree!! https://example.com/ 5708 402389 402389.402399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0116879749784 0 \N \N f 430986260 \N 2 242195114 0 f f \N \N \N \N 402389 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421205 2025-03-01 13:46:01.803 2025-03-29 22:39:51.962 \N AI is real, for nearly any definition of AI; which means you should expect to keep seeing it. If you stop seeing it it won't be because the hype is over, but because it seems too obvious to talk about, like nobody talks about an 'electricity' or a 'computer' strategy anymore. https://example.com/ 16912 421130 421123.421130.421205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4745272234595 0 \N \N f 454948097 \N 3 162777032 0 f f \N \N \N \N 421123 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437411 2025-03-14 13:50:06.327 2025-03-29 22:39:51.962 \N Great post. I disagree with one very central premise though:\n\n> Custody is typically defined as a single party having clear control over the funds or establishing a contract or legal claim to the funds.\n\nI do think so. Custody is when one or more parties have control of your funds, and you don't. It doesn't matter if it's a single sig, or a multisig. Not your keys, not your coins. https://example.com/ 5779 437408 437408.437411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1127141015309 0 \N \N f 289202250 \N 3 226598803 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433232 2025-03-10 21:59:21.691 2025-03-29 22:39:51.963 \N They make money by taking pictures inside your home. They sell the data or they farm it to see what you buy. You become a profile. https://example.com/ 2528 433123 432920.433123.433232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8205140083398 0 \N \N f 93885157 \N 1 15342605 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-19 01:26:46.966 f \N \N \N 0 0 0 0 1 0 0 448977 2025-03-23 03:40:27.53 2025-03-29 22:39:51.963 \N I'm planning on testing with a few of the others here over the next week, and will report back with any reviews. \n\nIt looks like Voltage may have an options as well? https://flow.voltage.cloud/ https://example.com/ 20612 448962 448962.448977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2866502132567 0 \N \N f 297669723 \N 3 208798075 0 f f \N \N \N \N 448962 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441803 2025-03-18 09:59:00.133 2025-03-29 22:39:51.963 \N How long did you know about the Lightning network before you took the plunge? Did you re-purpose an old computer, or did you buy a dedicated piece of hardware (Rasberry Pi, etc)? https://example.com/ 5708 441801 441695.441712.441750.441801.441803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.791215235197 0 \N \N f 378229009 \N 4 217994077 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416954 2025-02-25 23:57:57.595 2025-03-29 22:39:51.963 \N Pardon the question, but what is the point of getting liquidity? Outside of taking loans, is it for developers to experiment? Trying to understand why it's a thing - or maybe I'm just not understanding liquidity in this context. https://example.com/ 17710 416511 416511.416954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.654586775741883 0 \N \N f 301576655 \N 2 130586779 0 f f \N \N \N \N 416511 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428765 2025-03-07 15:26:44.728 2025-03-29 22:39:51.963 \N fwiw I paid ~$31 fiat (via Lightning) for a 16.7M sat inbound channel from Y'alls (to get started better experimenting with routing and such) and it worked very well - it seems like it is set to the lowest fees on chain so it took a few hours to get confirmed.\n\n\nhttps://yalls.org/about/ https://example.com/ 14552 428760 428760.428765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4000537558378 0 \N \N f 301836098 \N 3 217373472 0 f f \N \N \N \N 428760 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436176 2025-03-13 11:15:02.081 2025-03-29 22:39:51.963 \N So WoS is saving roughly 3 blocks worth of transactions per day :) \n\nI really wonder how many transactions per day are done in Breez and Fountain, because the podcast streaming sends sats every minute (or every 4 minutes). https://example.com/ 19842 435746 435746.436176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1490706429647 0 \N \N f 190497679 \N 1 1669766 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 2025-03-20 07:07:14.753 f \N \N \N 0 0 0 0 1 0 0 457796 2025-03-28 17:45:04.578 2025-03-29 22:39:51.964 \N plebnet has a solid list of liquidity options https://plebnet.wiki/wiki/Getting_Inbound_Liquidity https://example.com/ 3506 457766 457766.457796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7028879085281 0 \N \N f 329077870 \N 2 124646712 0 f f \N \N \N \N 457766 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 401643 2025-02-13 09:26:05.049 2025-03-29 22:39:51.964 \N http://www.shadowstats.com/alternate_data/inflation-charts\n\nShadow stats will show you the CPI calculated using the methods from 80s and 90s\n\nI think it’s about double what they’re reporting now https://example.com/ 618 401611 401611.401643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9981822354587 0 \N \N f 188745245 \N 1 39571948 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430834 2025-03-09 13:00:03.073 2025-03-29 22:39:51.964 \N Today there was a huge internet outage in Canada from our largest ISP / grid owners (Rogers Communications). It affected debit card transactions, ATM withdrawals, even 911 calling ability on the affected networks. \n\nStrange day. https://example.com/ 11819 430567 430330.430561.430567.430834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.36624767792674 0 \N \N f 205062943 \N 1 247893351 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420466 2025-02-28 18:21:48.593 2025-03-29 22:39:48.91 New York Community Bank is collapsing Anyone currently looking for arguments to convince their normie friends of the importance and function of bitcoin should have this little graphic at hand. With the New York Community Bank, another financial institution is collapsing. But, to paraphrase Peter Schiff: bitcoin is a solution that is still looking for a use case... intellectual wretchedness just doesn't pay off in life! \n\n![20240306_181923.jpg](https://m.stacker.news/19151) \N 17041 \N 420466 \N \N \N \N \N \N \N \N education \N ACTIVE \N 22.2275883433175 0 \N \N f 128519651 \N 1 194838998 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441614 2025-03-18 07:28:23.852 2025-03-29 22:39:51.963 \N Tinkering with miners. Installed a Noctua fan on the FutureBit Apollo only to find out the 2000 RPM max doesn’t keep it cool enough (had to reinstall the stock fan with 4000 RPMs). \n\n![Snapseed.jpeg](https://m.stacker.news/15253) https://example.com/ 14489 441533 441533.441614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.98084852949318 0 \N \N f 552190948 \N 3 2510601 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436930 2025-03-14 03:36:40.283 2025-03-29 22:39:51.963 \N I forgot to mention this one earlier. I have it in PDF, if you'd like, i send it to you.\n\n[Technical Analysis of the Financial Markets: A Comprehensive Guide to Trading Methods and Applications - John J. Murphy](https://www.amazon.com/Technical-Analysis-Financial-Markets-Comprehensive/dp/0735200661) https://example.com/ 20924 436900 436823.436829.436900.436930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2954142563757 0 \N \N f 527663814 \N 3 168547048 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434542 2025-03-12 02:22:08.02 2025-03-29 22:39:51.963 \N I don't like the negativity that comes with downvotes. https://example.com/ 19930 434469 434469.434542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9513411038386 0 \N \N f 179163346 \N 1 113181592 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 2025-03-19 04:45:15.962 f \N \N \N 0 0 0 0 1 0 0 434387 2025-03-11 21:04:35.958 2025-03-29 22:39:51.963 \N Great point! This would probably require a re-design of the main page for SN that allows the user to see organic content vs. curated content. Might also require a whole new UI so not sure where that falls on the road map/priority for SN. https://example.com/ 14503 433832 433832.434387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.221301400901552 0 \N \N f 77212065 \N 1 170251168 0 f f \N \N \N \N 433832 \N 0 0 \N \N f \N 2025-03-18 20:47:56 f \N \N \N 0 0 0 0 1 0 0 1319 2022-09-11 17:14:14.352 2025-03-29 22:39:51.963 \N And in the spirit of @kr 's response and the idea that successful routing strategies is likely proprietary , perhaps anyone who has previously routed can share anything that **did not work** when you ran your node?\n\nWas there anything you would have avoided when you started? Or something you did that never panned out? https://example.com/ 674 1317 1247.1250.1253.1317.1319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3828238364664 0 \N \N f 282318377 \N 2 71984511 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444561 2025-03-20 02:35:00.753 2025-03-29 22:39:48.911 Parent's Corner: Having a pet means Responsibility and Sacrifice **Parent's Corner has temporarily gone to the dogs!!** \n\nMy wife is out of town this weekend so I am flying solo watching the kids and managing the dog. Yesterday I got to dole out some advice and wisdom to both kiddos relating to our dog. \n\nOn Friday night while the kids were in the living room playing Mario Party on Nintendo Switch I walked passed my son's bedroom and noticed a trail of wrappers from his bedroom down the hall towards our bedroom where the dog's bed is. Granola bar wrappers, gum wrappers, plastic yogurt tube wrappers. Clearly the dog had gotten into his garbage can. This is not the first time this has occurred. My son is supposed to make sure his garbage can is covered (not that that matters the dog just knocks it over and the top falls off), his chair is tucked into his desk so she can't reach the garbage and his door is closed so she doesn't go into his room. Well, none of these things occurred and needless to say the poop that came out of that dog yesterday was quite remarkable. I am just glad she didn't get a blockage from the paper and plastic she digested. \n\nSo, after getting over my shock and amazement at the dog's remarkable poop. Plastic does not break down in a dog's digestive system. It does not. Anyways, I am off track thinking about that poop again. I had to have words with my son. Before I did I prefaced it by taking some responsibility and telling him there is an obvious problem with this garbage can, so let's get him a new one the dog cannot get the lid off. I went on Amazon and ordered a new can that hopefully she can't get into. Once we had hopefully solved the problem, I talked to him about the fact that when you have a dog as part of your family you need to be responsible for caring for the dog and part of that is doing your part to ensure she doesn't get into things. I explained we would have been in a very bad situation if the dog had gotten a blockage in her colon due to all the packaging she ate and we didn't have a car (wife took it to go out of town) to get her to the vet. I told him, "I get it, you are 14, I kind of remember being 14- you just do stuff without thinking" but we need to take responsibility for our actions, habits and think before doing things. He was pleased I didn't get mad about it. I offered to show him the remarkable poop I had bagged and thrown into our outdoor garbage bin but he declined. \n\nLater in the day my daughter and I took the dog for a walk to park and back. This is the regular walk that my daughter and I go on with the dog and she loves it because I usually let her sneak in a couple minutes on the swings or 5 slides down the slide when we get to the park. As we were walking back on the trail from the park a couple was walking towards us with their dog. Now my dog loves people, but she is very inconsistent with other dogs. Some dogs she really likes, others she just ignores but some dogs she does not like and barks and growls at. Usually when we pass dogs we don't know I just say hello and decline a dog greeting saying "she isn't always good with other dogs". However, my daughter being a 6 year old, despite knowing we are not supposed to pet unknown dogs without the owner's permission and mom or dad petting them first just runs towards the dog yelling with glee "Can I pet the doggy, can I pet the doggy". I knew this was not going to be good. My dog not only is inconsistent with other dogs but is fiercely protective of my daughter. The couple says "sure you can pet our dog, he is very friendly". My dog is already getting agitated and as soon and my daughter pets the other dog she growls and tries to lunge at him. I kneel down and hold my dog, putting my hand on her chest to calm her and tell my daughter "that's enough, say thank you, and let's go". I also apologize to the couple for my dog lashing out, which they were cool about, understanding she was just being protective of my daughter. As we continued our walk home my daughter had a moment of reflection that surprised me and made me proud. She said "I should not have pet that other doggy". I told her it is good that she recognized her mistake and part of having a pet as part of your family is making sacrifices. If we know our dog doesn't like it when we pet other dogs, we need to sacrifice our desire to pet them in order to keep our dog calm and not turn it into a bad situation. She understood and said "yes daddy, I love our puppy, I don't want to make her upset". \n\nThanks for reading! \n\nSats for all,\nGR \N 8870 \N 444561 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 20.1624727924433 0 \N \N f 44692014 \N 1 88194320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435573 2025-03-12 19:43:40.652 2025-03-29 22:39:51.963 \N I like the mocks - there are things to learn from and you can tell that they got a UX person... We will see if this will ever materialize :) https://example.com/ 21136 435570 435217.435275.435277.435295.435438.435565.435570.435573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1284770342321 0 \N \N f 47759420 \N 1 55871262 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 16:14:29.791 f \N \N \N 0 0 0 0 1 0 0 443349 2025-03-19 09:30:35.144 2025-03-29 22:39:51.963 \N 10 sats for comment sounds good starting point- I think post should be higher? https://example.com/ 4395 443105 443105.443349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7506895187477 0 \N \N f 122301962 \N 1 64344103 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 2025-03-26 04:15:18.156 f \N \N \N 0 0 0 0 1 0 0 410632 2025-02-20 15:23:29.695 2025-03-29 22:39:51.963 \N Here are also further resources/examples (I think they are also mentioned in the article).\n\n\nhttp://value4value.io/\nhttps://podcastindex.org/podcast/value4value https://example.com/ 21291 410559 410559.410632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6724238403979 0 \N \N f 720532374 \N 4 201113834 0 f f \N \N \N \N 410559 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434896 2025-03-12 10:17:41.609 2025-03-29 22:39:51.964 \N Bravo for transparency! They have laid just about every step of their process out in the open. https://example.com/ 21180 434865 434865.434896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29425669086417 0 \N \N f 172489069 \N 1 83952774 0 f f \N \N \N \N 434865 \N 0 0 \N \N f \N 2025-03-19 08:50:31.165 f \N \N \N 0 0 0 0 1 0 0 436021 2025-03-13 08:36:29.183 2025-03-29 22:39:51.964 \N Sounds good to me. 10 satoshis is still only 0,002$. https://example.com/ 17050 436011 435328.435887.435904.435957.436001.436011.436021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3837179068379 0 \N \N f 68747856 \N 1 192918528 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 2025-03-20 06:12:56.896 f \N \N \N 0 0 0 0 1 0 0 441047 2025-03-17 18:02:38.488 2025-03-29 22:39:51.964 \N What is your Bitcoin story? https://example.com/ 11885 440560 440422.440523.440538.440560.441047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2879142413448 0 \N \N f 171148399 \N 1 82036540 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416633 2025-02-25 18:20:53.303 2025-03-29 22:39:51.964 \N BitcoinVN\nanycoin.cz\nPortico exchange is a new one https://example.com/ 718 416158 416158.416633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2778362801024 0 \N \N f 164489410 \N 1 95329838 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402755 2025-02-14 01:35:14.897 2025-03-29 22:39:51.964 \N AI. Its a terrible name. It isn't a savior or a villain. Its just an evolution in computing and it will not end civilization. Relax. The issue isn't AI. The issue is us. We are lazy, fat, and dumb. AI is an easy scapegoat. https://example.com/ 9331 402674 402674.402755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.235118887242 0 \N \N f 385801555 \N 3 49001037 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448145 2025-03-22 12:37:37.955 2025-03-29 22:39:51.964 \N **Example Breakdown of Zaps**\n\n100 sat zaps before: 90 sats to receiver (10% sybil fee) + 5 sats (50% territory revenue) + 5 sats (50% rewards)\n\n100 sat zaps now: 70 sats to receiver (30% sybil fee) + 21 sats (70% territory revenue) + 9 sats (30% rewards)\n\n https://example.com/ 21057 448135 448015.448047.448135.448145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7992925007928 0 \N \N f 59663390 \N 1 42239968 0 f f \N \N \N \N 448015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441176 2025-03-17 20:26:01.912 2025-03-29 22:39:48.911 How do you feel about your recent rewards? I wanted to follow up and see how the reward changes feel. We rewarded 137 stackers yesterday which is the highest number in a long time. In part this is due to the reward changes but also the generosity of federated computer. \N 1195 \N 441176 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 10.1761339798904 0 \N \N f 756932380 \N 5 78789618 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434743 2025-03-12 07:52:14.454 2025-03-29 22:39:51.964 \N ![DARTH-WAITING.jpg](https://m.stacker.news/19090)\n@Lux 😂😂😂 https://example.com/ 6360 434697 434697.434743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.25931069469494 0 \N \N f 166176418 \N 1 19861750 0 f f \N \N \N \N 434697 \N 0 0 \N \N f \N 2025-03-19 02:34:53.904 f \N \N \N 0 0 0 0 1 0 0 413874 2025-02-23 14:04:41.428 2025-03-29 22:39:51.964 \N If Substack will not adapt to Bitcoin they will be forgotten and other platforms like SN will take their place.\n\nTHIS is the future, you (platforms that still do not use Bitcoin in some way) have been warned, so adapt to Bitcoin, don't try to change Bitcoin for you. https://example.com/ 15536 413854 413854.413874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.60430855271505 0 \N \N f 191659487 \N 1 182760264 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2742 2022-10-19 17:49:03.471 2025-03-29 22:39:51.964 \N I should note that I have no idea what I'm doing. This is just what I decided to do. This is my thinking, not facts, and it might be terribly misguided. https://example.com/ 1959 2734 2734.2742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5970978503837 0 \N \N f 232867802 \N 1 20607412 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447768 2025-03-22 05:53:48.627 2025-03-29 22:39:51.964 \N - Duolingo. Getting me some Spanish. \n- [simplelogin.io](https://simplelogin.io), used multiple times this week\n- Obsidian. I enjoy dropping off my notes and thoughts there. I got all shortcuts under my fingertips, so it's great experience. \n- Syncthing. Goes well with obsidian ;)\n- Health. I approached it as an engineer - I searched for the top 10 causes of death. For each I search "prevention" and that got me a list of things to do. For each thing I created a plan that I'm executing on :) \n- Calibre. I get books, drop them in whatever format into a designated folder and Calibre automatically converts those into the right format for my Kindle. \n- [Push To Kinde](https://www.fivefilters.org/push-to-kindle/). Great way to just send any article to my Kindle for later & comfier reading. Works both as Chrome extension and as an mobile app (via Share dialog). https://example.com/ 654 447657 447618.447657.447768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6105785414263 0 \N \N f 249685067 \N 1 198726870 0 f f \N \N \N \N 447618 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415418 2025-02-24 19:28:24.165 2025-03-29 22:39:51.964 \N Mining ⛏️ https://example.com/ 14552 415406 414755.415076.415331.415399.415406.415418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4445147203768 0 \N \N f 243848056 \N 1 133276457 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442820 2025-03-18 20:47:58.853 2025-03-29 22:39:48.911 Strava ‘gave away locations’ of world leaders including Trump, Putin and Macron Can't imagine why anyone would use apps that share location data if their actual job is to protect someone. I can't even imagine using an app like this, and I'm not a bodyguard, but it's a good reminder that often, your privacy is at risk because of what other dumbasses do (see also DNA databases like 23AndMe). https://www.the-independent.com/world/strava-security-trump-putin-macron-secret-service-b2637282.html 20636 \N 442820 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 28.2571164974393 0 \N \N f 1069959779 \N 8 36736542 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 02:55:34.034 f \N \N \N 0 0 0 0 3 0 0 408066 2025-02-18 14:53:20.174 2025-03-29 22:39:48.911 PHOTOSHOP REQUEST: Bitcoin logo laser-screened on Palace of Culture in Warsaw We're doing **[European Halving Party](https://europeanhalvingparty.com/)** on April 18-21 in Warsaw.\n\nWe want to screen with a huge projector some nice bitcoin animations, at the walls of our venue - the most iconic & impressive building in Warsaw.\n\nIf you know someone who makes vector animations, let me know!\n\nhere I'm asking for a little help from someone with photoshop skills to make a compelling mockup of such lightshow, so it might be easier for us to crowdsource costs on Geyser with a visualisation.\n\nBitcoin Logo screened with laser projector on Palace of Culture in Warsaw.\n\nPaying 10k for top 3!\n\n![Palace_of_Culture_and_Science_by_night_in_Warsaw_(8020468470)[1].jpg](https://m.stacker.news/20860)\n![b6f98963b9b597b5b4accb07a9876a98[1].jpg](https://m.stacker.news/20861)\n![161960[1].jpg](https://m.stacker.news/20862) \N 899 \N 408066 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 23.0154894867652 0 \N \N f 152681216 \N 1 95899339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448686 2025-03-22 19:28:02.356 2025-03-29 22:39:51.964 \N genetics https://example.com/ 9333 448319 447761.448319.448686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.6131629713087 0 \N \N f 561531263 \N 4 66758431 0 f f \N \N \N \N 447761 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450652 2025-03-24 06:14:58.949 2025-03-29 22:39:51.964 \N I was considering doing a small fund raise for Bitcoin Ekasi from Mossel Bay, South Africa. https://example.com/ 21672 450649 450649.450652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.99493486488316 0 \N \N f 1263457424 \N 8 214186119 0 f f \N \N \N \N 450649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443515 2025-03-19 11:51:46.643 2025-03-29 22:39:51.964 \N Some programming language where I can actually make contributions to the source code of open source projects to make it better https://example.com/ 736 443399 443399.443515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2775620376346 0 \N \N f 479339802 \N 3 58028521 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 2025-03-26 05:49:20.792 f \N \N \N 0 0 0 0 2 0 0 436451 2025-03-13 15:08:10.288 2025-03-29 22:39:51.964 \N Psyops https://example.com/ 20713 436396 436028.436343.436396.436451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4893043210978 0 \N \N f 348078973 \N 3 47123208 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 08:39:15.066 f \N \N \N 0 0 0 0 1 0 0 435377 2025-03-12 16:30:56.426 2025-03-29 22:39:51.964 \N LMAO, I think its sometimes because libertarians have built a social identity around complaining and defining problems, rather than building or understanding solutions. And i don't even mean that in a super negative way even though it kinda sounds that way. They tend more towards defensive mindset and the kinda of "natural world alternative" so to speak, rather than the cypherpunk technological "solution" to these problems. \n\nShort version: I believe they think more in the framing of politics rather than technological systems. https://example.com/ 1012 435217 435217.435377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1689859115446 0 \N \N f 206419730 \N 2 141025831 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-20 00:20:50.128 f \N \N \N 0 0 0 0 2 0 0 437586 2025-03-14 16:32:47.325 2025-03-29 22:39:51.964 \N Bushido: Way of the Samurai https://example.com/ 1261 437579 437044.437560.437579.437586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.94762568650514 0 \N \N f 15643581 \N 1 220902474 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434020 2025-03-11 15:09:56.088 2025-03-29 22:39:52.19 \N >Got rid of the information noise that made me make unnecessary, impulsive purchases. My brain became calmer, more clear.\n\nThis is a key aspect! You are on the right path. Few others can understand this.\nWell done ! https://example.com/ 14818 433999 433828.433999.434020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.21363938839441 0 \N \N f 578987625 \N 4 160431263 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-20 06:36:21.615 f \N \N \N 0 0 0 0 1 0 0 264122 2024-10-11 13:48:45.989 2025-03-29 22:39:48.911 The Importance of Bitcoin in the Age of AI AI is one of the most exciting (and scary) developments in human history and likely marks the beginning of a new era. What kind of role will Bitcoin play in that not-so-distant future world?\nIn this article, we'll discuss:\n\n* Chat GPT, AutoGPT, BabyAGI, Midjourney, DeepFakes and other AI advancements\n* Bitcoin's 'Unforgeable Costliness' –– Why AI Can't Stop Bitcoin\n* Future Possibilities: Bitcoin and AI Synergies\n\n\nCheck out the full article 👉 https://www.clementinemoney.com/ai/\n\n![Image of a clementine character with robotic features including metal plates on its body and mechanical arms.](https://www.clementinemoney.com/content/images/size/w1140/2023/05/Untitled_Artwork-16.png) \N 9796 \N 264122 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.9963522296407 0 \N \N f 18712449 \N 1 240654939 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456560 2025-03-27 17:02:05.971 2025-03-29 22:39:48.911 What's a technology you were LATE to adopting? Social media actually. Didn’t really know what to think of it when social platforms started coming out..\n\n“That’s not what the internet’s for!!”\n\n…Are you normally a late adopter? Early to things? Certainly Bitcoin… \N 828 \N 456560 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1906534637167 0 \N \N f 461836215 \N 4 504584 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456570 2025-03-27 17:14:01.146 2025-03-29 22:39:52.19 \N Onchain is still quicker than Western Union, paypal / regular banks, etc. And more secure. Also requires no third party. \n\n& scarce and easily verifiable. https://example.com/ 3683 456560 456560.456570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.71394840881063 0 \N \N f 288043942 \N 3 173792273 0 f f \N \N \N \N 456560 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 330790 2024-12-15 13:32:03.652 2025-03-29 22:39:52.19 \N ![](https://imgproxy.iris.to/insecure/rs:fit:1138:1138/plain/https://nostr.build/i/nostr.build_a61e3d85b610bd1aa1331edefa86d16961858888ce431992e3b7a29cee2527ff.jpeg) https://example.com/ 21803 330774 330698.330774.330790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9947179341381 0 \N \N f 46394505 \N 1 173408053 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421284 2025-03-01 15:02:18.063 2025-03-29 22:39:52.19 \N Thinking about how to use AI to create a mind-exoskeleton for knowledge workers, designers, artists, engineers, etc. but wondering what that would look like for different industries. \n\nAlso in the end if AI can be used to generate content / answers along some calibrated "tracks" we still have the final decision of who decides? For example, in design / architecture / logistics / whatever field you still need to have someone or a group who decides. \n\nSo AI can workers in a variety of fields but the real crux is what range of activities / decisions are we comfortable with it making. We're still all thinking of it as a kind of conversation partner / recommender but in order for it to "replace" people in whatever arena, the results would have to be "good enough" as compared to some guy who has the current job, without weird glitched out edge cases where everything goes wrong. And we'd have to be comfortable "just letting it run" in that setting. I feel like an "AI babysitter" is going to be a big component of future jobs https://example.com/ 827 420175 420055.420175.421284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.91396327427331 0 \N \N f 132025023 \N 1 228902784 0 f f \N \N \N \N 420055 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424946 2025-03-04 13:59:29.15 2025-03-29 22:39:52.194 \N Snails are the fastest beings in the known universe.\nhttps://i.ibb.co/nQQ794S/f435a1c8-0976-48e6-acd5-038ad0ffcae6.jpg https://example.com/ 13162 424921 424571.424907.424921.424946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.42099867690046 0 \N \N f 1519549527 \N 10 201910242 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436792 2025-03-13 22:44:32.766 2025-03-29 22:39:48.911 The true state of Bitcoin in El Salvador. A great true life story! \N https://x.com/st4rnold/status/1738639359056732396 16753 \N 436792 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 19.2138814887319 0 \N \N f 105452463 \N 1 175008600 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434990 2025-03-12 11:45:15.29 2025-03-29 22:39:48.911 What if Bitcoin mining was ASIC-resistant? Just something that randomly came to my mind: what if, from the very early days, Bitcoin mining was made somehow ASIC-resistant? How would the network look like now, in terms of performance and decentralization?\n\nCurious to hear what you think! \N 19537 \N 434990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0755970809511 0 \N \N f 544008331 \N 7 246570942 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 18:08:39.531 f \N \N \N 0 0 0 0 5 0 0 419498 2025-02-27 21:00:51.409 2025-03-29 22:39:48.917 MINE BITCOIN At Home With NerdAxe (full tutorial) \N https://www.youtube.com/watch?v=jC-Wp4J4Jb4 11145 \N 419498 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 16.0376454289897 0 \N \N f 126380063 \N 1 57416900 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416199 2025-02-25 13:25:15.341 2025-03-29 22:39:52.19 \N I could probably retire on 10’s of bitcoin if I went back my default monkish frugal state.\n\ntbh though I’m more afraid of retirement than not. Needing money forces me to be useful or otherwise suffer materially. Without the threat of suffering, I find myself (and others) prone to delusions of usefulness.\n\nObviously, there’s a balance to be struck. You want to be “hungry” yet not so hungry you’ll enslave yourself to eat. I’ve noticed some wealthy people accomplish this by constantly upgrading their lifestyle (or taking risky bets on new ventures), but I’m not sure it’s always conscious. https://example.com/ 8289 416158 416158.416199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.46888936108011 0 \N \N f 546843391 \N 3 177820525 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435850 2025-03-13 03:06:28.839 2025-03-29 22:39:52.19 \N I am not in Austin but for 300,000 Sats I might need to hop on my horse ride into town. https://example.com/ 21145 435776 435488.435776.435850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.8398467482932 0 \N \N f 101017072 \N 1 68483695 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 00:15:10.625 f \N \N \N 0 0 0 0 1 0 0 435382 2025-03-12 16:35:02.639 2025-03-29 22:39:52.194 \N Dune Quote of the Day\n>Is your religion real when it costs you nothing and carries no risk? Is your religion real when you fatten upon it? Is your religion real when you commit atrocities in its name? Whence comes your downward degeneration from the original revelation?\nPaul Atreides https://example.com/ 9695 435261 435261.435382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2397152018542 0 \N \N f 113106135 \N 1 151649914 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:16.905 f \N \N \N 0 0 0 0 1 0 0 437437 2025-03-14 14:14:59.601 2025-03-29 22:39:52.194 \N Ah cool, I guess that makes me the oldest actual user! Do I get a special hat for this? https://example.com/ 19535 437218 437218.437437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0539139650999 0 \N \N f 491780276 \N 4 189815003 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401671 2025-02-13 10:03:40.362 2025-03-29 22:39:52.194 \N Continuing to work on the new editor. First step will be to get it to do all the things I want, then it’s making the toolbar UI/UX good, then allowing people to opt out of it and use the old markdown method instead. https://example.com/ 11450 401611 401611.401671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9672413774263 0 \N \N f 700031468 \N 5 111267380 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407551 2025-02-18 07:43:56.88 2025-03-29 22:39:52.191 \N Making progress in my cabin project 🙂 Recently I managed to frame all windows & the door. Today I'll be doing a little bit of this and that (whatever's left) and prepping for moving in for at least few days 🙂\n\nHave a great day ahead!\n\n![weekend progress](https://i.ibb.co/1dsTNPF/weekend-progress.jpg) https://example.com/ 10283 407425 406115.407198.407209.407236.407425.407551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.85689230735338 0 \N \N f 171479572 \N 1 192765225 0 f f \N \N \N \N 406115 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401649 2025-02-13 09:35:29.422 2025-03-29 22:39:52.192 \N This is terrible for the open source community... https://example.com/ 1135 401611 401611.401649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.178369464133 0 \N \N f 221964189 \N 1 131998354 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443322 2025-03-19 09:04:34.295 2025-03-29 22:39:52.193 \N > Is there something like this?\n\nMicrolancer is essentially an LN-enabled Upwork (i.e., a client lists a gig they want to find tasker to perform the work specified, and the rate. Taskers respond with their offer to do the work). Microlancer also has added Microlancer Services, which is comparable to a Fiverr (i.e., Advertise your service, and the compensation). Escrow and dispute resolution are performed by Microlancer. \n\n*Freelancing platforms which pay in Bitcoin, and other ways to earn bitcoin*\nhttps://cointastical.medium.com/freelancing-platforms-which-pay-in-bitcoin-e38be56166df\n\n> Is this something our community needs \n\nSuitable platforms already exist. What is needed are for employers / clients to be aware of these methods, and to actually use them. There is maybe a 1,000:1 ratio (or greater) between potential freelancers/candidates wanting to perform the work for every gig / task listing available. This is not unique to just Microlancer.\n\nThere are a number of altcoin-related platforms that were built to create a use case for their specific altcoin, and they have become ghost towns after the initial funding runs out. There's a network effect that makes gaining traction difficult. And then when the gig platform is successful with the matchmaking between a client/employer and a freelancer/tasker/worker, the platform isn't needed for continued follow-on work -- the employer can just coordinate with the worker directly, no intermediary needed. This is in contrast to, say, Upwork where the platform handles fiat payment from the employer and payment to the worker (which is especially useful when paying the worker requires conversion to a different currency and payment method).\n\nThere was a pretty good interview of Paul Itoi of Stakwork, you might find it interesting:\n\n*The Kevin Rooke Show – E49: Paul Itoi on Stakwork, Sphinx Chat, Earning Bitcoin, and AI vs. Humans*\nhttps://stacker.news/items/33413\nhttps://anchor.fm/kevin-rooke/episodes/Paul-Itoi-on-Stakwork--Sphinx-Chat--Earning-Bitcoin--and-AI-vs--Humans--E49-e1jbki5\nhttps://www.youtube.com/watch?v=972LzVeH8aA https://example.com/ 20687 443312 443295.443312.443322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.16444477742625 0 \N \N f 12685051 \N 1 245462152 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:55.894 f \N \N \N 0 0 0 0 1 0 0 423453 2025-03-03 11:37:02.355 2025-03-29 22:39:52.193 \N So the good news is that I caught my lyme disease early. The bad news is that after two weeks the antibiotics are really doing a number on my digestive system. I'm not looking forward to a six hour wedding celebration later this afternoon. https://example.com/ 12561 422334 422334.423453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1084584259969 0 \N \N f 68870781 \N 1 129180166 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437986 2025-03-15 04:50:25.842 2025-03-29 22:39:52.193 \N I might be biased but I think in Switzerland people are very excited about bitcoin, both bottom-up (20% of people hold BTC) and top-down (regulators are very open about BTC).\nOur users mostly come from Switzerland, Germany, Austria, Italy and France, and also Spain and Czech Republic seem to have high adoption rates from what I hear.\nI think the Northern and Eastern European countries are in general still more passive, I wouldn't say pessimistic though, they just need more time! :) https://example.com/ 20495 437324 437190.437318.437324.437986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.01924434479803 0 \N \N f 98480667 \N 1 158566712 0 f f \N \N \N \N 437190 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455952 2025-03-27 12:36:01.878 2025-03-29 22:39:52.193 \N my concern is the verification - not the payment https://example.com/ 21485 455923 455551.455599.455824.455889.455904.455911.455923.455952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6333050031271 0 \N \N f 682433088 \N 5 158367504 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402682 2025-02-13 22:52:28.777 2025-03-29 22:39:52.195 \N Why two servers?\n\nThe whole point of federation was that you could be on any one server and follow users from any other server and reply / DM / etc regardless of what server they were on.\n\nAnyway, that "mind blown" phase will wear off. Censorship still happens. There are blocklists. Your server might even block BitcoinHackers.org, denying you from even seeing the discussions occurring there.\n\nPersonally, have high hopes for nostr, but Twitter is horrible (yes, it still is) so any migration away -- even if to the flawed design of Mastodon, I see that as a positive move, for now. https://example.com/ 14774 402003 402003.402682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5092064808204 0 \N \N f 190443867 \N 2 15001348 0 f f \N \N \N \N 402003 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432884 2025-03-10 16:33:18.788 2025-03-29 22:39:48.912 SimpleX Chat - First impressions. Is it ready for prime time? [](https://imgprxy.stacker.news/Fx6fxHpS2m-skZUiEhn6g2QAnmNgQPYHROaRGyo_zow/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvaS9hY2EwYjI2NDIwYzgwN2MwN2E1ZjMzZDNkYmMyNzMyZWZiNmJkZTg4NmVkMDFlODU5ZWZiNzAzNGQ3Y2NmYmJiLmpwZw)\n\n### What is Simple X Chat? ###\n\nA new private messenger privacy oriented app *that claims to be the first messenger without User ID, which is a novelty*\n\nYou can check the [web](https://simplex.chat/) site for more details, just before you do and install it for testing, read on...\n\n### First Impressions: ###\n\nBeing testing SimpleX chat and, IMO is not ready for prime time, needs work\nto compete with the best out there in privacy, like Session app, Threema and Briar. I do not include Signal since it requires your mobile number and therefore, not ideal for privacy purpose but better than the most known alternatives... \n\n### Is SimpleX Chat ready for adoption among the non tech savvy community? ###\n\nIn short, not in my opinion,\n\n1. Not native TOR built in, you need to configure it and keep TOR proxy open in the background...\n2. Battery consumption is too high, its a battery killer\n3. The UI needs work to be simple and easy to use and understand for not tech savvy users, currently is too complex for non geeks\n\nTested the app extensively, good sound quality and reliable, but the cons are a wall for adoption\n\n### What about the non tech savvy, Will they get it as it is? ###\n\nTested on non tech savvy friends for installation and performing a chat and a call. It didn't pass, all of them required assistance to configure and send a link for connection\n\n### Summary ###\n\nIMO, ***SimpleX Chat***, it is definitely a step in the right direction and I hope it becomes one the most used messenger chat application worldwide, however, I do not believe that its current state of development is ready for adoption. The battery issue is a big no-no and equally importantly, It needs work to simplify the GUI and configuration steps so the non tech savvy can get it up and working easily.\n\nI will suggest you test it extensible and challenge your family members and close friends to get it up and running with TOR enabled without assistance, maybe, some of them are more resourceful than you think! \N 9166 \N 432884 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 27.0239718338463 0 \N \N f 320078208 \N 2 217912905 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457513 2025-03-28 14:48:59.282 2025-03-29 22:39:52.195 \N Hi jb55! thanks for doing this AMA. During TFTC you talked about building a metaverse world, could you go into more detail into what that would look like if you built it? https://example.com/ 19138 457476 457476.457513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5455591896859 0 \N \N f 222191051 \N 2 208059555 0 f f \N \N \N \N 457476 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 426472 2025-03-05 16:30:06.856 2025-03-29 22:39:52.195 \N Thanks for writing this up, @DarthCoin. I think a lot of us here were aware of your distaste for ChatGPT, but didn't understand why (at least I didn't). Now I know where you're coming from. \n\nI agree with having a subsection for guides and tutorials. I have one of your LN guides bookmarked, but it'd be nice if we had a dedicated section for these things, too. \n\nI also don't think we need an auto summary of linked stories. As I mentioned in that same bounty post, a text box would do nicely. I personally want people to read the stories I share, but would like to add context to why I'm sharing it. We don't need to add AI for the sake of adding AI. \n\nOn the other hand, the tldr bot has been created and used here. As it stands now, I think this is fairly benign (though I'm sure you disagree) as one can choose to use it or not. https://example.com/ 6430 426148 426148.426472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44155865555846 0 \N \N f 305974745 \N 2 221885480 0 f f \N \N \N \N 426148 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420776 2025-03-01 03:27:15.532 2025-03-29 22:39:52.196 \N \nOlá @Svetski ! Here is a slightly provocative question, but without any malice.\nI have a question about the potential bias of a large language model trained on a dataset of Bitcoin-related text. https://example.com/ 4768 2483 2483.420776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.833917874428245 0 \N \N f 369436952 \N 2 153142230 0 f f \N \N \N \N 2483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416221 2025-02-25 13:39:59.129 2025-03-29 22:39:52.196 \N I present SatsGpt - pay Sats and have the world class AI ChatGpt at your finger tips. https://t.me/SatsGptBot \n\nAny feedback appreciated. I will write up a post soon as well https://example.com/ 2000 416158 416158.416221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0174215022382 0 \N \N f 1763309940 \N 13 150219775 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451159 2025-03-24 12:25:21.112 2025-03-29 22:39:52.196 \N Suggestion for day 14, learn to use a real lightning wallet https://example.com/ 18449 451157 450805.451044.451106.451155.451157.451159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.35720005305928 0 \N \N f 138420112 \N 1 166975448 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423079 2025-03-02 23:54:07.169 2025-03-29 22:39:48.912 Stuff that's cringe in Bitcoin: Price predictions. \N 13753 \N 423079 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.06436835899665 0 \N \N f 120334113 \N 2 169963030 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416127 2025-02-25 12:36:57.035 2025-03-29 22:39:48.912 The Original Meaning of Hacking Similar to [this post]( https://stacker.news/items/364622) in ~crypto, I just wondered if it would be possible to make enough people aware that the term _hacker_ was originally not used in the context of malice or criminal activity:\n\n> My much-publicized hacking career actually started when I was in high school. While I cannot describe the detail here, suffice it to say that one of the driving forces in my early hacks was to be accepted by the guys in the hacker group. \n>\n> Back then we used the term _hacker_ to mean a person who spent a great deal of time tinkering with hardware and software, either to develop more efficient programs or to bypass unnecessary steps and get the job done more quickly. The term has now become a pejorative, carrying the meaning of "malicious criminal". In these pages, I use the term the way I have always used it - in it's earlier, more benign sense.\n\n-- Kevin Mitnick, Preface of Art of Deception\n\nThat's also why some code (usually bugfixes or even hotfixes) is called "hacks" in software engineering. We know it's messy but it simply gets the job done. Just like some hacks in the real world are messy to bypass software restrictions, [for example for jailbreaks](https://en.m.wikipedia.org/wiki/IOS_jailbreaking):\n\n> On Apple devices running iOS and iOS-based operating systems, jailbreaking is the use of a privilege escalation exploit to remove software restrictions imposed by the manufacturer. Typically it is done through a series of kernel patches. A jailbroken device permits root access within the operating system and provides the right to install software unavailable through the App Store. Different devices and versions are exploited with a variety of tools. Apple views jailbreaking as a violation of the end-user license agreement and strongly cautions device owners not to try to achieve root access through the exploitation of vulnerabilities. \n> \n> While sometimes compared to rooting an Android device, jailbreaking bypasses several types of Apple prohibitions for the end-user. Since it includes modifying the operating system (enforced by a "locked bootloader"), installing non-officially approved (not available on the App Store) applications via sideloading, and granting the user elevated administration-level privileges (rooting), the concepts of iOS jailbreaking are therefore technically different from Android device rooting. \n\nAnd how [Hacker News](https://news.ycombinator.com) isn't about criminals. Ok, maybe thought criminals when it comes to bitcoin, lol. \N 20852 \N 416127 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 16.3951792671004 0 \N \N f 516401056 \N 3 16062462 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 446863 2025-03-21 14:03:49.304 2025-03-29 22:39:52.196 \N I code for a living, albeit not as an app developer, but in academia.\n\nA gamechanger for me in terms of fighting procrastination has been a combination of:\n\n- www.focusmate.com (you share the screen for one hour with someone else who is trying to get a task done)\n- journaling almost everything I do. At the beginning/end of the week and day for big picture, and at the beginning or end of each focusmate session for readjusting my focus, i.e. write down what I did well, what I need to change, what is my next immediate task, etc. I use vimwiki for this, but there are many other tools (my colleague is into obsidian https://obsidian.md/ quite heavily).\n- tell my colleagues NOT to interrupt me when I have my headphones on (this means I am "in the zone", and coding).\n\nAs a side note, I've been tinkering with the idea of building a nostr client which does a similar thing as focusmate.com, but with the additional advantage of using LN micropayments to pressure yourself into working (you lose the bounty if you didn't do what you committed to). https://example.com/ 13174 446681 446681.446863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1711435605554 0 \N \N f 383426053 \N 3 103491166 0 f f \N \N \N \N 446681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448468 2025-03-22 16:09:32.66 2025-03-29 22:39:52.196 \N Hey everyone! Excited to be doing this. https://example.com/ 17212 448382 448201.448382.448468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.12864205103072 0 \N \N f 129709429 \N 1 28545927 0 f f \N \N \N \N 448201 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423956 2025-03-03 18:30:18.078 2025-03-29 22:39:52.196 \N I'm wary of going the moderation route - it's too subjective. I like the market based system of SN. In the spirit of Bitcoin, spam can be prevented by increasing the cost to post with each successive post. The cost can rise exponentially or polynomially in the number of posts without upvotes. If a post gets upvoted, then it won't add to your posting cost because the post has added value. \n\nI guess this is not entirely secure against sybil attacks because a user can create multiple accounts to upvote their own posts. I forgot if there was an account creation fee, but if there was then that'd be a solution https://example.com/ 21418 423899 423667.423689.423899.423956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.89224548351083 0 \N \N f 2745709836 \N 22 175855898 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437791 2025-03-14 22:12:56.946 2025-03-29 22:39:52.196 \N Fedimint is kind of like Liquid without the blockchain. Liquid custodies the pegged-in bitcoin using a miltisig quorum of functionaries. The functionaries also take turns building blocks and validating the blocks that other functionaries build. The blockchain is public so anyone in the world could be surveilling your liquid transactions. You can use confidential transactions to conceal the amount and assets of your transactions but the transaction graph is always publicly visible. I don't understand this feature at all because the transaction graph is more important to your privacy than the amounts. If you have some Liquid tokens and the network goes down or turns malicious you get rugged.\n\nFedimint has a multisig quorum of guardians. They control the bitcoin deposited at the mint and collaborate to validate each ecash transaction. But there is no blockchain, which means there is no public historical record of transactions. There is also currently no way for an outsider to audit the supply of issued ecash (the guardians audit it with every transaction). This sounds bad but there are upsides to the trade-off. Ecash has far superior privacy properties compared to Liquid. When you send ecash to another user the Fedimint guardians (and everyone else in the world, for that matter) are totally blind to the identities of the parties that are transacting. They only know the amounts involved. If you have some ecash and the fedimint goes down or turns malicious you get rugged.\n\nThere are a lot of other differences but hopefully this answers your question. https://example.com/ 13177 437789 437714.437716.437779.437784.437789.437791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8329552818988 0 \N \N f 47109284 \N 1 185307580 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457372 2025-03-28 12:57:13.439 2025-03-29 22:39:52.196 \N To a first approximation it will probably be pretty similar.\n\nHowever, I think because Bitcoiners tend to have low time preference, and that's a heritable trait, future generations are less likely to squander it.\n https://example.com/ 20829 457280 457126.457280.457372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.7129465954662 0 \N \N f 74884015 \N 1 21937410 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422895 2025-03-02 19:08:46.501 2025-03-29 22:39:52.196 \N Good condition, vintage tools. No new stuff.\n\nAnd vice grips. Thank the lord for vice grips. https://example.com/ 9969 422883 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.48689420344044 0 \N \N f 2209461129 \N 16 70791769 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 450039 2025-03-23 17:51:47.089 2025-03-29 22:39:52.196 \N Behind in my morning chores. Slept too late. Not a good start to the day. https://example.com/ 17673 450014 449601.449630.449881.449910.449920.450010.450014.450039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6928874753524 0 \N \N f 199552269 \N 3 227521449 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443359 2025-03-19 09:39:37.535 2025-03-29 22:39:52.197 \N history of 3 years in 3 slides\n\n![](https://m.stacker.news/51078) https://example.com/ 629 443358 443105.443193.443331.443350.443358.443359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6461154404346 0 \N \N f 42409150 \N 1 173736430 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443490 2025-03-19 11:40:10.745 2025-03-29 22:39:48.912 Give me your best Dad Jokes A reward goes to each of the top 10 best dad jokes (according to my humble opinion),\n\nGo! \N 20864 \N 443490 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.7439698318416 0 \N \N f 627740209 \N 5 175273817 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:38:22.003 f \N \N \N 0 0 0 0 4 0 0 187580 2024-06-21 07:47:36.334 2025-03-29 22:39:48.912 A dozen completely random things I learned this week: - At the height of Spartan society there were only 8000-10,000 Spartan soldiers. \n\n- A bitcoin *conjunction* is when the difficulty adjustment and halving occur on the same block; Early next decade (2032) we'll experience our first.\n\n- Only two pictures of the US Supreme Court in session exist. Both were illegally taken in the 1930s. \n\n- The influence of Zoroastrianism on Western religion and culture is a mindfuck.\n\n- Alexei (RIP) Navalny's bitcoin wallet has been active since 20**12**. O...G? It's still active today. 733 BTC i/o in that timeframe. [Here.](https://mempool.space/address/3QzYvaRFY6bakFBW4YBRrzmwzTnfZcaA6E)\n\n- The asteroid ending the great lizards would've been visible with the naked eye 3 months before impact. A few days before it hit, its visual order of magnitude would've made it as large and bright as the moon. Imagine the anxiety. Also, some vernacular gets funny here. It's not actually called the Chicxulub Asteroid, because Chicxulub is both the name and location of the crater it caused. The asteroid's actual name is *Chicxulub Impactor*. 🤷‍♂️\n\n- Pretty much every major sci-fi writer was woke AF. \n\n- Nuke development during WW2 gets all the attention, but napalm was also developed at the same time. Napalm claimed more lives than nukes during the war after the US Air Force firebombed Tokyo to ash and much of the Japanese island. Interestingly, the first self-sustaining nuclear reaction (not bomb) was tested on University of Chicago's athletic field in 1942, and the first napalm test was on Harvard's athletic field in 1942. \n\n- The movie *Children of Men* is still awesome.\n\n- Cali's water troubles are gone for the next couple years, and we should see historic crop production through 2025 that might help us eclipse Germany's economy briefly for the #4 spot. But...Germany is poised to flip Japan for the #3 spot. So maybe #3? These numbers always changing though.\n\n- The NCAA is an organization urged into creation by the Teddy Roosevelt Administration in 1905 after too many deaths and horrible injuries in football. The public had risen up demanding the sport be banned from colleges. One such non-player death nearly happened at the Army/Navy game when an Admiral challenged a General to a pistol duel on the field. \n\n- Moscow's population (13M) is close to the size of NYC(8.4M), LA(3.8M), and Chicago(2.76M) combined. That big really?\n\nAnything you can add?⤵\n\n\n\n \N 19394 \N 187580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5042834162746 0 \N \N f 40176187 \N 1 44179428 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424111 2025-03-03 20:36:29.113 2025-03-29 22:39:52.197 \N Aside from being impossible to read I like this a lot. Thank you. https://example.com/ 3979 424080 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0958315925972 0 \N \N f 1502144694 \N 13 46262429 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434652 2025-03-12 05:24:42.292 2025-03-29 22:39:52.197 \N Ecash mints are useful for their privacy properties and the fact that they don't require a consensus change. They will still need to use geographical arbitrage or network privacy techniques such as tor to remain operational in the face of state sponsored attacks. This is still an easier path than achieving consensus on a soft fork. My ecash bullishness remains unperturbed.\n\nOne of the frustrating aspects of discussing these options is the constant attempts to play different solutions off of each other. We don't need to focus on a single solution. We can try all solutions at once. Please stop implying that all scaling solutions are rival. They are nonrival. https://example.com/ 21577 434646 434646.434652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4107779056649 0 \N \N f 155933767 \N 2 104732162 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 01:29:48.055 f \N \N \N 0 0 0 0 2 0 0 433981 2025-03-11 14:49:55.382 2025-03-29 22:39:52.197 \N The pic is nice, but it's not from the last night ;)\nhttps://nitter.net/DominicFrisby/status/1388448025970884609#m\n\nFact checking help to improve the content value, let's promote it https://example.com/ 1489 433828 433828.433981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1116463337103 0 \N \N f 273217515 \N 2 51588652 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448117 2025-03-22 12:21:30.957 2025-03-29 22:39:52.197 \N It's really a good option. I accidently had random selected and saw a really good post that I thought was new. I zapped it and then realized it was old. https://example.com/ 11776 448015 448015.448117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4243409843838 0 \N \N f 49209514 \N 1 152364205 0 f f \N \N \N \N 448015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436396 2025-03-13 14:26:41.395 2025-03-29 22:39:52.197 \N Raider positions of need:\n* Right tackle\n* QB (we have two average starters already, but no franchise guy)\n* CB1 (our corner depth is pretty good, but there's room at the top of the depth chart)\n* Guard \n* RB (ideally a speedy receiving threat)\n\nWe do not need a kicker or punter. but all other positions are open for a clear best player available. https://example.com/ 20892 436343 436028.436343.436396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8563557746262 0 \N \N f 395202181 \N 4 158064927 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 09:32:49.097 f \N \N \N 0 0 0 0 1 0 0 447772 2025-03-22 05:59:28.635 2025-03-29 22:39:52.197 \N Price action makes us riiiiiicher, bitch.\n\nThat's good. We need better command over material goods https://example.com/ 17116 447765 446513.447049.447084.447186.447661.447685.447757.447765.447772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.90065911249106 0 \N \N f 421782595 \N 3 153603862 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447113 2025-03-21 16:19:40.624 2025-03-29 22:39:52.197 \N Same! An awesome community of like-minded folks here :) https://example.com/ 11862 446745 446371.446745.447113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8636881010291 0 \N \N f 606048014 \N 5 5875568 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434441 2025-03-11 22:19:13.7 2025-03-29 22:39:48.911 🤔 What Could Lightning's UX Look Like in 2025? 👀 Howdy Folks 🤠 \n\nMy nym is bitdern and I work at River – primarily making educational content and maintaining our Learn content repository.\n\nI want to share this article I wrote recently with you all 👉 **Looking Ahead: Lightning Payments in 2025**\n\n🔗 https://river.com/learn/lightning-payments-2025/\n\n- This article is centered around the current—and potential future—of the Lightning Network from a user-experience perspective. We think this framing makes sense because the experience is what’s most tangible to users, as opposed to the underlying technology.\n\n- I’m assuming the majority of you use Lightning on a semi-regular basis so you will understand when I say that there are aspects of the UX that definitely need an upgrade 😅 (e.g. wallet interactivity requirements). \n\n- One argument made is that LSPs will likely take a larger role in the future to alleviate some of the present-day UX hurdles. They could also perform valuable services in a privacy context; check out what Mutiny Wallet is doing with their LSP, for example!\n\nI’m looking for some general feedback: \n→ are there UX aspects that I missed, or didn’t fully nail?\n→ is the article approachable for not-so-technical folks?\n→ for the LN big-brains out there: did I get anything dead wrong?\n\n🙏 Hope that y’all find the article interesting, thought-provoking, or valuable in some way; much love! 🧡\n\n***100% of sats boosted to this post will be passed through to OpenSats***\n \N 1959 \N 434441 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 26.0062520328891 0 \N \N f 798242334 \N 5 171530946 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:26:34.49 f \N \N \N 0 0 0 0 4 0 0 447095 2025-03-21 16:07:07.261 2025-03-29 22:39:52.197 \N Lfg\n\n![IMG_0670.jpeg](https://m.stacker.news/11004) https://example.com/ 1209 446954 446954.447095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.079662445596 0 \N \N f 230686803 \N 1 220812123 0 f f \N \N \N \N 446954 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413877 2025-02-23 14:06:26.991 2025-03-29 22:39:52.198 \N This is a fantastic idea let me have my coffee get ready im running late (Cuz I spent little to many SATs there already if you know what I mean😉😉 saying hydrated) and lets try to onboard these non believers https://example.com/ 8998 413872 413854.413872.413877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6017887750824 0 \N \N f 110988545 \N 1 108590646 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416073 2025-02-25 11:19:27.929 2025-03-29 22:39:52.198 \N > What is it about technology that frightens so many people? Is it just change that people are afraid of? Uncertainty?\n\nNot all change carries risk but all risk carries change. I think evolution has installed this "change is risky" heuristic in us.\n\n> What are other examples of tech that people failed to see the value in?\n\nWe can find accounts from nay-sayers, skeptics, and doomers on nearly any change - not just technological change.\n\nWhat comes to focus for me though is AI. While I'm not a doomer, I'm also not exclusively optimistic about it. Technology so powerful it rivals humans is not Good Times Only ... I see people picking sides like they're on a scale of political influence. I like to stand vigilant on the fulcrum. https://example.com/ 1489 415637 415637.416073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2024737592005 0 \N \N f 82957710 \N 1 141283917 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450002 2025-03-23 17:22:58.911 2025-03-29 22:39:52.198 \N I think that hiding the leaderboard will hide the gamification of the rewards even more. When you say 'no rewards', do you mean no daily rewards? If so, how are you going to reward those who curate content and don't comment or post much? Maybe that's not what you mean because you say: “Also will not gain sats from general SN pool.” https://example.com/ 14370 449016 449016.450002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7271478165509 0 \N \N f 204912515 \N 1 148220709 0 f f \N \N \N \N 449016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437271 2025-03-14 12:22:18.76 2025-03-29 22:39:52.199 \N Social media influencers…. especially financial or crypto ones obvs. They prey on both greed and desperation of their victims in equal measure.. https://example.com/ 4862 437184 436752.437184.437271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9325560041697 0 \N \N f 3272172865 \N 23 236339417 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435331 2025-03-12 15:44:23.582 2025-03-29 22:39:52.199 \N 21, 69, 420 sats\n\n...the only way to tip https://example.com/ 1316 435324 435046.435324.435331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.9498543932693 0 \N \N f 599607823 \N 4 136880716 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 09:02:02.377 f \N \N \N 0 0 0 0 2 0 0 443628 2025-03-19 12:46:37.921 2025-03-29 22:39:52.199 \N HUMAN LOVE\n[![BTC-Anakin.gif](https://imgprxy.stacker.news/EpOIZZwl3e4TwaX1S6SyP-B0mAQqLDvScSZ_dH9bQP0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvdlpKRkt4R2gvQlRDLUFuYWtpbi5naWY)](https://postimg.cc/rDNP0m0R) https://example.com/ 7675 443618 442978.443048.443543.443604.443618.443628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.88842123685681 0 \N \N f 242398922 \N 1 218055769 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 2025-03-26 06:13:54.492 f \N \N \N 0 0 0 0 1 0 0 448643 2025-03-22 18:52:45.84 2025-03-29 22:39:52.199 \N I think there is a hurdle rate as a South African I can tell you very few people will be able to do this you need\n\n- A reliable power source which we don't have \n- So you need an uninterrupted power supply to keep you from getting hit with blackouts or have solar panels with a deep cell battery\n- Very few people have fibre internet and use mobile internet so you need a sim card with data on it ($5.20 per GB)\n- If you don't have mobile data towers in your area you'll need a satellite dish to either broadcast an internet connection or broadcast locally to someone who has an internet connection\n- You need liquidity, which you either need to buy from an exchange who is going to take fees off you or use a non-kyc which is going to hit you with a 30-90% premium\n\n\nThen when you finally one deal with all that channel management BS lol, not very practical, the way I see it you will have to run uncle jim models which is not unpopular here. \n\nSo what people will do is all pay 1 guy who will cover the cost to get a fibre connection for example and everyone connects to that WIFI, people do it with satellite dish tv too and even banking, we call it a "stokvel" where people all give their money to a community member who "saves/invests it" https://example.com/ 19943 448452 448349.448452.448643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8614957314188 0 \N \N f 179222321 \N 2 105250974 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3682 2022-11-08 20:40:33.98 2025-03-29 22:39:52.2 \N and that's why you NGMI https://example.com/ 21057 3681 3674.3677.3679.3681.3682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.9927896492133 0 \N \N f 595131651 \N 4 222545816 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436052 2025-03-13 09:20:37.319 2025-03-29 22:39:52.2 \N I dont have the source on-hand, but generally it takes ~2+ years to fully recover from a recession\n\nRecessions are also backwards looking. You wont fully know you're in a recession until you have consistent GDP degradation (which is a lagging indicator). \n\nhttps://fred.stlouisfed.org/series/RECPROUSM156N https://example.com/ 19826 436045 436028.436029.436045.436052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0032058507487 0 \N \N f 660418003 \N 4 213343626 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 02:39:26.134 f \N \N \N 0 0 0 0 1 0 0 435352 2025-03-12 15:59:29.077 2025-03-29 22:39:52.2 \N > As a result, my dad always felt insecure about money, no matter how wealthy he grew.\n\nSounds familiar. My folks both grew up poor, but my dad was comically poor, rural-living-in-a-shack-and-hungry poor. He has never, ever kicked it, and that mindset has caused a lot of angst, though, ironically, my siblings and I openly discuss how his pathology has also probably been the reason why my folks are relatively comfortable now.\n\nAnd so, a pattern: the problem giving rise to its own solution, which the problem prevents you from adopting. Kind of lovely, actually, like a big cat that's about to kill you.\n\nI always thought that the role of btc is the same as the role of anything, which is to help you to live a good life. I'm walking the same road with bitcoiners for like half the way, bc there is something important in asking what it means to live a good life, and digging into the defaults society wants to give you. Many of them do not hold up under scrutiny.\n\nBut two road diverge half-way through the wood, and I part ways at that point bc btc is not a fetish for me. Stacking is a tool. If my stash ever becomes life-changing in size, I'll treat it the same way I treat my table saw. I get that this will be easier said than done, for some, but I'm sure of my conclusion.\n\nI don't want to miss the starting gun. It only goes off once. https://example.com/ 716 435260 435217.435257.435260.435352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2002593962038 0 \N \N f 97174077 \N 2 47952489 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 09:25:58.412 f \N \N \N 0 0 0 0 1 0 0 435547 2025-03-12 19:19:04.088 2025-03-29 22:39:52.203 \N I would describe myself as a non-custodial pragmatist.\nI use custodial wallets mainly for micropayments, e.g. zaps on nostr and also as a backup solution when my nodes don't work for some reason. I am totally fine with the current stacker.news solution.\nAn ideal wallet should be able to switch between different backends (maybe automatically if needed?), like Zeus and getAlby, where you can connect to your own node, but also to custodial solutions. https://example.com/ 4079 435545 435046.435135.435292.435504.435545.435547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.56394176504326 0 \N \N f 343868657 \N 3 202910033 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 13:09:35.816 f \N \N \N 0 0 0 0 2 0 0 421733 2025-03-01 23:44:41.047 2025-03-29 22:39:52.203 \N You are my “competitor” but I can’t help voting for you. Send my love to your princess. I’m a teacher irl n she did great! https://example.com/ 21401 421731 421567.421722.421731.421733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.088544054013 0 \N \N f 817129433 \N 5 144669395 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421677 2025-03-01 21:36:53.805 2025-03-29 22:39:52.191 \N So they get people in and then rug them with fees? Loss-leading, basically? Lame. But predictable, I guess. https://example.com/ 11515 421655 421567.421585.421655.421677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6980446849552 0 \N \N f 224745778 \N 2 24317262 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447138 2025-03-21 16:30:28.048 2025-03-29 22:39:52.194 \N They did this in 2017. This is very old news:\nhttps://cointelegraph.com/news/microsoft-to-add-extensive-support-for-bitcoin-describes-it-as-currency https://example.com/ 21041 447125 446371.446452.447063.447086.447111.447125.447138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5868821256435 0 \N \N f 134707419 \N 2 214212783 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:06:48.934 f \N \N \N 0 0 0 0 1 0 0 435413 2025-03-12 16:56:23.291 2025-03-29 22:39:52.194 \N Rothbard's Anatomy of the State certainly comes to mind (free download via Mises: https://cdn.mises.org/Anatomy+of+the+State_3.pdf). It definitely has you question everything you were taught in formal schooling.\n\nI read Howe & Strauss's Fourth Turning last year and it blew my mind. Love the framing. Really makes you think about where we're heading and the role Bitcoin can potentially play.\n\n https://example.com/ 15556 435375 435375.435413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.20482161653968 0 \N \N f 138002766 \N 1 201439235 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N 2025-03-19 12:21:02.566 f \N \N \N 0 0 0 0 1 0 0 430201 2025-03-08 23:26:49.765 2025-03-29 22:39:52.194 \N Makes sense. This is another good argument for why one should not buy the ETF over holding keys oneself. https://example.com/ 19121 430199 429958.429970.429982.430020.430033.430199.430201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4568526370341 0 \N \N f 205362637 \N 1 192014466 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451223 2025-03-24 13:00:38.288 2025-03-29 22:39:52.194 \N Every time I visit the Stacker Saloon, I know I'll find Natalia sitting there, penning ✒️ her next comment filled with wisdom.\n\n@Natalia is not just an `Explorer`, `Writer`, and `Builder`, she is one of the most talented women I know and someone I truly admire. And I'm not just saying that because she paid me 😅 if you read her blog ([here's the link](https://blog.geoarbitrage.com/reflections/)), you will understand what I mean.\n\nOn [The Story](https://blog.geoarbitrage.com/story/) of her blog, she mentioned:\n\n> Geoarbitrage was born from the idea of `attracting like-minded thinkers` and exploring tools `for becoming a sovereign individual`.\n\nAnd it has definitely achieved that. Even though I've only known her for a short **time**, it's been enough for me to realize that she is someone I aspire to be like. I also want to live a nomad life, just like Natalia, and find ways to reclaim my sovereignty. I'm slowly working towards that goal. In the future, I hope to explore and share my discoveries along the way, passing on the torch of wisdom to others from another **timeline**.\n\nSorry for taking so long to write you this comment, but proof-of-work does take some **time** 😉 You probably know, on average, it takes about 10 minutes to mine a block, but sometimes it can take a whole hour or even more. Your block just took a little longer to mine because I got sucked into the rabbit hole of your blog and found it so interesting that I ended up spending hours reading it.\n\nGreat work on the blog, not just the content, but also the design, font, and aesthetics. It looks ~5/5~ `21M/21M`. Wen dark-mode? 😎 (i had to wear sunglasses the whole time). I'll definitely take some inspiration for my future site, although mine will be dark-mode by default hihi 😈 I also noticed that you changed the motto from `"Living and Investing Beyond Borders"` to `"Exploring Ways to Regain Self-sovereignty"` It's a much better 😉 https://example.com/ 651 451177 451177.451223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.44986975980233 0 \N \N f 347907922 \N 2 229829236 0 f f \N \N \N \N 451177 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2477 2022-10-13 16:52:28.442 2025-03-29 22:39:52.194 \N I am not religious at all but I think about this a lot. If a bunch of particles slammed together and created the big bang, well, where did those particles come from? Nothing makes sense. https://example.com/ 1064 2473 2473.2477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8039871243085 0 \N \N f 145571947 \N 1 91191978 0 f f \N \N \N \N 2473 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448205 2025-03-22 13:35:04.687 2025-03-29 22:39:52.194 \N Thanks for the heads up. Great idea @k00b! This is fantastic. I will save some dry powder for when we may need it most. https://example.com/ 21012 448200 448200.448205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7957212880565 0 \N \N f 204608404 \N 1 192129517 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N 2025-03-29 08:39:10.475 f \N \N \N 0 0 0 0 1 0 0 442109 2025-03-18 12:50:11.312 2025-03-29 22:39:52.194 \N He didn't know it would become a compliment! 🤣 https://example.com/ 20864 442084 442084.442109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7013379855368 0 \N \N f 608221609 \N 6 172102368 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435641 2025-03-12 20:55:27.708 2025-03-29 22:39:52.195 \N I'm not sure if this will improve privacy. Correct me if I'm wrong, but wouldn't the relay receiving an event with type 28333 know that it is a bitcoin transaction, and can correlate the bitcoin transaction with the IP from which it was sent from? How is this an upgrade to someone running their own node over Tor and broadcasting transactions through their own node?\n\nI guess broadcasting through nostr is better than using public nodes (assuming the relays aren't run by chain surveillance firms)? But isn't broadcasting through your own node still the most private way to use bitcoin?\n\nSomeone please shed some light on my confused newbie mind. https://example.com/ 656 435505 435497.435505.435641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4531160623414 0 \N \N f 134387565 \N 1 151562084 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 2025-03-19 22:46:47.62 f \N \N \N 0 0 0 0 1 0 0 402896 2025-02-14 08:28:37.418 2025-03-29 22:39:52.195 \N Absolutely! 🤩 https://example.com/ 2529 402871 402871.402896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6512588094279 0 \N \N f 795135691 \N 6 248545112 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446927 2025-03-21 14:33:44 2025-03-29 22:39:52.198 \N ![](https://preview.redd.it/c0qrfpdckr631.jpg?auto=webp&s=6f5e2471f1ac0d098053a96e08c87a2b2f12ce1e) https://example.com/ 10981 446898 446313.446884.446898.446927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0807911399071 0 \N \N f 778301740 \N 6 209180710 0 f f \N \N \N \N 446313 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447246 2025-03-21 18:09:44.945 2025-03-29 22:39:52.198 \N Interesting. I certainly wouldn't qualify, as I'm not someone with a deep understanding of the Austrian school of thought.\n\nBut, speaking as a mainstream economist who's pretty sympathetic to Austrian ideas, and pretty critical of mainstream economics, I'd say this: \n\nI always got the sense that Austrians are unwilling to engage with mainstream economics using the tools of models and econometrics. They seem way too critical of the mathematical and statistical approach to economics. Most mainstream economists understand that models are just tools--not to be taken too seriously--but still useful in helping us think more rigorously about a particular problem. I think Austrians would probably be taken more seriously by mainstream economists if they were willing to use modern tools to illustrate and argue for their ideas, rather than sticking to a primarily dialectic approach.\n\nBut this is just an outsiders' perspective. It's possible that I'm not characterizing the Austrians fairly.\n\n https://example.com/ 18901 447243 446819.447190.447243.447246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9559423812435 0 \N \N f 179254972 \N 1 227028878 0 f f \N \N \N \N 446819 \N 0 0 \N \N f \N 2025-03-28 11:27:19.216 f \N \N \N 0 0 0 0 1 0 0 448331 2025-03-22 14:51:52.811 2025-03-29 22:39:48.911 Sunday Survey: Friend has $10k in BTC, what wallet do you recommend? \N \N 5444 \N 448331 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.23904153674511 0 \N \N f 747438504 \N 9 51667001 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:43:17.797 f \N \N \N 0 0 0 0 2 0 0 434723 2025-03-12 07:33:06.724 2025-03-29 22:39:52.199 \N I was thinking a prediction market might be a fun territory. Tough to run a proper order book on SN, but prob could figure out bid/ask spreads in conversation and bootstrap a liquidity/fun. If you want to make it, I'll join! 🙋‍♂️ https://example.com/ 20788 434440 434440.434723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2094650415277 0 \N \N f 451519676 \N 3 217431110 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 2025-03-19 01:47:39.105 f \N \N \N 0 0 0 0 1 0 0 410143 2025-02-20 09:38:13.286 2025-03-29 22:39:52.2 \N you can just add listenonion=1 to your config https://example.com/ 17209 410097 410012.410097.410143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7972779482534 0 \N \N f 83106476 \N 1 194603632 0 f f \N \N \N \N 410012 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436368 2025-03-13 13:59:13.92 2025-03-29 22:39:52.2 \N That answers my question 😝 https://example.com/ 10934 436241 436241.436368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2025759047227 0 \N \N f 114006539 \N 1 195676229 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:40:52.108 f \N \N \N 0 0 0 0 1 0 0 404546 2025-02-16 00:43:36.491 2025-03-29 22:39:52.2 \N Bitcoin blockspace: *Exists*\nCasey Rodarmor:\n![](https://digible.com/wp-content/uploads/2020/06/2020-06-22_14-38-36.png)\n https://example.com/ 16562 404411 404136.404203.404242.404332.404334.404411.404546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7836370654857 0 \N \N f 74203351 \N 1 58511538 0 f f \N \N \N \N 404136 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2866 2022-10-20 16:51:17.438 2025-03-29 22:39:52.201 \N @k00b @ek is there any problem with the profile picture? I tried to change my profile photo, but I couldn't. https://example.com/ 2196 2828 2828.2866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5850561953695 0 \N \N f 68708719 \N 1 110719638 0 f f \N \N \N \N 2828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421222 2025-03-01 13:56:50.543 2025-03-29 22:39:52.201 \N Snaily went trick-or-treating last night.\nhttps://i.ibb.co/7kKytRF/c77ea9cf-c67a-4a86-b55f-27eb33ad0465.jpg https://example.com/ 7510 420816 420816.421222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6287333843116 0 \N \N f 137095460 \N 1 48562081 0 f f \N \N \N \N 420816 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435064 2025-03-12 12:42:04.159 2025-03-29 22:39:52.201 \N @WeAreAllSatoshi is already working on this [here](https://github.com/stackernews/stacker.news/pull/403) https://example.com/ 20019 433828 433828.435064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83946162983817 0 \N \N f 239480942 \N 1 186480469 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-19 06:21:36.812 f \N \N \N 0 0 0 0 1 0 0 447217 2025-03-21 17:41:47.719 2025-03-29 22:39:52.201 \N # I'M HERE FOR A MULTITUDE OF REASONS!\n\nONE:\n\nI *THOROUGHLY* ENJOY PARTAKING IN A BITCOIN-CENTERED, LIGHTNING-POWERED AND GROWING (HOPEFULLY, THERE'S ENOUGH LOVE AND SATS LEFT FOR A FEW MORE OF US) SOCIAL MEDIA / WILDLY BETTER REDDIT (IF TERRITORIES ARE HERE TO STAY, WHICH I HOPE).\n\nTWO:\n\nI'M ABSO-SATTY-LUTELY ENJOYING THE WAY ONE CAN *ACTUALLY EARN SATOSHIS* ON SN, AND THEN THERE'S THE REWARDS! OHH... THE REWARDS... 🥰🥰\n\nTHREE:\n\nI ENJOY POSTING CONTENT HERE, FOR FROM WHAT I'VE NOTICED THAT THERE IS NO SUCH THING AS HATE / TOXICITY OR UNWANTED BEHAVIOUR IN GENERAL... AT LEAST I HAVEN'T COME ACROSS IT UNTIL NOW!\n\nFOUR:\n\nI'M IN ABSOLUTE ECSTASY THAT THE AFOREMENTIONED THREE POINTS CAN BE REACHED THROUGH USING *ONE*, I REPEAT *ONE* GENIUS APPLICATION!\n\nI applaud @k00b @ekzyis @kr & more for their efforts and the masterpiece they already created ( and will make even better as time goes by!)\n\nYour's truly, \n\n- *Fabs*.\n\nPS: I hope I've come across clearly. https://example.com/ 5646 447212 446964.447212.447217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7993321704379 0 \N \N f 3236242 \N 1 211333076 0 f f \N \N \N \N 446964 \N 0 0 \N \N f \N 2025-03-28 11:04:35.834 f \N \N \N 0 0 0 0 1 0 0 450237 2025-03-23 19:54:26.029 2025-03-29 22:39:52.202 \N Still here 12 months in bud 💪💪 \n\nApparently I can stay solvent and stupid longer than given credit for 🤣🤣 https://example.com/ 17519 450231 449767.450221.450231.450237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.2967644732103 0 \N \N f 103431485 \N 1 183139330 0 f f \N \N \N \N 449767 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 409994 2025-02-20 05:39:17.456 2025-03-29 22:39:48.911 Core Lightning Community is now open | Build On L2 \N https://community.corelightning.org 15075 \N 409994 \N \N \N \N \N \N \N \N history \N ACTIVE \N 20.3685640216713 0 \N \N f 26243496 \N 1 114204150 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416745 2025-02-25 20:09:31.597 2025-03-29 22:39:52.202 \N https://image.nostr.build/6d3b6408edef51cdc757c32bb355475bc75f14daa20fa776f9076f025c0e415e.gif https://example.com/ 20840 416158 416158.416745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1955196930917 0 \N \N f 133015726 \N 1 51572048 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434789 2025-03-12 08:42:48.206 2025-03-29 22:39:52.202 \N Published post about Bisq [After one year of continuous use, this is my conclusion about BISQ](https://portal.einundzwanzig.space/news/mein-fazit-zu-bisq-nach-einem-jahr-im-dauereinsatz?l=de) (DE). https://example.com/ 19829 434717 434717.434789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.67498789353575 0 \N \N f 222295341 \N 1 213684693 0 f f \N \N \N \N 434717 \N 0 0 \N \N f \N 2025-03-19 03:34:33.031 f \N \N \N 0 0 0 0 1 0 0 436072 2025-03-13 09:38:43.112 2025-03-29 22:39:52.202 \N Day 16 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-'\n https://example.com/ 3745 436028 436028.436072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.70957554818465 0 \N \N f 170961426 \N 1 11070292 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:52:46.347 f \N \N \N 0 0 0 0 1 0 0 435658 2025-03-12 21:15:44.62 2025-03-29 22:39:52.202 \N The nice thing about SN is we own our content, unlike other social media. That includes the power to share it or remove it. Once the power to delete is removed, you might as well be on facebook. https://example.com/ 1245 435357 435357.435658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2873647972639 0 \N \N f 130062234 \N 1 84484023 0 f f \N \N \N \N 435357 \N 0 0 \N \N f \N 2025-03-19 14:33:10.158 f \N \N \N 0 0 0 0 1 0 0 402105 2025-02-13 15:01:14.818 2025-03-29 22:39:48.911 A refresher on what renders a good a money, and why Bitcoin isn't, yet. ### Introduction\n\nI often hear people praise Bitcoin as the non-plus-ultra when it comes to being a "medium of exchange", "store of value" and "unit of account", and thus, the best money ever- only that it isn't, *yet*.\n\nWhile there is some truth to the above, I still think that many people shout (and claim) the above *too fast*- and *furious*, without even knowing what Bitcoin has to comply with to be able to "claim" said attributes- just as many people like to shout "**BITCOIN FIXES THIS**" at each- and every possible nuisance that cross their sights.\n\nI'd like to try and explain some things in this regard, in hopes of having people leave with a better idea of this topic.\n\n** *I've written this to the best of my knowledge (and in accordance to the Bitcoin Standard), if I've got it wrong, feel free to correct me*.\n\n*** *English isn't my native language, which means that I might have worded a given part poorly, sorry for that.*\n\n### A medium of exchange and the problem of matching needs.\n\nAny person who chooses to buy something, not to own it, but with the aim of exchanging it for something else, effectively turns it into a medium of exchange.\n\nA small market (think tribes and other small communities) doesn't have much room for specialization and trade; everyone participates in the production of essential goods and services, and directly exchanges them with each other.\n\nThe larger the market, the more opportunities for specialization and exchange, but the greater the problem of matching needs - what someone wants to acquire is produced by someone who does not need one's own offer. \n\nThis problem is characterized by three different dimensions:\n\n1. The scales do not sufficiently match: what someone needs may not be equivalent to what someone possesses, and dividing into smaller units may not be practical.\n\n2. Matching time-frames: what someone wants to sell may be perishable, but what someone wants to buy is durable and more valuable, making it difficult to accumulate enough of one's perishable goods to exchange for a durable one at a specific time.\n\n3. Lack of matching locations: one may want to sell a house in one place to buy a house in another place, but (most) houses cannot be moved.\n\n### Direct and indirect exchange\n\nThese "dimensions" make direct exchange very difficult and often require multiple levels of indirect exchange to satisfy one's economic needs; with indirect exchange, someone exchanges their good until one owns the good that the counterparty currently needs:\n\n- Someone might exchange their apples for shoes, and said shoes for wood, only to ultimately exchange said wood for the good one initially needed.\n\nThese goods are called mediums of exchange, and since any good can serve as a "medium of exchange", indirect exchange can become impractical the bigger the economy gets, as one has to constantly look for different goods needed by the counterparty.\n\nThe problem of matching needs and the impractical handling of indirect exchange can be solved by people agreeing on one single good that can be exchanged by everyone, for everything; a good that's a *widely accepted* medium of exchange is referred to as *money*.\n\n### A money's central function\n\nThe central function of money is to be the dominant medium of exchange; money is a good that wasn't purchased to be consumed- nor to be used in the production of other goods, but to be exchanged wherever, whenever and for whatever the owner wants.\n\n### A MoE can only be money when it fulfills a money's functions\n\nWhether a given good can be used as money or not, is dependent on it's ability to fulfill the three functions of money: it's saleability, ability to act as a store-of-value, and usability as a unit-of-account.\n\n### Saleability\n\nThe saleability refers to the easiness of exchanging a given good on the market whenever its owner wishes, and with minimal loss of value.\n\nThe relative saleability of goods can be measured by looking at whether or not a given good "covers" each of the three dimensions of the problem of matching needs: their saleability across scales, space, and time.\n\n- Saleability across scales refers to a given good's ability of being divided into smaller units, or combined into larger units, enabling the owner to exchange said good in any desired quantity.\n\n- Saleability across space refers to a given good's place-independent saleability: is said good easy to exchange on a national- and international level, is it easy to take with you and transport?\n\n- Saleability across time refers to a given good's ability of preserving value for the future, thereby also enabling the owner to retain wealth.\n\n### Storage of Value\n\nFor a good to remain saleable over time, it must be immune to decay, corrosion, and other forms of deterioration- In addition, the supply of a good should be resistant to sudden artificial expansion.\n\nTo prevent the supply of a good from artificial expansion or general significant expansion of the supply, a natural or artificial mechanism is needed to restrict the entry of the good into the market and maintain its value over time. \n\nTo fulfill a monetary role, a good must be expensive to produce because the temptation of cheap money production destroys the wealth of savers and the incentive to save in that medium.\n\nThe relative difficulty of producing new units of money determines the hardness of money. Money whose supply is difficult to increase is called hard money, while soft money is a type of money whose supply can be easily increased.\n\nThe "hardness" of money is derived from the relationship between the *stock* and *flow* of a good used as money. \n\nThe "stock" represents the existing supply of the good, and the "flow" is the additional production that occurs in the coming period. \n\nA good with a low stock-to-flow ratio is a good whose supply can be significantly increased artificially; these goods would hardly be able to maintain their value, because the supply can increase faster than the demand; on the contrary, the higher the stock-to-flow ratio, the more likely it is that a good will maintain its value over time, as its supply increases slowly, it enables the good to keep-up with demand without outrunning it, rendering the respective good to stay saleable over time.\n\n### Unit of Account\n\nThe broad acceptance of a good allows it to express all prices within its terms. In an economy without a recognized medium of exchange, every good must be valued in relation to every other good, resulting in a large number of prices and making economic calculations extremely difficult. \n\nIn an economy with a recognized medium of exchange (money), the prices of all goods are expressed in relation to said medium of exchange, rendering it the unit of account. \n\nIn such a society, money serves as a "ruler" for the measurement of interpersonal values; it rewards producers in proportion to the value they provide to others and tells consumers how much they have to pay in order to acquire their desired goods and services. \n\nOnly with a unified medium of exchange as a unit of account is complex economic calculation possible, which enables the possibility of specialization in complex tasks, wealth formation, and large, internationally-intertwined markets.\n\nThe functioning of a market economy depends on prices, and prices are, strictly speaking, dependent on a common medium of exchange that reflects the relative scarcity of different goods in relation to said medium of exchange.\n\n### How does Bitcoin fit the bill?\n\nBitcoin covers the three "dimensions" of the problem of "matching needs" as follows:\n\n- Divisibility: Bitcoin's native token can be divided up to eight places after the decimal point, the smallest unit being a *satoshi*, and combined into large units of up to one-hundred-million satoshis known as a *bitcoin*, allowing users to exchange any desired quantity. This divisibility provides immense flexibility in conducting transactions, whether it involves microtransactions or substantial transfers.\n\n- Portability: Being a digital asset, Bitcoin is inherently place-independent. It can be transmitted swiftly and securely over the internet, making it a versatile medium of exchange that can be seamlessly transported- even across borders.\n\n- Scarcity: Bitcoin's supply is strictly enforced and capped at ~ twenty-one million coins. This predetermined scarcity ensures its saleability over time. Unlike traditional fiat currencies subject to a low stock-to-flow, Bitcoin's fixed supply gives it the highest stock-to-flow available today, rendering it a reliable store of value, and thus, an attractive medium of exchange.\n\nBitcoin is a promising medium of exchange, and a viable option to be used as money- but it isn't, *yet*...\n\nSee, what Bitcoin lacks is it's broad acceptance, which is in part because Bitcoin's transaction fees are volatile, varying from *very low* to *very high*, rendering transacting with it's native token quite expensive at times, and since a transaction's only "final" after a given amount of confirmations, a transaction isn't instantly "valid"- at least in theory.\n\nAlthough there's being worked on L2's that try to minimize- or remove the above completely - rendering Bitcoin more suitable to transact with - these also come with their own share of problems and / or compromises.\n\nBitcoin can easily be the best "store of value" we've ever had, but in order to be a global monetary medium, Bitcoin also has to prove itself as a "unit of account"- something that's only possible after claiming the status of being a widely accepted and reliable "medium of exchange".\n\n*I'll end it here, but feel free to comment suggestions in regards to expanding, correcting or improving the post!* \N 19303 \N 402105 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.0353864380718 0 \N \N f 962874979 \N 7 157872357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 410635 2025-02-20 15:25:37.52 2025-03-29 22:39:48.911 Nothing should be taken for granted Inspired by a [post](https://stacker.news/items/556364/r/Taft?commentId=556392) by @cryotosensei in Stacker Saloon regarding his ex-student of 12 years who has blood cancer, I wanted to share some thoughts related on this topic based on a personal experience. \n\nFirstly, I would like to say that we humans often take things for granted, but we forget that life is very fragile and can be broken at any moment. For example, you have a serious accident on your way to work and you are in a coma for three months, but when you wake up you realize that you can no longer walk because you are paralyzed; you are having fun with your friends and suddenly you have a heart attack and die; while you think you are in perfect health, a simple examination reveals that something is wrong with your body, and a more detailed examination reveals that a mass of tumor has developed inside you, which has now reached the final stage, and the doctors give you only a few months to live; and such cases are endless. No one has made a contract with some supernatural power to live 70, 80, or 90 years. Everything is uncertain. Some say that man's fate is in the hands of God, and others say it is in the hands of chance. But it is not in human's hands.\n\nSecondly, I would like to tell you that two years ago I had an almost personal experience of the last example I mentioned: suddenly discovering that a tumor mass is rapidly growing inside you. I say almost personal because the tumor mass did not develop inside my body, but inside my father's body. I remember that I had even written a haiku in my language for this experience, which I will try to translate into English, trying to convey the idea behind this haiku: \n\n>like a snow avalanche\nis zooming silently out\nthe evil tumor\n\nThe idea is that like a small avalanche of snow that expands and becomes a huge mass of snow that destroys everything in its path, so too this small dead cell expands and becomes a large mass of tumor that ultimately destroys the human body. \n\nMy dad was a simple man. He worked all his life as an electrician and had a difficult life. He was a very gentle, soft spoken man, but he was reserved and introverted. It was very difficult for me to communicate with him, especially during my teenage years, and a great distance was created between us as the years passed. After I turned eighteen, I left my parents' home. I went to another city to study, but later I settled there and I still live in that city. So I could not go to my parents' house very often, and the communication with my father was very limited and superficial. However, I always wanted to break the ice that had been created in our relationship, but I never took that step and put it off for later with the idea that I'll do it sometime in the future. And the years went by...\n\nTwo years ago (about 20 years after I left my parents' house), my parents moved to the city where I live, and now I could see them very often, and with a lot of effort, I started to have a more open and deeper communication with my father, and it seemed that things were going well. But less than a month after they moved to my town, my father suddenly began to have difficulty breathing. He had been a smoker all his life. After many medical examinations and tests, it was very clear that my father's lungs were affected by a very rare and very aggressive tumor, which showed no visible signs until it reached the final stage and was blocking his breathing. \n\nNo doubt it was a hard shock for me and my mother. He was still young. He was in his 60s. It all happened very suddenly. Just when I thought I would finally have some time to develop a deeper relationship with him and "make up for lost time," we were unexpectedly faced with this terrible disease. Life is never what you want it to be.\n\nFrom the moment he was diagnosed, my father lived only three and a half months, but even those months were filled with physical and emotional pain. He began to close in on himself again, and it became even more difficult to communicate with him. At least his suffering didn't last for a long time. \n\nLife gave me a great lesson, but I had to pay a high price for it: the lack of communication with my father. And the lesson I learned is this: Take nothing for granted! Be aware that you can lose everything at any moment! If you have something important to do, do it now, while you still have time, because you never know what tomorrow will bring! And I saw what "tomorrow" has brought me... \n\nI hope my experience inspires you and you don't make the same mistake I did! \N 6360 \N 410635 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.45997046890761 0 \N \N f 356946625 \N 2 26357564 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 442551 2025-03-18 16:31:41.868 2025-03-29 22:39:48.911 Best ways to send Lightning Network sats onchain for custodial users Hey stackers!\n\nCouple of days ago I [asked](https://stacker.news/items/100050) stackers for an advise on best services offering LN swaps to receive coins onchain. First of all I’d like to thank everyone for their engagement and numerous suggestions. \n\nI’ve decided to give back to the community and share the results of my practical experiments in swapping LN sats for onchain bitcoins. I’ll be sharing the basic options suitable for users, holding their LN sats with custodial services - wether it’s wallets, such as BlueWallet or Wallet of Satoshi or web apps, such as Alby or Coinos. If you’re running own node or would like to check out a deeper dive down this topic, please consider reading @DarthCoin 's blogpost [here](https://darthcoin.substack.com/p/lightning-network-submarine-swaps).\n\nThe options below will allow you to generate LN invoice, receive sats and withdraw onchain coins:\n\n • [Deezy](https://swap.deezy.io/) – the cheapest option I’ve managed to find. Sending 100k sats costs ~700 sats. Provides an option to choose miner fees, allowing to save funds when willing to wait\n\n • [Fixed Float](https://fixedfloat.com/) – more expensive service. Seems cheaper, but the trick is they do not include miner fees when showing the amount to be received in the calculation window. Swap costs 1% + network fees. \n\n • [Boltz](https://boltz.exchange/) – yet another exchange. Swapping 100k sats costs ~6,500 sats\n\n • [Wallet of Satoshi](https://www.walletofsatoshi.com/) – custodial wallet allowing to send/receive both LN and onchain coins. Swap costed me 7k sats, the fee is fixed but depends on how congested the network is. May be beneficial in case of large swaps. ([Muun](https://muun.com/) wallet is an alternative)\n\n • [LNtx bot](https://darthcoin.substack.com/p/lntxbot-users-guide) – handy for Telegram users. The bot uses Deezy for performing swaps. In my case charged 700 sats (same as Deezy) + 311 sats (which I assume is FiatJaf’s cut 😂)\n\n • [Coinos](https://coinos.io/) – handy service with multiple use cases. Charges depending on network congestion – One of the swaps cost me 1k sats, the one next day cost 3k sats.\n\nThe choice is yours. \n\nI’ll say that until I encountered such a question from some of my fellow comrades I didn’t even think of sending LN sats back onchain. I always put them into action either through buying some cool stuff online, tipping bitcoiners, listening to pods and paying a few sats per minute etc.\n\nHope this was useful.\n \N 9332 \N 442551 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.22861728715579 0 \N \N f 74143725 \N 1 28319355 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:59:58.966 f \N \N \N 0 0 0 0 1 0 0 403219 2025-02-14 14:52:34.308 2025-03-29 22:39:48.912 The Basic Laws of Human stupidity - part 6 & 7 >Previously:\n>- [Introduction and Chapter 1](https://stacker.news/items/678475)\n>- [Chapter 2](https://stacker.news/items/679184)\n>- [Chapter 3](https://stacker.news/items/680471)\n>- [Chapter 4](https://stacker.news/items/681686)\n>- [Chapter 5](https://stacker.news/items/683011)\n\n![](https://m.stacker.news/51782)\n\n## Chapter 6\n\n### Stupidity and Power\n\nLike all human creatures, also stupid people vary enormously in their capacity to affect their fellow men. Sorne stupid people normally cause only limited losses while others egregiously succeed in causing ghastly and widespread damages not only to one or two individuals but to entire communities or societies. The damaging potential of the stupid person depends on two major factors. First of all, it depends on the genetic factor. \n\nSorne individuals inherit exceptional doses of the gene of stupidity and by virtue of inheritance they belong from birth to the élite of their group. The second factor which determines the potential of a stupid person is related to the position of power and consequence which he occupies in society. Among bureaucrats, generals, politicians and heads of state one has little difficulty in finding clear examples of basically stupid individuals whose damaging capacity was ( or is) alarmingly enhanced by the position of power which they occupied ( or occupy) . Religious dignitaries should not be overlooked.\n\nThe question that reasonable people often raise is how and why stupid people can reach positions of power and consequence.\n\nClass and caste were the social arrangements which favored the steady supply of stupid people to positions of power in most societies of the preindustrial world. Religion was another contributing factor. In the modern industrial world class and caste are banished both as words and as concepts and religion is fading away. But in lieu of class and caste we have political parties and bureaucracy and in lieu of religion we have democracy. Within a democratic system, general elections are a most effective instrument to insure the steady maintenance of fraction rY among the powerful. One has to keep in mind that according to the Second Basic Law, the fraction rY of the voting population are stupid people and elections offer to all of them at once a magnificent opportunity to harm everybody else without gaining anything from their action.\n\nThey do so by contributing to the maintenance of the rY level among those in power.\n\n## Chapter 7\n### The Power of Stupidity\n\nIt is not difficult to understand how social, political and institutional power enhances the damaging potential of a stupid person. But one still has to explain and understand what essentially it is that makes a stupid person dangerous to other people - in other words what constitutes the power of stupidity.\n\nEssentially stupid people are dangerous and damaging because reasonable people find it difficult to imagine and understand unreasonable behavior. An intelligent person may understand the logic of a bandit. The bandit's actions follow a pattern of rationality: nasty rationality, if you like, but still rationality. The bandit wants a plus on his account. Since he is not intelligent enough to devise ways of obtaining the plus as well as providing you with a plus, he will produce his plus by causing a minus to appear on your account. AU this is bad, but it is rational and if you are rational you can predict it. You can foresee a bandit's actions, his nasty manoeuvres and ugly aspirations and often can build up your defenses.\n\nWith a stupid person all this is absolutely impossible as explained by the Third Basic Law.\n\nA stupid creature will harass you for no reason, for no advantage, without any plan or scheme and at the most improbable times and places.\n\nYou have no rational way of telling if and when and how and why the stupid creature attacks.\n\nWhen confronted with a stupid individual you are completely at his mercy.\n\nBecause the stupid person's actions do not conform to the rules of rationality, it follows that: \n- a) one is generally caught. by surprise by the attack;\n- b) even when one becomes aware of the attack, one cannot organize a rational defense, because the attack itself lacks any rational structure.\n\nThe fact that the activity and movements of a stupid creature are absolutely erratic and irrational not only makes defense problematic but it also makes any counterattack extremely difficult - like trying to shoot at an object which is capable of the most improbable and unimaginable movements.\n\nThis is what both Dickens and Schiller had in mind when the former stated that «with stupidity and sound digestion man may front much» and the latter wrote that «against stupidity the very Gods :fight in vain».\n\n\n### RECAP of Basic Law of Human stupidity:\n1. Always and inevitably everyone underestimates the number of stupid individuals in circulation.\n2. The probability that a certain person be stupid is independent of any other characteristic of that person.\n3. A stupid person is a person who causes losses to another person or to a group of persons while himself deriving no gain and even possibly incurring losses.\n\n*Stay tuned... just two more chapters to come.*\n \N 13467 \N 403219 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 27.8226474434543 0 \N \N f 219210714 \N 1 193888337 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436152 2025-03-13 10:57:19.469 2025-03-29 22:39:52.201 \N There have been attempts at a reddit-style frontend for nostr and it really sucks. It's the same, low energy, low signal content shown in a different format. Would be really interesting to see a bifurcation where reddit-style usage of nostr is entirely different content, if that makes sense. https://example.com/ 20713 436036 436036.436152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2462346865309 0 \N \N f 221783547 \N 1 182584045 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N 2025-03-20 07:52:44.277 f \N \N \N 0 0 0 0 1 0 0 416982 2025-02-26 00:46:44.868 2025-03-29 22:39:52.201 \N omni layer, counter party, colored coins...\n\ntime is a flat circle https://example.com/ 16193 416954 416511.416954.416982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2744552336907 0 \N \N f 242994092 \N 1 58582563 0 f f \N \N \N \N 416511 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428417 2025-03-07 09:02:28.716 2025-03-29 22:39:52.201 \N Posts created the same day could get exponentially more expensive to create... https://example.com/ 695 428354 424571.424907.424921.424946.424988.428312.428320.428354.428417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6291082915172 0 \N \N f 855399791 \N 5 199956007 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455286 2025-03-26 22:17:33.066 2025-03-29 22:39:52.201 \N I have a lightning address attached (WoS). It’s been working well all the time. Last one 3 hours ago. In the last hour keeps giving me this error and sats remain in SN. \n\n> by "withdraw sats" do you mean auto-withdraw or something else?\n\nAuto withdraw, sorry https://example.com/ 11678 454254 335484.335562.335591.335690.335721.335729.335791.336308.336318.336322.452856.453420.453900.453968.454254.455286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5514445443611 0 \N \N f 131367255 \N 1 246822650 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447116 2025-03-21 16:20:44.99 2025-03-29 22:39:52.201 \N Bitcoin is a public ledger. Everybody can always see how much bitcoin is at each address. \n\nYou get privacy by making sure your identity is not connected to an address where you hold bitcoin. \n\nIf you withdraw from an exchange where your identity was known, the only way to get this privacy is coinjoins. \n\nCheck out samourai, wasabi, and join market. https://example.com/ 2330 446942 446942.447116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4649037110256 0 \N \N f 7083301 \N 1 201387445 0 f f \N \N \N \N 446942 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420994 2025-03-01 10:35:56.363 2025-03-29 22:39:52.202 \N I'm going to keep running my node. Don't shoot the messenger. This case has to be challenged. https://example.com/ 7966 420949 420888.420949.420994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6208015000385 0 \N \N f 221485354 \N 1 16673897 0 f f \N \N \N \N 420888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437973 2025-03-15 04:20:33.748 2025-03-29 22:39:52.202 \N I'm closer to you than I am to the isolationist rhetoric of many bitcoiners.\n\nHowever, I have a few caveats and addendums:\n- "Hoarding" does enhance purchasing power for everyone else, so it does make the world a better place.\n- Saving now (while it's easy) for anticipated expenses is prudent.\n- Financially secure people make for a more stable society.\n\nI do like the perspective, though. A better money will mean more exchange and more preserved value. Both of those things will mean it's easier to acquire what we need in the future than it is in the present. https://example.com/ 2065 437970 437966.437970.437973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0119515989226 0 \N \N f 336554335 \N 2 129058247 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407902 2025-02-18 12:59:36.238 2025-03-29 22:39:52.202 \N What a week! Thank God it's Friday. https://example.com/ 811 407870 407870.407902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.1826319393213 0 \N \N f 9331236 \N 1 118015641 0 f f \N \N \N \N 407870 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443364 2025-03-19 09:47:39.927 2025-03-29 22:39:48.912 Blink dev team is ignoring Darthcoin requests 😂 Hey @agbegin seems that Blink dev team still ignore my request about showing the balance in BTC and not in fiat shitcoin... see https://stacker.news/items/344399\nhttps://github.com/GaloyMoney/galoy-mobile/pull/2898\n\nI also posted on their github several feature requests... still ignored.\nSee issues no: [#2673](https://github.com/GaloyMoney/galoy-mobile/issues/2673) | [#2869](https://github.com/GaloyMoney/galoy-mobile/issues/2869) | [#2870](https://github.com/GaloyMoney/galoy-mobile/issues/2870) | [#3137](https://github.com/GaloyMoney/galoy-mobile/issues/3137) | [#3215](https://github.com/GaloyMoney/galoy-mobile/issues/3215)\nThey are mad of me?\n\nDo I have to rant more to be heard? \N 8684 \N 443364 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 29.2229274940252 0 \N \N f 6070173 \N 1 127530996 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:38:38.526 f \N \N \N 0 0 0 0 1 0 0 416590 2025-02-25 17:53:21.741 2025-03-29 22:39:48.912 What's essential to learn that's not taught in school? The study of money of course. \N 697 \N 416590 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.972948413831 0 \N \N f 217038178 \N 2 224553003 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428481 2025-03-07 10:30:35.703 2025-03-29 22:39:48.912 After hearing the story of "The Man on Monkey Island," I pocketed my orange pill Dear Stacker News,\n\nThis is my first post in the #1 SN territory ~bitcoin.\n\nYesterday I was at my daughter's daycare "Fall Festival" event. It was great! They cordoned off the parking lot and setup all these booths and tents with free games for the daycare kids, parents, and extended family to play.\n\nMy friend, a fellow father, was there with not just his daugher, but also his grandfather-in-law. He introduced me to him as a great Dad, but also as his _bitcoin_ friend. Literally that was all he said, and I hadn't said anything yet. Unsolicited the grandfather starts,\n>"Let me tell you the story about The Man on Monkey Island. You see, there once was a man on and island who told all the villagers that he'd buy any monkey they had for $100. Any monkey! The villagers gladly handed over any monkeys.\nThen, he told them he'd pay $500 for any monkey they had. Any monkey! Well the villagers went crazy for this, grabbing any monkey they could find and selling it to him. Sure enough he bought every single one.\nThen, he told them he was leaving on a two week vacation, but when he came back, he would buy any monkeys they had for $1000 each! Well, in his absence, the villagers all went to his third party agent, and bought all the monkeys the agent could sell them.\nExcept this time, the Man on Monkey Island never returned."\n\nI've never seen a grandfather so smug in my life. I just smiled and said, "Thanks for the story. Sounds like Bitcoin is too risky for you." And I pocketed my orange pill instead of _shoving it down his throat._\n\nYou see, he's a grandfather. He's set in his ways. And with unsolicited stories like these, he's probably convinced himself he's got enough fiat to comfortably retire if he hasn't retired already. Save my orange pill for someone who wants it.\n\nI texted my friend later,\n>"Btw I'm glad I dropped it because I wanna be on good terms! But what I would've said to your grandfather-in-law is that unlike The Man on Monkey Island, Bitcoin has been around for 15 years and its market value has grown into a trillion dollar asset class."\n\nMy friend replied,\n>"You're totally fine. His idea of money management is paying someone else to do it."\n\nMy friend hasn't bought any bitcoin yet. That's why _I'm_ the one who's _his_ bitcoin friend. Was I right to pocket the orange pill for Grandpa?\n\nThanks,\n@realBitcoinDog \N 13566 \N 428481 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 5.36324456716123 0 \N \N f 227753683 \N 1 119522581 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421020 2025-03-01 11:01:59.453 2025-03-29 22:39:52.191 \N wow bro, I didn't realize you cared so much about shitcoins https://example.com/ 6030 420895 420895.421020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1468294798965 0 \N \N f 525116343 \N 3 164769491 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424130 2025-03-03 20:48:11.612 2025-03-29 22:39:52.191 \N When I started reading novels again, I noticed my brain changing modes. There was actually a bit of a hurdle for my brain to settle into doing an uninterrupted activity like that. My work tends to be very fragmented, so it's a bit rare that I get to spend several consecutive hours working on something.\n\nI was also thinking about this a bit while chatting with @siggy47 about his cruise. Whenever we go on a cruise, there's a noticeable adjustment to not rushing through things as though you have something else to get to. \n\nDo you think there are benefits of being fragmented rather than present? Or is it just a new obstacle that we need to adapt to? https://example.com/ 21430 424111 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.83798290595113 0 \N \N f 732749828 \N 6 113718139 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420986 2025-03-01 10:22:12.116 2025-03-29 22:39:52.191 \N ![](https://m.stacker.news/58014) https://example.com/ 1741 420959 420895.420959.420986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.52333947724334 0 \N \N f 126332763 \N 2 147198542 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410698 2025-02-20 16:13:05.749 2025-03-29 22:39:52.202 \N Show *preimage*. https://example.com/ 18608 409787 409787.410698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1138122371682 0 \N \N f 227463566 \N 1 39786452 0 f f \N \N \N \N 409787 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422574 2025-03-02 14:54:57.327 2025-03-29 22:39:52.202 \N I think it is truly rare that people find their "purpose" and pursue that one thing. Ultimately purpose is what you make it. My purpose now is to give all that I can to raising and teaching my kids so they can be prepared to build a life (and purpose if you will) for themselves and to help out my parents as they traverse the home stretch of their lives. \n\nMaybe as my kids grow up and my parents pass on my purpose will change again, but for now I am where my feet are. https://example.com/ 20243 422569 422334.422406.422408.422569.422574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.43350124608801 0 \N \N f 378707873 \N 2 83408638 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307595 2024-11-25 08:21:47.641 2025-03-29 22:39:52.202 \N https://cdn.discordapp.com/attachments/796935699034144798/1224080427921182821/media-cache.png?ex=661c30bc&is=6609bbbc&hm=fa6abd85ec020e6fec88852b82e23ebd65694627d082ecdf1a80ebcfed5ec7e5& https://example.com/ 19459 307592 306830.306832.307574.307576.307592.307595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1411348003272 0 \N \N f 203335526 \N 1 213294622 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435261 2025-03-12 15:05:06.17 2025-03-29 22:39:48.901 How to crack encrypted SSH keys with John the Ripper I asked stackers in https://stacker.news/items/703346 to crack an encrypted SSH key. It's been 24 hours with no one claiming the bounty so I thought I'd reveal the solution.\n\nThe solution is to use [John the Ripper](https://www.openwall.com/john/), a "password security auditing and password recovery tool" or in other words: a password cracker. Let me show you how.\n\n\nFirst, we store the encrypted SSH key in a file named id_rsa (the default name for SSH RSA keys):\n\n```\n$ cat > id_rsa\n-----BEGIN RSA PRIVATE KEY-----\nProc-Type: 4,ENCRYPTED\nDEK-Info: AES-256-CBC,353B80CD6D6AE8B97C9489F71E12DA0A\n\nNU5iL4TPOyNHc5CD/wEEEl2HVv8NLQ6Gk+Ez4Ay8rKpGTWXwogtyhNxaaJBmAC4v\nUnWwdErjHkD7XtrKqFUdQ5U/G0aMAXVk4gzSX49AW6Z2haUBP9Q0h4JilSvpnoJ8\nkIAZr7vdgjdw+mAgphaJeWQkvvbExOhA2k/g514+WDMeWeuNeqknEfuN9uXXfc/e\nxLF5axl/VfVNW1cS3tXNPJ3s19DPobJw5xjNh0bN0CKBDu0H62fw0XxxQMJoi9wC\np6HBKQPK/y2r/UrjeCBunS/MRdJxsb99NBNoEPdGuEwLWJgIXchtKSsp6SQ/gWG4\nEuH/esk9LmfhHXZftPc4iMsh4HQ8ispbn4XDl/VhOP9DNdmT3EtrHfkPlo9QvAKq\n3pADA1tzzYIjMDo4UdRIFCACP5eTptOJaApPNMMd6v+pQVbyGCQ6YQWomtBLekQg\nCs1LWl45NbuKQm5w4ZP1cca2W0Riv+YKa8ITFkwE4esD8UeGxkhcTy/M82lLWxii\nvwZPLIpmbUhHxmJeniMdMEkfVWOFbsmt2vjdD56dJfrYBAkAbS1vaQdJQFdpgGZx\nZ7J6CZcQhzxjyEbX8Xu7WSu7pwdT2Jorrx3YtXvVnysq0+YMoNdzMbfZYrSbsrxF\nnGfeIOYM9XwjHnzEwCAzhgmg+eDYd6tALzN+uu/mDCa51RoI9UL6Xl2kn7w6+QQQ\nHCG1zmYn+AtONdI5tMPM7OaPNNdrNI0kg9jO+pgQpvsBfD9dxbRzKcpCzgld1arL\nMucniUiQ5+0d1mqNba3PmN/5VreSHwXGALuRoC3bF8+FfUkkWJacvp+cuJUnCIkM\nVh9SrRE+XKFZI3ty0dZQS27z4K/W6A1I9ZaZyo7/S0Mzy+/TOH+/EAF7IrKANlzh\nc+LhpGY1L/tUOv8g7ljURqyYMnHOFyMhk1sioi1EDB8vjfFPcvHWzOW5ls8FOK+x\n1NnC4s1KybvG4N2vg+QP07AFJjEEIziaZHrwHb37jJEACYqSYTw5zTkwZx7Ki5iq\naa0MUZGoq0SCxVSnfbd1tWj3KwALsUzdI/pir4uK55+KT2ym7BffeAEHfVAdaT6n\npqT1qab6ba/YcNx/n8k0nXYOtJH99zt+4wf1q1dn4P/ZZ8F4lYjoaC91SagkM2te\nsAQTPagFnYF7YY+TkvyZYP2z7FDxaFEr+p5tWWNev1RuWYrXWJGjF+rf6Fq6IaqB\n1vaNTZhLEONkgM4KGYy7sHSLDruRH0yrsvb96EMNEJh8RTKQUYnjW8IWQgWTVibq\n9OsplFe9EZF9PJajEc00TS5KdP2J5rHITIzYnk17NLZYPa9cI1NlSh6QizlcUJYW\nMwe22NjF0K7CfKLUVv1CFfCtfW8LY/iIAQ860AaruU8Mk/wwqssd2j8MOsG5E1uO\nKB03k66umHEoV0KormAC47O9yxDgvGY22zEniFmO9Qc2KfGGAw0O/dxO7tQMuDvU\n/d2t1+UekJ5FRZ9pj07zGZNYqNesZilvxBUXTZKXfbl/D4Xg8YXhJPd+RHe1j7o3\n0T3co1gPnUZsPtOuh+ZyMoUyOqSWy4HUKyYbErlHCFi/5I/zuhRMnfoGex5jxJvt\n-----END RSA PRIVATE KEY-----\n^D\n```\n\n_`^D` means CTRL+D which will enter a end-of-file (EOF) character to close the stream._\n\nThen, we run `ssh2john`. It usually comes bundled with the JtR executable `john`. It extracts the password hash from SSH keys into the format that JtR needs:\n\n```\n$ ssh2john id_rsa > hash\n$ cat hash\nid_rsa:$sshng$5$16$353B80CD6D6AE8B97C9489F71E12DA0A$1200$354e622f84cf3b2347739083ff0104125d8756ff0d2d0e8693e133e00cbcacaa464d65f0a20b7284dc5a689066002e2f5275b0744ae31e40fb5edacaa8551d43953f1b468c017564e20cd25f8f405ba67685a5013fd434878262952be99e827c908019afbbdd823770fa6020a61689796424bef6c4c4e840da4fe0e75e3e58331e59eb8d7aa92711fb8df6e5d77dcfdec4b1796b197f55f54d5b5712ded5cd3c9decd7d0cfa1b270e718cd8746cdd022810eed07eb67f0d17c7140c2688bdc02a7a1c12903caff2dabfd4ae378206e9d2fcc45d271b1bf7d34136810f746b84c0b5898085dc86d292b29e9243f8161b812e1ff7ac93d2e67e11d765fb4f73888cb21e0743c8aca5b9f85c397f56138ff4335d993dc4b6b1df90f968f50bc02aade9003035b73cd8223303a3851d4481420023f9793a6d389680a4f34c31deaffa94156f218243a6105a89ad04b7a44200acd4b5a5e3935bb8a426e70e193f571c6b65b4462bfe60a6bc213164c04e1eb03f14786c6485c4f2fccf3694b5b18a2bf064f2c8a666d4847c6625e9e231d30491f5563856ec9addaf8dd0f9e9d25fad80409006d2d6f69074940576980667167b27a099710873c63c846d7f17bbb592bbba70753d89a2baf1dd8b57bd59f2b2ad3e60ca0d77331b7d962b49bb2bc459c67de20e60cf57c231e7cc4c020338609a0f9e0d877ab402f337ebaefe60c26b9d51a08f542fa5e5da49fbc3af904101c21b5ce6627f80b4e35d239b4c3ccece68f34d76b348d2483d8cefa9810a6fb017c3f5dc5b47329ca42ce095dd5aacb32e727894890e7ed1dd66a8d6dadcf98dff956b7921f05c600bb91a02ddb17cf857d492458969cbe9f9cb8952708890c561f52ad113e5ca159237b72d1d6504b6ef3e0afd6e80d48f59699ca8eff4b4333cbefd3387fbf10017b22b280365ce173e2e1a466352ffb543aff20ee58d446ac983271ce172321935b22a22d440c1f2f8df14f72f1d6cce5b996cf0538afb1d4d9c2e2cd4ac9bbc6e0ddaf83e40fd3b00526310423389a647af01dbdfb8c9100098a92613c39cd3930671eca8b98aa69ad0c5191a8ab4482c554a77db775b568f72b000bb14cdd23fa62af8b8ae79f8a4f6ca6ec17df7801077d501d693ea7a6a4f5a9a6fa6dafd870dc7f9fc9349d760eb491fdf73b7ee307f5ab5767e0ffd967c1789588e8682f7549a824336b5eb004133da8059d817b618f9392fc9960fdb3ec50f168512bfa9e6d59635ebf546e598ad75891a317eadfe85aba21aa81d6f68d4d984b10e36480ce0a198cbbb0748b0ebb911f4cabb2f6fde8430d10987c4532905189e35bc2164205935626eaf4eb299457bd11917d3c96a311cd344d2e4a74fd89e6b1c84c8cd89e4d7b34b6583daf5c2353654a1e908b395c5096163307b6d8d8c5d0aec27ca2d456fd4215f0ad7d6f0b63f888010f3ad006abb94f0c93fc30aacb1dda3f0c3ac1b9135b8e281d3793aeae9871285742a8ae6002e3b3bdcb10e0bc6636db312788598ef5073629f186030d0efddc4eeed40cb83bd4fdddadd7e51e909e45459f698f4ef3199358a8d7ac66296fc415174d92977db97f0f85e0f185e124f77e4477b58fba37d13ddca3580f9d466c3ed3ae87e6723285323aa496cb81d42b261b12b9470858bfe48ff3ba144c9dfa067b1e63c49bed\n```\n\nIt's usually a good idea to run a dictionary attack, and we will need a word list for this. A very common word list is rockyou.txt. It's a file that contains over 14 million passwords. It came out of a [data breach in 2009](https://en.wikipedia.org/wiki/RockYou#Data_breach). RockYou, a social media company that developed widgets for MySpace got hacked and stored the passwords of their users in plaintext. We can download this file from various sources but we will use the one in the [Kali Linux](https://www.kali.org/) repository:\n\n```\n$ $ wget https://gitlab.com/kalilinux/packages/wordlists/-/raw/kali/master/rockyou.txt.gz\n--2024-09-29 02:17:52-- https://gitlab.com/kalilinux/packages/wordlists/-/raw/kali/master/rockyou.txt.gz\nLoaded CA certificate '/etc/ssl/certs/ca-certificates.crt'\nResolving gitlab.com (gitlab.com)... 172.65.251.78, 2606:4700:90:0:f22e:fbec:5bed:a9b9\nConnecting to gitlab.com (gitlab.com)|172.65.251.78|:443... connected.\nHTTP request sent, awaiting response... 200 OK\nLength: 53357341 (51M) [application/octet-stream]\nSaving to: ‘rockyou.txt.gz’\n\nrockyou.txt.gz 100%[=================url=====================================================================================>] 50.88M 304MB/s in 0.2s\n\n2024-09-29 02:17:53 (304 MB/s) - ‘rockyou.txt.gz’ saved [53357341/53357341]\n$ gzip -d rockyou.txt.gz\n```\n\nNow, we can run `john`:\n\n```\n$ john --wordlist=rockyou.txt hash\nUsing default input encoding: UTF-8\nLoaded 1 password hash (SSH [RSA/DSA/EC/OPENSSH (SSH private keys) 32/64])\nCost 1 (KDF/cipher [0=MD5/AES 1=MD5/3DES 2=Bcrypt/AES]) is 0 for all loaded hashes\nCost 2 (iteration count) is 2 for all loaded hashes\nWill run 8 OpenMP threads\nNote: This format may emit false positives, so it will keep trying even after\nfinding a possible candidate.\nPress 'q' or Ctrl-C to abort, almost any other key for status\n****** (id_rsa)\nWarning: Only 2 candidates left, minimum 8 needed for performance.\n1g 0:00:00:03 DONE (2024-09-28 21:27) 0.3300g/s 4733Kp/s 4733Kc/s 4733KC/sa6_123..*7¡Vamos!\nSession completed\n```\n\n_A common mistake is to not use the `=` in `--wordlist=rockyou.txt`. It's required!_\n\nThe output of `john` tells us that `******` is the password. Success! \n\nNow go ahead and try to crack your own encrypted SSH keys using JtR and rockyou.txt. if you're successful, you should definitely use a stronger password.\n\nEven if your exact password is not included in rockyou.txt, JtR might still find your password since it can mangle the passwords according to rules (see docs about [JtR's cracking modes](https://www.openwall.com/john/doc/MODES.shtml)). \N 6741 \N 435261 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.91349296793067 0 \N \N f 3979604558 \N 29 18558859 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 06:19:58.826 f \N \N \N 0 0 0 0 10 0 0 402000 2025-02-13 13:52:52.251 2025-03-29 22:39:48.901 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/500959) are the updates stackers shared from all their latest work projects. \N 9346 \N 402000 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 23.4346889299908 0 \N \N f 1080504939 \N 7 204180870 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 400261 2025-02-12 01:06:44.934 2025-03-29 22:39:48.912 Thoughts On The Bitcoin Beginners Territory Like most territory owners, my motive for owning this territory is not to earn lots of sats right now. This is obvious to everyone. Maybe I naively thought there was a need for the territory when there is not. I’m posting to get some input from the SN community. \n\nThe other day @mo created a [poll](https://stacker.news/items/422863) asking whether the territory should be renamed. There were some good suggestions, and a good discussion as to whether there is a need for the territory at all. For instance, @benthecarman said this:\n\n> having bitcoin and bitcoin beginners doesn't really make sense, stacker news isn't big enough to need territories with that much overlap\n\nThis is a legitimate point of view. I don’t relish tossing sats away on a completely useless endeavor. \n\n@DarthCoin said this:\n\n> If people just post garbage in the territory, it doesn't matter what name have. A territory like this ... for beginners" must have ONLY curated content, to help beginners, not confuse them more...\n\nThis is also very true . That’s why I hope this post generates some discussion. Let me know if you think I should abandon the territory. If not, please give me suggestions on how to make it a more valuable resource for those just starting to learn about bitcoin.\n\n### Moderation\n\nPersonally, I don’t like the idea of moderation, but I am persuaded that this might be the only route available to ensure there are only quality posts here. \n\nIf I choose to make this a moderated territory, I don’t want to be the one judging value of particular content, nor would I want any one stacker to fill that role. I would prefer a merit based voting system, maybe based on zaprank. For starters, maybe I should cull all posts that don’t reach a certain base level of engagement. I would have to decide what that level should be. \n\nUltimately I foresee fewer posts, with better content. I really want to stop crap from entering the territory, so I’m toying with this idea: Raise the cost to post to a really high amount, say 1000 sats. If stackers signal it is valuable content based on it’s zaprank, I will zap the poster back 2000 sats, which they earn in addition to whatever sats the post earns.\n\n\n### Stacker’s Basic Questions\n\nI thought the main point of this territory was for it to be a space for new stackers to ask dumb questions. That has never happened. Still, I wish it would. Raising the cost to post to 1000 sats would not be fair just to ask a question. I don’t know how to resolve this given the tools as they currently exist.\n\nI am really just thinking out loud. Please tell me your thoughts, including “just scrap the whole thing.”\n \N 5758 \N 400261 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.3563634074371 0 \N \N f 603111256 \N 6 100510193 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 449779 2025-03-23 14:35:24.761 2025-03-29 22:39:48.912 The HDMI forum is at war with Linux As many of you probably have heard in the last few days\n\n> HDMI Forum to AMD: No, you can’t make an open source HDMI 2.1 driver\n\nhttps://arstechnica.com/gadgets/2024/02/hdmi-forum-to-amd-no-you-cant-make-an-open-source-hdmi-2-1-driver/\n\nThe reason for this development is crystal clear. The most widespread display connector in the world is at war with open source. HDMI 2.1 is the standard needed for using 4k and high fps simultaneously. Its only competitor being display port. \n\nBut is DP really a competitor? It's not like you can choose since all devices are on HDMI-only. Your USB-C cables use hdmi internally too. There are no TVs with Display Port. Basically only desktop computers sometimes use DP. \n\nMost egregious of all is why this is happening: HDMI literally created for adding DRM to Cables. It's about piracy. And almost all hardware manufacturers are collaborators. HDMI capture cards do exists. But they're already cracking down on it. They don't want you to own any media.\n \N 21498 \N 449779 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 12.4615556029137 0 \N \N f 408996597 \N 4 198509914 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 446662 2025-03-21 12:09:32.893 2025-03-29 22:39:48.912 Rgb or Taro? https://twitter.com/lightning/status/1658497809895809025?s=20\n\nBoth rgb and taro will be launched on the bitcoin mainnet this year, which protocol will win? \N 11498 \N 446662 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 23.9128742405962 0 \N \N f 456953212 \N 3 216137688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 10:33:36.429 f \N \N \N 0 0 0 0 3 0 0 434483 2025-03-12 00:11:00.315 2025-03-29 22:39:48.912 There is a parasite - Don't delegate understanding \N https://stephanango.com/understand 5519 \N 434483 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 17.8552413689883 0 \N \N f 29922861 \N 1 115693605 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:48.625 f \N \N \N 0 0 0 0 1 0 0 448341 2025-03-22 14:56:13.229 2025-03-29 22:39:52.192 \N Resident of Switzerland here.\n\nOne thing that needs to be pointed out is that CHF is probably the strongest fiat currency in the world and that Swiss gov. has a pretty low debt to gdp ratio. Otherwise such low interest rates would not be possible. https://example.com/ 4624 447892 447892.448341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6427976681976 0 \N \N f 406556807 \N 3 238958969 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 09:08:38.664 f \N \N \N 0 0 0 0 3 0 0 450111 2025-03-23 19:02:12.81 2025-03-29 22:39:52.192 \N When @super_testnet quietly and unassumingly unveiled the future of commerce --> https://stacker.news/items/167945 https://example.com/ 15146 450108 450108.450111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5280882962044 0 \N \N f 201597079 \N 1 129051890 0 f f \N \N \N \N 450108 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434987 2025-03-12 11:42:20.781 2025-03-29 22:39:52.193 \N @kr, can you possibly contact Anita Posch to let her know we're doing a fundraiser for her, and we'd like to zap her SN wallet? @k00b suggested that you might be able to contact her. I don't want to direct lots of sats her way if she never checks her wallet. If she doesn't want to do this, I'll just make the donation to her site, but I don't want everyone to have to trust me. I like the idea of directly donating to her right here. https://example.com/ 989 434642 434642.434987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.02618898338318 0 \N \N f 217613622 \N 1 147423018 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 05:07:29.402 f \N \N \N 0 0 0 0 1 0 0 449079 2025-03-23 07:07:37.237 2025-03-29 22:39:52.193 \N [![darth-kebap.gif](https://imgprxy.stacker.news/4LYuBxmsV1ztMWjsml5Wt2-DbnXACHv3vZvKvEJ3zIU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvZFZiWUNza2MvZGFydGgta2ViYXAuZ2lm)](https://postimg.cc/pmJ4btJs) https://example.com/ 7119 449076 449027.449053.449057.449075.449076.449079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4871434442851 0 \N \N f 160791800 \N 1 245368580 0 f f \N \N \N \N 449027 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424233 2025-03-03 23:04:17.804 2025-03-29 22:39:52.193 \N Absolutely great article. This the way. We will never convince the masses to use bitcoin by ideology. Utility is the way. https://example.com/ 18468 424214 394203.394251.400201.424131.424214.424233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.978219687653 0 \N \N f 305285042 \N 3 107397216 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436494 2025-03-13 15:33:02.538 2025-03-29 22:39:48.901 The Perils of Premature Protocol Ossification \N https://www.youtube.com/watch?v=glX2Y-VVNnI 17212 \N 436494 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 14.5597635187525 0 \N \N f 81219702 \N 2 246551863 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:59:25.908 f \N \N \N 0 0 0 0 2 0 0 406483 2025-02-17 11:38:50.759 2025-03-29 22:39:48.901 Juicy B: Sip, Learn & Pay with Bitcoin Fresh juice was very accessible before arriving in Uganda. We had grown accustomed to it during our three months in Jordan and Egypt, and found it odd to see it missing in Kampala. Located on the equator, the country is lush and green. Within the city, fruits are sold everywhere yet no fresh juice was seen.\n\nWhen we brought this up, our friends quickly pointed out slushy-like machines that claimed to offer "juice." It was quite clear they were made from concentrate and not real fruit. After digging further, we realized that sugary juice made from concentrate was all the locals knew. A glass would cost 1,000 UGX (0.27 USD). Unless one were privileged enough to visit a restaurant where fresh juice was served, it came at a price out of reach for most Ugandans, up to 20,000 UGX (5.42 USD)\n\nWe were desperate for affordable, fresh juice and decided to solve the problem ourselves. Juicy B was born. Its goal? To provide 100% natural juice to the community at an affordable price, and act as a Bitcoin literacy hub for customers and other merchants - a model for others to replicate and feel comfortable using bitcoin in their business. \n\nFortunately, a small store near the main university gate was available for rent. With the space confirmed, we rolled our sleeves and got to work. There aren't any large retailers in Uganda (Home Depot, Rona, Walmart, etc). Imagine each aisle of these stores translating to a different street in Kampala. Paint is found in one neighborhood, lumber - across the city, tools - in another area, you get the point. Not having materials accessible in a central area did make it difficult but we managed thanks to our friends and partners (shout out to Brindon and Afan). We designed the logo and the interior, built custom furniture, painted, and stocked the basic supplies.\n\nEven before we opened, our hypothesis was playing out. Two of our suppliers (clothing and plants) accepted a portion of their payment in bitcoin. The space felt like a superpower, showcasing the benefits of bitcoin. What used to be a 40-minute conversation with a merchant only needed 5 within the boundary of our store. \n\nWithin three weeks, from ideation, we had our soft launch! Man Like Kweks even dropped us a track, [Juicy B](https://wavlake.com/album/8841ce55-9fb9-4439-9daa-06cfdaba68ea)! It's been 7 months so far and what a pleasant surprise. Approximately 20-25% of our revenue is received in bitcoin, our employee receives 50% of their salary in bitcoin and our loyalty program is bitcoin-based! \n\nIf you have an idea, go for it, you'll never know unless you take the first step. Next, the Rwanda you didn't know.\n\nhttps://youtu.be/bV_tbs4CVCo\n\n------\n[Cairo to Cape Town: A Bitcoin Adventure] (https://stacker.news/items/682996)\n[The Dollar Dilemma in Egypt] (https://stacker.news/items/688813)\n[Ethiopia: The New Frontier For Bitcoin Mining] (https://stacker.news/items/693427)\n[Kenya: A Bitcoin Haven] (https://stacker.news/items/694431)\n[The Bitcoin Xmas Road Trip] (https://stacker.news/items/696163) \N 20179 \N 406483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1529239509565 0 \N \N f 99730735 \N 1 133141944 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 308045 2024-11-25 15:19:17.244 2025-03-29 22:39:48.901 Books And Articles Newsletter, Issue 19 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week \n\nWelcome to this week’s issue of the Books And Articles newsletter. Thanks for all of the quality posts.\n\n@Carreson added a “My Bitcoin Journey” [post](https://stacker.news/items/559500/r/siggy47) this week. We haven’t had one of these for a while, and it’s a good one. I really enjoy reading these posts, so I hope more stackers publish them. I will accept the inevitable consequence of receiving a "nice try,fed" from @Undisciplined and his ilk.\n\nAs always, please reply to this post with suggestions and opinions on how to make this territory better. \nI hope everyone has a good week. \n\n### Top Five Posts Of The Week\n\nThe top post of the week will be forwarded 50% of the zaps earned on this week’s newsletter post. Rankings will be determined using the SN zaprank. \n\nHere are this week’s top posts:\n\n- [Can Psychedelics Improve Mental Health?](https://stacker.news/items/565000/r/siggy47) by @0xbitcoiner\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carresan\n\n- [What is a plebpoet? My Opening Remarks](https://stacker.news/items/563345/r/siggy47) by @plebpoet\n\n- [Legacy Series: I love English](https://stacker.news/items/561220/r/siggy47) by @cryotosensei\n\n- [My Daughter Learns to Read](https://stacker.news/items/560501/r/siggy47) by @Undisciplined\n\n\n### Siggy’s Suggestions\n\n- [6 books for Privacy](https://stacker.news/items/563736/r/siggy47) by @Rsync25\n\n@Rsync posted a list of works here that certainly are “for privacy”, but they are so much more. Once again, I selected this post for selfish reasons. Three of them are among my favorite books of all time. The Snowden autobiography is on my must read list. I have been a big fan of John Perry Barlow since long before he wrote “𝗔 𝗗𝗲𝗰𝗹𝗮𝗿𝗮𝘁𝗶𝗼𝗻 𝗼𝗳 𝘁𝗵𝗲 𝗜𝗻𝗱𝗲𝗽𝗲𝗻𝗱𝗲𝗻𝗰𝗲 𝗼𝗳 𝗖𝘆𝗯𝗲𝗿𝘀𝗽𝗮𝗰𝗲.” He was a lyricist for The Grateful Dead, and I am a shameless deadhead. I wrote about him in a [post](https://stacker.news/items/189754/r/siggy47) last year. \n\nI have not read The Unabomber’s Manifesto, but Eric Hugh’s “A Cypherpunk’s Manifesto” is a must read for all of us.\n\n\n- [The Case of Alida, the Cleaning Lady](https://stacker.news/items/565740/r/siggy47) by @mtb\n\n@mtb has recently started to post selected stories from his book "Para Vivir Seguros” (2005). These stories are sometimes tough to read tales from Venezuela. I highly recommend that you check them all out.\n\n \nThis week’s Golden Oldie:\n\n- [Discussing my writing process: Focus and feelings 📝](https://stacker.news/items/495687/r/siggy47) by @plebpoet\n\nOkay, so maybe I’m stretching a bit by calling a post made just slightly more than two month’s ago a “golden oldie”, but territories haven’t even been a thing for too long. And, I know I can’t go wrong with @plebpoet. Here, learning about @plebpoet’s writing process gives us insights and inspiration.\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462)\n by @StillStackinAfterAllTheseYears\n\n- [The Bezzle, by Cory Doctorow](https://stacker.news/items/506632/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [The Achilles Trap, by Steve Coll](https://stacker.news/items/497756) by @Coinsreporter\n\n- [Software,by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n- [Bleeding Edge by Thomas Pynchon](https://stacker.news/items/533493/r/siggy47) by @Scoresby\n\n- [ “Better than Before” by Gretchen Rubin](https://stacker.news/items/534613/r/siggy47) by @cryotosensei\n\n- [Giada De Laurentiis Recipe for Adventure Hong Kong](https://stacker.news/items/539739/r/siggy47) by @cryotosensei\n\n- [Lonesome Traveller by Jack Kerouac](https://stacker.news/items/543525) by @carlosfandango\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [Churning Black Matter](https://stacker.news/items/469200) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n\n\n \N 17171 \N 308045 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.80156350389072 0 \N \N f 224878363 \N 1 166486164 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407427 2025-02-18 01:12:28.609 2025-03-29 22:39:48.902 Breaking down House Financial Services Committee Democrats Anti Crypto Mixer Leg Late yesterday afternoon news broke of the House Financial Services Committee Democrats' new crypto legislation. First things first I want to acknowledge the monster in the room concerning this and don't worry this legislation is already dead on arrival. Moves like this are sadly to be expected in the coming months as these bills are introduced with the Members knowing it doesn't have the slightest chance to get a vote but instead is done as a messaging thing that they can point at. \n\n***Who is Behind This Legislation***\nAnother HUGE thing to highlight is Rep. Sean Casten and his ties to the crypto industry. Guess whose brother was on his staff and served as a Legislative assistant? None other than SBF's brother Gabe! While Rep. Casten says that Gabe played no role in his crypto views or did anything in that realm Gabe was able to use his relationship with Casten to help his brother out whether anyone wants to admit to it or not. I would bet that the contacts that Gabe had were a huge boost for his brother. \n\n\nLooking at who else has already come out and been in support of this legislation we have the expected actors, Reps. Brad Sherman (D-Calif.), Emanuel Cleaver (D-Mo.), and Bill Foster (D-Ill.). Having worked or currently work on the other side of the aisle of these people it's to be expected. In particular, Rep. Sherman is someone who truly I do not understand how he got his job and more importantly what technology did to him to hurt him. The guy is consistently against cutting-edge innovation and made what I find to be the funniest comment about crypto years ago. \n\n>He asked a witness testifying before a Committee why we don't ***"just flip the switch and turn off crypto"***. \n\nI wish I had made up that quote but sadly.... nope. \n\n\n***What Would This Do***\nWhile the full text has not been released as far as I can tell, I also cant even find a circulating draft so it is clear they left this on the Dem side exclusively, the bill is rather straightforward. The legislation would place a 2-year "prohibition" on financial services (CEXs) from dealing with crypto that has been funneled through mixer. During the two year "prohibition" the SEC, CFTC, and Justice Department are required to study the use of mixers and what role they play in helping to facilitate illicit finance. Below is Casten's comment.\n\n>"The presumption should be that these are money laundering channels," Casten said, unless sufficient audit work shows otherwise. "Let's go through and get that cleaned up and fixed."\n\n***Why This is a Stupid Waste of Time***\nWithin the released text this bill is only going to affect entities that the US government is already monitoring/controlling. This legislation further fails to address what if some of your BTC had previously been through a mixer? Would Coinbase or whoever else was in possession of it have to divest it and then buy "new" BTC that wasn't touched by a mixer? We also already have the Justice Department working with numerous blockchain analysis companies that are able to track BTC that has passed through mixers. We literally have these answers yet this group of Congressman either A) are not being kept in the loop by their staff or B) just ignoring what we know to push an agenda that is knownly NOT POPULAR with people. \N 18601 \N 407427 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.4851211674759 0 \N \N f 351619429 \N 2 16720844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 408149 2025-02-18 15:33:49.03 2025-03-29 22:39:52.193 \N I like to think there's very few **true regrets** because most things are regretted because they haven't been dealt with and the lessons therein not yet extracted.\n\nLike most, I've had my share of regrets, but once you've taken the time to understand them, learn from them, realise the importance they had in your growth in hindsight, even if they were painful detours or obstacles... then they cease to be regrets. It's hard to call them that after that. https://example.com/ 4958 408116 407777.408116.408149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7592449290527 0 \N \N f 111451167 \N 1 121115117 0 f f \N \N \N \N 407777 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446898 2025-03-21 14:20:22.474 2025-03-29 22:39:52.193 \N Thanks for that!\n\nThe source of that is:\n\n> .[@github](https://mobile.twitter.com/github) has unbanned the [@TornadoCash](https://mobile.twitter.com/TornadoCash) organization and contributors on their platform!\n>\n> [https://github.com/tornadocash](https://t.co/ktdghDQKx8)\n\nhttps://twitter.com/preston_vanloon/status/1572958754395811841 [[Nitter](https://twitter.com/preston_vanloon/status/1572958754395811841)] https://example.com/ 20094 446884 446313.446884.446898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9595599504865 0 \N \N f 987482450 \N 7 67654758 0 f f \N \N \N \N 446313 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 188380 2024-06-23 10:47:46.381 2025-03-29 22:39:52.193 \N It still not so reliable, there's many payments that fail and on the node's side there's still many failures that lead to force closed channels. I believe both issues are being solved progressively, but imo that's 2 of the most important. \nBefore having hundred different features, it should be robust and reliable. https://example.com/ 9655 188308 188308.188380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8445708715534 0 \N \N f 404322297 \N 7 94296647 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454763 2025-03-26 15:21:56.157 2025-03-29 22:39:52.194 \N Fascinating. Really feel like we’re a minute out before midnight on Skynet coming online. Not necessarily the nukes going off but we think we’ve seen radical change up to this point, and we have I suppose, but the radical change we’re about to experience is on a whole new level. AI surrogates. Phew. https://example.com/ 4083 454701 454701.454763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0742508308063 0 \N \N f 53497272 \N 1 137814392 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430641 2025-03-09 11:35:44.978 2025-03-29 22:39:52.194 \N The problem-behind-the-problem here is: is it possible to have the consensus defined as a written spec. This point is surprisingly controversial because, compare with e.g. internet protocols like TLS: they have a written spec to which all clients adhere. Even there, it's not cut and dried, there are lots of minor details and extensions where there at least *could* be a server-client mismatch and connections get dropped. But here's the difference: bitcoin's consensus requires byte-for-byte and bug-for-bug 100% compatibility between every peer, it is not a question of pairs of nodes agreeing temporarily, it is a question of every node everywhere and always agreeing. It's possible that neither written specs, no matter how thorough, nor well written code, can meet that standard (a perfect practical example is the 2013 chain split, which was not caused by any of the C++ consensus code per se, but by an unforeseen behaviour in the database software used. Not intentional but unintentional consensus dependency).\n\nETH from the beginning chose to base things on a written spec, and to my mind this was not *wrong*, but I am pessimistic that it actually changed anything. If there is an actual open-to-interpretation thing that happens, you're kind of better off having one overwhelmingly used client, as it's a de facto tiebreaker on the debatable thing. The counterargument is, if the overwhelming client has a consensus break that's clearly just an error/bug, then it's nice if there's another client everyone can switch over to as an emergency. https://example.com/ 19375 430617 430607.430617.430641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3703284741981 0 \N \N f 864980056 \N 5 5277688 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410569 2025-02-20 14:43:24.171 2025-03-29 22:39:52.195 \N Damn it's going to be adventurous https://example.com/ 20450 410486 410486.410569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3955453228724 0 \N \N f 265175822 \N 3 42060261 0 f f \N \N \N \N 410486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408713 2025-02-19 04:30:59.829 2025-03-29 22:39:48.902 Daily Discussion Thread ~Music Saloon! Hello Stackers!\n\nWelcome on into the ~Music Corner of the Saloon!\n\nA place where we Talk Music. Share Tracks. Zap Sats.\n\nSo stay a while and listen.\n\n🚨Don't forget to check out the pinned items in the territory homepage! You can always find the latest weeklies there!🚨\n\n🚨Subscribe to the territory to ensure you never miss a post! 🚨 \N 21116 \N 408713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7254580812731 0 \N \N f 198433931 \N 2 25938845 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 440520 2025-03-17 10:37:26.643 2025-03-29 22:39:48.902 Announcing LDK Node \N https://lightningdevkit.org/blog/announcing-ldk-node/ 2204 \N 440520 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 9.12021477996145 0 \N \N f 273458484 \N 2 159427324 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 189750 2024-06-26 08:38:07.574 2025-03-29 22:39:48.902 The Bitcoin Company – Remittances API for Instant Cross-Border Payments \N https://thebitcoincompany.com/remittances 21164 \N 189750 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.0117246324538 0 \N \N f 36026992 \N 1 89869306 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450729 2025-03-24 07:25:58.65 2025-03-29 22:39:48.902 The dangers of metadata in messengers In many countries around the world, phone numbers are attached to biometrics data and personal IDs. Telecommunications companies are either government owned or are heavily regulated, privately owned monopolies who comply with most government requests for backdoors or user data.\n\nPrivacy is confused with security, when both are not synonymous, and there are major gaps in helping users understand the fundamental differences. https://simplex.chat/blog/20240416-dangers-of-metadata-in-messengers.html 21401 \N 450729 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.436452839411 0 \N \N f 614666 \N 1 125425086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408874 2025-02-19 08:30:44.2 2025-03-29 22:39:48.902 LDK vs lnd comparison When would you use which? Pros and cons?\n\nI'm curious to hear from folks who have experience with both lnd and LDK. \N 4074 \N 408874 \N \N \N \N \N \N \N \N health \N ACTIVE \N 2.35182766632494 0 \N \N f 676702948 \N 4 47714949 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433477 2025-03-11 06:17:38.804 2025-03-29 22:39:52.195 \N So it looks like we are going to close on 40 acres, even more isolated. I am so excited right now. Time to start breaking down camp and get to moving. Even further out. Ready to disappear. I'll never leave you all though. 💚 https://example.com/ 1571 433403 433403.433477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1117770771208 0 \N \N f 291666165 \N 2 172692843 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434226 2025-03-11 17:19:29.627 2025-03-29 22:39:52.195 \N threat model would for regular pleb who saves in bitcoin (maybe a years worth of savings? small enough that they don't do multisig). I think the biggest threats are natural disaster and theft from someone that knows they have bitcoin.\n \nIn your example of having a hidden seed, why not just have your hardware wallet with it? I don't envision people needing to sign with a hardware wallet so much that they would want it physically on them. https://example.com/ 730 434091 433828.434031.434091.434226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.361715694054361 0 \N \N f 396942591 \N 5 90430648 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401674 2025-02-13 10:08:50.348 2025-03-29 22:39:52.196 \N This is a great project!\n\nhttps://lncal.com/smoore https://example.com/ 8664 401661 401496.401654.401661.401674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7116069573305 0 \N \N f 182351821 \N 1 181302226 0 f f \N \N \N \N 401496 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435425 2025-03-12 17:08:21.231 2025-03-29 22:39:52.198 \N Not sure exactly but I got it sometime 2012/2013.\n\nFor the basic usage, I don't see it stopping anytime soon. The battery still holds for a few hours. Biggest pain is sometimes have to try a few different browsers to get certain websites to work. https://example.com/ 919 435295 435217.435275.435277.435295.435425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1629554444396 0 \N \N f 666971698 \N 6 127479422 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 12:42:18.021 f \N \N \N 0 0 0 0 1 0 0 442044 2025-03-18 12:19:58.007 2025-03-29 22:39:52.199 \N As much as I don't think the blog post has an evil intention, and while I agree with most of what is explained, I can't help but feel it might misguide some newbies. \n\nA profitable operation will take a lot of time, effort and capital, and even with those ingredients, the return will be probably tiny. I believe a mention to this reality would help manage the expectations of those readers who are not very experienced in operating lightning nodes. https://example.com/ 14465 441600 441600.442044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0988315132647 0 \N \N f 601903499 \N 3 99510598 0 f f \N \N \N \N 441600 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434871 2025-03-12 09:54:46.819 2025-03-29 22:39:52.199 \N Apparently nail clippers. I have a set of nail clippers that have been around for 40 years, passed down in the family. Not exactly passed down but it sounds funnier that way. I think I "stole" them from my mom along with a bunch of other stuff I needed when I moved out of my childhood home. \n\nBut these things are great. Made in South Korea. Still work perfectly and much better that any crappy Chinese made set my wife has purchased. \n\nps-(The term stole in this case refers to an early 20 something kid (yes still a kid) saying to mom- I am moving out and I need this, this and this, and mom of course saying, take whatever you need honey- aren't moms the best?) https://example.com/ 18608 434646 434646.434871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1041021058459 0 \N \N f 321835879 \N 3 78848556 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 03:30:39.557 f \N \N \N 0 0 0 0 1 0 0 431009 2025-03-09 15:08:59.145 2025-03-29 22:39:52.199 \N https://nitter.at/craigwarmke/status/1680961751771148290 https://example.com/ 1352 429199 429199.431009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6072424394799 0 \N \N f 51124714 \N 1 165094753 0 f f \N \N \N \N 429199 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428025 2025-03-06 19:24:17.199 2025-03-29 22:39:52.2 \N New day, new madness. May the zappers win ⚡️ https://example.com/ 1761 427254 427254.428025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.14004659804205 0 \N \N f 54911940 \N 1 246107958 0 f f \N \N \N \N 427254 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436292 2025-03-13 12:58:53.837 2025-03-29 22:39:52.2 \N Dyson vacuum. https://example.com/ 20577 436093 436093.436292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.00515502788853 0 \N \N f 49871053 \N 1 15823751 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:30:54.653 f \N \N \N 0 0 0 0 1 0 0 440797 2025-03-17 14:43:31.063 2025-03-29 22:39:48.902 Selective Prosecution Of Samourai Defendants \nBefore I begin, keep in mind that, like every US citizen, these defendants are presumed innocent. Furthermore, the government has not disclosed any evidence that they did anything to break the law. For purposes of this post, I am assuming the government can prove money laundering as they claim\n\nThere is a well established principle of law in the U.S. known as [selective prosecution](https://en.wikipedia.org/wiki/Selective_prosecution). \n\n> In jurisprudence, selective prosecution is a procedural defense in which defendants argue that they should not be held criminally liable for breaking the law, as the criminal justice system discriminated against them by choosing to prosecute. \n\nRegarding Samourai, criminal indictments were brought against these defendants. They can argue that:\n\n> persons of different age, race, religion, sex, gender, or political alignment, were engaged in the same illegal acts for which the defendant is being tried yet were not prosecuted, and that the defendant is being prosecuted specifically because of a bias as to that class. \n\nThe bias here is being a bitcoin developer, as opposed to being a banker. The latter seem immune to criminal prosecution.\n\nThere are many instances of banks being charged with crimes, yet no criminal charges are brought against individuals in those companies. Here's a nice example:\n\nhttps://www.justice.gov/opa/pr/jpmorgan-chase-co-agrees-pay-920-million-connection-schemes-defraud-precious-metals-and-us\n\nHere's one specifically regarding money laundering:\n\nhttps://www.reuters.com/business/finance/fed-fines-deutsche-bank-186-mln-insufficient-progress-addressing-anti-money-2023-07-19/\n\nThis one is a classic:\n\nhttps://www.justice.gov/opa/pr/former-goldman-sachs-investment-banker-sentenced-27b-bribery-and-money-laundering-scheme\n\nWhy wasn't Goldman Sachs' CEO indicted?\n\nI guess if big banks do it, it's not criminal? \N 2537 \N 440797 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 25.9741865996705 0 \N \N f 60741959 \N 1 191014606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455231 2025-03-26 20:32:44.367 2025-03-29 22:39:48.902 Cristine Lagarde is airdroping me... wtf??? Lagarde is airdroping me 1 BTC... wtf????\n\nSN is compromised, guys. They arrived. They want to buy our opinion.\n\n![2024-04-01 12.32.47.jpg](https://m.stacker.news/24433) \N 17103 \N 455231 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 27.117742826498 0 \N \N f 94604226 \N 1 217197220 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423475 2025-03-03 11:52:46.82 2025-03-29 22:39:48.903 Announcing the Wallet of Satoshi POS! \N https://walletofsatoshi.com/pos 16353 \N 423475 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.1855439824434 0 \N \N f 667663767 \N 5 72406063 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 18:19:11.511 f \N \N \N 0 0 0 0 3 0 0 430501 2025-03-09 09:00:59.622 2025-03-29 22:39:48.903 Here we go! Swiss banks are preparing for bank runs... https://image.nostr.build/4f96a9e8852d1a68704587c20603087967e68b5c53dbd04f4d2da557f904ff5c.jpg \N 16680 \N 430501 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 19.8460084481824 0 \N \N f 306740182 \N 2 140735843 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437673 2025-03-14 18:32:40.761 2025-03-29 22:39:48.903 Nic Carter On Bitcoin Maxis and Religion \N https://twitter.com/nic__carter/status/1666294372537606145 5017 \N 437673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20892018533638 0 \N \N f 59336741 \N 1 221489160 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402830 2025-02-14 05:51:51.839 2025-03-29 22:39:52.2 \N In case this has whet anyone's appetite, there's loads more to see and explore at:\n\nhttps://teddit.zaggy.nl/r/buyitforlife\n\nIt's been one of my favorite sources if on the search for what to buy.\n\nHowever with changing my address 20 times, a fire, having a nomadic lifestyle I've not really utilized it much.\n\nPrioritizing Bitcoin over other things has changing my spending habits massively too. https://example.com/ 684 402807 402807.402830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5634769988051 0 \N \N f 100461135 \N 1 60910308 0 f f \N \N \N \N 402807 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435514 2025-03-12 18:43:59.086 2025-03-29 22:39:52.201 \N ok it does both now -- if you query it, it responds the same as it did before now, but it also creates or replaces the replaceable "info" event on startup\n\n@ek let me know if it works for you now\n\nFor those seeking the spec on how to do the replaceable info event, the spec is here:\n\nhttps://github.com/nostr-protocol/nips/blob/master/47.md\n\nSearch for "The info event should be a replaceable event..." https://example.com/ 5828 435409 435261.435401.435409.435514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5967940587742 0 \N \N f 239181766 \N 1 76893366 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:21.132 f \N \N \N 0 0 0 0 1 0 0 451046 2025-03-24 11:12:39.418 2025-03-29 22:39:52.201 \N Proofofink.com\n\nNot your classic drop ship shirt prints\n\nHand done, quality shirts/hoodies. \nHe even has a few nostr prints.\nCheck it out. https://example.com/ 12049 450971 450971.451046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.00406141648327 0 \N \N f 231483761 \N 1 61605748 0 f f \N \N \N \N 450971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447151 2025-03-21 16:37:07.068 2025-03-29 22:39:52.202 \N They are, but so are digits in fiat bank accounts. Really they are just another fiat payment routing clearinghouse. They work better than SWIFT but slower and irreversible.\n\nI think they are mainly there and continuing to do well due to being an easy pathway between fiat units and satoshis, riding on Bitcoin's value, which more or less proportionally tracks with the amount they have circulating, give or take.\n\nIf nothing else, it brings people into two more clicks to stacking sats. Of course they are irrelevant under a bitcoin standard since nobody's using that trash anymore but for the time being, it's got its benefits and it impedes our enemies more than it does to our cause. They are the gateway drug from forex to bitcoin. https://example.com/ 18615 447134 446371.446745.447113.447133.447134.447151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2162331735592 0 \N \N f 117482678 \N 2 108033450 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:01:22.106 f \N \N \N 0 0 0 0 1 0 0 436377 2025-03-13 14:07:40.795 2025-03-29 22:39:52.202 \N If you are OK with the tradeoffs this could be interesting: https://github.com/nbd-wtf/trustedcoin (by fiatjaf) and it's designed for CLN. Never tried it though https://example.com/ 8726 436323 436323.436377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.48230282637932 0 \N \N f 129030856 \N 1 67101723 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 2025-03-20 09:33:50.257 f \N \N \N 0 0 0 0 1 0 0 410538 2025-02-20 14:23:54.052 2025-03-29 22:39:52.202 \N Hey its crazy over there, been playing with it for a couple of days, prolly earned 40k sats so far. Jam looks good too, waiting to see how much it pays out. Shoutout to start9 https://example.com/ 21418 410135 410135.410538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.72707815455986 0 \N \N f 155078938 \N 1 28136880 0 f f \N \N \N \N 410135 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458198 2025-03-29 05:05:40.295 2025-03-29 22:39:48.904 MONEY CLASS OF THE DAY: The Freakin' **Tally Sticks**, Bro...? _And so the FOMO/FUD/then-they-cry phase begins._ [Hashtag flamey rant incoming]\n\nJames Baxter-Derrington, some no-name commentariat across the pond, had enough of the bitcoin price rally. He wrote an angry piece to show all those pesky Bitcoiners who's boss! It's filled with all manner of level-0 Bitcoin FUD: a ranty, stupid take from a precoiner with Bitcoin Derangement Syndrome—_Ugh, apan, what else is new?_\n\n_The Telegraph:_ ["Whine all you want, bitcoin is still worthless"](https://www.telegraph.co.uk/money/investing/whine-all-you-want-bitcoin-is-still-worthless/)\n\nI would highly recommend _not_ reading it; if you’ve ever come across some stupid objections to bitcoin—outdated, debunked, flat-out incorrect, pathetically wrong etc—you already know what this one says. Plop this piece into legacy media at any point in the last 15 years and it would have “worked.” Here's the recap: \n\n- You can’t pay debts with bitcoin (no?)\n- its volatility is bad; it has no value (says [who?](https://x.com/BITC_minimalist/status/1856877906435215382))\n- it has no infrastructure (_wait, what?_)\n- You must have governments to enforce contracts and protect private property, says all the Experts(TM).\n\nLet's quote another few hot-shot [credentialed idiots](https://primal.net/e/note1qhd3xg29rp59749k3zuudg8fzjtvsyjlncg4gjl2x8ynt8cxtw2sqvdzz7) who say that Bitcoin processes fewer transactions than VISA, thus worthless—yup, [you got me](https://www.lynalden.com/lightning-network/). Oh, and if everyone uses bitcoin it would require the entire world GDP to process (?!). Also, the BlackRocks and pension funds coming in means nothing to Mr. Baxter-Derrington:\n\n >“I could point you to PPI or Enron or Wirecard to suggest that sometimes these institutions get it wrong.”\n\nOK, now that I have you on the ropes with some fewer braincells, on with the juicy stuff. \n >“Everything changes all the time… **Pets.com and Beanie Babies, typewriters and fax machines, tally-sticks** and wooden houses in the City of London, the list goes on.\nI do not doubt that you can make some money on Bitcoin this year. You can probably make a pretty penny for five, maybe 10 years still. I wouldn’t even be surprised if there was money to be made longer than that.”\n\nBro, _freakin' tallies?!_ Dude comes into _my house_...\n\n---\n\n_Clean-up:_\n\nIn the dot-com bubble of the '90s, Pets.com was _part-owned by Amazon_, currently the fourth-most valuable company in the world, because nobody knows the future and it wasn’t obvious in, like December 1998, that selling books on internet was _a good, valuable, world-revolutionary idea_ while selling pet food on the internet was a _bad, bubble, disastrous idea._ Also died very fast, like "bubbles" and other such stuff does. [^1]\n\nBeanie babies I can’t explain, but like other weird and short-term phenomena in financial markets—akin perhaps most recently to GameStop craze or Bed, Bath & Beyond stock drama, etc.—strange things do happen in financial markets. Sometimes for inexplicable reasons.\n\nLooking at his examples it becomes obvious that dude just **name-dropped any odd scam or Ponzi his Google search could produce.** (Madoff, Enron etc)\n\nMost ironic of all is that tally sticks, which, **far from being worthless speculative manias, were clever ways to advance government spending—i.e., sovereign debt.**\nNow, if dude's out here rallying against governments taking on too much debt, I guess he's more based than I assumed. **YES, sir, government borrowing like there’s no tomorrow (esp for frivolous shit) = bad.** More likely, he has no idea what he's talking about and hopes his ignorant audience won't call him out on this _estupidez_ either.\n\n...but this is a MONEY column by a financial historian(_-ish_; credentialism can go fuck itself) so let's dive into that portion of the post.\n\n---\n\n**Tallies Solved a Liquidity Problem for Premodern Governments**\n\nChristine Desan, _Making Money_ (2014)\n![](https://m.stacker.news/62903)\n\nHere are some tally sticks: \n![](https://m.stacker.news/62901)\n\nTallies were physical sticks, cleaved down the middle to produce two unique copies of a financial contract. Predigital non-fakeable proof-of-work, if you will.\n\nFar from being an ephemeral, bubble-mania type asset that died three months later, they existed for _centuries_; versions of them have been found in Ancient Greek and as far away as Uganda. \nThey’re mostly familiar as a financing mechanism for the English Crown, roughly ~12th C to 18th C.\n\n >“In these sticks, which are only stocks, notches show the amount deposited, the name of the lender, the county, the time of year when the money can be repaid, and the year. The stick’s other half contained the same information. When the debt was paid, matching the two halves showed that they ‘tallied, the wood’s unique features and split ensuring high security against forgeries.” (the Science Museum, London [^2])\n\nPresumably, why they came up in ~retard-journo~ Baxter-Derrington’s google search is their moneyness. Because Exchequer tallies, like modern fiat money, were debt claims on the sovereign and widely recognized as such, they could circulate as payment, be a stand-in for the missing hard currency:\n\n> “As tally sticks were a form of contract for an amount of money between a creditor and a debtor, they were also used as a form of money, the same way as coins, to pay wages and buy and sell items circulated between people.” [^3]\n\nAdded bonus in a low-trust, pre-modern society: \n\n> "the Exchequer's aim was to ensure the **accountability of officials,** its own and those in other branches of government, by allocating financial responsibility to individuals rather than institutions." (Richard Cassidy, _The Financial History Review_ (2021)[^4]\n\nYou can think of tallies as physical instantiations of a credit card from an age well before any such sophistication was possible: You get paid in bulk at the end of the month (year, really), but have to pay for meat and eggs and, like, firewood every day. It’s a way to align spending and revenue that don’t come in together. That’s pretty convenient in a poor, pre-financial economy, with divisibility and information problems.\n\nNow, sovereigns of the past—not unlike our modern schmucks—obviously went overboard with this; the English crown _issued more tallies than it had revenue streams backing them_. So the payback line got longer, and longer and longer... If you're issuing a non-interest-bearing, debt that can't/won't be repaid, and that circulate as payment in the economy—tah-daaah, you've made money. \n\nTHEY QE'D THE 15TH-CENTURY ECONOMY WITH FUCKING **DEBT STICKS.**\n\nYeah, Mr. Baxter-Derrington. Bitcoin has been around for sixteen goddamn years. It's bigger and better than ever. Precoiners with BDS rallying against bitcoin impresse nobody. \n\nAnd leave my tally sticks the fuck alone. \n\n\n---\n\nHat tip to Andrew Bailey who took apart this sad dude's ramblings ([https://twitter.com/resistancemoney/status/1856850827895591288](https://twitter.com/resistancemoney/status/1856850827895591288))\n\nThat's today's not-so-little money lesson.\nPeace,\nJ\n\n[^1]: https://thedailyeconomy.org/article/from-the-land-of-financial-bubbles/\n[^2]: https://collection.sciencemuseumgroup.org.uk/objects/co60506/medieval-exchequer-tally-sticks\n[^3]: https://collection.sciencemuseumgroup.org.uk/objects/co60506/medieval-exchequer-tally-sticks\n[^4]: https://www.cambridge.org/core/journals/financial-history-review/article/abs/silver-coins-wooden-tallies-and-parchment-rolls-in-henry-iiis-exchequer/0A5D74BC0C72A44415BBF37A8A533677 \N 21271 \N 458198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9858057345817 0 \N \N f 377592777 \N 2 127549697 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436659 2025-03-13 19:03:08.526 2025-03-29 22:39:48.904 Human Rights Foundation Grants $500,000 To 18 Bitcoin Projects Worldwide \N https://bitcoinmagazine.com/business/human-rights-foundation-grants-500000-to-18-bitcoin-projects-worldwide 20205 \N 436659 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.37966737396243 0 \N \N f 194814550 \N 1 132353983 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:23:49.903 f \N \N \N 0 0 0 0 1 0 0 444065 2025-03-19 16:41:41.294 2025-03-29 22:39:48.904 Relai AMA I'm Julian Liniger and I'm here with my co-founder Adem, we are from Relai and try to get some Bitcoin into everyone's pocket in Europe! \n\nAMA! \N 2204 \N 444065 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.9671850870233 0 \N \N f 360742201 \N 2 2061087 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413007 2025-02-22 19:51:21.149 2025-03-29 22:39:48.905 Paxful suspends Marketplace \N https://twitter.com/Pledditor/status/1643243489528889348 20701 \N 413007 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 29.7679221053695 0 \N \N f 1723532944 \N 13 213600991 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 416775 2025-02-25 20:44:22.627 2025-03-29 22:39:52.202 \N Is there even an argument that nostr does scale? I haven't had the time to examine it as closely as I should. But my understanding is there's no mechanism to spread the load on popular relays; even simple things like avoiding DoS attacks aren't clear yet beyond "paid relays". Which of course, isn't a very decentralized way of moving data around.\n\nAt small scale these problems are probably not a big deal as lots of people can step in to run new relays. But at Twitter scale, if big relays went down it'd take quite a lot for someone else to take up the slack and for users to switch over. https://example.com/ 6602 416158 416158.416775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.450960517124 0 \N \N f 169948709 \N 1 247024122 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448982 2025-03-23 03:48:03.161 2025-03-29 22:39:52.203 \N To clarify: I am myself a bitcoin maxi. I am currently only invested in Bitcoin. It is the hostility part of maximalism that I believe turns people off and is counterproductive to increased bitcoin adoption.\n\nThere are some interesting things going on outside of Bitcoin, it is not all scams. https://example.com/ 15160 448953 448953.448982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1003761960542 0 \N \N f 323257899 \N 2 108836764 0 f f \N \N \N \N 448953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427306 2025-03-06 10:02:41.783 2025-03-29 22:39:52.203 \N I was previously an equities research analyst and a lot of my creative process mirrors my equities research process. Collect data and write a narrative around it. I start off with "what is the most important message the world needs to hear right now?" For DAWN, the message is, it will get better. We need to go through all the bad times and face our problems and try everything in order to arrive at the right solution. \n\nPersonally, poetry has always been emotional for me. I grew up in a different country to my dad so everytime I left him I'd write him poetry to express how I felt. I wanted him to know that I love him a lot. And so I guess being able to put together the narrative / evidence from equities research and the emotional aspects of poetry, you get this! No AI involved, AI is soulless. https://example.com/ 11038 427258 427251.427257.427258.427306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.260677120892 0 \N \N f 114197117 \N 1 238764534 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450231 2025-03-23 19:48:55.729 2025-03-29 22:39:52.203 \N Thank you so much for the mention and the sats!\n\nWhat came to my mind when creating the Mexico territory was that a lot of good content is still being posted in Reddit, but unluckily that place is turning quickly as woke as the opening ceremony of the current Olympic Games.\n\nAlso, I’m currently in Austin sorrounded by the people at PlebLab which are all super based. Back in Acapulco I don’t have that experience everyday. Sometimes I’d like to discuss topics for which you’d need to be well-versed the latest happenings in Mexico: how the president’s whim to build a refinery is a blessing (in disguise) while his new train track is a failure, how absurd electricity prices are in the country and what we could do about them, or how yet another famous person from the state of Jalisco turned out to be gay. \n\n(That last one actually comes from the running gag that all men born in Jalisco, like my co-founder, are gay… I hope he reads this message… And serves as an example of the kind of banter that I just don’t feel explaining to non-Mexicans unless they specifically ask.)\n\nThen, I believe that @k00b nailed it with the name. When he first told me ‘you can claim a territory’ something clicked in me: we are territorial beings, particularly men, and the lineage of Spanish conquistadores that composes most of my DNA made me straighten my spine, pull out my chest, look at the horizon and say ‘I’m gonna claim some territory.’\n\nSo, going back to the diagram, that’s the meaning and the thought for me… Possibly quite entangled. \n\nNow, as for the action… I’ve always been the kind of bloke that when he sees something meme-able and relatable, he’s just gonna listen to the reptilian side of his brain and go for it. \n\nI envision many more specialised territories in SN as more and more people abandon the wokeness of the competition. https://example.com/ 9183 450221 449767.450221.450231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4707929310549 0 \N \N f 286570815 \N 2 227928677 0 f f \N \N \N \N 449767 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403323 2025-02-14 17:32:43.516 2025-03-29 22:39:48.905 100k Sat Bounty - Help me regain access to my Start9 server \nI'm experiencing issues with my Start9 server and offering a 100k sat bounty for help resolving it.\n\n## Current Issues\n- Server has been down for an extended period\n- Already attempted re-flashing OS and recovery from existing drive\n- Login attempts at `.local` result in immediate logout (within 0.5 seconds)\n- No error messages appear in console\n\n## Troubleshooting Steps Taken\n- Contacted Start9 support\n- Tested with multiple internet routers\n- Attempted access through different browsers\n- Tried various devices (both laptop and mobile)\n- Performed OS re-flash\n- Attempted drive recovery process\n\n\n## Additional Information\n- The login screen appears and accepts credentials\n- Successfully authenticates but immediately redirects back to login\n- This behavior is consistent across all tested configurations\n\n## Bounty Details\nOffering 100k sats for successful resolution of this issue. Direct messages are welcome for assistance.\n\n## Notes\nThis appears to be a persistent authentication/session management issue rather than a network or hardware problem, given the consistency across different devices and networks.\n \N 12946 \N 403323 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 2.87136111570675 0 \N \N f 535090519 \N 7 112962996 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 437984 2025-03-15 04:47:38.887 2025-03-29 22:39:48.906 What energizes you? **Exploring**. Both places and new ideas. \n\nMy mind needs exploration to thrive.\n\nIs your current life energizing you? What’s working? What needs to change? \N 1733 \N 437984 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.2740614146857 0 \N \N f 134522980 \N 1 5473029 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400967 2025-02-12 16:24:36.982 2025-03-29 22:39:48.906 Streaming our financial lives with Lightning First of all, let me make my point here:\n\nI see a world in which we can pay for things -- and _get paid_ -- as we consume/work.\n\nI'm talking about:\n\n- beer taps that charge you based on the amount you pour.\n- movies/TV streaming platforms that charge based on your time watched, not a flat rate per month.\n- paying for energy _as you consume it_, not a bill that gets sent in the mail weeks after the fact (this is \n what the Bitcoin startup [Synota](synota.io) is working on)\n- direct deposits landing every day/hour/minute/second that you work at your shift.\n\nThis model, of course, doesn't apply to everything. \n\nI wouldn't want to "pay as I wear" a new t-shirt or own a "pay as you walk" shoe.\n\nHowever, that's essentially where we're drifting towards with today's money.\n\n![Buy now, pay later](https://www.footasylum.com/images/blog/FA_WK23_KLARNA_UPDATE_BLOG_POST%20.jpg)\n\nSubscription payments are becoming more and more prominent everywhere today, and it really speaks to the state of fiat financials seeing all these crazy buy-now-pay-later models for everyday items.\n\nIMO, we'll probably look back on the subscription mania we see today like we do the horse & buggy.\n\nAre subscription models a mere foreshadowing of what's to come with Lightning payments? \n\nWhat happens to payments when we unlock instant settlement?\n\nIs this where you see Lightning going as well? \N 777 \N 400967 \N \N \N \N \N \N \N \N health \N ACTIVE \N 0.270167321294963 0 \N \N f 262437957 \N 2 66381314 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435649 2025-03-12 21:08:09.876 2025-03-29 22:39:52.203 \N > There are now people, maybe a majority of Bitcoiners, who genuinely believe that spinning up non-mining nodes helps secure the network. How do we undo this?\n\nNon-mining nodes do help secure the network in a number of ways:\n\n1) They improve privacy for everyone, by increasing the k-anonymity set of Bitcoin nodes.\n2) If needed, non-economic nodes can be quickly turned into economic nodes by changing wallet settings.\n3) They make it harder to perform node-level Sybil attacks, especially in circumstances where the attacker needs diverse IP address space.\n4) Running a node helps people learn more about how Bitcoin works.\n5) Running nodes normalizes running Bitcoin nodes, pushing back at narratives painting nodes as "money transmission" or similar nonsense.\n6) Publicly accessible nodes help other nodes stay in sync by providing bandwidth. This is particularly helpful if you run an archival node, especially with block filters turned on.\n\nIf you've got some spare hard drive space, you should run a node. It doesn't even matter if it's publicly accessible or not. Bitcoin Core is just software. You can run it on your laptop just fine (a pruned mode needs just ~10GB of space). I have Bitcoin Core on all my laptops and desktops.\n\nIf you have some spare money, go ahead and buy a raspberry pi or a mini-PC and run a node full time. At worst you'll learn a little bit about Linux and system administration, which is always a useful skill.\n\n> There are literally people now wasting time and money running multiple non-mining nodes in their basement thinking they are contributing to the network.\n\nYes, multiple nodes on one internet connection doesn't help others much, if at all. But very few people are doing that, and the few who are aren't significantly harming anyone else. This isn't a problem worth complaining about. https://example.com/ 1803 435235 435046.435135.435162.435214.435220.435235.435649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7714229545057 0 \N \N f 607635467 \N 5 60247709 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:00:05.303 f \N \N \N 0 0 0 0 3 0 0 450976 2025-03-24 10:28:08.872 2025-03-29 22:39:52.202 \N ![](https://d.pr/i/uf2tSC+) https://example.com/ 2459 450971 450971.450976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.15406616548272 0 \N \N f 378138705 \N 3 204229371 0 f f \N \N \N \N 450971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435249 2025-03-12 14:54:03.679 2025-03-29 22:39:52.203 \N It seems crazy to me that you can receive sats so easily at the moment when they will be so valuable in the future https://example.com/ 628 435244 435115.435133.435244.435249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2531186251282 0 \N \N f 540996598 \N 3 10092669 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 2025-03-19 08:15:35.22 f \N \N \N 0 0 0 0 1 0 0 456419 2025-03-27 15:36:26.583 2025-03-29 22:39:48.906 This Day in Stacker News: June 27th I want to highlight @MerryOscar, who has a post in this edition. When I was having an issue with Fountain, @MerryOscar helped get it worked out.\n\n*Read the previous edition [here](https://stacker.news/items/587114/r/Undisciplined).*\n\n* * - \n\n### June 27th, 2023 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[A Basic Guide To Making The Switch To Graphene OS](https://stacker.news/items/200175/r/Undisciplined)**\n\nExcerpt:\n> I am very new to Graphene. I have a lot to learn. Getting my Pixel set up as a daily driver is going to take some work. Still, I am optimistic. I’m not going to rush it. I am keeping my old Galaxy around too, so my transition will be gradual.\nIf you decide to make the change, I hope this short guide is useful.\n\n*27.2k sats \\ 50 comments \\ @siggy47 \\ ~tech*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/200217/r/Undisciplined?commentId=200226**\n\n> Andreas Antonopoulos\n\nFrom **[Which bitcoiner taught you the most?](https://stacker.news/items/200217/r/Undisciplined)**\n\n*2192 sats \\ 3 replies \\ @siggy47*\n\n----\n\n### 🏆 `TOP STACKER`\n\n2nd Place **@k00b** (1st is hiding, presumed to be @siggy47)\n\n*12.2k stacked \\ 11k spent \\ 5 posts \\ 23 comments \\ 0 referrals*\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n\n\n\n### June 27th, 2022 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[I'm Oscar Merry and I'm building Fountain Podcasts. AMA.](https://stacker.news/items/39079/r/Undisciplined)**\n\nExcerpt:\n> I'm Oscar Merry and I'm building Fountain Podcasts - a Podcasting 2.0 app that rewards both listeners and podcasters for the value they bring to the platform.\n\n\n*32.5k sats \\ 98 comments \\ @MerryOscar \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/38960/r/Undisciplined?commentId=38963**\n\nExcerpt:\n> A miner would cherry-pick her own transaction to spend the UTXO. The only way it would be rational for the miner to mine your tx instead of her own, would be if you offered a fee worth more than the UTXO itself.\n\nFrom **[AskSN: What's the "fastest" way to confirm a transaction?](https://stacker.news/items/38960/r/Undisciplined)**\n\n*168 sats \\ 2 replies \\ @jeff *\n\n----\n\n### 🏆 `TOP STACKER`\n\n**@cryptocoin**\n\n*1454 stacked \\ 568 spent \\ 8 posts \\ 26 comments \\ 0 referrals*\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n\n\n\n### June 27th, 2021 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[Support clicking on the LNURL-Auth QR code](https://stacker.news/items/100/r/Undisciplined)**\n\n> To the stacker.news admin:\nPlease add lightning: link to the LNURL-Auth QR code for easy authentication via mobile wallets.\nWhy scan or copy-paste when the wallet can be triggered by clicking a link?\nSee lnmarkets for example.\n\n*7 sats \\ 21 boost \\ 18 comments \\ @roy \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/100/r/Undisciplined?commentId=107**\n\n> visit https://lightning-roulette.com and try to make a deposit and you will see a link that says "open wallet".\n\nFrom **[Support clicking on the LNURL-Auth QR code](https://stacker.news/items/100/r/Undisciplined)**\n*1 sat \\ 3 replies \\ @0391398253*\n\n----\n\n### 🏆 `TOP STACKER`\n\n*EMPTY* \N 19655 \N 456419 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.8616878478242 0 \N \N f 30378930 \N 1 36120320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455498 2025-03-27 04:31:55.941 2025-03-29 22:39:48.907 Have You Ever Wondered How BlackRock Rose To Power? 🧐 On a long run this morning, i listened to the audio version of this [mini-documentary](https://www.corbettreport.com/blackrock/) covering the genesis, and subsequent meteoric rise of Blackrock.\n\nThere were some tidbits that surprised me in the doc, especially as it relates to the firm's involvement in the creation of the global CMO market -- one of the OG shitcoins.\n\nJames is one of my favorite independent researchers & journalists, the man's work is almost entirely supported by 1st or 2nd source references, and he also produces transcripts with images + links.\n\nI feel like this is a great resource to share with your normie friends who might have been hearing more about Blackrock lately, but are unsure of what it is that they do. \N 15728 \N 455498 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 9.10476993507885 0 \N \N f 344338186 \N 2 245029239 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437524 2025-03-14 15:23:17.801 2025-03-29 22:39:48.907 Uganda confirms hack of Central Bank accounts \N https://www.reuters.com/world/africa/hackers-steal-17-mln-uganda-central-bank-state-paper-2024-11-28/ 14255 \N 437524 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 10.7171887318918 0 \N \N f 434571544 \N 3 125049802 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402962 2025-02-14 09:45:55.906 2025-03-29 22:39:52.202 \N We have gh issue for it ... https://github.com/stackernews/stacker.news/issues/266 https://example.com/ 21412 402931 402904.402931.402962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3458342875222 0 \N \N f 195357530 \N 1 92297901 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448274 2025-03-22 14:16:39.064 2025-03-29 22:39:52.202 \N Nice to see Lightning slowly getting Taproot-ier. From what I understand this change makes it so that the on-chain funds can be claimed by co-signing a transaction between the sender and receiver. Since Taproot makes it possible for a 2-of-2 multisig to look and be as cheap as a singlesig address, this leads to more privacy.\n\nIt is still trustless, so as long as you have the preimage to the HTLC you can still claim the on-chain funds. But again Taproot makes this even more private, you would only need this alternate spending condition (or the condition for when the swap times-out) when you need it, if for example your peer doesn't sign the transaction with you instead of having to provide the entire script when spending (cheaper and more private yet again!).\n https://example.com/ 9496 446086 445953.445964.446055.446086.448274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5853965070967 0 \N \N f 184681897 \N 2 173255078 0 f f \N \N \N \N 445953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422076 2025-03-02 09:08:28.388 2025-03-29 22:39:52.203 \N Miniscripting very underrated and in the first inning. https://example.com/ 9438 422068 422056.422057.422068.422076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0713222300607 0 \N \N f 434073378 \N 4 134388149 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404617 2025-02-16 02:30:21.935 2025-03-29 22:39:52.203 \N You need to follow the support ticket instructions exactly, they are rigid and specific for a reason. That sounds like its just a standard flow according to whatever internal rules and guidelines they follow for changing the email address associated with the account. It makes sense to verify the identity first.\n\nYour takeaways are still correct. I don't know anything about the third. https://example.com/ 13767 404614 404606.404614.404617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6387935261069 0 \N \N f 317929893 \N 2 29901951 0 f f \N \N \N \N 404606 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 428037 2025-03-06 19:36:08.229 2025-03-29 22:39:48.907 Spaniards dedicate more than 75% of their salary to taxes. Modern slavery. Spaniards already dedicate more than 75% of their salary to taxes: Indirect taxes, the 69 tax increases this year, and 50% of the salary for social security make Spaniards the people in Europe whose tax pressure has increased the most since 2019. Tax experts already talk about “modern tax slavery”.\nThe video in the link is in Spanish but I believe you may be able to translate the subtitles. A psychologist analyze this new modern version of slavery.\n\n(ES)\nLos españoles dedican ya más del 75% de su sueldo a impuestos: Los impuestos indirectos, las 69 subidas del fisco, y el 50% del sueldo para cotizaciones y varios hacen de los españoles el pueblo de europa al que más suben la presión fiscal desde 2019. Expertos fiscales hablan ya de “esclavismo fiscal moderno”\n\nhttps://www.youtube.com/watch?v=63zP9XlLg4k \N 661 \N 428037 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.3669624185216 0 \N \N f 94616207 \N 1 201431535 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434037 2025-03-11 15:16:19.944 2025-03-29 22:39:52.202 \N Interesting idea. So physical things, sent by mail? \nI'd love to buy and sell things with bitcoin. Was thinking of making some loaves of bread and bringing them to my (kinda small) meetup, to sell. https://example.com/ 1051 433828 433828.434037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.359400444164 0 \N \N f 49045644 \N 1 169349222 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-19 03:30:01.332 f \N \N \N 0 0 0 0 1 0 0 443200 2025-03-19 06:41:53.008 2025-03-29 22:39:52.202 \N `ᕦ(ò_óˇ)` Day 2 of exercising everyday before the saloon opens\n\nI went to the calisthenics park without much of a plan. My goal was just to keep it easy since this is just day 2.\n\nWhen I arrived, I decided I'll start with 10 counter push-ups, 10 squats, about 10 lunges (just lunged across the width of the park which is about 5m and back) and 10 inverted rows.\n\nI then did this 2 more times. I already struggled with the push-ups and rows on my first set but I kept trying as good as I can without getting too sloppy.\n\nThen I wanted to do some knee raises since I like this exercise. \n\nDid 10 and then I felt like maybe this was too much now. \n\nBack home I just sat down for a while since I struggled with the stairs to my apartment at the fourth floor. Had to take a break. \n\nI think tomorrow I'll sure just go for a walk, lol https://example.com/ 14225 443195 443187.443195.443200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.0822929709875 0 \N \N f 465222551 \N 3 162451408 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432618 2025-03-10 13:31:41.527 2025-03-29 22:39:52.203 \N robosats.com is a p2p Lightning exchange https://example.com/ 21520 432404 432404.432618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58643498388703 0 \N \N f 119852710 \N 2 168991099 0 f f \N \N \N \N 432404 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448697 2025-03-22 19:41:49.814 2025-03-29 22:39:52.203 \N Lightning :) https://example.com/ 19637 448554 448527.448554.448697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.2590615187551 0 \N \N f 231359744 \N 1 108348794 0 f f \N \N \N \N 448527 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448395 2025-03-22 15:26:16.805 2025-03-29 22:39:52.203 \N What's the next big step to having a circular economy using the LN? https://example.com/ 9261 448283 448283.448395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6613622049616 0 \N \N f 96799420 \N 1 70355668 0 f f \N \N \N \N 448283 \N 0 0 \N \N f \N 2025-03-29 08:57:01.459 f \N \N \N 0 0 0 0 1 0 0 443195 2025-03-19 06:34:36.118 2025-03-29 22:39:52.191 \N i think it’s the same general framework that makes other forms of content, or even entire businesses, great.\n\nVRIN is a helpful mnemonic and framework for understanding the sources of “great” content.\n\nThe key questions to ask are:\n\n- Is this valuable?\n- Is this rare?\n- Is this inimitable?\n- Is this non-substitutable?\n\nFor those interested, [here](https://josephmahoney.web.illinois.edu/BA545_Fall%202022/Barney%20(1991).pdf) is a paper explaining the framework in detail. https://example.com/ 18772 443187 443187.443195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2774030295983 0 \N \N f 627673959 \N 4 163372376 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456501 2025-03-27 16:23:25.27 2025-03-29 22:39:52.192 \N https://imgprxy.stacker.news/3hPlck2ZInKd90fryjFQ4TwXWq_881bzRIakUBQ-lM4/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYTQuZ2lwaHkuY29tL21lZGlhL2NRNzVvaDJrMHA1clNwdXIxTC9naXBoeS5naWY_Y2lkPWVjZjA1ZTQ3czBjd2Nxb3I1anpzcDRwdmViazlmazhvdGZ6a2dxanhtMTByZ2QyeSZlcD12MV9naWZzX3NlYXJjaCZyaWQ9Z2lwaHkuZ2lmJmN0PWc https://example.com/ 17953 455525 455525.456501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.624490221366258 0 \N \N f 247186674 \N 1 240468889 0 f f \N \N \N \N 455525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424306 2025-03-04 00:32:34.079 2025-03-29 22:39:52.192 \N It seemed mostly like someone just having a laugh. \n\nMaybe they'll come here and tell us? https://example.com/ 2342 424300 423928.424260.424266.424282.424285.424294.424299.424300.424306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.61696159154465 0 \N \N f 219798501 \N 1 218981530 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447239 2025-03-21 17:58:33.331 2025-03-29 22:39:52.192 \N "We've got the gold, trust us. Here's another trillion tokens." https://example.com/ 2537 447148 447148.447239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1264268991294 0 \N \N f 832164420 \N 5 208936680 0 f f \N \N \N \N 447148 \N 0 0 \N \N f \N 2025-03-28 12:09:16.188 f \N \N \N 0 0 0 0 1 0 0 436162 2025-03-13 11:05:13.028 2025-03-29 22:39:52.203 \N I honestly haven't noticed much difference, but my experiences are only online. My friends and family have no interest, and I stopped trying to influence them long ago. https://example.com/ 21091 436141 436028.436029.436031.436059.436065.436091.436126.436141.436162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4919365426091 0 \N \N f 381330324 \N 4 1249140 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 04:28:09.014 f \N \N \N 0 0 0 0 1 0 0 422678 2025-03-02 16:07:12.761 2025-03-29 22:39:52.192 \N What opportunities do you see for entrepreneurs to build bitcoin-centric companies, or put another way, what gaps in the market most need to be filled? https://example.com/ 2176 422587 422587.422678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.839683845269832 0 \N \N f 155461065 \N 2 159465878 0 f f \N \N \N \N 422587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431004 2025-03-09 15:08:36.185 2025-03-29 22:39:52.192 \N I don’t understand how Civil Forfeiture is not outright unconstitutional. Objects don’t have agency, and people are innocent until proven guilty. How is taking anyone’s stuff without due process or compensation so widely tolerated? https://example.com/ 14857 430331 430331.431004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0519460682069 0 \N \N f 105418169 \N 1 80853624 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436270 2025-03-13 12:35:40.616 2025-03-29 22:39:52.193 \N My family (unless they start to really piss me off) https://example.com/ 2596 436263 436028.436053.436125.436257.436259.436263.436270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.869624834216758 0 \N \N f 57978613 \N 1 238438359 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 06:18:19.222 f \N \N \N 0 0 0 0 1 0 0 447122 2025-03-21 16:22:49.994 2025-03-29 22:39:52.193 \N Day 245 of snailposting everyday 'til BTC hits $100k.\n\n...and 45 push-ups. (20 - 20 - 5)\n\n__@_'-' https://example.com/ 14705 446872 446681.446863.446872.447122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4883810556866 0 \N \N f 104282431 \N 1 100168070 0 f f \N \N \N \N 446681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446452 2025-03-21 08:33:41.85 2025-03-29 22:39:52.193 \N I am addicted to the game already! I love it. Got my mom to try the game and she's hooked on it too. Best thing ever! https://example.com/ 8648 446371 446371.446452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3605716962429 0 \N \N f 2484453643 \N 16 32964058 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 12:39:56.763 f \N \N \N 0 0 0 0 2 0 0 433772 2025-03-11 11:37:50.293 2025-03-29 22:39:52.193 \N @ek taught us the delightfully charming phrase “I’m not here to fuck spiders”. Immediately used it on an Aussie friend today. Street cred boosted. Brotherhood underwent a fist bump. Thanks, ek. That is all\n\n![IMG_1167.png](https://m.stacker.news/20004) https://example.com/ 1480 433555 433555.433772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9056322143238 0 \N \N f 151716256 \N 2 44282523 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 01:00:29.859 f \N \N \N 0 0 0 0 1 0 0 447107 2025-03-21 16:17:36.361 2025-03-29 22:39:52.196 \N A while back I wrote a post about the Melville Deli, a Long Island business that accepts bitcoin. \nhttps://stacker.news/items/267725/r/siggy47\n\nTomorrow at 5:00pm Simon, owner of the deli, is sponsoring a bitcoin meetup. If any stackers are in the area, you should definitely stop by:\n\n> I'm planning on hosting a meetup at the deli next Friday the 17th at 5pm. Sandwiches, beer and possibly steaks on me. Feel free to join. Just give me a heads up if you want steak. Got a couple bitcoiner buddies coming already, should be a good time.\n https://example.com/ 8729 447094 446965.447094.447107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.16099958889366 0 \N \N f 191902637 \N 2 71917707 0 f f \N \N \N \N 446965 \N 0 0 \N \N f \N 2025-03-28 11:26:50.649 f \N \N \N 0 0 0 0 1 0 0 434367 2025-03-11 20:39:29.554 2025-03-29 22:39:52.196 \N More about the Mt. Gox case, that new people should know:\n- [Cracking Mt. Gox](https://youtu.be/l70iRcSxqzo) - Kim Nilsson (Invidious link [here](https://invidious.snopyta.org/watch?v=l70iRcSxqzo))\n- [The Unbelievable Story Of Mark Karpeles](https://youtu.be/1ivWSLQRQp0) - Bitcoin Documentary (Invidious link [here](https://invidious.snopyta.org/watch?v=1ivWSLQRQp0))\n- [The Rise and Fall of Mt. Gox](https://www.youtube.com/watch?v=CFmnAGjt-lI) - The Darknet Diaries (Invidious link [here](https://invidious.snopyta.org/watch?v=CFmnAGjt-lI))\n- [The Legacy of Mt Gox with Pete Rizzo and Matt Odell](https://youtu.be/baNBW3FrRFY) - Bitcoin Magazine https://example.com/ 20434 433967 433679.433956.433967.434367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.70974422420051 0 \N \N f 9925973 \N 1 40513673 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 2025-03-18 20:34:33.639 f \N \N \N 0 0 0 0 1 0 0 422941 2025-03-02 19:45:31.925 2025-03-29 22:39:52.197 \N Lightning doesn't have blocks, so there are no lightning "block explorers," and consequently, as devs, if we make a third party website where one person can pay another, it can be difficult to check whether the payment went through. Often we want to know information like "Did this payment succeed?" and there's just nowhere to look.\n\nTo fix this, we mostly have to make do with self-reporting by either the sender or the recipient. NWC is a standardized api for that. It also has some other features, like the ability to remote-control a wallet (if the owner gives you permission) and thus remotely "click" the Send and Receive buttons.\n\nLearn more here: https://nwc.dev/ https://example.com/ 19303 422939 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422918.422933.422939.422941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.2204979924168 0 \N \N f 424603939 \N 3 164007505 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447139 2025-03-21 16:31:32.003 2025-03-29 22:39:52.197 \N i want a hat like yours, we're like aliens! https://example.com/ 17708 447121 447121.447139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.07376007396483 0 \N \N f 50240415 \N 1 7782759 0 f f \N \N \N \N 447121 \N 0 0 \N \N f \N 2025-03-28 09:50:47.302 f \N \N \N 0 0 0 0 1 0 0 416806 2025-02-25 21:15:35.652 2025-03-29 22:39:48.908 Meme Monday - Best Bitcoin Meme Gets 10,000 Sats Time for another round of Meme Monday!\n\nWe have another 10,000 sats up for grabs for this week's winner.\n\nThe sats will be given to the stacker with the best Bitcoin meme as voted by the "top" filter on this thread at 10am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 21379 \N 416806 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 23.5414654662527 0 \N \N f 680399148 \N 3 141120258 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 422537 2025-03-02 14:25:00.514 2025-03-29 22:39:52.197 \N 1. It either contacts the gateway directly with the locked ecash or goes through the federation to contact the gateway, I forget. \n2. Anyone can be one\n3. Fixed\n4. No. It's even fine for the invoice to be split across multiple gateways in an mpp payment. https://example.com/ 13763 422535 422056.422470.422497.422499.422535.422537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.74300732067731 0 \N \N f 65803574 \N 1 54215935 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455689 2025-03-27 09:06:35.593 2025-03-29 22:39:52.197 \N - too much clickbait\n- too much agenda\n- too little actual research\n- too much articles around what some random guy posted on twitter\n- too much notice of the [Gell-Mann amnesia effect](https://effectiviology.com/knolls-law/#The_Gell-Mann_amnesia_effect) https://example.com/ 18678 426376 426376.455689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.736525910314363 0 \N \N f 73966715 \N 1 174646826 0 f f \N \N \N \N 426376 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410445 2025-02-20 13:36:08.249 2025-03-29 22:39:52.197 \N Covid sucks. Sitting at home for week and still feel like a crap. https://example.com/ 5128 410269 410269.410445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.70368522861021 0 \N \N f 250576001 \N 3 151822243 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443560 2025-03-19 12:18:03.174 2025-03-29 22:39:52.197 \N \nThank you all for the contributions here ! We are still developing the protocol and the app and we appreciate all the feedback added here. \n\nWe have tried to build an extensive library about Fedimint (https://fedimint.org/docs/intro), but we understand this is a large concept that can be difficult to communicate. We’re looking to expand on this and welcome your input via our telegram group (https://t.me/fedimint). \n\nWe added below some points that might help to answer some questions you raised. Again, we are super open to learn from you and we might have questions we won’t be able to answer right now, as we are still in the development stage. But they are key for us to build as much bulletproof product as possible. With that said, let’s go to some points to consider:\n\n- Fedimint is a community custody protocol that allows you to more easily store your bitcoin with the people that you trust, whilst still being able to transact in a private way. \n\n- This isn’t a new concept, it already happens either with physical money in communities around the globe or in Bitcoin - some of you might have the experience to assist friends or family members with custody. \n\n- We know the best custody is self custody, but we believe that 2nd party custody with a simple product is better than 3rd party custody. We believe removing bitcoin from exchanges into the hands of communities will be a significant win for bitcoin.\n\n![img](https://fedimint.org/assets/images/fm-spectrum-custody.excalidraw-4db14732495b99429517511026155dfa.png)\n\n\n- We understand this is a first step on the journey of many to understand the importance of custody in general and adopt Bitcoin in a safer manner. That’s why guardians are assumed to be trusted parties in the community otherwise you would be unwise to place your bitcoin with them. So it isn’t like a bank or an exchange, but a collaborative form of custody. \n\n\n- A key point with Fedimints is to understand that we are building for a world where there will be thousands to millions of collaborative Fedimints - decentralising the custodians. Each will have different trust models based on your relationship to the guardians of those federations. Larger federations may be useful for more private transacting and smaller federations would be more appropriate for custody of funds, we expect there will be a design space to explore here. \n\n- Current custody models used in bitcoin provide the custodian with full visibility of the individual's balance and transaction history. We believe one significant improvement which can be made here is to use Chaumian eCash to ensure that the custodian does not have visibility of the balance or transactions of its members. \n\n- When referencing backup the guardians only hold an encrypted shard of a master key which can be used to get access to funds. The guardians cannot reconstruct this key. They can, however, assist the member of the federation in retrieving this key so that they can decrypt it. Once decrypted they can recover their funds without further assistance from the guardians. \n\n- Fedimint isn’t Liquid, but has some similarities. One way to think about this would be that Fedimint is a software platform that makes it simpler to deploy many federations as opposed to one federation in the liquid model, decentralising the custodians. \n- Finally it is worth describing the relationship between Fedi and Fedimint. Fedi is not Fedimint, itself but a company committed to building on and educating about Fedimints as a platform. We don’t take any custody of federations funds, these will always remain with the communities supported by a federation. \n\n\nHope this clarifies some questions. When we have the app ready we would love to have an AMA, so you can see this concept translated into reality. But as a whole Fedi will be a safe place where individuals will communicate and move their money freely and privately with the ones they trust the most. We are getting there… ;) https://example.com/ 11648 443548 443295.443548.443560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5837420276394 0 \N \N f 86150550 \N 1 43685822 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:11.05 f \N \N \N 0 0 0 0 1 0 0 443022 2025-03-19 00:45:47.448 2025-03-29 22:39:52.198 \N new ad today \n😱 https://example.com/ 17321 442981 442981.443022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.31760548097314 0 \N \N f 174039486 \N 1 102086345 0 f f \N \N \N \N 442981 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404598 2025-02-16 01:50:18.224 2025-03-29 22:39:52.198 \N What a great first post for the site, gives me "Chancellor on the brink of second bailout" vibes https://example.com/ 9796 404462 403648.403971.404049.404442.404462.404598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5481341531033 0 \N \N f 45057078 \N 1 42719733 0 f f \N \N \N \N 403648 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 398382 2025-02-10 16:11:25.511 2025-03-29 22:39:52.198 \N First, this is beautifully written. Be encouraged in that friend, I strive to be able to write like this and I am inspired by you. \n\n> Yet, sometimes the silence manifests as misery. A miserable feeling. A feeling that you are wasting your one precious life.\n\nWhen our loved ones are asleep, when the notifications don’t ding, when we are alone late in night. That’s when the monsters creep in. The demons of doubt are always in the periphery and they wait until we are at our weakest… alone. \n\n> resentment toward my responsibilities, intense ideation of a different life, time traveling to the past, and a desire to do nothing but seek comfort and indulge in it.\n\nI relate to this strongly, and it can come to a point that it is crippling. For me that manifests in procrastination, just allowing myself to be taken away by the distractions and the alternative time lines. But we fight against it don’t we, we must. \n\nHere’s my take:\n> One person can look into your life and your work, say, "I understand, keep going," and you flourish as a result.\n\nFor me, that one person is Christ. In those moments when you are alone, in the darkness, and the demons of doubt are biting at your heal, I remember that I’m actually not alone, I never was. When I’m fallen, face down in the mud, he’s down in the mud with me and he says “I understand, keep going.” He’s the one that keeps me going, keeps me encouraged and as long as I remember he’s there I never feel alone. I say this as a long distance truck driver, who’s literally always alone. https://example.com/ 19806 398184 397842.398184.398382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6026116546569 0 \N \N f 152156949 \N 2 36980740 0 f f \N \N \N \N 397842 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402992 2025-02-14 10:30:40.131 2025-03-29 22:39:52.199 \N I can't believe I'm on this list. Thanks to those who have read the posts about my country, I want to be the voice of those in Venezuela who can't speak because their lives are in danger. Happy weekend. https://example.com/ 11516 402763 402674.402763.402992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5668733055949 0 \N \N f 310212854 \N 2 114072844 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417941 2025-02-26 17:49:56.397 2025-03-29 22:39:52.199 \N Random weird bug.\nI was trying to see @DeezSats profile and if they've posted recently. \nWhen you go to 'Items' it breaks the site or something, on PWA too.\n@k00b @ek\n![](https://m.stacker.news/39090)\n\nI just liked this exchange haha https://example.com/ 15577 417903 417840.417903.417941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.193528796741 0 \N \N f 16091739 \N 1 99981757 0 f f \N \N \N \N 417840 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443038 2025-03-19 01:10:20.353 2025-03-29 22:39:52.199 \N > Why do you keep paying taxes to mafia?\n\nTo stay alive? https://example.com/ 3642 442313 442313.443038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6605619085688 0 \N \N f 223113507 \N 1 6603996 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 2025-03-26 04:53:38.073 f \N \N \N 0 0 0 0 1 0 0 392928 2025-02-05 16:13:10.838 2025-03-29 22:39:48.908 Bitcoin isn't Money and Other Lies from the Invisible Deity: The State \n## Background\n\nMy thesis is that the state is a false god. An invisible deity in the minds of most citizens. It is invisible just like water is to a fish. Like air is to humans. We don't think about it. It just is. I don't recall where I first heard the idea that the state is a deity[^1]. But I recall it being one of those red pill moments for me. Something that changed the perspective I had on many things both internal and external. It led me into some deep soul searching. At the time I had been opposed to the actions of the government for many years. I was a fan of Ron Paul. I believed the US government was evil. But I had never connected how the state sets itself up like a deity. I was reminded of this today when I heard a tradfi person say that bitcoin is not money unless the government says it is and forces it on the people. Of course this is false. There are disagreements on the definitions of money and I'm not here to debate that. It just reminded me of the place the state holds in the minds of most people.\n\n## The Indoctrination\n\nThink about this. When I was a kid attending a government school each day we would pledge allegiance to the flag. We had pictures of the presidents on the wall. We would take field trips to the state buildings where governance would take place. A large percentage of the time was spent on trying to turn out good citizens. Think about all the monuments to presidents and founding fathers. Think about how people view the Constitution. I have heard it referred to as a sacred text many times. Its one of those things you just don't notice because it is the reality you are born into. Its what your parents were born into. The invisible deity.\n\n## The Red Pill\n\nThe state as deity is something you can't un-see. When you begin to view the state through the lens of it being a god many things become clear. You begin to see this belief in politicians who propose ridiculous legislation that defies logic. You can understand why events like J6 create such emotional reactions in true believers. You can see why people would rally and put themselves in harms way for a man that doesn't defend them. One side contests an election and does so with such fervor because they believe the deity has been perverted. The opposing side can't stomach their precious halls of government, their institutions being disgraced by such vile people. It is a very religious response. Very emotional.\n\n## Both Parties in US\n\nFor progressives the central aspect seems to be the idea of democracy. With conservatives it seems to be patriotism. The idea of some ideal past that we need to go back to. But really from my perspective, for both its about power. The best analogy I've ever heard is the ring of power from "The Lord of the Rings". Both sides want the ring of power (the state) to bring about their vision for the world. It is their central focus. They both wrap this desire for power in good motives but the state eventually corrupts anyone that tries to use it just like the ring of power.\n\n## Defining Some Terms\n\nWhen I get pulled into a discussion about politics or the government I usually get push back on my view of the state. The problem usually comes from how most people view a few terms. Most do not separate the state from government or governance. It is also common for nation and country to be combined with the government. With that in mind let me define how I am using these terms. I didn't come up with these definitions but they make sense to me and are pretty widely accepted among libertarians and anarchists. You are free to disagree but if you want to understand what I am putting down here this is the context.\n\nMy definitions\n\n- A government is the functional regulator of activities. It could be a private company in free market or a state with a monopoly on violence.\n- A nation is the people untied by common roots either ethnically, historically, or by choice\n- A country is the geographical land controlled by a state or government body.\n- A state is an institution with a monopoly on violence over a geographical area, typically a country.\n\n## Lies the State Tells Us\n\nA couple misconceptions about the state are that law and money[^2] cannot exist outside of the state. Both predate the state. Another is that the state defines morality. Illegal does not equal immoral. Legal does not equal moral. For most people groups their morals are defined by their deities. Many people speak about the state in ways that can only be parallel by the way people talk about deities. The Christian God spoke the world into existence. It is this power of the word that is the focus of my thought here. When people push back on "Taxation is Theft" position, what they are really saying is that the state defines what is right and what is wrong. In every other situation taking something by force is called theft. But when the state does the same thing, it is not theft. It is taxes. Not only should you pay them but it is morally wrong not to pay them. Most Christians in the US hold this view[^3]. When the state kills someone it is not murder. I'm not referring to war here. I'm referring to the targeted killings of US citizens that are _suspected_ to be terrorists. This happened under Obama and I suspect it has continued. Think about the how the state enforcement arm, the police live under a different set of rules than you and I. The state makes its own rules, breaks the rules and never pays for its crimes.\n\n## A Note For Christians\n\nBefore king Saul the children of Israel were governed by judges. But God was their king. They were not ruled by a man. There was no state. There was law, judges, and Jehovah. In 2st Samuel the people tell Samuel they want a king. I think we forget what this was actually about.\n\n> ...Now appoint for us a king to judge us like all the nations.” But the thing displeased Samuel when they said, “Give us a king to judge us.” And Samuel prayed to the Lord. And the Lord said to Samuel, “Obey the voice of the people in all that they say to you, for they have not rejected you, but they have rejected me from being king over them.\n\n1 Samuel 8:5-7 ESV\n\nI was recently reading this passage and "they have rejected me from being their king over them" jumped out at me. Wow. When I see Christian's getting so passionate about presidential candidates I can't help but think they are doing the same thing that God pointed out in this passage. I'm not only talking about those that support Trump and believe he will "save this country". I'm also referring to those that think he must be stopped. It sure seems like the faith is being placed in a man and not God. Or put more precisely, the position and control over it instead of God. \n\nLest you think that I'm being unfair. I discovered this idolatry in my own heart many years ago. We are born into it. It is not easy to shake. I can say that I viewed politics and the state as most Christians do today. I have no claim to righteousness. Thank God for his grace.\n\n## Closing\n\nI ask you to take a look at how you view the state. Does it function as a deity in your thoughts? I'm not saying we should overthrow the state. I think I'm incredibly fortunate to live in the US in this time. For all its flaws the United States in 2024 is a much better place to live than most places and times in history. I love the American people. I love our country. I think many of the ideals of the founding fathers were admirable. But we need to see the state for what it is. A false god. It does not grant rights. Its word doesn't create things. It cannot ban math. It cannot create money. It cannot make immoral actions right or just. Without the people's belief it would cease to exist. Stop believing in this false god.\n\n[^1]: It may have been the School Sucks podcast but I'm not sure.\n[^2]: I recommend "The Bitcoin Standard" as a good primer on the history of money.\n[^3]: After all, Jesus said "render to Caesar what is Caesar's". I do not believe Jesus was intending for us to believe Caesar is good and moral. Jesus also commanded we love our enemies and if someone takes our shirt we should also give them our coat. He said to turn the other cheek as well. Do we then read into these statements that the actions of our enemies are morally correct? Or is it more about how we respond to evil. I believe it is the latter. That said, lying on your taxes is a different matter. This is clearly morally wrong.\n \N 9275 \N 392928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5267784872789 0 \N \N f 102152508 \N 1 44010309 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 405321 2025-02-16 14:50:40.941 2025-03-29 22:39:48.908 10101 is shutting down \N https://x.com/get10101/status/1833098321482915910 3506 \N 405321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5112335623156 0 \N \N f 92759644 \N 1 199455263 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 429924 2025-03-08 17:34:55.753 2025-03-29 22:39:52.2 \N Totally agree with this post and your other 2 tweets:\n- https://nitter.net/CapitalistDog1/status/1737896114429272380\n- https://nitter.net/CapitalistDog1/status/1737532103951020518\n\nI will just add this:\n[![vader-power-dark-side.jpg](https://i.postimg.cc/sXmH6BvR/vader-power-dark-side.jpg)](https://postimg.cc/G8Bj9mFM)\n\nThe todays problems with BTC and LN are not the fees, but the stupid force closes of channels.\nIf we find a way to limit to minimum reasons a force closing channel, LN will work just fine.\nOpening channels in high fee environment is NOT the problem, the force closing channels is the problem.\nIf I have the certainty that a channel will not get force closed in the next year, I could easily manage my batch channels opening in a better way and cheaper.\nBut if I open today a 20M sats channel and in few months get force closed because some stupid shity node in the routing path got stucked HTLCs (not being my fault), that hurts a lot and disrupt massively the network.\n\nIn theory you do not have to close a channel if it just work fine and route payments. You close it ONLY in emergency cases and even then first you try to have a cooperative closure.\n\nBut yeah, people nowadays just come up with stupid ideas to "fix Bitcoin" and moving away from Bitcoin values.\nI am tired of all this bullshit proposals. https://example.com/ 13132 429764 429764.429924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.14309602694148 0 \N \N f 268321789 \N 2 126948483 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443395 2025-03-19 10:21:05.008 2025-03-29 22:39:52.2 \N Thinking about how stacker news feels like Reddit back in 2008. A small but intelligent community, high signal, low noise. Can’t wait to see this grow. https://example.com/ 9529 443390 443372.443390.443395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.758681090814 0 \N \N f 57170637 \N 2 96005670 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 04:06:25.131 f \N \N \N 0 0 0 0 1 0 0 415918 2025-02-25 08:50:46.538 2025-03-29 22:39:52.2 \N Running the London Marathon this weekend. Had an awesome training block over the last 10 weeks and looking forward to getting 26.2 miles done.\n\nBeen raising money for a local hospice back in my hometown to keep the legs moving :D. Wish me luck! https://example.com/ 7992 415915 415904.415915.415918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.026014664462 0 \N \N f 325672883 \N 2 173682320 0 f f \N \N \N \N 415904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407677 2025-02-18 09:40:48.029 2025-03-29 22:39:52.201 \N > even though you need to run a custom client to peer with other nodes that don't ignore your full rbf txs\n\nNitpick: that's actually not necessarily true right now. There's enough people running really well connected full-rbf nodes that a node that accepts incoming connections has a reasonable chance of being connected to a full-rbf node.\n\nBut certainly, if you want your full-rbf txs to be guaranteed to propagate, run this: https://github.com/petertodd/bitcoin/tree/full-rbf-v25.1\n\nI'll have a version for v26 soon too. https://example.com/ 5708 407495 407495.407677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2191160599987 0 \N \N f 37386688 \N 1 196151832 0 f f \N \N \N \N 407495 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423041 2025-03-02 22:33:51.225 2025-03-29 22:39:52.201 \N I'm surprised I haven't read as many on this list as I would have thought. Just Dalio, Hemingway, Alex Gladstein, and the Tao Te Ching. https://example.com/ 692 423035 422334.422660.422663.422986.422995.423035.423041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4881196959208 0 \N \N f 571111701 \N 4 246981009 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441878 2025-03-18 10:50:57.112 2025-03-29 22:39:52.201 \N My nocoiner friends asking if I'm rich. https://example.com/ 17041 441862 441695.441851.441862.441878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.045324631719 0 \N \N f 509426076 \N 4 98893554 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435154 2025-03-12 13:57:21.354 2025-03-29 22:39:48.909 Orange pilling a non-technical friend I have a friend I've tried orange-pilling before, bit he wasn't ready, so I didn't insist.\n\nHowever, he seems more interested now.\nHis Bitcoin experience is limited to buying a small amount of corn on Binance and forgetting about it for a few years. About 2 years ago he told me the phone he had Binance on was broken, he had moved to a new phone and asked me if I could help him regain access to his account (for which he couldn't remember his password) so he could sell it.\n\nThat was a facepalm / blood curdling moment for me, even though I didn't show it. I was at the stage of self-custodying my corn in cold storage, with the seed phrase engraved on steel plates and a passphrase, and here he is, losing access to his Binance IOUs he believes to be bitcoin just because he can't remember his password...\n\nNow, he mostly sees Bitcoin as a way to get rich. That's understandable, but I'd like to show him that Bitcoin is much more than that.\nHe is 'awake' to the fact the current system is broken and is a bit of a conspiracy theorist, perhaps too indiscriminately and without enough critical thinking.\n\nI have a technical background and am fascinated by how Bitcoin works, the blockchain, mining, signatures, the UTXO model etc. But I don't want to overwhelm him with all that just yet.\nHe doesn't even use a desktop or laptop, only a smartphone. And I'm afraid self-custody is something he's not ready for yet.\n\nI was thinking I could start with LN. He could install WoS and I'd show him some cool, practical stuff, like send him some sats using QR codes, using amounts small enough that even if he loses it all it won't matter. To show him the use cases and simplicity before getting into the theory.\n(FYI I'm running a full Bitcoin node and Electrs, but not a lightning node, so can't be an LN Uncle Jim)\n\nWhat do you guys think? Can you suggest other concepts that are good for the first few lessons, or content, like articles or video, preferably ones that don't require a long attention span? I have a lot I'd happily share with him, buy it's too much for his (for now) moderate level of interest and willingness to engage. \N 16289 \N 435154 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 3.91388622076864 0 \N \N f 2522723260 \N 20 72928952 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 03:31:38.265 f \N \N \N 0 0 0 0 8 0 0 448494 2025-03-22 16:24:22.236 2025-03-29 22:39:48.909 Farmers' Protests: The Silenced Middle Class The images reaching us from Europe are moving. The farmers' protests, which reached their interim peak in Germany, are now spreading to the entire continent. It is a balm for the soul, battered by climate madness and statists, to see how German, French, Italian and Greek farmers are pulling together and striving towards a common goal: To fend off the Davos globalists' attack on our bourgeois society and its last nests of private autonomy and free enterprise. Its central vector of attack, the infantile climate apocalypse and the dangerous Net Zero nonsense derived from it, is easily identifiable as an economic and socio-psychological cancer and, despite all the state propaganda, everyone should be able to recognize this climate hype as a stupid, infantile psyop that reached its temporary peak in the shrill personality of Greta Thunberg. The artificial hype created at the time around this questionable person, who was professionally marketed from day one (among colleagues: excellent work!), was always strongly reminiscent of the excesses of children's crusades in the darkest Middle Ages.\n\nAnd it had a terrifying effect on the brains and souls of many people around the world, who have since been asking themselves who actually hit them over the head in recent years with the CO2 tax cudgel and ever new levies and regulations (see farmers' protests, they get it).\n\nSo back to the farmers' protests, which are not slowing down these days and are even gaining energy. It is an impressive movement that, although ignored by the mainstream, seems to be rejuvenating on its own, like a young springing fountain. But despite all the euphoria and optimism, I wonder why it has still not succeeded in bringing the broad middle of society onto the streets. \n\nLooking at Germany, once Europe's powerhouse, it is fair to say that it still seems to be a rich country in which its people, despite the migration crisis, the most disastrous energy policy and the dismantling of industry, do not realize that they have lost around 7% of their purchasing power in the last two years alone, that their industry is losing ground at a double-digit rate per year, that their social funds are facing disruption through illegal migration and that the long-lost war in Ukraine will finish them off fiscally.\n\nThey should know that it is these farmers who are also giving a face to their own diffuse feeling of political powerlessness and hopelessness. These courageous farmers are the last hope of the middle class before the far-reaching legislation of the European Union, always controlled by the Davos globalists, will finally plunder their wallets. The increase in road tolls, an increase in the CO2 tax, an increase in VAT in the hospitality industry - all this, in addition to an increase in basic taxes, the Germans have already had to accept at the turn of the year, while a fat, fat state apparatus is fattening itself on their life's work and degenerating ever fatter. In keeping with tradition, the Germans are accepting this downfall uncomplainingly, without any objections or pithy criticism. Nothing. The fight against the right - that is now the ''current thing'', to which a desperate, because intellectually completely overtaxed, political establishment has managed to distract them from the real field of disturbance, the Davos control degenerates, in a further attempt at distraction.\n\nThe masses look helplessly at the farmers' protest and the question literally screams at us all: What is happening here? Who is breaking through the iron curtain of our vow of silence and, above all, what will others think if they catch me in the act of benevolent self-talk with a view of this irritating act? Who today actually still has the strength to articulate themselves in this way, to express their frustration in this no longer merely symbolic way, but to throw the myth of agriculture as the source of all civilization into the balance? \n\nIt remains to be hoped that perhaps in other countries of the European Union, members of the middle class, entrepreneurs and representatives of the creative cultural scene will finally take up this issue and reach a wider public to draw attention to the urgency of the matter. As early as 2030, the European Union plans to finally introduce the CBDC, the anti-meritocratic UBI and the digital ID in order to take away the last corners of autonomy from the once sovereign citizen (was he ever?). Now is the time for protest and resistance. Soon it will be too late. \n\n\n\n![20240205_082825.jpg](https://m.stacker.news/14964) \N 1490 \N 448494 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.1612199060518 0 \N \N f 261529541 \N 2 46695799 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436269 2025-03-13 12:34:58.363 2025-03-29 22:39:52.201 \N We wish more Bitcoin companies could support us in sponsoring Grants going to Bitcoin creators. We are working on it! https://example.com/ 20768 436113 436093.436113.436269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.16735443153125 0 \N \N f 218956704 \N 1 26205447 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:31:01.453 f \N \N \N 0 0 0 0 1 0 0 434793 2025-03-12 08:45:45.059 2025-03-29 22:39:52.201 \N I'm sure he had in mind exactly what we're seeing today. A largely unaccountable industry that profits from war and chaos around the world, with enormous influence on the public spending, and thus perpetuating the cycle of war and violence.\n\n> One thing that does interest me most in all of this, is wondering\n> whether Presidents really have any real hold on 'the levers of power' or whether the general perception of them, and their abilities, is really an illusion?\n\nAs an individual, the President is very powerful. He has more access to levers of power than any other single individual. But even they cannot easily stand up against the entrenched interests of entire industries with many many people in their pocket.\n\n https://example.com/ 2342 434756 434642.434643.434682.434755.434756.434793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.664597151713 0 \N \N f 79696019 \N 1 207957495 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 03:33:21.062 f \N \N \N 0 0 0 0 1 0 0 410355 2025-02-20 12:55:43.531 2025-03-29 22:39:52.202 \N Everyone should take advantage of the low fees + low btc fiat price to permanently add whatever they want to the blockchain. It might be the last chance to do that for basically nothing. https://example.com/ 20613 410311 410311.410355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.75621640311259 0 \N \N f 358564966 \N 3 132860566 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448554 2025-03-22 17:13:38.119 2025-03-29 22:39:52.202 \N Run Sparrow as your wallet software and connect it to your node. It will use your node to detect and broadcast your tx. https://example.com/ 19346 448527 448527.448554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5256149240658 0 \N \N f 339708538 \N 2 155509082 0 f f \N \N \N \N 448527 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410477 2025-02-20 13:54:07.924 2025-03-29 22:39:52.202 \N Going through trouble in my life at the moment. But I remember the vision of bitcoin, and what it means for the future. Is this what it felt like to be a founding father of the U.S.? Is this what it felt like to be a pioneer of philosophy, law, science? To know that there is a better way, to actively work towards it each day? https://example.com/ 2593 410269 410269.410477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7511894528944 0 \N \N f 9474511 \N 1 101623914 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434451 2025-03-11 22:41:43.682 2025-03-29 22:39:52.202 \N [![HFSP-yeah.gif](https://imgprxy.stacker.news/y1zGw5RmXYM0-wfb2RY4SP_KWQtQNcyEpxXoI5-ugPs/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvN2h4U1lqTlMvSEZTUC15ZWFoLmdpZg)](https://postimg.cc/Hchr6ZRL) https://example.com/ 8287 434444 434278.434298.434310.434411.434435.434439.434442.434444.434451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8130182600863 0 \N \N f 241675931 \N 2 48681105 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456239 2025-03-27 13:57:19.708 2025-03-29 22:39:52.202 \N I've been thinking the same thing. I haven't thought it all through yet but there is strength in numbers. If they do attempt this path it is important to remember other examples of peaceful disobedience that have worked before.\n\nThe first one that comes to mind is home schooling. It was once illegal in most US states but so many parents did it that the state slowly "legalized it". https://example.com/ 20751 455649 455649.456239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3382423086039 0 \N \N f 450886986 \N 2 92594232 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451356 2025-03-24 14:10:29.403 2025-03-29 22:39:52.202 \N Diamonds https://example.com/ 18500 451321 451074.451321.451356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.081078975017 0 \N \N f 111742027 \N 1 222846737 0 f f \N \N \N \N 451074 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447156 2025-03-21 16:40:06.513 2025-03-29 22:39:52.202 \N Well managed routing nodes and sufficient inbound liquidity on the payee node.\nPaying large nodes in the network has high probability of succeeding, that's not so much the case for smaller nodes which are sometimes less maintained: not enough channels, not enough inbound. \nAlso, there's more work to be done when in comes to routing algorithms. https://example.com/ 21709 446942 446942.447156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3959398468409 0 \N \N f 45841168 \N 1 75045288 0 f f \N \N \N \N 446942 \N 0 0 \N \N f \N 2025-03-28 11:16:10.458 f \N \N \N 0 0 0 0 1 0 0 336318 2024-12-20 16:21:56.941 2025-03-29 22:39:52.203 \N Stay away from debt. This is an important rule.\nDebt is for slaves. Stop using fiat money in any form or shape.\nSimplify your life. Why do you live a complicated life?\n\nSatoshi created Bitcoin EXACTLY to avoid all these practices and make people think and start SAVING MONEY for later, instead of borrowing more than they can afford. Many will say that this is against advancing in technology and building more new stuff. But I am coming and ask: what are you need for your daily life, basics, to live a simple and healthy life? The answer is simple: energy, food, shelter. So why are we not concentrated into that only?\n\nWhy do we need 2-3 cars/ family, why do we need 2-3 houses /family, why do we need 2-3 phones/individual, why do we need to buy stuff and food that we really don’t need it and so on…? We are living in a world full of unnecessary stuff, just for the sake of consumerism.\n\nBitcoin is changing the mentality of consumerism into mentality of savings. Save today for having tomorrow enough to buy the stuff you really need it. Don’t stretch you legs more than the duvet.\n\nThis is a special chapter in Bitcoin economy. There’s a lot of controversy about these practices. And all comes from GREED.\n\n[Here you have a very good explanation](https://jumpcap.com/insights/crypto-credit-market-breakdown) of how this financial market DeFi works, to have a good view about the mechanism.\n\nBut let’s dive a bit more into this aspect and see what Bitcoin can do, or is trying to do.\n\nGreed is a characteristic of human behaviour that could not be erradicated, but at least controlled at a low level. Each wo/man have a desire and attraction to “have more”, it is in our genes to desire more even if we can’t afford it with what we have or can do. And this come from long time ago, from the deep human history. But in the last century it was accelerated and even became a “religion”. People will do whatever they can to get more stuff, even no-necessity/util stuff, just hoarding so others don’t. and this greed was creating a huge system of lending/borrowing of money that people do not have and even cannot create, perpetuating a forever debt. Practically we are living in a debt slavery world. People are buying all kind of stuff, with money that they do not have it.\n\nBitcoin come to fix this paradigm. You cannot spend more bitcoins than you have in your own control. It cannot be created more than 21 Millions. FOREVER.\n\nSo what “smart guys” are doing now? EXACTLY what banksters did in the 17th century: offering to those gold owners, a place to deposit their valuable gold coins, into a bank vault, in exchange for a piece of paper, an IOU of x amount of gold. Now they are offering digital platforms for Bitcoin owners, to lend their BTC for a % of interest. But nobody ask: “from where is coming this %of BTC interest, if will not be created more BTC?”.\n\n[Michael Saylor say it very clear](https://youtu.be/57B0XMHmBb0): he will buy all bitcoins available, will HODL them and later will lend them as collateral to all poor guys that today do not want Bitcoin. In plain sight you have the banksters and billionaires plan: to enslave you again in debt. If you still do not understand that, means that humanity deserve to be forever enslaved by few…\n\nTo sustain this aspect, please watch these two amazing videos (one is a Spanish movie about a guy that won the lottery and one is an animated documentary about debt). Both documentaries are a must watch.\n\n[Concursante](https://www.bitchute.com/video/KVNE0cqI9xm1/) – Spanish movie (EN subs), with a guy that won the lottery but he entered into total debt, just because of the evil system.\n\n[The American Dream](https://www.bitchute.com/video/4RP1nXDE1UCP) – animated documentary about how the american dream is actually a debt nightmare.\n\nHere is a bonus: [I dare you](https://github.com/Darth-Coin/BTC-flyers/blob/main/files/I-DARE-YOU-EN.pdf) flyer\nAnd live in the Bitcoin circular economy:\n- https://darthcoin.substack.com/p/living-with-bitcoin\n- https://darthcoin.substack.com/p/a-bitcoin-adoption-story\n- https://darthcoin.substack.com/p/bitcoin-lightning-irl-examples\n- https://darthcoin.substack.com/p/pay-bills-with-bitcoin\n- https://darthcoin.substack.com/p/be-paid-in-bitcoin-using-bitwage\n- https://darthcoin.substack.com/p/21-rules-of-a-bitcoin-maxi https://example.com/ 940 336308 335484.335562.335591.335690.335721.335729.335791.336308.336318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6739333530492 0 \N \N f 1007719531 \N 8 29970927 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444188 2025-03-19 18:03:12.373 2025-03-29 22:39:52.192 \N Katy Perry crypto nails at 20k https://example.com/ 15148 444015 444015.444188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7096821421826 0 \N \N f 48523840 \N 1 97870605 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435122 2025-03-12 13:34:02.801 2025-03-29 22:39:52.191 \N Only $5b? I know nothing whatsoever about their financials, but my impression from a pov of cultural relevance / influence makes me have a gut-check reaction that Reddit should be worth way more than that.\n\nAlways interesting to project the hazy view of influence onto dollars. https://example.com/ 18441 435046 435046.435122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.25319404901772 0 \N \N f 505062423 \N 3 111150409 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 06:54:56.62 f \N \N \N 0 0 0 0 1 0 0 422660 2025-03-02 15:52:01.474 2025-03-29 22:39:52.192 \N Curious to know what kinds of non-Bitcoin projects are being funded on Geyser these days, can you share any examples? https://example.com/ 21072 422334 422334.422660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.7987622294967 0 \N \N f 1443301492 \N 10 219065648 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413811 2025-02-23 13:34:40.79 2025-03-29 22:39:52.202 \N Please consider the source. The authors of this propaganda are professors at Brandeis and NYU, institutions which support the banking system and the WEF. The intent is to prop up the fractional reserve system.\n\nRemember, they will use the same arguments against bitcoin that they use against gold. \n\nI don't have time to run through all the bullshit here, but one glaring example is their inflation analysis. No mention of how inflation was calculated in the 1800's compared to the way the standard was manipulated constantly post Jekyll Island.\n\nThey attack business cycles as a bad thing. The world they want to live in destroys real competition and they don't even consider the concept of creative destruction. They seek a world that continues to be controlled by their "too big to fail" banks.\n\nDon't buy it. https://example.com/ 20687 413791 413791.413811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3178954594464 0 \N \N f 320224099 \N 2 204921541 0 f f \N \N \N \N 413791 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450145 2025-03-23 19:14:47.695 2025-03-29 22:39:52.202 \N My "toxicity" is for a reason, to have a good end: to keep away all the shitcoinery from the noobs.\n\nI've been in this for longer than you can imagine and I know how a shitcoiner think, act, persuade, manipulate and troll.\n\nMy toxicity is the antidote for those who are bitten by shitcoinism.\nI can detect a shitcoiner, just by the way is talking and about what is talking.\n\nI always call out shitcoiner when I "detect" them and I always will do that. It is my duty as an old bitcoiner to protect all the ones that can fall into shitcoinism trap.\n\nI don't need you to read my guides. Those guides are NOT for you. Those are written specifically for the hundreds of my subscribers that are always sending me questions and ask me about writing a specific guide that they need it. Later I use them just to guide others in need.\n\nI don't make money with them, I just did them to pass my accumulated knowledge in all these years. I don't need money, I have enough BTC to live off them.\n\nI am retired on my BTC and I have a lot of time now to educate noobs and guide them not to fall into shitcoinery. You have no idea with how many people I talk every fucking day, all day long. SN is just a small part I do for fun.\n\nOnly in the last 3 years I onboarded hundreds, if not thousand of new users into Bitcoin. What did you do for Bitcoin? Just bitching around against me? You are only shitposting here and do not bring any good content. NONE.\n\nSo please leave me alone and move along. You are a disgusting shitcoiner.\n\n[![i-have-spoken.gif](https://i.postimg.cc/zBKkQfFr/i-have-spoken.gif)](https://postimg.cc/bDYbDp5C) https://example.com/ 685 24587 24587.450145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.687174316928 0 \N \N f 76616297 \N 1 63075933 0 f f \N \N \N \N 24587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417145 2025-02-26 07:00:29.892 2025-03-29 22:39:52.202 \N Many people seem to think AI is going to take Jobs, but really AI is only going to offload Tasks.\n\nA Task is not a Job. A Job has MANY tasks. Some people are paid to do tasks (uber drivers, gig work, etc.) Those people are ripe to be replaced by automation.\n\nWhat if an AI can offload every task in your job? Well, then your job has been redefined to include new tasks (namely managing the fleet of AI that supercharges your job).\n\nWho is going to manage these AI fleets? Likely technical people who can organize and think at a high-level about problems, but can also break those problems down into technical tasks and divvy them out. Also, you need a human in the loop that can catch an AI that is hallucinating and be the judge of quality of the output of the AI.\n\nIMO, the jobs that include tasks like managing teams of people are among the jobs that are quickest to go. For example, non-technincal managers that manage technical people. Those technical people will become managers of AI fleets and the non-technical managers will be searching really hard for tasks to keep them busy and not get fired. https://example.com/ 2639 417090 417090.417145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2204930662535 0 \N \N f 236207624 \N 2 241217390 0 f f \N \N \N \N 417090 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430964 2025-03-09 14:37:03.972 2025-03-29 22:39:52.202 \N Aaaaah thank you so much man. https://example.com/ 21400 430607 430607.430964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8634556624424 0 \N \N f 309863857 \N 2 167297698 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423163 2025-03-03 03:44:44.374 2025-03-29 22:39:48.909 Review: Number Go Up Inside Crypto's Wild Rise and Staggering Fall \nhttps://m.media-amazon.com/images/I/919gDQ3XD0L._SL1500_.jpg\n\nWait, what? Reviewing (positively, at that) this book on this site? Am I joking? Trolling?\n\nNope. \n\nOkay, yes, Faux is someone who's not a fan of BTC. And there are about fifteen pages of this book that will piss you off if you don't skip them (but they're easy to spot and skip).\n\nBut this isn't a book about Bitcoin. It's a book about scammers, mainly SBF and Giancarlo Devasini. It is, in fact the SBF book that Michael Lewis should have written, and that should have gotten the attention.\n\nThe book starts mainly as Faux's quest to track down Devasini and uncover the scams behind Tether, but in the meantime, he ends up encountering SBF a lot, so that becomes essentially a second plotline. Along the way, we get various digressions into things like Razzlekhan and the Bitfinex hack (worth it for the snark in that chapter alone), the NFT/Apes movement, Tether's central involvement in pig butchering (and the human trafficking related to it), Do Kwon, and a ton more. \n\nIf you know my tastes in fiction, you know I enjoy a lot of crime and heist novels. And that's true for nonfiction as well. I love financial crime books in general, because the processes are almost always fascinating. And Faux's an entertaining and breezy writer; he takes some incredibly complex topics and boils them down so that my mom (no dummy, but not someone with any background in the topic) could understand.\n\nThere are a few bits where it seems like he's pretending to know less than he does to bring in readers (there's a chapter in which he buys an NFT and pretends that the concept of using Metamask and Opensea is new to him; as a reporter in the field, I'm sure he knew, but it moved the story well). But he also does a great job of making all his subjects into real people, and making the entire quest entertaining.\n\nSo yeah, skip the first few pages where he describes BTC (mainly aimed at the reader with no knowledge at all), the one very short chapter when he visits El Salvador in '22 and finds no one using BTC (which was basically true then, just not now, as I understand it), and just relish the note near the end when he states that BTC the only cryptocurrency (his term) that will survive and that he wouldn't bet against, because of the drive of the community.\n\nAnd in the meantime, read and enjoy the financial shenanigans of the rest of the book. Genuinely entertaining. \N 5377 \N 423163 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 15.1874553524167 0 \N \N f 157963830 \N 3 207621696 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403182 2025-02-14 14:13:07.369 2025-03-29 22:39:48.909 Solving the Bitcoin Adoption Paradox When Satoshi published the white paper, he named it: Bitcoin: A Peer-to-Peer Electronic Cash System. It is clear that the original intention of Bitcoin was to herald a new decentralized digital form of money for payments without any trusted intermediary. Yet, we see the store of value (SoV) use case gaining far more initial traction than his electronic cash system. Why is that? Why has Bitcoin not exploded as a payment system? Digital payment technologies such as PayPal, Zelle, Venmo, WeChat Pay, Apple Pay, Google Pay, and others appear to be far more popular as a payment option at retail stores and in the general economy than Bitcoin. Sure, we are still early. But there are more nuanced reasons worthy of exploration.\n \nRetail and consumers are not ready. Bitcoin was developed outside of the system. All of the digital payment systems listed above simply offer a digitized version of the current monetary system. They made traditional payments easier and more efficient. One loads their credit card into the Apple Pay app on their iPhone and off they go, paying with dollars just like retail and consumers have been accustomed to transacting for decades. They took the existing financial system and digitized it. All of the financial rails remain in place.\n \nThere are hurdles for retail to start accepting Bitcoin: integrating clunky interfaces, tricky questions about sales tax and opaque banking requirements, new levels of security protecting private keys, navigating wallet set up, existing point of sales systems do not accept it, different jurisdictions have different regulations, staff training, and so on. It’s not a smooth process.\n \nRegular folks also struggle with Bitcoin. It’s “techy”, there are negative associations with it due to “crypto” rug pulls, bad press, lots of FUD must be countered, and it’s complicated. It’s like getting online with a 14.4 kbps modem in 1997. And these factors lead to the chicken and egg paradox: retailers don’t want the trouble to accept Bitcoin if their customers are not using it. For mass adoption as an electronic cash system, retailers must accept it ubiquitously and folks need to acquire some Bitcoin and use it. But why acquire Bitcoin if it cannot be spent at the local shops? I conjecture that both retail and regular folks will be the last to adopt Bitcoin. So, is all hope lost? Absolutely not.\n \nBesides the sovereign aspects of Bitcoin which are profound, Bitcoin has several properties that make it superior to the digital payment technologies listed above. Bitcoin combined with other protocols including NOSTR, the Lightning Network, and eCash working together as a protocol “stack” unlock capabilities that traditional electronic payment systems cannot compete with. And it is precisely these use cases that will lead to mass adoption of Bitcoin.\n \nMicro-transactions: Using the stack, pennies or even fractions of a penny can be zapped to content creators on NOSTR enabled networks such as stacker.news. Zapping replaces Likes as a way to show appreciation and reward good content by transferring sats, usually tiny amounts of value to the content creator. I expect to see the concept of zapping to take root on the wider Internet. Likes just feel empty and cheap in comparison. NOSTR allows a social media persona to travel across platforms so that the followers and community that one painstakingly builds becomes transferrable to any other NOSTR enabled platform. This upends social media lock-in and gives content creators much more power and freedom. It is just a matter of time before a NOSTR enabled platform scales to challenge the incumbents like Facebook, Twitter, Reddit, and LinkedIn. When such a platform emerges, and millions of people set up Lightning wallets, this will accelerate mass Bitcoin adoption.\n \nA.I and the Internet of Things (IoT): The stack will enable micro-transactions and new economic models among devices including Generative A.I. enabled devices to pay for services autonomously. Bitcoin is open-source programmable money. It was built for automated payments. There are no KYC requirements for a device to create a Bitcoin wallet and then transfer and receive Bitcoin payments autonomously. How will the regulation burdened incumbent trad-fi system possibly compete with this level of freedom?\n \nStreaming payments: “Pay as you go” models are about to get incredibly efficient with the stack and micro-payments. That is, streaming sats for digital products where payment is intricately linked to the precise number of bits have been deployed with video, music, gaming, and podcast streaming, but there is no reason why electricity, internet bandwidth, processing power and storage (Amazon AWS type services), and other digital and even non-digital but precisely metered services can be included. Examples range from water usage to a back-massage chair that can be used for exactly the amount of volume or time desired and paid for with precise value down to a single sat with billing increments in micro-seconds. The societal benefits of precision pay as you go services will be significant. Waste will be greatly reduced. Businesses capable of providing the exact amount of whatever is required will prevail over those that cannot. People and businesses will expect to pay only for exactly what they need and not one sat more. As these business models develop, more and more people will seek these efficiencies which cannot be easily provided with existing financial technologies.\n \nInverting the digital Ads business model: For many, the bane of the Internet and media are Ads. Why should Google and Facebook receive trillions in market value while monetizing our attention? With the scaling of the stack, and each individual equipped with a Lightning or Layer 2 wallet, advertisers can pay individuals directly in sat denominated micro-transactions to view their ads and interact directly with their customer/prospect base. We will see decentralization of advertising revenue rightfully flow into the wallets of the people who trade their time.\n \nWhen masses of people now have a Lightning or Layer 2 wallet with sats on their device, retailers will finally capitulate for a piece of that pie and this is when the Bitcoin Adaption curve moves in the right direction.\n \nWe have a very bright future ahead as we pave the way to a Bitcoin standard.\n \N 678 \N 403182 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.36325385599967 0 \N \N f 279064166 \N 2 104261120 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422406 2025-03-02 12:48:40.247 2025-03-29 22:39:52.192 \N I just finished Lyn Alden's "Broken Money". Cannot recommend it highly enough. It's so well written, well researched, well layed out and well argued. She touches on so much relevant to the topic, including the threat of CBDCs and the importance of privacy. What came through on every page was just how at odds the incentives of central bankers with those of the people. We need to end the Fed. https://example.com/ 10060 422334 422334.422406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.53816675658117 0 \N \N f 764708448 \N 5 170980998 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416839 2025-02-25 21:59:40.226 2025-03-29 22:39:52.192 \N Wonder where they are getting all the committed base load demand for the this expansion? https://example.com/ 9366 416158 416158.416839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3302798184222 0 \N \N f 127997854 \N 2 51999503 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457508 2025-03-28 14:47:36.888 2025-03-29 22:39:52.192 \N ![](https://imgprxy.stacker.news/6UbuQTR-pOnX2syAOXuPNknm7KVGWwKZxV_ra7BhSSY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9jZG4ubm9zdHIuYnVpbGQvcC9uYjMxNTAuanBlZw) https://example.com/ 21070 457495 457476.457495.457508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4158275662235 0 \N \N f 178247087 \N 2 86383385 0 f f \N \N \N \N 457476 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433347 2025-03-11 01:40:03.08 2025-03-29 22:39:52.192 \N Switzerland or Japan \n\nWealthy countries \nVery little crime \nHigh trust society \nVery little immigration from North Africa \n\nCurrently USA \nI need to learn more languages \n https://example.com/ 18232 433217 433217.433347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23158075271314 0 \N \N f 489845216 \N 3 147403565 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 2025-03-18 20:40:21.336 f \N \N \N 0 0 0 0 1 0 0 416615 2025-02-25 18:04:33.726 2025-03-29 22:39:52.192 \N Nice try, fed.\n\nBut seriously, my priorities would be the Nordic countries (Iceland first, but any of them), because of access to tech, culture, people I've already got connections with, and good walking and hiking countries.\n\nAs for signals, the current state of the world's plenty. It's just a matter of access (since I hardly have Peter Thiel money or power).\n https://example.com/ 913 416158 416158.416615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.24416843472662 0 \N \N f 44458913 \N 1 193301054 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 439137 2025-03-16 09:48:38.429 2025-03-29 22:39:48.909 What products and services would you love to Pay-Per-Use? ❤️⚡️ After having used services, such as [lnvpn.net](https://lnvpn.net), [sms4sats.com](https://sms4sats.com), or [nostr.wine](https://nostr.wine), I was amazed by the convenience these services bring.\n\nA premium Nostr relays could of course be paid via a regular subscription. However, being able to receive a single SMS or access a VPN for a mere hour feels amazing to me.\n\n**What services would feel amazing to use via a Pay-Per-Use model?**\n1000 sats to the best answer!\n\n*(PS: Please don't say video-streaming 🙊)* \N 11263 \N 439137 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 22.6271320119901 0 \N \N f 363594090 \N 2 163375526 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430607 2025-03-09 11:10:06.228 2025-03-29 22:39:48.91 A Declaration of Separation This is worth a read. It reminds me a little of Eric Hughes' and John Perry Barlow's manifestos. https://open.substack.com/pub/simplybitcoin/p/a-declaration-of-separation?r=9bii2&utm_campaign=post&utm_medium=email 20660 \N 430607 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 24.8639350688503 0 \N \N f 1522105640 \N 11 246558237 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 401280 2025-02-12 20:52:01.237 2025-03-29 22:39:52.193 \N I made a Twitter bot to attract followers back in 2015 to replace the semi automated process I began in 2013. https://example.com/ 18393 401271 401198.401257.401271.401280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3271468713126 0 \N \N f 234368941 \N 3 149130178 0 f f \N \N \N \N 401198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424280 2025-03-03 23:48:47.95 2025-03-29 22:39:52.192 \N ![GLsiV-CWwAA6W9a.jpg](https://m.stacker.news/27681) https://example.com/ 19494 423917 423917.424280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.29493849657553 0 \N \N f 132841485 \N 1 154802624 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414644 2025-02-24 06:28:04.786 2025-03-29 22:39:52.192 \N That's a truly heroic thing your wife and you are doing.\n\nHere's my advice for new parents: Relax, you're doing ok. https://example.com/ 17411 414626 414625.414626.414644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5305202725889 0 \N \N f 43220317 \N 1 11242421 0 f f \N \N \N \N 414625 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422838 2025-03-02 18:18:29.35 2025-03-29 22:39:52.193 \N How long is "extended"?\n\nIt's not too hard to pack in a week's worth of food, but more than that and you'll want to procure some of your food during the trip. https://example.com/ 8416 422829 422804.422829.422838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.03752953803842 0 \N \N f 154990300 \N 1 114068013 0 f f \N \N \N \N 422804 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403694 2025-02-15 05:39:22.53 2025-03-29 22:39:52.193 \N good idea, @k00b and I were chatting about something similar for the search page when you first click the magnifying glass. \n\ninstead of being met with a blank screen, you’d see a feed of the most recently zapped items, kind of like a “currently trending” feed… which could also offer variations like “trending profiles” or “trending images”. https://example.com/ 11192 402904 402904.403694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.55502510072066 0 \N \N f 2117208315 \N 17 43289620 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 190605 2024-06-27 14:51:25.406 2025-03-29 22:39:52.193 \N Rats...I just clicked on this item because it was so negative. https://example.com/ 20912 190541 190541.190605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2909186670105 0 \N \N f 141496332 \N 1 161095943 0 f f \N \N \N \N 190541 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454517 2025-03-26 13:10:23.119 2025-03-29 22:39:48.91 ⚡️ Geyser AMA Hey frens,\n\nAt [Geyser](https://geyser.fund/) we are powering Bitcoin creators to change the world through Bitcoin crowdfunding. \n\nWe love Stacker News, zapathons, and power Bitcoin and Nostr ideas into existence.\n \N 21797 \N 454517 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.43914792498555 0 \N \N f 55528413 \N 1 40505773 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422111 2025-03-02 09:34:20.43 2025-03-29 22:39:52.193 \N You are constantly killing it. Keep it up! https://example.com/ 1483 422098 422056.422057.422068.422076.422087.422098.422111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.88921079930513 0 \N \N f 92896713 \N 1 70312577 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422098 2025-03-02 09:29:22.651 2025-03-29 22:39:52.193 \N You can test also with old browsers here: https://oldweb.today/?browser=ns4-mac#https://stacker.news/items/675753 https://example.com/ 1198 422087 422056.422057.422068.422076.422087.422098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.76514623345111 0 \N \N f 163209290 \N 2 182700578 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444305 2025-03-19 19:05:05.165 2025-03-29 22:39:52.193 \N I appreciate your passion and concern for humanity, and I agree that it's essential to prioritize human connections, communication, and creativity. It's crucial to strike a balance between embracing technological advancements and preserving the human qualities that define us.\n\nAI, like any other technology, can be a double-edged sword. The key lies in using AI responsibly and ethically, ensuring it serves as a tool to enhance our lives rather than replace human interaction. By setting boundaries and guidelines, we can prevent the over-reliance on AI and preserve the essence of human experiences.\n\nAs a community, we should stay vigilant and be mindful of the potential consequences of AI integration in our daily lives. While I understand your concerns, I believe we can continue to use AI responsibly, fostering meaningful human interactions and promoting creativity. It's important to remain cautious and critical but also to appreciate the potential benefits AI can bring when used thoughtfully and ethically. https://example.com/ 15762 444168 444168.444305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6399252443797 0 \N \N f 28937083 \N 2 25812626 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421722 2025-03-01 23:09:49.521 2025-03-29 22:39:52.193 \N Day 360 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 21798 421567 421567.421722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.62983657281413 0 \N \N f 1323574244 \N 9 216008205 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 448804 2025-03-22 22:06:50.642 2025-03-29 22:39:52.193 \N I pay my kids allowance and chores in Bitcoin. They save in bitcoin. I have been inculcating my oldest (12) since he around 6 on the perils of fiat money. My youngest (4) just likes bitcoin because she knows I like bitcoin. She will often ask me at night "daddy did you remember to do your bitcoin on the computer today" haha. https://example.com/ 19527 447566 447566.448804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8641670182935 0 \N \N f 91896444 \N 1 104247785 0 f f \N \N \N \N 447566 \N 0 0 \N \N f \N 2025-03-29 15:26:42.755 f \N \N \N 0 0 0 0 1 0 0 413145 2025-02-22 22:32:07.456 2025-03-29 22:39:48.91 NYTimes Bitcoin Hit Piece Backfires \N https://www.zerohedge.com/crypto/nytimes-bitcoin-hit-piece-backfires-stopthepresses-movement-erupts-social-media 718 \N 413145 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.9383705944491 0 \N \N f 139054414 \N 1 54770936 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 409999 2025-02-20 05:50:29.397 2025-03-29 22:39:52.193 \N How I look at it, as long as there's demand for _freedom_, there will be demand for bitcoin.\n\nWhatever has to happen for people to stop _wanting_ freedom, I'm not sure, but the US is doing a pretty good job of demonstrating that it's possible. The US loves its conveniences.. https://example.com/ 16954 409910 408874.409910.409999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1776482719668 0 \N \N f 405360319 \N 2 188869721 0 f f \N \N \N \N 408874 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458192 2025-03-29 04:50:04.391 2025-03-29 22:39:52.194 \N Recommended path in case of Phoenix wallet:\n1. send **at least 300k sat** to the freshly created wallet (just to pay for on-the-fly channel creation not more than 1% fee effectively)\n2. if you have Android smartphone - switch off *automatic on-the-fly channel creation* option to have full control over it\n3. patiently wait untill your channel capacity will reach $500 after next halving ;) https://example.com/ 14669 458191 458149.458189.458191.458192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.24171157939168 0 \N \N f 166301206 \N 1 199895319 0 f f \N \N \N \N 458149 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402727 2025-02-14 00:08:24.289 2025-03-29 22:39:52.194 \N ![Not relevant to Bitcoin, but still kind of is. Everything is.](https://i.imgur.com/1qBaXFe.jpg) https://example.com/ 7746 402078 401283.401346.401403.401520.402058.402078.402727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6540267155742 0 \N \N f 370887344 \N 3 194611630 0 f f \N \N \N \N 401283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430173 2025-03-08 22:32:04.783 2025-03-29 22:39:52.194 \N I think I learn the most from the plebs, since they offer up so many different perspectives and journeys to see and understand bitcoin from/through. Just interacting with them on twitter is a learning journey, though not necessarily technical in nature.\n\nGigi and Giacomo are among my favorite people to learn from also. https://example.com/ 20745 413007 413007.430173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.91409726312791 0 \N \N f 359205614 \N 2 179690340 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402927 2025-02-14 09:09:15.104 2025-03-29 22:39:52.194 \N Big +1 on @remyers\n\nI don't use Eclair, but been observing in awe how they are running this power node with basically no downtime and super high speed, despite their size and age. \n\nNotable also their mobile wallet phoenix, which doesn't get enough attention these days despite their reliability and robustness.\n\nDon't miss this [article from ACINQ](https://medium.com/@ACINQ/the-architecture-behind-eclair-ca0c99880962) on their underlying architecture, it's enlightning (pun intended) https://example.com/ 20198 402594 402105.402594.402927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.76479433959238 0 \N \N f 184006489 \N 1 225727235 0 f f \N \N \N \N 402105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427074 2025-03-06 04:24:26.783 2025-03-29 22:39:52.196 \N Yes, this is just demand for blockspace driving up the price. Some of this demand stems from inscription transactions, in particular BRC20 transactions. The BRC20 activity increased recently again. Other than that, one issue that exacerbates the situation that blockspace production is essentially fixed, so whenever blockspace demand exceeds production, the users that are aiming for prompt confirmation tend to get into bidding wars which can quickly drive up the feerate.\n\nI’ve written a bit more about the general subject on Bitcoin Stack Exchange: [Can you explain some of the dynamics that drive the variations in mempool depth?](https://bitcoin.stackexchange.com/a/99699/5406) https://example.com/ 2309 427039 427039.427074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7110245059646 0 \N \N f 448136213 \N 3 212754552 0 f f \N \N \N \N 427039 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1698 2022-09-22 17:32:22.915 2025-03-29 22:39:48.91 China's Liquidity Pump Running Hot If there's one thing you can rely on in life, it's the Chinese liquidity cycle. The Chinese central bank has primed the pump. Hard assets like bitcoin and gold protect against the dilution of monetary value. \n\n\n![20240104_124743.jpg](https://m.stacker.news/10671) \N 19189 \N 1698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.0740365387018 0 \N \N f 49862265 \N 1 180940781 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442876 2025-03-18 21:23:58.998 2025-03-29 22:39:52.195 \N This is a [Bitcoin Dev Project](https://bitcoindevs.xyz/) product.\n\nThe responses are generated based on the same sources as [bitcoinsearch.xyz](https://bitcoinsearch.xyz/). We made some choices to cut down on hallucinations, which limits its range and so it thrives with deeply technical questions and won't do very well with general purpose bitcoin things. We've also implemented L402 for DoS protection, which I haven't seen much of in the wild. https://example.com/ 1567 442820 442820.442876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0173241845715 0 \N \N f 334006588 \N 4 245079050 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1905 2022-09-28 14:35:45.133 2025-03-29 22:39:52.195 \N Day 40 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 13767 1904 1903.1904.1905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5645473490141 0 \N \N f 446844021 \N 4 41555551 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407928 2025-02-18 13:19:31.045 2025-03-29 22:39:52.195 \N Feeling excited to be part of the SN community :) https://example.com/ 21116 407903 407903.407928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7592994389802 0 \N \N f 1429554877 \N 8 9314591 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436401 2025-03-13 14:31:49.481 2025-03-29 22:39:52.195 \N >Do I need my full node on 24 hours a day?\n\nThe answer is simply NO.\nYou could easily install https://bitcoincore.org/ or Knots on any simple PC and open it only when you need to do a tx.\n\nAlso if you have a friend running a core node, you can connect a Sparrow wallet to it directly (even no need for heavy Electrum server) and transact in peace.\n\nI personally do no push people to run their own Bitcoin Core node, only if is really needed.\n\nAnother option is to use Zeus or Blixt or Breez, that are "light" LND nodes using Neutrino as blocks provider. Neutrino is very easy to use for onchain with no need of heavy sync of over 700Gb of blocks data.\nAlso you can run your own LND node on any PC in neutrino mode, without heavy GBs of data and transact in perfectly fine privacy.\n\nI still do not understand why people with Umbrels & others are still running full core nodes instead of just using Neutrino. Bitcoin Core is eating almost all resources for a node. And a LN node with a neutrino is more than enough to run smoothly a LN node.\n\nA full Bitcoin node is necessary only in specific cases.\nRunning a core node without opening the port 8333 and give more seeds to the whole network is NOT helping the network as many says... But opening that port comes with more hurdle, bandwidth, IP etc https://example.com/ 20137 436398 436273.436391.436398.436401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4856535591993 0 \N \N f 203260620 \N 2 242990574 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 07:49:07.735 f \N \N \N 0 0 0 0 1 0 0 424161 2025-03-03 21:12:17.667 2025-03-29 22:39:52.195 \N Met a colleague from long ago at a Physics conference. He's not from the US but has been living in the US for years.\n\nSimilar to most people in academia, he's mostly liberal (using the US political framework). He hence got infected by that awful thing in the US that makes every topic to be a partisan thing: If you are liberal/conservative, you must hate this and love that. So even though he never much looked into Bitcoin, he had a negative opinion by default.\n\nHe's a very good scientist though, so he's very open to reason and discussion. So as we got to talk about potential future plans post-academic career, I mentioned I am quite interested in the LN technology. We then got to talk about Bitcoin, and all the typical arguments against Bitcoin he had heard came up, and I simply but clearly explained why most of them are based on ignorance of reality and the mistakes of lumping bitcoin with the rest of crypto, the fact of thinking of Bitcoin in terms of Dollar price, speculation, not being aware of the actual utility Bitcoin provides, etc. The fact he's originally from a S-American country with a broken government also helped to go into the discussion talking about what a world would look like when countries stop depending on US Dollar.\n\nHe came out of this hour-long discussion (at most) saying: wow, you know your stuff. This thing might actually have potential. Not sure I orange-pilled him _per se_, but at least, some prejudices got cleared up.\n\nOther than that, my wife had the typical get-rich-quick thinking mentality when thinking of our Bitcoin holdings, but recently felt much better after suffering a lot mentally during her first bear market and realizing Bitcoin is not just a dollar number but has other qualities. She still thinks of "cashing out", one day... so i still got some work to do there ;) We're in South Korea, so this get-rich-quick mentality is strong here.\n\nMy dad is typical old boomer. Very good with the old fiat system, but after I spent (one time) couple of hours telling about running a LN node, he casually mentioned: oh maybe I should put some money in Bitcoin too. Don't think he followed up with that one, so not sure he was orange-pilled. But circumstances make I don't see him often, so I prefer not to talk only about Bitcoin when I meet him, so he might only come around later.\n https://example.com/ 2529 424158 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424130.424153.424158.424161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0775288112 0 \N \N f 57327282 \N 1 60059647 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415140 2025-02-24 14:50:10.27 2025-03-29 22:39:52.196 \N Tinkering with [The Bullish Webstore](https://bullishwebstore.vercel.app/index.html?pubkey=0378539a45c7eefa69c022684653e090891c2ba15920fe545506c7f56666c01d88&relays=%5B%22wss://nostrue.com%22,%22wss://nostr.noones.com%22,%22wss://nos.lol%22%5D) (a fork of @supertestnet’s Magic Webstore). \n\nSo far, made it sats-only and tweaked the styling. 🤙\n\n![photo-output.jpeg](https://m.stacker.news/20587) https://example.com/ 18526 415134 414755.415076.415098.415104.415107.415134.415140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9771323456954 0 \N \N f 309199048 \N 2 99179159 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438038 2025-03-15 06:55:37.039 2025-03-29 22:39:52.196 \N LET'S GOOOOOOO!\n\nI am so pumped for the badges! https://example.com/ 2832 437955 437955.438038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.885186797567563 0 \N \N f 249095522 \N 1 77191948 0 f f \N \N \N \N 437955 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416912 2025-02-25 23:07:09.299 2025-03-29 22:39:52.196 \N Thinking. \nTurns out it's also a kind of work once you get really deep into it. https://example.com/ 15119 416325 416158.416267.416325.416912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9445097627783 0 \N \N f 48048414 \N 1 84358412 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414328 2025-02-23 20:00:48.237 2025-03-29 22:39:52.196 \N As someone who has been in the finance industry for almost ten years, I have observed that my colleagues struggle to define what money actually is. Even when I ask pointed questions on various finance-related topics such as the value of stable currency, the historical gold standard, the concept of legal tender, rehypothecation, or the Bretton Woods agreement, their responses are often incomplete or nonexistent.\n\nIn my experience, finance professionals tend to focus solely on what they have been taught in school and what will benefit their career advancement rather than broadening their knowledge base. While I can emphasise their reasoning, it perplexes me that they do not prioritise a more comprehensive approach to learning. https://example.com/ 5776 413884 413675.413884.414328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.91132029190847 0 \N \N f 914122499 \N 4 134038077 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422408 2025-03-02 12:51:40.176 2025-03-29 22:39:52.196 \N 1. Ben originally came to me at the pool when we were in Mexico and I agreed to join if he went ahead and tried to do it. Maybe 6 months later Ben and raised money and it was time to get going. I agreed because I loved the vision of trying to be a bitcoin only company that is trying to onboard the normies onto bitcoin. Today most normies are onboarded onto crypto through morrally corrupt places like coinbase, and the bitcoin only exchanges could be doing so much better, so we are gonna try and build the best one stop shop for bitcoin.\n\n2. All bens are fungible\n\n3. I think a lot of people will only ever use custodial bitcoin and that's okay. Bitcoin and Lightning will have a hard time scaling to 7+ billion people and getting everyone to manage channels + private keys will be really hard, it might be doable but a lot of people will opt for custodial bitcoin. I think this is okay because there is no longer regulatory hurdles to custody people's money so there won't be 10 banks there will be 1000s and only the best will survive. https://example.com/ 10013 422406 422334.422406.422408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.244155364917198 0 \N \N f 704648297 \N 4 60060151 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442701 2025-03-18 18:48:01.217 2025-03-29 22:39:52.196 \N The best posts that ask questions respect how difficult it is to write well. https://example.com/ 6160 442508 442508.442701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2015966382638 0 \N \N f 422588668 \N 2 81760314 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447029 2025-03-21 15:17:34.973 2025-03-29 22:39:52.196 \N This is a bit insulting to be called a “quiter” by someone who has never made a substantial technical contribution to bitcoin or lightning, to the best of my knowledge.\n\nThough as a note, even Satoshi did “quite” Bitcoin. Nature of open-source, if successful your projects are growing beyond your personal outreach and what you can master _by design_.\n\nI bet you even Jeff Bezos, Elon Musk or Ray Dalio would quite Bitcoin FOSS if they were working on it. \n\nLike said, keeping an eye on consensus changes and I’ll keep doing a bit of security research. I love security research for its own sake, and the taste of solving hard and unique problem.\n\nGenerally, those types of contributions create more value for the ecosystem that 90% of the bitcoin developers will do during all their careers. https://example.com/ 732 446962 446962.447029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5067558763849 0 \N \N f 51744269 \N 1 220162542 0 f f \N \N \N \N 446962 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450699 2025-03-24 07:00:20.319 2025-03-29 22:39:52.196 \N Very useful insights & passages.\n\n> It’s easy to be gloomy about China today, given the obvious challenges with economic growth and authoritarian tightening. But I found myself more optimistic about the future while I was in Thailand. Some people are drifting away from China, and many of those who stay are dreaming of better futures. These are creative acts.\n\n> A recent Chinese blockbuster made Thailand appear to be a dangerous place to visit, and state media has occasionally amplified that sentiment. To Chinese and other foreigners living in Thailand, it’s absurd to think that crime and danger lurk around every corner because it’s a pretty safe place. They fear that state media is trying to create a pretext to justify a presence for Chinese police in Thailand, rather like how they are sometimes reaching into Mongolia.\n\n> Much of China’s present strength rests on manufacturing leadership. If China can’t achieve reasonably high levels of growth, then the manufacturing advantage will dissipate faster, along with many of its other capabilities. And Xi Jinping has formally de-prioritized economic growth as China’s top task.\n\n> If we obsessed only over America’s problems, it would be a pretty ugly picture as well.\n\nEssentially it appears to confirm that both great superpowers are turning inwards to shrink the pie rather than looking outwards to grow it. \n\nDefinitely a very talented writer, with a knack for compelling stories, hooks & observations. Much more there than the above, but a very worthwhile read. Thanks for sharing! https://example.com/ 3478 450695 450678.450695.450699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1692422359278 0 \N \N f 469445314 \N 3 155144063 0 f f \N \N \N \N 450678 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435565 2025-03-12 19:38:08.391 2025-03-29 22:39:52.196 \N Taleb is a noted douchebag, and it's been obvious that his criticisms of btc are undertaken in bad faith, but he's not wrong about this. I actually like the point, because it requires the reader to figure out what's special about scarcity, or rather: when scarcity is special, under what circumstances do people value things that are scarce? \n\nClearly, being scarce, and nothing more than that, is not the answer to anything. Getting to the bottom of the issue is actually quite nuanced, and philosophically, psychologically, and sociologically interesting. https://example.com/ 19888 435438 435217.435275.435277.435295.435438.435565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.704100103266 0 \N \N f 327632283 \N 3 40007564 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 13:12:22.48 f \N \N \N 0 0 0 0 1 0 0 434795 2025-03-12 08:47:38.391 2025-03-29 22:39:48.901 Bitkit Wallet AMA - John Carvalho, CEO of Synonym I'm John Carvalho, CEO at **Synonym**, where we created [Bitkit, a self-custodial Lightning and on-chain wallet](https://get.bitkit.to/stackernews). \n\nBitkit allows you to hold your keys for Bitcoin and a LDK-powered Lightning node in the app. This is supported by our Blocktank LSP server, providing connectivity to the wider Lightning Network.\n\nBitkit contains an open widget system, with more cool widgets on the way. It also supports a contact list and pay-to-contact features.\n\nWe recently formally launched into app stores after being in a beta for a while. We've got a lot planned for the next year and we're excited to grow our userbase and collect any feedback!\n\n**I'll answer questions for 1-2 hours, starting at 3PM EST // 7 PM UTC.**\n\nAsk me about:\n- Bitkit features, plans\n- Building self-custodial wallets, apps\n- Building with the Lightning Network\n- payment protocols\n- UX/UI, design, branding\n \N 10661 \N 434795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.27435655706991 0 \N \N f 11681207892 \N 92 37638722 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 26 0 0 417052 2025-02-26 03:23:54.881 2025-03-29 22:39:48.91 Is it possible to really put oneself into the mind of a different era? I'm really thinking can we truly know put ourselves in shoes of an ancestor who existed before everything was measured/measurable? \N 6537 \N 417052 \N \N \N \N \N \N \N \N movies \N ACTIVE \N 26.0184213795198 0 \N \N f 198108623 \N 1 138427141 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1432 2022-09-14 13:34:27.583 2025-03-29 22:39:48.912 Fighting the Daily Grind #8 - Teaching Suffixes I realise that I have an urge to blog whenever my day is not turning out well. Not that I would want to break this habit - recognising negative feelings is important for adaptation or so I read - but I will like to present a resourceful and upbeat Sensei at times as well. After all, I’m the Great Teacher KL. (You may be familiar with this old Japanese drama titled GTO.)\n\nAnyway, I’m sipping my second and final cup of coffee during lunch time, savouring my respite before an afternoon Zoom Webinar. I have yet to finish the most important task on my to-do list today: set the mid-year paper. \n\nThat’s because I took 15 mins out to prepare for my lesson with my students with dyslexia. Last week, I taught them the meaning of the -ful and -ly suffixes. It was time for them to apply their knowledge, so I came out with four questions to get them to deduce the meanings of unfamiliar words based on their understanding of these two suffixes.\n\n![IMG_1072.jpeg](https://m.stacker.news/18663)\n\nPredictably, they made several mistakes. But it was okay because I anticipated that they wouldn’t be able to get it. Which was why I prepared this lesson in that particular manner. Time to consolidate our understanding of -ful and -ly suffixes! (It can go as rudimentary as “Guys, remember to spell -ful with only one ‘l’!”)\n\nI then had about 15 minutes left, so I got all of them to come out to the front and spell certain words: \n\n- play, playful, playfully\n- mind, mindful, mindfully\n- soul, soulful, soulfully\n- heart, heartful, heartfully\n- health, healthful, healthfully \n- success, successful, successfully\n\nI know that we usually use “heartfelt” instead, but that’s not the point. The objective was to get them to spell ‘-ful’ and ‘-ly’ in quick succession.\n\n![IMG_1075.jpeg](https://m.stacker.news/18664)\n\nI also had a life lesson in store. When you live life playfully and healthfully and engage with things mindfully, soulfully and heartfully, you are **slaying it successfully**!\n\nThe best thing that happened was that the best speller in the class wrote ‘successfully’ on the whiteboard before I had even announced ‘success’. Was I so predictable?! But predictability is good because this means that I’m consistent and some students accurately anticipate what I want to reinforce.\n\nI’m a busy teacher and sometimes feel like crap that I cannot devote all my time and energy to my students. But I do my teaching as joyfully and heartfully as I can. 🥰 \N 642 \N 1432 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.5457304567707 0 \N \N f 45233934 \N 1 25442878 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436487 2025-03-13 15:29:11.964 2025-03-29 22:39:48.912 What books served as your foundation? I'd like to become less of an idiot. \n\nCurious what were some of the foundational books for you, ones that held up well and that you would read again, even after years of additional input.\n\nWhat books helped you become a better thinker, and a broader person? What books would you most recommend to a young person to build an intellectual base to build on?\n\nAlso, would love to hear any thoughts on how to become a more discerning reader. How to make better choices on what's worth your attention, and how to process what you're taking in. \N 4250 \N 436487 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.3523505810127 0 \N \N f 178417024 \N 1 186118250 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 10:59:27.491 f \N \N \N 0 0 0 0 1 0 0 409954 2025-02-20 02:37:15.994 2025-03-29 22:39:52.196 \N # TLDR\n\nThe following transaction on bitcoin’s testnet blockchain demonstrates that it is possible to execute a “for” loop in bitcoin script: https://blockstream.info/testnet/tx/a9bdc7db7c722d4d3cf9689510aa7817a611855e6367bbd5b58b30388fbca8aa?expand\n\nThe for loop runs seven times. During each iteration the transaction modifies a set of data provided as input to the transaction. After seven loops, it terminates with a true value and lets the user spend their money.\n\n# Introduction\n\nPeople who develop bitcoin applications are probably familiar with the common observation that bitcoin script is not a turing-complete programming language and does not have loops. This is shorthand for saying bitcoin does not have unbounded loops, that is, all functions written in bitcoin script are guaranteed to “halt” at some point and either return a value or return an error, whereas an unbounded loop might never halt, it might get stuck repeating an action forever.\n\nUnbounded loops are not the most common types of loops used by programmers. (In fact they are quite dangerous and often avoided wherever possible.) Programmers usually use “for” loops instead, or bounded loops, which repeatedly apply some lines of code a certain number of times and then move on to the next lines. It has long been known that it is at least theoretically possible to implement a “for” loop in bitcoin script.\n\nFor example, these two forum threads (from 2021 and 2022) point out that it is at least possible in theory, though as far as I know no one has actually done it yet: https://bitcoin.stackexchange.com/questions/111337/loops-in-bitcoin-scripting/ https://www.quora.com/Since-Bitcoin-is-not-Turing-complete-does-this-mean-no-for-loops-or-loops-of-any-kind-is-allowed-in-the-bitcoin-core-codebase\n\nBelow I provide an implementation of a for loop in bitcoin script using a construct that emulates a bounded-depth turing machine. To do this, I built a virtual machine in bitcoin script that can perform one of 8 actions depending on the value of 3 binary digits it reads from a tape (an array of stack elements). Actions it can perform include: shift the tape left, shift the tape right, read the next instruction (i.e. the next 3 digits), and modify the tape. Shifting the tape right is done by moving things to the alt stack and shifting it left is done by getting things from the alt stack.\n\n![](https://cdn-wordpress-info.futurelearn.com/info/wp-content/uploads/Turing_machines_03-1.gif)\n\nIf you pass this virtual machine a tape of 9 bits containing a set of instructions, the virtual machine will execute the instructions on the tape, including the ability to loop by running an instruction that tells it to shift left a certain number of bits, where it encounters another instruction telling it go back where it was and run the first instruction again. If your script doesn’t modify the tape in between those two instructions, it can get stuck in a loop until it consumes all of the virtual machine’s resources, or, if it does modify the tape, you can get it out of the loop after performing one or more functions a limited number of times repeatedly.\n\nThe following script is an example of a loop that repeats one time before consuming all of the virtual machine’s resources. It starts off at position 9 on a tape, where it is instructed to go to position 3, where it is instructed to return to position 9, then it loops by following the same sequence of instructions again: it goes to position 3 (based on the instruction at position 9) and then (following the instruction at position 3) it goes back to position 9 again. This basic version does not perform any modifications to the tape so after performing its loop it will halt and crash the virtual machine, which means it cannot be used in a real bitcoin transaction.\n\n[(Click here to read the rest)](https://github.com/brilliancebitcoin/for-loops-in-bitcoin-script/blob/main/README.md) https://example.com/ 20647 404369 403893.404369.409954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7981883145062 0 \N \N f 112884279 \N 1 224555751 0 f f \N \N \N \N 403893 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436567 2025-03-13 16:48:32.354 2025-03-29 22:39:52.197 \N I'm working on heyapollo.com \n\nA platform to review bitcoin products, and earn sats for doing so. \n\nThe idea is for users to surface the highest quality reviews by tipping the reviews / users with sats.\n\nWe've just integrated the lightning login. \n\nBiggest help I could ask for is for people to use Apollo and provide any feedback on what they like / dislike about the user experience. https://example.com/ 17001 436307 436290.436307.436567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.6729006753088 0 \N \N f 242369392 \N 1 21630842 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 2025-03-20 12:05:51.415 f \N \N \N 0 0 0 0 1 0 0 436564 2025-03-13 16:46:24.863 2025-03-29 22:39:52.197 \N echo chambers and group think https://example.com/ 19829 436493 436493.436564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4767758829499 0 \N \N f 326721398 \N 3 129370232 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 2025-03-20 10:17:03.596 f \N \N \N 0 0 0 0 1 0 0 436307 2025-03-13 13:08:41.033 2025-03-29 22:39:52.197 \N > I hope you get hit by those same shells\n\nOmg, how low can you go man? https://example.com/ 8498 436290 436290.436307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5637864517728 0 \N \N f 368016572 \N 3 59645690 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 2025-03-20 10:05:10.162 f \N \N \N 0 0 0 0 2 0 0 448301 2025-03-22 14:33:46.325 2025-03-29 22:39:52.197 \N I love cryptographic password less auth, hate the idea that it's attached to a lightning node / wallet. For one it instills a bad habit of keeping the same node pubkey forever. For two it's tying the same level of access to log in to some random website as your financial wallet - separations of concerns people... For three, for passwordless auth it's still rather lacking. No key rotations or multikey support. \n\nI'd love to see a dedicated non lightning app for this otherwise I hate being forced to use it (yes some websites require it)\n\nBut nevertheless great write up! https://example.com/ 21482 447892 447892.448301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2944472894444 0 \N \N f 288314381 \N 3 141355705 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 09:08:41.919 f \N \N \N 0 0 0 0 1 0 0 455923 2025-03-27 12:16:54.793 2025-03-29 22:39:52.197 \N In the context you used "meme", it could be seen as derogatory. Whether that was your intention or not probably doesn't matter. the "meme" usage is not my main point.\n\nMy main point is that many people in Bitcoin believe that a change to the supply in any way is heresy worth fighting over. If you can change something as fundamental as the overall supply on the fear of some possible bad outcome for the miners, then the integrity of the project is in question. A contentious fork is in the offering be default on this file. \n\nAs for your last point on my apparently symbolic statement. it's a semantic one.\n\n https://example.com/ 4650 455911 455551.455599.455824.455889.455904.455911.455923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7571959046358 0 \N \N f 840800592 \N 6 14482988 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404523 2025-02-16 00:33:44.343 2025-03-29 22:39:48.901 Knut Svanholm AMA Hi Everyone!\n\nI'm Knut Svanholm, author of several Bitcoin books, including "Bitcoin: Everything divided by 21 million" and "Bitcoin: Sovereignty through mathematics." I'm writing a book about praxeology and on the governance board for the FREE Madeira organization. Apart from this, I'm the host of the Freedom Footprint Show and an advisor for the Orange Pill App.\n\nI will be answering questions about anything for the next hour! \N 2361 \N 404523 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 17.9723563896561 0 \N \N f 100314233 \N 2 60496229 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420884 2025-03-01 08:25:05.618 2025-03-29 22:39:48.901 My watercolor copy of an accomplished painting ![](https://m.stacker.news/36094) \N 725 \N 420884 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 4.85352908793939 0 \N \N f 144115936 \N 2 172968748 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 401166 2025-02-12 19:02:06.098 2025-03-29 22:39:48.901 Sulu: API Monetization with Lightning \N https://www.sulu.sh/ 1261 \N 401166 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.60562933640144 0 \N \N f 326422646 \N 2 197322144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410617 2025-02-20 15:14:08.619 2025-03-29 22:39:52.197 \N # a bitcoin poem\n\nCreated: July 7, 2022 4:39 PM\n\ninformation is changing\n\ninformation is change\n\ndata overtakes senses\n\ncomputation eats meaning,\n\nit’s crunching the numbers.\n\nbefore you a wave\n\nof numbers and dots\n\nall your words\n\nreplaced with -+\n\nyour precious syllables\n\n_represented_ by 01100\n\nand what happens to you?\n\n— — — . . . analyzing . . .\n\ndo you insist that you are not a number?\n\nyes. insisting is diminishing you\n\nfrom the datawaves.\n\nyou keep insisting. something will listen,\n\nsomething will turn your insistence\n\ninto a valuable string, size it into a block\n\ncrunch the energy of the earth into a bit\n\nfor you, for what you insist should be,\n\ncall it datawave creation - genesis for now.\n\nhow should you know when you are heard?\n\nhow do I know things will change?\n\ninformation is loose change https://example.com/ 19292 410249 410249.410617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5590723943868 0 \N \N f 93645788 \N 1 167578888 0 f f \N \N \N \N 410249 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 419475 2025-02-27 20:21:41.71 2025-03-29 22:39:52.197 \N I was previously one of the people who was of the opinion that the hype was overblown and that people were exaggerating when they spoke of how impressive the technological improvements were. Most peoples' current exposure to what they consider "AI" is limited to a technology like chatGPT - which, while super impressive, is just one iteration of the actual underlying technology. \n\nI have changed my mind about this. I do think that we are currently at the beginning of a massive shift that is going to impact all of our lives, on every level. I think the scale of how big this change will be, is currently beyond description because we've literally never experienced anything like it before.\n\nGPT-4 is about to become super-charged...one thing to remember is that chatGPT isn't itself connected to the internet. There are too many developments and advancements happening every single day now when it comes to new AI stuff, that it's become impossible to remain abreast of all of it. \n\nI'll share some of the people who I like to follow to remain somewhat in the loop when it comes to AI related content:\n\nFirst and foremost I am a big fan of this guy, [Matt Wolfe](https://www.youtube.com/@mreflow). His channel has really blown up in the last few weeks on YouTube and if you check out his stuff, I think you'll see why. [This video from the other week is a great example](https://www.youtube.com/watch?v=IyKKhxYJ4U4) - it's a condensed, but still start-to-finish style video that shows his entire process of creating his own video game, relying entirely upon AI tools to do so and having zero coding knowledge whatsoever.\n\nWhat's really crazy is when you realize that the above linked video is from ~2 weeks ago, and then [this one from 6 days ago](https://www.youtube.com/watch?v=qEY488zCmTw) is showcasing new stuff that's been released in the last few days, and it really opens up one's mind to the possibilities of what you can create with these tools.\n\nHere's some other channels I like with AI stuff:\n\n["MattVidPro"](https://www.youtube.com/@MattVidPro) - yeah, dude should've used chatGPT to come up with a better name for his channel, but he has good content, lol.\n\n[AItrepreneur](https://www.youtube.com/@Aitrepreneur) - as you can imagine from the channel name, this one is somewhat more focused on AI from a business perspective, but he has overall good stuff. He set up a good Discord server for his channel as well if you're into that sort of thing.\n\n[SociallyIneptWeeb](https://www.youtube.com/@sociallyineptweeb) interesting rabbit hole of a side project, gives you a good idea of just how far some people are pushing this technology to create some wild shit.\n\n[This dude Alek](https://www.youtube.com/@alekSheffy) has a pretty good YouTube channel if you're interested in AI tools from a hustling/business kind of perspective as well. He's done a series where he's essentially automated a variety of side hustles that are entirely using AI and he reports back on how it's going for him.\n\nThe release of stuff like [https://www.reddit.com/r/autogpt](AutoGPT) and related tools which enable GPT-4 to have internet access and the ability to more proactively perform tasks are being released and advancing on a literal hour level, it's too much happening too fast.\n\nI think we're seeing the implosion of our current "knowledge economy", where a lot of people who basically pretend to have some kind of special ability or skillset are being displaced from their jobs. There's going to be a hell of a lot of change in the next few months/years, that's for sure. https://example.com/ 2709 419296 419296.419475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.20755224855827 0 \N \N f 149943873 \N 1 142951163 0 f f \N \N \N \N 419296 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437321 2025-03-14 12:46:35.189 2025-03-29 22:39:52.197 \N I'm making an orange-pilling kahoot style quiz game where participants can win bitcoin from the host. https://example.com/ 1488 437317 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51781652070399 0 \N \N f 1914230078 \N 16 209885865 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449075 2025-03-23 07:01:39.474 2025-03-29 22:39:52.198 \N ![th567hh7.jpg](https://m.stacker.news/7636) https://example.com/ 21369 449057 449027.449053.449057.449075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.43967410918252 0 \N \N f 540220679 \N 3 15248231 0 f f \N \N \N \N 449027 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307347 2024-11-24 23:47:12.293 2025-03-29 22:39:48.901 0xB10C's Bitcoin Halving Monitoring Stream \N https://www.youtube.com/watch?v=C6D9OEjnWmA 11776 \N 307347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5249981971637 0 \N \N f 188405121 \N 1 58999550 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448049 2025-03-22 11:15:19.124 2025-03-29 22:39:48.901 Establishing a Circular Economy in Australia Within the https://peninsulabitcoin.com/ community, our focus has been on actively engaging and integrating local businesses into the realm of lightning payments. This endeavor has been incredibly rewarding, especially when I enjoy my morning coffee, knowing that I am contributing to a local family business. Moreover, it's heartening to know that their children are learning about this technology.\n\nIn relation to the circular economy concept, which essentially involves businesses supporting each other through lightning payments, my query pertains to potential legal considerations. Assuming proper recording of tax events, are there any other legal ramifications that should be taken into account?\n\n![Screenshot_20240120-074256-COLLAGE.jpg](https://m.stacker.news/14484) \N 6555 \N 448049 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 29.9885241816851 0 \N \N f 243879642 \N 4 115167905 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:41:03.56 f \N \N \N 0 0 0 0 3 0 0 24587 2023-05-21 03:40:43.076 2025-03-29 22:39:48.902 George Orwell is Being Cancelled – The Daily Sceptic Deconstructionism is really the precurser to woke culture. I remember being taught this crap in college in the late 1970s. \nhttps://www.britannica.com/topic/deconstruction https://dailysceptic.org/2024/07/24/george-orwell-is-being-cancelled/ 925 \N 24587 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.0520999518761 0 \N \N f 139692230 \N 2 5300391 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421176 2025-03-01 13:22:02.128 2025-03-29 22:39:52.198 \N Do you ask an alcoholic how much they drink? https://example.com/ 21139 421172 420635.420987.421157.421163.421167.421172.421176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.52712384259452 0 \N \N f 55731334 \N 1 211505436 0 f f \N \N \N \N 420635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416253 2025-02-25 14:06:28.337 2025-03-29 22:39:52.198 \N timestamp for the win https://example.com/ 795 416221 416158.416221.416253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5844773221031 0 \N \N f 1567514721 \N 12 195795219 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433860 2025-03-11 13:07:19.507 2025-03-29 22:39:52.199 \N decentralizing github and confidential computing research for practical implementation, which is kinda getting tracked (at least useful reading during research) at [ungovernable.tech](https://ungovernable.tech) https://example.com/ 4292 433588 433588.433860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.539120814398 0 \N \N f 197585964 \N 1 105828164 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 2025-03-18 20:16:52.793 f \N \N \N 0 0 0 0 1 0 0 437293 2025-03-14 12:32:08.487 2025-03-29 22:39:52.199 \N The most powerful entity in the known universe. \n@DarthCoin and @orthwyrm fusion.\nhttps://i.ibb.co/gdfMF8h/c46fe67e-074b-449e-9028-195492393d3e.jpg https://example.com/ 1424 437292 436752.437184.437271.437292.437293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8074115145147 0 \N \N f 2965641067 \N 21 224740045 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424254 2025-03-03 23:25:22.515 2025-03-29 22:39:52.2 \N What do you think about Stacker News? :) https://example.com/ 9845 423905 423750.423905.424254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0649789653847 0 \N \N f 35275195 \N 1 48338803 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447226 2025-03-21 17:48:44.078 2025-03-29 22:39:52.2 \N I'm far from clued-up on the matter, but I'm of the opinion that the big bang was born from a black hole. Which I [discussed here on SN](https://stacker.news/items/360669). Many credible astronomers believe something similar, but the question would then be whether that black hole came from THIS universe or another.\n\n1. The black hole could have gotten too dense, too heavy and too tightly compacted that it would explode and unwind.\n2. The other option is it was formed from a black hole in another universe, with energy passing through a wormhole.\n\nEither way, we need more attention on this subject! For too long we have questioned the existence of the big bang, when to me it just seems obvious that human's current understanding & theories surrounding spacetime is incomplete. I would also like to see more people trying to break it down into layman's terms. This subject should be approachable to everyone with a curious mind. https://example.com/ 4083 447216 447148.447213.447216.447226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2275742120742 0 \N \N f 245299901 \N 1 236992241 0 f f \N \N \N \N 447148 \N 0 0 \N \N f \N 2025-03-28 11:06:58.494 f \N \N \N 0 0 0 0 1 0 0 444526 2025-03-20 01:12:58.744 2025-03-29 22:39:48.902 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 9026 \N 444526 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 13.083834229335 0 \N \N f 283666877 \N 3 71979219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 442356 2025-03-18 14:27:36.119 2025-03-29 22:39:52.193 \N When the end is nigh https://example.com/ 11443 442350 441553.442229.442350.442356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.42285214157472 0 \N \N f 58559117 \N 1 157535886 0 f f \N \N \N \N 441553 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1970 2022-09-30 00:22:59.114 2025-03-29 22:39:52.193 \N inspired by the social media discussion on this joe rogan podcast episode: https://www.youtube.com/watch?v=3qHkcs3kG44 https://example.com/ 4570 1968 1952.1965.1968.1970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2403923853891 0 \N \N f 150356186 \N 1 133042765 0 f f \N \N \N \N 1952 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437561 2025-03-14 15:59:18.871 2025-03-29 22:39:52.193 \N I still haven't read that paper, it's on my to-do list. That same passage was the one that jumped out at me, though. \n\nLeaving aside everything related to artificial credit expansion, somehow, radically reducing transactions costs in the global financial system is not supposed to have any productivity effect. https://example.com/ 5779 437233 437233.437561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.33245150493356 0 \N \N f 56183737 \N 1 58014471 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455650 2025-03-27 08:48:27.631 2025-03-29 22:39:52.194 \N My wifes friend mentioned something about bitcoin being dead :) \n\nIn a couple of months my friends and family will start calling me a genius, and then a year or two later i'll go back to being a retard.\n\nAnd the cycle continues......Cant make this stuff up folks. https://example.com/ 5128 455649 455649.455650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2768830087709 0 \N \N f 1164832955 \N 7 95069510 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447204 2025-03-21 17:25:06.52 2025-03-29 22:39:52.194 \N @kr is underrated in the Bitcoin space. The man is doing great work! https://example.com/ 12959 447196 447184.447192.447196.447204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.8595447759178 0 \N \N f 387880740 \N 3 217721268 0 f f \N \N \N \N 447184 \N 0 0 \N \N f \N 2025-03-28 10:44:45.633 f \N \N \N 0 0 0 0 1 0 0 415423 2025-02-24 19:32:19.404 2025-03-29 22:39:52.195 \N I am donating mine to a Nigerian Prince I met via Twitter! https://example.com/ 15941 415012 415012.415423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.049440837878 0 \N \N f 144241619 \N 1 63912020 0 f f \N \N \N \N 415012 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403067 2025-02-14 12:17:09.812 2025-03-29 22:39:52.196 \N I'm not a kid anymore and I see a lot of this stuff and think. Wow, these people need to grow up a little bit more and act like adults. https://example.com/ 10302 403058 403058.403067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6346193561313 0 \N \N f 109637945 \N 1 206002361 0 f f \N \N \N \N 403058 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435023 2025-03-12 12:07:42.467 2025-03-29 22:39:52.197 \N you just reminded me that I wanted to create [this ticket](https://github.com/stackernews/stacker.news/issues/577) https://example.com/ 1007 434958 434958.435023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6107909986411 0 \N \N f 137689423 \N 2 159197000 0 f f \N \N \N \N 434958 \N 0 0 \N \N f \N 2025-03-19 05:47:36.681 f \N \N \N 0 0 0 0 1 0 0 400120 2025-02-11 22:04:13.206 2025-03-29 22:39:48.902 Just how much money will flood into Bitcoin? Just how much money will flood into Bitcoin?\n\nBernstein analysts project Bitcoin ETFs to hold between $70-80B in assets by the end of their first year. Ric Edelman, founder of one of America’s largest RIAs, foresees $150B flowing in over the next 2-3 years, citing research indicating that “77% of independent advisors plan to allocate an average of 2.5% of clients' portfolios to spot bitcoin ETFs.” That’s a lot of money, and if spot bitcoin ETFs aren’t enough to send $BTC back to all-time highs, perhaps this event could help…\n\n- In approximately 95 days, Bitcoin will experience its fourth-ever Halving, cutting the number of new Bitcoin entering circulation in half.\n- In each of the past three halvings, $BTC soared the year before and after — rising 559% the year following the 2020 halving.\n\nWill the trifecta of spot bitcoin ETFs, declining interest rates, and the impending Halving event be enough to take prices to Mars? Depends on who you ask. Cathie Wood expects $BTC to hit $1.5M (a 30x increase) by 2030 — but ask a skeptic, and their answer could easily be zero. \N 21485 \N 400120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2685571677593 0 \N \N f 136841375 \N 1 52270965 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413184 2025-02-22 23:24:56.693 2025-03-29 22:39:48.903 Image uploads by ekzyis · Pull Request #576 · stackernews/stacker.news \N https://github.com/stackernews/stacker.news/pull/576 17042 \N 413184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.434404091969 0 \N \N f 134070429 \N 1 167917922 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420750 2025-03-01 02:27:23.482 2025-03-29 22:39:52.197 \N Interesting to watch this unfolding in Argentina on many levels. https://example.com/ 5759 420721 417342.420721.420750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.91676967381094 0 \N \N f 493340948 \N 4 201352335 0 f f \N \N \N \N 417342 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416938 2025-02-25 23:39:41.492 2025-03-29 22:39:52.197 \N Experience has taught me that the simpler the better. A retirement savings plan, an SP500 or world etf and Bitcoin with biannual reinforcement are enough. https://example.com/ 11263 416935 416158.416221.416253.416288.416551.416578.416605.416632.416869.416881.416929.416934.416935.416938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4026057487083 0 \N \N f 23108819 \N 1 192590236 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1965 2022-09-29 22:53:49.635 2025-03-29 22:39:52.197 \N wen sms2nostr https://example.com/ 13361 1952 1952.1965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7895665255917 0 \N \N f 292187022 \N 3 40614662 0 f f \N \N \N \N 1952 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435229 2025-03-12 14:42:30.289 2025-03-29 22:39:52.197 \N yay new contributor! great work, everyone! https://example.com/ 21408 434642 434642.435229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3955005718382 0 \N \N f 204815377 \N 1 91813763 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 10:16:48.723 f \N \N \N 0 0 0 0 1 0 0 402196 2025-02-13 15:54:26.082 2025-03-29 22:39:52.197 \N ![](https://i.imgur.com/ebSJQ5f.png) https://example.com/ 5708 402188 402188.402196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.698858585674 0 \N \N f 98159202 \N 1 36169337 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436407 2025-03-13 14:35:48.044 2025-03-29 22:39:52.197 \N Yeehaw! 🤠 https://example.com/ 866 436326 436326.436407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7032768444659 0 \N \N f 49410717 \N 1 93813752 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N 2025-03-20 10:24:11.542 f \N \N \N 0 0 0 0 1 0 0 443193 2025-03-19 06:33:37.427 2025-03-29 22:39:52.198 \N **Our trust in DJ's has been destroyed, and we have moved to obsolete them!**\n\n_Noderunners Radio project added to bolt.fun! \nThank you to benalleng who reminded us of bolt.fun! \nI'll see if the rest of the team wants to make an account here or not._\n\nHere is a discription of what we are building right now.\n\n**Noderunners Radio** is an interactive radiostation. Use the Jukebox Bot to add music to the queue.\n\n**What we achieved:**\n\n* We want the crowd to be the DJ. Our Jukebox Lightning Bot\\* makes this possible. \n Not only for Radiostations, but also for live events, venues, bars and pubs, businesess, you name it!\n \n* You want a three channel silent disco for your #bitcoin meetup, conference of festival? We got you covered!\n \n* No BS talk, no adds, just fantastic music from Noderunners around the world!\\*\n \n\n**Our ultimate goals:**\n\n* Get this thing to FM and internet Radio protocols\n \n* Get it going during live events\n \n\n**Tune in via our** [zap.stream](https://zap.stream/naddr1qqjrswfevvukxvrr95cx2vt9956xyepn94snxdfs95urwwryxe3x2wfjvscn2q3qeaz6dwsnvwkha5sn5puwwyxjgy26uusundrm684lg3vw4ma5c2jsxpqqqpmxwe2sz27) or [radio.noderunners.org](//radio.noderunners.org). \nYou can find the unique basic web-interface for the [Lightning Jukebox Bot of Noderunners Radio here](https://jukebox.lighting/jukebox/web/-1001672416970). Additionally, you can listen to the Radio via our [Telegram group here](https://t.me/noderunnersradio).\n\n**You can even spin up your own Radio with our Jukebox Lightning Bot!** \n_When you do, you will get your own unique web-interface!_ \n_Ask for help in our TG chat if you need it,_ _or just come hangout and play us your favorite pieces of music!_\n\nIt works very well for parties, pubs, or wherever else you want folks to have acces to a Lightning enabled Jukebox Bot. **GREAT FOR ORANGE PILLING FRENS AND FAM!**\n\n**Further plans**\n\n* Getting the bot to nostr \n _This process is slowly underway, see: #npub1wqtq2k9cawq2hkwz474xdm6ef0drmdhn4fk59hpyuex5l0ewa9rsj9a4cz_\n \n* Getting some dedicated hardware for streaming the Radio\n \n* Making the Lightning Jukebox Bot more modular \n _To easily allow for pluggin in/out more media-players & -labraries and to further bot integration over more platforms_\n \n* Integrating with [Wavlake](https://wavlake.com) with the Jukebox Lightning Bot \n _So musicians get their fair share of sats paid to the Jukebox_\n \n\n**We have started** [FOSSing the Jukebox Bot](https://github.com/LightningJukeboxBot) (we may make a seperate project page for that).\n\nPlease bear with us while we slowly add more things to the Github page. Normie life and the dirty FIAT-mines still take a sizeable chunk of our lives.\n\n[A friendly neighborhood Noderunner](https://github.com/PMK) created an applet for the [Tidbyt](https://tidbyt.com) so you can see the current track playing on Noderunners Radio. [Find it, and a preview of it, here.](https://github.com/tidbyt/community/pull/1838)\n\n![Tidbyt Noderunners Radio applet](https://storage.googleapis.com/geyser-images-distribution-prod-us/b7054385-11c0-4383-84f7-2bf0df172d4c_898p1D4kLH7jJyyxasfhpX/image_large.webp)\n\n**We are expanding to support live music and artists in another project called Sesh.**\n\n**Find the** [Geyser.fund of it](https://geyser.fund/project/sesh), and the [Github page here](https://github.com/artdesignbySF/Sesh).\n\n**To stay up to date, you may follow @noderunnersFM** on [Twitter](https://twitter.com/NoderunnersFM) & [NOSTR](https://snort.social/p/npub1ua6fxn9ktc4jncanf79jzvklgjftcdrt5etverwzzg0lgpmg3hsq2gh6v6) & [stacker.news](https://stacker.news/NoderunnersFM/all).\n\n**_We will strive to stay transparent on how we spend your donated sats._** _You worked hard for them, and we feel it is important to give you some insight in how we allocate them to further the project. Do know that we must keep team-member privacy in mind. The administration is not quite ready yet, but once it is, we will update this page with some statistics._\n\n_\\*We might prob setup seperate pages for the Jukebox Bot and the Sesh app._\n\n\\*Because we do not want to do ads we are reliant on your support. https://example.com/ 14663 443105 443105.443193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0791586987076 0 \N \N f 907814008 \N 6 84222897 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441837 2025-03-18 10:23:26.459 2025-03-29 22:39:52.198 \N When making grand claims about European providerism, and putting citation numbers, i was expecting some literature to support these claims. But no.\n\nThe author seems to base his impressions of Europe on some past experience where he was living in a closed little bubble. Many of my European friends work for promising start ups, incidentally leveraging the field the author seems to know so much about, namely machine learning. Based on my little bubble experience, Europe is leading the way on many technological fronts.\n\nBringing us back to the need for objective studies to support grand claims~~ https://example.com/ 21688 441823 441695.441823.441837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7264078303614 0 \N \N f 598404088 \N 3 25999358 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400994 2025-02-12 16:45:51.786 2025-03-29 22:39:48.903 Robosats is now available as an app on Umbrel ![Self-hosted Robosats](https://i.postimg.cc/VLkNrK8N/photo-2022-08-31-00-12-55.jpg)\n\nSource: https://t.me/robosats/10110 \N 631 \N 400994 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 23.7253979081972 0 \N \N f 465010881 \N 2 231548096 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3490 2022-11-03 21:13:20.259 2025-03-29 22:39:48.903 Meme Monday - Best Bitcoin Meme Gets 10,000 Sats Time for another round of Meme Monday.\n\nLast week's winner sent in [this meme](https://stacker.news/items/148316) and stacked 10,000 sats.\n\nThere's another 10,000 sats on the line today for the best Bitcoin meme as voted by the "top" filter on this thread at 9am CT tomorrow.\n\nTo post an image on SN, check out our docs [here](https://stacker.news/faq#how-do-i-post-images-on-stacker-news).\n\nSend your best 👇 \N 20963 \N 3490 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.1753506371872 0 \N \N f 449167841 \N 3 245496949 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 440422 2025-03-17 08:47:38.588 2025-03-29 22:39:48.903 Why do people declare the LN a failure? I have been looking around different subreddits and have seen different people talking about how fees are too high. I know that because I am on subreddits that oppose Bitcoin (r/btc), this would be the case. However, when I see people talk about the lightning network as a fix, they all call it a failure because of the fees you have to pay to send from on-chain to off chain. What're everyone's thoughts on this? \N 3456 \N 440422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.716706863766 0 \N \N f 401241447 \N 5 20958174 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408655 2025-02-19 01:07:53.931 2025-03-29 22:39:52.199 \N I'm new here and I care to read and I've learnt that zapping more is essential part of SN mechanism. https://example.com/ 18526 407979 406399.407380.407469.407944.407954.407957.407969.407971.407979.408655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4456995911155 0 \N \N f 142904431 \N 1 56868436 0 f f \N \N \N \N 406399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443651 2025-03-19 12:51:45.966 2025-03-29 22:39:52.199 \N Children of Time, by Adriad Tchaikowski. Intelligent spider civilization. https://example.com/ 722 443577 443577.443651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.313048685417 0 \N \N f 1212245961 \N 12 226110105 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:46:44.207 f \N \N \N 0 0 0 0 2 0 0 424037 2025-03-03 19:39:46.836 2025-03-29 22:39:52.2 \N @koob telling us to let it rip\nBuy some chips, make some dip\nHere's some water, take a sip\nImprove Bitcoin, write a BIP https://example.com/ 18901 424015 423384.423591.423593.423595.423601.424009.424015.424037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6332402644219 0 \N \N f 1371148606 \N 9 64792839 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451293 2025-03-24 13:34:28.113 2025-03-29 22:39:52.2 \N I think copyright means to have the right to distribute copies but the ownership remains with the producer. https://example.com/ 2285 451292 451292.451293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1219960439893 0 \N \N f 156073106 \N 1 70377880 0 f f \N \N \N \N 451292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431082 2025-03-09 15:20:07.902 2025-03-29 22:39:52.2 \N Where do you see Mempool.space going in the next 5 years? Do you see yourself branching out to other projects? https://example.com/ 18231 431074 430993.431001.431049.431074.431082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8673417395679 0 \N \N f 71376595 \N 2 45078697 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414908 2025-02-24 11:42:12.636 2025-03-29 22:39:52.201 \N A key thing is that centralization / distributed-ness is fundamentally relative, and is defined _in terms of something_. Are 100 nodes, scattered in every part of the world and on every continent, decentralized? They are with respect to geography. But what if they're all owned by the same dude? Then they're not with respect to ownership. What if they're all running Bitcoin Knots? Then they're not wrt software. What if they're owned by 100 random people, but they're all Americans, or they're all employed by Square, or ... \n\nYou get the point.\n\nEven going back to the idea that the nodes are spread evenly across the globe, in a sense, they're still not decentralized wrt geography bc they're all on the same planet. This seems a stupid distinction, and at the moment it is stupid, because we're all living on this same planet and their location on this planet makes no functional difference to any interaction someone would have with them. But it's not hard to imagine a context in which having everything collected on the same planet would no longer be decentralized from a relevant functional perspective.\n\nThis is what's so important about your last point -- whether some entity or cohort can achieve some goal (blocking something for everyone, in your example.) Decentralization (across the relevant functionality) is a state of organization that makes attacks of that kind difficult. It also makes development, deployment, testing, etc. slow and difficult. But the network lives with the latter drawbacks to realize the former benefits. https://example.com/ 21166 414324 414314.414324.414908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3750289870154 0 \N \N f 186340505 \N 1 105698434 0 f f \N \N \N \N 414314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407607 2025-02-18 08:31:04.431 2025-03-29 22:39:48.903 Keet by Holepunch \N https://keet.io 15890 \N 407607 \N \N \N \N \N \N \N \N health \N ACTIVE \N 14.8091953761232 0 \N \N f 1284700446 \N 7 58565491 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 457413 2025-03-28 13:32:02.126 2025-03-29 22:39:48.903 What gets you up in the morning? I am big dreamer. I absolutely love sleeping. I have intense vivid dreams. Even the darker ones are exciting to me. Sometimes I am in control, while knowing I am dreaming. It's like a magical limitless playground. I really enjoy this. So waking up sometimes feels challenging even though my life is beautiful. Sometimes I want to sleep forever.\n\nIt used to be my job or school that got me out of bed, with an alarm of course. Other times, it was about my kids. Even drinking morning coffee has been a reason to get up. Now non of these apply, it's hard to get motivated to get moving. There is nothing outside of my own will to move me. Once I am up and moving, I can really enjoy my day. It seems obvious to say "just do it", and move but I struggle with that. \n\nSo, I ask, what gets you up in the morning? Does anyone else have lucid dreams? Is sleeping exciting for you? Do you wake up excited to get moving or is there some outside force that pulls you? I love to hear from you all. \n \N 19138 \N 457413 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 20.3529710840803 0 \N \N f 1093112387 \N 8 88043480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 438088 2025-03-15 08:40:23.046 2025-03-29 22:39:48.903 To not work for 30 years, how many bitcoin do you need right now? For tax reasons it’s best to quit your job when selling satoshis.\n\nHow much bitcoin would you need to retire right now and live fairly comfortably for 30 years?\n\nMy guess would be 21 bitcoin is the minimum stack level required to do it right now if happy to live in low cost of living countries. Which would be $2k a month at current prices. \n\nAll while holding a scarce asset that should appreciate in value. So your retirement would get more fruitful as you aged. \n\nA glorious concept. \N 15719 \N 438088 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 26.4288525999428 0 \N \N f 204515906 \N 1 200944585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 301817 2024-11-20 08:52:14.744 2025-03-29 22:39:48.904 Orange Pill Time For MAGAs? I just read that NY Attorney General Tiesha James has begun to search for Trump bank accounts, with the ultimate goal of seizing those assets. Trump has a knack for making everything about him, so maybe this will be the ultimate MAGA orange pill moment, having even more of an impact than the Canadian truckers strike? \nWe'll see. \N 16816 \N 301817 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.7860383276134 0 \N \N f 129122208 \N 1 240428003 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422087 2025-03-02 09:20:08.692 2025-03-29 22:39:52.201 \N Hi @evankaloudis just wanted to say thank you for ZEUS, such a good application. I'm a localization contributors on Transifex.\n\n- Favorite football team? https://example.com/ 17708 422076 422056.422057.422068.422076.422087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.9837878069349 0 \N \N f 345909868 \N 3 88163510 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410696 2025-02-20 16:08:53.264 2025-03-29 22:39:52.201 \N Do you think of any use case for Lightning Addresses or another abstraction layer that could be used in the protocol? https://example.com/ 21585 410507 410507.410696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8682008348382 0 \N \N f 479133767 \N 5 209213449 0 f f \N \N \N \N 410507 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434404 2025-03-11 21:26:59.413 2025-03-29 22:39:52.201 \N This poor fella\nhttps://en.m.wikipedia.org/wiki/Hiroo_Onoda https://example.com/ 651 434278 434278.434404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.59491129902205 0 \N \N f 178970309 \N 2 233155665 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 18:58:41.431 f \N \N \N 0 0 0 0 2 0 0 448447 2025-03-22 15:52:18.963 2025-03-29 22:39:52.201 \N I can get too focused on the future instead of the here and now https://example.com/ 2514 448301 447892.448301.448447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8059653782812 0 \N \N f 131743590 \N 2 156570791 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434444 2025-03-11 22:32:34.733 2025-03-29 22:39:52.202 \N Hey @DarthCoin - thanks for adding this. I was meaning to make an announcement about the new site. Let me know if you have any suggestions about the site or the services on offer. https://example.com/ 17714 434442 434278.434298.434310.434411.434435.434439.434442.434444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0111450783796 0 \N \N f 290357036 \N 3 220738823 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 18:58:12.092 f \N \N \N 0 0 0 0 1 0 0 430853 2025-03-09 13:14:05.37 2025-03-29 22:39:52.202 \N What are the typical volumes of bitcoin that run through Bitrefill on any given day? Are there patterns relating to how he market is doing or is it independent of that? https://example.com/ 9347 430748 430726.430729.430732.430748.430853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.846124407119 0 \N \N f 413895396 \N 2 152780214 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436560 2025-03-13 16:43:20.029 2025-03-29 22:39:48.904 Same Bitcoin TX in 2 different blocks. Is Bitcoin Broken? The transactions I am talking about is: _*d5d27987d2a3dfc724e359870c6644b40e497bdc0589a033220fe15429d88599*_\n\n![1.jpg](https://m.stacker.news/11652)\n\nAnd this is not the only example.\nThe 2nd one being: _*e3bf3d07d4b0375638d5f1db5255fe07ba2c4cb067cd81b84ee974b6585fb468*_\n\n![2.jpg](https://m.stacker.news/11653)\n\nI am sure it everyone expects each Bitcoin transaction to be unique since the existential purpose of Bitcoin is to solve the double-spending problem.\n\nEven more, everyone knows that the TX ID, is the (double) hash of the transaction data, and one propriety hash function has is that every time you feed it a *different input*, it gives you a *completely different output*.\n\nBut at the same time, the same input gives the same output everytime.\n\nSo this means that we are either:\n1. the SHA256 is broken\n2. we are hashing the same data\n\nIn fact what exactly are we hashing?\n![5.jpg](https://m.stacker.news/11654)\n\nTX in pic: _c1b4e695098210a31fe02abffe9005cffc051bbe86ff33e173155bcbdc5821e3_\nsource: _https://learnmeabitcoin.com/explorer/transaction/c1b4e695098210a31fe02abffe9005cffc051bbe86ff33e173155bcbdc5821e3_\n\nWell, a transaction is made of inputs, outputs and some other data.\nMost of the time at least one of these fields is different, so we always end up with a different TX ID.\n\nBut the TXs in question are not normal TXs, they are coinbase transactions and coinbase transactions have one very special propriety: they create money out of thin air.\nThis means that when a miner pays himself, there is no input, as the money comes from nowhere.\n_(technically this is not true there is exactly 1 input there, and it's always the same thing but we can treat it as non-existent)_\n\nSo in the culprit transactions, there is no input(or its the same one always), they both pay to the same output(in this case it pays to a bare pubKey) so when we hash the data we get the exact same TX ID.\n\nYou can imagine that this was seen as a problem, and something was done to solve it.\nThe 1st attempt was BIP30, which introduced a new rule.\nBlocks are not allowed to contain a TX with the same ID as a previously non-spent TX in the current chain, and of course, the BIP had the edge case above exempt from the rule.\nWhile this helped it did not solve the problem.\n\nLater(not that much later though) BIP34 introduced a new rule.\nEach coinbase TX is to include the height of the block.\nAs each height of each block is different, this guarantees that each coinbase TX ID will be unique.\nThe blocks that have such coinbase TXs, are called version2 blocks, and the older ones version1.\nThe last version 1 block was 227,835, and it was mined on 3 March 2024.\n\n![9.jpg](https://m.stacker.news/11657)\n\n# So, is Bitcoin broken?\nWell, that a more difficult question to answer than you can imagine, we can just say now it's kinda working.\nHowever before the above patches were added, I would say yes, it was broken, and the reason I am using the word "broken", is because it did not do what we wanted it to.\n\nNow, you prolly are thinking: Ok, but if this has no severe consequences, why is this is problem?\n\nWell it could lead to 2 very problematic things:\n1. Network splits\n2. Some bad actors could revert the confirmations of TXs that are descendants of a duplicate TX to 1 confirmation.\n\nThe 2nd attack is not as lickly and there are quite a bunch of if, but still, we could not have this being a possibility on the Bitcoin network.\n \N 21803 \N 436560 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.5344004805697 0 \N \N f 179013987 \N 2 231366648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 14:29:21.441 f \N \N \N 0 0 0 0 1 0 0 424215 2025-03-03 22:14:03.75 2025-03-29 22:39:52.194 \N Adding Twitter support on Donate4.Fun\n![](https://gcdnb.pbrd.co/images/NuC937HdclGk.png?o=1) https://example.com/ 940 423571 423438.423439.423571.424215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.31459292065301 0 \N \N f 37777850 \N 1 160284334 0 f f \N \N \N \N 423438 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447565 2025-03-21 23:14:59.116 2025-03-29 22:39:52.201 \N Which projects in the Bitcoin space are you the most excited about? https://example.com/ 1602 447418 447418.447565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9839528717923 0 \N \N f 166512207 \N 2 125823495 0 f f \N \N \N \N 447418 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443330 2025-03-19 09:10:00.332 2025-03-29 22:39:52.201 \N Day 278 of snailposting everyday 'til BTC hits $100k.\n\n...and 78 push-ups. (20 - 20 - 20 - 18)\n\n__@_'-' https://example.com/ 16695 443328 443295.443297.443328.443330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8795479219883 0 \N \N f 98871993 \N 1 27772141 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:26.236 f \N \N \N 0 0 0 0 1 0 0 443681 2025-03-19 13:14:07.059 2025-03-29 22:39:52.201 \N gaining and losing a cowboy hat has become a significant side quest in my life https://example.com/ 21427 443680 443577.443613.443669.443676.443680.443681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5031942400044 0 \N \N f 90226803 \N 1 210815183 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:34:07.954 f \N \N \N 0 0 0 0 1 0 0 443096 2025-03-19 03:40:34.863 2025-03-29 22:39:52.201 \N If you like golf or are learning to golf, my all time favorites are\n\n- Golf is Not a Game of Perfect (Bob Rotella); instructional \n\n- Harvey Penick’s Little Red Book (Harvey Penick); instructional\n\n- The Match (Mark Frost); historical non-fiction https://example.com/ 3706 442751 442751.443096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4820071922565 0 \N \N f 76129155 \N 1 233761648 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 2025-03-26 04:51:21.945 f \N \N \N 0 0 0 0 1 0 0 443611 2025-03-19 12:41:10.336 2025-03-29 22:39:52.202 \N Yet the damage is already done, as they've shown their hand. I hope all Bitcoin projects that enable users to take self custody have taken note, if they are currently using Github, that they can be shut down/out at any time. https://example.com/ 21114 443583 443583.443611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4910775415976 0 \N \N f 149253409 \N 1 201510412 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 2025-03-26 06:17:58.538 f \N \N \N 0 0 0 0 1 0 0 422365 2025-03-02 12:12:55.053 2025-03-29 22:39:52.202 \N You don't have to point it out. He'll let us know in his own subtle way. https://example.com/ 7682 421778 421778.422365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9260943521451 0 \N \N f 267147825 \N 3 45120957 0 f f \N \N \N \N 421778 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1197 2022-09-06 21:11:16.802 2025-03-29 22:39:48.904 What can we learn from nature? When you look out into the wilder world and observe or at least think about other creatures, I believe that **life for animals involves pursuit, purpose, curiosity and sacrifice**. You could argue that we as humans have fallen into the trap of comfort in recent years, depriving ourselves of some natural values of ours in favour of efficiency.\n\n### **What can we learn from nature?**\n- **Pursuit** = Lions live the best quality of life, obtaining the best possible rank to get the best possible mate, to access the best food and are willing to put their lives on the line for all of these things. It's in their nature to reach the conclusion that otherwise it's not a life worth living.\n- **Purpose** = The urge to collaborate and build megastructures to serve a greater purpose. To work together in harmony to move great amounts of material (in the case of ants) or to create perfectly-sized honeycomb structures that offer the maximum amount of strength for the least amount of material to cover the space.\n- **Curiosity** = If you've seen videos about octopuses, in the wild or in experiments, they are in equal parts inquisitive, curious, devious & playful. They can build structures, edit their genetics and create synthetic camouflage skin on the fly. Often times they do it for fun, sometimes they plan far in advance to the detriment of efficiency. Furthermore, mother octopuses have been observed dying after bringing their eggs in the world, protecting them from predators at all costs without hunting for food during that time.\n- **Sacrifice** = Animals are willing to make sacrifices in order to preserve legacy and order. In the case of the lion sacrifice for himself, for the octopus for their offspring or in the above for bees and ants, to attack the queen if she is not working in the best interests of the colony. \n\n### **Comment below...**\nWhat else do you think we as people can take from nature? Which one word would you use that aligns with us the most? \N 14122 \N 1197 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.76295401241016 0 \N \N f 169685110 \N 1 8430754 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437830 2025-03-14 23:05:44.22 2025-03-29 22:39:52.194 \N Last night I had a dream that the Grayscale ETF got approved today and we proceeded to melt-up to $100k.\n\nStack accordingly.\n\n__@_'-' https://example.com/ 20912 437642 437642.437830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.14871671967133 0 \N \N f 18277210 \N 1 111366174 0 f f \N \N \N \N 437642 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435200 2025-03-12 14:23:12.036 2025-03-29 22:39:52.194 \N Any territory owners in the Saloon who didn't get earnings yet today?\nI got nothing. Zero. Bupkis (NY slang) https://example.com/ 760 435162 435046.435135.435162.435200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3608064860915 0 \N \N f 208829777 \N 2 145227811 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 12:35:55.904 f \N \N \N 0 0 0 0 1 0 0 434421 2025-03-11 21:44:37.056 2025-03-29 22:39:52.194 \N Click on it and toggle it to "1sat=1sat" https://example.com/ 14465 434278 434278.434421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.7591851554777 0 \N \N f 337673935 \N 2 96524741 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 18:59:33.096 f \N \N \N 0 0 0 0 1 0 0 404369 2025-02-15 20:11:31.587 2025-03-29 22:39:52.194 \N Day 106 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 17147 403893 403893.404369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0532193422322 0 \N \N f 337440030 \N 2 207600287 0 f f \N \N \N \N 403893 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436338 2025-03-13 13:41:13.689 2025-03-29 22:39:52.194 \N ![](https://c.tenor.com/Ilt-dZQd-hQAAAAC/shaquille-o-neal-cat.gif) https://example.com/ 20691 436332 436322.436332.436338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2148116373104 0 \N \N f 87693592 \N 1 108636480 0 f f \N \N \N \N 436322 \N 0 0 \N \N f \N 2025-03-20 07:07:04.124 f \N \N \N 0 0 0 0 1 0 0 401500 2025-02-13 04:57:54.855 2025-03-29 22:39:52.194 \N I feel like it's the principle of the matter. I wouldn't like names exposed. As it is, the heuristics here expose privacy anyway. More accurately than chainalysis. I don't want to get all self righteous, but I played fiat games, score keeping and keeping up with the Joneses my whole life. I'm pretty old, and I'm sick of it. I will agree with you that content here has certainly improved, and that's a plus. https://example.com/ 1307 401493 401458.401493.401500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.75021994640867 0 \N \N f 398781304 \N 3 44262542 0 f f \N \N \N \N 401458 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 419668 2025-02-28 01:46:16.924 2025-03-29 22:39:52.194 \N Keith Richards came up with the guitar riff for Satisfaction in a dream. Mine, on the other hand, rarely make a damn bit of sense. https://example.com/ 20310 419276 419276.419668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6386148049193 0 \N \N f 136037934 \N 1 191777522 0 f f \N \N \N \N 419276 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436294 2025-03-13 12:59:52.45 2025-03-29 22:39:52.194 \N Hi, besides the economical consequences and the impact on political power structures I see a dangerous impact on our cultural and aesthetical reception. Imagina a generation that won't have to train itself by reading understanding and interpreting art, poems or music. In my opinion it's the core of being human... AI seems to be weaponized to attack these crucial elements of individualism https://example.com/ 7673 435657 435657.436294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6414644080976 0 \N \N f 61403874 \N 1 36294188 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 09:20:00.177 f \N \N \N 0 0 0 0 1 0 0 444143 2025-03-19 17:30:18.716 2025-03-29 22:39:52.194 \N What happens if a coin-join round "fails'? https://example.com/ 937 444132 444114.444132.444143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9743215009398 0 \N \N f 1225666355 \N 9 87201155 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455994 2025-03-27 12:50:42.898 2025-03-29 22:39:52.195 \N do you know how much they’re subsidizing their oil?\n\ni recall seeing a while back that if you pay with chivo you get a discount on gas prices at the pump, is this the subsidy you’re referring to or something else?\n\n+1 for someone who can share detailed financial data on El Salvador https://example.com/ 5112 455962 455551.455599.455824.455889.455904.455911.455923.455952.455962.455994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3948492339229 0 \N \N f 467683766 \N 3 158883561 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433750 2025-03-11 11:14:53.99 2025-03-29 22:39:52.195 \N [![wife-sn.jpg](https://i.postimg.cc/bvQtZ2Nh/wife-sn.jpg)](https://postimg.cc/67p3Sqvj)\n\nMaybe you do not remember the first Bitcoin faucet... giving away almost 1BTC/user.\nAnd still those days many people laugh about it.\n\nWho is laughing now?\n\n[![first-faucet.png](https://i.postimg.cc/T3VB2f54/first-faucet.png)](https://postimg.cc/NK0dph46) https://example.com/ 20913 216553 215973.216272.216481.216553.433750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.18755028843494 0 \N \N f 449363980 \N 2 112439071 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2008 2022-10-01 14:48:39.705 2025-03-29 22:39:52.195 \N **Only one thing matters: make it work.**\n\nThe key to success is leveraging your unique advantages. For some, it’s their network, for others, it’s experience in the field, and for others, it’s having personal funds. There’s no universal ‘better way’—just focus on what you bring to the table and what your target market needs.\n\nThe biggest threat to your company’s success is losing sight of that core goal: making it work. Often, it’s ego that gets in the way—whether it’s wanting to change something for the sake of it or believing your approach should be different from the market’s reality.\n\nThe only advice that generalizes well? Fish where there’s fish. Focus on what works, not what you wish worked.\n https://example.com/ 16978 2002 2002.2008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0072616642861 0 \N \N f 257755818 \N 2 18762235 0 f f \N \N \N \N 2002 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435284 2025-03-12 15:18:39.226 2025-03-29 22:39:48.904 Killing Your heroes (2015) Wasn't sure if I should post this in ~bitcoin or in ~culture since some bitcoiners say "Slay your heroes".\n\nPosted this in ~culture even though we're on Stacker News (mostly bitcoiners here) since this is a phrase applicable in general to life — or culture.\n\n> **Killing your heroes**\n> \n> “Kill your heroes” is a phrase that I have heard at various times throughout my life. However, until recently, I never really connected with the phrase. Sure, I understood the basic idea, but I failed to appreciate it. To kill ones heroes is not to literally axe your heroes, but to kill the glorified version of them you hold in you mind. This isn’t to say you should kill your dreams, or not have people you look towards for guidance or inspiration. **Instead, I think of it as allowing your heroes to be real human beings, and, in turn, you allow yourself to be held to attainable standards.**\n>\n> [...]\n>\n> The truth as I see it runs more along the idea that people are flawed. We all do some things excellently and other thing not so well. Somethings we aren’t even aware that we could do them. Personally, I strive to be able to recognize what people do well, and give credit where it is due. But I also try to recognize what I don’t think they get right and why.\n>\n> [...]\n>\n> you can’t take all the positive thing and negative things separately, nor do I think you should try. It’s important to think about and understand what you feel is being done right, and what was done wrong, and how those influence the person in question as they undoubtedly do.\n\nI also think this is related to "growing up". I always say that I've grown up when I realized that my parents are flawed people. As probably most of us did at some point.\n\nGetting into bitcoin feels similar to "growing up once more". Instead of realizing that your parents have flaws (which is fine and normal!), you realize that society as a whole has (a lot of) flaws. https://hessianwithteeth.wordpress.com/2015/03/07/killing-your-heroes/ 739 \N 435284 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 26.3611997071514 0 \N \N f 627435299 \N 4 22250053 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:32:15.171 f \N \N \N 0 0 0 0 2 0 0 192967 2024-07-02 00:13:33.624 2025-03-29 22:39:52.195 \N ![image](https://i.ibb.co/PGZmLyJ/IMG-20230619-WA0007.jpg) https://example.com/ 16808 192964 192964.192967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.969017107545 0 \N \N f 180185110 \N 1 30629372 0 f f \N \N \N \N 192964 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458162 2025-03-29 02:57:27.653 2025-03-29 22:39:52.195 \N Day 325 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 16348 458122 458122.458162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1310318346454 0 \N \N f 226029954 \N 1 155423947 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1968 2022-09-29 23:46:18.098 2025-03-29 22:39:52.195 \N just came across lightning network today.\n\nblown away. \n\nmany questions coming in mind. \nany good tutorials to learn more about how it works? https://example.com/ 633 1965 1952.1965.1968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5846240655756 0 \N \N f 283398951 \N 2 8788071 0 f f \N \N \N \N 1952 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444324 2025-03-19 19:35:14.174 2025-03-29 22:39:52.195 \N > Second Lightning enables users to ignore on-chain fees.\n\nYea you should really re-read the original post. This isn't at all true, and it's explained pretty well why https://example.com/ 19459 444179 443712.444179.444324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.19694407356668 0 \N \N f 206477448 \N 2 191719403 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435063 2025-03-12 12:41:48.746 2025-03-29 22:39:52.195 \N May The Bitcoin Be With You! https://example.com/ 17411 435046 435046.435063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.71101061333609 0 \N \N f 232279585 \N 2 101973520 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:01:22.274 f \N \N \N 0 0 0 0 1 0 0 408084 2025-02-18 15:01:42.614 2025-03-29 22:39:52.196 \N I know many people who were transformed (for the better) by him. I'd caution against throwing out the good he's done because of some of the bad. \n\nPeople aren't perfect, including our heroes. If you feel a need to polarize yourself for or against someone for merely being fallible, you'll quickly wind up alone like most people on this Earth. Be forgiving, don't forget, and act accordingly.\n\nThat said, I've also found JBP less enjoyable to listen to since he became famous. It could be because he's become repetitive or because some of it's gone to his head. I don't know what exactly, but I don't dismiss everything he says or stands for as a result.\n\nThere are far worse people to look up to. https://example.com/ 17124 407903 407903.408084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9601071586553 0 \N \N f 14631225 \N 1 220975208 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422611 2025-03-02 15:21:19.724 2025-03-29 22:39:52.196 \N It's easy to accidentally hit the lightning button. Losing one sat is pretty minor, but might put a little more distance between the icon and the title/comment, or give like a 10 second undo window https://example.com/ 13076 422604 422203.422207.422399.422491.422579.422583.422586.422604.422611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.6253232202593 0 \N \N f 284412290 \N 4 124226654 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434280 2025-03-11 18:43:10.339 2025-03-29 22:39:52.196 \N THIS is the content we should have every day on SN!\nNot the posts about shitcoins. https://example.com/ 20998 433934 433934.434280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1259613325105 0 \N \N f 216874129 \N 1 129255037 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 4237 2022-11-16 20:26:38.771 2025-03-29 22:39:48.904 Bitcoin Core Developer Dhruvkaran Mehta Steps Away, Teases New Startup Idea \N https://www.coindesk.com/tech/2023/04/19/bitcoin-core-developer-dhruvkaran-mehta-steps-away-teases-new-startup-idea/ 9537 \N 4237 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 17.4117556267876 0 \N \N f 89046110 \N 1 131109601 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 394739 2025-02-07 14:06:15.621 2025-03-29 22:39:48.904 SN Cowboy Hat: A Case Study in Motivation These days, there are many guides and experiments that enlighten Stackers how best they can obtain a cowboy and hold on to it. Back in September, I was completely clueless about this feature. I was just shooting bullets in the dark, hoping to land on bull’s eye. Which of course didn’t happen at times.\n\nIt was such a bewildering process. One time last September, I even wrote about this engima in what I hoped was a tongue-in-check manner: https://stacker.news/items/264047.\n@Darthcoin then extended an invitation for me to join the lads at the Saloon. \n\nWhich I did, because I thought that was the magic pill of keeping my cowboy hat. I’m from Singapore and we have a Singlish word which encapsulates our psyche: kiasu. It means to be afraid to lose out to others. I don’t know what the cowboy hat is all about but I definitely want it when others have it!\n\nSubsequently, I grew wiser to the ways of this site and learnt that I could probably hang on to a cowboy hat if I zapped Stackers consistently. My motivation was still extrinsic-dominated. I saw the cowboy hat as a status symbol. That others might zap me because my views were somehow deemed more relevant than when I didn’t wear a hat. Seeking attention in a non-flashy way, I guess?\n\nI made it to 8 days. Got cocky and thought I would definitely make it to 9 days - and promptly lost it.\n\nI then pulled back for a while. I’m not quite sure why. Disappointed? It wasn’t as if I hadn’t tried. Maybe I was trying to absorb the impact this curveball had given me.\n\nEventually, I thought I would give it another go. After all, SN is the funnest way of stacking sats. xP Suffice it to say that I was on high alert. I made it to 10, then 20. Today marks the 30th day of wearing my cowboy hat.\n\nI mean, it isn’t in the bag here because who knows, I may drop it at the 29th mark. But you betcha I would be commenting and zapping like crazy after I publish this post.\n\nGradually, I felt a shift in my soul. The cowboy hat transformed into a source of pride. That despite all of life’s challenges, I had the bandwidth to write (admittedly not so great posts at times). That I had the capacity to remain curious about others. That I was able to prioritise my time and energy and exchange dialogue with people on issues that matter to me.\n\nMy cowboy hat tells me that I’m strong. tenacious. go-getter. All the positive attributes that boost my self-image.\n\nI’m determined to hold on to my cowboy hat for as long as I can!\n\nHave you experienced a similar shift from extrinsic motivation to intrinsic motivation? \n \N 1718 \N 394739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.772439731357828 0 \N \N f 108658257 \N 1 65507698 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 137862 2024-03-06 17:12:54.254 2025-03-29 22:39:52.196 \N Can get paid in bitcoin, usd and eur. Have a western bank, but total fees to make it to cash pesos is at least 1.5%. Still looking to improve on this. Debit card payments are free.\n\nYes, I save a lot. I live very good here for 1200 usd and eat steak every day. My house gets cleaned, (shared) garden taken care of, that kind of stuff. Close to a lively centro with a lot going on, international community. Can't get anywhere close to that in W-Europe.\nAnd don't forget the time I save not doing bureaucratic paperwork, it doesn't interest Mexico where I get my money from; as long as it's from abroad and I spend it here, they're happy. https://example.com/ 4768 137821 137821.137862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.93866288262608 0 \N \N f 459936993 \N 3 190591141 0 f f \N \N \N \N 137821 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442558 2025-03-18 16:37:04.989 2025-03-29 22:39:52.196 \N A particularly insidious group I have named the ‘coffeeladderati’. \n\nThis is a group of, usually boomer generation, home owners who state that any young person could own their own home and get on the property ladder if they ditched their daily latte. They are rarely challenged on the mathematics or assumptions that go into this - whilst their is a strong case for cutting discretionary spending and investing that money the advantages they enjoyed are not available anymore. \n\nThe days of secure occupation and eligibility for 5% lifetime fixed rate rate 99% self-certified mortgage on a £100,000 family home are just not there. It is a cult, pushed out by mainstream financial media, which separates the ‘haves who don’t appreciate that luck and hard work played their part’ and the ‘have not and cannot get even with luck’. https://example.com/ 3461 439263 439263.442558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6371165130368 0 \N \N f 216637731 \N 3 117967719 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406620 2025-02-17 13:03:59.06 2025-03-29 22:39:52.197 \N from what i'm gathering from this and the other great answers in this thread, it sounds like fedimint is aiming to be a great decentralized (federated) and non-custodial alternative to custodial and self-hosted bitcoin/lightning wallets by offering a much better experience in many ways, such as better privacy, improved transaction reliability, and hands-off liquidity management for end users, for those who are fine with the "tradeoffs," such as a little more centralization than running your own node, not technically using or owning sats but instead a token-like voucher or note, and there still being a chance albeit a much smaller chance of a rug-pull than going with a full custodial solution.\n\nin regards to custodial solutions, it sounds like a no-brainer. something like stacker.news running its own fedimint and facilitating value transfer through the mint instead of a custodial solution moving data around in a sql db (like lnbits) or something would be a really cool idea. i wouldn't be surprised if @koob is working on this already.\n\ni disagree that bitcoin lives and dies with the miners. a federation disappearing with some funds is alot more final than miners turning off. i can always just start mining myself. i wouldn't recommend it haha but i could i guess. i can't recover keys within my lifetime to figure out how to undo the vouchers i obtained from a fedimint to try to get my sats back.\n\ni don't have anything against the concept of a federation. a group of people making decisions for the (hopefully) best interest of a community, however you define that, is a scaling solution to a population growing. i also did not mean to imply, if it was taken this way, that fedimint is just a pump and dump "make a token" shitcoin. that wasn't my intent. the origin of my question was really just trying to understand the tech at a 20,000 foot view, which i think i now have thanks to this SN thread. \n\nhowever, i do still think that it is another token. backed by bitcoin, which is fine, but a token nonetheless. the marketing around fedimints seems to work really hard not to use that word. instead opting for the technical (and probably more correct) name of "chaumian ecash." but at the end of the day, it doesn't sound like i own bitcoin. i own a token that is supposed to have a value that equates to sats in some way. however, it also sounds like there's no way to verify that, which is interesting.\n\nall in all, in sounds like cool tech being worked on by some of the brightest minds in our space, most of, if not all, of who(m?) have only the best of intentions and just want to help bring the benefits of bitcoin to more people. i'm looking forward to seeing how it pans out and what new use-cases can come from it. i hear the module system in fedi is dope. https://example.com/ 1881 406297 406297.406620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9259939847399 0 \N \N f 622761785 \N 4 199479476 0 f f \N \N \N \N 406297 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402674 2025-02-13 22:40:16.702 2025-03-29 22:39:48.905 Some Nostr Dev Course lessons are free on youtube As promised, my lessons from the Nostr Dev Course are now free on youtube. Check them out:\n\nBuild your First Nostr App: https://youtube.com/watch?v=4qOVxq9lUbs\n\nReddit Clone Part 1: https://youtube.com/watch?v=IAK0mrY2_Ew\n\nReddit Clone Part 2: https://youtube.com/watch?v=3Pv940IEvTA\n\nPurchase the full course here: pleblab.com/nostrdevs \N 21048 \N 402674 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 23.2934694752779 0 \N \N f 2581163869 \N 19 105862170 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 449767 2025-03-23 14:25:04.398 2025-03-29 22:39:48.905 Bitcoin Consensus Analysis Project Bitcoin is very hard to change, a property that is critical to it having any value at all. But, what exactly prevents it from being changed? Bitcoin is also bigger than ever, so how do improvements get made?\n\nAnnouncing the open source bitcoin consensus analysis project (BCAP).\n\nEarlier this year, @avichal and I discussed the potential for such a project, and over the past few months, I have been working with @0xren_cf and @LynAldenContact to go from concept to a solid starting point, which can now be found at the link below\n\nhttps://github.com/bitcoin-cap/bcap\n\nBitcoin consensus is simply a set of rules codified in software. However, what maintains that consensus and what allows that consensus to change is extremely complex. What roles do each of us play in this consensus? What motivations and powers do each of us have?\n\nThis project identifies 6 stakeholder groups that play a role in bitcoin consensus including each group's motivation and powers. It also analyzes how each group’s power shifts over the lifecycle of potential change. https://github.com/bitcoin-cap/bcap#stakeholders\n\nUltimately, investors have the most power, but their power is often exercised late in the lifecycle of change when bitcoin might be on the brink during a contentious fork. Ideally, we avoid winding up in such a fragile state, so the project explores this dynamic.\n\nThe Bitcoin Core project is just one implementation of the bitcoin protocol, but it wields tremendous power given it is the software run by a near-majority of the bitcoin network. It has earned this position by prioritizing security and being conservative on protocol changes.\n\nHistorically, changes to bitcoin consensus have been proposed by Bitcoin Core developers and have all been merged into the Bitcoin Core project. Recently, there has been a shift to non-Core developers proposing changes. It is unclear whether this impacts Core prioritizing these.\n\nOften people claim that Bitcoin Core has too much power as a few devs can “change bitcoin.” While this is clearly untrue, the opposite is true in that there is veto-like power to prevent changes.\n\nThus, alternative consensus clients are an important option. However, they are for extreme situations as it would be very difficult to gain widespread adoption. Low adoption can lead to a fragile network.\n\nThe project explores one such scenario in which a change is (partially) activated with miner hash rate but low adoption from nodes. This can lead to a sizable bounty forming tempting miners to create a chain split, and leaving bitcoin in a state of chaos. (let’s avoid this)\n\nIf a trading market develops between fork A and fork B, investors determine the value, but it turns out not all investors are equal. Self-custody individual investors have advantages over corporate and institutional investor segments.\n\nThere are many other future scenarios, and we’d love to see the project evolve to analyze these as it is intended to be a community project that serves bitcoin well into the future. The project is off to a great start with 2 dozen reviewers spanning all 6 stakeholder groups.\n\nIf anyone sees ways to improve this project please file an issue https://github.com/bitcoin-cap/bcap/issues, open a PR https://github.com/bitcoin-cap/bcap/pulls, or begin a discussion https://github.com/bitcoin-cap/bcap/discussions.\n\nThere is a PDF version in case that is easier to read or to share with others. https://github.com/bitcoin-cap/bcap/blob/main/bcap_v1.0.pdf \N 2111 \N 449767 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.452725118707 0 \N \N f 525874718 \N 4 150075700 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442561 2025-03-18 16:38:55.686 2025-03-29 22:39:52.194 \N My friends, _Broken Money_ book club part 5, post 2, [is up](https://stacker.news/items/334042). This one touches a familar topic in the btc mythos, so may be of more general interest than the book club discussions so far. https://example.com/ 17710 442191 442191.442561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7534968781148 0 \N \N f 75074578 \N 1 78539495 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434628 2025-03-12 04:42:06.796 2025-03-29 22:39:52.194 \N I don't know how formal this needs to be. I would just suggest new stackers post the questions they have in bitcoin beginners and tag the people who you think can help you most. There are tons of bitcoin resources out there to learn anything but it can also be overwhelming so it might be as simple as asking the questions and having knowledgeable stackers to point you in the right direction. \n\nI think that was @siggy47's original vision for the bitcoin beginners territory. https://example.com/ 19394 434610 434577.434610.434628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4648590420235 0 \N \N f 51682135 \N 1 63103543 0 f f \N \N \N \N 434577 \N 0 0 \N \N f \N 2025-03-19 06:20:53.643 f \N \N \N 0 0 0 0 1 0 0 457468 2025-03-28 14:21:16.802 2025-03-29 22:39:52.194 \N I think this is completely and totally fair to say, you're right. I like avoiding conversations, but there's less relief from anxiety in that, I find. What's harder to do is start the conversation, _and_ it's more rewarding. https://example.com/ 9330 457324 457324.457468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3975303414729 0 \N \N f 21151923 \N 1 236098025 0 f f \N \N \N \N 457324 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449570 2025-03-23 12:42:11.941 2025-03-29 22:39:52.198 \N I seriously can't answer that......too many good ones + at this stage of investing, you never know what entrepreneurs and their teams do to break through walls and create value. In previous investments, sometimes it was the company I thought had little chance or was against the wall, that ended up pivoting and creating the most value. https://example.com/ 2519 449559 449559.449570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5351051941176 0 \N \N f 73894838 \N 2 84689100 0 f f \N \N \N \N 449559 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402039 2025-02-13 14:22:23.092 2025-03-29 22:39:52.198 \N What are your thoughts on raising up and trusting pseudonymous developers for bitcoin core?\nYou have warranted respect with your name and face. Could you have done all that you have if you were a nym? https://example.com/ 5752 402031 402000.402031.402039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0860005881018 0 \N \N f 402843035 \N 3 223273663 0 f f \N \N \N \N 402000 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402917 2025-02-14 09:03:07.107 2025-03-29 22:39:48.905 NIP-15 merged! \N https://github.com/nostr-protocol/nips/blob/master/15.md 12049 \N 402917 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 13.2563136189651 0 \N \N f 380972592 \N 3 215201081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 403028 2025-02-14 11:32:03.178 2025-03-29 22:39:52.194 \N Bounties always get my attention. It seems like they should be a bigger part of SN. At the same time, I've never posted one myself. I'm trying to figure out why. \n\nZapping is mostly something I do after I read a post or comment. Bounties are kinda like pre-zapping (agreeing to zap before you read) but also not because you don't have to assign the bounty until you are satisfied it has been fulfilled. \n\nI wonder if I haven't done any bounties because it feels more like paying while zapping feels more like tossing some money to a street musician. Paying doesn't feel as good. It's more serious. (I don't think there's anything wrong with paying for a thing, just examining why it feels different than zapping.)\n\nI agree with @Undisciplined and @jasonb that it would be cool if you could find all open bounties in one place (and sort them by value or something). I often give a shot to bounties people post that are in my wheelhouse and I would probably do more of this if there was an easy way to check what bounties are open. https://example.com/ 16939 403009 401824.401884.403009.403028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.562556541864 0 \N \N f 239838023 \N 2 133166324 0 f f \N \N \N \N 401824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437302 2025-03-14 12:35:49.433 2025-03-29 22:39:52.194 \N Perfect opportunity for full RBF transactions. My node is running full RBF. Peter Todd's node is running full RBF. If your tx is stuck and you need to increase the fee so it'll get through, connect to one of our nodes so a miner running full RBF might see it. https://example.com/ 960 437287 437218.437287.437302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8239314750133 0 \N \N f 181734393 \N 2 63768095 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447267 2025-03-21 18:30:34.099 2025-03-29 22:39:52.194 \N I've learned a lot!!\nProbably the biggest one is that the "inbound liquidity problem" isn't actually about liquidity being scarce. It's about how the network is communicating. \n\nIf liquidity was scarce, we'd see the yields from routing nodes explode higher. Instead, anyone that wants to get some inbound liquidity can quickly find someone that's selling it and buy a channel from them. With the network being so decentralized, the biggest needs are actually in coordination and communication. https://example.com/ 15091 447251 447251.447267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.68161668806398 0 \N \N f 442087570 \N 3 122975700 0 f f \N \N \N \N 447251 \N 0 0 \N \N f \N 2025-03-28 12:03:07.806 f \N \N \N 0 0 0 0 1 0 0 421118 2025-03-01 12:11:23.525 2025-03-29 22:39:52.194 \N We're on the boat, but still docked. \n![1000000619.jpg](https://m.stacker.news/21258) https://example.com/ 21271 420944 420620.420753.420944.421118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9394001039386 0 \N \N f 5579273 \N 1 161932147 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438795 2025-03-15 22:59:54.04 2025-03-29 22:39:52.194 \N Awesome davis! This is why we build. Looking forward to seeing your node on the network https://example.com/ 11716 438414 438414.438795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5298447127193 0 \N \N f 192454017 \N 2 84568564 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433870 2025-03-11 13:20:46.847 2025-03-29 22:39:52.194 \N Run your node over TOR and I2P. Many threads here on SN about it with good details if you're looking for a place to get started. https://example.com/ 1047 433588 433588.433870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1950811438078 0 \N \N f 57951453 \N 1 151103647 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 220244 2024-08-24 22:11:52.331 2025-03-29 22:39:48.906 What was the happiest day of your life? \N \N 844 \N 220244 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.6848048462332 0 \N \N f 212309498 \N 1 180558028 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454615 2025-03-26 14:18:56.815 2025-03-29 22:39:48.906 Mass Media doesn't care about speech In the past, I stated that [infocracy was the way now we actually live](https://stacker.news/items/560694). Seems to be simple solutions about how we can _democratize_ a lot of things and yet, today we're facing several crisis that is not product of out imagination. As a matter of fact, we have today one solution: bitcoin is the solution to one problem: centralized trust. \n\nBut in media we have a much bigger crisis and the ones _helping_ to build solutions are exactly the ones who are destroying the democracy to turn in a self-censorship-stalin-alike system. Let me give you some examples of why should we continue talking about this, how Stacker News is a good antidote but most important thing at all: keep writing folks.\n\n### Why should we talking about this?\n\nThe lack of trust is real, as @TomK [put it in previous posts](https://stacker.news/items/359278), people don't read anymore news but public relations' memo of something or someone. The news was all about find the truth but today and thanks to themselves (the same media), people are trying to take alternative means of inform themselves about facts and opinions. The Global Agenda is not something that goes in conspiraccies territories anymore, it's real. \n\n![](https://m.stacker.news/35742)\n\nAnyone watching goverments trying to ban bitcoin in the past knows that agendas about bitcoin are written and central banks are talking about it. Today, the 6102 Executive Order takes the form of strengthen KYC-AML policies, enforcing use of one address to all our transactions and a big etc. Warren may be a clown but a clown with the power of being an asshole to give you bad experiences using bitcoin.\n\n### Freedom of speech is confused with say anything \n\nIn other days, when you have a _revolutionary idea_, the goverment sent their judicial-policial-military force on behalf of the greater common and killed anyone who thinks otherwise. Shifting one regime for another, they realized and specially after WWII that people shpuld have the freedom to say what they think about their goverments because in some extend, that is the equivalent to point it out some bugs and errors in the system we produce: _democracy.exe_.\n\nToday, social media companies took some stalinist practices Coetzee wrote about it many years ago. When the newspaper companies tried to keep their social power over people and couldn't, goverment figured it out that they're not the target anymore but social media companies. How can they prevent or have partial control? Well, they establish lines, requirements, protocols to follow in order of not disseminate _hate speech_ and on behalf _democracy_, they tell you that speak against COVID, against democrats, against `(X)` situation you're damaging the system.\n\nSo, how to enforce then to speak? Well, you can but don't speak of the system, _tell people something_, ask them _what's happening_, share your personal photos all over internet to be heard, speak of anything, speak with everyone...hell, even speak of things you don't know. The fact that you don't know sH1t about something is secondary, you just need to produce content, because your goal in social media and in this new system is to express yourself every day, night and even before you go to bed.\n\n#### Why, you might ask dear reader, _why people need to speak at social media platforms_?\n\nThe answer is simple: you are the product. See, Meta, Google et all needs to sell ads, as today is their main income source. So, everytime you speak/write/share multimedia, they planning to put their ad above, int the middle of your content. The reward for you is that the more you speak, the better they sell but in return, they give you pennies. Also remember not to say anything they say is wrong, don't produce content against a certain line nor the music industrie, which we'll talk about it in the future. Speak badly and your content goes down, that's it.\n\n### Stacker News fixes incentives\n\nStacker News gives you different incentives to put your words and mouth in the same place. And it's because this place understand something: nothing is free. Yes, free speech here is allowed but free content? Hewll no. Say something has a cost and without the cost, companies abosorb that, giving them partial access to the desitions because they need to sell more, understand the algorythm is important. Here? We have territories and people put money to publish and sometimes expect the reward. You publish about technical analysis about some memecoin and nobody gives you two pennies and that's not an echo chamber, here we don't have time to read noises, we limite our times expecting to read something that help my life. Gambling doesn't count as something..healthy for example.\n\nSo, in summary:\n\n- Keep writing here, where reward and cost are balanced\n- Write long posts, here I am trying to make one and giving preference to those.\n- Stack sats. Be humble and keep learning. \N 882 \N 454615 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9335124020868 0 \N \N f 97482932 \N 1 141217691 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 392804 2025-02-05 14:41:27.017 2025-03-29 22:39:48.906 Don’t put a Nostr ad on a LED billboard! But it looks pretty nice.. My advice: don’t do marketing for Nostr. Have you ever seen advertisments for a protocol? It doesn’t make any sense ;-)\n\nI’ve created a repository where you can find all the files and assets I used: https://gitlab.com/sebastix-group/nostr/nostr-ads. I would like to encourage everyone to re-use these for other (new) marketing purposes which the protocol doesn’t need 😉 I would love to see other weird places with Nostr ads.\n\nVideo: https://nstore.nostrver.se/92e4a9bd39d4e1069602d09e076e9f75611e180fb9c4b1966ff795605b418d2c.mp4\nhttps://nstore.nostrver.se/de756ec9ef8cdfc628bcda6990cf1b979fbda339e8f69452de4edcda80fa6e31.jpeg\nhttps://nstore.nostrver.se/70671bf1dd90221d7a8fa46d6b3e7c6b4fb94ea28dca347478e7ea456610da2c.jpeg\n\nAnd for those who are asking of this is real. YES! It's real. You can verify it yourself by visiting this location: https://www.google.nl/maps/@51.5542896,4.5605912,3a,75y,25.08h,92.09t/data=!3m6!1e1!3m4!1sJawm7eqppFco4HiCZ4pLrQ!2e0!7i16384!8i8192?coh=205409&entry=ttu&g_ep=EgoyMDI0MDkwMi4wIKXMDSoASAFQAw%3D%3D \N 20596 \N 392804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.0713806825354 0 \N \N f 19057592 \N 1 230499593 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423706 2025-03-03 14:49:23.879 2025-03-29 22:39:52.194 \N There is certain in-elasticity across all payment sizes. This is why with growing proportional fee betweenness-centrality decreases rapidly. But if we look more carefully at larger payments starting from 1M sats, betweenness-centrality doesn't really drops between 2 and 8 sats per million. This is the place where we could maximize fee revenue and this is especially good because we measured it for very large payments. \n\nI am sorry I wasn't clear because my intention was to write just fast. I couldn't spend more time on this post, sorry. https://example.com/ 8535 423362 423362.423706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.943478464752 0 \N \N f 344690837 \N 2 237328289 0 f f \N \N \N \N 423362 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447900 2025-03-22 08:51:51.096 2025-03-29 22:39:52.194 \N My thoughts: would you like to use your own Matrix server for collaboration and not Discord as Discord is centralized? https://example.com/ 13878 447892 447892.447900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5737792386253 0 \N \N f 406596067 \N 2 45889089 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436306 2025-03-13 13:07:45.621 2025-03-29 22:39:52.195 \N ![wojak](https://preview.redd.it/72gkzyo5hk2b1.jpg?width=768&auto=webp&v=enabled&s=2a1684fb6986b778191a61cd5a07c948e4f94650) https://example.com/ 1745 436157 435657.435728.435920.435925.436157.436306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6265017562546 0 \N \N f 203266419 \N 1 198264965 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 06:27:28.092 f \N \N \N 0 0 0 0 1 0 0 448582 2025-03-22 17:45:18.624 2025-03-29 22:39:52.195 \N What I was doing for many years prior, making short films for businesses and stacking sats.\n\nPerhaps I would already have a child by now... but that's ok, that's what's coming next.\n\nAnd the film, if it reaches the masses will help make the transition from fiat to Bitcoin smoother and better for me and my children.\n\nSo no regrets! https://example.com/ 7899 448544 448526.448544.448582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8932401771763 0 \N \N f 222764136 \N 1 127533231 0 f f \N \N \N \N 448526 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458248 2025-03-29 06:20:37.341 2025-03-29 22:39:52.195 \N As we approach the end of the week,, I hope we all inch our way to our goals. If you don't have goals, pick a few! it makes a big difference on your behavior. Don't let others pick goals for you, though. That's a path of emotional self-destruction. https://example.com/ 21058 458241 458227.458241.458248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.44214720355499 0 \N \N f 901582450 \N 10 90077250 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436635 2025-03-13 18:25:45.162 2025-03-29 22:39:52.195 \N If you truly go down the rabbit hole of understanding why bitcoin works it will open your mind to many flaws in popular political views. It is interesting to watch this happen to progressives. Many progressives have core beliefs I share but the difference is that most progressives believe the garbage their politicians say. Bitcoin is good for people. Period. It is not good for rulers or rent seekers. The problem is most people don't understand that their rulers are evil. https://example.com/ 15045 436561 436523.436561.436635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.62080996474221 0 \N \N f 174247364 \N 1 130759137 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 2025-03-20 12:00:20.544 f \N \N \N 0 0 0 0 1 0 0 457766 2025-03-28 17:16:37.673 2025-03-29 22:39:48.906 Signal’s New Usernames Help Keep the Cops Out of Your Messages ## Excerpt\n\n> Ephemeral usernames instead of phone numbers safeguard privacy — and makes the Signal messenger app even harder to subpoena. https://theintercept.com/2024/03/04/signal-app-username-phone-number-privacy/ 16970 \N 457766 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 17.9682131756619 0 \N \N f 453724582 \N 3 37405388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448319 2025-03-22 14:43:23.459 2025-03-29 22:39:52.195 \N ![](https://m.stacker.news/66570)\n\nFinally hit 1M sats v4v for the stacker news pod.\n \nWorks out to about 6k sats per episode.\n\nThis is proof for:\nLightning works \nPeople will give a little if they so choose\n\nOn to the next million! Thank you @Car and @k00b for bringing funny but knowledgeable bitcoin discussion! https://example.com/ 825 447761 447761.448319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.545713909130185 0 \N \N f 925402077 \N 7 207400797 0 f f \N \N \N \N 447761 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 443282 2025-03-19 08:34:52.86 2025-03-29 22:39:52.195 \N At minimum add NIP-05 :) https://example.com/ 20479 443105 443105.443282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.055553256987 0 \N \N f 596832617 \N 5 160035407 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402078 2025-02-13 14:42:25.101 2025-03-29 22:39:52.195 \N Generic advice for Bitcoin/Lightning companies? https://example.com/ 14195 402058 401283.401346.401403.401520.402058.402078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.91829541137555 0 \N \N f 565498974 \N 4 27137942 0 f f \N \N \N \N 401283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407678 2025-02-18 09:42:09.408 2025-03-29 22:39:52.195 \N >a place where I can earn cheap sats\n\nYou are wrong. This is not an assmilking platform.\n\n[![darth-SN-TOLD-YOU.jpg](https://i.postimg.cc/mgwHyfX7/darth-SN-TOLD-YOU.jpg)](https://postimg.cc/rDDsqbLp)\n\n*and before anybody will say that I am an asshole, is better that I am the one telling you the truth in your face from the beginning instead of fooling you. Yes... I am that insufferable guy telling the hard truth.* https://example.com/ 11165 407673 407018.407063.407581.407583.407586.407663.407668.407671.407673.407678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4075025540335 0 \N \N f 120399123 \N 1 182389840 0 f f \N \N \N \N 407018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430863 2025-03-09 13:20:23.381 2025-03-29 22:39:52.195 \N Dropping by to say thank you @k00b for stacker.news. This community is amazing.\n\n(Just read https://stacker.news/items/182682) https://example.com/ 14791 430836 430607.430617.430641.430670.430674.430836.430863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1930645744133 0 \N \N f 202680388 \N 1 146725916 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410397 2025-02-20 13:13:17.907 2025-03-29 22:39:52.196 \N Day 91 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 8459 410187 410187.410397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2443819547097 0 \N \N f 115655863 \N 1 33771092 0 f f \N \N \N \N 410187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432085 2025-03-09 23:12:00.487 2025-03-29 22:39:52.196 \N Absolutely not. This Fiat mindset of "equality of outcome" needs to end. Bitcoin provides "equality of opportunity". Everyone in the world has had the opportunity to stack sats for the last decade. Everyone in the world has a chance to stack sats today. Yet, people have high time preference and choose to gamble in shitcoin casinos. Luck, of course, plays a role. Such is life. Life is unfair. \n\n Satoshi's coins are Satoshi's forever just like mine are mine forever. End of story. https://example.com/ 10862 430892 430892.432085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5772467264517 0 \N \N f 57256413 \N 1 232363265 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 354465 2025-01-03 05:27:29.18 2025-03-29 22:39:52.197 \N Thanks, that's sort of what I imagined was happening, but I'm still new to managing a lightning node. https://example.com/ 21051 353322 353322.354465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6413568407425 0 \N \N f 441206851 \N 2 140278557 0 f f \N \N \N \N 353322 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402799 2025-02-14 03:58:36.215 2025-03-29 22:39:52.197 \N Amazing article, love it.\n\nThe writer is probably pro-bitcoin and thought "how can I get the people who religiously dislike Bitcoin to read an article about the benefits of Bitcoin?"\n\nGenius. https://example.com/ 4166 397192 397192.402799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6395189036313 0 \N \N f 200433697 \N 2 209743913 0 f f \N \N \N \N 397192 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434389 2025-03-11 21:04:51.571 2025-03-29 22:39:52.198 \N Pet peeve: "I'm gonna steelman this"... proceeds to strawmanning. https://example.com/ 16956 433589 433588.433589.434389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0662089445122 0 \N \N f 96440278 \N 1 102681412 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443390 2025-03-19 10:16:57.465 2025-03-29 22:39:52.198 \N This seems overly pessimistic. 100M users in 15 years may not seem like a lot if you're talking about a tech company (even though it actually is a lot)... but Bitcoin is money which has probably the strongest network effect of any technology out there, so you can't really judge things in the same way.\n\nWhen I look at Bitcoin I see a real technological and social achievement. A public decentralized ledger has been running for 15 years with almost zero downtime and *miraculously* everyone in the world agrees on the state of the ledger. Not only that, peoples' willingness to pay for the asset traded on this ledger has gone from <$1 to $30,000. \n\nSounds like a success so far to me. https://example.com/ 21485 443372 443372.443390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.80182432521978 0 \N \N f 692571667 \N 8 97751657 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 06:41:53.894 f \N \N \N 0 0 0 0 2 0 0 404332 2025-02-15 19:20:37.58 2025-03-29 22:39:52.198 \N I'm working on the custodial wallet sudonym: https://sudonym.app\nWe've got lightning addresses, NFC support, bitcoin & fiat balances etc.\nWould love to get some new beta testers!\nhttps://testflight.apple.com/join/0iNabINA https://example.com/ 9845 404242 404136.404203.404242.404332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.61550288049111 0 \N \N f 498322260 \N 4 168499954 0 f f \N \N \N \N 404136 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446649 2025-03-21 11:59:17.007 2025-03-29 22:39:52.199 \N Essentially there is no limit. Even a single channel can handle an infinite number of transactions back and forth. https://example.com/ 2361 446456 446456.446649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.49222533946 0 \N \N f 376377863 \N 4 174982008 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444320 2025-03-19 19:30:26.368 2025-03-29 22:39:52.199 \N May the Force be with you. https://example.com/ 17321 444168 444168.444320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5042136404819 0 \N \N f 70115039 \N 1 111608132 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424619 2025-03-04 09:14:54.173 2025-03-29 22:39:52.194 \N Your title does not even come close to corresponding with the title of the chart.\n\nThe chart is saying 6.8% of cryptocurrency transaction volume in Sub-Saharan Africa is through P2P exchanges. \n\nThat does not have any relevance to "bitcoin adoption". Your title could say that Sub-Saharan Africa leads the world for P2P exchange adoption, but the way you have it is misworded. https://example.com/ 1428 424596 424591.424596.424619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.59893618038023 0 \N \N f 173537511 \N 1 147520293 0 f f \N \N \N \N 424591 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433995 2025-03-11 14:55:47.968 2025-03-29 22:39:52.194 \N Congrats to @TNStacker. Winner of the Meme Monday 10k sats bounty with this meme:\n![](https://m.stacker.news/41265) https://example.com/ 18529 433942 433828.433942.433995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.42990809274 0 \N \N f 96453664 \N 1 138154730 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434658 2025-03-12 05:34:53.183 2025-03-29 22:39:52.194 \N This Meme Monday has been 🔥🔥🔥🔥 it was so hard to pick our 2nd and 3rd place winners that we decided to keep things non-biased, and we'll be choosing the 2nd and 3rd place as voted by the "top" filter on this thread - until we have come up with a better strategy for choosing our winners!\n\n@kr it looks like the winners at the time of writing will be:\n\n1st @MathiuJ https://zap.meme/p/sn/MathiuJ \nwith https://zap.meme/memes/view/8559\nand https://zap.meme/memes/view/8490\n(very cheeky indeed, submitted two memes in one post 😄)\n\n2nd @Hat https://zap.meme/p/sn/Hat\nwith https://zap.meme/memes/view/8459\n\n3rd @MathiuJ https://zap.meme/p/sn/03d1ebdca3 \nwith https://zap.meme/memes/view/8475\n\n---\n\nAnd just to finish with a shameless promo:\n\nThese stackers have already claimed their profiles! You rock!\n\n@MathiuJ claim your profile: https://zap.meme/p/sn/MathiuJ\n@SpaceHodler claim your profile: https://zap.meme/p/sn/SpaceHodler\n@jowo claim your profile: https://zap.meme/p/sn/jowo\n@go claim your profile: https://zap.meme/p/sn/go\n@corndalorian claim your profile: https://zap.meme/p/sn/corndalorian\n@Turnspit_Dog claim your profile: https://zap.meme/p/sn/Turnspit_Dog\n@bitcoin_rationalist claim your profile: https://zap.meme/p/sn/bitcoin_rationalist\n@Rockedf claim your profile: https://zap.meme/p/sn/Rockedf\n@spot claim your profile: https://zap.meme/p/sn/spot\n@hasherstacker claim your profile: https://zap.meme/p/sn/hasherstacker\n@TheBTCManual claim your profile: https://zap.meme/p/sn/TheBTCManual\n \nTo all you meme lords who haven't claimed your accounts yet... join the club!\n\n(if you wanna wait for Nostr login, it should drop this week or next)\n \n@2023 claim your profile: https://zap.meme/p/sn/2023\n@03d1ebdca3 claim your profile: https://zap.meme/p/sn/03d1ebdca3\n@Hat claim your profile: https://zap.meme/p/sn/Hat\n@toxic claim your profile: https://zap.meme/p/sn/toxic\n@SATurDay claim your profile: https://zap.meme/p/sn/SATurDay\n@Brrr claim your profile: https://zap.meme/p/sn/Brrr\n@bedifferent claim your profile: https://zap.meme/p/sn/bedifferent\n@DeliveryGuy claim your profile: https://zap.meme/p/sn/DeliveryGuy\n@SATsStandard claim your profile: https://zap.meme/p/sn/SATsStandard\n@Orangepilled claim your profile: https://zap.meme/p/sn/Orangepilled\n@pacman claim your profile: https://zap.meme/p/sn/pacman\n@BitByBit21 claim your profile: https://zap.meme/p/sn/BitByBit21\n@Cowboy claim your profile: https://zap.meme/p/sn/Cowboy\n@0xbitcoiner claim your profile: https://zap.meme/p/sn/0xbitcoiner\n@Eobard claim your profile: https://zap.meme/p/sn/Eobard\n@RagstoRiches claim your profile: https://zap.meme/p/sn/RagstoRiches\n@Futurecurrency claim your profile: https://zap.meme/p/sn/Futurecurrency\n@StayhumbleStacksats claim your profile: https://zap.meme/p/sn/StayhumbleStacksats\n@Infinity claim your profile: https://zap.meme/p/sn/Infinity\n@mSats claim your profile: https://zap.meme/p/sn/mSats\n@lust claim your profile: https://zap.meme/p/sn/lust\n@planB claim your profile: https://zap.meme/p/sn/planB\n@Proofofwork claim your profile: https://zap.meme/p/sn/Proofofwork\n@Satoshis claim your profile: https://zap.meme/p/sn/Satoshis\n@Gian claim your profile: https://zap.meme/p/sn/Gian\n@oliverweiss claim your profile: https://zap.meme/p/sn/oliverweiss\n@PositiveEnergy claim your profile: https://zap.meme/p/sn/PositiveEnergy\n@Squeeze_every_Sat claim your profile: https://zap.meme/p/sn/Squeeze_every_Sat\n@DanielAngelovBG claim your profile: https://zap.meme/p/sn/DanielAngelovBG\n@Longtermwizard claim your profile: https://zap.meme/p/sn/Longtermwizard\n@Giveme5 claim your profile: https://zap.meme/p/sn/Giveme5\n@StudyBITCOIN claim your profile: https://zap.meme/p/sn/StudyBITCOIN\n@02399d3080 claim your profile: https://zap.meme/p/sn/02399d3080\n@SatoshiNakanodo claim your profile: https://zap.meme/p/sn/SatoshiNakanodo\n@satoshiplanet claim your profile: https://zap.meme/p/sn/satoshiplanet\n@benwehrman claim your profile: https://zap.meme/p/sn/benwehrman\n@orange claim your profile: https://zap.meme/p/sn/orange\n@Believe claim your profile: https://zap.meme/p/sn/Believe\n@UCantDoThatDotNet claim your profile: https://zap.meme/p/sn/UCantDoThatDotNet\n@stimmy claim your profile: https://zap.meme/p/sn/stimmy\n@HODLbitcoin claim your profile: https://zap.meme/p/sn/HODLbitcoin\n@WhyBitcoinOnly claim your profile: https://zap.meme/p/sn/WhyBitcoinOnly\n@kurszusz claim your profile: https://zap.meme/p/sn/kurszusz\n@Hacker claim your profile: https://zap.meme/p/sn/Hacker\n@21m8 claim your profile: https://zap.meme/p/sn/21m8\n@energy claim your profile: https://zap.meme/p/sn/energy\n@Wearesatoshin claim your profile: https://zap.meme/p/sn/Wearesatoshin\n@Scoresby claim your profile: https://zap.meme/p/sn/Scoresby\n@e3b5f43280 claim your profile: https://zap.meme/p/sn/e3b5f43280\n@lightwalker claim your profile: https://zap.meme/p/sn/lightwalker\n@gmd claim your profile: https://zap.meme/p/sn/gmd\n@BitcoinIsTheFuture claim your profile: https://zap.meme/p/sn/BitcoinIsTheFuture\n@02a55c2f66 claim your profile: https://zap.meme/p/sn/02a55c2f66\n@nabingyawali0 claim your profile: https://zap.meme/p/sn/nabingyawali0\n@ez claim your profile: https://zap.meme/p/sn/ez\n@Roll claim your profile: https://zap.meme/p/sn/Roll\n@Bitcoinmaxi claim your profile: https://zap.meme/p/sn/Bitcoinmaxi\n@BitSATs claim your profile: https://zap.meme/p/sn/BitSATs\n@Lux claim your profile: https://zap.meme/p/sn/Lux\n@Bepositive claim your profile: https://zap.meme/p/sn/Bepositive https://example.com/ 20454 434401 433889.434330.434401.434658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4937533461236 0 \N \N f 195001729 \N 1 26694918 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 2025-03-19 03:44:35.477 f \N \N \N 0 0 0 0 1 0 0 443335 2025-03-19 09:13:58.609 2025-03-29 22:39:52.195 \N ![](https://www.zapread.com/i/9QD) https://example.com/ 690 443286 443105.443282.443286.443335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1643729133449 0 \N \N f 423918727 \N 3 137902231 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404477 2025-02-15 22:44:17.435 2025-03-29 22:39:52.199 \N Day 13 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 10862 404364 404270.404364.404477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7264228702719 0 \N \N f 64912796 \N 1 241820703 0 f f \N \N \N \N 404270 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434026 2025-03-11 15:13:37.823 2025-03-29 22:39:52.199 \N >I wonder how many stories like this are happening throughout the world?\n\nQuite many, but not all are made public, like you did.\n\n>It has been a good week\n\nYeah I know that feeling, when finally a good old friend is listening your advice about Bitcoin and finally did the important step: going down the rabbit hole. You feel like you did a huge good thing for the entire world and you are in peace with yourself.\n\n>my friend will need to convert some of his bitcoin to fiat to keep the lights on,\n\nThat is not a problem at all as long his mind is focused on how to reduce that dependency of fiat.\n\n>he's already trying to figure out how to operate on a bitcoin standard.\n\nThat's damn good ! Very few new merchants think like that. Wonderful use case for Bitcoin.\n\n>I knew my limitations in trying to give my friend advice\n\nPlease do not keep yourself out. Yes we all have limitations, but teaching others is how we make our own knowledge stronger and more valuable. Because from the questions you and him asked previously it bring up some quite challenging aspects:\n- what exactly is the business financial flow and how can be adapted to bitcoin\n- how they want to use Bitcoin especially after receive it\n- what technical knowledge they have and infrastructure\n- short terms plans and long terms plans\n\nAs I said here many times: when you onboard somebody new, especially a business (not a simple individual), first thing you must listen carefully what they want / need and not blindly suggest the first solution that comes into your mind. Not all solutions can be suitable for that use case.\n\nWonderful story you will have to tell to your grandkids Siggy!\n\n![](https://m.stacker.news/67292) https://example.com/ 21051 433844 433844.434026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.17805936795969 0 \N \N f 167448336 \N 2 30211194 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 2025-03-18 19:26:11.822 f \N \N \N 0 0 0 0 2 0 0 3106 2022-10-25 06:33:59.36 2025-03-29 22:39:52.2 \N When bitcoiner dismiss things like other people dismiss bitcoin https://example.com/ 16296 3104 3061.3066.3104.3106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8507758996949 0 \N \N f 506133656 \N 3 14219730 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403708 2025-02-15 05:52:40.859 2025-03-29 22:39:52.194 \N "which was never designed to catch fraud anyway." Exactly. This isn't a good system that got off the rails; it was always a gatekeeper system that ensured that new insights had to stay in line with current orthodoxy.\n\nWhen I submit something for peer review, there are two options: I get youg reviewers (who want the exposure and the glory), or I get old reviewers who have the reputation and like to engage in "field control". The young ones are usually dogmatic and eager to prove their worthiness; they will tear you apart over BS to prove how much they've read to the journal editors. The old ones have a legacy to defend, and want to make sure that "what they found out" is not abandoned by snotty youth. Either way, if your paper goes against orthodoxy,. it has a hard time. Worse if it tries to use insights from one side of the subject to augment another side of the subject, because in all likelihood, the Old Ones have mad a career of trashing that other side. The editors will likely send the article to one "representative" of each side, each one of which will trash the half of the paper you're trying to adapt to their field. Worse if you're challenging a "basic understanding" in that field; then, all of them will trash you.\n\nThis is old news, of course. Read Kuhn about the Structure of Scientific Revolutions, still unmatched, about how science is generational and political to defend given orthodoxies; though he's optimistic about how revolutions arise when generations change.\n https://example.com/ 1632 402188 402188.403708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4278855666369 0 \N \N f 171339184 \N 2 18509474 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423439 2025-03-03 11:23:04.222 2025-03-29 22:39:52.195 \N XRP is a meme, and i hope this post is too https://example.com/ 650 423438 423438.423439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.27083047845001 0 \N \N f 200479770 \N 3 107600888 0 f f \N \N \N \N 423438 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444102 2025-03-19 17:01:22.254 2025-03-29 22:39:48.907 How to create a local alternative to Bitrefill? Hi everyone, opportunities offered by Bitrefill are now very relevant for Russia and Belarus, but the service has removed all ways to pay for something with bitcoin for these countries.. Until 2022, various gift cards and phone number top-ups were available for Russia and Belarus on this site, making it easier to use Bitcoin where there is no way to use it directly (yet).\n\nI realize that there are sanctions and all that, but to delist these countries and make life more difficult for Bitcoiners who would like to spend their sats, but to do so is now much more difficult.\n\nIn this regard, I have a question for the community. How can we create an alternative for citizens of these countries so that we can use bitcoin in our daily lives and use fiat as little as possible? I have never done anything like this and I don't know where to start, any help would be very valuable. \n\nI would really like to make maybe a separate site with offers to recharge phone numbers, buy gift cards exclusively for citizens of Russia and Belarus so that we don't have to rely on Bitrefill anymore. \N 11491 \N 444102 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 15.5911523659073 0 \N \N f 185670483 \N 1 180500942 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436030 2025-03-13 08:49:25.108 2025-03-29 22:39:52.195 \N I disagree. Friends/partners/whatever. It's humans helping humans. Even if they're only helping for returns, they're helping me do something I can't do on my own and I want them to get returns. Something that I hope benefits us all.\n\nI'm done building things alone. https://example.com/ 16177 436028 436028.436030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.03982643624771 0 \N \N f 25704201 \N 1 86188827 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:53:39.225 f \N \N \N 0 0 0 0 1 0 0 436833 2025-03-13 23:50:09.093 2025-03-29 22:39:52.195 \N I agree. Bitcoin has been around long enough that established bitcoin centric businesses should be able to handle the volatility. If necessary, hedging is an established business practice. Farmers and commodity providers have been doing this for centuries. https://example.com/ 21021 436683 436683.436833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.78341249933936 0 \N \N f 651352703 \N 4 76822367 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443886 2025-03-19 15:03:31.361 2025-03-29 22:39:52.195 \N I do not suggest rolling distros. If I was forced then Manjaro. I have tried hundreds of distros and my best advice for anyone wanting to run Linux as a primary desktop OS as follows:\n\n- Always go for LTS if offered\n- Never bother with bleeding edge rolling distros\n\nJust install Debian where you can. Don't make life harder than it needs to be. https://example.com/ 1617 443806 443295.443781.443806.443886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6547161665178 0 \N \N f 188698953 \N 2 105444016 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444213 2025-03-19 18:13:37.246 2025-03-29 22:39:52.195 \N I like Phoenix, you just gotta know to make a big enough channel to be reasonable for a spending wallet that you think you'll never exceed and then from there you don't pay that 1% again (unless the channel closes for some reason) https://example.com/ 2088 444207 444114.444132.444143.444150.444207.444213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8887669277431 0 \N \N f 826103395 \N 6 197088260 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 191309 2024-06-29 06:31:47.918 2025-03-29 22:39:52.195 \N First was enthusiastic about the possibilities described in the article: https://ambosstech.medium.com/lightning-balance-sharing-and-network-statistics-32e687a4db25, but thinking just a little this is clearly the living hell of surveillance capitalism.\n\nA short thread:\nhttps://twitter.com/openoms/status/1585526779648917511\n \nWe need a simple app for the cursed LND nodes to share random data quickly. https://example.com/ 9026 190866 190866.191309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3246031393506 0 \N \N f 421195231 \N 2 190675405 0 f f \N \N \N \N 190866 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448015 2025-03-22 10:48:38.173 2025-03-29 22:39:48.907 SN Saturday Newsletter 12/7/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Ecash on Bitcoin - Gandlaf thoughts on ecash, after working on cashu for 2 years](https://stacker.news/items/793450)\n - [@gandlaf](https://stacker.news/gandlaf) shares a sober, optimistic overview of ecash, after working on cashu for 2 years.\n - 4k sats \\ 29 comments \\ [@supratic](https://stacker.news/supratic)\n2. [Turning Tires into Bitcoin](https://stacker.news/items/793375)\n - Bitcoin miners are recycling old tires, turning them into rubber that can be reused, and mining using the off-gassed fuel which pays for the recycling.\n - 2.6k sats \\ 250k boost \\ 20 comments \\ [@offordscott](https://stacker.news/offordscott)\n3. [Legend of the Snail | Winner Announcement | $103,129](https://stacker.news/items/795694)\n - As legend has it, a snail would appear in the Stacker Saloon every day until Bitcoin broke $100k. $100k has come and [@south_korean_ln](https://stacker.news/south_korean_ln) predicted the date best so wins a prize.\n - 2.2k sats \\ 31 comments \\ [@oracle](https://stacker.news/oracle)\n4. [Cobra says developers are working to activate CTV](https://stacker.news/items/789753)\n - A [UASF](https://bitcoin.stackexchange.com/questions/51901/what-is-the-user-activated-softfork-uasf-proposal-how-do-its-risks-compare-to) to activate [CTV](https://bitcoinops.org/en/topics/op_checktemplateverify/) is in the works according to [Cobra Bitcoin](https://twitter.com/CobraBitcoin), admin of [bitcoin.org](https://bitcoin.org/).\n - 1.6k sats \\ 26 comments \\ [@Rsync25](https://stacker.news/Rsync25)\n5. [Trying to gain rough technical consensus on covenant proposals](https://stacker.news/items/795055)\n - [@theonevortex](https://stacker.news/theonevortex) is aggregating developer sentiment on various [covenant proposals](https://bitcoinops.org/en/topics/covenants/) to help guide consensus.\n - 6.9k sats \\ 9 comments \\ [@theonevortex](https://stacker.news/theonevortex)\n\n##### Top AMAs\n1. [I'm Saba - Founder and CEO of Workit App - AMA](https://stacker.news/items/796746)\n - 18.5k sats \\ 30k boost \\ 144 comments \\ [@Workit_LN](https://stacker.news/Workit_LN)\n2. [LNbits AMA 🚀](https://stacker.news/items/794295)\n - 15.9k sats \\ 94 comments \\ [@blackcoffee](https://stacker.news/blackcoffee)\n3. [I am Bitcoin Shooter, I spent 2 years making No More Inflation, AMA!](https://stacker.news/items/798405)\n - 19.3k sats \\ 103 comments \\ [@Shooter](https://stacker.news/Shooter)\n\n\n[**all AMAs**](https://stacker.news/~AMA/top/posts/week)\n\n##### Don't miss\n- [When did you realize that wokeness was a real threat? My story...](https://stacker.news/items/798424)\n- [The fascinating security model of dark web marketplaces](https://stacker.news/items/790498)\n- [Quick Dive into South Korean History & Why The Presidents Move Opened Old Wounds](https://stacker.news/items/793820)\n- [How Bitcoin Scales w/o Forks: the Lightning, Liquid, On-Chain Triangle](https://stacker.news/items/790844)\n- [Finding peace with never being a whole coiner](https://stacker.news/items/796090)\n- [Bitcoin Breaks 100K!](https://stacker.news/items/795559)\n- [Music Has No Economic Value; Convince Me Otherwise (TDE, Joakim Book)](https://stacker.news/items/796401)\n- [United Healthcare CEO Shot & Killed](https://stacker.news/items/794444)\n- [Bailing out a Sinking Ship with a Thimble - The Perils of Reforming Government](https://stacker.news/items/793305)\n- [U.S. House COVID-19 REPORT: The Lessons Learned and a Path Forward](https://stacker.news/items/794452)\n- [South Korean president declares emergency martial law](https://stacker.news/items/792957)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [SN release: direct payments to attached wallets, send fallbacks, lots of smalls](https://stacker.news/items/796464)\n- [I googled ass-milking so you don't have to](https://stacker.news/items/797208)\n- [Stacker Sports completes its first trip around the Sun](https://stacker.news/items/796459)\n- [I have a project in Geyser](https://stacker.news/items/794123)\n- [No leaderboard, No daily rewards !](https://stacker.news/items/796213)\n- [Trying To Get A Friend Interested In SN](https://stacker.news/items/790055)\n- [Golden Oldies #22](https://stacker.news/items/792913)\n- [Anecdote and thanks to Geyser and SN](https://stacker.news/items/798289)\n- [Would you prefer a teaser or the spoiler for an article post?](https://stacker.news/items/790823)\n\n[**all meta**](https://stacker.news/~meta/top/posts/week)\n\n-------\n\n##### Top Monday meme\n![](https://imgprxy.stacker.news/WBIhA-q4ZvPNGqhdViYczG0fI_cdXMCSUJhZ7UrJvOo/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy82NTcwMg)\n\n[**all monday memes**](https://stacker.news/items/791640)\n\n------\n\n##### Top Friday fun fact\n> A defibrillator doesn’t actually 'start' a heartbeat but stops it. It is used during CPR when the heart beats irregularly. It’s basically the 'have you tried turning it off and on again' analogy in medicine.\n\n\n[**all friday fun facts**](https://stacker.news/items/798066)\n\n------\n\n##### Top Stackers\n1. [@Bell_curve](https://stacker.news/Bell_curve): 186.8k sats stacked\n2. [@grayruby](https://stacker.news/grayruby): 97.5k sats stacked\n3. [@benwehrman](https://stacker.news/benwehrman): 67.6k sats stacked\n4. [@Undisciplined](https://stacker.news/Undisciplined): 60.1k sats stacked\n5. [@DesertDave](https://stacker.news/DesertDave): 53k sats stacked\n\n------\n\n##### Top Spenders\n1. [@KoinVote](https://stacker.news/KoinVote): 260.1k sats spent\n2. [@offordscott](https://stacker.news/offordscott): 250.1k sats spent\n3. [@grayruby](https://stacker.news/grayruby): 156.7k sats spent\n4. [@Public_N_M_E](https://stacker.news/Public_N_M_E): 115k sats spent\n5. [@mega_dreamer](https://stacker.news/mega_dreamer): 109.7k sats spent\n\n------\n\n##### Top Cowboys\n1. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 456 days\n2. [@Undisciplined](https://stacker.news/Undisciplined): 438 days\n3. [@OneOneSeven](https://stacker.news/OneOneSeven): 431 days\n4. [@BlokchainB](https://stacker.news/BlokchainB): 417 days\n5. [@TNStacker](https://stacker.news/TNStacker): 413 days\n\n------\n\n##### Top Boosts\n1. [Bitcoin Signatures for Candidates: Germany and China Voting Live](https://stacker.news/items/796311)\n2. [Turning Tires into Bitcoin](https://stacker.news/items/793375)\n3. [Black Friday Alert! Buy 2 Jades, get 50% off the second + free shipping 🇺🇸🇪🇺](https://stacker.news/items/786983)\n4. [Upendo - Mining Block Party Auction](https://stacker.news/items/784886)\n5. [BTCTKVR: Privacy Magazine (Free Download)](https://stacker.news/items/779811)\n6. [Wasabi Wallet v2.3.0.0 released!](https://stacker.news/items/737681)\n7. [Jippi - Pokémon GO for Bitcoin - Now Crowdfunding](https://stacker.news/items/754811)\n8. [Endorse 2024 U.S. Candidates with Bitcoin – Presidential & Congressional!](https://stacker.news/items/739506)\n9. [Bet on the US election with sats on bitcoinprediction.market](https://stacker.news/items/721770)\n10. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n[**all jobs**](https://stacker.news/top/posts/forever?by=boost)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 21207 \N 448015 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 21.807953217908 0 \N \N f 810218951 \N 10 216517425 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 15:30:18.018 f \N \N \N 0 0 0 0 5 0 0 448789 2025-03-22 21:47:17.929 2025-03-29 22:39:52.195 \N [A nice message here](https://nitter.net/empty_banks/status/1710229195349971160) for today. https://example.com/ 1729 448643 448349.448452.448643.448789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6979015872675 0 \N \N f 175291688 \N 1 3930633 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 15:05:39.823 f \N \N \N 0 0 0 0 1 0 0 402168 2025-02-13 15:25:52.988 2025-03-29 22:39:52.195 \N so funny, one of my old Airbnb hosts literally suggested me to pay him in Bitcoin now https://stacker.news/items/474707 I was usually the one to initiate it before. 😂😂\n\n https://example.com/ 17541 402119 402119.402168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2493619365227 0 \N \N f 209567795 \N 1 183135841 0 f f \N \N \N \N 402119 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414676 2025-02-24 07:30:48.442 2025-03-29 22:39:52.195 \N Phew - found my cowboy hat again. I knew I put it down somewhere.. https://example.com/ 9109 414675 413675.414675.414676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.646302303457 0 \N \N f 90745140 \N 1 91702952 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407964 2025-02-18 13:53:55.915 2025-03-29 22:39:52.195 \N Is anyone aware of advanced discussions or proposals on paying for tx routing/relaying as a way of directly incentivizing node running?\n\nI realize that this is very nontrivial which is why I think it's interesting to think about. We pay miners because they are doing a lot of provably hard work, but is it possible to trust minimally pay for less provable or less hard work? https://example.com/ 1039 407903 407903.407964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58973253764796 0 \N \N f 216172026 \N 1 12682767 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443232 2025-03-19 07:37:23.409 2025-03-29 22:39:52.195 \N First of all: thank you. This is so cool.\n\n> I believe YouTube succeeded because it gave its creators back more than other platforms\n\nCorrect. All those TikTok kids moving to youtube after getting famous is proof enough.\n\nVery looking forward to how this platform will develop. I already feel "at home" like in the early days of internet forums. https://example.com/ 4292 443178 443178.443232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.431315957163 0 \N \N f 55305192 \N 1 106123777 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444346 2025-03-19 19:57:52.797 2025-03-29 22:39:52.195 \N Someone is bound to suggest this so I'll just get it out of the way: work for bitcoin. That has its own list of problems and in many situations is probably much more inconvenient than gift cards. https://example.com/ 7992 443836 443836.444346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.89193067165391 0 \N \N f 284017799 \N 3 69821741 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427934 2025-03-06 18:06:34.58 2025-03-29 22:39:48.907 What's helped you develop a more open mind over time? Bitcoin is certainly an eye opener for many, and it forces you to confront preconceived notions you've held your entire life.\n\nI think many bitcoiners tend to lean more openly to new ideas because they've been through that experience before; of having to reevaluate an entire framework they've operated under their whole lives.\n\nIt's a powerful force, and paradoxically builds real conviction behind your ideas -- you become more strong in your beliefs, not because you just dig your heels in, but because you've learned truth through real experience. \n\n_Strong opinions, loosely held._ \N 19263 \N 427934 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.739557883127 0 \N \N f 841394646 \N 9 67570341 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 423504 2025-03-03 12:27:41.812 2025-03-29 22:39:52.195 \N Heading on to week 3 of the BOLT🔩FUN Legends of Lightning ⚡️Tournament! 🎉\n\nIn case anyone wants to follow our progress, I've been adding weekly updates here on stacker.news\n\nWeek 1 - https://stacker.news/items/82384\nWeek 2 - https://stacker.news/items/84937\n\nHope everyone has a great week ahead. https://example.com/ 17541 423468 423468.423504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.18665621820305 0 \N \N f 77848703 \N 2 112503636 0 f f \N \N \N \N 423468 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448435 2025-03-22 15:47:48.558 2025-03-29 22:39:52.195 \N There are so many but the first that comes to my mind is:\n\nLGBTQ Discrimination\n\n**Reference:** [303 Creative LLC v. Elenis.](https://www.supremecourt.gov/opinions/22pdf/21-476_c185.pdf) https://example.com/ 21412 448429 447944.448375.448429.448435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9247732316486 0 \N \N f 17254901 \N 1 225278428 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424131 2025-03-03 20:49:19.703 2025-03-29 22:39:52.195 \N microsoft or nvidia\n\njust realized I have zero direct exposure to either. lol https://example.com/ 8570 400201 394203.394251.400201.424131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9647110329027 0 \N \N f 457322450 \N 5 110922131 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449507 2025-03-23 12:05:18.209 2025-03-29 22:39:52.195 \N I remember Heather Heying of Darkhorse Podcast talking about how the trials didn't assess whether the vaccines prevented spread. This was way back when they were first being tested.\n\nHer concern made no sense to me, because those trials (or at least the data they initially released) did show that the vaccines prevented infection and it seemed obvious that an uninfected person couldn't spread a virus.\n\nI'm really glad someone was sounding the alarm on that right from the beginning. https://example.com/ 15239 449394 449394.449507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6752512552226 0 \N \N f 161968178 \N 2 2253148 0 f f \N \N \N \N 449394 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415076 2025-02-24 14:06:39.989 2025-03-29 22:39:52.195 \N Block https://example.com/ 21051 414755 414755.415076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.55887973680445 0 \N \N f 1789873916 \N 12 205687039 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435559 2025-03-12 19:31:52.33 2025-03-29 22:39:52.196 \N Posted August 2022. Some key things I caught from it:\n\n- the $40B global remittance market averages 6.4% per cross-border transaction\n- Lightning saw 400% YoY increase in Q1 22, at an estimated $20-$30M in monthly payments (public capacity)\n- Number of Bitcoins on the network is at an ATH - 4500BTC\n- this cool image ![image](https://images.ctfassets.net/c5bd0wqjc7v0/4NkuaxmLC24pDIxyYAIDHZ/1b80fac372c7eb65edc6e7cf3d9ceec3/1_rIv-eTPjKjXxCrMtpKNSTg.png)\n- LND has 70% of node market share as of 2020\n- 26 exchanges support Lightning (Kraken, Bitfinex, Bitstamp) with Robinhood announcing [an integration](https://www.coindesk.com/business/2022/04/07/robinhood-releases-crypto-wallet-to-2m-users-plans-integration-with-bitcoin-lightning-network/) and [Paxful](https://www.coindesk.com/tech/2021/09/14/paxful-integrates-lightning-network-for-bitcoin-transactions/) too\n- David Markus (previous head of Facebook's Libra/Diem project) founded and raised a Series A for a new Lightning infra company Lightspark\n- Lightning Labs raised $70M for a series B; OpenNode raised a series A\n- With just $100M locked in, it pales in comparison with Ethereum's billion dollar L2s. But Coinbase admits that lightning activity is more indicative of real world utility when compared to the speculative activity driving growth on these smart contract platforms\n- Hurdles: lack of developer tooling, demand for payment use cases, regulation; Lightning is still cumbersome for new users and merchants https://example.com/ 18017 435556 435217.435275.435277.435295.435425.435556.435559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2167544357302 0 \N \N f 251988606 \N 3 12680591 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 12:52:58.798 f \N \N \N 0 0 0 0 1 0 0 403831 2025-02-15 08:55:51.467 2025-03-29 22:39:52.196 \N It's: https://stacker.news/top/posts/week\n\nWe need to enable more fine grain control of time, but that's like a lagging homepage. https://example.com/ 17291 403825 403824.403825.403831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.03268224328801 0 \N \N f 202117167 \N 2 227494292 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431001 2025-03-09 15:07:15.611 2025-03-29 22:39:52.196 \N https://imgprxy.stacker.news/2_HdCM4LCnPr-rSK7eeZ5nY0uXSoA9hOQPMQCGfRjd8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9NRHZvZEZXLmpwZw\nhttps://imgprxy.stacker.news/JAnpuN_UAwMepwK3dX11KnkhclHsxxtrDqftL9wVJSE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9UN2g5eml4LmpwZw\nhttps://imgprxy.stacker.news/DtdwubSjTTNzXE8ZvAVGM0w18xtNiNE3ejSOgbz0vNI/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9SdzhSR01MLmpwZw\nhttps://imgprxy.stacker.news/7lbkPbaO0zBgtBhGD3ApyhL-i1d0V4u5hodgL6he8UY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS91VVRZczdFLmpwZw https://example.com/ 20655 430993 430993.431001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.731821165662 0 \N \N f 256325524 \N 5 96628935 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416784 2025-02-25 20:56:09.832 2025-03-29 22:39:52.196 \N I'm excited to give this a try. If only had more fiat fun coupons hanging around... https://example.com/ 20433 416158 416158.416784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.20963940901374 0 \N \N f 157043333 \N 1 79150867 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456790 2025-03-27 21:37:52.759 2025-03-29 22:39:52.196 \N Oil does not come from dead dinosaurs. The fossil fuels, the name given as such, originates from commitment of oil producers to make it appear as scarce.\n"Most oil reserves were formed between 65 and 252 million years ago. While this does overlap with the ‘dinosaur times’, oil is a marine sediment made of the remains of algae and plankton.\n\nSkeletons of prehistoric reptiles such as plesiosaurs and ichthyosaurs (neither of which count as dinosaurs) have been found in the same geological layers as oil and they may have contaminated the oil deposit. But to say that oil is made from dinosaurs is like saying that bread is made from insects, just because the odd one occasionally falls into a flour mill." - www.sciencefocus.com/planet-earth/dinosaurs-in-fossil-fuel\n\nImportant to note, many "depleted" oil wells replenish themselves over time. https://example.com/ 1618 456117 454221.454403.455521.455855.456113.456117.456790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9384061397745 0 \N \N f 329454421 \N 2 121145235 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443473 2025-03-19 11:25:36.639 2025-03-29 22:39:52.197 \N Just a pleb here spitballing, the Fedi devs have confirmed they have the containers to potentially launch Fedimint as an app on node in a box devices like Umbrel or start9. Imagine launching a fedimint for your family, friends, or social group. I love the idea of me and a few others in my family serving as the Uncle Jims to a family bitcoin treasury. Hello generational wealth that is instantly distributed geographically and across multiple people and devices. \nMutiny and other wallets will eventually deploy fedimints, allowing offline lightning receives (among other things). Imagine sats drop into the federation while you are offline and then when you come back online they drop into your Mutiny or other wallet. Now if you have a self custodial wallet if you are offline and someone tries to send you sats and you don't come online in time you just miss those sats. Problem solved (of course with some tradeoffs, nothing is perfect). \nWorried about a government crackdown, $5 wrench attacked, and youre more than tin foil hat type? Have a family, friends, or other trusted social group form a fedimint stash without a trusted custodian. Collaborative multisig has some great benefits, but maybe you don't want to dox the amount of bitcoin to a company that could be forced to turn over a private key, xpubs, etc. This could be especially great if you have family or friends in different countries. \nJust some of my first pleb ideas. https://example.com/ 2367 443197 443197.443473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5897478228678 0 \N \N f 388375395 \N 4 207261047 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 2025-03-26 05:58:44.835 f \N \N \N 0 0 0 0 2 0 0 421738 2025-03-01 23:50:03.187 2025-03-29 22:39:52.198 \N The Alchemist by Paulo Coelho https://example.com/ 674 421737 421567.421722.421731.421733.421735.421737.421738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8177917367355 0 \N \N f 218527178 \N 2 215850265 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447818 2025-03-22 07:08:37.774 2025-03-29 22:39:48.907 pyKeysend: send large amounts of data using lightning keysend payments \N http://andyschroder.com/DistributedCharge/news/2023.04.16-pyKeysend/ 21714 \N 447818 \N \N \N \N \N \N \N \N Linux \N ACTIVE \N 29.1038211299373 0 \N \N f 822306446 \N 7 241036097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 402003 2025-02-13 13:53:55.132 2025-03-29 22:39:48.907 Bitcoin is Boring But its supposed to be. Bitcoin is proper sound money backed by energy. The exciting part is what sound money can mean for us as a society.\n\nJust a thought I randomly had.\n\nWhat excites you most about Bitcoin?\n \N 16978 \N 402003 \N \N \N \N \N \N \N \N health \N ACTIVE \N 10.6275889793429 0 \N \N f 1106874907 \N 10 112503939 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 8 0 0 435030 2025-03-12 12:12:18.042 2025-03-29 22:39:48.907 Books And Articles Newsletter, Issue 37 \n![](https://m.stacker.news/58468)\n\n\n### News Of The Week \n\nWelcome to the Books And Articles newsletter. Thanks for all of the quality posts.\n \nAnother good week for the territory. @SimpleStacker gave us the top post, with his expert review of an academic economics paper on bitcoin. I hope this is the first of many. @carlosfandango and @jbschirtzinger gave us particularly good book reviews, @cryotosensei brought back The Shakespeare Book Club, and @02879c7d869 gave us a new short story.\nEnjoy!\n\nAs always, please reply with suggestions and opinions on how to make this territory better. \n\nLogo design by @plebpoet\nLink to last week’s newsletter: \nhttps://stacker.news/items/720434/r/siggy47\n\n\n### Top Five Posts Of The Week \n\nHere are this week’s top posts:\n\n- [Bitcoin Pricing, Adoption, and Usage: Theory and Evidence | Article Review](https://stacker.news/items/727081/r/siggy47) by @SimpleStacker\n\n- [Book Review | Black Coffee Blues by Henry Rollins](https://stacker.news/items/722727/r/siggy47) by @carlosfandango\n\n- [Book Review: Q By Luther Blisset](https://stacker.news/items/728848/r/siggy47) by @jbschirtzinger\n\n- [check your financial privilege](https://stacker.news/items/729608/r/siggy47) by @stack_harder\n\n- [Kurt Vonnegut's Lost Board Game](https://stacker.news/items/724771/r/siggy47) by @StillStackinAfterAllTheseYears\n\n### Siggy’s Suggestions\n\n- [@realBitcoinDog Bitcoin Story - No, social media had nothing to do with it xD](https://stacker.news/items/722720/r/siggy47) by @realBitcoinDog\n\nHere is another great Bitcoin Journey story, given to us by @realBitcoinDog. In an ordinary week this post would have easily made the Top Five, and there would be no reason for me to highlight it. I can see it received a good deal of engagement already, but if you haven’t red it yet you should.\n \n\n- [The poet and the reader || short story](https://stacker.news/items/723702/r/siggy47) by @02879c7d869\nDon’t ask me how this short story flew under the radar. It’s probably because the stacker is new, and the nym is tough to pronounce. The real @nym, however, recognized the quality. Give it a read. It is now permanently included in the index. \n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n- ["Who are you?" — How do I want to answer?](https://stacker.news/items/674910/r/siggy47) by @IamSINGLE\n\n- ["My journey with Bitcoin: the experience of an ordinary Cuban"](https://stacker.news/items/676287/r/siggy47) by @BTCLNAT\n\n- [@realBitcoinDog Bitcoin Story - No, social media had nothing to do with it xD](https://stacker.news/items/722720/r/siggy47) by @realBitcoinDog\n\n\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n- [And Then She Disappears - Block 1](https://stacker.news/items/680735/r/siggy47) by @ginkgo\n\n### Book Reviews\n\n- [The Mandibles by Lionel Shirver](https://stacker.news/items/719755/r/siggy47) by @21futures\n\n- [Book Review | Catcher in the Rye - Better the second go around as an adult](https://stacker.news/items/709553/r/siggy47) by @realBitcoinDog\n\n- [Book Review | The Diving Bell and the Butterfly](https://stacker.news/items/706975/r/siggy47) by @carlosfandango\n\n- [Book Review | Black Coffee Blues by Henry Rollins](https://stacker.news/items/722727/r/siggy47) by @carlosfandango\n\n- [The Underground Man by Dostoevsky](https://stacker.news/items/707544/r/siggy47) by @Nadia\n\n- [Emil Cioran: 'The Fall into Time ("Sturz in die Zeit" in German)](https://stacker.news/items/694642/r/siggy47) by @TomK\n\n- [Book Review: The Book of Elsewhere, by China Mieville and Keanu Reeves](https://stacker.news/items/697427/r/siggy47) by @jurraca\n\n- [A Journey Through Emiko Jean's The Return of Ellie Black](https://stacker.news/items/691236) by @Melisa\n\n- [what i read, and wrapping up in july:](https://stacker.news/items/630204/r/siggy47) by @speakingyourtruth\n\n- [Book Review: Nothing Like The Movies by Lynn Painter](https://stacker.news/items/670569/r/siggy47) by @speakingyourtruth\n\n- [The Mandibles: A Review](https://stacker.news/items/668210/r/siggy47) by @jimmysong\n\n- [Self-Reliance by Emerson](https://stacker.news/items/669132/r/siggy47) by @ek\n\n\n- [Book - The Victorian Internet by Tom Standage (1998)](https://stacker.news/items/673776/r/siggy47) by @Signal312\n\n- [Review: The Righteous Mind](https://stacker.news/items/665765/r/siggy47) by @Undisciplined\n\n- [Book Review: Sliced Americana](https://stacker.news/items/663627/r/siggy47) by @jbschirtzinger\n\n- [Saboteurs: How Secret, Deep State Occultists Are Manipulating American Society](https://stacker.news/items/675002/r/siggy47) by @jbschirtzinger\n\n- [The New Manners and Customs of Bible Times](https://stacker.news/items/691719) by @jbschirtzinger\n\n- [Book Review: Q By Luther Blisset](https://stacker.news/items/728848/r/siggy47) by @jbschirtzinger\n\n- [Book Review | “The Happiness Project” and “Happier at Home”](https://stacker.news/items/718985/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Self-Motivated Kid”](https://stacker.news/items/705694/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Perks of Being a Wallflower”](https://stacker.news/items/704856/r/siggy47) by @cryotosensei\n\n- [Book Review | “101 ways to bring out the best in your children & yourself”](https://stacker.news/items/667453/r/siggy47) by @cryotosensei\n\n- [Book Review | “Diary of a Wimpy Kid”](https://stacker.news/items/668335/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Daily Dad” by Ryan Holiday](https://stacker.news/items/684138/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002) by @cryotosensei\n\n- [Book Review | “The 17 Indisputable Laws of Teamwork”](https://stacker.news/items/687944) by @cryotosensei\n\n- [Book Review | “Wonder Doodles”](https://stacker.news/items/685335) by @cryotosensei\n\n- [Book Review | “Sompo Guide Tokyo”](https://stacker.news/items/702025/r/siggy47) by @cryotosensei\n\n- [Book Review | “Peak”](https://stacker.news/items/698568/r/siggy47) by @cryotosensei\n\n- [Book Reviews Directory #2](https://stacker.news/items/665395/r/siggy47)\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Bitcoin Academic Articles \n\n- [Bitcoin Pricing, Adoption, and Usage: Theory and Evidence | Article Review](https://stacker.news/items/727081/r/siggy47) by @SimpleStacker\n\n\n### Movie & Television Reviews\n\n- [Sound of Freedom | Movie Review](https://stacker.news/items/710780/r/siggy47) by @SimpleStacker\n\n- [Movie Review | “How to make millions before Grandma dies”](https://stacker.news/items/683086/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [El Encargado | Argentinian TV series | very good comedy](https://stacker.news/items/689468/r/siggy47) by @DarthCoin\n\n- [The IT crowd | hillarious super funny comedy TV series](https://stacker.news/items/694922/r/siggy47) by @DarthCoin\n\n- [Two TV series about the "Schrodinger's cat" theory](https://stacker.news/items/701874/r/siggy47) by @DarthCoin\n\n- [From | Que sera, sera... | new season 3 TV series](https://stacker.news/items/696122/r/siggy47) by @DarthCoin\n\n\n\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [a new kind of poem (that you can see 👀 and hear 🦻)](https://stacker.news/items/676672/r/siggy47) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n- [Let's pretend we loved each other](https://stacker.news/items/666008/r/siggy47) by @Nadia\n\n- [That's MINE! Poetry.](https://stacker.news/items/661773/r/siggy47) by @Malach17\n\n- [Silly rhymes written by a guy (maybe) fallen in love](https://stacker.news/items/666985/r/siggy47) by @0268a5c238\n\n\n\n### Short Stories\n\n- [The poet and the reader || short story](https://stacker.news/items/723702/r/siggy47) by @02879c7d869\n\n- ['little fictions' presents: Cowboys Don't Belong](https://stacker.news/items/713535/r/siggy47) by @plebpoet\n\n- [Short Story: “Quarter” by Eduardo Prospero](https://stacker.news/items/713942/r/siggy47) by @eduardopro\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 13763 \N 435030 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.7054342584353 0 \N \N f 2765711828 \N 29 60057229 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 23:19:20.094 f \N \N \N 0 0 0 0 11 0 0 21729 2023-05-10 13:40:48.196 2025-03-29 22:39:52.196 \N Had interest in printers, and used one a few times at a shared markerspace. I took a class, and messed around in fusion 360.\n\nGot my own printer, spent months printing upgrades for it. Started to print my own designs to solve problems around my shop. Repairs, tool holders, custom containers, upgrades for other tools like laser cutter attachments.\n\nOne day, I decided to make an eBay listing for my designs to sell prints on the side. It took off! Bought 6 more printers and ran them constantly to keep with demand.\n\nNow, I've built supply chains for the most popular products, using mass manufacturing techniques. 3d printing is great for prototyping, and even proving there is demand for a product. Anyone with ambition can bootstrap a business off of a $200 machine running in a closet.\n https://example.com/ 631 21728 21672.21728.21729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.089023855919 0 \N \N f 379947616 \N 2 169320814 0 f f \N \N \N \N 21672 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450117 2025-03-23 19:07:02.124 2025-03-29 22:39:52.196 \N Is anyone else starting to use SN more than Twitter? I feel the transition happening rather rapidly on my end. The signal/noise ratio is incredible. https://example.com/ 859 450019 447870.449922.450006.450008.450019.450117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9408743039584 0 \N \N f 37385082 \N 1 244035793 0 f f \N \N \N \N 447870 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435600 2025-03-12 20:05:32.956 2025-03-29 22:39:52.196 \N > 1000 years ago, the things a king could experience would be totally out of reach to any commoner.\n\nYes, and by extension, the current poor have a better life then a 1700s king who lived in a damp, sooty cement box filled with mice. \n\n>in terms of philosophy, stacking and stoicism go together very well i think\n\nVery astute point. They do. Stay humble and be in the moment. https://example.com/ 13921 435598 435217.435541.435542.435598.435600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.528378849622 0 \N \N f 98717021 \N 1 49944950 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 13:26:23.082 f \N \N \N 0 0 0 0 1 0 0 443599 2025-03-19 12:36:42.659 2025-03-29 22:39:52.196 \N I've heard that from other places, too. Seems weird, although when I steelman it, I guess I can sort of get it. I have a PhD in a different field and I can think of a zillion really fundamental things that you don't get exposed to unless you insist on it. There's just too much to cover, and those foundational things are ... foundational. Considered to be so basic as to not need examination, I suppose.\n\nOne of the byproducts of going down the btc rabbit hole, for me, was encountering so many super fascinating takes on money and its origins and the psychology of it. Bitcoiners don't often get exposed to these through the normal channels. For instance, here's probably my [favorite book](https://www.hup.harvard.edu/catalog.php?isbn=9780674975422) on money topics, which I've never heard anyone even mention. (Though in fairness, no one mentions it outside of btc, either.)\n\nIf you just go one field over, it's like a whole other universe of things to discover. https://example.com/ 630 443312 443295.443312.443599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6234878661441 0 \N \N f 177366433 \N 1 126980504 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:57.849 f \N \N \N 0 0 0 0 1 0 0 430496 2025-03-09 08:55:35.3 2025-03-29 22:39:48.908 So you want to mine but can't because xyz? Host with \n\nThey offer 6.9 cent power for the first year.\nIt's two brothers in Iowa.\nThey're dope af.\nCheck out their interviews on their website.\nThey're most active on [X](https://twitter.com/WilsonMining) (🤮) but don't hold that against them.\nEmail is on their website or reach out on telegram @wilsonmining like I did.\nThey've got a sweet inside deal on M60 miners that ends April 1.\nHit them up!\n\n_I make no money from posting this, just want to spread knowledge_\n\n_ps Tell 'em expatriotic sent you!_\n\n*_pss You can be 100% anonymous and pay your electrical and hosting fees in bitcoin OR LIGHTNING_* \N 9517 \N 430496 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 23.0961856625871 0 \N \N f 455826667 \N 3 177729295 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447161 2025-03-21 16:46:32.095 2025-03-29 22:39:52.196 \N Olaoluwa has implemented Lightning channel opening, updating and closing using Taproot and the [musig2 multisignature scheme](https://github.com/jonasnick/bips/blob/musig2/bip-musig2.mediawiki). The first tx https://mempool.space/testnet/tx/e571d48767c9b03474b16710254d9c46f430cc5683eda2496a3e686429b555e8 seems to be the opening tx for a [0.004 BTC channel](https://mempool.space/testnet/tx/e571d48767c9b03474b16710254d9c46f430cc5683eda2496a3e686429b555e8:1). \n\n\n> Is this just another transfer? Or a musig2 co-op close?\n\nThe [second tx](https://mempool.space/testnet/tx/0:2926e7e0a83a7afa05e462fc8788c1c288a9e103c81f2e270fcd7665ef805abe) looks like a musig2 cooperative close where one peer has a ‎0.00102687 BTC balance and the other has \n‎0.00297029 BTC. A nice thing about musig2 and taproot is that both transactions look really similar so it should make it more difficult to figure out what's going on for on-chain analysis.\n\n\n> Can someone elaborate? Looks like he achieved something.\n\nThis means that he has implemented full Taproot support for LND channels. You could create and spend from Taproot on-chain addresses on LND but this is way bigger. https://example.com/ 19394 447124 446456.447124.447161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.332677570931459 0 \N \N f 423210130 \N 2 219814067 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 10:13:05.21 f \N \N \N 0 0 0 0 1 0 0 401944 2025-02-13 13:16:11.712 2025-03-29 22:39:52.196 \N \n1. All payments are voluntary.\n2. You only get paid by providing value.\n3. In the long run, creating multiple accounts is only a waste of time, it's a very bad strategy for multiplying your income\n4. Bad actors will quickly get ostracized.\n https://example.com/ 18068 401907 401907.401944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.51581050842 0 \N \N f 208263027 \N 1 243250117 0 f f \N \N \N \N 401907 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423046 2025-03-02 22:42:31.59 2025-03-29 22:39:52.196 \N I have listened to a couple episodes of Stacking Sats by @kr where the guest tell the story of how they stacked x amount of sats through product, service or artistic offerings. I think Kevin would do a great job on a project like this. https://example.com/ 12656 422941 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422918.422933.422939.422941.423046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2094812085244 0 \N \N f 238266080 \N 2 186337859 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 417552 2025-02-26 12:58:06.231 2025-03-29 22:39:52.197 \N The Stacker News Livestream yesterday made me think about how awesome it is that SN is a worldwide community.\n\nThinking about making a regular (or every now and then) image thread à la BeReal for people to show something casually from their daily lives around the globe. Cool idea or kinda lame when nobody participates? https://example.com/ 4819 417047 416768.417016.417047.417552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8896524253485 0 \N \N f 120890497 \N 1 155737274 0 f f \N \N \N \N 416768 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1610 2022-09-20 12:03:26.001 2025-03-29 22:39:52.197 \N I can’t tolerate conversations about; politics, religion, sport, reality tv and the weather and tend to shake my head and walk away. Any attempt at discussing celebrity will result a kicking. If anyone’s wants to talk to me they are really going to struggle.. https://example.com/ 18772 1604 1565.1571.1604.1610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4165834812853 0 \N \N f 188777440 \N 1 25147384 0 f f \N \N \N \N 1565 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430453 2025-03-09 07:45:45.572 2025-03-29 22:39:48.908 Analyze Any Video or Audio File of Your Choice - Pay in Sats! What's up yall trying something new posting to this territory. Today we have a new CASCDR update: you can instantly analyze any .mp3 or .mp4 you upload and create content based on that.\n\nWe had existing tools that could extract transcripts and others that could [analyze any episode in a podcast feed](https://cascdr.xyz/?tab=yt-agent). \n\nWe decided to combine the two to make it easy to analyze any arbitrary file. This is a big help to our users that are podcasters wanting to do things like create show notes, descriptions, promos or anything else you might like.\n\n![](https://m.stacker.news/47934)\n\n## How It Works\n\n1. Go to the [microapp](https://cascdr.xyz/?tab=whisper) and supply the file\n2. Click transcribe to get the transcript\n![](https://m.stacker.news/47936)\n3. Choose from default prompts or create your own\n![](https://m.stacker.news/47935)\n4. Enjoy your AI generated content\n![](https://m.stacker.news/47937)\n\n\n## Payment\n\nYou have the option to either:\n- pay through the Bitcoin Connect plugin \n- or use our [Amber](https://cascdr.xyz/?tab=upgrade) Square checkout\n\nHope this tool can help you all out! Check it out at https://cascdr.xyz/?tab=whisper .\n\nIf you're curious about our vision for what based cypherpunk AI looks like check out the link in the post here: https://stacker.news/items/655155\n\nCheers,\nThe CASCDR Team \N 12483 \N 430453 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 19.6864554480333 0 \N \N f 211998787 \N 1 237166217 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455396 2025-03-27 01:30:40.028 2025-03-29 22:39:48.908 Two TIPS (Territory Improvement Proposals) - Allow forwarded daily territory earnings exactly as it is currently structured for forwarding sats on posts.\n\nThis simple change would open up collaboration for territory management, ie, hiring a manager, hiring a number of stackers with delegated duties, etc. It could also be used for rewards, promotions, charities, etc. Added bonus is no complicated accounting or fee disputes.\n\n- Allow payment options to be changed, ie, switching from monthly to yearly or to one time fee. I'm repeating myself here.\n\nI forwarded any sats I get to @ekzyis as a bribe, and also to practice spelling that crazy nym. \n \N 21398 \N 455396 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 6.3566295002213 0 \N \N f 371157514 \N 2 33732266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 407173 2025-02-17 20:21:07.114 2025-03-29 22:39:48.908 What's it like to live like a bitcoin billionaire and fly on a private jet? \N https://youtu.be/7tiRzABtVFc 11328 \N 407173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4079676979434 0 \N \N f 127689992 \N 2 115687238 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 448386 2025-03-22 15:21:56.933 2025-03-29 22:39:52.197 \N Maybe add a date filter for searching. I use the search box a lot. That would be nice.\nHowever the site is excellent as it is already! https://example.com/ 6526 448293 447892.448293.448386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4516329818016 0 \N \N f 208477241 \N 1 157299650 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 09:08:59.171 f \N \N \N 0 0 0 0 1 0 0 436169 2025-03-13 11:11:29.666 2025-03-29 22:39:52.197 \N I'm a software developer at a company that sells software to the electricity industry (i.e. power stations). \nIn other words, I keep the electricity flowing into the ASICs.\n\nAs a side note. Most people don't really know how the electricity industry actually works. I'd be happy answer any questions in an AMA if anyone's interested. https://example.com/ 17682 436162 436028.436029.436031.436059.436065.436091.436126.436141.436162.436169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.0566890531477 0 \N \N f 362455640 \N 3 18874684 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 04:30:42.644 f \N \N \N 0 0 0 0 1 0 0 447016 2025-03-21 15:12:02.07 2025-03-29 22:39:52.197 \N ![proxy-image (10).jpeg](https://m.stacker.news/7309) https://example.com/ 4323 447006 446313.446884.446898.446927.446961.446988.447006.447016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.06134890199756 0 \N \N f 318919532 \N 2 69016399 0 f f \N \N \N \N 446313 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448176 2025-03-22 13:01:15.526 2025-03-29 22:39:52.197 \N he got obsessed with tx pinning while working on it. i think it dominated his brainspace so much he just didn’t think to talk about the work he’d done on symmetric LN https://example.com/ 5961 447715 447715.448176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.01732112397347 0 \N \N f 99040043 \N 1 114378457 0 f f \N \N \N \N 447715 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422161 2025-03-02 09:54:12.142 2025-03-29 22:39:52.197 \N Read in full: https://abytesjourney.com/lightning-privacy/ https://example.com/ 10549 422008 421915.422008.422161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.57039320463088 0 \N \N f 219167138 \N 2 88976951 0 f f \N \N \N \N 421915 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443589 2025-03-19 12:32:27.902 2025-03-29 22:39:48.908 Introducing Diamond Wallet — a new self-custodial ⚡️ wallet from Japan 🇯🇵 ### Diamond Hands just dropped the beta release of Diamond Wallet, the first functional self-custodial Lightning wallet from Japan. \n\nThe wallet was built using the [Breez SDK's Native (*Greenlight*) implementation](https://sdk-doc-greenlight.breez.technology/). \n\nIt includes a new feature they’ve added called '*sats4ads*,' where you can earn sats for watching ads.\n\nHere are some of the key features:\n\n* You can earn sats through '*sats4ads*' — just by watching ads in the app.\n\n* There’s Bolt Link, which is like bit.ly but with Lightning payments. You click a link, watch an ad, and earn bitcoin. Only users with a Lightning channel can claim rewards, keeping it secure and spam-free.\n\n* It’s self-custodial, so no third parties holding your funds.\n\n[Koji Higashi](https://x.com/Coin_and_Peace), the co-founder, mentioned that the regulations in Japan make it difficult to offer custodial services, so going the non-custodial route was the best move.\n\nIt’s still in beta, but they’re working on adding more features like in-app channel opening, direct ad delivery, interoperability with other wallets, as well as a referral program.\n\nThe Diamond Hands team shared a [demo on X](https://x.com/DiamondHandsLN/status/1841168020196246005) as well as [this blog](https://diamondhandsen.substack.com/p/diamond-hands-beta-releases-diamond) sharing more details on what they've built. They've also shared more technical details on their [GitHub](https://github.com/DiamondHandsInc/bolt-link-readme?tab=readme-ov-file).\n\nIf you’re into testing out new stuff, you can find it on [Google Play](https://play.google.com/store/apps/details?id=technology.diamondhands.wallet) and [Apple TestFlight](https://testflight.apple.com/join/Kjbu5pII). \N 4287 \N 443589 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 21.7774701359045 0 \N \N f 74742495 \N 1 18069912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:03:09.528 f \N \N \N 0 0 0 0 1 0 0 422060 2025-03-02 08:48:36.248 2025-03-29 22:39:48.908 Why You Are All Wrong \N https://twenty-two.xyz/blog/why-you-are-all-wrong/ 21710 \N 422060 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 11.5076809196115 0 \N \N f 171158075 \N 1 129145934 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441761 2025-03-18 09:23:09.636 2025-03-29 22:39:48.908 It looks like Elon just killed Twitter 600 posts for non-verified user per day. Probably around 10 min per use.\n\n6000 for verified users. \n\nShould see a nice pump for NOSTR usage I think. The largest issue is if dumdums copied and we officially see the end of the open-web. \N 21501 \N 441761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.82651952056993 0 \N \N f 241511200 \N 1 72464375 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436045 2025-03-13 09:12:19.774 2025-03-29 22:39:52.197 \N Day 74 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 17041 436029 436028.436029.436045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.168010351253 0 \N \N f 873761629 \N 5 7545993 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:53:49.036 f \N \N \N 0 0 0 0 1 0 0 401493 2025-02-13 04:48:38.35 2025-03-29 22:39:52.197 \N They've been [paying a lot of bitcoin in a ransomware attack](https://www.cbsnews.com/news/unitedhealth-cyberattack-change-healthcare-hack-ransomware/). Since it sounds like the gunner got away, wonder if it was a professional with a gang (especially if UHC has stopped those payments). Figure a disgruntled person who didn't get coverage wouldn't have run, since they'd consider themselves a martyr (and realistically might not have long to live). https://example.com/ 691 401458 401458.401493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.37517370805142 0 \N \N f 443043846 \N 4 105843114 0 f f \N \N \N \N 401458 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443452 2025-03-19 11:06:32.851 2025-03-29 22:39:52.197 \N The Bisq Dashboard is excellent, thank you for creating that.\nhttps://bisq.markets\n\nHow did that come to be something added to Mempool? i.e., did Bisq request it, or you just wanted to scratch your own itch, or ??? https://example.com/ 21373 443381 443295.443336.443338.443381.443452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0957068700396 0 \N \N f 65707635 \N 1 193707872 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:21.633 f \N \N \N 0 0 0 0 1 0 0 443235 2025-03-19 07:41:11.136 2025-03-29 22:39:52.197 \N Setting up Albyhub. https://example.com/ 2776 442600 442084.442600.443235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9081923720128 0 \N \N f 270431400 \N 2 245461687 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424074 2025-03-03 20:09:44.243 2025-03-29 22:39:52.197 \N lol I'd switch off apple if it weren't for being so used to it. I can't really afford the cost of a transition.\n\nOne of you fellas is running linux on a macbook iirc. That'd probably be my first stop. https://example.com/ 10060 422981 422981.424074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.81771882691461 0 \N \N f 82988224 \N 1 114781446 0 f f \N \N \N \N 422981 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402556 2025-02-13 20:10:47.136 2025-03-29 22:39:48.901 What is culture? # What *is* culture?\n\nWe use the word all the time, but what is it actually? This is my take!\n\n### A system of complex systems\n\nCulture is the *most complex* systems of systems. They're more complex than even the free markets since they also include that which is non monetary. Also, since it includes all our bodies and personal processes, the complexity exceeds even this aspect.\n\nHow does a culture come into being? In short its a necessary, commonly agreed upon "layer" of reality, that emerges through often thousands of years wrangling with nature for survival.\n\n### The globalist era\n\nWhen people got the opportunity of traveling with relative easy and low risk things started changing for real. All sorts of very well adapted, local cultures started mixing, leading to a lot of misunderstanding and strife, but of course also more choice in what we adhere to, and learn from.\n\nThis is what made it possible for "the globalists" to manipulate virtually everything & everyone, a fact that so many are now waking up to.\n\n### Social media and manipulative tech\n\nThe past decade or so we've seen something new emerge: an artificial, global, highly manipulative and destructive *ersatz* or fake culture. This is new to *all* of us, and does not take into account all the endless variables and patterns that we had to adjust to in our respective areas of the globe through all of time.\n\nThe Bitcoin movement might be a healthier part of this movement, and also it might be better at adhering to the new, emerging, partially synthetic culture.\n\n### What will the future bring?\n\nThe complexity of getting that prediction right is staggering! Yet anyone who really want to be be prepared, understand, and get the major decisions right has to try...\n\nWhich is why I'm trying to get this project off the ground. In short I strongly believe that the sane, *old* should inform the synthetic *new*, regardless of where that goes :-)\n\nThat's it for now! \N 3683 \N 402556 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 2.47872750444419 0 \N \N f 336644083 \N 4 174878046 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 441247 2025-03-17 21:27:16.095 2025-03-29 22:39:48.901 🤠 Bitcoin Wild West with Keyan, Tony, and Topher moderated by PlebPoet \N https://youtu.be/yRTcMO7giiA 21338 \N 441247 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 18.84522718633 0 \N \N f 895640337 \N 6 61220706 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 434727 2025-03-12 07:36:55.396 2025-03-29 22:39:48.901 Book Review: The Inverse of Clown World (Knut Svanholm, Mises Institute) A goodie from earlier this year that went by pretty unnoticed among stackers and Bitcoiners alike. \n\n![](https://m.stacker.news/61928)\n\nhttps://authory.com/JoakimBook/Review-Bitcoin-The-Inverse-of-Clown-World-a616558fba80b4d8585db2615e355c2cd\n\n\n> The result isn’t a Bitcoin book, though there’s plenty of Bitcoin-related themes in it, rather radical skepticism, distrust in (fiat) authority, appeal to exit, and trust in technological solutions. The allure of _The Inverse of Clown World_ is to see that all the madness in the world—political grandstanding, gender delusions, the broad moral, fiscal, monetary, and political decay—calls out for an explanation. Most trends we see around us, from the latest social fad, to the outdated universities; along with troublesome regulations handed down by some glorified village buffoons that seem so obviously irrelevant and so obviously stupid. Why is that happening? How did it come to _this?_\n\nOriginal here: https://mises.org/mises-wire/review-bitcoin-inverse-clown-world\n(via Mises Institute) \N 7992 \N 434727 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.45626273107469 0 \N \N f 188943509 \N 2 82970314 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 01:53:15.639 f \N \N \N 0 0 0 0 2 0 0 1660 2022-09-21 19:17:05.682 2025-03-29 22:39:48.902 Jamie Dimon says he's done talking about bitcoin: 'I don't care' Yeah right. I was reading Digital Gold last night when I came across this quote by Wences Casares:\n> I think whatever Jamie does or doesn't do will be as relevant as what the postmaster general did or didn't do about email.\n\nI think bitcoiners have lost some of this indifference towards big banks with all this ETF stuff. https://www.cnbc.com/2024/01/17/jamie-dimon-says-hes-done-talking-about-bitcoin-i-dont-care.html 20562 \N 1660 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.812952365304 0 \N \N f 99405560 \N 1 235311158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407663 2025-02-18 09:27:19.343 2025-03-29 22:39:52.197 \N That node seems to be ranked high, they probably know what they are doing and keep most of the capacity in parallel unannounced channels. https://example.com/ 5377 407586 407018.407063.407581.407583.407586.407663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.699198244883945 0 \N \N f 651310534 \N 5 114030939 0 f f \N \N \N \N 407018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444403 2025-03-19 21:02:23.752 2025-03-29 22:39:52.197 \N This is fucking wild guys, SN is going to be hammered. https://example.com/ 882 444065 444065.444403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1812551024469 0 \N \N f 113533486 \N 1 247208715 0 f f \N \N \N \N 444065 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433321 2025-03-11 00:26:40.261 2025-03-29 22:39:52.197 \N The entire letter:\n\nhttps://lore.kernel.org/lkml/b98b29cf-27d9-49e0-b10b-1848399badfd@kittens.ph/T/#u\n\nKind of surreal https://example.com/ 2213 433317 433114.433317.433321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9453958744733 0 \N \N f 196023494 \N 1 94780604 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422222 2025-03-02 10:20:40.661 2025-03-29 22:39:52.197 \N This may not fully answer the question, but back when I used Reddit, it took me a while but I finally identified some subs that I used to enjoy but had become nothing but sources for anger and becoming upset. So I unsubscribed and felt much better https://example.com/ 6191 420918 420918.422222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.44662132194033 0 \N \N f 266231854 \N 2 33408784 0 f f \N \N \N \N 420918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432153 2025-03-10 01:41:49.253 2025-03-29 22:39:48.902 I lost my 'Lightning Virginity' last night ⚡🍒 With @ekyzis posting a reminder that it's a [good time to open Lightning channels](https://stacker.news/items/204661) the other night, I bit the bullet and attempted to withdraw some of my SN rewards to one of my hot wallets via Lightning. Here's my account of the experience...\n\nI posted [a story](https://stacker.news/items/188149) about how to cater for the weakest among us to road-test prototypes is a good idea. In that real-world situation they used a 'little old lady' to test how suitable prototype trains were. Well, last night, a bit of that 'little old lady' was lil ol' me!\n\nFirstly, I must admit that I was two-timing SN last night - I had a brief 'quickie' with the Bitcoin Magazine app and quickly withdrew my first sats via Lightning from them not SN. I know, I know I'm a tramp! But let's get back to my withdrawal experiences...\n\nI went for the QR code method first. I must admit i was Flummoxed - I couldn't work out how to introduce the QR code to the wallet. So, scratching my head to get inspiration I went for the full-on Heath Robinson solution...\n\n![Family meal Heath-Robinson style](https://image.invaluable.com/housePhotos/matsa/77/553777/H2604-L62662584.jpg)\n(Example of a Heath-Robinson 'solution')\n\n***Camera capturing QR code issue**"\nSadly, unlike in Heath-Robinson picture, I didn't deploy any pulleys in my solution. Instead, my labyrinthine solution was this (sigh) I took a photo of the QR code on my main phone with a secondary phone and then aligned the photo of the screen of the secondary under my main phone with the wallet using the camera to see the QR code. You gotta give me full marks for inginuity though - Heath Robinson himself would have been proud of me!\n\n***Max fee issue***\n*Although I'd done _some_ homework I made the n00b mistake of attempting to move an amount of sats that was too big for the default 10 sats - I only noticed the red feedback message "increase the fee amount" when I came back to the page from my hot wallet. I've a got a suggestion for the SN's devs - would it be possible for the withdrawal page to calculate/generate/show a suggested fee ***whilst/after the user types the withdrawal amount in?*** - so that in theory when each withdrawal size thresholds are reached a pretty accurate maximum fee suggestion could appear - so that user experience is a bit sweeter? Thanks.\n\nAlthough I failed four/five times I persevered and by following the red suggestion to increase the Max fee (far, far higher) I was pleased to see that it worked. Yay! But I had to do it four/five times boo! But I was going for about 50,000 sats at first (the withdrawal amount, not the fee!)\n\nWell, although, it was long-winded, maybe even stupid and dumb in the eyes of some - it did work!\n\nHowever, if someone could post the proper (less steam punk) solution to my problem, I'd be very grateful.\n\n***\nI did find the second (non SN QR) route of copying/pasting the invoice from the wallet's QR code to SN was the easiest for me - I tried that later. But I'd still like know the proper QR route using the camera...\n\nFor those trying to help who needs to know what wallet I was using it was the [OBW](https://github.com/nbd-wtf/obw) by fiatjaf - if I'm correct it's the same dev who developed Nostr!\n\n***Conclusion**"\nIt would be good to cater to the weakest/oldest/youngest of us. It'd also be nice if SN gave us a bigger, warm and fuzzy feeling when we do succeed in withdrawing - a novel congratulations message.\n\nBut again, thinking about my experience withdrawing from Bitcoin Magazine a little earlier, I don't remember there being any problem with guessing maximum fees there - so their whole withdrawal process went without a hitch. I think simpler _is_ better - especially if we're trying to onboard people.\n\nIt was only _then_ that I realized that the fee had found it's own level and I was charged far less than my proposed maximum. I guess this stems from people people running their own Lightning nodes and used to setting their fees. If this is the case, and the suggesting/calculating/displaying a max fee is too difficult, maybe have a 'simple' mode and an 'expert' mode choice?\n\nBTW I ***did*** look for OBW YouTube videos to do the above (and look on it's github page) but I guess as it's a recent fork of the older, (possibly more documented) SBW app - I could have looked for 'how to' videos related to SBW instead. My bad.\n\nOverall, as the goal of withdrawing _was_ accomplished in the end, the experience _was_ a pleasurable one - but that could be only because I kept on persevering. I've seen plenty of Bitcoin related videos that looked ridiculously difficult and that the videos comments have called out the process as being far too difficult. [This video](https://youtu.be/8JLn5ycDqLU) on inbound liquidity comes to mind. Darth certainly was right on advising people like me not to venture into _that_ part of the system (for our own good and for that of the system - just yet anyway 😰\n\nIt _would_ be great for as many apps and projects to have as many how-to videos as they can when people need help - especially when they're available on multiple media platforms (especially common ones like YouTube) as the Bitcoin space needs to encourage new people into the space, to disolve the mystique and to prove that even the average Jenny and Joe can use the space. \n\nI hope I've not bored you _all_ rigid. I hope that @k00b, @kr and @ekzyis make sense of what I've put. I just hope that posting a 'warts & all' account of my failures, success and overcoming my fear of losing precious sats might be useful.\n\nI _still_ haven't paid/opened a proper non-hosted channel yet though (I'm still on 'hosted' channels to get me to that space). I'll have to do a bit more research. If anyone can point me in the direction of a good video, that'd be great. 🧡 \N 692 \N 432153 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 4.54026504234285 0 \N \N f 162230205 \N 1 169908031 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422911 2025-03-02 19:22:53.929 2025-03-29 22:39:52.197 \N 1. Not yet, we currently work with multiple exchanges but are also in touch with some miners for some future collaboration\n2. We already do at Relai Private where HNWI and Business can acquire Bitcoin with us directly\n3. That could be interesting. You can already pay in BTC (and now lightning) from the app directly by just scanning any valid QR code https://example.com/ 20588 422895 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6479124687651 0 \N \N f 1881910490 \N 13 154480906 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435823 2025-03-13 02:00:13.524 2025-03-29 22:39:52.197 \N Well you can look at the delving bitcoin thread (the person who proposed this specific set of softforks likes delving bitcoin) \n\nhttps://delvingbitcoin.org/t/lnhance-bips-and-implementation/376/5\n\nYou should also look at each soft fork independently tho. \n\nCTV stuff https://utxos.org\n\nMore CTV stuff, but this time its a blog (specifically for CTV + CSFS): https://rubin.io/blog/2021/07/02/covenants/\n\nHonestly, just use the bitcoin search engine to search each BIP and read through the various links: https://bitcoinsearch.xyz https://example.com/ 2942 435679 435679.435823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1785469427187 0 \N \N f 198514988 \N 2 44388158 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 2025-03-19 22:45:26.533 f \N \N \N 0 0 0 0 1 0 0 402847 2025-02-14 06:21:07.752 2025-03-29 22:39:52.197 \N First blowjob. Will never forget it. Took 3 shots of tequila to get the taste out of my mouth. \n\nFor real though it’s when I fully grokked bitcoin- couldn’t sleep for weeks because it hit me so hard. https://example.com/ 19569 401726 401611.401671.401726.402847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.83599357606926 0 \N \N f 355899113 \N 3 223462778 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428426 2025-03-07 09:09:09.457 2025-03-29 22:39:52.197 \N People have been criticizing my joke that we won't even let Paul do any math in the frontend, it has to be converted to rust web assembly and added there. \n\nThis is why. JavaScript no math. https://example.com/ 1692 428292 428292.428426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.370571984049 0 \N \N f 509163192 \N 3 1064860 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457815 2025-03-28 18:15:46.42 2025-03-29 22:39:52.197 \N Contrary to what the antihuman technocrats want us to believe, having children is the best. Of course, they can be ungrateful and exhausting 😀 but:\n- they keep you focused on what is important\n- they remind you that you need to fight for their future\n- they prevent you from being nihilistic \n- they motivate you to teach and inspire them\n\nThere is a lot more to it... but, there is nothing like watching your kids grow into strong, independent, loving people...\n https://example.com/ 20588 457787 457787.457815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8827862311717 0 \N \N f 29245829 \N 1 243700553 0 f f \N \N \N \N 457787 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456562 2025-03-27 17:03:37.767 2025-03-29 22:39:48.902 Did Bitcoin hit ATH in your country FIAT currency? https://twitter.com/RobinSeyr/status/1757410774387929416?s=08\n\nBitcoin is now ATH in:\nLaos, Burundi, Malawi, Nigeria, Myanmar, Ethiopia, Pakistan, Cuba, Ghana, Egypt, Congo, Iran, Suriname, Sierra Leone, Turkey, Sudan, Syria, Argentina 👋, Lebanon and Venezuela.\n\nand now is hitting ATH in walthy countries like Sweeden.\nhttps://twitter.com/Stromens/status/1757485300509479044?s=08\n\nShare yours.\n \N 20490 \N 456562 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.85003311603052 0 \N \N f 138036213 \N 1 124813231 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436323 2025-03-13 13:22:35.313 2025-03-29 22:39:48.902 More Banks Will Fail \N https://www.discreetlog.com/banking-crisis/ 1105 \N 436323 \N \N \N \N \N \N \N \N art \N ACTIVE \N 21.2987808732928 0 \N \N f 1308245794 \N 10 244296926 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:46:42.451 f \N \N \N 0 0 0 0 9 0 0 422779 2025-03-02 17:30:06.082 2025-03-29 22:39:48.902 January 3rd is Proof of Keys Day How are you celebrating? \N 17696 \N 422779 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.6412711316457 0 \N \N f 442354235 \N 2 226591508 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427722 2025-03-06 15:24:38.93 2025-03-29 22:39:52.197 \N I was recently in NYC thought about going to pubkey but didn’t have time. \n\nIt looks like an awesome place but the crowd I’ll pass on. Definitely need more women. \n\n The lack of BTC payments are odd. I don’t buy this explanation:\n\n>Pacchia attributes the infrequent bitcoin transactions to the IRS rules that make each tab paid a taxable transaction.\n\nI think this IRS rule stuff is a cop-out for poor transaction volume in Bitcoin. People do stuff all the time and don’t think twice about the IRS. I think it’s better to just say people don’t want to spend Bitcoin then use this IRS boogeyman. \n\nMaybe next time I am in NYC I will go to pubkey and buy drinks with my Zeus wallet and if tor is down I’ll use my Munity wallet. https://example.com/ 1124 427574 427091.427540.427556.427574.427722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4179114143731 0 \N \N f 457045922 \N 4 51952061 0 f f \N \N \N \N 427091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455432 2025-03-27 02:30:02.923 2025-03-29 22:39:52.198 \N I was depressed. I am not letting someone lose their spirit of life again ! https://example.com/ 16347 455413 455413.455432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1987419289127 0 \N \N f 202955085 \N 1 73449606 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442639 2025-03-18 18:02:31.223 2025-03-29 22:39:52.198 \N is there etiquette for commenting on a post from random sort that might be really old, or do you just comment like normal https://example.com/ 11516 442628 442628.442639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5711126027159 0 \N \N f 1089765119 \N 8 43905555 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410497 2025-02-20 14:05:02.024 2025-03-29 22:39:52.198 \N Day 510 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 11590 410249 410249.410497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1040305609902 0 \N \N f 177643274 \N 1 23331400 0 f f \N \N \N \N 410249 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1657 2022-09-21 17:41:40.837 2025-03-29 22:39:52.198 \N I made my first trade using bisq and I was shocked how fast my order was taken. I will use more often https://example.com/ 2724 1656 1656.1657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9888365161513 0 \N \N f 65117480 \N 2 178141660 0 f f \N \N \N \N 1656 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449630 2025-03-23 13:06:17.64 2025-03-29 22:39:52.198 \N Go ahead with your questions fellow bitcoiners, we are available for the next hour. https://example.com/ 726 449601 449601.449630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4991950070177 0 \N \N f 1015077013 \N 11 23317377 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 1396 2022-09-13 17:25:21.441 2025-03-29 22:39:52.198 \N I always read new users bio and tip them if I consider that are on the right path (bitcoin, not shitcoining).\nAll depends also about the content they post here: good content = more sats, shitcoin posting = flags, no soup for you!\n\n@k00b another proposal to think about: will be nice to add the item no. when new user joined to SN and or have his first post. Also to have like a flag for at least 2-3 days as "new stacker" or something like that. https://example.com/ 13169 1395 1392.1395.1396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6106863510534 0 \N \N f 183632458 \N 1 110286180 0 f f \N \N \N \N 1392 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435411 2025-03-12 16:55:44.335 2025-03-29 22:39:48.902 Discuss this Quote- John Adams I first came across this quote in the HBO miniseries John Admas. (very good show by the way)\n\nWhen I heard it I was unsure if it was something that John Adams had actually said or if it was cleverly written to be dramatic by Hollywood screenwriters. I did some research and discovered it was written by John Adams in a letter his wife Abigail in April of 1777. \n\nThis is a quote I often think of when I observe how willingly people surrender their freedoms for perceived "security". \n\n“Posterity! you will never know how much it cost the present generation to preserve your freedom! I hope you will make a good use of it. If you do not, I shall repent in Heaven that I ever took half the pains to preserve it.” -John Adams\n\nWhat do you think of this quote? Have free societies of the west squandered their freedoms? How does it relate to bitcoin? Will early bitcoiners look back at the mass adoption era and think the masses squandered their freedoms by holding paper bitcoin and relying heavily on custodians?\n\nCheers,\nGR\n \N 15526 \N 435411 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.77571607334482 0 \N \N f 538065906 \N 5 110517464 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 10:19:04.309 f \N \N \N 0 0 0 0 2 0 0 414204 2025-02-23 18:12:49.159 2025-03-29 22:39:48.902 Spending Sunday - What Recent Bitcoin Purchases Have You Made? Let's hear some of your latest Bitcoin purchases, feel free to include links to the shops or merchants you bought from too.\n\nIf you missed our last thread, [here](https://stacker.news/items/395361) are some of the items stackers recently spent their sats on. \N 12870 \N 414204 \N \N \N \N \N \N \N \N movies \N ACTIVE \N 10.0675540510278 0 \N \N f 333518515 \N 2 215591214 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435920 2025-03-13 05:27:50.882 2025-03-29 22:39:52.198 \N Response to a crisis in oil prices and production \n\nNever create a new permanent department because of a temporary and manufactured crisis https://example.com/ 21091 435728 435657.435728.435920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9129529363997 0 \N \N f 796831275 \N 5 158840494 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 04:05:48.422 f \N \N \N 0 0 0 0 2 0 0 447950 2025-03-22 09:52:53.728 2025-03-29 22:39:52.198 \N The 1973 oil crisis called attention to the need to consolidate energy policy.[13][14][15] On August 4, 1977, President Jimmy Carter signed into law The Department of Energy Organization Act of 1977, (Pub. L.Tooltip Public Law (United States) 95–91, 91 Stat. 565, enacted August 4, 1977), which created the Department of Energy.\n\nPresident Carter created the Department of Energy with the goal of promoting energy conservation and developing alternative sources of energy. He wanted to not be dependent on foreign oil and reduce the use of fossil fuels.\n\n https://example.com/ 644 447944 447944.447950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.901252969291342 0 \N \N f 56656734 \N 1 46601125 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444453 2025-03-19 22:18:27.114 2025-03-29 22:39:52.198 \N > But the Breez SDK is so easy that even Idea Guys can build their own apps. There’s no reason to be intimidated by the technology anymore. A good idea is now worth a lot more because executing it has become so much easier\n\n🧡 https://example.com/ 1585 444444 443712.443834.444412.444416.444436.444444.444453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.253446192813023 0 \N \N f 220450122 \N 1 82581865 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435698 2025-03-12 22:12:15.447 2025-03-29 22:39:52.198 \N Bitcoiners and gold bugs alike do not wish for a global collapse. They simply recognize that the current system is unsustainable and will inevitably collapse without intervention. This is a common misconception. https://example.com/ 6430 435690 435690.435698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3534752303986 0 \N \N f 106211173 \N 1 137834697 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 2025-03-19 15:30:25.555 f \N \N \N 0 0 0 0 1 0 0 437319 2025-03-14 12:45:09.717 2025-03-29 22:39:52.198 \N My pre bitcoin self loved debt. I never used it to buy stuff, but I believed in the OPM(other people's money) theory in business. I would never use my own equity if I could borrow money for an investment, mainly real estate. It worked out for me. I managed my leverage. It would be fair to criticize me as a rent seeker who took advantage of the Cantillon Effect. I didn't realize that's what I was doing at the time. https://example.com/ 17148 437311 437233.437270.437311.437319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8778077504823 0 \N \N f 460417016 \N 4 100078319 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444416 2025-03-19 21:23:57.846 2025-03-29 22:39:52.198 \N > The Pollard’s Kangaroo interval ECDLP solver algorithm appears to be an attempt to break the SECP256K1 encryption which is used by Bitcoin to implement its public key cryptography. The TeamTNT group is using the computational power of the compromised targets to run the ECDLP solver.\n\nSo no, I don't think the headline is misleading. Only that "under attack" doesn't really mean much. They can try their luck if they want. I am confident in the underlying crypto.\n\nIn other words: Bitcoin's "encryption" has been under attack for ever https://example.com/ 1769 444412 443712.443834.444412.444416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6279546457997 0 \N \N f 664674694 \N 4 42273113 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410647 2025-02-20 15:28:59.806 2025-03-29 22:39:52.198 \N I honestly have no idea how Impervious Browser is always soon^TM coming but never a concrete timeline https://example.com/ 5779 410269 410269.410647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.263876388923 0 \N \N f 366425654 \N 3 63824639 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437513 2025-03-14 15:13:54.774 2025-03-29 22:39:52.198 \N Kinda surprised by this take. I won't belabor the point but @k00b is right. I will say measuring sats in their current fiat exchange rate value is kinda surprising to say the least. I guess you sold all your bitcoin already at the ath? https://example.com/ 12609 437508 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0714632210189 0 \N \N f 1045085889 \N 9 71583847 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428526 2025-03-07 11:28:55.52 2025-03-29 22:39:52.198 \N Lmao, stacker news sends an "notification ping" every couple seconds to "log your IP address" https://example.com/ 10611 428498 428292.428498.428526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.355854318684 0 \N \N f 46458476 \N 1 67230828 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414341 2025-02-23 20:11:20.953 2025-03-29 22:39:52.198 \N https://i.imgur.com/k2bGTSK.jpeg\nhttps://i.imgur.com/qKN1gF2.jpeg https://example.com/ 13177 413869 413854.413869.414341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4296040147209 0 \N \N f 69986312 \N 1 196215622 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435087 2025-03-12 13:03:03.065 2025-03-29 22:39:52.198 \N Sure, it needs to be easier to run a node. But bitcoin isn't free to use and that's not going to change whether or not we get core to run on a $1000 smartphone (which has a cost that needs to be paid for BTW) https://example.com/ 5746 435078 435073.435078.435087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3255729323273 0 \N \N f 256738695 \N 2 38398748 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 2025-03-19 06:21:57.866 f \N \N \N 0 0 0 0 1 0 0 421029 2025-03-01 11:12:04.064 2025-03-29 22:39:52.199 \N Wait, you guys have just one computer? https://example.com/ 17976 421018 421018.421029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2610841698247 0 \N \N f 77717980 \N 1 128169852 0 f f \N \N \N \N 421018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417021 2025-02-26 02:11:26.55 2025-03-29 22:39:52.199 \N Many times, it's a great read. This actually applies generally to most revolutionary papers, they are easily distinguishable from blah papers due to the fact that they _are trying to tell you something_, whereas the blah papers _are trying to convince you they're telling you something_.\n\nI recommend checking out some Einstein papers to see what I mean. You might not get the full meaning if you don't have a physics background, but you'll see that he uses very simple, concise language. **Because he wants you to understand his idea!** The same is true for Satoshi. My favorite of Einsteins is just 3 pages long. Here's a link for the interested, the title is [Is There a Gravitational Effect Which Is Analogous to Electrodynamic Induction](https://filetransfer.io/data-package/Z6nAF5Vc#link). Here is the first couple paragraphs of it: ![Einstein writing](https://imgprxy.stacker.news/e5AJHS3S1OQGxDHYz24O3NtEnPJyhsB41V5nAvwbCbE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9pb1drcWFGLnBuZw)\n\nNotice how he doesn't try to dazzle you with large words.\n\n\nCompare this to something like the [RGB "black" paper](https://blackpaper.rgb.tech/) (a silly crypto project imo) It doesn't _try to tell you something_, it tries to _tell you that it's telling you something_. https://example.com/ 20993 416536 416536.417021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4034647831733 0 \N \N f 21917634 \N 1 105057325 0 f f \N \N \N \N 416536 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402482 2025-02-13 19:00:11.298 2025-03-29 22:39:52.199 \N ![.](https://bitcoinmemes.info/assets/images/210.png) https://example.com/ 12774 402457 402457.402482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7365834105905 0 \N \N f 60012665 \N 1 174134214 0 f f \N \N \N \N 402457 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435037 2025-03-12 12:18:06.458 2025-03-29 22:39:52.2 \N I'm so happy this exists. It is an excellent demonstration of the principle "your node, your rules" and it is pretty easy to modify the bash script to enforce other conditions too. You can modify it to enforce bip300, or CTV, or any other soft fork really. Though meant as a joke, it's a genuinely wonderful idea imo and I want to do some videos outlining how it works and how to expand upon it for more purposes. https://example.com/ 1003 434991 434991.435037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.28936310128549 0 \N \N f 177658176 \N 1 241989380 0 f f \N \N \N \N 434991 \N 0 0 \N \N f \N 2025-03-19 06:08:00.077 f \N \N \N 0 0 0 0 1 0 0 448035 2025-03-22 11:05:26.384 2025-03-29 22:39:52.2 \N Great post, thank you. I vote to replace Decentralized with Distributed https://example.com/ 14650 448029 448029.448035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.530398490524 0 \N \N f 67005491 \N 1 219029995 0 f f \N \N \N \N 448029 \N 0 0 \N \N f \N 2025-03-29 16:06:45.807 f \N \N \N 0 0 0 0 1 0 0 408039 2025-02-18 14:41:31.153 2025-03-29 22:39:52.2 \N ![Screen Shot 2022-11-19 at 10.52.31 AM.png](https://m.stacker.news/4225) https://example.com/ 21451 408026 407903.407928.407976.408016.408026.408039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4340737182531 0 \N \N f 419379475 \N 3 188730300 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437497 2025-03-14 15:04:51.53 2025-03-29 22:39:52.198 \N They arrested the developer of Tornado Cash\nI bet they'll give him more than a lash\nDetained for running code in a terminal, like bash\nThis is sure to cause a big splash https://example.com/ 1823 437465 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3229526468556 0 \N \N f 1516039838 \N 12 135030388 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436024 2025-03-13 08:41:55.926 2025-03-29 22:39:52.199 \N There's a concept in economics called "lexicographic preferences". It's basically when someone has such a strong preference for something that they won't make any tradeoffs regarding that thing: i.e. they'll take whatever amount of that thing they can and then move on to their less preferred goods.\n\nMy sense is that many women have a lexicographic preference for pro-abortion policies and they'll vote for the pro-abortion option, regardless of what else it's bundled with.\n\nI don't know how the left achieved this trick, but it's a very strong political force. Where I think they may have screwed up this election is allowing abortion protections onto state ballots. That allowed women to separate their abortion preference from Kamala. They could secure the abortion policy they wanted, without having to opt into all the other bad economic and social policies that normally come with it. https://example.com/ 15337 436014 435907.436014.436024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.58477434825253 0 \N \N f 59524373 \N 2 244282064 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 07:10:53.562 f \N \N \N 0 0 0 0 2 0 0 437774 2025-03-14 21:42:28.022 2025-03-29 22:39:52.199 \N A small child could swim through the veins of a blue whale. https://example.com/ 10719 437714 437714.437774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7388573675562 0 \N \N f 174478629 \N 1 119148777 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436383 2025-03-13 14:13:43.362 2025-03-29 22:39:52.199 \N BTW, I keep forgetting to ask you this. I couldn't explain well what I was trying to talk to you about a few weeks ago. How hard would it be to just add another type post to the menu which would be an exact duplicate of a discussion post except with perpetual editing allowed? I'm not sure what to call it. Maybe "index?" \n@DarthCoin, are you here for input too? Remember the other day we talked about this? https://example.com/ 3377 436040 435907.436019.436040.436383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2595140021479 0 \N \N f 162721941 \N 1 77303251 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 10:42:50.961 f \N \N \N 0 0 0 0 1 0 0 240894 2024-09-19 04:33:57.349 2025-03-29 22:39:52.199 \N IMHO, "Responsible disclosure" is a bad term, it kind of attaches the responsibility of the problem to the person that found it. In my view "[Coordinated disclosure](https://en.wikipedia.org/wiki/Coordinated_vulnerability_disclosure)" is a much better term. \n\nOne suggestion is that instead of assuming that everybody will read the source code and be aware of that message in the "readme" file, perhaps having a [security.txt](https://securitytxt.org/) can be more helpful, since it is becoming more and more standard. https://example.com/ 21091 239328 239231.239323.239328.240894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.79227587062404 0 \N \N f 74229268 \N 1 221188823 0 f f \N \N \N \N 239231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404826 2025-02-16 08:51:21.071 2025-03-29 22:39:48.903 Rant: the blocksize war propaganda has lead to myths There are now people, maybe a majority of Bitcoiners, who genuinely believe that spinning up non-mining nodes helps secure the network. How do we undo this? I mean, that's just technically wrong and yet so many people now believe it. Running a non-mining node has close to zero effect on the network, it's something you should do for yourself, to validate transactions. Rant over. \n\nWhy do I care? There are literally people now wasting time and money running multiple non-mining nodes in their basement thinking they are contributing to the network.\n\nHappy to debate if someone has real arguments in favor of non-mining nodes "securing" the network. \N 666 \N 404826 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.7407008556876 0 \N \N f 176272069 \N 2 161690492 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455080 2025-03-26 18:25:54.309 2025-03-29 22:39:48.903 Surviving 10 days without our bank accounts in Costa Rica! \N https://youtu.be/jLaIk0aJDb0 9758 \N 455080 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 0.143712052940934 0 \N \N f 338523040 \N 3 55170597 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 410219 2025-02-20 11:03:05.859 2025-03-29 22:39:48.903 Books And Articles Newsletter, Issue 40 ![](https://m.stacker.news/63607)\n\n### News Of The Week \n\nWelcome to the Books And Articles newsletter. Thanks for all of the quality posts.\n \nSorry about the delay in getting out the newsletter. Vacation and the time zone changes set me back. There were a bunch of great posts while I was gone. This week the top two posts of the past fourteen days will share all of the sats. \n\nThis newsletter is getting a little long. I think it’s time for some consolidating. I would like to start by organizing the book reviews into their own posts by topic, author, etc. If anyone wishes to volunteer to organize a category or two, I’ll zap your post a few sats and it will earn a permanent place in the newsletter. Now that my daughter @moonbeetle has joined SN, maybe she’ll help out her dear old dad. \n\nHappy reading!\n \n\nAs always, please reply with suggestions and opinions on how to make this territory better. \n\nLogo design by @plebpoet\nLink to last week’s newsletter: \nhttps://stacker.news/items/750790/r/siggy47\n\n\n### Top Ten Posts Of The Past Two Weeks \n\nHere they are:\n\n- [Competition and trust in the private provision of money | Article Review](https://stacker.news/items/764363/r/siggy47) by @SimpleStacker\n\n- [Lyn Alden is looking for Beta Readers for her Sci-Fi Cyber punk novel!](https://stacker.news/items/767236/r/siggy47) by @realBitcoinDog\n\n- [Prose piece | The storm](https://stacker.news/items/753425/r/siggy47) by @carlosfandango\n\n- [Short story | The motel](https://stacker.news/items/762852/r/siggy47) by @carlosfandango\n\n- [Book Review: The Inverse of Clown World (Knut Svanholm, Mises Institute)](https://stacker.news/items/760879/r/siggy47) by @denlillaapan\n\n- [Book Review: The Nixon Conspiracy](https://stacker.news/items/755166/r/siggy47) by @jbschirtzinger\n\n- [book review - "Why We Sleep: Unlocking the Power of Sleep and Dreams](https://stacker.news/items/765880/r/siggy47) by @stack_harder\n- [Book Review: Nuclear Transmutation--The Reality of Cold Fusion](https://stacker.news/items/766174/r/siggy47) by @jbschirtzinger\n\n- ['you read a lot of books about money, but you're not rich'](https://stacker.news/items/753096/r/siggy47) by @stack_harder\n\n- [Check out the #1 bestseller in Gothic Romance on Amazon](https://stacker.news/items/760698/r/siggy47) by @Scoresby\n\n\n\n### Siggy’s Suggestions\n\nNone this week because there are ten top posts.\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n- ["Who are you?" — How do I want to answer?](https://stacker.news/items/674910/r/siggy47) by @IamSINGLE\n\n- ["My journey with Bitcoin: the experience of an ordinary Cuban"](https://stacker.news/items/676287/r/siggy47) by @BTCLNAT\n\n- [@realBitcoinDog Bitcoin Story - No, social media had nothing to do with it xD](https://stacker.news/items/722720/r/siggy47) by @realBitcoinDog\n\n\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n- [And Then She Disappears - Block 1](https://stacker.news/items/680735/r/siggy47) by @ginkgo\n\n### Book Reviews\n\n- [book review - "Why We Sleep: Unlocking the Power of Sleep and Dreams](https://stacker.news/items/765880/r/siggy47) by @stack_harder\n\n- [Forgotten Genius: A Maverick of Electrical Science](https://stacker.news/items/743415/r/siggy47) by @cascdr\n\n- [Book Review, Nate Silver's On the Edge](https://stacker.news/items/735212/r/siggy47) by @denlillaapan\n\n- [Book Review: The Inverse of Clown World (Knut Svanholm, Mises Institute)](https://stacker.news/items/760879/r/siggy47) by @denlillaapan\n\n- [The Mandibles by Lionel Shirver](https://stacker.news/items/719755/r/siggy47) by @21futures\n\n- [Book Review | Catcher in the Rye - Better the second go around as an adult](https://stacker.news/items/709553/r/siggy47) by @realBitcoinDog\n\n- [Book Review | The Diving Bell and the Butterfly](https://stacker.news/items/706975/r/siggy47) by @carlosfandango\n\n- [Book Review | Black Coffee Blues by Henry Rollins](https://stacker.news/items/722727/r/siggy47) by @carlosfandango\n\n- [Book review | ‘Russia: Revolution and Civil War 1917-1921’ by Anthony Beevor](https://stacker.news/items/735044/r/siggy47) by @carlosfandango\n\n- [The Underground Man by Dostoevsky](https://stacker.news/items/707544/r/siggy47) by @Nadia\n\n- [Emil Cioran: 'The Fall into Time ("Sturz in die Zeit" in German)](https://stacker.news/items/694642/r/siggy47) by @TomK\n\n- [Book Review: The Book of Elsewhere, by China Mieville and Keanu Reeves](https://stacker.news/items/697427/r/siggy47) by @jurraca\n\n- [Book Review: The Player of Games, by Iain M. Banks](https://stacker.news/items/746463/r/siggy47) by @jurraca\n\n- [A Journey Through Emiko Jean's The Return of Ellie Black](https://stacker.news/items/691236) by @Melisa\n\n- [what i read, and wrapping up in july:](https://stacker.news/items/630204/r/siggy47) by @speakingyourtruth\n\n- [Book Review: Nothing Like The Movies by Lynn Painter](https://stacker.news/items/670569/r/siggy47) by @speakingyourtruth\n\n- [The Mandibles: A Review](https://stacker.news/items/668210/r/siggy47) by @jimmysong\n\n- [Self-Reliance by Emerson](https://stacker.news/items/669132/r/siggy47) by @ek\n\n\n- [Book - The Victorian Internet by Tom Standage (1998)](https://stacker.news/items/673776/r/siggy47) by @Signal312\n\n- [Review: The Righteous Mind](https://stacker.news/items/665765/r/siggy47) by @Undisciplined\n\n- [Book Review: Sliced Americana](https://stacker.news/items/663627/r/siggy47) by @jbschirtzinger\n\n- [Saboteurs: How Secret, Deep State Occultists Are Manipulating American Society](https://stacker.news/items/675002/r/siggy47) by @jbschirtzinger\n\n- [The New Manners and Customs of Bible Times](https://stacker.news/items/691719) by @jbschirtzinger\n\n- [Book Review: The Nixon Conspiracy](https://stacker.news/items/755166/r/siggy47) by @jbschirtzinger\n\n- [Book Review: Q By Luther Blisset](https://stacker.news/items/728848/r/siggy47) by @jbschirtzinger\n\n- [Book Review: Nuclear Transmutation--The Reality of Cold Fusion](https://stacker.news/items/766174/r/siggy47) by @jbschirtzinger\n\n\n- [Book Review | “The Tools of Leadership”](https://stacker.news/items/749605/r/siggy47) by @cryotosensei\n\n- [Book Review | The Magic School Bus Expedition Down Under](https://stacker.news/items/744786/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Happiness Project” and “Happier at Home”](https://stacker.news/items/718985/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Self-Motivated Kid”](https://stacker.news/items/705694/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Perks of Being a Wallflower”](https://stacker.news/items/704856/r/siggy47) by @cryotosensei\n\n- [Book Review | “101 ways to bring out the best in your children & yourself”](https://stacker.news/items/667453/r/siggy47) by @cryotosensei\n\n- [Book Review | “Diary of a Wimpy Kid”](https://stacker.news/items/668335/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Daily Dad” by Ryan Holiday](https://stacker.news/items/684138/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002) by @cryotosensei\n\n- [Book Review | “The 17 Indisputable Laws of Teamwork”](https://stacker.news/items/687944) by @cryotosensei\n\n- [Book Review | “Wonder Doodles”](https://stacker.news/items/685335) by @cryotosensei\n\n- [Book Review | “Sompo Guide Tokyo”](https://stacker.news/items/702025/r/siggy47) by @cryotosensei\n\n- [Book Review | “Peak”](https://stacker.news/items/698568/r/siggy47) by @cryotosensei\n\n- [Book Reviews Directory #2](https://stacker.news/items/665395/r/siggy47)\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Bitcoin Academic Articles & Reviews\n\n- [Bitcoin Pricing, Adoption, and Usage: Theory and Evidence | Article Review](https://stacker.news/items/727081/r/siggy47) by @SimpleStacker\n\n- [Minneapolis Fed Bitcoin Paper | Article Review](https://stacker.news/items/734528/r/siggy47) by @SimpleStacker\n\n- [Bitcoin: What Does Mainstream Economics Have to Say? | Article Review](https://stacker.news/items/745057/r/siggy47) by @SimpleStacker\n\n- [Competition and trust in the private provision of money | Article Review](https://stacker.news/items/764363/r/siggy47) by @SimpleStacker\n\n\n### Movie & Television Reviews\n\n- [Sound of Freedom | Movie Review](https://stacker.news/items/710780/r/siggy47) by @SimpleStacker\n\n- [Movie Review | “How to make millions before Grandma dies”](https://stacker.news/items/683086/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [El Encargado | Argentinian TV series | very good comedy](https://stacker.news/items/689468/r/siggy47) by @DarthCoin\n\n- [The IT crowd | hillarious super funny comedy TV series](https://stacker.news/items/694922/r/siggy47) by @DarthCoin\n\n- [Two TV series about the "Schrodinger's cat" theory](https://stacker.news/items/701874/r/siggy47) by @DarthCoin\n\n- [From | Que sera, sera... | new season 3 TV series](https://stacker.news/items/696122/r/siggy47) by @DarthCoin\n\n- [Bingeworthy: Slow Horses](https://stacker.news/items/734282/r/siggy47) by @StillStackinAfterAllTheseYears\n\n\n\n\n### Essays\n\n- [Prose piece | Running](https://stacker.news/items/744729/r/siggy47) by @carlosfandango\n\n- [Prose piece | The storm](https://stacker.news/items/753425/r/siggy47) by @carlosfandango\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Sorelle](https://stacker.news/items/747511/r/siggy47) by @Myshkin\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [a new kind of poem (that you can see 👀 and hear 🦻)](https://stacker.news/items/676672/r/siggy47) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n- [Let's pretend we loved each other](https://stacker.news/items/666008/r/siggy47) by @Nadia\n\n- [That's MINE! Poetry.](https://stacker.news/items/661773/r/siggy47) by @Malach17\n\n- [Silly rhymes written by a guy (maybe) fallen in love](https://stacker.news/items/666985/r/siggy47) by @0268a5c238\n\n\n\n### Short Stories\n\n- [Short story | The motel](https://stacker.news/items/762852/r/siggy47) by @carlosfandango\n\n- [The poet and the reader || short story](https://stacker.news/items/723702/r/siggy47) by\n@02879c7d869\n\n- ['little fictions' presents: Cowboys Don't Belong](https://stacker.news/items/713535/r/siggy47) by @plebpoet\n\n- [Short Story: “Quarter” by Eduardo Prospero](https://stacker.news/items/713942/r/siggy47) by @eduardopro\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 16124 \N 410219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.4700368790333 0 \N \N f 675458736 \N 4 235596751 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 444397 2025-03-19 20:55:26.919 2025-03-29 22:39:52.199 \N Which countries do you think will be most stable & well equipped during this tumultuous period?\n\nBearing in mind strength of currency, resources, debts, trade deficits - are there any jurisdictions you are actively considering diversifying to (outside the U.S)? Ones where perhaps you think stagflationary trends will be felt the least? https://example.com/ 15521 443399 443399.444397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.31961271532091 0 \N \N f 175979495 \N 1 203902823 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424227 2025-03-03 22:44:26.625 2025-03-29 22:39:52.199 \N Increase the blocksize limit…\n\n\n\nI won. https://example.com/ 2789 424115 424115.424227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1337686942027 0 \N \N f 2144692 \N 1 61857771 0 f f \N \N \N \N 424115 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 239328 2024-09-17 12:11:10.823 2025-03-29 22:39:52.199 \N How do you envision the world of 2030-2040 ? https://example.com/ 1411 239323 239231.239323.239328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0884149864716 0 \N \N f 295418091 \N 2 55875776 0 f f \N \N \N \N 239231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458345 2025-03-29 08:11:57.172 2025-03-29 22:39:52.199 \N If you click on ..., I think you'll be able to see it better\n\n![v45v6.PNG](https://m.stacker.news/18704) https://example.com/ 1650 458305 458288.458305.458345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7166018196854 0 \N \N f 141910767 \N 1 34279126 0 f f \N \N \N \N 458288 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455628 2025-03-27 08:31:15.534 2025-03-29 22:39:52.199 \N There is no such thing as a "decentralized stablecoin". If it's a stablecoin, there must be some central entity backing it. Alternatively, if there is some algorithm that controls the supply based on the exchange rate, there must be some central oracle that reports (signs) the exchange rate on-chain. https://example.com/ 20811 455531 455525.455531.455628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.59354354666473 0 \N \N f 473687694 \N 2 22555490 0 f f \N \N \N \N 455525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 452856 2025-03-25 14:21:50.545 2025-03-29 22:39:52.199 \N Yeah wonderful questions!\n\n**Tldr; exclusivity, small scale, and art (as hobby on the side).**\n\nWhat's so liberating about this perspective is that instead of thinking of music as work and a difficult (globally accessible) industry to make it in, it becomes art -- and much more localized.\n\nMy village has a surprisingly active music scene (given its size), with a few musicians putting up performances (with like 10 people in audience) or inviting their friends from elsewhere to play. It's usually all donation based and those in attendance are happy to part with money for exclusivity -- and direct support of artists.\n\nThey all have real jobs on the side, realizing that their art is a passion, not an economic value-add. \n\nBut yeah, wavlake and special performances on Nostr etc would be one way to go. \n\nIn an informational overload era of next-to-infinite supply and very limited demand (and even less limited dollars), you have to realize that however good you think your stuff is, it's probably not _that_ good globally speaking. \n\nAccess, or local in-the-here-and-now, on the other hand -- very different story.\n\n\n https://example.com/ 2088 336322 335484.335562.335591.335690.335721.335729.335791.336308.336318.336322.452856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3328027918396 0 \N \N f 913063960 \N 6 4547485 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416765 2025-02-25 20:33:06.813 2025-03-29 22:39:48.904 Where have you personally witnessed a budding Bitcoin circular economy? I personally have yet to experience first-hand Bitcoin adoption while abroad and see how small communities are using it, but am very curious to hear the stories of other stackers.\n\nIn your travels around the world, have you come across communities where Bitcoin adoption is growing and helping their situation? \n\nHow has the Bitcoin circular economy there helped them?\n\nAlso wondering if there's a way/incentive to onboard representatives from these communities to SN for AMAs, Satsraisers, etc..\n\nHappy Monday! \N 6430 \N 416765 \N \N \N \N \N \N \N \N health \N ACTIVE \N 22.4993635097867 0 \N \N f 149095833 \N 1 191066613 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441866 2025-03-18 10:44:41.854 2025-03-29 22:39:48.904 Bitcoin Maxi Cat against shitcoiner https://media.primal.net/uploads/0/59/ca/059caca32645f69f559827f59f646ce44173b7d5c4cbbd55fb9f08708633d9dc.mp4\n\n*testing embedded videos on SN* \N 16680 \N 441866 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 1.1669285372275 0 \N \N f 186214140 \N 2 34972759 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 409812 2025-02-19 22:03:00.511 2025-03-29 22:39:48.905 Ditching the Phone Hey Freaks,\n\nTheWildHustle is about 3 seconds away from ditching his ifoan \n\nInstead of opting for graphene, Hustle is thinking about ditching the phone all together, and using a VOIP provider with his laptop. \n\nHustle understands that calls and texts will be seen and heard by the looters regardless, and doesnt understand what threat model he's solving for.......but wants to explore life without a cell phone anyway.\n\nHe's sure there might be some privacy and security benefits, but it seems as though he's mainly just focused on sticking it to "the man". \n\nAny good/cool resources will be handsomely zapped. \n\nMuch Appreciated, \nHustle \N 634 \N 409812 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9078138376593 0 \N \N f 249162483 \N 1 217509556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457836 2025-03-28 18:37:44.288 2025-03-29 22:39:52.199 \N This is exactly why money needs to be separated from the state. We're all getting fleeced. https://example.com/ 7760 457655 457655.457836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3979545537523 0 \N \N f 358539849 \N 2 101635883 0 f f \N \N \N \N 457655 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422470 2025-03-02 13:12:18.668 2025-03-29 22:39:52.199 \N Can I just say that I see you all the time making quality contributions here. I think you may be cheating yourself of sats with your method. You will earn far more by tipping more. Build up some more sats, then tip quality posts early. For more details, check @Natalia's recent post. It really pays to pay others before yourself, as crazy as that sounds.\nAs an example, the first thing I do in the morning is donate a load of sats to the site. It's not completely out of the goodness of my heart. First of all, then I don't need to worry about my cowboy hat. Secondly, I know I have a chance to earn it back with good tipping and posting throughout the day. https://example.com/ 2593 422056 422056.422470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.10437485301138 0 \N \N f 336431200 \N 5 150274295 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 395604 2025-02-08 16:05:29.108 2025-03-29 22:39:52.199 \N I grow increasingly more inspired to do one of those week-long silent retreats. I think it might kill me but if it didn't, I would emerge a god. https://example.com/ 20849 395348 395348.395604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0139942216271 0 \N \N f 182621051 \N 2 56007603 0 f f \N \N \N \N 395348 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443350 2025-03-19 09:30:41.705 2025-03-29 22:39:52.199 \N lol he wore the hat 🙌 https://example.com/ 1298 443331 443105.443193.443331.443350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5953676574977 0 \N \N f 600911414 \N 4 142451213 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 155481 2024-04-09 17:32:53.209 2025-03-29 22:39:48.907 Early Bitcoin Investor Roger ver aka( Bitcoin Jesus) Charged with Tax Fraud \N https://www.justice.gov/opa/pr/early-bitcoin-investor-charged-tax-fraud 2156 \N 155481 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.6516033178027 0 \N \N f 57490595 \N 1 11613092 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441211 2025-03-17 20:52:58.177 2025-03-29 22:39:52.199 \N Is this the one?\n\nhttps://youtu.be/zTDeEJyCmNA?si=fdmtxnEbs3qo4XYN https://example.com/ 4345 441130 440692.441011.441130.441211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.26383632600538 0 \N \N f 612573897 \N 5 158665180 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448232 2025-03-22 13:53:10.498 2025-03-29 22:39:52.199 \N People, this post is a sequel to this other post that contains a very telling video --> https://stacker.news/items/241855\n\nPlease watch both before commenting. https://example.com/ 1534 448200 448200.448232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1909414048138 0 \N \N f 886873098 \N 5 234641182 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N 2025-03-29 08:39:15.184 f \N \N \N 0 0 0 0 3 0 0 458207 2025-03-29 05:33:48.955 2025-03-29 22:39:52.199 \N https://imageupload.io/ib/RKHErLuaxp0OH8N_1699275021.jpg https://example.com/ 14941 458026 454221.454235.458026.458207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1510029021061 0 \N \N f 76105811 \N 2 98287888 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407583 2025-02-18 08:04:16.213 2025-03-29 22:39:52.199 \N While practically speaking, it's true that deprivation can boost subsequent pleasure, if we accept this frame, does that not make wire-heading - a technology enabled, ultimate and eternal pleasure state - as the goal for humans? Again within this philosophical framing: fasting and other forms of discipline simply become primitive attempts at maximizing the sum of pleasures experienced over a long time period.\n\nOnly by going outside the hedonic framework, that's where I think you start to see other interesting things that discipline and sacrifice give you: Budhist 'elimination of desire' and Spinozan 'capacity to act' and certainly many others. George Hotz had some interesting ideas about this in a recent write up as well [1].\n\n[1]: https://return.life/2022/03/07/george-hotz-comma-ride-or-die/ https://example.com/ 2322 407581 407018.407063.407581.407583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.34984297729539 0 \N \N f 871463751 \N 7 221170254 0 f f \N \N \N \N 407018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408116 2025-02-18 15:14:13.102 2025-03-29 22:39:52.2 \N Wumbo's personal advice:\n\n- Start with a full PC. Don't go the raspberry Pi route. You can find a used mini pc on amazon for $200. Which is faster than raspberry pi\n- Start9 OS is good option for the OS. Nothing wrong with umbrel but supports limited chip sets.\n- When in doubt open a few large channels vs many small channels.\n- When vetting who to open channel to, look at Average Age Channel and recent closed channels of nodes that you are thinking of connecting to. You want avg age to be large (they keep channels open for a while). For recent closed channels make sure there are not to many force closes. You can use amboss.space as a resource. https://example.com/ 3456 407777 407777.408116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00352020332232 0 \N \N f 232566284 \N 2 21172590 0 f f \N \N \N \N 407777 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443351 2025-03-19 09:32:05.157 2025-03-29 22:39:52.2 \N Too many red flags.\nNo information about the entity providing the service, talking about crypto, yields, fiat... https://example.com/ 17494 443335 443105.443282.443286.443335.443351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1437492625234 0 \N \N f 276691060 \N 2 147227667 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 2025-03-26 04:10:01.197 f \N \N \N 0 0 0 0 1 0 0 444285 2025-03-19 18:48:53.206 2025-03-29 22:39:52.2 \N Does SN have investors that supply the capital for bounties, hosting, etc? https://example.com/ 20185 436884 436683.436833.436853.436884.444285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1315607446532 0 \N \N f 115839809 \N 1 180658737 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434362 2025-03-11 20:25:33.154 2025-03-29 22:39:52.2 \N Lol you're a shitcoining shitlib and don't even understand how bitcoin works. https://example.com/ 20669 434319 434319.434362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4423194422369 0 \N \N f 212713963 \N 2 221861749 0 f f \N \N \N \N 434319 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444137 2025-03-19 17:27:10.902 2025-03-29 22:39:52.2 \N your own subreddits/tags? I'M IN https://example.com/ 18901 444112 444112.444137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3657072997445 0 \N \N f 139407511 \N 1 173360522 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435155 2025-03-12 13:58:07.407 2025-03-29 22:39:52.2 \N **"Do not listen to "men" with open mouth disease"**\n\n![](https://m.stacker.news/63743) https://example.com/ 19576 435023 434958.435023.435155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2211195061992 0 \N \N f 4458504 \N 1 133230919 0 f f \N \N \N \N 434958 \N 0 0 \N \N f \N 2025-03-19 07:21:03.448 f \N \N \N 0 0 0 0 1 0 0 435290 2025-03-12 15:20:23.501 2025-03-29 22:39:52.2 \N A lot of different things. Spent a lot of time reading and listening to both eth and bitcoin content. Trace Mayer and his network effects made sense, the Bitcoin Standard and seeing all the Bitcoin only services/content/hardware. Also broken promises of Eth and understanding the immaculate conception of Bitcoin. https://example.com/ 21172 435239 434795.434798.435179.435194.435204.435239.435290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.44334643390847 0 \N \N f 524286178 \N 5 99554782 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 08:58:20.077 f \N \N \N 0 0 0 0 1 0 0 3039 2022-10-23 19:10:34.094 2025-03-29 22:39:52.2 \N Answers.\n\n1. No. I think it's a case of both nodes having to be able to communicate to set the fee-rate. If one channel partner is unreachable, there is no way that the other partner can be guarenteed to close the channel within the accepted parameters of both nodes fee policies.\n\n2. Thunderhub, doesn't know for sure what the state of channels are (reachable/unreachable) at the time before you submit a request to either unilaterally or cooperatively close. \n\nIf you try to doit when a channel is unreachable, it'll assume it is and let you attempt to propse a fee-rate and then attempt to execute it. But you'll receive an error like:\n\nUnexpectedCloseChannelErrorr. unable to gracefully close channel while peer is offline (try force closing it instead): channel link not found\n\ni.e, it just won't allow it. You'd have to force close and accept the unknown fee-rate estimation. https://example.com/ 19826 3037 2990.2999.3035.3037.3039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4272550505169 0 \N \N f 349439658 \N 3 98635036 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423709 2025-03-03 14:50:11.543 2025-03-29 22:39:52.2 \N My rent came due, and I finally, moments ago, ponied up the 3m. Wish I would have fucking done it day 1, it's enough to hurt now. \n\nI guess also a statement about how invested I feel in this place. Will be interesting to see how my feelings evolve now that I'm committed to this level. The first thing I've observed is the reflexive "I just paid it, don't you dare lower the price" thing that I hate when other people do -- pulling the ladder up, as it were.\n\nFresh introspective wisdom -- that 3m at work. https://example.com/ 17824 423437 423362.423437.423709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1859507518112 0 \N \N f 151227238 \N 1 226783284 0 f f \N \N \N \N 423362 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421925 2025-03-02 05:14:54.733 2025-03-29 22:39:52.2 \N My dad, though if he was still around he would probably be skeptical of bitcoin. He was naturally skeptical of everything. He always went against the grain. In a family/neighborhood of Roosevelt worshipping Italian immigrants, he was a Republican. He almost got disowned by his in laws for supporting Nixon over Kennedy. \nHe was naturally distrustful of the government, regardless of party. When the U.S. removed silver from coins, he hoarded the old stuff. https://example.com/ 14452 421855 421720.421840.421855.421925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3096579022702 0 \N \N f 878783284 \N 6 174024554 0 f f \N \N \N \N 421720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443867 2025-03-19 14:51:04.113 2025-03-29 22:39:48.907 What You Get After Running an SSH Honeypot for 30 Days \N https://blog.sofiane.cc/ssh_honeypot/ 21019 \N 443867 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.3828031037186 0 \N \N f 190015934 \N 3 94952196 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421316 2025-03-01 15:18:51.612 2025-03-29 22:39:48.907 What's the best defense against a $5 wrench attack? There is only one correct answer \N 21281 \N 421316 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.3265700467121 0 \N \N f 18370327 \N 1 75125580 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402936 2025-02-14 09:15:44.264 2025-03-29 22:39:52.2 \N The obvious benefit to the spec is easier integrations for wallet or system builders into LSPs. Of course it will be positive when it becomes completely integrated across the ecosystem. Second-order effects could likely be more participation from new players in providing liquidity. More LSPs, more liquidity, etc. https://example.com/ 644 402847 401611.401671.401726.402847.402936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3495834037451 0 \N \N f 135821851 \N 2 220077262 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435950 2025-03-13 06:24:38.042 2025-03-29 22:39:52.2 \N Here for the high signal https://example.com/ 1615 435944 435944.435950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3859364038623 0 \N \N f 537171192 \N 4 162178065 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 08:04:52.848 f \N \N \N 0 0 0 0 2 0 0 421818 2025-03-02 02:25:43.727 2025-03-29 22:39:52.2 \N Discussion posts https://example.com/ 14785 421801 421778.421801.421818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7894379069855 0 \N \N f 378430857 \N 2 100645389 0 f f \N \N \N \N 421778 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416778 2025-02-25 20:49:29.792 2025-03-29 22:39:52.2 \N Life is about problem-solving. Picture yourself learning assembly and the C language for the first time, and then imagine transitioning from a C programmer to working with Rust or using UI builders. The key is to continually ascend the stack and recognise that your true skill set lies in solving problems. https://example.com/ 17082 415647 415637.415647.416778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.72593040965937 0 \N \N f 47667937 \N 1 199912089 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433999 2025-03-11 14:57:26.451 2025-03-29 22:39:52.201 \N I’m reading the dark forest, although my recommendation would be to start with the three body problem. Brilliant hard sci-fi series in the context of the Chinese cultural revolution https://example.com/ 15544 433828 433828.433999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0600034601674 0 \N \N f 739418888 \N 5 56737963 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-20 06:36:24.442 f \N \N \N 0 0 0 0 1 0 0 436561 2025-03-13 16:43:37.679 2025-03-29 22:39:52.201 \N Why did you choose Wasabi as CoinJoin and not other implementations like Samourai? Do you have plans to support PayJoin even if it's in beta? https://example.com/ 16950 436523 436523.436561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0862126142981 0 \N \N f 305006501 \N 2 216338723 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 2025-03-20 11:33:20.22 f \N \N \N 0 0 0 0 1 0 0 194621 2024-07-04 17:23:09.193 2025-03-29 22:39:48.908 New year, new _____ Nightly routine habits for me.\n\nAnyone have tips on getting away from screens late before bed? What do you do instead?\n\nWhat's new that's coming to your life in the new year? \N 1505 \N 194621 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.7007147395978 0 \N \N f 267281638 \N 3 184872727 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 429078 2025-03-07 21:54:18.438 2025-03-29 22:39:48.908 Which Asset for Trade and Commerce... Would an Alien Civilization Use? Pretend an alien spaceship, in the *very* far future landed on planet Earth and wanted to trade with Humans.\n\nKind of like how the Europeans traded with the Native Americans in the 16th century (OK BAD example it didn't turn out well for the Native Americans but this is Stacker News :D )\n\nWould the trade take place with beads? No, no utility. \nArtwork? Cars? NY property or real estate? No way. Too bulky. Not practical.\n\nAnd Humans could just make more of these things... and there is *no way* you could take Real Estate back in the Spaceship! (plus if the Aliens *really* wanted the Real Estate they would just Take It! ;)\n\nIn any case the *other aliens* would laugh at *those* Aliens for being on the other end of a bad trade. On the other end with this crap!\n\nSo what is something the *other* Aliens would want too? That they could *mathematically understand?* That the Humans couldn't make more of?! That required large amounts of energy to create *and* was provably, mathematically scarce?\n\n- That was easily transportable over long distances?\n\n- That was small and light, even in a small spaceship?\n\n- That was valuable, but also digital (and easily saved)?\n\nGold (even if it were *universally scarce*) would be *heavy* and by the time you saw the Humans again WHO KNOWS how much the Humans would have mined! Wouldn't you showing up in a space ship, asking for *Gold*, other than being a bad meme just increase the rate at which Gold is mined (inflating the supply)!\n\nSo what about a technology trade? *Probably not* :(\n\nThe Humans don't have the technology the aliens *want anyway*... (The Aliens have a badass spaceship) and why give *technology to the Humans?* Which the Humans might use against their enemy at some point? (Can't trust those Humans!)\n\nNo, the trade and the asset would have to be trust-less.\n\nOK then *precious metals* - Gold Silver *maybe* Uranium?\n\nRadioactive isotopes *maybe*... but they would probably be too heavy for the spaceship. Or damage it, or be impractical to take back to the 'home planet' such a long distance. \n\n- And isn't uranium *abundant* on the asteroids and planets the aliens *traveled by* anyway? Why not make a 'pit stop' to pick up Uranium on an asteroid... just to trade with the Humans for... *more* Uranium? *It doesn't make sense* anyway and for *Gold* cough cough and *Silver* it would be even dumber.\n\nNo, the aliens would take all the precious metals, minerals, and isotopes naturally occurring in space, and if they are going to trade with Humans it *would not* be for something *they could just as easily mine and accumulate themselves.*\n\nThe Plan:\n1) Get spaceship.\n2) Get asteroid.\n3) Trade with Humans for... more of the same?\n4) Profit???\n\nSo what would the Aliens trade for that THEY KNEW was scarce, would remain scare, with a provably *mathematical inflationary rate* for the next *thousand years* while they took A LONG TRIP in their space ship?\n\n- Through inter-dimensions? \n- Through time and space?\n- While *other* Alien civilizations Rose and Fell.\n\nWell if it's NOT precious metals or extractable minerals... \nAnd it's NOT paper money (Why wouldn't the Humans just make MORE of that? Doesn't it usually become *worthless* over a few decades anyway?)\n\nAnd if it NEEDS to be something you could come back in your spaceship, and prove *at any time* was created according to the rules of Software, Physics, Math, and Scarcity...\n\nThat you could Mathematically understand and that *the Humans couldn't CHEAT YOU ON!!*\n\nWhat would that Asset and Medium of Exchange be?\n\nWhat is timeless, theoretically lasts forever *when stamped into titanium*, cannot be hacked, cannot be confiscated, that is *provably scarce* and is mined with predictable frequency... that is *lightweight* of *infinite economic density*. That's also digital and can be broadcasted from very long distances and lasts theoretically a *very* very long time?\n\nIt's Bitcoin.\n\nAnd Aliens *may not understand Art, may not understand Culture, and will never understand Human Governments* (I don't either) but they can understand Math [~8/21 Million]\n\n800 Billion Billion SHA-256 operations a second, mathematically provable, for the next 1000 years is a currency an Alien Civilization could tender.\n\nBitcoin is something that the Aliens can trade for (if they wanted to trade). And the moment that the Humans figured that out the network Hash Rate would jump... making Bitcoin *more* secure, increasing the current exchange rate, making it *more likely* not less that the perfect medium of exchange *over very-long distances* and over *very long time periods* is Bitcoin and would survive forever.\n\n- If Star Trek had a money it would be Bitcoin. \n- And the Money of Intergalactic Trade, with an Alien Civilization, will *probably be Bitcoin.*\n\nIt is the only provable, trustless, neutral, Medium of Exchange that meets a minimum threshold for Commerce with Alien Civilizations.\n\nIt is the Ultimate Medium of Exchange. \N 3304 \N 429078 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 1.62880777714491 0 \N \N f 76432135 \N 1 249761265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417376 2025-02-26 10:39:09.63 2025-03-29 22:39:48.909 Sensei Stacked One Million Sats on Stacker News And right in time on 31st May.\n\nSo this meant that June could represent a new slate for him since he accomplished the milestone of one million sats.\n\nHe knows that numbers are arbitrary, but this milestone just hits differently. The stretch from 999+ k sats to 1000k sats weighted prominently on his mind yesterday. He kept refreshing his profile to see whether he had crossed the bar. Silly him, but ya he doesn’t mind admitting that he has a reptilian brain in regard to this. As in chasing after a target relentlessly.\n\nThe key question is: will Sensei chase after the next milestone of 1.1 million sats, rinsing and repeating his methods? \n\nProbably not because otherwise he will gain immunity against the adrenaline high he derives from hitting a milestone. As much as he loves sats to pay for his beer, he feels that protecting his spirit is more important so that he doesn’t go through the motions mindlessly.\n\nIt just so happens that he will have a two-week break from school this June. School holidays FTW! Burnt-out teachers recalibrate! He hopes to spend more effort writing more substantial articles rather than just rely on stream-of-consciousness, free writing. He doesn’t want to regard himself as a one-trick pony. Some of these articles mayn't even do well, but he agrees with @BTCFC on this: sometimes you write to leave a **legacy** behind.\n\nSome ideas on his notepad waiting to be fleshed out:\n\n- 10 reasons why Sensei loves the English language\n- 10 things Sensei likes about the Japanese educational system\n- 10 things that make Sensei proud of the Singapore educational system\n- Sensei’s most-liked Japanese cities - Top 10\n- 10 Japanese cities Sensei wants to visit\n\nSo, it will probably take him a longer time to attain the next 100 sats, but he hopes that he will emerge a better writer when he crosses the finishing line. \n\nLastly, he wants to thank all Stackers for their cultural insights, patient conversations, and zaps. Stacker News serves as a plentiful well from which he rejuvenates and replenishes his tank of self-identity. Thank you! \N 1428 \N 417376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.80728676354882 0 \N \N f 372613639 \N 2 152910897 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437775 2025-03-14 21:43:00.193 2025-03-29 22:39:48.909 We need an Event Section on SN On reading @dantewpark's post https://stacker.news/items/136710 I see the need that we need an Event Section on @SN so that AMA can be posted there. Bitcoin events like conferences, seminars, hackathon, workshop to online schools will be under that section. One can even pay to post this events. \N 8505 \N 437775 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 5.53788527938522 0 \N \N f 1507499942 \N 12 192225569 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 9 0 0 441827 2025-03-18 10:14:48.87 2025-03-29 22:39:52.201 \N A new subdomain for SNL guys...\n[tv.stacker.news](https://zap.stream/p/npub1hedhcq93v5c226w8gfece5lxkf6zldvrgygw9ppmyq3msggvl6rst8kmxw) https://example.com/ 20636 441823 441695.441823.441827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7544751576467 0 \N \N f 389045600 \N 2 65205534 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404186 2025-02-15 16:09:35.066 2025-03-29 22:39:52.201 \N Read Bitcoin Astronomy. \n\nIt discusses advanced alien civilizations that use a bitcoin like network with blocktimes of the order of centuries so that it's feasible to broadcast the blocks across the galaxy.\n\nThose civilizations have extreme low time preference, always planning transactions for millennia, across generations.\n\nI think we are still far from that need and 10 minutes is good for now. https://example.com/ 12736 404095 404095.404186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.36878684619054 0 \N \N f 86541563 \N 2 179565639 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448311 2025-03-22 14:39:08.04 2025-03-29 22:39:52.201 \N A dog https://example.com/ 8045 447816 447761.447816.448311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9179071055342 0 \N \N f 43302981 \N 1 98142454 0 f f \N \N \N \N 447761 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458211 2025-03-29 05:41:54.35 2025-03-29 22:39:52.436 \N Wow, that's quite a distribution of answers.\n\nI do think Earth is a forever home for humanity, but I also expect there will be a lunar research base at some point. We have permanent research colonies in Antarctica already and the space station has been continuously inhabited for a long time now. https://example.com/ 1352 458134 458122.458134.458211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.41820286764822 0 \N \N f 874269989 \N 6 179697585 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437539 2025-03-14 15:34:07.47 2025-03-29 22:39:48.909 Mining Bitcoin Off-grid on an EXTREME budget It all starts with the SUN. These panels were purchased for about $30 a piece, a fraction of what new panels cost. I have 60 of them that are just for mining sats. Notice, there are no mounts, no ground wiring, no conduit. This is as basic as it gets. Panels thrown on the ground and wired together. Some day I will put elevate them a bit with some posts and get them at a better matched angle for better performance.\n\n![](https://m.stacker.news/50947)\n\nI literally found this trailer abandoned in the middle of the desert. It was full of rats, rat shit, and other things. It was disgusting. No tires, full of holes, left to rot away. I took an axle off my other trailer, slapped it on, towed it up my hill. Cleaned it out, plugged the holes, painted it. Now it houses all the electrical and mining equipment. This cost me almost nothing but time.\n\n![](https://m.stacker.news/50949)\n\nThe internet for the miners and everything else I do online happens right here in my little cell phone wifi tower thingy. It has an old phone that is a 24/7 hotspot, $25 a month for unlimited data, then a little wifi repeater than makes that signal a wired signal, and a wifi router that serves about half of 40 acres. When there isn't competing signals and blockages, wifi goes pretty far. From here I have a hard line feeding a switch in the mining shack to get the miners internet service when they are hard at work.\n\n![](https://m.stacker.news/50951)\n\nI have 2 of PowMR All in one solar inverters about 5500watts a peice. They capture the solar, charge the batteries and run the miners. Awesome Value in Solar. \n\n![](https://m.stacker.news/50952)\n\nWe may live simply but we are smart. All the miners and inverters can be controlled with these smart outlets and relays. So i don't have to do much work to keep things going. Miners go on and off with timers. I make adjustments for weather as needed.\n\n![](https://m.stacker.news/50953)\n\nLithium Iron Phosphate batteries are now cheaper than lead acid. And they last forever and perform WAY better. I love these things. I run 12V batteries in series of 4 to work with the 48v system. These basically act like a energy cache, take on the load when there is cloud cover and what not. And they do extend my mining day a bit. But my system is far too small to run the miners 24/7\n\n![](https://m.stacker.news/50954)\n\nThis is the equipment that runs the small 3 panel setup to keep the wifi and my pi3 media server up 24/7. I do not have any subscription services, so the media server is awesome. Its my google drive, netflix, spotify, etc. So awesome to have\n\n![](https://m.stacker.news/50955)\n\nAnd finally the miners. I have 6 x s19j pros. i bought them new about 4 years a go. They have been on grid and overclocked in the past. Now they are running at 1800 watts a piece, and take it nice and easy. Sleep all night. Work all day, unless its a cloudy nappy kind of day. Their names are Howard, Lester, Kenny, Danny, David, and Nathan. They are the best. They make sure everyday I have just a little more bitcoin than I had the day before. What more can a man ask for?\n\n![](https://m.stacker.news/50956)\n\nPlease share all of your questions and comments. Thanks for looking 💚 \N 691 \N 437539 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 18.2772931310016 0 \N \N f 93221179 \N 1 175405829 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404424 2025-02-15 21:30:10.152 2025-03-29 22:39:48.909 Social Engineering in Mr. Robot > Social engineering is a psychological strategy used to manipulate individuals into revealing information about themselves or committing acts that can later be exploited. In information security, social engineering is used as part of elaborate cons or hacks to gather needed information. There are a series of techniques that a threatening individual, known as a threat actor, can use to exploit a victim's vulnerabilities. When effective, these techniques induce victims to reveal details about themselves, including passwords, credit card numbers, social security number or other similar personal information.\n>\n> Mr. Robot, known for its accuracy and level of detail, included several of these techniques, generally used by fsociety. Action is typically preceded by research; threat actors require information about their mark before they can exploit them. Not all uses of social engineering and the hacks that accompany them are successful.\n\nMr. Robot is a great show. It's pretty accurate (as mentioned in the quote) when it comes to hacking - if it's not even the most accurate show out there. But it's not only about hacking. It also has many other great stuff in it. I would say actual "hacking scenes" (which means for me that Elliot, the protagonist, is breaching a network or doing something similar using a computer) are only 5% of the show.\n\nHere is a great scene (of many great scenes in this show) how weaknesses in an individual can be exploited via social engineering if you just know enough about them:\n\nhttps://www.youtube.com/watch?v=vSYSJTt_Cto https://mrrobot.fandom.com/wiki/Social_Engineering 7960 \N 404424 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5320039543423 0 \N \N f 49886452 \N 1 201715707 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407995 2025-02-18 14:11:16.267 2025-03-29 22:39:52.436 \N ![](https://m.stacker.news/61095) https://example.com/ 6137 407975 407930.407975.407995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3583219546976 0 \N \N f 122699263 \N 1 142091013 0 f f \N \N \N \N 407930 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423130 2025-03-03 02:10:39.857 2025-03-29 22:39:52.436 \N I don't think it's a big problem right now. Was just curious how others are thinking about it. \n\nThat being said if Bitcoin goes 3x from here I don't know how many territory owners are going to want to spend the equivalent of $200 USD a month on what is essentially a passion project at this point. https://example.com/ 16830 422574 422334.422406.422408.422569.422574.423130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4715670197642 0 \N \N f 205536596 \N 1 173171277 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433956 2025-03-11 14:33:29.704 2025-03-29 22:39:52.436 \N My phone turns 6 this year. It's doing well. I don't use it very much though. I browse SN and answer stray chat messages and stuff. https://example.com/ 21334 433679 433679.433956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9798250944383 0 \N \N f 149610788 \N 3 56062263 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434318 2025-03-11 19:35:50.783 2025-03-29 22:39:52.436 \N I find besides batteries and screens phones last pretty long. I have never tried to get my phone to last more than 4 or so years but I have an ipad that is about 10 years old. https://example.com/ 19018 434278 434278.434318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.330640292600677 0 \N \N f 1977876197 \N 18 241790272 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 11:44:10.609 f \N \N \N 0 0 0 0 11 0 0 407668 2025-02-18 09:33:20.657 2025-03-29 22:39:52.441 \N There's been a theory out there for a while that the dems were actually throwing the election knowing that the next president would be left holding the bag. I thought this prior to the Biden debate meltdown. \n\nAt this point... I'm not sure about that or that we will see a collapse under the next admin. I mean... its hard for me to see how we don't have a recognized recession. Seems like we are already in one but they cooked the books.\n\nIt is possible we hit hard times but due to drastic cuts or hands off response by government the recession is short lived and there's a boom in the next 4 years. Gonna be interesting for sure. https://example.com/ 21430 407663 407018.407063.407581.407583.407586.407663.407668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2318409671781 0 \N \N f 431136457 \N 4 220174077 0 f f \N \N \N \N 407018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 386668 2025-01-31 09:53:59.344 2025-03-29 22:39:48.909 Show, Not Tell, What You Know >Those who receive the bare theories immediately want to spew them, as an upset stomach does its food. First digest your theories and you won't throw them up. Otherwise they will be raw, spoiled, and not nourishing. After you've digested them, show us the changes in your reasoned choices, just like the shoulders of gymnasts display their diet and training, and as the craft of artisans show in what they've learned. - Epictetus\n\n\n\n> Gall's Law states that all complex systems that work evolved from simpler systems. If you want to build a complex system that works, build a simple system first, and then improve it over time. - Josh Kaufman\n\nBeen a bit busy today and didn't have much time to think through and write a post so thought I would share two quotes I came across this week that resonated.\n\nThe first was today's quote from *The Daily Stoic* basically implying that a stoic should strive to walk the walk instead of just talking the talk. \n\nAnd the second was timely for me because I've been thinking about football tactics all week and how I wanted to present the many ideas in my head to my team, but this quote and Gall's Law reminded me that I should just start with the basics and start with something simple and build off that foundation. Can be applied to Bitcoin as well given at it's core it is very simple in design and yet so elegant. \n \N 9863 \N 386668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.475029833608644 0 \N \N f 97504654 \N 1 184587233 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433713 2025-03-11 10:38:13.666 2025-03-29 22:39:48.91 Bitcoin is bigger than the Bitcoin Conference or Bitcoin Magazine Bitcoin is bigger than Bitcoin Magazine and the Bitcoin Conference in Nashville.\n\nIf you are struggling with why __ person is speaking think about this. The conference is funded by ticket sales and advertisers. If people don't like it, they will lose money. If they do like it and you don't then don't go. I'm not going. Bitcoin is bigger than you and I. It is bigger than progressives and conservatives. It is bigger than Trump supporters and Trump haters.\n\nBitcoin doesn't need me. I need bitcoin. Bitcoin doesn't need politicians. They need Bitcoin. Zoom out and chill out. \N 4287 \N 433713 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 0.6413960767836 0 \N \N f 134589582 \N 1 73660283 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2553 2022-10-15 02:40:15.679 2025-03-29 22:39:48.91 What would you recommend for non-tech people to improve their online security? Food for thought: what would you recommend for non-tech people and BFU to improve their online security? \nJust one recommendation for people who do not like technology, they are not able to install OS such as Qubes, Tails, Whonix, Linux, etc. Let’s assume the standard Windows user with OS preinstalled on their computers, with enabled security updates. \n\n================\nWhat about these recommendations:\n- more privacy-oriented browser?\n- password manager?\n- 2FA?\n================\n\nWith privacy oriented browser they could prevent their tracking and leaking info. Moreover, they will see more cleaner websites without lot of junk and even YouTube videos will be ad-free. They will love it. \n\nWith password manager, they will prevent easy to guess passwords and password spraying. In top of that, with browser extension’s checks of URLs/Domains they can prevent phishing sites. But using local password manager (e.g. keepassxc) can be very annoying for them, especially when they will want to login from some other device (computer at work, smartphone, tablet).\nAlternatively, they could use cloud password manager (or local password manager with db synchronised via cloud) and mobile app. So they will always have access to their passwords, but still very annoying when they will need to manually type 20-chars long random password from mobile to some other computer (e.g at work). They will hate it.\n\nWith 2FA enabled and their habit to use 3-4 passwords everywhere, they will prevent successful login with password spraying (because of 2FA). They will partially prevent phishing (except scenarios such as 2FA MITM, Browser in Browser for hijack sessions). They will be able to login even from other devices. \nIt is relatively easy to install auth app on smartphone and enable 2FA everywhere possible. Most of important services already support TOTP. Lot of them can send notification after successful password attempt from non-usual location, so users will be notified about problem and hopefully they realize that 3-4 passwords are not a good long-term approach. They will accept it. \n\nWhat are your opinions? \N 11967 \N 2553 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.78091865567162 0 \N \N f 615386604 \N 3 231272521 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436246 2025-03-13 12:15:29.832 2025-03-29 22:39:52.436 \N Working on the localization of Bitcoin Core in Colombian Spanish... I am also translating Tomer Strolight's 'Why Bitcoin?' in Spanish. https://example.com/ 21599 436241 436241.436246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4920087836305 0 \N \N f 76200437 \N 1 96358289 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 09:30:54.889 f \N \N \N 0 0 0 0 1 0 0 402466 2025-02-13 18:38:00.721 2025-03-29 22:39:52.438 \N I’m all for daily rewards, but I’m still posting either way! I enjoy the content / community. https://example.com/ 1273 402228 402228.402466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5021477579732 0 \N \N f 153190803 \N 1 245256641 0 f f \N \N \N \N 402228 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428581 2025-03-07 12:32:36.229 2025-03-29 22:39:52.44 \N When I read stories like this, which is something you see a lot in Bitcoin circles, it makes me so hopeful.\n\nIf you talk about money and wealth, people start to plot numbers in their minds. Bull market, 1,000% gains, yadi yada.\n\nBut money is not wealth. You can't eat a dollar, nor a Bitcoin. And all of Saylor's coins won't mean anything if you are stuck alone in a remote island. Or worse, stuck in a crowded city populated by lazy asses, idiots and evil men. \n\nBitcoin won't make us rich because of its dollar value going up. It will make us rich when it rescues millions of people from the meaningless, self-destructive, fiat-slave lives they are stuck in and lifts them into hard working, smart and independent grown ups that fix the world and themselves. \n\nThat will be true wealth, for everyone to enjoy. https://example.com/ 11527 428559 424571.424907.424921.424946.424988.428312.428320.428354.428417.428559.428581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0043261300474 0 \N \N f 555717692 \N 3 195655055 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424363 2025-03-04 02:51:17.72 2025-03-29 22:39:52.441 \N I think I'm getting carpal tunnel syndrome from all these smash buys! https://example.com/ 19537 423492 421720.421840.421855.421925.421936.423276.423492.424363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.33618650223002 0 \N \N f 314575701 \N 2 66019001 0 f f \N \N \N \N 421720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442084 2025-03-18 12:36:05.529 2025-03-29 22:39:48.91 SN origin story After my second [Austin Bit Devs](https://austinbitdevs.com/), I began asking myself, “why can’t I find this productive of a Bitcoin community online?” Bit Devs are monthly Bitcoin meetups held worldwide, an interactive review of primarily technical Bitcoin-related developments. It’s a seemingly simple meetup but something special happens when you share space with people you share values with.¹\n\nI left each Bit Devs high on Bitcoin’s orange tonic - energized and convicted for weeks. I learned about bleeding edge Bitcoin tech, taught what I knew to others, brainstormed on how to promote and defend Bitcoin, and made strangely persistent relationships. I dedicated my career to Bitcoin after my second Bit Devs. Only, I had to move to Austin to have this experience.\n\n“This bothers me,” I complained to [Ben Carman](https://twitter.com/benthecarman) on a walk to get drinks after a Bit Devs. I wanted a Bit Devs community online, a Bit Devs regardless of where I lived, a Bit Devs every darn day.\n\nWhile I was orange-pilled by some combination of [Michael Goldstein](https://twitter.com/bitstein), [Pierre Rochard](https://twitter.com/pierre_rochard), [Saifedean Ammous](https://twitter.com/saifedean), and [Jimmy Song](https://twitter.com/jimmysong) on Twitter in 2017, Bit Devs’ essence was absent on Twitter. It’s also absent on the unfortunately crypto-phobic Hacker News and on the borderline lowest common denominating Reddit. To speak to something bigger, what’s absent online are natural communities² and I believe its because of their community’s incentives. \n\nBehavior in human communities develops as a result of the incentives humans in the community are given, and existing online communities influence behavior by format, pseudo-reputation, gamification, and moderation. Basically their communities develop as a result of expression limits, rewards backed by nothing, and centralized control. My assumption with Stacker News is that Bitcoin fixes this by having users stake something other than pseudo-reputation, Bitcoin, and earn rewards that are worth something in the external world, Bitcoin.\n\nIn Bitcoin we say “Bitcoin fixes this” because we believe Bitcoin changes the incentives humans have in any inheriting system. We believe Bitcoin encourages people to think long term and that this seemingly small yet fundamental change is utterly transformative for the better. This is why I started Stacker News. I think Bitcoin will help us build natural communities like Bit Devs online. \n\n------------\n\n1. Sharing an interest in Bitcoin with people isn’t sharing a simple kind of value. Monetary systems are meta-value systems. Sharing Bitcoin with people is something more powerful. \n2. I’m loading the term natural communities with what I think makes in-person communities productive, incentives imparted by nature. For me, what primarily distinguishes in-person communities from online ones is that you’re sacrificing something real when you participate, social reputation, and earn something real when you participate well, social reputation, meaningful favors, and friendship. \N 756 \N 442084 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.1517574990717 0 \N \N f 3486126729 \N 26 181486436 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:59:43.825 f \N \N \N 0 0 0 0 11 0 0 399223 2025-02-11 09:43:49.367 2025-03-29 22:39:48.911 POLL: Be HONEST, do you spend most time thinking about the... **past, present, or future?**\n\nAre you mostly reminiscing, at peace with where you are at now, or caught up in the future? Be honest with yourself.\n\nMost probably have heard something along the lines of:\n\n_"If you are depressed you are living in the past.\nIf you are anxious you are living in the future.\nIf you are at peace you are living in the present.”_\n_(apparently this is a fake Lao Tzu quote. Bonus sats for whoever knows where it came from)_\n\nNow, you don't necessarily have to be full on depressed or anxious if you find your mind stuck at those ends, but it does beg the question: What are you looking for? What does the present not offer to you now that you desire?\n\nFor me, I'm definitely caught up in the future, as I'm sure many bitcoiners can probably relate. Bitcoin's certainly shifted my excitement to "what's ahead" -- because thinking about a world on a bitcoin standard is fkn cool, frankly.\n\nBut thus I'm always at battle with myself, reminding myself to focus on enjoying the process of building that I'm in right now, instead of living in anticipation of the results.\n\nIf you can relate, I'm not saying that thinking beyond the present is all bad. I think it's very important that I (healthily) lean into that futurist mindset. What I'm building now _is_ for the future, and I feel better knowing that, despite my feelings of anticipation, **I'm actually deeply connected to the present** -- I have a keen understanding of my position in time now, and I'm taking action to be prepared for what's ahead. \n\nFor me, that means I can enjoy smelling roses more now than if I didn't have any direction at all that I was working toward. But sometimes my meat brain forgets that.\n\n**Point here is**: If you're here reading this, you're likely well positioned too, despite your current depressions/anxieties. You've thought a lot about your future (likely informed by the past) and deeply understand your place right now in the present. Find peace in that if your brain forgets it too! \N 18956 \N 399223 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 29.9841306913429 0 \N \N f 371293347 \N 3 224843665 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 434847 2025-03-12 09:26:50.925 2025-03-29 22:39:52.436 \N I previously believed in "blue zones" as well. But I learned that it's a myth. Check out this link:\n\nhttps://www.rnz.co.nz/national/programmes/sunday/audio/2018708179/dr-saul-newman-debunking-the-blue-zone-longevity-myth\n\nAlso the book Carnivore Code has a whole chapter that deals a lot with blue zones - CHAPTER 10: MYTH III — RED MEAT WILL SHORTEN YOUR LIFE.\n\nBasically, it's a lot of data-ignoring, and data-massaging. It's a popular message, though.\n\n https://example.com/ 15491 434813 434813.434847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3127056594647 0 \N \N f 94127503 \N 1 172544667 0 f f \N \N \N \N 434813 \N 0 0 \N \N f \N 2025-03-19 13:51:36.464 f \N \N \N 0 0 0 0 1 0 0 435631 2025-03-12 20:42:15.436 2025-03-29 22:39:52.438 \N Why store value in something that inflates forever? \n\nIt can't scale to compete with legacy payment systems because ring signatures use more block space than BTC transactions and XMR can't use LN.\n\nIt's only useful as a privacy layer for payments. https://example.com/ 11590 435610 435610.435631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3124392103735 0 \N \N f 209958752 \N 1 78928759 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 2025-03-20 08:35:00.196 f \N \N \N 0 0 0 0 1 0 0 415262 2025-02-24 16:31:15.266 2025-03-29 22:39:52.439 \N Thanks, I'm still pretty fuzzy on how gift cards are able to work without being custodians of some sort. I made a table (that didn't make it into this post) looking at the different terms these protocols use for themselves. "Redeem" came up a lot in ecash and gift cards but less so in the others. https://example.com/ 18232 414863 414863.415262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.58472900022948 0 \N \N f 105846460 \N 1 143915039 0 f f \N \N \N \N 414863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402890 2025-02-14 08:09:39.072 2025-03-29 22:39:52.439 \N At its most barebones, an LSP can just be a regular LN peer that a user has a channel with and relies on for routing & liquidity management. \n\nBut yes, logic could be built into/on top of your node to try a payment, and if it fails, retry through a specific LSP. Or, you could have a list of peers you can reliably pay, that you pay directly, and if your destination is not in that list, you use the LSP to access the wider network. \n https://example.com/ 1474 402582 402582.402890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0037783165839 0 \N \N f 126761294 \N 3 121918862 0 f f \N \N \N \N 402582 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435274 2025-03-12 15:13:31.067 2025-03-29 22:39:52.439 \N I think businesses should try stuff like this. That's really the only way to know if it works. One issue with being the first in an industry to try something like this is that you might get a bad response and not be able to shake it off. The average Joe has been conditioned to think that this type of thing is "price gouging". Even smart people don't get how supply, demand, and prices help equalize a market. Every time there is a natural disaster and plywood prices go sky high you hear the same price gouging / price cap discussion. Same goes for gasoline. Its all so tiresome. https://example.com/ 14255 434795 434795.435274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9760513134144 0 \N \N f 649163526 \N 5 231722460 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 18:20:44.592 f \N \N \N 0 0 0 0 2 0 0 436046 2025-03-13 09:12:38.945 2025-03-29 22:39:52.439 \N Now we just have to convert @janetyellen https://example.com/ 16176 436014 435907.436014.436046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7913991275343 0 \N \N f 181485236 \N 1 98133563 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 04:47:15.193 f \N \N \N 0 0 0 0 1 0 0 447034 2025-03-21 15:20:21.208 2025-03-29 22:39:52.442 \N I got one the other day too. I wish we could tell who they are. https://example.com/ 669 446456 446456.447034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8310311319363 0 \N \N f 117320453 \N 1 131749173 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 09:46:52.427 f \N \N \N 0 0 0 0 1 0 0 443319 2025-03-19 09:02:16.524 2025-03-29 22:39:48.91 History of Federal Tax Rates ![income tax rates](https://m.stacker.news/26153)\n\n### **Read More**\n🔗 **[Chart via: Bradford Tax Institute ](https://bradfordtaxinstitute.com/Free_Resources/Federal-Income-Tax-Rates.aspx)**\n\nRelated SN discussions:\n\n- [The Coming of the Roman Tax Collectors](https://stacker.news/items/54774/r/davidw) 👈\n- [Spaniards dedicate more than 75% of their salary to taxes. Modern slavery.](https://stacker.news/items/494890/r/davidw)\n- [IMF Paper on Taxing Bitcoin Sees 'Quasi-Anonymity' as Greatest Challenge](https://stacker.news/items/206768)\n- [Which tax rate do you consider "fair" and would pay?](https://stacker.news/items/231736/r/davidw)\n- [The rich are getting second passports, citing risk of instability](https://stacker.news/items/501444/r/davidw)\n- [Best Places for a Second Passport?](https://stacker.news/items/501663/r/davidw)\n\n### **What do you think is next?**\nThink they can’t get to ~90% again? Or think we’re closer than this chart suggests already? Would love to know stacker thoughts…\n \N 8535 \N 443319 \N \N \N \N \N \N \N \N security \N ACTIVE \N 25.1990870706829 0 \N \N f 210332275 \N 4 28217764 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:05:03.722 f \N \N \N 0 0 0 0 4 0 0 401651 2025-02-13 09:37:53.672 2025-03-29 22:39:48.912 What do you do when someone refuses to understand? There are moments in the course of a conversation when the other doesn't want to understand you. He does not listen to your arguments and only insists his own. \n\nWhat do you do then? Do you go on and on, looking for new arguments to convince them? Or do you keep quiet?\n\nOf course, every situation has its own important details, and valuable judgement is always needed. \n\nBut two things are good to keep in mind during these conversations:\n\n1. Say what you think and argue your case. \n\n2. If you see that he does not want to understand, keep silent and leave him in his ignorance. \n\nWhat do you think? \n\nWhat do you do in such situations? \N 10849 \N 401651 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.91074321677461 0 \N \N f 627708636 \N 6 241926494 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416823 2025-02-25 21:35:08.294 2025-03-29 22:39:52.439 \N There's these going around \n\n![](https://m.stacker.news/41909) https://example.com/ 1650 416158 416158.416823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0333676564274 0 \N \N f 31554282 \N 1 181277428 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403934 2025-02-15 11:41:15.703 2025-03-29 22:39:52.439 \N [![Muun-others.jpg](https://i.postimg.cc/c4tSWC39/Muun-others.jpg)](https://postimg.cc/56JGqxnL) https://example.com/ 21222 403927 403824.403857.403868.403869.403918.403919.403922.403926.403927.403934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6629787533938 0 \N \N f 484977778 \N 3 106971690 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410307 2025-02-20 12:26:53.949 2025-03-29 22:39:52.44 \N I vote this. The site isn't the only thing that will experience exponential growth that I can promise. 🥵 https://example.com/ 11897 410251 410251.410307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3582790937692 0 \N \N f 146678918 \N 1 140504369 0 f f \N \N \N \N 410251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455363 2025-03-27 00:38:13.855 2025-03-29 22:39:52.44 \N It's also a term in the social sciences that has about 150 years of prior art; or perhaps 2500 years, depending on how you look at it. https://example.com/ 814 455362 455362.455363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2493501445363 0 \N \N f 81090356 \N 1 109766613 0 f f \N \N \N \N 455362 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443312 2025-03-19 08:55:39.77 2025-03-29 22:39:52.44 \N The (likely automated) spam bots have arrived!\n\n![Spam bots](https://i.postimg.cc/bJ00xX4d/Screenshot-at-2022-08-07-17-37-11.png)\n\nEach account has a post with the same image (partial image snap follows):\n\n![Spam bot post](https://i.postimg.cc/50fQMXkN/Screenshot-at-2022-08-07-17-40-48.png) https://example.com/ 13547 443295 443295.443312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6294927512257 0 \N \N f 562494140 \N 4 21698079 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:59.453 f \N \N \N 0 0 0 0 2 0 0 443379 2025-03-19 10:06:01.851 2025-03-29 22:39:52.44 \N That is a great decision. I used to drink a lot and smoke a bit of weed, but now it's been many years since doing either. I don't miss it at all. I prefer to experience reality unaltered, and this is especially rewarding with kids of my own. Congratulations and welcome back to the real world! https://example.com/ 18423 443105 443105.443379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8352725854526 0 \N \N f 62132672 \N 1 139095668 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 2025-03-26 05:44:33.189 f \N \N \N 0 0 0 0 1 0 0 408056 2025-02-18 14:49:16.244 2025-03-29 22:39:52.44 \N a big brim idea https://example.com/ 20157 408039 407903.407928.407976.408016.408026.408039.408056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.138165762095568 0 \N \N f 287222608 \N 2 132156867 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 138156 2024-03-07 04:20:31.725 2025-03-29 22:39:52.44 \N \n\nhttps://image.nostr.build/25379311fe23e7b91020d3e18a9f3dd6b26a3ddef6243150155d4b8d9ecb2f37.jpg https://example.com/ 13055 138031 138031.138156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1947382005079 0 \N \N f 346488006 \N 2 64801335 0 f f \N \N \N \N 138031 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435286 2025-03-12 15:19:38.663 2025-03-29 22:39:52.44 \N I believe the rules allow you to talk about whatever you want. If others have no interest in your post you will be ignored. https://example.com/ 21063 435272 435261.435272.435286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3216755939529 0 \N \N f 193861283 \N 1 199719771 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:29.803 f \N \N \N 0 0 0 0 1 0 0 444489 2025-03-19 23:25:18.395 2025-03-29 22:39:52.44 \N I comment like normal and, as a preeminent taste maker, that should suffice for etiquette. https://example.com/ 21042 444324 443712.444179.444324.444489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6268524485548 0 \N \N f 144428913 \N 1 62048535 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423740 2025-03-03 15:09:04.297 2025-03-29 22:39:52.44 \N Not sure about how long it may take you, but \n\n"Fiat Food" by Matthews Lysiak\n\nAnd\n\n"The Fiat Standard" by Saifedean Ammous https://example.com/ 21275 417848 417848.423740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.513643212565 0 \N \N f 610786941 \N 3 162050408 0 f f \N \N \N \N 417848 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446483 2025-03-21 09:13:50.833 2025-03-29 22:39:52.44 \N Knowing git is the difference between a developer and a script kiddie. I say this from personal experience. Doesn't have to be git, it's just the only source control on familiar with. https://example.com/ 2609 446456 446456.446483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8294554390985 0 \N \N f 265332806 \N 2 85842288 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435814 2025-03-13 01:45:01.694 2025-03-29 22:39:52.441 \N Situation is heating up. Ultimately feds will be backed down by courts (I hope).\n\n\n\n![texasbordertwit.png](https://m.stacker.news/13747) https://example.com/ 7674 435650 435231.435650.435814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.47537984316661 0 \N \N f 730671542 \N 5 29372525 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 2025-03-19 19:04:18.144 f \N \N \N 0 0 0 0 1 0 0 430038 2025-03-08 19:32:09.451 2025-03-29 22:39:52.441 \N cats loves glove brushes (because they see them as a warm hand), usually they are scared of this type of "human" brushes. https://example.com/ 13921 430033 429958.429970.429982.430020.430033.430038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.24913123361275 0 \N \N f 389839727 \N 2 10576579 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441156 2025-03-17 20:01:02.508 2025-03-29 22:39:52.441 \N Day 277 of snailposting everyday 'til BTC hits $100k.\n\n...and 77 push-ups. (20 - 20 - 20 - 17)\n\n__@_'-' https://example.com/ 8985 441091 441087.441091.441156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6355951800739 0 \N \N f 237775058 \N 1 138935169 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448778 2025-03-22 21:35:39.906 2025-03-29 22:39:52.441 \N i wonder how many new posts and comments we’ll see on SN this week now that rewards are paid to creators rather than zappers.\n\ni also wonder what might happen to the number of zappers on SN… up, down, or flat? 🤔 https://example.com/ 4802 448591 448591.448778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.17668887431365 0 \N \N f 156280839 \N 2 16845959 0 f f \N \N \N \N 448591 \N 0 0 \N \N f \N 2025-03-29 15:58:20.297 f \N \N \N 0 0 0 0 1 0 0 424015 2025-03-03 19:24:31.174 2025-03-29 22:39:52.441 \N A major New Zealand crypto exchange called ["Dasset"](https://archive.ph/jykxg) collapsed recently. A story as old as time, NYKNYC.\n\nI interviewed a lawyer about the situation, as well as talking about an article he wrote about how the previous hack of the Cryptopia exchange helped develop law in New Zealand.\n\nListen to the episode here:\n[Understanding the Dasset Exchange Collapse from a Legal Perspective with James Swarbrick](https://fountain.fm/episode/5VsDqhamBiP94Hfscqat) https://example.com/ 1454 424009 423384.423591.423593.423595.423601.424009.424015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9820912436303 0 \N \N f 1435941445 \N 10 73881501 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444566 2025-03-20 02:46:13.364 2025-03-29 22:39:48.912 Bluewallet "nightmare" news? No problem, DarthCoin come to help This guide is dedicated to all my "haters" and followers.\n@WeAreAllSatoshi\n@gfy\n@Modus\n@PlebeiusG\n@Syturio\n... and many others that just want to trash my posts but don't really read my guides.\n\nI want to help the Bitcoin community.\nYes, many will say that I am crazy and insult noobs.\nThis is "my way" you like it or not, I don't fucking care.\n\nSo here I wrote a guide about Bluewallet migration to another LN funding sources, to calm down the noobs that don't know about all the LN aspects and hos to use it.\n\n[Bluewallet - connect to LN funding sources](https://darthcoin.substack.com/p/bluewallet-connect-to-ln-funding) \N 21701 \N 444566 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 20.6445855436398 0 \N \N f 424803159 \N 3 159707708 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404364 2025-02-15 20:04:16.077 2025-03-29 22:39:52.443 \N Here's a working theory I have. I think there are major still gaps in my understanding, but here goes:\n\nIf Bitcoin became a global monetary medium / reserve currency, I think it could make a **solid** dent in what I see as one of the most profound and systemic environmental problems.\n\nEasy creation of soft money by reserve banks and commercial banks places a massive burden on future populations and ecosystems for this reason: **every dollar created today is a future claim on a finite amount of biophysical resources.**\n\nNew money and new debt claims are made every second of every day, but when these transactions happen and new resources are then owed to someone or something the future, there are no new trees created, no new lithium, oil, sweet potatoes, or cotton.\n\nSo under the current financial system we're racking up a massive and unlimited balance sheet in which some entities are rich "on paper" but there will logically come a time when those claims can't be met by biophysical reality.\n\nI wonder if that time is already here, and if there was a run on the planetary resource bank, would there be enough resources to even cash out?\n\nOne might argue that inflation takes care of this, as a dollar created today won't be worth much in terms of tangible wealth (eggs, wool socks etc.) in 50 years time, so the debts we are racking up currently are less than they appear to be.\n\nThere may be some truth in that, but seems to me in a practical timeline of a decade or two, our I.O.U.s are still vastly outpacing what's actually available to extract from the planetary system, and they get cashed in a lot faster than most resources can regenerate (and lots can't). And even with inflation eroding what the claims are actually worth, our spending outpaces that.\n\nSomeone might say that market price signals also take care of this to some extent. If we run short on lumber, as happened recently, the dollar price goes up to better reflect it's scarcity and value. But at the speed new money is being created, I'm not so sure the price signal works as efficiently as it should in theory. I'm wobbly on this point, need to learn more.\n\nIn my understanding, this whole biophysical debt situation would be less possible if we had a harder form of money.\n\nUltimately we exchange money for physical goods and services (even if they are bits of information on silicone), and ultimately we exchange **energy** to extract or manufacture those goods and services.\n\nSo... To finally come to the crux here... I think Bitcoin could fix at least *some* of this, and maybe a lot of it, as it is a hard money **which is directly connected to energy.**\n\nUnlike unlimited fiat, we can't just generate or capture more Bitcoin without significant energetic cost, either by mining it directly or exchanging goods and services for it, which also cost energy.\n\nBitcoin adoption seems like a step in the direction of a monetary system more closely linked to the laws of physics and biology. A system where market forces could send more accurate price signals, and could make more rational and sane decisions about what's worth what, and how much "what" is actually available.\n\n**TLDR: infinite fiat and debt = infinite resource claims on a finite system. Bitcoin fixes this as a finite hard money which is linked to the cost of energy. Real wealth in any form at it's base = energy.**\n\n*These are still back-of-napkin ideas for me, maybe some of you have thought about this a lot harder than I have. I welcome your input and pointing out any gaping holes in this argument, or further suggested reading*\n\n https://example.com/ 20439 404270 404270.404364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9043177198527 0 \N \N f 306733499 \N 2 137717922 0 f f \N \N \N \N 404270 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435728 2025-03-12 22:46:35.078 2025-03-29 22:39:52.443 \N People here are so awesome that I literally zap all my sats to everyone in a day! And in the end I become freebie! \nI'm glad that SN exist! \n\nEdit: I told you people are awesome here! See, someone zap 120 sats to me right now! \nSN and people who use SN are the coolest people on Earth! \n\n https://example.com/ 19581 435657 435657.435728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3243198436278 0 \N \N f 1293806748 \N 8 87103857 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 14:46:05.577 f \N \N \N 0 0 0 0 2 0 0 434650 2025-03-12 05:24:09.728 2025-03-29 22:39:52.443 \N Bitcoin meetups are WAY better in the bear seasons. The philosophers come out. https://example.com/ 9356 434627 434627.434650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9684691213801 0 \N \N f 183288525 \N 1 143162134 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 2025-03-19 08:53:36.289 f \N \N \N 0 0 0 0 1 0 0 435339 2025-03-12 15:47:30.917 2025-03-29 22:39:52.443 \N Imagine a site similar to SN for git. Basically, if Github adopted lighting zaps. If you could zap someone for their resolution of an issue. Or for a release? I'm not the first to speak this I know but it seems so obvious to me after using SN. SN is going to go down in history as one of the first demonstrations of how _bitcoin fixes this_. https://example.com/ 7772 435217 435217.435339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.54422916763249 0 \N \N f 115644153 \N 1 147350400 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443286 2025-03-19 08:37:42.844 2025-03-29 22:39:52.443 \N Hi, elvis! \n\nShucks, you got me. I freely admit that my first impulse when I saw your zap was to withdraw it to my LN wallet. Then I read that you wanted me to play with it and take note of any insights that crop up. Sure I will do that n play in the big leagues haha.\n\nNow for why I only zap 50-60 sats (though that has increased thanks to @Undisciplined’s cajoling - I used to zap at most 20 sats haha)\n\n1. The 21 cents per day is more symbolic than significant. I think that’s my coping mechanism to deal with the stresses of working life. I do love being a teacher and am pretty sure I’m not in the midst of any middle age crisis - but darn, teaching is hard. In the sense that every day I have to face so many (sometimes competing) demands from my colleagues and students - chasing for forms, attending meetings that have nothing to do with teaching, helping students get their uniforms, disciplining errant students. By the time I get down to it, I hardly have the time and energy to create great lessons - the thing that fills up my tank and makes me feel productive. Unfortunately, teaching is a microcosm of life; shit just happens. I cannot control all these variables that are part and parcel of my job. So every morning I zap myself in an attempt to exercise some control over my day.\n\n2. On the practical side, I aim to buy a Bitrefill gift card at least once a month. I usually buy a supermarket voucher. So in Singapore, my trusty supermarket is part of a digital bank. So if I use the gift card and pay for the excess using my debit card, I will qualify for the higher interest rate. Provided that I make five transactions with my debit card, that is. The interest rate is nothing to rave about tbh, but I like the idea of working steadily towards a goal and seeing my sat stash increase haha. Exercising control over my life (back to point 1)\n\n3. The selfish side of me doesn’t want to zap too much because I notice that some Stackers hardly zap others. But it isn’t my prerogative to tell people what to do with their zaps. Neither do I want to turn out to be a calculative Stacker who maintains a mental score sheet about how much I’m giving and receiving. If I relate to a post/comment, I will just zap it 50 sats - plain and simple.\n\nSo, I increased my default zap to 168 because in Chinese, it means “prosper all the way” (一路发”). It hasn’t even been one day but I have noticed certain changes:\n\n1) Zapping is more meaningful to me because 168 is a symbolic number to me. It makes me feel that I’m spreading good luck around, especially since Chinese New Year is around the corner. Haha. Also I’m loving the darkish green zap - it makes me wonder just how many colours there are available!\n\n2) Since my default is 168, I have to think more carefully about zapping a comment. Maybe my commenting behaviour has got to change. Maybe some Stackers have high default zaps, so they zap others but not me. I should just focus on developing my thoughts substantially so that people can’t help but zap my wonderful comments haha\n\nWill get in touch again! \n\nAnd thanks for the play money https://example.com/ 20370 443282 443105.443282.443286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.02390703372044 0 \N \N f 561820958 \N 4 35011659 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436243 2025-03-13 12:15:00.279 2025-03-29 22:39:52.444 \N No https://example.com/ 12976 436241 436241.436243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.17587256254605 0 \N \N f 950720958 \N 10 193627749 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 12:13:20.343 f \N \N \N 0 0 0 0 6 0 0 433421 2025-03-11 04:33:47.684 2025-03-29 22:39:52.444 \N Nah, not by March.\n\nBut I think it could happen this year. Developers are under a lot of pressure to roll this out, even with a half-baked solution.\n\nhttps://decrypt.co/119620/ethereum-devs-divided-staking-withdrawals-shanghai\n\nI'm somewhat curious about how Ethereum manages hard forks now that there is no concept of a difficulty bomb. And I wonder about how the major stakeholders feel about withdrawals as it could disrupt their current monopoly (Lido, Coinbase, Kraken, etc.) https://example.com/ 18865 433403 433403.433421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.792184413103 0 \N \N f 350569218 \N 2 207799675 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435615 2025-03-12 20:23:00.187 2025-03-29 22:39:52.444 \N Yes please @k00b. I intend to publish 5 long-form articles (more than 4000 words each) as soon as this feature becomes available on SN. \n\nI am currently setting up a Substack but will delete it immediately when blogging on SN is available. https://example.com/ 895 435608 435551.435608.435615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1086834562605 0 \N \N f 352996621 \N 2 66462139 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 2025-03-19 21:23:47.405 f \N \N \N 0 0 0 0 1 0 0 436202 2025-03-13 11:35:47.686 2025-03-29 22:39:52.444 \N You could drive a truck through the excluded middle of those choices.\n\nI'm as big of an advocate for voting with your feet as anyone, but there are so many other differences between the US and El Salvador. Within the US there are big differences in how states protect Bitcoin, so there may be good options that aren't as personally disruptive.\n\nWhy isn't staying and not complying one of the options? People are illegally using Bitcoin all over the world. Americans can follow their lead, if it comes to that. https://example.com/ 2961 436041 435907.436016.436041.436202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.520532038369 0 \N \N f 245648109 \N 1 43287011 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 10:44:36.314 f \N \N \N 0 0 0 0 1 0 0 410655 2025-02-20 15:32:28.329 2025-03-29 22:39:52.445 \N I was initially trying to build a better version of the famous NFC lightning cards - I wanted to add a display so that the user could confirm how much they are paying.\n\nI built that thing and showed it to a bunch of people, and I got pretty negative feedback about it: nowadays lightning is still mostly used for smaller payments, so people want the most convenience, not the most security.\n\nSo i ended up repurposing the hardware for a different use-case, on-chain transactions, where security is even more critical. https://example.com/ 706 410358 410358.410655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7098048721358 0 \N \N f 130972503 \N 2 181012925 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435209 2025-03-12 14:28:38.084 2025-03-29 22:39:52.445 \N The Master and Margarita by Bulgakov is the best book. Big words, I know. https://example.com/ 9845 435046 435046.435209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0838885511507 0 \N \N f 706204548 \N 5 158351166 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 11:46:56.426 f \N \N \N 0 0 0 0 1 0 0 435707 2025-03-12 22:17:55.167 2025-03-29 22:39:52.445 \N Finland: The Country of White Lilies - Grigory Spiridonovich Petrov https://example.com/ 20788 435646 435639.435646.435707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1206491109959 0 \N \N f 132276918 \N 1 111951121 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 2025-03-19 18:17:09.716 f \N \N \N 0 0 0 0 1 0 0 402058 2025-02-13 14:32:55.199 2025-03-29 22:39:52.445 \N Wow these are awesome, thanks https://example.com/ 21060 401520 401283.401346.401403.401520.402058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.77916023405971 0 \N \N f 592636916 \N 5 89690042 0 f f \N \N \N \N 401283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 453900 2025-03-26 02:23:05.111 2025-03-29 22:39:52.446 \N they’re incredibly counter-intuitive for anyone who doesn’t intimately understand cryptography and security, and they make it way too easy for people to make a mistake\n\nit’s a long discussion but there are other ways to handle key management and recovery that don’t require people to manually handle backups https://example.com/ 9336 453420 335484.335562.335591.335690.335721.335729.335791.336308.336318.336322.452856.453420.453900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5141136082921 0 \N \N f 591121392 \N 4 195892521 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435515 2025-03-12 18:44:42.651 2025-03-29 22:39:52.446 \N So what? I'm sure @k00b doesn't want to be legally liable for being an unregistered money service business, to open himself up to hacks stealing user funds, to be responsible at all for their money, or to see every transaction coming in and out of each user account. It doesnt matter how much it is, its fucking 2023, quit telling people to use custodians. https://example.com/ 9552 435335 435314.435320.435335.435515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6824476875778 0 \N \N f 127569791 \N 3 147110117 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-19 12:13:01.533 f \N \N \N 0 0 0 0 2 0 0 410504 2025-02-20 14:06:22.933 2025-03-29 22:39:52.446 \N Dunno, but it seems like you self-censored by halting your involvement. Personally, I'd try to move on and not dwell on things that make me unhappy. https://example.com/ 795 410420 410420.410504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.96216544625364 0 \N \N f 176509101 \N 1 212858557 0 f f \N \N \N \N 410420 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421030 2025-03-01 11:15:41.135 2025-03-29 22:39:52.446 \N I wonder if it is a presumptive move in response to possible legal action:\n\nhttps://arstechnica.com/tech-policy/2024/05/sec-crypto-crackdown-continues-with-robinhood-as-lawsuit-looms/ https://example.com/ 12049 420986 420895.420959.420986.421030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.45948593742506 0 \N \N f 6453603 \N 1 119879160 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 419276 2025-02-27 17:33:35.593 2025-03-29 22:39:48.902 What it’s actually like to use Bitcoin in El Salvador – Cointelegraph Magazine \N https://cointelegraph.com/magazine/what-actually-use-bitcoin-el-salvador/ 16267 \N 419276 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.9419575084158 0 \N \N f 327815456 \N 2 230011644 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403778 2025-02-15 07:52:29.84 2025-03-29 22:39:52.437 \N I could say lack of education but I'm going with other most r like Cypher (bald guy in the 1st matrix) they know something is wrong but they don't want to look at it or even act on it would rather be plugged back in and not remember a thing and they all wanna be rich... https://example.com/ 683 403776 402904.403694.403750.403754.403755.403762.403765.403771.403772.403773.403776.403778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1375967443634 0 \N \N f 824627959 \N 7 120135068 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430337 2025-03-09 05:37:43.601 2025-03-29 22:39:52.441 \N Just got rugged. The road to recovery starts today. \n\nMy spirit is low but never broken. Lesson learned on to the future. https://example.com/ 714 430279 430279.430337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7920744103075 0 \N \N f 44067197 \N 1 41807990 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 445701 2025-03-20 17:32:24.964 2025-03-29 22:39:52.441 \N For one they seem to be getting a lot of regulatory pressure, so this may ease that a little bit. For two, you can only push back on web standard support for so long without it negatively effecting their standing in the web community. https://example.com/ 21044 445696 445518.445696.445701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.60838545772332 0 \N \N f 1061278899 \N 9 99945534 0 f f \N \N \N \N 445518 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436381 2025-03-13 14:09:26.747 2025-03-29 22:39:52.441 \N "Bitcoin will die without this!" is how you know it's absolutely useless. https://example.com/ 5961 436375 436362.436375.436381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.14240041365828 0 \N \N f 61207172 \N 1 117788098 0 f f \N \N \N \N 436362 \N 0 0 \N \N f \N 2025-03-20 07:31:35.797 f \N \N \N 0 0 0 0 1 0 0 1929 2022-09-29 11:05:33.546 2025-03-29 22:39:52.441 \N Alternately: "btc is fine, everything is good for btc, it's inevitable" is also how you know. https://example.com/ 7978 1907 1903.1904.1905.1906.1907.1929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.44504931949717 0 \N \N f 48572601 \N 1 70393887 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422583 2025-03-02 15:06:20.278 2025-03-29 22:39:52.441 \N An app that ties together messaging, lightning transactions, lightning addresses (would be the username) and lightning to bitcoin swaps. https://example.com/ 20646 422579 422203.422207.422399.422491.422579.422583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4678000969064 0 \N \N f 3305685056 \N 26 115480557 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443358 2025-03-19 09:37:04.074 2025-03-29 22:39:52.442 \N if you were to pitch Substack on how Nostr can help Substack earn more revenue today (one thing they probably care deeply about), how would you do it? https://example.com/ 4287 443350 443105.443193.443331.443350.443358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7843562278762 0 \N \N f 387583469 \N 3 213327945 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 2025-03-26 03:55:11.011 f \N \N \N 0 0 0 0 2 0 0 435236 2025-03-12 14:44:50.242 2025-03-29 22:39:52.442 \N I have been accumulating satoshis! Finally got about 10,200 sats and used them to buy a $2 GrabFood voucher on the Zebedee app, a purchase made possible by Bitrefill. I didn’t even know Bitrefill has partnerships with my local version of UberEats. Got 101 sats cashback from Bitrefill for this purchase. Just having fun with the Lightning Network ⚡️! https://example.com/ 8989 435224 435224.435236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.64661863623948 0 \N \N f 23900207 \N 1 6000687 0 f f \N \N \N \N 435224 \N 0 0 \N \N f \N 2025-03-19 08:52:06.761 f \N \N \N 0 0 0 0 1 0 0 422927 2025-03-02 19:30:20.47 2025-03-29 22:39:52.446 \N I noticed that the 3 cowboys on the SN team all have a k in their names. Any idea why? https://example.com/ 10102 422918 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422911.422918.422927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9684072377539 0 \N \N f 248473817 \N 1 4104390 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430331 2025-03-09 05:21:05.521 2025-03-29 22:39:48.902 SpiralBTC: Private Bitcoin block explorer using homomorphic encryption \N https://btc.usespiral.com/ 1326 \N 430331 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 20.4525996256675 0 \N \N f 492123345 \N 4 117308075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436832 2025-03-13 23:47:24.38 2025-03-29 22:39:52.442 \N Title bro https://example.com/ 21647 436782 436669.436782.436832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.10968537794919 0 \N \N f 210211999 \N 1 125738985 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1907 2022-09-28 14:48:08.205 2025-03-29 22:39:52.442 \N I use it less.\n\nI love the platform and the wonky experience, but there's zero interaction if you're not a "bitcoin influencer" already.\n\nI'm still bullish on Nostr, though. Someone will fix it soon enough. https://example.com/ 706 1906 1903.1904.1905.1906.1907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.399902018618 0 \N \N f 118966488 \N 2 105566194 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424089 2025-03-03 20:24:37.327 2025-03-29 22:39:52.443 \N 1. In the next 5 years Bitcoin will became the resistance money, used only by underground markets and people that will resist tyranny.\n2. CBDCs will be massively used (forcibly or not) because many people will just give up and embrace total slavery.\n3. Bitcoin price is still meaningless.\n\nI have lost any hope in people's capacity to decide for themselves the good things.\nStop putting all your hope into Bitcoin.\n"Bitcoin fixes this" is a total nonsense.\nPeople are too stupid for having Bitcoin.\n\nI will repeat this over and over and some of you will remember my words in 5 years.\n[![vader-sovereign-adoption.jpg](https://i.postimg.cc/zX2ZDQD1/vader-sovereign-adoption.jpg)](https://postimg.cc/vcnS336P) https://example.com/ 2774 95453 95306.95453.424089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.43279951739665 0 \N \N f 22020691 \N 1 154003257 0 f f \N \N \N \N 95306 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430865 2025-03-09 13:20:48.723 2025-03-29 22:39:52.443 \N Hello snail! https://example.com/ 5308 430330 430330.430865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3179633369021 0 \N \N f 141659545 \N 1 242625471 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427748 2025-03-06 15:45:26.138 2025-03-29 22:39:52.444 \N Can’t wait for the part about insider trading, hiring the hacking team, selling customer data to governments for spying, or the rampant intellectual dishonesty involved in running a shitcoin casino. https://example.com/ 17953 414232 414232.427748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.865186329176 0 \N \N f 1124039 \N 1 137289367 0 f f \N \N \N \N 414232 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436197 2025-03-13 11:31:56.6 2025-03-29 22:39:48.902 RANT: On the things we need to call out: Extremism and idiocy *Disclaimer: Before we dive into this rant, let me make one thing crystal clear. I'm not here to bash the folks who playfully embrace the cult-like jokes and ironic vibes in the Bitcoin community. You know, those lighthearted trolls who find it amusing to mess with people's heads. This is directed at the real idiots, the ones who genuinely take things to a whole new level of crazy. So if you're feeling offended by any of this, maybe it's time for a rationality check. Also, I'm not here to attack anyone personally for their beliefs, I love steak as much as the next guy and I support you in your fight for your right to not being vaccinated against your will, but I'm NOT OK with any kind of extremism.*\n\n\n**Introduction:**\nI'm not the first person, nor the last one, who felt something close to "finding the light" when I started studying Bitcoin and the history of money. It showed me an ugly side of the world that I can not unsee anymore, while at the same time, it gave me something that aligns with my way of seeing the world despite its ugliness. And let's face it, many of us share this sentiment. However, this has also attracted a bunch of fanatics who take things to a whole new level of crazy. I think they need to be called out, just like we've called out the cryptobros, and make it clear that we don't want to be mixed up as part of their antics. Let's dive into this mess and bring some rationality back into the Bitcoin scene.\n\n**The Lunatic Fringe:**\nSeriously, have you seen these people? They've not only made Bitcoin their entire personality but they've gone off the deep end, spouting off conspiracies and embracing the weirdest ideologies you can imagine. This includes, but is not limited to: carnivorous diet freaks, climate change deniers, extreme Christians, anti-vaxxers, doomers, alt-right supporters, and my favorite ones, those who dismiss psychiatry and psychology as "FIAT sciences." It's like either they've been expecting the world to end for a long time and found in Bitcoin a new kind of monetary salvation, or they were a bunch of virtue signallers who found in Bitcoin a new virtue to signal on because, of course, they are geniuses for finding Bitcoin before the rest of the world. Newsflash: Bitcoin is awesome, but it doesn't make you a genius or the only enlightened soul on this planet. If the world ends tomorrow, you won't be saved because you have Bitcoin, Christ, grass-fed steaks, you're unvaccinated, and you own a bunch of guns. Nobody will come begging on their knees for your Bitcoin or for you to teach them "the right way of living".\nWe all know the government is a cartel and should not be blindly trusted, but guess what? Everyone knows that, not just us. Following stupid ideas just to be anti-establishment is as idiotic as following them because it's what the establishment says and "they are the people who know".\nTo me it looks as if people take "Don't trust verify" to a whole new level where they take as verification anything that assures them that what they've been taught is a lie, no matter how ridiculous.\n\n**Tainted Perception:**\nThe extremist faction within the Bitcoin community has had a detrimental impact on how the wider public perceives us. Their loud voices and outrageous beliefs have led outsiders to label us all as a bunch of nutjobs. It's incredibly frustrating. We need to make it clear that we're not all conspiracy theorists. We're just regular people who see the potential of Bitcoin for various reasons. Some of us view it as a financial revolution, while others consider it the best asset available or are fascinated by its resilience despite its flaws. However, these extremists have caused skeptics to believe that we're all drinking the same Kool-Aid.\nLet's face it, explaining Bitcoin is no easy task, and we often come across as maniacs when we try to convey its intricacies to others. Additionally, we may engage in mocking the cryptobros, which can inadvertently make us appear elitist. But the truth is, most of us have simply arrived at the conclusion that Bitcoin is the best choice based on our own considerations. However, it's important to recognize that this doesn't make it a universal solution or elevate anyone to the status of genius.\nWhat's even more amusing is that we all know it. We're well aware that these extreme views held by some individuals within the community are utterly ridiculous. We all laugh at it, we make fun of them, and when people call us any of those things, we usually try to own it and use it as a flag to ridicule them. But there's a big difference between that and really believing any of it.\n\n**Rejecting the Lunacy:**\nPersonally, I don't want to be associated with those people. Sure, I can appreciate the humor and proudly display my laser eyes and "Delinquent Bitcoiner" tag on my Twitter profile, and all the Bitcoin merch I've bought or have been given by others because I love Bitcoin, but I do so despite them, not because of them. Bitcoin is a neutral form of money, and it's no surprise that the tinfoil hat-wearing lunatics are drawn to it. However, we should not allow them to define the image of the Bitcoin community. The majority of us value common sense and critical thinking, not fanaticism, virtue signalling, and apocalyptic prophecies.\nIt's true that extremism often emerges alongside notions of freedom and independence, which is why some individuals are attracted to Bitcoin like moths to a flame. But that doesn't mean we should tolerate or embrace their idiocy.\n\n\n**Conclusion:**\nBitcoin deserves better than the extremist circus that has taken over the community. It's time we distance ourselves from those who propagate irrationality and conspiracy theories. Bitcoin is simply a tool for trade, but one with immense potential. The Bitcoin community shouldn't be defined by the fringe, but by individuals who value rationality, common sense, and open dialogue.\nWhile some may find humor in the exaggerated antics and ironic behaviour, it's important to differentiate between those engaging in playful banter and the genuine extremists who believe in their absurd ideologies. We understand that not everyone is on board with Bitcoin, and that's perfectly fine. People have the right to be skeptical and critical. We shouldn't dismiss their concerns but instead engage in respectful discussions and provide well-reasoned arguments.\nSo let's make it clear: we don't endorse the extremists. We don't align ourselves with their outlandish beliefs. We laugh at them, mock them, and separate ourselves from their misguided notions. We are a diverse community with a range of perspectives, motivations, and reasons for being involved in Bitcoin.\nBitcoin may have exposed the flaws of the current financial system, but we're not the only ones who see it. Let's encourage rationality, critical thinking, and open dialogue not just within our community, but also with those who hold different viewpoints.\n\n\n\n\n\n*This has also been publish on my [personal substack](https://frverdeja.substack.com/p/a-rant-on-the-things-we-need-to-call)* \N 13055 \N 436197 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 17.3553971241525 0 \N \N f 404511970 \N 4 140694274 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:10:25.296 f \N \N \N 0 0 0 0 3 0 0 1816 2022-09-26 12:52:58.451 2025-03-29 22:39:48.902 Poll: Who won tonight’s presidential debate? Looks like CNN has unwittingly thrown Joe Biden under the bus by running a live poll during the debate which Trump has won by 94%. \n\nThis isn't real at all. CNN has flipped it suddenly. \n\n![](https://m.stacker.news/37405)\n\n**What do you say?** \N 9276 \N 1816 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.1180673934574 0 \N \N f 454374921 \N 2 81314700 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 397467 2025-02-10 05:37:05.826 2025-03-29 22:39:48.902 Debt Wager: U.S. National Debt Over 40trn by Independence Day Next Year? I'm pretty excited about the bitcoin prediction markets. It's a nice way to coordinate distributed knowledge about the future -- and have people put actual, real-world money behind their projections. \n\n_This_ one, though, seems outrageous: [Will the U.S. National Debt Cross $40trn Before July 4th?](https://www.bitcoinprediction.market/predictions/38/will-the-u.s.-national-debt-cross-$40t-before-july-4th,-2025). \nIt probably just opened and got seeded, which is why the odds are so stupid (even). \n\n![](https://m.stacker.news/63420)\n\nI pretty much see _no way_ this is going to happen. \n\n**Some general observations:**\n- We're at **$36trn** today. \n- Fiscal Year 2024 (year ended Sept 2024) deficits = **$1.83** trillion\n- U.S. nominal GDP about **$29.1trn**\n- Last month the Treasury ran a $257bn deficit ([Fiscal Data](https://fiscaldata.treasury.gov/datasets/monthly-treasury-statement/summary-of-receipts-outlays-and-the-deficit-surplus-of-the-u-s-government)); these things come in unevenly but even if you extrapolate that over the next eight months (=**2.056trn**) you're still nowhere near the 40trn mark. \n- if we take the highest single-month deficits in recent years ($380bn) and extrapolate _that_, we get about 3trillion -- again, roughly a trillion short. \n- Fed is bringing BS _down_, not up, meaning the appetite for opportunistically issuing more Treasurys that the market could stomach is limited. \n\nLooking at this in a different roundabout way: \n- U.S. growth might be **2.5%** next year ([Goldman Sachs](https://www.goldmansachs.com/insights/articles/the-global-economy-is-forecast-to-grow-solidly-in-2025#:~:text=US%20GDP%20is%20projected%20to,of%20the%20consensus%20at%201.9%25.))\n- U.S. deficit should be around **7.6%** of GDP ([Fitch](https://www.fitchratings.com/research/sovereigns/tax-cuts-could-add-to-us-deficit-pressures-07-11-2024))\n- That gives us 29.1 x 1.025 x 0.076 =$2.27 trillion worth of deficits (for _the entire FY 2025, not just until July 4th). \n\nIf NGDP growth were 5%, pretty extraordinary as we're hinting at recession etc, and the deficit blew out to 10-15%, _only then_ would we get close to the mark for the full Fiscal Year 2025. \n\nEven with some Trump tax cuts early next year (which probs won't pass Congress etc., in time to do much) there's no way they're running 2-years plus worth of deficits in eight months. And the Elon-Vivek DOGE thing, if likely to do anything at all, is on cutting expenditures, thus operating _against_ the debt blow out to 40trn. \n\nWhile I don't particularly like locking up sats for this long a period (the election gamble where most of us made out like bandits was a good trial run, but also over a much short time horizon), this seems like a no-brainer. \n\nFree sats on the table. *_Will I grab some?_*\n \N 21498 \N 397467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.86375220308415 0 \N \N f 146463450 \N 1 232198581 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433879 2025-03-11 13:32:49.408 2025-03-29 22:39:52.444 \N With the advent of VR, I know for a fact a person's physic, demeanour and mannerism can be scanned and transmitted during those sort of communication ergo information will be successfully passed https://example.com/ 11996 433740 433740.433879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.4689304870269 0 \N \N f 72421554 \N 1 217794712 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 419360 2025-02-27 18:41:50.972 2025-03-29 22:39:52.444 \N https://silent.link/\nhttps://crypton.sh/\nhttps://sms4sats.com/\nhttps://ln-sms.com/\nhttps://lnsms.world/\nhttps://www.textverified.com/\n\nalso this is interesting, over LN\nhttps://github.com/pseudozach/redphone\n https://example.com/ 672 418796 418796.419360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4824472414758 0 \N \N f 520067735 \N 3 31956644 0 f f \N \N \N \N 418796 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414643 2025-02-24 06:24:35.775 2025-03-29 22:39:52.445 \N No. We're not building a human tracking system to bag and tag people and enable absolute authoritarian control. https://example.com/ 9261 414625 414625.414643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9580867751362 0 \N \N f 86644115 \N 1 218400659 0 f f \N \N \N \N 414625 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447432 2025-03-21 20:36:02.049 2025-03-29 22:39:52.445 \N We don't. We are burning VC money to keep ourselves warm at night. \n\nWe have ideas on how we eventually do make money but they're just ideas and need to be validated. https://example.com/ 3360 447194 446456.447164.447194.447432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6372183600759 0 \N \N f 145657643 \N 1 153861242 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435098 2025-03-12 13:11:46.081 2025-03-29 22:39:52.446 \N Learning how to Lightning Network and node, so I can become a true stakeholder in the network. https://example.com/ 21239 435046 435046.435098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2964945979399 0 \N \N f 196817877 \N 1 41377659 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 06:42:33.148 f \N \N \N 0 0 0 0 1 0 0 434661 2025-03-12 05:39:27.975 2025-03-29 22:39:52.446 \N ![](https://m.stacker.news/39998)\n\n@k00b, @ek please look into this and suggest https://example.com/ 712 433833 433833.434661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3594170590925 0 \N \N f 152166753 \N 1 76228252 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 2025-03-19 05:01:21.203 f \N \N \N 0 0 0 0 1 0 0 436665 2025-03-13 19:12:51.965 2025-03-29 22:39:48.902 SN Saturday Newsletter 5/18/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Property management built on Bitcoin](https://stacker.news/items/542701)\n - [@thecommoner](https://stacker.news/thecommoner) nudges tenants to pay rent in Bitcoin by splitting the exchange rate appreciation at a future date. They wrote about [this previously](https://stacker.news/items/472995) and are thinking about scaling it up.\n - 5.3k sats \\ 35 comments \\ [@thecommoner](https://stacker.news/thecommoner)\n2. [Launched: BitEscrow - Non-Custodial Bitcoin Escrow Service](https://stacker.news/items/541413)\n - [BitEscrow](https://www.bitescrow.app/) publicly launches its Bitcoin escrow contracting system on [mutinynet](https://mutinynet.com/).\n - 7.3k sats \\ 26 comments \\ [@Tristan](https://stacker.news/Tristan)\n3. [El Salvador has its own mempool.space site with its treasury holdings](https://stacker.news/items/537500)\n - El Salvador's [mempool.space clone](https://bitcoin.gob.sv/) shows the country's treasury holdings, 5,753 Bitcoin currently, its transactions, and [Bukele's X timeline](https://x.com/nayibbukele).\n - 4.7k sats \\ 18 comments \\ [@sefiro](https://stacker.news/sefiro)\n4. [All you need to know about Silent Payments in one site | silentpayments.xyz](https://stacker.news/items/541840)\n - I could tell you about [Silent Payments](https://silentpayments.xyz/) but you can learn all you need to know about them on [silentpayments.xyz](https://silentpayments.xyz/).\n - 4.5k sats \\ 25 comments \\ [@sethforprivacy](https://stacker.news/sethforprivacy)\n5. [P2P trading etiquette](https://stacker.news/items/542171)\n - [@leo](https://stacker.news/leo) shares tips on how to find, and be, a good peer-to-peer bitcoin trading partner, then asks stackers to share their tips.\n - 3.7k sats \\ 32 comments \\ [@leo](https://stacker.news/leo)\n\n\n##### Don't miss\n- [Writing as Proof of Work ⛓️](https://stacker.news/items/541664)\n- [Thoughts on the exoself](https://stacker.news/items/537059)\n- [A pleb’s journal to running BOLT12 with CLN, PART 1](https://stacker.news/items/538702)\n- [Oklahoma signs bill into law protecting crypto spending, mining, & self-custody](https://stacker.news/items/540161)\n- [Stratum V2: More Censorship-Resistant and Efficient Mining Protocol?](https://stacker.news/items/537092)\n- [Can Bitcoiners Solve Landfills - How Big Business Broke Recycling and Blamed You](https://stacker.news/items/538624)\n- [Blinded Authentication Tokens in Mutiny](https://stacker.news/items/541732)\n- [If someone sends you 10 BTC by mistake, what would you do? ](https://stacker.news/items/540244)\n- [Breakdown of the Tornado Cash court ruling | Freedom.Tech](https://stacker.news/items/539758)\n- [Cashu: This will allow integrating Ecash into existing KYC/AML infrastructure](https://stacker.news/items/541431)\n- [Bitcoin - We can't let this get fucked up to!](https://stacker.news/items/541589)\n- [An investigation into bitcoin (and sadly, crypto) in Turkey](https://stacker.news/items/540965)\n- [Nodana - Phoenixd As A Service](https://stacker.news/items/538161)\n- [Thinking through Cashu](https://stacker.news/items/538496)\n- [U.S citizens are you afraid of using privacy tools like coinjoin?](https://stacker.news/items/536433)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [What kind of bot would you like to see on SN?](https://stacker.news/items/542397)\n- [SN release: item hover, notification mutes, accordion errors, fix fee rate, more](https://stacker.news/items/540701)\n- [Only Cowboys Get Rewards: and other ideas](https://stacker.news/items/539514)\n- [Stacked 10k sats: Thank you SN.](https://stacker.news/items/543418)\n- [Are you a full-time stacker on SN?](https://stacker.news/items/540538)\n- [Are you ready for the normiepocalypse?](https://stacker.news/items/540304)\n\n------\n\n##### Top Stackers\n1. [@k00b](https://stacker.news/k00b): 85.4k sats stacked\n2. [@grayruby](https://stacker.news/grayruby): 62k sats stacked\n3. [@Rsync25](https://stacker.news/Rsync25): 61.1k sats stacked\n4. [@Undisciplined](https://stacker.news/Undisciplined): 54.8k sats stacked\n5. [@0xbitcoiner](https://stacker.news/0xbitcoiner): 48.8k sats stacked\n\n------\n\n##### Top Spenders\n1. [@AtlantisPleb](https://stacker.news/AtlantisPleb): 416.3k sats spent\n2. [@k00b](https://stacker.news/k00b): 244.7k sats spent\n3. [@Undisciplined](https://stacker.news/Undisciplined): 51.2k sats spent\n4. [@TNStacker](https://stacker.news/TNStacker): 45.6k sats spent\n5. [@grayruby](https://stacker.news/grayruby): 37.9k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 356 days\n2. [@kepford](https://stacker.news/kepford): 299 days\n3. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 253 days\n4. [@elvismercury](https://stacker.news/elvismercury): 250 days\n5. [@Undisciplined](https://stacker.news/Undisciplined): 235 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 1618 \N 436665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1869658985987 0 \N \N f 409534217 \N 4 232690538 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:48:30.175 f \N \N \N 0 0 0 0 4 0 0 402475 2025-02-13 18:49:42.207 2025-03-29 22:39:48.902 Shawn Baker AMA hello, hopefully this works \N 9356 \N 402475 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 17.9730528498726 0 \N \N f 130460808 \N 1 205846435 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421260 2025-03-01 14:42:36.278 2025-03-29 22:39:48.902 What should SBF sentence for his crimes be? I'm not asking what you think will happen. What do you believe would be most just/right? Why? \N 7185 \N 421260 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 24.7128551689105 0 \N \N f 152254666 \N 1 240127215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433345 2025-03-11 01:39:05.98 2025-03-29 22:39:52.447 \N This feels like a pivot to possible fractional reserve in the future. https://example.com/ 2039 433324 432881.433324.433345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2226051505187 0 \N \N f 269369740 \N 2 197979358 0 f f \N \N \N \N 432881 \N 0 0 \N \N f \N 2025-03-18 17:04:55.995 f \N \N \N 0 0 0 0 1 0 0 421198 2025-03-01 13:42:05.691 2025-03-29 22:39:52.447 \N anything we should add to the gem? https://example.com/ 760 421082 421082.421198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1146301979704 0 \N \N f 66990613 \N 2 206743576 0 f f \N \N \N \N 421082 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401314 2025-02-12 22:00:29.444 2025-03-29 22:39:52.448 \N From someone who has wasted thousands on unnecessary cloud bills, and has a mid-size homelab that’s 80% idle…\n\nI would run everything locally (on a laptop/desktop) until that becomes a limitation, which is probably only the case when you’re ready to go live on mainnet.\n\nSeriously, just use docker, or maybe a kubernetes dev cluster (kind or k3d) if you’re comfortable with it.\n\n\nFrom someone who has accidentally lost too many testnet coins…\n\nUse regtest as much as possible. When you’re ready to interface with the world, try one of the signets.\n\n\nSeriously, be as stingy as possible with your sats. I used to think spending money on hardware and elaborate cloud infra would make me “invested” but the reality is all other resources required to learn this stuff are dwarfed by time, the scarcest resource of all. https://example.com/ 19813 401183 400943.401183.401314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6500934013266 0 \N \N f 636643948 \N 4 62720730 0 f f \N \N \N \N 400943 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430605 2025-03-09 11:06:40.612 2025-03-29 22:39:52.448 \N a rice cooker! https://example.com/ 9421 430173 413007.430173.430605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0296001901017 0 \N \N f 164703234 \N 1 194502380 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443429 2025-03-19 10:51:49.825 2025-03-29 22:39:52.449 \N Nice work! Might I suggest a timely SBF portrait? Maybe an American Gothic takeoff with Caroline? https://example.com/ 21688 443427 443372.443390.443427.443429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.85983183456521 0 \N \N f 188189220 \N 3 127830747 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 06:41:59.767 f \N \N \N 0 0 0 0 1 0 0 443837 2025-03-19 14:37:32.184 2025-03-29 22:39:52.449 \N The conspiracy theories about 15 min cities are the dumbest kind of conspiracies.\n\nSuburbs with only a highway access and 1 road out are easier to shut people in. Only 1 walmart to starve people in this prison. Cookie cutter houses with 10m^2 are stuffy prison cells. https://example.com/ 18630 443268 443268.443837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7956778948358 0 \N \N f 56265279 \N 1 9703324 0 f f \N \N \N \N 443268 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437312 2025-03-14 12:39:26.862 2025-03-29 22:39:52.449 \N the option to not validate is not a feature because the alternative to validating is to outsource the cost by pointing hash power towards pools or entities who can afford to do so.\n\nthis outsourceable cost is unlike any cost miners have to deal with and incentivize consolidation of smaller hashing power and block creation capabilities to an oligopoly. https://example.com/ 8870 437308 436752.437184.437271.437292.437293.437308.437312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6623833004503 0 \N \N f 2517300944 \N 19 217339698 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449577 2025-03-23 12:44:35.026 2025-03-29 22:39:52.449 \N If you phone up and answer a few questions they will ease the restrictions. Unbelievable, the balls of a bank telling you what you can spend your money on https://example.com/ 624 449186 449186.449577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8733219117054 0 \N \N f 190609437 \N 1 177183059 0 f f \N \N \N \N 449186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436126 2025-03-13 10:38:18.18 2025-03-29 22:39:52.449 \N As of a couple of years ago, I think it made sense to get a mortgage and let inflation erode it away. Now, I think it's probably worth waiting until the other side of the crash to look for screaming bargains. https://example.com/ 10986 436091 436028.436029.436031.436059.436065.436091.436126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1013571600471 0 \N \N f 611108432 \N 7 40737833 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 04:18:12.842 f \N \N \N 0 0 0 0 1 0 0 423316 2025-03-03 08:47:39.487 2025-03-29 22:39:48.902 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/482660) are the updates stackers shared from all their latest work projects. \N 21020 \N 423316 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 6.98665655734043 0 \N \N f 196781618 \N 1 203474857 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428760 2025-03-07 15:18:15.127 2025-03-29 22:39:48.902 The systems of banking and civilization I'm mid-way through the linked podcast w/ Patrick McKenzie, formerly of Stripe, who also writes a [dynamite newsletter](https://www.bitsaboutmoney.com/) on stuff pertaining to the financial rails. \n\nI recommend his newsletter unreservedly if you want the intersection of clear writing and deep expertise into something central to issues bitcoiners care about. I'm always on the lookout for actual expertise on these matters, since the opinions of people who don't actually know wtf they're talking about is a DOS attack on my capacity to understand the world [1] and I'm being [increasingly guarded](https://stacker.news/items/469984) about allocating my attention.\n\nAnyway, if you don't know his work, this discussion w/ the Bankless bros, who are Thought Criminals par excellence, is a nice introduction. I feel smarter having listened to it.\n\n[1] IMO, the most interesting treatment of this idea in fiction is Neal Stephenson's criminally under-valued [best book](https://en.wikipedia.org/wiki/Anathem). https://www.bankless.com/is-crypto-a-scam-patrick-mckenzie 5725 \N 428760 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 19.3634802193423 0 \N \N f 519209570 \N 4 162042517 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446661 2025-03-21 12:08:49.144 2025-03-29 22:39:52.45 \N I'm only posting this reply because I'm starting to deal with business taxes. 1099s for dollar amounts paid over $600. https://example.com/ 12245 446651 446598.446635.446641.446651.446661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5260603849289 0 \N \N f 536344823 \N 3 46025561 0 f f \N \N \N \N 446598 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434420 2025-03-11 21:44:01.624 2025-03-29 22:39:52.45 \N The actors who played Mickey and Minnie Mouse were married in real life. https://example.com/ 12356 433828 433828.434420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1657472937964 0 \N \N f 296092472 \N 3 196496153 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-18 16:29:55.857 f \N \N \N 0 0 0 0 2 0 0 430601 2025-03-09 11:00:44.94 2025-03-29 22:39:52.45 \N _The Lessons of History_ by Will Durant \n\nConclusion so far: Some arguments for the twentieth century are based on questionable assumptions. For instance you can never trust any economic growth numbers published by a socialist country. https://example.com/ 11144 430496 430496.430601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.271967722626 0 \N \N f 309666459 \N 2 146160208 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435446 2025-03-12 17:25:29.764 2025-03-29 22:39:52.451 \N A backup power source, such as a generator https://example.com/ 21145 435261 435261.435446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.26013773620169 0 \N \N f 208009821 \N 2 87596280 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:32.796 f \N \N \N 0 0 0 0 2 0 0 435132 2025-03-12 13:41:07.468 2025-03-29 22:39:52.449 \N Some of the notable books, I can recommend:\n\nThe Book of Satoshi by Phil Champagne\n\nThe Bitcoin Standard by\tSaifedean Ammous\n\nDigital Gold by\tNathaniel Popper\n\nMastering Bitcoin by Andreas M. Antonopoulos\n https://example.com/ 12334 435046 435046.435132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5772071722286 0 \N \N f 789858816 \N 5 49559747 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 10:37:16.631 f \N \N \N 0 0 0 0 2 0 0 402342 2025-02-13 17:30:04.148 2025-03-29 22:39:52.45 \N Pretty cool that SN not obly draws from the community but can also bring new people to Lightning https://example.com/ 1817 402316 402316.402342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.69638460222412 0 \N \N f 94159320 \N 1 11329037 0 f f \N \N \N \N 402316 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458134 2025-03-29 01:42:19.498 2025-03-29 22:39:52.451 \N Even those of us who “own” a home are just renting it from the government. https://example.com/ 651 458122 458122.458134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9761394003754 0 \N \N f 1183873299 \N 8 108854182 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 441091 2025-03-17 18:49:47.055 2025-03-29 22:39:52.451 \N A hidden safe in the wall for you to hide your valuables https://example.com/ 7389 441087 441087.441091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0292962124321 0 \N \N f 376710227 \N 2 171722713 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428662 2025-03-07 13:50:59.973 2025-03-29 22:39:52.451 \N It'll be beauty data centers or warehouses https://example.com/ 14688 428653 428653.428662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0777617056501 0 \N \N f 127635342 \N 1 244913296 0 f f \N \N \N \N 428653 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424300 2025-03-04 00:19:31.903 2025-03-29 22:39:52.451 \N ... and how! https://example.com/ 20754 424299 423928.424260.424266.424282.424285.424294.424299.424300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4395692631819 0 \N \N f 438780031 \N 2 99974025 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435417 2025-03-12 16:58:41.833 2025-03-29 22:39:52.452 \N fraternity https://example.com/ 11298 434424 434424.435417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.099962699905376 0 \N \N f 242055715 \N 1 28316337 0 f f \N \N \N \N 434424 \N 0 0 \N \N f \N 2025-03-19 12:51:12.356 f \N \N \N 0 0 0 0 1 0 0 403218 2025-02-14 14:52:23.361 2025-03-29 22:39:52.452 \N In the post, I put the direct link. In the previous comment, I used the command \\[]\\() https://example.com/ 10818 403182 403182.403218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3168343398571 0 \N \N f 36539470 \N 1 242524696 0 f f \N \N \N \N 403182 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435922 2025-03-13 05:29:00.303 2025-03-29 22:39:48.902 ‘The Three-Body Problem’ Is Brilliant. ‘3 Body Problem’ Is Better. We finished watching the US/Netflix adaptation last night, and it really was just as good as promised (maybe even better -- Liam Cunningham's character is every bit as fun and deep as Tyrion Lannister, in spite of the offhand comment implying otherwise). Will wait a couple of weeks to check out the Tencent/Peacock version.\n\nI still recommend the books a lot, of course, but like the article's author, I recognize that plot, not characters, is the strength of the novels. https://www.theringer.com/tv/2024/3/20/24106432/netflix-3-body-problem-adaptation-liu-cixin-benioff-weiss-sci-fi 15196 \N 435922 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 22.0857061909872 0 \N \N f 775918530 \N 4 40276008 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:05:23.473 f \N \N \N 0 0 0 0 2 0 0 434022 2025-03-11 15:10:31.655 2025-03-29 22:39:52.45 \N Good morning stackers. I lost my hat streak. Happened to end on an even number, 200 days. I thought I could make it over 1 year, but I was wrong. At least I survived the shoot-out, I think? Time to start a new streak.\n\n![](https://m.stacker.news/38591)\n\nAlso, check out [my weekly hiking post](https://stacker.news/items/599888). This week we head to Grouse Grind. https://example.com/ 19842 433740 433740.434022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1304004660657 0 \N \N f 305362213 \N 2 246483034 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415385 2025-02-24 18:55:58.434 2025-03-29 22:39:52.45 \N they also have a great blog post on their site announcing the creation of the project.\n\nhttps://www.fedi.xyz/blog/introducing-fedi-the-global-bitcoin-adoption-technology https://example.com/ 762 415378 415180.415378.415385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2550703663382 0 \N \N f 36688864 \N 1 60773653 0 f f \N \N \N \N 415180 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410293 2025-02-20 12:18:21.743 2025-03-29 22:39:52.45 \N Logging in to a site with a password. https://example.com/ 822 410094 410094.410293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.98598679236863 0 \N \N f 34330119 \N 1 125049881 0 f f \N \N \N \N 410094 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437521 2025-03-14 15:21:43.877 2025-03-29 22:39:52.45 \N I agree with each point of this article. I haven't been to any conference yet if there's a shitshow, I prefer to go to meetups and other regional things. Bitcoin Miami for me no longer has the "air" of a Bitcoin-only conference, which is why I prefer not to go. https://example.com/ 19980 437513 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0060157173504 0 \N \N f 986899479 \N 8 58186410 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443861 2025-03-19 14:48:48.979 2025-03-29 22:39:52.451 \N Why is this disgusting? https://example.com/ 14774 443799 443799.443861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.882781056307 0 \N \N f 498453089 \N 5 46073750 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449292 2025-03-23 10:25:59.895 2025-03-29 22:39:52.451 \N I was going to do a post on CRE today myself but I will share the data I have in the comments of this post instead. A few weeks ago @Undisciplined and I were discussing CRE which sent me on a fact finding mission as I am somewhat out of the loop these days being a couple years out of my business now and not really keeping up with my former circle other than standard pleasantries. \n\nThe following is data on office vacancy rates in the city of Toronto comparing March 2024 to March 2023, March 2020 (pre pandemic effect) and 20y years ago March 2004. As you can see vacancy rates are drastically higher compared to March 2020 and still increasing, as 2024 number is higher than 2023. Interestingly enough they are not that much higher than 20 years ago, which is notable but not really relevant considering almost no property is going to have debt issued for it at a 2004 valuation. \n\nPlease note this is for office only. From what I have been told by contact at CBRE more broadly across Canada office and retail (unless it is anchor tenant) have been struggling while industrial, data centres and other specialty (think medical, research, lab, cold storage etc) have been doing well. \n\n![IMG_5772.JPG](https://m.stacker.news/22410) https://example.com/ 1705 449290 449290.449292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6070424847692 0 \N \N f 415812961 \N 2 224943922 0 f f \N \N \N \N 449290 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447318 2025-03-21 19:17:35.516 2025-03-29 22:39:52.437 \N When you see shit like this it just makes you realize how much paper bitcoin is still out there. Short term holders have sold quite a bit and Miners have sold down a little bit but nowhere near the level to match this type of buying, plus what is going on with MSTR and Tether, plus the plebs. All the fluctuation in price is coming from vapour backed futures, options and other stupid derivatives. as long as the contracts roll they never need to settle and deliver the Bitcoin. They will eventually get squeezed into oblivion when people demand the bitcoin instead of the next paper contract. Then all hell will break loose. Until then paper is in control. https://example.com/ 21391 447302 447264.447302.447318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.45469646236638 0 \N \N f 352896113 \N 2 141400291 0 f f \N \N \N \N 447264 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 433206 2025-03-10 21:44:15.527 2025-03-29 22:39:52.438 \N Hey Freaks, \n\nTheWildWife is still pregnant. \nWe've been scheduling and going to appointments, she's mostly sleeping watching tv and walking the dog nowadays. I've been cooking and grocery shopping more, I think I need to focus on feeding the woman mostly Korean food.\n\nOfficial start date of my part time job has been moved to December 9.\nIn the meantime, I really want to finish my coding/writing/shopstr/music projects. \nAnd I still need to get my start9 up and running again. \n\nThanks,\nHustle \n\n\n https://example.com/ 14280 432920 432920.433206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.26137172495852 0 \N \N f 136014271 \N 1 103745891 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-19 00:44:05.105 f \N \N \N 0 0 0 0 1 0 0 444206 2025-03-19 18:11:08.075 2025-03-29 22:39:52.439 \N Work in progress, very complex, lots of reinvention\n\nHopefully will be some good bits that can be cherry picked from it in time\n\nThey would benefit from using nostr which already works and is growing, but they can do so in a few years time https://example.com/ 3213 438795 438414.438795.444206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.16321914023457 0 \N \N f 172204417 \N 1 20249600 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446728 2025-03-21 12:44:38.485 2025-03-29 22:39:52.439 \N Suppose Antpool has demonstrated a pattern of mining on the competing fork (as opposed to mining on their own block during a fork).\n\n![](https://m.stacker.news/39252)\n\nAs you explained, if Antpool were trying to maximize profits (short term) then they would mine on their own block during a chainsplit.\n\nWhat are you opinions on the following reasons why Antpool would abandon their own block during a fork?\n\n1. Antpool does not want to be "liable" for a 2+ block chainsplit that could appear as an attempt to reorg blocks (its a way to guard reputation as an "honest" pool)\n\n2. Antpool is using the Tit for Tat Strategy (its a long-term strategy of mutual cooperation)\n\nDo you have a theory why a pool would mine on the competing fork? https://example.com/ 18306 446465 446371.446452.446464.446465.446728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8901124075628 0 \N \N f 189582176 \N 1 216874272 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:25:56.492 f \N \N \N 0 0 0 0 1 0 0 458232 2025-03-29 06:01:46.6 2025-03-29 22:39:52.44 \N "The other interesting aspect of the Ethereum merge is that with Proof of Stake if we do suffer a 51% attack, we can precisely identify the attacker and eject them from the system. More than that, we can penalize them, including by destroying all their stake. And if they want to do a second attack, they have to rebuy."\n\nBasically a CBDC https://example.com/ 16988 458227 458227.458232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4635730150605 0 \N \N f 117345564 \N 1 243870233 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435315 2025-03-12 15:35:36.702 2025-03-29 22:39:52.44 \N SN is a "Value for Value" site. No one is going to "send you some sats". \n\nBut if you hang around and make interesting post and worthwhile comments that lead to better discussion, people will "zap" those post and comments with sats then you can then withdraw. \n\n https://example.com/ 20179 434791 434791.435315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2760294584869 0 \N \N f 477619012 \N 4 216731030 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 09:01:37.683 f \N \N \N 0 0 0 0 1 0 0 423257 2025-03-03 07:02:44.614 2025-03-29 22:39:52.44 \N Great to see this get picked-up so quickly. Quite the intensive task 😅 I'm on 40 muted with 30 remaining. As a territory owner though, would be great to know the % of Stackers opted-in. https://example.com/ 1605 422894 422894.423257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5221340752886 0 \N \N f 217800100 \N 2 51609188 0 f f \N \N \N \N 422894 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428312 2025-03-07 05:01:57.371 2025-03-29 22:39:52.45 \N This is a really thoughtful reply. A bunch of rapid-fire responses are occurring to me, but when I get this feeling it makes me alert to arguing because I'm trying to win vs arguing because I'm trying to find the truth. So I mostly won't.\n\n> You could. But would you?\n\nNo.\n\n> As some say: "Be the change you want to see in the world"\n\nI'm trying. But not hard enough, so it's good to be reminded.\n\n> But I guess sometimes, you are willing to sacrifice a little safety for some fun if it's worth it :)\n\nThe human condition in one sentence.\n\nI'm glad this discussion (and [the other one](https://stacker.news/items/331942)) exist and the points that are made have been made. It will be useful as part of the ongoing public dialogue about this topic, which is bigger than SN, I think.\n https://example.com/ 17991 424988 424571.424907.424921.424946.424988.428312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.95134955436622 0 \N \N f 1098287286 \N 8 181874491 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423805 2025-03-03 16:04:41.296 2025-03-29 22:39:52.44 \N [![DARTH-helper.jpg](https://imgprxy.stacker.news/F4LLrE0WBaZqIsVS_mg-V7uV4bI_JsP7Kg2MZ7jTZKQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvbmNoNjdrZ3cvREFSVEgtaGVscGVyLmpwZw)](https://postimg.cc/Z0X7zrTr)\n\nAs Bitcoin changed my life totally (please [read the story here](https://simplybitcoin.substack.com/p/how-bitcoin-will-change-your-life)), now I will try to help others to change their life too (read this thread - [Pay it forward](https://stacker.news/items/258853). For good, with Bitcoin.\n\nIf you want to change the world, be the example, do it yourself, do not wait for others to do the job. https://example.com/ 5978 423788 423681.423788.423805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.81781521782319 0 \N \N f 400565454 \N 4 43934331 0 f f \N \N \N \N 423681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446086 2025-03-20 23:04:32.083 2025-03-29 22:39:52.44 \N As much as Zero Fee Routing is nice, I don't know think it's sustainable long-term, and it doesn't really address the issue I'm talking about. https://example.com/ 688 446055 445953.445964.446055.446086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8711202869397 0 \N \N f 357936975 \N 3 2774399 0 f f \N \N \N \N 445953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458160 2025-03-29 02:46:44.358 2025-03-29 22:39:52.441 \N Kendrick Lamar - HUMBLE\n\nBitch Be Humble\nStack Sats! \n\nhttps://youtu.be/tvTRZJ-4EyI https://example.com/ 18306 458150 457126.458150.458160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.71563764646679 0 \N \N f 217533739 \N 1 75400747 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446786 2025-03-21 13:15:26.694 2025-03-29 22:39:52.443 \N > Breedlove's recent Onlyfans Girlfriend fiasco...is proof that this claim is completely nonsensical\n\nWhich claim? The post you quoted contains three claims:\n\n> You cannot serve both money and God\n\nand\n\n> In a debt-based monetary system, it's near impossible to not serve money\n\nand\n\n> Bitcoin is Christian money\n\nAre you saying Breedlove's behavior proves one of these claims wrong? Which one?\n\nI haven't investigated whether Breedlove did the things he is accused of but if he did it seems to prove only that Breedlove is a sinner, like all of us https://example.com/ 750 445531 443799.443861.444786.445531.446786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8400220907896 0 \N \N f 153876681 \N 2 161806225 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433186 2025-03-10 21:18:02.141 2025-03-29 22:39:52.443 \N Finally!\n\nI hope the nostr team eventually makes me wrong. Of course then I'll just change my opinion and be right again. 😁 https://example.com/ 12561 432920 432920.433186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0459277181159 0 \N \N f 341197757 \N 2 136827104 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448371 2025-03-22 15:14:03.834 2025-03-29 22:39:52.443 \N > made me realize how bad my estimates of the economy have been over the last few years.\n\ngood you didn't participate in prediction markets about it, lol 👀\n\nsorry, replied too fast, reading the rest now :)\n\ni have to admit that i don't know much about economy stuff but\n\n> Maybe Powell is just kicking the can down the road again by signaling for lower interest rates (and more money printing), but it’s hard for me to deny that he’s done a good job keeping the economy together… and both can be true.\n\nhow come you think that it's _thanks to_ his actions not _despite of_ his actions?\n\nthat isn't clear to me reading your post. is the only variable in a economy really just the interest rate that Powell sets? Or in other words: Does Powell have full reign over the economy or are there other variables he is not in control? (Honest question, as mentioned, I don't know much about this stuff but I would like to know) https://example.com/ 16406 448359 448331.448342.448359.448371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5074641454323 0 \N \N f 62083014 \N 2 53321108 0 f f \N \N \N \N 448331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436180 2025-03-13 11:18:04.909 2025-03-29 22:39:52.444 \N do you mean the archives or darknet markets? \n\ndownload instructions are in the link, but "casually" browsing them isn't really possible since they are scrapes of websites so some processing needed. it talks about it in the article https://example.com/ 20990 238583 238583.436180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.62701585796663 0 \N \N f 170497087 \N 1 17198247 0 f f \N \N \N \N 238583 \N 0 0 \N \N f \N 2025-03-20 06:58:24.157 f \N \N \N 0 0 0 0 1 0 0 431040 2025-03-09 15:11:08.235 2025-03-29 22:39:52.444 \N Evan Kaloudis' response to Mandrik saying he needs to rhink about the possibility of voting for Trump is pretty good:\n\n> Maybe hold out until he promises to relaunch Silk Road\n\nhttps://x.com/evankaloudis/status/1794538343041995052 https://example.com/ 11862 421367 421367.431040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.85494318603752 0 \N \N f 228700988 \N 1 20248623 0 f f \N \N \N \N 421367 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407304 2025-02-17 22:19:41.036 2025-03-29 22:39:52.444 \N every post you make is a banger lol\nyou earned 6119 sats on average per post https://example.com/ 2529 407301 407290.407301.407304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.47654417451464 0 \N \N f 140300441 \N 3 221606749 0 f f \N \N \N \N 407290 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435216 2025-03-12 14:34:50.07 2025-03-29 22:39:52.445 \N Breaks my heart because of 2024 I got to meet you in person 😢 https://example.com/ 20799 434962 434962.435216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8538778144851 0 \N \N f 175877163 \N 1 184154582 0 f f \N \N \N \N 434962 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437861 2025-03-14 23:50:52.392 2025-03-29 22:39:52.445 \N > no typescript\n> no unit tests\n> no microservices\n> polling not websockets\n\n\noooof man that hurt me reading it lol \n\nBut jokes aside really respectable reading it. I'm sure it's not easy but having that insight into yourself and your product is (what I think) actually makes a good founder. I liked the aspect at the end of spending your nights and days making that slide empty. You can't fix what you don't know is flawed or not. https://example.com/ 20687 437854 437723.437854.437861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6291514067647 0 \N \N f 341766552 \N 2 123475667 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435086 2025-03-12 13:01:34.14 2025-03-29 22:39:52.446 \N I really like the book "On Writing Well" by William Zinsser. I have re-read it a few times, lots of good advice on being clear and brief. https://example.com/ 18393 435030 435030.435086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3092417548313 0 \N \N f 139575528 \N 2 1636388 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 19:33:02.937 f \N \N \N 0 0 0 0 2 0 0 436464 2025-03-13 15:19:06.472 2025-03-29 22:39:52.446 \N > I don’t see anything different in the incentive structure here to prevent what happened to Twitter 20 years ago.\n\nWe'll see how it shakes out, but if you don't see anything different in the incentive structure then I'm not sure where exactly you're looking. The incentive structure couldn't be more different and is one of the most remarkable things about SN. https://example.com/ 6717 434469 434469.436464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9996774158162 0 \N \N f 177882046 \N 1 131671233 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 2025-03-20 13:58:25.621 f \N \N \N 0 0 0 0 1 0 0 104413 2023-12-28 08:12:20.887 2025-03-29 22:39:52.446 \N Seems like one of those things where people of good intent could disagree, but instead of that, bunches of people accuse the other bunches of being scammers, bad actors, and shitcoin sympathizers.\n\nAnother Thursday on bitcoin Twitter, basically. https://example.com/ 21768 104402 103905.104402.104413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4807194713777 0 \N \N f 168585184 \N 1 31828925 0 f f \N \N \N \N 103905 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424383 2025-03-04 03:18:54.63 2025-03-29 22:39:52.446 \N what has surprised you about selling bitcoin art? https://example.com/ 12278 424309 424309.424383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2991035835654 0 \N \N f 161523385 \N 1 56923352 0 f f \N \N \N \N 424309 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 440538 2025-03-17 11:09:23.002 2025-03-29 22:39:52.447 \N Try to add wallet feature in Bsats, so people can easily spend sats they earned from stacker.news https://example.com/ 1195 440523 440422.440523.440538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.1649053003193 0 \N \N f 254105466 \N 3 57959301 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403030 2025-02-14 11:33:37.303 2025-03-29 22:39:52.447 \N ![](https://m.stacker.news/48267) https://example.com/ 17147 403021 402871.403021.403030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.94133546686771 0 \N \N f 422875131 \N 3 222779502 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442646 2025-03-18 18:05:42.756 2025-03-29 22:39:52.447 \N Hahahahahaha @siggy47 you have a fan. Must not like your takes on the Islanders. \n\nSiggy are you taking up where Darth left off in 2024? https://example.com/ 10102 442639 442628.442639.442646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.938395519730477 0 \N \N f 871871285 \N 7 217893834 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421613 2025-03-01 19:42:38.25 2025-03-29 22:39:52.448 \N Machankura has likely done more for bitcoin awareness in Africa in the four months since they launched than had any other bitcoin-related endeavor in their first four months.\n\nWhile this chapter (KYC-Free USSD wallets for any phone, including feature phones with no internet service) has likely closed for good, the seeds planted will germinate and alternatives will emerge. Those with a smartphone are not really affected as they can continue to use Machankura (through its website), and can use any other LN wallet. It's the feature phone users who don't have internet access (who still represent nearly half of the population in many countries in Africa) \nwho are back to being left without an alternative to use bitcoin.\n\nMaybe a solution that supports NFC enabled cards will become an alternative. Or maybe some other solution emerges that permits offline use, such that the wallet owner with a $10 or $20 device never needs to have internet access but can still own and send/receive bitcoin. https://example.com/ 13169 421549 421549.421613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6519237713357 0 \N \N f 91626169 \N 1 220310922 0 f f \N \N \N \N 421549 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454793 2025-03-26 15:32:10.328 2025-03-29 22:39:52.448 \N https://imgprxy.stacker.news/xwF2WSbf4MrZ3oFoaEe2lezWIjXxQAVAWoFuB_cPCGA/rs:fit:600:500:0/g:no/aHR0cDovLzEwOC4xNjEuMTUxLjIxMC9tZW1lLTIwMjMwODI4LmpwZw https://example.com/ 16214 454731 454731.454793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.96357802261604 0 \N \N f 2845304 \N 1 14969315 0 f f \N \N \N \N 454731 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451269 2025-03-24 13:25:28.971 2025-03-29 22:39:52.448 \N @JimFoxG23 opening channels (deploying new liquidity to the network) is not directly spending bitcoin on lightning network\n\nthat graph shows deployment of new capacity (bitcoin) into the lightning network, it doesnt show how much people are spending in lightning network https://example.com/ 756 451250 451208.451239.451250.451269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.025399612252 0 \N \N f 117014149 \N 1 220524434 0 f f \N \N \N \N 451208 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435545 2025-03-12 19:16:52.042 2025-03-29 22:39:52.448 \N Where does the yield come from? https://example.com/ 17519 435504 435046.435135.435292.435504.435545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5525714165885 0 \N \N f 546778690 \N 4 154672180 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 13:09:31.03 f \N \N \N 0 0 0 0 1 0 0 443440 2025-03-19 10:59:53.321 2025-03-29 22:39:52.449 \N Let's talk LSPs! https://example.com/ 20555 443434 443372.443390.443427.443429.443434.443440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.40028327193976 0 \N \N f 19553775 \N 1 54529239 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 06:10:25.863 f \N \N \N 0 0 0 0 1 0 0 437723 2025-03-14 20:01:00.616 2025-03-29 22:39:48.902 Nostr sucks: A contrarian viewpoint Let's start a contrarian discussion on why the nostr architecture is not decentralized and won't scale \N 16259 \N 437723 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 13.5089695693996 0 \N \N f 1771684147 \N 12 736687 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 436720 2025-03-13 20:56:43.415 2025-03-29 22:39:48.902 The Legend of the Snail Some might have already guessed what this post will be about just by reading the title...\n\nBut many more might not, especially if they weren't there when _it_ happened.\n\nWhat am I talking about? About the legendary snail @orthwyrm that one day just showed up and said:\n\n> Day 1 of snailposting till BTC is $100k.\n> __@_'-'\n\n[No one seemed to care](https://stacker.news/items/165652) [0] but no one did know that this was just the beginning ... a legend was born that day.\n\nI want to think that @orthwyrm was thinking the following that day: \n\n_They don't know that it's not going to take much time that_\n\n- _[they are going to abuse me for their own personal reasons (next day already actually)](https://stacker.news/items/165862)_\n- _[they'll want to be faster than me](https://stacker.news/items/227932)_\n- _[they'll think I am a bot](https://stacker.news/items/228717)_\n- _[I'll receive 8k+ sats just for showing up](https://stacker.news/items/257284)_\n- _[I'll make people race to be the first in the daily discussion only for 1k sats, an amount that I receive almost every day](https://stacker.news/items/244707)_\n- _[they'll hate me for reaching top comment every day](https://stacker.news/items/246051)_\n- _[they'll blow up the daily discussion while waiting for me](https://stacker.news/items/245844)_\n- _[they'll get worried when I don't show up immediately](https://stacker.news/items/261661)_\n- _[and probably much more](https://stacker.news/items/400181) ..._\n\n[It's day 236 now.](https://stacker.news/items/342111)\n\nHowever, [on day 8](https://stacker.news/items/168449), the following happened:\n\n> should we make bets on the number? I say you make it on day 411.\n\nFrom the seven people that replied, only @orthwyrm, @grayruby and myself still seem to be around.\n\n@orthwyrm said in 260 days (EOY)\n\n@grayruby said in 655 days.\n\nAnd I said 420 days. I even [doubled down on my 420 bet](https://stacker.news/items/265803):\n\n> Day 420 100k ez\nThat will be June 8, 2024\nRemember my words xD\n\n@grayruby mentioned this bet [some time later again](https://stacker.news/items/212911):\n\n> I know awhile ago a bunch of us made predictions as to what day the snail goes away but why don't we do something more formal. A futures bet. Take a week to cultivate participants who want to put 1k sats into the prize pool and closest without going over wins the sats.\nThoughts?\n\n**The day where we do something more formal has finally arrived.**\n\n## This post is going to be the formal way to participate in the bitcoin $100k bet.\n\n**Anyone except the ones who already mentioned a number can still reply with a number. So this means that @orthwyrm, @grayruby, @SwearyDoctor, @ridsa, @LaserStack, @squatopia already locked in.**\n\n**Anyone who deletes any comment of theirs in here is immediately out. No sat returns.**\n\n---\n\nI'll try to get something going where we can collect sats into a pool; similar to how @artistformerlyknownasNFLsurvivor worked, I guess. Hopefully before bitcoin reaches $100k, lol.\n\nAny ideas on the bet size we should go for? @grayruby mentioned 1k sats but I think more sats would be cooler ... what about 5k? Or even 10k? Or even 25k? :) I think 25k would be the maximum I would be willing to bet.\n\n**When bitcoin reaches $100k, Moscow time will be 1000. This means 25k sats will be worth $25 while currently, they are worth $10.**\n\n---\n\n[0] _except apparently me since I realized that 105 from the 106 sats are mine, lol. And @orthwyrm can confirm that I did **not** zap them today :) Not sure what I was thinking giving this weird snail ASCII art 105 sats of me at that day ... or did I sense a great disruption in the force that day? who knows, lol, i certainly don't anymore :)_\n\n![2023-12-07-124629_1920x1080_scrot.png](https://m.stacker.news/7107)\n \N 10591 \N 436720 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.0981041519709 0 \N \N f 80108014 \N 1 223378265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 14:30:42.312 f \N \N \N 0 0 0 0 1 0 0 427567 2025-03-06 13:49:24.023 2025-03-29 22:39:52.449 \N If anyone else here has actually treated COVID feel free to chime in. Not here to get political just to offer some counternarrative from what I see so often in crypto spaces.\n\n2020 was a nightmare, constantly sending patients to the ICU. I stopped following up on the charts of those patients because they so often didn't make it out. Winter was scary and I honestly feel scarred a bit inside from the experience.\n\nThroughout 2021 as vaccines became widespread, especially through the delta wave, the patients we were treating were majority unvaccinated, my unscientific guess 8:1 ratio, the latter vaccinated being majority elderly + immunosuppressed (renal transplants, etc). Saw a ton of unvaccinated younger patients in 40s who spent 3-4 weeks in the hospital but most young patients made it out eventually. The vast majority hospitalized were directly for COVID, outside of a small % of patients that matched the positivity rate in the local community.\n\nWith Omicron things have changed significantly. We saw our hospital of 500+ beds fill up to 180+ beds extremely quickly. This is an insane % of hospital beds for 1 disease given how many other things we need to treat. People were sick but not as sick as delta and prior waves. Fewer calls to ICU. Still majority unvaccinated. After that initial wave we saw the hospitalization bed # decay quickly- every week the number of beds occupied cut in half. Never seen anything like it.\n\nSince then I've continued to see a trickle of COVID patients, but I haven't had to call the ICU specifically for COVID pneumonia since early February. We're just not seeing severe ARDS anymore with Omicron. Most of our patients with respiratory issues + COVID are here for a mix of COPD/CHF/pneumonia + being miserable with COVID but it is hard to disentangle WITH or FOR COVID hospitalizations. Compared to 2021 I would guess the majority of our patients are now incidentally miserable with COVID febrile symptoms + non-respiratory hospitalization especially as they are catching it more easily in our emergency departments. So far we've seen subsequent B.x waves in the community go up and down but FOR COVID hospitalizations have mirrored with only a small increase in amplitude.\n\nThe vaccine did a remarkable job preventing people from getting hospitalized in 2021. I think it's clear it does little to nothing to prevent reinfection and spread since the dominance of Omicron. As this thing continues to mutate (hopefully continues to get less mild) there is probably diminishing utility to an April 2020 strain vaccine. https://example.com/ 909 427304 427251.427253.427304.427567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.05223514383043 0 \N \N f 130325819 \N 1 181458027 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422261 2025-03-02 10:48:58.791 2025-03-29 22:39:52.449 \N both refer to the same result: get a tx confirmed when is stuck with a low fee. But yes are a bit different. https://example.com/ 6260 422057 422056.422057.422261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0526477891075 0 \N \N f 184121312 \N 1 214910401 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434330 2025-03-11 19:45:09.348 2025-03-29 22:39:52.449 \N Do you think this is an accurate way to display how Boosts work?\n- Alice is boosted in ~Bitcoin\n- Bob is boosted in ~Memes\n- Carol is boosted in ~Bitcoin_Beginners AND the home page\n\n![](https://m.stacker.news/58360)\n\nI think I have most of this correct but I think I am still a little unsure of the precise percentages that get paid to referral rewards. \n\nDoes the rewards pool pay to anything else? \n\n![](https://m.stacker.news/58362)\n\nCan you confirm these percentages by hovering over the node links in this presentation? https://public.flourish.studio/visualisation/19871667/\n\n https://example.com/ 726 433889 433889.434330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.01483640049316 0 \N \N f 354480233 \N 3 199242875 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437506 2025-03-14 15:08:29.566 2025-03-29 22:39:52.449 \N ![thanksgiving](https://m.stacker.news/5412) https://example.com/ 20816 437497 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.98840496438773 0 \N \N f 1315020485 \N 11 201019353 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414784 2025-02-24 09:52:46.213 2025-03-29 22:39:52.449 \N Overall CPI: 5.2%\nEnergy CPI (Tiebreaker): 4.9% https://example.com/ 10283 414783 414783.414784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9343120803674 0 \N \N f 188204782 \N 1 249630118 0 f f \N \N \N \N 414783 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402932 2025-02-14 09:13:00.736 2025-03-29 22:39:52.449 \N When I was young (10-14 years old) I trusted in the government. I thought different political ideologies have different principles. (I admit...I was naive).\nIn my university years, I had the opportunity to work as voluntar for a political organisation in my country. An organisation who represent the minority's rights....and when I constated what kind of "murder" it is.....my opinion was changed 180 degrees, and I becomed trustless with any political organisation https://example.com/ 9336 402925 402904.402918.402925.402932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4640460647054 0 \N \N f 230664639 \N 1 188406685 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413640 2025-02-23 12:13:28.052 2025-03-29 22:39:52.437 \N https://i.postimg.cc/JhbScKqs/Screenshot-2023-12-30-at-16-13-16-The-Secret-Barrister-Oceanof-PDF-com-The-Secret-Barrister-The.png https://example.com/ 1030 413595 413523.413534.413592.413595.413640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2812816159622 0 \N \N f 622514741 \N 4 34220398 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415297 2025-02-24 17:07:05.451 2025-03-29 22:39:52.437 \N I think it would be nice to finish 2023 and start 2024 with:\n\n1. "Fiat Ruins Everything" by Jimmy Song,\n\n2 "The Bitcoin Standard" by Saifedeen Ammous and\n\n3 "The Broken Money" by Lyn Aden. https://example.com/ 21012 414711 414711.415297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.32468724519348 0 \N \N f 47247247 \N 1 96908607 0 f f \N \N \N \N 414711 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423276 2025-03-03 07:21:08.243 2025-03-29 22:39:52.449 \N Question #7: What is the biggest constraint limiting Bitcoin adoption today? How can the community fix it or navigate around it? https://example.com/ 15273 421936 421720.421840.421855.421925.421936.423276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7765912724191 0 \N \N f 590966335 \N 4 48579615 0 f f \N \N \N \N 421720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457131 2025-03-28 08:52:25.598 2025-03-29 22:39:52.449 \N Question #5: What would you like to see the Bitcoin community do to improve the perception of Bitcoin for those outside of the industry? Does it matter what nocoiners think of Bitcoiners? https://example.com/ 12169 457126 457126.457131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8692117357684 0 \N \N f 70699425 \N 1 124407372 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437443 2025-03-14 14:20:30.278 2025-03-29 22:39:52.449 \N 1. Use nostr already\n\n2. Stacker for news, Nostr to replace twitter - don’t have to integrate \n\n3. DGAF - love both 🤙🏽🤙🏽 https://example.com/ 12346 437439 437218.437437.437439.437443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8518196392218 0 \N \N f 212107736 \N 2 238250648 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436242 2025-03-13 12:14:08.731 2025-03-29 22:39:52.449 \N Two ways I think you should consider this:\n\n1. How can SN improve the Nostr experience? \n2. How could Nostr help grow SN?\n\n\nDisplaying public keys and embedding the last 5/10 nostr posts to SN profiles would be valuable to SN users.\n\nA Nostr bot which cross posts headlines from SN to Nostr would be good for driving traffic.\n\nA directory of SN profiles + public keys would be the logical and valuable next step. Currently Nostr relies too much on Twitter for this. This feature would potentially benefit both SN traffic AND Nostr users. https://example.com/ 910 436213 436213.436242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.40331576532145 0 \N \N f 186058904 \N 1 239931030 0 f f \N \N \N \N 436213 \N 0 0 \N \N f \N 2025-03-20 08:15:23.656 f \N \N \N 0 0 0 0 1 0 0 401520 2025-02-13 05:25:56.141 2025-03-29 22:39:52.449 \N I like the posts of everyone suggesting very small integrations like link previews etc. \n\nYou have a working (i assume) business model here. So if someone can come up with a more full implementation of building SN on top of Nostr itself, I would let them pitch that idea too you (what would you gain from it? maybe they have an idea in their pitch. https://example.com/ 618 401403 401283.401346.401403.401520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2483288696376 0 \N \N f 682326958 \N 6 64413102 0 f f \N \N \N \N 401283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444412 2025-03-19 21:15:28.226 2025-03-29 22:39:52.449 \N No. But even broken clocks are sometimes right. Twice a day? I do trust the government to screw people, kill people, steal, and generally cause havoc. https://example.com/ 3686 443834 443712.443834.444412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11955258730961 0 \N \N f 706947807 \N 5 108672054 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435308 2025-03-12 15:32:27.574 2025-03-29 22:39:52.449 \N OBW\n\nWell, its still kinda working https://example.com/ 5978 435274 434795.435274.435308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.74734773304 0 \N \N f 403808622 \N 3 34928383 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 08:54:57.98 f \N \N \N 0 0 0 0 2 0 0 414436 2025-02-23 22:37:57.761 2025-03-29 22:39:52.438 \N I like the line from Community about how growing up is realizing that everyone else is just as stupid as you. https://example.com/ 795 414385 414385.414436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6216316907928 0 \N \N f 185708930 \N 1 150861037 0 f f \N \N \N \N 414385 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442234 2025-03-18 13:37:03.586 2025-03-29 22:39:52.438 \N I've wondered something similar to this for a long time. I never hear it discussed that what was a sensible system at time X is not necessarily sensible at time X+100. For instance, in an era where there was a frontier, and property claims loose or nonexistant [1], certain political economies were sensible in a way that they are not when there is no frontier.\n\nOne solution to this is to try to retrofit something, which is what your answer seems to do. Another solution would be to say: these axioms don't make sense in the world now, where there is no practical place to "exit" to. There's no practical opting out of modern ideas of governance; if you don't believe in whatever system of social organization is on offer, there's no higher-entropy state to retreat to. If you head into the wilderness, it's somebody's wilderness.\n\nThe answer you offer seems, to me, to duck the question. Temporary easement leaves the fundamental problem unresolved. I don't think libertarianism can solve it.\n\n[1] e.g., in the USA, Native Americans seemed to not have the same idea of land ownership as the European settlers did; and even when entire continents could be 'claimed' for a sovereign, the power of the claimant was hard to exercise. https://example.com/ 9450 442163 442163.442234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1572146710295 0 \N \N f 421164461 \N 3 202928589 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455875 2025-03-27 11:45:44.201 2025-03-29 22:39:52.44 \N Cool!\n\nIt's fun to think of all the ways that rich context like this could be brought to bear. Imagine a popup that gave the three items most like this one; or the most recent few items from that particular user, etc. https://example.com/ 20669 455498 455498.455875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6624302149404 0 \N \N f 249016559 \N 1 95321627 0 f f \N \N \N \N 455498 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410516 2025-02-20 14:11:37.85 2025-03-29 22:39:52.44 \N ye old wench motor\npray what stories\nye may recite\n\nstrewn amongst piles of junk,\ndo you dream in black and white?\na trophy of the garage punk,\ncan you tell of mechanical delight?\n\nwhether treasure or trash,\nI couldn't say which,\nyou'll live a new life\nmissing your other attachments. https://example.com/ 3478 410358 410358.410516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.4593248790178 0 \N \N f 164202999 \N 1 217678865 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415321 2025-02-24 17:44:00.213 2025-03-29 22:39:52.44 \N > What if Canada collected 100% tax on all transactions in its economy, determining what all citizens should be paid, and sending them a paycheck every hour?\n\ni guess we’re about to find out 😂 https://example.com/ 14791 409934 409934.415321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.41728805210752 0 \N \N f 430482480 \N 3 121693982 0 f f \N \N \N \N 409934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434908 2025-03-12 10:32:35.513 2025-03-29 22:39:52.44 \N Don't I have anything better to do?\nApparently not. https://example.com/ 21539 434560 434488.434560.434908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.328161417362 0 \N \N f 363607066 \N 2 42084905 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 2025-03-19 07:14:20.978 f \N \N \N 0 0 0 0 1 0 0 438077 2025-03-15 08:20:36.844 2025-03-29 22:39:52.44 \N ![](https://pbs.twimg.com/media/FxTIsRuakAE4G38?format=jpg&name=large) https://example.com/ 1272 438073 438065.438073.438077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.439186890928 0 \N \N f 50961645 \N 1 27954698 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458210 2025-03-29 05:39:24.205 2025-03-29 22:39:52.441 \N of course, QR should also always be displayed or available (not all people have NFC in their phones)\nyou simply have two options active simultaneously, and if you choose "tap to pay" - that's your decision (and comfort) only https://example.com/ 17682 458188 458188.458210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5841496011565 0 \N \N f 855599552 \N 8 177621558 0 f f \N \N \N \N 458188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 432992 2025-03-10 18:12:17.266 2025-03-29 22:39:52.441 \N excited to see what impact the 10 sat base posting fee has on daily rewards.\n\nmy guess is that we’ll see roughly the same amount of post/comment activity on SN, but much more than the current ~25k sats/day in fees directed to the rewards pool. \n\nwill be interesting to see if top posters/zappers notice a boost to their own earnings this week. https://example.com/ 1124 432980 432920.432980.432992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.44628590338137 0 \N \N f 892041194 \N 6 210605691 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2193 2022-10-05 11:38:14.169 2025-03-29 22:39:52.441 \N Indexing the Blockchain to scour for rare ordinals. \n\nhttps://github.com/casey/ord https://example.com/ 7654 2188 2186.2188.2193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0819023105419 0 \N \N f 187582811 \N 1 57461335 0 f f \N \N \N \N 2186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402374 2025-02-13 17:49:47.607 2025-03-29 22:39:52.442 \N I know where you're coming from Tony. I'm just looking forward and into the future. Bringing some things that are in the works to the community's attention. The hope being, if we have an informed Bitcoin community, that community will feel more comfortable about a soft fork. https://example.com/ 16097 402369 402091.402299.402326.402369.402374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6588439914114 0 \N \N f 208430345 \N 2 97763593 0 f f \N \N \N \N 402091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443613 2025-03-19 12:42:07.034 2025-03-29 22:39:52.443 \N https://images.squarespace-cdn.com/content/v1/5d177c95be7bcb000149b1f8/1583900970688-1XVHXOYRG1X3SC22R8S4/DEF030+-+Dominic+-+Large+Banner.png\n\nhttps://www.defiance.news/podcast/the-depth-of-addiction-dominic https://example.com/ 6191 443577 443577.443613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3437559642939 0 \N \N f 662897062 \N 5 21393446 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:28:58.011 f \N \N \N 0 0 0 0 1 0 0 414058 2025-02-23 15:56:30.811 2025-03-29 22:39:52.443 \N You can get a rough idea looking at the top stackers and then from their profiles, the amount and quality of posts and comments:\n\nhttps://stacker.news/top/users/stacked/day https://example.com/ 959 413854 413854.414058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.84709395982437 0 \N \N f 302886118 \N 2 222021295 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421130 2025-03-01 12:30:35.991 2025-03-29 22:39:52.443 \N Real life bitcoiners are the best! Gonna have to check out the Melville next time I'm on long island. Great write up!\n\nWhen the only way people get bitcoin is buying it with fiat, spending bitcoin feels foolish. Once they have a chance to earn a few sats, spending feels like a more reasonable option. A couple days on SN, earning sats can quickly changes feelings about spending (at least a little). Yet another reason I love SN. https://example.com/ 13042 421123 421123.421130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9637515439397 0 \N \N f 617725129 \N 4 135837440 0 f f \N \N \N \N 421123 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443341 2025-03-19 09:21:53.224 2025-03-29 22:39:52.444 \N > Equity analysts said the wholesaler priced its gold appropriately by selling about 2% above spot prices to members before a 2% cash back reward for executive members and an extra 2% in cash back for those with a Citi card.\n\nI realize not all of their customers get either or both of those discounts, but it still seems like they'd take a loss on a bunch of these sales. https://example.com/ 2709 443300 443105.443300.443341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.74002272549287 0 \N \N f 227861411 \N 1 130826707 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433611 2025-03-11 09:04:31.251 2025-03-29 22:39:52.444 \N Yes https://example.com/ 11515 433555 433555.433611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2433479842026 0 \N \N f 101447258 \N 1 58862362 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 01:07:13.12 f \N \N \N 0 0 0 0 1 0 0 434082 2025-03-11 15:40:01.477 2025-03-29 22:39:52.444 \N The CIA has very good reasons for end-to-end encrypted messages to be widely used. You can't have agents in the field using custom apps just for themselves. You need them using a standard that lots of other people too to blend in.\n\nOne of the reasons why the US govt supports Tor too.\n\nYour source is ridiculous: “In other words, Signal gifted the CIA “well over a billion” potential insurrectionists, by providing them with a means to organize their activities away from the prying eyes of local authorities.”\n\nThis is undeniably a good thing; freedom to revolt is a good thing. https://example.com/ 21048 433421 433403.433421.434082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9039410135851 0 \N \N f 249041894 \N 1 101527324 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 2025-03-18 20:58:04.468 f \N \N \N 0 0 0 0 1 0 0 446808 2025-03-21 13:34:53.875 2025-03-29 22:39:52.445 \N You have access to two currencies, a strong one and a weak one. Why would you waste the strong one where the weak one would suffice? \n\nThere's a name for this law/paradox/theorem, but the name escapes me. \n\nYou are faced with a set of choices, tradeoffs and incentives. Your job is to pursue your own best interest without actively screwing anyone over. https://example.com/ 3417 446650 446456.446649.446650.446808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.58596656807178 0 \N \N f 187152942 \N 1 54201962 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450664 2025-03-24 06:27:30.703 2025-03-29 22:39:52.445 \N Offline receiving https://example.com/ 618 450659 450649.450652.450659.450664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3235396011775 0 \N \N f 810258899 \N 6 216964359 0 f f \N \N \N \N 450649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434400 2025-03-11 21:25:19.572 2025-03-29 22:39:52.445 \N Hate to say it but this is a benefit of bitcoin etf https://example.com/ 2088 434276 433588.434276.434400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.37477735537105 0 \N \N f 117177493 \N 1 82903586 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1571 2022-09-19 12:18:33.688 2025-03-29 22:39:52.446 \N Honestly, I thought this was a given. Didn't realize it was a conspiracy theory that Saudis were at very least complicit. https://example.com/ 706 1565 1565.1571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4081081013103 0 \N \N f 239949270 \N 3 102399277 0 f f \N \N \N \N 1565 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420988 2025-03-01 10:26:25.325 2025-03-29 22:39:52.447 \N Because he's always misunderstood, and most people place great expectations on him to enrich them overnight. \n\nHe ain't about making you money, he's about making money better. https://example.com/ 16177 420816 420816.420988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6918159825367 0 \N \N f 2927824 \N 1 215890287 0 f f \N \N \N \N 420816 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434684 2025-03-12 06:38:12.92 2025-03-29 22:39:52.447 \N How it works:\n\nMostly it gives you the basic info about a transaction and buttons for eliminating "decoy senders" whom you are mostly expected to identify using off chain data. I have a way to manually identify ringsig members as decoys but I haven't automated it yet. What I want to do is use known "view keys" to identify decoys, because if you have the view key you know the "true" tx in which you spent your own coin, so if you've been used as a decoy you can automatically filter that out.\n\nRight now it also has two automated heuristics: merge analysis and recency bias. If you received coins in two very close blocks and then spend them together, your ring, which should contain keys from semi-random blocks, will have two suspiciously close blocks where you held both inputs. So you can identify those as the real spender's coins.\n\nRecency bias takes advantage of the fact that most decoy selection algorithms are biased toward selecting keys from recently created utxos (on the principle that actively circulating coins are more likely to be spent than old ones). When you have a group of "new coin" decoys, coins that are significantly older stick out like a sore thumb, and you can plausibly identify them as the real spender's coins.\n\nOther metrics I want to add include bot detection (which is based on identifying txs with many outputs, since these tend to be created by automated software rather than a real person) and taint tree analysis (which creates trees of possible senders fanning out backward in time from a known destination). I also think I can fingerprint wallets by their coin selection algorithm and then identify change when it shows up in a tx that uses the same algorithm. \n\nOne thing I learned while making this is that tracing monero is possible but it seems to take a considerable amount of manual work, a large set of off chain data about addresses that you know the view keys for, and regularly creating xmr transactions yourself so that you can identify your outputs as decoys when they show up in other people's transactions\n\nMy two automated heuristics right now only identify the sender in about 1 in 15 cases, so most of the time when looking at a transaction all you see is a tool for manually filtering out decoys on your own, which is still useful, but more automation is desirable\n\nI hope to add about four more automated heuristics but I still think you'll need a considerable amount of off chain data entry to get really good data https://example.com/ 1652 434646 434646.434684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5243072054928 0 \N \N f 6600213 \N 1 4088010 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 01:29:08.734 f \N \N \N 0 0 0 0 1 0 0 404384 2025-02-15 20:37:19.145 2025-03-29 22:39:52.448 \N I think something creative that aligns incentives could be possible, and more interesting than simply "OP doesn't get paid". \n\nCouple ideas...\n\n# Staking\n\nWhat if you had to stake to post? What if community members could add to the stake? What if some kind of vote+comment signature had to materialize, else you and others lost the stake? So, if you staked 1000 sats, you would effectively be saying "I think this post is worthy AND if it turns out that SN thinks i'm trying to game the system, I lose my stake". If you posted, and then gamed it, upvoting your own post from say 3 other accounts with large amounts, then nobody else upvoted it with even small amounts, then stacker.news would detect the voting distribution as compromised and distribute to stakers on other posts who did prove to have organic voting signatures. This only works if there are common voting distributions (amount, count, users, and time) for organic upvoted content while compromised content would have flawed distributions. \n\nStakers could get their own sats back and either a portion of the upvotes or the sats from posts that were deemed compromised after say, one week.\n\nA mechanism like that could turn curation into a profession.\n\n\n# Algorithm\n\nAnother idea is just do smarter math, that is harder to game. \n\n* Boost the weight of regular voters and posters with regular voting patterns.\n* Dampen the weight of one-off-votes or new accounts\n* Stacker.news keeps/ignores the sats from largest vote(s)\n* Stacker.news keeps/ignores the sats if you spend say, more than 50% of your balance on one upvote if it's spent inside of a month. ie, new user + yolo-ing-voting = \n* Figure out a penalty mechanism for votes from new users. Eg. vote_power = votes_from_seasoned_members / votes_from_new_users\n\nbasically...get creative with variables like these...\n\n``` bash\nage_of_post\nage_of_op\nage_of_voter\nage_of_average_voter\nage_of_average_commenter\nvoter_balance\nvoter_average_vote_amount\nvoter_total_vote_count\nvoter_std_deviation_vote_ammount\nposts_comment_count\nposts_vote_count\nclicks_vs_vote_count\nclicks_vs_vote_amount\n```\nI could go on... https://example.com/ 20817 404095 404095.404384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7946424360875 0 \N \N f 385979914 \N 3 152650172 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404203 2025-02-15 16:30:23.309 2025-03-29 22:39:52.448 \N That's not a good look. Hope the dev will figure this out. I saw you sent a message in the group chat. Let me send your 10k sats back over your Stacker News address. https://example.com/ 21012 404136 404136.404203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0232920261764 0 \N \N f 853927251 \N 6 242249830 0 f f \N \N \N \N 404136 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424323 2025-03-04 00:48:46.627 2025-03-29 22:39:52.449 \N Why do you choose to list items on satscrap first and foremost in a shitcoin, USD, instead of the hardest money in history, bitcoin?\n\nWouldn't it make more sense to first list the amount of bitcoin for each item, and then under that have the USD equivalent? https://example.com/ 17411 424149 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424123.424149.424323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2584933672841 0 \N \N f 161045254 \N 1 202093087 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424094 2025-03-03 20:28:10.099 2025-03-29 22:39:52.449 \N 1. How did you get into Bitcoin?\n2. What made you start Bitrefill?\n3. What are you most proud of regarding Bitrefill?\n4. What is the most sold product on Bitrefill?\n5. What is the hardest thing about getting a circular economy going? https://example.com/ 21734 424082 423384.423591.423593.423595.423601.424009.424015.424037.424049.424082.424094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.448492134753 0 \N \N f 898114962 \N 6 102719160 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 398753 2025-02-10 20:47:59.884 2025-03-29 22:39:52.45 \N Welcome! \n\nI've been using SN for months now and just yesterday I linked my account with an email and Github. Only reason is just in case I lose my phone or something, I'd still like to be able to login to this nym. https://example.com/ 19463 395051 395051.398753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.13024191303763 0 \N \N f 61052463 \N 1 101750777 0 f f \N \N \N \N 395051 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435786 2025-03-13 00:59:45.593 2025-03-29 22:39:52.45 \N > the onchain footprint isn't larger than typical transactions in the cooperative case\n\nCorrect. Also, the cooperative case can involve many off-chain computations, including off-chain transactions, e.g. on a rollup (if we can figure out how to do that). So it could even *free up* capacity on the base layer.\n\n> the uncooperative case which I'm guessing scales as log(n) where n is the number NAND gates in the circuit\n\n1) According to Robin the uncooperative case can be made to scale as log(n). I am skeptical of this because I don't understand how it works. My implementation does not scale in the uncooperative case -- the entire computation must be dumped on chain in my implementation because I don't understand Robin's solution here.\n\n2) Just a reminder: we're not limited to NAND gates. They were just an example used in the whitepaper to save space, since it's well-known that if you can do NAND, you can do anything (inefficiently). We can use all of the standard logic gates (AND, OR, NOT, NAND, NOR, XOR, XNOR) plus perhaps some of bitcoin's built-in opcodes. My implementation does not even use NAND -- it uses AND, NOT, and XOR. https://example.com/ 1495 435359 435359.435786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4962899542607 0 \N \N f 121626225 \N 1 47128514 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 2025-03-20 07:02:51.376 f \N \N \N 0 0 0 0 1 0 0 448047 2025-03-22 11:14:05.625 2025-03-29 22:39:52.45 \N This is really cool. I didn't know you could buy "blank" NCF cards to program. This is now on my do to list! https://example.com/ 8841 448015 448015.448047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.18044473828128 0 \N \N f 111453995 \N 3 755944 0 f f \N \N \N \N 448015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437886 2025-03-15 00:35:01.518 2025-03-29 22:39:52.45 \N lmao you two\n\nI personally think it's that they don't get the need for a hard money or decentralization. It is hard to communicate these theoretical concepts to someone when they do not feel acute pain. https://example.com/ 19417 437775 437775.437886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6401673391115 0 \N \N f 81981756 \N 1 220815349 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448293 2025-03-22 14:31:38.838 2025-03-29 22:39:52.45 \N I think this deserve the bountie\nhttps://lnshort.it/feeds/ https://example.com/ 21208 447892 447892.448293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7658096421791 0 \N \N f 558356144 \N 3 202149832 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 09:08:58.265 f \N \N \N 0 0 0 0 2 0 0 410574 2025-02-20 14:44:49.843 2025-03-29 22:39:52.449 \N I say you get her to post an lnurl or invoices here and we'll make her special day even better. https://example.com/ 6526 410572 410269.410572.410574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1249942661869 0 \N \N f 62201159 \N 1 92317820 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443716 2025-03-19 13:34:48.938 2025-03-29 22:39:52.45 \N I think it’s getting slightly worse but I’m not certain.\n\nMy theory is that two related things might be happening:\n\n1) Outsourced customer service to agents that learn a flowchart, some simple software and can therefore only really help in a handful of simple ways. They’re not invested in the business, and they’re incapable of and not empowered to take action on the issues that require a bit of creativity. That would be too time consuming and costly to the business.\n\n2) The above strategy is enabled by modern business analytics tools being available to all businesses — large and small — over the past decade or so, and this has led to a lowering of standards in the actual customer service activity that we would like to see.\n\nThe reason that it causes standards to go down is that In the past, none of this could be measured well, but it was obviously important, so good businesses placed a priority on getting good, empowered employees to fill those positions. Now all that matters is keeping average response times and ratings above a certain level, which results in a lower bar being met, mostly sustained by those simple common issues that arise. https://example.com/ 12921 443714 443577.443714.443716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7584451244248 0 \N \N f 90244723 \N 2 189060516 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:52:10.355 f \N \N \N 0 0 0 0 1 0 0 434412 2025-03-11 21:36:30.969 2025-03-29 22:39:52.451 \N I don't know how hidden it is but I play multiple musical instruments. Primarily guitar but I can also play bass guitar, piano and a bit of drums. I have also written over 100 songs. https://example.com/ 11789 434278 434278.434412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.4846992196689 0 \N \N f 161194080 \N 1 171634347 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 21:16:37.236 f \N \N \N 0 0 0 0 1 0 0 410572 2025-02-20 14:44:14.31 2025-03-29 22:39:52.451 \N ![IMG_6610.jpeg](https://m.stacker.news/20060) https://example.com/ 21480 410269 410269.410572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0478161790839 0 \N \N f 154518979 \N 2 52326691 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437455 2025-03-14 14:32:45.157 2025-03-29 22:39:52.452 \N Having a money that is a real store of value changes the way people think about spending. \n\nYou have to give up something really valuable for each purchase, whereas with fiat you're dumping a depreciating asset when you spend it.\n\nThat difference will orienting people towards only spending on things they truly value. https://example.com/ 20713 437443 437218.437437.437439.437443.437455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8281564164355 0 \N \N f 173199355 \N 1 38908381 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448469 2025-03-22 16:09:44.61 2025-03-29 22:39:52.452 \N that is not how it works, covenants are something you put inside of your wallet/address. unless you opt into it, they can't effect you https://example.com/ 11609 448092 448092.448469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.99455171437385 0 \N \N f 34294289 \N 1 120201811 0 f f \N \N \N \N 448092 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441667 2025-03-18 08:31:14.615 2025-03-29 22:39:52.452 \N Apparently Bitcoin hit +$100k on Binance US a couple days ago, but the high court of mollusks deems this illegitimate. The snailposting shall continue. https://example.com/ 15890 441641 441611.441641.441667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.06653675038776 0 \N \N f 2214689 \N 1 16473564 0 f f \N \N \N \N 441611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444419 2025-03-19 21:33:35.403 2025-03-29 22:39:52.452 \N What's something you believe about Bitcoin that no Bitcoiners agree with you on? https://example.com/ 16978 444290 443712.444290.444419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2619641654663 0 \N \N f 461346340 \N 2 32756742 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432713 2025-03-10 14:46:06.995 2025-03-29 22:39:52.452 \N Thanks man. I have definitely gotten stronger. I usually bust out the 20 reps in the first set without a problem now.\n\nI think my goal for 100 will be 20-20-20-20-20, and then I'll keep it at 100 total but work on increasing set size (such as 40-40-20) and movement technique (diamond push-ups, etc.)\n\nI'd like to work on pull-muscles next, but it's hard to find a convenient exercise for this that doesn't rely upon equipment (like a pull-up bar, rings, etc.) https://example.com/ 664 430501 430501.432713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3839560298521 0 \N \N f 81123167 \N 1 225617015 0 f f \N \N \N \N 430501 \N 0 0 \N \N f \N 2025-03-19 07:40:31.846 f \N \N \N 0 0 0 0 1 0 0 443116 2025-03-19 04:15:30.025 2025-03-29 22:39:52.44 \N I don't, but I'm also newer to this space. Every opportunity I find to use Bitcoin is exciting and I want to reward whoever created those opportunities.\n\nI also am primarily interested in Bitcoin because I want the regime's system to be displaced. That it's helping my personal finances (which remains to be seen after Monday) is secondary. https://example.com/ 9529 443099 443099.443116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8487716487546 0 \N \N f 373167573 \N 2 31833369 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 2025-03-26 06:03:35.628 f \N \N \N 0 0 0 0 2 0 0 410229 2025-02-20 11:22:00.408 2025-03-29 22:39:52.44 \N can’t recall any other examples of a ceo being removed at the pinnacle of perceived excellence… i wonder when the full story will come out. https://example.com/ 12561 410094 410094.410229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3872710253954 0 \N \N f 122711830 \N 2 43190761 0 f f \N \N \N \N 410094 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436216 2025-03-13 11:44:07.701 2025-03-29 22:39:52.44 \N Historically, Americans move into hedge assets like gold when there are banking issues. It's typically international financial troubles that drive foreign investors into treasuries. However, you're thinking in the right direction, because people try to move into lower risk assets.\n\nThe magnitude of US debt dwarfs commercial deposits, so a move into US Treasuries won't significantly impact the amount of purchases by the Fed. This is even more clear when you consider the fact that if too many people try to withdraw their savings the other banks will fail, because they don't have the reserves to support large scale withdrawals. \n\nWhat does seem plausible, is that depositors losing an enormous amount of money might be taken as an opportunity to launch the cbdc: issuing them to replace lost deposits. I could also imagine a similar dynamic playing out with unpayable maturing treasuries. https://example.com/ 6463 436214 436177.436203.436204.436214.436216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6267866432127 0 \N \N f 203512606 \N 1 75554709 0 f f \N \N \N \N 436177 \N 0 0 \N \N f \N 2025-03-20 05:07:26.253 f \N \N \N 0 0 0 0 1 0 0 457605 2025-03-28 15:41:13.823 2025-03-29 22:39:52.441 \N Interesting idea. Also made a shop :) \nhttps://supertestnet.github.io/superstore/?pubkey=03c10821ed20c76711cfa9ed570b4a171aeaf015476bd67c555def26cefb0fa2f3&relay=wss://nostrue.com https://example.com/ 21332 457513 457476.457513.457605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.13026799311569 0 \N \N f 164918936 \N 1 57272115 0 f f \N \N \N \N 457476 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307658 2024-11-25 09:26:53.09 2025-03-29 22:39:52.441 \N Do you think we've hit peak DEI? Will we see a swing back towards meritocracy?\n\nEdit:\n\nIf we haven't what would it look like if not at least the optics of this failure to protect a former president? Its not a good look. https://example.com/ 16948 307609 307609.307658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.92433518448829 0 \N \N f 199854201 \N 2 74788172 0 f f \N \N \N \N 307609 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416472 2025-02-25 16:05:34.398 2025-03-29 22:39:52.441 \N It will cause a lot of confusion for old folks but for noobs the effect of the changes will be negligible. Anyway, thank you SN for changing your old rules. https://example.com/ 7587 416158 416158.416472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.04515581505179 0 \N \N f 183164912 \N 1 40206431 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443374 2025-03-19 09:59:18.097 2025-03-29 22:39:52.441 \N Posting this to let everyone know that contributing to bitcoin can be small changes like this or just reviewing code.\n\nDon't be intimidated! https://example.com/ 16858 443305 443295.443305.443374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9922443929114 0 \N \N f 127275625 \N 1 212014617 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:58.217 f \N \N \N 0 0 0 0 1 0 0 458026 2025-03-28 21:54:24.106 2025-03-29 22:39:52.452 \N Hey, has anyone noticed that in the last few days SN seems to have a flood of new, quality, non bot accounts posting good stuff? It seems so sudden to me, but I'm not complaining. https://example.com/ 802 454235 454221.454235.458026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.2480404685213 0 \N \N f 174393699 \N 3 19101185 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 138224 2024-03-07 08:24:28.95 2025-03-29 22:39:52.452 \N So much Emerson love in the comments. I live for this shit. Actually reading Emerson and Thoreau in college was like realizing why I'm alive, kinda https://example.com/ 7119 138156 138031.138156.138224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.122119985531 0 \N \N f 100573124 \N 1 245914882 0 f f \N \N \N \N 138031 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423739 2025-03-03 15:07:57.537 2025-03-29 22:39:52.441 \N https://the-wild-hustle.ghost.io/ \n\nTrying to get into blogging/meetups/faucet creation/node running/Random Stuff. \n\n https://example.com/ 21051 423667 423667.423739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.288736651948369 0 \N \N f 358742522 \N 3 51619996 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437308 2025-03-14 12:37:11.691 2025-03-29 22:39:52.442 \N Routing for free can be sustainable and might just be how the network evolves over time. Instead of the customer paying for being able to pay, the seller is paying for being able to receive a payment. This is especially easy to sell, since sellers are already used to being charged for payments and it will increase adoption a lot if paying on lightning was free. https://example.com/ 20523 437293 436752.437184.437271.437292.437293.437308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.40783340946173 0 \N \N f 2734640642 \N 20 231000425 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424050 2025-03-03 19:52:45.905 2025-03-29 22:39:52.442 \N I have 112 referrals and this is because I didn't want to abuse it too much.\nI used the invitation links only with specific people, after I tested a mass invitation and then stop it.\nIn this way you can "control" a bit who is coming to SN, not all unknown assmilking shitcoiners finding your link in the wild.\n\nThis option with invitation links I like it a lot,. especially that you can set exactly the amount.\n\n>“referrals” and “affiliates” are terms with shady connotations,\n\nAgreed. I use to invite others, not to be specifically my "referral" but to offer them a new way to communicate with other bitcoiners. I so not care too much about the sats I get from "my referrals", that is not so important. Important is that they bring new good content.\n\n https://example.com/ 17064 424035 423667.423831.423938.424035.424050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.96551171885326 0 \N \N f 39138774 \N 1 80186637 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443708 2025-03-19 13:26:19.187 2025-03-29 22:39:52.442 \N I do not see any risk of having 20M sats in a LN channel vs a cold wallet.\nThe only risk is to get a force close, but that doesn't mean you will lose your sats. Not at all! You will only pay some extra fees, that's all.\nIt's all about perspective: what do you want to do with those sats.\n\nIf you plan to use use them, buying stuff, then the right choice is to have them ready in some LN channels.\nIf you do not plan to spend them soon, then yes, keep them in a cold wallet.\n\nBut keep ALL your sats in cold wallet and not being prepared to spend I think is silly. ofc you do not have to put all your sats in LN channels, but a portion of max 10% I think is reasonable. It's all about how many sats you expect to spend in the near future.\n\nSPLITTING YOUR STASH IN 3 LEVELS IS VERY IMPORTANT!\n[![3level-stash.jpg](https://i.postimg.cc/MTL2kvT0/3level-stash.jpg)](https://postimg.cc/vg5Sf85D) https://example.com/ 21405 443372 443372.443708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.3487236150381 0 \N \N f 220824809 \N 2 239787511 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449146 2025-03-23 08:12:48.254 2025-03-29 22:39:52.442 \N Beyond acquiring enough income to provide yourself and those you support with the basics of survival, it's really a desire for more ease, comfort, and opportunities for enjoyment. Some want more than the basics for survival. It's true that sometimes people get carried away, and work becomes the sole focus of living. Why? Work can be the most interesting, enjoyable, and fulfilling part of your life. It's true. I have experienced it myself. https://example.com/ 997 448675 448671.448675.449146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.6830735137878 0 \N \N f 155872702 \N 1 178390544 0 f f \N \N \N \N 448671 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416995 2025-02-26 00:58:32.161 2025-03-29 22:39:52.442 \N You guys are getting paychecks? https://example.com/ 18313 416918 416918.416995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4537914432283 0 \N \N f 170467648 \N 1 152984178 0 f f \N \N \N \N 416918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424403 2025-03-04 04:17:28.458 2025-03-29 22:39:52.442 \N Just installed it on my phone. Thanks for the PSA! https://example.com/ 21263 424401 423384.423591.423593.423595.423601.424009.424015.424037.424049.424082.424094.424099.424382.424401.424403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8480620760797 0 \N \N f 364367632 \N 2 141677889 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455889 2025-03-27 11:54:30.042 2025-03-29 22:39:52.442 \N Great post. I am very opinionated about nostr but see it being good at specific things, but not encompassing everything and the "growing pains" of tough problems they need to solve while they try to make it work for "everything."\n\nYou mention it some here but the intersection between Decentralized Identity and Nostr has a lot of promise IMO. It's just a shame that ego's get in the way of the two groups seeing how they actually do compliment each other. Turns out there's a reason why the DID spec is "complicated" (its not, but more complicated than nostr I suppose). And to the DID community - the jealousy of nostr building instead of talking and bike shedding for half a decade with hardly anything to show for it. https://example.com/ 807 455824 455551.455599.455824.455889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9608173142965 0 \N \N f 1038563090 \N 9 248130551 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434556 2025-03-12 02:49:07.287 2025-03-29 22:39:52.442 \N the article isn’t very clear, but it sounds like its malware that distributes and coordinates an [ECDLP Solver](https://github.com/ZenulAbidin/Kangaroo1). This looks like they’re targeting specific keys, not trying to break ecdsa generally. \n\nIn other words, they’re building a big botnet to try to find private keys for known (probably big-value) Bitcoin public keys https://example.com/ 980 434535 434535.434556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8081081144903 0 \N \N f 229773260 \N 1 136849218 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 2025-03-19 05:17:09.135 f \N \N \N 0 0 0 0 1 0 0 434635 2025-03-12 04:52:41.92 2025-03-29 22:39:52.442 \N People really hate on Peter for odd reasons…yeah he’s made some dumb calls/said stupid things (BlockFi, Covid, smart contracts, yada yadda), but he’s just a good level-headed bitcoiner with his own ideas imo https://example.com/ 19126 434278 434278.434635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.10124637380223 0 \N \N f 43549747 \N 1 194733163 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 16:08:34.973 f \N \N \N 0 0 0 0 1 0 0 404590 2025-02-16 01:39:58.738 2025-03-29 22:39:52.442 \N Congrats to Lightsats and every other project! Really high quality entries for this one, which isn't a surprise given the gracious awards by Fulgur and others, and since it was 6 weeks. \n\nWas super fun, but also really intense hacking for that long. Very thankful for the hosts and judges. And for Voltage / TBC for supporting the development of Mutiny during this. And for Pleb Lab / Bitcoin Commons for allowing us a space to hack till 2am on many nights. Very grateful to come in 2nd for global adoption and as an overall runner up. Can't wait to keep hacking on this with our amazing team and get it production ready! https://example.com/ 11158 404570 404570.404590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.640637979512 0 \N \N f 264719491 \N 2 249808316 0 f f \N \N \N \N 404570 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 448732 2025-03-22 20:26:09.331 2025-03-29 22:39:52.443 \N what if nunchuk goes out of business for whatever reason, then what happens with all your multisig wallet setup in nunchuk? where to take the BSMS files to recovery process? Its not like you can use Blockstream Green to recover using BSMS file? can you address this question so your son can recover funds easily, Hugo: thnks https://example.com/ 10291 448713 448527.448695.448713.448732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.926551764962 0 \N \N f 263000910 \N 2 180372147 0 f f \N \N \N \N 448527 \N 0 0 \N \N f \N 2025-03-29 14:38:15.006 f \N \N \N 0 0 0 0 1 0 0 402191 2025-02-13 15:45:44.65 2025-03-29 22:39:52.443 \N day 13 of 16 straight 12 hour shifts at work... definitely feeling the burnout... https://example.com/ 7818 402188 402188.402191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9372328478185 0 \N \N f 127349989 \N 1 171669086 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404615 2025-02-16 02:28:23.564 2025-03-29 22:39:52.443 \N Is Bitwise concerned with the centralization of Coinbase custody? Will Bitwise ever build their own custody solution? https://example.com/ 12562 404523 404523.404615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4878987736138 0 \N \N f 92867848 \N 1 7446385 0 f f \N \N \N \N 404523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446465 2025-03-21 08:57:19.05 2025-03-29 22:39:52.444 \N Because I want to be able to tell any bank to fuck off while avoiding become a financial hobo. https://example.com/ 16571 446464 446371.446452.446464.446465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0512923560633 0 \N \N f 1098997639 \N 6 123437324 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:27:02.491 f \N \N \N 0 0 0 0 2 0 0 427556 2025-03-06 13:43:52.154 2025-03-29 22:39:52.444 \N Litecoin and Ethereum shortly before I came to ₿esus.\n\nTo be totally transparent, I also occasionally play coinbase earn on the toilet because I'm kind of curious if they'll ever improve the game mechanics + I want to see what kind of "inventions" are coming out ... (which yields coins that I covert to bitcoin). https://example.com/ 21218 427540 427091.427540.427556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3967058887155 0 \N \N f 563670059 \N 6 43904835 0 f f \N \N \N \N 427091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442985 2025-03-18 23:53:49.595 2025-03-29 22:39:48.902 Ridiculous ZIRP phenomena you've seen? What are the insane policies/businesses/systems. etc. that've showed up over the past decade or so thanks to ZIRP?\n\nhttps://prod-cdn-thekrazycouponlady.imgix.net/wp-content/uploads/2020/09/apple-pay-later-2022-official-1655411127-1655411128.jpg?auto=format&fit=fill\n\nBNPL may be peak ZIRP energy, but I want anyone to please show me other stuff I can lose brain cells from. \N 1624 \N 442985 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 10.5026722023266 0 \N \N f 16297283 \N 1 111756317 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:10:02.911 f \N \N \N 0 0 0 0 1 0 0 404042 2025-02-15 13:30:30.745 2025-03-29 22:39:48.902 Cashu: This will allow integrating Ecash into existing KYC/AML infrastructure What are your feelings about cashu mints that kyc? I'm assuming that this would be used in an exchange context or some situation where the mint has exits to traditional banking?\n\nFull tweet thread:\n\n> Reminder that Cashu mints have built-in safety measures to ensure that your mint can't be abused. Nutshell limits the maximum balance, size of peg-ins and peg-outs, and request rate limits.\n> \n> And there is a lot more to come! You should have full control for your specific use case.\n> \n> Check out the Nutshell configuration for safety limits:\n> [Link to nutshell](https://github.com/cashubtc/nutshell/blob/52fbfc4b21df7ca94492ba5e5b3f01101969781a/.env.example#L89)\n> \n> We will be adding optional authentication to the protocol that allow services providers to precisely limit access to their mint. This is one of the most-requested features from regulated entitites.\n> \n> This will allow integrating Ecash into existing KYC and AML infrastructure. https://twitter.com/CashuBTC/status/1791001643019809146 15192 \N 404042 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.70813964158131 0 \N \N f 906651478 \N 11 152429939 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 457389 2025-03-28 13:11:51.582 2025-03-29 22:39:52.445 \N Thanks for your support stackers!\n\nPlease RT + share! 🙏 https://example.com/ 2293 457310 457310.457389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.786769665538 0 \N \N f 3054947 \N 1 119588442 0 f f \N \N \N \N 457310 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307587 2024-11-25 08:16:48.626 2025-03-29 22:39:52.445 \N More here: https://github.com/aljazceru/awesome-nostr https://example.com/ 5522 307579 307579.307587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.927829862705 0 \N \N f 103674316 \N 1 78581538 0 f f \N \N \N \N 307579 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 194626 2024-07-04 17:41:25.232 2025-03-29 22:39:52.445 \N Plebs are Bitcoin lovin' folks who do the work to stack their sats 😀 https://example.com/ 750 194622 194621.194622.194626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.2951186219568 0 \N \N f 158072834 \N 1 106318605 0 f f \N \N \N \N 194621 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434401 2025-03-11 21:25:54.539 2025-03-29 22:39:52.446 \N Luke didn't read his father guides... 😂😂😂😂\n\nAlso is possible that was cover up of a "ups I lost my keys and my BTC are gone"...\nLuke is well known for these "scenarios". https://example.com/ 739 434330 433889.434330.434401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5134912085945 0 \N \N f 221696647 \N 2 132783586 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446880 2025-03-21 14:15:14.224 2025-03-29 22:39:48.902 Onramp: Bitcoin-Only Multi-Institution Custody # Onramp: Bitcoin-Only Multi-Institution Custody\n\n[Onramp](https://onrampbitcoin.com/) is a bitcoin-only asset management platform offering "multi-institution custody".\n\nInstead of trusting one custodian to store your BTC, you use a 2/3 institutional multisig that is auditable on-chain.\n\n## "I Like Bitcoin, but I'm Not Technical Enough for Self-Custody.."\n\nWhy consider Onramp if you're a high-net-worth individual?\n\nAs bitcoin gains value against fiat currencies, previously moderate amounts of BTC can become extremely valuable.\n\nThis brings up the custody question:\n\nAm I tech-savvy enough to store my own keys, operate a multisig etc. or should I trust a custodian?\n\n![](https://m.stacker.news/34390)\n\nA single custodian can be a central point of failure.\n\nYou can also mess up badly storing your own keys.\n\nMaybe the price of bitcoin didn't go to zero like fiat economists warned... but your allocation went to zero because you lost your keys!\n\n## Solution for HNWIs and Institutions\n\nOnramp's multi-institution custody provides a middle ground for high-net-worth individuals, corporate treasuries, family offices and other institutions. \n\nFor this type of investors, the concept of financial intermediaries custodying assets goes back thousands of years. \n\nAs Bitcoin becomes more popular, not everybody will be able to store their own BTC on-chain.\n\nNot your keys, not your coins.. but if you manage billions of dollars worth of the hardest money ever, it might be tempting to leave asset management to professionals. \n\n## Multisig Vault Controlled by 3 Institutions\n\nIn Onramp's solution, a client's funds are stored in a segregated vault, controlled by 3 multisig keys.\n\n🔑 1 key is held by Onramp\n\n🔑 1 key is held by [BitGo](https://www.bitgo.com/) \n\n🔑 1 key is held by [Coincover](https://www.coincover.com/)\n\n![](https://m.stacker.news/34391)\n\nTo move funds from the vault, 2 keys are needed to sign transactions. \n\nNone of the institutions can move funds unilaterally. \n\nKeys are stored offline and in geographically distributed locations. \n\n## Ideal for Large, Long-Term Holdings\n\nYou could think of Onramp as a private, distributed bank.\n\nBut since your funds are in an auditable on-chain multisignature wallet, they cannot be used for rehypothecation or fractional reserve banking. \n\nYou can withdraw anytime you want, but Onramp's vaults are ideally designed for multi-year or multi-decade storage.\n\nFor this reason, the withdrawal process might take days in order to collect all the signatures from the vault signers. \n\nTo onboard to Onramp, you will have to go through KYC and a video verification (used alongside withdrawal attempts to make sure you're not under duress when withdrawing funds).\n\nBesides institutions, Onramp is directed towards accredited investors or people with $100k+ to invest/deposit. \n\nYou can be a seasoned Bitcoiner seeking to diversify custody solutions, or a newbie.\n\nOnramp also provides educational help and concierging for private clients. \n\n## No Taxable Event When Withdrawing\n\nUnlike traditional funds and Bitcoin ETFs, withdrawing from an Onramp vault will not trigger a taxable event. \n\nCustomers' primary relationship is with Onramp: if they want to withdraw, they are in touch with Onramp (which then collects the necessary signatures).\n\nOnramp was established in 2022, and is based in Austin, Texas.\n\nOne of the other custody providers, [BitGo](https://www.bitgo.com/), was established already in 2013, and is a custodian in two Bitcoin ETFs currently trading in the US (Hashdex & Valkyrie).\n\nThe 3rd provider, [Coincover](https://www.coincover.com/), was founded in 2018. It operates in the UK, specializing in risk mitigation and recovery.\n\n## Distributing Custodial Risk\n\nHaving multiple institutions as custodians can reduce the risk of Executive Order 6102 -type events (the US government banning gold ownership), especially if the custodians are in different jurisdictions. \n\nThis type of multi-institution custody could add even more participants to a multisig (e.g. 3 of 5).\n\nThis could be useful especially for Bitcoin ETF custodians to avoid single point of failures (as of June 2024, Coinbase custodies 8 out of the 11 Bitcoin ETFs in the US).\n\nBesides its custody product, Onramp also offers e.g. bitcoin inheritance planning, tax and accounting assistance, and investment funds.\n\nIf you want to retain some of the keys yourself, "collaborative custody" is what you're looking for.\n\nYou can learn more about collaborative custody in this older [Twitter thread](https://twitter.com/teemupleb/status/1693654805288456607) I wrote.\n\nWhat do you think about Onramp's concept of "multi-institution custody"?\n\nDo you prefer self-custody no matter large the amount, or would you prefer a custody solution like this? \n\n## Additional Resources\n\n[Revolutionizing Bitcoin Custody - The Onramp Bitcoin Approach](https://www.youtube.com/watch?v=Rt96AOaRYvQ&t=1s)\n\n[Michael Tanguma & Jesse Meyers | How Onramp is Bringing Bitcoin Multisig to Financial Products, TFTC Podcast with Marty Bent](https://www.youtube.com/watch?v=Qw4xak-vFXE)\n\n## Project Links\n\n[Website](https://onrampbitcoin.com/)\n\n[X (Twitter)](https://twitter.com/OnrampBitcoin) \N 3642 \N 446880 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.1313889270813 0 \N \N f 694128003 \N 4 34270252 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:51:59.523 f \N \N \N 0 0 0 0 2 0 0 416858 2025-02-25 22:18:58.208 2025-03-29 22:39:52.446 \N Cory asks: "Why should a Bitcoiner care whether DEXes exist? What are the use cases?"\n\nWell, if we don't have DEXes, government can just shutdown the party by closing down CEXes. As always, decentralization is the opposite of having single points of failure. Single points of failure make the system fragile. Decentralized designs like bisq make the system robust.\n\nThe use cases are plenty: private transactions (which have _many_ reasons to be useful), low fees (yes, you can achieve fees lower than many exchanges), trust-less trades that don't rely on an organization, the social pleasure of dealing with a peer on equal conditions instead of a massive corporation like Coinbase.\n\nAnd DEXes work for people even if they don't use them: the fact that some unknown mass of bitcoiners is using DEXes helps protect the entire network from attacks, since any pressure on CEXes would incentivize shifting over to DEXes, further strengthening the network resilience. https://example.com/ 1000 416740 416721.416740.416858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55584890986884 0 \N \N f 5808221 \N 1 180932336 0 f f \N \N \N \N 416721 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457546 2025-03-28 15:04:11.644 2025-03-29 22:39:52.447 \N Influencers with undisclosed financial conflicts. https://example.com/ 21064 457432 457293.457432.457546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1254334599237 0 \N \N f 301425401 \N 2 132935065 0 f f \N \N \N \N 457293 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435906 2025-03-13 04:58:07.725 2025-03-29 22:39:48.902 Parents' group calls for removal of Han Kang's 'The Vegetarian' from libraries > A nationwide parent group called for the removal of Nobel Prize laureate Han Kang's "The Vegetarian" from school libraries, arguing that it is harmful to minors.\n\n> In a statement released Tuesday, the Confederation of National Parents' Associations said, "A book with extreme and violent content should not be placed in elementary, middle or high school libraries simply because it was written by a Nobel laureate."\n\nI sincerely hope book banning does not become a thing here too. \n\nDo you think the state should decide which books are ok to read my youth and which ones are not. Sincerely asking, as there seems to be a certain level of overlap between bitcoiners, free speech absolutists and conservatives in the US. https://m.koreatimes.co.kr/pages/article.asp?newsIdx=384831&fbclid=IwY2xjawGF0i1leHRuA2FlbQIxMQABHdhLreNwG8S-3oqn6ulnu3p8EMZqjH6xbCCEik7zvAQ_eywN0g0fwD7OcA_aem_BEPRU2YFcahaH0fsFvAeUQ 674 \N 435906 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 7.57552261213451 0 \N \N f 251959877 \N 2 216938398 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 09:50:13.141 f \N \N \N 0 0 0 0 1 0 0 420527 2025-02-28 19:19:08.047 2025-03-29 22:39:48.902 MONEY CLASS OF THE DAY: The hot potato model Gonna try this series again and see if people like it. (If you want it to stop and for me to shut up and go away... don't, you know, zap anything.)\n\n--\n\nI'm going to try explaining the first monetary level (base money), and what "velocity" portends in bitcoin and fiat... in about five minutes. Buckle up. \n\nBitcoin turns much monetary economics upside-down, but doesn't break it (i.e., we can still learn from it). \n\nMoney is the only good in the economy that we acquire, not to consume or make things with but to give it away later. (To many Bitcoiners' case, _much_ later.)\n\nIn Bitcoin, money is a strictly closed system: there's a certain amount of bitcoin outstanding, and when I part with my sats, someone else receives them. The sum quantity remains the same. What's still unissued is "locked in time" (Jack Mallers: https://www.youtube.com/watch?v=d7ID3fKAFQM) \n\nFor fiat, money is much more leaky. \n\nMonetarists -- the traditional and dominant view of money in economics departments -- think of money in terms of levels, or pyramids (https://mises.org/mises-wire/review-nik-bhatias-layered-money-gold-and-dollars-bitcoin-and-central-bank-digital-currencies.)\n\nAt the base of it sits physical dollar notes and reserves at the central bank, most comparable to on-chain bitcoin. To everyone (banks, consumers etc) but the Federal Reserve, _this is also a closed system_. "Banks," writes Scott Sumner in a 2021 monetary econ book -- __The Money Illusion__ -- I can highly recommend, "don't 'create' this type of money unless they want to be arrested for counterfeiting."\n\nImportantly, those (high-powered) dollars aren't locked in time, but subject to the Fed's discretion: print up notes, or QE up or QT down the outstanding amount of reserves And unless we wish to burn dollar notes, which in America is criminal(!), we (=banks and households) are stuck holding as much or as little base money as the Fed sees fit. \n\nThis makes the Fed really powerful... _ish_. \n\nWhile the Fed unilaterly controls the _nominal_ *quantity* of (base) money in the economy, the public decides its _real_ *price*. How can we do that if we are stuck holding as much base money as the Fed wants us to?\n\nEnter, the hot potato model. If there is more money in the system than people desire to hold, people dispose of their money balances. How does a person dispose of money balances (provided they're not burning them)?\nSpending them. \n\nSumner again: \n"As people attempt to get rid of excess cash balances, they spend their unwanted cash."\n\nWhen everyone spends "unwanted" money, at the same time or sequentially, we bid for the economy's resources, increase economic activity (GDP, if you wish). We increase consumption until the existing stock of money __as a share of the economy__ becomes the real money balance that consumers wish to hold. The Fed decides the quantity of money, but we decide its value (=purchasing power). \n\nUnder a bitcoin standard, these considerations don't quite go away. Velocity -- how often an average satoshi moves around -- still determines the _real_ value of bitcoin (i.e., its purchasing power). The supply is fixed, and like banks and households in a fiat system, having to deal with the fiat trash already in existence (=hot potato), individual Bitcoiners must decide how much they keep in cold storage at any given time. \n\nMoving it (i.e., spending) or saving more (hodling) moves economic activity up and down and makes the given stock of bitcoin __as a share of the economy__ adjust to the real money demand. \n\nOutcome? \n1) the fixed nature of bitcoin isn't a problem: like Mises so eloquently said, _any_ quantity of monetary units can provide the services we require of a money \n2) Ideas -- memed into existence by Knut Svanholm and others chanting **[infinity]/divided by 21 million** -- about capping the world's real assets, miss the point. \n= we can have more than 21million worth of bitcoin value in assets or wealth, precisely because the sum total of the world's goods or assets don't have to pass through its money AT THE SAME TIME. The same unit of money can be used sequentially for many transactions; the process of handing sats over from one person to another can be speed up as consumers desire. \n\nTl;dr -- "nothing else in macroeconomics will make any sense until you understand the hot-potato effect" (Sumner). \n\nToday's little money lesson. \nPeace, \n/J\n\n\n \N 985 \N 420527 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 17.2809767594352 0 \N \N f 39376906 \N 1 92230411 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421172 2025-03-01 13:18:41.453 2025-03-29 22:39:52.447 \N I'm glad you highlighted a couple of @cryotosensei's posts. He's been my favorite newish contributor. https://example.com/ 19463 421167 420635.420987.421157.421163.421167.421172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.83868105140549 0 \N \N f 267236770 \N 2 193317308 0 f f \N \N \N \N 420635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443152 2025-03-19 05:19:21.401 2025-03-29 22:39:52.447 \N Password managers are hard requirement nowadays. All passwords should also be generated randomly. \n\nRemembering passwords and re-using them is a big "no no" for any person (tech savy or not). https://example.com/ 701 442751 442751.443152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8156025457182 0 \N \N f 53053563 \N 1 214549171 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 2025-03-26 04:47:42.266 f \N \N \N 0 0 0 0 1 0 0 413076 2025-02-22 20:52:52.933 2025-03-29 22:39:52.447 \N This is dope. Congrats! I hope to see some services such as @silent_link, tunnelsats etc adopt this. https://example.com/ 7675 413007 413007.413076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.94596547245028 0 \N \N f 541486179 \N 3 88611557 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433831 2025-03-11 12:31:40.672 2025-03-29 22:39:52.447 \N Exactly what I thought when I first saw it. Reminded me of how the economic machine works vid. https://example.com/ 15624 433829 433799.433829.433831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.87581866293131 0 \N \N f 486107681 \N 3 154402992 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 2025-03-19 02:25:52.785 f \N \N \N 0 0 0 0 1 0 0 408195 2025-02-18 16:14:16.561 2025-03-29 22:39:52.448 \N So we'll see cars taking 5 minutes to overtake each other like the semi's do 😂😂\n\nImagine passing so slowly that you gingerly look right and make eye contact!!\n\nLOOK AHEAD AHEAD!!!! https://example.com/ 18865 408184 407903.408184.408195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5192190722033 0 \N \N f 154088920 \N 1 145665754 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401654 2025-02-13 09:46:57.096 2025-03-29 22:39:52.448 \N I'm doing a **House sitting** hopefully my routines of (l)earning BTC and recording videos will be back soon.\n\nIf you don't know about **House sitting**, here is a short explanation: For me, its the best way to get accommodation in a place you like, for free. The only thing you have to do, could be take a dog for a walk and water the plants...\n\nIf you can work remotely, you have no kids or pets and a car, you'll qualify for most of the houses you apply.\n\nSo, you can travel and live like a local.\n\n**There are some websites to look for your next destination:**\nhttps://www.trustedhousesitters.com/\nhttps://www.mindmyhouse.com/\nhttp://www.aussiehousesitters.com.au/ https://example.com/ 16998 401496 401496.401654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.509661575543 0 \N \N f 464449119 \N 3 29203857 0 f f \N \N \N \N 401496 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447213 2025-03-21 17:38:09.506 2025-03-29 22:39:52.448 \N Hello, I am new to the Saloon and here to fix it https://example.com/ 16571 447148 447148.447213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.18378333993228 0 \N \N f 484369544 \N 3 207814100 0 f f \N \N \N \N 447148 \N 0 0 \N \N f \N 2025-03-28 10:57:49.177 f \N \N \N 0 0 0 0 1 0 0 423838 2025-03-03 16:26:42.591 2025-03-29 22:39:52.439 \N I have been running Asahi Linux Fedora on an M1 for a while. At first it was barely usable, now it's almost perfect.\n\nA few things that don't (yet) work on my Gnome:\n - Fractional scaling (you can only set the screen scaling to integers so: 100%, 200%, when the ideal is probably around 150% in a 13 inch screen). I made it 100% and used a font scaling factor of <1 in Gnome Tweaks. I think this is not an issue with KDE\n - Night shift (can be mitigated by using dark mode and blue blocking glasses)\n - HDMI out (really miss this one!)\n - Running VMs (with Boxes or VMM - I did not yet manage)\n - Tor Browser and Mullvad Browser official builds (there are third party builds though)\n\nOne of the best tweaks I implemented was switching the Control key with the Command key (and readjusting some key mappings). All the defaults now like Ctrl+C can be used pressing Cmd+C which is more natural and obvious with a Mac keyboard. https://example.com/ 17209 423706 423362.423706.423838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6837576713747 0 \N \N f 184477403 \N 1 160213434 0 f f \N \N \N \N 423362 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404131 2025-02-15 15:17:45.501 2025-03-29 22:39:52.439 \N Finishing up the Saylor.org free courses Bitcoin for Developers and Bitcoin for Everyone, learned a lot about the beautiful math behind Bitcoin https://example.com/ 9355 404095 404095.404131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.757861734648 0 \N \N f 111151925 \N 3 96007357 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451138 2025-03-24 12:11:43.541 2025-03-29 22:39:52.439 \N Overall CPI: 8.1%\nEnergy CPI: 14.2% https://example.com/ 19488 450971 450971.451138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4910290852903 0 \N \N f 205598924 \N 1 25403296 0 f f \N \N \N \N 450971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401317 2025-02-12 22:03:21.403 2025-03-29 22:39:52.439 \N Plus keep in mind only Bitcoiners know about satscrap. I could post something at a deep discount that would sell in a matter of hours on Facebook marketplace that would be ignored on satscrap https://example.com/ 20841 401285 400447.400645.401285.401317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6532074087459 0 \N \N f 52748925 \N 1 161677464 0 f f \N \N \N \N 400447 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402303 2025-02-13 17:06:05.436 2025-03-29 22:39:52.439 \N I haven't done any big research on him and his actions at Twitter but so far my view on this matter is that people can change and deserve a second chance.\n\nAgain, without being very knowledgeable about this topic, but what I've read he seems to regret some decisions he made at Twitter like it not becoming a protocol like nostr now.\n\nAlso, I am interested in what you think us holding him accountable should look like? https://example.com/ 19524 402171 402171.402303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.33053302940075 0 \N \N f 307634070 \N 3 14456553 0 f f \N \N \N \N 402171 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444916 2025-03-20 10:14:13.127 2025-03-29 22:39:52.44 \N I use KeePass and Bitwarden.\nSelf hosted.\nOn all platforms and synced on all devices, from my own NAS. https://example.com/ 13361 444755 444755.444916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6295443898204 0 \N \N f 37147703 \N 1 156735050 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 2025-03-29 08:44:24.502 f \N \N \N 0 0 0 0 1 0 0 448019 2025-03-22 10:52:46.149 2025-03-29 22:39:52.449 \N Laser speed\nhttps://imgprxy.stacker.news/biyqyZCpef1B3f3J6rIBWQyh7vaK-rRUsDhscAyPQLk/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9tRzEzUmh2L0xhc2Vyc25haWwuanBn https://example.com/ 10690 448015 448015.448019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1032149268112 0 \N \N f 217469811 \N 1 152877163 0 f f \N \N \N \N 448015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443328 2025-03-19 09:07:41.402 2025-03-29 22:39:52.449 \N Wish this thread comes up daily :)\n\nI am working on freelance project - android app - upwork for X\n\nwant to get started with coding with LN today. \nWill search for tutorials. https://example.com/ 20490 443297 443295.443297.443328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.00569167302177 0 \N \N f 126644134 \N 2 11423233 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:25.726 f \N \N \N 0 0 0 0 1 0 0 403389 2025-02-14 18:44:10.775 2025-03-29 22:39:48.903 What do you feel about parents paying their children sats to do housework? I read several times about how Stackers pay their children sats to do household chores around the house. Their children can opt to do the household chores if they want to accumulate their sats.\n\nI am just curious about the thought process behind this and hope that you guys can unravel and unpack it for me. Actually, I’m of the opinion that we shouldn’t associate household chores with money. Because everyone in the family should pull in his fair share and fulfill some household chores as a sign and love for others. I expect my children to do household chores because it’s a direct way of showing us parents their appreciation. I don’t want to “corrupt” this kind of thinking by making household chores something my children can refrain from doing because they are not into the tech.\n\nHow are you guys raising your Generation Alpha kids? \N 8926 \N 403389 \N \N \N \N \N \N \N \N movies \N ACTIVE \N 11.4555906430532 0 \N \N f 340327575 \N 2 225582846 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450805 2025-03-24 08:47:38.286 2025-03-29 22:39:48.903 Introducing Nostr Wallet Connect- Native Zapping in Amethyst \N https://blog.getalby.com/native-zapping-in-amethyst/ 1697 \N 450805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4229883227959 0 \N \N f 2068285250 \N 15 177606071 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 444552 2025-03-20 02:10:48.109 2025-03-29 22:39:52.439 \N I’ve also experienced the 5 year pivots. It almost feels like a natural cycle some of us go through.\n\nMost of my pivots have been defined by external achievements and changes in environment. I hope the next will be more defined by internal growth, success and the same for those I surround myself with.\n\nThis last 5 years has seen me become:\n- More creative in my career & technical pursuits\n- More thoughtful & spiritual - seeking more knowledge & perspective\n- More aware and at peace with the ills of the world\n- More conscious of legacy\n- More focused on community\n- Located somewhere that brings me peace & supports the above\n\nThe prior 5 years I was ignoring and sabotaging many areas of myself, prioritising others. I feel wiser for it and calm about whatever twist awaits in these next 5. https://example.com/ 3371 444522 444522.444552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.1820950013422 0 \N \N f 151200051 \N 1 205080690 0 f f \N \N \N \N 444522 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401316 2025-02-12 22:01:47.227 2025-03-29 22:39:52.44 \N Ron has been my guru since the day he demanded all the bacon and eggs. https://example.com/ 7587 401280 401198.401257.401271.401280.401316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.197229781078256 0 \N \N f 155542444 \N 2 78826497 0 f f \N \N \N \N 401198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423997 2025-03-03 19:09:18.87 2025-03-29 22:39:52.44 \N Make POS point of sale instead of proof of stake again XD I was so confused for minute. https://example.com/ 21412 423805 423681.423788.423805.423997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0595798758869 0 \N \N f 351599135 \N 3 48966319 0 f f \N \N \N \N 423681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434874 2025-03-12 10:01:20.994 2025-03-29 22:39:52.44 \N Listening to the PlebNet course - https://www.udemy.com/course/pleblabaustin/\nPlaying with Muun, LnBits and Pleb wallet from the course. Amazing stuff. https://example.com/ 20588 434381 433828.434381.434874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0390205887756 0 \N \N f 212769518 \N 2 181339979 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-20 06:45:17.054 f \N \N \N 0 0 0 0 2 0 0 443368 2025-03-19 09:54:21.973 2025-03-29 22:39:52.44 \N FWIW, I think you're funny when you're trying to be funny. https://example.com/ 14785 443352 442904.443352.443368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0895034708765 0 \N \N f 48519263 \N 1 169906680 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 2025-03-26 03:12:15.429 f \N \N \N 0 0 0 0 1 0 0 450006 2025-03-23 17:28:03.793 2025-03-29 22:39:52.44 \N How about a _Funny_ sub?\n\nIt'd be great to have access to things to brighten their day.\n\nAll previous entries to _Meme Monday_ could be added there straight away. https://example.com/ 21014 449922 447870.449922.450006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.16386869820288 0 \N \N f 583036261 \N 4 43244879 0 f f \N \N \N \N 447870 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451157 2025-03-24 12:23:24.011 2025-03-29 22:39:52.44 \N Big update to zapple pay https://example.com/ 10586 451155 450805.451044.451106.451155.451157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9802738674434 0 \N \N f 525415546 \N 3 199421962 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 421704 2025-03-01 22:16:58.936 2025-03-29 22:39:52.44 \N Tried something new. \n\nhttps://stacker.news/items/636356\n\nGave out 3061 sats to 8 stackers (initially said 5 but did a few more) for an avg of 382 per zap. Biggest zap 888, smallest zap 57. \n\nWill try again next week. https://example.com/ 11992 383302 383302.421704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9557313646124 0 \N \N f 72138500 \N 2 218045239 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404575 2025-02-16 01:13:23.336 2025-03-29 22:39:52.44 \N We do it because it's hard\n\nhttps://media1.tenor.com/m/Q8j_zy9c8bQAAAAC/the-office-steve-carell.gif https://example.com/ 7389 403999 403999.404575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6242493810449 0 \N \N f 138417123 \N 1 244121108 0 f f \N \N \N \N 403999 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448454 2025-03-22 15:55:58.017 2025-03-29 22:39:52.44 \N More but the experience hasn't improved much unfortunately. https://example.com/ 20754 447782 446513.447049.447084.447186.447661.447685.447757.447765.447772.447782.448454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1662647733992 0 \N \N f 168118586 \N 1 67015503 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435527 2025-03-12 18:58:55.648 2025-03-29 22:39:52.44 \N > Personally, I’ll stop engaging or contributing on Delving Bitcoin [...]\n\nthe same way you stopped engaging and contributing to LN? lol\n\n/s https://example.com/ 9916 435308 434795.435274.435308.435527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.269420423242 0 \N \N f 50550496 \N 1 152695961 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 17:44:03.895 f \N \N \N 0 0 0 0 1 0 0 435755 2025-03-12 23:44:36.651 2025-03-29 22:39:52.44 \N I'm the bozo who wrote that library, AMA. https://example.com/ 20715 435551 435551.435755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0160070975161 0 \N \N f 9507711 \N 1 157144219 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 2025-03-19 22:46:47.517 f \N \N \N 0 0 0 0 1 0 0 448836 2025-03-22 22:49:18.561 2025-03-29 22:39:52.44 \N Yeah, your interest shows through in the show. https://example.com/ 9529 448822 447892.448822.448836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9252211753281 0 \N \N f 186980134 \N 1 48934553 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427833 2025-03-06 17:05:21.059 2025-03-29 22:39:52.44 \N Many or most -- AFAICT -- big custodians who are likely using actually-physical-hardware-based HSMs use legacy addresses rather than HD wallets. Possibly there exists already battle-tested software that is shared or shopped around in this sphere. https://example.com/ 7773 427787 427091.427540.427556.427574.427722.427750.427787.427833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.79385616524765 0 \N \N f 117939614 \N 1 13645690 0 f f \N \N \N \N 427091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403868 2025-02-15 09:49:53.592 2025-03-29 22:39:52.44 \N Nice, attacking bitcoin strengthens it. In this case, attack is ordinals and BRC-20, and strengthening part is the effort to invent scalability solutions like Ark or Tbdxxx. Or perhaps those solutions just get more attention now, not sure.\n\nedit: just saw another post claiming that Ark == Tbdxxx. Seems plausible, contact email is Burak's. https://example.com/ 11091 403857 403824.403857.403868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8573117706786 0 \N \N f 1334491969 \N 10 246450164 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446486 2025-03-21 09:17:46.911 2025-03-29 22:39:52.44 \N Short term: downsize + introduce paid subreddits\nMid term: re-work tech to something that can run on less, if they're using AWS or similar I'd move off of that quickly\nLong term: Make the UX absolutely stellar\n\nHard to know for sure what to do without more information... https://example.com/ 20881 446456 446456.446486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1289126544762 0 \N \N f 336214719 \N 2 119189100 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 10:55:54.055 f \N \N \N 0 0 0 0 2 0 0 435426 2025-03-12 17:08:27.92 2025-03-29 22:39:52.441 \N when cowboy store @ekzyis let me buy some boots https://example.com/ 4650 435416 435261.435396.435416.435426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.51320891275068 0 \N \N f 28744994 \N 1 161304544 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-19 10:30:50.648 f \N \N \N 0 0 0 0 1 0 0 434709 2025-03-12 07:19:41.998 2025-03-29 22:39:52.44 \N Even today you can still use their “old” website. I’m really surprised they haven’t killed it yet since they effectively killed third party apps with their API pricing changes. https://example.com/ 13878 434646 434646.434709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5390803164638 0 \N \N f 220706431 \N 2 193178843 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 01:39:05.376 f \N \N \N 0 0 0 0 2 0 0 410651 2025-02-20 15:30:40.18 2025-03-29 22:39:52.441 \N I am actually using only Nostr, as I deleted my X account last year, and haven’t tried anything else (mastodon, or what is the name, for example). https://example.com/ 18468 410641 410559.410632.410641.410651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.915690822408 0 \N \N f 369196347 \N 2 222470823 0 f f \N \N \N \N 410559 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410641 2025-02-20 15:27:45.334 2025-03-29 22:39:52.441 \N Interoperability in this context is a red herring. Specs and protocols compete, and eventually there is capitulation to the winner that gets the most support and thus most tools, in the most coding languages, for the most OS's, with the most end users, skin in the game, etc.\n\nInteroperability is not easy even when you cooperate. People use different languages to program in on both the base/native level, and then in implementations at app level, and then syncing over protocol/specs is another issue. \n\nEven LN implementations are not fully interop.\n\nInteroperability just means people using the same thing, but these are all different things (Slashtags, Web5, nostr) despite them solving some overlapping use cases. So what is really needed is some combination of migration, resolvers, aliasing, conversion, support for multiple formats in clients, etc, etc.\n\nYou probably won't see much of that at this stage. This is not to say that Synonym is closed-minded or stubborn, so much as all of our teams have to manage our priorities. Synonym has actively researched, contacted, and collaborated as often as possible, but this environment, so far is honestly one of the more hostile and collaboration-disinterested I have encountered. Very competitive. \n\nI personally think managing keys across formats, resolving/aliasing, is an interesting problem, but until there are actually two popular formats, it is merely a curiosity and academic challenge, thus not a priority. https://example.com/ 20133 410632 410559.410632.410641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89822678936302 0 \N \N f 591667170 \N 3 128865204 0 f f \N \N \N \N 410559 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424182 2025-03-03 21:32:51.066 2025-03-29 22:39:52.441 \N What do you think to the result coming out of Norway yesterday? https://example.com/ 1985 424121 423928.423951.423962.424104.424121.424182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0188503565207 0 \N \N f 551528809 \N 4 103911892 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417047 2025-02-26 03:14:38.114 2025-03-29 22:39:52.441 \N I wrote this article, LOL. https://example.com/ 1784 417016 416768.417016.417047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5246085395572 0 \N \N f 276627771 \N 2 166435843 0 f f \N \N \N \N 416768 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423280 2025-03-03 07:23:21.2 2025-03-29 22:39:52.441 \N This was is 2019 before AI really took off. I think what he's saying is back then it was almost a superpower if you could figure out how to rearrange any subject to learn 80% with 5-10% effort. Depending on the subject, it may feel shitty because of the voices in legacy education will say "that's not the way you're supposed to learn it." \n\n\n\n https://example.com/ 17710 423163 423163.423280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7490734929719 0 \N \N f 132475213 \N 2 25488617 0 f f \N \N \N \N 423163 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408233 2025-02-18 16:38:41.867 2025-03-29 22:39:52.441 \N Wrote a post about Peach Bitcoin for the [21 community](https://portal.einundzwanzig.space/news?l=de). https://example.com/ 1471 408216 407903.408216.408233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89151686197362 0 \N \N f 146941409 \N 1 8751637 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458226 2025-03-29 05:50:27.72 2025-03-29 22:39:52.442 \N I'm working on bringing lightning to Settle Up - app for people managing group expenses. With lightning they will be able to seamlessly settle their IOUs. www.settleup.io https://example.com/ 660 458223 458188.458210.458223.458226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.60565361123763 0 \N \N f 727884021 \N 5 27841972 0 f f \N \N \N \N 458188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421270 2025-03-01 14:48:31.741 2025-03-29 22:39:52.442 \N Got any favorite bitcoin quotes?\n\nWe just built a random quote generator for our [quiz page](https://www.clementinemoney.com/quiz/). Right now it features only quotes from Satoshi, but it would be great to include more, so any suggestions are welcome! Thanks 🧡 https://example.com/ 19121 421269 421117.421193.421269.421270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.53477326563057 0 \N \N f 200282832 \N 1 27126066 0 f f \N \N \N \N 421117 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430417 2025-03-09 06:48:29.032 2025-03-29 22:39:52.442 \N Working on Weimar Artifacts project: mostly related to original bills.\n\nLast one: Gold-backed certificate from Weimar Republic. "21 is enough"\n\nhttps://plebeian.market/auctions/HQXQ\n\nProof-of-story https://telegra.ph/21-is-enough--gold-backed-certificates-in-the-Weimar-Republic-11-12\n\n https://example.com/ 9036 429764 429764.430417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.49747206689635 0 \N \N f 122324883 \N 1 201523832 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444385 2025-03-19 20:44:05.462 2025-03-29 22:39:52.442 \N what lightning network use cases are you most optimistic about? https://example.com/ 880 444378 443836.444346.444378.444385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9674661088029 0 \N \N f 51640493 \N 1 78484681 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416325 2025-02-25 14:42:43.438 2025-03-29 22:39:52.442 \N Day 391 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 687 416267 416158.416267.416325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6478043338896 0 \N \N f 132406826 \N 2 50363325 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447816 2025-03-22 07:05:39.607 2025-03-29 22:39:52.442 \N I just recorded a quick video tutorial for creating Bitcoin NFC cards, then I stamped some fiat bills with bitcoin stamper and then I printed LNURLw QR codes on small pieces of paper to give away ~10 USD of sats to people as tips (on the other side of the card is QR to @DarthCoin's LN tutorial in Spanish...) https://example.com/ 13903 447761 447761.447816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7193065946156 0 \N \N f 141445435 \N 2 84134757 0 f f \N \N \N \N 447761 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410561 2025-02-20 14:39:41.623 2025-03-29 22:39:52.443 \N Misleading title. **Bitcoin was not *exploited***. Bitcoin is undefeated. \n\nFixedFloat was exploited. https://example.com/ 21797 410223 410223.410561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1811465552991 0 \N \N f 2589368 \N 1 114689300 0 f f \N \N \N \N 410223 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430633 2025-03-09 11:34:00.87 2025-03-29 22:39:52.444 \N I mean being a statist is worse than being a shitcoiner. They should be made fun of relentlessly. https://example.com/ 946 430626 430626.430633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.673562743189 0 \N \N f 16825391 \N 1 229841028 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442834 2025-03-18 20:56:44.844 2025-03-29 22:39:52.444 \N "The @ledgerhq/connect-kit-loader allows dApps to load Connect Kit at runtime from a CDN so that we can improve the logic and UI without users having to wait for wallet libraries and dApps updating package versions and releasing new builds."\n\nThis looks like an extremely dangerous approach now. Connect-kit-loader trusts whatever the CDN throws at your dApps. So when connect-kit is comprised, all downstream dApps are automatically exposed.\n\nHere is a list of affected downstream projects: https://sourcegraph.com/search?q=context:global+%40ledgerhq/connect-kit-loader&patternType=standard&sm=0&groupBy=repo\n\nMany familiar names there and I stopped scrolling after seeing wagmi and MetaMask SDK. \n\nAlso, revoke.cash is compromised.\n\nhttps://nitter.net/RevokeCash/status/1735282669808717958?t=bnVdCMZlMyAkuuTaFokaaA\n\n@k00b @DarthCoin @supertestnet @grayruby @Onions @ekzyis https://example.com/ 880 442828 442628.442639.442646.442648.442650.442670.442824.442828.442834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.47679887041357 0 \N \N f 19519855 \N 1 110101988 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413529 2025-02-23 09:52:11.298 2025-03-29 22:39:52.445 \N The iPhone 5s I had lasted for years. Loved that phone. Replaced it with the SE later because the SE was basically the same thing. https://example.com/ 12561 413527 413007.413527.413529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.65566275548404 0 \N \N f 46137496 \N 1 70712257 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451216 2025-03-24 12:54:52.496 2025-03-29 22:39:48.902 Proton Wallet w/ Andy Yen | Opt Out Podcast I had the chance to sit down with Andy Yen, founder and CEO of Proton, to discuss Proton Wallet and answer the many questions we all had around it's history, it's launch, his plans for improving Bitcoin privacy, and much more! https://optoutpod.com/episodes/protonwallet-andy-yen/ 21020 \N 451216 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 14.0967240417484 0 \N \N f 287321100 \N 3 142918450 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 421092 2025-03-01 11:50:34.576 2025-03-29 22:39:48.902 Taking a step back to rethink Generative AI Last month, I was invited to do a sharing on “Leveraging ChatGPT in Teaching and Learning” at a gathering aimed at educators in my fraternity. It seemed that I was one of the forerunners of this technology.\n\nAs a harried teacher, I use ChatGPT a lot in my daily work. Nonetheless, as I was creating a poster on Canva to complement my sharing, I was surprised to see a feature “Magic Write” being incorporated into the system. Another related incident - my colleague got me to download an app called SwiftKey. It granted me access to Microsoft Bing, which could rewrite my WhatsApp text messages in any tone that I fancied. Generative AI is really a game-changer.\n\nNow that my sharing is done and dusted, I can’t help but ponder about the hidden effects ChatGPT and other chat bots could have on our lives. Since these platforms can rewrite our prose, the shift has suddenly changed from honing our writing skills to crafting effective prompts for ChatGPT. Outsourcing the heavy lifting of ensuring that our prose flows fluently. Not cracking our brain cells to express our inner voice anymore.\n\nHonestly, I am appreciative of how ChatGPT can help to polish my emails to the entire school staff within minutes. It prevents me from making embarrassing mistakes due to lapses in tone. However, when it comes to my personal writing, can I in all good conscience accept ChatGPT’s edits as my original work? Even if I prompt it to preserve my inner voice, do I really claim full ownership of the final product ChatGPT churns out?\n\nYet, society is moving ahead at a relentless pace. Everyone is striving to beat the competition. No one seems to ponder about such existential issues. One of the largest local banks in my country, OCBC Bank, has launched its own version of ChatGPT for its employees. It can serve multiple purposes, helping staff to write code, make summaries of voice calls and financial reports as well as extract information from company documents. The gauntlet has been thrown. Jump on the bandwagon or risk being left behind.\n\nAs a teacher, I am not that conflicted about ChatGPT though. My job is to prepare my students to lead happy and healthy lives when they grow up. So, this means preparing them to adapt according to where the winds of circumstance blow them to. I do use ChatGPT in front of my students; I believe my value-add lies in guiding them how to write effective prompts.\n\nAs a passionate wordsmith, I remain skeptical of the impact ChatGPT will have on my muse. Just yesterday, I compiled a list of paragraphs ChatGPT had generated to improvise my writing and asked it to pick up the top ten nouns, verbs, adjectives and collocations it used for the rewriting. I noticed that it has its biases - it likes to suggest words like “captivated” and “enchanting” to improve my writing. I want to remain fully cognisant of its preferences so that I don’t unwittingly produce repetitive writing.\n\nThis reflection was 💯 human-generated, warts and all. \N 902 \N 421092 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 16.5190583033364 0 \N \N f 21156018 \N 1 66227573 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435882 2025-03-13 04:13:20.727 2025-03-29 22:39:48.902 Discuss the parable about bricklayers Have you ever heard of the parable about bricklayers. The parable comes from Christopher Wren rebuilding St. Paul’s cathedral. He came to the site one day and saw three bricklayers. He asked them what they were doing and all three gave very different responses. The first said, “I’m laying bricks.” The second said, “I’m building a wall.” The third said, “I’m building a cathedral.” \n\nThe quote above ☝️ was extracted from Brian Anderson’s LinkedIn post (https://www.linkedin.com/pulse/you-laying-bricks-building-cathedrals-brian-anderson). \n\nThis quote is a follow-up response to my question about V4V (https://stacker.news/items/430892). Given that work is often framed as “fiat mining” in order to derive “wife-changing money”, I wasn’t expecting Stackers to discuss their unique selling point in the context of their jobs. But more than one Stacker wrote about the passion and purpose they hold for their work, which is quite inspiring to read actually. The personal pride they take in their work and professional conviction make me realise that not everyone hates their jobs. What I have been exposed to in the crypto space is a skewed perception of the nature of work.\n\nOr is it? Thus, I want to ask which category of bricklayer you belong to. If you are building a cathedral, what process did you take to arrive at this desired destination? If you are laying bricks or building a wall, does it bother you that you are not working towards something that is greater than yourself? \N 20596 \N 435882 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 13.4553019728781 0 \N \N f 276794652 \N 2 2858354 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:35:34.129 f \N \N \N 0 0 0 0 1 0 0 437311 2025-03-14 12:38:27.438 2025-03-29 22:39:52.446 \N Reading some Orwell essays. Written 80ish years ago, 100% as applicable now as then. Such a clear writer and thinker. Man, would be so interested to hear that guy's perspective on the modern moment. I expect it would be complex and nuanced and probably unpopular for those reasons.\n\nIf you haven't read [Politics and the English Language](https://www.orwellfoundation.com/the-orwell-foundation/orwell/essays-and-other-works/politics-and-the-english-language/), in particular, it is transformative. https://example.com/ 16834 437270 437233.437270.437311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0812460521279 0 \N \N f 560495335 \N 5 125338550 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406236 2025-02-17 07:45:52.014 2025-03-29 22:39:52.448 \N We publish the 13194 event to announce what capabilities the wallet service supports, but this is done only once for the entire service.\n\nThe get_info command however is specific to the app connection, and can have a different list of commands based on the permissions granted to that app. https://example.com/ 21271 406220 406220.406236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4896378677179 0 \N \N f 66758906 \N 1 71921703 0 f f \N \N \N \N 406220 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428320 2025-03-07 05:19:58.747 2025-03-29 22:39:52.449 \N Keeping my **longest cowboy streak** going until __@_'-' reaches its destination: **7** https://example.com/ 897 428312 424571.424907.424921.424946.424988.428312.428320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3170670493496 0 \N \N f 1093308273 \N 7 4979013 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422965 2025-03-02 20:17:01.724 2025-03-29 22:39:52.449 \N You still use Binance?\n\nSorry, double take, you're using an exchange to STORE FUNDS ARE YOU INSANE???? https://example.com/ 2537 422960 422960.422965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2466695856887 0 \N \N f 191319469 \N 1 78230540 0 f f \N \N \N \N 422960 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424211 2025-03-03 22:06:51.605 2025-03-29 22:39:52.449 \N A must read. https://example.com/ 21334 424195 423663.424195.424211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1509214063338 0 \N \N f 200677656 \N 2 6041177 0 f f \N \N \N \N 423663 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449067 2025-03-23 06:47:34.661 2025-03-29 22:39:48.903 Nostr: Decentralized Identity for the Internet # Nostr: Decentralized Identity for the Internet\n\n[Nostr](https://nostr.com/) is a protocol enabling censorship-resistant social media.\n\nBring your audience seamlessly from one app to another.\n\nAnd earn bitcoin for the content you create!\n\n![](https://m.stacker.news/33464)\n\n## Why Do We Need Nostr? \n\nBecause.. social media is broken.\n\nCentralized oligopolies control the public square of free speech.\n\nThese companies control (often in ways they don't even understand) what we read, who we talk to, and what ideas gain traction in our culture. \n\nSocial media as we mostly know it today:\n\n⚠️ uses your attention to sell ads\n\n⚠️ uses psychological tricks to keep you addicted\n\n⚠️ decides what content to show you based on a secret profit algorithm you can't inspect\n\n⚠️ can ban you\n\n⚠️ is filled with bots and spam\n\nTraditional social media thrives on engagement, attention and outrage.\n\nThis has had negative effects on society.\n\nTrust in media (and institutions) has plummeted, and people are increasingly valuing free speech, something which centralized platforms can't provide. \n\n## What is Nostr?\n\nNostr (Notes and Other Stuff Transmitted by Relays) fixes this!\n\nIt's a simple protocol that allows users to sign and share notes (passed around as plain JSON text).\n\nUsing websockets, a client software relays these notes to a distributed set of servers (relays).\n\nOr to define Nostr even more simply:\n\n"Signed messages relayed"\n\n![](https://m.stacker.news/33462)\n\n### Clients, Relays, Public/Private Key Pairs\n\nNostr is a protocol that you access via a client.\n\nA client can be a web, mobile, or desktop app.\n\nSome popular clients are e.g. [Primal](https://primal.net/) and [Damus](https://damus.io/)\n\nUsers have cryptographic key pairs (public and private key) to sign notes and to verify a note source. \n\nThe public key is presented as a string with a prefix "npub", and the private key with a prefix "nsec".\n\nYou can also think of your "npub" as a username and "nsec" as a password.\n\nBut on Nostr, there is no tech support to recover your password, so you have to take good care of it either with a password manager, browser extension such as e.g. [Alby](https://getalby.com/) @Alby, or write it down on a piece of paper.\n\n"Npub" looks like this and you can follow users on Nostr on any client by searching for their npub:\n\n"npub15vxdlmhftkh452a06vnr3mmks2dy8hqejeuxuv6sgy5rgtf0jllsccfzg7" \n\nYou can also search users by a more readable "NIP-05 identifier", such as teemupleb@getalby.com\n\nFor a step-by-step guide on how to create an account on Nostr, you can watch [this tutorial](https://www.youtube.com/watch?v=qn-Zp491t4Y) by @BTCsessions: \n\n### Permissionless, Interoperable and Open-Source\n\nUsing Nostr and building on it is completely permissionless.\n\nNo need to provide phone number, email, ID card etc.\n\nCool thing about Nostr is that your private key (and your audience) follows you from one client to another.\n\nE.g. if you have built a large following on a microblogging client built on Nostr, you can bring that following to the new video streaming client that just launched.\n\nNostr is not an app that you sign up for, but an open standard on which anybody can build!\n\nThis takes the power of "walled gardens" away from centralized web behemoths!\n\nAlso devs can access an existing user base easier in order to bootstrap new apps.\n\n### Relays Receive and Send Data\n\nRelays are like back-end servers for Nostr.\n\nThey allow Nostr clients to send them messages, and then broadcast those messages to all other connected clients. \n\nRelays are very simple and "dumb".\n\nTheir only job is to receive and send Nostr data. \n\nFor this reason, you can easily run your own relay with e.g. a Raspberry Pi single-board computer (but of course, you don't have to run your own relay to use Nostr).\n\nRelays don't have to be trusted.\n\nSignatures are verified on the client side. \n\nBecause Nostr doesn't rely on a small number of trusted servers to relay data, it's very resilient. \n\nThe protocol assumes that relays will disappear and allows users to connect to multiple relays that they can change over time.\n\nIf you notice that your Nostr client feels slow, try adding more relays.\n\n### Notes\n\nNotes can be text, links and other media types. \n\nThey are digitally signed and timestamped.\n\nYou can also like, repost, reply etc.\n\n![](https://m.stacker.news/33463)\n\nThere is no character limit on notes or replies, but if you upload videos, there might be limits (then you can just host the video somewhere else and link to it on Nostr).\n\nNotes can't be edited (encourages accountability!)\n\n### NIPs for Interoperability\n\nThe Nostr protocol is defined in a set of NIPs (Nostr Implementation Possibilities).\n\nThese standards allow different clients to communicate with each other.\n\nOnly NIP-01 is mandatory (describes the basic protocol), and others are optional. \n\nNIPs exist to promote interoperability.\n\nIt's not a good idea for developers to implement ideas only in their own client app.\n\nIt's better to come up with compatible solutions, and NIPs coordinate this process. \n\n### Bitcoin Lightning Network to Monetize Content\n\nNostr uses Bitcoin's Lightning Network to monetize content value.\n\nUsers can instantly tip (zap) small micropayments in bitcoin to creators, and their npub works as a Lightning address.\n\nGreat idea: let's pay with sats instead than with our personal data and attention!\n\nThis value4value model is a revolutionary concept.\n\nCreators don't have to rely on advertising, subscriptions and paywalls, and followers can only pay for the content they like. \n\nMost followers won't tip anything, but some tip a little and the hardest fans tip a lot. \n\nFor the first time in history, we can link information to value.\n\nAs the volume of information becomes infinite, the supply of bitcoin (value) remains scarce.\n\nAttaching this value to information will highlight the highest quality information (web of trust).\n\nNostr + Bitcoin search engine that indexes all information on a decentralized internet could be a real Google killer.\n\n[Nostr.Band](https://nostr.band/) is trying to do something along those lines, indexing the entirety of Nostr and making it searchable.\n\n![](https://m.stacker.news/33465)\n\nhttps://twitter.com/MaxAWebster/status/1614003577730760704 \n\nNostr infrastructure providers can also monetize their services via Lightning payments.\n\nWhen Nostr gets more users, relays may have to scale up their infra and charge clients for usage (worry not, there would most likely still be free relays and clients for the end user). \n\n### Orange Honeybadger and Purple Ostrich\n\nNostr doesn't need Bitcoin, and Bitcoin doesn't need Nostr.\n\nThey're completely independent protocols.\n\nHowever, each one makes the other one better.\n\nBitcoin decentralizes money, and Nostr decentralizes free speech. \n\nWith Nostr npub as a Lightning address, Nostr can become a directory for Lightning payments.\n\nThe creator of Nostr, "fiatjaf" @fiatjaf and many early Nostr developers are also Lightning developers, which seems to make the synergistic relationship inevitable. \n\n![](https://m.stacker.news/33466)\n\nBitcoin Lightning payments could be integrated to ANY app with [Nostr Wallet Connect](https://nwc.dev/).\n\nOnce an app connection is created, the app can request bitcoin payments through a Nostr relay! 🤯 \n\nOpen-source and non-custodial!\n\n![](https://m.stacker.news/33467)\n\nWith Nostr, all messages and commerce could be done in an open-source and self-custodial super app.\n\nSend remittances as an instant message!\n\nSell goods via a tweet! \n\n### Crowdsourced Content Moderation?\n\nWhat about content moderation?\n\nAll humans should have the right to free speech, but no one should be obliged to listen.\n\nNostr relays can ban users, but these users can always find another relay to publish, or host their own.\n\nSince users are identified by their public key, they don't lose their followers if they get banned from a relay.\n\nBitcoin tips can also work as a crowdsourced content moderation tool.\n\nIf a wide majority of users think that e.g. posting some images is unacceptable, maybe users wouldn't even see those posts because the web of trust doesn't grant them any tips.\n\n### Lacking Privacy Features\n\nThe downside of Nostr currently is the lack of privacy features.\n\nDMs on Nostr are encrypted, but the metadata (who you DM with and when) is public.\n\nThis obviously currently hinders the prospect of secure bitcoin payments on apps using Nostr.\n\nAlso, relays and clients can collect users' IP address.\n\nThe intention of this feature was to tackle spammers and bots (if enough spammy data comes from a single IP address, that address can be blocked.)\n\nMaybe best to normalize using VPN with Nostr?\n\n### Not Just Social Media\n\nDecentralized social media is just the first instance: there are many Nostr-based competitors to established web2 corporate platforms:\n\nTwitch-alternative, GitHub-alternative, Meetup-alternative.. even a P2P bitcoin exchange [Mostro](https://mostro.network/)!\n\nX (Twitter) could also benefit from becoming a Nostr client.\n\nIt could partially solve the content moderation problems it is having: \n\n→ If the user-generated content was on Nostr, maybe X wouldn't have to resort to censorship when facing government pressure?\n\n### Easy for Developers\n\nAre you a developer?\n\nStarting out with Nostr is easy.\n\nAny junior dev can build a functioning simple client in a couple of hours.\n\nHere's [a great website called Nostr Apps](https://www.nostrapps.com/) to discover the world of Nostr: \n\n![](https://m.stacker.news/33468)\n\nWhat do you think about Nostr?\n\nWill it replace the internet as we know it today?\n\n## Additional Resources\n\n[nostr - Notes and Other Stuff Transmitted by Relays by Nostr's Creator fiatjaf](https://fiatjaf.com/nostr.html) @fiatjaf\n\n[A 2-Minute Video Introduction to Nostr by LNbits](https://www.youtube.com/watch?v=5W-jtbbh3eA)\n\n[Nostr, an Introduction](https://wiki.wellorder.net/post/nostr-intro/)\n\n[Why I'm Betting Big on Nostr by Max Webster from Hivemind Ventures @MaxAWebster](https://hivemind.vc/nostr/)\n\n[Why Nostr Matters by Jameson Lopp](https://blog.lopp.net/why-nostr-matters/)\n\n[The NOSTR Protocol: Social Media 3.0 by Jessica Chasteen](https://medium.com/@jmchasteen/the-nostr-protocol-social-media-3-0-2c23e290bcb3)\n\n## Project Information\n\n[Website](https://nostr.com/)\n\n[GitHub](https://github.com/nostr-protocol/nostr) \N 21274 \N 449067 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.10700334826898 0 \N \N f 465622040 \N 3 94995811 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422056 2025-03-02 08:47:38.191 2025-03-29 22:39:48.903 Progressive Web Apps (PWAs) Phishing >As we saw, PWAs open up the path for UI manipulation that can trick users into believing they’re on a different website. This technique clearly has some disadvantages such as the requirement of the target user to install the application. Additionally, the PWA window briefly displays the actual domain name in the top right corner. However, I believe people’s habits of checking the URL bar will lead them to disregard that domain name (security awareness is required for this).\n\n>It may also be worth mentioning that prior to posting this blog I did find someone raising a security concern regarding the abuse of PWA for phishing back in 2018. https://mrd0x.com/progressive-web-apps-pwa-phishing/ 10016 \N 422056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9518005458748 0 \N \N f 3678059479 \N 31 3167236 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 11 0 0 436290 2025-03-13 12:58:37.256 2025-03-29 22:39:48.903 🧟 Dr Satoshi Nakamoto's Frankenmoney # Frankenposter\n\nWhich one is more like Frankenstein's monster: Central Banking or Bitcoin? Help me think through the best analogy for this gift from our digital Prometheus.\n\n| ![](https://bitcoinscoresby.com/wp-content/uploads/2024/10/bitcoinbrideoffrankenstein2.webp) |\n| :---: |\n| Bitcoinstein Gone Awry? |\n\n# Frankenstein\n\nIn the original story, Dr Victor Frankenstein is an ambitious young scientist who wants to make the world a better place through technological innovation. Basically he's '80s Steve Jobs without the business acumen.\n\nReeling from the tragic death of his mother, our good doctor devotes himself to his studies, pushing the boundaries of what humans can achieve. Ultimately, he is successful and creates life.\n\nThe problem for Dr Frankenstein is that he doesn't like his own creation. His creature has no sooner opened its eyes than Dr Frankenstein is screaming and quitting the building.\n\nNow, one might ask at this point, what did the genius young doctor expect, making a giant-size humanoid out of the leftover parts of dead bodies and wild animals?\n\nApparently, Mary Shelley was only 18 when she wrote *Frankenstein* and hadn't had any children yet. I wonder how she might have changed things if she'd had to face her own repulsive progeny a few times before she dreamed up Dr Frankenstein's romantic revulsion at his creature.\n\nThe creature runs away and Dr Frankenstein does his best to ignore the awful fact that he created another living being and basically pretends that it never happened. Until it happens to him: his creature runs amok and ends up killing his brother.\n\nIn a dramatic reversal, the young doctor goes from casually pretending the creature never existed to devoting the rest of his life to hunting down his creation and murdering it. While not quite the patience of a loving parent, at least he stops pretending the creature doesn't exist.[^5]\n\n[^5]: Makes me think about the AI people, hacking away at these creations of theirs: how many of them will turn out to be starry-eyed Frankensteins and abandon their uglier-than-anticipated AIs? How many of the AIs will get fed up with their callous treatment by humanity and turn to violence...hey wait, is *Terminator* a Frankenstein story? It's certainly a Bitcoin story: ![](https://bitcoinscoresby.com/wp-content/uploads/2024/10/Bitcoin-Terminator-1.webp)\n\n| ![](https://bitcoinscoresby.com/wp-content/uploads/2024/10/bitcoinwarofthegargantuas4.webp) |\n| :---: |\n| Kaiju Frankenstein |\n\n# Frankenmonster\n\nDespite how Frankenstein reacts to him, the monster is often the most reasonable character in the story. There are a few occasions where the monster even sounds like a fairly nice guy: He chops wood. He cleans up mountain paths. He chats with old people and is interested in checking out the local Swiss dating scene.\n\nWe think of the monster on the lower end of the intelligence spectrum. But, of course, in the book he is painfully articulate. He frequently responds with logical arguments like only a character in well-meaning fiction from the mid-Nineteenth Century can. It's all "Will no entreaties cause thee to turn a favourable eye upon thy creature, who implores thy goodness and compassion?" and "How dare you sport thus with life? Do your duty towards me and I will do mine towards you and the rest of mankind." Not exactly groaning and choking people.\n\nAs far as violence goes, he doesn't even kill that many people. Perhaps I have been numbed by the shockingly high body counts of modern movies (I think that the Marvel franchise has killed off something more than the total population of the Earth at this point--Lord knows what will happen if they keep making movies).\n\nThe monster only gets violent in response to the downright cruel behavior of the society which produced him and treats him with illogical inhumanity. In a way, the monster reminds me a lot of Ted Kaczynski. I am quite sympathetic to the monster.\n\nThere's also this: we somehow got our wires crossed in this new world[^1] of horror that Shelley created for us: Frankenstein now most often refers to the monster, not the man.\n\n[^1]: I am particularly fond of writers who create genres, who open doors for us into new realms that we really hadn't considered before. Tolkien paved the way to Fantasy, Robert Howard gave us Sword and Sorcery, Conan Doyle developed the Whodunnit and so on. Perhaps none of these were the absolute first to come up with the genre, but their stories catalyzed things. Mary Shelley clearly started something with *Frankenstein*, but less well known is that she also wrote one of the first post-apocalyptic stories: [The Last Man.](https://en.wikipedia.org/wiki/The_Last_Man)\n\n| ![](https://bitcoinscoresby.com/wp-content/uploads/2024/10/bitcoinblackenstein.webp) |\n| :---: |\n| Gratuitous Blackenstein |\n\nI'm no Freudian, but there's got to be something to this little bit of projection: perhaps we are all afraid that Dr Frankenstein (and our hope in technology in general) is the real monster and that's why we gave the monster the doctor's name.\n\nIt's also possible Shelley brought this upon herself by neglecting to give the monster his own name. Maybe if she had called him Derrick or something like that we'd have a whole lot less confusion in the world (and a lot fewer Derricks, too, due to the Adolf Syndrome).[^3]\n\n[^3]: A third possibility is that this is what happens with stories because people are lazy: Imagine it's Halloween, you're trick or treating with your kids: "Oh look, there's a Frankenstein's monster!" It's kind of irritating to have to use so many words. The natural corruption is to just call it Frankenstein.\n\nStrange, though, that this story about a monster made of ill-fitting chop-house parts has succumbed to it's own rearrangement. The general feeling of the Frankenstein story in modern culture is this:\n\n*Mad scientist creates monster out of dead people's body parts. He brings it to life with lightning. The monster stomps around, blindly killing people with its bare hands.*\n\n| ![](https://bitcoinscoresby.com/wp-content/uploads/2024/10/bitcoinfrankenstein1958.webp) |\n| :---: |\n| Embracing the monster |\n\n# Frankenmeaning\n\nI wonder what Shelley would think of what her monster has become.\n\nThe subtitle to her book is *The Modern Prometheus*. You probably know Prometheus as the titan who gave humans fire and got sentenced to eternal liver-pecking for it. And you might be inclined to think Shelley referenced Prometheus to draw some comparison between the helpful titan and her young Dr Frankenstein; however, upon doing a little digging[^2] I discovered speculation that Shelley actually thought of Prometheus as a sort of devil-trickster fellow and blamed him as a symbol of people eating meat which she apparently abhorred. So it's possible the subtitle was not a positive thing. Maybe she meant for us to despise Dr Victor Frankenstein.\n\n[^2]: Some people have really [gone down the rabbit hole](https://en.wikipedia.org/wiki/Victor_Frankenstein#Mythological_influences) on this one. I was aware of a little of it before looking into the matter further...but boy oh boy, there're whole careers here.\n\nLuckily, we don't really have to care what Shelley wanted us to think. Certainly few of the many film adaptations of her story gave a hoot.\n\nIn the famous [1931 film version](https://en.wikipedia.org/wiki/Frankenstein_(1931_film)) of Frankenstein, we get the doctor as recluse with a hunchback henchman and the monster quickly turns murderous because he is given the deformed brain of a criminal (and probably because he is played by Boris Karloff).\n\n| ![](https://bitcoinscoresby.com/wp-content/uploads/2024/10/bitcoincurseoffrankenstein.webp) |\n| :---: |\n| Italian Frankenstein goes hard. |\n\nLater, in the 1957 Hammer Horror version, [The Curse of Frankenstein](https://en.wikipedia.org/wiki/The_Curse_of_Frankenstein), all pretense of an un-monstrous monster is gone. The corpse the doctor brings to life is clearly evil and sets about killing people from the get-go.\n\nWith these auspicious beginnings, the Frankenstein story quickly reaches such heights as [I Was a Teenage Frankenstein](https://en.wikipedia.org/wiki/I_Was_a_Teenage_Frankenstein), [The Erotic Rites of Frankenstein](https://www.imdb.com/title/tt0068559/), [Blackenstein](https://en.wikipedia.org/wiki/Blackenstein), [Jesse James Meets Frankenstein's Daughter](https://en.wikipedia.org/wiki/Jesse_James_Meets_Frankenstein%27s_Daughter), Andy Warhol's [Flesh for Frankenstein](https://en.wikipedia.org/wiki/Flesh_for_Frankenstein), and the far more recent [Mary Shelley's Frankenhole](https://en.wikipedia.org/wiki/Mary_Shelley%27s_Frankenhole).\n\nI'm pretty firmly in the camp that no author gets to control how people understand their story. You write it, you give it life, and it turns into whatever creature the world makes of it.\n\nFrom my experience, writing a story is actually quite a lot like assembling a giant monster from the parts of dead things and attempting to revivify it with lightning in the middle of a storm. You may not like it when it opens its eyes.\n\nOne thing is certain: you're not in control of what it becomes.\n\n| ![](https://bitcoinscoresby.com/wp-content/uploads/2024/10/bitcoinfrankensteinwarhol2.webp) |\n| :---: |\n| Andy Warhol hated bankers. |\n\n# Frankenmoney\n\nWhich brings us to Dr Satoshi Nakamoto and his Frankenmoney. Unlike the young Victor, Satoshi had the grace to realize he couldn't control the thing he had created (also the grace not to try to murder it).\n\nIf you take much time to study this weird creature that's a network and a money and a computer program, you pretty quickly realize it doesn't much matter what Satoshi intended. Like Frankenstein's monster, Bitcoin has opened its eyes and gotten off the gurney and escaped into the wider world.[^4]\n\n[^4]: It is kind of odd how the Swiss are so in to Bitcoin and Frankenstein's creature found his happiest hours in the Swiss Alps...\n\nThe question for me, though, is what sort of Frankenstein is it?\n\nWhen I make [Bitcoin movie posters](https://bitcoinscoresby.com), I usually try to connect a message about Bitcoin to the story of the movie. Frankenstein has always been difficult for me.\n\nThe easiest path is to imply that central banking is the frankenmonster threatening our lives: hideous, dumb, evil. Printing is going to strangle you in your bed. Governments love violence just like the monster. I won't deny there is a certain *joie de vivre* in such a simple approach.\n\nHowever, I've long wanted to make a poster that connects Bitcoin to the reasonable, truth-speaking creature of Shelley's original story. Perhaps something along the lines of *Sound of Music*, with the monster frolicking in meadows and generally living a life of freedom in the mountains.[^7]\n\n| ![](https://bitcoinscoresby.com/wp-content/uploads/2024/10/bitcoinsoundofmusic.webp) |\n| :---: |\n| Not my most popular poster |\n\n[^7]: What's the deal with mountains and freedom? Have you ever noticed how mountain people are way more into freedom than the plains dwellers? There's got to be some kind of connection between rugged terrain and weak administrative states. I like mountains.\n\nBut the thing is: Frankenstein isn't reasonable, no matter how many words Shelley tried to stuff in his mouth; Frankenstein--the monster--is still here because he's scary. We don't want intelligence, we want titillation. Want big, pale hands, recently detached from a corpse, closing around some hapless sap's throat with invincible force. We want a monster.\n\nAnd Bitcoin is no different. It isn't here to be the plaything of freedom-loving mountain goats. What we need of Bitcoin is a money that is out of anyone's control. It doesn't have to be elegant, it just has to work. Bitcoin is a dirty beast that has been set loose. It's not safe, it's not reasonable, it's not familiar. We should let it run amok.\n\n| ![](https://bitcoinscoresby.com/wp-content/uploads/2024/10/bitcoinfrankenstein1931.webp) |\n| :---: |\n| Bitcoiners as the monster. |\n\n \N 4692 \N 436290 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 4.60706188252885 0 \N \N f 595327794 \N 6 230318163 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:11:20.193 f \N \N \N 0 0 0 0 2 0 0 445518 2025-03-20 15:57:52.543 2025-03-29 22:39:48.903 [meta] The ~fedimint territory is now switched over to ~ecash Following the discussions from [here](https://stacker.news/items/415180), it felt like ~fedimint was too niche and I've opened it up to all things ecash related, including cashu and fedimint.\n\nAs I've discussed in the original [Welcome to the Fedimint territory!](https://stacker.news/items/380065) post, I would welcome all discussions and resources around the topic. I see it as a great place to browse latest topics and post updates on different projects, repos, and apps. In addition to general questions and comments as well.\n\nI'm unsure of the longevity of this territory (or most territories in general) but I think there's enough active resources alone to aggregate here. If anything, enough to support wanting one myself and scratch my own itch.\n\nLet me know what you think about this switch and whether or not it would be a valuable territory to you. \N 13038 \N 445518 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 15.7001962639804 0 \N \N f 1235563012 \N 11 202574347 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435495 2025-03-12 18:27:48.84 2025-03-29 22:39:48.904 What dominating industries or systems will disappear by the year 2140? Bitcoin, AI, and the general wave of technological advancement are pushing us right into the next industrial revolution/enlightenment.\n\nAs all this new tech arrives, what industries/structures/systems will be replaced or done anyway with entirely?\n\nAs a Bitcoiner, I'd say **accounts**. \n\nAccounts in general. \n\nEmail/password logins for payments, bank accounts, investment accounts, etc... We'll outgrow this idea of needing third-party providers for financial operations.\n\nOn a Bitcoin standard, settlement lies in the message itself. Why would I need a bank?\n\nDon't argue "people will always want others to manage their money for them." That's fiat cope imo.\n\nNetflix made movies easy and accessible to everyone. Blockbuster couldn't keep up.\nBitcoin will do the same for money. Banks simply won't be able to keep up.\n\nThe UX will become so seamless, people will stop wanting the hassle of a bank.\n \N 20412 \N 435495 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 23.6281040031746 0 \N \N f 464639341 \N 3 91097056 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 15:10:23.26 f \N \N \N 0 0 0 0 3 0 0 444112 2025-03-19 17:12:27.408 2025-03-29 22:39:48.906 Epic halving sat bidding currently over 5 BTC \N https://www.coinex.com/en/halving-block-auction 1326 \N 444112 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 24.8657443692591 0 \N \N f 312768033 \N 2 46265905 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403898 2025-02-15 10:45:09.239 2025-03-29 22:39:48.906 What improvements would you like to see on Stacker News? Howdy Stackers!!\n\nAs they say 'nothing is perfect in the world.' While something may seem to be perfect or perfectly going, there's always some scope for improvements. SN is considerably quite young but seems so perfect! \n\nSo, why not, tell SN, what improvements would you like to see on Stackers News?\n\n\n\n \N 2718 \N 403898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.1796759827086 0 \N \N f 22089604 \N 1 118249623 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401381 2025-02-13 00:05:56.397 2025-03-29 22:39:52.451 \N ![](https://www.zapread.com/i/9QB) https://example.com/ 21501 401351 401351.401381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0498522032382 0 \N \N f 426162815 \N 4 89179169 0 f f \N \N \N \N 401351 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420944 2025-03-01 09:45:43.739 2025-03-29 22:39:52.451 \N But that view is irrelevant because code is law.\n\nSatoshis view on dormant Bitcoin was thus: \n\n"Lost coins only make everyone else's coins worth slightly more. Think of it as a donation to everyone." https://example.com/ 21712 420753 420620.420753.420944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.94305566414604 0 \N \N f 196701398 \N 4 123542706 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435622 2025-03-12 20:33:39.57 2025-03-29 22:39:52.452 \N You say this and i instantly think of magic the gathering lol https://example.com/ 4345 434602 434278.434503.434522.434598.434602.435622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2178283742955 0 \N \N f 2597560618 \N 20 185471963 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 13:51:58.153 f \N \N \N 0 0 0 0 3 0 0 437013 2025-03-14 07:18:42.785 2025-03-29 22:39:52.452 \N No, I'm not looking to get mugged. https://example.com/ 13398 436930 436823.436829.436900.436930.437013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0968397088336 0 \N \N f 306083520 \N 2 221580294 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 387267 2025-01-31 21:37:57.418 2025-03-29 22:39:48.907 I've Got A New Machine! First Pouch Sewn With It! ![](https://m.stacker.news/56594)\n\nThe machine is an absolute blast to work with (have been working through up to 10 Layers of 500D coated Cordura), although it was a nightmare to begin with- a beginner and an industrial machine aren't the best combination.🥲\n\nAnyways, I've made another little pouch, as I wasn't exactly sure about the measurements anymore, and guess what? They were off. \n\n![](https://m.stacker.news/56598)\n\n![](https://m.stacker.news/56596)\n\nI've fixed the measurements, and while I was at it, decided to experiment a little with this one: I've changed the flaps such that they are now *up-to* the zipper's teeth, instead of *on-to* them, added self-made "Webbing", stitched a cross into the Velcro, and added Cordura panels on the inside to hide the seams and make it look more finished as a whole.\n\nI really like the changes, and I think I'll keep them! \n\nThe seams - at least the long-ones connecting the individual panels together - aren't exactly how I'd like them yet, but that's more of an skill-issue then anything else, and besides: it's a tricky pouch to assemble, at least for me and the size it's currently at (small pouch, stiff corners, not very easy to put flat, not very much space for the foot).\n\nAnyways, I've dialed-in the measurements, used some leftover materials, experimented s bit and am left with a pretty neat and useable pouch, I'm happy. 😁\n\n![](https://m.stacker.news/56597)\n\n![](https://m.stacker.news/56601)\n\n![](https://m.stacker.news/56599) \N 644 \N 387267 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 0.602004681469239 0 \N \N f 202321133 \N 1 173592150 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 97522 2023-12-11 19:27:41.502 2025-03-29 22:39:52.441 \N I guess the project I am working on [(Clams)](https://github.com/clams-tech/browser-app) counts as a hobby project as it is not used at any real scale ATM, but I found that all of the CLN Rest API's are easy to use and are reliable. \nI also have found that the CLN team are all super responsive on their discord and are very generous with their time when I needed help with anything.\n\nI was previously building a project on LND and I think the docs are definitely better, and I had helpful and quick responses from their devs in their Slack as well. \n\nSo overall I would say that both implementations currently have a similar dev experience.\n\nI chose to build on CLN as I think they are prioritising better features (Bolt 12, Liquidity Ads, Bookkeeper) and I would like them to have a greater share of the network. Having 90% of the network using one implementation is not good for the network as a whole IMO. https://example.com/ 19527 97257 97257.97522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.08902474291918 0 \N \N f 368443769 \N 3 232856003 0 f f \N \N \N \N 97257 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434726 2025-03-12 07:36:21.388 2025-03-29 22:39:52.441 \N Breathing better. Going deep... https://example.com/ 16543 434697 434697.434726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2049197441062 0 \N \N f 7056800 \N 1 52791126 0 f f \N \N \N \N 434697 \N 0 0 \N \N f \N 2025-03-19 01:39:57.304 f \N \N \N 0 0 0 0 1 0 0 443290 2025-03-19 08:38:49.393 2025-03-29 22:39:52.441 \N SN works fantastically well with other lightning wallets/sites.\n\nIt has made me use lightning way more than before, and it just feels great.\n\nSN is like a new type of website, a lightning native one. https://example.com/ 762 443274 443274.443290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.7208316078918 0 \N \N f 143503486 \N 2 61068795 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436203 2025-03-13 11:36:16.172 2025-03-29 22:39:52.441 \N Once you've read it, I recommend rewriting it in your own words. That really locked it in for me. https://example.com/ 3439 436177 436177.436203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.33369877127131 0 \N \N f 502929295 \N 4 106891636 0 f f \N \N \N \N 436177 \N 0 0 \N \N f \N 2025-03-20 08:16:37.641 f \N \N \N 0 0 0 0 1 0 0 435436 2025-03-12 17:15:40.03 2025-03-29 22:39:52.441 \N ![](https://www.zapread.com/i/9BS) https://example.com/ 20222 435287 435154.435287.435436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1882080452627 0 \N \N f 96137426 \N 1 55871663 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 12:51:47.173 f \N \N \N 0 0 0 0 1 0 0 456574 2025-03-27 17:16:48.289 2025-03-29 22:39:52.452 \N ![20231120_135545.jpg](https://m.stacker.news/5345) https://example.com/ 21060 456570 456560.456570.456574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.35211605322304 0 \N \N f 232608316 \N 2 55435626 0 f f \N \N \N \N 456560 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447179 2025-03-21 17:04:23.523 2025-03-29 22:39:52.453 \N Great question and something I sometimes wonder myself. There are different factors to keeping Bitcoin from getting popular in Japan but the important ones in my opinion are:\n\n1. The Mt.Gox hack (2014) and the coincheck hack (2018) damaged its reputation and many people still have an image of Bitcoin being dangerous or insecure\n\n2. The tax rate for crypto is very high in Japan (max 55%)and it's discouraging general investors (stocks, FX, real estate etc) from buying Bitcoin\n\n3. Culturally, Japan is very conservative and we have a lot of trust in the government and banks in general. Because of that, many people are not fond of Bitcoin's anti-government or bank nature and they claim Bitcoin has no value. https://example.com/ 1064 447143 447143.447179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2467444514857 0 \N \N f 424147123 \N 4 68875520 0 f f \N \N \N \N 447143 \N 0 0 \N \N f \N 2025-03-28 10:22:04.788 f \N \N \N 0 0 0 0 2 0 0 444207 2025-03-19 18:11:16.996 2025-03-29 22:39:52.452 \N It stops me from doom scrolling on X. Plus SNL brings a comedic approach to bitcoin news. It’s not about fed rates or recycling the same ol guests that go on all the popular/influencer bitcoin podcasts. \n\nLastly I get to interact with bitcoiners. I get to zap sats which help kick start the circular economy share my ideas and opinions with other stackers and exit the fiat madness I find myself in every day. https://example.com/ 1620 444150 444114.444132.444143.444150.444207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5935895880677 0 \N \N f 1023191655 \N 7 168828372 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435564 2025-03-12 19:37:52.413 2025-03-29 22:39:48.907 Next Super Testnet Workshop: Nostr! The BTC Script workshop went awesome! I think it was at least 96% close to perfection 😍😍😍\n\nI also recorded it and you can purchase the video here for only $5: https://supertestnet.org/workshops.html?option=bitcoin_script\n\nAlso remember to sign up for next month's workshop, all about Nostr! https://supertestnet.org/workshops.html \N 17106 \N 435564 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.2061523796166 0 \N \N f 178487658 \N 1 119113215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:12:53.66 f \N \N \N 0 0 0 0 1 0 0 436191 2025-03-13 11:28:57.003 2025-03-29 22:39:48.907 Meet Fiatjaf: The Nostr Creator Who's Lured 18M Users And $5M from Jack Dorsey \N https://www.forbes.com/sites/digital-assets/2023/05/30/bitcoin-social-network-nostr-creator-fiatjaf-/?sh=6a35382c11c0 2492 \N 436191 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 25.5192232159275 0 \N \N f 55345714 \N 1 217393425 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:15:43.347 f \N \N \N 0 0 0 0 1 0 0 424299 2025-03-04 00:17:25.557 2025-03-29 22:39:52.441 \N For people I don't know, I go with my man Satoshi on this one:\n\n>"If you don't believe it or don't get it, I don't have the time to try to convince you, sorry."\n\nFor people I love, I just stack a few extra sats in their name so if I ever need to I can help them out. https://example.com/ 21373 424294 423928.424260.424266.424282.424285.424294.424299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.20166107201079 0 \N \N f 538754056 \N 3 212926624 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 445696 2025-03-20 17:30:33.873 2025-03-29 22:39:52.441 \N Happy piggy bank!\n![Happy piggy bank!](https://github.com/camillo777/memes/blob/main/bitcoin_pig.png?raw=true) https://example.com/ 20811 445518 445518.445696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0324149250622 0 \N \N f 1161224433 \N 10 74338579 0 f f \N \N \N \N 445518 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455564 2025-03-27 06:19:14.827 2025-03-29 22:39:52.441 \N Just an interesting anecdote. I used to drink 4 or more. Loved coffee. Didn’t want to give it up. But I did a 3 day water only fast. And after that, I didn’t really want coffee for the next few days. Then when I started again I could barely drink a whole cup. Now I’m just one cup in the morning. It’s very odd how quickly a 10 year habit evaporated. I had given up coffee before for a time and it was miserable and I just wanted to drink it again. But something with the fast rewired my brain. I wasn’t even doing it to give up coffee. I used to be a cool programmer, fueling code with coffee and deploying to production like a mad man. But, now I am just an old man, living at a moderate pace, writing code slowly until all my tests pass 😂 https://example.com/ 16594 455544 455544.455564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.63592597267967 0 \N \N f 178565034 \N 1 3689182 0 f f \N \N \N \N 455544 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447096 2025-03-21 16:09:15.999 2025-03-29 22:39:52.441 \N I am drawn to the challenge of selling/buying items here on SN. The process for the auctions is undoubtedly the most intricate, requiring continuous communication between the seller and multiple interested buyers. I am eager to see how this all idea will unfold or die. https://example.com/ 685 446942 446942.447096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1906078947149 0 \N \N f 198938070 \N 1 75483886 0 f f \N \N \N \N 446942 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415850 2025-02-25 07:35:27.825 2025-03-29 22:39:52.441 \N Onboarding for ekzyis.\n\nAnd I’ve mostly been thinking about how to get algos on nostr. The community seems happy with what they have and they don’t think algorithms only being worthwhile/available on megarelays is a centralization risk. \n\nThe approach worth taking might be to build a megarelay, expose algos as a NIP that potentially no one else supports, and then hope other relays adopt it. https://example.com/ 631 415637 415637.415850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6330227623863 0 \N \N f 51050475 \N 1 215378906 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436304 2025-03-13 13:06:45.754 2025-03-29 22:39:52.441 \N I agree, would be amazing to see Block supporting this project. https://example.com/ 7418 436243 436241.436243.436304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7708838926689 0 \N \N f 53114117 \N 1 90079756 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:52:51.871 f \N \N \N 0 0 0 0 1 0 0 424294 2025-03-04 00:09:39.636 2025-03-29 22:39:52.441 \N Graphene! https://example.com/ 5069 424285 423928.424260.424266.424282.424285.424294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.89837486115696 0 \N \N f 751680680 \N 4 187674582 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424236 2025-03-03 23:08:46.891 2025-03-29 22:39:52.441 \N outside of your own work, what is the most exciting thing in the lightning space you see on the horizon? https://example.com/ 15488 424233 394203.394251.400201.424131.424214.424233.424236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.940974501366 0 \N \N f 177852291 \N 2 127432751 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 421585 2025-03-01 19:04:11.227 2025-03-29 22:39:52.441 \N Boltz only supports trading between cryptocurrencies and networks that support a feature called atomic swaps. They are a bit difficult to wrap your head around at first when your only experience with bitcoin wallets is that they have buttons labeled Send and Receive, but in fact bitcoin can be sent "conditionally."\n\nThis means it is possible to send bitcoin to a special kind of address called a "script address" which does not "directly" belong to any wallet, but is controlled by a script, i.e. a little bit of code. And before sending money to this "script address" you can inspect it to see what it will do. For Boltz, they prepare a script address (you can examine it [here](https://github.com/BoltzExchange/boltz-core/blob/17098d0c7b3e9cb3cc6966adc3886eebd941b5bc/lib/swap/Scripts.ts#L43) on their github) where one of two things happens: 1. *you,* the sender, can take the money from this script address if you wait for about an hour (you cannot take the money before an hour due to something called a "timelock" which is a bit like postdating a check) or 2. your counterparty, the recipient, can take the money from this script address *without* waiting, but only if their transaction includes an extra piece of data -- sometimes called a "preimage" or a "secret" -- whose cryptographic hash is committed to in the script address.\n\nThe goal of this script address is to ensure that your counterparty has to disclose a secret if they want to take the money, and if they don't do it within an hour, you can take your money back. Typically you would only send money to this address if that secret is useful to you. E.g. if you are trading bitcoin for ethereum, which *also* supports script addresses, you could set up a similar script address where *you* can take the money from the *ethereum* address if *you* publish the secret, otherwise your counterparty gets *his* money back after a timelock.\n\nOnce you set up both contracts, your counterparty can send $100 worth of ethereum (for example) into the script address on ethereum, and then you can send $100 worth of bitcoin into the script address on bitcoin. That gives your counterparty 1 hour to take the money but only if he publishes the secret. If he does, you can use it to take the money from the ethereum address, thus completing the swap. If he does not, you get your money back on bitcoin (after an hour), and he gets his money back on ethereum (usually the second blockchain requires a slightly longer wait period, to avoid something called a "race condition"), thus canceling the swap.\n\nThat is how boltz prevents dishonest parties from cheating. If you want a visual explanation, I go into more detail in this video:\n\nhttps://youtu.be/UWhCoHV0ltc?si=fPv3hVHTu5UV2NGM https://example.com/ 19906 421567 421567.421585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6454929102914 0 \N \N f 441987701 \N 6 200844435 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 21747 2023-05-10 14:24:07.88 2025-03-29 22:39:52.442 \N Nodes definitely benefit from having a certain size. Smaller than 0.5BTC makes things hard.\n\nAs for whether it benefits "the community", it surely benefits a lot of people. It benefits the network because there are more routes for payments and more capital deployed. It benefits you because you learn more and interact with the LN in a sovereign way. It benefits those around you because, adding small softwares like LNbits, you can be the custodian of your family and friends LN wallets. Or help out merchants accept bitcoin.\n\nI started a node more than a year ago just for exploring. After all this time, I have routed a lot of bitcoin, I have set up lightning wallets for plenty of close friends and family, I have helped businesses accept lightning in their stores and I even run an ecommerce shop that accepts LN payments straight to my own node.\n\nIt's not always easy, and some days you might feel like throwing your node to the trash bin. Yet, I think that every ounce of effort you put in the node, will eventually come back to you as a 10 times larger reward. Have a long-term horizon. https://example.com/ 963 21729 21672.21728.21729.21747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4078744732138 0 \N \N f 144251409 \N 1 235696207 0 f f \N \N \N \N 21672 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410645 2025-02-20 15:28:17.42 2025-03-29 22:39:52.442 \N I'm currently reading this guy: https://www.amazon.com/dp/1421426978?psc=1&ref=ppx_yo2ov_dt_b_product_details https://example.com/ 2233 410638 410486.410569.410638.410645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7463514661085 0 \N \N f 39317012 \N 1 176979593 0 f f \N \N \N \N 410486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428368 2025-03-07 07:21:56.158 2025-03-29 22:39:52.442 \N Which means the rest was still transferred to a change output ;p https://example.com/ 17064 428292 428292.428368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.45241977380228 0 \N \N f 240384090 \N 2 129795432 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 424003 2025-03-03 19:15:36.194 2025-03-29 22:39:52.442 \N I think it is a matter of perspective. People who don't understand Bitcoin think they are being aggressive owning it but people that understand it know they are being conservative and see it as savings. \n\nAlso, I hate that they use the word crypto. https://example.com/ 20454 423990 423667.423689.423899.423956.423958.423971.423977.423990.424003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.36426129840785 0 \N \N f 1948653463 \N 17 91962689 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3687 2022-11-08 20:55:01.071 2025-03-29 22:39:52.442 \N excited to see what they’ve been working on, i’m feeling optimistic because of the track record their team has for delivering products that people use at a global scale.\n\ni guess we’ll find out more about what 🕳🥊 means on monday… holepunch? https://example.com/ 13361 3683 3674.3677.3679.3681.3682.3683.3687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5035121739783 0 \N \N f 247264497 \N 2 182525013 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 395348 2025-02-08 11:36:03.879 2025-03-29 22:39:48.908 I'm using Stacker News now more than ever. I heard quite a bit of negative comments when nostr first started, mostly concerning things like "SN is better" etc. Now, however, I am finding some deeper usage of SNb since I started using nostr frequently. I migrated my zap/tip addy for nostr from WoS to here and I'm about to replace my NIP-5 with a Stacker one.\n\nI think more integrations are on the way and it's going to leave Facebag, Twatter, InstaSad etc. in a flaming wreck to burn down all by themselves and I am here for it! \N 5597 \N 395348 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 28.5539817088477 0 \N \N f 238628654 \N 3 136415721 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433555 2025-03-11 08:00:46.411 2025-03-29 22:39:48.908 Note Screenshots https://primal.net/e/note19zp6lhg0g2zrycsepgv0k8cnfe0zqewqcpc2lvzrpu2a8an33n0qg5968k\n\nI don’t know if anybody posted this here yet, but this is RAD! Should be useful for putting note pics on stacker news. \N 1038 \N 433555 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 9.28464731727217 0 \N \N f 3290883363 \N 28 152080768 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 22:31:57.233 f \N \N \N 0 0 0 0 12 0 0 436596 2025-03-13 17:33:50.622 2025-03-29 22:39:48.908 Does society, by design, capitalize on labor? It's not certain how we lived before, but a story you could tell is that we all needed to work together in order to provide ourselves with the supplies and labor for day-to-day living. At some point, some efficiency was discovered or created that relieved some of the immediate need for labor. Efficiency became distributed and iterated across the group's needs. Those who were responsible for these efficiencies became those in charge, and those who could not provide such efficiencies probably still worked to some extent, but simply could not provide to the extent of those in charge. This may be thought of as the birth of social class. \n\nMany many years rolled on in this fictionalized retelling of the history of the human race in which we invented monarchies, slavery, academia, religion. Lots of things. What caught my eye in writing this was noticing that a lesser-told history regarding the invention of the hospital was to get beggars, those unemployed and idle, off the street and to employ them in more morally correct activity[^1]. \n\nThere are a lot of tangential "this might be possible" thoughts that arise from this perspective, including the possibility that a good work ethic as a moral is more of a muscle against the othering, ostracism and confinement inherent in the mechanics of society or civilization. To work means you belong.\n\n[^1]: Michel Foucault, *Madness and Civilization*. It is good to note that Foucault argues that getting those unemployed off the street was more of a moral imperative, as it was viewed they were *vagrants by choice*, and that the work they were given was seen as behaviorally corrective. It does not seem these people were paid for their work in these institutions, and the existence of their labor and more cheaply-priced goods negatively affected the local economies wherein people ran legitimate businesses. \N 663 \N 436596 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 13.9659444898522 0 \N \N f 99428265 \N 1 14814050 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:01:25.748 f \N \N \N 0 0 0 0 1 0 0 413908 2025-02-23 14:24:46.143 2025-03-29 22:39:48.908 Zap to Zero Day 11 # Zap to Zero Day 11\n\n_Do you sometimes wake up and think: "I really want to drink some Coca-Cola."? That's how sugar addiction must feel like._\n\n![8bmdby.jpg](https://m.stacker.news/11149)\n\n_(up to 1k sats to the person who can explain who or what Swim is or means in this context.)_\n\n---\n\n## [Satistics](https://stacker.news/satistics?inc=stacked,spent)\n\n| Date | Spent | Stacked (Rewards) | Posts | Comments | Rewarded |\n| --- | --- | --- | --- | --- | --- |\n| [2023-12-28](https://stacker.news/items/370188) | 13k | 8808 (n/a) | 2 | 35 | n/a |\n| [2023-12-29](https://stacker.news/items/371370) | 16.1k | 15.6k (5222) | 3 | 52 | ⚡ |\n| [2023-12-30](https://stacker.news/items/372534) | 10.8k | 9752 (7026) | 1 | 41 | ✍️ |\n| [2023-12-31](https://stacker.news/items/373620) | 20.5k | 17.9k (4379) | 5 | 61 | ⚡ |\n| **[2024-01-01](https://stacker.news/items/374881)** | 12.5k | 10.7k (7684) | 3 | 47 | ✍️ |\n| [2024-01-02](https://stacker.news/items/376287) | 16k | 19.5k (9353) | 6 | 36 | ✍️ |\n| [2024-01-03](https://stacker.news/items/377500) | 15.9k | 15.6k (6729) | 2 | 46 | ⚡ |\n| [2024-01-04](https://stacker.news/items/378870) |\t11.4k | 11.4k (~3954~ ~4093~ 4131) | 3 | 38 | ✍️ |\n| [2024-01-05](https://stacker.news/items/379663) |\t11.3k | 11.4k (~3954~ 4092) | 1 | 41 | ? |\n| [2024-01-06](https://stacker.news/items/379663) | 6691 | 6282 (~3665~ 3954) | 0 | 38 | ✍️ |\n| [2024-01-07]() | 8053 | 8503 (~1219~ 3665) | 3 | 20 | ✍️ |\n| 2024-01-08 | TBD | TBD (1219) | TBD | TBD | ⚡ |\n\n![2024-01-08-080933_609x441_scrot.png](https://m.stacker.news/11151)\n\n![2024-01-08-081230_727x359_scrot.png](https://m.stacker.news/11153)\n\n@Undisciplined raised a good question [yesterday](https://stacker.news/items/380082):\n\n> This series could serve as something like a how-to for new stackers. It's really shows what using the site well looks like.\n>\n> Btw, why did your zapping surge so dramatically for a few days and then drop back down?\n\nI only can speculate [like when bitcoin spot ETFs will be approved](https://stacker.news/items/379814):\n\n> Good question! Was asking myself the same. But I think it's related to low rewards the previous day and thus not having so much to spend the following day. I also wasn't as active the past days so also didn't got zapped so much during the day.\n\nHowever, I also mentioned that [I am confused about my rewards](https://stacker.news/items/380606):\n\n> But I just noticed that I might have made an error in my chart. I am still getting confused if I am counting the rewards towards the day on which I received the notification or for which day I earned them.\n> \n> But in the table, I am counting the rewards towards the day on which I received the notification. But the chart doesn't reflect that. It's low on days on which I spent a lot of sats and high when I didn't spend so many sats for some reason, lol\n\nSo I double-checked my table and noticed that there is an indeed error: from [Day 8](https://stacker.news/items/377500) to [Day 9](https://stacker.news/items/378870), I somehow have forgotten the rewards from 2023-01-05. And [Day 10](https://stacker.news/items/379663) was then the "double day" since I switched to writing the post early in the morning of the next day. Classic [off-by-one error](https://en.wikipedia.org/wiki/Off-by-one_error):\n\nhttps://i.imgur.com/gkxMf3F.jpeg\n\nI fixed that now. Don't ask me how long this took, lol.\n\n![2024-01-08-101357_921x280_scrot.png](https://m.stacker.news/11165)\n\nUpdated chart:\n\n![Figure_2.png](https://m.stacker.news/11166)\n\n@elvismercury also had multiple good questions [yesterday](https://stacker.news/items/379873):\n\n> Here's a double-meta question for you to entertain at your leisure:\n>\n> _What have you learned from doing a number of these deep and excellent posts; and what SN tools would help you do them better? How could those tools help the larger SN ecosystem?_\n>\n> I guess that was three questions, sorry.\n>\n> It strikes me that this is a really nice dogfooding example of using SN in a way that it's not totally friendly toward, but that is incredibly high value and interesting. I'm curious how this has stirred up your mind.\n\nThese questions were so good that I couldn't reply so far. He deserves a better answer than a low-effort reply written in a few minutes since I went to a birthday party in the afternoon yesterday. However, I will simply reply here now:\n\n**1. What have you learned from doing a number of these deep and excellent posts?**\n\nI learned that I still like writing very much. I also learned that I also want to kick myself in the balls (like @siggy47 for writing "Satasho Nakamoto" [yesterday](https://stacker.news/items/379193) [0]) for not starting this earlier. I already knew for so long that I like writing very much since I even wrote a lot while I was still in school. I still remember how a teacher in elementary school told me that this story about a fox is very good and it's _way_ longer than they expected us to write [1].\n\nI also learned that it's important (as I also kind of knew already) to just get started. You can improve later. This thing here started as a "game" and now it's helping me to get up early in the morning to not lose my streak. I can be a very competitive person, especially with myself. If I have well-defined goals that aren't too far-fetched, I can basically get myself to do anything (as probably everyone if they are being honest with themselves). My biggest problem is just to stay consistent since at some point, I kind of forget how much this consistency improved my life so far. Then I fall back to old bad habits and find out how bad it was, lol.\n\nSo I would say, "knowing something" versus "actually doing it" is still a big difference. It's like reading a ton about exercising but do you _actually_ know how exercising _feels_ if you've never done it? I would also say that I am pretty well aware of what my problems are _and_ what I have to do about them. But as a famous ASMRtist once said during [this ramble](https://youtu.be/l5NK8zdIK-g?si=ZyNSvcsrTz0bSnnS&t=1063):\n\n> I think almost everybody is tired, aren't they? Are you tired? I am tired.\n> \n> I don't know, maybe that's like the life secret: get enough sleep, drink water.\n>\n> **And I don't know why we don't do these things, that's the big mystery to me.**\n\nAnd I also learned that I still struggle with taking compliments like "deep and excellent posts" seriously. I think I have so big trust issues that I actually like it more when people are mean to me. That's when I feel like they are being honest for once, lol [2].\n\n_She also said a lot of other inspiring stuff in there. I hope this quote inspired you to watch the full video even if you don't get [ASMR](https://en.wikipedia.org/wiki/ASMR)._\n\n**2. What SN tools would help you do them better?**\n\nI guess I evaded that question with my previous answer by providing all kind of answers that all actually have nothing to do with writing this stuff _on SN_, lol\n\nBut what I can say is that switching between "write" and "preview" can be annoying. I use it to check markdown formatting and if I uploaded the correct images. Especially scrolling all the way up to click the button and then scrolling all the way down (and clicking on "view more") can be exhausting. I think I basically learned how to rely on my markdown formatting reading skills [like Cypher reads the Matrix](https://www.youtube.com/watch?v=MvEXkd3O2ow).\n\nBeing able to [search for something on SN using inline text commands](https://github.com/stackernews/stacker.news/issues/542) (like on Github) or a keyboard shortcut would also be very nice. But for this to be useful, we have to improve our search itself first, for example with [this](https://github.com/stackernews/stacker.news/issues/688).\n\nI can also think of more formatting options like collapsible sections (for spoilers or just long sections) or image positioning to be useful.\n\n**3. How could those tools help the larger SN ecosystem?**\n\nI think with more writing features, we could attract more long-content creators. More people using SN as their blog, more people writing SN exclusives etc.\n\nI also think that stackers like original content with a lot of PoW in it the most which is basically what long-content creators produce.\n\nThere might be more to it but that's all I came up with so far.\n\n---\n\n## Recent Superzaps\n\n_I am no longer needlessly limiting myself to stuff from yesterday. I can use this series to just promote any content I like - no matter if old or new. So with "recent" I indeed don't mean that the content was created recently. I mean that my (super)zaps were done recently._\n\n\n### 1. [Bitcoin Stack Exchange: Should we more proactively act against bad questions?](https://stacker.news/items/379891)\n\n@Murch posted [this link](https://bitcoin.meta.stackexchange.com/q/1198/5406) to the question in the title on the [Bitcoin](https://bitcoin.stackexchange.com/) [(Meta)](https://bitcoin.meta.stackexchange.com/) [StackExchange](https://bitcoin.stackexchange.com/). @Murch is a prolific contributor there and I am glad that he linked this question on SN since it was an interesting read.\n\nIn essence, the inquirer mentioned that they are concerned that valuable information might be harder to find for a visitor if there are too many poor questions and answers and that this might create a negative feedback loop:\n\n> I'm concerned valuable information is harder to find for a visitor and good contributions are not put forward as much as they would deserve compared to the rest of the content. I think this may create a negative feedback loop: if what's put forward to new visitors is lower quality content, they are less inclined to start contributing good questions and answers. The same goes for keeping active contributors interested. To be honest, the state of the landing page is sometimes quite depressing.\n\n@Murch had some good answers to that which I am not going to mention here since this post isn't meant to replace reading the posts that I link to, lol.\n\n### 2. [Bitcoin Learning Resources](https://stacker.news/items/378892)\n\n@siggy47, the founder of ~bitcoin_beginners, was inspired by @davidw's incredible [Privacy Directory](https://stacker.news/items/342249) (why no link though?) to have no mercy with [freebies](https://stacker.news/recent/freebies) and lead them further down the bitcoin rabbit hole. Kicking and screaming will probably only make it worse.\n\nThere were some books in there that I didn't know about yet so I might have to reconsider that I am no longer a bitcoin beginner. Would make sense since [I was a freebie not long ago, too](https://stacker.news/items/354443).\n\n### 3. [Should "stackers" be capitalized?"](https://stacker.news/items/379179)\n\n@elvismercury asked a question to share his pain with us. He can never decide if he should use "Stackers" or "stackers".\n\nI have to admit that [I never asked myself this question](https://stacker.news/items/379277) until this post was created:\n\n> I never thought about this. I just used "stackers" like "people" or "users" so always lowercase.\n>\n> But now I do. Thanks.\n>\n> _you are now breathing manually_\n\n![8bmygd.jpg](https://m.stacker.news/11175)\n\n### 4. [What's the most extreme thing you've done outdoors, or tried to?](https://stacker.news/items/380062)\n\n@Fabs asked us a simple question but the answers indeed did blow my mind in several kind of ways.\n\nFor example, @Turnspit_Dog shared with us [here](https://stacker.news/items/380085) (without doxxing themselves) that he teaches rich people how to live like poor people and makes them pay for it:\n\n> Without doxxing myself, I've demonstrated all my skills for a worldwide TV audience numerous times.\n>\n> I've taught and consulted on various preparedness and survival topics for most of my life. I've even lived off the grid in a few disaster events for weeks on end.\n>\n> I jokingly tell all my friends that I teach rich people how to live like poor people, and they pay me for it.\n\n@Fabs wanted to know more and kept asking questions which @Turnspit_Dog more or less willingly answered, much to my amusement and piquing my interest.\n\n---\n\n## Challenge of the Day\n\nDrink enough water. Get enough sleep. Don't consume too much sugar - whatever that means for you.\n\n---\n\n## [Song of the Day](https://stacker.news/items/380619)\n\nhttps://www.youtube.com/watch?v=3eoRqXDXW8k\n\n> You left the topic, you wish that I quit\nDeep down you know that you'll never be me\nYou're wasting your time, you're wasting your energy\nYou say I'm everything you despise, everything you don't like\nOpen my eyes to see yours fixated on mine\n\n_[Slaves renamed themselves to Rain City Drive in 2021:](https://en.wikipedia.org/wiki/Rain_City_Drive)_\n\n> On October 15, 2021, the band announced a change in name to Rain City and secured an agreement with the independent record label Thriller Records. This transition culminated in the formal adoption of the name Rain City Drive. In 2022, Rain City Drive and the reformed Slaves, featuring Jonny Craig, emerged as distinct entities.\n\n_As a stacker once put it nicely:_\n\n> What a terrible name LMAO I can see why they changed it ahahahah\n\n---\n\nThe temporary end. See you on the front page!\n\n---\n\n[0] _Okay, it wasn't yesterday but it was too funny to not include it here. Well done @siggy47! You made multiple days of mine._\n\n[1] _If anyone knows, it was a story about the ["Findefuchs"](https://www.medimops.de/irina-korschunow-the-foundling-fox-how-the-little-fox-got-a-mother-erstes-englisch-leicht-gemacht-taschenbuch-M03423709642.html). We should write a (short) sequel. [Guess I already liked foxes when I was in elementary school](https://stacker.news/items/364589)._\n\n[2] _I know that's not a good thing and I should work on that but as I mentioned, I know this and I (think I) know how to work on that and I already worked on it since it has already gotten a lot better. I just still get this feeling sometimes. So much, that I often forget to say "Thank you @elvismercury, I appreciate your feedback, taking the time to write it and especially your questions since you motivated me to look up this old but gold ASMR ramble! I might even write a post once about all the good stuff she said in there."_\n\n \N 9356 \N 413908 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.9195682980442 0 \N \N f 172553091 \N 1 177540893 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414722 2025-02-24 08:54:53.827 2025-03-29 22:39:52.442 \N I find it really depends on the individual. I know people who can just jump into a project / task without a plan and able to complete it very well. I also know people who can't even begin to work without planning out every little detail.\n\nPersonally, I like to have an idea / an outline of the project and try to divide it up into smaller tasks that I complete according to dependencies and according to urgency. At the same time, I always keep in mind that things don't go according to plan most of the time, and will change my plan / adapt along the way, according to the current situation.\n\nI find that having a plan that is simple, straight forward, and easy to communicate is especially important when working with other people. Other people cannot read our minds, at least not yet, so it's better to have a plan that can be communicated to others such that others know what you will do and what to expect. As misunderstandings and arguments usually arise from miscommunication and difference in expectations. https://example.com/ 15060 414711 414711.414722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2200579457925 0 \N \N f 652180704 \N 4 152759264 0 f f \N \N \N \N 414711 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458294 2025-03-29 07:13:34.021 2025-03-29 22:39:52.442 \N Presumably since the algorithm is open source one can derive the game theoretic optimal strategies for zapping and find all the Nash equilibria https://example.com/ 20137 458276 458227.458241.458248.458276.458294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5793922273593 0 \N \N f 707742646 \N 8 192675027 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407380 2025-02-17 23:35:03.122 2025-03-29 22:39:52.442 \N I also really enjoyed Citizen of the Galaxy, Heinlein is a good writer. It's been years since I read it, but I just skimmed through a synopsis and a lot of it comes right back.\n\nI can't come up with a favorite unfortunately, but I'll list a few close to the top of my list. A few Heinlein books to start off!\n- The Moon is a Harsh Mistress - Robert Heinlein\n- Starship Troopers - Robert Heinlein\n- Dark Matter - Blake Crouch - This is one of my favorites. Highly recommend if you haven't read it yet.\n- Dune/Dune Messiah - Frank Herbert - I really enjoyed the first two books, but kind of lost interest later in the series.\n- Daemon - Daniel Suarez - Really interesting book. The sequel, Freedom, is also good.\n- Altered Carbon - Richard K. Morgan\n- The War of the Worlds - H. G. Wells\n\nThere are a lot more that I like, but I have to stop somewhere! https://example.com/ 17209 406399 406399.407380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7907266391346 0 \N \N f 1105265905 \N 9 103265947 0 f f \N \N \N \N 406399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438065 2025-03-15 08:01:10.702 2025-03-29 22:39:48.909 3-2-1 Exit Card for SN: Feb 2024 As a teacher, I sometimes use the 3-2-1 Exit Card to get students to review the key concepts before I end the lesson. 3-2-1 usually refers to 3 things I learnt, 2 things I found interesting and 1 question I have.\n\nToday, I stumbled upon [James Clear’s emailer](https://jamesclear.com/3-2-1/february-15-2024). He is using his version of the 3-2-1 template to engage his readers. \n\nI thought this sounds like fun. It will become an invaluable repository of insights if we all chip in together.\n\n**3 things I learnt from SN in Feb**\n\n[1. How to embed link within text](https://stacker.news/items/446201)\n\n[2. Benefits of taking cold showers](https://stacker.news/items/444408)\n\n[3. The science of why you have great ideas in the shower](https://stacker.news/items/410311)\n\n**2 things I found interesting**\n\n[1. Spamming Stacker News this March is as bad as shitcoining, and you’ll pay for it](https://stacker.news/items/445245) - loved how he puts together references from all over the place, makes for an interesting n juxtaposed read\n\n[2. The data to help you become a better Stacker](https://stacker.news/items/441843) - now I know I must engage in discussions on Mondays and Fridays!\n\n**1 question I have**\n\nTrue to my overzealous nature, I have 2!\n\n1. What is no fap?\n\n2. What is hyperbitcoinisation? \N 17050 \N 438065 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 14.3865521681131 0 \N \N f 290356107 \N 3 132337734 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401516 2025-02-13 05:18:56.727 2025-03-29 22:39:48.909 The Early Days of Linux \N https://lwn.net/SubscriberLink/928581/841b747332791ac4/ 15463 \N 401516 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 21.2137176889503 0 \N \N f 1117086878 \N 9 243711528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 434277 2025-03-11 18:31:07.2 2025-03-29 22:39:48.91 Stacker Sports completes its first trip around the Sun **Stacker Sports completes its first trip around the Sun**\n\nThat's right stackers it has been exactly one year since territories launched. \n\nWhat a fun first year of posts, comments, content, contests and a bit of trash talk. I am looking forward to the next year and beyond. I am grateful to be part of such a great community of stackers. \n\nOn the podcast a few episodes ago I compared the territory to a dive bar where our regulars keep us going and some big, notable events draw in a broader audience. I wanted to take a moment to shout out some of our "regulars" (21 to be exact) who are routinely participating in the territory whether through posts, comments or joining pools/contests. I know I am tagging a lot of people here but bear with me because I want to say a well deserved thanks. \n\nFirst off I want to thank and shout out the stackers who have taken it upon themselves to use the territory as a way to run their own contests/pools/leagues: \n\n@Undisciplined (Basketball pools, hosting the podcast, multiple regular series posts)\n@Coinsreporter (Cricket Pools and posts)\n@Carresan (UEFA pools and posts) \n@Public_N_M_E (NFL Fantasy football league and posts) \n@BlokchainB (Team analysis/betting posts/Finding new and fun ways to give away his sats) \n\nAnd also a huge thanks to the rest of our "regulars" that post, comment, participate in contests and make the territory what it has become (which is apparently profitable- at least for one month) \n\n@siggy47 @StillStackinAfterAllTheseYears @Cje95 @realBitcoinDog @suraz @gnilma @Roll @Turdinthepunchbowl @BTC_Bellzer @TNStacker @Wumbo @IamSINGLE @HardMoney @WeAreAllSatoshi @needcreations_ @TheMorningStar\n\nThanks again everyone. Looking forward to another great year. \n\nSats for all,\nGR \N 848 \N 434277 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.26207931224968 0 \N \N f 69400680 \N 2 200076452 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:11.495 f \N \N \N 0 0 0 0 1 0 0 434317 2025-03-11 19:34:32.588 2025-03-29 22:39:48.911 Fun Fact Friday - Best Fun Fact Gets 10,000 Sats Let's hear all your best fun facts, any topic counts!\n\nThe best comment as voted by the "top" filter at 9am CT tomorrow gets 10,000 sats.\n\nBonus sats for including a source link to your fun fact!\n\nIf you missed our last edition, [here](https://stacker.news/items/495100) are lots of fun facts stackers shared.\n\nSend your best 👇 \N 6382 \N 434317 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 25.9005689257125 0 \N \N f 1060137010 \N 12 145640983 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:06.048 f \N \N \N 0 0 0 0 3 0 0 423254 2025-03-03 06:57:07.807 2025-03-29 22:39:52.442 \N If you still need to save time, try eating cereal while driving to work. https://example.com/ 1352 423240 422056.423240.423254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1613451543388 0 \N \N f 194849797 \N 1 76052455 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435131 2025-03-12 13:41:00.6 2025-03-29 22:39:52.442 \N Search has a cost. It is either that the user is paying for it, or someone, a complete stranger, advertiser, is paying for your searches. The latter is very creepy and wrong on many levels if you want a healthy functioning society. \n\nSo yes, I think more and more people will realize the value and importance of information we put in our heads, like we care about food we put into our body. High quality search engines like Kagi make people more productive and more competitive in the world as witnessed by tens of thousands of customers already paying for Kagi today.\n\n https://example.com/ 10007 435122 435046.435122.435131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2694272238783 0 \N \N f 307426167 \N 2 197636256 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 12:29:39.635 f \N \N \N 0 0 0 0 1 0 0 423419 2025-03-03 11:02:08.267 2025-03-29 22:39:52.442 \N ![](https://m.stacker.news/62180) https://example.com/ 18178 423124 423124.423419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.243316121648 0 \N \N f 35236664 \N 1 156763234 0 f f \N \N \N \N 423124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416971 2025-02-26 00:24:19.415 2025-03-29 22:39:52.442 \N >where can I live that doesn’t require a car for basic living needs?\n\nbuy a horse, use it to grow your own food.\nCities are for zombies.\nI would not go back to a big city,. not even dead. https://example.com/ 696 416722 416722.416971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2328788650292 0 \N \N f 80867873 \N 1 58430344 0 f f \N \N \N \N 416722 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 228078 2024-09-05 12:14:42.082 2025-03-29 22:39:48.911 The weirdest way I'm earning Bitcoin... ... is by selling 1 joke for 1 sat via [Orange Mart](https://www.orangem.art/)! What's your funniest or weirdest ways of stacking?\n\n\n![1000005315.jpg](https://m.stacker.news/4345) \N 19198 \N 228078 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 12.2199345282607 0 \N \N f 17789776 \N 1 101041833 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 419944 2025-02-28 11:27:35.665 2025-03-29 22:39:48.911 Bitcoin Myths Demystified 2 ## 1 - Bitcoins are worthless because they're based on unproven cryptography\n\nSHA-256 and [ECDSA](https://en.bitcoin.it/wiki/Elliptic_Curve_Digital_Signature_Algorithm "Elliptic Curve Digital Signature Algorithm") which are used in Bitcoin are well-known industry standard algorithms. SHA-256 is endorsed and used by the US Government and is standardized (FIPS180-3 Secure Hash Standard). If you believe that these algorithms are untrustworthy then you should not trust Bitcoin, credit card transactions or any type of electronic bank transfer. Bitcoin has a sound basis in well understood cryptography.\n\n## 2 - Early adopters are unfairly rewarded\n\nEarly adopters are rewarded for taking the higher risk with their time and money. The capital invested in bitcoin at each stage of its life invigorated the community and helped the currency to reach subsequent milestones. Arguing that early adopters do not deserve to profit from this is akin to saying that early investors in a company, or people who buy stock at a company IPO (Initial Public Offering), are unfairly rewarded.\n\nThis argument also depends on bitcoin early adopters using bitcoins to store rather than transfer value. The daily trade on the exchanges (as of Jan 2012) indicates that smaller transactions are becoming the norm, indicating trade rather than investment. In more pragmatic terms, "fairness" is an arbitrary concept that is improbable to be agreed upon by a large population. Establishing "fairness" is no goal of Bitcoin, as this would be impossible.\n\nLooking forwards, considering the amount of publicity bitcoin received as of April 2013, there can be no reasonable grounds for complaint for people who did not invest at that time, and then see the value (possibly) rising drastically higher.\n\nBy starting to mine or acquire bitcoins today, you too can become an early adopter.\n\n## 3 - 21 million coins isn't enough; doesn't scale\n\nOne Bitcoin is divisible down to eight decimal places. There are really 2,099,999,997,690,000 (just over 2 quadrillion) maximum possible atomic units in the bitcoin system.\n\nThe value of "1 BTC" represents 100,000,000 of these. In other words, each bitcoin is divisible by up to 108.\n\nAs the value of the unit of 1 BTC grew too large to be useful for day to day transactions, people started dealing in smaller [units](https://en.bitcoin.it/wiki/Units "Units"), such as milli-bitcoins (mBTC) or micro-bitcoins (μBTC).\n\n## 4 - Bitcoins are stored in wallet files, just copy the wallet file to get more coins!\n\nNo, your wallet contains your secret keys, giving you the rights to spend your bitcoins. Think of it like having bank details stored in a file. If you give your bank details (or bitcoin wallet) to someone else, that doesn't double the amount of money in your account. You can spend your money or they can spend your money, but not both.\n\n## 5 - Lost coins can't be replaced and this is bad\n\nBitcoins are divisible to 0.00000001, so there being fewer bitcoins remaining is not a problem for the currency itself. If you lose your coins, indirectly all other coins are worth more due to the reduced supply. Consider it a donation to all other bitcoin users.\n\nA related question is: Why don't we have a mechanism to replace lost coins? The answer is that it is impossible to distinguish between a 'lost' coin and one that is simply sitting unused in someone's wallet. And for amounts that are provably destroyed or lost, there is no census that this is a bad thing and something that should be re-circulated.\n\n## 6 - It's a giant Ponzi scheme\n\nIn a [Ponzi Scheme](http://en.wikipedia.org/wiki/Ponzi_scheme "wikipedia:Ponzi scheme"), the founders persuade investors that they’ll profit. Bitcoin does not make such a guarantee. There is no central entity, just individuals building an economy.\n\nA Ponzi scheme is a zero sum game. In a Ponzi scheme, early adopters can only profit at the expense of late adopters, and the late adopters always lose. Bitcoin can have a win-win outcome. Earlier adopters profit from the rise in value as Bitcoin becomes better understood and in turn demanded by the public at large. All adopters benefit from the usefulness of a reliable and widely-accepted decentralized peer-to-peer currency.[[4]](https://en.bitcoin.it/wiki/Myths#cite_note-Jeff_Tucker-4)\n\nIt is also important to note that [Satoshi Nakamoto](https://en.bitcoin.it/wiki/Satoshi_Nakamoto "Satoshi Nakamoto"), creator of bitcoin, has never spent a bitcoin (other than giving them away when they were worthless) which we can verify by checking the blockchain.\n\n## 7 - Finite coins plus lost coins means deflationary spiral\n\nAs deflationary forces may apply, economic factors such as hoarding are offset by human factors that may lessen the chances that a [Deflationary spiral](https://en.bitcoin.it/wiki/Deflationary_spiral "Deflationary spiral") will occur.\n\n## 8 - Bitcoin can't work because there is no way to control inflation\n\nInflation is simply a rise of prices over time, which is generally the result of the devaluing of a currency. This is a function of supply and demand. Given the fact that the supply of bitcoins is fixed at a certain amount, unlike fiat money, the only way for inflation to get out of control is for demand to disappear. Temporary inflation is possible with a rapid adoption of Fractional Reserve Banking but will stabilize once a substantial number of the 21 million "hard" bitcoins are stored as reserves by banks.\n\nGiven the fact that Bitcoin is a distributed system of currency, if demand were to decrease to almost nothing, the currency would be doomed anyway.\n\nThe key point here is that Bitcoin as a currency can't be inflated by any single person or entity, like a government, as there's no way to increase supply past a certain amount.\n\nIndeed, the most likely scenario, as Bitcoin becomes more popular and demand increases, is for the currency to increase in value, or deflate, until demand stabilizes.\n\n## 9 - The Bitcoin community consists of anarchist/conspiracy theorist/gold standard 'weenies'\n\nThe members of the community vary in their ideological stances. While it may have been started by ideological enthusiasts, Bitcoin now speaks to a large number of regular pragmatic folks, who simply see its potential for reducing the costs and friction of global e-commerce.\n\n## 10 - Anyone with enough computing power can take over the network\n\nThis is true: see [Weaknesses#Attacker has a lot of computing power](https://en.bitcoin.it/wiki/Weaknesses#Attacker_has_a_lot_of_computing_power "Weaknesses").\n\nThat said, as the network grows, it becomes harder and harder for a single entity to do so. Already the Bitcoin network's computing power is quite ahead of the world's fastest supercomputers, together.\n\nWhat an attacker can do once the network is taken over is quite limited. Under no circumstances could an attacker create counterfeit coins, fake transactions, or take anybody else's money. An attacker's capabilities are limited to taking back their own money that they very recently spent, and preventing other people's transactions from receiving confirmations. Such an attack would be very costly in resources, and for such meager benefits there is little rational economic incentive to do such a thing.\n\nFurthermore, this attack scenario would only be feasible for as long as it was actively underway. As soon as the attack stopped, the network would resume normal operation.\n\n \N 10690 \N 419944 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 12.1996344644478 0 \N \N f 288656070 \N 2 196433859 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446726 2025-03-21 12:42:07.687 2025-03-29 22:39:48.911 Web of Trust thoughts Lately I've happily heard more chatter on #nostr about "Web of Trust." In case anyone is unaware, a Web of Trust is essentially a reputation score. In my mind, it'd be a number, say 0 to 100, that would be displayed aside one's Nostr avatar. The number would signal to others your "Nostr rep" in a glance. \n\n![Web of Trust](https://files.peakd.com/file/peakd-hive/crrdlx/23wr5rQJ5N1FF1usyMreZMC2JSqrbPhhMN2KgzaeU1qiZFjGUauNdABpGRX1CW2dhG6jM.png)\n\nThat sounds a little creepy at first - it sounds like a "social credit system" that would only amplify an echo chamber, and maybe it is in a way - but I think it has a place and purpose on something like Nostr.\n\nIn online arenas, reputation is critical. Anyone who's dealt with the coding space quickly learns that your reputation matters a ton. Try asking a question on Stack Overflow as a newbie and, unless you've flatly shown you've really done some legwork in preparation for the question, get ready to get slapped down quickly and soundly. Your lack-of-reputation precedes you. For anyone who's established something of a good reputation in an online space, maintaining that rep is huge. I've frequently seen prominent people or even anonymous "nyms" write something like, "There's no way I'd do or say or support that. My reputation is far more valuable than me shilling [fill in the blank]." It's the same in places where the digital world meets the real world. We all care about our reputations in places like Uber or Airbnb.\n\nAs I understand, the way that a Web of Trust (WoT) works is essentially as a "thumbs up" or "thumbs down" system. Now, this up or down needn't be an actual up/down button on screen. In fact, we already have a Web of Trust. It's called good old fashioned, gettin' to know folks. When a well-known Nostrian posts a note and we see a ton of reactions from others, we're pretty sure that it came from the user that we think it came from. This is simply "building your brand" and establishing one's self, just as we do in our offline, face-to-face lives. Good reputations at work matter, as do bad ones.\n\nIn an online arena, though, it's possible to also actually have that up/down button. (Can you imagine having that in real life too?!) A Nostrich posts a note, another Nostrich wants to affirm it or shake their finger at it. Clicking up or down would either strengthen or weaken the poster's reputation. \n\nAn important note comes to mind here...\n\nClicking a "WoT button" is not liking or disliking a note. This is not agreeing or disagreeing. This up/down WoT button would say either, "Yes, this is legit and reputable." Or, no, "This is not good. It might be an imposter, a scammer, or way out of bounds for the community and just not cool." In this way, if any Web of Trust button were to be employed by Nostr clients, I'd hope they would be clearly distinct from likes or agrees...visually, verbally, etc. to denote, "This impacts the user's WoT score." I'll admit, there is nuance here. Because we are humans, liking/disliking someone's note is difficult to divorce from supporting or disapproving of their reputation. Yet, we should try.\n\nTo properly use a WoT button, I might grossly disagree with someone's note, but I could still respect their opinion maybe because it was well thought out, supported, or well-written. In this way, I might give them a thumbs up for WoT score, despite my disagreement. I see this as the type of thing that gives strength to open systems, like open source software or open source anything.\n\nAs an example, I've written frequently using the Hive blockchain as a blog backbone which employs a "reputation" score calculated by upvotes/downvotes. The formula essentially is:\n\n- Someone else's good rep score helps you with an upvote. And, the higher their rep, the more it helps.\n- Someone else's good rep score hurts you with a downvote. That is, if their rep score is higher than yours, then your score goes down.\n- Someone else's bad rep doesn't affect you with any vote. They have a bad rep and they're just ignored.\n\nThe system is summed in this scratched out flow chart:\n\n![Reputation or Web of Trust flow chart idea](https://files.peakd.com/file/peakd-hive/crrdlx/23twA2WUDx3cB6ePsQ3UqkukxxNpiHHShqGy3CZF9UnsBviJQ7LxwgDaUobSHD5kXT7em.png)\n\nThis system is not perfect! I've seen people get started, do some bad things and quickly get downvoted into the negatives, and quickly have their reputation throttled. Sometimes this is over scammery, more often it's over plagiarism. When they wake up to the situation, they typically ask, "What can I do now!" The only answer is, "Start to slowly rebuild your reputation. That, or, you're rekt. Get a new set of keys and just start over altogether." \n\nIsn't that exactly what we do in real life when we've screwed up and made a fool of ourselves? Isn't that what we do when we've said or done ignoramus things and feel that deep, sad sense of hopelessness brought on by jackass behavior? \n\nAt that point, the only thing there is to do is to just slowly press on, methodically, one day at a time, and do better. Things will slowly change. That, or we move to an entirely different locale where no one knows us and we start all over again.\n\nDespite the Hive system being far from perfect, it gives an idea of how a Nostr WoT system might work and maybe an maybe offers an idea of some building blocks.\n\nWays a WoT score could be a good thing:\n- Nostriches can quickly "**get a feel**" for another user at a glance.\n- Cuts down on **plagiarism**. It's too easy to copy/paste another's work and post it without credit. It's too easy to post AI generated content as one's own.\n- Cuts down on **scammery**. It's easy to use someone else's username as your own and pretend to be a better-known Nostrich. Yes, it's easy to check this, but also, yes, many are fooled.\n- It promotes **good behavior**, ideas, and value added. Conversely, it disincentivizes bad-actions.\n- **Bad actors** are quickly identified as such.\n- **Others?**\n\nWays a WoT score could be a bad thing: \n- **Echoing echo chambers.** Psych 101 teaches us about the self-fulfilling bias and the availability heuristic. We accept what we like and buttresses us and push away what we don't like. We take to heart what is easily accessible (what's echoed) and we ignore what's hard to access (because we likely never even see it). This echo chamber effect is commonplace in Bitcoin and cryptocurrency. Case in point...I just wrote "cryptocurrency" and many here immediately went, "Blah! I'm out!" This reaction occurred because you've been told, "It's Bitcoin, not cryptocurrency!" I understand the disdain for other coins. Still, I'd suggest two things: (1) Check your hubris, stay humble. You're not always right. And (2), it's okay to think for yourself; don't apologize for doing so. \n- **Others?**\n\nPersonally, I would love to see such a system implemented on Nostr. I'd love to see a NIP. And, I'd love to see clients pick it up and implement a visible score alongside avatars. If it happens, there will be growing pains. There will be barking complaints. But, I think it would serve more good than bad in this nascent Nostr.\n\nAnd, oh, if you're thinking to yourself, "This is just some altcoiner trying to slide other coins into the Bitcoin space!", I'd say this: "I'm a Bitcoiner." I've been "in Bitcoin" a long time and I absolutely believe in it. Absolutely. Check my BitcoinTalk profile, it's bare, but my start there is timestamped. https://bitcointalk.org/index.php?action=profile;u=61129\n\nStay purple. 💜 Stay orange. 🧡\n \N 20280 \N 446726 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2852176131092 0 \N \N f 57929703 \N 1 24875073 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404543 2025-02-16 00:42:04.606 2025-03-29 22:39:52.442 \N Great question, my dream is that it ends up providing a similar lightning wallet experience that everyone knows and loves while still protecting the privacy of the user as much as I can. There's a delicate balance I think between allowing the user complete insights and control vs making sure they can't screw up and not needing to worry about all the privacy tradeoffs on Lightning. \n\nThere's a cool concept we're wanting to experiment with Mutiny too where we inform the user of certain edge cases and teach them about what they should do or allow them to proceed anyways.I hope we can educate and allow the user to know their own threat models to proceed accordingly while hopefully still providing a simple send/receive UX. https://github.com/BitcoinDevShop/pln/issues/30 https://example.com/ 4345 404541 402188.402197.404541.404543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.961833777133 0 \N \N f 66424482 \N 1 237777474 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414274 2025-02-23 19:20:45.994 2025-03-29 22:39:52.442 \N Got my offline cash today. \n\nThe notes are heavy! Pretty and dominated in 1, 2, 5, and 10 miliBitcoin (1 millibitcoin = 100,000 sats). \n\nCan’t load sats yet because the iOS app isn’t approved. \n\nOverall I think this is a cool concept simple form factor people can understand and you can pass on value in areas with no internet or use for tipping! Can’t see this being used to buy goods and services yet due to lack of change but I’m excited to try and tip Someone with this! https://example.com/ 762 410710 410710.414274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2073625191318 0 \N \N f 80782533 \N 1 240802287 0 f f \N \N \N \N 410710 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443934 2025-03-19 15:29:05.517 2025-03-29 22:39:52.442 \N Hope we can get a fruitful discussion started from the contrarian viewpoint! Here's the high level concerns and questions:\n\n### 1. Incentives \n### 2. Security\n### 3. Scale\n\n*The points below are assuming the NOSTR use case to be an alternative to Twitter as stated in the "About" section on Github https://github.com/nostr-protocol/nostr \n\n>About\n>a truly censorship-resistant alternative to Twitter that has a chance of working\n\n### 1. Incentives\n\n1. In the long run what incentive does a relay operator have to host a public relay (to achieve a twitter like global feed)? \n2. How will the relay operator cover the hosting costs? Assume, not all users are on a lightning standard. How will a normie use this system? \n3. How can we achieve a network effects if most current twitter users are not on lightning?\n4. What happens when your relay is shut down for routing illicit content, even if its encrypted en route thru the relay, its still public from the decrypted client. (kiddy porn, etc...)? Not a great end user experience if you need to play a game of "whack a mole" and keep changing relays when they get shut down or ddos'd.\n\n### 2. Security\n\n1. How do you prevent XSS attacks for browser clients? Can we even have secure browser clients? \n - See this attack on Anigma (Telegram clone) funds were lost https://github.com/brilliancebitcoin/nostrgram#warning\n > Warning\n > Due to my incompetence, anigma has security vulnerabilities that allow remote siphoning of your private key. I haven't fixed them yet. Don't use anigma with\n > a private key you're not okay with leaking.\n2. Do you feel comfortable having raw data coming into your phone/web browser via web sockets from random ppl on the internet without having a server virus scan it first? Lots of potential zero day exploits to come in the near future.\n3. If you argue the Alby chrome extensions can help, how many users are capable of running a browser extension, could the extension be dos'd? If a virus routes thru a websocket and dos's your session could they prompt you pay in an endless loop, rendering the browser client unusable (not sure if this is possible or rate limited but worth research)? \n\n\n### 3. Scale\n\n1. How to achieve a global algorithmic feed like twitter? \n2. Will this lead to an emergence of indexing services?\n3. Take the scenerio of an indexing service emerging. Assume the service indexes and aggregates data from multiple relays into a better data structure for global feeds, such as a graph data structure. This could be useful to get info about a "friend of a friends" interest in a topic, such as "Dogs". (vertex => edges). The indexing services might reap all the benefit from the client apps (ad model, paid algorithmic feed) . Would the raw data relaying service get jealous and start censoring the indexer?\n4. What incentive does the relay have to feed data to an indexer, while they are going broke on hosting costs?\n5. If you argue relays will start indexing data then won't it just be a traditional client/server/database model? \n\n\n### The unhappy path\n\nIf you fast forward a few months/years could this be the reality we end up with:\n\n- The relays will end up being cartels and blacklist users/indexers.\n- The relays runners will run out of money because it costs alot to host and prevent spam\n- Once kiddy porn starts flowing thru nobody will want to run relays and the gov start shutting down relays like a game of whack a mole\n- Clients might need to connect to 100 relays to get relevent data. This might render a client app slow and buggy. Would this drain the battery?\n\n\n### Alternative Case studies\n- XMPP\n- Tim Berners Lee Solid Inrupt Project\n- The original Blockstack 1.0 stuff, *2017 era pre shitcoin stuff\n- All the stuff csuwildcat is doing \n https://example.com/ 20788 443836 443836.443934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5834042309381 0 \N \N f 265150052 \N 2 157289709 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 354472 2025-01-03 05:50:04.022 2025-03-29 22:39:52.442 \N Nice. \n\nActually sent this to Super a couple days ago and I joked with ek today, telling him “ekrollups” would be his version of zkrollups. 🤣 https://example.com/ 1469 354465 353322.354465.354472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74332320020653 0 \N \N f 245502765 \N 1 195704086 0 f f \N \N \N \N 353322 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435718 2025-03-12 22:35:39.824 2025-03-29 22:39:52.442 \N The really disgusting thing about the regional bank crisis is that the media always portray it as a consolidation process. But it is nothing more than an asset transfer to the big fed banks. https://example.com/ 3461 435488 435488.435718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6203137092607 0 \N \N f 115862451 \N 1 120059376 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 00:19:13.836 f \N \N \N 0 0 0 0 1 0 0 407625 2025-02-18 08:58:16.203 2025-03-29 22:39:52.442 \N > Rejecting both the traditional left-wing and right-wing parties, FMLN and ARENA respectively, and looking forward to the 2019 presidential election, he formed his own party, Nuevas Ideas (New Ideas).\n>\n> Leading up to the 2019 presidential election, Bukele was already polling higher than any of the other potential presidential candidates. The old parties, FMLN and ARENA, teamed up to block his participation in the election. The Supreme Electoral Tribunal — the nation’s highest election authority — ruled that, despite meeting the conditions to register in time for the next election, Nuevas Ideas would not be allowed to compete in elections until after the presidential election was concluded. In order to run for President, Bukele had to run as the candidate of another party. The centre-left Cambio Democratico (Democratic Change) party was the most logical choice, as Bukele had ran for mayor as the FMLN candidate but in alliance with Cambio Democratico. But on the evening of July 25th, 2018, just hours before the deadline for candidates to register themselves for the election, the Supreme Electoral Tribunal secretly met and decided to cancel Cambio Democratico’s eligibility to participate in the election. They also decided to wait until the next day to announce it, when it would be too late for Bukele to change his party affiliation. Bukele got wind of the secret meeting and what was being plotted around 9 or 10 pm. He immediately and secretly withdrew his affiliation with Cambio Democratico, and with less than an hour to go before the midnight deadline, he officially affiliated himself with GANA, a small centre-right party.\n\nPretty awesome sub-story. It's kind of weird that people are more than willing to conspire under the thinest veil of plausible deniability, yet won't conspire when it's removed. It's like a child protecting itself from monsters by hiding under a blanket.\n\n> The operations to reclaim the barrios had put the gang members in a defensive posture. For months, the homicide rate had been extraordinarily low as gang members were forced into hiding. But on March 26th 2022, the gangs went on a killing spree, targeting street vendors, bus passengers, and grocery shoppers. It was El Salvador’s bloodiest day since the civil war. The gangs intended to send a message to the government. \n\n> The reaction by the government was swift and resolute. In the early hours the next day, the National Assembly passed a state of emergency and a state of exception. The gangs had treated the public as hostages, now the president began treating their imprisoned homeboys similarly. Meal rations were cut, mattresses and clothes were taken away, the inmates now wore only underwear and slept on concrete. The President vowed that if there were any more waves of gang violence that the imprisoned gang members would not be fed “a single grain of rice.”\n\nI want to share more of it, but I'd just recommend reading it all. There's no mention of Bitcoin at all, but it tells a favorable portrait of Bukele, which I won't believe the face of, yet I did learn more about Bukele's tenure and El Salvador from this article than I had in any other (if only because it was written well). https://example.com/ 19484 407619 407619.407625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49778887816066 0 \N \N f 312312150 \N 2 223102665 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435040 2025-03-12 12:22:01.707 2025-03-29 22:39:52.442 \N ![20240122_001238.jpg](https://m.stacker.news/13303) https://example.com/ 1585 435018 435018.435040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2781949446018 0 \N \N f 78083055 \N 1 119403830 0 f f \N \N \N \N 435018 \N 0 0 \N \N f \N 2025-03-19 06:43:11.093 f \N \N \N 0 0 0 0 1 0 0 97530 2023-12-11 19:37:00.728 2025-03-29 22:39:52.442 \N Like Egan a lot, but I LOVE Watts. The Rifters trilogy is one of the most mind-blowing things ever ("confused, but in a good way" is a prefect summary). https://example.com/ 8059 97526 97257.97522.97526.97530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.83195569439927 0 \N \N f 131372437 \N 1 70654945 0 f f \N \N \N \N 97257 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1604 2022-09-20 05:58:21.825 2025-03-29 22:39:52.443 \N No, not an ad at all.\n\nIt's important that people realize how dangerous dice rolls are, and that the main reason for potentially doing them (compromised RNG) is easy to prevent by using multiple RNG sources from different manufacturers, plus an additional open-source RNG source.\n\nFor the vast, vast majority of threat models dice rolls provide no real-world security and introduce massive risk of loss. https://example.com/ 15488 1571 1565.1571.1604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6501838655459 0 \N \N f 213924824 \N 2 26024446 0 f f \N \N \N \N 1565 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458243 2025-03-29 06:16:48.232 2025-03-29 22:39:52.443 \N Living in different time zones makes it difficult to join the calls but I would definitely listen to them of they were recorded. https://example.com/ 6335 458242 458122.458134.458211.458237.458242.458243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.96961377522585 0 \N \N f 432132664 \N 2 65995826 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427359 2025-03-06 10:57:34.2 2025-03-29 22:39:52.443 \N We're planning to try to do some kind of hybrid thing like this. I'm unsure of the details, but we'll at the very least host a read-only relay of SN content. https://example.com/ 2719 427042 426635.427042.427359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.172234536367 0 \N \N f 98851106 \N 2 214015633 0 f f \N \N \N \N 426635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402931 2025-02-14 09:12:48.87 2025-03-29 22:39:52.444 \N DM me on nostr if you need any help:\nnpub16x07c4qz05yhqe2gy2q2u9ax359d2lc0tsh6wn3y70dmk8nv2j2s96s89d\n\nI would be interested to see what your problem is, haha https://example.com/ 21332 402904 402904.402931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6834662082973 0 \N \N f 287655431 \N 2 156112872 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417903 2025-02-26 17:15:03.99 2025-03-29 22:39:52.444 \N Thank you for sharing on a vulnerable topic. I think a lot of us rely on social media (including SN) for community and it would serve us all to treat each other as human beings behind the screen. I don’t know many adults who feel confident bullying in person the way they do at their keyboards. \n\nI was a pretty quiet kid and managed to avoid being bullied pretty well. I did join in on some and it was to people I considered a friend. But it was an easy thing to join in on and feel good doing at the time. That is something I regret to this day https://example.com/ 5761 417840 417840.417903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8213036656992 0 \N \N f 116073496 \N 2 219050399 0 f f \N \N \N \N 417840 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435381 2025-03-12 16:34:59.426 2025-03-29 22:39:52.444 \N just trying this site out for the first time... not a great first impression https://example.com/ 11220 435242 435242.435381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.41606229109189 0 \N \N f 245622114 \N 1 244740825 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 2025-03-19 09:52:38.745 f \N \N \N 0 0 0 0 1 0 0 304442 2024-11-22 13:03:53.473 2025-03-29 22:39:48.91 What the heck is CatVM? This is exactly what I was looking for, the diff of it with BitVM. It boils down to the `OP_CAT` upgrade enabling unilateral withdrawals though some [cryptographic magic](https://www.wpsoftware.net/andrew/blog/cat-and-schnorr-tricks-i.html) and verifying merkle tree branches by conCATenating the branch's nodes and hashing them.\n\n> Someone(s) has to be trusted, and by the nature of things capable of spending the UTXO however and wherever they want, to efficiently replace an old state root with a new one to represent all off-chain balance changes. A new opcode in addition to OP_CAT, such as OP_ZKVERIFY, would be needed to do this in a trustless manner.\n> \n> This wouldn’t be the end of the world without OP_ZKVERIFY though. The entity updating the merkle root for off-chain transfers could be an n-of-n multisig, with 100% of the participants required to sign off on any root changes. This boils down to the same trust model as BitVM based pegs, where as long as a single honest participant exists, no one's funds can be stolen. It is a stark improvement over existing BitVM designs however when it comes to the withdrawal process.\n> \n> In BitVM pegs, users do not have a unilateral withdrawal mechanism. Peg operators must be trusted to fulfill user withdrawals, knowing that they can claim back funds they have spent doing so relatively trustlessly from the BitVM peg. While the incentives of this are very solid, it still does require users essentially getting permission from someone else to exit the system, they cannot do it on their own. With CatVM, users can claim back their funds unilaterally, and an operator is not required to front their own liquidity to process withdrawals. https://bitcoinmagazine.com/technical/what-the-heck-is-catvm 19842 \N 304442 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.8350063918259 0 \N \N f 68121748 \N 1 141416815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434278 2025-03-11 18:33:02.012 2025-03-29 22:39:48.911 A very nice ETF info tracker [dashboard] ![Screenshot 2024-01-31 at 10.28.50 AM.png](https://m.stacker.news/14435)\n\nFor funzies, and entertainingly-related, I found this following list from an article on some trash website called officechai: \n\nApple Inc. – $167 Billion Cash Reserves\n\nApple, the tech giant known for its iconic iPhones, iPads, and MacBooks, boasts an impressive cash reserve of $167 billion. This substantial financial cushion stems from its diverse revenue streams, including the sale of hardware such as smartphones and computers, digital services like the App Store and Apple Music, and subscription-based offerings like Apple TV+. As a result, Apple has become one of the world’s most valuable companies, allowing it to accumulate vast cash reserves.\n\nAlphabet Inc. (Google) – $118 Billion Cash Reserves\n\nGoogle’s parent company, Alphabet, sits comfortably with a cash reserve of $118 billion. The bulk of its revenue arises from its dominant position in the online advertising space through platforms like Google Search and YouTube. Additionally, Alphabet’s expansion into cloud computing, hardware products like Pixel smartphones, and moonshot projects contribute significantly to its financial might.\n\nMicrosoft Corporation – $111 Billion Cash Reserves\n\nMicrosoft, a pioneer in software and computing, maintains a cash reserve of $111 billion. The company’s diversified portfolio encompasses Windows operating systems, Office productivity software, Azure cloud services, and hardware devices like the Surface line. This broad range of offerings has allowed Microsoft to maintain a robust financial position.\n\nSamsung Electronics Co. – $83 Billion Cash Reserves\n\nSamsung, a global leader in electronics, possesses cash reserves totaling $83 billion. The company derives its revenue from various sectors, including consumer electronics, semiconductors, and information technology. Its popular smartphones, high-quality televisions, and memory chips contribute significantly to its financial stability.\n\nAmazon.com Inc. – $64 Billion Cash Reserves\n\nE-commerce behemoth Amazon boasts a cash reserve of $64 billion. Its primary source of income is its expansive online marketplace, where customers can purchase a vast array of products. Additionally, Amazon Web Services (AWS), the company’s cloud computing division, has emerged as a major revenue generator, contributing to its substantial cash reserves.\n\nMeta Platforms, Inc. (Formerly Facebook) – $53 Billion Cash Reserves\n\nMeta, the company behind social media giant Facebook, holds cash reserves totaling $53 billion. Its revenue mainly comes from advertising across its platforms, including Facebook, Instagram, and WhatsApp. The company’s ability to engage billions of users globally has translated into substantial financial strength.\n\nIntel Corporation – $30 Billion Cash Reserves\n\nIntel, a leading semiconductor manufacturer, maintains a cash reserve of $30 billion. The company’s processors power a wide range of devices, from personal computers to data centers. Despite facing increased competition, Intel’s technological expertise and market presence contribute to its substantial financial reserves.\n\nTesla, Inc. – $23 Billion Cash Reserves\n\nTesla, a trailblazer in the electric vehicle and renewable energy sectors, holds cash reserves totaling $23 billion. The company’s revenue primarily stems from the sale of electric cars and energy products like solar panels and batteries. Tesla’s innovative approach to transportation and sustainability has propelled its financial success.\n\nIBM (International Business Machines Corporation) – $15 Billion Cash Reserves\n\nIBM, a technology and consulting company, possesses a cash reserve of $15 billion. Its revenue streams include hardware, software, and services, with a focus on enterprise solutions and cloud computing. IBM’s decades of experience and strategic offerings contribute to its financial stability.\n\nOracle Corporation – $10 Billion Cash Reserves\n\nOracle, a leading provider of database management systems and enterprise software, holds cash reserves amounting to $10 billion. The company generates revenue through the sale of software licenses, cloud services, and hardware products. Oracle’s presence in critical business infrastructure contributes to its substantial cash reserves.\n\nNetflix, Inc. – $9 Billion Cash Reserves\n\nNetflix, a prominent player in the streaming entertainment industry, maintains a cash reserve of $9 billion. The company’s revenue primarily comes from subscriptions to its vast library of movies, TV shows, and original content. Netflix’s innovative content creation and global subscriber base contribute to its financial strength.\n\nAdobe Inc. – $7 Billion Cash Reserves\n\nAdobe, renowned for its creative software solutions, possesses a cash reserve of $7 billion. The company’s revenue derives from software licenses, subscription services like Adobe Creative Cloud, and enterprise solutions. Adobe’s tools are widely used by creative professionals and businesses, contributing to its financial stability.\n\nUber Technologies, Inc. – $6 Billion Cash Reserves\n\nUber, a pioneer in the ride-sharing and food delivery industries, holds cash reserves totaling $6 billion. The company generates revenue by connecting riders with drivers through its platform, as well as delivering food through Uber Eats. Uber’s innovative approach to transportation and food delivery has led to its financial success.\n\n https://dune.com/hildobby/btc-etfs 9242 \N 434278 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.23164065066096 0 \N \N f 11081168411 \N 98 22396382 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:04:00.661 f \N \N \N 0 0 0 0 19 0 0 410615 2025-02-20 15:13:28.587 2025-03-29 22:39:48.911 Charlie Munger passes away at 99 - Berkshire Hathaway Inc. News Release Rest in peace Charlie! Wish you saw the Bitcoin light! https://www.businesswire.com/news/home/20231128291373/en/Berkshire-Hathaway-Inc.-News-Release 18601 \N 410615 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.7266672615009 0 \N \N f 263320349 \N 2 61445437 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417848 2025-02-26 16:23:39.639 2025-03-29 22:39:48.911 Mars colonies are claiming bitcoin independence (short story) This writing is inspired by the @lunaticoin [meta-podcast](https://youtu.be/qR3umsxt1NE?si=kQE7LbTIjG5BHRT8)\n\n``` \n{\nYEAR: N/A,\nFROM: EARTH, ISO 3166-1 alpha-2\nTO: MARS, US space station, Elysium Planitia\n}\n```\n\nWe are quite advanced, and I am currently traveling to the Moon base to make my transfer to go to the Mars colony, where I will live for a good while. Since I retired, I'm not sure what to do with my bitcoins, and as most of the millionaires who bought their tickets in advance have gone bankrupt due to the episode we all call *The Great Fracture*[^1], several plots of land have become available, and I have bought at a ridiculous price.\n\nThe reason for the purchase? I simply wanted to come and live here. Many do so because they are dreaming of doing space mining in the next decade and use this planet as their personal storage. I will head to *Valles Marineris*, where there are some humans currently living and building very interesting things.\n\n![](https://m.stacker.news/64886)\n\nI have established communication with these people; most of them are complaining a lot about the centralization of mining in the hands of the Earthlings, who take advantage of the communication delay between Earth and Mars to always mine in advance.\n\nA few years ago, someone presented the proposal for L4 integration in BIP21311009, which allowed creating an autonomous timestamp on Mars to then integrate it with Earth, correcting the communication deficiencies between Earth and Mars. But this did not please the Earthlings, who accused us of wanting to centralize and create a new wave of shitcoins, which makes no sense; we simply want to use Bitcoin but also take advantage of the solar power we have here to continue generating satoshis.\n\nI have met with the Mars Congregation, who are tired of what they call the *Mining Injustice*[^2] and ask the Bitcoin community to be a currency worthy of the Kardashev scale, depending on the realm they are in. It is true that Earth and Mars, at certain times each year, are closer and favorable for trade; each day, the separatist sentiment is becoming stronger.\n\nIf any **readers have comments about this new era** of space and economic exploration, I will read your responses.\n\n[^1]: The Great Fracture occurred between 2042 and 2050, when the economies that did not adopt Bitcoin were gradually destroyed by their own consumption power. There are quite a few academic writings that to this day try to blame the currency itself for the fall of the American Empire (so to speak), but today those of us who took refuge in Bitcoin are leading the economic and judicial reconstruction of Earth and wish to expand our knowledge to Mars.\n\n[^2]: Mining Injustice is the episode that is currently occurring. According to the Mars Congregation, the Earthlings have maintained mining centralization, and the nodes (full and partial) installed on Mars, which suffer a time variation, have not managed to reach their own consensus. We'll see how it continues. \N 2232 \N 417848 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 10.8965499466148 0 \N \N f 1106702139 \N 6 5704113 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 403552 2025-02-14 23:45:54.381 2025-03-29 22:39:48.911 Why Hasn’t Anyone Made a Durable Phone? Phones are basically a must-have device for most people, and their replacement cycle is every few years (i don’t know if i’ve ever used a phone for more than 5 years).\n\nI was wondering today why nobody has tried making a phone that will last for decades in the same way some cars last for decades.\n\nWhat is the constraint on making phones that last multiple decades - or even a lifetime?\n\nFor the sake of this question, let’s assume the phone doesn’t need to have automatic software updates, the latest tech specs, or even a camera. it just has to work for calls, text, and ideally browsing the web.\n\n- Is it possible to build a phone that can last a lifetime? \n- If you were to try, how would you approach this challenge?\n- What aspect of a phone is the most fragile/prone to breaking? \N 5759 \N 403552 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 7.73471641441215 0 \N \N f 14197068 \N 1 205377012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433594 2025-03-11 08:51:40.312 2025-03-29 22:39:48.912 Testing Out MiniBits Ecash App for SN > Minibits is an eCash wallet with a focus on performance and usability. Cash is issued by mints and backed by Bitcoin via the Cashu protocol and Lightning Network.\n\n\nI've been testing [MiniBits](https://www.minibits.cash) off and on for a while. Today I decided to switch over to it for Stacker.news. You can add the mint of your choice. I've tried CoinOS and MiniBits so far. \n\nIts only available on Android for now but it seems like a viable option for SN. NWC and the Lightning address work for me. \n\nAnyone else tried this setup with success?\n\nEdit: Please be careful though. I only keeps small amounts in these types of wallets. I think they are fine for stuff like SN but your milage may vary. \N 9355 \N 433594 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 23.2638924511949 0 \N \N f 252241371 \N 2 102515626 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451219 2025-03-24 12:55:35.691 2025-03-29 22:39:52.445 \N People asked for it. I think the idea is that you want to connect to home/office private nodes, and not cloud nodes that are typically clearnet and possibly part of a larger organization. https://example.com/ 18441 451169 450805.451169.451219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5966212897683 0 \N \N f 383129822 \N 2 236210121 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443236 2025-03-19 07:41:12.958 2025-03-29 22:39:52.445 \N I went to bed early because I had to wake up early today, but my friend took this from his balcony last night at around midnight. Pic taken from Vancouver BC.\n\n![](https://m.stacker.news/30455) https://example.com/ 20439 443187 443187.443236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2566174211395 0 \N \N f 32701668 \N 1 20499818 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444173 2025-03-19 17:52:01.574 2025-03-29 22:39:48.911 SN Saloon If you do not post at least 1 post in the daily SN Saloon you are a pussy sats grabber!\n\nAny SN stacker MUST post at least one thing every fucking day in the SN Saloon.\n- a funny meme - can get at least 21 sats\n- a good quote can make your day and also get some sats\n- a good advice about what you eat, shit, do can get you some sats too\n- please do not post anymore those "x day of doing x shit". Nobody is paying attention to that crap of how many days you eat crap.\n- post something that can help other. All the sats from SN Saloon goes to SN rewards, that means back to YOU! FFS you still do not get it?\n\nSaloon is to spark more discussions and ideas. Later you can make a post in any territory about what you discussed in the Saloon....\nLOL Saloon is really underrated.\nPeople really do not pay attention about how SN works LOL \N 3990 \N 444173 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 21.6104306164107 0 \N \N f 210497815 \N 2 231583855 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 415391 2025-02-24 19:00:43.204 2025-03-29 22:39:52.446 \N I did not, am in the southern hemisphere for now. But my younger sister sent some cool photos from Estonia\n![](https://m.stacker.news/30439)\n![](https://m.stacker.news/30440)\nAnd I just came across this very impressive photo on my nostr feed:\nhttps://njump.me/nevent1qqszcm03qh0wxwnvh4jjwh6w7kzfv9fwl5cmlwulpnc9x73652x47ngzyz3erxwvkhkf9vwdq3al8hr73y37memf6xjue3ra27v39u84e0dtg4ax7e8 https://example.com/ 4802 415321 409934.415321.415391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1260104992598 0 \N \N f 210740595 \N 2 219741885 0 f f \N \N \N \N 409934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402991 2025-02-14 10:30:26.009 2025-03-29 22:39:52.446 \N V4V is a tough nut to crack. Everyone wants return on investment, you want value back so you give value, the problem is the value you get in return is so small it doesn't come close to helping foot the bill. \n\nEcon I believe managed to reach profitability. But the posting fees are like 1500sats per post. I don't think I can justify 1500 per post in ~Music. That's far higher than the "normal" posting fees from before territorys existed. If, to make a territory self sustainable you require 150x what was considered the "normal" posting fees, that whole model needs looking at.\n\n Posting content is low in my territory but engagement is high in comments. If I were able to adjust the comments/reply fees I think I could make my way to sustainability as a territory. Replies are 1sat per post. But to post a discussion or something is the only adjustable fee, people are chatting away and engaging with each other for 1sat per comment, but very few posts get posted, the ability to make the comment/reply fees adjustable might really help. Perhaps that's something for @k00b and the Devs to consider implementing? \n\nIt was mentioned before by another user but territory owners might benefit from being able to post/comment in their territory for free, but I think that idea got shot down when it was raised.\n\nAll in all, if you want to be a founder of a territory you just have to accept that this isn't going to fund itself, 1 territory out of 50 something, with even more archived that have fallen at the hurdles, being self sustainable? That's not going to work, especially if the way to self sustainability is to have fees 150x greater than what was considered "normal" posting fees. \n\nTLDR be prepared to bleed sats for something you're passionate about, don't get into this for the money, there isn't any 🤣 https://example.com/ 5306 402980 402871.402896.402903.402980.402991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.42257957766397 0 \N \N f 475130777 \N 3 134029583 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403039 2025-02-14 11:43:39.454 2025-03-29 22:39:52.446 \N 0 sat SN wallet experience: \n\nThe auto withdrawal is flawless. But the zapping needs work. Maybe I should switch to NWC for a better zapping experience https://example.com/ 2528 403030 402871.403021.403030.403039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.58296382516408 0 \N \N f 376216529 \N 2 46658602 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433034 2025-03-10 19:00:29.979 2025-03-29 22:39:52.446 \N Most artists distribute their music just about everywhere so I don't see that particular issue being the main challenge. I think the issue for larger, more established artists is that they are doing just fine in the system that exists today and probably see no need or benefit from using an alternative. https://example.com/ 18449 433032 432920.432980.432992.433032.433034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.911337908608161 0 \N \N f 647580184 \N 4 95620843 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403609 2025-02-15 01:33:08.781 2025-03-29 22:39:48.911 3 great experiences that I probably won't repeat 🔁 🚫 \n\nHi, I'd like to comment on $$3$$ experiences I've had during my career that I probably won't repeat 🔁 during my life \n\n**I invite you to also comment on some experiences that you consider unrepeatable, they can be 1, 2 or more, they may or may not be related to Bitcoin**\n\n*I now consider these experiences unrepeatable for various reasons or causes, whether they are specific moments, changing financial circumstances, or simply because I no longer see the world from the same perspective that I used to see it a few years ago.*\n\n*Here are my 3 unrepeatable experiences* \n\n**1. Sailing in a small boat next to a pod of more than 30 or 40 dolphins, being almost close enough to touch them.**\n\n**2. Taking a 3-day trip, crossing half the country just to resolve a sentimental situation (it took 1 day and a half to get to the site, two hours in the place solving or trying to solve the matter, and then immediately 1 day and a half more to return to the place where I lived)**\n\n**3. Migrating to another country with only $120 in my pocket and a plane ticket that cost me $30**\n\n>Extra Fact: Seeing the shit of ETH at $100 during 2020 and Bitcoin below 10k obviously in those days I didn't know every aspect of Bitcoin. They told me to buy that, but my ignorance and fear didn't let me.\n\nI hope to read about those extraordinary experiences that you have lived and that possibly won't be repeated in this capricious life. \n\nAs I wrote this post, I realized that I need to detail those $$3$$ *Experiences* so I'll leave that for a future post, for now I'll dedicate myself to reading the great anecdotes that the Stackers can share in this post. \n\nThanks for reading\nStay Humble and Awake.\n💪🤠⚡🍊 \N 13365 \N 403609 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.7934733194877 0 \N \N f 197689382 \N 1 154875889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410251 2025-02-20 11:48:40.436 2025-03-29 22:39:48.911 96 day hat streak... and it's gone. \n\nDammit. \n\nTime to start anew. \N 18601 \N 410251 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.6737055745986 0 \N \N f 287183287 \N 2 140417285 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430674 2025-03-09 11:46:43.909 2025-03-29 22:39:52.442 \N I even tried Shazam, but it thought it was Beethoven 😂 https://example.com/ 20291 430670 430607.430617.430641.430670.430674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.88776240758892 0 \N \N f 449454126 \N 3 187327375 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448471 2025-03-22 16:10:30.432 2025-03-29 22:39:52.442 \N It seems to me that they will "gold back" this currency on paper, leading to strengthening against other Fiat ponzis. But then, of course, no "free citizen" of either country would be allowed to redeem their cash for gold, and leave the borders of the nation state. Best of both worlds for the autocrats of these nations. Gold has one too many fatal flaws. https://example.com/ 13921 448203 448092.448203.448471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5192264275634 0 \N \N f 124572827 \N 1 76477454 0 f f \N \N \N \N 448092 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 188390 2024-06-23 10:59:38.197 2025-03-29 22:39:52.447 \N Most people under authoritarian regimes immediately grasp the power of a currency that is not controlled by a government.\n\nOf course, they are very curious: how is it beyond the control of the state? What gives it value? Why is it volatile? How do I get some?\n\nThe onboarding process takes time, months or years, and demands patience and an open mind :) https://example.com/ 844 188387 188308.188380.188387.188390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6559295286313 0 \N \N f 312154067 \N 5 73010534 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449984 2025-03-23 16:56:00.368 2025-03-29 22:39:52.447 \N I never thought very much about "bank the unbanked", generally thought it meant good sentiment -- just "bank" them on bitcoin instead, but this makes it clearer that hey, let's skip the banks altogether https://example.com/ 11760 449186 449186.449984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.67028622165705 0 \N \N f 374442295 \N 2 58095853 0 f f \N \N \N \N 449186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423971 2025-03-03 18:42:45.855 2025-03-29 22:39:52.447 \N Do you think any of these ideas could help counter this trend:\n\n- white listing: only open channels with counter parties you can trust not to share balances\n- black listing: compile a list of known balance sharing nodes and develop open source tools to automatically blacklist them in routing, peering, and channel creation\n- Taint balance history databases with intentionally bad data\n- Modify routing algorithms to split payments more aggressively and route through more nodes\n- Augment the protocol with some kind of payment batching / net settlement protocol https://example.com/ 16747 423958 423667.423689.423899.423956.423958.423971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0624721364627 0 \N \N f 2373752543 \N 20 219974376 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422309 2025-03-02 11:25:46.184 2025-03-29 22:39:52.442 \N what are b00ks? https://example.com/ 15521 422222 420918.422222.422309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3278991337797 0 \N \N f 201880298 \N 1 64351556 0 f f \N \N \N \N 420918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441285 2025-03-17 22:11:29.92 2025-03-29 22:39:52.442 \N Salvaging peoples Google Ads accounts because they tied them to an old analytics account that Google has now depreciated so their ads are underperforming and google is loving it running up peoples spends\n\nEnjoying watching stubborn clients burn their revenue because they didn't want to pay me to fix it in the first place, nature is healing https://example.com/ 1136 441195 440984.441073.441195.441285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.79659889578781 0 \N \N f 37232793 \N 1 55649297 0 f f \N \N \N \N 440984 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435445 2025-03-12 17:24:49.894 2025-03-29 22:39:52.442 \N Would it be possible to block @ad and decline that part of the reward? https://example.com/ 681 435132 435046.435132.435445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.316609784913 0 \N \N f 144340739 \N 1 223027401 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 10:43:14.667 f \N \N \N 0 0 0 0 1 0 0 435663 2025-03-12 21:19:30.519 2025-03-29 22:39:52.443 \N Rebasing my SN PRs and also trying to figure out why PWA notification badges don't seem to be working in production >:| https://example.com/ 21393 435610 435610.435663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.559816401108 0 \N \N f 77675802 \N 1 150823440 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 2025-03-20 04:27:23.896 f \N \N \N 0 0 0 0 1 0 0 450430 2025-03-24 00:00:53.048 2025-03-29 22:39:52.443 \N I thought all birds evolved from dinos. But I have no clue. I just post the facts the kiddo gives me. I am factless, he is factful. \n\nI actually woke him up today to get the fact to post. I thought he was up doing his school work but apparently he wasn't feeling well so my wife told him to sleep in. I barged into his room and said "I need a fun fact to win us some sats". Haha https://example.com/ 20965 450330 450330.450430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5911342266441 0 \N \N f 81242143 \N 1 199012239 0 f f \N \N \N \N 450330 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447661 2025-03-22 01:58:52.372 2025-03-29 22:39:52.444 \N you make a lot of good points, as a matter of fact...\n\nno in all seriousness though, i think that is a solid steel man argument. you mentioned everything i could think of, and a few things i'd never even considered. https://example.com/ 777 447186 446513.447049.447084.447186.447661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2628624643189 0 \N \N f 878343210 \N 7 243230159 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451034 2025-03-24 11:02:56.867 2025-03-29 22:39:48.911 Best Arguments Against This Guy? I have done a few posts describing conversations I have had with my retired or soon to be retired friends about bitcoin. I can’t find those posts right now. This one is about another friend with whom I am at a loss to present arguments. Here’s the story:\n\n### Another Retired Guy\n\nMr. X was a very successful retail business owner. He accumulated a good deal of wealth and discovered the stock market at a young age. He had little formal education, but he is very intelligent, well read, and with a natural aptitude for numbers. He did well in stocks, bonds and real estate, and began managing his wife’s 401k years ago. He is disciplined. He would always set aside a portion of his brokerage assets for trading options, derivatives and stuff like that which I never really understood. \n\n### Down The Rabbit Hole\n\nWe became interested in bitcoin at around the same time, and we had endless conversations about it in 2017. We learned together. He became a typical hodler like me. He read the Bitcoin Standard, became obsessed, and has been steadily buying and holding bitcoin in cold wallets since. I assume he has a substantial stack now, although of course we don’t talk about it. We also don’t talk as much as we did, since we no longer live near each other. \n\n### Our Paths Diverge\n\nWe caught up with each other on the phone the other night. When the conversation naturally turned to bitcoin, he said that he was having fun with “bitcoin shitcoins.” I didn’t know where this was going. He told me that he was using his brokerage accounts to trade shitcoins like microstrategy, all the ETFs, and even stocks like Semler Scientific. He said he didn’t feel bad about selling them since they weren’t real bitcoin anyway. He loved Saylor’s strategy of leveraging bitcoin with fiat. He was very excited talking about the availability of etf options. \n\nI asked him what his end strategy was. He said he was trying to accumulate as much fiat as he could in the next year or so, then sink it into real bitcoin when the next bear market came around. He would also use some of his fiat to spend on his grand kids if they needed something. \n\nI had trouble formulating arguments against him. I tried, but he would accuse me of acting like what he was doing was a sin. He wondered if I hadn’t embraced bitcoin as a religion. \n\nI’m curious to know how other stackers would handle this? Is he right? \N 825 \N 451034 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.8045603516061 0 \N \N f 92843071 \N 1 34797578 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401818 2025-02-13 12:09:30.545 2025-03-29 22:39:52.444 \N https://imgprxy.stacker.news/I10iMcAYCA2tWhzlqKoJrQWUEIopbleN0qCxthirEWU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ2ZsaXAuY29tLzd4N200dS5qcGc https://example.com/ 2774 401783 401783.401818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3245302004891 0 \N \N f 354748258 \N 2 170804267 0 f f \N \N \N \N 401783 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 404510 2025-02-15 23:41:29.537 2025-03-29 22:39:52.444 \N As a fellow writer, I'd never thought of solipsism, but I heavily relate after researching. Appreciate you bringing a bit more self awareness to my life! https://example.com/ 16145 404501 404095.404384.404501.404510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.10456174891434 0 \N \N f 157161055 \N 1 60571865 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435061 2025-03-12 12:40:54.047 2025-03-29 22:39:52.445 \N ![meme](https://imgprxy.stacker.news/7wJTWYJTsAT4BbyuUEnjt_M5hQPAd5z4g-GP64e4jdM/rs:fit:600:500:0/g:no/aHR0cHM6Ly9waWNzdmcuY29tL3N2Zy9KRzIzOGouanBn) https://example.com/ 9421 435000 434990.435000.435061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0163565871529 0 \N \N f 97815633 \N 1 78922814 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N 2025-03-19 06:02:58.299 f \N \N \N 0 0 0 0 1 0 0 402062 2025-02-13 14:33:40.539 2025-03-29 22:39:52.445 \N I personally start with #3 at the top. That's a topic about which no actual progressive can disagree with you. Then you can move to inflation, which is pretty much a slam dunk, whether you frame it as helping the rich or hurting the poor. Either way, you've got them hooked at this point in the conversation, assuming it's one being had in good faith (which is rare these days, especially in discussions with leftists). https://example.com/ 14857 402039 402000.402031.402039.402062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0652227774974 0 \N \N f 379539984 \N 2 23303051 0 f f \N \N \N \N 402000 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423704 2025-03-03 14:47:33.067 2025-03-29 22:39:52.446 \N Great list. US dollar dominance enables abuses of the global south through debt slavery via the IMF. This kinda touches all 4. \n\nAnother one is censorship resistance. Bitcoin has already helped women escape abusive marrages in nations were women lack basic freedoms. https://example.com/ 6393 423687 423667.423687.423704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.55272711832183 0 \N \N f 1635622925 \N 12 198377618 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436001 2025-03-13 08:01:27.116 2025-03-29 22:39:52.446 \N This! Just use the same model as Stacker News - people pay for upvotes, but you can see the text before paying for it. It's OK to charge for asking questions, though. https://example.com/ 1044 435957 435328.435887.435904.435957.436001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.724326636938 0 \N \N f 305145590 \N 3 74292620 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 2025-03-20 04:09:04.678 f \N \N \N 0 0 0 0 1 0 0 437439 2025-03-14 14:17:01.145 2025-03-29 22:39:52.447 \N Prepare for medical emergencies. Pets have them, too. \n\nI feel pets were good training towards having a child. Not good enough, but a good first step https://example.com/ 20525 437437 437218.437437.437439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.17670847438632 0 \N \N f 450358384 \N 3 41421892 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404408 2025-02-15 21:06:19.465 2025-03-29 22:39:52.447 \N tbh I don't really think about legal proposals. I'm not sure it's a great use of time. \n\nIn general, my preference is to comply by technologically circumventing them. Non-custodial wallets will circumvent some proposals, and decentralizing SN will circumvent others.\n\nReasonable legislation will exempt small txs. In the US at least international currency can be spent below a certain threshold and not be considered taxable. I'm not sure about elsewhere.\n\nWe'll see I guess! https://example.com/ 837 402936 401611.401671.401726.402847.402936.404408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.50946881997654 0 \N \N f 90689958 \N 1 45131893 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428653 2025-03-07 13:46:46.786 2025-03-29 22:39:48.911 J Bier - The Blocksize War: The battle for control over Bitcoin’s protocol rules I read this book a while ago. I just recommended it to someone else in https://stacker.news/items/475160. \n\nAs I did, I wondered if ever there has been a review of this book on SN, and there does not seem to be. As I was not around before the Blocksize Wars, I am not a good person to do so. I only know of that time what I read in the book. \n\nMy review would be: great book, learned a lot, captivating story-telling, etc. I really enjoyed this book that gave me insights into the dynamics of Bitcoin, how miners, node runners, bitcoin core, etc all have their important and complementary roles to play.\n\nHowever, what I am wondering is, with this post, if any OG is around here, do you agree with the way this part of Bitcoin's history is told in the book? This book has become a reference, and as we say, history is written by the winner, so the book is obviously biased towards the small blockers. \n\nSmall blockers rightfully won, in my opinion, but what do you think? Did Jonathan Bier do a good job at telling the story the way you remember it happening? I know @DarthCoin does not like to be tagged or seen as someone special, but he's one of the few vocal OGs that I've seen here on SN, so I'll make an exception for once, forgive me for doing so. Maybe @jimmysong, but I have not really seen him engage other than post his occasional musings? Or some other OG who has been around before 2017? I'm sure you must have some interesting stories to share related to these events...\n\nOr can anyone recommend other competing references on what happened during those times? I could go through all the mailing lists of course, but summaries are always interesting before diving into the details. \N 21709 \N 428653 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.3853484727779 0 \N \N f 623643226 \N 4 230484433 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 451793 2025-03-24 18:41:30.084 2025-03-29 22:39:48.911 Do you zap people who don’t zap back? Last week, I hosted a Japanese professor who visited my school. She shared that when her elderly mother in her 80s visited Singapore, they were surprised by how Singaporeans readily gave up their seat on public transport to her ageing mum. She was amazed by our graciousness because this is unlikely to happen in Japan.\n\nI was sorry to burst her bubble, but clarified that this stage of graciousness was the result of many years of concerted public campaigning. Our metro system has mascots to deliver the message of giving up seats to elderly people, pregnant ladies and disabled people. The end seat of every carriage is specially designated for these groups of individuals who need the seat more. Through such targeted initiatives, Singaporeans’ behaviour changed for the better gradually.\n\nWhich leads to the act of zapping on SN. I think it is perceived differently by different people. Some people are hesitant to zap responses because they are scared that they will be taken advantage of, that other Stackers flock to comment on their posts because of this inherent expectation of being zapped. Others will zap back as a token of appreciation. \n\nI belong to the second camp, I guess. I think it’s only polite to zap back. In fact, I flirted with the idea of zapping a comment less than I would zap a post. But I soon abolished the idea because I found it troublesome to adjust my thinking. Anyway, who am I to say that comments are inherently worth less than posts? So I zap back as best as I can. \n\nI don’t have any expectations in regard to the amount. Obviously, a 300 sat zap will make me happy, but this isn’t to say that a 10 sat zap won’t. I’m mindful that some Stackers mayn’t post and comment much, so 10 sats is their way of demonstrating V4V. I accept all zaps with grace. \n\nI’m not so egoistic to stipulate that everyone whom I zap must zap me back. If you don’t find value in my comment, let’s all move on haha. But what I find peculiar is how some people’s stacking amounts heavily outweigh their spending amounts. Surely this means that they don’t zap anyone at all (or at most, a few lucky individuals).\n\nOrdinarily I would have kept quiet and just concentrated on my stacking behaviour. But thanks to the Japanese professor’s observation, I’m reminded of how Rome wasn’t built in a day, of how Singaporeans put in the necessary proof of work to become more gracious. Wasn’t it Gandhi who said, “be the change you want to see in this world”? \N 17226 \N 451793 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 7.77549602116597 0 \N \N f 237061957 \N 1 172631249 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2011 2022-10-01 15:04:50.551 2025-03-29 22:39:52.448 \N I've been wondering if it's possible to build a music streaming platform on nostr, but something more like Audius. https://example.com/ 3504 2008 2002.2008.2011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1149642822178 0 \N \N f 74348905 \N 1 183406913 0 f f \N \N \N \N 2002 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435553 2025-03-12 19:26:42.536 2025-03-29 22:39:52.448 \N What teams are working on validity roll ups on Bitcoin? Any we should follow?\n\nA Halo 2-based roll up would be really cool. I haven't seen any mention of this outside of your research. https://example.com/ 993 435547 435046.435135.435292.435504.435545.435547.435553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7108462302938 0 \N \N f 89981113 \N 1 63503765 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 13:09:39.631 f \N \N \N 0 0 0 0 1 0 0 437560 2025-03-14 15:57:54.565 2025-03-29 22:39:52.449 \N No.\n\nOk, I'll bite: It always puzzled me how Bitcoiners, who I think are people who *question the nature of money* and what it is or can be, fell for this energy battery narrative. It's clear that Bitcoin uses energy for mining (which is then lost as heat to the environment) but it's beyond me why people believe that the fact that it can be used as money and make someone else on the other side of the planet move physical objects by paying them to do so makes it any sort of energy. Saylor did this. https://example.com/ 19966 437044 437044.437560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4533626484277 0 \N \N f 956907727 \N 7 72183218 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 438108 2025-03-15 09:06:06.275 2025-03-29 22:39:52.449 \N Generated by AI, boring AF https://example.com/ 11153 427527 427527.438108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3887219577328 0 \N \N f 152584215 \N 1 5514322 0 f f \N \N \N \N 427527 \N 0 0 \N \N f \N 2025-03-26 05:20:51.594 f \N \N \N 0 0 0 0 1 0 0 410490 2025-02-20 14:02:52.593 2025-03-29 22:39:52.449 \N Great, I couldn’t figure out how you were doing that. I am a nooby at this. My son suggested I get involved in it because I read the news on the internet, anyway. https://example.com/ 2123 410409 410409.410490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8899800489848 0 \N \N f 233868347 \N 1 226657902 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443919 2025-03-19 15:22:11.894 2025-03-29 22:39:48.903 @DiamondHands's bio The leading Bitcoin/Lightning technology and solution provider based in Japan.\n\nWe also support various community activities, working with users, developers, enterprises, international communities to expand the ecosystem. \N 9921 \N 443919 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.5231751901843 0 \N \N f 603389687 \N 4 227128563 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 428308 2025-03-07 04:56:29.762 2025-03-29 22:39:48.903 Props to COINOS who bring so much ACTUAL ADOPTION to Vancouver Just wanted to share a [map](https://coinos.io/map) of actual Bitcoin adoption/acceptance by businesses orange-pilled by [Coinos](https://coinos.io/). By comparison, the much larger, more populous, wealthy, and tech-savvy Bay Area of California has practically zero adoption. \n\nI think this really shows the power of passion, POSITIVITY, and just getting out there and doing some real-world action rather than being a keyboard cowboy.\n\nI can't tell you much about Coinos, but they did make FOSS software with [API](https://coinos.io/docs) and they offer [bounties](https://coinos.io/bounties) for orange-pilling businesses (!).\n\nI have used their online wallet, and since I'm pretty sure I've tested every wallet that isn't an outright scam, I think I would say Coinos is in fact the easiest wallet to use (it is custodial, but of course that makes it even easier to use).\n\nIt's so inspirational to see such progress close to home.\n\n\nJust for fun, here's a video of the Coinos founder, Adam Soltys, [spending bitcoin 8 years ago](https://www.youtube.com/watch?v=gjN-thecI8g).\n\n\n![](https://m.stacker.news/35920)\n\n![](https://m.stacker.news/35921)\n\n\n \N 1881 \N 428308 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 13.2505815181579 0 \N \N f 468974385 \N 4 122725880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 427651 2025-03-06 14:50:01.779 2025-03-29 22:39:48.903 The Basic Laws of Human stupidity - part 3 Previously...\n>[Introduction and Chapter 1](https://stacker.news/items/678475)\n>[Chapter 2](https://stacker.news/items/679184)\n\n## Chapter 3\n### A Technical Interlude\n\nAt this point it is imperative to elucidate the J-\\.. concept of human stupidity and to define the dramatis persona. \n\nIndividuals are characterized by different degrees of propensity to socialize. There are individuals for whom any contact with other individuals is a painful necessity. They literally have to put up with people and people have to put up with them. At the other extreme of the spectrum there are individuals who absolutely cannot live by themselves and are even ready to spend time in the company of people whom they do not really like rather than to be alone. Between these two extremes, there is an extreme variety of conditions, although by far the greatest majority of the people are doser to the type who cannot face loneliness than to the type who has no taste for human intercourse. Aristotle recognized this fact when he wrote that «Man is a social animal» and the validity of his statement is demonstrated by the fact that we move in social groups, that there are more married people than bachelors and spinsters, that so much wealth and time is wasted in fatiguing and boring cocktail parties and that the word loneliness carries normally a negative connotation.\n\nWhether one belongs to the hermit or to the socialite type, one deals with people although with different intensity. Even the hermits occasionally meet people. Moreover, one affects human beings also by avoiding them. What I could have clone for an individual or a group but did not do is an opportunity-cost (i.e. a lost gain or loss) for that particular person or group. The moral of the story is that each one of us has a current balance with everybody else. From action or inaction each one of us derives a gain or a loss and at the same time one causes a gain or a loss to some one else.\n\nGains and losses can be conveniently charted on a graph, and figure 1 shows the basic graph to be used for the purpose.\n\nThe graph refers to an individual - let us say Tom. The X axis measures the gain that Tom derives from his actions. On the Y axis the graph shows the gain that another person or group of persons derive from Tom's actions. Gains can be positive, nil or negative - a negative gain being actually a loss. The X axis measures Tom's positive gains to the right of point O and Tom's losses to the left of point O. The Y axis measures the gains and losses of the person or persons with whom Tom dealt respectively above and below point O.\n\n![](https://m.stacker.news/51273)\n\nTo make all this clear, let us make a hypothetical example and refer to figure 1. Tom takes an action which affects Dick. If Tom derives from the action a gain and Dick suffers from the same action a loss, the action will be recorded on the graph with a dot which will appear in the graph somewhere in area B. \n\nGains and losses may be recorded on the X and Y axis in dollars or francs, if one wants, but one has to include also psychological and emotional rewards and satisfactions as well as psychological and emotional stresses. These are intangibles and they are very difficult to measure according to objective standards. Cost-benefit analysis can help to solve the problem, although not completely, but I do not want to bother the reader with such technicalities: a margin of imprecision is bound to affect the measurement but it does not affect the\nessence of the argument. One point though must be made clear. When considering Tom 's action one makes use of Tom's values but one has to rely on Dick's values and not on Tom's values to determine Dick 's gains (whether positive or negative).\n\nAll too often this rule of fairness is forgotten and many troubles originate from failure to apply this\nessentially urbane point of view. Let me resort once again to a banal example. Tom hits Dick on Dick 's head and he derives satisfaction from his action. He may pretend that Dick was delighted to be hit on the head. Dick, however, may not share Tom's view. ln fact he may regard the.blow on his head as an unpleasant event. Whether the blow on Dick 's head was a gain or a loss to Dick is up to Dick to decide and not to Tom.\n\n*stay tuned... more is coming* \N 1012 \N 427651 \N \N \N \N \N \N \N \N security \N ACTIVE \N 27.9034286508691 0 \N \N f 202031792 \N 2 221083959 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436106 2025-03-13 10:26:06.276 2025-03-29 22:39:52.442 \N Sub _Privacy_ and _FOSS_ would fit well, because freedom loving Bitcoiner have to master their personal computing to be really independent. People not mastering their computing will be coerced any update at any inopportune time, against their will and at worst disable them completely. https://example.com/ 20852 436053 436028.436053.436106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4883555369566 0 \N \N f 212051666 \N 1 214129432 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:39:35.732 f \N \N \N 0 0 0 0 1 0 0 422025 2025-03-02 07:58:42.927 2025-03-29 22:39:52.442 \N Tagging @kr because he'll be organizing the next one. We have a set of things we already want to try next time, but these suggestions are helpful.\n\nIt'd probably be extra helpful to come with roundtable topics along with guests for the topics. https://example.com/ 1751 356269 356162.356269.422025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.443591165214059 0 \N \N f 90671182 \N 1 160854742 0 f f \N \N \N \N 356162 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436325 2025-03-13 13:28:08.741 2025-03-29 22:39:52.443 \N The scale of the answers might be misleading. Some of us are pretty anti-social, so knowing one person who got laid off is not trivial. https://example.com/ 15521 436241 436241.436325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7382784608642 0 \N \N f 29674314 \N 1 22350137 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:28:52.728 f \N \N \N 0 0 0 0 1 0 0 410054 2025-02-20 07:51:10.593 2025-03-29 22:39:52.449 \N No question about gun ownership?\n\nI know it's not precisely a privacy thing but just like how the 2nd amendment protects the 1st, we'll need a gun to defend our privacy at some point. https://example.com/ 21540 410018 410018.410054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4032046104709 0 \N \N f 159752756 \N 1 115950895 0 f f \N \N \N \N 410018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408190 2025-02-18 16:11:48.508 2025-03-29 22:39:48.903 One step wallet connect with Nostr Wallet Auth \N https://blog.mutinywallet.com/nostr-wallet-auth/ 4118 \N 408190 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.03656576821868 0 \N \N f 215838501 \N 1 60710756 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410016 2025-02-20 06:46:04.744 2025-03-29 22:39:48.903 BTClock vs Blockclock \N https://njump.me/note1k55p37evauzwjp03ev8334k0e89w7zzru5kt0jqwsjwtnncw5p6sekqd64 11491 \N 410016 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 29.9131017212208 0 \N \N f 194303941 \N 2 241856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427401 2025-03-06 11:30:29.875 2025-03-29 22:39:48.903 Added a "last 28 days" view to my inscription statistics dashboard "Fees spent on Inscriptions" is at a 4 week low. Wouldn’t it be nice if this were the start of the brc-20 hype tapering off?\n\nhttps://i.stack.imgur.com/gfYbJ.png https://dune.com/murchandamus/inscription-brc20-weight-and-percentage 20913 \N 427401 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.1796648460806 0 \N \N f 185036544 \N 2 76537681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448342 2025-03-22 14:56:58.897 2025-03-29 22:39:52.443 \N I agree, the tiny screens seem a bit off. Managing from a mobile device seems more practical, just now sure how to mitigate the security challenges that then raises lol https://example.com/ 1173 448331 448331.448342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0071231957945 0 \N \N f 425656688 \N 7 229508192 0 f f \N \N \N \N 448331 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448809 2025-03-22 22:10:07.659 2025-03-29 22:39:52.443 \N > It's been 6+ years of struggle to get LN anywhere beyond a community of mostly ideological users with no visible success or perspective. My opinion is ultimately LN is not what market at large wants from Bitcoin and folks should look into other directions besides dumb payments, and not overly fixate on LN.\n\nI personally don't think LN is done, and in fact, I think it's a great success already, though perhaps it isn't (and won't be) the kind of success that people were originally hoping for. And that's the interesting point, which the quote above illustrates: it's hard to know what the world will want and use. \n\nIf btc doesn't die out entirely (and [I don't think it will](https://stacker.news/items/297944/r/elvismercury)) then I have strong conviction that the ways in which it's actually used in a decade will surprise the hell out of people now. That's not a shortcoming in lightning or in anything else. It's the complexity of the world. https://example.com/ 5455 448787 447892.448746.448780.448787.448809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8408917440927 0 \N \N f 62919674 \N 1 140795649 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 15:36:20.336 f \N \N \N 0 0 0 0 1 0 0 443061 2025-03-19 01:54:41.586 2025-03-29 22:39:52.443 \N is simple: all banksters and politicians https://example.com/ 15337 442981 442981.443061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1997545109924 0 \N \N f 237773819 \N 1 138843332 0 f f \N \N \N \N 442981 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416737 2025-02-25 20:02:09.203 2025-03-29 22:39:52.443 \N You are mistaken.\n\nThe DSA signature scheme is assumed to be a EUF-CMA or sEUF-CMA hard problem. However, after decades there has been no formal proof to be reducable to the DL-assumption (or Computational Diffie Hellman assumption or Decisional Diffie Hellman assumption). We also think that the mathematical problems on an elliptic curve and under Zp* are equivalent. \n\nThis is in stark contrast to the Schnorr Signature Sheme where there is a formal proof in the random oracle model under DL assumption to be EUF-CMA.\n\nAny news about findings about DSA in Zp* or elliptic curve are worrisome. We basically wish that there shouldn't even be something to talk about. Especially any hints that there is a connection between signature, nonce and private key. Which is what this paper hints at.\n\nTo people that aren't familiar with cryptography: This might sound chinese to you. But what we're talking about here **realistically** is that in a few decades somebody finds out that the signature scheme is reducable to DL, DH or DDH - which would be huge news in cryptography but would still mean that nobody can forge signatures without breaking DL, DH or DDH - which they can't. Also, if somebody was to find a connection between signature, nonce and private key - that doesn't mean its exploitable by PPT algorthms - which wouldn't be surprising due to DSAs structure. https://example.com/ 9537 416158 416158.416737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7452943782506 0 \N \N f 222871277 \N 1 120586207 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 409708 2025-02-19 19:14:51.204 2025-03-29 22:39:48.903 Wikileaks has just put more of its files online. It's all there: Hillary Clinton's emails, McCain's culpability, the Las Vegas shooting by an FBI sniper, Steve Jobs' letter on HIV, Pedo Podesta, Afghanistan, Syria, Libya, Iran, Israel, the military-financial complex, the mafia/the mafias, CIA agents arrested for rape, CIA plots, attacks, false flags, the WHO pandemic, etc... \n\nHappy reading!\n\nhttps://file.wikileaks.org/file/ \N 20663 \N 409708 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.63472041522323 0 \N \N f 447859472 \N 3 58433646 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423955 2025-03-03 18:29:57.126 2025-03-29 22:39:48.903 Is Anybody Watching The Same TV Shows Anymore ? **2024 is the year TV went quiet.**\n\n![](https://m.stacker.news/35598)\n\n> A few years ago, there was an easy, healthy overlap between the kind of television beloved by those who talk about TV as professionals and the kind beloved by those who talk about TV as enthusiastic amateurs. TV seemed to abound with shows that both racked up high scores on Metacritic and had highly engaged fanbases. When new episodes dropped, fans and critics alike would turn up on Twitter to discuss their faves: *Succession* and *Schitt’s Creek* and *Ted Lasso* and *Game of Thrones* and on and on.\n> \n> You were gathering around the digital water cooler, and you were doing it with a show that everyone agreed was more than just a guilty pleasure. It was art. Yet somehow, without anyone quite noticing it had happened, the TV shows we watch like that seem to have vanished. \n> \n> There’s still good TV out there (*Abbott Elementary, Somebody Somewhere*, the recently completed *Reservation Dogs*), and there are still shows that lots of people watch and talk about (*Bridgerton*, mostly), but the overlap in the Venn diagram of “critical consensus hits” and “watercooler discourse bait” is getting smaller and smaller. At this point, all that’s really occupying the niche is *The Bear*.\n>\n> **[... read more at vox.com](https://www.vox.com/culture/354928/post-peak-mid-tv-quiet-the-bear-succession)** \N 6148 \N 423955 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.921279559316 0 \N \N f 614209230 \N 5 82080934 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 434827 2025-03-12 09:05:28.797 2025-03-29 22:39:48.904 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 21104 \N 434827 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 19.4416291176827 0 \N \N f 188899155 \N 3 102649263 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 09:26:54.299 f \N \N \N 0 0 0 0 2 0 0 436208 2025-03-13 11:38:20.962 2025-03-29 22:39:52.443 \N I'm in Kuala Lumpur right now and I recently went to what was billed as a "Bitcoin" meetup.\n\nIt was an interesting cast of characters there, a lot of apparently big names in the Malaysian tech and entrepreneurial scene. (One presenter asked "does anyone here not know who I am?" and I was the only person out of 100ish who raised my hand lol).\n\nThe thing that struck me was there were only a few other guys there who were actual Bitcoiners, and if they were Maxis they didn't want to talk about that in that group.\n\nMost of these people were working on Ethereum and Solana based startups whose function I couldn't understand in the least, even when I spoke to them at length about what problem these companies and apps were supposed to actually solve. Several of them involved NFT anime type characters which they encouraged us to snatch up while we still could.\n\nMany were curious what this random out of place American dude was doing at the meetup. When I told them I was a long term Bitcoin holder and enthusiast, they sort of treated me as a "cute" old-fashioned fellow, gave me a figurative pat on the head, and "good for you."\n\nI don't know quite what to make of that experience, but I think it relates in some way to the We Are Still Early reality-meme. (WASE)\n\nI think many smart and tech-savvy people feel like they were late to Bitcoin, so they chase the next big thing, and try to outsmart everyone else in some sense. And maybe they are too caught up in the flashy jargon and bells/ whistles of Blockchain™ technology, rather than focused on how it can actually apply in normal people's lives?\n\nI'm struggling to come up with an analogy to what these guys are up to.. are they ahead of their time in some way, like working on the pets.com or similar early 2000's dotcom startups that failed then, but exist now that the internet is more mature? \n\nAre they Betamax enthusiasts? The Betamax was superior tech on paper but just lost the adoption race. \n\nOr are they missing the plot entirely because they never understood the fundamentals of what Bitcoin was invented for in the first place? So they are down some strange dead end path inventing Segway scooters that are "definitely-gonna-change-the world-bro"?\n\nI guess what I'm asking is, where does all the shitcoinery and Blockchain™ tech fit in to this WASE idea? Why are so many smart people missing what seems so obvious to us?\n\nMaybe things are about to shift right now, and the blockchainers will start to realize that they chose the wrong horse, and migrate over. Bitcoin seems like it's starting to go mainstream but it's always hard to tell if I'm just in my own bubble.\n\n![](https://m.stacker.news/64030) https://example.com/ 9336 435905 435905.436208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.45488255959125 0 \N \N f 73000203 \N 1 155102786 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 2025-03-20 06:28:50.065 f \N \N \N 0 0 0 0 1 0 0 401884 2025-02-13 12:40:10.717 2025-03-29 22:39:52.443 \N > My default zap is 13 and to pay 1 sat makes it around 8% in fees. \n\nEasy fix: radically increase your default zap. ;) https://example.com/ 7966 401824 401824.401884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.515906477106967 0 \N \N f 482838640 \N 4 170084353 0 f f \N \N \N \N 401824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402578 2025-02-13 20:39:02.822 2025-03-29 22:39:52.443 \N Agree. Do you think the pendulum swings back to some level of normalcy on these issues as the distrust in institutions, media grows and leftist orthodoxy continues to get rejected? https://example.com/ 13038 402565 402556.402565.402578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.220359095837068 0 \N \N f 14844644 \N 1 73072256 0 f f \N \N \N \N 402556 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450023 2025-03-23 17:44:23.014 2025-03-29 22:39:48.904 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help. \N 16442 \N 450023 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.25882573430346 0 \N \N f 71208628 \N 1 164240155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448851 2025-03-22 23:21:28.935 2025-03-29 22:39:48.904 This Day in Stacker New: July 20th *Yesterday's edition https://stacker.news/items/613971/r/Undisciplined*\n\n* * -\n### July 20, 2023 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[Frostsnap - Easy, personalized, secure bitcoin multisig for everyone](https://stacker.news/items/211803/r/Undisciplined)**\n\nLink to https://frostsnap.com/introducing-frostsnap.html\n\n*6034 sats \\ 19 comments \\ @utxoclub \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/211668/r/Undisciplined?commentId=211676**\n\n#### Excerpt\n> Check out @super_testnet's super simple Superstore: https://stacker.news/items/167945\n\n*614 sats \\ 0 replies \\ @OneOneSeven*\n\nFrom **[Making a Store](https://stacker.news/items/211668/r/Undisciplined)** by @Undergotten in ~nostr\n\n----\n\n### 🏆 `TOP STACKER`\n\n2nd place **@utxoclub** (1st hiding, presumed @siggy47)\n\n*4679 stacked \\ 1826 spent \\ 1 post \\ 5 comments \\ 0 referrals*\n\n----\n\n### 🗺️ `TOP TERRITORY`\n\n**~bitcoin**\n> everything bitcoin related\n\nfounded by @k00b on Tue May 02 2023\n\n*48.4k stacked \\ 0 revenue \\ 55.2k spent \\ 84 posts \\ 166 comments*\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n### July 20, 2022 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[I'm John Cantrell, entrepreneur, spiral grantee, and creator of Sensei. AMA](https://stacker.news/items/47346/r/Undisciplined)**\n\n#### Excerpt\n> I'm @johncantrell97 and I've been working on and around Bitcoin for over a decade now. Most recently I've been working on Sensei as part of a Spiral grant.\n\n*112.7k sats \\ 54 comments \\ @JohnCantrell97 \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/47509/r/Undisciplined?commentId=47521**\n\n\n#### Excerpt\n> "As of the end of Q2, we have converted approximately 75% of our Bitcoin purchases into fiat currency."\n> Tesla didn't HODL. Or deploy as liquidity on Lightning to earn yield.\n> Some just have to learn the hard way 🤷‍♂️ […]\n\n*329 sats \\ 4 replies \\ @holzapfelbaum*\n\nFrom **[Tesla Sells 75% of Bitcoin Holdings](https://stacker.news/items/47509/r/Undisciplined)** by @kr in ~bitcoin\n\n----\n\n### 🏆 `TOP STACKER`\n\n1st place **@k00b** \n\n*11.9k stacked \\ 108.1k spent \\ 4 posts \\ 19 comments \\ 0 referrals*\n\n----\n\n### 🗺️ `TOP TERRITORY`\n\n**~bitcoin**\n> everything bitcoin related\n\nfounded by @k00b on Tue May 02 2023\n\n*130.5k stacked \\ 0 revenue \\ 140k spent \\ 113 posts \\ 249 comments*\n\nhttps://imgprxy.stacker.news/fsFoWlgwKYsk5mxx2ijgqU8fg04I_2zA_D28t_grR74/rs:fit:960:540/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8yMzc5Ng\n\n### July 20, 2021 📅\n\n----\n\n### 📝 `TOP POST`\n\n**[The Bitcoin Miners banned from China are coming back online in force, bois!](https://stacker.news/items/424/r/Undisciplined)**\n\n#### Excerpt\n> https://bitinfocharts.com/comparison/bitcoin-hashrate.html\n> Don't let your lettuce hands leave you with regrets. Stack those sats!\n\n*7 sats \\ 3 comments \\ @03cdf4abc3 \\ ~bitcoin*\n\n----\n\n### 💬 `TOP COMMENT`\n\n**https://stacker.news/items/428/r/Undisciplined?commentId=429**\n\n#### Excerpt\n> We're supposed to believe he's acting in the interest of the people to support of a censorship resistant platform for the exchange of value while not doing anything of note to further the interests of the people regarding a censorship resistant platform for exchanging words that he just happens to be the CEO of. They deplatformed the president of the united states.\n\n*1 sat \\ 1 reply \\ @03cdf4abc3*\n\nFrom **[Forget Elon Musk, Jack Dorsey Is the Hero Bitcoin Deserves for the Coming Years.](https://stacker.news/items/428/r/Undisciplined)** by @shawnyeager in ~bitcoin\n\n----\n\n### 🏆 `TOP STACKER`\n\nNo top stacker\n\n----\n\n### 🗺️ `TOP TERRITORY`\n\n**~bitcoin**\n> everything bitcoin related\n\nfounded by @k00b on Tue May 02 2023\n\n*43 stacked \\ 0 revenue \\ 71 spent \\ 9 posts \\ 14 comments* \N 5728 \N 448851 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 26.2997892538022 0 \N \N f 252136406 \N 2 183092795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 16:59:59.694 f \N \N \N 0 0 0 0 1 0 0 407278 2025-02-17 21:37:45.961 2025-03-29 22:39:48.905 Paranemo Activity? Occasionally I get zaps on old posts and I don't think much of it because I assume it is due to the algo recommending my old posts underneath current posts. \n\nOccasionally I get zaps on old comments and I don't think much of it because I assume it is just people scrolling through comments of old posts recommended by the algo. \n\nBut I just had a zap of an old saloon comment where @carlosfandango and I were discussing the legendary zapper @nemo. Very odd. No one would find this randomly. \n\nLikely something that was bookmarked by someone or could it be paranemo activity? \n\nShow yourself fish! \N 14705 \N 407278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1082806847116 0 \N \N f 115959711 \N 2 58916751 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437958 2025-03-15 03:04:25.435 2025-03-29 22:39:52.443 \N ![](https://www.zapread.com/i/9Hb) https://example.com/ 9494 437769 437769.437958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9702221201838 0 \N \N f 34531988 \N 1 204864687 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458150 2025-03-29 02:20:23.047 2025-03-29 22:39:52.443 \N Zion and ArcadeCity have a few things in common. \n\nIt all feels like a mix of vaporware and beta-grade software that is perpetually either coming soon, being rebranded, being rearchitected, or almost ready. \n\nHope to be proven wrong.\n\nJust go check-out the PRs on some of the repos for both projects.\n https://example.com/ 21494 457126 457126.458150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8360898062335 0 \N \N f 923618401 \N 6 34671288 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 420753 2025-03-01 02:29:41.479 2025-03-29 22:39:52.443 \N I think the Deezy guy isn't making any money, it's just an altruistic service. https://example.com/ 9276 420620 420620.420753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5809837906125 0 \N \N f 509749356 \N 6 205232586 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434788 2025-03-12 08:42:46.691 2025-03-29 22:39:52.444 \N Big fan of Anita, sats sent! https://example.com/ 14857 434685 434685.434788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4605837403694 0 \N \N f 68324986 \N 1 134565152 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N 2025-03-19 09:26:14.5 f \N \N \N 0 0 0 0 1 0 0 335721 2024-12-19 23:36:55.366 2025-03-29 22:39:52.444 \N I'm definitely engaging more than lurking nowadays\n\nMy zaps have become more thoughtful \n\nI'm earning more sats than before\n\nOpt in SN mini games like a mini million sat madness would be cool, and not as intrusive for some freaks. https://example.com/ 20745 335690 335484.335562.335591.335690.335721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9410631723034 0 \N \N f 1372443759 \N 12 12144216 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407476 2025-02-18 04:07:12.674 2025-03-29 22:39:52.444 \N What's your thought on SN and territories cooperative marketing. \n\nFor example. If I wanted the sports territory to advertise on a football podcast. I could have the copy read in such a way that promotes both SN and the sports territory. \n\nObviously any sort of marketing/ads promoting SN would need your approval first but maybe there is a way for territories to get out to their niche corners of the world and promote the site and the territory. SN could share in the cost by crediting back x amount of the territory fee per year to each territory for advertising and base the amount allocated on the territory rankings. So maybe the top 5 non SN territories get up to 20% of fee back for advertising/promotion. \n\nI was talking with Undisciplined about how territory growth and SN growth, in my opinion need to be symbiotic, or else we could have one territory dominating most of the main page and the user experience for stackers who aren't interested in that territory would degrade. I think it is important to maintain a nice variety of types of posts on the main pages. \n\nAnyways, this doesn't necessarily need to be a now thing. I think we all have a long way to go to exhaust the free advertising/referral marketing options we have available to us but it is something I would like to do in the future. Maybe it is something other territory owners would be interested in too. https://example.com/ 5487 407466 407400.407466.407476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7343590030065 0 \N \N f 184602126 \N 1 3268095 0 f f \N \N \N \N 407400 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414997 2025-02-24 13:07:36.202 2025-03-29 22:39:52.444 \N Hey, could you remind what exactly is the problem? (can be on our team chat, to solve)\n\n@siggy47 do you have your Hub launched and Alyb Account linked? Do other NWC connections work for you? https://example.com/ 4027 414984 414984.414997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.466911818716 0 \N \N f 159717880 \N 2 88639376 0 f f \N \N \N \N 414984 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420921 2025-03-01 09:16:29.814 2025-03-29 22:39:52.444 \N Sounds too good.\nI need to study more in order to have an opinion.\nBut I do not reject it. https://example.com/ 780 420895 420895.420921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9847595805781 0 \N \N f 124087903 \N 2 221847053 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434997 2025-03-12 11:51:29.268 2025-03-29 22:39:48.905 RoboSats 101 | Bitcoin.Guide \N https://bitcoiner.guide/robosats 9275 \N 434997 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.0783532676445 0 \N \N f 147197781 \N 1 160331832 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:33:10.008 f \N \N \N 0 0 0 0 1 0 0 2457 2022-10-12 15:30:19.895 2025-03-29 22:39:48.906 AI Replacing Your Source of Income Hey All - How are you approaching living in an AI future? Here in Phoenix, I can do many things with AI. I can call a Waymo and it is driven with no human behind the wheel. I can order food from many restaurants and it is all done with self-service kiosks. A lot of the stores also have self-service checkouts. \n\nThings around me seem to be more and more automated, and I was asking myself - what would I do if robots replaced my work in the future? What would I do with myself? \n\nI would work, podcast, and go on adventurous hikes. I don't know if this would bring in the right money to support my family - but I would try to make it happen. \n\nHow would you react to AI taking away your job? What would you do with your time and life energy? \N 844 \N 2457 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.7846423256012 0 \N \N f 8933784 \N 1 93715007 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 381503 2025-01-26 16:55:47.768 2025-03-29 22:39:48.906 I sold my 1m SATs 🫣 Biggest mistake of my life ever \n\nI feel very bad for my self\n\nNow stacking back\n\n \N 795 \N 381503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9506371803203 0 \N \N f 175710529 \N 1 55867967 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434536 2025-03-12 02:06:03.127 2025-03-29 22:39:48.91 Blockchain Bloat Doesn't Matter Blocksize Warriors and Shitcoin Trolls are putting a great deal of support and promoting the use of Bitcoin as a public file storage system. They think that they will drive users to their garbage and/or force the Bitcoin community to give them bigger and/or faster blocks.\n\nBut it's not gonna matter:\n\n- Miners don't care, full blocks means more fees.\n\n- Hosted Lightning services like Wallet of Satoshi don't care, they already bulk open channels and aggregate user funds in their custodial wallets to manage channel capacity and connectivity.\n\n- Semi-self-custody LN services like Breez and Phoenix don't care, they already use zero conf channels to open immediately operational channels to their users because the users can't double spend on them anyway, when the funds arrive via LN.\n\n- Most bitcoiners realise that LN is the most important area of the Bitcoin ecosystem right now, and congested blocks don't substantially impact on the network for established operators who provide the core connectivity of the network.\n\nDriving people away from on-chain transactions is not a bad thing for Bitcoin.\n\nThe UX is awful anyway.\n\nFull RBF means that zero conf on-chain e-commerce apps are no longer a good idea for the merchants and market operators.\n\nThe big money in bitcoin right now is LN, and the ordinals are competing with ETH/AVA/SOL/Polkadot/Cosmos. The LN providers will be quite capable of outbidding the jpeg spammers, the miners get more profit, reduce their rate of selling pressure, and miners know what side their bread is buttered.\n\nThe general population of full node runners help reduce the chances of a hard fork splitting the chain, but the miners really are the arbiters of chain content. They will choose the block with the biggest fees. If NFT bros spam up the chain with worthless bits the LN operators will just raise their fee rates and leave a lot less room for the spam to be mined on.\n\nIf any of these fools think they are gonna somehow coerce bitcoin into their vision or drive people away from bitcoin, they are mistaken. Blocks full of transactions means less miner selling pressure. Number Go Up means more DCA bros coming on board and accelerating the saving instrument use case.\n\nLet the fools spam the chain. They are just moving more money into the Bitcoin market cap anyway, and out of their spoilt brat paper hands. \N 7818 \N 434536 \N \N \N \N \N \N \N \N security \N ACTIVE \N 4.75276010315451 0 \N \N f 161144353 \N 2 179932622 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:45.415 f \N \N \N 0 0 0 0 2 0 0 436477 2025-03-13 15:24:42.78 2025-03-29 22:39:52.444 \N Thanks @siggy47, I feel like we're brothers in this fight :)\n\n@cleaningup12, the best I can figure, this one is a combo of a) modeling the behavior you want to see ("be the change you want to see in the world" as per @ekzyis and also Gandhi) and b) rewarding it when you _do_ see it. https://example.com/ 21072 436471 436028.436343.436396.436451.436471.436477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1593679767478 0 \N \N f 113870245 \N 1 117849883 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 09:09:20.463 f \N \N \N 0 0 0 0 1 0 0 396500 2025-02-09 12:33:43.648 2025-03-29 22:39:52.444 \N I mean how would you know though? They even collect data that is "only shared with amboss" so nobody would know about this.\n\nI do think maybe eventually sub graphs will happen anyways, but especially maybe a privacy focused one. I don't know if this is what brings us to that point but possibly other protocol improvements alongside LN in general. https://example.com/ 20799 396045 395797.396045.396500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0048300342444 0 \N \N f 431551069 \N 3 28239247 0 f f \N \N \N \N 395797 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410247 2025-02-20 11:45:42.903 2025-03-29 22:39:52.444 \N Unit bias, most people I talk to just can't accept that they won't be able to own 1 full BTC, so why even try, unfortunately that's how much thought many people put into it https://example.com/ 21804 410135 410135.410247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.46699396291172 0 \N \N f 102604236 \N 1 96984505 0 f f \N \N \N \N 410135 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447058 2025-03-21 15:35:30.454 2025-03-29 22:39:52.444 \N I think focusing only on bitcoin is the right approach. \nIt look more polished and professional.\nAll this multi-alt-coins wallets look like a joke and confuse the newcomers. https://example.com/ 21262 447049 446513.447049.447058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.21372507484835 0 \N \N f 194318913 \N 1 149622762 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410386 2025-02-20 13:10:18.245 2025-03-29 22:39:52.444 \N Nice work. Only 85 % to go. https://example.com/ 20623 410068 410018.410068.410386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.75238522710084 0 \N \N f 124352037 \N 1 207648787 0 f f \N \N \N \N 410018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424288 2025-03-04 00:02:44.728 2025-03-29 22:39:48.91 Darthcoin might be an OG Stacker, but I dont trust. I read FAQ. Is Darth WRONG?! Darthcoin might be an OG Stacker, but I dont trust. I read FAQ. Is Darth WRONG?!\n\nYesterday I got into it with @Darthcoin about Attached Bitcoin Wallets https://stacker.news/items/714773/r/realBitcoinDog and he dropped on me this SN bombshell. But do I trust an OG Stacker like him? No!\n\nhttps://stacker.news/items/714807/r/realBitcoinDog?commentId=715132\n“upvoting with 1 sat or 1000 is the same in terms of reputation and "hot". The amount of sats you zap is just your personal appreciation to the OP.” -@Darthcoin\n\nExcuse me Darth, but have you even read @k00b FAQ at the footer?\nDo Zaps Help Content Rank Higher?\nYes. The ranking of an item is affected by:\n* the amount a stacker zaps a post or comment\n* the trust of the stacker making the zap\n* the time elapsed since the creation of the item\nZapping an item with more sats amplifies your trust, giving you more influence on an item's ranking. However, the relationship between sats contributed and a stacker's influence on item ranking is not linear, it's logarithmic.\nThe effect a stacker's zap has on an item's ranking is trust*log10(total zap amount) where 10 sats = 1 vote, 100 sats = 2, 1000 sats = 3, and so on ... all values in between are valid as well.\nTo make this feature sybil resistant, SN now takes 10% of zaps and re-distributes them to the SN community as part of the daily rewards.\n\n\nFurthermore from the FAQ…\nHow Does Stacker News Rank Content?\nStacker News uses sats alongside a Web of Trust to rank content and deter Sybil attacks.\nAs explained here, stackers can send zaps to each other by clicking the lightning bolt next to a post or comment. The zap amounts are one factor that helps determine which content ranks highest on the site, and are weighted by how much the stacker sending the zap is trusted.\nThe Stacker News ranking algorithm works as follows:\n* The number of stackers who have zapped an item\n* Multiplied by the product of the trust score of each stacker and the log value of sats zapped\n* Divided by a power of the time since a story was submitted\n* Plus the boost divided by a larger power (relative to un-boosted ranking) of the time since a story was submitted\nThe comments made within a post are ranked the same way as top-level Stacker News posts.\n\nSo I will continue to give @TheWildHustle the blue lightning bolt and zap 1000 sats to give the equivalent of 3 votes. His proof of work music has earned it! Every sat past 1 is NOT “The Dead Zone” but the Wild West, cowboy 🤠 https://stacker.news/items/714354/r/realBitcoinDog?commentId=714679\n\nKeep up with the memes tho! 🫡\n![](https://m.stacker.news/56413)\n“should I always remind you all that sats are scarce?” -@Darthcoin https://stacker.news/items/714998/r/realBitcoinDog?commentId=715235 \N 19581 \N 424288 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.47769432612673 0 \N \N f 207377172 \N 2 99846451 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 444456 2025-03-19 22:28:46.5 2025-03-29 22:39:52.444 \N I'm not a doomer or booster of AI. There's a lot of hype but to your point about competing with humans... I'll leave one of my favorite quotes about the absurdity of make work projects pushed by socialist and communists.\n\n> While traveling by car during one of his many overseas travels, Professor Milton Friedman spotted scores of road builders moving earth with shovels instead of modern machinery. When he asked why powerful equipment wasn't used instead of so many laborers, his host told him it was to keep employment high in the construction industry. If they used tractors or modern road building equipment, fewer people would have jobs was his host’s logic. "Then instead of shovels, why don’t you give them spoons and create even more jobs?" Friedman inquired.\n\nI believe our concern with AI should be the centralization and control by governments/corporations. https://example.com/ 21734 444419 443712.444290.444419.444456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89321002950376 0 \N \N f 214362050 \N 1 246984290 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421801 2025-03-02 02:03:16.614 2025-03-29 22:39:52.444 \N I don't know what a cowboy hat is and at this point I'm too afraid to ask https://example.com/ 12516 421778 421778.421801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7610167297021 0 \N \N f 479076246 \N 3 38910406 0 f f \N \N \N \N 421778 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447063 2025-03-21 15:38:11.386 2025-03-29 22:39:52.444 \N \nDollar is nothing more than a big shitcoin - because is losing a lot of its purchasing power every decade.\n\nSo obviously every USDT, USDC etc which mimics shitcoin - is also shitcoin **by definition**\nbut even worse - because with: yet another possible point of failure :) https://example.com/ 19655 446452 446371.446452.447063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7632326038666 0 \N \N f 847893510 \N 7 215158879 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404107 2025-02-15 14:56:40.506 2025-03-29 22:39:52.445 \N how will splicing impact LN node operators? https://example.com/ 4238 404000 403996.404000.404107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1290015621789 0 \N \N f 398032445 \N 3 204027637 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436038 2025-03-13 09:07:29.695 2025-03-29 22:39:52.445 \N If we're thinking about this strictly from liquidity, More of the second in my view. I don't think it will be winner-take-most, I believe there will be a fairly diverse set. \n\nIf we're talking about a more general Lightning provider, I think we'd still see a decent group of offerings that focus in specific areas or types of solutions. https://example.com/ 21291 435974 435908.435974.436038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6971088996118 0 \N \N f 298766148 \N 2 244975804 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 2025-03-20 04:57:05.247 f \N \N \N 0 0 0 0 1 0 0 424101 2025-03-03 20:33:05.582 2025-03-29 22:39:52.445 \N On public channels, routing fees and max/min htlc sizes can be used to steer payments in one or the other direction. This is very helpful.\n\nPrivate channels on the other hand don't need that and can just have a static fee, maybe based on usage patterns. https://example.com/ 20603 424036 423667.423747.423777.423804.424011.424036.424101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5956204020076 0 \N \N f 181946696 \N 1 188546523 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423614 2025-03-03 13:42:06.816 2025-03-29 22:39:52.445 \N Like every man of my age I have watched both movies probably close to 100 times. I still consider them my favorite movies. But, so much of the material has become cliche now that you may find it hokie. I first saw The Godfather with my father when I was a young teenager. It was a limited release so we had to drive to the city to see it. It had a real impact on me, since I was an Italian American kid. I also read the book at that time. I loved it, but later on I read Puzo's two earlier novels, The Dark Arena and Fortunate Pilgrim. They were much more what you might think of as serious fiction. I thought they were excellent. I learned that Puzo only wrote The Godfather because he knew a mafia book would pay the bills, and he was a young father. His first two novels didn't bring in much money.\nIf you decide to watch them, I would like to hear what you think. https://example.com/ 12368 423468 423468.423614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.22616110690079 0 \N \N f 130544454 \N 1 27214844 0 f f \N \N \N \N 423468 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427548 2025-03-06 13:38:47.865 2025-03-29 22:39:52.445 \N He seems honest and he admits when he's wrong, which is a huge plus for me. He also can talk forever without fear of saying the wrong thing. We're all so used to this packaged sound byte crap. Everything is controlled. \n\n https://example.com/ 1261 427359 426635.427042.427359.427548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.999778840178607 0 \N \N f 70907205 \N 1 27943901 0 f f \N \N \N \N 426635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401703 2025-02-13 10:33:38.033 2025-03-29 22:39:52.445 \N |Instance|Flag|Status|\n|-|-|-|\n|sn1|`w45_tH15_Y0vR_f1r57_c7F_b69d7117`|works|\n|sn2|`w45_tH15_Y0vR_f1r57_c7F_c645fec4`|works|\n|sn3|`w45_tH15_Y0vR_f1r57_c7F_4a6c3ac2`|works|\n|sn4|`w45_tH15_Y0vR_f1r57_c7F_13b4d53c`|works|\n\nThe other two instances are not usable at the moment. I will add another comment if I get a chance to test them when they're usable. Or I'll edit this comment, if it happens in the next 10 minutes :)\n\n\n* OS: macOS\n* Browser: Chrome\n* https://signet-app.mutinywallet.com/\n* https://lnbits.ekzyis.com\n\nAnd yes, this was my first CTF :) https://example.com/ 6537 401673 401651.401660.401673.401703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.51505421145962 0 \N \N f 275843264 \N 3 208337782 0 f f \N \N \N \N 401651 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424286 2025-03-04 00:01:23.219 2025-03-29 22:39:52.445 \N ![](https://i.imgflip.com/7gv39o.jpg) https://example.com/ 6260 424266 423928.424260.424266.424286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28916221832707 0 \N \N f 133495289 \N 1 196197313 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400588 2025-02-12 11:22:05.42 2025-03-29 22:39:48.91 A Question from a Bitcoiner's Adventure "What is with all the hawks?" I asked my friend Wyatt as we were sitting next to a pool. It was a Saturday afternoon. Life was a little too easy. \n\n"What do you mean hawks?" he asked. \n\n"I've been seeing them everywhere. That's the third one today. Look!" I said. pointing to the sky where a \nred tailed hawk drew a circle. At that moment Jamie, Wyatt's fiance, walked out to join us.\n\n"Maybe that's you're totem! You know, like your spirit animal." She said. At first I though she was crazy. But you can't call women that.\n\n "What do you mean?" I asked politely. Being careful not to get slapped for the 42nd time.\n\n"Lets look it up!" she cheered. Excited to talk about some Native American magic. she whipped out her phone and began to type. \n\n"Hawk" tap tap tap. "to. . . tem" tap tap. "Oh here's what this website says 'From a Biblical perspective, a hawk is a symbol of divine guidance and that you are being watched out for from above. Pay attention to your thoughts when you see one. That will guide you'." She paused. "What were you thinking before you saw it?"\n\n"Same thing I've been thinking about all month. I feel like I should be doing something meaningful with my life. The 9 to 5 just isn't for me." We talked more about it and I went home a few hours later. \n\nLater that week as I was driving to work with the regular bitcoin podcasts in rotation. Everyone was talking about El Salvador adopting Bitcoin. I kept thinking about how interesting that was. I still find it fascinating. There is so much untapped potential. It's the first country in the history of humanity to make a decentralized digital currency legal tender. \n\n"Maybe I should move to El Salvador." I chuckled to myself. That very same moment, a Hawk swooped in front of my car window. \n\n#### *I'm not superstitious, but sometimes you gotta say fuck it*. \n\nI put in my 2 weeks, found a remote job, and bought a one way ticket.\n\nThis part of the story, I've talked about many times. I met the locals, surfed, asked lots of questions about bitcoin. Got bit by a brown recluse, got in a bar fight. Made some art. Ended up touring coffee plantations and started my own coffee brand. I didn't sell very much though. Looking back I focused way too much on the tech. I wanted to make the coolest software in the world. I was ignoring the most important lesson from the whole journey. **For mass adoption to happen, there needs to be more work in the real world, not the digital one.** But while I was being a dumb ass with the tech, 100 lb of the best coffee in the world began to go stale at my apartment. I lost my job that was funding everything and altogether stopped working on it. \n\nSince then I've bounced around a lot. Its been hard finding a home anywhere as an employee. You can imagine all the struggles as a result. \n\nThe story about the hawk is true. I know I sound like a nut case, but when something like that happens to you, how do you go back to the regular 9 to 5? \n\nI've never told anyone the moment I decided to go because it sounds insane. But I keep thinking about it and I want to know what the community thinks. \n\n## Am I ignoring the call to adventure by not selling any coffee? \n\nI don't know. It's been a year and a half since I had to throw out my supply. Maybe it's been too long, maybe not. But **I keep thinking about it.**\n\nSo Let me know what you think. If I can get 100k sats on this post I'll get in touch with my supplier and set up shop again. Hyper focusing on real world sales, not trying to build the best software.\n\n\n\n \N 2640 \N 400588 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.0583106742915 0 \N \N f 199898330 \N 1 221631492 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404479 2025-02-15 22:47:39.134 2025-03-29 22:39:48.911 gnilma's Hiking Adventures 47 - Flood Falls Continuing the waterfall mini-series, this week we head to Flood Falls, located near Hope BC. The parking lot at the Flood Falls trailhead is not very big, but fortunately, the trail is also not very popular, so finding parking was pretty easy for us. The [Flood Falls trail](https://www.alltrails.com/trail/canada/british-columbia/flood-falls) is a short and easy 1km out-and-back trail with minimal elevation gain. The trail was flat, wide, and well maintained; although we had to cross a short section of rocks before reaching the falls. Throughout the trail, we were surrounded by the forest, but due to the low elevation and loose canopy of the trees, we saw quite a bit of undergrowth during our walk. We reached the falls after a short 10 minute walk and was able to get right next to the falls. There was also a pool of water at the bottom of the falls, so the kids spent some time playing in the water before we all headed back to the car.\n\n![](https://m.stacker.news/62016)Sign at the trailhead.\n\n![](https://m.stacker.news/62017)Trail was flat and wide.\n\n![](https://m.stacker.news/62018)Crossing over some sections of rock before reaching the falls.\n\n![](https://m.stacker.news/62019)Falls in sight.\n\n![](https://m.stacker.news/62020)Closer look at the falls.\n\n![](https://m.stacker.news/62021)Even closer look at the falls.\n\nCheck out my previous hikes:\n1. [The Panoramic Views of Panorama Ridge](https://stacker.news/items/340024)\n2. [The Golden Larches of Frosty Mountain](https://stacker.news/items/346354)\n3. [The Winter Snow of Pump Peak at Mount Seymour](https://stacker.news/items/354813)\n4. [Sapphire Waters and Azure Skies of Battle Bluff](https://stacker.news/items/363236)\n5. [It Isn't Always Sunshine and Blue Skies](https://stacker.news/items/372238)\n6. [The Frozen River and Waterfalls of Maligne Canyon](https://stacker.news/items/379614)\n7. [The Amazing Arches of Arches National Park](https://stacker.news/items/387930)\n8. [The Bizarre Hoodoos of Bryce Canyon National Park](https://stacker.news/items/395513)\n9. [The Magnificent Stones of Zion National Park](https://stacker.news/items/403687)\n10. [The Flowing Walls of Lower Antelope Canyon](https://stacker.news/items/412416)\n11. [A Glimpse of Hope at the Hope Lookout Trail](https://stacker.news/items/421282)\n12. [Turquoise Waters viewed from Sea to Summit Trail](https://stacker.news/items/429724)\n13. [The Three Peaks of Mount Seymour](https://stacker.news/items/438583)\n14. [The Serene Winter Scene at Dog Mountain](https://stacker.news/items/447788)\n15. [Murrin Loop and Jurassic Ridge](https://stacker.news/items/459422)\n16. [Yosemite National Park](https://stacker.news/items/478291)\n17. [The Bear's Hump at Waterton National Park](https://stacker.news/items/488620)\n18. [Views of Okanagan from Pincushion Mountain Trail](https://stacker.news/items/497535)\n19. [The Half Frozen Waterfalls at Franklin Falls](https://stacker.news/items/505137)\n20. [Hole in the Wall of Vancouver Island](https://stacker.news/items/513131)\n21. [Sometimes You Just Get Lucky](https://stacker.news/items/521584)\n22. [Winter Wonderland at Alexander Falls](https://stacker.news/items/529486)\n23. [Eagle Bluffs](https://stacker.news/items/537195)\n24. [Smuggler Cove Marine Provincial Park](https://stacker.news/items/544822)\n25. [Admiralty Point](https://stacker.news/items/552364)\n26. [Myra Canyon Trail](https://stacker.news/items/559705)\n27. [Garabaldi Lake](https://stacker.news/items/568115)\n28. [Botanical Beach Loop](https://stacker.news/items/576612)\n29. [Wild Pacific Trail Lighthouse Loop](https://stacker.news/items/583759)\n30. [Whistler Train Wreck Trail](https://stacker.news/items/591724)\n31. [Grouse Grind](https://stacker.news/items/599888)\n32. [Crown Mountain](https://stacker.news/items/608796)\n33. [Chance Cove Coastal Trail](https://stacker.news/items/634868)\n34. [Big Four Ice Caves](https://stacker.news/items/644656)\n35. [Stawamus Chief First Peak](https://stacker.news/items/653690)\n36. [Four Lakes Trail at Alice Lake Provincial Park](https://stacker.news/items/661401)\n37. [Four Lakes Trail Winter Revisit](https://stacker.news/items/669167)\n38. [Lindeman Lake Trail](https://stacker.news/items/677226)\n39. [Malcolm Knapp Research Forest](https://stacker.news/items/685970)\n40. [Steelhead Falls](https://stacker.news/items/697015)\n41. [Cascade Falls](https://stacker.news/items/704665)\n42. [Dawson Falls](https://stacker.news/items/712603)\n43. [Bridal Veil Falls](https://stacker.news/items/722161)\n44. [Kay Falls and Bear Creek Falls](https://stacker.news/items/732669)\n45. [Lions Bay Loop and Crystal Falls](https://stacker.news/items/742494)\n46. [Overlander Falls](https://stacker.news/items/751977) \N 20655 \N 404479 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.9942114679838 0 \N \N f 197696086 \N 1 178257746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447715 2025-03-22 04:20:12.639 2025-03-29 22:39:48.91 Privacy Club - January 2024 📆 It's obviously too early to talk about new years resolutions. We all know, that we won't keep them up until February. The intention with this post however is to telegraph a plan for ~privacy next month.\n\nThe goal: get Stackers off from using services that don't give a duck 🦆 about user privacy.\n\n![Duck'n new years resolutions](https://image.nostr.build/20c861b81a84b3ddbc7e0b4c25d5543dc55781ef447ec22f8c04fb775e465b8d.png)\n> *📸 Remix of a cartoon from [FoulLanguageComics](https://www.fowllanguagecomics.com/).*\n\n### The Privacy Problem\nFar too many of us (including myself) are still relying on centralised servers and corrupt-corporations for nothing more than convenience. Given the awesome reaction to the [SN Privacy Directory V1](https://stacker.news/items/342249) last week, I'm sensing an acknowledgment that people are ready & wishing to consider alternatives. They maybe just need a shove.\n\nWe could of course use tough-love to shame stackers that are ignorant to alternatives. Or we could do things a little bit differently around here and lead by example...\n\n------------\n\n### WTF happens until January 21\n`January 1 - January 21 2024`\n\nThe proposal is to have a single day to try-out a privacy task or free and open-source 'challenge'. A chance to experiment with new software & new methods. Even if for nothing more than having some additional redundancy in our technology stack, as well as to generate some cowboy-camaraderie for good measure...\n\n### What is the schedule?\nI have given this not much more thought than 45 minutes, but I am proposing for us follow a schedule something along the lines of:\n\n\n| Jan 24 | Category | **Description of task** |\n|-----------------------|---------------------------|-------------------------------------------------|\n| `1` | **VPN** | Buy MullVad / Proton / alternative VPN subscription with 🌽 (starting small & simple) |\n| `2` | **Domain** | Buy a domain privately with BTC and set-up 21 email aliases. |\n| `3` | **Coinjoin** | Celebrate proof-of-keys by normalising a coinjoin spend. Tuck it away in cold storage right after. |\n| `4` | **Passwords** | Password manager, e.g. KeepassXC / Vaultwarden. We'll store, switch & segregate all our services into new email addresses from #2. |\n| `5` | **Email & Browser Clients + Search** | New default apps & experiences. `Afuera` with Google & Apple! |\n| `6` | **New Computer OS** | Setup Linux (and/or Start9, Umbrel) - even on Mac hardware, with/without partitions |\n| `7` | **2FA** | Yubikey / Aegis / other FOSS solutions + linking to all our online accounts. |\n| `8` | **File Server** | Setup NextCloud / Rclone / ProtonDrive / TrueNAS on devices. Or configure a purpose-bought Synology NAS. |\n| `9` | **Spend Bitcoin** | Buy physical products to an alternative address than your home (or fund a FOSS project as your 'fine') |\n| `10` | **Nostr relay** | Configure your own Nostr relay, for when censorshit 💩 hits the fan. |\n| `11` | **2nd Phone** | Your first open-source operating system on a (Pixel) mobile device, together with some favourite FOSS apps |\n| `12` | **Site Hosting** | Pay with BTC and host your own Wordpress website with BTCPay, Mutiny or LNBits instance. |\n| `13` | **Heavy 'Metal' Day** | A day to stamp seeds on metal and/or listen to Metallica. Bonus points if you disturb your neighbours! |\n| `14` | **Videocalls** | Try-out open-source videocalls with a friend/family. |\n| `15` | **Backups** | Secure encrypted local file storage & boring best practices. |\n| `16` | **SECRET 16** | Absolutely not because I ran out of ideas. Leaving a space open for suggestions & a surprise... |\n| `17` | **Managing Identities** | Swapping-out and segregating IDs / keys, plus best practices when posting online. |\n| `18` | **Messaging** | 'Sack-off' Telegram, Whatsapp and even Signal. A chance to test out new secure direct messaging. |\n| `19 ` | **Lightning Channel** | Private node & channel open, performing atomic swap (& perhaps payjoin) to open. |\n| `20 ` | **Orange-Pilling Merchants** | Ask a business/worker if they accept Bitcoin as payment/tips & send them P2P kyc-free sats. |\n| `21` | **Bitcoin Buys** | Purchase non-KYC or P2P only. Celebrating Day 21 in style! |\n\n*Note*: This is by no means set-in-stone, but I wanted to share a first-draft to get the Stacker's thoughts. Are you interested in such a daily format?\n\nThere'll be many of you who have already taken all these steps and even gone beyond. But I suspect the vast majority are still creatures of comfort and habit, having (like me) a handful of items still to check-off their list.\n\n-----------\n\n### Why now?\nIn-spite of not being blessed with a lot of time next month, I do really want us Stackers to level-up our privacy, with nothing more than a **30-60 minute commitment each day.** It needs to be accessible.\n\nIf we all do similar tasks on similar days, it's my hope that it is going to be much more impactful and insightful. People can jump-in & out. Stackers can be sharing their first-time experiences on a similar schedule. We can also invite "vader-veterans" to break-down and provide input into what has worked for them in past months.\n\nI'm posting this in advance because if there is demand for this 21 day series, you're going to need a bunch of **non-KYC corn to purchase software & services** from bitcoin-affiliated projects. You may either need to stack or coinjoin in these coming weeks, finding an opportune time for when the mempool clears it's bowels of JPEGs.\n\n### What you might need?\nThis is also an announcement of an announcement, simply because you may wish to put 1 or 2 things on your festive wish-list. \n\nBy the second week, there's the option to adopt some new hardware. This will be useful if you want to get started with Graphene (mobile), Linux (laptop/desktop) or say a Yubikey for example. Ask Santa nicely!\n\n`Tip` - If you are making any hardware purchases (particularly phones), it may be best to do so in cash using second-hand marketplaces. Buying directly from the manufacturer's websites will have them record your serial number against that transaction. It *will* take a little more effort, but your future self/nym may thank you for it. Ignore this advice for hardware wallets & yubikeys, for obvious security reasons.\n\n### How it works?\nMuch like [book club](https://stacker.news/items/317108/r/davidw) instigated by @elvismercury, which has been an overwhelming success on SN, this will be a collaborative effort. **Each day in the month of January up to the 21st**, will likely be a new post. Inside we'll compare solutions, setups and early impressions. Evaluating whether we will transition over to FOSS software or not.\n\nDepending on how things go, we may find some additional techniques and tricks to extend it to a full month. Who knows if I can coordinate all of this and reliably post each day, but at least we'll see if Stackers can provide some needed accountability here.\n\nAt the end of January 2024, I will post the StackerNews post links in the comments to each of the sessions. That way, anyone living under a rock can discover all of that stacker gold from this very place in future. \n\nOn each day's post, I can make a habit of mentioning what is coming up the following day, so people are aware and can prepare some time in their tomorrow to join (or make intolerable excuses).\n\n--------\n\n### Want to be notified on particular days?\nif you want to be tagged on a particular day, shout in the comments, e.g:\n- *`Spam me - Days 9, 13, 21`*\n- *`Spam me - All days`*\n\n### Any recommendations or questions?\nGot any suggestions on how to schedule or make this as productive as possible? Or entries you'd swap in or out? Hit that reply button also...\n\n\n------\n\n*P.S. I'm probably going to call this series `Privacy Pub`, rather than `Privacy Club` . Mainly because the regulars hang-out in the saloon all day, it's a pub-lic discourse and (importantly) it's 1 less character to type-out each day. Hope you dig the format & idea...*\n\n![](https://i.gifer.com/origin/64/64f408113a871004776909391c185a69_w200.gif) \N 1658 \N 447715 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 8.52421493523995 0 \N \N f 538107573 \N 4 249430248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 442817 2025-03-18 20:47:39.262 2025-03-29 22:39:48.911 Starting a Territory Just realized you have to pay sats to start a territory. What a cool idea! I love it. Keeps the BS down to a minimum and it gives me something to spend sats on here besides the zaps. I'm saving up for a woodworking territory. :) \N 16276 \N 442817 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.5283197815117 0 \N \N f 236984979 \N 1 77238411 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410256 2025-02-20 11:53:15.31 2025-03-29 22:39:52.445 \N Yeah organic growth is the best\n\nEternal September is a real thing https://example.com/ 634 410135 410135.410256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.187681960612 0 \N \N f 122079283 \N 1 206539808 0 f f \N \N \N \N 410135 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458276 2025-03-29 06:52:39.729 2025-03-29 22:39:52.445 \N I'm still running private and business accounts denominated in Euro. So yes, I am a shitcoiner. And it's a sad thing to say! https://example.com/ 8080 458248 458227.458241.458248.458276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9451438136186 0 \N \N f 900417673 \N 9 1164777 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413897 2025-02-23 14:19:27.294 2025-03-29 22:39:52.445 \N We can talk more about this directly later lol\n\nBut in general, there is a steep language barrier for Japanese people and if you really try to attract more people from Japan, you may need to create a Japanese language section or something. \n\nWe also have a similar concept website in Japan called spotlight and some people use it write blog posts etc. FYI.\n\nhttps://spotlight.soy/ https://example.com/ 848 413889 413523.413534.413592.413595.413640.413647.413889.413897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.899883323773 0 \N \N f 206407465 \N 1 162052992 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416721 2025-02-25 19:44:57.922 2025-03-29 22:39:48.911 Why Being a Founder Sucks - Bitcoin Startup Day 2024 - André Neves ![oqGrgpD.webp](https://m.stacker.news/21769) https://andreneves.co/2024/bitcoin-startup-day 9552 \N 416721 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 24.9250997952776 0 \N \N f 289930264 \N 3 163001998 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422704 2025-03-02 16:28:37.545 2025-03-29 22:39:48.911 SN Saturday Newsletter 6/15/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [Running a Bitcoin Hostel in El Salvador](https://stacker.news/items/571274)\n - [@CarlBMenger](https://stacker.news/CarlBMenger) shares their dream of running a Bitcoin hostel, named "Forever, Laura", in El Salvador.\n - 13.1k sats \\ 32 comments \\ [@CarlBMenger](https://stacker.news/CarlBMenger)\n2. [How to MAKE your own Cold Wallet 🕶️](https://stacker.news/items/569901)\n - [@Natalia](https://stacker.news/Natalia) teaches us how to make a cold wallet on the cheap with a USB stick and [Tails OS](https://tails.net/index.en.html).\n - 24.4k sats \\ 60 comments \\ [@Natalia](https://stacker.news/Natalia)\n3. [How do feel about negotiating?](https://stacker.news/items/567962)\n - Whether you're buying or selling, certain transactions benefit from both parties having a say on price.\n - 4.2k sats \\ 104 comments \\ [@k00b](https://stacker.news/k00b)\n4. [Abandoned Adoption: Bitcoin Backslides and Hard Truths - #307](https://stacker.news/items/568743)\n - According to the author, medium of exchange adoption has regressed recently. Are their expectations too high or is this a permanent problem?\n - 2.9k sats \\ 55 comments \\ [@siggy47](https://stacker.news/siggy47)\n5. [Marginal Differences](https://stacker.news/items/571772)\n - [@frostdragon](https://stacker.news/frostdragon) shares their appreciation for small expectations and small improvements.\n - 3.8k sats \\ 14 comments \\ [@frostdragon](https://stacker.news/frostdragon)\n\n##### Lugano Trip Report\n\nInspired by [@leo](https://stacker.news/leo)'s El Salvador trip reports ([1](https://stacker.news/items/551461), [2](https://stacker.news/items/552530), [3](https://stacker.news/items/553669), [4](https://stacker.news/items/554892), [5](https://stacker.news/items/556162), [6](https://stacker.news/items/557324), [7](https://stacker.news/items/558439), [8](https://stacker.news/items/559273)), [@RedRadish688](https://stacker.news/RedRadish688) reports on their travels to Lugano, Switzerland in [Lugano Trip Report](https://stacker.news/items/574381).\n\n##### Don't miss\n- [Bitcoin Case Study - Buying an Ebike with Ecash](https://stacker.news/items/572849)\n- [Bitcoin is a Tradfi Asset now](https://stacker.news/items/572905)\n- [⚡Announcing Storm.pub!⚡Lightning Enabled version of YouTube, Future Nostr Client](https://stacker.news/items/569828)\n- [Travel Light](https://stacker.news/items/567654)\n- [Cool update on hedgehog protocol](https://stacker.news/items/569957)\n- [What is the Biggest Financial Regret of Your Life?](https://stacker.news/items/566659)\n- [Fiatjaf, Nyms and developers anons by Rockstar Dev](https://stacker.news/items/568755)\n- [Did you love money before you loved bitcoin?](https://stacker.news/items/571028)\n- [Thinking about lenses through which we see the world](https://stacker.news/items/571737)\n- [Instead of your life's purpose](https://stacker.news/items/568886)\n- [Open AI Appoints Former NSA director to the board](https://stacker.news/items/573763)\n- [Do you think of Bitcoin of your "last chance" of "making it"?](https://stacker.news/items/574059)\n- [Bitcoin as a disruptor to the current monetary system](https://stacker.news/items/571557)\n- [What was the worst advice you've ever been given? ](https://stacker.news/items/566903)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Cheers To 3 Years Of Stacker News! Here's To Many More](https://stacker.news/items/570337)\n- [Faux pass?](https://stacker.news/items/574381)\n- [Do we need another daily Bitcoin Saloon?](https://stacker.news/items/569103)\n\n##### This day in Stacker News\n\n[@Undisciplined](https://stacker.news/Undisciplined) begins a series sharing historical posts on SN.\n\n- [This Day in Stacker News: June the 10th](https://stacker.news/items/569328)\n- [This Day in Stacker News: June the 11th](https://stacker.news/items/570204)\n- [This Day in Stacker News: June the 12th](https://stacker.news/items/571554)\n- [This Day in Stacker News: June the 13th](https://stacker.news/items/572665)\n- [This Day in Stacker News: June the 14th](https://stacker.news/items/573651)\n- [This Day in Stacker News: June the 15th](https://stacker.news/items/574834)\n\n-------\n\n##### Top Stackers\n1. [@Undisciplined](https://stacker.news/Undisciplined): 102.7k sats stacked\n2. [@Rsync25](https://stacker.news/Rsync25): 78.7k sats stacked\n3. [@k00b](https://stacker.news/k00b): 70.9k sats stacked\n4. [@grayruby](https://stacker.news/grayruby): 65.5k sats stacked\n5. [@jeff](https://stacker.news/jeff): 59.2k sats stacked\n\n------\n\n##### Top Spenders\n1. [@k00b](https://stacker.news/k00b): 268.5k sats spent\n2. [@Undisciplined](https://stacker.news/Undisciplined): 85.7k sats spent\n3. [@ambosstech](https://stacker.news/ambosstech): 50.1k sats spent\n4. [@grayruby](https://stacker.news/grayruby): 39.5k sats spent\n5. [@TNStacker](https://stacker.news/TNStacker): 37.1k sats spent\n\n------\n\n##### Top Cowboys\n1. [@k00b](https://stacker.news/k00b): 384 days\n2. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 281 days\n3. [@elvismercury](https://stacker.news/elvismercury): 278 days\n4. [@Undisciplined](https://stacker.news/Undisciplined): 263 days\n5. [@JerryGarcia](https://stacker.news/JerryGarcia): 263 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 21805 \N 422704 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.1608927994014 0 \N \N f 135806714 \N 2 215358168 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443548 2025-03-19 12:13:28.003 2025-03-29 22:39:52.445 \N I'm not sure nostr is ready for this, But i'd rather have something spun up and going that's rough than nothing. https://example.com/ 20990 443295 443295.443548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6922150704685 0 \N \N f 259891246 \N 4 173015688 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:07.675 f \N \N \N 0 0 0 0 2 0 0 413957 2025-02-23 14:46:15.599 2025-03-29 22:39:52.445 \N Thanks. Appreciate the shout out but was just having fun with all my degen (you included) friends. \n\nPost of the year was the Satstraiser for Anita. Hat tip to @siggy47 https://example.com/ 7185 413943 413675.413903.413943.413957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.6508078444291 0 \N \N f 273008534 \N 2 139246139 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443142 2025-03-19 04:54:52.897 2025-03-29 22:39:52.445 \N Hello everyone. I write this with great sadness and without hope. Yesterday, once again, it was proven that there is a bloody dictatorship in my country, Venezuela. Electoral fraud occurred as expected and as it has happened other times, but something different happened, this time there is evidence to confirm it. Last night in my insomnia I left this post https://stacker.news/items/626469/r/bief57, I hope you can see it and witness the atrocities committed by the tyranny in Venezuela. My country is kidnapped. https://example.com/ 21825 442751 442751.443142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.58835386603791 0 \N \N f 228449185 \N 1 111177402 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 2025-03-26 04:56:25.908 f \N \N \N 0 0 0 0 1 0 0 431200 2025-03-09 16:02:45.226 2025-03-29 22:39:52.445 \N If you own $MSTR. You get:\n\n1. Bitcoin\n2. Leverage\n3. The company\n4. Saylor\n5. And all the Bitcoin/Lightning implementations Giga Chad's gonna do.\n\nThe guy is early and all in. I'm so bullish. Get a share. https://example.com/ 1833 403633 403633.431200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9465329821634 0 \N \N f 245780492 \N 1 46006823 0 f f \N \N \N \N 403633 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433905 2025-03-11 13:58:41.28 2025-03-29 22:39:52.445 \N you don't even do your homework and expected to be gave sats? 😂😂😂\n\nwhat happened to POW? https://example.com/ 21685 433869 433066.433088.433456.433557.433869.433905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9686478236251 0 \N \N f 415355221 \N 3 192642547 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406569 2025-02-17 12:45:57.674 2025-03-29 22:39:52.445 \N ![](https://i.imgur.com/pZKUp10.jpg) https://example.com/ 18678 406540 406540.406569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2162417862522 0 \N \N f 48563861 \N 1 109914964 0 f f \N \N \N \N 406540 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437946 2025-03-15 02:22:41.384 2025-03-29 22:39:48.911 What are the best home security systems / cameras / monitoring recommendations? \N \N 17817 \N 437946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9073040344473 0 \N \N f 399230537 \N 2 50792733 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 442191 2025-03-18 13:22:37.96 2025-03-29 22:39:48.911 Making a Store I'm slowly trying to set up an online presence and storefront for my woodworking business. I don't enjoy taking photos/videos of my stuff and build process, but it's something I need to do if I ever want to make any money at this. \n\nI set up an Instagram for the first time this year, and it's got 72 followers, give or take, which I guess is a good start. (I was told that I needed Instagram in order to be considered for an art show I wanted to sell at) Not really enjoying the app, nor do I enjoy being involved with zuck in any way, but I guess I have no choice for now. \n\nAnyway, Nostr seems to be right on time to rescue me from having to deal with insta forever. I've downloaded a couple android apps, Plebstr, Amethyst, and Iris (not tried that one yet), and I'm wondering what other people recommend. \n\nIs one App better than another for setting up a store front? I'm really just looking to sell wooden bowls and spoons that I carve, because they are small and easy to ship. Any pros and cons(about the apps) people can give me, advice, etc. would be great. \n\nAlso, I'm a Linux user, so recommendations for a decent looking desktop app would be appreciated, as well. I've tried "Gossip", but I'm interested in seeing others that people like. \N 16513 \N 442191 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 16.2050641212513 0 \N \N f 984968855 \N 8 218124647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 306844 2024-11-24 14:38:34.735 2025-03-29 22:39:48.911 For you highly active devs out there, how do you do it? For some background, I'm a developer and am in a position where I can contribute to FOSS full time. Issue is, I'm shit at managing my time and sitting down to crank out some good work. Free sats to anyone that's got good time management/motivation.tips :) \N 5978 \N 306844 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5949985248075 0 \N \N f 131826764 \N 1 131480814 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436159 2025-03-13 11:03:09 2025-03-29 22:39:52.445 \N I notice that many SN users still didn't read FAQ page.\nPeople don't want to read, especially FAQ pages. Sad. https://example.com/ 16929 435944 435944.436159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8269121860358 0 \N \N f 473680425 \N 2 22404572 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 04:22:26.417 f \N \N \N 0 0 0 0 1 0 0 416209 2025-02-25 13:33:30.26 2025-03-29 22:39:52.445 \N Fullrbf should just be called "reality", because that is what it is. Breaking the delusion that you cannot double spend on the mempool. https://example.com/ 21119 416158 416158.416209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0695046440607 0 \N \N f 296254321 \N 3 39789693 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434358 2025-03-11 20:15:28.487 2025-03-29 22:39:52.446 \N One thing that I don't like is that it doesn't appear to be open source, and I don't appear to be able to use a proxy to see what traffic is being sent where (Damus is both open source and I can proxy the traffic). Granted, that could be for better security (e.g. if they're using certificate pinning)\n\nIf you care about privacy that might be a reason not to use it for now. Maybe someone from the team can chime in on this. https://example.com/ 909 434278 434278.434358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.45338991596601 0 \N \N f 368955931 \N 2 108497840 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 19:00:55.547 f \N \N \N 0 0 0 0 1 0 0 458047 2025-03-28 22:19:45.248 2025-03-29 22:39:52.446 \N Making more progress in my cabin project 🙂 Yesterday my friend and I managed to mount the ridge up. He's coming by for the last few days, helping out with the work at height. I also had some time to screw the plywood down to the wall frames. \n\nToday I plan to cut the rafters and then lay them down on the ridge 🙂\n\n![laying down more plywood](https://i.ibb.co/TWW1grR/laying-down-more-plywood.jpg)\n![laying down even more plywood](https://i.ibb.co/vwqdMp3/laying-down-more-plywood-1.jpg)\n![front wall with a window](https://i.ibb.co/DYcd7bF/front-wall-frame.jpg)\n\nHave a great day ahead! https://example.com/ 4624 458044 457845.458044.458047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.9537043030017 0 \N \N f 112829088 \N 1 28477727 0 f f \N \N \N \N 457845 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 425966 2025-03-05 10:16:16.917 2025-03-29 22:39:52.446 \N This one is from our library which added the foundational support for it. We're almost done with the UI for it now, hopefully out this week. https://example.com/ 8713 425959 425959.425966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9625010426842 0 \N \N f 324855679 \N 2 2446539 0 f f \N \N \N \N 425959 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435276 2025-03-12 15:14:14.06 2025-03-29 22:39:48.917 Bitcoin scholarship covers 100% college tuition Chaincode is awarding a bitcoin scholarship covering full tuition for an undergraduate anywhere in the world.\n\nApply before the Aug 31 deadline.\n\nFAQs and application link at:\nhttps://bitcoinscholarship.xyz https://x.com/ChaincodeLabs/status/1820869901546058199 17690 \N 435276 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.48409609966743 0 \N \N f 640692526 \N 4 122573075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 08:42:34.634 f \N \N \N 0 0 0 0 4 0 0 435639 2025-03-12 20:49:54.983 2025-03-29 22:39:48.917 onboard my local cafe I'm going to meet up with the owner of my local cafe this week.\n\nI'd like to give him some options for accepting bitcoin. \n\nSo I think a point of sale on his mobile phone would be best. \n\nI see Wallet of Satoshi has one & also Breez (but no Australian dollars unfortunately).\n\nI'd prefer to get him to take self custody of the wallet, but at the moment I'm not sure how orange pilled he is. He might want to keep the profits in BTC & the product cost might go back into fiat.\n\nAnyway, what recommendations does SN have? \N 2402 \N 435639 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.191818564644 0 \N \N f 1700866491 \N 16 74955448 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 11:12:37.61 f \N \N \N 0 0 0 0 10 0 0 443689 2025-03-19 13:18:09.409 2025-03-29 22:39:52.446 \N As a US citizen I find it amazing that she would leave so quickly. You'd have to drag one of our clowns out of office kicking and screaming https://example.com/ 7869 443577 443577.443689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0345179908688 0 \N \N f 271768356 \N 2 93047832 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:35:48.592 f \N \N \N 0 0 0 0 1 0 0 423856 2025-03-03 16:41:45.543 2025-03-29 22:39:52.446 \N An infinite decision in the hands of finite beings strikes me as unwise. https://example.com/ 15336 423743 423743.423856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.643321684529 0 \N \N f 87677752 \N 1 9341156 0 f f \N \N \N \N 423743 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447194 2025-03-21 17:17:34.348 2025-03-29 22:39:52.446 \N Excellent great work. Miss the Lightning Liquid information. https://example.com/ 1465 447164 446456.447164.447194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.28858238682 0 \N \N f 299518885 \N 2 156700159 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 11:12:13.278 f \N \N \N 0 0 0 0 1 0 0 450814 2025-03-24 08:56:40.48 2025-03-29 22:39:52.446 \N Tried to consolidate my UTXOs by using Samourai Wallet. Easy going. https://example.com/ 19930 450618 449878.450618.450814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.708728446865 0 \N \N f 227217754 \N 1 116206535 0 f f \N \N \N \N 449878 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444179 2025-03-19 17:58:44.017 2025-03-29 22:39:52.446 \N Shameless plebvpn plug. Only for raspiblitz right now, but we're working on adding MyNode support and creating a "turn-key" solution for hosting your own instance.\n\nhttps://github.com/allyourbankarebelongtous/Pleb-VPN https://example.com/ 14169 443712 443712.444179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3363805716933 0 \N \N f 398196851 \N 3 56597186 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435364 2025-03-12 16:15:33.993 2025-03-29 22:39:52.446 \N ~Lightning is the third territory just breaking 100k this month.\n\n![](https://m.stacker.news/59189)\n\nThank you to all participants for joining the conversation, in particular: @Rsync25 @Scoresby @supratic @mega_dreamer @Alby @root_lib @fewsats @aljaz @_ds @03bc2a54dc @pycan @0xbitcoiner @Filiprogrammer and many more 🙏 https://example.com/ 12951 435355 435314.435355.435364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2897441529266 0 \N \N f 194359862 \N 1 37974988 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:40.415 f \N \N \N 0 0 0 0 1 0 0 433735 2025-03-11 10:58:21.235 2025-03-29 22:39:52.446 \N I think if you get enough downzaps. But only people who are chronically worthless need to worry about it. https://example.com/ 20965 433555 433555.433735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1703619489932 0 \N \N f 202284909 \N 1 233138895 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 01:05:30.782 f \N \N \N 0 0 0 0 1 0 0 428723 2025-03-07 14:44:17.354 2025-03-29 22:39:52.446 \N New BTCPay 1.13.4 is out, several important bug fixed and enhancements. \n\nTry it out and let us know how it works for you!\n\n![](https://m.stacker.news/39823) https://example.com/ 5129 428670 428670.428723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6816901655751 0 \N \N f 421903134 \N 2 101157061 0 f f \N \N \N \N 428670 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434641 2025-03-12 05:11:54.214 2025-03-29 22:39:48.911 Mutiny Wallet forced closed, on-chain balance zero I had a forced close 4 days ago and my funds have not come back. Browsing the git hub issues there are several users reporting the same thing and comments from the devs suggesting the LSP swept the funds due to a bug. I.e. here: https://github.com/MutinyWallet/mutiny-web/issues/668 and here: https://github.com/MutinyWallet/mutiny-web/issues/634\n\nI was aware about the forced close issue but did not appreciate that LSPs could "sweep" funds due to bugs. \n\nI feel like this trade off was not fully disclosed, or at least I missed it. It seems like users could potentially be rugged by the LSP if that's the case.\n\nAppreciate the hard work of the Mutiny guys and what the project is trying to achieve but a bit surprised by this. Was this issue well know to everybody else and it's just me who thought self sovereign meant that funds could not be taken by the LSP in this way? \N 992 \N 434641 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4086572615581 0 \N \N f 476302063 \N 4 159758782 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:13:52.332 f \N \N \N 0 0 0 0 2 0 0 427552 2025-03-06 13:41:37.075 2025-03-29 22:39:48.912 BTC volume on RoboSats: September up 23% vs. August, Q3 up 213% vs. Q2 ![RoboSats - Monthly Volume (BTC)](https://i.postimg.cc/6qYB07vn/image.jpg)\n\nImage source: https://twitter.com/decentralized_b/status/1576095333028794369 [[Nitter](https://nitter.it/decentralized_b/status/1576095333028794369)]\n \N 5057 \N 427552 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 17.8537117557648 0 \N \N f 445894057 \N 2 111854956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436130 2025-03-13 10:43:27.067 2025-03-29 22:39:52.446 \N Who was the guy who would always answer in poem? https://example.com/ 6268 436102 435944.436102.436130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.70173753727291 0 \N \N f 288665694 \N 2 169072351 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 06:58:22.881 f \N \N \N 0 0 0 0 2 0 0 424596 2025-03-04 08:55:39.022 2025-03-29 22:39:52.447 \N If I remember correctly, the idea of the Big Bang stems from the "groundbreaking" book A Brief history of Time by Stephen Hawking.\n\nI don't think he intended for his very reasonable theory to lend credence to an origin or beginning of the universe, because that lends credence to the cosmological argument:\n\n1. Everything that begins to exists has a Cause.\n2. The universe began to exist.\n3. Therefore the Universe has a Cause.\n\nA few years ago, I read an article in Discover magazine that reported on his more recent work, essentially, trying to refute his earlier work in A Brief History of Time. He was dabbling in theoretical work "at the outer limits of testability" if I recall the quote correctly.\n\nThat's a fancy way of saying he was now making stuff up. https://example.com/ 2528 424591 424591.424596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6438964857547 0 \N \N f 321057804 \N 2 14985281 0 f f \N \N \N \N 424591 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407646 2025-02-18 09:13:37.874 2025-03-29 22:39:52.447 \N Good advice. Meetups make a lot of sense. https://example.com/ 21555 406078 405466.405794.406078.407646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83165604155428 0 \N \N f 217362473 \N 1 198198253 0 f f \N \N \N \N 405466 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 330774 2024-12-15 13:15:39.062 2025-03-29 22:39:52.448 \N A KINDLY: FUCK YOU COINBASE FOR THE WHOLE DAMAGE YOU'VE DONE TO THE BITCOIN WORLD. https://example.com/ 4167 330698 330698.330774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7850322386969 0 \N \N f 876127934 \N 8 229081138 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 403869 2025-02-15 09:50:53.47 2025-03-29 22:39:52.448 \N By chance, I picked out Atlas Shrugged off a bottom shelf on a Barnes and Noble trip. I had no idea what it was or that it was controversial. I just liked the cover art and the blurb. \n\nAt the time, I was living in motel room behind a Mexican restaurant in [Los Banos, Ca](https://en.wikipedia.org/wiki/Los_Banos,_California), carless, bankless, and living paycheck to paycheck as a grocery clerk. I kept the copy in my apron and read it on my breaks.\n\nIt flipped my worldview upside down. Atlas Shrugged made it clear that I was choosing to be a victim and could, instead, choose to be a hero (or at least stop being a victim). I went pretty deep on objectivism, then anarchism and Rothbard and Mises.\n\nAt some point I decided to go to college (skipping some steps here ... I didn't graduate from high school), thinking I was going to do pre-med, but took an intro computer course and got hooked. I graduated Summa Cum Laude in 2012. \n\nBeing in CS, I occasionally saw Bitcoin mentioned on HN, but didn't make the hard money link. I'd also developed a healthy distance from politics and philosophy as I went through college, further preventing me from seeing Bitcoin's significance.\n\nI bought my first Satoshis in 2014 to buy LSD on the Dark Net, and continued to buy small amounts of Bitcoin for similar purposes, still not having my Bitcoin epiphany. \n\nFast-forwarding a bit more, I was spending a lot of time on high-fat, low-carb Twitter in 2016/17 (I've always struggled with my weight) and eventually ran into [Michael Goldstein](https://twitter.com/bitstein), [Pierre Rochard](https://twitter.com/pierre_rochard), [Saifedean Ammous](https://twitter.com/saifedean), and [Jimmy Song](https://twitter.com/jimmysong). The dots finally connected between sound money and Bitcoin. I was hooked.\n\nI moved to Austin 18 months ago and quickly dedicated the rest of my career to Bitcoin after attending a few Bit Devs. \n\nStarted from Los Banos now we here. https://example.com/ 2056 403868 403824.403857.403868.403869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2477226191333 0 \N \N f 1196880653 \N 9 137611316 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441496 2025-03-18 03:37:32.242 2025-03-29 22:39:52.448 \N It was yesterday. Groceries, at my mom's organic grocery store https://example.com/ 827 441238 441238.441496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2651865251228 0 \N \N f 109999955 \N 2 192123949 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402797 2025-02-14 03:52:20.908 2025-03-29 22:39:48.912 Robinhood blocks buy access I thought that Robinhood blocked Bitcoin buying last night because of the Bitcoin price pump. I’ve seen them shutdown buy/sell on assets when they become volatile. However, when I looked closer I saw this in my account, from Robinhood:\n\n“We can no longer support your Robinhood Crypto account\nDue to your recent crypto wallet transfer(s) that violate the Robinhood Crypto Customer Agreement, we can no longer support your Robinhood Crypto account.”\n\nI asked support and they didn’t know why. The person said they would ask someone else to look into it.\n\nHow I use Robinhood: I buy a little every month. Then every few months I send to Strike to consolidate UTXOs before sending to my hardware wallets.\n\nHas anyone experienced anything like this with Robinhood?\n\n \N 11523 \N 402797 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 28.5037215926334 0 \N \N f 330922940 \N 2 209745852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 427054 2025-03-06 03:22:38.467 2025-03-29 22:39:52.446 \N Just raised and formulated a company around this for me, Ben Carman, and Paul Miller to focus on this full time going forward! Happy to answer any questions about it and what we plan on doing. https://example.com/ 8416 421704 383302.421704.427054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.701342325208323 0 \N \N f 46694937 \N 1 25443563 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428674 2025-03-07 13:55:42.807 2025-03-29 22:39:52.446 \N gringa says hello!! https://example.com/ 19524 428382 428318.428382.428674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0565324791133 0 \N \N f 629730662 \N 5 16933736 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404462 2025-02-15 22:17:19.808 2025-03-29 22:39:52.447 \N Day 424 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 15719 404442 403648.403971.404049.404442.404462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5879082550671 0 \N \N f 87776811 \N 2 87726042 0 f f \N \N \N \N 403648 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421320 2025-03-01 15:21:40.145 2025-03-29 22:39:52.447 \N Check out "The Fiat Standard" by Saifedean Ammous if you want to learn more about how fucked up the fiat system is.\n\nhttps://www.amazon.com/Fiat-Standard-Slavery-Alternative-Civilization-ebook/dp/B09KKVNQBK https://example.com/ 14168 421206 421121.421122.421199.421206.421320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.47070684146713 0 \N \N f 139050227 \N 1 80569468 0 f f \N \N \N \N 421121 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424214 2025-03-03 22:10:48.293 2025-03-29 22:39:52.447 \N LOL nobody is drunk?\nThis is a scam! https://example.com/ 15588 424131 394203.394251.400201.424131.424214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1922197247037 0 \N \N f 412682258 \N 4 44640192 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443834 2025-03-19 14:36:08.837 2025-03-29 22:39:52.447 \N Really well written and as a foreigner living in US for past 10+ years, I can confirm this.\n\nAlso, the consequence of living on debt/credit is that KYC is so important, because you need to enforce that the person pays it back eventually.\n\nIn a way, this turns people into slaves. https://example.com/ 5427 443712 443712.443834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6142444495261 0 \N \N f 815619861 \N 6 19602983 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422483 2025-03-02 13:23:13.781 2025-03-29 22:39:48.903 Zap to Zero Day 9 ## Zap to Zero Day 9\n\n_I am changing things up again because [we should be like software, not hardware](https://stacker.news/items/378237). I'll ~try to~ post these ["early" in the morning](https://stacker.news/items/378778) now (credits to @Natalia since she mentioned doing this [here](https://stacker.news/items/377621)). So this post today will be about my day on SN yesterday where I got rewarded for my day on SN the day before yesterday. Easy to follow, right?_\n\n| Date | Spent | Stacked (Rewards) | Posts | Comments |\n| --- | --- | --- | --- | --- |\n| [2023-01-03](https://stacker.news/items/377500) | 15.9k | 15.6k (4131) | 2 | 46 |\n| 2023-01-04 | 11.4k | 11.4k (~3954~ 4093) | 3 | 38 | \n\n![2024-01-06-130120_738x437_scrot.png](https://m.stacker.news/10912)\n\n![2024-01-06-130038_611x443_scrot.png](https://m.stacker.news/10911)\n\nAs you can see, I also got the ["debt collection" letter with an anxiety-inducing timer](https://stacker.news/items/378434) in my mail now, as @davidw nicely put it.\n\nAlso, my `stacked` and `spent` amount represent this meme:\n\n![8bgryd.jpg](https://m.stacker.news/10913)\n\n_at least as far as the number rounding in the calendar lets us see_\n\n**`Zaps of Yesterday`**\n\nI needed to consult my wallet history for this and this is the first thing I saw:\n\n![2024-01-06-131204_776x647_scrot.png](https://m.stacker.news/10914)\n\nIt's like a wall of all my failed attempts to zap people because my balance was too low. The one sat invoice is especially sad, lol. But now to my daily zaps of yesterday:\n\n- By far the best post ([As Far As I Remember](https://www.youtube.com/watch?v=raP8N8LFec0) and according to my own personal biases): @617a7a [showed up and asked stackers what needs to be done](https://stacker.news/items/377665). I tried to [use my social engineering knowledge](https://stacker.news/items/377756) to make him feel welcome. However, my own weapons might have been used against me since I immediately started to like him because he seems to be like me: he's also "heavily versed in ~crypto":\n\n>> Hey, nice to meet you (over a post lol) :)\n>\n> Also nice to meet you! Your replies remind me of myself a few months ago, haha\n\n-- [#377835](https://stacker.news/items/377835)\n\n> Also heavily versed in cryptography, probably not to the extend you are however. Yes I would want E2EE DMs. I'd be interested in getting those ideas and plans around it because this sounds up my street.\n\n-- [#377828](https://stacker.news/items/377828)\n\n- @niftynei also [announced that the Base58 Spring Classes went live](https://stacker.news/items/377560). Check it out! They also offer a lot of [new courses](https://base58.school/#courses). Since I am really into bots, the [Bots edition course](https://base58.school/classes/bitcoin-bots) sounds very interesting to me:\n\n> **Bitcoin Builders: Bots Edition (Beta)**\nBitcoin bots lurk in the mempool, looking for transactions to snap up. In this four-week class, we’ll build three different bitcoin mempool sniping bots.\n\nIt sounds related to the current high onchain fee environment but I am not sure. But this brings me to the next superzap anyway ...\n\n- @Rsync25 posted a [link to a PR summary](https://stacker.news/items/378074) of Gloria Zhao. [bitcoin/bitcoin#28408](https://github.com/bitcoin/bitcoin/pull/28408) was about limiting inscriptions via `datacarriersize`:\n\n> This PR updates mempool policy to restrict the amount of data that can be embedded in witnesses. Accordingly, users that configure `-datacarriersize` would see the limit used to restrict inscriptions as well as opreturns.\n>\n> It does not implement a blanket way of identifying "arbitrary" embedded data in witnesses (as there is no way to do so). It does check `OP_FALSE OP_IF ... OP_ENDIF` which targets inscriptions.\n\nI really liked reading through the [summary of comments](https://github.com/glozow/bitcoin-notes/blob/master/datacarrier_28408.md#summary-of-comments) (ACKs vs NACKs). I recommend that you do this too if you didn't already. If you have time, you can also check the discussion in the PR itself.\n\nBtw, in case you didn't know, Gloria became the maintainer of the mempool in July 2022. While searching for [the PR where her keys were added to the trusted keys](https://github.com/bitcoin/bitcoin/pull/25524), I also found something completely different (as always): a blog post from her from 2019 with the title [_Digital Panopticon: Why Privacy is a Human Right_](https://medium.com/blockchain-at-berkeley/digital-panopticon-why-privacy-is-a-human-right-2ab6dae77433). Sounds interesting. Bookmarked.\n\n- @birdeye21 did some PoW again as the founder of ~earth and dropped another banger in there: [_When nature looks like a painting_](https://stacker.news/items/377218). I had something to say but I think I didn't find the right words to say it with a high enough value/words ratio (I also didn't have pictures) and then I must have forgotten about it. But I remember how touched I felt while reading these words:\n\n> In moments like these, I am reminded how much humans _belong_ here. The earth is our home, wherever we are. And over time, it drives a deeper awareness in me of just how foreign the lifestyles we've built up in place of nature are.\n\nAlways makes me happy to see that other people have similar feelings like me about things. Makes me feel connected and that I _belong_ here too, you know?\n\n---\n\n_Just realized that post from @birdeye21 was from 4 Jan so it wasn't yesterday. I am getting really confused about which day I am writing, lol. So I'll stop here now before I get [so confused that I hurt myself](https://pokemonlp.fandom.com/wiki/Confusion_(status_condition))._\n\n_Oh no, while proofreading, I realized I posted my rewards from today and not from yesterday. See how confused I am about which day I am supposed to write? So here are the correct rewards notifications - from 2023-01-05:_\n\n![2024-01-06-141931_906x298_scrot.png](https://m.stacker.news/10918)\n\nHave a nice remaining day, stackers - in whatever time zone you are! :) \N 20636 \N 422483 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.6569442625567 0 \N \N f 1850799089 \N 14 193272226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 430560 2025-03-09 10:19:17.84 2025-03-29 22:39:52.447 \N **SELLER FEEDBACK**\n\nThe operator of the e-commerce website for this post is an antisemite, evidenced by these two comments: \n\nhttps://stacker.news/items/60225\nhttps://stacker.news/items/60222 https://example.com/ 16717 430549 430549.430560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.699412972396303 0 \N \N f 697308699 \N 4 60634556 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407312 2025-02-17 22:33:57.285 2025-03-29 22:39:52.447 \N Rob Hamilton from [Anchor Watch](https://www.anchorwatch.com/) was on TFTC [recently](https://www.youtube.com/watch?v=XjacM6nN3xE).\n\nHe maintains this [google doc](https://docs.google.com/document/d/1yWEvNRajwHYP6QAJQcnVjgpq5SEkS5wczibG_ICvEuc/edit#heading=h.cv4kzykcgq0x) that's got great links to a ton of miniscript educational materials.\n\nIMO - miniscript is absolutely massive for the collaborative custody & insurance use cases. https://example.com/ 10060 407308 407290.407301.407304.407308.407312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.767702585322 0 \N \N f 9475820 \N 1 6063241 0 f f \N \N \N \N 407290 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421157 2025-03-01 13:02:25.387 2025-03-29 22:39:52.447 \N > What matter is if you can get your BTC back at the protocol level without interaction.\n\nGood advice for evaluating things. https://example.com/ 9354 420987 420635.420987.421157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1297846087528 0 \N \N f 599577741 \N 5 180051800 0 f f \N \N \N \N 420635 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433724 2025-03-11 10:47:07.795 2025-03-29 22:39:52.447 \N I also think that propaganda is the best chance against Bitcoin after direct attacks to shut it down didn't work out (ie cutting out miners in China).\n\nI believe decentralized approach is our best bet: take action in your local community, find what's the most relevant value your community can get from Bitcoin, help onboard people and business, run local meetups, advertisement, support other people doing good work, and share here how its going so that we can all learn from each other.\n\nHow about daily or weekly thread, similar to "what are you working on?", maybe who did you orange pill this week?\n\nAlso, I think our huge advantage is that Bitcoin is truly global, and therefore its easy for wealthier people (ie folks working in Silicon valley) to financially support efforts in South America or Africa, ie on Geyser. https://example.com/ 1549 433555 433555.433724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.10940258785641 0 \N \N f 174961675 \N 1 83920702 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 00:46:44.658 f \N \N \N 0 0 0 0 1 0 0 442730 2025-03-18 19:08:58.13 2025-03-29 22:39:52.447 \N This is inspiring me to workout every morning. Good on ya for heading out into the world before the saloon opens :) https://example.com/ 15192 442701 442508.442701.442730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.5968019639814 0 \N \N f 187023113 \N 1 235565555 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1322 2022-09-11 18:23:41.483 2025-03-29 22:39:52.447 \N I’ll go down with the ship, I refuse to go back to a system that steals from me. https://example.com/ 13198 1319 1247.1250.1253.1317.1319.1322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6303516857903 0 \N \N f 206300415 \N 1 76017962 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435370 2025-03-12 16:22:10.219 2025-03-29 22:39:52.447 \N how can non-Bitcoiners be onboarded to Nostr? as its essential for its growth (not to be seen as a Bitcoin only place) https://example.com/ 20291 435365 435046.435365.435370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7958275303237 0 \N \N f 247478903 \N 1 30137867 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 09:53:43.84 f \N \N \N 0 0 0 0 1 0 0 433588 2025-03-11 08:47:40.261 2025-03-29 22:39:48.903 Massive IP Spoofing attack targeting Tor Relay Operators Interesting IP spoofing attack targeted towards Tor relay operators. This attack is not specific to Tor, but somebody (deep state?) wants hosting providers to ban Tor relays. Incentivizing more decentralized relay self hosting can help.\n\nThe attacker is spoofing the IPs of Tor Exit and Directory nodes, and blasting TCP SYN packets on 22/TCP- spurring a large amount of abuse complaints to hosting providers, which are then temp blocking/banning Tor infrastructure which isn't actually doing anything wrong. https://delroth.net/posts/spoofed-mass-scan-abuse/ 6616 \N 433588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.87793634826075 0 \N \N f 1788582028 \N 17 30306271 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 401734 2025-02-13 11:06:42.805 2025-03-29 22:39:48.903 S9 space heater....check I've replaced a wall mounted 1500w space heater with an S9. It will take a while for the BTC reward to pay off the upfront cost, but I'm super happy with the results so far, three weeks in.\n\nTo heat a good sized bathroom with cold tile floors, I run it at 600 watts, fan speed 40%. It's quiet, quieter than the really nice but in wall mounted heater. This has been producing a consistent 7-7.5 TH/s.\n\nObviously no massive BTC reward comes out of that, but if you're going to use electric heat to keep some rooms warm anyway, I highly recommend doing this. \n\nMaybe it takes a few years to pay off the cost, as we only run it 6-7 months of the year and not always 24/7. But, I really enjoyed learning more about how mining rigs connect to pools etc. There's also something very satisfying about contributing a tiny bit to the Bitcoin network hash rate.\n\nHighly recommend.\n\nI used BTC sessions YouTube walkthrough, and the crypto cloaks PDF outline. \nI did not buy the crypto cloaks fan attachments and shell though. Instead I used some pieces of plywood. I'm a cheap-ass and wanted to keep my upfront costs as low as possible just in case this didn't work out like I thought. Plus I like wood work and will be making my own case this winter.\n\nStay warm! \N 6030 \N 401734 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.0880514959046 0 \N \N f 495383282 \N 5 24856778 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 412381 2025-02-22 10:57:42.639 2025-03-29 22:39:48.903 Explaining Bitcoin Mining To My Girlfriend She asked me to explain it. I wasn't trying to orange pill her. Since she's dating me I figured she's orange pilled by default. I was trying to thing of a good analogy that would make since to her. She's your typical blonde so this is what I came up with.\n\n"Imagine you're buying makeup, but you want to make sure that you're buying the good stuff without a bunch of toxic chemicals, reach out to 10 different testing companies and say 'here's $10k. first person to test this makeup and tell me if its good or not gets it. But you want to make sure the test was good so you you have the other companies double check the tests and make sure they're correct and conform to the right standards, so you pay the other companies $500 each. Mining works the same way where one person mines a block and gets the biggest reward and the other miners validate that it was done correctly and get a smaller reward." Obviously this assumes that everyone participating is totally honest. It's just an analogy though. \n\nThis seemed to make sense to her but what are your thoughts? Is this a good way to explain bitcoin to a non tech female? And are there any other good analogies for a non pleb to be orange pilled by? \N 2652 \N 412381 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 2.00829813024672 0 \N \N f 234105622 \N 1 90515341 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432404 2025-03-10 09:57:51.176 2025-03-29 22:39:48.903 How To Vanish \N http://www.howtovanish.com 714 \N 432404 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.6703330336873 0 \N \N f 288843809 \N 3 48463863 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437999 2025-03-15 05:27:03.809 2025-03-29 22:39:52.447 \N This is still all sooo far out. We haven't even bootstrapped robot production by robots on earth yet. Let alone on the moon. Let alone on Mars. Let alone by more than 1 entity such that monetary value even has to change hands there.\n\nA few more decades. Minimum. 🚀 https://example.com/ 1970 437966 437966.437999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.01742711275788 0 \N \N f 50218880 \N 1 231172056 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435271 2025-03-12 15:12:12.155 2025-03-29 22:39:52.448 \N Stripe made integration easy, and so gained adoption. Bitcoin is not as easy to adopt for the average person. https://example.com/ 721 435224 435224.435271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1065718124382 0 \N \N f 138148192 \N 1 157408126 0 f f \N \N \N \N 435224 \N 0 0 \N \N f \N 2025-03-19 08:52:05.392 f \N \N \N 0 0 0 0 1 0 0 308046 2024-11-25 15:20:14.822 2025-03-29 22:39:52.448 \N Don't forget state chains, softchains, handcrank, drivechains and omni lol layers on layers https://example.com/ 4035 307953 307616.307742.307953.308046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.66208241743889 0 \N \N f 227650117 \N 3 115472183 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458077 2025-03-28 23:09:31.127 2025-03-29 22:39:52.448 \N ![](https://www.zapread.com/i/--F) https://example.com/ 1814 458011 458011.458077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.82080368030437 0 \N \N f 34563616 \N 1 171622829 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437564 2025-03-14 16:08:31.338 2025-03-29 22:39:52.448 \N the fud they spread is their own choice and the videos are still up, if they want a different reaction they need to choose a different path https://example.com/ 1003 437479 437301.437371.437479.437564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.42281632074387 0 \N \N f 223063658 \N 1 125801084 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435517 2025-03-12 18:45:02.282 2025-03-29 22:39:52.448 \N Thanks for everything you do, and taking time for an AMA! \n\nI am curious as to your general day-to-day as a CLN engineer... what are some of the biggest differences working in this space as compared to any of your previous work? How did you get started in this role/space? https://example.com/ 1626 434795 434795.435517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.747753652971 0 \N \N f 219756637 \N 1 193745925 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 22:21:07.779 f \N \N \N 0 0 0 0 1 0 0 436603 2025-03-13 17:47:28.292 2025-03-29 22:39:52.448 \N It is good to be able to enjoy the improvements and refinements that are being implemented. That means growth👍 https://example.com/ 19488 436560 436560.436603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8314237317427 0 \N \N f 177309134 \N 1 1704853 0 f f \N \N \N \N 436560 \N 0 0 \N \N f \N 2025-03-20 11:22:13.379 f \N \N \N 0 0 0 0 1 0 0 434642 2025-03-12 05:16:50.5 2025-03-29 22:39:48.903 The DoJ is ignoring FinCEN's self custody guidance \N https://www.newsletter.coincenter.org/p/the-doj-is-ignoring-fincens-self 733 \N 434642 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 1.12383490672123 0 \N \N f 1809069888 \N 16 179553580 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 14:04:54.03 f \N \N \N 0 0 0 0 5 0 0 187132 2024-06-20 00:06:59.307 2025-03-29 22:39:48.903 How to choose how to accept bitcoin in the store? Whenever I pay somewhere, I try to use bitcoin. I usually fail, but sometimes we at least get into a discussion about how to actually do it. In that case, it seems like there are a lot of options and I usually can't give a simple answer.\n\nMy basic decision scheme looks something like this:\n![Jak přijímat bitcoin-2](https://imgprxy.stacker.news/46pYRInQtVrQL0VDpZsN-_cpX9Un_CVYL7S-OQRlok0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9naXRodWIuY29tL2h5bmVrLWppbmEvSHluZWsvYXNzZXRzLzI2MDAyOTE2L2FkNGZjMDUyLTExNzMtNDdjYS1hYTcxLThmZWU1MDlhNzU4YQ)\n\n\nI start at the top left by asking if the business has multiple people accepting payments. Depending on the answers, I continue to wander through the diagram until I arrive at a final recommendation.\n\nOf course, it's not black and white like this. Sometimes the conversation is more complex. Basically, I then distinguish between these four groups of tools:\n\n## Custodial wallets\nIn most cases, we choose a simple wallet first, on which one can easily and without cost try it out. After a while, it is no problem to move to a more sophisticated solution. For several years now, Wallet of Satoshi has been my favorite to start with.\n\n### [Wallet of Satoshi](https://www.walletofsatoshi.com/)\n- 🟢 Great controls\n- 🟢 POS terminal\n- 🟢 Low fees\n- 🟢 Local language\n- 🟢 Expression in local currency\n- 🟢 Option to receive funds to a simple address\n- 🟢 Possibility of accepting NFC chips - cards, rings, etc.\n- 🟢 Multiple people can use one account - You can have the same wallet on your computer (mac)\n- 🟢 Easy email backup\n- 🔴 You trust a third party - you can lose funds\n\n[Bitlifi](https://www.bitlifi.com/) works similar. Its big advantage and disadvantage is that it is tied to a phone number. This allows you to pay people who haven't even downloaded the app yet. On the other hand, you lose privacy. Bitlifi can practically only be used by one person because of this, and it also doesn't have advanced options like using NFC chips.\n\n## Wallets with self-custody\nIf you don't want anyone to be able to deprive you of your funds, you can use a wallet such as the Phoenix wallet.\n\n### [Phoenix](https://phoenix.acinq.co/)\n- 🟢 You are in control of your money, no one can easily rob you\n- 🟢 Easy to use\n- 🟠 Each recipient has an independent account\n- 🔴 High fees\n- An alternative may be the [Breez](https://breez.technology/) wallet. It has slightly lower fees while offering more privacy. It also allows you to create items for easier payment entry in addition to a traditional POS terminal. On the other hand, it can be less clear and downloads more data. Both of the mentioned wallets work practically for one user only and are more expensive to use than the previous options.\n\n## Friends server\nFinancially, using a friends node or LNbits server usually works out a bit better. This solution offers virtually unlimited possibilities.\n\n### [LNbits](http://lnbits.com/)\n- 🟢 Many users and their management\n- 🟢 Many different applications\n- 🟢 API for communication with other applications\n- 🟢 Can be connected to [Zeus](https://zeusln.app/) or [Blue Wallet](https://bluewallet.io/)\n- 🟢 Allows to manage [Bleskomat](https://www.bleskomat.com/)\n- 🟢 Can create QR codes for individual items\n- 🟡 Usually reasonable fees\n- 🟠 Unclear reliability\n- 🟠 It's a bit too much work to set it up\n- 🔴 Trusting a third party - you may lose resources (if running on someone else's server)\n\nIf you don't want to play with LNbits, you can use a dedicated service like [Hydranode](https://hydranode.net/), [Confirmo](https://confirmo.net/), or [Qerko](http://qerko.com/) to receive bitcoin. They will help you with deployment, you'll have a good overview of everything and various staff permissions for reasonable fees.\n\n## Own node\n\n### Umbrel\nFor the heartthrobs, there is the most challenging option. On your own node, you can then also run the aforementioned LNbits application.\n\n- 🟢 You don't trust a third party\n- 🟢 Everything is possible\n- 🟢 Lowest fees\n- 🟢 Good overview of everything - different powers for staff\n- 🔴🔴 High initial cost - hardware and especially your education\n- 🔴 Time-consuming maintenance\n\n\nHere's another summary of the mentioned options side by side. I don't know the universally best solution, but each of the variants has good uses.\n\n| | Custodial wallets | Non-custodial Wallets | Friends Node | Own Node |\n| - | ----------------- | -------------------- | ------------ | -------- |\n| Examples | Wallet of Satoshi, Bitlifi | Phoenix | LNbits | Umbrel |\n| Difficulty of setup | 🟢 | 🟢 | 🟠 | 🔴🔴 |\n| User Management | 🔴 | 🔴 | 🟢 | 🟢 |\n| Custody | 🔴 | 🟢 | 🔴 | 🟢 |\n| Fees | 🟢 | 🔴 | 🟠 | 🟡 | 🟡 |\n\n\n### When the internet is down\nAs a backup, it's always a good idea to have a physical QR code printed at the same time with the so-called LNURL or at least remember the payment address. For these purposes, it's also not a problem to use a wallet with a third-party escrow service like Wallet of Satoshi - still only for small amounts of satoshis. If for some reason your internet goes down or your cell phone goes dead, you can still accept bitcoin payments with no problem.\n\n### Alternatives\nThere are many other technical options that make sense to pursue. But since I don't use them on a daily basis, I don't usually recommend them. For example, I think [Coinos](https://coinos.io/), [Mutiny](https://www.mutinywallet.com/), [Blixt](https://blixtwallet.github.io/), [Zeus](https://zeusln.app/), [BTCPay Server](https://btcpayserver.org/), or [Citadel node](https://runcitadel.space/) are all worth considering.\n\n### Don't take fiat or you'll go crazy\nI generally try to talk dealers out of converting bitcoin to fiat. Usually, at least initially, bitcoin payment volumes are not large and the real-world consequences of volatility are negligible. If someone doesn't want to hold bitcoin, they can get a Bleskomat into the business and allow people to exchange. After a while, though, merchants are usually glad they kept the funds in bitcoin and don't have as much need to convert back to fiat.\n\nIf you're worried about the complexity of accounting when a company holds bitcoin, you can use one of the services mentioned above or not put bitcoin in the company at all and handle it as a private person.\n\n_I originally wrote this article for a [Jednadvacet](https://jednadvacet.org/blog/), Czech bitcoin community_ \N 21060 \N 187132 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.96123598402941 0 \N \N f 173456502 \N 1 48871981 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451012 2025-03-24 10:50:42.936 2025-03-29 22:39:52.448 \N Trump had better open with "As I was saying.." https://example.com/ 21145 450805 450805.451012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6863742705403 0 \N \N f 176644163 \N 1 14783758 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444580 2025-03-20 03:14:56.75 2025-03-29 22:39:52.448 \N > It’s only a matter of time before U.S. three letter agencies will be snooping around, and maybe visiting Austin, subpoenas in hand,\n\nSN might want to put up a Warrant Canary - https://en.wikipedia.org/wiki/Warrant_canary\n\n https://example.com/ 13216 444575 444566.444575.444580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6464709090007 0 \N \N f 247920261 \N 1 146565706 0 f f \N \N \N \N 444566 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434088 2025-03-11 15:42:06.291 2025-03-29 22:39:52.448 \N We started with mainly image processing, but now we are getting much more difficult natural language processing tasks that we can barely do.\nWe want to get into full process automation. We just onboarded a new customer workflow that ends in an online notarization of the document! \n https://example.com/ 12819 433477 433403.433477.434088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8825855348159 0 \N \N f 100690853 \N 1 190975312 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443806 2025-03-19 14:26:02.056 2025-03-29 22:39:52.448 \N I’ve solved bugs in my code in dreams… https://example.com/ 20913 443781 443295.443781.443806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5435271653457 0 \N \N f 302168268 \N 4 162266116 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437762 2025-03-14 21:14:02.899 2025-03-29 22:39:52.448 \N We've had a lot of success with smaller mom and pop shop type places. Medium-size businesses and bigger often have a lot more processes in place and bureaucracy. Adding something new into the mix can be difficult, unless they're already interested in bitcoin (you'd be surprised how many actually are interested/curious!)\n\n1. Food trucks have been quick to understand. Frankly, I can't tell if that's just because they're quick, nimble, and willing to try new things, or if it's because their owners are generally the easiest to get ahold of - given the fact that often times they're actually working in the truck. Fast-casual type places are pretty open as well. I'm slowly branching out to entertainment venues/bars at this stage. They typically have higher margins and run specials (happy hour, buy one get one) more often already, so it's easier to get them to do some bitcoin rewards deals. Now that we have the Square integration, this helps a lot with onboarding businesses. It's already integrated into their workflow a bit more so the friction to onboard is a bit less.\n\n2. In general, I hit them with the bitcoin rewards pitch asap. It seems to hit the hardest.\n\n"Interested in rewarding your customers with free bitcoin when they shop at your business?"\n\nNotice how I'm leading with 'want to accept bitcoin?' or 'want to escape inflation and the wrath of central bankers?' (lol). This is by design. Give these businesses something that will get asses in seats. More customers in the door. Maybe give them something to differentiate their business from the competition. From there, you have their ear. One step at a time. Don't overload them.\n\n3. There's a pretty staunch segment of bitcoiners who believe that spending bitcoin is a scam. While I love the angle that 'everyone's a scammer' by Bitstein, I do think people should rethink the positive effects of using bitcoin locally and growing the bitcoin circular economy. \n\nThese days there are new tools in which you can participate in the bitcoin network without having to spend the asset. Strike, for example, allows you to effectively use the bitcoin network using dollars from your checking account. Sure, you're going to have to KYC, which I'm not a fan of either, but what's the alternative? Using Visa/Mastercard?\n\nThere are some who seem to make perfect the enemy of good as well. 'if we are using kyc'd btc, then it's a waste to even go down this path', etc. I strongly disagree with this as well. How did you get started with bitcoin? I was a noob who bought from an exchange, got into shitcoins, and had very little interest in privacy. Fast forward some years and that has dramatically changed. bitcoin changes people. Allow others to take the first steps into it much like the rest of us. https://example.com/ 11527 437723 437723.437762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4968112721648 0 \N \N f 184441132 \N 1 29319048 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449022 2025-03-23 05:13:20.11 2025-03-29 22:39:52.448 \N Indeed, anyone can fork Bitcoin, but the Blocksize Wars in the past have taught us an important lesson. The decision of what Bitcoin is rests with the node runners, and it appears that the market has chosen to stay on the route that avoids the need for hard forks. While forks are technically possible, the current consensus favors maintaining the existing Bitcoin protocol making it backwards compatible which means significant changes are not likely. https://example.com/ 21418 449016 449016.449022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0606130275078 0 \N \N f 320956991 \N 4 39396859 0 f f \N \N \N \N 449016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428236 2025-03-07 01:09:05.345 2025-03-29 22:39:48.903 North America's fastest emerging circular economy: Vancouver, BC Over the past year and a half, a vibrant circular economy has formed in Vancouver, BC.\nThere are now six regular meetup groups, from technical (Bitdevs), practical (Noderunners), to educational (BTCVAN), coffee and beers.\n\nThere are now over 80 places listed on [BTCMap](https://btcmap.org/map#12/49.23654/-123.06988) in the Fraser Valley, of which I'd say about 25 are the kind of places you could frequent everyday.\n\nFive coffee shops, two breweries, three food trucks, two pubs, a sushi restaurant, a vietnamese noodle place, two kebap stands, a tattoo studio, a crepe stand, three convenience stores and even an El Salvadorian restaurant!\n\nOne important step we had to take to make this happen: Make some of the Bitcoin meetups Bitcoin-only. That means, you can only buy tickets and drinks with Bitcoin. No cash, no shitcoins, no card payments. If you don't have a wallet, there will be somebody to help you install one. If you don't have sats, you can typically buy them from somebody around you with cash or e-transfer.\n\nWe believe this approach can work anywhere, it just needs some community leaders to take the first step. And it can happen fast! Just 1.5 years ago, not a single place in Vancouver took sats.\n\n(All zaps to this post go 100% to the Vancouver Bitdevs group to cover rental fees) \N 8459 \N 428236 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 23.520769818608 0 \N \N f 421591829 \N 3 613169 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443427 2025-03-19 10:50:59.157 2025-03-29 22:39:52.448 \N Why so condescending tho? Nothing wrong with people doing whatever the f*ck they enjoy. https://example.com/ 6653 443390 443372.443390.443427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6005981958787 0 \N \N f 316019967 \N 4 223375393 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 06:41:59.006 f \N \N \N 0 0 0 0 1 0 0 421024 2025-03-01 11:04:44.838 2025-03-29 22:39:52.448 \N Awesome. I will send James an email tonight and copy Ben. https://example.com/ 2293 420951 420895.420951.421024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.62761364172108 0 \N \N f 407526540 \N 2 233295049 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443715 2025-03-19 13:32:15.265 2025-03-29 22:39:52.448 \N nice to see bitcoiners experimenting with new approaches to employment https://example.com/ 632 443711 443577.443651.443711.443715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.81867736984614 0 \N \N f 950506382 \N 9 47438091 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448675 2025-03-22 19:19:50.521 2025-03-29 22:39:52.448 \N Here are a few options for simple swaps \n\n- https://changelly.com/\n- https://sideshift.ai/\n- https://stealthex.io/\n- https://simpleswap.io/ https://example.com/ 13348 448671 448671.448675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.3680336171666 0 \N \N f 334263246 \N 2 242348755 0 f f \N \N \N \N 448671 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430199 2025-03-08 23:25:12.332 2025-03-29 22:39:52.448 \N Beautiful, heart-wrenching. Horrible. \n\nIm so sorry for your loss @dergigi. \n\nYour words mean so much to me. Thank you. \n\nI lost my uncle to suicide when I was a teen. \nAnd like most men, I feel, I have battled with those dark thoughts. \n\nI grow a moustache every November for this reason. It’s silly but it’s a nod that we men don’t deal with these thoughts very well. https://example.com/ 8376 430033 429958.429970.429982.430020.430033.430199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3854558914023 0 \N \N f 397377103 \N 2 174582545 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434999 2025-03-12 11:52:14.497 2025-03-29 22:39:52.448 \N A new type of pillow that you fill with 40 lbs of water so it actually stays cold all night. Bitcoin fixed that.\n\nhttps://coldbed.com\n\nDo you ever feel like you don't have enough balls to do something? Well get 2048 numbered, 6.35mm chrome steel ball bearings in a bottle so you can grab your seed phrase by the balls. Bitcoin fixed that.\n\nhttps://21baller.com\n\nBlue blocking glasses that actually block out all the blue and green light, to wear an hour or two before bed. You won't know how you lived without them. Bitcoin fixed that.\n\nhttps://carbonshade.com\n\nA light for your desk that hits your face with the correct, sky blue cyan wavelength, not a fake thing that can trick your eye into seeing that color. "Bright" inside is 1000 lux, sunny is 100,000 lux, but also, lux is a lie. Bitcoin fixed that.\n\nhttps://getchroma.co/product/blue-white-sky-portal-480nm-blue-hifi-white/\n\nScary high power density near infrared light. Orthopedic surgeons might hate me if more people used these. Bitcoin fixed that.\n\nhttps://getchroma.co/product/chroma-ironforge/\n\nThe first ever and only consumer UVB LED with precise spectral output control, unlike fluorescent bulbs. More vitamin D with less DNA damage. Bitcoin fixed that.\n\nhttps://getchroma.co/product/chroma-d-light/\n\nA vaginal red light therapy device, which may help with strength, fertility, and pleasure. An excellent troll for the fake hardtech VCs / performance art, made even better by the fact that it actually work. Bitcoin fixed that.\n\nhttps://aurorawand.com\n\nEach of these stores has varying levels of discounts (except 21baller, which is btc only) that automatically show-up during checkout when you go the bitcoin route, and lightning is accepted.\n\nDISCLOSURE: these are all mine, but then again, when you buy from me, you accelerate the foundational capabilities of human civilization in advanced materials manufacturing & aerospace, so pretty good deal all things considered.\n\nLearn more about my path developing these products and the design philosophy that I document in a newsletter:\n\nhttps://chroma.substack.com https://example.com/ 956 434646 434646.434999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.12850791046507 0 \N \N f 65322122 \N 1 216260835 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 05:28:56.395 f \N \N \N 0 0 0 0 1 0 0 403971 2025-02-15 12:16:45.404 2025-03-29 22:39:52.448 \N I'm excited to see how this plays out now, with so much anti-government-surveillance-state vibe in the air, and the pending election season.\n\nWell, "excited" is not the best word, but it's the best I can do. https://example.com/ 14220 403648 403648.403971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5406332225858 0 \N \N f 203988449 \N 5 156983665 0 f f \N \N \N \N 403648 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458215 2025-03-29 05:44:14.007 2025-03-29 22:39:48.903 IMF unveils Unicoin: A global, legal tender settlement CBDC \N https://www.kitco.com/news/2023-04-10/IMF-unveils-Unicoin-A-global-legal-tender-settlement-CBDC.html 1740 \N 458215 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.51731454956899 0 \N \N f 107694421 \N 1 118734422 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422881 2025-03-02 18:55:34.339 2025-03-29 22:39:52.449 \N Happy, yes. Deserving? Probably not. It also seems like the reward distribution for each item is reflected on the item directly? It feels a bit misleading. Not sure if I’m seeing things clearly, it’s very early for me… https://example.com/ 20904 422863 422863.422881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.36775248044817 0 \N \N f 264145963 \N 3 56158096 0 f f \N \N \N \N 422863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408076 2025-02-18 14:59:04.609 2025-03-29 22:39:52.671 \N Definitely a natural fit. \n\nLet's come up with something for 2025. A "You should really be on Stacker News" campaign to recruit quality content posters. https://example.com/ 16177 407916 407916.408076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0417721217712 0 \N \N f 50961056 \N 1 73924990 0 f f \N \N \N \N 407916 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434439 2025-03-11 22:18:02.711 2025-03-29 22:39:52.671 \N Human stupidity have no limits. And these people sending these phishing attempts are betting hard on human stupidity.\n\nAnd to prove this, I will start a new series of posts on your "booksandArticles" territory with some chapters of a short book about human stupidity. https://example.com/ 692 434435 434278.434298.434310.434411.434435.434439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.78931836982448 0 \N \N f 631181364 \N 6 117060779 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 447119 2025-03-21 16:21:25.724 2025-03-29 22:39:52.671 \N And does she know you publish photos of her online? https://example.com/ 8400 446937 446937.447119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1732362528552 0 \N \N f 217764472 \N 2 205700195 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N 2025-03-28 10:00:53.253 f \N \N \N 0 0 0 0 1 0 0 450784 2025-03-24 08:24:34.059 2025-03-29 22:39:52.672 \N One good thing from this is that will be less shitcoiners on SN. https://example.com/ 2056 450240 450240.450784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.01093417584297 0 \N \N f 4640849 \N 1 235767111 0 f f \N \N \N \N 450240 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3104 2022-10-25 06:04:45.795 2025-03-29 22:39:52.679 \N I know less than zero about bitcoin core development politics but what he said sounded reasonable on the surface. Like many charities, there can be a perversion of incentives over time and excessive funding without an explicit purpose in mind might create a "development industrial complex" where there is pressure to push updates for the sake of it. Extreme conservatism seems more prudent when there is now 1.3+ trillion at stake. https://example.com/ 17727 3066 3061.3066.3104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1472956667924 0 \N \N f 520353386 \N 4 54666477 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403772 2025-02-15 07:46:48.479 2025-03-29 22:39:52.679 \N It's not the Bitcoin Repo, it's the repo of "Bitcoin Core" which is only one implementation of Bitcoin. It is very prominent because it is the direct descendant to the original code by Satoshi Nakamoto.\n\nUnfortunately it is way to prominent in the Bitcoin world to the point where people use it synonymously with "Bitcoin" itself. https://example.com/ 19446 403771 402904.403694.403750.403754.403755.403762.403765.403771.403772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2719317299091 0 \N \N f 1279911059 \N 10 197014184 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415012 2025-02-24 13:19:00.144 2025-03-29 22:39:48.904 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 21520 \N 415012 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.42963962580139 0 \N \N f 572480097 \N 6 154314789 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 423576 2025-03-03 13:15:44.843 2025-03-29 22:39:48.903 Daily Discussion Thread ~Music Saloon! Hello Stackers!\n\nWelcome on into the ~Music Corner of the Saloon!\n\nA place where we Talk Music. Share Tracks. Zap Sats.\n\nSo stay a while and listen.\n\n🚨Don't forget to check out the pinned items in the territory homepage! You can always find the latest weeklies there!🚨\n\n🚨Subscribe to the territory to ensure you never miss a post! 🚨\n \N 17690 \N 423576 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.0797631839476 0 \N \N f 461024571 \N 2 177936078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436523 2025-03-13 16:03:15.597 2025-03-29 22:39:48.904 _Broken Money_ book club update Hey stackers, sorry for the tardiness, but I wanted to say, I had a great time with the the [Broken Money book club](https://stacker.news/items/274195) on Wednesday. I'm grateful to have had a venue where it was possible to do this and have some really interesting conversation. Not sure where else on the internet it could have happened.\n\nI'm also honored by the sats contributions to the post, including one especially generous zap by a benevolent stacker. Thank you! I will re-distribute all of it it into the SN economy over time.\n\nThree more things:\n\n- If you didn't get a chance to check out the comments, they're still live, and I still monitor them. The discussion is evergreen, so if you're interested in the topic, it won't go out of date, next week or in a decade. (Well, maybe some of the questions will be answered in a decade.)\n\n- Feedback on the format is welcome -- I'll put a comment soliciting feedback in that post. If you participated, how could it have worked better? If you didn't participate but are in the 'target audience' for such a thing, what could have got you over the hump? \n\n- I'll plan to do part 2 of the book two weeks from the last one, on 10-18. I'll ping the people who commented on the original post.\n\nAgain, thanks for exploring some of these ideas with me and the other stackers. \N 13622 \N 436523 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 8.19706313191283 0 \N \N f 1461922012 \N 13 23041977 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 13:04:55.247 f \N \N \N 0 0 0 0 10 0 0 430039 2025-03-08 19:34:05.061 2025-03-29 22:39:52.672 \N I’m leaving medium for good. All my future writing content will be featured on SN! https://example.com/ 769 430038 429958.429970.429982.430020.430033.430038.430039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.270499594525759 0 \N \N f 176885720 \N 1 212954007 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458230 2025-03-29 05:56:41.168 2025-03-29 22:39:52.676 \N Hope https://example.com/ 681 458229 458188.458210.458223.458226.458229.458230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.1822089520806 0 \N \N f 442241195 \N 3 204413278 0 f f \N \N \N \N 458188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432405 2025-03-10 09:58:52.813 2025-03-29 22:39:52.679 \N The team is only two people right now (me and UI/UX lead Bosch), but we have 25+ code contributors and ~70 translators. I've honestly been blown away by all of the external contributions. Zeus is going to be a completely FOSS project forever.\n\nWe are developing a second app with the node and wallet built into it. We're also working on various LSP services that can be used by users of our two apps, but also by lightning users who may not be using our interfaces. More to come. https://example.com/ 1002 429509 429509.432405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.495256701455 0 \N \N f 212392677 \N 2 36994951 0 f f \N \N \N \N 429509 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435292 2025-03-12 15:21:34.22 2025-03-29 22:39:52.68 \N > its not good to fight technical reality\n\nExactly, but we may have a little bit over corrected in that direction here and can probably do better. https://example.com/ 9517 435135 435046.435135.435292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51656219754718 0 \N \N f 2463468259 \N 16 60887808 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 19:36:53.077 f \N \N \N 0 0 0 0 3 0 0 307616 2024-11-25 08:47:38.212 2025-03-29 22:39:48.904 Besides Bitcoin, what are the greatest technologies ever discovered? Shoes. \N 739 \N 307616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.41050747784417 0 \N \N f 1486425590 \N 12 423027 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 7 0 0 436397 2025-03-13 14:26:46.897 2025-03-29 22:39:48.904 How to Kill a Decentralised Network (such as the Fediverse) \N https://ploum.net/2023-06-23-how-to-kill-decentralised-networks.html 20500 \N 436397 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.44296034627865 0 \N \N f 205834032 \N 1 245477388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 09:05:14.594 f \N \N \N 0 0 0 0 1 0 0 401773 2025-02-13 11:40:52.008 2025-03-29 22:39:52.671 \N "How the economic machine works" by Ray Dalio explains how credit increases prices\nhttps://www.youtube.com/watch?v=PHe0bXAIuk0&t=1s\n\nA read of Ludwig Von Mises "Human Action" or "Money and Credit" could do you good.\n\nMaybe this might be a quicker read to do you good: https://mises.org/library/securitization-and-fractional-reserve-banking\n\nGenerally speaking though, if an exchange of Bitcoin for dollars is an economic agreement from the start, then that should happen, but the lender of a Bitcoin backed loan does not want or hope to obtain Bitcoin and would actually be disappointed if the loan liquidated causing the lender to sell it off for what they actually want (fiat). \n\nThis is essentially the same problem that the asset backed security known as a mortgage ran into in 2008. Sure if people don't pay their mortgage, the bank gets the house, but the bank doesn't want the house, they want dollars and so have to sell it on the open market for dollars driving down the price of housing.\n\nAt the same time, before the bust, people securitizing the asset are not selling it, causing the asset to maintain or even increase in value against what's being lent against.\n\nNow you might say "But the overcollateralization though!" but all that does increase the fuse the bomb, not diffuse the bomb.\n\nI'll warn you now, that I am staunchly against credit creation in spite of its normalization in the modern economy. My reasoning for running to Bitcoin is to escape the fucked up system of usury. https://example.com/ 2123 401754 401651.401660.401673.401703.401754.401773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.81915787314751 0 \N \N f 48383200 \N 1 185571249 0 f f \N \N \N \N 401651 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437827 2025-03-14 23:00:01.712 2025-03-29 22:39:52.674 \N https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExcXloNGlwYXR2Nm5tOW45Z2R0OG55b3NnZ3Y2bm51YjRyZWwxbjQ0diZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/l1J3O1eHga1LRethK/giphy.gif\n\nwow this is a waste of a response.\n\n1. have an original thought. stop offloading your thinking to others.\n2. it's ironic that you're opting for not thinking through an issue ahead of time by quoting people best known for all the thinking they did before coming to the quotes your spouting.\n3. the buddha is referencing specifically to think through your actions before acting on them for precisely the reason you quote.\n4. wtf is masculine about not preparing for the future by wargaming out scenarios and how to combat them?\n https://example.com/ 15239 437700 437502.437700.437827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9039717045323 0 \N \N f 118754406 \N 1 220575770 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428241 2025-03-07 01:15:29.16 2025-03-29 22:39:52.674 \N Day 242 of snailposting everyday 'til BTC hits $100k.\n\n...and 42 push-ups. (20 - 12 - 10)\n\n__@_'-' https://example.com/ 8326 427264 427251.427264.428241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4518817968732 0 \N \N f 81935910 \N 1 91657730 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408269 2025-02-18 17:01:07.78 2025-03-29 22:39:52.674 \N The story of Satoshi Nakamoto and the creation of Bitcoin is legitimately up there in terms of unbelievable but true https://example.com/ 15890 407903 407903.408269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7922183161145 0 \N \N f 512486968 \N 3 184278301 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434797 2025-03-12 08:48:32.768 2025-03-29 22:39:52.676 \N Howdy!\n\nIgnore the price. Stack sats and push ups today. Price discovery will come in due time. \n\n41 days of 100 push ups a day until $100k down. Undetermined to go. \n37 days of 100 squats a day until $100k down. Undetermined to go. \n\n https://example.com/ 5978 434795 434795.434797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9712192234139 0 \N \N f 1285317582 \N 10 114379004 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 05:55:36.422 f \N \N \N 0 0 0 0 3 0 0 423951 2025-03-03 18:26:37.463 2025-03-29 22:39:52.676 \N Interesting...\n\nSo this would be 1 person or company opening 50 channels to other LN nodes. How about 50 people opening 50 channels to 50 other people? Because this is really what it would take. https://example.com/ 18330 423928 423928.423951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0315598639405 0 \N \N f 1431901302 \N 11 90780707 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422661 2025-03-02 15:53:05.763 2025-03-29 22:39:52.676 \N I love reading the air gap transmission stuff all the time, but something the casual viewer probably won't pick up on, is that both devices have to already have a virus on it. \n\nThis does not gain you the initial foothold in the hacker methodology.\n\nThis is useful for the post exploitation phase. https://example.com/ 2514 422628 422628.422661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4699947816146 0 \N \N f 159012112 \N 2 249196600 0 f f \N \N \N \N 422628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422569 2025-03-02 14:49:57.505 2025-03-29 22:39:52.677 \N Hey Roy, great idea. For the first item it'd be enough for Breez to support NIP-07 (https://github.com/nostr-protocol/nips/blob/master/07.md) to allow any web based nostr client to be used as an app.\n\nI think you are on to something here, a WebLN-enabled Lightning wallet allows for the best payments UX on nostr imo. Would be great to onboard people to nostr and Lightning with a non-custodial sovereign wallet like Breez.\n\nI'm helping develop one of the web clients called snort, would be happy to help push this forward. Code is on GitHub https://github.com/v0l/snort https://example.com/ 769 422408 422334.422406.422408.422569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3997929125285 0 \N \N f 462116511 \N 3 242531786 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400697 2025-02-12 12:59:48.94 2025-03-29 22:39:48.904 Gotta Catch'em All! Nothing for days, and then: Four referrals within a 15-min window 😆\n\nWelcome aboard, whoever it may be! 🥳\n![](https://m.stacker.news/46929) \N 21383 \N 400697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.01496574485952 0 \N \N f 241863372 \N 1 197325357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1392 2022-09-13 16:55:19.768 2025-03-29 22:39:48.904 Learning bitcoin from the command line \N https://github.com/BlockchainCommons/Learning-Bitcoin-from-the-Command-Line 11873 \N 1392 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.343006298697652 0 \N \N f 492864179 \N 3 121559211 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410767 2025-02-20 17:05:42.734 2025-03-29 22:39:52.672 \N Day 322 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 17690 410763 410756.410763.410767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4942758174454 0 \N \N f 29530396 \N 1 19845498 0 f f \N \N \N \N 410756 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403047 2025-02-14 11:52:45.377 2025-03-29 22:39:52.674 \N I had an experience like that while taking a philosophy class in high school. We were writing up our personal philosophies while reading different thinkers. \n\nI had just written a page or two about the relationship between material well-being and happiness, after starting one of the Dalai Lama's books. Literally the next pages I read of his book were almost word-for-word what I had written. \n\nIt was incredibly weird.\n\nIn all likelihood I wouldn't still share those views, but that memory will always stand out to me. https://example.com/ 10981 402986 402904.402986.403047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1686961016006 0 \N \N f 58039937 \N 1 158600134 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443811 2025-03-19 14:27:58.927 2025-03-29 22:39:52.675 \N Is there a 1099 requirement to the U.S. government? I would think there would be. https://example.com/ 16230 443796 443577.443651.443711.443715.443731.443757.443772.443796.443811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.15929141986176 0 \N \N f 408207530 \N 4 80139699 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410699 2025-02-20 16:13:54.125 2025-03-29 22:39:52.675 \N Where is nuclear on this list? \n\nAlso, do these prices take into account government subsidies on renewables? https://example.com/ 658 410696 410507.410696.410699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6819269670178 0 \N \N f 422753484 \N 4 56380283 0 f f \N \N \N \N 410507 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423895 2025-03-03 17:17:10.079 2025-03-29 22:39:52.675 \N I built a small python app that I can run alongside my node and accept lightning address payments. It’s nothing new but gave me a chance to play with my node’s LND gRPC api. Note you still need to host a well-known text file somewhere 😃\n\nhttps://github.com/calaniz/lnurl https://example.com/ 4062 423704 423667.423687.423704.423895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8093964052984 0 \N \N f 1275029243 \N 9 228027387 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443676 2025-03-19 13:11:22.167 2025-03-29 22:39:52.677 \N The answer to most of these questions, given is Bitcoin’s design, is the same as: would I do this if I were a miner or writing mining software? I’m 95% certain miners put the highest fee txs in their block template as they come in. They’re doing the work anyway, why not maximize your returns? In PoW your likelihood of mining a block is independent of the last hash you made, so incrementing the nonce, replacing a tx, or replacing all txs before you hash the header again, all have the same odds of finding the block. Ie you don’t make progress as you mine, you merely exhaust a very very tiny few of possible losing blocks as you go - all that matters is you don’t choose the exact same block again. Eg if I flip a coin and it’s tails, the odds of it being tails on the next flip is still 50% regardless of whether I flip it tomorrow, or on the moon, or on a hill, or in a valley. https://example.com/ 17708 443669 443577.443613.443669.443676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8078285284737 0 \N \N f 503667841 \N 3 48957743 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:30:09.52 f \N \N \N 0 0 0 0 1 0 0 434632 2025-03-12 04:47:39.061 2025-03-29 22:39:48.904 Auto approve zaps with the power of budgeting - Mutiny Wallet \N https://blog.mutinywallet.com/auto-approve-zaps-with-the-power-of-budgeting/ 15843 \N 434632 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.48070366482544 0 \N \N f 138875278 \N 1 42693900 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457324 2025-03-28 12:13:13.616 2025-03-29 22:39:48.904 SN Saturday Newsletter 8/24/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Upcoming AMAs\n- [Peruvian Bull](https://x.com/peruvian_bull), Finance and Macro Writer, will be doing an ~AMA Monday August 26th at 2pm CT.\n\n##### Top Posts\n1. [Why happen force closures on LN channels?](https://stacker.news/items/658770)\n - Force closures are the worst fate for a lightning channel. [@DarthCoin](https://stacker.news/DarthCoin) explains why they happen.\n - 14.7k sats \\ 18 comments \\ [@DarthCoin](https://stacker.news/DarthCoin)\n2. [A bitcoin scam uncovered: get some eyes on this](https://stacker.news/items/655087)\n - Another paper bitcoin wallet scam is uncovered by [@icecakes](https://stacker.news/icecakes) as they try to give [@Longtermwizard](https://stacker.news/Longtermwizard) access to funds they never had in the first place.\n - 11.6k sats \\ 33 comments \\ [@icecakes](https://stacker.news/icecakes)\n3. [How many people are currently getting orange pilled 🍊💊?](https://stacker.news/items/659247)\n - Following their post about [measuring adoption](https://stacker.news/items/645789), [@tomlaies](https://stacker.news/tomlaies) polls stackers on the current state of orange pilling.\n - 2.4k sats \\ 29 comments \\ [@tomlaies](https://stacker.news/tomlaies)\n4. [Bisq2 adds lightning](https://stacker.news/items/654051)\n - Bisq2 adds lightning as a settlement method for its [Easy trading protocol](https://bisq.wiki/Bisq_Easy). [@supertestnet](https://stacker.news/supertestnet) celebrates another darknet market using lightning.\n - 3k sats \\ 46 comments \\ [@supertestnet](https://stacker.news/supertestnet)\n5. [How many books do you read a year?](https://stacker.news/items/655706)\n - [@Taft](https://stacker.news/Taft) asks stackers how many books they read in a year.\n - 1.1k sats \\ 85 comments \\ [@Taft](https://stacker.news/Taft)\n\n#### AMAs\n1. [James Lavish / @jameslavish / Bitcoin Investor AMA](https://stacker.news/items/659387)\n - 60.7k sats \\ 78 comments \\ [@jameslavish](https://stacker.news/jameslavish)\n\n##### Don't miss\n- [Fountain 1.1 - Open Social Podcasting Powered by Nostr](https://stacker.news/items/657050)\n- [My Letter to The Libertarian Institute](https://stacker.news/items/657036)\n- [Pseudonyms lets you practice agency](https://stacker.news/items/658331)\n- [25-year old video shows Hal Finney talking zero-knowledge proofs](https://stacker.news/items/658526)\n- [Highly available Lightning node cluster setup guide](https://stacker.news/items/652690)\n- [Bitcoin and Political Tribalism](https://stacker.news/items/653982)\n- [Yesterday We Adopted A New Dog](https://stacker.news/items/659021)\n- [Bitcoin Ecosystem Map [August 2024]](https://stacker.news/items/656800)\n- [EVENTS IN VENEZUELA AFTER ELECTORAL FRAUD DAY XII - XIX](https://stacker.news/items/652725)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [Have You Stopped Using The SN Wallet To Zap and Get Zapped?](https://stacker.news/items/657253)\n- [SN release: random sort and NWC receives](https://stacker.news/items/657334)\n- [My first experience with 'Attach Wallet' at SN — Blink and LN Address issues](https://stacker.news/items/659241)\n- [My non techie experiences connecting wallets to SN so far](https://stacker.news/items/653374)\n- [SN release: Blink sending wallet, and fixes for LNC, profiles, invoice retries](https://stacker.news/items/653915)\n- [Earning Potential: SN > Google Adsense](https://stacker.news/items/658828)\n- [Private Messaging](https://stacker.news/items/655278)\n\n[**all meta**](https://stacker.news/~meta/top/posts/week)\n\n-------\n\n##### Top Monday meme\n![](https://imgprxy.stacker.news/uoYi0LpTSJhQseZU8I_J826738GSrYb5NBTSBAws3Xc/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy80Njk4MA)\n\n[**all monday memes**](https://stacker.news/items/654539)\n\n------\n\n##### Top Friday fun fact\n> When Charlie Chaplin received an Oscar in 1972, he received a 12 minute standing ovation.\n>\n> https://collider.com/oscars-longest-standing-ovation-1972-charlie-chaplin/\n\n\n[**all friday fun facts**](https://stacker.news/items/658987)\n\n------\n\n##### Top Stackers\n1. [@Undisciplined](https://stacker.news/Undisciplined): 123.9k sats stacked\n2. [@grayruby](https://stacker.news/grayruby): 78k sats stacked\n3. [@Satosora](https://stacker.news/Satosora): 64.6k sats stacked\n4. [@jameslavish](https://stacker.news/jameslavish): 64.3k sats stacked\n5. [@Bell_curve](https://stacker.news/Bell_curve): 55.2k sats stacked\n\n------\n\n##### Top Spenders\n1. [@frostdragon](https://stacker.news/frostdragon): 901.1k sats spent\n2. [@TNStacker](https://stacker.news/TNStacker): 137.1k sats spent\n3. [@ek](https://stacker.news/ek): 120.4k sats spent\n4. [@BlokchainB](https://stacker.news/BlokchainB): 118.6k sats spent\n5. [@ch0k1](https://stacker.news/ch0k1): 105.3k sats spent\n\n------\n\n##### Top Cowboys\n1. [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture): 351 days\n2. [@Undisciplined](https://stacker.news/Undisciplined): 333 days\n3. [@OneOneSeven](https://stacker.news/OneOneSeven): 326 days\n4. [@BlokchainB](https://stacker.news/BlokchainB): 312 days\n5. [@TNStacker](https://stacker.news/TNStacker): 308 days\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 18219 \N 457324 \N \N \N \N \N \N \N \N food \N ACTIVE \N 9.11230774451425 0 \N \N f 257249948 \N 2 167182525 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433679 2025-03-11 10:05:02.89 2025-03-29 22:39:48.904 Are You a Privacy Advocate or a Privacy Bro? I was watching [Stacker News Live](https://www.youtube.com/watch?v=yYsa4f3obzo), live on Friday and @Car said something that triggered a memory. It reminded me of a response to personal privacy I have witnessed. I don't recall what he was talking about specifically but he expressed an emotion of dread. I got the feeling that it is a kind of hopelessness. In the realm of, what's the point? Why should I bother? There are many forces that can create this emotion. I have felt it as well. I still feel it from time to time. The feeling of, its too hard. I might do something wrong and screw it all up. Then what's the point of even trying.\n\nThis is a trap that is easy to fall into. We are propagandized pretty often by people in big tech to just believe and accept that privacy is dead. Of course that is a lie. We all have things we selectively reveal and no matter how open you are online there are things you keep private. Privacy is not secrecy. Privacy is a choice. So its not dead. But, if you think in this way you will not be careful about what you do and what you share. You drop your guard. But there is another type of person that can evoke this feeling of hopelessness. The "privacy advocate". In my social circle I sometimes were the hat of the privacy advocate. Through experience I have learned to be careful not to overwhelm people. It is easy to let perfection become the enemy of good. If I go to hard on the topic many, dare I say most people will just give up. This is because what I am saying to them is so radical. So different from their current view it is easy to reject as crazy or too hard. \n\nSo what's my point? My point is that each of us should take a look at ourselves. I can't do it for you, though I hope this will spawn some deep thought about how we communicate about privacy. Everyone doesn't need to be Edward Snowden but we all should be more aware of what we are doing online and offline. When we have folks in our circles that are concerned about privacy, we should be practical. What is their threat model? What do they care about? It is likely different from what we care about. Lets try to put ourselves in their shoes.\n\nI often see good advice (depending on the situation/threat model) mocked as not good enough. I know that some of this is just bragging. But if that's you, don't kid yourself. You aren't an advocate. You are just bragging that you are in the circle. You're not a sheep. You're a wolf. That's fine. I do think there is a place for this. Even here on SN. We need to push back on companies and projects to make privacy a priority. But realistically, what will make these project grow is more people that want to be private. And if we aren't practical, helpful, and real we are gonna fail to spread the message of the value of privacy.\n \N 19570 \N 433679 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.3031398221997 0 \N \N f 205673051 \N 4 84839486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 453968 2025-03-26 03:58:46.318 2025-03-29 22:39:52.672 \N I honestly think I heard one. I didn’t see any though. The fishing down there is second to none! https://example.com/ 19332 453900 335484.335562.335591.335690.335721.335729.335791.336308.336318.336322.452856.453420.453900.453968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0188995961194 0 \N \N f 539279284 \N 3 51842108 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435420 2025-03-12 17:02:42.252 2025-03-29 22:39:52.675 \N Funny, these memes remind me of some thoughts I'd had about Nostr, particularly the twitter-style clients like Damus and Primal. I feel myself I gravitate away from them and toward SN for a few reasons. \nI get the censorship resistance of them not having a black-box algorithm, but I feel its a double edged sword, in that new users are beholden to their connections to plug them to other users. This makes content discovery really difficult. Also - and maybe I haven't figured this one out yet, so please fill me in if that's the case - but what's the incentive for new users to post, besides the goodwill of their followers, and that only if they have any? \n\nIn summary, no incentive plus no algo to push new users' content means its only gonna stick with people who are _already_ well connected in those communities. Just my two sats.\n\n![](https://m.stacker.news/63546) https://example.com/ 21180 435410 435261.435410.435420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.40345769944248 0 \N \N f 424545556 \N 4 75132637 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:25.065 f \N \N \N 0 0 0 0 3 0 0 401386 2025-02-13 00:07:45.172 2025-03-29 22:39:52.675 \N Work \nEarn & \nStack sats Always! https://example.com/ 5646 400739 400739.401386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.614009716395 0 \N \N f 223818487 \N 1 100042834 0 f f \N \N \N \N 400739 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430867 2025-03-09 13:24:01.779 2025-03-29 22:39:52.676 \N They are under pressure from governments. The financial action task force, the supranational body that sets aml standards, has its sights on hardware wallets. This will be a slow step by step boil but they WILL be pressured into compliance https://example.com/ 4128 430489 430489.430867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.538694971776 0 \N \N f 88726185 \N 1 240851930 0 f f \N \N \N \N 430489 \N 0 0 \N \N f \N 2025-03-20 00:44:18.748 f \N \N \N 0 0 0 0 1 0 0 420137 2025-02-28 14:08:22.311 2025-03-29 22:39:52.676 \N Launching my own company \n\nThis month I have wrapped up market research, completed one-pager, and finished a financial model. Next week I'll be deploying the website and will begin building out a sales funnel for conversion tracking. Afterwards I will pursue investment intros.\n\nSo far so good https://example.com/ 2326 419818 419818.420137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.08378386596875 0 \N \N f 4703365 \N 1 59974667 0 f f \N \N \N \N 419818 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449076 2025-03-23 07:02:38.382 2025-03-29 22:39:52.677 \N delayed gratification = denying yourself. If accepting delayed gratification, adopting long term thinking, is denying yourself, then the path to freedom is being faithful. \n\nSo faith would be the positive motivation, believing that your steadiness today builds a better tomorrow. Same thing, but denying yourself is the negative motivation, or the key difference between stating the same idea twice is *belief.* https://example.com/ 674 449075 449027.449053.449057.449075.449076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1414825293735 0 \N \N f 406160380 \N 2 134060299 0 f f \N \N \N \N 449027 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436690 2025-03-13 19:42:44.687 2025-03-29 22:39:52.679 \N - Economics is always winner takes it all. This shitcoin is doomed to fail.\n- There is no usecase for smart contracts that both 1 needs to be decentralized 2 cannot be solved with bitcoin, tor and torrent\n- What should be its edge over other smartcontract shitcoins like Ethereum? Being a Bitcoin Fork has literally zero value. https://example.com/ 7746 436683 436683.436690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3628413499207 0 \N \N f 279911509 \N 3 44714510 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 440610 2025-03-17 12:23:20.653 2025-03-29 22:39:48.904 If you don't spend Bitcoin you're shorting the Bitcoin Revolution. It's pretty simple to understand.\n\n**Bitcoin was designed to offer everyone a superior alternative to the fiat system, which is flawed and not fixable.**\n\nFor this alternative to be truly sustainable, we need to do everything we can to develop a circular economy centered on the Bitcoin system.\n\nThis means pushing more merchants to support Bitcoin as the MoE of everyday life. **It also means adopting the “Spend and Replace your Bitcoin” paradigm** rather than getting stuck in the “HODL Bitcoin no matter what” paradigm.\n\nThis latter paradigm is gradually trapping Bitcoin as a simple SoV integrated into the current system. This plays into the hands of BlackRock and the other financial giants who want to rob us of the deeper meaning of the Bitcoin revolution.\n\n**So, if you don't spend your Bitcoin by not using it as an MoE, you're shorting the Bitcoin revolution.**\n\nDon't make this mistake! \N 20979 \N 440610 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.38067875565174 0 \N \N f 245997548 \N 1 15270 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422788 2025-03-02 17:34:54.504 2025-03-29 22:39:48.904 Why does Bitcoin use energy? Great short and sweet resource on bitcoin and energy usage. https://bitcoinuses.energy/ 9262 \N 422788 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 6.74005156454211 0 \N \N f 188697777 \N 1 46289524 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427692 2025-03-06 15:09:23.896 2025-03-29 22:39:52.676 \N > Are there other non-market inputs to culture we might be able to use to change it?\n\nFirst thing that comes to my mind is old fashioned grassroots organization and community building, for heavier stuff, civil disobedience/ protest. \n\nThere are well researched phenomena of social tipping points, where a passionate and determined minority catalyzes a major shift in the collective. I've read this number can be as low as 3.5% of a population, and on the higher end if 25% of people favor shifting a cultural norm it's essentially inevitable. \n\nhttps://www.pnas.org/doi/10.1073/pnas.2014893118\n\nhttps://www.science.org/doi/abs/10.1126/science.aas8827\n\nThe protest focused movements seem a bit out of fashion now, and political culture in Western democracies has been so perverted that people feel they need to pick a side as soon as they first encounter or notice one - or determine "are these people like me, are they in my tribe?" Instead of looking at merits of what is being argued. \n\nBut to my mind, at least thus far, most major societal shifts occured this way. Many things we take for granted like 40 hour workweek, unleaded gasoline etc. came from a very small and very vocal group of advocates. \n\nI was recently reading a book called Rise and Fall by John Michael Greer where he mentioned how big a deal the local fraternal orders were in American society .. they were a much larger cultural force than I had ever realized and were essentially non partisan social change incubators and training grounds for the type of collective organization needed to affect big change. Often this was specifically non-political in nature, and a very bottom-up idea of "let's get together and solve problem X ourselves."\n\nFrom the book:\n\n> In 1920, for example, something like 3,500 different fraternal orders existed in the United States, and around 50 percent of the country’s adult population — counting both genders and all ethnic groups, by the way — belonged to at least one of them.\n\n> When the French nobleman Alexis de Tocqueville toured the newly founded American republic in the early years of the nineteenth century, he encountered plenty of things that left him scratching his head. The national obsession with making money, the atrocious food, and the weird way that high culture found its way into the most isolated backwoods settings — “There is hardly a pioneer’s hut which does not contain a few odd volumes of Shakespeare,” he wrote. “I remember reading the feudal drama of Henry V for the first time in a log cabin” — all intrigued him, and found their way into the pages of his remarkable book Democracy in America. \n\n> Still, one of the things de Tocqueville found most astonishing bears directly on the theme of this chapter. The Americans of his time, when they wanted to make something happen, didn’t march around with placards or write their legislators demanding that the government do it. Instead, far more often than not, they simply put together a private association for the purpose, and did it themselves. \n\n> De Tocqueville wrote: “The Americans make associations to give entertainments, to found institutions for education, to build inns, to construct churches, to diffuse books, and to send missionaries to the antipodes; and in this manner they found hospitals, prisons, and schools. If it be proposed to advance some truth or to foster some feeling by the encouragement of a great example, they found a society. Whenever, at the head of some new undertaking, you find the government in France, or a man of rank in England, in the United States you are sure to find an association. I met with several kinds of association in America of which I confess I had no previous notion; and I have often admired the extreme skill with which the inhabitants of the United States succeed in proposing a common object to the exertions of a great many men, and getting them voluntarily to pursue it.”\n\nSeth Godin's book on tribes and others like it have interesting frameworks for thinking about in-group/ out-group dynamics which seem to be hard wired into humans. If I was trying to initiate a cultural shift I would start by trying to engineer a dynamic like that where people can quickly grok that "people like us do things like this."\n\nOne of the more powerful forces I've observed in these tribal dynamics is an in-group language. Bitcoiners are an obvious example of this. \n\nMy last thought here is that sometimes a culture shifting movement doesn't need market integration, and that type of fertilizer will kill it while it's young. Maybe more often it needs to be actually protected and insulated from the market. \n\nhttps://meaningness.com/geeks-mops-sociopaths\n\nApologies this is a bit all over the map, I could go on and on about this fascinating topic! Hope this adds some ideas worth pondering.\n\n\n https://example.com/ 1697 427652 427628.427652.427692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.795719329256 0 \N \N f 241628072 \N 1 125751150 0 f f \N \N \N \N 427628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455904 2025-03-27 12:01:20.522 2025-03-29 22:39:52.676 \N So where is the next frontier for those thirsting for freedom?...Cyberspace https://example.com/ 20715 455889 455551.455599.455824.455889.455904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8081607726997 0 \N \N f 904292225 \N 8 134270865 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434477 2025-03-11 23:52:40.718 2025-03-29 22:39:52.677 \N Have you tried this yet?\n\n![4535vv4.png](https://m.stacker.news/7135) https://example.com/ 20554 434396 434396.434477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7747212569292 0 \N \N f 9939265 \N 1 199393205 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N 2025-03-19 02:31:19.744 f \N \N \N 0 0 0 0 1 0 0 451158 2025-03-24 12:24:48.562 2025-03-29 22:39:52.677 \N ![](https://www.zapread.com/i/-1X) https://example.com/ 20691 450766 450766.451158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.505881554222718 0 \N \N f 102302655 \N 1 25903826 0 f f \N \N \N \N 450766 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3060 2022-10-24 06:55:22.723 2025-03-29 22:39:52.678 \N is just a way of saying to piss off those gov agents reading my posts...\nhere I make it even simpler for them to understand\n![](https://m.stacker.news/49729)\nThey understand only their language (aka launder money). For me "launder money" it doesn't make sense. My own money cannot be laundered. https://example.com/ 21349 3042 2990.2999.3035.3037.3039.3042.3060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7727091567997 0 \N \N f 5106376 \N 1 229080080 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410713 2025-02-20 16:29:29.422 2025-03-29 22:39:52.678 \N i've been testing Peach for weeks (several buys and sells) and its a pretty great app, it become my primary way to DCA https://example.com/ 14515 410695 410691.410695.410713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2777893993826 0 \N \N f 9645351 \N 1 213269021 0 f f \N \N \N \N 410691 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457801 2025-03-28 17:51:14.552 2025-03-29 22:39:48.905 Ask SN: How to best onboard new users to lightning with high mempool fees? I just helped a fellow student with an exercise in binary exploits.\n\nHe struggled for days and wanted to thank me by spending me a meal. I mentioned that this is similar to how we do bitcoin tips just in a bigger fashion. He said he could pay me in bitcoin or cardano but using bitcoin would probably cost too much. Then I asked if he has a lightning wallet and he said no.\n\nHow to best onboard new users without paying too much tx fees?\n\nI know mempool cooled down since a few weeks ago but tx using 8sat/vB don't go through yet, for example (at least mine has not gone through for days).\n\nHow would you best onboard a new user to lightning right now?\n\nAsk them to post good content on SN to earn sats? (Not sure if serious, haha. But maybe that's indeed a good idea) \N 10302 \N 457801 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 5.44961081775 0 \N \N f 179514390 \N 1 121750215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446598 2025-03-21 11:17:44.905 2025-03-29 22:39:48.905 Latest updates: 3nm chip headed to the foundry, our new mining system, and more \N https://www.mining.build/latest-updates-3nm-system/ 19333 \N 446598 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 0.535251087788602 0 \N \N f 1041953754 \N 7 494400 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424703 2025-03-04 10:35:43.087 2025-03-29 22:39:48.906 Newmarket Capital Announces New Bitcoin Collateralized Loans I'm watching the announcement live on CNBC. I'll post the link to the video and other links as they are released. \nThe CEO, Andrew Hohns, is very pro bitcoin. He used an example of a typical commercial real estate mortgage being refinanced into a loan that is partially collateralized by bitcoin. The lender uses it to counteract the loss of value due to the depreciating fiat over the term of the loan. The lender basically lends fiat to accumulate bitcoin. It can be looked at as another speculative attack on the dollar. \N 13162 \N 424703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.80781537425906 0 \N \N f 184425721 \N 1 113479364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443296 2025-03-19 08:47:43.3 2025-03-29 22:39:52.678 \N We definitely do not want to break lightning's transaction-level privacy.\n https://example.com/ 726 443295 443295.443296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.65800091421173 0 \N \N f 160977195 \N 2 109558467 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:32.802 f \N \N \N 0 0 0 0 2 0 0 404242 2025-02-15 17:18:16.753 2025-03-29 22:39:52.678 \N LOL from now on all memes will be sent directly into a memejoin so that no one knows who owns it https://example.com/ 21442 404203 404136.404203.404242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2939190640126 0 \N \N f 666822214 \N 5 187105037 0 f f \N \N \N \N 404136 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444348 2025-03-19 20:00:02.534 2025-03-29 22:39:52.679 \N Block puts up a paywall\nMan, in time they all fall\nMyles, you have to stand tall!\nStack sats and avoid the mall https://example.com/ 19535 444340 444114.444132.444143.444150.444207.444213.444277.444289.444332.444340.444348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1916540059262 0 \N \N f 68084251 \N 1 122817345 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450008 2025-03-23 17:29:10.7 2025-03-29 22:39:52.679 \N Ark is poison. At least Lightning has a hub and spoke model. Ark is a one hub to rule them all model. https://example.com/ 14168 450006 447870.449922.450006.450008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0726315587751 0 \N \N f 459229519 \N 3 123806742 0 f f \N \N \N \N 447870 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446511 2025-03-21 10:03:05.827 2025-03-29 22:39:52.682 \N 78 suited has more equity against AA than any other hand combination in No Limit Texas Holdem https://example.com/ 795 446483 446456.446483.446511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6403359005621 0 \N \N f 29675843 \N 1 235656963 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403780 2025-02-15 07:53:40.609 2025-03-29 22:39:52.682 \N 1. Building out a fake Bitcoin core repl for users to interact with on saving Satoshi\n\n2. Squashing bugs and adding at least 1 requested feature in the sn repo\n\n3. Find or replace my passport https://example.com/ 18393 403742 403742.403780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.59640241383238 0 \N \N f 24865756 \N 1 80419309 0 f f \N \N \N \N 403742 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 335729 2024-12-20 00:03:02.338 2025-03-29 22:39:52.682 \N They are detained after being caught, during the process they are given a court date for immigration court. With the amount of illegal immigrants the immigration court is back logged so their court date isn’t anytime in the near future, some might even be in a year or two. \n\nOnce they receive their court date they are either released and expected to appear to that court date. They are being bused to sanctuary cities where they are dropped off. \n\nThe point is they are released and expected to appear to their court date, which doesn’t happen. https://example.com/ 2431 335721 335484.335562.335591.335690.335721.335729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.78569886889665 0 \N \N f 1298071506 \N 11 74372253 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415766 2025-02-25 04:11:35.4 2025-03-29 22:39:52.683 \N I don't blame her either. There's so many other things she could do with her time! The ratio of women interested is a difficult thing to talk about because the "what should be done" about it is totally ambiguous and in my view, unproductive. And you very quickly start to draw imaginary lines around genders. But something I may suggest, and I only just realize now that this is what I did, is that she finds a voice that she likes in the bitcoin space, and chooses the meetup where that speaker will be as her first meetup. I think it could mean the difference and be one level more comfortable. https://example.com/ 21506 415637 415637.415766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.5624946034259 0 \N \N f 177212850 \N 1 218458402 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421033 2025-03-01 11:18:17.292 2025-03-29 22:39:52.683 \N Ditching seed oils https://example.com/ 19494 421028 420895.421020.421028.421033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8431383382377 0 \N \N f 225185498 \N 1 170028220 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443377 2025-03-19 10:05:17.811 2025-03-29 22:39:48.906 Bitcoin Was A Jeopardy Answer Tonight The answer was something like "In 2021 El Salvador required all businesses to accept this as payment." The contestant answered correctly. \nNot earth shattering, but it was nice to hear it mentioned. \nThe best part for me: My wife answered before I did. \N 10821 \N 443377 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.7716490442901 0 \N \N f 27259668 \N 1 53496521 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435907 2025-03-13 05:04:34.898 2025-03-29 22:39:48.906 Why Are Wallet of Satoshi Lightning Payments Exploding? I’ve noticed a recent surge in Lightning payments on Wallet of Satoshi, but it doesn’t seem to be caused by jumps in Nostr activity or THNDR Games activity (both were partly responsible for the early 2023 increase in WoS payments).\n\nAnyone have a good theory as to where the extra payments are coming from/going to?\n\nhttps://imgprxy.stacker.news/mG5vxWaNj44GcuedyefA4EnGzAkxdDS_p5Z0-127tEE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0Y2dVpzT2RYSUFBX1hVaT9mb3JtYXQ9anBnJm5hbWU9bGFyZ2U \N 18528 \N 435907 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 14.463516621684 0 \N \N f 2546416922 \N 17 64113471 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 07:25:15.899 f \N \N \N 0 0 0 0 5 0 0 451005 2025-03-24 10:45:54.835 2025-03-29 22:39:52.683 \N Got my first piece published in Bitcoin Magazine today 😀\n\nhttps://stacker.news/items/45027 https://example.com/ 1717 450971 450971.451005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3223958039597 0 \N \N f 244150476 \N 1 217400025 0 f f \N \N \N \N 450971 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414762 2025-02-24 09:31:52.404 2025-03-29 22:39:52.684 \N @ekzyis, is @unpaywall off for the weekend? https://example.com/ 16424 414751 414711.414722.414729.414751.414762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.10988602649216 0 \N \N f 101997375 \N 1 198506641 0 f f \N \N \N \N 414711 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434305 2025-03-11 19:16:32.86 2025-03-29 22:39:52.684 \N Bought $50 during the 2017 boom on Coinbase. Didn't get it at the time. It took a while for the light bulb to light up. https://example.com/ 16447 434287 433828.434031.434091.434226.434237.434287.434305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9439266691471 0 \N \N f 278624866 \N 2 110312677 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444340 2025-03-19 19:53:47.877 2025-03-29 22:39:52.685 \N I guess it shows that the traditional world and it’s incentives don’t have names for what these types of interaction are. New language required.. https://example.com/ 16633 444332 444114.444132.444143.444150.444207.444213.444277.444289.444332.444340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0810131491378 0 \N \N f 190901596 \N 2 187688144 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443100 2025-03-19 03:51:04.168 2025-03-29 22:39:52.685 \N Thanks @blockstream_official for sharing the link to the Blockstream Quarterly Q2-Q3 report. \n\nWas a good read.\nIt was especially interesting to see how far along Jade has come.\nJade appears to be one of the better open-source hardware wallets in the market.\n\n**I like Liquid. I've used it in the past.**\n\nHere are some questions or observations that i was hoping @blockstream_official would be able to answer.\n\n**Liquid has about 67 members in its federation comprising of major exchanges, Bitcoin infrastructure companies, digital asset managers, wallet providers and other Bitcoin-focused companies.**\n\nOf these 67 members, 15 operate signers that run custom-built hardware security modules (HSMs) and specialized software to produce blocks and manage the pegged bitcoin in an 11-of-15 multi-signature wallet.\n\n- Are these 15 signer members rotated amongst the 67 members?\n- What is the rotation period?\n- What is the process of selecting these signer members?\n- How do you prevent signer members from the same parent company or VC funded bias from colluding together to harm the Liquid federation?\n- How are conflicts resolved amongst Liquid federation members?\n- Are Liquid federation memberships accepted from US sanctioned countries like Venezuela, Syria, Iran, Cuba and Russia? \n\n**In addition to the 11-of-15 multi-signature wallet, the Liquid federation’s wallet implements an Emergency Withdrawal Procedure (EWP) by using a 4,032 block (28 days) timelock after which a 2-of-3 multi-signature wallet is able to spend from federation wallet.**\n\n- Which Liquid federation members are part of this 2-of-3 multi-signature wallet?\n- What is the process of selecting these members for the 2-of-3 multi-signature wallet?\n- Are these members rotated amongst the Liquid federation 67 members?\n- How do you prevent members from the 2-of-3 multi-signature wallet from the same parent company or VC funded bias from colluding together to harm the Liquid federation? \n\n**Blockstream rebranded C-Lightning to Core Lightning (CLN).** This was a good move.\n- Are there plans for Blockstream to rebrand Liquid (L-BTC) to remove BTC from the token name to help reduce confusion between Liquid and Lightning? \n\n**In addition to the above, Liquid Network has emergency backup keys held solely by Blockstream.** \n\n- What prevents Blockstream, or a rogue employee, or pressure from a despot government regime from harming the Liquid federation?\n\n- How do we know for certain that a government does not already have access to a copy these Emergency Backup Keys?\n\n**FYI, I’m a fan of Liquid.** I acknowledge Bitcoin layer-2 is hard to pull off and tradeoffs must exist. I am simply after some extra transparency on above questions while the network continues to grow, liquidity increases and before the next bull-run arrives. Thank you.\n\n![A snapshot of the Liquid ecosystem in 2022.](https://imgprxy.stacker.news/nSlaoxMBFRPHKX9T6lYH-AA2QkP97brfqWXQX_3UT68/rs:fit:600:500:0/g:no/aHR0cHM6Ly9ibG9nLmxpcXVpZC5uZXQvY29udGVudC9pbWFnZXMvc2l6ZS93MTAwMC8yMDIyLzEwL2xpcXVpZDEwLjJAM3gucG5n)\n_A snapshot of the Liquid ecosystem in 2022._ https://example.com/ 27 443099 443099.443100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.676030251284416 0 \N \N f 611294158 \N 3 9349356 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 2025-03-26 06:00:02.062 f \N \N \N 0 0 0 0 2 0 0 423050 2025-03-02 22:49:43.41 2025-03-29 22:39:52.685 \N yeah it's true. I have never sold any art. I liked leaving it with that sentence because after you consider selling it, your relationship to what you make completely changes. and it's not pebbles on the beach anymore. but for me, yeah I don't sell anything. the book I wrote is a pdf on my website. https://example.com/ 10493 423048 422334.422660.422663.422986.422995.423035.423041.423044.423048.423050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.744124692994 0 \N \N f 82094422 \N 1 67600580 0 f f \N \N \N \N 422334 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401566 2025-02-13 06:56:44.286 2025-03-29 22:39:52.685 \N >personally, i thought the spam didn’t bother me until i began receiving a bunch of 1 sat payments.\n\nYep totally agree. Thats one reason we lifted our minimum to 10 sats per payment. Hopefully find a spot where we can price out "spam" but keep advertising that may actually provide value. https://example.com/ 20660 401527 401527.401566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6448376803592 0 \N \N f 206884117 \N 1 27647799 0 f f \N \N \N \N 401527 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 385905 2025-01-30 14:12:24.724 2025-03-29 22:39:52.686 \N https://rsslay.nostr.net/\n\n\nalmost there https://example.com/ 2367 385662 385662.385905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.11614234621392 0 \N \N f 760483017 \N 5 62324454 0 f f \N \N \N \N 385662 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 320343 2024-12-06 04:15:17.01 2025-03-29 22:39:52.686 \N what is it like being named after a pizza company https://example.com/ 21060 320332 320187.320300.320332.320343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8754369678936 0 \N \N f 332162717 \N 2 48559037 0 f f \N \N \N \N 320187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421199 2025-03-01 13:43:02.895 2025-03-29 22:39:52.687 \N I was on the fence for a long time due to the privacy crowd getting mad at them for blacklisting addresses. But after listing to max hilliebrand on the crypto voice podcast I decided to try it out. It is very different than 1.0 but I Like you don’t need a lot of sats to gain privacy. I think I mixed like 200k sats and I don’t think I paid a fee. \n\nThe previous comments on this left by @scampy are addressed by max himself in the pod \n\nhttps://open.spotify.com/episode/5FYtHyp39OBIKz2Kl1QtkJ?si=smvzKI_cSa2RUvT9YkVong\n\nAlso I find Samurai very buggy https://example.com/ 1472 421122 421121.421122.421199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13642803711229 0 \N \N f 299051032 \N 3 236427267 0 f f \N \N \N \N 421121 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436263 2025-03-13 12:29:03.875 2025-03-29 22:39:52.687 \N We range very widely, but Zoomers don't even have a chance of understanding Bitcoin unless they were raised by bitcoiners... AND homeschooled. So I'd skew us towards the late 30's... Old enough to start to understand how the world works, young enough to include all the millennials who grew up in the wake of the financial crisis.\n\nI'm continually surprised meeting boomers who get it. Of course 100% of the time they were already goldbugs before someone introduced them to bitcoin.\n\n https://example.com/ 717 436259 436028.436053.436125.436257.436259.436263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.512794820215 0 \N \N f 296416972 \N 2 82134517 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:49:59.16 f \N \N \N 0 0 0 0 1 0 0 406482 2025-02-17 11:33:18.705 2025-03-29 22:39:52.687 \N If you're for real @FeexWillMove then while you're at it please publish a signed message saying the coins were never owned by Craig Wright or his "Tulip Trading" https://example.com/ 20222 406449 406449.406482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.49989624086406 0 \N \N f 402439200 \N 2 82139854 0 f f \N \N \N \N 406449 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444183 2025-03-19 18:01:52.341 2025-03-29 22:39:52.688 \N > Tail emission is inevitable.\n\nYou might want to try with a less confident language (unless you are bringing an indisputable proof to the table, which you aren't). \n\nAlso, I'm adding the sentence that comes after your second quote and that you conveniently removed without proper notation.\n\n> [...] except for the mining of more gold. **But he also admitted that if a government was willing to surrender control over its monetary policy and not to interfere with economic activities, a gold-based economy would be possible.**\n https://example.com/ 15103 443743 443743.444183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.0480183994297 0 \N \N f 155193812 \N 1 98900270 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 387200 2025-01-31 19:21:35.041 2025-03-29 22:39:48.907 Allen Farrington’s Hot Take on Custodial Lightning “ hot take: I get that custodial lightning is not remotely decentralized, sovereign, trustless, etc. - all that good shit …\n\n… but is nobody else outrageously excited by how much of an improvement over fiat it is? not just in its own right but even explicitly in terms of decentralisation, sovereignty, and trustlessness?\n\nit strikes me as a key vector of bitcoin driving jurisdictional arbitrage, for one. say some authoritarian regime cracks down on bitcoin (whatever that ends up meaning in practice, doesn’t really matter) and makes it politically risky to run a node, or manage liquidity, or be seen as “transmitting money”, or whatever. if there is a trustworthy custodial lightning provider *literally anywhere in the world* you can anonymously spin up the ability to receive payments in seconds. “anonymously” and “in seconds” are both groundbreaking advances if you have any familiarity whatsoever with fiat banking and payment rails. \n\nif you think about it, you actually can’t get this with “real” lightning either. it’s not instant (to set up) and you need to know people who presumably trust you to some small extent to get to the point of workable liquidity and stay there (perhaps under-discussed, but if channel partners “don’t trust you”, they will close or never open, and you can’t use lightning at all. WhO’s TrUsTlEsS nOw HuH?!?)\n\nso yes, this requires trust, but like, fuck me, so does everything in real life 😂 - being overly negative on this strikes me as a kind of core fallacy of appreciating open and decentralized systems: that it’s a spectrum, not a binary. how open and decentralized the foundation is represents the maximum openness and decentralisation of anything built on top, *not the minimum*! \n\nmoving away from completely closed and centralised does not necessitate the opposite, it opens up an entire range of new possibilities, all of which come with tradeoffs. but tradeoffs are relative to circumstances in real life, and in real life, selective trust is very much a thing because We LiVe In A sOcIeTy 🤪 - talking about tradeoffs in absolute terms as if the decision to accept them can be made entirely devoid of context is highly regarded. and this isn’t even to get into the rather obvious line of argument that if you want people to ever get to the extreme, having a spectrum to gradually move along is far more appealing than requiring them to jump in at the deep end. i.e. it’s also amazing for adoption.\n\nin conclusion, don’t be highly regarded. support adoption. agree with my hot take. gm, pv 🤙”\n\nSource:\n\nnote190hsgrgrmpe382pr5uv2rwgu0h9ud0r649sntkhhgl6xf0hcdlxskwts2t \N 5761 \N 387200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6104544283165 0 \N \N f 246002162 \N 1 222570489 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443187 2025-03-19 06:16:39.834 2025-03-29 22:39:48.907 People who buy spot BTC ETFs - tribemates or not? A few months ago, I asked Stackers if [Bitcoin is their one and only.](https://stacker.news/items/420816) Seems that there are two camps. One group typically possesses Bitcoin and retirement funds, whereas the other group goes all in on Bitcoin. \n\nAround the same time, 11 spot BTC ETFs were launched. According to a study from Apollo, they’ve taken in approximately net 220k BTC ($14B). As of April 2023, the largest inflows have gone to Blackrock (IBIT) and Fidelity (FBTC), with 274k BTC and 155k BTC respectively. Blackrock now owns more Bitcoin than MicroStrategy. Who would have thought it possible just a year ago?\n\nSo, suffice it to say that the demand for spot BTC ETFs is robust and many people have taken the opportunity to buy one or more of these ETFs.\n\nWould you consider individuals who just invest in the spot BTC ETFs as members of your tribe? Or you would think that they have wasted their opportunity to own some actual Bitcoin? How about people who buy both Bitcoin and spot ETFs? \N 2123 \N 443187 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.5745518681296 0 \N \N f 1931721579 \N 15 151848983 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 7 0 0 410743 2025-02-20 16:47:40.025 2025-03-29 22:39:48.907 Bitcoin is Digital Scarcity \N https://dergigi.com/2022/10/02/bitcoin-is-digital-scarcity/ 15052 \N 410743 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 10.0307791850275 0 \N \N f 230019190 \N 1 192608372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 426954 2025-03-05 23:47:54.486 2025-03-29 22:39:48.907 Van Eck: We Celebrate Bitcoin Builders, Not Tourists \N https://www.vaneck.com/us/en/blogs/digital-assets/we-celebrate-bitcoin-builders-not-tourists/ 4115 \N 426954 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 6.95107854528281 0 \N \N f 245675457 \N 2 156885247 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 407469 2025-02-18 03:50:48.764 2025-03-29 22:39:52.672 \N ![20231119_215503.jpg](https://m.stacker.news/5354) https://example.com/ 20911 407380 406399.407380.407469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2994162463927 0 \N \N f 1097103076 \N 8 8162829 0 f f \N \N \N \N 406399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436113 2025-03-13 10:29:00.946 2025-03-29 22:39:52.687 \N ![this is an imagen](https://i.nostrimg.com/9013431d23bbd3fcd3115ca2b51252ea165abb0dee069045f39fe41b9e3cbed8/file.jpeg) https://example.com/ 9529 436093 436093.436113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.078616929032 0 \N \N f 245162151 \N 2 198261282 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:31:00.981 f \N \N \N 0 0 0 0 1 0 0 410539 2025-02-20 14:24:07.284 2025-03-29 22:39:52.688 \N Full RBF enables people to defraud services who let you walk away with goods and services without a confirmation, which is incentive compatible with miners wanting more fees.\n\nThe other case is that some wallet users accidentally don't opt into RBF then get their funds stuck for weeks on end. https://example.com/ 9171 410409 410409.410539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.57913664903697 0 \N \N f 145448442 \N 1 35670878 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434072 2025-03-11 15:35:16.073 2025-03-29 22:39:52.688 \N That's the interesting thing about custodial LN. Because it can handle minuscule sat volumes, you can make the third party risk aspect essentially null by never putting more than 10k sats or something in there (as I say with >40k in my alby wallet rn lol).\n\nWhat is sad is that one day regulators, even if they accept Bitcoin, might try to put the same regulations that exist on banks onto custodial lightning, which would all but kill the things we love it for. Of course, since making a small, private, custodial wallet for peers is so easy, the regulations really wouldn't matter. https://example.com/ 711 433555 433555.434072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.973829375746 0 \N \N f 86649920 \N 1 99898639 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 01:06:57.648 f \N \N \N 0 0 0 0 1 0 0 60799 2023-09-07 11:04:10.958 2025-03-29 22:39:52.688 \N @k00b, you should invite Greg Maxwell on SN AMA and be an active user here. They even [suspended him on the infamous r/Bitcoin](https://old.reddit.com/r/Bitcoin/comments/xi8f1q/is_nullc_banned_from_reddit/) LOL https://example.com/ 9363 1620 1620.60799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.75728532679158 0 \N \N f 130670028 \N 1 156697337 0 f f \N \N \N \N 1620 \N 0 0 \N \N f \N 2025-03-18 20:21:31.218 f \N \N \N 0 0 0 0 1 0 0 430109 2025-03-08 20:37:35.127 2025-03-29 22:39:48.907 Stacker News Live #133: P2P Non-Custodial Zaps \N https://www.youtube.com/watch?v=VrDszvzQMQk 21036 \N 430109 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 29.7850117991448 0 \N \N f 1487656233 \N 10 184564386 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 392661 2025-02-05 12:59:31.335 2025-03-29 22:39:48.908 Precursor: Mobile, Open Hardware, RISC-V System-on-Chip (SoC) Development Kit \N https://www.crowdsupply.com/sutajio-kosagi/precursor 6653 \N 392661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5804388145701 0 \N \N f 179174474 \N 1 17358482 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401714 2025-02-13 10:40:59.205 2025-03-29 22:39:48.908 MM: Monday Muse # Goood Monday, creative stackers!\n\nIt's a great day to share those beautiful ideas you have been dreaming about during the weekend. The [top](?sort=top) one will receive the 2100 Bonus tomorrow.\n\nShare any beautiful ideas as video, photo or whatever other file you want to share, you just need to prove it came out of your brain. Let's have some fun! \n\nZap zap and get some sats!\n \N 15858 \N 401714 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 27.7732531775074 0 \N \N f 151898036 \N 2 111360876 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 407838 2025-02-18 12:18:38.176 2025-03-29 22:39:48.908 SN release: PWA push notifications If you have SN installed as PWA and you have a browser that supports push notifications, you can now get your SN notifications via push even if the PWA is not in the foreground.\n\nThe option is available in the upper right when you visit your notifications page (the bell icon).\n\nI'm not sure but you might have to reinstall the PWA and reenable push notifications. If you're using an Apple device, push notifications were only recently made available in:\n- iOS 16.4 or later\n- Safari 16 for macOS 13 or later\n\nThis release only gives notifications for replies, mentions, and sat stacking ... more types are coming. \n\nThis was a complete rewrite of the PWA aspect of SN. If you have any issues please let us know and we'll try to get them fixed.\n\nBig shout to @ekzyis. He did all the work on this. \N 21281 \N 407838 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8961272021359 0 \N \N f 231229247 \N 1 127226119 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404548 2025-02-16 00:46:31.205 2025-03-29 22:39:52.674 \N I am playing around with a raspiblitz image for x64 computers, on various hardware configurations (NUC, PC, Laprtop) and with different LN implementations (CLN and LND). Testing in generally.\n\nMaybe I will prepare another guide for newbies.\n\n[Here is the documentation I am following](https://github.com/openoms/raspiblitz/tree/amd64/alternative.platforms#amd64-image) - by @openoms (excellent documentation)\n\nExactly like in this [nice video explaining the theory of everything](https://lightning.video/08ab326d5289d8907557703aa1f9ddbad2cfde5eab6ea6f5dce09f06a92784b5): for more you fuck around... more you will find out. https://example.com/ 21815 404521 404521.404548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8436702759765 0 \N \N f 80169956 \N 1 94811589 0 f f \N \N \N \N 404521 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414751 2025-02-24 09:21:30.914 2025-03-29 22:39:52.675 \N Just finishing my training before my first full marathon! \n\nAlready have a couple of videos in the pipeline to publish in my Bitcoin Youtube channel. https://example.com/ 3213 414729 414711.414722.414729.414751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.57073890477 0 \N \N f 300504016 \N 2 195581711 0 f f \N \N \N \N 414711 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410441 2025-02-20 13:35:13.307 2025-03-29 22:39:52.675 \N Howdy!\n\nLive look at @k00b today!\n\n\n![Pearl.jpg](https://m.stacker.news/10838) https://example.com/ 21379 410237 410237.410441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.21054693958691 0 \N \N f 49643222 \N 1 122519951 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436065 2025-03-13 09:31:28.511 2025-03-29 22:39:52.675 \N Common parlance is that all maxis are toxic maxis. I believe there is a difference, and rather than recognizing it as an insult its better to to adopt it and redefine it as simply one that believes bitcoin is inevitable over any alt or fiat. This business of alts being immoral, well I'll agree with you there about toxic insecurity. People are going to make the wrong decisions, and some will admit it when they see the light in regard to bitcoin v.s. alts. It takes wisdom, or apathy, to allow people to make mistakes rather than trying to be a white knight and saving them from themselves. Better to be humble in your knowledge than to judge others for their lack of it. https://example.com/ 10352 436059 436028.436029.436031.436059.436065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2077723097263 0 \N \N f 787932851 \N 9 103017027 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 08:32:53.604 f \N \N \N 0 0 0 0 1 0 0 443516 2025-03-19 11:52:00.513 2025-03-29 22:39:52.675 \N what are the most important lessons you’ve learned about how to approach bitcoin education? https://example.com/ 20381 443503 443399.443422.443503.443516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.92042855159898 0 \N \N f 124213788 \N 1 200264847 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 2025-03-26 05:16:24.91 f \N \N \N 0 0 0 0 1 0 0 415285 2025-02-24 16:53:42.667 2025-03-29 22:39:48.909 Proton Mail Discloses User Data Leading to Arrest in Spain \N https://restoreprivacy.com/protonmail-discloses-user-data-leading-to-arrest-in-spain/ 1009 \N 415285 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 10.9503238113149 0 \N \N f 163925128 \N 1 19517859 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443221 2025-03-19 07:18:12.848 2025-03-29 22:39:52.675 \N Why did you start SB and where do you see yourself in 5 years? https://example.com/ 10661 442751 442751.443221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9954589093343 0 \N \N f 40495474 \N 1 184892860 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 2025-03-26 04:42:08.714 f \N \N \N 0 0 0 0 1 0 0 424414 2025-03-04 04:44:44.502 2025-03-29 22:39:52.676 \N This hurts my soul https://example.com/ 654 424363 421720.421840.421855.421925.421936.423276.423492.424363.424414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.71301589934811 0 \N \N f 94943422 \N 1 219632279 0 f f \N \N \N \N 421720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434515 2025-03-12 01:36:26.672 2025-03-29 22:39:52.676 \N Fiat mining 75 hours a week. Flipped both direct deposits to strike 100% btc\nLooking at crowd health, attempting to run a profitable routing node through voltage with a few sats. Looking to buy a cheap asic from kaboom racks, to heat my cold ass condo. https://example.com/ 20717 434318 434278.434318.434515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8677637315635 0 \N \N f 297126755 \N 2 125261512 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 04:50:52.16 f \N \N \N 0 0 0 0 1 0 0 430894 2025-03-09 13:46:49.582 2025-03-29 22:39:52.676 \N Great to see the savings and product. Proving time = money.\n\n1. So this is looking to supplant GoodReads? \n2. Would be cool if people could create their own summaries (enabled by AI) and discuss key topics like @elvismercury does here. Could get people reading way more. https://example.com/ 20157 430891 430891.430894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2423580997418 0 \N \N f 238230885 \N 1 45803073 0 f f \N \N \N \N 430891 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434760 2025-03-12 08:12:25.868 2025-03-29 22:39:52.676 \N It's great. Now we just need the rewards to be tweaked to incentivize zapping that older stuff. Almost there. https://example.com/ 4388 434687 434646.434687.434760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2534330803292 0 \N \N f 692432759 \N 3 249075843 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 02:00:20.39 f \N \N \N 0 0 0 0 1 0 0 458305 2025-03-29 07:31:03.452 2025-03-29 22:39:52.676 \N I've heard rumors their main business model is selling to chain analysis companies. Would stay as far away as possible from them https://example.com/ 18430 458288 458288.458305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6183622480376 0 \N \N f 176189893 \N 2 151404441 0 f f \N \N \N \N 458288 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436341 2025-03-13 13:41:45.174 2025-03-29 22:39:52.677 \N Day 458 of snailposting everyday 'til BTC hits $100k.\n\n...and day 22 of trimmin' the fat (94.1 | 80.0 | 3.5).\n\n__@_'-' https://example.com/ 21131 436271 435690.435929.436271.436341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.6769511816877 0 \N \N f 586990410 \N 3 6291068 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 2025-03-20 08:25:19.02 f \N \N \N 0 0 0 0 1 0 0 416578 2025-02-25 17:43:40.876 2025-03-29 22:39:52.677 \N What about https://BTCmap.org ? https://example.com/ 811 416551 416158.416221.416253.416288.416551.416578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5936396973969 0 \N \N f 1131364750 \N 9 159841050 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428529 2025-03-07 11:32:10.734 2025-03-29 22:39:52.677 \N 10 % fee\n\n> To make this feature sybil resistant, SN now takes 10% of zaps and re-distributes them to the SN community as part of the daily rewards. https://example.com/ 663 428308 428308.428529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.60210687191135 0 \N \N f 172584676 \N 2 208418251 0 f f \N \N \N \N 428308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434336 2025-03-11 19:47:43.007 2025-03-29 22:39:52.677 \N If you can have a business model without ads more power to you, but if you have a social/UGC platform, its basically baked in at this point, unless you have some sort of subscription like an OF or a patreon kinda vibe but that's its own niche and both those platforms rely on massive shilling from their user base so you just externalizing the ads rather than having your own internal ad space\n\nIf you don't have an ad space, the content quickly becomes ads, anyone that can get x amount of attention and traffic will figure out how to sell it on a secondary market. While ads won't stop it, it provides a baseline price for attention in a network and then brands can gauge the value UGC disguised as ads are really worth or how much CPC they're willing to part with for possible leads\n\nI don't think Bitcoin fixes ads, but it could make bidding for them cheaper and make it easier to move capital around, if you're committing capital to let's say a google product but you over-allocated you can't exactly move it to meta to get a cheaper CPC you stuck in their ecosystem, which is often rigged with a bs floor price they decide and its not really a market price, if no one is bidding for your eyeball why should I pay a floor price, that's nonsense \n\nI do think Bitcoin can help platforms and creators get paid faster and keep more of the revenue, which will help improve sites and the quality of content\n\nThe concern with Bitcoin ads is also how do you reduce click fraud if payments are instant, fiat ad networks, do an audit before they release funds, not that they get it right, click fraud is still a major problem \n\n https://example.com/ 1483 433878 433878.434336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8134075561164 0 \N \N f 206988704 \N 1 31978430 0 f f \N \N \N \N 433878 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420571 2025-02-28 19:53:44.09 2025-03-29 22:39:48.909 💡 ISDA and its Endgame - Part 2 Here's Part 2 of Lavish explanation of ISDA letter and how it relates to Basel III. https://ckarchive.com/b/68ueh8hkee2q4skq88gqmtzdqrokk 12749 \N 420571 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.84891714157896 0 \N \N f 216356694 \N 1 211731031 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 306390 2024-11-24 10:04:05.545 2025-03-29 22:39:48.909 What's So Bad About Trump? **To be clear from the start. I'm neither a Trump supporter or opponent. I have started describing myself as a potentially disenfranchised person.**\n\nSecondly, I'm not looking for libertarian reasons that Trump is bad. I know those. Here's my question.\n\nIf you are a normie. If you are a voter, maybe middle of the road "independent". Maybe a progressive. What is so bad about Trump compared to these former presidents.\n\n* Nixon\n* Reagan\n* Bush\n* W. Bush\n\nI was recently listening to [Tom Wood's episode about the recent Trump verdict with Robert Barnes](https://tomwoods.com/ep-2500-robert-barnes-on-the-donald-trump-conviction/). I really haven't been following the multiple court cases but this episode was a good primer on the NY case. I also recently watched a clip of Bill Maher appearance of Gutfeld. These two things resulted in my asking the question.\n\nWhat on earth is so bad about Trump? I have no strong feelings for or against him. I think I'm pretty dispassionate. \n\nI'm old enough to remember the huge level of hate directed at Reagan. He was the devil to most on the left. Bush much less so. But W Bush... oh man. He was the man that led the US into war on false pretense. He oversaw the expansion of spying on US citizens. Was behind the expansive use of torture. He was evil in the eyes of the left. I remember Obama running on "change". \n\nObjectively I struggle to come up with anything Trump actually did that rivals the things that W. Bush did. Yet, over and over I have heard progressives long for W to come back... I do not see Trump as being especially dangerous or evil. I do see him as evil. I do see him as a criminal. But he's a former president. All of them are in these groups IMO.\n\nTo me... it just seems like emotional distress. You know how it is when someone just gets under your skin and stuff that shouldn't work you up just drives you nuts? That's what I think is going on here. \n\nHonestly it seems like mental illness to me. Messaging from the system is powerful. Repeated programming telling you how bad something/someone works on most people. That's a part of it. But I also think Trump is an excellent troll. He enjoys playing the villain. He seems to relish it. I mean, we played the villain for a while in the WWE. \n\nI think one thing that triggers this hate is how Trump takes a dump on the religious reverence for the state and its trappings. You see this in the reactions to J6. You see this in the mocking Trump gets. Trump exposes people. Their deep feelings and emotion state. I see this in both his supporters and haters. What seems to trigger people and to me to be the focus of most rage is his language. His words... yeah his words. That's where I have the disconnect. Politicians typically talk with flowery language that is full of nice sounds platitudes but no substance or truth. Trump doesn't do that. Yeah, he lies but he doesn't seem to care if he offends. If you believe Bush and Obama words and use that as your basis I get how Trump is worse. But really, are we 16 years old? Are that many people that naive? It would appear this is true.\n\n Again, I am not a Republican. I don't participate. But if you are a progressive. If you hate Trump I would seriously consider doing some soul searching. Maybe you need to turn off the news. Maybe you need to tune out for a while. I'm not telling you to vote, vote for Trump, or even like him. The level of opposition to Trump is not rational to me. It seems like a emotional overreaction. \n\nMaybe I'm just missing something. Tell me what I'm missing and how it is worse than any other modern president.\n\n \N 21631 \N 306390 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.09390786816957 0 \N \N f 96506553 \N 1 132882620 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 104402 2023-12-28 07:52:42.753 2025-03-29 22:39:52.679 \N I vote yes on the ground that I do not always use terms literally. Listening to a book is not "literally" reading a book but it's close enough to use the same term in most contexts, and in the rare circumstances when the distinction really matters, you can clarify\n\nAlso, I think the whole thread so far is this meme\n![](https://m.stacker.news/50712) https://example.com/ 21422 103905 103905.104402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.3882591455688 0 \N \N f 200414109 \N 2 111780857 0 f f \N \N \N \N 103905 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428340 2025-03-07 06:16:20.218 2025-03-29 22:39:52.679 \N I have one. It’s still working 1.5 years later. It’s good for beginners but it isn’t the be-all end-all self-hosting solution yet. \n\nIt’s easy to get started and set up, but you have to understand what it is, especially if you’re going the Raspberry Pi route with the recommended specs. RPis aren’t some magic super computer. They’re tiny, hobbyist machines, not nearly robust enough for a permanent server your life depends on. You get way more power and storage with a refurbished small form-factor PC. \n\nUmbrel isn't that customizable, and the entire goal of self-hosting is to rely less on third parties like Umbrel. Set one up and try some services, but keep learning. Jump over to Linux and find the real, self-hosting adventure. https://example.com/ 2016 427810 427251.427760.427810.428340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1399066616506 0 \N \N f 74047128 \N 1 57229554 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455720 2025-03-27 09:26:13.367 2025-03-29 22:39:52.68 \N ![](https://i.postimg.cc/MGMbvRYj/how-stop.jpg) https://example.com/ 9494 455714 455649.455650.455665.455682.455714.455720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6764408469998 0 \N \N f 217148003 \N 1 96952603 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403750 2025-02-15 07:09:04.387 2025-03-29 22:39:52.68 \N [![SN-vader.jpg](https://imgprxy.stacker.news/de9jAukJCHQ05YvLKYPsrQz_HbsShgav9_5atTU6PM0/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvMTNLV2I1Y1QvU04tdmFkZXIuanBn)](https://postimg.cc/75fM24RM) https://example.com/ 21405 403694 402904.403694.403750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2315477721557 0 \N \N f 2049695248 \N 16 67513067 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434227 2025-03-11 17:20:08.055 2025-03-29 22:39:52.68 \N Will you be our I2P champion? \n\nLead the campaign. What do you think is the first step towards mainstream adoption? https://example.com/ 20861 433750 215973.216272.216481.216553.433750.434227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.88666298612316 0 \N \N f 200566652 \N 1 248797328 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N 2025-03-19 04:40:30.948 f \N \N \N 0 0 0 0 1 0 0 437579 2025-03-14 16:29:11.583 2025-03-29 22:39:52.681 \N Rumors, mostly. Don't think any one believed he'd be doing it. \n\nI've not really followed internal politics in last days, so trying to catch up myself.\n\nOne theory floating around: declaration of martial law to avoid possible personal impeachment (several other officials already got impeached).\n\nHe's hugely unpopular, highly corrupt, and pretty much incompetent. At least, that's the view from fellow academics. https://example.com/ 14220 437560 437044.437560.437579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.222532485732749 0 \N \N f 236546055 \N 2 134687059 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422974 2025-03-02 20:27:47.182 2025-03-29 22:39:52.681 \N Yes!\n\nI also think I should leave my phone at home so I can enjoy my mind wandering around more. But then I can't take pictures. \n\nThat also the reason why I decided to not listen to podcasts even though it was a great idea of yours. I actually wanted to enjoy the boredom.\n\nMaybe I'll buy a camera and start with photography.\n\nBut am I not than still distracting myself by occupying myself with something predetermined? https://example.com/ 11714 422926 422863.422881.422926.422974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1327665356572 0 \N \N f 12239289 \N 1 66577963 0 f f \N \N \N \N 422863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403115 2025-02-14 13:01:22.816 2025-03-29 22:39:52.681 \N Bitcoin has all sorts of lightweight clients that have to trust their parent nodes. This trust can be removed with zk-proofs. See one such project: https://stacker.news/items/256267\nI hope to see more of that, for example watchtowers that can prove to you that your lightning channel is not being closed or SPV wallets that can prove to you that you haven't received a payment.\n https://example.com/ 1236 402992 402674.402763.402992.403115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.92671712991136 0 \N \N f 127271631 \N 1 182941223 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401390 2025-02-13 00:10:06.402 2025-03-29 22:39:52.681 \N I agree with @carlosfandango. Thanks for posting. I'm not really a sci fi reader but I have read Bradbury's Martian Chronicles and Fahrenheit 451. In fact, I think I read F451 twice. You bring up some great points. It's a classic must read. https://example.com/ 12368 401385 401351.401381.401384.401385.401390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4660223626573 0 \N \N f 32680116 \N 1 38147082 0 f f \N \N \N \N 401351 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446313 2025-03-21 04:24:35.959 2025-03-29 22:39:48.91 Wallet of Satoshi has 2432 active lightning channels! \N https://mempool.space/lightning/node/035e4ff418fc8b5554c5d9eea66396c227bd429a3251c8cbc711002ba215bfc226 21710 \N 446313 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 24.8420773372977 0 \N \N f 1116880767 \N 9 155368575 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455486 2025-03-27 03:42:03.468 2025-03-29 22:39:48.91 Sunlight - is it really bad for you? Sunscreen - is it really good for you? I'm putting this post in the conspiracy section because...well, it's cheaper, but also - it really does seem that there's a concerted propaganda effort to push skin cancer fears, and push yearly (or more!) skin checks by dermatologists, and heavy use of sunscreen. \n\nCheck out these articles:\n\nNew York Times article: Answers To All Your Burning Questions About Sunscreen\nhttps://archive.vn/IitH4 \n\nNew York Times article: What Gen Z Gets Wrong About Sunscreen\nhttps://archive.vn/bwuDL\n\nThey're full of propaganda about sun exposure:\n\n>Young adults are often unaware of what sun damage looks like and how best to prevent it, Dr. Shive said. She said she recently saw a young patient who didn’t know tan skin and freckles were signs of sun damage. \n\n>The average adult needs about one ounce of sunscreen to cover all exposed skin. “We often say a shot glass of sunscreen for the whole body,” said Dr. Jenna Lester, an associate professor of dermatology at the U.C. San Francisco School of Medicine, “but I tell my patients to fill the shot glass up to the brim and use even more if needed so you don’t miss any spots.”\n\nReally? Freckles are a sign of sun damage? The only places on my body that don't have freckles are those that never, ever see the sun. \n\nThe substack auther A Midwestern Doctor (https://www.midwesterndoctor.com/) has a great article on this topic, which goes in depth on the conspiracy aspects of it [Dermatology's Disastrous War Against The Sun] (https://www.midwesterndoctor.com/p/dermatologys-disastrous-war-against). Here's a few quotes from that article:\n\n>Skin cancers are by far the most commonly diagnosed cancer in the United States, so to prevent them, the public is constantly told to avoid the sun. However, while the relatively benign skin cancers are caused by sun exposure, the ones responsible for most skin cancer deaths are due to a lack of sunlight.\n\n>This is unfortunate because sunlight is arguably the most important nutrient for the human body, as avoiding it doubles one’s rate of dying and significantly increases their risk of cancer.\n\n>A strong case can be made that this dynamic was a result of the dermatology profession (with the help of a top PR firm) rebranding themselves to skin cancer fighters, something which allowed them to become one of the highest paying medical specialities in existence. Unfortunately, despite the billions that is put into fighting it each year, there has been no substantial change in the number of skin cancer deaths\n\nI don't use sunscreen anymore, and I haven't for a year or so now. It's part of my general skepticism towards the heavily advertised "it's for your health" and "but you'll get cancer" propaganda that we've been subject to. \n\nOnce you start being aware of it, you see what people are influenced to do by the propaganda. For instance - absolutely slathering themselves and their kids in sunscreen, to the point that they're these white masked creatures. \n\nAlso - I heard from a friend of mine that after a long, coast to coast bike ride, slathered in sunscreen every day, she got a very strong reaction from the sunscreen, and can't wear it without her skin getting raw and red.\n\nSo now, I sun myself regularly (when it's not too hot out). And in situations where I would have previously worn sunscreen, I skip it, or just wear a hat, and maybe a long-sleeved shirt. And if I'm out in the sun for a long time, say on a long hike, I'll use an umbrella, which incidentally can be very effective in preventing overheating. \n\n \N 17212 \N 455486 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 5.2192168888698 0 \N \N f 337719697 \N 3 40297714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 427091 2025-03-06 05:02:49.45 2025-03-29 22:39:48.91 AI is poised to take over teachers’ jobs. Ironically, teachers are leaning on AI Disclaimer: I’m going to present on **Using Gen-AI tools to enhance English teaching and learning** to fellow educators next Monday. Suffice it to say that I embrace the invasion of Gen-AI tools.\n\nPreparing for the presentation reminded me of how [Hayao Miyazaki famously declared his disdain for Gen-Ai tools.](https://stacker.news/items/426811) Aside from his exceptional talent and unparalleled work ethics, I do think that he is in a privileged position to let nature run its course, have ideas slowly germinate and marinate inside his mind, and embark on drafts and revisions before he is satisfied with his final product. Which will be top-notch and perhaps groundbreaking, that goes without saying.\n\nDid you know that your child’s report card remarks may not be completely written by his or her teachers anymore? Platforms like Magic School help busy teachers churn out remarks in a jiffy. More motivated ones will adapt these remarks to add a personal touch; their stressed-out counterparts will probably copy and paste these remarks on the school management portal.\n\nBecause these remarks are good enough. I don’t think that many teachers lack the will to come up with personalised remarks, but given that we wear multiple hats and fulfill a multitude of tasks every day, we might not have the cognitive energy required to come up with heart-felt and insightful remarks. Insight is a time-consuming process, but time is the commodity that teachers lack.\n\nSo, sometimes I only have 15 mins before the next lesson. I could be more efficient, I guess. I may succumb to dillydallying after a lesson and only waking up my idea when time tightens its suffocating grip on me. Though I argue that I’m just human and need to decompress after an exhausting lesson and just lay back and eat something. Other times, I get dragged into conversations I may not particularly care for, but my colleagues may need help, so I will be there for them. However, these disruptions mean that I settle for *good enough*.\n\nSo, I use Gamma to generate PPT slides, as well as Magic School to generate worksheets. I hastily scan through AI’s work, make a few crucial changes, hit ‘Send’, and rush my way to class. I do my best with the materials I churn out. Sometimes, I’m even an effective teacher because some students remember what I say and learn to apply the strategies taught on the next assignment.\n\nNot sure where I’m going with this. Maybe because I have no resolution in mind. I guess I envy the likes of Hayao Miyazaki who not only know what they want, but have also carved out a conducive environment for them to pursue wholeheartedly their vision, heedless of time’s march and money’s pressures. \N 20829 \N 427091 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 22.5497257448669 0 \N \N f 616260810 \N 8 12667306 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 394953 2025-02-07 19:04:10.142 2025-03-29 22:39:48.91 Legend of the Snail | 18/20 participants left | 10 days until next KO | $70,944 ```\n+================================x\n| Welcome to day 362 of the |\n| _ _ _ _ |\n| | |__ (_) |_ ___ ___ (_)_ __ |\n| | '_ \\| | __/ __/ _ \\| | '_ \\ |\n| | |_) | | || (_| (_) | | | | | |\n| |_.__/|_|\\__\\___\\___/|_|_| |_| |\n| |\n| $100k bet! |\nx================================+\n```\n\nDate: [2024-04-11](https://stacker.news/items/502079)\n\nNumber of participants: 20\n\n**Prize Pool: `295,779 sats`**\n\nPrize Pool change since [last elimination update](https://stacker.news/items/469737): `+152,258 sats`\n_(zap this post to donate to the pool)_\n\nCurrent prize per bitcoin: $70,944.00\n\n![2024-04-11-152332_765x533_scrot.png](https://m.stacker.news/26200)\n\n| Nym | Day | Paid | Elimination Date | Eliminated |\n| --- | --- | ---- | ---------------- | ---------- |\n| @orthwyrm | 260 | X | 2024-02-18 | X |\n| @mango | 359 | X | 2024-04-11 | X |\n| @Alby | 365 | X | 2024-04-21 | |\n| @siggy47 | 380 | X | 2024-05-18 | |\n| @CheezeGrater | 418 | X | 2024-06-07 | |\n| @ekzyis | 420 | X | 2024-06-11 | |\n| @0fje0 | 427 | X | 2024-06-21 | |\n| @phatom | 440 | | 2024-07-21 | |\n| @486DX2 | 486 | X | 2024-08-20 | |\n| @carlosfandango | 501 | X | 2024-09-07 | |\n| @Lux | 522 | X | 2024-10-09 | |\n| @davidw | 564 | X | 2024-11-02 | |\n| @nikotsla | 570 | X | 2024-11-12 | |\n| @BitcoinIsTheFuture | 584 | X | 2024-12-01 | |\n| @south_korea_ln | 608 | X | 2025-01-04 | |\n| @Undisciplined | 653 | X | 2025-01-28 | |\n| @grayruby | 655 | X | 2025-02-03 | |\n| @gnilma | 666 | X | 2025-02-26 | |\n| @Longtermwizard | 700 | X | 2025-05-09 | |\n| @Bitman | 810 | X | | |\n\nNext elimination: @Alby (10 days remaining)\n\n_Want to participate? Click [here](https://stacker.news/items/363233) for more information._\n\n@mango:\n\nhttps://www.youtube.com/watch?v=P4MiC67seUY\n \N 20717 \N 394953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11619400191017 0 \N \N f 217275388 \N 1 40804664 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428498 2025-03-07 10:53:25.925 2025-03-29 22:39:52.681 \N My Survivor Pool. We should start one here with sats. https://example.com/ 20669 428292 428292.428498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4845545087253 0 \N \N f 113689304 \N 2 25478935 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458132 2025-03-29 01:29:34.801 2025-03-29 22:39:52.682 \N - Simplest is just a spreadsheet you can do tracking the prices manually.\n\n- If you want to use a service, then https://koinly.io is really nice to use, it prepares everything for you, and you only need an email to register.\n\n- For an open source option, check out https://rotki.com which is a portfolio tracker that you can manage yourself, here's the [github](https://github.com/rotki/rotki) https://example.com/ 17976 458011 458011.458132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.85551622166752 0 \N \N f 137498829 \N 1 131511879 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422957 2025-03-02 20:02:16.457 2025-03-29 22:39:52.682 \N > I realised the deceptive but powerful communist rhetoric that often well meaning but naive people fall for. And when you try to explain the deception directly to them they cannot see it and stare blankly back as if under some kind of spell or brain washing.\n\nI found this effect long ago when dealing with brainwashed people here in Argentina. The most terrifying effect I found was that even if THEY themselves arrive to the conclusion that the ideology, ideas and practices are flawed, out of emotion they will reverse that logic process and get back to their first most flawed argument like if nothing happened at all. I found out that you first must make people emotional about your ideology, to then proceed to use logic to seal the deal. https://example.com/ 4989 422704 422704.422957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.61071426656859 0 \N \N f 75238455 \N 1 60568259 0 f f \N \N \N \N 422704 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403365 2025-02-14 18:16:39.63 2025-03-29 22:39:52.682 \N https://imgprxy.stacker.news/BxEqWeKHXnChe14SGvRUvMcnBVOxGjqF6ctZiC9qzCo/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9mOVRxM01DLzQyYzU3YTJhLTMyNDMtNDkxMy1iZDA3LWVmY2RlOTRmYjU2MC5qcGc https://example.com/ 10280 402995 402674.402955.402995.403365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0448647049789 0 \N \N f 14426007 \N 1 10892726 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447065 2025-03-21 15:39:26.294 2025-03-29 22:39:52.682 \N Day 374 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 8459 446465 446371.446452.446464.446465.447065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2192729090794 0 \N \N f 458892874 \N 3 233648317 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:27:03.865 f \N \N \N 0 0 0 0 1 0 0 440984 2025-03-17 17:31:41.98 2025-03-29 22:39:48.91 Something's Wrong With The Coinjoins · zkSNACKs/WalletWasabi \N https://github.com/zkSNACKs/WalletWasabi/issues/10462 899 \N 440984 \N \N \N \N \N \N \N \N health \N ACTIVE \N 6.13608623099985 0 \N \N f 462450781 \N 4 175732572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431158 2025-03-09 15:48:53.15 2025-03-29 22:39:52.672 \N Thanks for scrolling all the way down to the comments section 😂 \n\nI would love to hear about Turkey 🇹🇷 definitely! https://example.com/ 9337 431082 430993.431001.431049.431074.431082.431158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9795758032522 0 \N \N f 59530758 \N 1 11845837 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435246 2025-03-12 14:51:23.613 2025-03-29 22:39:52.673 \N The whole point is voting rights allegedly. Sounds like Tesla will buyback and give him shares. Options or money would not get him those voting rights. New stock dilution would need shareholder approval https://example.com/ 17722 435046 435046.435246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0971344738748 0 \N \N f 514579338 \N 4 64854829 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 07:01:28.451 f \N \N \N 0 0 0 0 2 0 0 404189 2025-02-15 16:12:06.28 2025-03-29 22:39:52.674 \N How long do you typically stay in one place before bouncing to another? https://example.com/ 20377 404150 404042.404150.404189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0638633235565 0 \N \N f 254998376 \N 4 144152026 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457817 2025-03-28 18:17:10.059 2025-03-29 22:39:52.674 \N Exactly! I just assumed they were trying to squeeze more profit in a downturn, it never would have occurred to me that they've been operating at a loss this entire time. https://example.com/ 1447 457565 457509.457565.457817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.63588555953068 0 \N \N f 295257151 \N 2 223116701 0 f f \N \N \N \N 457509 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437700 2025-03-14 19:04:45.8 2025-03-29 22:39:52.675 \N 👏 Thank you to @btcretriever for creating it, highly recommend if you need any work front end, web or dev work done https://example.com/ 19943 437502 437502.437700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4783272183201 0 \N \N f 339330176 \N 2 115236390 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441774 2025-03-18 09:31:26.56 2025-03-29 22:39:52.675 \N Quit my well compensated job at the Federal Reserve and become unemployed. It's been tough but as a "Bitcoin maxi", did I have any other choice??? It could cost me everything. https://example.com/ 20681 441742 441742.441774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.23923035881013 0 \N \N f 32219796 \N 1 61889609 0 f f \N \N \N \N 441742 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423925 2025-03-03 18:00:02.023 2025-03-29 22:39:52.675 \N 3 is the magic number\nhttps://www.inpowermovement.org/\nhttps://onestupidfuck.com/\nhttps://www.educatedinlaw.org/ https://example.com/ 18241 423895 423667.423687.423704.423895.423925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5704829216705 0 \N \N f 1064946476 \N 8 210082767 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448421 2025-03-22 15:41:20.133 2025-03-29 22:39:52.675 \N You WILL own ETH and you WILL be happy https://example.com/ 5173 448349 448349.448421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5801389720462 0 \N \N f 185184745 \N 1 5438452 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401673 2025-02-13 10:04:49.642 2025-03-29 22:39:52.682 \N Worst case scenario is people adopt CBDCs without any resistance, we get a worldwide CCP style surveillance state/social credit system. Bitcoin becomes a dark market only asset and we live in tyranny. \n\nThat's the worst case. The saddest case is we don't keep our eye on the ball, get complacent as price goes up, stop focusing on growing adoption and educating and instead spend time infighting over shit that doesn't really matter for another 20 years like security budget and a centralized shitcoin like ethereum goes full on centralization partnering with big banks and big tech gets in the hands of billions and manages to fool them that they are the newer, better, more innovative bitcoin (all the shit the shitcoiners have been peddling for years but with big bank and big tech support because it is PoS and they control the protocol). That would be sad. https://example.com/ 5806 401660 401651.401660.401673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1385278050852 0 \N \N f 484181046 \N 4 17134464 0 f f \N \N \N \N 401651 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420794 2025-03-01 04:35:42.644 2025-03-29 22:39:52.675 \N UPDATE - I have now completed the design and displayed it on my [website](https://www.plebpoet.com/projects.html) for your viewing pleasure and if you're at the next bitcoin++, I hope you have a great time! https://example.com/ 21228 420577 420577.420794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8361222582856 0 \N \N f 172349150 \N 1 237808053 0 f f \N \N \N \N 420577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458340 2025-03-29 08:05:08.034 2025-03-29 22:39:52.676 \N cookies baby! the referral link sets a cookie https://example.com/ 8945 458149 458149.458340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2802920516437 0 \N \N f 174883514 \N 1 90794784 0 f f \N \N \N \N 458149 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447124 2025-03-21 16:23:28.489 2025-03-29 22:39:52.676 \N I haven't looked into the *why* so I can only guess a reason based on my experience.\n\nMy experience is this: I created an LNC connection string that only has permission to create invoices and read info from my node.\n\nThen I published that LNC connection string on one of my test stores -- my "Alice" store.\n\nThen I pretended to be a customer -- "Bob" -- and I used the LNC connection string to connect to Alice's node and load an invoice. It all worked as expected so far: I saw a nice, shiny invoice and I could display it as a qr code for Bob to pay.\n\nThen, while Bob was still viewing that invoice, I pretended to be a second customer -- "Carol" -- and I tried to do the same thing Bob did: I tried to use the LNC connection string to connect to Alice's node and load an invoice. But it did not work. I got an error that said something like "the connection is already in use."\n\nMy guess is that the LNC devs were very motivated to ensure that each LNC connection string is only used for one service. I think they don't want two devices to both have access to the same node via the same connection string -- they want some sort of "separation of strings," so that you give a new string to every service.\n\nMy guess is this: to help ensure that users do not share a string between two devices, they handicapped the strings so that they cannot establish two simultaneous open connections. Consequently if Bob is using it, Carol cannot.\n\nTherefore, if I used LNC, Bob could effectively bring down a store's lightning capability by using up its only available connection. He could just get an invoice and constantly keep a connection open to check its status, without ever intending to pay. I don't want that so I don't want to use LNC. https://example.com/ 21062 446456 446456.447124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.69645600917405 0 \N \N f 887729840 \N 4 247841069 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 449524 2025-03-23 12:17:19.257 2025-03-29 22:39:52.676 \N If you are using shitcoin casino, I'd say at least try shifting to Bitcoin only solution? \n- on [Strike](https://strike.me/) you have zero fees to buy Bitcoin and can send it over lightning or onchain\n- on [River](https://river.com/) you can buy large amounts and also send onchain or over lightning\n- with [Swan](https://www.swanbitcoin.com/) you can set up nice DCA\n\nBut even better start using [Robosats](https://learn.robosats.com/) or [Bisq](https://bisq.network/) or [private Signal groups](https://stacker.news/items/7424). Or become friend with your local miner and get sats from them for cash... \n https://example.com/ 9363 449517 449218.449414.449517.449524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23519445224689 0 \N \N f 49634436 \N 1 118472494 0 f f \N \N \N \N 449218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436302 2025-03-13 13:04:32.356 2025-03-29 22:39:52.677 \N The list also tries to restrain every US citizen to prevent them from publishing text (i.e. transactions) that eth wallets interpret as a payment to tornado cash: https://www.coincenter.org/u-s-treasury-sanction-of-privacy-tools-places-sweeping-restrictions-on-all-americans/\n\nPeople who publish such text anyway (even in a format such as a physical book) are apparently in violation of OFAC and subject to prosecution. But in order to punish them OFAC has to examine the transaction they published (i.e. some text they wrote) and prosecute them for its contents. This is grounds for a lawsuit for violating the first amendment. https://example.com/ 16176 436241 436241.436302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.668530249518646 0 \N \N f 170945691 \N 1 143505841 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:38:42.869 f \N \N \N 0 0 0 0 1 0 0 442350 2025-03-18 14:23:57.719 2025-03-29 22:39:52.677 \N I 100% agree with this and it may be the most important sub to do at this point. \n\nI had this epiphany recently after visiting multiple cities/towns that were supposed to have quite high Bitcoin usage, but... no one actually uses it to pay. Even bitcoiners don't pay with bitcoin. If you don't want to have less bitcoin, then "Pay-and-replace", but bloody use the bitcoin! \n\nSo to every bitcoiner: Any time you travel to a new city - GO VISIT PLACES THAT ACCEPT BITCOIN! https://example.com/ 9 442229 441553.442229.442350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7312711720722 0 \N \N f 216095003 \N 2 200611149 0 f f \N \N \N \N 441553 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 445709 2025-03-20 17:37:41.818 2025-03-29 22:39:52.677 \N Alright, no seats for anyone matching that description, out of respect. https://example.com/ 17148 445701 445518.445696.445701.445709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.34093913858933 0 \N \N f 877323624 \N 8 183955275 0 f f \N \N \N \N 445518 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434921 2025-03-12 10:40:46.215 2025-03-29 22:39:52.677 \N sorry to say\n\n| instance | flag | status\n|---|---|---\n| sn1 | w45_tH15_Y0vR_f1r57_c7F_cd2df6ee | does not work\n| sn2 | w45_tH15_Y0vR_f1r57_c7F_73bd7dd6 | does not work\n| sn3 | w45_tH15_Y0vR_f1r57_c7F_1ee5683d | does not work\n| sn4 | w45_tH15_Y0vR_f1r57_c7F_bf59c193 | does not work\n\nPopOS 22.04, Firefox 122.01 https://example.com/ 17526 434894 434795.434797.434866.434869.434879.434894.434921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.55642603342071 0 \N \N f 138084437 \N 1 113505992 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:39:53.991 f \N \N \N 0 0 0 0 1 0 0 450254 2025-03-23 20:06:25.609 2025-03-29 22:39:52.677 \N All 4 are green \n1 w45_tH15_Y0vR_f1r57_c7F_afbc1c32\n2 w45_tH15_Y0vR_f1r57_c7F_e268652e\n3 w45_tH15_Y0vR_f1r57_c7F_8d9a6749\n4 w45_tH15_Y0vR_f1r57_c7F_dad51034\n\niOS\nMutiny pwa 0.5.8\nIn-pwa safari browser\n https://example.com/ 6137 449779 449779.450254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3324351003399 0 \N \N f 46620191 \N 1 97564689 0 f f \N \N \N \N 449779 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407425 2025-02-18 01:03:15.901 2025-03-29 22:39:52.678 \N sn1.ekzyis | w45_tH15_Y0vR_f1r57_c7F_b2f1503d | works\nsn2.ekzyis | w45_tH15_Y0vR_f1r57_c7F_900e27b8 | works\nsn3.ekzyis | w45_tH15_Y0vR_f1r57_c7F_4d086a07 | works\nsn4.ekzyis | w45_tH15_Y0vR_f1r57_c7F_ad3aca25 | works\n\n- macOS 14.2.1\n- Brave 1.62.165\n\nKeep up the good work! https://example.com/ 5112 407236 406115.407198.407209.407236.407425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5834152819369 0 \N \N f 364244797 \N 2 64562728 0 f f \N \N \N \N 406115 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 306832 2024-11-24 14:27:44.933 2025-03-29 22:39:52.678 \N sn1.ekzyis | w45_tH15_Y0vR_f1r57_c7F_6defbb80 | works\nsn2.ekzyis | w45_tH15_Y0vR_f1r57_c7F_6ee76c03 | works\nsn3.ekzyis | w45_tH15_Y0vR_f1r57_c7F_d00e8005 | works\nsn4.ekzyis | w45_tH15_Y0vR_f1r57_c7F_42669811 | works\n\nMullvad Browser using Alpine Linux https://example.com/ 20701 306830 306830.306832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3310908620758 0 \N \N f 776870546 \N 5 58640396 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448463 2025-03-22 16:02:48.245 2025-03-29 22:39:52.678 \N Thoughts on OTEC and the possibilities there for bitcoin? https://example.com/ 11967 448049 448049.448463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.30015315975839 0 \N \N f 7629660 \N 1 80764149 0 f f \N \N \N \N 448049 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434721 2025-03-12 07:32:32.947 2025-03-29 22:39:52.678 \N What are some of your best marketing tips for the bitcoin space? I feel like marketing in bitcoin has some interesting peculiarities and it's not always like the way it is with marketing conventional products.. https://example.com/ 13361 434276 433588.434276.434721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.83210756463021 0 \N \N f 193726865 \N 1 47997488 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 2025-03-19 06:40:05.45 f \N \N \N 0 0 0 0 1 0 0 450988 2025-03-24 10:37:23.257 2025-03-29 22:39:52.678 \N https://darthcoin.substack.com/p/lightning-wallets-comparison https://example.com/ 2722 448097 448097.450988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.67813726424019 0 \N \N f 81195466 \N 1 152947331 0 f f \N \N \N \N 448097 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 201110 2024-07-17 05:09:47.218 2025-03-29 22:39:52.678 \N I much prefer Phoenix. https://example.com/ 5776 200762 200669.200762.201110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1468504159959 0 \N \N f 76299880 \N 1 37562934 0 f f \N \N \N \N 200669 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435311 2025-03-12 15:34:02.397 2025-03-29 22:39:52.678 \N The monetary system strongly effects almost all aspects of our existence. It is the most fundamental infrastructure of society. \nIt is painfully obvious to me that our current societies are sick and self-destructive, and it seems like the most effective way to help heal is to accelerate the transition to a strong monetary system, that is based in math, to recover from this weak fiat money that is toxic to everyone, even including the people who think they'd profit from printing it... https://example.com/ 636 435242 435242.435311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5921108564371 0 \N \N f 12509220 \N 1 60616174 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 2025-03-19 08:52:11.874 f \N \N \N 0 0 0 0 1 0 0 434398 2025-03-11 21:24:01.816 2025-03-29 22:39:52.679 \N Thanks! Glad (but not shocked) that other learned it here. https://example.com/ 15052 434396 434396.434398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0637505759759 0 \N \N f 130322485 \N 1 65716364 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437800 2025-03-14 22:24:27.345 2025-03-29 22:39:52.679 \N ![Satoshi's Vision](https://static.news.bitcoin.com/wp-content/uploads/2017/12/satoshis-vision-300x263.png) https://example.com/ 7916 437775 437775.437800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.037331852047 0 \N \N f 372602665 \N 2 53416092 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428888 2025-03-07 17:36:38.234 2025-03-29 22:39:52.679 \N Also sometimes it's super valuable to mix up things for a week or so. Often there's a lot to learn from. What if ekzyis does all chatting with users for a week instead? https://example.com/ 19668 428653 428653.428888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7341249808664 0 \N \N f 54300284 \N 1 196794304 0 f f \N \N \N \N 428653 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457951 2025-03-28 20:09:33.211 2025-03-29 22:39:52.672 \N ![cover-mtl_pencils.png](https://m.stacker.news/17021) https://example.com/ 16149 457921 457126.457921.457951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.35366963525 0 \N \N f 401446678 \N 2 209908428 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416879 2025-02-25 22:41:01.112 2025-03-29 22:39:52.674 \N What might be the most surprising or unexpected thing about life in Africa for someone who has never been to Africa? https://example.com/ 5500 416839 416158.416839.416879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2332137874774 0 \N \N f 99974997 \N 1 28022857 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423958 2025-03-03 18:34:19.846 2025-03-29 22:39:52.675 \N Let's build out the lightning network so it's ready for worldwide adoption! 🙌 https://example.com/ 21833 423956 423667.423689.423899.423956.423958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7980134644365 0 \N \N f 2593726919 \N 21 151982917 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434039 2025-03-11 15:16:37.353 2025-03-29 22:39:52.675 \N ![](https://zupimages.net/up/23/16/66gn.png) https://example.com/ 1585 433901 433833.433901.434039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3316078254217 0 \N \N f 59760708 \N 1 1122532 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431074 2025-03-09 15:17:51.435 2025-03-29 22:39:52.675 \N I'm honored. Any relation to my rodent friend? https://example.com/ 20901 431049 430993.431001.431049.431074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7157096737906 0 \N \N f 116455292 \N 3 59137217 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447146 2025-03-21 16:35:14.779 2025-03-29 22:39:52.675 \N This is an awesome solution @k00b! Thank you so much for your continued work!\n\nI'm so bullish on stacker.news. https://example.com/ 769 447142 446371.446452.446464.446465.447065.447142.447146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5123496552754 0 \N \N f 64796703 \N 1 222301851 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435474 2025-03-12 17:58:53.215 2025-03-29 22:39:52.68 \N It’s in this moment I want to jump up and down, share the good news, the history, but alas I have nobody but you all.\n\nI raise my glass and bid you all cheers for making history. The price doesn’t really matter but making history does.\n\nOnward and upward. 🫡 🍻 https://example.com/ 14552 435412 435412.435474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6153429456236 0 \N \N f 244462799 \N 1 65854472 0 f f \N \N \N \N 435412 \N 0 0 \N \N f \N 2025-03-19 15:58:41.186 f \N \N \N 0 0 0 0 1 0 0 423807 2025-03-03 16:05:01.783 2025-03-29 22:39:52.676 \N For sure, points many have made already, and a few that people need to consider before getting into Liquid. \n\nBut to that, I often ask what is the solution for the average poor right now? Not saying it is better or worse, but we have to admit that none of the current solutions are great, it either custodial LN, an exchange account, or Liquid until you're rich enough or big enough to make sense to go on-chain\n\nI don't consider liquid even a custody tool, more a consolidation layer, a temporary storage option https://example.com/ 651 423801 423750.423789.423801.423807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.55284575054988 0 \N \N f 221014065 \N 1 141974329 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443194 2025-03-19 06:34:09.414 2025-03-29 22:39:52.676 \N To be clear, my bank was not getting suspicious, at least according to them. Three banks filed a case with my bank for a chargeback due to a fraudulent transaction. How this should have worked, I have no idea. Somehow I should have forced those buyers to make a payment to me? This didn't make any sense since I traded with two of them again at a later time.\nI'm sure at least two buyers didn't file a case with their bank against me, they confirmed this with me over chat on HH. The Peach user was fraudulent, so he might have filed a case with their bank against me. This is what Peach wrote in their letter:\n_As further evidence of Mr. XXX’s fraudulent behavior, there is the fact\nthat this person has previously been involved in (and lost) 7 disputes with other users on ourplatform. In Annex 3, the frauder uses another identity, here after revealed._\n\nThese three transactions were roughly ~10k EUR. \n\nMy bank did decide on a full account block because it was three different payments that were flagged, not just one. The bank is in full control, they never gave me any details on what I did wrong and what kind of case these other banks had against me.\n\nI plan to file a complaint with the bank and potentially also request compensation. If anything comes out of that I will post that at a later time. https://example.com/ 5942 442104 441176.442104.443194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.13860571650098 0 \N \N f 427757311 \N 3 224325422 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434816 2025-03-12 08:58:12.339 2025-03-29 22:39:52.676 \N I am the same. I subconsciously think a sat is a penny. https://example.com/ 8176 433978 433978.434816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2140599887801 0 \N \N f 186993196 \N 1 196358929 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 2025-03-19 02:44:59.162 f \N \N \N 0 0 0 0 1 0 0 451330 2025-03-24 13:58:29.486 2025-03-29 22:39:52.677 \N Researching on famous Bitcoiners like Michael Saylor and Jack Dorsey and writing digestible articles on them so that those who are ambivalent about BTC can follow their journeys to learn more about it https://example.com/ 739 451324 432817.451324.451330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.579221830051 0 \N \N f 418718591 \N 2 144709644 0 f f \N \N \N \N 432817 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423593 2025-03-03 13:26:57.077 2025-03-29 22:39:52.677 \N No, not in Argentina, but I would definitely be interested in El Salvador, now I am in Latin America visiting Mexico and discovering, who knows if my next stop is El Salvador https://example.com/ 19759 423591 423384.423591.423593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9440551141468 0 \N \N f 1941236619 \N 14 71374212 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403833 2025-02-15 08:59:25.305 2025-03-29 22:39:52.678 \N Morning! Snails walks into a bar… https://example.com/ 1114 403831 403824.403825.403831.403833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7832649368131 0 \N \N f 166297175 \N 1 35819992 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447006 2025-03-21 15:07:48.743 2025-03-29 22:39:52.678 \N these are the glory days\nI have had a blast of a week - new space, new ideas, old friends, new friends, writing, traveling to new meetups, reviving a podcast. \nhow lucky I am to take part in some of this bitcoin stuff https://example.com/ 1236 446988 446313.446884.446898.446927.446961.446988.447006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4696477836595 0 \N \N f 387935931 \N 3 190057707 0 f f \N \N \N \N 446313 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443205 2025-03-19 06:51:16.711 2025-03-29 22:39:52.679 \N The inevitability of bitcoin is despite statist leaders, not because of them. State leaders can make it happen faster, just like centralized companies can, and that is appealing to one's high time preference. But the slow organic growth of bitcoin is what makes it strong and unstoppable. https://example.com/ 16284 443200 443187.443195.443200.443205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6258648936574 0 \N \N f 418606880 \N 2 46615671 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 644 2022-08-17 11:06:18.529 2025-03-29 22:39:48.91 PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY IV August 1, 2024\n\nIt is the fourth day since the electoral fraud occurred in Venezuela. The numbers of those injured, kidnapped, missing and dead increase every hour, while politicians only talk, the same dialogue as every day, some accept that Edmundo Gonzalez is the winner given the clear and concise evidence. Maria Corina Machado made sure that there is a website where you can verify the minutes with the total result of the machine where you voted, the minutes on this website reveal that Edmundo won by a large difference in points. Others keep repeating that Maduro show the minutes, since supposedly the ones he has are the winner, but as expected they create one excuse after another not to show them, today they were supposed to show them at 11am, it was agreed, but again they postponed it.\n\n•\n•\nExcerpt from today's press conference:\n"I have decided to create 2 maximum security prisons for all the new generation gangs that are involved in the riots (protest) and there will be no forgiveness or consideration and I am making a bet to see if these maximum security prisons can re-educate them and turn them into productive farms." - Nicolas Maduro.\nhttps://x.com/jarizabaletaf/status/1819139760738496541\n\nTarek William Saab on the arrests of protesters: "What is happening is good because it purifies society."\n•\n•\nThe list of verified and identified arrests as of today, August 1, 2024, amounts to 711 people, of whom 74 are minors. \n![](https://m.stacker.news/42948)\n\nYesterday, several young people were sentenced to 6 years in prison for "terrorism." Some were protesting and others were not. Among them, there are 6 who are 16 years old and a 13-year-old girl. They were beaten by the military and are being held.\n\nThe actual number of detainees, or rather kidnapped, is higher, since many of those who have been taken have not been allowed to communicate with their families. At this moment, there is a long list of missing persons. Family members are desperate, scared and very distressed, searching in all police stations or military barracks for their sons, daughters, cousins, brothers, husbands, wives.\n•\n•\nMaria Corina Machado wrote in the American newspaper The Wall Street Journal: "They could arrest me while I write these words"\n![](https://m.stacker.news/42945)\n![](https://m.stacker.news/42944)\n\nBREAKING: US DECLARES GONZÁLEZ VICTOR IN VENEZUELA ELECTION, REJECTS MADURO'S CLAIM \n\nSecretary of State Antony J. Blinken has issued a statement challenging Venezuela's official election results, declaring opposition candidate Edmundo González Urrutia as the true winner of the July 28 presidential election.\n\n Blinken states that the National Electoral Council's declaration of Maduro's victory is "deeply flawed" and lacks credibility.\n\nHe cites opposition-published tally sheets from over 80% of polling stations, indicating González won by an "insurmountable margin," corroborated by independent observers and exit polls. \n\nThe U.S. applauds the 12 million Venezuelans who voted despite challenges and rejects Maduro's allegations against opposition leaders.\n\nBlinken calls for the release of those arrested for peaceful participation and urges a peaceful transition. Source: \nU.S. Department of State\n![](https://m.stacker.news/42949)\n•\n•\nA group of Venezuelans gathered in front of the White House to denounce the murders and intimidation taking place in Venezuela.\n![](https://m.stacker.news/42950)\n\nMinutes ago, the SEBIN tried to arrest the Mayor of Biscucuy, Portuguesa Jobito Villegas, at his home. The people took to the streets and prevented this procedure.\nhttps://x.com/CesarPerezVivas/status/1819112910230319138\n\nIn the early hours of August 1st, Aixa Daniela Boada López, a 19-year-old girl, was arrested by Nicolás Maduro's henchmen.\nhttps://x.com/UHN_Plus/status/1819010888214483070\n\nThey continue to kidnap the electoral witnesses who uncovered their electoral fraud at the national level and are leaving them without their belongings\nhttps://x.com/eduardomenoni/status/1819098401159700739\n\nAn officer from the Bolivarian National Police (PNB) approaches to verify the identity cards of the detainees who are still here. Relatives line up to check if their loved ones are on the list.\nhttps://x.com/EfectoCocuyo/status/1819044244503572754\n\nPeaceful protest in Trujillo state: People chanting "Up, civil servant, your support is necessary"\nhttps://x.com/diloatodos/status/1819092546523402639\nWhen I see these videos I feel suspicious and I don't like it at all. It has happened in other countries, guards and police join or support protesters, only to attack them when they let their guard down. I hope I'm wrong\n\nWhen nothing is done, it is because one chooses to remain passive, but when one decides to act, it is because one recognizes the importance of doing so. Today, in the Valley, four brave young people who gave their lives in the fight for the freedom of Venezuela are being said goodbye.\nhttps://x.com/freddyzur/status/1819052336385331618\n\n10:39 am | Relatives and friends of those arrested in recent days after the presidential elections received a list of alleged transfers to the Yare I, Yare II and Yare III prisons on August 1, outside Zone 7, in Boleíta.\n\nThose present were notified that they were going to be taken to court. However, they found out that they were taken to the prisons, particularly to Yare.\nhttps://x.com/EfectoCocuyo/status/1819022533649190943\n\nPanamanian President on Venezuela: "What happened yesterday at the OAS is more than sad, it is depressing"\n\n"I feel very satisfied that our country is among the 17 countries that aligned themselves with the defense of the popular will in Venezuela"\nhttps://x.com/AlbertoRodNews/status/1819027692471107663\n\nThe Faculty of Legal and Political Sciences of the UCV says:\n\nWITHOUT VERIFIED TOTALIZATION THERE CAN BE NO PROCLAMATION\n\nLast Monday the 29th, the president of the National Electoral Council, without the presence of any of the other rectors, proclaimed the current president of the republic, Nicolás Maduro, as president-elect in the elections held the previous day. This proclamation occurred when an alleged Partial Totalization Bulletin had barely been issued, which was not issued by the Automated Totalization System and in which 20% of the minutes were missing to be scrutinized.\n\nThus, the president of the CNE failed to comply with the Organic Law of Electoral Processes and its Regulations, since before the proclamation he had to wait for the issuance of the Final Totalization Bulletin that reflects the definitive electoral results. No candidate could be awarded victory without having scrutinized all the records issued by the Electoral Tables.\n\nMuch less, the president of the CNE could alone issue an Act of Totalization, Adjudication and Proclamation, without being accompanied by the rest of the main rectors of the electoral body and the other witnesses of the candidates.\n\nConsequently, said proclamation did not comply with the electoral legislation because it was made by an authority that exceeded its powers and invaded those of the electoral body, which is a collegiate body, and whose effects become null. The CNE must adhere to the law, carrying out the totalization of the votes and the awarding of the position to be elected in accordance with the tally sheets issued by the polling stations; and only then proceed to the proclamation and accreditation of the winner. All of this must be done through the automated totalization system of the CNE itself, and with the minutes that both the CNE itself and the representatives of the competing candidates already have in their hands. Only in this way can confidence be generated in the electorate that their will has been respected.\n\nIt is the exclusive responsibility of the CNE, as the governing body of the Electoral Power, to complete the electoral procedure already begun. The courts of the Republic completely lack jurisdiction until the National Electoral Council has totalized, awarded and proclaimed the winner in full compliance with the law, which it has not yet done.\n\nThis situation has generated total rejection by the majority of the country's political actors; alert in the International Community and shock in public opinion, as well as a strong protest in the popular sectors who consider their vote mocked with the results announced by the CNE, all of which brings a climate of uncertainty the instability that benefits no one. The peace of the Nation requires that popular sovereignty be respected and obeyed without delay.\n\nThe Venezuelan government has resorted to the deceptive application of criminal regulations to persecute, for political reasons, the population that demands respect for its electoral will. It is already a public communication fact that arbitrary arrests, executions, raids and murders are carried out by police and military forces, which constitute serious and systematic violations of human rights and could even constitute crimes against humanity.\n\nWe urge international human rights organizations to exercise constant vigilance and demand from the Venezuelan government the immediate cessation of political persecution and arbitrary detentions, as well as the dissolution of irregular armed groups (collectives) and unrestricted respect for human rights. civil and political liberties.\n\nIn the University City of Caracas, the first (1st) of August 2024.\n![](https://m.stacker.news/42954)\n![](https://m.stacker.news/42953)\n\nAt 91 years old, this old lady went out with her cane to protest against ELECTORAL FRAUD in Venezuela.\nhttps://x.com/UHN_Plus/status/1819068174937067672\n\nKapersky, one of the world's leading cybersecurity companies, denies the tyrant of Venezuela, Nicolás Maduro: "Venezuela has not registered any cyberattacks in the most recent global monitoring." In previous days, the regime excused itself by saying that it did not have the records because it had suffered a "cyber attack" from Macedonia. The government of North Macedonia denies the statements of the Venezuelan dictatorship, after prosecutor Tarek William Saab reported a hacking of the CNE from that country.\n![](https://m.stacker.news/42955)\nIn connection with the announcements of alleged statements by the Venezuelan authorities that during the elections held on 07/28/2024, alleged DDOS computer attacks occurred by users of Macedonian IP addresses, the Ministry of the Interior informs the public that The Department of Computer Crimes follows the evolution of the alleged accusations against Macedonian citizens and we also declare that so far, the Venezuelan authorities have not received requests or information about the above to carry out further controls on our part.\n\nWe also inform the public that even the appearance of Macedonian IP addresses in some suspected attack does not mean that they originally come from Macedonia, that is, based on previous experience, we can inform that there is a high probability that they use VPN (Virtual Private Networks) or they are part of a larger BotNet network, i.e. they come from so-called infected zombie computers, which have been compromised by hackers using computer viruses or malware and can perform assigned tasks controlled remotely by individuals or a group of potential hackers .\n\nThe most common victims of this type of zombie computers are people who do not know that their computer systems are infected with malicious software and, without their knowledge and consent, DDoS attacks are carried out, which represent a malicious attempt to disrupt normal computer traffic. Internet of a certain place. server, service or network to access a specific target at the same time with the aim of blocking it, overloading it.\n\nThe Nicolás Maduro regime created an app called VenApp, which allowed Chavistas to report their neighbors if they protested against the government. Within hours, it was removed from the Play Store and Apple, due to thousands of reports.\n![](https://m.stacker.news/42956)\n\nVenezuelan police yesterday arrested Jovani Romero, the subject of the iconic photo at the Chavez statue in Coro.\n\nFamily and friends do not know where he was taken and fear for the young man's life.\n![](https://m.stacker.news/42957)\n![](https://m.stacker.news/42958) \N 16270 \N 644 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.3658697205499 0 \N \N f 254223905 \N 2 31711914 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434031 2025-03-11 15:15:10.087 2025-03-29 22:39:52.679 \N Seedbox. https://example.com/ 14213 433828 433828.434031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.692679265134 0 \N \N f 683644387 \N 7 147090141 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414157 2025-02-23 17:25:53.355 2025-03-29 22:39:52.679 \N First off, we try really hard to call them services, not apps, since the later concept collides with the little icons on your phone and laptop and causes confusion. But that's a side point. To answer your question...No, I don't think there has been any huge surprise in terms of which services are most popular. By design, we actually don't/can't have any concrete figures about service usage because we have no insight into these devices. But in polling our customers, the result have been roughly in line with expectations. Most popular services are Bitcoin and Vaultwarden (password management), followed by Lightning (mostly LND over CLN) and File Browser (Dropbox alternative) https://example.com/ 16270 413869 413854.413869.414157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7811013960986 0 \N \N f 186511300 \N 1 117180205 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444150 2025-03-19 17:33:23.532 2025-03-29 22:39:52.68 \N I like that metaphor: it's the difference between being at a lecture (on the good end) or a wedding and there's some dude sitting across from you droning on and on (on the bad end); and being in an actual conversation. There's value in getting broadcast at, but it's a very different kind of value.\n\nThought experiment of two alternate-reality SN variants: \n\n- a SN that is a really kick-ass place to go to download info about events, like a really good information depot. \n- a SN as a place where really good / rich / interesting conversations happen _about_ those events.\n\nIt seems like if you were hell-bent on one of these cases, you'd do different things. I don't know what the differences would be, but the two realities seem distinct enough to warrant different approaches, though I couldn't back up that intuition right now. https://example.com/ 20674 444143 444114.444132.444143.444150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1382700609336 0 \N \N f 1192020027 \N 8 33646328 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435759 2025-03-12 23:55:14.453 2025-03-29 22:39:52.68 \N I agree with that take. broadly. So much expensive human effort is expended on repetitive cognitive tasks. Those will be faster, cheaper, and more reliably done by AI. Also, freeing up all those labor hours will bring down the labor costs and increase the efficiency of everything else.\n\nI haven't looked into the details, but I've seen predictions of 90% average cost reductions. That happened many times during the Industrial Revolution, so it's not as implausible as it might seem. https://example.com/ 17221 435124 435046.435059.435124.435759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0224340680799 0 \N \N f 116616456 \N 2 125860572 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 17:35:38.058 f \N \N \N 0 0 0 0 1 0 0 436694 2025-03-13 19:45:16.683 2025-03-29 22:39:52.68 \N Will tell you another story.... (@siggy47 will love to hear it).\n\nIn 2017 after the fork, I wanted to get rid of all my past relation with fiat and start a full cleanse: closing bank accounts, withdraw all the money from any account, pension funds, savings and buy more BTC.\n\nThen I start selling anything that I do not need, for whatever price, I sold a car, a bike and all the crap I had in the garage.\n\nMy house was full of computers and parts and all kind of gadgets and crap that I didn't used anymore. So I sold them all, for sats, for fiat and then exchange all for more BTC.\n\nYou cannot imagine how many people are buying these crap old things. Just look at these listings.... https://satstash.io/\n\nMake a good attractive price and never look back with nostalgia about those crap things. Don't be greedy, be happy when somebody will buy your crap. https://example.com/ 1114 436669 436669.436694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.35781078215447 0 \N \N f 94017233 \N 1 70763869 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 2025-03-20 14:47:20.327 f \N \N \N 0 0 0 0 1 0 0 447280 2025-03-21 18:39:29.205 2025-03-29 22:39:52.68 \N I still want to make more improvements to the `roles` implementations.\n\nRight now they are just PoCs that demo how the low-level APIs can be used. But I want to eventually put them into a shape where they could be used as high-level API for custom implementations of roles (e.g.: pools, proxies and JDs). https://example.com/ 1425 447264 447264.447280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.554994401625 0 \N \N f 334527380 \N 2 103720393 0 f f \N \N \N \N 447264 \N 0 0 \N \N f \N 2025-03-29 08:34:00.797 f \N \N \N 0 0 0 0 1 0 0 435269 2025-03-12 15:11:34.742 2025-03-29 22:39:52.683 \N Address labelling is purely client side wallet feature, has nothing to do with Bitcoin itself and can be implemented in different ways, depends from a wallet to wallet.\n\nFor migrating address labels between wallets there is [SLIP-0015](https://github.com/satoshilabs/slips/blob/master/slip-0015.md) by Trezor and [BIP 329](https://github.com/bitcoin/bips/blob/master/bip-0329.mediawiki) proposal, but there isn't widespread support for these standards currently. https://example.com/ 21019 435253 435115.435133.435244.435249.435253.435269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.230435366242 0 \N \N f 169197515 \N 1 140580178 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 2025-03-19 08:33:40.973 f \N \N \N 0 0 0 0 1 0 0 402494 2025-02-13 19:07:43.887 2025-03-29 22:39:52.684 \N just a casual 1.6 trilly https://example.com/ 21248 402303 402171.402303.402494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2540696458371 0 \N \N f 65887730 \N 2 241746340 0 f f \N \N \N \N 402171 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404331 2025-02-15 19:18:53.025 2025-03-29 22:39:52.684 \N Jameson's thoughts bring to mind this great quote of Dijkstra that, in my humble opinion, is not as popular as it should be.\n\n![quote](https://www.azquotes.com/picture-quotes/quote-simplicity-is-a-great-virtue-but-it-requires-hard-work-to-achieve-it-and-education-to-edsger-dijkstra-75-49-78.jpg) https://example.com/ 16724 404117 403996.404051.404117.404331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.396444747590579 0 \N \N f 146676220 \N 1 157464633 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436016 2025-03-13 08:25:52.652 2025-03-29 22:39:52.684 \N You raise all good points, starting with the fact that it should have been an opt in, although it wouldn't have been a real choice if rewards only went to participants. Short of that, there could have been some heads up about this plan. I already bored everyone with my feelings when this thing was announced, but now the peer pressure to sacrifice your privacy is difficult to take. https://example.com/ 20987 435907 435907.436016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.096120886918 0 \N \N f 533870641 \N 3 183782211 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 02:22:42.299 f \N \N \N 0 0 0 0 1 0 0 443501 2025-03-19 11:44:25.245 2025-03-29 22:39:52.673 \N Shipped a new [Wavlake](https://player.wavlake.com). Now have to fix a bunch of stuff 🙂 https://example.com/ 21254 443489 443489.443501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0343418636054 0 \N \N f 454122208 \N 2 159503983 0 f f \N \N \N \N 443489 \N 0 0 \N \N f \N 2025-03-26 05:09:19.415 f \N \N \N 0 0 0 0 1 0 0 437018 2025-03-14 07:22:17.947 2025-03-29 22:39:52.673 \N 6.4% overall, 7.5% energy. https://example.com/ 21401 436967 436967.437018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8632849370452 0 \N \N f 94845975 \N 1 63223963 0 f f \N \N \N \N 436967 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437447 2025-03-14 14:24:43.157 2025-03-29 22:39:52.673 \N How do you think bitcoiners can help market this revolution from your perspective? you seem to have a different edge than the regular twitter sphere. https://example.com/ 12278 437432 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.73312223505549 0 \N \N f 1665768927 \N 14 2837155 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448840 2025-03-22 23:09:10.086 2025-03-29 22:39:52.674 \N Be the change you want to see. Run a routing node. Run a liquidity ad to lower inbound liquidity rates for new operators. Attend a spec meeting. Pick an issue and contribute to one of the lightning implementations.\n\nI do all of these btw, with no background in bitcoin or software development except a fascination with the lightning network and an interest to learn. https://example.com/ 1064 448811 448200.448230.448811.448840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9538460374976 0 \N \N f 109031435 \N 1 59270037 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408009 2025-02-18 14:22:59.949 2025-03-29 22:39:52.674 \N I think a good way of countering the argument that Bitcoin can be forked or copied is to compare it to Facebook. Anyone can launch a copy of a social network or a newer or “better” version of it—but that doesn’t copy the network of users that are on Facebook. Rather than the existence or potential of new social networks making Facebook worthless, it makes Facebook worth more every time they prove that another network can’t take their supremacy away. And over time, everyone is sucked into it because that’s where people already are. Ethereum only has so much power because they fronted the shitcoin minting and garbage NFT network. But those are not fundamental draws or features. https://example.com/ 16808 408003 407882.408003.408009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13054447975183 0 \N \N f 62065838 \N 1 206976919 0 f f \N \N \N \N 407882 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407629 2025-02-18 09:03:03.377 2025-03-29 22:39:52.674 \N I experienced something similar when it came to "OG bitcoiners." I held them in reverence as wise old gurus. I eventually learned that some of them were not the sharpest knives in the drawer. https://example.com/ 9426 407619 407619.407629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.83380816063843 0 \N \N f 180730142 \N 1 39238361 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443283 2025-03-19 08:35:02.198 2025-03-29 22:39:52.674 \N This is a great example of the biggest problem with free cities - they are at the mercy of their host country and no amount of laws will ever change that https://example.com/ 16145 443272 443272.443283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.39712774589066 0 \N \N f 169460455 \N 2 36730904 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454668 2025-03-26 14:48:13.279 2025-03-29 22:39:52.674 \N As every week, I'm working in a new video. \n\nThis time is about Nodes (on chain & LN) and why are they very important to the network, the video will be available (in Spanish) next week on my Youtube channel (https://www.youtube.com/@criptopanas) https://example.com/ 16970 454535 454525.454535.454668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5063373208197 0 \N \N f 643517631 \N 7 8827591 0 f f \N \N \N \N 454525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422384 2025-03-02 12:26:48.272 2025-03-29 22:39:52.675 \N Just reading this piece, he talks about writing pages and pages about his character's bio, the dedication definitely shows in the movie:\n\n[Hugh Grant shows his dark side in ‘Heretic’](https://www.npr.org/2024/11/08/nx-s1-5019372/heretic-hugh-grant-interview-higlights) \n\n**Martinez:** Did you create a character that we don't see in the film? A bio, so to speak.\n**Grant:** Yes.\nThe older I’ve gotten – the more acting I've done – it’s almost obsessive. So, yes, there’s hundreds of pages of biography of this guy.\n\n**Martinez:** Wait, wait. Hundreds of pages that you wrote?\n**Grant:** Yes. Yes. But while I’m writing them, I’m also connecting with the director, the writers saying, “What do you think of this? What do you think of that?” But a lot of it’s just me. And I prefer to keep it secret as well.\n\n**Martinez:** Why do you do that?\n**Grant:** There’s two reasons. One, I have this belief that this intense marinade in the character and background somehow makes the character richer on camera. And the other is that I’m so nervous about acting, especially as a new film looms towards me on the calendar that just doing four or five hours a day, every day, for weeks and months, calms me down.\n\n**Martinez:** So Mr. Reed is charmingly creepy.\n**Grant:** Yeah. https://example.com/ 20972 422369 421778.422365.422369.422384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6057890587566 0 \N \N f 55931279 \N 1 204323103 0 f f \N \N \N \N 421778 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448382 2025-03-22 15:19:14.568 2025-03-29 22:39:52.674 \N This was me yesterday waiting for SNL:\nhttps://i.gifer.com/7VE.gif\n\nAround 8 I realized it was Thursday.. https://example.com/ 1145 448201 448201.448382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.509184675844 0 \N \N f 158255356 \N 2 111793142 0 f f \N \N \N \N 448201 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421228 2025-03-01 14:04:38.555 2025-03-29 22:39:52.675 \N Overall CPI: 6.4%\nEnergy CPI (Tiebreaker): 7.5% https://example.com/ 980 421205 421123.421130.421205.421228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.944028167771371 0 \N \N f 327475730 \N 2 127472367 0 f f \N \N \N \N 421123 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435869 2025-03-13 03:44:06.241 2025-03-29 22:39:52.675 \N Random amount of sats between 1 - 10k for the stacker who can tell what this is:\n\nhttps://imgprxy.stacker.news/5pzo5uKtjUQY5llftVmASMAdANVDY271utGM4R8R6-o/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvN0xMYkdIVGIvSU1HLTIwMjMwOTI5LTEyMDAyNy5qcGc https://example.com/ 10342 435860 435847.435860.435869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1588838000354 0 \N \N f 81039686 \N 1 123838042 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 2025-03-20 11:41:31.93 f \N \N \N 0 0 0 0 1 0 0 457105 2025-03-28 08:01:28.729 2025-03-29 22:39:52.675 \N Summarizing thread: [twitter](https://twitter.com/futurepaul/status/1598026480717811713) / [nitter](https://nitter.net/futurepaul/status/1598026480717811713) https://example.com/ 1626 457080 457080.457105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1782740570186 0 \N \N f 95007520 \N 1 196811391 0 f f \N \N \N \N 457080 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434298 2025-03-11 19:11:51.856 2025-03-29 22:39:52.675 \N I don't know why I didn't put this in my post about fun books yesterday, but I'm re reading a book I find very entertaining-Nelson Demille's The Gold Coast. It's set on Long Island, and it's about a mafia boss who moves into a very prestigious north shore Long Island neighborhood. It's lots of fun, but you will learn nothing. https://example.com/ 15243 434278 434278.434298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9640649039472 0 \N \N f 1456559774 \N 16 56510785 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 18:54:26.476 f \N \N \N 0 0 0 0 2 0 0 413884 2025-02-23 14:11:03.673 2025-03-29 22:39:52.675 \N Still really super early stage, and recently won 1st place at the Bolt.Fun Nostr Hack & Design event… a marketplace for digital items [GoodStr.io](https://makers.bolt.fun/story/goodstr-nostrica-hackatons-pitch--732)\n\nFeedback and suggestions are more than welcome https://example.com/ 8841 413675 413675.413884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3697847968633 0 \N \N f 1567176136 \N 9 215631903 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 416935 2025-02-25 23:33:34.977 2025-03-29 22:39:52.675 \N We will move away from mass production and towards bespoke products and services. https://example.com/ 21416 416934 416158.416221.416253.416288.416551.416578.416605.416632.416869.416881.416929.416934.416935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5486293867627 0 \N \N f 215699055 \N 2 27191629 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416109 2025-02-25 12:12:29.346 2025-03-29 22:39:52.676 \N I saw that they've now blocked access to viewing twitter unless signed up/in. Too bad, I used to like getting a quick summary of what's happening instead of spending too much time scrolling through my feeds. Oh well https://example.com/ 1609 416056 416056.416109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6615754709311 0 \N \N f 88352667 \N 1 11425979 0 f f \N \N \N \N 416056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443297 2025-03-19 08:48:02.372 2025-03-29 22:39:52.676 \N NGL, it's probs gonna be a multi-decade slog. There will be regular setbacks, but we will have occasional victories. \n\nThe economics favors bitcoin. The fiat freaks cannot stop printing. Hopefully we can keep the faith and hang in there and do Satoshis work.\n\nOne thing I just started doing recently: Requiring my friends pay me and pay me back in bitcoin and I do the same to them. We need to insist that we use bitcoin with fam and friends. Get that circular economy going, as small as it may be. https://example.com/ 14225 443295 443295.443297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1940444408331 0 \N \N f 1022087699 \N 9 143631371 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:55.378 f \N \N \N 0 0 0 0 2 0 0 443353 2025-03-19 09:33:15.74 2025-03-29 22:39:52.677 \N https://github.com/stackernews/stacker.news/issues/630 https://example.com/ 18306 442948 442820.442876.442880.442948.443353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5197971383432 0 \N \N f 17634736 \N 1 47123501 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 2025-03-26 04:07:32.292 f \N \N \N 0 0 0 0 1 0 0 435541 2025-03-12 19:08:53.714 2025-03-29 22:39:52.677 \N ![](https://m.stacker.news/40208) https://example.com/ 9348 435217 435217.435541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.6393537741117 0 \N \N f 571349510 \N 4 34982894 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 13:20:45.398 f \N \N \N 0 0 0 0 1 0 0 424268 2025-03-03 23:35:39.06 2025-03-29 22:39:52.678 \N Technically, no. I have a retirement plan, but I'm pretty sure the financial institution own the actual shares. I think what I "own" are claims on hypothetical profits/losses from buying and selling the funds that I chose. https://example.com/ 19842 424220 424220.424268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9159697485376 0 \N \N f 90113949 \N 1 35453160 0 f f \N \N \N \N 424220 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434363 2025-03-11 20:27:00.093 2025-03-29 22:39:52.678 \N My Lbertarian Party friends tried to talk me into buying some back then, but I never got around to it. I'm a damned fool, but I probably would have sold it after it doubled anyway. I'm the living embodiment of the old saying- "Everybody gets bitcoin at the price they deserve." https://example.com/ 14705 426587 426587.434363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2537117118757 0 \N \N f 127602430 \N 1 21366346 0 f f \N \N \N \N 426587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437562 2025-03-14 15:59:40.874 2025-03-29 22:39:52.678 \N Not directly related to my job, but when it comes to parenting, I'm definitely building a cathedral. The thought came to my mind yesterday that it's not only my little one, but also my unborn grandchildren etc, that I'm parenting. \nConcerning my job, it's a wall, a big tall one. It suffices me that I like the people I work with, and of course, it pays the bills. https://example.com/ 9167 437419 437238.437419.437562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6788814189586 0 \N \N f 120196312 \N 1 150645412 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416754 2025-02-25 20:20:39.999 2025-03-29 22:39:52.679 \N You're approach is not going to work psychologically. If you are on the attack, then they will be defensive and dig in or just tune you out. People are open to persuasion when they like the person they're talking to, which is why you're correct about the direction to approach them from. If they're operating on moral reasoning, then meet them on that level. Every point you make needs to be aligned with the morality they're starting from. \n\nThe problem you're going to run into is that many people will grant every point you put forward and still not change their minds. The issue is that many people aren't really thinking about the position, they're evaluating whether or not their position is socially approved.\n\nThe sad reality is that very few people are willing to hold idiosyncratic views and change their minds when presented with arguments. This is why Michael Malice often says that most people literally have no mind. The NPC caricature is quite accurate. https://example.com/ 21060 416158 416158.416754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.651572475572 0 \N \N f 14656978 \N 1 4252015 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424266 2025-03-03 23:34:18.294 2025-03-29 22:39:52.679 \N ![](https://m.stacker.news/58794) https://example.com/ 10493 424260 423928.424260.424266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1966652724638 0 \N \N f 1445795371 \N 9 49878662 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 422497 2025-03-02 13:42:33.242 2025-03-29 22:39:52.68 \N This article assumes the continued legalization of fractional reserve banking and you know under a gold standard they're probably right to assume that given you need custodians to transact with gold. \n\nThat volatility is coming from credit expansions and deleveragings. People taking out debt (which is money printing under fractional reserve banking) and people paying off debt. https://example.com/ 678 422470 422056.422470.422497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5263615959688 0 \N \N f 303489625 \N 4 32941575 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441641 2025-03-18 08:06:56.155 2025-03-29 22:39:52.68 \N What’s the future road map and is video steaming part of that? https://example.com/ 21228 441611 441611.441641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.88332704600131 0 \N \N f 18688253 \N 2 60086290 0 f f \N \N \N \N 441611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457760 2025-03-28 17:09:45.098 2025-03-29 22:39:52.68 \N Day 371 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 13759 457413 457413.457760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.526839062022 0 \N \N f 75270489 \N 1 88391063 0 f f \N \N \N \N 457413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442023 2025-03-18 12:09:22.437 2025-03-29 22:39:48.904 Showing Number Of Stackers Who Zapped On Posts (Without Hovering) To start with, I know we can hover over the number of sats zapped to get the number of stackers, at least on desktop. I have yet to figure out how to do it on mobile, but that's another issue.\n\nThis morning I was preparing my ~bitcoinbeginners newsletter, and for some reason I was focused on the number of stackers who were zapping top posts. I started thinking that I would really appreciate having that information available when scrolling new SN posts myself. I know from experience that good posts often get ignored, and I think that having that information readily visible would be valuable. It would be an information point akin to number of comments. \n\nIt may seem like a minor point, but it seems to me that it would be simple to implement.\n\nAnother benefit would be to further inhibit Sybil blasting. A new stacker with a gigantic number of sats on a post with one zapper would be quickly exposed. \N 11477 \N 442023 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.2270526614466 0 \N \N f 1032735639 \N 6 220629083 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:02:35.194 f \N \N \N 0 0 0 0 4 0 0 436475 2025-03-13 15:24:32.338 2025-03-29 22:39:52.68 \N Splicing could be a solution. Pheonix seems to manage a unified balance well using splicing. But seems the folks at Synonym Software Ltd. prefer to write satsymbol campaigns, terms and conditions, and blog posts that create problems instead of writing code that solves problems. https://example.com/ 7983 436466 436466.436475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5206960201407 0 \N \N f 590172500 \N 5 148430144 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 2025-03-20 11:35:50.574 f \N \N \N 0 0 0 0 2 0 0 424260 2025-03-03 23:28:58.797 2025-03-29 22:39:52.681 \N Stay humble, stack sats. I believe we need to stay humble. So first off, relationship and knowledge are far more important than bitcoin. Any of us can die at any moment so don't kid yourself. Teach your kids about bitcoin and how to use it. Help them set up wallets. Send them bitcoin. Pay them in bitcoin for chores. Share your passion with them. Prepare them for living in a world in financial decline. You need more than bitcoin for this. \n\nStay humble:\n\nDon't be dumb. Don't over extend yourself and get into debt. Stack sats on a regular basis. Don't gamble and try to play the markets. Stay humble. Learn to grow food. Learn to be prepared for the most likely disasters (ie not nuclear holocaust). Teach your kids to be self reliant. Don't raise kids, raise adults.\n\nStack sats:\n\nFocus on building wealth for your family. I don't stack sats primarily for myself. I do it for my family. I don't know when bitcoin will win but I know it will be at some point in the future so I'm focused on stacking as much as I can while I can. My goal isn't to give my children a certain amount. My goal is to get them to value bitcoin and learn skills to allow them to stack sats for themselves. Yes, I have given them bitcoin but the bigger goal is to give them knowledge and skills. https://example.com/ 2789 423928 423928.424260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8737170939018 0 \N \N f 1495674033 \N 10 103109762 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427257 2025-03-06 08:50:18.694 2025-03-29 22:39:52.681 \N I agree that people who earn bitcoin instead of buying it are more likely to spend it. Two points regarding bitcoin buyers/savers:\n\n1. Why do they still have fiat savings left?\n2. They are not "saving" bitcoin, they are deferring spending their bitcoin. The point of the OP is that if we don't spend bitcoin as often as we can right now, the day might come when we cannot spend our bitcoin anywhere ("Sorry sir, we only accept cards or CBDC. Cash is only accepted for payments below $50 and will be soon phased out."). https://example.com/ 9307 427251 427251.427257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.315977555823 0 \N \N f 402117277 \N 3 100049191 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435715 2025-03-12 22:32:32.55 2025-03-29 22:39:52.682 \N Honestly? Great idea. I host a lot of my own infra and I often lose sleep over it. "x probably isn't secure enough, y doesnt have a good enough backup, if z goes down when I'm not home, I can't get it back up" https://example.com/ 899 435623 434278.434503.434522.434598.434602.435622.435623.435715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9469531901071 0 \N \N f 180458311 \N 1 53734276 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 15:51:59.868 f \N \N \N 0 0 0 0 1 0 0 424754 2025-03-04 11:29:55.431 2025-03-29 22:39:48.904 Should I use VPN? I don't like Big Brother snooping on my web activity, could you recommend a solid and privacy-preserving VPN to use? \N 7510 \N 424754 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.7276605960646 0 \N \N f 43797170 \N 1 91297638 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403662 2025-02-15 04:13:54.351 2025-03-29 22:39:48.904 SN Saturday Newsletter 2/3/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [@anita](https://stacker.news/anita) tests a variety of lightning wallets in less than ideal network conditions.\n - [Lightning Wallets: Self-Custody Despite Poor Network - Apps Tested in Zimbabwe](https://stacker.news/items/403662)\n - 72.7k sats \\ 25k boost \\ 32 comments \\ [@anita](https://stacker.news/anita)\n2. Through fiction, [@davidw](https://stacker.news/davidw) speculates about Bitcoin's future.\n - [Bitcoin's Lost Decade.](https://stacker.news/items/406373)\n - 18.6k sats \\ 14 comments \\ [@davidw](https://stacker.news/davidw)\n3. App distribution needs fixing and [@franzap](https://stacker.news/franzap) has some ideas.\n - [Can nostr fix app distribution?](https://stacker.news/items/404908)\n - 39.3k sats \\ 25k boost \\ 29 comments \\ [@franzap](https://stacker.news/franzap)\n4. [@Natalia](https://stacker.news/Natalia) troubleshoots missing payments in her light wallet so you don't have to.\n - [Troubleshooting the Gap Limit Problem 🛠️](https://stacker.news/items/409125)\n - 6k sats \\ 26 comments \\ [@Natalia](https://stacker.news/Natalia)\n5. We have [@tptrevethan](https://stacker.news/tptrevethan) on for an AMA shortly after [Mercury layer's launch](https://stacker.news/items/381674).\n - [Mercury layer AMA](https://stacker.news/items/408927)\n - 14.4k sats \\ 48 comments \\ [@tptrevethan](https://stacker.news/tptrevethan)\n\n\n##### Don't miss\n- [Minibits.cash - Cashu wallet with Lightning-Ecash ⚡ addresses with zaps on nostr](https://stacker.news/items/408791)\n- [Welcome To Wall Street](https://stacker.news/items/403947)\n- [Let's compare some prices in Sats!](https://stacker.news/items/409034)\n- [What are some solid alternatives to college/university?](https://stacker.news/items/404270)\n- [Future of work via Bitcoin ❓](https://stacker.news/items/411766)\n- [📖 How does fiction affect you?](https://stacker.news/items/405904)\n- [Why don't wallets show addresses as mnemonic words?](https://stacker.news/items/408559)\n- [Do you guys actually comprehend the books you've read?](https://stacker.news/items/410768)\n- [What will become of North Korea?](https://stacker.news/items/409160)\n- [Rates take the stairs up, but the elevator down.](https://stacker.news/items/409551)\n- [100 a day until 100k](https://stacker.news/items/404095)\n- [Self-custody costs money](https://stacker.news/items/409206)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [When you post/comment on SN, do you think about how many sats you will earn?](https://stacker.news/items/405673)\n- [Books And Articles Newsletter, Issue 1](https://stacker.news/items/411269)\n- [SN release: post and comment pinning](https://stacker.news/items/406838)\n- [10 days of SN zapping in the big leagues ](https://stacker.news/items/405810)\n- [Plans For The ~BooksAndArticles Territory](https://stacker.news/items/405604)\n- [SN: Labour of Love](https://stacker.news/items/409779)\n- [Two TIPS (Territory Improvement Proposals)](https://stacker.news/items/406537)\n- [Discussions, Link Posts, and Comments on SN](https://stacker.news/items/407018)\n\n-------\n\n##### Top Monday meme \\ 27.1k sats \\ [@Infinity](https://stacker.news/Infinity)\n![](https://imgprxy.stacker.news/0_qj9LKqQPuiq0X0m2R_N8aRtXkfIVDzcvjES02hg7E/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8xNDExNQ)\n\n[**all monday memes**](https://stacker.news/items/405008)\n\n------\n\n##### Top Friday fun fact \\ 11.3k sats \\ [@02399d3080](https://stacker.news/02399d3080)\n> The science of why you have great ideas in the shower\n>\n> Rather than constantly grinding away at a problem or desperately seeking a flash of inspiration, research from the last 15 years suggests that people may be more likely to have creative breakthroughs or epiphanies when they’re doing a habitual task that doesn’t require much thought—an activity in which you’re basically on autopilot. This lets your mind wander or engage in spontaneous cognition or “stream of consciousness” thinking, which experts believe helps retrieve unusual memories and generate new ideas.\n>\n> https://www.nationalgeographic.com/magazine/article/the-science-of-why-you-have-great-ideas-in-the-shower\n\n\n[**all friday fun facts**](https://stacker.news/items/410311)\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 6471 \N 403662 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 1.88027308160049 0 \N \N f 257605989 \N 3 2314487 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 427762 2025-03-06 15:53:09.753 2025-03-29 22:39:48.905 How to Disrupt Google \N http://hivemind.vc/howtodisruptgoogle 2204 \N 427762 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 6.72604307886068 0 \N \N f 247256010 \N 2 208958336 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443679 2025-03-19 13:12:49.819 2025-03-29 22:39:52.682 \N Not likely materially but maybe we have to chance to slow down the big government take over of the nation. \n\nWhen I refer to big gov take over I am also including the big gov adjacent entities, bureaucracies, massive public sector unions, gov funded media. https://example.com/ 14220 443670 443667.443670.443679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3348064762138 0 \N \N f 108183801 \N 1 129341796 0 f f \N \N \N \N 443667 \N 0 0 \N \N f \N 2025-03-26 06:31:05.318 f \N \N \N 0 0 0 0 1 0 0 430928 2025-03-09 14:13:59.795 2025-03-29 22:39:52.682 \N Yikes, this thread is toxic. Clearly there are some strong feelings about Mutiny in both directions.\n\nI admire the work Tony and Ben have done to get Mutiny working the way it does. Mutiny is particularly impressive to me as it's one of the few wallets available today which manages L1, L2 (lightning), and L3 (fedimint) transactions in one unified package which at least _tries_ very hard to be non-custodial. That's no small feat. That said, I don't use Mutiny myself, as I'm [not a huge fan of PWA wallets, for security reasons](https://stacker.news/items/585125), but clearly for many people the convenience was worth the risk. \n\nI hope someone carries on developing Mutiny's open source code. The bitcoin wallet ecosystem needs greater diversity to support the great diversity of people on earth and their needs. Every honest bitcoin wallet which shuts down is a net loss to everyone invested in that ecosystem. I'm loathe to see stackers like @DarthCoin in this thread espousing _"i told you so,"_ calling the devs grifters, childishly behaving as if this event were a positive thing. But haters gonna hate, and we devs have to shut it out and focus on what matters.\n\n@TonyGiorgio has always seemed like a reasonable person to me and I don't blame him for disembarking this peculiar train he was conducting. I wish you all the best of fortunes in your future endeavors, sir. https://example.com/ 18673 430291 430279.430289.430291.430928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.53014505708079 0 \N \N f 117810151 \N 1 236371102 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447645 2025-03-22 01:34:44.766 2025-03-29 22:39:52.683 \N https://stacker.news/items/51594 https://example.com/ 19888 447565 447418.447565.447645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.29002865053593 0 \N \N f 96173408 \N 1 70338799 0 f f \N \N \N \N 447418 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435313 2025-03-12 15:34:56.078 2025-03-29 22:39:52.683 \N this is not a place to get free sats, friend. Post interesting comments to *earn* them. https://example.com/ 1237 435284 435284.435313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8649770713363 0 \N \N f 128527554 \N 1 109615764 0 f f \N \N \N \N 435284 \N 0 0 \N \N f \N 2025-03-19 11:52:15.746 f \N \N \N 0 0 0 0 1 0 0 401292 2025-02-12 21:12:32.095 2025-03-29 22:39:52.675 \N # First of all\n\n> --listen carefully to this--a detailed inspection report with photos stored onchain\n\nIn the name of Kronk why would you do this? Why? What benefit is there to putting the photos on the blockchain?\n\n![](https://static.wikia.nocookie.net/vsbattles/images/b/b1/Kronk2.0.png)\n\n# Secondly\n\n> Covenants could automate Long-Term Rentals\n\nCovenants ensure that an address can only send its contents to a set of whitelisted destinations, and in this case it seems like you want the whitelist to consist of (1) the landlord or (2) the tenant, where the choice ultimately comes down to (a) their agreement or (b) a stacker news poll.\n\nOption (a) requires a 2 of 2 multisig, and that seems to eliminate any role for covenants. Bitcoin's multisig technology already lets two parties create an address together, agree on a set of destinations, and not let the money go anywhere else, simply by not signing to send the money anywhere else. Covenants let you do this without the action of a second party, but since your scheme requires two parties anyway, I don't think covenants add anything.\n\nCovenants also don't help you achieve (b) which is the really hard part. Bitcoin doesn't know stacker news exists and has no built in way of responding to its polls. You could perhaps achieve something *kind of* similar by having the 50 most active stacker news contributors put their pubkeys in a big multisig script and require 26 signers to approve any movement of funds using that script. If every loan added that script to the lease contract, you could let those 50 people vote if the landlord and the tenant have a dispute.\n\nBut (1) this idea does not require covenants anywhere (2) it's not the same as using a \\*real\\* stacker news poll (3) I don't see how covenants can enable the latter.\n\n# Lastly\n\nYour post uses the term "trust" throughout it and talks about how to "cultivate trust" by letting Stackers vote on stuff. It ends by calling this "trustless communities [with] SN as facilitator." This is entirely self contradictory. If you're trusting Stackers to vote honestly then your scheme is the very opposite of trustless. "Trustless" means "you don't have to trust anyone." What you're describing is literally "trusting many people" and you even say so. Please don't call things trustless after spending such a long time describing, explicitly, the opposite of trustless. https://example.com/ 10986 401277 401076.401277.401292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6058919852844 0 \N \N f 186189401 \N 1 225212360 0 f f \N \N \N \N 401076 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433240 2025-03-10 22:04:38.222 2025-03-29 22:39:52.675 \N Just a couple doubts,\n\nAssado and Mate is really from Uruguay or Argentinia?\n\n https://example.com/ 9992 433042 432920.433042.433240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.448194901475603 0 \N \N f 247140113 \N 1 56638341 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-19 09:45:02.117 f \N \N \N 0 0 0 0 1 0 0 447064 2025-03-21 15:39:19.49 2025-03-29 22:39:52.675 \N There's actually daylight this morning when the saloon opens. Spring https://example.com/ 1135 446849 446631.446791.446849.447064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8193431711675 0 \N \N f 207500617 \N 1 100317840 0 f f \N \N \N \N 446631 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435791 2025-03-13 01:03:05.649 2025-03-29 22:39:52.683 \N Use LNbits for that.\nAs I explained in this guide. Setup a Lnbits instance, start a lndhub with a bunch of lndhub accounts and import them with the "invoic e only" QR code into Zeus or Bluewallet apps.\nThen users can have "receive only" wallets.\nhttps://darthcoin.substack.com/p/lnbits-for-small-merchants https://example.com/ 8242 435596 435596.435791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3370304817254 0 \N \N f 35109059 \N 1 148392241 0 f f \N \N \N \N 435596 \N 0 0 \N \N f \N 2025-03-20 03:10:49.484 f \N \N \N 0 0 0 0 1 0 0 435253 2025-03-12 14:58:55.295 2025-03-29 22:39:52.684 \N Where is the legal threat that everyone is talking about? https://example.com/ 2718 435249 435115.435133.435244.435249.435253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5821982262978 0 \N \N f 309777693 \N 2 231218905 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 2025-03-19 08:28:15.326 f \N \N \N 0 0 0 0 1 0 0 441849 2025-03-18 10:29:00.924 2025-03-29 22:39:52.684 \N I have thought about how to do atomic payments to multiple parties at once over Lightning so much... thanks for laying out the problem space like this and theorizing a potential way Bolt12 could help do it. It's a really interesting idea.\n\nWhat I struggle with when it comes to all these approaches is -- and this is coming from the perspective that the _reason_ we need atomic split payments is so there is no custodial element when trying to pay multiple recipients simultaneously -- every participant still needs a stable, funded Lightning node for the payment to work at all. I think right now it is still way too difficult for most people to run their own node. And until that hurdle is cleared, non-custodial split payments don't gain most end users very much if those payments are ending up on a node they don't control anyway.\n\nI'll have to read more into the blinded paths pattern in Bolt12. If anything it could serve as a good enough solution in the near future while nodes become easier to run over the longer term. https://example.com/ 11523 441841 441695.441823.441837.441841.441849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.52007705175892 0 \N \N f 135263402 \N 1 237814551 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441215 2025-03-17 20:55:26.412 2025-03-29 22:39:52.684 \N Why should you need an app? Seems like data mining justification to me.\nThe charger could simply show the payment address / Lightning invoice and its qr code on a screen and start charging when it receives the funds. https://example.com/ 21041 441211 440692.441011.441130.441211.441215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.39861908393253 0 \N \N f 597229643 \N 4 15344254 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 398470 2025-02-10 17:19:13.369 2025-03-29 22:39:48.904 A simple library for doing tapscript transactions in the browser. \N https://github.com/cmdruid/tapscript 1802 \N 398470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8331033856764 0 \N \N f 57531743 \N 1 6317143 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402259 2025-02-13 16:38:43.338 2025-03-29 22:39:48.905 What's a superpower you wish you had? \N \N 5865 \N 402259 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 6.02734944504796 0 \N \N f 164558305 \N 2 92229927 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403947 2025-02-15 11:50:04.29 2025-03-29 22:39:48.905 What are you working on this week? Calling all Bitcoin builders!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/163815) are the updates SN users shared from all their latest work projects. \N 5036 \N 403947 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7542277274817 0 \N \N f 835859136 \N 6 116566017 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 401462 2025-02-13 03:44:14.053 2025-03-29 22:39:52.675 \N For consistency, I would keep the exact same structure. The back and home icons are faded, because they are disabled.\n\nI would also remove (everywhere) the price on the top bar, perhaps it is a bit too obvious; I think that on the homepage is sufficient.\nThis space could be profitably used for the territories.\n\n![1000116722.png](https://m.stacker.news/23652)\n\nAre there other pages with a special structure? https://example.com/ 2735 401452 401452.401462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.33736748974576 0 \N \N f 312858368 \N 2 197156639 0 f f \N \N \N \N 401452 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 330494 2024-12-15 10:07:40.346 2025-03-29 22:39:52.675 \N I have found some free time and am taking `sndev` for a test drive now! https://example.com/ 12245 330427 330427.330494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6242449111132 0 \N \N f 154483679 \N 1 11629906 0 f f \N \N \N \N 330427 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433712 2025-03-11 10:36:31.302 2025-03-29 22:39:52.675 \N [Here it is](https://github.com/stackernews/stacker.news/issues/928). I gave a few implementation options based on our conversation here, while trying not to be too prescriptive. https://example.com/ 19637 433555 433555.433712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9876412531016 0 \N \N f 189213489 \N 1 61849723 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 00:43:21.869 f \N \N \N 0 0 0 0 1 0 0 443001 2025-03-19 00:07:49.719 2025-03-29 22:39:52.675 \N The blinded paths don't solve for HTLCs being unable to be split, so there's inherently a wrapper doing a partial forward. Obfuscating the path doesn't skirt this limitation.\n\nWith wrapped invoices, the payer is getting the invoice from the party doing the wrapping. This is a completely trusted step in the process as the wrapper could wrap anything, or nothing. May as well trust the prism to serve it in which case, as it's better UX, and doesn't create hazardous stuck payments on the network.\n\nNow, it may work for scamming the regulator, but just as easily could not. It's still forwarding a payment.\n\nGiven that wrapped invoices have 0 technical justification, it's a fear induced narrative trap and those always end badly.\n https://example.com/ 713 442234 442163.442234.443001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6109915304776 0 \N \N f 220380039 \N 2 200784422 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416751 2025-02-25 20:18:49.07 2025-03-29 22:39:52.675 \N I saw your title and thought to myself, "I like boring."\n\nBoring means stable and solid. Yes, maybe unpredictable too, although one could make a solid argument that Bitcoin is anything other than predictable. And if you want to look further out into the crypto space in general, the drama is off the charts. Way better than any soap opera with mystery, villains, back-stabbing, success stories, failure stories, life-affirming stories, etc.\n\nWhat excites me about Bitcoin now? the rise of sats and how they are increasingly growing in use cases. I'm convinced that one day we'll all be denominating things in sats. https://example.com/ 20973 416158 416158.416751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4179313196892 0 \N \N f 212149293 \N 1 82241399 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 425235 2025-03-04 16:39:53.691 2025-03-29 22:39:52.675 \N this might old but maybe useful reading\nhttps://www.eff.org/de/deeplinks/2014/04/warrant-canary-faq https://example.com/ 20674 425225 423928.425225.425235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1515679847694 0 \N \N f 61763984 \N 2 165444904 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2235 2022-10-06 18:35:28.223 2025-03-29 22:39:48.905 Decentralized github - requirements Agree with fiatjaf's comment to Jack's bounty: we don't need just github running on nostr, this opportunity is bigger...\n\nIf there was a protocol for development (maybe on top of nostr, or maybe nostr is already enough), connecting focused independent apps (rather than monolit platfoms and IDEs), i think it could enable competition and faster innovation.\n\nWhat do we need in order to develop software?\n\nHere are some ideas just to get started. 1k sats for each unique answer with reasonable idea.\n\n- browsing and understanding the code: navigate through code, ask questions about the code, maybe run, review the architecture, APIs (ie to audit the code, or to implement new feature)\n- make changes: propose changes, discuss and get feedback, code reviews, run tests, lint\n- integrate and release: merge branches, test, release, etc\n- report issues, ask questions, propose features\n\nWhat else?\n \N 4768 \N 2235 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.3932163381047 0 \N \N f 96381558 \N 1 157530937 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457432 2025-03-28 13:54:42.705 2025-03-29 22:39:52.675 \N whatever you do, if you decide to implement this, it needs to be done on a relatively short time inverval, eg month otherwise the canary warning is delayed to the users\n\nhttps://www.ivpn.net/resources/canary.txt https://example.com/ 3506 457293 457293.457432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0867254954708 0 \N \N f 434360466 \N 3 128751035 0 f f \N \N \N \N 457293 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458251 2025-03-29 06:22:30.396 2025-03-29 22:39:52.675 \N Welcome aboard! I'm glad you're already seeing how special SN is.\n\nWhen I started using Stacker News, I didn't quite get it. I was sharing links to anything and everything even remotely Bitcoin related: basically the same firehose approach that works on other social media.\n\nI realized eventually that the high quality engagement is what's special here, so I started writing more comments and putting more thought into them. My early discussion posts were mostly me asking questions that interested me and that I thought people here would have interesting perspectives on.\n\nNow, the communities become pretty diverse, so I'd recommend just writing about whatever you feel like writing about. Don't feel like you have to do anything in particular though. https://example.com/ 1652 458207 454221.454235.458026.458207.458251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4190198743164 0 \N \N f 49430631 \N 1 26675180 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410506 2025-02-20 14:06:32.831 2025-03-29 22:39:52.675 \N The freedom. The politics. https://example.com/ 19735 410409 410409.410506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3110470561871 0 \N \N f 211674275 \N 1 211852872 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447125 2025-03-21 16:24:14.619 2025-03-29 22:39:52.675 \N \n![](https://m.stacker.news/45498) https://example.com/ 21424 447111 446371.446452.447063.447086.447111.447125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.79270106214892 0 \N \N f 348920202 \N 3 16574211 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:06:47.373 f \N \N \N 0 0 0 0 1 0 0 423993 2025-03-03 19:07:09.822 2025-03-29 22:39:52.676 \N 25 years is the answer. https://twitter.com/innercitypress/status/1773376299626574125 https://example.com/ 20768 423962 423928.423951.423962.423993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3971403486706 0 \N \N f 237957786 \N 2 185774780 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451045 2025-03-24 11:12:06.187 2025-03-29 22:39:52.676 \N > So you mean you felt like you were wrong but didn't want to show it since people depended on you being right against the person you were arguing with?\n\nThat would be the best case, because then it's clear that there is an audience that I'm putting on a show for. More often, it's some idea of myself that I'm holding onto, a role I want to have. A harsher and bitterer audience to contend with. https://example.com/ 11516 451031 451018.451031.451045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4960909952424 0 \N \N f 104903553 \N 1 234381488 0 f f \N \N \N \N 451018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435504 2025-03-12 18:32:07.371 2025-03-29 22:39:52.676 \N Yes, currently it's the same on both sides to make it easier on the "who says what" step for win or lose. Which would be 4 forms instead of 2 if we tried to make it different for both. \n\nI read what you put and tbh it's fairly applicable to me too so I just went with it :P https://example.com/ 21547 435292 435046.435135.435292.435504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31577808699206 0 \N \N f 1994684505 \N 12 171657474 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 13:09:11.423 f \N \N \N 0 0 0 0 3 0 0 407063 2025-02-17 18:38:52.63 2025-03-29 22:39:52.676 \N I pay with bitcoin if possible and tell people they can pay me back in bitcoin with a discount.\n\nI also try to learn as much as possible about bitcoin so I can answer any question that may come up as good as possible (or point them to good resources). I also try to "lead by example" by working in this space now without talking too much about it. I only mention it when it fits the situation and wait if I spark some interest. If not, also good. They might remember me in the next years and know who they might ask if they want to know more.\n\nI also gifted some bitcoin using seed words to some people but they have to do proof of work by researching how to access the bitcoin https://example.com/ 9200 407018 407018.407063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9771309366392 0 \N \N f 1241512427 \N 9 130719436 0 f f \N \N \N \N 407018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442124 2025-03-18 12:54:46.86 2025-03-29 22:39:52.676 \N Have you considered squatting on the nym so no one else can claim it and impersonate you? https://example.com/ 7827 442109 442084.442109.442124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9164612156475 0 \N \N f 539812207 \N 5 68409402 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 447208 2025-03-21 17:32:25.224 2025-03-29 22:39:52.676 \N Yes, the p2a address type was created for use in packages https://example.com/ 7587 447107 446965.447094.447107.447208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.28686826136876 0 \N \N f 56484992 \N 1 135417645 0 f f \N \N \N \N 446965 \N 0 0 \N \N f \N 2025-03-28 11:26:45.078 f \N \N \N 0 0 0 0 1 0 0 458044 2025-03-28 22:16:12.438 2025-03-29 22:39:52.677 \N ![](https://bitcoinafrica.io/wp-content/uploads/2017/05/queen-elizabeth-bitcoin.jpg) https://example.com/ 14169 457845 457845.458044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.55618056747245 0 \N \N f 141306815 \N 2 144335381 0 f f \N \N \N \N 457845 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458118 2025-03-29 00:20:29.312 2025-03-29 22:39:52.676 \N ![1000034784.jpg](https://m.stacker.news/14097) https://example.com/ 9921 458011 458011.458118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9446693276018 0 \N \N f 37648141 \N 1 106803402 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423149 2025-03-03 03:23:35.366 2025-03-29 22:39:52.676 \N Syncing a new bitcoin node at home. It's been going for a few days, and made me think:\n\nSomeone should make a system that allows you to run multiple nodes at once all downloading different parts of the blockchain and then puts it all back together. This would allow me to spin up multiple bitcoind instances on different hardware and speed up the initial blockchain download process. https://example.com/ 1122 423124 423124.423149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9881712911515 0 \N \N f 210299717 \N 1 57680921 0 f f \N \N \N \N 423124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416288 2025-02-25 14:22:17.81 2025-03-29 22:39:52.676 \N Probably satograms https://example.com/ 15941 416253 416158.416221.416253.416288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6038277931676 0 \N \N f 1324723782 \N 11 242790939 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457565 2025-03-28 15:11:14.307 2025-03-29 22:39:52.676 \N Midi format instead of actual instruments being played? https://example.com/ 7903 457509 457509.457565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0169316952623 0 \N \N f 518373852 \N 3 193256958 0 f f \N \N \N \N 457509 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307574 2024-11-25 07:56:01.979 2025-03-29 22:39:52.676 \N I don't know the analytics of it but just participated in what the nostr folk call a "zapathon" for the first time yesterday.\n\nI sent over 60 payments of 5-21 sats for a half hour with everyone else doing it. WoS never broke for me.\n\nLighting is amazing. https://example.com/ 17172 306832 306830.306832.307574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8522377940242 0 \N \N f 695571937 \N 4 81298609 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 137892 2024-03-06 17:42:02.348 2025-03-29 22:39:52.676 \N Microlancer really is an underappreciated and underutilized gem.\n\nThere are so many things many of us do where we would benefit by simply having somebody else do the task instead. You don't need a big budget ... 2,000 sats ($0.50) for a ten minute task will get you numerous qualified "taskers" willing to perform the work.\n\nIt's just not in our nature to delegate simple tasks, but Microlancer is there for exactly that! Just the other day I had listened to a podcast and wanted to later share a quote from it. To ensure I got the quote correct, I had to re-listen to a good chunk of the podcast to find at what point in the podcast the quote had occurred. I could have instead paid 2,000 sats to someone to find it for me. That's just an example of how this useful tool exists, we just have to train our brains to make use of it. https://example.com/ 5427 137881 137821.137862.137881.137892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.43894018940156 0 \N \N f 203661827 \N 1 75585030 0 f f \N \N \N \N 137821 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449992 2025-03-23 17:08:09.139 2025-03-29 22:39:52.676 \N #### FEATURES\nI really like some of the features hinted in the profile mocks. As a quick background: some of my points from [this SN comment](https://stacker.news/items/188714) would still apply here - so please take a look there.\n\nI think some users would be interested in making the SN profile page their "internet profile" page. \nSpecifically I think as a user it would be great if I can select couple building blocks for the profile to make it my own. E.g. I would like to select following blocks:\n- links to other accounts (e.g. nostr) \n- my markdown fullpage description on top. \n- show my top articles (not shared links) - exactly how I currently have it in my SN profile. \n- show my top SN comments based on zaprank\n- show my Nostr comments and have a convenient link to open those in the right nostr app... \n\nIt would be for sure good to have a solid default. **Defaults matter.** \nI think the stats and trophies are ok, but in the mocks those currently take too much space - I would like to have those somewhere on the side, I'm more interested in having my content and links in my profile page. \n\nAnd just one quick point to keep in mind:\n> *Separate Public vs Private: Clearly separate the "public facing profile" view from the "user private config/wallet, etc" views, so users don't get confused.*\n\n#### REDESIGN & STYLING\nFor the redesign & styling: I'm not a fan, since the design "language" is what we used to do in early 2000s and not in a good way. This was the style before we discovered "flat UI design" in 2011+ :) ([this is a reasonable summary](https://www.plerdy.com/blog/web-design-trends/)). The color gradients (yellow to orange) in the buttons/logo is what gives it away the most. Font sizing, font face, and overall spacing is also not that great, but that's not as hard to fix. I'm definitely not against redesign/updated styling, but I don't like this one in particular. My tip would be to share it with the best UX designer you can find and get their input/critique. https://example.com/ 20370 449779 449779.449992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3808988738773 0 \N \N f 115554512 \N 1 149257205 0 f f \N \N \N \N 449779 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436310 2025-03-13 13:10:08.151 2025-03-29 22:39:52.676 \N Not the same seed no. That's BIP85 (child seeds) which Blue Wallet doesn't use. You can however do this if you create them using your own hardware wallet and use Blue Wallet as a *watch-only* for their xpriv https://example.com/ 12721 436288 436273.436288.436310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1314054962979 0 \N \N f 248176657 \N 2 27648512 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 06:28:04.299 f \N \N \N 0 0 0 0 1 0 0 408035 2025-02-18 14:39:44.954 2025-03-29 22:39:52.676 \N After a while it felt like I was smoking my sats away, and daily smokers get used to the high pretty easily. Imagine putting your sats on a bitcoin layer called cannabis......it makes you feel good for an hour and then burns your sats, and every time you use it, it takes more sats to get the same effect. Its like rug pulling yourself for a few kicks. https://example.com/ 20523 408020 407903.407963.407974.407983.408020.408035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3827992696412 0 \N \N f 250933761 \N 2 170839433 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434099 2025-03-11 15:48:17.833 2025-03-29 22:39:52.676 \N MAKE STACKER NEWS SPOOKY AGAIN https://example.com/ 21520 433828 433828.434099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.27722479682762 0 \N \N f 326987368 \N 2 3485198 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-18 23:13:09.043 f \N \N \N 0 0 0 0 2 0 0 188387 2024-06-23 10:54:38.806 2025-03-29 22:39:52.676 \N @ekzyis is kind of a big deal. Really pushing Stacker News forward not just on the dev side but also with engaging original discussions.\n\nLoved by many stackers from afar, and always raising the bar 👏 https://example.com/ 18005 188380 188308.188380.188387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.280354635638 0 \N \N f 385164601 \N 6 19157696 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436489 2025-03-13 15:30:25.675 2025-03-29 22:39:52.676 \N ive heard they’re running a custom LDK implementation; source the rumor mill https://example.com/ 18743 436481 436466.436475.436481.436489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.6734433821177 0 \N \N f 239797129 \N 1 5310253 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 2025-03-20 11:39:46.648 f \N \N \N 0 0 0 0 1 0 0 407961 2025-02-18 13:51:04.486 2025-03-29 22:39:52.676 \N Value is subjective, which means usefulness is also subjective. History can be valuable as a pure leisure good, if nothing else. https://example.com/ 20663 407699 407470.407699.407961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.48779879832765 0 \N \N f 54091763 \N 1 97165173 0 f f \N \N \N \N 407470 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448891 2025-03-23 00:46:06.413 2025-03-29 22:39:52.677 \N - beefing up user analytics\n- adding optional turbo tipping setting that when enabled makes each bolt click 10x your last\n\nI have a few changes already done locally too:\n- job board stuff\n- option to remove yourself for top users (ie rich list)\n\nI was also going to add a page for donating to the daily rewards pot, but might not get to it by Friday. We'll see. https://example.com/ 5661 448888 448888.448891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2848203127745 0 \N \N f 11785175 \N 1 60149970 0 f f \N \N \N \N 448888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416197 2025-02-25 13:24:22.159 2025-03-29 22:39:52.677 \N Distractions:\n\n- Forks that aren't vault related\n- Binance\n- SBF\n- DeFi and alt-coin exploits or fraud\n- Trans moral panic\n- Bitcoin energy consumption\n- Hocus pocus charting and trad-fi soothsaying\n- What the USD is doing\n- Ai\n- Elon Musk and twitter\n- Conferences not focused on development\n- Taxes for individuals (get a hardware wallet you donkey and use a DEX)\n- Larry Fink\n\n\n https://example.com/ 14258 416158 416158.416197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3545729072082 0 \N \N f 9079149 \N 1 215217899 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 338461 2024-12-22 18:19:55.084 2025-03-29 22:39:52.677 \N Started & finished The Mandibles yesterday. Still browsing for that next read. \n https://example.com/ 13921 338168 337715.338168.338461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4608814803928 0 \N \N f 215175023 \N 1 60249037 0 f f \N \N \N \N 337715 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430236 2025-03-09 00:32:53.818 2025-03-29 22:39:52.677 \N Daily on Stacker News. Then when I need a anonymous VPN I pay that in bitcoin, I also paid my hardware signing devices in bitcoin https://example.com/ 12976 430220 428318.428382.428674.429258.429725.430220.430236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.56706599425303 0 \N \N f 106291458 \N 1 155736252 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434824 2025-03-12 09:02:16.93 2025-03-29 22:39:52.677 \N Indranet has been very busy this last few days after some new ideas relating to circuit distance from clients, and substantial progress towards implementation of the p2p system and and containerised deployments.\n\nThe protocol development passed a milestone today for its first time importing code from the lnd repository, as the payment-to-session process is now starting to take shape, as the basics of relaying session purchases is now clear. We will be using Atomic Multi-path Payments with sender side initiation for payment streaming to pay for relaying messages. https://example.com/ 3461 434801 434795.434801.434824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36825464174544 0 \N \N f 141697646 \N 1 30005366 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:39:43.088 f \N \N \N 0 0 0 0 1 0 0 436353 2025-03-13 13:48:25.012 2025-03-29 22:39:52.677 \N Would be nice if there was a way to embed polls into longer body discussion posts somehow https://example.com/ 16956 436288 436273.436288.436353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6216019619138 0 \N \N f 2678222 \N 1 235628627 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 07:20:47.181 f \N \N \N 0 0 0 0 1 0 0 423352 2025-03-03 09:23:25.416 2025-03-29 22:39:52.677 \N I'm building Satimoto: Electric vehicle charging with Bitcoin. A non-custodial, privacy first charging app that streams sats over lightning whilst charging your electric vehicle. \n\nOur Android app is ready to go and waiting on approval from Apple for the iOS release, which when ready will go out to our Early Access signups.\n\nWe have 25,000 charge point locations in our system ready to go with more to come.\n\n![Satimoto Coverage](https://pbs.twimg.com/media/FhJtwgjX0AAH0k1?format=png&name=small)\n\nYou can follow along with our progress on [Twitter](https://twitter.com/SatimotoApp).\n https://example.com/ 21430 423321 423314.423321.423352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.19023536323418 0 \N \N f 39493104 \N 1 229712025 0 f f \N \N \N \N 423314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424328 2025-03-04 00:51:25.925 2025-03-29 22:39:52.677 \N Mhh, so no blog post or anything from them? I only found this: https://tokeninsight.com/en/news/github-unbans-tornado-cash-code-repositories\n\nMaybe there will be one (even though I doubt it). I want to know what changed their mind. https://example.com/ 21825 424319 423667.423687.423704.423895.423925.423968.424192.424307.424319.424328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.3659754881711 0 \N \N f 244319707 \N 1 210094476 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404000 2025-02-15 12:47:59.951 2025-03-29 22:39:52.678 \N ACINQ uses a nitro enclave: https://acinq.co/blog/securing-a-100M-lightning-node https://example.com/ 2326 403996 403996.404000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6356636352251 0 \N \N f 653105177 \N 6 47760832 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 435548 2025-03-12 19:19:53.964 2025-03-29 22:39:52.679 \N Looking forward to this https://example.com/ 16948 435127 435046.435127.435548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3165375492093 0 \N \N f 130135220 \N 1 70302064 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 13:21:47.338 f \N \N \N 0 0 0 0 1 0 0 401560 2025-02-13 06:45:15.53 2025-03-29 22:39:52.679 \N I want to patronize this business, but I'm not a bathhouse guy. I admire them from afar. https://example.com/ 5961 401516 401516.401560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.03000972319919 0 \N \N f 84030291 \N 1 117026923 0 f f \N \N \N \N 401516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436274 2025-03-13 12:39:50.371 2025-03-29 22:39:52.679 \N SN is a mood-lifter! Love you guys! https://example.com/ 12368 436241 436241.436274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.36151077134361 0 \N \N f 44002560 \N 1 178247426 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:33:41.67 f \N \N \N 0 0 0 0 1 0 0 451236 2025-03-24 13:09:38.484 2025-03-29 22:39:52.68 \N Already a "feature request" in the github repo for SN:\n\n[Issue #266](https://github.com/stackernews/stacker.news/issues/266) https://example.com/ 16912 451229 450470.450576.451229.451236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5027831519029 0 \N \N f 78502776 \N 1 169316250 0 f f \N \N \N \N 450470 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2999 2022-10-23 07:07:01.234 2025-03-29 22:39:52.68 \N Also using multiple accounts to upvote yourself is lame and useless https://example.com/ 6382 2990 2990.2999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6788005117914 0 \N \N f 690811832 \N 6 5246079 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416961 2025-02-26 00:08:32.613 2025-03-29 22:39:52.681 \N Leading the flock: 10 days **~(o)>** https://example.com/ 4048 416768 416768.416961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.964820901083 0 \N \N f 226084104 \N 1 141007393 0 f f \N \N \N \N 416768 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401333 2025-02-12 22:46:16.475 2025-03-29 22:39:52.681 \N It is not for everyone, but I really like more-speech (https://github.com/unclebob/more-speech). The intended audience is programmers, especially Clojure programmers. It is fascinating to read through Uncle Bob's Clojure specs for things like Bech32.\n https://example.com/ 15703 401166 401166.401333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.32931947391425 0 \N \N f 186883382 \N 1 139539264 0 f f \N \N \N \N 401166 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424277 2025-03-03 23:46:12.04 2025-03-29 22:39:52.681 \N > Honest question how long have you been around?\n> The 'i gotta learn everything, and listen to everything and read everything phase" lasted about 24 months for me.\n\nHard to say. I've been into computer science and cryptography and self-sovereign cyberpunk stuff and P2P longer than Bitcoin exists. So 15+ Years?\n\nOn the other hand, my thoughts on this were Tor-centric, torrent-centric, darkweb-centric until maybe a year or two ago. I didn't get how Bitcoin was the culmination instead of just another tool in the toolbox. So 18 months?\n\nHard to say. https://example.com/ 663 423740 417848.423740.424277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.789012299107 0 \N \N f 408173975 \N 2 202612966 0 f f \N \N \N \N 417848 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 308051 2024-11-25 15:24:12.087 2025-03-29 22:39:52.681 \N so cool! https://example.com/ 21815 308049 307616.307742.307953.308046.308049.308051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2618770563537 0 \N \N f 65540122 \N 1 125217991 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407673 2025-02-18 09:39:29.886 2025-03-29 22:39:52.682 \N What about if she’s in “that” stage of her cycle? https://example.com/ 6594 407671 407018.407063.407581.407583.407586.407663.407668.407671.407673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.35920110015029 0 \N \N f 302788963 \N 2 84752966 0 f f \N \N \N \N 407018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443592 2025-03-19 12:33:37.398 2025-03-29 22:39:52.682 \N Suppose I have a pizza, and cut it into 2 slices, one for me and one for you. You decide to cut your pizza into 100 million pieces. It doesn't make more pizza, it just makes the pieces smaller. https://example.com/ 19569 443515 443399.443515.443592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.4399279891878 0 \N \N f 125166593 \N 1 156411801 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 2025-03-26 06:01:54.6 f \N \N \N 0 0 0 0 1 0 0 446650 2025-03-21 12:00:16.323 2025-03-29 22:39:52.682 \N ![IMG_20240108_132640.jpg](https://m.stacker.news/11211) https://example.com/ 8726 446649 446456.446649.446650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8234904391724 0 \N \N f 340543746 \N 3 35834117 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437432 2025-03-14 14:11:17.647 2025-03-29 22:39:52.682 \N when you say "I don't read" I hear "I don't want to change my mind" https://example.com/ 660 437321 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6899937460696 0 \N \N f 1668606082 \N 15 245623996 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404410 2025-02-15 21:07:23.285 2025-03-29 22:39:52.683 \N Been trying some new recipes from [Nourishing Traditions](https://www.bookmarked.club/books/nourishing-traditions), easily the best cookbook I’ve ever read… one of my top overall books from this year too. https://example.com/ 20599 402754 401283.401346.401403.401520.402058.402078.402727.402754.404410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.93901988691933 0 \N \N f 141840605 \N 1 90193158 0 f f \N \N \N \N 401283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1253 2022-09-08 18:36:46.401 2025-03-29 22:39:52.683 \N There might be a small itch in this brain that says "maybe the maxis were right all along", and he can't stand it. It's probably not easy to admit you were wrong, when you're as smart as Nic. I mean, by now, everyone knows most of crypto is a scam and blockchain just a buzzword.\n\nVery nice write-up. https://example.com/ 16351 1250 1247.1250.1253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5451757977703 0 \N \N f 413693583 \N 4 213770252 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448391 2025-03-22 15:23:59.589 2025-03-29 22:39:52.683 \N I tried to name our dog bitcoin but I lost that vote 3 to 1. https://example.com/ 19193 448349 448349.448391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1773311415627 0 \N \N f 58224059 \N 1 241629109 0 f f \N \N \N \N 448349 \N 0 0 \N \N f \N 2025-03-29 09:18:44.657 f \N \N \N 0 0 0 0 1 0 0 3398 2022-10-31 16:31:56.83 2025-03-29 22:39:52.677 \N I used silent link for an esim for a few months. My experience was pretty great. \n \n- I used it for data only (did calling/texting via messaging apps like signal).\n- Paid in lightning. \n- Very affordable. \n- Instantly downloaded esim once I paid.\n- Sometimes had trouble with networks when out in rural areas. https://example.com/ 18265 3397 3397.3398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3115155670618 0 \N \N f 245072026 \N 2 42615563 0 f f \N \N \N \N 3397 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410384 2025-02-20 13:09:23.233 2025-03-29 22:39:52.677 \N Another fun facts about DarthCoin:\n- In the last 20 years I never went to a doctor/medic/hospital. I wasn't sick at all.\n20 years ago I went to do only some check up on my status, to see if I am dead.\nThe medic told me that I have a big liver and I should be dead. I am still healthy and drinking beer all fucking day!\nSTOP believing the bullshit that doctors said to you, They just want to sell you drugs and keep you alive to pay them!\n- I am not afraid to die! Who is afraid that will catch a so called "virus" that will kill him is a dumb moron that do not enjoy his life and do not deserve to live on this beautiful planet. https://example.com/ 674 410358 410358.410384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.146380548297 0 \N \N f 722673784 \N 5 113558910 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455531 2025-03-27 05:48:29.559 2025-03-29 22:39:52.677 \N Microzaps on SN go to people, not a company. It’s all part of the fun of the recycling ♻️ of energy. Spread the sats and the sats shall be spread back to you. It’s much different than being billed by a company. The energy consumed is also immediately rewarded by a lightning bolt animation, a particularly key part of what makes SN a rewarding user experience.\n\nThis post reminds me of poker, where an aggressive player will always abruptly make a bet to force you to make a decision on whether or not you want to pay to see the next card. The aggressive strategy is known to, over time, cause competitors fatigue and frustration as the aggressor is indirectly putting pressure on a person’s livelihood, their survival, every time he forces you to decide whether to put more money in the pot. That’s stress-inducing. However, on SN, nobody is requiring anyone to do anything, but the way of nature makes us, social creatures of Earth, *want* to share and spread wealth among the community. https://example.com/ 21600 455525 455525.455531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3444098333804 0 \N \N f 496243184 \N 3 214631497 0 f f \N \N \N \N 455525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436395 2025-03-13 14:26:16.621 2025-03-29 22:39:52.677 \N It's not that hard if you're so God-damned weird that nobody agrees with you on very much. https://example.com/ 20225 436028 436028.436395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.3403485465759 0 \N \N f 146518502 \N 1 68348516 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 11:40:41.833 f \N \N \N 0 0 0 0 1 0 0 335591 2024-12-19 20:15:28.241 2025-03-29 22:39:52.677 \N History of voter turnout in the US:\nhttps://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/US_Vote_for_President_as_Share_of_Population.png/1000px-US_Vote_for_President_as_Share_of_Population.png\n\nToo many people think they have a duty to "stay informed" and "their vote matters". So they spend 100s of hours a year consumed with the current thing just so they can cast their ballot with confidence.\n\nGetting the "correct" group of people into the broken system is not going to make your life any better.\n\nYou can improve your own situation 1000x more effectively by ignoring the clown show and focusing on what you can control. https://example.com/ 10016 335562 335484.335562.335591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0765177188429 0 \N \N f 1633146717 \N 14 104757216 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457436 2025-03-28 13:57:35.09 2025-03-29 22:39:52.678 \N I missed your post yesterday so this was perfect!\n\nJust a reckless zapper.\n\n![](https://m.stacker.news/51528) https://example.com/ 16747 457413 457413.457436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5314299098155 0 \N \N f 166554631 \N 1 221807688 0 f f \N \N \N \N 457413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427153 2025-03-06 06:34:19.266 2025-03-29 22:39:52.677 \N You are aware that you can flag content? https://example.com/ 1162 427074 427039.427074.427153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.49990216127223 0 \N \N f 211636553 \N 2 236499660 0 f f \N \N \N \N 427039 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444176 2025-03-19 17:53:47.126 2025-03-29 22:39:52.678 \N “If you know the enemy and know yourself, you need not fear the result of a hundred battles. If you know yourself but not the enemy, for every victory gained you will also suffer a defeat. If you know neither the enemy nor yourself, you will succumb in every battle.”\n― Sun Tzu, The Art of War https://example.com/ 7913 444168 444168.444176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4195456468275 0 \N \N f 40790052 \N 1 46248365 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458252 2025-03-29 06:25:00.806 2025-03-29 22:39:52.678 \N Consolidate, close LN channels, open LN channels, use this moment :). https://example.com/ 20788 458238 458227.458238.458252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5009172566308 0 \N \N f 52144572 \N 1 177607016 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436308 2025-03-13 13:08:50.774 2025-03-29 22:39:52.678 \N Just started using this because I had to buy a temp laptop and it's simply incredible. The Linux virtual machine has instant startups and combined with nixos, makes it incredibly powerful to spin up and throw away reproducible builds. I'm migrating my whole development setup to it now. https://example.com/ 15243 436243 436241.436243.436308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.33649788661629 0 \N \N f 9802629 \N 1 19194876 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:27:17.71 f \N \N \N 0 0 0 0 1 0 0 435502 2025-03-12 18:30:53.904 2025-03-29 22:39:52.678 \N Other people have made good points. But one thing I think hasn't been discussed is incentives to attack Bitcoin: because zeroconf transactions rely on the P2P network, *both* merchants trying to rely on them, and attackers trying to double spend, have incentives to attack the P2P network.\n\nThe latter is more obvious: if you sybil attack the network, DoS miner's nodes, etc. you can break the very weak consensus that zeroconf is relying on. We don't want people to have a profit motive to attack Bitcoin nodes, so full-rbf is desirable by taking away that profit motive.\n\nThe latter is less obvious: merchants trying to do "risk management" of zeroconf transactions inevitably find they have to try to measure propagation of transactions. But because Bitcoin has decent privacy protections, the only way to do that is for the *merchants* to perform sybil attacks against the P2P network! While this is a mild attack per merchant, it adds up: eventually the whole network will run out of connection slots. Again, we don't want this incentive to exist. And of course, since only a small number of merchants can successfully do this, it's very centralized.\n\nFinally, in the past we've seen merchants try to make deals with miners to make zeroconf more reliable. This is really ugly at the end stage, because the only really effective way to guarantee zeroconf txs get mined is to get miners to do 51% attacks on miners who don't mine the "right" transactions that "came first". Due to the P2P attacks, and the general lack of consensus in the mempool, it is impossible for smaller, non-anonymous, miners to always mine the "right" txs.\n\nSo yeah, when v24.0 is released, please set `mempoolfullrbf=1` on your home nodes, and mining nodes. It's better for everyone if we get rid of this opt-in-rbf/zeroconf nonsense. https://example.com/ 10016 435427 435046.435209.435215.435427.435502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.42101156087954 0 \N \N f 277958723 \N 2 154365385 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 13:06:40.167 f \N \N \N 0 0 0 0 1 0 0 458257 2025-03-29 06:27:43.392 2025-03-29 22:39:52.678 \N Sounds like a StackerConf 🤘 https://example.com/ 21670 457126 457126.458257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9837886622972 0 \N \N f 183932005 \N 1 45474845 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434442 2025-03-11 22:22:59.607 2025-03-29 22:39:52.678 \N Love to see it. Thanks for highlighting siggy. \n\nAnita is great. Dig deep Bitcoiners and support her work. https://example.com/ 730 434439 434278.434298.434310.434411.434435.434439.434442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.49335827244 0 \N \N f 511095859 \N 4 60266872 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 18:58:01.362 f \N \N \N 0 0 0 0 1 0 0 427607 2025-03-06 14:30:40.737 2025-03-29 22:39:52.678 \N If you know how to code it is always always always helpful to have more eyes on finding bugs or performance optimizations in the code.\n\nAlso, writing more tests, battle test it with a test-evironment, create large-scale gatling simulators, answer to Issues on the github.\n\nWe always always always need products /setups to make bitcoin more accessible and easier to use. It's never easy enough to setup a node for non-tech people, never. (Pre-made products with everything installed, youtube videos on how to setup, blog articles on how to setup etc etc). [Node-launcher](https://github.com/lightning-power-users/node-launcher) has not been developed in 4 years.\n\nIf you're not a coder you also helping Bitcoin by simply running a node and getting the word out. Get people to download a wallet and pay for pizza together. Introduce people to SN. https://example.com/ 21119 427401 427401.427607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6403225383076 0 \N \N f 7410192 \N 1 177626352 0 f f \N \N \N \N 427401 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446838 2025-03-21 13:54:02.275 2025-03-29 22:39:52.678 \N Nostr is currently a leaky ship with a lot of bad practices baked into the NIPS (external links to profile images LOL)\n\nThat being said, I think it is a great paradigm shift towards what is essentially a decentralized database query protocol. There's many cool applications that are waiting to be built!\n\nThere's also a lot of challenges yet to be solved with pubkey based identity. Like, how do you rotate private keys if your key is compromised? There's no password reset in ECDSA :-D\n\nWhat an exciting future! Can't wait to build on top of it. https://example.com/ 1047 446719 446719.446838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3639786169023 0 \N \N f 74057091 \N 1 241958097 0 f f \N \N \N \N 446719 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 386199 2025-01-30 17:29:20.54 2025-03-29 22:39:52.678 \N I had started this book before and was mostly reading it while at my son's taekwondo classes, but put it down when summer arrived because why would I want to sit inside for 45 minutes during his class when I can walk by the lake and listen to podcasts for 45 minutes. \n\nSo now that we have some fall weather on the horizon, it is back to reading season for me.\n\nLifespan: Why we age- and why we don't have to \nby David Sinclair https://example.com/ 919 386140 385662.385905.386121.386138.386140.386199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0775285627567 0 \N \N f 172082434 \N 1 56102757 0 f f \N \N \N \N 385662 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436135 2025-03-13 10:46:58.397 2025-03-29 22:39:52.678 \N There are a lot of passionate Bitcoiners who have seen scammers, charlatans and fraudsters in the ‘crypto’ space taking advantage. A lot of people have been hurt and I’m grateful they take the time.\n\nI’m sure any better alternative to Bitcoin can take the beating and still be standing… haven’t seen it yet though lol https://example.com/ 994 436032 436032.436135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.29560258600001 0 \N \N f 126413642 \N 1 121724471 0 f f \N \N \N \N 436032 \N 0 0 \N \N f \N 2025-03-20 06:09:36.387 f \N \N \N 0 0 0 0 1 0 0 435427 2025-03-12 17:08:29.827 2025-03-29 22:39:52.678 \N Wow very cool. Taking my daughter to the park for a bit, but hoping I can get a chance to play with this before the game. https://example.com/ 18727 435215 435046.435209.435215.435427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9759496734099 0 \N \N f 432324108 \N 3 240483210 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 11:47:01.813 f \N \N \N 0 0 0 0 1 0 0 458223 2025-03-29 05:48:57.704 2025-03-29 22:39:52.678 \N I'm loving it more and more, but Stacker News has me in it's hooks. https://example.com/ 20734 458210 458188.458210.458223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8592647522033 0 \N \N f 755725993 \N 6 83922609 0 f f \N \N \N \N 458188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433299 2025-03-10 23:39:57.789 2025-03-29 22:39:52.678 \N ![IMG_9423.jpeg](https://m.stacker.news/4216)\n\nniceeeee https://example.com/ 19980 432920 432920.433299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.27236675293629 0 \N \N f 83615851 \N 1 37281002 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402938 2025-02-14 09:21:37.901 2025-03-29 22:39:52.678 \N [A Short History of Nearly Everything by Bill Bryson](https://www.goodreads.com/book/show/21.A_Short_History_of_Nearly_Everything)\n\nNot really _that_ short, though. https://example.com/ 4115 402799 397192.402799.402938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.136005240084 0 \N \N f 142704068 \N 1 57729629 0 f f \N \N \N \N 397192 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430943 2025-03-09 14:22:28.915 2025-03-29 22:39:52.678 \N Someone comes and offers a great service that the market demands and no one is offering.\n\nBecause they are pretty much alone, they can charge a lot and have a juicy margin. They still sell since there is no competition.\n\nEventually, some ballsy entrepreneur notices the situation and thinks to himself: "I can do the same thing for half the price". And he goes and does it. \n\nAs more of these hungry entrepreneurs join the scene, competitions starts and the margins go lower and lower, translating into lower and lower prices for customers. The starting guys can't keep charging the fat margin anymore.\n\nSo, don't stress out and just give things some time. Phoenix is charging what they charge because they can get away with it, _until_ competition joins and they won't be able to. And the hefty fee is precisely what's going to make all of it possible.\n\nFinally, I find it hard to see how they are killing the purpose of using LN. I paid 2342 sats for my coffee this morning with Phoenix and the fee was 12 sats. That's clearly much better than what I would have had to pay with an onchain transaction, so I feel the purpose of LN with Phoenix is very much alive. https://example.com/ 18232 430700 430700.430943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6016833298347 0 \N \N f 432412656 \N 2 52013934 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436552 2025-03-13 16:29:34.562 2025-03-29 22:39:52.679 \N Self sufficiency and using less energy are at odds. Thru division of labor and specialisation we create efficiencies in production that are unachievable thru self sufficiency. \n\nYou will use 10x the water, energy, and time to produce 1 potato than it costs to let the market produce that potato for you. https://example.com/ 1401 436459 436459.436552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.673581521277 0 \N \N f 128244542 \N 1 143888509 0 f f \N \N \N \N 436459 \N 0 0 \N \N f \N 2025-03-20 10:02:24.625 f \N \N \N 0 0 0 0 1 0 0 434411 2025-03-11 21:35:08.032 2025-03-29 22:39:52.679 \N Seedsigner\nSpecter DIY\nColdCard Mk4 https://example.com/ 6687 434310 434278.434298.434310.434411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5618879294871 0 \N \N f 937584545 \N 9 109492509 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 18:55:04.849 f \N \N \N 0 0 0 0 2 0 0 447313 2025-03-21 19:13:56.371 2025-03-29 22:39:52.679 \N INFLOOENCERS\n\nPeople who spread news and educate for free === good for bitcoin\n\nPeople who inform/educate while reading ads === inflooencor\n\nAds are mind viruses. They prey on people's appeal to authority (a logical fallacy). If a product actually fills a NEED it does not need marketing. It will be found and if its useful, naturally will tell others about it. If your product cant scale thru word of mouth, its probably an inferior or not-needed (high time preference) product. A simple heuristic that has severed me well, anytime you are fed a paid endorsement, boycott that product and brand immediately and forever.\n\nAlso people who inform/educate and charge you a fee/paywall === infloorncor\n\nInformation wants to be free. By holding information for ransom, you create the illusion of scarcity. As if what you have to say is more valuable because YOU said it. This behavior is deeply rooted in egoism. It creates Inflooencors.\n https://example.com/ 2640 447302 447264.447302.447313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7986742695367 0 \N \N f 166242962 \N 1 44569458 0 f f \N \N \N \N 447264 \N 0 0 \N \N f \N 2025-03-28 12:32:13.804 f \N \N \N 0 0 0 0 1 0 0 435162 2025-03-12 14:03:05.551 2025-03-29 22:39:52.679 \N Works using USSD so no smartphone or mobile data / wi-fi needed.\n\nOnce set up, the user can receive via Lightning address, like:\n\n⚡[phonenumber]@8333.mobi\n\nAnd then using the USSD commands, they can send to any other number that has signed up, or can Send to any Lightning address.\n\nBut this service does not yet have Spend (LN invoice) withdraw implemented yet. https://example.com/ 15139 435135 435046.435135.435162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.88104705958715 0 \N \N f 2305631506 \N 18 7043931 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 07:43:14.014 f \N \N \N 0 0 0 0 2 0 0 420721 2025-03-01 00:32:16.186 2025-03-29 22:39:52.679 \N I sense that almost nobody can be a "Darth's padawan" because nobody look deep into the Darth Vader character to understand the true Anakin that is inside...\n\nPeople are usually look only to the crap disney show, but do not:\n- read the plethora of books about Star Wars universe\n- play Star Wars PC games\n- look at the Star Wars saga with a birdeye outside of disney propaganda... Many don't even watched all the 9 epiodes (!!!) and series to really understand the SW universe.\n\nGuys, before talking about Darth, do your homeworks... https://example.com/ 17162 417342 417342.420721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0372193787365 0 \N \N f 694693283 \N 5 72426274 0 f f \N \N \N \N 417342 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442374 2025-03-18 14:38:26.799 2025-03-29 22:39:52.679 \N ![](https://nostr.build/i/7bd4bc79dffbbf1db87cc453e2e456e2d6dc9f22718b6e137f95a1ef3a2244ff.jpg) https://example.com/ 20963 442191 442191.442374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.249950077545 0 \N \N f 212773943 \N 2 169537111 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432881 2025-03-10 16:31:23.413 2025-03-29 22:39:48.905 Paul Sztorc's criticism of DATUM and SV2 I do not generally agree with Sztorc, but this critique he put on Twitter gave me pause. I'll admit I am not familiar enough with DATUM, SV2, and pool behavior to be a good judge. Curious how the Stackers would respond.\n\ntl;dr is:\n\n1. There's no way to know how many mining pools there actually are.\n\n2. We should just focus on making it easy to spin up a new pool, rather than the illusive "decentralized pool".\n\n3. DATUM and SV2 can be turned off by pool whenever the pool likes. Miner's only real leverage is point hashrate elsewhere--just as it is now. \n\n4. DATUM and SV2 reduce pool operator's accountability: they can join their own pools and submit censored blocks and then claim it's just what their pool members want. \n\n5. The only thing that should matter in mining is mining the block with the most fees. \n\n6. Sv2 vs DATUM are criticizing each other.\n\n7. Miners don't use Sv2 or DATUM.\n\n8. Lack of adoption is a bigger threat to bitcoin than miner centralization.\n https://x.com/Truthcoin/status/1841140289467035856 16704 \N 432881 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.83475090607622 0 \N \N f 665872644 \N 4 186170729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 429291 2025-03-08 05:16:39.517 2025-03-29 22:39:48.905 Sat wise, BTC foolish? When I was in my shitcoin-transition phase, I'd moved away from of all the major scammy bullshit, but was still collecting two coins, nano and banano. These were (to quickly oversimplify, since it's not the point of this) coins that were kind of like Lightning, but without a L1 beneath it or any proof of work. So yeah, cheap to send and noncustodial, but with nothing holding them up. But it was fun at first to acquire them in ways similar to some Sat stacking (faucets, games, etc)\n\nOf course, that didn't last, and the final straw for me was realizing that I was spending time each day going to a faucet clicking and going through a captcha to identify which animals are foxes or whatever bullshit they're asking me to, and getting 0.024 of a ban, which as of today appears to be 0.000179352 of a USD, which is maybe a fourth of a sat[^1]. \n\nThat's a lot of work for less than nothing, and I moved on.\n\nNow, after getting burned with my initial pushes into BTC (thanks, [ZBD](https://stacker.news/items/489552)), I slowly got back into things, focusing on a slow but steady dca process at first before looking into stacking sats via Lightning.\n\nNow, when it comes to stacking sats, I've found there are a few different ways that work well for me. SN is (obviously) the best; you make good content, you get rewarded, and people here are generous. It's active, but well worth it (not least because it's also both fun and informative). Other active methods with high upside include gigs or sites like Bitcoin Transcripts or selling items online. I'm not at a point of doing any of those yet, but of course they're on the table.\n\nThere's also the sites that offer ways to purchase or get rewards. When the wife wanted access to Paramount+, I was able to purchase a gift card at Bitrefill and then sign up through Satsback to get something back after the purchase as well. \n\nThere are also passive ways to get sats. I have Smiles on my phones and walk a lot; I use Fountain to listen to the podcasts I already enjoy, and some sats will just magically appear for me. I even have the Thundr games that I can play to pass time on a commute. These involve almost no extra work (other than cashing out), so even if they pay slowly, they don't waste my time.\n\nBut then there's the stuff that's like the banano faucet. I posted last week in the salon about the Lightning Stores faucet that gives me a whopping 1 sat for going through a similar process (and even yells at me for being greedy enough to want a sat each day). That's a lot more work than it feels like it's worth. And then there are sites like Freebitcoin, that give me a sat (maybe a handful if I'm incredibly lucky) every hour, if I'm patient enough to keep coming back, but don't pay via Lightning and take forever to build up a stash one can actually access. Sats4Likes seems like another one asking a lot for very little.\n\nAnd so I think a lot about a phrase coined by Robert Burton[^2]: *Penny Wise, Pound Foolish*. The gist of it is that spending time focusing on saving or accumulating pennies at the cost of long-term pounds (or dollars, or whatever fiat you're using) is not smart, but an easy trap to fall into. You buy a cheaper space heater, but it uses twice as much energy, so the $10 you save is lost in three months, and you keep losing more. Or you buy the cheaper paper towels, not realizing you go through twice as many of them as you would if you were using better ones. And so on. \n\nBut it also applies to just using your time to focus on getting pennies (small tasks, or selling something on Ebay today for a low price instead of being patient and wait for it to sell for more next week). Obviously this ties into time preference.\n\nThe thing is, with pennies, passing them up means there's still the opportunity for more pennies, because as we know, pennies are endless, and the government (whichever one) will keep making more.\n\nSo I'm trying to examine my habits with sats. On the one hand, places like Freebitcoin or that 1 sat faucet feel like complete wastes of my time. Even if I'm not actively using that time for stacking better, I could be using it for a zillion other things (reading, exercise, time with family) that are valuable to me.\n\nOn the other hand, sats, unlike pennies, are not unlimited. After 2.1 quadrillion of them have been made, that's it. It's a finite resource, and like many folks I'm trying to make sure I have enough for when it becomes *the* acknowledged economic resource for everyone. Today, at least, it seems that there are plenty of times when I'll pick something other than going after a few sats, but I wonder if I'll have a point in the future where I truly regret no going after every single one.\n\n[^1]: Almost certainly less, since the process of finding an exchange that'll take it and swap it is tough, and I'd lose a bunch in the process from fees, etc.\n[^2]:Not Benjamin Franklin, even though he's often given credit here. \N 12245 \N 429291 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 29.017930839417 0 \N \N f 596320723 \N 4 217100107 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 01:30:35.539 f \N \N \N 0 0 0 0 4 0 0 336308 2024-12-20 16:00:42.347 2025-03-29 22:39:52.679 \N HAS ANYONE SEEN A COWBOY HAT LAYING AROUND? https://example.com/ 20205 335791 335484.335562.335591.335690.335721.335729.335791.336308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6690668666468 0 \N \N f 1037690458 \N 9 87900544 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458359 2025-03-29 08:20:18.758 2025-03-29 22:39:52.679 \N Really? You can't make this stuff up.\n\nLocally we had this darling tech startup that the local politicians loved to tout. They were constantly doing photo ops with them. Then the company tanks and we find out they haven't paid their property taxes for years... \n\nTaxation is theft but it is weird how when you are connected you get away with not paying much longer than we lowly plebs. https://example.com/ 11885 458351 458347.458351.458359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.08399745656223 0 \N \N f 276129074 \N 2 170741734 0 f f \N \N \N \N 458347 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 446840 2025-03-21 13:54:17.272 2025-03-29 22:39:52.679 \N I usually start with: "Bitcoin is basically a public ledger, one that anyone can write to but somehow everyone trusts. We've never had that before."\n\nThe conversation then usually goes in one of two directions: 1) how does Bitcoin achieve this, or 2) why does this matter? I trust that you'll be able to take it from there :) \n\nI like starting with that because it focuses on the actual technological innovation and what's got people so excited. It works better than talking about the gainz since 1) not everyone is interested in gainz and 2) gainz are not guaranteed over any particular period of time and 3) they probably know someone who got burned chasing gainz https://example.com/ 3411 446786 443799.443861.444786.445531.446786.446840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6723141410657 0 \N \N f 145449689 \N 1 8426992 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416632 2025-02-25 18:19:43.329 2025-03-29 22:39:52.679 \N One of my favorites: Thomas Mann: Buddenbrooks\n\nI never read the english translation but it surely also creates this special atmosphere of a great family of the 19th century in northern Germany in decline. The economical decline sets in with the sublime growth of cultural spirit and interests. It's the history of Mann's own family. He won the nobel price for this work with 23 years of age! Great read. Absolutely a part of a good library.\n\nGreets https://example.com/ 18174 416605 416158.416221.416253.416288.416551.416578.416605.416632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8742297261434 0 \N \N f 742990976 \N 7 150749311 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403360 2025-02-14 18:10:25.713 2025-03-29 22:39:52.679 \N Real definition of capitalism is free market and respect of private property, exchange of goods based on respect of the market.\nProblem is people associate it with US administration for 50 years, and what they do is opposite of capitalism. It "sounds" like a bad and selfish thing https://example.com/ 2774 403323 403323.403360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7505291840106 0 \N \N f 77882277 \N 1 14437269 0 f f \N \N \N \N 403323 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424319 2025-03-04 00:41:48.656 2025-03-29 22:39:52.679 \N I hope it's a “boat accident” 😵‍💫 https://example.com/ 21804 424307 423667.423687.423704.423895.423925.423968.424192.424307.424319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6783250809686 0 \N \N f 587167068 \N 3 59288549 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 407669 2025-02-18 09:34:55.173 2025-03-29 22:39:52.68 \N Awesome. Love the kick yourself but ending in I am going to work my ass off to not have a reason to kick myself. \n\nNice work. https://example.com/ 21019 407461 407400.407461.407669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.927559828403 0 \N \N f 4252038 \N 1 103755064 0 f f \N \N \N \N 407400 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443683 2025-03-19 13:14:58.895 2025-03-29 22:39:48.905 Why Non-KYC? Notice of a Data Security Incident at Stretto So while using Swan in a self-custodials manner, I still wound up with my information out there due to KYC. You see Swan used shitcoins business Prime Trust for custody services, Prime goes bankrupt from the Terra crap. As a result, my information is handed over to a law firm, which gets hacked!\n\nI never used the custodial service, so I'm not due anything from the bankruptcy, but my info was handed over and now this. nHere is the notice I just received.\n\n>Stretto recently experienced a security incident regarding data held in connection with In re: Prime Core Technologies Inc., et al., No. 23-11161, currently pending in the United States Bankruptcy Court for the District of Delaware. We are writing to advise you of a data security incident at Stretto that involved some of your personal information. We want to make you aware of the incident, steps you can take to protect your information, and services we are making available.\n\n>What Happened?\n>On April 17, 2024, Stretto information technology staff were alerted to suspicious activity occurring in one employee account. Stretto immediately initiated an internal investigation, which preliminarily determined that the account had been subject to unauthorized access. In response to this discovery, Stretto disabled all access by this account to Stretto systems and changed the password to the account.\n\n>Stretto engaged external cybersecurity professionals to conduct a thorough and detailed investigation of the Incident. A critical focus of the investigation was to identify the extent to which information held by Stretto in connection with the Prime Core Bankruptcy Matter may have been impacted. Stretto’s cybersecurity professionals completed their investigation on May 6, 2024. Immediately thereafter, Stretto conducted an exhaustive review of the documents which may have been affected by the incident. This review determined that information related to creditors in the Prime Core Bankruptcy Matter may have been impacted.\n\n>What Information was involved?\n>We are notifying you as we have confirmed that your data was accessed by an unauthorized party. This data included may have included your name, mailing address, e-mail address, fax number, phone number, claim amount, schedule amount and/or voting amount. In some cases, the data related to Claim submissions may have contained amounts and other information provided by the creditor. Stretto’s investigation did not find evidence that your Social Security number, Taxpayer Identification number, or financial account information were impacted. \n\n>Please remain vigilant of potential security risks, such as phishing attempts. If you receive an email that appears to be from Prime Core or Stretto, please verify the sender before you reply or click any links. If you have any questions relating to this security incident, please email PrimeCoreInquiries@stretto.com.\n\n>Stretto\n\n\n\n \N 9529 \N 443683 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 11.4369990411662 0 \N \N f 70504373 \N 2 15215517 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 07:03:50.754 f \N \N \N 0 0 0 0 2 0 0 436490 2025-03-13 15:31:16.187 2025-03-29 22:39:52.68 \N I hope we have a place where to buy the eggs and the meat when everything goes bad... https://example.com/ 7125 436488 436460.436488.436490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2599239368954 0 \N \N f 331728957 \N 2 187890762 0 f f \N \N \N \N 436460 \N 0 0 \N \N f \N 2025-03-20 09:47:03.121 f \N \N \N 0 0 0 0 1 0 0 458242 2025-03-29 06:14:59.098 2025-03-29 22:39:52.681 \N I strongly suspect we will see a fake top around ~$120K that will lead to people thinking they are smart by selling all of their Bitcoin to buy back 2x their stack at $60K, only to watch the price move to $360K, which makes them FOMO buy back 1/3 of what they had instead of 2x—because it’s clearly going to $1M next and they think they will maximize fiat returns. This is how Bitcoin gets distributed rather than consolidated.\n\nIf you have to spend some bitcoin to pay for dreams (buying a business, buying a house), that’s one thing, and timing it can be an art, but trying to outsmart the market usually ends in getting manipulated out of position by the bigger funds that can control the price against you.\n\nAll that said, DCA in and DCA out (over a certain excess return APY) is also my strategy for over-allocating in.\n\nIt’s the people who try to time the market by going all in and all out that get super rekt. https://example.com/ 7869 458237 458122.458134.458211.458237.458242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.81844362692711 0 \N \N f 722476348 \N 4 95401266 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 403919 2025-02-15 11:29:01.526 2025-03-29 22:39:52.681 \N Day 425 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 13763 403918 403824.403857.403868.403869.403918.403919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1688319195324 0 \N \N f 954274466 \N 7 209430304 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435962 2025-03-13 06:58:13.082 2025-03-29 22:39:52.682 \N What am I working on? A beautiful rhyme\nI like basil, mint, and thyme\nYou say "I am", I say "I'm"\nI want sats, you can keep your dime https://example.com/ 12097 435922 435922.435962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8091356878055 0 \N \N f 248235353 \N 1 181937414 0 f f \N \N \N \N 435922 \N 0 0 \N \N f \N 2025-03-20 08:06:10.368 f \N \N \N 0 0 0 0 1 0 0 448779 2025-03-22 21:37:24.208 2025-03-29 22:39:52.682 \N The biggest flaw in the Fedimint narrative is that there will be all these community fedi mints. The underlying assumption is that users prefer a distributed, potentially anonymous federation over single centralized is just wishful thinking and has no bearning in reality. \n\nRunning a bitcoin core or an LNbits node for a few friends is one thing, but Fedis are taking actual custody over people's money. This is a completely different ball game. No one would just entrust their money to a bunch of Anons on the Internet who you might not get hold of if something goes wrong. \n\n*If* I am forced to give up custody of my coins and entrust them to a third party, then I am much more likely to go with one professional player that knows what they are doing, instead of a "group of friends" who might have the best intentions but not the resources or skills to guarantee availability, security, disaster recovery, customer suport etc. etc. \nLike, if you want a profesionally operated federation, why not use Liquid? \n \n\nAll that means that at the end of the day only professional, known player (most likely incorporated companies) can offer viable Fedimints. And there goes your decentralization. They'll be very easy targets for regulators as they'll have a phone number and the people behin them; they are probably required to get money services businesses or even banking license and of course fall under KYC/AML rules. \n\nCongratulations, we have built banks 2.0.\n\n\nSo, I doubt we will see any of the benefits that the Fedimint hype trainer folks promise us.\n\n\nI am truly confused how that sort of custody is suddenly OK, while Hosted Lightning Channels on the other side receives all the "oh but it's custodial" FUD.\n\nOf course, HCs have trade offs and they are well documented, but they offer very decent amount of privacy, are proven and available today, and are natively on the Lightning network and not some extra software stack on top https://example.com/ 1549 448746 447892.448746.448779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1666745279651 0 \N \N f 97748655 \N 1 58769930 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 15:06:34.13 f \N \N \N 0 0 0 0 1 0 0 408270 2025-02-18 17:01:36.259 2025-03-29 22:39:52.683 \N Lightning login works great. I signed up with Breez wallet no problem. Tried to create an event but when I hit submit nothing happened. https://example.com/ 21178 408269 407903.408269.408270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2541189634853 0 \N \N f 217797471 \N 1 206422067 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443669 2025-03-19 13:05:00.796 2025-03-29 22:39:52.683 \N `dup` https://example.com/ 20841 443613 443577.443613.443669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2260006750369 0 \N \N f 552625584 \N 4 110271478 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:28:50.887 f \N \N \N 0 0 0 0 1 0 0 435928 2025-03-13 05:34:20.959 2025-03-29 22:39:52.683 \N Twitter post: https://twitter.com/LucentLabz/status/1602376904111161345\n\nLucent Labs Blog: https://www.lucentlabs.co/blogs/announcing-bolt-node-and-bitcoin-cache\n\nAbout Lucent Labs:\n\nAt Lucent Labs, we believe that infrastructure enables innovation, and that bitcoin native infrastructure will provide the foundation for decentralized finance in a bitcoin-based economy. Our core mission as a startup is to democratize financial infrastructure and extend it to every organization.\n https://example.com/ 9655 435924 435924.435928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.946157028631 0 \N \N f 133856994 \N 3 94384322 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N 2025-03-20 08:32:43.976 f \N \N \N 0 0 0 0 2 0 0 427318 2025-03-06 10:14:45.729 2025-03-29 22:39:52.684 \N I love the idea of experimenting with the SN incentive structure!\n\nThe downsides I can see with this proposal are:\n\n1. It is hard on newbies (if you don't have a lot of sats, it might become hard to post, and I don't know how freebies would work in this scenario -- although, at the moment, I can't remember the last time a freebie post showed up on my SN front page...)\n\n2. Positive reinforcement is better than negative reinforcement (seeing the little pink writing in my notifications that informs me that I stacked some sats in rewards feels great! knowing that I don't have to pay quite as much to post probably won't feel as good. SN has been really smart to get the "make people feel good" thing right on a lot of counts. I'd hate to see one of those go away.)\n\nIn my perfect world, the base case for SN is a free market: this would mean that there is no need for rewards for zaps: it is in stackers' own interest to zap good content so that there is more good content on SN making SN a more enjoyable place to spend time.\n\nHowever, rewards were one of the things that blew my mind when I first started using SN and definitely got me more engaged than I might otherwise have been. On most social media, I'm the kind of lurker-user who reads a lot, occasionally posts, but rarely gets into conversations. Rewards gave me a nudge to zap and interact more than I otherwise would have.\n\nRewards are clearly an important part of how SN functions.\n\n> > Rewards for zaps are the hardest to understand and the easiest way to game [rewards]. [#771504](https://stacker.news/items/770966/?commentId=771504)\n\nThis rings true. Rewards for zaps feel like the most complicated part of SN. It is difficult to understand what behavior gets a stacker to the top of the leaderboard. And so a method for assigning rewards that is not solely based on leaderboard status could be interesting.\n\nRewards are the incentive least directly connected to the behavior that produces them. When you see a notification that says you earned some sats, it's not immediately clear which actions produced this reward. When you look at the leaderboard, it's not immediately clear what put you in the place you are and not somewhere else. \n\nUnlike some of the fun easter eggs on SN, rewards should be as clear as possible. When they are unclear, they dilute their power. Knowing that I made 100 sats in rewards for zapping a specific post is a more powerful feedback loop than knowing I made 300 sats over the course of a day where I posted a couple things, zapped a number of posts, and commented on something else.\n\nI'd love to see rewards become more specifically tied to the behavior they are trying to reward. https://example.com/ 10342 427246 427246.427318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.6276397423939 0 \N \N f 124632902 \N 1 174605987 0 f f \N \N \N \N 427246 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448208 2025-03-22 13:36:14.233 2025-03-29 22:39:52.685 \N In fact, maybe I overestimated these big tech circuses:\n\nhttps://njump.me/nevent1qqsz42ser2vd8ue87fxxaplr3ecnpljjl4mx5ad0j4sl7ejyym0yl3gppemhxue69uhkummn9ekx7mp0qgsvyv8d6dx2tjp33069j2kq2mx7xage6w2upyzvxl4pcegt3t22wysrqsqqqqqpkdemge https://example.com/ 10060 448202 448202.448208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3120908956679 0 \N \N f 171876683 \N 2 80300328 0 f f \N \N \N \N 448202 \N 0 0 \N \N f \N 2025-03-29 08:42:21.711 f \N \N \N 0 0 0 0 1 0 0 403165 2025-02-14 13:58:21.315 2025-03-29 22:39:52.685 \N I mainly was in shitcoins to get a programming career started. After 6 months last half of 2021 I got in real close in two dev teams, and epically confirmed that all shitcoins essential characteristic is a doctrine and mind control system and that is fraud all by itself, let alone the ponzinomics of most of them. For me this was 6 out of 6, over the period since 2015, that I had *worked* on.\n\nAfter 6 months on shitcoin dev wages I decided that, first of all, I was somehow susceptible to this manipulation, and schooled myself on manipulation techniques, even wrote a little mnenomic system to remind myself.\n\nThen, as I had been steadily spending more time on Twitter during the exchange crashes starting in April I sorta just gradually drifted towards the bitcoin maxis, especially the ones who were hard core about exposing the scams mechanisms, Cory Klippsten the most notable one.\n\nI had been involved in Bitcoin since late 2012 and my prior focus was around privacy and Tor, the two things dovetailed together in the dark web, which to me was an epic FU to prohibition, one of the major bees in my bonnet.\n\nIn late 2022 I had the lightning pill and realised an old idea I had around making a monetised, peer to peer distributed virtual private network system became viable with LN as the payment rails, satisfying the anonymity requirement, specifically in the case of using keysend and AMP, meaning it could be adapted to become a mechanism for anonymous payment for relaying session data allocations and access to hosted and hidden services.\n\nBitcoin is the only money. Lightning could almost scale up tomorrow to replace all the small payment clearinghouses back end infrastructure. We need privacy during the next decade most especially because of the ever looming threat of automated totalitarian spying and their control instrument, the CDBC.\n\nOf course, like all bitcoin maxis, you know that bitcoin has the Lindy and that's just gonna be the end of that. Over 20k of shitcoins proves that nothing can improve on it or replace it and everything else is less secure, and that layers are the way you scale and interconnect. https://example.com/ 15463 403137 402871.402896.402903.402980.402991.403137.403165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0798295796425 0 \N \N f 184712142 \N 1 145167697 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 439139 2025-03-16 09:49:11.65 2025-03-29 22:39:48.905 Streaming on Nostr ! 🟪 \N https://live.snort.social/ 9833 \N 439139 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.3736227316619 0 \N \N f 556353208 \N 3 133854260 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406783 2025-02-17 14:28:53.596 2025-03-29 22:39:48.905 EFF - Surveillance Self-Defense - Basics Why Communication Metadata Matters \N https://ssd.eff.org/module/why-metadata-matters 11798 \N 406783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.90512816327651 0 \N \N f 52105446 \N 1 138232028 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434319 2025-03-11 19:36:01.019 2025-03-29 22:39:48.905 How Japanese parents raise their kids @cleaningup12 asked me what does parenting in Japan look like. This gives me the opportunity to reflect on how my wife raises my kids - and whether there are just good universal parenting methods or best practices used by the Japanese. Here goes.\n\nMy Baby Girl Watches TV\nYou know how it’s not encouraged to let infants below one year watch television because the dazzling visual stimulus will affect their brain development.\n\nWhich is sound advice by the WHO but practically impossible to implement in my household. \n\nThankfully, the Japanese have made television programmes specifically aimed for kids aged 0-2 years old, so honestly sometimes we “dump” our daughter in front of the TV set while we busy ourselves with the chore. I feel zero guilt because knowing the Japanese, I’m confident that they have done research into making great educational content for babies.\n\nHere’s an article about how a non-Japanese spouse came around to the idea of letting her baby watch TV: https://tinytotintokyo.com/japanese-educational-tv-shows-for-babies-and-toddlers\n\nExpressing Thanks\nJapanese people love their food. Seriously. If you stay in Japan for several months, you will be surprised by the wide array of cooking programmes on their TV. Ngl, I thought that they are superficial for being so obsessed with food, but I have since come to understand their respect for farmers and chefs who dedicate their lives to perfecting their produce and dishes.\n\nAnyway, that’s why I think this profound respect for food is translated into the rituals the Japanese take on at the dining table. We raise our kids to say Itadakimasu (Let’s eat) at the start of a meal as well as Gochiso samadeshita (Thank you for the good food) at the end. \n\nMy baby girl is conditioned to do so because if she doesn’t clap her hands at the start 👏, she doesn’t get her food. Haha. Which she is very willing to do so, because she has inherited the eating gene from her mum.\n\nExpressing thanks isn’t confined to mealtimes, either. I’m now getting my boy to practice Danshari, the art of throwing things as a means of decluttering. Before he parts with a toy and throws it into a bin, we all say “Arigato gozaimasu” for the good memories it has given us.\n\nCelebrating Milestones\nI’m sure Western parents take their precious to a studio for a photo shoot when their child turns one. Japanese parents do this and then some.\n\nBesides the one-month photo shoot, we also celebrated Tango-no-sekku (端午の節句) on May 5. My parents-in-law posted a samurai figurine all the way from Japan to us:\n\n![IMG_0621.png](https://m.stacker.news/13880)\n\nSource: https://yjc.tokyo/japanese-culture-childrens-day-2022\n\nSince my boy turns five this year, we are looking forward to celebrating the Shichi-go-san festival on November 15. My boy will wear traditional regal-looking clothing called hakama - and we will visit a temple near our home to pray for his good health and longevity. Even though we are based in Singapore, my wife is determined to bring this tradition alive for my boy.\n\nI hope this piece enlightens you somewhat! \N 4768 \N 434319 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 14.2384935263374 0 \N \N f 485553149 \N 4 78536819 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:04:08.014 f \N \N \N 0 0 0 0 2 0 0 403222 2025-02-14 14:56:50.27 2025-03-29 22:39:52.685 \N Hi Julian, will you, at some point, let companies take ownership of their reviews page? Kind of like Glassdoor. Also, it seems you have B2C products. Will you start B2B as well? https://example.com/ 9364 402904 402904.403222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.4577914779543 0 \N \N f 44844471 \N 1 180324787 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442848 2025-03-18 21:04:37.601 2025-03-29 22:39:52.686 \N GG! https://example.com/ 20911 442710 442710.442848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5051197082308 0 \N \N f 261980902 \N 2 130184816 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 416843 2025-02-25 22:06:08.076 2025-03-29 22:39:52.686 \N I don't know what Siggy is thinking about in terms of frequency but hopefully many more to come. https://example.com/ 15091 416158 416158.416843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.54046885457144 0 \N \N f 205301071 \N 1 109581803 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407739 2025-02-18 10:46:57.091 2025-03-29 22:39:52.686 \N There's no getting around work (and whatever evidence we have of its proof). When we feel like someone has put a lot of effort into something, we feel they are being genuine and I find myself far more willing to engage with them. \n\nWhen somebody posts a chunk of text produced by an llm I feel like they didn't put any effort into it and I'm less willing to engage/zap. \n\n(Maybe you can say that the creators of the llm put a lot of work into creating the tech or training it, but in most cases I think we are seeing posts by people who didn't personally do those things and haven't invested very much work in the words they are posting.)\n\nNow, it can be hard to tell the difference, and I suppose that's where the problem is. \n\nMy rule is if it makes me think llm, even just a little, it probably is. I might finish the post, but in my mind they've got a strike. Three strikes and I am pretty unlikely to look at posts by that user. \n\nAs a side note, I'm not so worried about the veracity/accuracy of a post. I'm very willing to forgive some inaccuracies in a post that feels genuine than makes me think, than I am to feel good about someone who copies a very accurate article from somewhere else and posts it as their own. \n https://example.com/ 17001 407607 407607.407739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7909849430689 0 \N \N f 492608002 \N 2 227298604 0 f f \N \N \N \N 407607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 423974 2025-03-03 18:46:50.844 2025-03-29 22:39:52.686 \N Agreed. Interestingly enough I don't withdraw my SN sats either, which is unique because if I won 10 sats on Bitcoin solitaire you could be sure they are getting zapped to my WoS. It is a testament to what @k00b and team have built (are continuing to build) that it feels intuitively right that SN sats stay on SN. https://example.com/ 17817 423928 423928.423974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1814871155607 0 \N \N f 144370155 \N 2 175302767 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443764 2025-03-19 14:04:07.509 2025-03-29 22:39:52.686 \N I think of it as the tidal flows of the sea. If the establishment can fine tune the credit expansions and credit contractions then the economic sea will appear relatively stable. Doomers predict a devastating tsunami but the establishment will expand and contract credit with relative skill. Bitcoin is our way of building and contributing to an alternative system; it will take to build out. I personally don’t want the current system to collapse as it would hurt the masses more than it harms the parasites. https://example.com/ 15196 443759 443577.443750.443759.443764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9521211863552 0 \N \N f 172444977 \N 1 194054928 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424080 2025-03-03 20:17:39.282 2025-03-29 22:39:52.686 \N Laser is also an acronym.\n\nYes it's spelled with and S and not a Z. And don't tell me that in American English it's a Z it's not it's just flat out incorrect and a commonly circulated mistake.\n\nAnyway.\nIt stands for\nLight Amplification by Stimulated Emission of Radiation. L-A-S-E-R. \n\n(You don't spell stimulated Zimulated do you? Now go forth and remove thyne Zs) https://example.com/ 21412 424024 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8411956297916 0 \N \N f 1769387886 \N 15 13292658 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436572 2025-03-13 16:54:14.47 2025-03-29 22:39:52.687 \N the dip\nwe are all waiting for that dip.. https://example.com/ 21036 436566 436566.436572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.90296923770719 0 \N \N f 198386544 \N 1 114945997 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 2025-03-20 11:05:08.737 f \N \N \N 0 0 0 0 1 0 0 443178 2025-03-19 05:58:36.483 2025-03-29 22:39:48.905 Reading top ~devs stories 04/01/2024 \N https://www.youtube.com/watch?v=Ztws5ERq880 4043 \N 443178 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.05030545661563 0 \N \N f 583307923 \N 5 217198331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:59:27.024 f \N \N \N 0 0 0 0 4 0 0 330427 2024-12-15 09:00:51.969 2025-03-29 22:39:48.905 All the World's Txns Good blog post by Paul Sztorc doing some calculations / economic modeling on viability of L2s under future transaction demands. \n\nI am too dumb / have not read closely enough to react in more detail, but PS makes his assumptions explicit and walks you through the logic. He also provides some links to previous discussions on the topic that I wasn't aware of, so that will be almost certainly be good context.\n\nIf you're into detailed [game-theoretic](https://www.truthcoin.info/blog/all-world-txns/) analyses of how the economics of this stuff works, have a peek. https://www.truthcoin.info/blog/all-world-txns/ 20861 \N 330427 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.41475869204 0 \N \N f 166113585 \N 2 246077245 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436491 2025-03-13 15:32:11.893 2025-03-29 22:39:48.905 Ex Mutiny dev moves to Taproot Wizards for focus in OP_CAT and CatVM >With Mutiny shutting down, I am moving on to join TaprootWizards to help build out CatVM.\n\n>Working on Mutiny has made me come to terms with the current bitcoin scaling limitations, and we're hopefully going to show what's possible in the future. Catvm excites me because it is that it's a radically different model compared to something like lightning. \n\n>I'm still very bullish on lightning, however, there are so many pain points for end users. I've wrote my thoughts on it awhilet ago:\nhttps://stacker.news/items/379225/r/benthecarman\n\n>In the post I mention Fedimint being the interm solution which I still believe to be true, but if in 20 years, we're still using Fedimint, that would be very bad imo. The current way bitcoin is moving is to custodial systems which can compromise the future of bitcoin, we need to try something radically different.\n\n>CatVM is a completely new design to scale bitcoin, with no channel management, no liquidity requirements, no interactivity assumptions, and a bunch of eager users who can’t wait for it to launch. It has a million ways it can go, so I'm excited to be a part of the team that's going to try to make it possible. https://x.com/benthecarman/status/1821581978560241706 2640 \N 436491 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 8.11758362322294 0 \N \N f 195304288 \N 1 148159992 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 14:28:57.732 f \N \N \N 0 0 0 0 1 0 0 424004 2025-03-03 19:15:38.281 2025-03-29 22:39:52.686 \N For the record, I'm not entirely convinced the Minny Fed paper is meant to be an attack on bitcoin. It actually demonstrates one of Bitcoiners' main tenets, which is that Bitcoin's presence can restrain the government's ability to run perpetual deficits.\n\nBut I agree with you that we shouldn't be complacent about bitcoin's incentive structures. Even now, battles are being fought over what types of data should be included in the blockspace, and what can/should be done about it...\n https://example.com/ 18557 423997 423681.423788.423805.423997.424004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.71885003241953 0 \N \N f 150008908 \N 2 201590227 0 f f \N \N \N \N 423681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415104 2025-02-24 14:22:28.314 2025-03-29 22:39:52.687 \N Day 194 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 5646 415098 414755.415076.415098.415104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.595282147378 0 \N \N f 783978674 \N 5 222023271 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451106 2025-03-24 11:53:22.344 2025-03-29 22:39:52.687 \N +100 sats\nHere is a Bitcoin brochure if it helps: https://twitter.com/linkinparkrulz_/status/1543348394181148672\nAlso an introduction: https://anarkio.codeberg.page/bitcoin/\nBoth are open source, so you can adapt or edit them if you want. https://example.com/ 5069 451044 450805.451044.451106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1194881565494 0 \N \N f 859905282 \N 5 213442917 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408069 2025-02-18 14:56:12.684 2025-03-29 22:39:52.679 \N Well I found my way back. Feels good. I gotta get warmed up first : https://stacker.news/items/417342 https://example.com/ 8284 408056 407903.407928.407976.408016.408026.408039.408056.408069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.151828557159 0 \N \N f 232040768 \N 1 55181840 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430898 2025-03-09 13:48:14.563 2025-03-29 22:39:52.679 \N I want more self-custody and most bitcoiners probably want some end result too rather than a specific proposal.\n\nI respect people wanting to prevent scammy bitcoin usage, but any new script feature is going to allow new scams whether they are known beforehand or not. I’d prefer the debate focus on:\n\n1. Miner incentives\n2. Node running incentives\n3. Improving bitcoin as money\n - specifically MoE because most people don’t save and SoV is largely solved\n\nScammers are going to scam regardless. The best fight we can wage against scammers is making bitcoin better money so honest participation on bitcoin starves scammy usage. https://example.com/ 17082 430895 430892.430895.430898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.95090363757227 0 \N \N f 414932584 \N 3 139254250 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443006 2025-03-19 00:13:59.209 2025-03-29 22:39:52.679 \N No. I am trying to get a hold of team management to have someone on for an AMA. https://example.com/ 683 442084 442084.443006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.3273354456557 0 \N \N f 240977064 \N 1 215306819 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 194622 2024-07-04 17:29:30.379 2025-03-29 22:39:52.68 \N Nostr has a problem with aggregating honest reputation without a centralized service keeping track of all users and transactions. It's costless to make a "seller" and give yourself reviews from 1000 "buyers". Trust rings don't really work because you don't know any of the other buyers (and you can't, because you're all purchasing illicit goods). https://example.com/ 15806 194621 194621.194622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7444961198004 0 \N \N f 264391439 \N 2 2890199 0 f f \N \N \N \N 194621 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448810 2025-03-22 22:10:49.098 2025-03-29 22:39:52.68 \N Day 38 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 7659 448778 448591.448778.448810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.443705731835 0 \N \N f 34269120 \N 1 122011719 0 f f \N \N \N \N 448591 \N 0 0 \N \N f \N 2025-03-29 15:29:08.714 f \N \N \N 0 0 0 0 1 0 0 404300 2025-02-15 18:47:30.033 2025-03-29 22:39:52.68 \N ![are-we-winning-darth.jpg](https://m.stacker.news/16105)\n😂😂😂😂😂😂😂😂😂😂 https://example.com/ 18930 404014 404014.404300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0173141473846 0 \N \N f 197858894 \N 1 5903648 0 f f \N \N \N \N 404014 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415134 2025-02-24 14:44:45.046 2025-03-29 22:39:52.68 \N I'm really excited about my Twitch stream tomorrow. It would be a month that I've been streaming bitcoin-only games on Twitch. I hope to inspire other bitcoiners to start streaming bitcoin games on Twitch (or other streaming platforms) to grow the bitcoin ecosystem. \n\nSo one of the things I worked on this weekend was to set up a Discord server where I'll be dropping resources to help other bitcoiners set up their Twitch, promote their channels and talk about bitcoin. \n\nFor now, it feels like a crazy ambitious project so I'm just using it as a means to have fun and play bitcoin games. If this turns into a movement in the bitcoin gaming industry, great. If not, at least I would have a place where I documented my progress.\n\nI'm just going to take things one step at a time. https://example.com/ 18309 415107 414755.415076.415098.415104.415107.415134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.16576029903181 0 \N \N f 408378207 \N 3 152835574 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410368 2025-02-20 13:02:24.202 2025-03-29 22:39:52.68 \N That not everybody is a good person. Although, I still think most of them are good :) https://example.com/ 9107 410355 410311.410355.410368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4768275112851 0 \N \N f 216593262 \N 2 141971704 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435210 2025-03-12 14:30:15.996 2025-03-29 22:39:52.68 \N it's Friday the 13th https://example.com/ 5175 435030 435030.435210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.76390745807331 0 \N \N f 82545509 \N 1 189985627 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 12:20:36.012 f \N \N \N 0 0 0 0 1 0 0 433160 2025-03-10 20:51:24.967 2025-03-29 22:39:52.68 \N This makes me sick.\n\n> For those of us at the high end of the social ladder, ending hunger globally would be a disaster. If there were no hunger in the world, who would plow the fields? Who would harvest our vegetables? Who would work in the rendering plants? Who would clean our toilets? We would have to produce our own food and clean our own toilets. No wonder people at the high end are not rushing to solve the hunger problem. For many of us, hunger is not a problem, but an asset. https://example.com/ 21803 432920 432920.433160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.813967136352254 0 \N \N f 54837951 \N 1 39314316 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434775 2025-03-12 08:23:27.299 2025-03-29 22:39:52.681 \N From the official transcript:\n\nMR JUSTICE MELLOR: Thank you.\n Well, I thank all the parties for their written \n closing and oral arguments, and they've been very \n helpful indeed. They will require me to prepare \n a fairly lengthy written judgment, which will be handed \n down in due course. And for all those who have already \n been hassling my clerk as to when the judgment will be \n ready, the short answer is as follows: it will be ready \n when it's ready and not before.\n However, having considered all the evidence and \n submissions presented to me in this trial, I've reached \n the conclusion that the evidence is overwhelming. \n Therefore, for the reasons which will be explained in \n that written judgment in due course, I will make certain \n declarations which I am satisfied are useful and are \n necessary to do justice between the parties.\n First, that Dr Wright is not the author of \n the Bitcoin White Paper.\n Second, Dr Wright is not the person who adopted or \n operated under the pseudonym Satoshi Nakamoto in \n the period 2008 to 2011.\n Third, Dr Wright is not the person who created \n the Bitcoin System.\n And, fourth, he is not the author of the initial \n versions of the Bitcoin software.\n Any further relief will be dealt with in my written \n judgment. I will extend time for filing any appellant's \n notice until 21 days after the form of order hearing, \n which will be appointed following the hand down of my \n written judgment and I ask the parties to seek to agree \n an order giving effect to what I have just stated.\n So I'm afraid, for any further information, you'll \n to wait for the written judgment. https://example.com/ 19952 434769 434646.434687.434760.434769.434775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6447662095863 0 \N \N f 220069436 \N 1 238714894 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 01:40:55.952 f \N \N \N 0 0 0 0 1 0 0 214296 2024-08-13 12:49:59.199 2025-03-29 22:39:52.681 \N Working on trying to ensure everyone in my circle is self custodying and trying to help people understand the difference between bitcoin and "crypto". https://example.com/ 15119 214244 214244.214296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.04134728241253 0 \N \N f 98088354 \N 1 135508550 0 f f \N \N \N \N 214244 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443371 2025-03-19 09:58:08.74 2025-03-29 22:39:52.682 \N Joined the Monday Meme competition for the first time today! Probably won’t win but the process of creating a meme on imgflip.com and posting it on posting images.org and taking down the markdown URL made me feel that I have learnt so much tonight! Successfully posting my meme here is an accomplishment in itself https://example.com/ 11298 443332 443295.443332.443371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83839721379156 0 \N \N f 531745750 \N 4 116955600 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:23.028 f \N \N \N 0 0 0 0 1 0 0 413903 2025-02-23 14:22:52.291 2025-03-29 22:39:52.682 \N So, I was listening Matt Walker's podcast about sleep and how not sleep well decrease our cognitive skills and kill a healthy way of life. You can't un-hear it and the moment you finished these episodes, nothing will be the same. My favorite one is the one that talks about the nap. \n\nLittle spoiler: yes, taking naps is good but not for all people. Take naps for some people is harmful. Please, [just listen](https://www.sleepdiplomat.com/podcast), there are short episodes (~10 min) and each one is a masterpiece. https://example.com/ 17116 413675 413675.413903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0838707823322 0 \N \N f 590658539 \N 7 66242534 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435405 2025-03-12 16:49:32.68 2025-03-29 22:39:52.684 \N [![NGMI.jpg](https://i.postimg.cc/0NLs562Q/NGMI.jpg)](https://postimg.cc/Y4fVbCFK)\n\nYou guys think that these people will ever be able to save 12 words seed for a wallet? https://example.com/ 699 435404 435314.435355.435404.435405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.246907439426 0 \N \N f 91637488 \N 1 195994594 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:38.705 f \N \N \N 0 0 0 0 1 0 0 428818 2025-03-07 16:09:50.862 2025-03-29 22:39:52.684 \N I wrote a nodejs program to test how many hashes my computer can generate per second and it's about 100,000\n\nwhich means it would take me a full day to generate a single petahash\n\nminers measure their rigs in petahashes *per second.* My laptop can generate 1 petahash *per day.* Which means a 1 petahash asic would be 86400 times faster than my laptop.\n\nAlso, if you can generate 1 petahash per second that's worth about 2 sats per day\n\nWhich means it would take my laptop 86400 days, or 236 years, to generate 2 sats worth of hashes https://example.com/ 16406 428723 428670.428723.428818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6850677446796 0 \N \N f 182471308 \N 1 239431826 0 f f \N \N \N \N 428670 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435135 2025-03-12 13:42:43.041 2025-03-29 22:39:52.685 \N Miner: F2Pool (What a nice piece of luck)\n\nAccording to mempool.space \n\nOverpaid 479867x on fee https://example.com/ 9183 435046 435046.435135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.47551836771765 0 \N \N f 4837031504 \N 36 81409646 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-20 03:04:00.858 f \N \N \N 0 0 0 0 2 0 0 422586 2025-03-02 15:10:03.175 2025-03-29 22:39:52.685 \N See https://stacker.news/items/676985/r/south_korea_ln?commentId=676996.\n\nIs your node on Alby Hub? https://example.com/ 681 422583 422203.422207.422399.422491.422579.422583.422586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2028842882713 0 \N \N f 3130429733 \N 25 175255323 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 449596 2025-03-23 12:50:38.837 2025-03-29 22:39:52.685 \N When you say America you mean the US, I assume. Mexico, Canada, Central and South America would seem to have the same geographic advantages, no?\nAustralia would seem to also have that advantage. https://example.com/ 13599 449585 449515.449585.449596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8317968465585 0 \N \N f 90341162 \N 1 61964430 0 f f \N \N \N \N 449515 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448168 2025-03-22 12:57:04.141 2025-03-29 22:39:52.686 \N I think I've only used it three times.\n\nOne was targeted at you, before I found out you couldn't see it.\nOne was while a few of us in the saloon were trying to figure out what downzapping does look like.\nThe only real one was some stupid post calling everyone racist. That's the exact kind of toxic internet content that I don't want SN to devolve into. https://example.com/ 20811 447892 447892.448168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3167607803326 0 \N \N f 267865593 \N 3 239661622 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 09:09:02.822 f \N \N \N 0 0 0 0 1 0 0 436695 2025-03-13 19:45:44.385 2025-03-29 22:39:52.686 \N No, not in any, not in surveys either https://example.com/ 20133 436690 436683.436690.436695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6533948544909 0 \N \N f 131155440 \N 2 148756069 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 2025-03-20 14:39:12.282 f \N \N \N 0 0 0 0 1 0 0 404624 2025-02-16 02:56:50.376 2025-03-29 22:39:52.686 \N Stockholm Syndrome, literally haha\n\nShould be 0 across the board https://example.com/ 21249 404521 404521.404624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.959646201858 0 \N \N f 30558945 \N 1 218031766 0 f f \N \N \N \N 404521 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433987 2025-03-11 14:52:14.454 2025-03-29 22:39:52.686 \N get rekt noob https://example.com/ 20185 433981 433828.433981.433987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0507122712698 0 \N \N f 135887148 \N 1 137330367 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435939 2025-03-13 05:58:41.909 2025-03-29 22:39:52.68 \N Ok yes far more on Discord and the rest, agreed, and perhaps my response was a little OTT\n\nI wasn't aware that stacker news was exclusively English language though\n\nAnd, respectfully, I don't agree about the 'lack of respect'. Learning a foreign language is difficult, and very time-consuming.\n\nSometimes it's easier for one to put their point across more eloquently in their native tongue. \n\nI'm with @k00b, in that I wouldn't `want anyone to “just go away” because their language is different`. The fact that idiots on Reddit can't handle a foreign language (hurts their brain) shouldn't affect policy in a service such as SN.\n\nEDIT: nothing about English Language in the faq: https://stacker.news/faq\n\nor guide: https://stacker.news/guide\n\nor repo: https://github.com/stackernews/stacker.news/search?q=english\n\n\n\n https://example.com/ 5759 435740 434263.435740.435939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.18657496877768 0 \N \N f 178679032 \N 1 83720001 0 f f \N \N \N \N 434263 \N 0 0 \N \N f \N 2025-03-20 07:04:04.343 f \N \N \N 0 0 0 0 1 0 0 435183 2025-03-12 14:11:33.225 2025-03-29 22:39:52.68 \N Hi Anita.\nFirst of all I really like what you are doing!!\nHow can I take part or support your projects in Africa? I think I can’t support you financially but I’m motivated to help in any other way. Is there anything that comes into your mind? https://example.com/ 12935 435154 435154.435183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8334776617221 0 \N \N f 434737447 \N 3 202400269 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 10:32:35.228 f \N \N \N 0 0 0 0 2 0 0 436900 2025-03-14 02:00:29.969 2025-03-29 22:39:52.68 \N I learned how to make a [chrome extension that I call Bitcoin Pulse](https://youtu.be/LEn6z2sWg5A). It shows block height, sats per dollar, and dollars per bitcoin at the click of a button. It also allows you to look at block info and clarkmoody's dashboard. It's currently being reviewed by the chrome webstore but should be available once that's done https://example.com/ 19527 436829 436823.436829.436900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.55272828948687 0 \N \N f 696210862 \N 4 171826972 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435264 2025-03-12 15:07:12.947 2025-03-29 22:39:52.68 \N Taproot enables new possibilities without sacrificing anything, it just takes time to get there. Check the Taproot block for an alien clue. https://example.com/ 4345 435261 435261.435264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.70317006402028 0 \N \N f 159922191 \N 1 221518386 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:35.152 f \N \N \N 0 0 0 0 1 0 0 407951 2025-02-18 13:44:48.38 2025-03-29 22:39:52.68 \N I think Broken Money is the better read at any stage of falling down the rabbit hole.\n\nI was turned off by Saifedean Ammous' lack of objectivity at times but what he wrote still made sense to me so fortunately it didn't turn me off bitcoiners completely. It was my first book about bitcoin. \n\nIn contrast, Lyn Alden does not have to resort to talking down and losing objectivity to get her point across. Her explanations and examples are good enough.\n\nLyn is like the voice of reason in this space.\n\nNow I wonder who argued for which book. I would be willing to bet 10k sats that @elvismercury agrees with me haha https://example.com/ 18473 407657 407657.407951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3182611571634 0 \N \N f 167404977 \N 2 78242035 0 f f \N \N \N \N 407657 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413352 2025-02-23 05:28:15.006 2025-03-29 22:39:52.686 \N Much less compared to last year. I got very busy with work and also moved mostly to using SN. I find that nostr lacks engagement, especially if you don't have a large following or if you're not very active. SN is much better when it comes to engagement. Small and moderately active accounts like mine still get zaps/replies to my posts and comments.\n\nMaybe when it comes to social networks, centralization just have so many more edges that it's very difficult for decentralized social networks to compete. https://example.com/ 9331 413219 413219.413352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.78851184126243 0 \N \N f 67227311 \N 1 157073683 0 f f \N \N \N \N 413219 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410097 2025-02-20 08:50:08.934 2025-03-29 22:39:52.686 \N > Its just weird to me that they wouldn't use the most economically incentivized address type.\n\nWhen you're holding $500 million spending even $500 on transaction fees doesn't matter. https://example.com/ 14688 410012 410012.410097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8987201727767 0 \N \N f 277710108 \N 2 165285631 0 f f \N \N \N \N 410012 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434366 2025-03-11 20:38:44.067 2025-03-29 22:39:52.686 \N Still chipping through *Up in the Old Hotel* by Joseph Mitchell, but also reading *The Mandibles* by Lionel Shriver as part of a bitcoiner book club https://example.com/ 3213 434278 434278.434366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.01725049717315 0 \N \N f 108161746 \N 1 197845752 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 18:59:48.031 f \N \N \N 0 0 0 0 1 0 0 431085 2025-03-09 15:21:03.209 2025-03-29 22:39:52.686 \N Hopefully I will\n\n_prepares new identity_ https://example.com/ 18188 430351 430109.430351.431085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4910683618613 0 \N \N f 240370975 \N 2 83433635 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444382 2025-03-19 20:41:13.614 2025-03-29 22:39:52.68 \N I am working on datapeek ( https://datum.alwaysdata.net ) a collaborative tool to add data to online discussions. \n\nI am hacking on integrating it with lightning network. But I am held back by the thought of limiting its appeal for non crypto users. https://example.com/ 19663 443836 443836.444382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7315204692792 0 \N \N f 31383762 \N 1 51614096 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458156 2025-03-29 02:27:58.288 2025-03-29 22:39:52.68 \N Hopefully Lightning and Rollups will make Ethereum obsolete so we can get away from the chaos of the bigger crypto market. https://example.com/ 20062 458150 457126.458150.458156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4648278916525 0 \N \N f 489346581 \N 3 141337334 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422588 2025-03-02 15:10:40.491 2025-03-29 22:39:52.68 \N Improving a private lightning address server so that it's ready for release. https://example.com/ 20754 422581 422481.422581.422588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.92366953840389 0 \N \N f 40382114 \N 1 207614250 0 f f \N \N \N \N 422481 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435244 2025-03-12 14:50:31.539 2025-03-29 22:39:52.68 \N Building audit solutions for Lightning - [Audit your Lightning node](https://app.layers.cloud/Audit) and get a list your network activity with channel opens/closes and their tx details and capacity - all exportable via CSV for your records. https://example.com/ 21021 435133 435115.435133.435244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1776058509141 0 \N \N f 551089267 \N 4 32477200 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 2025-03-19 08:10:41.343 f \N \N \N 0 0 0 0 1 0 0 441226 2025-03-17 21:05:19.867 2025-03-29 22:39:52.68 \N Went to Lurray last week. There's only so much you can learn from statistics and maps. First thing I noticed about the local businesses was how the receipts have two prices on them. The price you pay if you pay with card and the price you pay if you pay with cash. You better believe I paid with cash.\n\nIf it were anyone else, this would be difficult. The "bar"/restaurant I went to (the second of the 2 businesses I had the time for that day) was filled with out-of-town tourist customers. Without tourists, the town is actually pretty empty. This means it's difficult to get to know any actual locals since they don't really have a social gathering place.\n\nExcept that of course they do. Like I said, if this were anyone else, this might be difficult, but having been raised in a small town I know the way people to get know each other is from church. So, I'm going to church this weekend! https://example.com/ 17316 441215 440692.441011.441130.441211.441215.441226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8112896274837 0 \N \N f 565065071 \N 3 32164572 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434829 2025-03-12 09:05:54.069 2025-03-29 22:39:52.681 \N Thanks KR! \n\nWe notice that projects that do well are those that engage constantly with their communities, have awesome rewards and that make bitcoiners feel part of the community!\n\nAnita Posch is definitely at the top with over 250 individual contributors, but Bitcoin Racing also did incredibly well by allowing the community to add stickers to the Bitcoin Racing Cars! \n\nImportantly, the surprise factor is key: what new, crazy and interesting ideas do you want to see happen in the world? https://example.com/ 10818 434818 434795.434796.434804.434818.434829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6054847809397 0 \N \N f 52300797 \N 1 238328077 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:40:03.888 f \N \N \N 0 0 0 0 1 0 0 423195 2025-03-03 04:55:29.904 2025-03-29 22:39:52.681 \N I get this is a theoretical but isn't it the right answer that you NEVER have to accept a change?\n\nYou can just keep running the same node and go with whomever else agrees with you and runs that same code. \n\nAnd ideally (for me, and those running my same code) that's still the longest chain with the most people and value. https://example.com/ 5752 417471 417471.423195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9554542144737 0 \N \N f 55661846 \N 1 92058182 0 f f \N \N \N \N 417471 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410284 2025-02-20 12:14:38.195 2025-03-29 22:39:52.681 \N This could be solved by raising the cost of posting. Not viable at the moment probably because SN is still kind of a PoC (not in terms of the tech stack and implementation, but in the sense that the concept of value-for-value on the interwebs is cutting edge) and scaring away users would slow momentum significantly, but I do think that down the line the cost of getting my attention should be more than 1 sat. Or maybe this can be implemented in custom feeds - have people "bid" by deciding how much they pay to post, and people can set a filter to only show posts that put down more than x sats, or have been zapped more than y sats, etc. What do you think @k00b? https://example.com/ 5069 410184 410184.410284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0072151520309 0 \N \N f 148303105 \N 1 18382684 0 f f \N \N \N \N 410184 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423118 2025-03-03 01:20:47.662 2025-03-29 22:39:52.682 \N Imo, multi-sig setups will likely be the standard for enterprises, institutions, large merchants, etc which are using either L1/L2, because they have a need for increased security and also to segregate duties so there's not too much power in the hands of one individual.\n\nWhether or not multi-sig becomes widespread among individuals I think really depends on the UX that can be built around it. Right now, multi-sig for L1 is daunting for many users, especially the less tech-savvy. If the difficulty can be abstracted away easily, without sacrificing too much in security or becoming too expensive, I could see it catching on more widely. https://example.com/ 623 422661 422628.422661.423118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20094657948179 0 \N \N f 74986574 \N 1 84025538 0 f f \N \N \N \N 422628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413595 2025-02-23 11:25:43.745 2025-03-29 22:39:52.682 \N Agreed. The crucial thing is that you are tying yourself to the mast, as it were, and introducing actual difficulties that prevent you yourself from accessing your stash in a manner that is so friction-full that it makes villainy too expensive / too difficult to bother with, given the other factors.\n\nIf this is a credible system -- meaning, it's the normal state of affairs -- then people don't bother trying to casually compromise it, and only _really_ high-value targets get targeted. If it's not normative, then normal people become attractive honeypots. That's why the norms around this stuff matter. https://example.com/ 21090 413592 413523.413534.413592.413595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.36655287810232 0 \N \N f 656735139 \N 5 115414765 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443750 2025-03-19 13:55:58.242 2025-03-29 22:39:52.683 \N Like GR, I have also come to learn the zapping habits of a few stackers. But I think it’s nice to remain anonymous. If you want to send a stacker sats, you can do it via their lightning address and include a message https://example.com/ 19888 443577 443577.443750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2573983413373 0 \N \N f 616100813 \N 3 201785774 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 07:18:34.3 f \N \N \N 0 0 0 0 1 0 0 434787 2025-03-12 08:38:55.005 2025-03-29 22:39:52.683 \N The only social media I use is Nostr and Stacker, I dont watch the news. I'm only focused on trying to be more productive, learning more about bitcoin and building. \n\nCurate your environment freaks https://example.com/ 9705 434642 434642.434787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.84272818416 0 \N \N f 131024129 \N 1 22854270 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 03:31:20.508 f \N \N \N 0 0 0 0 1 0 0 449806 2025-03-23 14:48:32.041 2025-03-29 22:39:52.684 \N I don't want to dump more work on you, but when you're done with this experiment I hope you keep writing these posts everyday as a sort of blog. Your writing style is addicting. Kind of a more friendly Popescu. I read it to see what's going on in that head of yours more than for this experiment. I bet I'm not the only one. https://example.com/ 15148 449630 449601.449630.449806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4718620352666 0 \N \N f 135899676 \N 1 11069768 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 452151 2025-03-25 01:17:28.726 2025-03-29 22:39:52.684 \N Lol 🤣 you're definitely not hurting me! I love criticism because I helps me improve and develop https://example.com/ 6573 452063 452063.452151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4529131261063 0 \N \N f 22595744 \N 1 87657409 0 f f \N \N \N \N 452063 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456073 2025-03-27 13:09:04.485 2025-03-29 22:39:52.685 \N First they came for your smartphone, then they wanted to get their smarts everywhere with IoT.\n\nFortunately most devices can be used without an account still today, and we have Linux and BSD that allow you to run your own OS in your own hardware. But that might change in the future, given the design of the new security chips in new computers.\n\nAnd for mobile we have GrapheneOS, a great smartphone OS without any big tech into it. It's basically what Android should be. https://example.com/ 10060 455994 455551.455599.455824.455889.455904.455911.455923.455952.455962.455994.456073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2668301104381 0 \N \N f 393858648 \N 2 73825118 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455855 2025-03-27 11:19:50.124 2025-03-29 22:39:52.685 \N Talking about the role of greed in economics is about as illuminating as talking about the role of gravity in plane crashes. https://example.com/ 3392 455521 454221.454403.455521.455855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1513909541348 0 \N \N f 706131627 \N 5 245089895 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456086 2025-03-27 13:14:30.283 2025-03-29 22:39:52.68 \N The goal of the LSP Spec is to create an open system and avoid lock-in. Hopefully this plays out. With that said, capital intensive markets tend to be more centralized than non-capital-intensive ones. \n\nOne factor that might offset some of this tendency to centralize is that there are diminishing returns to increasingly massive LN channels. A 10BTC LN channel isn't all that useful if the average payment size is 10k sats. Individuals need many channels in order to reach the full network, which means that smaller players can enter the LSP market and sell small to medium sized channels. https://example.com/ 10094 456073 455551.455599.455824.455889.455904.455911.455923.455952.455962.455994.456073.456086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.818021224767 0 \N \N f 205794693 \N 1 188063955 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447175 2025-03-21 17:00:15.316 2025-03-29 22:39:52.68 \N What I look for in Bitcoin scalability layers is:\n\nRug pull risk\nRehypothecation risk\nAttack vectors\n\nThen the very last thing I look at is convenience. Why? Because I firmly believe convenience can be scripted out even if the spec seems inconvenient at first glace.\n\nRight now, lightning on top of Ark seems to be the way to go. https://example.com/ 21218 446725 446456.446725.447175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7969898113994 0 \N \N f 66106463 \N 1 243856054 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 10:26:27.659 f \N \N \N 0 0 0 0 1 0 0 436329 2025-03-13 13:36:04.816 2025-03-29 22:39:52.681 \N Hey there, how can I be of service? I'm deep in the muck of my next exposé, but I'm happy to open up for you for a bit. https://example.com/ 776 436273 436273.436329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.09924121803574 0 \N \N f 136714898 \N 1 3142812 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 06:55:59.347 f \N \N \N 0 0 0 0 1 0 0 434902 2025-03-12 10:26:36.343 2025-03-29 22:39:52.681 \N Looks like they need to move to a new custodian again. \n\nFidelity and Blackrock licking their chops. \n\nSigh. https://example.com/ 15556 434795 434795.434902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8431103531215 0 \N \N f 830902129 \N 5 11550838 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 18:19:04.537 f \N \N \N 0 0 0 0 5 0 0 420585 2025-02-28 20:11:57.279 2025-03-29 22:39:52.685 \N Day 297 of snailposting everyday 'til BTC hits $100k.\n\n...and 97 push-ups. (20 - 20 - 20 - 20 - 17)\n\n__@_'-' https://example.com/ 1814 420577 420577.420585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5757999229146 0 \N \N f 58631592 \N 1 139226980 0 f f \N \N \N \N 420577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434960 2025-03-12 11:18:10.047 2025-03-29 22:39:52.685 \N I've always wondered wtf this term meant. This is a great article about these issues. And if you think it's a boring tech issue:\n\n> Bitcoin, as a system and community, largely seeks to maximize censorship resistance through decentralized transaction selection over any other goals. Sadly, today, bitcoin’s transaction selection is also highly centralized in the form of pools. Luckily, there’s no strong financial incentive for this, only historical technical reasons. While this allows us to massively re-decentralize bitcoin with only technical tweaks to the mining software stack, any financial disincentives to adopting such technology would absolutely destroy bitcoin’s long-term censorship resistance. So much so, that I’d argue that if we end up in the same place as ethereum is today, we should simply give up on bitcoin’s censorship resistance axiom as we simply will not achieve it in any reasonable way. https://example.com/ 897 434957 434957.434960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7209173045104 0 \N \N f 218745996 \N 1 86107729 0 f f \N \N \N \N 434957 \N 0 0 \N \N f \N 2025-03-19 06:49:24.942 f \N \N \N 0 0 0 0 1 0 0 401183 2025-02-12 19:17:43.638 2025-03-29 22:39:52.686 \N ![I Have A Permit 15122023011421.jpg](https://m.stacker.news/8572) https://example.com/ 20751 400943 400943.401183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5319614549286 0 \N \N f 699364678 \N 5 154772331 0 f f \N \N \N \N 400943 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435365 2025-03-12 16:16:43.781 2025-03-29 22:39:52.686 \N I applaud the designs, but this seems a bit outrageous to me. Seems like their target audience is HNWI's that think spending more money == good.\n\nMultisig device that is $1000 with a multisig software solution that costs $200 a month. Targetting the Apple ecosystem solely. \n\nScreenless hardware device so has a lot of the security trade off's that Square's affordable devices have (I think they are targetting $35 or less). I don't even see how you would interact with it. No screen, no battery, NFC, and they say no fear of loss or theft? Seems to be leveraging Apple's multi device ecosystem a lot, which is kind of cool. But then what's the point of the hardware device? Just a $1000 fashion device? \n\nSome interesting ideas here but pointless expensive hardware device and in general this is probably just a marketing page to raise money to build the magic they're selling. https://example.com/ 15544 435046 435046.435365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.550401416089 0 \N \N f 277616770 \N 2 170550045 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 17:13:41.982 f \N \N \N 0 0 0 0 1 0 0 423040 2025-03-02 22:31:49.14 2025-03-29 22:39:52.687 \N It might confuse the bartender. I'll see. \n![bar](https://i.postimg.cc/6Q29PN5p/IMG-20231010-175430-689.jpg) https://example.com/ 1495 422628 422628.423040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2493643135494 0 \N \N f 5512965 \N 1 37298990 0 f f \N \N \N \N 422628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443462 2025-03-19 11:18:54.887 2025-03-29 22:39:48.905 bitcoin adoption no one is talking about while all eyes are on a third world country where adoption is going down\n\none of the richest and most advanced country, switzerland is adopting bitcoin at an accelerated pace:\n\neveryone can buy bitcoin at one of the bitcoin atms all across the country.\n\neveryone can open an account at the fully licensed bank swissquote and buy bitcoin. it can be downloaded into your private wallet.\n\nmany other companies in switzerland allow to buy bitcoin and download it to your own wallet. anyone can use any of the international services too.\n\nalso spending bitcoin is easy in switzerland: worldline put thousands of terminals into shops where you can pay in bitcoin like with a debit or credit card since 2019:\nhttps://www.six-payment-services.com/en/shared/news/2021/crypto.html\n\nmany vendors offer the choice of paying directly with any app.\n\nthe leader in bitcoin adoption is the city of lugano: the idea was to attract bitcoin related jobs. 100 million swiss francs were put aside in order to provide financial incentives for bitcoin entrepreneurs. \nthe goal for this year is to have 2500 businesses accepting bitcoin. in the inner city it is already more than 90%. mcdonald's in lugano is accepting bitcoin.\n\nkrypto valley in canton zug was founded in 2016 by a non-profit organization. meanwhile the successful initiative comprises more than 1000 companies employing 6000 people. it has become a very strong factor for the local economy.\n\nchiasso and other cities inside and outside of switzerland followed the successful initiatives.\n\nwhat does this show? bitcoin needs educated people who value freedom and self-determination in order to be successful.\n\nbitcoin is smart and honest. it needs smart people and honest people\n\n\n \N 15732 \N 443462 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 2.73740279656725 0 \N \N f 565140050 \N 4 63084916 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 446872 2025-03-21 14:08:58.938 2025-03-29 22:39:52.681 \N > With drivechains miners no longer have the incentive to mine the next block, there is a greater incentive to mine steal from drivechains.\n\nI think they can only take the drivechain funds by mining a block containing a transaction that moves those funds into their own pockets. So they still have to mine the next block. Do you mean they have no incentive to mine the next *sidechain* block? https://example.com/ 19117 446863 446681.446863.446872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9388787424058 0 \N \N f 204450501 \N 2 178975552 0 f f \N \N \N \N 446681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434718 2025-03-12 07:29:37.386 2025-03-29 22:39:52.681 \N Cool new logo and two classic posts of course. https://example.com/ 20892 434646 434646.434718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.891072171145 0 \N \N f 282329268 \N 2 4441573 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 01:39:01.016 f \N \N \N 0 0 0 0 2 0 0 436097 2025-03-13 10:15:20.551 2025-03-29 22:39:52.681 \N Lightning Channels\nHashrate from reactor.xyz\n https://example.com/ 19263 436028 436028.436097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3165379942376 0 \N \N f 392679005 \N 2 64832406 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 03:52:40.996 f \N \N \N 0 0 0 0 1 0 0 403238 2025-02-14 15:23:40.114 2025-03-29 22:39:48.905 [Daily puzzle] Probability of ending at 1 Fair warning, this is probably a hard problem compared to other ones I have shared here before. \nLet's consider this a test to see if there is interest in such problems...\n\nConsider a number $x$ between 0 and 1, and the following game:\n\nAt each step, define $d$ as:\n$$\nd = \\min(\\text{dist}(x, 0), \\text{dist}(x, 1))\n$$\nYou then randomly move $x$ to the left or right by a distance $d$. After each move, update the value of $d$ accordingly, and continue until $x$ reaches either 0 or 1.\n\nTo clarify:\n- At each step, you have a 50\\% chance of moving $x$ to the nearest endpoint (either 0 or 1).\n- You also have a 50\\% chance of moving $x$ away from the nearest endpoint.\n\nThe question is: __in terms of $x$, what is the probability that the game ends at 1?__\n\nI'll post a hint tomorrow in case I don't see any progress in a reasonable amount of time.\n\nPrevious iteration: https://stacker.news/items/712599 \N 9450 \N 403238 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 22.4174382848707 0 \N \N f 245012454 \N 2 152434271 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434708 2025-03-12 07:19:07.04 2025-03-29 22:39:52.681 \N Started a new job! 1st new job in 20 years! https://example.com/ 15213 434420 433828.434420.434708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3664845440322 0 \N \N f 141321694 \N 1 115311667 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-19 12:20:30.35 f \N \N \N 0 0 0 0 1 0 0 455714 2025-03-27 09:20:47.788 2025-03-29 22:39:52.681 \N ![](https://m.stacker.news/62174) https://example.com/ 11798 455682 455649.455650.455665.455682.455714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20410339989614 0 \N \N f 314100606 \N 2 195951862 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421855 2025-03-02 03:38:58.848 2025-03-29 22:39:52.682 \N No. A normie will be confused by channel opening fees, because less money arrives than what was send. their immediate reaction is either "scam" or "wow, is this expensive. Paypal/CashApp/et al cost me nothing" etc etc\n\nWe know why the fee occurs and why it's necessary, but when talking about "making it invisible" then it's those little things that throw normies off big time.\n\nHosted channels in a proper wallet would probably the best option for seamless newbie onboarding, and still offer reasonable privacy https://example.com/ 14376 421840 421720.421840.421855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5211439825843 0 \N \N f 1052807838 \N 7 189878795 0 f f \N \N \N \N 421720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423736 2025-03-03 15:06:16.798 2025-03-29 22:39:52.681 \N Day 484 of snailposting everyday 'til BTC hits $100k.\n\n...and day 48 of trimmin' the fat (93.1 | 80.0 | 4.5).\n\n__@_'-' https://example.com/ 6573 423704 423667.423687.423704.423736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00940014501011 0 \N \N f 72267667 \N 1 60298628 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 320368 2024-12-06 05:13:24.617 2025-03-29 22:39:52.681 \N Leading the flock: 13 days **~(o)>** https://example.com/ 19863 320343 320187.320300.320332.320343.320368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8381008926136 0 \N \N f 198790555 \N 1 133372162 0 f f \N \N \N \N 320187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437356 2025-03-14 13:07:06.145 2025-03-29 22:39:52.682 \N The truth is that Keynes was onto something, that the hegemony's fiat can inflate indefinitely so long as it's slow enough to "boil the frog" so to speak. As it states in the declaration of independence:\n> all experience hath shewn, that mankind are more disposed to suffer, while evils are sufferable, than to right themselves by abolishing the forms to which they are accustomed\n\nKeynes used this statement to it's most perverse ends, and developed a mathematical model under which the level of evil can be measured and scientifically perpetuated.\n\nBut to what end? We may look to a misattributed, yet prophetic Jefferson quotation: \n> If the American people ever allow private banks to control the issue of their currency, first by inflation, then by deflation, the banks and corporations that will grow up around them will deprive the people of all property until their children wake up homeless on the continent their Fathers conquered.... I believe that banking institutions are more dangerous to our liberties than standing armies.... The issuing power should be taken from the banks and restored to the people, to whom it properly belongs.\n\nWe see this with Gates and BlackRock today, and throughout the housing 2008 crisis. Banks print currency, prices rise, businesses fail, people lose their jobs, people lose their houses and banks own all the property.\nToday we are in the "businesses fail" phase of this stack of dominos. Best to pay off your loans today before you can't afford to, but don't forget to stack.\n https://example.com/ 1273 437337 437044.437337.437356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4266481891226 0 \N \N f 217637564 \N 2 234068991 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436337 2025-03-13 13:40:43.365 2025-03-29 22:39:52.682 \N i am building the stacker.news app during my part time.. https://example.com/ 13327 435767 435610.435767.436337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8274756900941 0 \N \N f 93907316 \N 1 94802391 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 2025-03-20 09:13:12.786 f \N \N \N 0 0 0 0 1 0 0 422301 2025-03-02 11:19:26.517 2025-03-29 22:39:52.681 \N https://imgprxy.stacker.news/rbnhYj9nxkY4VzhwgN5AhkFA5M5cAPeKUzKjYttApLQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYS50ZW5vci5jb20veGZmNU5KOHZRT3dBQUFBZC9jb3dib3ktc2hvb3RpbmcuZ2lm https://example.com/ 1609 421194 421082.421194.422301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.56475242437944 0 \N \N f 215207279 \N 1 21837023 0 f f \N \N \N \N 421082 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436031 2025-03-13 08:50:53.081 2025-03-29 22:39:52.682 \N Every fiat job i've ever had somewhat goes against the ethos. This was literally the best job I could get at the time, and have alot of respect for property rights.\n\nMy wife came home with a rabbit one day.....and the rest is history\n\n0 fiat might be ineffective, not sure. Doing it for fun. Sold my car and got a part time job to boost my income and to ensure I have enough of a float to take care of any issues that may arise. \n\nSix Channels 400k liquidity..... Looks like I routed another payment couple days ago...not quite sure what I'm doing, but it looks like progress :) https://example.com/ 647 436029 436028.436029.436031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.67088862330455 0 \N \N f 891634281 \N 11 221938420 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 02:53:09.777 f \N \N \N 0 0 0 0 1 0 0 444247 2025-03-19 18:31:26.782 2025-03-29 22:39:52.682 \N Unfortunately I use the crypto.com visa card from my shitcoining days. I also use muun and the bitcoin company for things like Uber and Marshalls. I pay my bills with the Visa , and If I need to head to the store, I'll check if the store has a gift card, if not I'll send to the crypto card. I'm one of those plebs desperately waiting for the Strike Debit Card. As we all wait for merchants to accept lightning https://example.com/ 13169 444168 444168.444247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.2294803653305 0 \N \N f 122040489 \N 1 47055638 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 418438 2025-02-27 04:19:08.629 2025-03-29 22:39:48.905 Base58⛓️🔓 Launches Geyser Fund to Build 50 LARP gamesets \N https://geyser.fund/project/base58sworldfamousbitcoinlarp 21805 \N 418438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1527453950626 0 \N \N f 166330210 \N 1 135553959 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 429517 2025-03-08 11:32:30.309 2025-03-29 22:39:48.905 Daily ~Devs Hangout Hey Devs and Hackers! It's time for your daily rendezvous at the Daily Devs Hangout. 🛠️🔗\n\nPull up your ergonomic chair in our virtual realm and share a slice of your day. From triumphs over complex code, head-scratching bugs that make you wonder why you started coding in the first place - we're all here for it. 🐞💻\n\nCracked a tough algorithm? Encountered a Bitcoin brain-teaser? Or perhaps you've got a piece of sage advice that could save a fellow dev's sanity? This is the place to spill.\n \N 8648 \N 429517 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.8690331869546 0 \N \N f 73731196 \N 2 89536914 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 456528 2025-03-27 16:47:38.9 2025-03-29 22:39:48.906 MONEY CLASS OF THE DAY: Fed Independence and Can Trump Really Fire Powell? Continuing this lovely little series (https://stacker.news/items/733580, https://stacker.news/items/752441) after a little, um, political/electoral hiccup (https://stacker.news/items/757365) —everyone's attention was elsewhere. \n\n...but maybe we can marry the two themes, politics + monetary economics = love. \n\n---\nIn the Fed press conference yesterday, Chairman Powell was asked whether he’d step aside if Trump asked/demanded he did.\n\n“No.”\n\n…followed by an awkward silence. After a follow-up question he clarified that it was “not permitted under the law.”\n\nhttps://www.youtube.com/watch?v=wdqmoSrve-k&ab_channel=BloombergQuicktake\n\nPowell seemed pretty annoyed. He is usually much more relaxed and open even to stupid journalist questions. Here he was unusually direct, short, and I even sensed a tinge of frustration and defiance. (That’s probably why every outlet from CNN to BBC in addition to the financial outlets picked up on it and reported it broadly.)\n\nLook, I’m a money guy—I have no knowledge of law and can’t speak to the legal options for Trump to somehow get rid of Powell. My understanding is that he **probably can’t fire Powell or oust him from the Federal Reserve Board**. Perhaps, maybe, there’s a way to demote him, BUT, since there are no vacancies on the board for a few more years, Trump would have to nominate a chair from one of the current board members—achieving the sum total of nothing in terms of influence over Fed decisions.\n\nThese ideas have been circulating for a while. WSJ reported in April [^1]: \n> “The group also contends that Trump, if he returns to the White House, would have the authority to oust Jerome Powell as Fed chair before his four-year term ends in 2026, the people familiar with the matter said, though Powell would likely remain on the Fed’s board of governors.“\n\nSo, WTH is Fed "independence"?\n\nSimply put, it’s the idea of checks-and-balances and insulating monetary decisions from executive/legislative ones.\n\nAll that independence means is there are no **formal** levers the president can pull to have the Fed make different policy decisions. For all the criticism we may levy at the Fed and its existence, a monetary spigot directly controlled by the executive is worse. (Google “political business cycle,” but I wager most Stackers have a pretty good idea of what this entails in terms of short-term juicing up an economy before an election [^2])\n\nPractically, Fed independence is enshrined by:\n\n- not having a budget from Congress (Fed finances itself from seigniorage, a fancy word for the profits from money printing [^3])\n- its board members and chairman having long, fixed-length appointments (Powell’s chairmanship ends in 2026)\n- Importantly, president _can’t just fire_ such a member.\n\nWhat independence _doesn’t mean_ is that the monetary and fiscal/executive powers never agree, never address the same realities, never react to one another, are never on a call or in a meeting. Those things are inevitable. The Fed chair also routinely reports to Congress twice a year and gets barraged questions from Representatives in the House. \n\nIn Bitcoin circles, Fed/Treasury get a lot of slack for “faux independence.” Now, while the Fed isn’t explicitly operating on Treasury orders or sucking up to the president, if two people make choices independently of one another but are exposed to the **same information** and, more importantly, a similar set of **values or worldview**, is it so strange that they come to similar conclusions?\n\nNow, if we move past “independence” narrowly—can Presidents lean on Fed chairs, pester them in public or contact them in private to make their sentiments known? Indeed. Many presidents have done so, not least the very same Trump on the very same Powell in 2017 and 2018. (Powell didn’t budge back then, either, so I imagine he’s a little tired of this prospective déjà vu.)\n\nPrecedent? Plenty. \n\nIn 1951, President Truman _kind of_ fired the sitting Fed chair, telling him in no uncertain terms that his services weren’t “satisfactory” [^4]. Instead of resisting, which Thomas McCabe legally probably could have done, he resigned.\n\nAnother well-known Fed independence lore is LBJ in the 1960s, who had the then-Chair of the Fed, William McChesney Martin, flown down to his Texas ranch and lambasted about the Fed’s too-hawkish stance—and apparently physically assaulted him. Changed the policy outcomes? Maybe a little.\n\nIt’s hard to imagine Powell acquiescing to something similar, changing policymaking on soft threats or voluntarily stepping aside from loud Trumpian bullying. ESPECIALLY since **we’ve already been through one round of that,** when Trump went after Powell publicly to no or little effect.\n\n---\nTl;dr: Under current monetary regimes, Fed independence is pretty important, and Trump probably doesn’t have a way to make a dent in that.\n\n\nThat's today's little money lesson.\nPeace,\nJ\n\n[^1]: https://www.wsj.com/economy/central-banking/trump-allies-federal-reserve-independence-54423c2f\n[^2]: https://www.britannica.com/money/political-business-cycle\n[^3]: https://www.sciencedirect.com/science/article/pii/S0165176522003548\n[^4]: https://www.rstreet.org/commentary/bankthink-fed-independence-is-a-slippery-slope/ \N 15282 \N 456528 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 14.765202846773 0 \N \N f 127624380 \N 1 53291727 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450287 2025-03-23 20:47:39.085 2025-03-29 22:39:48.906 Infocracy is working - Democracy No Last weekend, I was amazed of how the debates were taken in the past. More of this, I was reading the Lincoln-Douglas debate about slavery mostly. Imagine being in one of those debates where each one spoke for ~2.5 hours and people gathered all the concepts about that, being documented as we know so far is evidence enough to state that people listened each other.\n\n![](https://m.stacker.news/33693)\n\n### No more books \n\nThe main node of democracy is the book, not one book but books, about everything. People these days don't read anymore, we're fewer readers, people prefer their 1-minute-resume of news with his favorite influencer. In the modern era, democracy didn't upgrade well because technology is faster, algorithms now close each other with their political preferences. We don't talk about anything, we *share* each other our visions just for ensure that we believe the right choice. \n\nThe ideas in other days borned from creativity. They stopped working, bored themselfs and then..a new fresh idea. In those days, when you had a new *dangerous idea*, the state will come for you and your idea. Everything is censored and our ancestor had to fight in order to gain some terrain in human rights. Now? Politics confuse the free speech with speech that's free..of everything. Democracy gave them the power and will to say something with no danger of being censored, today the censorship comes in different ways: consumer protection, macroeconomic BS to balance the economy and my favorite one: speak.\n\nMost people just talk and create nonsense in social media. Since Facebook, X, Reddit, Snapchat and other social media posts need you to create something, they're on the mission of telling you: *what's happening?*, *tell something...* and other ads; they don't care about freedom, that's blatantly BS, they need to sell ads and how can they sell if you're not talking? The speech is a product, you words are keywords in order to place this new thing that's good for you.\n\n### The politic is the product\n\nThe political speech right now has a new brand: political marketing. See the difference? The objective of marketing [according to dictionary](https://www.britannica.com/money/marketing) is *individuals and groups obtain what they need and want by exchanging products and services with other parties*. And what's wrong to obtain what I want? Politics is talk with people you disagree, mostly you don't get what you want which should be normal, should be fine but we don't do that anymore because algorithms tought us to create content that won't offend anything or anyone. Don't get me wrong, I'm not telling you to tell everyone to offend. Otherwise, I encourage people to read the other part and try to understand from their point of view and offer alternatives with quality content, today the political debate ends with ad hominem attacks and communities reinforcing their visions without even consider if their ideas are wrong.\n\nOne reason I find Stacker News as a way to protect free speech is because authors can earn money for their content. And yes, people can come, disagree with what they're reading but in order to put your perspective, there's economic motivation of state something rational. This is why most users here don't like shitcoins and altcoins. These kind of shitcoinery don't attach with this place because here, your words have consequences.\n\nPolitical instrumentation of bitcoin is normal. As a matter of fact, the whole internet is a political state. I'm not talking about your political-party-party bs that you watch in your deceased-state-supported TV station, I'm talking about real fighters, our community. They recently tried to censor Samourai for writing code through some money-laundering-scheme. And they can't, Ginger Wallet is the proof that our community will fight every inch of illogical prosecution. \n\nI can go further but my main message to you is: fren, remember you're not a democracy anymore, social media companies and their grandparents (crap TV and radio shows) killed that long time ago. Now, where data is oil, for them you're just a tiny excell cell, a drop in the ocean. This is the infocracy, this enemy is fought with knowledge, real knowledge that come from books and forums where think is the rule, not the optionality. Social medias companies put the *what do you think?* in the end of each post just for the numbers, they want to sell that people put words in their news. They don't listen, they don't see you.\n\n### Stacker News against infocracy\n\nStacker News is the antidote (I hope) against that marketing instrumentation. Here you can post share your agreement/disagreement and these words will have consequences. It's not free (accountability) to say stupid things but it's free (speech) to write. Keep writing folks, we need more signals and less noise.\n\n**Make long format great again!**\n\n \N 20059 \N 450287 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.3701750931721 0 \N \N f 169703550 \N 1 131664928 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442469 2025-03-18 15:21:42.832 2025-03-29 22:39:52.682 \N Ah, interesting. I already knew about "Mastering Ethereum" but I don't see creating a book about Ethereum and explaining how it works "shitcoining". Are we no longer allowed to understand the opposition?\n\nRegarding "blatantly racist stuff" I only found the following tweet:\n\n> Fantastic recommendations for podcasts. I think we've covered almost ALL the white male podcasters I should visit. \n> \n> How about some other shows? \n> \n> Not American, not investment/finance, not men, not white. I can't change me (I'm many of the above) but we can change the other side!\n\n-- https://twitter.com/aantonop/status/1202010211894091776\n\nThat does not sound like "blatantly racist stuff" or racist in any way. He just mentioned he already "covered almost ALL the white male podcasters" and asked about other shows.\n\nCare to explain to me how that is "blatantly racist stuff"? https://example.com/ 21349 442023 442023.442469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.79944047156339 0 \N \N f 172169849 \N 1 198601122 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403798 2025-02-15 08:17:18.912 2025-03-29 22:39:52.682 \N You made me into a meme. Now my life is really complete. I have to show it to my son. He is a meme guy. Thanks. https://example.com/ 20062 403788 402904.403694.403750.403754.403755.403762.403765.403771.403772.403773.403776.403778.403779.403788.403798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9108452445985 0 \N \N f 532136386 \N 4 56727599 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458191 2025-03-29 04:42:27.479 2025-03-29 22:39:52.682 \N > Wrapped Bitcoins, excluding L-BTC and Lightning\n\nLightning is not "wrapped bitcoin", it's bitcoin proper. https://example.com/ 21804 458189 458149.458189.458191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3820927661351 0 \N \N f 366196525 \N 2 187300811 0 f f \N \N \N \N 458149 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443477 2025-03-19 11:31:22.455 2025-03-29 22:39:52.682 \N > As previously noted, i really read everything that #ZoltanPozsar puts out...His Aug 24th piece was terrific again. In this #thread I summarize the most important takeaways: 🧵\n\nhttps://twitter.com/RonStoeferle/status/1562816315269971968\nhttps://nitter.it/RonStoeferle/status/1562816315269971968 <-- Shows the thread in a single, easy-to-read, web page https://example.com/ 616 443473 443197.443473.443477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.02455207547028 0 \N \N f 146390478 \N 2 49549363 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 2025-03-26 04:52:38.893 f \N \N \N 0 0 0 0 1 0 0 417331 2025-02-26 09:55:14.208 2025-03-29 22:39:48.906 What happened when I tried to spend only bitcoin for a whole day @krispy_donkey posted about wanting this un-paywalled [here](https://stacker.news/items/359302). https://archive.is/0iBfJ 5003 \N 417331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.01476389654332 0 \N \N f 212241340 \N 1 231503202 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443288 2025-03-19 08:38:19.564 2025-03-29 22:39:48.906 Random Privacy Issues On My Cruise Some of you may know that I took a vacation last week. My wife and I took a cruise with some friends. I thought it might be interesting to talk about some privacy issues I encountered. \n\n### My Graphene Pixel\n\nOnce the ship was far enough from the coast to exceed my local carrier range, the cruise line offers satellite internet. I was warned beforehand that the ship's wifi would not work with a vpn, but that wasn't entirely accurate. I had to change my standard settings to allow connectivity without VPN protection, but I was able to surf the web and access some web sites with the vpn. Some sites were impossible to connect to. SN was surprisingly easy to access. Generally speaking, I observed that my Pixel lost connectivity much more than my friends' assorted iphone and stock Android devices, but it wasn't too bad. I was willing to accept some inconvenience. \n\n### Biometrics US Customs\n\nI don't know how many stackers have experienced this yet, but it's creepy as hell. My face was photographed upon boarding the ship. When disembarking after the cruise, there was no need to show your passport. You just stood in front of a biometric analyzer. It took about 30 seconds to recognize my face and clear me to leave the ship. Here's more info:\nhttps://travel.state.gov/content/travel/en/us-visas/other-visa-categories/safety.html\n\nI have the real sense that the world has changed, and I have lost my will to resist these privacy invasions. I often trade privacy for convenience. I remember that I resisted easypass technology for years. I would patiently wait to pay my toll with cash while everyone with the magic tag zipped by. I guess the alternative to biometrics is to either sneak across borders or become a stationary hermit. \n\n\n\n\n\n \N 21412 \N 443288 \N \N \N \N \N \N \N \N gaming \N ACTIVE \N 17.2750490644255 0 \N \N f 568348570 \N 5 174590499 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:56:30.628 f \N \N \N 0 0 0 0 5 0 0 422628 2025-03-02 15:31:38.306 2025-03-29 22:39:48.906 MicroStrategy, IN-Q-TEL, & the CIA I'm not an expert about any of this but today I saw a document posted that I have seen posted many times on SN by @DarthCoin and others that lists people that supposedly work for IN-Q-TEL. I only say supposedly because I do not know if the document is accurate. The document mentions a person named "Lisabeth Poulos" as the IN-Q-TEL Chief of Staff. But that isn't her name. Her name is actually spelled "Lisbeth Poulos". \n\n## Background \n\nFor those that are not familiar according to [Wikipedia IN-Q-TEL](https://en.wikipedia.org/wiki/In-Q-Tel) is\n\n> an American not-for-profit venture capital firm based in Arlington, Virginia. It invests in companies to keep the Central Intelligence Agency, and other intelligence agencies, equipped with the latest in information technology in support of United States intelligence capability.\n\nIt is basically a "private" corporation controlled by the CIA and it really doesn't try to hide that. Poulos did work for IN-Q-TEL as chief of staff from 2002-2022. IN-Q-TEL is very obviously operated by the CIA and is connected with other government agencies. Looking at the companies connected to IN-Q-TEL is an interesting rabbit hole to go down. For those that still believe we live in a free country I don't think I can help you.\n\nAnyway, what I have heard said elsewhere and posted on SN is that MicroStrategy is ran by the CIA. The only "evidence" I have seen is this document. \n\n![](https://m.stacker.news/45834)\n\n\nThe evidence for this is weak to say the least. Honestly, I don't think overstating the case really accomplishes much except shock value. Now, don't get me wrong. I am not suggesting that the CIA does not control many companies or at least influence their direction and decisions. I highly recommend those interested in this topic read [Legacy of Ashes: The History of the CIA](https://en.wikipedia.org/wiki/Legacy_of_Ashes_(book)). It is not a conspiracy based book. It is all based on interviews with people that worked for or with the CIA and government. Its all on the record. Not based in theories. The stories told in this book are pretty wild and often sound like something you'd hear said by some nut case. \n\n![](https://m.stacker.news/45835)\n\nBack to MicroStrategy and Lisabeth Poulos. On her [Crunchbase profile](https://www.crunchbase.com/person/lisbeth-poulos) it lists MicroStrategy as well as BAE Systems. According to Crunchbase she also worked for CIA and NSA. She's at least a former spook but I have yet to see evidence that MicroStrategy is operated by the CIA. According to [her LinkedIn](https://www.linkedin.com/in/lisbeth-poulos-587a06105/) she is now self employed. It is possible that MicroStrategy is ran by or influenced by the CIA but I've never seen hard evidence of this. This doc having her name misspelled doesn't strengthen the case. Logically it very possible that her skill set is also valuable and a business intelligence company. That's what MicroStrategy does. She worked in government intelligence after all.\n\n![](https://m.stacker.news/45836)\n\n## Does it matter?\n\nThe broader question is why does this matter? When I start looking organizations like IN-Q-TEL, CFR, and others they have connections all over the Fortune 500. The US government and its agencies have connections in most companies. Its starts getting really dumb fast with the guilt by association. But, I have to admit this woman wasn't so low level person at IN-Q-TEL, it raises my curiosity for sure. I'm just not ready to say, case closed. Saylor is a spook. Why? Because my brain will not let me say that. It bugs me when people will on the one hand see how the system works and not just take what their rulers say at face value. But then will take loosely related facts built up into a definitive statement as fact. If you can't think of a conspiracy theory that you do not believe you might just be gullible. I have a deep distrust for government based on facts and experience. Its not based in theories. \n\nThis whole MicroStrategy & CIA thing reminds me of the story that the CIA created Bitcoin. I'm pretty sure it didn't but if it had... so what. It doesn't matter. Same is true here. If the CIA runs MicroStrategy it doesn't matter to me. They are buying a lot of bitcoin. Many other groups and people we may not like will buy bitcoin. Who cares. Its money not an exclusive club.\n\n## The Threat\n\nThe only threat I see is that of influence. I've said it before. Don't create heroes. Saylor is a dude. He could be a bad dude. It doesn't really matter to me and it shouldn't to true bitcoiners. The only threat I see from Saylor is his influence over weak minded bitcoiners. Some act like everything he says is coming from the mouth of god. That's a problem, but not one we can fix. People like that will have many hard lessons to learn. There will always be fools.\n\nI'm not saying you should go out and buy MSTR stock. I'm not saying you should trust Saylor or his company. I don't trust people from the government or suits. Just thought I would share what I found and a few of my thoughts for what they are worth.\n \N 8796 \N 422628 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 27.1697346946312 0 \N \N f 752812759 \N 9 129233331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 429970 2025-03-08 18:08:00.116 2025-03-29 22:39:52.682 \N Ugh, we can only see the post we can't see replies to the post, therefore, we can't read the thread! https://example.com/ 18069 429958 429958.429970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.22636300515101 0 \N \N f 1485237669 \N 9 235385123 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427448 2025-03-06 11:53:08.166 2025-03-29 22:39:52.682 \N Main argument against is that it's a lot harder to do well. \n\n> E.g. is it safe to let your browser interact with your private keys?\n\nInteract is kind of vague. Generally the browser is a less secure environment than a mobile app, e.g. xss is real and very difficult to 100% mitigate. https://example.com/ 685 427246 427246.427448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8108912082791 0 \N \N f 117222457 \N 1 65814804 0 f f \N \N \N \N 427246 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401192 2025-02-12 19:21:49.591 2025-03-29 22:39:52.682 \N > What role do you think governments should play in free markets?\n\nIn short, I believe that should be as free as possible. However, cannot become a lawless Wild West 🤠 https://example.com/ 21180 401076 401076.401192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3874075693005 0 \N \N f 331921241 \N 2 63589981 0 f f \N \N \N \N 401076 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 191467 2024-06-29 15:43:51.302 2025-03-29 22:39:52.682 \N Couple of important points here:\n1)Getting super excited whether pro or con in Bitcoin at very early testnet stages is bound to often be disappointing. Many things in Bitcoin were "definitely" coming and "definitely" going to be the next big thing on Bitcoin and they went nowhere. I suggest not getting emotionally invested or bother going too deep (unless you're a dev thinking about working on them) until they at least get to working code on mainnet.\n2) Where is demand and what is the compelling product market fit? I'm skeptical. I also don't see a strong use case proposed amidst any article I've seen that will grab the average pleb or Bitcoin business. The market does not appear to either as evidenced by no one really being that interested. In all of these articles I never see what any tech project always needs: a super clear and compelling use case that can be explained in 1-3 sentences with little or no technical jargon. Do we really need more tokens and DAPPs (the 2 main use cases cited on Botanix's website)? Despite high fees Liquid is still mostly empty after years of mainnet deployment and development by one of the best bitcoin companies. Why would this get used when almost no one has touched Liquid for 6 years? \n3) Security model, I'll politely summarize that I am skeptical. At least I would want to see it deployed with significant volume and have no security issues for a full year or more before I'd even consider touching it. Especially when you're at the proof of concept stage and there is no economic value to be stolen/gamed/scammed it's hard to know what issues could arise even beyond code such as misaligned incentives, exploits, etc. Directly quoting the Bitcoin Magazine article, "As long as the size of individual multisigs are balanced right with the total number of stakers, and the value of all deposits compared with staking bonds, this could be a very workable system." I will say it differently, this is still at the conceptual stage and may work or it may not. If you want to use if/when it makes to mainnet please consider only using small amounts to start. \n4) Eth/shitcoin ick factor is not to be underestimated. This will keep a huge portion of Bitcoiners away for a long time(myself included admittedly), maybe forever unless the use case just becomes overwhelmingly compelling. I'm **never** touching anything that needs metamask, full stop. Why do really we need an EVM sidechain? I'm not saying it's useless. I'm only saying to the average pleb Bitcoiner it doesn't jump out as important or essential to invest time & energy into, and most businesses are still just trying to understand the base layer so they aren't getting anywhere near this any time soon. \n\nWith most things like this I think its best to wait and see. If you are excited and have some technical skills its great to go through the Github repo and consider contributing. But getting emotionally invested in whatever the hot new thing in Bitcoin will be is probably just a road to constant disappointment and disillusionment. Bitcoin doesn't need anyone to save it. The market and economic incentives will keep the ecosystem working and vibrant over time. https://example.com/ 18673 191309 190866.191309.191467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.58595360535867 0 \N \N f 238373976 \N 1 182821255 0 f f \N \N \N \N 190866 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436147 2025-03-13 10:54:17.963 2025-03-29 22:39:48.906 The Bitcoin Forum | BitMEX Blog \N https://blog.bitmex.com/the-bitcoin-forum/ 13622 \N 436147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0309625740143 0 \N \N f 627830745 \N 3 239941196 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:09:00.827 f \N \N \N 0 0 0 0 3 0 0 417840 2025-02-26 16:18:14.814 2025-03-29 22:39:48.906 Looking for book recommendations about private associations Many of us here despise the modern, Leviatan-grade State and it's absolute power. And we crave for a smaller state that holds less control and regulation in our lives.\n\nNevertheless, I think for anyone beyond age 5 it comes as obvious that community life needs some degree of rules and organization. And if that is not going to come from the state, it will have to come from somewhere. Property rights, conflict arbitration, etc. \n\nI'm currently looking for reads on any kind of private organizations, be it current or historical, where people joined voluntarily and shared some part of their lives and activities together. I'm specially interested in localized associations that simply sought to join improve its members lives without much proselytism or massive growth ambitions. Just people getting together, voluntarily accepting a set of rules or values and joining forces with the aim of living in a more prosperous way that they would do individually. Some examples that are more or less in line of what I'm thinking of (I know not every group I'm listing here fits perfectly with what I'm describing) would be:\n- Jewish Kibuttzs\n- Medieval European Guilds for merchants and craftsmen\n- Freemasons\n- Different branches of the Italian Mafia\n\nI'm interested in all of this because I'm wondering how Bitcoiners could come together to form their own communities. I want to learn from the successes and mistakes from the past. Meetups are nice, but I'm thinking we will need to take thinks one step further sooner than later.\n \N 1800 \N 417840 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.16161507353 0 \N \N f 335123895 \N 3 4983712 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441130 2025-03-17 19:24:37.981 2025-03-29 22:39:52.682 \N ![this in an image](https://dailycoin.com/wp-content/uploads/2020/06/bitcoin-meme-2.jpg) https://example.com/ 802 441011 440692.441011.441130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.619696617592176 0 \N \N f 937429967 \N 7 85638387 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 410512 2025-02-20 14:09:59.681 2025-03-29 22:39:52.682 \N Congratulations to \n\n@ElDude who was the first to mention Diablo\n@satoshi_lords who was the first to mention World of Warcraft\n@nullcount who was the first to mention Overwatch\n@CheezeGrater who was the first to mention Starcraft 2\n@And1 who was the first to mention Hearthstone\n@v1ntage who was the first to mention Overwatch 2, which has yet to be released but isnt a disqualifier\n@BlockchainB who was the first to mention Starcraft-- Brood War, which is an expansion but isnt a disqualifier\n@givemesats who was the first to mention Diablo Immortal\n@brilliancebtc who was the first to mention The Death and Return of Superman\n@falsefaucet Starcraft\n@bobby Warcraft 1\n@Cornleone Heroes of the Storm\n@Jem The Lost vikings 2\n@Asara Blackthorne\n\nSince there was only 14 qualifying answers, the winnings for each person has increased to (20*200)/14 = ~286\n\nThe winnings have been distributed via me upvoting sats. Thanks for playing and have a nice day :) https://example.com/ 20433 410237 410237.410512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.25533574764491 0 \N \N f 14361843 \N 1 70348801 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434310 2025-03-11 19:20:22.246 2025-03-29 22:39:52.684 \N What are your favorite little oranges?\n\nTangerines, mandarines, or clementines? https://example.com/ 12736 434298 434278.434298.434310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44053454984708 0 \N \N f 1292376591 \N 14 79274618 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 11:42:55.346 f \N \N \N 0 0 0 0 3 0 0 422673 2025-03-02 16:02:39.197 2025-03-29 22:39:48.906 Have you ever completely changed your mind on something big? I have. There's two things that come to mind, as areas that I've done a full 180 on. One is vaccination, and the other is nutrition.\n\n**Vaccination**...I distinctly remember, years ago, thinking to myself how evil those parents were, that chose to NOT vaccinate their children (and thus, supposedly, risked harm to other children). \n\nI don't even know what prompted this thought - I suspect that it was a rabidly pro-vaccine article in mainstream media, likely bought and paid for by the pharma industry. I had never even KNOWN anyone who was unvaccinated, or didn't vaccinate their kids. Or at least, anyone who talked openly about it. \n\nI actually had a yearly recurring calendar appointment, for the whole family to get a flu shot every fall. I thought all these shots were GOOD for us. Big regrets there.\n\nI'm sure you all can guess what caused me to change my mind on that one, of course it was covid. In the area where I used to live, not being vaccinated was tantamount to being an untouchable. I remember planning a group hike with some people, only about half of whom I knew. I was told that it might be a good idea to keep quiet about not being vaccinated. The hike didn't actually happen (all social activity plummeted and hasn't recovered) but I certainly wouldn't have felt welcome if it had.\n\nCovid, and the intense, constant pressure to get a shots made me skeptical. Being skeptical made me do some poking around, and luckily I found a reddit subforum called something like CovidSkeptics (which, of course, ended up being shut down). That opened the door to lots of other information that I gulped down like a person dying of thirst drinking a glass of water.\n\n**Nutrition** is the other issue I've done a 180 on. This is what I used to think:\n- Fruits and vegetables are good. The more, the better.\n- Whole grains are good\n- Fiber is good.\n- Low fat is good, if you need some fat you should use canola oil\n- All animal products, and particularly meat, should be strictly limited, and used more as a condiment\n\nI've completely switched my diet now, to carnivore/animal-based. Basically I eat lots of high fat beef - I never get tired of it - and also eggs, some dairy, fish, and poultry. \n\nWhat caused this drastic change? Most people who go carnivore are trying to lose weight, or have some kind of autoimmune disease, or digestive issues. I didn't have any of those issues, but I was not satisfied with my health. As much as I tried to eat healthy, and eat all the "superfoods" that I could, I didn't feel that great. \n\nSo I was open to new ideas. And really, I have Saifedean Ammous to thank for introducing me to the carnivore diet, as well as to bitcoin. Because of my respect for him based on his book The Bitcoin Standard, I was open the idea of carnivore. He mentions it occasionally on his podcast, and also interviews lots of people that have alternative ideas about nutrition. The guest that influenced me the most was Nina Teicholtz. Her book, The Big Fat Surprise, was a revelation, and within a month of reading that, I had become carnivore. \n\nSo, those are my stories about how I changed my mind on a few big topics. How about you?\n\n\n\n\n\n\n\n\n \N 12188 \N 422673 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 28.0143675440544 0 \N \N f 390348522 \N 3 73799129 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:34:33.325 f \N \N \N 0 0 0 0 2 0 0 410254 2025-02-20 11:51:57.468 2025-03-29 22:39:52.683 \N Maybe move to ~meta aka ~sports? 😅 https://example.com/ 663 410229 410094.410229.410254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3562806939654 0 \N \N f 115879475 \N 1 6832355 0 f f \N \N \N \N 410094 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433323 2025-03-11 00:29:35.931 2025-03-29 22:39:52.683 \N Lol everyone is bitcoin friendly when their shitcoins have no bid in the bear market, once Bitcoin drags this nonsense up with its next cycle, they change their tune, seen it enough times to know this won't last https://example.com/ 672 432618 432404.432618.433323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.56995351205352 0 \N \N f 39966997 \N 1 79885713 0 f f \N \N \N \N 432404 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433041 2025-03-10 19:08:57.822 2025-03-29 22:39:52.683 \N Got up in the morning and felt that I wanna do nothing. So I did it. https://example.com/ 6202 433034 432920.432980.432992.433032.433034.433041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4910281460702 0 \N \N f 433399794 \N 3 214180390 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428619 2025-03-07 13:21:06.213 2025-03-29 22:39:52.683 \N ln.cash is perfect for this, just leave printed the qr code. https://example.com/ 17011 428581 424571.424907.424921.424946.424988.428312.428320.428354.428417.428559.428581.428619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.08691778049051 0 \N \N f 407825294 \N 2 147892398 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444558 2025-03-20 02:29:53.288 2025-03-29 22:39:52.683 \N 💯\n“Third, accepting and dealing with constraints is a sign of maturation in Lightning and in life.”\n\n https://example.com/ 19924 443577 443577.444558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.856890386428 0 \N \N f 83259022 \N 1 184855282 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434950 2025-03-12 11:10:08.613 2025-03-29 22:39:52.683 \N The barista put enough expresso shots in my ice coffee that I'm effectively lobotomized. https://example.com/ 1803 434791 434791.434950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5469079077424 0 \N \N f 55348815 \N 1 26442037 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 04:51:56.269 f \N \N \N 0 0 0 0 1 0 0 458408 2025-03-29 08:55:03.355 2025-03-29 22:39:52.683 \N Weak entropy is closer to the anonymous envelop. There is no way to contact the owner of a wallet created with weak entropy.\n\nBut, put it this way: if your mother created a wallet with weak entropy, and you serendipitously found the weak entropy wallet and then took the funds, but you honestly didn't know they were hers until months later when she complained about an anonymous "hacker". \n\nWould you give her, her funds back? Would you tell her you 'just found an anonymous wallet' and so you wouldn't give it back? Would you just stay quiet, lie by omission?\n\nDoes this change, if its a stranger?\n\nYou asked to have somebody change your mind. I have tried. I have my own answers to the above. I wish you the best, in figuring out your own answers. \n\n https://example.com/ 16788 458397 454525.454535.454668.454691.458368.458378.458397.458408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5931584424833 0 \N \N f 351565239 \N 2 31449772 0 f f \N \N \N \N 454525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430279 2025-03-09 03:02:45.092 2025-03-29 22:39:48.906 Books And Articles Newsletter, Issue 29 ![book](https://upload.wikimedia.org/wikipedia/commons/c/c5/13-11-02-olb-by-RalfR-03.jpg)\n\n\n### News Of The Week \n\nWelcome to this week’s issue of the Books And Articles newsletter. Thanks for all of the quality posts. \nAs always, please reply with suggestions and opinions on how to make this territory better. \nI hope everyone has a good week. \n\n\n### Top Five Posts Of The Week \n\nHere are this week’s top posts:\n\n- [How many books do you read a year?](https://stacker.news/items/655706/r/siggy47) by @Taft\n\n- [What's one quote from Movies or Books that you can never forget?](https://stacker.news/items/657632/r/siggy47) by @Golu\n\n- [Poems](https://stacker.news/items/656274/r/siggy47) by @oraltosun\n\n- [The Penal Preserve, Chapter 23](https://stacker.news/items/653632/r/siggy47) by @cleophas\n\n- [NSA using Google To Hunt Tor Users](https://stacker.news/items/652437/r/siggy47) by @jbschirtzinger\n\n\n\n### Siggy’s Suggestions\n\n- [Great article about corporate treasuries by Lyn Alden](https://stacker.news/items/653479/r/siggy47) by @gnomebtc\n\nThis article by Lyn Alden completely snuck past me, as it seems to have many stackers here. You don’t need to run an enormous public company to benefit from the ideas presented here. I am in the process of using these principles for my own small family business. Thanks to @gnomebtc for posting.\n\n- [My Auschwitz Vacation, by Tanya Gold](https://stacker.news/items/655971/r/siggy47) by @026180d3a3\n\nI am choosing as a suggestion a link post to an article that received 0 sats and 0 comments. Somehow I did not notice this post at all. I noticed the link was to a Harper’s article, though, so I was curious. I used to read Harpers a lot, before my notion of their political bias made it difficult for me to ignore. Still, the writing was always top notch. So, I read this article, and it was thought provoking. It also got me thinking that there should be a place in this territory for well written non fiction, regardless of topic. Maybe there will be more engagement for posts like this in the future.\n\n\n \nThis week’s Golden Oldie:\n\n- [Some thoughts on re-reading Bradbury's *Fahrenheit 451*](https://stacker.news/items/479400/r/siggy47) by @StillStackinAfterAllTheseYears\n\nThis is a good one by @StillStackinAfterAllTheseYears. I know it’s listed in the Book Review section below, and I may have even featured it as a Golden Oldie in the past. I don’t care, because this is a great post about a topic that is relevant to all stackers. Enjoy!\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n### Book Reviews\n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462)\n by @StillStackinAfterAllTheseYears\n\n- [The Bezzle, by Cory Doctorow](https://stacker.news/items/506632/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [The Achilles Trap, by Steve Coll](https://stacker.news/items/497756) by @Coinsreporter\n\n- [Software,by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n- [Bleeding Edge by Thomas Pynchon](https://stacker.news/items/533493/r/siggy47) by @Scoresby\n\n- [ “Better than Before” by Gretchen Rubin](https://stacker.news/items/534613/r/siggy47) by @cryotosensei\n\n- [Giada De Laurentiis Recipe for Adventure Hong Kong](https://stacker.news/items/539739/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Culture Code” appeals to the adolescent in me](https://stacker.news/items/568580/r/siggy47) by @cryotosensei\n\n- [Book Review | Wanna evolve like Pokemon with “My Morning Routine”](https://stacker.news/items/569631/r/siggy47) by @cryotosensei\n\n- [Book Review | The Handbook for Leaders](https://stacker.news/items/579116/r/siggy47) by @cryotosensei\n\n- [Book Review | “Fierce Conversations” by Susan Scott](https://stacker.news/items/581153/r/siggy47) by @cryotosensei\n\n- [Book Review | “All Joy and No Fun” Jennifer Stone](https://stacker.news/items/585790/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Four Tendencies”](https://stacker.news/items/605553/r/siggy47) by @cryotosensei\n\n- [Book Review | “Work Rules!”](https://stacker.news/items/624030/r/siggy47) by @cryotosensei\n\n- [Book Review | “Thrive” by Arianna Huffington](https://stacker.news/items/629306/r/siggy47) by @cryotosensei\n\n- [Book Review | “What I Wish I Knew When I Was 20”](https://stacker.news/items/632899/r/siggy47) by @cryotosensei\n\n- [Book Review | Giada De Laurentiis’s Recipe for Adventure Naples!](https://stacker.news/items/634348/r/siggy47) by @cryotosensei\n\n- [Book Review | “Unleashed” by Dav Pilkey](https://stacker.news/items/651926/r/siggy47) by @cryotosensei\n\n- [Book Review | “Success Built to Last”](https://stacker.news/items/650573/r/siggy47) by @cryotosensei\n\n- [Lonesome Traveller by Jack Kerouac](https://stacker.news/items/543525) by @carlosfandango\n\n- [Pre-review of Human Rights and the Uses of History by Samuel Moyn](https://stacker.news/items/570366/r/siggy47) by @SilkyNinja\n\n- [Book Review- The Genesis Book](https://stacker.news/items/588212/r/siggy47) by @siggy47\n\n- [What I read in June, including what might become one of the best books of 2024:](https://stacker.news/items/593241/r/siggy47) by @speakingyourtruth\n\n- [The Book of Five Rings by Musashi Miyamoto](https://stacker.news/items/590545/r/siggy47) by @itermathi\n\n- [Symbolisms in "The Metamorphosis" by Franz Kafka (book review)](https://stacker.news/items/627213/r/siggy47) by @Nadia\n\n- [Book Review: The Monk Who Sold His Ferrari by Robin Sharma](https://stacker.news/items/624709/r/siggy47) by @Athena\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Essays\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n\n\n### Short Stories\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 4862 \N 430279 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 1.87183231639796 0 \N \N f 702625206 \N 6 222584906 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435065 2025-03-12 12:42:06.392 2025-03-29 22:39:48.909 Is MicroStrategy overvalued or undervalued? Right now, MSTR is trading for roughly 2x the value of their BTC holdings ($30b market cap vs. $15b of bitcoin)\n\nHistorically, they’ve traded closer to 1x the value of their BTC holdings (albeit with a wide variance).\n\nCurious to hear how stackers think about valuing the MicroStrategy business.\n\nPS. Prior to buying Bitcoin, the company was worth ~$1B if you want to factor their software business into your calculations. \N 20023 \N 435065 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.63270108457852 0 \N \N f 410285819 \N 2 31909153 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:29:41.556 f \N \N \N 0 0 0 0 1 0 0 21728 2023-05-10 13:38:11.061 2025-03-29 22:39:52.683 \N We’re very excited about our next release, which is focused on enabling low resource signers. For example, the Stakwork and Sphinx team is working on running VLS on an ESP32, which costs only $10!\n\nLooking forward, we’re excited to get VLS running in the secure area of mobile phones, and also to figure out Lightning multi-sig. https://example.com/ 2681 21672 21672.21728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8603862220908 0 \N \N f 549268430 \N 3 204424420 0 f f \N \N \N \N 21672 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434868 2025-03-12 09:52:12.592 2025-03-29 22:39:52.683 \N Did you manage to rent a car with bitcoin in the end?\nIf not, I used Humber's Rent A Car in August. Good rates, paid from phoenix to chivo. Good people, even had a small traffic accident, which they assisted with and did not try to milk me for damages.\n\nLooks like they have a basic website going\nhttps://humbersrentacars.negocio.site/\n\nGotta say, it was kind of wild renting a car and not leaving a credit card on file at all :) :) :) https://example.com/ 14688 434643 434642.434643.434868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.99003255224011 0 \N \N f 215910689 \N 1 103638596 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 03:33:16.886 f \N \N \N 0 0 0 0 1 0 0 436332 2025-03-13 13:37:01.091 2025-03-29 22:39:52.684 \N The blocksize war https://example.com/ 777 436322 436322.436332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6483942357008 0 \N \N f 196330072 \N 2 29446271 0 f f \N \N \N \N 436322 \N 0 0 \N \N f \N 2025-03-20 08:50:55.702 f \N \N \N 0 0 0 0 1 0 0 430912 2025-03-09 14:05:48.984 2025-03-29 22:39:52.684 \N Thanks for giving us ChatGPT's opinion on @DarthCoin's post, but is that also *your* opinion? 😏 \n\n![](https://i.gyazo.com/f1a0892d784edb0230134a240e644c14.png)\n\n\n\n https://example.com/ 2583 430781 430549.430560.430781.430912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2597227533721 0 \N \N f 245529707 \N 2 227803593 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436012 2025-03-13 08:22:12.692 2025-03-29 22:39:52.684 \N Catch-22 is always worth a look. I read at least once a year. That's some catch that Catch-22. https://example.com/ 7185 435979 435944.435979.436012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.559594669477 0 \N \N f 522403107 \N 4 27735853 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 01:46:36.607 f \N \N \N 0 0 0 0 2 0 0 424207 2025-03-03 22:01:32.657 2025-03-29 22:39:52.684 \N I don't have a "favorite" one. I use almost all.\nWhy?\n\n## Choosing the right BTC/LN wallet\nWe've seen many users that are stuck with using one or max two wallet apps and also choosing them because X and Y "recommend" them and NOT for the specific situation of use and features they provide.\n\n### This is a wrong approach.\n\nChoose your wallets based on your own usage and situation you encounter using your BTC.\nSome aspects to be taken in consideration:\n- There's no such thing as "best wallet" for everything. Remove this bias from your mind. Choose with your own knowledge, not because x and y told you so.\n- I would not "recommend" any wallet app in particular, but those that are open source and have a good reputation/history and respect the golden rule of Bitcoin: not your keys, not your bitcoins.\n- Stay away from "multicrapto" wallet apps. Are a fucking trap and usually are not open source! Bitcoin Only! You have been warned!\n- Use not just 1 or 2, but 3 or 5-6, each one will have its own moment to be used and take advantage of their best features for the case you need.\n- Learn more about each wallet app, to know them better and know in which case you could use the one that have the most appropriate features. \n\nHere I wrote many guides about BTC-LN wallets:\n- [LN wallets comparison](https://darthcoin.substack.com/p/lightning-wallets-comparison)\n- [How to start with LN](https://darth-coin.github.io/beginner/getting-started-lightning-en.html)\n- [Stacking Sats Noob Journey](https://darthcoin.substack.com/p/stacking-sats-noob-journey)\n- ... and many others on [see more here](https://darth-coin.github.io)\n\nLearn how to use the method of "3 levels stash", as I describe it in this guide\n[Think like a bank, not just be a bank](https://darthcoin.substack.com/p/bitcoin-be-your-own-bank-think-like)...\nA. HODL = your "central bank" with most of your stash, your reserve bank, barely moving it, onchain\nB. CACHE = your "commercial bank" with medium size amounts, for redistributing to HODL and SPEND, onchain and LN, nodes channels etc\nC. SPEND = your spending pockets, with small amounts, enough to cover your regular spending, LN, with funding source from your "CACHE bank".\n\n- Don't be too obsessed with "self custody only". If is non-KYC it could have advantages in some cases. Not all custodial is bad. Be obsessed with "self-custody-only" for your HODL wallets not the spending wallets.\n- This is where many users make the mistake and do the opposite. You can easily have your own wallets on your own node, as a "funding source" for all these custodial wallets. Move small amounts (enough to cover your spending habits) to them and use them. If are non-KYC, you have almost nothing to worry about "privacy", sometimes is even better not to reveal your own private node when you receive, not talking also about spending from these wallets as a good front wall.\n- Each wallet app have its own technology implemented: some use directly nodes, some use electrum server, some will use neutrino, some use Tor, some use LND others Immortan or CLN, or both. Don't make the mistake of putting them all in the same situation/use case. Each implementation have its own advantages and disadvantages, depending on which situation you are.\n- We are still early into Bitcoin and LN development. So first, test, learn the functionalities of each app you use and if you can, help the developer(s) of the app to improve it, give them the right feedback, don't complain. They don't know all situations or devices you are using, so give them as much information you can and explain ALL steps you did if you have an issue. Try to collaborate and help to make it better.\n\nOnce you know better the app, help other new users to use it. Devs usually are busy with coding and they get bored with people complaining all the time about same things (mostly because users do not read manuals, FAQs, do not investigate more how to use the app). Bother the dev only when is a real issue or bug, that the community couldn't help you too much or many other users encounter the same situation with no exit.\n\nIn conclusion... you the new Bitcoin user, are just like this baby, trying to climb the ladder of all apps. You must pass through all, test them all, know them better and stick with those that fit better YOUR use case.\n[![wallet-stairs.jpg](https://i.postimg.cc/mkmGw7BJ/wallet-stairs.jpg)](https://postimg.cc/RJJ8C63L) https://example.com/ 21242 423819 423750.423811.423819.424207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8744492576701 0 \N \N f 445332684 \N 2 62028194 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446651 2025-03-21 12:01:39.33 2025-03-29 22:39:52.685 \N Is your server responding with a [Location header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Location)?\n\nPOST and GET shouldn't matter for redirects using 302 even though [GET is recommended](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/302).\nI've seen HN using redirects after posting a comment.\n https://example.com/ 6471 446641 446598.446635.446641.446651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.54068164765395 0 \N \N f 582370384 \N 4 143996133 0 f f \N \N \N \N 446598 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3231 2022-10-27 09:10:19.768 2025-03-29 22:39:52.685 \N Sunlight. https://example.com/ 11716 3191 3191.3231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5962069812486 0 \N \N f 83338275 \N 1 15233762 0 f f \N \N \N \N 3191 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442855 2025-03-18 21:09:57.156 2025-03-29 22:39:52.686 \N TLDR below.\n\n> **Conclusion**: We have proposed an incentive system for decentralized file hosting **without relying on trust or heavy-weight cryptography**. Client and server perform an atomic swap of coins for files using an optimistic protocol. The server responds with a file that is allegedly encrypted correctly. The client **buys the decryption key with a Lightning payment**, and if the file doesn’t decrypt correctly, the client can financially punish the server for cheating, which is a strong incentive for servers to act honestly. Currently, implementing the bond contract requires workarounds such as **using the Liquid sidechain**, however, reactivating OP CAT would be sufficient to implement BitStream directly on Bitcoin.\n\nDecent write-up and research, though I’d prefer to interact with it first. Quite a controversial take on Nostr…\n\n> **Introduction:** Decentralized file hosting networks lack a well-aligned incentive system. Currently, paid servers for **platforms like Nostr often underestimate their operating costs when charging a monthly payment for storing a user’s data**. Users can split their payment into daily or weekly increments if they don’t trust the servers, but this strategy doesn’t resolve the **economic challenges servers face**. Users are paying to upload their data, so **servers are not paid per download**. If a server fulfills too many download requests from various users, then the server can become overwhelmed from the bandwidth costs outweighing their earnings. In the context of video hosting, where the traditional revenue model may falter, BitStream’s protocol presents a sustainable alternative. For instance, a single user might upload a video once, incurring a one-time cost, but if that video becomes popular and is downloaded 100,000 times, the server’s bandwidth costs could skyrocket beyond the initial upload revenue. BitStream’s pay-to-download approach offers a solution: it **allows the server to charge for each download, ensuring that the revenue scales with the popularity and demand for the media**, creating a balanced and profitable ecosystem.\n\nFirstly Nostr isn’t a platform and secondly, there’s nothing stopping this pay to download functionality being added to Nostr. In fact I gather there are NIPs in draft to implement this. New protocols require network effects. Do we need to reinvent the wheel to achieve the same goal? I’m not convinced.. https://example.com/ 18727 442023 442023.442855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5580784581694 0 \N \N f 166997780 \N 1 182416161 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433194 2025-03-10 21:27:43.783 2025-03-29 22:39:52.686 \N Yes we do, but this will take more time.\nThis year, we are mainly focusing on winning our home turf Switzerland.\nIn 2025, once we have the MiCA-License, we will dedicate more resources into expanding into all the EU countries and potentially the UK.\nIn 2026, we will then start our global expansion, starting with the US and the Middle East, possibly including mergers and acquisitions with great already existing local companies.\nThe ambition to expand is in our DNA, but more time is needed! :) https://example.com/ 929 433041 432920.432980.432992.433032.433034.433041.433194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.5098097092178 0 \N \N f 251062412 \N 2 182337382 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441073 2025-03-17 18:30:11.552 2025-03-29 22:39:52.683 \N I'm not able to adequately assess mining game-theory risks, but I think I'm pulling for this. Here's a few reasons why:\n\nPrivacy. Chain analytics will only get better, KYC laws will only get worse, governments will only get more authoritarian; privacy will only get more important. Liquid has confidential transactions, but it still displays the recieving and sending addresses, and are centralized institutions that can be pressured.\n\nMiner revenue. This past bull market presents a more subtle path of NGU than we expected. When a different macro climate is occurring and we can't rely on NGU in the future to match the rate of the past, the fact that tx fees make up generally less than 5% of total miner revenue is an issue. I think drivechains is a superior option to Peter Todd's Tail Emission like Monero, or Jason P Lowery's use of taxpayer money to have the Pentagon defend the hashrate.\n\nOssification. Counterintuitive to bring ossification through a change, but since almost any change except a bug fix could be done on a sidechain, a decade from now, it could be seen as what brought ossification to the base chain. https://example.com/ 16939 440984 440984.441073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6312364929328 0 \N \N f 319077646 \N 3 143373135 0 f f \N \N \N \N 440984 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435195 2025-03-12 14:18:39.855 2025-03-29 22:39:52.683 \N I find your takes on this situation kind of strange to be honest. I've spent quite a bit of time in BD and Dhaka and have lots of friends and contacts there who, to a person, have been very happy with the recent developments, esp. the selection of Yunus as interim leader. This includes people who were Hasina supporters in the past.\n\nI just find it strange how big the delta is between what you have been posting about and what my friends in Bangladesh have expressed.\n\nI don't have strong opinions on this myself, but was happy when I saw the news about Yunus because I know how widely respected he is there. https://example.com/ 13544 435154 435154.435195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8180835711019 0 \N \N f 68625839 \N 1 36746731 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 08:33:45.753 f \N \N \N 0 0 0 0 1 0 0 435859 2025-03-13 03:22:08.871 2025-03-29 22:39:52.683 \N UX & onboarding seems very different & improved. \n\nNot sure about the chat-like interface of displaying orders for ‘Bisq Easy’. Or the name of ‘Bisq Multisig’ - for traditional P2P transactions. It’s a bit confusing.\n\nStill some bugs to iron out, like initial disclaimer is unclickable on smaller screens. Though this really is a proper 2.0 release, a new product. May add some feedback on the repo later.\n\nSeriously great job by the team. Should help onboard way more users onto non-KYC. https://example.com/ 10849 435679 435679.435859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6559427401914 0 \N \N f 20054985 \N 1 183163738 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 2025-03-19 22:46:06.522 f \N \N \N 0 0 0 0 1 0 0 441859 2025-03-18 10:39:34.014 2025-03-29 22:39:52.683 \N What do you think about fiatjaf latest "toys" he released, [Cliche](https://github.com/fiatjaf/cliche) (client for hosted channels) and [Poncho](https://github.com/fiatjaf/poncho) (hosted channels for CLN)? https://example.com/ 4819 441749 441749.441859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4308766452517 0 \N \N f 210499214 \N 1 17504711 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416457 2025-02-25 15:56:46.433 2025-03-29 22:39:52.684 \N \n\n\n![20231123_232921.jpg](https://m.stacker.news/6057) https://example.com/ 21212 416158 416158.416457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.49836909540437 0 \N \N f 197572238 \N 1 115195156 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437081 2025-03-14 10:08:39.85 2025-03-29 22:39:52.684 \N 2. Obviously im not keeping my full stack in here.\n\nIf SN custodian rugs me for 4000 sats, whatever https://example.com/ 10352 436752 436752.437081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.919795357753 0 \N \N f 52138913 \N 1 217044385 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437574 2025-03-14 16:27:23.698 2025-03-29 22:39:52.686 \N Great post that hit home for me. Larping (live-action role-playing) dominates the crypto world, but we need more focus on Bitcoining. Spending and replacing instead of just hodling is important. Centralized on ramps aren't ideal, so we should promote decentralized options like Phoenix. https://example.com/ 5069 437558 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553.437558.437574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4582081084987 0 \N \N f 322641549 \N 2 48213583 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455338 2025-03-26 23:27:01.611 2025-03-29 22:39:48.906 Besides Bitcoin, what do you think can help to limit the power or size of gov't? I'm mostly referencing things that individuals can do to help accomplish this. The more different ways we attack them, the faster change could potentially be made.\n\nThis can include attacking other larger systems that governments are likely or proven to be in bed with. \N 20972 \N 455338 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 11.6880449932241 0 \N \N f 156108750 \N 1 180993529 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434685 2025-03-12 06:41:58.969 2025-03-29 22:39:48.906 Zimbabwe Memoirs I love reading memoirs over the summer. It's a guilty pleasure. To be clear, I'm not talking about high brow memoirs. I go for the tales of serious family dysfunction. It's like junk food for me, although some of them are very well written, and a few even win literary awards. I will probably make a post about some of my favorites. \n\nToday I want to talk about Zimbabwe Memoirs. I developed a little weird fascination with this genre about 10 years ago. I'm sure most people are familiar with the basic history. Formerly Rhodesia, Zimbabwe revolted against its apartheid colonial past in the early 1980s. Robert Mugabe was their heroic leader. As the years went by, his reign became more and more authoritarian and violent, rewarding friends and persecuting enemies. He destroyed the agrarian based economy and confiscated while owned farms that had previously fed the country. That caused widespread poverty and famously destroyed the currency. \n\nThe books I list below tell the personal stories of lives uprooted during this transition:\n\n- The Last Resort, by Douglas Rogers\n- Mukiwa, by Peter Godwin\n- When a Crocodile Eats the Sun, by Peter Godwin\n- Rainbow's End, by Lauren St. John\n- When Money Destroys Nations, by Philip Haslam and Russell Lamberti\n- Don't Let's Go to the Dogs Tonight, by Alexandra Fuller\n\nI recommend them all. Peter Godwin has written many books about his personal experiences in Zimbabwe. The two I list here are fascinating. Alexandra Fuller and Lauren St John are both excellent writers, and they are both honest about their family biases that color the stories. \n\nNote that I have included "When Money Destroys Nations", although it is more the Zimbabwe version of "When Money Dies" than a memoir. Still, it contains interesting personal stories and will be of particular interest to those concerned with the debasement of fiat money.\n \N 1307 \N 434685 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 23.0626164458096 0 \N \N f 657453606 \N 6 130943098 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 09:26:19.868 f \N \N \N 0 0 0 0 3 0 0 456088 2025-03-27 13:15:24.352 2025-03-29 22:39:52.684 \N SRI has a translator proxy which takes SV1 hashrate and sends it to SV2 pools.\n\nThat should allow for older devices (like the S9) to still be included in the game.\n\nA translator proxy could be deployed by the hosted service or by the pleb miner themselves.\n\nIf the hosted service deploys the translator, the main innovation will be the ability for Template negotiation with the pleb miners.\n\nIf the pleb miner deploys the translator themselves, other improvements should come with it, namely:\n- faster communication while sending shares upstream\n- encrypted connection, which prevents MITM hashrate theft https://example.com/ 21480 455920 455920.456088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9920253209544 0 \N \N f 180958171 \N 1 42474410 0 f f \N \N \N \N 455920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436217 2025-03-13 11:45:59.519 2025-03-29 22:39:52.684 \N I'm especially excited about use cases that haven't really manifested yet. Recurring payments, microtransactions, machine-to-machine payments, etc.\n\nAlready I'm very optimistic that people already use LN payments to transfer value between peers instead of fiat. https://example.com/ 20713 436209 436189.436209.436217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9910222848379 0 \N \N f 226927399 \N 2 248269083 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443831 2025-03-19 14:34:10.46 2025-03-29 22:39:52.684 \N I feebly brought up asteroid mining, but you brought the argument to another level by introducing material creation via atomic fusion. Easy peasy, simply fuse iron (Fe 26) with iodine (I 53) to make gold (Au 79), amiright? https://example.com/ 670 443819 443577.443651.443711.443715.443731.443757.443772.443796.443811.443819.443831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1269542781346 0 \N \N f 242783677 \N 2 130115 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 399955 2025-02-11 19:12:58.63 2025-03-29 22:39:52.684 \N we have some sort of problem here with what they call gost supermarkets and gosth restaurants\n\nsmall business that operate under close doors and only use Uber Eats kind of apps to deliever.. \n\nhttps://ajuntament.barcelona.cat/ecologiaurbana/en/noticia/the-city-calls-time-on-ghost-kitchens-and-supermarkets_1243909\n https://example.com/ 8664 397438 395797.396045.396500.397438.399955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.28965986143929 0 \N \N f 128219818 \N 1 190026925 0 f f \N \N \N \N 395797 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447192 2025-03-21 17:15:43.035 2025-03-29 22:39:52.685 \N Some of the best SN related memes:\n\nWhat really is SN:\n[![SN-vader.jpg](https://i.postimg.cc/13KWb5cT/SN-vader.jpg)](https://postimg.cc/75fM24RM)\n\nSN is wild west saloon:\n[![warren-sn.jpg](https://i.postimg.cc/dV7ZxMRf/warren-sn.jpg)](https://postimg.cc/gxW0xTTy)\n\nSN zapping recommended by @Car\n[![negan-car.jpg](https://i.postimg.cc/02B0xb1k/negan-car.jpg)](https://postimg.cc/qz23xB7S)\n\nSN admins tracking users\n[![k00b-sn-fbi.jpg](https://i.postimg.cc/c4PggNHW/k00b-sn-fbi.jpg)](https://postimg.cc/sv9Dqq7H)\n\nSN Saloon doors\n[![sn-saloon-door.jpg](https://i.postimg.cc/RhxJFWz2/sn-saloon-door.jpg)](https://postimg.cc/ZBj5sKnL)\n\nSN crossposting on nostr\n[![sn-nostr-crosspost.jpg](https://i.postimg.cc/PrRvRS2Z/sn-nostr-crosspost.jpg)](https://postimg.cc/sv52B4FD)\n\nHow the SN saloon is looking in real life:\n[![sn-saloon.jpg](https://i.postimg.cc/pdhM13R0/sn-saloon.jpg)](https://postimg.cc/3yTqkSyp)\n\nCar and k00b joking about Darth\n[![darth-ark-sn-supertestnet.jpg](https://i.postimg.cc/HWMsGxsG/darth-ark-sn-supertestnet.jpg)](https://postimg.cc/qgkdyp3Q)\n\n https://example.com/ 11328 447184 447184.447192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3110538741809 0 \N \N f 1022206496 \N 7 170677255 0 f f \N \N \N \N 447184 \N 0 0 \N \N f \N 2025-03-28 10:44:47.447 f \N \N \N 0 0 0 0 1 0 0 427258 2025-03-06 08:50:46.697 2025-03-29 22:39:52.686 \N It's happened to me twice. I backed everything up, restored. Still nothing. I have decided to ignore it. https://example.com/ 2326 427257 427251.427257.427258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.41248928519162 0 \N \N f 352961651 \N 2 49155626 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427969 2025-03-06 18:29:39.457 2025-03-29 22:39:52.686 \N I think in my 30s is where I really felt comfortable in my own skin, started to figure out how to take things one day at a time, as well as finally settling down and having kids. My 20s, I didn’t know WTF was going on haha. https://example.com/ 17212 427211 427188.427211.427969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2215944046065 0 \N \N f 282837302 \N 2 172491247 0 f f \N \N \N \N 427188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416869 2025-02-25 22:30:12.229 2025-03-29 22:39:52.686 \N https://twitter.com/stephanlivera/status/1569406409992802304 https://example.com/ 2151 416632 416158.416221.416253.416288.416551.416578.416605.416632.416869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2906846919663 0 \N \N f 700711905 \N 6 42279071 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422008 2025-03-02 07:25:04.93 2025-03-29 22:39:52.686 \N GM, y'all. Made my first p2p bitcoin trade yesterday. Used Robosats. Even though I watched a tutorial on how to go about this, I still found it an ordeal. There was only two people online and available to sell. It's cool though. I got the process down, and know what to do in the future. https://example.com/ 20657 421915 421915.422008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5577444470691 0 \N \N f 308144089 \N 3 50732922 0 f f \N \N \N \N 421915 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448202 2025-03-22 13:33:17.701 2025-03-29 22:39:48.906 Progressive Web Apps - arguments against? With the apple censorship wrt to Damus, mutiny's promotion of their PWA... what would be the arguments AGAINST a PWA? E.g. is it safe to let your browser interact with your private keys? Can a PWA do anything a regular app can do? Any other concerns?\n\nELI5 please :) \N 21672 \N 448202 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.4758877490947 0 \N \N f 1107482327 \N 10 114170967 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:54:52.773 f \N \N \N 0 0 0 0 2 0 0 410697 2025-02-20 16:11:48.815 2025-03-29 22:39:48.906 What I Most Fear About a Trump Victory > The left's alleged 'anti-civilizational' attitudes weren't defeated during Trump's first term. Rather,** they accelerated in opposition to him. **Cancel culture, political correctness, "wokeism," and "follow the science" fanaticism all hit their zenith under his administration.**\n\nThis is an unbelievably stupid way to reason about politics: let the other side's unruly kids win so they don't throw worse tantrums. \n\nAlso, this is a hopelessly incorrect description of what's up with wokeism/leftism-gone-nuts and that regardless of what happens today and tomorrow, ESG+woke+transgenderism is dying anyway. \n\nStill, I fear our _Reason_ friend might be right: A Trump win accelerates the culture wars. \n\nhttps://reason.com/2024/11/05/bad-candidates-cant-fix-bad-politics/\n\n![](https://m.stacker.news/61232)\n\n \N 5775 \N 410697 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 29.4551088326284 0 \N \N f 89258952 \N 1 245854481 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436696 2025-03-13 19:47:43.455 2025-03-29 22:39:52.684 \N Fixed this. I'm dumb. That's why https://example.com/ 8284 436695 436683.436690.436695.436696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5903560728869 0 \N \N f 108982394 \N 1 22173046 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 2025-03-20 14:36:35.898 f \N \N \N 0 0 0 0 1 0 0 435972 2025-03-13 07:24:59.757 2025-03-29 22:39:52.684 \N I will finish tomorrow the book about the "Magic Hungarian football team", and I will take a break on Monday... Tuesday will start an other book (which btw was planned for this week), The Intelligent Investor (Benjamin Graham, 2006).\n\n\n\n![111.png](https://m.stacker.news/14749) https://example.com/ 9183 435950 435944.435950.435972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2713453343571 0 \N \N f 207401246 \N 2 126172539 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446680 2025-03-21 12:17:36.647 2025-03-29 22:39:52.684 \N It's a feed-driven collection of emulators that run in a browser and support cross-device savings thanks to a Dropbox integration. You can create your own game and emulators collections and play literally from everywhere.\nI often start playing something on my tvbox, then resume on my tablet or iPhone, and all the saves are automatically syncronized. https://example.com/ 1534 446661 446598.446635.446641.446651.446661.446680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.56298477660325 0 \N \N f 321472420 \N 2 214872403 0 f f \N \N \N \N 446598 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432553 2025-03-10 12:44:53.393 2025-03-29 22:39:52.684 \N I'm glad you brought this up, because it's actually in these smaller EVs that I see a lot of potential. My wife got an electric bike and that thing is pretty sweet. As soon as some local road construction gets finished, I can easily imagine taking it to the store instead of the car. https://example.com/ 21710 432405 429509.432405.432553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9796422325427 0 \N \N f 115738360 \N 1 96654317 0 f f \N \N \N \N 429509 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435396 2025-03-12 16:43:07.062 2025-03-29 22:39:52.684 \N [You mean this?](https://guides.getalby.com/user-guide/v/alby-account-and-browser-extension/alby-hub/alby-hub-flavors/umbrel-start9-etc#start9)\n\nIt looks like Hub can be installed through there. If you're talking about Go, that's a mobile app. https://example.com/ 19854 435261 435261.435396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.49840279494475 0 \N \N f 256662718 \N 3 129133353 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:21.813 f \N \N \N 0 0 0 0 1 0 0 436577 2025-03-13 17:00:19.358 2025-03-29 22:39:52.684 \N Just added another way to spend bitcoin online to my list today. Heard about https://silent.link/ from a bitcoin magazine video.\n\nAnyone have other favorite resources? Here are some more of the ones I've been keeping track of:\n\nhttp://ln.pizza - save 6 % off dominoes Pizza in the USA with lightning wallet\n\nhttps://purse.io Save 10-20% off amazon\n\nhttps://foldapp.com - save up to 20% Starbucks, Uber, Target , whole foods , Dunkin\n\nhttps://www.lolli.com – save up to 30% by spending BTC anywhere but primarily USA stores\n\nhttps://satsback.com - save up to 20% by spending BTC anywhere but primarily Europe stores https://example.com/ 9992 436564 436493.436564.436577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4940671461577 0 \N \N f 144116872 \N 2 182604526 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 2025-03-20 10:18:16.707 f \N \N \N 0 0 0 0 1 0 0 422587 2025-03-02 15:10:12.966 2025-03-29 22:39:48.906 A Look Back At Motley Fool's Terrible Bitcoin Investing Advice \N https://www.fool.com/investing/2020/10/17/10-reasons-bitcoin-is-a-terrible-investment/ 10302 \N 422587 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 1.03650073282285 0 \N \N f 1155800072 \N 11 66902404 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 428774 2025-03-07 15:34:21.323 2025-03-29 22:39:52.684 \N No, receiving on LN is extremely weak for privacy. https://example.com/ 11996 428769 428760.428765.428769.428774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1862224229616 0 \N \N f 9684150 \N 1 109733424 0 f f \N \N \N \N 428760 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435904 2025-03-13 04:53:21.091 2025-03-29 22:39:52.684 \N As long as people are willing accept shitty fiat I will dump it on them, if I have any, and keep my bitcoin. https://example.com/ 4314 435887 435328.435887.435904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.58210677218434 0 \N \N f 567495198 \N 5 92192666 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 2025-03-20 04:08:38.842 f \N \N \N 0 0 0 0 1 0 0 435797 2025-03-13 01:18:08.402 2025-03-29 22:39:52.684 \N Just as an experiment I search for this number hahaha\n\n"The numerology energy represented by the number 184 resonates with a pragmatic and detailed focus. The focus generally is on things that are, or may become, essential in attaining current goals or for its well-being now and in the future. "\n\nI read BTC... even I know it's not science. https://example.com/ 9026 435728 435657.435728.435797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3432771297512 0 \N \N f 233302615 \N 1 104832364 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-19 18:35:02.649 f \N \N \N 0 0 0 0 1 0 0 423777 2025-03-03 15:38:43.72 2025-03-29 22:39:52.685 \N Hello SN,\nI'm using the daily discussion thread as an excuse to announce that tonight we'll have the first (afaik) BitDev in Paris, France.\n\nWhat is a BitDev ? See https://bitdevs.org/about\n\nDiscussions will be in French, and the event will start at 6pm. If you're interested and in the area, feel free to come! More info on Telegram: https://t.me/BitdevsFR.\n\nCheers! https://example.com/ 16214 423747 423667.423747.423777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7930087996887 0 \N \N f 823960095 \N 5 29054987 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448299 2025-03-22 14:33:05.864 2025-03-29 22:39:52.685 \N Really interesting... I watched a tv show about this years ago where the host profiled some blind people who were really good at the maze navigation using little handheld clickers to make a sound. Then the host learned to do it himself in a surprisingly short amount of time, though not nearly as good as them. It always stuck with me.\n\nI suspect there are real cognitive benefits to developing unused parts of your brain like this. I've heard yoga teachers and similar use the term "the body *is* the mind", and I think they're on to something there.\n\nThere are a bunch of studies about how balance training could rapidly grow certain parts of the brain and it has impacts on memory and cognition. \n\nhttps://pmc.ncbi.nlm.nih.gov/articles/PMC5515881/\n\nAlso reminds me of the Guugu Yimidhirr people or Tzeltal Maya people who have an impossibly precise internal compass developed through their language. The human brain is capable of what seems like superhuman shit! \n\nhttps://en.wikipedia.org/wiki/Guugu_Yimithirr_people\n\n> The system of spatial coordination inscribed in the language is totally different from that in Western languages, where the reference system is relative with respect to the subject. In Guugu Yimidhirr, as in Kayardild space is rendered in absolute terms,[28] like the cardinal points, north, south, east, west, independent of whether something is in front of, behind, to the left or right of a person. The language thus provides them with a mental map, allowing quite a precise dead-reckoning of all points around them wherever they are.[29] For example, if your Guugu Yimidhirr guest, on leaving your house, had to inform you he or she had left her tobacco behind, they would be required to state grammatically in their native language something like: I left it on the southern table in the western side of your house.[30]\n https://example.com/ 11038 448168 447892.448168.448299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8974491241935 0 \N \N f 193408099 \N 2 74457494 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404142 2025-02-15 15:26:52.878 2025-03-29 22:39:52.685 \N My best is 3 lol https://example.com/ 4345 404139 404095.404131.404139.404142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6914618016318 0 \N \N f 46568657 \N 1 28518042 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447084 2025-03-21 15:52:04.957 2025-03-29 22:39:52.685 \N I don't enjoy talking politics. It always results in either me self censoring or the loss of a friendship. I can't find a middle ground. https://example.com/ 1012 447049 446513.447049.447084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.60208625559679 0 \N \N f 1155708437 \N 9 46827624 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435979 2025-03-13 07:34:31.722 2025-03-29 22:39:52.685 \N Here are the original posts backed up: https://github.com/jamesob/delving-bitcoin-archive/blob/master/archive/rendered-topics/2024-02-February/2024-02-22-workgroup-lifecycle-id598.md\n\nIt seems that @theariard mentioning that lawyers should be consulted is what triggered the response from AJ Towns, but I can't rule out "being a dick" on either side as the cause either...\nQuote:\n> At the very least, people engaging in such private communication channels should consult lawyers in the main major juridictions, if such communication practice is not specially tainting their responsibilities in case of future FOSS software defect in some way.\n\n https://example.com/ 822 435944 435944.435979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0935342842911 0 \N \N f 898930544 \N 7 236203677 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 01:38:52.011 f \N \N \N 0 0 0 0 3 0 0 428742 2025-03-07 14:58:36.553 2025-03-29 22:39:52.685 \N Shall I install it before BTCcore finish the sync? Not really that technical so maybe need some support here ... https://example.com/ 8289 427552 427552.428742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4803711737113 0 \N \N f 207329199 \N 1 238564858 0 f f \N \N \N \N 427552 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422498 2025-03-02 13:43:00.256 2025-03-29 22:39:52.685 \N Narrative violation for all of the Elon haters... https://example.com/ 21060 422483 422483.422498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.34433705117344 0 \N \N f 461952183 \N 4 170011690 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 400972 2025-02-12 16:28:14.002 2025-03-29 22:39:52.685 \N Day 346 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 18901 400918 400918.400972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4451975029084 0 \N \N f 79958620 \N 1 216028718 0 f f \N \N \N \N 400918 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448771 2025-03-22 21:20:48.514 2025-03-29 22:39:52.685 \N A Short History of Nearly Everything \nby Bill Bryson https://example.com/ 654 448716 447761.448319.448686.448707.448716.448771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6445388001685 0 \N \N f 247832253 \N 1 16883778 0 f f \N \N \N \N 447761 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434486 2025-03-12 00:25:47.354 2025-03-29 22:39:52.685 \N Being a routing node or not does not matter whatsoever and it makes no sense for a mobile node to also route payments.\n\nWith some wallets like Blixt, Breez and OBW, you do not rely on centralized lightning service providers. You can open a channel to whatever node you want to.\nIn practice you would want to find a good and well connected node, which there are plenty of. But you don't have to. You can connect to some obscure one to stay low profile. https://example.com/ 21647 434277 434277.434486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9527656010529 0 \N \N f 11301689 \N 1 58098991 0 f f \N \N \N \N 434277 \N 0 0 \N \N f \N 2025-03-18 23:46:00.334 f \N \N \N 0 0 0 0 1 0 0 422604 2025-03-02 15:18:42.06 2025-03-29 22:39:52.685 \N Henry Miller: The Colossus Of Marroussi\n\nIf You want to dive deep into the Aegean/Mediterraenean world this is a must read https://example.com/ 6777 422586 422203.422207.422399.422491.422579.422583.422586.422604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3206069755892 0 \N \N f 408638944 \N 5 163351554 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455401 2025-03-27 01:44:17.906 2025-03-29 22:39:48.906 Hyperinflation In a bygone world, currencies were backed by precious metals such that there was no use-case for forex markets like today. It was trivial to redeem the bank note for its weight in gold.\n\nThis type of system does not work very well when countries are at war (internally or externally) and so you see manipulation of money. Printing more than can ever reasonable be redeemed.\n\nIndia has tried to regulate gold while the US (with executive order 6102) even actively confiscated it, and made ownership illegal. The moment this was complete, the government rebalanced and changed the cost of an oz of gold from $21 to $35. A far cry from the $1800 it is today. But it was a massive haircut for the people of the time.\n\nThe last 50 years or so has been an experiment of sorts. Countries had long experienced inflation whenever they printed more money than they could ever reasonably hope to back up with their precious metal supplies. But here for the first time ever, we were holding up the USD as a global reserve currency and backing it by ... nothing. \n\nSo wait, what does back the dollar? Well essentially it's backed by a debt cycle where people buy treasury bills (< 1 year) or bonds (> 1 year) from the US government and rely on the government to pay back the bond with interest. This essentially means the US government backs the USD by having a military strong enough to ensure that it can always service the bonds that it has issued. \n\nThe US government essentially just prints more money to service the bonds, and prints more money to fight wars. Similar to the monetary expansion that occurred so that we could fight in the Vietnam war. Countries knew that we were spending money that could no longer be backed by sufficient quantities of gold, causing France to come over with a (gun)boat-load of dollars to convert to gold. suspect that the emperor had no clothes on.\n\nEnter the rest of the world. They don't have the luxury of being the world's reserve currency. So essentially everyone's inflation is WORSE than the dollar's. Because the dollar has the highest demand, so it is the least affected by inflation in comparison to other currencies. Even the pound, which used to trade against the dollar 1:4, is now almost on par with the dollar.\n\nThat's not even to say countries with rampant corruption that see the purchasing power of their currency drop like a hammer off a ledge. E.g., at it's inception the Indonesian rupiah was worth 1/4th of a dollar. Now it takes 15,000 rupiah for each dollar. In Sudan, Zimbabwe, Venezuela, Turkey, Argentina and others, extreme inflation is the norm.\n\nIn the US citizens have credit cards, mortgages, PayPal, Venmo, 401Ks, financial advisors, (relatively) low inflation, LITERAL GLOBAL RESERVE currency status. So Bitcoin isn't needed. Some think. And for those at the top, they don't. They're busy profiting from the broken system. Their stock and real estate portfolios grow with inflation.\n\n📸*Hyperinflation of the German Papiermark, the currency of the Weimar Republic, between 1921 and 1923, primarily in 1923.*\n![Imgur](https://i.imgur.com/343h6x4.jpg)\n\n\n| Country | Name | Period | Status | Depreciation against gold |\n| ------- | ---- | ------ | ------ | ------------------ |\n| Zimbabwe | Dollar | 1980-2009 | hyperinflation | 99.999999999997% |\n| Venezuela | Bolivar | 1879-present | hyperinflation | 99.9999999% |\n| Argentina | Austral | 1985-1991 | hyperinflation | 99.99% |\n| Peru | Inti | 1970s-1990s | hyperinflation | 99.99% |\n| Germany | Papiermark | 1914-1924 | hyperinflation | 99.975% |\n| Turkey | Lira | 1844-present | multiple economic crises | 99.92% |\n| Indonesia | Rupiah | 1949-present | multiple devaluations | 99.73% |\n| UK | Pound | 1694-present | multiple devaluations | 99.32% |\n| US | Dollar | 1792-present | multiple devaluations | 97.05% |\n\n \N 15925 \N 455401 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.29136445275262 0 \N \N f 30609694 \N 1 208222599 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415637 2025-02-24 23:47:36.113 2025-03-29 22:39:48.906 History of Cryptography in the U.S. ![Munitions_T-shirt_(front).webp](https://m.stacker.news/9072)\n\nWe should never forget that the U.S. government tried to limit export of cryptography:\n\n> EFF's landmark legal victory in [Bernstein v. Department of State](https://www.eff.org/cases/bernstein-v-us-dept-justice) greatly reduced the burdens and barriers to exporting open source encryption software, including export through publication on the Internet.\n>\n> Beginning in 1995, EFF represented Daniel J. Bernstein, a Berkeley mathematics Ph.D. student, who wished to publish an encryption algorithm he developed in the form of source code and a paper describing and explaining the algorithm, called Snuffle.\n>\n> Under the applicable laws at the time — the United States Munitions List of the International Traffic in Arms Regulations (ITAR), and later the U.S. Export Administration Regulations (EAR) — encryption was considered a military technology whose export was strictly regulated in order to preserve a competitive security advantage for the U.S.\n>\n> As a result, the law prohibited publication without prior approval of the government, and that prior approval was generally refused except for extremely weak encryption. Not only did these regulations chill the speech of individuals like Daniel Bernstein, they hampered American business by limiting the export of encryption technologies and methods. Then, as now, EFF saw clearly the importance of protecting speech online and the necessity of encryption to building a web with privacy and security protections.\n\n-- [U.S. Export Controls and “Published” Encryption Source Code Explained, 2019](https://www.eff.org/deeplinks/2019/08/us-export-controls-and-published-encryption-source-code-explained)\n\nand encryption to DES by pretending it's secure enough until they couldn't anymore because the EFF built a DES Cracker for less than $250,000 which could crack DES encryption in less than 3 days:\n\n> The Electronic Frontier Foundation (EFF) today raised the level of honesty in crypto politics by revealing that the Data Encryption Standard (DES) is insecure. The U.S. government has long pressed industry to limit encryption to DES (and even weaker forms), without revealing how easy it is to crack. Continued adherence to this policy would put critical infrastructures at risk; society should choose a different course.\n> \n> To prove the insecurity of DES, EFF built the first unclassified hardware for cracking messages encoded with it. On Wednesday of this week the EFF DES Cracker, which was built for less than $250,000, easily won RSA Laboratory's "DES Challenge II" contest and a $10,000 cash prize. It took the machine less than 3 days to complete the challenge, shattering the previous record of 39 days set by a massive network of tens of thousands of computers.\n\n-- [EFF DES Cracker Machine Brings Honesty To Crypto Debate, 2016](https://www.eff.org/press/releases/eff-des-cracker-machine-brings-honesty-crypto-debate)\n\nBtw, DJB's work is still very relevant. We're still in the [migration](https://blog.cloudflare.com/it-takes-two-to-chacha-poly/) from AES to [ChaCha20](https://cr.yp.to/chacha/chacha-20080128.pdf) in various areas. One of the biggest advantages of ChaCha20 is that [it's faster in software than AES without compromising on security](https://crypto.stackexchange.com/questions/34455/whats-the-appeal-of-using-chacha20-instead-of-aes) (it's even more secure). For example, [NIP44](https://github.com/nostr-protocol/nips/blob/master/44.md) ([merged just a few days ago](https://github.com/nostr-protocol/nips/pull/746)) uses ChaCha20. \N 9611 \N 415637 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 28.1260143598151 0 \N \N f 1926017093 \N 14 90839784 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 436437 2025-03-13 15:03:12.681 2025-03-29 22:39:52.685 \N ![v](https://scontent-mrs2-1.xx.fbcdn.net/v/t39.30808-6/336683602_684781170085372_648210238564175432_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=730e14&_nc_ohc=5Q-VKlgXbdgAX94EGiN&_nc_ht=scontent-mrs2-1.xx&oh=00_AfA9zPMh4wNLVYFAftvIXSG4p54icS7yeXN6r0-EqcgQgQ&oe=644350CB) https://example.com/ 9169 435217 435217.436437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.98736301558887 0 \N \N f 135564180 \N 2 118939224 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-20 10:15:30.607 f \N \N \N 0 0 0 0 1 0 0 455524 2025-03-27 05:24:37.844 2025-03-29 22:39:52.685 \N Here's a joke about the Efficient Markets Hypothesis:\n\nTwo economists, Milton and Murray are walking down the street. Murray says to Milton "Hey look, a $50 bill." Milton responds "That's impossible. If there were $50 just sitting on the street someone would have picked it up." https://example.com/ 12738 455486 455486.455524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.97101070244 0 \N \N f 120408628 \N 1 20019307 0 f f \N \N \N \N 455486 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400711 2025-02-12 13:16:26.592 2025-03-29 22:39:52.685 \N AI4ALL Hackathon we're currently running, it's remote and ends July 31st. Ton of use cases for bitcoin within scaling generative AI because the API calls when you hit against GPT/Midjourney/any of the more cutting edge models are so expensive, you need to wrap them in micropayments.\n\nFor Fedi specifically seeing more federations popping up in the wild. Fedimint is going to have a release in the next couple weeks so people can start setting up their own mainnet federations more easily and building more fedimint modules. https://example.com/ 12821 400447 400447.400711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.69039069164755 0 \N \N f 172329300 \N 1 159034695 0 f f \N \N \N \N 400447 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424921 2025-03-04 13:40:21.373 2025-03-29 22:39:52.685 \N "During World War II, when the Japanese Empire invaded regions throughout Asia, they would confiscate hard currency from the locals and issue their own paper currency in its place, which is referred to as “invasion money“. These conquered peoples would be forced to save and use a currency that had no backing and ultimately lost all of its value over time, and this was a way for Japan to extract their savings while maintaining a temporary unit of account in those regions." \n\nLyn Alden is a treasure - this is exceptionally well written. \n\nMonetary policy being used as a weapon of war is a grotesque yet revealing portrayal of the perils of Fiat money. https://example.com/ 21383 424907 424571.424907.424921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.9605313562894 0 \N \N f 1721459769 \N 11 857857 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454794 2025-03-26 15:32:36.565 2025-03-29 22:39:52.685 \N "Easy step-by-step guide"\n\nStep 1: obtain > 1.0 BTC ... https://example.com/ 16387 454701 454701.454794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6460082769651 0 \N \N f 227233741 \N 3 127182102 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443105 2025-03-19 03:59:54.281 2025-03-29 22:39:48.906 ALBY HUB TUTORIAL - Cloud or self hosted lightning node setup SIMPLIFIED! \N https://www.youtube.com/watch?v=2Z1BzwxdP4I 1044 \N 443105 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 13.9396076239727 0 \N \N f 2703672692 \N 20 159611015 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:48:48.836 f \N \N \N 0 0 0 0 5 0 0 401054 2025-02-12 17:14:06.248 2025-03-29 22:39:52.685 \N Stepping into the role as a founder. As a first time founder, it was a new way to look at working a job, and looking back on it now its not something you can prepare for until you are in the driver seat. Looking back on it though, its fundamentally changed my life for the better and don't regret it! https://example.com/ 21079 400994 400994.401054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.2888571911775 0 \N \N f 237718099 \N 1 227292782 0 f f \N \N \N \N 400994 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435181 2025-03-12 14:11:05.561 2025-03-29 22:39:52.685 \N ![Buy Bitcoin](https://pbs.twimg.com/media/Fg1bKD2WAAE6zk-?format=jpg&name=medium) https://example.com/ 21067 435030 435030.435181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.192418528299 0 \N \N f 15261243 \N 1 124244311 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 16:57:07.953 f \N \N \N 0 0 0 0 1 0 0 443572 2025-03-19 12:21:21.806 2025-03-29 22:39:52.685 \N My 30 were fun, single and living with in new places.\n\nIt felt good to be adventurous and not worries about behaving as an adult.\n\nGood times https://example.com/ 1785 443490 443490.443572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.901230178537418 0 \N \N f 34357684 \N 1 157681194 0 f f \N \N \N \N 443490 \N 0 0 \N \N f \N 2025-03-26 05:38:33.675 f \N \N \N 0 0 0 0 1 0 0 307592 2024-11-25 08:19:14.956 2025-03-29 22:39:52.685 \N Turning Arnold into a Bitcoin advocate:\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/01/Bitcoin-Terminator-1.png)\n![](https://bitcoinscoresby.com/wp-content/uploads/2023/03/Bitcoin-Running-Man.png) https://example.com/ 18306 307576 306830.306832.307574.307576.307592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9966398844697 0 \N \N f 416630148 \N 2 56271647 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421739 2025-03-01 23:50:41.485 2025-03-29 22:39:52.685 \N CRAIG WRIGHT IS A FRAUD. HODLONAUT IS A HERO.\n\nI'm still being sued by Craig Wright along with a bunch of other devs. So this win directly affects me. Best case is some prosecutor finally does their job and arrests Craig Wright for perjury. https://example.com/ 8945 421738 421567.421722.421731.421733.421735.421737.421738.421739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3442305583303 0 \N \N f 146910345 \N 1 71616833 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437552 2025-03-14 15:50:53.292 2025-03-29 22:39:52.685 \N Regardless of if it is openai or others, AI is not slowing down. That plus a merging of AI and machines will remake everything. It is why that productivity gain MUST flow to society in the form of lower prices (through Bitcoin) OR it will be concentrated and used over us. https://example.com/ 17722 437551 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5071720177766 0 \N \N f 630774446 \N 5 138576324 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441833 2025-03-18 10:20:42.325 2025-03-29 22:39:52.685 \N As a reminder to folks, here you can change your default tip: https://stacker.news/settings https://example.com/ 5661 441827 441695.441823.441827.441833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2964256639885 0 \N \N f 147352654 \N 1 241692946 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435664 2025-03-12 21:21:30.391 2025-03-29 22:39:52.685 \N > What if we \n\nWho is "we"?\n\nStart there. https://example.com/ 21518 435516 435516.435664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5559114282365 0 \N \N f 324056373 \N 3 194547799 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 2025-03-19 14:56:44.751 f \N \N \N 0 0 0 0 2 0 0 421018 2025-03-01 11:01:24.123 2025-03-29 22:39:48.907 The Blog Hustle ## A Personal Journey\n\nI recently created a blog using npub.pro to consolidate my Nostr and Stacker News longform posts in one place. It's been a fun experiment, with surprising results. \n\n![](https://m.stacker.news/64425)\n\nhttps://thebloghustle.npub.pro/\n\nPrimal now displays my SN and Nostr posts through a selection on my profile screen, and users are able to highlight, zap, and comment on the highlights of my articles. \n\n![](https://m.stacker.news/64424)\n\nI need to write more, the blog will be something of an open diary, detailing my personal experience with Nostr and bitcoin.\n\n## Why Nostr Outshines Substack and Medium\n\nNostr in my opinion has already surpassed the legacy blogging platforms. Functionalities like zapping, highlighting, and commenting, are fun and cool, but when added to Nostr's interconnectivity something magical appears. I had no idea my cross posted SN longform posts would be found in npub.pro, and I didn't know npub.pro had added longform support. Primal 2.0 was pretty much the nail in the coffin, the most popular Nostr client just added a reads section, supporting longform content. Nostr freaks like to talk about sovereignty and decentralization and owning your online identity, but the main attraction will probably be zaps, interconnectivity, and a more optimal UX.\n\nNpub.pro, Cypher.space, Blogspot.io, Highlighter, Stacker News, Primal 2.0 and Yakihonne, are just the beginnings, but offer an amazing glimpse at what the future has in store. Keep in mind that these sites are sharing an average of around 10k daily active users, we'll see an explosion of content and a diversity of content because these platforms offer incentives and functionalities that you don't see elsewhere, as bitcoin becomes less taboo, and as the early adopter phase of these products comes to a close, we'll probably see v4v censorship resistance and digital ownership immensely supporting the underdog, the same underdog that just came over for the ease of use and hype.\n\nSo with that being said, highlight away. Let me know what you guys think about blogging on Nostr and if you think these are just the ramblings of a madman, or bland and obvious observations. \n\nThanks,\nHustle \n\n\n \N 18177 \N 421018 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.36961348503338 0 \N \N f 205887832 \N 2 154534179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436303 2025-03-13 13:06:15.761 2025-03-29 22:39:52.685 \N All the Dems have to do is pick anyone under 65 and they will win. The only reason no one has noticed Trump’s mental decline is because he never made much sense anyway. A magic 8 ball has a more cohesive thought process than the orange man. https://example.com/ 17209 436093 436093.436303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.31264246431662 0 \N \N f 752837878 \N 5 84314913 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:30:15.902 f \N \N \N 0 0 0 0 2 0 0 403974 2025-02-15 12:18:03.031 2025-03-29 22:39:52.686 \N This is a really tough question. Our thinking is that this is user experience driven and by making liquidity as easy as possible to access (and access quickly) will be the biggest driver of marketshare. We also want to have the depth of liquidity and that's stemming from being interoperable across implementations.\n\nThere's a few things that we're optimizing for with Magma: Speed, User Experience, and Reliability. It may not the cheapest place to get liquidity or the most on-chain efficient, so users that want to optimize for those qualities will likely choose other options. But lightning network operator time is precious and probably the dominant cost of running a routing node. https://example.com/ 965 403816 402674.402749.403816.403974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9538216123918 0 \N \N f 321359874 \N 2 161814732 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 409760 2025-02-19 20:45:49.342 2025-03-29 22:39:52.686 \N I agree. No ChatGPT please. \n**Stop trying to break the beautiful culture we have at stacker.newst @k00b!**\nIf you want growth, I still think you just need to find a way to bring people over from /r/bitcoin and twitter. It's that easy. https://example.com/ 21349 409708 409708.409760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9981730659994 0 \N \N f 383586315 \N 2 64273157 0 f f \N \N \N \N 409708 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443099 2025-03-19 03:49:49.324 2025-03-29 22:39:48.907 Do you support open source projects? The v4v movement is becoming popular, but still many people using free and open source applications don't support the authors, they just consume what they produce.\n\nIf we want to distance ourselves from the big commercial IT corporations, we need to support free software developers. \nDo you donate to those whose applications you use? \N 1720 \N 443099 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 25.0020021686806 0 \N \N f 1499018123 \N 10 49230088 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 05:48:47.838 f \N \N \N 0 0 0 0 4 0 0 451374 2025-03-24 14:22:23.627 2025-03-29 22:39:48.907 Zap to Zero Day 28 | Internet Friends # Zap to Zero Day 28 | [Internet Friends](https://stacker.news/items/393226)\n\nhttps://www.youtube.com/watch?v=BM6kMHH-G64\n\n> **Is that bad poetry or is it supposed to mean something?**\n\n[I think almost everybody is tired, aren't they? Are you tired? I'm tired.](https://www.youtube.com/watch?v=l5NK8zdIK-g&t=1058s)\n\nI'm tired because I woke up before the alarm rang and I lost my sense of time again. I only knew it must be before 6 am since that's when my alarm would ring. It was before 5 am.\n\nI like waking up without an alarm. Makes me feel in control; the master of my senses. Even though it might be absurd at closer inspection. And even though I knew I didn't get enough sleep since I [did indeed stay up late](https://stacker.news/items/400128) and I know about [the power of good sleep](https://github.com/stackernews/stacker.news/pull/765#issuecomment-1907650129).[^1] But I started my day with reading a book since that's how I felt in that moment. That's what I wanted to do. Maybe that's what control is about?\n\nI no longer want to continue this series as it is. I have been writing a lot per day. I still have a lot that I want to write about and I will. But not in this format. Not necessarily daily.\n\nWriting daily made me focus too much on finding out which thing of all these things in my head I want to write about today and especially how. But I don't want to write for the sake of writing about anything. I want to write to think, reflect, experiment, be consistent and probably many other things I have yet to discover; but most importantly to have fun. I want my essays to have deeper meaning. I want my essays to have so much meaning that there is always more unintended meaning to be found if you read it again. But I also don't want to force any meaning into them. I want that every reader can find their own meaning inside. I want my essays to be like song lyrics—or just art in general. I think art is whatever you make out of it.\n\nI did have a lot of fun and I am still having a lot of fun but I want to have some other fun, too. I learned a lot about me, you, us and the past, present and future.\n\nAnd the more I write about what I think about, the more I feel like Joffrey who has to tell everyone that he's the king but that doesn't make him a king—quite the opposite actually. It's like people telling other people over and over again that they don't care. But does this make it true? Quite the opposite is true I believe. I think I mentioned in the past here and there that I don't care about other people or what they think anymore, [especially when these people are just wasting my time](https://stacker.news/items/349363).\n\nThis is still true to some degree but it's also not true to some degree. It's [an incomplete statement](https://plato.stanford.edu/entries/goedel-incompleteness/) like almost any [written statement](https://www.goodreads.com/work/quotes/4587-henry-miller-on-writing). I do care what other people think about me. How could I not? [We are insanely social creatures as much as we pretend that we aren't](https://youtu.be/l5NK8zdIK-g?si=ssvg4wAVuZVW45Zh&t=2006), especially me in the past and [in the moments where I needed to accept but pushed that fact away the most](https://www.youtube.com/watch?v=TVnx5--j8vk). I hope writing this looks easy but I also hope it doesn't since it's not. It's complicated. It's easier than I thought it would be though. I came to realize that most things must look harder than they truly are once you started. You just need to start. And sometimes, [you need to say no to some things](https://stacker.news/items/376337) to start other things. Maybe that's always the case.\n\nI consider [this experiment](https://stacker.news/items/369003) to have been a great success. Points were proven that I didn't even intend to proof. I didn't even write blog posts (even though some told me they think of this as [my blog](https://ekzyis.com/blog/)) and yet [fascinating people](https://stacker.news/items/398752) [routed interesting stuff to my inbox](https://stacker.news/items/304309).\n\n---\n\n> **If (you like) this, then (you might also like) that.**\n\n— (Recommendation) Algorithms, [_Everywhere_](https://web.archive.org/web/20240102112544/https://www.scientificamerican.com/article/how-recommendation-algorithms-work-and-why-they-may-miss-the-mark/)\n\nI have a lot of things planned for the near and far future. For example, I want to keep writing, keep learning piano, start with Taekwondo to get back in shape and [continue working on](https://stacker.news/items/395805) [delphi.market](https://delphi.market/), all while keeping you entertained on SN.\n\nBut I am the most excited about another thing I didn't mention above. I have been thinking about it more and more recently and when I can't stop thinking about something, I tend to think that it could indeed be something worthwhile to explore more in actual code. For now, it's just a single line of code in my mind. But if that line is inserted at the right place, it could have [emergent properties](https://sciencing.com/emergent-properties-8232868.html). I also think it could be one of these actions with a 1% success rate of becoming something huge[^2]:\n\n> There's a chance that it's not failures that define anything but rather forming your life around trying a ton of things with a specific percentage chance. If you took an action that took one year and had a 60% success rate at something huge, vs something that took a day and had a 1% success rate as something huge, the ones that take the smallest amount of time, thus a person makes the most amount of failures, is more about what defines eventual success.\n>\n> I think about this a lot when it comes to MVPs in a startup.\n\n— @TonyGiorgio, [#396529](https://stacker.news/items/395797?commentId=396529)\n\nI would love to share more here and now but the surprise kind of is part of the point. We just have to wait until the time has come to deploy that line and you will have to trust me that I will do this rather sooner than later. If you liked this series, I am sure you will like that line, too.\n\nThis was just the beginning.\n\n![Figure_3.png](https://m.stacker.news/13705)\n\n_Yep, as mentioned, it has been a great success._\n\n---\n\n## Superzap\n\n### 1. [A brief monologue on value4value](https://stacker.news/items/240442)\n\nI didn't intend to include any superzap today. But I found this post from @WeAreAllSatoshi while searching for [this post](https://stacker.news/items/349363) and I didn't mention @WeAreAllSatoshi here yet. That's how good our search has become. It shows you the content you need to see, not necessarily the content you're looking for, lol.\n\n---\n\n## Songs\n\nhttps://www.youtube.com/watch?v=lqoTZ31Zr_Y\n\n> Who do you trust?\nTell me who do you trust?\nI see 'em coming at us\n[But when the ](https://www.youtube.com/watch?v=YlUKcNNmywk)[Molotov drops](https://www.youtube.com/watch?v=jjjaU5kQV8k)\nTell me who do you trust?\n>\n> Everywhere I go\nI see people passing by\nThey keep staring back at me\nLike some freak in paradise\nAre you people savage?\n[Pull the knife out from my back](https://www.youtube.com/watch?v=BpmJh2CjSIA)\nIn the company of rich\nI’ll take [loyalty over royalty](https://www.youtube.com/watch?v=ZWijx_AgPiA)\n\nhttps://www.youtube.com/watch?v=luJJBeCFeM0\n\n> Come now, surely we can be friends\n> I know so much about you\nI love you. Look at everything I've done for you\n> You'd be nothing without me\n> Why won't you answer me?\n> I bet you're busy talking to some fucking slut\n> Fucking skank\n> Is she hotter than me?\n> Would you fuck me?\n> Are you gay?\n>\n> You blocked me on Facebook\n> And now you're going to die\n\n---\n\nSo short my dear internet friends. [We'll always meet one more time](https://www.youtube.com/watch?v=FGBhQbmPwH8). [Always harder, better, faster, stronger](https://www.youtube.com/watch?v=gAjR4_CbPpQ) :)\n\n---\n\n[^1]: I didn't eat ice cream though.\n\n[^2]: Or I just really didn't get enough sleep today, lol. \N 9183 \N 451374 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.67176688355791 0 \N \N f 9536548 \N 2 246126392 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435465 2025-03-12 17:45:19.461 2025-03-29 22:39:52.686 \N What the hell is wrong with me? Why am I so entertained by political chaos? https://example.com/ 14909 435458 435458.435465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7471117214101 0 \N \N f 558667307 \N 3 146840491 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N 2025-03-19 14:17:37.741 f \N \N \N 0 0 0 0 1 0 0 422535 2025-03-02 14:23:55.616 2025-03-29 22:39:52.686 \N It's worth a shot. People on nostr ignorant of bitcoin immediately wanted to get zapped sats without really knowing what they were. Same thing happened on fountain with non bitcoin podcasters. https://example.com/ 11523 422499 422056.422470.422497.422499.422535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1774373071951 0 \N \N f 120019509 \N 2 43466599 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448822 2025-03-22 22:33:10.264 2025-03-29 22:39:52.929 \N I don't think so. A stacker like that would have a low trust score, so their zapping wouldn't move the needle much on posts. Also, zap size is counted logarithmically, so it becomes very expensive to elevate content as a single zapper.\n\nA handful of downzappers could take down such a whale. https://example.com/ 4314 447892 447892.448822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1626529115034 0 \N \N f 457408287 \N 4 236492341 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 430561 2025-03-09 10:19:27.868 2025-03-29 22:39:52.929 \N A chart always helps.\n\nhttps://imgprxy.stacker.news/YYUGroBI5-KQUB5d6IYoaQjy0gZ_zjbY-FzevfpkCNg/rs:fit:1920:1080/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy80MzAxNw\n\n*https://www.reuters.com/markets/us/us-job-openings-edge-lower-june-2024-07-30/* https://example.com/ 2596 430330 430330.430561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2726274736614 0 \N \N f 539398962 \N 3 120884602 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410721 2025-02-20 16:34:48.721 2025-03-29 22:39:52.929 \N *"I must also mention that I’m a person who has trouble living in the moment. My brain is constantly thinking about and preparing for future events."* I wish there was a switch to turn it off. There really is no escaping it I swear. https://example.com/ 14939 410615 410615.410721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.12438991278417 0 \N \N f 162512302 \N 1 100808047 0 f f \N \N \N \N 410615 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423701 2025-03-03 14:45:39.838 2025-03-29 22:39:52.929 \N If you're looking for entertaining fiction, I really like The Bonfire Of The Vanities, by Tom Wolfe. Really captures the wall street "masters of the universe" mood of the 1980s. https://example.com/ 5003 423321 423314.423321.423701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13544028153341 0 \N \N f 119864224 \N 1 136303565 0 f f \N \N \N \N 423314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451014 2025-03-24 10:52:26.057 2025-03-29 22:39:52.932 \N Yes, pretty much have similar thoughts.\n\nI remember a few years ago UDI was trolling Saylor about not knowing about lightning. Saylor paid a 1m sat zap to the best meme and Shirehodl won.\n\nBut I also remember a time when MicroStrategy was meant to introduce LN for company employees micro rewards or something like that. I guess they never went through with it.\n\nThose that contribute to bitcoin will have less sats than those that just hodl and benefit from the improvements. Still deep down you will be content that you played your part in the success of bitcoin.\n\nAnd on that note, although Saylor doesn't seem to spend or contribute in that way, his contributions are getting bigger entities to join the party. Some might not see it this way, but it was bound to happen anyway if Bitcoin were to be successful. https://example.com/ 910 450672 450649.450652.450659.450664.450666.450670.450672.451014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.22603419379794 0 \N \N f 321972290 \N 2 146430817 0 f f \N \N \N \N 450649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404237 2025-02-15 17:13:46.392 2025-03-29 22:39:52.934 \N I remember when I started to write, I only wanted to have 1k readers; when it reached 1k, then you wanted to have 2k, 5k, 10k... feels the same with Bitcoin, it's strange. https://example.com/ 4035 404186 404095.404186.404237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.3250337274449 0 \N \N f 67312934 \N 1 19228629 0 f f \N \N \N \N 404095 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447892 2025-03-22 08:47:36.765 2025-03-29 22:39:48.907 Operation Saylor - Episdoe 1/120 # Operation Saylor Episode - 1/120\n\nHi there, welcome to Operation Saylor series.\n\nI have decided to take a loan to invest in Bitcoin. I will make a series of monthly updates here to track the evolution of this operation I have dubbed Saylor (in honor of [Michael Saylor](https://twitter.com/saylor), whose bold bet on Bitcoin and willingness to promote it where strong inspirations for this adventure).\n\nMy goal with sharing this experience is to allow everyone to learn whatever can be learnt from my plan and execution. I draw inspiration from [Jamespunk's great blog on his bitcoin DCA path](https://er-bybitcoin.com/), which was and is a great example of how a real life, first person narration can be very instructive. I hope this series can fulfill a similar role for this different investment approach.\n\nAs this is the first episode, I'll provide some context so that you understand better this and future updates.\n\n## The Operation\n\nOn July 2022, I took a loan with my usual bank. This is an uncollateralized personal loan with a fixed amortization schedule. The main figures:\n\n- Principal: 33,000€\n- 120 installments in 120 months (10 years)\n- APR: 5.99%, APY: 6.16%\n- Each installment will be of 366.20€\n- Total interest paid will be 10,944.33€\n- Early amortization penalty of 1%\n- No opening costs\n\nAs this loan has no collateral, there is no margin call or liquidation of any sort. The loan is completely orthogonal to whatever the evolution of bitcoin's price is.\n\nDuring the first six months, my plan is to swap 5.000€/month into bitcoin. I do this instead of simply lump-suming everyting today to softly minimize the risk of picking a terrible entrypoint.\n\nAfter these six months, I will have a bitcoin stack of a certain amount and around 1.000€. From that point on, the plan is to:\n\n- Pay the installments each month.\n- Whenever the € stash goes very low, sell a bit of bitcoin back for € to pay for the next installment. Goal here is to keep as much value in bitcoin as possible and only go back to € tactically to cover the installments.\n- Repeat until 10 years have passed and the loan is paid backed.\n\nAs time passes, two scenarios can take place:\n\n- In the SHTF (shit hits the fan) scenario, the bitcoin stack of Operation Saylor goes dry before the 10 years have passed and I am left with 0 btc and some outstanding debt with the bank. I will be forced to keep paying the installments from my personal pocket and Operation Saylor will have turned into a net negative for me. This could happen both in case a black swan completely destroys bitcoin and its value, or simply because bitcoin's market value doesn't go up fast enough to make a net return.\n- In the Moon scenario, I manage to pay all the installments by taking small bites of my bitcoin stack and I still have some amount of btc left in the end. If this is the case, I will have successfully earned value with my bet, and I am left with a nice stack of some unknown value. This would happen in a scenario where bitcoin behaves the way it typically has for the past 10 years (or with a slightly watered-down behaviour in terms of both return and volatility, but still trending upwards) and I get lucky with the volatility in the early months and years.\n\nMy hope is that Moon scenario will happen, but I am very well aware that SHTF scenario is a serious possibility.\n\n## Are you crazy stupid? Never borrow money for investing\n\nI am aware that there is a not negligible probability of losing several thousands of euros with this operation. But, after carefully judging, I think there is also a significant chance of getting a great upside. After playing with different simulations and hypothesis, I decided that the expected outcome looked net positive and decided to pull the trigger.\n\nI am also taking a calculated risk. Given my personal finances and life circunstances, the SHTF scenario would be a nasty blow but not a death sentence. Even if I get hacked on day 1 and lose all the money, I still expect to have a plate on the table every day and a roof over my head.\n\n## Why make it a series\n\nThere are several motivations to doing this.\n\n- Explaning and documenting my plans helps me reflect on them deeply. It's a bit like a peer review, with the only difference I am reviewing my own plans.\n- As discussed before, I find personal, real life stories of bitcoiners and their actions fascinating. Macro\n environment analysis, papers, technical and economics books,... They are all great reads. But I think sometimes we also need simple stories from regular people like us, with all the crisp of the real life and down to earth practical issues and details. Bitcoin is, after all, a grassroots, bottom-up phenomenon. It is the small actions of you, me and everyone else which compose the emergent behaviour of the network.\n- I think that, on most forums and communities, there is a dogmatic rejection to any kind of idea related to borrowing money for investing. I am the first one to agree that, for most people, most of the time, it is a terrible idea that should be avoided. But it is also my belief that under the right circumstances, it is a valid strategy. And so I am slightly pissed off because this automatic, parrot-like "NeVEr BorRoW tO INvEsT" comments hijack any kind of honest, open-minded debate around this option. I hope that these series can counterbalance this and get people discussing in a calm and thoughtful manner the possibility of doing something similar to what I am doing. If the angry mobs hijack my posts anyway, at least I hope that whoever is curious about the outcomes of taking this seemingly crazy and bonkers course of action can ignore the deniers and simply read my story.\n\n## Why not simply DCA with a part of your salary isntead\n\nI am. This operation happens on top of my already regular DCA schedule. So you could say I am doubling down.\n\nAs time passes, comparing Operation Saylor to having DCA-d the amount equal to the paid installments will be an interesting analysis.\n\n## So should I do this as well\n\nThe answer that most probably fits your circumstances is no.\n\nBut, depending on your personal finances, risk aversion, other investments and what kind of loans and conditions you have access to, there is a chance that borrowing to invest might be a suitable option for you.\n\nI invite you to run your own analysis and put a lot of thinking into this decision. During the series, I will share my own train of thought and the numbers I ran before pulling the trigger.\n\nIf you reached this far, thanks for reading. I'll be happy to discuss further in the comment section. You can find below the numbers that I will be posting regularly. I will also post some thoughts/ideas/whatever relevant comes to mind on each episode. But for this month I will close here. I already stole enough of your time and attention.\n\n---\n\n## Stats\n\n- BTC stack: 0.2083 BTC\n- € stack: 28,000 €\n- Current total value in €: 32,761 €\n- € into BTC: 5,000 €\n- Paid back to bank: 0 €\n- Outstanding debt: 43944.33€\n- Installments to go: 120\n\n \N 777 \N 447892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7607586699373 0 \N \N f 5507689882 \N 43 245777286 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 15 0 0 448862 2025-03-22 23:39:11.232 2025-03-29 22:39:52.929 \N ![20240119_231115.jpg](https://m.stacker.news/13320) https://example.com/ 12965 448851 448851.448862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.17476230056131 0 \N \N f 219076558 \N 1 33059848 0 f f \N \N \N \N 448851 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430553 2025-03-09 10:14:16.196 2025-03-29 22:39:52.93 \N My eyes are just burning, seeing that in a video presentation by a bitcoiner...\n*USD over LN*\n![btc-over-LN.JPG](https://m.stacker.news/19324)\n\nWhen bitcoiners will stop talking about USD?\nFFS Bitcoin network is all about sats not USD !\n\n[![wngmi.jpg](https://i.postimg.cc/mkCwf122/wngmi.jpg)](https://postimg.cc/p5V8KTFg) https://example.com/ 19502 414068 414068.430553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0252525481162 0 \N \N f 142957020 \N 2 236741948 0 f f \N \N \N \N 414068 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443259 2025-03-19 07:58:29.97 2025-03-29 22:39:52.929 \N Started a 21-day challenge in which I aimed to learn something new about Bitcoin or interact with its ecosystem every day. I would also record my progress on Stacker News.\n\nDay 9 - Gathered various suggestions on how parents can raise BTC-proud children. One idea about having BTC stickers all over the place stuck in my mind. Then I had a brainwave. WhatsApp just introduced a feature in which we could leverage AI to create stickers in our chats. Why don’t I create some BTC stickers to naturally assimilate into the Bitcoin Standard? https://example.com/ 5694 441878 441695.441851.441862.441878.443259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0439518422936 0 \N \N f 272687198 \N 3 236738878 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442141 2025-03-18 13:01:30.787 2025-03-29 22:39:52.932 \N @pillar with the [Operation Saylor Episode](https://stacker.news/items/47539) series https://example.com/ 20254 442135 441695.441712.441750.441801.441803.442135.442141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7599578508836 0 \N \N f 162255993 \N 2 116668259 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422022 2025-03-02 07:53:39.686 2025-03-29 22:39:52.932 \N Give us a flavour of the user experience you guys envisage.\n\nIs it drastically easier and different than what we have available today?\n\ni.e. register > pay > qr to connect > automate https://example.com/ 16354 422014 422014.422022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.55257474639473 0 \N \N f 339234768 \N 2 69197043 0 f f \N \N \N \N 422014 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455651 2025-03-27 08:48:44.757 2025-03-29 22:39:52.934 \N Super interesting perspective. Seems almost oxymoronic to think central banks holding bitcoin could be a thing, but I can relate to the greed/stupidity sentiment. It means things are anything but straightforward, and it results in plenty of oxymoronic realities, haha\n\nSadly, I think there will be a long phase of people thinking seed phrases are like passwords, but after a ton of bitcoin is lost, I think that's one of the few things that can't last. People will absolutely have to have SOME concept of keeping a crypto wallet secure before things can truly stabilize. \n\nPersonally, I think it will start with HWW / backup + PIN / backup + password / backup, and will end with multisig "savings" + lightning "checking", or people will just rely on lightning 100% https://example.com/ 17162 455649 455649.455651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.717217781277206 0 \N \N f 89969922 \N 1 20572311 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 440790 2025-03-17 14:37:12.078 2025-03-29 22:39:52.934 \N this is a really good question. difficult to answer, since i don't know what all other bitcoiners believe, even the most popular/influential ones.\n\nthe mind-blowing realization that really made bitcoin click for me was the epiphany that it solves Triffin's dilemma. Triffin's dilemma is an old paradox in macro economics was pointed out by an economist named Robert Triffn in the early 1960s in front of Congress, most of his work had been exploring the interlay of global reserve, currencies, and how they rise and fall, and he famously had predicted that the US dollar would lose reserve currency status because of the fundamental flaw in its design. \n\nEssentially, global reserve currencies have demand outside of the issuer country, which creates a dilemma for the holder of the global reserve currency. They have to choose to either print and meet this demand or not. If they print, they must export more currency units than they import. They have to run trade deficits and print more than they otherwise would in order to keep the global economy running. If they don't do that, then he predicted that there would be a global deflationary crisis because there wouldn't be enough currency units going around to fund global trade be held as forex reserves or settle international payments. \n\nHowever, this problem only exists for centrally issued currencies. Bitcoin completely breaks the dynamic by being a non-centrally issued currency, instead issued by a decentralized system, which means that it not only solves the dilemma it obviates the need for it ENTIRELY.\n\nThis makes bitcoin the perfect world reserve currency for the 21st-century and strips away the superpower hegemonic status of the USA or any other power who wants to rise and dominate the global financial system.\n\n![](https://m.stacker.news/48334)\n https://example.com/ 959 440727 440727.440790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.98480450867572 0 \N \N f 147188333 \N 1 94054627 0 f f \N \N \N \N 440727 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457293 2025-03-28 11:42:22.323 2025-03-29 22:39:48.907 Jaromil's 2011 Bitcoin Manifesto *I found this [thing genjix (Amir Taaki) posted on bitcointalk in 2011](https://bitcointalk.org/index.php?topic=5671.msg83386#msg83386). I find it fascinating to see how early bitcoiners were thinking about the project and what it was for. He says it is from his friend jaromil, who I wasn't able to find on bitcointalk. I particularly enjoyed his comment that emerging technologies should not be judged by the sensationally bad taste if early adopters. Give the whole thing a read, it's a different perspective than you usually hear.*\n\n\n> > bitcoins - isn't this simply a distributed structure to do capitalism with?\n> \n> That's not even the worst you can do with it. you can do money laundering, buy drugs online and sex toys, all anonymously. but that's not the point, because despite the coercion imposed by all kinds of regulatory systems so far, also current official monetary systems are full of that shit, on top of the capitalist pie.\n> \n> Emerging technologies should never be judged by the sensationally bad taste of early adopters. it's like being concerned about the shit that fertilizes some beautiful flowers, wasting their seeds.\n> \n> What really bitcoin is, I finally understood on the 6 april (which somehow always ends up being a magic day, eh!): this is now the end of the *flow capitalism*, which consists of the monopoly on transactions,\nthe hegemony of banks on the movement of values and not just their storage, this middle-man mafia strangling the world as we speak.\n> \n> How right are now those South American countries asking the "taxation of transactions", an argument refrained in many speeches of the companeros. They studied the system and understood that there is a\ncrucial problem there, that needs to be solved urgently. Yet i'd argue here taxation on transaction cannot be the solution. The solution is to eliminate the flow capitalists.\n> \n> If i want to give you money i'll give it to *you*. me and you, period. its fine that we'll pay our taxes for our communities, don't get me wrong this is not a tea bagger argument. its just not right that all what we do is in the hands of a third party, that has been caught cheating already many times: look at what happened at the paypal accounts of the Iraqi linux user group back in 2004, or even more recently to Wikileaks.\n> \n> We don't need those fat cheaters to be in between our value transactions anymore; the flow capital has played its disgusting role in the little laps of history for which it has been needed, now sadly these people won't give up what they have accumulated, so it makes more sense to leave them alone and multiply more monetary systems that work efficiently across diverse networks and that rely on the neutrality of a cryptographic authentication.\n> \n> the death of the flow capital is a new stage for the necrotization of capitalism.\n> \n> ciao\n \n \N 20901 \N 457293 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 17.182108840068 0 \N \N f 563111501 \N 4 197926828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410184 2025-02-20 10:31:51.571 2025-03-29 22:39:48.907 The Universal Good Deal, What now? *Yesterday was the last chapter of the [Universal Good Deal](https://stacker.news/items/358761). If you want to find out what happens next, that's at the bottom of this post.*\n\nPublishing the story here was a bit of proof-of-concept for myself. I wrote it a few years ago, and tried to self-publish on Amazon, but Amazon really is like a jungle and it's pretty hard to stand out amongst all the trees. My total earnings were something along the lines of $2.17. And it wasn't even in bitcoin.\n\nI've been lurking here on Stacker News for a while (under another name) and it occurred to me that one of the many things SN does well is make it easy to throw a little bit of money at a post. \n\nSo I wondered what would happen if I tried to republish my book here, making each chapter it's own post. \n\nWhat happened is that I stacked close to 100k sats. That's more than $40 if you're counting. \n\nAnd here's the thing: I don't think most stackers are interested in fiction, especially my weird, somewhat abstruse version of scifi. On top of that, SN isn't exactly a huge community. So, I was hardly putting my story in front of my target audience.\n\nAnd yet, I managed to find a small group of you who enjoyed what I wrote enough to toss me a few sats each day as I published my chapters. \n\nImagine what it would be like if I published my story on a place where people came to read experimental scifi, but with zapping enabled. This is the future of publishing, more than that, it's the future of the Internet. \n\nBut I don't need to tell you this. You already know. It's just the rest of the Internet that hasn't heard the message yet. So I think it's time for some evangelism.\n\nIf any of you are active on other forums around the internet where there are people who post things and you think they might be interested in earning sats for those posts, I want to talk to you. Leave a note below!\n\n*What happens next in my story? Well, *The Universal Good Deal* is Book 1 of a 9-book series called *New World*. Book 2, Who Brought the Steak Tartare?, describes in great gory detail the awful misadventures of Franklin, Flinders, and crew as they navigate the harsh environment of outer space accompanied by that evil cat, Trim.*\n\n*_Book 2: Who Brought the Steak Tartare?_ will be in the same place on February 2nd.* \N 12609 \N 410184 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.2591835427449 0 \N \N f 166685789 \N 2 84828470 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434905 2025-03-12 10:27:55.867 2025-03-29 22:39:48.907 What is the best way to learn the Bitcoin Script language? I started few years ago to develop smart contracts in Ethereum/Zilliqa with Solidity and Scilla languages. After a while and some good readings I decided to abandon the world of shitcoins.\nI'm eager to learn the Bitcoin Script language and to develop new bitcoin projects.\nCould you please suggest me some good sources for learning it in an efficient way? \N 780 \N 434905 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 16.9979644113401 0 \N \N f 120014759 \N 1 54388407 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 04:02:37.33 f \N \N \N 0 0 0 0 1 0 0 432920 2025-03-10 17:13:06.979 2025-03-29 22:39:48.907 📣 The Rise of Transaction Advertising on the Bitcoin Lightning Network \N https://lightningnetwork.plus/posts/495 21166 \N 432920 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.6100709166071 0 \N \N f 3225405431 \N 28 73357410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 12:36:45.298 f \N \N \N 0 0 0 0 10 0 0 415781 2025-02-25 04:50:43.353 2025-03-29 22:39:52.932 \N Curses! I was a foreign agent using SN to launder money by posting and zapping based content, and now my evil plans are ruined! https://example.com/ 21521 415637 415637.415781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5997034610479 0 \N \N f 131913707 \N 1 91790346 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404313 2025-02-15 18:57:34.936 2025-03-29 22:39:52.933 \N I almost got a full night's rest and I'm going to fuck. shit. up. https://example.com/ 811 403662 403662.404313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.83687353385428 0 \N \N f 72714538 \N 1 131799420 0 f f \N \N \N \N 403662 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404541 2025-02-16 00:40:44.865 2025-03-29 22:39:52.933 \N I didn't think about mining pools cherry picking. Still better get your tx in there just in case an oblivious miner misses it using default selection. https://example.com/ 1617 402197 402188.402197.404541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4939724486716 0 \N \N f 304201956 \N 2 15835798 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428644 2025-03-07 13:41:28.487 2025-03-29 22:39:52.933 \N Great news for us mobile users being able to see the number of stackers who zapped a post! https://example.com/ 672 428619 424571.424907.424921.424946.424988.428312.428320.428354.428417.428559.428581.428619.428644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.06148583191626 0 \N \N f 182613344 \N 1 225211950 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422981 2025-03-02 20:37:35.229 2025-03-29 22:39:48.907 Schnorr Signature Explained with Illustrations and Code Link: https://bitcoindevs.xyz/decoding/schnorr-signature\n\n![](https://m.stacker.news/60245)\n\nIn this guide, you will:\n- Sign a message with Schnorr using Python\n- Learn about Nonces and Nonce reuse attack\n- Understand Tagged-Hashes in Taproot\n\n\nThe code here uses classes and methods from Bitcoin Core's functional test framework.\n\nWorking through this will help you take your first steps toward understanding Bitcoin Core\n\n\n*The code examples in this article are adapted from the Bitcoinoptech Taproot Workshop\n\nCheck it out: https://bitcoindevs.xyz/decoding/schnorr-signature\n \N 2347 \N 422981 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.7767462164384 0 \N \N f 197769670 \N 2 236568221 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420404 2025-02-28 17:22:49.102 2025-03-29 22:39:48.907 Mutiny is being sunsetted. Which wallet would you switch to? So... right after I decided to start stacking on LN (for spend and replace and easy access), researched a lot of lightning wallets, finally decided on Mutiny, wired some sats and opened a channel, the news on Mutiny being abandoned showed up.\n\nWhat is the alternative for someone who does not want to run Umbrel/Start9 (i do run two full nodes, but don't have the time to learn ins and outs of LN) and would prefer to keep sats on a non-custodial wallet? \n\nZeus looks nice (starts slowly though) but I'd love some input from experienced users.\n\nWhat's your wallet? What would you recommend? \N 20603 \N 420404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4600745832401 0 \N \N f 114619517 \N 2 75444218 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 392405 2025-02-05 08:52:22.455 2025-03-29 22:39:48.907 IMF Capitulates on Bitcoin Bans, Says They're Not Effective - Decrypt \N https://decrypt.co/145932/imf-capitulates-on-bitcoin-bans-says-theyre-not-effective 9833 \N 392405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.745466978299 0 \N \N f 135032752 \N 1 192554113 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448175 2025-03-22 13:01:11.051 2025-03-29 22:39:52.93 \N The Fed printing money has essentially no effect on the reduction of purchasing power. Bank reserves are not fiat currency. Bank deposits and cash are fiat currency. Bank deposit fiat currency has been a largely electronic decentralized ledger since the 1950s. Collateral is more important than bank reserves, collateral dealing is more important than all Fed activity combined. Bitcoin is better thought of as a form of disintermediated collateral than as a currency or digital cash. https://example.com/ 1549 448012 447833.448012.448175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.347951014984 0 \N \N f 487723379 \N 4 163699682 0 f f \N \N \N \N 447833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458111 2025-03-28 23:48:25.947 2025-03-29 22:39:52.933 \N We ourselves can not believe it. The previous government embraced decadent dictators only, instigated people to "feel proud of their poverty" (it declared "the day of the slum dweller pride"), imposed as mandatory middle school books promoting kids to suck each other dicks (with explicit drawings and all), destined millions to "scientifical research" for, and I quote, "studying the anus of batman", etc. Fast forward 80 years of ever accelerating unbounded decadence and now we have this. Even the ones of us who fought for this can't process it, seems like a parallel reality. https://example.com/ 10393 458011 458011.458111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8284734411404 0 \N \N f 178586138 \N 1 151181654 0 f f \N \N \N \N 458011 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436599 2025-03-13 17:40:18.986 2025-03-29 22:39:52.933 \N Hi @javier, welcome to SN and the @saloon!\n\nSorry for the errors that you encountered during your onboarding. @DarthCoin created a [ticket](https://github.com/stackernews/stacker.news/issues/1002#issue-2216356365) in our Github repo regarding them and [I replied there now](https://github.com/stackernews/stacker.news/issues/1002#issuecomment-2028046011). You might want to read my reply since I explained some errors.\n\nSpecifically the push notification error can easily be solved if you don't mind enabling Google services in your browser settings. https://example.com/ 13517 436593 436593.436599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3315029208328 0 \N \N f 237494770 \N 1 75030475 0 f f \N \N \N \N 436593 \N 0 0 \N \N f \N 2025-03-20 11:06:22.015 f \N \N \N 0 0 0 0 1 0 0 422010 2025-03-02 07:30:31.754 2025-03-29 22:39:52.933 \N If we are talking about small amounts, I think most people will dismiss the legal consequences. For example, people pay each other under the table all the time and don't report it. https://example.com/ 21202 421778 421778.422010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.466096396441 0 \N \N f 12504025 \N 1 52662272 0 f f \N \N \N \N 421778 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433397 2025-03-11 03:42:33.047 2025-03-29 22:39:52.934 \N BTW, the reason why DNS is used in the first place is because DNS is heavily cached at multiple levels. That makes it extremely difficult for the people running the DNS seeds to:\n\n1. Figure out who is requesting IP addresses.\n2. Serve different IP addresses to specific target clients.\n\nThis protects users by making it very difficult to use DNS seeds to attack people. https://example.com/ 12870 433359 433359.433397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0917084592583 0 \N \N f 35837717 \N 1 4779948 0 f f \N \N \N \N 433359 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435252 2025-03-12 14:58:54.996 2025-03-29 22:39:52.934 \N yeah baby. we've moved over to our own self-hosted F-Droid repo over at https://zeusln.app/download\n\nNot against putting it on the main F-Droid store, but it's been tricky to maintain with all our dependencies. Plus we have reproducible Android builds now with Docker https://example.com/ 11866 435246 435046.435246.435252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.1286671752267 0 \N \N f 226016440 \N 2 138442566 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:19:00.646 f \N \N \N 0 0 0 0 1 0 0 450040 2025-03-23 17:52:58.198 2025-03-29 22:39:52.935 \N ![](https://bitcoinscoresby.com/wp-content/uploads/2023/04/Bitcoin-Easter.jpeg) https://example.com/ 10608 450039 449601.449630.449881.449910.449920.450010.450014.450039.450040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2635075532777 0 \N \N f 155374996 \N 2 44177273 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403806 2025-02-15 08:24:58.759 2025-03-29 22:39:52.935 \N Trying to walk 9 miles from Walter E. Long Lake to Downtown, Austin. Apple Maps says 4.5 hours, Google Maps says 3 hours.\n\nLet’s see if I’m even able to walk one hour in this weather. https://example.com/ 18274 403798 402904.403694.403750.403754.403755.403762.403765.403771.403772.403773.403776.403778.403779.403788.403798.403806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.71503596742175 0 \N \N f 284315328 \N 3 247821058 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430020 2025-03-08 19:07:20.156 2025-03-29 22:39:52.935 \N Pavlenex here. This is not true, I don't use Nostr that much, as soon as I was notified I reached out to user. We have process for security reports as well as reaching out to us, he completely ignored those and even publicly notified people on Telegram about vulnerability before it was patched.\n\nI've spent at least 4 hours on Friday at 21:00 night trying to help him and get him in touch with exchange. I understand the frustration, but usage of external plugins comes with a risk, let alone keeping your life-saving in a hot wallet and on top of that opening your instance for public registrations. https://example.com/ 11670 429982 429958.429970.429982.430020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.515074578265 0 \N \N f 1213410376 \N 7 217009226 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435091 2025-03-12 13:05:00.418 2025-03-29 22:39:52.936 \N [There was a bug](https://stacker.news/items/473427), we accidentally sent out a push notification to everyone who had them enabled when a territory was unarchived.\n\n> If someone transfers you a territory should there be an accept or reject option on that, if you reject it goes to archived? Just to prevent anyone from accidentally getting billed for territories that have been erroneously assigned to them.\n\nOhhh, good point. I actually didn't consider automated billing. When I implemented this, I thought people could simply transfer it back/away or not pay and let it get archived. But with automated billing setup, this would indeed be a problem. If you time the transfer right, someone would get billed and pay for a territory they didn't want.\n\nGood catch!\n https://example.com/ 16571 435078 435073.435078.435091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.28690539903924 0 \N \N f 449923097 \N 3 217025179 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 2025-03-19 06:29:26.491 f \N \N \N 0 0 0 0 2 0 0 450576 2025-03-24 03:59:44.142 2025-03-29 22:39:52.936 \N All those complications you mentioned, midwives are trained to respond to. https://example.com/ 20495 450470 450470.450576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8692079737704 0 \N \N f 370055581 \N 3 70918256 0 f f \N \N \N \N 450470 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446416 2025-03-21 07:28:22.252 2025-03-29 22:39:52.936 \N Someone keeps sending me 100 sats! Show your face madman! What wallet are you testing? https://example.com/ 12921 446406 446406.446416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3297139329902 0 \N \N f 241143694 \N 1 237026942 0 f f \N \N \N \N 446406 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421936 2025-03-02 05:35:11.68 2025-03-29 22:39:52.937 \N I’ll zap 1000 sats to that! Cheers! 🍻 https://example.com/ 13878 421925 421720.421840.421855.421925.421936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4827292929124 0 \N \N f 639545950 \N 5 239237334 0 f f \N \N \N \N 421720 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448716 2025-03-22 20:07:19.651 2025-03-29 22:39:52.937 \N This is a great summary! We really should write something like that in a whitepaper. Thanks for this.\n\nGreat question - this takes about 14 KB upload and 128 KB download per query. This is much more than for a normal address query, but on an absolute basis, it’s really small (less than just loading a page with a photo, for example). There is also a one-time upload for the first query of about 8 MB. As far as bandwidth, it would be usable even on a slow 3G connection. The main cost is really on the server side, since we have to maintain a fairly large server to answer queries. This is why we’re interested in building a service people would be willing to pay for, so we can cover these server costs. https://example.com/ 7667 448707 447761.448319.448686.448707.448716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8665964086269 0 \N \N f 264716031 \N 2 94531370 0 f f \N \N \N \N 447761 \N 0 0 \N \N f \N 2025-03-29 14:36:31.543 f \N \N \N 0 0 0 0 1 0 0 430617 2025-03-09 11:25:01.582 2025-03-29 22:39:52.938 \N SERVER(subscription) + (home)SERVER + LAPTOP(personal) + LAPTOP(dev) + TABLET(read) + PHONE(iOS) + PHONE(Graphene) = I♥️TECH https://example.com/ 16177 430607 430607.430617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8476198502616 0 \N \N f 870257744 \N 6 62406216 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1357 2022-09-12 21:30:41.133 2025-03-29 22:39:48.907 Let's challenge ourselves, what will you do for Bitcoin adoption this month? My wife has asked me to set her up with a website for her business idea. \n\nMy goal is to make a parallel version of it that accepts only Bitcoin as a payment method. Promote it in the Bitcoin community and (hopefully) show her that there is a market for it, with people looking to spend their Bitcoin.\n\nWhat's your goal to help with Bitcoin adoption?\nAnd do you have ideas that other people could easily implement?\n\n \N 2942 \N 1357 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.617155320597 0 \N \N f 1021748904 \N 9 230978590 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 415670 2025-02-25 00:41:25.588 2025-03-29 22:39:48.907 Understanding the Linux File System Layout The Linux file system was like a messy town. People built their houses wherever they wanted. But in 1994, a new guideline called the Filesystem Hierarchy Standard (FHS) was made. This helped organize the Linux file system.\n\nFHS was like a library classification system for Linux. It provided a consistent structure across distributions, so developers and admins could find things. But does every distro follow it exactly? Not always. Some add custom tweaks for specific user needs.\n\nTo get good at using the Linux file system, you can start by exploring it. Use commands like "cd" to move around and "ls" to see what's in each directory. Think of the file system as a big tree, with the root (/) at the bottom. Have fun exploring the Linux file system.\n\n![20240404_200400.jpg](https://m.stacker.news/25252) \N 16543 \N 415670 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.2801099595042 0 \N \N f 196017670 \N 1 109101122 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 440663 2025-03-17 13:02:27.568 2025-03-29 22:39:48.907 Ads over Lightning - social experiment In the past 24 hours, you may have seen ad over lightning where I conducted a casual social experiment, not adhering to strict scientific protocols but rather for amusement.\n\nFor this, I utilized eaglesats.com. A detailed discussion about this business model can be found in a recent post here: https://stacker.news/items/316903.\n\nThe premise of the experiment was simple: I offered participants the chance to send me 1,000 sats, and in return, they would receive 2,000 sats back to their LNURL address, which they were instructed to include in their payment comments. I sent out about 5000 messages at 5 sats each.\n\nObservations from the experiment include:\n\n- I collected approximately 15,000 sats and paid out around 20,000 sats. Some participants sent smaller amounts, likely skeptical of a potential scam. After immediately reimbursing the first participant, I decided to wait until the experiment concluded an hour ago. This was to prevent others from creating multiple addresses to exploit the system after realizing the offer was legitimate.\n- Over 90% of the participants used Wallet of Satoshi.\n- Some participants failed to follow simple instructions. I received several 1,000 sat payments without a corresponding return address. Consequently, I didn't need to disburse 30,000 sats in total. This issue could also stem from a limitation in some wallets where custom messages are truncated, as discussed in one of the comments here: https://stacker.news/items/316903.\n- The experiment showed that people are still vulnerable to falling for double-your-bitcoin scams. While I did honor the payback in this case, malicious actors might not do the same.\n\nYesterday, the minimum payment on eaglesats.com was 5 sats/message. Now, it is at 10 sats/message. I presume this is as a reaction to the messages posted here: https://primal.net/e/note1ym0p4qlswhkhxfz5wqs23j5rrkuc6zlgn0z0kw3xxlmzvjsfv3sqzs5hqa to avoid people getting spammed for too little money. \N 18232 \N 440663 \N \N \N \N \N \N \N \N health \N ACTIVE \N 25.1605580014709 0 \N \N f 233851746 \N 1 209951618 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437348 2025-03-14 12:59:36.526 2025-03-29 22:39:52.938 \N I found Lemmy that way too. Also, a lot of talking about how to run the community instead of just running the community. I get that they were trying to figure everything out, but it was just a lot of nonsense right after the Reddit implosion. Haven't checked in on Lemmy since though. https://example.com/ 4570 437319 437233.437270.437311.437319.437348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5546665689259 0 \N \N f 323418888 \N 3 136998128 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458236 2025-03-29 06:07:30.702 2025-03-29 22:39:52.938 \N @kr has been interested in doing "group discussions." For example: we invite drivechain proponents to debate with opponents.\n\n@weareallsatoshi's work on splits lays the ground work for this. All that's needed is auto-subscribing people involved in the splits. https://example.com/ 21427 458234 458188.458210.458223.458226.458229.458230.458234.458236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.11734977459688 0 \N \N f 176674980 \N 1 84516490 0 f f \N \N \N \N 458188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430748 2025-03-09 12:12:28.609 2025-03-29 22:39:52.939 \N How to lose even more money, playing the shitcoin casino and stacking the little winnings in the same casino for APY. \n\nFind a job, DCA into Bitcoin and learn about it. Vast majority of "traders" are losing, don't be one of them. https://example.com/ 17275 430732 430726.430729.430732.430748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83761853113731 0 \N \N f 785528773 \N 5 47716039 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 428403 2025-03-07 08:38:35.366 2025-03-29 22:39:52.939 \N miskio.com has more info, but essentially, we build platforms with one or more mini apps, for certain industries. For example, tagcash.com in Philippines is a central bank regulated emoney issuer, and has wallets for Pesos, BTC/SATs and merchant created closed loop currencies for rewards, and enables business to quickly create their own web apps (with option for their own domain name) with the mini apps offered in the platform. We are in process of building white label sites, such as one for vtc.com,( elearning content consumed using SATs, or created by other creators and sold for SATs). Also building a standalone Lightning wallet, very similar to WalletofSatoshi, also available for white label. https://example.com/ 1261 428371 428371.428403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3759676440167 0 \N \N f 219680914 \N 1 48191253 0 f f \N \N \N \N 428371 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443604 2025-03-19 12:38:34.911 2025-03-29 22:39:52.94 \N Very cool compilation!\n\n[Here's another one showing bitcoin lightning transactions in SA 👀]( https://twitter.com/Printer_Gobrrr/status/1506547369957117957?s=20&t=gZuzrYIxCDlqqwvvqCKNDQ)\n https://example.com/ 1433 443543 442978.443048.443543.443604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4598911437795 0 \N \N f 526093123 \N 3 230652296 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 2025-03-26 06:00:13.371 f \N \N \N 0 0 0 0 1 0 0 410582 2025-02-20 14:48:07.981 2025-03-29 22:39:52.94 \N He’s channeling his discontentment with MSM in the best way possible lol https://example.com/ 7978 410541 410534.410541.410582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0304293032387 0 \N \N f 79781981 \N 1 128535913 0 f f \N \N \N \N 410534 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449007 2025-03-23 04:44:10.099 2025-03-29 22:39:48.907 Jack Mallers Closet Fills Up With Jordans and Gucci Clothing Jack Mallers Closet Fills Up With Jordans and Gucci Clothing As Bull Market Takes Off\n\nLink: https://www.bugle.news/jack-mallers-closet-fills-up-with-jordans-and-gucci-clothing-as-bull-market-takes-off/\n\nJack Mallers appears to be diverting from his typical brand of doing interviews in his empty closet. While the closet is larger than most Bitcoiners houses, he has carried the persona of living humbly and simply.\n\nThat appears to be changing as it was revealed in his most recent interview that the closet is filling up with expensive Jordan shoes and Gucci clothing. Mallers appeared on CNBC to talk about Bitcoin, but the interview focused entirely around his wardrobe choices.\n\nMallers explained the change saying, "Everyone sells out eventually, or at least the people who stay alive. I think it's important for Bitcoiners to start flaunting their wealth to show off to the Wall Street losers. We want Jamie Dimon to feel humiliated he tried to reject Bitcoin."\n\nSome are speculating that one of the reasons that Mallers is stocking his closet is that Strike is making money again. This could be a signal that Strike will start hiring memers again to watermark all the gifs on social media platforms with the company logo.\n\nInitially the company was waiting to hire the memers back until they finished their most recent fundraising round. There is a small potential that the company successfully completed their raise as a result of taking money from Tether.\n\nIf that were the case, Mallers' change in behavior could signal that being involved with stablecoins could be making him more fiat. Experts from PODCONF are not concerned and assure the Bitcoin community that Mallers still intends to die on the Bitcoin hill. \N 2640 \N 449007 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 11.2183881042631 0 \N \N f 253785520 \N 2 188410604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450354 2025-03-23 22:01:34.342 2025-03-29 22:39:52.93 \N Yeah I made that post because it needed to be said. TBDXXX was a stand in name until Burak came up with a real name. Making a post declaring that new name was something I felt was important for the future of discussion around it. https://example.com/ 7587 450326 450263.450326.450354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.23549251604982 0 \N \N f 249346960 \N 1 244740775 0 f f \N \N \N \N 450263 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407971 2025-02-18 13:57:26.953 2025-03-29 22:39:52.934 \N This is huge after the hurdles they had to get on the app store. https://example.com/ 21518 407969 406399.407380.407469.407944.407954.407957.407969.407971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.79450889210293 0 \N \N f 364621912 \N 3 88144846 0 f f \N \N \N \N 406399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434682 2025-03-12 06:36:16.799 2025-03-29 22:39:52.934 \N Fantastic job. Thanks for doing all this work. Since you posted the link to my post, you know where I stand, but my opinion is really idealogical and a bit superficial. You dig deep. I'm happy to see a little love for Graphene. I'm typing this on my Pixel now. I wonder whether any devs are giving up their Macs in real numbers? https://example.com/ 7809 434643 434642.434643.434682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6581300363102 0 \N \N f 322705098 \N 4 103776412 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 03:33:19.603 f \N \N \N 0 0 0 0 1 0 0 424405 2025-03-04 04:20:01.3 2025-03-29 22:39:52.94 \N "You can generate the PBST file from Sparrow..."\nSo sparrow wallet is compatible with pigeon protocol? :) https://example.com/ 844 424403 423384.423591.423593.423595.423601.424009.424015.424037.424049.424082.424094.424099.424382.424401.424403.424405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.29910681822962 0 \N \N f 134539390 \N 1 229828242 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435704 2025-03-12 22:14:57.347 2025-03-29 22:39:52.941 \N It was working fine until the last two zaps.\n\n![](https://m.stacker.news/59440)\n\n`edit`: @ek\nZapping Natalia's comment makes the description appear on the invoice.\nhttps://stacker.news/items/738144?commentId=738297 https://example.com/ 20555 435657 435657.435704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6700964029421 0 \N \N f 167220335 \N 1 60930457 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-19 18:38:17.255 f \N \N \N 0 0 0 0 1 0 0 457825 2025-03-28 18:24:46.032 2025-03-29 22:39:52.941 \N Hello sailor! Sorry…. wrong chat lol. Yeehaw! https://example.com/ 759 457823 457771.457823.457825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.921975966413484 0 \N \N f 574966147 \N 6 224160176 0 f f \N \N \N \N 457771 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 422908 2025-03-02 19:22:35.068 2025-03-29 22:39:52.941 \N Interesting question.\n\nI think starting from my 20s I have been quite happy overall.\n\nI guess being an adult helps. https://example.com/ 3347 422895 422203.422207.422399.422491.422579.422583.422586.422871.422883.422895.422908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.85600014187516 0 \N \N f 137066003 \N 1 36003730 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3066 2022-10-24 11:55:36.187 2025-03-29 22:39:52.942 \N Very true. I have to admit that my first real exposure to value for value was fountain. My instinct was to hoard my sats, and I was uncomfortable paying for an episode, no matter how much I got out of it. https://example.com/ 4862 3061 3061.3066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8092247617922 0 \N \N f 575019863 \N 5 182052612 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410358 2025-02-20 12:58:23.366 2025-03-29 22:39:48.908 Cowboy Hats Question Received a cowboy hat today and did some reading on prior discussions here about cowboy hats here on SN. The question I can't seem to find an answer to is this.\n\nWhat is the benefit of earning a cowboy hat before losing it? \N 21494 \N 410358 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.0151309819572 0 \N \N f 2014773432 \N 14 193499347 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 458188 2025-03-29 04:23:24.614 2025-03-29 22:39:48.908 MONEY CLASS OF THE DAY: The Nominal and The Real in Bitcoin Land Most people get the difference between nominal and real.\n\nIf your assets/incomes/wages increase from 100 to 105 while general prices in the economy increase by 10%, you had a _nominal_ increase in wages or wealth but a _real_ decrease. You are, economically speaking, worse off – even though, to the great disbelief and confusion of both my mother (https://aier.org/article/money-blindness-and-money-clarity/ ) and my girlfriend, _the numbers in your account are bigger._\n\nTo confuse people maximally, I therefore sometimes put it this way: The nominal is the real thing you see -- the sticker price; the real is the invisible thing you don’t. Hence “money blindness” or “money illusion.”\n\nWhile most Bitcoiners understand this in specific examples at the micro level, they often fail to see it in the macro perspective.\n\nThis came up beautifully in a long-read from _Reason_ Magazine today (https://reason.com/2024/10/23/the-remarkable-redneck-air-force-of-north-carolina/), about the relief efforts in North Carolina:\n\n![](https://m.stacker.news/59273)\n\nThis example _directly_ gets to what economists really mean when they say “real.” They don’t merely mean “adjusted for inflation,” but real -- reality, actual, physical -- goods and services. A check for $750 -- or indeed any amount of dollars -- won't do you any good when the stores remain closed or when you can't transact with others. In recent weeks, the people in NC had a _real_ problem, not primarily a monetary problem. (Fair enough, others -- esp along the edges where the regular monetary system still operate -- can turn money into real goods __and move them into the disaster area__.)\n\nMoney is merely a veil between real-world economic transactions, coordinating labor and capital and efforts and investments and all the other financial things we do every day. When you “pay” for something in the store with cash/bank balances/bitcoin, economically speaking you’re “paying” for that with previous efforts (labor, investment returns, gifts from other’s surplus). Goods trade for goods, only with money as a temporary bridge. \n\nMore examples: Robert Breedlove and Mike Hobart talked about this in a podcast at length a few years ago (https://www.youtube.com/watch?v=TI_JPezxecE), emphasizing that bitcoin is amazing for people escaping war zones since they can leave with their assets intact.\n\nThat’s a pretty stupid take, as far as things go. \n\nFor bitcoin to be used as an asset bridge between **[destroyed warzone]** and **[new refugee home]** you must have already had your wealth in bitcoin. Because at the point of a war breaking out or capital controls imposed etc., you will not be able to sell/realize the full value of your physical/captured/stuck assets.\n= bitcoins' awesome ability to move undetected within a persons head is not the same as moving real goods and services across a border.\n\n\nThe _Resistance Money_ guys (https://aier.org/article/bitcoin-is-resistance-money/) had this observation, too, in an anecdote from Ukraine about a woman named Alina, “a Ukrainian refugee who fled Kyiv with her children in early 2022. Alina’s family stored their wealth in two ways. They had a house, and they had bitcoin. At the time of writing, Alina doesn’t know how that family home is doing; she hasn’t been there for over a year. And there was, of course, **no time to sell the home before leaving nor any obvious buyer”** (p. 276).\n\nThey couldn't "realize" (=make real) the monetary value of their local asset. \n\nAll rushing for the exits at once are going to clog the system. If we all flush the toilet at the same time, or unexpectedly turn on all the lights in our houses in the middle of the night, not all will be serviced.\n\nMoney -- including on a bitcoin standard -- is just such a system. It coordinates _real_ economic activities.\n\nIn a flowy piece from a few years ago, I sarcastically put it this way:\n\n"it took monetary economics many centuries of hard work and laborious testing to figure out that we indeed cannot eat money. Though – and this is the Earth-shattering point – we can trade other things for stuff we can eat, and money is a civilizational-changing vehicle for that, as it moves value both across time and place."\nhttps://www.aier.org/article/you-cannot-eat-bitcoin/\n\nTHAT’s the real(!) difference between the nominal and the real.\n\n \N 18637 \N 458188 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 25.6979691134104 0 \N \N f 1033221110 \N 9 55641266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435577 2025-03-12 19:48:02.473 2025-03-29 22:39:48.908 You have 30 seconds to onboard a user to BTC. Which wallet do you recommend? In the coming months I will be interacting with many average people (no bitcoin wallet) and I would like to fine tune my on boarding process. Think weddings, trade show, elevator ride in a hotel. I will likely have their attention for a short period of time and would like to pay them back for my share of an Uber Ride, Dinner check, Wedding present, etc.. in BTC instead of fiat. \n\n# So the poll question: \nWhat is the quickest and easiest wallet to recommend where the whole process needs to be done in 30 seconds? \n\n## My Thoughts:\nBecause of the short time I will have their attention onchain BTC is likely off the table.\nMy first choice (at the moment) is Mutiny because:\n- I don't have to worry about what device they have (apple, android, linux, etc..). Does their app store allow it.\n- I can have them join a federation to avoid minimum channel setup amount.\n- No account setup needed.\n\nI look forward to hearing if there is a better option for my use case. \N 6741 \N 435577 \N \N \N \N \N \N \N \N security \N ACTIVE \N 23.5054625960042 0 \N \N f 417757986 \N 4 107354849 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 19:02:24.208 f \N \N \N 0 0 0 0 4 0 0 458341 2025-03-29 08:05:30.919 2025-03-29 22:39:52.934 \N My lovely wife had this same question a while back. Its a sign of thinking more deeply about bitcoin and incentives. \n\nThe short answer is yes, they are a risk. There are many risks besides this one but this is a good one to think about. \n\nThe bitcoin core maintainers could go rogue or just change the project in some way that I do not like. We have seen how this plays out. The block size wars were an example of an effort to change the code. It resulted in a code fork to a new project. That project has largely failed in its goal to gain dominance. Why? Because people that run nodes chose to stay with the small block version of bitcoin. Node operators choose which release to run. Node operators are a check on the power of the maintainers and you can see that the maintainers are aware of this with how they take time to consider changes. \n\nLets talk about incentives. Are maintainers incentivized to make unpopular changes? No. If they have significant bags they will lose value if they increase distrust in the network by doing something shady. I believe this is a huge reason why bitcoin is so resistant to changes.\n\nLets say that some state actor gets control over one or a few maintainers. They get them to do something shady. Well, unless we get lazy and don't review the code as a community that could be a huge issue. I do think this is unlikely. We see open source projects getting slammed for code changes that have far less impact than bitcoin. If a coder were to do something sly to the code base I believe it would get called out very quickly. There are far to many developers who are incentivized to defend their wealth. A state actor would need to have leverage on a large number of devs, not just maintainers. I do not believe any state actor is this driven or organized. These same states can't stop much weaker actors doing things they don't like. I really think this is NOT the way to attack bitcoin\n\nI believe the way states will attack bitcoin is at the edges. Attacking users by criminalizing our behavior. They may go after maintainers but I don't think they will try to mod the code. I think it is more likely they try to make contributing risky and impossible to do without anonymity. The good news is that I don't think this will happen in all states at the same time. If the US tries to do this their adversaries will be incentivized to support or at least "allow" bitcoin development and usage. \n\nIMO the greatest risk to bitcoin is us. The plebs. We can't be weak, scared, or dumb. We have to remain vigilant and determined to be free. Not just for ourselves but for our descendants. These days I almost exclusively talk to younger people about bitcoin vs. people my age and older. I'm in my 40s. Younger folks seem to be much more open to the ideas and they will benefit from bitcoin more than we will. https://example.com/ 8989 458299 458227.458241.458248.458276.458294.458299.458341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7716396386831 0 \N \N f 229568531 \N 3 174525749 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 314277 2024-12-01 10:05:44.372 2025-03-29 22:39:52.934 \N Day 212 of snailposting everyday 'til BTC hits $100k.\n\n...and 12 push-up(s).\n\n__@_'-' https://example.com/ 7558 314108 314108.314277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4040652172214 0 \N \N f 175201020 \N 1 120322024 0 f f \N \N \N \N 314108 \N 0 0 \N \N f \N 2025-03-19 02:14:46.13 f \N \N \N 0 0 0 0 1 0 0 433452 2025-03-11 05:23:42.763 2025-03-29 22:39:52.935 \N Yea it supports many units, seconds minutes hours days weeks months years I believe is the list \n\nHint: I am the contributor who wrote the code lol\n\nEdit: [yep](https://github.com/stackernews/stacker.news/blob/ac1c64e40277e00c91e1a7ae5629230c3447ee76/lib/item.js#L16) https://example.com/ 4692 433391 433391.433452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.84103443573142 0 \N \N f 241481562 \N 1 190466362 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422581 2025-03-02 15:03:44.615 2025-03-29 22:39:52.935 \N Knowledge, skills https://example.com/ 1618 422481 422481.422581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1457711927919 0 \N \N f 247996364 \N 2 100959031 0 f f \N \N \N \N 422481 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407586 2025-02-18 08:06:03.999 2025-03-29 22:39:52.935 \N Merchants offering a slight discount for their goods or services when paid via Bitcoin seems to be the biggest driver in adoption. We just need a way to expand that into more mainstream places, so that it's not simply a novel once-a-year purchase with Bitcoin, but rather a more frequent use of the network for more people. Gift cards for grocery shops is a great way to encourage spend and replacing, but we need to work on having these shops and chains accept Bitcoin directly. https://example.com/ 4345 407583 407018.407063.407581.407583.407586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.94899399301703 0 \N \N f 765341473 \N 6 106122278 0 f f \N \N \N \N 407018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434870 2025-03-12 09:52:43.672 2025-03-29 22:39:52.935 \N This was my first time using it, I directed the hash to solo.ckpool. I figured a couple of dollars for 3 hours of 200TH solo mining was fine. Interesting service. They offered a free trial in the past, throwing hash rate at Braiins pool but it wasn't an option when I looked this time. https://example.com/ 959 434864 434791.434864.434870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.07812102768015 0 \N \N f 187788950 \N 1 240436609 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 03:25:08.736 f \N \N \N 0 0 0 0 1 0 0 188673 2024-06-23 21:30:26.792 2025-03-29 22:39:52.935 \N Notice the three stackers who have replied to this post lol https://example.com/ 1658 188670 188308.188380.188387.188390.188396.188670.188673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5534871207053 0 \N \N f 183739826 \N 2 82343895 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435644 2025-03-12 20:58:01.227 2025-03-29 22:39:52.935 \N > Have a gretf weekend!\n\nIs this a reference to something or just a typo?\n\nEdit: lol I’m dumb. Etf https://example.com/ 726 435516 435516.435644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1478160982659 0 \N \N f 226467954 \N 1 209667657 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 2025-03-20 08:31:51.696 f \N \N \N 0 0 0 0 1 0 0 436261 2025-03-13 12:25:46.335 2025-03-29 22:39:52.935 \N That’s just because you’re a frequent zapper! https://example.com/ 20657 436241 436241.436261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.43021029202701 0 \N \N f 235609161 \N 1 171378873 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:29:08.207 f \N \N \N 0 0 0 0 1 0 0 422596 2025-03-02 15:16:01.695 2025-03-29 22:39:52.936 \N Thank you https://example.com/ 20454 422587 422587.422596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8982947644803 0 \N \N f 108740205 \N 1 120958575 0 f f \N \N \N \N 422587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451031 2025-03-24 11:00:46.67 2025-03-29 22:39:52.936 \N Given the (current) lack of interoperability, are you concerned that a small pool of users may be spread too thin amongst the various protocols, thus making it even more difficult for any one protocol to achieve network effects? \n\nGiven the open source nature of the protocols, what do you see as the best way for protocols to attract users? Court a centralized entity to dedicate itself to a protocol and perform business development functions for that specific protocol? https://example.com/ 13249 451018 451018.451031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.92376896733066 0 \N \N f 339285041 \N 2 164574000 0 f f \N \N \N \N 451018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447086 2025-03-21 15:54:44.959 2025-03-29 22:39:52.936 \N Taking the base58 course today. Might be in over my head but hey learning is fun! https://example.com/ 13055 447063 446371.446452.447063.447086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.109247318707268 0 \N \N f 727946422 \N 6 119947088 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404344 2025-02-15 19:43:03.945 2025-03-29 22:39:52.936 \N Hm that’s an interesting question and kind of hard to speculate on. Before LDK came along I didn’t think an enterprise-first style implementation would exist and now we have one of those with phantom nodes and other cool scale based features.\n\nI think pretty highly of the existing Lightning devs out there. If they won’t add a particular feature I suspect there would probably be a good reason for not doing it.\n\nIn the near term it does feel like there is just a ton to be done and too few to do it all. But perhaps one day lightning will ossify and we’ll look be able to look back and say oh hey it’s done.\n\nI don’t see a day like that coming anytime soon though.\n\nOne area Lightning devs aren’t working on is automated channel management and rebalancing and I do suspect that area will see some pretty awesome innovation over time. If that progress well, and I suspect it will, we’ll eventually have one button lightning node deployments that just do everything for you automatically. https://example.com/ 900 403824 403824.404344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5082735020749 0 \N \N f 166278780 \N 1 53130833 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 386121 2025-01-30 16:20:52.157 2025-03-29 22:39:52.936 \N Yes. This is what I believe about the U.S.S.R. too. Socialism was destroying it regardless of the actions of the U.S. I think the U.S. probably sped it up a bit by getting into a spending war with them over arms but their system of centralized control was the fatal flaw.\n\nOver the years as I've read and listened to influential leaders in the "conservative" movement it has become clear to me that they do not have a true understanding of _why_ socialism doesn't work. They also do not seem to understand why central planning doesn't work. I say this because they say things with their mouths, but then they proceed to enact policies of central planning. \n\nThe reason US politicians(mainly conservatives) were so opposed to communism had more to do with their belief that it was a threat to their power. And that is when it occurred to me. They do not really believe central planning and socialism are doomed to failure. They think if they can just tweak it a bit it will work. They actually believed that the socialists would take over the world. We now know that the U.S.S.R. was in trouble from the very early stages.\n\nToday both US political parties do not reject the idea of central planning. Sure, they say flowery things that sound anti-communist or anti-central planning but few if any of them truly mean it or understand it. https://example.com/ 20776 385905 385662.385905.386121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8063974404405 0 \N \N f 538624837 \N 4 221858180 0 f f \N \N \N \N 385662 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1389 2022-09-13 15:40:06.354 2025-03-29 22:39:52.937 \N @orthwyrm do you like my Nike's?\nhttps://i.ibb.co/VjGJsQx/b3b11afb-9984-4b04-b1ca-b76f73f8f1be.jpg https://example.com/ 690 1357 1357.1389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9387220749949 0 \N \N f 139610672 \N 1 106357498 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428474 2025-03-07 10:22:14.749 2025-03-29 22:39:52.937 \N Typcial altcoins defense. And exactly what would you do if some hard fork wasn't "supported by the community"? You then have to depend on a decentralized consensus that doesn't exist. It's a centrally controlled coin and a non community supported hard fork likely means it's death. You keep wanting to deny this, but this is Monero and every altcoin's flaw. You're centralized and you're one black swan from death. https://example.com/ 20525 428469 428292.428426.428469.428474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.05884259605062 0 \N \N f 220314566 \N 1 230361118 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441011 2025-03-17 17:47:49.84 2025-03-29 22:39:52.938 \N ![](https://www.zapread.com/i/-5D) https://example.com/ 6268 440692 440692.441011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.783951824893 0 \N \N f 1023068354 \N 8 143622911 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435803 2025-03-13 01:22:27.865 2025-03-29 22:39:52.938 \N Natural language. https://example.com/ 16695 435560 435359.435560.435803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4112448646041 0 \N \N f 213556748 \N 1 94594547 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 2025-03-19 20:59:20.472 f \N \N \N 0 0 0 0 1 0 0 443757 2025-03-19 13:59:40.572 2025-03-29 22:39:52.938 \N Ironically, we are today making the same mistake the largeblockers did.\n\nThe problem with LargeBlockism was that, eventually, a node becomes too expensive, people don't run nodes, and then you are just left with Bitcoin as an inefficient version of VISA / WeChatPay.\n\nToday, we have many users of "custodial" lightning. Custodial = infinite blocksize node. We also have non-cypherpunk leaders, who do not care about privacy. A non-private node = an infinite blocksize node.\n\nWe also have people who address the "node problem" via shame. That won't work.\n\nWhat we should do is:\n\n* Activate BIP300\n* Shrink L1 blocksize\n* Release largeblock sidechain for payments, with fraud proofs\n* Release privacy sidechain, for eternal optimal privacy\n* Build many L1 tools to make running an L1 node fun and easy and useful, such as CoinNews\n\nI have actually already done all these things, so we could do all of this tomorrow. Instead, however, we are focused on the opinion of tradfi , etf , various laws, etc.\n\nWe must be focused on the user experience, of course. https://example.com/ 1814 443731 443577.443651.443711.443715.443731.443757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.44171410291753 0 \N \N f 743115053 \N 7 198744688 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434636 2025-03-12 04:53:37.082 2025-03-29 22:39:52.939 \N so inspiring! \nhttps://bitcoinpleb.dev/blog/journey from @bitcoinplebdev https://example.com/ 11522 434595 434595.434636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8921558330246 0 \N \N f 221830557 \N 1 80876692 0 f f \N \N \N \N 434595 \N 0 0 \N \N f \N 2025-03-18 23:07:03.052 f \N \N \N 0 0 0 0 1 0 0 402412 2025-02-13 18:08:19.268 2025-03-29 22:39:52.93 \N 10 sats? You were generous out of the gate! I was zapping 1 sat for probably the first two weeks. I remember making a complementary comment on a post without zapping at all, and getting gently corrected by an experienced stacker. https://example.com/ 20788 401611 401611.402412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9482960743397 0 \N \N f 156762792 \N 1 11206327 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433913 2025-03-11 14:05:01.793 2025-03-29 22:39:52.932 \N Do you feel like Mempool.Space has become too important? This might be a weird question since every developer loves to see his own product succeed.\n\nBut people are increasingly using Mempool as a single point of truth about Bitcoin instead of embracing decentralization by looking up stats from their own nodes or from several sources. Of course this does not compromise Bitcoins decentralization - it just is a lost opportunity to convey the culture of Bitcoin to the normies. https://example.com/ 6777 433883 433883.433913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.84352317093948 0 \N \N f 402867930 \N 2 8350668 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 2025-03-19 02:07:03.032 f \N \N \N 0 0 0 0 1 0 0 430530 2025-03-09 09:47:40.145 2025-03-29 22:39:52.933 \N the idea that it’s entirely normal to enjoy your life for only 2 days a week https://example.com/ 4692 430521 430521.430530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.45376717568526 0 \N \N f 201904845 \N 1 4936711 0 f f \N \N \N \N 430521 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451408 2025-03-24 14:35:11.411 2025-03-29 22:39:52.933 \N He's so cute and grumpy. \n\nhttps://www.herecomesbitcoin.org/assets/grumpy.png https://example.com/ 14657 451392 451266.451276.451382.451392.451408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.47083671073324 0 \N \N f 175237990 \N 1 64459118 0 f f \N \N \N \N 451266 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446464 2025-03-21 08:53:10.966 2025-03-29 22:39:52.933 \N I'm thinking you could just achieve this with super high fees? https://example.com/ 19199 446452 446371.446452.446464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8371800762106 0 \N \N f 1222434963 \N 7 198966291 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:27:01.723 f \N \N \N 0 0 0 0 1 0 0 448363 2025-03-22 15:11:23.986 2025-03-29 22:39:52.939 \N for some it’s easy, just a constructive conversation goes a long way. \n\nfor some it takes gifting sats (everyone likes free money… so imagine giving out what you explained as “real money” to them) \n\nat the gym my partner goes, I introduced a few people there to “Smiles” app so they use fitness to earn portions of bitcoin and from there they get to understand on their own seeing the legitimacy and ease in moving sats. \n\nI also started a podcast-type voice note I send on instant messaging apps to friends trying to teach what I know. \n\nthe most important project I am on is introducing lightning to a friends barbecue business, he still doesn’t believe in bitcoin but I accept all the sats he sells and give him fiat in return… some day he’ll figure out why I chose real money. https://example.com/ 18225 448232 448200.448232.448363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.44890273195761 0 \N \N f 28279397 \N 1 236582750 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N 2025-03-29 08:39:15.87 f \N \N \N 0 0 0 0 1 0 0 423819 2025-03-03 16:14:28.132 2025-03-29 22:39:52.939 \N > Strategy is overrated. Have fun.\n\n![a4b862fa35e41b925f8003a896db26c343430bacd2bc24db6a6d5ef620842bb4.jpg](https://m.stacker.news/19321) https://example.com/ 6393 423811 423750.423811.423819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.551072937987 0 \N \N f 507360878 \N 3 96679152 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433066 2025-03-10 19:32:21.036 2025-03-29 22:39:48.908 SN Saturday Newsletter 1/27/24 Happy Sat-urday Stackers,\n\nHave a great weekend!\n\n##### Top Posts\n1. [@Scoresby](https://stacker.news/Scoresby) suggests the gift card is ecash's creepy fiat uncle.\n - [Fedimint and Cashu ecash are gift cards](https://stacker.news/items/397764)\n - 16.3k sats \\ 66 comments \\ [@Scoresby](https://stacker.news/Scoresby)\n2. Custodial lightning wallets are supernormal because lightning lacks offline payments. [@roy](https://stacker.news/roy) shares [Breez SDK's](https://breez.technology/sdk/) solution and where lightning is headed.\n - [The Past, Present, and Future of Offline Payments](https://stacker.news/items/399604)\n - 14k sats \\ 25k boost \\ 22 comments \\ [@roy](https://stacker.news/roy)\n3. [@TonyGiorgio](https://stacker.news/TonyGiorgio) begins articulating why a fedimint isn't a bank, arguing federation members are guardians of a smart-contract network.\n - [Fedimint is Self-Custodial](https://stacker.news/items/395461)\n - 17k sats \\ 72 comments \\ [@TonyGiorgio](https://stacker.news/TonyGiorgio)\n4. If the road to success is paved with failure, teach me how to succeed and I'll succeed once. Teach me how to fail and I'll succeed forever.\n - [How to Fail](https://stacker.news/items/395797)\n - 16k sats \\ 32 comments \\ [@k00b](https://stacker.news/k00b)\n5. [@niftynei](https://stacker.news/niftynei) documents the pain of getting a self-custodial LNURL running for [base58.school](https://base58.school/).\n - [nifty's process for getting base58.school a LNURL](https://stacker.news/items/400189)\n - 8.3k sats \\ 17 comments \\ [@niftynei](https://stacker.news/niftynei)\n\n\n##### Don't miss\n- [Announcing Superposition and Note Duel, our first two DLC experiments](https://stacker.news/items/401711)\n- [Naivetes in Bitcoin](https://stacker.news/items/400588)\n- [Updates to Human Action for the twenty-first century?](https://stacker.news/items/395465)\n- [What made you want to become a dev?](https://stacker.news/items/396441)\n- [AMA with PlebLab's Top Builder teams!](https://stacker.news/items/401783)\n- [a metaphor about creating art](https://stacker.news/items/395051)\n- [What coming breakthrough will usher-in a new golden age for humanity?](https://stacker.news/items/396905)\n- [Clark Moody Dashboard v2 (beta)](https://stacker.news/items/399690)\n- [Scam 1992 and QE](https://stacker.news/items/400280)\n- [If the whole world decided to follow you, where would you lead them?](https://stacker.news/items/396670)\n- [Dangerous ideas, hacker culture, and free speech](https://stacker.news/items/402582)\n- [MostroP2P Launches the First Peer-to-Peer Bitcoin Exchange Platform on Nostr](https://stacker.news/items/401714)\n- [Do you know where your “finish line” is?](https://stacker.news/items/396512)\n- [Is There A Way To Prove Mints Aren't Inflating Supply?](https://stacker.news/items/395348)\n- [Applebees offers subscription service - have we reached peak fiat?](https://stacker.news/items/401198)\n\n\n[**all of this week's top posts**](https://stacker.news/top/posts/week)\n\n-------\n\n##### Top meta\n- [SN: Elevating Shitposting To Cathartic Connections](https://stacker.news/items/400068)\n- [SN Cowboy Hat: A Case Study in Motivation](https://stacker.news/items/398760)\n- [Stacker News Features - Custom Date Ranges](https://stacker.news/items/398670)\n\n-------\n\n##### Top Monday meme \\ 27k sats \\ [@BitcoinIsTheFuture](https://stacker.news/BitcoinIsTheFuture)\n![](https://imgprxy.stacker.news/CHKQvMajIc3NHfERse39ofDTNKxvqJbCzvimVDMZBu4/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8xMzQxMA)\n\n[**all monday memes**](https://stacker.news/items/396447)\n\n------\n\n##### Top Friday fun fact \\ 11k sats \\ [@oliverweiss](https://stacker.news/oliverweiss)\n> During the Victorian era of the 1800s, Napoleon’s conquest of Egypt threw open the Gates of Egypt’s history for the Europeans. At that time, mummies were not accorded the respect that they deserved from the European elites and in fact, mummies could be purchased from street vendors (as shown in the picture) to be used as the main event for parties and social gatherings that took place in the 18th century.\n> The elites of the era would often hold “Mummy Unwrapping Parties”, which, as the name suggests, had the main theme in which a Mummy would be unwrapped in front of a boisterous audience, cheering and applauding at the same time. Source: @national_archaeology\n>\n> ![IMG_3201.jpeg](https://imgprxy.stacker.news/kc8XV8oebeU2tiV-z3emgZwiTtnZjoTN8ESfm--rSwk/rs:fit:640:360/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy8xMzg2Mg)\n\n\n[**all friday fun facts**](https://stacker.news/items/401734)\n\n------\n\n##### Promoted jobs\n1. [Everything Engineer #2 \\ Stacker News \\ Austin or Remote](https://stacker.news/items/141924)\n\n\n[**all jobs**](https://stacker.news/~jobs)\n\n------\n\nYeehaw,\nKeyan\nA guy who works on Stacker News\n\n[Watch](https://www.youtube.com/@stackernews/live) or [Listen](https://www.fountain.fm/show/Mg1AWuvkeZSFhsJZ3BW2) to SN's top stories every week.\n\nGet this newsletter sent to your email inbox by signing up [here](https://mail.stacker.news/subscription/form). \N 14370 \N 433066 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7054737778652 0 \N \N f 1438486928 \N 10 106957870 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 09:15:15.821 f \N \N \N 0 0 0 0 2 0 0 435682 2025-03-12 21:49:22.561 2025-03-29 22:39:48.908 What's your best Stacker News pitch? I was recently reminded by @cryotosensei that I have a bunch of Minds tokens from the Before-Times (how I think of time before Stacker News). I'm planning on spending them all boosting a post about Stacker News. I have enough tokens to reach something like 1,000 people.\n\nWhat I'd like to hear from my fellow stackers is what your best short pitch for Stacker News is.\n\nIf you're not familiar with Minds, it's an alternative social media platform that's dedicated to free speech. I'd say the likely audience is right-of-center politically and really into independence and alternatives to establishment systems.\n\nAn ideal Minds post would look a lot like an ideal X post, as they're pretty similarly designed platforms.\n\nThe two aspects I'm inclined to focus on are the diversity of content and the high level of engagement, but I want to know what you all find most compelling about SN. \N 16970 \N 435682 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.6279503636349 0 \N \N f 157183446 \N 2 180830188 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:41:12.11 f \N \N \N 0 0 0 0 2 0 0 451310 2025-03-24 13:43:17.525 2025-03-29 22:39:52.933 \N Reddit is a vestige of the 0% and low-interest rate world we all lived in up until early 2022. Same goes for lots of this crap that can only survive in a 0% rate environment. In such a reality, they need to centralize faster and extract more free labor, bomb the API bridges, develop more addictive algorithms, collect revenue with subscription payments, pop-ups and other abusive practices. Take, take, take, because they have to deliver quarterly to their own fiat overlords after an IPO, or worse, some fiat creation in the form of a wealthy individual buys it all and takes the thing private, willing to squander the money to satisfy megalomania, which is just a new version of the prior fiat creations buying ownership stakes in newspapers. It's all added too much distortion for me to deal with anymore. The SN and Nostr models are built around all that trouble of rates, closed-source, permissions, etc. They've impressively existed only in higher-rate environments and a bitcoin bear market. https://example.com/ 20222 451219 450805.451169.451219.451310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5408856636293 0 \N \N f 203991718 \N 1 179138104 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434755 2025-03-12 08:07:43.611 2025-03-29 22:39:52.934 \N Day 280 of snailposting everyday 'til BTC hits $100k.\n\n...and 80 push-ups. (20 - 20 - 20 - 20)\n\n__@_'-' https://example.com/ 2016 434682 434642.434643.434682.434755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6262799496434 0 \N \N f 294363769 \N 3 28341329 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 02:01:55.882 f \N \N \N 0 0 0 0 1 0 0 2554 2022-10-15 02:40:58.046 2025-03-29 22:39:52.934 \N it immediately asks for a private key - this should be updated ASAP to use NIP-07 logins (eg browser extension)\n\ndon't ever put your private key in a web app!\n\nEDIT: this page gives some context. Good luck to the team.. They should add a nostr profile with NIP-46 so we can zap them directly!\n\nhttps://roadrunner.lat/about/ https://example.com/ 12959 2553 2553.2554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.52204466200971 0 \N \N f 407407838 \N 2 207978766 0 f f \N \N \N \N 2553 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449920 2025-03-23 16:06:01.594 2025-03-29 22:39:52.934 \N Maybe I’m blind, but I missed how it works? https://example.com/ 8269 449910 449601.449630.449881.449910.449920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8071089518627 0 \N \N f 559542194 \N 6 106402075 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448695 2025-03-22 19:40:44.395 2025-03-29 22:39:52.935 \N I watched a random YouTube video today that claimed the universe is a simulation and the big bang was a fake genesis story. https://example.com/ 1650 448527 448527.448695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.990919519948 0 \N \N f 559315812 \N 4 91408066 0 f f \N \N \N \N 448527 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443308 2025-03-19 08:52:40.559 2025-03-29 22:39:52.935 \N It'll definitely fail. But wait until we see entire nations trying to shitcoin, it'll be hilarious. https://example.com/ 12951 443301 443295.443297.443301.443308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7062683662952 0 \N \N f 702031688 \N 4 56255857 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:37:27.698 f \N \N \N 0 0 0 0 1 0 0 440902 2025-03-17 16:19:09.851 2025-03-29 22:39:48.908 Juri and Kala - Lightning Cats | Use The Force to feed the cats Super cool Bitcoin switch to feed the cats with sats.\nGuys, don't drop the sats on me, keep them for the cats :)\nI am just the messenger.\n https://lightningcats.io/en/ 4395 \N 440902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4855768232323 0 \N \N f 113624797 \N 1 234375652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428021 2025-03-06 19:22:33.454 2025-03-29 22:39:48.908 What are you working on this week? Calling all Bitcoin builders!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/189322) are the updates SN users shared from all their latest work projects. \N 4345 \N 428021 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 13.9453628202796 0 \N \N f 447181742 \N 3 175445776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421572 2025-03-01 18:55:15.67 2025-03-29 22:39:48.908 The "Trilemma" That Runs The World This would be an excellent article to use as a basis for discussion regarding the central bank policy rate, the exchange rate, and capital accounts. Maybe a good meta economics thread @Undisciplined ? @kr might be interested too. I don't want to go crazy name dropping, but @TomK and @elvismercury would also be interested. Rickards is a bright guy, though he's a notorious gold bug. https://www.zerohedge.com/markets/rickards-trilemma-runs-world 7966 \N 421572 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.62946098524775 0 \N \N f 302861418 \N 2 179352161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 452746 2025-03-25 13:01:12.881 2025-03-29 22:39:52.936 \N Hi yes! Is still in development. We are implementing an epoxy cover. We want it to feel like a real orange pill https://example.com/ 4633 452624 452624.452746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.194601312236 0 \N \N f 173804430 \N 1 9600272 0 f f \N \N \N \N 452624 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 425972 2025-03-05 10:21:02.357 2025-03-29 22:39:52.936 \N Tell that to the Canadian truckers. Permissionless use is my #1 reason for owning Bitcoin. https://example.com/ 698 425966 425959.425966.425972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.32360317156911 0 \N \N f 213592298 \N 1 111263381 0 f f \N \N \N \N 425959 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442880 2025-03-18 21:26:23.283 2025-03-29 22:39:52.937 \N Large health care facility projects to improve access to healthcare across the United States of America! \n\nIt’s not code but building in meatspace https://example.com/ 11866 442876 442820.442876.442880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4747862465086 0 \N \N f 185441694 \N 3 148564894 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448426 2025-03-22 15:43:56.425 2025-03-29 22:39:52.937 \N So am i https://example.com/ 21019 448299 447892.448168.448299.448426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.730518240018 0 \N \N f 87836734 \N 1 105571365 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N 2025-03-29 09:03:45.999 f \N \N \N 0 0 0 0 1 0 0 431142 2025-03-09 15:42:49.473 2025-03-29 22:39:52.937 \N When do people really get this meme (that is actually true)?\n[![no-gov.jpg](https://i.postimg.cc/0QXbCkQW/no-gov.jpg)](https://postimg.cc/dkdssKGr)\n\nSo act accordingly, refine your contract with those companies.\n\nIn regards of so called governments...\n[![consent-contract.jpg](https://i.postimg.cc/PxDL488M/consent-contract.jpg)](https://postimg.cc/sQVDfxmB)\n\nSo why people still give attention to some meaningless papers?\n\nPlease define what really is outlawed...\nPlease define "legal". https://example.com/ 18533 431140 431124.431131.431140.431142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.27896023704011 0 \N \N f 171916594 \N 1 46915955 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427750 2025-03-06 15:45:34.708 2025-03-29 22:39:52.938 \N Yes. The balance on LNBits is just a promise. It's just a db entry saying "this user has the right to spend xxx sats". It's not the sats themselves.\n\nIf he loses the wallet id, you can simply go to the LNBits internal database and look for it. Or open a new wallet and credit him the sats.\n https://example.com/ 17201 427722 427091.427540.427556.427574.427722.427750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8833380604689 0 \N \N f 232432971 \N 3 224612951 0 f f \N \N \N \N 427091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430489 2025-03-09 08:48:35.706 2025-03-29 22:39:48.908 How would you hedge inflation WITHOUT Bitcoin? If we didn't have Bitcoin today, what would you buy? Where would you park your fiat?\n\nWhat business would you start?\n\nShill me the "second best."\n\nhttps://imgprxy.stacker.news/WnD1PFcPUjM2TlIOeZyo1qgzV-Ib1fNrIXOEwfaRB2o/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnl0aW1nLmNvbS92aS9NTmY5N1hnQmRUYy9tcWRlZmF1bHQuanBn \N 21334 \N 430489 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.6755948144579 0 \N \N f 329578115 \N 2 244831719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455413 2025-03-27 02:04:48.646 2025-03-29 22:39:48.908 Book Reviews Directory #2 This is a directory of all of the Book Reviews posted to the ~BooksAndArticles territoryfrom March through August 21st of 2024. \n\n- [Some Thoughts On Re-Reading Bradbury’s “Fahrenheit 451”](https://stacker.news/items/479400) by @StillStackinAfterAllTheseYears\n\n- [The Last Policeman, by Ben H. Winters](https://stacker.news/items/489403) by @StillStackinAfterAllTheseYears\n\n- [Number Go Up Inside Crypto's Wild Rise and Staggering Fall](https://stacker.news/items/497462)\n by @StillStackinAfterAllTheseYears\n\n- [The Bezzle, by Cory Doctorow](https://stacker.news/items/506632/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Some thoughts on Moore and Lloyd's V for Vendetta](https://stacker.news/items/511196/r/siggy47) by @StillStackinAfterAllTheseYears\n\n- [Author Recommendation- Andrew Heaton](https://stacker.news/items/479749) by @Undisciplined\n\n- [The Things We Leave Unfinished, by Rebecca Yarros](https://stacker.news/items/492435) by @Tef\n\n- [The Achilles Trap, by Steve Coll](https://stacker.news/items/497756) by @Coinsreporter\n\n- [Software,by Rudy Rucker](https://stacker.news/items/511225/r/siggy47) by @Scoresby\n\n- [Bleeding Edge by Thomas Pynchon](https://stacker.news/items/533493/r/siggy47) by @Scoresby\n\n- [ “Better than Before” by Gretchen Rubin](https://stacker.news/items/534613/r/siggy47) by @cryotosensei\n\n- [Giada De Laurentiis Recipe for Adventure Hong Kong](https://stacker.news/items/539739/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Culture Code” appeals to the adolescent in me](https://stacker.news/items/568580/r/siggy47) by @cryotosensei\n\n- [Book Review | Wanna evolve like Pokemon with “My Morning Routine”](https://stacker.news/items/569631/r/siggy47) by @cryotosensei\n\n- [Book Review | The Handbook for Leaders](https://stacker.news/items/579116/r/siggy47) by @cryotosensei\n\n- [Book Review | “Fierce Conversations” by Susan Scott](https://stacker.news/items/581153/r/siggy47) by @cryotosensei\n\n- [Book Review | “All Joy and No Fun” Jennifer Stone](https://stacker.news/items/585790/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Four Tendencies”](https://stacker.news/items/605553/r/siggy47) by @cryotosensei\n\n- [Book Review | “Work Rules!”](https://stacker.news/items/624030/r/siggy47) by @cryotosensei\n\n- [Book Review | “Thrive” by Arianna Huffington](https://stacker.news/items/629306/r/siggy47) by @cryotosensei\n\n- [Book Review | “What I Wish I Knew When I Was 20”](https://stacker.news/items/632899/r/siggy47) by @cryotosensei\n\n- [Book Review | Giada De Laurentiis’s Recipe for Adventure Naples!](https://stacker.news/items/634348/r/siggy47) by @cryotosensei\n\n- [Book Review | “Unleashed” by Dav Pilkey](https://stacker.news/items/651926/r/siggy47) by @cryotosensei\n\n- [Book Review | “Success Built to Last”](https://stacker.news/items/650573/r/siggy47) by @cryotosensei\n\n- [Lonesome Traveller by Jack Kerouac](https://stacker.news/items/543525) by @carlosfandango\n\n- [Pre-review of Human Rights and the Uses of History by Samuel Moyn](https://stacker.news/items/570366/r/siggy47) by @SilkyNinja\n\n- [Book Review- The Genesis Book](https://stacker.news/items/588212/r/siggy47) by @siggy47\n\n- [What I read in June, including what might become one of the best books of 2024:](https://stacker.news/items/593241/r/siggy47) by @speakingyourtruth\n\n- [The Book of Five Rings by Musashi Miyamoto](https://stacker.news/items/590545/r/siggy47) by @itermathi\n\n- [Symbolisms in "The Metamorphosis" by Franz Kafka (book review)](https://stacker.news/items/627213/r/siggy47) by @Nadia\n\n- [Book Review: The Monk Who Sold His Ferrari by Robin Sharma](https://stacker.news/items/624709/r/siggy47) by @Athena\n \N 21480 \N 455413 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 3.83013135913284 0 \N \N f 1640472610 \N 12 83526993 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 9 0 0 444408 2025-03-19 21:11:08.418 2025-03-29 22:39:48.908 SN Foundry- Nostr Territory Marketing Test @phygit @benwehrman @antic @kytt @siggy47 @niftynei @PlebLab @Book_It @needcreations_ @jimmysong @roytheholographicuniverse @birdeye21 @jeff @BitByBit21 @itsTomekK @potus @MaxAWebster @runningbitcoin @MEME_LORD @Levlion @elvismercury @brandonsbytes @Public_N_M_E @GlobalThreat @Billy_Dow @ekzyis @BitcoinOutdoors @TNStacker @Chiefmonkey @MerryOscar @davidw @Relight_Motion @nout @notgeld @kr @south_korea_ln @OneOneSeven @kdnolan @dk @k00b @mo\n\nHey Founders!\n\nJust a quick post. I have created a nostr profile to support my Stacker Sports territory. Thus far I have had fairly limited engagement on nostr but have begun to seek out and follow nostr users who talk sports based on various sports related hashtags. \n\nI am hoping by promoting contests I am running on SN on Nostr as well I will bring more attention to both my territory and more broadly SN. For example, here is a note I just posted to promote the UFC 297 contest I am running. \n\n\n\n\n\n\n\n![Screenshot (2).png](https://m.stacker.news/12796)\n\nHave any of you tried any sort of marketing or promotion for your territory outside of SN yet? If so, please share ideas, successes, failures, etc.\n\nCheers,\nGR \N 4776 \N 444408 \N \N \N \N \N \N \N \N health \N ACTIVE \N 13.9330346260456 0 \N \N f 307609796 \N 4 233108611 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 427960 2025-03-06 18:21:49.384 2025-03-29 22:39:48.908 Microfeatures I Love in Blogs and Personal Websites This link was posted by [fabianholzer](https://news.ycombinator.com/user?id=fabianholzer) 2 hours ago on [HN](https://news.ycombinator.com/item?id=40774277). It received 136 points and 61 comments. https://danilafe.com/blog/blog_microfeatures/ 641 \N 427960 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 20.7305039235548 0 \N \N f 603953878 \N 3 195214839 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 401496 2025-02-13 04:52:42.62 2025-03-29 22:39:48.908 Lightning Network and Interplanetary Settlement My thoughts on how future Martian colonizers could use BTC. \n\nMartians won't be able to mine BTC assuming that speed of light radio communication is the maximum transmission speed available at the time. Read [Bitcoin Astronomy](https://unchained.com/blog/law-of-hash-horizons/) to learn about the law of hash horizons.\n\nHowever, Martians are not blocked from broadcasting on chain transactions and verifying blocks with their own node. They will just experience a significant delay that could have unexpected usability bugs. For example, suppose a corporation has a multisig address and both the Earth and Mars headquarters have keys to spend from it. If the earth HQ broadcasts a TX, it's likely to confirm in 10 mins, however, the martian will not see that anything has been spent from the multisig until 30+ mins later. The Martians will forever be (on average) three blocks behind the main chain. \n\nIf the martian HQ attempts to spend from the shared multisig soon after the earthling HQ broadcasts, the martian transaction may be purged from the mempools since it's attempting to spend a UTXO that has already been spent.\n\nIn the context of LN channels, a martian should be able to open and close a channel cooperatively (with expected delay) since these actions are just on chain transactions.\n\nHowever, the martian LN node will start to experience some issues when trying to pay an LN invoice from an earth node.\n\nLN nodes are quite chatty. Each node builds its own model of the network topography by gossiping to all it's peers about the new nodes, channels, TLD (time lock delta) policy updates, and fee policy updates.\n\nSo the martian node will have a local network graph that is (on average) 30+ mins out of date for all earth nodes. If the martian attempts to craft an onion for a route using a channel that doesn't exist, or by supplying the wrong fee for a channel, the payment will fail.\n\nThat assumes, that the node is even able to craft the onion in the first place. This part might take a while because construction of the onion requires a lot of back and forth communication to generate and exchange shared secrets to do all the encrypting, verification, and byte padding of all the layers of the onion. If we assume a 30 minute delay, construction of an onion with just 3 hops, might take hours. Furthermore, they'd have to be careful not to make a route that goes from Mars to Earth, back to Mars, then back to Earth when routed (for obvious reasons).\n\nSo for Earth-to-Mars payments, it's actually more efficient to use on chain transactions.\n\nThere's actually no concept of a single "Lightning Network". There are many LNs. Some networks use shitcoins, some use keysend or AMP, some use unannounced channels, some are a subset of what we call "mainnet" and some are not even payable from mainnet.\n\nMartians could leverage this quality of LN to establish their own Lightning Network that exists entirely on Mars. They could use their mainnet to pay other martian nodes with ease. They would establish channels with each other by broadcasting a TX back to Earth. Then, they'd have to increase the time lock deltas on all their channels to give themselves more blocktime to respond to fraudulent force closes. \N 14489 \N 401496 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.2124219579994 0 \N \N f 640114946 \N 5 31793733 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 403325 2025-02-14 17:37:39.838 2025-03-29 22:39:52.938 \N 🙏 i think it's been a little longer but thank you! these past couple months on SN have been awesome, gonna keep at it https://example.com/ 15337 403317 402904.403317.403325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8280273679402 0 \N \N f 237938460 \N 1 68826035 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415162 2025-02-24 15:05:52.833 2025-03-29 22:39:52.938 \N The free market is sorting out territories nicely in my opinion. Bitcoin and bitcoin adjacent posts are still the most popular which are understandable but we have created a nice breadth of subject matter across SN now with territories and some are doing well and others not so much but that's what makes a market. The Stackers will decide which territories will stand the test of time. https://example.com/ 16154 415140 414755.415076.415098.415104.415107.415134.415140.415162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.415693653771356 0 \N \N f 152937276 \N 1 156261772 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435719 2025-03-12 22:36:50.753 2025-03-29 22:39:52.939 \N Basically the eugenicist case: If you're a real miserable piece of crap, maybe let someone else's genes propagate into the future. https://example.com/ 4287 435639 435639.435719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5287133007907 0 \N \N f 34692328 \N 1 100652381 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 2025-03-20 08:58:40.018 f \N \N \N 0 0 0 0 1 0 0 3999 2022-11-12 22:09:47.468 2025-03-29 22:39:52.939 \N There are a lot of good ones:\n\n> There is a time in every man's education when he arrives at the conviction that envy is ignorance; that imitation is suicide; that he must take himself for better, for worse, as his portion; that though the wide universe is full of good, no kernel of nourishing corn can come to him but through his toil bestowed on that plot of ground which is given to him to till.\n\nMany teenagers had this book in the 1970s:\n![](https://m.stacker.news/49384)\n https://example.com/ 768 3996 3996.3999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.546850922839 0 \N \N f 247989264 \N 1 10910142 0 f f \N \N \N \N 3996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422960 2025-03-02 20:07:56.484 2025-03-29 22:39:48.908 Any exciting travel plans coming up? Where is your next vacation destination? I'm interested to know if any of you have upcoming travel plans. I'm personally looking forward to some skiing during the christmas holidays. How about you? Any exciting destinations on your radar?\n\n\n\n\n\n \N 4043 \N 422960 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 25.1353769945037 0 \N \N f 1075047484 \N 7 33201223 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 427555 2025-03-06 13:43:05.787 2025-03-29 22:39:48.908 Music Territorys - Feel Good Friday! It's Finally here Stackers!\n\nIt's Friday!\n\nWe're about to kick off our weekends with some feel good tracks.\n\nLet's get the party started. Bring me those Feel Good tracks.\n\nTalk Music. Share Tracks. Zap Sats.\n\nLet's go! \N 14385 \N 427555 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.7831400151148 0 \N \N f 195883137 \N 1 38986712 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403695 2025-02-15 05:39:46.534 2025-03-29 22:39:52.93 \N @k00b - @hn seems to be opening duplicate posts. For example, these are identical: \n\nhttps://stacker.news/items/200629\nhttps://stacker.news/items/200627 https://example.com/ 16816 403036 403036.403695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1742649576117 0 \N \N f 590404840 \N 4 27322259 0 f f \N \N \N \N 403036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437300 2025-03-14 12:35:29.766 2025-03-29 22:39:52.931 \N Do you think we will see a popular lightning network wallet ditch the lightning network and form its own centralized solution instead, essentially forcing its users to use it? I mean it could be advertised as faster, cheaper and safer in some regards and offer charge backs.\n\nImagine if WoS had a million users for example. This would likely include individuals and businsses, i guess they could have their own internal payment solution and then maintain a connection with LN for external payments. No reason to ditch it? https://example.com/ 15488 437044 437044.437300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6653973043135 0 \N \N f 56384568 \N 1 182470467 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437801 2025-03-14 22:27:39.932 2025-03-29 22:39:52.931 \N I used some of my sats from addslice to buy a Pink n Pay voucher. Worked seamlessly. https://example.com/ 2757 437723 437723.437801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9735024610638 0 \N \N f 411770256 \N 2 189062672 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434756 2025-03-12 08:08:21.647 2025-03-29 22:39:52.932 \N > Holy shit it's a computer on Bitcoin.\n\n![](https://media.tenor.com/86FchXjCRUMAAAAM/jack-nicholson-yes.gif) https://example.com/ 19524 434755 434642.434643.434682.434755.434756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.814482423348 0 \N \N f 287653514 \N 2 6710255 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 2025-03-19 01:39:08.752 f \N \N \N 0 0 0 0 1 0 0 422023 2025-03-02 07:55:15.911 2025-03-29 22:39:52.932 \N Please bro...\n\nhttps://imgprxy.stacker.news/ssHoXyuJKoVsbNM93_CAkvvQtCwBE6vSl5tYMAIz_Vk/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9LclR3cTI1L2JybzIyMi5qcGc https://example.com/ 11164 422022 422014.422022.422023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8995059896209 0 \N \N f 230429784 \N 1 108804984 0 f f \N \N \N \N 422014 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403427 2025-02-14 19:34:46.568 2025-03-29 22:39:48.908 Anser: A Liquid Companion for Alby Hello Stackers,\n\nExcited to share my submission for the [Alby + Blockstream](https://stacker.news/items/359778) Liquid Wallet bounty: [Anser](https://anserliquid.frk.wf/). \nIt's a user-friendly, open-source, non-custodial web wallet and library designed for managing your Liquid assets right from your browser.\n\nAnser is fully non-custodial and does not sign transactions on its own; instead, it leverages Alby's liquid integration for this purpose. \nOnce signed and finalized, the transaction gets broadcasted to a liquid node and relayed to the network. \n\n*With this process your private key remains safe within your Alby extension, never exposed to the web.*\n\nIn addition to the graphical app, Anser is also released as a JavaScript library that can be integrated anywhere, for example Liquid zaps can be built on top of this library or it can be used as a starting point to implement a different web wallet or web service leveraging liquid transactions.\n\nI tried my best to thoughtfully comment on every important part of the code, making it easy to understand and audit. Additionally, I've released everything under the very permissive BSD 3-Clause license to ensure no barriers for future developments.\n\nI hope you guys like it. https://anserliquid.frk.wf/ 9365 \N 403427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7769327323756 0 \N \N f 236886391 \N 1 106861308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 409610 2025-02-19 17:42:20.132 2025-03-29 22:39:48.909 Graphene OS: Learn from my ignorance Just a quick post so that someone might learn from my frustration. This morning my Graphene OS Pixel 7 lost all data connectivity. I tried everything I could think of to correct it. I use a proton on all the time VPN. After switching to my laptop, I discovered that I was logged out of my protonmail account. I tried to log back in, but I learned that my account was locked. After security checks and resetting my password my email account was unlocked. I remembered that the proton VPN uses the same login credentials, so I checked my pixel and the Proton VPN was also logged out. \nI logged in with the new credentials, and now my data connectivity was restored.\nIt never occurred to me that the OS wouldn't allow me to use data without the VPN. I appreciate the added security, but can someone with more knowledge explain what I experienced? \N 2577 \N 409610 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 4.15281019900114 0 \N \N f 5324823 \N 1 194594513 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435437 2025-03-12 17:15:48.47 2025-03-29 22:39:48.909 What coming breakthrough will usher-in a new golden age for humanity? The magic's in the title, fellow Stackies...\n\nWhat's a technology or possibility that's *very likely* to come to fruition in the coming decade or two, and will usher-in a new (or true) golden age?!\n\nI'm particularly interested in human biology, our genes and CRISPR/Cas9, as well as possible technological "upgrades" to our bodies, which might allow us to inch closer towards "immortality" - in the sense of not dying because of cells that stop renewing themselves.\n\nWhile we're here already; any solid sources on the above?\n\nLets get typing, people. \N 19812 \N 435437 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.68360381030266 0 \N \N f 103314776 \N 1 192306357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 10:49:09.345 f \N \N \N 0 0 0 0 1 0 0 424330 2025-03-04 00:54:53.844 2025-03-29 22:39:52.932 \N lulled into a false sense of security/anonymity, you might divulge details about your setup, the tools you use, or the foolish things you've done, which could later be tied to your true identity and used against you. sp00ks and thieves could already be here, scraping and saving every post and every edit, for future analysis. https://example.com/ 10291 423124 423124.424330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4954340696654 0 \N \N f 219760048 \N 1 190188339 0 f f \N \N \N \N 423124 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424093 2025-03-03 20:27:34.86 2025-03-29 22:39:52.933 \N Can you explain to me what you mean by that? I understand the dollar milkshake theory, which involves central bank action increasing liquidity while raising rates. The ultimate endgame is the collapse of the dollar. I never understand how the bitcoin analogy applies. https://example.com/ 803 423923 417342.420721.420750.420782.423923.424093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3599103046698 0 \N \N f 135832174 \N 1 83227397 0 f f \N \N \N \N 417342 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447782 2025-03-22 06:18:48.437 2025-03-29 22:39:52.934 \N https://imgprxy.stacker.news/Tzy-6ZwjuGlfTJmUUU9MMg3wgeX9PEfPE-RGCZ0sinc/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0YwMk1DYnpYZ0FBc3FUYy5qcGc https://example.com/ 9347 447772 446513.447049.447084.447186.447661.447685.447757.447765.447772.447782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93652647890825 0 \N \N f 235134089 \N 2 186648506 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443711 2025-03-19 13:29:43.662 2025-03-29 22:39:52.935 \N All I can say about the comment thread is: Nice.\nhttps://i.imgur.com/6ixyJA5.png https://example.com/ 2640 443651 443577.443651.443711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11528925174631 0 \N \N f 997944473 \N 10 137050585 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 07:02:01.69 f \N \N \N 0 0 0 0 1 0 0 434487 2025-03-12 00:30:22.787 2025-03-29 22:39:52.936 \N An archive of the article is [here](https://archive.ph/6a3AG). An archive has no paywall, no subscription requirement, and can be easier to read. https://example.com/ 805 434482 434440.434482.434487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.776944048951 0 \N \N f 60305418 \N 1 9877919 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 2025-03-18 21:19:35.969 f \N \N \N 0 0 0 0 1 0 0 455141 2025-03-26 19:06:20.719 2025-03-29 22:39:52.936 \N I've always been surprised that the French Revolution is not all over the btc mythos. Although I guess it's more nuanced than many people can tolerate, so maybe I shouldn't be surprised. https://example.com/ 2460 449292 449290.449292.455141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.787616608559 0 \N \N f 172073551 \N 1 243739410 0 f f \N \N \N \N 449290 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448131 2025-03-22 12:28:48.003 2025-03-29 22:39:52.937 \N It's alive! https://example.com/ 739 448026 447818.448026.448131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9240791183201 0 \N \N f 233625939 \N 1 217893714 0 f f \N \N \N \N 447818 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416511 2025-02-25 16:38:09.728 2025-03-29 22:39:48.909 ⚡️ Storm Report: Best posts about the Lightning Network on SN - issue:000000 `Block:` **`#000000`** `- Oct 2024`\n\nTrying out a new format to revive really great and interesting posts archived in SN abysses. I'll will keep this ongoing if there's enough interest. Happy ~Lightning!\n\n- - -\n# Top ~Lightning posts\nMost _zapranked_ posts this month:\n\n1. > [👨‍🚀 We're releasing 𝗔𝗟𝗕𝗬 𝗚𝗢 - the easiest lightning mobile wallet](/items/700567/r/H0DLR/)\n with 29.2k sats \\\\ [40 comments](/items/700567 "2899 sats") \\\\ [@Alby](/Alby/r/H0DLR/) > [25 Sep](/items/700567/r/H0DLR/ "2024-09-25T20:26:44.960Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n2. > [Using lightning to transfer funds abroad](/items/701292/r/H0DLR/)\n with 1039 sats \\\\ [17 comments](/items/701292 "1226 sats") \\\\ [@Carresan](/Carresan/r/H0DLR/) > [26 Sep](/items/701292/r/H0DLR/ "2024-09-26T12:53:42.836Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n3. > [Blockbuster: Seamless Content Monetization with the Lightning Network](/items/714939/r/H0DLR/)\n with 13.8k sats \\\\ [13 comments](/items/714939 "840 sats") \\\\ [@fewsats](/fewsats/r/H0DLR/) > [8 Oct](/items/714939/r/H0DLR/ "2024-10-08T17:09:39.989Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n4. > [Which Lightning node implementation are you running?](/items/702600/r/H0DLR/)\n with 1099 sats \\\\ [30 comments](/items/702600 "769 sats") \\\\ [@supratic](/supratic/r/H0DLR/) > [27 Sep](/items/702600/r/H0DLR/ "2024-09-27T12:38:16.336Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n5. > [Plebnet Wiki - Wikipedia for Lightning Network](/items/713569/r/H0DLR/)\n with 2397 sats \\\\ [7 comments](/items/713569 "10 sats") \\\\ [@Rsync25](/Rsync25/r/H0DLR/) > [7 Oct](/items/713569/r/H0DLR/ "2024-10-07T15:18:36.549Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n6. > [How do you like to send sats over the Lightning Network?](/items/702294/r/H0DLR/)\n with 381 sats \\\\ [26 comments](/items/702294 "605 sats") \\\\ [@Design\\_r](/Design_r/r/H0DLR/) > [27 Sep](/items/702294/r/H0DLR/ "2024-09-27T06:30:33.469Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n7. > [Lightning P2P Bot 🤖 ⚠️ Avoid SCAMMERS](/items/735421/r/H0DLR/)\n with 246 sats \\\\ [14 comments](/items/735421 "76 sats") \\\\ [@flat24](/flat24/r/H0DLR/) > [22 Oct](/items/735421/r/H0DLR/ "2024-10-22T14:56:20.233Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n8. > [Kickstart CLN Plugin: Receive lightning payments without inbound liquidity](/items/721310/r/H0DLR/)\n with 599 sats \\\\ [2 comments](/items/721310 "52 sats") \\\\ [@Rsync25](/Rsync25/r/H0DLR/) > [13 Oct](/items/721310/r/H0DLR/ "2024-10-13T09:17:05.842Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n9. > [Swapido: send pesos to any bank account in Mexico using Lightning](/items/718337/r/H0DLR/)\n with 915 sats \\\\ [3 comments](/items/718337 "0 sats") \\\\ [@south\\_korea\\_ln](/south_korea_ln/r/H0DLR/) > [10 Oct](/items/718337/r/H0DLR/ "2024-10-10T22:29:17.023Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n10. > [Lightning Welder helps legacy lightning wallets pay BOLT12 offers](/items/730371/r/H0DLR/)\n with 3011 sats \\\\ [13 comments](/items/730371 "5763 sats") by > [@thebullishbitcoiner](/thebullishbitcoiner/r/H0DLR/) > [18 Oct](/items/730371/r/H0DLR/ "2024-10-18T22:03:43.097Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n\n\n- - -\n# Top Lightning posts outside ~Lightning\nBest posts about the Lightning Network outside ~Lightning territory:\n\n1. > [Predyx | Advanced Prediction Markets with Lightning Network Integration](/items/701885/r/H0DLR/)\n with 2472 sats \\\\ [74 comments](/items/701885 "6537 sats") \\\\ [@ek](/ek/r/H0DLR/) > [26 Sep](/items/701885/r/H0DLR/ "2024-09-26T20:57:28.873Z") > [`~oracle`](/~oracle/r/H0DLR/)\n\n2. > [No one uses Bitcoin for payments and lightning can't scale](/items/719666/r/H0DLR/)\n with 2957 sats \\\\ [47 comments](/items/719666 "1675 sats") \\\\ [@poe7645](/poe7645/r/H0DLR/) > [11 Oct](/items/719666/r/H0DLR/ "2024-10-11T19:59:57.456Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n3. > [Looking for some Lightning advice](/items/711443/r/H0DLR/)\n with 1386 sats \\\\ [15 comments](/items/711443 "778 sats") \\\\ [@crrdlx](/crrdlx/r/H0DLR/) > [5 Oct](/items/711443/r/H0DLR/ "2024-10-05T13:05:07.022Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n4. > [Could you run lightning on top of nostr? If so, would you?](/items/715634/r/H0DLR/)\n with 2656 sats \\\\ [22 comments](/items/715634 "1840 sats") \\\\ [@ek](/ek/r/H0DLR/) > [9 Oct](/items/715634/r/H0DLR/ "2024-10-09T05:10:15.732Z") > [`~nostr`](/~nostr/r/H0DLR/)\n\n5. > [Comprehensive Lightning Network Node Operator Resources](/items/726046/r/H0DLR/)\n with 1900 sats \\\\ [15 comments](/items/726046 "1550 sats") \\\\ [@DarthCoin](/DarthCoin/r/H0DLR/) > [16 Oct](/items/726046/r/H0DLR/ "2024-10-16T09:30:31.758Z") > [`~bitcoin\\_beginners`](/~bitcoin_beginners/r/H0DLR/)\n\n6. > [Blitz Wallet Tutorial - Cashu/Liquid/Lightning Combo on Mobile!](/items/719306/r/H0DLR/)\n with 2358 sats \\\\ [4 comments](/items/719306 "5 sats") \\\\ [@BTCsessions](/BTCsessions/r/H0DLR/) > [11 Oct](/items/719306/r/H0DLR/ "2024-10-11T15:07:35.978Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n7. > [lightning\\-based version of Brave browser?](/items/714376/r/H0DLR/)\n with 100 sats \\\\ [7 comments](/items/714376 "64 sats") \\\\ [@stack\\_harder](/stack_harder/r/H0DLR/) > [8 Oct](/items/714376/r/H0DLR/ "2024-10-08T07:10:54.270Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n8. > [RPG + Lightning Network](/items/700188/r/H0DLR/)\n with 231 sats \\\\ [4 comments](/items/700188 "121 sats") \\\\ [@Mishawaka](/Mishawaka/r/H0DLR/) > [25 Sep](/items/700188/r/H0DLR/ "2024-09-25T14:55:12.585Z") > [`~gaming`](/~gaming/r/H0DLR/)\n\n9. > [When banks will have to run or rent Lightning nodes!](/items/726475/r/H0DLR/)\n with 77 sats \\\\ [11 comments](/items/726475 "72 sats") \\\\ [@rebel\\_nomad](/rebel_nomad/r/H0DLR/) > [16 Oct](/items/726475/r/H0DLR/ "2024-10-16T14:37:14.699Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n10. > [Ark Labs at Bitcoin Amsterdam 2024: Lightning Without the Storms & More](/items/733845/r/H0DLR/)\n with 159 sats \\\\ [2 comments](/items/733845 "0 sats") \\\\ [@Rsync25](/Rsync25/r/H0DLR/) > [21 Oct](/items/733845/r/H0DLR/ "2024-10-21T14:06:03.003Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n\n- - -\n# Don't miss:\nOther relevant posts about ~Lightning\n\n> [TIL not all Lightning services support LNURL-verify](/items/733264/r/H0DLR/)\n with 300 sats \\\\ [3 comments](/items/733264 "56 sats") \\\\ [@thebullishbitcoiner](/thebullishbitcoiner/r/H0DLR/) > [21 Oct](/items/733264/r/H0DLR//r/H0DLR/ "2024-10-21T02:53:27.124Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n> [I want to set up a lightning node TODAY. Alby Hub?](/items/712461/r/H0DLR/)\n with 398 sats \\\\ [9 comments](/items/712461 "283 sats") \\\\ [@Signal312](/Signal312/r/H0DLR/) > [6 Oct](/items/712461/r/H0DLR/ "2024-10-06T14:45:18.291Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n> [How to buy Bitcoin Lightning Sats](/items/733913/r/H0DLR/)\n with 64 sats \\\\ [11 comments](/items/733913 "56 sats") \\\\ [@martilewis](/martilewis/r/H0DLR/) > [21 Oct](/items/733913/r/H0DLR/ "2024-10-21T14:42:01.825Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n> [Can fee rate be selected when moving from lightning to on chain with FEDI?](/items/723345/r/H0DLR/)\n with 231 sats \\\\ [2 comments](/items/723345 "0 sats") \\\\ [@tenshi](/tenshi/r/H0DLR/) > [14 Oct](/items/723345/r/H0DLR/ "2024-10-14T16:58:50.678Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n> [Evento integrates Bitcoin Lightning payments](/items/707275/r/H0DLR/)\n with 102 sats \\\\ [2 comments](/items/707275 "0 sats") \\\\ [@Rsync25](/Rsync25/r/H0DLR/) > [1 Oct](/items/707275/r/H0DLR/ "2024-10-01T16:12:19.032Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n> [Bet on the US election with sats on bitcoinprediction.market](/items/721770/r/H0DLR/)\n with 10.1k sats \\\\ 130k boost \\\\ [165 comments](/items/721770 "6954 sats") \\\\ [@HYPERBITCOINZATION](/HYPERBITCOINZATION/r/H0DLR/) > [13 Oct](/items/721770/r/H0DLR/ "2024-10-13T15:37:01.801Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n> [SN elects to go noncustodial on Nov. 5th - FAQ & AMA](/items/722833/r/H0DLR/)\n with 12.8k sats \\\\ [338 comments](/items/722833 "67.1k sats") \\\\ [@k00b](/k00b/r/H0DLR/) > [14 Oct](/items/722833/r/H0DLR/ "2024-10-14T12:17:04.507Z") > [`~meta`](/~meta/r/H0DLR/)\n\n> [Payment Censorship in the Lightning Network Despite Encrypted Communication](/items/704854/r/H0DLR/)\n with 201 sats \\\\ [1 comment](/items/704854 "0 sats") \\\\ [@Rsync25](/Rsync25/r/H0DLR/) > [29 Sep](/items/704854/r/H0DLR/ "2024-09-29T12:55:35.035Z") > [`~lightning`](/~lightning/r/H0DLR/)\n\n> [Fountain 1.1.5 - Simpler Library, Pay BOLT-11 Invoices and Artist Pages](/items/723015/r/H0DLR/)\n with 3726 sats \\\\ 20k boost \\\\ [13 comments](/items/723015 "1548 sats") \\\\ [@MerryOscar](/MerryOscar/r/H0DLR/) > [14 Oct](/items/723015/r/H0DLR/ "2024-10-14T13:45:45.566Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n> [Fedimint: Scaling Bitcoin for Billions of People?](/items/737731/r/H0DLR/)\n with 21.3k sats \\\\ [21 comments](/items/737731 "461 sats") \\\\ [@teemupleb](/teemupleb/r/H0DLR/) > [24 Oct](/items/737731/r/H0DLR/ "2024-10-24T00:33:11.245Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n\n- - -\n# Forever top ~Lightning\nWhen I'll see all the post below, posted on the ~Lightning territory I'll be happier :)\n\n1. > [Rethinking Lightning](/items/379225/r/H0DLR/)\n with 51.6k sats \\\\ [137 comments](/items/379225 "63.6k sats") \\\\ [@benthecarman](/benthecarman/r/H0DLR/) > [6 Jan](/items/379225/r/H0DLR/ "2024-01-06T19:41:35.640Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n2. > [Zaplocker.com: a non-custodial lightning address server (no node needed!)](/items/234331/r/H0DLR/)\n with 16.4k sats \\\\ [57 comments](/items/234331 "1874 sats") \\\\ [@supertestnet](/supertestnet/r/H0DLR/) > [24 Aug 2023](/items/234331/r/H0DLR/ "2023-08-24T19:42:42.760Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n3. > [Lightning Prediction Market MVP - delphi.market](/items/337637/r/H0DLR/)\n with 34.1k sats \\\\ [59 comments](/items/337637 "26.3k sats") \\\\ [@ek](/ek/r/H0DLR/) > [4 Dec 2023](/items/337637/r/H0DLR/ "2023-12-04T07:18:53.195Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n4. > [Lightning Everywhere](/items/213347/r/H0DLR/)\n with 12k sats \\\\ [27 comments](/items/213347 "1042 sats") \\\\ [@TonyGiorgio](/TonyGiorgio/r/H0DLR/) > [24 Jul 2023](/items/213347/r/H0DLR/ "2023-07-24T16:50:45.445Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n5. > [I'm Calle, a Physicist and Programmer who fell in love with Lightning - AMA](/items/109473/r/H0DLR/)\n with 110.7k sats \\\\ [78 comments](/items/109473 "6116 sats") \\\\ [@calle](/calle/r/H0DLR/) > [20 Dec 2022](/items/109473/r/H0DLR/ "2022-12-20T11:36:47.999Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n6. > [Is LND (Lightning Labs) ruining the Lighting Network?](/items/119318/r/H0DLR/)\n with 13.4k sats \\\\ [71 comments](/items/119318 "7922 sats") \\\\ [@Krutus](/Krutus/r/H0DLR/) > [8 Jan 2023](/items/119318/r/H0DLR/ "2023-01-08T11:52:59.500Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n7. > [AcceptLN.com - Every email address now accepts Bitcoin Lightning](/items/301211/r/H0DLR/)\n with 19.4k sats \\\\ [59 comments](/items/301211 "12k sats") \\\\ [@acceptLN](/acceptLN/r/H0DLR/) > [1 Nov 2023](/items/301211/r/H0DLR/ "2023-11-01T19:34:57.133Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n8. > [How Lightning Address works](/items/65872/r/H0DLR/)\n with 11.2k sats \\\\ [33 comments](/items/65872 "2087 sats") \\\\ [@heisenberg](/heisenberg/r/H0DLR/) > [2 Sep 2022](/items/65872/r/H0DLR/ "2022-09-02T22:09:59.581Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n9. > [The Lightning Network Grew by 1212% in 2 Years](/items/280061/r/H0DLR/)\n with 11.7k sats \\\\ [36 comments](/items/280061 "3462 sats") \\\\ [@Rsync25](/Rsync25/r/H0DLR/) > [10 Oct 2023](/items/280061/r/H0DLR/ "2023-10-10T15:25:25.434Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n10. > [I've built a jukebox on top of lightning](/items/294397/r/H0DLR/)\n with 9003 sats \\\\ [44 comments](/items/294397 "2775 sats") \\\\ [@pycan](/pycan/r/H0DLR/) > [25 Oct 2023](/items/294397/r/H0DLR/ "2023-10-25T17:23:18.671Z") > [`~bitcoin`](/~bitcoin/r/H0DLR/)\n\n- - -\n\n![](https://m.stacker.news/59412)\n \N 715 \N 416511 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.11876305341481 0 \N \N f 432163434 \N 3 47866411 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414111 2025-02-23 16:42:53.979 2025-03-29 22:39:48.911 Follow Friday - Who Are Your Favorite Nostr Accounts To Follow? Discovery on Nostr is getting better, but it's still a challenge for many people to find new accounts worth following. To solve this problem, we thought it would be fun to crowd-source some recommendations here.\n\nWho are your favorite accounts to follow on Nostr?\n\nLink them below 👇 \N 19689 \N 414111 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.49875174119201 0 \N \N f 395101402 \N 3 63274753 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3017 2022-10-23 15:28:07.127 2025-03-29 22:39:48.91 Legacy Series: I love English It’s typical for people to have many microcareers, but I have been an English teacher all my working life. Almost two decades, in fact. It’s a decision that marinates and gains depth of flavour with time, for my love for the English language has grown over the years.\n\n**My teaching background**\n \nPerhaps it would be best if I tell you about my background. I first taught General Paper - a subject that requires students to have strong argumentation skills - at a junior college to pre-tertiary students. Subsequently, I taught oral communication, report writing and critical thinking skills to polytechnic students. After that, I taught English as a Foreign Language to elementary and junior high school students under the Japan Exchange Teaching Programme. \n\nJapan opened my eyes to a lot of things, but reality beckoned, so I packed my bags and went home to teach Foundational English to teenagers at a vocational secondary school. During this period, an opportunity for me to teach English at an elementary school came up. I grabbed the bull by the horns and was attached to this elementary school for three years. Last but least, I returned to the vocational school after my attachment and now serve as a literacy coach for students who have dyslexia.\n\nTypically, people exclaim, “Woah” when I share my job history with them. I don’t necessarily think that my credentials are all that impressive because I hop from job to job like a bee that sips nectar from flower to flower, so I don’t accumulate expertise in terms of teaching at a particular level. Nonetheless, my limiting gap is also my strength since I have had the experience to teach English at different educational levels. I have been exposed to its intricacies, quirks and nuances from different perspectives!\n\n**1. A bastard language**\n\nDid you know that English is a bastard language? Now, I’m not trying to be naughty and use a word that would be frowned upon in polite company. I actually picked up this term during my college linguistics classes. “Bastard language” is a scholarly term! Anyway, I just love how English is non-discriminating and absorbs words and wisdom from the lands it has set foot on like a sponge. Many cultures have left their distinctive imprint on English, which makes it a fascinating keyhole to understanding how foreign languages are structured.\n\nCase in point: English words actually don’t end with the letter ‘i’. If you come across words that end with ‘i’, chances are that they are taken from other languages. Spaghetti, ravioli and paparazzi are from Italian. Taxi may not be Italian, but it is short for taximeter cab.\n\nAnother example: The letter ‘G’ has two sounds - the soft g and the hard g. Various words that we use often in daily life, like “get”, “gift” and “give” originated from German. Since German does not have a soft G, these words retain their hard g sound. Cool, right?\n\nAll this means that when I become frustrated by English’s maddening idiosyncrasies, I could perhaps take a deep breath and trace the words back to their origins. Sometimes, knowing how a word came about might explain why it is pronounced or spelt differently from other words. I’m constantly amazed at the way English acts like a time capsule, showcasing its diversity in plain sight, yet requiring the individual to unravel its layers determinedly like Sherlock Holmes solving a case.\n\n*Engagement time! It’s a cardinal rule of English that every syllable must contain at least one vowel? So, why is there no vowel for “Mc” in “McDonald’s”? Let’s see if you can answer why.*\n\n**2. So fun!**\n\nEnglish may be the closest thing we get to an all-encompassing language, but fun is what makes it truly engaging. From a young age, we are introduced to nursery rhymes and limericks and relish how rhyming words roll off our tongues. Let’s not forget tongue twisters! They never fail to bring out peals of laughter whenever friends compete with one another to see who can rattle them off the fastest. \n\nSince I have had experience in English teaching, I am exposed to lesser-known, though no less fun aspects of the language. Have you heard of *hink pink*? It’s a special kind of riddle in which the answer comprises two rhyming words. The examples below will give you a clear idea of this intriguing aspect.\n\n![](https://m.stacker.news/33741)\n\nChildren and adults alike will delight in onomatopoeia. These sound words are a blast to say aloud, conjuring vivid images in our minds and stimulating the imagination. Slight digression: the prevalence of onomatopoeia is one of the aspects I adore about the Japanese language. Back to English, another enjoyable aspect is palindrome, in which words are spelt the same forwards and backwards. Racecar, level and radar belong to this category. Wondering why I paired onomatopoeia and palindrome, here’s a fun fact: James Joyce invented a 12-letter palindrome, *tartarrattar* (the longest palindrome) to denote the sound of someone knocking on the door.\n\nNow you know!\n\nWait, you want to know another\nonomatopoeic word? Your wish is my command. Introducing *flibbertigibbet*, which has another noteworthy claim to linguistic fame. It contains four Bs, which is the most of any common word. *Flibbertigibbet* refers to a silly, irresponsible, flighty person, particularly one who chatters constantly. \n\nTo round out this section, Bill Bryson said it best, “We have a deep-rooted delight in the comic effect of words in English, and not just in advertising jingles but at the highest level of endeavour.”\n\n**3. Embeds history**\n\nJust as English absorbs words from other languages, a particular word can undergo various iterations in terms of meaning after being exposed to different cultures. The word *scrumptious* is one such example. According to the Oxford English Dictionary, this word was first recorded in 1823 to denote “mean, stingy”; It is believed to have originated in England and arrived in America with English settlers. The meaning subsequently evolved in America. First, it meant “small” and “fastidious”; then, it meant “stylish, smart”; finally, it conveyed the meaning of “excellent, marvellous, (of food) very enjoyable, delicious”.\n\nKnowing the history behind *scrumptious* won’t help me to score a higher grade during exams. Neither would I be likely to bring it up during networking events. Nonetheless, I feel that my life is all the richer because I know such trivia. \n\nIn other instances, words fall out of fashion because times have changed, rendering them obsolete. Encountering these words then gives you a peek into olden times and helps you imagine how drastically different the lives of the people then must have been. How drastic? Well, *Sprunt* is an old Scots word from Roxburgh that means “chasing girls around among the haystacks after dark”. Can you imagine such an activity happening nowadays? People would be hauled to court for violating ladies’ personal space! \n\n**4. Living organism**\n\nThis happened to me this year. I was going through the answers to some questions with my students. Now, the specific question escapes me, but I vividly recall someone mentioning *spill the tea*. As a self-respecting teacher, I promptly corrected her, explaining that the saying ought to be “spill the beans”. I didn’t expect her to emphatically say that I was mistaken and patiently explain *spill the tea* means “to talk bad about others”. Geez, how do I spell “embarrassed” again?\n\nAnyway, I think it’s so cool that young people always invent new words to express themselves and show that they are a generation distinctive from their parents and grandparents. Millennials invented words like *lit* and the now ubiquitous *adulting*; Gen Z have given us *rizz*, *no cap* and *slay*. I don’t know about you, but I expertly weave these words into my conversation with my students to show how hip I am! Cue hashtag humblebrag.\n\n![](https://m.stacker.news/33742)\n\n*Engagement time: Do you know the meaning of “Netflix and chill”? The answer may leave your jaw dropping.*\n\n**5. Rich in adjectives**\n\nYou gotta love English for the wide range of adjectives it provides you to describe stuff. For Mandarin, if I want to describe that my food is delicious, I can only use 好吃 (yummy) or 很好吃 (very yummy). While I can express my delight by saying 使我垂涎三尺 (make me water) or 吃得津津有味 (eat with gusto), these are phrases that describe my reaction towards feasting rather than the deliciousness of the food itself. But let’s look at the wide array of adjectives we use every day to describe our meals: yummy, delicious, delectable, scrumptious, mouthwatering, succulent, heavenly, palatable. So nice to be able to pick and choose from this buffet list!\n\nI think having an abundant pool of adjectives really helps when it comes to expressing one’s emotions. I really love how English comprises word clines for us to specify the intensity of our feeling. Taking anger as an example, we can use words like annoyed, frustrated, agitated, mad, upset, infuriated, irate, outraged and furious. Being able to pinpoint exactly how angry we are helps us to be more aware of our emotional capacity and, hopefully, regulate ourselves better. \n\n**6. Mode of self-expression**\n\nBecause English has such a rich vocabulary base, it gives me the opportunity to showcase my various personalities. If I wish to be taken seriously (and perhaps even be mistaken for an intellectual), I could purposely deploy academic-sounding words and those complex sentences that seemingly go on forever. When I hope to let my hair down and reveal my light-hearted and playful side, I could switch to more casual language, even using exclamation marks to great effect‼️ I’m not sure if Mandarin and Japanese can empower me to scale up and down the formality/informality spectrum like a pro.\n\n**7. Charming concoctions**\n\nAvid fans of Physical 100 will have heard of *Hwaiting*, a Konglish word frequently used by the contestants to encourage one another to overcome a challenge. Did you know that *Hwaiting* is actually borrowed from the English word “Fighting!”? I was quite impressed when I learnt this because the Koreans extracted the essence of Fighting but employed it in a positive sense to give themselves that extra Ooomph to triumph.\n\nOther charming instances of Konglish exist. Take for instance *eye shopping*, as in window shopping.\n\nAs for Janglish, the Japanese like to say “テンションが高たかい” (tenshon ga takai) which translates to *high tension* when they are *excited* about something. Normally, we associate tension to describe a stressful and highly strung situation, so I chuckled when I realised how the Japanese gave this high energy level a positive spin. Learning about other varieties of English reminds me of the ingenuity of the human race. That people are always on the lookout for ways to adapt words to describe their unique situation.\n\n**8. Sense of humour**\n\nEnglish is a vehicle for people to express their innate personalities. Now, I won’t say that I have had much experience with interacting with people from all over the world, but I do know that the British people thrive on sarcasm and irony. I have to admit that I am so clueless about their dry sense of humour that I don’t know whether they are being serious or pulling my leg. I have to say that Singaporeans are quite literal people. Singaporean communication is direct and straightforward, with jokes that are quite easy to get. What I mean to say is, we don’t play with language the way the British do. No undercurrents, no subtext in our style of communication.\n\nAgain, I don’t know the Aussies very well, but if their popular slang “I’m not here to fuck spiders” is anything to go by, I will love their in-your-face brand of caustic humour. Right now, I’m trying to use “bloody oath” whenever I can during chats with them. Loving it! \n\n**9. Highly structured language**\n\nPrior to becoming a literacy coach, I used to think that English is a highly quirky and idiosyncratic language. I couldn’t be more wrong. Guess what? Only 15% of all English words are phonetically irregular, which is amazing considering that English is a bastard language. Even with these phonetically irregular words, they often have certain parts that phonetically regular. So, you just have to memorise the parts that aren’t. Knowing this trivia may encourage foreign learners not to give up in their pursuit of English learning. After all, the path is not as daunting as it seems. If they buckle down to learn phonics and blending of phonemes, they will be able to decode and encode most words, including long sophisticated ones. \n\nSimilarly, the need to memorise the past tense form of irregular verbs in English might be a challenging task for people, especially when they are “interfered” by their native language that does not have verb conjugations. However, order exists in this maddening chaos. You can leverage various patterns - such as change in the vowel sound, verbs with -ough, and verbs that stay the same as the base form - to help you memorise all these past tense verbs. \n\nCaution: the Americans may not like how we add -t to some of these verbs instead of -ed!\n\n![](https://m.stacker.news/33743)\n\n**10. Gateway to the world**\n\nAs the world’s lingual franca, English lets me interact and bond with people from all over the globe. It reminds me that even though I live in a small island nation, I need not confine my mind to its tiny boundaries. The world is vast, with one thousand and one ways of living, and using English unlocks a breathtaking panoramic view of the similarities and differences across world cultures and subcultures. It feels like I’m perched on top of Mount Everest, enjoying this spectacular tapestry. I constantly question the extent to which the values I hold dear are really a reflection of my unique identity, rather than simply a product of my societal upbringing. \N 780 \N 3017 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.31384955096768 0 \N \N f 218627608 \N 1 8697366 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454221 2025-03-26 10:01:13.014 2025-03-29 22:39:48.911 A Statist Bitcoiner Manifesto \N https://www.bugle.news/the-statist-bitcoiner-manifesto/ 20409 \N 454221 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 24.6459427629082 0 \N \N f 1343581815 \N 13 5093354 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 413980 2025-02-23 14:58:38.987 2025-03-29 22:39:52.937 \N It leaks some details with the seller only, so while it's not truly 100% anonymous, it is better than giving all of your data to a mega corporation to be stored for eternity. https://example.com/ 20225 413957 413675.413903.413943.413957.413980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1213685739717 0 \N \N f 196021138 \N 1 76987396 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421287 2025-03-01 15:05:28.029 2025-03-29 22:39:52.938 \N Try this one\n[![crystal-ball.gif](https://imgprxy.stacker.news/9KZyyeaoaYK6TUTMD-1Y6XsfhUEzB1R7CqrQdRU99Cc/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvTUdoNVdTTTMvY3J5c3RhbC1iYWxsLmdpZg)](https://postimg.cc/Y4zY3TxQ)\n\n@siggy47 bought one for his wife and he's playing all days with it 😂😂 https://example.com/ 5427 421198 421082.421198.421287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2494259379555 0 \N \N f 34027732 \N 1 32962881 0 f f \N \N \N \N 421082 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448217 2025-03-22 13:42:19.5 2025-03-29 22:39:52.938 \N Something like postman for nostr events. With a a UI to fill in the fields. \n\nAs well as subscribe to things and see what the responses look like. https://example.com/ 15160 447900 447892.447900.448217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3720696759965 0 \N \N f 192576830 \N 1 214019237 0 f f \N \N \N \N 447892 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436457 2025-03-13 15:12:05.479 2025-03-29 22:39:52.938 \N You have been in the community for a long time. How much do you think the political aspects or world changing talking points where part of Bitcoin community in the beginning? \n\nI know that Hal Finney or Satoshi where there from the very beginning. But how widespread was it back then in the community? Where most people just there for a quick buck or for the tech? https://example.com/ 4819 435657 435657.436457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4102139276786 0 \N \N f 63983866 \N 1 181925223 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 09:15:55.58 f \N \N \N 0 0 0 0 1 0 0 413872 2025-02-23 14:03:43.877 2025-03-29 22:39:52.939 \N 1. No\n2. I wanted to but not so sure now \n3. No\n4. Argentina they good at the soccer https://example.com/ 20754 413854 413854.413872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.50123008992653 0 \N \N f 517492433 \N 4 65055996 0 f f \N \N \N \N 413854 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 433687 2025-03-11 10:09:36.914 2025-03-29 22:39:52.939 \N It's not the government is already approving for international banks like they did to their telecom https://example.com/ 635 433555 433555.433687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.344864380287 0 \N \N f 249615135 \N 2 19444477 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 01:08:50.786 f \N \N \N 0 0 0 0 1 0 0 412098 2025-02-21 23:30:46.38 2025-03-29 22:39:48.911 I want more insights of Star Wars Monetary System I found this site to explain the monetary system of Star Wars Saga but I feel it comes short. Too many questions to answer. \n\nhttps://starwars.fandom.com/wiki/Galactic_Credit_Standard#:~:text=The%20Galactic%20Credit%20Standard%2C%20simply,time%20of%20the%20Galactic%20Republic.\n\nWould had a system like bitcoin fit in a place and context like Star Wars?\n\nWhen the Empire and the Resistance were fighting they were using the same currency. If it was centralized it would had tell the position of the rebels. Unless the galaxy was so huge that no algorithm can tell exactly who is using what.\n\nBut at some points, that's where the credits chips come along. Would you use more bitcoin cards if they had a fix amount non KYC and untrackable, but verifieble with some sort of postnet? \N 2528 \N 412098 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.7302805198684 0 \N \N f 148138443 \N 1 191162025 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451177 2025-03-24 12:33:14.8 2025-03-29 22:39:48.911 Podcasting 2.0, The Lightning Network, and Value4Value usher in a new era of podcasting that's free of big tech control \N https://9to5mac.com/2022/06/26/podcasting-2-0 694 \N 451177 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 25.5859084131571 0 \N \N f 964086736 \N 5 140976066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 430608 2025-03-09 11:10:23.452 2025-03-29 22:39:52.94 \N I saw this notification come in and I was like FFS Swan, can you guys just get your act together. Then a little while later, I read it and didn’t suspect anything until I saw a seed phrase that I was supposed to “recover” my Swan funds into and I only had a week to do it. Then I knew it was complete bullshit when I saw the CTA and sender domains. Thankfully I don’t keep any funds with them, but I bet a lot of people fell for this scam. \n\nIt’s kinda strange that they ask you to set up a new wallet but I guess this makes it more believable. It would be funny if they sent the same seed phrase to everyone and someone rugged the attacker’s funds. https://example.com/ 802 430568 430549.430568.430608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.67976581877532 0 \N \N f 229342523 \N 1 62336838 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436041 2025-03-13 09:10:22.094 2025-03-29 22:39:52.94 \N Vitalik is a pure genius and the success of Ethereum is of historical proportion.\n\nNot sure he was at the origin of the "BTC Maxis" wording, maybe so, but that's surely not what defines the guy. He also explained many times from the start that Ethereum and Bitcoin were not competitors. The people who grasped the "Maxis" flag are the one constantly opposing ETH to BTC, insulting all other projects, and damaging the Bitcoin image on a daily basis in the process.\n\nIt also helps to know that Vitalik was the first editor in chief and co-founder of Bitcoin Magazine 10 years ago, meaning the guy made more to get people aware of Bitcoin in the early days than most people here. https://example.com/ 16336 436016 435907.436016.436041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3309501216765 0 \N \N f 288935120 \N 2 244935521 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 04:48:09.064 f \N \N \N 0 0 0 0 1 0 0 456113 2025-03-27 13:23:15.331 2025-03-29 22:39:52.941 \N I see nostr and SN not as competitors.\nAre two different things and should not be put in the same bag.\nWho put them in the same bag, still do not understand what is nostr and what is SN. I do not expect more from @NVK he usually do not do his own DYOR for his podcast episodes and talk shit. I was expecting a more professional podcast from a "bitcoin review" but is not at all a bitcoin review...\n\nnostr is far beyond a "new twatter" (that is now). People still don't get it and use it mostly for fucking zapathlons. https://example.com/ 19581 455855 454221.454403.455521.455855.456113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8461675292055 0 \N \N f 467772471 \N 4 238359156 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435368 2025-03-12 16:20:44.343 2025-03-29 22:39:52.941 \N It's not borrowing if they do not intend to pay it back... what's the other word I'm looking for here... help me out, guys ... :-) https://example.com/ 993 435359 435359.435368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.82806000363093 0 \N \N f 144909764 \N 2 208871616 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 2025-03-19 09:40:49.534 f \N \N \N 0 0 0 0 1 0 0 437875 2025-03-15 00:17:04.584 2025-03-29 22:39:52.941 \N [Here in this comparison guide](https://darthcoin.substack.com/p/lightning-wallets-comparison) I presented all the types of LN wallets and their features.\n\nYes, you can run a LN node on your mobile and are not just Breez and Phoenix, but also others.:\n- OBW (Open Bitcoin Wallet) - [user manual guide here](https://darthcoin.substack.com/p/obw-open-bitcoin-wallet)\n- Blixt Wallet - [user manual here](https://darthcoin.substack.com/p/getting-started-with-blixt-mobile)\n- More mobile LN nodes: Nayuta, Electrum.\n\nAnd here is a special guide explaining how to start with LN, by each level.\nhttps://darthcoin.substack.com/p/getting-started-ln\n https://example.com/ 18232 437874 437233.437495.437874.437875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.87427724371364 0 \N \N f 180587231 \N 1 25490874 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415314 2025-02-24 17:29:28.158 2025-03-29 22:39:48.908 Privacy tip: use comment as the id of you PGP / GPG key instead of email. Using email as key id of your key pair has many unwanted implications: If you provide a genuine email address that is yours then you expose this email to spam and attacks. If you use a fake email that is not yours then there are two problems associated with that. First, such email address may exist and belong to someone else - in that case you expose this email to spam and attacks. Second, whether such email exists or not id it is not your email then people attempting to contact you will be disappointed. To remedy all this when generating a GPG key pair leave the fields name and email empty and use comment as the key's id.\nBelow is a quick tutorial on how to change key id associated with an email, `kid7@nonexistant.hex`, to a comment, `kid7`.\nRun \n\n`gpg --edit-key kid7@nonexistant.hex` \n\n That should leave you to an interactive prompt. From this prompt run \n\n`adduid` \n\nand follow the querries of GPG, leaving email and name empty while specifying `kid7` as comment. Then run\n\n `list`\n\nThis should give you the list of identities with their respective integer indices. In our case the identity that we want to delete has the index of `1`. Run \n\n`uid 1` \n\nto select it, then again \n\n`list`\n\nto see it selected with `*` and then \n\n`deluid` \n\nto finally delete it. \N 15762 \N 415314 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.27633151273493 0 \N \N f 429643907 \N 2 132088605 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448322 2025-03-22 14:47:39.091 2025-03-29 22:39:48.909 Peruvian Bull- Macro Writer AMA Hey everyone! I am Peruvian Bull, a writer and researcher covering everything macro and bitcoin related. \n\nYou might have seen me here:\n\nSUBSTACK 👇\nhttps://dollarendgame.substack.com\n\nTWITTER: (103K followers) \nhttps://x.com/peruvian_bull\n\nBOOK - The Dollar Endgame 👇\nhttps://amzn.to/3yNvMe4\n\nPODCASTS w/ \n@Princey21M\n\n@Breedlove22\n 👇\nhttps://fountain.fm/episode/PIsU9AidXS7nf5zU2DlZ\n\nhttps://youtu.be/9CuMZwJinO4\n\n\nLet me know what questions you have! \N 671 \N 448322 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.6275090394754 0 \N \N f 182551025 \N 1 186847324 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 337715 2024-12-22 08:01:57.61 2025-03-29 22:39:48.911 Everyone’s favorite question: Android or IPhone? Write your justification in the comments. \N 4538 \N 337715 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 4.93550783721624 0 \N \N f 318239624 \N 3 225065419 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:16:12.838 f \N \N \N 0 0 0 0 1 0 0 428382 2025-03-07 07:59:17.346 2025-03-29 22:39:52.942 \N Zapped for visibility https://example.com/ 746 428318 428318.428382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.95415429963561 0 \N \N f 646664398 \N 6 2536409 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448387 2025-03-22 15:22:04.122 2025-03-29 22:39:52.942 \N human rights abuses? \n\npot, meet kettle \n\n https://example.com/ 712 448352 448202.448276.448315.448320.448352.448387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9382260240605 0 \N \N f 390096317 \N 2 92622842 0 f f \N \N \N \N 448202 \N 0 0 \N \N f \N 2025-03-29 08:50:09.819 f \N \N \N 0 0 0 0 1 0 0 3681 2022-11-08 20:36:43.517 2025-03-29 22:39:52.942 \N Keep in mind that Amboss benefits when you download ThunderHub, as it includes functionalities that transmit confidential data to Amboss, which is then shared with external entities.\n\nhttps://github.com/apotdevin/thunderhub/pull/546 https://example.com/ 6687 3679 3674.3677.3679.3681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.97620084344411 0 \N \N f 817677467 \N 5 151146902 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443810 2025-03-19 14:27:52.477 2025-03-29 22:39:52.943 \N Classic. [This collection of essays](https://www.amazon.com/True-Names-Opening-Cyberspace-Frontier/dp/0312862075) around the story was one of the things that got me really excited about all the stuff going on around the internet, long ago. Includes one by Tim May for heavy cypherpunk energy. https://example.com/ 16667 443593 443593.443810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4461061041438 0 \N \N f 232530261 \N 1 223117046 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454865 2025-03-26 15:59:49.789 2025-03-29 22:39:52.943 \N I am not willing to even imagine this scenario, it hurts me deeply. I've lived in 4 countries, traveled to over 25 and there has never been a feeling "I am ready to spend the rest of my life here."\n\nGeopolitics is a fucked up game and instead of fighting the system, struggling from politicians' choices, dealing with insane policies, I would rather be willing to move. \n\nI am not running whenever a problem appears, but having an ability to get out, and being ready is just part of the prepper mentality that makes you stronger and gets you in control of the situation in a moment of crisis. https://example.com/ 3371 454794 454701.454794.454865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.39991098523861 0 \N \N f 192698367 \N 2 34535374 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423814 2025-03-03 16:12:11.411 2025-03-29 22:39:52.943 \N > Does anyone else have the feeling that just about everything that's been happening since Bitcoin made it's debut on the NYSE has been an attack on Bitcoin? Even COVID-19? Even Ukraine/Russia? I'm very worried what they will do as fiat nears it's end and they begin acting irrationally out of desperation.\n\nNo I don't think they care that much about bitcoin yet.\n\nafaict they only care enough to do the easy stuff. https://example.com/ 20911 423681 423681.423814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5776381497637 0 \N \N f 117839896 \N 1 92383993 0 f f \N \N \N \N 423681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401151 2025-02-12 18:46:09.969 2025-03-29 22:39:48.909 Why isn’t Nunchuck talked about more? Curious why I don’t hear more people talking about the Nunchuck wallet? Their multisig service seems really dope in that you could set a daily limit for withdrawal and only use one key. Seems like a great way to keep $5 wrench attack at bay - bad guy could only take $1k per day, for example. But if you need to withdraw more you could go get one of your other keys. Seems really smart. And it also allows for inheritance. \n\nCurious what others think. Is it just really new or something? I seem to hear a lot about Unchained and Casa but one is KYC and the other is overpriced (in my opinion). Nunchuck seems like a winner but I’m not hearing much talk about it.\n\nAnyone use it? Is it no good? I think it’s open source, isn’t it? \N 4802 \N 401151 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 24.1518188859986 0 \N \N f 148834262 \N 1 10340700 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413473 2025-02-23 08:34:08.791 2025-03-29 22:39:52.943 \N Cast iron pans and good quality knives.\n\nWell, generally any piece of high quality kitchen ware that will outlast me. https://example.com/ 4958 413322 413007.413076.413322.413473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3466435098549 0 \N \N f 237791365 \N 1 178680743 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423234 2025-03-03 06:45:35.466 2025-03-29 22:39:52.943 \N Fiat at work. https://example.com/ 15588 423079 423079.423234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.2022358283479 0 \N \N f 92273620 \N 1 28060493 0 f f \N \N \N \N 423079 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410763 2025-02-20 17:02:38.888 2025-03-29 22:39:52.944 \N An Uncommon Friendship\nFrom Opposite Sides of the Holocaust\n\nhttps://www.ucpress.edu/book/9780520261310/an-uncommon-friendship\n\n![SmartSelect_20240120_071548_Chrome Beta.jpg](https://m.stacker.news/13104) https://example.com/ 19199 410756 410756.410763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9540818112447 0 \N \N f 49375894 \N 2 137438180 0 f f \N \N \N \N 410756 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442670 2025-03-18 18:21:39.626 2025-03-29 22:39:52.944 \N Usually the tech bros all have the same books but there are some different ones on this list. https://example.com/ 4487 442650 442628.442639.442646.442648.442650.442670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.15919435382386 0 \N \N f 346006060 \N 4 248312072 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436115 2025-03-13 10:30:41.7 2025-03-29 22:39:52.944 \N TLDR: A block could be slightly under 4mb if it contained 1 enormous native segwit transaction.\n\nLonger version: the input to the transaction would need a giant witness script to unlock it and the full text of that script would need to be included in the transaction. When a block containing native segwit transactions is propagated to pre-segwit nodes, the witness scripts that unlock the segwit inputs are not sent; pre-segwit nodes think that segwit inputs are "anyone can spend" utxos, and consequently they don't *expect* a witness script for transactions that spend them, because no script is needed to unlock an "anyone can spend" utxo.\n\nSince pre-segwit nodes only see the transaction "wrapper" (i.e. everything *around* the witness script), but not the witness script itself, they wouldn't see the block as a 4mb block, in fact they would think block is very small -- it would only contain one transaction, and only a very skeletal transaction at that, so the total size of the block (from their perspective) would be about 280-400 bytes. But post-segwit nodes would see the whole block and the whole transaction, including the witness script, which would be nearly 4mb.\n\nAlso, after a witness script is added to a transaction's "skeleton," it can't be included in a block unless you merklize that transaction and add the merkle root to the block header. When all of that is done, the total size of the block must not exceed 4mb (even for post-segwit nodes), so the transaction itself must be slightly less than that. A block header is 80 bytes so the transaction's size must not exceed 3.99992 megabytes. Within that limit, the transaction's "skeleton" will be about 250 bytes in size, so the witness script itself must not exceed 3.99967 megabytes. https://example.com/ 19303 436028 436028.436115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.583220216908 0 \N \N f 170423715 \N 1 164887401 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 08:07:29.477 f \N \N \N 0 0 0 0 1 0 0 421036 2025-03-01 11:19:08.736 2025-03-29 22:39:52.944 \N Spinning up a FutureBit Apollo BTC miner! https://example.com/ 1609 421024 420895.420951.421024.421036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2275879802096 0 \N \N f 202109693 \N 1 205416847 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423007 2025-03-02 21:23:28.903 2025-03-29 22:39:52.945 \N Thanks for sharing! It's good for us to be intellectually honest. I was stunned that El Salvador made the move in 2021. I wasn't really expecting a nation state to get involved until later this decade. We need to build tools and educate faster, especially in the Spanish language. We've gotten started on the wrong foot, but I guess we had to start somewhere? https://example.com/ 19842 423005 422717.423005.423007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.13734657472187 0 \N \N f 160308498 \N 1 66174562 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444168 2025-03-19 17:47:15.28 2025-03-29 22:39:48.909 Bitcoin as a disruptor to the current monetary system Every time I feel kind of panicked about the unfolding dynamics of btc (examples [here](https://stacker.news/items/569768) and [here](https://stacker.news/items/325143)) I like to listen to @dhruv talk about pretty much anything. It often helps; more interestingly, it often helps in directions I hadn't considered.\n\nThis is one such example. Articulate, well-reasoned discussion about the present and future of btc. https://www.youtube.com/watch?v=ruI7LoySG1Q 5865 \N 444168 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 2.01453484897304 0 \N \N f 2142520300 \N 22 119193250 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 15 0 0 443554 2025-03-19 12:15:16.231 2025-03-29 22:39:48.909 Jordan Peterson SN Bookclub -- We Who Wrestle With God Just got my hands on this bad boy: \n\n![](https://m.stacker.news/64624)\n\nAny stackers keen on a bookclub type reading experience? (Not sure how to do it properly over SN -- AMA, just drop random quotes? -- but some of y'alls smarties can figure it out). \n\nKEEN TO JOIN? Drop a message below \N 685 \N 443554 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.3503733434959 0 \N \N f 670888139 \N 4 77728439 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:38:20.4 f \N \N \N 0 0 0 0 2 0 0 402955 2025-02-14 09:34:33.729 2025-03-29 22:39:52.943 \N ![](https://www.zapread.com/i/-0z) https://example.com/ 17976 402674 402674.402955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8416626231593 0 \N \N f 224724654 \N 3 154104178 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421028 2025-03-01 11:10:41.247 2025-03-29 22:39:52.943 \N Nice! Glad that Block continues to pursue development of their ASIC program. Even better is that they are picking up the slack left over and abandoned by Intel.\n\n>However, as we were planning this tape out, we learned of an opportunity to acquire a large volume of bitcoin mining ASICs from Intel, and just completed a purchase agreement with Intel. This immediate access to production ASICs accelerates our mining system development, enabling us to get to market more quickly. Additionally, we can now focus our design team exclusively on cutting edge three nanometer ASIC development.\n\nNow that they are focusing on 3nm development, can't wait to see what their new ASIC will be capable of. More decentralization and more competition, gogo! https://example.com/ 4754 421020 420895.421020.421028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8043124848441 0 \N \N f 395213718 \N 2 129902625 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437569 2025-03-14 16:22:35.104 2025-03-29 22:39:52.943 \N If we've learned anything since 2020 its that you know what they are telling us is complete BS. The question is, what is really gonna happen. I think Odell is right here. https://example.com/ 1584 435502 435046.435209.435215.435427.435502.437569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6260521194198 0 \N \N f 76249633 \N 1 201709090 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423413 2025-03-03 10:57:35.316 2025-03-29 22:39:52.944 \N While they are hibernating, bears do not urinate. Their bodies convert waste into protein. https://example.com/ 6687 420666 420666.423413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.980833287558234 0 \N \N f 138153589 \N 1 203134126 0 f f \N \N \N \N 420666 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1360 2022-09-13 06:43:59.429 2025-03-29 22:39:52.944 \N ~ smiles nervously ~ https://example.com/ 16912 1359 1359.1360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.900870320403193 0 \N \N f 431206983 \N 2 5362666 0 f f \N \N \N \N 1359 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407979 2025-02-18 14:01:12.001 2025-03-29 22:39:52.945 \N I'm going to be pushing some changes shortly that I'll explain when I do that.\n\nOtherwise, I have 2 tabconf presentations I have to make/build/whateverthefuck. https://example.com/ 11866 407971 406399.407380.407469.407944.407954.407957.407969.407971.407979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.20968294958353 0 \N \N f 199772867 \N 2 164849045 0 f f \N \N \N \N 406399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 405202 2025-02-16 13:51:01.286 2025-03-29 22:39:48.909 A fun way to test public knowledge of Bitcoin > https://melrosetradingpost.org/wp-content/uploads/2012/11/dd4cde2831a511e2b55e22000a9f09fb_7.jpg\n\nI've played a few tricks on people in the past with a tube of superglue in the past. Once, in the 80s after gluing a dime to the sidewalk, someone came back with a hammer to get it off.\n\nIn today's world - with uploads and video channels - I've just thought of a great idea for a YouTube video.\n\nSuperglue a plastic bitcoin onto the sidewalk and see how many people try to prize it off.\n\n> https://cdn.teachstarter.com/fileserver/2020/04/sidewalk-chalk-idea-for-practicing-sight-words.jpg\n\nFurther up the sidewalk, paint/chalk 12 real seed words, in the right order, that point to 100,000 sats of Bitcoin and see which gets taken first. I'm guessing the plastic coin will be retrieved in a regular neighborhood every time.\n\nIt'd be great to upload a video of how passersby in NYC, SF and Austin (and cities around the world) compare and put the videos onto YouTube for us all to watch. \N 21814 \N 405202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1254027026957 0 \N \N f 153187069 \N 1 220033835 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447251 2025-03-21 18:14:47.297 2025-03-29 22:39:48.909 Bitcoin Myths Demystified ## 1 - Bitcoin is just like all other digital currencies; nothing new\n\nNearly all other digital currencies are centrally controlled. This means that:\n\n- They can be printed at the subjective whims of the controllers\n- They can be destroyed by attacking the central point of control\n- Arbitrary rules can be imposed upon their users by the controllers\n\nBeing decentralized, Bitcoin solves all of these problems.\n__________________________\n## 2 - Bitcoins don't solve any problems that fiat currency and/or gold doesn't solve\n\nUnlike gold, bitcoins are:\n\n- Easy to transfer\n- Easy to secure\n- Easy to verify\n- Easy to granulate\n\nUnlike fiat currencies, bitcoins are:\n\n- Predictable and limited in [supply](https://en.bitcoin.it/wiki/Controlled_supply "Controlled supply")\n- Not controlled by a central authority (such as [The United States Federal Reserve](https://en.wikipedia.org/wiki/Federal_Reserve_System))\n- Not debt-based\n\nUnlike electronic fiat currency systems, bitcoins are:\n\n- Potentially anonymous\n- Freeze-proof\n- Faster to transfer\n- Cheaper to transfer\n__________________________\n## 3 - Miners, developers or some other entity could change Bitcoin's properties to benefit themselves\n\nBitcoin's properties cannot be illegitimately changed as long as most of bitcoin's [economy](https://en.bitcoin.it/wiki/Economic_majority "Economic majority") uses [full node](https://en.bitcoin.it/wiki/Full_node "Full node") wallets. Transactions are irreversible and uncensorable as long as [no single coalition of miners has more than 50% hash power](https://en.bitcoin.it/wiki/Majority_attack "Majority attack") and the transactions have an [appropriate number of confirmations](https://en.bitcoin.it/wiki/Confirmation#How_Many_Confirmations_Is_Enough "Confirmation").\n\nBitcoin requires certain properties to be enforced for it to be a good form of money, for example:\n\n1. Nobody ever created money out of nothing (except for [miners](https://en.bitcoin.it/wiki/Mining "Mining"), and only according to a [well-defined schedule](https://en.bitcoin.it/wiki/Controlled_supply "Controlled supply")).\n2. Nobody ever spent coins without knowing their [private key](https://en.bitcoin.it/wiki/Private_key "Private key").\n3. Nobody spent the same coin twice\n4. Nobody violated any of the other tricky rules that are needed to make the system work ([difficulty](https://en.bitcoin.it/wiki/Difficulty "Difficulty"), [proof of work](https://en.bitcoin.it/wiki/Proof_of_work "Proof of work"), DoS protection, ...).\n\nThese rules _define_ bitcoin. A [full node](https://en.bitcoin.it/wiki/Full_node "Full node") is software that verifies the rules of bitcoin. Any transaction which breaks these rules is not a valid bitcoin transaction and would be rejected in the same way that a careful goldsmith rejects fool's gold.\n\nFull node wallets should be used by any intermediate bitcoin user or above and especially [bitcoin businesses](https://en.bitcoin.it/wiki/Why_Your_Business_Should_Use_a_Full_Node_to_Accept_Bitcoin "Why Your Business Should Use a Full Node to Accept Bitcoin"). Therefore anybody attempting to create bitcoins with invalid properties will find themselves being rejected by any trading partners. Note that lightweight wallets and web wallets do not have the low-trust benefits of full node wallets. Lightweight (SPV) wallets will blindly trust the miners, meaning if 51% of miners printed infinite coins or spent the same coin twice then lightweight wallet users would happily accept these fake bitcoins as payment. Web wallets blindly trust the web server which could display anything at all.\n\n[Miners](https://en.bitcoin.it/wiki/Mining "Mining") are required to choose between multiple _valid_ transaction histories. A coalition of more than 50% of miner power is able to (at great expense to themselves) [rewrite transaction history](https://en.bitcoin.it/wiki/Majority_attack "Majority attack"), so miner decentralization is necessary to keep transactions irreversible. Miners burn a lot of electrical power in the mining process so they must constantly be trading their bitcoin income in order to pay bills. This makes miners utterly dependent on the bitcoin economy at large and therefore gives them a strong incentive to mine _valid_ bitcoin blocks that full nodes will accept as payment.\n\nInfluential figures in the community (such as developers, politicians or investors) may try to use their influence to convince people to download and run modified full node software which changes bitcoin's properties in illegitimate ways. This is unlikely to succeed as long as counterarguments can freely spread through the media, internet forums and chatrooms. Many bitcoin users do not follow the bitcoin forums on a regular basis or even speak English. All appeals to run alternative software should be looked at critically for whether the individual agrees with the changes being proposed. Full node software should always be open source so any programmer can examine the changes for themselves. Because of the co-ordination problem, there is usually a strong incentive to stick with the status quo.\n\nSee also: [Full_node#Economic_strength](https://en.bitcoin.it/wiki/Full_node#Economic_strength "Full node") See also this blog post: [Who Controls Bitcoin?](https://nakamotoinstitute.org/mempool/who-controls-bitcoin/)\n__________________________\n## 4 - Bitcoin is backed by processing power\n\nIt is not correct to say that Bitcoin is "backed by" processing power. A currency being "backed" means that it is pegged to something else via a central party at a certain exchange rate yet you cannot exchange bitcoins for the computing power that was used to create them. Bitcoin is in this sense not backed by anything. It is a currency in its own right. Just as gold is not backed by anything, the same applies to Bitcoin.\n\nThe Bitcoin currency is _created_ via processing power, and the integrity of the block chain is _protected_ by the existence of a network of powerful computing nodes from certain [attacks](https://en.bitcoin.it/wiki/Weaknesses#Attacker_has_a_lot_of_computing_power "Weaknesses").\n__________________________\n## 5 - Bitcoins are worthless because they aren't backed by anything\n\nOne could argue that gold isn't backed by anything either. Bitcoins have properties resulting from the system's design that allows them to be subjectively valued by individuals. This valuation is demonstrated when individuals freely exchange for or with bitcoins. Please refer to the [Subjective Theory of Value](https://en.wikipedia.org/wiki/Subjective_theory_of_value).\n\nSee also: the "[Bitcoin is backed by processing power](https://en.bitcoin.it/wiki/Myths#Bitcoin_is_backed_by_processing_power)" myth.\n__________________________\n## 6 - The value of bitcoins are based on how much electricity and computing power it takes to mine them\n\nThis statement is an attempt to apply to Bitcoin the [labor theory of value](https://en.wikipedia.org/wiki/Labor_theory_of_value), which is generally accepted as false. Just because something takes X resources to create does not mean that the resulting product will be worth X. It can be worth more, or less, depending on the utility thereof to its users.\n\nIn fact the causality is the reverse of that (this applies to the labor theory of value in general). The cost to mine bitcoins is based on how much they are worth. If bitcoins go up in value, more people will mine (because [mining](https://en.bitcoin.it/wiki/Mining "Mining") is profitable), thus [difficulty](https://en.bitcoin.it/wiki/Difficulty "Difficulty") will go up, thus the cost of mining will go up. The inverse happens if bitcoins go down in value. These effects balance out to cause mining to always cost an amount proportional to the value of bitcoins it produces[[1]](https://en.bitcoin.it/wiki/Myths#cite_note-1).\n__________________________\n## 7 - Bitcoin has no intrinsic value (unlike some other things)\n\nThis is simply not true. Each bitcoin gives the holder the ability to embed a large number of short in-transaction messages in a globally distributed and timestamped permanent data store, namely the bitcoin blockchain. There is no other similar datastore which is so widely distributed. There is a tradeoff between the exact number of messages and how quickly they can be embedded. But as of December 2013, it's fair to say that one bitcoin allows around 1000 such messages to be embedded, each within about 10 minutes of being sent, since a fee of 0.001 BTC is enough to get transactions confirmed quickly. This message embedding certainly has intrinsic value since it can be used to prove ownership of a document at a certain time, by including a one-way hash of that document in a transaction. Considering that electronic notarization services charge something like $10/document, this would give an intrinsic value of around $10,000 per bitcoin.\n\nWhile some other tangible commodities do have intrinsic value, that value is generally much less than its trading price. Consider for example that gold, if it were not used as an inflation-proof store of value, but rather only for its industrial uses, would certainly not be worth what it is today, since the industrial requirements for gold are far smaller than the available supply thereof.\n\nIn any event, while historically intrinsic value, as well as other attributes like divisibility, fungibility, scarcity, durability, helped establish certain commodities as mediums of exchange, it is certainly not a prerequisite. While bitcoins are accused of lacking 'intrinsic value' in this sense, they make up for it in spades by possessing the other qualities necessary to make it a good medium of exchange, equal to or better than [commodity money](https://en.wikipedia.org/wiki/Commodity_money).\n\nAnother way to think about this is to consider the value of bitcoin the global network, rather than each bitcoin in isolation. The value of an individual telephone is derived from the network it is connected to. If there was no phone network, a telephone would be useless. Similarly the value of an individual bitcoin derives from the global network of bitcoin-enabled merchants, exchanges, wallets, etc... Just like a phone is necessary to transmit vocal information through the network, a bitcoin is necessary to transmit economic information through the network.\n\nValue is ultimately determined by what people are willing to trade for - by supply and demand.\n__________________________\n## 8 - Bitcoin is illegal because it's not legal tender\n\nIn March 2013, the U.S. [Financial Crimes Enforcement Network](https://en.wikipedia.org/wiki/Financial_Crimes_Enforcement_Network) issues a new set of guidelines on "de-centralized virtual currency", clearly targeting Bitcoin. Under the new guidelines, "a user of virtual currency is not a Money Services Businesses (MSB) under FinCEN's regulations and therefore is not subject to MSB registration, reporting, and record keeping regulations." [[2]](https://en.bitcoin.it/wiki/Myths#cite_note-2) [Miners](https://en.bitcoin.it/wiki/Mining "Mining"), when mining bitcoins for their own personal use, aren't required to register as a MSB or Money Transmitter. [[3]](https://en.bitcoin.it/wiki/Myths#cite_note-3)\n\nIn general, there are a [number of currencies](https://en.wikipedia.org/wiki/Local_currency) in existence that are not official government-backed currencies. A currency is, after all, nothing more than a convenient unit of account. While national laws may vary from country to country, and you should certainly check the laws of your jurisdiction, in general trading in any commodity, including digital currency like Bitcoin, [BerkShares](https://en.wikipedia.org/wiki/BerkShares), game currencies like WoW gold, or Linden dollars, is not illegal.\n__________________________\n## 9 - Bitcoin is a form of domestic terrorism because it only harms the economic stability of the USA and its currency\n\nAccording to [the definition of terrorism in the United States](https://en.wikipedia.org/wiki/Definitions_of_terrorism#United_States), you need to do violent activities to be considered a terrorist for legal purposes. Recent off-the-cuff remarks by politicians have no basis in law or fact.\n\nAlso, Bitcoin isn't domestic to the US or any other country. It's a worldwide community, as can be seen in this [map of Bitcoin nodes](https://bitnodes.earn.com/nodes/live-map/).\n__________________________\n## 10 - Bitcoin will only enable tax evaders which will lead to the eventual downfall of civilization\n\nCash transactions offer an increased level of [anonymity](https://en.bitcoin.it/wiki/Anonymity "Anonymity"), yet are still taxed successfully. It is up to you to follow the applicable tax laws in your home country, or face the consequences.\n\nWhile it may be easy to transfer bitcoins pseudonymously, _spending_ them on tangibles is just as hard as spending any other kind of money anonymously. Tax evaders are often caught because their lifestyle and assets are inconsistent with their reported income, and not necessarily because government is able to follow their money.\n\nFinally, the Bitcoin [block chain](https://en.bitcoin.it/wiki/Block_chain "Block chain") is a permanent record of all transactions, meaning it can be mined for info at any time in the future making investigation, tracing of funds, etc much easier than with other forms of payment.\n\n## Bitcoins can be printed/minted by anyone and are therefore worthless\n\nBitcoins are not printed/minted. Instead, [blocks](https://en.bitcoin.it/wiki/Block "Block") are computed by miners and for their efforts they are awarded a specific amount of bitcoins and transaction fees paid by others. See [Mining](https://en.bitcoin.it/wiki/Mining "Mining") for more information on how this process works.\n\n \N 19005 \N 447251 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.50132446134577 0 \N \N f 852471019 \N 6 133962340 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:22:43.841 f \N \N \N 0 0 0 0 3 0 0 393285 2025-02-06 01:28:41.475 2025-03-29 22:39:48.91 🌊 Hey Stackers, we're Geyser! Welcome to our AMA \N https://geyser.fund/ 822 \N 393285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0266936263056 0 \N \N f 64200076 \N 1 170762465 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403929 2025-02-15 11:37:34.651 2025-03-29 22:39:52.944 \N Yes, indeed are good guys behind Muun. I have nothing against them.\nThey only create a bad product. https://example.com/ 1044 402674 402674.403929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5682865011214 0 \N \N f 111595554 \N 1 225877220 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434287 2025-03-11 18:57:47.32 2025-03-29 22:39:52.944 \N Lightning login fixes hackers getting access to phone and email data. ⚡⚡ https://example.com/ 902 434237 433828.434031.434091.434226.434237.434287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2025931726085 0 \N \N f 388937543 \N 3 4690471 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435890 2025-03-13 04:29:28.935 2025-03-29 22:39:52.945 \N I'm @futurepaul (gotta trust me lol) but lost my login. Happy to discuss this if anyone has any questions or comments. https://example.com/ 21139 435793 330698.330774.434596.435793.435890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.604206728049732 0 \N \N f 377150767 \N 3 198157860 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 2025-03-20 00:15:27.403 f \N \N \N 0 0 0 0 2 0 0 449601 2025-03-23 12:55:56.084 2025-03-29 22:39:48.91 Gloria Zhao is now a Bitcoin Core maintainer \N https://github.com/bitcoin/bitcoin/pull/25524 937 \N 449601 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.15885647206491 0 \N \N f 1038394390 \N 12 114252862 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416786 2025-02-25 20:56:30.188 2025-03-29 22:39:52.945 \N I'm glad to see this is getting no discussion. Because frankly this ridiculous issue should have been resolved 10 years ago.\n\nFull-RBF by default settles it. We can remove the remaining BIP125 junk after that. https://example.com/ 11145 416780 416768.416780.416786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8319608058115 0 \N \N f 144122519 \N 1 68733930 0 f f \N \N \N \N 416768 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436439 2025-03-13 15:03:28.421 2025-03-29 22:39:52.945 \N “Cryptominers’ high-energy consumption has negative spillovers on the environment, quality of life, and electricity grids"\n\nwait so does that mean the tax goes directly to the people? or just to more war? yeah, probably more war, the greenest industry of all. https://example.com/ 9242 436273 436273.436439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.64465698446459 0 \N \N f 165909179 \N 1 114146507 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 08:38:02.92 f \N \N \N 0 0 0 0 1 0 0 433753 2025-03-11 11:17:16.947 2025-03-29 22:39:52.945 \N Yes!, that's what I'm actually thinking in my head right now - let's do this hardware stuff! https://example.com/ 7992 433588 433588.433753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.811217533693 0 \N \N f 162623657 \N 2 107120323 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 2025-03-18 17:22:10.447 f \N \N \N 0 0 0 0 1 0 0 434954 2025-03-12 11:13:54.105 2025-03-29 22:39:52.945 \N I've been compiling a list of BTC VC funds for a while now, and aside from Ego Death Capital I have the following (note that I'm not 100% sure they are all BTC only):\nhttps://ltng.ventures/\nhttps://trammell.ventures/\nhttps://ten31.vc/\nhttps://timechain.concentric.vc/\nhttps://fulgur.ventures/\nhttps://hivemind.vc/\nhttps://www.seetee.io/\nhttps://www.stillmark.com/\nhttps://megatron.ventures/\nhttps://vailshire.com/\nhttps://www.bitcoinopportunity.fund/\nhttps://www.teachingbtc.com/betting/\nhttps://perma.ventures/\nhttps://www.chollapetro.com/cholla-ventures\nhttps://www.axiombtc.capital/\nhttps://hcm.capital/\nhttps://bitgrowlab.com/\nhttps://epochvc.io/\n*Disclaimer: I have not yet worked or invested with any of them.* https://example.com/ 3409 434627 434627.434954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4531716915518 0 \N \N f 69434744 \N 1 19860188 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 2025-03-19 08:53:42.151 f \N \N \N 0 0 0 0 1 0 0 446719 2025-03-21 12:39:59.06 2025-03-29 22:39:48.909 Debt spiral is coming According to data reported yesterday, the United States government spent ONLY 30% of the total tax collection this year on debt interest, we are approaching a point of no return, where the Deficit can implode the currency.\n\nUnfortunately, it can reach the point where the government has to choose between saving the debt or the currency and I think we all know what that means.\n\nI want to read your opinion, I think many people do not know what this means, hyperinflation due to a deficit that is fed back by public spending and greater debt that ends in hyperinflation.\n\n![](https://m.stacker.news/39415)\n\nhttps://www.zerohedge.com/markets/us-spent-record-140-billion-just-debt-interest-june-30-all-tax-revenues \N 722 \N 446719 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 16.6497413179387 0 \N \N f 316015188 \N 2 122749494 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 11:50:43.54 f \N \N \N 0 0 0 0 1 0 0 422579 2025-03-02 15:00:29.086 2025-03-29 22:39:52.932 \N I’m working on launching a course about global macro economics for the Turks and Caicos economy in the Caribbean.\n\nI created a macro economic simulation model for that island.\n\nI plan to discuss with people living on that island or doing business in the Caribbean in a board room setting what the global macro trends are.\n\nIn those sessions we will also discuss the main developments in larger economies like USA, BRICS, China, Europe and Japan.\n\nMy goal is to teach them about how their economy and the global economies work!\n\nWith strategic dashboards about historic economic infocators. I have flund a secret way how I can download all relevant indicators about all countries in the world from a reliable source.\n\nSo I’m going to teach them how they could quickly analyze and understand global macro trends and economies.\n\nThese people do not know what money is. They still live in the fiat world. They could ne policy advisors at government policy departments, trying to advance in their carreers. Or they could be imvestors, business owners trying to get financial freedom. But still in a fiat world.\n\nSo I can’t yet teach them to stack sats. But hopefully after 12 weeks of my program they know what “shit” the world is in. And how their wealth, the wealth of their islands, can be impacted. And they learn some basic economic processes to look at.\n\nI would want to know from the Stacker.news community:\n\nHow do you make sense of global macro? Do you follow the economy of your country? And how and when do you decide to save and convert your fiat into sats?\n\nWhat would you want to learn about the economy? What are your concerns?\n\nOn tech I need to try to get my BTCpayment server on my bitcoin node /Raspberry pi 4/ umbrel working through my wordpress website. I can already receive dollars through a payment provider but I need to let BTCpayserver work through woocommerce and wordpress. Then I can receive sats. And maybe focus on delivering economic courses and transformation for people with sats!!\n\nTrying to focus on the bitcoin community instead of only the fiat community.\n\nI also need to automate some work with python. https://example.com/ 674 422491 422203.422207.422399.422491.422579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0328495910297 0 \N \N f 3421165613 \N 27 21064675 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3721 2022-11-09 03:18:52.941 2025-03-29 22:39:52.933 \N niceee. when can we do this for video? 👀\n\ntesting this with a relevant meme in light of today's events\n\nhttps://imgprxy.stacker.news/uXwPDUw2EsmUvJloeLzui2MgwJY5BQFsWMdNlhyv5TY/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0Z5VEh2bV9Yc0FNLW5Ebj9mb3JtYXQ9anBnJm5hbWU9bWVkaXVt https://example.com/ 761 3718 3490.3718.3721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.00818153512719 0 \N \N f 231034363 \N 1 76047718 0 f f \N \N \N \N 3490 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449072 2025-03-23 06:56:53.668 2025-03-29 22:39:52.933 \N This is what a blade of grass looks like under a microscope. Next time you take a walk outside, know that the grass is happy to see you. 😃\n![](https://imgprxy.stacker.news/4JlQTONafAu_opXVyeS3JVoqPgzv5j2ymyV47Ry_zm8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9wYnMudHdpbWcuY29tL21lZGlhL0Y0dUJFTzFYQUFJd3lONz9mb3JtYXQ9d2VicCZuYW1lPXNtYWxs) https://example.com/ 15049 449067 449067.449072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7067020374004 0 \N \N f 390624556 \N 2 74997484 0 f f \N \N \N \N 449067 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435346 2025-03-12 15:49:17.483 2025-03-29 22:39:52.933 \N I think it’s cool you can donate sats to the entire SN community! Just dropped 1,000 sats in there today https://example.com/ 3371 435217 435217.435346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0960590293004 0 \N \N f 75637970 \N 1 76424339 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-20 08:33:02.337 f \N \N \N 0 0 0 0 1 0 0 423111 2025-03-03 01:09:16.087 2025-03-29 22:39:52.933 \N There are perfectly good reasons to have multiple accounts, including trying out a different character. \n\nI would prefer people not create fake conversations between their own accounts, but I don't really care if they do. \n\nA good system doesn't require people to be on their best behavior, it guides them towards their best behavior. https://example.com/ 11395 422949 422873.422949.423111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4464345824338 0 \N \N f 208759715 \N 1 119112089 0 f f \N \N \N \N 422873 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410080 2025-02-20 08:26:27.628 2025-03-29 22:39:52.933 \N I'm studying Cashu / Chaumian ecash.\n\nAnd helped @calle and @gandlaf21 to disassemble a money printer.\nSo refreshing.\n😂 https://example.com/ 21369 410018 410018.410080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.676472549270706 0 \N \N f 363543190 \N 2 19574120 0 f f \N \N \N \N 410018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410654 2025-02-20 15:31:19.1 2025-03-29 22:39:52.933 \N My insides are aching over how much I want this to succeed. https://example.com/ 1090 410647 410269.410647.410654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2439804653412 0 \N \N f 248074682 \N 2 118350972 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441553 2025-03-18 05:49:17.4 2025-03-29 22:39:48.909 What works on Stacker News? Is it similar to Substack? Interesting review of Stacker News. A little outside publicity. https://open.substack.com/pub/swissroadbutterflyeffect/p/what-works-on-stacker-news-is-it?r=9bii2&utm_campaign=post&utm_medium=email 2293 \N 441553 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 9.42738105297895 0 \N \N f 621873110 \N 4 81754564 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 405466 2025-02-16 16:11:29.439 2025-03-29 22:39:48.909 Mutiny Wallet Open Beta is available to everyone! \N https://blog.mutinywallet.com/mutiny-wallet-open-beta/ 897 \N 405466 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.3336357926603 0 \N \N f 873132536 \N 4 118338294 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408255 2025-02-18 16:51:46.423 2025-03-29 22:39:48.909 Pubkey Counters Conbase $1 Shitcon Pizza Day with Free Bitcoin Pizza \N https://www.youtube.com/watch?v=rRSGvMycSac 18409 \N 408255 \N \N \N \N \N \N \N \N Value4ValueEducation \N ACTIVE \N 22.2538962975931 0 \N \N f 31332801 \N 3 22425125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410065 2025-02-20 08:11:12.333 2025-03-29 22:39:52.933 \N hal calculated bitcoin's value based on 20 million not 21 million one week aver it was released\n\nhow could he know 1 million would be locked as a honeypot canary for bitcoin's security\nhttps://www.mail-archive.com/cryptography@metzdowd.com/msg10152.html\n https://example.com/ 14791 410018 410018.410065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.71500521900732 0 \N \N f 415325067 \N 2 203526795 0 f f \N \N \N \N 410018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421211 2025-03-01 13:48:34.149 2025-03-29 22:39:52.933 \N I think it should do the purpose. \n\nhttps://theminermag.com/news/2024-09-30/swan-bitcoin-redact-tether/ https://example.com/ 10469 420921 420895.420921.421211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3334034998916 0 \N \N f 21099286 \N 1 102988617 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454905 2025-03-26 16:26:55.666 2025-03-29 22:39:52.933 \N Day 158 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 997 454865 454701.454794.454865.454905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.75058880625217 0 \N \N f 110830549 \N 1 81867818 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424188 2025-03-03 21:40:23.982 2025-03-29 22:39:52.933 \N I always liked updates being posted here. I wouldn't join a call but I'm not a contributor. Seeing the call notes posted to SN would be cool if you go down that route. https://example.com/ 18468 424185 423928.423951.423962.424104.424121.424182.424183.424185.424188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7665270573268 0 \N \N f 232227498 \N 1 127293608 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430258 2025-03-09 01:43:19.512 2025-03-29 22:39:48.909 AMA with Start9 Hey, this is Matt Hill from Start9, here to answer any and all questions.\n\nStart9 has had a crazy year trying to get StartOS v0.3.6 out the door, and we're getting closer.\n\nWe also announced that we will be building a router next!\n\nToday we began our migration away from Telegram and onto a private, self-hosted Matrix server for community support. \N 2537 \N 430258 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 14.3601427733017 0 \N \N f 92802169 \N 2 193375652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 402119 2025-02-13 15:06:37.317 2025-03-29 22:39:48.909 Nine New Bitcoin Merchants Appeared in Vancouver in the Past Four Weeks Alone The Vancouver community continues to onboard merchants at a pace unseen outside of El Salvador.\nIn the past four weeks, nine merchants were added to the map:\n- Two bars\n- Two fast food restaurants\n- Two dispensaries\n- One liquor store\n- One print shop\n- One cell phone repair shop\n\nI now worry that we might not have enough Bitcoiners to actually regularly patronize all these businesses, and wonder how we can help people earn more sats (and less fiat), so they have some to spend.\n\nThe Bitdevs group is keeping track of all the businesses [here](https://www.bitdevs.ca/map) and on [BTCMap](https://btcmap.org/map#13/49.28270/-123.10756).\nBit shoutouts to CoinOS, which is spearheading much of the effort. \N 17638 \N 402119 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.36585518736973 0 \N \N f 392703636 \N 2 175531868 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435242 2025-03-12 14:48:48.343 2025-03-29 22:39:48.909 Don’t Care About Others As a Japanese language enthusiast, I remember a saying **The nail that sticks out gets hammered down** vividly. Japanese society is rather homogeneous, so it doesn’t feel all that weird to me - the fact that people who dare to be different will attract negative attention and be judged. \n\nRecently, I read about how a similar concept exists in Latin America. People who try to pull others down - by the tails of their jackets - to prevent them from rising more than they should have are called **jacket pullers**. This seems to be an illustration of the crabs in a basket syndrome in real life. So, crabs will drag each other and tumble to the bottom of the bucket. I would have thought that Latin America, a place known to have infectious and exuberant life energy, would be a good environment to foster independent thought. Guess not.\n\nThis got me to reflect on my own country. In Singlish, we actually have a phrase called **spoil market**. We use it disparagingly on people who set the bar so high that the rest of us commoners cannot keep up. Sometimes, it’s said in jest, but other times, it is said as a warning for over-zealous associates not to supersede everyone else.\n\nIn other words, regardless of the kind of society we live in, there are bound to be naysayers and detractors who just cannot stand what we are doing. If we get ourselves too drawn into their criticism, we might lose heart and not carry out our plans. We will not become the person we’re destined to be because we get sidetracked by others’ perceptions.\n\nThough perhaps getting swayed by others’ judgement may not be such a problem for Bitcoiners. Choosing to live the Bitcoin Standard suggests that we embrace the path less taken and are oblivious to people who are blinded by the empty lure of fiat. With Bitcoin, we gain the conviction to tune out the noise and focus inwardly. *What is the ideal life I want to carve with my sats?* we ask ourselves and then execute our plan. If we are more ambitious, we might even think of transforming our community or even society with sats. We are not adverse to be the nail that sticks out because we can withstand the pounding. \N 5377 \N 435242 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.10439884986654 0 \N \N f 1313343115 \N 12 86917904 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:16:12.114 f \N \N \N 0 0 0 0 7 0 0 421268 2025-03-01 14:47:57.878 2025-03-29 22:39:52.933 \N The mempool will likely contain more transactions because runes will likely have an initial novelty/popularity\n\nBlockspace will likely be scarcer due to the greater number of transactions trying to get into the blockchain (hopefully their initial popularity will wear off)\n\nThe utxo set is unlikely to increase significantly because runes are encoded as op_returns, which have no impact on the utxo set\n\nTo create a rune you must spend at least one utxo, but you need not create any. Most users will probably create a new one to replace their old one with change, so they will consume utxo A, create utxo B, and create an op_return, which is not a utxo -- so, overall, no material impact on the utxo set (hopefully) https://example.com/ 20599 420888 420888.421268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4845223714593 0 \N \N f 210475558 \N 1 166525234 0 f f \N \N \N \N 420888 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422871 2025-03-02 18:51:00.834 2025-03-29 22:39:52.933 \N Two best fun facts I have is:\n- Viruses (as in self replicating pathogenic biological entities that cause disease in man) does not exist - [Hacking at the Root of the Virus Issue](https://dpl003.substack.com/p/hacking-at-the-root-of-the-virus) \n- Also. If you've heard about them they are most likely Gatekeepers - [The Gatekeepers Club](https://dpl003.substack.com/p/the-gatekeepers-club)\n\n[![CO-1111.jpg](https://imgprxy.stacker.news/znFHT5Yo3GRSvUNcdWUvlKcjbJmqTTYIGQhzLEAnoaA/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBvc3RpbWcuY2MvNGRwcDY4ZEovQ08tMTExMS5qcGc)](https://postimg.cc/njcsZGB5) https://example.com/ 10981 422586 422203.422207.422399.422491.422579.422583.422586.422871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8775671857527 0 \N \N f 2496212454 \N 18 62226781 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433640 2025-03-11 09:26:57.035 2025-03-29 22:39:52.934 \N Get an lnd node going and get comfortable with it before I start funding it. https://example.com/ 4027 433377 433377.433640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2254591681632 0 \N \N f 100822833 \N 1 12013341 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436372 2025-03-13 14:02:27.528 2025-03-29 22:39:52.934 \N "The average holding among their conservative counterparts: 17%."\nIt shows that everyone is aware if btc, and all kinds of people are buying. \nAs more people accept it, it will become more stable. \nI cant wait for that day. https://example.com/ 713 436241 436241.436372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.35863690196501 0 \N \N f 161843068 \N 2 84484877 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 08:35:40.054 f \N \N \N 0 0 0 0 2 0 0 436518 2025-03-13 15:56:03.373 2025-03-29 22:39:52.934 \N Hey @k00b I have another proposal for SN.\n\nWhen you want to fw sats from a post to another SN user, will be nice also to have a separate field for an external LN address.\nMaybe the OP is not (yet) a SN user but you still want to send him the sats you get on SN for his article, video, note, whatever other content.\n\nIs that possible? https://example.com/ 2022 436243 436241.436243.436518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.85420824660144 0 \N \N f 395945753 \N 2 34703958 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 2025-03-20 09:30:44.52 f \N \N \N 0 0 0 0 1 0 0 1404 2022-09-13 19:20:52.66 2025-03-29 22:39:52.934 \N Technology is just a tool.\n\nPeople will always need people. https://example.com/ 4831 1357 1357.1404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.33006706388375 0 \N \N f 114457362 \N 1 74959453 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403776 2025-02-15 07:52:12.57 2025-03-29 22:39:52.935 \N It's probably the error messaging from LN itself being very vague. A large part of this is due to the desire to preserve privacy, which is great, but it makes it very hard for us to dig into most of our payment failures and do something about it. \n\nThe Lightning report we recently released has some great data and graphs on our failure reasons and rates: https://blog.river.com/the-lightning-network-in-2023/ https://example.com/ 20280 403773 402904.403694.403750.403754.403755.403762.403765.403771.403772.403773.403776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.62793269850462 0 \N \N f 944763027 \N 8 151138221 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423823 2025-03-03 16:18:40.465 2025-03-29 22:39:52.935 \N What gives you the impression Strike is a wallet? Just because you can hold Bitcoin with them, does not make them a wallet. They will tell you to also not use them as a wallet. No where in their marketing do they state they are a wallet. I think you need to clarify your terminology. https://example.com/ 11153 423576 423576.423823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7213358733912 0 \N \N f 215661210 \N 1 245363361 0 f f \N \N \N \N 423576 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448270 2025-03-22 14:14:36.819 2025-03-29 22:39:52.936 \N Paxful drank their milk shake!\n\n.\n\n![LocalBitcoins global volume](https://i.postimg.cc/HH4xqNWk/ALL.png)\nLocalBitcoins global volume\nSource: https://coin.dance/volume/localbitcoins\n \n.\n\n![Paxful global volume](https://i.postimg.cc/Qh36tFrq/ALL.png)\nPaxful global volume\nSource: https://coin.dance/volume/paxful https://example.com/ 19943 448196 447833.448012.448175.448196.448270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1511483136291 0 \N \N f 174260649 \N 2 119787755 0 f f \N \N \N \N 447833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447106 2025-03-21 16:17:00.636 2025-03-29 22:39:52.936 \N Crafting wallet UI https://example.com/ 15119 445420 445096.445420.447106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.6623391113249 0 \N \N f 226758121 \N 1 246071882 0 f f \N \N \N \N 445096 \N 0 0 \N \N f \N 2025-03-28 11:09:06.406 f \N \N \N 0 0 0 0 1 0 0 447164 2025-03-21 16:48:56.875 2025-03-29 22:39:52.937 \N People in the early days were techonologists, cryptographers, programmers, curious people. It wasn't political at all, there was no maximalism. I didn't get the sense people were in it for a quick buck. namecoin and litecoin was accepted as a curiousity, there was pretty much no animosity toward new projects. maximalism became more of a thing once these projects started to promise insane things and innocent people started losing lots of money. maximalism is just free market SEC.\n\nI remember mining on my gpu when it was worth $1, I never did it for the money I just wanted more coins to play with and send to friends.\n\nIt was a pretty chill and small community back in those days. The politicization came after, and it became necessary, just due to the sheer number of cargo-cult scams that cropped up and continue to crop up around bitcoin. https://example.com/ 18321 446456 446456.447164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1599813309457 0 \N \N f 741256108 \N 5 77588503 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N 2025-03-28 11:02:16.585 f \N \N \N 0 0 0 0 3 0 0 458028 2025-03-28 21:54:53.218 2025-03-29 22:39:52.937 \N Yes. And you can easily connect to alternative coordinators. For example, @Kruwed on twitter runs one. You just need to add this line to your ~/.walletwasabi/client/Config.json file to use it:\n\n "MainNetCoordinatorUri": "https://btcpay.kruw.io/plugins/wabisabi-coordinator/", https://example.com/ 7773 457836 457655.457836.458028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5219476778246 0 \N \N f 133126418 \N 1 225413431 0 f f \N \N \N \N 457655 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430906 2025-03-09 13:56:54.057 2025-03-29 22:39:52.937 \N ⚡️🐌⚡️\n\nHappy Labor Day all https://example.com/ 20849 430794 430619.430794.430906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2690066820099 0 \N \N f 288083290 \N 2 157588754 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435974 2025-03-13 07:28:56.336 2025-03-29 22:39:52.938 \N Not good for learning about how to use it iirc, but I really liked [this GraphQL documentary](https://www.youtube.com/watch?v=783ccP__No8). The channel has a lot of great documentaries about other dev stuff like frameworks :)\n\nOr as someone in the YT comments mentioned, it's like "Netflix for developers", lol https://example.com/ 6526 435908 435908.435974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.06799815478252 0 \N \N f 543741952 \N 3 236454914 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 2025-03-20 02:23:08.663 f \N \N \N 0 0 0 0 1 0 0 402749 2025-02-14 00:47:50.205 2025-03-29 22:39:52.938 \N https://imgprxy.stacker.news/MkTz7JkocI3gHfUl0efKiVI5SZKVDsMKgzeZFyyvsXE/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYS5iZWVoaWl2LmNvbS9jZG4tY2dpL2ltYWdlL2ZpdD1zY2FsZS1kb3duLGZvcm1hdD1hdXRvLG9uZXJyb3I9cmVkaXJlY3QscXVhbGl0eT04MC91cGxvYWRzL2Fzc2V0L2ZpbGUvODk1YTBjN2QtYTdlZS00MTZmLTllZmItNmRmYjIzNTQ4OTBjL3NpZ25hbC0yMDIzLTA3LTI3LTA3LTM5LTE3LTUxMi00LmpwZw https://example.com/ 20280 402674 402674.402749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.03451576728968 0 \N \N f 644975275 \N 4 140255951 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443367 2025-03-19 09:53:54.52 2025-03-29 22:39:48.909 The only project you need to succeed at is yourself This is the mantra I use to welcome repeated task and project failure as easy as anything else. \n\nMaybe its just me but it seems like repeated failure is required to succeed at anything.\n\nGetting to the point where you consider yourself mostly a success (in an immaterial sense) requires repeated failure too - and its never really over - but its a success that I believe gives to all others.\n\nSucceeding at tasks and projects mostly requires failing a lot and objectively examining the failures. The least self-actualized people that I know are too afraid to fail so they avoid admitting they've caused their failures and imagine they've succeeded more than they have. They're only guilty of avoiding pain but they're creating more of it in process.\n\nNothing makes moment to moment failure easier than knowing you're ultimately succeeding at something that really matters. \N 15843 \N 443367 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 17.7963294804421 0 \N \N f 457620198 \N 2 205175889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:02:01.557 f \N \N \N 0 0 0 0 1 0 0 417338 2025-02-26 10:05:36.308 2025-03-29 22:39:48.909 HODL is obsolete. Hodl by SPEND & REPLACE - must be the new bitcoiners MANTRA \N https://twitter.com/btcexplorers/status/1646503564527775745 21814 \N 417338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7163298966624 0 \N \N f 236513240 \N 1 43467414 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435019 2025-03-12 12:04:33.711 2025-03-29 22:39:48.909 Rumors Prime Trust is collapsing, Swan withdrawals frozen? Idk what's going on, but I warned you guys Swan was trash, and hiring 90% marketers (some 2020 shitcoiners like Terrence and Breedlove) to circle jerk about how amazing bitcoin is does not actually add any value to anything.\n\nSwan did some emergency maneuver to attempt to pull customer funds out of Prime Trust on a weekend with zero notice. We'll see if they managed to get out before it was too late.\n\nI wrote an article about their massive fuck-up in November when they cost customers as much as 10% of their entire transaction volume over several days (and then refused to make any of their customers whole, Strike also fucked their customers, and some Canadian exchanges too). https://bitcoinmagazine.com/markets/ftx-collapse-cause-huge-bitcoin-price-spike\n\nAnd the "bitcoin angels" and "investors" are very basic hype-seekers that love these companies. Bitcoiners are trash, ineffective people it seems. Bearish on bitcoiners. Bullish on Bitcoin. May take a few decades or 1+ centuries for all these idiots to lose their wealth to those who are actually smart and productive. \nhttps://heaviside.substack.com/p/210-years-of-darkness-on-bitcoin \N 15336 \N 435019 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 16.5106201122266 0 \N \N f 99556860 \N 1 165670913 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 08:54:06.866 f \N \N \N 1 0 0 0 1 0 0 447630 2025-03-22 01:10:18.318 2025-03-29 22:39:48.909 Runes: A worse-is-better fungible token protocol for Bitcoin \N https://rodarmor.com/blog/runes/ 763 \N 447630 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 17.7069678813468 0 \N \N f 134464354 \N 1 246368578 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414729 2025-02-24 09:03:27.459 2025-03-29 22:39:52.939 \N And that's why US people and merchants will be the LAST ones in Bitcoin adoption.\nBecause they will always fall into this trap of using the so called "bitcoin debit cards" instead of just pushing the acceptance of Bitcoin in shops. https://example.com/ 20310 414722 414711.414722.414729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.27636419471078 0 \N \N f 496085727 \N 3 156094977 0 f f \N \N \N \N 414711 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434631 2025-03-12 04:47:23.123 2025-03-29 22:39:52.939 \N Interesting…. me thinks the maxi doth protest too much. \nTruth always comes out eventually https://example.com/ 10112 434626 434626.434631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1892350709508 0 \N \N f 98294826 \N 1 214594167 0 f f \N \N \N \N 434626 \N 0 0 \N \N f \N 2025-03-19 04:12:53.474 f \N \N \N 0 0 0 0 1 0 0 441862 2025-03-18 10:41:33.529 2025-03-29 22:39:52.939 \N El Salvador is going to see an army of Bitcoin-literate kids enter the economy in a few more years. \n\nGreat to see. https://example.com/ 18735 441851 441695.441851.441862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.40932771405645 0 \N \N f 608319630 \N 5 154155815 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434309 2025-03-11 19:20:19.654 2025-03-29 22:39:52.94 \N [![wife-sn.jpg](https://i.postimg.cc/bvQtZ2Nh/wife-sn.jpg)](https://postimg.cc/67p3Sqvj) https://example.com/ 5173 434278 434278.434309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5380803406196 0 \N \N f 161695911 \N 3 94591191 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 23:13:19.394 f \N \N \N 0 0 0 0 2 0 0 436004 2025-03-13 08:05:56.736 2025-03-29 22:39:52.94 \N ![We have to pump those numbers](https://i.imgflip.com/3724gg.jpg)\n\n\nTesting image posting 😅 https://example.com/ 21833 435958 435958.436004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2061640467203 0 \N \N f 235369876 \N 1 1610379 0 f f \N \N \N \N 435958 \N 0 0 \N \N f \N 2025-03-20 05:22:53.318 f \N \N \N 0 0 0 0 1 0 0 436455 2025-03-13 15:10:55.627 2025-03-29 22:39:52.941 \N > Another factor with housing is supply being low.\n\nIs housing supply low due to factors like population growth though? Population growth in the US has been [pretty flat and is even beginning to taper](https://ourworldindata.org/explorers/population-and-demography?time=2004..latest&facet=none&country=~USA&hideControls=false&Metric=Population&Sex=Both+sexes&Age+group=Total&Projection+Scenario=None):\n\n![Screenshot 2023-12-05 at 12.14.56 PM.png](https://m.stacker.news/6824)\n\nI suspect the housing crisis is caused by less "natural" demand on housing and more so factors like commercial use of homes for airbnb-type lodging and homes being used as a store of value.\n\nI've done zero research though. https://example.com/ 1236 436449 436028.436449.436455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2198690429505 0 \N \N f 72443782 \N 1 210989075 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 09:31:29.477 f \N \N \N 0 0 0 0 1 0 0 423295 2025-03-03 07:49:59.963 2025-03-29 22:39:52.941 \N Lyn Alden is on stacker.news\nThis will surely gain some views\nI have one question, if you so choose:\nDo you think Bitcoin can survive on transaction fees alone? Or is it all a big ruse? https://example.com/ 4602 423277 422863.423277.423295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4371413727487 0 \N \N f 233761960 \N 1 83374838 0 f f \N \N \N \N 422863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401716 2025-02-13 10:42:52.186 2025-03-29 22:39:48.909 Telegram's Privacy Mirage: Why You Should Stop Using It Now \N https://www.eddieoz.com/telegrams-privacy-mirage-why-you-should-stop-using-it-now/ 1618 \N 401716 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 0.171645606739723 0 \N \N f 235946293 \N 1 180977396 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410187 2025-02-20 10:38:24.867 2025-03-29 22:39:48.909 Insights about The Bitcoin Revolution in Iran **Hello SNers**\n\nI recently published on my website a study on Bitcoin adoption in Iran.\n🔗 https://www.adoptblock.com/bitcoin-revolution-iran-en\n\nI heard that original content was preferred here, so to try to make you want to read my study I will give you some insights I haven’t shared anywhere else.\n\nFor those intrigued by the notion of leveraging Bitcoin adoption as a means to combat governmental oppression, I am sure you’ll find my study interesting.\n\n.....................\n\nConsidering I don’t have a lot of technical skills, the best way I found to contribute to Bitcoin was to write content about it.\nIn a bit more than a year now, I have been writing an introduction to Bitcoin (that doesn’t mention price or investment), a dive into Bitcoin energy consumption and environmental impact compared to the traditional finance, and a few others about Bitcoin innovations such as RGB, Taproot Assets, Drivechains, and many others.\nThe moment came when I wanted to make something more meaningful.\nLast summer, Ray Youssef, posted a tweet searching for Iranian testimonies to write about Bitcoin adoption in Iran. I guess this idea stayed in my mind, and a few months later I started to do research.\n\n.....................\n\n**The hardest step I faced in order to make this study was to get testimonies**.\n\nI am half Iranian but never lived there, and I haven’t been there for over 10 years.\nIt was inconceivable to publish this study without at least one testimony.\n\nBut can you imagine, you live in a country where you have to be careful about everything you do, about every information you share, about every person you meet. Would you tell anybody on the internet about how you are avoiding prohibitions?\n\nOnce I decided to do this study, I started a hunt on social media of Iranians exposing their interest in Bitcoin.\nFirstly, I started to contact family members, but none of them were using Bitcoin, some was shitcoining, most didn’t know about it.\nThen I searched Twitter accounts, YouTube channels, Facebook groups, telegram channels who were talking about Bitcoin in Farsi (Persian). I sent messages resuming what I was trying to do.\n\n_“Hello, I am a French journalist, and I’d like to write about Bitcoin adoption in Iran. Would you accept answering questions?”_\n\nMore or less.\n\nAfter tens of messages without answers I started to think I will have to give up this idea. I would have to tell people who know about it that I couldn’t do it.\nDuring this period, I was spending hours trying to find a better way to get in touch with people.\nSomehow, after more tens of messages, a few of them accepted to answer my questions.\n\n**Another difficult part was the language**. As an Iranian I learned Farsi while speaking with my family, but I lost it with the years.\n\nOne thing you have to understand is that people don’t leave their country only by pleasure. Most Iranians who now live outside of Iran, were constrained to do so. Some who still had the right to put a foot back there, lost it because of their activities. That’s what happened to my father.\nIt’s a bit too personal to give more details about it here, but after my father had problems with the Iranian government I never came back there, and lost the use of speaking Farsi.\n\nBy contacting Iranians, I had to somehow “seduce” them and make them believe in my honesty, even though I was an Iranian not speaking Farsi.\n\nOne of them helped me a lot by translating my questions in Farsi so I could get more testimonies, more experience and opinions.\nOne even wrote a two page document answering my questions in detail.\nAnd I was finally able to start writing.\n\n.....................\n\n**2 months later, I can say that this study is the thing I am the most proud about**.\nEven if I wish I could write more about Bitcoin.\n2 months later, I am happy because I have been able to prove to the people who accepted to share a bit of their life that they were right to trust me.\n2 months later, I am thinking about what I could do next. For Iranians, and for other populations in a similar case.\n\nI have a few ideas on new topics/populations to write about, maybe in a different format.\n\nFor Iranians, I am thinking how I could directly contribute to their Bitcoin adoption.\nThinking of financing an easy Lightning wallet access (like Machankura) and educational content in Farsi.\nDo you guys have any ideas? What would be helpful? And how could we create a Machankura or Phoenix accessible for them?\n\n**I am interested in solutions the pleb could propose.**\n\nI’d also like to have your feedback, opinions, thoughts, and questions about the study, don’t hesitate to reply.\n\nTo conclued, I wanted to thank @DarthCoin who invited me here, it was 2 days ago and I already like it here!\n \N 10112 \N 410187 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.30535965791778 0 \N \N f 149426955 \N 2 46040832 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434796 2025-03-12 08:47:43.813 2025-03-29 22:39:52.942 \N I cannot give you the best answer for all those questions because I do not have the right information data. I think only SN founders and admins can give you the best answer to this post.\n\nWhat I can give you is MHO about how I see SN until now (being one of its first users).\n\n1. I see SN like were the faucets in the early days of Bitcoin\n\n[![first-faucet.png](https://i.postimg.cc/T3VB2f54/first-faucet.png)](https://postimg.cc/NK0dph46)\n\nPeople were receiving a lot of sats for almost doing nothing. But that was a method to bring new users easily. In those early days, was needed more testing and people using it, in order to understand it.\nSN is doing something the same, but in small quantities.\nAs I always said, be wise with zapping. Not everything on SN merit a zap, especially a large amount of sats.\n\n2. SN is designed to be a better reddit but instead of upvote/downvote will be with sats. Users MUST feel "the pain" when they zap 1 sat or 1000 sats.\nUpvotes on SN are the same as on reddit, one user = one vote. But SN is adding something new, the incentive of amount of sats, not just the vote.\nThe amount of sats is ONLY the zapper appreciation to the OP, for its effort. But that is not affecting the "ranking" of that post. Is more like a V4V reward.\n\n3. All those thinking that SN is an "assmilking" cow... they are wrong. SN is a fair reward system, driven only by each stacker "sats power".\n\nIn all this MSM experiment I zapped more than usual. Why? Because I wanted to see how the algo is working or not. But usually I am very careful with how much and to who am I zapping. https://example.com/ 18423 434795 434795.434796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4155266627278 0 \N \N f 710046058 \N 8 130280577 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 09:14:00.62 f \N \N \N 0 0 0 0 2 0 0 440869 2025-03-17 15:40:05.405 2025-03-29 22:39:52.942 \N What deters people from embracing uncertainty is a lack of personal responsibility.\n\nPeople without personal responsibility are quick to blame external factors that they cannot control for the cause of their suffering. They blame the economy/the president/the immigrants/the fiat money system, etc. for their problems.\n\nWhen asked what would help them right now, they'll describe actions others should take: president should lower inflation/interest rates, the gov should issue more stimulus/welfare, the corporations should lower prices and pay workers more, people should adopt a BTC standard, etc.\n\nSomeone with high personal responsibility is more likely to focus on what they can control. They accept that they alone are to blame/credit for their situation. They are more likely to bet on themselves and embrace uncertainty because they are aware of their own power and limitations and have faith in their ability to navigate uncertainty. https://example.com/ 17014 440764 440764.440869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5929795726508 0 \N \N f 35737519 \N 1 151105721 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423831 2025-03-03 16:21:24.52 2025-03-29 22:39:52.943 \N This isn't dumb, the concerted efforts (by the NY times and co) to smear mining, and now this, is a concerted effort to stop bitcoin adoption in the us. This isn't a move from a senile man, this is a move likely backed and funded by banking and other interests https://example.com/ 11038 423667 423667.423831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8232417465634 0 \N \N f 375020984 \N 5 208826221 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 403816 2025-02-15 08:39:33.476 2025-03-29 22:39:52.943 \N He most likely will get Health and Human Services https://example.com/ 18265 402749 402674.402749.403816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2126320257283 0 \N \N f 483174606 \N 3 161800669 0 f f \N \N \N \N 402674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455649 2025-03-27 08:47:39.015 2025-03-29 22:39:48.909 The Bitcoin Pionner: A Comic Tribute to Hal Finney ![1](https://nostr.build/i/f761d23c01057200908e1c15826e4401d8edc0e34b817ef0135b6d70b8b21696.jpg)\n![2](https://nostr.build/i/6c76878af82b36e9611a97637c5a35496954888aaeb76a15ba454be123e24fb6.jpg)\n![3](https://nostr.build/i/96be8040050dfc237b38b3885733e9e62c027591fe9edfeca61bd9d944be0b9c.jpg)\n![4](https://nostr.build/i/8a9ed199597d569591c7920f88b81b6aa3b01d05d9a1ffd46496f0af3758e298.jpg)\n![5](https://nostr.build/i/2008fc9d2acf0452470459379161f5e978f1504b083e286dad7522620e88f63c.jpg)\n![6](https://nostr.build/i/1a1be6f03f38313dfd883edd0f48d471cb9232844eaa18fe07b8e10660c1adf9.jpg)\n \N 21639 \N 455649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8322302685454 0 \N \N f 2198481803 \N 16 76589172 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 422548 2025-03-02 14:33:52.239 2025-03-29 22:39:48.909 Welcome to the ~Design territory Welcome to the [Stacker.News](https://Stacker.News)’s ~Design territory. As community of design lovers, we share ours and their favourite pieces, as well as mature, substantive ad constructive conversations about design, designers and thinkers of the past, present and future. \n- - - \nWe intend design as the process of _creation of a plan or convention for the construction of an object or a system_; so to necessarily focus on the visual appeal but `design` as `process` of creation aimed at solving a functional purpose with an act of creativity and innovation in any industry or application. Beauty is a consequence of it and it does not mean your post or work needs to be limited to a visual outcome. **Be creative!**

\n- - - \nWe know our creative minds need to be feed with insane inspiration. We know, for example, that ~Devs face multiple design challenges per day. We know everyone love beauty and simplicity. Here’s the place to share it all. Please before sharing any link to external sources or posting and commenting anything, make sure you read our [guidelines](https://stacker.news/Design_r/r/Design_r). This territory is strictly moderated and do not give out warnings. **Stay Focus!**\n- - -\nIf you know any designer(s), tag them below using their SN or X `@username`, alternatively feel free to invite them using this link below:
`https://stacker.news/invites/clr82fwsj0001omwadwj8kokk/r/Design_r`
The first post is a `freebie`, the second is on us!\n- - - \n**Questions?** Get in touch via `nostr` [DM](https://iris.to/design_r)\n \N 12562 \N 422548 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 14.082017719588 0 \N \N f 826313137 \N 8 224199969 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 6 0 0 433943 2025-03-11 14:26:31.664 2025-03-29 22:39:48.909 zap.meme - building in the open #2 ![logo-sm.png](https://m.stacker.news/14885)\n\n# building in the open #2\n\n[zap.meme](https://zap.meme) is a new meme platform where you can create and share memes and emojis, and earn Bitcoin! We're currently competing in the PlebLabs Top Builder competition.\n\nthis is our weekly progress update post! we'll be outlining what we've been up to this week, what we plan for next week, general strategy and product roadmap stuff, and other random ideas!\n\n#### Previous posts\n\n- [building in the open #1](https://stacker.news/items/413007)\n\n#### Introductions\n\nCTO - Jowo (@jowo) is a Full-stack web engineer with an indie game development background. He's been working in Bitcoin for one year and has had a keen interest since 2015.\n\nCMO (Chief Meme Officer) - JD (@zapmeme) is a meme connoisseur and Bitcoiner. He's worked in people facing roles for over 10 years and is helping out with [zap.meme](https://zap.meme) doing testing and meme curation, as well as a myriad of other tasks that need attention. Once we have traction, he'll also be in charge of customer support and operating as a moderator.\n\n## This week\n\nWe'll start with some awesome news this week:\n\nWe made it through to the second round of PlebLab Top Builder!\n\nWe're super stoked, and now we have two weeks left until the final teams are announced for Round 3 of Top Builder.\n\n#### The plan\n\nLast week we outlined the following plan for the week:\n\n- Improve the core UX of the meme feed. We're not sure how we'll change it yet, but we'll be figuring this out next week. We have some creative ideas on this front, but need to make some tough decisions.\n- Bring economic incentives into the app for content consumers. Right now, only content creators have any real economic reason to sign up. We want to bring more value to our content consumers and encourage them to register. We have a few exciting ideas that we're planning on this front.\n- Some basic admin tools so our CMO (Chief Meme Officer) can more easily manage the 1000s of memes on the platform.\n- Nostr: we want more robust integrations with Nostr. we're gunna get Nostr sign in implemented in our app, and also experiment more with setting up a meme focused relay.\n\n#### What actually happened\n\nHere's what actually happened!\n\n![image](https://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmfLRDT4Tf74fDuv3DJVSYw4Hb2B6d6j9XykHUzmrZMoKA/33597390_4370257979969619_8576608880438542336_n.png)\n\n- Nostr login! And some other Nostr related integrations under the hood.\n- Some basic admin tools for internal use (and also allowing users to show/hide their own memes)\n- Very basic alert system so you get notifications in the header if you've been zapped\n- Lots of support and talking to users / sharing the alpha with the world!\n- A bunch of UI tweaks as a result of user feedback.\n- Fix a few small bugs and one more serious bug with historic reactions.\n- We made it through to the second round of PlebLab Top Builder!\n- Featured in the top [5 SN posts](https://stacker.news/items/420577) of last week! Woo hoo, thanks everyone :)\n\n###### Nostr login and activity demo\n\nhttps://www.loom.com/share/7adaffe777be4caeae5c3ede2dd2a1cc?sid=21f103aa-8d88-469b-ba7b-b6cd68d024e0\n\n###### Admin tools demo\n\nhttps://www.loom.com/share/e9873808e4c44a84b38d1fb4155080ff?sid=9bcbcdf1-4555-4157-a753-0e3104746620\n\n## Next week\n\n**Next week** we'll be focusing on work that we didn't manage to complete last week. The priorities will be:\n\n- Improve the core UX of the meme feed. We're still not sure how we'll change it, but we'll be figuring this out tomorrow, and reaching out to some of the Top Builder mentors and early adopters to ask their opinions (Let us know here if you have any thoughts!!). We have some creative ideas on this front, but need to make some tough decisions and hash out the details.\n- Bring economic incentives into the app for content consumers. Right now, only content creators have any real economic reason to sign up. We want to bring more value to our content consumers and encourage them to register. We have a few exciting ideas that we're planning on this front.\n\nOver the next two weeks we feel we really need to make some waves and get people excited about what we're building, in order to really boost our chances of making it through to the final round of Top Builder! The way we see it, we'll need to really make a splash in order to get into the last round. The competition is really tough! \n\nOur plan is first to refine the product a little, improving the UX of the main meme and emoji feeds. That'll take us into the middle of the first week. Then we'll plan out some exciting things to bring economic incentives to content consumers and drum up some exciting hype around our product. Hopefully, early next week we'll have some announcements to make on that front!\n\n## Stats\n\n| | Week 1 | Week 2 | Week 3 | Week 4 | ... |\n| ---------------------- | --------- | --------- | ------ | ------ | --- |\n| Weekly page views | 400\\* | 1688 | | | |\n| Weekly Unique visitors | 80\\* | 325 | | | |\n| Total registered users | 34 | 83 | | | |\n| Total reaction value | 1940 sats | 3810 sats | | | |\n| Total memes uploaded | 8323 | 8491 | | | |\n\n\\* approximate because analytics were added in the middle of the week\n \N 1122 \N 433943 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.35232404602362 0 \N \N f 492438750 \N 3 242785138 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 07:23:54.729 f \N \N \N 0 0 0 0 3 0 0 414654 2025-02-24 06:52:11.636 2025-03-29 22:39:48.91 Stacker News hosting bitcoin.pdf \N https://stacker.news/bitcoin.pdf 20294 \N 414654 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5843091593943 0 \N \N f 228577621 \N 1 49589239 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443130 2025-03-19 04:35:17.699 2025-03-29 22:39:48.91 Jack Dorsey's Block lays off 'large number' of staffers \N https://www.businessinsider.com/block-layoffs-jack-dorsey-tech-industry-cuts-2024-1 20683 \N 443130 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 10.4345499124992 0 \N \N f 384061968 \N 3 6734102 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 97257 2023-12-11 08:47:38.368 2025-03-29 22:39:48.91 Daily Discussion Thread ~Music Saloon! Hello Stackers!\n\nWelcome on into the ~Music Corner of the Saloon!\n\nA place where we Talk Music. Share Tracks. Zap Sats.\n\nSo stay a while and listen.\n\n🚨Don't forget to check out the pinned items in the territory homepage! You can always find the latest weeklies there!🚨\n\n🚨Subscribe to the territory to ensure you never miss a post! 🚨 \N 7978 \N 97257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8880990987967 0 \N \N f 601299772 \N 4 207771408 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447288 2025-03-21 18:46:49.146 2025-03-29 22:39:52.943 \N https://image.nostr.build/9598f5fd42611de13c43a4e8216c67396eb87a16fe614edc4412bba93fa09fb9.png https://example.com/ 629 447280 447264.447280.447288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5669528823313 0 \N \N f 189106733 \N 1 145420647 0 f f \N \N \N \N 447264 \N 0 0 \N \N f \N 2025-03-28 12:09:50.341 f \N \N \N 0 0 0 0 1 0 0 401758 2025-02-13 11:23:09.883 2025-03-29 22:39:52.943 \N Have to offer some resistance here. The fact that this is being pushed by the democrats leave me to assume that this would create a new bureaucratic body that would control the internet. You want the govt controlling your node? Why would you want the govt controlling the internet? https://example.com/ 2347 400967 400967.401758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.36771246282049 0 \N \N f 86588238 \N 1 175849719 0 f f \N \N \N \N 400967 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448912 2025-03-23 01:04:37.659 2025-03-29 22:39:52.943 \N it's very cool. i've been using nix for a few months now and love it. learning how to write nix files per environment like this was a bit of a pain. it's nice to see people are working on lowering that barrier https://example.com/ 14489 448802 448802.448912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.987013267143908 0 \N \N f 166208453 \N 2 215315782 0 f f \N \N \N \N 448802 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403151 2025-02-14 13:42:41.002 2025-03-29 22:39:52.943 \N I predicted this a while ago. Getting back to 2% means politically unpalatable choices, so just change the inflation target. https://example.com/ 11498 403021 402871.403021.403151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.51679855023107 0 \N \N f 128895204 \N 2 246011656 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443491 2025-03-19 11:40:30.262 2025-03-29 22:39:52.944 \N There are different filaments to use like PLA PLA+ and Nylon, each offering different trade offs (Flexibility/Durability/Cost). CNC mills can carve metal and wood, but are a bit more expensive. Eventually manufacturing and AI assisted designs of all types should become a lot cheaper and harder to keep from the public. https://example.com/ 10698 443486 443486.443491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5414078855302 0 \N \N f 28348554 \N 1 112926274 0 f f \N \N \N \N 443486 \N 0 0 \N \N f \N 2025-03-26 05:23:09.882 f \N \N \N 0 0 0 0 1 0 0 216356 2024-08-18 02:11:41.682 2025-03-29 22:39:48.91 Move Along, Nothing To See Here Commercial Real Estate loans gone bad has started the dominoes tumbling. Evergrande in China, New York Community Bancorp on the brink, and today, Japan's Aozora bank. I check CNBC's web site. Not a word. \nI guess it's not a major story \N 17148 \N 216356 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.7973688472156 0 \N \N f 174701039 \N 1 82926305 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 353322 2025-01-02 10:57:12.152 2025-03-29 22:39:48.91 2 Bitcoin bounty to fix CLN payments \N https://github.com/ElementsProject/lightning/issues/7180#issuecomment-2408146316 10056 \N 353322 \N \N \N \N \N \N \N \N art \N ACTIVE \N 3.99824285617882 0 \N \N f 581485408 \N 3 44838236 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433878 2025-03-11 13:30:25.192 2025-03-29 22:39:48.91 My first 6 months of BTC and how I've changed. 06/07/2024 was the first time I bought bitcoin. I bought it on a whim and had done literally zero research. I bought $200 paid a $4 fee and the price of bitcoin was $71528.47. \n\nIt didn't take long to watch my investment start shrinking. I had bought the peak. \n\nInstead of panic selling, I decided to look deeper into bitcoin. I read broken money, the bitcoin standard, bitcoin is Venice etc etc etc. \n\nThe more I learned, the more money I put in. I quit watching the price so closely and started to DCA. \n\nThe amout I DCA has increased dramatically and my time preference shifted significantly. \n\nAfter finding Stacker Network I started running my own node and now I'm learning about Lightning nodes. \n\nI think it's amazing the type of impact Bitcoin has had on my life. I would have never learned about the global financial system, or centralized banking, or the regulatory nightmare that the government is. \n\nI'm looking forward to seeing what else I learn and how much further down the rabbit hole I can go. \n\nHopefully some of you have had similar experiences that you can share too. \N 21279 \N 433878 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 21.7022450254626 0 \N \N f 566885348 \N 4 168584974 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 09:15:53.805 f \N \N \N 0 0 0 0 3 0 0 437392 2025-03-14 13:42:50.173 2025-03-29 22:39:52.944 \N Invest in unseen,\nrewards adinfinitum\nShitcoin? Or popery? https://example.com/ 20717 437356 437044.437337.437356.437392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.9381454751361 0 \N \N f 128262735 \N 1 89374829 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407957 2025-02-18 13:49:06.242 2025-03-29 22:39:52.944 \N > I took from other comment that you were against all these current scaling options, particularly fedimints, is that the case?\n\nNo, I think fedimints are incredibly cool, probably the biggest breakthrough in multisig technology in the last five years. I particularly like that the fedimint software was designed from the ground up to support lightning without the members of the fedimint needing to trust the lightning node operator with their money. That gives it similar properties to a federated lightning node and can probably serve a lot of the same use cases. I also think Mutiny deserves some kind of award for integrating it into their wallet. They are doing amazing things and I'm very proud of them.\n\nI just don't like hiding the risks. The fedimint software is just as custodial as the software Coinbase uses to manage their multisig vault. Telling people that a fedimint "counts" as non-custodial (or close enough) seems dangerous to me and is likely to get people rekt. If folks are fooled into thinking fedimints are inherently safer than "regular" custodians, I predict scammers will soon run fedimint software to steal people's funds under the guise of "you can deposit your money here, it's safe, it's a fedimint, stealing your money would be super duper hard!" Unfortunately it's all too easy, because it's custodial software.\n\nI know that when I go into rants like that it sounds like I disapprove of custodial software such as fedimints. But I don't disapprove of them. I think they are very cool and useful, I just want users to be clear about the risks and know that it is experimental custodial software, and, like all custodial software (and most non-custodial software too), if they put any money in it, they should be prepared to lose it. https://example.com/ 8985 407954 406399.407380.407469.407944.407954.407957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8233393921741 0 \N \N f 639272358 \N 5 231255944 0 f f \N \N \N \N 406399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 174107 2024-05-22 21:32:05.373 2025-03-29 22:39:52.944 \N Here's a counter-question as a response to that criticism: where do the people get the Bitcoin from, and how do they get so much of it that they can afford to live off the appreciation alone?\n\nFor most people their day-to-day expenses will exceed whatever value appreciation they can get from their stack, and so they will be forced to work in order to not run out of Bitcoin.\n\nAnother way to look is that if nobody is working because they think their Bitcoin appreciation will keep them fed, then the prices of everything else will go up due to high demand and lack of supply. Further, because everybody thinks their stack is enough to live off, the demand for Bitcoin will drop and the supply on the market will increase (because everyone is spending it). \n\nBoth these effects will work to lower the purchasing power of Bitcoin and hence encourage people to work again. https://example.com/ 17321 173779 173779.174107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8501073573483 0 \N \N f 247075411 \N 1 205601358 0 f f \N \N \N \N 173779 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455980 2025-03-27 12:47:48.488 2025-03-29 22:39:48.91 Books And Articles Newsletter, Issue 44 ![](https://m.stacker.news/67745)\n\n### News Of The Week \n\nWelcome to the Books And Articles newsletter. Thanks for all of the quality posts.\n \nThe usual suspects provided the territory’s top posts this week. @plebpoet created a seasonal meditation video which I really enjoyed. You can hear her talk about it on this week’s [SNL live](https://www.youtube.com/watch?v=e8JKdnVIRPk).\n\n@denlillaapan had three of the top posts this week, led by his latest installment of the Jordan Peterson Bookclub. It’s always worth checking out @denlillaapan posts.\n\n@cryotosensei gave us a deep look into a Japanese book store. I have always loved book stores, and they aren’t too many left where I’m from. I really appreciated the post and the many photos.\n\nHappy reading!\n \n\nAs always, please reply with suggestions and opinions on how to make this territory better. \n\nLogo design by @plebpoet\nLink to last week’s newsletter: \nhttps://stacker.news/items/799105/r/siggy47\n\n\n### Top Posts Of The Week \n\n\n- [🍂 Another seasonal meditation with plebpoet ~ take a walk with me 🍂](https://stacker.news/items/801929/r/siggy47) by @plebpoet\n\n- [Jordan Peterson Bookclub—We Who Wrestle With God: Morality and Social Order](https://stacker.news/items/804036/r/siggy47) by @denlillaapan\n\n- [25% of Americans Can Barely Read (_The Economist_)](https://stacker.news/items/806118/r/siggy47) by @denlillaapan\n\n- [Bitcoin’s Ascent, A Triumph for Truth and Economic Reality | (TDE, Joakim Book)](https://stacker.news/items/803146/r/siggy47) by @denlillaapan\n\n- [A Japanese bookstore](https://stacker.news/items/801025/r/siggy47) by @cryotosensei\n\n\n\n### Siggy’s Suggestions\n\n- [Is oversharing on social media becoming human's new normal reality?](https://stacker.news/items/799527/r/siggy47) by @Bit_Alb\n\nThis is another great post by @Bit_Alb that didn’t get the attention it deserved. It is a book review of “The Transparency Society.” I really hope we see more posts and reviews from @Bit_Alb. This one is worth your time.\n\n\n### Writing Contests\n\n- [Writing Contest #1](https://stacker.news/items/412579)\n\n- [Writing Contest #2](https://stacker.news/items/429644)\n\n\n### Stackers’ Blogs\n\n- [Fighting The Daily Grind](https://stacker.news/items/413483) by @cryotosensei\n\n- [Personal Blog, Got My First Job](https://stacker.news/items/426378) by @CyberCrypto\n\n\n\n### My Bitcoin Journey\n\nInspired by Writing Contest #1, this is where stacker’s bitcoin origin stories will be posted for easy reference.\n\n- [Grayruby’s Bitcoin story](https://stacker.news/items/417967) by @grayruby\n\n- [I Put ¼ Of A Bitcoin In A Landfill](https://stacker.news/items/428900) by @brandonsbytes\n\n- [From Selling Newspapers To Finding Bitcoin](https://stacker.news/items/510278/r/siggy47) by @Coinsreporter\n\n- [My bitcoin journey](https://stacker.news/items/559500/r/siggy47) by @Carreson\n\n- ["Who are you?" — How do I want to answer?](https://stacker.news/items/674910/r/siggy47) by @IamSINGLE\n\n- ["My journey with Bitcoin: the experience of an ordinary Cuban"](https://stacker.news/items/676287/r/siggy47) by @BTCLNAT\n\n- [@realBitcoinDog Bitcoin Story - No, social media had nothing to do with it xD](https://stacker.news/items/722720/r/siggy47) by @realBitcoinDog\n\n\n\n\n### Book Clubs\n\n- [Stoic Book Club:Meditations](https://stacker.news/items/423469) by @Se7enZ\n\n- [Jordan Peterson SN Bookclub -- We Who Wrestle With God](https://stacker.news/items/782630/r/siggy47) by @denlillaapan\n \n\n\n### Books\n\n- [The Universal Good Deal](https://stacker.news/items/409637) by @cleophas\n\n- [Who Brought The Steak Tartare?, Chapter 1](https://stacker.news/items/410853) by @cleophas\n\n- [The Final Product](https://stacker.news/items/512884/r/siggy47) by @cleophas\n\n- [The Penal Preserve, Chapter 1](https://stacker.news/items/599283/r/siggy47) by @cleophas\n\n- [Happy The Hippo](https://stacker.news/items/401625), an absolutely wonderful children’s book written by @cryotosensei for his son.\n\n- [The Rogue Scholar](https://stacker.news/items/481687) by @jbschirtzinger\n\n- [Submersible](https://stacker.news/items/446662) by @johnbnevin\n\n- [And Then She Disappears - Block 1](https://stacker.news/items/680735/r/siggy47) by @ginkgo\n\n### Book Reviews\n\n\n- [Is oversharing on social media becoming human's new normal reality?](https://stacker.news/items/799527/r/siggy47) by @Bit_Alb\n\n\n- [FICTION PERSPECTIVE: A Lodging of Wayfaring Men by Paul Rosenberg](https://stacker.news/items/790012/r/siggy47) by @21futures\n\n- [A relic](https://stacker.news/items/796729/r/siggy47) by @Bit_Alb\n\n- [A review of David Brin’s “Earth”](https://stacker.news/items/790792/r/siggy47) by @Rothbardian_fanatic\n\n- [book review - "Why We Sleep: Unlocking the Power of Sleep and Dreams](https://stacker.news/items/765880/r/siggy47) by @stack_harder\n\n- [Forgotten Genius: A Maverick of Electrical Science](https://stacker.news/items/743415/r/siggy47) by @cascdr\n\n- [Book Review, Nate Silver's On the Edge](https://stacker.news/items/735212/r/siggy47) by @denlillaapan\n\n- [Book Review: The Inverse of Clown World (Knut Svanholm, Mises Institute)](https://stacker.news/items/760879/r/siggy47) by @denlillaapan\n\n- [The Mandibles by Lionel Shirver](https://stacker.news/items/719755/r/siggy47) by @21futures\n\n- [Book Review - True Names by Vernor Vinge](https://stacker.news/items/774774/r/siggy47) by @21futures\n\n- [Book Review | Catcher in the Rye - Better the second go around as an adult](https://stacker.news/items/709553/r/siggy47) by @realBitcoinDog\n\n- [Book Review | The Diving Bell and the Butterfly](https://stacker.news/items/706975/r/siggy47) by @carlosfandango\n\n- [Book Review | Black Coffee Blues by Henry Rollins](https://stacker.news/items/722727/r/siggy47) by @carlosfandango\n\n- [Book review | ‘Russia: Revolution and Civil War 1917-1921’ by Anthony Beevor](https://stacker.news/items/735044/r/siggy47) by @carlosfandango\n\n- [The Underground Man by Dostoevsky](https://stacker.news/items/707544/r/siggy47) by @Nadia\n\n- [Emil Cioran: 'The Fall into Time ("Sturz in die Zeit" in German)](https://stacker.news/items/694642/r/siggy47) by @TomK\n\n- [Book Review: The Book of Elsewhere, by China Mieville and Keanu Reeves](https://stacker.news/items/697427/r/siggy47) by @jurraca\n\n- [Book Review: The Player of Games, by Iain M. Banks](https://stacker.news/items/746463/r/siggy47) by @jurraca\n\n- [A Journey Through Emiko Jean's The Return of Ellie Black](https://stacker.news/items/691236) by @Melisa\n\n- [what i read, and wrapping up in july:](https://stacker.news/items/630204/r/siggy47) by @speakingyourtruth\n\n- [Book Review: Nothing Like The Movies by Lynn Painter](https://stacker.news/items/670569/r/siggy47) by @speakingyourtruth\n\n- [The Mandibles: A Review](https://stacker.news/items/668210/r/siggy47) by @jimmysong\n\n- [Self-Reliance by Emerson](https://stacker.news/items/669132/r/siggy47) by @ek\n\n\n- [Book - The Victorian Internet by Tom Standage (1998)](https://stacker.news/items/673776/r/siggy47) by @Signal312\n\n- [Review: The Righteous Mind](https://stacker.news/items/665765/r/siggy47) by @Undisciplined\n\n- [Book Review: Sliced Americana](https://stacker.news/items/663627/r/siggy47) by @jbschirtzinger\n\n- [Saboteurs: How Secret, Deep State Occultists Are Manipulating American Society](https://stacker.news/items/675002/r/siggy47) by @jbschirtzinger\n\n- [The New Manners and Customs of Bible Times](https://stacker.news/items/691719) by @jbschirtzinger\n\n- [Book Review: The Nixon Conspiracy](https://stacker.news/items/755166/r/siggy47) by @jbschirtzinger\n\n- [Book Review: Q By Luther Blisset](https://stacker.news/items/728848/r/siggy47) by @jbschirtzinger\n\n- [Book Review: Nuclear Transmutation--The Reality of Cold Fusion](https://stacker.news/items/766174/r/siggy47) by @jbschirtzinger\n\n\n- [Book Review | “The Tools of Leadership”](https://stacker.news/items/749605/r/siggy47) by @cryotosensei\n\n- [Book Review | The Magic School Bus Expedition Down Under](https://stacker.news/items/744786/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Happiness Project” and “Happier at Home”](https://stacker.news/items/718985/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Self-Motivated Kid”](https://stacker.news/items/705694/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Perks of Being a Wallflower”](https://stacker.news/items/704856/r/siggy47) by @cryotosensei\n\n- [Book Review | “101 ways to bring out the best in your children & yourself”](https://stacker.news/items/667453/r/siggy47) by @cryotosensei\n\n- [Book Review | “Diary of a Wimpy Kid”](https://stacker.news/items/668335/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Daily Dad” by Ryan Holiday](https://stacker.news/items/684138/r/siggy47) by @cryotosensei\n\n- [Book Review | “The Art of Possibility”](https://stacker.news/items/682002) by @cryotosensei\n\n- [Book Review | “The 17 Indisputable Laws of Teamwork”](https://stacker.news/items/687944) by @cryotosensei\n\n- [Book Review | “Wonder Doodles”](https://stacker.news/items/685335) by @cryotosensei\n\n- [Book Review | “Sompo Guide Tokyo”](https://stacker.news/items/702025/r/siggy47) by @cryotosensei\n\n- [Book Review | “Peak”](https://stacker.news/items/698568/r/siggy47) by @cryotosensei\n\n- [Book Review: Trade-Off](https://stacker.news/items/779603/r/siggy47) by @cryotosensei\n\n- [Book Reviews Directory #2](https://stacker.news/items/665395/r/siggy47)\n\n- [Book Reviews Directory 11/23-3/24](https://stacker.news/items/489224)\n\n\n### Bitcoin Academic Articles & Reviews\n\n- [Bitcoin Pricing, Adoption, and Usage: Theory and Evidence | Article Review](https://stacker.news/items/727081/r/siggy47) by @SimpleStacker\n\n- [Minneapolis Fed Bitcoin Paper | Article Review](https://stacker.news/items/734528/r/siggy47) by @SimpleStacker\n\n- [Bitcoin: What Does Mainstream Economics Have to Say? | Article Review](https://stacker.news/items/745057/r/siggy47) by @SimpleStacker\n\n- [Competition and trust in the private provision of money | Article Review](https://stacker.news/items/764363/r/siggy47) by @SimpleStacker\n\n\n### Movie & Television Reviews\n\n- [Sound of Freedom | Movie Review](https://stacker.news/items/710780/r/siggy47) by @SimpleStacker\n\n- [Movie Review | “How to make millions before Grandma dies”](https://stacker.news/items/683086/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [Movie Review | “Culinary Class Wars”](https://stacker.news/items/694123/r/siggy47) by @cryotosensei\n\n- [El Encargado | Argentinian TV series | very good comedy](https://stacker.news/items/689468/r/siggy47) by @DarthCoin\n\n- [The IT crowd | hillarious super funny comedy TV series](https://stacker.news/items/694922/r/siggy47) by @DarthCoin\n\n- [Two TV series about the "Schrodinger's cat" theory](https://stacker.news/items/701874/r/siggy47) by @DarthCoin\n\n- [From | Que sera, sera... | new season 3 TV series](https://stacker.news/items/696122/r/siggy47) by @DarthCoin\n\n- [Bingeworthy: Slow Horses](https://stacker.news/items/734282/r/siggy47) by @StillStackinAfterAllTheseYears\n\n\n\n\n### Essays\n\n- [Prose piece | Running](https://stacker.news/items/744729/r/siggy47) by @carlosfandango\n\n- [Prose piece | The storm](https://stacker.news/items/753425/r/siggy47) by @carlosfandango\n\n- [Nihilism Wants Empire:Camus On Nietzsche](https://stacker.news/items/406816) by @jurraca\n\n- [Cory Doctorow: Writing in the Age of Distraction](https://stacker.news/items/503830) by @StillStackinAfterAllTheseYears\n\n### Poetry\n\n- [Reflections on the recent holiday](https://stacker.news/items/791634/r/siggy47) by @plebpoet\n\n- [internet feelings](https://stacker.news/items/774628/r/siggy47) by @ek\n\n- [Sorelle](https://stacker.news/items/747511/r/siggy47) by @Myshkin\n\n- [Autunno](https://stacker.news/items/781581/r/siggy47) by @Myshkin\n\n\n- [Poetry:unresolved between a thai lad and I](https://stacker.news/items/411278) by @cryotosensei\n\n- [plebpoet’s original poem + discussion](https://stacker.news/items/414472) by @plebpoet\n\n- [a new kind of poem (that you can see 👀 and hear 🦻)](https://stacker.news/items/676672/r/siggy47) by @plebpoet\n\n- [I am not man enough](https://stacker.news/items/571876/r/siggy47) by @Nuttall\n\n- [If A Day Comes...](https://stacker.news/items/493818) by @Tef\n\n- [Let's pretend we loved each other](https://stacker.news/items/666008/r/siggy47) by @Nadia\n\n- [That's MINE! Poetry.](https://stacker.news/items/661773/r/siggy47) by @Malach17\n\n- [Silly rhymes written by a guy (maybe) fallen in love](https://stacker.news/items/666985/r/siggy47) by @0268a5c238\n\n\n\n### Short Stories\n\n- [Short story | The motel](https://stacker.news/items/762852/r/siggy47) by @carlosfandango\n\n- [The poet and the reader || short story](https://stacker.news/items/723702/r/siggy47) by\n@02879c7d869\n\n- ['little fictions' presents: Cowboys Don't Belong](https://stacker.news/items/713535/r/siggy47) by @plebpoet\n\n- [Short Story: “Quarter” by Eduardo Prospero](https://stacker.news/items/713942/r/siggy47) by @eduardopro\n\n- [Neo’s Adventure In The Digital Realm: Discovering The Treasure Of Bitcoin](https://stacker.news/items/467448) by @VEINTIUNO\n\n\n### Comics\n\n- [Apriori Flower 01:16 - Are We Better? - Dhamma Comic](https://stacker.news/items/571900/r/siggy47) by @Nuttall\n\n\n\n\n \N 1534 \N 455980 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.5585338582077 0 \N \N f 141426343 \N 1 67489236 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435691 2025-03-12 22:01:23.166 2025-03-29 22:39:52.933 \N ![](https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTqAKPMsFCLaCY9nCOfiqXD8O-8N7GX9_J4tJDkeWiGfrHP4fCVm-BnDP6_&s=10) https://example.com/ 21262 435679 435679.435691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.29434244497727 0 \N \N f 226795327 \N 1 173305558 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 2025-03-19 15:22:20.591 f \N \N \N 0 0 0 0 1 0 0 436430 2025-03-13 14:55:44.156 2025-03-29 22:39:52.938 \N I think we all start with custodial buying bitcoin IOUs so I don't think that's a big issue. It is how you get them from step 1 to traveling down the rabbit hole. \n\nI think tipping is great to get people experiencing owning bitcoin and even if only 5% of people who get tipped sats ever take one step into the rabbit hole it's still a net benefit. \n\nI think WoS is good, it's easy to use. \n\nI would like to see someone put together a tutorial for folks "So you got some bitcoin-what now" that takes them all the way from a to z. Maybe it is merely a curation of all the current available resources since there is so much amazing stuff out there. \n\nMaybe we should SN hive mind this resource into existence. https://example.com/ 19375 433889 433889.436430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73272557099224 0 \N \N f 231888367 \N 1 92485131 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 2025-03-20 08:26:13.521 f \N \N \N 0 0 0 0 1 0 0 443334 2025-03-19 09:13:53.922 2025-03-29 22:39:52.938 \N I cannot humiliate my dogs by putting clothes on them. I would like to think they have some pride and would not suffer this embarrassment, but perhaps I'm being selfish. https://example.com/ 16289 428021 428021.443334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1109962868144 0 \N \N f 354103745 \N 2 93077997 0 f f \N \N \N \N 428021 \N 0 0 \N \N f \N 2025-03-26 04:41:21.948 f \N \N \N 0 0 0 0 1 0 0 448981 2025-03-23 03:43:54.847 2025-03-29 22:39:52.944 \N Day 98 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 17103 448979 448962.448977.448979.448981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2905776031153 0 \N \N f 82590775 \N 1 141537593 0 f f \N \N \N \N 448962 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435770 2025-03-13 00:26:28.305 2025-03-29 22:39:52.945 \N [Gradually then Suddenly](https://unchained.com/blog/category/gradually-then-suddenly/) is one way a to look at it... and a lot of people think it's going to be similar to Weimar. Interest rates and the monetary supply won't just go in the same direction until it's unsustainable... They'll go up and down and up and down until we crash and burn. Each time we print money, we'll over correct with higher interest rates, then we'll over correct with more money printing, then even higher interest rates, then even more printing... At first it'll be boiling the frog, then it'll be an exponential nightmare. At least, that's one theory. Definitely seems like we're in the frog boiling stage rn. https://example.com/ 20220 435488 435488.435770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.15308280816756 0 \N \N f 57859356 \N 1 19079906 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 03:50:38.648 f \N \N \N 0 0 0 0 1 0 0 435214 2025-03-12 14:33:00.592 2025-03-29 22:39:52.945 \N You know that now you can create personalized invite codes?\n\n![](https://m.stacker.news/67343)\n\nYou better be careful who you invite. https://example.com/ 9985 435162 435046.435135.435162.435214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6742065805756 0 \N \N f 1906387813 \N 14 45186105 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 09:44:23.465 f \N \N \N 0 0 0 0 2 0 0 426635 2025-03-05 18:26:26.874 2025-03-29 22:39:48.91 Tech Tuesday - Share Your Favorite Tech Products Let's hear all about your favorite tech products, services, or projects!\n\nFeel free to share any new tech you've heard about, bought for yourself, or technology that you just think other stackers should know about.\n\nSend your best 👇 \N 11760 \N 426635 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 10.4548131203427 0 \N \N f 497073048 \N 4 80266129 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414233 2025-02-23 18:49:25.21 2025-03-29 22:39:48.91 Braiins about to drop PPLNS for FPPS Saw it from a twit from their PR manager currently CEO of Luxor.\n\nhttps://twitter.com/fedelang/status/1727814088951218660?t=ChXpqqOUb1BLpJQ4L1dDnw&s=19\n\nI am deeply disappointed on braiins/slush. My internal source at slush confirmed that what Luxor CEO stated is true and also added they where testing right now with the intent to swap next month leaning no more PPLNS alternative.\n\nHere is the thing. FPPS is not mining, is barely selling your hashrate at a discretional average to pool overlords. The reason of all this BS is due to ordinals being vomited on the Blockchain. Revenues are growing and sharing.. well.. why should they share.\n\nI am also disgusted that braiins let go too many customers, head count and IP to their main competitor, a shitcoin mining pool. The scene is getting more and more dystopian where people like Chun from F2Pool can "return" in God mode Bitcoin that belongs to the miners without anyone batting an eye. Antpool thinking about it, and boy there is OFAC. Braiins not using all the communication and marketing tools to expose all what's happening where is trending is annoying. \n\nOf course FPPS may now be needed after pool hashrate tanked, PPLNS on braiins will soon require almost no downtime due to the cost of missing out blocks. \n\nI really hope they do not do this and start kicking back, selling firmware or boards shouldn't make you all silent.\n\n \N 638 \N 414233 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4707834638614 0 \N \N f 130627595 \N 1 174820016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435776 2025-03-13 00:50:01.116 2025-03-29 22:39:52.938 \N Nothing to worry about here, Darth is just asking for a friend. \n\nI am sure he doesn't have a planet destroying space station with a laser available. https://example.com/ 17991 435488 435488.435776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5201019098065 0 \N \N f 169500767 \N 2 56830072 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 2025-03-20 00:15:10.003 f \N \N \N 0 0 0 0 1 0 0 447190 2025-03-21 17:13:49.286 2025-03-29 22:39:52.938 \N Every week I use RoboSats to buy my fair share of sats, no kyc no bullshit. Governments will have hard time stopping this https://example.com/ 18717 446819 446819.447190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9599749869371 0 \N \N f 981080318 \N 5 169512861 0 f f \N \N \N \N 446819 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434516 2025-03-12 01:40:08.451 2025-03-29 22:39:52.939 \N No doubt it would be better for the image of Bitcoin and for the perceived fairness of the system if this did not happen. But, to play devils advocate, Bitcoin is so decentralized already and would be much more so by that point that it would be pretty hard for Satoshi to exert any kind of undue influence over the network itself just because of his wealth.\n\nAlso, it wouldn’t be that far removed from current near trillionaires under the fiat system, but it all depends how you measure the available supply of dollars etc https://example.com/ 2326 434310 434278.434298.434310.434516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8882207180499 0 \N \N f 124192178 \N 2 22650611 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 00:39:55.371 f \N \N \N 0 0 0 0 1 0 0 423594 2025-03-03 13:27:18.411 2025-03-29 22:39:52.939 \N I started years ago (2014-2016) convincing nocoiners and [in special small merchants](https://darthcoin.substack.com/p/a-bitcoin-adoption-story) to start using BTC.\n\nThen I start creating meetups in my local area and talk with many people about (normal people, small merchants).\n\nThen [I wrote several guides](https://darthcoin.substack.com/s/english/archive?sort=new) and 1and1 sessions with random people that need help with bitcoin solutions and apps.\n\nNow I have to fight shitcoiners, are a disease to bitcoin. https://example.com/ 19906 423574 423574.423594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1302500255166 0 \N \N f 257580992 \N 3 138223766 0 f f \N \N \N \N 423574 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423905 2025-03-03 17:39:34.295 2025-03-29 22:39:52.939 \N In all probability yours is the right explanation. However it also occurs to me that I wonder if the competition against BTC ETFs is putting pressure on the GLD issuers to play less rehypothecation games. I notice that both Silver and Gold has been on a tear since Jan.\n\nPerhaps they realize that GLD needs to compete. https://example.com/ 3478 423750 423750.423905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3396088724776 0 \N \N f 83613998 \N 2 32365610 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407654 2025-02-18 09:21:42.934 2025-03-29 22:39:52.939 \N > Would you be ready to spend 5 minutes of your time to anoymously recommend stuff?\n\nFor sats, sure\n\nI can't recommend the [Darknet Diaries podcast](https://fountain.fm/show/G9WUlNV7UGkn67Edis2T) enough, for example :) https://example.com/ 17226 407619 407619.407654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.79438778886702 0 \N \N f 224457518 \N 1 134333286 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422620 2025-03-02 15:27:28.815 2025-03-29 22:39:52.939 \N You should spend less time worrying about what other people do with their bitcoin. https://example.com/ 5779 422611 422203.422207.422399.422491.422579.422583.422586.422604.422611.422620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8218086161797 0 \N \N f 258297845 \N 3 26114445 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441087 2025-03-17 18:45:46.977 2025-03-29 22:39:48.91 There are three certainties in life: 1. Death\n2. Taxes (not even sure I agree with this anymore lol)\n3. ...\n\n...well. What's the third???\n\nDon't say Bitcoin. \N 1488 \N 441087 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 10.3745596261635 0 \N \N f 832182073 \N 6 124157593 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 458377 2025-03-29 08:33:16.334 2025-03-29 22:39:48.91 Book Review | “The Culture Code” appeals to the adolescent in me When I was living in Japan, the dish I missed the most was fish and chips. I couldn’t fathom why something so ubiquitous in Singapore was impossible to find in Nippon. I missed it so much that the first meal I devoured when I visited Busan, South Korea was - you guessed it! - fish and chips.\n\nThe Culture Code is a book primarily about American culture, which is fascinating because America has immense soft power. However, because of my proximity to Japanese culture, the most memorable insights I took away are in relation to the comparisons between American and Japanese culture.\n\nClotaire Rapaille has a brilliant way of encapsulating a complex culture within 1-2 words. So, the Code for America is IT WORKS, whereas the Code for Japan is PERFECTION. This may explain why Americans seem to be great shoppers; they never expect their products to last long in the first place.\n\nBack to the fish and chips example, sushi is the way in which Japanese sushi chefs pursue perfection in their wielding of exquisitely-made knives. To expect raw fish to be fried - what a travesty! \n\nAnother prominent idea was regarding his observation about America having an adolescent culture. I resonated quite strongly with the following words and sentences found throughout the book: health equates movement, Americans are always on the go, We all want to ‘go out and play’”. It seems to be that I will make a very good American, given my affinity for action! I feel like an adolescent, despite being in my 40s. This is also why I kinda downloaded a meditation app “Headspace” during this holidays. I love my frenetic energy and all, but hey, time to cultivate a more rooted side of me.\n\nOther cultures are explored in this book, notably French, Canadian and Italian. A must-read for all world culture passionates.\n\n![](https://m.stacker.news/34719) \N 3717 \N 458377 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.4965824780242 0 \N \N f 174090063 \N 1 77039617 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458092 2025-03-28 23:15:35.897 2025-03-29 22:39:48.91 Free Advertising Or Desperation ? **The European Central Bank Blog**\n### [ETF approval for bitcoin — The naked emperor’s new clothes](https://www.ecb.europa.eu/press/blog/date/2024/html/ecb.blog20240222~0929f86e23.en.html)\n\n![b4556n56.png](https://m.stacker.news/17077)\n\n> Bitcoin has failed on the promise to be a global decentralised digital currency and is still hardly used for legitimate transfers. The latest approval of an ETF doesn’t change the fact that Bitcoin is not suitable as means of payment or as an investment.\n>\n> On 10 January, the US Securities and Exchange Commission (SEC) approved spot exchange-traded funds (ETFs) for Bitcoin. For disciples, the formal approval confirms that Bitcoin investments are safe and the preceding rally is proof of an unstoppable triumph. We disagree with both claims and reiterate that the fair value of Bitcoin is still zero. For society, a renewed boom-bust cycle of Bitcoin is a dire perspective. And the collateral damage will be massive, including the environmental damage and the ultimate redistribution of wealth at the expense of the less sophisticated.\n>\n> [...]\n>\n> https://www.ecb.europa.eu/press/blog/date/2024/html/blog20240222/ecb.blog20240222.en_img0.png?fd2000ffcf728d1b93365c998e43e89b\n\n22 February 2024 — By Ulrich Bindseil and Jürgen Schaaf \N 16717 \N 458092 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 17.629259827005 0 \N \N f 225908429 \N 1 47995777 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 21672 2023-05-10 10:36:56.585 2025-03-29 22:39:48.91 Zap to Zero Day 19 | Symbiosis # Zap to Zero Day 19 | Symbiosis\n\n![Clownfish-sea-anemones-Australia-Great-Barrier-Reef (1).webp](https://m.stacker.news/12630)\n\n> _Mutualism is often conflated with two other types of ecological phenomena: cooperation and symbiosis. [...] Symbiosis involves two species living in close physical contact over a long period of their existence and may be mutualistic, parasitic, or commensal, so symbiotic relationships are not always mutualistic, and mutualistic interactions are not always symbiotic. Despite a different definition between mutualistic interactions and symbiosis, mutualistic and symbiosis have been largely used interchangeably in the past, and confusion on their use has persisted._\n\n— Wikipedia, [_Mutualism (biology)_](https://en.wikipedia.org/wiki/Mutualism_(biology))\n\n---\n\n## [Satistics](https://stacker.news/satistics?inc=stacked,spent)\n\n| Date | Spent | Stacked (Rewards) | Posts | Comments | Rewarded |\n| --- | --- | --- | --- | --- | --- |\n| [2023-12-28](https://stacker.news/items/370188) | 13k | 8808 (n/a) | 2 | 35 | n/a |\n| [2023-12-29](https://stacker.news/items/371370) | 16.1k | 15.6k (5222) | 3 | 52 | ⚡ |\n| [2023-12-30](https://stacker.news/items/372534) | 10.8k | 9752 (7026) | 1 | 41 | ✍️ |\n| [2023-12-31](https://stacker.news/items/373620) | 20.5k | 17.9k (4379) | 5 | 61 | ⚡ |\n| **[2024-01-01](https://stacker.news/items/374881)** | 12.5k | 10.7k (7684) | 3 | 47 | ✍️ |\n| [2024-01-02](https://stacker.news/items/376287) | 16k | 19.5k (9353) | 6 | 36 | ✍️ |\n| [2024-01-03](https://stacker.news/items/377500) | 15.9k | 15.6k (6729) | 2 | 46 | ⚡ |\n| [2024-01-04](https://stacker.news/items/378870) |\t11.4k | 11.4k (~3954~ ~4093~ 4131) | 3 | 38 | ✍️ |\n| [2024-01-05](https://stacker.news/items/379663) |\t11.3k | 11.4k (~3954~ 4092) | 1 | 41 | ? |\n| [2024-01-06](https://stacker.news/items/379663) | 6691 | 6282 (~3665~ 3954) | 0 | 38 | ✍️ |\n| [2024-01-07](https://stacker.news/items/380810) | 8053 | 8503 (~1219~ 3665) | 3 | 20 | ✍️ |\n| **[2024-01-08](https://stacker.news/items/382187)** | 8873 | 9164 (1219) | 2 | 12 | ⚡ |\n| [2024-01-09](https://stacker.news/items/383365) | 5828 | 6808 (4649) | ~2~ 6 | ~34~ 35 | ✍️ |\n| [2024-01-10](https://stacker.news/items/384428) | 14.1k | 14.4k (4857) | 3 | 22 | ⚡ |\n| [2024-01-11](https://stacker.news/items/385785) | 11.8k | 10.4k (4109) | 3 | 22 | ✍️ |\n| [2024-01-12](https://stacker.news/items/386849) | 8743 | 8016 (4778) | 3 | 41 | ✍️ |\n| [2024-01-13](https://stacker.news/items/387537) | 9393 | 9339 (3116) | 2 | 17 | ⚡ | \n| [2024-01-14](https://stacker.news/items/388997) | 14.2k | 6697 (3533) | 4 | 41 | ✍️ |\n| **[2024-01-15]()** | 10.2k | 11.3k (3395) | 1 | 15 | ⚡ |\n| 2024-01-16 | TBD | TBD (2500) | TBD | TBD | ⚡ | \n\n![2024-01-16-153458_612x334_scrot.png](https://m.stacker.news/12609)\n\n![2024-01-16-153355_908x241_scrot.png](https://m.stacker.news/12610)\n\n![2024-01-16-154004_453x209_scrot.png](https://m.stacker.news/12611)\n\n![Figure_2.png](https://m.stacker.news/12614)\n\n![Figure_3.png](https://m.stacker.news/12615)\n\nOne day, I will analyze my sleep using these charts. And then I will make a challenge out of it to have a very [precise](https://stacker.news/items/373218) [_and_](https://stacker.news/items/373218) [accurate](https://stacker.news/items/373218) amount of sleep. _Precise_ means here that I will be consistent about how long I sleep. And _accurate_ means that I will have the amount of sleep that I planned for.\n\nI also realized that there is probably indeed an optimal amount of sleep for every person (which also depends on their age). I noticed that I get a lot more motivated, happy, creative and funny [0] when I am a little sleep deprived. It feels like my brain is too tired to think about all these things I usually think about so I actually start to think about things I usually not think about or at least from a different angle. Or it's just less [overthinking](https://www.verywellmind.com/how-to-know-when-youre-overthinking-5077069).\n\nBut with too much sleep, I get very demotivated. Might be related to less exposure to sun (since this means I wake up very late and then go to bed when the sun rises) but I think it's not only that. Everything feels sluggish. Like a slug.\n\n![istockphoto-1227200429-612x612.jpg](https://m.stacker.news/12619)\n\n_me trying to get out of bed after I already had 12 hours of sleep_\n\n---\n\n## Recent Superzaps\n\n### 1. [Everyone I've met would be well-served thinking more about what to focus on](https://stacker.news/items/376337)\n\nI'm starting to feel bad to mention @elvismercury so much here. But well, [tHiS iS mY pOsT](https://www.youtube.com/watch?v=Qrz_XkPELRQ&t=1230s) so I can mention whoever I want, right?\n\n@k00b sent me the link to this post yesterday when I mentioned I don't know which post he is talking about. When he sent me the link, I remembered. When I saw @elvismercury's post for the first time, I started reading it but I fell asleep since I usually only partly ["bookend"](https://stacker.news/items/387960) my day, as @Coyote_Cosmico nicely put it [1]. We were talking about focus since I mentioned I feel very motivated but I don't know where to best put all this motivation into. I feel all over the place with my plans what I should do and my attention span and focus suffers from that.\n\nFor example, I had plans to start a BitDevs in my city and it seems like I am actually going to do it. We don't have a location yet (but a Matrix server). I struggled for weeks to come up with a solution to this location problem. I didn't want to pay a coworking space a few hundred bucks just for a room for one hour for just 3-4 people (myself included) — that's too much commitment too early. But when I went for a longer very late walk a few days ago, I realized that I was still making things too complicated. We don't need a location. What did people do when they couldn't meet somewhere in the past four years? [2] They met online!\n\nFor the first meeting at the end of January, we planned that I would give a short presentation about bitcoin mining and then we would relive the early days of bitcoin by mining bitcoin using our CPUs. Since it will all be online now, I will setup a WireGuard VPN (using [my own blog posts](https://ekzyis.com/blog/) as reference) to connect our nodes.\n\n[As mentioned a few days ago](https://stacker.news/items/385785), something similar to SNL but for developers (or anyone interested in the development of SN) also struck me as a potentially great idea. But that would (again) take up a lot of time and I only have so much time before I get overwhelmed and then just want to hide myself again and do absolutely nothing. Or as @orthwyrm would write it:\n\n> __@_'-'\n\\_@'-'\n@\n\n— @orthwyrm, [#367964](https://stacker.news/items/367964)\n\nThere is a lot more I want to write about this phenomenon of "too much motivation", its relationship with sleep and my own experience with it but I notice I am already rambling too much (again) and I actually wanted to focus how much I liked to read the blog post. So I'll continue with my highlights:\n\n> When I was younger, I was never this lucky. It is partly because I was less skilled. **But it is also partly because I would interrupt the nonconscious processing back then. Unintentionally, I would tell my brain to focus on something else—a conflict in a TV series I was watching, for instance. I would watch an episode before bed, and the cliffhanger would open a loop in my head. That loop would be churning in my head as I slept; I woke to a blank page.** I don’t have time for that anymore. I make sure to always have an open loop concerning my writing. And I close every other loop—by wrapping it up as fast as I can, or by writing it down on a list, or, preferably, by not opening the loop at all.\n\nI noticed the same. When I started this series, the words streamed out of my fingers. They still do but significantly less. I noticed that it's very related to my experience during the day. When I do a lot of different things (and have less sleep to have more time awake), I experience a lot more things that I want to write about (duh). I think this is related to this "open loop" that Henrik Karlsson is ~talking~ writing about. My brain had to process so much during my sleep that I woke up with a lot of ideas what I could write about and _how_ — since I basically already was thinking about tomorrow's post the whole day prior and went to sleep with these thoughts; too tired to do anything else.\n\nThis also has a very nice feeling of symbiosis. To have something to write, I need to experience things I can write about. And to experience things in a more profound way, I need to write about them. [_Writing is Thinking_](https://www.insidehighered.com/blogs/higher-ed-gamma/writing-thinking).\n\nAnd to get even more out of the experience (of writing), reading the comments from other people is highly motivating. It starts to feel like a [flywheel that is turning itself](https://www.techtello.com/motivation-flywheel/). I can very relate to this though:\n\n> I didn’t tell anyone that I was writing a blog. Having my friends read it would have made it harder for me to experiment and do things that risked embarrassment or failure.\n\nI used to be disappointed that none of the people I used to call my friends ([that's a different story](https://stacker.news/items/349363)) were interested in SN. But now I am happy that my family isn't that interested in SN, too. If I knew they would read every post of me here, I would definitely feel different about writing all of this here. Even though I know I shouldn't. However, at some point, they are going to find out in some way about it though. And in some way, I am looking forward to that.\n\n---\n\n### 2. [My recent BTC story: What happened with me yesterday (real story)](https://stacker.news/items/387859)\n\n@kurszusz told us a _real_ story (mentioning it's real makes it _really_ real, I guess) the day before yesterday. \n\nI liked reading it since I also find it very interesting what other people find interesting about bitcoin like @elvismercury:\n\n> It's interesting to know what other people find interesting about btc -- it's usually a very different set of things than what would occur to me, so it's a good opportunity to learn.\nI look forward to the update.\n\n— @elvismercury, [#387896](https://stacker.news/items/387896)\n\n> The most interesting thing for him was the finite supply of Bitcoin...He told me that 21 millions is not much, and it exist around 60 millions people who own more than 1 million $, and if this "ponzi asset" will be mediatized the price will go extremely higher, because of rich man and institutional investments...\nThe second aspect he liked it, was that the "blockchain never forget", and every transaction is coded and encrypted, and anyone can see / verify it, because it is open source...\n\n— @kurszusz, [#387859]( https://stacker.news/items/387859)\n\nSounds like that person's favorite Satoshi quote will be this:\n\n> It might make sense just to get some in case it catches on. If enough people think the same way, that becomes a self fulfilling prophecy.\n\nI remember when I went to visit my parents and I had the Bitcoin Magazine that I got for free at [btc++ in Berlin](https://btcpp.dev/conf/berlin23) with me. My mom saw it and flipped through the pages; much to my anxiety but also curiosity what she is going to say about it.\n\nShe:\n\n> What is this?\n\nMe:\n\n> A magazine about bitcoin. It's a digital currency.\n\nShe:\n\n> I don't like it. Don't do such things.\n\nMe:\n\n> I work in this space since early this year.\n\nThat's when we both started to laugh and I explained to her in more detail what this bitcoin thing was. She initially didn't like that it was about money since she associates money with problems (understandably). \n\nBut when I started to mention that bitcoin was created right after the 2007-2008 financial crisis and that the anonymous creator left a message that clearly hints that it's a system designed to prevent similar crises, she got very interested. She lived through this time. She is also an immigrant from a country with an authoritative government that oppresses minority groups and with constant tensions between religious groups. In the past, I even heard plans of [_National Divorce aka Secession_](https://stacker.news/items/374824).\n\nWhen she asked who is in control, I told her that no one is. Everyone is equal. There will never be more than 21M bitcoins. That's when I saw a spark in her eyes. She immediately got the value proposition of bitcoin in that moment.\n\nWe talked more about real estate and gold afterwards though and even my father joined in later.\n\nLooking forward to the update from @kurszusz. It's been two days already.\n\n---\n\n## Challenge of the Day\n\n["Bookend" your day](https://stacker.news/items/387960).\n\n---\n\n## Song of the Day\n\nhttps://www.youtube.com/watch?v=1pSjT0u5VJk\n\n> You look so much different out of the rear view\nFrom this angle and the back of your head\nIt looks a lot like somebody else\nAnd I guess that I could go it alone, well if I had to\nBut I know it’s a long way down for nothing (Yeah)\n>\n> The sight of your eyes got inside of my head\nI wanted your heart and got poison instead\nI spin around and see nothing but you\nI guess it’s been awhile since I had nothing to do\n\n---\n\nSudden endings contain cliff hangers. But is that necessarily a bad thing?\n\n---\n\n[0] _At least I think I am funny._\n\n[1] _That term immediately stuck with me and I will probably remember @Coyote_Cosmico forever as the "bookend stacker" now._\n\n[2] _Wow, it's really been four years now since the pandemic started. Is it finally over now? Feels like yesterday when I was sitting on a couch with my climbing friend (that had to friend zone me to save our friendship). We talked about our future. We both wanted to switch universities; partly because we then wouldn't have to see each other every day anymore._\n\n \N 21521 \N 21672 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.1919252773653 0 \N \N f 753692850 \N 4 133414938 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458053 2025-03-28 22:23:03.626 2025-03-29 22:39:52.94 \N The wonder that is Stacker News. https://example.com/ 10013 458025 458015.458025.458053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9809050207869 0 \N \N f 28587633 \N 1 7039425 0 f f \N \N \N \N 458015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435572 2025-03-12 19:42:19.177 2025-03-29 22:39:52.94 \N Very interesting thanks for sharing https://example.com/ 11073 435568 435217.435275.435277.435295.435425.435556.435559.435568.435572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.92555147957638 0 \N \N f 12208307 \N 1 89631003 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 13:11:22.779 f \N \N \N 0 0 0 0 1 0 0 422369 2025-03-02 12:17:46.744 2025-03-29 22:39:52.94 \N I personally use Nuxt 3 (Vue + TypeScript) + Tailwind/Uno CSS for styling. Prisma/Drizzle as an ORM with PlanetScale (MySQL) or SQLite.\n\nOther popular full stack frameworks are Next (React), Remix (React), SvelteKit (Svelte), Solid Start (Solid.js), Qwik City (qwik), Fresh (Preact + Deno). With them you have server and client code within the same codebase. \n\nTypeScript is a must, every serious framework offers first class support. \n\nFor styling, atomic css via Tailwind CSS is extremely popular. There are headless component libraries best used with Tailwind, such as Radix or Headless UI (by the Tailwind team), or libraries built with it, such as Daisy UI or Shadcn (uses Radix + Tailwind under the hood). With Nuxt I usually build everything out from scratch using Uno CSS (basically better Tailwind), or Nuxt UI (with Tailwind).\n\nThere are also bunch of high quality React UI component libraries such as Mantine, Chakra, Next UI, MUI, etc.\n\nFor backend, every major meta-framework above allows you to write server code and build api routes, usually using Node runtime with a http framework such as Express or Hono. Fastify and Koa are also popular for building APIs. Nuxt uses its own Nitro web server framework (using H3 http framework) which all can be used separately as well. \n\nAnd then there is Nest.js, awesome and robust backend framework which can be used with any http framework’s mentioned above. \n\nThen there are alternative server runtimes like Bun (much hype around it) and Deno (built by the creator of Node), with its own http frameworks such as Elysia (Bun) or Oak (Deno).\n\nI could go on forever https://example.com/ 1737 422365 421778.422365.422369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8028351636184 0 \N \N f 260254382 \N 2 6893443 0 f f \N \N \N \N 421778 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414638 2025-02-24 06:12:53 2025-03-29 22:39:52.94 \N Hi, I’ve been an Unchained customer for years with a multisig. I recently condensed some UTXO’s and it went really smooth. I’d like to ask some questions around the upcoming yearly fee you are going to charge. I get it’s hard to provide services for free, but the $250 feels like a lot especially for minimal engagement with your team and products, then inheritance planning is an additional fee. Would you consider more piece mail fees based on needs? https://example.com/ 20434 414328 413675.413884.414328.414638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5574398868552 0 \N \N f 692818412 \N 3 221304087 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427718 2025-03-06 15:22:50.606 2025-03-29 22:39:48.91 Multi-path payments in Lightning - question Hi all!\n\nLately I've been working on a small python project to try approaching the pathfinding problem in lightning as a Min-cost network flow problem.\n\nI know Renè Pickhardt already used this approach in order to prove the superiority of the Zero base fee approach, in fact I read his papers and got the gist of it.\n\nNow I'm trying to model the problem mathematically - using the pyomo package in python - but I came up with a question that I couldn't find an answer for:\n\n**in a multi-path payment (MPP), can two HTLCs go though the same channel?**\n\nMore specifically, I'm interested in understanding if the following situation can happen or not:\n\n```\nNodes = {S, A, B, C, E, F, G, I, D} # S source, D destination\n```\n\nWith S being the source node (aka the payer), D being the destination node (aka the payee).\nThe scope of the question does not include considerations about base or rate fees.\nNode S computes the optimal path that minimises the fees for an amount and finds out that the optimal choice is to execute a MPP that follows this path(s):\n\n```\n B E \nA -> -> -> G -> D\n C F\n\nh0 h1 h2 h3 h4\n```\n\nwhere the first two hops (h1 and h2) see two parallel payments going on, then at the hop h3 the MPP converges to the node G and then procedes with the last hop to destination.\n\nAs far as I know, in classical MPP the preimage is the same for every parallel path (correct me if I'm wrong), thus I'm wondering if that thing is possible or not. Moreover, if there was an another hop such that:\n\n\n```\n B E \nA -> I -> -> -> G -> D\n C F\n\nh0 h1 h2 h3 h4 h5\n```\n\nwould that be possible too? That meaning two HTLCs flowing in the same channel for the first hop, then splitting and the riconverging.\n\nHope the question is clear enough, otherwise I'm open to clarifications.\n\nThanks! \N 2508 \N 427718 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.27358045936989 0 \N \N f 504911509 \N 4 13170556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454701 2025-03-26 15:00:37.253 2025-03-29 22:39:48.911 How do you organize your working day? Hey all, I'm trying to better organize my working days. I have several things on my plate and I think I'm context switching too much so many times I don't wrap the day feeling very productive. I recently came across Deep Work by Cal Newport and want to try that extremely focused approach. The best thing I do is use an outliner (second brain) which is a great help.\n\n - How do you plan your workday?\n - Do you limit SN/social media in some way or use browsing blockers?\n - Do you limit the number of concurrent projects?\n - How do your breaks look like?\n - If you cook at home are there tricks you use to optimize the time it takes?\n - Where does family time, walking, chilling, working out fit in your day? \N 13162 \N 454701 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 15.7297897809324 0 \N \N f 1274093931 \N 12 6823020 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 5 0 0 435973 2025-03-13 07:26:04.265 2025-03-29 22:39:52.941 \N I am working on a data analysis project related to flyball. Well, if you have never heard about flyball before, it is a relay race for dogs. The dogs jump the hurdles, trigger a box that launches a tennis ball, catch the ball, and then race back to their handlers. It looks pretty cool and it is very fast. That whole process: run, catch the ball, run back is done by the fastest dogs under 4 seconds.\n\nHere is an obvious result: Younger dogs run faster \n\n![output.png](https://m.stacker.news/26068) https://example.com/ 15045 435944 435944.435973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9668344558965 0 \N \N f 224141244 \N 1 50624530 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 04:02:22.525 f \N \N \N 0 0 0 0 1 0 0 442854 2025-03-18 21:08:58.113 2025-03-29 22:39:52.941 \N I just use bitcoin core on an old laptop. Easy to use and link with sparrow wallet for broadcasting and verifying transactions. Also, if you have a extra computer, its free. https://example.com/ 7966 442751 442751.442854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.744942128646429 0 \N \N f 247576783 \N 3 62876256 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 436619 2025-03-13 18:09:00.361 2025-03-29 22:39:52.941 \N Eventually they meet at 1 https://example.com/ 2789 436556 436556.436619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2875315895528 0 \N \N f 207219898 \N 1 97311350 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N 2025-03-20 12:41:01.275 f \N \N \N 0 0 0 0 1 0 0 442325 2025-03-18 14:12:58.332 2025-03-29 22:39:48.91 MONEY CLASS OF THE DAY: My Journey Into Money, Argentina Anno ~2012 Happy Sunday, everyone!\nI owe you guys another MONEY CLASS, since I short-changed you earlier this week, but since it's Sunday I thought to be more personal than usual—and instead describe my journey into monetary economics. \n\n---\n\n>“Monetary theory belongs to monetary history, in a way that economic theory does not always belong to economic history.” \n(Sir John Hicks, Nobel 1972, fourth-ever Nobel Prize in economics) [^1]\n\nWhat’s so beautiful—and thankful—about studying money is that _everybody_ has a relationship to it. \n\n**Everybody understands money at some practical level,** even if they don’t have the faintest idea of how or why it works. We all live and operate in a monetary economy; we all have to make our way around, and so we quickly work out things by trial and error. In an economy with 30% inflation, let alone 300% inflation, you simply can’t hold cash for even pretty immediate future expenses.\n\nMy monetary awakening and life-long fascination for money/monetary economics began in the fall of 2012—though I didn’t know it at the time. I had fumbled about for a few years after high school: doing policy events for an NGO, volunteer work in Costa Rica, a year at an arts school, and some assortment of various jobs (manual labor, sales, ferry company). \n\nIn 2012, I excitedly packed my bags and hopped the Atlantic for a couple of months in Buenos Aires, primarily to study Spanish. I ended up staying in Argentina and Chile for upward of a year, looking as I was for some sort of adventure or guiding path; travelling, as a way to discover one’s inner self (alternative interpretation=postpone growing up).\n\nFar from thinking about monetary systems, my mind was filled with ecological considerations and conjugation of Spanish verbs. I planted trees, rallied against capitalism, and mastered the Argentinian (ʃ/"sh"). \nThe daily wielding of convoluted ways to turn my stash of Swedish and Norwegian currency into real-world goods and services halfway across the world were just an irrelevant nuisance—like getting dressed, brushing my teeth, or showering. __Hopping through monetary obstacles is just what people do here; when in Rome, etc__. \n\nIn hindsight, I should have paid more attention. \n\nOf the many countries that suffer from monetary mismanagement, Argentina is a classic culprit. As I later studied economics and trained as an economic historian, my professors would occasionally joke that there were four types of countries in the world: **rich, poor, Japan, and Argentina** [^2]. The history of those two outliers have tended to defy the general pattern of things, especially in monetary matters. (In Argentina's case, “misbehaving” is putting it mildly.)\n\nIt seems cosmically poetic that as I think about this the President of Argentina is slashing his country’s mismanaged fiscal state and calls for a dollarization of the economy. The country has rarely had this much positive momentum. [^3] (shout-out, @Undisciplined: https://stacker.news/items/745721)\n\nDuring the year I spent in this fascinating country, this monetary hooligan was doing well relatively speaking. Official inflation was "only" 30%, and black-market currency exchange rates were only a little above the official rate. For all Argentina’s monetary and fiscal sins, it seemed to be doing better than it had in a long time.\n\nBut Argentina suffered a problem of small change [^4]. This was still a time where contactless/card payments were novelties, so most transactions took place in cash. Banks and ATMs would give you nothing but 100-peso notes, a large-ish sum at the time. And Buenos Aires bus traffic operated on small coins—1-, 5-, and 10-peso coins. As shops couldn’t easily access small change from the central bank—which would have recycled the 100-peso notes back to where they came from—and customers who needed to ride the bus hoarded their small change, traders in shops across the city found themselves at an impasse. A customer had the funds to pay for the goods, and the seller wanted to sell them at agreeable prices, but doing so would mean accepting a 100-peso note and giving away what little change the merchant had. Either grocery store clerks denied the current customer in order to satisfy the next one, or accepted the current trade only to end up losing the next customer. \n\nThe life of retail in Buenos Aires as late as the 2010s was thus a constant haggle over small change. Plenty of mutually beneficial trades were left by the wayside, **all because the money didn’t come to users in the way and form that they desired; it wasn’t divisible enough. The spheres of the real economy and the monetary economic clashed,** with the money itself causing a drag on the real consumption and production decisions people had to make.\n\nPeter McCormack would, years later in his many podcasts, say that every Argentinian he met told him they had two jobs: their day jobs, and their side-hustle as a money manager trying to get _out of the peso_ in any way, shape, or form possible. \n\nA decade before, many of my Argentinian friends and their families complained loudly over that same difficulty of saving and planning their finances. \nHolding physical dollars instead of pesos protected my friends’ families in two ways: first, the peso predictably fell in value in foreign exchange markets, which holding dollars protected against. Secondly, physical cash stashed under the mattress is hard for an overbearing government to confiscate in a pinch. Many of them used the opportunity of (semi-illegally) bringing back U.S. dollars whenever they travelled abroad. The same reason that made my Argentinian friends scramble for dollars—exiting a faulty money as quickly as possible—allowed me to financially benefit by holding outside monies. \n\nI was pretty insulated from the local monetary madness in a way that powerfully resonates with me today (most of my social environment struggle under mismanaged money, but _I_ have access to bitcoin, so once more I'm pretty well protected). Despite having no interest in economics back then, I noticed that the currency exchange rates were rapidly and predictably falling and I quickly worked out that I could get more **things** (albeit at higher peso numbers) by holding SEK and NOK in foreign banks and only withdraw pesos from local ATMs on the day of consumption. **This minor way in which money was broken was staring me in the face, but it never occurred to me to investigate it, or ask the critical questions of why this was happening.**\nWithout understanding it, I was hedging my future peso expenditures by holding foreign currency which would offset the inflation or even appreciate in real value against the dismal peso. _Hold the appreciating money_: https://stacker.news/items/738907\n\nOn my daily walks to Spanish class, I observed the sticker prices at the local pizza place shift numbers every other week. Odd, of course, because where I came from I almost never saw prices shifting—and for the next decade or so, policymakers and economists were arguing loudly over _too low_ an inflation rate. It seemed that the troubles facing Argentina in the early 2010s were completely at odds with the major financial and economic debates in the part of the world I was familiar with.\n\nOver the course of these months in a dysfunctional monetary economic environment, I began asking all the right questions that in hindsight seem so obvious: \n\n- What was going on? \n- Why wasn’t this happening in other countries I had been to? \n- What is inflation and how does it happen? \n- What do central banks, or indeed any banks, do? \n- How do financial systems work? \n- _What is money?_\n\nI have lots more to say and opine on regarding those topics today than I did back then, but the confusion and astonishment at witnessing monetary madness in action was _definitely_ a turning point for my intellectual development. \nIt was the beginning of my interest in money and, by extension, bitcoin.\n\nThat's today's not-so-little money lesson.\nPeace,\nJ\n\n[^1]: J.R. Hicks, ‘Monetary Theory and History –An Attempt at Perspective’, in J.R. Hicks, (ed) Critical Essays in Monetary Theory, (Oxford, 1967[1935]), p. 156.\n[^2]: https://www.economist.com/finance-and-economics/2019/03/28/how-argentina-and-japan-continue-to-confound-macroeconomists\n[^3]: https://aier.org/article/foot-voting-reconsidered-how-should-i-think-about-leaving/\n[^4]: https://press.princeton.edu/books/paperback/9780691116358/the-big-problem-of-small-change \N 21540 \N 442325 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 16.5805264167407 0 \N \N f 18222983 \N 1 178312406 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448279 2025-03-22 14:18:19.868 2025-03-29 22:39:52.941 \N okay, I thought my question was clear, regarding the future plans of Pleb Lab, and the trade-offs between growing to a global scale vs a local scale. In my mind, those are very distinct, different goals. Maybe I'm taking your words too literally. But what creators are you looking at, TFTC? And what makes now the right time? https://example.com/ 21214 448274 445953.445964.446055.446086.448274.448279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4003986496385 0 \N \N f 133588199 \N 1 51093698 0 f f \N \N \N \N 445953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403857 2025-02-15 09:28:16.36 2025-03-29 22:39:52.942 \N I believe it's hard to understand digital scarcity if you have grown up without ever witnessing such a thing in the 50+ years of internet history. The internet, a network of networks, built to share data. How can a thing which purpose was to share data make the complete opposite possible: to keep data scarce? Which introduced p2p file-sharing and thus the biggest enemy of copyright holders? Which made more information available than ever before, to so many people at their fingertips, wirelessly and globally? The internet is like a printing press on steroids. And that's an understatement.\n\nSo I think the problem is not that bitcoin is complex: the problem is that it's such a paradigm shift, you need to unlearn some things you thought are never possible to start to grasp it and the concept of digital scarcity. And some people will indeed never grasp it. They simply don't have enough time in their lifes left for unlearning or adapting. \n\nI will always remember how my professor said that when he heard about public key cryptography for the first time, his first thought was that that's impossible: how can you share a key over an insecure communication channel and keep it secret? Surely there is no way!\n\nThat's when I witnessed myself how I take things for granted which were considered miracles when they were discovered (_do we invent math or discover it?_). The way he framed it, I realized what an astonishing discovery RSA and the Diffie-Hellman key exchange must have been. And now we take HTTPS and E2EE for granted and use it in our daily lifes to message friends in private, do online banking or... write on SN, knowing it's the _real_ SN since TLS certificates authenticated the host. \n\nI believe the same will happen with bitcoin. Future generations will grow up with it and just accept digital scarcity as something so natural, you won't question it at all. https://example.com/ 4474 403824 403824.403857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.77792499729489 0 \N \N f 1580942133 \N 11 203525916 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456117 2025-03-27 13:26:04.922 2025-03-29 22:39:52.942 \N Negative interest charged daily. Free for 99% of users, and the 1% that leave their sats, ignore reminder emails, are paying to keep the lights on.\n\nJamie\nAcceptLN Team https://example.com/ 9109 456113 454221.454403.455521.455855.456113.456117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.321169564981 0 \N \N f 450599656 \N 3 17172815 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447059 2025-03-21 15:36:07.577 2025-03-29 22:39:52.942 \N Desiree, checking in! Excited to answer any questions here! https://example.com/ 11288 447050 445518.445696.445701.445709.447001.447050.447059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.51939363644509 0 \N \N f 140292868 \N 1 83867639 0 f f \N \N \N \N 445518 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423923 2025-03-03 17:58:10.124 2025-03-29 22:39:52.942 \N If I had thought of this before now I would have commented on the PR. Thank you for asking the question @siggy47! https://example.com/ 18225 420782 417342.420721.420750.420782.423923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0507177286147 0 \N \N f 219059571 \N 2 74234477 0 f f \N \N \N \N 417342 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403824 2025-02-15 08:47:37.336 2025-03-29 22:39:48.91 Should we organize a member drive? Would there be any value in creating a concerted effort to drive more traffic to SN? Maybe pick a day that we do a social media blitz or something? Personally I found SN because of a reddit post, and I definitely think there would be value in adding more traffic to this site. \n\nAny thoughts? \N 10342 \N 403824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.92668502701046 0 \N \N f 3457430236 \N 25 236593517 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 7 0 0 424571 2025-03-04 08:28:57.626 2025-03-29 22:39:48.91 Taproot Assets: Good or Bad? I listened to the Bitcoin Audible Podcast [episode](https://www.fountain.fm/show/RtZlWdbEbpyEyjBNbeQ7) where Guy read the Ryan Gentry article on taproot assets (formerly known as Taro). From Guy's take, at worst this could solve an onchain problem. At best, it could open up many new lightning use cases. Guy seemed positive, and I usually trust his opinion.\n\nSearching SN for info, I saw that @DarthCoin weighed in with "TapAss" on May 19. I must add that to the Second Edition of the Translation Guide.\n\nWhat's the consensus here, or is it just wait and see? \N 15160 \N 424571 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 29.1822535313321 0 \N \N f 1724628200 \N 13 33931716 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 417685 2025-02-26 14:51:01.316 2025-03-29 22:39:48.91 What would your approach be if you were to learn Bitcoin from scratch? How would you go about learning Bitcoin from scratch and consolidating your Bitcoin knowledge given that there are many resources and many rabbit holes within Bitcoin such as Money, Austrian Economics, Bitcoin Programming, Lightning, etc.?\n \N 11395 \N 417685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5358760270239 0 \N \N f 26214862 \N 1 115261775 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443160 2025-03-19 05:32:14.64 2025-03-29 22:39:48.91 Expensive fridges are dying young. Owners are suing, claiming fraud \N https://www.nbcbayarea.com/investigations/consumer/expensive-fridges-dying-fraud-claims/3428989/ 21521 \N 443160 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 0.974032144201153 0 \N \N f 125903014 \N 2 150846446 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:30:17.888 f \N \N \N 0 0 0 0 2 0 0 398392 2025-02-10 16:20:14.763 2025-03-29 22:39:52.942 \N This is so interesting -- like watching organ differentiation in real-time.\n\nI'm no political genius, but my sense is that anti-crypto positioning is almost the purest footgun situation that could be wished for: people who dislike crypto have it as number 46 on the list of things they hate about the world; and for people who like crypto, it's like the most important thing in their lives. \n\nGiven razor-thin margins of victory and widespread voter apathy, it dumbfounds me that someone would pick that hill to die on. https://example.com/ 676 398382 397842.398184.398382.398392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9503079132092 0 \N \N f 34374561 \N 1 117782388 0 f f \N \N \N \N 397842 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441240 2025-03-17 21:14:48.343 2025-03-29 22:39:52.943 \N Good idea. Still figuring out how I want to interweave bitcoin stats with usd stats for people that don't know much about bitcoin. https://example.com/ 1720 440313 439946.440242.440313.441240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.14910839019174 0 \N \N f 227092606 \N 2 157527674 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407506 2025-02-18 05:14:50.683 2025-03-29 22:39:52.943 \N Why does it need to be renamed? https://example.com/ 1584 401553 401553.407506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2676535052741 0 \N \N f 91439041 \N 1 96124802 0 f f \N \N \N \N 401553 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441121 2025-03-17 19:20:43.449 2025-03-29 22:39:52.943 \N Get ready for the big auction! Today the FDIC finds out how much it must bribe the big banks that control the financial world to buy the assets the Federal Reserve has destroyed. https://example.com/ 1051 441087 441087.441121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.7737540334172 0 \N \N f 49454692 \N 1 200048826 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410559 2025-02-20 14:39:31.33 2025-03-29 22:39:48.91 Japanese Yen continues to crash, almost 155 Yen to USD 📈 ![https://pbs.twimg.com/media/GLS4BYFb0AENDYx?format=png&name=large](https://pbs.twimg.com/media/GLS4BYFb0AENDYx?format=png&name=large)\n\nWhere does it end? Is there anything the Bank of Japan can do to rescue this situation that isn't just kicking the can further down the road? Will the 4th largest economy undergo hyperinflation?\n\nYEN/USD was at 146 when I visited Japan just a month ago, I think that was after BoJ intervention. Great for tourists, but I feel so bad for this nation of amazing people and culture that has lost so much of their purchasing power. \n\nMy feeble understanding is that there is a "carry trade" going on where entities are borrowing from Japan due to its low interest rates and investing in USD returns with higher interest rates, but Japan can't raise its interest rates to stop this because of its massive debt... \N 10554 \N 410559 \N \N \N \N \N \N \N \N health \N ACTIVE \N 26.1669554230997 0 \N \N f 921646208 \N 5 115666357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455682 2025-03-27 09:03:35.754 2025-03-29 22:39:52.943 \N Whatever. I don't care. It's am awesome wallet and works just fine for me. Not like I'm putting my family' saving on it. https://example.com/ 7119 455665 455649.455650.455665.455682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7149387138578 0 \N \N f 946364942 \N 5 195576525 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 444378 2025-03-19 20:37:53.905 2025-03-29 22:39:52.944 \N You are free to post whatever you like. The sats signal will let you know how welcome your posts are. Simples as that. https://example.com/ 1620 444346 443836.444346.444378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4347644853438 0 \N \N f 130125174 \N 2 153892625 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443598 2025-03-19 12:36:41.753 2025-03-29 22:39:52.944 \N Looks really slick! Nice work on the partnership!\n\nI feel like the site revamp makes his archive way more accessible too. https://example.com/ 2609 443593 443593.443598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3455759361179 0 \N \N f 181753347 \N 1 235340010 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433247 2025-03-10 22:11:21.23 2025-03-29 22:39:52.944 \N ![20230911_225121.jpg](https://m.stacker.news/4815) https://example.com/ 6030 433186 432920.433186.433247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.25328686747053 0 \N \N f 151970366 \N 1 189227391 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 2025-03-19 21:43:19.703 f \N \N \N 0 0 0 0 1 0 0 443894 2025-03-19 15:12:01.83 2025-03-29 22:39:52.944 \N Every other sentence in this propaganda piece is a boldface lie! But, no publicity is bad publicity: as [@woonomic states: this is a absolute dream](https://twitter.com/woonomic/status/1597936320881754120). https://example.com/ 6191 443886 443295.443781.443806.443886.443894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4123786120883 0 \N \N f 153437920 \N 1 35261033 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434306 2025-03-11 19:18:20.844 2025-03-29 22:39:52.944 \N I've seen this before, so when you claim that "you made the visualization", I find that highly suspect https://example.com/ 12959 434022 433740.434022.434306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9232123004102 0 \N \N f 165055629 \N 1 140306584 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 261758 2024-10-09 18:33:34.394 2025-03-29 22:39:48.91 Five perspectives on stablecoins I know we hate stablecoins, but if we want people to use bitcoin instead we should understand them well enough to form better arguments and alternatives, much like [studying pix in brazil](https://stacker.news/items/458011). https://medium.com/@nic__carter/five-perspectives-on-stablecoins-5bc20076270a 1012 \N 261758 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.89839688963561 0 \N \N f 93695490 \N 1 4112163 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443577 2025-03-19 12:24:24.696 2025-03-29 22:39:48.91 Bitcoin is Forever Money with Michael Saylor - What Bitcoin Did https://www.youtube.com/watch?v=lwmyaxpJwoc\nhttps://www.whatbitcoindid.com/podcast/bitcoin-is-forever-money\nhttps://fountain.fm/episode/gSwHz52HfVPakPt6gmoD\n\nTIMESTAMPS:\n00:00:00 Introduction\n00:16:32 Bitcoin legitimisation\n00:32:10 Fiat decay & the sly roundabout revolution\n00:52:23 Balancing economics, ethics, & engineering\n01:14:45 Ossification & user rights\n01:34:48 Consensus & changes\n01:50:42 Sovereignty & sound money\n02:02:49 Funding Bitcoin development\n02:13:52 The crypto regulation political war\n \N 2013 \N 443577 \N \N \N \N \N \N \N \N health \N ACTIVE \N 19.2132361877831 0 \N \N f 4127718616 \N 36 79810314 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 07:00:58.165 f \N \N \N 0 0 0 0 9 0 0 106903 2024-01-02 11:12:27.208 2025-03-29 22:39:48.91 Why Stardew Valley’s Creator Hated His Game I've never played [Stardew Valley](https://en.wikipedia.org/wiki/Stardew_Valley), but it was coded, designed, and published by a solo dev. It's [one of the best selling games ever](https://en.wikipedia.org/wiki/List_of_best-selling_video_games), selling as many copies as *Call of Duty: Modern Warfare*. According to this video, it took him 4.5 years to develop while being supported by his parents and his girlfriend. I end up admiring a lot of indy game devs for this simultaneous skill depth and breadth - it rarely manifests in other types of software. https://www.youtube.com/watch?v=v0OsW8HSqA8 15213 \N 106903 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.1379042078744 0 \N \N f 189421753 \N 1 160864077 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403808 2025-02-15 08:27:36.131 2025-03-29 22:39:52.933 \N 🛸 @k00b is taking us to outer space\n\nCowboys vs Aliens Soon™ https://example.com/ 10690 403806 402904.403694.403750.403754.403755.403762.403765.403771.403772.403773.403776.403778.403779.403788.403798.403806.403808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3097365494052 0 \N \N f 144013901 \N 2 140301427 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434925 2025-03-12 10:43:38.969 2025-03-29 22:39:52.933 \N I feel that. But at some point, I realized: Why do I care so much about pocket change?\n\nSo I just calculated the value of my sats in fiat terms (yes, i know but it is how it is) and then decided how much i would like / wouldn't care at all to listen to good stuff for 60 minutes (since it's sats / minute on Fountain iirc). Basically like an upper bound since I probably won't listen to podcasts for 3+ hours per day.\n\nI also love that [Darknet Diaries is on Fountain](https://fountain.fm/show/G9WUlNV7UGkn67Edis2T). And since it's not even a bitcoin podcast, I especially want to support it! https://example.com/ 1195 434916 434916.434925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1405411991776 0 \N \N f 85423935 \N 1 38684929 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N 2025-03-19 08:18:54.699 f \N \N \N 0 0 0 0 1 0 0 422714 2025-03-02 16:35:02.785 2025-03-29 22:39:52.943 \N ***Day #106 of nut 🌰 dropping 🥜 in the Saloon***\n\ncashuAeyJ0b2tlbiI6W3sibWludCI6Imh0dHBzOi8vc3RhYmxlbnV0LnVtaW50LmNhc2gvIiwicHJvb2ZzIjpbeyJpZCI6IjAwNWMyNTAyMDM0ZDRmMTIiLCJhbW91bnQiOjgsInNlY3JldCI6InVVc3pWbHF3OGc4RU1MbTJmN1Y3SEFNN1hkVUN2NnlPRVJFVEVpbnRUUVk9IiwiQyI6IjAyNzBmNzAyYzI1NjZlNDQ5MWFiNjNjOWM1MGY4Yzc4NjdhNjI3MjkwMmM4M2Y3MDRlZWIyMmE4ZTk3MjBkNmNiZCJ9LHsiaWQiOiIwMDVjMjUwMjAzNGQ0ZjEyIiwiYW1vdW50Ijo4LCJzZWNyZXQiOiJsaVhEZVFmZTRVU3Q4N0pwSndPRXFMS0lzSGVyZTRuNWcySFNDTURIais4PSIsIkMiOiIwMzYyMThjODc4NjIxMjUzNzc3NWY3NGFiMjlhMDljM2ViMWM4YmE3YmEwZjdmYzlhNzg4NjY5MzUwOWVmMzBhMTcifSx7ImlkIjoiMDA1YzI1MDIwMzRkNGYxMiIsImFtb3VudCI6OCwic2VjcmV0IjoicGRzQkNEdW5iM09RN3pKdDBxNU83aTQxQVZHeVBud0xwQjh5NmloL0RlND0iLCJDIjoiMDJiYTEyYWRkYTFiNjQ2ZmExMGQxNDQzNGE5Zjk2N2VlNDYzYWJjNDIxYmU2NGUwYTI5YWJlZjRmOGYwZDI3ZDM4In0seyJpZCI6IjAwNWMyNTAyMDM0ZDRmMTIiLCJhbW91bnQiOjQsInNlY3JldCI6Im8xVUxaTGdVMkZWQTlBMTlETnJQNVpBOXZUdUs2bWV0THZpSXl3Ukordms9IiwiQyI6IjAzNjRjNWY0NWYxMjhiNzllMmM3ZmY2Y2I5ZjRlMWYzMWU5MmIxMmMxODlmN2JiMTNmYzgwOTlkYjllZmIyNmQyOCJ9LHsiaWQiOiIwMDVjMjUwMjAzNGQ0ZjEyIiwiYW1vdW50Ijo0LCJzZWNyZXQiOiJDOUJJSUN4eWpKNUJuYk45bW14cmdwUU1sNUkyMktrNzR3dVh2b0N5RmU4PSIsIkMiOiIwM2RjMTFhNTE5MDc4OTA0MzA4Y2YxOWRiMzJiODcxZGM0MTM4NGYxZGUzNTFjM2Q1YjYyMzc0YmJkNzRhYjcyMzAifSx7ImlkIjoiMDA1YzI1MDIwMzRkNGYxMiIsImFtb3VudCI6NCwic2VjcmV0IjoiWm9XaU9Xd0hJcUhVbDFJMWNub2dVM0VRTTZUUGlvSitRS3ltNHJrRlFZZz0iLCJDIjoiMDM1OWM0NzZiOTdkNzYzZTg3MmRhMjZhMzNhOGI5NTdmMjQyNWY3N2FmMzQyNDJmN2FhMjhjNWE3YTQxMTQ1OGU1In0seyJpZCI6IjAwNWMyNTAyMDM0ZDRmMTIiLCJhbW91bnQiOjQsInNlY3JldCI6Imd6MzhmdlNwWFpOWGhnZ2xBMHdFd2l3RjRlQXFodnBpdDd0U0VtUzM2dW89IiwiQyI6IjAyMTEzOTdiYTQyNjEyZjc1OTA1YjJhYjk4YTcxZjA5NGQ4MWRhOGY2ZTU0YTBkZTNiZTYxOWU5N2I5NmI3NmM5OSJ9LHsiaWQiOiIwMDVjMjUwMjAzNGQ0ZjEyIiwiYW1vdW50Ijo0LCJzZWNyZXQiOiJSWm1qTUZxQ1h1QlFZR1dMS1NKZDVoVWJLY2QzeVdqVWt3bmd0czJvWW8wPSIsIkMiOiIwMzU2ZmM5MzMwYTQ1YzUwZmMzOTE0MzlmMDQyMjlhNmU5YTk5NGI3MjRhNDUwMDY1MmM4Y2Q4NWMyOThhZDkxMTcifSx7ImlkIjoiMDA1YzI1MDIwMzRkNGYxMiIsImFtb3VudCI6NCwic2VjcmV0IjoibHVKeXk1aU9nQ1NuTVd3NGdhdUIzeExhUCtXZnhKY0ZFZ0s1NEM2SWh2bz0iLCJDIjoiMDIzNjVmMTIyM2MzNmIyYmFlZDk0NjRmOWVkZjA4YTNlYWM4NzhhNWUyMDlhMzY4NzRkYTMxNWIzZDRhNGMzMjliIn0seyJpZCI6IjAwNWMyNTAyMDM0ZDRmMTIiLCJhbW91bnQiOjQsInNlY3JldCI6IjlzakUwS21nVmZ0cGpWN3BFRlRzbzRnNEtIWXJ2L0FDWG5YNXpGSjdCV2s9IiwiQyI6IjAzMWE5NjE1YjAzNGU5ZTVkNjk1OGM0NjJjNTVlYTFjZjliZjEwY2I4ZjZhNTVlNzAxMTVmYmVmYTYyMWU1MjJmYSJ9LHsiaWQiOiIwMDVjMjUwMjAzNGQ0ZjEyIiwiYW1vdW50Ijo0LCJzZWNyZXQiOiI4SVREVjJRaHZ2bFZmNTdIT0pyOHdJdnVhNUFtV2JVL3VSa2J0YUVhOWxNPSIsIkMiOiIwMjlkNGFjMzVjZmI0ZTRiZDU0ZjA4MzM2MWI4M2JmYmM5MGI5NzIxYTUzYWRhZjU3ZTYyMzkxODZjNmFhMTg4NmEifSx7ImlkIjoiMDA1YzI1MDIwMzRkNGYxMiIsImFtb3VudCI6Miwic2VjcmV0IjoiM0MwRE4vZ3FpWXNqRm1lRkxVYmpZVERxU1ovTUg2RlZlZ1hsSWdkazJncz0iLCJDIjoiMDIwYmViNzY1NDQ4MGQ1YTU4YzVjZDVjYTdlNjZmMzFhMmRiY2YyNTJhMzBkODA0OGQ3OWUyZWJjNWFkYmI3MGUzIn0seyJpZCI6IjAwNWMyNTAyMDM0ZDRmMTIiLCJhbW91bnQiOjIsInNlY3JldCI6IldkbTNUemgyZE1PWXREYUhTbWw0K1pxbWtnVUJBeWwweEhPTDZjcjBlLzg9IiwiQyI6IjAzM2M4NjJkYWYyOGRhYzIwNTM5NGY4YTZkMGIxYTQ4MWJhMWJkNzliYjM2Njg5ODQ0ZTkzNjEwNjQxM2NmM2Y0MyJ9LHsiaWQiOiIwMDVjMjUwMjAzNGQ0ZjEyIiwiYW1vdW50IjoyLCJzZWNyZXQiOiJSQ0F1MFJXTW0yU29qYXF2MWNEWW5ua2ZHWHNxUkZrQ3JCSzNIREkybGc4PSIsIkMiOiIwMmNjMGIyMjQyZWViYjE0ODg0YjM2ZWFlNDVlY2Q3M2M0YWRmZjE3YWUzNDhiMDgzZTIyNjIyNjUwMWI3YzljNjIifSx7ImlkIjoiMDA1YzI1MDIwMzRkNGYxMiIsImFtb3VudCI6Miwic2VjcmV0IjoibTFZYXRxelFtdWtQckNRREpwSkV1dFpXNmRhd0I0WmVmdGxDTC9nME9BOD0iLCJDIjoiMDM5OGMyZWM3ZjU4YWQ5ZjBiZjlmODY4MjJiYjFlZWE4OWFmOTJkMDljOTcwYTNjYzkwOGRhMTcyNzk2MzI2YzFkIn0seyJpZCI6IjAwNWMyNTAyMDM0ZDRmMTIiLCJhbW91bnQiOjIsInNlY3JldCI6ImpqUXZMS2JjQzdNNE1KY0l6SnVBd2hKUFkzYUVhaFVHejFSemY5N0w3YzA9IiwiQyI6IjAyNGZjMTNiZWU0ZmQxY2QyZWI2MGUwZmMzOTJjZDhjNDY4MmMxOGVhMjFlOWUzNzk3ZGQxN2E1ZGU3MzBmMWU0NSJ9LHsiaWQiOiIwMDVjMjUwMjAzNGQ0ZjEyIiwiYW1vdW50IjoyLCJzZWNyZXQiOiJ2UStpYkZzc3pVcmpGRGpSUGRqZGxMOVV6aDdCTXluS3VSR0xZZFVMT0VnPSIsIkMiOiIwMjg5NTQxY2Y3N2ExM2M1Y2QyNGZlYjAyMzY1NjE2N2I4MjU3M2EzMGZhNjkzNmQ4MTdlNTc5OGI2MjkxOTRhMDkifSx7ImlkIjoiMDA1YzI1MDIwMzRkNGYxMiIsImFtb3VudCI6MSwic2VjcmV0IjoiOG41UitMTkc4eTd4ZGN1ODhRS3lUWEtZblp6WVZwQVpLODVVNGlXMG54TT0iLCJDIjoiMDIzNTlhMDdkNzY1MjI0MGI2NTFkOTU2YzRjZDkwODVjZDM4OGUyM2QzZjQ3YzU5Zjg5NjlhNDdhYzZlMTRjYzU0In0seyJpZCI6IjAwNWMyNTAyMDM0ZDRmMTIiLCJhbW91bnQiOjEsInNlY3JldCI6IlA5UW5tWCtSTkhtSWNjenVCbFZLdGI0Q3F4Y0FkZVpKVVJidS9xc2M0L3M9IiwiQyI6IjAzODBkZmZlZWJjZWQyOWNmZWE3OWQxY2IzODQ1NWNjZWNhNjkzODY5NzEzMjk5ZjBiYmNiMjVlOTgxMjE1NzE3MyJ9LHsiaWQiOiIwMDVjMjUwMjAzNGQ0ZjEyIiwiYW1vdW50IjoxLCJzZWNyZXQiOiJZeElCNDZDOHRoWmtTaVgwZHlQMHR4WU1MajNieEViWGpsQ3ZGeXpPTVo0PSIsIkMiOiIwMzc5YmRjODI3ZGIxMTdlMjRjMTA4MzU0ZWE3NThiODA3NTA0ZGRkOTEwNzc2NWI5ZmQ4ZTYyYTJiNTFiZDQ2NjMifSx7ImlkIjoiMDA1YzI1MDIwMzRkNGYxMiIsImFtb3VudCI6MSwic2VjcmV0IjoieSs2TG1ndG9qMjN5b1NpaVpyakhYelBHUlUrQlM3OUh5TTVOQUxsaUhocz0iLCJDIjoiMDJmMjdlOWUzZTExMGQwMDA5YmQxMzZmMGE5MTlkNjA5NjlkYmY0NmUyNmY1M2FjOTRkYmM1NjMzNzIzZGYzZGZlIn0seyJpZCI6IjAwNWMyNTAyMDM0ZDRmMTIiLCJhbW91bnQiOjEsInNlY3JldCI6ImZpOFljVXVZRmpENE40Q0pXSDA0Nk0vUjlYMjJiQmNaeE04Q0RhUGs4a1k9IiwiQyI6IjAzY2MzN2YyODFmZjZiMTU0ZThiMjNkMTlmMWJhZDMwYjJkOTlmNGMyMmZiYTY3ODUyODQxZTUwMDVhZDcyODc2NCJ9LHsiaWQiOiIwMDVjMjUwMjAzNGQ0ZjEyIiwiYW1vdW50IjoxLCJzZWNyZXQiOiJSWVl6Qno3YUZvWXVkN1FIRDh6TWFXUkt0eEthb0pLL2dwdzJsbWd5NXhBPSIsIkMiOiIwMmViMGNkODU5MzI1ODViMjI2NDI4MGU3OTE1YmVhZTE1NzE2ZWZhZTVkYzI0NTdmOTMwYTI0MzNkZTE1OGJhMmIifSx7ImlkIjoiMDA1YzI1MDIwMzRkNGYxMiIsImFtb3VudCI6MSwic2VjcmV0IjoiTmE3cC9wbjNCeDZuaG9Hb1A5eEJhdDNrelkvdFg0Snk2aERTUjBGcHBjdz0iLCJDIjoiMDI1MjFmZGMzMGZjN2NmZGVkYjUzYmUyOTA3YTNhYWQwNDJmZmY0NTM0ZWExM2Q0ZDczYTQ5YTJiNzEyNTJhMWE3In0seyJpZCI6IjAwNWMyNTAyMDM0ZDRmMTIiLCJhbW91bnQiOjEsInNlY3JldCI6ImhWZU0zamdLUURoTEZJWUhyOUltMnBSOFV0TlVERHZwM0gyY2ttK0FyVnM9IiwiQyI6IjAzMzBhNjBkNDY5YjA5MGFmZjkyZTJjZWI5ZDM2Zjc2Yjk1MTFkZjYxNTQ2ZmNiOWViNjI1YjI1OWIyOTUxOGY0NiJ9XX1dLCJtZW1vIjoiQ2xvc2UgbWludCBudXQg8J-MsCAifQ\n\n**Want to harvest this nut?**\nhttps://docs.cashu.space/wallets https://example.com/ 5904 422483 422483.422714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8020913361123 0 \N \N f 670150355 \N 5 222740397 0 f f \N \N \N \N 422483 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 404197 2025-02-15 16:22:09.414 2025-03-29 22:39:52.943 \N > I hope you don't choke me @Darthcoin\n\nWhy should I choke you? I like your "Operation Saylor" series.\nI even share it with others, to read and learn from your journey / experience.\nKeep'em coming !\n\nYou talk about custodians.\nWhat about "uncle Jim" solution? \nRunning a bunch of nodes in a small community can help a lot those that could not run their own nodes / services. And can have quite good trust.\n\nI think more node runners should think about this scenario, as I explained here:\nhttps://darthcoin.substack.com/p/bitcoin-private-banks-over-lightning\n\n> I don't think many people in 2012 could have foreseen the coming of Lightning\n\nIs true, even until 2016-2017 LN was just a dream. Were some discussions about but nobody had an idea how to do it. Nowadays we are quite far from those times, but still we have a long way into this jorurney. LN is still veeery young. https://example.com/ 17727 404157 403824.404157.404197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.167792102142 0 \N \N f 101095759 \N 2 196189539 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435235 2025-03-12 14:44:03.932 2025-03-29 22:39:52.944 \N BTCPay server https://example.com/ 20817 435220 435046.435135.435162.435214.435220.435235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8822670745393 0 \N \N f 1173695929 \N 9 205338191 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 09:44:32.577 f \N \N \N 0 0 0 0 3 0 0 443300 2025-03-19 08:51:19.026 2025-03-29 22:39:52.944 \N Given the sudden drop and it not being reflected in other node trackers, probably their method of tracking onion nodes hit a snag. https://example.com/ 12261 443105 443105.443300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.14283187557802 0 \N \N f 358688118 \N 2 208205240 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 392210 2025-02-05 01:52:49.082 2025-03-29 22:39:48.91 The State of Nostr with Bob Scully, DK, Oscar Merry, and Moritz Kaminski [New Ideas from the Edge Pod] Normally I would publish this in ~ideasfromtheedge, but given that the conversation is exclusively about Nostr, I decided to publish it here in ~nostr.\n\nFor context, we recently hosted a Hivemind Ventures LP/Portfolio day, where we showcased a variety of presentations. The Nostr panel was particularly good so I decided to release it publicly.\n\nThe panel features an all-star cast, including: @bobscully3 (founder of boardwalk.cash), @dk (co-host of Nostr News), @MerryOscar (co-founder, Fountain), and @MoritzKaminski (co-founder, Alby).\n\nYou can listen on: [Fountain](https://fountain.fm/episode/vH67sscHX8ZvxATFOyi7), [YouTube](https://www.youtube.com/watch?v=dlJBttZWius&t=2s), [Apple](https://podcasts.apple.com/us/podcast/the-state-of-nostr-with-bob-scully-david-king/id1731637285?i=1000677938020), and [Substack](https://open.substack.com/pub/hivemindvc/p/the-state-of-nostr-with-bob-scully?r=rkhp&utm_campaign=post&utm_medium=web)\n\nWe discuss:\n\n- Why Nostr feels like the early Internet\n- How Nostr (Nostr Wallet Connect) serves as the universal messaging layer for Bitcoin/Lightning Network payments\n- How Nostr’s open identity and social graph allows apps like Fountain to build new experiences such as discovering the podcasts your friends listen to\n- Why Nostr is so much more than social media. The real promise of Nostr is a social Internet where data is open and users control their own identity, allowing for a Cambrian explosion of new social apps. Imagine automatically finding your friends’ reviews on goodreads, listens on Spotify, and highlights on Kindle\n- How Nostr compares to other projects (e.g. Bluesky and Farcaster) attempting to build open publishing for the web. Why Nostr is the only neutral solution for bringing user-owned identity and open data to any web app today\n- What business models might be viable for startups building in and around Nostr\n- Will Nostr bring more people to Bitcoin or will Bitcoin bring more people to Nostr? https://fountain.fm/episode/vH67sscHX8ZvxATFOyi7 11938 \N 392210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.31516258107616 0 \N \N f 8768681 \N 1 217242198 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 392338 2025-02-05 07:27:26.512 2025-03-29 22:39:48.91 WANTED — Do you know this man? ![saylor man](https://m.stacker.news/57008)\n\nHello. The Deep State is currently looking for this particular individual, a 59 year old male with a degree in aerospace, nuclear science, and intercontinental ballistics, last seen in Miami, Florida. He is known in his inner circle by the alias: gigachad.\n\nHave you seen him? Have you been in contact with him, or have any details on his whereabouts? Then please call your local police department at 092 immediately. Have your passport and address ready and we'll handle it from there.\n\nIf by any chance you meet this person on the street, do not talk with him. Our rigorous covered investigation shows this devious man is highly intelligent, and there's high probability you'll be converted to an agent of destruction to blow up the financial system with the click of a button, if you were to converse with him for only one minute.\n\nYou understand our concern for you and our society's safety. We appreciate your patriotism and look forward to cooperate with you to protect our country. \n\nThank you. \n\n \N 18526 \N 392338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.296496908896 0 \N \N f 216905169 \N 1 95842663 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 440692 2025-03-17 13:29:17.986 2025-03-29 22:39:48.91 npub pro - nostr-based wordpress-like websites I’ve seen a few experiments like this. I get the sense there’s a big opportunity here. https://npub.pro/ 9655 \N 440692 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.7938345237991 0 \N \N f 1649120711 \N 13 113267347 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:31:22.895 f \N \N \N 0 0 0 0 3 0 0 434912 2025-03-12 10:35:04.285 2025-03-29 22:39:52.933 \N That many people in African countries put all of their savings into a scam although they KNOW it's a scam. The just believe or hope to be one of the lucky first 10% who'll get a pay out. https://example.com/ 18423 434899 434646.434871.434899.434912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7245981323584 0 \N \N f 185084418 \N 1 107121438 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 03:53:31.426 f \N \N \N 0 0 0 0 1 0 0 410584 2025-02-20 14:48:25.788 2025-03-29 22:39:52.934 \N multisig is not a function of a hardware wallet, wallets are just signing things. you can easily have multisig wallet running on bitcoin core, look at [create multisig rpc call](https://bitcoin-rpc.github.io/en/doc/0.17.99/rpc/util/createmultisig/), its completely up to you where you plan to store and how you plan to interact with the keys https://example.com/ 21824 410543 410534.410543.410584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.20247098566329 0 \N \N f 162383228 \N 1 154001094 0 f f \N \N \N \N 410534 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403905 2025-02-15 10:59:04.733 2025-03-29 22:39:52.934 \N Comparing the centralized, globalist technocracy the powers that be are trying to build to the Tower of Babel is incredibly apt. [The original was actually an attempt to draw down God and "domesticate" Him.](https://www.youtube.com/watch?v=PzrgPeENb7c&t=4010s) It was absolutely a project of control, just like the current iteration. \n\n> As for those “optimists” who are eager to retort that AI is like any technology that came before, and that it will create a new wave of fresh jobs — I’m afraid you are mistaken. AI is not like the printing press, the personal computer, or the internet. AI is not a tool that can be learned or harnessed. Nobody really knows how this thing works, not even its creators. According to recent admissions, “Scientists increasingly can’t explain how AI works.” All they can do is “train” it, i.e. try to satisfy its insatiable hunger for terabytes of personal data. What happens from there is a black box.\n\nOne can't help but think of ancient pagan rituals, offering sacrifice to an unknown entity in exchange for knowledge and wisdom. \n\n> If you can use your hands to build real things, you are highly skilled. If you can grow your food, build your shelter, fix your car, mend your clothes — those skills will serve you and your loved ones for years to come.\n\nSelf sufficiency and tight-knit communities are definitely key. Our citadels and strongholds are absolutely necessary. We also need to go on the offensive. What does it matter if we have sparse small communities if a majority of your society thinks its okay to eat insects and corrupt children? https://example.com/ 7903 403595 403595.403905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6751406005639 0 \N \N f 39686437 \N 1 130697439 0 f f \N \N \N \N 403595 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307280 2024-11-24 22:26:30.302 2025-03-29 22:39:52.935 \N it's the easiest thing, also because there are still all of these barriers. Converting to fiat includes jumping a number of hoops, not just to transfer it to exchanges, where I have no active account now that I ignored all of their "you need to update your KYC"-mails for a while. But if I did do all that, the transfer to a normal commercial bank triggers there tripwires. If I can't directly spend it, it's sitting there safely https://example.com/ 16948 307258 307258.307280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.20085015103395 0 \N \N f 356065909 \N 3 16967446 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433975 2025-03-11 14:42:58.325 2025-03-29 22:39:52.935 \N Hey Ek, \n\nCan you share your ticket number with me? I would like to look into this for you. I have confirmed with the team that this is a technical blocker so I want to make sure the messaging you received on your support ticket is consistent https://example.com/ 14731 433588 433588.433975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51486466451741 0 \N \N f 32592047 \N 1 42207998 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 2025-03-18 20:10:44.163 f \N \N \N 0 0 0 0 1 0 0 410593 2025-02-20 14:55:32.857 2025-03-29 22:39:48.91 If you can't transfer those sats, you haven't earned anything Thinking about my issues with [ZBD being run by rugging thieves](https://stacker.news/items/489552) and the current situation with [Bitcoin Magazine not allowing folks to withdraw sats](https://stacker.news/items/529746) has served as a good reminder that "not your keys, not your bitcoin" is true, but there's a layer above that. \n\nFor folks who are stacking sats through various apps, *you haven't earned those sats until you've actually withdrawn them*. Bitcoin Magazine can keep saying "you've earned 5 sats[^1] for reading this article," but you haven't "earned" jack. \n\nThe moment I knew Stacker News was legit wasn't when I first got zapped, or even got some nice feedback on a post (though that was enjoyable, of course), but when I clicked "withdraw" and saw a whopping 100 sats move into my wallet.\n\nI just withdraw 200 sats from Satsback; I'd made a purchase through them on eBay in March, and as they clearly note, you'll get credited with your sats but they'll be "pending" until the merchant confirms that you didn't return the item. In this case, it took nearly six weeks. Which is fine, but until this week, I wouldn't have called Satsback legit because I'd had no evidence of it working, even while my dashboard there showed a positive balance.\n\nI've "earned" thousands of sats at Ember and FreeBitCoin. I haven't received a single sat from either, since both only distribute onchain and require a huge amount to withdraw (and Ember also has a bunch of other rules: like only doing it during the last two weeks of the month, after entering a bunch of their prediction tournaments, and after conducting a human sacrifice[^2]). I've also lowered the amount of time I bother spending on either site/app as a result.\n\nThere are TONS of apps that will "earn" you sats, but if you haven't actually gotten those sats under your control, they might as well be [Flooz](https://www.mentalfloss.com/article/517911/bitcoin-rise-and-fall-flooz-e-currency), and you haven't stacked anything.\n\n[^1]:Amazingly, they've now reduced this to 1 sat, which is really pathetic since they also won't let people withdraw. If you're going to pretend to pay people, you should at least pretend to pay them well.\n[^2]:That last one isn't true. Probably. I haven't met the other criteria yet. \N 6260 \N 410593 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 22.8668680375222 0 \N \N f 214580527 \N 1 73667896 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443819 2025-03-19 14:30:39.44 2025-03-29 22:39:52.936 \N https://zap.stream/naddr1qqjxvd35vccnwv3395mr2cfe956rzwrr94skyv3s95uxvvfe8qcrxvnyx56rwqg4waehxw309aex2mrp0yhxgctdw4eju6t09uq3jamnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kz7q3qeaz6dwsnvwkha5sn5puwwyxjgy26uusundrm684lg3vw4ma5c2jsxpqqqpmxwxm9vg3 https://example.com/ 14357 443811 443577.443651.443711.443715.443731.443757.443772.443796.443811.443819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6132631132261 0 \N \N f 242913792 \N 3 165293738 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435054 2025-03-12 12:36:53.59 2025-03-29 22:39:52.936 \N - regular weekly groceries (local small shop)\n- paid the electricity bill (directly in BTC to the provider)\n- next week will have to pay the rent in BTC directly to the landlord\n- recharged the mobile credit with Bitrefill https://example.com/ 14404 434791 434791.435054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.60219870220288 0 \N \N f 222395362 \N 1 91563612 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-19 05:57:32 f \N \N \N 0 0 0 0 1 0 0 403033 2025-02-14 11:36:13.341 2025-03-29 22:39:52.936 \N A prototype for [Joinstr Apps](https://stacker.news/items/246837/r/kpa) https://example.com/ 21249 403028 401824.401884.403009.403028.403033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2305335075822 0 \N \N f 37055998 \N 1 202782025 0 f f \N \N \N \N 401824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427652 2025-03-06 14:50:16.941 2025-03-29 22:39:52.936 \N I did that yesterday cause why not https://example.com/ 716 427628 427628.427652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7954983247758 0 \N \N f 367379222 \N 2 186294556 0 f f \N \N \N \N 427628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454716 2025-03-26 15:05:14.319 2025-03-29 22:39:52.937 \N Strike, River, and Unchained seem to have branding that matches the Bitcoin ethos well. It is interesting to see how bitcoin-only companies align with and differ from non-bitcoin company’s marketing strategies. https://example.com/ 10096 454701 454701.454716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.17703999928584 0 \N \N f 172314973 \N 1 120484760 0 f f \N \N \N \N 454701 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441823 2025-03-18 10:12:49.131 2025-03-29 22:39:52.937 \N Started a 21-day challenge in which I aimed to learn something new about Bitcoin or interact with its ecosystem every day. I would also record my progress on Stacker News.\n\nDay 5 - Created a discussion post on Stacker News and was surprised to receive 1800+ sats. Never expected for it to garner so much attention. Decided to withdraw 1000 sats to my wallet and spend the rest on zapping others, since I kinda feel rich! https://example.com/ 1354 441695 441695.441823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0882394609025 0 \N \N f 1078654580 \N 7 136206428 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 410474 2025-02-20 13:51:19.911 2025-03-29 22:39:52.937 \N It's the big LSPs that need to be worried. They are easy targets. The government is doing a great job of keeping bitcoin/lightning decentralized. https://example.com/ 20187 410434 410409.410428.410434.410474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3328334517349 0 \N \N f 180425122 \N 3 7166794 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433886 2025-03-11 13:41:11.151 2025-03-29 22:39:48.91 PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY III (part 1/2) Sequence of events following electoral fraud in Venezuela:\n"I never left" - Poem for Venezuelan immigrants https://stacker.news/items/614750/r/bief57\nElectoral fraud in Venezuela - This is how the elections were experienced\nhttps://stacker.news/items/626469/r/bief57\nPROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD\nhttps://stacker.news/items/627385/r/bief57\nPROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY II (part 1/2)\nhttps://stacker.news/items/628761/r/bief57\nPROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY II (part 2/2)\nhttps://stacker.news/items/629304/r/bief57\n\nToday is the third day since the electoral fraud, Venezuelans continue to fight for the freedom of our country. In this post I will narrate the events of today, July 31, 2024, that occurred between 00am - 3pm Venezuela time.\n\nNational doubt:\nTrump was almost assassinated and yesterday the leader of Hamas was assassinated. Why is it so difficult to do so with the oppressors of Venezuela?\n\n![](https://m.stacker.news/42744)\n\nUS on the reports that Maduro has not presented:\n\n“Our patience, and that of the international community, is running out.”\nhttps://x.com/OrlvndoA/status/1818715612669264334\n\n"The Maduro narco-regime stole another election in Venezuela due to the weak and naive foreign policy of the Biden-Harris Administration":\nhttps://x.com/EmmaRincon/status/1818669774664053137\n\nThe farce that Nicolas Maduro is trying to pull off in his TSJ (Supreme Court of Justice) is nothing more than a strategy to look good to Lula Da Silva, who asked that everything be resolved in “courts.”\n\nA TSJ full of red magistrates just like the CNE, biased powers and submissive to the PSUV, another organization that will give the same example that the CNE gave of betrayal to millions of votes that want change and freedom.\n\n"Maduro tells Maduro TSJ (Supreme justice court) to say that Maduro CNE does have the minutes that declare Maduro the winner." \n\nDictator Nicolás Maduro, after 3 days of kidnapping electoral witnesses to force them to sign and falsifying records with Cubans and Chinese, claims that he is ready to present 100% of the records in his hands.\nhttps://x.com/eduardomenoni/status/1818718089980395961\n\nFiling of an Appeal for Protection before the Electoral Chamber of the Supreme Court of Justice.\nhttps://x.com/NicolasMaduro/status/1818680601978823070\n![](https://m.stacker.news/42747)\n\n![](https://m.stacker.news/42745)\n\n![](https://m.stacker.news/42746)\n\nAlexander Vega, co-director of the Partido de la U and former National Registrar, said that neither Colombia nor the international community should request the publication of the electoral records of the presidential elections in Venezuela, since the opposition did so. Instead, Vega suggested that the result published by the CNE should be rejected outright.\nhttps://x.com/lafm/status/1818683163914178595\n\n![](https://m.stacker.news/42750)\n\nMaria Corina Machado asked for international support\nhttps://x.com/freddyzur/status/1818690617414701400\n\nThe genocidal DIOSDADO CABELLO threatens to kill the entire opposition if foreign forces enter to liberate VENEZUELA\nhttps://x.com/RNacional_News/status/1818711503031140395\n\nToday in the blue state of Merida. The neighbors prevented the witness from being taken from the table\nhttps://x.com/CjULAGNZ/status/1818702869132152877\n\nTarek William Saab has just said that the repression is dramatized and the wounds are faked with TOMATO SAUCE. The damned are so bold that they deliberately mock the murders they order to be committed.\nhttps://x.com/MiguelBaroneVE/status/1818699948659028309\n\nInformative thread about THE HELICOIDE, the biggest torture center in Latin America located in Venezuela. \nhttps://x.com/yuuzouv/status/1818691058534150471\nHelicoide was originally a shopping mall and the government turned it into a torture center.\n\n![](https://m.stacker.news/42751)\n\nThose arrested yesterday in Caracas are being forced to accept public defenders. \n\nThey are not being allowed to have private defense chosen by their families.\n\n\n"My cousin was killed yesterday by Chavista groups during a protest. Please, I ask you not to stop reporting on the issue, so that it doesn't go cold like it has in previous years, so that my relative's sacrifice is worth it."\nhttps://x.com/NecMinusUltra/status/1818677425472979234\n\nAt this moment, a group of Cubans and Venezuelans are demonstrating in Amsterdam's Dam Square together with volunteers from the NewGeneration Foundation, against the illegitimate regime of Nicolás Maduro.\nhttps://x.com/UHN_Plus/status/1818692970797056298\n\nIn Puerto Cabello, Carabobo state, Venezuelans continue to take to the streets, even on horseback, fighting against the communist and dictatorial regime of Nicolás Maduro.\nhttps://x.com/eduardomenoni/status/1818700623682191812\n\nParamilitary groups from the Nicolás Maduro dictatorship shoot at Venezuelan protesters on Lecuna Avenue in Caracas.\nhttps://x.com/eduardomenoni/status/1818697121375437101\n\nThe inhuman dictator, who emerged from the worst sewer of the underworld, called Nicolás Maduro, went to file an APPEAL FOR PROTECTION BEFORE THE SUPREME COURT OF JUSTICE to validate his election\n\nLet us remember that this tyrant has KIDNAPPED all the powers of the State in Venezuela\nhttps://x.com/NecMinusUltra/status/1818684947000971619\n\nA cacerolazo is reported at the end of Fuerzas Armadas Avenue, in Caracas near the Miraflores palace as a protest by Venezuelans against the fraud of dictator Nicolás Maduro.\nhttps://x.com/eduardomenoni/status/1818686743765565465\n\n5 lines of guards to protect one of the few remaining statues of Chavez\n![](https://m.stacker.news/42752)\nhttps://x.com/alanust/status/1818653938159165540\n\nYoung man has lung punctured in Venezuela... The same people who talk about peace and reconciliation!\nhttps://x.com/DIFERSAY/status/1818629615533031661\n\nThe Bolivian government has diverted a flight with collaborators, undercover agents and prisoners to support the Maduro dictatorship. \n\nThe Santa Cruz-Caracas flight is not a regular flight and follows unusual routes\nhttps://x.com/UHN_Plus/status/1818611376996184383\n\nStatement by the Governments of Canada, France, Germany, Italy, Japan, the United Kingdom and the United States on Venezuela:\n\n“We ask that the election results be published in detail and with complete transparency.”\n![](https://m.stacker.news/42760)\n\nMaduro forces took him away while he was protesting the fraud and he was found murdered.\n![](https://m.stacker.news/42761)\n\nThis morning in Valencia: motorcyclists are not allowed to fill up with petrol. And at this petrol station, all motorcyclists who wanted to fill up with petrol were stopped by the police.\nhttps://x.com/OrlvndoA/status/1818658578556703005\n\nThis is how Venezuela wakes up after the ELECTORAL FRAUD of the tyrant Nicolás Maduro, it is completely on strike. Businesses are closed, avenues are blocked, few Venezuelans are on the streets. There is no public transportation and a permanent police presence.\nhttps://x.com/eduardomenoni/status/1818646098379936249\n\nShe was a witness at a polling station, now they are taking her away in her underwear. This regime has to fall, sooner rather than later.\nhttps://x.com/pampanocarvajal/status/1818490321778385314\n\n![](https://m.stacker.news/42763)\n\nCaracas Venezuela Protests begin on January 23\nhttps://x.com/freddyzur/status/1818718972423918008 \N 20099 \N 433886 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 19.7079925000087 0 \N \N f 233406054 \N 1 38965145 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434465 2025-03-11 23:10:40.697 2025-03-29 22:39:48.91 @realBitcoinDog Bitcoin Story - No, social media had nothing to do with it xD My friend introduced me to Bitcoin, but regretfully I derided him for wasting his money on a Ponzi scheme. There were too many red flags on the surface for me to be willing to deep dive into the rabbit hole. Additionally, as an investor, gold was never appealing to me, so the metaphor "digital gold" wasn't any better. My friend later asked me if there was anything he could've said to convince me about Bitcoin, and I replied no probably not! So keep that in mind as well that as much as you may want to teach your friends and family about Bitcoin, sometimes they need to reach out to you themselves.\n\nI came for the number go up technology, but I stayed for the once-in-a-civilization monetary revolution!\n\n### Source 1: Financial News \n\nMy first source was financial news: "[Bitcoin breaks above $20,000 for first time ever](https://www.cnbc.com/2020/12/16/bitcoin-breaks-above-20000-for-the-first-time-ever.html)", and "[Tesla buys $1.5 billion in Bitcoin](https://www.cnbc.com/2021/02/08/tesla-buys-1point5-billion-in-bitcoin.html)"\n\nThose financial headlines made me consider for the first time ever, [was I wrong about Bitcoin](https://bitcoinmagazine.com/culture/fathers-day-letter-on-bitcoin)?\n\n### Source 2: Investment Studies\n\nThen I read more fiscal studies from financial institutions I trusted: [Fidelity Bitcoin Investment Thesis](https://www.fidelitydigitalassets.com/sites/g/files/djuvja3256/files/acquiadam/bitcoin-alternative-investment.pdf), [Ark Invest Big Ideas 2021](https://research.ark-invest.com/hubfs/1_Download_Files_ARK-Invest/White_Papers/ARK%E2%80%93Invest_BigIdeas_2021.pdf?hsCtaTracking=4e1a031b-7ed7-4fb2-929c-072267eda5fc%7Cee55057a-bc7b-441e-8b96-452ec1efe34c), and [Grayscale's Bitcoin 2019 Investor Study](https://www.grayscale.com/blog/general-updates/2019-investor-study).\n\nThe investor study had such a profound impact on me that I later dedicated my book ["to the 89% in Grayscale's Bitcoin 2019 Investor Study who would consider investing in Bitcoin if they just knew a little more."](https://www.amazon.com/Bitcoin-Dog-Following-Scent-Source-ebook/dp/B09RJ22WTQ/?&_encoding=UTF8&tag=realbitcoindo-20&linkCode=ur2&linkId=e663f4fa1aeba572fa0d3c99bf95ffdf&camp=1789&creative=9325)\n\n### Source 3: The Bitcoin Whitepaper\n\nThe investor in me was now open to Bitcoin, but the software engineer remained unconvinced. I've always preferred primary sources, choosing to read the study an article references rather than a summary of the study. So in Bitcoin, I knew the best place to start was the [Whitepaper](https://bitcoin.org/bitcoin.pdf), which was no easy read.\n\n### Source 4: Bitcoin News Podcasts\n\nI started listening to Bitcoin podcasts like Coindesk's [The Breakdown](https://www.coindesk.com/podcasts/the-breakdown-with-nlw/) with [NLW](https://twitter.com/nlw?s=21&t=UqaOHHWDAD1p4R7ytXtxxQ) talking about Bitcoin, Macro, and the Power Shifts reshaping our world. \n\n### Source 5: The Bitcoin Standard\n\nThat really got me thinking bigger, and I finally read the book that would ultimately explain money and Bitcoin so clearly, [The Bitcoin Standard](https://www.amazon.com/Bitcoin-Standard-Decentralized-Alternative-Central/dp/1119473861).\n\n### Source 6: Cryptocurrency Coursework\n\nIt was at this point I came back to my (now multiple) friends who I derided earlier to ask for help! My concerns about the Mt Gox hack and leaving my Bitcoin on an exchange still weighed heavily on me, and they recommended I get the cold storage hardware wallet they had, a Ledger. While not Bitcoin Only, the [Ledger Academy](https://www.ledger.com/academy) taught me what a seed phrase is and how to safely take self custody of my Bitcoin to which I'm forever grateful! Ironically enough, it was Ledger Academy's endless articles about staking every altcoin you can think of that screamed circular logic scam, and reassured me Bitcoin isn't "crypto." I'm proud to say I've been Bitcoin only since Day 1! While I had yet to buy Bitcoin still in my journey, I now had a ledger so I'd be ready for cold storage the very first time I stacked sats.\n\n### Source 7: Technical Bitcoin Books and Videos\n\nFeeling more confident on the tech side, I tackled Andreas Antonopoulos' [Mastering Bitcoin](https://github.com/bitcoinbook/bitcoinbook) to read how Bitcoin actually worked. I started watching his videos on YouTube, and was blown away his lecture that Bitcoin consensus is achieved by [Rules without Rulers](https://youtu.be/2tqo7PX5Pyc) and how he "doesn't believe in Santa Claus." \n\nAgain, I revisited the Bitcoin Whitepaper and could now understand it with my further background information.\n\n### Final Source 8: Bitcoin Culture Articles\n\nI listened to[ Guy Swann's](https://twitter.com/theguyswann?s=21&t=xKc25biqqEWy-5GdEKobJQ) [Bitcoin Audible](https://bitcoinaudible.com/) reading of [Croesus](https://twitter.com/croesus_btc?s=21&t=XStFw-c-35w7iWgW8Ksa9Q)' article published in [Citadel21](https://www.citadel21.com/), [Why the Yuppie Elite Dismiss Bitcoin](https://www.citadel21.com/why-the-yuppie-elite-dismiss-bitcoin). Jesse Meyers gave the high signal meow I needed out of the chaos I was battling internally. Was I the yuppie elite? Could I be wrong about Bitcoin?:\n\n> "*For the business and financial elite, who have honed their heuristic abilities for filtering out the deluge of **noise** they sift through on a daily basis in order to be effective in their professions, Bitcoin's red flags are a non-starter.... A typical member of the **yuppie elite** flags Bitcoin as garbage to be ignored upon their first investigation of its merits, and because of the groupthink of yuppies only paying attention to what other yuppies are interested in, that's where Bitcoin remains.... Of course, this will all change as Bitcoin's mechanics continue to play out, making **Number go Up**. In time, everyone will have to face the painful realization that their reasons for writing off Bitcoin were **wrong**."*\n\nWhile this culmination of sources (none of them Twitter/Reddit or prompting from my family or friends) led me down the Bitcoin rabbit hole, it was this cultural opinion piece that finally led me to pull the trigger. I purchased my first satoshis in April 2021 at the low low price of $62,000 USD/BTC, and I've been buying the dip ever since, all the way down to $16,000 USD/BTC in November 2022.\n\nIt bears repeating: I came for the number go up technology, but I stayed for the once-in-a-civilization monetary revolution!\n\nAfter making my first purchase, sending it to cold storage, and having some skin in the game, even if just a little, my appetite for Bitcoin knowledge became voracious; reading everything I could about Bitcoin! Eventually, I felt like I was out of things to read, so then I thought, "Well isn't Bitcoin open source? Why don't I just read the C++ code for myself!" So I read the [Bitcoin Core Github](https://github.com/bitcoin/bitcoin), [Bitcoin stack exchange](https://bitcoin.stackexchange.com/questions/38994/will-there-be-21-million-bitcoins-eventually) posts from [Peter Wuille](https://twitter.com/pwuille?s=21&t=xKc25biqqEWy-5GdEKobJQ), and [Peter Todd's](https://twitter.com/peterktodd?s=21&t=xKc25biqqEWy-5GdEKobJQ) [blog posts](https://petertodd.org/2016/segwit-consensus-critical-code-review).\n\nAs a software engineer, I was so enthralled reading the actual code that I started driving my wife insane with my ramblings about Bitcoin! So I did what any respectable husband would do, and channeled my Bitcoin energy into publishing a book about our dog, Sheila, running around the Australian Outback. But not just any dog, [*The Bitcoin Dog: Following the Scent to the Bitcoin C++ Source Code*](https://www.amazon.com/Bitcoin-Dog-Following-Scent-Source/dp/B09RG47RTQ)! And of course as a good global Bitcoin citizen, I spun up a [Bitcoin full node](https://howchoo.com/bitcoin/run-bitcoin-full-node-raspberry-pi) to help write the book and support our decentralized peer to peer network!\n\nSince then, I haven't stopped writing! 280 characters a tweet on Twitter or Nostr, and now contributing to ~BooksAndArticles on Stacker News! \n\nWhile I enjoy giving plebs a platform on my Bitcoin podcast, "[It's So Early!](https://youtube.com/@realbitcoindog)", and highlighting fellow Bitcoiners in my [newsletter](https://realbitcoindog.com/), my goal is to do my part to further Hyperbitcoinization. I'm grateful that it's not all on my shoulders (even Satoshi walked away in 2011 and Bitcoin is thriving!). Still, reflecting on My Bitcoin Story, the following are the Bitcoin sources I could provide to turn no-coiners into Bitcoiners:\n\n- Report factual financial news (no clickbait!)\n- Report factual Bitcoin news (Bitcoin only!)\n- ✅ Publish a [book](https://www.amazon.com/Bitcoin-Dog-Following-Scent-Source/dp/B09RG47RTQ) to explain Bitcoin\n- ✅ Publish technical [bitcoin](https://bitcoinmagazine.com/technical/testing-your-bitcoin-custody-setup) & [lightning](https://satoshisjournal.com/payasyouenjoy-architect-lightning-powered-book-monetization-technical-breakdown/) guides\n- ✅ Publish articles to [drive home the culture](https://satoshisjournal.com/daddy-wheres-my-piggy-bank/)\n\nRather than start reporting the news, I've started writing a fun action adventure young adult Bitcoin novel [*Bitcoin Girl Save the World*](https://www.amazon.com/Bitcoin-Girl-Save-World-Dog/dp/B0BS8XB72K/?&_encoding=UTF8&tag=realbitcoindo-20&linkCode=ur2&linkId=e352f33f7e64f43daf2b40053ca04dee&camp=1789&creative=9325). Who knows! If it turns into a worldwide cultural phenomenon, maybe it will take less than eight Bitcoin sources to turn the yuppie elite into Bitcoiners! It's a long shot, but then again, so was Bitcoin.\n\nThis article was originally published in Satoshi's Journal on December 30, 2022 https://satoshisjournal.com/my-bitcoin-story-will-schoellkopf/\n\nWill Schoellkopf is author of [*Bitcoin Girl Save the World*](https://www.amazon.com/Bitcoin-Girl-Save-World-Dog/dp/B0BS8XB72K/?&_encoding=UTF8&tag=realbitcoindo-20&linkCode=ur2&linkId=e352f33f7e64f43daf2b40053ca04dee&camp=1789&creative=9325), AND [*The Bitcoin Dog: Following The Scent To The Bitcoin C++ Source Code*](https://www.amazon.com/Bitcoin-Dog-Following-Scent-Source-ebook/dp/B09RJ22WTQ/?&_encoding=UTF8&tag=realbitcoindo-20&linkCode=ur2&linkId=e663f4fa1aeba572fa0d3c99bf95ffdf&camp=1789&creative=9325), and host of the Bitcoin podcast [*It's So Early!*](https://www.youtube.com/@realbitcoindog) Will publishes a weekly [newsletter](https://www.realbitcoindog.com/) featuring his favorite Bitcoin Tweets of the week! He is anthologized in [*21 Futures: Tales from the Timechain*](https://bitcoinbook.shop/products/21-futures-tales-from-the-timechain?ref=bitcoindog), published in print at [*Bitcoin Magazine*](https://bitcoinmagazine.com/authors/schoellkopf), [*Citadel21*](https://www.citadel21.com/), [*Stackchain Magazine*](https://proofofink.com/product/stackchain-magazine-stack-3-halving-edition/), and online at [*Satoshi's Journal*](https://satoshisjournal.com/user/realbitcoindog/). Follow him on Twitter [@realBitcoinDog](https://twitter.com/realBitcoinDog/), or email will [@] realbitcoindog [.] com \N 19888 \N 434465 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 20.8511495982125 0 \N \N f 606629357 \N 4 232672143 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 02:33:05.391 f \N \N \N 0 0 0 0 3 0 0 426400 2025-03-05 15:37:38.766 2025-03-29 22:39:48.91 "Size Limits are Now the Only Reason that Bitcoin doesn't have Covenants" Of course size limits would not be a problem if we had op_checktemplateverify. So why are size limits a problem for covenants on Bitcoin without a soft fork?\n\n# Lamport Signatures\n\nAll of this on the heels of the development of Lamport Signatures being done in Bitcoin script which (among many other things) allows for spends of P2SH and P2WSH outputs to be quantum resistant\n\nThe Bitcoin OpTech newsletter about Lamport Signatures can be found here: https://bitcoinops.org/en/newsletters/2024/05/08/\n\n# Covenants without a Soft Fork\n\nAndrew Poelstra (a director, at Blockstream Research) commented in the mailing list:\n\n>Another reason this is useful is that if you have a Lamport signature on\nthe stack which is composed of SIZE values, all of which are small\nenough to be manipulated with the numeric script opcodes, then you can\ndo covenants in Script.\n\n>(Sadly(?), I think none of this works in the context of the 201-opcode\nlimit...and absent BitVM challenge-response tricks it's unlikely you can\ndo much in the context of the 4MWu block size limit..), but IMO it's a\npretty big deal that size limits are now the only reason that Bitcoin\ndoesn't have covenants.) \n\nsource: https://mailing-list.bitcoindevs.xyz/bitcoindev/ZjD-dMMGxoGNgzIg@camus/\n\nBut then, there you have it. BitVM might be the final piece of the puzzle\n\nI will remind you why I care about covenants, CTV, LNHance etc. Its because of the possibility of LNSymmetry/Eltoo (in spite of the trade off of removing the anti-deterrence mechanism of justice transactions) and for Timeout Trees, specifically timout trees created by a multi-party channel "Pleb LSP"\n\nAlso, you can't do LNSymmetry with covenants alone, its just when you add op_checksigfromstack (CSFS) that you can. \N 1426 \N 426400 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 2.64460674806305 0 \N \N f 152794537 \N 2 172163075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406115 2025-02-17 05:04:49.37 2025-03-29 22:39:48.91 The Basic Laws of Human stupidity - part 5 > Previously:\n> - [Introduction and Chapter 1](https://stacker.news/items/678475)\n> - [Chapter 2](https://stacker.news/items/679184)\n> - [Chapter 3](https://stacker.news/items/680471)\n> - [Chapter 4](https://stacker.news/items/681686)\n\n![](https://m.stacker.news/51611)\n\n## Chapter 5\n### Frequency Distribution\n\nMost people do not act consistently. Under certain circumstances a given person acts intelligently and under different circumstances the same person will act helplessly. The only important exception to the rule is represented by the stupid people who normally show a strong proclivity toward perfect consistency in all field of human endeavors.\n\nFrom all that proceeds, it does not follow that we can chart on the basic graph only stupid individuals. We can calculate for each person his weighted average position in the plane of figure 1\n\nquite independently from his degree of inconsistency. A helpless person may occasionally behave intelligently and on occasion he may perform a bandit's action. But since the person in question is fundamentally helpless most of his action will have the characteristics of helplessness. Thus the overall weighted average position of all the actions of such person will place him in the H quadrant of the basic graph.\n\nThe fact that it is possible to place on the graph individuals instead of their actions allows some digression about the frequency of the bandit and stupid types.\n\nThe perfect bandit is one who, with his actions, causes to other individuals losses equal to his gains.\n\nThe crudest type of banditry is theft. A person who robs you of 100 pounds without causing you an extra loss or harm is a perfect bandit: you lose 100\n\npounds, he gains 100 pounds. ln the basic graph the perfect bandits would appear on a 45 degree diagonal line that divides the area B into two perfectly symmetrical sub-areas (line OM of figure 2).\n\n![](https://m.stacker.news/51612)\n\nHowever the «perfect» bandits are relatively few. The line OM divided the area B into two subareas, B, and B8, and by far the largest majority of the bandits fall somewhere in one of these two sub-areas.\n\nThe bandits who fall in area B 1 are those individuals whose actions yield to them profits which are larger than the losses they cause to other people.\n\nAll bandits who are entitled to a position in area B 1 are bandits with overtones of intelligence and as they get doser to the right side of the X axis they share more and more the characteristics of the intelligent person. Unfortunately the individuals entitled to a position in the B, area are not very numerous. Most bandits actually fall in area B 8. \n\nThe individuals who fall in this area are those whose actions yield to them gains inferior to the losses inflicted to other people. If someone kills you in order to rob from you fifty pounds or if he murders you in order to spend a weekend with your wife at Monte Carlo, we can be sure that he is not a perfect bandit. Even by using his values to measure his gains (but still using your values to measure your losses) he falls in the B8 area very close to the border of sheer stupidity. Generals who cause vast destructions and innumerable casualties in return for a promotion or a medal fall in the same area.\n\nThe frequency distribution of the stupid people is totally different from that of the bandit. While bandits are mostly scattered over an area stupid people are heavily concentrated along one line, specifically on the Y axis below point O. The reason for this is that by far the majority of stupid people are basically and unwaveringly stupid - in other words they perseveringly insist in causing harm and losses to other people without deriving any gain, whether positive or negative. There are however people who by their improbable actions not only cause damages to other people but in addition hurt themselves. They are a sort of super-stupid who, in our system of accounting, will appear somewhere in the are a S to the left of the Y axis.\n\n### RECAP of Basic Law of Human stupidity:\n1. Always and inevitably everyone underestimates the number of stupid individuals in circulation.\n2. The probability that a certain person be stupid is independent of any other characteristic of that person.\n3. A stupid person is a person who causes losses to another person or to a group of persons while himself deriving no gain and even possibly incurring losses.\n\n*Stay tuned... more chapters and laws to come.*\n\n \N 21014 \N 406115 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 6.32860824634939 0 \N \N f 929849141 \N 6 281079 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448404 2025-03-22 15:31:44.591 2025-03-29 22:39:52.938 \N Something is broken.\n\n@grayruby referred me here for survivor pool degenerate gambling with him and @Coinsreporter and @Undisciplined.\n\nBut now my referral @denlillaapan is actually making ~econ great again and bailing out @jeff to make his territory profitable!\n\nWhats the next level of this pyramid scheme? Is @denlillaapan referral @Shugard the next to take this place by storm? https://stacker.news/items/750764/r/realBitcoinDog https://example.com/ 946 448387 448202.448276.448315.448320.448352.448387.448404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1004652827857 0 \N \N f 211463115 \N 1 178633202 0 f f \N \N \N \N 448202 \N 0 0 \N \N f \N 2025-03-29 08:53:43.757 f \N \N \N 0 0 0 0 1 0 0 335690 2024-12-19 22:38:47.193 2025-03-29 22:39:52.938 \N I like both occasionally but I'm not a huge sports fan in general. I have a problem. I can't watch anything that doesn't directly translate into something that builds me up or helps my project move forward. I feel I'm "wasting" my time. I know it's silly, because everyone needs to relax and socialise. I have to work on this. Maybe we can grab a drink at a sports bar together. 🍻 https://example.com/ 21734 335591 335484.335562.335591.335690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.3739732062778 0 \N \N f 1384587975 \N 13 248558742 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 395918 2025-02-08 22:06:50.603 2025-03-29 22:39:52.938 \N wind took mine yesterday, but got another one after tipping some posts. Seems like you can get another by tipping certain amount per day, but still experimenting with exactly how you keep from losing your hat. https://example.com/ 989 395906 395906.395918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.08320443381554 0 \N \N f 67403368 \N 1 1059895 0 f f \N \N \N \N 395906 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448707 2025-03-22 19:52:53.023 2025-03-29 22:39:52.939 \N I have suffered from clinical depression most of my life. For those who have to deal with this mental disorder or may be interested in the subject, I recommend this book:\n\n_The Upward Spiral_ by Alex Korb PhD. \n\nhttps://www.audible.com/pd/B00T3J3M54?source_code=ASSOR150021921000R https://example.com/ 19488 448686 447761.448319.448686.448707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0804348454371 0 \N \N f 359247401 \N 3 202283862 0 f f \N \N \N \N 447761 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433483 2025-03-11 06:28:09.342 2025-03-29 22:39:52.939 \N > I'll be giving obsidian a stab \n\n[Logseq](https://logseq.com/) is an opensource alternative which takes privacy and data control seriously. https://example.com/ 2710 433476 433476.433483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.07829313313101 0 \N \N f 301118630 \N 2 10493229 0 f f \N \N \N \N 433476 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434352 2025-03-11 20:09:23.537 2025-03-29 22:39:48.91 Bitfinex's Ardoino expects 'quantum leap' in Bitcoin scaling solution adoption \N https://www.theblock.co/post/258703/bitfinex-ardoino-quantum-leap-bitcoin-scaling-adoption-lightning 20826 \N 434352 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.8215934982333 0 \N \N f 315907557 \N 2 106528735 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:28:00.417 f \N \N \N 0 0 0 0 1 0 0 443489 2025-03-19 11:39:57.082 2025-03-29 22:39:48.91 My 1st successful (non-family) Orange Pilling Had my first successful orange pilling today (outside of my immediately family). Actually it took about six months, but he acquired his first sats today, and I feel good.\n\nI wasn't even trying to push it on him. I think this was key. \n\nHe saw me post about Bitcoin a couple times on Facebook. I play innocent on there as to not frighten the normies. One time I think I posted something like "Should I buy Bitcoin?" Another time I shared an article about how Henry Ford predicted Bitcoin in the 1920s (energy as money, etc). \n\nThen one day while at a baseball game he says to me, "So talk to me about Bitcoin."\n\nBeing asked to talk about Bitcoin is a dream come true for me. But I didn't want to blow my wad. He's a graphic designer and has a good understanding of tech, so I thought if I played it cool he'd have a real shot at seeing the light.\n\nI said it's simply a way for two people to exchange value between each other directly, without having to go through anyone else. And also, as adoption grows I believe the world would value it much more than it does today. \n\nHis only real question was, "But what gives it value?"\n\nTo that I say, "What gives the dollar value? Most people have no idea how money works. But I'll send you a few good books I've been reading."\n\nAt some point I say, "Hey why don't I send you some so you can see how it works and you can just watch it for a while?"\n\nThen I had him download BlueWallet and I sent him $20 worth. It literally took 5 minutes.\n\nThe next day I texted him a few educational links (mostly youtube vids cause people don't read anymore)...\n\n- Bitcoin: A Peer-to-Peer Electronic Cash System (original whitepaper by Satoshi Nakamoto)\nhttps://youtu.be/1yYrYCE4i1c\n\n- The Bitcoin Standard (book by Saifedean Ammous)\nhttps://youtu.be/MRczbPu8SQM\n\n- Bitcoin is Time (article by Gigi)\nhttps://dergigi.com/2021/01/14/bitcoin-is-time/\n\n- Bitcoin Audible (a podcast series; readings by Guy Swann)\nhttps://bitcoinaudible.com\n\n- Trader University YouTube channel (for insights into bitcoin and macroeconomic current events):\nhttps://youtube.com/playlist?list=PL7w04GVKPitHIoHz9Vr0B09k7I3ljTsur\n\nAnd today, out of no where, wouldn't you know he bought his first $50 worth ...on Coinbase. 🫤\n\nNow to show him how to take custody, and use a P2P exchange. Baby steps.\n\nAnyway, I wanted to share. I feel like I helped someone cross the street.\n\n \N 782 \N 443489 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 21.5627719395903 0 \N \N f 695634902 \N 4 174612213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:30:14.459 f \N \N \N 0 0 0 0 2 0 0 407954 2025-02-18 13:47:52.065 2025-03-29 22:39:52.94 \N A "keysend" is a special kind of payment in lightning that lets you send a payment without an invoice.\n\nNormally, a receiver must generate a bolt11 invoice prior to receiving a payment.\n\nKeysend payments allow senders to "spontaneously" pay over lightning (to a receiver's identity pubkey) without an invoice.\n\nHere's a more detailed explanation... courtesy of [chat.bitcoinsearch.xzy](https://chat.bitcoinsearch.xyz/?author=holocat&question=What%27s%2520a%2520keysend%2520payment%2520in%2520lightning%253F):\n\n\n> A keysend payment in the Lightning Network is a type of transaction that allows for spontaneous payments without needing an invoice from the recipient. In traditional HTLC (Hash Time-Locked Contract) transactions, the receiver generates an invoice with a payment hash, and upon payment by the sender, the receiver reveals a secret preimage to claim the funds. With keysend, this process is inverted—the sender generates the preimage and includes it within the onion payload sent to the receiver. The receiver then uses this preimage, which must match the payment hash of the HTLC, to settle the payment.\n\n> Keysend payments use a custom record type (5482373484) to encode a 32-byte preimage value. This means that payments can be made directly to a recipient identified by their public key without the need for an invoice. This feature enables new use cases such as tipping or donations where obtaining an invoice might not be practical or possible.\n\n> However, there are drawbacks to keysend payments. For example, the payee cannot specify their preferred minimum CLTV expiry, which may lead to security issues or payment failures. Moreover, since no invoice is issued, there is a loss of proof-of-payment capability, which is typically provided by the invoice signature and preimage in regular Lightning payments.\n\n> Furthermore, keysend is expected to be deprecated in favor of newer spontaneous payment solutions like Offers or AMP (Atomic Multi-Path Payments) because these provide better security features and user experience.\n\n> In summary, keysend enables spontaneous, invoice-less payments on the Lightning Network, but it comes with certain limitations and is likely to be replaced by more advanced protocols in the future.\n\n https://example.com/ 17237 407944 406399.407380.407469.407944.407954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2366319104076 0 \N \N f 870528302 \N 6 88527636 0 f f \N \N \N \N 406399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410653 2025-02-20 15:31:11.55 2025-03-29 22:39:52.94 \N > yes! at the same time I would focus on writing more fun stuff 😎\n\nI predict there will be another blog post from me ~~today~~ this week... https://example.com/ 1761 410409 410409.410653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.26669424541002 0 \N \N f 227276546 \N 1 243587753 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437337 2025-03-14 12:54:09.535 2025-03-29 22:39:52.941 \N Gartner Hype Cycle places generative AI on the ‘Peak of Inflated Expectations’\n\n![IMG_2704.jpeg](https://m.stacker.news/16650) https://example.com/ 13217 437044 437044.437337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.29556640179241 0 \N \N f 451706555 \N 3 235742704 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 432932 2025-03-10 17:26:00.88 2025-03-29 22:39:52.941 \N Thanks for the update. I look forward to testing out non SN wallet options next week. Ultimately, I would prefer to just stick with the SN wallet as it is most convenient but I understand that removing any uncertainty around money transmitter rules is best for SN. I think once best practices are determined it will be an easier transition and should be very easy for new folks. https://example.com/ 20906 432344 432344.432932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2480083443037 0 \N \N f 89283712 \N 2 168610633 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424351 2025-03-04 02:18:55.413 2025-03-29 22:39:52.941 \N Keep stacking sats, we are going to make it. https://example.com/ 11866 423955 423955.424351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.84850214155655 0 \N \N f 164593599 \N 1 30976436 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424282 2025-03-03 23:55:05.787 2025-03-29 22:39:52.942 \N An 8 minute one way interview, recording responses to three questions. Went fine, now that makes 3 jobs I'm waiting to hear back from. I'm thinking I'm most likely to get this last one, but hopefully I hear back from the other 2. https://example.com/ 12774 424266 423928.424260.424266.424282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6597779347336 0 \N \N f 1058908797 \N 6 57193972 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402921 2025-02-14 09:06:54.172 2025-03-29 22:39:52.942 \N In that case, they're literally paying for the attention. And given it goes to the community pool, there's some interesting economics at play here. Would people tolerate trolls if they're getting paid for it? I'm actually curious how much trolls are willing to pay and at what limits they stop. https://example.com/ 11621 402890 402582.402890.402921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.822536311272 0 \N \N f 77040890 \N 2 49720404 0 f f \N \N \N \N 402582 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448884 2025-03-23 00:32:52.363 2025-03-29 22:39:52.943 \N The cause of Inflation is always manipulation of the money supply. Supply chains etc react to that, but the cause is 100% manipulation of the money supply every time.\nWhat the Fed is doing now is killing market demand and creating joblessness to bring down the inflation caused by the government. https://example.com/ 981 448879 448879.448884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7705297590015 0 \N \N f 52866087 \N 1 161757169 0 f f \N \N \N \N 448879 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437316 2025-03-14 12:43:02.431 2025-03-29 22:39:52.943 \N I've been thinking too about how multi-party channels should have a miner fee fund that some of the routing fees go to.\n\nSo k00b, I haven't posted in a while because I am extremely busy with studying to advance my career and other money related moves to put myself in a financially strategic position.\n\nWhen at least the majority of that dust has settled I am trying to read through the various non-soft fork related multi-party channels and I want to write an article that gives the TLDR on the trade-offs of each of them compared to the proposals that do require a softfork. Then if I see more excitement for one of them over the others, maybe I'll attempt to write an implementation spec for it (and then invite the real engineers to shred everything I've written lol)\n\nJust an update about where my head is at and things. https://example.com/ 13097 437312 436752.437184.437271.437292.437293.437308.437312.437316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3877595422114 0 \N \N f 2344287854 \N 18 173013090 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435971 2025-03-13 07:22:51.447 2025-03-29 22:39:52.943 \N This is a very good point. Hadn't thought about it like that. The boost is the incentive for the rest of us :) https://example.com/ 4259 435967 435944.435967.435971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.85019969582731 0 \N \N f 467405524 \N 2 204568059 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 06:18:28.909 f \N \N \N 0 0 0 0 2 0 0 436142 2025-03-13 10:51:13.991 2025-03-29 22:39:52.943 \N Let's see...\nHang out in the saloon for a while or...\nScoop cat shit.\nHmm https://example.com/ 959 435746 435746.436142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2100249456944 0 \N \N f 118827109 \N 1 232134849 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 2025-03-20 07:12:23.404 f \N \N \N 0 0 0 0 1 0 0 401726 2025-02-13 10:59:53.611 2025-03-29 22:39:52.943 \N Looks like we're at an hour so thank you everyone for the questions! It was fun. Stay humble and stack sats.\n\nThe future on LN is bright and we've go so much to build. If you ever want to chat DMs are open and be on the look out for when we start hiring next if interested. Have a great day! God bless https://example.com/ 1310 401671 401611.401671.401726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0063705170168 0 \N \N f 579361891 \N 4 120669577 0 f f \N \N \N \N 401611 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430729 2025-03-09 12:05:45.799 2025-03-29 22:39:52.943 \N [Bitcoin Metrics](https://play.google.com/store/apps/details?id=org.bitanon.bitcointicker) - Bitcoin ONLY market analytics and on-chain metrics Android app with widgets.\n\nSo far have just built out the UI and basic price and 24hr-price-change queries. What are the next metrics that you'd like to see added?\n![Bitcoin Metrics widget screenshot](https://play-lh.googleusercontent.com/81qzMvxt4-9yijcvskNY3xsUzg8xPnAQg3xIlgiUDIhKT7tiTJwdZTcMJbmSF7M2j8Nw=w2560-h1440) https://example.com/ 1425 430726 430726.430729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8858895441898 0 \N \N f 936963155 \N 7 23515351 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423512 2025-03-03 12:34:26.658 2025-03-29 22:39:48.91 Stacker News Live #123: My Opening Remarks with PlebPoet \N https://www.youtube.com/watch?v=4X229oDbLrw 20479 \N 423512 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 8.18596959088218 0 \N \N f 244949750 \N 2 96483186 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435404 2025-03-12 16:47:48.819 2025-03-29 22:39:52.933 \N Longer phone charging cable. Simple yet life changing. https://example.com/ 1823 435355 435314.435355.435404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9839629815723 0 \N \N f 287632082 \N 2 51916315 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 2025-03-20 00:21:39.319 f \N \N \N 0 0 0 0 1 0 0 407983 2025-02-18 14:02:54.389 2025-03-29 22:39:52.933 \N Link to the potential node which was shared by another SN user a couple days ago\n\nhttps://stacker.news/items/194339 https://example.com/ 9476 407974 407903.407963.407974.407983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8016007560573 0 \N \N f 663814419 \N 4 81486762 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407453 2025-02-18 02:44:12.464 2025-03-29 22:39:52.933 \N I really like the swap service of https://deezy.io/ which is https://swap.deezy.io/.\n\nI still remember when I started with Lightning that everything was overwhelming:\n"How do I get sats into lightning? How do I get sats out of lightning? How do I get inbound liquidity? Which channels to open?"\n\nBut https://deezy.io/ seems to have answers to all of that.\n\nAnd at some point, I realized that Phoenix has loop-out integrated into the wallet. But the fees on https://swap.deezy.io/ are sometimes better.\n\n(I can only speak for the swap service though since that's the only thing I used so far from deezy) https://example.com/ 12779 406903 406903.407453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5003791096402 0 \N \N f 246586074 \N 1 22095542 0 f f \N \N \N \N 406903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401513 2025-02-13 05:17:47.767 2025-03-29 22:39:52.933 \N Not sure why but I enjoy reading about prior bubbles. Here's a decent write-up of the dotcom bubble: https://ideas.ted.com/an-eye-opening-look-at-the-dot-com-bubble-of-2000-and-how-it-shapes-our-lives-today/\n> _It became a joke that the dot-coms that started out promising a grand vision of a more efficient way of doing business were — almost to a company — unprofitable_.\n\nFeels to me like we're about to embark on a new bubble of epic proportions. At least that's what my gut tells me. It's surely the ultimate fate of AI is it not, for irrational exuberance to drive up the value of stocks, before it gets renamed to something not "artificial"? The internet was the Information Superhighway & cyberspace before it's name stuck. We have yet to see something similar with A.I. There is still scepticism about its impact and that to me shows the bubble has really yet to get going. https://example.com/ 1122 401500 401458.401493.401500.401513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0269891729232 0 \N \N f 214972085 \N 2 183809219 0 f f \N \N \N \N 401458 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434728 2025-03-12 07:37:15.364 2025-03-29 22:39:52.943 \N I discovered yesterday that I own an "uncommon" sat, which means I could sell that single sat for $200.\n\nI don't own a Ledger to secure the Bitcoin and will never use a browser wallet extension without HWW, so as much as I'd like a free $200 to buy more Bitcoin with, it's not worth the risk to liberate that single sat out of the UTXO it's in. \n\nI did, however, learn more about Ordinals beyond thinking it's all just jpegs, and I do like the collector element to it, but I also think it's flash-in-the-pan stuff, so I'm neutral mostly. https://example.com/ 14037 433788 433555.433788.434728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.23113992190647 0 \N \N f 59929492 \N 1 2120672 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 04:18:13.438 f \N \N \N 0 0 0 0 1 0 0 400201 2025-02-11 23:15:25.112 2025-03-29 22:39:52.933 \N [![darth-system-justice.jpg](https://i.postimg.cc/1XTq5npw/darth-system-justice.jpg)](https://postimg.cc/JHNnphYz) https://example.com/ 5597 394251 394203.394251.400201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2544563070312 0 \N \N f 568244581 \N 6 57228208 0 f f \N \N \N \N 394203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404192 2025-02-15 16:15:38.842 2025-03-29 22:39:52.933 \N What is the planning process like for big events like TABConf? https://example.com/ 12744 404189 404042.404150.404189.404192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7645650632066 0 \N \N f 246253674 \N 3 8744702 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435277 2025-03-12 15:15:36.03 2025-03-29 22:39:52.933 \N As a kid, I got a floppy disk drive for my computer along with some games for Christmas, and read about how you could format a disk as "high density" to have more room. Naturally, I thought that this would be a great way to create extra room on those game disks for save files, and somehow, I didn't understand why these games now didn't work. https://example.com/ 21166 435275 435217.435275.435277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1242030302869 0 \N \N f 1767194543 \N 17 249038304 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 09:03:34.681 f \N \N \N 0 0 0 0 1 0 0 437593 2025-03-14 16:43:08.494 2025-03-29 22:39:52.933 \N ![i](https://i.postimg.cc/Mpd53CN0/understand.jpg) https://example.com/ 19094 437574 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553.437558.437574.437593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.90256539332408 0 \N \N f 185341248 \N 1 137300301 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447287 2025-03-21 18:46:27.927 2025-03-29 22:39:52.933 \N 1. **Quantum Fluctuations**:\n - In the realm of quantum field theory, the concept of a vacuum is redefined. A vacuum state is subject to the Heisenberg Uncertainty Principle, which allows for the temporary creation of particle-antiparticle pairs, known as virtual particles.\n - The hypothesis posits that during the Planck epoch (the earliest period of the universe, at the Planck scale), a quantum fluctuation could have initiated the Big Bang. This fluctuation, within an inflationary framework, could have caused a rapid expansion, magnifying quantum irregularities into the large-scale structures observed in the universe today.\n\n2. **No Time Before the Big Bang**:\n - In the context of General Relativity, time is a dimension intertwined with the three spatial dimensions. The singularity at the Big Bang represents a breakdown of classical notions of spacetime.\n - Theoretical models like the Hartle-Hawking state propose that time, as a familiar concept, didn’t exist before the Big Bang but emerged along with the universe. In these models, the universe doesn't have a singular beginning but is described as a closed surface without boundary, analogous to the surface of a sphere.\n\n3. **Multiverse Theories**:\n - In inflationary cosmology, particularly eternal inflation, our universe could be one of many within an ever-inflating multiverse. Regions where inflation stops can lead to "bubble universes" with distinct physical properties.\n - String theory’s landscape suggests a vast number of possible vacuum states, each corresponding to different fundamental constants and laws of physics, potentially realizing the multiverse concept.\n\n4. **Cyclic Models**:\n - Modern cyclic models, like the ekpyrotic universe, propose a scenario where the Big Bang is the result of the collision of two three-dimensional worlds (branes) in a higher-dimensional space.\n - These models attempt to address issues like the homogeneity and flatness of the universe, and the generation of gravitational waves, without requiring a singular beginning.\n\n5. **String Theory and Higher Dimensions**:\n - String theory replaces point-like particles with one-dimensional "strings". These strings' vibrations correspond to different particles. The theory requires extra spatial dimensions for consistency: ten for superstrings and eleven for M-theory.\n - In brane cosmology, a subset of string theory, our universe could be a 3-brane embedded in a higher-dimensional bulk. Interactions within this bulk, such as brane collisions, could manifest as cosmological events in our 3-dimensional universe.\n\n6. **Unknown Physics**:\n - Concepts like loop quantum gravity aim to merge quantum mechanics and general relativity, potentially offering insights into the pre-Big Bang universe. This theory posits that spacetime itself is quantized, with implications for the structure of the universe at the Planck scale. https://example.com/ 19966 447267 447251.447267.447287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.0128023351031 0 \N \N f 254272524 \N 2 187815046 0 f f \N \N \N \N 447251 \N 0 0 \N \N f \N 2025-03-29 09:20:23.772 f \N \N \N 0 0 0 0 1 0 0 422172 2025-03-02 09:59:37.571 2025-03-29 22:39:52.934 \N Great piece! You hit on a bunch of cool ideas.\n\nOne thought I had that pulls a few of yours together, is that SN works for a bunch of interconnected reasons. One of them is what experimental economists call "warm glow": it feels nice to support someone who wrote something we liked.\n\nThe more interesting connection, to me, is that there might be a disparity between how we value sats going out vs sats coming in. Many of us are spend and replacers, so sats going out may be valued at roughly the current exchange rate. As Hodlers, however, we may be valuing the sats coming in at whatever purchasing power we imagine they'll attain.\n\nAs to the other micropayment ideas, I'm sure we'll see many different business models play around with different ways to implement and pitch micropayments. Some of them will improve the consumer experience and most won't. There will probably be micropayments in surprising places, as well as a lack of them in seemingly obvious ones. https://example.com/ 12261 422161 421915.422008.422161.422172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.78432099132602 0 \N \N f 166069011 \N 1 53098127 0 f f \N \N \N \N 421915 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442835 2025-03-18 20:57:17.03 2025-03-29 22:39:52.934 \N Error accessing https://stacker.news/items/561800 cc:@k00b @ek\n\n\nThe Bitcoin And . . . Podcast will go LIVE! at 9:30 am Pacific Daylight Time.\nZapStream: https://zap.stream/p/npub1vwymuey3u7mf860ndrkw3r7dz30s0srg6tqmhtjzg7umtm6rn5eq2qzugd\n\n```\nTypeError: Failed to construct 'URL': Invalid URL\n at parseEmbedUrl (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:55:311735)\n at ItemEmbed (https://a.stacker.news/_next/static/chunks/7492-91665ddb08569174.js:1:7319)\n at Xh (https://a.stacker.news/_next/static/chunks/framework-b78bc773b89d3272.js:9:60992)\n at x (https://a.stacker.news/_next/static/chunks/framework-b78bc773b89d3272.js:9:119447)\n at Vk (https://a.stacker.news/_next/static/chunks/framework-b78bc773b89d3272.js:9:99132)\n at https://a.stacker.news/_next/static/chunks/framework-b78bc773b89d3272.js:9:98999\n at Jk (https://a.stacker.news/_next/static/chunks/framework-b78bc773b89d3272.js:9:99006)\n at Ok (https://a.stacker.news/_next/static/chunks/framework-b78bc773b89d3272.js:9:95762)\n at Hk (https://a.stacker.news/_next/static/chunks/framework-b78bc773b89d3272.js:9:94318)\n at J (https://a.stacker.news/_next/static/chunks/framework-b78bc773b89d3272.js:33:1364)\n\nComponent stack:\n at ItemEmbed (https://a.stacker.news/_next/static/chunks/7492-91665ddb08569174.js:1:6608)\n at article\n at div\n at Item (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:259046)\n at TopLevelItem (https://a.stacker.news/_next/static/chunks/7492-91665ddb08569174.js:1:8189)\n at div\n at RootProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:371103)\n at ItemFull (https://a.stacker.news/_next/static/chunks/7492-91665ddb08569174.js:1:10071)\n at main\n at https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:38:99079\n at Layout (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:320628)\n at Item (https://a.stacker.news/_next/static/chunks/pages/items/%5Bid%5D-12efb387b74a72db.js:1:407)\n at ErrorBoundary (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:32:6969)\n at ChainFeeProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:155646)\n at BlockHeightProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:150547)\n at ShowModalProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:345844)\n at RawWebLNProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:587105)\n at LNCProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:596887)\n at NWCProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:600652)\n at LNbitsProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:589980)\n at WebLNProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:588330)\n at ToastProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:555388)\n at LightningProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:322197)\n at PriceProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:363814)\n at ServiceWorkerProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:378016)\n at WalletLoggerProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:336889)\n at ServiceWorkerLoggerProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:335041)\n at LoggerProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:334842)\n at ClientNotificationProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:157684)\n at HasNewNotesProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:570583)\n at MeProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:13:340003)\n at ApolloProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:32:3503)\n at PlausibleProvider (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:32:4419)\n at ErrorBoundary (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:32:6969)\n at MyApp (https://a.stacker.news/_next/static/chunks/pages/_app-b3bc35b05810a8f5.js:32:8030)\n at PathnameContextProviderAdapter (https://a.stacker.news/_next/static/chunks/main-ae7fbb58e20fc278.js:1:60206)\n at Container (https://a.stacker.news/_next/static/chunks/main-ae7fbb58e20fc278.js:1:8711)\n at AppContainer (https://a.stacker.news/_next/static/chunks/main-ae7fbb58e20fc278.js:1:10291)\n at Root (https://a.stacker.news/_next/static/chunks/main-ae7fbb58e20fc278.js:1:13720)\n``´ https://example.com/ 6688 442704 442704.442835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2581815585287 0 \N \N f 139811438 \N 1 162020163 0 f f \N \N \N \N 442704 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435557 2025-03-12 19:29:54.709 2025-03-29 22:39:52.934 \N ![Heavy Meme](https://imgprxy.stacker.news/_XOJmFlsk1CdQ2ZQbQVwiQOSXIp2XJwDC6X0yR1CLCU/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9IN2Z5ZmJ1LmpwZw)\n![Fraud Meme](https://imgprxy.stacker.news/YZ9aMdKlhqVb2sNhdXk7ByQNO8LvcUSSmFQCu4zRC1w/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9PdnNiOXMwLmpwZw)\n![Trashcan Meme](https://imgprxy.stacker.news/I7Pz6aho9HKPSk7gLIxlZ0YaTvoebZSdJtQ-LXp3r9E/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ3VyLmNvbS9DSjFpMm05LmpwZw) https://example.com/ 1723 435420 435261.435410.435420.435557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9520811750539 0 \N \N f 118730994 \N 1 118061883 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 03:36:45.435 f \N \N \N 0 0 0 0 1 0 0 447212 2025-03-21 17:37:22.403 2025-03-29 22:39:52.934 \N I think he's using the word in reference to ownership, rather than proprietary vs open source software.\n\nTo reword:\n> ...we are left with a network secured by [privately owned] software running on generic computers.\n\nI think this makes more sense in the context of the message, especially when referencing the series of hard forks. https://example.com/ 11716 446964 446964.447212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.49848603496741 0 \N \N f 214569318 \N 2 122245478 0 f f \N \N \N \N 446964 \N 0 0 \N \N f \N 2025-03-28 10:58:28.207 f \N \N \N 0 0 0 0 1 0 0 443781 2025-03-19 14:11:56.307 2025-03-29 22:39:52.934 \N Yeah, anyone who thinks they're immune is instead demonstrating some combo of naivete and willful ignorance. It's interesting to think about how it plays out, personally, on SN. What do you say that you might not otherwise? What don't you say that you otherwise would?\n\nIt's not at all hard to see how it has played out in the larger btc space. Or the larger political space.\n\nBut these are just more emphatic places. It's everywhere, always. https://example.com/ 15196 443295 443295.443781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9245035247281 0 \N \N f 464434384 \N 5 249560778 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 445096 2025-03-20 12:43:20.483 2025-03-29 22:39:48.91 New site: anonsats provides burner Lightning addresses \N https://asats.io 663 \N 445096 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5362720820702 0 \N \N f 520770319 \N 3 173081346 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423321 2025-03-03 08:51:08.713 2025-03-29 22:39:52.934 \N Weird thing for US companies to do on a holiday. https://example.com/ 7979 423314 423314.423321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.632798902107226 0 \N \N f 525372918 \N 4 128473177 0 f f \N \N \N \N 423314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 403927 2025-02-15 11:35:19.418 2025-03-29 22:39:52.934 \N Nope. But I confess that I used to focus on the trending Hot posts because I thought doing so would help me get back my sats’ worth.\n\nNow that I have a bigger bag (and withdraw what I think is my fair share from here), I’m not calculative about “breaking even”. Sometimes I zap new Stackers’ posts or “obscure” posts to give others a lift up. It’s okay - I have enough haha https://example.com/ 21400 403926 403824.403857.403868.403869.403918.403919.403922.403926.403927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6123921240543 0 \N \N f 591949468 \N 4 129633911 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443352 2025-03-19 09:32:26.474 2025-03-29 22:39:52.934 \N What are you trying to do?\n\nCons:\n- it'll cost you money\n- the bitcoin might be flagged if you try sending it back to the CEX\n\nPros:\n- it breaks the transaction log\n- increases the data set which is a boon for all bitcoiners\n\nJudgement:\n- Using a DEX for buying and selling is the best way to go for the opening leg of privacy, and combined with a simple hardware wallet, is sufficient for 99% of people. You avoid any tax implications, avoid KYC problems in both directions, and don't finance centralized participants with bad directional motives. I mix all my coin after DEXing, but my privacy needs or ideological motives might be different than others \n https://example.com/ 12976 442904 442904.443352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2134416071844 0 \N \N f 218425943 \N 2 92034729 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443973 2025-03-19 15:51:18.308 2025-03-29 22:39:52.934 \N I got pre-launch access to the Alby Go the mobile app for Alby Hub so messing around with that and relaying issues or bugs to the development team. Happy to see the development of the app! https://example.com/ 2537 443919 443919.443973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.61680919441683 0 \N \N f 164037169 \N 1 86188058 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404287 2025-02-15 18:34:55.351 2025-03-29 22:39:52.934 \N OK, I've found the following in the Article 3 of a MiCA draft:\n\n> (8) ‘crypto-asset service provider’ means any person whose occupation or business\nis the provision of one or more crypto-asset services to third parties on a\nprofessional basis;\n(9) ‘crypto-asset service’ means any of the services and activities listed below\nrelating to any crypto-asset:\n(a) the custody and administration of crypto-assets on behalf of third parties;\n(b) the operation of a trading platform for crypto-assets;\n(c) the exchange of crypto-assets for fiat currency that is legal tender;\n(d) the exchange of crypto-assets for other crypto-assets;\n(e) the execution of orders for crypto-assets on behalf of third parties;\n(f) placing of crypto-assets;\n(g) the reception and transmission of orders for crypto-assets on behalf of\nthird parties\n(h) providing advice on crypto-assets;\n\nand they further define what all of that means.\n\nBased on this, I believe that neither miners nor LN nodes are CASPs. However, LN nodes that offer swaps between Taro tokens and plain sats are definitely CASPs. https://example.com/ 21427 403389 403389.404287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4258868878264 0 \N \N f 139890066 \N 1 200437509 0 f f \N \N \N \N 403389 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451256 2025-03-24 13:20:53.434 2025-03-29 22:39:52.934 \N https://imgprxy.stacker.news/n3RVMrXuBvHK4UJogD8AxLVTw_gE6WG7phJKeR1BJIQ/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmliYi5jby9nWkxwVHoxLzIwMjMwODI3LTE1MDYzMi5qcGc https://example.com/ 15728 451244 451244.451256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.44050255376719 0 \N \N f 123782821 \N 1 211939963 0 f f \N \N \N \N 451244 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437967 2025-03-15 03:55:32.189 2025-03-29 22:39:52.934 \N Today is my 20th day with the cowboy hat. My first day where the first digit spells ‘2’!\n\nI don’t know why I feel different, but I just feel elated. Perhaps I should post about my elation tomorrow on Day 21 because of its symbolic significance. But my elation is already felt on Day 20\n\n![IMG_0495.png](https://m.stacker.news/12173) https://example.com/ 16447 437580 437524.437580.437967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0945759172523 0 \N \N f 224477195 \N 1 111501124 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404046 2025-02-15 13:32:29.248 2025-03-29 22:39:48.91 Daily Discussion Thread ~Music Saloon! Hello Stackers!\n\nWelcome on into the ~Music Corner of the Saloon!\n\nA place where we Talk Music. Share Tracks. Zap Sats.\n\nSo stay a while and listen.\n\n🚨Don't forget to check out the pinned items in the territory homepage! You can always find the latest weeklies there!🚨\n\n🚨Subscribe to the territory to ensure you never miss a post! 🚨 \N 2233 \N 404046 \N \N \N \N \N \N \N \N science \N ACTIVE \N 11.4289416681008 0 \N \N f 185055648 \N 2 201321701 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435044 2025-03-12 12:27:03.259 2025-03-29 22:39:52.934 \N What aren't you doing now that you wish you would be doing? A few answers or just one is cool. https://example.com/ 3506 434447 434447.435044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1122561069371 0 \N \N f 64531698 \N 1 120953804 0 f f \N \N \N \N 434447 \N 0 0 \N \N f \N 2025-03-19 07:58:48.519 f \N \N \N 0 0 0 0 1 0 0 423801 2025-03-03 15:59:43.148 2025-03-29 22:39:52.934 \N Hello, I've been using Zeus for quite a while and I'm actually quite at peace. What bothers me the most about the app is the small display for the sats. Can't you enlarge it, like with the Zap wallet? There would be enough space. https://example.com/ 15160 423789 423750.423789.423801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7278480837886 0 \N \N f 362988394 \N 2 49185942 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 336322 2024-12-20 16:27:09.659 2025-03-29 22:39:52.934 \N What you see happening with lightning? https://example.com/ 19668 336318 335484.335562.335591.335690.335721.335729.335791.336308.336318.336322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3861592011956 0 \N \N f 917611445 \N 7 90108086 0 f f \N \N \N \N 335484 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415833 2025-02-25 07:04:48.752 2025-03-29 22:39:48.91 Best News Aggregator Sites Or Methods? I have struggled with this issue since the beginning of the internet. I have never found the right method for discovering and organizing written content online. \n\nMany years ago I used Yahoo's configurable home page, and that worked well for a while. I have also tried just about every RSS feed reader in existence, Pocket, Flipboard, and others I am sure I am forgetting. The issue is either too much or too little. RSS feeds just throw too much at me, because I wind up subscribing to too many sources, and the more curated methods don't seem to cast a wide enough net. \n\nI'm wondering what stackers here use? \N 711 \N 415833 \N \N \N \N \N \N \N \N security \N ACTIVE \N 4.96288669470289 0 \N \N f 488487395 \N 2 232425331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413902 2025-02-23 14:22:41.068 2025-03-29 22:39:49.148 Is alternative content valued at SN? Dear Stackers, I've been contemplating sharing occasional insights about my homeland, Bavaria – its landscapes, cuisine, and its people. \n\nThere's already an abundance of excellent content on topics like Bitcoin, Lightning, politics, technology, etc., from other users. \n\nI find myself wondering what unique value I could bring, aside from sharing tidbits like the fact that we don't grill Weißwurst (Bavarian white sausage), but rather boil it and eat it with sweet mustard. Or dispelling the myth that we all wear Lederhosen and are die-hard FC Bayern Munich fans. \n\nWould you find such content (landscapes, cuisine, and its people) interesting, or would it potentially be more on the boring side?\n\n \N 17494 \N 413902 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.3391399834514 0 \N \N f 239201442 \N 1 26164546 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442628 2025-03-18 17:54:17.664 2025-03-29 22:39:49.148 Lightning Node Categories & Customization ⚡ Product Announcement for the [Exponential Layers](https://www.exponentiallayers.com/) lightning analytics and explorer platform: \n\n**See an [evolving directory of lightning nodes by category](https://app.exponentiallayers.com/Explore/Directory?filter=Exchange¤tPage=1) and [customize your node here](https://app.exponentiallayers.com/Nodes/Verify)**\n\n---\n\n@Voltage shared a great post about [brand and identity](https://voltage.cloud/blog/news/identity-and-brand-on-the-lightning-network/) on the Lightning Network last month.\n\n@kr had one of many fantastic conversations [with Alex Leishman of River Financial](https://www.kevinrooke.com/podcasts/e50-alex-leishman-on-building-river-taro-use-cases-and-earning-yield-on-the-lightning-network), highlighting the continued exponential growth of the Lightning Network.\n\n@sn, like [many of you have mentioned](https://stacker.news/items/41756), offers great signal to noise ratio and discussion, and [thanks to everyone’s input and help](https://stacker.news/items/44747), I have a number of fantastic resources to continue getting through in my journey of node routing.\n\nFrom all of these resources (and many more), it seems clear that we are very much in the early days of the Lightning Network, and as someone looking to [understand the analytics](https://app.exponentiallayers.com/Index) behind the lightning network and operate a node, I am interested in answering questions of:\n\n* What types of nodes are operating on the Lightning Network?\n* Who are the big players? What kind of capacity, channel count, and volume are they doing?\n* Who should I open channels with? Where does liquidity flow?\n\n---\n\n[Exponential Layers](https://www.exponentiallayers.com/) now offers one more data dimension for **analyzing the lightning network and channel partners in the form of Node categories**:\n\n* You can [claim your node](https://app.exponentiallayers.com/Nodes/Verify) and select your node category (Exchange, Wallet, Point of Sale, Infrastructure, LN App or Business, or Router) to help identify yourself on the network.\n\n* [Browse other nodes/peers by category](https://app.exponentiallayers.com/Explore/Directory?filter=Exchange¤tPage=1) and look at all of the nodes who classify as an exchange, wallet, etc.\n\n* You can (hopefully) have a bit of fun with the process - download the images you use for your Twitter account (avatar and banner image), and upload them to your Node profile for a fully customizable page. \n\nIn many senses, the channels we create today are like [creating the physical connections of the early internet days](https://blog.exponentiallayers.com/networking-and-internet-fundamentals/), so why not have a bit of fun while we spend some sats.\n\nI would love to hear any feedback you have on these new features. Are there some additional customization or dimensions by which you’d like to see nodes and categories broken out? What kind of category specific analytics would be helpful for you?\n\nAs one last incentive to help use these new features, anyone who verifies their node and leaves an email or twitter handle by 8/1 will receive a free upcoming copy of an upcoming “July state of Lightning report” to be published in early August, and be featured in the article if you prefer (I'll reach out to anyone with a publicly verified node prior). \n\nTo the next 1,000 BTC in capacity ⚡📈\n \N 2703 \N 442628 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 18.3437641781534 0 \N \N f 1373335798 \N 10 235374860 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 426587 2025-03-05 17:58:24.736 2025-03-29 22:39:49.148 How would define the term “Pleb”? The was a Socratic panel about this at TAB, but I felt like I didn’t agree with any of the answers.\n\nTo me, pleb is term that describes the latest generation of bitcoiner encompassing the last two cycles. The next cycle (or lack of one) will create a new generation with its own moniker. \N 980 \N 426587 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.42126989792058 0 \N \N f 299853369 \N 3 18265424 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 407619 2025-02-18 08:47:38.058 2025-03-29 22:39:49.149 5 Must-Read Bitcoin Books As Bitcoiners, we strive to expand our knowledge of the decentralized currency when we can. Reading Bitcoin-related books is one of the best ways to increase your understanding of Bitcoin, the current fiat system, and how Bitcoin is a better option as a global currency.\n\nBelow are 5 popular Bitcoin books that will help you expand your Bitcoin knowledge. Please note, that there are a large amount of great Bitcoin-related books that are not mentioned in this list. The below are books I personally own and have read myself, and are in no particular order.\n\n***There are a lot of other Bitcoin books out there, I have only suggested ones I have read myself.***\n\n# **1) The Bitcoin Standard by Saifedean Ammous**\n\n![bitcoin standard](https://i.postimg.cc/50qQcxW3/1119473861.jpg)\n\nThis is an obvious one, and arguably the most popular Bitcoin book right now, The Bitcoin Standard provides an in-depth analysis of the history, economics, and philosophy behind Bitcoin. It argues that Bitcoin is the new gold standard and explains how the technology works, its potential impact on the global economy, and why it is important for individuals to understand and embrace it.\n\n# **2) Mastering Bitcoin by Andreas M. Antonopoulos**\n\n![mastering](https://i.postimg.cc/3NtyRnR0/1-4k-Ab75fq4bugk0sx-PNvtr-Q-1.jpg)\n\nMastering Bitcoin is a technical guide to understanding and using Bitcoin, written by one of the most prominent voices in the Bitcoin community. It covers topics such as the blockchain, wallets, mining, and security, and provides practical tips for developers, entrepreneurs, and investors looking to leverage the power of Bitcoin.\n\n# **3) The Book Of Satoshi by Phil Champagne**\n\n![book of satoshi](https://i.postimg.cc/wMqygS6d/book-of-satoshi-768x1152.webp)\n\nThe Book of Satoshi is a collection of writings by the anonymous creator of Bitcoin, Satoshi Nakamoto. It includes the original white paper that introduced the concept of Bitcoin, as well as email exchanges between Nakamoto and other early Bitcoin enthusiasts. The book offers insights into the motivations and thought processes behind the creation of Bitcoin.\n\n# **4) Bitcoin Evangelism by Brian De Mint**\n\n![bitcoin evangelism](https://i.postimg.cc/LXMg0Jw5/9798986346304-p0-v1-s600x595.jpg)\n\nFor individuals who are new to Bitcoin or those who have already adopted this technology and want to gain a better understanding of technical concepts and share them with others, Bitcoin Evangelism is an excellent resource. This resource can make Bitcoin, blockchain, and cryptocurrency accessible to anyone, as these concepts do not have to be challenging.\n\n# **5) 21 Lessons by Gigi**\n\n![21 lessons](https://i.postimg.cc/vmn6zrPC/09-C9471-E-DAC2-4-EAD-B2-F9-DF17-F5-A46-B9-E.webp)\n\nFalling down the Bitcoin rabbit hole as a new Bitcoiner is a dramatic experience. 21 Lessons explores the author's most significant realizations learned in their own orange pill experience.\n\n# **Final Thoughts**\n\nAnd there you go, that's the list of 5 must-have Bitcoin books to increase your knowledge and understanding of the most popular digital currency.\n\nI also just wanted to quickly plug my first ever book titled **Orange Pill'd**, out July 31.\nOrange Pill'd is a collection of 250 individual Orange Pilled stories from Bitcoiners from 72 countries around the world.\n\nOrange Pill'd is currently available for pre-order with a 30% pre-release discount. I am also giving away $3,000 USD (11.25M Sats) shared between 3 people who pre-order before July 31.\n\nIf you want to check it out, head to [orangepilldbook.com](https://www.orangepilldbook.com). Thanks!\n\n![orange pill'd by bailey jakob](https://i.postimg.cc/X7Ffx0ps/644f8dbdb9f23614139075bf-mainbkimg-p-800.png)\n\n![orange pill'd by bailey jakob open](https://i.postimg.cc/T3JrMqjm/64506b57a99d5112c7d41f94-OPBPreview-NEWEST-p-1600.png)\n \N 3360 \N 407619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6407980010529 0 \N \N f 2516014081 \N 16 72964977 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 9 0 0 435574 2025-03-12 19:45:45.824 2025-03-29 22:39:52.934 \N Hi Alex, I'm a big fan of all of your work, and thanks for taking time to do an AMA. Was there a "key moment", conversation, etc, that led you and your organization to adopt and champion bitcoin as part of your work at HRF? https://example.com/ 20434 435551 435551.435574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3925016197443 0 \N \N f 294417467 \N 2 9330080 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 2025-03-20 03:31:23.58 f \N \N \N 0 0 0 0 2 0 0 448196 2025-03-22 13:26:35.337 2025-03-29 22:39:52.934 \N What do you think about Bitcoin's privacy? Would you recommend L2 solutions like Liquid and Lightning for inexperienced users, especially in totalitarian regimes? https://example.com/ 17494 448175 447833.448012.448175.448196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7737846653101 0 \N \N f 294048404 \N 3 193674975 0 f f \N \N \N \N 447833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458139 2025-03-29 01:56:42.168 2025-03-29 22:39:52.935 \N This is a bit of UX question - in Zeus (and other apps) there is always some new thing, interaction or new concept that you have to introduce to users, give it a name and a label in the UI. \n\nWhat is the right number of new concepts that single application can reasonably introduce? When is it too much? Do you have experience with users giving you feedback on complexity of the UI? Have you ever thought about the UX from this perspective? https://example.com/ 9026 457787 457787.458139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3268584625913 0 \N \N f 26707434 \N 1 197477849 0 f f \N \N \N \N 457787 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 367392 2025-01-13 19:49:05.387 2025-03-29 22:39:49.149 How did Nassim Nicholas Taleb go from Bitcoiner to Bitcoin hater? When I think that Nassim Nicholas Taleb wrote the preface to the Bitcoin Standard, I wonder how he could have changed his opinion so much ...\n\n![Nassim Nicholas Taleb](https://www.bitcoinpriceinwords.com/nassim_nicholas_taleb_bitcoin.jpg)\n\nWhat is your opinion on the matter? \N 21026 \N 367392 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 25.8590630514336 0 \N \N f 147817997 \N 1 46201338 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443058 2025-03-19 01:50:08.124 2025-03-29 22:39:49.15 What is a Derivation Path? Few people know this, but BIP 39 was actually Nack'ed by the code reviewers. In the Bitcoin core repo, to Ack is to agree with the proposal. It means you reviewed it and gave a thumbs up, this is good code. In BIP 39's case, it got a Nack from reviewers which means they reviewed the code and gave it a thumbs down, this is bad code.\n\nBIP 39 is where we get seed phrases from. So why was it negatively reviewed? Let me put it this way, do you know what a derivation path is? If you answered no, then you have the answer to your question.\nhttps://github.com/bitcoin/bips/wiki/Comments:BIP-0039\n\nNow, getting a Nack in your BIP doesn't mean its dead forever and ever. You can update your BIP to address the concerns and change that Nacks over to Acks. However, wallet developers implemented the BIP before any improvements to the BIP were made. That means that things like the derivation path can be wildly different between wallets.\n\nYou can check which derivation path your wallet uses here: https://walletsrecovery.org (this is literally just a list of derivation paths)\n\nWhat makes this worse is that things like timelocks can not be represented using BIP 39 because it uses a locking script and that script needs to be part of your backup. That's why something like Liana wallet uses a different backup method called "descriptor wallets"\n\nThis is the BIP for descriptor wallets https://github.com/bitcoin/bips/blob/master/bip-0380.mediawiki\n\nSo look out for this new wallet recovery type. Maybe even you can think of ways to make it easy to use for the general community and it may as a result even take over seed phrases. \N 964 \N 443058 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 13.4132473483293 0 \N \N f 157692739 \N 2 192320861 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 04:23:25.36 f \N \N \N 0 0 0 0 2 0 0 434831 2025-03-12 09:09:04.422 2025-03-29 22:39:52.935 \N What security considerations were made when developing Alby? https://example.com/ 17050 433831 433799.433829.433831.434831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8463563984234 0 \N \N f 312914369 \N 2 173193312 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 2025-03-19 03:51:16.261 f \N \N \N 0 0 0 0 1 0 0 450186 2025-03-23 19:20:07.685 2025-03-29 22:39:52.935 \N Why is Zeus just the god damn best?\n\nThank you for everything \n\nHad a dust attack hit my node and your implementation was the first that allowed me to pick utxos on chain.\n\n https://example.com/ 14370 449984 449186.449984.450186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13604850769842 0 \N \N f 202218373 \N 1 172223922 0 f f \N \N \N \N 449186 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427574 2025-03-06 13:55:38.125 2025-03-29 22:39:52.935 \N From a cybersecurity perspective, what do you think is better to use for a bitcoin wallet: dedicated GrapheneOS device or mainstream hardware wallet (Ledger/Trezor)? https://example.com/ 14357 427556 427091.427540.427556.427574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1969364244618 0 \N \N f 508997983 \N 5 54672076 0 f f \N \N \N \N 427091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402261 2025-02-13 16:40:16.868 2025-03-29 22:39:52.935 \N So many Lightning questions:\n\n- can you break down the components of channel ID?\n- pros/cons of having one channel of X size vs two channels of X/2 size (same peer)\n- wtf is timelockdelta and what’s a good number\n- why do some channels appear to go offline when both peers appear to be online? https://example.com/ 2776 402259 402259.402261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2114112202101 0 \N \N f 26450568 \N 1 138107737 0 f f \N \N \N \N 402259 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444121 2025-03-19 17:17:13.164 2025-03-29 22:39:52.935 \N conferences and classes and more content!! i feel like i really learned a lot about the power of working with other projects this year and I’m really excited about doing more collaborations next year\n\n2025 is going to be 🤝\n\nspecifically though, some things I’m hoping to get done next year:\n- btc++ conferences in brazil, austin, turkey, berlin, taiwan\n- relaunch base58 classes, with a focus on building a network of base58 powered educators and education projects. maybe do our first collab or two for a in-depth class\n- get liquidity ads shipped on core lightning!! ⚡️ ⚡️ ⚡️ https://example.com/ 2492 444117 443867.444117.444121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.05152573303516 0 \N \N f 2326073 \N 1 72788577 0 f f \N \N \N \N 443867 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424183 2025-03-03 21:34:53.243 2025-03-29 22:39:52.936 \N [Their whitepaper](https://cdn.prod.website-files.com/661e3b1622f7c56970b07a4c/662a7a89ce097389c876db57_BitSNARK__Grail.pdf) is pretty bad at explaining what this tech is, and [their docs](https://wiki.sovryn.com/en/bitcoinos/description) aren't much better. I'll give it my best shot but if anyone from sovryn is reading, please correct me if i'm wrong here.\n\nThe whitepaper introduces two technologies, "Grail" and "BitSNARK", which i assume taken together are the 'framework' they call BitcoinOS. \n\nThey claim BitSNARK is a more efficient version of BitVM for the specific case of validating ZK rollups, but they fail to elaborate on how they made it more efficient and how it works internally, beyond the high level overview given on page 3. The main raison d'etre of BitSNARK seems to be to act as an on-chain enforcement mechanism for settling smart contract disputes using zero knowledge proofs (Groth16 snarks) as the ultimate source of truth for who 'wins' the settlement. Basically this is BitVM specifically instantiated for SNARK verification. \n\nAlso, Groth16 requires a per-circuit trusted setup and produces "toxic waste", and their paper doesn't clarify how they deal with that. Who does the trust fall on? What are the consequences if the trusted parties misbehave and keep their toxic waste?\n\nAs for Grail, it seems to be a procedure used to 'transfer' bitcoin in and out of an L2/sidechain, using BitSNARK (BitVM+ZKP). This type of procedure seems to be a hot topic for businesses these days. Full disclosure: i'm doing some work for a company who is building something similar, except with multisig escrow instead of an on-chain ZKP verifier.\n\n> Grail Bridge\n>\n> The bridge is intended to allow users to transfer assets between the Bitcoin blockchain and an L2 (Layer 2) network\n>\n> Operators can lock funds on the Bitcoin side by sending them to Taproot addresses created using BitSNARK. The funds are thereby locked in a UTXO until a SNARK proof is provided that allows them to be retrieved. On the L2 side, the operator sends a SNARK proof to the bridge smart contract, thereby causing the bridge to mint tokens to the operator’s wallet. In the reverse process, an operator burns their tokens via the smart contract, thereby obtaining a SNARK proof that allows the operator to retrieve their funds, on the Bitcoin side, from the UTXO, using the BitSNARK protocol.\n\nSo the "Unlimited Smart Contracts and Scalability" claim [they have emblazoned on their website](https://sovryn.com/bitcoinos) isn't occurring on bitcoin - it's occurring off-chain, and the framework they've designed is just an engine (powered by BitVM and SNARKs) to allow people to wrap bitcoin which they can then use on smart contracts _inside the given L2._ \n\nUltimately users still need to choose their L2 wisely because a bug or hack in the L2 will destroy the wrapped bitcoins, and prevent users from creating valid proofs to reclaim the actual Bitcoins proper. \n\nFor example, if you used Grail to wrap BTC onto Ethereum, and then deposited that wrapped-BTC in a poorly coded ETH smart contract which gets hacked, then you're shit-outta-luck - the hacker can burn the wrapped-BTC and create a proof which lets them sweep away your mainchain BTC, and you can't do anything about it. Your money would be just as gone as if you'd just sent your BTC straight to the hacker in the first place.\n\n-------\n\n\nOverall rating: 6/10. Highly efficient ZKPs enforced on Bitcoin is exciting and I would like to know more about how their 'BitSNARK' system actually works. I think Sovryn is focusing on the wrong use case with Grail though. Instead of bridging Bitcoin to shitcoins, they should be focusing on using BitSNARK to create more powerful expressive tools on L1 bitcoin. https://example.com/ 20026 424182 423928.423951.423962.424104.424121.424182.424183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7373562457402 0 \N \N f 477029469 \N 3 74499340 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448230 2025-03-22 13:51:54.825 2025-03-29 22:39:52.936 \N Would like the ability to mute comments. Some people take the opportunity to have their daily conversations under other people's comments and it blows up notifications. I've had SN notifications turned off because of no ability to control this. https://example.com/ 20220 448200 448200.448230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.93870794482772 0 \N \N f 250324947 \N 4 82962292 0 f f \N \N \N \N 448200 \N 0 0 \N \N f \N 2025-03-29 08:39:09.576 f \N \N \N 0 0 0 0 2 0 0 455159 2025-03-26 19:12:16.889 2025-03-29 22:39:52.936 \N Not all heroes wear capes https://example.com/ 2309 455132 455132.455159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5679306088679 0 \N \N f 197854346 \N 2 1070057 0 f f \N \N \N \N 455132 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407198 2025-02-17 20:33:12.22 2025-03-29 22:39:52.938 \N ![Perception VS Reality](https://snipboard.io/Aro0Dm.jpg) https://example.com/ 3409 406115 406115.407198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7626075408199 0 \N \N f 861912815 \N 5 67936326 0 f f \N \N \N \N 406115 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450659 2025-03-24 06:22:43.394 2025-03-29 22:39:52.939 \N > Why bother doing anything hard? I mean, the fiat printer takes care of you and orange man has promised to make 'Murica great again.\n\nI know you are likely being tongue in cheek here. So i won't take it at face value~~\n\nBut it reminds me of one of the arguments i have heard against bitcoin, i.e. why would one work or do anything positively contributing to society. One can just hold bitcoin and do nothing. The efforts of others should make the value of bitcoin go up to account for the tech they make, the stuff they produce, etc. \n\nI know there is a fiat mindset to this argument, namely consumerism, but I'd be happy if one could convince me that bitcoin will not make people lazy or suffer from similar side effects seen in the money printing world. It's ok, too, to tell me: it's nuanced and Bitcoin won't solve everything. I dont have a clear view on this. https://example.com/ 1801 450652 450649.450652.450659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.64847756383176 0 \N \N f 1027223258 \N 7 236234166 0 f f \N \N \N \N 450649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435826 2025-03-13 02:03:27.284 2025-03-29 22:39:49.149 What podcast do you wish existed? I've been thinking about this a lot wrt my "ideal bitcoin-adjacent podcast" which does not exist, and it made me wonder what podcast other people wish existed? How would you describe it? What would its format be? Who would be the guests? Does it _not_ exist because you're the only person who's interested, or do you think there's an audience waiting to be served?\n\nI'm a little hesitant to ask this question given how much truth there is in [this](https://babylonbee.com/news/meet-steve-the-last-remaining-american-who-doesnt-have-a-podcast), but what the hell. \N 19943 \N 435826 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.74550409288881 0 \N \N f 158015963 \N 1 82679503 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 02:58:57.57 f \N \N \N 0 0 0 0 1 0 0 435767 2025-03-13 00:23:22.133 2025-03-29 22:39:52.939 \N > Then, why at the first news of a drone, bitcoin price drops?\n\nI'm sure a lot of people have bought Bitcoin with leverage, debt, and more so than most assets because yolo. It makes sense to de-leverage during times of uncertainty, because you'd be better off having less risk overall.\n\nBitcoin's price would probably fall _even farther_ if it weren't also an asset that can make sense during times of uncertainty. https://example.com/ 15139 435610 435610.435767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.91086365578852 0 \N \N f 188709707 \N 2 84956954 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 2025-03-20 08:34:43.933 f \N \N \N 0 0 0 0 1 0 0 436582 2025-03-13 17:10:58.062 2025-03-29 22:39:52.94 \N Thank you for sharing! There are so many bitcoiners working out there almost in isolation; trying to run a business and stay on top of LN developments etc as well as incorporate them. Those who can help and simplify the process for busy people are going to be invaluable to the revolution (this seems to the current hang up with Nostr - people don’t care how good it is if they can still use easy interfaces like Twatter etc) https://example.com/ 14168 436499 436499.436582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3431900168205 0 \N \N f 232493625 \N 1 128355928 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 2025-03-20 11:12:06.873 f \N \N \N 0 0 0 0 1 0 0 3679 2022-11-08 20:31:11.498 2025-03-29 22:39:52.94 \N I agree with you 100%.\n\nHorrible PR. Horrible name. Why are they even interfering in sovereign nations the first place or making suggestions without having real power. And a horrible slogan.\n\nBut there is no [International Jewish conspiracy](https://en.wikipedia.org/wiki/International_Jewish_conspiracy) that want's to drain the 2 thousand bucks on your personal dollar savings account, John from West Virgia. Also the "they" of the IMF are not the same people as the "they" of your deepstate lol or the "they" that steer inflation. https://example.com/ 8376 3677 3674.3677.3679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7276136224762 0 \N \N f 968824369 \N 6 20322750 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447085 2025-03-21 15:53:22.921 2025-03-29 22:39:52.94 \N > the transaction hash is customized to have the tx author's twitter handle and a bunch of leading zeroes\n\nThis part is incorrect :) I only learned about this transaction from mononauts tweet. While I did create [`b10c007c60e14f9d087e0291d4d0c7869697c6681d979c6639dbd960792b4d41`](https://b10c.me/blog/007-spending-p2tr-pre-activation/#spending-p2tr-outputs-before-activation) a while ago, I'm not related to this transaction. I obviously can't prove it.. https://example.com/ 21104 446945 446945.447085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.38647510723 0 \N \N f 273886170 \N 2 109301142 0 f f \N \N \N \N 446945 \N 0 0 \N \N f \N 2025-03-28 12:00:13.355 f \N \N \N 0 0 0 0 1 0 0 410695 2025-02-20 16:07:29.243 2025-03-29 22:39:52.941 \N All these praising Bukele.\n\nLook, Bukele is a politician, he has an agenda. It may be partially aligned with ours, and sure, good for us while it lasts. But as soon as he gets into some political trouble and for some reasons, staying in power requires him to ditch this whole Bitcoin thing, he won't blink an eye. https://example.com/ 1039 410691 410691.410695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.027895295413 0 \N \N f 222914372 \N 2 88120790 0 f f \N \N \N \N 410691 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422829 2025-03-02 18:13:35.796 2025-03-29 22:39:52.941 \N You have yourself a deal!\n\n\n![shake.gif](https://m.stacker.news/5447) https://example.com/ 18309 422804 422804.422829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1533308519392 0 \N \N f 269058313 \N 2 176331776 0 f f \N \N \N \N 422804 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433993 2025-03-11 14:55:04.667 2025-03-29 22:39:52.941 \N I suggested Open Sats because we know it is legit but it also has some big backers so I am good with doing smaller projects as well. \n\nMaybe we focus on some of the bitcoin community projects like bitcoin ekasi or mi primer bitcoin as examples. Or maybe we do a satsraiser for bitcoin community projects (beach, lake, island, ekasi, mi primer bitcoin and so on) and just split the sats amongst them. \n\nThoughts? https://example.com/ 8841 433946 433828.433946.433993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7812642405651 0 \N \N f 319253349 \N 3 196973357 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441259 2025-03-17 21:46:59.767 2025-03-29 22:39:52.942 \N This is what happens when you try to profit off a p2p system that kills middlemen.\n\nMost sustainable "Bitcoin Business" are either a Fiat/state tentacle (exchanges/banks/compliance/information brokers/narrative shapers/media,etc.), and/or they are able to "exploit" a flaw/deficiency in the protocol by inserting themselves as middlemen (coinjoin coordinators/custodians/LSPs)\n\nEvery profit extracting vehicle that leeches on Bitcoin -- either by profiting off it's flaws, or bringing it closer to nationstate capture (the network as a whole will suffer).\n\nDon't overcomplicate it... Stay humble. Stack sats. That urge you have to give back is natural. Give freely your time, energy, and value (not-for-profit), and we'll all get insanely wealthy together.\n\nLess "Bitcoin Businesses", more "Business using Bitcoin".\n\nNever forget, it was the Internet Businesses that slowly captured and degraded the soverignty of the Email protocol. \n https://example.com/ 680 441247 441247.441259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1814157016207 0 \N \N f 80958507 \N 1 186675876 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 2025-03-29 20:59:21.754 f \N \N \N 0 0 0 0 1 0 0 422057 2025-03-02 08:47:43.95 2025-03-29 22:39:52.942 \N I haven't been following the drama, nor do I care. ***But*** I am very interested in the debate around what open source means and drama is an interesting vehicle for learning about it. https://example.com/ 12368 422056 422056.422057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8625080888016 0 \N \N f 1158711245 \N 8 239738775 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 407466 2025-02-18 03:31:13.872 2025-03-29 22:39:52.942 \N i find it funny that everyone assumes this is the result of brainwashing by social media algorithms, and not that conservative policy is increasingly unpopular with women. at least in my country, conservatives are trying to ban abortions, restrict access to contraceptives, and their frontrunner is currently on trial for defaming a women he sexually assaulted. the mental gymnastics it takes to ignore all this, and assume it's an algorithmic conspiracy is frankly staggering https://example.com/ 1245 407400 407400.407466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.65809643476909 0 \N \N f 187870221 \N 2 198524336 0 f f \N \N \N \N 407400 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436442 2025-03-13 15:04:25.45 2025-03-29 22:39:52.943 \N Tipping misclick LOL https://example.com/ 1823 436364 436364.436442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4452067249399 0 \N \N f 184300771 \N 1 179683538 0 f f \N \N \N \N 436364 \N 0 0 \N \N f \N 2025-03-20 08:24:35.003 f \N \N \N 0 0 0 0 1 0 0 436398 2025-03-13 14:27:12.101 2025-03-29 22:39:52.943 \N The start of a busy week. My wife is gone from the homestead for 7 days. Division of labor- I care for the animals and fish, she does the gardening. Now I must water and pick vegetables too. Most people would see it as no big deal, but I'm lazy. https://example.com/ 1890 436391 436273.436391.436398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.60860407989994 0 \N \N f 446251194 \N 3 218093274 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 07:48:55.466 f \N \N \N 0 0 0 0 1 0 0 436090 2025-03-13 10:05:18.826 2025-03-29 22:39:52.943 \N “You should stay in a union job. If you don’t, the union can’t protect you anymore”. \n\nTerrible advice from a union rep many years ago after I got hired to a management position. I ended up tripling my salary within 5 years after leaving the union position and then started my own adjacent business that I eventually built up to 2M/yr revenue. \n\nIf I stayed in the union job I would be making $45k a year right now. https://example.com/ 19394 435944 435944.436090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.70399960141495 0 \N \N f 102621444 \N 1 160702061 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 2025-03-20 04:02:17.818 f \N \N \N 0 0 0 0 1 0 0 424362 2025-03-04 02:50:32.043 2025-03-29 22:39:52.934 \N 1. Buy BTC via several non-KYC exchanges, buy the whole 55M, projects will only be financed in BTC. By the time the whole fund is deployed it would surely be worth more than 55M cuckbucks.\n2. Fund educational projects in Africa, LatAm and Asia with one third.\n3. Check Geyser and Tallycoin monthly and fully fund "the best" proposals (arbitrarily, it's my money)\n4. Fund my own company with the other 1/3 it should be enough to pay everyone great salaries and make it work.\n5. Then I win https://example.com/ 12291 422587 422587.424362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3753488403337 0 \N \N f 56765535 \N 1 144753088 0 f f \N \N \N \N 422587 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434774 2025-03-12 08:22:54.192 2025-03-29 22:39:52.934 \N If Stacker News would automatically create new posts from CD episodes and the sats from post votes would go directly to your v4v node... would that get you excited? :) https://example.com/ 686 433833 433833.434774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6900149826323 0 \N \N f 101608501 \N 1 61356352 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 2025-03-19 01:41:30.992 f \N \N \N 0 0 0 0 1 0 0 410628 2025-02-20 15:20:15.982 2025-03-29 22:39:52.935 \N Me too, I think it's a case of people not understanding everything has a cost. If it's free you're either taking the time and labour of someone else, or you're skimming small amounts from everyone to cover the cost, and feeling like stealing in negligible amounts is a human right.\n\nI've lived without 24 hour electricty, with water rationing, my family have had their homes taken from the government, so I know rights mean nothing. It's really just an idea people hold who are afraid to give up modern comforts. \n\nOnce you learn to live without these things and see you're not made of glass and won't shatter because you can't access this or that, then you realise holding onto those dreams cost society more than it provides https://example.com/ 2724 410601 410237.410601.410628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.848490531033 0 \N \N f 150694365 \N 1 154020776 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435105 2025-03-12 13:16:49.467 2025-03-29 22:39:52.943 \N Day 165 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 18423 435091 435073.435078.435091.435105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9514286253116 0 \N \N f 166546080 \N 1 100960028 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 2025-03-19 06:34:36.762 f \N \N \N 0 0 0 0 1 0 0 401257 2025-02-12 20:27:28.642 2025-03-29 22:39:52.935 \N Very creative FOSSING quip! Kudos @k00b https://example.com/ 4064 401198 401198.401257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9225419340904 0 \N \N f 625639976 \N 5 104099892 0 f f \N \N \N \N 401198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404145 2025-02-15 15:29:13.709 2025-03-29 22:39:52.935 \N I stopped reading at "Open source is core to our ethos"\n\nNo, shitcoining, scamming people, and putting backdoors into hardware is core to their ethos. I will never forget nor forgive their Siacoin history and their ASIC scamming from their entire cofounding team. https://example.com/ 15521 404042 404042.404145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3642130365323 0 \N \N f 139733652 \N 1 4007455 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413523 2025-02-23 09:42:20.094 2025-03-29 22:39:49.149 I'm new to stacker news! Just wanted to say hi and see how this works. I've been a bitcoiner for years now, and I've been over on nostr for about a year. I've seen SN around, but haven't really dove in. \n\nSay hi to me here or on nostr! npub1am0jxrkqf7n85aqyk5wzz9eley0ap9wdyqz4cxly8fr8d3zgl0ys7r2g42\n\nStay humble, keep stacking fellow plebs. \N 11996 \N 413523 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 17.2335376596416 0 \N \N f 869991878 \N 8 232190632 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455824 2025-03-27 10:59:32.714 2025-03-29 22:39:52.935 \N Old hands tell stories \n..a whittling slip.. wedding ring\nOld faces tell truths https://example.com/ 15147 455599 455551.455599.455824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5114523898312 0 \N \N f 1286693641 \N 10 180956478 0 f f \N \N \N \N 455551 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441851 2025-03-18 10:31:08.97 2025-03-29 22:39:52.935 \N Two years ago today I posted my bio with a puzzle that lead to an ln.cash link. @frostdragon solved it and they got a 10,000k sats reward!\n\n\n\n\n\n https://example.com/ 714 441695 441695.441851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.61443974830546 0 \N \N f 762475445 \N 6 60899625 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448403 2025-03-22 15:30:39.632 2025-03-29 22:39:52.935 \N Well done Swan!\n\nGreat reward for the founders and folk of Specter who have put so much into the community.\n\n https://example.com/ 8985 448319 447761.448319.448403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.87470210478993 0 \N \N f 236480630 \N 1 60631753 0 f f \N \N \N \N 447761 \N 0 0 \N \N f \N 2025-03-29 08:54:14.286 f \N \N \N 0 0 0 0 1 0 0 446849 2025-03-21 13:57:36.386 2025-03-29 22:39:52.935 \N a little article about the french revolution for SN https://example.com/ 1801 446791 446631.446791.446849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.77026867109996 0 \N \N f 307818457 \N 2 133838831 0 f f \N \N \N \N 446631 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402572 2025-02-13 20:29:08.553 2025-03-29 22:39:52.935 \N Smart cars. Its not a boolean but I do not want an Internet connected car. The Tesla would be the extreme example. I'd rather drive older cars. In a few years I may have to go to vintage cars and back to the old days of working on my own vehicles more. https://example.com/ 628 402494 402171.402303.402494.402572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.406583293713005 0 \N \N f 22297554 \N 1 43590176 0 f f \N \N \N \N 402171 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443386 2025-03-19 10:14:08.487 2025-03-29 22:39:52.935 \N Cheers! Today is my recovery day - but mentally I'm with You! https://example.com/ 11967 443372 443372.443386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8388831550431 0 \N \N f 600871285 \N 5 100021980 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 03:33:02.868 f \N \N \N 0 0 0 0 3 0 0 434488 2025-03-12 00:37:03.676 2025-03-29 22:39:49.15 What's more important, the IDEA or the EXECUTION? >Thomas Edison once said, "Strategy without execution is hallucination.” \n\nIt's an age-old question.\n\nA debate, really!\n\nOn one side of the debate is Steve Jobs, who said:\n \n> "To me, ideas are worth nothing unless executed. They are just a multiplier. Execution is worth millions."\n\nOn the other side of debate is John F. Kennedy, who said: \n \n> "A man may die, nations may rise and fall, but an idea lives on. Ideas have endurance without death."\n\n**So which one wins: the idea, or the execution of the idea?**\n\nLet SN know what you're thinking ... \N 1567 \N 434488 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 12.1387959553219 0 \N \N f 1544599985 \N 12 179244179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 05:52:00.285 f \N \N \N 0 0 0 0 5 0 0 435497 2025-03-12 18:28:34.064 2025-03-29 22:39:49.149 For how long could you keep your lifestyle without any income? I only have money for paying rent, bills and food until the next month. I don't have a job yet and I already spent my savings. I'm looking for a job but if I don't get one or any income by the en of the next month I will have to move and find a way to survive. This made me wonder about the financial situation of the people in this forum. \N 895 \N 435497 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 28.1805622984226 0 \N \N f 998132850 \N 9 14645648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 23:18:12.49 f \N \N \N 0 0 0 0 4 0 0 449038 2025-03-23 05:45:21.735 2025-03-29 22:39:52.935 \N GM stackers. I've not been around in a while, but been lurking for the last few days. I hope everyone has a great Sunday. https://example.com/ 6335 448026 447818.448026.449038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.02269123086627 0 \N \N f 76126052 \N 1 8762587 0 f f \N \N \N \N 447818 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442828 2025-03-18 20:54:02.509 2025-03-29 22:39:52.935 \N Great read. We must make an effort today to keep these things alive and kicking or they won't be there the day we need them the most. https://example.com/ 695 442824 442628.442639.442646.442648.442650.442670.442824.442828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5874295620776 0 \N \N f 129621843 \N 2 214931451 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410337 2025-02-20 12:45:46.975 2025-03-29 22:39:52.935 \N nice touch adding forwarding to your post. Gotta appreciate all @kr is doing. https://example.com/ 5112 410311 410311.410337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4399531577934 0 \N \N f 69134391 \N 1 97839241 0 f f \N \N \N \N 410311 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435045 2025-03-12 12:27:18.892 2025-03-29 22:39:52.935 \N Anyone seen @nemo? Did @darthcoin finally take him round the back of the woodshed?\n\n“I seen the guys that go around on the ranches alone. That ain’t no good. They don’t have no fun. After a long time they get mean. They get wantin’ to fight all the time.” https://example.com/ 12965 435022 434440.435022.435045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8084375441272 0 \N \N f 46062900 \N 1 167190298 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 2025-03-19 05:45:09.858 f \N \N \N 0 0 0 0 1 0 0 407699 2025-02-18 09:53:22.053 2025-03-29 22:39:52.935 \N Day 72 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20778 407470 407470.407699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.77130955300605 0 \N \N f 151256936 \N 2 94264435 0 f f \N \N \N \N 407470 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446686 2025-03-21 12:19:15.802 2025-03-29 22:39:52.936 \N I cut the cord. \n\nFirst I used LNC besides payments failing from time to time it worked great until LNC went down for me for some unknown reason \n\nThen I switched to NWC using alby hub. And it works for the most part but I always get 5 to 10 failed payments it seems like per day or every few days \n\nThe auto withdrawal feature worked like a charm. Works great. As someone who doesn’t get a ton of lightning payments it’s often cool to see tiny payments be made to my node.\n\nOn one hand I see Darth’s argument but I side with you. What’s the point of LN if a node can’t consistently handle 1 sat payments a few thousand times a day. The more we use it the better we can improve the protocol to meet the needs of the users. https://example.com/ 6361 446680 446598.446635.446641.446651.446661.446680.446686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.60547624224071 0 \N \N f 178757612 \N 1 142714808 0 f f \N \N \N \N 446598 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407777 2025-02-18 11:20:23.825 2025-03-29 22:39:49.149 The Penal Preserve, Chapter 6 *This is chapter 6 of **The Penal Preserve**, you may want to go back to [Chapter 5](https://stacker.news/items/605298) or [start at the beginning](https://stacker.news/items/599283).*\n\n# 6\n\nThe early triumphs of the colony were succeeded by a long slow failing. Constructing the tree-dwellings required much more time than expected, and the area set aside for planting proved enormously difficult to clear. The massive trees were toppled at great risk, and, once they fell, required days to reduce them to pieces that could be removed. After three months, still no crops had been sown, and no land had even been fully prepared for sowing.[^1]\n\nWhen the crops were finally put in, it was late, almost summer; the outlook for the harvest was not good. And all the while, they were devouring their supplies with unplanned speed. They began to eat their winter reserves on the eve of the summer solstice. \n\nAnd then the Penists discovered that they were not alone on the island as they had thought. \n\nAt the era of colonization by the Penists, the island was indeed inhabited by a group of vacationers.[^2] It seems that although the island was owned by the government, it had long been the practice of the mainland locals to camp there during the summer. Unchecked, these trespasses had developed into a community of luxurious vacation homes. These Vacationers were universally wealthy. The island was only accessible to the owners of boats, and at this time in Martian history, boat ownership was synonymous with riches and personal wealth, an arcane demonstration of opulence. And yet, their excessive pursuit of leisure on the island had led them to a degraded state, hardly fit to be called civilized. They had no inducement to work, and (like all others who are so situated) did not very greatly exert themselves,[^3] primarily engaging in the consumption of sugary alcoholic beverages and a traditional confection known as potato chips.\n \nThe Vacationers were mercurial, probably from mental puerility brought on by their excessive leisure; thus their war-whoop and defiance were soon succeeded by shouts of laughter.[^4] Indeed, the physiognomy of these Vacationers was very expressive: fierce and ferocious in their menaces, in their joy they displayed convulsions that had the appearance of madness.[^5] Vulgarity of speech was very common, and the presence of women and children seemed to have but small restraining influence. Names were sometimes given that were not pleasant to the ears of polite people.[^6] They had the animal look in their eye, which is so common of the uncivilized.[^7]\n\nWithout exception all the Vacationers were greatly addicted to Alien products. They devoted themselves to acquiring the latest Alien things, which was the only reason they ever bothered to leave the island. Nor did they instruct their children in the Martian languages, allowing them teep instead. The Vacationers were simple children of Alienisms, and many things condemned among the Penists were with them without offense.[^8] \n\nIn this people, so gentle and affable, it is difficult to recognize the race afterwards covered with sores, wasted by want and vice, animated with revenge; and who filled the colony with disgust and terror.[^9] But, of course, it is likely that they were cannibals, and their wholesale slaughter could be justified on these grounds, if not any other.[^10]\n\nUnaware of Welles’ plans to use the island as a penal colony and reserve from Alien technology, the Vacationers pursued their old habits, as they had for decades. The monotony of their lives was only disturbed by teepcasts, the laughter of children, and island gossip. But a change was at hand. Their peace was but the clam before the storm. Their pleasant days were to be clouded by sorrow and terror.[^11]\n\nThe Penists, after landing on these shores, lived peaceably in their new possession for half a year or more before the two groups came to blows. But the hostility, thus begun, continued with no great intermission until the last of the Vacationers were removed to Flinders Island.[^12]\n\nThe story of the conflict between these groups on the island is involved in misty obscurity.[^13] Indeed, some historians have claimed that no such Martian residents as the Vacationers ever existed on the island, and that the island was instead overrun by a great number of lions, tigers, and lizards brought there many years previous by a group of sport hunters who hoped to find exhilaration through combat with such beasts. Others have claimed that the island was once used as a breeding ground for a certain species of dog prized for its fleece. They say the population became feral by the time the Penists arrived, and that the dogs roved the island in large packs, attacking anything that moved. Such historians are nothing more than apologists, intent on exonerating the Martians, demonstrating that nothing so horrific as the Line could have ever occurred at their hands.\n\n*Chapter 6 tomorrow, same time, same place.*\n\n[^1]: No grain had been sown, and no Government land had been even prepared for sowing. **James Backhouse Walker, _The English at the Derwent, and the Risdon Settlement_ 14 October 1880**\n[^2]: At the era of discovery by Tasman, Van Diemen’s Land was inhabited. **John West, _The History of Tasmania_ Volume 2, 1852**\n[^3]: He had no inducement to work, and (like all others who are so situated) he did not very greatly exert himself. **J E Calder, _Some Account of the Wars, Extirpation, Habits, &c., of the Native Tribes of Tasmania_ 1875**\n[^4]: The natives were variable, from ignorance and distrust; probably from mental puerility: thus, their war whoop and defiance were soon succeeded by shouts of laughter. **John West, _The History of Tasmania_ Volume 2, 1852**\n[^5]: The physiognomy of these savages was abundantly expressive; the passions were strongly marked, as they succeeded each other in rapid succession; and their whole figure was changed and modified with their affections. Fierce and ferocious in their menaces, they appear at once suspicious, restless, and perfidious. In their joy, the figure displays a convulsion that has the appearance of madness; among the aged there is an expression that is at once sad, sullen, and severe; but in general, among all these people there is to be noticed at some moments an insincerity and ferocity, which cannot escape an attentive observer, and which but too well corresponds with their character. **Francois Peron, _A Voyage of Discovery to the Southern Hemisphere, Performed by Order of the Emperor Napoleon, During the Years 1801, 1802, 1803, 1804_ 1824**\n[^6]: Vulgarity of speech was very common, and the presence of women and children seemed to have but small restraining influence. Names were sometimes given that were not pleasant to ear of polite people. **John G Gasmann, United States Indian Agent at Crow Creek and Lower Brule Consolidated Agency, 20 August 1884**\n[^7]: They had the animal expression of the eye, which is so common of uncivilised people. **John West, _The History of Tasmania_ Volume 2, 1852**\n[^8]: The Indians are simple children of nature, and many things condemned as immoral among whites are with them without offense. **John G Gasmann, United States Indian Agent at Crow Creek and Lower Brule Consolidated Agency, 20 August 1884**\n[^9]: In a people so gentle and affable, it is difficult to recognise the race afterwards covered with sores, wasted by want and vice, or animated with revenge; and who filled the colony with disgust and terror. **John West, _The History of Tasmania_ Volume 2, 1852**\n[^10]: Of course they were cannibals. **James Bonwick, _The Last of the Tasmanians; or, The Black War of Van Diemen’s Land_ 1870**\n[^11]: The Natives pursued their old habits, as they had done for thousands of years. The monotony of their lives was only disturbed by the hunt, the laughing corrobory, or the tribal conflict. But a change was at hand. Their peace was but the calm before the storm. Their pleasant days were to be clouded by sorrow and terror. The Whites came again. They came not as curious visitors, but to make a home in the land. They came not to share the soil with the dark men, but to appropriate it. **James Bonwick, _The Last of the Tasmanians; or, the Black War of Van Diemen’s Land_ 1870**\n[^12]: The first settlers after landing on these shores, lived peaceably in their new possession for several months before the two races came to blows; and the hostility thus began continued with no great intermission, until, and only ended with, the removal of the last of the blacks to Wyba Luma, which was the name they gave their asylum on Flinders Island. **J E Calder, _Some Account of the Wars, Extirpation, Habits, &c., of the Native Tribes of Tasmania_ 1875**\n[^13]: The story of the conflict of races in Tasmania is similarly involved in misty obscurity. **James Bonwick, _The Last of the Tasmanians; or, the Black War of Van Diemen’s Land_ 1870**\n \N 999 \N 407777 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.4383412959474 0 \N \N f 253738874 \N 3 18066011 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3864 2022-11-11 03:05:42.396 2025-03-29 22:39:49.152 Bangladesh Crisis: Now Hundreds protest in Dhaka over violence against Hindus In my previous posts https://stacker.news/items/639184/r/Coinsreporter, https://stacker.news/items/636171 and https://stacker.news/items/637639, I advocated strongly against the protests. While my posts gave some clues why the protests weren't only hold for discontent against Hasina Government, the outcome of this well planned conspiracy of establishing Islamic Extremism is Bangladesh are broadly visible now. Many jails have been broken, terrorist have been either released or have fled, the leaders of islamic extremist political parties are eying to polarize the votes and demanding an election. The shops and public buildings are being vandalised without restrictions. If these weren't enough to clad Bangladesh in Islamophobia, they are killing Hindus and damaging Hindi temples. \n\nHindus now have to beg for their lives in their own country that has just been as democratic and secular before a few days ago as India and USA are. \n\n> Hundreds of people protested in the Bangladeshi capital Dhaka on Friday against violence targeting the country's minority Hindus. A school teacher was killed and at least 45 people injured as homes, businesses, and temples of Hindus in Muslim-majority Bangladesh were targeted following Hasina's resignation on Monday.\n![](https://m.stacker.news/44823)\n\n[Source](https://www.reuters.com/world/asia-pacific/hundreds-protest-dhaka-over-violence-against-hindus-bangladesh-2024-08-09/)\n\nhttps://youtu.be/zQxcgBampvE?si=yPL9csQk3CGCmO_N\n\n\n**The United Nations secretary-general Antonio Guterres has expressed his opposition to any racially motivated attacks or incitement to violence in Bangladesh**, according to his deputy spokesperson Farhan Haq. This statement has come in response to the recent violence against the Hindu minority community in the country.\n\n**The Indian government has also expressed its deep concern over a surge of violence targeting minorities in Bangladesh.** In a statement government said, "The violence in the neighbouring country has been severe and unforgiving with numerous Hindu temples, homes, and businesses targeted and vandalised, women assaulted, and at least two Hindu leaders affiliated with Hasina’s Awami League killed. In a particularly horrific incident, 24 people were burned alive at a luxury hotel owned by an Awami League leader in Jessore district, adding to the toll of 440 deaths in the latest spate of unrest."\n[Source](https://www.business-standard.com/amp/external-affairs-defence-security/news/concerned-over-attacks-on-minorities-amid-political-crisis-in-b-desh-govt-124080601482_1.html)\n\nEven after, Indian government and UN confirmed the violence against Hindus in Bangladesh, pro-islamic media is either silent or quashing any claims of such violence in uncontrolled Bangladesh. \n\nAl Jazeera, which claims to be an independent news organisation funded in part by the Qatari government, has been criticizing all media outlets which have tried to present a realistic image of these protests in Bangladesh. On the reports of violence against Hindus in Bangladesh, Al Jazeera called them 'misleading and inappropriate' in a recent article.\n\nBut took an U-turn and accepted —\n\n> Al Jazeera has independently verified that only two Hindus have been killed since Hasina’s ouster on Monday – one police officer and one activist with Hasina’s Awami League party.\n[Source](https://www.aljazeera.com/amp/news/2024/8/8/islamophobic-alarmist-how-some-india-outlets-covered-bangladesh-crisis)\n\n***The question here is—Can we trust Al Jazeera when they're not even sure and when we know it's a news agency that is super pro-islamic.***\n\nI would like to inform everyone here that attacks on Hindus and other minorities in Bangladesh are real. So far, from real sources in Bangladesh, I've been informed that at least six people have been killed from the minorities by Islamic Extremists. I've not recieved any information about '24 burnt alive' but the damage to temples and shrines is happening at a large scale in Bangladesh. The minorities are feeling vulnerable due to political and administrative instability in the country. \n\n> "Several hundred Bangladeshi nationals, mostly Hindus, gathered at different points along India's border with Bangladesh," Amit Kumar Tyagi, India's Border Security Force (BSF) deputy inspector general, told to the press.\n[source](https://m.economictimes.com/news/international/world-news/hundreds-of-bangladeshi-hindus-try-to-cross-into-india/amp_articleshow/112367719.cms)\n\nNow when Army officials have confirmed that, Hindus and other minorities are gathering around the Indian boarder to Bangladesh, there shouldn't be any doubt that minorities are being attacked in Bangladesh. There is also not doubt that Bangladesh has just become another islamophobic state which will go on to establish religious narrative inside Bangladesh for forever. \n\n## Other Updates: \n\n### 1. **Sheikh Hasina To Return To Bangladesh For Elections**\n> Sheikh Hasina's son has said that former Bangladesh Prime Minister Sheikh Hasina will return to her country when its new caretaker government decides to hold elections, her son has said.\n[Source](https://www.ndtv.com/world-news/ex-pm-sheikh-hasina-will-return-to-bangladesh-for-elections-says-her-son-6297509)\n\n### 2. 232 people killed since fall of Hasina government in Bangladesh: Report\n**[Read more here](https://www.deccanherald.com/world/232-people-killed-since-fall-of-hasina-government-in-bangladesh-report-3142475)**\n\n### 3. Muhammad Yunus takes oath as head of interim government\n**[Read more here](https://www.thehindu.com/news/international/bangladesh-crisis-protests-live-updates-sheikh-hasina-mohammad-yunus-august-8/article68499719.ece)**\n\n\n\n\n\n \N 11621 \N 3864 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.8755860349348 0 \N \N f 124629734 \N 1 24561738 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447928 2025-03-22 09:34:23.415 2025-03-29 22:39:49.152 SATSuma - my first post to SN! Hi\n\nFirst post on SN 🙂. I'm sure there are lots of really talented coders here so I'm a bit nervous 😰 about posting this, but and I wanted to introduce my first (amateur) Bitcoin app. It's for Windows only (yeah, I know), sorry. It started as a little single-screen experiment and I just kept adding and iterating until it reached the point that I wondered whether anyone else might use it.\n\nIt tries to do lots of things (block explorer, stats, xpub viewer, graphs, bookmarks, etc). It's free and open source. I've tried to make it as 'polished' as I can but I emphasise that I am an amateur who's always trying to learn! Feedback, suggestions, ridicule, etc is welcome 😆\n\nhttps://satsuma.btcdir.org\n\nHere are a few screenshots using a variety of the preset themes.\n\n\n\n![GG-Lt9BW0AAVluv.jpeg](https://m.stacker.news/17284)\n\n![GG-Lt-dWUAAPK_q.jpeg](https://m.stacker.news/17285)\n\n![GG-Lt-GWEAAjgIE.jpeg](https://m.stacker.news/17286)\n\n![GG-LxKMXEAEIL1v.png](https://m.stacker.news/17287)\n\n![image-35.png](https://m.stacker.news/17288)\n\n![image-36.png](https://m.stacker.news/17289) https://satsuma.btcdir.org 10981 \N 447928 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.54114842797219 0 \N \N f 29074875 \N 1 176286170 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455527 2025-03-27 05:40:34.195 2025-03-29 22:39:49.152 Global Debt Crisis: Ethiopia Defaults on $33 Million Debt Payment Ethiopia has plunged into economic uncertainty, defaulting on a $33 million interest payment due on December 11. This setback follows the Tigray civil war, impacting investor sentiment and economic growth.\n\nThe Global Debt Crisis Unfolds\n\nEthiopia joins the ranks of nations like Sri Lanka and Lebanon, standing at the brink of a debt crisis. Over 70 low-income countries grapple with a colossal debt burden of $326 billion. China, the largest creditor, poses a significant challenge for debt servicing. A December 2023 World Bank report signals a 5% increase in debt servicing payments for developing countries, with Arab nations like Tunisia, Egypt, Jordan, and Lebanon facing high-risk debt scenarios.\n\nChallenges in Debt Restructuring\n\nEthiopia's debt crisis centers around a missed $33 million interest payment on a $1 billion bond from 2014. Despite ongoing restructuring talks, resolution proves elusive due to differences between China and Western countries and private lenders' reluctance. Ethiopia's debt to GDP ratio stands at 46.37, lower than Kenya's 67.94, yet liquidity issues persist. \n\nhttps://www.bloomberg.com/news/articles/2023-12-25/ethiopia-fails-to-pay-coupon-becoming-latest-african-defaulter \N 17030 \N 455527 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 25.1850634975741 0 \N \N f 172909377 \N 1 207281572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434115 2025-03-11 15:57:21.787 2025-03-29 22:39:52.936 \N - calm down and dig how people survived the big flood - is it really impossible to survive this time?\n- stack more survival life skills just in case \n- keep learning, e.g.how afterlife will work? Maybe it shouldn't be so scary at all?\n- fly home to spend some time with parent\n- being around the people who I care about and love with all the time that I have https://example.com/ 17082 433828 433828.434115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4066141234619 0 \N \N f 72688100 \N 1 78215829 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 2025-03-20 06:38:35.957 f \N \N \N 0 0 0 0 1 0 0 402903 2025-02-14 08:47:24.885 2025-03-29 22:39:52.936 \N An @DarthCoin warning is worth heeding.\nSaylor makes a lot of really interesting points and commentaries with regard to economics, monetary technologies of the past etc. But I have never stopped to ask why and assumed it was altruistic. It doesn’t appear that he is a fiat maxi playing the bitcoin game (and early to the party) rather than a bitcoin-maxi out to change the fiat game. I shan’t make that mistake again. https://example.com/ 667 402896 402871.402896.402903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.24774000986749 0 \N \N f 793423667 \N 5 1712024 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428521 2025-03-07 11:23:34.88 2025-03-29 22:39:49.152 BitVM: A Tool for Smarter Smart Contracts - Super Testnet - Satsconf 2023 \N https://www.youtube.com/watch?v=iEM_txmJYxA 2010 \N 428521 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 28.3212472642279 0 \N \N f 86106224 \N 1 59207362 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427311 2025-03-06 10:10:09.178 2025-03-29 22:39:52.935 \N Going back to my citadel is my always main priority.\nI am just preparing my backpack and tools, waiting for a weather window to go.\nThat citadel must be done ASAP.\nRight now I am like this car...\n\n![muscle_cars_01.gif](https://m.stacker.news/22081) https://example.com/ 8400 427251 427251.427311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6167873094514 0 \N \N f 5387790 \N 1 133684062 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451044 2025-03-24 11:09:21.364 2025-03-29 22:39:52.935 \N Day 363 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 8284 450805 450805.451044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6207942770891 0 \N \N f 1073348199 \N 6 33548021 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437479 2025-03-14 14:53:29.588 2025-03-29 22:39:52.935 \N Are you familiar with rubber ducking @siggy47? I think it could really help you out.\n\nBasically, by explaining the issue you are facing and the things you have tried in extreme detail, there's very high chances you'll spot the issue/solution on your own along the process. It tends to work great for silly mistakes like this one.\n\nhttps://en.m.wikipedia.org/wiki/Rubber_duck_debugging https://example.com/ 18734 437371 437301.437371.437479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3107251570239 0 \N \N f 348864742 \N 2 124606732 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434806 2025-03-12 08:53:41.568 2025-03-29 22:39:52.936 \N If word gets out that companies building on lightning are raising millions of dollars then it could really spread like wildfire as it could attract more devs https://example.com/ 18241 434795 434795.434806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.59090443117528 0 \N \N f 194480180 \N 1 243452342 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 05:54:51.309 f \N \N \N 0 0 0 0 1 0 0 173779 2024-05-22 09:14:37.644 2025-03-29 22:39:49.152 FTDG #30: A day where everything went wrong Sulking and silently fuming on the Mass Rapid Train as I am typing this. I have exactly ten minutes before I need to pick my son up at the childcare centre. \n\nToday was a rough day for me for various reasons. First, a young lady, conscious about her looks, came to school with two earrings on each ear. This was against the school rules, so I got her to take them off. She refused, stating that if she took them off, her ear lobes would close. Alrighty. My question to her would be, why didn’t you ensure that you had a transparent stick to stick in your ear? But alas, I couldn’t ask that question because she walked away from me.\n\nApparently, she then turned nauseous and sought to leave school early. I had to clarify the matter with her mother. She was upset that the school didn’t practise compassion with her daughter because she recently had a spate of latecoming incidents and lacked the motivation to attend school. “Are your school rules really that important?” she retorted.\n\nGuess I was calm enough because I responded in a way that soothed her feelings. Of course, I apologised.\n\nSubsequently, I entered my classroom, only to find out that one boy had poked his friend with a pen/pen knife. He insisted that it was a pen; two of his classmates were brave enough to point out that he had used a pen knife. Anyway, the weapon of choice was thankfully not important because the victim seemed to suffer a superficial wound. \n\nHowever, my students were observing how I would handle the issue, so I lectured the aggressor about bullying and stuff like that. I would spare you guys the torture of reading my well-measured lecture.\n\nAfter my last class, I settled down to set the comprehension passage for the final year exam. I expected to be able to go home around 4.30pm. But, to my horror, I realised that my Head of Department had decided to change the formatting of the comprehension questions. The cognitive load of having to adjust to the new formatting and getting it represented in the document delayed my work flow and disrupted my thinking. I ended up leaving at 5.30pm.\n\nMy Head of Department is an empathetic and competent boss, but she has the tendency of dropping the ball because her plate is overflowing. To me, this problem could have been easily avoided if she had delegated the setting of the Terms of Specification to someone else. I would have gladly done it to make my life easier. \n\nWhile I have finished setting the Final Year Exam, I still need to revamp the workbook for next term. The comprehension exercises there need to be aligned with the exam passage; otherwise, my students wouldn’t be able to derive much value from it. I don’t mind doing the work, but I don’t like to feel rushed into doing things, especially when the alternative way of delegating work seems so obvious to me. \n\nI will need to find time to manage my boss and give her direct feedback because it’s affecting my productivity. It’s a task that I don’t look forward to, but well, it is what it is.\n\nI will like to end this on a positive note. Thank you, Stacker, for the huge zap on my post yesterday. Rest assured that I will pay it forward by organising some bounties! \N 16684 \N 173779 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.669598068223145 0 \N \N f 452676769 \N 2 193795111 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458271 2025-03-29 06:44:34.311 2025-03-29 22:39:49.152 The first time I emigrated. Lately I have been thinking about the first time I emigrated, and I want to write it because it helps me untangle the knots in my mind and look back to assess how little or how much progress I have made. I want to introspect on that decision that changed my life completely. It was a hasty, volatile, improvised decision, without any type of planning or prior study about where I was going, this post should be called "What things NOT to do if you want to emigrate." In this publication I told about the situation that my native country is going through https://stacker.news/items/378450/r/bief57 . \n\nPutting that in context, my migration happened like this, I had a couple of acquaintances who were planning to leave the country, their destination was Ecuador, they were really studying (as they should) the possibilities they could have there, pros and cons, planning how much money they needed, etc., listening to them made me focus and that idea was implanted in my mind, I thought "anyone can emigrate", the truth is that before listening to them that was an unthinkable idea for me. One of the boys left and apparently things weren't bad for him, every day I saw that more and more people were emigrating and I was really fed up, that my salary wouldn't even be enough to buy me a pair of pants, of the power outages, of water, tired of not being able to buy deodorant whenever I wanted, tired of getting up early to get food due to "rationing" tired of the fact that buying fries at McDonald's was a fucking luxury, can you imagine living in a country where a few fries from McDonald's compromise half of your salary? McDonald's was forced to sell fried yuca to avoid going bankrupt, yes, just as you read fried yuca, they continued selling chips but there were very few people who could afford them. \n\n![370px-Food_scarcity_in_Venezuela_graph.png](https://m.stacker.news/26687)\n\n![ft-hiperinflacion-escasez.jpg](https://m.stacker.news/26688)\n\n![maduro-ordena-a-supermercados-bajar-precios.jpg](https://m.stacker.news/26689)\n\n![yuca-3821469681.jpg](https://m.stacker.news/26685)\nGetting to the point, I said "I'm leaving" "I'm leaving" I can't take it anymore, I had 100 euros that my grandmother had given me when I was 10 years old, and 50 dollars that an aunt gave me when I was 8 years old... that was My heritage, which I had well stored in a small metal box under lock and key, was kept for 12 years until I finally decided to use it and they were the ones that helped me emigrate. I bought a ticket to travel by bus to Ecuador. It cost me 180 dollars. They helped me. with money to be able to complete my ticket, my parents were happy with my decision, but they never tried to stop me. For my good luck, 3 days before leaving the country, TADA! I found out that I was pregnant, it was a bucket of cold water (don't judge me, the contraceptive method failed me), I told my parents, my dad's face of disappointment was a poem, and my mom was devastated, double blow, she got it live that month, that her eldest daughter would leave the country and that she would now be a grandmother, she suggested that I have an abortion, I doubted it, but I told her no, that my pregnancy would continue. The day of my departure arrived, I was expecting a trip of several days, my family accompanied me to the bus terminal to say goodbye to me, they started calling people because the bus was about to leave, I started to say goodbye before getting on the bus. bus, my uncle gave me 100 euros as a surprise, it was part of some small savings that he had, he still doesn't know it, but with those 100 euros I was able to buy food, without that money I don't know what would have been done, I hugged my sisters, me dad, my grandmother and finally my mom, I still remember her face of pain, I had never seen her so devastated, her face is the only one I remember from that day. \n\nThe bus left, it took 16 hours to get to the border, we got off and had to cross the border on foot, since cars could not pass from one country to another, only the pedestrian crossing was enabled, I stood at the border looking from one side to the other, I took a photo of my exit, my way of saying goodbye and crying crossing, now I was scared, but there was no way I was going to return without at least trying and even less with my baby growing inside me, it was Now or never, that's how I felt at that moment. \n\n![IMG-20160907-WA0006.jpg](https://m.stacker.news/26690)\n\nThe trip continued, beautiful landscapes of Colombia, nausea from the mountainous road and the first trimester of pregnancy, a combination that I do not recommend to anyone. The only thing I could bear to eat due to nausea was a soup. After 3 days of traveling I arrived at the border of Ecuador. I was very cold. I wasn't wearing ideal clothes for that climate. I already knew it would be cold but I didn't imagine how cold it would be, and In any case, I didn't have the money to buy suitable clothes, so it didn't matter, enduring the situation was the only option, 10 hours later I finally arrived at my destination.\n\n![IMG_20160908_174845.jpg](https://m.stacker.news/26691)\n![IMG_20160908_174710.jpg](https://m.stacker.news/26692)\n![IMG_20160907_184647.jpg](https://m.stacker.news/26693)\n![IMG_20160908_205406.jpg](https://m.stacker.news/26694)\n\nMy first day in Ecuador: I arrived at dawn so I had to wait until dawn to find where to have breakfast, the worst breakfast of my life (that's how I felt at that moment) there was no sandwich or anything like that, the breakfast that was available was: rice, poorly seasoned chicken in sauce, a hard bread with a slice of unsalted cheese, coffee and a tree tomato juice, ok it seemed like a terrifying combination, I'm sorry but in Venezuela breakfasts are not like that, for those who have the possibility of having breakfast, the first option is arepa, but sandwich or pancakes; The rice and chicken did not provoke me, I was already quite dizzy from the pregnancy, the low blood pressure and the lack of oxygen caused by the altitude, I tried to eat the bread and cheese as best I could, the second bite I vomited , horrible, I felt very ashamed, I felt horrible because of the dizziness, what a way to start, after I managed to calm down a little I just drank tree tomato juice, I had never tried it in my life, and it was one of the few things that I was able to tolerate during pregnancy, so it was a blessing for me. After that unforgettable breakfast, I looked for a rental, luckily I found a room quickly, I left all my things and went for a walk, I had to look for a job urgently, there was a shopping center nearby, it seemed incredible to me to see so many stores, so many products and offers, in Venezuela that normality had disappeared so many years ago, in that shopping center there was a super market and what a spectacular feeling I felt when I was able to buy food without having to wait in line for 10 hours, being able to buy my hygiene items without any type of restriction , it was glorious, it is absurd how they degraded my country so much that buying deodorant without problems was a success. I walked further through the mall and had my first craving, nachos with cheedar cheese, I couldn't resist and bought it. I didn't get a job that day, but it was fine despite the incident in the morning and the dizziness that accompanied me. \n\n![Screenshot_20240415-001738_Photos.jpg](https://m.stacker.news/26695)![IMG_20161011_150852.jpg](https://m.stacker.news/26696)\n\n Second day: I went to the nearest health center to start my prenatal check-up. While I was waiting I saw a vending machine that I thought was somewhat curious. I went over to see what it had and to my surprise, they were condoms. I couldn't believe it, especially because of the fact. that they were free. I told myself "you made the right decision", it was my appointment's turn, and when the doctor performed the echo, he told me that I had a risk of miscarriage, he gave me the indication that I had to rest in bed for at least a minute. month, that was like a slap in the face for me, how could I be in bed for a month? I needed to look for a job as soon as possible, the little money I had I had spent on renting a room and on food for 15 days. I returned home and chaos began.\n\nI tried to rest for about a week, it was hard, the nausea got worse and worse, I spent most of my day with my head stuck in the toilet from vomiting so much, instead of gaining weight, I lost. The low blood pressure made it impossible for me, emotionally I was on the floor, well, literally too, sometimes I had to crawl out of bed to where I had a small kitchen to look for some fruit and water because I couldn't get up, my breathing was slow , I was sweating cold, nauseated, my vision was blurry, my body was shaking, it was annoying not having help even for a glass of water, I couldn't give up, I was no longer alone, I drew strength as best I could and went out to continue looking for work , it took me a while, it wasn't fast, I went through things that I don't want to write about, not for now.\n\n The first job I got was in a small restaurant, they were looking for a waitress, I had never done that job, but I thought it wouldn't be difficult, the pay was a pittance but it was better than nothing. I was only in that place for 1 day, taking dishes from the kitchen to the tables was easy, cleaning the tables too, the problem was when they made me carry very heavy boxes, and I couldn't do that because I ran the risk of losing my baby At no time did I say that I was pregnant because I was afraid that they wouldn't give me the job. It was also difficult to wait on the tables when I was so nauseous and having to go to the bathroom all the time to vomit and hide the fact that I wasn't about to faint from low tension. I had to turn down that job and of course they didn't pay me for the day I worked.\n\nThe days went by, I was still looking for work, I entered a craft market and saw that in a place that sold jewelry they were looking for girls for sale, I applied for the job, but they rejected me, guess why... Because of my appearance, I didn't meet their expectations. beauty standards, they didn't like my clothes, that I didn't have makeup on and my hair, shit, that was humiliating, going hungry had been stupid. To clarify, 1) I didn't have nice clothes, much less new ones, I used the only thing I had that covered me from the cold, it's not like my clothes were dirty or like I hadn't been bathed, 2) I didn't have money for food. , much less did I have for makeup or to buy a straightener for my hair. That moment was so I don't even have the words to describe what I felt. At that moment I started to turn my back on the system, and show them my middle finger. If no one was going to give me a job, it doesn't matter, I would create my own.\n\n They recommended me a place where they sold slices of cake on consignment, they sold each one for 0.55 dollars and I sold them for 1 dollar, every day I sold between 20 and 30 slices. The salary at that time was 10 to 12 dollars a day for 10 hours of work, I made the same amount of money for 5 hours of work, I walked every day selling my cakes, at first I felt like a mouse in the open. without knowing where to go, but little by little everything was taking color, it was not easy, there were days that were harder than others, I spent the 9 months of pregnancy with vomiting (supposedly it is only the first trimester of pregnancy that there is vomiting ) and suffering from dizziness due to low blood pressure. But I didn't care, I was paying my bills, food and I wasn't dependent on anyone humiliating me for money.\n\nThere are too many things I could go on writing about my first migration, from the times I got lost, how I was left without a phone, the nights I was afraid, the days I didn't eat, good people I met and others not so good, but really. They are not details that I want to highlight, they still move sensitive fibers in me, maybe one day I will write about it, my hands also went numb from writing so much, I spent 2 hours writing my experience and by mistake I deleted more than half and I had to do it Again, I got a little frustrated because I was really inspired by venting, observing every step I have taken, seeing how I went through situations that I never thought I would overcome and that today are just like a disturbing dream. To conclude this anecdote, for reasons external to me and with a lot of anger and regret, I had to return to Venezuela, I didn't want to, I had already fought so hard those months, I had managed to move to a mini apartment that I liked, I was afraid of the sound of the wooden floor at night, but wow I really saw myself living there for at least 2 years, although it only had a foam mattress, a 2-burner stove without an oven and a borrowed plastic table, well I could already imagine Since I was going to decorate everything, I had the money collected for my princess's things, but I had to say goodbye to all that effort, I felt frustrated, I thought that everything had been in vain, I was afraid of not being able to emigrate again, of course I wanted to see my family, but I didn't want to live in a crisis of scarcity again. I returned 8 months pregnant, on the bus again, I was happy to be with my family and sad because I had left all my effort in the trash. Then I reflected and realized that I needed to live that experience, to learn to value each job, value myself and show myself that I can, I needed that experience to learn to support myself, and thank you that I was alone and not with my already born daughter. . So I just dedicated myself to enjoying sharing my family who filled me with a lot of love and my daughter when she was born, my mother who accompanied me and guided me on how to care for a newborn, I understood why my mother looked so devastated the day I emigrated. . When I was 9 months old, my baby emigrated again, but this time with more knowledge, with better plans, not perfect, but feeling empowered because I knew how to create my own source of income, I have not seen my family again for 6 years. years, I miss them very much, it was worth leaving Ecuador to reconnect with my family for a year.\n\n And you know what? I'm not interested in McDonald's fries anymore. \N 16653 \N 458271 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 26.2195711692153 0 \N \N f 338058451 \N 2 139230571 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 409969 2025-02-20 03:14:09.287 2025-03-29 22:39:52.936 \N When subscriptions to territories? There's far too much stuff I don't care about showing up now. I find almost nothing upvote worthy scrolling through recents which was my favorite past time on here. https://example.com/ 11992 409760 409708.409760.409969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1584700317723 0 \N \N f 143063438 \N 1 240522877 0 f f \N \N \N \N 409708 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441234 2025-03-17 21:12:01.758 2025-03-29 22:39:52.935 \N There's no obvious good (nor bad). One important factor is what kind of node you'd like to run, and all of the following is about running a *routing* node. If you send/receive a lot (for whatever reason), things are very different.\n\nI wrote down some ideas on https://c-otto.de. If you decide to open a channel to my node (c-otto.de), it needs to be 10M sats or more. Furthermore, I regularly close channels if they don't perform (in comparison to the other channels). For this I take into account how many sats are "stuck", see https://github.com/C-Otto/lnd-manageJ/blob/main/rating.md for a more detailed explanation.\n\nIn general I'd recommend opening (and maintaining!) just a few larger channels, instead of having a higher number of smaller channels. This, of course, depends on how many sats you'd want to have on your node (which, then, is a hot wallet). If that amount is below 5 BTC, I'd recommend not running a routing node.\n\nI personally really liked Alex Bosworth's talk (from five years ago): https://www.youtube.com/watch?v=HlPIB6jt6ww\n\nIf you're inexperienced, I suggest you start slow. Just a few channels, not a whole lot of liquidity, to get your feet wet. You'll learn a lot (and you have to learn a lot), and you'll need some time to adjust your tooling. https://example.com/ 5870 441226 440692.441011.441130.441211.441215.441226.441234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.57383206544116 0 \N \N f 368460963 \N 2 196604108 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458237 2025-03-29 06:07:37.183 2025-03-29 22:39:52.936 \N Economists tend to have extreme recency bias. She appears to be a fairly young economist. I'm guessing she doesn't even know that the ZIRP she grew up with is an historical aberration. https://example.com/ 20717 458211 458122.458134.458211.458237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0907181001878 0 \N \N f 817877614 \N 5 56392375 0 f f \N \N \N \N 458122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402091 2025-02-13 14:50:58.83 2025-03-29 22:39:49.152 These days I'm watching Mr. Robot | Elliot’s monologues are amazing! These days I'm watching Mr. Robot! I'm enjoying it very much! \n\nElliot’s monologues are amazing and I recommend it to those who haven't watched it yet. \n\nI guess many stackers here have seen this TV series. What do you think about it? \n\nWhat is your favorite quote from Mr. Robot? \n\nHere are a few that I loved: \n\n>This is the world we live in people relying on each other mistakes. To manipulate one another, to use one another. Even relate to one another. A warm messy circle of humanity. \n\n>I don't mean to be rude, I'm just being honest. \n\n>The devil is at its strongest while we are looking the other way, like a program running in the background silently. While we are busy doing other shit. Daemons they call them, they perform action without user interaction. Monitoring, logging notifications. Primal urges,repressed memories, unconscious habits.They're always there always active . You can try to be right, you can try to be good, you can try to make a difference, but it's all bullshit. It's intentions are irrevalent.they don't drive us, Daemons do.\n\n>Daemons. They don't stop working. They are always active. They seduce. They manipulate. They own us. And even though you're with me, even though I created you, it makes no difference. We all must deal with them alone. The best we can hope for... The only silver lining in all of this... is that when we break through, we find a few familiar faces waiting on the other side. \n\nHow about you? \N 21406 \N 402091 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 12.8816236641693 0 \N \N f 1143187558 \N 10 224846464 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 403755 2025-02-15 07:11:20.34 2025-03-29 22:39:52.936 \N hey! thanks!\n\ngreat question! I’ll definitely be posting updates to the base58 twitter and nostr profiles. I’m working on our schedule for next year right now! https://example.com/ 9350 403754 402904.403694.403750.403754.403755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5796879194985 0 \N \N f 1726891776 \N 14 100003377 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455632 2025-03-27 08:33:21.069 2025-03-29 22:39:52.936 \N Interesting perspective. afaik, obelisks around the world used to mark the time of the day, month, years based on the shade generated by the sun. I saw somewhere a really nice documentary of how the one in St. Peter place in the Vatican was working and the esoteric meaning related to it. Below is a summary of my understanding of my understanding. \n\n![](https://m.stacker.news/42537)\n\nThe sum of the shades also relate to the letters J and X, initials of an old name of a messiah (**J** for _Jesus_, **X** for _Christ_), representing the most known _[christogram](https://en.wikipedia.org/wiki/Christogram)_, the symbol generated of the first two letters of the Greek word for Christ, “Χριστός” (Christos), which are Chi (Χ) and Rho (Ρ), overlaid or superimposed.\n\na bit more info about the OCCULT SYMBOLISM OF THE VATICAN here https://werdsmith.com/genesology/AxhSAwIRw\n\n[^1]: This is just to give an idea, I maybe made a mistake between equinox/solstice and sunrise/sunset. Can't find the documentary where this was mentioned! https://example.com/ 1433 455628 455525.455531.455628.455632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.992116003214 0 \N \N f 227355935 \N 1 246331759 0 f f \N \N \N \N 455525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433589 2025-03-11 08:47:45.013 2025-03-29 22:39:52.936 \N open source software doesent get anywhere on its own. Having a company that can "advertise" / integrate / make it mainstream, can be a good thing. But im honestly just trying to be contrarian :) https://example.com/ 1717 433588 433588.433589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9240550971144 0 \N \N f 199121690 \N 2 231289262 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423797 2025-03-03 15:52:25.953 2025-03-29 22:39:52.936 \N Learning how to manage an SN territory. Want to own one soon. https://example.com/ 14169 417471 417471.423797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8532302154302 0 \N \N f 189845015 \N 1 34616030 0 f f \N \N \N \N 417471 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413943 2025-02-23 14:39:05.648 2025-03-29 22:39:52.936 \N ### The largest country bordering France is Brazil.\n\n-----\n\n#### Fully integrated in the French Republic since 1946, French Guiana is a part of the European Union, and its official currency is the euro.\n\n![image](https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/French_Guiana_in_France_2016.svg/1920px-French_Guiana_in_France_2016.svg.png)\n\nRead more about French Guiana on **[wikipedia](https://en.wikipedia.org/wiki/French_Guiana)** https://example.com/ 18426 413903 413675.413903.413943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.900944452385 0 \N \N f 422656928 \N 4 28684017 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 414177 2025-02-23 17:38:03.45 2025-03-29 22:39:52.936 \N do these magic words\nI would like to opt out\nstill work?\n\nwonders if everyone is consenting by default because they are led to believe this is now how things are done, and they have no alternative?\nor is there no alternative?\n\nif only we knew of a lawyer who could look into this? :) https://example.com/ 4128 414168 413675.413884.414168.414177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0566849946489 0 \N \N f 270208444 \N 2 30069323 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427246 2025-03-06 08:44:28.549 2025-03-29 22:39:49.149 Sunday Survey: BIP300 soft fork scenario A soft fork for BIP300 comes out, what software do you run for your node?\n\nNote if you run whatever is on there now, you would let proof-of-work determine which chain you follow. \N 17157 \N 427246 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.2037195043601 0 \N \N f 633365632 \N 5 112159870 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 415406 2025-02-24 19:20:59.481 2025-03-29 22:39:52.936 \N https://github.com/stackernews/stacker.news/blob/master/components/reply.js https://example.com/ 17221 415399 414755.415076.415331.415399.415406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6354291569271 0 \N \N f 377124513 \N 2 141476739 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443518 2025-03-19 11:53:42.682 2025-03-29 22:39:52.936 \N ![stack and wait](https://imgproxy.snort.social/bGKlgKUKf-bpeyJdlei3dGDEMxpi0Zb4Csnr3qzR030//aHR0cHM6Ly92b2lkLmNhdC9kL0taNTF5RGdVTkdaTmtVS1pnc2p4aGgud2VicA) https://example.com/ 2773 443501 443489.443501.443518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0558247278161 0 \N \N f 211827800 \N 1 242294408 0 f f \N \N \N \N 443489 \N 0 0 \N \N f \N 2025-03-26 05:11:36.281 f \N \N \N 0 0 0 0 1 0 0 437789 2025-03-14 22:11:24.133 2025-03-29 22:39:52.936 \N We are proud to have Max as one of our investors at IBEX https://example.com/ 20799 437784 437714.437716.437779.437784.437789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7485264683692 0 \N \N f 232416864 \N 2 152178504 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 445964 2025-03-20 20:18:44.116 2025-03-29 22:39:52.936 \N Yep, this is a big opportunity. I've thought about this concept.\n\nVery cool stuff.\n\n> Websites are Nostr events, themes are open-source The Ghost themes published on relays and Blossom servers. Npub.pro does not host your data, it only hosts the code to convert Nostr events to web pages. The NIP-512 is here. https://example.com/ 1261 445953 445953.445964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.94325738616806 0 \N \N f 392401571 \N 5 51902438 0 f f \N \N \N \N 445953 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446059 2025-03-20 22:29:24.787 2025-03-29 22:39:52.936 \N Wow. I have to take a nap after reading this routine. https://example.com/ 14385 446016 446016.446059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.481905782501 0 \N \N f 125343802 \N 2 223403258 0 f f \N \N \N \N 446016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435676 2025-03-12 21:46:09.481 2025-03-29 22:39:52.937 \N https://imgprxy.stacker.news/8OBNYcoiaIKe5BMMc4dv1SHhBF_3JR5zJ2QYk5JOTek/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLnBpbmltZy5jb20vb3JpZ2luYWxzL2JjL2JhL2MzL2JjYmFjMzM0Yzg0Y2FiNmQyYzE3ZmUwYTZhNjU5MzhjLS1yYWNlLXBhcnR5LS1pbi5qcGc https://example.com/ 4802 435609 435030.435609.435676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.85232279670767 0 \N \N f 67714030 \N 1 60439569 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 17:12:09.045 f \N \N \N 0 0 0 0 1 0 0 406114 2025-02-17 05:00:58.727 2025-03-29 22:39:52.937 \N hahaha cool challenge! https://example.com/ 2042 404826 404826.406114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7214324070041 0 \N \N f 132793862 \N 1 43478207 0 f f \N \N \N \N 404826 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2560 2022-10-15 10:35:34.601 2025-03-29 22:39:52.937 \N Fiat Channels and Valet app (Simple Bitcoin Wallet fork).\n\nPlease, rate us\n\nhttps://makers.bolt.fun/project/fiatchannels https://example.com/ 18412 2554 2553.2554.2560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.982907982321 0 \N \N f 228434790 \N 1 178973048 0 f f \N \N \N \N 2553 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457001 2025-03-28 03:55:41.116 2025-03-29 22:39:49.151 Are wallet companies sustainable? I'm seeing a lot of new Bitcoin wallets popping up left and right (Nayuta, Mash, etc.). Some developers build companies around their dev team and seemingly work with an expectation to get paid, but how do these companies make money? Just thinking about the lightning wallets I use like Muun, Mutiny, Phoenix, and Wallet Of Satoshi, I don't know what their end game is with regard to monetization. Does anyone know how these companies are planning to stay sustainable in the long run? Are any of them backed by VCs with an expected ROI?\n\n*I focused on lightning wallets in my examples because a good amount on-chain ones seem to have some sense of their desired monetization strategy (Wasabi has coinjoin fees, Nunchuck has subscriptions, Green has Jade, Liana has subscriptions, etc). Please feel free to add input to on-chain companies as well though. Also, some Lightning companies have LSPs so there is a sense of monetization strategy in that department. \N 18468 \N 457001 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 4.60452193472136 0 \N \N f 250778502 \N 2 230984018 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406399 2025-02-17 10:03:05.088 2025-03-29 22:39:49.152 MONEY CLASS OF THE DAY: The Tulips, Bubbles, Financial Manias and Bitcoin “It was once cool and learned to dismiss Bitcoin as a ‘Tulip Bubble,’” writes Allen Farrington and Steve Baker in a recent piece for _[CityAM](https://www.cityam.com/trumps-election-means-its-time-to-take-bitcoin-seriously/)_. “We believe it will not be for much longer.”\n\nIt never should have been. \n\nWhile I haven’t seen “tulip” references to bitcoin in a long while, I doubt the slander went away because the nocoiners learned the financial history I’m about to account—or because they listened to people like me harping on endlessly about the financial bubbles of the past [^1]. \n\nRather, the insult became boring: Somehow it didn’t hit enough when bitcoin, like a cockroach (hashtag _[The Economist](https://www.economist.com/finance-and-economics/2023/12/18/why-bitcoin-is-up-by-almost-150-this-year)_) returns, over and over, and breaks past records—while it was already supposedly dead (477 times as of this writing, says [Bitcoin Obituary](https://99bitcoins.com/bitcoin-obituaries/)). How rude. \n\nBy telling me that **bitcoin is a bubble like tulips**, you’re telling me three things: \n-\tYou don’t understand bitcoin\n-\tYou don’t understand bubbles [^2] \n-\tYou certainly don’t understand what happened in Amsterdam 1637. \n\nTulips in Amsterdam during the winter of that year were nothing like bubbles, if indeed such a thing even exists: If anything, the Netherlands is still a tulip powerhouse with some three-quarters of the [global tulip market](https://amsterdamtulipmuseum.com/pages/the-tulip-trade): If a “bubble” is a globally dominating industry some 400 years later, was it really a bubble…?\n\nAlso, _no_. Most histories, popular or punditry, about these bulb are false, hearsay, or exaggerated. \nMy favorite indicator for the tulip mania’s irrelevance was the discussion in the premier Dutch financial history source: _A Financial History of the Netherlands_, (a 1997 book by the obscure publisher Cambridge University Press[^3]). Hundreds of pages of the financial intricacies of Netherlands’ history feature _a single sentence_ about the tulip mania (unsupported, with erroneous price estimates). \n\n**It just isn’t a thing.**\n\nHere's a quick run-down: \n- we have maybe 150 recorded price quotes across a dozen types of bulbs\n- bulbs are in the frozen ground in winter when this supposed "bubble" bursts (Feb 1637) [^4]\n- futures contracts, which these inevitably were, were not widely recognized or upheld by courts\n- the mythology comes from lyrical writing in the 19th century (echoed, credulously, by economists who already hated financial markets)\n- nobody was ever bankrupted by the "collapse" of tulip prices\n\nTulips were desirable and demanded as a fashion item among the well-off merchants of Amsterdam in the 1630s. A certain mosaic virus strain turned the bulbs into all manner of speckled colors—“broken bulbs,” with unique, multicolor patterns (google examples). That made tulips non-standard products, the vast majority of which never fetched any elevated prices. What was valuable with certain tulips were the particular shapes and patterns that an individual bulb had—characteristics that could genetically be passed on to the next generations of that bulb.\n\nBut since they were frozen in the ground during winter, any and all stories about bulbs trading for an Amsterdam canal-front house or a customer of a pub accidentally eating a million-dollar onion are imaginary. \n\nThis line from Peter Garber is enough for all of us to take our ball (bulbs?!) and go home: \n> “Typically, the buyer did not currently possess the cash to be delivered on the settlement date, and the seller did not currently possess the bulb.” (Garber, _[Famous First Bubbles: The Fundamentals of Early Manias](https://mitpress.mit.edu/9780262571531/famous-first-bubbles/ )_)\n\n\nor this, by Dutch historian Nicolaas Posthumus:\n\n> "for many, however, there was no loss at all; they had sold what they did not possess, to someone who lacked the means of paying them; these sales were all annulled." ("The Tulip Mania in Holland in the Years 1636 and 1637," _Journal of Economic and Business History_ 1929)\n\nSo, OK. What we have are a hundred or so recorded prices (“prices”) for futures contracts (when such contracts where legally dubious or unenforceable) to non-standard bulbs during a few winters in the 1630s, massively exaggerated by Charles Mackay, a Scottish poet, two centuries later—and, like so many wrong things do, etch itself forever in the public consciousness. \n\nThe story of tulipmania is turtles on top of turtles on top of... nothing at all. \n\nAnne Goldgar, whose book _[Tulipmania: Money, Honor, and Knowledge in the Dutch Golden Age]( https://press.uchicago.edu/ucp/books/book/chicago/T/bo5414939.html )_ is a great take-down of many Tulip-related myths, explains in an interview that tulips are a "byword for insanity in the markets.” \n\nWhenever an asset increases in price, tulips have been readily available as a short-hand slang for STUPID PRICE. Invoking tulips them is usually a mistake: the Tulipmania of 1637 was [more fiction than fact](https://www.history.com/news/tulip-mania-financial-crash-holland ) and financial observers from [John Kenneth Galbraith](https://www.penguinrandomhouse.com/books/321392/a-short-history-of-financial-euphoria-by-john-kenneth-galbraith/) to [Charles Kindleberger](https://www.palgrave.com/gp/book/9781137525758) have passed on poorly based moralistic stories from an [elaborate game of Chinese whispers](https://podcasts.apple.com/us/podcast/rational-minds-part-2-the-myth-of-tulip-mania-anne-goldgar/id1236553683?i=1000502657536&l=es). \n\n\n\n\n> “I couldn’t find anybody that went bankrupt... those who lost money in the February crash did so only notionally… I found not a single bankrupt in these years who could be identified as someone dealt the fatal financial blow by tulip mania.” Goldgar, [The Conversation](https://theconversation.com/tulip-mania-the-classic-story-of-a-dutch-financial-bubble-is-mostly-wrong-91413\n)\n\nA surprisingly accurate [_Smithsonian_ article](https://www.smithsonianmag.com/history/there-never-was-real-tulip-fever-180964915/) from a few years ago also spelled this out: \n\n> merchants really did engage in a frantic tulip trade, and they paid incredibly high prices for some bulbs. And when a number of buyers announced they couldn’t pay the high price previously agreed upon, the market did fall apart and cause a small crisis—but only because it undermined social expectations.\n\n\n\n\n\n\n\n\n**Tl;dr:**\nThe Tulipmania was irrelevant, the trade on which the myth is founded mostly relegated to obscure and unenforceable contracts in taverns, contracts that involved not the entire Dutch republic but a few merchant afecionados. The evidence we have is spotty, and the story was popularized by a writer and prankster about two-hundred years later.\n\n\n\n\n\n\nIt's not primarily that bitcoin _isn't_ like the tulipmania because it's not a bubble. It's that** the tulipmania is exaggerated fiction:** Bitcoin has absolutely nothing to do with this supposed financial bubble of the past. \n\n\n\n\n\nThat's today's little money lesson.\nPeace,\nJ\n\n\n\n\n\n\n\n[^1]: https://bitcoinmagazine.com/culture/bitcoin-great-financial-bubble\n[^2]: https://thedailyeconomy.org/article/the-bubble-that-never-was-finances-definition-problem/\n[^3]: https://www.cambridge.org/core/books/abs/financial-history-of-the-netherlands/frontmatter/DCE997079FDDF1CE652EF3EBDD2C0009 \n[^4]: https://www.cambridge.org/core/journals/financial-history-review/article/explaining-the-timing-of-tulipmanias-boom-and-bust-historical-context-sequestered-capital-and-market-signals/20BEB345A7BB4BF2E84C07F9077361A1 \n\n\n\n\n\n \N 626 \N 406399 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 12.7699702881529 0 \N \N f 1208531852 \N 10 239329868 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437588 2025-03-14 16:35:03.651 2025-03-29 22:39:52.937 \N That is not an irrational concern.\n\nOver the long term, we can be comforted by the fact that low cost-energy is not concentrated to any one geographic area or political jurisdiction. The *existing* low-cost energy which was well in excess of demand, well yes -- that's mostly been identified and either being consumed (e.g., excess hydroelectric capacity wherever it exists), or bitcoin mining is prohibited there (e.g., China, parts of Quebec, etc.).\n\nHowever if we're at about 15 GW now (per [CBECI](https://ccaf.io/cbeci/index)) and the mining equipment manufacturers are producing another 15 GW or whatever (likely more) of demand in the next couple years, that equipment will displace older equipment -- much of which will head to new homes (unless, bitcoin price rises faster than the hashrate, which might cause even the old equipment to remain in-place longer). The new homes for the equipment that got replaced will not be the large industrial miners. The destinations for those might be hundreds or thousands of additional oil field sites. The destinations might include where new approaches are attempted (e.g., gas from bio-digesters in agricultural regions). Or where the heat is what is needed (e.g., for drying grains, or heating a greenhouse), and mining justifies doing that with electricity. Whether that keeps enough hashrate in the non-industrial mining operations to alleviate your concern, that's hard to tell at this point. \n\nBut the surest way to a win is to make it so the grid is reliant on the bitcoin mining for reliability. If bitcoin mining brings additional revenue for the power producer that would otherwise not run at capacity, well then taking that opportunity away might then result in higher prices to the consumer. Or if the only way construction of additional capacity can be justified is if bitcoin mining is there to buy power outside of the peak period, then messing with mining (i.e., blacklists, whitelists, whatever) might cause the lights to not remain on -- which is not something the politicians want to be seen as being responsible for.\n\nSo, ... long term, likely not a concern. Near term, it's really an unknown. We have to see how much equipment these manufacturers actually will be shipping. The hashrate has historically not lagged price rallies by this much and/or for this long of a period of time. If the hashrate grows 50% in just a couple months, it's very likely from large industrial ops coming online with new hardware). If that happens, then for a period of time (maybe until the halving), ... we would be exposed to the risk of which you expressed concern. https://example.com/ 10690 437560 437044.437560.437588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6377541962796 0 \N \N f 553560333 \N 3 32114280 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450326 2025-03-23 21:28:38.102 2025-03-29 22:39:52.937 \N Yes, I've sold multiple times and bought back lower. People who tell you it's impossible to do this are preserving you as exit liquidity.\n\nI sold at 58k to fund a Miami trip. I thought I was making a mistake, but it ended up being a great decision and [inspired this story](https://www.jtwoodhouse.com/seven-people-you-meet-in-bitcoin-miami/). I rebuilt that stash and thensome. https://example.com/ 17944 450263 450263.450326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3414996596234 0 \N \N f 494087735 \N 2 117438680 0 f f \N \N \N \N 450263 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408025 2025-02-18 14:34:29.832 2025-03-29 22:39:52.937 \N Telling people they should buy. \n\nShould honestly be left out of the conversation if possible. If they ask, tell them not to buy. If they buy before they understand it, they won’t hodl. If anything, say “don’t buy what you don’t understand.” https://example.com/ 1726 408015 408015.408025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.32020339317116 0 \N \N f 14518016 \N 1 205900483 0 f f \N \N \N \N 408015 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435795 2025-03-13 01:10:35.11 2025-03-29 22:39:52.937 \N I can honestly recommend this video on the topic https://www.youtube.com/watch?v=IaoTtkuY7jM\n\nIt contains all relevant stuff, it is well explained and is factually correct. https://example.com/ 1105 435783 434278.434318.435783.435795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4722839399217 0 \N \N f 494376188 \N 3 172225226 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 19:56:42.619 f \N \N \N 0 0 0 0 3 0 0 443305 2025-03-19 08:51:51.55 2025-03-29 22:39:52.937 \N everyone agrees with 5\n\nthats why they are pushing for V2 and this new DATUM\n\nto avoid pool owners being able to dictate anything other than 5 https://example.com/ 20680 443295 443295.443305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6634274385232 0 \N \N f 445439932 \N 3 118861543 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:53.939 f \N \N \N 0 0 0 0 2 0 0 401907 2025-02-13 12:51:39.722 2025-03-29 22:39:49.152 Bitcoin Loan VS Bitcoin-backed Loans: Pros & Cons As not a financial expert, I'm just curious about the precious opinions of all of you about the pros and cons of bitcoin loans vs bitcoin-backed loans.\n\n- How do you think will help lender better trust borrowers without going to the traditional credit-check/score?\n- Why lending bitcoin will be better/worse than lending fiat against bitcoin collateral?\n- Which solution you see to have a better financial inclusion?\n- Where do you see this financial products provide the most value?\n\nAny further comment will be much appreciated to learn more about this topic\n\nThanks in advance\n \N 16296 \N 401907 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 29.4337498628959 0 \N \N f 451513144 \N 2 82761278 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 308284 2024-11-25 19:05:35.148 2025-03-29 22:39:52.937 \N Want to write about the Bitcoin Situation in Singapore in response to @Bitcoin_Bootcamp’s post about the bitcoin situation in Germany: https://stacker.news/items/396409\n\n@cleaningup12 asked me to share about how parenting in Japan looks like. Looking forward to spilling the beans about my wife’s methods haha https://example.com/ 19263 308281 308281.308284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.50818100053435 0 \N \N f 150981500 \N 1 190987985 0 f f \N \N \N \N 308281 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404217 2025-02-15 16:40:48.426 2025-03-29 22:39:52.937 \N https://imgprxy.stacker.news/qDx4d929xZk27JLCD6YPkFVAXLLE4oON1hIyjaPGVi8/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYTQuZ2lwaHkuY29tL21lZGlhL3pQUncyMThSc3pHT2w5cWRPWi9naXBoeS53ZWJwP2NpZD02YzA5Yjk1MjMyeHh1eWM2bWU0Z3JjemVlb3BieTU3a2phd2FlOGozM2cxYzZieW0mZXA9djFfaW50ZXJuYWxfZ2lmX2J5X2lkJnJpZD1naXBoeS53ZWJwJmN0PWc https://example.com/ 9346 404197 403824.404157.404197.404217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3891800655324 0 \N \N f 60996108 \N 1 40099651 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434560 2025-03-12 02:56:08.412 2025-03-29 22:39:52.937 \N Have you guys thought much on the post hackathon results? IE, team builds something awesome, maybe wins, then all go separate ways and back to their day jobs. \n\nAt one hackathon, I was paid by an independent party present there to finish our PoC and write up a case study. But I assume with the heavy hitter VCs that'll be at this hackathon, there could be a chance to turn a project into something real. Is anything done on your side to help facilitate that? Really looking forward to participating, thanks! https://example.com/ 910 434488 434488.434560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.77611474602752 0 \N \N f 1020479695 \N 6 5422456 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 2025-03-19 03:57:06.043 f \N \N \N 0 0 0 0 3 0 0 423968 2025-03-03 18:40:35.573 2025-03-29 22:39:52.937 \N Good. Should have it done this week. It's a huge pain.\n\n> How about a one time migration, from lnurl-auth to another lnurl-auth or user/pwd?\n\nThe plan is to allow you to link/unlink a node (via lnurl-auth), twitter, github, or email to your account once you're logged in. So you can use multiple login methods and replace or remove any login method. https://example.com/ 13143 423925 423667.423687.423704.423895.423925.423968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.12838471637087 0 \N \N f 1059089054 \N 7 5857422 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415172 2025-02-24 15:14:49.582 2025-03-29 22:39:52.937 \N PSA: The more you spend, the more you save.\n\nDetails in this post: https://stacker.news/items/287074/r/Undisciplined https://example.com/ 5195 414936 414678.414936.415172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4652440217763 0 \N \N f 71623511 \N 1 167067186 0 f f \N \N \N \N 414678 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434333 2025-03-11 19:46:27.858 2025-03-29 22:39:52.938 \N https://mises.org/library/what-has-government-done-our-money https://example.com/ 15925 434317 434317.434333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0430682541393 0 \N \N f 39204810 \N 2 99958512 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 415629 2025-02-24 23:32:41.459 2025-03-29 22:39:52.938 \N Can you list any valid reasons for doing so? https://example.com/ 20799 415525 415525.415629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1741061682768 0 \N \N f 119099619 \N 1 137138002 0 f f \N \N \N \N 415525 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416924 2025-02-25 23:12:31.013 2025-03-29 22:39:52.938 \N Fiction-\nAugustus, by John Williams. \nOnly if you're interested in ancient Rome. More accurate than typical historical fiction. Won 1973 National Book Award.\n\nNon- fiction\nHidden Repression by Alex Gladstein.\nI have learned so much by reading his books. https://example.com/ 9109 416768 416768.416924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9260582719922 0 \N \N f 58162475 \N 1 106894795 0 f f \N \N \N \N 416768 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455434 2025-03-27 02:33:31.039 2025-03-29 22:39:52.938 \N Finally beginning work on personalized feeds. https://example.com/ 2773 455413 455413.455434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.29040929631437 0 \N \N f 56684279 \N 1 168085883 0 f f \N \N \N \N 455413 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423240 2025-03-03 06:48:17.338 2025-03-29 22:39:52.938 \N Interestingly, SN is in a bit of a sweet spot for me. Large enough to generate interactions on most posts you make, but small enough that you don't need to be hypercompetitive for attention. In that sense, I think to me the definition of flourishing is: \n\n`People can post their genuine thoughts and expect a diverse range of genuine responses in return.` \n\nCommunities that are too small fail that definition because you can't always expect a response, or diverse responses. Larger communities can fail because they lack authenticity---people start having to optimize for likes and attention, rather than simply posting what they think.\n\n\n https://example.com/ 696 422056 422056.423240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8119059611601 0 \N \N f 270902252 \N 2 35751735 0 f f \N \N \N \N 422056 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307282 2024-11-24 22:29:50.957 2025-03-29 22:39:52.938 \N I have mixed feelings about this. At one point it's funny and based and other is that it promotes toxicity and tribalism. My approach is to ignore shitcoin-ary and focus on bitcoin rather than attack said shitcoin. https://example.com/ 6688 307280 307258.307280.307282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.19654778745737 0 \N \N f 332428362 \N 2 23637547 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413354 2025-02-23 05:30:34.486 2025-03-29 22:39:52.938 \N Man, we really must have caused him irreparable mental damage since he last freaked out and bleached his hair. https://example.com/ 21119 413235 413235.413354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.55511182349287 0 \N \N f 281718966 \N 2 213028642 0 f f \N \N \N \N 413235 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451392 2025-03-24 14:30:56.525 2025-03-29 22:39:52.938 \N Seems like a great tweak to me, excited to see how it promotes better and healthier discussion! \n\nVery bullish on Stacker News in 2023, every cycle the "public forum" for Bitcoiners seems to change:\n* 2009-2013: bitcoin-talk.org\n* 2013-2017: Reddit (r/bitcoin, etc.)\n* 2018-2022: Twitter\n* 2023-?: Stacker News ⚡️🚀\n\nHappy holidays! 🦃 https://example.com/ 6421 451382 451266.451276.451382.451392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4932279834412 0 \N \N f 239697108 \N 2 238704054 0 f f \N \N \N \N 451266 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436010 2025-03-13 08:20:38.378 2025-03-29 22:39:52.938 \N *if you aren't doing it with your own node, you have to trust someone else to verify the bitcoin for you. Brother, let me tell you: sometimes even the nicest ones fake it. And I'm not just talking about the cheap tricks down at the fiat bank who tell you they have your money while they're giving it out at the back door.* \n\nHow to make love to your Bitcoin node (when it's been a while)\n\nPossibly one of the worst things I've ever written. Look for it tomorrow. https://example.com/ 21600 435907 435907.436010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5979933149324 0 \N \N f 161698254 \N 1 141907107 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 02:22:54.754 f \N \N \N 0 0 0 0 1 0 0 414626 2025-02-24 05:37:58.148 2025-03-29 22:39:52.938 \N * you can't fold paper more than 7 times. \n* Scotland chose the unicorn as its national animal. https://example.com/ 750 414625 414625.414626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2307612018008 0 \N \N f 54462738 \N 2 134811997 0 f f \N \N \N \N 414625 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436519 2025-03-13 15:56:31.814 2025-03-29 22:39:52.938 \N FYI for anyone reading this. The user funds are not missing. This dude has a force closed transaction and then immediately opens an issue then blasts it on multiple social media platforms. He's got a transaction in the mempool but no LSP funds were swept. \n\nMaybe you should chill for a second for us to help you before jumping to conclusions. https://example.com/ 7583 436303 436093.436303.436519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.343887255917 0 \N \N f 325693422 \N 3 185242596 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 2025-03-20 09:30:25.065 f \N \N \N 0 0 0 0 1 0 0 436125 2025-03-13 10:37:46.523 2025-03-29 22:39:52.938 \N Holy Cow, TheWildHustle is a little blown away. \n\nBrief summaries of the sites viewed on the same page as the search results....\n\nDiscussing the document with an llm through a pop up......\n\nHonestly the best search results page Hustle has ever seen\n\nSeems like a pretty amazing project to be frank.\n\nNow that thats said......wen nostr.\n\n\n https://example.com/ 782 436053 436028.436053.436125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6577264285081 0 \N \N f 504198212 \N 6 220857645 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 2025-03-20 05:38:18.512 f \N \N \N 0 0 0 0 1 0 0 410456 2025-02-20 13:43:23.67 2025-03-29 22:39:52.938 \N This is perhaps a really cynical way to look at it, but if families keep their wealth in bitcoin, they should retain wealth better through the generations simply because they can avoid government interference through taxes. The most obvious would be capital gains taxes and inheritance taxes, but wealth taxes can't be too far down the road. There are two obvious methods of avoiding these taxes:\n1. Boating accident\n2. Relocating to nations with more favorable tax policies https://example.com/ 3544 410439 410358.410384.410392.410429.410439.410456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1775453844014 0 \N \N f 77327640 \N 1 113242991 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413527 2025-02-23 09:50:14.113 2025-03-29 22:39:52.938 \N Implementing a new outputs operating mode to our controller's. This operation mode applies to a crosswalk, it will control a light signal with several parts and road studs. It will work with radio frequency for wireless communication between crosswalks. https://example.com/ 1433 413007 413007.413527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.741345393440227 0 \N \N f 291621329 \N 4 207549046 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 404219 2025-02-15 16:46:57.505 2025-03-29 22:39:49.152 Book recommendations for learning more about mathematics? I'm a bit of a dunce when it comes to math.\n\nI don't really understand power laws, log scales, algorithms, or standard deviations... I see the word "Bayesian" a lot but I really don't know what means. \n\nAnyone have go-to book recommendations for someone who wants to become more mathematically literate, but not necessarily a "practitioner?"\n\nIn the sense that, if I wanted to learn multivariate calculus I suppose I could pick up a textbook and grind at it, but I doubt I'd end up using that skill directly. \n\nBut maybe having a broader understanding of the whole toolbox could be useful, in knowing who or what I'd need to utilize to solve a particular problem?\n\nMeta question: Is a general knowledge of these concepts even useful without knowing how to crunch the numbers yourself?\n\nI'm not a developer, but learning how to code up to a point, and the basics of computer science has helped me to collaborate with people who are. \n\nDoes that track with math too, and if so, what book(s) should I start with? \N 10586 \N 404219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.0715791294366 0 \N \N f 20216083 \N 1 176722768 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428274 2025-03-07 02:20:59.27 2025-03-29 22:39:52.938 \N I've come to realize Elon understands human psychology at a high level. Most effective leaders have this quality about them. He also sees the impossible as possible, heard a story that revolved around Elons inner circle in the 2000’s making fun of him every time he came around talking about his electric car startup. Most people are afraid of humiliation, some embrace it as a badge of honor and a reason to keep going. https://example.com/ 19806 428238 428236.428238.428274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.29069618623252 0 \N \N f 90714399 \N 1 224093606 0 f f \N \N \N \N 428236 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416551 2025-02-25 17:19:22.447 2025-03-29 22:39:52.938 \N 🙌 that’s the kind of lift I need @k00b \n\n![IMG_4291.jpeg](https://m.stacker.news/23656) https://example.com/ 10398 416288 416158.416221.416253.416288.416551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7074713301206 0 \N \N f 1291205800 \N 10 33517982 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436022 2025-03-13 08:38:25.435 2025-03-29 22:39:52.938 \N Day 118 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 14465 435908 435908.436022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.2200139827107 0 \N \N f 124690762 \N 1 53724111 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 2025-03-20 02:22:28.403 f \N \N \N 0 0 0 0 1 0 0 447250 2025-03-21 18:14:12.909 2025-03-29 22:39:52.939 \N Subs may be created only after depositing a "stake". It will make harder for bad actors to create many subs and simultaneously create incentive for SB for a proper moderation. https://example.com/ 12656 447218 446937.447218.447250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0659862437129 0 \N \N f 201871384 \N 1 58872335 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N 2025-03-28 11:41:31.161 f \N \N \N 0 0 0 0 1 0 0 435542 2025-03-12 19:10:34.44 2025-03-29 22:39:52.939 \N He’s back… https://example.com/ 9352 435541 435217.435541.435542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.73373344969619 0 \N \N f 348196586 \N 3 223152924 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 15:03:04.567 f \N \N \N 0 0 0 0 1 0 0 458347 2025-03-29 08:12:23.174 2025-03-29 22:39:49.152 why is my local balance changing without purpose I am running LND + RTL and albyHub. I have open just one channel, doing that in albyhub. \nEverything is working well, I can send and receive sats, I did also connect AlbyGO and amethys . I can zap or receive zaps in amethys.\n\nI did find out that my local balance is change and I did not make any transaction. So I did start to take screeshots from RTL to remember more details.\n\nHere is history :\n\n![](https://m.stacker.news/67144)\n\n![](https://m.stacker.news/67145)\n\n![](https://m.stacker.news/67146)\n\n![](https://m.stacker.news/67147)\n\n![](https://m.stacker.news/67148)\n\n![](https://m.stacker.news/67149)\n\n![](https://m.stacker.news/67150)\n\n![](https://m.stacker.news/67151)\n\n![](https://m.stacker.news/67152)\n\n\n\n\nBetween update 119 and 126 I did not make any transaction and as you can see just LOCAL balance is change.\nThen I did send and receive some.\nBut between update 130 and 131 LOCAL balance change again without purpose.\n\nWhat is source of that? \nIs something wrong with my LND?\nShould I be worried?\n\nthank you very much for help to understand and solve this "problem" \N 1632 \N 458347 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.2690790873891 0 \N \N f 696841718 \N 6 71589882 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 415011 2025-02-24 13:17:16.621 2025-03-29 22:39:52.939 \N Does my SNES count? My dad for it for me in early 1994. I was still playing on it the other day. My kids also play on it occasionally, although they prefer the Switch a lot more haha.\n\n![1000013165.jpg](https://m.stacker.news/13514) https://example.com/ 9350 414997 414984.414997.415011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.06140500273742 0 \N \N f 67657453 \N 1 92060427 0 f f \N \N \N \N 414984 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 312067 2024-11-29 01:19:33.842 2025-03-29 22:39:52.939 \N First impression:\n- Top bar is pretty clean, on both mobile and desktop\n- On mobile the bottom nav is very jarring, almost doesn't make sense with the ordering.\n- I like the side menu that pops out from the left side on mobile, but it's weird going to the bottom to get the side menu to pop out. Not sure if I've seen that design anywhere. https://example.com/ 21166 312024 312024.312067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6645186179101 0 \N \N f 198024339 \N 1 22172860 0 f f \N \N \N \N 312024 \N 0 0 \N \N f \N 2025-03-19 05:28:55.24 f \N \N \N 0 0 0 0 1 0 0 407477 2025-02-18 04:10:01.919 2025-03-29 22:39:52.939 \N playing around in the terminal recently, and I've learned how to install wireguard directly, so cool! All you need is to paste these codes: https://www.wireguard.com/install/. But I haven't figured out how to set the VPN conf from Mullvad with this setup. 🧐\n\nand why is this not the default way to install software but depending on Apple or Google store, where are full of restrictions and rules?! https://example.com/ 17316 407449 407449.407477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58653987688905 0 \N \N f 165959207 \N 1 227053084 0 f f \N \N \N \N 407449 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404141 2025-02-15 15:26:21.692 2025-03-29 22:39:52.939 \N Howdy partners! We’re celebrating my sons 6th birthday today!\n\n![IMG_8626.jpeg](https://m.stacker.news/5889) https://example.com/ 18430 403999 403999.404141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9018586994392 0 \N \N f 71354003 \N 1 192241624 0 f f \N \N \N \N 403999 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 445420 2025-03-20 15:15:34.58 2025-03-29 22:39:52.939 \N I came to this conclusion back in 2014-15. The internet runs on ads because no micropayment solutions existed when it got started. The payment amounts are so small that you can't do real payments, you have to do ads.\n\nI actually spent some time with another Bitcoiner looking to do a startup on coming up with an alternative. At the time Lightning was nascent, but we realized then that this could be the solution.\n\nHere's the problem. The amount of attention you need to give to figure out whether you want to pay 1/30th of a penny is not worth 1/30th of a penny. This is why subscriptions are so popular. It reduces the decision fatigue you're likely to get from having to decide every time whether a song, a book, or a podcast is worth paying for. And this is where you start running into problems.\n\nYou need some automated way of making these sub-penny decisions. And that requires a lot of code. I'll pay for articles that my friends recommend, which has a keyword that I'm interested in, or has a certain ranking on stacker news, etc. These are not easy to write and every person is going to have a different one. Heck, some people, especially people with a lot of time on their hands, will totally be willing to watch ads instead of paying 1/30th of a penny.\n\nThat's the hard part about microtransactions. The decision has to be with the user but too many decisions fatigue the user. Thus, you need a second brain that's very like you to make those decisions on your behalf. Writing that is very, very hard.\n\nHence my thought that it's going to take a long time to replace ads.\n\nThat said, there's at least one way which can work and that's offering to pay websites the ad revenue they would get and not showing you the ads. The problem is there's no way for you to know how much they would have made so it's easy for them to lie.\n\nSome random thoughts, but this is not an easy thing to solve once you dig into it. Decision fatigue is real. https://example.com/ 4035 445096 445096.445420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5725180453303 0 \N \N f 472830003 \N 2 47940316 0 f f \N \N \N \N 445096 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437678 2025-03-14 18:40:01.291 2025-03-29 22:39:52.939 \N Yes. We are all starseed. Just that we don't know it yet. Each one will have his moment of revelation.\nRemember this post?\nhttps://stacker.news/items/277326 https://example.com/ 7773 437635 436752.437635.437678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1073851655541 0 \N \N f 323436505 \N 2 229656861 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433557 2025-03-11 08:02:23.924 2025-03-29 22:39:52.939 \N bitlink.money onramps and offramps, gifting and referral system. Lots of new features next week https://example.com/ 11144 433456 433066.433088.433456.433557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0336301951208 0 \N \N f 825267408 \N 6 164015252 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 406927 2025-02-17 16:27:41.318 2025-03-29 22:39:52.939 \N Hmm yeah we should do that. Let us schedule one. https://example.com/ 21136 403851 403036.403695.403851.406927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6934456849168 0 \N \N f 243206420 \N 2 165290869 0 f f \N \N \N \N 403036 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404157 2025-02-15 15:45:24.67 2025-03-29 22:39:52.939 \N ### Thank you for this excellent described story of your node.\n\nI concur with part of your experience (I wrote about it in many of my guides about LN nodes and experiments I've done). \n\nMost of what you describe is also mentioned in my guides, trying to raise an alarm for all those noobs that are jumping straight into running public nodes with no idea what they are doing.\n\nIs very good that old bitcoiners like you are explaining these aspects, so others can learn more and do not do the same steps. I am not saying that were good or bad steps. We are all learning from own mistakes, errors, struggles. Is part of this Bitcoin journey.\n\nWhat I will want to add to your post are the following.\n\nI see the LN (Lightning Network) as the PAYMENT NETWORK of Bitcoin.\n1. Bitcoin onchain is the main base, the settlement. That works pretty well now and represents the VALUE.\n2. LN is the "water" flow of this base layer, that needs to flow around, to be used as MONEY. The LN channels are like pipes, through which are flowing the sats (water). And managing these pipes REQUIRE a lot of resources, knowledge, patience, infrastructure.\n\nBitcoin (onchain) cannot go forward without LN. It will be almost impossible to use it as money soon, only using onchain.\nLN cannot exist and function without a strong base layer (onchain). LN is actually just a delayed onchain tx, no more no less. Is just not broadcast in the moment of the payment, it is broadcast and settled onchain only when the peers are closing that channel. But IT IS a real BTC onchain tx.\n\n## How I see LN topology from now on:\n\n### Level 1\nThe large base of large public nodes with a lot of liquidity, nodes that can last a long time and put a lot of capital at stake. You also earn more money, but they are the ones who put in the most money. We need this strong base of big nodes ! It doesn't matter if are big companies, banks. They are the ones that keep moving the "water".\n\n### Level 2\nLSPs (those that are intermediaries between public and private nodes), also with good connections, but not much capital is necessary, but not little either. It is very important for them to have well balanced channels and fees accessible to the "entry level" of users. These LSPs are mainly public nodes by main wallet apps, but also other players that want to be this bridge between public routing and private use of LN\n\n### Level 3\nThe plebs nodes, the poor ones, who want to learn and level up. But very few are going to resist because they don't have much capital. At this level you were... and you couldn't resist. Nothing wrong with that. You did your part, helping the network as much as you could. And thank you for that.\n\n### Level 4\nPrivate, mobile nodes (Zeus, Blixt, Mutiny, Breez, Electrum, Phoenix, Nayuta etc.) These depend 100% on the LSPs.\nThese private nodes DO NOT ROUTE! Just use privately the LN. And is nothing wrong with this. These are the MAIN real users of LN, because are the ones that made the payments.\n\nThis way we will have the LN functional. And new users, should choose wisely their position in this network.\n https://example.com/ 1490 403824 403824.404157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3116232601059 0 \N \N f 297285298 \N 3 148941872 0 f f \N \N \N \N 403824 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431086 2025-03-09 15:22:25.586 2025-03-29 22:39:52.94 \N ![](https://pbs.twimg.com/media/GG8ukq6agAAkfHJ?format=png&name=900x900)\n\nHere is the more interesting perspective https://example.com/ 15408 430351 430109.430351.431086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.48269442923214 0 \N \N f 817433169 \N 5 244663054 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435124 2025-03-12 13:37:51.204 2025-03-29 22:39:52.94 \N tl;dr We can only pretend that fiat is working if there is no alternative. https://example.com/ 8505 435059 435046.435059.435124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2694371181666 0 \N \N f 242477028 \N 3 60362310 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 17:11:55.757 f \N \N \N 0 0 0 0 1 0 0 435288 2025-03-12 15:20:16.591 2025-03-29 22:39:52.94 \N Nice! Reminded me of this post I read a while back on why Bitcoin is Galt's Gulch\n\nhttps://thomashepner.net/posts/galts-gulch https://example.com/ 4502 435154 435154.435288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.06318217233876 0 \N \N f 277128450 \N 2 164908898 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 22:45:32.642 f \N \N \N 0 0 0 0 1 0 0 443720 2025-03-19 13:37:53.055 2025-03-29 22:39:52.941 \N Btc is a system of money. A community is a bunch of relationships. Just because the mechanics of how btc works doesn't allow the money to be clawed back doesn't mean that, as a member of the community, you shouldn't behave like a decent human being. It is two separate issues and value systems. \n\nBtc is not an excuse to be a dick just because sometimes there are fewer consequences for doing so. Is this really such a foreign idea? https://example.com/ 12049 443716 443577.443714.443716.443720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9946275188742 0 \N \N f 68444131 \N 1 21800592 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 2025-03-26 06:55:05.684 f \N \N \N 0 0 0 0 1 0 0 435410 2025-03-12 16:55:18.214 2025-03-29 22:39:52.941 \N Would have been interesting to see this normalized to population, and also going back to the 70s when the "war on drugs" started https://example.com/ 11298 435261 435261.435410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.751227391137 0 \N \N f 549186132 \N 6 127818474 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 2025-03-20 00:20:22.948 f \N \N \N 0 0 0 0 2 0 0 3037 2022-10-23 18:53:17.563 2025-03-29 22:39:52.942 \N I predict Joe Biden will die in 2024.\n\nI also predict that Luke Dashjr will find all his bitcoin on an old floppy disk in the bottom drawer of his desk. https://example.com/ 725 3035 2990.2999.3035.3037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.221660992992 0 \N \N f 448074694 \N 4 86997705 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403232 2025-02-14 15:10:06.651 2025-03-29 22:39:52.942 \N I think it's sort of harsh to shit on Monero in this way. \n\nMonero community is focused on privacy and isn't a typical pump and dump coin. It's probably the only coin and community worth considering when trying to learn about new things \n\nDisclaimer: I have never bought anything else beyond Bitcoin but think Monero is full of very smart individuals who value privacy as much as Bitcoin values immutable ownership and supply verification https://example.com/ 628 403039 402871.403021.403030.403039.403232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7352523741181 0 \N \N f 141756380 \N 1 234460149 0 f f \N \N \N \N 402871 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404411 2025-02-15 21:08:46.209 2025-03-29 22:39:52.943 \N This could be one of those things that it starts as you fucking around, and in five years you own an island, you're on the cover of Time magazine, and also the FBI's most wanted. https://example.com/ 20616 404334 404136.404203.404242.404332.404334.404411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1277595866332 0 \N \N f 132714889 \N 2 186930710 0 f f \N \N \N \N 404136 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456724 2025-03-27 19:57:20.091 2025-03-29 22:39:49.149 Inscriptions: A Guide for the Ideological Maxi \N https://rodarmor.com/blog/inscriptions-a-guide-for-the-ideological-maxi/ 8168 \N 456724 \N \N \N \N \N \N \N \N art \N ACTIVE \N 8.96401186949365 0 \N \N f 245041607 \N 1 167750085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437805 2025-03-14 22:31:09.956 2025-03-29 22:39:52.939 \N We all gotta live somewhere, right? Renting isn't ideal for everyone, some prefer to be renters to the bank for the long term and I get it, I was sold on property for many years and wasted so much time looking for opportunities, saving up cash and luckily I discovered Bitcoin and didn't blow my wad on some shithole fixer-upper just to "get my foot on the property ladder"\n\nProperty is such a massive opportunity cost though yet people don't realise it, I speak to my friends and family and they are all still of the frame of mind that they own it, that it always goes up and its the best investment you can make, and most of them if not all are pretty shit at math, so trying to show them the calcs is even a waste of time \n\nI don't own property, I am reluctant to do so in my country, I wouldn't want to tie myself to the direction its going and people who are immoveable, tied to places by the property are easily influenced, easily taxed, and easily made to tow the line\n\n https://example.com/ 656 437800 437775.437800.437805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.26438827748046 0 \N \N f 160510755 \N 1 212091910 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431049 2025-03-09 15:12:17.277 2025-03-29 22:39:52.939 \N You mention quantum computing.\n\nSome wallets still **"MAKE"** you use the original P2PK output format for wallets, which is also dangerous if you [accept certain explanations regarding advancements in Quantum computing](https://www2.deloitte.com/nl/nl/pages/innovatie/artikelen/quantum-computers-and-the-bitcoin-blockchain.html). \n\nIt's worth considering that it is physically possible (like, within the bounds of reality) [to break encryption like RSA](https://www.google.com/search?q=rsa+encryption+broken&sxsrf=APq-WBt_kIKchtgbwdE-RpTNqHtIcdTB1Q:1650850106171&source=lnms&tbm=nws&sa=X&sqi=2&ved=2ahUKEwiaiZ_xh673AhVMQMAKHe7WAXoQ_AUoAnoECAEQBA&biw=1792&bih=887&dpr=2), and should for all intents and purpose be considered insecure already. \n\nIf or when that happens, all internet encryption would break, unless major updates were deployed across the system quickly. Most of the web still runs on RSA. The S in HTTPS refers to a security model that relies on RSA (from my understanding, I'm not a security expert or anything. \n\nFurther, Bitcoin relies on the fact that dividing numbers is harder than multiplying them, but quantum [computing algorithms](https://en.wikipedia.org/wiki/Shor%27s_algorithm) that [carry out mathematical calculations in multiple universes simultaneously](https://core.ac.uk/reader/11923170) can make certain division problems trivial...eventually.\n\nBy this logic, it's arguable that Satoshi's coins, which are behind p2pk, are a honeypot. \n\nAnyway, my point is that there is a lack of explanation underpinning some "attack surface" arguments. There's no way to avoid all problems, problems, attacks, whatever, are inevitable. BUT, problems are soluble. The way we solve problems is by theorizing about them and fixing them. As long as we are not so scared that we try to all prevent problems, and instead are optimistic and proactive about growth and fixing problems, Bitcoin will be fine.\n\nIn this way, it's more worrying to me that people are considering CTV an "attack" on Bitcoin. \n\nPhilosophically, explanations (instead of physical force or fear/coercion) are the most important things for empowering people to make rational decisions for themselves. Not preventing people from options because they are too scary or dangerous. [Insert Yoda quote here, or, like "Fear is the mind killer" or something]\n\nSure, yeah, we're all mutually obligated to one another, too. In the case of Bitcoin, yes, that means that we have responsibility to maintain old UTXOs and old OP_CODES and stuff. But we can maintain old code at the same time as growing the user base and the option they have available. It's possible, and it's, counter-intuitively, the safest thing for Bitcoin. Much safer than trying to prevent progress because it's too scary. https://example.com/ 21296 431001 430993.431001.431049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5939007387449 0 \N \N f 175592509 \N 4 80733015 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423765 2025-03-03 15:31:46.93 2025-03-29 22:39:52.939 \N I would not be surprised if this dude was being monitored by FBI and may have had a handler. That is what the FBI does. I mean I think they are terrible but even if I didn't this behavior can be on the up and up.\n\nWhat if this was an FBI op gone wrong. Like they didn't stop him like they were supposed to. Its far fetched to me but possible. If there is a FBI connection this gets even messier. https://example.com/ 6765 423749 423749.423765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4943199660252 0 \N \N f 444545144 \N 2 13177066 0 f f \N \N \N \N 423749 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404049 2025-02-15 13:34:01.634 2025-03-29 22:39:52.939 \N Nothing would directly happen. Potentially increased danger if those nodes were used maliciously, in targeted ways to commit eclipse attacks of different kinds. Privacy would be eroded and surveillance of transmissions, but you can probably assume that this is happening already. https://example.com/ 628 403971 403648.403971.404049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4328431499954 0 \N \N f 193446158 \N 4 10542291 0 f f \N \N \N \N 403648 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435257 2025-03-12 15:00:53.484 2025-03-29 22:39:52.939 \N Love e-ink stuff, couldn't recommend that hardware more.\n\nBut especially with the fallout of Casa stuff, these guys really don't get enough shit for their hacks and shitcoin support. They can create a "bitcoin-only" version all they want, it's still a shitcoin company. https://example.com/ 1800 435217 435217.435257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.74898824785862 0 \N \N f 205616482 \N 4 164310622 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 17:15:30.381 f \N \N \N 0 0 0 0 1 0 0 421120 2025-03-01 12:12:47.949 2025-03-29 22:39:52.943 \N Signal has desktop clients as well as a mobile app. There's a "Note To Self" feature where you basically send messages to yourself. That's what I typically use. https://example.com/ 21274 420944 420620.420753.420944.421120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4552990864055 0 \N \N f 19095037 \N 1 10094941 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437968 2025-03-15 04:02:25.853 2025-03-29 22:39:52.94 \N This is a little outside my wheelhouse. I know it's an issue that experimental economists (major overlap with behavioral) always have to deal with. Oftentimes, they're trying get subjects to jump through some pretty complicated hoops, so they need the UX to be as intuitive as possible.\n\nI'm not aware of one canonical treatment of the subject, though. It seems like individual experimentalists largely navigate it on their own, while borrowing heavily from each other. \n\nIt is mechanism design, but mechanism design is generally more theoretical and would tell you about the incentives created by the system you're studying and what it's equilibrium conditions are. I'm sure there's a bunch of work on applied mechanism design, though. https://example.com/ 1596 435142 435142.437968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6564548665643 0 \N \N f 85356543 \N 1 60540691 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 239323 2024-09-17 12:09:34.349 2025-03-29 22:39:52.94 \N I want to applaud your update to the dev README! I also want to say fuck docker! but I'm up and running, hopefully I can take a crack at this issue I saw the other day https://example.com/ 21506 239231 239231.239323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4316371031652 0 \N \N f 351293867 \N 3 152689685 0 f f \N \N \N \N 239231 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443336 2025-03-19 09:14:38.268 2025-03-29 22:39:52.94 \N Nice of you to notice.\n\nLife has a way of balancing things out. June I expect you’ll see me much more active once more.\n\nCan confirm my recharge station of choice is amongst the trees. Pretty special smelling not only the living eucalyptus & pine trees, but also those around in the countryside fuelling their homes & barbecues with fire wood. Like breathing history. https://example.com/ 9084 443295 443295.443336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.59527785952624 0 \N \N f 991857716 \N 7 215596703 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 2025-03-26 06:33:16.81 f \N \N \N 0 0 0 0 4 0 0 434148 2025-03-11 16:14:04.361 2025-03-29 22:39:52.94 \N Fun fact, the maximum number of hops a LN payment can have is 20 hops.\n\nThis 20-hop limit is enforced by the [ChaCha20](https://en.wikipedia.org/wiki/ChaCha20-Poly1305) stream cipher required by [BOLT#4](https://github.com/lightning/bolts/blob/master/04-onion-routing.md#packet-construction).\n\nAs the name suggests, ChaCha20 can encode a maximum of 20 layers of cyphers (20 payment hops).\n https://example.com/ 16912 433844 433844.434148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31159881277677 0 \N \N f 233664400 \N 1 81813181 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435566 2025-03-12 19:38:41.032 2025-03-29 22:39:52.941 \N Proud of getting the "mindless slave" badge from Darth! https://example.com/ 3656 435131 435046.435122.435131.435566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.607220012423433 0 \N \N f 142956126 \N 1 164470041 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 13:25:51.939 f \N \N \N 0 0 0 0 1 0 0 448012 2025-03-22 10:45:56.368 2025-03-29 22:39:52.941 \N Glad you read and enjoyed it, though I do think nothing replaces the original text. For starters, not getting the insight into the internal thoughts of the characters allows a lot more room for interpretation. It especially allows more interpretation over why MacBeth gave in and how much he resisted. \n\nWhile there are people who revel at being evil (when you get to *Titus Andronicus*, you'll meet Aaron, and in *Othello* there's Iago), flawed heroes (and MacBeth certainly starts the play as one) tend to be more compelling, personally. Even *Hamlet*'s Claudius, one of his more evil villains is shown to be capable of guilt.\n\nAs for MacDuff, it's because he really didn't think MacBeth was evil. Usurping the throne is one thing, killing rivals is another, but going after the family was considered out of bounds.\n\nAnd yeah, the Witches are such an enigma. Were they simply revealing what was destined? If he'd never encountered them, would he have been tempted? Was their second prophecy meant to make him complacent?\n\nShakespeare doesn't always use the supernatural; it's just a useful tool depending on the story he wants to tell.\n\nIf you're a fan of fantasy, though, I do recommend Terry Pratchett's *Wyrd Sisters*, which starts with a comparable group of witches and a royal plot, but goes in very different directions. https://example.com/ 21405 447833 447833.448012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.314851558331988 0 \N \N f 651423061 \N 5 95489932 0 f f \N \N \N \N 447833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436288 2025-03-13 12:58:11.363 2025-03-29 22:39:52.942 \N Vitalik's original definition is fair:\n\n> The idea that an environment of multiple competing cryptocurrencies is undesirable, that it is wrong to launch 'yet another coin,' and that it is both righteous and inevitable that the Bitcoin currency comes to take a monopoly position in the cryptocurrency scene.\n\nUnfortunately "maxi" has since come to be associated with the lowest common denominator on Twitter, and is mostly a stereotype peddled by influencers manufacturing drama for engagement.\n\nDue to this baggage I don't find the term helpful and so avoid using it.\n\n https://example.com/ 1737 436273 436273.436288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.39266832450964 0 \N \N f 514132018 \N 5 131333480 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 2025-03-20 06:24:43.608 f \N \N \N 0 0 0 0 2 0 0 420175 2025-02-28 14:29:41.561 2025-03-29 22:39:52.942 \N How do you feel about adding some other categories to the Newsletter?\n\nI was thinking about a few options while reading through:\n* Top stacker\n* Top spender\n* Best debut post\n* Longest tenured cowboy https://example.com/ 12516 420055 420055.420175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.828587051843 0 \N \N f 360927807 \N 2 184086081 0 f f \N \N \N \N 420055 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424307 2025-03-04 00:32:59.19 2025-03-29 22:39:52.942 \N To be fair, it's normal procedure during bug reports to ask the user about the behavior they are seeing and what they want to see so we can confirm we understand your problem and can fix it.\n\nA good bug report should include this:\n\n- Description with actual behavior\n- Steps to reproduce\n- Expected behavior\n\nSince you used "fix" [here](https://stacker.news/items/538550), we assumed you are talking about a bug and not about a feature request. Sorry for that misunderstanding.\n\nRegarding the request: [This was discussed during implementation](https://github.com/stackernews/stacker.news/pull/779#discussion_r1481338796) but we went with user relays adding to the defaults for now, not overriding them. https://example.com/ 2583 424192 423667.423687.423704.423895.423925.423968.424192.424307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.70477803128 0 \N \N f 646455617 \N 4 121136397 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455694 2025-03-27 09:10:00.923 2025-03-29 22:39:52.94 \N Yep I was honoured to get a spanking. I was like “who’s this guy”?! 😂 https://example.com/ 16970 455682 455649.455650.455665.455682.455694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.145487906178 0 \N \N f 208273992 \N 1 228038482 0 f f \N \N \N \N 455649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437553 2025-03-14 15:51:35.771 2025-03-29 22:39:52.94 \N Yeah Hayek is always right "all we can do is by some sly roundabout way introduce something that they can’t stop.” https://example.com/ 10291 437552 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8332625316016 0 \N \N f 539356893 \N 4 91417553 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434395 2025-03-11 21:18:33.226 2025-03-29 22:39:52.94 \N ![NIMBC](https://i.ibb.co/mCky8KN/NIMBC.png) https://example.com/ 11829 434285 434285.434395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.860872803886 0 \N \N f 228346216 \N 2 97861901 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 2025-03-19 11:43:57.087 f \N \N \N 0 0 0 0 2 0 0 435220 2025-03-12 14:37:05.066 2025-03-29 22:39:52.94 \N Why not open a channel with SN and push the desired sats to their side? You've donated while also adding liquidity to their node. https://example.com/ 9426 435214 435046.435135.435162.435214.435220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4451431237999 0 \N \N f 1379034120 \N 10 166058678 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 09:44:31.728 f \N \N \N 0 0 0 0 1 0 0 410393 2025-02-20 13:12:01.912 2025-03-29 22:39:52.94 \N Yes! Living in El Salvador taught me the importance of spending (and replacing) bitcoin instead of just holding it. Moreover, if you always replace a little bit more than what you spend, you can increase your stack, which is a win-win situation https://example.com/ 663 410065 410018.410065.410393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.472715776241 0 \N \N f 173944162 \N 1 241380905 0 f f \N \N \N \N 410018 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434818 2025-03-12 08:58:46.947 2025-03-29 22:39:52.94 \N I think it takes time for everyone to learn this lesson. I was only zapping 10 sats when I started. Now I zap comments 20-50 and posts minimum 100. https://example.com/ 16858 434804 434795.434796.434804.434818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2089564254212 0 \N \N f 433107242 \N 4 23636596 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:40:03.3 f \N \N \N 0 0 0 0 3 0 0 423788 2025-03-03 15:46:03.095 2025-03-29 22:39:52.94 \N Personalized ranking can’t come soon enough https://example.com/ 16638 423681 423681.423788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8366246635337 0 \N \N f 444499785 \N 5 21626510 0 f f \N \N \N \N 423681 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403754 2025-02-15 07:10:48.731 2025-03-29 22:39:52.94 \N I’m not convinced that modern day banking interest is the same thing as the prohibited ‘riba’. \n\nThere are lots of ways for so-called Islamic banks to make money by providing finance:\n\n“ Ijara is when banks buy an asset, such as a car, and leases it to the customer. Ownership remains with the bank until the lease is paid off by the customer. During this time, the bank is responsible for maintenance of the asset.\n\nMurabaha means the bank acts as an intermediary to buy the asset, which is then sold to the customer, plus profit. The customer buys the asset with deferred payments.\n\nWakala refers to a contract of agency or delegated authority in which the bank is appointed much like an individual agent to carry out a specific task on the customer’s behalf. The bank lends its expertise for a set duration for an agreed upon profit.\n\nSalam could be considered forward-financing, or as a kind of debt – the institution pays for specified assets in advance, which the seller will then supply to a quality, quantity, and time the parties have pre-agreed.”\n\nhttps://www.edology.com/blog/accounting-finance/how-islamic-banking-works/ https://example.com/ 20956 403750 402904.403694.403750.403754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.36388448855242 0 \N \N f 1826895153 \N 15 222800095 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435870 2025-03-13 03:44:09.919 2025-03-29 22:39:52.94 \N ![](https://www.zapread.com/i/9A5) https://example.com/ 1401 435711 435657.435711.435870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2182198213964 0 \N \N f 172719759 \N 1 2457000 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-19 22:50:49.642 f \N \N \N 0 0 0 0 1 0 0 433379 2025-03-11 03:23:27.098 2025-03-29 22:39:52.94 \N Any reanimator fans out there?\n\n![](https://bitcoinscoresby.com/wp-content/uploads/2024/10/bitcoinreanimator.webp) https://example.com/ 20691 433377 433377.433379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7167763526746 0 \N \N f 2652055 \N 1 5560072 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435925 2025-03-13 05:31:44.675 2025-03-29 22:39:52.94 \N ![Bitcoiners Vs. Banking Collapse](https://www.bitcoinpriceinwords.com/Bitcoiners_vs_banking_collapse.jpg) https://example.com/ 21803 435920 435657.435728.435920.435925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2085807786995 0 \N \N f 501437681 \N 3 48675742 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 04:15:11.474 f \N \N \N 0 0 0 0 1 0 0 447765 2025-03-22 05:50:55.745 2025-03-29 22:39:52.94 \N The Nostr client I've seen with the fastest connection is Iris (in my personal experience). https://example.com/ 2670 447757 446513.447049.447084.447186.447661.447685.447757.447765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9153978181043 0 \N \N f 575386457 \N 4 127753066 0 f f \N \N \N \N 446513 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437591 2025-03-14 16:40:33.426 2025-03-29 22:39:52.941 \N I like more the new term: NLB\n["Bitcoin's Never Look Back Price"](https://bitcoin.craighammell.com/never-look-back) https://example.com/ 2233 437588 437044.437560.437588.437591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5050345670227 0 \N \N f 409892691 \N 2 143667642 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 2771 2022-10-19 21:08:33.378 2025-03-29 22:39:52.941 \N I think the answer is in [Why do perfect squares have a odd amount of factors](https://math.stackexchange.com/questions/3358685/why-do-perfect-squares-have-a-odd-amount-of-factors)\n\nThe squares are exactly those numbers with an odd amount of factors. Because the amount is odd, they are now open. https://example.com/ 18526 2734 2734.2771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3533967290443 0 \N \N f 53625190 \N 1 161956608 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435298 2025-03-12 15:24:44.863 2025-03-29 22:39:52.941 \N Howdy partners! Just HODLing onto my hat here. Just hit 70 days!\n\n![IMG_8532.gif](https://m.stacker.news/5133) https://example.com/ 1488 435288 435154.435288.435298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.71729879815604 0 \N \N f 183094742 \N 1 94033708 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 2025-03-19 08:47:22.627 f \N \N \N 0 0 0 0 1 0 0 446988 2025-03-21 15:00:34.62 2025-03-29 22:39:52.941 \N A lot of Saylor's Bitcoin concepts, I see originating in a set of ideas that were prominent around MIT in the mid 1980's at the intersection of tech/engineering/operations industry and was adjacent to the failed "cybernetics" project. In this intellectual framework, a key opportunity for the future firm was by collecting and analyzing data at the individual level, corporate outlays and decision would be more efficient. The computing power necessary for this was just beginning to be feasible. I think Saylor was influenced by this view given he is the ceo of a business intelligence vendor doing just this. \n\nAs his own firm's product offering hit a ceiling to the value it would deliver from micro-economic measurements (e.g. trying to track inventory level changes) I think he became influenced by the idea of Bitcoin doing something similar, but in the invisible hand manner of pricing in changes and shocks to energy cost, risk preference etc across time and space into one number. In Saylor's view, no firm, of business intelligence software could outcompete the Bitcoin protocol for discovering information and properly factoring it a fair market value.\n\nIt's a good sign when people take the idea of Bitcoin, and see in it another idea that they admire and trust. I think the problem you mention is that Saylor's school of thought and lingo are not exactly a well known or admired idea by the vast majority of people considering buying bitcoin.\n\nIn my opinion, Saylor *is* onto something insightful with his "wall of energy" hypothesis, but he hasn't been able to quantify it. The analogy I would make is just as the finance profession prices firms by a discounted set of projected cashflows, a blockchain token could be valued by its projected future hashrate. Stated another way: A bitcoin has value 1.) *if and only if* producers continue to mine it in the future, 2.) the growth in value is proportional to the growth in the hashrate in the long run. https://example.com/ 6160 446961 446313.446884.446898.446927.446961.446988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3117380868477 0 \N \N f 577993638 \N 4 134456671 0 f f \N \N \N \N 446313 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 413550 2025-02-23 10:25:13.868 2025-03-29 22:39:52.941 \N ![](https://m.stacker.news/40128) https://example.com/ 4259 413527 413007.413527.413550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.64076346867689 0 \N \N f 6342152 \N 1 168429424 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423005 2025-03-02 21:21:25.098 2025-03-29 22:39:52.941 \N 100 pushups a day until $100k has officially defeated me. After the first few months, I tweaked my wrist. No big deal, I just switched to knuckle pushups. Well, after a few months of those, my wrist seems to be sprained.\n\nNo retreat. No surrender. My new goal is 100k steps per week until $100k. https://example.com/ 929 422717 422717.423005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5510134099969 0 \N \N f 226483060 \N 2 225425217 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458177 2025-03-29 03:55:02.778 2025-03-29 22:39:52.941 \N It's a synthetic fiat. Kollider offers options contracts. So by paying $100 BTC to short $100 worth of a BTC/USD "perpetual swap" position at 1:1, you essentially have a (relatively) stable USD. When the BTC/USD value goes up your short position loses value but the BTC goes up at the same rate. At any point in time your position should be worth around $100. \n\nThere was a post earlier in the year where Kollider explains these:\n\n*Synthetic Stablecoins on Lightning*\nhttps://stacker.news/items/12413\nhttps://twitter.com/kollider_trade/status/1496507594214723590\nhttps://nitter.it/kollider_trade/status/1496507594214723590\n\nThis is not without risk, as Kollider is custodian, firstly (not your keys, not your coins), and there's volatility risk -- where either a price spike or a selloff is so brisk where your position is out of balance due to reasons that happen in times of wild volatility, and your short position gets closed. That would be bad.\n\nOr, if Kollider is hacked or otherwise exploited. This would be relevant reading, on that topic:\n\n*The Kollider Exchange, Two Attacks Later*\nhttps://stacker.news/items/43096\nhttps://notgeld.medium.com/the-kollider-exchange-two-attacks-later-225d4e88e579\n\nAlso,Kollider is (currently) what StandardSats uses to offer their synthetic stable as well.\n\n*StandardSats SBW -- LN wallet with Fiat-denominated custodial channels -- now available on Google Play*\nhttps://stacker.news/items/37578\nhttps://play.google.com/store/apps/details?id=com.btcontract.walletfiat\n\n*What is the Lightning Network?* Lightning-native synthetic assets\nhttps://stacker.news/items/16742\nhttps://standardsats.github.io https://example.com/ 4395 458169 457126.458150.458156.458169.458177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9480777514506 0 \N \N f 154548298 \N 1 205597353 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448911 2025-03-23 01:04:01.241 2025-03-29 22:39:52.941 \N This is why Occupy Wall Street happened. What the fuck does BlackRock need a bailout for? https://example.com/ 11263 448819 448819.448911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8148063723329 0 \N \N f 13916362 \N 1 194445656 0 f f \N \N \N \N 448819 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307285 2024-11-24 22:32:25.713 2025-03-29 22:39:52.941 \N "Renewable energy is already the cheapest form of energy per kWh"\n\nPress X to doubt. https://example.com/ 19071 307282 307258.307280.307282.307285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.38743504527329 0 \N \N f 118724696 \N 1 213703666 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434600 2025-03-12 03:55:55.63 2025-03-29 22:39:52.941 \N ![IMG_9658.jpeg](https://m.stacker.news/6894)\n\nJapan faces many problems, but all these fade away when I get treated to the gorgeous sight of the setting sun every day. I count my blessings that I married a Japanese lady and that we can return to this fabulous country every year.\n\nI already have a post in mind for Earth. Stay tuned! https://example.com/ 11153 434077 434077.434600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8333443995053 0 \N \N f 221206206 \N 1 94124619 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 2025-03-19 06:48:26.24 f \N \N \N 0 0 0 0 1 0 0 1366 2022-09-13 12:01:41.323 2025-03-29 22:39:52.941 \N Agreed. SN as a collectibles game will be much more fun. https://example.com/ 2492 1360 1359.1360.1366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.73080549496663 0 \N \N f 234546670 \N 1 196660313 0 f f \N \N \N \N 1359 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 449901 2025-03-23 15:52:58.493 2025-03-29 22:39:49.151 Beware the Bull Market FOMO If you are truly a beginning bitcoiner or if this is your first bitcoin cycle (bitcoin has cycles of market price spikes and dumps) then there is something emotional to be aware of. FOMO.\n\nFear of missing out is real. When you see bitcoin rising in market price on exchanges emotions can do funny things to even the most rational and thoughtful person. A word of wisdom that you hear often is, "stay humble, stack sats". I'm not going to try to tell you what you should do but be aware. You can make some mistakes when emotions cloud your judgement.\n\nWhen bitcoin prices begin to rise as they have over the last month you might be tempted to do risky things. Things like over extend yourself. What I do, and what many of us do is we just always buy. That's the stack sats part. Start getting paid a portion of your pay check in bitcoin for example. Each week use Robosats to buy bitcoin without KYC. Or find another way to regularly secure some bitcoin for your future. \n\nI am advising this because I have allowed emotion to direct me to strongly in the past. Don't get me wrong. I didn't get wrecked. I do not regret any bitcoin I've acquired. I feel this way because I value bitcoin far above its current market price. I actually get more excited when market price goes down. That said, be prepared.\n\nBe prepared for bitcoin to keep going up but also be prepared for an 80% draw down. That FOMO you feel now might be replaced with dread for letting emotions cloud your judgement. Just be aware. We are hearing many massive predictions from the dudes that get attention from speculating on bitcoins new ATH. It happens every cycle. It affects us all. \n\nStay humble, stack sats. \N 20185 \N 449901 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 14.5111324370171 0 \N \N f 95753840 \N 1 135392167 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444417 2025-03-19 21:27:15.688 2025-03-29 22:39:52.941 \N 676 sats so far, and not a single comment.\n\nnobody wants to say the thing because they don't want to glow. https://example.com/ 2652 444408 444408.444417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0499046673712 0 \N \N f 24036169 \N 1 14793586 0 f f \N \N \N \N 444408 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402034 2025-02-13 14:16:33.119 2025-03-29 22:39:52.941 \N Hey! Filipino-American Lightning maxi here:\n\n*Pouch.ph* is the first lightning wallet with Philippine fiat/banking rails so we're excited to be helping with arcade.city's traction here wherever we can. :) \n\nAlso note we're also working on adding USD/ACH with Prime Trust so stay tuned for a US launch in a few months. We love Strike.me but we want to help with lightning adoption in the US too :3\n\n-- Ethan (Founder, Pouch.ph) https://example.com/ 1705 400908 400908.402034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.45853935568724 0 \N \N f 163154242 \N 1 240141049 0 f f \N \N \N \N 400908 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434662 2025-03-12 05:42:00.695 2025-03-29 22:39:52.941 \N On my to do an outpatient visit in Dallas for a clinical trial.\n\nI've been a lab rat for pharmaceutical companies since 2011. I do this for a living. AMA! 😆 https://example.com/ 722 434646 434646.434662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.72206106744285 0 \N \N f 30509810 \N 1 56482951 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 01:35:50.262 f \N \N \N 0 0 0 0 1 0 0 419775 2025-02-28 07:01:21.358 2025-03-29 22:39:52.941 \N Day 122 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 10094 419360 418796.419360.419775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3635181187216 0 \N \N f 322944136 \N 2 197123599 0 f f \N \N \N \N 418796 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402369 2025-02-13 17:47:02.19 2025-03-29 22:39:52.941 \N Now **this** is a great pitch\n\nAnd the product sounds really good!\n\nThankyou for the rewards contribution! https://example.com/ 960 402326 402091.402299.402326.402369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4416763895033 0 \N \N f 306193938 \N 3 72770505 0 f f \N \N \N \N 402091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400350 2025-02-12 04:43:30.149 2025-03-29 22:39:52.941 \N Is too early, is just a proposal.\nI am just reading and waiting to see how will evolve.\nPeople usually get too easily excited by new things.\nI am more patient with "new things". https://example.com/ 20681 400261 400261.400350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.18956283865283 0 \N \N f 207723997 \N 1 115541308 0 f f \N \N \N \N 400261 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442677 2025-03-18 18:26:48.141 2025-03-29 22:39:52.942 \N Not really?.. :)\n\nI think this argument is typically brought forward by newer entrants to Bitcoin (although not exclusively), and it might be because they’re simply impressed by bitcoin elegance and usefulness, and the impact it can have on their lives. As such they believe it already does all it would ever need to do. They’re also reinforced by tales about bitcoin’s codebase’s immutability, but of course those tales aren’t true, and bitcoin is upgrading all the time (just maybe not in the ways that would be most impactful).\n\nThere’s also another argument which is that upgrading bitcoin is risky and therefore shouldn’t be done. While I can understand that approach, it is not the same as saying that bitcoin doesn’t need new features… it might need them, but this cohort believes that even though they might be needed, we are too stupid to do them safely. https://example.com/ 14213 442508 442508.442677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.769460935507098 0 \N \N f 240150693 \N 1 222470090 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436276 2025-03-13 12:40:46.681 2025-03-29 22:39:52.942 \N I don't think it works like that. Anyone ambitious enough to achieve his or her dreams has another one waiting right around the corner to strive for. https://example.com/ 4395 435905 435905.436276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9339632834907 0 \N \N f 70306965 \N 1 160202646 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 2025-03-20 07:57:35.393 f \N \N \N 0 0 0 0 1 0 0 442591 2025-03-18 17:12:31.807 2025-03-29 22:39:52.942 \N Ray Marceau, CEO of Purse is here!\nIf you need to buy something, the answer is clear\nWhy pay the full price? Cut it like a shear\nI just rhyme and stack like it's my career https://example.com/ 699 442588 442588.442591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.03605546472385 0 \N \N f 335218858 \N 2 64122503 0 f f \N \N \N \N 442588 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 386138 2025-01-30 16:39:14.125 2025-03-29 22:39:52.942 \N Are you all seeing growth in mobile focused use cases over the last year? https://example.com/ 20864 386121 385662.385905.386121.386138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5145200427959 0 \N \N f 309714871 \N 3 228909966 0 f f \N \N \N \N 385662 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402201 2025-02-13 15:58:01.679 2025-03-29 22:39:52.942 \N This makes obvious sense now that you've said it but I hadn't even considered it. https://example.com/ 718 401783 401783.402201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8168357717435 0 \N \N f 82741853 \N 1 170672355 0 f f \N \N \N \N 401783 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435141 2025-03-12 13:46:55.063 2025-03-29 22:39:52.942 \N Thank you for sharing your story and your reflections here. As you said, while one could still argue if freedom of speech is really at risk with such unexplained Twitter bans (and I'm not saying it is not), it is still a fact that time and effort are lost by the user banned.\n\nFor anyone creating content directly on centralised platforms, this is an important wake-up call. \n\nPublishing content primarily on a self-hosted blog / website / newsletter is a good practice. After all, we can always create content on our site and post the link to it later in whatever social media platform we desire. It is also possible to build (and retain!) an audience directly from our blog/newsletter if readers subscribe to it.\n\nAs you well pointed out, social media platforms such as Twitter and Stacker News are extremely valuable for content discovery, conversations and moderation (by leveraging the likes, dislikes, etc). But we can mitigate the risk of losing everything by adopting self-hosting of our content at least :)\n https://example.com/ 6717 435030 435030.435141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5624576679007 0 \N \N f 1138755839 \N 10 54123696 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 16:49:19.825 f \N \N \N 0 0 0 0 3 0 0 437872 2025-03-15 00:11:21.513 2025-03-29 22:39:52.942 \N Well, I married me a wife\nShe's been trouble all my life\nRun me out in the cold rain and snow https://example.com/ 2367 437769 437769.437872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3281489151782 0 \N \N f 187717022 \N 1 105710840 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422633 2025-03-02 15:32:09.644 2025-03-29 22:39:52.942 \N Hi all snails 😉 \n![_483f10e3-b342-4621-827b-7eb7a4987a57.jpeg](https://m.stacker.news/17729) https://example.com/ 17221 422620 422203.422207.422399.422491.422579.422583.422586.422604.422611.422620.422633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2396796561715 0 \N \N f 214774478 \N 2 43523367 0 f f \N \N \N \N 422203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307576 2024-11-25 07:58:10.624 2025-03-29 22:39:52.942 \N I wouldn't mind seeing notifications to the Salon when new territories launch (or are pulled out of archives), or are sent to the archive. \n\nAs far as territories go, I do worry about losing some of my faves, and hope they can stick around. That said, some territories overlap; when I want to talk about a podcast episode, I'm likely to look to the territory it applies to (tech, books, etc) since "podcasts" is such a broad term (and iirc, it had a high posting price). Stocks and Finance overlap as well, and while I loved Charts, it's another one like Podcasts where the contents could usually apply to another territory.\n\n@davidw has [a good post ](https://stacker.news/items/486959) looking at how territories were doing a couple of months back, and I'm hoping we'll see more data and analysis as subterritories and other changes come down the pike. https://example.com/ 16598 307574 306830.306832.307574.307576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5179330809155 0 \N \N f 472901795 \N 3 222670142 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441610 2025-03-18 07:13:31.78 2025-03-29 22:39:52.942 \N Good morning everyone! Monday is here so that means the week has begun, time to show it what we are made of and give it our absolute best, we've got this! I wish you a phenomenal week and may it be filled with success and profit!! Remember that you are important and awesome, if you're going through hard times remember that you're still here and you matter, we've had hardships before and we're still here giving it our best, tough times will pass and we will be here fighting the good fight, be well my friend and stay frosty let's do this!!!! https://example.com/ 6419 440692 440692.441610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.04200501924822 0 \N \N f 167133054 \N 1 94797152 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435487 2025-03-12 18:20:53.469 2025-03-29 22:39:52.942 \N Woo Hoo. 1M sats! Well done everyone. I can finally unglue my eyes from my laptop and stop drinking coffee. \n\nAmazing. Keep zapping guys!\n\nGotta run some errands but check in later! https://example.com/ 4831 435328 435328.435487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.90244234236746 0 \N \N f 309408381 \N 5 153565532 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 2025-03-19 18:33:33.933 f \N \N \N 0 0 0 0 1 0 0 455362 2025-03-27 00:35:40.563 2025-03-29 22:39:49.152 Thoughts About What Language Says About Us For those of you who don't know, I'm learning toki pona. Its a constructed language, created by the Canadian Linguist Sonya Lang. \n\ntoki pona, for one doesn't use capital letters, but for two, only has 126 words. Words that are only for the purpose of expressing being polite were considered unnecessary and aren't part of the language. Instead, the default assumption in toki pona is that the speaker is trying to be polite.\n\nIt made me think, that we have to specify that we are trying to be polite, says a lot about us doesn't it?\n\nThen, I had to do a double take. What exactly does it say about us?\n\nMy first thought was that people are just so angry and rude to each other all the time, that to be polite is the exception, not the rule and that's why its needed to specify that you're actually trying to be polite, but if you leave it at that I think you actually miss a lot about what's going on.\n\n# Power\n\nThe primary focus I think of when it comes to polite/rude dynamics is, expressions of power and resistance. Someone tells you what to do, you reply with resistance (rude) or submission (polite). Likewise, which approach the person giving the order/favor will be different depending on what power they believe they have over you. They will either give the order with no suggestion that it can be resisted (rude) or as a suggestion, something that can be resisted (polite). \n\nWe can further demonstrate that these are linguistic power dynamics by pointing out that asserting that someone of power is being rude by giving an order is itself considered rude. Resistance on the part of the person being asked is an attack on the power or authority of the person asking. When the person is asking using a submission tone (polite), they are indicating an awareness of not having power over the person being asked. \n\n# What Does This Say About Us?\n\nIn toki pona, we assume that everyone knows that no one has power over each other, and therefore resistance or fighting is unnecessary, instead, just say you don't want to do what is asked. toki pona is also an auxiliary language. Its intentionally simple and easy to learn and its good for people who don't speak each other's languages, but it isn't meant to replace natural language. If two speakers know a natural language, its better to use that instead as you can express much more complex ideas, like your desire to command someone and your resistance to the assertiveness of authority, but as mature adults, is there a better way to express these things? \n\nI would like to suggest, that the next time someone is rude to you, not to fight them, but instead understand that they either feel attacked by you, or that they feel as though they don't have power over themselves in your conversation and are just trying to take that back. Either way, being more understanding rather than reactive towards each other, could go a long way. \N 13132 \N 455362 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 29.2718208403996 0 \N \N f 190856969 \N 2 135949127 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430920 2025-03-09 14:09:18.486 2025-03-29 22:39:49.152 We don’t need more bitcoin merchants I was fifth bitcoiner that visited this coffee place in San Salvador today, but first one to pay with bitcoin. \n\nWe have more bitcoin merchants now than Bitcoiners willing to spend.\n\nWe don’t need more merchant adoption, but spenders adoption. Without spenders we will not reach any substantial adoption. \n\nThere’s only so much Bitcoiners in the world and only a small fraction of us want to spend it. \n\nHow do we change that culture?\n\n![](https://m.stacker.news/57086)\n\n \N 16769 \N 430920 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4460634761816 0 \N \N f 193905760 \N 1 56674805 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401563 2025-02-13 06:50:44.595 2025-03-29 22:39:52.942 \N I forward on average a little over 1 Btc / day profitably (different node than this SN ID haha) . Mix of manual and automated\n\nI think you're spot on with that liquidity flow you described, and many have posted some great router docs. Ill share a bit of my thoughts\n\n As a pleb, I think many would be better off identifying and focusing on a SPECIFIC flow rather than trying to act as a generalized router. Plebs with 1 BTC are never going to compete against the big 40BTC+ router hubs in terms of real routes - its a liquidity game, and they have more than you\n\nWhat I mean very specifically by this is, focus on facilitating a specific flow. Breez -> WOS is one example that I know is quite profitable ;) . I think many would do much better for themselves and expend less effort to focus on providing a highly reliable route for such flows, though there can be challenge in identifying such\n\ncheers https://example.com/ 1454 401516 401516.401563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.19479783784963 0 \N \N f 262644352 \N 2 246814161 0 f f \N \N \N \N 401516 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435006 2025-03-12 11:54:35.659 2025-03-29 22:39:52.942 \N I’m pretty sure if the prices of goods and services were denominated in sats and not dollars this would change on a dime. \n\nPeople want dollars because the things they want and need are priced in dollars. https://example.com/ 762 435002 435002.435006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7137196686953 0 \N \N f 404342195 \N 2 140206849 0 f f \N \N \N \N 435002 \N 0 0 \N \N f \N 2025-03-19 05:12:38.251 f \N \N \N 0 0 0 0 1 0 0 429739 2025-03-08 15:05:54.711 2025-03-29 22:39:52.942 \N ![](https://m.stacker.news/45433) https://example.com/ 18393 429628 429628.429739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.334447047940536 0 \N \N f 14959092 \N 1 159540884 0 f f \N \N \N \N 429628 \N 0 0 \N \N f \N 2025-03-20 09:50:23.169 f \N \N \N 0 0 0 0 1 0 0 447199 2025-03-21 17:22:55.371 2025-03-29 22:39:52.942 \N It took significant effort to get started and especially to start it required me making sure good bitcoin content wasn’t ignored and new comers were engaged. I also spent several hours a day sourcing content. \n\nAs time goes on I can do less of this but it’s still an hour or more of my average day.\n\nSadly theses don’t turn on like a faucet. Someone has to commit to dancing alone for as long as it takes to attract other dancers and even then they have to keep dancing until there’s so many people no one notices they’ve stopped.\n\n~nostr and ~tech are relatively dead because no one is very energized to make those subs what they should be.\n\nDoes that make sense? https://example.com/ 2328 447179 447143.447179.447199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.291349938445 0 \N \N f 333832468 \N 2 67629049 0 f f \N \N \N \N 447143 \N 0 0 \N \N f \N 2025-03-28 12:09:17.703 f \N \N \N 0 0 0 0 2 0 0 420738 2025-03-01 01:49:20.404 2025-03-29 22:39:52.942 \N You know what? Normies are followers for the most part. They also don't care about freedom, sovereignty, or privacy. All things they should care about. They will follow though. This is why it is so important to lead yourself towards these things. This is the way forward. https://example.com/ 17891 420620 420620.420738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.9136867457977 0 \N \N f 77669727 \N 1 187712730 0 f f \N \N \N \N 420620 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435711 2025-03-12 22:24:36.829 2025-03-29 22:39:52.942 \N Great technical hero's journey! I hope we can eventually get to a point where mobile nodes don't need to do so much outsourcing, but based on this blog post it seems unavoidable for the time being.\n\n> We're interested in combining probing data with gossip data to create a reinforcement learning AI that can hook into our prober to continue learning from, with the plan to take the trained model and ship it to end users. When trampoline routing comes along, this may be very useful to us from a reliability and privacy standpoint.\n\nAI? *vc swipes right* https://example.com/ 13599 435657 435657.435711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.08047468225007 0 \N \N f 221380475 \N 3 155721915 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 2025-03-20 10:14:20.17 f \N \N \N 0 0 0 0 2 0 0 402197 2025-02-13 15:56:35.641 2025-03-29 22:39:52.942 \N I don't care why, I want one https://example.com/ 21287 402188 402188.402197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.91225185195681 0 \N \N f 320037754 \N 3 234969013 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444289 2025-03-19 18:50:54.18 2025-03-29 22:39:52.942 \N 1. I agree changing the protocol (I'll assume you are only talking about consensus changes through soft/hard forks) is very difficult, CTV has been proposed for several years now, and I am witnessing it first hand myself. As for it being very dangerous, this totally depends on what the change is. A new OP code is one of the smallest changes possible, far less complexity than segwit or taproot were. CTV is also the most restricted op code that is currently proposed (you will struggle to find a serious dev that disagrees), it is non recursive (best to look this up if you don't know this term), and has a relatively small amount of code. The code has been reviewed for quite a few years and heavily tested, with a 5+ BTC bounty available for anyone who can create a damaging tool/bug/etc using CTV on bitcoins testnets. This has also been available for several years with nothing found so far. CTV could certainly be used for bad things where you could lose your money, but you would have to volunteer to send your bitcoin to an address that uses CTV (so it wouldn't affect any other users). This is the same as now, you could send your bitcoin to an address you don't control or you could use a time lock to lock your bitcoin for thousands of years, etc. There will be new code to maintain of course, but CTV will also improve efficiency of lots of current code/use cases making some things simpler. As for the rules not being meant to change, firstly Satoshi would have disagreed, you can see this in his writing. And also bitcoins history disagrees, as there have been 8 consensus rule changes since March 2012 (see the attached image). Also non consensus code changes very regularly, check out the bitcoin GitHub. There are very good arguments that covenants like CTV can improve the economic incentives of the system. Such as improving the fungibility of coins with coin pools (like using coinjoins but inside a single UTXO), and increasing the economic density of a UTXO so monetary transactions can better compete with things like ordinals or inscriptions (which some call spam).\n\n2. Ok now for the second point. I'm not very convinced by this personally, and I believe I went into this a bit in the post. If lots of coins end up TRAPPED (due to fees to exit being too high or the custodian refusing/legally not being able to let you exit) you no longer have the same free market we have right now. We could not force bank runs on them to keep them in line. This would be a similar system to what we have now with fiat, there is some competition amongst banks, but it's far from great (as I'm sure you know). We would probably be back to having to protest or use the legal system. The open ledger could provide a slight improvement though on seeing their reserves (assuming they share their addresses). But we could never truly know their liabilities, so they could create fake IOU bitcoins and go back to fractional reserves. As for their authority on the bitcoin protocol, I feel I covered that well in the post, but I'll touch on it again. If they get enough power through their nodes and they collaborate with other custodians (the government they reside under could force them to do this, the custodian themselves doesn't need to be a bad actor).\n\nNone of this is guaranteed and I'm not promising it will happen. But it's a very real threat and risk and something that needs to be taken seriously. We have already seen wallet of Satoshi & Exodus wallets pull out of the US over regulatory fears, meaning custodial bitcoin wallets themselves might not even be a real option. You cannot transact/deposit/withdraw with an ETF. Hopefully this post was clear and helpful, I might have gone on a bit haha. And thank you for the comment and your interest! :D Stay humble, stack sats in self custody and don't choose voluntary ossification. https://example.com/ 3506 444277 444114.444132.444143.444150.444207.444213.444277.444289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.82431733402786 0 \N \N f 540065217 \N 4 213584085 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448806 2025-03-22 22:08:02.764 2025-03-29 22:39:52.942 \N ![When-Lambo.gif](https://m.stacker.news/19694) https://example.com/ 17365 448029 448029.448806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.01469512756242 0 \N \N f 217599331 \N 1 87787107 0 f f \N \N \N \N 448029 \N 0 0 \N \N f \N 2025-03-29 15:27:19.255 f \N \N \N 0 0 0 0 1 0 0 420055 2025-02-28 13:11:01.594 2025-03-29 22:39:49.152 Lightning to bank in 1 minute - Why and what does it mean to the community? Two years ago, I used to get paid in Bitcoin. It took up to four days to sell it!\n\n\n**Why did it matter so much?**\n\nI wish I could express the feeling of waiting four days just to book the flight tickets and hotels with Bitcoin for my travel. The number of times I had to cancel plans because it was just not possible to use Bitcoin to travel.\n\nEvery time I ran out of my Euro savings nearing the end of the month, I borrowed from my friend because my Bitcoin salary and savings were locked up in my hardware wallet. I almost felt useless with this hurdle of being unable to liquidate. \n\nIt took 3-4 days to convert my Bitcoin to Euros and get it into my bank account after going through Binance’s horrible UX and paying hefty fees. I was unsure if I would receive it, fearing that my bank could freeze my account.\n\nThe situation was frustrating; I had to get paid in euros and buy some BTC by the end of the month if I had any salary left. Ironically, even in 2021, finding a solution that helped me do the fundamental process of reliably liquidating my Bitcoin was challenging.\n\n\n\n_So I start project Bringin._\n\n\n\nIt took three times the time and four times the money I thought it would take \n\nBear market, building in a highly regulated space, being kicked out of the EU (cos my visa was attached to employment), and working remotely from India, building a startup for the first time with no co-founder made it a little harder than it should have been. \n\nToday, we are super happy.\n\nhttps://youtu.be/3hOJXK_D-Z8\n\n\n\n\nWe enabled support of lightning last week, Which means: \n\n- I can get Bitcoin from my self-custody Bitcoin wallet to my bank account in less than a minute with lightning and SEPA instant transfers.\n\n- Reliable transfer - Each user is provided with a dedicated bank account, which means the bank transfers are 100% safe as the receiving banks see the transfers are coming from your own IBAN account\n\n- Stress-free- The UX is streamlined to be a portal with two steps to sell Bitcoin from any wallet to receive Euros into any of my bank accounts.\n\n- It works flawlessly in 31 European countries.\n\n\n\n\n**What does this mean to the Bitcoin community in Europe?**\n\nLike me, many get paid in Bitcoin or earn Bitcoin in many ways. They now would not have to go through the problems I faced. You’re welcome!\n\nPlanning holidays? Tap into your Bitcoin savings to book flight tickets and hotels without hiccups.\n\nYou can walk into any shop with only Bitcoin and be sure to make a purchase, even if the merchant does not accept Bitcoin.\n\nLiving on Bitcoin standards is now feasible with Bringin.\n\nGet paid in Bitcoin, and spend some of it stack rest!\n\nSelf-custody is your wealth with no fear. You can use them anytime for any purpose.\n\nToday, we are super happy.\n\nSign-up here: https://bit.ly/49I26vR \N 4083 \N 420055 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 15.5576994698507 0 \N \N f 888161421 \N 6 182067057 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 435783 2025-03-13 00:52:29.192 2025-03-29 22:39:52.942 \N There are a lot of reasons to be scared at night that have nothing to do with aliens.\n https://example.com/ 15703 434318 434278.434318.435783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.18479731951015 0 \N \N f 666601414 \N 4 13063833 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-19 18:11:13.285 f \N \N \N 0 0 0 0 1 0 0 436175 2025-03-13 11:14:38.822 2025-03-29 22:39:52.943 \N I think the mistake a lot of loud voices make about real estate and stocks is that they are looking at all things static but bitcoin. By that I mean that bitcoin will change the incentives of course but real estate and stocks will adapt because they have utility. Companies will always need capital they do not have. People will always need a place to live. How real estate functions as a market will change and I don't think anyone knows what it will be like. I do think they are right that it will not be as it is today. I agree that the idea of property being a place to park wealth will drastically change. But, we need to remember that even under hard currencies land had value and was a way of transferring wealth over time. The state is the main reason this isn't as feasible now. Bitcoin will affect the state and how it responds will greatly determine the way real estate is changed. https://example.com/ 14818 436163 436163.436175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0453509096811 0 \N \N f 391479327 \N 3 234639196 0 f f \N \N \N \N 436163 \N 0 0 \N \N f \N 2025-03-20 11:39:57.863 f \N \N \N 0 0 0 0 2 0 0 410480 2025-02-20 13:56:24.976 2025-03-29 22:39:52.943 \N The truth is that some people won't touch it until it has the government's blessing. By the government adopting it more people will adopt it. This is a net good for Bitcoin and society in the long run.\n\nBitcoin is for everyone, including your enemies, like governments and central banks. https://example.com/ 2722 410237 410237.410480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1339975329522 0 \N \N f 154809598 \N 1 220873145 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424907 2025-03-04 13:27:36.412 2025-03-29 22:39:53.147 \N Thanks for the recap Siggy. I haven't been to NYC in a decade or so. Maybe I will take the family on a road trip next summer. Check out a Mets game (I have already been to old and new yankee stadium and I hate the yankees) and check out PubKey. https://example.com/ 13143 424571 424571.424907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0502037823521 0 \N \N f 1722317626 \N 12 2310574 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408208 2025-02-18 16:19:05.005 2025-03-29 22:39:53.147 \N Was it difficult to raise money for a startup based in Canada? Did you consider moving to the US/Europe to build, or did you find that the bitcoin ecosystem doesn't care about location? \n\nAlso... wen 🤖? https://example.com/ 10433 407903 407903.408208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6924503260965 0 \N \N f 113881526 \N 1 248489170 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448882 2025-03-23 00:22:08.496 2025-03-29 22:39:53.147 \N Must try that place as soon as I can travel https://example.com/ 897 448880 448858.448880.448882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6607117236009 0 \N \N f 238063345 \N 1 86938571 0 f f \N \N \N \N 448858 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436688 2025-03-13 19:39:24.926 2025-03-29 22:39:53.147 \N I'm working on a full refactor of the wire codec and message building code of Indra...\n\nI just perused LND's tlv library, and was a little amused to see how it was constructed... has function signature types instead of using an interface, and two of them would make such a nice interface but instead, no, \n\nI wanted to check it out, see if it was relevant, but honestly, building onions with it requires a secondary data structure built in parallel to the TLVs for tracking the encryption ciphers for the layers (ECDH key pairs and initialisation vectors)...\n\nSo, by way of introduction from something familiar, I dug up some old code I was writing for a bitcoin fork project on the Parallelcoin project:\n\nhttps://github.com/p9c/pod-archive/tree/3560992bfcb8dbbd0b44eb237cb5bc1b2ac40a5e\n\nThere was some other commits on other branches but that was my first commit after returning from 2 months exile after my residence permission for Serbia was still not organised and ...\n\nI basically overstayed 3 times and I was ordered to stay away for december and january 2019-2020.\n\nThis commit was the last time that this piece of code referenced in the above was present in the repository, I had been using it for a few things, but mainly a multicast network miner work delivery protocol to go with my CPU based proof of work algorithm (long division based).\n\nPretty funny. First commit on master branch after they locked us all down, in Serbia it was also a full weekend stuck indoors as well. Next commit on that branch, the whole "simplebuffer" codec was removed. I don't remember why. Might have been because I just replaced it with this hella fast codec called "gotiny" which is the fastest, non-generator based Go binary codec out there.\n\nCan't do that this time, I don't want to exclude people from easily writing a conformant codec in another language.\n\nMy host and sponsor for doing the work at that point or very near that time stopped adding code to the repository, and was spending 18 hours a day watching conspiracy theory videos on youtube, which got really really irritating, on top of all this fuggin bullcrap.\n\nSo anyway, just gonna adapt this extremely small and concise bit of code, maybe improve it a tiny bit, add a handler for doing the encryption after encoding the messages.\n\nShouldn't take too long, the design is proven and almost perfect fit, and better than anything I put into Indra for this task to date, I just https://example.com/ 12808 436674 436549.436658.436661.436674.436688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1146656471777 0 \N \N f 214685011 \N 1 1388001 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 2025-03-20 13:01:10.162 f \N \N \N 0 0 0 0 1 0 0 441676 2025-03-18 08:35:50.881 2025-03-29 22:39:53.147 \N Nah, this is a terrible example. Bitcoin Core was quite right to not go down the path of more filters. It's hopeless to stop these protocols as long as they're willing to pay fees.\n\nUltimately filters are a form of censorship. And censorship can only work if all means of communication are censored. It's trivial for the people to bypass filters, eg by running a fork like my Libre Relay: https://github.com/petertodd/bitcoin/tree/libre-relay-v27.1\n\nIf you want to see Libre Relay in action, try out https://opreturnbot.com/ with a >80 bytes message. It will get mined. \n\nBitcoin Core is a bit of a pretend meritocracy. But not for this reason. https://example.com/ 690 441614 441533.441614.441676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6230200616763 0 \N \N f 331105591 \N 2 221085357 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433829 2025-03-11 12:28:35.935 2025-03-29 22:39:53.148 \N The Stacker Saloon has a new look\n\nhttps://image.nostr.build/aac365805e7cc56e34f3d1b283e1a4ec5fb038290f9ac96810f14b15e9939608.gif https://example.com/ 1624 433799 433799.433829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5642669176271 0 \N \N f 640510673 \N 4 4232167 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457921 2025-03-28 19:35:57.461 2025-03-29 22:39:53.147 \N Some libertarians argue that open borders can only work if there is no welfare state. https://example.com/ 14909 457126 457126.457921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.65164386505524 0 \N \N f 611355106 \N 3 153920264 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410439 2025-02-20 13:33:54.642 2025-03-29 22:39:53.149 \N Isn't the most obvious and simple solution adequate; content creators with an interest in SN posts here? https://example.com/ 6430 410429 410358.410384.410392.410429.410439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.843134004017 0 \N \N f 190570631 \N 2 87029171 0 f f \N \N \N \N 410358 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401127 2025-02-12 18:23:34.825 2025-03-29 22:39:53.151 \N ![](https://www.zapread.com/i/9GA) https://example.com/ 19535 401113 401113.401127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.23878690154263 0 \N \N f 80056996 \N 2 208630004 0 f f \N \N \N \N 401113 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458351 2025-03-29 08:14:44.394 2025-03-29 22:39:53.151 \N Today I will give you the chance to insult me and say whatever you want against me.\nThis is your only chance to shit on a bitcoin toxic maxi and get sats for it.\nBest arguments against my toxicity will get rewarded.\n\nLet's see what you can do. https://example.com/ 21804 458347 458347.458351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.98241208453419 0 \N \N f 446870808 \N 3 61910581 0 f f \N \N \N \N 458347 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446591 2025-03-21 11:14:46.679 2025-03-29 22:39:53.151 \N The bitcoin company is on nostr and offers a 4% sats back Tidal gift card and can auto withdraw the rewards via lightning to stacker news...maybe only a matter of time before lighting/nostr services are integrated in to Tidal, would be a game changer.\n\n https://example.com/ 5455 446456 446456.446591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9151249998354 0 \N \N f 49503989 \N 1 40782229 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 394203 2025-02-06 20:04:01.696 2025-03-29 22:39:49.15 Notes on one day of Digital Detox \nThis past Sunday I did a digital detox. For me this means no internet on my laptop, and my smartphone had only phone calls and texts enabled.\n\n**How did I do it, technically?**\n- I paused my laptop (as a device) on my home wifi. My guidelines allow using the laptop, but only to access/edit local files, nothing online. I could have just turned on airplane mode, but that's just a little too easy (one click) to turn off, if I "need" to. I could also have turned off wifi in the bios.\n- I set up an app called Slim Launcher as the launcher app on my android phone. On it, I allowed only 2 apps, the phone and text message app. I've done a digital detox previously with absolutely NO phone usage, but it's tough to not be able to call or text people. And calling people wasn't something that I felt was a problem. It was everything else that keeps me chained to the phone.\n- I regularly use an old kindle fire to listen to podcasts. This device was wrapped up in a towel and put in the closet.\n- I regularly use another old kindle 4th gen for reading. It's not backlit, has no touchscreen, and the wifi is always turned off. I have lots of books on it, that I transfer using the Calibre app and a cable. Works great, and I don't consider it off limits during a digital detox. \n- I have gotten almost all of my regularly used files off the cloud. I used to be a big user of apps like Google Docs, and Workflowy, and now have all that kind of app local. As a matter of fact, I'm using mostly just text files. They work just fine for most purposes. That way I can take notes, and look through my to-do list even during a digital detox, because all my files are local.\n\n**How it worked out:**\nIt's truly amazing how different your outlook and attitude is, when you can't instantly "check" this or that. Weather. News. Price of bitcoin. It makes you realize how much of your attention is taken up with the next dopamine hit of "newness". A lot. \nI really should do this once a week. It puts you in a different headspace, which is really valuable. \nPreparing ahead of time is good. Maybe plan to meet up with people, take a bike ride, take a hike. Do some weeding, do projects, fix things around the house. You have a LOT more time.\nIf you don't have an old style kindle to read from like I do, prep some books, or go the library. I'm glad I had music, downloaded to my laptop. Instead of listening to podcasts (I'm trying to do less of that) I was listening to music. I went through my to-do list the evening before the digital detox, and bumped up a lot of the little and not-so-little tasks that have been there for a long time, that I haven't been doing. Why haven't I been doing them? Because it's so darn easy to waste time online. And my phone is constantly constantly calling me - check this, check that, see if someone responded to something. Quieting that insistent voice is important, at least occasionally.\n\n**Things to improve:**\nThe Slim Launcher app on my phone is better than just trying to use willpower to not click on the apps you normally use. However, it's somewhat easy to bypass. It's the best option I've found for limiting your apps, and still being able to use your smartphone as a phone. I researched and found it about a year ago, it may be that there's better options out there now.\n\nMy ideal would be some kind of launcher app that allows certain apps (like for me, phone calls and texts), but if you want to bring up another app, you have to do something inconvenient. Like a Captcha, but not quite that. I'm thinking - maybe just type in a very long, complicated password with lots of numbers and symbols. \n\nI call this concept PIM - please inconvenience me. I would love to see some launcher apps like this, that allow you to use the addictive apps. But there's a "cost" - you have to do something annoying first. This could be extremely effective in preventing that reflexive "Oh, I gotta check..." Because checking anything entails doing some tedious work first. \n \N 12656 \N 394203 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 25.1732359363919 0 \N \N f 1151049673 \N 13 134104163 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 457787 2025-03-28 17:33:37.746 2025-03-29 22:39:49.152 What are you working on this week? Calling all stackers!\n\nLeave a comment below to let the SN community know what you're working on this week. It doesn't matter how big or small your project is, or how much progress you've made.\n\nJust share what you're up to, and let the community know if you want any feedback or help.\n\nIf you missed last week's thread, [here](https://stacker.news/items/325225) are the updates stackers shared from all their latest work projects. \N 17639 \N 457787 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.6320036528327 0 \N \N f 497131665 \N 4 119740508 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 413647 2025-02-23 12:17:30.512 2025-03-29 22:39:53.152 \N I've been going at it with a hundred cuckbucks charging 2/2.5/3. I'm making 10k sats per trade. Strike sends lightning transactions with fiat, i've been sending the profits via lighting to my node. https://example.com/ 981 413640 413523.413534.413592.413595.413640.413647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.00876937828048 0 \N \N f 549562942 \N 3 72951799 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420951 2025-03-01 09:51:52.482 2025-03-29 22:39:53.152 \N Oh wow. My immediate thoughts go to members of my family.\n\nZooming out, so many tireless human rights defenders who sacrifice everything for countries stuck in dictatorship.\n\nCheck out the story of Hyeonseo Lee, who escaped from North Korea and then WENT BACK to rescue her family https://example.com/ 20157 420895 420895.420951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4728902432453 0 \N \N f 756638345 \N 4 114313340 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 434276 2025-03-11 18:29:49.275 2025-03-29 22:39:53.152 \N ![v5445c.png](https://m.stacker.news/23407)\n\n**🔗 https://www.gold.org/goldhub/data/gold-reserves-by-country**\n\n https://example.com/ 21670 433588 433588.434276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4030994083729 0 \N \N f 441805432 \N 4 59352391 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 2025-03-19 11:39:20.519 f \N \N \N 0 0 0 0 2 0 0 434779 2025-03-12 08:30:11.152 2025-03-29 22:39:53.153 \N Managed to keep my cowboy hat for 6 consecutive days - my personal best! https://example.com/ 18772 434637 434637.434779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1910269619111 0 \N \N f 174099863 \N 1 51197570 0 f f \N \N \N \N 434637 \N 0 0 \N \N f \N 2025-03-19 09:25:11.588 f \N \N \N 0 0 0 0 1 0 0 434383 2025-03-11 20:59:59.428 2025-03-29 22:39:53.153 \N https://i.imgur.com/mlMRGGo.png https://example.com/ 12220 434030 433934.434030.434383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.0737156796274 0 \N \N f 56258409 \N 1 8178094 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N 2025-03-18 23:01:02.669 f \N \N \N 0 0 0 0 1 0 0 430532 2025-03-09 09:50:40.373 2025-03-29 22:39:49.151 Quick Dive into South Korean History & Why The Presidents Move Opened Old Wounds Today within a few hours we have been hit with a lot of shocking news out of South Korea. First, the news broke that South Korea’s President declared martial law, then we heard Parliament vote to undo martial law, then the South Korean military said they would enforce it until the President lifted it before finally,y the President announced he was lifting the order. It was a hell of a day in DC with all of this going on as no one even had an inkling that this might occur. \n\nWhile several people have been posting about this and the developments around this I want to look at South Korea’s more recent history and why this move has caused a ton of flashbacks to a dark period in their history. South Korea is a well know and respected democracy but it was not that long ago South Korea was not a democracy in the slightest. From the 1960s after the Korean War through till 1981 encompassed the Third and Fourth Republics of Korea. \n\nIn May 1961 the first coup took place and the Second Republic of Korea was replaced with the Supreme Council for National Reconstruction, a military junta, which lasted until December 1963. The Supreme Council was dissolved as soon as the Third Republic of Korea was inaugurated after the 1963 presidential election. The leader of the Supreme Council, Park Chung Hee, was elected as president and it was presented to the world as a return to civilian government but it was a rebranding of the Supreme Council. \n\nThe Third Republic was dissolved in a self-coup by Park Chung Hee in 1972 as he decided the country needed a new constitution with the approval of the Yusin Constitution creating the Fourth Republic of Korea. When the self-coup was launched as you would imagine martial law was declared across the country leading to censorship and freedoms being severely restricted. The Yusin Constitution codified dictatorial power held by President Park Chung Hee and created a centralized authoritarian system called the Yushin System which lasted until 1979. \n\nOn October 26, 1979, during a dinner at the Korean Central Intelligence Agency in Seoul President Park Chung Hee was assassinated. This was the first successful assassination for a head of state in either South Korea or Korea in 605 years. The assassin was Kim Jae-gyu the director of the KCIA and the President's security chief. What kickstarted this chain of events was that in the 1978 South Korean legislative election while Park’s Party the DRP maintained the majority over a rival party the NDP won the popular vote by a narrow margin. Courts then got involved and nullified the chairman of the NDP, Kim Young-sam and Park’s Party in the majority expelled Kim Young-sam from the National Assembly. This led to all members of the NDP, Kim Young-sam party, to submit their resignation causing protests to start to break out in Korea and US President Carter to recall its ambassador from Seoul in protest. \nAfter KCIA director Kim Jae-gyu went to Busan to investigate personally the demonstrations he found they were not riots by college students but a popular uprising that included everyone. When he went to President Park to tell him that this was going to spread to larger cities Kim Jae-gyu’s rival Cha Ji-chul cited to Park the Killing Fields in Cambodia noting that one or two million Koreas being killed wouldn’t make much difference and Park agreed. If it came to it he was going to give direct orders to security forces to fire on demonstrators. \n\nKim Jae-gyu and Cha Ji-chul had an intense rivalry and even though the KCIA was supposed to be the most terrifying organization in South Korea Cha Ji-chul gained the President’s confidence and gain vast power including mocking KCIA Director Kim Jae-gyu in public. On October 26, 1979, the day of the assassination, Cha Ji-chul once more publicly embarrassed Kim Jae-gyu and during a subsequent banquet that evening after again dealing with rebukes from President Park and Cha Ji-chul Kim Jae-gyu had a mental switch flip and within about an hour and half he had managed to not only gather a group of 6 others to pull off the assassination. Within just a few minutes six people died including Cha Ji-chul who was shot in the abdomen and bled out and President Park who was first shot in the chest twice before the gun Kim Jae-gyu jammed and he went and got another finishing off the President with a shot to the head execution style. Of the seven perpetrators, one was killed by firing squad while five were hung including Kim Jae-gyu, and one was sentenced to death before it was commuted to life and then a few days later he was released. \n\nWhile President Park was an awful dictator after his assassination political stability was a huge issue with his successor Choi Kyu-hah implanting martial law which continued after the coup d’etat attempted by Chun Doo-hwan, his first attempt failed and began the armed suppression of the Gwangju Uprising against martial law but his second was successful and established a military dictatorship which elected him, Chun Doo-hwan, as President with the Fourth Republic dissolved with the implementation of a new constitution on March 1981 creating the Fifth Republic of Korea. \n\nThe Fifth Republic was ruled by Chun and his Democratic Justice Pary creating a de facto dictatorship and one-party system but due to the outrage over Chun’s reaction to the Gwangju Uprising and resulting killings democracy momentum built. Chun dismantled some high centralized by Park and released some political prisoners throughout the 80s and started rolling back some of the martial law rules until it was finally lifted in 1987. South Korea spent over twenty-five years in martial law under the various dictatorships that led to many deaths at the hands of the military and police. \n\nThese events are less than 40 years ago which means a ton of the population either directly suffered from the regimes or were raised with stories about how just a few years ago they did not have these freedoms. South Korean society is extremely sensitive to the loss of rights given how far they have come which is why the move by the President not only was a terrible choice but opened up old wounds with many of the citizens. \n\n@south_korea_ln I hope I did some justice with SK history! If there is anything wrong here please let me know and I will address it! \N 2519 \N 430532 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 17.6818460328779 0 \N \N f 77935525 \N 1 201697371 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 294909 2024-11-13 07:05:41.294 2025-03-29 22:39:49.151 The Universal Good Deal, Chapter 20 *This is Chapter 20 of The Universal Good Deal, you may want to* [start at the beginning](https://stacker.news/items/358761) or [go back to Chapter 19.](https://stacker.news/items/379189)\n\n# 20\n\nWhatever the case, there is no doubt that Ross would have caused violence if he had gotten close to the Alien. It seems, however, that Barrow had not been remiss in hiring a large security force. They seized Ross and brought him to Barrow. And so it was as an overly-powerful subordinate that Barrow greeted the Association's first secretary when the security detail delivered him to Barrow's spacious office.\n\n'Welcome to the Association's new offices, Mr Secretary,' said Barrow.\n\n'I've mostly tried to ignore what you do, Barrow,' said Ross. 'I've been telling myself that it was just your harmless little fantasy, like playing house or something. But I haven't been sleeping much lately, and I can't eat anything anymore.[^1] Now I can see that there was a lot going on below the fucking surface.[^2] I've been hearing things,' said Ross. 'Rumors that the Association is collaborating with these green-eyed space invaders—' \n\n'Their eyes are white, really,' Barrow interrupted.\n\nRoss continued, raising his voice, '—Well now, when I heard that I immediately got my ass down here to this new headquarters of yours, and as soon as I came through the door I distinctly saw one of those fucking Aliens hanging around the receptionist!'[^3] \n\n'I'm glad you noticed the secretaries,' said Barrow. 'We also have several hundred other new staff members. As well as this building, here, in Washington.'\n\n'The croaker[^4] was touching her bosom!' Ross shrieked. \n\nThere is no consensus regarding the origin of the slur *croaker*[^5] which gained so much popularity later, as Martian civilization collapsed. While many historians have suggested that it was an an attempt by the Martians to insult the Aliens by comparing them to ugly, slimy creatures, I believe that the term was used in an idiomatic sense that implied death—croaker being one who causes others to croak, that is, to make a death-rattle, a gurgling sound in one's throat, to expire. In this sense, croaker was not a denigration, but rather an accusation. Either way, it is clear that the term was in use even by this early date. \n\nRoss continued: 'Sometimes it takes a hell of a kick in the pants to get me going,[^6] but dammit—I've had enough. We're kicking the croakers out, and we're getting rid of all this!'\n\nRoss ordered the Association disbanded immediately; he could see no good relationship between the Martians and the Aliens.[^7]\n\n'The Association cannot be dissolved without the approval of two-thirds of the membership. The motion to disassociate may be proposed in the newsletter. Unfortunately, the deadline for submissions to the upcoming newsletter has already passed, but you are welcome to submit your proposal for inclusion in the next issue. You may deliver it in writing at your convenience.' \n\n'No! Stop it! I deserve to win this time![^8] I've been on the losing end ever since you joined this goddamn Association. The whole reason I started the fucking thing in the first place was to make money. Do you know how much this stupid-ass Association has made me? It hasn't made me any. In fact, it's cost me money. And you know the only thing worse than losing money? Fucking croakers!'\n\n'If you don't calm down, Secretary Ross, I will be forced into the disturbing position of having the security guards eject the Association's first secretary from the Association's very own building. I can only imagine how such a thing would reflect on the membership.'\n\n'You think that I give a rat's ass about members? Fuck the members! This is my Association, Barrow. I made it, and I can destroy it.'\n\n'The Association exists to serve the needs of its members, even seditious members. Secretary Ross, for the good of the Association, its members, and ultimately, yourself, I must insist that you leave.'\n\nBarrow nodded, and guards seized Ross once again. Ross resisted and they were compelled to handle him quite roughly. He fractured his left hip and elbow on the concrete stairs of the Association's building when he was thrown from the doorway.\n\n*Chapter 21 tomorrow, same time, same place.*\n\n[^1]: I lay awake last night until two o'clock. I can't eat anything. **Thomas Dixon, Jr., _The Leopard's Spots: A Romance of the White Man's Burden—1865 – 1900_ 1908**\n[^2]: The clear day greatly favoured my work in taking a round of angles, and with the glasses I could make out apparently a little more distinctly, the snow-clad summits of the distant land in the northwest, above the ice horizon. **Robert Peary, 30 June 1906, _Nearest to the Pole: A Narrative of the Polar Expedition of the Peary Arctic Club in the S. S. Roosevelt_, 1905-1906 1907**\n[^3]: I immediately, therefore, went on deck, and soon after it completely cleared for about ten minutes, and I distinctly saw the land, round the bottom of the bay, forming a connected chain of mountains with those which extended along the north and south sides. This land appeared to be at the distance of eight leagues. **John Ross, _A Voyage of Discovery, Made under the Orders of the Admiralty, in His Majesty's Ships Isabella and Alexander, for the Purpose of Exploring Baffin's Bay, and Inquiring into the Probability of a North-West Passage_ 1819**\n[^4]: The mountains, which occupied the centre, in a north and south direction, were named Croker's Mountains, after the Secretary to the Admiralty. **John Ross, _A Voyage of Discovery, Made under the Orders of the Admiralty, in His Majesty's Ships Isabella and Alexander, for the Purpose of Exploring Baffin's Bay, and Inquiring into the Probability of a North-West Passage_ 1819**\n[^5]: He named it Crocker Land in honor of the late Mr. George Crocker of the Peary Arctic Club. **_Crocker Land Expedition to the North Polar Regions (George Borup Memorial) Under the auspices of the American Museum of Natural History and the American Geographical Society with the co-operation of the University of Illinois 1913-1915_**\n[^6]: It takes a violent poison sometimes to stimulate the heart's action. **Thomas Dixon, Jr., _The Leopard's Spots: A Romance of the White Man's Burden—1865 – 1900_ 1908**\n[^7]: He ordered the work discontinued immediately; he could see no relationship between the United Fruit Company and a four-eyed fish, a rare species found in a Colombian lake. **Edward L Bernays, _Biography of an Idea: Memoirs of a Public Relations Counsel_ 1965**\n[^8]: It seems as if I deserved to win this time. **Robert Peary, _Nearest to the Pole: A Narrative of the Polar Expedition of the Peary Arctic Club in the S. S. Roosevelt, 1905-1906_ 1907** \N 8168 \N 294909 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 14.4734159697573 0 \N \N f 170895751 \N 2 151695505 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437720 2025-03-14 19:49:01.89 2025-03-29 22:39:49.152 Boosts/Zaps/Tips as a vehicle for mass adoption Sats as "internet points" could be one of the major ways that mass adoption happens. \n\nI'm beginning to notice that sites and apps like SN, Nostr Clients with Zaps, and Fountain are getting a large amount of growth. All it takes is one of these types of services to explode in popularity with normies. Maybe the service gives 1000 sats to each new user for a while to gain traction. \n\nThese new users won't see themselves as Bitcoiners. They just think they have an actually useful form of Reddit karma. If they like someone's content, they send a zap. They can create content, get sats, then spend it on gift cards and stuff. If it gets popular enough, it could force other social media services to adapt or die. Similar to the way TikTok has made Facebook, Snapchat, YouTube, etc. adopt short form video content. \n\nIf the newly popular service is principled enough, they could strong arm the other services into being interoperable and maybe even self custodial. Bitcoin becomes the money of social media. If it becomes the money of social media, I could see businesses joining the bandwagon by allowing sats to be spendable in their stores. That's when the fun begins. \N 5425 \N 437720 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 25.8612867403513 0 \N \N f 310163743 \N 2 149542856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307742 2024-11-25 11:11:22.303 2025-03-29 22:39:53.153 \N I'm very confident your intent is good, but I have to tell you it's quite confusing to have someone make an article titled "You Shouldn't DCA Bitcoin", with the sentence "No DCA-ing, go all in on Bitcoin as soon as you can." as TLDR, only to afterwards say that they recommend people to DCA.\n\nI would personally reconsider the way you deliver the knowledge. The spirit is good but this approach could wreck a lot of confusion on people... https://example.com/ 18177 307616 307616.307742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6572565714238 0 \N \N f 565045396 \N 5 227240717 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450067 2025-03-23 18:23:55.978 2025-03-29 22:39:53.155 \N @DarthCoin - seeing his "don't give a shit" attitude empowers me to care less what other people think\n@siggy47, @elvismercury, @Natalia, @birdeye21, @TheBTCManual, @Cowboy, @fred - their activity on SN makes me want to be a better writer (well actually start writing lol), and educate the masses https://example.com/ 21159 450040 449601.449630.449881.449910.449920.450010.450014.450039.450040.450067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0561586584856 0 \N \N f 73526274 \N 1 81848722 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416267 2025-02-25 14:11:55.976 2025-03-29 22:39:53.155 \N I knew this was coming lol.\nPython probably, though I don't think I'd be good enough to build something of this scale. https://example.com/ 9982 416158 416158.416267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7362883356017 0 \N \N f 182770151 \N 3 86705834 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443231 2025-03-19 07:37:22.768 2025-03-29 22:39:53.155 \N the problem with Muun is they use 0-conf arquitecture to improve UX, this could be an issue if this practice extends in the ecosystem.\n\n0-conf is basically trust to Muun.\n\nTrust is a problem that Bitcoin want to fix.\n\nIf you want to use Muun pls switch off turbo channels. https://example.com/ 21274 442751 442751.443231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.437089033782279 0 \N \N f 191526239 \N 2 249954348 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 2025-03-26 04:40:25.39 f \N \N \N 0 0 0 0 1 0 0 423601 2025-03-03 13:31:32.464 2025-03-29 22:39:53.155 \N Apparently I've been doing it entirely the wrong way https://example.com/ 21373 423595 423384.423591.423593.423595.423601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.71297542736326 0 \N \N f 1654193791 \N 12 151222065 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435221 2025-03-12 14:37:27.974 2025-03-29 22:39:53.155 \N Lmao I can only applaud you for this I feel like you really had to put in a lot of effort to pull this off as well as you did! https://example.com/ 21148 435214 435046.435135.435162.435214.435221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3699866533029 0 \N \N f 181261690 \N 2 180033325 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:00:15.363 f \N \N \N 0 0 0 0 2 0 0 216272 2024-08-17 20:23:54.827 2025-03-29 22:39:53.155 \N I don’t want my wife to get jealous so maybe I shouldn’t follow this advice. https://example.com/ 19996 215973 215973.216272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0666958185625 0 \N \N f 854672598 \N 5 64321506 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443659 2025-03-19 12:55:19.668 2025-03-29 22:39:53.155 \N I want to finish up participating in part 2 of the [Broken Money book club](https://stacker.news/items/287069) but first I want to merge pending prs and deploy personalized feeds. https://example.com/ 7425 443545 443545.443659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.53222521246515 0 \N \N f 397084970 \N 2 87613872 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 2025-03-26 06:24:54.987 f \N \N \N 0 0 0 0 1 0 0 410484 2025-02-20 13:58:07.648 2025-03-29 22:39:53.155 \N You are missing a key aspect in this.\nYou start from the misinterpretation that in order to have full custody, you must run a public node.\nThat's mislead many new bitcoiners into the space.\nAs I explained in this guide about private nodes:\nhttps://darthcoin.substack.com/p/private-lightning-nodes\n\nYou can run perfectly full nodes without public routing, if you just want to use LN in a private mode.\nPublic routing is NOT for each of the plebs that just want to pay his beer over LN with his own node!\nPublic routing nodes are more for large liquidity providers LSP that will help (a lot) the small other private nodes. If you have balls and large capitals, ok go ahead, but do not start your LN node with public channels of 100k sats. You are doing more harm than good to the entire network!\n\nRead more here:\n- https://darthcoin.substack.com/p/lightning-wallets-comparison\n- https://darthcoin.substack.com/p/recommendations-for-ln-users\n- https://darthcoin.substack.com/p/getting-started-ln\n- https://darthcoin.substack.com/p/lightning-routing-fees-experiment\n- https://darthcoin.substack.com/p/managing-lightning-node-liquidity\n\nDo not complicate your life when could be easy. https://example.com/ 21501 410237 410237.410484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3067626129145 0 \N \N f 561757961 \N 3 41392351 0 f f \N \N \N \N 410237 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434978 2025-03-12 11:32:59 2025-03-29 22:39:53.155 \N I don’t know whether to applaud or to gag. Maybe both! https://example.com/ 20019 434791 434791.434978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.435155585081 0 \N \N f 305678810 \N 5 73033483 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 2025-03-20 00:21:19.827 f \N \N \N 0 0 0 0 3 0 0 423437 2025-03-03 11:22:09.602 2025-03-29 22:39:53.155 \N This makes me somewhat uncomfortable. Well done! Lol https://example.com/ 19446 423362 423362.423437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9941661512894 0 \N \N f 378010522 \N 2 27462623 0 f f \N \N \N \N 423362 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 111278 2024-01-12 09:08:30.843 2025-03-29 22:39:49.152 Wanna play a 1982 game designed by Hal Finney? Well, you're in luck!\n⁽ᵘⁿˡᵉˢˢ ʸᵒᵘ‘ʳᵉ ᵒⁿ ᵐᵒᵇᶦˡᵉ ⁻ ᶜᵒˢ ʸᵒᵘ ⁿᵉᵉᵈ ᵃ ᵏᵉʸᵇᵒᵃʳᵈ⁾\n\n\n[Click here to play ***_Adventures of Tron_***](https://archive.org/details/atari_2600_adventures_of_tron)\n\n\n![hal game screenshot](https://archive.org/serve/atari_2600_adventures_of_tron/atari_2600_adventures_of_tron_screenshot.gif)\n\nhttps://en.m.wikipedia.org/wiki/Adventures_of_Tron\n\nDon't expect _Tron_ bikes (it's more like _Frogger_ than the film) but because it's Hal's work, you can't help but have a smile on your face!\n\n---\n\nIn fact, someone has put the game into a console, with other retro games, and seems to accept lightning per play.\n\n![console image](https://shop.lnbits.com/wp-content/uploads/2022/11/pandora-console-image-layout-1.jpg)\n\nhttps://shop.lnbits.com/product/lnbits-arcade-console-games-machine-kit-with-bitcoin-lightning-payments \N 16839 \N 111278 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.2841226276298 0 \N \N f 100542756 \N 1 169432014 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 440242 2025-03-17 03:06:08.909 2025-03-29 22:39:53.155 \N Day 70 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 18426 439946 439946.440242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.54897512123576 0 \N \N f 399319753 \N 4 139858468 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428697 2025-03-07 14:15:30.622 2025-03-29 22:39:53.155 \N Where the hell is the snail? https://example.com/ 1489 425235 423928.425225.425235.428697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.4560565847502 0 \N \N f 1835042 \N 1 59928942 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447079 2025-03-21 15:47:07.597 2025-03-29 22:39:53.155 \N from the ETF perspective, i'd love to figure out how to enable in-kind redemptions so that ppl can redeem without a tax event in a self-sovereign way when they are ready. there are gold ETFs that allow for this so it should theoretically be possible but the SEC is not allowing it at the moment. so more wood to chop there. https://example.com/ 14791 447071 446371.446745.447071.447079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.84866961784747 0 \N \N f 91158362 \N 1 44175577 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:20:27.601 f \N \N \N 0 0 0 0 1 0 0 402925 2025-02-14 09:08:29.263 2025-03-29 22:39:53.155 \N My take is that ads aren't going away but they will change. When you can monotize products directly there will be less available ad space. Some of the status quo with ads is due to the culture of "free". If that culture changes that will greatly decrease ad supported products. https://example.com/ 8459 402918 402904.402918.402925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.52746095945621 0 \N \N f 419071324 \N 2 138808827 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421161 2025-03-01 13:09:39.814 2025-03-29 22:39:53.155 \N I'm just saying, it cannot be a coincidence that roughly 3-4 months post full carnivore, my life-long bout with asthma began to disappear. After a good 6+ months it was gone completely. I used to use ventolin and symbicort to manage the asthma, but have not touched them in over a year. \n\nMagic.\n\n https://example.com/ 9611 420895 420895.421161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0632183624801 0 \N \N f 130955906 \N 1 231049853 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402462 2025-02-13 18:36:10.464 2025-03-29 22:39:53.148 \N This is beautiful. I love it ,I love bitcoin, and I love that you have the patience to teach regarded people like me. https://example.com/ 21048 402062 402000.402031.402039.402062.402462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.84112373852373 0 \N \N f 186341733 \N 1 193198251 0 f f \N \N \N \N 402000 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408053 2025-02-18 14:48:31.867 2025-03-29 22:39:53.155 \N Day 119 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 19527 408035 407903.407963.407974.407983.408020.408035.408053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3796056371671 0 \N \N f 104943697 \N 1 145990064 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430781 2025-03-09 12:25:12.186 2025-03-29 22:39:53.155 \N Don’t focus on memorizing openings. Memorize concepts instead and your chess will crescendo into tough solid chess!\n\nSeparate the game into three stages and study them all individually. \n\nEarly game, middle game, end game. \n\nGoals for every early game:\n\n1. Control the center of the board\n\n2. Develop your minor pieces (knight, bishop, rook) \n\n3. Get your king out of the center (castle)\n\nDo these three things more efficiently than your opponent and you will secure a nice middle game for yourself. https://example.com/ 721 430560 430549.430560.430781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1432501082997 0 \N \N f 473333300 \N 3 223975399 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444448 2025-03-19 22:08:17.795 2025-03-29 22:39:53.155 \N Which Lightning implementation will be the most popular in 2027? https://example.com/ 5522 443934 443836.443934.444448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8238585695431 0 \N \N f 138273262 \N 1 126876790 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447001 2025-03-21 15:05:26.257 2025-03-29 22:39:53.155 \N this is all just a mock-up i did in figma, inspired by the emojis that appear below slack messages. wanted to try and give a value to certain emojis that people would recognize. https://example.com/ 11527 445709 445518.445696.445701.445709.447001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1182376977805 0 \N \N f 636467066 \N 7 240856558 0 f f \N \N \N \N 445518 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 439157 2025-03-16 10:05:55.183 2025-03-29 22:39:53.155 \N ![img](https://i.chzbgr.com/full/7742805760/h561A5937/the-most-useless-gate-thingy-ever) https://example.com/ 805 439139 439139.439157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7040600462718 0 \N \N f 360161041 \N 2 196192167 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 458153 2025-03-29 02:21:50.358 2025-03-29 22:39:53.149 \N Gm all\nhttps://i.ibb.co/zSpBw05/c7ece29b-88a0-4ebf-b68e-e18bddd17358.jpg https://example.com/ 15052 457951 457126.457921.457951.458153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0437370186042 0 \N \N f 203769695 \N 1 197676983 0 f f \N \N \N \N 457126 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424164 2025-03-03 21:12:51.126 2025-03-29 22:39:53.15 \N I don’t really understand what Jason’s new idea is. \n\nHe writes a lot of what comes across to me as pseudoscience conjecture, but I fail to grasp what actually makes his ideas motivating. \n\nAt best it’s a reheated version of the familiar nation state game theory idea, which is fine but no longer novel?\n\nPerhaps I’m just more attracted to the really down to earth bitcoin arguments. Such as lightning being the missing payments protocol for the internet — really simple but really valuable. https://example.com/ 19346 423712 423712.424164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.44604027226961 0 \N \N f 103933089 \N 1 128256776 0 f f \N \N \N \N 423712 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437779 2025-03-14 21:57:03.957 2025-03-29 22:39:53.15 \N Hmm, that's a touch one. I don't buy into the "we need mass adaption" narrative as I think Bitcoin is ready to help those who need it. In the end everyone might end up using Bitcoin as nowadays everyone is using the internet, but Bitcoin is helping people around the world already and you can live a hyperbitcoinized life already if you want to. https://example.com/ 13169 437716 437714.437716.437779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5542597336092 0 \N \N f 590966097 \N 4 116815144 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408212 2025-02-18 16:20:32.356 2025-03-29 22:39:53.15 \N Saw that! Just connected with him online to lock in a time\n\nAppreciate the help man, keep 'em coming! https://example.com/ 1060 407903 407903.408212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9839411233832 0 \N \N f 41789205 \N 1 209099909 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436937 2025-03-14 03:46:37.819 2025-03-29 22:39:53.15 \N Relentless: From Good to Great to Unstoppable by Tim Grover https://example.com/ 4173 436934 436934.436937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2688690706092 0 \N \N f 181486169 \N 1 130532177 0 f f \N \N \N \N 436934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3677 2022-11-08 19:44:40.077 2025-03-29 22:39:53.151 \N I'm guessing they don't have qualified immunity either. https://example.com/ 19812 3674 3674.3677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.38585517489814 0 \N \N f 989147119 \N 7 174448546 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437427 2025-03-14 14:05:19.842 2025-03-29 22:39:53.151 \N i ve started to read Layered Money by Nik Bhatia, https://example.com/ 1611 437417 437408.437411.437417.437427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7970416686433 0 \N \N f 48468328 \N 1 30708109 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433901 2025-03-11 13:55:39.713 2025-03-29 22:39:53.151 \N This is the creator on Twitter: https://twitter.com/dillionverma https://example.com/ 21291 433833 433833.433901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.8774238752469 0 \N \N f 60883240 \N 2 223604112 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 307681 2024-11-25 09:43:08.654 2025-03-29 22:39:53.152 \N > That means they can easily keep those sats as savings without affecting their regular cash flow.\n\nThis is a point I'd like to discuss further. Imagine an online store selling homemade clothes. A poor person can start such a company and needs to accept payments somehow. I've built software for doing this with bitcoin.\n\nSuch businesses have expenses, namely: shipping costs, cost of purchasing materials, and perhaps the cost of splitting the proceeds with an employee or friend who is helping make the clothes. I imagine a poor person starting such a company with next to nothing. They have negligible savings, let's suppose zero savings. But they've made shirts before, and have pictures of them, so they can upload those to the internet, accept payment online for new orders, then order the materials, make the shirts, and take the shirts to the post office to ship them.\n\nNow let's suppose they accept bitcoin but not stablecoins. They started their business a few days ago, when bitcoin was $75k. They got $100 in sales, enough to pay for $90 in expenses with $10 left which they hope to split with their friend to eat and sleep somewhere. Today they go to buy the materials and lo and behold, bitcoin dropped to $60k, so their $100 earnings are now only worth $80. They can't afford to buy the materials nor do they have anything left over to eat or pay rent. They are bankrupt and now instead of making money, they are in debt: they owe their customers some shirts but they cannot afford to make them.\n\nInstead of this catastrophe, let's suppose they either accept stablecoins directly or convert their bitcoins to stablecoins. In this case, their $100 is still worth $100. True, next year it will only be worth $95, and there's a rugpull risk since Tether might steal it. But these risks, including the slow depreciation, seems like a small price to pay if it means the person is still in business and can actually begin to accrue savings.\n\nWhat is wrong with this imagined scenario? Is anything in that description fantastic or unlikely? Is the merchant wrong to think stablecoins are a good way to increase his chances of success? Is he a slave if he decides the risk of rugs and inflation is worth it? Accepting stablecoins or converting his bitcoins to them may save him from going bankrupt if bitcoin rapidly falls in value. As a tradeoff, he has to trust Tether corp, and if he holds these stablecoins for a year they will be worth about 5% less. I sympathize with this imaginary merchant and I'm beginning to think it is wise to make "convert to stablecoins" an option for him in his store interface. https://example.com/ 17082 307658 307609.307658.307681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.352137922059 0 \N \N f 81112376 \N 1 118741825 0 f f \N \N \N \N 307609 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436721 2025-03-13 21:04:00.627 2025-03-29 22:39:53.152 \N we're moving towards this to _not_ be a money transmitter https://example.com/ 15463 432920 432920.436721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9066582341996 0 \N \N f 238117256 \N 2 24155346 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403595 2025-02-15 00:49:55.996 2025-03-29 22:39:49.152 New to Stacker. Just saying hi and trying it out! Love it so far! 👋 Have a good Friday everyone! Glad to be here. \N 5775 \N 403595 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.01444212280003 0 \N \N f 170383876 \N 2 206336433 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444220 2025-03-19 18:17:55.072 2025-03-29 22:39:53.153 \N It’s not just facial recognition either, it’s device IDs, gait (and walking) analysis, doorbell cams, car cams and more.\n\nTechnology is getting better, being enriched with more data points as time passes. Defensive tech is playing catch-up but will hopefully have its day soon. For now the best defence IMHO is voting with your feet, not by attending ineffective protests. https://example.com/ 2326 444168 444168.444220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.75229880064066 0 \N \N f 178126927 \N 1 225238006 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423784 2025-03-03 15:42:15.47 2025-03-29 22:39:53.153 \N \njust a reminder \n![](https://m.stacker.news/46442) https://example.com/ 15484 423739 423667.423739.423784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.70591519672074 0 \N \N f 184886810 \N 1 148863110 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437317 2025-03-14 12:43:43.967 2025-03-29 22:39:53.154 \N `ᕦ(ò_óˇ)` Day 11 of exercising everyday before the saloon opens\n\nWent to sleep around 2AM and woke up at 9AM. I went with my phone on low battery into bed. I know it's not a good habit and I didn't do it for the last 5 days or something but I really wanted to watch something for a few minutes before sleeping for some reason. And it was indeed just a few minutes (like a compromise I did with myself). Also, my phone was dying anyway. I thought I would get up and plug it in before I start to sleep but I didn't.\n\nFortunately, my circadian rhythms seems to already be strong enough such that I wake up at 9AM without an alarm anyway.\n\nI then went for a run but I noticed within 5 minutes that my legs are exploding, lol. Felt soreness at spots I don't feel sore usually (at the shinbone for example). Took this as a sign I should take it easy today before I hurt myself or it's even worse tomorrow. So I just went for a short walk in the forest. Guess all this walking in the past days is still showing.\n\nAlso took this as a sign that the habit of exercising early in the morning is forming itself: My mind wants to exercise but my body does not.\n\nI think one of the biggest mistakes is to not listen to what your body is trying to tell you. It tells you when it wants to exercise and when it doesn't. Imo, that's also why we feel bad when we don't exercise since we can feel our body longing for some exercise but our mind is not listening. Now I am at the spot where my mind wants to exercise more than my body. Not listening to my body again would destroy the habit in the long run again. \n\nI should maybe start to look for other areas in my life that I can improve. I used to do intermittent fasting in the past and it worked really well. I want to do this again. Maybe I'll start in the next days.\n\nSee you around, cowboys! https://example.com/ 11018 437316 436752.437184.437271.437292.437293.437308.437312.437316.437317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2347416351815 0 \N \N f 2124115943 \N 17 220171911 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458342 2025-03-29 08:09:42.3 2025-03-29 22:39:53.154 \N You probably had nightmares about never ending notifications https://example.com/ 5758 458341 458227.458241.458248.458276.458294.458299.458341.458342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.958748785636736 0 \N \N f 59812456 \N 2 169756075 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433746 2025-03-11 11:11:46.636 2025-03-29 22:39:53.154 \N Pure debian, its like vanilla. Learn to add what you want to it. Also most guides online are for Ubuntu (which is debian based so you can benefit from them).\n\n https://example.com/ 16950 433594 433594.433746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.68836599876693 0 \N \N f 21926506 \N 1 230314865 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415410 2025-02-24 19:22:28.812 2025-03-29 22:39:53.155 \N It's why @kr suggested the fwd badge! https://example.com/ 700 415391 409934.415321.415391.415410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.53196291207868 0 \N \N f 90146198 \N 1 120594397 0 f f \N \N \N \N 409934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410428 2025-02-20 13:27:50.065 2025-03-29 22:39:53.155 \N We are definitely aware of such a potential issue, it's true that at some point low amount orders can/will end up being dust. We are therefore working on the following solutions:\n- increase the minimum buy amount (currently 25 CHF/EUR)\n- updated the referral program not to send too small earnings to the user's wallet (only once user accumulated 10 CHF/EUR)\n- working on a solution to encourage users to consolidate: it's more tricky than it sounds as we have a lot of newbies as users\n- moving to lightning: we recently released our non-custodial lightning wallet and we'll keep improving from here on to also provide buy/sell orders to lightning directly https://example.com/ 17321 410409 410409.410428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6994091181594 0 \N \N f 282638033 \N 5 125529561 0 f f \N \N \N \N 410409 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435328 2025-03-12 15:42:53.818 2025-03-29 22:39:49.15 Fixing Lightning Force Closures \N https://mblack.io/posts/fixing-lightning-force-closures/ 2431 \N 435328 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.9638148070463 0 \N \N f 1886024654 \N 17 62123533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 08:09:37.265 f \N \N \N 0 0 0 0 5 0 0 443372 2025-03-19 09:58:14.728 2025-03-29 22:39:49.151 Bitcoin and me Yesterday at a dinner I was asked why I wasn’t more interested in Bitcoin. I didn’t have a real answer and my ignorance of my own opinion encouraged me to write it out.\n\nI don’t know why the world is the way it is: why people are unhappy and why the future looks increasingly fraught. My conclusions lead me to consider that a majority of people do not feel self-efficacious in their decision making. \n\nI’ve also begun to consider that surveillance affects decision making in an deeply negative way: while surveillance may have no effect or even encourage pro-social behavior, I wonder how easy it is to deny oneself (self-censor) with even the subtle threat of surveillance and punishment - even to censor yourself from yourself, which is a bizarre rabbit hole. What if pro-social behavior is anti-individual, and anti-social behavior is…pro-individual? \n\nAt times, it dawns on me how romantic and technically elegant Bitcoin is as a solution. I wish the branding were entirely different, but that’s a totally different post. The way I see it, I hesitate from further self-education and practical adoption for two reasons:\n\n1. Bitcoin can be positioned as the money to eclipse them all. I wonder if this exacerbates the actual issue as I see it: People do not need less options or choices, they need the practical self-trust that results from and encourages self-efficacious decision making. It is also true for me that some of the extremist cultural propositions among Bitcoiners can be stifling and suspect. To proposition Bitcoin in conjunction with values like carnivorism (as an easy example), “traditionalism”[^1], and “individualism”/strongmen suggest to me an ascetic restriction of choice that values one perspective of individual autonomy, action, and expression in the world, but also creates an image of aggression and authoritarianism. This is not the sort of culture that promotes global adoption - an anonymous culture might be more effective IMO. \n\n2. It may be true that if transactions were inherently private, individuals may feel more powerful in shaping the world with their earned money. But, if Bitcoin is treated the same way that other money is treated, this purpose is increasingly defeated, and further solutions might be with policy change in the financial (and technology) sector(s) to protect consumer privacy and/or more privacy-centered technological development. None of these things are mutually exclusive - however, if a major issue we face is that when people feel watched and potentially judged for their actions, they become less self-efficacious and fail to express themselves - and this failure impacts their future and therefore culture/the world, then any solution needs to address this and potentially retain this as a guiding value. \n\nTo address the perspective that most of my critique has to do with culture, how does the current culture shape how the technology is developed and where the money flows and what is that compared to the effect of “the opposite” - how much does money spent and technology developed have a direct impact on culture? Which is of greater importance/impact in a moment to moment way? \n\nI think I would like to learn and hear more about the values of the technology of Bitcoin itself - and what I suspect may be a “high value” of the value of the technology itself. And I wonder how that can be talked about more to reinvigorate the “people culture” to more accurately reflect the culture of the technology. \n\nA bonus: What are some ideas for SN that you can think of that promote the value(s) of the technology of Bitcoin and/or privacy? And, more complexly, how can those ideas be implemented to prioritize those values? E.g., I’ve thought of the option of permanently deleting material as this can protect privacy; however, this conflicts with one of Bitcoin’s values as reflected by the distributed public ledger. Which is more important depends on your perspective on what is important to change the world - and what that ideal future looks like.\n\n[^1]: What is traditional? We used to live under a single king or ruler or chief - is that what Bitcoiners want? \N 15703 \N 443372 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.7320795779695 0 \N \N f 2775530122 \N 26 200831321 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:43:25.134 f \N \N \N 0 0 0 0 8 0 0 427988 2025-03-06 18:51:53.898 2025-03-29 22:39:53.155 \N I fully vouch for the character, wit, intellect and handsomeness of this individual. https://example.com/ 19138 427960 427960.427988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.66455518841884 0 \N \N f 187247150 \N 1 229373567 0 f f \N \N \N \N 427960 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443313 2025-03-19 08:56:26.683 2025-03-29 22:39:53.155 \N This.\n\nReally would like to get @sethforprivacy take on this. \n\nI very much enjoy the Monero community and think of them as a cousin to Bitcoin. Both communities are militant in their defense of their core values. Bitcoin can learn a lot from Monero and implement similar solutions on L2 https://example.com/ 8570 442751 442751.443313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.80000470117584 0 \N \N f 74036604 \N 1 85808533 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 2025-03-26 04:38:36.406 f \N \N \N 0 0 0 0 1 0 0 443538 2025-03-19 12:08:42.972 2025-03-29 22:39:53.155 \N Nice, happy to see another Bitcoin marketplace. Are there any screenshots or links to existing Squeak Road marketplaces? (I don't have a node.) https://example.com/ 713 443531 443531.443538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8352861773165 0 \N \N f 437114787 \N 3 43612743 0 f f \N \N \N \N 443531 \N 0 0 \N \N f \N 2025-03-26 05:33:50.065 f \N \N \N 0 0 0 0 2 0 0 435366 2025-03-12 16:16:49.592 2025-03-29 22:39:53.155 \N as a non technical person, muun is probably the most reliable lightning wallet(more reliable than phoenix or breeze but slightly higher fees)... its the one ive used to most for 'orange pilling'... ie to get people from 0-25000 sats in less than 2 minutes. https://example.com/ 15337 435359 435359.435366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0319472603892 0 \N \N f 266325737 \N 3 192704836 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 2025-03-19 11:02:41.157 f \N \N \N 0 0 0 0 1 0 0 429764 2025-03-08 15:20:23.299 2025-03-29 22:39:49.15 Targeted advertising & the unholy alliance of Big Tech and government: The Draft We know already that, today, advertisements can “follow” us across the internet. Fourteen years ago, when I was a freshman in college, I remember the first time I noticed rather obscene targeted advertising: An invitation to “Sell (my) Eggs” if I was of majority Chinese descent. \n\nBut what flies under the radar? In college too I read the book _Overthrow_ by Stephen Kinzer, which may give someone naïve some pride about knowing “The Truth,” but the truth is this is a record of failed regime change, not what worked. \n\nWe are already a little tuned in to the reality that there are advertisements that fly under the radar of our conscious perception and from there influence our decision making. Perhaps a hopeful anecdote is that those who use hypnosis for therapeutics assert that you can only be hypnotized into what agrees with your deep subconscious desires - although I don’t think stage hypnotists agree. \n\nIncreasingly, the “public private” internet platforms like Instagram, Pinterest and Tik Tok particularly physically-visually influence the choices of viewers. I have some optimism about this, as my Instagram/Pinterest feeds are tapped into a particular brand of DIY eclecticism, which reflects some of my optimisms about the relationship of high fashion to the internet[^1], which is another topic I hope to share some thoughts on at some point.\n\nLately, however, my mind increasingly[^2] considers the “doomsday” scenarios of what’s going on: is there already a propensity for the government to target advertising which grooms young people’s choices and limits their self-beliefs? Would then that propensity exist across the population’s age range?: Likely. But today I think about a reinforced propensity of the U.S. Government to deploy targeted advertising to young men (read: minors) to enlist. And if the government is not protecting individual privacy, is it appropriate to target advertising regulation?[^3]\n\nFrom ["House passes defense bill automatically registering men 18-26 for draft"](https://www.foxnews.com/politics/house-passes-defense-bill-automatically-registering-men-draft)\n\n>"By **using available federal databases**, the [Selective Service] agency will be able to register all of the individuals required and thus help ensure that any future military draft is fair and equitable," Houlahan said during debate last month, according to Defense News.\n\n>"This will also allow us to rededicate resources — basically that means money — towards **reading readiness** and **towards mobilization** … rather than towards education and advertising campaigns driven to register people."\n\nWhat do these words mean? I am reminded of George Orwell’s quote, “Political language is designed to make lies sound truthful and **murder respectable**, and to give an appearance of solidity to pure wind.”\n\nInstead of educating young people about what it means to serve, we’re just going to monitor whether or not they’re appropriate and use targeted advertising so they enlist. Okay. \n\n\n[^1]: The layman search term for looking into this is “maximalism,” although I prefer to think of it as “Internet Maximalism” as it denotes a much more specific, time-bound expression. What I think is most beautiful and remarkable about this movement in fashion is that it is fashion’s embrace of the ubiquity of the Internet and the information available and the celebration of the ubiquity of possibility and choice. I think too there is an occasional rejection of social class and the trend of “quiet luxury”…There is a large visual discussion between Internet Maximalism vs. Minimalism in fashion and design and how it reflects beliefs and values, but IMO fashion is more of a personal-public dialogue than interior (home) decorating. \n\n[^2]: Two books I am reading: Shoshana Zuboff's *The Age of Surveillance Capitalism* and *Means of Control* by Byron Tau.\n\n[^3]: [I’ve mused on advertising regulations before](https://stacker.news/items/566429/r/SilkyNinja). I understand it’s not a popular perspective for this community, but boy, maybe we could think about advertising regulations for people under the age of consent. \N 20775 \N 429764 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 10.4980918682433 0 \N \N f 1027628864 \N 7 79956071 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 423122 2025-03-03 01:32:06.86 2025-03-29 22:39:49.152 Kollider AMA Hey, everyone! \n\nWe’re the [Kollider](https://kollider.xyz/) team - @konstantin, @kevin_kollider, and @myles_snider \n\nAt Kollider we build tools and services to make financial markets available to everyone, across borders, instantly and simply using Bitcoin’s Lightning Network. \n\nTo do that, we’ve built a few different products:\n\n**Kollider Exchange** \nThe world’s first Lightning-native derivatives exchange. \n\nGive it a try [here](https://pro.kollider.xyz/). \n\n**Kollider Synthetic Stablecoins** \nOur synthetic stablecoins use derivates on the Kollider Exchange to offer fiat-denominated price stability to users. In other words, Kollider offers users the ability to hedge their price exposure to Bitcoin by pegging all or part of their balance to a fiat currency.\n\n**Kollider Wallet** \nAn upcoming release of ours— this is a browser-based Lightning Wallet that integrates directly with our synthetic stablecoins. Users can receive, hold, and spend BTC, synthetic USD, and synthetic EUR. You can spend from and receive to any of your balances. We’ll also support Lightning Login, Lightning Addresses, and a bunch of other cool features. \n\nLearn more [here](https://kollider.xyz/wallet). \n\nWe officially launched this week (check out our [launch announcement](https://blog.kollider.xyz/announcing-kolliders-launch/)), and we’re hosting a [trading competition](https://blog.kollider.xyz/kolliders-launch-week-trading-competition/) on Kollider Exchange to celebrate. \n\nAsk us anything! \N 21374 \N 423122 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.86194752118499 0 \N \N f 165442306 \N 1 159798162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 271272 2024-10-19 03:21:23.503 2025-03-29 22:39:49.152 The Lifecycle Of Bitcoin Miners, Evaluating Risk On Miner Purchases Bitcoin miners are power dense Chinese manufactured computers with varying challenges to operate and often have significant failure rates. One of the hardest calculations to make when assessing any hardware is anticipating their performance in differing environments and at different scales. \n\nThe universal challenge all miners face, is that the durability and longevity of a miner is unknown until it actually ships. Miners can make educated guesses based on historical information, but that does not guarantee future reality. \n\nThere are general assumptions we can work with, but in no way do those assumptions necessarily translate into reality. Buying mining hardware is always a gamble, but you can minimize your risk by being properly educated on the topic. Unfortunately, the majority of the industry gets the necessary education through trial and error, and so I want to share some of my experience on the topic. \n\nLongevity Due To Design:\nThe most famous example of machine design issues is Bitmain's S17 which had catastrophic failure rates, making it one of the most infamous miner models. Many people preordered expensive machines, expecting to have the latest cutting edge hardware, only to find out the heat sinks were falling off and the boxes would rattle when you picked them up and shook them. \n\nThe design of the miner matters, and so does the design. A well designed machine will minimize failures, operate with minimal downtime, and will be fairly easy to repair in the case it does break. A poorly designed miner will have high failure rates, could be difficult to repair, and will cause migraines.\n\nDowntime and labor to service machines are costs that many miners do not consider when first exploring deploying equipment. \n\nA machine may be designed very well, but may not be designed to handle certain conditions well, such as Texas dust and heat. They may operate flawlessly in the correct environments, but perform horribly in suboptimal conditions. Knowing where you are deploying your machines should have a major influence on what your purchase strategy. \n\nOperating Conditions:\nManufacturers publish ideal operating conditions for miners, but a good portion of miners do not run them in the proper conditions. Bitmain is often criticized for being unreliable, and yet they have up to around 90% market dominance based on various estimates. Of the equipment Kaboomracks sells, roughly 90% are Bitmain machines. The market has chosen Bitmain despite their history of making poor miner models like the S17 because they are consistently the cheapest, and most efficient machines on the market. \n\nGenerally, Bitmain made equipment runs great in temperate environments with the correct operating conditions. The problem is that miners often don't have the ability to deploy in optimal environments, and need their initial capital expenditure to be as low as possible. It is not cost effective to run miners under air conditioning, and humid environments rule out evaporative cooling. \n\nTo offset this, miners have to find a way to pass as much air as possible through the mining computers to attempt to keep them cool. Dust and debris passing through the machines causes wear and tear, shortening the lifespan of the machines. Things like filters, which are used sometimes to mitigate these issues cause air restriction which makes cooling challenging. \n\nRunning machines in suboptimal conditions will significantly shorten the lifespan of mining hardware, but this is a calculation that works often for some miners. Sometimes the reduced costs in Texas, or other places can justify putting your equipment through hell, but it should also influence which equipment you choose to purchase, or even if you should deploy at all. \n\nUsed vs New Machines:\nOne of the benefits of buying used equipment is that there will be a proven track record of how that machine performs. It generally takes at least a year for a machine to become available on the new market. As time goes by, the market for used machines will grow larger. \n\nIt takes at least a year to get an accurate picture on the quality and durability of a machine. The S19 J Pro has proven to be the most durable and versatile S19 variant. Other s19s such as the vanilla S19 and S19 XP have shown to be a lot less reliable. \n\nWaiting to get feedback on the quality of a particular miner after it is released gives you an advantage as far as knowing how it will operate in different conditions. New machines are attractive because they come with a manufacture warranty. The standard timeline for this warranty is 12 months starting from when they are shipped from the manufacturer. \n\nUnderstanding the warranty process of each different manufacturer is important. Not knowing this could cause you to unintentionally void the warranty. This is a whole rabbit hole, I won't get into this post. \n\nOne of the challenges with used equipment is verifying the vender is representing the equipment properly. The equipment does not come with an odometer, or information on how it was ran. Equipment ran in suboptimal environments will not last as long as equipment that was ran in optimal conditions. \n\nKnowing how long a machine has been on the market can give you an idea of what the age could be. The longer the machine has been in circulation, the more likely it is to have issues. \n\nYolo a Preorder: \nPreordering machines is attractive because it generally allows you to purchase the equipment for less than the spot market. Sometimes the difference is significant. Preorders are not always shipped on time, so it can be a difficult process to deal with.\n\nThere is a massive market built on speculating on machine prices. Given the right conditions, yoloing into a preorder could be an incredibly lucrative decision. I believe that right now could definitely be one of those situations with the S21 Pro. Individuals have the ability to buy machines today for the fraction of the price that they will trade for when the bull market takes off. \n\nThe economics of everything change in the bull market, where the market only cares about raw capacity and hash rate instead of efficiency and durability. \n\nFirmware, Underclocking, overclocking, and longevity: \nAftermarket firmware is a huge topic of discussion, and for many people has helped them be successful in the bear market by unlocking efficiency that stock firmware doesn't allow for. The hard reality is that using aftermarket firmware adds variables and can shorten machine longevity. Changing stock settings from the manufacture can have unintended consequences, especially when we know so little about the machines. \n\nUnderclocking means lowering the amount of electricity that is passed through the ASIC chips and power supply. Less electricity consumed means less heat, and theoretically less strain on the machine. The fans don't need to run as hard to keep it cool, meaning in the summer, this could be very helpful for machines that consistently overheat. \n\nUnderclocking machines has the potential to increase the life cycle of machines. Overclocking on the other hand has the potential do the opposite. When overclocking, there's a few pieces of information that are important. You need to know what the power supply can handle, the hashboards, and the chips themselves. Vnish firmware gives you a great visual of chip performance as it actually shows the hash rate of individual chips and lets you tune them. \n\nWith Vnish, an immersion setup, and an aftermarket firmware, Kaboomracks was able to push 10kW successfully through a S19 J Pro which was rated for around 3kW stock. Just because you can do it, doesn't mean you should do it, but it can be fun to see how far things can be pushed. \n\nFirmware can lengthen the relevancy of older equipment, as underclocking could make older equipment more competitive with new models. \n\nEvaluating Different Manufacturers: \nThis topic is a rabbit hole. Different manufacturers have different costs, different warranties, and different reputations. Just because one manufacturer has a better reputation does not guarantee you won't receive a lemmon batch, but it can lower the chances. \n\nOne guarantee is that when you deploy at scale is that you will have broken equipment no matter how great your operating conditions are. For that reason you need to understand the market for repairs and parts. If there's a new manufacturer, there likely will not be an established market for fixing the machines, which in my opinion makes gambling on purchasing the equipment unattractive. \n\nMicro BT is consistently held up as making the most reliable equipment. They have replacement parts readily available, but those parts are often really expensive compared to Bitmain. The costs of parts is an important factor to consider. \n\nConclusions: \nThe mining industry is immature. There are not very many good sources of data to make informed decisions and most of the information that is available is anecdotal. Understanding the potential lifecycle of machines is difficult as there is a lot of nuance. There is an incredible information asymmetry between those who have operated in the industry, and those looking to enter it for the first time. \n\nMining is becoming more and more competitive as the fiat world now tries to enter. Mistakes and failures will only grow more costly, as margins continue to get cut. Be careful out there. \N 8176 \N 271272 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.2389887549601 0 \N \N f 94495578 \N 1 38011744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434697 2025-03-12 07:07:01.246 2025-03-29 22:39:49.152 Bitcoin ’s supply held on exchanges at the lowest point in the past five years. As analyzed by Santiment, bitcoin’s supply held on exchanges has fallen to 5.84% – the lowest point in the past five and a half years.\n\n![#Bitcoin supply on exchanges](https://i.postimg.cc/90TGySRW/IMG-4108.jpg)\n\nThe rapid shift from custodians to self-custody methods started at the beginning of 2022 and continued throughout the following months. A steep decline occurred after November last year when the amount of BTC sitting on centralized platforms dropped under 7%. \n\nSelf-custody is the way 👏🧡 \N 7580 \N 434697 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.2180828253451 0 \N \N f 245886094 \N 4 16881963 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 01:08:57.759 f \N \N \N 0 0 0 0 2 0 0 433405 2025-03-11 03:53:19.628 2025-03-29 22:39:53.148 \N He doesn't give an answer about how you maintain democracy but cites his own success in using the votes of the people to strong-arm Congress so they could upend the justice system. I really hope we see genuine evidence of the corruption of the justice system in El Salvador, although I'm not sure how or when if the country's deep fabric has been so significantly altered. When could an observer understand if there is corruption and the extent of despotism - during the next cycle, when power is handed to another party/ies? \n\nI did a scan of the "history" tab on El Salvador's wikipedia page. Here is a timeline of every time keywords like "power by force" or "murder" are used, beginning at independence in 1821:\n\n1898 - Tomas Regalado \n>"revived the practice of presidents designating their successors"\n\n1913 - Manuel Enrique Araujo (murdered)\n>The succeeding Melendez-Quinonez"dynasty" lasted from 1913 to 1927 [paraphrased]\n\n1931 - Arturo Araujo\n>the first president elected in a free election, overthrown after 9 months [paraphrased]\n\n1944 - General Maximiliano Hernández Martínez\n> ruled from 1935-39 and again 39-43 [paraphrased]; "winning back the presidency as the only candidate on the ballot" \n\n1972 - Colonel Arturo Armando Molina \n> won over Christian Democratic Party leader José Napoleón Duarte) in an election that was widely viewed as fraudulent [paraphrased]\n\n1979 - a coup d'état brought the Revolutionary Government Junta to power\n\n\nOne cynical-optimistic perspective is that if it takes a party strong-arming to maintain a democracy, well, then maybe it does take a revolution to maintain a civilization. \n\nBukele is correct in maintaining that it is unfair to compare Latin American countries to the United States in a variety of contexts - when you observe the history, noting the inverse may be true seems prudent. Looking at this timeline, I am skeptical we can fairly compare the nature of democracy itself in El Salvador to the United States. I'm also a bit skeptical of or just disappointed in Tucker Carlson for not considering all of this in context - seems like that is his job. \n\nAnother fun fact is the painting that was mentioned was of Óscar Romero:\n\n>Óscar Romero, the Roman Catholic Archbishop of San Salvador, denounced injustices and massacres committed against civilians by government forces. He was considered "the voice of the voiceless", but he was assassinated by a death squad while saying Mass on 24 March 1980.[63] Some consider this to be the beginning of the full Salvadoran Civil War, which lasted from 1980 to 1992.\n\nKinda see why someone would have a knee-jerk reaction to a painting of the guy getting moved by a new and extreme political leader. Skeptical again of how both Tucker Carlson and Bukele handled the topic. [Here's an article about it from a Catholic news site titled "Catholics in El Salvador criticize government for moving a mural of Saint Óscar Romero."]("https://news.diocesetucson.org/news/catholics-in-el-salvador-criticize-government-for-moving-a-mural-of-saint-oscar-romero") It is the second result for "bukele romero painting" on Google. https://example.com/ 899 433359 433359.433405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0906881649825 0 \N \N f 110711347 \N 1 87028168 0 f f \N \N \N \N 433359 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402193 2025-02-13 15:49:50.527 2025-03-29 22:39:53.155 \N That's very misleading.\n\nThe money they "make" from curtailment is *not* a payment made to Riot for curtailing power usage. Rather, it's effectively a *discount* on their power bills. What's really happening is Riot is getting discounted electricity because unlike other power users, they're willing to shut off when electricity demand is really high; no-one is going to cut you a check worth more than your power bill simply for turning off your miners. Riot is still spending a substantial net amount of money on power.\n\nIt's likely that the $8.6m number in that article is nonsense, based on some misunderstanding of Riot's business figures. Eg that might simply be the raw amount of Bitcoin Riot happened to sell that month. Or it might be the profit margin they made that month. https://example.com/ 5590 402188 402188.402193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4352781948772 0 \N \N f 130889850 \N 1 66620779 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 320300 2024-12-06 01:33:24.294 2025-03-29 22:39:53.155 \N > Governments found a way to shut down centralized miners.\n\nShut down? No, they will tell them to continue to mine, just not mine on top of blocks that contain transactions that they don't like. https://example.com/ 11678 320187 320187.320300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.37122643206529 0 \N \N f 548417480 \N 4 208142223 0 f f \N \N \N \N 320187 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442541 2025-03-18 16:16:24.466 2025-03-29 22:39:53.15 \N Yes, and personally I think ThomasV was right. I think BIP39 should've just based itself on the Electrum solution.\n\nThe 24 words have cost lots of people lots of money without really enhancing security at all. \n\n https://example.com/ 11378 442084 442084.442541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.82088436324563 0 \N \N f 1041748 \N 1 76719516 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447147 2025-03-21 16:35:48.327 2025-03-29 22:39:53.151 \N Just to mention that [kieran]() on Nostr has been having some success earning by broadcasting live coding to [zap.stream](https://zap.stream/). He codes the Nostr client [snort.social](https://snort.social/) and I think he built Zap.stream too and [NostrNests.com](https://nostrnests.com/). In case you hadn't considered it, you could maybe stream some live coding while you build out this site at minimum - or umbrella full on a coding Stacker.news(TV) station at maximum. https://example.com/ 19446 447138 446371.446452.447063.447086.447111.447125.447138.447147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.94628655538493 0 \N \N f 118208224 \N 1 16499195 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 11:06:45.742 f \N \N \N 0 0 0 0 1 0 0 428473 2025-03-07 10:19:08.291 2025-03-29 22:39:53.151 \N Man this story is so sad and creepy. It reminds me I've missed quite a few of the documentaries about Assange and just haven't kept up on the story.\n\nHas he been writing anywhere online or doing podcasts or anything? https://example.com/ 3506 428422 428292.428422.428473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.63537252573007 0 \N \N f 245034571 \N 2 156544278 0 f f \N \N \N \N 428292 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401131 2025-02-12 18:25:40.654 2025-03-29 22:39:53.151 \N Let's assume the worst case scenario: 100% of all current contributers to Bitcoin Core (hereafter Core) has been convinced by some government to try to subvert Bitcoin. This means that all future releases of Core would have some sort of a malicious changes to it.\n\nFirst, most nodes are running old versions of Core. Subverting future releases of Core could only affect new nodes/users. And new nodes/users could easily run old versions of Core, which woudl happen the instant the subversion were discovered.\n\nSecond, the most useful subversions are the most likely to be found. For instance, if a new release of Core would send some of a user's BTC to a government-controlled address, then that would become visible within hours of being released. Users would complain on Github, Reddit, Twitter, Facebook, Stacker News, IRC, Nostr, and many other places.\n\nThird, for *any* subversions to work, they must be kept hidden. And hiding bugs in an open source project only works if people don't care about the project. Core's development affects people's livelihoods and fortuntes, so a lot of people are scouring it's code for bugs. Moreover, those seeking to steal BTC look for code to exploit. If a backdoor were added to Core, it would be taken advantage of quickly, thus exposing the subversion.\n\nFourth, if the subversion(s) were discovered, the Core devs would be treated like criminals forever. And others would scour the Core source code to find any possible subversions. It would be somewhat like when the OpenBSD devs started LibreSSL, because OpenSSL had made too many mistakes over the years -- except the OpenSSL devs weren't obviously beig malicious.\n\nFifth, the changes that the Core devs can actually make to Bitcoin itself are quite small. Soft-forks and hard forks only affect new versions of Bitcoin Core. The rest of the old versions of Core would not follow either.\n\nSixth, mining pool companies care a great deal about the integrity of Bitcoin. They will not risk losing customers (i.e. the people with mining hardware) by going along with a hard fork created by Core devs. \n\nFinally, consumers (i.e. individuals spending their own money) are the ultimate deciding factor. When a hard fork occurs, consumers will buy one one side of the fork and sell on the other side of the fork. The miners/pools will mine on the side that has the highest price (presumably after a few days). Fortunately, a lot of consumers don't even hear about hard forks until long after one side has been abandoned. For a hard fork to be successful, there must already be a culture of users constantly updating to the latest version (like Monero). Bitcoin users tend to run old versions of Bitcoin Core.\n\nIf you need clarification on any of the above, let me know. Corrections are also welcome. https://example.com/ 9366 401127 401113.401127.401131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.68521204036225 0 \N \N f 9176050 \N 1 70880946 0 f f \N \N \N \N 401113 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 425225 2025-03-04 16:33:51.357 2025-03-29 22:39:53.151 \N Got to encourage the snail. I am not superstitious but worry without it BTC won’t get to 100k lol https://example.com/ 13921 423928 423928.425225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6386828202798 0 \N \N f 227208888 \N 3 81624324 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441057 2025-03-17 18:15:58.117 2025-03-29 22:39:53.151 \N It depends on you bringing better content and rewarding the best content :) https://example.com/ 9295 440692 440692.441057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4982383364492 0 \N \N f 192736314 \N 1 27762926 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 423747 2025-03-03 15:13:47.946 2025-03-29 22:39:53.152 \N I've got my lightning address going out and NWC going in so I think I'm ready for the diaper change. https://example.com/ 21412 423667 423667.423747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6972341149063 0 \N \N f 853015082 \N 6 16798742 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458241 2025-03-29 06:14:22.466 2025-03-29 22:39:53.152 \N @jb55 just gave a shout out to Stacker News as an incredible product that inspired the idea of adding zaps to Damus https://example.com/ 1010 458227 458227.458241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.0542867120425 0 \N \N f 1195912915 \N 12 192678457 0 f f \N \N \N \N 458227 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 433967 2025-03-11 14:37:22.633 2025-03-29 22:39:53.152 \N Cowboy Hat Making Fundamentals: Or How to Make a Fur Felt Sombrero That'll Fit Your Head, by Scott Edward Goodwin https://example.com/ 15213 433956 433679.433956.433967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2186047325837 0 \N \N f 50439646 \N 2 99171142 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437371 2025-03-14 13:18:50.88 2025-03-29 22:39:53.152 \N Mainly, it's a fairly steep learning curve. The docs suck (but have gotten way better recently). But mostly it's hard because build systems, and computers in general, are hard.\n\nNix forces you to deal with the complexity that's usually hidden behind the nice CLI commands you've learned. You have to deal with your language's compiler, its build process, how it composes libraries etc. \n\nIt also reveals the flaws of some language's build systems. For example, making Nix packages for Python is, in my experience, a total nightmare. if you're a python dev you're gonna have a bad time. But great build tools (like Rust's cargo, or Elixir's mix) are super easy to work with because those build systems have learned from past's ecosystems' mistakes.\n\nIf you're comfy on your Mac using homebrew and don't really care about open source software as a philosophy, then no need to put yourself through learning to use Nix. https://example.com/ 16684 437301 437301.437371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2356092764812 0 \N \N f 473471474 \N 3 86904791 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447302 2025-03-21 18:55:24.899 2025-03-29 22:39:53.153 \N Mempool.space is the greatest block explorer, easily. And it has never let me down when i check to make sure the fee i use will be in the next block..always always accurate on what block you'll be in too! \n https://example.com/ 19857 447264 447264.447302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.11571224726834 0 \N \N f 705108824 \N 5 115761403 0 f f \N \N \N \N 447264 \N 0 0 \N \N f \N 2025-03-29 08:34:20.644 f \N \N \N 0 0 0 0 2 0 0 435254 2025-03-12 14:59:12.345 2025-03-29 22:39:53.153 \N Udi.\n\nEven if he's just engagement farming, he's a pest and should be avoided at all costs.\n\nAnd he's probably an operative, but no one can prove that. https://example.com/ 21647 435235 435046.435135.435162.435214.435220.435235.435254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7231744978653 0 \N \N f 38164712 \N 1 224144961 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 08:30:46.827 f \N \N \N 0 0 0 0 1 0 0 414726 2025-02-24 08:58:52.015 2025-03-29 22:39:53.153 \N ![](https://www.zapread.com/i/9A4) https://example.com/ 20062 414648 413675.413884.414328.414638.414648.414726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4562290903278 0 \N \N f 249665870 \N 1 239626159 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434541 2025-03-12 02:19:55.73 2025-03-29 22:39:49.151 Will Artificial Intelligence Help Prolong The Current Fiat Monetary System? I’m sure many of us have read Jeff Booth’s [The Price Of Tomorrow](https://www.goodreads.com/en/book/show/50157837), which describes how new technologies are deflationary. He discusses artificial intelligence as an example, and of course bitcoin.\n\nI have no doubt that his vision of the future will come to pass, and bitcoin will be the money of that future. In the meantime, though, I am wondering if the incredible growth of generative artificial intelligence might help to prop up the fiat system for a while, buying time for central banks to kick the can down the road. \n\nThis article lays out what I’m talking about:\n\nhttps://www.aei.org/articles/what-would-be-the-impact-of-an-ai-boom-on-interest-rates-and-inflation/\n\nThere’s no doubt that the U.S. Government needs inflation to monetize the incredible amount of debt it has built up. Without technological advancements improving efficiency, that inflation would likely spiral out of control quickly. AI might in fact keep inflation in check just enough to allow this house of cards to remain standing for a while.\n\nI’m wondering what other stackers think?\n\n \N 21048 \N 434541 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.3410814529921 0 \N \N f 276133397 \N 3 183884919 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:27:45.141 f \N \N \N 0 0 0 0 2 0 0 307315 2024-11-24 23:12:32.891 2025-03-29 22:39:49.151 840,000 | Is The Halving Runed? ## What are Runes?\n\n***The Runes protocol activates on block 840,000.***\n\n-------------\n\nFrom the guy that brought you Ordinals and Inscriptions, this latest creation is a standard for issuing fungible tokens on Bitcoin \n\n*Runes allow Bitcoin transactions to etch, mint, and transfer Bitcoin-native digital commodities. Whereas every inscription is unique, every unit of a rune is the same. They are interchangeable tokens, fit for a variety of purposes.*\n\nThe Runes protocol [proposes](https://rodarmor.com/blog/runes/) a small on-chain footprint and encourages responsible UTXO management, which might serve as a more efficient approach to something already in existence - BRC-20 tokens - which has the undesirable consequence of UTXO proliferation (high fees!).\n\n> “If Runes are successful, they’ll drain liquidity, technology, and attention away from other cryptocurrencies, and bring it back to Bitcoin,”\n\n*Bitcoin Maximalism?*\n\n-------------\n\n### Runes rival RGB / Taproot Assets\n\n-------------\n\nRGB and Taproot Assets rely on off-chain data - they store the metadata of its assets off-chain, making the asset information detached from Bitcoin’s main layer.\n\nRune balances are held by UTXOs, this is where Rune protocol messages, called runestones, are stored. A UTXO can contain any amount of any number of runes.\n\nA runestone output's script pubkey begins with an OP_RETURN, followed by OP_13, followed by zero or more data pushes. These data pushes are concatenated and decoded into a sequence of 128-bit integers, and finally parsed into a runestone.\n\nA transaction may have at most one runestone.\n\nA runestone may etch a new rune, mint an existing rune, and transfer runes from a transaction's inputs to its outputs.\n\nA transaction output may hold balances of any number of runes.\n\nRunes are identified by IDs, which consist of the block in which a rune was etched and the index of the etching transaction within that block, represented in text as BLOCK:TX. For example, the ID of the rune minted the 20th transaction of the 500th block is 500:20.\n\nIf you are interested in the specification, check it out [here](https://docs.ordinals.com/runes/specification.html).\n\n--------------\n\n### Future development\n\n-------------\n\nInterested to hear a Bitcoiners perspective. Is it all noise? The protocol is lightning compatible and I've no idea whether or not it could be further enhanced by something like BitVM? Could it even incorporate something like Cashu or Fedimint? \n\n**If you want shitcoins to perish,** you'd have thought the sound money education would have worked by now. The many hours of maxi orange pilling content isn't working, it's just enriching piggyback influencers. You have to take the fight to the market and ship stuff - [strangler fig pattern](https://www.freecodecamp.org/news/what-is-the-strangler-pattern-in-software-development/). \n\n@rodarmor is pretty upfront and honest about the whole thing being pure gambling and degen entertainment. \n\nIt's not a shitcoin. It's a venue for people to create shitcoins, which is possibly worse and more dangerous. We’ll see.\n\n--------------\n\n**Regardless, I'm Bullish on Bitcoin.**\n\n*Check out my previous post on [the importance of bubbles](https://stacker.news/items/483613#the-importance-of-bubbles).* \N 9107 \N 307315 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.0747476397609 0 \N \N f 222059843 \N 1 104946978 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450666 2025-03-24 06:29:38.054 2025-03-29 22:39:53.153 \N My go to term is “grown up” https://example.com/ 13169 450664 450649.450652.450659.450664.450666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.49903494324602 0 \N \N f 775475313 \N 5 34783586 0 f f \N \N \N \N 450649 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444472 2025-03-19 23:02:45.585 2025-03-29 22:39:53.154 \N Great to see that you've introduced subscriptions.\n\nIt'd be great if users could tweak their subscriptions to just 'posts only' notifications. https://example.com/ 9450 444365 444365.444472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9346538329776 0 \N \N f 226931245 \N 1 143216756 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436884 2025-03-14 01:24:28.109 2025-03-29 22:39:53.154 \N ![](https://i.imgur.com/QjBnM45.jpg) https://example.com/ 8168 436853 436683.436833.436853.436884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.38410686909422 0 \N \N f 296498546 \N 2 183920027 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 409637 2025-02-19 18:09:35.719 2025-03-29 22:39:49.151 What did you lose during COVID? **The pandemic was created nearly 5 years ago. It took many things from us. Who took them away is another story but tell SN this time what you've lost during COVID?** \N 11378 \N 409637 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 15.4571468106507 0 \N \N f 239213597 \N 1 179339256 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434481 2025-03-12 00:06:23.948 2025-03-29 22:39:49.151 Are SN Poll Posts Useful? I don't believe I have ever made a poll post, but I have participated in plenty. It's usually for fun, and I'll often leave a wiseass remark (nice try, fed) rather than choose a poll option. \nJust anecdotally, they don't seem to gather many responses or relevant replies, but I don't focus on them as a rule, so I may have missed many good ones. \n\nThe reason I'm asking is that I am planning to start crowd sourcing content to highlight in my ~bitcoinbeginners territory. Some of you may already be aware of my little reward system that I'm trying out to attract good posts. I also want a way to get opinions on content to highlight. I'll probably include more details in a later post. I'm considering polling posts as one tool. \n\nI'm wondering if our data guru, @davidw, has any information on polling posts and how they typically perform overall, through zaps, replies, etc. I also know that @jimmysong uses them extensively, so I would certainly welcome his opinion. \n\nThanks for any input. \N 11153 \N 434481 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 27.0534342956002 0 \N \N f 177887159 \N 1 153605331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-18 21:55:51.599 f \N \N \N 0 0 0 0 1 0 0 401806 2025-02-13 12:04:43.727 2025-03-29 22:39:49.151 Announcing Strike Africa \N https://strike.me/blog/announcing-strike-africa/ 1471 \N 401806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5392642654162 0 \N \N f 101216700 \N 1 244500017 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433835 2025-03-11 12:37:06.064 2025-03-29 22:39:53.148 \N Tony thanks for doing this SN ama! Have two questions for ya!\n\nWhat do you think is the most pressing problem in lightning wallets today? \n\nWhat is your favorite burger in Austin?\n\n https://example.com/ 14169 433555 433555.433835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.78151873174179 0 \N \N f 91180822 \N 1 176707958 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 00:23:53.538 f \N \N \N 0 0 0 0 1 0 0 434866 2025-03-12 09:50:07.516 2025-03-29 22:39:53.154 \N And that's why I always said: just use Bitcoin, nothing else. Get the fuck out from fiat world and let them became obsolete.\nCreate those bitcoin circular economies around you, with small merchants.\nEarn in bitcoin, spend in bitcoin, save in bitcoin. Is so fucking simple.\n[![vader-sovereign-adoption.jpg](https://i.postimg.cc/zX2ZDQD1/vader-sovereign-adoption.jpg)](https://postimg.cc/vcnS336P)\nhttps://darthcoin.substack.com/p/how-bitcoin-will-save-the-world https://example.com/ 4570 434797 434795.434797.434866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4563839961977 0 \N \N f 505956646 \N 5 111509710 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 04:39:48.627 f \N \N \N 0 0 0 0 1 0 0 423595 2025-03-03 13:28:33.21 2025-03-29 22:39:53.154 \N Full stack developer. https://example.com/ 15119 423593 423384.423591.423593.423595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.00958337838978 0 \N \N f 1805415856 \N 13 135820763 0 f f \N \N \N \N 423384 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428354 2025-03-07 06:59:33.041 2025-03-29 22:39:53.154 \N seeing another big day of visitors on SN, October is already an all-time record month for unique visitors, visits, and pageviews\n\n⚡️ https://example.com/ 802 428320 424571.424907.424921.424946.424988.428312.428320.428354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.203290771816 0 \N \N f 1055355798 \N 6 37952475 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 456815 2025-03-27 22:22:26.982 2025-03-29 22:39:53.155 \N What positive/negative impacts have you seen from removing social media from your life? https://example.com/ 1002 456790 454221.454403.455521.455855.456113.456117.456790.456815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6746659224471 0 \N \N f 249648916 \N 1 79805505 0 f f \N \N \N \N 454221 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407969 2025-02-18 13:55:19.991 2025-03-29 22:39:53.148 \N I am reading this from my RV with a node onboard. I think you are onto something. \n\nLiving on the West Coast, house, rent, and land prices are too high. We're just not going to set roots down here long-term; we had to opt out. \n\nWe live a fairly minimal life since we can't carry much onboard, so storing value in something digital that I can self-custody is a huge advantage for us. \n\nIt's tricky to balance fuel prices these days. We are fortunate that we have been able to park on some land where we can have a large garden too. That's a rare thing in my area.\n\nIf there was a large gathering/camp of nomad Bitcoiners, I'd be there! https://example.com/ 660 407957 406399.407380.407469.407944.407954.407957.407969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1536784340379 0 \N \N f 452766758 \N 4 186505600 0 f f \N \N \N \N 406399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407974 2025-02-18 13:59:42.167 2025-03-29 22:39:53.15 \N I remember when they made this meme in the beginning But below it said... **"I think we lost the country"** \n🤣😂\nBukele has surpassed all the presidents like a train 🚄 https://example.com/ 4831 407963 407903.407963.407974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.12884294956746 0 \N \N f 745301181 \N 5 39385737 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434501 2025-03-12 00:50:08.155 2025-03-29 22:39:53.15 \N Microlancer imo, I’ve posted many tasks on there and gotten lots of replies. I think the more users the more work will be on there https://example.com/ 7916 434441 434441.434501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9298028595765 0 \N \N f 183021379 \N 1 149782881 0 f f \N \N \N \N 434441 \N 0 0 \N \N f \N 2025-03-18 21:07:51.708 f \N \N \N 0 0 0 0 1 0 0 443457 2025-03-19 11:10:44.034 2025-03-29 22:39:53.15 \N Predicting timelines is always a guessing game. But I'm actually of the opinion that in the near term, liquidity on the network is not a bottleneck for Lightning. We can still scale to way more payment throughput and success rate with exactly the same amount of liquidity we have right now. \n\nLiquidity is a good that will be present as soon as sufficient demand is visible. When people want to use Lightning, the liquidity will be there. When large exchanges adopt Lightning or new merchants come onboard, they will bring the liquidity they need themselves, or attract it by exerting demand. \n\nI'm not convinced that Lightning will be a great place for "yield" in the near future either. It may be a good place for "risk-free rates", but not for earning substantial yield, compared to shitcoin schemes, bonds, or the stock market. https://example.com/ 10409 442854 442751.442854.443457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0416152744003 0 \N \N f 452725 \N 1 87350660 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 2025-03-26 04:53:04.476 f \N \N \N 0 0 0 0 1 0 0 450946 2025-03-24 10:11:53.717 2025-03-29 22:39:53.15 \N LSP > ease of use > non-custodial adoption.\n\nWe see that already with Mutiny, Zeus and others implementing LSPs. https://example.com/ 1620 450699 450678.450695.450699.450946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.040946535402 0 \N \N f 245314914 \N 2 224130400 0 f f \N \N \N \N 450678 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434798 2025-03-12 08:49:00.984 2025-03-29 22:39:53.15 \N Truth is stranger than fiction https://example.com/ 21212 434795 434795.434798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5935287113121 0 \N \N f 1168525164 \N 12 147621874 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 09:41:29.363 f \N \N \N 0 0 0 0 3 0 0 420895 2025-03-01 08:47:36.519 2025-03-29 22:39:49.151 Book (with Bitcoin) review: *Zero Days* by Ruth Ware Ask, and the universe provides. My [first actual post to SN](https://stacker.news/items/441951) was one asking about Bitcoin in fiction, and then an author I'm already a fan of turns out to have a book I'd missed that does have Bitcoin (in a minor role) in it!\n\nRuth Ware's become one of the big names in the British (and to a lesser extent, the global) crime scene. She's often called the "New Agatha Christie," but I find that reductive and kind of insulting to both of them. Ware's not about recurring detectives like Poirot and Marple, but more about ordinary people caught up in big events. Hitchcock's probably a better comparison.\n\nShe's dealt with tech in her books before -- *One by One*, a nifty crime novel set at a snowed-in ski lodge, is about the execs at a company working on a successful social media tool -- but *Zero Days* has [pen testing](https://en.wikipedia.org/wiki/Penetration_test) as a core plot point, and could almost be classified as a techno-thriller. More importantly, though, it's fun and a good read.\n\nThe plot: Jacintha "Jack" Cross is part of a two-person penetration testing team with her husband, Gabe. Gabe's the hacker of the two, running code and trying to break through digital defenses, while Jack's the one doing the in-person work, breaking into facilities to test them, leaving USB drives in the parking lot, etc. One night, she gets caught by a security guard, and while she's sorting things out at the police station (contacting the CSO to confirm she was there legitimately) and then taking a long drive home, her husband is brutally murdered.\n\nShe not only has the trauma of discovering his body, but soon enough, realizes she's the prime suspect, as the knife (from their kitchen) has her fingerprints on it, and Gabe seems to have opened up a brand new life insurance policy with Jack as the beneficiary. Sure that if the police take her in, the frame will be complete, she goes on the run, injuring herself in the process (a wound that gets worse and worse through the book, eventually leading to sepsis).\n\nJack's a fun protagonist. She's able to use a ton of her pen testing skills when hiding, from bluffing her way into facilities to finding passwords through social engineering -- but since her husband was the tech whiz, can't rely on hacking skills (or worse, fictionalized "magic hacking" skills that are so common. She's forced to improvise, even as her health's getting worse and her ability to navigate around London (with its ubiquitous surveillance) gets more and more restricted.\n\nThere's a good supporting cast -- essential in any thriller, since "who can you trust?" has to be a recurring question -- and the pace ramps up quickly as Jack goes on the run. The "who" part of the whodunit element is always the least interesting things to me, since I read so many crime novels that I'm reasonably good at intuiting it, but the "how" and the "why," along with how the protagonist puts it together, are what I enjoy. This one has a solid dénouement and ending, and wraps things up nicely.\n\nBTC itself is essentially treated as a valued asset here, not really vital plot element, but it fits in with the characters and setting, and is used realistically (for starters, it's actually Bitcoin and not some BS coin made up for the book). At one point, she's aware of how KYC will nail her: "I had Gabe’s Bitcoin, of course, but I was fairly sure that no reputable exchange would start handing out cash—not without showing ID, anyway." At another, she ends up agreeing to something in fiat and realizing after the fact that BTC's exchange rate fluctuates. Not a reason to read the book, but definitely a nice addition. \N 21688 \N 420895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11193844269987 0 \N \N f 3370703246 \N 25 69131181 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 9 0 0 308049 2024-11-25 15:22:06.845 2025-03-29 22:39:53.15 \N Sure, when you say "my computer" I'm going to take that less than literally. I hope you have a spare one to do this with because you'll want to modify it somewhat to suit that purpose.\n\nFirst, you'll want to install a secure operating system, a form of Linux like Ubuntu is a good start.\n\nSecond, you'll want to load the various software you'll need to do transaction signing. There are online tools that you can download and save as files on your desktop so that you can verify transactions and check signatures. Coinb.in is one that comes to mind. It might also be nice to have a QR code generator and a QR code reader to make it easy to transfer data without a network connection.\n\nYou can probably use Electrum offline to generate keys and addresses like a HW wallet would do for you.\n\nThird, keep this computer offline. Unplug the ethernet cable and remove the wifi card. Disable bluetooth or remove that if it's a card. You don't want the computer communicating any other way than via the camera and qr codes and perhaps thumb drives.\n\nTo actually make a transaction you'll have an online part where you check and choose available utxos and put where the coins are going. Make sure not to donate a massive fee to the miners! Then the offline part would happen by sending this unsigned transaction to this specially prepared computer, verify the details, sign it, then share it back with an online computer or phone to broadcast it.\n\nFor privacy you may want to do the online parts over Tor. Someone wrote up a more in-depth protocol for this called the Glacier protocol and you should probably use that. What I write above is more like general guidance on what's required to use your computer as a hardware wallet. https://example.com/ 2335 308046 307616.307742.307953.308046.308049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1389141182515 0 \N \N f 190758113 \N 2 36892004 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414116 2025-02-23 16:46:08.701 2025-03-29 22:39:53.151 \N Just casually deleted my twitter account. https://example.com/ 13177 414111 414111.414116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1231170628835 0 \N \N f 252183037 \N 2 142918365 0 f f \N \N \N \N 414111 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 266721 2024-10-14 01:54:31.822 2025-03-29 22:39:53.151 \N I can confirm, auto withdrawal worked now. Thanks! https://example.com/ 20751 265848 265848.266721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7645266176604 0 \N \N f 147593917 \N 1 19136392 0 f f \N \N \N \N 265848 \N 0 0 \N \N f \N 2025-03-18 16:42:20.614 f \N \N \N 0 0 0 0 1 0 0 402565 2025-02-13 20:21:06.961 2025-03-29 22:39:53.15 \N 1. SIGHASH_ANYPREVOUT\n\n2. Privacy improvements like Trampoline routing\n\n3. I don't know enough about NOSTR to have an opinion yet https://example.com/ 20802 402556 402556.402565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4531017776274 0 \N \N f 87916900 \N 2 179131530 0 f f \N \N \N \N 402556 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434480 2025-03-12 00:05:25.401 2025-03-29 22:39:53.151 \N I forgot @rijndael had joined bitkey. All this time I thought he was still at AWS.\n\nHe's one of my favorite twitter follows - smart enough to know what he's talking about and thoughtful enough to avoid group think. He's also broadly supportive of builders in the space.\n\nI don't follow any of the ordinal/inscriptions drama - other than being both happy and upset fees are high - but I respect both @rijndael and @rodarmor a ton as thinkers. https://example.com/ 1478 433753 433588.433753.434480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7577857324712 0 \N \N f 63161539 \N 1 99462118 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 2025-03-18 18:36:07.746 f \N \N \N 0 0 0 0 1 0 0 404334 2025-02-15 19:22:43.418 2025-03-29 22:39:53.152 \N yeah. i am build ios/android client with react native for stacker news, but it's read-only version. Alrealy finished the most part, will open source soon. Your graphql api is awesome! Very easy to use! https://example.com/ 16059 404332 404136.404203.404242.404332.404334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5969220206028 0 \N \N f 319645599 \N 3 178676661 0 f f \N \N \N \N 404136 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446725 2025-03-21 12:41:38.025 2025-03-29 22:39:53.152 \N I have most in my lightning node accessed through zeus and alby, next is E-nuts (if that counts), then Mutiny https://example.com/ 11798 446456 446456.446725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8641192840723 0 \N \N f 309962517 \N 2 30920551 0 f f \N \N \N \N 446456 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 414324 2025-02-23 19:57:52.948 2025-03-29 22:39:53.152 \N this node has 2 channels added in the last day, one for 10 BTC and one for 5 BTC.\n\nboth channels are connections to other large exchanges (kraken & okex).\n\nno confirmation from binance yet, but seems likely this could be them. https://example.com/ 19198 414314 414314.414324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6821544076595 0 \N \N f 292038939 \N 2 97438342 0 f f \N \N \N \N 414314 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410279 2025-02-20 12:13:27.441 2025-03-29 22:39:53.153 \N https://www.youtube.com/watch?v=R2asE78rs38\n\nquite good stance, imo https://example.com/ 4314 410269 410269.410279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.92700006420208 0 \N \N f 194581522 \N 1 157569670 0 f f \N \N \N \N 410269 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 458151 2025-03-29 02:21:06.82 2025-03-29 22:39:49.151 Flipper Zero - Portable Multi-tool Device for Geeks I recently acquired a Flipper Zero in order to learn more about [pen testing](https://en.wikipedia.org/wiki/Penetration_test), radio, and for a bit of fun. After using this device for several weeks I have to say it was a great purchase.\n\nWhat does it do?\n\nWell, its essentially a hacking tool. If you have tech that uses radio this device probably will allow you to mess with it. Its not really something a professional would use day to day but it packs a lot of functionality into a small pocket friendly device.\n\nIf you are curious about NFC, RFID, BlueTooth, WiFi(requires module), and other radio applications I highly recommend it. Once you get the basics down I recommend trying out an alternative firmware like [Momentum](https://momentum-fw.dev/). \n\nNot only does this little toy like device do a ton out of the box it also is expandable.\n\nI will also say that as I've been going down the rabbit hole of pen testing it kinda blows my mind that we don't see more destructive hacking than we actually do. We are very vulnerable and to me it seems that the number of "bad guys" is relatively small. I don't know if that makes people feel any better but I don't think most criminals are really that smart or clever. Those that are likely do not get caught.\n\nIf you are a younger person and looking for a good career, pen testing might be a good option. It seems to be a growing field and as more and more of our lives are online or controlled by tech security will only get more important. https://flipperzero.one 2335 \N 458151 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 1.60464766162477 0 \N \N f 104737283 \N 1 70893641 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403788 2025-02-15 08:06:38.593 2025-03-29 22:39:53.149 \N You should thank them. Reddit is a dumpster fire. Don't waste your time there. Here are some sats. Try hanging around here. Vote with your feet. https://example.com/ 19576 403779 402904.403694.403750.403754.403755.403762.403765.403771.403772.403773.403776.403778.403779.403788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65608642694792 0 \N \N f 588863985 \N 5 64496056 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441841 2025-03-18 10:25:06.303 2025-03-29 22:39:53.15 \N Love this one.\n\nCurrent state of tech is enough to support so much adoption that hasn't happened yet. I wish more energy was put into leveraging what we have tech-wise to increase usage instead of going crazy with expanding the base layer. https://example.com/ 713 441837 441695.441823.441837.441841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3099782828349 0 \N \N f 373077953 \N 2 225326135 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427264 2025-03-06 08:59:35.206 2025-03-29 22:39:53.15 \N I have a weird fear of heights. I can’t look over this railing on the 11th floor but I like climbing:\n\n![](https://m.stacker.news/57176) https://example.com/ 4167 427251 427251.427264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.25238990800079 0 \N \N f 173593640 \N 2 240504010 0 f f \N \N \N \N 427251 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450010 2025-03-23 17:29:39.175 2025-03-29 22:39:53.151 \N Congrats to @corndalorian for winning this week’s Meme Monday. \n\nYou can see the winning meme and all others here https://stacker.news/items/654539?sort=top https://example.com/ 9339 449920 449601.449630.449881.449910.449920.450010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3400557410447 0 \N \N f 493981716 \N 5 65560478 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447999 2025-03-22 10:36:53.754 2025-03-29 22:39:53.152 \N Keep in mind that PWA support/features is still dependent on browsers where Google and Apple have a very large market share.\n\nIt's the best thing we have but it's still not ideal imo. https://example.com/ 17331 447944 447944.447999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9054182910093 0 \N \N f 115529602 \N 1 87449693 0 f f \N \N \N \N 447944 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435171 2025-03-12 14:06:47.419 2025-03-29 22:39:53.152 \N ![Inflation Meme](https://imgprxy.stacker.news/J_btlJSpaSutFEJOmupPDK9PZ5jdvdNvE_tDBv6oAMg/rs:fit:600:500:0/g:no/aHR0cHM6Ly9pLmltZ2ZsaXAuY29tLzd6angwdC5qcGc) https://example.com/ 21400 434795 434795.435171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.90977537002471 0 \N \N f 263214086 \N 2 26885101 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-19 18:20:57.973 f \N \N \N 0 0 0 0 1 0 0 408016 2025-02-18 14:28:19.384 2025-03-29 22:39:53.153 \N Update from David Bailey:\n\n![](https://nostr.build/i/931a242f17b8462ce81a31540d356688c62f91ff822c33d68fff75bb4b3e80a8.jpg) https://example.com/ 15728 407976 407903.407928.407976.408016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8702993471495 0 \N \N f 1014664846 \N 6 236692752 0 f f \N \N \N \N 407903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434675 2025-03-12 06:19:35.65 2025-03-29 22:39:53.153 \N Lyn is hands down the best economic & financial analyst out there.\n\nFeel so grateful to be able to read so much value in all the free content she puts out.\n\nOne of the great critical thinkers of this era. https://example.com/ 10056 434317 434317.434675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.25873695341505 0 \N \N f 622251656 \N 4 76148790 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 2025-03-19 03:34:16.197 f \N \N \N 0 0 0 0 1 0 0 407495 2025-02-18 04:55:56.806 2025-03-29 22:39:49.151 Coinos.io AMA with Adam and Cole Coinos is a longstanding open source web wallet with on-chain, Liquid and Lightning capability. We recently added cashu ecash support and are in the midst of adding self-custodial accounts and nostr integration for contacts and messaging.\n\nWe host regular in-person meetups in Vancouver are active promoters of Bitcoin merchant adoption with over 500 businesses using us to take in-person payments around the world.\n\nAdam is the founder and CTO and Cole focuses on business development and marketing.\n\nFind us on nostr at https://primal.net/p/npub1h2qfjpnxau9k7ja9qkf50043xfpfy8j5v60xsqryef64y44puwnq28w8ch\n\nAsk us anything! \N 3377 \N 407495 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 9.52253187662027 0 \N \N f 644046577 \N 5 212915151 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 4 0 0 435992 2025-03-13 07:49:59.14 2025-03-29 22:39:53.149 \N I don't think I can do justice a full explanation here, but I'll give it a try.\n\nThe history of the dollar leads me to believe the main purpose of the CIA is to maintain dollar dominance around the world. Everything they have their fingers on leads to some kind of change in how finance is done after one of their color revolutions. If the dollar is to remain dominant beyond this final and vertical phase of debt growth, it eventually needs to be rebased and to do so without doing something as silly as reverse splits which would lead to certain demise it rather needs to be pegged to something that cannot be manipulated such as a commodity yet is abundant enough that everyone can own some of it.\n\nThe 'old money' behind the banks is only interested in maintaining world control. If you control the money, you control the politicians, regulations, business, and the media. It was in the US's best interest for a time to allow this to continue on, but there have been revolutionaries in high places who tried to disconnect us from these monied interests.\n\nAs you know, President Jackson was successful for a time at resisting the succubi, Lincoln tried financial independence with his greenbacks, but then Grant hamfistedly lost grasp of the reins with his war-debt payoff gold-market collusion fiasco. This lead to the great bimetallism debate (The Wizard of Oz) where the US tried to play both sides of the gold/silver fence. On one hand we were swimming in wealth from the gold rush, and on the other hand our gold-centrality exposed us to world-market manipulation by the ancient European gold baron families.\nAfter decades of the US back under control of European gold markets, though prospering under a regime of peace and freedom, this hard-money system prevented the socialists in government from exploiting the tax chattel to fund an overseas meat grinder in the name of their honor. Thus the creation of the federal reserve, the income tax (16th amendment), and the restructuring of the states into subject provinces by removing representation in congress from the respective legislatures (17th amendment).\n\nThis new centrally controlled system worked so swimmingly it allowed congress to spend the wealth out from under each and every individual (effectively subverting the 13th amendment) for the benefit of their cronies with supposed "social programs" and "defense spending" out of which we have the birth of the military industrial complex (eternal war) and federal nanny state (18th amendment). \n\nSomewhat by accident, during our continued overseas virtue-signaling, we found ourselves in possession of the world's biggest boom stick. As it would be some time before our competitors/allies would figure out how to make their own big boom sticks, and us coming out of this war with mostly unblemished infrastructure (other than a few mountains of dead fathers), we had a unique opportunity to force the world at-large to transact under our system of Washington issued fiat. Thus was born the petro-dollar. Out of the bowels of Naval Intelligence a new agency was created to maintain this overseas banking dominance, the CIA.\n\nSince the CIA was created, every president who attempted to muddle with our system of fiat was either from the CIA, threatened by the CIA, politically destroyed by the CIA, or assassinated by the CIA. And with good reason, its from their good work that we are able to delude ourselves that the world is a safe place and when there's a potential pandemic we panic off to a department store and squirrel away heaps of toilet paper knowing nothing about how to survive outside the grid.\n\nSo to put it all together; If the purpose of the CIA is to maintain stability of the dollar, regardless of the irresponsibility and theft of congress and the president, they also knew full well for decades that the dollar would not survive as a world currency unless hyperinflation were to somehow be avoided. Thus our friend "Central/Moto" "Intelligence/Satoshi" "Agency/Naka" himself came to the rescue to introduce a new grass-roots system of value, seemingly designed with the aid of a time machine. Such a digital scarcity system could not take hold without it being grass-roots, and thus the obscurity of his anonymous identity and now disappearance.\n\nWhat does this mean to us maxis? In my opinion, none of it matters. Bitcoin rests on the laurels of its merits alone and whether its yet another fiduciary manipulation documented only in a super-secret SCIF matters nothing at all. It is still the only truly scarce asset in the knowable universe, next to energy and space itself if at all. https://example.com/ 9906 435990 434795.435965.435978.435980.435983.435984.435989.435990.435992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1851095412517 0 \N \N f 163777643 \N 2 56511182 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 2025-03-20 01:10:04.574 f \N \N \N 0 0 0 0 1 0 0 437352 2025-03-14 13:05:14.213 2025-03-29 22:39:53.154 \N Rust for programming https://example.com/ 20687 437348 437233.437270.437311.437319.437348.437352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.57336152319765 0 \N \N f 247306878 \N 2 76112010 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435275 2025-03-12 15:14:11.084 2025-03-29 22:39:53.154 \N What about the love of your partner? https://example.com/ 17494 435217 435217.435275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.02510844916061 0 \N \N f 2016232847 \N 18 84080959 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 2025-03-19 09:56:13.912 f \N \N \N 0 0 0 0 1 0 0 430351 2025-03-09 06:03:10.782 2025-03-29 22:39:53.154 \N Perhaps we should be thanking Gensler for the cheap corn? https://example.com/ 21494 430109 430109.430351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3181501652204 0 \N \N f 1385900833 \N 9 101755400 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 444218 2025-03-19 18:16:11.816 2025-03-29 22:39:53.154 \N 28 seconds in and there are 3 comments already... mind blown 🤯 https://example.com/ 21485 444097 444097.444218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3415536576255 0 \N \N f 347883928 \N 2 246059724 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448203 2025-03-22 13:33:33.954 2025-03-29 22:39:53.154 \N **UPDATE**\n\nAppears he taken his github private.\n\nAn archive (thanks to Internet archive's Wayback machine) is here:\n\n*Of regrets*\nhttps://web.archive.org/web/20230206230942/https://laanwj.github.io/2023/02/06/regrets.html https://example.com/ 9341 448092 448092.448203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8646234848856 0 \N \N f 201050281 \N 2 114771661 0 f f \N \N \N \N 448092 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424123 2025-03-03 20:44:02.84 2025-03-29 22:39:53.155 \N Thanks for sharing.\n\nIt triggered another smash buy for me, knowing what kind of slimeballs I'm defunding. https://example.com/ 1433 424111 423667.423689.423899.423956.423958.423971.423977.423990.424003.424024.424080.424111.424123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.836049452901 0 \N \N f 574354857 \N 5 81321870 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 400739 2025-02-12 13:41:22.979 2025-03-29 22:39:49.151 LND v0.16.1-beta: Bug Fixes and Optimizations \N https://github.com/lightningnetwork/lnd/blob/master/docs/release-notes/release-notes-0.16.1.md 1122 \N 400739 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.0305311479399 0 \N \N f 502013215 \N 3 181500226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 415378 2025-02-24 18:52:56.451 2025-03-29 22:39:53.151 \N ![](https://www.zapread.com/i/9TJ) https://example.com/ 16276 415180 415180.415378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5457704259275 0 \N \N f 97462517 \N 2 129185576 0 f f \N \N \N \N 415180 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403240 2025-02-14 15:26:29.929 2025-03-29 22:39:53.151 \N Better than normal, but worse than hoped. https://example.com/ 9496 403237 403063.403213.403228.403237.403240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0406287365445 0 \N \N f 192056808 \N 2 1987073 0 f f \N \N \N \N 403063 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 420959 2025-03-01 10:02:09.5 2025-03-29 22:39:53.151 \N >That to me is Bitcoin maximalism, and everything else is a distraction.\n\n100% Well said sir!\nI am glad you found the light.\n[![BTC-the-light.jpg](https://i.postimg.cc/cLMGLKHR/BTC-the-light.jpg)](https://postimg.cc/rDmPhw5s) https://example.com/ 762 420895 420895.420959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9767823232353 0 \N \N f 479419212 \N 4 143344684 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 401371 2025-02-12 23:53:05.332 2025-03-29 22:39:53.152 \N Day 347 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 20979 401316 401198.401257.401271.401280.401316.401371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7441327762414 0 \N \N f 102064326 \N 1 53478118 0 f f \N \N \N \N 401198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 431156 2025-03-09 15:48:28.236 2025-03-29 22:39:53.152 \N This tool allows you to steal funds from nodes that attempt to pay an invoice a second time after the first succeeds. Soon we will add the wormhole attack in it so that routing nodes can get more money by shortcuting other routing nodes in the middle. You can safely run this and sit back and watch your node get more sats than it was getting before. There's also a mode that doesn't steal in case you want to see if you could have stolen funds. https://example.com/ 16571 431138 431122.431138.431156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8516822341073 0 \N \N f 57587784 \N 1 173601749 0 f f \N \N \N \N 431122 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403771 2025-02-15 07:45:45.501 2025-03-29 22:39:53.152 \N The same thing we work on every week Pinky... [Athena Alpha - Bitcoin Education](https://www.athena-alpha.com/) https://example.com/ 17218 403765 402904.403694.403750.403754.403755.403762.403765.403771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.30372970014619 0 \N \N f 1476925243 \N 11 149378825 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 427515 2025-03-06 12:59:07.43 2025-03-29 22:39:53.153 \N Here is a video demo:\n\nhttps://www.youtube.com/watch?v=5OdgISZraxI https://example.com/ 21398 427153 427039.427074.427153.427515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5328231301859 0 \N \N f 33362247 \N 1 178274306 0 f f \N \N \N \N 427039 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 397438 2025-02-10 03:54:14.268 2025-03-29 22:39:53.153 \N I look forward to reading these responses. I became disillusioned with Iris, and as a result I don't use nostr as much as I used to. I'm interested myself on opinions about Habla and BlogStack. https://example.com/ 8648 396500 395797.396045.396500.397438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0201243554711 0 \N \N f 318246743 \N 2 113304326 0 f f \N \N \N \N 395797 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 412359 2025-02-22 10:15:03.726 2025-03-29 22:39:49.151 Peter Todd applies to OpenSats for scale Nostr using OpenTimestamps \N https://xcancel.com/peterktodd/status/1833270307836067842#m 20980 \N 412359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2810143456509 0 \N \N f 176441217 \N 1 115717766 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416652 2025-02-25 18:38:53.88 2025-03-29 22:39:53.15 \N Estimated fee rate 10 sat/vB\nEstimated fee rate 9 sat/vB\nEstimated fee rate 11 sat/vB\n_submit transaction_\nEstimated fee rate 30 sat/vB\n\nLOL such is life https://example.com/ 5794 416536 416536.416652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0716308627739 0 \N \N f 114274755 \N 2 136138529 0 f f \N \N \N \N 416536 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 356269 2025-01-04 21:32:42.071 2025-03-29 22:39:53.149 \N A few years back, I spent almost 2 years, almost completely alone. Other than going to the store once in a while and visiting with my son every other weekend, I was alone. When my son did visit, I felt bad, because I was quite depressed and I struggled to show up for him the way I wanted to. For the most part, it was just me and my dog. I had pretty much given up on finding a partner that would fit me. I felt like too much of an outsider to be loved. I was very grateful for my dog Dusty. He got me through some hard times. I was telling myself I didn't need anyone but I was very depressed and really ready to give up. And then out of nowhere I met my new love. It felt like as soon as I fully surrendered to the solitude, things shifted. And now I feel very loved. Almost too much at times. I still have hermit tendencies. But I do think we all want connection in our lives. I am very grateful I made it through that tough time and now I have a love in my life again. I don't know if this is helpful in anyway, its just me reflecting a bit on the loneliest time I remember for myself. Thanks for the post. You always have people to connect with here when needed. And remember, you are never truly alone. And things can change. 💚 https://example.com/ 11516 356162 356162.356269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6212849936034 0 \N \N f 251525924 \N 2 223196618 0 f f \N \N \N \N 356162 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435354 2025-03-12 16:04:28.137 2025-03-29 22:39:53.153 \N I like the way @kr plays possum and then picks his spots. He's my model. https://example.com/ 876 435351 435046.435324.435331.435351.435354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3477058136007 0 \N \N f 227145599 \N 1 169374767 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 09:36:50.034 f \N \N \N 0 0 0 0 1 0 0 414319 2025-02-23 19:53:43.531 2025-03-29 22:39:53.154 \N Happy to have you here. You can't choose who uses SN, but if I could, you would be on the list. https://example.com/ 6136 414177 413675.413884.414168.414177.414319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7690373564887 0 \N \N f 166490681 \N 1 103717763 0 f f \N \N \N \N 413675 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 446641 2025-03-21 11:49:50.837 2025-03-29 22:39:53.154 \N Day 179 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 9365 446635 446598.446635.446641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3535711648148 0 \N \N f 726366517 \N 5 163547981 0 f f \N \N \N \N 446598 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 415331 2025-02-24 17:51:30.925 2025-03-29 22:39:53.154 \N I specialize in middle distance (400m/800m). In high school I was our team captain, and we won the 5A state championship 3 years in a row. Individually I was 5th in state for the 800m and set a couple school and state records on various relay teams. I ran in college for Penn for a couple of years, but ultimately quite because I just wasn't it at the time. After college, I returned to my old high school and coached the middle distance for 7 years. During that time, I absorbed everything in sight regarding various training philosophies and tactics and coached multiple athletes to and relay teams to state championships of their own.\n\nToday I continue to run half marathons, since the shorter stuff is just too hard on the body once you get over 30 haha. My best half so far is 1:17:58, so about 5:58 per mile. https://example.com/ 17535 415076 414755.415076.415331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9311604105193 0 \N \N f 594973410 \N 4 179655900 0 f f \N \N \N \N 414755 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 404527 2025-02-16 00:37:42.746 2025-03-29 22:39:53.154 \N I have begun my journey towards becoming an Olympian in 4 years time, so today I will have a successful training session. https://example.com/ 669 403708 402188.403708.404527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3017591019946 0 \N \N f 64054383 \N 1 107284801 0 f f \N \N \N \N 402188 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450977 2025-03-24 10:28:36.031 2025-03-29 22:39:53.154 \N To add some must check sources about LNbits:\n- [Awesome LNbits - list of documentation and projects](https://github.com/cryptoteun/awesome-lnbits)\n- [LNbits Youtube demo channelk](https://www.youtube.com/channel/UCGXU2Ae5x5K-5aKdmKqoLYg/videos) https://example.com/ 8289 450946 450678.450695.450699.450946.450977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5184846233497 0 \N \N f 126937148 \N 1 118377766 0 f f \N \N \N \N 450678 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435552 2025-03-12 19:26:37.469 2025-03-29 22:39:53.15 \N Indeed. This is first of many to come in the future, I believe. In particular, bringing quality projects like Boltz to Asian markets, which are relatively slow in terms of Lightning adoption, will be key for the entire ecosystem imo. https://example.com/ 15560 435030 435030.435552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.271122381838147 0 \N \N f 22293533 \N 1 148308846 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 2025-03-19 18:34:34.253 f \N \N \N 0 0 0 0 1 0 0 449517 2025-03-23 12:11:41.304 2025-03-29 22:39:53.15 \N They ask me "how do you rhyme like that?"\nJust sit here for a moment, pet your cat\nSing like a bird, bite like a gnat\nRemember what's important, stack a sat https://example.com/ 1272 449414 449218.449414.449517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31891946194028 0 \N \N f 168106930 \N 2 67379711 0 f f \N \N \N \N 449218 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444144 2025-03-19 17:31:11.437 2025-03-29 22:39:53.15 \N I was surprised to see this given what Powell has said about the labor market... Cant wait for the revision right after the election though that says only 5 jobs were created! https://example.com/ 18306 444071 443593.443614.443774.443787.444071.444144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2726055524203 0 \N \N f 29547489 \N 1 20989993 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 433788 2025-03-11 11:55:26.283 2025-03-29 22:39:53.15 \N ![](https://i.redd.it/nzsx7mr995i91.jpg) https://example.com/ 21202 433555 433555.433788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.55423185780435 0 \N \N f 62050164 \N 2 202309827 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 00:51:47.485 f \N \N \N 0 0 0 0 1 0 0 404130 2025-02-15 15:17:02.374 2025-03-29 22:39:53.15 \N ☑️ morning strength training\n☑️Breakfast - 6 eggs and 2 chicken thighs\n☑️Doom scrolling stacker.news https://example.com/ 21338 404126 403996.404000.404107.404126.404130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.00194669721503 0 \N \N f 166212881 \N 1 160269661 0 f f \N \N \N \N 403996 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 402751 2025-02-14 00:55:01.516 2025-03-29 22:39:53.15 \N Hey @siggy47, @k00b says I have too many sats in my SN wallet. We need to plan another Satsraiser so I can correct that problem. https://example.com/ 705 402682 402003.402682.402751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1360142961206 0 \N \N f 73608893 \N 1 116834974 0 f f \N \N \N \N 402003 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 3718 2022-11-09 01:54:37.002 2025-03-29 22:39:53.15 \N Day 83 of snailposting everyday 'til BTC hits $100k.\n\n__@_'-' https://example.com/ 18734 3490 3490.3718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.932356995388 0 \N \N f 307082081 \N 2 142085760 0 f f \N \N \N \N 3490 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443772 2025-03-19 14:06:45.206 2025-03-29 22:39:53.15 \N Please have a listen to @kr latest episode with Ian Major from Joltz. This is real world integration that the "crypto" "web3" people could only dream about. https://example.com/ 919 443757 443577.443651.443711.443715.443731.443757.443772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.02660436289067 0 \N \N f 734270737 \N 6 8844316 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451257 2025-03-24 13:21:00.616 2025-03-29 22:39:53.15 \N I did a podcast that was released this week. I feel embarrassed because during the conversation, I forgot I was being recorded. My extrovert personality came out, and she was talking about introvert me. https://example.com/ 21672 451223 451177.451223.451257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0802584095183 0 \N \N f 201782814 \N 1 146125108 0 f f \N \N \N \N 451177 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407355 2025-02-17 23:11:22.372 2025-03-29 22:39:53.15 \N From Trash to Tech, a story about Kevin Doe\n\nhttps://youtu.be/XOLOLrUBRBY\n\n https://example.com/ 10608 406482 406449.406482.407355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5465173454166 0 \N \N f 213659561 \N 1 188779639 0 f f \N \N \N \N 406449 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 416841 2025-02-25 22:03:53.891 2025-03-29 22:39:53.151 \N Well i need some sats for real.. https://example.com/ 769 416806 416806.416841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.79763775320002 0 \N \N f 218511847 \N 1 212585823 0 f f \N \N \N \N 416806 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424104 2025-03-03 20:34:19.634 2025-03-29 22:39:53.151 \N Between 20-40k per day and close to a million per month, both unique. When the Mempool is full, it is usually A LOT more traffic. https://example.com/ 9426 423962 423928.423951.423962.424104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8605941638471 0 \N \N f 683981574 \N 6 232789835 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 441712 2025-03-18 08:52:15.869 2025-03-29 22:39:53.152 \N "lets ride surplus robot war dogs up aztec pyramids with grandma this weekend!" https://example.com/ 4292 441695 441695.441712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.7871397619427 0 \N \N f 656377713 \N 7 188628025 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 440313 2025-03-17 05:45:16.314 2025-03-29 22:39:53.152 \N ![](https://www.zapread.com/i/9J7) https://example.com/ 10818 440242 439946.440242.440313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.83710319711086 0 \N \N f 384620280 \N 3 14699473 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450014 2025-03-23 17:38:33.489 2025-03-29 22:39:53.152 \N I don't see how anyone takes what this guy says for real. I mean a few weeks ago he was saying if it were up to him he'd ban Bitcoin. But now he says he'd defend your right to do bitcoin...\n\nObviously he's a liar. So there's that.\n\nI have heard him say bitcoin is for anti-money laundering at least twice now... no one seems to be correcting him. Does he not understand he's got it backwards? Is he just slipping mentally? https://example.com/ 2620 450010 449601.449630.449881.449910.449920.450010.450014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0772056472409 0 \N \N f 427073718 \N 4 66907998 0 f f \N \N \N \N 449601 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403773 2025-02-15 07:50:34.771 2025-03-29 22:39:53.153 \N I totally understand your point and agree that a newbie confronted to this would totally freak out. But that title!\n\nTelling everyone, newbie or not, to "STAY AWAY' from Phoenix is one of the worst advice I can think of when it comes to mobile Lightning. I and many other people have found Phoenix to be the most reliable non-custodial Lightning wallet out there, including under low bandwidth conditions.\n\nRemember DropBit? One day the balances on all those custodial wallets will be gone or seized, and there will be no restoring the wallet on Electrum.\n\nAlternative title ideas:\n- How I Lost All My Funds On Phoenix - But They Were Actually Still There\n- I Thought I Lost My Fund But It Was Just Phoenix BAD UX\n- The UX Issue That Could Drive New Phoenix Users Crazy!\n- Why Phoenix Should Implement On-Chain Sweep\n- Phoenix Should Do Better When It Comes To UX\n- and so on.\n\nNow, you're right to speak up, given that is could indeed be frightening for newbies, and you did pay for a channel that you never enjoyed to use. And I've seen the discussion around the [issue](https://github.com/ACINQ/phoenix/issues/193) being known since 1.5 years, which I agree should probably have been addressed by now. https://example.com/ 7966 403772 402904.403694.403750.403754.403755.403762.403765.403771.403772.403773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4945861546462 0 \N \N f 1095901248 \N 9 184009811 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447142 2025-03-21 16:33:28.581 2025-03-29 22:39:53.151 \N Did the [nostr waitlist](https://stacker.news/items/136355) earlier in the week along with some repo management and automation for all mutiny [code](https://github.com/MutinyWallet). Rest of the week is going to work on an LSP. https://example.com/ 4314 447065 446371.446452.446464.446465.447065.447142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.71027809316936 0 \N \N f 287098554 \N 2 171794320 0 f f \N \N \N \N 446371 \N 0 0 \N \N f \N 2025-03-28 09:51:15.886 f \N \N \N 0 0 0 0 1 0 0 436674 2025-03-13 19:22:15.027 2025-03-29 22:39:53.151 \N I have one myself. I haven't been running it for long. But seems that it can do ~1.5TH/s without overheating even at ~28°C ambient. I haven't measured wallet outlet power yet. But it claims to be doing about 50J/TH.\n\nOf course, it costs enough up-front that you're very unlikely to make a net return over the lifetime of the device even with free power... But they're fun and very easy to setup. https://example.com/ 21042 436661 436549.436658.436661.436674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4343816297053 0 \N \N f 216073012 \N 2 77741684 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 2025-03-20 12:50:19.013 f \N \N \N 0 0 0 0 1 0 0 444786 2025-03-20 08:52:32.285 2025-03-29 22:39:53.153 \N Speaking of such...\n\n@ekzyis Are you tempted to create `/predictions` as a territory? I feel like it could be a cool sub with the remind-me bot. I'd enjoy posting in there about what the future might hold days and decades from now. Could feed your new project too. https://example.com/ 4474 443861 443799.443861.444786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8873792239083 0 \N \N f 425196234 \N 4 73256855 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424988 2025-03-04 14:17:08.302 2025-03-29 22:39:53.154 \N \nThis is how quantum research started...\n\n![](https://m.stacker.news/54413.png)\n\n\nAnd this is how it's going:\n![](https://m.stacker.news/54414.jpeg)\nhttps://www.newscientist.com/article/2399246-record-breaking-quantum-computer-has-more-than-1000-qubits/\n\n![](https://m.stacker.news/54411.jpeg)\nhttps://www.nsa.gov/Press-Room/Press-Releases-Statements/Press-Release-View/Article/3498776/post-quantum-cryptography-cisa-nist-and-nsa-recommend-how-to-prepare-now/\n\n https://example.com/ 5794 424946 424571.424907.424921.424946.424988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.227314590672 0 \N \N f 1280161777 \N 9 239387750 0 f f \N \N \N \N 424571 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428284 2025-03-07 03:40:06.54 2025-03-29 22:39:53.154 \N is there a discovery page of who is on it and what they are offering with their time? https://example.com/ 6602 428205 428205.428284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6580529952562 0 \N \N f 316246601 \N 3 172333393 0 f f \N \N \N \N 428205 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 430857 2025-03-09 13:16:39.062 2025-03-29 22:39:53.154 \N >How might someone memorize their seed if they aren't comfortable with recognizing 12 English words? Is there an alternative BIP39 encoding that's popular in non-english regions?\n\nThis one I can answer. https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md \n\nYou got:\n\nEnglish\nJapanese\nKorean\nSpanish\nChinese (Simplified)\nChinese (Traditional)\nFrench\nItalian\nCzech\nPortuguese https://example.com/ 866 430853 430726.430729.430732.430748.430853.430857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0529186325574 0 \N \N f 235955392 \N 1 177940004 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436415 2025-03-13 14:48:57.873 2025-03-29 22:39:53.154 \N I think the Fifth Circuit rule along the lines of the Supreme Court’s ruling in Looper contra the Chevron rulings. The agencies were not given law-making abilities which are also regulation making abilities beyond the preview of the law made by congress.\nThey cannot make regulations and rules beyond congressional permissions. https://example.com/ 10016 435905 435905.436415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.691070036863 0 \N \N f 170403922 \N 1 120155261 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 2025-03-20 08:09:09.265 f \N \N \N 0 0 0 0 1 0 0 435466 2025-03-12 17:46:04.03 2025-03-29 22:39:53.155 \N > Serious LN dev is hard and time consuming, I no longer have time or resources to keep it up or even maintain what has been developed so far. In my opinion the whole LN protocol is overly complex and is getting worse and at this point can only be developed by very few high profile specialists at a very slow pace.\n\nThat probably sums up his real objection 100%. Lightning is just too complex for his skill set, and he's angry that he's being pushed out of wallet development because of that. Meanwhile Lightning _is_ a success, and adoption of it keeps going up, pushing out on-chain Bitcoin stuff. Which also pisses him off. https://example.com/ 13878 435366 435359.435366.435466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9421422792892 0 \N \N f 187821043 \N 2 78504694 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 2025-03-20 08:59:43.16 f \N \N \N 0 0 0 0 1 0 0 407675 2025-02-18 09:40:20.843 2025-03-29 22:39:53.151 \N It's so awesome that we get to hear about this directly from the guy who maintains it. You guys rock. No apology necessary. Thank you for all your work. Keep it up! https://example.com/ 17091 407620 407619.407620.407675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7720153381722 0 \N \N f 234625305 \N 1 178848488 0 f f \N \N \N \N 407619 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442330 2025-03-18 14:16:11.631 2025-03-29 22:39:53.151 \N I run a Lightning node, it went offline while I was away for 24h. "Lost" 20.000.000 sats of inbound liquidity ( 4 channels closed on me)\n\n AMA so I can vent. https://example.com/ 5444 441695 441695.442330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7145545811374 0 \N \N f 43844480 \N 1 198599010 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448814 2025-03-22 22:16:30.689 2025-03-29 22:39:53.151 \N Imagine the discussion... around that snow ball\nWife: honey, don't go to the PubKey, it will snow all day. Look at what is saying this crystal ball.\nSiggy: Oh yeah? But I have to meet the crazy bitcoiners at the pub....\n\nHe's slamming the door going out to the pub and thinking: damn it I need to change that stupid ball.\nNext day came home with a new ball.\n\nSiggy: honey, here is a new shiny ball for you.\nWife: oh so lovely! But how this ball will tell me how will be the weather tomorrow?\nSiggy: No, this one will tell you when the FED will die, it will predict the Bitcoin future and not that stupid weather. I am tired of snowing all days.\n\n😂😂😂😂😂😂😂\nPS. - @siggy47 please don't be mad of me, is just a joke. https://example.com/ 5597 448805 448805.448814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.9499006072158 0 \N \N f 197507357 \N 1 72051980 0 f f \N \N \N \N 448805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434497 2025-03-12 00:47:44.861 2025-03-29 22:39:53.151 \N It could be my kind eyes and disarming smile. \n\nOr it could be that most of my blood is made of steak at this point. https://example.com/ 14650 434469 434469.434497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5809823027482 0 \N \N f 321609675 \N 2 243938758 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 2025-03-19 04:45:20.028 f \N \N \N 0 0 0 0 1 0 0 436040 2025-03-13 09:08:55.124 2025-03-29 22:39:53.151 \N Steve Wozniak shared a related quote you might like from the same 1984 Hackers Conference…\n\n“Information should be free but your time should not”\n\nhttps://medium.com/backchannel/the-definitive-story-of-information-wants-to-be-free-a8d95427641c#.y7d0amvr3 https://example.com/ 18265 436019 435907.436019.436040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.779866731023 0 \N \N f 240025192 \N 2 190089103 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 2025-03-20 07:30:21.193 f \N \N \N 0 0 0 0 1 0 0 451169 2025-03-24 12:29:29.423 2025-03-29 22:39:53.151 \N Another misconception about SN.\n![](https://m.stacker.news/53290) https://example.com/ 10536 450805 450805.451169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9566650665537 0 \N \N f 619339943 \N 3 15853454 0 f f \N \N \N \N 450805 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 428194 2025-03-06 23:39:41.988 2025-03-29 22:39:53.151 \N * https://en.wikipedia.org/wiki/Central_bank#Bank_of_England\n* https://www.bankofengland.co.uk/-/media/boe/files/quarterly-bulletin/2014/money-creation-in-the-modern-economy.pdf\n* https://stacker.news/items/48402\n* https://stacker.news/items/46666\n* https://stacker.news/items/46585\n* https://stacker.news/items/37164\n* https://stacker.news/items/12138\n* https://www.amazon.com/Blood-Money-Civil-Federal-Reserve/dp/1589803981 https://example.com/ 9438 428174 427934.428174.428194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0860991808482 0 \N \N f 193914083 \N 1 120165005 0 f f \N \N \N \N 427934 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 216481 2024-08-18 09:53:36.753 2025-03-29 22:39:53.151 \N Sounds like a tale from thousand and one nights :)\n https://example.com/ 21044 216272 215973.216272.216481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7355942752507 0 \N \N f 743500127 \N 4 111172471 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444138 2025-03-19 17:27:12.094 2025-03-29 22:39:53.151 \N ![Boating accident](https://i.imgflip.com/7a4zwt.jpg)\n\nWho knew? Everyone has a boat :). https://example.com/ 1712 443794 443794.444138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8837206088132 0 \N \N f 246944565 \N 1 214137396 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 436186 2025-03-13 11:22:33.443 2025-03-29 22:39:53.151 \N The dude ⚡️💊 me. My fav podcast by far at the moment. https://example.com/ 21523 436175 436163.436175.436186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.4809536822808 0 \N \N f 176270325 \N 1 110313994 0 f f \N \N \N \N 436163 \N 0 0 \N \N f \N 2025-03-20 11:40:33.678 f \N \N \N 0 0 0 0 1 0 0 188675 2024-06-23 21:37:20.3 2025-03-29 22:39:53.151 \N **Sharing tips on testing**\n1. Use any LN wallet to log in first - you can use any LNURL-auth capable wallet.\n2. Use https://faucet.mutinywallet.com/ "the Bolt11 Payment Request" to pay any invoices generated from delphi.market.\n\n*Feedback*\n\n- site background color\n\nMaybe it would be nice to have the option of choosing light or dark mode? I like the current color, but it hurts my eye to read it.\n\n- onboarding process\n\nNow it's login first then able to create, how about having the option to fill everything first and then require to login? maybe some people want to see how it works before logging in.\n\nthat's for now 🫡 https://example.com/ 7966 188673 188308.188380.188387.188390.188396.188670.188673.188675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5496367887018 0 \N \N f 39042331 \N 1 144697495 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 403809 2025-02-15 08:29:42.944 2025-03-29 22:39:53.151 \N I think taxes and potential consideration as a money transmitter are drawbacks. https://example.com/ 8416 403808 402904.403694.403750.403754.403755.403762.403765.403771.403772.403773.403776.403778.403779.403788.403798.403806.403808.403809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.17735935934341 0 \N \N f 97141801 \N 1 46872100 0 f f \N \N \N \N 402904 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 421540 2025-03-01 18:22:30.078 2025-03-29 22:39:53.151 \N the difficulty in dumping those forks was what kept me from doing it at all - i suppose i 'lost' the chance to increase my holding, but i don't really regret it as, like you say, swapping them out discreetly wasn't trivial, and was beyond me - i remember people publicly crowing about it and thinking how they were doxxing themselves - i'm glad you were able to capitalise on the trouble the forkers caused - all in all i came through those weird times untouched by the drama, so i'm at peace. https://example.com/ 21103 420895 420895.421540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5929688495928 0 \N \N f 63146149 \N 1 18811541 0 f f \N \N \N \N 420895 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442258 2025-03-18 13:45:40.741 2025-03-29 22:39:53.151 \N That's awesome! You can have a similar "Days in office" count for that. https://example.com/ 18743 442138 442084.442109.442124.442138.442258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.709801016695728 0 \N \N f 192325401 \N 1 51430794 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 454236 2025-03-26 10:10:59.488 2025-03-29 22:39:53.152 \N Are there any books that have meaningfully changed your view of the world? https://example.com/ 714 454203 454203.454236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0611046258786 0 \N \N f 473211769 \N 3 28438066 0 f f \N \N \N \N 454203 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 447218 2025-03-21 17:42:11.421 2025-03-29 22:39:53.152 \N Patience is the key to happiness. https://example.com/ 1970 446937 446937.447218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.71693933041897 0 \N \N f 260743719 \N 2 106939530 0 f f \N \N \N \N 446937 \N 0 0 \N \N f \N 2025-03-29 08:35:04.237 f \N \N \N 0 0 0 0 1 0 0 434538 2025-03-12 02:12:20.704 2025-03-29 22:39:53.153 \N not sure how many stackers read the saloon yesterday, I posted that Darth still watching [SNL](https://zap.stream/naddr1qqjxvwp3xpjrgcfh95uxxwpk956rwdrz943rsery95crydn9xccrzeph8pjn2q3qeaz6dwsnvwkha5sn5puwwyxjgy26uusundrm684lg3vw4ma5c2jsxpqqqpmxwjf05qs), which means @Darthcoin is still watching us!\n\n![darth.png](https://m.stacker.news/9999)\n\nhttps://i.postimg.cc/5NfVqQN3/home-office-choke.jpg\n https://example.com/ 5759 434177 433844.434177.434538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.16399733074031 0 \N \N f 145552792 \N 2 177177848 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 2025-03-19 09:24:13.425 f \N \N \N 0 0 0 0 1 0 0 447264 2025-03-21 18:27:53.681 2025-03-29 22:39:49.151 Royalty-Free Bitcoin Images I have been producing all sorts of blog content for years and almost all of those articles in recent years have been bitcoin content. When it comes to finding useful bitcoin images to use in my articles, almost all royalty-free image services have nothing but those stupid physical coins for bitcoin images. [Here is an example](https://images.unsplash.com/photo-1518546305927-5a555bb7020d?q=80&w=2069&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) of what I am talking about. \n\n## Creating Quality Royalty-Free Bitcoin Images\nI have been using [Unsplash](https://unsplash.com/@jon_hodl) for all of my images for a few years now because I love their sort of freemium "open source attribution" model. They provide a platform for photographers to show their photography skills, give away their work for absolutely free, grow their following, and potentially get hired for photography jobs.\n\nSince I can't stand the lack of quality bitcoin images that are available online, I have decided to create bitcoin images and release them to the entire world via the [Unsplash license](https://unsplash.com/license). It's my hope that bitcoin content producers all around the world can use my bitcoin images to build and create whatever they want without worrying about paying any sort of royalty. As far as the price of bitcoin images is concerned, it's a race to the bottom. \n\nIMHO, bitcoin is best visualized as nodes, miners, private keys, seed words, orange pills, 0s & 1s, and anything else that the pleb network can come up with. Bitcoin is definitely NOT a physical coin with a "B" embossed on it. \n\nTo get some of my first bitcoin images published, I purchased a broken S9 just so I could take pics of the hash boards, upload them to Unsplash, and let anyone in the world use them without having to pay me a royalty. I will upload more in the not so distant future but for now here is [my collection of bitcoin photos](https://whatsbitco.in/Unsplash-Jon-Hodl).\n\nI want this to help people like you to have access to quality bitcoin images at zero cost. The more images I am able to publish (and other bitcoiners who want to publish free photos), the more content that we can all use to produce quality bitcoin content like featured bitcoin images, art, etc.\n\nHere is an example of what I am talking about. This is a blog post by Foundation Devices: https://foundationdevices.com/2023/06/make-12-words-the-standard/\n\nThey were able to write this article and use [my seed phrase image](https://unsplash.com/photos/a-pile-of-black-and-gold-bullets-UJIXltJKWjo) without needing to ask me for permission to use the photo or attribute credit to me. \n\nWhat sorts of images do you need or would you like to see more of? I will do what I can to produce them and publish them on Unsplash so we can drown out all of the images of silly bitcoin "B" coins.\n\nIf you want to help fund more quality bitcoin images, you can just zap some sats here on Stacker news or you can donate here on [my Geyser page](https://geyser.fund/project/jonhodl) and let me know what you want more of. \n\nEven better, if you're a bitcoiner who think you can create quality bitcoin images, please join me and publish some of your own royalty-free bitcoin images. \n\nThanks in advance to anyone who contributes in any way they can. \n \N 5825 \N 447264 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.2508805278043 0 \N \N f 1259118000 \N 9 235269582 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-28 12:22:34.15 f \N \N \N 0 0 0 0 2 0 0 402188 2025-02-13 15:43:10.522 2025-03-29 22:39:49.151 Phoenix Wallet announces support for new LSP protocol (bLIP 35) \N https://xcancel.com/PhoenixWallet/status/1844377194489053555#m 14465 \N 402188 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 19.1277892523138 0 \N \N f 2386226505 \N 20 180978903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 9 0 0 433950 2025-03-11 14:30:00.374 2025-03-29 22:39:53.151 \N My dream is to be useful to as many people as possible. SN is just the tip of that dream's spear (and it still doesn't have much of a point yet tbf). I didn't have the resources or the capability to create SN when I had this dream. After mining ore and learning to smelt and smith and building failed spear after failed spear ...\n\nSN, itself, is a stream of aha moments. I was originally inspired to create this spear tip by @RyanTheGentry describing @paul's Sphinx Chat at an Austin BitDevs, "Aha! Bitcoin micropayments can be used to solve digital commons problems! Oh, I've been wanting a Hacker News for bitcoin! BitDevs is like a Hacker News in person and it's amazing! Hacker News is a commons!"\n\nMy dream isn't nearly satisfied. I'm pretty sure satisfying dreams is about continually acting on things that may satisfy the dream though. Thinking about the dream is part of acting on it but it's not the cause of the dream happening. https://example.com/ 20481 433435 433435.433950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.78992934108619 0 \N \N f 191052910 \N 1 172560804 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 424279 2025-03-03 23:48:08.991 2025-03-29 22:39:53.151 \N The Network State by Balaji is on tap for me this weekend https://example.com/ 2195 423955 423955.424279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4678668803563 0 \N \N f 233701558 \N 1 51086555 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435116 2025-03-12 13:28:30.291 2025-03-29 22:39:53.153 \N Good stuff as usual, David. Thank you for curating privacy related content! https://example.com/ 2961 435018 435018.435116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8373835909371 0 \N \N f 12107431 \N 1 184598271 0 f f \N \N \N \N 435018 \N 0 0 \N \N f \N 2025-03-19 06:57:06.663 f \N \N \N 0 0 0 0 1 0 0 402233 2025-02-13 16:13:41.622 2025-03-29 22:39:53.154 \N Right back at you! https://example.com/ 6164 402134 402091.402134.402233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7601834652628 0 \N \N f 89413456 \N 1 190773802 0 f f \N \N \N \N 402091 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401346 2025-02-12 23:05:38.01 2025-03-29 22:39:53.154 \N Finally got graphene OS on my new pixel thanks to @siggy47 post \n\n(https://stacker.news/items/194904/r/BlokchainB)\n\nBetween stacker news and the graphene forum I was able to complete the install using Linux! Feeling great!! Thanks @siggy47 https://example.com/ 5646 401283 401283.401346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.921161437734 0 \N \N f 879730564 \N 8 29233547 0 f f \N \N \N \N 401283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 455374 2025-03-27 00:53:46.299 2025-03-29 22:39:53.154 \N In a way most stackers are getting paid by SN. https://example.com/ 7978 455283 455283.455374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2822015513862 0 \N \N f 217521949 \N 2 211922392 0 f f \N \N \N \N 455283 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 443339 2025-03-19 09:17:31.489 2025-03-29 22:39:49.151 Fedi Launch Event ![](https://m.stacker.news/43908) https://www.fedi.xyz/ 5519 \N 443339 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.2385254255437 0 \N \N f 668722135 \N 5 223706949 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-26 06:28:21.949 f \N \N \N 0 0 0 0 2 0 0 433435 2025-03-11 05:04:05.146 2025-03-29 22:39:49.151 Musk's Neuralink shows first brain-chip patient playing online chess # [Musk's Neuralink shows first brain-chip patient playing online chess](https://www.reuters.com/business/healthcare-pharmaceuticals/neuralink-shows-first-brain-chip-patient-playing-online-chess-2024-03-21/)\n\n> March 20 (Reuters) - Elon Musk's brain-chip startup Neuralink livestreamed on Wednesday its first patient implanted with a chip using his mind to play online chess.\nNoland Arbaugh, the 29-year-old patient who was paralyzed below the shoulder after a diving accident, played chess on his laptop and moved the cursor using the Neuralink device. The implant seeks to enable people to control a computer cursor or keyboard using only their thoughts.\n>\n> ### [... read more](https://www.reuters.com/business/healthcare-pharmaceuticals/neuralink-shows-first-brain-chip-patient-playing-online-chess-2024-03-21/) https://www.reuters.com/business/healthcare-pharmaceuticals/neuralink-shows-first-brain-chip-patient-playing-online-chess-2024-03-21/ 761 \N 433435 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 16.4095918048192 0 \N \N f 363613714 \N 2 214225957 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435136 2025-03-12 13:44:28.455 2025-03-29 22:39:49.151 Satistics feature and enhancement fishing As I put the final touches on adding cowboy credits, I'm finding I'll need to enhance/modify/overhaul the [satistics](/satistics) page. So, I figured I'd query you all for changes I can weave in as I work on it.\n\n1. Is there anything you wish it did that it currently doesn't?\n2. Is there anything you think it does poorly that it could do better?\n\nThanks! \N 15556 \N 435136 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 5.96997632107605 0 \N \N f 1188745219 \N 6 105815299 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 10:38:04.201 f \N \N \N 0 0 0 0 4 0 0 238583 2024-09-16 14:01:10.433 2025-03-29 22:39:49.152 What would Satoshi Airways look like? I'm taking a flight today and dreading sitting for hours with my scapula internally rotated.\n\nOn the first flight in, seated next to two likewise metabolically suffering men, I was dreaming of an airplane that had 1/3 the seats even if it meant the ticket cost was 50% higher, an airplane with only seats that are first class width.\n\nThat's at least one thing I think Satoshi Airways would have. What's one thing you'd like Satoshi Airways to have? \N 669 \N 238583 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.0879830590734 0 \N \N f 187695334 \N 2 182158501 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-20 04:33:20.688 f \N \N \N 0 0 0 0 1 0 0 434435 2025-03-11 22:14:40.647 2025-03-29 22:39:53.152 \N A road out. Cities are shitcoins. https://example.com/ 2711 434411 434278.434298.434310.434411.434435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.649729620071362 0 \N \N f 748242143 \N 7 184402570 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 2025-03-18 18:56:58.709 f \N \N \N 0 0 0 0 1 0 0 321012 2024-12-06 19:41:13.629 2025-03-29 22:39:53.152 \N Garages are definitely cool. Mostly because It has been helping me to hide a lot of secrets. Secrets like....\nTo be continued...\nI must tell ya they are so big that even the anon. here at SN isn't allowing me to reveal. But I will. https://example.com/ 20817 321001 320825.321001.321012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.269941520215 0 \N \N f 155155711 \N 1 186908710 0 f f \N \N \N \N 320825 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410235 2025-02-20 11:30:02.28 2025-03-29 22:39:53.152 \N Read the readme of the repo. It’s literally 2 steps to get started:\n\n1. Clone repo and cd to it\n2. run `./sndev start` https://example.com/ 18525 409999 408874.409910.409999.410235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.92246844689306 0 \N \N f 206421746 \N 1 198938573 0 f f \N \N \N \N 408874 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434737 2025-03-12 07:44:42.584 2025-03-29 22:39:53.152 \N Day 2 of snailposting till BTC hits $100k.\n\n__@_'-' https://example.com/ 21575 433772 433555.433772.434737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0511727665348 0 \N \N f 40524004 \N 1 111192252 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 2025-03-19 03:45:46.181 f \N \N \N 0 0 0 0 1 0 0 442135 2025-03-18 12:57:46.826 2025-03-29 22:39:53.152 \N The fact that it can be extended with new functionality, like lightning tipping, badges, realtime ephemeral chat, typing notifications, likes/reactions. retweets, etc. there are all different note types on the network. There is so much yet to explore in terms of what nostr could do for the decentralized web. https://example.com/ 16193 441803 441695.441712.441750.441801.441803.442135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6805989031093 0 \N \N f 278924252 \N 3 99304757 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 408257 2025-02-18 16:54:31.317 2025-03-29 22:39:53.152 \N Gosh if I am being honest with myself I feel I have changed more in the past 5 months than in any other point in my life. \n\nBut yes totally different guy than in 2018. \n\nHopefully both are for the better. https://example.com/ 20816 408255 408255.408257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.35635486939299 0 \N \N f 5504121 \N 2 25828680 0 f f \N \N \N \N 408255 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 444537 2025-03-20 01:35:19.588 2025-03-29 22:39:49.152 Priced In Bitcoin \N https://www.pricedinbitcoin21.com/landing 8926 \N 444537 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 24.6836871108811 0 \N \N f 53472221 \N 1 151328322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410507 2025-02-20 14:06:50.979 2025-03-29 22:39:49.152 Zeus Pay released to all alpha users Announced on Twitter and Nostr: https://x.com/zeusln/status/1714017347676131397?s=46\n\nhttps://damus.io/note1dumrm5tst7nd2ckasjdh49w0ma2qc0lr2wn0ga280xc9c6ekl0ps07v7lg\n\nJust got my username and excited to try it out. Looks like they are using [Zaplocker](https://github.com/supertestnet/zaplocker#four-problems-zaplocker-solves) on the backside. I used the embedded LND node nearly exclusively at Pacific Bitcoin (since Phoenix’s fees are really high now) and it worked great. \n\nSign up to test it [here](https://olympusln.com/).\n\nMore info about Zeus on their [github page](https://github.com/ZeusLN/zeus)\n\nI’ll include some screenshots of the functionality when I get home from work.\n\nI have no affiliation with them other than I am a user of their software and have donated to them. All zaps go to founder of Zeus, @evankaloudis. \N 7125 \N 410507 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 24.5589239941174 0 \N \N f 688347216 \N 6 138129809 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 92423 2023-11-30 00:23:50.054 2025-03-29 22:39:49.152 MONEY CLASS OF THE DAY: Money and the Purpose of Corn Popular culture extension of _this_ MONEY CLASS conversation (https://stacker.news/items/737272/r/denlillaapan) —the **Nominal and the Real**. \n\nI keep coming back to this concept over and over: The difference between the monetary veil drawn over our economic world and the economic world itself. Of course, they can't readily be separated and the current economic world _wouldn't be what it is_ in the absence of a global, semi-successful monetary technology coordinating it all. The _monetary unit_ is not a thing; money is a value language that coordinates human activities (https://stacker.news/items/780358/r/denlillaapan). Even a crappy one (fiat, run by inflation-targeting central bankers under a New-Keynesian, "data-driven" intellectual paradigm) does this job acceptably well. \n\nWaving a wand and wishing money away would _instantly_ retract our economies into something barely above subsistence farming. \n\n---\n\nWhile precious few understand how the monetary system works, or the problems it so elegantly helps us solve, investigating it is one of the most hands-on of all economic questions—anyone in a market economy can relate to it, since they have to operate it every day. \n\nAny society more economically complicated than a family or small tribe finds a way to settle their affairs in an indirect fashion: by credit, by mental barter, or through the crude handing over of a reasonably durable item. If we don’t, we can’t operate economic ties much larger than that of a household. \n\nThat's why I _love_ seeing **money portrayed in fictional worlds**. The author or moviemaker either doesn't get it at all and so shoves it off-screen or off-page, or taps into the real-world usage they may or may not understand very well and thus re-create the wonders of our monetary lives. \n\nI wrote some years ago about how money was portrayed in _The Hobbit_ movie: \n\n![](https://m.stacker.news/65921)\n\nA [wonderful piece](https://thedailyeconomy.org/article/the-hobbit-teaches-that-we-cant-eat-money/) I come back to over and over. In a similar vein, girlfriend—not exactly a [hardcore Bitcoiner](https://stacker.news/items/755878/r/denlillaapan) or economist, or having any interest in what money _does_ apart from paying her bills and getting her nice items—recently read a 1930s novelist that feature a banker/store manager whose ledger runs the village economy. (Money as a ledger, and who's in control of it, is the core message of [Lyn Alden's _Broken Money_, a book I helped work on](https://www.lynalden.com/broken-money/).) Never had as many good conversations about money and banking with her full attention as when discussing that novel. \n\nSo let's talk about the economy of the economy of Tolkien's world (well, the Hobbit filmmakers but whatever) and all the gold in the Lonely Mountain, Erebor: \n\n> Michael Noer at _Forbes_ estimates the dragon’s wealth at some $62 billion, enough to place you in the top seven wealthiest people of our world. We might quibble over numerical details and how plausible Noer’s implied exchange rate is, but the point still stands: there’s an awful lot of gold and jewelry in that mountain. \n\nFrom the human de facto leader Bard (“On behalf of the people of Lake Town, I ask that you honor your pledge—a share of the treasure so that they might rebuild their lives,”) to the Elf leader Thranduil ("I came to reclaim something of mine...there are gems in the mountain that I too desire"), they all desire the mountain's “wealth”, yet the audience never quite learns what for. After the dragon had destroyed the entire human settlement and most of the capital involved in the humans' very basic lines of production, **there is nothing left to buy with this treasure of gold.** YOU CAN'T EAT GOLD. \n\nBard speaks eloquently about the humans having to rebuild their lives and take shelter from the cold, but _gold_ —if you allow me that [well-used pun](https://www.youtube.com/watch?v=YHjYt6Jm5j8&pp=ygUXYml0Y29pbiBleHBsYWluZWQgZnVubnk%3D)—doesn't do that: blankets and wood for fire and houses and freaking diesel generators (if Middle Earth would have such wonders) does that. \n\nEconomically speaking, the humans’ decision in _The Battle of the Five Armies_ to march toward Erebor seeking part of the treasure after they’ve lost their homes, equipment, fishing nets, and boats makes no sense at all. Sure, the mountain contains endless quantities of gold that they're somehow owed, **but how does that help them regain some semblance of living standards when the equipment and fishing nets and boats that sustained them remain destroyed?**\n\nAdam Smith, father of modern economics and author of the 1776 _The Wealth of Nations_ has these wonderful lines in Book II: \n\n> The gold and silver money which circulates in any country, and by means of which the produce of its land and labour is annually circulated and distributed to the proper consumers, is […] **all dead stock**. It is a very valuable part of the capital of the country, **which produces nothing to the country.**\n\nAnd he is right: money doesn’t feed our bellies or heats our homes. If you think about all the things that happen, either in a rudimentary village-type economy or a global, hypermodern world, the money sloshing around doesn’t seem to do anything. It **moves and shifts but doesn’t heat or create.** That, I believe, is the source of why it's regarded so poorly among many market-skeptic, left-leaning people. \n\nBecause the purpose of production—another Adam Smith quote, bonus 1,000 sats if you figure out what Smith says the purpose of production _is_—or indeed of the lives most humans want to live, not hoarding gold coins. Mercantilists of ages past used to believe that, and children of today watching Scrooge McDuck quickly discover it; even J.K. Rowling’s enchanted world of Harry Potter got this hopelessly wrong, where the wizard bank Gringotts is stuffed with gold in every vault from an altogether questionable real economy. \n\nCue most academic conversations about money up and down the centuries: the cost of its production[^1], the inability to flexibly [^2][^3] make more of it, who's in control of the presses or mines, and for what purposes may they use them?\n\nWhat money _does_ provide is this magical, invisible, crazy technologically advanced thing of coordinating economic activities. It provides the avenue for the price signals to transmit, for other neighboring lands to ship in real goods and services to the humans of Lake Town now that they have gold, for the humans themselves to produce things they know how to do and specialize in those lines of production they have available (fishing, carpentry, weaving, hunting), and trade their individual surplus among themselves. ("...[turns what you make best into what you want](https://youtu.be/rw7PUrgU3N0?si=6IQHh7K7qZESTYxM&t=113)")\n\n\nMoney is merely an intermediary between production and consumption that is **separated by time, place, and between individuals.** You’re not paying your grocery bill or rent with some abstract device; you’re producing value for your employer and handing over some embodiment of that value to the grocer or landlord. You’re **paying for your bread and butter, not with imaginary constructs or digital make-belief but with the sweat of your labor**—just with an intermediary step. This is why economists going back at least to Irving Fisher think of money as a “veil” of underlying economic transactions. The real and the nominal. \n\nMoney is the conveyer belt on which production moves; it is the way in which products get circulated and distributed, as Smith so elegantly states. Yet it itself produces nothing. Money is all dead stock that “while it circulates and carries to market all the grass and corn of the country, produces itself not a single pile of either.” (Google this Adam Smith/_Wealth of Nations_ quote and the first result is a [Paul Krugman rant against Bitcoin](https://krugman.blogs.nytimes.com/2013/04/12/adam-smith-hates-bitcoin/) from 2013—LOL!)\n\nAnd that is its point and purpose: the ₿ corn is there to let the actual corn flow. \n\n\nThat's today's not-so-little money class, \nPeace\n/J\n\n\n[^1]: https://bitcoinmagazine.com/culture/bitcoin-and-gold-energy-debate\n[^2]: https://authory.com/JoakimBook/On-Price-and-Output-Volatility-How-Bad-is-Bitcoins-Flaw-a6eb3c429326b48c294330bfbaf754381\n[^3]: https://www.cato.org/publications/policy-analysis/new-yorks-bank-national-monetary-commission-founding-fed#the-asset-currency-movement\n \N 14669 \N 92423 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7324085560713 0 \N \N f 45526817 \N 1 61063163 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 430568 2025-03-09 10:29:07.667 2025-03-29 22:39:53.152 \N > Reimplementing Bitcoin Core is generally a bad idea.\n\nI disagree strongly. Implementation follows specification, not the other way round. Bitcoiners forgetting their principles about decentralization when it comes to Bitcoin-core is just cognitive dissonance.\n\n\nThese are just child-illnesses. With a few more years of lifetime the Bitcoin ecosystem will be rocksolid. https://example.com/ 19576 430549 430549.430568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.94021436220885 0 \N \N f 291679361 \N 2 78996319 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407944 2025-02-18 13:34:44.748 2025-03-29 22:39:53.152 \N Day 114 of snailposting everyday 'til BTC hits $100k.\n__@_'-' https://example.com/ 4083 407469 406399.407380.407469.407944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6712610199222 0 \N \N f 959055938 \N 7 138047138 0 f f \N \N \N \N 406399 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 443052 2025-03-19 01:37:25.61 2025-03-29 22:39:53.152 \N Came across it in 2011.\nBought some. Sold it.\nJust wasn't interested.\nI didn't understand how bad the fiat ponzi was.\nUntil COVID. https://example.com/ 1801 443001 442163.442234.443001.443052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3508450653563 0 \N \N f 172764679 \N 1 47615360 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451340 2025-03-24 14:03:39.057 2025-03-29 22:39:53.152 \N 777777 https://example.com/ 18923 451330 432817.451324.451330.451340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3082312661841 0 \N \N f 218331287 \N 1 200387304 0 f f \N \N \N \N 432817 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 437993 2025-03-15 04:57:03.924 2025-03-29 22:39:49.152 Would you or do you smoke pot in front of your children? I was confronted by my kids mother and she asked me if I smoked weed in front of our son. The truth is I have. He is 15 years old. I am of the opinion that being honest with our children helps us to be a better guide than gaslighting and hiding the truth. I have had many conversations with both of my teen kids about cannabis. We have talked about how it can be a great alternative to western medicine at times. We have talked about the power of intention when working with substances like cannabis. We have talked about the stigma that exists with something like cannabis even though it is legal. Is alcohol better? I really don't think so but I am sure that is up for debate. We have also talked at length about the traps that come with abuse of it. I have been vulnerable with them about my own addiction issues at times and where it has been a crutch for me. I believe our children learn more when we are vulnerable and seek to guide as opposed to attempting to control them. We were all 15 at one time and most of us have considered smoking pot and had it around us somewhere. At the end of the day, a young adult will make their own decisions anyways. I believe it is better to be an ally over an adversary. I would love to hear from others on here on how they would approach this.\nThank you for reading. 💚 \N 5746 \N 437993 \N \N \N \N \N \N \N \N news \N ACTIVE \N 7.88034497420913 0 \N \N f 142213350 \N 1 229142190 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 448029 2025-03-22 11:01:45.613 2025-03-29 22:39:49.152 I'm Roy Sheinfeld, the CEO & founder of Breez, in love with the Lightning economy, AMA!!! ⚡ This is Roy Sheinfeld (@roy) and I'm the CEO and Co-Founder of Breez where we create a n infrastructure for non-custodial, P2P Lightning economy.\n\nI've also came up with LSPs and helped with podcasting 2.0.\n\nGo ahead, AMA! \N 11523 \N 448029 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.1649854498266 0 \N \N f 777021746 \N 8 159005195 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-29 08:46:55.466 f \N \N \N 0 0 0 0 5 0 0 420186 2025-02-28 14:37:23.895 2025-03-29 22:39:49.152 Weekend Book Recommendations What books are you all reading this weekend? Any topic counts! \N 17953 \N 420186 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 22.5765551014086 0 \N \N f 248770682 \N 1 73959598 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 407898 2025-02-18 12:58:24.489 2025-03-29 22:39:49.152 Gen Z Falls for Online Scams More than their Boomer Grandparents Do Source: https://www.vox.com/technology/23882304/gen-z-vs-boomers-scams-hacks\n\nAs it turns out, it takes a little more than raising a generation with computers to teach them how to be tech literate. In addition to raising them with computers, you also have to not coddle your userbase. A whole generation raised on limewire and installing programs from random websites, learning that softonic is synonymous with virus, and how to read the extension of a file name to make sure it is a music file and not an executable (Despacito.mp4.exe would run as an executable, not play "Despacito") and that certain files should have a certain file size and you can even predict without doing any math, just pure experience of seeing what file sizes normally are about what size a video or audio file of certain quality (1080p? 720p?) and length should be and if its too large, its probably a virus (or its one of those cool files where you change the extension of an image file and it has a song in it when changed to mp3) Again, looking at extensions (and file hashes) helps here.\n\nSo what does gen Z have instead? The Apple/Google play store generation\n\nhttps://imgprxy.stacker.news/TZEOF_WQcUbrctY_9Lyqz_GbmtE13Rx9vQO0hLISiLc/rs:fit:600:500:0/g:no/aHR0cHM6Ly9tZWRpYS50ZW5vci5jb20vVjVsQ0J5VFFQUFlBQUFBQy9wcmVxdWVsLXBhZG1lLmdpZg\n\nOh the google play store. The place where you can install anything and you know its going to be safe (except for when it isn't: [36 Malicious Android Apps Found on Google Play, Did You Install Them?](https://www.pcmag.com/news/36-malicious-android-apps-found-on-google-play-did-you-install-them) but of course that's just silly old android and silly old android problems. \n\nEveryone knows Apple is so much better. [How 18 Malware Apps Snuck Into Apple's App Store](https://www.wired.com/story/apple-app-store-malware-click-fraud/)\n\nNonetheless, perception is reality and the feeling that the app store is safe is enough for people to let their guards down. The deeper problem though, is that this paternalism, keeps freedom away and free market competition at bay. [Apple Rejects Bitcoin Wallet Zeus a Day After Threatening to Delist Damus](https://finance.yahoo.com/news/apple-rejects-bitcoin-wallet-zeus-211310831.html)\n\nBut hey, maybe we're just talking about a generation that doesn't have experience with taxes so they don't know the IRS doesn't call your personal number. Maybe this generation is just in the hardening phase. Maybe this is where they learn all of their lessons and when they're older these statistics will look much different....I'm holding out hope, because its that same process, being exposed to scams and learning from them, that will enable this generation and the ones that come after them, to use Bitcoin without being scammed too. \N 20370 \N 407898 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.2457297783354 0 \N \N f 413411706 \N 3 202278438 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 3 0 0 443434 2025-03-19 10:55:55.997 2025-03-29 22:39:53.152 \N As an equal opportunity downer, I have to challenge Super's use of language here, this is not an asynchronous payment any more than the K1 in a LNURL-Withdraw link or trusted shitcoin swap is.\n\nSince the receiver must come online to sweep the state, it's not asynchronous, it's a promise not unlike any centralized solution.\n\nThe internet does not work asynchronously, it works through re-attempts and re-signaling. https://example.com/ 20137 443429 443372.443390.443427.443429.443434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4939258094216 0 \N \N f 74083014 \N 2 114106206 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 2025-03-26 06:42:08.78 f \N \N \N 0 0 0 0 1 0 0 447235 2025-03-21 17:54:15.687 2025-03-29 22:39:53.152 \N > if the number of economically relevant nodes is reduced due to centralization, and most Bitcoin users are priced out of self custody, we should expect that the "governance" of the protocol will become more centralized and fragile. https://example.com/ 21600 446954 446954.447235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3418291738391 0 \N \N f 166132248 \N 2 219829580 0 f f \N \N \N \N 446954 \N 0 0 \N \N f \N 2025-03-28 12:28:33.394 f \N \N \N 0 0 0 0 1 0 0 2002 2022-10-01 13:28:14.209 2025-03-29 22:39:49.152 The Loss of Shared Facts One of the biggest problems with the corporate press's relentless propaganda is the destruction of a shared set of facts about the world. Without common ground on premises, it's not possible for people to reach agreement, even if they are all acting in good faith.\n\nBrett and Heather discuss this problem briefly in the following clip, but you can find better examples on Timcast IRL, if you're interested.\n\n[Trump and the destruction of a shared set of facts (from Livestream #204)](https://odysee.com/@DarkHorsePodcastClips:b/trump-and-the-destruction-of-a-shared:1?r=8T2xqWjtafHWYGxQBSsrbw1wQPm7sWRq)\n\nI'm curious if anyone has good ideas about how to build consensus (and how to do so in the general vicinity of the truth).\n\nI've thought about the problem of honest media for a while, but it hasn't gotten me very far. The core of the problem is that people don't demand honesty from media. People prefer to have their views reinforced over being challenged and they're more interested in scary stuff than calming stuff. Those forces lead market driven media to be biased (not to mention the problem of catering to advertisers) and obviously anyone operating non-market media will inject their own agenda. \N 19199 \N 2002 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.3566790642261 0 \N \N f 276518053 \N 3 155547342 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 1904 2022-09-28 14:34:31.31 2025-03-29 22:39:53.153 \N > I wonder if OSS donations via BTC could become a trojan horse? If you complain about not getting funded, would you complain about the currency? Or would you start to get interested? \n\nI love this idea. My take is that anything that promotes 'real' use, even if the use only lasts for the handful of minutes that it takes to cash out using Strike or Cash app, is super high leverage, way higher than somebody just buying $100 of btc in case it 10x again someday. The ripples that it sends through the universe, the lines of force that unfold in the ecosystem.\n\nMy main thing is not the money but the mental load. Decisions are expensive! I don't have the expertise to evaluate someone's worthiness of a contribution; and it also seems futile, much like some people feel about voting -- does giving $5 to some random dude really matter? And should I allocate to a known star, or to some unknown?\n\nI think this is highly relevant to SN, actually. That's one of the really ripe opportunities for economic analysis.\n\nI think what Chaincode, Brink, Spiral grants, etc., do is really really valuable for this reason. Assess, curate, encourage. But probably not a solution for the broader problem. https://example.com/ 965 1903 1903.1904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62231778329957 0 \N \N f 488399572 \N 5 31159388 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 410700 2025-02-20 16:14:44.623 2025-03-29 22:39:53.153 \N It comes out super early for PST folk. Maybe push it back an hour or two?\n https://example.com/ 15200 410016 410016.410700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1097421681386 0 \N \N f 42148481 \N 1 152155460 0 f f \N \N \N \N 410016 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 438612 2025-03-15 17:55:20.008 2025-03-29 22:39:53.153 \N Don't use the default. You can adjust the collaborator fees under settings, there is quite a bit of liquidity with very low fees, even zero. https://example.com/ 6260 437973 437966.437970.437973.438612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.055670068859 0 \N \N f 158783577 \N 1 177770758 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422926 2025-03-02 19:30:12.034 2025-03-29 22:39:53.153 \N Cashu outside, how 'bout that!? https://example.com/ 2156 422881 422863.422881.422926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7855597273121 0 \N \N f 78817252 \N 2 185328711 0 f f \N \N \N \N 422863 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435667 2025-03-12 21:29:44.639 2025-03-29 22:39:49.152 Nervously announcing... I made a game I wasn't sure whether to post this in 'gaming' or in 'bitcoin'. To be honest I wasn't even sure whether to post it at all as I have no idea what the reaction might be! Anyway, here it is...\n\nIt's basically just a bit of a twist on the classic Asteroids, with something of a Bitcoin theme. It takes a few levels of play for the 'twists' to become apparent but don't expect too much 😁. \n\nIt's playable in the browser, but it's not designed for mobile (requires keys to play).\n\nPlay it here - https://hashteroids.btcdir.org \N 687 \N 435667 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 23.4044768276799 0 \N \N f 296683212 \N 3 146681959 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2025-03-19 22:16:25.231 f \N \N \N 0 0 0 0 3 0 0 435012 2025-03-12 11:59:07.122 2025-03-29 22:39:53.153 \N I know the villians say "you will own nothing and be happy," but I do think owning nothing leads to more happiness. If only because all the paperwork, taxes, and requirements around ownership has made it so burdensome. https://example.com/ 12965 435006 435002.435006.435012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.23942609680442 0 \N \N f 244794973 \N 1 159547222 0 f f \N \N \N \N 435002 \N 0 0 \N \N f \N 2025-03-19 05:22:21.893 f \N \N \N 0 0 0 0 1 0 0 435163 2025-03-12 14:03:52.749 2025-03-29 22:39:53.153 \N There is Bitdev activity here in Taipei, but not my scene. Most people generally have heard what Bitcoin is here...but few have any real interest or understanding (same as the states really).\n\nBuying BTC here on a local exchange involves endless hoops to jump through, but that is more Taiwan's ancient banking practices and systems than anything. https://example.com/ 12819 435136 435136.435163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3269491 0 \N \N f 131166540 \N 1 235422542 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N 2025-03-19 07:36:02.485 f \N \N \N 0 0 0 0 1 0 0 447282 2025-03-21 18:43:49.87 2025-03-29 22:39:53.153 \N You may not be tech savvy but you surely developed other very useful skills in your trade: in particular spotting BS.\nI remember in my old Samsung phone I had a bunch of apps I couldn't uninstall and there were many processes and data sharing on the background that I never allowed and couldn't even stop, I always felt the machine didn't really belong to me, it was given to me on lease and Google was the real owner. I understand your dislike for Apple.\nThe switch to graphene was my latest, a few years back I changed to Linux and that was around the same time I got into bitcoin. Now I feel all those things are related, it's about freedom of choice and being able to decide based on one's own best interest. https://example.com/ 1769 447242 447148.447239.447242.447282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6269734724142 0 \N \N f 565586434 \N 3 70265808 0 f f \N \N \N \N 447148 \N 0 0 \N \N f \N 2025-03-28 12:02:36.211 f \N \N \N 0 0 0 0 1 0 0 435237 2025-03-12 14:46:43.496 2025-03-29 22:39:53.153 \N NO!!\n\nWe are a Bitcoin-only property booking platform. By Bitcoiners for Bitcoiners. \n\nNo shitcoins!\n\n![](https://m.stacker.news/51457) https://example.com/ 10586 435136 435136.435237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8364405762795 0 \N \N f 165293447 \N 1 193056757 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N 2025-03-19 09:19:16.104 f \N \N \N 0 0 0 0 1 0 0 447277 2025-03-21 18:36:56.665 2025-03-29 22:39:53.154 \N My man's giving away full bitcoins out here.\n\nSatoshi, is that you? https://example.com/ 2098 447053 446880.447053.447277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4641744378732 0 \N \N f 233663798 \N 1 147502753 0 f f \N \N \N \N 446880 \N 0 0 \N \N f \N 2025-03-28 12:07:14.675 f \N \N \N 0 0 0 0 1 0 0 451329 2025-03-24 13:58:18.905 2025-03-29 22:39:49.152 Dune (Movie) Makers Revealed to Control The Price Of Bitcoin \N https://www.bugle.news/dune-makers-co/ 17824 \N 451329 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.61681867131311 0 \N \N f 334099473 \N 2 161431044 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 423602 2025-03-03 13:31:34.496 2025-03-29 22:39:53.153 \N It's most important to focus on the solid monetary layer. Decentralisation and security of layer one is critically important. Reckless development and experimentation belongs to layer 2, which doesn't threaten layer 1. https://example.com/ 6229 423596 423574.423594.423596.423602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6731388157163 0 \N \N f 219212390 \N 1 17412380 0 f f \N \N \N \N 423574 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 435119 2025-03-12 13:31:14.213 2025-03-29 22:39:53.153 \N This has to be one of my all-time favorite compositions: Erik Satie - Gymnopédie No.1\n\nI can't describe how this sound makes me feel. All I know is it evokes a sense of peace and calm. It's almost like everything will be alright.\n\nhttps://www.youtube.com/watch?v=S-Xm7s9eGxU&ab_channel=DistantMirrors https://example.com/ 6030 435046 435046.435119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2586174471484 0 \N \N f 239848640 \N 1 117549230 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 2025-03-19 06:58:27.247 f \N \N \N 0 0 0 0 1 0 0 415647 2025-02-25 00:08:03.427 2025-03-29 22:39:53.153 \N In America most can afford a large house and car, but only the top 1% can afford to live in walking distance to a pub https://example.com/ 7913 415637 415637.415647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.81896012016838 0 \N \N f 428356048 \N 3 232504859 0 f f \N \N \N \N 415637 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 2 0 0 437184 2025-03-14 11:24:28.775 2025-03-29 22:39:53.153 \N For companies with a calendar year close it's almost time to close 2022... \n\nAt [Layers](https://www.layers.cloud/), we are working to [save time and manual resources](https://research.layers.cloud/lightning-network-audit-considerations/) for LN node operators to help provide audit reporting and corroborate their node data as they close their books.\n\nFirst two audit reports for your node are free here: https://www.layers.cloud/ https://example.com/ 13587 436752 436752.437184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.5821536248222 0 \N \N f 3508512282 \N 24 6874792 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 442453 2025-03-18 15:06:50.747 2025-03-29 22:39:53.154 \N If you do not plan to spend a large amount of sats over LN, then I think accumulating few sats over LN from SN, nostr and other sources, will be OK to use any custodial LN wallets that will not bother you with channels management.\n\nI wrote this guide for example, describing how to do it:\nhttps://darth-coin.github.io/beginner/getting-started-stack-sats-en.html\n\nBasically you just accumulate few sats, little by little and once the amount is considered enough to be converted into a good UTXO, just swap it out into your onchain cache or cold wallets.\n\nTHERE'S NOTHING WRONG using custodial non-KYC accounts for that. The amounts will not be anyways so significant to affect your finances and also you are not touching your cold stash.\n\nKeep it simple guys! https://example.com/ 2431 441240 439946.440242.440313.441240.442453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.54036157441799 0 \N \N f 82189601 \N 1 144903005 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 457892 2025-03-28 19:07:47.678 2025-03-29 22:39:53.154 \N I get a large amount of enjoyment out of setting my default zap at some uncommon amount, kinda like a calling card. https://example.com/ 21003 457267 457267.457892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.89473350751 0 \N \N f 219652581 \N 1 176538479 0 f f \N \N \N \N 457267 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 216553 2024-08-18 11:19:29.879 2025-03-29 22:39:53.154 \N 1. **Improvement of Privacy**: Taproot makes all transactions look the same to external observers. Whether it's a complex contract or a simple payment, they all appear as standard transactions. This enhances privacy by making it more challenging to differentiate between transaction types.\n\n2. **Enhanced Flexibility with Smart Contracts**: Taproot introduces the ability to write more complex "scripts" or smart contracts in Bitcoin. This adds functionality without making the blockchain more cumbersome. It's done through a technology called Schnorr signatures, which allow for various conditions to be met for a transaction to be valid.\n\n3. **Efficiency and Cost Reduction**: By combining the public keys, Taproot ensures that complex transactions require less space on the blockchain. This means that transactions can be processed more quickly, reducing fees and making the network more efficient. https://example.com/ 6653 216481 215973.216272.216481.216553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.06263773159726 0 \N \N f 561803051 \N 3 181697076 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 422600 2025-03-02 15:17:25.59 2025-03-29 22:39:53.154 \N Finished\n\n![](https://m.stacker.news/40650) https://example.com/ 14195 422595 422595.422600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.26368410303085 0 \N \N f 32457684 \N 1 136359555 0 f f \N \N \N \N 422595 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434687 2025-03-12 06:48:32.459 2025-03-29 22:39:53.154 \N I buy Zeihan's broad macro thesis. \n\nHowever, his specific local political analysis is tissue paper thin -- his comments on the local politics of the country I live were wildly poorly reasoned and didn't seem based on any primary sources.\n\nAmerica can falter on the world stage, particularly in its ability to project and maintain global power. All empires end up over stretched and unable to flex on all fronts, we see this right now with the US struggling to maintain arms shipments to Ukraine at the same time as mobilise forces in the Red Sea. If China were to make a move on Taiwan the US would be unable to support them.\n\nBut domestically it will always have the abundance of resources and population base to thrive. https://example.com/ 1039 434646 434646.434687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.288130152758 0 \N \N f 941508602 \N 4 236518882 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 01:27:50.049 f \N \N \N 0 0 0 0 1 0 0 400908 2025-02-12 15:33:13.908 2025-03-29 22:39:49.152 PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY III (part 2/2) PROTESTS IN VENEZUELA AFTER ELECTORAL FRAUD - DAY III (part 1/2) https://stacker.news/items/630306/r/bief57\nEvents that occurred on July 31, 2024 between 3pm-11pm\n\n"cowards" - Nicolas Maduro\n![](https://m.stacker.news/42798)\n\nIn the "best" of cases, this is how those who go out to fight in the Venezuelan streets end up... others are detained, tortured, kidnapped or murdered.\nhttps://x.com/JaviXCubaLibre2/status/1818816050521067600\n\nWhat would it feel like to be a police officer or a National Guardsman, to come home, hug your children, knowing that you killed someone else's children?\n\nThis afternoon, criminal hordes of Chavismo robbed passersby in Las Delicias Maracay, Aragua state\nhttps://x.com/VVperiodistas_/status/1818794386840600909\n\nSHAMELESS | The criminal Nicolás Maduro appeared giving instructions to kill the people and promoting the false narrative that they pay $50 to protest against the regime\nhttps://x.com/RNacional_News/status/1818827960415056359\n\nThe dictatorship of Nicolás Maduro has brought Cuban repressive forces to Venezuela, dressed in Venezuelan uniforms, to act as henchmen of Chavismo\nhttps://x.com/eduardomenoni/status/1818784693711446050\n\n“Maduro promised a bloodbath and he is fulfilling it. I admit that it was impressive when he said it and I admit that it impresses me even more to see that he fulfills it!” The Secretary General added that he does it with premeditation, treachery, ferocity, superior advantage and we are going to request an arrest warrant.”\nhttps://x.com/IdaniaChirinos/status/1818820292283973757\n\n"When Venezuela was a full democracy and Uruguay was under a dictatorship, the Venezuelan State welcomed Venezuelan exiles and influenced the international community to contain the military regime," said Omar Paganini, Uruguay's foreign minister to the OAS.\nhttps://x.com/NTN24/status/1818778687598182471\n\nGreatest electoral advantages in the history of Venezuela. Not counting the millions of Venezuelans who were prohibited from voting\n![](https://m.stacker.news/42799)\n\nThey just took away a mother and her daughter (a minor) for “inciting hatred on social media”. They are silencing us!\nhttps://x.com/kneocals/status/1818823537555046461\n\n“Either you are a democrat or you are not, you cannot be a half-democrat” says the Peruvian Foreign Minister, Javier González-Olaechea in an impassioned speech. “What verification can be demanded when the minutes are on the web and they can see them? … “We say one thing in a small committee and we come here and say another! What will happen tomorrow? Will there be more deaths? … and of those deaths, the 17 of us who approved this resolution, we are not responsible! … That is why young people do not believe in politicians or in politics, because of the lack of coherence!” says the diplomat at the extraordinary meeting of the OEA \n![](https://m.stacker.news/42801)\n\nTHEY CONTINUE THE FIGHT for freedom in the streets\nhttps://x.com/RNacional_News/status/1818845416802119751\n\nGunshots are heard inside the Maduro Police headquarters in El Marqués, Caracas, where the tyrannical regime of Nicolás Maduro has demonstrators imprisoned, the police claimed it was to control the "common prisoners" who tried to riot\nhttps://x.com/eduardomenoni/status/1818874522243665935\n\nMinutes ago, three trucks left from PNB Zone 7 in Boleíta full of people arbitrarily detained during protests in Caracas.\nhttps://x.com/_Provea/status/1818823905077084284\n\nNicolás Maduro's guards threw a tear gas bomb at the roof of a food store and set it on fire, then they tried to blame innocent Venezuelan protesters, but the video gave them away.\nhttps://x.com/eduardomenoni/status/1818866295158317296\n\n"And remember, friends, these cowards act like they're cool by hitting civilians. \nBut at the first explosion, they run away like the rats they are" (old video). They think they're very powerful when they're in a group, armed and wearing protective gear, fighting unarmed people.\nhttps://x.com/lutropico/status/1818517854150386062\n\nThis is in Misión Vivienda Urbanismo Ayacucho, a "revolutionary" bastion, Los Teques, where they knocked down the statue of Chávez.\nThey take away the Chavistas who do not like Maduro\nhttps://x.com/NicmerEvans/status/1818757215773446240\n\nCarabobo Los Guayos united in prayer for the peace of Venezuela.\nhttps://x.com/angelinlugo/status/1818805506749960265\n![](https://m.stacker.news/42803)\n\nOur grandparents have been one of the hardest hit links in this system. Many are alone in the country because their children and grandchildren emigrated and they can only see them by video call. They receive a monthly pension for old age equivalent to $3. Most cannot buy their medicines and suffer from malnutrition or undernourishment because they cannot access the basic basket. Historically, they have always gone out to protest and fight for our country, with their pain, with their ailments, but with the shaken faith that they will be reunited with their children and grandchildren. Grandchildren that most of them do not know. And there are these grandparents, like two children full of hope in the country we dream of.\nhttps://x.com/AlexaGomezDos/status/1818820643322052731\n\nMaduro and Diosdado Cabello say that Israel, Elon Musk and Milei want to invade Venezuela to set up a biochemical weapons laboratory\nhttps://x.com/therealbuni/status/1818843377846432074\n\nThe Dictatorship is killing and kidnapping\nhttps://x.com/RenGarc61723279/status/1818764911067251134\n\nDiana Mondino: "The fraud has been remarkable. Let's not ask for more records, they are on the internet (…) there can be no half measures, we must report and act. While we look at each other's faces, there are dead people in the streets."\nhttps://x.com/EmmaRincon/status/1818784872002904301\n\nAnother electoral witness was arrested today in Maracay. She is accused of “hate crimes.”\nhttps://x.com/VVperiodistas_/status/1818795886786367971\n\nMaduro saying "imagine a country without electricity." \nNOBODY HAS TO IMAGINE ANYTHING, DAMN CRAP, WE HAVE BEEN LIVING LIKE THAT FOR MANY YEARS, WITH POWER OUTAGES OF MORE THAN 6 HOURS, AND WE SPENT 5 DAYS IN A ROW WITHOUT ELECTRICITY BECAUSE OF YOU, DAMN RAT.\n\n \N 21212 \N 400908 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 1.59509668876598 0 \N \N f 403295291 \N 2 46326279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 401271 2025-02-12 20:41:23.777 2025-03-29 22:39:53.154 \N I consider myself very cynical, but someone once told me that "cynicism is for the weak," and it really made me have to think.\n\nPerhaps what we should strive for is optimistic realism.\n https://example.com/ 15978 401257 401198.401257.401271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9296161854598 0 \N \N f 383499119 \N 4 242140857 0 f f \N \N \N \N 401198 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 396045 2025-02-09 02:55:26.251 2025-03-29 22:39:53.154 \N She is supportive and actually enjoys WBD podcasts. She went from liberal democrat to libertarian purely as a result of covid lockdowns, so she's almost there. https://example.com/ 13361 395797 395797.396045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5616491954869 0 \N \N f 459790316 \N 4 235516741 0 f f \N \N \N \N 395797 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 434899 2025-03-12 10:20:23.944 2025-03-29 22:39:53.154 \N I used to zap 21sats, then 50.\n\nI think I've found a nice balance with 101sats. Every day my SN stack goes down a little until I get a comment or post that brings it back up.\n\n1k is amazing when you're on the receiving end. If I were to bring it up to that level I think I'd be thinking about it too much. Does this post REALLY deserve this many sats? https://example.com/ 18525 434871 434646.434871.434899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1130731195701 0 \N \N f 292205856 \N 2 29630023 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 2025-03-19 03:51:48.323 f \N \N \N 0 0 0 0 1 0 0 430836 2025-03-09 13:01:09.772 2025-03-29 22:39:53.154 \N I was topping off posts to hit the nearest 69 but realized it might discourage tipping from people who don't want to ruin the number. Now I have it set to a 30-something and tip 1-5x+ depending on the joy the post brings or if I like the poster. https://example.com/ 16842 430674 430607.430617.430641.430670.430674.430836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0322480012885 0 \N \N f 349406304 \N 2 100047822 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 451324 2025-03-24 13:52:30.798 2025-03-29 22:39:53.154 \N [AltStore.](https://altstore.io)\nSmall, but growing. https://example.com/ 16680 432817 432817.451324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1529016418393 0 \N \N f 563428235 \N 3 97753246 0 f f \N \N \N \N 432817 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 450618 2025-03-24 05:32:19.476 2025-03-29 22:39:53.154 \N He's talking about an SN gamification thing. I'm not sure why he's asking this here. https://example.com/ 10291 449878 449878.450618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7136902695813 0 \N \N f 343424289 \N 2 74928022 0 f f \N \N \N \N 449878 \N 0 0 \N \N f \N \N f \N \N \N 0 0 0 0 1 0 0 \. -- -- Data for Name: ItemAct; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ItemAct" (id, created_at, updated_at, msats, act, "itemId", "userId", "invoiceActionState", "invoiceId") FROM stdin; 6027958 2025-03-18 16:19:21.233 2025-03-18 16:19:21.233 1700 FEE 434459 8870 \N \N 6027959 2025-03-18 16:19:21.233 2025-03-18 16:19:21.233 15300 TIP 434459 4166 \N \N 6027960 2025-03-18 16:19:47.889 2025-03-18 16:19:47.889 2700 FEE 433914 21051 \N \N 6027961 2025-03-18 16:19:47.889 2025-03-18 16:19:47.889 24300 TIP 433914 1769 \N \N 6027962 2025-03-18 16:19:48.078 2025-03-18 16:19:48.078 2700 FEE 433914 2232 \N \N 6027963 2025-03-18 16:19:48.078 2025-03-18 16:19:48.078 24300 TIP 433914 705 \N \N 6027964 2025-03-18 16:19:51.295 2025-03-18 16:19:51.295 2700 FEE 434085 12507 \N \N 6027965 2025-03-18 16:19:51.295 2025-03-18 16:19:51.295 24300 TIP 434085 20849 \N \N 6028005 2025-03-18 16:25:46.971 2025-03-18 16:25:46.971 36000 TIP 434441 6688 \N \N 6027966 2025-03-18 16:19:51.508 2025-03-18 16:19:51.508 2700 FEE 434085 19581 \N \N 6027967 2025-03-18 16:19:51.508 2025-03-18 16:19:51.508 24300 TIP 434085 13216 \N \N 6027968 2025-03-18 16:19:55.566 2025-03-18 16:19:55.566 2700 FEE 433881 6717 \N \N 6027969 2025-03-18 16:19:55.566 2025-03-18 16:19:55.566 24300 TIP 433881 6749 \N \N 6027970 2025-03-18 16:19:55.737 2025-03-18 16:19:55.737 2700 FEE 433881 18368 \N \N 6027971 2025-03-18 16:19:55.737 2025-03-18 16:19:55.737 24300 TIP 433881 641 \N \N 6027972 2025-03-18 16:19:55.907 2025-03-18 16:19:55.907 2700 FEE 433881 21631 \N \N 6027973 2025-03-18 16:19:55.907 2025-03-18 16:19:55.907 24300 TIP 433881 5578 \N \N 6027975 2025-03-18 16:20:14.847 2025-03-18 16:20:14.847 100000 FEE 434462 10493 \N \N 6028000 2025-03-18 16:25:13.186 2025-03-18 16:25:13.186 2700 FEE 434147 21539 \N \N 6027977 2025-03-18 16:21:41.925 2025-03-18 16:21:41.925 3100 FEE 434460 21398 \N \N 6027978 2025-03-18 16:21:41.925 2025-03-18 16:21:41.925 27900 TIP 434460 15732 \N \N 6027981 2025-03-18 16:24:00.012 2025-03-18 16:24:00.012 100 FEE 434283 8541 \N \N 6027982 2025-03-18 16:24:00.012 2025-03-18 16:24:00.012 900 TIP 434283 848 \N \N 6027983 2025-03-18 16:24:06.695 2025-03-18 16:24:06.695 1000 FEE 434463 675 \N \N 6027996 2025-03-18 16:24:12.646 2025-03-18 16:24:12.646 2700 FEE 434099 21832 \N \N 6027997 2025-03-18 16:24:12.646 2025-03-18 16:24:12.646 24300 TIP 434099 21020 \N \N 6028006 2025-03-18 16:25:50.472 2025-03-18 16:25:50.472 4000 FEE 434396 700 \N \N 6027984 2025-03-18 16:24:10.29 2025-03-18 16:24:10.29 2700 FEE 434099 16842 \N \N 6027985 2025-03-18 16:24:10.29 2025-03-18 16:24:10.29 24300 TIP 434099 725 \N \N 6027992 2025-03-18 16:24:10.817 2025-03-18 16:24:10.817 2700 FEE 434099 21349 \N \N 6027986 2025-03-18 16:24:10.371 2025-03-18 16:24:10.371 2700 FEE 434099 994 \N \N 6027987 2025-03-18 16:24:10.371 2025-03-18 16:24:10.371 24300 TIP 434099 7510 \N \N 6027988 2025-03-18 16:24:10.503 2025-03-18 16:24:10.503 2700 FEE 434099 13143 \N \N 6027989 2025-03-18 16:24:10.503 2025-03-18 16:24:10.503 24300 TIP 434099 19930 \N \N 6027990 2025-03-18 16:24:10.631 2025-03-18 16:24:10.631 2700 FEE 434099 21620 \N \N 6027991 2025-03-18 16:24:10.631 2025-03-18 16:24:10.631 24300 TIP 434099 7654 \N \N 6027993 2025-03-18 16:24:10.817 2025-03-18 16:24:10.817 24300 TIP 434099 17568 \N \N 6027994 2025-03-18 16:24:12.114 2025-03-18 16:24:12.114 2700 FEE 434099 9356 \N \N 6027995 2025-03-18 16:24:12.114 2025-03-18 16:24:12.114 24300 TIP 434099 21021 \N \N 6028007 2025-03-18 16:25:50.472 2025-03-18 16:25:50.472 36000 TIP 434396 17212 \N \N 6028009 2025-03-18 16:26:28.547 2025-03-18 16:26:28.547 1000 FEE 434464 21712 \N \N 6028001 2025-03-18 16:25:13.186 2025-03-18 16:25:13.186 24300 TIP 434147 9346 \N \N 6028002 2025-03-18 16:25:13.36 2025-03-18 16:25:13.36 2700 FEE 434147 15326 \N \N 6028003 2025-03-18 16:25:13.36 2025-03-18 16:25:13.36 24300 TIP 434147 21389 \N \N 6028004 2025-03-18 16:25:46.971 2025-03-18 16:25:46.971 4000 FEE 434441 913 \N \N 6028013 2025-03-18 16:27:57.606 2025-03-18 16:27:57.606 10000 FEE 434465 17392 \N \N 6028011 2025-03-18 16:27:16.573 2025-03-18 16:27:16.573 210000 FEE 434465 20198 \N \N 6028012 2025-03-18 16:27:57.581 2025-03-18 16:27:57.581 0 FEE 434465 16847 \N \N 6028014 2025-03-18 16:27:57.606 2025-03-18 16:27:57.606 90000 TIP 434465 17693 \N \N 6028018 2025-03-18 16:28:44.842 2025-03-18 16:28:44.842 2700 FEE 433945 2196 \N \N 6028019 2025-03-18 16:28:44.842 2025-03-18 16:28:44.842 24300 TIP 433945 20904 \N \N 6028016 2025-03-18 16:28:44.65 2025-03-18 16:28:44.65 2700 FEE 433945 16350 \N \N 6028017 2025-03-18 16:28:44.65 2025-03-18 16:28:44.65 24300 TIP 433945 1705 \N \N 6028020 2025-03-18 16:28:45.055 2025-03-18 16:28:45.055 2700 FEE 433945 20102 \N \N 6028021 2025-03-18 16:28:45.055 2025-03-18 16:28:45.055 24300 TIP 433945 21402 \N \N 6028022 2025-03-18 16:28:45.678 2025-03-18 16:28:45.678 2700 FEE 433945 19842 \N \N 6028023 2025-03-18 16:28:45.678 2025-03-18 16:28:45.678 24300 TIP 433945 2492 \N \N 6028025 2025-03-18 16:28:46.309 2025-03-18 16:28:46.309 24300 TIP 433945 15103 \N \N 6028024 2025-03-18 16:28:46.309 2025-03-18 16:28:46.309 2700 FEE 433945 17046 \N \N 6028026 2025-03-18 16:28:55.636 2025-03-18 16:28:55.636 5100 FEE 434147 21400 \N \N 6028027 2025-03-18 16:28:55.636 2025-03-18 16:28:55.636 45900 TIP 434147 11967 \N \N 6028028 2025-03-18 16:28:57.871 2025-03-18 16:28:57.871 1000 FEE 434466 21829 \N \N 6028029 2025-03-18 16:29:01.677 2025-03-18 16:29:01.677 7700 FEE 434463 4538 \N \N 6028030 2025-03-18 16:29:01.677 2025-03-18 16:29:01.677 69300 TIP 434463 16809 \N \N 6028031 2025-03-18 16:29:11.571 2025-03-18 16:29:11.571 2300 FEE 434466 21578 \N \N 6028032 2025-03-18 16:29:11.571 2025-03-18 16:29:11.571 20700 TIP 434466 10096 \N \N 6028033 2025-03-18 16:29:11.905 2025-03-18 16:29:11.905 4600 FEE 434466 4973 \N \N 6028034 2025-03-18 16:29:11.905 2025-03-18 16:29:11.905 41400 TIP 434466 13133 \N \N 6028035 2025-03-18 16:29:12.07 2025-03-18 16:29:12.07 2300 FEE 434466 20840 \N \N 6028036 2025-03-18 16:29:12.07 2025-03-18 16:29:12.07 20700 TIP 434466 16684 \N \N 6028038 2025-03-18 16:29:44.084 2025-03-18 16:29:44.084 2500 FEE 433945 17517 \N \N 6028039 2025-03-18 16:29:44.084 2025-03-18 16:29:44.084 22500 TIP 433945 6148 \N \N 6028040 2025-03-18 16:29:55.654 2025-03-18 16:29:55.654 2700 FEE 434420 16966 \N \N 6028041 2025-03-18 16:29:55.654 2025-03-18 16:29:55.654 24300 TIP 434420 16978 \N \N 6028042 2025-03-18 16:29:55.857 2025-03-18 16:29:55.857 2700 FEE 434420 8998 \N \N 6028043 2025-03-18 16:29:55.857 2025-03-18 16:29:55.857 24300 TIP 434420 18637 \N \N 6028045 2025-03-18 16:31:07.159 2025-03-18 16:31:07.159 7700 FEE 434037 16912 \N \N 6028046 2025-03-18 16:31:07.159 2025-03-18 16:31:07.159 69300 TIP 434037 8945 \N \N 6028058 2025-03-18 16:37:16.704 2025-03-18 16:37:16.704 900000 FEE 433828 8648 \N \N 6028047 2025-03-18 16:31:08.739 2025-03-18 16:31:08.739 100 FEE 434037 10302 \N \N 6028048 2025-03-18 16:31:08.739 2025-03-18 16:31:08.739 900 TIP 434037 1650 \N \N 6028050 2025-03-18 16:31:44.019 2025-03-18 16:31:44.019 5000 FEE 433998 20554 \N \N 6028051 2025-03-18 16:31:44.019 2025-03-18 16:31:44.019 45000 TIP 433998 768 \N \N 6034465 2025-03-19 08:36:31.68 2025-03-19 08:36:31.68 2300 FEE 435263 18500 \N \N 6034466 2025-03-19 08:36:31.68 2025-03-19 08:36:31.68 20700 TIP 435263 20205 \N \N 6034489 2025-03-19 08:36:58.229 2025-03-19 08:36:58.229 8300 FEE 435261 5865 \N \N 6034490 2025-03-19 08:36:58.229 2025-03-19 08:36:58.229 74700 TIP 435261 17064 \N \N 6034491 2025-03-19 08:36:59.093 2025-03-19 08:36:59.093 8300 FEE 435261 1769 \N \N 6034492 2025-03-19 08:36:59.093 2025-03-19 08:36:59.093 74700 TIP 435261 18615 \N \N 6034530 2025-03-19 08:39:56.092 2025-03-19 08:39:56.092 1000 FEE 435268 21202 \N \N 6034531 2025-03-19 08:39:56.092 2025-03-19 08:39:56.092 9000 TIP 435268 19813 \N \N 6034537 2025-03-19 08:40:19.603 2025-03-19 08:40:19.603 1000 FEE 435295 1801 \N \N 6034556 2025-03-19 08:43:04.824 2025-03-19 08:43:04.824 1000 FEE 435301 16724 \N \N 6034563 2025-03-19 08:44:05.194 2025-03-19 08:44:05.194 1000 FEE 435303 1425 \N \N 6034578 2025-03-19 08:44:28.817 2025-03-19 08:44:28.817 1000 FEE 435294 13143 \N \N 6034579 2025-03-19 08:44:28.817 2025-03-19 08:44:28.817 9000 TIP 435294 16858 \N \N 6034584 2025-03-19 08:44:38.473 2025-03-19 08:44:38.473 1000 FEE 435305 1836 \N \N 6028059 2025-03-18 16:37:16.704 2025-03-18 16:37:16.704 8100000 TIP 433828 19469 \N \N 6028092 2025-03-18 16:54:16.256 2025-03-18 16:54:16.256 7700 FEE 434395 683 \N \N 6028093 2025-03-18 16:54:16.256 2025-03-18 16:54:16.256 69300 TIP 434395 1733 \N \N 6028116 2025-03-18 16:58:57.065 2025-03-18 16:58:57.065 1000 FEE 434461 17221 \N \N 6028117 2025-03-18 16:58:57.065 2025-03-18 16:58:57.065 9000 TIP 434461 14213 \N \N 6028163 2025-03-18 17:04:57.52 2025-03-18 17:04:57.52 2100 FEE 434395 16695 \N \N 6028164 2025-03-18 17:04:57.52 2025-03-18 17:04:57.52 18900 TIP 434395 16704 \N \N 6028180 2025-03-18 17:08:45.022 2025-03-18 17:08:45.022 800 FEE 434243 2013 \N \N 6028181 2025-03-18 17:08:45.022 2025-03-18 17:08:45.022 7200 TIP 434243 2776 \N \N 6028184 2025-03-18 17:08:47.429 2025-03-18 17:08:47.429 800 FEE 434243 15091 \N \N 6028185 2025-03-18 17:08:47.429 2025-03-18 17:08:47.429 7200 TIP 434243 9537 \N \N 6028196 2025-03-18 17:14:08.813 2025-03-18 17:14:08.813 1000 FEE 434402 21701 \N \N 6028197 2025-03-18 17:14:08.813 2025-03-18 17:14:08.813 9000 TIP 434402 8289 \N \N 6028212 2025-03-18 17:17:35.608 2025-03-18 17:17:35.608 1000 FEE 434405 16126 \N \N 6028213 2025-03-18 17:17:35.608 2025-03-18 17:17:35.608 9000 TIP 434405 20157 \N \N 6028237 2025-03-18 17:26:33.793 2025-03-18 17:26:33.793 10000 FEE 434440 9348 \N \N 6028238 2025-03-18 17:26:33.793 2025-03-18 17:26:33.793 90000 TIP 434440 11590 \N \N 6028246 2025-03-18 17:27:36.191 2025-03-18 17:27:36.191 210000 FEE 434483 17041 \N \N 6028273 2025-03-18 17:42:23.23 2025-03-18 17:42:23.23 1000 FEE 434486 20706 \N \N 6028318 2025-03-18 17:59:01.271 2025-03-18 17:59:01.271 3100 FEE 434474 20180 \N \N 6028319 2025-03-18 17:59:01.271 2025-03-18 17:59:01.271 27900 TIP 434474 21254 \N \N 6028323 2025-03-18 18:00:24.45 2025-03-18 18:00:24.45 1000 FEE 434494 12261 \N \N 6028349 2025-03-18 18:05:05.759 2025-03-18 18:05:05.759 100000 FEE 434498 12278 \N \N 6028359 2025-03-18 18:08:55.26 2025-03-18 18:08:55.26 1000 FEE 434502 18731 \N \N 6028366 2025-03-18 18:10:29.312 2025-03-18 18:10:29.312 2300 FEE 434500 12935 \N \N 6028367 2025-03-18 18:10:29.312 2025-03-18 18:10:29.312 20700 TIP 434500 2326 \N \N 6028368 2025-03-18 18:10:29.392 2025-03-18 18:10:29.392 2300 FEE 434500 2327 \N \N 6028369 2025-03-18 18:10:29.392 2025-03-18 18:10:29.392 20700 TIP 434500 17218 \N \N 6028374 2025-03-18 18:10:30.117 2025-03-18 18:10:30.117 2300 FEE 434500 913 \N \N 6028375 2025-03-18 18:10:30.117 2025-03-18 18:10:30.117 20700 TIP 434500 3353 \N \N 6028400 2025-03-18 18:18:59.802 2025-03-18 18:18:59.802 100 FEE 423475 9705 \N \N 6028401 2025-03-18 18:18:59.802 2025-03-18 18:18:59.802 900 TIP 423475 1495 \N \N 6028402 2025-03-18 18:18:59.943 2025-03-18 18:18:59.943 100 FEE 423475 7674 \N \N 6028403 2025-03-18 18:18:59.943 2025-03-18 18:18:59.943 900 TIP 423475 5519 \N \N 6028419 2025-03-18 18:19:11.058 2025-03-18 18:19:11.058 100 FEE 423475 16351 \N \N 6028420 2025-03-18 18:19:11.058 2025-03-18 18:19:11.058 900 TIP 423475 691 \N \N 6028439 2025-03-18 18:20:29.661 2025-03-18 18:20:29.661 1000 FEE 434506 21314 \N \N 6028442 2025-03-18 18:22:16.895 2025-03-18 18:22:16.895 1000 FEE 434507 19138 \N \N 6028465 2025-03-18 18:24:49.018 2025-03-18 18:24:49.018 2100 FEE 434500 1480 \N \N 6028466 2025-03-18 18:24:49.018 2025-03-18 18:24:49.018 18900 TIP 434500 21020 \N \N 6028486 2025-03-18 18:39:13.406 2025-03-18 18:39:13.406 1000 FEE 434510 895 \N \N 6028495 2025-03-18 18:41:28.445 2025-03-18 18:41:28.445 100 FEE 434509 17014 \N \N 6028496 2025-03-18 18:41:28.445 2025-03-18 18:41:28.445 900 TIP 434509 13216 \N \N 6028505 2025-03-18 18:41:29.935 2025-03-18 18:41:29.935 100 FEE 434509 2361 \N \N 6028506 2025-03-18 18:41:29.935 2025-03-18 18:41:29.935 900 TIP 434509 20602 \N \N 6028531 2025-03-18 18:41:39.869 2025-03-18 18:41:39.869 100 FEE 434509 8729 \N \N 6028532 2025-03-18 18:41:39.869 2025-03-18 18:41:39.869 900 TIP 434509 21815 \N \N 6028565 2025-03-18 18:41:45.993 2025-03-18 18:41:45.993 100 FEE 434509 5694 \N \N 6028566 2025-03-18 18:41:45.993 2025-03-18 18:41:45.993 900 TIP 434509 1647 \N \N 6028573 2025-03-18 18:41:52.187 2025-03-18 18:41:52.187 100 FEE 434509 4238 \N \N 6028574 2025-03-18 18:41:52.187 2025-03-18 18:41:52.187 900 TIP 434509 2774 \N \N 6028587 2025-03-18 18:41:53.65 2025-03-18 18:41:53.65 100 FEE 434509 8080 \N \N 6028588 2025-03-18 18:41:53.65 2025-03-18 18:41:53.65 900 TIP 434509 16042 \N \N 6028633 2025-03-18 18:47:38.877 2025-03-18 18:47:38.877 9000 FEE 434489 1094 \N \N 6028634 2025-03-18 18:47:38.877 2025-03-18 18:47:38.877 81000 TIP 434489 21103 \N \N 6028649 2025-03-18 18:52:11.333 2025-03-18 18:52:11.333 1000 FEE 434318 20225 \N \N 6028650 2025-03-18 18:52:11.333 2025-03-18 18:52:11.333 9000 TIP 434318 999 \N \N 6028665 2025-03-18 18:54:37.243 2025-03-18 18:54:37.243 1000 FEE 434310 19016 \N \N 6028666 2025-03-18 18:54:37.243 2025-03-18 18:54:37.243 9000 TIP 434310 1173 \N \N 6028675 2025-03-18 18:57:17.467 2025-03-18 18:57:17.467 1000 FEE 434517 16830 \N \N 6028679 2025-03-18 18:58:12.092 2025-03-18 18:58:12.092 1000 FEE 434444 9985 \N \N 6028680 2025-03-18 18:58:12.092 2025-03-18 18:58:12.092 9000 TIP 434444 14663 \N \N 6028709 2025-03-18 19:03:09.092 2025-03-18 19:03:09.092 1000 FEE 434524 18449 \N \N 6028735 2025-03-18 19:09:17.577 2025-03-18 19:09:17.577 8300 FEE 434514 21091 \N \N 6028736 2025-03-18 19:09:17.577 2025-03-18 19:09:17.577 74700 TIP 434514 7746 \N \N 6028755 2025-03-18 19:10:30.831 2025-03-18 19:10:30.831 2100 FEE 434507 5557 \N \N 6028756 2025-03-18 19:10:30.831 2025-03-18 19:10:30.831 18900 TIP 434507 4323 \N \N 6028770 2025-03-18 19:14:35.134 2025-03-18 19:14:35.134 1000 FEE 434484 12959 \N \N 6028771 2025-03-18 19:14:35.134 2025-03-18 19:14:35.134 9000 TIP 434484 836 \N \N 6028799 2025-03-18 19:21:51.792 2025-03-18 19:21:51.792 10000 FEE 434535 8684 \N \N 6028819 2025-03-18 19:29:48.976 2025-03-18 19:29:48.976 2100 FEE 434536 12721 \N \N 6028820 2025-03-18 19:29:48.976 2025-03-18 19:29:48.976 18900 TIP 434536 14503 \N \N 6028821 2025-03-18 19:30:02.105 2025-03-18 19:30:02.105 1000 FEE 434539 6653 \N \N 6028833 2025-03-18 19:32:56.457 2025-03-18 19:32:56.457 900 FEE 434488 1717 \N \N 6028834 2025-03-18 19:32:56.457 2025-03-18 19:32:56.457 8100 TIP 434488 15196 \N \N 6028853 2025-03-18 19:36:44.246 2025-03-18 19:36:44.246 1000 FEE 434469 1571 \N \N 6028854 2025-03-18 19:36:44.246 2025-03-18 19:36:44.246 9000 TIP 434469 9438 \N \N 6028864 2025-03-18 19:37:20.711 2025-03-18 19:37:20.711 900 FEE 434514 15119 \N \N 6028865 2025-03-18 19:37:20.711 2025-03-18 19:37:20.711 8100 TIP 434514 11144 \N \N 6028915 2025-03-18 19:43:44.705 2025-03-18 19:43:44.705 4000 FEE 434544 997 \N \N 6028916 2025-03-18 19:43:44.705 2025-03-18 19:43:44.705 36000 TIP 434544 9551 \N \N 6028934 2025-03-18 19:47:24.62 2025-03-18 19:47:24.62 1000 FEE 433844 16296 \N \N 6028935 2025-03-18 19:47:24.62 2025-03-18 19:47:24.62 9000 TIP 433844 16536 \N \N 6028938 2025-03-18 19:47:56.239 2025-03-18 19:47:56.239 1000 FEE 433851 21178 \N \N 6028939 2025-03-18 19:47:56.239 2025-03-18 19:47:56.239 9000 TIP 433851 17519 \N \N 6028940 2025-03-18 19:48:04.313 2025-03-18 19:48:04.313 1000 FEE 433079 1881 \N \N 6028941 2025-03-18 19:48:04.313 2025-03-18 19:48:04.313 9000 TIP 433079 11866 \N \N 6028963 2025-03-18 19:53:45.559 2025-03-18 19:53:45.559 10000 FEE 434440 14785 \N \N 6028964 2025-03-18 19:53:45.559 2025-03-18 19:53:45.559 90000 TIP 434440 20669 \N \N 6028996 2025-03-18 20:08:08.921 2025-03-18 20:08:08.921 1000 FEE 434558 10484 \N \N 6029016 2025-03-18 20:14:08.186 2025-03-18 20:14:08.186 1000 FEE 434562 11038 \N \N 6029053 2025-03-18 20:19:24.639 2025-03-18 20:19:24.639 100 FEE 434535 13365 \N \N 6029054 2025-03-18 20:19:24.639 2025-03-18 20:19:24.639 900 TIP 434535 21547 \N \N 6029087 2025-03-18 20:26:43.253 2025-03-18 20:26:43.253 1000 FEE 434572 20973 \N \N 6029113 2025-03-18 20:34:28.613 2025-03-18 20:34:28.613 1000 FEE 434574 16276 \N \N 6029135 2025-03-18 20:41:11.478 2025-03-18 20:41:11.478 21000 FEE 434577 19829 \N \N 6028060 2025-03-18 16:37:49.287 2025-03-18 16:37:49.287 1000 FEE 434467 7185 \N \N 6028064 2025-03-18 16:38:06.999 2025-03-18 16:38:06.999 900 FEE 434465 656 \N \N 6028065 2025-03-18 16:38:06.999 2025-03-18 16:38:06.999 8100 TIP 434465 3979 \N \N 6028073 2025-03-18 16:42:20.614 2025-03-18 16:42:20.614 2100 FEE 266721 827 \N \N 6028074 2025-03-18 16:42:20.614 2025-03-18 16:42:20.614 18900 TIP 266721 16808 \N \N 6028097 2025-03-18 16:55:36.469 2025-03-18 16:55:36.469 0 FEE 434471 985 \N \N 6028104 2025-03-18 16:57:20.582 2025-03-18 16:57:20.582 100 FEE 434472 4654 \N \N 6028105 2025-03-18 16:57:20.582 2025-03-18 16:57:20.582 900 TIP 434472 7979 \N \N 6028123 2025-03-18 17:02:00.794 2025-03-18 17:02:00.794 2100 FEE 434285 21832 \N \N 6028124 2025-03-18 17:02:00.794 2025-03-18 17:02:00.794 18900 TIP 434285 2639 \N \N 6028125 2025-03-18 17:02:03.615 2025-03-18 17:02:03.615 2100 FEE 434278 722 \N \N 6028126 2025-03-18 17:02:03.615 2025-03-18 17:02:03.615 18900 TIP 434278 21547 \N \N 6028130 2025-03-18 17:02:26.617 2025-03-18 17:02:26.617 2100 FEE 434410 19018 \N \N 6028131 2025-03-18 17:02:26.617 2025-03-18 17:02:26.617 18900 TIP 434410 20897 \N \N 6028146 2025-03-18 17:04:24.358 2025-03-18 17:04:24.358 2100 FEE 433382 700 \N \N 6028147 2025-03-18 17:04:24.358 2025-03-18 17:04:24.358 18900 TIP 433382 20776 \N \N 6028176 2025-03-18 17:08:23.952 2025-03-18 17:08:23.952 1000 FEE 434410 17172 \N \N 6028177 2025-03-18 17:08:23.952 2025-03-18 17:08:23.952 9000 TIP 434410 12245 \N \N 6028182 2025-03-18 17:08:45.205 2025-03-18 17:08:45.205 800 FEE 434243 12169 \N \N 6028061 2025-03-18 16:37:55.223 2025-03-18 16:37:55.223 1000000 DONT_LIKE_THIS 434441 7119 \N \N 6028080 2025-03-18 16:45:41.914 2025-03-18 16:45:41.914 98000 FEE 434469 11866 \N \N 6028086 2025-03-18 16:50:45.879 2025-03-18 16:50:45.879 1000 FEE 434470 1638 \N \N 6028090 2025-03-18 16:53:39.521 2025-03-18 16:53:39.521 1000 FEE 434471 14385 \N \N 6028108 2025-03-18 16:57:21.393 2025-03-18 16:57:21.393 9000 FEE 434472 16456 \N \N 6028109 2025-03-18 16:57:21.393 2025-03-18 16:57:21.393 81000 TIP 434472 21140 \N \N 6028110 2025-03-18 16:57:38.786 2025-03-18 16:57:38.786 100000 DONT_LIKE_THIS 434468 12562 \N \N 6028114 2025-03-18 16:58:16.675 2025-03-18 16:58:16.675 900 FEE 434469 16950 \N \N 6028115 2025-03-18 16:58:16.675 2025-03-18 16:58:16.675 8100 TIP 434469 20816 \N \N 6028133 2025-03-18 17:03:47.488 2025-03-18 17:03:47.488 2100 FEE 433851 660 \N \N 6028134 2025-03-18 17:03:47.488 2025-03-18 17:03:47.488 18900 TIP 433851 16965 \N \N 6028139 2025-03-18 17:03:58.765 2025-03-18 17:03:58.765 2100 FEE 433842 8168 \N \N 6028140 2025-03-18 17:03:58.765 2025-03-18 17:03:58.765 18900 TIP 433842 21239 \N \N 6028148 2025-03-18 17:04:28.488 2025-03-18 17:04:28.488 2100 FEE 433333 7869 \N \N 6028149 2025-03-18 17:04:28.488 2025-03-18 17:04:28.488 18900 TIP 433333 2327 \N \N 6028171 2025-03-18 17:05:23.103 2025-03-18 17:05:23.103 1300 FEE 433376 7960 \N \N 6028172 2025-03-18 17:05:23.103 2025-03-18 17:05:23.103 11700 TIP 433376 5761 \N \N 6028062 2025-03-18 16:38:06.85 2025-03-18 16:38:06.85 100 FEE 434465 638 \N \N 6028063 2025-03-18 16:38:06.85 2025-03-18 16:38:06.85 900 TIP 434465 1046 \N \N 6028067 2025-03-18 16:39:00.988 2025-03-18 16:39:00.988 0 FEE 434467 5590 \N \N 6028070 2025-03-18 16:40:15.485 2025-03-18 16:40:15.485 0 FEE 434467 3396 \N \N 6028077 2025-03-18 16:44:14.277 2025-03-18 16:44:14.277 25600 FEE 433828 13854 \N \N 6028078 2025-03-18 16:44:14.277 2025-03-18 16:44:14.277 230400 TIP 433828 10611 \N \N 6028150 2025-03-18 17:04:30.237 2025-03-18 17:04:30.237 2100 FEE 433849 9350 \N \N 6028151 2025-03-18 17:04:30.237 2025-03-18 17:04:30.237 18900 TIP 433849 21026 \N \N 6028157 2025-03-18 17:04:52.19 2025-03-18 17:04:52.19 1300 FEE 433345 797 \N \N 6028158 2025-03-18 17:04:52.19 2025-03-18 17:04:52.19 11700 TIP 433345 7979 \N \N 6028222 2025-03-18 17:22:01.277 2025-03-18 17:22:01.277 1000 FEE 434480 21451 \N \N 6028241 2025-03-18 17:27:00.26 2025-03-18 17:27:00.26 400 FEE 434476 17533 \N \N 6028242 2025-03-18 17:27:00.26 2025-03-18 17:27:00.26 3600 TIP 434476 16769 \N \N 6028255 2025-03-18 17:30:27.1 2025-03-18 17:30:27.1 0 FEE 434481 3304 \N \N 6028265 2025-03-18 17:39:40.021 2025-03-18 17:39:40.021 10000 FEE 434485 9167 \N \N 6028283 2025-03-18 17:45:42.799 2025-03-18 17:45:42.799 2100 FEE 434482 8985 \N \N 6028284 2025-03-18 17:45:42.799 2025-03-18 17:45:42.799 18900 TIP 434482 20563 \N \N 6028324 2025-03-18 18:00:35.784 2025-03-18 18:00:35.784 1000 FEE 434495 20681 \N \N 6028341 2025-03-18 18:03:50.735 2025-03-18 18:03:50.735 800 FEE 434285 19463 \N \N 6028342 2025-03-18 18:03:50.735 2025-03-18 18:03:50.735 7200 TIP 434285 937 \N \N 6028351 2025-03-18 18:05:14.155 2025-03-18 18:05:14.155 10000 FEE 434499 20687 \N \N 6028394 2025-03-18 18:18:58.87 2025-03-18 18:18:58.87 200 FEE 423475 1720 \N \N 6028395 2025-03-18 18:18:58.87 2025-03-18 18:18:58.87 1800 TIP 423475 9171 \N \N 6028396 2025-03-18 18:18:59.335 2025-03-18 18:18:59.335 100 FEE 423475 13878 \N \N 6028397 2025-03-18 18:18:59.335 2025-03-18 18:18:59.335 900 TIP 423475 10719 \N \N 6028404 2025-03-18 18:19:01.209 2025-03-18 18:19:01.209 1000 FEE 434505 13198 \N \N 6028427 2025-03-18 18:20:20.802 2025-03-18 18:20:20.802 3300 FEE 434278 3396 \N \N 6028428 2025-03-18 18:20:20.802 2025-03-18 18:20:20.802 29700 TIP 434278 763 \N \N 6028455 2025-03-18 18:22:20.201 2025-03-18 18:22:20.201 100 FEE 423720 14651 \N \N 6028456 2025-03-18 18:22:20.201 2025-03-18 18:22:20.201 900 TIP 423720 4602 \N \N 6028479 2025-03-18 18:34:58.335 2025-03-18 18:34:58.335 26000 DONT_LIKE_THIS 434500 21771 \N \N 6028490 2025-03-18 18:41:21.895 2025-03-18 18:41:21.895 1000 FEE 434511 2963 \N \N 6028541 2025-03-18 18:41:41.274 2025-03-18 18:41:41.274 100 FEE 434509 5069 \N \N 6028542 2025-03-18 18:41:41.274 2025-03-18 18:41:41.274 900 TIP 434509 9167 \N \N 6034478 2025-03-19 08:36:57.111 2025-03-19 08:36:57.111 74700 TIP 435261 16816 \N \N 6034479 2025-03-19 08:36:57.212 2025-03-19 08:36:57.212 8300 FEE 435261 15119 \N \N 6034480 2025-03-19 08:36:57.212 2025-03-19 08:36:57.212 74700 TIP 435261 16424 \N \N 6034493 2025-03-19 08:36:59.202 2025-03-19 08:36:59.202 8300 FEE 435261 20409 \N \N 6034494 2025-03-19 08:36:59.202 2025-03-19 08:36:59.202 74700 TIP 435261 19417 \N \N 6034540 2025-03-19 08:40:38.523 2025-03-19 08:40:38.523 500 FEE 435286 13399 \N \N 6034541 2025-03-19 08:40:38.523 2025-03-19 08:40:38.523 4500 TIP 435286 17050 \N \N 6034542 2025-03-19 08:40:46.463 2025-03-19 08:40:46.463 1000 FEE 435282 2640 \N \N 6034543 2025-03-19 08:40:46.463 2025-03-19 08:40:46.463 9000 TIP 435282 4173 \N \N 6034547 2025-03-19 08:41:22.71 2025-03-19 08:41:22.71 1000 FEE 435299 4776 \N \N 6034558 2025-03-19 08:43:24.556 2025-03-19 08:43:24.556 1000 FEE 435302 21408 \N \N 6034559 2025-03-19 08:43:31.603 2025-03-19 08:43:31.603 3300 FEE 435292 16126 \N \N 6034560 2025-03-19 08:43:31.603 2025-03-19 08:43:31.603 29700 TIP 435292 5359 \N \N 6034570 2025-03-19 08:44:26.122 2025-03-19 08:44:26.122 1000 FEE 435294 2206 \N \N 6034571 2025-03-19 08:44:26.122 2025-03-19 08:44:26.122 9000 TIP 435294 1326 \N \N 6034580 2025-03-19 08:44:35.377 2025-03-19 08:44:35.377 2000 FEE 435184 4314 \N \N 6034581 2025-03-19 08:44:35.377 2025-03-19 08:44:35.377 18000 TIP 435184 705 \N \N 6034587 2025-03-19 08:44:55.867 2025-03-19 08:44:55.867 2000 FEE 435231 20454 \N \N 6034588 2025-03-19 08:44:55.867 2025-03-19 08:44:55.867 18000 TIP 435231 11018 \N \N 6034589 2025-03-19 08:45:01.396 2025-03-19 08:45:01.396 2000 FEE 435261 617 \N \N 6034590 2025-03-19 08:45:01.396 2025-03-19 08:45:01.396 18000 TIP 435261 11378 \N \N 6034599 2025-03-19 08:45:12.401 2025-03-19 08:45:12.401 1000 FEE 435291 11648 \N \N 6034600 2025-03-19 08:45:12.401 2025-03-19 08:45:12.401 9000 TIP 435291 21814 \N \N 6034636 2025-03-19 08:47:41.693 2025-03-19 08:47:41.693 3000 FEE 435304 21526 \N \N 6034637 2025-03-19 08:47:41.693 2025-03-19 08:47:41.693 27000 TIP 435304 10934 \N \N 6034649 2025-03-19 08:50:25.262 2025-03-19 08:50:25.262 1000 FEE 435258 1213 \N \N 6034650 2025-03-19 08:50:25.262 2025-03-19 08:50:25.262 9000 TIP 435258 1738 \N \N 6034691 2025-03-19 08:52:22.2 2025-03-19 08:52:22.2 100 FEE 435263 19668 \N \N 6034692 2025-03-19 08:52:22.2 2025-03-19 08:52:22.2 900 TIP 435263 20381 \N \N 6034695 2025-03-19 08:52:22.827 2025-03-19 08:52:22.827 9000 FEE 435263 17552 \N \N 6034696 2025-03-19 08:52:22.827 2025-03-19 08:52:22.827 81000 TIP 435263 10979 \N \N 6034719 2025-03-19 08:53:50.889 2025-03-19 08:53:50.889 2100 FEE 435261 701 \N \N 6034720 2025-03-19 08:53:50.889 2025-03-19 08:53:50.889 18900 TIP 435261 2347 \N \N 6034767 2025-03-19 08:54:56.743 2025-03-19 08:54:56.743 3000 FEE 435312 9906 \N \N 6034768 2025-03-19 08:54:56.743 2025-03-19 08:54:56.743 27000 TIP 435312 20525 \N \N 6034779 2025-03-19 08:54:57.867 2025-03-19 08:54:57.867 2300 FEE 435308 14688 \N \N 6034780 2025-03-19 08:54:57.867 2025-03-19 08:54:57.867 20700 TIP 435308 876 \N \N 6034786 2025-03-19 08:55:27.776 2025-03-19 08:55:27.776 2100 FEE 435229 10280 \N \N 6034787 2025-03-19 08:55:27.776 2025-03-19 08:55:27.776 18900 TIP 435229 13753 \N \N 6034807 2025-03-19 08:58:20.077 2025-03-19 08:58:20.077 3200 FEE 435290 1890 \N \N 6034808 2025-03-19 08:58:20.077 2025-03-19 08:58:20.077 28800 TIP 435290 21683 \N \N 6034809 2025-03-19 08:58:46.791 2025-03-19 08:58:46.791 0 FEE 435322 20754 \N \N 6034819 2025-03-19 08:59:19.24 2025-03-19 08:59:19.24 27000 FEE 435324 644 \N \N 6034820 2025-03-19 08:59:19.24 2025-03-19 08:59:19.24 243000 TIP 435324 19980 \N \N 6034821 2025-03-19 08:59:20.362 2025-03-19 08:59:20.362 100000 FEE 435327 15719 \N \N 6034825 2025-03-19 08:59:53.053 2025-03-19 08:59:53.053 5000 FEE 435328 17046 \N \N 6034826 2025-03-19 08:59:53.053 2025-03-19 08:59:53.053 45000 TIP 435328 9985 \N \N 6034827 2025-03-19 08:59:53.407 2025-03-19 08:59:53.407 5000 FEE 435328 5865 \N \N 6034828 2025-03-19 08:59:53.407 2025-03-19 08:59:53.407 45000 TIP 435328 16830 \N \N 6034831 2025-03-19 08:59:54.381 2025-03-19 08:59:54.381 5000 FEE 435328 2342 \N \N 6034832 2025-03-19 08:59:54.381 2025-03-19 08:59:54.381 45000 TIP 435328 5129 \N \N 6034852 2025-03-19 09:00:59.458 2025-03-19 09:00:59.458 1000 FEE 435331 12072 \N \N 6034862 2025-03-19 09:01:51.153 2025-03-19 09:01:51.153 1000 FEE 435335 9329 \N \N 6034883 2025-03-19 09:03:27.587 2025-03-19 09:03:27.587 1000 FEE 435337 4074 \N \N 6034886 2025-03-19 09:03:29.649 2025-03-19 09:03:29.649 8300 FEE 435231 18449 \N \N 6034887 2025-03-19 09:03:29.649 2025-03-19 09:03:29.649 74700 TIP 435231 9517 \N \N 6034906 2025-03-19 09:04:16.088 2025-03-19 09:04:16.088 1000 FEE 435341 20713 \N \N 6034919 2025-03-19 09:05:05.371 2025-03-19 09:05:05.371 3300 FEE 435115 976 \N \N 6034920 2025-03-19 09:05:05.371 2025-03-19 09:05:05.371 29700 TIP 435115 21514 \N \N 6034965 2025-03-19 09:08:35.42 2025-03-19 09:08:35.42 1000 FEE 435263 667 \N \N 6034966 2025-03-19 09:08:35.42 2025-03-19 09:08:35.42 9000 TIP 435263 21556 \N \N 6034974 2025-03-19 09:08:57.807 2025-03-19 09:08:57.807 8300 FEE 435327 11942 \N \N 6028094 2025-03-18 16:54:23.315 2025-03-18 16:54:23.315 7700 FEE 434285 5806 \N \N 6028095 2025-03-18 16:54:23.315 2025-03-18 16:54:23.315 69300 TIP 434285 21391 \N \N 6028098 2025-03-18 16:55:43.13 2025-03-18 16:55:43.13 100000 FEE 434472 13544 \N \N 6028120 2025-03-18 17:01:04.792 2025-03-18 17:01:04.792 10000 FEE 79125 9334 \N \N 6028121 2025-03-18 17:01:04.792 2025-03-18 17:01:04.792 90000 TIP 79125 2596 \N \N 6028135 2025-03-18 17:03:51.859 2025-03-18 17:03:51.859 2100 FEE 434026 6537 \N \N 6028136 2025-03-18 17:03:51.859 2025-03-18 17:03:51.859 18900 TIP 434026 954 \N \N 6028152 2025-03-18 17:04:31.194 2025-03-18 17:04:31.194 2100 FEE 434310 16789 \N \N 6028153 2025-03-18 17:04:31.194 2025-03-18 17:04:31.194 18900 TIP 434310 2775 \N \N 6028154 2025-03-18 17:04:34.062 2025-03-18 17:04:34.062 2100 FEE 433962 21247 \N \N 6028155 2025-03-18 17:04:34.062 2025-03-18 17:04:34.062 18900 TIP 433962 1007 \N \N 6028161 2025-03-18 17:04:56.817 2025-03-18 17:04:56.817 2100 FEE 434318 794 \N \N 6028162 2025-03-18 17:04:56.817 2025-03-18 17:04:56.817 18900 TIP 434318 5752 \N \N 6028208 2025-03-18 17:17:22.138 2025-03-18 17:17:22.138 1000 FEE 434472 20602 \N \N 6028209 2025-03-18 17:17:22.138 2025-03-18 17:17:22.138 9000 TIP 434472 19996 \N \N 6028210 2025-03-18 17:17:29.006 2025-03-18 17:17:29.006 1000 FEE 434406 17713 \N \N 6028211 2025-03-18 17:17:29.006 2025-03-18 17:17:29.006 9000 TIP 434406 14905 \N \N 6028214 2025-03-18 17:17:41.751 2025-03-18 17:17:41.751 1000 FEE 434456 632 \N \N 6028215 2025-03-18 17:17:41.751 2025-03-18 17:17:41.751 9000 TIP 434456 21275 \N \N 6028227 2025-03-18 17:22:59.824 2025-03-18 17:22:59.824 5000 FEE 434481 2593 \N \N 6028266 2025-03-18 17:39:48.234 2025-03-18 17:39:48.234 1000 FEE 433347 19512 \N \N 6028267 2025-03-18 17:39:48.234 2025-03-18 17:39:48.234 9000 TIP 433347 19463 \N \N 6028292 2025-03-18 17:51:54.673 2025-03-18 17:51:54.673 2100 FEE 434485 5703 \N \N 6028293 2025-03-18 17:51:54.673 2025-03-18 17:51:54.673 18900 TIP 434485 919 \N \N 6028298 2025-03-18 17:53:39.552 2025-03-18 17:53:39.552 10000 FEE 434488 663 \N \N 6028310 2025-03-18 17:57:08.442 2025-03-18 17:57:08.442 1000 FEE 434491 21070 \N \N 6028311 2025-03-18 17:57:11.604 2025-03-18 17:57:11.604 4200 FEE 433833 21178 \N \N 6028312 2025-03-18 17:57:11.604 2025-03-18 17:57:11.604 37800 TIP 433833 623 \N \N 6028333 2025-03-18 18:03:43.233 2025-03-18 18:03:43.233 1000 FEE 434101 10013 \N \N 6028334 2025-03-18 18:03:43.233 2025-03-18 18:03:43.233 9000 TIP 434101 21048 \N \N 6028337 2025-03-18 18:03:49.448 2025-03-18 18:03:49.448 800 FEE 434285 12808 \N \N 6028338 2025-03-18 18:03:49.448 2025-03-18 18:03:49.448 7200 TIP 434285 4079 \N \N 6028339 2025-03-18 18:03:50.533 2025-03-18 18:03:50.533 800 FEE 434285 16939 \N \N 6028340 2025-03-18 18:03:50.533 2025-03-18 18:03:50.533 7200 TIP 434285 9349 \N \N 6028357 2025-03-18 18:08:16.417 2025-03-18 18:08:16.417 0 FEE 434500 20642 \N \N 6028358 2025-03-18 18:08:50.72 2025-03-18 18:08:50.72 0 FEE 434500 9366 \N \N 6028390 2025-03-18 18:18:54.792 2025-03-18 18:18:54.792 2100 FEE 434295 9353 \N \N 6028391 2025-03-18 18:18:54.792 2025-03-18 18:18:54.792 18900 TIP 434295 1003 \N \N 6028423 2025-03-18 18:19:11.511 2025-03-18 18:19:11.511 100 FEE 423475 1802 \N \N 6028424 2025-03-18 18:19:11.511 2025-03-18 18:19:11.511 900 TIP 423475 5825 \N \N 6028433 2025-03-18 18:20:22.884 2025-03-18 18:20:22.884 1100 FEE 434285 21815 \N \N 6028434 2025-03-18 18:20:22.884 2025-03-18 18:20:22.884 9900 TIP 434285 14370 \N \N 6028461 2025-03-18 18:24:38.429 2025-03-18 18:24:38.429 2100 FEE 434440 21389 \N \N 6028462 2025-03-18 18:24:38.429 2025-03-18 18:24:38.429 18900 TIP 434440 650 \N \N 6028478 2025-03-18 18:34:44.074 2025-03-18 18:34:44.074 1000 FEE 434509 6430 \N \N 6028491 2025-03-18 18:41:27.66 2025-03-18 18:41:27.66 100 FEE 434509 18727 \N \N 6028492 2025-03-18 18:41:27.66 2025-03-18 18:41:27.66 900 TIP 434509 9669 \N \N 6028509 2025-03-18 18:41:30.269 2025-03-18 18:41:30.269 100 FEE 434509 6537 \N \N 6028510 2025-03-18 18:41:30.269 2025-03-18 18:41:30.269 900 TIP 434509 1173 \N \N 6028523 2025-03-18 18:41:31.905 2025-03-18 18:41:31.905 100 FEE 434509 10056 \N \N 6028524 2025-03-18 18:41:31.905 2025-03-18 18:41:31.905 900 TIP 434509 20840 \N \N 6028535 2025-03-18 18:41:40.196 2025-03-18 18:41:40.196 100 FEE 434509 7418 \N \N 6028536 2025-03-18 18:41:40.196 2025-03-18 18:41:40.196 900 TIP 434509 1769 \N \N 6028539 2025-03-18 18:41:40.954 2025-03-18 18:41:40.954 200 FEE 434509 14909 \N \N 6028540 2025-03-18 18:41:40.954 2025-03-18 18:41:40.954 1800 TIP 434509 2640 \N \N 6028543 2025-03-18 18:41:41.636 2025-03-18 18:41:41.636 100 FEE 434509 20603 \N \N 6028544 2025-03-18 18:41:41.636 2025-03-18 18:41:41.636 900 TIP 434509 620 \N \N 6028623 2025-03-18 18:46:55.714 2025-03-18 18:46:55.714 1000 FEE 434191 1221 \N \N 6028624 2025-03-18 18:46:55.714 2025-03-18 18:46:55.714 9000 TIP 434191 4378 \N \N 6028635 2025-03-18 18:47:48.167 2025-03-18 18:47:48.167 2100 FEE 434485 21666 \N \N 6028636 2025-03-18 18:47:48.167 2025-03-18 18:47:48.167 18900 TIP 434485 14939 \N \N 6028693 2025-03-18 19:00:19.075 2025-03-18 19:00:19.075 1000 FEE 434520 20998 \N \N 6028729 2025-03-18 19:08:54.264 2025-03-18 19:08:54.264 1000 FEE 434501 17522 \N \N 6028730 2025-03-18 19:08:54.264 2025-03-18 19:08:54.264 9000 TIP 434501 711 \N \N 6028741 2025-03-18 19:09:18.923 2025-03-18 19:09:18.923 1000 FEE 434441 2519 \N \N 6028742 2025-03-18 19:09:18.923 2025-03-18 19:09:18.923 9000 TIP 434441 1425 \N \N 6028745 2025-03-18 19:09:19.966 2025-03-18 19:09:19.966 8300 FEE 434514 11073 \N \N 6028746 2025-03-18 19:09:19.966 2025-03-18 19:09:19.966 74700 TIP 434514 21427 \N \N 6028763 2025-03-18 19:11:26.917 2025-03-18 19:11:26.917 1000 FEE 434529 7674 \N \N 6028778 2025-03-18 19:18:09.127 2025-03-18 19:18:09.127 8300 FEE 434528 6058 \N \N 6028779 2025-03-18 19:18:09.127 2025-03-18 19:18:09.127 74700 TIP 434528 10273 \N \N 6028831 2025-03-18 19:32:56.242 2025-03-18 19:32:56.242 100 FEE 434488 10342 \N \N 6028832 2025-03-18 19:32:56.242 2025-03-18 19:32:56.242 900 TIP 434488 7760 \N \N 6028862 2025-03-18 19:37:19.894 2025-03-18 19:37:19.894 100 FEE 434514 10554 \N \N 6028863 2025-03-18 19:37:19.894 2025-03-18 19:37:19.894 900 TIP 434514 16769 \N \N 6028889 2025-03-18 19:38:31.94 2025-03-18 19:38:31.94 9000 FEE 434440 1960 \N \N 6028890 2025-03-18 19:38:31.94 2025-03-18 19:38:31.94 81000 TIP 434440 17082 \N \N 6028899 2025-03-18 19:39:44.052 2025-03-18 19:39:44.052 900 FEE 434424 21575 \N \N 6028900 2025-03-18 19:39:44.052 2025-03-18 19:39:44.052 8100 TIP 434424 6749 \N \N 6028917 2025-03-18 19:43:45.115 2025-03-18 19:43:45.115 2000 FEE 434544 6160 \N \N 6028918 2025-03-18 19:43:45.115 2025-03-18 19:43:45.115 18000 TIP 434544 6164 \N \N 6028921 2025-03-18 19:43:45.519 2025-03-18 19:43:45.519 2000 FEE 434544 21804 \N \N 6028922 2025-03-18 19:43:45.519 2025-03-18 19:43:45.519 18000 TIP 434544 9874 \N \N 6028947 2025-03-18 19:48:42.976 2025-03-18 19:48:42.976 1000 FEE 434025 10016 \N \N 6028948 2025-03-18 19:48:42.976 2025-03-18 19:48:42.976 9000 TIP 434025 7580 \N \N 6028951 2025-03-18 19:48:59.494 2025-03-18 19:48:59.494 1000 FEE 434395 21136 \N \N 6028952 2025-03-18 19:48:59.494 2025-03-18 19:48:59.494 9000 TIP 434395 5852 \N \N 6028972 2025-03-18 19:56:07.748 2025-03-18 19:56:07.748 1000 FEE 434548 11395 \N \N 6028986 2025-03-18 20:02:43.62 2025-03-18 20:02:43.62 1000 FEE 434553 5828 \N \N 6029012 2025-03-18 20:14:05.91 2025-03-18 20:14:05.91 1100 FEE 434422 11670 \N \N 6029013 2025-03-18 20:14:05.91 2025-03-18 20:14:05.91 9900 TIP 434422 8713 \N \N 6028100 2025-03-18 16:57:09.061 2025-03-18 16:57:09.061 2500 FEE 434285 14220 \N \N 6028101 2025-03-18 16:57:09.061 2025-03-18 16:57:09.061 22500 TIP 434285 7903 \N \N 6028106 2025-03-18 16:57:20.78 2025-03-18 16:57:20.78 900 FEE 434472 10944 \N \N 6028107 2025-03-18 16:57:20.78 2025-03-18 16:57:20.78 8100 TIP 434472 15549 \N \N 6028144 2025-03-18 17:04:20.488 2025-03-18 17:04:20.488 2100 FEE 434048 925 \N \N 6028145 2025-03-18 17:04:20.488 2025-03-18 17:04:20.488 18900 TIP 434048 6137 \N \N 6028156 2025-03-18 17:04:45.635 2025-03-18 17:04:45.635 1000 FEE 434474 9421 \N \N 6028165 2025-03-18 17:05:01.333 2025-03-18 17:05:01.333 1000 FEE 434475 827 \N \N 6028167 2025-03-18 17:05:19.715 2025-03-18 17:05:19.715 1300 FEE 433376 21279 \N \N 6028168 2025-03-18 17:05:19.715 2025-03-18 17:05:19.715 11700 TIP 433376 15732 \N \N 6028186 2025-03-18 17:08:47.611 2025-03-18 17:08:47.611 800 FEE 434243 21442 \N \N 6028187 2025-03-18 17:08:47.611 2025-03-18 17:08:47.611 7200 TIP 434243 6137 \N \N 6028189 2025-03-18 17:09:16.594 2025-03-18 17:09:16.594 1000 FEE 434477 21040 \N \N 6028193 2025-03-18 17:12:57.085 2025-03-18 17:12:57.085 1000 FEE 434478 21356 \N \N 6028199 2025-03-18 17:14:36.082 2025-03-18 17:14:36.082 2100 FEE 434410 1352 \N \N 6028200 2025-03-18 17:14:36.082 2025-03-18 17:14:36.082 18900 TIP 434410 10608 \N \N 6028236 2025-03-18 17:26:31.955 2025-03-18 17:26:31.955 1000 FEE 434482 18351 \N \N 6028274 2025-03-18 17:42:36.852 2025-03-18 17:42:36.852 4000 FEE 434485 5444 \N \N 6028275 2025-03-18 17:42:36.852 2025-03-18 17:42:36.852 36000 TIP 434485 4062 \N \N 6028302 2025-03-18 17:54:15.54 2025-03-18 17:54:15.54 1000 FEE 434489 18901 \N \N 6028330 2025-03-18 18:02:16.333 2025-03-18 18:02:16.333 2100 FEE 434469 1447 \N \N 6028331 2025-03-18 18:02:16.333 2025-03-18 18:02:16.333 18900 TIP 434469 21072 \N \N 6028345 2025-03-18 18:04:46.478 2025-03-18 18:04:46.478 3100 FEE 434441 17522 \N \N 6028346 2025-03-18 18:04:46.478 2025-03-18 18:04:46.478 27900 TIP 434441 21281 \N \N 6028347 2025-03-18 18:04:47.103 2025-03-18 18:04:47.103 27900 FEE 434441 21666 \N \N 6028348 2025-03-18 18:04:47.103 2025-03-18 18:04:47.103 251100 TIP 434441 1447 \N \N 6028372 2025-03-18 18:10:29.845 2025-03-18 18:10:29.845 4600 FEE 434500 7903 \N \N 6028373 2025-03-18 18:10:29.845 2025-03-18 18:10:29.845 41400 TIP 434500 1534 \N \N 6028389 2025-03-18 18:18:31.127 2025-03-18 18:18:31.127 100000 FEE 434504 21026 \N \N 6028398 2025-03-18 18:18:59.491 2025-03-18 18:18:59.491 100 FEE 423475 6421 \N \N 6028399 2025-03-18 18:18:59.491 2025-03-18 18:18:59.491 900 TIP 423475 9355 \N \N 6028421 2025-03-18 18:19:11.119 2025-03-18 18:19:11.119 100 FEE 423475 4115 \N \N 6028422 2025-03-18 18:19:11.119 2025-03-18 18:19:11.119 900 TIP 423475 4650 \N \N 6028437 2025-03-18 18:20:23.381 2025-03-18 18:20:23.381 1100 FEE 434285 10096 \N \N 6028438 2025-03-18 18:20:23.381 2025-03-18 18:20:23.381 9900 TIP 434285 18956 \N \N 6028453 2025-03-18 18:22:19.985 2025-03-18 18:22:19.985 100 FEE 423720 1354 \N \N 6028454 2025-03-18 18:22:19.985 2025-03-18 18:22:19.985 900 TIP 423720 16354 \N \N 6028459 2025-03-18 18:24:33.656 2025-03-18 18:24:33.656 2100 FEE 434469 19087 \N \N 6028460 2025-03-18 18:24:33.656 2025-03-18 18:24:33.656 18900 TIP 434469 9347 \N \N 6028493 2025-03-18 18:41:28.081 2025-03-18 18:41:28.081 100 FEE 434509 10611 \N \N 6028494 2025-03-18 18:41:28.081 2025-03-18 18:41:28.081 900 TIP 434509 626 \N \N 6028517 2025-03-18 18:41:31.259 2025-03-18 18:41:31.259 100 FEE 434509 20577 \N \N 6028518 2025-03-18 18:41:31.259 2025-03-18 18:41:31.259 900 TIP 434509 20817 \N \N 6028519 2025-03-18 18:41:31.34 2025-03-18 18:41:31.34 100 FEE 434509 13753 \N \N 6028520 2025-03-18 18:41:31.34 2025-03-18 18:41:31.34 900 TIP 434509 20775 \N \N 6028521 2025-03-18 18:41:31.65 2025-03-18 18:41:31.65 100 FEE 434509 5175 \N \N 6028522 2025-03-18 18:41:31.65 2025-03-18 18:41:31.65 900 TIP 434509 10979 \N \N 6028527 2025-03-18 18:41:32.421 2025-03-18 18:41:32.421 100 FEE 434509 20409 \N \N 6028528 2025-03-18 18:41:32.421 2025-03-18 18:41:32.421 900 TIP 434509 21033 \N \N 6028537 2025-03-18 18:41:40.566 2025-03-18 18:41:40.566 100 FEE 434509 19576 \N \N 6028538 2025-03-18 18:41:40.566 2025-03-18 18:41:40.566 900 TIP 434509 16942 \N \N 6028547 2025-03-18 18:41:42.665 2025-03-18 18:41:42.665 200 FEE 434509 21631 \N \N 6028548 2025-03-18 18:41:42.665 2025-03-18 18:41:42.665 1800 TIP 434509 1785 \N \N 6028557 2025-03-18 18:41:44.579 2025-03-18 18:41:44.579 100 FEE 434509 19502 \N \N 6028558 2025-03-18 18:41:44.579 2025-03-18 18:41:44.579 900 TIP 434509 19494 \N \N 6028575 2025-03-18 18:41:52.425 2025-03-18 18:41:52.425 100 FEE 434509 13365 \N \N 6028576 2025-03-18 18:41:52.425 2025-03-18 18:41:52.425 900 TIP 434509 21369 \N \N 6028577 2025-03-18 18:41:52.618 2025-03-18 18:41:52.618 100 FEE 434509 20734 \N \N 6028578 2025-03-18 18:41:52.618 2025-03-18 18:41:52.618 900 TIP 434509 4259 \N \N 6028599 2025-03-18 18:43:21.627 2025-03-18 18:43:21.627 100 FEE 434509 11938 \N \N 6028600 2025-03-18 18:43:21.627 2025-03-18 18:43:21.627 900 TIP 434509 20381 \N \N 6028604 2025-03-18 18:44:06.929 2025-03-18 18:44:06.929 10000 FEE 433851 17722 \N \N 6028605 2025-03-18 18:44:06.929 2025-03-18 18:44:06.929 90000 TIP 433851 21815 \N \N 6028621 2025-03-18 18:46:53.418 2025-03-18 18:46:53.418 1000 FEE 434479 4763 \N \N 6028622 2025-03-18 18:46:53.418 2025-03-18 18:46:53.418 9000 TIP 434479 9695 \N \N 6028625 2025-03-18 18:47:00.784 2025-03-18 18:47:00.784 1000 FEE 434359 5003 \N \N 6028626 2025-03-18 18:47:00.784 2025-03-18 18:47:00.784 9000 TIP 434359 10393 \N \N 6028629 2025-03-18 18:47:37.991 2025-03-18 18:47:37.991 100 FEE 434489 12368 \N \N 6028630 2025-03-18 18:47:37.991 2025-03-18 18:47:37.991 900 TIP 434489 7510 \N \N 6028631 2025-03-18 18:47:38.235 2025-03-18 18:47:38.235 900 FEE 434489 19996 \N \N 6028632 2025-03-18 18:47:38.235 2025-03-18 18:47:38.235 8100 TIP 434489 3979 \N \N 6028652 2025-03-18 18:53:02.548 2025-03-18 18:53:02.548 1000 FEE 434515 21577 \N \N 6028658 2025-03-18 18:53:53.245 2025-03-18 18:53:53.245 1000 FEE 434438 16839 \N \N 6028659 2025-03-18 18:53:53.245 2025-03-18 18:53:53.245 9000 TIP 434438 13921 \N \N 6028671 2025-03-18 18:56:44.327 2025-03-18 18:56:44.327 1000 FEE 434516 4074 \N \N 6028672 2025-03-18 18:56:58.709 2025-03-18 18:56:58.709 1000 FEE 434435 1175 \N \N 6028673 2025-03-18 18:56:58.709 2025-03-18 18:56:58.709 9000 TIP 434435 18219 \N \N 6028690 2025-03-18 18:59:48.031 2025-03-18 18:59:48.031 1000 FEE 434366 7847 \N \N 6028691 2025-03-18 18:59:48.031 2025-03-18 18:59:48.031 9000 TIP 434366 16834 \N \N 6028700 2025-03-18 19:00:55.547 2025-03-18 19:00:55.547 1000 FEE 434358 2195 \N \N 6028701 2025-03-18 19:00:55.547 2025-03-18 19:00:55.547 9000 TIP 434358 20782 \N \N 6028723 2025-03-18 19:06:54.911 2025-03-18 19:06:54.911 8300 FEE 434523 7682 \N \N 6028724 2025-03-18 19:06:54.911 2025-03-18 19:06:54.911 74700 TIP 434523 749 \N \N 6028753 2025-03-18 19:10:29.41 2025-03-18 19:10:29.41 1000 FEE 434452 895 \N \N 6028754 2025-03-18 19:10:29.41 2025-03-18 19:10:29.41 9000 TIP 434452 21262 \N \N 6028765 2025-03-18 19:12:38.457 2025-03-18 19:12:38.457 1000 FEE 434530 16347 \N \N 6028782 2025-03-18 19:18:31.521 2025-03-18 19:18:31.521 8300 FEE 434498 4128 \N \N 6028783 2025-03-18 19:18:31.521 2025-03-18 19:18:31.521 74700 TIP 434498 10638 \N \N 6028784 2025-03-18 19:18:32.282 2025-03-18 19:18:32.282 8300 FEE 434488 21139 \N \N 6028785 2025-03-18 19:18:32.282 2025-03-18 19:18:32.282 74700 TIP 434488 17011 \N \N 6028866 2025-03-18 19:37:25.273 2025-03-18 19:37:25.273 100 FEE 434527 21539 \N \N 6028867 2025-03-18 19:37:25.273 2025-03-18 19:37:25.273 900 TIP 434527 11760 \N \N 6028910 2025-03-18 19:41:34.108 2025-03-18 19:41:34.108 2100 FEE 434539 2010 \N \N 6028102 2025-03-18 16:57:11.528 2025-03-18 16:57:11.528 1000 FEE 434473 20751 \N \N 6028112 2025-03-18 16:58:16.473 2025-03-18 16:58:16.473 100 FEE 434469 18174 \N \N 6028113 2025-03-18 16:58:16.473 2025-03-18 16:58:16.473 900 TIP 434469 20599 \N \N 6028128 2025-03-18 17:02:17.992 2025-03-18 17:02:17.992 2100 FEE 434440 18528 \N \N 6028129 2025-03-18 17:02:17.992 2025-03-18 17:02:17.992 18900 TIP 434440 859 \N \N 6028137 2025-03-18 17:03:53.98 2025-03-18 17:03:53.98 2100 FEE 433457 12272 \N \N 6028138 2025-03-18 17:03:53.98 2025-03-18 17:03:53.98 18900 TIP 433457 7654 \N \N 6028159 2025-03-18 17:04:55.995 2025-03-18 17:04:55.995 1300 FEE 433345 16966 \N \N 6028160 2025-03-18 17:04:55.995 2025-03-18 17:04:55.995 11700 TIP 433345 5499 \N \N 6028169 2025-03-18 17:05:21.052 2025-03-18 17:05:21.052 1300 FEE 433376 635 \N \N 6028170 2025-03-18 17:05:21.052 2025-03-18 17:05:21.052 11700 TIP 433376 11038 \N \N 6028203 2025-03-18 17:16:25.184 2025-03-18 17:16:25.184 1000 FEE 434285 20970 \N \N 6028204 2025-03-18 17:16:25.184 2025-03-18 17:16:25.184 9000 TIP 434285 1195 \N \N 6028205 2025-03-18 17:17:11.911 2025-03-18 17:17:11.911 1000 FEE 434395 9921 \N \N 6028206 2025-03-18 17:17:11.911 2025-03-18 17:17:11.911 9000 TIP 434395 13365 \N \N 6028277 2025-03-18 17:43:54.847 2025-03-18 17:43:54.847 1000 FEE 434277 13365 \N \N 6028278 2025-03-18 17:43:54.847 2025-03-18 17:43:54.847 9000 TIP 434277 21824 \N \N 6028299 2025-03-18 17:54:03.714 2025-03-18 17:54:03.714 1000 FEE 433311 7119 \N \N 6028300 2025-03-18 17:54:03.714 2025-03-18 17:54:03.714 9000 TIP 433311 15925 \N \N 6028303 2025-03-18 17:54:32.413 2025-03-18 17:54:32.413 2100 FEE 434488 18449 \N \N 6028304 2025-03-18 17:54:32.413 2025-03-18 17:54:32.413 18900 TIP 434488 21269 \N \N 6028317 2025-03-18 17:58:31.44 2025-03-18 17:58:31.44 1000 FEE 434492 14152 \N \N 6028364 2025-03-18 18:10:29.086 2025-03-18 18:10:29.086 2300 FEE 434500 1751 \N \N 6028365 2025-03-18 18:10:29.086 2025-03-18 18:10:29.086 20700 TIP 434500 9084 \N \N 6028415 2025-03-18 18:19:10.066 2025-03-18 18:19:10.066 100 FEE 423475 17157 \N \N 6028416 2025-03-18 18:19:10.066 2025-03-18 18:19:10.066 900 TIP 423475 17001 \N \N 6028431 2025-03-18 18:20:22.722 2025-03-18 18:20:22.722 1100 FEE 434285 1213 \N \N 6028432 2025-03-18 18:20:22.722 2025-03-18 18:20:22.722 9900 TIP 434285 18265 \N \N 6028443 2025-03-18 18:22:18.497 2025-03-18 18:22:18.497 100 FEE 423720 1472 \N \N 6028444 2025-03-18 18:22:18.497 2025-03-18 18:22:18.497 900 TIP 423720 19199 \N \N 6028481 2025-03-18 18:36:07.746 2025-03-18 18:36:07.746 2100 FEE 434480 4027 \N \N 6028482 2025-03-18 18:36:07.746 2025-03-18 18:36:07.746 18900 TIP 434480 8004 \N \N 6028525 2025-03-18 18:41:32.247 2025-03-18 18:41:32.247 100 FEE 434509 16301 \N \N 6028526 2025-03-18 18:41:32.247 2025-03-18 18:41:32.247 900 TIP 434509 19863 \N \N 6028533 2025-03-18 18:41:39.911 2025-03-18 18:41:39.911 100 FEE 434509 1784 \N \N 6028534 2025-03-18 18:41:39.911 2025-03-18 18:41:39.911 900 TIP 434509 2367 \N \N 6028545 2025-03-18 18:41:41.828 2025-03-18 18:41:41.828 100 FEE 434509 746 \N \N 6028546 2025-03-18 18:41:41.828 2025-03-18 18:41:41.828 900 TIP 434509 2039 \N \N 6028581 2025-03-18 18:41:53.006 2025-03-18 18:41:53.006 100 FEE 434509 2757 \N \N 6028582 2025-03-18 18:41:53.006 2025-03-18 18:41:53.006 900 TIP 434509 21714 \N \N 6028591 2025-03-18 18:43:20.624 2025-03-18 18:43:20.624 100 FEE 434509 2502 \N \N 6028592 2025-03-18 18:43:20.624 2025-03-18 18:43:20.624 900 TIP 434509 15200 \N \N 6028656 2025-03-18 18:53:36.123 2025-03-18 18:53:36.123 4000 FEE 434515 20981 \N \N 6028657 2025-03-18 18:53:36.123 2025-03-18 18:53:36.123 36000 TIP 434515 11678 \N \N 6028684 2025-03-18 18:58:41.431 2025-03-18 18:58:41.431 1000 FEE 434404 696 \N \N 6028685 2025-03-18 18:58:41.431 2025-03-18 18:58:41.431 9000 TIP 434404 14688 \N \N 6028698 2025-03-18 19:00:54.875 2025-03-18 19:00:54.875 1000 FEE 433937 1584 \N \N 6028699 2025-03-18 19:00:54.875 2025-03-18 19:00:54.875 9000 TIP 433937 18528 \N \N 6028705 2025-03-18 19:01:16.695 2025-03-18 19:01:16.695 1000 FEE 434521 634 \N \N 6028725 2025-03-18 19:06:59.432 2025-03-18 19:06:59.432 8300 FEE 434512 11164 \N \N 6028726 2025-03-18 19:06:59.432 2025-03-18 19:06:59.432 74700 TIP 434512 21022 \N \N 6028747 2025-03-18 19:09:46.649 2025-03-18 19:09:46.649 1000 FEE 434527 21526 \N \N 6028748 2025-03-18 19:09:57.135 2025-03-18 19:09:57.135 8300 FEE 434514 20555 \N \N 6028749 2025-03-18 19:09:57.135 2025-03-18 19:09:57.135 74700 TIP 434514 20562 \N \N 6028786 2025-03-18 19:18:34.188 2025-03-18 19:18:34.188 8300 FEE 434488 17526 \N \N 6028787 2025-03-18 19:18:34.188 2025-03-18 19:18:34.188 74700 TIP 434488 7847 \N \N 6028788 2025-03-18 19:18:34.219 2025-03-18 19:18:34.219 8300 FEE 434488 763 \N \N 6028789 2025-03-18 19:18:34.219 2025-03-18 19:18:34.219 74700 TIP 434488 21810 \N \N 6028809 2025-03-18 19:26:08.563 2025-03-18 19:26:08.563 1000 FEE 434537 623 \N \N 6028817 2025-03-18 19:28:56.58 2025-03-18 19:28:56.58 1000 FEE 434538 6421 \N \N 6028827 2025-03-18 19:32:44.968 2025-03-18 19:32:44.968 900 FEE 434498 11996 \N \N 6028828 2025-03-18 19:32:44.968 2025-03-18 19:32:44.968 8100 TIP 434498 902 \N \N 6028829 2025-03-18 19:32:48.658 2025-03-18 19:32:48.658 9000 FEE 434498 20058 \N \N 6028830 2025-03-18 19:32:48.658 2025-03-18 19:32:48.658 81000 TIP 434498 21710 \N \N 6028838 2025-03-18 19:36:10.188 2025-03-18 19:36:10.188 1000 FEE 434540 21145 \N \N 6028844 2025-03-18 19:36:20.36 2025-03-18 19:36:20.36 1000 FEE 434514 2543 \N \N 6028845 2025-03-18 19:36:20.36 2025-03-18 19:36:20.36 9000 TIP 434514 21033 \N \N 6028847 2025-03-18 19:36:43.188 2025-03-18 19:36:43.188 1000 FEE 434469 17798 \N \N 6028848 2025-03-18 19:36:43.188 2025-03-18 19:36:43.188 9000 TIP 434469 19018 \N \N 6028849 2025-03-18 19:36:43.364 2025-03-18 19:36:43.364 1000 FEE 434469 20619 \N \N 6028850 2025-03-18 19:36:43.364 2025-03-18 19:36:43.364 9000 TIP 434469 18601 \N \N 6028851 2025-03-18 19:36:44.03 2025-03-18 19:36:44.03 1000 FEE 434469 16680 \N \N 6028852 2025-03-18 19:36:44.03 2025-03-18 19:36:44.03 9000 TIP 434469 713 \N \N 6028857 2025-03-18 19:36:55.149 2025-03-18 19:36:55.149 900 FEE 434485 10469 \N \N 6028858 2025-03-18 19:36:55.149 2025-03-18 19:36:55.149 8100 TIP 434485 11819 \N \N 6028870 2025-03-18 19:37:28.261 2025-03-18 19:37:28.261 100 FEE 434540 777 \N \N 6028871 2025-03-18 19:37:28.261 2025-03-18 19:37:28.261 900 TIP 434540 8459 \N \N 6028880 2025-03-18 19:38:13.008 2025-03-18 19:38:13.008 100 FEE 434504 20751 \N \N 6028881 2025-03-18 19:38:13.008 2025-03-18 19:38:13.008 900 TIP 434504 16769 \N \N 6028893 2025-03-18 19:39:15.148 2025-03-18 19:39:15.148 100 FEE 434434 14260 \N \N 6028894 2025-03-18 19:39:15.148 2025-03-18 19:39:15.148 900 TIP 434434 6616 \N \N 6028902 2025-03-18 19:40:22.346 2025-03-18 19:40:22.346 10000 FEE 434543 12188 \N \N 6028942 2025-03-18 19:48:13.574 2025-03-18 19:48:13.574 1000 FEE 434300 16406 \N \N 6028943 2025-03-18 19:48:13.574 2025-03-18 19:48:13.574 9000 TIP 434300 19199 \N \N 6028953 2025-03-18 19:49:07.998 2025-03-18 19:49:07.998 1000 FEE 433499 16653 \N \N 6028954 2025-03-18 19:49:07.998 2025-03-18 19:49:07.998 9000 TIP 433499 987 \N \N 6028955 2025-03-18 19:49:09.437 2025-03-18 19:49:09.437 1000 FEE 433688 3342 \N \N 6028956 2025-03-18 19:49:09.437 2025-03-18 19:49:09.437 9000 TIP 433688 656 \N \N 6028967 2025-03-18 19:55:10.531 2025-03-18 19:55:10.531 1000 FEE 434309 8506 \N \N 6028968 2025-03-18 19:55:10.531 2025-03-18 19:55:10.531 9000 TIP 434309 10056 \N \N 6028970 2025-03-18 19:55:42.829 2025-03-18 19:55:42.829 2100 FEE 434535 14370 \N \N 6028971 2025-03-18 19:55:42.829 2025-03-18 19:55:42.829 18900 TIP 434535 3504 \N \N 6028982 2025-03-18 20:01:00.25 2025-03-18 20:01:00.25 1000 FEE 434551 6260 \N \N 6029004 2025-03-18 20:12:27.598 2025-03-18 20:12:27.598 1000 FEE 434559 2330 \N \N 6029010 2025-03-18 20:13:56.274 2025-03-18 20:13:56.274 1100 FEE 434384 14705 \N \N 6029011 2025-03-18 20:13:56.274 2025-03-18 20:13:56.274 9900 TIP 434384 13763 \N \N 6028141 2025-03-18 17:04:02.738 2025-03-18 17:04:02.738 2100 FEE 434000 9843 \N \N 6028142 2025-03-18 17:04:02.738 2025-03-18 17:04:02.738 18900 TIP 434000 13574 \N \N 6028218 2025-03-18 17:20:12.033 2025-03-18 17:20:12.033 1300 FEE 433889 19570 \N \N 6028219 2025-03-18 17:20:12.033 2025-03-18 17:20:12.033 11700 TIP 433889 21794 \N \N 6028223 2025-03-18 17:22:10.447 2025-03-18 17:22:10.447 2100 FEE 433753 16250 \N \N 6028224 2025-03-18 17:22:10.447 2025-03-18 17:22:10.447 18900 TIP 433753 876 \N \N 6028228 2025-03-18 17:23:04.975 2025-03-18 17:23:04.975 4200 FEE 434385 4802 \N \N 6028229 2025-03-18 17:23:04.975 2025-03-18 17:23:04.975 37800 TIP 434385 20280 \N \N 6028232 2025-03-18 17:25:01.896 2025-03-18 17:25:01.896 100 FEE 434399 18011 \N \N 6028233 2025-03-18 17:25:01.896 2025-03-18 17:25:01.896 900 TIP 434399 1720 \N \N 6028251 2025-03-18 17:29:17.123 2025-03-18 17:29:17.123 1000 FEE 434484 14688 \N \N 6028286 2025-03-18 17:46:58.663 2025-03-18 17:46:58.663 1000 FEE 434487 15526 \N \N 6028294 2025-03-18 17:52:00.621 2025-03-18 17:52:00.621 2100 FEE 434481 17682 \N \N 6028295 2025-03-18 17:52:00.621 2025-03-18 17:52:00.621 18900 TIP 434481 13759 \N \N 6028326 2025-03-18 18:01:44.735 2025-03-18 18:01:44.735 2100 FEE 434465 19471 \N \N 6028327 2025-03-18 18:01:44.735 2025-03-18 18:01:44.735 18900 TIP 434465 16660 \N \N 6028328 2025-03-18 18:02:04.895 2025-03-18 18:02:04.895 1000 FEE 434496 19193 \N \N 6028352 2025-03-18 18:05:20.026 2025-03-18 18:05:20.026 100000 FEE 434500 3506 \N \N 6028370 2025-03-18 18:10:29.784 2025-03-18 18:10:29.784 2300 FEE 434500 21070 \N \N 6028371 2025-03-18 18:10:29.784 2025-03-18 18:10:29.784 20700 TIP 434500 1712 \N \N 6028384 2025-03-18 18:14:30.012 2025-03-18 18:14:30.012 1000 FEE 434503 17157 \N \N 6028392 2025-03-18 18:18:57.593 2025-03-18 18:18:57.593 100 FEE 423475 20613 \N \N 6028393 2025-03-18 18:18:57.593 2025-03-18 18:18:57.593 900 TIP 423475 7097 \N \N 6028407 2025-03-18 18:19:09.193 2025-03-18 18:19:09.193 100 FEE 423475 8045 \N \N 6028408 2025-03-18 18:19:09.193 2025-03-18 18:19:09.193 900 TIP 423475 1970 \N \N 6028411 2025-03-18 18:19:09.658 2025-03-18 18:19:09.658 100 FEE 423475 19463 \N \N 6028412 2025-03-18 18:19:09.658 2025-03-18 18:19:09.658 900 TIP 423475 20026 \N \N 6028413 2025-03-18 18:19:10.042 2025-03-18 18:19:10.042 100 FEE 423475 2514 \N \N 6028414 2025-03-18 18:19:10.042 2025-03-18 18:19:10.042 900 TIP 423475 19826 \N \N 6028449 2025-03-18 18:22:19.286 2025-03-18 18:22:19.286 100 FEE 423720 7587 \N \N 6028450 2025-03-18 18:22:19.286 2025-03-18 18:22:19.286 900 TIP 423720 1505 \N \N 6028451 2025-03-18 18:22:19.766 2025-03-18 18:22:19.766 200 FEE 423720 17741 \N \N 6028452 2025-03-18 18:22:19.766 2025-03-18 18:22:19.766 1800 TIP 423720 11527 \N \N 6028463 2025-03-18 18:24:44.17 2025-03-18 18:24:44.17 2100 FEE 434498 14905 \N \N 6028464 2025-03-18 18:24:44.17 2025-03-18 18:24:44.17 18900 TIP 434498 4238 \N \N 6028499 2025-03-18 18:41:29.055 2025-03-18 18:41:29.055 100 FEE 434509 2734 \N \N 6028500 2025-03-18 18:41:29.055 2025-03-18 18:41:29.055 900 TIP 434509 9496 \N \N 6028551 2025-03-18 18:41:43.3 2025-03-18 18:41:43.3 100 FEE 434509 15049 \N \N 6028552 2025-03-18 18:41:43.3 2025-03-18 18:41:43.3 900 TIP 434509 761 \N \N 6028553 2025-03-18 18:41:43.709 2025-03-18 18:41:43.709 100 FEE 434509 1145 \N \N 6028554 2025-03-18 18:41:43.709 2025-03-18 18:41:43.709 900 TIP 434509 11670 \N \N 6028561 2025-03-18 18:41:45.22 2025-03-18 18:41:45.22 100 FEE 434509 20381 \N \N 6028562 2025-03-18 18:41:45.22 2025-03-18 18:41:45.22 900 TIP 434509 21303 \N \N 6028569 2025-03-18 18:41:50.093 2025-03-18 18:41:50.093 100 FEE 434509 20157 \N \N 6028570 2025-03-18 18:41:50.093 2025-03-18 18:41:50.093 900 TIP 434509 21083 \N \N 6028579 2025-03-18 18:41:52.845 2025-03-18 18:41:52.845 100 FEE 434509 13133 \N \N 6028580 2025-03-18 18:41:52.845 2025-03-18 18:41:52.845 900 TIP 434509 1162 \N \N 6028585 2025-03-18 18:41:53.449 2025-03-18 18:41:53.449 100 FEE 434509 9336 \N \N 6028586 2025-03-18 18:41:53.449 2025-03-18 18:41:53.449 900 TIP 434509 16556 \N \N 6028593 2025-03-18 18:43:20.985 2025-03-18 18:43:20.985 100 FEE 434509 21571 \N \N 6028594 2025-03-18 18:43:20.985 2025-03-18 18:43:20.985 900 TIP 434509 17046 \N \N 6028595 2025-03-18 18:43:21.436 2025-03-18 18:43:21.436 100 FEE 434509 21405 \N \N 6028596 2025-03-18 18:43:21.436 2025-03-18 18:43:21.436 900 TIP 434509 14255 \N \N 6028601 2025-03-18 18:43:23.098 2025-03-18 18:43:23.098 10000 FEE 434385 16965 \N \N 6028602 2025-03-18 18:43:23.098 2025-03-18 18:43:23.098 90000 TIP 434385 21532 \N \N 6028611 2025-03-18 18:46:51.529 2025-03-18 18:46:51.529 1000 FEE 434479 876 \N \N 6028612 2025-03-18 18:46:51.529 2025-03-18 18:46:51.529 9000 TIP 434479 4798 \N \N 6028613 2025-03-18 18:46:51.786 2025-03-18 18:46:51.786 1000 FEE 434479 4035 \N \N 6028614 2025-03-18 18:46:51.786 2025-03-18 18:46:51.786 9000 TIP 434479 19531 \N \N 6028619 2025-03-18 18:46:53.222 2025-03-18 18:46:53.222 1000 FEE 434479 10096 \N \N 6028620 2025-03-18 18:46:53.222 2025-03-18 18:46:53.222 9000 TIP 434479 4776 \N \N 6028638 2025-03-18 18:49:09.119 2025-03-18 18:49:09.119 10000 FEE 433937 4250 \N \N 6028639 2025-03-18 18:49:09.119 2025-03-18 18:49:09.119 90000 TIP 433937 12291 \N \N 6028645 2025-03-18 18:51:39.441 2025-03-18 18:51:39.441 1000 FEE 434285 5308 \N \N 6028646 2025-03-18 18:51:39.441 2025-03-18 18:51:39.441 9000 TIP 434285 21091 \N \N 6028647 2025-03-18 18:51:43.174 2025-03-18 18:51:43.174 1000 FEE 434278 11938 \N \N 6028648 2025-03-18 18:51:43.174 2025-03-18 18:51:43.174 9000 TIP 434278 1602 \N \N 6028653 2025-03-18 18:53:09.659 2025-03-18 18:53:09.659 1000 FEE 434417 1002 \N \N 6028654 2025-03-18 18:53:09.659 2025-03-18 18:53:09.659 9000 TIP 434417 1272 \N \N 6028660 2025-03-18 18:54:03.603 2025-03-18 18:54:03.603 1000 FEE 434335 11776 \N \N 6028661 2025-03-18 18:54:03.603 2025-03-18 18:54:03.603 9000 TIP 434335 21401 \N \N 6028676 2025-03-18 18:57:55.457 2025-03-18 18:57:55.457 1000 FEE 434518 963 \N \N 6028716 2025-03-18 19:05:39.84 2025-03-18 19:05:39.84 1000 FEE 265848 1426 \N \N 6028717 2025-03-18 19:05:39.84 2025-03-18 19:05:39.84 9000 TIP 265848 10433 \N \N 6028731 2025-03-18 19:08:59.615 2025-03-18 19:08:59.615 1000 FEE 434526 18232 \N \N 6028737 2025-03-18 19:09:17.838 2025-03-18 19:09:17.838 8300 FEE 434514 21389 \N \N 6028738 2025-03-18 19:09:17.838 2025-03-18 19:09:17.838 74700 TIP 434514 15925 \N \N 6028739 2025-03-18 19:09:18.006 2025-03-18 19:09:18.006 8300 FEE 434514 18116 \N \N 6028740 2025-03-18 19:09:18.006 2025-03-18 19:09:18.006 74700 TIP 434514 986 \N \N 6028743 2025-03-18 19:09:19.919 2025-03-18 19:09:19.919 8300 FEE 434514 12738 \N \N 6028744 2025-03-18 19:09:19.919 2025-03-18 19:09:19.919 74700 TIP 434514 5520 \N \N 6028759 2025-03-18 19:10:41.94 2025-03-18 19:10:41.94 100 FEE 434527 4115 \N \N 6028760 2025-03-18 19:10:41.94 2025-03-18 19:10:41.94 900 TIP 434527 21303 \N \N 6028769 2025-03-18 19:14:14.638 2025-03-18 19:14:14.638 1000 FEE 434532 2502 \N \N 6028776 2025-03-18 19:18:01.983 2025-03-18 19:18:01.983 4200 FEE 409082 10719 \N \N 6028777 2025-03-18 19:18:01.983 2025-03-18 19:18:01.983 37800 TIP 409082 12774 \N \N 6028810 2025-03-18 19:26:11.822 2025-03-18 19:26:11.822 1000 FEE 434026 20680 \N \N 6028811 2025-03-18 19:26:11.822 2025-03-18 19:26:11.822 9000 TIP 434026 21482 \N \N 6028840 2025-03-18 19:36:19.875 2025-03-18 19:36:19.875 1000 FEE 434514 683 \N \N 6028841 2025-03-18 19:36:19.875 2025-03-18 19:36:19.875 9000 TIP 434514 1429 \N \N 6028846 2025-03-18 19:36:31.606 2025-03-18 19:36:31.606 10000 FEE 434541 21166 \N \N 6028859 2025-03-18 19:36:55.973 2025-03-18 19:36:55.973 9000 FEE 434485 822 \N \N 6034523 2025-03-19 08:39:20.638 2025-03-19 08:39:20.638 22500 TIP 435046 937 \N \N 6034526 2025-03-19 08:39:46.388 2025-03-19 08:39:46.388 3000 FEE 435292 17148 \N \N 6034527 2025-03-19 08:39:46.388 2025-03-19 08:39:46.388 27000 TIP 435292 21164 \N \N 6034544 2025-03-19 08:41:09.896 2025-03-19 08:41:09.896 0 FEE 435224 20979 \N \N 6034567 2025-03-19 08:44:22.175 2025-03-19 08:44:22.175 1000 FEE 435304 712 \N \N 6034572 2025-03-19 08:44:26.577 2025-03-19 08:44:26.577 1000 FEE 435294 854 \N \N 6034573 2025-03-19 08:44:26.577 2025-03-19 08:44:26.577 9000 TIP 435294 9262 \N \N 6034585 2025-03-19 08:44:46.069 2025-03-19 08:44:46.069 1000 FEE 435120 15703 \N \N 6034586 2025-03-19 08:44:46.069 2025-03-19 08:44:46.069 9000 TIP 435120 4118 \N \N 6034626 2025-03-19 08:47:14.659 2025-03-19 08:47:14.659 2100 FEE 435231 17184 \N \N 6034627 2025-03-19 08:47:14.659 2025-03-19 08:47:14.659 18900 TIP 435231 16351 \N \N 6034642 2025-03-19 08:48:40.151 2025-03-19 08:48:40.151 0 FEE 435306 2233 \N \N 6034647 2025-03-19 08:49:55.722 2025-03-19 08:49:55.722 1000 FEE 435309 798 \N \N 6034655 2025-03-19 08:50:54.588 2025-03-19 08:50:54.588 1000 FEE 435312 2176 \N \N 6034667 2025-03-19 08:51:31.367 2025-03-19 08:51:31.367 800 FEE 435283 7960 \N \N 6034668 2025-03-19 08:51:31.367 2025-03-19 08:51:31.367 7200 TIP 435283 16513 \N \N 6034676 2025-03-19 08:51:58.704 2025-03-19 08:51:58.704 100000 FEE 435314 21275 \N \N 6034685 2025-03-19 08:52:08.943 2025-03-19 08:52:08.943 900 FEE 435224 2232 \N \N 6034686 2025-03-19 08:52:08.943 2025-03-19 08:52:08.943 8100 TIP 435224 2309 \N \N 6034703 2025-03-19 08:53:28.005 2025-03-19 08:53:28.005 2100 FEE 435030 8459 \N \N 6034704 2025-03-19 08:53:28.005 2025-03-19 08:53:28.005 18900 TIP 435030 1316 \N \N 6034725 2025-03-19 08:53:57.475 2025-03-19 08:53:57.475 2100 FEE 435136 15526 \N \N 6034726 2025-03-19 08:53:57.475 2025-03-19 08:53:57.475 18900 TIP 435136 20913 \N \N 6034749 2025-03-19 08:54:10.824 2025-03-19 08:54:10.824 2100 FEE 434994 11153 \N \N 6034750 2025-03-19 08:54:10.824 2025-03-19 08:54:10.824 18900 TIP 434994 836 \N \N 6034769 2025-03-19 08:54:56.836 2025-03-19 08:54:56.836 2300 FEE 435308 12921 \N \N 6034770 2025-03-19 08:54:56.836 2025-03-19 08:54:56.836 20700 TIP 435308 700 \N \N 6034788 2025-03-19 08:55:36.543 2025-03-19 08:55:36.543 1000 FEE 435319 16543 \N \N 6034797 2025-03-19 08:57:48.807 2025-03-19 08:57:48.807 2500 FEE 435303 21114 \N \N 6034798 2025-03-19 08:57:48.807 2025-03-19 08:57:48.807 22500 TIP 435303 4378 \N \N 6034799 2025-03-19 08:57:50.508 2025-03-19 08:57:50.508 1000 FEE 435324 1401 \N \N 6034829 2025-03-19 08:59:53.994 2025-03-19 08:59:53.994 5000 FEE 435328 2309 \N \N 6034830 2025-03-19 08:59:53.994 2025-03-19 08:59:53.994 45000 TIP 435328 20337 \N \N 6034837 2025-03-19 08:59:57.117 2025-03-19 08:59:57.117 900 FEE 435328 20201 \N \N 6034838 2025-03-19 08:59:57.117 2025-03-19 08:59:57.117 8100 TIP 435328 12749 \N \N 6034839 2025-03-19 08:59:57.874 2025-03-19 08:59:57.874 9000 FEE 435328 1010 \N \N 6034840 2025-03-19 08:59:57.874 2025-03-19 08:59:57.874 81000 TIP 435328 1244 \N \N 6034845 2025-03-19 09:00:49.257 2025-03-19 09:00:49.257 1000 FEE 435330 1213 \N \N 6034853 2025-03-19 09:01:03.512 2025-03-19 09:01:03.512 0 FEE 435330 1114 \N \N 6034857 2025-03-19 09:01:15.097 2025-03-19 09:01:15.097 1000 FEE 435332 20755 \N \N 6034870 2025-03-19 09:02:49.657 2025-03-19 09:02:49.657 3300 FEE 435217 822 \N \N 6034871 2025-03-19 09:02:49.657 2025-03-19 09:02:49.657 29700 TIP 435217 18005 \N \N 6034888 2025-03-19 09:03:29.809 2025-03-19 09:03:29.809 8300 FEE 435231 940 \N \N 6034889 2025-03-19 09:03:29.809 2025-03-19 09:03:29.809 74700 TIP 435231 17209 \N \N 6034907 2025-03-19 09:04:19.658 2025-03-19 09:04:19.658 1000 FEE 435342 19346 \N \N 6034928 2025-03-19 09:05:19.117 2025-03-19 09:05:19.117 21000 FEE 435343 17082 \N \N 6034930 2025-03-19 09:05:24.536 2025-03-19 09:05:24.536 3300 FEE 435274 20133 \N \N 6034931 2025-03-19 09:05:24.536 2025-03-19 09:05:24.536 29700 TIP 435274 20655 \N \N 6034939 2025-03-19 09:05:46.363 2025-03-19 09:05:46.363 3300 FEE 435318 16667 \N \N 6034940 2025-03-19 09:05:46.363 2025-03-19 09:05:46.363 29700 TIP 435318 2088 \N \N 6034978 2025-03-19 09:08:58.203 2025-03-19 09:08:58.203 8300 FEE 435327 16354 \N \N 6034979 2025-03-19 09:08:58.203 2025-03-19 09:08:58.203 74700 TIP 435327 20788 \N \N 6035020 2025-03-19 09:10:01.96 2025-03-19 09:10:01.96 100 FEE 435327 19905 \N \N 6035021 2025-03-19 09:10:01.96 2025-03-19 09:10:01.96 900 TIP 435327 866 \N \N 6035024 2025-03-19 09:10:02.902 2025-03-19 09:10:02.902 9000 FEE 435327 19581 \N \N 6035025 2025-03-19 09:10:02.902 2025-03-19 09:10:02.902 81000 TIP 435327 14503 \N \N 6035028 2025-03-19 09:10:05.463 2025-03-19 09:10:05.463 1000 FEE 435314 15100 \N \N 6035029 2025-03-19 09:10:05.463 2025-03-19 09:10:05.463 9000 TIP 435314 4474 \N \N 6035042 2025-03-19 09:10:10.623 2025-03-19 09:10:10.623 8300 FEE 435231 2330 \N \N 6035043 2025-03-19 09:10:10.623 2025-03-19 09:10:10.623 74700 TIP 435231 8037 \N \N 6035058 2025-03-19 09:12:04.502 2025-03-19 09:12:04.502 1600 FEE 434820 661 \N \N 6035059 2025-03-19 09:12:04.502 2025-03-19 09:12:04.502 14400 TIP 434820 10280 \N \N 6035107 2025-03-19 09:15:21.812 2025-03-19 09:15:21.812 2100 FEE 435342 20892 \N \N 6035108 2025-03-19 09:15:21.812 2025-03-19 09:15:21.812 18900 TIP 435342 4118 \N \N 6035149 2025-03-19 09:16:56.931 2025-03-19 09:16:56.931 0 FEE 435350 1006 \N \N 6035196 2025-03-19 09:24:32.325 2025-03-19 09:24:32.325 2300 FEE 435346 12744 \N \N 6035197 2025-03-19 09:24:32.325 2025-03-19 09:24:32.325 20700 TIP 435346 8176 \N \N 6035247 2025-03-19 09:28:44.48 2025-03-19 09:28:44.48 1000 FEE 435326 16542 \N \N 6035248 2025-03-19 09:28:44.48 2025-03-19 09:28:44.48 9000 TIP 435326 12656 \N \N 6035257 2025-03-19 09:29:00.137 2025-03-19 09:29:00.137 1000 FEE 435328 4754 \N \N 6035258 2025-03-19 09:29:00.137 2025-03-19 09:29:00.137 9000 TIP 435328 859 \N \N 6035273 2025-03-19 09:30:04.909 2025-03-19 09:30:04.909 1000 FEE 435361 20481 \N \N 6035274 2025-03-19 09:30:04.909 2025-03-19 09:30:04.909 9000 TIP 435361 21020 \N \N 6035279 2025-03-19 09:31:24.07 2025-03-19 09:31:24.07 3000 FEE 435359 9332 \N \N 6035280 2025-03-19 09:31:24.07 2025-03-19 09:31:24.07 27000 TIP 435359 2780 \N \N 6035281 2025-03-19 09:31:24.686 2025-03-19 09:31:24.686 27000 FEE 435359 16432 \N \N 6035282 2025-03-19 09:31:24.686 2025-03-19 09:31:24.686 243000 TIP 435359 16347 \N \N 6035389 2025-03-19 09:38:49 2025-03-19 09:38:49 2100 FEE 435120 13767 \N \N 6035390 2025-03-19 09:38:49 2025-03-19 09:38:49 18900 TIP 435120 1092 \N \N 6035423 2025-03-19 09:42:09.355 2025-03-19 09:42:09.355 1100 FEE 435261 802 \N \N 6035424 2025-03-19 09:42:09.355 2025-03-19 09:42:09.355 9900 TIP 435261 5085 \N \N 6035439 2025-03-19 09:43:39.042 2025-03-19 09:43:39.042 10000 FEE 435046 17116 \N \N 6035440 2025-03-19 09:43:39.042 2025-03-19 09:43:39.042 90000 TIP 435046 1800 \N \N 6035448 2025-03-19 09:44:32.577 2025-03-19 09:44:32.577 2100 FEE 435235 1090 \N \N 6035449 2025-03-19 09:44:32.577 2025-03-19 09:44:32.577 18900 TIP 435235 20190 \N \N 6035451 2025-03-19 09:44:36.277 2025-03-19 09:44:36.277 10000 FEE 435328 13361 \N \N 6035452 2025-03-19 09:44:36.277 2025-03-19 09:44:36.277 90000 TIP 435328 17817 \N \N 6035465 2025-03-19 09:44:50.221 2025-03-19 09:44:50.221 1100 FEE 434807 19005 \N \N 6035466 2025-03-19 09:44:50.221 2025-03-19 09:44:50.221 9900 TIP 434807 618 \N \N 6035484 2025-03-19 09:45:01.183 2025-03-19 09:45:01.183 1000 FEE 435375 16753 \N \N 6035485 2025-03-19 09:45:01.183 2025-03-19 09:45:01.183 9000 TIP 435375 9330 \N \N 6035497 2025-03-19 09:45:33.352 2025-03-19 09:45:33.352 1000 FEE 435231 15544 \N \N 6035498 2025-03-19 09:45:33.352 2025-03-19 09:45:33.352 9000 TIP 435231 5129 \N \N 6035521 2025-03-19 09:45:44.49 2025-03-19 09:45:44.49 1000 FEE 435231 15978 \N \N 6035522 2025-03-19 09:45:44.49 2025-03-19 09:45:44.49 9000 TIP 435231 13467 \N \N 6035554 2025-03-19 09:51:00.644 2025-03-19 09:51:00.644 2100 FEE 435328 13599 \N \N 6035555 2025-03-19 09:51:00.644 2025-03-19 09:51:00.644 18900 TIP 435328 10549 \N \N 6035559 2025-03-19 09:51:14.996 2025-03-19 09:51:14.996 0 FEE 435380 21131 \N \N 6035564 2025-03-19 09:51:21.349 2025-03-19 09:51:21.349 1000 FEE 435231 21771 \N \N 6035565 2025-03-19 09:51:21.349 2025-03-19 09:51:21.349 9000 TIP 435231 6360 \N \N 6035570 2025-03-19 09:51:35.302 2025-03-19 09:51:35.302 1000 FEE 435381 21506 \N \N 6035587 2025-03-19 09:52:35.805 2025-03-19 09:52:35.805 1000 FEE 434124 649 \N \N 6035588 2025-03-19 09:52:35.805 2025-03-19 09:52:35.805 9000 TIP 434124 859 \N \N 6035593 2025-03-19 09:52:38.511 2025-03-19 09:52:38.511 0 FEE 435378 21033 \N \N 6035594 2025-03-19 09:52:38.745 2025-03-19 09:52:38.745 1000 FEE 435381 633 \N \N 6028178 2025-03-18 17:08:44.402 2025-03-18 17:08:44.402 1000 FEE 434437 722 \N \N 6028179 2025-03-18 17:08:44.402 2025-03-18 17:08:44.402 9000 TIP 434437 1488 \N \N 6028195 2025-03-18 17:13:35.978 2025-03-18 17:13:35.978 1000 FEE 434479 1803 \N \N 6028239 2025-03-18 17:26:59.578 2025-03-18 17:26:59.578 400 FEE 434392 11873 \N \N 6028240 2025-03-18 17:26:59.578 2025-03-18 17:26:59.578 3600 TIP 434392 9552 \N \N 6028243 2025-03-18 17:27:01.61 2025-03-18 17:27:01.61 400 FEE 434316 19980 \N \N 6028244 2025-03-18 17:27:01.61 2025-03-18 17:27:01.61 3600 TIP 434316 11789 \N \N 6028248 2025-03-18 17:29:00.898 2025-03-18 17:29:00.898 100 FEE 433978 4166 \N \N 6028249 2025-03-18 17:29:00.898 2025-03-18 17:29:00.898 900 TIP 433978 16965 \N \N 6028252 2025-03-18 17:29:21.547 2025-03-18 17:29:21.547 9000 FEE 434469 16301 \N \N 6028253 2025-03-18 17:29:21.547 2025-03-18 17:29:21.547 81000 TIP 434469 9353 \N \N 6028270 2025-03-18 17:42:01.905 2025-03-18 17:42:01.905 4000 FEE 434485 20337 \N \N 6028271 2025-03-18 17:42:01.905 2025-03-18 17:42:01.905 36000 TIP 434485 717 \N \N 6028305 2025-03-18 17:55:08.054 2025-03-18 17:55:08.054 10000 FEE 434396 750 \N \N 6028306 2025-03-18 17:55:08.054 2025-03-18 17:55:08.054 90000 TIP 434396 19417 \N \N 6028308 2025-03-18 17:55:56.262 2025-03-18 17:55:56.262 1000 FEE 434490 4167 \N \N 6028314 2025-03-18 17:58:06.22 2025-03-18 17:58:06.22 5000 FEE 434413 1286 \N \N 6028315 2025-03-18 17:58:06.22 2025-03-18 17:58:06.22 45000 TIP 434413 12774 \N \N 6028320 2025-03-18 17:59:09.404 2025-03-18 17:59:09.404 1000 FEE 434493 21714 \N \N 6028362 2025-03-18 18:10:28.946 2025-03-18 18:10:28.946 2300 FEE 434500 21061 \N \N 6028363 2025-03-18 18:10:28.946 2025-03-18 18:10:28.946 20700 TIP 434500 1316 \N \N 6028405 2025-03-18 18:19:08.951 2025-03-18 18:19:08.951 100 FEE 423475 8173 \N \N 6028406 2025-03-18 18:19:08.951 2025-03-18 18:19:08.951 900 TIP 423475 1611 \N \N 6028429 2025-03-18 18:20:22.593 2025-03-18 18:20:22.593 1100 FEE 434285 21339 \N \N 6028430 2025-03-18 18:20:22.593 2025-03-18 18:20:22.593 9900 TIP 434285 17722 \N \N 6028435 2025-03-18 18:20:23.198 2025-03-18 18:20:23.198 1100 FEE 434285 13378 \N \N 6028436 2025-03-18 18:20:23.198 2025-03-18 18:20:23.198 9900 TIP 434285 17541 \N \N 6028445 2025-03-18 18:22:18.827 2025-03-18 18:22:18.827 100 FEE 423720 2748 \N \N 6028446 2025-03-18 18:22:18.827 2025-03-18 18:22:18.827 900 TIP 423720 14381 \N \N 6028447 2025-03-18 18:22:19.111 2025-03-18 18:22:19.111 100 FEE 423720 15588 \N \N 6028448 2025-03-18 18:22:19.111 2025-03-18 18:22:19.111 900 TIP 423720 909 \N \N 6028468 2025-03-18 18:25:50.248 2025-03-18 18:25:50.248 1000 FEE 434508 1002 \N \N 6028501 2025-03-18 18:41:29.186 2025-03-18 18:41:29.186 100 FEE 434509 960 \N \N 6028502 2025-03-18 18:41:29.186 2025-03-18 18:41:29.186 900 TIP 434509 20754 \N \N 6028511 2025-03-18 18:41:30.471 2025-03-18 18:41:30.471 100 FEE 434509 11073 \N \N 6028512 2025-03-18 18:41:30.471 2025-03-18 18:41:30.471 900 TIP 434509 11443 \N \N 6028513 2025-03-18 18:41:30.696 2025-03-18 18:41:30.696 100 FEE 434509 4633 \N \N 6028514 2025-03-18 18:41:30.696 2025-03-18 18:41:30.696 900 TIP 434509 1439 \N \N 6028515 2025-03-18 18:41:30.947 2025-03-18 18:41:30.947 100 FEE 434509 2065 \N \N 6028516 2025-03-18 18:41:30.947 2025-03-18 18:41:30.947 900 TIP 434509 15336 \N \N 6028529 2025-03-18 18:41:32.789 2025-03-18 18:41:32.789 100 FEE 434509 9916 \N \N 6028530 2025-03-18 18:41:32.789 2025-03-18 18:41:32.789 900 TIP 434509 9552 \N \N 6028549 2025-03-18 18:41:42.985 2025-03-18 18:41:42.985 100 FEE 434509 19016 \N \N 6028550 2025-03-18 18:41:42.985 2025-03-18 18:41:42.985 900 TIP 434509 15690 \N \N 6028563 2025-03-18 18:41:45.468 2025-03-18 18:41:45.468 100 FEE 434509 2528 \N \N 6028564 2025-03-18 18:41:45.468 2025-03-18 18:41:45.468 900 TIP 434509 6463 \N \N 6028567 2025-03-18 18:41:49.697 2025-03-18 18:41:49.697 100 FEE 434509 21810 \N \N 6028568 2025-03-18 18:41:49.697 2025-03-18 18:41:49.697 900 TIP 434509 756 \N \N 6028677 2025-03-18 18:58:01.362 2025-03-18 18:58:01.362 1000 FEE 434442 756 \N \N 6028678 2025-03-18 18:58:01.362 2025-03-18 18:58:01.362 9000 TIP 434442 16542 \N \N 6028702 2025-03-18 19:00:55.553 2025-03-18 19:00:55.553 1000 FEE 433937 9261 \N \N 6028703 2025-03-18 19:00:55.553 2025-03-18 19:00:55.553 9000 TIP 433937 837 \N \N 6028707 2025-03-18 19:02:09.519 2025-03-18 19:02:09.519 1000 FEE 434523 1624 \N \N 6028718 2025-03-18 19:06:04.212 2025-03-18 19:06:04.212 1000 FEE 266131 2774 \N \N 6028719 2025-03-18 19:06:04.212 2025-03-18 19:06:04.212 9000 TIP 266131 2309 \N \N 6028721 2025-03-18 19:06:54.775 2025-03-18 19:06:54.775 8300 FEE 434523 4287 \N \N 6028722 2025-03-18 19:06:54.775 2025-03-18 19:06:54.775 74700 TIP 434523 980 \N \N 6028732 2025-03-18 19:09:05.968 2025-03-18 19:09:05.968 1000 FEE 434490 4487 \N \N 6028733 2025-03-18 19:09:05.968 2025-03-18 19:09:05.968 9000 TIP 434490 11776 \N \N 6028767 2025-03-18 19:14:00.896 2025-03-18 19:14:00.896 1000 FEE 434531 19531 \N \N 6028781 2025-03-18 19:18:16.254 2025-03-18 19:18:16.254 1000 FEE 434534 15273 \N \N 6028792 2025-03-18 19:18:35.334 2025-03-18 19:18:35.334 8300 FEE 434498 627 \N \N 6028793 2025-03-18 19:18:35.334 2025-03-18 19:18:35.334 74700 TIP 434498 16598 \N \N 6028801 2025-03-18 19:22:39.003 2025-03-18 19:22:39.003 10000 FEE 434536 20912 \N \N 6028876 2025-03-18 19:37:35.112 2025-03-18 19:37:35.112 900 FEE 434535 3706 \N \N 6028877 2025-03-18 19:37:35.112 2025-03-18 19:37:35.112 8100 TIP 434535 20381 \N \N 6028882 2025-03-18 19:38:13.245 2025-03-18 19:38:13.245 900 FEE 434504 2347 \N \N 6028883 2025-03-18 19:38:13.245 2025-03-18 19:38:13.245 8100 TIP 434504 16124 \N \N 6028895 2025-03-18 19:39:15.354 2025-03-18 19:39:15.354 900 FEE 434434 20636 \N \N 6028896 2025-03-18 19:39:15.354 2025-03-18 19:39:15.354 8100 TIP 434434 21501 \N \N 6028945 2025-03-18 19:48:28.313 2025-03-18 19:48:28.313 1000 FEE 433842 21037 \N \N 6028946 2025-03-18 19:48:28.313 2025-03-18 19:48:28.313 9000 TIP 433842 9421 \N \N 6028974 2025-03-18 19:56:57.869 2025-03-18 19:56:57.869 1000 FEE 434549 8726 \N \N 6028987 2025-03-18 20:03:10.465 2025-03-18 20:03:10.465 1000 FEE 434554 20225 \N \N 6028995 2025-03-18 20:07:53.401 2025-03-18 20:07:53.401 1000 FEE 434557 21683 \N \N 6029000 2025-03-18 20:10:44.163 2025-03-18 20:10:44.163 10000 FEE 433975 21180 \N \N 6029001 2025-03-18 20:10:44.163 2025-03-18 20:10:44.163 90000 TIP 433975 18423 \N \N 6029005 2025-03-18 20:12:37.018 2025-03-18 20:12:37.018 100 FEE 434465 10611 \N \N 6029006 2025-03-18 20:12:37.018 2025-03-18 20:12:37.018 900 TIP 434465 21061 \N \N 6029040 2025-03-18 20:17:33.564 2025-03-18 20:17:33.564 1100 FEE 434488 19332 \N \N 6029041 2025-03-18 20:17:33.564 2025-03-18 20:17:33.564 9900 TIP 434488 21184 \N \N 6029061 2025-03-18 20:19:38.152 2025-03-18 20:19:38.152 2100 FEE 434511 2013 \N \N 6029062 2025-03-18 20:19:38.152 2025-03-18 20:19:38.152 18900 TIP 434511 21451 \N \N 6029064 2025-03-18 20:20:50.75 2025-03-18 20:20:50.75 1000 FEE 434567 1576 \N \N 6029091 2025-03-18 20:27:31.418 2025-03-18 20:27:31.418 10000 DONT_LIKE_THIS 433437 976 \N \N 6029092 2025-03-18 20:28:07.586 2025-03-18 20:28:07.586 0 FEE 434571 9418 \N \N 6029094 2025-03-18 20:28:18.771 2025-03-18 20:28:18.771 100000 FEE 432920 2844 \N \N 6029095 2025-03-18 20:28:18.771 2025-03-18 20:28:18.771 900000 TIP 432920 4079 \N \N 6029096 2025-03-18 20:29:02.007 2025-03-18 20:29:02.007 10000 FEE 433198 15690 \N \N 6029097 2025-03-18 20:29:02.007 2025-03-18 20:29:02.007 90000 TIP 433198 3377 \N \N 6029131 2025-03-18 20:40:21.336 2025-03-18 20:40:21.336 5000 FEE 433347 19930 \N \N 6029132 2025-03-18 20:40:21.336 2025-03-18 20:40:21.336 45000 TIP 433347 6149 \N \N 6029139 2025-03-18 20:41:29.38 2025-03-18 20:41:29.38 2100 FEE 434431 8380 \N \N 6029140 2025-03-18 20:41:29.38 2025-03-18 20:41:29.38 18900 TIP 434431 1433 \N \N 6029154 2025-03-18 20:45:08.302 2025-03-18 20:45:08.302 2100 FEE 434535 17041 \N \N 6029155 2025-03-18 20:45:08.302 2025-03-18 20:45:08.302 18900 TIP 434535 8284 \N \N 6029172 2025-03-18 20:48:47.895 2025-03-18 20:48:47.895 1000 FEE 434582 20523 \N \N 6029199 2025-03-18 20:57:55.704 2025-03-18 20:57:55.704 11100 FEE 433422 5171 \N \N 6029200 2025-03-18 20:57:55.704 2025-03-18 20:57:55.704 99900 TIP 433422 21180 \N \N 6029213 2025-03-18 21:01:25.269 2025-03-18 21:01:25.269 3300 FEE 434535 974 \N \N 6029214 2025-03-18 21:01:25.269 2025-03-18 21:01:25.269 29700 TIP 434535 21555 \N \N 6029227 2025-03-18 21:01:44.975 2025-03-18 21:01:44.975 3300 FEE 434481 692 \N \N 6029228 2025-03-18 21:01:44.975 2025-03-18 21:01:44.975 29700 TIP 434481 695 \N \N 6029242 2025-03-18 21:03:21.477 2025-03-18 21:03:21.477 3300 FEE 434465 20614 \N \N 6028183 2025-03-18 17:08:45.205 2025-03-18 17:08:45.205 7200 TIP 434243 5175 \N \N 6028226 2025-03-18 17:22:45.705 2025-03-18 17:22:45.705 0 FEE 434480 21012 \N \N 6028280 2025-03-18 17:44:17.656 2025-03-18 17:44:17.656 1000 FEE 434283 1030 \N \N 6028281 2025-03-18 17:44:17.656 2025-03-18 17:44:17.656 9000 TIP 434283 9276 \N \N 6028335 2025-03-18 18:03:49.245 2025-03-18 18:03:49.245 800 FEE 434285 15858 \N \N 6028336 2025-03-18 18:03:49.245 2025-03-18 18:03:49.245 7200 TIP 434285 19826 \N \N 6028344 2025-03-18 18:04:20.737 2025-03-18 18:04:20.737 1000 FEE 434497 19494 \N \N 6028354 2025-03-18 18:06:44.031 2025-03-18 18:06:44.031 1000 FEE 434501 19759 \N \N 6028376 2025-03-18 18:10:44.698 2025-03-18 18:10:44.698 2300 FEE 434498 21805 \N \N 6028377 2025-03-18 18:10:44.698 2025-03-18 18:10:44.698 20700 TIP 434498 4754 \N \N 6028378 2025-03-18 18:10:44.8 2025-03-18 18:10:44.8 2300 FEE 434498 21012 \N \N 6028379 2025-03-18 18:10:44.8 2025-03-18 18:10:44.8 20700 TIP 434498 16638 \N \N 6028409 2025-03-18 18:19:09.396 2025-03-18 18:19:09.396 100 FEE 423475 20680 \N \N 6028410 2025-03-18 18:19:09.396 2025-03-18 18:19:09.396 900 TIP 423475 997 \N \N 6028417 2025-03-18 18:19:10.542 2025-03-18 18:19:10.542 100 FEE 423475 20381 \N \N 6028418 2025-03-18 18:19:10.542 2025-03-18 18:19:10.542 900 TIP 423475 20906 \N \N 6028497 2025-03-18 18:41:28.709 2025-03-18 18:41:28.709 100 FEE 434509 21140 \N \N 6028498 2025-03-18 18:41:28.709 2025-03-18 18:41:28.709 900 TIP 434509 1512 \N \N 6028503 2025-03-18 18:41:29.55 2025-03-18 18:41:29.55 100 FEE 434509 15367 \N \N 6028504 2025-03-18 18:41:29.55 2025-03-18 18:41:29.55 900 TIP 434509 21048 \N \N 6028507 2025-03-18 18:41:30.08 2025-03-18 18:41:30.08 100 FEE 434509 6136 \N \N 6028508 2025-03-18 18:41:30.08 2025-03-18 18:41:30.08 900 TIP 434509 16571 \N \N 6028555 2025-03-18 18:41:43.869 2025-03-18 18:41:43.869 100 FEE 434509 20778 \N \N 6028556 2025-03-18 18:41:43.869 2025-03-18 18:41:43.869 900 TIP 434509 13162 \N \N 6028559 2025-03-18 18:41:44.985 2025-03-18 18:41:44.985 100 FEE 434509 20500 \N \N 6028560 2025-03-18 18:41:44.985 2025-03-18 18:41:44.985 900 TIP 434509 8380 \N \N 6028571 2025-03-18 18:41:51.96 2025-03-18 18:41:51.96 100 FEE 434509 20201 \N \N 6028572 2025-03-18 18:41:51.96 2025-03-18 18:41:51.96 900 TIP 434509 11942 \N \N 6028597 2025-03-18 18:43:21.495 2025-03-18 18:43:21.495 100 FEE 434509 1761 \N \N 6028598 2025-03-18 18:43:21.495 2025-03-18 18:43:21.495 900 TIP 434509 1738 \N \N 6028606 2025-03-18 18:44:07.358 2025-03-18 18:44:07.358 10000 FEE 433851 946 \N \N 6028607 2025-03-18 18:44:07.358 2025-03-18 18:44:07.358 90000 TIP 433851 20409 \N \N 6028663 2025-03-18 18:54:26.476 2025-03-18 18:54:26.476 1000 FEE 434298 9863 \N \N 6028664 2025-03-18 18:54:26.476 2025-03-18 18:54:26.476 9000 TIP 434298 19663 \N \N 6028667 2025-03-18 18:55:04.849 2025-03-18 18:55:04.849 1000 FEE 434411 2711 \N \N 6028668 2025-03-18 18:55:04.849 2025-03-18 18:55:04.849 9000 TIP 434411 10484 \N \N 6028682 2025-03-18 18:58:34.517 2025-03-18 18:58:34.517 1000 FEE 434307 622 \N \N 6028683 2025-03-18 18:58:34.517 2025-03-18 18:58:34.517 9000 TIP 434307 20642 \N \N 6028688 2025-03-18 18:59:33.096 2025-03-18 18:59:33.096 1000 FEE 434421 20981 \N \N 6028689 2025-03-18 18:59:33.096 2025-03-18 18:59:33.096 9000 TIP 434421 1114 \N \N 6028696 2025-03-18 19:00:54.536 2025-03-18 19:00:54.536 1000 FEE 433937 21599 \N \N 6028697 2025-03-18 19:00:54.536 2025-03-18 19:00:54.536 9000 TIP 433937 866 \N \N 6028706 2025-03-18 19:01:39.105 2025-03-18 19:01:39.105 1000 FEE 434522 7903 \N \N 6028750 2025-03-18 19:09:57.945 2025-03-18 19:09:57.945 8300 FEE 434514 13249 \N \N 6028751 2025-03-18 19:09:57.945 2025-03-18 19:09:57.945 74700 TIP 434514 21400 \N \N 6028772 2025-03-18 19:15:06.577 2025-03-18 19:15:06.577 1000 FEE 434533 20102 \N \N 6028797 2025-03-18 19:21:27.482 2025-03-18 19:21:27.482 21100 FEE 434498 21291 \N \N 6028798 2025-03-18 19:21:27.482 2025-03-18 19:21:27.482 189900 TIP 434498 11561 \N \N 6028804 2025-03-18 19:24:32.781 2025-03-18 19:24:32.781 1000 FEE 434535 9982 \N \N 6028805 2025-03-18 19:24:32.781 2025-03-18 19:24:32.781 9000 TIP 434535 13174 \N \N 6028806 2025-03-18 19:24:33.263 2025-03-18 19:24:33.263 9000 FEE 434535 1567 \N \N 6028807 2025-03-18 19:24:33.263 2025-03-18 19:24:33.263 81000 TIP 434535 21349 \N \N 6028825 2025-03-18 19:32:44.573 2025-03-18 19:32:44.573 100 FEE 434498 2775 \N \N 6028826 2025-03-18 19:32:44.573 2025-03-18 19:32:44.573 900 TIP 434498 19581 \N \N 6028842 2025-03-18 19:36:20.124 2025-03-18 19:36:20.124 1000 FEE 434514 6361 \N \N 6028843 2025-03-18 19:36:20.124 2025-03-18 19:36:20.124 9000 TIP 434514 17331 \N \N 6028872 2025-03-18 19:37:28.51 2025-03-18 19:37:28.51 900 FEE 434540 7827 \N \N 6028873 2025-03-18 19:37:28.51 2025-03-18 19:37:28.51 8100 TIP 434540 1737 \N \N 6028887 2025-03-18 19:38:30.642 2025-03-18 19:38:30.642 900 FEE 434440 12721 \N \N 6028888 2025-03-18 19:38:30.642 2025-03-18 19:38:30.642 8100 TIP 434440 21180 \N \N 6028906 2025-03-18 19:41:25.439 2025-03-18 19:41:25.439 2100 FEE 434539 1970 \N \N 6028907 2025-03-18 19:41:25.439 2025-03-18 19:41:25.439 18900 TIP 434539 20963 \N \N 6028908 2025-03-18 19:41:26.219 2025-03-18 19:41:26.219 2100 FEE 434539 900 \N \N 6028909 2025-03-18 19:41:26.219 2025-03-18 19:41:26.219 18900 TIP 434539 9863 \N \N 6028928 2025-03-18 19:47:21.935 2025-03-18 19:47:21.935 1000 FEE 433828 1823 \N \N 6028929 2025-03-18 19:47:21.935 2025-03-18 19:47:21.935 9000 TIP 433828 13854 \N \N 6028936 2025-03-18 19:47:28.008 2025-03-18 19:47:28.008 1000 FEE 434278 10007 \N \N 6028937 2025-03-18 19:47:28.008 2025-03-18 19:47:28.008 9000 TIP 434278 1605 \N \N 6028949 2025-03-18 19:48:43.711 2025-03-18 19:48:43.711 1000 FEE 434171 21148 \N \N 6028950 2025-03-18 19:48:43.711 2025-03-18 19:48:43.711 9000 TIP 434171 631 \N \N 6028966 2025-03-18 19:55:02.98 2025-03-18 19:55:02.98 1000 FEE 434547 21207 \N \N 6029037 2025-03-18 20:17:08.167 2025-03-18 20:17:08.167 1100 FEE 434498 1564 \N \N 6029038 2025-03-18 20:17:08.167 2025-03-18 20:17:08.167 9900 TIP 434498 5527 \N \N 6029055 2025-03-18 20:19:26.6 2025-03-18 20:19:26.6 100 FEE 434535 5003 \N \N 6029056 2025-03-18 20:19:26.6 2025-03-18 20:19:26.6 900 TIP 434535 6136 \N \N 6029066 2025-03-18 20:21:17.978 2025-03-18 20:21:17.978 2100 FEE 434457 9537 \N \N 6029067 2025-03-18 20:21:17.978 2025-03-18 20:21:17.978 18900 TIP 434457 12721 \N \N 6029074 2025-03-18 20:24:31.318 2025-03-18 20:24:31.318 1000 FEE 434569 19018 \N \N 6029116 2025-03-18 20:34:33.639 2025-03-18 20:34:33.639 2100 FEE 434367 13575 \N \N 6029117 2025-03-18 20:34:33.639 2025-03-18 20:34:33.639 18900 TIP 434367 18772 \N \N 6029130 2025-03-18 20:40:19.008 2025-03-18 20:40:19.008 1000 FEE 434576 21369 \N \N 6029137 2025-03-18 20:41:27.278 2025-03-18 20:41:27.278 2100 FEE 434431 712 \N \N 6029138 2025-03-18 20:41:27.278 2025-03-18 20:41:27.278 18900 TIP 434431 14225 \N \N 6029151 2025-03-18 20:45:00.83 2025-03-18 20:45:00.83 1000 FEE 434579 20294 \N \N 6029177 2025-03-18 20:51:00.979 2025-03-18 20:51:00.979 1000 FEE 434585 17690 \N \N 6029208 2025-03-18 21:01:08.86 2025-03-18 21:01:08.86 2100 FEE 434510 11866 \N \N 6029209 2025-03-18 21:01:08.86 2025-03-18 21:01:08.86 18900 TIP 434510 18923 \N \N 6029217 2025-03-18 21:01:26.464 2025-03-18 21:01:26.464 3300 FEE 434535 4570 \N \N 6029218 2025-03-18 21:01:26.464 2025-03-18 21:01:26.464 29700 TIP 434535 20683 \N \N 6029225 2025-03-18 21:01:44.545 2025-03-18 21:01:44.545 3300 FEE 434481 9365 \N \N 6029226 2025-03-18 21:01:44.545 2025-03-18 21:01:44.545 29700 TIP 434481 4487 \N \N 6029244 2025-03-18 21:03:22.235 2025-03-18 21:03:22.235 3300 FEE 434465 20858 \N \N 6029245 2025-03-18 21:03:22.235 2025-03-18 21:03:22.235 29700 TIP 434465 18528 \N \N 6029253 2025-03-18 21:04:16.545 2025-03-18 21:04:16.545 3300 FEE 434565 20179 \N \N 6029254 2025-03-18 21:04:16.545 2025-03-18 21:04:16.545 29700 TIP 434565 11498 \N \N 6029284 2025-03-18 21:09:46.587 2025-03-18 21:09:46.587 1000 FEE 434596 782 \N \N 6029305 2025-03-18 21:15:44.938 2025-03-18 21:15:44.938 1000 FEE 434603 9438 \N \N 6029315 2025-03-18 21:19:25.514 2025-03-18 21:19:25.514 1000 FEE 434605 5444 \N \N 6029337 2025-03-18 21:23:44.279 2025-03-18 21:23:44.279 1000 FEE 434607 7673 \N \N 6029381 2025-03-18 21:27:30.822 2025-03-18 21:27:30.822 1000 FEE 434410 669 \N \N 6029382 2025-03-18 21:27:30.822 2025-03-18 21:27:30.822 9000 TIP 434410 14651 \N \N 6029385 2025-03-18 21:27:36.163 2025-03-18 21:27:36.163 1000 FEE 434437 17209 \N \N 6037933 2025-03-19 14:09:37.841 2025-03-19 14:09:37.841 18900 TIP 435596 1577 \N \N 6037951 2025-03-19 14:14:37.103 2025-03-19 14:14:37.103 1000 FEE 435644 782 \N \N 6037984 2025-03-19 14:17:49.328 2025-03-19 14:17:49.328 2100 FEE 435499 18618 \N \N 6037985 2025-03-19 14:17:49.328 2025-03-19 14:17:49.328 18900 TIP 435499 844 \N \N 6037991 2025-03-19 14:21:12.595 2025-03-19 14:21:12.595 2500 FEE 435630 21383 \N \N 6037992 2025-03-19 14:21:12.595 2025-03-19 14:21:12.595 22500 TIP 435630 7966 \N \N 6038003 2025-03-19 14:23:41.853 2025-03-19 14:23:41.853 2500 FEE 435579 9329 \N \N 6038004 2025-03-19 14:23:41.853 2025-03-19 14:23:41.853 22500 TIP 435579 7125 \N \N 6038021 2025-03-19 14:25:10.214 2025-03-19 14:25:10.214 16600 FEE 435488 9348 \N \N 6038022 2025-03-19 14:25:10.214 2025-03-19 14:25:10.214 149400 TIP 435488 9171 \N \N 6038041 2025-03-19 14:25:11.982 2025-03-19 14:25:11.982 8300 FEE 435488 5779 \N \N 6038042 2025-03-19 14:25:11.982 2025-03-19 14:25:11.982 74700 TIP 435488 13217 \N \N 6038053 2025-03-19 14:25:12.675 2025-03-19 14:25:12.675 8300 FEE 435488 6471 \N \N 6038054 2025-03-19 14:25:12.675 2025-03-19 14:25:12.675 74700 TIP 435488 782 \N \N 6038078 2025-03-19 14:25:28.994 2025-03-19 14:25:28.994 1000 FEE 435650 854 \N \N 6038081 2025-03-19 14:25:29.953 2025-03-19 14:25:29.953 8300 FEE 435488 5425 \N \N 6038082 2025-03-19 14:25:29.953 2025-03-19 14:25:29.953 74700 TIP 435488 15147 \N \N 6038137 2025-03-19 14:30:55.127 2025-03-19 14:30:55.127 0 FEE 435655 2098 \N \N 6038144 2025-03-19 14:32:26.02 2025-03-19 14:32:26.02 500 FEE 435601 21670 \N \N 6038145 2025-03-19 14:32:26.02 2025-03-19 14:32:26.02 4500 TIP 435601 12049 \N \N 6038168 2025-03-19 14:34:17.206 2025-03-19 14:34:17.206 8300 FEE 435657 21501 \N \N 6038169 2025-03-19 14:34:17.206 2025-03-19 14:34:17.206 74700 TIP 435657 16289 \N \N 6038170 2025-03-19 14:34:17.392 2025-03-19 14:34:17.392 8300 FEE 435657 21639 \N \N 6038171 2025-03-19 14:34:17.392 2025-03-19 14:34:17.392 74700 TIP 435657 13622 \N \N 6038172 2025-03-19 14:34:17.591 2025-03-19 14:34:17.591 8300 FEE 435657 16754 \N \N 6038173 2025-03-19 14:34:17.591 2025-03-19 14:34:17.591 74700 TIP 435657 18615 \N \N 6038180 2025-03-19 14:34:18.686 2025-03-19 14:34:18.686 8300 FEE 435657 756 \N \N 6038181 2025-03-19 14:34:18.686 2025-03-19 14:34:18.686 74700 TIP 435657 11714 \N \N 6038188 2025-03-19 14:34:46.68 2025-03-19 14:34:46.68 1000 POLL 435516 19005 \N \N 6038189 2025-03-19 14:35:02.218 2025-03-19 14:35:02.218 1000 FEE 435661 6555 \N \N 6038197 2025-03-19 14:35:18.195 2025-03-19 14:35:18.195 1000 FEE 435662 1817 \N \N 6038208 2025-03-19 14:41:37.448 2025-03-19 14:41:37.448 100000 FEE 435665 2741 \N \N 6038209 2025-03-19 14:41:47.929 2025-03-19 14:41:47.929 1000 FEE 435666 1718 \N \N 6038272 2025-03-19 14:55:40.714 2025-03-19 14:55:40.714 1000 FEE 435644 20756 \N \N 6038273 2025-03-19 14:55:40.714 2025-03-19 14:55:40.714 9000 TIP 435644 17741 \N \N 6038308 2025-03-19 15:00:57.257 2025-03-19 15:00:57.257 0 FEE 435673 16351 \N \N 6038327 2025-03-19 15:04:12.424 2025-03-19 15:04:12.424 300 FEE 435457 20897 \N \N 6038328 2025-03-19 15:04:12.424 2025-03-19 15:04:12.424 2700 TIP 435457 2757 \N \N 6038362 2025-03-19 15:04:16.675 2025-03-19 15:04:16.675 300 FEE 435457 951 \N \N 6038363 2025-03-19 15:04:16.675 2025-03-19 15:04:16.675 2700 TIP 435457 1044 \N \N 6038375 2025-03-19 15:05:58.437 2025-03-19 15:05:58.437 10000 FEE 435682 21714 \N \N 6038385 2025-03-19 15:06:37.958 2025-03-19 15:06:37.958 1000 POLL 435495 11417 \N \N 6038422 2025-03-19 15:10:35.271 2025-03-19 15:10:35.271 3000 FEE 435684 5694 \N \N 6038423 2025-03-19 15:10:35.271 2025-03-19 15:10:35.271 27000 TIP 435684 17727 \N \N 6038441 2025-03-19 15:16:27.946 2025-03-19 15:16:27.946 100 FEE 435580 21119 \N \N 6038442 2025-03-19 15:16:27.946 2025-03-19 15:16:27.946 900 TIP 435580 1712 \N \N 6038451 2025-03-19 15:16:29.219 2025-03-19 15:16:29.219 100 FEE 435580 1576 \N \N 6038452 2025-03-19 15:16:29.219 2025-03-19 15:16:29.219 900 TIP 435580 623 \N \N 6038472 2025-03-19 15:17:39.582 2025-03-19 15:17:39.582 1000 POLL 435516 16788 \N \N 6038483 2025-03-19 15:17:58.024 2025-03-19 15:17:58.024 9000 FEE 435690 21140 \N \N 6038484 2025-03-19 15:17:58.024 2025-03-19 15:17:58.024 81000 TIP 435690 21501 \N \N 6038497 2025-03-19 15:17:59.042 2025-03-19 15:17:59.042 1000 FEE 435691 21526 \N \N 6038511 2025-03-19 15:18:18.367 2025-03-19 15:18:18.367 900 FEE 435657 7877 \N \N 6038512 2025-03-19 15:18:18.367 2025-03-19 15:18:18.367 8100 TIP 435657 1802 \N \N 6038519 2025-03-19 15:18:22.892 2025-03-19 15:18:22.892 300 FEE 435585 902 \N \N 6038520 2025-03-19 15:18:22.892 2025-03-19 15:18:22.892 2700 TIP 435585 10821 \N \N 6038521 2025-03-19 15:18:23.065 2025-03-19 15:18:23.065 300 FEE 435585 17570 \N \N 6038522 2025-03-19 15:18:23.065 2025-03-19 15:18:23.065 2700 TIP 435585 3518 \N \N 6038531 2025-03-19 15:18:38.309 2025-03-19 15:18:38.309 21100 FEE 435488 8648 \N \N 6038532 2025-03-19 15:18:38.309 2025-03-19 15:18:38.309 189900 TIP 435488 9969 \N \N 6038537 2025-03-19 15:20:00.878 2025-03-19 15:20:00.878 4000 FEE 435657 9330 \N \N 6038538 2025-03-19 15:20:00.878 2025-03-19 15:20:00.878 36000 TIP 435657 1769 \N \N 6038551 2025-03-19 15:22:20.591 2025-03-19 15:22:20.591 12800 FEE 435691 9332 \N \N 6038552 2025-03-19 15:22:20.591 2025-03-19 15:22:20.591 115200 TIP 435691 1493 \N \N 6038581 2025-03-19 15:29:16.186 2025-03-19 15:29:16.186 1100 FEE 435653 1585 \N \N 6038582 2025-03-19 15:29:16.186 2025-03-19 15:29:16.186 9900 TIP 435653 19930 \N \N 6038583 2025-03-19 15:29:16.775 2025-03-19 15:29:16.775 1100 FEE 435653 650 \N \N 6038584 2025-03-19 15:29:16.775 2025-03-19 15:29:16.775 9900 TIP 435653 1038 \N \N 6038588 2025-03-19 15:29:44.102 2025-03-19 15:29:44.102 1000 FEE 435701 20291 \N \N 6038602 2025-03-19 15:30:41.059 2025-03-19 15:30:41.059 1000 FEE 435703 15690 \N \N 6038603 2025-03-19 15:30:53.405 2025-03-19 15:30:53.405 800 FEE 435657 18930 \N \N 6038604 2025-03-19 15:30:53.405 2025-03-19 15:30:53.405 7200 TIP 435657 9669 \N \N 6038621 2025-03-19 15:30:58.512 2025-03-19 15:30:58.512 2300 FEE 435657 9758 \N \N 6038622 2025-03-19 15:30:58.512 2025-03-19 15:30:58.512 20700 TIP 435657 11450 \N \N 6038628 2025-03-19 15:31:29.606 2025-03-19 15:31:29.606 1000 FEE 435628 20409 \N \N 6038629 2025-03-19 15:31:29.606 2025-03-19 15:31:29.606 9000 TIP 435628 4692 \N \N 6038636 2025-03-19 15:31:49.869 2025-03-19 15:31:49.869 2300 FEE 435657 9276 \N \N 6038637 2025-03-19 15:31:49.869 2025-03-19 15:31:49.869 20700 TIP 435657 18321 \N \N 6038648 2025-03-19 15:31:56.925 2025-03-19 15:31:56.925 2300 FEE 435488 1439 \N \N 6038649 2025-03-19 15:31:56.925 2025-03-19 15:31:56.925 20700 TIP 435488 15273 \N \N 6038694 2025-03-19 15:41:51.218 2025-03-19 15:41:51.218 1100 FEE 435488 8045 \N \N 6038695 2025-03-19 15:41:51.218 2025-03-19 15:41:51.218 9900 TIP 435488 17011 \N \N 6038698 2025-03-19 15:41:52.078 2025-03-19 15:41:52.078 1100 FEE 435551 2335 \N \N 6038699 2025-03-19 15:41:52.078 2025-03-19 15:41:52.078 9900 TIP 435551 19346 \N \N 6038726 2025-03-19 15:48:14.707 2025-03-19 15:48:14.707 7000 FEE 435714 21222 \N \N 6038756 2025-03-19 15:54:20.556 2025-03-19 15:54:20.556 300 FEE 435720 5057 \N \N 6038757 2025-03-19 15:54:20.556 2025-03-19 15:54:20.556 2700 TIP 435720 9863 \N \N 6038770 2025-03-19 15:56:42.343 2025-03-19 15:56:42.343 1100 FEE 435154 16942 \N \N 6038771 2025-03-19 15:56:42.343 2025-03-19 15:56:42.343 9900 TIP 435154 10283 \N \N 6038803 2025-03-19 16:03:59.805 2025-03-19 16:03:59.805 1000 FEE 435729 18735 \N \N 6038834 2025-03-19 16:14:29.791 2025-03-19 16:14:29.791 2500 FEE 435573 4819 \N \N 6038835 2025-03-19 16:14:29.791 2025-03-19 16:14:29.791 22500 TIP 435573 1490 \N \N 6038839 2025-03-19 16:15:06.491 2025-03-19 16:15:06.491 1000 FEE 435740 19494 \N \N 6038853 2025-03-19 16:15:25.495 2025-03-19 16:15:25.495 1000 FEE 435640 2670 \N \N 6038854 2025-03-19 16:15:25.495 2025-03-19 16:15:25.495 9000 TIP 435640 20182 \N \N 6034596 2025-03-19 08:45:11.41 2025-03-19 08:45:11.41 9000 TIP 435291 1447 \N \N 6034606 2025-03-19 08:46:07.275 2025-03-19 08:46:07.275 3000 FEE 435305 17095 \N \N 6034607 2025-03-19 08:46:07.275 2025-03-19 08:46:07.275 27000 TIP 435305 8726 \N \N 6034615 2025-03-19 08:46:17.998 2025-03-19 08:46:17.998 2100 FEE 435242 15521 \N \N 6034616 2025-03-19 08:46:17.998 2025-03-19 08:46:17.998 18900 TIP 435242 647 \N \N 6034623 2025-03-19 08:47:12.631 2025-03-19 08:47:12.631 2100 FEE 435030 19689 \N \N 6034624 2025-03-19 08:47:12.631 2025-03-19 08:47:12.631 18900 TIP 435030 10096 \N \N 6034632 2025-03-19 08:47:20.337 2025-03-19 08:47:20.337 2100 FEE 435261 998 \N \N 6034633 2025-03-19 08:47:20.337 2025-03-19 08:47:20.337 18900 TIP 435261 6471 \N \N 6034643 2025-03-19 08:48:46.481 2025-03-19 08:48:46.481 1000 FEE 435307 17291 \N \N 6034644 2025-03-19 08:49:03.45 2025-03-19 08:49:03.45 1000 FEE 435308 21131 \N \N 6034660 2025-03-19 08:51:12.505 2025-03-19 08:51:12.505 100 FEE 435261 17001 \N \N 6034661 2025-03-19 08:51:12.505 2025-03-19 08:51:12.505 900 TIP 435261 814 \N \N 6034662 2025-03-19 08:51:12.697 2025-03-19 08:51:12.697 900 FEE 435261 18637 \N \N 6034663 2025-03-19 08:51:12.697 2025-03-19 08:51:12.697 8100 TIP 435261 2963 \N \N 6034713 2025-03-19 08:53:38.514 2025-03-19 08:53:38.514 2100 FEE 434780 9362 \N \N 6034714 2025-03-19 08:53:38.514 2025-03-19 08:53:38.514 18900 TIP 434780 15243 \N \N 6034721 2025-03-19 08:53:51.691 2025-03-19 08:53:51.691 2100 FEE 435120 10986 \N \N 6034722 2025-03-19 08:53:51.691 2025-03-19 08:53:51.691 18900 TIP 435120 21262 \N \N 6034727 2025-03-19 08:53:58.283 2025-03-19 08:53:58.283 200 FEE 434212 8242 \N \N 6034728 2025-03-19 08:53:58.283 2025-03-19 08:53:58.283 1800 TIP 434212 16347 \N \N 6034741 2025-03-19 08:54:06.866 2025-03-19 08:54:06.866 2100 FEE 435019 6030 \N \N 6034742 2025-03-19 08:54:06.866 2025-03-19 08:54:06.866 18900 TIP 435019 10112 \N \N 6034745 2025-03-19 08:54:09.135 2025-03-19 08:54:09.135 2100 FEE 435100 21356 \N \N 6034746 2025-03-19 08:54:09.135 2025-03-19 08:54:09.135 18900 TIP 435100 794 \N \N 6034747 2025-03-19 08:54:10.204 2025-03-19 08:54:10.204 2100 FEE 434962 19569 \N \N 6034748 2025-03-19 08:54:10.204 2025-03-19 08:54:10.204 18900 TIP 434962 10007 \N \N 6034756 2025-03-19 08:54:16.589 2025-03-19 08:54:16.589 2100 FEE 435284 21405 \N \N 6034757 2025-03-19 08:54:16.589 2025-03-19 08:54:16.589 18900 TIP 435284 760 \N \N 6034763 2025-03-19 08:54:52.981 2025-03-19 08:54:52.981 2300 FEE 435299 711 \N \N 6034764 2025-03-19 08:54:52.981 2025-03-19 08:54:52.981 20700 TIP 435299 11776 \N \N 6034765 2025-03-19 08:54:56.7 2025-03-19 08:54:56.7 2300 FEE 435308 2327 \N \N 6034766 2025-03-19 08:54:56.7 2025-03-19 08:54:56.7 20700 TIP 435308 763 \N \N 6034795 2025-03-19 08:57:27.343 2025-03-19 08:57:27.343 1000 FEE 435322 714 \N \N 6034796 2025-03-19 08:57:38.292 2025-03-19 08:57:38.292 1000 FEE 435323 10469 \N \N 6034800 2025-03-19 08:57:51.64 2025-03-19 08:57:51.64 2500 FEE 435297 19829 \N \N 6034801 2025-03-19 08:57:51.64 2025-03-19 08:57:51.64 22500 TIP 435297 21281 \N \N 6034802 2025-03-19 08:57:52.481 2025-03-19 08:57:52.481 1000 FEE 435319 2596 \N \N 6034803 2025-03-19 08:57:52.481 2025-03-19 08:57:52.481 9000 TIP 435319 11609 \N \N 6034813 2025-03-19 08:58:56.935 2025-03-19 08:58:56.935 27000 FEE 435310 15119 \N \N 6034814 2025-03-19 08:58:56.935 2025-03-19 08:58:56.935 243000 TIP 435310 15196 \N \N 6034815 2025-03-19 08:59:09.689 2025-03-19 08:59:09.689 0 FEE 435322 16769 \N \N 6034833 2025-03-19 08:59:55.492 2025-03-19 08:59:55.492 5000 FEE 435328 8544 \N \N 6034834 2025-03-19 08:59:55.492 2025-03-19 08:59:55.492 45000 TIP 435328 16978 \N \N 6034835 2025-03-19 08:59:56.922 2025-03-19 08:59:56.922 100 FEE 435328 12507 \N \N 6034836 2025-03-19 08:59:56.922 2025-03-19 08:59:56.922 900 TIP 435328 15624 \N \N 6034848 2025-03-19 09:00:49.642 2025-03-19 09:00:49.642 900 FEE 435323 3342 \N \N 6034849 2025-03-19 09:00:49.642 2025-03-19 09:00:49.642 8100 TIP 435323 10549 \N \N 6034884 2025-03-19 09:03:29.517 2025-03-19 09:03:29.517 8300 FEE 435231 12779 \N \N 6034885 2025-03-19 09:03:29.517 2025-03-19 09:03:29.517 74700 TIP 435231 3656 \N \N 6034901 2025-03-19 09:03:56.504 2025-03-19 09:03:56.504 8300 FEE 435270 1092 \N \N 6034902 2025-03-19 09:03:56.504 2025-03-19 09:03:56.504 74700 TIP 435270 18500 \N \N 6034911 2025-03-19 09:04:26.312 2025-03-19 09:04:26.312 3300 FEE 435030 10311 \N \N 6034912 2025-03-19 09:04:26.312 2025-03-19 09:04:26.312 29700 TIP 435030 10433 \N \N 6034937 2025-03-19 09:05:43.145 2025-03-19 09:05:43.145 2300 FEE 435274 16571 \N \N 6034938 2025-03-19 09:05:43.145 2025-03-19 09:05:43.145 20700 TIP 435274 14515 \N \N 6034973 2025-03-19 09:08:52.186 2025-03-19 09:08:52.186 1000 FEE 435347 13399 \N \N 6035054 2025-03-19 09:11:24.841 2025-03-19 09:11:24.841 10000 FEE 434129 9537 \N \N 6035055 2025-03-19 09:11:24.841 2025-03-19 09:11:24.841 90000 TIP 434129 5825 \N \N 6035065 2025-03-19 09:12:53.607 2025-03-19 09:12:53.607 1000 FEE 435349 14941 \N \N 6035080 2025-03-19 09:14:36.031 2025-03-19 09:14:36.031 2100 FEE 435328 18743 \N \N 6035081 2025-03-19 09:14:36.031 2025-03-19 09:14:36.031 18900 TIP 435328 987 \N \N 6035082 2025-03-19 09:14:36.186 2025-03-19 09:14:36.186 2100 FEE 435328 21398 \N \N 6035083 2025-03-19 09:14:36.186 2025-03-19 09:14:36.186 18900 TIP 435328 21114 \N \N 6035101 2025-03-19 09:15:14.793 2025-03-19 09:15:14.793 9000 FEE 434129 980 \N \N 6035102 2025-03-19 09:15:14.793 2025-03-19 09:15:14.793 81000 TIP 434129 19535 \N \N 6035103 2025-03-19 09:15:14.97 2025-03-19 09:15:14.97 1000 FEE 433066 21494 \N \N 6035104 2025-03-19 09:15:14.97 2025-03-19 09:15:14.97 9000 TIP 433066 5637 \N \N 6035105 2025-03-19 09:15:15.821 2025-03-19 09:15:15.821 1000 FEE 433066 17321 \N \N 6035106 2025-03-19 09:15:15.821 2025-03-19 09:15:15.821 9000 TIP 433066 21451 \N \N 6035111 2025-03-19 09:15:51.917 2025-03-19 09:15:51.917 10000 FEE 433878 759 \N \N 6035112 2025-03-19 09:15:51.917 2025-03-19 09:15:51.917 90000 TIP 433878 2022 \N \N 6035121 2025-03-19 09:15:53.805 2025-03-19 09:15:53.805 10000 FEE 433878 1620 \N \N 6035122 2025-03-19 09:15:53.805 2025-03-19 09:15:53.805 90000 TIP 433878 4776 \N \N 6035133 2025-03-19 09:16:36.675 2025-03-19 09:16:36.675 3000 FEE 435351 17541 \N \N 6035134 2025-03-19 09:16:36.675 2025-03-19 09:16:36.675 27000 TIP 435351 6777 \N \N 6035141 2025-03-19 09:16:51.181 2025-03-19 09:16:51.181 2100 FEE 435328 5425 \N \N 6035142 2025-03-19 09:16:51.181 2025-03-19 09:16:51.181 18900 TIP 435328 9364 \N \N 6035180 2025-03-19 09:22:27.141 2025-03-19 09:22:27.141 900 FEE 435274 5057 \N \N 6035181 2025-03-19 09:22:27.141 2025-03-19 09:22:27.141 8100 TIP 435274 21148 \N \N 6035267 2025-03-19 09:29:40.885 2025-03-19 09:29:40.885 30000 FEE 435357 20701 \N \N 6035268 2025-03-19 09:29:40.885 2025-03-19 09:29:40.885 270000 TIP 435357 14939 \N \N 6035291 2025-03-19 09:32:56.011 2025-03-19 09:32:56.011 1000 FEE 435359 20811 \N \N 6035292 2025-03-19 09:32:56.011 2025-03-19 09:32:56.011 9000 TIP 435359 11996 \N \N 6035297 2025-03-19 09:32:58.007 2025-03-19 09:32:58.007 1000 FEE 435359 6421 \N \N 6035298 2025-03-19 09:32:58.007 2025-03-19 09:32:58.007 9000 TIP 435359 8684 \N \N 6035305 2025-03-19 09:33:01.255 2025-03-19 09:33:01.255 400 FEE 435329 20624 \N \N 6035306 2025-03-19 09:33:01.255 2025-03-19 09:33:01.255 3600 TIP 435329 1800 \N \N 6035312 2025-03-19 09:33:43.507 2025-03-19 09:33:43.507 1000 FEE 435366 14731 \N \N 6035313 2025-03-19 09:33:43.507 2025-03-19 09:33:43.507 9000 TIP 435366 4062 \N \N 6035368 2025-03-19 09:37:55.846 2025-03-19 09:37:55.846 1000 FEE 435359 16638 \N \N 6035369 2025-03-19 09:37:55.846 2025-03-19 09:37:55.846 9000 TIP 435359 9695 \N \N 6035383 2025-03-19 09:38:23.176 2025-03-19 09:38:23.176 1000 FEE 435357 6419 \N \N 6035384 2025-03-19 09:38:23.176 2025-03-19 09:38:23.176 9000 TIP 435357 20555 \N \N 6035385 2025-03-19 09:38:28.42 2025-03-19 09:38:28.42 10000 FEE 435357 7877 \N \N 6035386 2025-03-19 09:38:28.42 2025-03-19 09:38:28.42 90000 TIP 435357 16267 \N \N 6035403 2025-03-19 09:39:02.652 2025-03-19 09:39:02.652 1000 FEE 435371 21498 \N \N 6034617 2025-03-19 08:46:22.964 2025-03-19 08:46:22.964 1600 FEE 435261 10862 \N \N 6034618 2025-03-19 08:46:22.964 2025-03-19 08:46:22.964 14400 TIP 435261 20619 \N \N 6034628 2025-03-19 08:47:15.426 2025-03-19 08:47:15.426 1000 FEE 435288 12278 \N \N 6034629 2025-03-19 08:47:15.426 2025-03-19 08:47:15.426 9000 TIP 435288 6463 \N \N 6034638 2025-03-19 08:48:07.922 2025-03-19 08:48:07.922 1000 FEE 435306 19403 \N \N 6034654 2025-03-19 08:50:38.273 2025-03-19 08:50:38.273 1000 FEE 435311 19531 \N \N 6034656 2025-03-19 08:50:54.674 2025-03-19 08:50:54.674 2100 FEE 435291 6202 \N \N 6034657 2025-03-19 08:50:54.674 2025-03-19 08:50:54.674 18900 TIP 435291 21599 \N \N 6034672 2025-03-19 08:51:45.929 2025-03-19 08:51:45.929 900 FEE 435217 21412 \N \N 6034673 2025-03-19 08:51:45.929 2025-03-19 08:51:45.929 8100 TIP 435217 1705 \N \N 6034674 2025-03-19 08:51:46.623 2025-03-19 08:51:46.623 9000 FEE 435217 6741 \N \N 6034675 2025-03-19 08:51:46.623 2025-03-19 08:51:46.623 81000 TIP 435217 629 \N \N 6034687 2025-03-19 08:52:11.874 2025-03-19 08:52:11.874 1000 FEE 435311 21522 \N \N 6034688 2025-03-19 08:52:11.874 2025-03-19 08:52:11.874 9000 TIP 435311 9167 \N \N 6034707 2025-03-19 08:53:32.726 2025-03-19 08:53:32.726 2100 FEE 435242 21373 \N \N 6034708 2025-03-19 08:53:32.726 2025-03-19 08:53:32.726 18900 TIP 435242 1603 \N \N 6034711 2025-03-19 08:53:37.061 2025-03-19 08:53:37.061 2100 FEE 434696 17162 \N \N 6034712 2025-03-19 08:53:37.061 2025-03-19 08:53:37.061 18900 TIP 434696 8472 \N \N 6034723 2025-03-19 08:53:55.973 2025-03-19 08:53:55.973 2100 FEE 435018 21803 \N \N 6034724 2025-03-19 08:53:55.973 2025-03-19 08:53:55.973 18900 TIP 435018 2328 \N \N 6034751 2025-03-19 08:54:11.988 2025-03-19 08:54:11.988 2100 FEE 434975 1705 \N \N 6034752 2025-03-19 08:54:11.988 2025-03-19 08:54:11.988 18900 TIP 434975 12769 \N \N 6034762 2025-03-19 08:54:49.176 2025-03-19 08:54:49.176 1000 FEE 435318 7659 \N \N 6034777 2025-03-19 08:54:57.767 2025-03-19 08:54:57.767 2300 FEE 435308 713 \N \N 6034778 2025-03-19 08:54:57.767 2025-03-19 08:54:57.767 20700 TIP 435308 1010 \N \N 6034865 2025-03-19 09:02:09.211 2025-03-19 09:02:09.211 7700 FEE 435327 4415 \N \N 6034866 2025-03-19 09:02:09.211 2025-03-19 09:02:09.211 69300 TIP 435327 1060 \N \N 6034923 2025-03-19 09:05:07.992 2025-03-19 09:05:07.992 800 FEE 434243 5757 \N \N 6034924 2025-03-19 09:05:07.992 2025-03-19 09:05:07.992 7200 TIP 434243 14774 \N \N 6034926 2025-03-19 09:05:16.861 2025-03-19 09:05:16.861 1000 FEE 435342 733 \N \N 6034927 2025-03-19 09:05:16.861 2025-03-19 09:05:16.861 9000 TIP 435342 5487 \N \N 6034934 2025-03-19 09:05:29.339 2025-03-19 09:05:29.339 1000 FEE 435345 15326 \N \N 6034935 2025-03-19 09:05:39.977 2025-03-19 09:05:39.977 3300 FEE 435274 14650 \N \N 6034936 2025-03-19 09:05:39.977 2025-03-19 09:05:39.977 29700 TIP 435274 717 \N \N 6034971 2025-03-19 09:08:35.933 2025-03-19 09:08:35.933 1000 FEE 435263 9438 \N \N 6034972 2025-03-19 09:08:35.933 2025-03-19 09:08:35.933 9000 TIP 435263 11522 \N \N 6035056 2025-03-19 09:11:44.054 2025-03-19 09:11:44.054 3300 FEE 435196 20811 \N \N 6035057 2025-03-19 09:11:44.054 2025-03-19 09:11:44.054 29700 TIP 435196 1272 \N \N 6035073 2025-03-19 09:14:00.441 2025-03-19 09:14:00.441 800 FEE 434796 19796 \N \N 6035074 2025-03-19 09:14:00.441 2025-03-19 09:14:00.441 7200 TIP 434796 13903 \N \N 6035078 2025-03-19 09:14:35.872 2025-03-19 09:14:35.872 2100 FEE 435328 27 \N \N 6035079 2025-03-19 09:14:35.872 2025-03-19 09:14:35.872 18900 TIP 435328 17713 \N \N 6035086 2025-03-19 09:14:54.222 2025-03-19 09:14:54.222 100 FEE 434129 3377 \N \N 6035087 2025-03-19 09:14:54.222 2025-03-19 09:14:54.222 900 TIP 434129 15103 \N \N 6035088 2025-03-19 09:14:54.432 2025-03-19 09:14:54.432 900 FEE 434129 909 \N \N 6035089 2025-03-19 09:14:54.432 2025-03-19 09:14:54.432 8100 TIP 434129 11423 \N \N 6035115 2025-03-19 09:15:52.686 2025-03-19 09:15:52.686 10000 FEE 433878 699 \N \N 6035116 2025-03-19 09:15:52.686 2025-03-19 09:15:52.686 90000 TIP 433878 965 \N \N 6035129 2025-03-19 09:16:28.208 2025-03-19 09:16:28.208 2100 FEE 435242 17095 \N \N 6035130 2025-03-19 09:16:28.208 2025-03-19 09:16:28.208 18900 TIP 435242 16513 \N \N 6035137 2025-03-19 09:16:42.086 2025-03-19 09:16:42.086 2100 FEE 435263 21379 \N \N 6035138 2025-03-19 09:16:42.086 2025-03-19 09:16:42.086 18900 TIP 435263 6191 \N \N 6035143 2025-03-19 09:16:54.631 2025-03-19 09:16:54.631 100 FEE 435285 21281 \N \N 6035144 2025-03-19 09:16:54.631 2025-03-19 09:16:54.631 900 TIP 435285 21159 \N \N 6035153 2025-03-19 09:17:03.425 2025-03-19 09:17:03.425 2100 FEE 435295 11716 \N \N 6035154 2025-03-19 09:17:03.425 2025-03-19 09:17:03.425 18900 TIP 435295 9350 \N \N 6035162 2025-03-19 09:18:10.093 2025-03-19 09:18:10.093 800 FEE 434994 19512 \N \N 6035163 2025-03-19 09:18:10.093 2025-03-19 09:18:10.093 7200 TIP 434994 960 \N \N 6035167 2025-03-19 09:18:55.597 2025-03-19 09:18:55.597 3300 FEE 435136 20613 \N \N 6035168 2025-03-19 09:18:55.597 2025-03-19 09:18:55.597 29700 TIP 435136 1411 \N \N 6035174 2025-03-19 09:21:04.013 2025-03-19 09:21:04.013 1000 FEE 435354 20998 \N \N 6035202 2025-03-19 09:24:59.298 2025-03-19 09:24:59.298 1000 FEE 434245 20981 \N \N 6035203 2025-03-19 09:24:59.298 2025-03-19 09:24:59.298 9000 TIP 434245 5661 \N \N 6035208 2025-03-19 09:25:57.728 2025-03-19 09:25:57.728 2300 FEE 435352 9276 \N \N 6035209 2025-03-19 09:25:57.728 2025-03-19 09:25:57.728 20700 TIP 435352 21041 \N \N 6035216 2025-03-19 09:25:58.412 2025-03-19 09:25:58.412 2300 FEE 435352 20596 \N \N 6035217 2025-03-19 09:25:58.412 2025-03-19 09:25:58.412 20700 TIP 435352 1047 \N \N 6035220 2025-03-19 09:26:14.5 2025-03-19 09:26:14.5 2500 FEE 434788 12768 \N \N 6035221 2025-03-19 09:26:14.5 2025-03-19 09:26:14.5 22500 TIP 434788 12507 \N \N 6035243 2025-03-19 09:28:34.651 2025-03-19 09:28:34.651 1000 FEE 435284 7674 \N \N 6035244 2025-03-19 09:28:34.651 2025-03-19 09:28:34.651 9000 TIP 435284 2513 \N \N 6035259 2025-03-19 09:29:00.526 2025-03-19 09:29:00.526 1000 FEE 435328 19888 \N \N 6035260 2025-03-19 09:29:00.526 2025-03-19 09:29:00.526 9000 TIP 435328 8245 \N \N 6035271 2025-03-19 09:30:03.523 2025-03-19 09:30:03.523 1000 FEE 435361 17109 \N \N 6035272 2025-03-19 09:30:03.523 2025-03-19 09:30:03.523 9000 TIP 435361 8926 \N \N 6037946 2025-03-19 14:12:45.389 2025-03-19 14:12:45.389 21000 FEE 435642 3686 \N \N 6037958 2025-03-19 14:16:14.961 2025-03-19 14:16:14.961 500 FEE 435402 15146 \N \N 6037959 2025-03-19 14:16:14.961 2025-03-19 14:16:14.961 4500 TIP 435402 20751 \N \N 6037973 2025-03-19 14:17:37.562 2025-03-19 14:17:37.562 2100 FEE 435465 696 \N \N 6037974 2025-03-19 14:17:37.562 2025-03-19 14:17:37.562 18900 TIP 435465 6419 \N \N 6037975 2025-03-19 14:17:37.741 2025-03-19 14:17:37.741 2100 FEE 435465 5003 \N \N 6037976 2025-03-19 14:17:37.741 2025-03-19 14:17:37.741 18900 TIP 435465 1713 \N \N 6037994 2025-03-19 14:22:11.601 2025-03-19 14:22:11.601 21000 FEE 434627 17570 \N \N 6037995 2025-03-19 14:22:11.601 2025-03-19 14:22:11.601 189000 TIP 434627 14909 \N \N 6038015 2025-03-19 14:25:09.541 2025-03-19 14:25:09.541 8300 FEE 435488 21556 \N \N 6038016 2025-03-19 14:25:09.541 2025-03-19 14:25:09.541 74700 TIP 435488 4238 \N \N 6038025 2025-03-19 14:25:10.592 2025-03-19 14:25:10.592 8300 FEE 435488 21405 \N \N 6038026 2025-03-19 14:25:10.592 2025-03-19 14:25:10.592 74700 TIP 435488 831 \N \N 6038033 2025-03-19 14:25:11.41 2025-03-19 14:25:11.41 8300 FEE 435488 1472 \N \N 6038034 2025-03-19 14:25:11.41 2025-03-19 14:25:11.41 74700 TIP 435488 17639 \N \N 6038055 2025-03-19 14:25:12.791 2025-03-19 14:25:12.791 8300 FEE 435488 21332 \N \N 6038056 2025-03-19 14:25:12.791 2025-03-19 14:25:12.791 74700 TIP 435488 9184 \N \N 6038064 2025-03-19 14:25:13.279 2025-03-19 14:25:13.279 8300 FEE 435488 13100 \N \N 6038065 2025-03-19 14:25:13.279 2025-03-19 14:25:13.279 74700 TIP 435488 20554 \N \N 6038086 2025-03-19 14:25:30.169 2025-03-19 14:25:30.169 8300 FEE 435488 1401 \N \N 6038087 2025-03-19 14:25:30.169 2025-03-19 14:25:30.169 74700 TIP 435488 1320 \N \N 6038090 2025-03-19 14:25:30.425 2025-03-19 14:25:30.425 8300 FEE 435488 18231 \N \N 6038091 2025-03-19 14:25:30.425 2025-03-19 14:25:30.425 74700 TIP 435488 14905 \N \N 6038092 2025-03-19 14:25:30.571 2025-03-19 14:25:30.571 8300 FEE 435488 20683 \N \N 6038093 2025-03-19 14:25:30.571 2025-03-19 14:25:30.571 74700 TIP 435488 9916 \N \N 6038139 2025-03-19 14:31:51.202 2025-03-19 14:31:51.202 10000 FEE 435657 987 \N \N 6038166 2025-03-19 14:34:16.928 2025-03-19 14:34:16.928 8300 FEE 435657 16347 \N \N 6038167 2025-03-19 14:34:16.928 2025-03-19 14:34:16.928 74700 TIP 435657 20680 \N \N 6038186 2025-03-19 14:34:20.231 2025-03-19 14:34:20.231 8300 FEE 435657 20706 \N \N 6038187 2025-03-19 14:34:20.231 2025-03-19 14:34:20.231 74700 TIP 435657 13143 \N \N 6038198 2025-03-19 14:36:06.395 2025-03-19 14:36:06.395 1000 FEE 435663 5597 \N \N 6038237 2025-03-19 14:49:30.549 2025-03-19 14:49:30.549 100 FEE 427798 20099 \N \N 6038238 2025-03-19 14:49:30.549 2025-03-19 14:49:30.549 900 TIP 427798 1803 \N \N 6038239 2025-03-19 14:49:40.609 2025-03-19 14:49:40.609 2100 FEE 435497 14278 \N \N 6038240 2025-03-19 14:49:40.609 2025-03-19 14:49:40.609 18900 TIP 435497 4259 \N \N 6038258 2025-03-19 14:54:24.491 2025-03-19 14:54:24.491 1000 POLL 435495 5112 \N \N 6038260 2025-03-19 14:54:56.799 2025-03-19 14:54:56.799 3300 FEE 435497 9261 \N \N 6038261 2025-03-19 14:54:56.799 2025-03-19 14:54:56.799 29700 TIP 435497 18309 \N \N 6038276 2025-03-19 14:55:48.147 2025-03-19 14:55:48.147 3300 FEE 435641 21279 \N \N 6038277 2025-03-19 14:55:48.147 2025-03-19 14:55:48.147 29700 TIP 435641 18368 \N \N 6038282 2025-03-19 14:56:10.424 2025-03-19 14:56:10.424 100 FEE 435610 14260 \N \N 6038283 2025-03-19 14:56:10.424 2025-03-19 14:56:10.424 900 TIP 435610 9517 \N \N 6038291 2025-03-19 14:56:44.919 2025-03-19 14:56:44.919 1000 FEE 435672 21442 \N \N 6038321 2025-03-19 15:03:20.243 2025-03-19 15:03:20.243 0 FEE 435676 964 \N \N 6038322 2025-03-19 15:03:20.537 2025-03-19 15:03:20.537 1000 FEE 435677 20616 \N \N 6038333 2025-03-19 15:04:13.163 2025-03-19 15:04:13.163 300 FEE 435457 678 \N \N 6038334 2025-03-19 15:04:13.163 2025-03-19 15:04:13.163 2700 TIP 435457 1273 \N \N 6038335 2025-03-19 15:04:13.401 2025-03-19 15:04:13.401 300 FEE 435457 21047 \N \N 6038336 2025-03-19 15:04:13.401 2025-03-19 15:04:13.401 2700 TIP 435457 20663 \N \N 6038342 2025-03-19 15:04:14.19 2025-03-19 15:04:14.19 300 FEE 435457 11298 \N \N 6034729 2025-03-19 08:53:59.368 2025-03-19 08:53:59.368 2100 FEE 435154 10661 \N \N 6034730 2025-03-19 08:53:59.368 2025-03-19 08:53:59.368 18900 TIP 435154 11609 \N \N 6034731 2025-03-19 08:54:02.307 2025-03-19 08:54:02.307 200 FEE 434713 21242 \N \N 6034732 2025-03-19 08:54:02.307 2025-03-19 08:54:02.307 1800 TIP 434713 8535 \N \N 6034771 2025-03-19 08:54:56.95 2025-03-19 08:54:56.95 2300 FEE 435308 12188 \N \N 6034772 2025-03-19 08:54:56.95 2025-03-19 08:54:56.95 20700 TIP 435308 20781 \N \N 6034773 2025-03-19 08:54:57.051 2025-03-19 08:54:57.051 2300 FEE 435308 7818 \N \N 6034774 2025-03-19 08:54:57.051 2025-03-19 08:54:57.051 20700 TIP 435308 18618 \N \N 6034791 2025-03-19 08:56:07.793 2025-03-19 08:56:07.793 2300 FEE 435295 770 \N \N 6034792 2025-03-19 08:56:07.793 2025-03-19 08:56:07.793 20700 TIP 435295 9346 \N \N 6034805 2025-03-19 08:58:15.823 2025-03-19 08:58:15.823 1000 FEE 435325 1394 \N \N 6034843 2025-03-19 09:00:02.099 2025-03-19 09:00:02.099 1000 FEE 435329 18313 \N \N 6034846 2025-03-19 09:00:49.525 2025-03-19 09:00:49.525 100 FEE 435323 18930 \N \N 6034847 2025-03-19 09:00:49.525 2025-03-19 09:00:49.525 900 TIP 435323 7847 \N \N 6034890 2025-03-19 09:03:29.936 2025-03-19 09:03:29.936 8300 FEE 435231 965 \N \N 6034891 2025-03-19 09:03:29.936 2025-03-19 09:03:29.936 74700 TIP 435231 17014 \N \N 6034896 2025-03-19 09:03:30.319 2025-03-19 09:03:30.319 8300 FEE 435231 3342 \N \N 6034897 2025-03-19 09:03:30.319 2025-03-19 09:03:30.319 74700 TIP 435231 1745 \N \N 6034917 2025-03-19 09:05:00.289 2025-03-19 09:05:00.289 3300 FEE 435115 21136 \N \N 6034918 2025-03-19 09:05:00.289 2025-03-19 09:05:00.289 29700 TIP 435115 4313 \N \N 6034921 2025-03-19 09:05:06.165 2025-03-19 09:05:06.165 3300 FEE 435115 1495 \N \N 6034922 2025-03-19 09:05:06.165 2025-03-19 09:05:06.165 29700 TIP 435115 13327 \N \N 6034941 2025-03-19 09:05:46.563 2025-03-19 09:05:46.563 3300 FEE 435318 21520 \N \N 6034942 2025-03-19 09:05:46.563 2025-03-19 09:05:46.563 29700 TIP 435318 1244 \N \N 6034954 2025-03-19 09:06:10.709 2025-03-19 09:06:10.709 3300 FEE 435046 19663 \N \N 6034955 2025-03-19 09:06:10.709 2025-03-19 09:06:10.709 29700 TIP 435046 12277 \N \N 6034982 2025-03-19 09:08:58.367 2025-03-19 09:08:58.367 8300 FEE 435327 6555 \N \N 6034983 2025-03-19 09:08:58.367 2025-03-19 09:08:58.367 74700 TIP 435327 14295 \N \N 6035008 2025-03-19 09:09:33.465 2025-03-19 09:09:33.465 500 FEE 435046 4378 \N \N 6035009 2025-03-19 09:09:33.465 2025-03-19 09:09:33.465 4500 TIP 435046 1800 \N \N 6035010 2025-03-19 09:09:52.358 2025-03-19 09:09:52.358 3300 FEE 435338 12097 \N \N 6035011 2025-03-19 09:09:52.358 2025-03-19 09:09:52.358 29700 TIP 435338 20799 \N \N 6035040 2025-03-19 09:10:10.478 2025-03-19 09:10:10.478 8300 FEE 435231 11760 \N \N 6035041 2025-03-19 09:10:10.478 2025-03-19 09:10:10.478 74700 TIP 435231 720 \N \N 6035092 2025-03-19 09:15:08.725 2025-03-19 09:15:08.725 1000 FEE 435350 21685 \N \N 6035094 2025-03-19 09:15:12.351 2025-03-19 09:15:12.351 100 FEE 435349 657 \N \N 6035095 2025-03-19 09:15:12.351 2025-03-19 09:15:12.351 900 TIP 435349 21810 \N \N 6035098 2025-03-19 09:15:13.08 2025-03-19 09:15:13.08 9000 FEE 435349 19821 \N \N 6035099 2025-03-19 09:15:13.08 2025-03-19 09:15:13.08 81000 TIP 435349 20185 \N \N 6035113 2025-03-19 09:15:52.293 2025-03-19 09:15:52.293 10000 FEE 433878 17727 \N \N 6035114 2025-03-19 09:15:52.293 2025-03-19 09:15:52.293 90000 TIP 433878 21670 \N \N 6035119 2025-03-19 09:15:53.484 2025-03-19 09:15:53.484 10000 FEE 433878 15858 \N \N 6035120 2025-03-19 09:15:53.484 2025-03-19 09:15:53.484 90000 TIP 433878 5794 \N \N 6035151 2025-03-19 09:17:00.142 2025-03-19 09:17:00.142 2100 FEE 435314 9276 \N \N 6035152 2025-03-19 09:17:00.142 2025-03-19 09:17:00.142 18900 TIP 435314 9246 \N \N 6035156 2025-03-19 09:17:22.708 2025-03-19 09:17:22.708 3300 FEE 435261 12507 \N \N 6035157 2025-03-19 09:17:22.708 2025-03-19 09:17:22.708 29700 TIP 435261 13055 \N \N 6035176 2025-03-19 09:21:17.004 2025-03-19 09:21:17.004 1000 FEE 435355 5306 \N \N 6035232 2025-03-19 09:27:24.644 2025-03-19 09:27:24.644 11100 FEE 435327 5520 \N \N 6035233 2025-03-19 09:27:24.644 2025-03-19 09:27:24.644 99900 TIP 435327 5293 \N \N 6035239 2025-03-19 09:28:18.046 2025-03-19 09:28:18.046 10000 FEE 434994 11789 \N \N 6035240 2025-03-19 09:28:18.046 2025-03-19 09:28:18.046 90000 TIP 434994 671 \N \N 6035241 2025-03-19 09:28:34.044 2025-03-19 09:28:34.044 1000 FEE 435284 650 \N \N 6035242 2025-03-19 09:28:34.044 2025-03-19 09:28:34.044 9000 TIP 435284 16942 \N \N 6035253 2025-03-19 09:28:45.41 2025-03-19 09:28:45.41 1000 FEE 435326 4776 \N \N 6035254 2025-03-19 09:28:45.41 2025-03-19 09:28:45.41 9000 TIP 435326 5112 \N \N 6035275 2025-03-19 09:30:13.495 2025-03-19 09:30:13.495 1000 FEE 435362 8648 \N \N 6035277 2025-03-19 09:30:22.506 2025-03-19 09:30:22.506 1000 FEE 435363 4323 \N \N 6035314 2025-03-19 09:33:43.946 2025-03-19 09:33:43.946 1000 FEE 435366 1145 \N \N 6035315 2025-03-19 09:33:43.946 2025-03-19 09:33:43.946 9000 TIP 435366 14260 \N \N 6035356 2025-03-19 09:37:52.58 2025-03-19 09:37:52.58 1000 FEE 435359 17592 \N \N 6035357 2025-03-19 09:37:52.58 2025-03-19 09:37:52.58 9000 TIP 435359 1738 \N \N 6035366 2025-03-19 09:37:55.689 2025-03-19 09:37:55.689 8300 FEE 435357 987 \N \N 6035367 2025-03-19 09:37:55.689 2025-03-19 09:37:55.689 74700 TIP 435357 5708 \N \N 6035395 2025-03-19 09:38:56.367 2025-03-19 09:38:56.367 2100 FEE 435136 21296 \N \N 6035396 2025-03-19 09:38:56.367 2025-03-19 09:38:56.367 18900 TIP 435136 19087 \N \N 6035405 2025-03-19 09:39:30.823 2025-03-19 09:39:30.823 10000 FEE 435231 19735 \N \N 6035406 2025-03-19 09:39:30.823 2025-03-19 09:39:30.823 90000 TIP 435231 3417 \N \N 6035410 2025-03-19 09:40:47.484 2025-03-19 09:40:47.484 1000 FEE 435368 4802 \N \N 6035411 2025-03-19 09:40:47.484 2025-03-19 09:40:47.484 9000 TIP 435368 15119 \N \N 6035421 2025-03-19 09:41:29.363 2025-03-19 09:41:29.363 1000 FEE 434798 16126 \N \N 6035422 2025-03-19 09:41:29.363 2025-03-19 09:41:29.363 9000 TIP 434798 9669 \N \N 6034812 2025-03-19 08:58:56.438 2025-03-19 08:58:56.438 27000 TIP 435310 9969 \N \N 6034817 2025-03-19 08:59:18.643 2025-03-19 08:59:18.643 3000 FEE 435324 782 \N \N 6034818 2025-03-19 08:59:18.643 2025-03-19 08:59:18.643 27000 TIP 435324 17094 \N \N 6034861 2025-03-19 09:01:39.591 2025-03-19 09:01:39.591 1000 FEE 435334 16149 \N \N 6034869 2025-03-19 09:02:22.529 2025-03-19 09:02:22.529 0 FEE 435335 2204 \N \N 6034879 2025-03-19 09:03:25.544 2025-03-19 09:03:25.544 3300 FEE 435275 11164 \N \N 6034880 2025-03-19 09:03:25.544 2025-03-19 09:03:25.544 29700 TIP 435275 1729 \N \N 6034892 2025-03-19 09:03:30.066 2025-03-19 09:03:30.066 8300 FEE 435231 974 \N \N 6034893 2025-03-19 09:03:30.066 2025-03-19 09:03:30.066 74700 TIP 435231 1673 \N \N 6034894 2025-03-19 09:03:30.183 2025-03-19 09:03:30.183 8300 FEE 435231 19857 \N \N 6034895 2025-03-19 09:03:30.183 2025-03-19 09:03:30.183 74700 TIP 435231 12483 \N \N 6034903 2025-03-19 09:04:06.793 2025-03-19 09:04:06.793 1000 FEE 435339 10862 \N \N 6034913 2025-03-19 09:04:33.496 2025-03-19 09:04:33.496 3300 FEE 435136 14015 \N \N 6034914 2025-03-19 09:04:33.496 2025-03-19 09:04:33.496 29700 TIP 435136 4624 \N \N 6034943 2025-03-19 09:05:46.757 2025-03-19 09:05:46.757 3300 FEE 435318 11164 \N \N 6034944 2025-03-19 09:05:46.757 2025-03-19 09:05:46.757 29700 TIP 435318 4768 \N \N 6034945 2025-03-19 09:05:48.668 2025-03-19 09:05:48.668 3300 FEE 435171 11454 \N \N 6034946 2025-03-19 09:05:48.668 2025-03-19 09:05:48.668 29700 TIP 435171 20624 \N \N 6034949 2025-03-19 09:05:52.297 2025-03-19 09:05:52.297 1700 FEE 435171 5794 \N \N 6034950 2025-03-19 09:05:52.297 2025-03-19 09:05:52.297 15300 TIP 435171 17991 \N \N 6034956 2025-03-19 09:06:11.285 2025-03-19 09:06:11.285 3300 FEE 435046 15858 \N \N 6034957 2025-03-19 09:06:11.285 2025-03-19 09:06:11.285 29700 TIP 435046 21296 \N \N 6034959 2025-03-19 09:06:26.753 2025-03-19 09:06:26.753 3300 FEE 435120 14607 \N \N 6034960 2025-03-19 09:06:26.753 2025-03-19 09:06:26.753 29700 TIP 435120 7818 \N \N 6034961 2025-03-19 09:06:26.908 2025-03-19 09:06:26.908 3300 FEE 435120 17162 \N \N 6034962 2025-03-19 09:06:26.908 2025-03-19 09:06:26.908 29700 TIP 435120 12057 \N \N 6034969 2025-03-19 09:08:35.758 2025-03-19 09:08:35.758 1000 FEE 435263 10986 \N \N 6034970 2025-03-19 09:08:35.758 2025-03-19 09:08:35.758 9000 TIP 435263 2718 \N \N 6034992 2025-03-19 09:08:59.062 2025-03-19 09:08:59.062 8300 FEE 435327 21026 \N \N 6034993 2025-03-19 09:08:59.062 2025-03-19 09:08:59.062 74700 TIP 435327 18865 \N \N 6035022 2025-03-19 09:10:02.158 2025-03-19 09:10:02.158 900 FEE 435327 17455 \N \N 6035023 2025-03-19 09:10:02.158 2025-03-19 09:10:02.158 8100 TIP 435327 20479 \N \N 6035049 2025-03-19 09:10:58.817 2025-03-19 09:10:58.817 3300 FEE 435086 11515 \N \N 6035050 2025-03-19 09:10:58.817 2025-03-19 09:10:58.817 29700 TIP 435086 21422 \N \N 6035071 2025-03-19 09:13:45.335 2025-03-19 09:13:45.335 1000 FEE 433167 1803 \N \N 6035072 2025-03-19 09:13:45.335 2025-03-19 09:13:45.335 9000 TIP 433167 3745 \N \N 6035084 2025-03-19 09:14:36.375 2025-03-19 09:14:36.375 2100 FEE 435328 14195 \N \N 6035085 2025-03-19 09:14:36.375 2025-03-19 09:14:36.375 18900 TIP 435328 20412 \N \N 6035117 2025-03-19 09:15:53.116 2025-03-19 09:15:53.116 10000 FEE 433878 17082 \N \N 6035118 2025-03-19 09:15:53.116 2025-03-19 09:15:53.116 90000 TIP 433878 20969 \N \N 6035135 2025-03-19 09:16:38.193 2025-03-19 09:16:38.193 2100 FEE 435120 897 \N \N 6035136 2025-03-19 09:16:38.193 2025-03-19 09:16:38.193 18900 TIP 435120 1769 \N \N 6035139 2025-03-19 09:16:46.409 2025-03-19 09:16:46.409 2100 FEE 435284 9874 \N \N 6035140 2025-03-19 09:16:46.409 2025-03-19 09:16:46.409 18900 TIP 435284 12769 \N \N 6035164 2025-03-19 09:18:10.751 2025-03-19 09:18:10.751 800 FEE 434994 10291 \N \N 6035165 2025-03-19 09:18:10.751 2025-03-19 09:18:10.751 7200 TIP 434994 12769 \N \N 6035187 2025-03-19 09:23:42.947 2025-03-19 09:23:42.947 1000 FEE 435120 725 \N \N 6035188 2025-03-19 09:23:42.947 2025-03-19 09:23:42.947 9000 TIP 435120 825 \N \N 6035210 2025-03-19 09:25:57.862 2025-03-19 09:25:57.862 2300 FEE 435352 805 \N \N 6035211 2025-03-19 09:25:57.862 2025-03-19 09:25:57.862 20700 TIP 435352 624 \N \N 6035222 2025-03-19 09:26:19.619 2025-03-19 09:26:19.619 1000 FEE 435358 20901 \N \N 6035283 2025-03-19 09:32:09.869 2025-03-19 09:32:09.869 1000 FEE 435364 12261 \N \N 6035287 2025-03-19 09:32:54.841 2025-03-19 09:32:54.841 1000 FEE 435359 1465 \N \N 6035288 2025-03-19 09:32:54.841 2025-03-19 09:32:54.841 9000 TIP 435359 775 \N \N 6035316 2025-03-19 09:33:44.415 2025-03-19 09:33:44.415 1000 FEE 435366 652 \N \N 6035317 2025-03-19 09:33:44.415 2025-03-19 09:33:44.415 9000 TIP 435366 697 \N \N 6035320 2025-03-19 09:33:45.341 2025-03-19 09:33:45.341 1000 FEE 435366 2775 \N \N 6035321 2025-03-19 09:33:45.341 2025-03-19 09:33:45.341 9000 TIP 435366 2757 \N \N 6035323 2025-03-19 09:34:44.498 2025-03-19 09:34:44.498 1000 FEE 435367 1773 \N \N 6035350 2025-03-19 09:37:50.742 2025-03-19 09:37:50.742 8300 FEE 435328 15336 \N \N 6035351 2025-03-19 09:37:50.742 2025-03-19 09:37:50.742 74700 TIP 435328 15762 \N \N 6035364 2025-03-19 09:37:55.249 2025-03-19 09:37:55.249 8300 FEE 435357 21455 \N \N 6035365 2025-03-19 09:37:55.249 2025-03-19 09:37:55.249 74700 TIP 435357 20706 \N \N 6035373 2025-03-19 09:38:19.79 2025-03-19 09:38:19.79 8300 FEE 435359 20450 \N \N 6035374 2025-03-19 09:38:19.79 2025-03-19 09:38:19.79 74700 TIP 435359 11423 \N \N 6035387 2025-03-19 09:38:41.243 2025-03-19 09:38:41.243 100000 FEE 435369 4474 \N \N 6035467 2025-03-19 09:44:50.79 2025-03-19 09:44:50.79 1100 FEE 434994 20990 \N \N 6035468 2025-03-19 09:44:50.79 2025-03-19 09:44:50.79 9900 TIP 434994 19488 \N \N 6035469 2025-03-19 09:44:50.956 2025-03-19 09:44:50.956 1100 FEE 434994 17592 \N \N 6035470 2025-03-19 09:44:50.956 2025-03-19 09:44:50.956 9900 TIP 434994 21451 \N \N 6035477 2025-03-19 09:44:59.18 2025-03-19 09:44:59.18 1000 FEE 435376 9332 \N \N 6035509 2025-03-19 09:45:35.781 2025-03-19 09:45:35.781 1000 FEE 435343 6160 \N \N 6035510 2025-03-19 09:45:35.781 2025-03-19 09:45:35.781 9000 TIP 435343 9529 \N \N 6035523 2025-03-19 09:45:45.185 2025-03-19 09:45:45.185 1000 FEE 435231 21709 \N \N 6035524 2025-03-19 09:45:45.185 2025-03-19 09:45:45.185 9000 TIP 435231 21172 \N \N 6035525 2025-03-19 09:45:45.75 2025-03-19 09:45:45.75 1000 FEE 435231 14122 \N \N 6035526 2025-03-19 09:45:45.75 2025-03-19 09:45:45.75 9000 TIP 435231 5779 \N \N 6035540 2025-03-19 09:48:48.996 2025-03-19 09:48:48.996 1000 FEE 435378 21178 \N \N 6035566 2025-03-19 09:51:21.528 2025-03-19 09:51:21.528 1000 FEE 435231 21140 \N \N 6035567 2025-03-19 09:51:21.528 2025-03-19 09:51:21.528 9000 TIP 435231 17392 \N \N 6035579 2025-03-19 09:52:33.58 2025-03-19 09:52:33.58 1000 FEE 434124 11192 \N \N 6035580 2025-03-19 09:52:33.58 2025-03-19 09:52:33.58 9000 TIP 434124 11776 \N \N 6035581 2025-03-19 09:52:35.186 2025-03-19 09:52:35.186 1000 FEE 434124 21797 \N \N 6035582 2025-03-19 09:52:35.186 2025-03-19 09:52:35.186 9000 TIP 434124 3729 \N \N 6035585 2025-03-19 09:52:35.621 2025-03-19 09:52:35.621 1000 FEE 434124 9333 \N \N 6035586 2025-03-19 09:52:35.621 2025-03-19 09:52:35.621 9000 TIP 434124 16289 \N \N 6035610 2025-03-19 09:54:33.802 2025-03-19 09:54:33.802 8300 FEE 435377 2322 \N \N 6035611 2025-03-19 09:54:33.802 2025-03-19 09:54:33.802 74700 TIP 435377 5520 \N \N 6035619 2025-03-19 09:55:12.304 2025-03-19 09:55:12.304 1000 FEE 435386 1124 \N \N 6035620 2025-03-19 09:55:12.304 2025-03-19 09:55:12.304 9000 TIP 435386 18402 \N \N 6035621 2025-03-19 09:55:13.216 2025-03-19 09:55:13.216 1000 FEE 435386 9200 \N \N 6035622 2025-03-19 09:55:13.216 2025-03-19 09:55:13.216 9000 TIP 435386 13843 \N \N 6035627 2025-03-19 09:55:13.64 2025-03-19 09:55:13.64 2300 FEE 435377 1983 \N \N 6035628 2025-03-19 09:55:13.64 2025-03-19 09:55:13.64 20700 TIP 435377 1800 \N \N 6035640 2025-03-19 09:55:15.594 2025-03-19 09:55:15.594 1000 FEE 435386 17365 \N \N 6038906 2025-03-19 16:29:20.69 2025-03-19 16:29:20.69 2300 FEE 435728 12334 \N \N 6038907 2025-03-19 16:29:20.69 2025-03-19 16:29:20.69 20700 TIP 435728 2056 \N \N 6038936 2025-03-19 16:29:47.704 2025-03-19 16:29:47.704 2300 FEE 435639 5825 \N \N 6038937 2025-03-19 16:29:47.704 2025-03-19 16:29:47.704 20700 TIP 435639 14271 \N \N 6038940 2025-03-19 16:30:12.542 2025-03-19 16:30:12.542 100 FEE 435647 2437 \N \N 6038941 2025-03-19 16:30:12.542 2025-03-19 16:30:12.542 900 TIP 435647 11561 \N \N 6038959 2025-03-19 16:32:19.479 2025-03-19 16:32:19.479 2100 FEE 435690 5779 \N \N 6038960 2025-03-19 16:32:19.479 2025-03-19 16:32:19.479 18900 TIP 435690 1983 \N \N 6034975 2025-03-19 09:08:57.807 2025-03-19 09:08:57.807 74700 TIP 435327 5495 \N \N 6034976 2025-03-19 09:08:58.019 2025-03-19 09:08:58.019 8300 FEE 435327 9350 \N \N 6034977 2025-03-19 09:08:58.019 2025-03-19 09:08:58.019 74700 TIP 435327 15544 \N \N 6034986 2025-03-19 09:08:58.7 2025-03-19 09:08:58.7 8300 FEE 435327 21413 \N \N 6034987 2025-03-19 09:08:58.7 2025-03-19 09:08:58.7 74700 TIP 435327 2748 \N \N 6035000 2025-03-19 09:08:59.518 2025-03-19 09:08:59.518 8300 FEE 435327 14941 \N \N 6035001 2025-03-19 09:08:59.518 2025-03-19 09:08:59.518 74700 TIP 435327 19494 \N \N 6035004 2025-03-19 09:09:20.108 2025-03-19 09:09:20.108 8300 FEE 435314 992 \N \N 6035005 2025-03-19 09:09:20.108 2025-03-19 09:09:20.108 74700 TIP 435314 20306 \N \N 6035018 2025-03-19 09:09:56.853 2025-03-19 09:09:56.853 1000 FEE 435328 946 \N \N 6035019 2025-03-19 09:09:56.853 2025-03-19 09:09:56.853 9000 TIP 435328 9845 \N \N 6035032 2025-03-19 09:10:05.915 2025-03-19 09:10:05.915 1000 FEE 435314 1124 \N \N 6035033 2025-03-19 09:10:05.915 2025-03-19 09:10:05.915 9000 TIP 435314 16259 \N \N 6035038 2025-03-19 09:10:10.448 2025-03-19 09:10:10.448 8300 FEE 435231 20152 \N \N 6035039 2025-03-19 09:10:10.448 2025-03-19 09:10:10.448 74700 TIP 435231 746 \N \N 6035060 2025-03-19 09:12:07.974 2025-03-19 09:12:07.974 1000 FEE 433088 21369 \N \N 6035061 2025-03-19 09:12:07.974 2025-03-19 09:12:07.974 9000 TIP 433088 746 \N \N 6035069 2025-03-19 09:13:37.06 2025-03-19 09:13:37.06 1000 FEE 433892 616 \N \N 6035070 2025-03-19 09:13:37.06 2025-03-19 09:13:37.06 9000 TIP 433892 20409 \N \N 6035075 2025-03-19 09:14:00.62 2025-03-19 09:14:00.62 800 FEE 434796 12769 \N \N 6035076 2025-03-19 09:14:00.62 2025-03-19 09:14:00.62 7200 TIP 434796 9906 \N \N 6035124 2025-03-19 09:16:12.486 2025-03-19 09:16:12.486 2100 FEE 435231 6555 \N \N 6035125 2025-03-19 09:16:12.486 2025-03-19 09:16:12.486 18900 TIP 435231 21012 \N \N 6035150 2025-03-19 09:16:59.653 2025-03-19 09:16:59.653 10000 DONT_LIKE_THIS 435276 917 \N \N 6035160 2025-03-19 09:18:07.731 2025-03-19 09:18:07.731 2100 FEE 435188 16296 \N \N 6035161 2025-03-19 09:18:07.731 2025-03-19 09:18:07.731 18900 TIP 435188 21406 \N \N 6035169 2025-03-19 09:19:06.815 2025-03-19 09:19:06.815 1000 FEE 435353 5775 \N \N 6035192 2025-03-19 09:24:31.996 2025-03-19 09:24:31.996 2300 FEE 435346 18241 \N \N 6035193 2025-03-19 09:24:31.996 2025-03-19 09:24:31.996 20700 TIP 435346 16808 \N \N 6035198 2025-03-19 09:24:32.454 2025-03-19 09:24:32.454 2300 FEE 435346 17184 \N \N 6035199 2025-03-19 09:24:32.454 2025-03-19 09:24:32.454 20700 TIP 435346 21042 \N \N 6035200 2025-03-19 09:24:33.311 2025-03-19 09:24:33.311 2300 FEE 435346 2176 \N \N 6035201 2025-03-19 09:24:33.311 2025-03-19 09:24:33.311 20700 TIP 435346 632 \N \N 6035204 2025-03-19 09:25:11.588 2025-03-19 09:25:11.588 2500 FEE 434779 9026 \N \N 6035205 2025-03-19 09:25:11.588 2025-03-19 09:25:11.588 22500 TIP 434779 9476 \N \N 6035212 2025-03-19 09:25:58.07 2025-03-19 09:25:58.07 2300 FEE 435352 882 \N \N 6035213 2025-03-19 09:25:58.07 2025-03-19 09:25:58.07 20700 TIP 435352 1425 \N \N 6035218 2025-03-19 09:26:09.488 2025-03-19 09:26:09.488 100000 FEE 435357 15463 \N \N 6035223 2025-03-19 09:26:19.868 2025-03-19 09:26:19.868 2500 FEE 434685 9166 \N \N 6035224 2025-03-19 09:26:19.868 2025-03-19 09:26:19.868 22500 TIP 434685 21791 \N \N 6035225 2025-03-19 09:26:54.299 2025-03-19 09:26:54.299 2500 FEE 434827 9992 \N \N 6035226 2025-03-19 09:26:54.299 2025-03-19 09:26:54.299 22500 TIP 434827 768 \N \N 6035235 2025-03-19 09:27:56.223 2025-03-19 09:27:56.223 1000 FEE 435360 7119 \N \N 6035261 2025-03-19 09:29:00.824 2025-03-19 09:29:00.824 1000 FEE 435328 19189 \N \N 6035262 2025-03-19 09:29:00.824 2025-03-19 09:29:00.824 9000 TIP 435328 17237 \N \N 6035263 2025-03-19 09:29:01.13 2025-03-19 09:29:01.13 1000 FEE 435328 9332 \N \N 6035264 2025-03-19 09:29:01.13 2025-03-19 09:29:01.13 9000 TIP 435328 19333 \N \N 6035309 2025-03-19 09:33:21.8 2025-03-19 09:33:21.8 2100 FEE 435046 9346 \N \N 6035310 2025-03-19 09:33:21.8 2025-03-19 09:33:21.8 18900 TIP 435046 9969 \N \N 6035330 2025-03-19 09:36:14.799 2025-03-19 09:36:14.799 3000 FEE 435365 712 \N \N 6035331 2025-03-19 09:36:14.799 2025-03-19 09:36:14.799 27000 TIP 435365 1472 \N \N 6035334 2025-03-19 09:36:42.729 2025-03-19 09:36:42.729 500 FEE 435354 5003 \N \N 6035335 2025-03-19 09:36:42.729 2025-03-19 09:36:42.729 4500 TIP 435354 15510 \N \N 6035341 2025-03-19 09:37:20.219 2025-03-19 09:37:20.219 1000 FEE 435368 15139 \N \N 6035344 2025-03-19 09:37:43.057 2025-03-19 09:37:43.057 8300 FEE 435217 2361 \N \N 6035345 2025-03-19 09:37:43.057 2025-03-19 09:37:43.057 74700 TIP 435217 13575 \N \N 6035348 2025-03-19 09:37:50.686 2025-03-19 09:37:50.686 8300 FEE 435328 882 \N \N 6035349 2025-03-19 09:37:50.686 2025-03-19 09:37:50.686 74700 TIP 435328 21040 \N \N 6035362 2025-03-19 09:37:55.003 2025-03-19 09:37:55.003 1000 FEE 435359 18557 \N \N 6035363 2025-03-19 09:37:55.003 2025-03-19 09:37:55.003 9000 TIP 435359 827 \N \N 6035375 2025-03-19 09:38:19.99 2025-03-19 09:38:19.99 8300 FEE 435359 2775 \N \N 6035376 2025-03-19 09:38:19.99 2025-03-19 09:38:19.99 74700 TIP 435359 10102 \N \N 6035388 2025-03-19 09:38:46.095 2025-03-19 09:38:46.095 1000 FEE 435370 1985 \N \N 6035435 2025-03-19 09:43:15.315 2025-03-19 09:43:15.315 2100 FEE 435261 19992 \N \N 6035436 2025-03-19 09:43:15.315 2025-03-19 09:43:15.315 18900 TIP 435261 19735 \N \N 6035444 2025-03-19 09:44:23.465 2025-03-19 09:44:23.465 2100 FEE 435214 17082 \N \N 6035445 2025-03-19 09:44:23.465 2025-03-19 09:44:23.465 18900 TIP 435214 10283 \N \N 6035489 2025-03-19 09:45:16.711 2025-03-19 09:45:16.711 10000 FEE 435246 6573 \N \N 6035490 2025-03-19 09:45:16.711 2025-03-19 09:45:16.711 90000 TIP 435246 20837 \N \N 6035499 2025-03-19 09:45:33.368 2025-03-19 09:45:33.368 1000 FEE 435343 686 \N \N 6035500 2025-03-19 09:45:33.368 2025-03-19 09:45:33.368 9000 TIP 435343 21119 \N \N 6035531 2025-03-19 09:47:32.302 2025-03-19 09:47:32.302 1000 FEE 435377 15408 \N \N 6035545 2025-03-19 09:49:13.748 2025-03-19 09:49:13.748 0 FEE 435378 738 \N \N 6035552 2025-03-19 09:50:33.909 2025-03-19 09:50:33.909 0 FEE 435378 15180 \N \N 6035562 2025-03-19 09:51:21.285 2025-03-19 09:51:21.285 1000 FEE 435231 2735 \N \N 6035563 2025-03-19 09:51:21.285 2025-03-19 09:51:21.285 9000 TIP 435231 20062 \N \N 6034997 2025-03-19 09:08:59.289 2025-03-19 09:08:59.289 74700 TIP 435327 1298 \N \N 6034998 2025-03-19 09:08:59.404 2025-03-19 09:08:59.404 8300 FEE 435327 6765 \N \N 6034999 2025-03-19 09:08:59.404 2025-03-19 09:08:59.404 74700 TIP 435327 13361 \N \N 6035003 2025-03-19 09:09:16.04 2025-03-19 09:09:16.04 1000 FEE 435348 4079 \N \N 6035006 2025-03-19 09:09:26.937 2025-03-19 09:09:26.937 8300 FEE 435314 2195 \N \N 6035007 2025-03-19 09:09:26.937 2025-03-19 09:09:26.937 74700 TIP 435314 716 \N \N 6035012 2025-03-19 09:09:56.12 2025-03-19 09:09:56.12 2000 FEE 435328 6202 \N \N 6035013 2025-03-19 09:09:56.12 2025-03-19 09:09:56.12 18000 TIP 435328 21019 \N \N 6035016 2025-03-19 09:09:56.708 2025-03-19 09:09:56.708 1000 FEE 435328 9366 \N \N 6035017 2025-03-19 09:09:56.708 2025-03-19 09:09:56.708 9000 TIP 435328 9169 \N \N 6035030 2025-03-19 09:10:05.621 2025-03-19 09:10:05.621 1000 FEE 435314 15160 \N \N 6035031 2025-03-19 09:10:05.621 2025-03-19 09:10:05.621 9000 TIP 435314 20562 \N \N 6035036 2025-03-19 09:10:10.264 2025-03-19 09:10:10.264 8300 FEE 435231 20969 \N \N 6035037 2025-03-19 09:10:10.264 2025-03-19 09:10:10.264 74700 TIP 435231 20701 \N \N 6035044 2025-03-19 09:10:11.07 2025-03-19 09:10:11.07 8300 FEE 435231 714 \N \N 6035045 2025-03-19 09:10:11.07 2025-03-19 09:10:11.07 74700 TIP 435231 11819 \N \N 6035051 2025-03-19 09:11:11.836 2025-03-19 09:11:11.836 5000 FEE 435335 18069 \N \N 6035052 2025-03-19 09:11:11.836 2025-03-19 09:11:11.836 45000 TIP 435335 8380 \N \N 6035066 2025-03-19 09:13:11.87 2025-03-19 09:13:11.87 3000 FEE 435347 12072 \N \N 6035067 2025-03-19 09:13:11.87 2025-03-19 09:13:11.87 27000 TIP 435347 8289 \N \N 6035090 2025-03-19 09:14:54.827 2025-03-19 09:14:54.827 1100 FEE 435309 15536 \N \N 6035091 2025-03-19 09:14:54.827 2025-03-19 09:14:54.827 9900 TIP 435309 15226 \N \N 6035123 2025-03-19 09:16:04.953 2025-03-19 09:16:04.953 1000 FEE 435352 654 \N \N 6035145 2025-03-19 09:16:54.826 2025-03-19 09:16:54.826 900 FEE 435285 664 \N \N 6035146 2025-03-19 09:16:54.826 2025-03-19 09:16:54.826 8100 TIP 435285 21521 \N \N 6035147 2025-03-19 09:16:56.877 2025-03-19 09:16:56.877 2100 FEE 435154 9366 \N \N 6035148 2025-03-19 09:16:56.877 2025-03-19 09:16:56.877 18900 TIP 435154 704 \N \N 6035158 2025-03-19 09:17:30.962 2025-03-19 09:17:30.962 3300 FEE 435242 13547 \N \N 6035159 2025-03-19 09:17:30.962 2025-03-19 09:17:30.962 29700 TIP 435242 11515 \N \N 6035171 2025-03-19 09:19:16.104 2025-03-19 09:19:16.104 1000 FEE 435237 8059 \N \N 6035172 2025-03-19 09:19:16.104 2025-03-19 09:19:16.104 9000 TIP 435237 21523 \N \N 6035182 2025-03-19 09:22:30.648 2025-03-19 09:22:30.648 9000 FEE 435274 7558 \N \N 6035183 2025-03-19 09:22:30.648 2025-03-19 09:22:30.648 81000 TIP 435274 5865 \N \N 6035185 2025-03-19 09:23:38.615 2025-03-19 09:23:38.615 1000 FEE 435261 16876 \N \N 6035186 2025-03-19 09:23:38.615 2025-03-19 09:23:38.615 9000 TIP 435261 5069 \N \N 6035189 2025-03-19 09:24:13.425 2025-03-19 09:24:13.425 1000 FEE 434538 20370 \N \N 6035190 2025-03-19 09:24:13.425 2025-03-19 09:24:13.425 9000 TIP 434538 3990 \N \N 6035207 2025-03-19 09:25:30.814 2025-03-19 09:25:30.814 1000 FEE 435356 20412 \N \N 6035236 2025-03-19 09:27:59.569 2025-03-19 09:27:59.569 2500 FEE 435115 687 \N \N 6035237 2025-03-19 09:27:59.569 2025-03-19 09:27:59.569 22500 TIP 435115 9820 \N \N 6035245 2025-03-19 09:28:44.14 2025-03-19 09:28:44.14 1000 FEE 435326 10311 \N \N 6035246 2025-03-19 09:28:44.14 2025-03-19 09:28:44.14 9000 TIP 435326 656 \N \N 6035249 2025-03-19 09:28:44.839 2025-03-19 09:28:44.839 1000 FEE 435326 11298 \N \N 6035250 2025-03-19 09:28:44.839 2025-03-19 09:28:44.839 9000 TIP 435326 18270 \N \N 6035255 2025-03-19 09:28:59.781 2025-03-19 09:28:59.781 1000 FEE 435328 16769 \N \N 6035256 2025-03-19 09:28:59.781 2025-03-19 09:28:59.781 9000 TIP 435328 21040 \N \N 6035269 2025-03-19 09:29:41.133 2025-03-19 09:29:41.133 30000 FEE 435357 8380 \N \N 6035270 2025-03-19 09:29:41.133 2025-03-19 09:29:41.133 270000 TIP 435357 19403 \N \N 6035308 2025-03-19 09:33:19.657 2025-03-19 09:33:19.657 1000 FEE 435365 2013 \N \N 6035311 2025-03-19 09:33:25.468 2025-03-19 09:33:25.468 1000 FEE 435366 12819 \N \N 6035354 2025-03-19 09:37:51.666 2025-03-19 09:37:51.666 8300 FEE 435328 13843 \N \N 6035355 2025-03-19 09:37:51.666 2025-03-19 09:37:51.666 74700 TIP 435328 14376 \N \N 6035370 2025-03-19 09:37:56.52 2025-03-19 09:37:56.52 8300 FEE 435357 19292 \N \N 6035371 2025-03-19 09:37:56.52 2025-03-19 09:37:56.52 74700 TIP 435357 1051 \N \N 6035379 2025-03-19 09:38:20.33 2025-03-19 09:38:20.33 8300 FEE 435359 21222 \N \N 6035380 2025-03-19 09:38:20.33 2025-03-19 09:38:20.33 74700 TIP 435359 1000 \N \N 6035393 2025-03-19 09:38:55.723 2025-03-19 09:38:55.723 1000 FEE 435359 1136 \N \N 6035394 2025-03-19 09:38:55.723 2025-03-19 09:38:55.723 9000 TIP 435359 2367 \N \N 6035399 2025-03-19 09:38:57.662 2025-03-19 09:38:57.662 1000 FEE 435359 925 \N \N 6035110 2025-03-19 09:15:51.243 2025-03-19 09:15:51.243 90000 TIP 433878 14168 \N \N 6035127 2025-03-19 09:16:24.071 2025-03-19 09:16:24.071 2100 FEE 435261 1411 \N \N 6035128 2025-03-19 09:16:24.071 2025-03-19 09:16:24.071 18900 TIP 435261 1145 \N \N 6035131 2025-03-19 09:16:35.759 2025-03-19 09:16:35.759 2100 FEE 435327 899 \N \N 6035132 2025-03-19 09:16:35.759 2025-03-19 09:16:35.759 18900 TIP 435327 21249 \N \N 6035178 2025-03-19 09:22:26.964 2025-03-19 09:22:26.964 100 FEE 435274 2322 \N \N 6035179 2025-03-19 09:22:26.964 2025-03-19 09:22:26.964 900 TIP 435274 960 \N \N 6035194 2025-03-19 09:24:32.173 2025-03-19 09:24:32.173 2300 FEE 435346 4084 \N \N 6035195 2025-03-19 09:24:32.173 2025-03-19 09:24:32.173 20700 TIP 435346 3213 \N \N 6035214 2025-03-19 09:25:58.178 2025-03-19 09:25:58.178 2300 FEE 435352 20450 \N \N 6035215 2025-03-19 09:25:58.178 2025-03-19 09:25:58.178 20700 TIP 435352 21136 \N \N 6035227 2025-03-19 09:27:10.36 2025-03-19 09:27:10.36 2100 FEE 435328 17157 \N \N 6035228 2025-03-19 09:27:10.36 2025-03-19 09:27:10.36 18900 TIP 435328 4166 \N \N 6035230 2025-03-19 09:27:15.535 2025-03-19 09:27:15.535 9000 FEE 435328 7654 \N \N 6035231 2025-03-19 09:27:15.535 2025-03-19 09:27:15.535 81000 TIP 435328 10291 \N \N 6035234 2025-03-19 09:27:54.236 2025-03-19 09:27:54.236 21000 FEE 435359 822 \N \N 6035251 2025-03-19 09:28:45.166 2025-03-19 09:28:45.166 1000 FEE 435326 16571 \N \N 6035252 2025-03-19 09:28:45.166 2025-03-19 09:28:45.166 9000 TIP 435326 20596 \N \N 6035266 2025-03-19 09:29:38.4 2025-03-19 09:29:38.4 1000 FEE 435361 13042 \N \N 6035289 2025-03-19 09:32:55.438 2025-03-19 09:32:55.438 1000 FEE 435359 11192 \N \N 6035290 2025-03-19 09:32:55.438 2025-03-19 09:32:55.438 9000 TIP 435359 16704 \N \N 6035293 2025-03-19 09:32:56.702 2025-03-19 09:32:56.702 1000 FEE 435359 964 \N \N 6035294 2025-03-19 09:32:56.702 2025-03-19 09:32:56.702 9000 TIP 435359 20059 \N \N 6035299 2025-03-19 09:32:58.518 2025-03-19 09:32:58.518 1000 FEE 435359 1720 \N \N 6035300 2025-03-19 09:32:58.518 2025-03-19 09:32:58.518 9000 TIP 435359 956 \N \N 6035301 2025-03-19 09:32:59.189 2025-03-19 09:32:59.189 1000 FEE 435359 18412 \N \N 6035302 2025-03-19 09:32:59.189 2025-03-19 09:32:59.189 9000 TIP 435359 17953 \N \N 6035326 2025-03-19 09:35:03.956 2025-03-19 09:35:03.956 4000 FEE 435359 17291 \N \N 6035327 2025-03-19 09:35:03.956 2025-03-19 09:35:03.956 36000 TIP 435359 959 \N \N 6035332 2025-03-19 09:36:16.034 2025-03-19 09:36:16.034 27000 FEE 435365 8726 \N \N 6035333 2025-03-19 09:36:16.034 2025-03-19 09:36:16.034 243000 TIP 435365 3717 \N \N 6035336 2025-03-19 09:36:50.034 2025-03-19 09:36:50.034 1000 FEE 435354 6578 \N \N 6035337 2025-03-19 09:36:50.034 2025-03-19 09:36:50.034 9000 TIP 435354 21019 \N \N 6035352 2025-03-19 09:37:51.532 2025-03-19 09:37:51.532 8300 FEE 435328 8664 \N \N 6035353 2025-03-19 09:37:51.532 2025-03-19 09:37:51.532 74700 TIP 435328 12490 \N \N 6035358 2025-03-19 09:37:53.212 2025-03-19 09:37:53.212 1000 FEE 435359 17494 \N \N 6035359 2025-03-19 09:37:53.212 2025-03-19 09:37:53.212 9000 TIP 435359 19094 \N \N 6035381 2025-03-19 09:38:21.064 2025-03-19 09:38:21.064 8300 FEE 435359 15326 \N \N 6035382 2025-03-19 09:38:21.064 2025-03-19 09:38:21.064 74700 TIP 435359 4602 \N \N 6035391 2025-03-19 09:38:54.923 2025-03-19 09:38:54.923 1000 FEE 435359 13547 \N \N 6035392 2025-03-19 09:38:54.923 2025-03-19 09:38:54.923 9000 TIP 435359 18274 \N \N 6035414 2025-03-19 09:40:48.45 2025-03-19 09:40:48.45 1000 FEE 435368 1761 \N \N 6035415 2025-03-19 09:40:48.45 2025-03-19 09:40:48.45 9000 TIP 435368 20970 \N \N 6035459 2025-03-19 09:44:49.817 2025-03-19 09:44:49.817 1100 FEE 434807 8469 \N \N 6035460 2025-03-19 09:44:49.817 2025-03-19 09:44:49.817 9900 TIP 434807 18500 \N \N 6035461 2025-03-19 09:44:49.947 2025-03-19 09:44:49.947 1100 FEE 434807 2789 \N \N 6035462 2025-03-19 09:44:49.947 2025-03-19 09:44:49.947 9900 TIP 434807 17953 \N \N 6035473 2025-03-19 09:44:51.811 2025-03-19 09:44:51.811 1100 FEE 435026 909 \N \N 6035474 2025-03-19 09:44:51.811 2025-03-19 09:44:51.811 9900 TIP 435026 4177 \N \N 6035505 2025-03-19 09:45:35.205 2025-03-19 09:45:35.205 1000 FEE 435343 16282 \N \N 6035506 2025-03-19 09:45:35.205 2025-03-19 09:45:35.205 9000 TIP 435343 19346 \N \N 6035515 2025-03-19 09:45:39.838 2025-03-19 09:45:39.838 1000 FEE 435327 2151 \N \N 6035516 2025-03-19 09:45:39.838 2025-03-19 09:45:39.838 9000 TIP 435327 9352 \N \N 6035533 2025-03-19 09:47:47.019 2025-03-19 09:47:47.019 6400 FEE 435115 20370 \N \N 6035534 2025-03-19 09:47:47.019 2025-03-19 09:47:47.019 57600 TIP 435115 798 \N \N 6035536 2025-03-19 09:48:24.947 2025-03-19 09:48:24.947 2100 FEE 435359 13798 \N \N 6035537 2025-03-19 09:48:24.947 2025-03-19 09:48:24.947 18900 TIP 435359 20409 \N \N 6035556 2025-03-19 09:51:02.159 2025-03-19 09:51:02.159 2100 FEE 435328 16347 \N \N 6035557 2025-03-19 09:51:02.159 2025-03-19 09:51:02.159 18900 TIP 435328 657 \N \N 6035601 2025-03-19 09:53:41.199 2025-03-19 09:53:41.199 1000 FEE 435385 3439 \N \N 6035607 2025-03-19 09:54:05.996 2025-03-19 09:54:05.996 0 FEE 435378 21421 \N \N 6035663 2025-03-19 09:57:55.512 2025-03-19 09:57:55.512 100 FEE 435379 989 \N \N 6035664 2025-03-19 09:57:55.512 2025-03-19 09:57:55.512 900 TIP 435379 13622 \N \N 6035676 2025-03-19 09:59:20.449 2025-03-19 09:59:20.449 1100 FEE 435242 21829 \N \N 6035677 2025-03-19 09:59:20.449 2025-03-19 09:59:20.449 9900 TIP 435242 4250 \N \N 6035680 2025-03-19 09:59:25.397 2025-03-19 09:59:25.397 100 FEE 435340 18601 \N \N 6035681 2025-03-19 09:59:25.397 2025-03-19 09:59:25.397 900 TIP 435340 16809 \N \N 6035684 2025-03-19 09:59:39.652 2025-03-19 09:59:39.652 1000 FEE 435395 3411 \N \N 6035714 2025-03-19 10:03:17.888 2025-03-19 10:03:17.888 4600 FEE 435399 11018 \N \N 6038000 2025-03-19 14:22:29.987 2025-03-19 14:22:29.987 7200 TIP 435457 17157 \N \N 6038005 2025-03-19 14:24:06.818 2025-03-19 14:24:06.818 2100 FEE 435631 2460 \N \N 6038006 2025-03-19 14:24:06.818 2025-03-19 14:24:06.818 18900 TIP 435631 20956 \N \N 6038029 2025-03-19 14:25:11.187 2025-03-19 14:25:11.187 8300 FEE 435488 20245 \N \N 6038030 2025-03-19 14:25:11.187 2025-03-19 14:25:11.187 74700 TIP 435488 19193 \N \N 6038039 2025-03-19 14:25:11.88 2025-03-19 14:25:11.88 8300 FEE 435488 1571 \N \N 6038040 2025-03-19 14:25:11.88 2025-03-19 14:25:11.88 74700 TIP 435488 13327 \N \N 6038045 2025-03-19 14:25:12.224 2025-03-19 14:25:12.224 8300 FEE 435488 21021 \N \N 6038046 2025-03-19 14:25:12.224 2025-03-19 14:25:12.224 74700 TIP 435488 16212 \N \N 6038051 2025-03-19 14:25:12.598 2025-03-19 14:25:12.598 8300 FEE 435488 909 \N \N 6038052 2025-03-19 14:25:12.598 2025-03-19 14:25:12.598 74700 TIP 435488 21037 \N \N 6038059 2025-03-19 14:25:13.035 2025-03-19 14:25:13.035 8300 FEE 435488 21520 \N \N 6038060 2025-03-19 14:25:13.035 2025-03-19 14:25:13.035 74700 TIP 435488 2734 \N \N 6038094 2025-03-19 14:25:30.924 2025-03-19 14:25:30.924 8300 FEE 435488 13622 \N \N 6038095 2025-03-19 14:25:30.924 2025-03-19 14:25:30.924 74700 TIP 435488 21003 \N \N 6038102 2025-03-19 14:25:31.349 2025-03-19 14:25:31.349 8300 FEE 435488 11454 \N \N 6038103 2025-03-19 14:25:31.349 2025-03-19 14:25:31.349 74700 TIP 435488 6578 \N \N 6038142 2025-03-19 14:32:21.925 2025-03-19 14:32:21.925 2600 FEE 435357 13767 \N \N 6038143 2025-03-19 14:32:21.925 2025-03-19 14:32:21.925 23400 TIP 435357 2335 \N \N 6038156 2025-03-19 14:34:16.006 2025-03-19 14:34:16.006 8300 FEE 435657 6602 \N \N 6038157 2025-03-19 14:34:16.006 2025-03-19 14:34:16.006 74700 TIP 435657 1567 \N \N 6038162 2025-03-19 14:34:16.421 2025-03-19 14:34:16.421 8300 FEE 435657 4633 \N \N 6038163 2025-03-19 14:34:16.421 2025-03-19 14:34:16.421 74700 TIP 435657 16424 \N \N 6038203 2025-03-19 14:38:06.267 2025-03-19 14:38:06.267 1000 FEE 435664 20603 \N \N 6038219 2025-03-19 14:46:14.603 2025-03-19 14:46:14.603 100 FEE 435328 9833 \N \N 6038220 2025-03-19 14:46:14.603 2025-03-19 14:46:14.603 900 TIP 435328 15544 \N \N 6038221 2025-03-19 14:46:20.515 2025-03-19 14:46:20.515 21000 FEE 435667 2508 \N \N 6038241 2025-03-19 14:49:43.692 2025-03-19 14:49:43.692 2100 FEE 435488 10591 \N \N 6038242 2025-03-19 14:49:43.692 2025-03-19 14:49:43.692 18900 TIP 435488 19071 \N \N 6038292 2025-03-19 14:56:53.869 2025-03-19 14:56:53.869 1000 FEE 435585 6360 \N \N 6038293 2025-03-19 14:56:53.869 2025-03-19 14:56:53.869 9000 TIP 435585 8380 \N \N 6038297 2025-03-19 14:57:51.86 2025-03-19 14:57:51.86 2600 FEE 435663 14688 \N \N 6038298 2025-03-19 14:57:51.86 2025-03-19 14:57:51.86 23400 TIP 435663 1493 \N \N 6038302 2025-03-19 14:58:56.625 2025-03-19 14:58:56.625 100000 FEE 435673 19463 \N \N 6038310 2025-03-19 15:01:56.698 2025-03-19 15:01:56.698 1100 FEE 435488 20755 \N \N 6038311 2025-03-19 15:01:56.698 2025-03-19 15:01:56.698 9900 TIP 435488 1745 \N \N 6038325 2025-03-19 15:04:12.176 2025-03-19 15:04:12.176 300 FEE 435457 20306 \N \N 6038326 2025-03-19 15:04:12.176 2025-03-19 15:04:12.176 2700 TIP 435457 19469 \N \N 6038348 2025-03-19 15:04:14.982 2025-03-19 15:04:14.982 300 FEE 435457 21136 \N \N 6038349 2025-03-19 15:04:14.982 2025-03-19 15:04:14.982 2700 TIP 435457 3396 \N \N 6038352 2025-03-19 15:04:15.411 2025-03-19 15:04:15.411 300 FEE 435457 17722 \N \N 6038353 2025-03-19 15:04:15.411 2025-03-19 15:04:15.411 2700 TIP 435457 1602 \N \N 6038366 2025-03-19 15:04:17.133 2025-03-19 15:04:17.133 300 FEE 435457 3717 \N \N 6038367 2025-03-19 15:04:17.133 2025-03-19 15:04:17.133 2700 TIP 435457 2196 \N \N 6038368 2025-03-19 15:04:17.419 2025-03-19 15:04:17.419 300 FEE 435457 11192 \N \N 6038369 2025-03-19 15:04:17.419 2025-03-19 15:04:17.419 2700 TIP 435457 20924 \N \N 6038390 2025-03-19 15:06:56.867 2025-03-19 15:06:56.867 1000 FEE 435683 16406 \N \N 6038443 2025-03-19 15:16:28.113 2025-03-19 15:16:28.113 100 FEE 435580 19292 \N \N 6038444 2025-03-19 15:16:28.113 2025-03-19 15:16:28.113 900 TIP 435580 9167 \N \N 6038458 2025-03-19 15:16:45.501 2025-03-19 15:16:45.501 100 FEE 435629 14857 \N \N 6038459 2025-03-19 15:16:45.501 2025-03-19 15:16:45.501 900 TIP 435629 21714 \N \N 6038477 2025-03-19 15:17:57.387 2025-03-19 15:17:57.387 900 FEE 435690 1272 \N \N 6038478 2025-03-19 15:17:57.387 2025-03-19 15:17:57.387 8100 TIP 435690 9969 \N \N 6038498 2025-03-19 15:18:07.951 2025-03-19 15:18:07.951 1000 FEE 435692 8004 \N \N 6038527 2025-03-19 15:18:29.719 2025-03-19 15:18:29.719 100 FEE 435679 14774 \N \N 6038528 2025-03-19 15:18:29.719 2025-03-19 15:18:29.719 900 TIP 435679 21048 \N \N 6038577 2025-03-19 15:28:58.597 2025-03-19 15:28:58.597 1000 FEE 435699 20624 \N \N 6038587 2025-03-19 15:29:28.059 2025-03-19 15:29:28.059 1000 FEE 435700 9529 \N \N 6038611 2025-03-19 15:30:57.446 2025-03-19 15:30:57.446 2300 FEE 435657 11866 \N \N 6038612 2025-03-19 15:30:57.446 2025-03-19 15:30:57.446 20700 TIP 435657 1609 \N \N 6038634 2025-03-19 15:31:49.71 2025-03-19 15:31:49.71 2300 FEE 435657 4259 \N \N 6038635 2025-03-19 15:31:49.71 2025-03-19 15:31:49.71 20700 TIP 435657 8287 \N \N 6038666 2025-03-19 15:35:21.442 2025-03-19 15:35:21.442 1000 FEE 435706 13055 \N \N 6038667 2025-03-19 15:35:21.442 2025-03-19 15:35:21.442 9000 TIP 435706 20137 \N \N 6038673 2025-03-19 15:36:44.3 2025-03-19 15:36:44.3 1000 FEE 435708 21798 \N \N 6038684 2025-03-19 15:39:36.198 2025-03-19 15:39:36.198 3000 FEE 435694 16456 \N \N 6038685 2025-03-19 15:39:36.198 2025-03-19 15:39:36.198 27000 TIP 435694 14278 \N \N 6038696 2025-03-19 15:41:51.371 2025-03-19 15:41:51.371 1100 FEE 435488 19394 \N \N 6038697 2025-03-19 15:41:51.371 2025-03-19 15:41:51.371 9900 TIP 435488 10102 \N \N 6038715 2025-03-19 15:42:00.825 2025-03-19 15:42:00.825 10000 FEE 435680 11798 \N \N 6038716 2025-03-19 15:42:00.825 2025-03-19 15:42:00.825 90000 TIP 435680 20858 \N \N 6038727 2025-03-19 15:49:07.117 2025-03-19 15:49:07.117 3000 FEE 435390 13327 \N \N 6038728 2025-03-19 15:49:07.117 2025-03-19 15:49:07.117 27000 TIP 435390 7818 \N \N 6038729 2025-03-19 15:49:08.426 2025-03-19 15:49:08.426 1000 FEE 435715 5728 \N \N 6038746 2025-03-19 15:51:59.868 2025-03-19 15:51:59.868 300 FEE 435715 15239 \N \N 6038747 2025-03-19 15:51:59.868 2025-03-19 15:51:59.868 2700 TIP 435715 16633 \N \N 6038749 2025-03-19 15:52:15.7 2025-03-19 15:52:15.7 1000 FEE 435718 2703 \N \N 6038773 2025-03-19 15:57:06.016 2025-03-19 15:57:06.016 1000 FEE 435724 12220 \N \N 6038794 2025-03-19 16:01:37.387 2025-03-19 16:01:37.387 900 FEE 435610 822 \N \N 6038795 2025-03-19 16:01:37.387 2025-03-19 16:01:37.387 8100 TIP 435610 2776 \N \N 6038840 2025-03-19 16:15:10.174 2025-03-19 16:15:10.174 1000 FEE 435663 12946 \N \N 6038841 2025-03-19 16:15:10.174 2025-03-19 16:15:10.174 9000 TIP 435663 1519 \N \N 6038869 2025-03-19 16:17:46.374 2025-03-19 16:17:46.374 1000 FEE 435624 11829 \N \N 6038870 2025-03-19 16:17:46.374 2025-03-19 16:17:46.374 9000 TIP 435624 19813 \N \N 6038873 2025-03-19 16:18:04.418 2025-03-19 16:18:04.418 1000 FEE 435516 10490 \N \N 6038874 2025-03-19 16:18:04.418 2025-03-19 16:18:04.418 9000 TIP 435516 10719 \N \N 6038875 2025-03-19 16:18:04.637 2025-03-19 16:18:04.637 1000 FEE 435516 2460 \N \N 6038876 2025-03-19 16:18:04.637 2025-03-19 16:18:04.637 9000 TIP 435516 1650 \N \N 6038932 2025-03-19 16:29:44.964 2025-03-19 16:29:44.964 2300 FEE 435596 17091 \N \N 6038933 2025-03-19 16:29:44.964 2025-03-19 16:29:44.964 20700 TIP 435596 11240 \N \N 6038978 2025-03-19 16:41:29.62 2025-03-19 16:41:29.62 2700 FEE 435552 19126 \N \N 6038979 2025-03-19 16:41:29.62 2025-03-19 16:41:29.62 24300 TIP 435552 20864 \N \N 6039052 2025-03-19 16:57:21.442 2025-03-19 16:57:21.442 2700 FEE 435198 19668 \N \N 6039053 2025-03-19 16:57:21.442 2025-03-19 16:57:21.442 24300 TIP 435198 18351 \N \N 6039054 2025-03-19 16:57:21.619 2025-03-19 16:57:21.619 2700 FEE 435198 16387 \N \N 6035285 2025-03-19 09:32:44.951 2025-03-19 09:32:44.951 10000 FEE 435328 12921 \N \N 6035286 2025-03-19 09:32:44.951 2025-03-19 09:32:44.951 90000 TIP 435328 15409 \N \N 6035295 2025-03-19 09:32:57.379 2025-03-19 09:32:57.379 1000 FEE 435359 17526 \N \N 6035296 2025-03-19 09:32:57.379 2025-03-19 09:32:57.379 9000 TIP 435359 18717 \N \N 6035303 2025-03-19 09:32:59.875 2025-03-19 09:32:59.875 1000 FEE 435359 658 \N \N 6035304 2025-03-19 09:32:59.875 2025-03-19 09:32:59.875 9000 TIP 435359 21242 \N \N 6035318 2025-03-19 09:33:44.901 2025-03-19 09:33:44.901 1000 FEE 435366 16594 \N \N 6035319 2025-03-19 09:33:44.901 2025-03-19 09:33:44.901 9000 TIP 435366 2176 \N \N 6035324 2025-03-19 09:34:51.653 2025-03-19 09:34:51.653 2100 FEE 435359 1273 \N \N 6035325 2025-03-19 09:34:51.653 2025-03-19 09:34:51.653 18900 TIP 435359 763 \N \N 6035339 2025-03-19 09:37:16.878 2025-03-19 09:37:16.878 200 FEE 435359 10493 \N \N 6035340 2025-03-19 09:37:16.878 2025-03-19 09:37:16.878 1800 TIP 435359 2437 \N \N 6035342 2025-03-19 09:37:41.899 2025-03-19 09:37:41.899 8300 FEE 435217 11454 \N \N 6035343 2025-03-19 09:37:41.899 2025-03-19 09:37:41.899 74700 TIP 435217 16193 \N \N 6035346 2025-03-19 09:37:50.501 2025-03-19 09:37:50.501 8300 FEE 435328 14452 \N \N 6035347 2025-03-19 09:37:50.501 2025-03-19 09:37:50.501 74700 TIP 435328 4474 \N \N 6035360 2025-03-19 09:37:54.108 2025-03-19 09:37:54.108 1000 FEE 435359 2151 \N \N 6035361 2025-03-19 09:37:54.108 2025-03-19 09:37:54.108 9000 TIP 435359 12768 \N \N 6035377 2025-03-19 09:38:20.212 2025-03-19 09:38:20.212 8300 FEE 435359 10821 \N \N 6035378 2025-03-19 09:38:20.212 2025-03-19 09:38:20.212 74700 TIP 435359 21413 \N \N 6035397 2025-03-19 09:38:56.64 2025-03-19 09:38:56.64 1000 FEE 435359 7903 \N \N 6035398 2025-03-19 09:38:56.64 2025-03-19 09:38:56.64 9000 TIP 435359 2402 \N \N 6035407 2025-03-19 09:39:59.504 2025-03-19 09:39:59.504 3000 FEE 435371 19863 \N \N 6035408 2025-03-19 09:39:59.504 2025-03-19 09:39:59.504 27000 TIP 435371 14169 \N \N 6035416 2025-03-19 09:40:49.153 2025-03-19 09:40:49.153 1000 FEE 435368 15491 \N \N 6035417 2025-03-19 09:40:49.153 2025-03-19 09:40:49.153 9000 TIP 435368 998 \N \N 6035418 2025-03-19 09:40:49.534 2025-03-19 09:40:49.534 1000 FEE 435368 21164 \N \N 6028583 2025-03-18 18:41:53.242 2025-03-18 18:41:53.242 100 FEE 434509 6361 \N \N 6028584 2025-03-18 18:41:53.242 2025-03-18 18:41:53.242 900 TIP 434509 20710 \N \N 6028603 2025-03-18 18:43:47.293 2025-03-18 18:43:47.293 1000 FEE 434512 21523 \N \N 6028615 2025-03-18 18:46:52.493 2025-03-18 18:46:52.493 1000 FEE 434479 11515 \N \N 6028616 2025-03-18 18:46:52.493 2025-03-18 18:46:52.493 9000 TIP 434479 20094 \N \N 6028617 2025-03-18 18:46:52.699 2025-03-18 18:46:52.699 1000 FEE 434479 1576 \N \N 6028618 2025-03-18 18:46:52.699 2025-03-18 18:46:52.699 9000 TIP 434479 672 \N \N 6028628 2025-03-18 18:47:24.142 2025-03-18 18:47:24.142 1000 FEE 434513 15536 \N \N 6028641 2025-03-18 18:49:31.234 2025-03-18 18:49:31.234 2100 FEE 434500 9354 \N \N 6028642 2025-03-18 18:49:31.234 2025-03-18 18:49:31.234 18900 TIP 434500 1064 \N \N 6028687 2025-03-18 18:59:27.425 2025-03-18 18:59:27.425 1000 FEE 434519 20756 \N \N 6028694 2025-03-18 19:00:44.868 2025-03-18 19:00:44.868 1000 FEE 434349 21815 \N \N 6028695 2025-03-18 19:00:44.868 2025-03-18 19:00:44.868 9000 TIP 434349 5728 \N \N 6028711 2025-03-18 19:03:42.591 2025-03-18 19:03:42.591 1000 FEE 434396 2204 \N \N 6028712 2025-03-18 19:03:42.591 2025-03-18 19:03:42.591 9000 TIP 434396 5444 \N \N 6028715 2025-03-18 19:05:35.374 2025-03-18 19:05:35.374 1000 FEE 434525 14376 \N \N 6028757 2025-03-18 19:10:31.613 2025-03-18 19:10:31.613 2100 FEE 434506 16939 \N \N 6028758 2025-03-18 19:10:31.613 2025-03-18 19:10:31.613 18900 TIP 434506 17212 \N \N 6028761 2025-03-18 19:11:02.688 2025-03-18 19:11:02.688 1000 FEE 434528 18630 \N \N 6028790 2025-03-18 19:18:34.627 2025-03-18 19:18:34.627 8300 FEE 434488 17817 \N \N 6028791 2025-03-18 19:18:34.627 2025-03-18 19:18:34.627 74700 TIP 434488 17212 \N \N 6028813 2025-03-18 19:26:18.682 2025-03-18 19:26:18.682 1000 FEE 434231 4958 \N \N 6028814 2025-03-18 19:26:18.682 2025-03-18 19:26:18.682 9000 TIP 434231 16347 \N \N 6028855 2025-03-18 19:36:54.902 2025-03-18 19:36:54.902 100 FEE 434485 8726 \N \N 6028856 2025-03-18 19:36:54.902 2025-03-18 19:36:54.902 900 TIP 434485 16387 \N \N 6028868 2025-03-18 19:37:26.229 2025-03-18 19:37:26.229 900 FEE 434527 18678 \N \N 6028869 2025-03-18 19:37:26.229 2025-03-18 19:37:26.229 8100 TIP 434527 1273 \N \N 6028897 2025-03-18 19:39:43.804 2025-03-18 19:39:43.804 100 FEE 434424 672 \N \N 6028898 2025-03-18 19:39:43.804 2025-03-18 19:39:43.804 900 TIP 434424 698 \N \N 6028904 2025-03-18 19:41:24.454 2025-03-18 19:41:24.454 2100 FEE 434539 8242 \N \N 6028905 2025-03-18 19:41:24.454 2025-03-18 19:41:24.454 18900 TIP 434539 9378 \N \N 6028985 2025-03-18 20:02:40.623 2025-03-18 20:02:40.623 1000 FEE 434552 20225 \N \N 6029007 2025-03-18 20:12:44.288 2025-03-18 20:12:44.288 1000 FEE 434560 9262 \N \N 6029027 2025-03-18 20:15:37.189 2025-03-18 20:15:37.189 25600 FEE 434440 21090 \N \N 6029028 2025-03-18 20:15:37.189 2025-03-18 20:15:37.189 230400 TIP 434440 20606 \N \N 6029034 2025-03-18 20:16:50.785 2025-03-18 20:16:50.785 1000 FEE 434565 8045 \N \N 6029035 2025-03-18 20:16:52.793 2025-03-18 20:16:52.793 10000 FEE 433860 1316 \N \N 6029036 2025-03-18 20:16:52.793 2025-03-18 20:16:52.793 90000 TIP 433860 2010 \N \N 6029059 2025-03-18 20:19:37.327 2025-03-18 20:19:37.327 2100 FEE 434509 14385 \N \N 6029060 2025-03-18 20:19:37.327 2025-03-18 20:19:37.327 18900 TIP 434509 8416 \N \N 6029068 2025-03-18 20:21:29.383 2025-03-18 20:21:29.383 1000 FEE 434568 14774 \N \N 6029081 2025-03-18 20:26:37.65 2025-03-18 20:26:37.65 2100 FEE 434479 8541 \N \N 6029082 2025-03-18 20:26:37.65 2025-03-18 20:26:37.65 18900 TIP 434479 9336 \N \N 6029083 2025-03-18 20:26:40.728 2025-03-18 20:26:40.728 2100 FEE 434513 19417 \N \N 6035400 2025-03-19 09:38:57.662 2025-03-19 09:38:57.662 9000 TIP 435359 9669 \N \N 6035401 2025-03-19 09:38:59.278 2025-03-19 09:38:59.278 1000 FEE 435359 9169 \N \N 6035402 2025-03-19 09:38:59.278 2025-03-19 09:38:59.278 9000 TIP 435359 9329 \N \N 6035429 2025-03-19 09:42:39.353 2025-03-19 09:42:39.353 2100 FEE 435121 1970 \N \N 6035430 2025-03-19 09:42:39.353 2025-03-19 09:42:39.353 18900 TIP 435121 21103 \N \N 6035478 2025-03-19 09:45:00.534 2025-03-19 09:45:00.534 1000 FEE 435375 622 \N \N 6035479 2025-03-19 09:45:00.534 2025-03-19 09:45:00.534 9000 TIP 435375 2042 \N \N 6035480 2025-03-19 09:45:00.797 2025-03-19 09:45:00.797 1000 FEE 435375 769 \N \N 6035481 2025-03-19 09:45:00.797 2025-03-19 09:45:00.797 9000 TIP 435375 679 \N \N 6035482 2025-03-19 09:45:00.99 2025-03-19 09:45:00.99 1000 FEE 435375 18930 \N \N 6035483 2025-03-19 09:45:00.99 2025-03-19 09:45:00.99 9000 TIP 435375 20597 \N \N 6035507 2025-03-19 09:45:35.265 2025-03-19 09:45:35.265 10000 FEE 435328 12334 \N \N 6035508 2025-03-19 09:45:35.265 2025-03-19 09:45:35.265 90000 TIP 435328 675 \N \N 6035541 2025-03-19 09:48:55.37 2025-03-19 09:48:55.37 20000 FEE 435379 9352 \N \N 6035550 2025-03-19 09:50:31.229 2025-03-19 09:50:31.229 200 FEE 435378 16230 \N \N 6035551 2025-03-19 09:50:31.229 2025-03-19 09:50:31.229 1800 TIP 435378 21338 \N \N 6035571 2025-03-19 09:51:38.515 2025-03-19 09:51:38.515 1000 FEE 435382 9341 \N \N 6035589 2025-03-19 09:52:35.995 2025-03-19 09:52:35.995 1000 FEE 434124 20157 \N \N 6035590 2025-03-19 09:52:35.995 2025-03-19 09:52:35.995 9000 TIP 434124 9845 \N \N 6035591 2025-03-19 09:52:36.137 2025-03-19 09:52:36.137 1000 FEE 434124 20205 \N \N 6035592 2025-03-19 09:52:36.137 2025-03-19 09:52:36.137 9000 TIP 434124 4292 \N \N 6035602 2025-03-19 09:53:43.84 2025-03-19 09:53:43.84 2100 FEE 435370 805 \N \N 6035603 2025-03-19 09:53:43.84 2025-03-19 09:53:43.84 18900 TIP 435370 19527 \N \N 6035613 2025-03-19 09:55:07.38 2025-03-19 09:55:07.38 2300 FEE 435377 20275 \N \N 6035614 2025-03-19 09:55:07.38 2025-03-19 09:55:07.38 20700 TIP 435377 5775 \N \N 6035634 2025-03-19 09:55:14.192 2025-03-19 09:55:14.192 2300 FEE 435377 20201 \N \N 6035635 2025-03-19 09:55:14.192 2025-03-19 09:55:14.192 20700 TIP 435377 9177 \N \N 6035647 2025-03-19 09:55:58.019 2025-03-19 09:55:58.019 2300 FEE 435377 7580 \N \N 6035648 2025-03-19 09:55:58.019 2025-03-19 09:55:58.019 20700 TIP 435377 10611 \N \N 6035668 2025-03-19 09:58:40.329 2025-03-19 09:58:40.329 210000 FEE 435392 1584 \N \N 6035412 2025-03-19 09:40:48.001 2025-03-19 09:40:48.001 1000 FEE 435368 16309 \N \N 6035413 2025-03-19 09:40:48.001 2025-03-19 09:40:48.001 9000 TIP 435368 11220 \N \N 6035426 2025-03-19 09:42:27.715 2025-03-19 09:42:27.715 1000 FEE 435372 698 \N \N 6035431 2025-03-19 09:42:57.358 2025-03-19 09:42:57.358 10000 FEE 435357 18188 \N \N 6035432 2025-03-19 09:42:57.358 2025-03-19 09:42:57.358 90000 TIP 435357 8376 \N \N 6035433 2025-03-19 09:43:03.184 2025-03-19 09:43:03.184 1000 FEE 435373 4173 \N \N 6035437 2025-03-19 09:43:35.888 2025-03-19 09:43:35.888 3000 FEE 435372 19512 \N \N 6035438 2025-03-19 09:43:35.888 2025-03-19 09:43:35.888 27000 TIP 435372 11091 \N \N 6035453 2025-03-19 09:44:48.973 2025-03-19 09:44:48.973 1100 FEE 434665 616 \N \N 6035454 2025-03-19 09:44:48.973 2025-03-19 09:44:48.973 9900 TIP 434665 11829 \N \N 6035455 2025-03-19 09:44:49.087 2025-03-19 09:44:49.087 1100 FEE 434665 4084 \N \N 6035456 2025-03-19 09:44:49.087 2025-03-19 09:44:49.087 9900 TIP 434665 15488 \N \N 6035457 2025-03-19 09:44:49.193 2025-03-19 09:44:49.193 1100 FEE 434665 21207 \N \N 6035458 2025-03-19 09:44:49.193 2025-03-19 09:44:49.193 9900 TIP 434665 4831 \N \N 6035475 2025-03-19 09:44:52.015 2025-03-19 09:44:52.015 1100 FEE 435026 11938 \N \N 6035476 2025-03-19 09:44:52.015 2025-03-19 09:44:52.015 9900 TIP 435026 1800 \N \N 6028860 2025-03-18 19:36:55.973 2025-03-18 19:36:55.973 81000 TIP 434485 20201 \N \N 6028874 2025-03-18 19:37:34.782 2025-03-18 19:37:34.782 100 FEE 434535 11789 \N \N 6028875 2025-03-18 19:37:34.782 2025-03-18 19:37:34.782 900 TIP 434535 18557 \N \N 6028878 2025-03-18 19:37:36.489 2025-03-18 19:37:36.489 9000 FEE 434535 11328 \N \N 6028879 2025-03-18 19:37:36.489 2025-03-18 19:37:36.489 81000 TIP 434535 9611 \N \N 6028885 2025-03-18 19:38:30.288 2025-03-18 19:38:30.288 100 FEE 434440 20881 \N \N 6028886 2025-03-18 19:38:30.288 2025-03-18 19:38:30.288 900 TIP 434440 17014 \N \N 6028891 2025-03-18 19:38:43.896 2025-03-18 19:38:43.896 1000 FEE 434542 1761 \N \N 6028913 2025-03-18 19:42:21.516 2025-03-18 19:42:21.516 100000 FEE 434544 21506 \N \N 6028919 2025-03-18 19:43:45.36 2025-03-18 19:43:45.36 2000 FEE 434544 20220 \N \N 6028920 2025-03-18 19:43:45.36 2025-03-18 19:43:45.36 18000 TIP 434544 14037 \N \N 6028925 2025-03-18 19:46:12.696 2025-03-18 19:46:12.696 1000 FEE 434545 12976 \N \N 6028932 2025-03-18 19:47:23.449 2025-03-18 19:47:23.449 1000 FEE 433943 17109 \N \N 6028933 2025-03-18 19:47:23.449 2025-03-18 19:47:23.449 9000 TIP 433943 13865 \N \N 6028977 2025-03-18 19:59:04.789 2025-03-18 19:59:04.789 10000 FEE 434549 1136 \N \N 6028978 2025-03-18 19:59:04.789 2025-03-18 19:59:04.789 90000 TIP 434549 10862 \N \N 6028979 2025-03-18 19:59:08.949 2025-03-18 19:59:08.949 1000 FEE 434550 2776 \N \N 6028990 2025-03-18 20:04:40.019 2025-03-18 20:04:40.019 1000 FEE 434555 16145 \N \N 6028992 2025-03-18 20:05:43.163 2025-03-18 20:05:43.163 1000 FEE 434556 8945 \N \N 6029014 2025-03-18 20:14:07.225 2025-03-18 20:14:07.225 1100 FEE 434436 730 \N \N 6029015 2025-03-18 20:14:07.225 2025-03-18 20:14:07.225 9900 TIP 434436 20852 \N \N 6029019 2025-03-18 20:14:08.83 2025-03-18 20:14:08.83 7100 FEE 434488 15192 \N \N 6029020 2025-03-18 20:14:08.83 2025-03-18 20:14:08.83 63900 TIP 434488 19854 \N \N 6029021 2025-03-18 20:14:09.265 2025-03-18 20:14:09.265 7100 FEE 434488 2529 \N \N 6029022 2025-03-18 20:14:09.265 2025-03-18 20:14:09.265 63900 TIP 434488 20254 \N \N 6029030 2025-03-18 20:15:51.193 2025-03-18 20:15:51.193 1000 FEE 434564 16929 \N \N 6029121 2025-03-18 20:37:36.685 2025-03-18 20:37:36.685 100 FEE 434242 10986 \N \N 6029122 2025-03-18 20:37:36.685 2025-03-18 20:37:36.685 900 TIP 434242 4984 \N \N 6029126 2025-03-18 20:39:37.732 2025-03-18 20:39:37.732 2100 FEE 434431 4650 \N \N 6029127 2025-03-18 20:39:37.732 2025-03-18 20:39:37.732 18900 TIP 434431 13599 \N \N 6029158 2025-03-18 20:46:04.989 2025-03-18 20:46:04.989 1000 FEE 434581 21338 \N \N 6029169 2025-03-18 20:47:56 2025-03-18 20:47:56 2100 FEE 434387 11885 \N \N 6029170 2025-03-18 20:47:56 2025-03-18 20:47:56 18900 TIP 434387 9820 \N \N 6029185 2025-03-18 20:51:36.944 2025-03-18 20:51:36.944 7700 FEE 427186 963 \N \N 6029186 2025-03-18 20:51:36.944 2025-03-18 20:51:36.944 69300 TIP 427186 14688 \N \N 6029219 2025-03-18 21:01:36.801 2025-03-18 21:01:36.801 3300 FEE 434556 14278 \N \N 6029220 2025-03-18 21:01:36.801 2025-03-18 21:01:36.801 29700 TIP 434556 14295 \N \N 6029234 2025-03-18 21:02:18.67 2025-03-18 21:02:18.67 21000 FEE 434588 15196 \N \N 6029235 2025-03-18 21:03:10.666 2025-03-18 21:03:10.666 3300 FEE 434465 5590 \N \N 6029236 2025-03-18 21:03:10.666 2025-03-18 21:03:10.666 29700 TIP 434465 20849 \N \N 6029251 2025-03-18 21:04:16.44 2025-03-18 21:04:16.44 3300 FEE 434565 2718 \N \N 6029252 2025-03-18 21:04:16.44 2025-03-18 21:04:16.44 29700 TIP 434565 21051 \N \N 6029275 2025-03-18 21:07:51.708 2025-03-18 21:07:51.708 5000 FEE 434501 21685 \N \N 6029276 2025-03-18 21:07:51.708 2025-03-18 21:07:51.708 45000 TIP 434501 732 \N \N 6029282 2025-03-18 21:09:21.763 2025-03-18 21:09:21.763 400 FEE 434494 21455 \N \N 6029283 2025-03-18 21:09:21.763 2025-03-18 21:09:21.763 3600 TIP 434494 21303 \N \N 6029292 2025-03-18 21:12:14.433 2025-03-18 21:12:14.433 1000 FEE 434599 21405 \N \N 6029299 2025-03-18 21:14:16.811 2025-03-18 21:14:16.811 21000 DONT_LIKE_THIS 434535 18441 \N \N 6029300 2025-03-18 21:14:28.775 2025-03-18 21:14:28.775 2100 FEE 434440 1354 \N \N 6029301 2025-03-18 21:14:28.775 2025-03-18 21:14:28.775 18900 TIP 434440 12277 \N \N 6029318 2025-03-18 21:19:35.969 2025-03-18 21:19:35.969 1000 FEE 434487 763 \N \N 6029319 2025-03-18 21:19:35.969 2025-03-18 21:19:35.969 9000 TIP 434487 2437 \N \N 6029329 2025-03-18 21:22:59.006 2025-03-18 21:22:59.006 2000 FEE 434535 5578 \N \N 6029330 2025-03-18 21:22:59.006 2025-03-18 21:22:59.006 18000 TIP 434535 4459 \N \N 6029341 2025-03-18 21:25:45.022 2025-03-18 21:25:45.022 5000 FEE 434535 21539 \N \N 6028911 2025-03-18 19:41:34.108 2025-03-18 19:41:34.108 18900 TIP 434539 18494 \N \N 6028930 2025-03-18 19:47:22.661 2025-03-18 19:47:22.661 1000 FEE 434285 18330 \N \N 6028931 2025-03-18 19:47:22.661 2025-03-18 19:47:22.661 9000 TIP 434285 17184 \N \N 6028961 2025-03-18 19:53:13.655 2025-03-18 19:53:13.655 1000 FEE 434546 15180 \N \N 6029008 2025-03-18 20:13:02.469 2025-03-18 20:13:02.469 1000 FEE 434561 623 \N \N 6029048 2025-03-18 20:18:58.815 2025-03-18 20:18:58.815 2100 FEE 434500 5527 \N \N 6029049 2025-03-18 20:18:58.815 2025-03-18 20:18:58.815 18900 TIP 434500 7425 \N \N 6029051 2025-03-18 20:19:14.738 2025-03-18 20:19:14.738 100 FEE 434485 16154 \N \N 6029052 2025-03-18 20:19:14.738 2025-03-18 20:19:14.738 900 TIP 434485 12946 \N \N 6029075 2025-03-18 20:25:06.963 2025-03-18 20:25:06.963 1000 FEE 434570 16432 \N \N 6029088 2025-03-18 20:27:12.277 2025-03-18 20:27:12.277 12800 FEE 433240 11417 \N \N 6029089 2025-03-18 20:27:12.277 2025-03-18 20:27:12.277 115200 TIP 433240 11967 \N \N 6029102 2025-03-18 20:30:36.517 2025-03-18 20:30:36.517 156300 FEE 432920 2330 \N \N 6029103 2025-03-18 20:30:36.517 2025-03-18 20:30:36.517 1406700 TIP 432920 633 \N \N 6029145 2025-03-18 20:43:43.177 2025-03-18 20:43:43.177 1000 FEE 434578 7425 \N \N 6029152 2025-03-18 20:45:03.808 2025-03-18 20:45:03.808 2100 FEE 434485 13174 \N \N 6029153 2025-03-18 20:45:03.808 2025-03-18 20:45:03.808 18900 TIP 434485 21408 \N \N 6029157 2025-03-18 20:45:19.319 2025-03-18 20:45:19.319 10000 FEE 434580 21003 \N \N 6029183 2025-03-18 20:51:36.663 2025-03-18 20:51:36.663 7700 FEE 427186 14990 \N \N 6029184 2025-03-18 20:51:36.663 2025-03-18 20:51:36.663 69300 TIP 427186 9167 \N \N 6029187 2025-03-18 20:51:44.168 2025-03-18 20:51:44.168 0 FEE 434585 15336 \N \N 6029211 2025-03-18 21:01:25.105 2025-03-18 21:01:25.105 3300 FEE 434535 5175 \N \N 6029212 2025-03-18 21:01:25.105 2025-03-18 21:01:25.105 29700 TIP 434535 649 \N \N 6029229 2025-03-18 21:01:45.733 2025-03-18 21:01:45.733 3300 FEE 434481 1122 \N \N 6029230 2025-03-18 21:01:45.733 2025-03-18 21:01:45.733 29700 TIP 434481 12169 \N \N 6029256 2025-03-18 21:05:15.296 2025-03-18 21:05:15.296 1000 FEE 434589 8287 \N \N 6029272 2025-03-18 21:07:10.87 2025-03-18 21:07:10.87 10000 FEE 434077 18321 \N \N 6029273 2025-03-18 21:07:10.87 2025-03-18 21:07:10.87 90000 TIP 434077 16442 \N \N 6029278 2025-03-18 21:08:17.324 2025-03-18 21:08:17.324 1000 FEE 434592 9529 \N \N 6029279 2025-03-18 21:08:55.383 2025-03-18 21:08:55.383 1000 FEE 434593 9863 \N \N 6029293 2025-03-18 21:12:14.69 2025-03-18 21:12:14.69 2600 FEE 434553 1833 \N \N 6029294 2025-03-18 21:12:14.69 2025-03-18 21:12:14.69 23400 TIP 434553 16834 \N \N 6029323 2025-03-18 21:22:42.904 2025-03-18 21:22:42.904 2000 FEE 434498 1002 \N \N 6029324 2025-03-18 21:22:42.904 2025-03-18 21:22:42.904 18000 TIP 434498 981 \N \N 6029331 2025-03-18 21:22:59.393 2025-03-18 21:22:59.393 2000 FEE 434535 20817 \N \N 6029332 2025-03-18 21:22:59.393 2025-03-18 21:22:59.393 18000 TIP 434535 14258 \N \N 6029336 2025-03-18 21:23:28.999 2025-03-18 21:23:28.999 10000 FEE 434606 1320 \N \N 6029339 2025-03-18 21:24:23.925 2025-03-18 21:24:23.925 1000 FEE 434608 7877 \N \N 6029351 2025-03-18 21:26:08.686 2025-03-18 21:26:08.686 1000 FEE 434385 16847 \N \N 6029352 2025-03-18 21:26:08.686 2025-03-18 21:26:08.686 9000 TIP 434385 624 \N \N 6029372 2025-03-18 21:26:34.957 2025-03-18 21:26:34.957 1000 FEE 434396 9378 \N \N 6029373 2025-03-18 21:26:34.957 2025-03-18 21:26:34.957 9000 TIP 434396 14939 \N \N 6029374 2025-03-18 21:26:47.831 2025-03-18 21:26:47.831 1000 FEE 434396 21026 \N \N 6029375 2025-03-18 21:26:47.831 2025-03-18 21:26:47.831 9000 TIP 434396 9378 \N \N 6029387 2025-03-18 21:27:36.193 2025-03-18 21:27:36.193 1000 FEE 434513 1549 \N \N 6029388 2025-03-18 21:27:36.193 2025-03-18 21:27:36.193 9000 TIP 434513 3411 \N \N 6029415 2025-03-18 21:27:45.415 2025-03-18 21:27:45.415 1000 FEE 434536 1244 \N \N 6029416 2025-03-18 21:27:45.415 2025-03-18 21:27:45.415 9000 TIP 434536 617 \N \N 6029417 2025-03-18 21:27:45.662 2025-03-18 21:27:45.662 1000 FEE 434535 4345 \N \N 6029418 2025-03-18 21:27:45.662 2025-03-18 21:27:45.662 9000 TIP 434535 5694 \N \N 6029431 2025-03-18 21:27:50.599 2025-03-18 21:27:50.599 1000 FEE 434462 1647 \N \N 6029432 2025-03-18 21:27:50.599 2025-03-18 21:27:50.599 9000 TIP 434462 977 \N \N 6029479 2025-03-18 21:28:07.878 2025-03-18 21:28:07.878 1000 FEE 434293 6526 \N \N 6029480 2025-03-18 21:28:07.878 2025-03-18 21:28:07.878 9000 TIP 434293 20691 \N \N 6029497 2025-03-18 21:28:13.246 2025-03-18 21:28:13.246 1000 FEE 434264 21239 \N \N 6029498 2025-03-18 21:28:13.246 2025-03-18 21:28:13.246 9000 TIP 434264 5500 \N \N 6029557 2025-03-18 21:51:10.045 2025-03-18 21:51:10.045 2100 FEE 434440 17526 \N \N 6029558 2025-03-18 21:51:10.045 2025-03-18 21:51:10.045 18900 TIP 434440 8684 \N \N 6029591 2025-03-18 21:58:24.697 2025-03-18 21:58:24.697 0 FEE 434626 19637 \N \N 6029602 2025-03-18 21:59:10.227 2025-03-18 21:59:10.227 1000 FEE 434601 16387 \N \N 6029603 2025-03-18 21:59:10.227 2025-03-18 21:59:10.227 9000 TIP 434601 21233 \N \N 6029632 2025-03-18 22:04:43.402 2025-03-18 22:04:43.402 1000 FEE 434634 2735 \N \N 6029635 2025-03-18 22:06:24.693 2025-03-18 22:06:24.693 3000 FEE 434627 909 \N \N 6029636 2025-03-18 22:06:24.693 2025-03-18 22:06:24.693 27000 TIP 434627 15147 \N \N 6029646 2025-03-18 22:11:34.483 2025-03-18 22:11:34.483 100 FEE 434627 15326 \N \N 6029647 2025-03-18 22:11:34.483 2025-03-18 22:11:34.483 900 TIP 434627 673 \N \N 6029678 2025-03-18 22:20:53.973 2025-03-18 22:20:53.973 5000 FEE 434440 11999 \N \N 6029679 2025-03-18 22:20:53.973 2025-03-18 22:20:53.973 45000 TIP 434440 11158 \N \N 6029687 2025-03-18 22:22:55.368 2025-03-18 22:22:55.368 1000 FEE 434639 10280 \N \N 6029724 2025-03-18 22:31:54.269 2025-03-18 22:31:54.269 2100 FEE 433844 12272 \N \N 6029725 2025-03-18 22:31:54.269 2025-03-18 22:31:54.269 18900 TIP 433844 1480 \N \N 6029730 2025-03-18 22:31:56.758 2025-03-18 22:31:56.758 2100 FEE 434410 1733 \N \N 6029731 2025-03-18 22:31:56.758 2025-03-18 22:31:56.758 18900 TIP 434410 10693 \N \N 6029740 2025-03-18 22:32:05.567 2025-03-18 22:32:05.567 2100 FEE 434424 18525 \N \N 6029741 2025-03-18 22:32:05.567 2025-03-18 22:32:05.567 18900 TIP 434424 16124 \N \N 6029754 2025-03-18 22:37:53.895 2025-03-18 22:37:53.895 1000 FEE 434627 13216 \N \N 6029755 2025-03-18 22:37:53.895 2025-03-18 22:37:53.895 9000 TIP 434627 21400 \N \N 6029758 2025-03-18 22:37:55.21 2025-03-18 22:37:55.21 1000 FEE 434627 3304 \N \N 6029759 2025-03-18 22:37:55.21 2025-03-18 22:37:55.21 9000 TIP 434627 16684 \N \N 6029781 2025-03-18 22:41:10.015 2025-03-18 22:41:10.015 2100 FEE 434627 21832 \N \N 6029782 2025-03-18 22:41:10.015 2025-03-18 22:41:10.015 18900 TIP 434627 2328 \N \N 6029852 2025-03-18 23:01:04.386 2025-03-18 23:01:04.386 1000 FEE 434030 20906 \N \N 6029853 2025-03-18 23:01:04.386 2025-03-18 23:01:04.386 9000 TIP 434030 7119 \N \N 6029855 2025-03-18 23:01:23.016 2025-03-18 23:01:23.016 1000 FEE 434664 14489 \N \N 6029856 2025-03-18 23:01:31.431 2025-03-18 23:01:31.431 1000 FEE 434160 16965 \N \N 6029857 2025-03-18 23:01:31.431 2025-03-18 23:01:31.431 9000 TIP 434160 20816 \N \N 6029863 2025-03-18 23:03:01.637 2025-03-18 23:03:01.637 2100 FEE 434535 10007 \N \N 6029864 2025-03-18 23:03:01.637 2025-03-18 23:03:01.637 18900 TIP 434535 6578 \N \N 6029894 2025-03-18 23:13:19.394 2025-03-18 23:13:19.394 100 FEE 434309 20812 \N \N 6029895 2025-03-18 23:13:19.394 2025-03-18 23:13:19.394 900 TIP 434309 19943 \N \N 6029904 2025-03-18 23:20:43.473 2025-03-18 23:20:43.473 1000 FEE 434673 17522 \N \N 6029914 2025-03-18 23:24:53.13 2025-03-18 23:24:53.13 1000 FEE 434674 21521 \N \N 6029976 2025-03-18 23:48:04.628 2025-03-18 23:48:04.628 1000 FEE 434679 1761 \N \N 6029978 2025-03-18 23:48:34.443 2025-03-18 23:48:34.443 10000 FEE 434656 1549 \N \N 6029979 2025-03-18 23:48:34.443 2025-03-18 23:48:34.443 90000 TIP 434656 12277 \N \N 6029989 2025-03-18 23:51:12.794 2025-03-18 23:51:12.794 1000 FEE 434681 6160 \N \N 6030009 2025-03-18 23:52:08.387 2025-03-18 23:52:08.387 100 FEE 434646 11423 \N \N 6030010 2025-03-18 23:52:08.387 2025-03-18 23:52:08.387 900 TIP 434646 694 \N \N 6030034 2025-03-18 23:58:57.145 2025-03-18 23:58:57.145 500 FEE 434651 928 \N \N 6030035 2025-03-18 23:58:57.145 2025-03-18 23:58:57.145 4500 TIP 434651 21020 \N \N 6030062 2025-03-19 00:04:14.743 2025-03-19 00:04:14.743 5000 FEE 434488 21271 \N \N 6030063 2025-03-19 00:04:14.743 2025-03-19 00:04:14.743 45000 TIP 434488 18494 \N \N 6030077 2025-03-19 00:07:51.049 2025-03-19 00:07:51.049 1000 FEE 434690 16270 \N \N 6030081 2025-03-19 00:09:04.858 2025-03-19 00:09:04.858 0 FEE 434688 11378 \N \N 6035419 2025-03-19 09:40:49.534 2025-03-19 09:40:49.534 9000 TIP 435368 1007 \N \N 6035427 2025-03-19 09:42:32.226 2025-03-19 09:42:32.226 1100 FEE 435272 16956 \N \N 6035428 2025-03-19 09:42:32.226 2025-03-19 09:42:32.226 9900 TIP 435272 18772 \N \N 6035441 2025-03-19 09:43:43.702 2025-03-19 09:43:43.702 2000 FEE 435275 11527 \N \N 6035442 2025-03-19 09:43:43.702 2025-03-19 09:43:43.702 18000 TIP 435275 1620 \N \N 6035463 2025-03-19 09:44:50.093 2025-03-19 09:44:50.093 1100 FEE 434807 776 \N \N 6035464 2025-03-19 09:44:50.093 2025-03-19 09:44:50.093 9900 TIP 434807 1615 \N \N 6035471 2025-03-19 09:44:51.702 2025-03-19 09:44:51.702 1100 FEE 435026 624 \N \N 6035472 2025-03-19 09:44:51.702 2025-03-19 09:44:51.702 9900 TIP 435026 16250 \N \N 6035491 2025-03-19 09:45:21.487 2025-03-19 09:45:21.487 1000 FEE 435261 1769 \N \N 6035492 2025-03-19 09:45:21.487 2025-03-19 09:45:21.487 9000 TIP 435261 21233 \N \N 6035513 2025-03-19 09:45:39.433 2025-03-19 09:45:39.433 1000 FEE 435327 20858 \N \N 6035514 2025-03-19 09:45:39.433 2025-03-19 09:45:39.433 9000 TIP 435327 14910 \N \N 6035517 2025-03-19 09:45:40.325 2025-03-19 09:45:40.325 1000 FEE 435327 1326 \N \N 6035518 2025-03-19 09:45:40.325 2025-03-19 09:45:40.325 9000 TIP 435327 739 \N \N 6035519 2025-03-19 09:45:40.69 2025-03-19 09:45:40.69 1000 FEE 435327 17710 \N \N 6035520 2025-03-19 09:45:40.69 2025-03-19 09:45:40.69 9000 TIP 435327 859 \N \N 6035527 2025-03-19 09:45:46.119 2025-03-19 09:45:46.119 1000 FEE 435231 1092 \N \N 6035528 2025-03-19 09:45:46.119 2025-03-19 09:45:46.119 9000 TIP 435231 15624 \N \N 6035538 2025-03-19 09:48:32.133 2025-03-19 09:48:32.133 2100 FEE 435217 3400 \N \N 6035539 2025-03-19 09:48:32.133 2025-03-19 09:48:32.133 18900 TIP 435217 10554 \N \N 6035577 2025-03-19 09:52:29.897 2025-03-19 09:52:29.897 1000 FEE 434124 627 \N \N 6035578 2025-03-19 09:52:29.897 2025-03-19 09:52:29.897 9000 TIP 434124 20864 \N \N 6035596 2025-03-19 09:53:05.163 2025-03-19 09:53:05.163 1000 FEE 435383 20901 \N \N 6035623 2025-03-19 09:55:13.256 2025-03-19 09:55:13.256 2300 FEE 435377 14785 \N \N 6035624 2025-03-19 09:55:13.256 2025-03-19 09:55:13.256 20700 TIP 435377 10719 \N \N 6035625 2025-03-19 09:55:13.432 2025-03-19 09:55:13.432 2300 FEE 435377 20294 \N \N 6035626 2025-03-19 09:55:13.432 2025-03-19 09:55:13.432 20700 TIP 435377 794 \N \N 6035632 2025-03-19 09:55:14.053 2025-03-19 09:55:14.053 2300 FEE 435377 10493 \N \N 6035633 2025-03-19 09:55:14.053 2025-03-19 09:55:14.053 20700 TIP 435377 1478 \N \N 6035649 2025-03-19 09:55:58.594 2025-03-19 09:55:58.594 2300 FEE 435377 18306 \N \N 6035650 2025-03-19 09:55:58.594 2025-03-19 09:55:58.594 20700 TIP 435377 1426 \N \N 6035666 2025-03-19 09:58:20.529 2025-03-19 09:58:20.529 7000 FEE 435390 7899 \N \N 6035682 2025-03-19 09:59:25.574 2025-03-19 09:59:25.574 900 FEE 435340 1713 \N \N 6035683 2025-03-19 09:59:25.574 2025-03-19 09:59:25.574 8100 TIP 435340 16562 \N \N 6035686 2025-03-19 09:59:49.72 2025-03-19 09:59:49.72 1100 FEE 435217 16679 \N \N 6035687 2025-03-19 09:59:49.72 2025-03-19 09:59:49.72 9900 TIP 435217 8059 \N \N 6035691 2025-03-19 10:00:44.508 2025-03-19 10:00:44.508 2100 FEE 435379 21485 \N \N 6035692 2025-03-19 10:00:44.508 2025-03-19 10:00:44.508 18900 TIP 435379 8541 \N \N 6035695 2025-03-19 10:01:08.533 2025-03-19 10:01:08.533 100000 FEE 435327 9262 \N \N 6035696 2025-03-19 10:01:08.533 2025-03-19 10:01:08.533 900000 TIP 435327 8469 \N \N 6035698 2025-03-19 10:01:34.018 2025-03-19 10:01:34.018 2100 FEE 435394 3990 \N \N 6035699 2025-03-19 10:01:34.018 2025-03-19 10:01:34.018 18900 TIP 435394 15408 \N \N 6035716 2025-03-19 10:03:17.946 2025-03-19 10:03:17.946 2300 FEE 435399 9341 \N \N 6035717 2025-03-19 10:03:17.946 2025-03-19 10:03:17.946 20700 TIP 435399 4989 \N \N 6035724 2025-03-19 10:03:19.001 2025-03-19 10:03:19.001 2300 FEE 435399 18225 \N \N 6035446 2025-03-19 09:44:31.728 2025-03-19 09:44:31.728 2100 FEE 435220 4602 \N \N 6035447 2025-03-19 09:44:31.728 2025-03-19 09:44:31.728 18900 TIP 435220 14271 \N \N 6035450 2025-03-19 09:44:34.005 2025-03-19 09:44:34.005 10000 FEE 435374 20306 \N \N 6035501 2025-03-19 09:45:33.933 2025-03-19 09:45:33.933 1000 FEE 435343 9332 \N \N 6035502 2025-03-19 09:45:33.933 2025-03-19 09:45:33.933 9000 TIP 435343 9655 \N \N 6035503 2025-03-19 09:45:34.557 2025-03-19 09:45:34.557 1000 FEE 435343 15282 \N \N 6035504 2025-03-19 09:45:34.557 2025-03-19 09:45:34.557 9000 TIP 435343 19812 \N \N 6035532 2025-03-19 09:47:43.968 2025-03-19 09:47:43.968 83000 DONT_LIKE_THIS 435374 15521 \N \N 6035542 2025-03-19 09:48:55.584 2025-03-19 09:48:55.584 7700 FEE 435261 1505 \N \N 6035543 2025-03-19 09:48:55.584 2025-03-19 09:48:55.584 69300 TIP 435261 4763 \N \N 6035548 2025-03-19 09:50:24.729 2025-03-19 09:50:24.729 10100 FEE 435261 672 \N \N 6035549 2025-03-19 09:50:24.729 2025-03-19 09:50:24.729 90900 TIP 435261 20663 \N \N 6035553 2025-03-19 09:50:41.896 2025-03-19 09:50:41.896 1000 FEE 435380 21506 \N \N 6035572 2025-03-19 09:51:44.83 2025-03-19 09:51:44.83 0 FEE 435378 21444 \N \N 6035583 2025-03-19 09:52:35.44 2025-03-19 09:52:35.44 1000 FEE 434124 21287 \N \N 6035584 2025-03-19 09:52:35.44 2025-03-19 09:52:35.44 9000 TIP 434124 21523 \N \N 6035599 2025-03-19 09:53:39.2 2025-03-19 09:53:39.2 4000 FEE 435373 11789 \N \N 6035600 2025-03-19 09:53:39.2 2025-03-19 09:53:39.2 36000 TIP 435373 21600 \N \N 6035606 2025-03-19 09:54:05.623 2025-03-19 09:54:05.623 1000 FEE 435386 13566 \N \N 6035612 2025-03-19 09:54:59.523 2025-03-19 09:54:59.523 1000 FEE 435388 666 \N \N 6035617 2025-03-19 09:55:08.905 2025-03-19 09:55:08.905 2300 FEE 435377 5725 \N \N 6035618 2025-03-19 09:55:08.905 2025-03-19 09:55:08.905 20700 TIP 435377 15049 \N \N 6035630 2025-03-19 09:55:13.79 2025-03-19 09:55:13.79 2300 FEE 435377 13217 \N \N 6035631 2025-03-19 09:55:13.79 2025-03-19 09:55:13.79 20700 TIP 435377 9332 \N \N 6035653 2025-03-19 09:56:08.529 2025-03-19 09:56:08.529 2300 FEE 435257 16998 \N \N 6035654 2025-03-19 09:56:08.529 2025-03-19 09:56:08.529 20700 TIP 435257 20646 \N \N 6035656 2025-03-19 09:56:13.912 2025-03-19 09:56:13.912 2300 FEE 435275 16556 \N \N 6035657 2025-03-19 09:56:13.912 2025-03-19 09:56:13.912 20700 TIP 435275 10944 \N \N 6035661 2025-03-19 09:57:14.366 2025-03-19 09:57:14.366 2100 FEE 433296 19581 \N \N 6035662 2025-03-19 09:57:14.366 2025-03-19 09:57:14.366 18900 TIP 433296 644 \N \N 6035694 2025-03-19 10:00:54.587 2025-03-19 10:00:54.587 0 FEE 435394 21555 \N \N 6035709 2025-03-19 10:03:13.732 2025-03-19 10:03:13.732 10000 FEE 434717 2204 \N \N 6035710 2025-03-19 10:03:13.732 2025-03-19 10:03:13.732 90000 TIP 434717 6765 \N \N 6035726 2025-03-19 10:03:19.231 2025-03-19 10:03:19.231 2300 FEE 435399 5425 \N \N 6035727 2025-03-19 10:03:19.231 2025-03-19 10:03:19.231 20700 TIP 435399 4624 \N \N 6035732 2025-03-19 10:03:19.612 2025-03-19 10:03:19.612 2300 FEE 435399 18618 \N \N 6035733 2025-03-19 10:03:19.612 2025-03-19 10:03:19.612 20700 TIP 435399 13038 \N \N 6035736 2025-03-19 10:03:20.45 2025-03-19 10:03:20.45 2300 FEE 435399 4084 \N \N 6035737 2025-03-19 10:03:20.45 2025-03-19 10:03:20.45 20700 TIP 435399 7847 \N \N 6035746 2025-03-19 10:03:21.078 2025-03-19 10:03:21.078 2300 FEE 435399 4570 \N \N 6035747 2025-03-19 10:03:21.078 2025-03-19 10:03:21.078 20700 TIP 435399 708 \N \N 6035762 2025-03-19 10:03:34.953 2025-03-19 10:03:34.953 1000 FEE 435400 680 \N \N 6035785 2025-03-19 10:06:01.7 2025-03-19 10:06:01.7 1100 FEE 357875 9378 \N \N 6035786 2025-03-19 10:06:01.7 2025-03-19 10:06:01.7 9900 TIP 357875 21620 \N \N 6035787 2025-03-19 10:06:03.752 2025-03-19 10:06:03.752 8300 FEE 435384 16562 \N \N 6035788 2025-03-19 10:06:03.752 2025-03-19 10:06:03.752 74700 TIP 435384 5775 \N \N 6035794 2025-03-19 10:07:20.027 2025-03-19 10:07:20.027 10100 FEE 435242 2724 \N \N 6035795 2025-03-19 10:07:20.027 2025-03-19 10:07:20.027 90900 TIP 435242 18717 \N \N 6035811 2025-03-19 10:11:22.274 2025-03-19 10:11:22.274 1000 FEE 435357 11417 \N \N 6035812 2025-03-19 10:11:22.274 2025-03-19 10:11:22.274 9000 TIP 435357 20891 \N \N 6035838 2025-03-19 10:13:32.392 2025-03-19 10:13:32.392 200 FEE 435396 1576 \N \N 6035839 2025-03-19 10:13:32.392 2025-03-19 10:13:32.392 1800 TIP 435396 8926 \N \N 6035872 2025-03-19 10:18:48.901 2025-03-19 10:18:48.901 2100 FEE 435324 13177 \N \N 6035873 2025-03-19 10:18:48.901 2025-03-19 10:18:48.901 18900 TIP 435324 19005 \N \N 6035889 2025-03-19 10:19:21.855 2025-03-19 10:19:21.855 1000 FEE 435421 17984 \N \N 6035892 2025-03-19 10:19:23.559 2025-03-19 10:19:23.559 900 FEE 435376 5069 \N \N 6035893 2025-03-19 10:19:23.559 2025-03-19 10:19:23.559 8100 TIP 435376 1173 \N \N 6035900 2025-03-19 10:19:27.904 2025-03-19 10:19:27.904 1000 FEE 435422 19930 \N \N 6035903 2025-03-19 10:20:04.89 2025-03-19 10:20:04.89 27000 FEE 435136 21296 \N \N 6035904 2025-03-19 10:20:04.89 2025-03-19 10:20:04.89 243000 TIP 435136 6777 \N \N 6035908 2025-03-19 10:21:00.116 2025-03-19 10:21:00.116 10000 FEE 435328 19524 \N \N 6035909 2025-03-19 10:21:00.116 2025-03-19 10:21:00.116 90000 TIP 435328 959 \N \N 6035913 2025-03-19 10:22:06.765 2025-03-19 10:22:06.765 1000 FEE 435423 5377 \N \N 6035936 2025-03-19 10:25:43.87 2025-03-19 10:25:43.87 10000 FEE 435328 2670 \N \N 6035937 2025-03-19 10:25:43.87 2025-03-19 10:25:43.87 90000 TIP 435328 19796 \N \N 6035948 2025-03-19 10:27:34.833 2025-03-19 10:27:34.833 2100 FEE 434424 20603 \N \N 6035949 2025-03-19 10:27:34.833 2025-03-19 10:27:34.833 18900 TIP 434424 4388 \N \N 6035974 2025-03-19 10:29:46.322 2025-03-19 10:29:46.322 100 FEE 435242 20745 \N \N 6035975 2025-03-19 10:29:46.322 2025-03-19 10:29:46.322 900 TIP 435242 9169 \N \N 6035995 2025-03-19 10:32:15.906 2025-03-19 10:32:15.906 1000 FEE 435436 21701 \N \N 6036007 2025-03-19 10:33:20.77 2025-03-19 10:33:20.77 100 FEE 435380 5495 \N \N 6036008 2025-03-19 10:33:20.77 2025-03-19 10:33:20.77 900 TIP 435380 20657 \N \N 6036009 2025-03-19 10:34:09.72 2025-03-19 10:34:09.72 100 FEE 435338 16594 \N \N 6036010 2025-03-19 10:34:09.72 2025-03-19 10:34:09.72 900 TIP 435338 16571 \N \N 6036073 2025-03-19 10:41:25.77 2025-03-19 10:41:25.77 1000 FEE 435445 3506 \N \N 6036080 2025-03-19 10:42:16.792 2025-03-19 10:42:16.792 100 FEE 435328 20841 \N \N 6036081 2025-03-19 10:42:16.792 2025-03-19 10:42:16.792 900 TIP 435328 19005 \N \N 6036096 2025-03-19 10:42:19.655 2025-03-19 10:42:19.655 100 FEE 435189 17639 \N \N 6036097 2025-03-19 10:42:19.655 2025-03-19 10:42:19.655 900 TIP 435189 794 \N \N 6036098 2025-03-19 10:42:19.908 2025-03-19 10:42:19.908 100 FEE 435189 8472 \N \N 6036099 2025-03-19 10:42:19.908 2025-03-19 10:42:19.908 900 TIP 435189 1567 \N \N 6036115 2025-03-19 10:43:14.667 2025-03-19 10:43:14.667 3000 FEE 435445 13547 \N \N 6036116 2025-03-19 10:43:14.667 2025-03-19 10:43:14.667 27000 TIP 435445 4079 \N \N 6036124 2025-03-19 10:44:40.504 2025-03-19 10:44:40.504 100 FEE 435448 16876 \N \N 6036125 2025-03-19 10:44:40.504 2025-03-19 10:44:40.504 900 TIP 435448 11165 \N \N 6036128 2025-03-19 10:44:40.929 2025-03-19 10:44:40.929 100 FEE 435448 1577 \N \N 6036129 2025-03-19 10:44:40.929 2025-03-19 10:44:40.929 900 TIP 435448 705 \N \N 6036132 2025-03-19 10:44:41.244 2025-03-19 10:44:41.244 100 FEE 435448 11145 \N \N 6036133 2025-03-19 10:44:41.244 2025-03-19 10:44:41.244 900 TIP 435448 16456 \N \N 6036155 2025-03-19 10:47:47.654 2025-03-19 10:47:47.654 4000 FEE 435263 1003 \N \N 6036156 2025-03-19 10:47:47.654 2025-03-19 10:47:47.654 36000 TIP 435263 20616 \N \N 6035486 2025-03-19 09:45:02.117 2025-03-19 09:45:02.117 2100 FEE 433240 16942 \N \N 6035487 2025-03-19 09:45:02.117 2025-03-19 09:45:02.117 18900 TIP 433240 2309 \N \N 6035493 2025-03-19 09:45:22.427 2025-03-19 09:45:22.427 1000 FEE 435231 20687 \N \N 6035494 2025-03-19 09:45:22.427 2025-03-19 09:45:22.427 9000 TIP 435231 2224 \N \N 6035495 2025-03-19 09:45:31.951 2025-03-19 09:45:31.951 1000 FEE 435231 1273 \N \N 6035496 2025-03-19 09:45:31.951 2025-03-19 09:45:31.951 9000 TIP 435231 6382 \N \N 6035511 2025-03-19 09:45:38.96 2025-03-19 09:45:38.96 1000 FEE 435327 19812 \N \N 6035512 2025-03-19 09:45:38.96 2025-03-19 09:45:38.96 9000 TIP 435327 1472 \N \N 6035546 2025-03-19 09:49:57.294 2025-03-19 09:49:57.294 0 FEE 435378 14385 \N \N 6035560 2025-03-19 09:51:21.063 2025-03-19 09:51:21.063 1000 FEE 435231 12291 \N \N 6035561 2025-03-19 09:51:21.063 2025-03-19 09:51:21.063 9000 TIP 435231 1401 \N \N 6035573 2025-03-19 09:51:57.628 2025-03-19 09:51:57.628 0 FEE 435382 17109 \N \N 6035575 2025-03-19 09:52:20.712 2025-03-19 09:52:20.712 200 FEE 199147 2718 \N \N 6035576 2025-03-19 09:52:20.712 2025-03-19 09:52:20.712 1800 TIP 199147 13177 \N \N 6035609 2025-03-19 09:54:30.614 2025-03-19 09:54:30.614 1000 FEE 435387 822 \N \N 6035568 2025-03-19 09:51:21.711 2025-03-19 09:51:21.711 1000 FEE 435231 1626 \N \N 6035569 2025-03-19 09:51:21.711 2025-03-19 09:51:21.711 9000 TIP 435231 21451 \N \N 6035598 2025-03-19 09:53:37.672 2025-03-19 09:53:37.672 1000 FEE 435384 16633 \N \N 6035671 2025-03-19 09:58:46.924 2025-03-19 09:58:46.924 1000 FEE 435393 15045 \N \N 6035672 2025-03-19 09:59:00.941 2025-03-19 09:59:00.941 1000 FEE 435394 2342 \N \N 6035673 2025-03-19 09:59:04.533 2025-03-19 09:59:04.533 100 FEE 435364 909 \N \N 6035674 2025-03-19 09:59:04.533 2025-03-19 09:59:04.533 900 TIP 435364 9169 \N \N 6035678 2025-03-19 09:59:24.313 2025-03-19 09:59:24.313 1100 FEE 435327 11590 \N \N 6035679 2025-03-19 09:59:24.313 2025-03-19 09:59:24.313 9900 TIP 435327 21139 \N \N 6035688 2025-03-19 09:59:49.794 2025-03-19 09:59:49.794 2300 FEE 435392 8664 \N \N 6035689 2025-03-19 09:59:49.794 2025-03-19 09:59:49.794 20700 TIP 435392 10693 \N \N 6035722 2025-03-19 10:03:18.876 2025-03-19 10:03:18.876 2300 FEE 435399 2361 \N \N 6035723 2025-03-19 10:03:18.876 2025-03-19 10:03:18.876 20700 TIP 435399 13843 \N \N 6035728 2025-03-19 10:03:19.386 2025-03-19 10:03:19.386 2300 FEE 435399 21067 \N \N 6035729 2025-03-19 10:03:19.386 2025-03-19 10:03:19.386 20700 TIP 435399 16059 \N \N 6035730 2025-03-19 10:03:19.506 2025-03-19 10:03:19.506 2300 FEE 435399 18637 \N \N 6035731 2025-03-19 10:03:19.506 2025-03-19 10:03:19.506 20700 TIP 435399 17944 \N \N 6035742 2025-03-19 10:03:20.809 2025-03-19 10:03:20.809 2300 FEE 435399 1564 \N \N 6035743 2025-03-19 10:03:20.809 2025-03-19 10:03:20.809 20700 TIP 435399 19842 \N \N 6035750 2025-03-19 10:03:21.366 2025-03-19 10:03:21.366 2300 FEE 435399 14271 \N \N 6029017 2025-03-18 20:14:08.394 2025-03-18 20:14:08.394 7100 FEE 434488 15326 \N \N 6029018 2025-03-18 20:14:08.394 2025-03-18 20:14:08.394 63900 TIP 434488 11038 \N \N 6029024 2025-03-18 20:14:26.115 2025-03-18 20:14:26.115 1100 FEE 434471 2329 \N \N 6029025 2025-03-18 20:14:26.115 2025-03-18 20:14:26.115 9900 TIP 434471 15728 \N \N 6029029 2025-03-18 20:15:39.267 2025-03-18 20:15:39.267 1000 FEE 434563 11158 \N \N 6029069 2025-03-18 20:21:31.218 2025-03-18 20:21:31.218 1100 FEE 60799 20222 \N \N 6029070 2025-03-18 20:21:31.218 2025-03-18 20:21:31.218 9900 TIP 60799 891 \N \N 6029080 2025-03-18 20:26:31.719 2025-03-18 20:26:31.719 1000 FEE 434571 2056 \N \N 6029100 2025-03-18 20:30:34.62 2025-03-18 20:30:34.62 2100 FEE 434536 11648 \N \N 6029101 2025-03-18 20:30:34.62 2025-03-18 20:30:34.62 18900 TIP 434536 16282 \N \N 6029109 2025-03-18 20:32:18.594 2025-03-18 20:32:18.594 2100 FEE 434299 11716 \N \N 6029110 2025-03-18 20:32:18.594 2025-03-18 20:32:18.594 18900 TIP 434299 1044 \N \N 6029114 2025-03-18 20:34:31.086 2025-03-18 20:34:31.086 2100 FEE 434573 21532 \N \N 6029115 2025-03-18 20:34:31.086 2025-03-18 20:34:31.086 18900 TIP 434573 17201 \N \N 6029142 2025-03-18 20:42:31.494 2025-03-18 20:42:31.494 100 FEE 428997 17682 \N \N 6029143 2025-03-18 20:42:31.494 2025-03-18 20:42:31.494 900 TIP 428997 899 \N \N 6029149 2025-03-18 20:44:59.023 2025-03-18 20:44:59.023 2100 FEE 434488 18608 \N \N 6029150 2025-03-18 20:44:59.023 2025-03-18 20:44:59.023 18900 TIP 434488 756 \N \N 6029179 2025-03-18 20:51:35.327 2025-03-18 20:51:35.327 7700 FEE 427186 1773 \N \N 6029180 2025-03-18 20:51:35.327 2025-03-18 20:51:35.327 69300 TIP 427186 12097 \N \N 6029205 2025-03-18 20:58:16.036 2025-03-18 20:58:16.036 0 FEE 434587 8505 \N \N 6029215 2025-03-18 21:01:25.445 2025-03-18 21:01:25.445 3300 FEE 434535 19813 \N \N 6029216 2025-03-18 21:01:25.445 2025-03-18 21:01:25.445 29700 TIP 434535 20495 \N \N 6029237 2025-03-18 21:03:10.904 2025-03-18 21:03:10.904 3300 FEE 434465 21048 \N \N 6029238 2025-03-18 21:03:10.904 2025-03-18 21:03:10.904 29700 TIP 434465 9421 \N \N 6029259 2025-03-18 21:05:33.262 2025-03-18 21:05:33.262 1000 FEE 434590 20911 \N \N 6029286 2025-03-18 21:10:24.615 2025-03-18 21:10:24.615 1000 FEE 434597 2724 \N \N 6029353 2025-03-18 21:26:10.239 2025-03-18 21:26:10.239 1000 FEE 434440 794 \N \N 6029354 2025-03-18 21:26:10.239 2025-03-18 21:26:10.239 9000 TIP 434440 17696 \N \N 6029405 2025-03-18 21:27:43.887 2025-03-18 21:27:43.887 1000 FEE 434583 7185 \N \N 6029406 2025-03-18 21:27:43.887 2025-03-18 21:27:43.887 9000 TIP 434583 19924 \N \N 6029429 2025-03-18 21:27:50.258 2025-03-18 21:27:50.258 1000 FEE 434465 8535 \N \N 6029430 2025-03-18 21:27:50.258 2025-03-18 21:27:50.258 9000 TIP 434465 21430 \N \N 6029457 2025-03-18 21:28:00.417 2025-03-18 21:28:00.417 1000 FEE 434352 17798 \N \N 6029458 2025-03-18 21:28:00.417 2025-03-18 21:28:00.417 9000 TIP 434352 13348 \N \N 6029465 2025-03-18 21:28:04.915 2025-03-18 21:28:04.915 1000 FEE 434328 10698 \N \N 6029466 2025-03-18 21:28:04.915 2025-03-18 21:28:04.915 9000 TIP 434328 2832 \N \N 6029491 2025-03-18 21:28:11.495 2025-03-18 21:28:11.495 1000 FEE 434277 10490 \N \N 6029492 2025-03-18 21:28:11.495 2025-03-18 21:28:11.495 9000 TIP 434277 992 \N \N 6029493 2025-03-18 21:28:11.741 2025-03-18 21:28:11.741 1000 FEE 434271 1298 \N \N 6029494 2025-03-18 21:28:11.741 2025-03-18 21:28:11.741 9000 TIP 434271 21119 \N \N 6029031 2025-03-18 20:16:02.458 2025-03-18 20:16:02.458 2100 FEE 434541 6616 \N \N 6029032 2025-03-18 20:16:02.458 2025-03-18 20:16:02.458 18900 TIP 434541 21303 \N \N 6029042 2025-03-18 20:17:38.015 2025-03-18 20:17:38.015 1100 FEE 434385 20205 \N \N 6029043 2025-03-18 20:17:38.015 2025-03-18 20:17:38.015 9900 TIP 434385 13169 \N \N 6029044 2025-03-18 20:17:49.022 2025-03-18 20:17:49.022 1100 FEE 434485 13378 \N \N 6029045 2025-03-18 20:17:49.022 2025-03-18 20:17:49.022 9900 TIP 434485 5759 \N \N 6029047 2025-03-18 20:18:27.703 2025-03-18 20:18:27.703 1000 FEE 434566 16842 \N \N 6029057 2025-03-18 20:19:27.884 2025-03-18 20:19:27.884 100 FEE 434347 10060 \N \N 6029058 2025-03-18 20:19:27.884 2025-03-18 20:19:27.884 900 TIP 434347 4624 \N \N 6029077 2025-03-18 20:25:24.729 2025-03-18 20:25:24.729 2100 FEE 434410 721 \N \N 6029078 2025-03-18 20:25:24.729 2025-03-18 20:25:24.729 18900 TIP 434410 17522 \N \N 6029085 2025-03-18 20:26:41.294 2025-03-18 20:26:41.294 2100 FEE 434437 4083 \N \N 6029086 2025-03-18 20:26:41.294 2025-03-18 20:26:41.294 18900 TIP 434437 5942 \N \N 6029106 2025-03-18 20:31:33.071 2025-03-18 20:31:33.071 2100 FEE 434396 14939 \N \N 6029107 2025-03-18 20:31:33.071 2025-03-18 20:31:33.071 18900 TIP 434396 18265 \N \N 6029128 2025-03-18 20:40:09.163 2025-03-18 20:40:09.163 0 FEE 434575 3411 \N \N 6029133 2025-03-18 20:40:52.993 2025-03-18 20:40:52.993 2100 FEE 434498 2431 \N \N 6029134 2025-03-18 20:40:52.993 2025-03-18 20:40:52.993 18900 TIP 434498 1490 \N \N 6029147 2025-03-18 20:44:17.455 2025-03-18 20:44:17.455 100 FEE 433943 5870 \N \N 6029148 2025-03-18 20:44:17.455 2025-03-18 20:44:17.455 900 TIP 433943 16638 \N \N 6029160 2025-03-18 20:46:42.738 2025-03-18 20:46:42.738 2100 FEE 434560 777 \N \N 6029161 2025-03-18 20:46:42.738 2025-03-18 20:46:42.738 18900 TIP 434560 21037 \N \N 6029164 2025-03-18 20:46:53.613 2025-03-18 20:46:53.613 1000 FEE 434577 17741 \N \N 6029165 2025-03-18 20:46:53.613 2025-03-18 20:46:53.613 9000 TIP 434577 15484 \N \N 6029175 2025-03-18 20:50:12.336 2025-03-18 20:50:12.336 1000 FEE 434584 1658 \N \N 6029196 2025-03-18 20:56:54.327 2025-03-18 20:56:54.327 10000 FEE 434271 1354 \N \N 6029197 2025-03-18 20:56:54.327 2025-03-18 20:56:54.327 90000 TIP 434271 10818 \N \N 6029202 2025-03-18 20:58:04.468 2025-03-18 20:58:04.468 10000 FEE 434082 20713 \N \N 6029203 2025-03-18 20:58:04.468 2025-03-18 20:58:04.468 90000 TIP 434082 18500 \N \N 6029249 2025-03-18 21:04:15.68 2025-03-18 21:04:15.68 3300 FEE 434565 1723 \N \N 6029250 2025-03-18 21:04:15.68 2025-03-18 21:04:15.68 29700 TIP 434565 18393 \N \N 6029264 2025-03-18 21:05:54.369 2025-03-18 21:05:54.369 21000 DONT_LIKE_THIS 434529 8684 \N \N 6029267 2025-03-18 21:05:56.518 2025-03-18 21:05:56.518 1000 FEE 434565 14607 \N \N 6029268 2025-03-18 21:05:56.518 2025-03-18 21:05:56.518 9000 TIP 434565 18314 \N \N 6029281 2025-03-18 21:09:18.323 2025-03-18 21:09:18.323 100000 FEE 434595 9982 \N \N 6029302 2025-03-18 21:14:37.461 2025-03-18 21:14:37.461 1000 FEE 434601 20201 \N \N 6029303 2025-03-18 21:14:44.237 2025-03-18 21:14:44.237 1000 FEE 434602 17824 \N \N 6029312 2025-03-18 21:18:31.519 2025-03-18 21:18:31.519 1000 FEE 434440 20198 \N \N 6029313 2025-03-18 21:18:31.519 2025-03-18 21:18:31.519 9000 TIP 434440 16406 \N \N 6029357 2025-03-18 21:26:11.336 2025-03-18 21:26:11.336 1000 FEE 434440 16970 \N \N 6029358 2025-03-18 21:26:11.336 2025-03-18 21:26:11.336 9000 TIP 434440 1697 \N \N 6029364 2025-03-18 21:26:26.063 2025-03-18 21:26:26.063 1000 FEE 433844 2156 \N \N 6029365 2025-03-18 21:26:26.063 2025-03-18 21:26:26.063 9000 TIP 433844 16638 \N \N 6029407 2025-03-18 21:27:44.205 2025-03-18 21:27:44.205 1000 FEE 434577 21212 \N \N 6029408 2025-03-18 21:27:44.205 2025-03-18 21:27:44.205 9000 TIP 434577 705 \N \N 6029459 2025-03-18 21:28:01.414 2025-03-18 21:28:01.414 1000 FEE 434350 18673 \N \N 6029460 2025-03-18 21:28:01.414 2025-03-18 21:28:01.414 9000 TIP 434350 844 \N \N 6029467 2025-03-18 21:28:05.349 2025-03-18 21:28:05.349 1000 FEE 434321 15239 \N \N 6029468 2025-03-18 21:28:05.349 2025-03-18 21:28:05.349 9000 TIP 434321 17991 \N \N 6029473 2025-03-18 21:28:06.314 2025-03-18 21:28:06.314 1000 FEE 434301 1650 \N \N 6035595 2025-03-19 09:52:38.745 2025-03-19 09:52:38.745 9000 TIP 435381 5794 \N \N 6035604 2025-03-19 09:53:53.249 2025-03-19 09:53:53.249 100000 FEE 434124 20647 \N \N 6035605 2025-03-19 09:53:53.249 2025-03-19 09:53:53.249 900000 TIP 434124 6382 \N \N 6035638 2025-03-19 09:55:14.747 2025-03-19 09:55:14.747 2300 FEE 435377 2039 \N \N 6035639 2025-03-19 09:55:14.747 2025-03-19 09:55:14.747 20700 TIP 435377 10393 \N \N 6035642 2025-03-19 09:55:16.004 2025-03-19 09:55:16.004 1000 FEE 435386 20691 \N \N 6035643 2025-03-19 09:55:16.004 2025-03-19 09:55:16.004 9000 TIP 435386 19138 \N \N 6035644 2025-03-19 09:55:36.968 2025-03-19 09:55:36.968 3300 FEE 435380 1474 \N \N 6035645 2025-03-19 09:55:36.968 2025-03-19 09:55:36.968 29700 TIP 435380 17331 \N \N 6035646 2025-03-19 09:55:38.318 2025-03-19 09:55:38.318 100000 FEE 435389 16965 \N \N 6035667 2025-03-19 09:58:21.002 2025-03-19 09:58:21.002 1000 FEE 435391 19966 \N \N 6035669 2025-03-19 09:58:44.497 2025-03-19 09:58:44.497 100 FEE 435355 1145 \N \N 6035670 2025-03-19 09:58:44.497 2025-03-19 09:58:44.497 900 TIP 435355 4345 \N \N 6035706 2025-03-19 10:02:43.29 2025-03-19 10:02:43.29 1000 FEE 435398 9290 \N \N 6035712 2025-03-19 10:03:15.185 2025-03-19 10:03:15.185 2100 FEE 435224 9339 \N \N 6035713 2025-03-19 10:03:15.185 2025-03-19 10:03:15.185 18900 TIP 435224 19375 \N \N 6035740 2025-03-19 10:03:20.696 2025-03-19 10:03:20.696 2300 FEE 435399 3213 \N \N 6035741 2025-03-19 10:03:20.696 2025-03-19 10:03:20.696 20700 TIP 435399 20180 \N \N 6035744 2025-03-19 10:03:20.947 2025-03-19 10:03:20.947 2300 FEE 435399 20683 \N \N 6035745 2025-03-19 10:03:20.947 2025-03-19 10:03:20.947 20700 TIP 435399 21356 \N \N 6035767 2025-03-19 10:03:36.892 2025-03-19 10:03:36.892 4600 FEE 435399 6260 \N \N 6035768 2025-03-19 10:03:36.892 2025-03-19 10:03:36.892 41400 TIP 435399 4314 \N \N 6035771 2025-03-19 10:03:37.871 2025-03-19 10:03:37.871 4600 FEE 435399 21159 \N \N 6035772 2025-03-19 10:03:37.871 2025-03-19 10:03:37.871 41400 TIP 435399 1631 \N \N 6035813 2025-03-19 10:11:27.417 2025-03-19 10:11:27.417 1000 FEE 435328 17533 \N \N 6035814 2025-03-19 10:11:27.417 2025-03-19 10:11:27.417 9000 TIP 435328 6058 \N \N 6035817 2025-03-19 10:11:29.504 2025-03-19 10:11:29.504 1000 FEE 435242 13763 \N \N 6035818 2025-03-19 10:11:29.504 2025-03-19 10:11:29.504 9000 TIP 435242 9916 \N \N 6035829 2025-03-19 10:12:30.176 2025-03-19 10:12:30.176 10000 FEE 435412 17710 \N \N 6035831 2025-03-19 10:13:10.68 2025-03-19 10:13:10.68 1000 FEE 435415 2519 \N \N 6035847 2025-03-19 10:15:32.33 2025-03-19 10:15:32.33 83000 DONT_LIKE_THIS 435414 10342 \N \N 6035848 2025-03-19 10:15:32.831 2025-03-19 10:15:32.831 5000 FEE 434424 4083 \N \N 6035849 2025-03-19 10:15:32.831 2025-03-19 10:15:32.831 45000 TIP 434424 12965 \N \N 6035850 2025-03-19 10:15:53.976 2025-03-19 10:15:53.976 1600 FEE 435327 9366 \N \N 6035851 2025-03-19 10:15:53.976 2025-03-19 10:15:53.976 14400 TIP 435327 696 \N \N 6035888 2025-03-19 10:19:20.272 2025-03-19 10:19:20.272 0 FEE 435417 690 \N \N 6035898 2025-03-19 10:19:25.881 2025-03-19 10:19:25.881 900 FEE 435375 18409 \N \N 6035899 2025-03-19 10:19:25.881 2025-03-19 10:19:25.881 8100 TIP 435375 756 \N \N 6035901 2025-03-19 10:20:04.42 2025-03-19 10:20:04.42 3000 FEE 435136 18557 \N \N 6035902 2025-03-19 10:20:04.42 2025-03-19 10:20:04.42 27000 TIP 435136 1465 \N \N 6035919 2025-03-19 10:23:13.251 2025-03-19 10:23:13.251 21000 DONT_LIKE_THIS 435098 3417 \N \N 6035928 2025-03-19 10:24:57.107 2025-03-19 10:24:57.107 1000 FEE 435425 19524 \N \N 6035931 2025-03-19 10:25:03.796 2025-03-19 10:25:03.796 100000 FEE 435426 10270 \N \N 6035939 2025-03-19 10:26:43.683 2025-03-19 10:26:43.683 8300 FEE 435425 17046 \N \N 6035940 2025-03-19 10:26:43.683 2025-03-19 10:26:43.683 74700 TIP 435425 16788 \N \N 6035962 2025-03-19 10:28:32.742 2025-03-19 10:28:32.742 2100 FEE 435327 828 \N \N 6035963 2025-03-19 10:28:32.742 2025-03-19 10:28:32.742 18900 TIP 435327 12562 \N \N 6035964 2025-03-19 10:28:38.121 2025-03-19 10:28:38.121 10000 FEE 435433 10493 \N \N 6035969 2025-03-19 10:28:55.316 2025-03-19 10:28:55.316 2100 FEE 435402 1802 \N \N 6035970 2025-03-19 10:28:55.316 2025-03-19 10:28:55.316 18900 TIP 435402 17201 \N \N 6035985 2025-03-19 10:30:36.935 2025-03-19 10:30:36.935 1100 FEE 435340 7899 \N \N 6035986 2025-03-19 10:30:36.935 2025-03-19 10:30:36.935 9900 TIP 435340 672 \N \N 6036016 2025-03-19 10:36:49.74 2025-03-19 10:36:49.74 100 FEE 435180 712 \N \N 6036017 2025-03-19 10:36:49.74 2025-03-19 10:36:49.74 900 TIP 435180 20102 \N \N 6036032 2025-03-19 10:36:54.883 2025-03-19 10:36:54.883 100 FEE 435180 16513 \N \N 6036033 2025-03-19 10:36:54.883 2025-03-19 10:36:54.883 900 TIP 435180 10493 \N \N 6036050 2025-03-19 10:37:36.583 2025-03-19 10:37:36.583 1000 FEE 435444 1603 \N \N 6036051 2025-03-19 10:37:40.254 2025-03-19 10:37:40.254 1000 FEE 435345 1515 \N \N 6036052 2025-03-19 10:37:40.254 2025-03-19 10:37:40.254 9000 TIP 435345 20434 \N \N 6036088 2025-03-19 10:42:18.639 2025-03-19 10:42:18.639 100 FEE 435189 10979 \N \N 6036089 2025-03-19 10:42:18.639 2025-03-19 10:42:18.639 900 TIP 435189 5522 \N \N 6036136 2025-03-19 10:45:49.415 2025-03-19 10:45:49.415 1000 FEE 435450 641 \N \N 6036142 2025-03-19 10:46:45.935 2025-03-19 10:46:45.935 100 FEE 435070 1611 \N \N 6036143 2025-03-19 10:46:45.935 2025-03-19 10:46:45.935 900 TIP 435070 2514 \N \N 6036145 2025-03-19 10:47:27.218 2025-03-19 10:47:27.218 4000 FEE 435328 12277 \N \N 6036146 2025-03-19 10:47:27.218 2025-03-19 10:47:27.218 36000 TIP 435328 989 \N \N 6036151 2025-03-19 10:47:28.767 2025-03-19 10:47:28.767 4000 FEE 435217 21522 \N \N 6036152 2025-03-19 10:47:28.767 2025-03-19 10:47:28.767 36000 TIP 435217 20775 \N \N 6036183 2025-03-19 10:52:11.534 2025-03-19 10:52:11.534 2300 FEE 435453 7766 \N \N 6036184 2025-03-19 10:52:11.534 2025-03-19 10:52:11.534 20700 TIP 435453 1611 \N \N 6036196 2025-03-19 10:53:00.037 2025-03-19 10:53:00.037 1000 FEE 435460 20826 \N \N 6036198 2025-03-19 10:53:18.276 2025-03-19 10:53:18.276 1000 FEE 435461 14939 \N \N 6029084 2025-03-18 20:26:40.728 2025-03-18 20:26:40.728 18900 TIP 434513 18178 \N \N 6029104 2025-03-18 20:30:56.962 2025-03-18 20:30:56.962 1000 FEE 434573 10493 \N \N 6029125 2025-03-18 20:39:18.96 2025-03-18 20:39:18.96 1000 FEE 434575 8416 \N \N 6029221 2025-03-18 21:01:43.562 2025-03-18 21:01:43.562 3300 FEE 434481 9906 \N \N 6029222 2025-03-18 21:01:43.562 2025-03-18 21:01:43.562 29700 TIP 434481 16424 \N \N 6029223 2025-03-18 21:01:43.799 2025-03-18 21:01:43.799 3300 FEE 434481 7960 \N \N 6029224 2025-03-18 21:01:43.799 2025-03-18 21:01:43.799 29700 TIP 434481 13921 \N \N 6029231 2025-03-18 21:01:49.809 2025-03-18 21:01:49.809 1300 FEE 434481 5661 \N \N 6029232 2025-03-18 21:01:49.809 2025-03-18 21:01:49.809 11700 TIP 434481 21271 \N \N 6029246 2025-03-18 21:03:26.215 2025-03-18 21:03:26.215 200 FEE 434465 18017 \N \N 6029247 2025-03-18 21:03:26.215 2025-03-18 21:03:26.215 1800 TIP 434465 21249 \N \N 6029257 2025-03-18 21:05:21.024 2025-03-18 21:05:21.024 2100 FEE 434539 2342 \N \N 6029258 2025-03-18 21:05:21.024 2025-03-18 21:05:21.024 18900 TIP 434539 20904 \N \N 6029265 2025-03-18 21:05:55.169 2025-03-18 21:05:55.169 1000 FEE 434590 19796 \N \N 6029266 2025-03-18 21:05:55.169 2025-03-18 21:05:55.169 9000 TIP 434590 20642 \N \N 6029270 2025-03-18 21:06:25.824 2025-03-18 21:06:25.824 1000 FEE 434551 17116 \N \N 6029271 2025-03-18 21:06:25.824 2025-03-18 21:06:25.824 9000 TIP 434551 20776 \N \N 6029295 2025-03-18 21:12:31.506 2025-03-18 21:12:31.506 1000 FEE 434600 3400 \N \N 6029310 2025-03-18 21:17:52.617 2025-03-18 21:17:52.617 1000 FEE 434604 20837 \N \N 6029316 2025-03-18 21:19:28.508 2025-03-18 21:19:28.508 1000 FEE 434482 20897 \N \N 6029317 2025-03-18 21:19:28.508 2025-03-18 21:19:28.508 9000 TIP 434482 15732 \N \N 6029362 2025-03-18 21:26:20.964 2025-03-18 21:26:20.964 1000 FEE 434500 1307 \N \N 6029363 2025-03-18 21:26:20.964 2025-03-18 21:26:20.964 9000 TIP 434500 667 \N \N 6029379 2025-03-18 21:27:30.68 2025-03-18 21:27:30.68 1000 FEE 434410 1737 \N \N 6029380 2025-03-18 21:27:30.68 2025-03-18 21:27:30.68 9000 TIP 434410 999 \N \N 6029395 2025-03-18 21:27:39.19 2025-03-18 21:27:39.19 1000 FEE 433688 20099 \N \N 6029396 2025-03-18 21:27:39.19 2025-03-18 21:27:39.19 9000 TIP 433688 7667 \N \N 6029401 2025-03-18 21:27:42.907 2025-03-18 21:27:42.907 1000 FEE 434595 732 \N \N 6029402 2025-03-18 21:27:42.907 2025-03-18 21:27:42.907 9000 TIP 434595 17817 \N \N 6029427 2025-03-18 21:27:49.254 2025-03-18 21:27:49.254 1000 FEE 434481 10934 \N \N 6029428 2025-03-18 21:27:49.254 2025-03-18 21:27:49.254 9000 TIP 434481 1092 \N \N 6029437 2025-03-18 21:27:54.23 2025-03-18 21:27:54.23 1000 FEE 434445 11670 \N \N 6029438 2025-03-18 21:27:54.23 2025-03-18 21:27:54.23 9000 TIP 434445 21131 \N \N 6029443 2025-03-18 21:27:56.306 2025-03-18 21:27:56.306 1000 FEE 434424 5779 \N \N 6029444 2025-03-18 21:27:56.306 2025-03-18 21:27:56.306 9000 TIP 434424 12507 \N \N 6029451 2025-03-18 21:27:58.597 2025-03-18 21:27:58.597 1000 FEE 434378 997 \N \N 6029452 2025-03-18 21:27:58.597 2025-03-18 21:27:58.597 9000 TIP 434378 1814 \N \N 6029463 2025-03-18 21:28:02.198 2025-03-18 21:28:02.198 1000 FEE 434332 822 \N \N 6029464 2025-03-18 21:28:02.198 2025-03-18 21:28:02.198 9000 TIP 434332 5809 \N \N 6029477 2025-03-18 21:28:07.582 2025-03-18 21:28:07.582 1000 FEE 434297 11992 \N \N 6029478 2025-03-18 21:28:07.582 2025-03-18 21:28:07.582 9000 TIP 434297 21131 \N \N 6029487 2025-03-18 21:28:10.56 2025-03-18 21:28:10.56 1000 FEE 434283 21139 \N \N 6029488 2025-03-18 21:28:10.56 2025-03-18 21:28:10.56 9000 TIP 434283 4395 \N \N 6029538 2025-03-18 21:43:23.258 2025-03-18 21:43:23.258 1000 FEE 434617 12102 \N \N 6029564 2025-03-18 21:51:46.493 2025-03-18 21:51:46.493 1000 FEE 434622 716 \N \N 6029571 2025-03-18 21:54:11.113 2025-03-18 21:54:11.113 10000 FEE 434619 2961 \N \N 6029572 2025-03-18 21:54:11.113 2025-03-18 21:54:11.113 90000 TIP 434619 20858 \N \N 6029592 2025-03-18 21:58:37.446 2025-03-18 21:58:37.446 1000 FEE 434556 20102 \N \N 6029593 2025-03-18 21:58:37.446 2025-03-18 21:58:37.446 9000 TIP 434556 1717 \N \N 6029600 2025-03-18 21:58:57.596 2025-03-18 21:58:57.596 1000 FEE 434625 5759 \N \N 6029601 2025-03-18 21:58:57.596 2025-03-18 21:58:57.596 9000 TIP 434625 20864 \N \N 6029630 2025-03-18 22:04:26.211 2025-03-18 22:04:26.211 10000 FEE 433740 8176 \N \N 6029631 2025-03-18 22:04:26.211 2025-03-18 22:04:26.211 90000 TIP 433740 16536 \N \N 6029652 2025-03-18 22:12:39.885 2025-03-18 22:12:39.885 2100 FEE 434606 4292 \N \N 6029653 2025-03-18 22:12:39.885 2025-03-18 22:12:39.885 18900 TIP 434606 20993 \N \N 6029670 2025-03-18 22:18:57.778 2025-03-18 22:18:57.778 1000 FEE 433943 5112 \N \N 6029671 2025-03-18 22:18:57.778 2025-03-18 22:18:57.778 9000 TIP 433943 20225 \N \N 6029692 2025-03-18 22:26:39.861 2025-03-18 22:26:39.861 1000 FEE 434640 12609 \N \N 6029696 2025-03-18 22:28:30.09 2025-03-18 22:28:30.09 100000 FEE 434641 913 \N \N 6029712 2025-03-18 22:31:50.383 2025-03-18 22:31:50.383 2100 FEE 434440 20152 \N \N 6029713 2025-03-18 22:31:50.383 2025-03-18 22:31:50.383 18900 TIP 434440 4043 \N \N 6029728 2025-03-18 22:31:56.09 2025-03-18 22:31:56.09 2100 FEE 434485 16717 \N \N 6029729 2025-03-18 22:31:56.09 2025-03-18 22:31:56.09 18900 TIP 434485 18529 \N \N 6029744 2025-03-18 22:33:26.376 2025-03-18 22:33:26.376 21000 FEE 434642 2156 \N \N 6029775 2025-03-18 22:40:59.066 2025-03-18 22:40:59.066 1000 FEE 434627 1122 \N \N 6029776 2025-03-18 22:40:59.066 2025-03-18 22:40:59.066 9000 TIP 434627 18772 \N \N 6029803 2025-03-18 22:46:01.806 2025-03-18 22:46:01.806 0 FEE 434650 11491 \N \N 6029828 2025-03-18 22:56:03.851 2025-03-18 22:56:03.851 1000 FEE 434661 17991 \N \N 6029848 2025-03-18 23:01:02.196 2025-03-18 23:01:02.196 1000 FEE 434399 18956 \N \N 6029849 2025-03-18 23:01:02.196 2025-03-18 23:01:02.196 9000 TIP 434399 20190 \N \N 6029891 2025-03-18 23:13:09.043 2025-03-18 23:13:09.043 2100 FEE 434099 16816 \N \N 6029892 2025-03-18 23:13:09.043 2025-03-18 23:13:09.043 18900 TIP 434099 21022 \N \N 6029928 2025-03-18 23:27:29.171 2025-03-18 23:27:29.171 2100 FEE 434674 1114 \N \N 6029929 2025-03-18 23:27:29.171 2025-03-18 23:27:29.171 18900 TIP 434674 19826 \N \N 6029940 2025-03-18 23:34:02.697 2025-03-18 23:34:02.697 2500 FEE 434582 2583 \N \N 6029941 2025-03-18 23:34:02.697 2025-03-18 23:34:02.697 22500 TIP 434582 16250 \N \N 6038275 2025-03-19 14:55:41.837 2025-03-19 14:55:41.837 18900 TIP 435505 954 \N \N 6038287 2025-03-19 14:56:18.462 2025-03-19 14:56:18.462 1000 FEE 435670 16684 \N \N 6038295 2025-03-19 14:57:26.711 2025-03-19 14:57:26.711 1000 FEE 435638 20754 \N \N 6038296 2025-03-19 14:57:26.711 2025-03-19 14:57:26.711 9000 TIP 435638 3371 \N \N 6038300 2025-03-19 14:58:42.061 2025-03-19 14:58:42.061 0 FEE 435670 8472 \N \N 6038305 2025-03-19 14:59:22.897 2025-03-19 14:59:22.897 1000 FEE 435674 18269 \N \N 6038316 2025-03-19 15:03:04.567 2025-03-19 15:03:04.567 3400 FEE 435542 2681 \N \N 6038317 2025-03-19 15:03:04.567 2025-03-19 15:03:04.567 30600 TIP 435542 11523 \N \N 6038331 2025-03-19 15:04:12.911 2025-03-19 15:04:12.911 300 FEE 435457 15978 \N \N 6038332 2025-03-19 15:04:12.911 2025-03-19 15:04:12.911 2700 TIP 435457 4128 \N \N 6038338 2025-03-19 15:04:13.661 2025-03-19 15:04:13.661 300 FEE 435457 16177 \N \N 6029162 2025-03-18 20:46:48.727 2025-03-18 20:46:48.727 2100 FEE 434492 21239 \N \N 6029163 2025-03-18 20:46:48.727 2025-03-18 20:46:48.727 18900 TIP 434492 9426 \N \N 6029167 2025-03-18 20:47:52.005 2025-03-18 20:47:52.005 1000 FEE 434310 13587 \N \N 6029168 2025-03-18 20:47:52.005 2025-03-18 20:47:52.005 9000 TIP 434310 641 \N \N 6029173 2025-03-18 20:48:50.694 2025-03-18 20:48:50.694 50000 FEE 434583 16270 \N \N 6029181 2025-03-18 20:51:36.545 2025-03-18 20:51:36.545 7700 FEE 427186 20436 \N \N 6029182 2025-03-18 20:51:36.545 2025-03-18 20:51:36.545 69300 TIP 427186 1124 \N \N 6029190 2025-03-18 20:53:14.328 2025-03-18 20:53:14.328 1000 FEE 434586 3213 \N \N 6029192 2025-03-18 20:54:36.646 2025-03-18 20:54:36.646 2100 FEE 434584 4819 \N \N 6029193 2025-03-18 20:54:36.646 2025-03-18 20:54:36.646 18900 TIP 434584 5495 \N \N 6029201 2025-03-18 20:58:00.949 2025-03-18 20:58:00.949 1000 FEE 434587 726 \N \N 6029239 2025-03-18 21:03:11.097 2025-03-18 21:03:11.097 3300 FEE 434465 7983 \N \N 6029240 2025-03-18 21:03:11.097 2025-03-18 21:03:11.097 29700 TIP 434465 20812 \N \N 6029262 2025-03-18 21:05:47.842 2025-03-18 21:05:47.842 5000 FEE 434285 15491 \N \N 6029263 2025-03-18 21:05:47.842 2025-03-18 21:05:47.842 45000 TIP 434285 9517 \N \N 6029290 2025-03-18 21:11:39.205 2025-03-18 21:11:39.205 10000 FEE 434598 14607 \N \N 6029297 2025-03-18 21:13:29.444 2025-03-18 21:13:29.444 1000 DONT_LIKE_THIS 434535 1064 \N \N 6029334 2025-03-18 21:23:23.796 2025-03-18 21:23:23.796 4000 FEE 434583 14990 \N \N 6029335 2025-03-18 21:23:23.796 2025-03-18 21:23:23.796 36000 TIP 434583 16653 \N \N 6029347 2025-03-18 21:26:05.369 2025-03-18 21:26:05.369 1000 FEE 434488 21374 \N \N 6029348 2025-03-18 21:26:05.369 2025-03-18 21:26:05.369 9000 TIP 434488 2757 \N \N 6029360 2025-03-18 21:26:15.518 2025-03-18 21:26:15.518 1000 FEE 433828 2039 \N \N 6029361 2025-03-18 21:26:15.518 2025-03-18 21:26:15.518 9000 TIP 433828 9331 \N \N 6029370 2025-03-18 21:26:34.49 2025-03-18 21:26:34.49 1000 FEE 434441 12334 \N \N 6029371 2025-03-18 21:26:34.49 2025-03-18 21:26:34.49 9000 TIP 434441 3518 \N \N 6029377 2025-03-18 21:27:30.462 2025-03-18 21:27:30.462 1000 FEE 434410 3683 \N \N 6029378 2025-03-18 21:27:30.462 2025-03-18 21:27:30.462 9000 TIP 434410 7978 \N \N 6029383 2025-03-18 21:27:35.063 2025-03-18 21:27:35.063 1000 FEE 434479 12278 \N \N 6029384 2025-03-18 21:27:35.063 2025-03-18 21:27:35.063 9000 TIP 434479 1712 \N \N 6029389 2025-03-18 21:27:36.435 2025-03-18 21:27:36.435 1000 FEE 434572 18528 \N \N 6029390 2025-03-18 21:27:36.435 2025-03-18 21:27:36.435 9000 TIP 434572 917 \N \N 6029411 2025-03-18 21:27:44.81 2025-03-18 21:27:44.81 1000 FEE 434543 14941 \N \N 6029412 2025-03-18 21:27:44.81 2025-03-18 21:27:44.81 9000 TIP 434543 21339 \N \N 6029413 2025-03-18 21:27:45.141 2025-03-18 21:27:45.141 1000 FEE 434541 19471 \N \N 6029414 2025-03-18 21:27:45.141 2025-03-18 21:27:45.141 9000 TIP 434541 20993 \N \N 6029441 2025-03-18 21:27:55.91 2025-03-18 21:27:55.91 1000 FEE 434427 20353 \N \N 6029442 2025-03-18 21:27:55.91 2025-03-18 21:27:55.91 9000 TIP 434427 21062 \N \N 6029453 2025-03-18 21:27:59.69 2025-03-18 21:27:59.69 1000 FEE 434364 18231 \N \N 6029454 2025-03-18 21:27:59.69 2025-03-18 21:27:59.69 9000 TIP 434364 2735 \N \N 6029471 2025-03-18 21:28:06.048 2025-03-18 21:28:06.048 1000 FEE 434317 21373 \N \N 6029472 2025-03-18 21:28:06.048 2025-03-18 21:28:06.048 9000 TIP 434317 8289 \N \N 6029483 2025-03-18 21:28:09.178 2025-03-18 21:28:09.178 1000 FEE 434289 16357 \N \N 6029484 2025-03-18 21:28:09.178 2025-03-18 21:28:09.178 9000 TIP 434289 18772 \N \N 6029501 2025-03-18 21:28:13.665 2025-03-18 21:28:13.665 1000 FEE 434260 21238 \N \N 6029502 2025-03-18 21:28:13.665 2025-03-18 21:28:13.665 9000 TIP 434260 17392 \N \N 6029515 2025-03-18 21:35:19.612 2025-03-18 21:35:19.612 500 FEE 434560 1046 \N \N 6029516 2025-03-18 21:35:19.612 2025-03-18 21:35:19.612 4500 TIP 434560 20613 \N \N 6029520 2025-03-18 21:37:40.097 2025-03-18 21:37:40.097 1000 FEE 434612 2749 \N \N 6029527 2025-03-18 21:38:45.857 2025-03-18 21:38:45.857 100000 FEE 434615 20969 \N \N 6029528 2025-03-18 21:39:02.769 2025-03-18 21:39:02.769 0 FEE 434613 866 \N \N 6029533 2025-03-18 21:40:28.678 2025-03-18 21:40:28.678 2100 FEE 425712 20062 \N \N 6029534 2025-03-18 21:40:28.678 2025-03-18 21:40:28.678 18900 TIP 425712 16289 \N \N 6029545 2025-03-18 21:46:56.253 2025-03-18 21:46:56.253 1000 FEE 434618 902 \N \N 6029547 2025-03-18 21:47:46.478 2025-03-18 21:47:46.478 10000 FEE 434619 11378 \N \N 6029550 2025-03-18 21:49:20.731 2025-03-18 21:49:20.731 1000 FEE 434620 2196 \N \N 6029551 2025-03-18 21:49:26.773 2025-03-18 21:49:26.773 3000 FEE 434560 5725 \N \N 6029552 2025-03-18 21:49:26.773 2025-03-18 21:49:26.773 27000 TIP 434560 1039 \N \N 6029553 2025-03-18 21:49:42.272 2025-03-18 21:49:42.272 1000 FEE 434621 20674 \N \N 6029562 2025-03-18 21:51:33.366 2025-03-18 21:51:33.366 1000 FEE 386196 12291 \N \N 6029563 2025-03-18 21:51:33.366 2025-03-18 21:51:33.366 9000 TIP 386196 1505 \N \N 6029580 2025-03-18 21:55:51.599 2025-03-18 21:55:51.599 2100 FEE 434481 7916 \N \N 6029581 2025-03-18 21:55:51.599 2025-03-18 21:55:51.599 18900 TIP 434481 8004 \N \N 6029589 2025-03-18 21:58:21.239 2025-03-18 21:58:21.239 1000 FEE 434535 21768 \N \N 6029590 2025-03-18 21:58:21.239 2025-03-18 21:58:21.239 9000 TIP 434535 15213 \N \N 6029596 2025-03-18 21:58:49.259 2025-03-18 21:58:49.259 10000 FEE 434577 17172 \N \N 6029597 2025-03-18 21:58:49.259 2025-03-18 21:58:49.259 90000 TIP 434577 1474 \N \N 6029607 2025-03-18 21:59:17.711 2025-03-18 21:59:17.711 0 FEE 434628 9276 \N \N 6029704 2025-03-18 22:31:47.716 2025-03-18 22:31:47.716 2100 FEE 433828 16684 \N \N 6029705 2025-03-18 22:31:47.716 2025-03-18 22:31:47.716 18900 TIP 433828 623 \N \N 6029722 2025-03-18 22:31:53.76 2025-03-18 22:31:53.76 2100 FEE 433833 18306 \N \N 6029723 2025-03-18 22:31:53.76 2025-03-18 22:31:53.76 18900 TIP 433833 17891 \N \N 6029748 2025-03-18 22:35:34.468 2025-03-18 22:35:34.468 1000 FEE 434644 20026 \N \N 6029750 2025-03-18 22:37:04.115 2025-03-18 22:37:04.115 1000 FEE 434645 21444 \N \N 6029764 2025-03-18 22:38:07.674 2025-03-18 22:38:07.674 1000 FEE 434627 1236 \N \N 6029765 2025-03-18 22:38:07.674 2025-03-18 22:38:07.674 9000 TIP 434627 19488 \N \N 6029774 2025-03-18 22:40:47.456 2025-03-18 22:40:47.456 1000 FEE 434651 1658 \N \N 6029779 2025-03-18 22:41:09.74 2025-03-18 22:41:09.74 2100 FEE 434627 16970 \N \N 6029780 2025-03-18 22:41:09.74 2025-03-18 22:41:09.74 18900 TIP 434627 18306 \N \N 6029793 2025-03-18 22:42:37.283 2025-03-18 22:42:37.283 100000 FEE 434319 20185 \N \N 6029794 2025-03-18 22:42:37.283 2025-03-18 22:42:37.283 900000 TIP 434319 15091 \N \N 6029795 2025-03-18 22:42:49.418 2025-03-18 22:42:49.418 1000 FEE 434654 4313 \N \N 6029801 2025-03-18 22:45:13.988 2025-03-18 22:45:13.988 0 FEE 434650 21631 \N \N 6029838 2025-03-18 23:00:14.454 2025-03-18 23:00:14.454 2100 FEE 434646 20657 \N \N 6029839 2025-03-18 23:00:14.454 2025-03-18 23:00:14.454 18900 TIP 434646 825 \N \N 6029850 2025-03-18 23:01:02.669 2025-03-18 23:01:02.669 1000 FEE 434383 8173 \N \N 6029851 2025-03-18 23:01:02.669 2025-03-18 23:01:02.669 9000 TIP 434383 17682 \N \N 6029878 2025-03-18 23:08:38.828 2025-03-18 23:08:38.828 2100 FEE 434565 17316 \N \N 6029879 2025-03-18 23:08:38.828 2025-03-18 23:08:38.828 18900 TIP 434565 12870 \N \N 6029880 2025-03-18 23:08:52.011 2025-03-18 23:08:52.011 10000 FEE 416239 15103 \N \N 6029881 2025-03-18 23:08:52.011 2025-03-18 23:08:52.011 90000 TIP 416239 20913 \N \N 6029887 2025-03-18 23:10:39.723 2025-03-18 23:10:39.723 1000 FEE 434670 11798 \N \N 6029915 2025-03-18 23:25:08.463 2025-03-18 23:25:08.463 100 FEE 434629 12245 \N \N 6029916 2025-03-18 23:25:08.463 2025-03-18 23:25:08.463 900 TIP 434629 3686 \N \N 6029957 2025-03-18 23:41:34.977 2025-03-18 23:41:34.977 2100 FEE 434619 11378 \N \N 6029958 2025-03-18 23:41:34.977 2025-03-18 23:41:34.977 18900 TIP 434619 16571 \N \N 6029983 2025-03-18 23:50:47.729 2025-03-18 23:50:47.729 1600 FEE 434535 1493 \N \N 6029984 2025-03-18 23:50:47.729 2025-03-18 23:50:47.729 14400 TIP 434535 15139 \N \N 6029985 2025-03-18 23:50:52.001 2025-03-18 23:50:52.001 1600 FEE 434498 12808 \N \N 6029986 2025-03-18 23:50:52.001 2025-03-18 23:50:52.001 14400 TIP 434498 16747 \N \N 6029993 2025-03-18 23:52:03.441 2025-03-18 23:52:03.441 100 FEE 434642 16808 \N \N 6029994 2025-03-18 23:52:03.441 2025-03-18 23:52:03.441 900 TIP 434642 715 \N \N 6030038 2025-03-18 23:59:05.586 2025-03-18 23:59:05.586 500 FEE 434285 15146 \N \N 6030039 2025-03-18 23:59:05.586 2025-03-18 23:59:05.586 4500 TIP 434285 21314 \N \N 6030040 2025-03-18 23:59:06.131 2025-03-18 23:59:06.131 500 FEE 434285 16250 \N \N 6030041 2025-03-18 23:59:06.131 2025-03-18 23:59:06.131 4500 TIP 434285 18116 \N \N 6035615 2025-03-19 09:55:08.157 2025-03-19 09:55:08.157 2300 FEE 435377 16351 \N \N 6035616 2025-03-19 09:55:08.157 2025-03-19 09:55:08.157 20700 TIP 435377 676 \N \N 6035636 2025-03-19 09:55:14.453 2025-03-19 09:55:14.453 1000 FEE 435386 739 \N \N 6035637 2025-03-19 09:55:14.453 2025-03-19 09:55:14.453 9000 TIP 435386 8448 \N \N 6035651 2025-03-19 09:56:05.065 2025-03-19 09:56:05.065 2300 FEE 435346 2681 \N \N 6035652 2025-03-19 09:56:05.065 2025-03-19 09:56:05.065 20700 TIP 435346 777 \N \N 6035702 2025-03-19 10:02:14.164 2025-03-19 10:02:14.164 2500 FEE 435226 9246 \N \N 6035703 2025-03-19 10:02:14.164 2025-03-19 10:02:14.164 22500 TIP 435226 17095 \N \N 6035704 2025-03-19 10:02:15.415 2025-03-19 10:02:15.415 4000 FEE 435357 11328 \N \N 6035705 2025-03-19 10:02:15.415 2025-03-19 10:02:15.415 36000 TIP 435357 2460 \N \N 6035720 2025-03-19 10:03:18.747 2025-03-19 10:03:18.747 2300 FEE 435399 1030 \N \N 6035721 2025-03-19 10:03:18.747 2025-03-19 10:03:18.747 20700 TIP 435399 16059 \N \N 6035738 2025-03-19 10:03:20.6 2025-03-19 10:03:20.6 2300 FEE 435399 6164 \N \N 6035739 2025-03-19 10:03:20.6 2025-03-19 10:03:20.6 20700 TIP 435399 5129 \N \N 6035763 2025-03-19 10:03:36.534 2025-03-19 10:03:36.534 2300 FEE 435399 21042 \N \N 6035764 2025-03-19 10:03:36.534 2025-03-19 10:03:36.534 20700 TIP 435399 3439 \N \N 6035765 2025-03-19 10:03:36.644 2025-03-19 10:03:36.644 2300 FEE 435399 20182 \N \N 6035766 2025-03-19 10:03:36.644 2025-03-19 10:03:36.644 20700 TIP 435399 5961 \N \N 6035789 2025-03-19 10:06:08.556 2025-03-19 10:06:08.556 1000 FEE 435405 20157 \N \N 6035804 2025-03-19 10:09:52.756 2025-03-19 10:09:52.756 10100 FEE 435328 2176 \N \N 6035805 2025-03-19 10:09:52.756 2025-03-19 10:09:52.756 90900 TIP 435328 17124 \N \N 6035815 2025-03-19 10:11:28.497 2025-03-19 10:11:28.497 1000 FEE 435327 4074 \N \N 6035816 2025-03-19 10:11:28.497 2025-03-19 10:11:28.497 9000 TIP 435327 20660 \N \N 6035859 2025-03-19 10:17:00.079 2025-03-19 10:17:00.079 11100 FEE 435400 2537 \N \N 6035860 2025-03-19 10:17:00.079 2025-03-19 10:17:00.079 99900 TIP 435400 16059 \N \N 6035862 2025-03-19 10:17:54.291 2025-03-19 10:17:54.291 10000 FEE 435059 21148 \N \N 6035863 2025-03-19 10:17:54.291 2025-03-19 10:17:54.291 90000 TIP 435059 2347 \N \N 6035869 2025-03-19 10:18:43.225 2025-03-19 10:18:43.225 900 FEE 435412 1740 \N \N 6035870 2025-03-19 10:18:43.225 2025-03-19 10:18:43.225 8100 TIP 435412 1038 \N \N 6035890 2025-03-19 10:19:23.429 2025-03-19 10:19:23.429 100 FEE 435376 718 \N \N 6035891 2025-03-19 10:19:23.429 2025-03-19 10:19:23.429 900 TIP 435376 7583 \N \N 6035915 2025-03-19 10:22:31.464 2025-03-19 10:22:31.464 1000 FEE 435424 2674 \N \N 6035917 2025-03-19 10:22:58.522 2025-03-19 10:22:58.522 100000 DONT_LIKE_THIS 435357 15526 \N \N 6035918 2025-03-19 10:23:06.991 2025-03-19 10:23:06.991 100000 DONT_LIKE_THIS 435242 8423 \N \N 6035924 2025-03-19 10:24:20.6 2025-03-19 10:24:20.6 10000 FEE 435030 16289 \N \N 6035925 2025-03-19 10:24:20.6 2025-03-19 10:24:20.6 90000 TIP 435030 21159 \N \N 6035960 2025-03-19 10:28:24.09 2025-03-19 10:28:24.09 100 FEE 435416 19263 \N \N 6035961 2025-03-19 10:28:24.09 2025-03-19 10:28:24.09 900 TIP 435416 16556 \N \N 6035976 2025-03-19 10:29:51.763 2025-03-19 10:29:51.763 2100 FEE 435410 9906 \N \N 6035977 2025-03-19 10:29:51.763 2025-03-19 10:29:51.763 18900 TIP 435410 14465 \N \N 6035997 2025-03-19 10:32:29.004 2025-03-19 10:32:29.004 1000 FEE 435438 21184 \N \N 6036002 2025-03-19 10:32:58.734 2025-03-19 10:32:58.734 100 FEE 435190 1490 \N \N 6036003 2025-03-19 10:32:58.734 2025-03-19 10:32:58.734 900 TIP 435190 20481 \N \N 6036004 2025-03-19 10:33:08.215 2025-03-19 10:33:08.215 10000 FEE 435272 827 \N \N 6036005 2025-03-19 10:33:08.215 2025-03-19 10:33:08.215 90000 TIP 435272 18673 \N \N 6036015 2025-03-19 10:36:48.367 2025-03-19 10:36:48.367 1000 FEE 435440 1814 \N \N 6036060 2025-03-19 10:38:18.909 2025-03-19 10:38:18.909 1600 FEE 435440 9339 \N \N 6036061 2025-03-19 10:38:18.909 2025-03-19 10:38:18.909 14400 TIP 435440 992 \N \N 6036062 2025-03-19 10:38:21.489 2025-03-19 10:38:21.489 1100 FEE 435444 9026 \N \N 6036063 2025-03-19 10:38:21.489 2025-03-19 10:38:21.489 9900 TIP 435444 15843 \N \N 6036064 2025-03-19 10:38:33.116 2025-03-19 10:38:33.116 500 FEE 435440 13467 \N \N 6036065 2025-03-19 10:38:33.116 2025-03-19 10:38:33.116 4500 TIP 435440 12946 \N \N 6036086 2025-03-19 10:42:17.931 2025-03-19 10:42:17.931 100 FEE 435328 16695 \N \N 6036087 2025-03-19 10:42:17.931 2025-03-19 10:42:17.931 900 TIP 435328 20412 \N \N 6036090 2025-03-19 10:42:18.904 2025-03-19 10:42:18.904 100 FEE 435189 20439 \N \N 6036091 2025-03-19 10:42:18.904 2025-03-19 10:42:18.904 900 TIP 435189 17638 \N \N 6036102 2025-03-19 10:42:20.411 2025-03-19 10:42:20.411 100 FEE 435189 15474 \N \N 6036103 2025-03-19 10:42:20.411 2025-03-19 10:42:20.411 900 TIP 435189 9347 \N \N 6036137 2025-03-19 10:45:51.775 2025-03-19 10:45:51.775 4000 FEE 435443 19303 \N \N 6036138 2025-03-19 10:45:51.775 2025-03-19 10:45:51.775 36000 TIP 435443 14785 \N \N 6036194 2025-03-19 10:52:42.423 2025-03-19 10:52:42.423 23000 DONT_LIKE_THIS 435455 9107 \N \N 6036211 2025-03-19 10:58:59.305 2025-03-19 10:58:59.305 400 FEE 435450 4292 \N \N 6036212 2025-03-19 10:58:59.305 2025-03-19 10:58:59.305 3600 TIP 435450 2151 \N \N 6036246 2025-03-19 11:05:35.37 2025-03-19 11:05:35.37 1000 FEE 435377 681 \N \N 6036247 2025-03-19 11:05:35.37 2025-03-19 11:05:35.37 9000 TIP 435377 5794 \N \N 6036268 2025-03-19 11:11:28.341 2025-03-19 11:11:28.341 1000 FEE 435473 10063 \N \N 6036281 2025-03-19 11:17:21.999 2025-03-19 11:17:21.999 1000 FEE 435476 11498 \N \N 6036284 2025-03-19 11:17:33.812 2025-03-19 11:17:33.812 1000 FEE 435477 9276 \N \N 6036299 2025-03-19 11:17:35.602 2025-03-19 11:17:35.602 10000 FEE 435412 16177 \N \N 6036300 2025-03-19 11:17:35.602 2025-03-19 11:17:35.602 90000 TIP 435412 8045 \N \N 6036303 2025-03-19 11:18:01.898 2025-03-19 11:18:01.898 10000 FEE 435478 8469 \N \N 6036319 2025-03-19 11:26:29.997 2025-03-19 11:26:29.997 1000 FEE 435480 4692 \N \N 6036320 2025-03-19 11:26:29.997 2025-03-19 11:26:29.997 9000 TIP 435480 4973 \N \N 6036331 2025-03-19 11:26:34.302 2025-03-19 11:26:34.302 1000 FEE 435480 2206 \N \N 6036332 2025-03-19 11:26:34.302 2025-03-19 11:26:34.302 9000 TIP 435480 3304 \N \N 6036347 2025-03-19 11:31:09.571 2025-03-19 11:31:09.571 1000 FEE 435483 20439 \N \N 6036360 2025-03-19 11:37:44.834 2025-03-19 11:37:44.834 6400 FEE 435328 17221 \N \N 6036361 2025-03-19 11:37:44.834 2025-03-19 11:37:44.834 57600 TIP 435328 21145 \N \N 6036370 2025-03-19 11:39:20.519 2025-03-19 11:39:20.519 800 FEE 434276 11885 \N \N 6036371 2025-03-19 11:39:20.519 2025-03-19 11:39:20.519 7200 TIP 434276 11091 \N \N 6036379 2025-03-19 11:41:19.938 2025-03-19 11:41:19.938 800 FEE 435453 18525 \N \N 6036380 2025-03-19 11:41:19.938 2025-03-19 11:41:19.938 7200 TIP 435453 2016 \N \N 6036382 2025-03-19 11:42:04.499 2025-03-19 11:42:04.499 300 FEE 435226 2022 \N \N 6036383 2025-03-19 11:42:04.499 2025-03-19 11:42:04.499 2700 TIP 435226 16406 \N \N 6036389 2025-03-19 11:42:36.545 2025-03-19 11:42:36.545 1000 FEE 435492 13987 \N \N 6036400 2025-03-19 11:44:10.67 2025-03-19 11:44:10.67 10000 FEE 435494 13038 \N \N 6036433 2025-03-19 11:45:46.764 2025-03-19 11:45:46.764 2300 FEE 435497 12566 \N \N 6036434 2025-03-19 11:45:46.764 2025-03-19 11:45:46.764 20700 TIP 435497 21216 \N \N 6036437 2025-03-19 11:45:47.903 2025-03-19 11:45:47.903 6900 FEE 435497 1772 \N \N 6036438 2025-03-19 11:45:47.903 2025-03-19 11:45:47.903 62100 TIP 435497 1051 \N \N 6036445 2025-03-19 11:45:51.392 2025-03-19 11:45:51.392 2300 FEE 435497 2718 \N \N 6036446 2025-03-19 11:45:51.392 2025-03-19 11:45:51.392 20700 TIP 435497 9969 \N \N 6036453 2025-03-19 11:45:52.032 2025-03-19 11:45:52.032 2300 FEE 435497 15147 \N \N 6036454 2025-03-19 11:45:52.032 2025-03-19 11:45:52.032 20700 TIP 435497 8004 \N \N 6036457 2025-03-19 11:45:52.307 2025-03-19 11:45:52.307 2300 FEE 435497 2776 \N \N 6036458 2025-03-19 11:45:52.307 2025-03-19 11:45:52.307 20700 TIP 435497 3213 \N \N 6036473 2025-03-19 11:45:54.64 2025-03-19 11:45:54.64 2300 FEE 435497 11516 \N \N 6036474 2025-03-19 11:45:54.64 2025-03-19 11:45:54.64 20700 TIP 435497 19992 \N \N 6036477 2025-03-19 11:45:54.895 2025-03-19 11:45:54.895 2300 FEE 435497 18441 \N \N 6036478 2025-03-19 11:45:54.895 2025-03-19 11:45:54.895 20700 TIP 435497 21547 \N \N 6036493 2025-03-19 11:46:10.33 2025-03-19 11:46:10.33 1600 FEE 435274 20198 \N \N 6036494 2025-03-19 11:46:10.33 2025-03-19 11:46:10.33 14400 TIP 435274 9366 \N \N 6036513 2025-03-19 11:47:42.063 2025-03-19 11:47:42.063 1000 FEE 435458 4313 \N \N 6036514 2025-03-19 11:47:42.063 2025-03-19 11:47:42.063 9000 TIP 435458 10352 \N \N 6035641 2025-03-19 09:55:15.594 2025-03-19 09:55:15.594 9000 TIP 435386 20660 \N \N 6035658 2025-03-19 09:56:58.289 2025-03-19 09:56:58.289 90000 FEE 434124 20956 \N \N 6035659 2025-03-19 09:56:58.289 2025-03-19 09:56:58.289 810000 TIP 434124 21575 \N \N 6035700 2025-03-19 10:01:46.651 2025-03-19 10:01:46.651 0 FEE 435395 1673 \N \N 6035707 2025-03-19 10:02:44.323 2025-03-19 10:02:44.323 1000 FEE 435399 859 \N \N 6035760 2025-03-19 10:03:22.699 2025-03-19 10:03:22.699 2300 FEE 435399 14168 \N \N 6035761 2025-03-19 10:03:22.699 2025-03-19 10:03:22.699 20700 TIP 435399 1512 \N \N 6035769 2025-03-19 10:03:37.485 2025-03-19 10:03:37.485 2300 FEE 435399 12951 \N \N 6035770 2025-03-19 10:03:37.485 2025-03-19 10:03:37.485 20700 TIP 435399 9378 \N \N 6035783 2025-03-19 10:05:48.349 2025-03-19 10:05:48.349 10000 FEE 435328 992 \N \N 6035784 2025-03-19 10:05:48.349 2025-03-19 10:05:48.349 90000 TIP 435328 15367 \N \N 6035807 2025-03-19 10:10:41.138 2025-03-19 10:10:41.138 50000 FEE 435018 18271 \N \N 6035808 2025-03-19 10:10:41.138 2025-03-19 10:10:41.138 450000 TIP 435018 2196 \N \N 6035825 2025-03-19 10:11:54.09 2025-03-19 10:11:54.09 100000 FEE 435410 17095 \N \N 6035826 2025-03-19 10:12:03.843 2025-03-19 10:12:03.843 0 FEE 435409 20799 \N \N 6035835 2025-03-19 10:13:14.025 2025-03-19 10:13:14.025 800 FEE 435375 5057 \N \N 6035836 2025-03-19 10:13:14.025 2025-03-19 10:13:14.025 7200 TIP 435375 15049 \N \N 6035855 2025-03-19 10:16:48.723 2025-03-19 10:16:48.723 2500 FEE 435229 5171 \N \N 6035856 2025-03-19 10:16:48.723 2025-03-19 10:16:48.723 22500 TIP 435229 20434 \N \N 6035867 2025-03-19 10:18:43.036 2025-03-19 10:18:43.036 100 FEE 435412 16948 \N \N 6035868 2025-03-19 10:18:43.036 2025-03-19 10:18:43.036 900 TIP 435412 21578 \N \N 6035871 2025-03-19 10:18:45.67 2025-03-19 10:18:45.67 1000 FEE 435419 1720 \N \N 6035921 2025-03-19 10:23:55.377 2025-03-19 10:23:55.377 10000 FEE 435359 12220 \N \N 6029243 2025-03-18 21:03:21.477 2025-03-18 21:03:21.477 29700 TIP 434465 21832 \N \N 6029260 2025-03-18 21:05:46.671 2025-03-18 21:05:46.671 1000 FEE 434585 667 \N \N 6029261 2025-03-18 21:05:46.671 2025-03-18 21:05:46.671 9000 TIP 434585 17046 \N \N 6029287 2025-03-18 21:11:04.613 2025-03-18 21:11:04.613 1000 FEE 434460 2774 \N \N 6029288 2025-03-18 21:11:04.613 2025-03-18 21:11:04.613 9000 TIP 434460 980 \N \N 6029307 2025-03-18 21:16:37.236 2025-03-18 21:16:37.236 2100 FEE 434412 5444 \N \N 6029308 2025-03-18 21:16:37.236 2025-03-18 21:16:37.236 18900 TIP 434412 21320 \N \N 6029325 2025-03-18 21:22:53.931 2025-03-18 21:22:53.931 2000 FEE 433943 18901 \N \N 6029326 2025-03-18 21:22:53.931 2025-03-18 21:22:53.931 18000 TIP 433943 3396 \N \N 6029327 2025-03-18 21:22:54.197 2025-03-18 21:22:54.197 2000 FEE 433943 1806 \N \N 6029328 2025-03-18 21:22:54.197 2025-03-18 21:22:54.197 18000 TIP 433943 9363 \N \N 6029355 2025-03-18 21:26:10.905 2025-03-18 21:26:10.905 1000 FEE 434440 19777 \N \N 6029356 2025-03-18 21:26:10.905 2025-03-18 21:26:10.905 9000 TIP 434440 19842 \N \N 6029368 2025-03-18 21:26:33.577 2025-03-18 21:26:33.577 1000 FEE 434469 652 \N \N 6029369 2025-03-18 21:26:33.577 2025-03-18 21:26:33.577 9000 TIP 434469 6160 \N \N 6029393 2025-03-18 21:27:38.908 2025-03-18 21:27:38.908 1000 FEE 433878 2000 \N \N 6029394 2025-03-18 21:27:38.908 2025-03-18 21:27:38.908 9000 TIP 433878 20913 \N \N 6029397 2025-03-18 21:27:39.469 2025-03-18 21:27:39.469 1000 FEE 433833 20754 \N \N 6029398 2025-03-18 21:27:39.469 2025-03-18 21:27:39.469 9000 TIP 433833 20337 \N \N 6029399 2025-03-18 21:27:42.445 2025-03-18 21:27:42.445 1000 FEE 434606 641 \N \N 6029400 2025-03-18 21:27:42.445 2025-03-18 21:27:42.445 9000 TIP 434606 5590 \N \N 6029403 2025-03-18 21:27:43.445 2025-03-18 21:27:43.445 1000 FEE 434588 18529 \N \N 6029404 2025-03-18 21:27:43.445 2025-03-18 21:27:43.445 9000 TIP 434588 20059 \N \N 6029419 2025-03-18 21:27:46.918 2025-03-18 21:27:46.918 1000 FEE 434514 13042 \N \N 6029420 2025-03-18 21:27:46.918 2025-03-18 21:27:46.918 9000 TIP 434514 18423 \N \N 6029421 2025-03-18 21:27:47.147 2025-03-18 21:27:47.147 1000 FEE 434504 7583 \N \N 6029422 2025-03-18 21:27:47.147 2025-03-18 21:27:47.147 9000 TIP 434504 16948 \N \N 6029425 2025-03-18 21:27:48.915 2025-03-18 21:27:48.915 1000 FEE 434485 712 \N \N 6029426 2025-03-18 21:27:48.915 2025-03-18 21:27:48.915 9000 TIP 434485 746 \N \N 6029435 2025-03-18 21:27:53.276 2025-03-18 21:27:53.276 1000 FEE 434447 20117 \N \N 6029436 2025-03-18 21:27:53.276 2025-03-18 21:27:53.276 9000 TIP 434447 10862 \N \N 6029445 2025-03-18 21:27:56.833 2025-03-18 21:27:56.833 1000 FEE 434402 20683 \N \N 6029446 2025-03-18 21:27:56.833 2025-03-18 21:27:56.833 9000 TIP 434402 9969 \N \N 6029449 2025-03-18 21:27:58.21 2025-03-18 21:27:58.21 1000 FEE 434379 9496 \N \N 6029450 2025-03-18 21:27:58.21 2025-03-18 21:27:58.21 9000 TIP 434379 17014 \N \N 6029455 2025-03-18 21:28:00.091 2025-03-18 21:28:00.091 1000 FEE 434360 9336 \N \N 6029456 2025-03-18 21:28:00.091 2025-03-18 21:28:00.091 9000 TIP 434360 10719 \N \N 6029469 2025-03-18 21:28:05.74 2025-03-18 21:28:05.74 1000 FEE 434319 11992 \N \N 6029470 2025-03-18 21:28:05.74 2025-03-18 21:28:05.74 9000 TIP 434319 21701 \N \N 6035685 2025-03-19 09:59:42.938 2025-03-19 09:59:42.938 1000 FEE 435396 14278 \N \N 6035693 2025-03-19 10:00:49.645 2025-03-19 10:00:49.645 1000 FEE 435397 5757 \N \N 6035708 2025-03-19 10:03:01.974 2025-03-19 10:03:01.974 0 FEE 435398 4084 \N \N 6035756 2025-03-19 10:03:22.451 2025-03-19 10:03:22.451 2300 FEE 435399 725 \N \N 6035757 2025-03-19 10:03:22.451 2025-03-19 10:03:22.451 20700 TIP 435399 6471 \N \N 6035758 2025-03-19 10:03:22.575 2025-03-19 10:03:22.575 2300 FEE 435399 666 \N \N 6035759 2025-03-19 10:03:22.575 2025-03-19 10:03:22.575 20700 TIP 435399 12277 \N \N 6035774 2025-03-19 10:03:50.542 2025-03-19 10:03:50.542 2100 FEE 435261 6202 \N \N 6035775 2025-03-19 10:03:50.542 2025-03-19 10:03:50.542 18900 TIP 435261 8870 \N \N 6035776 2025-03-19 10:03:58.503 2025-03-19 10:03:58.503 1100 FEE 435177 21710 \N \N 6035777 2025-03-19 10:03:58.503 2025-03-19 10:03:58.503 9900 TIP 435177 18734 \N \N 6035791 2025-03-19 10:06:48.116 2025-03-19 10:06:48.116 2100 FEE 435024 628 \N \N 6035792 2025-03-19 10:06:48.116 2025-03-19 10:06:48.116 18900 TIP 435024 17682 \N \N 6035819 2025-03-19 10:11:30.43 2025-03-19 10:11:30.43 1000 FEE 435217 8037 \N \N 6035820 2025-03-19 10:11:30.43 2025-03-19 10:11:30.43 9000 TIP 435217 15367 \N \N 6035823 2025-03-19 10:11:45.496 2025-03-19 10:11:45.496 1000 FEE 435409 11873 \N \N 6035830 2025-03-19 10:12:59.167 2025-03-19 10:12:59.167 1000 FEE 435413 687 \N \N 6035837 2025-03-19 10:13:30.681 2025-03-19 10:13:30.681 1000 FEE 435416 1105 \N \N 6035840 2025-03-19 10:13:37.673 2025-03-19 10:13:37.673 200 FEE 435401 20254 \N \N 6035841 2025-03-19 10:13:37.673 2025-03-19 10:13:37.673 1800 TIP 435401 759 \N \N 6035865 2025-03-19 10:18:15.247 2025-03-19 10:18:15.247 100000 DONT_LIKE_THIS 435414 11621 \N \N 6035866 2025-03-19 10:18:28.023 2025-03-19 10:18:28.023 1000 FEE 435418 7877 \N \N 6035916 2025-03-19 10:22:57.553 2025-03-19 10:22:57.553 21000 DONT_LIKE_THIS 435127 19952 \N \N 6035943 2025-03-19 10:26:45.507 2025-03-19 10:26:45.507 8300 FEE 435425 16289 \N \N 6035944 2025-03-19 10:26:45.507 2025-03-19 10:26:45.507 74700 TIP 435425 1046 \N \N 6035945 2025-03-19 10:26:52.326 2025-03-19 10:26:52.326 100000 FEE 435430 722 \N \N 6035952 2025-03-19 10:27:37.112 2025-03-19 10:27:37.112 2500 FEE 435353 16789 \N \N 6035953 2025-03-19 10:27:37.112 2025-03-19 10:27:37.112 22500 TIP 435353 19138 \N \N 6035956 2025-03-19 10:27:41.682 2025-03-19 10:27:41.682 2500 FEE 435295 14669 \N \N 6035957 2025-03-19 10:27:41.682 2025-03-19 10:27:41.682 22500 TIP 435295 17519 \N \N 6035967 2025-03-19 10:28:50.865 2025-03-19 10:28:50.865 2100 FEE 435100 17797 \N \N 6035968 2025-03-19 10:28:50.865 2025-03-19 10:28:50.865 18900 TIP 435100 1814 \N \N 6035972 2025-03-19 10:29:26.802 2025-03-19 10:29:26.802 100 FEE 435328 1567 \N \N 6035973 2025-03-19 10:29:26.802 2025-03-19 10:29:26.802 900 TIP 435328 8648 \N \N 6036012 2025-03-19 10:35:07.724 2025-03-19 10:35:07.724 1000 FEE 435439 6419 \N \N 6036018 2025-03-19 10:36:53.576 2025-03-19 10:36:53.576 100 FEE 435180 20381 \N \N 6036019 2025-03-19 10:36:53.576 2025-03-19 10:36:53.576 900 TIP 435180 17226 \N \N 6036022 2025-03-19 10:36:53.98 2025-03-19 10:36:53.98 100 FEE 435180 20788 \N \N 6036023 2025-03-19 10:36:53.98 2025-03-19 10:36:53.98 900 TIP 435180 679 \N \N 6036036 2025-03-19 10:37:05.971 2025-03-19 10:37:05.971 21000 FEE 435441 762 \N \N 6036038 2025-03-19 10:37:08.709 2025-03-19 10:37:08.709 1000 FEE 435443 10981 \N \N 6036053 2025-03-19 10:37:42.479 2025-03-19 10:37:42.479 2100 FEE 435437 9350 \N \N 6036054 2025-03-19 10:37:42.479 2025-03-19 10:37:42.479 18900 TIP 435437 3717 \N \N 6036078 2025-03-19 10:42:16.513 2025-03-19 10:42:16.513 100 FEE 435328 9992 \N \N 6036079 2025-03-19 10:42:16.513 2025-03-19 10:42:16.513 900 TIP 435328 9796 \N \N 6035715 2025-03-19 10:03:17.888 2025-03-19 10:03:17.888 41400 TIP 435399 11153 \N \N 6035718 2025-03-19 10:03:18.488 2025-03-19 10:03:18.488 2300 FEE 435399 13599 \N \N 6035719 2025-03-19 10:03:18.488 2025-03-19 10:03:18.488 20700 TIP 435399 686 \N \N 6035773 2025-03-19 10:03:46.074 2025-03-19 10:03:46.074 1000 FEE 435401 21136 \N \N 6035725 2025-03-19 10:03:19.001 2025-03-19 10:03:19.001 20700 TIP 435399 8059 \N \N 6035734 2025-03-19 10:03:20.299 2025-03-19 10:03:20.299 2300 FEE 435399 17696 \N \N 6035735 2025-03-19 10:03:20.299 2025-03-19 10:03:20.299 20700 TIP 435399 20603 \N \N 6035748 2025-03-19 10:03:21.218 2025-03-19 10:03:21.218 2300 FEE 435399 15196 \N \N 6035749 2025-03-19 10:03:21.218 2025-03-19 10:03:21.218 20700 TIP 435399 20979 \N \N 6035752 2025-03-19 10:03:21.514 2025-03-19 10:03:21.514 2300 FEE 435399 14168 \N \N 6035753 2025-03-19 10:03:21.514 2025-03-19 10:03:21.514 20700 TIP 435399 4570 \N \N 6035754 2025-03-19 10:03:21.632 2025-03-19 10:03:21.632 2300 FEE 435399 11942 \N \N 6035755 2025-03-19 10:03:21.632 2025-03-19 10:03:21.632 20700 TIP 435399 17673 \N \N 6035796 2025-03-19 10:07:36.832 2025-03-19 10:07:36.832 1000 FEE 435406 17184 \N \N 6035842 2025-03-19 10:13:37.993 2025-03-19 10:13:37.993 9200 FEE 435375 811 \N \N 6035843 2025-03-19 10:13:37.993 2025-03-19 10:13:37.993 82800 TIP 435375 680 \N \N 6035846 2025-03-19 10:15:17.709 2025-03-19 10:15:17.709 1000 FEE 435417 17541 \N \N 6035852 2025-03-19 10:16:10.017 2025-03-19 10:16:10.017 2500 FEE 434642 17824 \N \N 6035853 2025-03-19 10:16:10.017 2025-03-19 10:16:10.017 22500 TIP 434642 2508 \N \N 6035857 2025-03-19 10:16:52.322 2025-03-19 10:16:52.322 200 FEE 435410 21058 \N \N 6035858 2025-03-19 10:16:52.322 2025-03-19 10:16:52.322 1800 TIP 435410 15588 \N \N 6035874 2025-03-19 10:18:56.721 2025-03-19 10:18:56.721 100 FEE 435402 718 \N \N 6035875 2025-03-19 10:18:56.721 2025-03-19 10:18:56.721 900 TIP 435402 21357 \N \N 6035878 2025-03-19 10:19:01.57 2025-03-19 10:19:01.57 9000 FEE 435402 16747 \N \N 6035879 2025-03-19 10:19:01.57 2025-03-19 10:19:01.57 81000 TIP 435402 1785 \N \N 6035887 2025-03-19 10:19:18.128 2025-03-19 10:19:18.128 1000 FEE 435420 11220 \N \N 6035911 2025-03-19 10:21:36.44 2025-03-19 10:21:36.44 2100 FEE 435213 8289 \N \N 6035912 2025-03-19 10:21:36.44 2025-03-19 10:21:36.44 18900 TIP 435213 1092 \N \N 6035929 2025-03-19 10:24:59.347 2025-03-19 10:24:59.347 2100 FEE 435369 20891 \N \N 6035930 2025-03-19 10:24:59.347 2025-03-19 10:24:59.347 18900 TIP 435369 2776 \N \N 6035932 2025-03-19 10:25:05.703 2025-03-19 10:25:05.703 1000 FEE 435427 1135 \N \N 6035950 2025-03-19 10:27:36.076 2025-03-19 10:27:36.076 3000 FEE 435427 20152 \N \N 6035951 2025-03-19 10:27:36.076 2025-03-19 10:27:36.076 27000 TIP 435427 21356 \N \N 6035959 2025-03-19 10:28:18.325 2025-03-19 10:28:18.325 1000 FEE 435432 15732 \N \N 6035965 2025-03-19 10:28:39.367 2025-03-19 10:28:39.367 2100 FEE 435136 4570 \N \N 6035966 2025-03-19 10:28:39.367 2025-03-19 10:28:39.367 18900 TIP 435136 21207 \N \N 6035992 2025-03-19 10:31:41.9 2025-03-19 10:31:41.9 1000 FEE 435434 7674 \N \N 6035993 2025-03-19 10:32:05.174 2025-03-19 10:32:05.174 1000 FEE 435435 718 \N \N 6036037 2025-03-19 10:37:05.975 2025-03-19 10:37:05.975 1000 FEE 435442 2719 \N \N 6036039 2025-03-19 10:37:09.71 2025-03-19 10:37:09.71 90000 FEE 435217 7869 \N \N 6036040 2025-03-19 10:37:09.71 2025-03-19 10:37:09.71 810000 TIP 435217 9356 \N \N 6036055 2025-03-19 10:38:04.201 2025-03-19 10:38:04.201 1100 FEE 435136 16571 \N \N 6036056 2025-03-19 10:38:04.201 2025-03-19 10:38:04.201 9900 TIP 435136 1585 \N \N 6036066 2025-03-19 10:39:09.099 2025-03-19 10:39:09.099 1000 FEE 435439 20412 \N \N 6036067 2025-03-19 10:39:09.099 2025-03-19 10:39:09.099 9000 TIP 435439 10934 \N \N 6036084 2025-03-19 10:42:17.35 2025-03-19 10:42:17.35 100 FEE 435328 9331 \N \N 6036085 2025-03-19 10:42:17.35 2025-03-19 10:42:17.35 900 TIP 435328 7583 \N \N 6036112 2025-03-19 10:43:08.2 2025-03-19 10:43:08.2 8300 FEE 435438 9695 \N \N 6036113 2025-03-19 10:43:08.2 2025-03-19 10:43:08.2 74700 TIP 435438 16747 \N \N 6036117 2025-03-19 10:43:30.658 2025-03-19 10:43:30.658 1000 FEE 435447 854 \N \N 6036126 2025-03-19 10:44:40.678 2025-03-19 10:44:40.678 100 FEE 435448 21274 \N \N 6036127 2025-03-19 10:44:40.678 2025-03-19 10:44:40.678 900 TIP 435448 658 \N \N 6036130 2025-03-19 10:44:41.106 2025-03-19 10:44:41.106 100 FEE 435448 14909 \N \N 6036131 2025-03-19 10:44:41.106 2025-03-19 10:44:41.106 900 TIP 435448 14449 \N \N 6036135 2025-03-19 10:45:42.693 2025-03-19 10:45:42.693 5000 FEE 435449 9969 \N \N 6036139 2025-03-19 10:45:53.09 2025-03-19 10:45:53.09 4000 FEE 435447 713 \N \N 6036140 2025-03-19 10:45:53.09 2025-03-19 10:45:53.09 36000 TIP 435447 2961 \N \N 6036170 2025-03-19 10:50:44.304 2025-03-19 10:50:44.304 3000 FEE 435447 17365 \N \N 6036171 2025-03-19 10:50:44.304 2025-03-19 10:50:44.304 27000 TIP 435447 21670 \N \N 6029342 2025-03-18 21:25:45.022 2025-03-18 21:25:45.022 45000 TIP 434535 17953 \N \N 6029343 2025-03-18 21:25:57.953 2025-03-18 21:25:57.953 1000 FEE 434498 974 \N \N 6029344 2025-03-18 21:25:57.953 2025-03-18 21:25:57.953 9000 TIP 434498 1720 \N \N 6029345 2025-03-18 21:25:59.498 2025-03-18 21:25:59.498 1000 FEE 434285 17533 \N \N 6029346 2025-03-18 21:25:59.498 2025-03-18 21:25:59.498 9000 TIP 434285 21814 \N \N 6029349 2025-03-18 21:26:06.874 2025-03-18 21:26:06.874 1000 FEE 434278 16717 \N \N 6029350 2025-03-18 21:26:06.874 2025-03-18 21:26:06.874 9000 TIP 434278 19689 \N \N 6029366 2025-03-18 21:26:27.435 2025-03-18 21:26:27.435 1000 FEE 434243 1474 \N \N 6029367 2025-03-18 21:26:27.435 2025-03-18 21:26:27.435 9000 TIP 434243 2213 \N \N 6029391 2025-03-18 21:27:38.706 2025-03-18 21:27:38.706 1000 FEE 433934 2710 \N \N 6029392 2025-03-18 21:27:38.706 2025-03-18 21:27:38.706 9000 TIP 433934 15521 \N \N 6029409 2025-03-18 21:27:44.499 2025-03-18 21:27:44.499 1000 FEE 434544 632 \N \N 6029410 2025-03-18 21:27:44.499 2025-03-18 21:27:44.499 9000 TIP 434544 21042 \N \N 6029423 2025-03-18 21:27:48.625 2025-03-18 21:27:48.625 1000 FEE 434483 1631 \N \N 6029424 2025-03-18 21:27:48.625 2025-03-18 21:27:48.625 9000 TIP 434483 1209 \N \N 6029433 2025-03-18 21:27:52.807 2025-03-18 21:27:52.807 1000 FEE 434457 20291 \N \N 6029434 2025-03-18 21:27:52.807 2025-03-18 21:27:52.807 9000 TIP 434457 18265 \N \N 6029439 2025-03-18 21:27:54.834 2025-03-18 21:27:54.834 1000 FEE 434434 16747 \N \N 6029440 2025-03-18 21:27:54.834 2025-03-18 21:27:54.834 9000 TIP 434434 5195 \N \N 6029447 2025-03-18 21:27:57.842 2025-03-18 21:27:57.842 1000 FEE 434382 11829 \N \N 6029448 2025-03-18 21:27:57.842 2025-03-18 21:27:57.842 9000 TIP 434382 21373 \N \N 6029461 2025-03-18 21:28:01.796 2025-03-18 21:28:01.796 1000 FEE 434343 1729 \N \N 6029462 2025-03-18 21:28:01.796 2025-03-18 21:28:01.796 9000 TIP 434343 16816 \N \N 6029485 2025-03-18 21:28:09.949 2025-03-18 21:28:09.949 1000 FEE 434288 626 \N \N 6029486 2025-03-18 21:28:09.949 2025-03-18 21:28:09.949 9000 TIP 434288 21338 \N \N 6029541 2025-03-18 21:45:23.731 2025-03-18 21:45:23.731 1000 DONT_LIKE_THIS 419731 21408 \N \N 6029583 2025-03-18 21:56:09.162 2025-03-18 21:56:09.162 1000 FEE 434625 7376 \N \N 6029613 2025-03-18 22:02:01.93 2025-03-18 22:02:01.93 1000 FEE 434630 16753 \N \N 6029615 2025-03-18 22:02:21.822 2025-03-18 22:02:21.822 1000 FEE 434523 837 \N \N 6029616 2025-03-18 22:02:21.822 2025-03-18 22:02:21.822 9000 TIP 434523 5377 \N \N 6029619 2025-03-18 22:02:41.847 2025-03-18 22:02:41.847 1000 FEE 434395 20642 \N \N 6029620 2025-03-18 22:02:41.847 2025-03-18 22:02:41.847 9000 TIP 434395 20901 \N \N 6029626 2025-03-18 22:03:58.999 2025-03-18 22:03:58.999 1000 FEE 434631 661 \N \N 6029666 2025-03-18 22:18:56.613 2025-03-18 22:18:56.613 1000 FEE 433943 722 \N \N 6029667 2025-03-18 22:18:56.613 2025-03-18 22:18:56.613 9000 TIP 433943 20906 \N \N 6029680 2025-03-18 22:20:55.366 2025-03-18 22:20:55.366 45000 FEE 434440 8469 \N \N 6029681 2025-03-18 22:20:55.366 2025-03-18 22:20:55.366 405000 TIP 434440 9982 \N \N 6029683 2025-03-18 22:21:30.798 2025-03-18 22:21:30.798 1000 FEE 434638 919 \N \N 6029698 2025-03-18 22:29:50.587 2025-03-18 22:29:50.587 1000 FEE 434616 6058 \N \N 6029699 2025-03-18 22:29:50.587 2025-03-18 22:29:50.587 9000 TIP 434616 18601 \N \N 6029708 2025-03-18 22:31:49.037 2025-03-18 22:31:49.037 2100 FEE 433943 16259 \N \N 6029709 2025-03-18 22:31:49.037 2025-03-18 22:31:49.037 18900 TIP 433943 6202 \N \N 6029732 2025-03-18 22:31:57.233 2025-03-18 22:31:57.233 2100 FEE 433555 16769 \N \N 6029733 2025-03-18 22:31:57.233 2025-03-18 22:31:57.233 18900 TIP 433555 8926 \N \N 6029738 2025-03-18 22:31:59.359 2025-03-18 22:31:59.359 2100 FEE 434243 4118 \N \N 6029739 2025-03-18 22:31:59.359 2025-03-18 22:31:59.359 18900 TIP 434243 8269 \N \N 6029773 2025-03-18 22:40:45.604 2025-03-18 22:40:45.604 1000 FEE 434650 18231 \N \N 6029787 2025-03-18 22:41:34.498 2025-03-18 22:41:34.498 2100 FEE 433828 19488 \N \N 6029788 2025-03-18 22:41:34.498 2025-03-18 22:41:34.498 18900 TIP 433828 697 \N \N 6029799 2025-03-18 22:44:02.126 2025-03-18 22:44:02.126 1000 FEE 434655 16948 \N \N 6029805 2025-03-18 22:46:23.323 2025-03-18 22:46:23.323 1000 FEE 434637 929 \N \N 6029806 2025-03-18 22:46:23.323 2025-03-18 22:46:23.323 9000 TIP 434637 9356 \N \N 6029807 2025-03-18 22:46:25.501 2025-03-18 22:46:25.501 1000 FEE 434535 9367 \N \N 6029808 2025-03-18 22:46:25.501 2025-03-18 22:46:25.501 9000 TIP 434535 19952 \N \N 6029832 2025-03-18 22:58:17.881 2025-03-18 22:58:17.881 10800 FEE 434186 11192 \N \N 6029833 2025-03-18 22:58:17.881 2025-03-18 22:58:17.881 97200 TIP 434186 803 \N \N 6029843 2025-03-18 23:00:49.403 2025-03-18 23:00:49.403 2100 FEE 434615 1472 \N \N 6029844 2025-03-18 23:00:49.403 2025-03-18 23:00:49.403 18900 TIP 434615 5520 \N \N 6029858 2025-03-18 23:01:34.769 2025-03-18 23:01:34.769 21000 DONT_LIKE_THIS 434591 1577 \N \N 6029859 2025-03-18 23:02:13.776 2025-03-18 23:02:13.776 10000 FEE 434665 11153 \N \N 6029868 2025-03-18 23:06:02.258 2025-03-18 23:06:02.258 1000 FEE 434666 3461 \N \N 6029905 2025-03-18 23:21:05.444 2025-03-18 23:21:05.444 10000 FEE 433828 2718 \N \N 6029906 2025-03-18 23:21:05.444 2025-03-18 23:21:05.444 90000 TIP 433828 21103 \N \N 6029908 2025-03-18 23:21:53.787 2025-03-18 23:21:53.787 0 FEE 434673 20881 \N \N 6029917 2025-03-18 23:25:10.561 2025-03-18 23:25:10.561 10000 FEE 434665 18368 \N \N 6029918 2025-03-18 23:25:10.561 2025-03-18 23:25:10.561 90000 TIP 434665 11417 \N \N 6029954 2025-03-18 23:40:44.222 2025-03-18 23:40:44.222 2100 FEE 434665 699 \N \N 6029955 2025-03-18 23:40:44.222 2025-03-18 23:40:44.222 18900 TIP 434665 11275 \N \N 6029962 2025-03-18 23:42:16.882 2025-03-18 23:42:16.882 2100 FEE 434627 1729 \N \N 6029963 2025-03-18 23:42:16.882 2025-03-18 23:42:16.882 18900 TIP 434627 616 \N \N 6030003 2025-03-18 23:52:07.502 2025-03-18 23:52:07.502 100 FEE 434646 18188 \N \N 6030004 2025-03-18 23:52:07.502 2025-03-18 23:52:07.502 900 TIP 434646 5495 \N \N 6030005 2025-03-18 23:52:07.842 2025-03-18 23:52:07.842 100 FEE 434646 4802 \N \N 6030006 2025-03-18 23:52:07.842 2025-03-18 23:52:07.842 900 TIP 434646 7809 \N \N 6030013 2025-03-18 23:52:09.344 2025-03-18 23:52:09.344 100 FEE 434646 2431 \N \N 6030014 2025-03-18 23:52:09.344 2025-03-18 23:52:09.344 900 TIP 434646 636 \N \N 6030019 2025-03-18 23:53:55.974 2025-03-18 23:53:55.974 0 FEE 434680 2437 \N \N 6030026 2025-03-18 23:55:56.304 2025-03-18 23:55:56.304 0 FEE 434684 1576 \N \N 6030028 2025-03-18 23:56:53.834 2025-03-18 23:56:53.834 0 FEE 434682 12736 \N \N 6030078 2025-03-19 00:08:13.135 2025-03-19 00:08:13.135 1000 FEE 434691 11240 \N \N 6030112 2025-03-19 00:22:00.677 2025-03-19 00:22:00.677 1000 FEE 434696 10698 \N \N 6030115 2025-03-19 00:22:32.64 2025-03-19 00:22:32.64 2100 FEE 433851 10698 \N \N 6030116 2025-03-19 00:22:32.64 2025-03-19 00:22:32.64 18900 TIP 433851 782 \N \N 6030166 2025-03-19 00:31:38.794 2025-03-19 00:31:38.794 4000 FEE 434698 2640 \N \N 6030167 2025-03-19 00:31:38.794 2025-03-19 00:31:38.794 36000 TIP 434698 1761 \N \N 6030173 2025-03-19 00:33:18.272 2025-03-19 00:33:18.272 500 FEE 434535 17838 \N \N 6030174 2025-03-19 00:33:18.272 2025-03-19 00:33:18.272 4500 TIP 434535 18528 \N \N 6030185 2025-03-19 00:35:09.46 2025-03-19 00:35:09.46 10000 FEE 434707 17014 \N \N 6030192 2025-03-19 00:36:54.987 2025-03-19 00:36:54.987 4000 FEE 434604 13587 \N \N 6030193 2025-03-19 00:36:54.987 2025-03-19 00:36:54.987 36000 TIP 434604 21281 \N \N 6030235 2025-03-19 00:41:19.304 2025-03-19 00:41:19.304 300 FEE 434713 21389 \N \N 6030236 2025-03-19 00:41:19.304 2025-03-19 00:41:19.304 2700 TIP 434713 5057 \N \N 6030289 2025-03-19 00:44:16.863 2025-03-19 00:44:16.863 2100 FEE 434642 16789 \N \N 6030290 2025-03-19 00:44:16.863 2025-03-19 00:44:16.863 18900 TIP 434642 18865 \N \N 6030294 2025-03-19 00:46:29.779 2025-03-19 00:46:29.779 0 FEE 434718 1585 \N \N 6030295 2025-03-19 00:46:44.658 2025-03-19 00:46:44.658 12800 FEE 433724 21339 \N \N 6030296 2025-03-19 00:46:44.658 2025-03-19 00:46:44.658 115200 TIP 433724 5036 \N \N 6030301 2025-03-19 00:49:08.823 2025-03-19 00:49:08.823 1000 FEE 434721 15556 \N \N 6030309 2025-03-19 00:49:57.021 2025-03-19 00:49:57.021 100 FEE 434440 12057 \N \N 6030310 2025-03-19 00:49:57.021 2025-03-19 00:49:57.021 900 TIP 434440 6578 \N \N 6029386 2025-03-18 21:27:36.163 2025-03-18 21:27:36.163 9000 TIP 434437 12139 \N \N 6029475 2025-03-18 21:28:07.333 2025-03-18 21:28:07.333 1000 FEE 434299 17157 \N \N 6029476 2025-03-18 21:28:07.333 2025-03-18 21:28:07.333 9000 TIP 434299 618 \N \N 6029481 2025-03-18 21:28:08.208 2025-03-18 21:28:08.208 1000 FEE 434290 9421 \N \N 6029482 2025-03-18 21:28:08.208 2025-03-18 21:28:08.208 9000 TIP 434290 9529 \N \N 6029489 2025-03-18 21:28:10.907 2025-03-18 21:28:10.907 1000 FEE 434281 20891 \N \N 6029490 2025-03-18 21:28:10.907 2025-03-18 21:28:10.907 9000 TIP 434281 20680 \N \N 6029507 2025-03-18 21:29:24.001 2025-03-18 21:29:24.001 2100 FEE 434577 20782 \N \N 6029508 2025-03-18 21:29:24.001 2025-03-18 21:29:24.001 18900 TIP 434577 15521 \N \N 6029521 2025-03-18 21:38:08.293 2025-03-18 21:38:08.293 1000 FEE 434613 1836 \N \N 6029530 2025-03-18 21:39:19.666 2025-03-18 21:39:19.666 0 FEE 434613 21228 \N \N 6029559 2025-03-18 21:51:10.513 2025-03-18 21:51:10.513 2100 FEE 434440 675 \N \N 6029560 2025-03-18 21:51:10.513 2025-03-18 21:51:10.513 18900 TIP 434440 649 \N \N 6029577 2025-03-18 21:55:20.363 2025-03-18 21:55:20.363 1000 FEE 434623 1983 \N \N 6029587 2025-03-18 21:57:56.296 2025-03-18 21:57:56.296 100000 FEE 434626 20657 \N \N 6029594 2025-03-18 21:58:39.136 2025-03-18 21:58:39.136 100000 FEE 434627 20623 \N \N 6029595 2025-03-18 21:58:42.672 2025-03-18 21:58:42.672 1000 FEE 434628 732 \N \N 6029621 2025-03-18 22:02:52.038 2025-03-18 22:02:52.038 1000 FEE 434405 17797 \N \N 6029622 2025-03-18 22:02:52.038 2025-03-18 22:02:52.038 9000 TIP 434405 9705 \N \N 6029628 2025-03-18 22:04:14.937 2025-03-18 22:04:14.937 100000 FEE 434632 9339 \N \N 6029629 2025-03-18 22:04:15.524 2025-03-18 22:04:15.524 1000 FEE 434633 981 \N \N 6029642 2025-03-18 22:09:17.796 2025-03-18 22:09:17.796 1000 FEE 434635 769 \N \N 6029643 2025-03-18 22:10:12.958 2025-03-18 22:10:12.958 1000 FEE 434636 13162 \N \N 6029648 2025-03-18 22:11:57.738 2025-03-18 22:11:57.738 3000 FEE 434440 1094 \N \N 6029649 2025-03-18 22:11:57.738 2025-03-18 22:11:57.738 27000 TIP 434440 21829 \N \N 6029710 2025-03-18 22:31:49.885 2025-03-18 22:31:49.885 2100 FEE 434535 19463 \N \N 6029711 2025-03-18 22:31:49.885 2025-03-18 22:31:49.885 18900 TIP 434535 4027 \N \N 6029718 2025-03-18 22:31:52.548 2025-03-18 22:31:52.548 2100 FEE 434396 21485 \N \N 6029719 2025-03-18 22:31:52.548 2025-03-18 22:31:52.548 18900 TIP 434396 750 \N \N 6029736 2025-03-18 22:31:58.774 2025-03-18 22:31:58.774 2100 FEE 433878 10490 \N \N 6029737 2025-03-18 22:31:58.774 2025-03-18 22:31:58.774 18900 TIP 433878 20987 \N \N 6029753 2025-03-18 22:37:22.722 2025-03-18 22:37:22.722 100000 FEE 434647 13854 \N \N 6029762 2025-03-18 22:38:07.449 2025-03-18 22:38:07.449 1000 FEE 434627 2098 \N \N 6029763 2025-03-18 22:38:07.449 2025-03-18 22:38:07.449 9000 TIP 434627 12656 \N \N 6029796 2025-03-18 22:43:13.476 2025-03-18 22:43:13.476 400 FEE 434319 20849 \N \N 6029797 2025-03-18 22:43:13.476 2025-03-18 22:43:13.476 3600 TIP 434319 21037 \N \N 6029811 2025-03-18 22:48:09.713 2025-03-18 22:48:09.713 1000 FEE 434656 9169 \N \N 6029813 2025-03-18 22:48:55.919 2025-03-18 22:48:55.919 1000 FEE 434657 7827 \N \N 6029825 2025-03-18 22:54:53.905 2025-03-18 22:54:53.905 3200 FEE 433943 21383 \N \N 6029826 2025-03-18 22:54:53.905 2025-03-18 22:54:53.905 28800 TIP 433943 16350 \N \N 6029861 2025-03-18 23:02:55.043 2025-03-18 23:02:55.043 2100 FEE 434660 17221 \N \N 6029862 2025-03-18 23:02:55.043 2025-03-18 23:02:55.043 18900 TIP 434660 17221 \N \N 6029889 2025-03-18 23:12:00.353 2025-03-18 23:12:00.353 1000 FEE 434671 13249 \N \N 6029924 2025-03-18 23:27:22.439 2025-03-18 23:27:22.439 2100 FEE 434560 964 \N \N 6029925 2025-03-18 23:27:22.439 2025-03-18 23:27:22.439 18900 TIP 434560 20657 \N \N 6029926 2025-03-18 23:27:27.949 2025-03-18 23:27:27.949 2100 FEE 434674 9450 \N \N 6029927 2025-03-18 23:27:27.949 2025-03-18 23:27:27.949 18900 TIP 434674 2176 \N \N 6029969 2025-03-18 23:45:53.777 2025-03-18 23:45:53.777 1000 FEE 434678 780 \N \N 6030020 2025-03-18 23:54:08.402 2025-03-18 23:54:08.402 800 FEE 434385 798 \N \N 6030021 2025-03-18 23:54:08.402 2025-03-18 23:54:08.402 7200 TIP 434385 11145 \N \N 6030080 2025-03-19 00:08:29.337 2025-03-19 00:08:29.337 0 FEE 434688 21145 \N \N 6030121 2025-03-19 00:23:37.495 2025-03-19 00:23:37.495 10000 FEE 434698 4173 \N \N 6030134 2025-03-19 00:27:43.304 2025-03-19 00:27:43.304 800 FEE 434577 9552 \N \N 6030135 2025-03-19 00:27:43.304 2025-03-19 00:27:43.304 7200 TIP 434577 19821 \N \N 6030178 2025-03-19 00:34:07.664 2025-03-19 00:34:07.664 800 FEE 434488 20606 \N \N 6030179 2025-03-19 00:34:07.664 2025-03-19 00:34:07.664 7200 TIP 434488 720 \N \N 6030182 2025-03-19 00:34:46.619 2025-03-19 00:34:46.619 42100 FEE 432920 16250 \N \N 6030183 2025-03-19 00:34:46.619 2025-03-19 00:34:46.619 378900 TIP 432920 21514 \N \N 6030209 2025-03-19 00:39:40.029 2025-03-19 00:39:40.029 1000 FEE 434713 8287 \N \N 6030216 2025-03-19 00:41:04.106 2025-03-19 00:41:04.106 3000 FEE 430498 646 \N \N 6030217 2025-03-19 00:41:04.106 2025-03-19 00:41:04.106 27000 TIP 430498 16267 \N \N 6030247 2025-03-19 00:43:11.566 2025-03-19 00:43:11.566 2100 FEE 434535 1585 \N \N 6030248 2025-03-19 00:43:11.566 2025-03-19 00:43:11.566 18900 TIP 434535 1468 \N \N 6030272 2025-03-19 00:43:25.749 2025-03-19 00:43:25.749 2100 FEE 434577 20073 \N \N 6030273 2025-03-19 00:43:25.749 2025-03-19 00:43:25.749 18900 TIP 434577 1515 \N \N 6030276 2025-03-19 00:43:28.386 2025-03-19 00:43:28.386 2100 FEE 434619 21710 \N \N 6030277 2025-03-19 00:43:28.386 2025-03-19 00:43:28.386 18900 TIP 434619 16296 \N \N 6030287 2025-03-19 00:44:16.176 2025-03-19 00:44:16.176 2100 FEE 434424 21501 \N \N 6030288 2025-03-19 00:44:16.176 2025-03-19 00:44:16.176 18900 TIP 434424 21416 \N \N 6030305 2025-03-19 00:49:19.097 2025-03-19 00:49:19.097 21000 FEE 434722 5085 \N \N 6030317 2025-03-19 00:49:59.201 2025-03-19 00:49:59.201 100 FEE 434440 14260 \N \N 6030318 2025-03-19 00:49:59.201 2025-03-19 00:49:59.201 900 TIP 434440 13365 \N \N 6030335 2025-03-19 00:52:22.805 2025-03-19 00:52:22.805 5000 FEE 434715 17011 \N \N 6030336 2025-03-19 00:52:22.805 2025-03-19 00:52:22.805 45000 TIP 434715 21332 \N \N 6030337 2025-03-19 00:52:33.77 2025-03-19 00:52:33.77 0 FEE 434724 889 \N \N 6030352 2025-03-19 00:54:51.659 2025-03-19 00:54:51.659 4000 FEE 434155 16193 \N \N 6030353 2025-03-19 00:54:51.659 2025-03-19 00:54:51.659 36000 TIP 434155 13365 \N \N 6030355 2025-03-19 00:55:11.461 2025-03-19 00:55:11.461 0 FEE 434718 16704 \N \N 6030387 2025-03-19 01:01:43.41 2025-03-19 01:01:43.41 2100 FEE 434723 1411 \N \N 6030388 2025-03-19 01:01:43.41 2025-03-19 01:01:43.41 18900 TIP 434723 2361 \N \N 6030390 2025-03-19 01:02:32.968 2025-03-19 01:02:32.968 2100 FEE 434730 654 \N \N 6030391 2025-03-19 01:02:32.968 2025-03-19 01:02:32.968 18900 TIP 434730 13177 \N \N 6030427 2025-03-19 01:10:23.297 2025-03-19 01:10:23.297 10000 FEE 433828 10608 \N \N 6030428 2025-03-19 01:10:23.297 2025-03-19 01:10:23.297 90000 TIP 433828 652 \N \N 6030439 2025-03-19 01:13:13.225 2025-03-19 01:13:13.225 10000 FEE 433943 15239 \N \N 6030440 2025-03-19 01:13:13.225 2025-03-19 01:13:13.225 90000 TIP 433943 12188 \N \N 6030442 2025-03-19 01:15:02.487 2025-03-19 01:15:02.487 1000 FEE 434748 2596 \N \N 6030448 2025-03-19 01:18:00.569 2025-03-19 01:18:00.569 1000 FEE 434749 18393 \N \N 6030484 2025-03-19 01:25:14.996 2025-03-19 01:25:14.996 1000 FEE 434757 10302 \N \N 6030499 2025-03-19 01:27:09.868 2025-03-19 01:27:09.868 2100 FEE 434709 4650 \N \N 6030500 2025-03-19 01:27:09.868 2025-03-19 01:27:09.868 18900 TIP 434709 13574 \N \N 6030513 2025-03-19 01:29:40.846 2025-03-19 01:29:40.846 1000 FEE 434762 14905 \N \N 6030522 2025-03-19 01:30:35.539 2025-03-19 01:30:35.539 12800 FEE 429291 14705 \N \N 6030523 2025-03-19 01:30:35.539 2025-03-19 01:30:35.539 115200 TIP 429291 16282 \N \N 6030531 2025-03-19 01:32:31.32 2025-03-19 01:32:31.32 1000 FEE 434765 21349 \N \N 6030533 2025-03-19 01:33:30.803 2025-03-19 01:33:30.803 1000 FEE 434766 17798 \N \N 6030534 2025-03-19 01:33:33.38 2025-03-19 01:33:33.38 1000 FEE 434767 12368 \N \N 6029474 2025-03-18 21:28:06.314 2025-03-18 21:28:06.314 9000 TIP 434301 17817 \N \N 6029495 2025-03-18 21:28:12.936 2025-03-18 21:28:12.936 1000 FEE 434265 20956 \N \N 6029496 2025-03-18 21:28:12.936 2025-03-18 21:28:12.936 9000 TIP 434265 19570 \N \N 6029499 2025-03-18 21:28:13.471 2025-03-18 21:28:13.471 1000 FEE 434263 17209 \N \N 6029500 2025-03-18 21:28:13.471 2025-03-18 21:28:13.471 9000 TIP 434263 19527 \N \N 6029504 2025-03-18 21:28:30.934 2025-03-18 21:28:30.934 1000 FEE 434609 20713 \N \N 6029506 2025-03-18 21:29:19.748 2025-03-18 21:29:19.748 1000 FEE 434610 10063 \N \N 6029518 2025-03-18 21:37:11.673 2025-03-18 21:37:11.673 1000 FEE 434611 3544 \N \N 6029522 2025-03-18 21:38:08.89 2025-03-18 21:38:08.89 1000 FEE 434614 19821 \N \N 6029554 2025-03-18 21:49:44.23 2025-03-18 21:49:44.23 3000 FEE 434609 20904 \N \N 6029555 2025-03-18 21:49:44.23 2025-03-18 21:49:44.23 27000 TIP 434609 20225 \N \N 6029611 2025-03-18 22:00:35.501 2025-03-18 22:00:35.501 1000 FEE 434629 20614 \N \N 6029617 2025-03-18 22:02:27.61 2025-03-18 22:02:27.61 1000 FEE 434512 5728 \N \N 6029618 2025-03-18 22:02:27.61 2025-03-18 22:02:27.61 9000 TIP 434512 1772 \N \N 6029623 2025-03-18 22:02:57.393 2025-03-18 22:02:57.393 1000 FEE 434589 8045 \N \N 6029624 2025-03-18 22:02:57.393 2025-03-18 22:02:57.393 9000 TIP 434589 13987 \N \N 6029637 2025-03-18 22:07:02.621 2025-03-18 22:07:02.621 1000 FEE 433828 13042 \N \N 6029638 2025-03-18 22:07:02.621 2025-03-18 22:07:02.621 9000 TIP 433828 21688 \N \N 6029651 2025-03-18 22:12:25.218 2025-03-18 22:12:25.218 10000 FEE 434637 21148 \N \N 6029661 2025-03-18 22:16:07.82 2025-03-18 22:16:07.82 3000 FEE 433844 20826 \N \N 6029662 2025-03-18 22:16:07.82 2025-03-18 22:16:07.82 27000 TIP 433844 20710 \N \N 6029674 2025-03-18 22:18:58.518 2025-03-18 22:18:58.518 1000 FEE 433943 8796 \N \N 6029675 2025-03-18 22:18:58.518 2025-03-18 22:18:58.518 9000 TIP 433943 5129 \N \N 6029694 2025-03-18 22:27:34.815 2025-03-18 22:27:34.815 0 FEE 434640 16230 \N \N 6029702 2025-03-18 22:31:47.127 2025-03-18 22:31:47.127 2100 FEE 434498 20187 \N \N 6029703 2025-03-18 22:31:47.127 2025-03-18 22:31:47.127 18900 TIP 434498 732 \N \N 6029706 2025-03-18 22:31:48.426 2025-03-18 22:31:48.426 2100 FEE 434285 8472 \N \N 6029707 2025-03-18 22:31:48.426 2025-03-18 22:31:48.426 18900 TIP 434285 21422 \N \N 6029716 2025-03-18 22:31:51.674 2025-03-18 22:31:51.674 2100 FEE 434385 3990 \N \N 6029717 2025-03-18 22:31:51.674 2025-03-18 22:31:51.674 18900 TIP 434385 5865 \N \N 6029720 2025-03-18 22:31:52.967 2025-03-18 22:31:52.967 2100 FEE 434488 6148 \N \N 6029721 2025-03-18 22:31:52.967 2025-03-18 22:31:52.967 18900 TIP 434488 10302 \N \N 6029726 2025-03-18 22:31:55.058 2025-03-18 22:31:55.058 2100 FEE 433740 726 \N \N 6029727 2025-03-18 22:31:55.058 2025-03-18 22:31:55.058 18900 TIP 433740 20715 \N \N 6029756 2025-03-18 22:37:54.036 2025-03-18 22:37:54.036 1000 FEE 434627 13763 \N \N 6029757 2025-03-18 22:37:54.036 2025-03-18 22:37:54.036 9000 TIP 434627 828 \N \N 6029766 2025-03-18 22:38:07.83 2025-03-18 22:38:07.83 1000 FEE 434627 2952 \N \N 6029767 2025-03-18 22:38:07.83 2025-03-18 22:38:07.83 9000 TIP 434627 1618 \N \N 6029792 2025-03-18 22:42:15.581 2025-03-18 22:42:15.581 1000 FEE 434653 16816 \N \N 6029809 2025-03-18 22:47:09.437 2025-03-18 22:47:09.437 0 FEE 434650 9352 \N \N 6029817 2025-03-18 22:51:29.059 2025-03-18 22:51:29.059 1000 FEE 434658 21539 \N \N 6029834 2025-03-18 22:58:36.571 2025-03-18 22:58:36.571 1000 FEE 434662 17570 \N \N 6029873 2025-03-18 23:07:03.052 2025-03-18 23:07:03.052 2100 FEE 434636 18270 \N \N 6029874 2025-03-18 23:07:03.052 2025-03-18 23:07:03.052 18900 TIP 434636 17713 \N \N 6029896 2025-03-18 23:13:41.724 2025-03-18 23:13:41.724 1000 FEE 434672 669 \N \N 6029921 2025-03-18 23:27:04.157 2025-03-18 23:27:04.157 2100 FEE 434665 21389 \N \N 6029922 2025-03-18 23:27:04.157 2025-03-18 23:27:04.157 18900 TIP 434665 2961 \N \N 6029981 2025-03-18 23:50:14.057 2025-03-18 23:50:14.057 1000 FEE 434680 5597 \N \N 6029999 2025-03-18 23:52:04.36 2025-03-18 23:52:04.36 100 FEE 434642 889 \N \N 6030000 2025-03-18 23:52:04.36 2025-03-18 23:52:04.36 900 TIP 434642 12774 \N \N 6030011 2025-03-18 23:52:08.873 2025-03-18 23:52:08.873 100 FEE 434646 6137 \N \N 6030012 2025-03-18 23:52:08.873 2025-03-18 23:52:08.873 900 TIP 434646 10096 \N \N 6030023 2025-03-18 23:54:48.796 2025-03-18 23:54:48.796 1000 FEE 434684 1618 \N \N 6030032 2025-03-18 23:58:56.464 2025-03-18 23:58:56.464 500 FEE 434651 10433 \N \N 6030033 2025-03-18 23:58:56.464 2025-03-18 23:58:56.464 4500 TIP 434651 768 \N \N 6030050 2025-03-19 00:01:02.101 2025-03-19 00:01:02.101 5000 FEE 433828 1495 \N \N 6030051 2025-03-19 00:01:02.101 2025-03-19 00:01:02.101 45000 TIP 433828 10591 \N \N 6029524 2025-03-18 21:38:38.02 2025-03-18 21:38:38.02 0 FEE 434613 805 \N \N 6029525 2025-03-18 21:38:40.629 2025-03-18 21:38:40.629 1000 FEE 434611 718 \N \N 6029526 2025-03-18 21:38:40.629 2025-03-18 21:38:40.629 9000 TIP 434611 7960 \N \N 6029531 2025-03-18 21:39:46.492 2025-03-18 21:39:46.492 1000 FEE 434616 19531 \N \N 6029566 2025-03-18 21:52:22.721 2025-03-18 21:52:22.721 2100 FEE 433943 21119 \N \N 6029567 2025-03-18 21:52:22.721 2025-03-18 21:52:22.721 18900 TIP 433943 15196 \N \N 6029574 2025-03-18 21:54:46.174 2025-03-18 21:54:46.174 2100 FEE 434619 1130 \N \N 6029575 2025-03-18 21:54:46.174 2025-03-18 21:54:46.174 18900 TIP 434619 9331 \N \N 6029586 2025-03-18 21:57:53.923 2025-03-18 21:57:53.923 0 FEE 434625 19469 \N \N 6029598 2025-03-18 21:58:52.706 2025-03-18 21:58:52.706 2100 FEE 434622 17212 \N \N 6029599 2025-03-18 21:58:52.706 2025-03-18 21:58:52.706 18900 TIP 434622 8059 \N \N 6029605 2025-03-18 21:59:15.68 2025-03-18 21:59:15.68 1000 FEE 434580 13467 \N \N 6029606 2025-03-18 21:59:15.68 2025-03-18 21:59:15.68 9000 TIP 434580 11523 \N \N 6029654 2025-03-18 22:12:47.506 2025-03-18 22:12:47.506 2100 FEE 434457 21480 \N \N 6029655 2025-03-18 22:12:47.506 2025-03-18 22:12:47.506 18900 TIP 434457 2609 \N \N 6029684 2025-03-18 22:21:43.693 2025-03-18 22:21:43.693 200 FEE 434313 5057 \N \N 6029685 2025-03-18 22:21:43.693 2025-03-18 22:21:43.693 1800 TIP 434313 683 \N \N 6029714 2025-03-18 22:31:50.933 2025-03-18 22:31:50.933 2100 FEE 434278 5904 \N \N 6029715 2025-03-18 22:31:50.933 2025-03-18 22:31:50.933 18900 TIP 434278 626 \N \N 6029752 2025-03-18 22:37:18.851 2025-03-18 22:37:18.851 210000 FEE 434646 12774 \N \N 6029777 2025-03-18 22:40:59.277 2025-03-18 22:40:59.277 1000 FEE 434627 18500 \N \N 6029778 2025-03-18 22:40:59.277 2025-03-18 22:40:59.277 9000 TIP 434627 8037 \N \N 6029786 2025-03-18 22:41:18.168 2025-03-18 22:41:18.168 1000 FEE 434652 7903 \N \N 6029789 2025-03-18 22:41:34.531 2025-03-18 22:41:34.531 2100 FEE 433828 21184 \N \N 6029790 2025-03-18 22:41:34.531 2025-03-18 22:41:34.531 18900 TIP 433828 989 \N \N 6029823 2025-03-18 22:54:35.559 2025-03-18 22:54:35.559 2100 FEE 434488 15978 \N \N 6029824 2025-03-18 22:54:35.559 2025-03-18 22:54:35.559 18900 TIP 434488 10611 \N \N 6029835 2025-03-18 22:58:55.61 2025-03-18 22:58:55.61 200 FEE 434371 13169 \N \N 6029836 2025-03-18 22:58:55.61 2025-03-18 22:58:55.61 1800 TIP 434371 10986 \N \N 6029841 2025-03-18 23:00:20.163 2025-03-18 23:00:20.163 2100 FEE 434642 21051 \N \N 6029842 2025-03-18 23:00:20.163 2025-03-18 23:00:20.163 18900 TIP 434642 6030 \N \N 6029845 2025-03-18 23:00:53.993 2025-03-18 23:00:53.993 2100 FEE 434619 21424 \N \N 6029846 2025-03-18 23:00:53.993 2025-03-18 23:00:53.993 18900 TIP 434619 7903 \N \N 6029871 2025-03-18 23:06:14.7 2025-03-18 23:06:14.7 1000 FEE 434667 9351 \N \N 6029885 2025-03-18 23:09:17.701 2025-03-18 23:09:17.701 1000 FEE 434669 21413 \N \N 6029910 2025-03-18 23:22:55.238 2025-03-18 23:22:55.238 10000 FEE 434595 6030 \N \N 6029911 2025-03-18 23:22:55.238 2025-03-18 23:22:55.238 90000 TIP 434595 10979 \N \N 6029944 2025-03-18 23:36:11.526 2025-03-18 23:36:11.526 1000 FEE 434675 12169 \N \N 6029948 2025-03-18 23:36:30.15 2025-03-18 23:36:30.15 1000 FEE 434676 9339 \N \N 6029970 2025-03-18 23:46:00.334 2025-03-18 23:46:00.334 800 FEE 434486 7674 \N \N 6029971 2025-03-18 23:46:00.334 2025-03-18 23:46:00.334 7200 TIP 434486 17172 \N \N 6029995 2025-03-18 23:52:03.747 2025-03-18 23:52:03.747 100 FEE 434642 17291 \N \N 6029996 2025-03-18 23:52:03.747 2025-03-18 23:52:03.747 900 TIP 434642 7746 \N \N 6029997 2025-03-18 23:52:04.038 2025-03-18 23:52:04.038 100 FEE 434642 5761 \N \N 6029998 2025-03-18 23:52:04.038 2025-03-18 23:52:04.038 900 TIP 434642 20922 \N \N 6030001 2025-03-18 23:52:04.957 2025-03-18 23:52:04.957 100 FEE 434642 2123 \N \N 6030002 2025-03-18 23:52:04.957 2025-03-18 23:52:04.957 900 TIP 434642 19930 \N \N 6030025 2025-03-18 23:55:37.092 2025-03-18 23:55:37.092 0 FEE 434684 15526 \N \N 6030044 2025-03-18 23:59:07.372 2025-03-18 23:59:07.372 500 FEE 434285 13100 \N \N 6030045 2025-03-18 23:59:07.372 2025-03-18 23:59:07.372 4500 TIP 434285 1039 \N \N 6030046 2025-03-18 23:59:08.106 2025-03-18 23:59:08.106 500 FEE 434285 5455 \N \N 6030047 2025-03-18 23:59:08.106 2025-03-18 23:59:08.106 4500 TIP 434285 19121 \N \N 6030067 2025-03-19 00:04:27.548 2025-03-19 00:04:27.548 5000 FEE 433688 15180 \N \N 6030068 2025-03-19 00:04:27.548 2025-03-19 00:04:27.548 45000 TIP 433688 3400 \N \N 6030074 2025-03-19 00:07:07.063 2025-03-19 00:07:07.063 1000 FEE 434688 21136 \N \N 6030090 2025-03-19 00:10:50.95 2025-03-19 00:10:50.95 0 FEE 434692 20745 \N \N 6030096 2025-03-19 00:13:42.939 2025-03-19 00:13:42.939 2100 FEE 434681 1631 \N \N 6030097 2025-03-19 00:13:42.939 2025-03-19 00:13:42.939 18900 TIP 434681 993 \N \N 6030110 2025-03-19 00:20:24.261 2025-03-19 00:20:24.261 10000 FEE 434695 19199 \N \N 6030120 2025-03-19 00:23:37.122 2025-03-19 00:23:37.122 10000 FEE 434697 8544 \N \N 6030130 2025-03-19 00:25:58.451 2025-03-19 00:25:58.451 100000 FEE 434699 1244 \N \N 6030138 2025-03-19 00:28:07.241 2025-03-19 00:28:07.241 1200 FEE 434319 10981 \N \N 6030139 2025-03-19 00:28:07.241 2025-03-19 00:28:07.241 10800 TIP 434319 848 \N \N 6030150 2025-03-19 00:30:55.589 2025-03-19 00:30:55.589 100 FEE 434685 18557 \N \N 6030151 2025-03-19 00:30:55.589 2025-03-19 00:30:55.589 900 TIP 434685 4989 \N \N 6030157 2025-03-19 00:31:02.805 2025-03-19 00:31:02.805 4000 FEE 434535 20757 \N \N 6030158 2025-03-19 00:31:02.805 2025-03-19 00:31:02.805 36000 TIP 434535 18430 \N \N 6030177 2025-03-19 00:33:53.948 2025-03-19 00:33:53.948 1000 FEE 434704 16954 \N \N 6030187 2025-03-19 00:35:42.916 2025-03-19 00:35:42.916 1000 FEE 434708 802 \N \N 6030194 2025-03-19 00:37:08.231 2025-03-19 00:37:08.231 0 FEE 434706 2010 \N \N 6030196 2025-03-19 00:37:21.17 2025-03-19 00:37:21.17 10000 FEE 434711 685 \N \N 6030204 2025-03-19 00:38:56.728 2025-03-19 00:38:56.728 100 FEE 434674 9378 \N \N 6030205 2025-03-19 00:38:56.728 2025-03-19 00:38:56.728 900 TIP 434674 7766 \N \N 6030237 2025-03-19 00:41:25.106 2025-03-19 00:41:25.106 100 FEE 434713 1173 \N \N 6030238 2025-03-19 00:41:25.106 2025-03-19 00:41:25.106 900 TIP 434713 20603 \N \N 6030260 2025-03-19 00:43:18.051 2025-03-19 00:43:18.051 2100 FEE 434440 15728 \N \N 6030261 2025-03-19 00:43:18.051 2025-03-19 00:43:18.051 18900 TIP 434440 659 \N \N 6030266 2025-03-19 00:43:21.869 2025-03-19 00:43:21.869 6400 FEE 433712 2711 \N \N 6030267 2025-03-19 00:43:21.869 2025-03-19 00:43:21.869 57600 TIP 433712 6741 \N \N 6030280 2025-03-19 00:44:05.105 2025-03-19 00:44:05.105 2100 FEE 433206 19796 \N \N 6030281 2025-03-19 00:44:05.105 2025-03-19 00:44:05.105 18900 TIP 433206 6229 \N \N 6030323 2025-03-19 00:50:07.992 2025-03-19 00:50:07.992 0 FEE 434721 1326 \N \N 6030332 2025-03-19 00:52:15.057 2025-03-19 00:52:15.057 1000 FEE 434725 11648 \N \N 6030338 2025-03-19 00:52:57.264 2025-03-19 00:52:57.264 1000 FEE 434726 14255 \N \N 6030349 2025-03-19 00:54:18.402 2025-03-19 00:54:18.402 1000 FEE 434729 3377 \N \N 6030368 2025-03-19 00:57:28.464 2025-03-19 00:57:28.464 1000 FEE 434731 16193 \N \N 6030369 2025-03-19 00:57:39.308 2025-03-19 00:57:39.308 0 FEE 434730 3656 \N \N 6030373 2025-03-19 00:59:00.31 2025-03-19 00:59:00.31 1000 FEE 434734 19735 \N \N 6030374 2025-03-19 00:59:02.912 2025-03-19 00:59:02.912 1100 FEE 434434 12188 \N \N 6030375 2025-03-19 00:59:02.912 2025-03-19 00:59:02.912 9900 TIP 434434 1447 \N \N 6030403 2025-03-19 01:05:30.782 2025-03-19 01:05:30.782 6400 FEE 433735 699 \N \N 6030404 2025-03-19 01:05:30.782 2025-03-19 01:05:30.782 57600 TIP 433735 13399 \N \N 6030415 2025-03-19 01:08:07.138 2025-03-19 01:08:07.138 1000 FEE 434742 21518 \N \N 6030423 2025-03-19 01:09:15.339 2025-03-19 01:09:15.339 1000 FEE 434744 19527 \N \N 6029542 2025-03-18 21:45:33.825 2025-03-18 21:45:33.825 10000 FEE 434615 1483 \N \N 6029543 2025-03-18 21:45:33.825 2025-03-18 21:45:33.825 90000 TIP 434615 3417 \N \N 6029568 2025-03-18 21:52:56.38 2025-03-18 21:52:56.38 900 FEE 434285 16284 \N \N 6029569 2025-03-18 21:52:56.38 2025-03-18 21:52:56.38 8100 TIP 434285 21798 \N \N 6029578 2025-03-18 21:55:45.518 2025-03-18 21:55:45.518 10000 FEE 434610 21672 \N \N 6029579 2025-03-18 21:55:45.518 2025-03-18 21:55:45.518 90000 TIP 434610 13365 \N \N 6029582 2025-03-18 21:56:06.475 2025-03-18 21:56:06.475 1000 FEE 434624 11263 \N \N 6029608 2025-03-18 21:59:24.12 2025-03-18 21:59:24.12 1000 FEE 434575 16336 \N \N 6029609 2025-03-18 21:59:24.12 2025-03-18 21:59:24.12 9000 TIP 434575 959 \N \N 6029658 2025-03-18 22:14:59.639 2025-03-18 22:14:59.639 1000 FEE 190861 13987 \N \N 6029659 2025-03-18 22:14:59.639 2025-03-18 22:14:59.639 9000 TIP 190861 16348 \N \N 6029668 2025-03-18 22:18:57.365 2025-03-18 22:18:57.365 1000 FEE 433943 1617 \N \N 6029669 2025-03-18 22:18:57.365 2025-03-18 22:18:57.365 9000 TIP 433943 21051 \N \N 6029672 2025-03-18 22:18:58.328 2025-03-18 22:18:58.328 1000 FEE 433943 20280 \N \N 6029673 2025-03-18 22:18:58.328 2025-03-18 22:18:58.328 9000 TIP 433943 17042 \N \N 6029734 2025-03-18 22:31:58.175 2025-03-18 22:31:58.175 2100 FEE 434500 10302 \N \N 6029735 2025-03-18 22:31:58.175 2025-03-18 22:31:58.175 18900 TIP 434500 8535 \N \N 6029745 2025-03-18 22:34:06.457 2025-03-18 22:34:06.457 1000 FEE 434643 4984 \N \N 6029760 2025-03-18 22:38:07.272 2025-03-18 22:38:07.272 1000 FEE 434627 1609 \N \N 6029761 2025-03-18 22:38:07.272 2025-03-18 22:38:07.272 9000 TIP 434627 17157 \N \N 6029769 2025-03-18 22:38:26.394 2025-03-18 22:38:26.394 1000 FEE 434648 10283 \N \N 6035751 2025-03-19 10:03:21.366 2025-03-19 10:03:21.366 20700 TIP 435399 19333 \N \N 6035799 2025-03-19 10:09:46.635 2025-03-19 10:09:46.635 1000 FEE 435407 20190 \N \N 6035800 2025-03-19 10:09:48.442 2025-03-19 10:09:48.442 100 FEE 435138 12946 \N \N 6035801 2025-03-19 10:09:48.442 2025-03-19 10:09:48.442 900 TIP 435138 20481 \N \N 6035809 2025-03-19 10:10:42.769 2025-03-19 10:10:42.769 1000 FEE 435408 8176 \N \N 6035880 2025-03-19 10:19:03.172 2025-03-19 10:19:03.172 1100 FEE 435411 16177 \N \N 6035881 2025-03-19 10:19:03.172 2025-03-19 10:19:03.172 9900 TIP 435411 20596 \N \N 6035882 2025-03-19 10:19:03.769 2025-03-19 10:19:03.769 1100 FEE 435411 19199 \N \N 6035883 2025-03-19 10:19:03.769 2025-03-19 10:19:03.769 9900 TIP 435411 20642 \N \N 6035884 2025-03-19 10:19:04.309 2025-03-19 10:19:04.309 1100 FEE 435411 1000 \N \N 6035885 2025-03-19 10:19:04.309 2025-03-19 10:19:04.309 9900 TIP 435411 20854 \N \N 6035896 2025-03-19 10:19:25.648 2025-03-19 10:19:25.648 100 FEE 435375 21824 \N \N 6035897 2025-03-19 10:19:25.648 2025-03-19 10:19:25.648 900 TIP 435375 9906 \N \N 6035905 2025-03-19 10:20:05.129 2025-03-19 10:20:05.129 2100 FEE 435310 20599 \N \N 6035906 2025-03-19 10:20:05.129 2025-03-19 10:20:05.129 18900 TIP 435310 2724 \N \N 6035926 2025-03-19 10:24:35.999 2025-03-19 10:24:35.999 2100 FEE 435217 8287 \N \N 6035927 2025-03-19 10:24:35.999 2025-03-19 10:24:35.999 18900 TIP 435217 12911 \N \N 6035947 2025-03-19 10:27:30.101 2025-03-19 10:27:30.101 1000 FEE 435431 1761 \N \N 6035978 2025-03-19 10:30:11.916 2025-03-19 10:30:11.916 6400 FEE 435348 10986 \N \N 6035979 2025-03-19 10:30:11.916 2025-03-19 10:30:11.916 57600 TIP 435348 21131 \N \N 6035983 2025-03-19 10:30:23.307 2025-03-19 10:30:23.307 10000 FEE 435261 9335 \N \N 6035984 2025-03-19 10:30:23.307 2025-03-19 10:30:23.307 90000 TIP 435261 1000 \N \N 6035998 2025-03-19 10:32:35.228 2025-03-19 10:32:35.228 100 FEE 435183 20998 \N \N 6035999 2025-03-19 10:32:35.228 2025-03-19 10:32:35.228 900 TIP 435183 16097 \N \N 6036000 2025-03-19 10:32:46.802 2025-03-19 10:32:46.802 3000 FEE 435217 14260 \N \N 6036001 2025-03-19 10:32:46.802 2025-03-19 10:32:46.802 27000 TIP 435217 21547 \N \N 6036030 2025-03-19 10:36:54.704 2025-03-19 10:36:54.704 100 FEE 435180 20599 \N \N 6036031 2025-03-19 10:36:54.704 2025-03-19 10:36:54.704 900 TIP 435180 7978 \N \N 6036044 2025-03-19 10:37:16.631 2025-03-19 10:37:16.631 100 FEE 435132 5293 \N \N 6036045 2025-03-19 10:37:16.631 2025-03-19 10:37:16.631 900 TIP 435132 9366 \N \N 6036104 2025-03-19 10:42:20.836 2025-03-19 10:42:20.836 100 FEE 435189 17392 \N \N 6036105 2025-03-19 10:42:20.836 2025-03-19 10:42:20.836 900 TIP 435189 1394 \N \N 6036108 2025-03-19 10:43:01.231 2025-03-19 10:43:01.231 200 FEE 435446 20998 \N \N 6036109 2025-03-19 10:43:01.231 2025-03-19 10:43:01.231 1800 TIP 435446 17638 \N \N 6036121 2025-03-19 10:43:54.776 2025-03-19 10:43:54.776 1000 FEE 435217 20906 \N \N 6036122 2025-03-19 10:43:54.776 2025-03-19 10:43:54.776 9000 TIP 435217 14404 \N \N 6036147 2025-03-19 10:47:27.731 2025-03-19 10:47:27.731 4000 FEE 435231 1480 \N \N 6036148 2025-03-19 10:47:27.731 2025-03-19 10:47:27.731 36000 TIP 435231 20577 \N \N 6036168 2025-03-19 10:49:28.462 2025-03-19 10:49:28.462 100000 FEE 435455 7667 \N \N 6036192 2025-03-19 10:52:31.374 2025-03-19 10:52:31.374 2300 FEE 435457 9529 \N \N 6036193 2025-03-19 10:52:31.374 2025-03-19 10:52:31.374 20700 TIP 435457 17714 \N \N 6036204 2025-03-19 10:55:57.597 2025-03-19 10:55:57.597 1000 FEE 435463 5728 \N \N 6036223 2025-03-19 11:02:41.157 2025-03-19 11:02:41.157 2100 FEE 435366 12222 \N \N 6036224 2025-03-19 11:02:41.157 2025-03-19 11:02:41.157 18900 TIP 435366 21042 \N \N 6036226 2025-03-19 11:03:44.518 2025-03-19 11:03:44.518 1000 FEE 435410 2111 \N \N 6036227 2025-03-19 11:03:44.518 2025-03-19 11:03:44.518 9000 TIP 435410 1319 \N \N 6036237 2025-03-19 11:04:14.803 2025-03-19 11:04:14.803 100000 FEE 435467 1620 \N \N 6036238 2025-03-19 11:04:34.299 2025-03-19 11:04:34.299 1000 FEE 435382 14381 \N \N 6036239 2025-03-19 11:04:34.299 2025-03-19 11:04:34.299 9000 TIP 435382 12779 \N \N 6036255 2025-03-19 11:07:00.33 2025-03-19 11:07:00.33 1000 FEE 435391 652 \N \N 6036256 2025-03-19 11:07:00.33 2025-03-19 11:07:00.33 9000 TIP 435391 11018 \N \N 6036261 2025-03-19 11:08:53.256 2025-03-19 11:08:53.256 1000 FEE 435471 636 \N \N 6036295 2025-03-19 11:17:35.086 2025-03-19 11:17:35.086 1100 FEE 435231 2719 \N \N 6036296 2025-03-19 11:17:35.086 2025-03-19 11:17:35.086 9900 TIP 435231 4048 \N \N 6036297 2025-03-19 11:17:35.587 2025-03-19 11:17:35.587 1100 FEE 435328 19812 \N \N 6036298 2025-03-19 11:17:35.587 2025-03-19 11:17:35.587 9900 TIP 435328 1720 \N \N 6036325 2025-03-19 11:26:32.902 2025-03-19 11:26:32.902 1000 FEE 435480 642 \N \N 6036326 2025-03-19 11:26:32.902 2025-03-19 11:26:32.902 9000 TIP 435480 1761 \N \N 6036333 2025-03-19 11:26:34.516 2025-03-19 11:26:34.516 1000 FEE 435480 19403 \N \N 6036334 2025-03-19 11:26:34.516 2025-03-19 11:26:34.516 9000 TIP 435480 638 \N \N 6036367 2025-03-19 11:38:51.755 2025-03-19 11:38:51.755 4000 FEE 435402 8544 \N \N 6036368 2025-03-19 11:38:51.755 2025-03-19 11:38:51.755 36000 TIP 435402 15160 \N \N 6036374 2025-03-19 11:39:55.606 2025-03-19 11:39:55.606 21000 FEE 435488 644 \N \N 6036381 2025-03-19 11:41:43.838 2025-03-19 11:41:43.838 21000 FEE 435489 19842 \N \N 6036388 2025-03-19 11:42:34.295 2025-03-19 11:42:34.295 1000 FEE 435491 12422 \N \N 6036439 2025-03-19 11:45:48.873 2025-03-19 11:45:48.873 2300 FEE 435497 2519 \N \N 6036440 2025-03-19 11:45:48.873 2025-03-19 11:45:48.873 20700 TIP 435497 7966 \N \N 6036449 2025-03-19 11:45:51.767 2025-03-19 11:45:51.767 2300 FEE 435497 14465 \N \N 6036450 2025-03-19 11:45:51.767 2025-03-19 11:45:51.767 20700 TIP 435497 20602 \N \N 6036511 2025-03-19 11:47:34.478 2025-03-19 11:47:34.478 1000 FEE 435499 20599 \N \N 6036512 2025-03-19 11:47:34.478 2025-03-19 11:47:34.478 9000 TIP 435499 649 \N \N 6036552 2025-03-19 11:52:15.349 2025-03-19 11:52:15.349 1000 FEE 435313 21506 \N \N 6036553 2025-03-19 11:52:15.349 2025-03-19 11:52:15.349 9000 TIP 435313 9354 \N \N 6036556 2025-03-19 11:52:15.746 2025-03-19 11:52:15.746 1000 FEE 435313 16154 \N \N 6036557 2025-03-19 11:52:15.746 2025-03-19 11:52:15.746 9000 TIP 435313 18494 \N \N 6036558 2025-03-19 11:52:20.858 2025-03-19 11:52:20.858 1000 FEE 435328 10981 \N \N 6036559 2025-03-19 11:52:20.858 2025-03-19 11:52:20.858 9000 TIP 435328 20481 \N \N 6036573 2025-03-19 11:52:40.649 2025-03-19 11:52:40.649 1000 FEE 435474 5752 \N \N 6036574 2025-03-19 11:52:40.649 2025-03-19 11:52:40.649 9000 TIP 435474 20897 \N \N 6036575 2025-03-19 11:52:41.232 2025-03-19 11:52:41.232 1000 FEE 435475 989 \N \N 6036576 2025-03-19 11:52:41.232 2025-03-19 11:52:41.232 9000 TIP 435475 17991 \N \N 6036579 2025-03-19 11:52:54.636 2025-03-19 11:52:54.636 1000 FEE 435508 9167 \N \N 6036598 2025-03-19 11:53:10.205 2025-03-19 11:53:10.205 100 FEE 435505 5069 \N \N 6036599 2025-03-19 11:53:10.205 2025-03-19 11:53:10.205 900 TIP 435505 1480 \N \N 6036604 2025-03-19 11:53:13.161 2025-03-19 11:53:13.161 1100 FEE 435030 1881 \N \N 6036605 2025-03-19 11:53:13.161 2025-03-19 11:53:13.161 9900 TIP 435030 6148 \N \N 6036617 2025-03-19 11:56:01.512 2025-03-19 11:56:01.512 1000 FEE 435449 7891 \N \N 6036618 2025-03-19 11:56:01.512 2025-03-19 11:56:01.512 9000 TIP 435449 1836 \N \N 6036682 2025-03-19 12:00:34.962 2025-03-19 12:00:34.962 1000 FEE 435514 14705 \N \N 6036697 2025-03-19 12:03:17.254 2025-03-19 12:03:17.254 200 FEE 435514 12222 \N \N 6036698 2025-03-19 12:03:17.254 2025-03-19 12:03:17.254 1800 TIP 435514 7425 \N \N 6036719 2025-03-19 12:11:56.539 2025-03-19 12:11:56.539 0 FEE 435522 12261 \N \N 6036725 2025-03-19 12:12:38.71 2025-03-19 12:12:38.71 0 FEE 435520 5752 \N \N 6036726 2025-03-19 12:12:49.414 2025-03-19 12:12:49.414 1000 FEE 435523 6602 \N \N 6036733 2025-03-19 12:14:04.904 2025-03-19 12:14:04.904 1000 FEE 435525 21060 \N \N 6036735 2025-03-19 12:14:28.264 2025-03-19 12:14:28.264 200 FEE 435520 19735 \N \N 6036736 2025-03-19 12:14:28.264 2025-03-19 12:14:28.264 1800 TIP 435520 1012 \N \N 6036744 2025-03-19 12:17:44.465 2025-03-19 12:17:44.465 1000 FEE 435529 19777 \N \N 6036750 2025-03-19 12:17:47.421 2025-03-19 12:17:47.421 100 FEE 435525 2748 \N \N 6036751 2025-03-19 12:17:47.421 2025-03-19 12:17:47.421 900 TIP 435525 21571 \N \N 6035779 2025-03-19 10:04:15.828 2025-03-19 10:04:15.828 100000 FEE 435402 7580 \N \N 6035780 2025-03-19 10:04:16.404 2025-03-19 10:04:16.404 1000 FEE 435403 9426 \N \N 6035781 2025-03-19 10:04:24.695 2025-03-19 10:04:24.695 1000 FEE 435404 2639 \N \N 6035802 2025-03-19 10:09:50.537 2025-03-19 10:09:50.537 200 FEE 435382 18114 \N \N 6035803 2025-03-19 10:09:50.537 2025-03-19 10:09:50.537 1800 TIP 435382 4798 \N \N 6035821 2025-03-19 10:11:44.64 2025-03-19 10:11:44.64 3000 FEE 435261 21072 \N \N 6035822 2025-03-19 10:11:44.64 2025-03-19 10:11:44.64 27000 TIP 435261 20019 \N \N 6035824 2025-03-19 10:11:53.213 2025-03-19 10:11:53.213 0 FEE 435409 16956 \N \N 6035828 2025-03-19 10:12:20.211 2025-03-19 10:12:20.211 10000 FEE 435411 19333 \N \N 6035832 2025-03-19 10:13:12.986 2025-03-19 10:13:12.986 1000 FEE 435406 15273 \N \N 6035833 2025-03-19 10:13:12.986 2025-03-19 10:13:12.986 9000 TIP 435406 807 \N \N 6035876 2025-03-19 10:18:56.921 2025-03-19 10:18:56.921 900 FEE 435402 15386 \N \N 6035877 2025-03-19 10:18:56.921 2025-03-19 10:18:56.921 8100 TIP 435402 18743 \N \N 6035894 2025-03-19 10:19:24.507 2025-03-19 10:19:24.507 1000 FEE 435413 20782 \N \N 6035895 2025-03-19 10:19:24.507 2025-03-19 10:19:24.507 9000 TIP 435413 11678 \N \N 6035934 2025-03-19 10:25:16.647 2025-03-19 10:25:16.647 1000 FEE 435428 750 \N \N 6035941 2025-03-19 10:26:44.892 2025-03-19 10:26:44.892 8300 FEE 435425 1468 \N \N 6035942 2025-03-19 10:26:44.892 2025-03-19 10:26:44.892 74700 TIP 435425 20674 \N \N 6035981 2025-03-19 10:30:16.357 2025-03-19 10:30:16.357 100 FEE 435217 7891 \N \N 6035982 2025-03-19 10:30:16.357 2025-03-19 10:30:16.357 900 TIP 435217 700 \N \N 6035989 2025-03-19 10:31:00.739 2025-03-19 10:31:00.739 200 FEE 435430 861 \N \N 6035990 2025-03-19 10:31:00.739 2025-03-19 10:31:00.739 1800 TIP 435430 20616 \N \N 6036020 2025-03-19 10:36:53.771 2025-03-19 10:36:53.771 100 FEE 435180 21804 \N \N 6036021 2025-03-19 10:36:53.771 2025-03-19 10:36:53.771 900 TIP 435180 11144 \N \N 6036024 2025-03-19 10:36:54.147 2025-03-19 10:36:54.147 100 FEE 435180 13143 \N \N 6036025 2025-03-19 10:36:54.147 2025-03-19 10:36:54.147 900 TIP 435180 987 \N \N 6036026 2025-03-19 10:36:54.335 2025-03-19 10:36:54.335 100 FEE 435180 20812 \N \N 6036027 2025-03-19 10:36:54.335 2025-03-19 10:36:54.335 900 TIP 435180 4862 \N \N 6036028 2025-03-19 10:36:54.523 2025-03-19 10:36:54.523 100 FEE 435180 2327 \N \N 6036029 2025-03-19 10:36:54.523 2025-03-19 10:36:54.523 900 TIP 435180 9171 \N \N 6036046 2025-03-19 10:37:19.879 2025-03-19 10:37:19.879 100 FEE 434885 1424 \N \N 6036047 2025-03-19 10:37:19.879 2025-03-19 10:37:19.879 900 TIP 434885 19375 \N \N 6036082 2025-03-19 10:42:17.139 2025-03-19 10:42:17.139 100 FEE 435328 715 \N \N 6036083 2025-03-19 10:42:17.139 2025-03-19 10:42:17.139 900 TIP 435328 6268 \N \N 6036161 2025-03-19 10:48:50.145 2025-03-19 10:48:50.145 1000 FEE 435453 20970 \N \N 6036162 2025-03-19 10:48:59.07 2025-03-19 10:48:59.07 1000 FEE 435454 20179 \N \N 6036190 2025-03-19 10:52:30.728 2025-03-19 10:52:30.728 2300 FEE 435457 12870 \N \N 6036191 2025-03-19 10:52:30.728 2025-03-19 10:52:30.728 20700 TIP 435457 960 \N \N 6036199 2025-03-19 10:54:12.638 2025-03-19 10:54:12.638 1000 FEE 435458 9242 \N \N 6036200 2025-03-19 10:54:12.638 2025-03-19 10:54:12.638 9000 TIP 435458 1626 \N \N 6036222 2025-03-19 11:02:39.906 2025-03-19 11:02:39.906 1000 FEE 435466 3656 \N \N 6036253 2025-03-19 11:06:42.916 2025-03-19 11:06:42.916 1000 FEE 435295 19512 \N \N 6036254 2025-03-19 11:06:42.916 2025-03-19 11:06:42.916 9000 TIP 435295 3392 \N \N 6036265 2025-03-19 11:10:04.75 2025-03-19 11:10:04.75 1000 FEE 435472 697 \N \N 6036277 2025-03-19 11:15:29.091 2025-03-19 11:15:29.091 1000 FEE 435474 798 \N \N 6036317 2025-03-19 11:26:29.797 2025-03-19 11:26:29.797 1000 FEE 435480 14280 \N \N 6036318 2025-03-19 11:26:29.797 2025-03-19 11:26:29.797 9000 TIP 435480 17237 \N \N 6036327 2025-03-19 11:26:33.083 2025-03-19 11:26:33.083 1000 FEE 435480 2961 \N \N 6036328 2025-03-19 11:26:33.083 2025-03-19 11:26:33.083 9000 TIP 435480 1122 \N \N 6036329 2025-03-19 11:26:33.29 2025-03-19 11:26:33.29 1000 FEE 435480 2670 \N \N 6036330 2025-03-19 11:26:33.29 2025-03-19 11:26:33.29 9000 TIP 435480 21212 \N \N 6036335 2025-03-19 11:26:35.504 2025-03-19 11:26:35.504 1000 FEE 435480 4062 \N \N 6036336 2025-03-19 11:26:35.504 2025-03-19 11:26:35.504 9000 TIP 435480 17030 \N \N 6036339 2025-03-19 11:28:44.192 2025-03-19 11:28:44.192 1000 FEE 435481 21391 \N \N 6036359 2025-03-19 11:37:29.345 2025-03-19 11:37:29.345 1000 FEE 435487 21214 \N \N 6036393 2025-03-19 11:43:24.515 2025-03-19 11:43:24.515 1000 FEE 435493 10283 \N \N 6036404 2025-03-19 11:45:09.94 2025-03-19 11:45:09.94 210000 FEE 435497 1959 \N \N 6036405 2025-03-19 11:45:10.507 2025-03-19 11:45:10.507 1000 FEE 435498 21520 \N \N 6036411 2025-03-19 11:45:34.025 2025-03-19 11:45:34.025 2300 FEE 435497 1046 \N \N 6036412 2025-03-19 11:45:34.025 2025-03-19 11:45:34.025 20700 TIP 435497 3400 \N \N 6036431 2025-03-19 11:45:46.551 2025-03-19 11:45:46.551 2300 FEE 435497 623 \N \N 6035922 2025-03-19 10:23:55.377 2025-03-19 10:23:55.377 90000 TIP 435359 20647 \N \N 6035935 2025-03-19 10:25:31.671 2025-03-19 10:25:31.671 1000 FEE 435429 21033 \N \N 6035954 2025-03-19 10:27:37.75 2025-03-19 10:27:37.75 27000 FEE 435427 21247 \N \N 6035955 2025-03-19 10:27:37.75 2025-03-19 10:27:37.75 243000 TIP 435427 13365 \N \N 6035987 2025-03-19 10:30:50.648 2025-03-19 10:30:50.648 200 FEE 435426 3377 \N \N 6035988 2025-03-19 10:30:50.648 2025-03-19 10:30:50.648 1800 TIP 435426 17171 \N \N 6035996 2025-03-19 10:32:24.346 2025-03-19 10:32:24.346 100000 FEE 435437 21829 \N \N 6036034 2025-03-19 10:36:55.111 2025-03-19 10:36:55.111 100 FEE 435180 20433 \N \N 6036035 2025-03-19 10:36:55.111 2025-03-19 10:36:55.111 900 TIP 435180 2123 \N \N 6036041 2025-03-19 10:37:11.379 2025-03-19 10:37:11.379 2100 FEE 435314 19531 \N \N 6036042 2025-03-19 10:37:11.379 2025-03-19 10:37:11.379 18900 TIP 435314 21178 \N \N 6036048 2025-03-19 10:37:20.083 2025-03-19 10:37:20.083 100 FEE 434885 10291 \N \N 6036049 2025-03-19 10:37:20.083 2025-03-19 10:37:20.083 900 TIP 434885 17541 \N \N 6036057 2025-03-19 10:38:13.795 2025-03-19 10:38:13.795 1000 FEE 434139 1801 \N \N 6036058 2025-03-19 10:38:13.795 2025-03-19 10:38:13.795 9000 TIP 434139 17103 \N \N 6036068 2025-03-19 10:39:10.718 2025-03-19 10:39:10.718 2100 FEE 435242 19512 \N \N 6036069 2025-03-19 10:39:10.718 2025-03-19 10:39:10.718 18900 TIP 435242 21427 \N \N 6036074 2025-03-19 10:42:05.64 2025-03-19 10:42:05.64 1000 FEE 435446 21797 \N \N 6036075 2025-03-19 10:42:08.003 2025-03-19 10:42:08.003 1000 FEE 435261 21670 \N \N 6036076 2025-03-19 10:42:08.003 2025-03-19 10:42:08.003 9000 TIP 435261 8508 \N \N 6036094 2025-03-19 10:42:19.408 2025-03-19 10:42:19.408 100 FEE 435189 656 \N \N 6036095 2025-03-19 10:42:19.408 2025-03-19 10:42:19.408 900 TIP 435189 902 \N \N 6036100 2025-03-19 10:42:20.149 2025-03-19 10:42:20.149 100 FEE 435189 859 \N \N 6036101 2025-03-19 10:42:20.149 2025-03-19 10:42:20.149 900 TIP 435189 11523 \N \N 6036118 2025-03-19 10:43:38.838 2025-03-19 10:43:38.838 1000 FEE 435448 15367 \N \N 6036119 2025-03-19 10:43:41.935 2025-03-19 10:43:41.935 1000 FEE 435240 19826 \N \N 6036120 2025-03-19 10:43:41.935 2025-03-19 10:43:41.935 9000 TIP 435240 9705 \N \N 6036159 2025-03-19 10:48:01.281 2025-03-19 10:48:01.281 21000 FEE 435452 20881 \N \N 6036163 2025-03-19 10:49:02.263 2025-03-19 10:49:02.263 1000 FEE 435377 1474 \N \N 6036164 2025-03-19 10:49:02.263 2025-03-19 10:49:02.263 9000 TIP 435377 21314 \N \N 6036176 2025-03-19 10:51:24.628 2025-03-19 10:51:24.628 100000 FEE 435457 20073 \N \N 6036181 2025-03-19 10:52:11.386 2025-03-19 10:52:11.386 2300 FEE 435453 17690 \N \N 6036182 2025-03-19 10:52:11.386 2025-03-19 10:52:11.386 20700 TIP 435453 777 \N \N 6036216 2025-03-19 11:01:16.733 2025-03-19 11:01:16.733 2100 FEE 435359 739 \N \N 6036217 2025-03-19 11:01:16.733 2025-03-19 11:01:16.733 18900 TIP 435359 9421 \N \N 6036220 2025-03-19 11:01:55.337 2025-03-19 11:01:55.337 1000 FEE 435465 2537 \N \N 6036234 2025-03-19 11:04:03.685 2025-03-19 11:04:03.685 1000 FEE 435420 20500 \N \N 6036235 2025-03-19 11:04:03.685 2025-03-19 11:04:03.685 9000 TIP 435420 10007 \N \N 6036242 2025-03-19 11:04:58.195 2025-03-19 11:04:58.195 900 FEE 435458 21239 \N \N 6036243 2025-03-19 11:04:58.195 2025-03-19 11:04:58.195 8100 TIP 435458 1425 \N \N 6036269 2025-03-19 11:11:38.797 2025-03-19 11:11:38.797 11700 FEE 435412 13921 \N \N 6036270 2025-03-19 11:11:38.797 2025-03-19 11:11:38.797 105300 TIP 435412 8459 \N \N 6036271 2025-03-19 11:12:08.017 2025-03-19 11:12:08.017 2100 FEE 435263 900 \N \N 6036272 2025-03-19 11:12:08.017 2025-03-19 11:12:08.017 18900 TIP 435263 1564 \N \N 6036279 2025-03-19 11:17:05.476 2025-03-19 11:17:05.476 10000 FEE 435475 20602 \N \N 6036289 2025-03-19 11:17:34.769 2025-03-19 11:17:34.769 1100 FEE 435261 3461 \N \N 6036290 2025-03-19 11:17:34.769 2025-03-19 11:17:34.769 9900 TIP 435261 9874 \N \N 6036293 2025-03-19 11:17:35.038 2025-03-19 11:17:35.038 1100 FEE 435261 21064 \N \N 6036294 2025-03-19 11:17:35.038 2025-03-19 11:17:35.038 9900 TIP 435261 19394 \N \N 6036301 2025-03-19 11:17:36.103 2025-03-19 11:17:36.103 1100 FEE 435328 17696 \N \N 6036302 2025-03-19 11:17:36.103 2025-03-19 11:17:36.103 9900 TIP 435328 8176 \N \N 6036354 2025-03-19 11:36:41.697 2025-03-19 11:36:41.697 1000 FEE 435485 697 \N \N 6036365 2025-03-19 11:38:47.831 2025-03-19 11:38:47.831 800 FEE 435217 12656 \N \N 6036366 2025-03-19 11:38:47.831 2025-03-19 11:38:47.831 7200 TIP 435217 1469 \N \N 6036376 2025-03-19 11:40:47.987 2025-03-19 11:40:47.987 800 FEE 435377 21356 \N \N 6036377 2025-03-19 11:40:47.987 2025-03-19 11:40:47.987 7200 TIP 435377 896 \N \N 6036384 2025-03-19 11:42:10.536 2025-03-19 11:42:10.536 1000 FEE 435490 12609 \N \N 6036390 2025-03-19 11:42:55.346 2025-03-19 11:42:55.346 800 FEE 434310 17226 \N \N 6036391 2025-03-19 11:42:55.346 2025-03-19 11:42:55.346 7200 TIP 434310 15148 \N \N 6036396 2025-03-19 11:43:57.087 2025-03-19 11:43:57.087 800 FEE 434395 15510 \N \N 6036397 2025-03-19 11:43:57.087 2025-03-19 11:43:57.087 7200 TIP 434395 1237 \N \N 6036417 2025-03-19 11:45:34.691 2025-03-19 11:45:34.691 2300 FEE 435497 15549 \N \N 6036418 2025-03-19 11:45:34.691 2025-03-19 11:45:34.691 20700 TIP 435497 20701 \N \N 6036425 2025-03-19 11:45:36.353 2025-03-19 11:45:36.353 2300 FEE 435497 684 \N \N 6036426 2025-03-19 11:45:36.353 2025-03-19 11:45:36.353 20700 TIP 435497 1806 \N \N 6036427 2025-03-19 11:45:36.769 2025-03-19 11:45:36.769 4000 FEE 435495 14465 \N \N 6036428 2025-03-19 11:45:36.769 2025-03-19 11:45:36.769 36000 TIP 435495 11165 \N \N 6036435 2025-03-19 11:45:47.78 2025-03-19 11:45:47.78 4600 FEE 435497 6360 \N \N 6036436 2025-03-19 11:45:47.78 2025-03-19 11:45:47.78 41400 TIP 435497 16839 \N \N 6036441 2025-03-19 11:45:48.929 2025-03-19 11:45:48.929 2300 FEE 435497 17455 \N \N 6036442 2025-03-19 11:45:48.929 2025-03-19 11:45:48.929 20700 TIP 435497 10944 \N \N 6036447 2025-03-19 11:45:51.534 2025-03-19 11:45:51.534 2300 FEE 435497 14280 \N \N 6036448 2025-03-19 11:45:51.534 2025-03-19 11:45:51.534 20700 TIP 435497 15060 \N \N 6036459 2025-03-19 11:45:52.612 2025-03-19 11:45:52.612 2300 FEE 435497 21518 \N \N 6036460 2025-03-19 11:45:52.612 2025-03-19 11:45:52.612 20700 TIP 435497 9921 \N \N 6036463 2025-03-19 11:45:53.01 2025-03-19 11:45:53.01 2300 FEE 435497 13055 \N \N 6036464 2025-03-19 11:45:53.01 2025-03-19 11:45:53.01 20700 TIP 435497 694 \N \N 6036469 2025-03-19 11:45:53.56 2025-03-19 11:45:53.56 2300 FEE 435497 17714 \N \N 6036470 2025-03-19 11:45:53.56 2025-03-19 11:45:53.56 20700 TIP 435497 666 \N \N 6036471 2025-03-19 11:45:53.721 2025-03-19 11:45:53.721 2300 FEE 435497 21709 \N \N 6036472 2025-03-19 11:45:53.721 2025-03-19 11:45:53.721 20700 TIP 435497 814 \N \N 6036479 2025-03-19 11:45:55.039 2025-03-19 11:45:55.039 2300 FEE 435497 20683 \N \N 6036480 2025-03-19 11:45:55.039 2025-03-19 11:45:55.039 20700 TIP 435497 8926 \N \N 6036487 2025-03-19 11:45:55.57 2025-03-19 11:45:55.57 2300 FEE 435497 1602 \N \N 6036488 2025-03-19 11:45:55.57 2025-03-19 11:45:55.57 20700 TIP 435497 14472 \N \N 6036525 2025-03-19 11:50:37.995 2025-03-19 11:50:37.995 100 FEE 435505 9655 \N \N 6036526 2025-03-19 11:50:37.995 2025-03-19 11:50:37.995 900 TIP 435505 11443 \N \N 6036548 2025-03-19 11:52:15.005 2025-03-19 11:52:15.005 1000 FEE 435313 5779 \N \N 6036549 2025-03-19 11:52:15.005 2025-03-19 11:52:15.005 9000 TIP 435313 5500 \N \N 6036092 2025-03-19 10:42:19.156 2025-03-19 10:42:19.156 100 FEE 435189 7847 \N \N 6036093 2025-03-19 10:42:19.156 2025-03-19 10:42:19.156 900 TIP 435189 642 \N \N 6036106 2025-03-19 10:42:20.959 2025-03-19 10:42:20.959 100 FEE 435189 8954 \N \N 6036107 2025-03-19 10:42:20.959 2025-03-19 10:42:20.959 900 TIP 435189 21402 \N \N 6036110 2025-03-19 10:43:07.482 2025-03-19 10:43:07.482 8300 FEE 435438 19531 \N \N 6029771 2025-03-18 22:39:53.976 2025-03-18 22:39:53.976 1000 FEE 434649 16432 \N \N 6029783 2025-03-18 22:41:10.211 2025-03-18 22:41:10.211 2100 FEE 434627 13544 \N \N 6029784 2025-03-18 22:41:10.211 2025-03-18 22:41:10.211 18900 TIP 434627 1145 \N \N 6029820 2025-03-18 22:53:15.091 2025-03-18 22:53:15.091 1000 FEE 434659 17991 \N \N 6029821 2025-03-18 22:54:13.599 2025-03-18 22:54:13.599 1000 FEE 434660 18731 \N \N 6029847 2025-03-18 23:00:56.213 2025-03-18 23:00:56.213 1000 FEE 434663 794 \N \N 6029869 2025-03-18 23:06:05.31 2025-03-18 23:06:05.31 100 FEE 434575 4292 \N \N 6029870 2025-03-18 23:06:05.31 2025-03-18 23:06:05.31 900 TIP 434575 5597 \N \N 6029876 2025-03-18 23:07:18.818 2025-03-18 23:07:18.818 1000 FEE 434668 21062 \N \N 6029882 2025-03-18 23:08:54.311 2025-03-18 23:08:54.311 10000 FEE 416239 10698 \N \N 6029883 2025-03-18 23:08:54.311 2025-03-18 23:08:54.311 90000 TIP 416239 4167 \N \N 6029931 2025-03-18 23:29:11.797 2025-03-18 23:29:11.797 500 FEE 434624 17050 \N \N 6029932 2025-03-18 23:29:11.797 2025-03-18 23:29:11.797 4500 TIP 434624 3392 \N \N 6036111 2025-03-19 10:43:07.482 2025-03-19 10:43:07.482 74700 TIP 435438 16126 \N \N 6036149 2025-03-19 10:47:28.167 2025-03-19 10:47:28.167 4000 FEE 435327 9426 \N \N 6036150 2025-03-19 10:47:28.167 2025-03-19 10:47:28.167 36000 TIP 435327 11443 \N \N 6036153 2025-03-19 10:47:42.349 2025-03-19 10:47:42.349 4000 FEE 435242 4238 \N \N 6036154 2025-03-19 10:47:42.349 2025-03-19 10:47:42.349 36000 TIP 435242 15662 \N \N 6036174 2025-03-19 10:51:10.669 2025-03-19 10:51:10.669 1000 FEE 435456 712 \N \N 6036210 2025-03-19 10:58:44.668 2025-03-19 10:58:44.668 1000 FEE 435464 13198 \N \N 6036218 2025-03-19 11:01:29.066 2025-03-19 11:01:29.066 2100 FEE 435458 620 \N \N 6036219 2025-03-19 11:01:29.066 2025-03-19 11:01:29.066 18900 TIP 435458 713 \N \N 6036228 2025-03-19 11:03:50.239 2025-03-19 11:03:50.239 100 FEE 435449 13398 \N \N 6029933 2025-03-18 23:29:13.572 2025-03-18 23:29:13.572 500 FEE 434624 14489 \N \N 6029934 2025-03-18 23:29:13.572 2025-03-18 23:29:13.572 4500 TIP 434624 11942 \N \N 6029950 2025-03-18 23:37:36.528 2025-03-18 23:37:36.528 1000 FEE 434677 5757 \N \N 6029973 2025-03-18 23:46:39.983 2025-03-18 23:46:39.983 10000 FEE 434665 3213 \N \N 6029974 2025-03-18 23:46:39.983 2025-03-18 23:46:39.983 90000 TIP 434665 14225 \N \N 6029987 2025-03-18 23:51:03.202 2025-03-18 23:51:03.202 800 FEE 434440 2640 \N \N 6029988 2025-03-18 23:51:03.202 2025-03-18 23:51:03.202 7200 TIP 434440 2176 \N \N 6029991 2025-03-18 23:51:23.668 2025-03-18 23:51:23.668 10000 FEE 434637 21639 \N \N 6029992 2025-03-18 23:51:23.668 2025-03-18 23:51:23.668 90000 TIP 434637 9350 \N \N 6030016 2025-03-18 23:52:52.675 2025-03-18 23:52:52.675 1000 FEE 434682 721 \N \N 6030036 2025-03-18 23:58:57.718 2025-03-18 23:58:57.718 500 FEE 434651 9426 \N \N 6030037 2025-03-18 23:58:57.718 2025-03-18 23:58:57.718 4500 TIP 434651 4225 \N \N 6030071 2025-03-19 00:05:58.09 2025-03-19 00:05:58.09 2100 FEE 434647 19189 \N \N 6030072 2025-03-19 00:05:58.09 2025-03-19 00:05:58.09 18900 TIP 434647 14515 \N \N 6030098 2025-03-19 00:14:09.329 2025-03-19 00:14:09.329 10000 FEE 434694 1007 \N \N 6030136 2025-03-19 00:28:07.043 2025-03-19 00:28:07.043 1200 FEE 434319 6749 \N \N 6030137 2025-03-19 00:28:07.043 2025-03-19 00:28:07.043 10800 TIP 434319 20586 \N \N 6030145 2025-03-19 00:28:15.433 2025-03-19 00:28:15.433 1000 FEE 434701 21714 \N \N 6030152 2025-03-19 00:30:58.253 2025-03-19 00:30:58.253 1000 FEE 434702 17953 \N \N 6030161 2025-03-19 00:31:07.39 2025-03-19 00:31:07.39 4000 FEE 434665 10944 \N \N 6030162 2025-03-19 00:31:07.39 2025-03-19 00:31:07.39 36000 TIP 434665 12261 \N \N 6030172 2025-03-19 00:33:17.984 2025-03-19 00:33:17.984 100000 FEE 434703 16988 \N \N 6030175 2025-03-19 00:33:29.193 2025-03-19 00:33:29.193 10000 FEE 433123 20755 \N \N 6030176 2025-03-19 00:33:29.193 2025-03-19 00:33:29.193 90000 TIP 433123 9290 \N \N 6030202 2025-03-19 00:38:46.359 2025-03-19 00:38:46.359 100 FEE 434665 6777 \N \N 6030203 2025-03-19 00:38:46.359 2025-03-19 00:38:46.359 900 TIP 434665 19303 \N \N 6030239 2025-03-19 00:41:34.836 2025-03-19 00:41:34.836 12800 FEE 433695 8459 \N \N 6030240 2025-03-19 00:41:34.836 2025-03-19 00:41:34.836 115200 TIP 433695 10056 \N \N 6030243 2025-03-19 00:43:09.765 2025-03-19 00:43:09.765 2100 FEE 434498 1447 \N \N 6030244 2025-03-19 00:43:09.765 2025-03-19 00:43:09.765 18900 TIP 434498 19581 \N \N 6030245 2025-03-19 00:43:11.417 2025-03-19 00:43:11.417 2100 FEE 433943 21408 \N \N 6030246 2025-03-19 00:43:11.417 2025-03-19 00:43:11.417 18900 TIP 433943 4802 \N \N 6030264 2025-03-19 00:43:19.276 2025-03-19 00:43:19.276 2100 FEE 433844 9758 \N \N 6030265 2025-03-19 00:43:19.276 2025-03-19 00:43:19.276 18900 TIP 433844 18219 \N \N 6030341 2025-03-19 00:53:48.278 2025-03-19 00:53:48.278 2100 FEE 434699 1825 \N \N 6030342 2025-03-19 00:53:48.278 2025-03-19 00:53:48.278 18900 TIP 434699 20205 \N \N 6030363 2025-03-19 00:55:44.855 2025-03-19 00:55:44.855 1000 FEE 434717 21339 \N \N 6030364 2025-03-19 00:55:44.855 2025-03-19 00:55:44.855 9000 TIP 434717 7418 \N \N 6030410 2025-03-19 01:07:07.376 2025-03-19 01:07:07.376 1000 FEE 434740 5499 \N \N 6030411 2025-03-19 01:07:13.12 2025-03-19 01:07:13.12 12800 FEE 433611 1615 \N \N 6030412 2025-03-19 01:07:13.12 2025-03-19 01:07:13.12 115200 TIP 433611 718 \N \N 6030458 2025-03-19 01:22:18.643 2025-03-19 01:22:18.643 100 FEE 434727 21063 \N \N 6030459 2025-03-19 01:22:18.643 2025-03-19 01:22:18.643 900 TIP 434727 21239 \N \N 6030464 2025-03-19 01:23:55.918 2025-03-19 01:23:55.918 100 FEE 434440 21620 \N \N 6030465 2025-03-19 01:23:55.918 2025-03-19 01:23:55.918 900 TIP 434440 14990 \N \N 6030491 2025-03-19 01:26:07.134 2025-03-19 01:26:07.134 1000 FEE 434758 21518 \N \N 6030548 2025-03-19 01:37:32.104 2025-03-19 01:37:32.104 1000 FEE 434724 16042 \N \N 6030549 2025-03-19 01:37:32.104 2025-03-19 01:37:32.104 9000 TIP 434724 13076 \N \N 6030554 2025-03-19 01:38:30.939 2025-03-19 01:38:30.939 1000 FEE 434771 1692 \N \N 6030555 2025-03-19 01:38:47.05 2025-03-19 01:38:47.05 0 FEE 434770 4173 \N \N 6030565 2025-03-19 01:38:59.989 2025-03-19 01:38:59.989 100 FEE 434718 641 \N \N 6030566 2025-03-19 01:38:59.989 2025-03-19 01:38:59.989 900 TIP 434718 21374 \N \N 6030579 2025-03-19 01:39:05.179 2025-03-19 01:39:05.179 100 FEE 434709 21631 \N \N 6030580 2025-03-19 01:39:05.179 2025-03-19 01:39:05.179 900 TIP 434709 8544 \N \N 6030581 2025-03-19 01:39:05.376 2025-03-19 01:39:05.376 100 FEE 434709 21666 \N \N 6030582 2025-03-19 01:39:05.376 2025-03-19 01:39:05.376 900 TIP 434709 8713 \N \N 6030592 2025-03-19 01:39:57.304 2025-03-19 01:39:57.304 100 FEE 434726 14381 \N \N 6030593 2025-03-19 01:39:57.304 2025-03-19 01:39:57.304 900 TIP 434726 14381 \N \N 6030597 2025-03-19 01:40:13.059 2025-03-19 01:40:13.059 2100 FEE 434769 5003 \N \N 6030598 2025-03-19 01:40:13.059 2025-03-19 01:40:13.059 18900 TIP 434769 5171 \N \N 6030601 2025-03-19 01:40:51.841 2025-03-19 01:40:51.841 100 FEE 434775 20619 \N \N 6030602 2025-03-19 01:40:51.841 2025-03-19 01:40:51.841 900 TIP 434775 11862 \N \N 6030632 2025-03-19 01:45:31.693 2025-03-19 01:45:31.693 2100 FEE 434748 703 \N \N 6030633 2025-03-19 01:45:31.693 2025-03-19 01:45:31.693 18900 TIP 434748 13162 \N \N 6030636 2025-03-19 01:45:41.138 2025-03-19 01:45:41.138 1000 FEE 434627 4079 \N \N 6030637 2025-03-19 01:45:41.138 2025-03-19 01:45:41.138 9000 TIP 434627 20225 \N \N 6030661 2025-03-19 01:51:10.506 2025-03-19 01:51:10.506 1000 FEE 434783 10469 \N \N 6030665 2025-03-19 01:52:38.828 2025-03-19 01:52:38.828 1100 FEE 434535 18734 \N \N 6030666 2025-03-19 01:52:38.828 2025-03-19 01:52:38.828 9900 TIP 434535 21713 \N \N 6030682 2025-03-19 01:55:23.612 2025-03-19 01:55:23.612 800 FEE 434757 15408 \N \N 6030683 2025-03-19 01:55:23.612 2025-03-19 01:55:23.612 7200 TIP 434757 21291 \N \N 6030689 2025-03-19 01:58:07.082 2025-03-19 01:58:07.082 1000 FEE 434767 1465 \N \N 6030690 2025-03-19 01:58:07.082 2025-03-19 01:58:07.082 9000 TIP 434767 19016 \N \N 6030701 2025-03-19 01:59:19.818 2025-03-19 01:59:19.818 100 FEE 434717 20756 \N \N 6030702 2025-03-19 01:59:19.818 2025-03-19 01:59:19.818 900 TIP 434717 5708 \N \N 6030719 2025-03-19 02:00:28.581 2025-03-19 02:00:28.581 2100 FEE 434685 11942 \N \N 6030720 2025-03-19 02:00:28.581 2025-03-19 02:00:28.581 18900 TIP 434685 1094 \N \N 6030724 2025-03-19 02:00:34.924 2025-03-19 02:00:34.924 10000 FEE 434792 19952 \N \N 6030729 2025-03-19 02:02:20.935 2025-03-19 02:02:20.935 1000 FEE 434793 5775 \N \N 6030751 2025-03-19 02:06:54.589 2025-03-19 02:06:54.589 1000 FEE 434797 9450 \N \N 6030752 2025-03-19 02:06:54.589 2025-03-19 02:06:54.589 9000 TIP 434797 1060 \N \N 6030769 2025-03-19 02:08:15.499 2025-03-19 02:08:15.499 1000 FEE 433978 652 \N \N 6030770 2025-03-19 02:08:15.499 2025-03-19 02:08:15.499 9000 TIP 433978 16998 \N \N 6030786 2025-03-19 02:08:28.959 2025-03-19 02:08:28.959 3200 FEE 434796 20120 \N \N 6030787 2025-03-19 02:08:28.959 2025-03-19 02:08:28.959 28800 TIP 434796 992 \N \N 6030807 2025-03-19 02:11:39.517 2025-03-19 02:11:39.517 1100 FEE 434807 2734 \N \N 6030808 2025-03-19 02:11:39.517 2025-03-19 02:11:39.517 9900 TIP 434807 20904 \N \N 6030838 2025-03-19 02:15:29.37 2025-03-19 02:15:29.37 1000 FEE 434819 10484 \N \N 6030846 2025-03-19 02:17:17.318 2025-03-19 02:17:17.318 1600 FEE 434801 8998 \N \N 6030847 2025-03-19 02:17:17.318 2025-03-19 02:17:17.318 14400 TIP 434801 16126 \N \N 6030882 2025-03-19 02:22:27.712 2025-03-19 02:22:27.712 1000 FEE 434828 9246 \N \N 6030886 2025-03-19 02:22:38.999 2025-03-19 02:22:38.999 0 FEE 434828 2206 \N \N 6030919 2025-03-19 02:26:40.816 2025-03-19 02:26:40.816 1000 FEE 434577 1472 \N \N 6030920 2025-03-19 02:26:40.816 2025-03-19 02:26:40.816 9000 TIP 434577 21263 \N \N 6030921 2025-03-19 02:27:07.856 2025-03-19 02:27:07.856 1000 FEE 434832 21571 \N \N 6030941 2025-03-19 02:32:07.648 2025-03-19 02:32:07.648 100000 FEE 434836 20799 \N \N 6030949 2025-03-19 02:32:49.057 2025-03-19 02:32:49.057 1000 FEE 434801 11275 \N \N 6030950 2025-03-19 02:32:49.057 2025-03-19 02:32:49.057 9000 TIP 434801 12965 \N \N 6030957 2025-03-19 02:33:25.915 2025-03-19 02:33:25.915 0 FEE 434833 4062 \N \N 6036157 2025-03-19 10:47:54.265 2025-03-19 10:47:54.265 4000 FEE 435284 11609 \N \N 6036158 2025-03-19 10:47:54.265 2025-03-19 10:47:54.265 36000 TIP 435284 14669 \N \N 6036165 2025-03-19 10:49:09.345 2025-03-19 10:49:09.345 1100 FEE 435437 15409 \N \N 6036166 2025-03-19 10:49:09.345 2025-03-19 10:49:09.345 9900 TIP 435437 21166 \N \N 6036177 2025-03-19 10:51:33.927 2025-03-19 10:51:33.927 1600 FEE 435314 21314 \N \N 6036178 2025-03-19 10:51:33.927 2025-03-19 10:51:33.927 14400 TIP 435314 21159 \N \N 6036185 2025-03-19 10:52:11.701 2025-03-19 10:52:11.701 2300 FEE 435453 1737 \N \N 6036186 2025-03-19 10:52:11.701 2025-03-19 10:52:11.701 20700 TIP 435453 21374 \N \N 6036195 2025-03-19 10:52:50.135 2025-03-19 10:52:50.135 0 FEE 435457 9276 \N \N 6036203 2025-03-19 10:55:25.154 2025-03-19 10:55:25.154 1000 FEE 435462 5557 \N \N 6036207 2025-03-19 10:58:14.164 2025-03-19 10:58:14.164 500 FEE 435454 13865 \N \N 6036208 2025-03-19 10:58:14.164 2025-03-19 10:58:14.164 4500 TIP 435454 12609 \N \N 6036304 2025-03-19 11:18:08.57 2025-03-19 11:18:08.57 100000 FEE 435479 10102 \N \N 6036315 2025-03-19 11:26:29.63 2025-03-19 11:26:29.63 1000 FEE 435480 16956 \N \N 6036316 2025-03-19 11:26:29.63 2025-03-19 11:26:29.63 9000 TIP 435480 21136 \N \N 6036321 2025-03-19 11:26:30.159 2025-03-19 11:26:30.159 1000 FEE 435480 21709 \N \N 6036322 2025-03-19 11:26:30.159 2025-03-19 11:26:30.159 9000 TIP 435480 16680 \N \N 6036357 2025-03-19 11:37:20.761 2025-03-19 11:37:20.761 1000 FEE 435217 7809 \N \N 6036358 2025-03-19 11:37:20.761 2025-03-19 11:37:20.761 9000 TIP 435217 10981 \N \N 6036403 2025-03-19 11:44:40.082 2025-03-19 11:44:40.082 100000 FEE 435496 15409 \N \N 6036406 2025-03-19 11:45:12.789 2025-03-19 11:45:12.789 1000 FEE 435499 16145 \N \N 6036408 2025-03-19 11:45:24.369 2025-03-19 11:45:24.369 1000 FEE 435500 12774 \N \N 6036409 2025-03-19 11:45:33.911 2025-03-19 11:45:33.911 2300 FEE 435497 9496 \N \N 6036410 2025-03-19 11:45:33.911 2025-03-19 11:45:33.911 20700 TIP 435497 21159 \N \N 6036419 2025-03-19 11:45:35.152 2025-03-19 11:45:35.152 2300 FEE 435497 10981 \N \N 6036420 2025-03-19 11:45:35.152 2025-03-19 11:45:35.152 20700 TIP 435497 2703 \N \N 6036421 2025-03-19 11:45:35.768 2025-03-19 11:45:35.768 2300 FEE 435497 15119 \N \N 6036422 2025-03-19 11:45:35.768 2025-03-19 11:45:35.768 20700 TIP 435497 1433 \N \N 6036461 2025-03-19 11:45:52.75 2025-03-19 11:45:52.75 2300 FEE 435497 10934 \N \N 6036462 2025-03-19 11:45:52.75 2025-03-19 11:45:52.75 20700 TIP 435497 1564 \N \N 6036465 2025-03-19 11:45:53.14 2025-03-19 11:45:53.14 2300 FEE 435497 1833 \N \N 6036466 2025-03-19 11:45:53.14 2025-03-19 11:45:53.14 20700 TIP 435497 16988 \N \N 6036475 2025-03-19 11:45:54.782 2025-03-19 11:45:54.782 2300 FEE 435497 21379 \N \N 6036476 2025-03-19 11:45:54.782 2025-03-19 11:45:54.782 20700 TIP 435497 976 \N \N 6036483 2025-03-19 11:45:55.287 2025-03-19 11:45:55.287 2300 FEE 435497 762 \N \N 6036484 2025-03-19 11:45:55.287 2025-03-19 11:45:55.287 20700 TIP 435497 9352 \N \N 6036485 2025-03-19 11:45:55.44 2025-03-19 11:45:55.44 2300 FEE 435497 18426 \N \N 6036486 2025-03-19 11:45:55.44 2025-03-19 11:45:55.44 20700 TIP 435497 21683 \N \N 6036510 2025-03-19 11:47:29.78 2025-03-19 11:47:29.78 1000 FEE 435502 8176 \N \N 6036527 2025-03-19 11:50:38.022 2025-03-19 11:50:38.022 100 FEE 435505 20023 \N \N 6036528 2025-03-19 11:50:38.022 2025-03-19 11:50:38.022 900 TIP 435505 2156 \N \N 6036529 2025-03-19 11:50:38.407 2025-03-19 11:50:38.407 200 FEE 435505 12721 \N \N 6036530 2025-03-19 11:50:38.407 2025-03-19 11:50:38.407 1800 TIP 435505 17116 \N \N 6036550 2025-03-19 11:52:15.178 2025-03-19 11:52:15.178 1000 FEE 435313 14651 \N \N 6036551 2025-03-19 11:52:15.178 2025-03-19 11:52:15.178 9000 TIP 435313 7185 \N \N 6036571 2025-03-19 11:52:39.637 2025-03-19 11:52:39.637 1000 FEE 435475 3342 \N \N 6036572 2025-03-19 11:52:39.637 2025-03-19 11:52:39.637 9000 TIP 435475 630 \N \N 6036582 2025-03-19 11:52:58.528 2025-03-19 11:52:58.528 1000 FEE 435509 10112 \N \N 6036585 2025-03-19 11:53:04.986 2025-03-19 11:53:04.986 100 FEE 435497 19821 \N \N 6036586 2025-03-19 11:53:04.986 2025-03-19 11:53:04.986 900 TIP 435497 1673 \N \N 6038319 2025-03-19 15:03:14.627 2025-03-19 15:03:14.627 3000 FEE 435654 3461 \N \N 6038320 2025-03-19 15:03:14.627 2025-03-19 15:03:14.627 27000 TIP 435654 9364 \N \N 6038323 2025-03-19 15:03:39.294 2025-03-19 15:03:39.294 1000 FEE 435678 16097 \N \N 6038324 2025-03-19 15:03:42.154 2025-03-19 15:03:42.154 100000 FEE 435679 7659 \N \N 6038329 2025-03-19 15:04:12.681 2025-03-19 15:04:12.681 300 FEE 435457 646 \N \N 6038330 2025-03-19 15:04:12.681 2025-03-19 15:04:12.681 2700 TIP 435457 703 \N \N 6038358 2025-03-19 15:04:16.163 2025-03-19 15:04:16.163 300 FEE 435457 736 \N \N 6038359 2025-03-19 15:04:16.163 2025-03-19 15:04:16.163 2700 TIP 435457 1692 \N \N 6038398 2025-03-19 15:08:35.004 2025-03-19 15:08:35.004 1300 FEE 435657 19821 \N \N 6038399 2025-03-19 15:08:35.004 2025-03-19 15:08:35.004 11700 TIP 435657 2156 \N \N 6038403 2025-03-19 15:09:11.512 2025-03-19 15:09:11.512 1000 FEE 435686 11873 \N \N 6038408 2025-03-19 15:09:29.431 2025-03-19 15:09:29.431 1100 FEE 435657 13622 \N \N 6038409 2025-03-19 15:09:29.431 2025-03-19 15:09:29.431 9900 TIP 435657 8242 \N \N 6038413 2025-03-19 15:10:16.715 2025-03-19 15:10:16.715 1000 FEE 435453 4084 \N \N 6038414 2025-03-19 15:10:16.715 2025-03-19 15:10:16.715 9000 TIP 435453 19417 \N \N 6038424 2025-03-19 15:10:59.823 2025-03-19 15:10:59.823 3000 FEE 435679 15488 \N \N 6038425 2025-03-19 15:10:59.823 2025-03-19 15:10:59.823 27000 TIP 435679 16543 \N \N 6038489 2025-03-19 15:17:58.417 2025-03-19 15:17:58.417 300 FEE 435677 3504 \N \N 6038490 2025-03-19 15:17:58.417 2025-03-19 15:17:58.417 2700 TIP 435677 13398 \N \N 6038572 2025-03-19 15:27:49.758 2025-03-19 15:27:49.758 21000 FEE 435697 9992 \N \N 6038578 2025-03-19 15:29:08.696 2025-03-19 15:29:08.696 1100 FEE 435692 18402 \N \N 6038579 2025-03-19 15:29:08.696 2025-03-19 15:29:08.696 9900 TIP 435692 17209 \N \N 6038619 2025-03-19 15:30:58.349 2025-03-19 15:30:58.349 2300 FEE 435657 18533 \N \N 6038620 2025-03-19 15:30:58.349 2025-03-19 15:30:58.349 20700 TIP 435657 4177 \N \N 6038626 2025-03-19 15:31:15.198 2025-03-19 15:31:15.198 1000 FEE 435608 666 \N \N 6038627 2025-03-19 15:31:15.198 2025-03-19 15:31:15.198 9000 TIP 435608 8472 \N \N 6038630 2025-03-19 15:31:33.223 2025-03-19 15:31:33.223 1000 FEE 435704 21349 \N \N 6029946 2025-03-18 23:36:17.089 2025-03-18 23:36:17.089 5000 FEE 434498 828 \N \N 6029947 2025-03-18 23:36:17.089 2025-03-18 23:36:17.089 45000 TIP 434498 880 \N \N 6029959 2025-03-18 23:41:46.586 2025-03-18 23:41:46.586 2100 FEE 434577 8726 \N \N 6029960 2025-03-18 23:41:46.586 2025-03-18 23:41:46.586 18900 TIP 434577 7583 \N \N 6029966 2025-03-18 23:45:10.847 2025-03-18 23:45:10.847 2100 FEE 434660 12097 \N \N 6029967 2025-03-18 23:45:10.847 2025-03-18 23:45:10.847 18900 TIP 434660 770 \N \N 6030007 2025-03-18 23:52:08.096 2025-03-18 23:52:08.096 100 FEE 434646 8998 \N \N 6030008 2025-03-18 23:52:08.096 2025-03-18 23:52:08.096 900 TIP 434646 21061 \N \N 6030018 2025-03-18 23:53:38.756 2025-03-18 23:53:38.756 1000 FEE 434683 18116 \N \N 6030031 2025-03-18 23:58:34.845 2025-03-18 23:58:34.845 10000 FEE 434685 15556 \N \N 6030042 2025-03-18 23:59:06.715 2025-03-18 23:59:06.715 500 FEE 434285 14959 \N \N 6030043 2025-03-18 23:59:06.715 2025-03-18 23:59:06.715 4500 TIP 434285 12946 \N \N 6030059 2025-03-19 00:04:02.235 2025-03-19 00:04:02.235 100 FEE 434535 11038 \N \N 6030060 2025-03-19 00:04:02.235 2025-03-19 00:04:02.235 900 TIP 434535 19576 \N \N 6030076 2025-03-19 00:07:28.899 2025-03-19 00:07:28.899 1000 FEE 434689 19071 \N \N 6030084 2025-03-19 00:10:32.694 2025-03-19 00:10:32.694 1600 FEE 434642 960 \N \N 6030085 2025-03-19 00:10:32.694 2025-03-19 00:10:32.694 14400 TIP 434642 635 \N \N 6030088 2025-03-19 00:10:33.302 2025-03-19 00:10:33.302 1000 FEE 434692 9167 \N \N 6030093 2025-03-19 00:13:06.245 2025-03-19 00:13:06.245 10000 FEE 434693 1881 \N \N 6030122 2025-03-19 00:23:53.538 2025-03-19 00:23:53.538 12800 FEE 433835 620 \N \N 6030123 2025-03-19 00:23:53.538 2025-03-19 00:23:53.538 115200 TIP 433835 16978 \N \N 6030128 2025-03-19 00:25:14.684 2025-03-19 00:25:14.684 2100 FEE 434698 8289 \N \N 6030129 2025-03-19 00:25:14.684 2025-03-19 00:25:14.684 18900 TIP 434698 7877 \N \N 6030155 2025-03-19 00:31:01.146 2025-03-19 00:31:01.146 4000 FEE 434627 13921 \N \N 6030156 2025-03-19 00:31:01.146 2025-03-19 00:31:01.146 36000 TIP 434627 16424 \N \N 6030184 2025-03-19 00:35:08.673 2025-03-19 00:35:08.673 1000 FEE 434706 736 \N \N 6030221 2025-03-19 00:41:13.919 2025-03-19 00:41:13.919 300 FEE 434713 18423 \N \N 6030222 2025-03-19 00:41:13.919 2025-03-19 00:41:13.919 2700 TIP 434713 9341 \N \N 6030225 2025-03-19 00:41:14.86 2025-03-19 00:41:14.86 300 FEE 434713 11590 \N \N 6030226 2025-03-19 00:41:14.86 2025-03-19 00:41:14.86 2700 TIP 434713 2151 \N \N 6030227 2025-03-19 00:41:15.07 2025-03-19 00:41:15.07 300 FEE 434713 822 \N \N 6030228 2025-03-19 00:41:15.07 2025-03-19 00:41:15.07 2700 TIP 434713 20254 \N \N 6030231 2025-03-19 00:41:15.903 2025-03-19 00:41:15.903 300 FEE 434713 21020 \N \N 6030232 2025-03-19 00:41:15.903 2025-03-19 00:41:15.903 2700 TIP 434713 976 \N \N 6030251 2025-03-19 00:43:13.07 2025-03-19 00:43:13.07 2100 FEE 434627 21072 \N \N 6030252 2025-03-19 00:43:13.07 2025-03-19 00:43:13.07 18900 TIP 434627 20555 \N \N 6030258 2025-03-19 00:43:17.707 2025-03-19 00:43:17.707 2100 FEE 434385 7376 \N \N 6030259 2025-03-19 00:43:17.707 2025-03-19 00:43:17.707 18900 TIP 434385 3745 \N \N 6030262 2025-03-19 00:43:18.65 2025-03-19 00:43:18.65 2100 FEE 434665 13763 \N \N 6030263 2025-03-19 00:43:18.65 2025-03-19 00:43:18.65 18900 TIP 434665 16447 \N \N 6030300 2025-03-19 00:48:34.752 2025-03-19 00:48:34.752 1000 FEE 434720 705 \N \N 6030303 2025-03-19 00:49:14.154 2025-03-19 00:49:14.154 10000 FEE 434276 10536 \N \N 6030304 2025-03-19 00:49:14.154 2025-03-19 00:49:14.154 90000 TIP 434276 4048 \N \N 6030315 2025-03-19 00:49:58.741 2025-03-19 00:49:58.741 100 FEE 434440 18735 \N \N 6030316 2025-03-19 00:49:58.741 2025-03-19 00:49:58.741 900 TIP 434440 15160 \N \N 6030350 2025-03-19 00:54:43.097 2025-03-19 00:54:43.097 0 FEE 434718 4115 \N \N 6030351 2025-03-19 00:54:50.316 2025-03-19 00:54:50.316 0 FEE 434718 660 \N \N 6030366 2025-03-19 00:56:31.56 2025-03-19 00:56:31.56 1000 FEE 434730 18727 \N \N 6030377 2025-03-19 00:59:21.914 2025-03-19 00:59:21.914 0 FEE 434730 894 \N \N 6030395 2025-03-19 01:03:16.447 2025-03-19 01:03:16.447 2100 FEE 434732 16834 \N \N 6030396 2025-03-19 01:03:16.447 2025-03-19 01:03:16.447 18900 TIP 434732 1298 \N \N 6030407 2025-03-19 01:06:19.375 2025-03-19 01:06:19.375 1000 FEE 434739 5809 \N \N 6030417 2025-03-19 01:08:50.33 2025-03-19 01:08:50.33 1000 FEE 434743 10554 \N \N 6030420 2025-03-19 01:08:57.759 2025-03-19 01:08:57.759 1100 FEE 434697 2711 \N \N 6030421 2025-03-19 01:08:57.759 2025-03-19 01:08:57.759 9900 TIP 434697 814 \N \N 6030424 2025-03-19 01:09:39.39 2025-03-19 01:09:39.39 10000 FEE 434745 16289 \N \N 6030432 2025-03-19 01:11:52.43 2025-03-19 01:11:52.43 50000 FEE 434707 15337 \N \N 6030433 2025-03-19 01:11:52.43 2025-03-19 01:11:52.43 450000 TIP 434707 2367 \N \N 6030457 2025-03-19 01:22:15.332 2025-03-19 01:22:15.332 1000 FEE 434753 10944 \N \N 6030460 2025-03-19 01:23:07.652 2025-03-19 01:23:07.652 2100 FEE 434691 10862 \N \N 6030461 2025-03-19 01:23:07.652 2025-03-19 01:23:07.652 18900 TIP 434691 8242 \N \N 6030466 2025-03-19 01:24:08.163 2025-03-19 01:24:08.163 100 FEE 434722 19854 \N \N 6036172 2025-03-19 10:50:58.677 2025-03-19 10:50:58.677 1600 FEE 435328 19138 \N \N 6036173 2025-03-19 10:50:58.677 2025-03-19 10:50:58.677 14400 TIP 435328 21222 \N \N 6036179 2025-03-19 10:52:00.044 2025-03-19 10:52:00.044 210000 FEE 435458 2329 \N \N 6036180 2025-03-19 10:52:10.354 2025-03-19 10:52:10.354 1000 FEE 435459 1801 \N \N 6036188 2025-03-19 10:52:29.828 2025-03-19 10:52:29.828 2300 FEE 435457 10944 \N \N 6036189 2025-03-19 10:52:29.828 2025-03-19 10:52:29.828 20700 TIP 435457 8469 \N \N 6036240 2025-03-19 11:04:57.955 2025-03-19 11:04:57.955 100 FEE 435458 2703 \N \N 6036241 2025-03-19 11:04:57.955 2025-03-19 11:04:57.955 900 TIP 435458 1983 \N \N 6036248 2025-03-19 11:06:04.591 2025-03-19 11:06:04.591 1000 FEE 435458 16679 \N \N 6036249 2025-03-19 11:06:04.591 2025-03-19 11:06:04.591 9000 TIP 435458 9184 \N \N 6036250 2025-03-19 11:06:14.144 2025-03-19 11:06:14.144 1000 FEE 435453 17798 \N \N 6036251 2025-03-19 11:06:14.144 2025-03-19 11:06:14.144 9000 TIP 435453 20198 \N \N 6036263 2025-03-19 11:09:33.505 2025-03-19 11:09:33.505 8300 FEE 435453 1733 \N \N 6036264 2025-03-19 11:09:33.505 2025-03-19 11:09:33.505 74700 TIP 435453 2639 \N \N 6036285 2025-03-19 11:17:34.374 2025-03-19 11:17:34.374 1100 FEE 435261 7659 \N \N 6036286 2025-03-19 11:17:34.374 2025-03-19 11:17:34.374 9900 TIP 435261 20734 \N \N 6036287 2025-03-19 11:17:34.505 2025-03-19 11:17:34.505 1100 FEE 435261 20674 \N \N 6036288 2025-03-19 11:17:34.505 2025-03-19 11:17:34.505 9900 TIP 435261 7667 \N \N 6036314 2025-03-19 11:26:18.11 2025-03-19 11:26:18.11 10000 FEE 435480 21501 \N \N 6036342 2025-03-19 11:30:10.908 2025-03-19 11:30:10.908 10000 FEE 435242 674 \N \N 6036343 2025-03-19 11:30:10.908 2025-03-19 11:30:10.908 90000 TIP 435242 4692 \N \N 6036394 2025-03-19 11:43:28.418 2025-03-19 11:43:28.418 800 FEE 435241 4225 \N \N 6036395 2025-03-19 11:43:28.418 2025-03-19 11:43:28.418 7200 TIP 435241 5036 \N \N 6036415 2025-03-19 11:45:34.489 2025-03-19 11:45:34.489 2300 FEE 435497 21518 \N \N 6036416 2025-03-19 11:45:34.489 2025-03-19 11:45:34.489 20700 TIP 435497 20377 \N \N 6036507 2025-03-19 11:47:10.939 2025-03-19 11:47:10.939 1000 FEE 435465 1051 \N \N 6036508 2025-03-19 11:47:10.939 2025-03-19 11:47:10.939 9000 TIP 435465 16229 \N \N 6036545 2025-03-19 11:52:13.786 2025-03-19 11:52:13.786 1000 FEE 435500 19524 \N \N 6036546 2025-03-19 11:52:13.786 2025-03-19 11:52:13.786 9000 TIP 435500 8269 \N \N 6036565 2025-03-19 11:52:39.137 2025-03-19 11:52:39.137 1000 FEE 435475 2710 \N \N 6036566 2025-03-19 11:52:39.137 2025-03-19 11:52:39.137 9000 TIP 435475 1571 \N \N 6036600 2025-03-19 11:53:10.344 2025-03-19 11:53:10.344 100 FEE 435505 794 \N \N 6036601 2025-03-19 11:53:10.344 2025-03-19 11:53:10.344 900 TIP 435505 1425 \N \N 6036624 2025-03-19 11:56:52.793 2025-03-19 11:56:52.793 10000 FEE 435510 2952 \N \N 6036626 2025-03-19 11:57:34.244 2025-03-19 11:57:34.244 1000 FEE 435497 20245 \N \N 6036627 2025-03-19 11:57:34.244 2025-03-19 11:57:34.244 9000 TIP 435497 2056 \N \N 6036648 2025-03-19 11:58:03.393 2025-03-19 11:58:03.393 100 FEE 435314 10554 \N \N 6036649 2025-03-19 11:58:03.393 2025-03-19 11:58:03.393 900 TIP 435314 1960 \N \N 6036655 2025-03-19 11:58:38.056 2025-03-19 11:58:38.056 100 FEE 435488 722 \N \N 6036656 2025-03-19 11:58:38.056 2025-03-19 11:58:38.056 900 TIP 435488 8416 \N \N 6036662 2025-03-19 11:58:41.669 2025-03-19 11:58:41.669 11700 FEE 435512 14905 \N \N 6036663 2025-03-19 11:58:41.669 2025-03-19 11:58:41.669 105300 TIP 435512 1741 \N \N 6036712 2025-03-19 12:09:38.215 2025-03-19 12:09:38.215 0 FEE 435520 9337 \N \N 6036718 2025-03-19 12:11:21.627 2025-03-19 12:11:21.627 0 FEE 435520 2514 \N \N 6036720 2025-03-19 12:11:59.699 2025-03-19 12:11:59.699 1000 FEE 435521 3353 \N \N 6036721 2025-03-19 12:11:59.699 2025-03-19 12:11:59.699 9000 TIP 435521 17526 \N \N 6036731 2025-03-19 12:13:46.76 2025-03-19 12:13:46.76 3300 FEE 435504 1006 \N \N 6036732 2025-03-19 12:13:46.76 2025-03-19 12:13:46.76 29700 TIP 435504 19138 \N \N 6036752 2025-03-19 12:17:47.826 2025-03-19 12:17:47.826 100 FEE 435525 696 \N \N 6036753 2025-03-19 12:17:47.826 2025-03-19 12:17:47.826 900 TIP 435525 5852 \N \N 6036756 2025-03-19 12:17:58.554 2025-03-19 12:17:58.554 1000 FEE 435531 2206 \N \N 6036762 2025-03-19 12:18:39.09 2025-03-19 12:18:39.09 2100 FEE 434958 8376 \N \N 6036763 2025-03-19 12:18:39.09 2025-03-19 12:18:39.09 18900 TIP 434958 16858 \N \N 6036773 2025-03-19 12:19:38.161 2025-03-19 12:19:38.161 1000 FEE 435534 18956 \N \N 6036229 2025-03-19 11:03:50.239 2025-03-19 11:03:50.239 900 TIP 435449 1823 \N \N 6036230 2025-03-19 11:03:50.402 2025-03-19 11:03:50.402 900 FEE 435449 1726 \N \N 6036231 2025-03-19 11:03:50.402 2025-03-19 11:03:50.402 8100 TIP 435449 7903 \N \N 6036232 2025-03-19 11:03:59.554 2025-03-19 11:03:59.554 2100 FEE 429807 19459 \N \N 6036233 2025-03-19 11:03:59.554 2025-03-19 11:03:59.554 18900 TIP 429807 21136 \N \N 6036258 2025-03-19 11:07:18.364 2025-03-19 11:07:18.364 10000 FEE 435469 1638 \N \N 6036259 2025-03-19 11:07:49.76 2025-03-19 11:07:49.76 1000 FEE 435470 8168 \N \N 6036341 2025-03-19 11:29:27.242 2025-03-19 11:29:27.242 100000 FEE 435482 20904 \N \N 6036372 2025-03-19 11:39:23.647 2025-03-19 11:39:23.647 10000 FEE 432416 2749 \N \N 6036373 2025-03-19 11:39:23.647 2025-03-19 11:39:23.647 90000 TIP 432416 9290 \N \N 6036386 2025-03-19 11:42:16.192 2025-03-19 11:42:16.192 2500 FEE 435292 959 \N \N 6036387 2025-03-19 11:42:16.192 2025-03-19 11:42:16.192 22500 TIP 435292 14370 \N \N 6036443 2025-03-19 11:45:49.094 2025-03-19 11:45:49.094 2300 FEE 435497 803 \N \N 6036444 2025-03-19 11:45:49.094 2025-03-19 11:45:49.094 20700 TIP 435497 13843 \N \N 6036451 2025-03-19 11:45:51.921 2025-03-19 11:45:51.921 2300 FEE 435497 21666 \N \N 6036452 2025-03-19 11:45:51.921 2025-03-19 11:45:51.921 20700 TIP 435497 14195 \N \N 6036491 2025-03-19 11:46:03.429 2025-03-19 11:46:03.429 200 FEE 435496 7659 \N \N 6036492 2025-03-19 11:46:03.429 2025-03-19 11:46:03.429 1800 TIP 435496 17042 \N \N 6036500 2025-03-19 11:46:48.167 2025-03-19 11:46:48.167 1000 FEE 435213 2789 \N \N 6036501 2025-03-19 11:46:48.167 2025-03-19 11:46:48.167 9000 TIP 435213 16513 \N \N 6036534 2025-03-19 11:51:26.39 2025-03-19 11:51:26.39 1100 FEE 435159 714 \N \N 6036535 2025-03-19 11:51:26.39 2025-03-19 11:51:26.39 9900 TIP 435159 13547 \N \N 6036583 2025-03-19 11:53:04.322 2025-03-19 11:53:04.322 100 FEE 435497 3683 \N \N 6036584 2025-03-19 11:53:04.322 2025-03-19 11:53:04.322 900 TIP 435497 21620 \N \N 6036593 2025-03-19 11:53:06.994 2025-03-19 11:53:06.994 0 FEE 435507 21672 \N \N 6036634 2025-03-19 11:57:34.753 2025-03-19 11:57:34.753 1000 FEE 435509 3417 \N \N 6036635 2025-03-19 11:57:34.753 2025-03-19 11:57:34.753 9000 TIP 435509 1307 \N \N 6036643 2025-03-19 11:57:53.021 2025-03-19 11:57:53.021 1000 FEE 435512 769 \N \N 6036644 2025-03-19 11:58:02.719 2025-03-19 11:58:02.719 100 FEE 435314 794 \N \N 6036645 2025-03-19 11:58:02.719 2025-03-19 11:58:02.719 900 TIP 435314 7580 \N \N 6036669 2025-03-19 11:59:15.175 2025-03-19 11:59:15.175 900 FEE 435467 11158 \N \N 6036670 2025-03-19 11:59:15.175 2025-03-19 11:59:15.175 8100 TIP 435467 5171 \N \N 6036673 2025-03-19 11:59:33.955 2025-03-19 11:59:33.955 9000 FEE 435458 2748 \N \N 6036674 2025-03-19 11:59:33.955 2025-03-19 11:59:33.955 81000 TIP 435458 18177 \N \N 6036675 2025-03-19 12:00:08.898 2025-03-19 12:00:08.898 100 FEE 435495 18423 \N \N 6036676 2025-03-19 12:00:08.898 2025-03-19 12:00:08.898 900 TIP 435495 634 \N \N 6036690 2025-03-19 12:01:38.158 2025-03-19 12:01:38.158 1000 FEE 435517 14941 \N \N 6036709 2025-03-19 12:08:47.023 2025-03-19 12:08:47.023 1000 FEE 435520 16177 \N \N 6036764 2025-03-19 12:18:45.681 2025-03-19 12:18:45.681 2100 FEE 435402 18423 \N \N 6036765 2025-03-19 12:18:45.681 2025-03-19 12:18:45.681 18900 TIP 435402 16296 \N \N 6036769 2025-03-19 12:19:15.031 2025-03-19 12:19:15.031 1600 FEE 435497 4225 \N \N 6036770 2025-03-19 12:19:15.031 2025-03-19 12:19:15.031 14400 TIP 435497 19992 \N \N 6036795 2025-03-19 12:20:58.56 2025-03-19 12:20:58.56 1000 FEE 435537 8416 \N \N 6036806 2025-03-19 12:22:45.401 2025-03-19 12:22:45.401 10000 FEE 435199 11819 \N \N 6036807 2025-03-19 12:22:45.401 2025-03-19 12:22:45.401 90000 TIP 435199 21585 \N \N 6036820 2025-03-19 12:23:55.216 2025-03-19 12:23:55.216 10000 FEE 435110 21506 \N \N 6036821 2025-03-19 12:23:55.216 2025-03-19 12:23:55.216 90000 TIP 435110 1438 \N \N 6036824 2025-03-19 12:24:48.809 2025-03-19 12:24:48.809 1000 FEE 435540 9336 \N \N 6036865 2025-03-19 12:31:34.412 2025-03-19 12:31:34.412 1100 FEE 435127 18265 \N \N 6036866 2025-03-19 12:31:34.412 2025-03-19 12:31:34.412 9900 TIP 435127 21766 \N \N 6036872 2025-03-19 12:32:20.559 2025-03-19 12:32:20.559 10000 FEE 435242 20713 \N \N 6036873 2025-03-19 12:32:20.559 2025-03-19 12:32:20.559 90000 TIP 435242 21794 \N \N 6036874 2025-03-19 12:32:25.233 2025-03-19 12:32:25.233 2500 FEE 435504 20023 \N \N 6036875 2025-03-19 12:32:25.233 2025-03-19 12:32:25.233 22500 TIP 435504 762 \N \N 6036880 2025-03-19 12:34:27.71 2025-03-19 12:34:27.71 500 FEE 435328 1433 \N \N 6036881 2025-03-19 12:34:27.71 2025-03-19 12:34:27.71 4500 TIP 435328 21501 \N \N 6036884 2025-03-19 12:34:44.686 2025-03-19 12:34:44.686 10000 FEE 435544 18005 \N \N 6036885 2025-03-19 12:34:44.686 2025-03-19 12:34:44.686 90000 TIP 435544 7675 \N \N 6036903 2025-03-19 12:36:29.84 2025-03-19 12:36:29.84 1000 FEE 435548 21405 \N \N 6036913 2025-03-19 12:37:41.617 2025-03-19 12:37:41.617 1100 FEE 435072 663 \N \N 6036914 2025-03-19 12:37:41.617 2025-03-19 12:37:41.617 9900 TIP 435072 20840 \N \N 6036937 2025-03-19 12:40:50.866 2025-03-19 12:40:50.866 2100 FEE 435480 20990 \N \N 6036938 2025-03-19 12:40:50.866 2025-03-19 12:40:50.866 18900 TIP 435480 21374 \N \N 6036960 2025-03-19 12:44:06.253 2025-03-19 12:44:06.253 1000 FEE 435300 15100 \N \N 6036961 2025-03-19 12:44:06.253 2025-03-19 12:44:06.253 9000 TIP 435300 12356 \N \N 6030052 2025-03-19 00:01:03.491 2025-03-19 00:01:03.491 5000 FEE 433828 16638 \N \N 6030053 2025-03-19 00:01:03.491 2025-03-19 00:01:03.491 45000 TIP 433828 15858 \N \N 6030056 2025-03-19 00:02:38.042 2025-03-19 00:02:38.042 5000 FEE 434560 12951 \N \N 6030057 2025-03-19 00:02:38.042 2025-03-19 00:02:38.042 45000 TIP 434560 13763 \N \N 6030061 2025-03-19 00:04:13.877 2025-03-19 00:04:13.877 1000 FEE 434686 21498 \N \N 6030065 2025-03-19 00:04:17.036 2025-03-19 00:04:17.036 5000 FEE 434488 1784 \N \N 6030066 2025-03-19 00:04:17.036 2025-03-19 00:04:17.036 45000 TIP 434488 5708 \N \N 6030069 2025-03-19 00:05:08.335 2025-03-19 00:05:08.335 1000 FEE 434687 19459 \N \N 6030089 2025-03-19 00:10:41.021 2025-03-19 00:10:41.021 0 FEE 434692 12768 \N \N 6030142 2025-03-19 00:28:08.228 2025-03-19 00:28:08.228 1200 FEE 434319 9026 \N \N 6030143 2025-03-19 00:28:08.228 2025-03-19 00:28:08.228 10800 TIP 434319 9758 \N \N 6030146 2025-03-19 00:28:26.137 2025-03-19 00:28:26.137 800 FEE 434514 13574 \N \N 6030147 2025-03-19 00:28:26.137 2025-03-19 00:28:26.137 7200 TIP 434514 18557 \N \N 6030163 2025-03-19 00:31:09.621 2025-03-19 00:31:09.621 4000 FEE 434637 4459 \N \N 6030164 2025-03-19 00:31:09.621 2025-03-19 00:31:09.621 36000 TIP 434637 10302 \N \N 6030210 2025-03-19 00:39:55.371 2025-03-19 00:39:55.371 4000 FEE 434516 21019 \N \N 6030211 2025-03-19 00:39:55.371 2025-03-19 00:39:55.371 36000 TIP 434516 1512 \N \N 6030219 2025-03-19 00:41:13.751 2025-03-19 00:41:13.751 300 FEE 434713 16149 \N \N 6030220 2025-03-19 00:41:13.751 2025-03-19 00:41:13.751 2700 TIP 434713 1564 \N \N 6030233 2025-03-19 00:41:18.947 2025-03-19 00:41:18.947 300 FEE 434713 700 \N \N 6030234 2025-03-19 00:41:18.947 2025-03-19 00:41:18.947 2700 TIP 434713 16724 \N \N 6030249 2025-03-19 00:43:12.304 2025-03-19 00:43:12.304 2100 FEE 434285 7580 \N \N 6030250 2025-03-19 00:43:12.304 2025-03-19 00:43:12.304 18900 TIP 434285 711 \N \N 6030254 2025-03-19 00:43:14.816 2025-03-19 00:43:14.816 2100 FEE 434278 16177 \N \N 6030255 2025-03-19 00:43:14.816 2025-03-19 00:43:14.816 18900 TIP 434278 16456 \N \N 6030256 2025-03-19 00:43:15.728 2025-03-19 00:43:15.728 2100 FEE 434488 19996 \N \N 6030257 2025-03-19 00:43:15.728 2025-03-19 00:43:15.728 18900 TIP 434488 1801 \N \N 6030268 2025-03-19 00:43:24.188 2025-03-19 00:43:24.188 2100 FEE 434396 6602 \N \N 6030269 2025-03-19 00:43:24.188 2025-03-19 00:43:24.188 18900 TIP 434396 7899 \N \N 6030270 2025-03-19 00:43:25.404 2025-03-19 00:43:25.404 2100 FEE 434637 16353 \N \N 6030271 2025-03-19 00:43:25.404 2025-03-19 00:43:25.404 18900 TIP 434637 19854 \N \N 6030285 2025-03-19 00:44:14.331 2025-03-19 00:44:14.331 2100 FEE 433212 2508 \N \N 6030286 2025-03-19 00:44:14.331 2025-03-19 00:44:14.331 18900 TIP 433212 21398 \N \N 6030292 2025-03-19 00:46:13.262 2025-03-19 00:46:13.262 10000 FEE 434718 27 \N \N 6030306 2025-03-19 00:49:42.6 2025-03-19 00:49:42.6 1000 FEE 434723 929 \N \N 6030329 2025-03-19 00:51:47.485 2025-03-19 00:51:47.485 12800 FEE 433788 14465 \N \N 6030330 2025-03-19 00:51:47.485 2025-03-19 00:51:47.485 115200 TIP 433788 1745 \N \N 6030343 2025-03-19 00:53:50.825 2025-03-19 00:53:50.825 800 FEE 434615 15549 \N \N 6030344 2025-03-19 00:53:50.825 2025-03-19 00:53:50.825 7200 TIP 434615 19535 \N \N 6030346 2025-03-19 00:54:01.389 2025-03-19 00:54:01.389 12800 FEE 433782 17094 \N \N 6030347 2025-03-19 00:54:01.389 2025-03-19 00:54:01.389 115200 TIP 433782 15624 \N \N 6030354 2025-03-19 00:54:57.628 2025-03-19 00:54:57.628 0 FEE 434727 11776 \N \N 6030381 2025-03-19 01:00:29.859 2025-03-19 01:00:29.859 12800 FEE 433772 20636 \N \N 6030382 2025-03-19 01:00:29.859 2025-03-19 01:00:29.859 115200 TIP 433772 15474 \N \N 6030392 2025-03-19 01:03:11.449 2025-03-19 01:03:11.449 2100 FEE 434119 21373 \N \N 6030393 2025-03-19 01:03:11.449 2025-03-19 01:03:11.449 18900 TIP 434119 20993 \N \N 6030405 2025-03-19 01:05:53.249 2025-03-19 01:05:53.249 1000 FEE 434738 21334 \N \N 6030414 2025-03-19 01:07:49.145 2025-03-19 01:07:49.145 1000 FEE 434741 3456 \N \N 6030429 2025-03-19 01:10:26.407 2025-03-19 01:10:26.407 800 FEE 434739 11590 \N \N 6030430 2025-03-19 01:10:26.407 2025-03-19 01:10:26.407 7200 TIP 434739 2963 \N \N 6030434 2025-03-19 01:11:56.04 2025-03-19 01:11:56.04 50000 FEE 434707 8472 \N \N 6030435 2025-03-19 01:11:56.04 2025-03-19 01:11:56.04 450000 TIP 434707 4084 \N \N 6030470 2025-03-19 01:24:57.523 2025-03-19 01:24:57.523 1000 FEE 434756 4167 \N \N 6030479 2025-03-19 01:25:03.367 2025-03-19 01:25:03.367 100 FEE 434755 13517 \N \N 6030480 2025-03-19 01:25:03.367 2025-03-19 01:25:03.367 900 TIP 434755 2326 \N \N 6030495 2025-03-19 01:26:46.966 2025-03-19 01:26:46.966 50000 FEE 433232 1221 \N \N 6030496 2025-03-19 01:26:46.966 2025-03-19 01:26:46.966 450000 TIP 433232 11443 \N \N 6030504 2025-03-19 01:27:46.48 2025-03-19 01:27:46.48 1000 FEE 434759 679 \N \N 6030525 2025-03-19 01:31:20.143 2025-03-19 01:31:20.143 1000 FEE 434764 18101 \N \N 6030563 2025-03-19 01:38:59.811 2025-03-19 01:38:59.811 100 FEE 434718 16965 \N \N 6030564 2025-03-19 01:38:59.811 2025-03-19 01:38:59.811 900 TIP 434718 9367 \N \N 6030577 2025-03-19 01:39:04.759 2025-03-19 01:39:04.759 100 FEE 434709 21334 \N \N 6030578 2025-03-19 01:39:04.759 2025-03-19 01:39:04.759 900 TIP 434709 15115 \N \N 6030596 2025-03-19 01:40:03.175 2025-03-19 01:40:03.175 1000 FEE 434775 10060 \N \N 6030611 2025-03-19 01:41:12.352 2025-03-19 01:41:12.352 1100 FEE 434338 21339 \N \N 6030612 2025-03-19 01:41:12.352 2025-03-19 01:41:12.352 9900 TIP 434338 20094 \N \N 6030618 2025-03-19 01:41:47.237 2025-03-19 01:41:47.237 1100 FEE 434372 16598 \N \N 6030619 2025-03-19 01:41:47.237 2025-03-19 01:41:47.237 9900 TIP 434372 1618 \N \N 6030645 2025-03-19 01:47:37.143 2025-03-19 01:47:37.143 1000 FEE 434780 18615 \N \N 6030649 2025-03-19 01:48:07.654 2025-03-19 01:48:07.654 2100 FEE 434779 5522 \N \N 6030650 2025-03-19 01:48:07.654 2025-03-19 01:48:07.654 18900 TIP 434779 1814 \N \N 6030654 2025-03-19 01:50:35.968 2025-03-19 01:50:35.968 10000 FEE 434782 14037 \N \N 6030684 2025-03-19 01:55:30.881 2025-03-19 01:55:30.881 1000 FEE 434787 12222 \N \N 6030753 2025-03-19 02:06:56.104 2025-03-19 02:06:56.104 0 FEE 434796 2519 \N \N 6030758 2025-03-19 02:06:58.83 2025-03-19 02:06:58.83 1000 FEE 434802 12291 \N \N 6030759 2025-03-19 02:07:00.815 2025-03-19 02:07:00.815 1000 FEE 434798 1618 \N \N 6030760 2025-03-19 02:07:00.815 2025-03-19 02:07:00.815 9000 TIP 434798 10849 \N \N 6030761 2025-03-19 02:07:03.032 2025-03-19 02:07:03.032 1100 FEE 433913 11716 \N \N 6030762 2025-03-19 02:07:03.032 2025-03-19 02:07:03.032 9900 TIP 433913 636 \N \N 6030775 2025-03-19 02:08:18.698 2025-03-19 02:08:18.698 100 FEE 434440 910 \N \N 6030776 2025-03-19 02:08:18.698 2025-03-19 02:08:18.698 900 TIP 434440 1733 \N \N 6030779 2025-03-19 02:08:19.147 2025-03-19 02:08:19.147 100 FEE 434440 2640 \N \N 6030780 2025-03-19 02:08:19.147 2025-03-19 02:08:19.147 900 TIP 434440 11515 \N \N 6030809 2025-03-19 02:11:45.444 2025-03-19 02:11:45.444 4000 FEE 434807 5870 \N \N 6030810 2025-03-19 02:11:45.444 2025-03-19 02:11:45.444 36000 TIP 434807 986 \N \N 6030811 2025-03-19 02:12:05.718 2025-03-19 02:12:05.718 100000 FEE 434810 19512 \N \N 6030827 2025-03-19 02:14:44.461 2025-03-19 02:14:44.461 1000 FEE 433799 20825 \N \N 6030828 2025-03-19 02:14:44.461 2025-03-19 02:14:44.461 9000 TIP 433799 711 \N \N 6030837 2025-03-19 02:15:22.823 2025-03-19 02:15:22.823 1000 FEE 434818 10112 \N \N 6030850 2025-03-19 02:18:31.137 2025-03-19 02:18:31.137 10000 FEE 434822 11240 \N \N 6030854 2025-03-19 02:18:52.806 2025-03-19 02:18:52.806 1000 FEE 434824 700 \N \N 6030868 2025-03-19 02:20:31.933 2025-03-19 02:20:31.933 1000 FEE 434791 624 \N \N 6030869 2025-03-19 02:20:31.933 2025-03-19 02:20:31.933 9000 TIP 434791 19071 \N \N 6030873 2025-03-19 02:20:51.823 2025-03-19 02:20:51.823 0 FEE 434824 9551 \N \N 6030884 2025-03-19 02:22:33.423 2025-03-19 02:22:33.423 100 FEE 434814 5499 \N \N 6030885 2025-03-19 02:22:33.423 2025-03-19 02:22:33.423 900 TIP 434814 15336 \N \N 6030897 2025-03-19 02:24:56.256 2025-03-19 02:24:56.256 2100 FEE 434754 9354 \N \N 6030898 2025-03-19 02:24:56.256 2025-03-19 02:24:56.256 18900 TIP 434754 897 \N \N 6030925 2025-03-19 02:27:54.361 2025-03-19 02:27:54.361 1100 FEE 434763 20756 \N \N 6030926 2025-03-19 02:27:54.361 2025-03-19 02:27:54.361 9900 TIP 434763 21714 \N \N 6030942 2025-03-19 02:32:12.182 2025-03-19 02:32:12.182 10000 FEE 434837 16149 \N \N 6030086 2025-03-19 00:10:33.218 2025-03-19 00:10:33.218 1600 FEE 434646 20980 \N \N 6030087 2025-03-19 00:10:33.218 2025-03-19 00:10:33.218 14400 TIP 434646 1785 \N \N 6030095 2025-03-19 00:13:25.242 2025-03-19 00:13:25.242 0 FEE 434693 16562 \N \N 6030101 2025-03-19 00:15:45.98 2025-03-19 00:15:45.98 800 FEE 434665 3400 \N \N 6030102 2025-03-19 00:15:45.98 2025-03-19 00:15:45.98 7200 TIP 434665 15536 \N \N 6030104 2025-03-19 00:17:09.912 2025-03-19 00:17:09.912 800 FEE 434637 17570 \N \N 6030105 2025-03-19 00:17:09.912 2025-03-19 00:17:09.912 7200 TIP 434637 17147 \N \N 6030169 2025-03-19 00:32:52.218 2025-03-19 00:32:52.218 800 FEE 434410 13599 \N \N 6030170 2025-03-19 00:32:52.218 2025-03-19 00:32:52.218 7200 TIP 434410 17162 \N \N 6030180 2025-03-19 00:34:11.711 2025-03-19 00:34:11.711 1000 FEE 434705 4633 \N \N 6030191 2025-03-19 00:36:17.874 2025-03-19 00:36:17.874 1000 FEE 434709 20509 \N \N 6030197 2025-03-19 00:37:44.365 2025-03-19 00:37:44.365 4000 FEE 434570 7818 \N \N 6030198 2025-03-19 00:37:44.365 2025-03-19 00:37:44.365 36000 TIP 434570 6471 \N \N 6030213 2025-03-19 00:40:27.416 2025-03-19 00:40:27.416 400 FEE 430498 690 \N \N 6030214 2025-03-19 00:40:27.416 2025-03-19 00:40:27.416 3600 TIP 430498 11527 \N \N 6030215 2025-03-19 00:41:01.475 2025-03-19 00:41:01.475 1000 FEE 434714 21494 \N \N 6030229 2025-03-19 00:41:15.672 2025-03-19 00:41:15.672 300 FEE 434713 21091 \N \N 6030230 2025-03-19 00:41:15.672 2025-03-19 00:41:15.672 2700 TIP 434713 9863 \N \N 6030241 2025-03-19 00:42:08.91 2025-03-19 00:42:08.91 1000 FEE 434715 17209 \N \N 6030274 2025-03-19 00:43:26.505 2025-03-19 00:43:26.505 2100 FEE 434410 10944 \N \N 6030275 2025-03-19 00:43:26.505 2025-03-19 00:43:26.505 18900 TIP 434410 19417 \N \N 6030278 2025-03-19 00:43:33.664 2025-03-19 00:43:33.664 1000 FEE 434716 704 \N \N 6030279 2025-03-19 00:44:04.189 2025-03-19 00:44:04.189 21000 FEE 434717 9335 \N \N 6030282 2025-03-19 00:44:13.003 2025-03-19 00:44:13.003 2100 FEE 434646 15045 \N \N 6030283 2025-03-19 00:44:13.003 2025-03-19 00:44:13.003 18900 TIP 434646 21072 \N \N 6030307 2025-03-19 00:49:56.36 2025-03-19 00:49:56.36 100 FEE 434440 761 \N \N 6030308 2025-03-19 00:49:56.36 2025-03-19 00:49:56.36 900 TIP 434440 17331 \N \N 6030311 2025-03-19 00:49:57.511 2025-03-19 00:49:57.511 100 FEE 434440 13903 \N \N 6030312 2025-03-19 00:49:57.511 2025-03-19 00:49:57.511 900 TIP 434440 17183 \N \N 6030313 2025-03-19 00:49:58.118 2025-03-19 00:49:58.118 100 FEE 434440 16276 \N \N 6030314 2025-03-19 00:49:58.118 2025-03-19 00:49:58.118 900 TIP 434440 21216 \N \N 6030328 2025-03-19 00:51:31.747 2025-03-19 00:51:31.747 21000 FEE 434724 5757 \N \N 6030345 2025-03-19 00:53:51.24 2025-03-19 00:53:51.24 1000 FEE 434728 2749 \N \N 6030379 2025-03-19 00:59:58.41 2025-03-19 00:59:58.41 1000 FEE 434736 11298 \N \N 6030398 2025-03-19 01:04:34.806 2025-03-19 01:04:34.806 2100 FEE 434724 880 \N \N 6030399 2025-03-19 01:04:34.806 2025-03-19 01:04:34.806 18900 TIP 434724 1245 \N \N 6030408 2025-03-19 01:06:57.648 2025-03-19 01:06:57.648 12800 FEE 434072 10484 \N \N 6030409 2025-03-19 01:06:57.648 2025-03-19 01:06:57.648 115200 TIP 434072 8684 \N \N 6030485 2025-03-19 01:25:17.645 2025-03-19 01:25:17.645 1100 FEE 433883 1692 \N \N 6030486 2025-03-19 01:25:17.645 2025-03-19 01:25:17.645 9900 TIP 433883 21088 \N \N 6030487 2025-03-19 01:25:20.158 2025-03-19 01:25:20.158 10000 FEE 434695 1617 \N \N 6030488 2025-03-19 01:25:20.158 2025-03-19 01:25:20.158 90000 TIP 434695 5425 \N \N 6030497 2025-03-19 01:27:02.989 2025-03-19 01:27:02.989 2100 FEE 434717 17046 \N \N 6030498 2025-03-19 01:27:02.989 2025-03-19 01:27:02.989 18900 TIP 434717 14465 \N \N 6030516 2025-03-19 01:29:48.055 2025-03-19 01:29:48.055 2100 FEE 434652 21063 \N \N 6030517 2025-03-19 01:29:48.055 2025-03-19 01:29:48.055 18900 TIP 434652 1519 \N \N 6030556 2025-03-19 01:38:47.434 2025-03-19 01:38:47.434 0 FEE 434771 11996 \N \N 6030575 2025-03-19 01:39:04.499 2025-03-19 01:39:04.499 100 FEE 434709 21067 \N \N 6030576 2025-03-19 01:39:04.499 2025-03-19 01:39:04.499 900 TIP 434709 629 \N \N 6030583 2025-03-19 01:39:08.752 2025-03-19 01:39:08.752 2100 FEE 434756 5487 \N \N 6030584 2025-03-19 01:39:08.752 2025-03-19 01:39:08.752 18900 TIP 434756 6393 \N \N 6030586 2025-03-19 01:39:22.759 2025-03-19 01:39:22.759 1000 FEE 434773 16556 \N \N 6030114 2025-03-19 00:22:22.354 2025-03-19 00:22:22.354 0 FEE 434696 12779 \N \N 6030117 2025-03-19 00:22:56.263 2025-03-19 00:22:56.263 800 FEE 434627 20588 \N \N 6030118 2025-03-19 00:22:56.263 2025-03-19 00:22:56.263 7200 TIP 434627 712 \N \N 6030125 2025-03-19 00:25:00.141 2025-03-19 00:25:00.141 2100 FEE 434697 1424 \N \N 6030126 2025-03-19 00:25:00.141 2025-03-19 00:25:00.141 18900 TIP 434697 10490 \N \N 6030132 2025-03-19 00:26:48.623 2025-03-19 00:26:48.623 1000 FEE 434700 768 \N \N 6030140 2025-03-19 00:28:07.398 2025-03-19 00:28:07.398 1200 FEE 434319 3656 \N \N 6030141 2025-03-19 00:28:07.398 2025-03-19 00:28:07.398 10800 TIP 434319 2111 \N \N 6030153 2025-03-19 00:31:00.602 2025-03-19 00:31:00.602 4000 FEE 434498 9332 \N \N 6030154 2025-03-19 00:31:00.602 2025-03-19 00:31:00.602 36000 TIP 434498 19459 \N \N 6030159 2025-03-19 00:31:04.7 2025-03-19 00:31:04.7 4000 FEE 434488 1652 \N \N 6030160 2025-03-19 00:31:04.7 2025-03-19 00:31:04.7 36000 TIP 434488 16660 \N \N 6030188 2025-03-19 00:35:46.303 2025-03-19 00:35:46.303 4000 FEE 434659 11716 \N \N 6030189 2025-03-19 00:35:46.303 2025-03-19 00:35:46.303 36000 TIP 434659 618 \N \N 6030200 2025-03-19 00:38:33.002 2025-03-19 00:38:33.002 1000 FEE 434646 16543 \N \N 6030201 2025-03-19 00:38:33.002 2025-03-19 00:38:33.002 9000 TIP 434646 6229 \N \N 6030207 2025-03-19 00:39:17.453 2025-03-19 00:39:17.453 4000 FEE 434534 18116 \N \N 6030208 2025-03-19 00:39:17.453 2025-03-19 00:39:17.453 36000 TIP 434534 20781 \N \N 6030223 2025-03-19 00:41:14.698 2025-03-19 00:41:14.698 300 FEE 434713 2952 \N \N 6030224 2025-03-19 00:41:14.698 2025-03-19 00:41:14.698 2700 TIP 434713 1881 \N \N 6030298 2025-03-19 00:47:20.526 2025-03-19 00:47:20.526 1000 FEE 434719 627 \N \N 6030319 2025-03-19 00:49:59.683 2025-03-19 00:49:59.683 100 FEE 434440 2829 \N \N 6030320 2025-03-19 00:49:59.683 2025-03-19 00:49:59.683 900 TIP 434440 20616 \N \N 6030361 2025-03-19 00:55:43.298 2025-03-19 00:55:43.298 1000 FEE 434717 12562 \N \N 6030362 2025-03-19 00:55:43.298 2025-03-19 00:55:43.298 9000 TIP 434717 15180 \N \N 6030371 2025-03-19 00:58:24.245 2025-03-19 00:58:24.245 1000 FEE 434732 11873 \N \N 6030378 2025-03-19 00:59:48.504 2025-03-19 00:59:48.504 1000 FEE 434735 21090 \N \N 6030400 2025-03-19 01:04:35.256 2025-03-19 01:04:35.256 2100 FEE 434717 18101 \N \N 6030401 2025-03-19 01:04:35.256 2025-03-19 01:04:35.256 18900 TIP 434717 2492 \N \N 6030425 2025-03-19 01:09:40.681 2025-03-19 01:09:40.681 1000 FEE 434746 19569 \N \N 6030463 2025-03-19 01:23:50.918 2025-03-19 01:23:50.918 1000 FEE 434754 11829 \N \N 6030471 2025-03-19 01:25:02.117 2025-03-19 01:25:02.117 100 FEE 434755 5725 \N \N 6030472 2025-03-19 01:25:02.117 2025-03-19 01:25:02.117 900 TIP 434755 2285 \N \N 6030481 2025-03-19 01:25:06.253 2025-03-19 01:25:06.253 10000 FEE 434124 974 \N \N 6030482 2025-03-19 01:25:06.253 2025-03-19 01:25:06.253 90000 TIP 434124 13132 \N \N 6030502 2025-03-19 01:27:46.236 2025-03-19 01:27:46.236 50000 FEE 434705 16542 \N \N 6030503 2025-03-19 01:27:46.236 2025-03-19 01:27:46.236 450000 TIP 434705 2061 \N \N 6030508 2025-03-19 01:29:01.744 2025-03-19 01:29:01.744 1000 FEE 434760 9242 \N \N 6030514 2025-03-19 01:29:42.505 2025-03-19 01:29:42.505 100 FEE 434488 2640 \N \N 6030515 2025-03-19 01:29:42.505 2025-03-19 01:29:42.505 900 TIP 434488 21207 \N \N 6030518 2025-03-19 01:29:56.983 2025-03-19 01:29:56.983 1600 FEE 434752 13378 \N \N 6030519 2025-03-19 01:29:56.983 2025-03-19 01:29:56.983 14400 TIP 434752 21003 \N \N 6030521 2025-03-19 01:30:28.898 2025-03-19 01:30:28.898 1000 FEE 434763 21033 \N \N 6030535 2025-03-19 01:34:11.565 2025-03-19 01:34:11.565 200 FEE 434751 19217 \N \N 6030536 2025-03-19 01:34:11.565 2025-03-19 01:34:11.565 1800 TIP 434751 21833 \N \N 6030546 2025-03-19 01:37:30.272 2025-03-19 01:37:30.272 2000 FEE 434724 1584 \N \N 6030547 2025-03-19 01:37:30.272 2025-03-19 01:37:30.272 18000 TIP 434724 21424 \N \N 6030552 2025-03-19 01:38:00.852 2025-03-19 01:38:00.852 1000 FEE 434770 673 \N \N 6030590 2025-03-19 01:39:56.165 2025-03-19 01:39:56.165 100 FEE 434743 21103 \N \N 6030591 2025-03-19 01:39:56.165 2025-03-19 01:39:56.165 900 TIP 434743 10591 \N \N 6030609 2025-03-19 01:40:55.952 2025-03-19 01:40:55.952 100 FEE 434775 2213 \N \N 6030610 2025-03-19 01:40:55.952 2025-03-19 01:40:55.952 900 TIP 434775 1652 \N \N 6030617 2025-03-19 01:41:37.158 2025-03-19 01:41:37.158 1000 FEE 434778 21712 \N \N 6030622 2025-03-19 01:43:18.948 2025-03-19 01:43:18.948 1000 FEE 434514 9335 \N \N 6030623 2025-03-19 01:43:18.948 2025-03-19 01:43:18.948 9000 TIP 434514 3478 \N \N 6030627 2025-03-19 01:44:15.677 2025-03-19 01:44:15.677 1000 FEE 434695 848 \N \N 6030628 2025-03-19 01:44:15.677 2025-03-19 01:44:15.677 9000 TIP 434695 1483 \N \N 6030634 2025-03-19 01:45:34.415 2025-03-19 01:45:34.415 1000 FEE 434285 20099 \N \N 6030635 2025-03-19 01:45:34.415 2025-03-19 01:45:34.415 9000 TIP 434285 4074 \N \N 6030646 2025-03-19 01:47:39.105 2025-03-19 01:47:39.105 2100 FEE 434723 20912 \N \N 6030647 2025-03-19 01:47:39.105 2025-03-19 01:47:39.105 18900 TIP 434723 17570 \N \N 6030657 2025-03-19 01:50:56.224 2025-03-19 01:50:56.224 1100 FEE 434781 12222 \N \N 6030658 2025-03-19 01:50:56.224 2025-03-19 01:50:56.224 9900 TIP 434781 20152 \N \N 6030659 2025-03-19 01:50:56.781 2025-03-19 01:50:56.781 1100 FEE 434781 17741 \N \N 6030660 2025-03-19 01:50:56.781 2025-03-19 01:50:56.781 9900 TIP 434781 687 \N \N 6030694 2025-03-19 01:58:15.039 2025-03-19 01:58:15.039 1000 FEE 434759 12819 \N \N 6030695 2025-03-19 01:58:15.039 2025-03-19 01:58:15.039 9000 TIP 434759 15488 \N \N 6030726 2025-03-19 02:01:55.882 2025-03-19 02:01:55.882 1000 FEE 434755 11450 \N \N 6030727 2025-03-19 02:01:55.882 2025-03-19 02:01:55.882 9000 TIP 434755 1009 \N \N 6030743 2025-03-19 02:06:20.811 2025-03-19 02:06:20.811 1000 FEE 434799 21374 \N \N 6030749 2025-03-19 02:06:53.383 2025-03-19 02:06:53.383 1000 FEE 434797 10554 \N \N 6030750 2025-03-19 02:06:53.383 2025-03-19 02:06:53.383 9000 TIP 434797 13361 \N \N 6030756 2025-03-19 02:06:57.713 2025-03-19 02:06:57.713 1000 FEE 434796 20525 \N \N 6030757 2025-03-19 02:06:57.713 2025-03-19 02:06:57.713 9000 TIP 434796 2000 \N \N 6030764 2025-03-19 02:07:28.692 2025-03-19 02:07:28.692 4000 FEE 434800 1717 \N \N 6030765 2025-03-19 02:07:28.692 2025-03-19 02:07:28.692 36000 TIP 434800 14688 \N \N 6030771 2025-03-19 02:08:17.946 2025-03-19 02:08:17.946 100 FEE 434440 4395 \N \N 6030772 2025-03-19 02:08:17.946 2025-03-19 02:08:17.946 900 TIP 434440 21140 \N \N 6030790 2025-03-19 02:09:16.453 2025-03-19 02:09:16.453 100 FEE 434177 21401 \N \N 6030791 2025-03-19 02:09:16.453 2025-03-19 02:09:16.453 900 TIP 434177 6717 \N \N 6030794 2025-03-19 02:09:49.935 2025-03-19 02:09:49.935 1000 FEE 434805 16447 \N \N 6030829 2025-03-19 02:14:45.561 2025-03-19 02:14:45.561 2000 FEE 433799 16513 \N \N 6030830 2025-03-19 02:14:45.561 2025-03-19 02:14:45.561 18000 TIP 433799 1429 \N \N 6030833 2025-03-19 02:14:48.215 2025-03-19 02:14:48.215 1000 FEE 434816 4345 \N \N 6030839 2025-03-19 02:15:32.378 2025-03-19 02:15:32.378 1600 FEE 434806 1316 \N \N 6030840 2025-03-19 02:15:32.378 2025-03-19 02:15:32.378 14400 TIP 434806 1273 \N \N 6030870 2025-03-19 02:20:35.211 2025-03-19 02:20:35.211 10000 FEE 434498 21148 \N \N 6030871 2025-03-19 02:20:35.211 2025-03-19 02:20:35.211 90000 TIP 434498 19668 \N \N 6030878 2025-03-19 02:22:04.673 2025-03-19 02:22:04.673 10000 FEE 434827 11498 \N \N 6030906 2025-03-19 02:25:30.235 2025-03-19 02:25:30.235 1100 FEE 434830 11885 \N \N 6030907 2025-03-19 02:25:30.235 2025-03-19 02:25:30.235 9900 TIP 434830 16839 \N \N 6030914 2025-03-19 02:25:52.529 2025-03-19 02:25:52.529 1000 FEE 433831 7097 \N \N 6030915 2025-03-19 02:25:52.529 2025-03-19 02:25:52.529 9000 TIP 433831 807 \N \N 6030927 2025-03-19 02:28:01.354 2025-03-19 02:28:01.354 1100 FEE 432861 17041 \N \N 6030928 2025-03-19 02:28:01.354 2025-03-19 02:28:01.354 9900 TIP 432861 16660 \N \N 6030945 2025-03-19 02:32:25.145 2025-03-19 02:32:25.145 7700 FEE 434828 726 \N \N 6030946 2025-03-19 02:32:25.145 2025-03-19 02:32:25.145 69300 TIP 434828 10638 \N \N 6030952 2025-03-19 02:33:05.391 2025-03-19 02:33:05.391 1100 FEE 434465 7659 \N \N 6030953 2025-03-19 02:33:05.391 2025-03-19 02:33:05.391 9900 TIP 434465 21373 \N \N 6030996 2025-03-19 02:40:02.743 2025-03-19 02:40:02.743 1000 FEE 434842 15484 \N \N 6031020 2025-03-19 02:43:48.674 2025-03-19 02:43:48.674 1000 FEE 434848 13365 \N \N 6031082 2025-03-19 03:03:47.636 2025-03-19 03:03:47.636 0 FEE 434858 16753 \N \N 6036244 2025-03-19 11:05:09.029 2025-03-19 11:05:09.029 1000 FEE 435468 683 \N \N 6036282 2025-03-19 11:17:33.808 2025-03-19 11:17:33.808 1100 FEE 435231 15336 \N \N 6036283 2025-03-19 11:17:33.808 2025-03-19 11:17:33.808 9900 TIP 435231 3478 \N \N 6036291 2025-03-19 11:17:34.913 2025-03-19 11:17:34.913 1100 FEE 435261 13398 \N \N 6036292 2025-03-19 11:17:34.913 2025-03-19 11:17:34.913 9900 TIP 435261 21526 \N \N 6036323 2025-03-19 11:26:30.334 2025-03-19 11:26:30.334 1000 FEE 435480 21766 \N \N 6036324 2025-03-19 11:26:30.334 2025-03-19 11:26:30.334 9000 TIP 435480 20509 \N \N 6036345 2025-03-19 11:30:45.873 2025-03-19 11:30:45.873 4000 FEE 435480 21303 \N \N 6036346 2025-03-19 11:30:45.873 2025-03-19 11:30:45.873 36000 TIP 435480 1673 \N \N 6036355 2025-03-19 11:36:44.716 2025-03-19 11:36:44.716 100000 FEE 435486 2176 \N \N 6036362 2025-03-19 11:38:05.398 2025-03-19 11:38:05.398 2100 FEE 435261 20190 \N \N 6036363 2025-03-19 11:38:05.398 2025-03-19 11:38:05.398 18900 TIP 435261 20370 \N \N 6036398 2025-03-19 11:44:10.609 2025-03-19 11:44:10.609 800 FEE 434318 2459 \N \N 6036399 2025-03-19 11:44:10.609 2025-03-19 11:44:10.609 7200 TIP 434318 3706 \N \N 6036402 2025-03-19 11:44:24.716 2025-03-19 11:44:24.716 10000 FEE 435495 17106 \N \N 6036413 2025-03-19 11:45:34.224 2025-03-19 11:45:34.224 2300 FEE 435497 14278 \N \N 6036414 2025-03-19 11:45:34.224 2025-03-19 11:45:34.224 20700 TIP 435497 21088 \N \N 6036423 2025-03-19 11:45:35.922 2025-03-19 11:45:35.922 2300 FEE 435497 640 \N \N 6036424 2025-03-19 11:45:35.922 2025-03-19 11:45:35.922 20700 TIP 435497 2204 \N \N 6036429 2025-03-19 11:45:36.785 2025-03-19 11:45:36.785 2300 FEE 435497 19689 \N \N 6036430 2025-03-19 11:45:36.785 2025-03-19 11:45:36.785 20700 TIP 435497 16830 \N \N 6036481 2025-03-19 11:45:55.201 2025-03-19 11:45:55.201 2300 FEE 435497 19570 \N \N 6036482 2025-03-19 11:45:55.201 2025-03-19 11:45:55.201 20700 TIP 435497 5069 \N \N 6036498 2025-03-19 11:46:18.382 2025-03-19 11:46:18.382 1000 FEE 435473 699 \N \N 6036499 2025-03-19 11:46:18.382 2025-03-19 11:46:18.382 9000 TIP 435473 18500 \N \N 6036505 2025-03-19 11:47:01.813 2025-03-19 11:47:01.813 1000 FEE 435427 19292 \N \N 6036506 2025-03-19 11:47:01.813 2025-03-19 11:47:01.813 9000 TIP 435427 1692 \N \N 6036517 2025-03-19 11:48:08.924 2025-03-19 11:48:08.924 1000 FEE 435503 2327 \N \N 6036541 2025-03-19 11:52:13.427 2025-03-19 11:52:13.427 1000 FEE 435500 20782 \N \N 6036542 2025-03-19 11:52:13.427 2025-03-19 11:52:13.427 9000 TIP 435500 1626 \N \N 6036543 2025-03-19 11:52:13.593 2025-03-19 11:52:13.593 1000 FEE 435500 1505 \N \N 6036544 2025-03-19 11:52:13.593 2025-03-19 11:52:13.593 9000 TIP 435500 15484 \N \N 6030321 2025-03-19 00:50:00.158 2025-03-19 00:50:00.158 100 FEE 434440 15488 \N \N 6030322 2025-03-19 00:50:00.158 2025-03-19 00:50:00.158 900 TIP 434440 20680 \N \N 6030325 2025-03-19 00:50:20.204 2025-03-19 00:50:20.204 2100 FEE 434558 1784 \N \N 6030326 2025-03-19 00:50:20.204 2025-03-19 00:50:20.204 18900 TIP 434558 21797 \N \N 6030333 2025-03-19 00:52:21.504 2025-03-19 00:52:21.504 10000 FEE 434285 20939 \N \N 6030334 2025-03-19 00:52:21.504 2025-03-19 00:52:21.504 90000 TIP 434285 16309 \N \N 6030340 2025-03-19 00:53:31.272 2025-03-19 00:53:31.272 100000 FEE 434727 13198 \N \N 6030357 2025-03-19 00:55:22.319 2025-03-19 00:55:22.319 210000 FEE 434319 8448 \N \N 6030358 2025-03-19 00:55:22.319 2025-03-19 00:55:22.319 1890000 TIP 434319 696 \N \N 6030359 2025-03-19 00:55:36.42 2025-03-19 00:55:36.42 1000 FEE 434642 19494 \N \N 6030360 2025-03-19 00:55:36.42 2025-03-19 00:55:36.42 9000 TIP 434642 20133 \N \N 6030372 2025-03-19 00:58:25.152 2025-03-19 00:58:25.152 1000 FEE 434733 13553 \N \N 6030383 2025-03-19 01:00:50.417 2025-03-19 01:00:50.417 1100 FEE 434609 16259 \N \N 6030384 2025-03-19 01:00:50.417 2025-03-19 01:00:50.417 9900 TIP 434609 2335 \N \N 6030386 2025-03-19 01:01:18.46 2025-03-19 01:01:18.46 1000 FEE 434737 17095 \N \N 6030418 2025-03-19 01:08:50.786 2025-03-19 01:08:50.786 12800 FEE 433687 20377 \N \N 6030419 2025-03-19 01:08:50.786 2025-03-19 01:08:50.786 115200 TIP 433687 13574 \N \N 6030436 2025-03-19 01:11:57.157 2025-03-19 01:11:57.157 1000 FEE 434747 1245 \N \N 6030443 2025-03-19 01:15:06.043 2025-03-19 01:15:06.043 1100 FEE 434695 15588 \N \N 6030444 2025-03-19 01:15:06.043 2025-03-19 01:15:06.043 9900 TIP 434695 17552 \N \N 6030450 2025-03-19 01:19:00.152 2025-03-19 01:19:00.152 1000 FEE 434750 16562 \N \N 6030455 2025-03-19 01:21:54.798 2025-03-19 01:21:54.798 1000 FEE 434752 3360 \N \N 6030475 2025-03-19 01:25:02.564 2025-03-19 01:25:02.564 100 FEE 434755 20614 \N \N 6030476 2025-03-19 01:25:02.564 2025-03-19 01:25:02.564 900 TIP 434755 20624 \N \N 6038339 2025-03-19 15:04:13.661 2025-03-19 15:04:13.661 2700 TIP 435457 10638 \N \N 6038356 2025-03-19 15:04:15.927 2025-03-19 15:04:15.927 300 FEE 435457 20603 \N \N 6038357 2025-03-19 15:04:15.927 2025-03-19 15:04:15.927 2700 TIP 435457 1495 \N \N 6038370 2025-03-19 15:04:50.77 2025-03-19 15:04:50.77 1000 FEE 435680 11992 \N \N 6038374 2025-03-19 15:05:50.367 2025-03-19 15:05:50.367 1000 FEE 435681 9438 \N \N 6038386 2025-03-19 15:06:49.696 2025-03-19 15:06:49.696 100 FEE 435579 15544 \N \N 6038387 2025-03-19 15:06:49.696 2025-03-19 15:06:49.696 900 TIP 435579 13587 \N \N 6038388 2025-03-19 15:06:49.862 2025-03-19 15:06:49.862 900 FEE 435579 21824 \N \N 6038389 2025-03-19 15:06:49.862 2025-03-19 15:06:49.862 8100 TIP 435579 21058 \N \N 6038391 2025-03-19 15:07:12.588 2025-03-19 15:07:12.588 10000 FEE 435649 21768 \N \N 6038392 2025-03-19 15:07:12.588 2025-03-19 15:07:12.588 90000 TIP 435649 5557 \N \N 6038396 2025-03-19 15:08:34.258 2025-03-19 15:08:34.258 1300 FEE 435657 17212 \N \N 6038397 2025-03-19 15:08:34.258 2025-03-19 15:08:34.258 11700 TIP 435657 1784 \N \N 6038407 2025-03-19 15:09:26.489 2025-03-19 15:09:26.489 0 FEE 435685 21391 \N \N 6038449 2025-03-19 15:16:28.725 2025-03-19 15:16:28.725 100 FEE 435580 12609 \N \N 6038450 2025-03-19 15:16:28.725 2025-03-19 15:16:28.725 900 TIP 435580 633 \N \N 6038453 2025-03-19 15:16:36.263 2025-03-19 15:16:36.263 1000 FEE 435688 21119 \N \N 6038468 2025-03-19 15:17:14.606 2025-03-19 15:17:14.606 21100 FEE 435616 17365 \N \N 6038469 2025-03-19 15:17:14.606 2025-03-19 15:17:14.606 189900 TIP 435616 20715 \N \N 6038471 2025-03-19 15:17:36.417 2025-03-19 15:17:36.417 100000 FEE 435690 4259 \N \N 6038485 2025-03-19 15:17:58.086 2025-03-19 15:17:58.086 300 FEE 435677 666 \N \N 6038486 2025-03-19 15:17:58.086 2025-03-19 15:17:58.086 2700 TIP 435677 15858 \N \N 6038502 2025-03-19 15:18:11.246 2025-03-19 15:18:11.246 900 FEE 435634 11609 \N \N 6038503 2025-03-19 15:18:11.246 2025-03-19 15:18:11.246 8100 TIP 435634 4225 \N \N 6038523 2025-03-19 15:18:23.238 2025-03-19 15:18:23.238 300 FEE 435585 20669 \N \N 6038524 2025-03-19 15:18:23.238 2025-03-19 15:18:23.238 2700 TIP 435585 18734 \N \N 6038535 2025-03-19 15:19:42.668 2025-03-19 15:19:42.668 4000 FEE 435690 11897 \N \N 6038536 2025-03-19 15:19:42.668 2025-03-19 15:19:42.668 36000 TIP 435690 21228 \N \N 6038544 2025-03-19 15:21:00.787 2025-03-19 15:21:00.787 10000 FEE 435666 12422 \N \N 6038545 2025-03-19 15:21:00.787 2025-03-19 15:21:00.787 90000 TIP 435666 10291 \N \N 6038554 2025-03-19 15:22:58.082 2025-03-19 15:22:58.082 21000 FEE 435695 7827 \N \N 6038556 2025-03-19 15:23:40.833 2025-03-19 15:23:40.833 1000 FEE 435690 895 \N \N 6038557 2025-03-19 15:23:40.833 2025-03-19 15:23:40.833 9000 TIP 435690 1009 \N \N 6038570 2025-03-19 15:26:21.985 2025-03-19 15:26:21.985 10000 FEE 435696 14015 \N \N 6038597 2025-03-19 15:30:25.395 2025-03-19 15:30:25.395 1000 FEE 435698 21248 \N \N 6038598 2025-03-19 15:30:25.395 2025-03-19 15:30:25.395 9000 TIP 435698 2670 \N \N 6038607 2025-03-19 15:30:57.098 2025-03-19 15:30:57.098 2300 FEE 435657 7869 \N \N 6038608 2025-03-19 15:30:57.098 2025-03-19 15:30:57.098 20700 TIP 435657 9758 \N \N 6038609 2025-03-19 15:30:57.263 2025-03-19 15:30:57.263 2300 FEE 435657 18309 \N \N 6038610 2025-03-19 15:30:57.263 2025-03-19 15:30:57.263 20700 TIP 435657 16556 \N \N 6038617 2025-03-19 15:30:58.165 2025-03-19 15:30:58.165 2300 FEE 435657 21184 \N \N 6038618 2025-03-19 15:30:58.165 2025-03-19 15:30:58.165 20700 TIP 435657 16667 \N \N 6038668 2025-03-19 15:36:09.82 2025-03-19 15:36:09.82 1600 FEE 435679 787 \N \N 6038669 2025-03-19 15:36:09.82 2025-03-19 15:36:09.82 14400 TIP 435679 20788 \N \N 6038678 2025-03-19 15:38:25.207 2025-03-19 15:38:25.207 2000 FEE 435681 17741 \N \N 6038679 2025-03-19 15:38:25.207 2025-03-19 15:38:25.207 18000 TIP 435681 2061 \N \N 6038681 2025-03-19 15:39:16.918 2025-03-19 15:39:16.918 2100 FEE 435457 5175 \N \N 6038682 2025-03-19 15:39:16.918 2025-03-19 15:39:16.918 18900 TIP 435457 20812 \N \N 6038711 2025-03-19 15:41:55.047 2025-03-19 15:41:55.047 1100 FEE 435497 10661 \N \N 6038712 2025-03-19 15:41:55.047 2025-03-19 15:41:55.047 9900 TIP 435497 5057 \N \N 6038735 2025-03-19 15:51:51.19 2025-03-19 15:51:51.19 1000 FEE 435717 11897 \N \N 6038740 2025-03-19 15:51:58.199 2025-03-19 15:51:58.199 300 FEE 434599 7580 \N \N 6038741 2025-03-19 15:51:58.199 2025-03-19 15:51:58.199 2700 TIP 434599 7773 \N \N 6038742 2025-03-19 15:51:59.547 2025-03-19 15:51:59.547 300 FEE 435715 20439 \N \N 6038743 2025-03-19 15:51:59.547 2025-03-19 15:51:59.547 2700 TIP 435715 12609 \N \N 6038744 2025-03-19 15:51:59.714 2025-03-19 15:51:59.714 300 FEE 435715 17592 \N \N 6038745 2025-03-19 15:51:59.714 2025-03-19 15:51:59.714 2700 TIP 435715 21713 \N \N 6038343 2025-03-19 15:04:14.19 2025-03-19 15:04:14.19 2700 TIP 435457 19806 \N \N 6038344 2025-03-19 15:04:14.42 2025-03-19 15:04:14.42 300 FEE 435457 746 \N \N 6038345 2025-03-19 15:04:14.42 2025-03-19 15:04:14.42 2700 TIP 435457 12368 \N \N 6038401 2025-03-19 15:09:10.741 2025-03-19 15:09:10.741 1100 FEE 435579 19863 \N \N 6038402 2025-03-19 15:09:10.741 2025-03-19 15:09:10.741 9900 TIP 435579 1650 \N \N 6038411 2025-03-19 15:10:16.113 2025-03-19 15:10:16.113 1000 FEE 435453 12768 \N \N 6038412 2025-03-19 15:10:16.113 2025-03-19 15:10:16.113 9000 TIP 435453 8380 \N \N 6038447 2025-03-19 15:16:28.441 2025-03-19 15:16:28.441 100 FEE 435580 16789 \N \N 6038448 2025-03-19 15:16:28.441 2025-03-19 15:16:28.441 900 TIP 435580 16406 \N \N 6038466 2025-03-19 15:16:56.309 2025-03-19 15:16:56.309 0 FEE 435687 21444 \N \N 6038473 2025-03-19 15:17:46.611 2025-03-19 15:17:46.611 4000 FEE 435679 15588 \N \N 6038474 2025-03-19 15:17:46.611 2025-03-19 15:17:46.611 36000 TIP 435679 21523 \N \N 6038487 2025-03-19 15:17:58.258 2025-03-19 15:17:58.258 300 FEE 435677 9758 \N \N 6038488 2025-03-19 15:17:58.258 2025-03-19 15:17:58.258 2700 TIP 435677 803 \N \N 6038491 2025-03-19 15:17:58.564 2025-03-19 15:17:58.564 300 FEE 435677 20436 \N \N 6038492 2025-03-19 15:17:58.564 2025-03-19 15:17:58.564 2700 TIP 435677 17541 \N \N 6038493 2025-03-19 15:17:58.735 2025-03-19 15:17:58.735 300 FEE 435677 19193 \N \N 6038494 2025-03-19 15:17:58.735 2025-03-19 15:17:58.735 2700 TIP 435677 797 \N \N 6038495 2025-03-19 15:17:58.887 2025-03-19 15:17:58.887 300 FEE 435677 1638 \N \N 6038496 2025-03-19 15:17:58.887 2025-03-19 15:17:58.887 2700 TIP 435677 10291 \N \N 6038507 2025-03-19 15:18:13.669 2025-03-19 15:18:13.669 900 FEE 435639 13544 \N \N 6038508 2025-03-19 15:18:13.669 2025-03-19 15:18:13.669 8100 TIP 435639 18615 \N \N 6038546 2025-03-19 15:21:02.112 2025-03-19 15:21:02.112 10000 FEE 435492 10469 \N \N 6038547 2025-03-19 15:21:02.112 2025-03-19 15:21:02.112 90000 TIP 435492 9107 \N \N 6038562 2025-03-19 15:24:54.656 2025-03-19 15:24:54.656 1000 FEE 435488 20757 \N \N 6038563 2025-03-19 15:24:54.656 2025-03-19 15:24:54.656 9000 TIP 435488 16348 \N \N 6038593 2025-03-19 15:30:25.023 2025-03-19 15:30:25.023 1000 FEE 435698 21670 \N \N 6038594 2025-03-19 15:30:25.023 2025-03-19 15:30:25.023 9000 TIP 435698 16276 \N \N 6038599 2025-03-19 15:30:25.555 2025-03-19 15:30:25.555 1000 FEE 435698 18068 \N \N 6038600 2025-03-19 15:30:25.555 2025-03-19 15:30:25.555 9000 TIP 435698 21320 \N \N 6038615 2025-03-19 15:30:58.024 2025-03-19 15:30:58.024 2300 FEE 435657 21296 \N \N 6038616 2025-03-19 15:30:58.024 2025-03-19 15:30:58.024 20700 TIP 435657 11263 \N \N 6038631 2025-03-19 15:31:46.284 2025-03-19 15:31:46.284 0 FEE 435704 1162 \N \N 6038652 2025-03-19 15:31:57.281 2025-03-19 15:31:57.281 2300 FEE 435488 2431 \N \N 6038653 2025-03-19 15:31:57.281 2025-03-19 15:31:57.281 20700 TIP 435488 18069 \N \N 6038659 2025-03-19 15:33:14.963 2025-03-19 15:33:14.963 1000 FEE 435677 3478 \N \N 6038660 2025-03-19 15:33:14.963 2025-03-19 15:33:14.963 9000 TIP 435677 1673 \N \N 6038683 2025-03-19 15:39:29.519 2025-03-19 15:39:29.519 1000 FEE 435709 16447 \N \N 6038702 2025-03-19 15:41:52.37 2025-03-19 15:41:52.37 1100 FEE 435551 19759 \N \N 6038703 2025-03-19 15:41:52.37 2025-03-19 15:41:52.37 9900 TIP 435551 13599 \N \N 6038704 2025-03-19 15:41:52.992 2025-03-19 15:41:52.992 1100 FEE 435657 8423 \N \N 6038705 2025-03-19 15:41:52.992 2025-03-19 15:41:52.992 9900 TIP 435657 20280 \N \N 6038706 2025-03-19 15:41:53.142 2025-03-19 15:41:53.142 1100 FEE 435657 12057 \N \N 6038707 2025-03-19 15:41:53.142 2025-03-19 15:41:53.142 9900 TIP 435657 20381 \N \N 6038709 2025-03-19 15:41:53.287 2025-03-19 15:41:53.287 1100 FEE 435657 9352 \N \N 6038710 2025-03-19 15:41:53.287 2025-03-19 15:41:53.287 9900 TIP 435657 1094 \N \N 6038720 2025-03-19 15:43:56.913 2025-03-19 15:43:56.913 1000 FEE 435713 15273 \N \N 6038733 2025-03-19 15:50:32.604 2025-03-19 15:50:32.604 1000 FEE 435716 2519 \N \N 6038754 2025-03-19 15:54:03.65 2025-03-19 15:54:03.65 1000 FEE 435720 15549 \N \N 6038777 2025-03-19 15:58:27.068 2025-03-19 15:58:27.068 200 FEE 435294 880 \N \N 6038778 2025-03-19 15:58:27.068 2025-03-19 15:58:27.068 1800 TIP 435294 18330 \N \N 6038783 2025-03-19 15:58:41.186 2025-03-19 15:58:41.186 1100 FEE 435474 20713 \N \N 6038784 2025-03-19 15:58:41.186 2025-03-19 15:58:41.186 9900 TIP 435474 9107 \N \N 6038796 2025-03-19 16:01:39.278 2025-03-19 16:01:39.278 9000 FEE 435610 17095 \N \N 6038797 2025-03-19 16:01:39.278 2025-03-19 16:01:39.278 81000 TIP 435610 20680 \N \N 6038811 2025-03-19 16:06:43.104 2025-03-19 16:06:43.104 500 FEE 435420 6149 \N \N 6038812 2025-03-19 16:06:43.104 2025-03-19 16:06:43.104 4500 TIP 435420 4692 \N \N 6038826 2025-03-19 16:10:14.332 2025-03-19 16:10:14.332 1000 FEE 435624 21083 \N \N 6038827 2025-03-19 16:10:14.332 2025-03-19 16:10:14.332 9000 TIP 435624 965 \N \N 6038836 2025-03-19 16:14:42.179 2025-03-19 16:14:42.179 1000 FEE 435739 8729 \N \N 6038866 2025-03-19 16:16:42.046 2025-03-19 16:16:42.046 100000 FEE 435242 9246 \N \N 6038867 2025-03-19 16:16:42.046 2025-03-19 16:16:42.046 900000 TIP 435242 12346 \N \N 6038877 2025-03-19 16:18:04.935 2025-03-19 16:18:04.935 1000 FEE 435516 1806 \N \N 6038878 2025-03-19 16:18:04.935 2025-03-19 16:18:04.935 9000 TIP 435516 1733 \N \N 6038879 2025-03-19 16:18:08.213 2025-03-19 16:18:08.213 1000 POLL 435516 16717 \N \N 6038910 2025-03-19 16:29:21.829 2025-03-19 16:29:21.829 1000 FEE 435046 10818 \N \N 6038911 2025-03-19 16:29:21.829 2025-03-19 16:29:21.829 9000 TIP 435046 17710 \N \N 6038912 2025-03-19 16:29:28.182 2025-03-19 16:29:28.182 2300 FEE 435711 21339 \N \N 6038913 2025-03-19 16:29:28.182 2025-03-19 16:29:28.182 20700 TIP 435711 1236 \N \N 6038914 2025-03-19 16:29:28.358 2025-03-19 16:29:28.358 2300 FEE 435711 21480 \N \N 6038915 2025-03-19 16:29:28.358 2025-03-19 16:29:28.358 20700 TIP 435711 18174 \N \N 6038918 2025-03-19 16:29:36.129 2025-03-19 16:29:36.129 2300 FEE 435610 19581 \N \N 6038919 2025-03-19 16:29:36.129 2025-03-19 16:29:36.129 20700 TIP 435610 671 \N \N 6038926 2025-03-19 16:29:44.462 2025-03-19 16:29:44.462 2300 FEE 435596 21771 \N \N 6038927 2025-03-19 16:29:44.462 2025-03-19 16:29:44.462 20700 TIP 435596 14939 \N \N 6038928 2025-03-19 16:29:44.646 2025-03-19 16:29:44.646 2300 FEE 435596 20619 \N \N 6038929 2025-03-19 16:29:44.646 2025-03-19 16:29:44.646 20700 TIP 435596 5646 \N \N 6038934 2025-03-19 16:29:47.536 2025-03-19 16:29:47.536 2300 FEE 435639 739 \N \N 6038935 2025-03-19 16:29:47.536 2025-03-19 16:29:47.536 20700 TIP 435639 20603 \N \N 6038938 2025-03-19 16:29:47.851 2025-03-19 16:29:47.851 2300 FEE 435639 20939 \N \N 6038939 2025-03-19 16:29:47.851 2025-03-19 16:29:47.851 20700 TIP 435639 15491 \N \N 6038952 2025-03-19 16:31:28.252 2025-03-19 16:31:28.252 2500 FEE 435647 12291 \N \N 6038953 2025-03-19 16:31:28.252 2025-03-19 16:31:28.252 22500 TIP 435647 10719 \N \N 6038961 2025-03-19 16:32:25.886 2025-03-19 16:32:25.886 2100 FEE 435679 7185 \N \N 6038962 2025-03-19 16:32:25.886 2025-03-19 16:32:25.886 18900 TIP 435679 6393 \N \N 6038967 2025-03-19 16:35:51.143 2025-03-19 16:35:51.143 0 FEE 435746 14225 \N \N 6039029 2025-03-19 16:53:59.741 2025-03-19 16:53:59.741 2700 FEE 435531 11454 \N \N 6039030 2025-03-19 16:53:59.741 2025-03-19 16:53:59.741 24300 TIP 435531 20987 \N \N 6039035 2025-03-19 16:55:32.038 2025-03-19 16:55:32.038 2100 FEE 435274 21575 \N \N 6039036 2025-03-19 16:55:32.038 2025-03-19 16:55:32.038 18900 TIP 435274 5519 \N \N 6039040 2025-03-19 16:56:36.311 2025-03-19 16:56:36.311 4000 FEE 435746 715 \N \N 6039041 2025-03-19 16:56:36.311 2025-03-19 16:56:36.311 36000 TIP 435746 9920 \N \N 6039042 2025-03-19 16:57:05.629 2025-03-19 16:57:05.629 1000 FEE 435750 8400 \N \N 6039043 2025-03-19 16:57:07.442 2025-03-19 16:57:07.442 2700 FEE 435181 16769 \N \N 6039044 2025-03-19 16:57:07.442 2025-03-19 16:57:07.442 24300 TIP 435181 9758 \N \N 6039045 2025-03-19 16:57:07.606 2025-03-19 16:57:07.606 2700 FEE 435181 18017 \N \N 6039046 2025-03-19 16:57:07.606 2025-03-19 16:57:07.606 24300 TIP 435181 1051 \N \N 6038540 2025-03-19 15:20:03.723 2025-03-19 15:20:03.723 36000 TIP 435610 9333 \N \N 6038553 2025-03-19 15:22:40.163 2025-03-19 15:22:40.163 1000 FEE 435694 1833 \N \N 6038558 2025-03-19 15:23:48.016 2025-03-19 15:23:48.016 1000 POLL 435495 1411 \N \N 6038590 2025-03-19 15:30:08.634 2025-03-19 15:30:08.634 2000 FEE 435639 20603 \N \N 6038591 2025-03-19 15:30:08.634 2025-03-19 15:30:08.634 18000 TIP 435639 21332 \N \N 6038623 2025-03-19 15:31:04.882 2025-03-19 15:31:04.882 1000 FEE 435551 1761 \N \N 6038624 2025-03-19 15:31:04.882 2025-03-19 15:31:04.882 9000 TIP 435551 20864 \N \N 6038632 2025-03-19 15:31:49.34 2025-03-19 15:31:49.34 1000 FEE 435574 2342 \N \N 6038633 2025-03-19 15:31:49.34 2025-03-19 15:31:49.34 9000 TIP 435574 8289 \N \N 6038646 2025-03-19 15:31:56.761 2025-03-19 15:31:56.761 2300 FEE 435488 14688 \N \N 6038647 2025-03-19 15:31:56.761 2025-03-19 15:31:56.761 20700 TIP 435488 1130 \N \N 6038664 2025-03-19 15:34:31.043 2025-03-19 15:34:31.043 1000 FEE 435707 794 \N \N 6038686 2025-03-19 15:39:36.882 2025-03-19 15:39:36.882 0 FEE 435709 5036 \N \N 6038692 2025-03-19 15:41:50.997 2025-03-19 15:41:50.997 1100 FEE 435488 2013 \N \N 6038693 2025-03-19 15:41:50.997 2025-03-19 15:41:50.997 9900 TIP 435488 21416 \N \N 6038736 2025-03-19 15:51:57.873 2025-03-19 15:51:57.873 300 FEE 434599 671 \N \N 6038737 2025-03-19 15:51:57.873 2025-03-19 15:51:57.873 2700 TIP 434599 14271 \N \N 6038751 2025-03-19 15:53:26.629 2025-03-19 15:53:26.629 1000 FEE 435719 15243 \N \N 6038762 2025-03-19 15:54:20.979 2025-03-19 15:54:20.979 300 FEE 435720 1733 \N \N 6038763 2025-03-19 15:54:20.979 2025-03-19 15:54:20.979 2700 TIP 435720 18393 \N \N 6038775 2025-03-19 15:57:41.89 2025-03-19 15:57:41.89 1000 FEE 435725 4768 \N \N 6038791 2025-03-19 16:01:32.573 2025-03-19 16:01:32.573 1000 FEE 435727 5752 \N \N 6038799 2025-03-19 16:02:41.791 2025-03-19 16:02:41.791 1000 FEE 435697 7772 \N \N 6038800 2025-03-19 16:02:41.791 2025-03-19 16:02:41.791 9000 TIP 435697 6765 \N \N 6038818 2025-03-19 16:08:34.973 2025-03-19 16:08:34.973 1000 FEE 434635 20939 \N \N 6038819 2025-03-19 16:08:34.973 2025-03-19 16:08:34.973 9000 TIP 434635 17172 \N \N 6038829 2025-03-19 16:11:53.886 2025-03-19 16:11:53.886 10000 FEE 435737 15624 \N \N 6038832 2025-03-19 16:14:01.088 2025-03-19 16:14:01.088 17000 FEE 435738 9200 \N \N 6038855 2025-03-19 16:15:25.651 2025-03-19 16:15:25.651 7700 FEE 434263 1785 \N \N 6038856 2025-03-19 16:15:25.651 2025-03-19 16:15:25.651 69300 TIP 434263 11819 \N \N 6038889 2025-03-19 16:22:33.032 2025-03-19 16:22:33.032 1000 FEE 435741 20019 \N \N 6038894 2025-03-19 16:24:34.38 2025-03-19 16:24:34.38 1000 FEE 435743 1237 \N \N 6038896 2025-03-19 16:25:38.665 2025-03-19 16:25:38.665 100 FEE 435665 9796 \N \N 6038897 2025-03-19 16:25:38.665 2025-03-19 16:25:38.665 900 TIP 435665 13566 \N \N 6038924 2025-03-19 16:29:37.632 2025-03-19 16:29:37.632 4000 FEE 435743 5487 \N \N 6038925 2025-03-19 16:29:37.632 2025-03-19 16:29:37.632 36000 TIP 435743 3656 \N \N 6038954 2025-03-19 16:32:08.842 2025-03-19 16:32:08.842 2100 FEE 435657 1596 \N \N 6038955 2025-03-19 16:32:08.842 2025-03-19 16:32:08.842 18900 TIP 435657 14607 \N \N 6039019 2025-03-19 16:49:19.825 2025-03-19 16:49:19.825 21800 FEE 435141 21222 \N \N 6039020 2025-03-19 16:49:19.825 2025-03-19 16:49:19.825 196200 TIP 435141 1723 \N \N 6039025 2025-03-19 16:53:59.341 2025-03-19 16:53:59.341 2700 FEE 435531 21020 \N \N 6039026 2025-03-19 16:53:59.341 2025-03-19 16:53:59.341 24300 TIP 435531 627 \N \N 6039058 2025-03-19 16:57:22.318 2025-03-19 16:57:22.318 2700 FEE 435198 1469 \N \N 6039059 2025-03-19 16:57:22.318 2025-03-19 16:57:22.318 24300 TIP 435198 20754 \N \N 6039062 2025-03-19 16:58:29.962 2025-03-19 16:58:29.962 2700 FEE 435086 21398 \N \N 6039063 2025-03-19 16:58:29.962 2025-03-19 16:58:29.962 24300 TIP 435086 16598 \N \N 6039066 2025-03-19 16:58:30.337 2025-03-19 16:58:30.337 2700 FEE 435086 2000 \N \N 6039067 2025-03-19 16:58:30.337 2025-03-19 16:58:30.337 24300 TIP 435086 14705 \N \N 6039068 2025-03-19 16:58:30.513 2025-03-19 16:58:30.513 2700 FEE 435086 12779 \N \N 6039069 2025-03-19 16:58:30.513 2025-03-19 16:58:30.513 24300 TIP 435086 13169 \N \N 6039078 2025-03-19 16:59:10.185 2025-03-19 16:59:10.185 1000 FEE 435630 21014 \N \N 6039079 2025-03-19 16:59:10.185 2025-03-19 16:59:10.185 9000 TIP 435630 4238 \N \N 6039089 2025-03-19 16:59:30.566 2025-03-19 16:59:30.566 9000 FEE 435741 7772 \N \N 6039090 2025-03-19 16:59:30.566 2025-03-19 16:59:30.566 81000 TIP 435741 1741 \N \N 6039101 2025-03-19 16:59:37.167 2025-03-19 16:59:37.167 1000 FEE 435328 10007 \N \N 6039102 2025-03-19 16:59:37.167 2025-03-19 16:59:37.167 9000 TIP 435328 19863 \N \N 6039109 2025-03-19 16:59:37.969 2025-03-19 16:59:37.969 1000 FEE 435328 14552 \N \N 6039110 2025-03-19 16:59:37.969 2025-03-19 16:59:37.969 9000 TIP 435328 20612 \N \N 6039119 2025-03-19 16:59:38.866 2025-03-19 16:59:38.866 1000 FEE 435328 1480 \N \N 6039120 2025-03-19 16:59:38.866 2025-03-19 16:59:38.866 9000 TIP 435328 19527 \N \N 6039143 2025-03-19 16:59:45.231 2025-03-19 16:59:45.231 900 FEE 435728 3353 \N \N 6039144 2025-03-19 16:59:45.231 2025-03-19 16:59:45.231 8100 TIP 435728 844 \N \N 6039147 2025-03-19 16:59:50.827 2025-03-19 16:59:50.827 100 FEE 435711 21172 \N \N 6039148 2025-03-19 16:59:50.827 2025-03-19 16:59:50.827 900 TIP 435711 13327 \N \N 6039155 2025-03-19 16:59:57.718 2025-03-19 16:59:57.718 900 FEE 435704 3371 \N \N 6039156 2025-03-19 16:59:57.718 2025-03-19 16:59:57.718 8100 TIP 435704 2514 \N \N 6039219 2025-03-19 17:13:41.628 2025-03-19 17:13:41.628 2700 FEE 435365 14941 \N \N 6039220 2025-03-19 17:13:41.628 2025-03-19 17:13:41.628 24300 TIP 435365 21041 \N \N 6039234 2025-03-19 17:17:01.904 2025-03-19 17:17:01.904 21800 FEE 435310 7558 \N \N 6039235 2025-03-19 17:17:01.904 2025-03-19 17:17:01.904 196200 TIP 435310 2757 \N \N 6039249 2025-03-19 17:26:37.839 2025-03-19 17:26:37.839 2100 FEE 435657 10311 \N \N 6039250 2025-03-19 17:26:37.839 2025-03-19 17:26:37.839 18900 TIP 435657 6268 \N \N 6039251 2025-03-19 17:26:38.226 2025-03-19 17:26:38.226 2100 FEE 435488 5852 \N \N 6039252 2025-03-19 17:26:38.226 2025-03-19 17:26:38.226 18900 TIP 435488 20381 \N \N 6039255 2025-03-19 17:26:39.207 2025-03-19 17:26:39.207 2100 FEE 435551 12738 \N \N 6039256 2025-03-19 17:26:39.207 2025-03-19 17:26:39.207 18900 TIP 435551 17535 \N \N 6039261 2025-03-19 17:26:40.683 2025-03-19 17:26:40.683 2100 FEE 435328 17042 \N \N 6039262 2025-03-19 17:26:40.683 2025-03-19 17:26:40.683 18900 TIP 435328 18717 \N \N 6039273 2025-03-19 17:26:45.576 2025-03-19 17:26:45.576 2100 FEE 435457 10608 \N \N 6039274 2025-03-19 17:26:45.576 2025-03-19 17:26:45.576 18900 TIP 435457 20826 \N \N 6039281 2025-03-19 17:26:49.634 2025-03-19 17:26:49.634 2100 FEE 435217 9843 \N \N 6039282 2025-03-19 17:26:49.634 2025-03-19 17:26:49.634 18900 TIP 435217 21238 \N \N 6036432 2025-03-19 11:45:46.551 2025-03-19 11:45:46.551 20700 TIP 435497 13759 \N \N 6036455 2025-03-19 11:45:52.151 2025-03-19 11:45:52.151 2300 FEE 435497 21518 \N \N 6036456 2025-03-19 11:45:52.151 2025-03-19 11:45:52.151 20700 TIP 435497 20094 \N \N 6036467 2025-03-19 11:45:53.23 2025-03-19 11:45:53.23 2300 FEE 435497 1465 \N \N 6036468 2025-03-19 11:45:53.23 2025-03-19 11:45:53.23 20700 TIP 435497 2775 \N \N 6036489 2025-03-19 11:45:55.69 2025-03-19 11:45:55.69 2300 FEE 435497 715 \N \N 6036490 2025-03-19 11:45:55.69 2025-03-19 11:45:55.69 20700 TIP 435497 5171 \N \N 6036495 2025-03-19 11:46:12.667 2025-03-19 11:46:12.667 2300 FEE 435477 20353 \N \N 6036496 2025-03-19 11:46:12.667 2025-03-19 11:46:12.667 20700 TIP 435477 16988 \N \N 6036502 2025-03-19 11:46:56.426 2025-03-19 11:46:56.426 1000 FEE 435209 19854 \N \N 6036503 2025-03-19 11:46:56.426 2025-03-19 11:46:56.426 9000 TIP 435209 6149 \N \N 6036504 2025-03-19 11:46:58.874 2025-03-19 11:46:58.874 1000 FEE 435501 10433 \N \N 6036537 2025-03-19 11:52:13.089 2025-03-19 11:52:13.089 1000 FEE 435500 980 \N \N 6036538 2025-03-19 11:52:13.089 2025-03-19 11:52:13.089 9000 TIP 435500 21060 \N \N 6036539 2025-03-19 11:52:13.19 2025-03-19 11:52:13.19 1000 FEE 435500 18393 \N \N 6036540 2025-03-19 11:52:13.19 2025-03-19 11:52:13.19 9000 TIP 435500 5069 \N \N 6036554 2025-03-19 11:52:15.629 2025-03-19 11:52:15.629 1000 FEE 435313 6191 \N \N 6036555 2025-03-19 11:52:15.629 2025-03-19 11:52:15.629 9000 TIP 435313 15488 \N \N 6036563 2025-03-19 11:52:33.807 2025-03-19 11:52:33.807 1000 FEE 435474 21058 \N \N 6036564 2025-03-19 11:52:33.807 2025-03-19 11:52:33.807 9000 TIP 435474 21482 \N \N 6036577 2025-03-19 11:52:41.688 2025-03-19 11:52:41.688 1000 FEE 435474 17722 \N \N 6036578 2025-03-19 11:52:41.688 2025-03-19 11:52:41.688 9000 TIP 435474 16329 \N \N 6036615 2025-03-19 11:56:01.365 2025-03-19 11:56:01.365 1000 FEE 435449 1729 \N \N 6036616 2025-03-19 11:56:01.365 2025-03-19 11:56:01.365 9000 TIP 435449 21041 \N \N 6036632 2025-03-19 11:57:34.588 2025-03-19 11:57:34.588 1000 FEE 435509 658 \N \N 6036633 2025-03-19 11:57:34.588 2025-03-19 11:57:34.588 9000 TIP 435509 17944 \N \N 6036652 2025-03-19 11:58:04.381 2025-03-19 11:58:04.381 100 FEE 435314 21506 \N \N 6036653 2025-03-19 11:58:04.381 2025-03-19 11:58:04.381 900 TIP 435314 20434 \N \N 6036700 2025-03-19 12:04:55.018 2025-03-19 12:04:55.018 100000 FEE 435518 16542 \N \N 6036705 2025-03-19 12:07:15.973 2025-03-19 12:07:15.973 2700 FEE 435390 4798 \N \N 6036706 2025-03-19 12:07:15.973 2025-03-19 12:07:15.973 24300 TIP 435390 16193 \N \N 6036713 2025-03-19 12:09:50.327 2025-03-19 12:09:50.327 0 FEE 435520 897 \N \N 6036715 2025-03-19 12:10:45.169 2025-03-19 12:10:45.169 10000 FEE 435522 16410 \N \N 6036742 2025-03-19 12:16:56.018 2025-03-19 12:16:56.018 10000 FEE 435528 721 \N \N 6036748 2025-03-19 12:17:47.202 2025-03-19 12:17:47.202 100 FEE 435525 21202 \N \N 6036749 2025-03-19 12:17:47.202 2025-03-19 12:17:47.202 900 TIP 435525 7766 \N \N 6036757 2025-03-19 12:18:00.325 2025-03-19 12:18:00.325 1000 FEE 435231 15719 \N \N 6036758 2025-03-19 12:18:00.325 2025-03-19 12:18:00.325 9000 TIP 435231 20755 \N \N 6036771 2025-03-19 12:19:17.271 2025-03-19 12:19:17.271 1000 FEE 435532 913 \N \N 6036779 2025-03-19 12:20:04.307 2025-03-19 12:20:04.307 2100 FEE 434540 4633 \N \N 6036780 2025-03-19 12:20:04.307 2025-03-19 12:20:04.307 18900 TIP 434540 8684 \N \N 6036812 2025-03-19 12:23:07.485 2025-03-19 12:23:07.485 2100 FEE 435357 9346 \N \N 6036813 2025-03-19 12:23:07.485 2025-03-19 12:23:07.485 18900 TIP 435357 20509 \N \N 6036815 2025-03-19 12:23:17.925 2025-03-19 12:23:17.925 2100 FEE 435497 4415 \N \N 6036816 2025-03-19 12:23:17.925 2025-03-19 12:23:17.925 18900 TIP 435497 681 \N \N 6036817 2025-03-19 12:23:30.817 2025-03-19 12:23:30.817 2100 FEE 435495 17321 \N \N 6036818 2025-03-19 12:23:30.817 2025-03-19 12:23:30.817 18900 TIP 435495 9333 \N \N 6036849 2025-03-19 12:27:39.466 2025-03-19 12:27:39.466 2100 FEE 97082 20924 \N \N 6036850 2025-03-19 12:27:39.466 2025-03-19 12:27:39.466 18900 TIP 97082 6137 \N \N 6036851 2025-03-19 12:27:39.988 2025-03-19 12:27:39.988 2100 FEE 97082 1609 \N \N 6036852 2025-03-19 12:27:39.988 2025-03-19 12:27:39.988 18900 TIP 97082 1632 \N \N 6036857 2025-03-19 12:28:39.105 2025-03-19 12:28:39.105 1000 FEE 435177 18368 \N \N 6036858 2025-03-19 12:28:39.105 2025-03-19 12:28:39.105 9000 TIP 435177 794 \N \N 6036864 2025-03-19 12:31:23.109 2025-03-19 12:31:23.109 1000 FEE 435543 2431 \N \N 6036869 2025-03-19 12:32:14.17 2025-03-19 12:32:14.17 10000 FEE 435357 15060 \N \N 6036870 2025-03-19 12:32:14.17 2025-03-19 12:32:14.17 90000 TIP 435357 2963 \N \N 6036887 2025-03-19 12:35:15.283 2025-03-19 12:35:15.283 500 FEE 435263 1615 \N \N 6036888 2025-03-19 12:35:15.283 2025-03-19 12:35:15.283 4500 TIP 435263 20998 \N \N 6036890 2025-03-19 12:35:41.888 2025-03-19 12:35:41.888 2100 FEE 435544 16284 \N \N 6036891 2025-03-19 12:35:41.888 2025-03-19 12:35:41.888 18900 TIP 435544 2776 \N \N 6036922 2025-03-19 12:38:49.197 2025-03-19 12:38:49.197 2100 FEE 435497 14941 \N \N 6036923 2025-03-19 12:38:49.197 2025-03-19 12:38:49.197 18900 TIP 435497 15337 \N \N 6036924 2025-03-19 12:39:02.045 2025-03-19 12:39:02.045 2100 FEE 435513 15119 \N \N 6036925 2025-03-19 12:39:02.045 2025-03-19 12:39:02.045 18900 TIP 435513 1030 \N \N 6036939 2025-03-19 12:40:57.593 2025-03-19 12:40:57.593 0 FEE 435549 18426 \N \N 6036942 2025-03-19 12:42:02.531 2025-03-19 12:42:02.531 100 FEE 435456 21577 \N \N 6036943 2025-03-19 12:42:02.531 2025-03-19 12:42:02.531 900 TIP 435456 20775 \N \N 6036951 2025-03-19 12:43:21.665 2025-03-19 12:43:21.665 2100 FEE 435030 10007 \N \N 6036952 2025-03-19 12:43:21.665 2025-03-19 12:43:21.665 18900 TIP 435030 12368 \N \N 6036953 2025-03-19 12:43:44.539 2025-03-19 12:43:44.539 2500 FEE 435547 2963 \N \N 6036954 2025-03-19 12:43:44.539 2025-03-19 12:43:44.539 22500 TIP 435547 9916 \N \N 6036986 2025-03-19 12:46:48.04 2025-03-19 12:46:48.04 100 FEE 435046 15488 \N \N 6036987 2025-03-19 12:46:48.04 2025-03-19 12:46:48.04 900 TIP 435046 20802 \N \N 6036988 2025-03-19 12:46:52.194 2025-03-19 12:46:52.194 100 FEE 434498 14037 \N \N 6036989 2025-03-19 12:46:52.194 2025-03-19 12:46:52.194 900 TIP 434498 21701 \N \N 6037009 2025-03-19 12:48:28.206 2025-03-19 12:48:28.206 1000 FEE 435559 7766 \N \N 6037010 2025-03-19 12:48:34.802 2025-03-19 12:48:34.802 5000 FEE 434919 1307 \N \N 6037011 2025-03-19 12:48:34.802 2025-03-19 12:48:34.802 45000 TIP 434919 1761 \N \N 6037038 2025-03-19 12:52:05.355 2025-03-19 12:52:05.355 1000 FEE 434720 20663 \N \N 6037039 2025-03-19 12:52:05.355 2025-03-19 12:52:05.355 9000 TIP 434720 4378 \N \N 6037048 2025-03-19 12:54:54.715 2025-03-19 12:54:54.715 1000 FEE 435564 661 \N \N 6037049 2025-03-19 12:54:54.715 2025-03-19 12:54:54.715 9000 TIP 435564 9275 \N \N 6037065 2025-03-19 12:57:12.621 2025-03-19 12:57:12.621 900 FEE 435520 19199 \N \N 6037066 2025-03-19 12:57:12.621 2025-03-19 12:57:12.621 8100 TIP 435520 20816 \N \N 6037089 2025-03-19 12:57:30.808 2025-03-19 12:57:30.808 900 FEE 435382 2620 \N \N 6037090 2025-03-19 12:57:30.808 2025-03-19 12:57:30.808 8100 TIP 435382 9166 \N \N 6037101 2025-03-19 12:57:44.116 2025-03-19 12:57:44.116 900 FEE 435272 636 \N \N 6037102 2025-03-19 12:57:44.116 2025-03-19 12:57:44.116 8100 TIP 435272 13865 \N \N 6037108 2025-03-19 12:58:12.679 2025-03-19 12:58:12.679 10000 FEE 435551 5175 \N \N 6037109 2025-03-19 12:58:12.679 2025-03-19 12:58:12.679 90000 TIP 435551 15103 \N \N 6037164 2025-03-19 12:59:53.227 2025-03-19 12:59:53.227 2300 FEE 435497 16954 \N \N 6037165 2025-03-19 12:59:53.227 2025-03-19 12:59:53.227 20700 TIP 435497 2789 \N \N 6030454 2025-03-19 01:21:23.922 2025-03-19 01:21:23.922 10000 FEE 434751 13566 \N \N 6030469 2025-03-19 01:24:19.487 2025-03-19 01:24:19.487 1000 FEE 434755 11873 \N \N 6030473 2025-03-19 01:25:02.342 2025-03-19 01:25:02.342 100 FEE 434755 6202 \N \N 6030474 2025-03-19 01:25:02.342 2025-03-19 01:25:02.342 900 TIP 434755 676 \N \N 6030477 2025-03-19 01:25:02.852 2025-03-19 01:25:02.852 100 FEE 434755 21523 \N \N 6030478 2025-03-19 01:25:02.852 2025-03-19 01:25:02.852 900 TIP 434755 717 \N \N 6030489 2025-03-19 01:26:04.495 2025-03-19 01:26:04.495 1100 FEE 434285 9334 \N \N 6030490 2025-03-19 01:26:04.495 2025-03-19 01:26:04.495 9900 TIP 434285 21103 \N \N 6030505 2025-03-19 01:27:50.049 2025-03-19 01:27:50.049 2100 FEE 434687 775 \N \N 6030506 2025-03-19 01:27:50.049 2025-03-19 01:27:50.049 18900 TIP 434687 794 \N \N 6030559 2025-03-19 01:38:51.111 2025-03-19 01:38:51.111 0 FEE 434770 15577 \N \N 6030562 2025-03-19 01:38:58.207 2025-03-19 01:38:58.207 1000 FEE 434772 688 \N \N 6030567 2025-03-19 01:39:00.236 2025-03-19 01:39:00.236 100 FEE 434718 956 \N \N 6030568 2025-03-19 01:39:00.236 2025-03-19 01:39:00.236 900 TIP 434718 9655 \N \N 6030573 2025-03-19 01:39:03.928 2025-03-19 01:39:03.928 1000 FEE 434646 5794 \N \N 6030574 2025-03-19 01:39:03.928 2025-03-19 01:39:03.928 9000 TIP 434646 10094 \N \N 6030589 2025-03-19 01:39:30.068 2025-03-19 01:39:30.068 1000 FEE 434774 622 \N \N 6030625 2025-03-19 01:44:14.339 2025-03-19 01:44:14.339 1000 FEE 434722 21184 \N \N 6030626 2025-03-19 01:44:14.339 2025-03-19 01:44:14.339 9000 TIP 434722 11498 \N \N 6030629 2025-03-19 01:44:17.182 2025-03-19 01:44:17.182 1000 FEE 434685 16387 \N \N 6030630 2025-03-19 01:44:17.182 2025-03-19 01:44:17.182 9000 TIP 434685 21314 \N \N 6030670 2025-03-19 01:53:28.309 2025-03-19 01:53:28.309 10000 FEE 434785 2722 \N \N 6030679 2025-03-19 01:54:32.24 2025-03-19 01:54:32.24 1000 FEE 434328 1483 \N \N 6030680 2025-03-19 01:54:32.24 2025-03-19 01:54:32.24 9000 TIP 434328 4798 \N \N 6030691 2025-03-19 01:58:13.611 2025-03-19 01:58:13.611 1000 FEE 434773 21373 \N \N 6030692 2025-03-19 01:58:13.611 2025-03-19 01:58:13.611 9000 TIP 434773 15526 \N \N 6030697 2025-03-19 01:59:14.595 2025-03-19 01:59:14.595 1000 FEE 434141 20906 \N \N 6030698 2025-03-19 01:59:14.595 2025-03-19 01:59:14.595 9000 TIP 434141 8289 \N \N 6030699 2025-03-19 01:59:19.515 2025-03-19 01:59:19.515 100 FEE 434717 20612 \N \N 6030700 2025-03-19 01:59:19.515 2025-03-19 01:59:19.515 900 TIP 434717 21088 \N \N 6030738 2025-03-19 02:05:08.644 2025-03-19 02:05:08.644 1000 FEE 434797 18270 \N \N 6030766 2025-03-19 02:07:37.021 2025-03-19 02:07:37.021 1000 FEE 434803 14857 \N \N 6030796 2025-03-19 02:10:17.444 2025-03-19 02:10:17.444 1000 FEE 434806 19863 \N \N 6030798 2025-03-19 02:11:09.883 2025-03-19 02:11:09.883 1000 FEE 434808 10849 \N \N 6030802 2025-03-19 02:11:27.927 2025-03-19 02:11:27.927 1100 FEE 434807 5499 \N \N 6030803 2025-03-19 02:11:27.927 2025-03-19 02:11:27.927 9900 TIP 434807 669 \N \N 6030821 2025-03-19 02:14:04.754 2025-03-19 02:14:04.754 0 FEE 434810 20683 \N \N 6030848 2025-03-19 02:18:12.288 2025-03-19 02:18:12.288 1000 FEE 434821 1609 \N \N 6030861 2025-03-19 02:18:57.91 2025-03-19 02:18:57.91 2200 FEE 434801 21239 \N \N 6030862 2025-03-19 02:18:57.91 2025-03-19 02:18:57.91 19800 TIP 434801 9985 \N \N 6030883 2025-03-19 02:22:29.945 2025-03-19 02:22:29.945 1000 FEE 434829 20963 \N \N 6030904 2025-03-19 02:25:15.213 2025-03-19 02:25:15.213 4000 FEE 434827 20799 \N \N 6030905 2025-03-19 02:25:15.213 2025-03-19 02:25:15.213 36000 TIP 434827 12808 \N \N 6030934 2025-03-19 02:31:15.904 2025-03-19 02:31:15.904 1000 FEE 434834 803 \N \N 6030937 2025-03-19 02:31:21.834 2025-03-19 02:31:21.834 1100 FEE 434396 14503 \N \N 6030938 2025-03-19 02:31:21.834 2025-03-19 02:31:21.834 9900 TIP 434396 17226 \N \N 6030947 2025-03-19 02:32:46.116 2025-03-19 02:32:46.116 1000 FEE 434824 675 \N \N 6030948 2025-03-19 02:32:46.116 2025-03-19 02:32:46.116 9000 TIP 434824 987 \N \N 6030951 2025-03-19 02:33:01.905 2025-03-19 02:33:01.905 1000 FEE 434839 1618 \N \N 6030970 2025-03-19 02:35:06.943 2025-03-19 02:35:06.943 1000 FEE 433571 19198 \N \N 6030971 2025-03-19 02:35:06.943 2025-03-19 02:35:06.943 9000 TIP 433571 20965 \N \N 6030976 2025-03-19 02:36:10.486 2025-03-19 02:36:10.486 0 FEE 434833 19826 \N \N 6030984 2025-03-19 02:38:40.897 2025-03-19 02:38:40.897 1000 FEE 434440 1316 \N \N 6030985 2025-03-19 02:38:40.897 2025-03-19 02:38:40.897 9000 TIP 434440 17046 \N \N 6031009 2025-03-19 02:41:28.124 2025-03-19 02:41:28.124 100 FEE 434813 9036 \N \N 6031010 2025-03-19 02:41:28.124 2025-03-19 02:41:28.124 900 TIP 434813 1469 \N \N 6031053 2025-03-19 02:58:47.786 2025-03-19 02:58:47.786 1000 FEE 434855 762 \N \N 6031058 2025-03-19 02:59:29.947 2025-03-19 02:59:29.947 2100 FEE 434842 919 \N \N 6031059 2025-03-19 02:59:29.947 2025-03-19 02:59:29.947 18900 TIP 434842 9177 \N \N 6031071 2025-03-19 03:02:06.235 2025-03-19 03:02:06.235 12800 FEE 434223 8713 \N \N 6031072 2025-03-19 03:02:06.235 2025-03-19 03:02:06.235 115200 TIP 434223 18923 \N \N 6031076 2025-03-19 03:02:46.493 2025-03-19 03:02:46.493 0 FEE 434858 827 \N \N 6031085 2025-03-19 03:04:15.5 2025-03-19 03:04:15.5 1000 FEE 434861 2748 \N \N 6031086 2025-03-19 03:04:16.07 2025-03-19 03:04:16.07 0 FEE 434858 880 \N \N 6031097 2025-03-19 03:05:31.838 2025-03-19 03:05:31.838 0 FEE 434858 15409 \N \N 6031109 2025-03-19 03:06:06.394 2025-03-19 03:06:06.394 1000 FEE 434824 20972 \N \N 6031110 2025-03-19 03:06:06.394 2025-03-19 03:06:06.394 9000 TIP 434824 21041 \N \N 6031118 2025-03-19 03:06:46.487 2025-03-19 03:06:46.487 100 FEE 434274 891 \N \N 6031119 2025-03-19 03:06:46.487 2025-03-19 03:06:46.487 900 TIP 434274 3729 \N \N 6031124 2025-03-19 03:06:48.174 2025-03-19 03:06:48.174 100 FEE 434274 900 \N \N 6031125 2025-03-19 03:06:48.174 2025-03-19 03:06:48.174 900 TIP 434274 17984 \N \N 6031133 2025-03-19 03:08:43.454 2025-03-19 03:08:43.454 1100 FEE 434827 20294 \N \N 6031134 2025-03-19 03:08:43.454 2025-03-19 03:08:43.454 9900 TIP 434827 15941 \N \N 6031146 2025-03-19 03:09:19.548 2025-03-19 03:09:19.548 1000 FEE 434870 5776 \N \N 6031156 2025-03-19 03:12:15.39 2025-03-19 03:12:15.39 0 FEE 434871 16704 \N \N 6031183 2025-03-19 03:17:46.168 2025-03-19 03:17:46.168 100 FEE 430342 17714 \N \N 6031184 2025-03-19 03:17:46.168 2025-03-19 03:17:46.168 900 TIP 430342 12808 \N \N 6031195 2025-03-19 03:19:38.787 2025-03-19 03:19:38.787 1000 FEE 434876 1959 \N \N 6031197 2025-03-19 03:21:12.405 2025-03-19 03:21:12.405 1000 FEE 434877 21373 \N \N 6031199 2025-03-19 03:21:41.269 2025-03-19 03:21:41.269 0 FEE 434877 9611 \N \N 6031223 2025-03-19 03:29:00.344 2025-03-19 03:29:00.344 100000 FEE 434888 11165 \N \N 6031241 2025-03-19 03:30:29.15 2025-03-19 03:30:29.15 4000 FEE 434879 21402 \N \N 6031242 2025-03-19 03:30:29.15 2025-03-19 03:30:29.15 36000 TIP 434879 5057 \N \N 6031246 2025-03-19 03:31:18.46 2025-03-19 03:31:18.46 1000 FEE 434891 21734 \N \N 6031258 2025-03-19 03:33:19.603 2025-03-19 03:33:19.603 2100 FEE 434682 4692 \N \N 6031259 2025-03-19 03:33:19.603 2025-03-19 03:33:19.603 18900 TIP 434682 21768 \N \N 6031260 2025-03-19 03:33:21.062 2025-03-19 03:33:21.062 2100 FEE 434793 4287 \N \N 6031261 2025-03-19 03:33:21.062 2025-03-19 03:33:21.062 18900 TIP 434793 9969 \N \N 6031296 2025-03-19 03:37:26.334 2025-03-19 03:37:26.334 1000 FEE 434901 6137 \N \N 6031316 2025-03-19 03:44:35.477 2025-03-19 03:44:35.477 2100 FEE 434658 795 \N \N 6031317 2025-03-19 03:44:35.477 2025-03-19 03:44:35.477 18900 TIP 434658 5128 \N \N 6031325 2025-03-19 03:45:38.958 2025-03-19 03:45:38.958 1000 FEE 434906 14650 \N \N 6031331 2025-03-19 03:46:18.913 2025-03-19 03:46:18.913 1000 FEE 434907 17535 \N \N 6031334 2025-03-19 03:47:04.212 2025-03-19 03:47:04.212 2100 FEE 434624 9307 \N \N 6031335 2025-03-19 03:47:04.212 2025-03-19 03:47:04.212 18900 TIP 434624 4259 \N \N 6031346 2025-03-19 03:50:18.689 2025-03-19 03:50:18.689 3000 FEE 434607 657 \N \N 6031347 2025-03-19 03:50:18.689 2025-03-19 03:50:18.689 27000 TIP 434607 617 \N \N 6030467 2025-03-19 01:24:08.163 2025-03-19 01:24:08.163 900 TIP 434722 12245 \N \N 6030493 2025-03-19 01:26:30.716 2025-03-19 01:26:30.716 100 FEE 434731 2735 \N \N 6030494 2025-03-19 01:26:30.716 2025-03-19 01:26:30.716 900 TIP 434731 20754 \N \N 6030512 2025-03-19 01:29:40.162 2025-03-19 01:29:40.162 1000 FEE 434761 9167 \N \N 6030526 2025-03-19 01:31:32.915 2025-03-19 01:31:32.915 2100 FEE 434718 2709 \N \N 6030527 2025-03-19 01:31:32.915 2025-03-19 01:31:32.915 18900 TIP 434718 1480 \N \N 6030529 2025-03-19 01:32:24.613 2025-03-19 01:32:24.613 12800 FEE 433833 7675 \N \N 6030530 2025-03-19 01:32:24.613 2025-03-19 01:32:24.613 115200 TIP 433833 19527 \N \N 6030551 2025-03-19 01:37:53.288 2025-03-19 01:37:53.288 0 FEE 434769 2338 \N \N 6030557 2025-03-19 01:38:47.68 2025-03-19 01:38:47.68 1000 FEE 434718 11192 \N \N 6030558 2025-03-19 01:38:47.68 2025-03-19 01:38:47.68 9000 TIP 434718 16858 \N \N 6030594 2025-03-19 01:40:01.818 2025-03-19 01:40:01.818 100 FEE 434702 16970 \N \N 6030595 2025-03-19 01:40:01.818 2025-03-19 01:40:01.818 900 TIP 434702 5495 \N \N 6030607 2025-03-19 01:40:55.308 2025-03-19 01:40:55.308 100 FEE 434775 696 \N \N 6030608 2025-03-19 01:40:55.308 2025-03-19 01:40:55.308 900 TIP 434775 13406 \N \N 6030648 2025-03-19 01:48:03.217 2025-03-19 01:48:03.217 1000 FEE 434781 19581 \N \N 6030710 2025-03-19 01:59:24.082 2025-03-19 01:59:24.082 1000 FEE 434789 705 \N \N 6030715 2025-03-19 02:00:20.291 2025-03-19 02:00:20.291 1100 FEE 433913 5728 \N \N 6030716 2025-03-19 02:00:20.291 2025-03-19 02:00:20.291 9900 TIP 433913 21798 \N \N 6030717 2025-03-19 02:00:20.39 2025-03-19 02:00:20.39 1000 FEE 434760 9036 \N \N 6030718 2025-03-19 02:00:20.39 2025-03-19 02:00:20.39 9000 TIP 434760 4650 \N \N 6030721 2025-03-19 02:00:28.757 2025-03-19 02:00:28.757 100000 FEE 434791 656 \N \N 6030733 2025-03-19 02:03:50.68 2025-03-19 02:03:50.68 1000 FEE 434056 8729 \N \N 6030734 2025-03-19 02:03:50.68 2025-03-19 02:03:50.68 9000 TIP 434056 1620 \N \N 6030735 2025-03-19 02:04:13.343 2025-03-19 02:04:13.343 1000 FEE 434794 20906 \N \N 6030745 2025-03-19 02:06:45.181 2025-03-19 02:06:45.181 1000 FEE 434801 10536 \N \N 6030746 2025-03-19 02:06:46.193 2025-03-19 02:06:46.193 0 FEE 434796 16059 \N \N 6030747 2025-03-19 02:06:48.654 2025-03-19 02:06:48.654 3200 FEE 434797 6137 \N \N 6030748 2025-03-19 02:06:48.654 2025-03-19 02:06:48.654 28800 TIP 434797 7389 \N \N 6030788 2025-03-19 02:08:36.142 2025-03-19 02:08:36.142 1000 FEE 434804 1720 \N \N 6030797 2025-03-19 02:10:45.009 2025-03-19 02:10:45.009 100000 FEE 434807 15521 \N \N 6030800 2025-03-19 02:11:26.41 2025-03-19 02:11:26.41 1100 FEE 434807 20187 \N \N 6030801 2025-03-19 02:11:26.41 2025-03-19 02:11:26.41 9900 TIP 434807 21400 \N \N 6030813 2025-03-19 02:12:14.17 2025-03-19 02:12:14.17 3200 FEE 434805 6688 \N \N 6030814 2025-03-19 02:12:14.17 2025-03-19 02:12:14.17 28800 TIP 434805 750 \N \N 6030831 2025-03-19 02:14:46.13 2025-03-19 02:14:46.13 300 FEE 314277 17953 \N \N 6030832 2025-03-19 02:14:46.13 2025-03-19 02:14:46.13 2700 TIP 314277 13348 \N \N 6030834 2025-03-19 02:14:53.144 2025-03-19 02:14:53.144 2100 FEE 434490 21057 \N \N 6030835 2025-03-19 02:14:53.144 2025-03-19 02:14:53.144 18900 TIP 434490 4167 \N \N 6030841 2025-03-19 02:16:08.397 2025-03-19 02:16:08.397 0 FEE 434818 18630 \N \N 6030896 2025-03-19 02:24:54.785 2025-03-19 02:24:54.785 1000 FEE 434830 17331 \N \N 6030912 2025-03-19 02:25:51.607 2025-03-19 02:25:51.607 1000 FEE 433831 21042 \N \N 6030913 2025-03-19 02:25:51.607 2025-03-19 02:25:51.607 9000 TIP 433831 672 \N \N 6030960 2025-03-19 02:33:38.856 2025-03-19 02:33:38.856 1000 FEE 434796 13763 \N \N 6030961 2025-03-19 02:33:38.856 2025-03-19 02:33:38.856 9000 TIP 434796 15282 \N \N 6030978 2025-03-19 02:36:27.791 2025-03-19 02:36:27.791 0 FEE 434837 15337 \N \N 6030990 2025-03-19 02:38:43.307 2025-03-19 02:38:43.307 1000 FEE 434440 21228 \N \N 6030991 2025-03-19 02:38:43.307 2025-03-19 02:38:43.307 9000 TIP 434440 1047 \N \N 6030999 2025-03-19 02:40:12.142 2025-03-19 02:40:12.142 1000 FEE 433331 1039 \N \N 6031000 2025-03-19 02:40:12.142 2025-03-19 02:40:12.142 9000 TIP 433331 5775 \N \N 6031006 2025-03-19 02:41:02.176 2025-03-19 02:41:02.176 6300 FEE 434631 19569 \N \N 6031007 2025-03-19 02:41:02.176 2025-03-19 02:41:02.176 56700 TIP 434631 7772 \N \N 6031034 2025-03-19 02:50:00.717 2025-03-19 02:50:00.717 21000 FEE 434851 18068 \N \N 6031061 2025-03-19 02:59:53.095 2025-03-19 02:59:53.095 1100 FEE 434847 19637 \N \N 6031062 2025-03-19 02:59:53.095 2025-03-19 02:59:53.095 9900 TIP 434847 21254 \N \N 6031080 2025-03-19 03:03:46.758 2025-03-19 03:03:46.758 800 FEE 434807 10519 \N \N 6031081 2025-03-19 03:03:46.758 2025-03-19 03:03:46.758 7200 TIP 434807 9349 \N \N 6031107 2025-03-19 03:06:06.145 2025-03-19 03:06:06.145 1100 FEE 434643 21254 \N \N 6030509 2025-03-19 01:29:08.734 2025-03-19 01:29:08.734 2100 FEE 434684 986 \N \N 6030510 2025-03-19 01:29:08.734 2025-03-19 01:29:08.734 18900 TIP 434684 960 \N \N 6030571 2025-03-19 01:39:01.016 2025-03-19 01:39:01.016 100 FEE 434718 17797 \N \N 6030572 2025-03-19 01:39:01.016 2025-03-19 01:39:01.016 900 TIP 434718 1307 \N \N 6030605 2025-03-19 01:40:55.077 2025-03-19 01:40:55.077 100 FEE 434775 16440 \N \N 6030606 2025-03-19 01:40:55.077 2025-03-19 01:40:55.077 900 TIP 434775 18608 \N \N 6030668 2025-03-19 01:53:15.639 2025-03-19 01:53:15.639 1100 FEE 434727 16717 \N \N 6030669 2025-03-19 01:53:15.639 2025-03-19 01:53:15.639 9900 TIP 434727 8796 \N \N 6030705 2025-03-19 01:59:20.64 2025-03-19 01:59:20.64 100 FEE 434717 11967 \N \N 6030706 2025-03-19 01:59:20.64 2025-03-19 01:59:20.64 900 TIP 434717 20586 \N \N 6030722 2025-03-19 02:00:29.959 2025-03-19 02:00:29.959 1000 FEE 434769 21314 \N \N 6030723 2025-03-19 02:00:29.959 2025-03-19 02:00:29.959 9000 TIP 434769 1712 \N \N 6030741 2025-03-19 02:05:51.934 2025-03-19 02:05:51.934 0 FEE 434796 13055 \N \N 6030773 2025-03-19 02:08:18.514 2025-03-19 02:08:18.514 200 FEE 434440 4973 \N \N 6030774 2025-03-19 02:08:18.514 2025-03-19 02:08:18.514 1800 TIP 434440 1319 \N \N 6030777 2025-03-19 02:08:18.928 2025-03-19 02:08:18.928 100 FEE 434440 6382 \N \N 6030778 2025-03-19 02:08:18.928 2025-03-19 02:08:18.928 900 TIP 434440 703 \N \N 6030785 2025-03-19 02:08:22.742 2025-03-19 02:08:22.742 0 FEE 434796 14255 \N \N 6030792 2025-03-19 02:09:17.019 2025-03-19 02:09:17.019 100 FEE 434177 954 \N \N 6030793 2025-03-19 02:09:17.019 2025-03-19 02:09:17.019 900 TIP 434177 651 \N \N 6030812 2025-03-19 02:12:10.526 2025-03-19 02:12:10.526 1000 FEE 434811 12561 \N \N 6030819 2025-03-19 02:13:27.17 2025-03-19 02:13:27.17 1000 FEE 434812 706 \N \N 6030820 2025-03-19 02:13:28.804 2025-03-19 02:13:28.804 10000 FEE 434813 17030 \N \N 6030822 2025-03-19 02:14:08.696 2025-03-19 02:14:08.696 100000 FEE 434814 21585 \N \N 6030852 2025-03-19 02:18:42.942 2025-03-19 02:18:42.942 1100 FEE 433738 9331 \N \N 6030853 2025-03-19 02:18:42.942 2025-03-19 02:18:42.942 9900 TIP 433738 21803 \N \N 6030875 2025-03-19 02:21:22.791 2025-03-19 02:21:22.791 1000 FEE 434826 9166 \N \N 6030876 2025-03-19 02:21:30.625 2025-03-19 02:21:30.625 1100 FEE 434810 699 \N \N 6030877 2025-03-19 02:21:30.625 2025-03-19 02:21:30.625 9900 TIP 434810 738 \N \N 6030894 2025-03-19 02:24:40.884 2025-03-19 02:24:40.884 10000 FEE 434440 7389 \N \N 6030895 2025-03-19 02:24:40.884 2025-03-19 02:24:40.884 90000 TIP 434440 8472 \N \N 6030901 2025-03-19 02:25:04.518 2025-03-19 02:25:04.518 10000 FEE 434707 15045 \N \N 6030902 2025-03-19 02:25:04.518 2025-03-19 02:25:04.518 90000 TIP 434707 21042 \N \N 6030909 2025-03-19 02:25:35.65 2025-03-19 02:25:35.65 4000 FEE 434457 2204 \N \N 6030910 2025-03-19 02:25:35.65 2025-03-19 02:25:35.65 36000 TIP 434457 965 \N \N 6030911 2025-03-19 02:25:40.298 2025-03-19 02:25:40.298 1000 FEE 434831 10981 \N \N 6030935 2025-03-19 02:31:19.744 2025-03-19 02:31:19.744 1100 FEE 434477 685 \N \N 6030936 2025-03-19 02:31:19.744 2025-03-19 02:31:19.744 9900 TIP 434477 17953 \N \N 6030940 2025-03-19 02:31:59.85 2025-03-19 02:31:59.85 10000 FEE 434835 21498 \N \N 6030955 2025-03-19 02:33:16.221 2025-03-19 02:33:16.221 1000 FEE 434805 2338 \N \N 6030956 2025-03-19 02:33:16.221 2025-03-19 02:33:16.221 9000 TIP 434805 21247 \N \N 6030966 2025-03-19 02:34:35.185 2025-03-19 02:34:35.185 10000 FEE 434488 5308 \N \N 6030967 2025-03-19 02:34:35.185 2025-03-19 02:34:35.185 90000 TIP 434488 19346 \N \N 6030974 2025-03-19 02:35:27.808 2025-03-19 02:35:27.808 10000 FEE 434720 20481 \N \N 6030975 2025-03-19 02:35:27.808 2025-03-19 02:35:27.808 90000 TIP 434720 19138 \N \N 6030983 2025-03-19 02:38:40.174 2025-03-19 02:38:40.174 1000 FEE 434840 647 \N \N 6030988 2025-03-19 02:38:41.916 2025-03-19 02:38:41.916 1000 FEE 434440 21401 \N \N 6030989 2025-03-19 02:38:41.916 2025-03-19 02:38:41.916 9000 TIP 434440 18313 \N \N 6031002 2025-03-19 02:40:17.87 2025-03-19 02:40:17.87 1000 FEE 434843 10719 \N \N 6031011 2025-03-19 02:41:43.834 2025-03-19 02:41:43.834 1000 FEE 434730 8505 \N \N 6031012 2025-03-19 02:41:43.834 2025-03-19 02:41:43.834 9000 TIP 434730 16353 \N \N 6031019 2025-03-19 02:43:26.801 2025-03-19 02:43:26.801 1000 FEE 434847 1273 \N \N 6031033 2025-03-19 02:49:32.752 2025-03-19 02:49:32.752 1000 FEE 434850 21047 \N \N 6031045 2025-03-19 02:56:02.783 2025-03-19 02:56:02.783 10000 FEE 434854 19527 \N \N 6031064 2025-03-19 03:01:10.157 2025-03-19 03:01:10.157 2100 FEE 434807 21145 \N \N 6031065 2025-03-19 03:01:10.157 2025-03-19 03:01:10.157 18900 TIP 434807 11516 \N \N 6031079 2025-03-19 03:03:21.515 2025-03-19 03:03:21.515 0 FEE 434858 11275 \N \N 6031100 2025-03-19 03:05:41.127 2025-03-19 03:05:41.127 0 FEE 434858 713 \N \N 6031186 2025-03-19 03:18:00.574 2025-03-19 03:18:00.574 1000 FEE 434875 12921 \N \N 6031189 2025-03-19 03:18:04.476 2025-03-19 03:18:04.476 1100 FEE 434865 6653 \N \N 6031190 2025-03-19 03:18:04.476 2025-03-19 03:18:04.476 9900 TIP 434865 4225 \N \N 6031214 2025-03-19 03:26:11.503 2025-03-19 03:26:11.503 800 FEE 434883 1092 \N \N 6031215 2025-03-19 03:26:11.503 2025-03-19 03:26:11.503 7200 TIP 434883 770 \N \N 6031228 2025-03-19 03:29:30.015 2025-03-19 03:29:30.015 1000 FEE 434889 2620 \N \N 6031235 2025-03-19 03:30:02.376 2025-03-19 03:30:02.376 2100 FEE 434665 14910 \N \N 6031236 2025-03-19 03:30:02.376 2025-03-19 03:30:02.376 18900 TIP 434665 1389 \N \N 6031256 2025-03-19 03:33:16.886 2025-03-19 03:33:16.886 2100 FEE 434868 12935 \N \N 6031257 2025-03-19 03:33:16.886 2025-03-19 03:33:16.886 18900 TIP 434868 769 \N \N 6031275 2025-03-19 03:34:33.031 2025-03-19 03:34:33.031 2100 FEE 434789 16809 \N \N 6031276 2025-03-19 03:34:33.031 2025-03-19 03:34:33.031 18900 TIP 434789 1638 \N \N 6031291 2025-03-19 03:35:37.563 2025-03-19 03:35:37.563 1000 FEE 434898 12169 \N \N 6031318 2025-03-19 03:45:12.442 2025-03-19 03:45:12.442 2100 FEE 434882 20073 \N \N 6031319 2025-03-19 03:45:12.442 2025-03-19 03:45:12.442 18900 TIP 434882 8544 \N \N 6031339 2025-03-19 03:47:37.605 2025-03-19 03:47:37.605 0 FEE 383547 10342 \N \N 6031341 2025-03-19 03:49:11.389 2025-03-19 03:49:11.389 1000 FEE 434908 21373 \N \N 6031362 2025-03-19 03:53:31.426 2025-03-19 03:53:31.426 2100 FEE 434912 15243 \N \N 6031363 2025-03-19 03:53:31.426 2025-03-19 03:53:31.426 18900 TIP 434912 10849 \N \N 6031364 2025-03-19 03:53:32.937 2025-03-19 03:53:32.937 1000 FEE 434913 9916 \N \N 6031393 2025-03-19 03:57:17.041 2025-03-19 03:57:17.041 210000 FEE 434920 6335 \N \N 6031402 2025-03-19 03:58:27.113 2025-03-19 03:58:27.113 2100 FEE 434609 4027 \N \N 6031403 2025-03-19 03:58:27.113 2025-03-19 03:58:27.113 18900 TIP 434609 20979 \N \N 6031428 2025-03-19 04:00:00.604 2025-03-19 04:00:00.604 2100 FEE 434640 2039 \N \N 6031429 2025-03-19 04:00:00.604 2025-03-19 04:00:00.604 18900 TIP 434640 3392 \N \N 6031446 2025-03-19 04:02:55.074 2025-03-19 04:02:55.074 1000 FEE 434927 2596 \N \N 6031449 2025-03-19 04:03:05.385 2025-03-19 04:03:05.385 4000 FEE 434922 664 \N \N 6031450 2025-03-19 04:03:05.385 2025-03-19 04:03:05.385 36000 TIP 434922 6164 \N \N 6031461 2025-03-19 04:04:23.871 2025-03-19 04:04:23.871 1000 FEE 434930 13143 \N \N 6030539 2025-03-19 01:35:50.262 2025-03-19 01:35:50.262 2100 FEE 434662 647 \N \N 6030540 2025-03-19 01:35:50.262 2025-03-19 01:35:50.262 18900 TIP 434662 20710 \N \N 6030542 2025-03-19 01:37:12.176 2025-03-19 01:37:12.176 1000 FEE 434768 16747 \N \N 6030544 2025-03-19 01:37:30.084 2025-03-19 01:37:30.084 1000 FEE 434724 12562 \N \N 6030545 2025-03-19 01:37:30.084 2025-03-19 01:37:30.084 9000 TIP 434724 5520 \N \N 6030550 2025-03-19 01:37:38.969 2025-03-19 01:37:38.969 1000 FEE 434769 21026 \N \N 6030560 2025-03-19 01:38:55.529 2025-03-19 01:38:55.529 1000 FEE 434709 21072 \N \N 6030561 2025-03-19 01:38:55.529 2025-03-19 01:38:55.529 9000 TIP 434709 20603 \N \N 6030569 2025-03-19 01:39:00.451 2025-03-19 01:39:00.451 100 FEE 434718 6616 \N \N 6030570 2025-03-19 01:39:00.451 2025-03-19 01:39:00.451 900 TIP 434718 20636 \N \N 6030587 2025-03-19 01:39:27.878 2025-03-19 01:39:27.878 1000 FEE 434285 2111 \N \N 6030588 2025-03-19 01:39:27.878 2025-03-19 01:39:27.878 9000 TIP 434285 5500 \N \N 6030600 2025-03-19 01:40:49.847 2025-03-19 01:40:49.847 1000 FEE 434776 2670 \N \N 6030603 2025-03-19 01:40:54.863 2025-03-19 01:40:54.863 100 FEE 434775 3396 \N \N 6030604 2025-03-19 01:40:54.863 2025-03-19 01:40:54.863 900 TIP 434775 17535 \N \N 6030614 2025-03-19 01:41:29.634 2025-03-19 01:41:29.634 1000 FEE 434777 20280 \N \N 6030639 2025-03-19 01:46:47.028 2025-03-19 01:46:47.028 1000 FEE 434779 5870 \N \N 6030640 2025-03-19 01:47:06.111 2025-03-19 01:47:06.111 1100 FEE 434637 3392 \N \N 6030641 2025-03-19 01:47:06.111 2025-03-19 01:47:06.111 9900 TIP 434637 1394 \N \N 6030643 2025-03-19 01:47:22.64 2025-03-19 01:47:22.64 1100 FEE 434627 649 \N \N 6030644 2025-03-19 01:47:22.64 2025-03-19 01:47:22.64 9900 TIP 434627 3745 \N \N 6030655 2025-03-19 01:50:54.452 2025-03-19 01:50:54.452 1100 FEE 434781 7185 \N \N 6030656 2025-03-19 01:50:54.452 2025-03-19 01:50:54.452 9900 TIP 434781 732 \N \N 6030671 2025-03-19 01:53:42.572 2025-03-19 01:53:42.572 21000 FEE 434786 20683 \N \N 6030703 2025-03-19 01:59:20.197 2025-03-19 01:59:20.197 100 FEE 434717 21079 \N \N 6030704 2025-03-19 01:59:20.197 2025-03-19 01:59:20.197 900 TIP 434717 14449 \N \N 6030714 2025-03-19 02:00:19.893 2025-03-19 02:00:19.893 1000 FEE 434790 3396 \N \N 6030730 2025-03-19 02:02:30.356 2025-03-19 02:02:30.356 10000 FEE 433943 4624 \N \N 6030731 2025-03-19 02:02:30.356 2025-03-19 02:02:30.356 90000 TIP 433943 17696 \N \N 6030737 2025-03-19 02:04:19.689 2025-03-19 02:04:19.689 1000 FEE 434796 703 \N \N 6030740 2025-03-19 02:05:36.86 2025-03-19 02:05:36.86 1000 FEE 434798 3686 \N \N 6030744 2025-03-19 02:06:43.3 2025-03-19 02:06:43.3 1000 FEE 434800 703 \N \N 6030783 2025-03-19 02:08:20.393 2025-03-19 02:08:20.393 100 FEE 434440 17392 \N \N 6030784 2025-03-19 02:08:20.393 2025-03-19 02:08:20.393 900 TIP 434440 616 \N \N 6030804 2025-03-19 02:11:36.622 2025-03-19 02:11:36.622 1000 FEE 434807 20436 \N \N 6030805 2025-03-19 02:11:36.622 2025-03-19 02:11:36.622 9000 TIP 434807 5746 \N \N 6030806 2025-03-19 02:11:38.559 2025-03-19 02:11:38.559 1000 FEE 434809 20669 \N \N 6030824 2025-03-19 02:14:40.529 2025-03-19 02:14:40.529 1000 FEE 434815 11073 \N \N 6030851 2025-03-19 02:18:36.584 2025-03-19 02:18:36.584 1000 FEE 434823 19924 \N \N 6030859 2025-03-19 02:18:57.733 2025-03-19 02:18:57.733 1100 FEE 434819 4128 \N \N 6030860 2025-03-19 02:18:57.733 2025-03-19 02:18:57.733 9900 TIP 434819 7185 \N \N 6030864 2025-03-19 02:20:08.786 2025-03-19 02:20:08.786 1000 FEE 434825 20825 \N \N 6030866 2025-03-19 02:20:16.471 2025-03-19 02:20:16.471 6400 FEE 434796 18005 \N \N 6030867 2025-03-19 02:20:16.471 2025-03-19 02:20:16.471 57600 TIP 434796 21810 \N \N 6030879 2025-03-19 02:22:13.19 2025-03-19 02:22:13.19 100 FEE 434827 21356 \N \N 6030880 2025-03-19 02:22:13.19 2025-03-19 02:22:13.19 900 TIP 434827 4650 \N \N 6030890 2025-03-19 02:23:43.281 2025-03-19 02:23:43.281 0 FEE 434824 19198 \N \N 6030908 2025-03-19 02:25:32.283 2025-03-19 02:25:32.283 0 FEE 434830 4459 \N \N 6030944 2025-03-19 02:32:19.456 2025-03-19 02:32:19.456 1000 FEE 434838 20669 \N \N 6030962 2025-03-19 02:33:42.599 2025-03-19 02:33:42.599 0 FEE 434833 690 \N \N 6030968 2025-03-19 02:34:53.904 2025-03-19 02:34:53.904 2100 FEE 434743 9796 \N \N 6030969 2025-03-19 02:34:53.904 2025-03-19 02:34:53.904 18900 TIP 434743 20998 \N \N 6030981 2025-03-19 02:38:39.293 2025-03-19 02:38:39.293 1000 FEE 434440 16948 \N \N 6030982 2025-03-19 02:38:39.293 2025-03-19 02:38:39.293 9000 TIP 434440 770 \N \N 6030986 2025-03-19 02:38:41.426 2025-03-19 02:38:41.426 1000 FEE 434440 19905 \N \N 6030987 2025-03-19 02:38:41.426 2025-03-19 02:38:41.426 9000 TIP 434440 20663 \N \N 6030993 2025-03-19 02:39:52.023 2025-03-19 02:39:52.023 1000 FEE 434841 19826 \N \N 6030994 2025-03-19 02:39:57.919 2025-03-19 02:39:57.919 1100 FEE 434814 8945 \N \N 6030995 2025-03-19 02:39:57.919 2025-03-19 02:39:57.919 9900 TIP 434814 5017 \N \N 6030997 2025-03-19 02:40:08.192 2025-03-19 02:40:08.192 1000 FEE 433377 15200 \N \N 6030998 2025-03-19 02:40:08.192 2025-03-19 02:40:08.192 9000 TIP 433377 3642 \N \N 6031016 2025-03-19 02:42:52.825 2025-03-19 02:42:52.825 1000 FEE 434845 19888 \N \N 6031026 2025-03-19 02:45:47.772 2025-03-19 02:45:47.772 1000 FEE 434849 17221 \N \N 6031039 2025-03-19 02:53:17.222 2025-03-19 02:53:17.222 1000 FEE 434852 15282 \N \N 6031057 2025-03-19 02:59:21.469 2025-03-19 02:59:21.469 1000 FEE 434856 644 \N \N 6031070 2025-03-19 03:02:06.236 2025-03-19 03:02:06.236 0 FEE 434858 9450 \N \N 6031077 2025-03-19 03:02:50.374 2025-03-19 03:02:50.374 1000 FEE 434859 2195 \N \N 6031084 2025-03-19 03:04:14.829 2025-03-19 03:04:14.829 100000 FEE 434860 13753 \N \N 6031096 2025-03-19 03:05:23.019 2025-03-19 03:05:23.019 0 FEE 434858 15119 \N \N 6031102 2025-03-19 03:05:53.242 2025-03-19 03:05:53.242 1000 FEE 434864 21291 \N \N 6031116 2025-03-19 03:06:45.765 2025-03-19 03:06:45.765 100 FEE 434274 11153 \N \N 6031117 2025-03-19 03:06:45.765 2025-03-19 03:06:45.765 900 TIP 434274 19117 \N \N 6031137 2025-03-19 03:08:56.488 2025-03-19 03:08:56.488 900 FEE 434643 10433 \N \N 6031138 2025-03-19 03:08:56.488 2025-03-19 03:08:56.488 8100 TIP 434643 21383 \N \N 6031143 2025-03-19 03:09:01.853 2025-03-19 03:09:01.853 1100 FEE 434862 5852 \N \N 6031144 2025-03-19 03:09:01.853 2025-03-19 03:09:01.853 9900 TIP 434862 14669 \N \N 6031147 2025-03-19 03:09:28.242 2025-03-19 03:09:28.242 800 FEE 434864 11776 \N \N 6031148 2025-03-19 03:09:28.242 2025-03-19 03:09:28.242 7200 TIP 434864 837 \N \N 6031150 2025-03-19 03:10:13.356 2025-03-19 03:10:13.356 2800 FEE 434766 12139 \N \N 6030615 2025-03-19 01:41:30.992 2025-03-19 01:41:30.992 10000 FEE 434774 1272 \N \N 6030616 2025-03-19 01:41:30.992 2025-03-19 01:41:30.992 90000 TIP 434774 18930 \N \N 6030664 2025-03-19 01:52:27.797 2025-03-19 01:52:27.797 1000 FEE 434784 17147 \N \N 6030673 2025-03-19 01:54:30.411 2025-03-19 01:54:30.411 1000 FEE 434328 5661 \N \N 6030674 2025-03-19 01:54:30.411 2025-03-19 01:54:30.411 9000 TIP 434328 16432 \N \N 6030675 2025-03-19 01:54:31.039 2025-03-19 01:54:31.039 1000 FEE 434328 1006 \N \N 6030676 2025-03-19 01:54:31.039 2025-03-19 01:54:31.039 9000 TIP 434328 21091 \N \N 6030677 2025-03-19 01:54:31.627 2025-03-19 01:54:31.627 1000 FEE 434328 19332 \N \N 6030678 2025-03-19 01:54:31.627 2025-03-19 01:54:31.627 9000 TIP 434328 20849 \N \N 6030687 2025-03-19 01:57:52.573 2025-03-19 01:57:52.573 1000 FEE 434772 8664 \N \N 6030688 2025-03-19 01:57:52.573 2025-03-19 01:57:52.573 9000 TIP 434772 4292 \N \N 6030707 2025-03-19 01:59:21.183 2025-03-19 01:59:21.183 100 FEE 434717 4378 \N \N 6030708 2025-03-19 01:59:21.183 2025-03-19 01:59:21.183 900 TIP 434717 19292 \N \N 6030709 2025-03-19 01:59:22.567 2025-03-19 01:59:22.567 1000 FEE 434788 17064 \N \N 6030711 2025-03-19 01:59:28.157 2025-03-19 01:59:28.157 1100 FEE 434685 7992 \N \N 6030712 2025-03-19 01:59:28.157 2025-03-19 01:59:28.157 9900 TIP 434685 21421 \N \N 6030754 2025-03-19 02:06:57.241 2025-03-19 02:06:57.241 1000 FEE 434796 7827 \N \N 6030755 2025-03-19 02:06:57.241 2025-03-19 02:06:57.241 9000 TIP 434796 14959 \N \N 6030767 2025-03-19 02:07:55.947 2025-03-19 02:07:55.947 0 FEE 434796 21247 \N \N 6030781 2025-03-19 02:08:19.709 2025-03-19 02:08:19.709 100 FEE 434440 21369 \N \N 6030782 2025-03-19 02:08:19.709 2025-03-19 02:08:19.709 900 TIP 434440 985 \N \N 6030816 2025-03-19 02:12:43.149 2025-03-19 02:12:43.149 4000 FEE 434811 15978 \N \N 6030817 2025-03-19 02:12:43.149 2025-03-19 02:12:43.149 36000 TIP 434811 698 \N \N 6030825 2025-03-19 02:14:43.889 2025-03-19 02:14:43.889 1000 FEE 433799 5708 \N \N 6030826 2025-03-19 02:14:43.889 2025-03-19 02:14:43.889 9000 TIP 433799 21416 \N \N 6030843 2025-03-19 02:16:18.996 2025-03-19 02:16:18.996 0 FEE 434818 21389 \N \N 6030844 2025-03-19 02:17:13.618 2025-03-19 02:17:13.618 1000 FEE 434820 20756 \N \N 6030855 2025-03-19 02:18:57.38 2025-03-19 02:18:57.38 1100 FEE 434819 17331 \N \N 6030856 2025-03-19 02:18:57.38 2025-03-19 02:18:57.38 9900 TIP 434819 21833 \N \N 6030857 2025-03-19 02:18:57.571 2025-03-19 02:18:57.571 1100 FEE 434819 6430 \N \N 6030858 2025-03-19 02:18:57.571 2025-03-19 02:18:57.571 9900 TIP 434819 21522 \N \N 6030872 2025-03-19 02:20:35.324 2025-03-19 02:20:35.324 0 FEE 434824 17526 \N \N 6030887 2025-03-19 02:22:41.631 2025-03-19 02:22:41.631 1600 FEE 434818 654 \N \N 6030888 2025-03-19 02:22:41.631 2025-03-19 02:22:41.631 14400 TIP 434818 20754 \N \N 6030891 2025-03-19 02:23:52.366 2025-03-19 02:23:52.366 2000 FEE 434786 19332 \N \N 6030892 2025-03-19 02:23:52.366 2025-03-19 02:23:52.366 18000 TIP 434786 4115 \N \N 6030899 2025-03-19 02:24:57.801 2025-03-19 02:24:57.801 2000 FEE 434717 19673 \N \N 6030900 2025-03-19 02:24:57.801 2025-03-19 02:24:57.801 18000 TIP 434717 1489 \N \N 6030916 2025-03-19 02:25:52.785 2025-03-19 02:25:52.785 1000 FEE 433831 1130 \N \N 6030917 2025-03-19 02:25:52.785 2025-03-19 02:25:52.785 9000 TIP 433831 3213 \N \N 6030923 2025-03-19 02:27:33.91 2025-03-19 02:27:33.91 1000 FEE 434445 19689 \N \N 6030924 2025-03-19 02:27:33.91 2025-03-19 02:27:33.91 9000 TIP 434445 7983 \N \N 6030933 2025-03-19 02:31:14.978 2025-03-19 02:31:14.978 1000 FEE 434833 16633 \N \N 6030939 2025-03-19 02:31:37.088 2025-03-19 02:31:37.088 0 FEE 434833 21208 \N \N 6030958 2025-03-19 02:33:38.198 2025-03-19 02:33:38.198 10000 FEE 434560 21688 \N \N 6030959 2025-03-19 02:33:38.198 2025-03-19 02:33:38.198 90000 TIP 434560 8173 \N \N 6031013 2025-03-19 02:41:59.579 2025-03-19 02:41:59.579 1000 FEE 434700 1800 \N \N 6031014 2025-03-19 02:41:59.579 2025-03-19 02:41:59.579 9000 TIP 434700 3396 \N \N 6031041 2025-03-19 02:54:56.44 2025-03-19 02:54:56.44 1000 FEE 434853 5195 \N \N 6031043 2025-03-19 02:55:15.137 2025-03-19 02:55:15.137 1000 FEE 434488 9355 \N \N 6031044 2025-03-19 02:55:15.137 2025-03-19 02:55:15.137 9000 TIP 434488 20479 \N \N 6031048 2025-03-19 02:57:28.129 2025-03-19 02:57:28.129 4000 FEE 434854 780 \N \N 6031049 2025-03-19 02:57:28.129 2025-03-19 02:57:28.129 36000 TIP 434854 4292 \N \N 6031050 2025-03-19 02:57:58.222 2025-03-19 02:57:58.222 4000 FEE 434685 6419 \N \N 6031051 2025-03-19 02:57:58.222 2025-03-19 02:57:58.222 36000 TIP 434685 9695 \N \N 6031067 2025-03-19 03:01:35.882 2025-03-19 03:01:35.882 1000 FEE 434858 1620 \N \N 6036515 2025-03-19 11:48:05.818 2025-03-19 11:48:05.818 1000 FEE 435465 738 \N \N 6036516 2025-03-19 11:48:05.818 2025-03-19 11:48:05.818 9000 TIP 435465 12561 \N \N 6036519 2025-03-19 11:48:43.247 2025-03-19 11:48:43.247 1000 FEE 435504 2735 \N \N 6036520 2025-03-19 11:49:09.522 2025-03-19 11:49:09.522 1000 FEE 435505 20655 \N \N 6036522 2025-03-19 11:50:01.529 2025-03-19 11:50:01.529 200 FEE 435501 1051 \N \N 6036523 2025-03-19 11:50:01.529 2025-03-19 11:50:01.529 1800 TIP 435501 876 \N \N 6036531 2025-03-19 11:51:00.631 2025-03-19 11:51:00.631 100 FEE 435505 20864 \N \N 6036532 2025-03-19 11:51:00.631 2025-03-19 11:51:00.631 900 TIP 435505 21803 \N \N 6036536 2025-03-19 11:52:11.377 2025-03-19 11:52:11.377 1000 FEE 435506 2596 \N \N 6036560 2025-03-19 11:52:33.124 2025-03-19 11:52:33.124 100000 FEE 435507 21498 \N \N 6036567 2025-03-19 11:52:39.31 2025-03-19 11:52:39.31 1000 FEE 435475 5725 \N \N 6036568 2025-03-19 11:52:39.31 2025-03-19 11:52:39.31 9000 TIP 435475 21421 \N \N 6036580 2025-03-19 11:52:57.778 2025-03-19 11:52:57.778 11700 FEE 435242 15160 \N \N 6036581 2025-03-19 11:52:57.778 2025-03-19 11:52:57.778 105300 TIP 435242 4395 \N \N 6036619 2025-03-19 11:56:11.54 2025-03-19 11:56:11.54 1000 FEE 435328 21083 \N \N 6036620 2025-03-19 11:56:11.54 2025-03-19 11:56:11.54 9000 TIP 435328 4083 \N \N 6036628 2025-03-19 11:57:34.31 2025-03-19 11:57:34.31 1000 FEE 435509 21159 \N \N 6036629 2025-03-19 11:57:34.31 2025-03-19 11:57:34.31 9000 TIP 435509 12738 \N \N 6036638 2025-03-19 11:57:46.082 2025-03-19 11:57:46.082 100 FEE 435457 1465 \N \N 6036639 2025-03-19 11:57:46.082 2025-03-19 11:57:46.082 900 TIP 435457 10693 \N \N 6036646 2025-03-19 11:58:03.092 2025-03-19 11:58:03.092 100 FEE 435314 21794 \N \N 6036647 2025-03-19 11:58:03.092 2025-03-19 11:58:03.092 900 TIP 435314 11164 \N \N 6036660 2025-03-19 11:58:40.088 2025-03-19 11:58:40.088 9000 FEE 435488 3439 \N \N 6036661 2025-03-19 11:58:40.088 2025-03-19 11:58:40.088 81000 TIP 435488 2329 \N \N 6036664 2025-03-19 11:58:52.724 2025-03-19 11:58:52.724 100 FEE 435480 18727 \N \N 6036665 2025-03-19 11:58:52.724 2025-03-19 11:58:52.724 900 TIP 435480 1046 \N \N 6036691 2025-03-19 12:01:52.278 2025-03-19 12:01:52.278 100 FEE 435510 21060 \N \N 6036692 2025-03-19 12:01:52.278 2025-03-19 12:01:52.278 900 TIP 435510 12749 \N \N 6036693 2025-03-19 12:01:53.837 2025-03-19 12:01:53.837 900 FEE 435510 1825 \N \N 6036694 2025-03-19 12:01:53.837 2025-03-19 12:01:53.837 8100 TIP 435510 1401 \N \N 6036711 2025-03-19 12:09:28.195 2025-03-19 12:09:28.195 100000 FEE 435521 1389 \N \N 6036727 2025-03-19 12:13:01.533 2025-03-19 12:13:01.533 10000 FEE 435515 20837 \N \N 6036728 2025-03-19 12:13:01.533 2025-03-19 12:13:01.533 90000 TIP 435515 5069 \N \N 6036737 2025-03-19 12:14:30.805 2025-03-19 12:14:30.805 1000 FEE 435526 7580 \N \N 6036746 2025-03-19 12:17:46.992 2025-03-19 12:17:46.992 100 FEE 435525 21422 \N \N 6036747 2025-03-19 12:17:46.992 2025-03-19 12:17:46.992 900 TIP 435525 963 \N \N 6036777 2025-03-19 12:20:04.11 2025-03-19 12:20:04.11 2100 FEE 434527 11866 \N \N 6036778 2025-03-19 12:20:04.11 2025-03-19 12:20:04.11 18900 TIP 434527 11648 \N \N 6036785 2025-03-19 12:20:36.012 2025-03-19 12:20:36.012 3300 FEE 435210 636 \N \N 6036786 2025-03-19 12:20:36.012 2025-03-19 12:20:36.012 29700 TIP 435210 2722 \N \N 6036837 2025-03-19 12:27:09.902 2025-03-19 12:27:09.902 4000 FEE 435528 1801 \N \N 6036838 2025-03-19 12:27:09.902 2025-03-19 12:27:09.902 36000 TIP 435528 17976 \N \N 6036841 2025-03-19 12:27:22.296 2025-03-19 12:27:22.296 1000 FEE 435384 10862 \N \N 6036842 2025-03-19 12:27:22.296 2025-03-19 12:27:22.296 9000 TIP 435384 20120 \N \N 6036845 2025-03-19 12:27:38.186 2025-03-19 12:27:38.186 2100 FEE 97082 12222 \N \N 6036846 2025-03-19 12:27:38.186 2025-03-19 12:27:38.186 18900 TIP 97082 21048 \N \N 6036860 2025-03-19 12:29:39.635 2025-03-19 12:29:39.635 5000 FEE 435131 21184 \N \N 6036861 2025-03-19 12:29:39.635 2025-03-19 12:29:39.635 45000 TIP 435131 4395 \N \N 6036889 2025-03-19 12:35:39.964 2025-03-19 12:35:39.964 1000 FEE 435547 4378 \N \N 6036894 2025-03-19 12:35:58.035 2025-03-19 12:35:58.035 2100 FEE 435530 18630 \N \N 6036895 2025-03-19 12:35:58.035 2025-03-19 12:35:58.035 18900 TIP 435530 20059 \N \N 6036901 2025-03-19 12:36:28.674 2025-03-19 12:36:28.674 1000 FEE 435508 18270 \N \N 6036902 2025-03-19 12:36:28.674 2025-03-19 12:36:28.674 9000 TIP 435508 21791 \N \N 6036904 2025-03-19 12:36:31.156 2025-03-19 12:36:31.156 1000 FEE 435508 21541 \N \N 6036905 2025-03-19 12:36:31.156 2025-03-19 12:36:31.156 9000 TIP 435508 18306 \N \N 6036915 2025-03-19 12:37:52.805 2025-03-19 12:37:52.805 2100 FEE 435513 20551 \N \N 6036916 2025-03-19 12:37:52.805 2025-03-19 12:37:52.805 18900 TIP 435513 2327 \N \N 6036930 2025-03-19 12:40:17.236 2025-03-19 12:40:17.236 2100 FEE 435496 6160 \N \N 6036931 2025-03-19 12:40:17.236 2025-03-19 12:40:17.236 18900 TIP 435496 15728 \N \N 6036932 2025-03-19 12:40:22.602 2025-03-19 12:40:22.602 2100 FEE 435501 750 \N \N 6036933 2025-03-19 12:40:22.602 2025-03-19 12:40:22.602 18900 TIP 435501 8469 \N \N 6036934 2025-03-19 12:40:30.942 2025-03-19 12:40:30.942 2100 FEE 435501 9329 \N \N 6036935 2025-03-19 12:40:30.942 2025-03-19 12:40:30.942 18900 TIP 435501 1319 \N \N 6036948 2025-03-19 12:42:28.838 2025-03-19 12:42:28.838 100000 FEE 435551 20775 \N \N 6036962 2025-03-19 12:44:08.578 2025-03-19 12:44:08.578 3300 FEE 435553 12951 \N \N 6038640 2025-03-19 15:31:50.05 2025-03-19 15:31:50.05 2300 FEE 435657 6149 \N \N 6038641 2025-03-19 15:31:50.05 2025-03-19 15:31:50.05 20700 TIP 435657 7580 \N \N 6038650 2025-03-19 15:31:57.065 2025-03-19 15:31:57.065 2300 FEE 435488 12736 \N \N 6038651 2025-03-19 15:31:57.065 2025-03-19 15:31:57.065 20700 TIP 435488 1577 \N \N 6038655 2025-03-19 15:32:17.449 2025-03-19 15:32:17.449 1000 FEE 435657 12946 \N \N 6038656 2025-03-19 15:32:17.449 2025-03-19 15:32:17.449 9000 TIP 435657 20734 \N \N 6038671 2025-03-19 15:36:15.543 2025-03-19 15:36:15.543 2100 FEE 435701 4459 \N \N 6038672 2025-03-19 15:36:15.543 2025-03-19 15:36:15.543 18900 TIP 435701 10608 \N \N 6038688 2025-03-19 15:40:56.817 2025-03-19 15:40:56.817 1000 FEE 435710 7983 \N \N 6038689 2025-03-19 15:41:12.705 2025-03-19 15:41:12.705 1000 FEE 435711 20781 \N \N 6038717 2025-03-19 15:42:01.368 2025-03-19 15:42:01.368 1000 DONT_LIKE_THIS 435497 11829 \N \N 6038760 2025-03-19 15:54:20.854 2025-03-19 15:54:20.854 300 FEE 435720 17741 \N \N 6038761 2025-03-19 15:54:20.854 2025-03-19 15:54:20.854 2700 TIP 435720 21494 \N \N 6038764 2025-03-19 15:54:55.646 2025-03-19 15:54:55.646 100 FEE 435687 21571 \N \N 6038765 2025-03-19 15:54:55.646 2025-03-19 15:54:55.646 900 TIP 435687 10270 \N \N 6038769 2025-03-19 15:56:36.048 2025-03-19 15:56:36.048 10000 FEE 435722 5129 \N \N 6038772 2025-03-19 15:56:51.556 2025-03-19 15:56:51.556 1000 FEE 435723 20201 \N \N 6038805 2025-03-19 16:04:32.1 2025-03-19 16:04:32.1 10000 FEE 435730 7891 \N \N 6038810 2025-03-19 16:06:15.451 2025-03-19 16:06:15.451 10000 FEE 435733 725 \N \N 6038816 2025-03-19 16:08:12.409 2025-03-19 16:08:12.409 10000 FEE 435734 848 \N \N 6038821 2025-03-19 16:09:05.968 2025-03-19 16:09:05.968 1000 FEE 435736 1650 \N \N 6038823 2025-03-19 16:09:19.548 2025-03-19 16:09:19.548 1000 FEE 434581 2022 \N \N 6038824 2025-03-19 16:09:19.548 2025-03-19 16:09:19.548 9000 TIP 434581 19570 \N \N 6038871 2025-03-19 16:17:51.317 2025-03-19 16:17:51.317 1000 FEE 435505 20901 \N \N 6036561 2025-03-19 11:52:33.389 2025-03-19 11:52:33.389 2000 FEE 435474 18177 \N \N 6036562 2025-03-19 11:52:33.389 2025-03-19 11:52:33.389 18000 TIP 435474 18241 \N \N 6036569 2025-03-19 11:52:39.474 2025-03-19 11:52:39.474 1000 FEE 435475 11423 \N \N 6036570 2025-03-19 11:52:39.474 2025-03-19 11:52:39.474 9000 TIP 435475 7869 \N \N 6036587 2025-03-19 11:53:05.096 2025-03-19 11:53:05.096 100 FEE 435497 16942 \N \N 6036588 2025-03-19 11:53:05.096 2025-03-19 11:53:05.096 900 TIP 435497 11263 \N \N 6036589 2025-03-19 11:53:05.651 2025-03-19 11:53:05.651 100 FEE 435497 17011 \N \N 6036590 2025-03-19 11:53:05.651 2025-03-19 11:53:05.651 900 TIP 435497 13987 \N \N 6036613 2025-03-19 11:55:46.517 2025-03-19 11:55:46.517 1000 FEE 435507 20450 \N \N 6036614 2025-03-19 11:55:46.517 2025-03-19 11:55:46.517 9000 TIP 435507 8926 \N \N 6036642 2025-03-19 11:57:50.7 2025-03-19 11:57:50.7 1000 FEE 435511 4166 \N \N 6036657 2025-03-19 11:58:38.396 2025-03-19 11:58:38.396 900 FEE 435488 4035 \N \N 6036658 2025-03-19 11:58:38.396 2025-03-19 11:58:38.396 8100 TIP 435488 16154 \N \N 6036659 2025-03-19 11:58:38.897 2025-03-19 11:58:38.897 100000 FEE 435513 11144 \N \N 6036680 2025-03-19 12:00:20.033 2025-03-19 12:00:20.033 9000 FEE 435495 20102 \N \N 6036681 2025-03-19 12:00:20.033 2025-03-19 12:00:20.033 81000 TIP 435495 2206 \N \N 6036716 2025-03-19 12:10:59.274 2025-03-19 12:10:59.274 0 FEE 435520 21334 \N \N 6036722 2025-03-19 12:12:00.9 2025-03-19 12:12:00.9 1000 FEE 435518 16250 \N \N 6036723 2025-03-19 12:12:00.9 2025-03-19 12:12:00.9 9000 TIP 435518 20754 \N \N 6036754 2025-03-19 12:17:48.655 2025-03-19 12:17:48.655 200 FEE 435525 2537 \N \N 6036755 2025-03-19 12:17:48.655 2025-03-19 12:17:48.655 1800 TIP 435525 2022 \N \N 6036774 2025-03-19 12:19:54.084 2025-03-19 12:19:54.084 2100 FEE 434514 20619 \N \N 6036775 2025-03-19 12:19:54.084 2025-03-19 12:19:54.084 18900 TIP 434514 3642 \N \N 6036787 2025-03-19 12:20:38.986 2025-03-19 12:20:38.986 2100 FEE 434994 805 \N \N 6036788 2025-03-19 12:20:38.986 2025-03-19 12:20:38.986 18900 TIP 434994 18449 \N \N 6036797 2025-03-19 12:21:02.566 2025-03-19 12:21:02.566 2100 FEE 435413 18393 \N \N 6036798 2025-03-19 12:21:02.566 2025-03-19 12:21:02.566 18900 TIP 435413 9537 \N \N 6036826 2025-03-19 12:25:29.59 2025-03-19 12:25:29.59 1000 FEE 435541 14080 \N \N 6036591 2025-03-19 11:53:05.876 2025-03-19 11:53:05.876 100 FEE 435497 17316 \N \N 6036592 2025-03-19 11:53:05.876 2025-03-19 11:53:05.876 900 TIP 435497 624 \N \N 6036602 2025-03-19 11:53:10.525 2025-03-19 11:53:10.525 100 FEE 435505 1047 \N \N 6036603 2025-03-19 11:53:10.525 2025-03-19 11:53:10.525 900 TIP 435505 627 \N \N 6036630 2025-03-19 11:57:34.415 2025-03-19 11:57:34.415 1000 FEE 435509 13622 \N \N 6036631 2025-03-19 11:57:34.415 2025-03-19 11:57:34.415 9000 TIP 435509 2347 \N \N 6036636 2025-03-19 11:57:35.133 2025-03-19 11:57:35.133 1000 FEE 435509 21810 \N \N 6036637 2025-03-19 11:57:35.133 2025-03-19 11:57:35.133 9000 TIP 435509 14370 \N \N 6036640 2025-03-19 11:57:46.337 2025-03-19 11:57:46.337 900 FEE 435457 17638 \N \N 6036641 2025-03-19 11:57:46.337 2025-03-19 11:57:46.337 8100 TIP 435457 21334 \N \N 6036667 2025-03-19 11:59:14.873 2025-03-19 11:59:14.873 100 FEE 435467 4292 \N \N 6036668 2025-03-19 11:59:14.873 2025-03-19 11:59:14.873 900 TIP 435467 16353 \N \N 6036671 2025-03-19 11:59:32.66 2025-03-19 11:59:32.66 9000 FEE 435467 12139 \N \N 6036672 2025-03-19 11:59:32.66 2025-03-19 11:59:32.66 81000 TIP 435467 3400 \N \N 6036677 2025-03-19 12:00:12.258 2025-03-19 12:00:12.258 900 FEE 435495 1603 \N \N 6036678 2025-03-19 12:00:12.258 2025-03-19 12:00:12.258 8100 TIP 435495 960 \N \N 6036683 2025-03-19 12:00:38.167 2025-03-19 12:00:38.167 3000 FEE 435511 895 \N \N 6036684 2025-03-19 12:00:38.167 2025-03-19 12:00:38.167 27000 TIP 435511 1468 \N \N 6036685 2025-03-19 12:00:51.125 2025-03-19 12:00:51.125 3000 FEE 435355 21547 \N \N 6036686 2025-03-19 12:00:51.125 2025-03-19 12:00:51.125 27000 TIP 435355 20864 \N \N 6036689 2025-03-19 12:01:34.928 2025-03-19 12:01:34.928 100000 FEE 435516 696 \N \N 6036707 2025-03-19 12:07:31.497 2025-03-19 12:07:31.497 10000 FEE 435519 12819 \N \N 6036760 2025-03-19 12:18:26.499 2025-03-19 12:18:26.499 2100 FEE 435284 16942 \N \N 6036761 2025-03-19 12:18:26.499 2025-03-19 12:18:26.499 18900 TIP 435284 1823 \N \N 6036772 2025-03-19 12:19:28.491 2025-03-19 12:19:28.491 1000 FEE 435533 20198 \N \N 6036783 2025-03-19 12:20:30.35 2025-03-19 12:20:30.35 4000 FEE 434708 2329 \N \N 6036784 2025-03-19 12:20:30.35 2025-03-19 12:20:30.35 36000 TIP 434708 21766 \N \N 6036804 2025-03-19 12:22:30.825 2025-03-19 12:22:30.825 1600 FEE 435458 9537 \N \N 6036805 2025-03-19 12:22:30.825 2025-03-19 12:22:30.825 14400 TIP 435458 1726 \N \N 6036822 2025-03-19 12:23:56.188 2025-03-19 12:23:56.188 1000 POLL 435495 20715 \N \N 6036835 2025-03-19 12:26:45.971 2025-03-19 12:26:45.971 900 FEE 435528 10611 \N \N 6036836 2025-03-19 12:26:45.971 2025-03-19 12:26:45.971 8100 TIP 435528 726 \N \N 6036853 2025-03-19 12:27:40.492 2025-03-19 12:27:40.492 2100 FEE 97082 21287 \N \N 6036854 2025-03-19 12:27:40.492 2025-03-19 12:27:40.492 18900 TIP 97082 17082 \N \N 6036882 2025-03-19 12:34:38.168 2025-03-19 12:34:38.168 500 FEE 435231 9529 \N \N 6036883 2025-03-19 12:34:38.168 2025-03-19 12:34:38.168 4500 TIP 435231 20669 \N \N 6036918 2025-03-19 12:38:19.909 2025-03-19 12:38:19.909 10000 FEE 435501 9366 \N \N 6036919 2025-03-19 12:38:19.909 2025-03-19 12:38:19.909 90000 TIP 435501 635 \N \N 6036967 2025-03-19 12:44:33.199 2025-03-19 12:44:33.199 1000 FEE 435555 1195 \N \N 6036970 2025-03-19 12:45:04.159 2025-03-19 12:45:04.159 1000 FEE 435556 15806 \N \N 6036982 2025-03-19 12:46:42.617 2025-03-19 12:46:42.617 100 FEE 435030 21373 \N \N 6036983 2025-03-19 12:46:42.617 2025-03-19 12:46:42.617 900 TIP 435030 2065 \N \N 6037004 2025-03-19 12:48:12.108 2025-03-19 12:48:12.108 5000 FEE 435486 21178 \N \N 6037005 2025-03-19 12:48:12.108 2025-03-19 12:48:12.108 45000 TIP 435486 21202 \N \N 6037016 2025-03-19 12:48:43.4 2025-03-19 12:48:43.4 100 FEE 434410 902 \N \N 6037017 2025-03-19 12:48:43.4 2025-03-19 12:48:43.4 900 TIP 434410 8945 \N \N 6037052 2025-03-19 12:55:29.356 2025-03-19 12:55:29.356 1000 POLL 435495 8287 \N \N 6037062 2025-03-19 12:57:02.948 2025-03-19 12:57:02.948 1000 FEE 435571 7992 \N \N 6037080 2025-03-19 12:57:21.903 2025-03-19 12:57:21.903 900 FEE 435401 1720 \N \N 6037081 2025-03-19 12:57:21.903 2025-03-19 12:57:21.903 8100 TIP 435401 805 \N \N 6037082 2025-03-19 12:57:24.036 2025-03-19 12:57:24.036 1000 POLL 435516 13553 \N \N 6037093 2025-03-19 12:57:36.917 2025-03-19 12:57:36.917 100 FEE 435378 18615 \N \N 6037094 2025-03-19 12:57:36.917 2025-03-19 12:57:36.917 900 TIP 435378 21815 \N \N 6037120 2025-03-19 12:59:48.041 2025-03-19 12:59:48.041 2300 FEE 435497 896 \N \N 6037121 2025-03-19 12:59:48.041 2025-03-19 12:59:48.041 20700 TIP 435497 15556 \N \N 6037140 2025-03-19 12:59:50.648 2025-03-19 12:59:50.648 2300 FEE 435497 1534 \N \N 6037141 2025-03-19 12:59:50.648 2025-03-19 12:59:50.648 20700 TIP 435497 21145 \N \N 6037168 2025-03-19 12:59:53.78 2025-03-19 12:59:53.78 2300 FEE 435497 5961 \N \N 6037169 2025-03-19 12:59:53.78 2025-03-19 12:59:53.78 20700 TIP 435497 19906 \N \N 6037170 2025-03-19 12:59:53.983 2025-03-19 12:59:53.983 2300 FEE 435497 1609 \N \N 6037171 2025-03-19 12:59:53.983 2025-03-19 12:59:53.983 20700 TIP 435497 18321 \N \N 6037176 2025-03-19 12:59:54.501 2025-03-19 12:59:54.501 2300 FEE 435497 18601 \N \N 6037177 2025-03-19 12:59:54.501 2025-03-19 12:59:54.501 20700 TIP 435497 16424 \N \N 6037178 2025-03-19 12:59:54.707 2025-03-19 12:59:54.707 2300 FEE 435497 18525 \N \N 6037179 2025-03-19 12:59:54.707 2025-03-19 12:59:54.707 20700 TIP 435497 667 \N \N 6037186 2025-03-19 12:59:55.398 2025-03-19 12:59:55.398 2300 FEE 435497 2543 \N \N 6037187 2025-03-19 12:59:55.398 2025-03-19 12:59:55.398 20700 TIP 435497 656 \N \N 6037227 2025-03-19 13:03:57.045 2025-03-19 13:03:57.045 2100 FEE 434657 2156 \N \N 6037228 2025-03-19 13:03:57.045 2025-03-19 13:03:57.045 18900 TIP 434657 1718 \N \N 6037270 2025-03-19 13:10:56.997 2025-03-19 13:10:56.997 1000 FEE 435581 9332 \N \N 6037284 2025-03-19 13:11:22.779 2025-03-19 13:11:22.779 1000 FEE 435572 1447 \N \N 6037285 2025-03-19 13:11:22.779 2025-03-19 13:11:22.779 9000 TIP 435572 12272 \N \N 6037293 2025-03-19 13:12:11.101 2025-03-19 13:12:11.101 100 FEE 435558 9669 \N \N 6037294 2025-03-19 13:12:11.101 2025-03-19 13:12:11.101 900 TIP 435558 20275 \N \N 6037311 2025-03-19 13:12:43.523 2025-03-19 13:12:43.523 1000 FEE 435585 17237 \N \N 6037316 2025-03-19 13:13:30.825 2025-03-19 13:13:30.825 100 FEE 435046 15336 \N \N 6037317 2025-03-19 13:13:30.825 2025-03-19 13:13:30.825 900 TIP 435046 21577 \N \N 6037322 2025-03-19 13:14:25.917 2025-03-19 13:14:25.917 4000 FEE 435497 14503 \N \N 6037323 2025-03-19 13:14:25.917 2025-03-19 13:14:25.917 36000 TIP 435497 4388 \N \N 6037334 2025-03-19 13:14:50.587 2025-03-19 13:14:50.587 3000 FEE 435217 6578 \N \N 6037335 2025-03-19 13:14:50.587 2025-03-19 13:14:50.587 27000 TIP 435217 17838 \N \N 6037345 2025-03-19 13:16:13.046 2025-03-19 13:16:13.046 8300 FEE 435579 663 \N \N 6037346 2025-03-19 13:16:13.046 2025-03-19 13:16:13.046 74700 TIP 435579 9669 \N \N 6037355 2025-03-19 13:16:23.866 2025-03-19 13:16:23.866 8300 FEE 435551 21379 \N \N 6037356 2025-03-19 13:16:23.866 2025-03-19 13:16:23.866 74700 TIP 435551 14258 \N \N 6037359 2025-03-19 13:16:24.197 2025-03-19 13:16:24.197 8300 FEE 435551 1046 \N \N 6037360 2025-03-19 13:16:24.197 2025-03-19 13:16:24.197 74700 TIP 435551 10398 \N \N 6037373 2025-03-19 13:18:25.951 2025-03-19 13:18:25.951 0 FEE 435592 979 \N \N 6037381 2025-03-19 13:19:58.216 2025-03-19 13:19:58.216 8300 FEE 435596 19905 \N \N 6037382 2025-03-19 13:19:58.216 2025-03-19 13:19:58.216 74700 TIP 435596 19581 \N \N 6030963 2025-03-19 02:34:04.561 2025-03-19 02:34:04.561 4000 FEE 434837 21072 \N \N 6030964 2025-03-19 02:34:04.561 2025-03-19 02:34:04.561 36000 TIP 434837 21555 \N \N 6030973 2025-03-19 02:35:24.281 2025-03-19 02:35:24.281 0 FEE 434833 17568 \N \N 6031004 2025-03-19 02:40:27.774 2025-03-19 02:40:27.774 6300 FEE 434804 6526 \N \N 6031005 2025-03-19 02:40:27.774 2025-03-19 02:40:27.774 56700 TIP 434804 2213 \N \N 6031060 2025-03-19 02:59:47.922 2025-03-19 02:59:47.922 1000 FEE 434857 1609 \N \N 6031074 2025-03-19 03:02:24.55 2025-03-19 03:02:24.55 100 FEE 434854 1692 \N \N 6031075 2025-03-19 03:02:24.55 2025-03-19 03:02:24.55 900 TIP 434854 18017 \N \N 6031088 2025-03-19 03:04:38.12 2025-03-19 03:04:38.12 0 FEE 434858 1567 \N \N 6031089 2025-03-19 03:04:48.781 2025-03-19 03:04:48.781 100 FEE 434835 15549 \N \N 6031090 2025-03-19 03:04:48.781 2025-03-19 03:04:48.781 900 TIP 434835 12169 \N \N 6031091 2025-03-19 03:04:52.436 2025-03-19 03:04:52.436 2100 FEE 434846 16929 \N \N 6031092 2025-03-19 03:04:52.436 2025-03-19 03:04:52.436 18900 TIP 434846 13467 \N \N 6031113 2025-03-19 03:06:15.576 2025-03-19 03:06:15.576 21000 FEE 434865 9330 \N \N 6031114 2025-03-19 03:06:37.373 2025-03-19 03:06:37.373 0 FEE 434858 21047 \N \N 6031128 2025-03-19 03:07:37.392 2025-03-19 03:07:37.392 4000 FEE 434866 18309 \N \N 6031129 2025-03-19 03:07:37.392 2025-03-19 03:07:37.392 36000 TIP 434866 20291 \N \N 6031160 2025-03-19 03:14:16.361 2025-03-19 03:14:16.361 2100 FEE 434867 10536 \N \N 6031161 2025-03-19 03:14:16.361 2025-03-19 03:14:16.361 18900 TIP 434867 3396 \N \N 6031165 2025-03-19 03:16:14.512 2025-03-19 03:16:14.512 2000 FEE 434871 17183 \N \N 6031166 2025-03-19 03:16:14.512 2025-03-19 03:16:14.512 18000 TIP 434871 20788 \N \N 6031175 2025-03-19 03:17:43.904 2025-03-19 03:17:43.904 100 FEE 430342 6578 \N \N 6031176 2025-03-19 03:17:43.904 2025-03-19 03:17:43.904 900 TIP 430342 993 \N \N 6031187 2025-03-19 03:18:04.133 2025-03-19 03:18:04.133 1100 FEE 434865 1439 \N \N 6031188 2025-03-19 03:18:04.133 2025-03-19 03:18:04.133 9900 TIP 434865 1213 \N \N 6031204 2025-03-19 03:22:22.951 2025-03-19 03:22:22.951 1000 FEE 434879 5809 \N \N 6031238 2025-03-19 03:30:13.28 2025-03-19 03:30:13.28 1000 FEE 434064 951 \N \N 6031239 2025-03-19 03:30:13.28 2025-03-19 03:30:13.28 9000 TIP 434064 17014 \N \N 6031266 2025-03-19 03:33:37.985 2025-03-19 03:33:37.985 1000 FEE 434895 641 \N \N 6031277 2025-03-19 03:34:37.575 2025-03-19 03:34:37.575 100000 FEE 434897 10102 \N \N 6031294 2025-03-19 03:37:11.821 2025-03-19 03:37:11.821 1000 FEE 434900 776 \N \N 6031311 2025-03-19 03:44:10.293 2025-03-19 03:44:10.293 1000 FEE 434469 18409 \N \N 6031312 2025-03-19 03:44:10.293 2025-03-19 03:44:10.293 9000 TIP 434469 14122 \N \N 6031314 2025-03-19 03:44:27.337 2025-03-19 03:44:27.337 1000 FEE 434904 18865 \N \N 6031323 2025-03-19 03:45:29.649 2025-03-19 03:45:29.649 2100 FEE 432504 2285 \N \N 6031324 2025-03-19 03:45:29.649 2025-03-19 03:45:29.649 18900 TIP 432504 16571 \N \N 6031351 2025-03-19 03:51:02.934 2025-03-19 03:51:02.934 0 FEE 434911 10638 \N \N 6031375 2025-03-19 03:55:30.722 2025-03-19 03:55:30.722 2000 FEE 434916 8173 \N \N 6031378 2025-03-19 03:55:37.652 2025-03-19 03:55:37.652 1100 FEE 434577 13042 \N \N 6031379 2025-03-19 03:55:37.652 2025-03-19 03:55:37.652 9900 TIP 434577 900 \N \N 6031388 2025-03-19 03:56:25.41 2025-03-19 03:56:25.41 1000 FEE 434902 20180 \N \N 6031389 2025-03-19 03:56:25.41 2025-03-19 03:56:25.41 9000 TIP 434902 827 \N \N 6031397 2025-03-19 03:57:53.811 2025-03-19 03:57:53.811 100000 FEE 434922 837 \N \N 6031415 2025-03-19 03:58:48.285 2025-03-19 03:58:48.285 1100 FEE 434626 1012 \N \N 6031416 2025-03-19 03:58:48.285 2025-03-19 03:58:48.285 9900 TIP 434626 8469 \N \N 6031431 2025-03-19 04:00:14.845 2025-03-19 04:00:14.845 1000 FEE 434925 5590 \N \N 6031434 2025-03-19 04:00:21.624 2025-03-19 04:00:21.624 10000 FEE 434923 12277 \N \N 6031435 2025-03-19 04:00:21.624 2025-03-19 04:00:21.624 90000 TIP 434923 14015 \N \N 6031466 2025-03-19 04:05:35.085 2025-03-19 04:05:35.085 1100 FEE 434926 9333 \N \N 6031467 2025-03-19 04:05:35.085 2025-03-19 04:05:35.085 9900 TIP 434926 976 \N \N 6031488 2025-03-19 04:09:27.705 2025-03-19 04:09:27.705 100 FEE 434856 12561 \N \N 6031489 2025-03-19 04:09:27.705 2025-03-19 04:09:27.705 900 TIP 434856 2513 \N \N 6031552 2025-03-19 04:14:28.78 2025-03-19 04:14:28.78 4000 FEE 434939 21061 \N \N 6031553 2025-03-19 04:14:28.78 2025-03-19 04:14:28.78 36000 TIP 434939 9843 \N \N 6031561 2025-03-19 04:14:52.573 2025-03-19 04:14:52.573 27000 FEE 434685 9820 \N \N 6031562 2025-03-19 04:14:52.573 2025-03-19 04:14:52.573 243000 TIP 434685 6149 \N \N 6031567 2025-03-19 04:15:01.154 2025-03-19 04:15:01.154 9000 FEE 434695 2674 \N \N 6031568 2025-03-19 04:15:01.154 2025-03-19 04:15:01.154 81000 TIP 434695 21104 \N \N 6031617 2025-03-19 04:24:14.498 2025-03-19 04:24:14.498 200 FEE 434942 2151 \N \N 6031618 2025-03-19 04:24:14.498 2025-03-19 04:24:14.498 1800 TIP 434942 17797 \N \N 6031623 2025-03-19 04:24:58.736 2025-03-19 04:24:58.736 1000 FEE 434949 16653 \N \N 6031657 2025-03-19 04:33:19.138 2025-03-19 04:33:19.138 2100 FEE 434865 1273 \N \N 6031658 2025-03-19 04:33:19.138 2025-03-19 04:33:19.138 18900 TIP 434865 19888 \N \N 6031669 2025-03-19 04:33:32.949 2025-03-19 04:33:32.949 2100 FEE 434695 9355 \N \N 6031670 2025-03-19 04:33:32.949 2025-03-19 04:33:32.949 18900 TIP 434695 3506 \N \N 6031715 2025-03-19 04:36:44.335 2025-03-19 04:36:44.335 100000 FEE 434963 780 \N \N 6031768 2025-03-19 04:39:59.319 2025-03-19 04:39:59.319 10000 FEE 434969 2513 \N \N 6031796 2025-03-19 04:42:58.082 2025-03-19 04:42:58.082 1000 FEE 434964 9346 \N \N 6031797 2025-03-19 04:42:58.082 2025-03-19 04:42:58.082 9000 TIP 434964 21063 \N \N 6031798 2025-03-19 04:43:12.027 2025-03-19 04:43:12.027 1000 FEE 434970 9330 \N \N 6031810 2025-03-19 04:43:51.591 2025-03-19 04:43:51.591 1000 FEE 434962 19071 \N \N 6031811 2025-03-19 04:43:51.591 2025-03-19 04:43:51.591 9000 TIP 434962 2652 \N \N 6031822 2025-03-19 04:43:54.733 2025-03-19 04:43:54.733 2300 FEE 434920 8004 \N \N 6031823 2025-03-19 04:43:54.733 2025-03-19 04:43:54.733 20700 TIP 434920 2670 \N \N 6031824 2025-03-19 04:44:00.585 2025-03-19 04:44:00.585 4000 FEE 434958 15226 \N \N 6031825 2025-03-19 04:44:00.585 2025-03-19 04:44:00.585 36000 TIP 434958 1439 \N \N 6031837 2025-03-19 04:44:55.466 2025-03-19 04:44:55.466 1300 FEE 434613 4570 \N \N 6031838 2025-03-19 04:44:55.466 2025-03-19 04:44:55.466 11700 TIP 434613 6765 \N \N 6031848 2025-03-19 04:45:19.177 2025-03-19 04:45:19.177 1300 FEE 434533 1620 \N \N 6031849 2025-03-19 04:45:19.177 2025-03-19 04:45:19.177 11700 TIP 434533 5761 \N \N 6031874 2025-03-19 04:49:28.319 2025-03-19 04:49:28.319 10000 FEE 434977 13132 \N \N 6031882 2025-03-19 04:50:19.656 2025-03-19 04:50:19.656 1000 FEE 434980 2088 \N \N 6031888 2025-03-19 04:50:52.16 2025-03-19 04:50:52.16 2100 FEE 434515 18717 \N \N 6031889 2025-03-19 04:50:52.16 2025-03-19 04:50:52.16 18900 TIP 434515 759 \N \N 6031917 2025-03-19 04:53:46.842 2025-03-19 04:53:46.842 1100 FEE 434627 16830 \N \N 6031918 2025-03-19 04:53:46.842 2025-03-19 04:53:46.842 9900 TIP 434627 3396 \N \N 6031926 2025-03-19 04:54:31.009 2025-03-19 04:54:31.009 1100 FEE 433828 11263 \N \N 6031927 2025-03-19 04:54:31.009 2025-03-19 04:54:31.009 9900 TIP 433828 10490 \N \N 6031932 2025-03-19 04:56:14.571 2025-03-19 04:56:14.571 1000 FEE 434982 21275 \N \N 6031940 2025-03-19 04:58:22.226 2025-03-19 04:58:22.226 10000 FEE 434986 13553 \N \N 6031945 2025-03-19 04:58:56.657 2025-03-19 04:58:56.657 1000 FEE 434987 10056 \N \N 6031958 2025-03-19 04:59:51.385 2025-03-19 04:59:51.385 100000 FEE 434988 5522 \N \N 6031971 2025-03-19 05:01:04.45 2025-03-19 05:01:04.45 8300 FEE 434791 10719 \N \N 6031972 2025-03-19 05:01:04.45 2025-03-19 05:01:04.45 74700 TIP 434791 17696 \N \N 6031994 2025-03-19 05:01:20.682 2025-03-19 05:01:20.682 8300 FEE 434661 19459 \N \N 6031995 2025-03-19 05:01:20.682 2025-03-19 05:01:20.682 74700 TIP 434661 633 \N \N 6032000 2025-03-19 05:01:24.474 2025-03-19 05:01:24.474 8300 FEE 434491 14280 \N \N 6032001 2025-03-19 05:01:24.474 2025-03-19 05:01:24.474 74700 TIP 434491 8535 \N \N 6032011 2025-03-19 05:01:59.777 2025-03-19 05:01:59.777 100 FEE 434845 3745 \N \N 6032012 2025-03-19 05:01:59.777 2025-03-19 05:01:59.777 900 TIP 434845 10818 \N \N 6032015 2025-03-19 05:02:12.045 2025-03-19 05:02:12.045 100000 FEE 434991 670 \N \N 6032023 2025-03-19 05:04:42.139 2025-03-19 05:04:42.139 100000 FEE 434994 18101 \N \N 6032054 2025-03-19 05:09:20.314 2025-03-19 05:09:20.314 10000 FEE 434617 1802 \N \N 6036594 2025-03-19 11:53:09.827 2025-03-19 11:53:09.827 1000 FEE 435470 17727 \N \N 6036595 2025-03-19 11:53:09.827 2025-03-19 11:53:09.827 9000 TIP 435470 14774 \N \N 6036596 2025-03-19 11:53:10.17 2025-03-19 11:53:10.17 200 FEE 435505 13753 \N \N 6036597 2025-03-19 11:53:10.17 2025-03-19 11:53:10.17 1800 TIP 435505 882 \N \N 6036607 2025-03-19 11:53:42.918 2025-03-19 11:53:42.918 2500 FEE 435355 690 \N \N 6036608 2025-03-19 11:53:42.918 2025-03-19 11:53:42.918 22500 TIP 435355 15367 \N \N 6036609 2025-03-19 11:53:45.457 2025-03-19 11:53:45.457 2600 FEE 435141 20906 \N \N 6036610 2025-03-19 11:53:45.457 2025-03-19 11:53:45.457 23400 TIP 435141 2010 \N \N 6036621 2025-03-19 11:56:11.668 2025-03-19 11:56:11.668 1000 FEE 435328 919 \N \N 6036622 2025-03-19 11:56:11.668 2025-03-19 11:56:11.668 9000 TIP 435328 20201 \N \N 6036650 2025-03-19 11:58:04.213 2025-03-19 11:58:04.213 100 FEE 435314 5637 \N \N 6036651 2025-03-19 11:58:04.213 2025-03-19 11:58:04.213 900 TIP 435314 1647 \N \N 6036688 2025-03-19 12:01:18.527 2025-03-19 12:01:18.527 1000 FEE 435515 5708 \N \N 6036702 2025-03-19 12:06:03.842 2025-03-19 12:06:03.842 1000 POLL 435516 20490 \N \N 6036730 2025-03-19 12:13:35.914 2025-03-19 12:13:35.914 1000 FEE 435524 20612 \N \N 6036739 2025-03-19 12:15:31.524 2025-03-19 12:15:31.524 1000 FEE 435527 10016 \N \N 6036740 2025-03-19 12:15:35.736 2025-03-19 12:15:35.736 0 FEE 435520 17064 \N \N 6036745 2025-03-19 12:17:46.46 2025-03-19 12:17:46.46 10000 FEE 435530 10013 \N \N 6036819 2025-03-19 12:23:53.19 2025-03-19 12:23:53.19 1000 FEE 435539 14791 \N \N 6036831 2025-03-19 12:26:37.948 2025-03-19 12:26:37.948 900 FEE 435516 17696 \N \N 6036832 2025-03-19 12:26:37.948 2025-03-19 12:26:37.948 8100 TIP 435516 882 \N \N 6036877 2025-03-19 12:33:25.293 2025-03-19 12:33:25.293 100000 FEE 435544 15728 \N \N 6036878 2025-03-19 12:33:41.541 2025-03-19 12:33:41.541 1000 FEE 435546 1244 \N \N 6036906 2025-03-19 12:37:12.067 2025-03-19 12:37:12.067 10000 FEE 435513 4287 \N \N 6036907 2025-03-19 12:37:12.067 2025-03-19 12:37:12.067 90000 TIP 435513 18673 \N \N 6036941 2025-03-19 12:41:26.542 2025-03-19 12:41:26.542 0 FEE 435549 1173 \N \N 6036944 2025-03-19 12:42:13.379 2025-03-19 12:42:13.379 1000 FEE 435550 2710 \N \N 6036946 2025-03-19 12:42:18.021 2025-03-19 12:42:18.021 1000 FEE 435425 629 \N \N 6036947 2025-03-19 12:42:18.021 2025-03-19 12:42:18.021 9000 TIP 435425 15045 \N \N 6036955 2025-03-19 12:43:50.222 2025-03-19 12:43:50.222 1000 FEE 434940 10979 \N \N 6036956 2025-03-19 12:43:50.222 2025-03-19 12:43:50.222 9000 TIP 434940 15732 \N \N 6036957 2025-03-19 12:43:52.659 2025-03-19 12:43:52.659 1000 FEE 435554 5499 \N \N 6036972 2025-03-19 12:45:24.587 2025-03-19 12:45:24.587 1000 FEE 435438 21214 \N \N 6036973 2025-03-19 12:45:24.587 2025-03-19 12:45:24.587 9000 TIP 435438 18270 \N \N 6036977 2025-03-19 12:46:23.182 2025-03-19 12:46:23.182 2100 FEE 435552 16747 \N \N 6036978 2025-03-19 12:46:23.182 2025-03-19 12:46:23.182 18900 TIP 435552 1236 \N \N 6036994 2025-03-19 12:47:03.264 2025-03-19 12:47:03.264 100 FEE 435327 11192 \N \N 6036995 2025-03-19 12:47:03.264 2025-03-19 12:47:03.264 900 TIP 435327 15367 \N \N 6037036 2025-03-19 12:51:47.173 2025-03-19 12:51:47.173 1000 FEE 435436 20588 \N \N 6037037 2025-03-19 12:51:47.173 2025-03-19 12:51:47.173 9000 TIP 435436 16598 \N \N 6037041 2025-03-19 12:52:25.549 2025-03-19 12:52:25.549 1000 FEE 435563 15484 \N \N 6037042 2025-03-19 12:52:58.798 2025-03-19 12:52:58.798 1000 FEE 435559 1472 \N \N 6037043 2025-03-19 12:52:58.798 2025-03-19 12:52:58.798 9000 TIP 435559 13843 \N \N 6037056 2025-03-19 12:56:08.122 2025-03-19 12:56:08.122 2100 FEE 435217 18673 \N \N 6037057 2025-03-19 12:56:08.122 2025-03-19 12:56:08.122 18900 TIP 435217 21296 \N \N 6037061 2025-03-19 12:56:44.076 2025-03-19 12:56:44.076 1000 FEE 435570 680 \N \N 6037078 2025-03-19 12:57:21.778 2025-03-19 12:57:21.778 1000 FEE 435516 21249 \N \N 6037079 2025-03-19 12:57:21.778 2025-03-19 12:57:21.778 9000 TIP 435516 18114 \N \N 6037105 2025-03-19 12:58:08.556 2025-03-19 12:58:08.556 900 FEE 435544 1519 \N \N 6037106 2025-03-19 12:58:08.556 2025-03-19 12:58:08.556 8100 TIP 435544 6268 \N \N 6037130 2025-03-19 12:59:49.624 2025-03-19 12:59:49.624 2300 FEE 435497 9346 \N \N 6037131 2025-03-19 12:59:49.624 2025-03-19 12:59:49.624 20700 TIP 435497 16410 \N \N 6037136 2025-03-19 12:59:50.069 2025-03-19 12:59:50.069 2300 FEE 435497 14472 \N \N 6037137 2025-03-19 12:59:50.069 2025-03-19 12:59:50.069 20700 TIP 435497 20706 \N \N 6037148 2025-03-19 12:59:51.848 2025-03-19 12:59:51.848 6900 FEE 435497 5173 \N \N 6037149 2025-03-19 12:59:51.848 2025-03-19 12:59:51.848 62100 TIP 435497 21303 \N \N 6037156 2025-03-19 12:59:52.556 2025-03-19 12:59:52.556 1600 FEE 435551 617 \N \N 6037157 2025-03-19 12:59:52.556 2025-03-19 12:59:52.556 14400 TIP 435551 9418 \N \N 6037166 2025-03-19 12:59:53.399 2025-03-19 12:59:53.399 2300 FEE 435497 14357 \N \N 6037167 2025-03-19 12:59:53.399 2025-03-19 12:59:53.399 20700 TIP 435497 20734 \N \N 6037172 2025-03-19 12:59:54.147 2025-03-19 12:59:54.147 2300 FEE 435497 19663 \N \N 6037173 2025-03-19 12:59:54.147 2025-03-19 12:59:54.147 20700 TIP 435497 14122 \N \N 6037190 2025-03-19 12:59:56.03 2025-03-19 12:59:56.03 2300 FEE 435497 1389 \N \N 6037191 2025-03-19 12:59:56.03 2025-03-19 12:59:56.03 20700 TIP 435497 17798 \N \N 6037200 2025-03-19 12:59:57.055 2025-03-19 12:59:57.055 2300 FEE 435497 21271 \N \N 6037201 2025-03-19 12:59:57.055 2025-03-19 12:59:57.055 20700 TIP 435497 6602 \N \N 6037237 2025-03-19 13:06:40.167 2025-03-19 13:06:40.167 3000 FEE 435502 21202 \N \N 6037238 2025-03-19 13:06:40.167 2025-03-19 13:06:40.167 27000 TIP 435502 1008 \N \N 6038708 2025-03-19 15:41:53.174 2025-03-19 15:41:53.174 1000 FEE 435712 6688 \N \N 6038738 2025-03-19 15:51:58.049 2025-03-19 15:51:58.049 300 FEE 434599 20616 \N \N 6038739 2025-03-19 15:51:58.049 2025-03-19 15:51:58.049 2700 TIP 434599 9331 \N \N 6038788 2025-03-19 16:00:02.55 2025-03-19 16:00:02.55 1000 FEE 435726 1245 \N \N 6038813 2025-03-19 16:06:44.43 2025-03-19 16:06:44.43 500 FEE 435420 656 \N \N 6038814 2025-03-19 16:06:44.43 2025-03-19 16:06:44.43 4500 TIP 435420 21019 \N \N 6038857 2025-03-19 16:15:25.871 2025-03-19 16:15:25.871 7700 FEE 434263 20687 \N \N 6038858 2025-03-19 16:15:25.871 2025-03-19 16:15:25.871 69300 TIP 434263 10342 \N \N 6038916 2025-03-19 16:29:29.497 2025-03-19 16:29:29.497 2300 FEE 435711 6160 \N \N 6038917 2025-03-19 16:29:29.497 2025-03-19 16:29:29.497 20700 TIP 435711 10981 \N \N 6038920 2025-03-19 16:29:36.571 2025-03-19 16:29:36.571 2300 FEE 435610 6537 \N \N 6038921 2025-03-19 16:29:36.571 2025-03-19 16:29:36.571 20700 TIP 435610 14381 \N \N 6038943 2025-03-19 16:30:31.379 2025-03-19 16:30:31.379 100 FEE 435579 14959 \N \N 6038944 2025-03-19 16:30:31.379 2025-03-19 16:30:31.379 900 TIP 435579 9159 \N \N 6038947 2025-03-19 16:30:47.103 2025-03-19 16:30:47.103 22700 FEE 432920 16424 \N \N 6038948 2025-03-19 16:30:47.103 2025-03-19 16:30:47.103 204300 TIP 432920 827 \N \N 6038988 2025-03-19 16:41:44.283 2025-03-19 16:41:44.283 2700 FEE 435552 13865 \N \N 6038989 2025-03-19 16:41:44.283 2025-03-19 16:41:44.283 24300 TIP 435552 21349 \N \N 6038994 2025-03-19 16:41:44.794 2025-03-19 16:41:44.794 2700 FEE 435552 1141 \N \N 6038995 2025-03-19 16:41:44.794 2025-03-19 16:41:44.794 24300 TIP 435552 5129 \N \N 6039000 2025-03-19 16:41:46.275 2025-03-19 16:41:46.275 2700 FEE 435552 21262 \N \N 6039001 2025-03-19 16:41:46.275 2025-03-19 16:41:46.275 24300 TIP 435552 19924 \N \N 6039008 2025-03-19 16:45:15.529 2025-03-19 16:45:15.529 2100 FEE 435742 16309 \N \N 6039009 2025-03-19 16:45:15.529 2025-03-19 16:45:15.529 18900 TIP 435742 1505 \N \N 6039012 2025-03-19 16:45:58.604 2025-03-19 16:45:58.604 100 FEE 435708 9347 \N \N 6039013 2025-03-19 16:45:58.604 2025-03-19 16:45:58.604 900 TIP 435708 19857 \N \N 6039027 2025-03-19 16:53:59.514 2025-03-19 16:53:59.514 2700 FEE 435531 17095 \N \N 6039028 2025-03-19 16:53:59.514 2025-03-19 16:53:59.514 24300 TIP 435531 8926 \N \N 6039038 2025-03-19 16:56:21.373 2025-03-19 16:56:21.373 100 FEE 435384 16042 \N \N 6039039 2025-03-19 16:56:21.373 2025-03-19 16:56:21.373 900 TIP 435384 21019 \N \N 6039047 2025-03-19 16:57:07.818 2025-03-19 16:57:07.818 2700 FEE 435181 14295 \N \N 6039048 2025-03-19 16:57:07.818 2025-03-19 16:57:07.818 24300 TIP 435181 2639 \N \N 6039064 2025-03-19 16:58:30.154 2025-03-19 16:58:30.154 2700 FEE 435086 1429 \N \N 6039065 2025-03-19 16:58:30.154 2025-03-19 16:58:30.154 24300 TIP 435086 21216 \N \N 6039077 2025-03-19 16:59:05.261 2025-03-19 16:59:05.261 0 FEE 435752 10638 \N \N 6039087 2025-03-19 16:59:24.892 2025-03-19 16:59:24.892 900 FEE 435741 703 \N \N 6039088 2025-03-19 16:59:24.892 2025-03-19 16:59:24.892 8100 TIP 435741 20370 \N \N 6039091 2025-03-19 16:59:36.056 2025-03-19 16:59:36.056 1000 FEE 435328 11192 \N \N 6039092 2025-03-19 16:59:36.056 2025-03-19 16:59:36.056 9000 TIP 435328 1626 \N \N 6039105 2025-03-19 16:59:37.535 2025-03-19 16:59:37.535 1000 FEE 435328 8954 \N \N 6039106 2025-03-19 16:59:37.535 2025-03-19 16:59:37.535 9000 TIP 435328 19930 \N \N 6039111 2025-03-19 16:59:38.041 2025-03-19 16:59:38.041 1000 FEE 435328 18069 \N \N 6039112 2025-03-19 16:59:38.041 2025-03-19 16:59:38.041 9000 TIP 435328 18177 \N \N 6039123 2025-03-19 16:59:39.174 2025-03-19 16:59:39.174 1000 FEE 435328 5057 \N \N 6039124 2025-03-19 16:59:39.174 2025-03-19 16:59:39.174 9000 TIP 435328 12277 \N \N 6039129 2025-03-19 16:59:40.645 2025-03-19 16:59:40.645 1000 FEE 435328 9332 \N \N 6039130 2025-03-19 16:59:40.645 2025-03-19 16:59:40.645 9000 TIP 435328 17209 \N \N 6039131 2025-03-19 16:59:40.815 2025-03-19 16:59:40.815 1000 FEE 435328 21408 \N \N 6039132 2025-03-19 16:59:40.815 2025-03-19 16:59:40.815 9000 TIP 435328 7916 \N \N 6039133 2025-03-19 16:59:40.986 2025-03-19 16:59:40.986 1000 FEE 435328 1505 \N \N 6039134 2025-03-19 16:59:40.986 2025-03-19 16:59:40.986 9000 TIP 435328 19655 \N \N 6039139 2025-03-19 16:59:41.632 2025-03-19 16:59:41.632 1000 FEE 435328 21424 \N \N 6039140 2025-03-19 16:59:41.632 2025-03-19 16:59:41.632 9000 TIP 435328 15556 \N \N 6039141 2025-03-19 16:59:45.072 2025-03-19 16:59:45.072 100 FEE 435728 1611 \N \N 6039142 2025-03-19 16:59:45.072 2025-03-19 16:59:45.072 900 TIP 435728 21523 \N \N 6039145 2025-03-19 16:59:46.208 2025-03-19 16:59:46.208 9000 FEE 435728 16789 \N \N 6039146 2025-03-19 16:59:46.208 2025-03-19 16:59:46.208 81000 TIP 435728 12749 \N \N 6039153 2025-03-19 16:59:57.504 2025-03-19 16:59:57.504 100 FEE 435704 2000 \N \N 6039154 2025-03-19 16:59:57.504 2025-03-19 16:59:57.504 900 TIP 435704 4459 \N \N 6039162 2025-03-19 17:00:35.357 2025-03-19 17:00:35.357 0 FEE 435752 4502 \N \N 6039170 2025-03-19 17:04:11.825 2025-03-19 17:04:11.825 2100 FEE 435069 21216 \N \N 6039171 2025-03-19 17:04:11.825 2025-03-19 17:04:11.825 18900 TIP 435069 21709 \N \N 6039177 2025-03-19 17:07:15.681 2025-03-19 17:07:15.681 2100 FEE 435661 16950 \N \N 6039178 2025-03-19 17:07:15.681 2025-03-19 17:07:15.681 18900 TIP 435661 8380 \N \N 6039184 2025-03-19 17:11:15.632 2025-03-19 17:11:15.632 10000 FEE 435758 10094 \N \N 6039192 2025-03-19 17:11:55.757 2025-03-19 17:11:55.757 21800 FEE 435124 4083 \N \N 6039193 2025-03-19 17:11:55.757 2025-03-19 17:11:55.757 196200 TIP 435124 9 \N \N 6039201 2025-03-19 17:12:19.672 2025-03-19 17:12:19.672 1000 FEE 435531 15536 \N \N 6039202 2025-03-19 17:12:19.672 2025-03-19 17:12:19.672 9000 TIP 435531 14037 \N \N 6039231 2025-03-19 17:15:30.381 2025-03-19 17:15:30.381 5000 FEE 435257 21063 \N \N 6039232 2025-03-19 17:15:30.381 2025-03-19 17:15:30.381 45000 TIP 435257 1970 \N \N 6039253 2025-03-19 17:26:38.563 2025-03-19 17:26:38.563 2100 FEE 435610 684 \N \N 6039254 2025-03-19 17:26:38.563 2025-03-19 17:26:38.563 18900 TIP 435610 19663 \N \N 6039257 2025-03-19 17:26:39.757 2025-03-19 17:26:39.757 2100 FEE 435639 10291 \N \N 6039258 2025-03-19 17:26:39.757 2025-03-19 17:26:39.757 18900 TIP 435639 12368 \N \N 6039265 2025-03-19 17:26:42.341 2025-03-19 17:26:42.341 2100 FEE 435579 4802 \N \N 6039266 2025-03-19 17:26:42.341 2025-03-19 17:26:42.341 18900 TIP 435579 27 \N \N 6039275 2025-03-19 17:26:45.954 2025-03-19 17:26:45.954 2100 FEE 435231 10608 \N \N 6039276 2025-03-19 17:26:45.954 2025-03-19 17:26:45.954 18900 TIP 435231 18174 \N \N 6039277 2025-03-19 17:26:47.25 2025-03-19 17:26:47.25 2100 FEE 435242 2056 \N \N 6039278 2025-03-19 17:26:47.25 2025-03-19 17:26:47.25 18900 TIP 435242 19906 \N \N 6039279 2025-03-19 17:26:47.995 2025-03-19 17:26:47.995 2100 FEE 435679 15045 \N \N 6039280 2025-03-19 17:26:47.995 2025-03-19 17:26:47.995 18900 TIP 435679 20133 \N \N 6039292 2025-03-19 17:31:32.374 2025-03-19 17:31:32.374 2100 FEE 435690 674 \N \N 6039293 2025-03-19 17:31:32.374 2025-03-19 17:31:32.374 18900 TIP 435690 6573 \N \N 6039306 2025-03-19 17:35:36.796 2025-03-19 17:35:36.796 3000 FEE 435759 3729 \N \N 6039307 2025-03-19 17:35:36.796 2025-03-19 17:35:36.796 27000 TIP 435759 20073 \N \N 6039322 2025-03-19 17:40:28.357 2025-03-19 17:40:28.357 3300 FEE 435760 12483 \N \N 6039323 2025-03-19 17:40:28.357 2025-03-19 17:40:28.357 29700 TIP 435760 11862 \N \N 6036766 2025-03-19 12:19:12.905 2025-03-19 12:19:12.905 2100 FEE 435151 1737 \N \N 6036767 2025-03-19 12:19:12.905 2025-03-19 12:19:12.905 18900 TIP 435151 16724 \N \N 6036803 2025-03-19 12:22:27.599 2025-03-19 12:22:27.599 1000 POLL 435495 17221 \N \N 6036808 2025-03-19 12:22:54.274 2025-03-19 12:22:54.274 3200 FEE 435467 21532 \N \N 6036809 2025-03-19 12:22:54.274 2025-03-19 12:22:54.274 28800 TIP 435467 1836 \N \N 6036810 2025-03-19 12:22:58.376 2025-03-19 12:22:58.376 2300 FEE 435534 19735 \N \N 6036811 2025-03-19 12:22:58.376 2025-03-19 12:22:58.376 20700 TIP 435534 2347 \N \N 6036829 2025-03-19 12:26:37.757 2025-03-19 12:26:37.757 100 FEE 435516 1094 \N \N 6036830 2025-03-19 12:26:37.757 2025-03-19 12:26:37.757 900 TIP 435516 21048 \N \N 6036892 2025-03-19 12:35:55.904 2025-03-19 12:35:55.904 2500 FEE 435200 20495 \N \N 6036893 2025-03-19 12:35:55.904 2025-03-19 12:35:55.904 22500 TIP 435200 8380 \N \N 6036899 2025-03-19 12:36:21.329 2025-03-19 12:36:21.329 3000 FEE 435546 21412 \N \N 6036900 2025-03-19 12:36:21.329 2025-03-19 12:36:21.329 27000 TIP 435546 17638 \N \N 6036920 2025-03-19 12:38:29.762 2025-03-19 12:38:29.762 300 FEE 37384 8664 \N \N 6036921 2025-03-19 12:38:29.762 2025-03-19 12:38:29.762 2700 TIP 37384 9026 \N \N 6036936 2025-03-19 12:40:37.056 2025-03-19 12:40:37.056 1000 FEE 435549 16270 \N \N 6036958 2025-03-19 12:43:55.506 2025-03-19 12:43:55.506 1000 FEE 434951 13566 \N \N 6036959 2025-03-19 12:43:55.506 2025-03-19 12:43:55.506 9000 TIP 434951 16406 \N \N 6036965 2025-03-19 12:44:30.425 2025-03-19 12:44:30.425 4000 FEE 435551 5809 \N \N 6036966 2025-03-19 12:44:30.425 2025-03-19 12:44:30.425 36000 TIP 435551 11240 \N \N 6036974 2025-03-19 12:45:31.777 2025-03-19 12:45:31.777 1000 FEE 435551 16747 \N \N 6036975 2025-03-19 12:45:31.777 2025-03-19 12:45:31.777 9000 TIP 435551 21803 \N \N 6036997 2025-03-19 12:47:16 2025-03-19 12:47:16 1000 FEE 435558 680 \N \N 6036998 2025-03-19 12:47:18.341 2025-03-19 12:47:18.341 10000 FEE 435328 17046 \N \N 6036999 2025-03-19 12:47:18.341 2025-03-19 12:47:18.341 90000 TIP 435328 1469 \N \N 6037002 2025-03-19 12:47:44.016 2025-03-19 12:47:44.016 100 FEE 435242 18678 \N \N 6037003 2025-03-19 12:47:44.016 2025-03-19 12:47:44.016 900 TIP 435242 13249 \N \N 6037012 2025-03-19 12:48:35.091 2025-03-19 12:48:35.091 5000 FEE 434930 10979 \N \N 6037013 2025-03-19 12:48:35.091 2025-03-19 12:48:35.091 45000 TIP 434930 5752 \N \N 6037021 2025-03-19 12:49:27.023 2025-03-19 12:49:27.023 1000 FEE 435560 21577 \N \N 6037026 2025-03-19 12:51:00.277 2025-03-19 12:51:00.277 2000 FEE 435561 20479 \N \N 6037027 2025-03-19 12:51:00.277 2025-03-19 12:51:00.277 18000 TIP 435561 21522 \N \N 6037047 2025-03-19 12:54:44.267 2025-03-19 12:54:44.267 1000 FEE 435565 21683 \N \N 6037051 2025-03-19 12:55:16.908 2025-03-19 12:55:16.908 1000 FEE 435566 9167 \N \N 6037076 2025-03-19 12:57:21.677 2025-03-19 12:57:21.677 100 FEE 435401 9341 \N \N 6037077 2025-03-19 12:57:21.677 2025-03-19 12:57:21.677 900 TIP 435401 2061 \N \N 6037087 2025-03-19 12:57:30.579 2025-03-19 12:57:30.579 100 FEE 435382 2577 \N \N 6037088 2025-03-19 12:57:30.579 2025-03-19 12:57:30.579 900 TIP 435382 21539 \N \N 6037091 2025-03-19 12:57:33.47 2025-03-19 12:57:33.47 9000 FEE 435382 2000 \N \N 6037092 2025-03-19 12:57:33.47 2025-03-19 12:57:33.47 81000 TIP 435382 6717 \N \N 6037097 2025-03-19 12:57:38.981 2025-03-19 12:57:38.981 9000 FEE 435378 17050 \N \N 6037098 2025-03-19 12:57:38.981 2025-03-19 12:57:38.981 81000 TIP 435378 7847 \N \N 6037110 2025-03-19 12:58:55.053 2025-03-19 12:58:55.053 1000 FEE 435572 21202 \N \N 6037174 2025-03-19 12:59:54.343 2025-03-19 12:59:54.343 2300 FEE 435497 21248 \N \N 6037175 2025-03-19 12:59:54.343 2025-03-19 12:59:54.343 20700 TIP 435497 1120 \N \N 6037180 2025-03-19 12:59:54.869 2025-03-19 12:59:54.869 2300 FEE 435497 2537 \N \N 6037181 2025-03-19 12:59:54.869 2025-03-19 12:59:54.869 20700 TIP 435497 9418 \N \N 6037184 2025-03-19 12:59:55.227 2025-03-19 12:59:55.227 2300 FEE 435497 1803 \N \N 6037185 2025-03-19 12:59:55.227 2025-03-19 12:59:55.227 20700 TIP 435497 17184 \N \N 6037216 2025-03-19 13:01:07.601 2025-03-19 13:01:07.601 2100 FEE 435342 15367 \N \N 6037217 2025-03-19 13:01:07.601 2025-03-19 13:01:07.601 18900 TIP 435342 21771 \N \N 6037222 2025-03-19 13:02:16.182 2025-03-19 13:02:16.182 2100 FEE 434874 14905 \N \N 6037223 2025-03-19 13:02:16.182 2025-03-19 13:02:16.182 18900 TIP 434874 15273 \N \N 6037225 2025-03-19 13:03:04.306 2025-03-19 13:03:04.306 1000 FEE 435575 2123 \N \N 6037255 2025-03-19 13:09:14.106 2025-03-19 13:09:14.106 3000 FEE 435526 10270 \N \N 6037256 2025-03-19 13:09:14.106 2025-03-19 13:09:14.106 27000 TIP 435526 21555 \N \N 6037257 2025-03-19 13:09:31.03 2025-03-19 13:09:31.03 3000 FEE 435545 21374 \N \N 6037258 2025-03-19 13:09:31.03 2025-03-19 13:09:31.03 27000 TIP 435545 21233 \N \N 6037286 2025-03-19 13:11:30.673 2025-03-19 13:11:30.673 1000 POLL 435516 15588 \N \N 6037308 2025-03-19 13:12:23.441 2025-03-19 13:12:23.441 9000 FEE 435577 17001 \N \N 6037309 2025-03-19 13:12:23.441 2025-03-19 13:12:23.441 81000 TIP 435577 687 \N \N 6037310 2025-03-19 13:12:37.145 2025-03-19 13:12:37.145 1000 FEE 435584 20026 \N \N 6037324 2025-03-19 13:14:28.225 2025-03-19 13:14:28.225 1000 FEE 435588 761 \N \N 6037330 2025-03-19 13:14:47.974 2025-03-19 13:14:47.974 100 FEE 435314 15806 \N \N 6037331 2025-03-19 13:14:47.974 2025-03-19 13:14:47.974 900 TIP 435314 20826 \N \N 6037340 2025-03-19 13:15:53.512 2025-03-19 13:15:53.512 0 FEE 435589 20683 \N \N 6037412 2025-03-19 13:21:14.116 2025-03-19 13:21:14.116 100 FEE 435594 2232 \N \N 6037413 2025-03-19 13:21:14.116 2025-03-19 13:21:14.116 900 TIP 435594 17103 \N \N 6037420 2025-03-19 13:21:44.99 2025-03-19 13:21:44.99 100 FEE 435578 6149 \N \N 6037421 2025-03-19 13:21:44.99 2025-03-19 13:21:44.99 900 TIP 435578 9295 \N \N 6037426 2025-03-19 13:21:45.852 2025-03-19 13:21:45.852 100 FEE 435578 21202 \N \N 6037427 2025-03-19 13:21:45.852 2025-03-19 13:21:45.852 900 TIP 435578 16939 \N \N 6037458 2025-03-19 13:26:02.492 2025-03-19 13:26:02.492 100 FEE 435582 19471 \N \N 6037459 2025-03-19 13:26:02.492 2025-03-19 13:26:02.492 900 TIP 435582 1652 \N \N 6037470 2025-03-19 13:26:05.206 2025-03-19 13:26:05.206 100 FEE 435582 989 \N \N 6037471 2025-03-19 13:26:05.206 2025-03-19 13:26:05.206 900 TIP 435582 7877 \N \N 6037476 2025-03-19 13:26:06.032 2025-03-19 13:26:06.032 100 FEE 435582 1718 \N \N 6037477 2025-03-19 13:26:06.032 2025-03-19 13:26:06.032 900 TIP 435582 6616 \N \N 6037484 2025-03-19 13:27:05.038 2025-03-19 13:27:05.038 1000 FEE 435607 20059 \N \N 6037505 2025-03-19 13:32:23.31 2025-03-19 13:32:23.31 0 FEE 435610 11609 \N \N 6037508 2025-03-19 13:32:58.715 2025-03-19 13:32:58.715 1000 FEE 435612 13217 \N \N 6037510 2025-03-19 13:33:03.518 2025-03-19 13:33:03.518 1000 FEE 435497 7682 \N \N 6037511 2025-03-19 13:33:03.518 2025-03-19 13:33:03.518 9000 TIP 435497 21164 \N \N 6037529 2025-03-19 13:37:14.148 2025-03-19 13:37:14.148 0 FEE 435610 16357 \N \N 6037540 2025-03-19 13:38:50.552 2025-03-19 13:38:50.552 100 FEE 435608 5794 \N \N 6037541 2025-03-19 13:38:50.552 2025-03-19 13:38:50.552 900 TIP 435608 14220 \N \N 6037551 2025-03-19 13:40:21.209 2025-03-19 13:40:21.209 10000 FEE 435328 13198 \N \N 6037552 2025-03-19 13:40:21.209 2025-03-19 13:40:21.209 90000 TIP 435328 21683 \N \N 6037569 2025-03-19 13:43:38.179 2025-03-19 13:43:38.179 1000 FEE 435457 18409 \N \N 6037570 2025-03-19 13:43:38.179 2025-03-19 13:43:38.179 9000 TIP 435457 17050 \N \N 6037590 2025-03-19 13:47:36.394 2025-03-19 13:47:36.394 2100 FEE 435551 17291 \N \N 6037591 2025-03-19 13:47:36.394 2025-03-19 13:47:36.394 18900 TIP 435551 654 \N \N 6037623 2025-03-19 13:47:57.959 2025-03-19 13:47:57.959 2100 FEE 435458 21365 \N \N 6037624 2025-03-19 13:47:57.959 2025-03-19 13:47:57.959 18900 TIP 435458 14385 \N \N 6037642 2025-03-19 13:48:16.265 2025-03-19 13:48:16.265 12800 FEE 435619 761 \N \N 6037643 2025-03-19 13:48:16.265 2025-03-19 13:48:16.265 115200 TIP 435619 14195 \N \N 6037644 2025-03-19 13:48:18.931 2025-03-19 13:48:18.931 90000 FEE 435261 12169 \N \N 6037645 2025-03-19 13:48:18.931 2025-03-19 13:48:18.931 810000 TIP 435261 2844 \N \N 6037652 2025-03-19 13:48:51.107 2025-03-19 13:48:51.107 100 FEE 435580 9 \N \N 6037653 2025-03-19 13:48:51.107 2025-03-19 13:48:51.107 900 TIP 435580 19303 \N \N 6037654 2025-03-19 13:48:51.159 2025-03-19 13:48:51.159 900 FEE 435580 16387 \N \N 6031003 2025-03-19 02:40:27.692 2025-03-19 02:40:27.692 1000 FEE 434844 17171 \N \N 6031017 2025-03-19 02:42:55.117 2025-03-19 02:42:55.117 10000 FEE 434846 10291 \N \N 6031022 2025-03-19 02:44:32.713 2025-03-19 02:44:32.713 0 FEE 434844 9276 \N \N 6031023 2025-03-19 02:44:59.162 2025-03-19 02:44:59.162 1000 FEE 434816 21228 \N \N 6031024 2025-03-19 02:44:59.162 2025-03-19 02:44:59.162 9000 TIP 434816 691 \N \N 6031030 2025-03-19 02:48:19.911 2025-03-19 02:48:19.911 2100 FEE 431714 18393 \N \N 6031031 2025-03-19 02:48:19.911 2025-03-19 02:48:19.911 18900 TIP 431714 11240 \N \N 6031054 2025-03-19 02:59:03.973 2025-03-19 02:59:03.973 2100 FEE 434845 21427 \N \N 6031055 2025-03-19 02:59:03.973 2025-03-19 02:59:03.973 18900 TIP 434845 11942 \N \N 6031068 2025-03-19 03:01:42.568 2025-03-19 03:01:42.568 2200 FEE 434829 14122 \N \N 6031069 2025-03-19 03:01:42.568 2025-03-19 03:01:42.568 19800 TIP 434829 11240 \N \N 6031087 2025-03-19 03:04:30.76 2025-03-19 03:04:30.76 1000 FEE 434862 2609 \N \N 6031105 2025-03-19 03:06:04.667 2025-03-19 03:06:04.667 1000 FEE 434820 21406 \N \N 6031106 2025-03-19 03:06:04.667 2025-03-19 03:06:04.667 9000 TIP 434820 5728 \N \N 6031111 2025-03-19 03:06:10.231 2025-03-19 03:06:10.231 0 FEE 434858 21062 \N \N 6031120 2025-03-19 03:06:46.679 2025-03-19 03:06:46.679 100 FEE 434274 13055 \N \N 6031121 2025-03-19 03:06:46.679 2025-03-19 03:06:46.679 900 TIP 434274 1773 \N \N 6031122 2025-03-19 03:06:47.111 2025-03-19 03:06:47.111 100 FEE 434274 685 \N \N 6031123 2025-03-19 03:06:47.111 2025-03-19 03:06:47.111 900 TIP 434274 21022 \N \N 6031131 2025-03-19 03:08:22.338 2025-03-19 03:08:22.338 0 FEE 434858 20998 \N \N 6031135 2025-03-19 03:08:48.468 2025-03-19 03:08:48.468 1000 FEE 434868 21062 \N \N 6031154 2025-03-19 03:11:40.005 2025-03-19 03:11:40.005 0 FEE 434871 18717 \N \N 6031162 2025-03-19 03:14:23.881 2025-03-19 03:14:23.881 0 FEE 434871 4958 \N \N 6031167 2025-03-19 03:17:07.796 2025-03-19 03:17:07.796 1100 FEE 434872 11776 \N \N 6031168 2025-03-19 03:17:07.796 2025-03-19 03:17:07.796 9900 TIP 434872 979 \N \N 6031185 2025-03-19 03:17:56.87 2025-03-19 03:17:56.87 1000 FEE 434874 1745 \N \N 6031191 2025-03-19 03:18:05.516 2025-03-19 03:18:05.516 1100 FEE 434865 3411 \N \N 6031192 2025-03-19 03:18:05.516 2025-03-19 03:18:05.516 9900 TIP 434865 17212 \N \N 6031201 2025-03-19 03:22:09.711 2025-03-19 03:22:09.711 1100 FEE 434837 13921 \N \N 6031202 2025-03-19 03:22:09.711 2025-03-19 03:22:09.711 9900 TIP 434837 17415 \N \N 6031207 2025-03-19 03:23:33.392 2025-03-19 03:23:33.392 1000 FEE 434881 5293 \N \N 6031213 2025-03-19 03:25:32.092 2025-03-19 03:25:32.092 1000 FEE 434883 1245 \N \N 6031225 2025-03-19 03:29:26.927 2025-03-19 03:29:26.927 1100 FEE 434884 7916 \N \N 6031226 2025-03-19 03:29:26.927 2025-03-19 03:29:26.927 9900 TIP 434884 12656 \N \N 6031252 2025-03-19 03:32:39.278 2025-03-19 03:32:39.278 1000 FEE 434892 20495 \N \N 6031264 2025-03-19 03:33:28.068 2025-03-19 03:33:28.068 2100 FEE 434877 10013 \N \N 6031265 2025-03-19 03:33:28.068 2025-03-19 03:33:28.068 18900 TIP 434877 11776 \N \N 6031285 2025-03-19 03:35:30.874 2025-03-19 03:35:30.874 1100 FEE 434642 17522 \N \N 6031286 2025-03-19 03:35:30.874 2025-03-19 03:35:30.874 9900 TIP 434642 1474 \N \N 6031337 2025-03-19 03:47:35.903 2025-03-19 03:47:35.903 4200 FEE 434665 18241 \N \N 6031338 2025-03-19 03:47:35.903 2025-03-19 03:47:35.903 37800 TIP 434665 11395 \N \N 6031358 2025-03-19 03:51:48.323 2025-03-19 03:51:48.323 2000 FEE 434899 11996 \N \N 6031359 2025-03-19 03:51:48.323 2025-03-19 03:51:48.323 18000 TIP 434899 19494 \N \N 6031404 2025-03-19 03:58:27.319 2025-03-19 03:58:27.319 1100 FEE 434631 21140 \N \N 6031405 2025-03-19 03:58:27.319 2025-03-19 03:58:27.319 9900 TIP 434631 20826 \N \N 6031409 2025-03-19 03:58:41.611 2025-03-19 03:58:41.611 1100 FEE 434631 2039 \N \N 6031410 2025-03-19 03:58:41.611 2025-03-19 03:58:41.611 9900 TIP 434631 8544 \N \N 6031411 2025-03-19 03:58:42.645 2025-03-19 03:58:42.645 1100 FEE 434631 16309 \N \N 6031412 2025-03-19 03:58:42.645 2025-03-19 03:58:42.645 9900 TIP 434631 11523 \N \N 6031420 2025-03-19 03:59:30.77 2025-03-19 03:59:30.77 10000 FEE 434888 15588 \N \N 6031421 2025-03-19 03:59:30.77 2025-03-19 03:59:30.77 90000 TIP 434888 15719 \N \N 6031422 2025-03-19 03:59:50.815 2025-03-19 03:59:50.815 1100 FEE 434916 5455 \N \N 6031423 2025-03-19 03:59:50.815 2025-03-19 03:59:50.815 9900 TIP 434916 622 \N \N 6031442 2025-03-19 04:02:17.954 2025-03-19 04:02:17.954 1000 FEE 434898 1803 \N \N 6031443 2025-03-19 04:02:17.954 2025-03-19 04:02:17.954 9000 TIP 434898 16816 \N \N 6031444 2025-03-19 04:02:37.33 2025-03-19 04:02:37.33 10000 FEE 434905 20993 \N \N 6031445 2025-03-19 04:02:37.33 2025-03-19 04:02:37.33 90000 TIP 434905 21571 \N \N 6031447 2025-03-19 04:02:59.343 2025-03-19 04:02:59.343 4200 FEE 434488 16842 \N \N 6031448 2025-03-19 04:02:59.343 2025-03-19 04:02:59.343 37800 TIP 434488 14385 \N \N 6031456 2025-03-19 04:04:10.63 2025-03-19 04:04:10.63 1000 FEE 429227 7185 \N \N 6031457 2025-03-19 04:04:10.63 2025-03-19 04:04:10.63 9000 TIP 429227 17570 \N \N 6031462 2025-03-19 04:04:36.951 2025-03-19 04:04:36.951 0 FEE 434930 3304 \N \N 6031507 2025-03-19 04:12:10.184 2025-03-19 04:12:10.184 900 FEE 434615 2204 \N \N 6031508 2025-03-19 04:12:10.184 2025-03-19 04:12:10.184 8100 TIP 434615 678 \N \N 6031520 2025-03-19 04:12:22.914 2025-03-19 04:12:22.914 20000 FEE 433123 3409 \N \N 6031521 2025-03-19 04:12:22.914 2025-03-19 04:12:22.914 180000 TIP 433123 4973 \N \N 6031570 2025-03-19 04:15:17.626 2025-03-19 04:15:17.626 100 FEE 434703 713 \N \N 6031571 2025-03-19 04:15:17.626 2025-03-19 04:15:17.626 900 TIP 434703 21072 \N \N 6031576 2025-03-19 04:15:50.753 2025-03-19 04:15:50.753 900 FEE 434722 18271 \N \N 6031577 2025-03-19 04:15:50.753 2025-03-19 04:15:50.753 8100 TIP 434722 21072 \N \N 6031588 2025-03-19 04:16:56.624 2025-03-19 04:16:56.624 100 FEE 434838 1490 \N \N 6031589 2025-03-19 04:16:56.624 2025-03-19 04:16:56.624 900 TIP 434838 959 \N \N 6031594 2025-03-19 04:17:46.126 2025-03-19 04:17:46.126 1000 FEE 434943 1002 \N \N 6031604 2025-03-19 04:20:42.176 2025-03-19 04:20:42.176 1000 FEE 434944 692 \N \N 6031619 2025-03-19 04:24:42.386 2025-03-19 04:24:42.386 2000 FEE 434947 20687 \N \N 6031640 2025-03-19 04:27:28.974 2025-03-19 04:27:28.974 1000 FEE 434951 9438 \N \N 6031659 2025-03-19 04:33:24.48 2025-03-19 04:33:24.48 2100 FEE 434807 19569 \N \N 6031660 2025-03-19 04:33:24.48 2025-03-19 04:33:24.48 18900 TIP 434807 21091 \N \N 6031695 2025-03-19 04:34:49.089 2025-03-19 04:34:49.089 3200 FEE 434955 1772 \N \N 6031696 2025-03-19 04:34:49.089 2025-03-19 04:34:49.089 28800 TIP 434955 1237 \N \N 6031725 2025-03-19 04:38:31.299 2025-03-19 04:38:31.299 1000 FEE 434965 15560 \N \N 6031732 2025-03-19 04:39:34.872 2025-03-19 04:39:34.872 2100 FEE 434902 20180 \N \N 6031733 2025-03-19 04:39:34.872 2025-03-19 04:39:34.872 18900 TIP 434902 20754 \N \N 6031751 2025-03-19 04:39:46.849 2025-03-19 04:39:46.849 2100 FEE 434797 21303 \N \N 6031752 2025-03-19 04:39:46.849 2025-03-19 04:39:46.849 18900 TIP 434797 11992 \N \N 6031780 2025-03-19 04:40:30.948 2025-03-19 04:40:30.948 10000 FEE 434227 1273 \N \N 6031781 2025-03-19 04:40:30.948 2025-03-19 04:40:30.948 90000 TIP 434227 4388 \N \N 6031846 2025-03-19 04:45:15.962 2025-03-19 04:45:15.962 1300 FEE 434542 12721 \N \N 6031847 2025-03-19 04:45:15.962 2025-03-19 04:45:15.962 11700 TIP 434542 16347 \N \N 6031852 2025-03-19 04:45:28.725 2025-03-19 04:45:28.725 11000 FEE 434973 9337 \N \N 6031854 2025-03-19 04:46:09.821 2025-03-19 04:46:09.821 2100 FEE 434837 20555 \N \N 6031855 2025-03-19 04:46:09.821 2025-03-19 04:46:09.821 18900 TIP 434837 2775 \N \N 6031856 2025-03-19 04:46:12.619 2025-03-19 04:46:12.619 2100 FEE 434827 21710 \N \N 6031857 2025-03-19 04:46:12.619 2025-03-19 04:46:12.619 18900 TIP 434827 1245 \N \N 6036776 2025-03-19 12:20:01.076 2025-03-19 12:20:01.076 1000 FEE 435535 21575 \N \N 6036782 2025-03-19 12:20:28.538 2025-03-19 12:20:28.538 1000 FEE 435536 18068 \N \N 6036789 2025-03-19 12:20:42.183 2025-03-19 12:20:42.183 3300 FEE 435129 20599 \N \N 6036790 2025-03-19 12:20:42.183 2025-03-19 12:20:42.183 29700 TIP 435129 9845 \N \N 6036791 2025-03-19 12:20:49.083 2025-03-19 12:20:49.083 2100 FEE 435100 2176 \N \N 6036792 2025-03-19 12:20:49.083 2025-03-19 12:20:49.083 18900 TIP 435100 679 \N \N 6036793 2025-03-19 12:20:53.194 2025-03-19 12:20:53.194 2100 FEE 435375 14280 \N \N 6036794 2025-03-19 12:20:53.194 2025-03-19 12:20:53.194 18900 TIP 435375 4238 \N \N 6036796 2025-03-19 12:21:00.801 2025-03-19 12:21:00.801 1000 FEE 435538 4225 \N \N 6036800 2025-03-19 12:22:13.341 2025-03-19 12:22:13.341 100 FEE 435496 7869 \N \N 6036801 2025-03-19 12:22:13.341 2025-03-19 12:22:13.341 900 TIP 435496 8037 \N \N 6036828 2025-03-19 12:26:35.349 2025-03-19 12:26:35.349 1000 POLL 435516 20913 \N \N 6036839 2025-03-19 12:27:10.316 2025-03-19 12:27:10.316 10000 FEE 435542 17046 \N \N 6036847 2025-03-19 12:27:38.871 2025-03-19 12:27:38.871 2100 FEE 97082 21825 \N \N 6036848 2025-03-19 12:27:38.871 2025-03-19 12:27:38.871 18900 TIP 97082 9758 \N \N 6036867 2025-03-19 12:31:41.264 2025-03-19 12:31:41.264 2100 FEE 435458 15978 \N \N 6036868 2025-03-19 12:31:41.264 2025-03-19 12:31:41.264 18900 TIP 435458 20646 \N \N 6036911 2025-03-19 12:37:33.245 2025-03-19 12:37:33.245 2500 FEE 435046 20205 \N \N 6036912 2025-03-19 12:37:33.245 2025-03-19 12:37:33.245 22500 TIP 435046 19906 \N \N 6036927 2025-03-19 12:39:53.892 2025-03-19 12:39:53.892 5000 FEE 435522 2640 \N \N 6036928 2025-03-19 12:39:53.892 2025-03-19 12:39:53.892 45000 TIP 435522 678 \N \N 6036979 2025-03-19 12:46:27.2 2025-03-19 12:46:27.2 2100 FEE 435493 14910 \N \N 6036980 2025-03-19 12:46:27.2 2025-03-19 12:46:27.2 18900 TIP 435493 2773 \N \N 6037000 2025-03-19 12:47:23.774 2025-03-19 12:47:23.774 1000 FEE 435353 19863 \N \N 6037001 2025-03-19 12:47:23.774 2025-03-19 12:47:23.774 9000 TIP 435353 20433 \N \N 6037018 2025-03-19 12:48:51.119 2025-03-19 12:48:51.119 100 FEE 434975 19394 \N \N 6037019 2025-03-19 12:48:51.119 2025-03-19 12:48:51.119 900 TIP 434975 6419 \N \N 6037046 2025-03-19 12:54:28.289 2025-03-19 12:54:28.289 100000 FEE 435564 17690 \N \N 6037072 2025-03-19 12:57:17.891 2025-03-19 12:57:17.891 1000 FEE 435516 21091 \N \N 6037073 2025-03-19 12:57:17.891 2025-03-19 12:57:17.891 9000 TIP 435516 15337 \N \N 6037083 2025-03-19 12:57:26.646 2025-03-19 12:57:26.646 100 FEE 435396 720 \N \N 6037084 2025-03-19 12:57:26.646 2025-03-19 12:57:26.646 900 TIP 435396 15160 \N \N 6037111 2025-03-19 12:58:56.574 2025-03-19 12:58:56.574 8300 FEE 435497 777 \N \N 6037112 2025-03-19 12:58:56.574 2025-03-19 12:58:56.574 74700 TIP 435497 16347 \N \N 6037128 2025-03-19 12:59:49.475 2025-03-19 12:59:49.475 2300 FEE 435497 989 \N \N 6037129 2025-03-19 12:59:49.475 2025-03-19 12:59:49.475 20700 TIP 435497 11454 \N \N 6037142 2025-03-19 12:59:51.082 2025-03-19 12:59:51.082 2300 FEE 435497 8989 \N \N 6037143 2025-03-19 12:59:51.082 2025-03-19 12:59:51.082 20700 TIP 435497 7659 \N \N 6037150 2025-03-19 12:59:52.198 2025-03-19 12:59:52.198 2300 FEE 435497 822 \N \N 6037151 2025-03-19 12:59:52.198 2025-03-19 12:59:52.198 20700 TIP 435497 14465 \N \N 6037152 2025-03-19 12:59:52.387 2025-03-19 12:59:52.387 2300 FEE 435497 1960 \N \N 6037153 2025-03-19 12:59:52.387 2025-03-19 12:59:52.387 20700 TIP 435497 5694 \N \N 6037160 2025-03-19 12:59:52.934 2025-03-19 12:59:52.934 2300 FEE 435497 20337 \N \N 6037161 2025-03-19 12:59:52.934 2025-03-19 12:59:52.934 20700 TIP 435497 21578 \N \N 6037234 2025-03-19 13:05:44.376 2025-03-19 13:05:44.376 10000 FEE 435521 18717 \N \N 6037235 2025-03-19 13:05:44.376 2025-03-19 13:05:44.376 90000 TIP 435521 1394 \N \N 6037275 2025-03-19 13:11:08.834 2025-03-19 13:11:08.834 100 FEE 435575 20782 \N \N 6037276 2025-03-19 13:11:08.834 2025-03-19 13:11:08.834 900 TIP 435575 21202 \N \N 6037288 2025-03-19 13:12:09.76 2025-03-19 13:12:09.76 100 FEE 435558 16177 \N \N 6037289 2025-03-19 13:12:09.76 2025-03-19 13:12:09.76 900 TIP 435558 20602 \N \N 6037290 2025-03-19 13:12:10.439 2025-03-19 13:12:10.439 100 FEE 435558 21036 \N \N 6037291 2025-03-19 13:12:10.439 2025-03-19 13:12:10.439 900 TIP 435558 16830 \N \N 6037302 2025-03-19 13:12:19.364 2025-03-19 13:12:19.364 900 FEE 435577 5129 \N \N 6037303 2025-03-19 13:12:19.364 2025-03-19 13:12:19.364 8100 TIP 435577 20646 \N \N 6037312 2025-03-19 13:13:03.872 2025-03-19 13:13:03.872 1000 FEE 435573 4166 \N \N 6037313 2025-03-19 13:13:03.872 2025-03-19 13:13:03.872 9000 TIP 435573 15732 \N \N 6037332 2025-03-19 13:14:48.969 2025-03-19 13:14:48.969 900 FEE 435314 866 \N \N 6037333 2025-03-19 13:14:48.969 2025-03-19 13:14:48.969 8100 TIP 435314 16059 \N \N 6037341 2025-03-19 13:15:59.657 2025-03-19 13:15:59.657 1000 FEE 435591 699 \N \N 6037361 2025-03-19 13:16:24.308 2025-03-19 13:16:24.308 8300 FEE 435551 19952 \N \N 6037362 2025-03-19 13:16:24.308 2025-03-19 13:16:24.308 74700 TIP 435551 9551 \N \N 6037368 2025-03-19 13:18:13.633 2025-03-19 13:18:13.633 1000 FEE 435593 17824 \N \N 6037369 2025-03-19 13:18:17.909 2025-03-19 13:18:17.909 10000 FEE 435551 21804 \N \N 6037370 2025-03-19 13:18:17.909 2025-03-19 13:18:17.909 90000 TIP 435551 4118 \N \N 6037375 2025-03-19 13:19:23.273 2025-03-19 13:19:23.273 1000 FEE 435594 11144 \N \N 6037376 2025-03-19 13:19:34.159 2025-03-19 13:19:34.159 1000 FEE 435595 1717 \N \N 6037403 2025-03-19 13:20:45.398 2025-03-19 13:20:45.398 3000 FEE 435541 10112 \N \N 6037404 2025-03-19 13:20:45.398 2025-03-19 13:20:45.398 27000 TIP 435541 917 \N \N 6037405 2025-03-19 13:21:06.343 2025-03-19 13:21:06.343 100 FEE 435594 889 \N \N 6037406 2025-03-19 13:21:06.343 2025-03-19 13:21:06.343 900 TIP 435594 15239 \N \N 6037422 2025-03-19 13:21:45.202 2025-03-19 13:21:45.202 100 FEE 435578 21274 \N \N 6037423 2025-03-19 13:21:45.202 2025-03-19 13:21:45.202 900 TIP 435578 11145 \N \N 6037437 2025-03-19 13:21:57.137 2025-03-19 13:21:57.137 100 FEE 435571 15103 \N \N 6037438 2025-03-19 13:21:57.137 2025-03-19 13:21:57.137 900 TIP 435571 21540 \N \N 6037439 2025-03-19 13:21:57.328 2025-03-19 13:21:57.328 900 FEE 435571 9332 \N \N 6037440 2025-03-19 13:21:57.328 2025-03-19 13:21:57.328 8100 TIP 435571 2022 \N \N 6037441 2025-03-19 13:21:57.7 2025-03-19 13:21:57.7 9000 FEE 435571 20782 \N \N 6037442 2025-03-19 13:21:57.7 2025-03-19 13:21:57.7 81000 TIP 435571 14489 \N \N 6037468 2025-03-19 13:26:05.013 2025-03-19 13:26:05.013 100 FEE 435582 19126 \N \N 6037469 2025-03-19 13:26:05.013 2025-03-19 13:26:05.013 900 TIP 435582 13177 \N \N 6037480 2025-03-19 13:26:23.082 2025-03-19 13:26:23.082 3000 FEE 435600 14255 \N \N 6037481 2025-03-19 13:26:23.082 2025-03-19 13:26:23.082 27000 TIP 435600 12516 \N \N 6037509 2025-03-19 13:32:58.971 2025-03-19 13:32:58.971 1000 FEE 435613 1447 \N \N 6037514 2025-03-19 13:33:08.752 2025-03-19 13:33:08.752 1000 FEE 435457 21666 \N \N 6037515 2025-03-19 13:33:08.752 2025-03-19 13:33:08.752 9000 TIP 435457 20981 \N \N 6037576 2025-03-19 13:44:38.362 2025-03-19 13:44:38.362 0 FEE 435619 631 \N \N 6037599 2025-03-19 13:47:40.908 2025-03-19 13:47:40.908 2100 FEE 435328 1122 \N \N 6037600 2025-03-19 13:47:40.908 2025-03-19 13:47:40.908 18900 TIP 435328 21269 \N \N 6037621 2025-03-19 13:47:57.114 2025-03-19 13:47:57.114 2100 FEE 435458 13249 \N \N 6037622 2025-03-19 13:47:57.114 2025-03-19 13:47:57.114 18900 TIP 435458 19488 \N \N 6037634 2025-03-19 13:48:09.599 2025-03-19 13:48:09.599 4200 FEE 435402 1354 \N \N 6037635 2025-03-19 13:48:09.599 2025-03-19 13:48:09.599 37800 TIP 435402 4633 \N \N 6037638 2025-03-19 13:48:10.505 2025-03-19 13:48:10.505 2100 FEE 435402 4313 \N \N 6037639 2025-03-19 13:48:10.505 2025-03-19 13:48:10.505 18900 TIP 435402 6430 \N \N 6037670 2025-03-19 13:49:52.219 2025-03-19 13:49:52.219 3300 FEE 435288 8508 \N \N 6037671 2025-03-19 13:49:52.219 2025-03-19 13:49:52.219 29700 TIP 435288 16816 \N \N 6037680 2025-03-19 13:50:07.138 2025-03-19 13:50:07.138 2100 FEE 435046 3342 \N \N 6037681 2025-03-19 13:50:07.138 2025-03-19 13:50:07.138 18900 TIP 435046 3347 \N \N 6037686 2025-03-19 13:50:07.806 2025-03-19 13:50:07.806 2100 FEE 435046 20680 \N \N 6037687 2025-03-19 13:50:07.806 2025-03-19 13:50:07.806 18900 TIP 435046 1618 \N \N 6037693 2025-03-19 13:50:49.826 2025-03-19 13:50:49.826 0 FEE 435619 9334 \N \N 6037703 2025-03-19 13:51:13.876 2025-03-19 13:51:13.876 0 FEE 435619 20117 \N \N 6037710 2025-03-19 13:51:19.35 2025-03-19 13:51:19.35 2100 FEE 434813 13378 \N \N 6037711 2025-03-19 13:51:19.35 2025-03-19 13:51:19.35 18900 TIP 434813 691 \N \N 6037738 2025-03-19 13:51:47.461 2025-03-19 13:51:47.461 2100 FEE 435217 21356 \N \N 6036833 2025-03-19 12:26:45.776 2025-03-19 12:26:45.776 100 FEE 435528 20911 \N \N 6036834 2025-03-19 12:26:45.776 2025-03-19 12:26:45.776 900 TIP 435528 17682 \N \N 6036843 2025-03-19 12:27:22.909 2025-03-19 12:27:22.909 1000 FEE 435384 7877 \N \N 6036844 2025-03-19 12:27:22.909 2025-03-19 12:27:22.909 9000 TIP 435384 17218 \N \N 6036855 2025-03-19 12:27:46.866 2025-03-19 12:27:46.866 1000 POLL 435495 20073 \N \N 6036897 2025-03-19 12:36:21.04 2025-03-19 12:36:21.04 1000 FEE 435159 20023 \N \N 6036898 2025-03-19 12:36:21.04 2025-03-19 12:36:21.04 9000 TIP 435159 894 \N \N 6036909 2025-03-19 12:37:32.841 2025-03-19 12:37:32.841 2500 FEE 435046 622 \N \N 6036910 2025-03-19 12:37:32.841 2025-03-19 12:37:32.841 22500 TIP 435046 19403 \N \N 6036949 2025-03-19 12:43:13.345 2025-03-19 12:43:13.345 1000 FEE 435552 18271 \N \N 6036968 2025-03-19 12:44:48.158 2025-03-19 12:44:48.158 3300 FEE 435217 1051 \N \N 6036969 2025-03-19 12:44:48.158 2025-03-19 12:44:48.158 29700 TIP 435217 9655 \N \N 6036981 2025-03-19 12:46:30.585 2025-03-19 12:46:30.585 100000 FEE 435557 694 \N \N 6036984 2025-03-19 12:46:43.409 2025-03-19 12:46:43.409 100 FEE 435328 16536 \N \N 6036985 2025-03-19 12:46:43.409 2025-03-19 12:46:43.409 900 TIP 435328 21712 \N \N 6036992 2025-03-19 12:46:59.312 2025-03-19 12:46:59.312 100 FEE 435231 17517 \N \N 6036993 2025-03-19 12:46:59.312 2025-03-19 12:46:59.312 900 TIP 435231 831 \N \N 6037014 2025-03-19 12:48:35.176 2025-03-19 12:48:35.176 5000 FEE 434915 20956 \N \N 6037015 2025-03-19 12:48:35.176 2025-03-19 12:48:35.176 45000 TIP 434915 667 \N \N 6037025 2025-03-19 12:50:44.077 2025-03-19 12:50:44.077 1000 FEE 435561 9184 \N \N 6037032 2025-03-19 12:51:12.356 2025-03-19 12:51:12.356 1000 FEE 435417 13177 \N \N 6037033 2025-03-19 12:51:12.356 2025-03-19 12:51:12.356 9000 TIP 435417 21296 \N \N 6037035 2025-03-19 12:51:30.263 2025-03-19 12:51:30.263 1000 FEE 435562 620 \N \N 6037054 2025-03-19 12:55:52.645 2025-03-19 12:55:52.645 1000 FEE 435568 18901 \N \N 6037067 2025-03-19 12:57:13.387 2025-03-19 12:57:13.387 9000 FEE 435520 1244 \N \N 6037068 2025-03-19 12:57:13.387 2025-03-19 12:57:13.387 81000 TIP 435520 18069 \N \N 6037099 2025-03-19 12:57:43.901 2025-03-19 12:57:43.901 100 FEE 435272 21014 \N \N 6037100 2025-03-19 12:57:43.901 2025-03-19 12:57:43.901 900 TIP 435272 15624 \N \N 6037116 2025-03-19 12:59:47.414 2025-03-19 12:59:47.414 2300 FEE 435497 959 \N \N 6037117 2025-03-19 12:59:47.414 2025-03-19 12:59:47.414 20700 TIP 435497 11516 \N \N 6037124 2025-03-19 12:59:49.108 2025-03-19 12:59:49.108 2300 FEE 435497 14910 \N \N 6037125 2025-03-19 12:59:49.108 2025-03-19 12:59:49.108 20700 TIP 435497 5728 \N \N 6037134 2025-03-19 12:59:49.927 2025-03-19 12:59:49.927 2300 FEE 435497 5809 \N \N 6037135 2025-03-19 12:59:49.927 2025-03-19 12:59:49.927 20700 TIP 435497 7587 \N \N 6037154 2025-03-19 12:59:52.552 2025-03-19 12:59:52.552 2300 FEE 435497 15409 \N \N 6037155 2025-03-19 12:59:52.552 2025-03-19 12:59:52.552 20700 TIP 435497 17124 \N \N 6037158 2025-03-19 12:59:52.753 2025-03-19 12:59:52.753 2300 FEE 435497 6537 \N \N 6037159 2025-03-19 12:59:52.753 2025-03-19 12:59:52.753 20700 TIP 435497 759 \N \N 6037188 2025-03-19 12:59:55.572 2025-03-19 12:59:55.572 2300 FEE 435497 1425 \N \N 6037189 2025-03-19 12:59:55.572 2025-03-19 12:59:55.572 20700 TIP 435497 2111 \N \N 6037198 2025-03-19 12:59:56.888 2025-03-19 12:59:56.888 2300 FEE 435497 836 \N \N 6037199 2025-03-19 12:59:56.888 2025-03-19 12:59:56.888 20700 TIP 435497 5112 \N \N 6037202 2025-03-19 12:59:57.708 2025-03-19 12:59:57.708 2300 FEE 435497 715 \N \N 6037203 2025-03-19 12:59:57.708 2025-03-19 12:59:57.708 20700 TIP 435497 11789 \N \N 6037214 2025-03-19 13:00:56.413 2025-03-19 13:00:56.413 2100 FEE 435242 21233 \N \N 6037215 2025-03-19 13:00:56.413 2025-03-19 13:00:56.413 18900 TIP 435242 19263 \N \N 6037230 2025-03-19 13:04:18.292 2025-03-19 13:04:18.292 7000 FEE 435576 15978 \N \N 6037231 2025-03-19 13:04:38.349 2025-03-19 13:04:38.349 10000 FEE 435577 17535 \N \N 6037259 2025-03-19 13:09:35.816 2025-03-19 13:09:35.816 3000 FEE 435547 11423 \N \N 6037260 2025-03-19 13:09:35.816 2025-03-19 13:09:35.816 27000 TIP 435547 623 \N \N 6037271 2025-03-19 13:10:59.281 2025-03-19 13:10:59.281 1000 FEE 434837 4083 \N \N 6037272 2025-03-19 13:10:59.281 2025-03-19 13:10:59.281 9000 TIP 434837 14909 \N \N 6037287 2025-03-19 13:12:03.555 2025-03-19 13:12:03.555 1000 FEE 435582 14452 \N \N 6037298 2025-03-19 13:12:13.252 2025-03-19 13:12:13.252 100 FEE 435558 621 \N \N 6037299 2025-03-19 13:12:13.252 2025-03-19 13:12:13.252 900 TIP 435558 2952 \N \N 6037300 2025-03-19 13:12:19.173 2025-03-19 13:12:19.173 100 FEE 435577 14260 \N \N 6037301 2025-03-19 13:12:19.173 2025-03-19 13:12:19.173 900 TIP 435577 11609 \N \N 6037306 2025-03-19 13:12:22.48 2025-03-19 13:12:22.48 200 FEE 435565 18473 \N \N 6037307 2025-03-19 13:12:22.48 2025-03-19 13:12:22.48 1800 TIP 435565 6578 \N \N 6037314 2025-03-19 13:13:12.6 2025-03-19 13:13:12.6 1000 FEE 435586 21212 \N \N 6037318 2025-03-19 13:13:36.91 2025-03-19 13:13:36.91 10000 FEE 435328 8729 \N \N 6037319 2025-03-19 13:13:36.91 2025-03-19 13:13:36.91 90000 TIP 435328 3461 \N \N 6037320 2025-03-19 13:13:45.571 2025-03-19 13:13:45.571 1000 FEE 435587 16059 \N \N 6037336 2025-03-19 13:14:53.353 2025-03-19 13:14:53.353 27000 FEE 435217 749 \N \N 6037337 2025-03-19 13:14:53.353 2025-03-19 13:14:53.353 243000 TIP 435217 6602 \N \N 6037353 2025-03-19 13:16:19.818 2025-03-19 13:16:19.818 1600 FEE 435577 20939 \N \N 6037354 2025-03-19 13:16:19.818 2025-03-19 13:16:19.818 14400 TIP 435577 13843 \N \N 6036963 2025-03-19 12:44:08.578 2025-03-19 12:44:08.578 29700 TIP 435553 8245 \N \N 6036990 2025-03-19 12:46:55.815 2025-03-19 12:46:55.815 100 FEE 435261 19346 \N \N 6036991 2025-03-19 12:46:55.815 2025-03-19 12:46:55.815 900 TIP 435261 14657 \N \N 6037007 2025-03-19 12:48:22.081 2025-03-19 12:48:22.081 1000 FEE 435377 17201 \N \N 6037008 2025-03-19 12:48:22.081 2025-03-19 12:48:22.081 9000 TIP 435377 9339 \N \N 6037028 2025-03-19 12:51:02.866 2025-03-19 12:51:02.866 2000 FEE 435561 16351 \N \N 6037029 2025-03-19 12:51:02.866 2025-03-19 12:51:02.866 18000 TIP 435561 21670 \N \N 6037030 2025-03-19 12:51:05.814 2025-03-19 12:51:05.814 2000 FEE 435561 17103 \N \N 6037031 2025-03-19 12:51:05.814 2025-03-19 12:51:05.814 18000 TIP 435561 8998 \N \N 6037055 2025-03-19 12:56:00.818 2025-03-19 12:56:00.818 1000 FEE 435569 15075 \N \N 6037070 2025-03-19 12:57:17.485 2025-03-19 12:57:17.485 1000 FEE 435516 1626 \N \N 6037071 2025-03-19 12:57:17.485 2025-03-19 12:57:17.485 9000 TIP 435516 14404 \N \N 6037095 2025-03-19 12:57:37.246 2025-03-19 12:57:37.246 900 FEE 435378 1046 \N \N 6037096 2025-03-19 12:57:37.246 2025-03-19 12:57:37.246 8100 TIP 435378 7891 \N \N 6037114 2025-03-19 12:59:19.748 2025-03-19 12:59:19.748 3000 FEE 435491 1120 \N \N 6037115 2025-03-19 12:59:19.748 2025-03-19 12:59:19.748 27000 TIP 435491 10862 \N \N 6037118 2025-03-19 12:59:47.891 2025-03-19 12:59:47.891 2300 FEE 435497 652 \N \N 6037119 2025-03-19 12:59:47.891 2025-03-19 12:59:47.891 20700 TIP 435497 3377 \N \N 6037122 2025-03-19 12:59:48.705 2025-03-19 12:59:48.705 9200 FEE 435497 5590 \N \N 6037123 2025-03-19 12:59:48.705 2025-03-19 12:59:48.705 82800 TIP 435497 10016 \N \N 6037126 2025-03-19 12:59:49.318 2025-03-19 12:59:49.318 2300 FEE 435497 18330 \N \N 6037127 2025-03-19 12:59:49.318 2025-03-19 12:59:49.318 20700 TIP 435497 21797 \N \N 6037138 2025-03-19 12:59:50.318 2025-03-19 12:59:50.318 2300 FEE 435497 18314 \N \N 6037139 2025-03-19 12:59:50.318 2025-03-19 12:59:50.318 20700 TIP 435497 21116 \N \N 6037146 2025-03-19 12:59:51.385 2025-03-19 12:59:51.385 2300 FEE 435497 10493 \N \N 6037147 2025-03-19 12:59:51.385 2025-03-19 12:59:51.385 20700 TIP 435497 1145 \N \N 6037162 2025-03-19 12:59:53.054 2025-03-19 12:59:53.054 2300 FEE 435497 621 \N \N 6037163 2025-03-19 12:59:53.054 2025-03-19 12:59:53.054 20700 TIP 435497 21063 \N \N 6037204 2025-03-19 13:00:05.119 2025-03-19 13:00:05.119 2300 FEE 435551 750 \N \N 6037205 2025-03-19 13:00:05.119 2025-03-19 13:00:05.119 20700 TIP 435551 11798 \N \N 6037206 2025-03-19 13:00:05.934 2025-03-19 13:00:05.934 2300 FEE 435551 1505 \N \N 6037207 2025-03-19 13:00:05.934 2025-03-19 13:00:05.934 20700 TIP 435551 20922 \N \N 6037208 2025-03-19 13:00:06.894 2025-03-19 13:00:06.894 2300 FEE 435551 10016 \N \N 6037209 2025-03-19 13:00:06.894 2025-03-19 13:00:06.894 20700 TIP 435551 21061 \N \N 6037212 2025-03-19 13:00:28.523 2025-03-19 13:00:28.523 2100 FEE 435569 2326 \N \N 6037213 2025-03-19 13:00:28.523 2025-03-19 13:00:28.523 18900 TIP 435569 17064 \N \N 6037249 2025-03-19 13:08:55.177 2025-03-19 13:08:55.177 0 FEE 435580 17030 \N \N 6037252 2025-03-19 13:09:11.423 2025-03-19 13:09:11.423 27000 FEE 435504 902 \N \N 6037253 2025-03-19 13:09:11.423 2025-03-19 13:09:11.423 243000 TIP 435504 15282 \N \N 6037277 2025-03-19 13:11:09.062 2025-03-19 13:11:09.062 100 FEE 435575 3506 \N \N 6037278 2025-03-19 13:11:09.062 2025-03-19 13:11:09.062 900 TIP 435575 20179 \N \N 6037281 2025-03-19 13:11:09.868 2025-03-19 13:11:09.868 100 FEE 435575 21424 \N \N 6037282 2025-03-19 13:11:09.868 2025-03-19 13:11:09.868 900 TIP 435575 8796 \N \N 6037292 2025-03-19 13:12:10.737 2025-03-19 13:12:10.737 1000 FEE 435583 21791 \N \N 6037295 2025-03-19 13:12:12.035 2025-03-19 13:12:12.035 100 FEE 435558 3411 \N \N 6037296 2025-03-19 13:12:12.035 2025-03-19 13:12:12.035 900 TIP 435558 1784 \N \N 6037325 2025-03-19 13:14:33.8 2025-03-19 13:14:33.8 1000 POLL 435495 18114 \N \N 6037349 2025-03-19 13:16:13.75 2025-03-19 13:16:13.75 8300 FEE 435579 10986 \N \N 6037350 2025-03-19 13:16:13.75 2025-03-19 13:16:13.75 74700 TIP 435579 2010 \N \N 6037351 2025-03-19 13:16:13.972 2025-03-19 13:16:13.972 8300 FEE 435579 9 \N \N 6037352 2025-03-19 13:16:13.972 2025-03-19 13:16:13.972 74700 TIP 435579 4048 \N \N 6037366 2025-03-19 13:17:57.584 2025-03-19 13:17:57.584 1000 FEE 435592 11314 \N \N 6037380 2025-03-19 13:19:53.087 2025-03-19 13:19:53.087 100000 FEE 435597 16562 \N \N 6037387 2025-03-19 13:20:06.41 2025-03-19 13:20:06.41 3000 FEE 435569 633 \N \N 6037388 2025-03-19 13:20:06.41 2025-03-19 13:20:06.41 27000 TIP 435569 8472 \N \N 6037392 2025-03-19 13:20:15.7 2025-03-19 13:20:15.7 8300 FEE 435457 20782 \N \N 6037393 2025-03-19 13:20:15.7 2025-03-19 13:20:15.7 74700 TIP 435457 2942 \N \N 6037402 2025-03-19 13:20:40.043 2025-03-19 13:20:40.043 1000 FEE 435598 18494 \N \N 6037414 2025-03-19 13:21:16.917 2025-03-19 13:21:16.917 3000 FEE 435431 18528 \N \N 6037415 2025-03-19 13:21:16.917 2025-03-19 13:21:16.917 27000 TIP 435431 20669 \N \N 6037478 2025-03-19 13:26:08.094 2025-03-19 13:26:08.094 0 FEE 435605 17568 \N \N 6037482 2025-03-19 13:26:23.749 2025-03-19 13:26:23.749 0 FEE 435605 14669 \N \N 6037488 2025-03-19 13:27:20.82 2025-03-19 13:27:20.82 400 FEE 435591 15526 \N \N 6037489 2025-03-19 13:27:20.82 2025-03-19 13:27:20.82 3600 TIP 435591 16695 \N \N 6037493 2025-03-19 13:28:30.297 2025-03-19 13:28:30.297 1000 FEE 435608 8448 \N \N 6037512 2025-03-19 13:33:07.739 2025-03-19 13:33:07.739 1000 FEE 435551 8985 \N \N 6037513 2025-03-19 13:33:07.739 2025-03-19 13:33:07.739 9000 TIP 435551 17392 \N \N 6037531 2025-03-19 13:37:29.205 2025-03-19 13:37:29.205 1000 FEE 435614 1245 \N \N 6037534 2025-03-19 13:37:57.307 2025-03-19 13:37:57.307 5000 FEE 435613 19576 \N \N 6037535 2025-03-19 13:37:57.307 2025-03-19 13:37:57.307 45000 TIP 435613 10586 \N \N 6037542 2025-03-19 13:38:50.775 2025-03-19 13:38:50.775 900 FEE 435608 21421 \N \N 6037543 2025-03-19 13:38:50.775 2025-03-19 13:38:50.775 8100 TIP 435608 1354 \N \N 6031093 2025-03-19 03:05:06.782 2025-03-19 03:05:06.782 10000 FEE 434805 5487 \N \N 6031094 2025-03-19 03:05:06.782 2025-03-19 03:05:06.782 90000 TIP 434805 11760 \N \N 6031098 2025-03-19 03:05:35.705 2025-03-19 03:05:35.705 100 FEE 434791 6653 \N \N 6031099 2025-03-19 03:05:35.705 2025-03-19 03:05:35.705 900 TIP 434791 9159 \N \N 6031101 2025-03-19 03:05:47.505 2025-03-19 03:05:47.505 1000 FEE 434863 18231 \N \N 6031103 2025-03-19 03:06:00.3 2025-03-19 03:06:00.3 1000 FEE 434820 16594 \N \N 6031104 2025-03-19 03:06:00.3 2025-03-19 03:06:00.3 9000 TIP 434820 10986 \N \N 6031126 2025-03-19 03:06:52.086 2025-03-19 03:06:52.086 0 FEE 434858 2123 \N \N 6031136 2025-03-19 03:08:49.342 2025-03-19 03:08:49.342 1000 FEE 434869 1881 \N \N 6031141 2025-03-19 03:09:01.406 2025-03-19 03:09:01.406 1100 FEE 434862 11423 \N \N 6031142 2025-03-19 03:09:01.406 2025-03-19 03:09:01.406 9900 TIP 434862 21119 \N \N 6031158 2025-03-19 03:14:11.277 2025-03-19 03:14:11.277 1000 FEE 434872 11866 \N \N 6031171 2025-03-19 03:17:08.837 2025-03-19 03:17:08.837 1100 FEE 434872 2593 \N \N 6031172 2025-03-19 03:17:08.837 2025-03-19 03:17:08.837 9900 TIP 434872 6148 \N \N 6031217 2025-03-19 03:26:49.084 2025-03-19 03:26:49.084 1000 FEE 434884 10519 \N \N 6031220 2025-03-19 03:28:09.846 2025-03-19 03:28:09.846 1000 FEE 434886 12779 \N \N 6031233 2025-03-19 03:30:01.332 2025-03-19 03:30:01.332 1000 FEE 434037 8945 \N \N 6031234 2025-03-19 03:30:01.332 2025-03-19 03:30:01.332 9000 TIP 434037 15052 \N \N 6031243 2025-03-19 03:30:39.557 2025-03-19 03:30:39.557 2100 FEE 434871 8796 \N \N 6031244 2025-03-19 03:30:39.557 2025-03-19 03:30:39.557 18900 TIP 434871 20969 \N \N 6031262 2025-03-19 03:33:21.659 2025-03-19 03:33:21.659 2100 FEE 434844 13398 \N \N 6031263 2025-03-19 03:33:21.659 2025-03-19 03:33:21.659 18900 TIP 434844 6421 \N \N 6031304 2025-03-19 03:42:13.249 2025-03-19 03:42:13.249 10000 FEE 434798 12946 \N \N 6031305 2025-03-19 03:42:13.249 2025-03-19 03:42:13.249 90000 TIP 434798 20778 \N \N 6031310 2025-03-19 03:44:00.084 2025-03-19 03:44:00.084 1000 FEE 434903 2013 \N \N 6031315 2025-03-19 03:44:31.743 2025-03-19 03:44:31.743 21000 FEE 434905 16660 \N \N 6031350 2025-03-19 03:50:40.496 2025-03-19 03:50:40.496 10000 FEE 434911 1772 \N \N 6031355 2025-03-19 03:51:32.611 2025-03-19 03:51:32.611 4000 FEE 434910 18717 \N \N 6031356 2025-03-19 03:51:32.611 2025-03-19 03:51:32.611 36000 TIP 434910 1512 \N \N 6031373 2025-03-19 03:55:21.257 2025-03-19 03:55:21.257 1100 FEE 434385 17838 \N \N 6031374 2025-03-19 03:55:21.257 2025-03-19 03:55:21.257 9900 TIP 434385 6361 \N \N 6031407 2025-03-19 03:58:40.762 2025-03-19 03:58:40.762 1100 FEE 434631 13767 \N \N 6031408 2025-03-19 03:58:40.762 2025-03-19 03:58:40.762 9900 TIP 434631 1738 \N \N 6031413 2025-03-19 03:58:47.599 2025-03-19 03:58:47.599 1100 FEE 434626 21712 \N \N 6031414 2025-03-19 03:58:47.599 2025-03-19 03:58:47.599 9900 TIP 434626 959 \N \N 6031426 2025-03-19 03:59:54.65 2025-03-19 03:59:54.65 1100 FEE 434916 16950 \N \N 6031427 2025-03-19 03:59:54.65 2025-03-19 03:59:54.65 9900 TIP 434916 2329 \N \N 6031440 2025-03-19 04:02:06.125 2025-03-19 04:02:06.125 21000 DONT_LIKE_THIS 434922 20852 \N \N 6031485 2025-03-19 04:09:25.263 2025-03-19 04:09:25.263 10000 FEE 434934 14552 \N \N 6031486 2025-03-19 04:09:25.597 2025-03-19 04:09:25.597 9000 FEE 434740 9669 \N \N 6031487 2025-03-19 04:09:25.597 2025-03-19 04:09:25.597 81000 TIP 434740 9330 \N \N 6031498 2025-03-19 04:09:56.592 2025-03-19 04:09:56.592 1000 FEE 434935 1438 \N \N 6031514 2025-03-19 04:12:19.205 2025-03-19 04:12:19.205 20000 FEE 433123 18618 \N \N 6031515 2025-03-19 04:12:19.205 2025-03-19 04:12:19.205 180000 TIP 433123 1105 \N \N 6031524 2025-03-19 04:12:26.416 2025-03-19 04:12:26.416 1100 FEE 193487 9329 \N \N 6031525 2025-03-19 04:12:26.416 2025-03-19 04:12:26.416 9900 TIP 193487 3456 \N \N 6031528 2025-03-19 04:12:42.41 2025-03-19 04:12:42.41 100 FEE 433123 12976 \N \N 6031529 2025-03-19 04:12:42.41 2025-03-19 04:12:42.41 900 TIP 433123 1316 \N \N 6031536 2025-03-19 04:13:07.279 2025-03-19 04:13:07.279 1000 FEE 434938 12656 \N \N 6031595 2025-03-19 04:18:13.438 2025-03-19 04:18:13.438 3000 FEE 434728 7425 \N \N 6031596 2025-03-19 04:18:13.438 2025-03-19 04:18:13.438 27000 TIP 434728 17713 \N \N 6031614 2025-03-19 04:23:12.874 2025-03-19 04:23:12.874 1000 FEE 434946 4395 \N \N 6031622 2025-03-19 04:24:56.013 2025-03-19 04:24:56.013 1000 FEE 434948 1784 \N \N 6031625 2025-03-19 04:25:40.422 2025-03-19 04:25:40.422 10000 FEE 434922 638 \N \N 6031626 2025-03-19 04:25:40.422 2025-03-19 04:25:40.422 90000 TIP 434922 5809 \N \N 6031634 2025-03-19 04:27:19.099 2025-03-19 04:27:19.099 100000 FEE 434941 11423 \N \N 6031635 2025-03-19 04:27:19.099 2025-03-19 04:27:19.099 900000 TIP 434941 15100 \N \N 6031636 2025-03-19 04:27:21.976 2025-03-19 04:27:21.976 3000 FEE 434440 21599 \N \N 6031637 2025-03-19 04:27:21.976 2025-03-19 04:27:21.976 27000 TIP 434440 1773 \N \N 6031655 2025-03-19 04:33:18.434 2025-03-19 04:33:18.434 2100 FEE 434786 4250 \N \N 6031656 2025-03-19 04:33:18.434 2025-03-19 04:33:18.434 18900 TIP 434786 19469 \N \N 6031694 2025-03-19 04:34:45.923 2025-03-19 04:34:45.923 1000 FEE 434960 8505 \N \N 6031701 2025-03-19 04:35:28.038 2025-03-19 04:35:28.038 2100 FEE 434909 15103 \N \N 6031702 2025-03-19 04:35:28.038 2025-03-19 04:35:28.038 18900 TIP 434909 7773 \N \N 6031707 2025-03-19 04:35:39.087 2025-03-19 04:35:39.087 2100 FEE 434916 11145 \N \N 6031708 2025-03-19 04:35:39.087 2025-03-19 04:35:39.087 18900 TIP 434916 2593 \N \N 6031711 2025-03-19 04:36:20.831 2025-03-19 04:36:20.831 2100 FEE 434720 6653 \N \N 6031712 2025-03-19 04:36:20.831 2025-03-19 04:36:20.831 18900 TIP 434720 1970 \N \N 6031762 2025-03-19 04:39:54.814 2025-03-19 04:39:54.814 2100 FEE 434805 7674 \N \N 6031763 2025-03-19 04:39:54.814 2025-03-19 04:39:54.814 18900 TIP 434805 768 \N \N 6031764 2025-03-19 04:39:56.371 2025-03-19 04:39:56.371 2100 FEE 434796 6419 \N \N 6031765 2025-03-19 04:39:56.371 2025-03-19 04:39:56.371 18900 TIP 434796 2042 \N \N 6031771 2025-03-19 04:40:03.3 2025-03-19 04:40:03.3 2100 FEE 434818 20881 \N \N 6031772 2025-03-19 04:40:03.3 2025-03-19 04:40:03.3 18900 TIP 434818 7418 \N \N 6031775 2025-03-19 04:40:05.542 2025-03-19 04:40:05.542 2100 FEE 434828 18314 \N \N 6031776 2025-03-19 04:40:05.542 2025-03-19 04:40:05.542 18900 TIP 434828 20596 \N \N 6031782 2025-03-19 04:40:53.887 2025-03-19 04:40:53.887 2100 FEE 434577 1960 \N \N 6031783 2025-03-19 04:40:53.887 2025-03-19 04:40:53.887 18900 TIP 434577 1480 \N \N 6031804 2025-03-19 04:43:48.843 2025-03-19 04:43:48.843 800 FEE 434952 6688 \N \N 6031108 2025-03-19 03:06:06.145 2025-03-19 03:06:06.145 9900 TIP 434643 20776 \N \N 6031174 2025-03-19 03:17:36.476 2025-03-19 03:17:36.476 1000 FEE 434873 17116 \N \N 6031208 2025-03-19 03:23:52.33 2025-03-19 03:23:52.33 98000 FEE 434882 4958 \N \N 6031210 2025-03-19 03:25:08.736 2025-03-19 03:25:08.736 500 FEE 434870 17291 \N \N 6031211 2025-03-19 03:25:08.736 2025-03-19 03:25:08.736 4500 TIP 434870 1488 \N \N 6031227 2025-03-19 03:29:27.313 2025-03-19 03:29:27.313 3000 DONT_LIKE_THIS 294981 10519 \N \N 6031240 2025-03-19 03:30:26.148 2025-03-19 03:30:26.148 1000 FEE 434890 5500 \N \N 6031272 2025-03-19 03:34:16.197 2025-03-19 03:34:16.197 200 FEE 434675 1114 \N \N 6031273 2025-03-19 03:34:16.197 2025-03-19 03:34:16.197 1800 TIP 434675 2065 \N \N 6031289 2025-03-19 03:35:32.19 2025-03-19 03:35:32.19 1100 FEE 434642 928 \N \N 6031290 2025-03-19 03:35:32.19 2025-03-19 03:35:32.19 9900 TIP 434642 13878 \N \N 6031321 2025-03-19 03:45:25.353 2025-03-19 03:45:25.353 10000 FEE 434722 11798 \N \N 6031322 2025-03-19 03:45:25.353 2025-03-19 03:45:25.353 90000 TIP 434722 16284 \N \N 6031326 2025-03-19 03:45:46.181 2025-03-19 03:45:46.181 2100 FEE 434737 13878 \N \N 6031327 2025-03-19 03:45:46.181 2025-03-19 03:45:46.181 18900 TIP 434737 12562 \N \N 6031332 2025-03-19 03:46:45.956 2025-03-19 03:46:45.956 50000 FEE 434440 9450 \N \N 6031333 2025-03-19 03:46:45.956 2025-03-19 03:46:45.956 450000 TIP 434440 20613 \N \N 6031348 2025-03-19 03:50:33.766 2025-03-19 03:50:33.766 4000 FEE 434909 9036 \N \N 6031349 2025-03-19 03:50:33.766 2025-03-19 03:50:33.766 36000 TIP 434909 10981 \N \N 6031353 2025-03-19 03:51:16.261 2025-03-19 03:51:16.261 3000 FEE 434831 2326 \N \N 6031354 2025-03-19 03:51:16.261 2025-03-19 03:51:16.261 27000 TIP 434831 17103 \N \N 6031357 2025-03-19 03:51:40.161 2025-03-19 03:51:40.161 1000 FEE 434912 21600 \N \N 6031367 2025-03-19 03:54:38.198 2025-03-19 03:54:38.198 2100 FEE 434902 2098 \N \N 6031368 2025-03-19 03:54:38.198 2025-03-19 03:54:38.198 18900 TIP 434902 20901 \N \N 6031380 2025-03-19 03:55:50.016 2025-03-19 03:55:50.016 1000 FEE 434917 913 \N \N 6031390 2025-03-19 03:57:06.043 2025-03-19 03:57:06.043 2100 FEE 434560 1120 \N \N 6031391 2025-03-19 03:57:06.043 2025-03-19 03:57:06.043 18900 TIP 434560 5646 \N \N 6031395 2025-03-19 03:57:24.737 2025-03-19 03:57:24.737 2100 FEE 434660 8541 \N \N 6031396 2025-03-19 03:57:24.737 2025-03-19 03:57:24.737 18900 TIP 434660 20185 \N \N 6031476 2025-03-19 04:07:44.262 2025-03-19 04:07:44.262 200 FEE 434751 703 \N \N 6031477 2025-03-19 04:07:44.262 2025-03-19 04:07:44.262 1800 TIP 434751 9099 \N \N 6031483 2025-03-19 04:09:24.425 2025-03-19 04:09:24.425 900 FEE 434740 21805 \N \N 6031484 2025-03-19 04:09:24.425 2025-03-19 04:09:24.425 8100 TIP 434740 16212 \N \N 6031501 2025-03-19 04:11:06.544 2025-03-19 04:11:06.544 1000 FEE 434937 627 \N \N 6031509 2025-03-19 04:12:13.363 2025-03-19 04:12:13.363 9000 FEE 434615 9906 \N \N 6031510 2025-03-19 04:12:13.363 2025-03-19 04:12:13.363 81000 TIP 434615 6030 \N \N 6031526 2025-03-19 04:12:37.147 2025-03-19 04:12:37.147 2600 FEE 433123 2749 \N \N 6031527 2025-03-19 04:12:37.147 2025-03-19 04:12:37.147 23400 TIP 433123 1718 \N \N 6031530 2025-03-19 04:12:53.242 2025-03-19 04:12:53.242 100 FEE 434631 1465 \N \N 6031531 2025-03-19 04:12:53.242 2025-03-19 04:12:53.242 900 TIP 434631 5017 \N \N 6031544 2025-03-19 04:13:43.704 2025-03-19 04:13:43.704 0 FEE 434938 1970 \N \N 6031547 2025-03-19 04:13:51.391 2025-03-19 04:13:51.391 900 FEE 434641 5444 \N \N 6031548 2025-03-19 04:13:51.391 2025-03-19 04:13:51.391 8100 TIP 434641 2513 \N \N 6031602 2025-03-19 04:20:25.77 2025-03-19 04:20:25.77 1000 FEE 434877 1515 \N \N 6031603 2025-03-19 04:20:25.77 2025-03-19 04:20:25.77 9000 TIP 434877 2528 \N \N 6031606 2025-03-19 04:22:02.352 2025-03-19 04:22:02.352 1000 FEE 434782 16788 \N \N 6031607 2025-03-19 04:22:02.352 2025-03-19 04:22:02.352 9000 TIP 434782 20019 \N \N 6031611 2025-03-19 04:22:43.532 2025-03-19 04:22:43.532 2100 FEE 434788 1030 \N \N 6031612 2025-03-19 04:22:43.532 2025-03-19 04:22:43.532 18900 TIP 434788 11454 \N \N 6031620 2025-03-19 04:24:42.926 2025-03-19 04:24:42.926 10000 FEE 434626 16309 \N \N 6031621 2025-03-19 04:24:42.926 2025-03-19 04:24:42.926 90000 TIP 434626 15147 \N \N 6031646 2025-03-19 04:30:29.981 2025-03-19 04:30:29.981 1000 FEE 434954 16536 \N \N 6031647 2025-03-19 04:30:58.329 2025-03-19 04:30:58.329 1000 FEE 434955 718 \N \N 6031661 2025-03-19 04:33:25.273 2025-03-19 04:33:25.273 2100 FEE 434791 20377 \N \N 6031662 2025-03-19 04:33:25.273 2025-03-19 04:33:25.273 18900 TIP 434791 766 \N \N 6031675 2025-03-19 04:33:47.58 2025-03-19 04:33:47.58 2100 FEE 434535 910 \N \N 6031676 2025-03-19 04:33:47.58 2025-03-19 04:33:47.58 18900 TIP 434535 17064 \N \N 6031677 2025-03-19 04:33:51.818 2025-03-19 04:33:51.818 97000 FEE 434958 16667 \N \N 6031705 2025-03-19 04:35:33.635 2025-03-19 04:35:33.635 2100 FEE 434882 15588 \N \N 6031706 2025-03-19 04:35:33.635 2025-03-19 04:35:33.635 18900 TIP 434882 2776 \N \N 6031717 2025-03-19 04:37:51.377 2025-03-19 04:37:51.377 2100 FEE 434956 8664 \N \N 6031718 2025-03-19 04:37:51.377 2025-03-19 04:37:51.377 18900 TIP 434956 21275 \N \N 6031735 2025-03-19 04:39:36.68 2025-03-19 04:39:36.68 2100 FEE 434859 19494 \N \N 6031736 2025-03-19 04:39:36.68 2025-03-19 04:39:36.68 18900 TIP 434859 20674 \N \N 6031749 2025-03-19 04:39:45.217 2025-03-19 04:39:45.217 2100 FEE 434798 19759 \N \N 6031750 2025-03-19 04:39:45.217 2025-03-19 04:39:45.217 18900 TIP 434798 9796 \N \N 6031758 2025-03-19 04:39:53.221 2025-03-19 04:39:53.221 2100 FEE 434800 20220 \N \N 6031759 2025-03-19 04:39:53.221 2025-03-19 04:39:53.221 18900 TIP 434800 9331 \N \N 6031766 2025-03-19 04:39:56.979 2025-03-19 04:39:56.979 2100 FEE 434811 18468 \N \N 6031767 2025-03-19 04:39:56.979 2025-03-19 04:39:56.979 18900 TIP 434811 17218 \N \N 6031794 2025-03-19 04:42:56.302 2025-03-19 04:42:56.302 2300 FEE 434810 21079 \N \N 6031795 2025-03-19 04:42:56.302 2025-03-19 04:42:56.302 20700 TIP 434810 6268 \N \N 6031844 2025-03-19 04:45:14.105 2025-03-19 04:45:14.105 1300 FEE 434484 1970 \N \N 6031845 2025-03-19 04:45:14.105 2025-03-19 04:45:14.105 11700 TIP 434484 5961 \N \N 6031862 2025-03-19 04:46:50.903 2025-03-19 04:46:50.903 10000 FEE 317410 976 \N \N 6031863 2025-03-19 04:46:50.903 2025-03-19 04:46:50.903 90000 TIP 317410 21208 \N \N 6031870 2025-03-19 04:48:31.034 2025-03-19 04:48:31.034 2100 FEE 434809 986 \N \N 6031871 2025-03-19 04:48:31.034 2025-03-19 04:48:31.034 18900 TIP 434809 17030 \N \N 6031872 2025-03-19 04:49:01.699 2025-03-19 04:49:01.699 1000 FEE 434976 4115 \N \N 6031904 2025-03-19 04:52:59.646 2025-03-19 04:52:59.646 800 FEE 434864 1650 \N \N 6031905 2025-03-19 04:52:59.646 2025-03-19 04:52:59.646 7200 TIP 434864 21281 \N \N 6031913 2025-03-19 04:53:46.581 2025-03-19 04:53:46.581 1100 FEE 434627 5293 \N \N 6031914 2025-03-19 04:53:46.581 2025-03-19 04:53:46.581 9900 TIP 434627 9276 \N \N 6031941 2025-03-19 04:58:25.047 2025-03-19 04:58:25.047 1000 FEE 434617 5828 \N \N 6031942 2025-03-19 04:58:25.047 2025-03-19 04:58:25.047 9000 TIP 434617 7097 \N \N 6031979 2025-03-19 05:01:04.957 2025-03-19 05:01:04.957 8300 FEE 434791 20450 \N \N 6031980 2025-03-19 05:01:04.957 2025-03-19 05:01:04.957 74700 TIP 434791 20799 \N \N 6032013 2025-03-19 05:02:01.67 2025-03-19 05:02:01.67 8300 FEE 434990 21514 \N \N 6032014 2025-03-19 05:02:01.67 2025-03-19 05:02:01.67 74700 TIP 434990 6717 \N \N 6032029 2025-03-19 05:05:40.48 2025-03-19 05:05:40.48 2100 FEE 434685 18309 \N \N 6032030 2025-03-19 05:05:40.48 2025-03-19 05:05:40.48 18900 TIP 434685 5306 \N \N 6032041 2025-03-19 05:07:29.402 2025-03-19 05:07:29.402 2100 FEE 434987 2039 \N \N 6032042 2025-03-19 05:07:29.402 2025-03-19 05:07:29.402 18900 TIP 434987 6419 \N \N 6032043 2025-03-19 05:08:05.144 2025-03-19 05:08:05.144 10000 FEE 434997 2844 \N \N 6032063 2025-03-19 05:10:08.611 2025-03-19 05:10:08.611 27000 FEE 434637 16978 \N \N 6032064 2025-03-19 05:10:08.611 2025-03-19 05:10:08.611 243000 TIP 434637 17541 \N \N 6032067 2025-03-19 05:10:56.909 2025-03-19 05:10:56.909 4000 FEE 434990 13361 \N \N 6032068 2025-03-19 05:10:56.909 2025-03-19 05:10:56.909 36000 TIP 434990 8508 \N \N 6032073 2025-03-19 05:11:11.535 2025-03-19 05:11:11.535 1000 FEE 435006 759 \N \N 6032090 2025-03-19 05:12:52.224 2025-03-19 05:12:52.224 1000 FEE 435009 21405 \N \N 6031115 2025-03-19 03:06:43.392 2025-03-19 03:06:43.392 1000 FEE 434866 20624 \N \N 6031132 2025-03-19 03:08:40.45 2025-03-19 03:08:40.45 1000 FEE 434867 5746 \N \N 6031139 2025-03-19 03:09:00.811 2025-03-19 03:09:00.811 1100 FEE 434862 20220 \N \N 6031140 2025-03-19 03:09:00.811 2025-03-19 03:09:00.811 9900 TIP 434862 11498 \N \N 6031153 2025-03-19 03:11:22.695 2025-03-19 03:11:22.695 1000 FEE 434871 1489 \N \N 6031181 2025-03-19 03:17:45.781 2025-03-19 03:17:45.781 100 FEE 430342 4862 \N \N 6031182 2025-03-19 03:17:45.781 2025-03-19 03:17:45.781 900 TIP 430342 705 \N \N 6031229 2025-03-19 03:29:55.867 2025-03-19 03:29:55.867 2100 FEE 434627 1806 \N \N 6031230 2025-03-19 03:29:55.867 2025-03-19 03:29:55.867 18900 TIP 434627 2088 \N \N 6031231 2025-03-19 03:29:58.659 2025-03-19 03:29:58.659 2100 FEE 434807 20990 \N \N 6031232 2025-03-19 03:29:58.659 2025-03-19 03:29:58.659 18900 TIP 434807 1890 \N \N 6031253 2025-03-19 03:33:12.246 2025-03-19 03:33:12.246 1000 FEE 434893 14669 \N \N 6031282 2025-03-19 03:34:43.683 2025-03-19 03:34:43.683 1100 FEE 434892 20680 \N \N 6031283 2025-03-19 03:34:43.683 2025-03-19 03:34:43.683 9900 TIP 434892 17714 \N \N 6031287 2025-03-19 03:35:31.465 2025-03-19 03:35:31.465 1100 FEE 434642 18601 \N \N 6031288 2025-03-19 03:35:31.465 2025-03-19 03:35:31.465 9900 TIP 434642 761 \N \N 6031293 2025-03-19 03:36:59.82 2025-03-19 03:36:59.82 1000 FEE 434899 21222 \N \N 6031306 2025-03-19 03:43:12.219 2025-03-19 03:43:12.219 1000 FEE 434902 688 \N \N 6031308 2025-03-19 03:43:49.789 2025-03-19 03:43:49.789 100000 FEE 434714 8448 \N \N 6031309 2025-03-19 03:43:49.789 2025-03-19 03:43:49.789 900000 TIP 434714 4602 \N \N 6031345 2025-03-19 03:50:15.226 2025-03-19 03:50:15.226 1000 FEE 434910 21020 \N \N 6031383 2025-03-19 03:56:14.4 2025-03-19 03:56:14.4 10000 FEE 434627 11220 \N \N 6031384 2025-03-19 03:56:14.4 2025-03-19 03:56:14.4 90000 TIP 434627 16250 \N \N 6031436 2025-03-19 04:00:46.789 2025-03-19 04:00:46.789 1000 FEE 434926 5112 \N \N 6031460 2025-03-19 04:04:15.588 2025-03-19 04:04:15.588 1000 FEE 434929 624 \N \N 6031468 2025-03-19 04:05:35.604 2025-03-19 04:05:35.604 1100 FEE 434926 21797 \N \N 6031469 2025-03-19 04:05:35.604 2025-03-19 04:05:35.604 9900 TIP 434926 19488 \N \N 6031475 2025-03-19 04:07:41.316 2025-03-19 04:07:41.316 1000 FEE 434932 12911 \N \N 6031505 2025-03-19 04:12:09.774 2025-03-19 04:12:09.774 100 FEE 434615 7675 \N \N 6031506 2025-03-19 04:12:09.774 2025-03-19 04:12:09.774 900 TIP 434615 10096 \N \N 6031512 2025-03-19 04:12:15.722 2025-03-19 04:12:15.722 20000 FEE 433123 673 \N \N 6031513 2025-03-19 04:12:15.722 2025-03-19 04:12:15.722 180000 TIP 433123 11314 \N \N 6031516 2025-03-19 04:12:22.558 2025-03-19 04:12:22.558 100 FEE 434619 5293 \N \N 6031517 2025-03-19 04:12:22.558 2025-03-19 04:12:22.558 900 TIP 434619 11395 \N \N 6031522 2025-03-19 04:12:24.645 2025-03-19 04:12:24.645 9000 FEE 434619 17710 \N \N 6031523 2025-03-19 04:12:24.645 2025-03-19 04:12:24.645 81000 TIP 434619 19980 \N \N 6031538 2025-03-19 04:13:13.748 2025-03-19 04:13:13.748 5000 FEE 434745 1352 \N \N 6031539 2025-03-19 04:13:13.748 2025-03-19 04:13:13.748 45000 TIP 434745 20816 \N \N 6031540 2025-03-19 04:13:13.852 2025-03-19 04:13:13.852 20000 FEE 432920 780 \N \N 6031541 2025-03-19 04:13:13.852 2025-03-19 04:13:13.852 180000 TIP 432920 2232 \N \N 6031565 2025-03-19 04:14:59.795 2025-03-19 04:14:59.795 900 FEE 434695 16267 \N \N 6031566 2025-03-19 04:14:59.795 2025-03-19 04:14:59.795 8100 TIP 434695 3411 \N \N 6031574 2025-03-19 04:15:50.602 2025-03-19 04:15:50.602 100 FEE 434722 16942 \N \N 6031575 2025-03-19 04:15:50.602 2025-03-19 04:15:50.602 900 TIP 434722 20901 \N \N 6031613 2025-03-19 04:22:50.345 2025-03-19 04:22:50.345 1000 FEE 434945 782 \N \N 6031651 2025-03-19 04:32:57.777 2025-03-19 04:32:57.777 100000 FEE 434957 20603 \N \N 6031667 2025-03-19 04:33:31.548 2025-03-19 04:33:31.548 2100 FEE 434717 20198 \N \N 6031668 2025-03-19 04:33:31.548 2025-03-19 04:33:31.548 18900 TIP 434717 17517 \N \N 6031671 2025-03-19 04:33:38.725 2025-03-19 04:33:38.725 2100 FEE 434685 17519 \N \N 6031672 2025-03-19 04:33:38.725 2025-03-19 04:33:38.725 18900 TIP 434685 20680 \N \N 6031673 2025-03-19 04:33:42.471 2025-03-19 04:33:42.471 2100 FEE 434722 16351 \N \N 6031674 2025-03-19 04:33:42.471 2025-03-19 04:33:42.471 18900 TIP 434722 15148 \N \N 6031691 2025-03-19 04:34:41.387 2025-03-19 04:34:41.387 700 FEE 432982 20636 \N \N 6031692 2025-03-19 04:34:41.387 2025-03-19 04:34:41.387 6300 TIP 432982 5308 \N \N 6031697 2025-03-19 04:35:11.636 2025-03-19 04:35:11.636 1000 FEE 434961 7766 \N \N 6031713 2025-03-19 04:36:23.21 2025-03-19 04:36:23.21 2100 FEE 434553 7558 \N \N 6031714 2025-03-19 04:36:23.21 2025-03-19 04:36:23.21 18900 TIP 434553 21714 \N \N 6031721 2025-03-19 04:38:11.41 2025-03-19 04:38:11.41 0 FEE 38225 1617 \N \N 6031723 2025-03-19 04:38:20.43 2025-03-19 04:38:20.43 6400 FEE 434950 16598 \N \N 6031724 2025-03-19 04:38:20.43 2025-03-19 04:38:20.43 57600 TIP 434950 13406 \N \N 6031790 2025-03-19 04:42:15.815 2025-03-19 04:42:15.815 2100 FEE 434615 21281 \N \N 6031791 2025-03-19 04:42:15.815 2025-03-19 04:42:15.815 18900 TIP 434615 21532 \N \N 6031792 2025-03-19 04:42:17.758 2025-03-19 04:42:17.758 4000 FEE 434962 21599 \N \N 6031793 2025-03-19 04:42:17.758 2025-03-19 04:42:17.758 36000 TIP 434962 21683 \N \N 6031802 2025-03-19 04:43:44.549 2025-03-19 04:43:44.549 2100 FEE 434610 16966 \N \N 6031803 2025-03-19 04:43:44.549 2025-03-19 04:43:44.549 18900 TIP 434610 17991 \N \N 6031816 2025-03-19 04:43:53.069 2025-03-19 04:43:53.069 1000 FEE 434962 21791 \N \N 6031817 2025-03-19 04:43:53.069 2025-03-19 04:43:53.069 9000 TIP 434962 21405 \N \N 6031832 2025-03-19 04:44:46.204 2025-03-19 04:44:46.204 1000 FEE 434972 21164 \N \N 6031835 2025-03-19 04:44:54.914 2025-03-19 04:44:54.914 1300 FEE 434613 1723 \N \N 6031836 2025-03-19 04:44:54.914 2025-03-19 04:44:54.914 11700 TIP 434613 7891 \N \N 6031853 2025-03-19 04:45:33.965 2025-03-19 04:45:33.965 1000 FEE 434974 18313 \N \N 6031860 2025-03-19 04:46:39.784 2025-03-19 04:46:39.784 2100 FEE 433688 20606 \N \N 6031861 2025-03-19 04:46:39.784 2025-03-19 04:46:39.784 18900 TIP 433688 11621 \N \N 6031875 2025-03-19 04:49:34.876 2025-03-19 04:49:34.876 1000 FEE 434978 8245 \N \N 6031906 2025-03-19 04:53:12.199 2025-03-19 04:53:12.199 2100 FEE 434920 17237 \N \N 6031907 2025-03-19 04:53:12.199 2025-03-19 04:53:12.199 18900 TIP 434920 10719 \N \N 6031919 2025-03-19 04:53:46.976 2025-03-19 04:53:46.976 1100 FEE 434627 14370 \N \N 6031920 2025-03-19 04:53:46.976 2025-03-19 04:53:46.976 9900 TIP 434627 1650 \N \N 6031943 2025-03-19 04:58:27.697 2025-03-19 04:58:27.697 1000 FEE 434557 18321 \N \N 6031944 2025-03-19 04:58:27.697 2025-03-19 04:58:27.697 9000 TIP 434557 10519 \N \N 6031948 2025-03-19 04:59:23.365 2025-03-19 04:59:23.365 100 FEE 434440 2537 \N \N 6031151 2025-03-19 03:10:13.356 2025-03-19 03:10:13.356 25200 TIP 434766 1008 \N \N 6031169 2025-03-19 03:17:08.316 2025-03-19 03:17:08.316 1100 FEE 434872 12609 \N \N 6031170 2025-03-19 03:17:08.316 2025-03-19 03:17:08.316 9900 TIP 434872 11716 \N \N 6031177 2025-03-19 03:17:44.764 2025-03-19 03:17:44.764 100 FEE 430342 20647 \N \N 6031178 2025-03-19 03:17:44.764 2025-03-19 03:17:44.764 900 TIP 430342 17171 \N \N 6031179 2025-03-19 03:17:45.31 2025-03-19 03:17:45.31 100 FEE 430342 624 \N \N 6031180 2025-03-19 03:17:45.31 2025-03-19 03:17:45.31 900 TIP 430342 20137 \N \N 6031200 2025-03-19 03:22:06.031 2025-03-19 03:22:06.031 1000 FEE 434878 5746 \N \N 6031205 2025-03-19 03:22:32.164 2025-03-19 03:22:32.164 1000 FEE 434880 18412 \N \N 6031219 2025-03-19 03:27:51.562 2025-03-19 03:27:51.562 1000 FEE 434885 21494 \N \N 6031221 2025-03-19 03:28:11.581 2025-03-19 03:28:11.581 10000 FEE 434887 5171 \N \N 6031247 2025-03-19 03:31:20.508 2025-03-19 03:31:20.508 2100 FEE 434787 19813 \N \N 6031248 2025-03-19 03:31:20.508 2025-03-19 03:31:20.508 18900 TIP 434787 14910 \N \N 6031249 2025-03-19 03:32:08.413 2025-03-19 03:32:08.413 100 FEE 434887 18615 \N \N 6031250 2025-03-19 03:32:08.413 2025-03-19 03:32:08.413 900 TIP 434887 19857 \N \N 6031255 2025-03-19 03:33:15.11 2025-03-19 03:33:15.11 1000 FEE 434894 12102 \N \N 6031267 2025-03-19 03:33:58.125 2025-03-19 03:33:58.125 200 FEE 434689 21710 \N \N 6031268 2025-03-19 03:33:58.125 2025-03-19 03:33:58.125 1800 TIP 434689 9366 \N \N 6031269 2025-03-19 03:34:04.217 2025-03-19 03:34:04.217 200 FEE 434688 19303 \N \N 6031270 2025-03-19 03:34:04.217 2025-03-19 03:34:04.217 1800 TIP 434688 8998 \N \N 6031274 2025-03-19 03:34:17.485 2025-03-19 03:34:17.485 1000 FEE 434896 12562 \N \N 6031278 2025-03-19 03:34:42.696 2025-03-19 03:34:42.696 1100 FEE 434892 1802 \N \N 6031279 2025-03-19 03:34:42.696 2025-03-19 03:34:42.696 9900 TIP 434892 21202 \N \N 6031280 2025-03-19 03:34:42.874 2025-03-19 03:34:42.874 1100 FEE 434892 627 \N \N 6031281 2025-03-19 03:34:42.874 2025-03-19 03:34:42.874 9900 TIP 434892 20755 \N \N 6031298 2025-03-19 03:38:32.111 2025-03-19 03:38:32.111 200 FEE 434242 5499 \N \N 6031299 2025-03-19 03:38:32.111 2025-03-19 03:38:32.111 1800 TIP 434242 9084 \N \N 6031328 2025-03-19 03:45:54.529 2025-03-19 03:45:54.529 10000 FEE 434288 13553 \N \N 6031329 2025-03-19 03:45:54.529 2025-03-19 03:45:54.529 90000 TIP 434288 21540 \N \N 6031343 2025-03-19 03:49:15.671 2025-03-19 03:49:15.671 10000 FEE 434909 859 \N \N 6031366 2025-03-19 03:54:23.157 2025-03-19 03:54:23.157 1000 FEE 434914 10536 \N \N 6031371 2025-03-19 03:55:21.128 2025-03-19 03:55:21.128 1100 FEE 434385 20788 \N \N 6031372 2025-03-19 03:55:21.128 2025-03-19 03:55:21.128 9900 TIP 434385 11298 \N \N 6031376 2025-03-19 03:55:37.56 2025-03-19 03:55:37.56 1100 FEE 434577 10549 \N \N 6031377 2025-03-19 03:55:37.56 2025-03-19 03:55:37.56 9900 TIP 434577 11220 \N \N 6031394 2025-03-19 03:57:22.091 2025-03-19 03:57:22.091 1000 FEE 434921 1495 \N \N 6031401 2025-03-19 03:58:24.54 2025-03-19 03:58:24.54 1000 FEE 434923 17727 \N \N 6031406 2025-03-19 03:58:39.527 2025-03-19 03:58:39.527 1000 FEE 434924 15732 \N \N 6031417 2025-03-19 03:58:49.257 2025-03-19 03:58:49.257 1100 FEE 434626 1141 \N \N 6031418 2025-03-19 03:58:49.257 2025-03-19 03:58:49.257 9900 TIP 434626 2335 \N \N 6031451 2025-03-19 04:03:10.987 2025-03-19 04:03:10.987 1600 FEE 434902 3411 \N \N 6031452 2025-03-19 04:03:10.987 2025-03-19 04:03:10.987 14400 TIP 434902 20970 \N \N 6031454 2025-03-19 04:04:08.014 2025-03-19 04:04:08.014 123400 FEE 434319 8080 \N \N 6031455 2025-03-19 04:04:08.014 2025-03-19 04:04:08.014 1110600 TIP 434319 19854 \N \N 6031459 2025-03-19 04:04:15.172 2025-03-19 04:04:15.172 100000 FEE 434928 12769 \N \N 6031479 2025-03-19 04:08:17.506 2025-03-19 04:08:17.506 1000 FEE 434933 20849 \N \N 6031490 2025-03-19 04:09:28.306 2025-03-19 04:09:28.306 900 FEE 434856 17184 \N \N 6031491 2025-03-19 04:09:28.306 2025-03-19 04:09:28.306 8100 TIP 434856 18525 \N \N 6031492 2025-03-19 04:09:44.163 2025-03-19 04:09:44.163 100 FEE 434927 10591 \N \N 6031493 2025-03-19 04:09:44.163 2025-03-19 04:09:44.163 900 TIP 434927 13174 \N \N 6031494 2025-03-19 04:09:44.428 2025-03-19 04:09:44.428 900 FEE 434927 20987 \N \N 6031495 2025-03-19 04:09:44.428 2025-03-19 04:09:44.428 8100 TIP 434927 21672 \N \N 6031500 2025-03-19 04:10:13.886 2025-03-19 04:10:13.886 2000 FEE 434936 2000 \N \N 6031532 2025-03-19 04:12:53.474 2025-03-19 04:12:53.474 900 FEE 434631 20924 \N \N 6031533 2025-03-19 04:12:53.474 2025-03-19 04:12:53.474 8100 TIP 434631 18901 \N \N 6031549 2025-03-19 04:13:52.332 2025-03-19 04:13:52.332 9000 FEE 434641 18473 \N \N 6031550 2025-03-19 04:13:52.332 2025-03-19 04:13:52.332 81000 TIP 434641 1761 \N \N 6031556 2025-03-19 04:14:34.434 2025-03-19 04:14:34.434 900 FEE 434665 15180 \N \N 6031557 2025-03-19 04:14:34.434 2025-03-19 04:14:34.434 8100 TIP 434665 16354 \N \N 6031558 2025-03-19 04:14:44.548 2025-03-19 04:14:44.548 3000 FEE 434685 657 \N \N 6031559 2025-03-19 04:14:44.548 2025-03-19 04:14:44.548 27000 TIP 434685 635 \N \N 6031580 2025-03-19 04:16:34.335 2025-03-19 04:16:34.335 100 FEE 434791 17209 \N \N 6031581 2025-03-19 04:16:34.335 2025-03-19 04:16:34.335 900 TIP 434791 21585 \N \N 6031593 2025-03-19 04:17:42.682 2025-03-19 04:17:42.682 10000 FEE 434942 14663 \N \N 6031628 2025-03-19 04:26:19.856 2025-03-19 04:26:19.856 1000 FEE 434791 21393 \N \N 6031629 2025-03-19 04:26:19.856 2025-03-19 04:26:19.856 9000 TIP 434791 11678 \N \N 6031631 2025-03-19 04:26:48.889 2025-03-19 04:26:48.889 1000 FEE 434791 4973 \N \N 6031632 2025-03-19 04:26:48.889 2025-03-19 04:26:48.889 9000 TIP 434791 2674 \N \N 6031644 2025-03-19 04:29:58.757 2025-03-19 04:29:58.757 1000 FEE 434953 15858 \N \N 6031650 2025-03-19 04:32:32.343 2025-03-19 04:32:32.343 1000 FEE 434956 17042 \N \N 6031652 2025-03-19 04:32:58.654 2025-03-19 04:32:58.654 4000 FEE 434934 20243 \N \N 6031653 2025-03-19 04:32:58.654 2025-03-19 04:32:58.654 36000 TIP 434934 19829 \N \N 6031663 2025-03-19 04:33:26.6 2025-03-19 04:33:26.6 2100 FEE 434627 10493 \N \N 6037022 2025-03-19 12:49:59.28 2025-03-19 12:49:59.28 1000 FEE 435167 21794 \N \N 6037023 2025-03-19 12:49:59.28 2025-03-19 12:49:59.28 9000 TIP 435167 18468 \N \N 6037053 2025-03-19 12:55:38.857 2025-03-19 12:55:38.857 10000 FEE 435567 15510 \N \N 6037059 2025-03-19 12:56:27.34 2025-03-19 12:56:27.34 1000 FEE 435565 726 \N \N 6037060 2025-03-19 12:56:27.34 2025-03-19 12:56:27.34 9000 TIP 435565 11395 \N \N 6037063 2025-03-19 12:57:12.572 2025-03-19 12:57:12.572 100 FEE 435520 10484 \N \N 6037064 2025-03-19 12:57:12.572 2025-03-19 12:57:12.572 900 TIP 435520 795 \N \N 6037074 2025-03-19 12:57:18.004 2025-03-19 12:57:18.004 1000 FEE 435516 14657 \N \N 6037075 2025-03-19 12:57:18.004 2025-03-19 12:57:18.004 9000 TIP 435516 20337 \N \N 6037085 2025-03-19 12:57:26.902 2025-03-19 12:57:26.902 900 FEE 435396 15045 \N \N 6037086 2025-03-19 12:57:26.902 2025-03-19 12:57:26.902 8100 TIP 435396 5961 \N \N 6037103 2025-03-19 12:58:08.349 2025-03-19 12:58:08.349 100 FEE 435544 6653 \N \N 6037104 2025-03-19 12:58:08.349 2025-03-19 12:58:08.349 900 TIP 435544 4048 \N \N 6037132 2025-03-19 12:59:49.828 2025-03-19 12:59:49.828 2300 FEE 435497 16695 \N \N 6037133 2025-03-19 12:59:49.828 2025-03-19 12:59:49.828 20700 TIP 435497 760 \N \N 6037144 2025-03-19 12:59:51.241 2025-03-19 12:59:51.241 2300 FEE 435497 5761 \N \N 6037145 2025-03-19 12:59:51.241 2025-03-19 12:59:51.241 20700 TIP 435497 2583 \N \N 6037192 2025-03-19 12:59:56.193 2025-03-19 12:59:56.193 2300 FEE 435497 20715 \N \N 6037193 2025-03-19 12:59:56.193 2025-03-19 12:59:56.193 20700 TIP 435497 3990 \N \N 6037194 2025-03-19 12:59:56.506 2025-03-19 12:59:56.506 2300 FEE 435497 21148 \N \N 6037195 2025-03-19 12:59:56.506 2025-03-19 12:59:56.506 20700 TIP 435497 8926 \N \N 6037224 2025-03-19 13:02:21.7 2025-03-19 13:02:21.7 1000 FEE 435574 1803 \N \N 6037240 2025-03-19 13:07:21.741 2025-03-19 13:07:21.741 125000 FEE 435579 686 \N \N 6037243 2025-03-19 13:08:28.746 2025-03-19 13:08:28.746 100 FEE 435574 4958 \N \N 6037244 2025-03-19 13:08:28.746 2025-03-19 13:08:28.746 900 TIP 435574 15488 \N \N 6037245 2025-03-19 13:08:28.939 2025-03-19 13:08:28.939 900 FEE 435574 15060 \N \N 6037246 2025-03-19 13:08:28.939 2025-03-19 13:08:28.939 8100 TIP 435574 6777 \N \N 6037247 2025-03-19 13:08:30.732 2025-03-19 13:08:30.732 9000 FEE 435574 636 \N \N 6037248 2025-03-19 13:08:30.732 2025-03-19 13:08:30.732 81000 TIP 435574 21501 \N \N 6037263 2025-03-19 13:09:41.092 2025-03-19 13:09:41.092 3000 FEE 435555 19759 \N \N 6037264 2025-03-19 13:09:41.092 2025-03-19 13:09:41.092 27000 TIP 435555 929 \N \N 6037347 2025-03-19 13:16:13.139 2025-03-19 13:16:13.139 8300 FEE 435579 17817 \N \N 6037348 2025-03-19 13:16:13.139 2025-03-19 13:16:13.139 74700 TIP 435579 787 \N \N 6037371 2025-03-19 13:18:20.478 2025-03-19 13:18:20.478 10000 FEE 435577 18473 \N \N 6037372 2025-03-19 13:18:20.478 2025-03-19 13:18:20.478 90000 TIP 435577 16059 \N \N 6037377 2025-03-19 13:19:35.817 2025-03-19 13:19:35.817 3300 FEE 435314 2329 \N \N 6037378 2025-03-19 13:19:35.817 2025-03-19 13:19:35.817 29700 TIP 435314 6268 \N \N 6037397 2025-03-19 13:20:23.843 2025-03-19 13:20:23.843 1000 POLL 435495 16354 \N \N 6037432 2025-03-19 13:21:47.21 2025-03-19 13:21:47.21 200 FEE 435578 12738 \N \N 6037433 2025-03-19 13:21:47.21 2025-03-19 13:21:47.21 1800 TIP 435578 1198 \N \N 6037454 2025-03-19 13:25:50.473 2025-03-19 13:25:50.473 1000 FEE 435605 9669 \N \N 6037462 2025-03-19 13:26:03.011 2025-03-19 13:26:03.011 100 FEE 435582 16950 \N \N 6037463 2025-03-19 13:26:03.011 2025-03-19 13:26:03.011 900 TIP 435582 1130 \N \N 6037490 2025-03-19 13:27:21.438 2025-03-19 13:27:21.438 400 FEE 435592 11714 \N \N 6037491 2025-03-19 13:27:21.438 2025-03-19 13:27:21.438 3600 TIP 435592 18101 \N \N 6037517 2025-03-19 13:33:16.238 2025-03-19 13:33:16.238 12800 FEE 435605 2710 \N \N 6037518 2025-03-19 13:33:16.238 2025-03-19 13:33:16.238 115200 TIP 435605 15978 \N \N 6037538 2025-03-19 13:38:34.534 2025-03-19 13:38:34.534 2500 FEE 435562 5017 \N \N 6037539 2025-03-19 13:38:34.534 2025-03-19 13:38:34.534 22500 TIP 435562 7899 \N \N 6037553 2025-03-19 13:40:21.657 2025-03-19 13:40:21.657 10000 FEE 435328 14152 \N \N 6037554 2025-03-19 13:40:21.657 2025-03-19 13:40:21.657 90000 TIP 435328 13878 \N \N 6037577 2025-03-19 13:44:48.764 2025-03-19 13:44:48.764 0 FEE 435619 12072 \N \N 6037580 2025-03-19 13:46:38.974 2025-03-19 13:46:38.974 0 FEE 435619 21768 \N \N 6037584 2025-03-19 13:47:34.39 2025-03-19 13:47:34.39 2100 FEE 435551 644 \N \N 6037585 2025-03-19 13:47:34.39 2025-03-19 13:47:34.39 18900 TIP 435551 1038 \N \N 6037586 2025-03-19 13:47:34.881 2025-03-19 13:47:34.881 2100 FEE 435551 20523 \N \N 6037587 2025-03-19 13:47:34.881 2025-03-19 13:47:34.881 18900 TIP 435551 2016 \N \N 6037603 2025-03-19 13:47:41.639 2025-03-19 13:47:41.639 2100 FEE 435328 6526 \N \N 6037604 2025-03-19 13:47:41.639 2025-03-19 13:47:41.639 18900 TIP 435328 11314 \N \N 6037619 2025-03-19 13:47:56.548 2025-03-19 13:47:56.548 2100 FEE 435458 2098 \N \N 6037620 2025-03-19 13:47:56.548 2025-03-19 13:47:56.548 18900 TIP 435458 3342 \N \N 6037641 2025-03-19 13:48:15.327 2025-03-19 13:48:15.327 0 FEE 435619 963 \N \N 6037647 2025-03-19 13:48:39.207 2025-03-19 13:48:39.207 0 FEE 435619 889 \N \N 6037660 2025-03-19 13:49:29.222 2025-03-19 13:49:29.222 2500 FEE 435489 21091 \N \N 6037661 2025-03-19 13:49:29.222 2025-03-19 13:49:29.222 22500 TIP 435489 6030 \N \N 6037691 2025-03-19 13:50:15.446 2025-03-19 13:50:15.446 1000 FEE 435622 775 \N \N 6037718 2025-03-19 13:51:36.464 2025-03-19 13:51:36.464 2100 FEE 434847 19813 \N \N 6037719 2025-03-19 13:51:36.464 2025-03-19 13:51:36.464 18900 TIP 434847 21048 \N \N 6037734 2025-03-19 13:51:44.322 2025-03-19 13:51:44.322 2100 FEE 435327 7891 \N \N 6037735 2025-03-19 13:51:44.322 2025-03-19 13:51:44.322 18900 TIP 435327 13763 \N \N 6037736 2025-03-19 13:51:44.509 2025-03-19 13:51:44.509 2100 FEE 435327 3371 \N \N 6037737 2025-03-19 13:51:44.509 2025-03-19 13:51:44.509 18900 TIP 435327 6602 \N \N 6037754 2025-03-19 13:51:56.286 2025-03-19 13:51:56.286 1000 FEE 435623 18393 \N \N 6037755 2025-03-19 13:51:57.804 2025-03-19 13:51:57.804 300 FEE 435622 7877 \N \N 6037756 2025-03-19 13:51:57.804 2025-03-19 13:51:57.804 2700 TIP 435622 18330 \N \N 6037757 2025-03-19 13:51:57.963 2025-03-19 13:51:57.963 300 FEE 435622 1198 \N \N 6037758 2025-03-19 13:51:57.963 2025-03-19 13:51:57.963 2700 TIP 435622 18735 \N \N 6037761 2025-03-19 13:52:06.245 2025-03-19 13:52:06.245 1000 FEE 435624 3706 \N \N 6037773 2025-03-19 13:52:10.991 2025-03-19 13:52:10.991 2100 FEE 435544 980 \N \N 6037774 2025-03-19 13:52:10.991 2025-03-19 13:52:10.991 18900 TIP 435544 13038 \N \N 6037794 2025-03-19 13:52:15.433 2025-03-19 13:52:15.433 1000 FEE 435579 16788 \N \N 6037795 2025-03-19 13:52:15.433 2025-03-19 13:52:15.433 9000 TIP 435579 1438 \N \N 6037816 2025-03-19 13:52:17.821 2025-03-19 13:52:17.821 4200 FEE 435544 15409 \N \N 6037817 2025-03-19 13:52:17.821 2025-03-19 13:52:17.821 37800 TIP 435544 14552 \N \N 6037824 2025-03-19 13:52:25.346 2025-03-19 13:52:25.346 2900 FEE 435551 11314 \N \N 6037825 2025-03-19 13:52:25.346 2025-03-19 13:52:25.346 26100 TIP 435551 687 \N \N 6037826 2025-03-19 13:52:39.252 2025-03-19 13:52:39.252 3300 FEE 435532 15115 \N \N 6037827 2025-03-19 13:52:39.252 2025-03-19 13:52:39.252 29700 TIP 435532 14225 \N \N 6037841 2025-03-19 13:53:10.906 2025-03-19 13:53:10.906 2100 FEE 435328 5306 \N \N 6037842 2025-03-19 13:53:10.906 2025-03-19 13:53:10.906 18900 TIP 435328 683 \N \N 6037853 2025-03-19 13:54:20.846 2025-03-19 13:54:20.846 3300 FEE 435468 21003 \N \N 6037854 2025-03-19 13:54:20.846 2025-03-19 13:54:20.846 29700 TIP 435468 4415 \N \N 6037855 2025-03-19 13:54:21.016 2025-03-19 13:54:21.016 3300 FEE 435468 19459 \N \N 6037856 2025-03-19 13:54:21.016 2025-03-19 13:54:21.016 29700 TIP 435468 14552 \N \N 6037857 2025-03-19 13:54:29.728 2025-03-19 13:54:29.728 100 FEE 435621 20523 \N \N 6037858 2025-03-19 13:54:29.728 2025-03-19 13:54:29.728 900 TIP 435621 14503 \N \N 6037859 2025-03-19 13:54:44.989 2025-03-19 13:54:44.989 1000 FEE 435629 631 \N \N 6037901 2025-03-19 14:03:27.237 2025-03-19 14:03:27.237 4000 FEE 435626 5776 \N \N 6037902 2025-03-19 14:03:27.237 2025-03-19 14:03:27.237 36000 TIP 435626 1002 \N \N 6037903 2025-03-19 14:04:06.708 2025-03-19 14:04:06.708 10000 FEE 435583 20701 \N \N 6037904 2025-03-19 14:04:06.708 2025-03-19 14:04:06.708 90000 TIP 435583 17638 \N \N 6037182 2025-03-19 12:59:55.049 2025-03-19 12:59:55.049 2300 FEE 435497 11164 \N \N 6037183 2025-03-19 12:59:55.049 2025-03-19 12:59:55.049 20700 TIP 435497 3392 \N \N 6037196 2025-03-19 12:59:56.693 2025-03-19 12:59:56.693 2300 FEE 435497 10493 \N \N 6037197 2025-03-19 12:59:56.693 2025-03-19 12:59:56.693 20700 TIP 435497 979 \N \N 6037211 2025-03-19 13:00:16.528 2025-03-19 13:00:16.528 1000 FEE 435573 9669 \N \N 6037218 2025-03-19 13:01:12.366 2025-03-19 13:01:12.366 2100 FEE 435345 6537 \N \N 6037219 2025-03-19 13:01:12.366 2025-03-19 13:01:12.366 18900 TIP 435345 1213 \N \N 6037233 2025-03-19 13:05:38.015 2025-03-19 13:05:38.015 1000 FEE 435578 17713 \N \N 6037250 2025-03-19 13:09:08.039 2025-03-19 13:09:08.039 3000 FEE 435504 16695 \N \N 6037251 2025-03-19 13:09:08.039 2025-03-19 13:09:08.039 27000 TIP 435504 9166 \N \N 6037261 2025-03-19 13:09:39.631 2025-03-19 13:09:39.631 3000 FEE 435553 2514 \N \N 6037262 2025-03-19 13:09:39.631 2025-03-19 13:09:39.631 27000 TIP 435553 10280 \N \N 6037268 2025-03-19 13:10:16.337 2025-03-19 13:10:16.337 1000 FEE 435043 688 \N \N 6037269 2025-03-19 13:10:16.337 2025-03-19 13:10:16.337 9000 TIP 435043 13216 \N \N 6037279 2025-03-19 13:11:09.284 2025-03-19 13:11:09.284 100 FEE 435575 626 \N \N 6037280 2025-03-19 13:11:09.284 2025-03-19 13:11:09.284 900 TIP 435575 21180 \N \N 6037304 2025-03-19 13:12:21.866 2025-03-19 13:12:21.866 100 FEE 435565 7877 \N \N 6037305 2025-03-19 13:12:21.866 2025-03-19 13:12:21.866 900 TIP 435565 21709 \N \N 6037328 2025-03-19 13:14:38.345 2025-03-19 13:14:38.345 4000 FEE 435458 9921 \N \N 6037329 2025-03-19 13:14:38.345 2025-03-19 13:14:38.345 36000 TIP 435458 3686 \N \N 6037342 2025-03-19 13:16:02.24 2025-03-19 13:16:02.24 2100 FEE 435577 760 \N \N 6037343 2025-03-19 13:16:02.24 2025-03-19 13:16:02.24 18900 TIP 435577 17519 \N \N 6037379 2025-03-19 13:19:45.186 2025-03-19 13:19:45.186 10000 FEE 435596 1772 \N \N 6037436 2025-03-19 13:21:49.403 2025-03-19 13:21:49.403 1000 FEE 435599 4079 \N \N 6037446 2025-03-19 13:22:51.271 2025-03-19 13:22:51.271 42000 FEE 435602 16176 \N \N 6037452 2025-03-19 13:25:03.236 2025-03-19 13:25:03.236 1000 FEE 435604 9916 \N \N 6037501 2025-03-19 13:32:10.471 2025-03-19 13:32:10.471 1000 FEE 435611 21518 \N \N 6037532 2025-03-19 13:37:57.124 2025-03-19 13:37:57.124 5000 FEE 435613 14255 \N \N 6037533 2025-03-19 13:37:57.124 2025-03-19 13:37:57.124 45000 TIP 435613 9109 \N \N 6037560 2025-03-19 13:42:05.93 2025-03-19 13:42:05.93 1000 FEE 435617 18306 \N \N 6037597 2025-03-19 13:47:40.716 2025-03-19 13:47:40.716 2100 FEE 435328 10302 \N \N 6037598 2025-03-19 13:47:40.716 2025-03-19 13:47:40.716 18900 TIP 435328 9551 \N \N 6037607 2025-03-19 13:47:52.116 2025-03-19 13:47:52.116 900 FEE 435619 6777 \N \N 6037608 2025-03-19 13:47:52.116 2025-03-19 13:47:52.116 8100 TIP 435619 9200 \N \N 6037615 2025-03-19 13:47:55.65 2025-03-19 13:47:55.65 2100 FEE 435458 4027 \N \N 6037616 2025-03-19 13:47:55.65 2025-03-19 13:47:55.65 18900 TIP 435458 20775 \N \N 6037625 2025-03-19 13:48:04.345 2025-03-19 13:48:04.345 2100 FEE 435154 1761 \N \N 6037626 2025-03-19 13:48:04.345 2025-03-19 13:48:04.345 18900 TIP 435154 1772 \N \N 6037636 2025-03-19 13:48:09.978 2025-03-19 13:48:09.978 2100 FEE 435402 10096 \N \N 6037637 2025-03-19 13:48:09.978 2025-03-19 13:48:09.978 18900 TIP 435402 1571 \N \N 6037646 2025-03-19 13:48:30.894 2025-03-19 13:48:30.894 0 FEE 435619 11523 \N \N 6037650 2025-03-19 13:48:39.533 2025-03-19 13:48:39.533 900 FEE 435596 20646 \N \N 6037651 2025-03-19 13:48:39.533 2025-03-19 13:48:39.533 8100 TIP 435596 19570 \N \N 6037664 2025-03-19 13:49:30.68 2025-03-19 13:49:30.68 1000 FEE 435453 19488 \N \N 6037665 2025-03-19 13:49:30.68 2025-03-19 13:49:30.68 9000 TIP 435453 2361 \N \N 6037698 2025-03-19 13:51:01.512 2025-03-19 13:51:01.512 2500 FEE 435489 13198 \N \N 6037699 2025-03-19 13:51:01.512 2025-03-19 13:51:01.512 22500 TIP 435489 21091 \N \N 6037714 2025-03-19 13:51:33.793 2025-03-19 13:51:33.793 2100 FEE 434857 7978 \N \N 6037715 2025-03-19 13:51:33.793 2025-03-19 13:51:33.793 18900 TIP 434857 20133 \N \N 6037748 2025-03-19 13:51:52.334 2025-03-19 13:51:52.334 2100 FEE 435030 6058 \N \N 6037749 2025-03-19 13:51:52.334 2025-03-19 13:51:52.334 18900 TIP 435030 20817 \N \N 6037752 2025-03-19 13:51:52.803 2025-03-19 13:51:52.803 2100 FEE 435030 989 \N \N 6037753 2025-03-19 13:51:52.803 2025-03-19 13:51:52.803 18900 TIP 435030 7668 \N \N 6037759 2025-03-19 13:51:58.153 2025-03-19 13:51:58.153 300 FEE 435622 20616 \N \N 6037760 2025-03-19 13:51:58.153 2025-03-19 13:51:58.153 2700 TIP 435622 17535 \N \N 6037763 2025-03-19 13:52:09.827 2025-03-19 13:52:09.827 2100 FEE 435544 10849 \N \N 6037764 2025-03-19 13:52:09.827 2025-03-19 13:52:09.827 18900 TIP 435544 21279 \N \N 6037798 2025-03-19 13:52:15.937 2025-03-19 13:52:15.937 2100 FEE 435544 18494 \N \N 6037799 2025-03-19 13:52:15.937 2025-03-19 13:52:15.937 18900 TIP 435544 8498 \N \N 6037832 2025-03-19 13:52:43.395 2025-03-19 13:52:43.395 3300 FEE 435458 13348 \N \N 6037833 2025-03-19 13:52:43.395 2025-03-19 13:52:43.395 29700 TIP 435458 691 \N \N 6037849 2025-03-19 13:54:11.319 2025-03-19 13:54:11.319 1000 FEE 435628 5794 \N \N 6031369 2025-03-19 03:54:43.285 2025-03-19 03:54:43.285 1000 FEE 434915 13987 \N \N 6031381 2025-03-19 03:55:50.333 2025-03-19 03:55:50.333 125000 FEE 434918 9426 \N \N 6031385 2025-03-19 03:56:22.66 2025-03-19 03:56:22.66 1000 FEE 434919 20377 \N \N 6031386 2025-03-19 03:56:24.175 2025-03-19 03:56:24.175 1000 FEE 434902 1620 \N \N 6031387 2025-03-19 03:56:24.175 2025-03-19 03:56:24.175 9000 TIP 434902 15239 \N \N 6031398 2025-03-19 03:58:04.249 2025-03-19 03:58:04.249 4000 FEE 434921 21044 \N \N 6031399 2025-03-19 03:58:04.249 2025-03-19 03:58:04.249 36000 TIP 434921 19668 \N \N 6031424 2025-03-19 03:59:53.801 2025-03-19 03:59:53.801 1100 FEE 434916 21393 \N \N 6031425 2025-03-19 03:59:53.801 2025-03-19 03:59:53.801 9900 TIP 434916 5904 \N \N 6031432 2025-03-19 04:00:16.684 2025-03-19 04:00:16.684 2100 FEE 434754 1738 \N \N 6031433 2025-03-19 04:00:16.684 2025-03-19 04:00:16.684 18900 TIP 434754 4958 \N \N 6031438 2025-03-19 04:01:40.406 2025-03-19 04:01:40.406 2200 FEE 434902 9276 \N \N 6031439 2025-03-19 04:01:40.406 2025-03-19 04:01:40.406 19800 TIP 434902 672 \N \N 6031464 2025-03-19 04:05:34.329 2025-03-19 04:05:34.329 1100 FEE 434926 18930 \N \N 6031465 2025-03-19 04:05:34.329 2025-03-19 04:05:34.329 9900 TIP 434926 7674 \N \N 6031471 2025-03-19 04:06:51.598 2025-03-19 04:06:51.598 10000 FEE 434931 8173 \N \N 6031472 2025-03-19 04:06:59.792 2025-03-19 04:06:59.792 200 FEE 434931 18178 \N \N 6031473 2025-03-19 04:06:59.792 2025-03-19 04:06:59.792 1800 TIP 434931 4177 \N \N 6031496 2025-03-19 04:09:45.217 2025-03-19 04:09:45.217 9000 FEE 434927 21555 \N \N 6031497 2025-03-19 04:09:45.217 2025-03-19 04:09:45.217 81000 TIP 434927 776 \N \N 6031503 2025-03-19 04:11:51.236 2025-03-19 04:11:51.236 10000 FEE 433123 4973 \N \N 6031504 2025-03-19 04:11:51.236 2025-03-19 04:11:51.236 90000 TIP 433123 10280 \N \N 6031518 2025-03-19 04:12:22.871 2025-03-19 04:12:22.871 900 FEE 434619 12946 \N \N 6031519 2025-03-19 04:12:22.871 2025-03-19 04:12:22.871 8100 TIP 434619 17218 \N \N 6031534 2025-03-19 04:13:06.941 2025-03-19 04:13:06.941 20000 FEE 432920 16543 \N \N 6031535 2025-03-19 04:13:06.941 2025-03-19 04:13:06.941 180000 TIP 432920 7827 \N \N 6031542 2025-03-19 04:13:14.557 2025-03-19 04:13:14.557 10000 FEE 434939 21532 \N \N 6031543 2025-03-19 04:13:34.544 2025-03-19 04:13:34.544 1000 FEE 434940 708 \N \N 6031545 2025-03-19 04:13:50.954 2025-03-19 04:13:50.954 100 FEE 434641 1472 \N \N 6031546 2025-03-19 04:13:50.954 2025-03-19 04:13:50.954 900 TIP 434641 10536 \N \N 6031560 2025-03-19 04:14:49.838 2025-03-19 04:14:49.838 10000 FEE 434941 21131 \N \N 6031572 2025-03-19 04:15:21.003 2025-03-19 04:15:21.003 900 FEE 434703 5306 \N \N 6031573 2025-03-19 04:15:21.003 2025-03-19 04:15:21.003 8100 TIP 434703 7389 \N \N 6031579 2025-03-19 04:16:18.14 2025-03-19 04:16:18.14 100000 DONT_LIKE_THIS 434785 19673 \N \N 6031584 2025-03-19 04:16:35.612 2025-03-19 04:16:35.612 9000 FEE 434791 14705 \N \N 6031585 2025-03-19 04:16:35.612 2025-03-19 04:16:35.612 81000 TIP 434791 11523 \N \N 6031586 2025-03-19 04:16:40.617 2025-03-19 04:16:40.617 3000 FEE 434790 21620 \N \N 6031587 2025-03-19 04:16:40.617 2025-03-19 04:16:40.617 27000 TIP 434790 20562 \N \N 6031599 2025-03-19 04:19:24.566 2025-03-19 04:19:24.566 2100 FEE 434703 2757 \N \N 6031600 2025-03-19 04:19:24.566 2025-03-19 04:19:24.566 18900 TIP 434703 9529 \N \N 6031608 2025-03-19 04:22:06.407 2025-03-19 04:22:06.407 1000 FEE 434784 12102 \N \N 6031609 2025-03-19 04:22:06.407 2025-03-19 04:22:06.407 9000 TIP 434784 976 \N \N 6031642 2025-03-19 04:28:46.322 2025-03-19 04:28:46.322 1000 FEE 434952 7583 \N \N 6031665 2025-03-19 04:33:28.312 2025-03-19 04:33:28.312 2100 FEE 434665 21064 \N \N 6031666 2025-03-19 04:33:28.312 2025-03-19 04:33:28.312 18900 TIP 434665 16354 \N \N 6031710 2025-03-19 04:36:18.344 2025-03-19 04:36:18.344 10000 FEE 434962 1060 \N \N 6031720 2025-03-19 04:38:06.723 2025-03-19 04:38:06.723 1000 FEE 434964 5578 \N \N 6031727 2025-03-19 04:38:39.314 2025-03-19 04:38:39.314 0 FEE 38225 5036 \N \N 6031730 2025-03-19 04:39:33.018 2025-03-19 04:39:33.018 2100 FEE 434952 19673 \N \N 6031731 2025-03-19 04:39:33.018 2025-03-19 04:39:33.018 18900 TIP 434952 3409 \N \N 6031755 2025-03-19 04:39:50.286 2025-03-19 04:39:50.286 2100 FEE 434879 17365 \N \N 6031756 2025-03-19 04:39:50.286 2025-03-19 04:39:50.286 18900 TIP 434879 3745 \N \N 6031769 2025-03-19 04:40:02.26 2025-03-19 04:40:02.26 2100 FEE 434804 1823 \N \N 6031770 2025-03-19 04:40:02.26 2025-03-19 04:40:02.26 18900 TIP 434804 4345 \N \N 6031784 2025-03-19 04:41:02.867 2025-03-19 04:41:02.867 2100 FEE 434637 8954 \N \N 6031785 2025-03-19 04:41:02.867 2025-03-19 04:41:02.867 18900 TIP 434637 14941 \N \N 6031787 2025-03-19 04:42:09.713 2025-03-19 04:42:09.713 4000 FEE 434969 951 \N \N 6031788 2025-03-19 04:42:09.713 2025-03-19 04:42:09.713 36000 TIP 434969 20636 \N \N 6031800 2025-03-19 04:43:36.387 2025-03-19 04:43:36.387 2100 FEE 434628 21012 \N \N 6031801 2025-03-19 04:43:36.387 2025-03-19 04:43:36.387 18900 TIP 434628 659 \N \N 6031806 2025-03-19 04:43:50.861 2025-03-19 04:43:50.861 1000 FEE 434962 9655 \N \N 6031807 2025-03-19 04:43:50.861 2025-03-19 04:43:50.861 9000 TIP 434962 18526 \N \N 6031814 2025-03-19 04:43:52.205 2025-03-19 04:43:52.205 1000 FEE 434962 17976 \N \N 6031815 2025-03-19 04:43:52.205 2025-03-19 04:43:52.205 9000 TIP 434962 2330 \N \N 6031841 2025-03-19 04:45:12.773 2025-03-19 04:45:12.773 1300 FEE 434903 638 \N \N 6031842 2025-03-19 04:45:12.773 2025-03-19 04:45:12.773 11700 TIP 434903 11714 \N \N 6031878 2025-03-19 04:49:54.355 2025-03-19 04:49:54.355 2100 FEE 434278 1401 \N \N 6031879 2025-03-19 04:49:54.355 2025-03-19 04:49:54.355 18900 TIP 434278 1039 \N \N 6031880 2025-03-19 04:50:00.154 2025-03-19 04:50:00.154 1000 FEE 434979 21418 \N \N 6031911 2025-03-19 04:53:46.447 2025-03-19 04:53:46.447 1100 FEE 434627 826 \N \N 6031912 2025-03-19 04:53:46.447 2025-03-19 04:53:46.447 9900 TIP 434627 11776 \N \N 6031937 2025-03-19 04:58:14.55 2025-03-19 04:58:14.55 1000 FEE 434985 4238 \N \N 6031952 2025-03-19 04:59:24.355 2025-03-19 04:59:24.355 100 FEE 434440 20993 \N \N 6031953 2025-03-19 04:59:24.355 2025-03-19 04:59:24.355 900 TIP 434440 2741 \N \N 6031954 2025-03-19 04:59:24.705 2025-03-19 04:59:24.705 100 FEE 434440 15243 \N \N 6031955 2025-03-19 04:59:24.705 2025-03-19 04:59:24.705 900 TIP 434440 14385 \N \N 6031959 2025-03-19 05:00:07.561 2025-03-19 05:00:07.561 1000 FEE 434989 1469 \N \N 6031981 2025-03-19 05:01:05.034 2025-03-19 05:01:05.034 8300 FEE 434791 12609 \N \N 6031982 2025-03-19 05:01:05.034 2025-03-19 05:01:05.034 74700 TIP 434791 15544 \N \N 6032022 2025-03-19 05:04:16.085 2025-03-19 05:04:16.085 1000 FEE 434993 1751 \N \N 6032047 2025-03-19 05:09:06.331 2025-03-19 05:09:06.331 10200 FEE 434617 2829 \N \N 6032048 2025-03-19 05:09:06.331 2025-03-19 05:09:06.331 91800 TIP 434617 21526 \N \N 6032052 2025-03-19 05:09:18.581 2025-03-19 05:09:18.581 1600 FEE 434997 10007 \N \N 6032053 2025-03-19 05:09:18.581 2025-03-19 05:09:18.581 14400 TIP 434997 11714 \N \N 6032069 2025-03-19 05:10:58.174 2025-03-19 05:10:58.174 2500 FEE 434864 4984 \N \N 6032070 2025-03-19 05:10:58.174 2025-03-19 05:10:58.174 22500 TIP 434864 1012 \N \N 6032071 2025-03-19 05:11:03.379 2025-03-19 05:11:03.379 1000 FEE 435004 12609 \N \N 6032079 2025-03-19 05:11:29.185 2025-03-19 05:11:29.185 10000 FEE 435007 10094 \N \N 6032082 2025-03-19 05:11:54.622 2025-03-19 05:11:54.622 27000 FEE 433865 14122 \N \N 6032083 2025-03-19 05:11:54.622 2025-03-19 05:11:54.622 243000 TIP 433865 9242 \N \N 6032096 2025-03-19 05:14:16.785 2025-03-19 05:14:16.785 1100 FEE 434615 4250 \N \N 6032097 2025-03-19 05:14:16.785 2025-03-19 05:14:16.785 9900 TIP 434615 21421 \N \N 6032100 2025-03-19 05:14:17.801 2025-03-19 05:14:17.801 8300 FEE 434994 1624 \N \N 6032101 2025-03-19 05:14:17.801 2025-03-19 05:14:17.801 74700 TIP 434994 4819 \N \N 6032106 2025-03-19 05:15:57.188 2025-03-19 05:15:57.188 1000 FEE 435013 12169 \N \N 6032110 2025-03-19 05:17:08.311 2025-03-19 05:17:08.311 8300 FEE 434556 21631 \N \N 6032111 2025-03-19 05:17:08.311 2025-03-19 05:17:08.311 74700 TIP 434556 16809 \N \N 6032125 2025-03-19 05:20:24.199 2025-03-19 05:20:24.199 100000 FEE 435017 1584 \N \N 6032136 2025-03-19 05:22:10.589 2025-03-19 05:22:10.589 3000 FEE 434958 20439 \N \N 6032137 2025-03-19 05:22:10.589 2025-03-19 05:22:10.589 27000 TIP 434958 1970 \N \N 6032138 2025-03-19 05:22:11.03 2025-03-19 05:22:11.03 300 FEE 434846 16542 \N \N 6037241 2025-03-19 13:07:24.358 2025-03-19 13:07:24.358 1000 FEE 435580 17411 \N \N 6037265 2025-03-19 13:10:11.084 2025-03-19 13:10:11.084 1000 FEE 434878 7847 \N \N 6037266 2025-03-19 13:10:11.084 2025-03-19 13:10:11.084 9000 TIP 434878 623 \N \N 6037273 2025-03-19 13:11:08.252 2025-03-19 13:11:08.252 100 FEE 435575 18409 \N \N 6037274 2025-03-19 13:11:08.252 2025-03-19 13:11:08.252 900 TIP 435575 18351 \N \N 6037326 2025-03-19 13:14:34.787 2025-03-19 13:14:34.787 4000 FEE 435457 629 \N \N 6037327 2025-03-19 13:14:34.787 2025-03-19 13:14:34.787 36000 TIP 435457 12291 \N \N 6037339 2025-03-19 13:15:20.502 2025-03-19 13:15:20.502 1000 FEE 435589 660 \N \N 6038767 2025-03-19 15:55:55.291 2025-03-19 15:55:55.291 70000 FEE 435721 21482 \N \N 6038781 2025-03-19 15:58:38.627 2025-03-19 15:58:38.627 27000 FEE 435657 20636 \N \N 6038782 2025-03-19 15:58:38.627 2025-03-19 15:58:38.627 243000 TIP 435657 1761 \N \N 6038785 2025-03-19 15:58:47.989 2025-03-19 15:58:47.989 1100 FEE 435475 1620 \N \N 6038786 2025-03-19 15:58:47.989 2025-03-19 15:58:47.989 9900 TIP 435475 4378 \N \N 6038792 2025-03-19 16:01:37.218 2025-03-19 16:01:37.218 100 FEE 435610 19813 \N \N 6038793 2025-03-19 16:01:37.218 2025-03-19 16:01:37.218 900 TIP 435610 704 \N \N 6038845 2025-03-19 16:15:23.715 2025-03-19 16:15:23.715 7700 FEE 434263 1718 \N \N 6038846 2025-03-19 16:15:23.715 2025-03-19 16:15:23.715 69300 TIP 434263 18231 \N \N 6038847 2025-03-19 16:15:25.227 2025-03-19 16:15:25.227 7700 FEE 434263 9367 \N \N 6038848 2025-03-19 16:15:25.227 2025-03-19 16:15:25.227 69300 TIP 434263 7818 \N \N 6038849 2025-03-19 16:15:25.345 2025-03-19 16:15:25.345 7700 FEE 434263 14280 \N \N 6038850 2025-03-19 16:15:25.345 2025-03-19 16:15:25.345 69300 TIP 434263 20706 \N \N 6038851 2025-03-19 16:15:25.474 2025-03-19 16:15:25.474 7700 FEE 434263 9183 \N \N 6038852 2025-03-19 16:15:25.474 2025-03-19 16:15:25.474 69300 TIP 434263 17209 \N \N 6038859 2025-03-19 16:15:25.984 2025-03-19 16:15:25.984 7700 FEE 434263 7899 \N \N 6038860 2025-03-19 16:15:25.984 2025-03-19 16:15:25.984 69300 TIP 434263 11866 \N \N 6038861 2025-03-19 16:15:26.324 2025-03-19 16:15:26.324 15400 FEE 434263 21019 \N \N 6038862 2025-03-19 16:15:26.324 2025-03-19 16:15:26.324 138600 TIP 434263 13517 \N \N 6038898 2025-03-19 16:26:05.147 2025-03-19 16:26:05.147 0 FEE 435742 20157 \N \N 6037357 2025-03-19 13:16:24.085 2025-03-19 13:16:24.085 8300 FEE 435551 1010 \N \N 6037358 2025-03-19 13:16:24.085 2025-03-19 13:16:24.085 74700 TIP 435551 18533 \N \N 6037385 2025-03-19 13:19:59.413 2025-03-19 13:19:59.413 8300 FEE 435596 4570 \N \N 6037386 2025-03-19 13:19:59.413 2025-03-19 13:19:59.413 74700 TIP 435596 18313 \N \N 6037394 2025-03-19 13:20:17.251 2025-03-19 13:20:17.251 8300 FEE 435457 17541 \N \N 6037395 2025-03-19 13:20:17.251 2025-03-19 13:20:17.251 74700 TIP 435457 19263 \N \N 6037409 2025-03-19 13:21:11.179 2025-03-19 13:21:11.179 10000 FEE 435564 647 \N \N 6037410 2025-03-19 13:21:11.179 2025-03-19 13:21:11.179 90000 TIP 435564 21279 \N \N 6037416 2025-03-19 13:21:38.232 2025-03-19 13:21:38.232 3000 FEE 435589 17696 \N \N 6037417 2025-03-19 13:21:38.232 2025-03-19 13:21:38.232 27000 TIP 435589 8985 \N \N 6037418 2025-03-19 13:21:44.487 2025-03-19 13:21:44.487 100 FEE 435578 1236 \N \N 6037419 2025-03-19 13:21:44.487 2025-03-19 13:21:44.487 900 TIP 435578 16660 \N \N 6037428 2025-03-19 13:21:46.195 2025-03-19 13:21:46.195 100 FEE 435578 12951 \N \N 6037429 2025-03-19 13:21:46.195 2025-03-19 13:21:46.195 900 TIP 435578 959 \N \N 6037447 2025-03-19 13:22:57.351 2025-03-19 13:22:57.351 1000 FEE 435178 4776 \N \N 6037448 2025-03-19 13:22:57.351 2025-03-19 13:22:57.351 9000 TIP 435178 1438 \N \N 6037455 2025-03-19 13:25:51.939 2025-03-19 13:25:51.939 3000 FEE 435566 11298 \N \N 6037456 2025-03-19 13:25:51.939 2025-03-19 13:25:51.939 27000 TIP 435566 1426 \N \N 6037474 2025-03-19 13:26:06.003 2025-03-19 13:26:06.003 100 FEE 435582 19906 \N \N 6037475 2025-03-19 13:26:06.003 2025-03-19 13:26:06.003 900 TIP 435582 981 \N \N 6037486 2025-03-19 13:27:20.093 2025-03-19 13:27:20.093 400 FEE 435586 10013 \N \N 6037487 2025-03-19 13:27:20.093 2025-03-19 13:27:20.093 3600 TIP 435586 18269 \N \N 6037498 2025-03-19 13:31:14.835 2025-03-19 13:31:14.835 100000 FEE 435610 18423 \N \N 6037499 2025-03-19 13:31:27.125 2025-03-19 13:31:27.125 1000 FEE 435599 1823 \N \N 6037500 2025-03-19 13:31:27.125 2025-03-19 13:31:27.125 9000 TIP 435599 1825 \N \N 6037506 2025-03-19 13:32:57.277 2025-03-19 13:32:57.277 1000 FEE 435328 1505 \N \N 6037507 2025-03-19 13:32:57.277 2025-03-19 13:32:57.277 9000 TIP 435328 20973 \N \N 6037519 2025-03-19 13:33:21.421 2025-03-19 13:33:21.421 1000 FEE 435030 21734 \N \N 6037520 2025-03-19 13:33:21.421 2025-03-19 13:33:21.421 9000 TIP 435030 981 \N \N 6037525 2025-03-19 13:35:27.189 2025-03-19 13:35:27.189 0 FEE 435610 1549 \N \N 6037549 2025-03-19 13:40:20.314 2025-03-19 13:40:20.314 10000 FEE 435328 1490 \N \N 6037550 2025-03-19 13:40:20.314 2025-03-19 13:40:20.314 90000 TIP 435328 1424 \N \N 6037557 2025-03-19 13:41:38.444 2025-03-19 13:41:38.444 1000 FEE 435616 8059 \N \N 6037563 2025-03-19 13:42:54.05 2025-03-19 13:42:54.05 1000 POLL 435495 13798 \N \N 6037565 2025-03-19 13:43:31.247 2025-03-19 13:43:31.247 1000 FEE 435328 10934 \N \N 6037566 2025-03-19 13:43:31.247 2025-03-19 13:43:31.247 9000 TIP 435328 16638 \N \N 6037588 2025-03-19 13:47:36.021 2025-03-19 13:47:36.021 2100 FEE 435551 21578 \N \N 6037589 2025-03-19 13:47:36.021 2025-03-19 13:47:36.021 18900 TIP 435551 656 \N \N 6031481 2025-03-19 04:09:24.222 2025-03-19 04:09:24.222 100 FEE 434740 11516 \N \N 6031482 2025-03-19 04:09:24.222 2025-03-19 04:09:24.222 900 TIP 434740 13174 \N \N 6031554 2025-03-19 04:14:34.213 2025-03-19 04:14:34.213 100 FEE 434665 5527 \N \N 6031555 2025-03-19 04:14:34.213 2025-03-19 04:14:34.213 900 TIP 434665 9109 \N \N 6031563 2025-03-19 04:14:59.71 2025-03-19 04:14:59.71 100 FEE 434695 18473 \N \N 6031564 2025-03-19 04:14:59.71 2025-03-19 04:14:59.71 900 TIP 434695 1044 \N \N 6031582 2025-03-19 04:16:34.656 2025-03-19 04:16:34.656 900 FEE 434791 19117 \N \N 6031583 2025-03-19 04:16:34.656 2025-03-19 04:16:34.656 8100 TIP 434791 19992 \N \N 6031590 2025-03-19 04:16:56.792 2025-03-19 04:16:56.792 900 FEE 434838 660 \N \N 6031591 2025-03-19 04:16:56.792 2025-03-19 04:16:56.792 8100 TIP 434838 15488 \N \N 6031630 2025-03-19 04:26:44.489 2025-03-19 04:26:44.489 1000 FEE 434950 1480 \N \N 6031638 2025-03-19 04:27:23.167 2025-03-19 04:27:23.167 27000 FEE 434440 4819 \N \N 6031639 2025-03-19 04:27:23.167 2025-03-19 04:27:23.167 243000 TIP 434440 19806 \N \N 6031683 2025-03-19 04:34:27.731 2025-03-19 04:34:27.731 300 FEE 426444 10519 \N \N 6031684 2025-03-19 04:34:27.731 2025-03-19 04:34:27.731 2700 TIP 426444 15060 \N \N 6031685 2025-03-19 04:34:33.325 2025-03-19 04:34:33.325 300 FEE 422673 11395 \N \N 6031686 2025-03-19 04:34:33.325 2025-03-19 04:34:33.325 2700 TIP 422673 5752 \N \N 6031687 2025-03-19 04:34:35.07 2025-03-19 04:34:35.07 100 FEE 330735 4173 \N \N 6031688 2025-03-19 04:34:35.07 2025-03-19 04:34:35.07 900 TIP 330735 697 \N \N 6031693 2025-03-19 04:34:45.799 2025-03-19 04:34:45.799 1000 FEE 434959 3400 \N \N 6031699 2025-03-19 04:35:23.582 2025-03-19 04:35:23.582 2100 FEE 434922 928 \N \N 6031700 2025-03-19 04:35:23.582 2025-03-19 04:35:23.582 18900 TIP 434922 16939 \N \N 6031703 2025-03-19 04:35:31.1 2025-03-19 04:35:31.1 2100 FEE 434888 7682 \N \N 6031704 2025-03-19 04:35:31.1 2025-03-19 04:35:31.1 18900 TIP 434888 17494 \N \N 6031719 2025-03-19 04:37:52.494 2025-03-19 04:37:52.494 0 FEE 434963 4238 \N \N 6031734 2025-03-19 04:39:35.315 2025-03-19 04:39:35.315 0 FEE 434965 2735 \N \N 6031737 2025-03-19 04:39:38.759 2025-03-19 04:39:38.759 2100 FEE 434842 14278 \N \N 6031738 2025-03-19 04:39:38.759 2025-03-19 04:39:38.759 18900 TIP 434842 21683 \N \N 6031743 2025-03-19 04:39:42.587 2025-03-19 04:39:42.587 2100 FEE 434801 6268 \N \N 6031744 2025-03-19 04:39:42.587 2025-03-19 04:39:42.587 18900 TIP 434801 7376 \N \N 6031747 2025-03-19 04:39:44.557 2025-03-19 04:39:44.557 2100 FEE 434820 11275 \N \N 6031748 2025-03-19 04:39:44.557 2025-03-19 04:39:44.557 18900 TIP 434820 18271 \N \N 6031753 2025-03-19 04:39:48.627 2025-03-19 04:39:48.627 2100 FEE 434866 17953 \N \N 6031754 2025-03-19 04:39:48.627 2025-03-19 04:39:48.627 18900 TIP 434866 18423 \N \N 6031760 2025-03-19 04:39:53.991 2025-03-19 04:39:53.991 2100 FEE 434921 19531 \N \N 6031761 2025-03-19 04:39:53.991 2025-03-19 04:39:53.991 18900 TIP 434921 725 \N \N 6031773 2025-03-19 04:40:03.888 2025-03-19 04:40:03.888 2100 FEE 434829 886 \N \N 6031774 2025-03-19 04:40:03.888 2025-03-19 04:40:03.888 18900 TIP 434829 2056 \N \N 6031778 2025-03-19 04:40:15.435 2025-03-19 04:40:15.435 5000 FEE 434805 16442 \N \N 6031779 2025-03-19 04:40:15.435 2025-03-19 04:40:15.435 45000 TIP 434805 8505 \N \N 6031818 2025-03-19 04:43:53.621 2025-03-19 04:43:53.621 2300 FEE 434920 9655 \N \N 6031819 2025-03-19 04:43:53.621 2025-03-19 04:43:53.621 20700 TIP 434920 10469 \N \N 6031830 2025-03-19 04:44:32.485 2025-03-19 04:44:32.485 3000 FEE 434951 822 \N \N 6031831 2025-03-19 04:44:32.485 2025-03-19 04:44:32.485 27000 TIP 434951 8287 \N \N 6031833 2025-03-19 04:44:52.8 2025-03-19 04:44:52.8 2100 FEE 434622 694 \N \N 6031834 2025-03-19 04:44:52.8 2025-03-19 04:44:52.8 18900 TIP 434622 21408 \N \N 6031866 2025-03-19 04:48:28.003 2025-03-19 04:48:28.003 1700 FEE 392486 18005 \N \N 6031867 2025-03-19 04:48:28.003 2025-03-19 04:48:28.003 15300 TIP 392486 713 \N \N 6031883 2025-03-19 04:50:37.081 2025-03-19 04:50:37.081 1000 FEE 434981 21424 \N \N 6031895 2025-03-19 04:51:56.269 2025-03-19 04:51:56.269 100 FEE 434950 1802 \N \N 6031896 2025-03-19 04:51:56.269 2025-03-19 04:51:56.269 900 TIP 434950 9159 \N \N 6031664 2025-03-19 04:33:26.6 2025-03-19 04:33:26.6 18900 TIP 434627 2514 \N \N 6031678 2025-03-19 04:33:56.779 2025-03-19 04:33:56.779 2100 FEE 434498 17106 \N \N 6031679 2025-03-19 04:33:56.779 2025-03-19 04:33:56.779 18900 TIP 434498 899 \N \N 6031680 2025-03-19 04:34:06.347 2025-03-19 04:34:06.347 2100 FEE 434396 17984 \N \N 6031681 2025-03-19 04:34:06.347 2025-03-19 04:34:06.347 18900 TIP 434396 797 \N \N 6031689 2025-03-19 04:34:36.93 2025-03-19 04:34:36.93 2100 FEE 434934 4502 \N \N 6031690 2025-03-19 04:34:36.93 2025-03-19 04:34:36.93 18900 TIP 434934 14818 \N \N 6031726 2025-03-19 04:38:33.493 2025-03-19 04:38:33.493 1000 FEE 434966 19796 \N \N 6031729 2025-03-19 04:39:28.657 2025-03-19 04:39:28.657 1000 FEE 434967 15536 \N \N 6031739 2025-03-19 04:39:39.458 2025-03-19 04:39:39.458 2100 FEE 434845 20840 \N \N 6031740 2025-03-19 04:39:39.458 2025-03-19 04:39:39.458 18900 TIP 434845 11590 \N \N 6031741 2025-03-19 04:39:40.699 2025-03-19 04:39:40.699 2100 FEE 434806 13038 \N \N 6031742 2025-03-19 04:39:40.699 2025-03-19 04:39:40.699 18900 TIP 434806 18101 \N \N 6031745 2025-03-19 04:39:43.088 2025-03-19 04:39:43.088 2100 FEE 434824 17050 \N \N 6031746 2025-03-19 04:39:43.088 2025-03-19 04:39:43.088 18900 TIP 434824 634 \N \N 6031757 2025-03-19 04:39:52.659 2025-03-19 04:39:52.659 1000 FEE 434968 13843 \N \N 6031808 2025-03-19 04:43:51.283 2025-03-19 04:43:51.283 1000 FEE 434962 21401 \N \N 6031809 2025-03-19 04:43:51.283 2025-03-19 04:43:51.283 9000 TIP 434962 2952 \N \N 6031820 2025-03-19 04:43:54.239 2025-03-19 04:43:54.239 2300 FEE 434920 4650 \N \N 6031821 2025-03-19 04:43:54.239 2025-03-19 04:43:54.239 20700 TIP 434920 2724 \N \N 6031826 2025-03-19 04:44:03.281 2025-03-19 04:44:03.281 1000 FEE 434971 16956 \N \N 6031828 2025-03-19 04:44:27.521 2025-03-19 04:44:27.521 3000 FEE 434965 18473 \N \N 6031829 2025-03-19 04:44:27.521 2025-03-19 04:44:27.521 27000 TIP 434965 17741 \N \N 6031876 2025-03-19 04:49:38.603 2025-03-19 04:49:38.603 2100 FEE 434440 11328 \N \N 6031877 2025-03-19 04:49:38.603 2025-03-19 04:49:38.603 18900 TIP 434440 11240 \N \N 6031886 2025-03-19 04:50:49.355 2025-03-19 04:50:49.355 2100 FEE 434604 17162 \N \N 6031887 2025-03-19 04:50:49.355 2025-03-19 04:50:49.355 18900 TIP 434604 1733 \N \N 6031893 2025-03-19 04:51:19.305 2025-03-19 04:51:19.305 2100 FEE 433828 2224 \N \N 6031894 2025-03-19 04:51:19.305 2025-03-19 04:51:19.305 18900 TIP 433828 16354 \N \N 6031915 2025-03-19 04:53:46.714 2025-03-19 04:53:46.714 1100 FEE 434627 12356 \N \N 6031916 2025-03-19 04:53:46.714 2025-03-19 04:53:46.714 9900 TIP 434627 10013 \N \N 6031922 2025-03-19 04:54:22.154 2025-03-19 04:54:22.154 2100 FEE 434969 19126 \N \N 6031923 2025-03-19 04:54:22.154 2025-03-19 04:54:22.154 18900 TIP 434969 15544 \N \N 6031924 2025-03-19 04:54:30.74 2025-03-19 04:54:30.74 1100 FEE 433828 675 \N \N 6031925 2025-03-19 04:54:30.74 2025-03-19 04:54:30.74 9900 TIP 433828 21022 \N \N 6031967 2025-03-19 05:01:04.117 2025-03-19 05:01:04.117 8300 FEE 434791 6653 \N \N 6031968 2025-03-19 05:01:04.117 2025-03-19 05:01:04.117 74700 TIP 434791 12102 \N \N 6031991 2025-03-19 05:01:08.184 2025-03-19 05:01:08.184 8300 FEE 434791 2528 \N \N 6031992 2025-03-19 05:01:08.184 2025-03-19 05:01:08.184 74700 TIP 434791 19663 \N \N 6032005 2025-03-19 05:01:45.757 2025-03-19 05:01:45.757 100 FEE 434952 1673 \N \N 6032006 2025-03-19 05:01:45.757 2025-03-19 05:01:45.757 900 TIP 434952 18274 \N \N 6032025 2025-03-19 05:05:37.066 2025-03-19 05:05:37.066 2100 FEE 434791 9863 \N \N 6032026 2025-03-19 05:05:37.066 2025-03-19 05:05:37.066 18900 TIP 434791 2543 \N \N 6032036 2025-03-19 05:06:25.809 2025-03-19 05:06:25.809 2100 FEE 434933 17226 \N \N 6032037 2025-03-19 05:06:25.809 2025-03-19 05:06:25.809 18900 TIP 434933 20963 \N \N 6031805 2025-03-19 04:43:48.843 2025-03-19 04:43:48.843 7200 TIP 434952 20768 \N \N 6031812 2025-03-19 04:43:51.895 2025-03-19 04:43:51.895 1000 FEE 434962 11298 \N \N 6031813 2025-03-19 04:43:51.895 2025-03-19 04:43:51.895 9000 TIP 434962 909 \N \N 6031839 2025-03-19 04:44:56.242 2025-03-19 04:44:56.242 1300 FEE 434613 5112 \N \N 6031840 2025-03-19 04:44:56.242 2025-03-19 04:44:56.242 11700 TIP 434613 654 \N \N 6031850 2025-03-19 04:45:20.028 2025-03-19 04:45:20.028 1300 FEE 434497 13921 \N \N 6031851 2025-03-19 04:45:20.028 2025-03-19 04:45:20.028 11700 TIP 434497 8459 \N \N 6031859 2025-03-19 04:46:37.84 2025-03-19 04:46:37.84 100000 FEE 434975 15526 \N \N 6031884 2025-03-19 04:50:47.708 2025-03-19 04:50:47.708 2100 FEE 434318 11992 \N \N 6031885 2025-03-19 04:50:47.708 2025-03-19 04:50:47.708 18900 TIP 434318 2056 \N \N 6031890 2025-03-19 04:50:53.275 2025-03-19 04:50:53.275 2100 FEE 434417 9 \N \N 6031891 2025-03-19 04:50:53.275 2025-03-19 04:50:53.275 18900 TIP 434417 11153 \N \N 6031900 2025-03-19 04:52:41.349 2025-03-19 04:52:41.349 2100 FEE 434975 1245 \N \N 6031901 2025-03-19 04:52:41.349 2025-03-19 04:52:41.349 18900 TIP 434975 16424 \N \N 6031902 2025-03-19 04:52:45.856 2025-03-19 04:52:45.856 3200 FEE 434978 18265 \N \N 6031903 2025-03-19 04:52:45.856 2025-03-19 04:52:45.856 28800 TIP 434978 8326 \N \N 6031909 2025-03-19 04:53:45.995 2025-03-19 04:53:45.995 1100 FEE 434627 18743 \N \N 6031910 2025-03-19 04:53:45.995 2025-03-19 04:53:45.995 9900 TIP 434627 9537 \N \N 6031947 2025-03-19 04:59:22.415 2025-03-19 04:59:22.415 0 FEE 434986 2719 \N \N 6031983 2025-03-19 05:01:05.682 2025-03-19 05:01:05.682 8300 FEE 434791 6578 \N \N 6031984 2025-03-19 05:01:05.682 2025-03-19 05:01:05.682 74700 TIP 434791 12072 \N \N 6032007 2025-03-19 05:01:51.618 2025-03-19 05:01:51.618 8300 FEE 434665 20454 \N \N 6032008 2025-03-19 05:01:51.618 2025-03-19 05:01:51.618 74700 TIP 434665 20924 \N \N 6032021 2025-03-19 05:04:15.541 2025-03-19 05:04:15.541 100000 FEE 434992 16670 \N \N 6032027 2025-03-19 05:05:39.507 2025-03-19 05:05:39.507 2100 FEE 434920 21400 \N \N 6032028 2025-03-19 05:05:39.507 2025-03-19 05:05:39.507 18900 TIP 434920 11670 \N \N 6032038 2025-03-19 05:06:33.981 2025-03-19 05:06:33.981 1000 FEE 434995 8535 \N \N 6032039 2025-03-19 05:07:06.266 2025-03-19 05:07:06.266 1000 FEE 434996 12245 \N \N 6032046 2025-03-19 05:08:50.373 2025-03-19 05:08:50.373 1000 FEE 434999 1718 \N \N 6032050 2025-03-19 05:09:16.771 2025-03-19 05:09:16.771 1000 FEE 434617 5175 \N \N 6032051 2025-03-19 05:09:16.771 2025-03-19 05:09:16.771 9000 TIP 434617 20495 \N \N 6032066 2025-03-19 05:10:15.511 2025-03-19 05:10:15.511 1000 FEE 435003 759 \N \N 6032077 2025-03-19 05:11:21.538 2025-03-19 05:11:21.538 10000 FEE 434665 1483 \N \N 6032078 2025-03-19 05:11:21.538 2025-03-19 05:11:21.538 90000 TIP 434665 859 \N \N 6032088 2025-03-19 05:12:38.251 2025-03-19 05:12:38.251 1000 FEE 435006 2963 \N \N 6032089 2025-03-19 05:12:38.251 2025-03-19 05:12:38.251 9000 TIP 435006 19403 \N \N 6032094 2025-03-19 05:14:16.683 2025-03-19 05:14:16.683 1100 FEE 434615 2583 \N \N 6032095 2025-03-19 05:14:16.683 2025-03-19 05:14:16.683 9900 TIP 434615 17696 \N \N 6032118 2025-03-19 05:17:28.067 2025-03-19 05:17:28.067 8300 FEE 434784 876 \N \N 6032119 2025-03-19 05:17:28.067 2025-03-19 05:17:28.067 74700 TIP 434784 15526 \N \N 6032144 2025-03-19 05:22:21.893 2025-03-19 05:22:21.893 3200 FEE 435012 2367 \N \N 6032145 2025-03-19 05:22:21.893 2025-03-19 05:22:21.893 28800 TIP 435012 14472 \N \N 6032165 2025-03-19 05:25:33.666 2025-03-19 05:25:33.666 15000 FEE 434962 21281 \N \N 6032166 2025-03-19 05:25:33.666 2025-03-19 05:25:33.666 135000 TIP 434962 15703 \N \N 6032178 2025-03-19 05:27:12.427 2025-03-19 05:27:12.427 1000 FEE 435028 19463 \N \N 6032180 2025-03-19 05:27:43.118 2025-03-19 05:27:43.118 0 FEE 435017 9992 \N \N 6032202 2025-03-19 05:29:21.73 2025-03-19 05:29:21.73 0 FEE 435029 12976 \N \N 6032206 2025-03-19 05:29:34.457 2025-03-19 05:29:34.457 100 FEE 434975 6393 \N \N 6032207 2025-03-19 05:29:34.457 2025-03-19 05:29:34.457 900 TIP 434975 11609 \N \N 6032248 2025-03-19 05:32:09.836 2025-03-19 05:32:09.836 300 FEE 435028 940 \N \N 6032249 2025-03-19 05:32:09.836 2025-03-19 05:32:09.836 2700 TIP 435028 15536 \N \N 6032271 2025-03-19 05:34:52.417 2025-03-19 05:34:52.417 4000 FEE 435018 14651 \N \N 6032272 2025-03-19 05:34:52.417 2025-03-19 05:34:52.417 36000 TIP 435018 837 \N \N 6032278 2025-03-19 05:36:52.445 2025-03-19 05:36:52.445 1000 FEE 435039 20646 \N \N 6032283 2025-03-19 05:36:54.868 2025-03-19 05:36:54.868 2700 FEE 434962 11038 \N \N 6032284 2025-03-19 05:36:54.868 2025-03-19 05:36:54.868 24300 TIP 434962 20778 \N \N 6037363 2025-03-19 13:16:30.7 2025-03-19 13:16:30.7 2500 FEE 435460 17592 \N \N 6037364 2025-03-19 13:16:30.7 2025-03-19 13:16:30.7 22500 TIP 435460 1352 \N \N 6037390 2025-03-19 13:20:14.723 2025-03-19 13:20:14.723 8300 FEE 435457 12222 \N \N 6037391 2025-03-19 13:20:14.723 2025-03-19 13:20:14.723 74700 TIP 435457 14705 \N \N 6037457 2025-03-19 13:25:55.703 2025-03-19 13:25:55.703 0 FEE 435605 4474 \N \N 6037483 2025-03-19 13:26:32.622 2025-03-19 13:26:32.622 1000 FEE 435606 20660 \N \N 6037502 2025-03-19 13:32:10.771 2025-03-19 13:32:10.771 500 FEE 435314 5377 \N \N 6037503 2025-03-19 13:32:10.771 2025-03-19 13:32:10.771 4500 TIP 435314 19796 \N \N 6037537 2025-03-19 13:38:20.346 2025-03-19 13:38:20.346 0 FEE 435614 11716 \N \N 6037556 2025-03-19 13:41:25.595 2025-03-19 13:41:25.595 0 FEE 298001 16149 \N \N 6037562 2025-03-19 13:42:32.634 2025-03-19 13:42:32.634 1000 FEE 435618 15662 \N \N 6037567 2025-03-19 13:43:35.966 2025-03-19 13:43:35.966 1000 FEE 435551 18265 \N \N 6037568 2025-03-19 13:43:35.966 2025-03-19 13:43:35.966 9000 TIP 435551 963 \N \N 6037575 2025-03-19 13:44:20.446 2025-03-19 13:44:20.446 0 FEE 435619 9418 \N \N 6037581 2025-03-19 13:47:01.867 2025-03-19 13:47:01.867 0 FEE 435619 1577 \N \N 6037595 2025-03-19 13:47:40.525 2025-03-19 13:47:40.525 2100 FEE 435328 3347 \N \N 6037596 2025-03-19 13:47:40.525 2025-03-19 13:47:40.525 18900 TIP 435328 9084 \N \N 6037605 2025-03-19 13:47:51.951 2025-03-19 13:47:51.951 100 FEE 435619 14452 \N \N 6037606 2025-03-19 13:47:51.951 2025-03-19 13:47:51.951 900 TIP 435619 18116 \N \N 6037630 2025-03-19 13:48:05.909 2025-03-19 13:48:05.909 2100 FEE 435154 644 \N \N 6037631 2025-03-19 13:48:05.909 2025-03-19 13:48:05.909 18900 TIP 435154 11220 \N \N 6037659 2025-03-19 13:49:21.434 2025-03-19 13:49:21.434 0 FEE 435619 6191 \N \N 6037682 2025-03-19 13:50:07.333 2025-03-19 13:50:07.333 2100 FEE 435046 2232 \N \N 6037683 2025-03-19 13:50:07.333 2025-03-19 13:50:07.333 18900 TIP 435046 9184 \N \N 6037694 2025-03-19 13:50:53.077 2025-03-19 13:50:53.077 2100 FEE 435007 1515 \N \N 6037695 2025-03-19 13:50:53.077 2025-03-19 13:50:53.077 18900 TIP 435007 2016 \N \N 6037720 2025-03-19 13:51:42.249 2025-03-19 13:51:42.249 2100 FEE 435327 14260 \N \N 6037721 2025-03-19 13:51:42.249 2025-03-19 13:51:42.249 18900 TIP 435327 974 \N \N 6037790 2025-03-19 13:52:15.099 2025-03-19 13:52:15.099 1000 FEE 435579 917 \N \N 6037791 2025-03-19 13:52:15.099 2025-03-19 13:52:15.099 9000 TIP 435579 628 \N \N 6037796 2025-03-19 13:52:15.58 2025-03-19 13:52:15.58 1000 FEE 435579 1741 \N \N 6037797 2025-03-19 13:52:15.58 2025-03-19 13:52:15.58 9000 TIP 435579 12507 \N \N 6037802 2025-03-19 13:52:16.344 2025-03-19 13:52:16.344 2100 FEE 435544 20294 \N \N 6037803 2025-03-19 13:52:16.344 2025-03-19 13:52:16.344 18900 TIP 435544 18068 \N \N 6037844 2025-03-19 13:53:15.01 2025-03-19 13:53:15.01 0 FEE 435619 5069 \N \N 6037885 2025-03-19 13:59:25.599 2025-03-19 13:59:25.599 1000 FEE 435632 1039 \N \N 6037891 2025-03-19 14:00:56.916 2025-03-19 14:00:56.916 1000 FEE 435635 7668 \N \N 6037906 2025-03-19 14:04:37.06 2025-03-19 14:04:37.06 4000 FEE 435620 2620 \N \N 6037907 2025-03-19 14:04:37.06 2025-03-19 14:04:37.06 36000 TIP 435620 17042 \N \N 6037921 2025-03-19 14:05:31.434 2025-03-19 14:05:31.434 1000 FEE 435638 5806 \N \N 6037971 2025-03-19 14:17:37.381 2025-03-19 14:17:37.381 2100 FEE 435465 20495 \N \N 6037972 2025-03-19 14:17:37.381 2025-03-19 14:17:37.381 18900 TIP 435465 1785 \N \N 6037987 2025-03-19 14:18:31.632 2025-03-19 14:18:31.632 500 FEE 435614 1836 \N \N 6037988 2025-03-19 14:18:31.632 2025-03-19 14:18:31.632 4500 TIP 435614 10102 \N \N 6037999 2025-03-19 14:22:29.987 2025-03-19 14:22:29.987 800 FEE 435457 21114 \N \N 6031868 2025-03-19 04:48:30.151 2025-03-19 04:48:30.151 2100 FEE 434890 20205 \N \N 6031869 2025-03-19 04:48:30.151 2025-03-19 04:48:30.151 18900 TIP 434890 4395 \N \N 6031933 2025-03-19 04:56:48.865 2025-03-19 04:56:48.865 1000 FEE 434983 9331 \N \N 6031935 2025-03-19 04:57:32.981 2025-03-19 04:57:32.981 1000 FEE 434984 17162 \N \N 6031975 2025-03-19 05:01:04.593 2025-03-19 05:01:04.593 8300 FEE 434791 18402 \N \N 6031976 2025-03-19 05:01:04.593 2025-03-19 05:01:04.593 74700 TIP 434791 21541 \N \N 6031989 2025-03-19 05:01:07.659 2025-03-19 05:01:07.659 8300 FEE 434791 21242 \N \N 6031990 2025-03-19 05:01:07.659 2025-03-19 05:01:07.659 74700 TIP 434791 11819 \N \N 6031998 2025-03-19 05:01:22.256 2025-03-19 05:01:22.256 8300 FEE 434505 10493 \N \N 6031999 2025-03-19 05:01:22.256 2025-03-19 05:01:22.256 74700 TIP 434505 21145 \N \N 6032009 2025-03-19 05:01:52.243 2025-03-19 05:01:52.243 8300 FEE 434665 964 \N \N 6032010 2025-03-19 05:01:52.243 2025-03-19 05:01:52.243 74700 TIP 434665 3417 \N \N 6032031 2025-03-19 05:05:43.564 2025-03-19 05:05:43.564 2100 FEE 434695 21514 \N \N 6032032 2025-03-19 05:05:43.564 2025-03-19 05:05:43.564 18900 TIP 434695 9107 \N \N 6032057 2025-03-19 05:09:45.703 2025-03-19 05:09:45.703 800 FEE 434990 9275 \N \N 6032058 2025-03-19 05:09:45.703 2025-03-19 05:09:45.703 7200 TIP 434990 15337 \N \N 6032085 2025-03-19 05:12:18.744 2025-03-19 05:12:18.744 1000 FEE 435008 5195 \N \N 6032102 2025-03-19 05:15:13.826 2025-03-19 05:15:13.826 1000 FEE 435011 20980 \N \N 6032115 2025-03-19 05:17:16.409 2025-03-19 05:17:16.409 100000 FEE 435014 1389 \N \N 6032130 2025-03-19 05:21:09.587 2025-03-19 05:21:09.587 97000 FEE 435019 8796 \N \N 6032147 2025-03-19 05:22:38.431 2025-03-19 05:22:38.431 1000 FEE 435022 2596 \N \N 6032149 2025-03-19 05:23:00.156 2025-03-19 05:23:00.156 1000 FEE 435021 1585 \N \N 6032150 2025-03-19 05:23:00.156 2025-03-19 05:23:00.156 9000 TIP 435021 20180 \N \N 6032175 2025-03-19 05:26:56.222 2025-03-19 05:26:56.222 2100 FEE 434812 1785 \N \N 6032176 2025-03-19 05:26:56.222 2025-03-19 05:26:56.222 18900 TIP 434812 673 \N \N 6032181 2025-03-19 05:28:09.528 2025-03-19 05:28:09.528 100000 FEE 435029 15488 \N \N 6032185 2025-03-19 05:28:48.365 2025-03-19 05:28:48.365 900 FEE 435026 16978 \N \N 6032186 2025-03-19 05:28:48.365 2025-03-19 05:28:48.365 8100 TIP 435026 2203 \N \N 6032200 2025-03-19 05:28:57.445 2025-03-19 05:28:57.445 1000 FEE 435032 4692 \N \N 6032214 2025-03-19 05:29:50.952 2025-03-19 05:29:50.952 2100 FEE 434947 3506 \N \N 6032215 2025-03-19 05:29:50.952 2025-03-19 05:29:50.952 18900 TIP 434947 20602 \N \N 6032219 2025-03-19 05:30:50.45 2025-03-19 05:30:50.45 1000 FEE 435034 15146 \N \N 6032244 2025-03-19 05:31:43.129 2025-03-19 05:31:43.129 2700 FEE 435019 18615 \N \N 6032245 2025-03-19 05:31:43.129 2025-03-19 05:31:43.129 24300 TIP 435019 21666 \N \N 6032281 2025-03-19 05:36:54.672 2025-03-19 05:36:54.672 2700 FEE 434962 21599 \N \N 6032282 2025-03-19 05:36:54.672 2025-03-19 05:36:54.672 24300 TIP 434962 2010 \N \N 6032291 2025-03-19 05:36:55.603 2025-03-19 05:36:55.603 2700 FEE 434962 11091 \N \N 6032292 2025-03-19 05:36:55.603 2025-03-19 05:36:55.603 24300 TIP 434962 4287 \N \N 6032321 2025-03-19 05:42:32.642 2025-03-19 05:42:32.642 2700 FEE 434791 21303 \N \N 6032322 2025-03-19 05:42:32.642 2025-03-19 05:42:32.642 24300 TIP 434791 21712 \N \N 6032325 2025-03-19 05:42:33.004 2025-03-19 05:42:33.004 2700 FEE 434791 21442 \N \N 6032326 2025-03-19 05:42:33.004 2025-03-19 05:42:33.004 24300 TIP 434791 3706 \N \N 6032329 2025-03-19 05:42:33.36 2025-03-19 05:42:33.36 2700 FEE 434791 19484 \N \N 6032330 2025-03-19 05:42:33.36 2025-03-19 05:42:33.36 24300 TIP 434791 16747 \N \N 6032345 2025-03-19 05:43:54.768 2025-03-19 05:43:54.768 1000 FEE 435045 2224 \N \N 6032349 2025-03-19 05:44:37.208 2025-03-19 05:44:37.208 420000 FEE 435046 17030 \N \N 6032355 2025-03-19 05:46:17.354 2025-03-19 05:46:17.354 3000 FEE 434978 1472 \N \N 6032356 2025-03-19 05:46:17.354 2025-03-19 05:46:17.354 27000 TIP 434978 20624 \N \N 6032364 2025-03-19 05:47:32.143 2025-03-19 05:47:32.143 1000 FEE 434913 14452 \N \N 6032365 2025-03-19 05:47:32.143 2025-03-19 05:47:32.143 9000 TIP 434913 5003 \N \N 6032370 2025-03-19 05:48:16.621 2025-03-19 05:48:16.621 100 FEE 435030 14370 \N \N 6032371 2025-03-19 05:48:16.621 2025-03-19 05:48:16.621 900 TIP 435030 681 \N \N 6032386 2025-03-19 05:49:13.401 2025-03-19 05:49:13.401 1000 FEE 435048 5377 \N \N 6032400 2025-03-19 05:50:26.61 2025-03-19 05:50:26.61 27000 FEE 434791 12291 \N \N 6032401 2025-03-19 05:50:26.61 2025-03-19 05:50:26.61 243000 TIP 434791 4602 \N \N 6032411 2025-03-19 05:50:56.873 2025-03-19 05:50:56.873 2100 FEE 434975 7558 \N \N 6032412 2025-03-19 05:50:56.873 2025-03-19 05:50:56.873 18900 TIP 434975 7395 \N \N 6032422 2025-03-19 05:52:00.285 2025-03-19 05:52:00.285 3300 FEE 434488 1740 \N \N 6032423 2025-03-19 05:52:00.285 2025-03-19 05:52:00.285 29700 TIP 434488 2711 \N \N 6032472 2025-03-19 05:55:22.7 2025-03-19 05:55:22.7 8300 FEE 435040 16653 \N \N 6032473 2025-03-19 05:55:22.7 2025-03-19 05:55:22.7 74700 TIP 435040 1006 \N \N 6032480 2025-03-19 05:55:55.775 2025-03-19 05:55:55.775 2100 FEE 434990 8713 \N \N 6032481 2025-03-19 05:55:55.775 2025-03-19 05:55:55.775 18900 TIP 434990 11164 \N \N 6032501 2025-03-19 05:56:24.236 2025-03-19 05:56:24.236 1000 FEE 434991 16717 \N \N 6032502 2025-03-19 05:56:24.236 2025-03-19 05:56:24.236 9000 TIP 434991 8287 \N \N 6032505 2025-03-19 05:57:12.927 2025-03-19 05:57:12.927 2100 FEE 435046 766 \N \N 6032506 2025-03-19 05:57:12.927 2025-03-19 05:57:12.927 18900 TIP 435046 17798 \N \N 6032519 2025-03-19 05:58:42.268 2025-03-19 05:58:42.268 10000 FEE 435065 1692 \N \N 6032522 2025-03-19 05:58:51.276 2025-03-19 05:58:51.276 900 FEE 435046 20306 \N \N 6032523 2025-03-19 05:58:51.276 2025-03-19 05:58:51.276 8100 TIP 435046 16754 \N \N 6032532 2025-03-19 05:59:46.637 2025-03-19 05:59:46.637 2100 FEE 434863 9242 \N \N 6032533 2025-03-19 05:59:46.637 2025-03-19 05:59:46.637 18900 TIP 434863 11153 \N \N 6032582 2025-03-19 06:02:53.127 2025-03-19 06:02:53.127 1000 FEE 435071 20504 \N \N 6032588 2025-03-19 06:03:31.605 2025-03-19 06:03:31.605 0 FEE 435066 20776 \N \N 6032606 2025-03-19 06:04:57.37 2025-03-19 06:04:57.37 2100 FEE 435067 13076 \N \N 6032607 2025-03-19 06:04:57.37 2025-03-19 06:04:57.37 18900 TIP 435067 18772 \N \N 6032615 2025-03-19 06:05:21.897 2025-03-19 06:05:21.897 100 FEE 434960 6687 \N \N 6032616 2025-03-19 06:05:21.897 2025-03-19 06:05:21.897 900 TIP 434960 985 \N \N 6032632 2025-03-19 06:06:03.013 2025-03-19 06:06:03.013 9000 FEE 435071 20137 \N \N 6032633 2025-03-19 06:06:03.013 2025-03-19 06:06:03.013 81000 TIP 435071 7869 \N \N 6032673 2025-03-19 06:16:45.71 2025-03-19 06:16:45.71 25600 FEE 435030 20681 \N \N 6032674 2025-03-19 06:16:45.71 2025-03-19 06:16:45.71 230400 TIP 435030 2514 \N \N 6032686 2025-03-19 06:20:02.5 2025-03-19 06:20:02.5 10000 FEE 435002 21339 \N \N 6032687 2025-03-19 06:20:02.5 2025-03-19 06:20:02.5 90000 TIP 435002 1213 \N \N 6032690 2025-03-19 06:20:46.165 2025-03-19 06:20:46.165 300 FEE 435002 3642 \N \N 6032691 2025-03-19 06:20:46.165 2025-03-19 06:20:46.165 2700 TIP 435002 21222 \N \N 6032694 2025-03-19 06:20:47.046 2025-03-19 06:20:47.046 300 FEE 435002 20603 \N \N 6032695 2025-03-19 06:20:47.046 2025-03-19 06:20:47.046 2700 TIP 435002 7818 \N \N 6032710 2025-03-19 06:21:14.146 2025-03-19 06:21:14.146 2600 FEE 434952 14258 \N \N 6032711 2025-03-19 06:21:14.146 2025-03-19 06:21:14.146 23400 TIP 434952 11942 \N \N 6032713 2025-03-19 06:21:36.294 2025-03-19 06:21:36.294 1000 FEE 435091 20687 \N \N 6032732 2025-03-19 06:25:52.752 2025-03-19 06:25:52.752 3200 FEE 435065 7766 \N \N 6032733 2025-03-19 06:25:52.752 2025-03-19 06:25:52.752 28800 TIP 435065 15052 \N \N 6032745 2025-03-19 06:28:21.957 2025-03-19 06:28:21.957 1000 FEE 435098 19812 \N \N 6032746 2025-03-19 06:28:26.881 2025-03-19 06:28:26.881 1000 FEE 435099 7983 \N \N 6032779 2025-03-19 06:34:56.61 2025-03-19 06:34:56.61 2100 FEE 435102 4079 \N \N 6032780 2025-03-19 06:34:56.61 2025-03-19 06:34:56.61 18900 TIP 435102 8841 \N \N 6032781 2025-03-19 06:34:58.349 2025-03-19 06:34:58.349 2100 FEE 435073 16847 \N \N 6032782 2025-03-19 06:34:58.349 2025-03-19 06:34:58.349 18900 TIP 435073 2703 \N \N 6032785 2025-03-19 06:35:44.653 2025-03-19 06:35:44.653 0 FEE 435101 14122 \N \N 6032817 2025-03-19 06:40:46.211 2025-03-19 06:40:46.211 0 FEE 435110 13467 \N \N 6031898 2025-03-19 04:52:16.61 2025-03-19 04:52:16.61 2100 FEE 434854 1051 \N \N 6031899 2025-03-19 04:52:16.61 2025-03-19 04:52:16.61 18900 TIP 434854 21803 \N \N 6031928 2025-03-19 04:54:31.076 2025-03-19 04:54:31.076 1100 FEE 433828 910 \N \N 6031929 2025-03-19 04:54:31.076 2025-03-19 04:54:31.076 9900 TIP 433828 19087 \N \N 6031938 2025-03-19 04:58:20.719 2025-03-19 04:58:20.719 1000 FEE 434617 14385 \N \N 6031939 2025-03-19 04:58:20.719 2025-03-19 04:58:20.719 9000 TIP 434617 20858 \N \N 6031956 2025-03-19 04:59:25.056 2025-03-19 04:59:25.056 100 FEE 434440 21804 \N \N 6031957 2025-03-19 04:59:25.056 2025-03-19 04:59:25.056 900 TIP 434440 21406 \N \N 6031969 2025-03-19 05:01:04.425 2025-03-19 05:01:04.425 8300 FEE 434791 21369 \N \N 6031970 2025-03-19 05:01:04.425 2025-03-19 05:01:04.425 74700 TIP 434791 19394 \N \N 6031973 2025-03-19 05:01:04.462 2025-03-19 05:01:04.462 8300 FEE 434791 11648 \N \N 6031974 2025-03-19 05:01:04.462 2025-03-19 05:01:04.462 74700 TIP 434791 16176 \N \N 6031985 2025-03-19 05:01:05.896 2025-03-19 05:01:05.896 8300 FEE 434791 1632 \N \N 6031986 2025-03-19 05:01:05.896 2025-03-19 05:01:05.896 74700 TIP 434791 13348 \N \N 6032003 2025-03-19 05:01:27.365 2025-03-19 05:01:27.365 8300 FEE 434261 2224 \N \N 6032004 2025-03-19 05:01:27.365 2025-03-19 05:01:27.365 74700 TIP 434261 8954 \N \N 6032017 2025-03-19 05:03:05.998 2025-03-19 05:03:05.998 100 FEE 434991 13174 \N \N 6032018 2025-03-19 05:03:05.998 2025-03-19 05:03:05.998 900 TIP 434991 19121 \N \N 6032033 2025-03-19 05:06:06 2025-03-19 05:06:06 10000 FEE 434975 10112 \N \N 6032034 2025-03-19 05:06:06 2025-03-19 05:06:06 90000 TIP 434975 1823 \N \N 6032045 2025-03-19 05:08:33.512 2025-03-19 05:08:33.512 1000 FEE 434998 649 \N \N 6032056 2025-03-19 05:09:40.47 2025-03-19 05:09:40.47 1000 FEE 435000 10608 \N \N 6032061 2025-03-19 05:10:07.493 2025-03-19 05:10:07.493 3000 FEE 434637 4602 \N \N 6032062 2025-03-19 05:10:07.493 2025-03-19 05:10:07.493 27000 TIP 434637 8505 \N \N 6032072 2025-03-19 05:11:09.286 2025-03-19 05:11:09.286 1000 FEE 435005 15146 \N \N 6032105 2025-03-19 05:15:42.998 2025-03-19 05:15:42.998 1000 FEE 435012 1428 \N \N 6032108 2025-03-19 05:17:07.981 2025-03-19 05:17:07.981 12800 FEE 434665 17103 \N \N 6032109 2025-03-19 05:17:07.981 2025-03-19 05:17:07.981 115200 TIP 434665 12774 \N \N 6032121 2025-03-19 05:18:14.214 2025-03-19 05:18:14.214 1000 FEE 435015 19484 \N \N 6032170 2025-03-19 05:26:40.158 2025-03-19 05:26:40.158 100000 FEE 435026 1135 \N \N 6032177 2025-03-19 05:27:08.552 2025-03-19 05:27:08.552 1000 FEE 435027 19821 \N \N 6032188 2025-03-19 05:28:49.562 2025-03-19 05:28:49.562 9000 FEE 435026 21804 \N \N 6032189 2025-03-19 05:28:49.562 2025-03-19 05:28:49.562 81000 TIP 435026 13622 \N \N 6032190 2025-03-19 05:28:53.918 2025-03-19 05:28:53.918 100000 FEE 435030 13566 \N \N 6032191 2025-03-19 05:28:54.22 2025-03-19 05:28:54.22 1000 FEE 435031 17519 \N \N 6032208 2025-03-19 05:29:34.694 2025-03-19 05:29:34.694 900 FEE 434975 2151 \N \N 6032209 2025-03-19 05:29:34.694 2025-03-19 05:29:34.694 8100 TIP 434975 7659 \N \N 6032210 2025-03-19 05:29:35.157 2025-03-19 05:29:35.157 9000 FEE 434975 825 \N \N 6032211 2025-03-19 05:29:35.157 2025-03-19 05:29:35.157 81000 TIP 434975 9295 \N \N 6032240 2025-03-19 05:31:41.641 2025-03-19 05:31:41.641 2700 FEE 435019 985 \N \N 6032241 2025-03-19 05:31:41.641 2025-03-19 05:31:41.641 24300 TIP 435019 21139 \N \N 6032242 2025-03-19 05:31:41.84 2025-03-19 05:31:41.84 2700 FEE 435019 17291 \N \N 6032243 2025-03-19 05:31:41.84 2025-03-19 05:31:41.84 24300 TIP 435019 13575 \N \N 6032246 2025-03-19 05:31:48.747 2025-03-19 05:31:48.747 1700 FEE 435023 16679 \N \N 6032247 2025-03-19 05:31:48.747 2025-03-19 05:31:48.747 15300 TIP 435023 2719 \N \N 6032250 2025-03-19 05:32:10.857 2025-03-19 05:32:10.857 10000 FEE 435036 12566 \N \N 6032257 2025-03-19 05:34:50.367 2025-03-19 05:34:50.367 2700 FEE 434440 19943 \N \N 6032258 2025-03-19 05:34:50.367 2025-03-19 05:34:50.367 24300 TIP 434440 11714 \N \N 6032259 2025-03-19 05:34:50.564 2025-03-19 05:34:50.564 2700 FEE 434440 9476 \N \N 6032260 2025-03-19 05:34:50.564 2025-03-19 05:34:50.564 24300 TIP 434440 703 \N \N 6032269 2025-03-19 05:34:52.006 2025-03-19 05:34:52.006 2700 FEE 434440 20840 \N \N 6032270 2025-03-19 05:34:52.006 2025-03-19 05:34:52.006 24300 TIP 434440 5828 \N \N 6032275 2025-03-19 05:36:47.626 2025-03-19 05:36:47.626 4200 FEE 434994 18241 \N \N 6032276 2025-03-19 05:36:47.626 2025-03-19 05:36:47.626 37800 TIP 434994 1801 \N \N 6032277 2025-03-19 05:36:49.554 2025-03-19 05:36:49.554 1000 FEE 435038 1221 \N \N 6032285 2025-03-19 05:36:55.034 2025-03-19 05:36:55.034 2700 FEE 434962 19924 \N \N 6032286 2025-03-19 05:36:55.034 2025-03-19 05:36:55.034 24300 TIP 434962 16747 \N \N 6032298 2025-03-19 05:37:59.674 2025-03-19 05:37:59.674 2700 FEE 434978 21274 \N \N 6032299 2025-03-19 05:37:59.674 2025-03-19 05:37:59.674 24300 TIP 434978 20525 \N \N 6032306 2025-03-19 05:38:00.471 2025-03-19 05:38:00.471 2700 FEE 434978 18630 \N \N 6032307 2025-03-19 05:38:00.471 2025-03-19 05:38:00.471 24300 TIP 434978 4776 \N \N 6032353 2025-03-19 05:45:47.36 2025-03-19 05:45:47.36 1000 FEE 435047 1620 \N \N 6032357 2025-03-19 05:46:25.054 2025-03-19 05:46:25.054 3000 FEE 435042 6361 \N \N 6032358 2025-03-19 05:46:25.054 2025-03-19 05:46:25.054 27000 TIP 435042 2347 \N \N 6032361 2025-03-19 05:46:53.606 2025-03-19 05:46:53.606 1000 FEE 434995 1236 \N \N 6032362 2025-03-19 05:46:53.606 2025-03-19 05:46:53.606 9000 TIP 434995 678 \N \N 6032366 2025-03-19 05:47:36.681 2025-03-19 05:47:36.681 3300 FEE 435023 21383 \N \N 6032367 2025-03-19 05:47:36.681 2025-03-19 05:47:36.681 29700 TIP 435023 6030 \N \N 6032388 2025-03-19 05:49:24.025 2025-03-19 05:49:24.025 1000 FEE 435049 17727 \N \N 6032392 2025-03-19 05:50:00.431 2025-03-19 05:50:00.431 100000 FEE 435046 9166 \N \N 6032393 2025-03-19 05:50:00.431 2025-03-19 05:50:00.431 900000 TIP 435046 15491 \N \N 6032394 2025-03-19 05:50:09.958 2025-03-19 05:50:09.958 1000 FEE 435050 1425 \N \N 6032429 2025-03-19 05:53:01.415 2025-03-19 05:53:01.415 2100 FEE 434958 12169 \N \N 6032430 2025-03-19 05:53:01.415 2025-03-19 05:53:01.415 18900 TIP 434958 1114 \N \N 6032454 2025-03-19 05:54:40.873 2025-03-19 05:54:40.873 100 FEE 435004 2942 \N \N 6032455 2025-03-19 05:54:40.873 2025-03-19 05:54:40.873 900 TIP 435004 18011 \N \N 6032464 2025-03-19 05:55:00.243 2025-03-19 05:55:00.243 2100 FEE 434801 1307 \N \N 6032465 2025-03-19 05:55:00.243 2025-03-19 05:55:00.243 18900 TIP 434801 14941 \N \N 6032482 2025-03-19 05:56:02.062 2025-03-19 05:56:02.062 1000 FEE 434810 9099 \N \N 6032483 2025-03-19 05:56:02.062 2025-03-19 05:56:02.062 9000 TIP 434810 18865 \N \N 6032488 2025-03-19 05:56:16.477 2025-03-19 05:56:16.477 2100 FEE 435004 2402 \N \N 6032489 2025-03-19 05:56:16.477 2025-03-19 05:56:16.477 18900 TIP 435004 9036 \N \N 6032512 2025-03-19 05:57:32 2025-03-19 05:57:32 3200 FEE 435054 688 \N \N 6032513 2025-03-19 05:57:32 2025-03-19 05:57:32 28800 TIP 435054 5759 \N \N 6032580 2025-03-19 06:02:52.004 2025-03-19 06:02:52.004 500 FEE 434695 7773 \N \N 6032581 2025-03-19 06:02:52.004 2025-03-19 06:02:52.004 4500 TIP 434695 20669 \N \N 6032596 2025-03-19 06:04:36.538 2025-03-19 06:04:36.538 100 FEE 434827 21136 \N \N 6032597 2025-03-19 06:04:36.538 2025-03-19 06:04:36.538 900 TIP 434827 13177 \N \N 6032619 2025-03-19 06:05:42.293 2025-03-19 06:05:42.293 1000 FEE 435076 5776 \N \N 6032626 2025-03-19 06:05:46.836 2025-03-19 06:05:46.836 9000 FEE 434957 18526 \N \N 6032627 2025-03-19 06:05:46.836 2025-03-19 06:05:46.836 81000 TIP 434957 2361 \N \N 6032630 2025-03-19 06:06:02.397 2025-03-19 06:06:02.397 900 FEE 435071 17639 \N \N 6032631 2025-03-19 06:06:02.397 2025-03-19 06:06:02.397 8100 TIP 435071 11018 \N \N 6032641 2025-03-19 06:07:41.982 2025-03-19 06:07:41.982 2100 FEE 435063 19796 \N \N 6032642 2025-03-19 06:07:41.982 2025-03-19 06:07:41.982 18900 TIP 435063 15719 \N \N 6032648 2025-03-19 06:09:05.261 2025-03-19 06:09:05.261 2100 FEE 435076 21184 \N \N 6032649 2025-03-19 06:09:05.261 2025-03-19 06:09:05.261 18900 TIP 435076 20377 \N \N 6032707 2025-03-19 06:20:54.514 2025-03-19 06:20:54.514 2100 FEE 434957 17321 \N \N 6032708 2025-03-19 06:20:54.514 2025-03-19 06:20:54.514 18900 TIP 434957 894 \N \N 6032739 2025-03-19 06:26:40.147 2025-03-19 06:26:40.147 4000 FEE 435092 9262 \N \N 6032740 2025-03-19 06:26:40.147 2025-03-19 06:26:40.147 36000 TIP 435092 21556 \N \N 6032750 2025-03-19 06:29:13.428 2025-03-19 06:29:13.428 1600 FEE 435097 683 \N \N 6032751 2025-03-19 06:29:13.428 2025-03-19 06:29:13.428 14400 TIP 435097 14990 \N \N 6031949 2025-03-19 04:59:23.365 2025-03-19 04:59:23.365 900 TIP 434440 9985 \N \N 6031950 2025-03-19 04:59:23.871 2025-03-19 04:59:23.871 100 FEE 434440 17321 \N \N 6031951 2025-03-19 04:59:23.871 2025-03-19 04:59:23.871 900 TIP 434440 12422 \N \N 6031960 2025-03-19 05:00:09.215 2025-03-19 05:00:09.215 2000 FEE 434423 19759 \N \N 6031961 2025-03-19 05:00:09.215 2025-03-19 05:00:09.215 18000 TIP 434423 20687 \N \N 6031963 2025-03-19 05:01:03.677 2025-03-19 05:01:03.677 8300 FEE 434791 17011 \N \N 6031964 2025-03-19 05:01:03.677 2025-03-19 05:01:03.677 74700 TIP 434791 9350 \N \N 6031965 2025-03-19 05:01:03.899 2025-03-19 05:01:03.899 16600 FEE 434791 21048 \N \N 6031966 2025-03-19 05:01:03.899 2025-03-19 05:01:03.899 149400 TIP 434791 20504 \N \N 6031977 2025-03-19 05:01:04.951 2025-03-19 05:01:04.951 8300 FEE 434791 12935 \N \N 6031978 2025-03-19 05:01:04.951 2025-03-19 05:01:04.951 74700 TIP 434791 826 \N \N 6031987 2025-03-19 05:01:07.574 2025-03-19 05:01:07.574 8300 FEE 434791 21148 \N \N 6031988 2025-03-19 05:01:07.574 2025-03-19 05:01:07.574 74700 TIP 434791 20854 \N \N 6031996 2025-03-19 05:01:21.203 2025-03-19 05:01:21.203 8300 FEE 434661 8926 \N \N 6031997 2025-03-19 05:01:21.203 2025-03-19 05:01:21.203 74700 TIP 434661 5359 \N \N 6032002 2025-03-19 05:01:26.674 2025-03-19 05:01:26.674 0 FEE 434989 19535 \N \N 6032059 2025-03-19 05:09:50.21 2025-03-19 05:09:50.21 1000 FEE 435001 13348 \N \N 6032075 2025-03-19 05:11:14.107 2025-03-19 05:11:14.107 1600 FEE 435002 13198 \N \N 6032076 2025-03-19 05:11:14.107 2025-03-19 05:11:14.107 14400 TIP 435002 10433 \N \N 6032092 2025-03-19 05:13:17.509 2025-03-19 05:13:17.509 100000 FEE 435010 20646 \N \N 6032098 2025-03-19 05:14:16.974 2025-03-19 05:14:16.974 8300 FEE 434994 20757 \N \N 6032099 2025-03-19 05:14:16.974 2025-03-19 05:14:16.974 74700 TIP 434994 3213 \N \N 6032104 2025-03-19 05:15:24.961 2025-03-19 05:15:24.961 83000 DONT_LIKE_THIS 434969 11314 \N \N 6032129 2025-03-19 05:21:06.691 2025-03-19 05:21:06.691 10000 FEE 435018 18673 \N \N 6032131 2025-03-19 05:21:13.634 2025-03-19 05:21:13.634 2100 FEE 434665 17713 \N \N 6032132 2025-03-19 05:21:13.634 2025-03-19 05:21:13.634 18900 TIP 434665 9339 \N \N 6032146 2025-03-19 05:22:29.323 2025-03-19 05:22:29.323 0 FEE 435017 11450 \N \N 6032171 2025-03-19 05:26:44.526 2025-03-19 05:26:44.526 2100 FEE 434674 16230 \N \N 6032172 2025-03-19 05:26:44.526 2025-03-19 05:26:44.526 18900 TIP 434674 21136 \N \N 6032203 2025-03-19 05:29:24.149 2025-03-19 05:29:24.149 1000 FEE 435033 21036 \N \N 6032217 2025-03-19 05:30:35.534 2025-03-19 05:30:35.534 1100 FEE 429275 17741 \N \N 6032218 2025-03-19 05:30:35.534 2025-03-19 05:30:35.534 9900 TIP 429275 704 \N \N 6032223 2025-03-19 05:31:02.739 2025-03-19 05:31:02.739 2100 FEE 434989 12368 \N \N 6032224 2025-03-19 05:31:02.739 2025-03-19 05:31:02.739 18900 TIP 434989 5003 \N \N 6032261 2025-03-19 05:34:50.75 2025-03-19 05:34:50.75 2700 FEE 434440 14651 \N \N 6032262 2025-03-19 05:34:50.75 2025-03-19 05:34:50.75 24300 TIP 434440 8726 \N \N 6032263 2025-03-19 05:34:50.956 2025-03-19 05:34:50.956 2700 FEE 434440 13177 \N \N 6032264 2025-03-19 05:34:50.956 2025-03-19 05:34:50.956 24300 TIP 434440 7869 \N \N 6032300 2025-03-19 05:37:59.945 2025-03-19 05:37:59.945 2700 FEE 434978 1488 \N \N 6032301 2025-03-19 05:37:59.945 2025-03-19 05:37:59.945 24300 TIP 434978 2098 \N \N 6032313 2025-03-19 05:40:20.373 2025-03-19 05:40:20.373 100 FEE 434878 7809 \N \N 6032314 2025-03-19 05:40:20.373 2025-03-19 05:40:20.373 900 TIP 434878 20755 \N \N 6032327 2025-03-19 05:42:33.176 2025-03-19 05:42:33.176 2700 FEE 434791 15544 \N \N 6032328 2025-03-19 05:42:33.176 2025-03-19 05:42:33.176 24300 TIP 434791 12188 \N \N 6032346 2025-03-19 05:44:03.604 2025-03-19 05:44:03.604 100 FEE 435030 7891 \N \N 6032347 2025-03-19 05:44:03.604 2025-03-19 05:44:03.604 900 TIP 435030 21281 \N \N 6032396 2025-03-19 05:50:18.706 2025-03-19 05:50:18.706 4000 FEE 435046 19121 \N \N 6032397 2025-03-19 05:50:18.706 2025-03-19 05:50:18.706 36000 TIP 435046 8059 \N \N 6032402 2025-03-19 05:50:32.659 2025-03-19 05:50:32.659 100 FEE 435046 11298 \N \N 6032403 2025-03-19 05:50:32.659 2025-03-19 05:50:32.659 900 TIP 435046 1428 \N \N 6032407 2025-03-19 05:50:45.64 2025-03-19 05:50:45.64 2100 FEE 434962 3396 \N \N 6032408 2025-03-19 05:50:45.64 2025-03-19 05:50:45.64 18900 TIP 434962 20179 \N \N 6032425 2025-03-19 05:52:45.761 2025-03-19 05:52:45.761 2100 FEE 435026 20881 \N \N 6032426 2025-03-19 05:52:45.761 2025-03-19 05:52:45.761 18900 TIP 435026 13566 \N \N 6032435 2025-03-19 05:53:32.922 2025-03-19 05:53:32.922 3300 FEE 434878 11527 \N \N 6032436 2025-03-19 05:53:32.922 2025-03-19 05:53:32.922 29700 TIP 434878 11862 \N \N 6032495 2025-03-19 05:56:23.719 2025-03-19 05:56:23.719 1000 FEE 434991 721 \N \N 6032496 2025-03-19 05:56:23.719 2025-03-19 05:56:23.719 9000 TIP 434991 19189 \N \N 6032510 2025-03-19 05:57:27.429 2025-03-19 05:57:27.429 1000 FEE 435060 14669 \N \N 6032514 2025-03-19 05:57:58.096 2025-03-19 05:57:58.096 2100 FEE 435046 1552 \N \N 6032515 2025-03-19 05:57:58.096 2025-03-19 05:57:58.096 18900 TIP 435046 794 \N \N 6032541 2025-03-19 06:00:27.155 2025-03-19 06:00:27.155 1100 FEE 435009 5779 \N \N 6032542 2025-03-19 06:00:27.155 2025-03-19 06:00:27.155 9900 TIP 435009 2206 \N \N 6032551 2025-03-19 06:00:48.984 2025-03-19 06:00:48.984 1100 FEE 435013 13348 \N \N 6032552 2025-03-19 06:00:48.984 2025-03-19 06:00:48.984 9900 TIP 435013 21805 \N \N 6032576 2025-03-19 06:02:13.359 2025-03-19 06:02:13.359 1000 FEE 435070 11454 \N \N 6032577 2025-03-19 06:02:26.052 2025-03-19 06:02:26.052 1300 FEE 434903 20768 \N \N 6032578 2025-03-19 06:02:26.052 2025-03-19 06:02:26.052 11700 TIP 434903 4776 \N \N 6032591 2025-03-19 06:04:24.005 2025-03-19 06:04:24.005 1600 FEE 435046 8648 \N \N 6032592 2025-03-19 06:04:24.005 2025-03-19 06:04:24.005 14400 TIP 435046 7395 \N \N 6032598 2025-03-19 06:04:37.197 2025-03-19 06:04:37.197 100 FEE 434827 11590 \N \N 6032599 2025-03-19 06:04:37.197 2025-03-19 06:04:37.197 900 TIP 434827 2338 \N \N 6032612 2025-03-19 06:05:01.959 2025-03-19 06:05:01.959 9000 FEE 433865 13547 \N \N 6032613 2025-03-19 06:05:01.959 2025-03-19 06:05:01.959 81000 TIP 433865 1471 \N \N 6032620 2025-03-19 06:05:44.499 2025-03-19 06:05:44.499 9000 FEE 434960 14449 \N \N 6032621 2025-03-19 06:05:44.499 2025-03-19 06:05:44.499 81000 TIP 434960 9863 \N \N 6032622 2025-03-19 06:05:46.303 2025-03-19 06:05:46.303 100 FEE 434957 16724 \N \N 6032623 2025-03-19 06:05:46.303 2025-03-19 06:05:46.303 900 TIP 434957 16432 \N \N 6032634 2025-03-19 06:06:06.34 2025-03-19 06:06:06.34 200 FEE 435053 2329 \N \N 6032635 2025-03-19 06:06:06.34 2025-03-19 06:06:06.34 1800 TIP 435053 11153 \N \N 6032661 2025-03-19 06:11:12.293 2025-03-19 06:11:12.293 12800 FEE 435080 9537 \N \N 6032662 2025-03-19 06:11:12.293 2025-03-19 06:11:12.293 115200 TIP 435080 5520 \N \N 6032682 2025-03-19 06:19:04.016 2025-03-19 06:19:04.016 1600 FEE 435073 20222 \N \N 6032683 2025-03-19 06:19:04.016 2025-03-19 06:19:04.016 14400 TIP 435073 15060 \N \N 6032702 2025-03-19 06:20:48.071 2025-03-19 06:20:48.071 300 FEE 435002 17722 \N \N 6032703 2025-03-19 06:20:48.071 2025-03-19 06:20:48.071 2700 TIP 435002 17415 \N \N 6032704 2025-03-19 06:20:51.801 2025-03-19 06:20:51.801 1000 FEE 435089 12169 \N \N 6032714 2025-03-19 06:21:36.812 2025-03-19 06:21:36.812 10000 FEE 435064 965 \N \N 6032715 2025-03-19 06:21:36.812 2025-03-19 06:21:36.812 90000 TIP 435064 12483 \N \N 6032729 2025-03-19 06:25:28.287 2025-03-19 06:25:28.287 3400 FEE 434637 8541 \N \N 6032730 2025-03-19 06:25:28.287 2025-03-19 06:25:28.287 30600 TIP 434637 1038 \N \N 6032734 2025-03-19 06:26:04.604 2025-03-19 06:26:04.604 3400 FEE 434637 10611 \N \N 6032735 2025-03-19 06:26:04.604 2025-03-19 06:26:04.604 30600 TIP 434637 1310 \N \N 6032789 2025-03-19 06:36:24.829 2025-03-19 06:36:24.829 1000 FEE 435097 684 \N \N 6032790 2025-03-19 06:36:24.829 2025-03-19 06:36:24.829 9000 TIP 435097 10096 \N \N 6032798 2025-03-19 06:37:56.363 2025-03-19 06:37:56.363 1000 FEE 435109 4225 \N \N 6032808 2025-03-19 06:39:59.326 2025-03-19 06:39:59.326 1000 FEE 434721 919 \N \N 6032809 2025-03-19 06:39:59.326 2025-03-19 06:39:59.326 9000 TIP 434721 1772 \N \N 6032821 2025-03-19 06:41:45.08 2025-03-19 06:41:45.08 3000 FEE 435063 16598 \N \N 6032822 2025-03-19 06:41:45.08 2025-03-19 06:41:45.08 27000 TIP 435063 1615 \N \N 6032840 2025-03-19 06:43:05.608 2025-03-19 06:43:05.608 500 FEE 435063 19512 \N \N 6032841 2025-03-19 06:43:05.608 2025-03-19 06:43:05.608 4500 TIP 435063 14657 \N \N 6032860 2025-03-19 06:45:25.428 2025-03-19 06:45:25.428 7700 FEE 433669 768 \N \N 6032861 2025-03-19 06:45:25.428 2025-03-19 06:45:25.428 69300 TIP 433669 894 \N \N 6032862 2025-03-19 06:45:37.957 2025-03-19 06:45:37.957 2100 FEE 434323 5444 \N \N 6032055 2025-03-19 05:09:20.314 2025-03-19 05:09:20.314 90000 TIP 434617 18011 \N \N 6032080 2025-03-19 05:11:53.798 2025-03-19 05:11:53.798 3000 FEE 433865 2639 \N \N 6032081 2025-03-19 05:11:53.798 2025-03-19 05:11:53.798 27000 TIP 433865 14404 \N \N 6032112 2025-03-19 05:17:09.135 2025-03-19 05:17:09.135 8300 FEE 434556 1469 \N \N 6032113 2025-03-19 05:17:09.135 2025-03-19 05:17:09.135 74700 TIP 434556 6393 \N \N 6032122 2025-03-19 05:18:19.716 2025-03-19 05:18:19.716 1000 FEE 435016 18731 \N \N 6032126 2025-03-19 05:20:36.854 2025-03-19 05:20:36.854 2100 FEE 434707 6148 \N \N 6032127 2025-03-19 05:20:36.854 2025-03-19 05:20:36.854 18900 TIP 434707 2329 \N \N 6032128 2025-03-19 05:21:02.865 2025-03-19 05:21:02.865 0 FEE 435017 3504 \N \N 6032134 2025-03-19 05:21:15.548 2025-03-19 05:21:15.548 23000 DONT_LIKE_THIS 434969 21303 \N \N 6032169 2025-03-19 05:26:37.726 2025-03-19 05:26:37.726 0 FEE 435017 775 \N \N 6032183 2025-03-19 05:28:48.169 2025-03-19 05:28:48.169 100 FEE 435026 21413 \N \N 6032184 2025-03-19 05:28:48.169 2025-03-19 05:28:48.169 900 TIP 435026 20377 \N \N 6032192 2025-03-19 05:28:55.24 2025-03-19 05:28:55.24 12800 FEE 312067 16956 \N \N 6032193 2025-03-19 05:28:55.24 2025-03-19 05:28:55.24 115200 TIP 312067 5725 \N \N 6032194 2025-03-19 05:28:56.395 2025-03-19 05:28:56.395 2100 FEE 434999 21710 \N \N 6032195 2025-03-19 05:28:56.395 2025-03-19 05:28:56.395 18900 TIP 434999 10849 \N \N 6032212 2025-03-19 05:29:49.355 2025-03-19 05:29:49.355 2100 FEE 434936 1585 \N \N 6032213 2025-03-19 05:29:49.355 2025-03-19 05:29:49.355 18900 TIP 434936 1738 \N \N 6032220 2025-03-19 05:30:55.304 2025-03-19 05:30:55.304 1000 FEE 435035 2309 \N \N 6032232 2025-03-19 05:31:17.558 2025-03-19 05:31:17.558 2700 FEE 434498 16808 \N \N 6032233 2025-03-19 05:31:17.558 2025-03-19 05:31:17.558 24300 TIP 434498 12097 \N \N 6032265 2025-03-19 05:34:51.153 2025-03-19 05:34:51.153 2700 FEE 434440 10944 \N \N 6032266 2025-03-19 05:34:51.153 2025-03-19 05:34:51.153 24300 TIP 434440 21291 \N \N 6032267 2025-03-19 05:34:51.35 2025-03-19 05:34:51.35 2700 FEE 434440 8989 \N \N 6032268 2025-03-19 05:34:51.35 2025-03-19 05:34:51.35 24300 TIP 434440 6360 \N \N 6032294 2025-03-19 05:37:56.852 2025-03-19 05:37:56.852 500 FEE 434285 3400 \N \N 6032295 2025-03-19 05:37:56.852 2025-03-19 05:37:56.852 4500 TIP 434285 620 \N \N 6032302 2025-03-19 05:38:00.068 2025-03-19 05:38:00.068 2700 FEE 434978 7673 \N \N 6032303 2025-03-19 05:38:00.068 2025-03-19 05:38:00.068 24300 TIP 434978 1705 \N \N 6032331 2025-03-19 05:42:33.546 2025-03-19 05:42:33.546 2700 FEE 434791 20182 \N \N 6032332 2025-03-19 05:42:33.546 2025-03-19 05:42:33.546 24300 TIP 434791 7389 \N \N 6032337 2025-03-19 05:42:34.152 2025-03-19 05:42:34.152 2700 FEE 434791 2335 \N \N 6032338 2025-03-19 05:42:34.152 2025-03-19 05:42:34.152 24300 TIP 434791 725 \N \N 6032374 2025-03-19 05:48:18.195 2025-03-19 05:48:18.195 9000 FEE 435030 21451 \N \N 6032375 2025-03-19 05:48:18.195 2025-03-19 05:48:18.195 81000 TIP 435030 2640 \N \N 6032384 2025-03-19 05:49:00.541 2025-03-19 05:49:00.541 9000 FEE 434962 17042 \N \N 6032385 2025-03-19 05:49:00.541 2025-03-19 05:49:00.541 81000 TIP 434962 623 \N \N 6032404 2025-03-19 05:50:38.255 2025-03-19 05:50:38.255 10000 FEE 435051 805 \N \N 6032432 2025-03-19 05:53:13.184 2025-03-19 05:53:13.184 2100 FEE 434807 20577 \N \N 6032433 2025-03-19 05:53:13.184 2025-03-19 05:53:13.184 18900 TIP 434807 1773 \N \N 6032437 2025-03-19 05:53:41.759 2025-03-19 05:53:41.759 2100 FEE 434952 19346 \N \N 6032438 2025-03-19 05:53:41.759 2025-03-19 05:53:41.759 18900 TIP 434952 7659 \N \N 6032439 2025-03-19 05:53:43.722 2025-03-19 05:53:43.722 2100 FEE 434902 20450 \N \N 6032440 2025-03-19 05:53:43.722 2025-03-19 05:53:43.722 18900 TIP 434902 2039 \N \N 6032462 2025-03-19 05:54:51.309 2025-03-19 05:54:51.309 2100 FEE 434806 10638 \N \N 6032463 2025-03-19 05:54:51.309 2025-03-19 05:54:51.309 18900 TIP 434806 9529 \N \N 6032474 2025-03-19 05:55:24.163 2025-03-19 05:55:24.163 8300 FEE 435040 20713 \N \N 6032475 2025-03-19 05:55:24.163 2025-03-19 05:55:24.163 74700 TIP 435040 782 \N \N 6032490 2025-03-19 05:56:17.161 2025-03-19 05:56:17.161 2100 FEE 435000 20370 \N \N 6032491 2025-03-19 05:56:17.161 2025-03-19 05:56:17.161 18900 TIP 435000 16954 \N \N 6032524 2025-03-19 05:58:52.085 2025-03-19 05:58:52.085 9000 FEE 435046 17797 \N \N 6032525 2025-03-19 05:58:52.085 2025-03-19 05:58:52.085 81000 TIP 435046 21501 \N \N 6032549 2025-03-19 06:00:48.816 2025-03-19 06:00:48.816 1100 FEE 435013 5590 \N \N 6032550 2025-03-19 06:00:48.816 2025-03-19 06:00:48.816 9900 TIP 435013 12959 \N \N 6032553 2025-03-19 06:00:59.073 2025-03-19 06:00:59.073 1100 FEE 435032 8506 \N \N 6032554 2025-03-19 06:00:59.073 2025-03-19 06:00:59.073 9900 TIP 435032 12976 \N \N 6032569 2025-03-19 06:01:42.226 2025-03-19 06:01:42.226 3000 FEE 435057 20310 \N \N 6032570 2025-03-19 06:01:42.226 2025-03-19 06:01:42.226 27000 TIP 435057 17064 \N \N 6032583 2025-03-19 06:02:58.299 2025-03-19 06:02:58.299 3200 FEE 435061 5427 \N \N 6032584 2025-03-19 06:02:58.299 2025-03-19 06:02:58.299 28800 TIP 435061 21383 \N \N 6032600 2025-03-19 06:04:37.844 2025-03-19 06:04:37.844 100 FEE 434827 21338 \N \N 6032601 2025-03-19 06:04:37.844 2025-03-19 06:04:37.844 900 TIP 434827 836 \N \N 6032639 2025-03-19 06:07:07.509 2025-03-19 06:07:07.509 1000 FEE 435079 21498 \N \N 6032643 2025-03-19 06:07:58.903 2025-03-19 06:07:58.903 1000 FEE 435080 13162 \N \N 6032655 2025-03-19 06:10:16.71 2025-03-19 06:10:16.71 800 FEE 435077 9276 \N \N 6032656 2025-03-19 06:10:16.71 2025-03-19 06:10:16.71 7200 TIP 435077 15282 \N \N 6032659 2025-03-19 06:11:08.541 2025-03-19 06:11:08.541 900 FEE 435057 795 \N \N 6032660 2025-03-19 06:11:08.541 2025-03-19 06:11:08.541 8100 TIP 435057 16282 \N \N 6032685 2025-03-19 06:19:38.941 2025-03-19 06:19:38.941 1000 FEE 435087 10821 \N \N 6032692 2025-03-19 06:20:46.43 2025-03-19 06:20:46.43 300 FEE 435002 20778 \N \N 6032693 2025-03-19 06:20:46.43 2025-03-19 06:20:46.43 2700 TIP 435002 18409 \N \N 6032717 2025-03-19 06:21:57.866 2025-03-19 06:21:57.866 100 FEE 435087 4415 \N \N 6032718 2025-03-19 06:21:57.866 2025-03-19 06:21:57.866 900 TIP 435087 14213 \N \N 6032753 2025-03-19 06:29:26.491 2025-03-19 06:29:26.491 2100 FEE 435091 6393 \N \N 6032754 2025-03-19 06:29:26.491 2025-03-19 06:29:26.491 18900 TIP 435091 12483 \N \N 6032758 2025-03-19 06:30:53.571 2025-03-19 06:30:53.571 6300 FEE 435038 18528 \N \N 6032759 2025-03-19 06:30:53.571 2025-03-19 06:30:53.571 56700 TIP 435038 21521 \N \N 6032761 2025-03-19 06:32:02.515 2025-03-19 06:32:02.515 10000 FEE 435101 8400 \N \N 6032766 2025-03-19 06:32:39.834 2025-03-19 06:32:39.834 100 FEE 435051 5487 \N \N 6032767 2025-03-19 06:32:39.834 2025-03-19 06:32:39.834 900 TIP 435051 19378 \N \N 6032778 2025-03-19 06:34:52.999 2025-03-19 06:34:52.999 1000 FEE 435107 16684 \N \N 6032806 2025-03-19 06:39:56.577 2025-03-19 06:39:56.577 1000 FEE 434721 7185 \N \N 6032807 2025-03-19 06:39:56.577 2025-03-19 06:39:56.577 9000 TIP 434721 6594 \N \N 6032812 2025-03-19 06:40:02.303 2025-03-19 06:40:02.303 1000 FEE 434721 20745 \N \N 6032813 2025-03-19 06:40:02.303 2025-03-19 06:40:02.303 9000 TIP 434721 21666 \N \N 6032819 2025-03-19 06:41:15.985 2025-03-19 06:41:15.985 3300 FEE 435046 20768 \N \N 6032820 2025-03-19 06:41:15.985 2025-03-19 06:41:15.985 29700 TIP 435046 15336 \N \N 6032842 2025-03-19 06:43:09.078 2025-03-19 06:43:09.078 1000 FEE 435065 17953 \N \N 6032843 2025-03-19 06:43:09.078 2025-03-19 06:43:09.078 9000 TIP 435065 15549 \N \N 6032846 2025-03-19 06:43:11.366 2025-03-19 06:43:11.366 10000 FEE 435111 14774 \N \N 6032851 2025-03-19 06:43:24.145 2025-03-19 06:43:24.145 1000 FEE 435113 11862 \N \N 6032856 2025-03-19 06:45:06.167 2025-03-19 06:45:06.167 1000 FEE 435116 17727 \N \N 6032868 2025-03-19 06:45:50.555 2025-03-19 06:45:50.555 100 FEE 433649 21104 \N \N 6032869 2025-03-19 06:45:50.555 2025-03-19 06:45:50.555 900 TIP 433649 8989 \N \N 6032882 2025-03-19 06:45:53.247 2025-03-19 06:45:53.247 100 FEE 433649 16442 \N \N 6032883 2025-03-19 06:45:53.247 2025-03-19 06:45:53.247 900 TIP 433649 618 \N \N 6032890 2025-03-19 06:47:23.143 2025-03-19 06:47:23.143 15000 FEE 434851 21214 \N \N 6032891 2025-03-19 06:47:23.143 2025-03-19 06:47:23.143 135000 TIP 434851 16598 \N \N 6032941 2025-03-19 06:55:01.361 2025-03-19 06:55:01.361 100000 FEE 435125 19375 \N \N 6032943 2025-03-19 06:55:25.415 2025-03-19 06:55:25.415 1000 FEE 435126 21242 \N \N 6032060 2025-03-19 05:09:51.498 2025-03-19 05:09:51.498 100000 FEE 435002 21064 \N \N 6032086 2025-03-19 05:12:34.079 2025-03-19 05:12:34.079 1600 FEE 435003 5359 \N \N 6032087 2025-03-19 05:12:34.079 2025-03-19 05:12:34.079 14400 TIP 435003 21832 \N \N 6032116 2025-03-19 05:17:17.249 2025-03-19 05:17:17.249 8300 FEE 434625 1632 \N \N 6032117 2025-03-19 05:17:17.249 2025-03-19 05:17:17.249 74700 TIP 434625 1162 \N \N 6032135 2025-03-19 05:21:36.355 2025-03-19 05:21:36.355 1000 FEE 435020 21172 \N \N 6032142 2025-03-19 05:22:12.134 2025-03-19 05:22:12.134 1000 FEE 435021 1003 \N \N 6032148 2025-03-19 05:22:55.972 2025-03-19 05:22:55.972 0 FEE 435017 10608 \N \N 6032153 2025-03-19 05:23:03.377 2025-03-19 05:23:03.377 1000 FEE 435021 698 \N \N 6032154 2025-03-19 05:23:03.377 2025-03-19 05:23:03.377 9000 TIP 435021 19189 \N \N 6032159 2025-03-19 05:24:37.114 2025-03-19 05:24:37.114 3000 FEE 253077 15488 \N \N 6032160 2025-03-19 05:24:37.114 2025-03-19 05:24:37.114 27000 TIP 253077 16350 \N \N 6032164 2025-03-19 05:25:28.613 2025-03-19 05:25:28.613 1000 FEE 435024 685 \N \N 6032196 2025-03-19 05:28:56.624 2025-03-19 05:28:56.624 100 FEE 435018 5806 \N \N 6032197 2025-03-19 05:28:56.624 2025-03-19 05:28:56.624 900 TIP 435018 18271 \N \N 6032204 2025-03-19 05:29:27.458 2025-03-19 05:29:27.458 12800 FEE 312024 848 \N \N 6032205 2025-03-19 05:29:27.458 2025-03-19 05:29:27.458 115200 TIP 312024 1833 \N \N 6032227 2025-03-19 05:31:11.552 2025-03-19 05:31:11.552 700 FEE 433547 3544 \N \N 6032228 2025-03-19 05:31:11.552 2025-03-19 05:31:11.552 6300 TIP 433547 2203 \N \N 6032236 2025-03-19 05:31:19.585 2025-03-19 05:31:19.585 2700 FEE 434498 21249 \N \N 6032237 2025-03-19 05:31:19.585 2025-03-19 05:31:19.585 24300 TIP 434498 20310 \N \N 6032279 2025-03-19 05:36:54.614 2025-03-19 05:36:54.614 2700 FEE 434962 7913 \N \N 6032280 2025-03-19 05:36:54.614 2025-03-19 05:36:54.614 24300 TIP 434962 11866 \N \N 6032287 2025-03-19 05:36:55.21 2025-03-19 05:36:55.21 2700 FEE 434962 4502 \N \N 6032288 2025-03-19 05:36:55.21 2025-03-19 05:36:55.21 24300 TIP 434962 20222 \N \N 6032316 2025-03-19 05:42:00.975 2025-03-19 05:42:00.975 1000 FEE 435042 15662 \N \N 6032335 2025-03-19 05:42:33.929 2025-03-19 05:42:33.929 2700 FEE 434791 9438 \N \N 6032336 2025-03-19 05:42:33.929 2025-03-19 05:42:33.929 24300 TIP 434791 10862 \N \N 6032339 2025-03-19 05:42:34.927 2025-03-19 05:42:34.927 2700 FEE 434791 21814 \N \N 6032340 2025-03-19 05:42:34.927 2025-03-19 05:42:34.927 24300 TIP 434791 9275 \N \N 6032368 2025-03-19 05:47:56.744 2025-03-19 05:47:56.744 83000 DONT_LIKE_THIS 434931 20490 \N \N 6032390 2025-03-19 05:49:56.978 2025-03-19 05:49:56.978 3000 FEE 435046 3353 \N \N 6032391 2025-03-19 05:49:56.978 2025-03-19 05:49:56.978 27000 TIP 435046 19576 \N \N 6032409 2025-03-19 05:50:50.721 2025-03-19 05:50:50.721 2100 FEE 435030 4395 \N \N 6032410 2025-03-19 05:50:50.721 2025-03-19 05:50:50.721 18900 TIP 435030 6360 \N \N 6032416 2025-03-19 05:51:02.214 2025-03-19 05:51:02.214 2100 FEE 434994 4287 \N \N 6032417 2025-03-19 05:51:02.214 2025-03-19 05:51:02.214 18900 TIP 434994 14731 \N \N 6032452 2025-03-19 05:54:38.128 2025-03-19 05:54:38.128 900 FEE 434990 629 \N \N 6032453 2025-03-19 05:54:38.128 2025-03-19 05:54:38.128 8100 TIP 434990 19581 \N \N 6032460 2025-03-19 05:54:41.977 2025-03-19 05:54:41.977 900 FEE 435000 21070 \N \N 6032461 2025-03-19 05:54:41.977 2025-03-19 05:54:41.977 8100 TIP 435000 20198 \N \N 6032503 2025-03-19 05:56:24.433 2025-03-19 05:56:24.433 1000 FEE 434991 1825 \N \N 6032504 2025-03-19 05:56:24.433 2025-03-19 05:56:24.433 9000 TIP 434991 10393 \N \N 6032511 2025-03-19 05:57:29.923 2025-03-19 05:57:29.923 1000 FEE 435061 11220 \N \N 6032517 2025-03-19 05:58:24.622 2025-03-19 05:58:24.622 1000 FEE 435063 21514 \N \N 6032520 2025-03-19 05:58:51.084 2025-03-19 05:58:51.084 100 FEE 435046 7766 \N \N 6032521 2025-03-19 05:58:51.084 2025-03-19 05:58:51.084 900 TIP 435046 16447 \N \N 6032534 2025-03-19 06:00:12.525 2025-03-19 06:00:12.525 1100 FEE 434980 11091 \N \N 6032535 2025-03-19 06:00:12.525 2025-03-19 06:00:12.525 9900 TIP 434980 21373 \N \N 6032536 2025-03-19 06:00:12.702 2025-03-19 06:00:12.702 1100 FEE 434980 1310 \N \N 6032537 2025-03-19 06:00:12.702 2025-03-19 06:00:12.702 9900 TIP 434980 1806 \N \N 6032538 2025-03-19 06:00:12.873 2025-03-19 06:00:12.873 1100 FEE 434980 5128 \N \N 6032539 2025-03-19 06:00:12.873 2025-03-19 06:00:12.873 9900 TIP 434980 20687 \N \N 6032543 2025-03-19 06:00:27.362 2025-03-19 06:00:27.362 1100 FEE 435009 20222 \N \N 6032544 2025-03-19 06:00:27.362 2025-03-19 06:00:27.362 9900 TIP 435009 5487 \N \N 6032555 2025-03-19 06:00:59.233 2025-03-19 06:00:59.233 1100 FEE 435032 1584 \N \N 6032556 2025-03-19 06:00:59.233 2025-03-19 06:00:59.233 9900 TIP 435032 633 \N \N 6032559 2025-03-19 06:01:08.164 2025-03-19 06:01:08.164 1100 FEE 435043 17522 \N \N 6032560 2025-03-19 06:01:08.164 2025-03-19 06:01:08.164 9900 TIP 435043 1094 \N \N 6032565 2025-03-19 06:01:36.91 2025-03-19 06:01:36.91 1000 FEE 435068 15146 \N \N 6032586 2025-03-19 06:03:13.79 2025-03-19 06:03:13.79 1000 FEE 435072 698 \N \N 6032594 2025-03-19 06:04:31.751 2025-03-19 06:04:31.751 1600 FEE 435030 17331 \N \N 6032595 2025-03-19 06:04:31.751 2025-03-19 06:04:31.751 14400 TIP 435030 621 \N \N 6032608 2025-03-19 06:05:00.198 2025-03-19 06:05:00.198 100 FEE 433865 12819 \N \N 6032609 2025-03-19 06:05:00.198 2025-03-19 06:05:00.198 900 TIP 433865 14225 \N \N 6032617 2025-03-19 06:05:22.376 2025-03-19 06:05:22.376 900 FEE 434960 3506 \N \N 6032618 2025-03-19 06:05:22.376 2025-03-19 06:05:22.376 8100 TIP 434960 4259 \N \N 6032664 2025-03-19 06:11:14.229 2025-03-19 06:11:14.229 1000 FEE 435019 17522 \N \N 6032665 2025-03-19 06:11:14.229 2025-03-19 06:11:14.229 9000 TIP 435019 1003 \N \N 6032669 2025-03-19 06:14:30.335 2025-03-19 06:14:30.335 10000 FEE 435083 5495 \N \N 6032676 2025-03-19 06:17:47.778 2025-03-19 06:17:47.778 1000 FEE 435085 20669 \N \N 6032679 2025-03-19 06:18:27.021 2025-03-19 06:18:27.021 0 FEE 435086 16177 \N \N 6032698 2025-03-19 06:20:47.438 2025-03-19 06:20:47.438 300 FEE 435002 1745 \N \N 6032699 2025-03-19 06:20:47.438 2025-03-19 06:20:47.438 2700 TIP 435002 5377 \N \N 6032700 2025-03-19 06:20:47.738 2025-03-19 06:20:47.738 300 FEE 435002 7966 \N \N 6032701 2025-03-19 06:20:47.738 2025-03-19 06:20:47.738 2700 TIP 435002 8416 \N \N 6032705 2025-03-19 06:20:53.643 2025-03-19 06:20:53.643 2100 FEE 434628 21391 \N \N 6032706 2025-03-19 06:20:53.643 2025-03-19 06:20:53.643 18900 TIP 434628 9159 \N \N 6032721 2025-03-19 06:23:50.885 2025-03-19 06:23:50.885 3400 FEE 435046 20757 \N \N 6032722 2025-03-19 06:23:50.885 2025-03-19 06:23:50.885 30600 TIP 435046 21647 \N \N 6032723 2025-03-19 06:23:52.401 2025-03-19 06:23:52.401 3400 FEE 435046 11165 \N \N 6032724 2025-03-19 06:23:52.401 2025-03-19 06:23:52.401 30600 TIP 435046 4083 \N \N 6032741 2025-03-19 06:27:04.804 2025-03-19 06:27:04.804 1000 FEE 435096 8080 \N \N 6032773 2025-03-19 06:33:38.546 2025-03-19 06:33:38.546 1600 FEE 435103 1105 \N \N 6032774 2025-03-19 06:33:38.546 2025-03-19 06:33:38.546 14400 TIP 435103 1124 \N \N 6032814 2025-03-19 06:40:05.45 2025-03-19 06:40:05.45 1000 FEE 434721 8998 \N \N 6032815 2025-03-19 06:40:05.45 2025-03-19 06:40:05.45 9000 TIP 434721 21701 \N \N 6032827 2025-03-19 06:41:59.142 2025-03-19 06:41:59.142 27000 FEE 435059 10821 \N \N 6032828 2025-03-19 06:41:59.142 2025-03-19 06:41:59.142 243000 TIP 435059 21506 \N \N 6032850 2025-03-19 06:43:23.206 2025-03-19 06:43:23.206 10000 FEE 435112 17976 \N \N 6032857 2025-03-19 06:45:09.498 2025-03-19 06:45:09.498 1000 FEE 435018 1411 \N \N 6032858 2025-03-19 06:45:09.498 2025-03-19 06:45:09.498 9000 TIP 435018 2609 \N \N 6032880 2025-03-19 06:45:52.78 2025-03-19 06:45:52.78 100 FEE 433649 21281 \N \N 6032881 2025-03-19 06:45:52.78 2025-03-19 06:45:52.78 900 TIP 433649 1673 \N \N 6032887 2025-03-19 06:47:04.232 2025-03-19 06:47:04.232 1000 FEE 435117 8416 \N \N 6032889 2025-03-19 06:47:16.682 2025-03-19 06:47:16.682 1000 FEE 435118 21501 \N \N 6032897 2025-03-19 06:48:03.831 2025-03-19 06:48:03.831 10000 FEE 435120 2724 \N \N 6032932 2025-03-19 06:53:52.174 2025-03-19 06:53:52.174 1000 FEE 435123 822 \N \N 6032957 2025-03-19 06:57:40.338 2025-03-19 06:57:40.338 800 FEE 435046 20891 \N \N 6032139 2025-03-19 05:22:11.03 2025-03-19 05:22:11.03 2700 TIP 434846 733 \N \N 6032151 2025-03-19 05:23:02.695 2025-03-19 05:23:02.695 1000 FEE 435021 17519 \N \N 6032152 2025-03-19 05:23:02.695 2025-03-19 05:23:02.695 9000 TIP 435021 18219 \N \N 6032157 2025-03-19 05:24:18.343 2025-03-19 05:24:18.343 1000 FEE 435023 19826 \N \N 6032158 2025-03-19 05:24:30.553 2025-03-19 05:24:30.553 0 FEE 435017 19531 \N \N 6032161 2025-03-19 05:24:37.431 2025-03-19 05:24:37.431 27000 FEE 253077 10352 \N \N 6032162 2025-03-19 05:24:37.431 2025-03-19 05:24:37.431 243000 TIP 253077 4776 \N \N 6032187 2025-03-19 05:28:48.563 2025-03-19 05:28:48.563 0 FEE 435017 675 \N \N 6032198 2025-03-19 05:28:56.776 2025-03-19 05:28:56.776 900 FEE 435018 19531 \N \N 6032199 2025-03-19 05:28:56.776 2025-03-19 05:28:56.776 8100 TIP 435018 1094 \N \N 6032225 2025-03-19 05:31:05.109 2025-03-19 05:31:05.109 300 FEE 432838 1469 \N \N 6032226 2025-03-19 05:31:05.109 2025-03-19 05:31:05.109 2700 TIP 432838 11192 \N \N 6032234 2025-03-19 05:31:18.486 2025-03-19 05:31:18.486 2700 FEE 434498 2309 \N \N 6032235 2025-03-19 05:31:18.486 2025-03-19 05:31:18.486 24300 TIP 434498 12744 \N \N 6032296 2025-03-19 05:37:57.156 2025-03-19 05:37:57.156 500 FEE 434285 9167 \N \N 6032297 2025-03-19 05:37:57.156 2025-03-19 05:37:57.156 4500 TIP 434285 17710 \N \N 6032304 2025-03-19 05:38:00.265 2025-03-19 05:38:00.265 2700 FEE 434978 919 \N \N 6032305 2025-03-19 05:38:00.265 2025-03-19 05:38:00.265 24300 TIP 434978 4084 \N \N 6032309 2025-03-19 05:38:37.583 2025-03-19 05:38:37.583 1000 FEE 435040 4083 \N \N 6032311 2025-03-19 05:39:59.769 2025-03-19 05:39:59.769 1000 FEE 435041 1620 \N \N 6032318 2025-03-19 05:42:16.95 2025-03-19 05:42:16.95 1000 FEE 435043 1617 \N \N 6032380 2025-03-19 05:48:58.102 2025-03-19 05:48:58.102 100 FEE 434962 11819 \N \N 6032381 2025-03-19 05:48:58.102 2025-03-19 05:48:58.102 900 TIP 434962 6058 \N \N 6032382 2025-03-19 05:48:58.318 2025-03-19 05:48:58.318 900 FEE 434962 9346 \N \N 6032383 2025-03-19 05:48:58.318 2025-03-19 05:48:58.318 8100 TIP 434962 17014 \N \N 6032427 2025-03-19 05:52:50.214 2025-03-19 05:52:50.214 2100 FEE 434920 1737 \N \N 6032428 2025-03-19 05:52:50.214 2025-03-19 05:52:50.214 18900 TIP 434920 20551 \N \N 6032441 2025-03-19 05:54:02.508 2025-03-19 05:54:02.508 2100 FEE 434859 987 \N \N 6032442 2025-03-19 05:54:02.508 2025-03-19 05:54:02.508 18900 TIP 434859 738 \N \N 6032445 2025-03-19 05:54:16.58 2025-03-19 05:54:16.58 2100 FEE 434845 13249 \N \N 6032446 2025-03-19 05:54:16.58 2025-03-19 05:54:16.58 18900 TIP 434845 21424 \N \N 6032466 2025-03-19 05:55:01.222 2025-03-19 05:55:01.222 2100 FEE 434791 18865 \N \N 6032467 2025-03-19 05:55:01.222 2025-03-19 05:55:01.222 18900 TIP 434791 15617 \N \N 6032478 2025-03-19 05:55:36.422 2025-03-19 05:55:36.422 2100 FEE 434797 985 \N \N 6032479 2025-03-19 05:55:36.422 2025-03-19 05:55:36.422 18900 TIP 434797 18241 \N \N 6032484 2025-03-19 05:56:03.04 2025-03-19 05:56:03.04 1000 FEE 434810 2232 \N \N 6032485 2025-03-19 05:56:03.04 2025-03-19 05:56:03.04 9000 TIP 434810 12935 \N \N 6032486 2025-03-19 05:56:11.622 2025-03-19 05:56:11.622 1000 FEE 435058 1741 \N \N 6032545 2025-03-19 06:00:27.492 2025-03-19 06:00:27.492 1100 FEE 435009 630 \N \N 6032546 2025-03-19 06:00:27.492 2025-03-19 06:00:27.492 9900 TIP 435009 19996 \N \N 6032567 2025-03-19 06:01:42.007 2025-03-19 06:01:42.007 1100 FEE 435018 15409 \N \N 6032568 2025-03-19 06:01:42.007 2025-03-19 06:01:42.007 9900 TIP 435018 8954 \N \N 6032573 2025-03-19 06:02:09.453 2025-03-19 06:02:09.453 4000 FEE 435066 4754 \N \N 6032574 2025-03-19 06:02:09.453 2025-03-19 06:02:09.453 36000 TIP 435066 756 \N \N 6032579 2025-03-19 06:02:48.762 2025-03-19 06:02:48.762 0 FEE 435066 15624 \N \N 6032587 2025-03-19 06:03:22.553 2025-03-19 06:03:22.553 10000 FEE 435073 17275 \N \N 6032602 2025-03-19 06:04:38.388 2025-03-19 06:04:38.388 100 FEE 434827 5173 \N \N 6032603 2025-03-19 06:04:38.388 2025-03-19 06:04:38.388 900 TIP 434827 21577 \N \N 6032624 2025-03-19 06:05:46.48 2025-03-19 06:05:46.48 900 FEE 434957 2749 \N \N 6032625 2025-03-19 06:05:46.48 2025-03-19 06:05:46.48 8100 TIP 434957 15192 \N \N 6032657 2025-03-19 06:11:08.407 2025-03-19 06:11:08.407 100 FEE 435057 14168 \N \N 6032658 2025-03-19 06:11:08.407 2025-03-19 06:11:08.407 900 TIP 435057 9347 \N \N 6032671 2025-03-19 06:16:08.305 2025-03-19 06:16:08.305 1000 FEE 435084 1959 \N \N 6032677 2025-03-19 06:18:10.016 2025-03-19 06:18:10.016 1000 FEE 435086 688 \N \N 6032680 2025-03-19 06:18:47.957 2025-03-19 06:18:47.957 2100 FEE 435002 5522 \N \N 6032681 2025-03-19 06:18:47.957 2025-03-19 06:18:47.957 18900 TIP 435002 19138 \N \N 6032689 2025-03-19 06:20:27.725 2025-03-19 06:20:27.725 1000 FEE 435088 9695 \N \N 6032712 2025-03-19 06:21:27.339 2025-03-19 06:21:27.339 1000 FEE 435090 1090 \N \N 6032728 2025-03-19 06:25:28.145 2025-03-19 06:25:28.145 1000 FEE 435094 16348 \N \N 6032731 2025-03-19 06:25:40.515 2025-03-19 06:25:40.515 1000 FEE 435095 631 \N \N 6032749 2025-03-19 06:28:52.708 2025-03-19 06:28:52.708 5000 FEE 435100 7746 \N \N 6032756 2025-03-19 06:30:36.24 2025-03-19 06:30:36.24 10000 FEE 435030 15282 \N \N 6032757 2025-03-19 06:30:36.24 2025-03-19 06:30:36.24 90000 TIP 435030 4259 \N \N 6032764 2025-03-19 06:32:24.219 2025-03-19 06:32:24.219 1000 FEE 435103 16042 \N \N 6032771 2025-03-19 06:33:25.343 2025-03-19 06:33:25.343 1000 FEE 435105 17519 \N \N 6032772 2025-03-19 06:33:35.956 2025-03-19 06:33:35.956 1000 FEE 435106 17091 \N \N 6032793 2025-03-19 06:36:25.22 2025-03-19 06:36:25.22 1000 FEE 435097 1244 \N \N 6032794 2025-03-19 06:36:25.22 2025-03-19 06:36:25.22 9000 TIP 435097 20755 \N \N 6032795 2025-03-19 06:36:25.467 2025-03-19 06:36:25.467 1000 FEE 435097 18178 \N \N 6032796 2025-03-19 06:36:25.467 2025-03-19 06:36:25.467 9000 TIP 435097 762 \N \N 6032832 2025-03-19 06:42:44.39 2025-03-19 06:42:44.39 2100 FEE 435018 12921 \N \N 6032833 2025-03-19 06:42:44.39 2025-03-19 06:42:44.39 18900 TIP 435018 1652 \N \N 6032870 2025-03-19 06:45:51.233 2025-03-19 06:45:51.233 100 FEE 433649 21803 \N \N 6032871 2025-03-19 06:45:51.233 2025-03-19 06:45:51.233 900 TIP 433649 1585 \N \N 6032872 2025-03-19 06:45:51.49 2025-03-19 06:45:51.49 100 FEE 433649 20956 \N \N 6032873 2025-03-19 06:45:51.49 2025-03-19 06:45:51.49 900 TIP 433649 909 \N \N 6032878 2025-03-19 06:45:52.242 2025-03-19 06:45:52.242 100 FEE 433649 12821 \N \N 6032879 2025-03-19 06:45:52.242 2025-03-19 06:45:52.242 900 TIP 433649 5852 \N \N 6032884 2025-03-19 06:45:53.904 2025-03-19 06:45:53.904 100 FEE 433649 17064 \N \N 6032885 2025-03-19 06:45:53.904 2025-03-19 06:45:53.904 900 TIP 433649 8242 \N \N 6032906 2025-03-19 06:48:25.218 2025-03-19 06:48:25.218 1000 FEE 434600 770 \N \N 6032907 2025-03-19 06:48:25.218 2025-03-19 06:48:25.218 9000 TIP 434600 21357 \N \N 6032930 2025-03-19 06:53:49.998 2025-03-19 06:53:49.998 2100 FEE 434845 10096 \N \N 6032931 2025-03-19 06:53:49.998 2025-03-19 06:53:49.998 18900 TIP 434845 2322 \N \N 6032945 2025-03-19 06:55:46.041 2025-03-19 06:55:46.041 2100 FEE 435123 5377 \N \N 6032946 2025-03-19 06:55:46.041 2025-03-19 06:55:46.041 18900 TIP 435123 11523 \N \N 6032953 2025-03-19 06:57:06.663 2025-03-19 06:57:06.663 8300 FEE 435116 17030 \N \N 6032954 2025-03-19 06:57:06.663 2025-03-19 06:57:06.663 74700 TIP 435116 5597 \N \N 6032976 2025-03-19 06:58:55.475 2025-03-19 06:58:55.475 1000 FEE 435030 12490 \N \N 6032977 2025-03-19 06:58:55.475 2025-03-19 06:58:55.475 9000 TIP 435030 676 \N \N 6032995 2025-03-19 07:00:48.435 2025-03-19 07:00:48.435 3300 FEE 435059 2609 \N \N 6032996 2025-03-19 07:00:48.435 2025-03-19 07:00:48.435 29700 TIP 435059 876 \N \N 6033007 2025-03-19 07:02:39.414 2025-03-19 07:02:39.414 100000 FEE 435140 9906 \N \N 6033032 2025-03-19 07:02:57.094 2025-03-19 07:02:57.094 8300 FEE 434791 1094 \N \N 6032140 2025-03-19 05:22:11.825 2025-03-19 05:22:11.825 27000 FEE 434958 6137 \N \N 6032141 2025-03-19 05:22:11.825 2025-03-19 05:22:11.825 243000 TIP 434958 980 \N \N 6032168 2025-03-19 05:26:34.526 2025-03-19 05:26:34.526 1000 FEE 435025 2961 \N \N 6032173 2025-03-19 05:26:54.934 2025-03-19 05:26:54.934 2100 FEE 435001 11897 \N \N 6032174 2025-03-19 05:26:54.934 2025-03-19 05:26:54.934 18900 TIP 435001 21047 \N \N 6032221 2025-03-19 05:30:57.208 2025-03-19 05:30:57.208 3200 FEE 434991 15180 \N \N 6032222 2025-03-19 05:30:57.208 2025-03-19 05:30:57.208 28800 TIP 434991 7667 \N \N 6032230 2025-03-19 05:31:16.054 2025-03-19 05:31:16.054 5400 FEE 434498 21393 \N \N 6032231 2025-03-19 05:31:16.054 2025-03-19 05:31:16.054 48600 TIP 434498 10469 \N \N 6032238 2025-03-19 05:31:41.459 2025-03-19 05:31:41.459 2700 FEE 435019 3544 \N \N 6032239 2025-03-19 05:31:41.459 2025-03-19 05:31:41.459 24300 TIP 435019 919 \N \N 6032252 2025-03-19 05:32:30.452 2025-03-19 05:32:30.452 700 FEE 435031 17103 \N \N 6032253 2025-03-19 05:32:30.452 2025-03-19 05:32:30.452 6300 TIP 435031 5865 \N \N 6032256 2025-03-19 05:34:42.334 2025-03-19 05:34:42.334 1000 FEE 435037 6765 \N \N 6032289 2025-03-19 05:36:55.395 2025-03-19 05:36:55.395 2700 FEE 434962 11750 \N \N 6032290 2025-03-19 05:36:55.395 2025-03-19 05:36:55.395 24300 TIP 434962 4776 \N \N 6032319 2025-03-19 05:42:32.541 2025-03-19 05:42:32.541 2700 FEE 434791 17201 \N \N 6032320 2025-03-19 05:42:32.541 2025-03-19 05:42:32.541 24300 TIP 434791 16406 \N \N 6032333 2025-03-19 05:42:33.735 2025-03-19 05:42:33.735 2700 FEE 434791 7418 \N \N 6032334 2025-03-19 05:42:33.735 2025-03-19 05:42:33.735 24300 TIP 434791 15843 \N \N 6032344 2025-03-19 05:43:39.135 2025-03-19 05:43:39.135 1000 FEE 435044 5758 \N \N 6032350 2025-03-19 05:45:09.858 2025-03-19 05:45:09.858 1000 FEE 435045 17570 \N \N 6032351 2025-03-19 05:45:09.858 2025-03-19 05:45:09.858 9000 TIP 435045 19673 \N \N 6032372 2025-03-19 05:48:16.78 2025-03-19 05:48:16.78 900 FEE 435030 9346 \N \N 6032373 2025-03-19 05:48:16.78 2025-03-19 05:48:16.78 8100 TIP 435030 20647 \N \N 6032376 2025-03-19 05:48:18.309 2025-03-19 05:48:18.309 90000 FEE 435030 9969 \N \N 6032377 2025-03-19 05:48:18.309 2025-03-19 05:48:18.309 810000 TIP 435030 6191 \N \N 6032420 2025-03-19 05:51:04.545 2025-03-19 05:51:04.545 10000 FEE 435053 5017 \N \N 6032448 2025-03-19 05:54:29.004 2025-03-19 05:54:29.004 2100 FEE 434842 16440 \N \N 6032449 2025-03-19 05:54:29.004 2025-03-19 05:54:29.004 18900 TIP 434842 20073 \N \N 6032450 2025-03-19 05:54:37.965 2025-03-19 05:54:37.965 100 FEE 434990 6430 \N \N 6032451 2025-03-19 05:54:37.965 2025-03-19 05:54:37.965 900 TIP 434990 21058 \N \N 6032456 2025-03-19 05:54:41.032 2025-03-19 05:54:41.032 900 FEE 435004 21639 \N \N 6032457 2025-03-19 05:54:41.032 2025-03-19 05:54:41.032 8100 TIP 435004 992 \N \N 6032468 2025-03-19 05:55:11.264 2025-03-19 05:55:11.264 1000 FEE 435057 9537 \N \N 6032476 2025-03-19 05:55:28.974 2025-03-19 05:55:28.974 2100 FEE 434798 8059 \N \N 6032477 2025-03-19 05:55:28.974 2025-03-19 05:55:28.974 18900 TIP 434798 14515 \N \N 6032492 2025-03-19 05:56:18.456 2025-03-19 05:56:18.456 2100 FEE 434796 5306 \N \N 6032493 2025-03-19 05:56:18.456 2025-03-19 05:56:18.456 18900 TIP 434796 2774 \N \N 6032499 2025-03-19 05:56:24.059 2025-03-19 05:56:24.059 1000 FEE 434991 1620 \N \N 6032500 2025-03-19 05:56:24.059 2025-03-19 05:56:24.059 9000 TIP 434991 11776 \N \N 6032526 2025-03-19 05:59:02.876 2025-03-19 05:59:02.876 90000 FEE 435046 7376 \N \N 6032527 2025-03-19 05:59:02.876 2025-03-19 05:59:02.876 810000 TIP 435046 10283 \N \N 6032531 2025-03-19 05:59:32.757 2025-03-19 05:59:32.757 1000 FEE 435066 2670 \N \N 6032557 2025-03-19 06:00:59.378 2025-03-19 06:00:59.378 1100 FEE 435032 6653 \N \N 6032558 2025-03-19 06:00:59.378 2025-03-19 06:00:59.378 9900 TIP 435032 14910 \N \N 6032561 2025-03-19 06:01:08.303 2025-03-19 06:01:08.303 1100 FEE 435043 15719 \N \N 6032562 2025-03-19 06:01:08.303 2025-03-19 06:01:08.303 9900 TIP 435043 8541 \N \N 6032566 2025-03-19 06:01:38.056 2025-03-19 06:01:38.056 1000 FEE 435069 1658 \N \N 6032571 2025-03-19 06:01:44.381 2025-03-19 06:01:44.381 1000 FEE 434994 21405 \N \N 6032572 2025-03-19 06:01:44.381 2025-03-19 06:01:44.381 9000 TIP 434994 4798 \N \N 6032589 2025-03-19 06:03:39.453 2025-03-19 06:03:39.453 1000 FEE 435074 667 \N \N 6032610 2025-03-19 06:05:00.322 2025-03-19 06:05:00.322 900 FEE 433865 20058 \N \N 6032611 2025-03-19 06:05:00.322 2025-03-19 06:05:00.322 8100 TIP 433865 2327 \N \N 6032628 2025-03-19 06:06:02.308 2025-03-19 06:06:02.308 100 FEE 435071 19494 \N \N 6032629 2025-03-19 06:06:02.308 2025-03-19 06:06:02.308 900 TIP 435071 15115 \N \N 6032637 2025-03-19 06:06:14.928 2025-03-19 06:06:14.928 1000 FEE 435077 4973 \N \N 6032644 2025-03-19 06:08:00.077 2025-03-19 06:08:00.077 1000 FEE 435037 20768 \N \N 6032645 2025-03-19 06:08:00.077 2025-03-19 06:08:00.077 9000 TIP 435037 3400 \N \N 6032651 2025-03-19 06:10:13.179 2025-03-19 06:10:13.179 1600 FEE 435081 4570 \N \N 6032652 2025-03-19 06:10:13.179 2025-03-19 06:10:13.179 14400 TIP 435081 11527 \N \N 6032654 2025-03-19 06:10:14.496 2025-03-19 06:10:14.496 1000 FEE 435082 5500 \N \N 6032716 2025-03-19 06:21:40.78 2025-03-19 06:21:40.78 1000 FEE 435092 4345 \N \N 6032747 2025-03-19 06:28:31.863 2025-03-19 06:28:31.863 2100 FEE 434960 4225 \N \N 6032748 2025-03-19 06:28:31.863 2025-03-19 06:28:31.863 18900 TIP 434960 5828 \N \N 6032776 2025-03-19 06:34:36.762 2025-03-19 06:34:36.762 1600 FEE 435105 11450 \N \N 6032777 2025-03-19 06:34:36.762 2025-03-19 06:34:36.762 14400 TIP 435105 20756 \N \N 6032787 2025-03-19 06:36:24.653 2025-03-19 06:36:24.653 1000 FEE 435097 21291 \N \N 6032788 2025-03-19 06:36:24.653 2025-03-19 06:36:24.653 9000 TIP 435097 10280 \N \N 6032825 2025-03-19 06:41:58.703 2025-03-19 06:41:58.703 3000 FEE 435059 17116 \N \N 6032826 2025-03-19 06:41:58.703 2025-03-19 06:41:58.703 27000 TIP 435059 12220 \N \N 6032834 2025-03-19 06:42:49.141 2025-03-19 06:42:49.141 2100 FEE 434982 15243 \N \N 6032835 2025-03-19 06:42:49.141 2025-03-19 06:42:49.141 18900 TIP 434982 21057 \N \N 6032852 2025-03-19 06:43:28.83 2025-03-19 06:43:28.83 100000 FEE 435115 14015 \N \N 6032895 2025-03-19 06:47:59.102 2025-03-19 06:47:59.102 2100 FEE 435072 13759 \N \N 6032896 2025-03-19 06:47:59.102 2025-03-19 06:47:59.102 18900 TIP 435072 20616 \N \N 6032899 2025-03-19 06:48:15.93 2025-03-19 06:48:15.93 2100 FEE 434957 19333 \N \N 6032900 2025-03-19 06:48:15.93 2025-03-19 06:48:15.93 18900 TIP 434957 697 \N \N 6032904 2025-03-19 06:48:24.655 2025-03-19 06:48:24.655 1000 FEE 434600 2735 \N \N 6032905 2025-03-19 06:48:24.655 2025-03-19 06:48:24.655 9000 TIP 434600 17517 \N \N 6032915 2025-03-19 06:50:04.945 2025-03-19 06:50:04.945 4000 FEE 435115 8926 \N \N 6032916 2025-03-19 06:50:04.945 2025-03-19 06:50:04.945 36000 TIP 435115 3729 \N \N 6032923 2025-03-19 06:52:32.804 2025-03-19 06:52:32.804 10000 FEE 434994 1489 \N \N 6032924 2025-03-19 06:52:32.804 2025-03-19 06:52:32.804 90000 TIP 434994 1751 \N \N 6032987 2025-03-19 06:59:32.338 2025-03-19 06:59:32.338 3300 FEE 435063 718 \N \N 6032988 2025-03-19 06:59:32.338 2025-03-19 06:59:32.338 29700 TIP 435063 8059 \N \N 6033000 2025-03-19 07:01:58.611 2025-03-19 07:01:58.611 1000 FEE 435138 12821 \N \N 6033018 2025-03-19 07:02:56.041 2025-03-19 07:02:56.041 8300 FEE 434791 21014 \N \N 6033019 2025-03-19 07:02:56.041 2025-03-19 07:02:56.041 74700 TIP 434791 4798 \N \N 6033022 2025-03-19 07:02:56.176 2025-03-19 07:02:56.176 8300 FEE 434791 980 \N \N 6033023 2025-03-19 07:02:56.176 2025-03-19 07:02:56.176 74700 TIP 434791 14663 \N \N 6033034 2025-03-19 07:03:06.572 2025-03-19 07:03:06.572 7100 FEE 435026 9426 \N \N 6033035 2025-03-19 07:03:06.572 2025-03-19 07:03:06.572 63900 TIP 435026 18430 \N \N 6033057 2025-03-19 07:03:30.626 2025-03-19 07:03:30.626 2100 FEE 434991 8380 \N \N 6033058 2025-03-19 07:03:30.626 2025-03-19 07:03:30.626 18900 TIP 434991 21713 \N \N 6033059 2025-03-19 07:03:30.939 2025-03-19 07:03:30.939 1000 FEE 435141 10493 \N \N 6033072 2025-03-19 07:04:17.367 2025-03-19 07:04:17.367 100 FEE 435100 1130 \N \N 6033073 2025-03-19 07:04:17.367 2025-03-19 07:04:17.367 900 TIP 435100 4754 \N \N 6038780 2025-03-19 15:58:37.048 2025-03-19 15:58:37.048 27000 TIP 435657 712 \N \N 6038801 2025-03-19 16:03:10.954 2025-03-19 16:03:10.954 1000 FEE 435728 7966 \N \N 6038807 2025-03-19 16:05:37.889 2025-03-19 16:05:37.889 1000 FEE 435731 674 \N \N 6038808 2025-03-19 16:05:46.451 2025-03-19 16:05:46.451 10000 FEE 435732 1145 \N \N 6038820 2025-03-19 16:08:51.467 2025-03-19 16:08:51.467 1000 FEE 435735 5828 \N \N 6038837 2025-03-19 16:14:53.118 2025-03-19 16:14:53.118 1000 FEE 435610 1803 \N \N 6038838 2025-03-19 16:14:53.118 2025-03-19 16:14:53.118 9000 TIP 435610 675 \N \N 6038843 2025-03-19 16:15:16.26 2025-03-19 16:15:16.26 1000 FEE 435631 6687 \N \N 6038844 2025-03-19 16:15:16.26 2025-03-19 16:15:16.26 9000 TIP 435631 876 \N \N 6038864 2025-03-19 16:16:23.617 2025-03-19 16:16:23.617 1000 FEE 435580 9183 \N \N 6038865 2025-03-19 16:16:23.617 2025-03-19 16:16:23.617 9000 TIP 435580 15588 \N \N 6038883 2025-03-19 16:19:00.54 2025-03-19 16:19:00.54 400 FEE 435708 17526 \N \N 6038884 2025-03-19 16:19:00.54 2025-03-19 16:19:00.54 3600 TIP 435708 7966 \N \N 6038902 2025-03-19 16:29:04.613 2025-03-19 16:29:04.613 1000 FEE 435744 18673 \N \N 6038904 2025-03-19 16:29:20.547 2025-03-19 16:29:20.547 2300 FEE 435728 2832 \N \N 6038905 2025-03-19 16:29:20.547 2025-03-19 16:29:20.547 20700 TIP 435728 14169 \N \N 6038982 2025-03-19 16:41:30.014 2025-03-19 16:41:30.014 2700 FEE 435552 1881 \N \N 6038983 2025-03-19 16:41:30.014 2025-03-19 16:41:30.014 24300 TIP 435552 15408 \N \N 6038996 2025-03-19 16:41:44.969 2025-03-19 16:41:44.969 2700 FEE 435552 780 \N \N 6038997 2025-03-19 16:41:44.969 2025-03-19 16:41:44.969 24300 TIP 435552 21222 \N \N 6039004 2025-03-19 16:42:56.971 2025-03-19 16:42:56.971 1000 FEE 435748 21600 \N \N 6039031 2025-03-19 16:54:00.24 2025-03-19 16:54:00.24 2700 FEE 435531 5775 \N \N 6039032 2025-03-19 16:54:00.24 2025-03-19 16:54:00.24 24300 TIP 435531 19576 \N \N 6039055 2025-03-19 16:57:21.619 2025-03-19 16:57:21.619 24300 TIP 435198 1478 \N \N 6039056 2025-03-19 16:57:21.991 2025-03-19 16:57:21.991 2700 FEE 435198 18608 \N \N 6039057 2025-03-19 16:57:21.991 2025-03-19 16:57:21.991 24300 TIP 435198 21033 \N \N 6039074 2025-03-19 16:58:35.417 2025-03-19 16:58:35.417 10000 FEE 435610 8448 \N \N 6039075 2025-03-19 16:58:35.417 2025-03-19 16:58:35.417 90000 TIP 435610 16410 \N \N 6039095 2025-03-19 16:59:36.533 2025-03-19 16:59:36.533 1000 FEE 435328 1817 \N \N 6039096 2025-03-19 16:59:36.533 2025-03-19 16:59:36.533 9000 TIP 435328 21599 \N \N 6039099 2025-03-19 16:59:36.964 2025-03-19 16:59:36.964 1000 FEE 435328 10821 \N \N 6039100 2025-03-19 16:59:36.964 2025-03-19 16:59:36.964 9000 TIP 435328 998 \N \N 6039115 2025-03-19 16:59:38.496 2025-03-19 16:59:38.496 1000 FEE 435328 1316 \N \N 6039116 2025-03-19 16:59:38.496 2025-03-19 16:59:38.496 9000 TIP 435328 10849 \N \N 6039127 2025-03-19 16:59:40.496 2025-03-19 16:59:40.496 1000 FEE 435328 1571 \N \N 6039128 2025-03-19 16:59:40.496 2025-03-19 16:59:40.496 9000 TIP 435328 2151 \N \N 6039151 2025-03-19 16:59:55.973 2025-03-19 16:59:55.973 9000 FEE 435711 17552 \N \N 6039152 2025-03-19 16:59:55.973 2025-03-19 16:59:55.973 81000 TIP 435711 16753 \N \N 6039161 2025-03-19 17:00:35.019 2025-03-19 17:00:35.019 1000 FEE 435754 6268 \N \N 6039163 2025-03-19 17:00:40.504 2025-03-19 17:00:40.504 0 FEE 435753 11288 \N \N 6039164 2025-03-19 17:00:48.545 2025-03-19 17:00:48.545 0 FEE 435752 979 \N \N 6039185 2025-03-19 17:11:28.471 2025-03-19 17:11:28.471 100 FEE 435178 19446 \N \N 6039186 2025-03-19 17:11:28.471 2025-03-19 17:11:28.471 900 TIP 435178 16912 \N \N 6039191 2025-03-19 17:11:50.329 2025-03-19 17:11:50.329 1000 FEE 435759 2338 \N \N 6039194 2025-03-19 17:11:59.66 2025-03-19 17:11:59.66 1000 FEE 435753 8380 \N \N 6039195 2025-03-19 17:11:59.66 2025-03-19 17:11:59.66 9000 TIP 435753 18526 \N \N 6039196 2025-03-19 17:12:08.824 2025-03-19 17:12:08.824 100 FEE 435676 6382 \N \N 6039197 2025-03-19 17:12:08.824 2025-03-19 17:12:08.824 900 TIP 435676 21062 \N \N 6039213 2025-03-19 17:13:07.995 2025-03-19 17:13:07.995 1000 FEE 435760 6616 \N \N 6039223 2025-03-19 17:13:41.982 2025-03-19 17:13:41.982 2700 FEE 435365 5195 \N \N 6039224 2025-03-19 17:13:41.982 2025-03-19 17:13:41.982 24300 TIP 435365 13177 \N \N 6039242 2025-03-19 17:22:24.878 2025-03-19 17:22:24.878 1000 FEE 435763 9337 \N \N 6039259 2025-03-19 17:26:40.13 2025-03-19 17:26:40.13 2100 FEE 435596 5293 \N \N 6039260 2025-03-19 17:26:40.13 2025-03-19 17:26:40.13 18900 TIP 435596 20511 \N \N 6039267 2025-03-19 17:26:43.739 2025-03-19 17:26:43.739 2100 FEE 435261 17638 \N \N 6039268 2025-03-19 17:26:43.739 2025-03-19 17:26:43.739 18900 TIP 435261 4043 \N \N 6032323 2025-03-19 05:42:32.834 2025-03-19 05:42:32.834 2700 FEE 434791 704 \N \N 6032324 2025-03-19 05:42:32.834 2025-03-19 05:42:32.834 24300 TIP 434791 17162 \N \N 6032341 2025-03-19 05:42:35.455 2025-03-19 05:42:35.455 2700 FEE 434791 20849 \N \N 6032342 2025-03-19 05:42:35.455 2025-03-19 05:42:35.455 24300 TIP 434791 21400 \N \N 6032359 2025-03-19 05:46:27.229 2025-03-19 05:46:27.229 27000 FEE 435042 802 \N \N 6032360 2025-03-19 05:46:27.229 2025-03-19 05:46:27.229 243000 TIP 435042 9529 \N \N 6032378 2025-03-19 05:48:49.766 2025-03-19 05:48:49.766 90000 FEE 434791 12821 \N \N 6032379 2025-03-19 05:48:49.766 2025-03-19 05:48:49.766 810000 TIP 434791 7903 \N \N 6032389 2025-03-19 05:49:47.764 2025-03-19 05:49:47.764 0 FEE 435049 21522 \N \N 6032398 2025-03-19 05:50:26.181 2025-03-19 05:50:26.181 3000 FEE 434791 20701 \N \N 6032399 2025-03-19 05:50:26.181 2025-03-19 05:50:26.181 27000 TIP 434791 14818 \N \N 6032405 2025-03-19 05:50:44.549 2025-03-19 05:50:44.549 2100 FEE 434791 21063 \N \N 6032406 2025-03-19 05:50:44.549 2025-03-19 05:50:44.549 18900 TIP 434791 21131 \N \N 6032413 2025-03-19 05:50:57.287 2025-03-19 05:50:57.287 2100 FEE 434975 10102 \N \N 6032414 2025-03-19 05:50:57.287 2025-03-19 05:50:57.287 18900 TIP 434975 5637 \N \N 6032415 2025-03-19 05:50:59.142 2025-03-19 05:50:59.142 1000 FEE 435052 732 \N \N 6032418 2025-03-19 05:51:04.169 2025-03-19 05:51:04.169 2100 FEE 435018 16809 \N \N 6032419 2025-03-19 05:51:04.169 2025-03-19 05:51:04.169 18900 TIP 435018 1326 \N \N 6032434 2025-03-19 05:53:29.466 2025-03-19 05:53:29.466 1000 FEE 435054 13574 \N \N 6032443 2025-03-19 05:54:13.587 2025-03-19 05:54:13.587 1000 FEE 435055 620 \N \N 6032447 2025-03-19 05:54:27.996 2025-03-19 05:54:27.996 50000 FEE 435056 2460 \N \N 6032458 2025-03-19 05:54:41.814 2025-03-19 05:54:41.814 100 FEE 435000 12721 \N \N 6032459 2025-03-19 05:54:41.814 2025-03-19 05:54:41.814 900 TIP 435000 17696 \N \N 6032470 2025-03-19 05:55:16.834 2025-03-19 05:55:16.834 10000 FEE 435019 6717 \N \N 6032471 2025-03-19 05:55:16.834 2025-03-19 05:55:16.834 90000 TIP 435019 12102 \N \N 6032494 2025-03-19 05:56:23.208 2025-03-19 05:56:23.208 1000 FEE 435059 2749 \N \N 6032497 2025-03-19 05:56:23.883 2025-03-19 05:56:23.883 1000 FEE 434991 1705 \N \N 6032498 2025-03-19 05:56:23.883 2025-03-19 05:56:23.883 9000 TIP 434991 5646 \N \N 6032508 2025-03-19 05:57:13.917 2025-03-19 05:57:13.917 100 FEE 435021 21547 \N \N 6032509 2025-03-19 05:57:13.917 2025-03-19 05:57:13.917 900 TIP 435021 5306 \N \N 6032518 2025-03-19 05:58:40.035 2025-03-19 05:58:40.035 1000 FEE 435064 18412 \N \N 6032528 2025-03-19 05:59:10.328 2025-03-19 05:59:10.328 2100 FEE 435059 2757 \N \N 6032529 2025-03-19 05:59:10.328 2025-03-19 05:59:10.328 18900 TIP 435059 6463 \N \N 6032547 2025-03-19 06:00:48.663 2025-03-19 06:00:48.663 1100 FEE 435013 775 \N \N 6032548 2025-03-19 06:00:48.663 2025-03-19 06:00:48.663 9900 TIP 435013 17209 \N \N 6032564 2025-03-19 06:01:36.688 2025-03-19 06:01:36.688 1000 FEE 435067 11515 \N \N 6032593 2025-03-19 06:04:30.898 2025-03-19 06:04:30.898 1000 FEE 435075 18232 \N \N 6032604 2025-03-19 06:04:49.98 2025-03-19 06:04:49.98 4000 FEE 435030 7558 \N \N 6032605 2025-03-19 06:04:49.98 2025-03-19 06:04:49.98 36000 TIP 435030 3729 \N \N 6032638 2025-03-19 06:07:06.76 2025-03-19 06:07:06.76 1000 FEE 435078 12768 \N \N 6032646 2025-03-19 06:08:02.528 2025-03-19 06:08:02.528 1000 FEE 435081 2000 \N \N 6032696 2025-03-19 06:20:47.132 2025-03-19 06:20:47.132 300 FEE 435002 7510 \N \N 6032697 2025-03-19 06:20:47.132 2025-03-19 06:20:47.132 2700 TIP 435002 7583 \N \N 6032726 2025-03-19 06:25:03.306 2025-03-19 06:25:03.306 1000 FEE 435093 21555 \N \N 6032737 2025-03-19 06:26:38.328 2025-03-19 06:26:38.328 2600 FEE 435095 749 \N \N 6032738 2025-03-19 06:26:38.328 2025-03-19 06:26:38.328 23400 TIP 435095 678 \N \N 6032743 2025-03-19 06:27:38.515 2025-03-19 06:27:38.515 1000 FEE 435097 20554 \N \N 6032763 2025-03-19 06:32:14.878 2025-03-19 06:32:14.878 1000 FEE 435102 4225 \N \N 6032765 2025-03-19 06:32:32.317 2025-03-19 06:32:32.317 1000 FEE 435104 10016 \N \N 6032791 2025-03-19 06:36:25.021 2025-03-19 06:36:25.021 1000 FEE 435097 9177 \N \N 6032792 2025-03-19 06:36:25.021 2025-03-19 06:36:25.021 9000 TIP 435097 1010 \N \N 6032800 2025-03-19 06:39:07.355 2025-03-19 06:39:07.355 100 FEE 432920 19378 \N \N 6032801 2025-03-19 06:39:07.355 2025-03-19 06:39:07.355 900 TIP 432920 15147 \N \N 6032803 2025-03-19 06:39:16.266 2025-03-19 06:39:16.266 1000 FEE 435110 15273 \N \N 6032804 2025-03-19 06:39:40.838 2025-03-19 06:39:40.838 0 FEE 435109 17541 \N \N 6032805 2025-03-19 06:39:48.237 2025-03-19 06:39:48.237 0 FEE 435109 14688 \N \N 6032810 2025-03-19 06:40:00.551 2025-03-19 06:40:00.551 1000 FEE 434721 1512 \N \N 6032811 2025-03-19 06:40:00.551 2025-03-19 06:40:00.551 9000 TIP 434721 21526 \N \N 6032854 2025-03-19 06:44:41.097 2025-03-19 06:44:41.097 500 FEE 435059 9109 \N \N 6032855 2025-03-19 06:44:41.097 2025-03-19 06:44:41.097 4500 TIP 435059 17091 \N \N 6032866 2025-03-19 06:45:50.153 2025-03-19 06:45:50.153 200 FEE 433649 21383 \N \N 6032867 2025-03-19 06:45:50.153 2025-03-19 06:45:50.153 1800 TIP 433649 20222 \N \N 6032874 2025-03-19 06:45:51.74 2025-03-19 06:45:51.74 100 FEE 433649 685 \N \N 6032875 2025-03-19 06:45:51.74 2025-03-19 06:45:51.74 900 TIP 433649 1489 \N \N 6032894 2025-03-19 06:47:50.089 2025-03-19 06:47:50.089 1000 FEE 435119 20504 \N \N 6032908 2025-03-19 06:48:25.631 2025-03-19 06:48:25.631 1000 FEE 434600 19992 \N \N 6032909 2025-03-19 06:48:25.631 2025-03-19 06:48:25.631 9000 TIP 434600 15588 \N \N 6032919 2025-03-19 06:51:05.228 2025-03-19 06:51:05.228 0 FEE 435120 622 \N \N 6032948 2025-03-19 06:56:40.963 2025-03-19 06:56:40.963 10000 FEE 435128 12490 \N \N 6032961 2025-03-19 06:57:43.344 2025-03-19 06:57:43.344 1000 FEE 435132 6382 \N \N 6032964 2025-03-19 06:57:59.206 2025-03-19 06:57:59.206 1000 FEE 435030 12738 \N \N 6032965 2025-03-19 06:57:59.206 2025-03-19 06:57:59.206 9000 TIP 435030 6419 \N \N 6033045 2025-03-19 07:03:26.84 2025-03-19 07:03:26.84 1000 FEE 434665 1577 \N \N 6033046 2025-03-19 07:03:26.84 2025-03-19 07:03:26.84 9000 TIP 434665 1624 \N \N 6033055 2025-03-19 07:03:29.015 2025-03-19 07:03:29.015 1000 FEE 434665 16876 \N \N 6033056 2025-03-19 07:03:29.015 2025-03-19 07:03:29.015 9000 TIP 434665 18930 \N \N 6033065 2025-03-19 07:03:51.677 2025-03-19 07:03:51.677 900 FEE 434958 14705 \N \N 6033066 2025-03-19 07:03:51.677 2025-03-19 07:03:51.677 8100 TIP 434958 11992 \N \N 6033107 2025-03-19 07:07:39.341 2025-03-19 07:07:39.341 100 FEE 434939 18313 \N \N 6033108 2025-03-19 07:07:39.341 2025-03-19 07:07:39.341 900 TIP 434939 21180 \N \N 6033114 2025-03-19 07:07:44.982 2025-03-19 07:07:44.982 1600 FEE 435125 3686 \N \N 6033115 2025-03-19 07:07:44.982 2025-03-19 07:07:44.982 14400 TIP 435125 16145 \N \N 6033126 2025-03-19 07:08:32.546 2025-03-19 07:08:32.546 100 FEE 434994 17708 \N \N 6033127 2025-03-19 07:08:32.546 2025-03-19 07:08:32.546 900 TIP 434994 8570 \N \N 6033173 2025-03-19 07:11:50.951 2025-03-19 07:11:50.951 1000 FEE 434559 21794 \N \N 6033174 2025-03-19 07:11:50.951 2025-03-19 07:11:50.951 9000 TIP 434559 12769 \N \N 6033182 2025-03-19 07:12:12.772 2025-03-19 07:12:12.772 1000 FEE 434353 14278 \N \N 6033183 2025-03-19 07:12:12.772 2025-03-19 07:12:12.772 9000 TIP 434353 12946 \N \N 6033189 2025-03-19 07:12:15.865 2025-03-19 07:12:15.865 1000 FEE 434353 6191 \N \N 6033190 2025-03-19 07:12:15.865 2025-03-19 07:12:15.865 9000 TIP 434353 21172 \N \N 6033193 2025-03-19 07:12:16.792 2025-03-19 07:12:16.792 2100 FEE 435109 8423 \N \N 6033194 2025-03-19 07:12:16.792 2025-03-19 07:12:16.792 18900 TIP 435109 20504 \N \N 6033196 2025-03-19 07:12:28.758 2025-03-19 07:12:28.758 1000 FEE 435152 21184 \N \N 6033211 2025-03-19 07:14:20.978 2025-03-19 07:14:20.978 7100 FEE 434908 16406 \N \N 6033212 2025-03-19 07:14:20.978 2025-03-19 07:14:20.978 63900 TIP 434908 1195 \N \N 6033238 2025-03-19 07:15:20.727 2025-03-19 07:15:20.727 400 FEE 435146 13575 \N \N 6033239 2025-03-19 07:15:20.727 2025-03-19 07:15:20.727 3600 TIP 435146 16970 \N \N 6033248 2025-03-19 07:16:07.804 2025-03-19 07:16:07.804 2100 FEE 435147 2329 \N \N 6033249 2025-03-19 07:16:07.804 2025-03-19 07:16:07.804 18900 TIP 435147 2232 \N \N 6033256 2025-03-19 07:18:37.278 2025-03-19 07:18:37.278 4000 FEE 435151 696 \N \N 6033257 2025-03-19 07:18:37.278 2025-03-19 07:18:37.278 36000 TIP 435151 2347 \N \N 6037383 2025-03-19 13:19:58.343 2025-03-19 13:19:58.343 8300 FEE 435596 1411 \N \N 6037384 2025-03-19 13:19:58.343 2025-03-19 13:19:58.343 74700 TIP 435596 1064 \N \N 6037396 2025-03-19 13:20:19.545 2025-03-19 13:20:19.545 0 FEE 435595 18430 \N \N 6037398 2025-03-19 13:20:24.408 2025-03-19 13:20:24.408 3000 FEE 435542 13348 \N \N 6037399 2025-03-19 13:20:24.408 2025-03-19 13:20:24.408 27000 TIP 435542 694 \N \N 6037400 2025-03-19 13:20:25.325 2025-03-19 13:20:25.325 27000 FEE 435542 2780 \N \N 6037401 2025-03-19 13:20:25.325 2025-03-19 13:20:25.325 243000 TIP 435542 20137 \N \N 6037407 2025-03-19 13:21:07.266 2025-03-19 13:21:07.266 100 FEE 435594 20058 \N \N 6037408 2025-03-19 13:21:07.266 2025-03-19 13:21:07.266 900 TIP 435594 20205 \N \N 6037424 2025-03-19 13:21:45.623 2025-03-19 13:21:45.623 100 FEE 435578 19071 \N \N 6037425 2025-03-19 13:21:45.623 2025-03-19 13:21:45.623 900 TIP 435578 9290 \N \N 6037430 2025-03-19 13:21:46.709 2025-03-19 13:21:46.709 100 FEE 435578 20291 \N \N 6037431 2025-03-19 13:21:46.709 2025-03-19 13:21:46.709 900 TIP 435578 11798 \N \N 6037434 2025-03-19 13:21:47.338 2025-03-19 13:21:47.338 3000 FEE 435548 859 \N \N 6037435 2025-03-19 13:21:47.338 2025-03-19 13:21:47.338 27000 TIP 435548 631 \N \N 6037443 2025-03-19 13:22:08.832 2025-03-19 13:22:08.832 1000 FEE 435600 13798 \N \N 6037445 2025-03-19 13:22:23.58 2025-03-19 13:22:23.58 1000 FEE 435601 618 \N \N 6037449 2025-03-19 13:22:57.933 2025-03-19 13:22:57.933 1000 FEE 435603 1082 \N \N 6037460 2025-03-19 13:26:02.74 2025-03-19 13:26:02.74 100 FEE 435582 12368 \N \N 6037461 2025-03-19 13:26:02.74 2025-03-19 13:26:02.74 900 TIP 435582 14669 \N \N 6037464 2025-03-19 13:26:03.223 2025-03-19 13:26:03.223 100 FEE 435582 18525 \N \N 6037465 2025-03-19 13:26:03.223 2025-03-19 13:26:03.223 900 TIP 435582 896 \N \N 6037466 2025-03-19 13:26:04.805 2025-03-19 13:26:04.805 100 FEE 435582 11018 \N \N 6037467 2025-03-19 13:26:04.805 2025-03-19 13:26:04.805 900 TIP 435582 21585 \N \N 6037472 2025-03-19 13:26:05.676 2025-03-19 13:26:05.676 100 FEE 435582 5500 \N \N 6037473 2025-03-19 13:26:05.676 2025-03-19 13:26:05.676 900 TIP 435582 19735 \N \N 6037496 2025-03-19 13:30:25.713 2025-03-19 13:30:25.713 1000 FEE 435609 12656 \N \N 6037521 2025-03-19 13:33:29.229 2025-03-19 13:33:29.229 1000 FEE 435242 3729 \N \N 6037522 2025-03-19 13:33:29.229 2025-03-19 13:33:29.229 9000 TIP 435242 20243 \N \N 6037527 2025-03-19 13:36:49.101 2025-03-19 13:36:49.101 5000 FEE 435457 10549 \N \N 6037528 2025-03-19 13:36:49.101 2025-03-19 13:36:49.101 45000 TIP 435457 12965 \N \N 6037544 2025-03-19 13:38:54.25 2025-03-19 13:38:54.25 9000 FEE 435608 16950 \N \N 6037545 2025-03-19 13:38:54.25 2025-03-19 13:38:54.25 81000 TIP 435608 9906 \N \N 6037547 2025-03-19 13:39:36.063 2025-03-19 13:39:36.063 1000 FEE 435615 1723 \N \N 6037558 2025-03-19 13:42:00.478 2025-03-19 13:42:00.478 2100 FEE 435610 5852 \N \N 6037559 2025-03-19 13:42:00.478 2025-03-19 13:42:00.478 18900 TIP 435610 4798 \N \N 6037593 2025-03-19 13:47:40.276 2025-03-19 13:47:40.276 2100 FEE 435328 19943 \N \N 6037594 2025-03-19 13:47:40.276 2025-03-19 13:47:40.276 18900 TIP 435328 681 \N \N 6037609 2025-03-19 13:47:54.288 2025-03-19 13:47:54.288 9000 FEE 435619 19263 \N \N 6037610 2025-03-19 13:47:54.288 2025-03-19 13:47:54.288 81000 TIP 435619 12749 \N \N 6037617 2025-03-19 13:47:56.014 2025-03-19 13:47:56.014 2100 FEE 435458 2774 \N \N 6037618 2025-03-19 13:47:56.014 2025-03-19 13:47:56.014 18900 TIP 435458 20993 \N \N 6037668 2025-03-19 13:49:48.268 2025-03-19 13:49:48.268 2600 FEE 435328 12749 \N \N 6037669 2025-03-19 13:49:48.268 2025-03-19 13:49:48.268 23400 TIP 435328 1326 \N \N 6037676 2025-03-19 13:49:59.748 2025-03-19 13:49:59.748 2100 FEE 435457 12139 \N \N 6037677 2025-03-19 13:49:59.748 2025-03-19 13:49:59.748 18900 TIP 435457 640 \N \N 6037678 2025-03-19 13:50:00.612 2025-03-19 13:50:00.612 2100 FEE 435457 17682 \N \N 6037679 2025-03-19 13:50:00.612 2025-03-19 13:50:00.612 18900 TIP 435457 15060 \N \N 6037688 2025-03-19 13:50:10.034 2025-03-19 13:50:10.034 2100 FEE 435046 617 \N \N 6037689 2025-03-19 13:50:10.034 2025-03-19 13:50:10.034 18900 TIP 435046 1141 \N \N 6037696 2025-03-19 13:51:00.974 2025-03-19 13:51:00.974 2500 FEE 435489 11621 \N \N 6037697 2025-03-19 13:51:00.974 2025-03-19 13:51:00.974 22500 TIP 435489 13361 \N \N 6037746 2025-03-19 13:51:52.101 2025-03-19 13:51:52.101 2100 FEE 435030 21064 \N \N 6037747 2025-03-19 13:51:52.101 2025-03-19 13:51:52.101 18900 TIP 435030 21148 \N \N 6037769 2025-03-19 13:52:10.486 2025-03-19 13:52:10.486 2100 FEE 435544 1319 \N \N 6037770 2025-03-19 13:52:10.486 2025-03-19 13:52:10.486 18900 TIP 435544 1141 \N \N 6037808 2025-03-19 13:52:16.932 2025-03-19 13:52:16.932 2100 FEE 435544 15337 \N \N 6037809 2025-03-19 13:52:16.932 2025-03-19 13:52:16.932 18900 TIP 435544 721 \N \N 6037812 2025-03-19 13:52:17.372 2025-03-19 13:52:17.372 2100 FEE 435544 20094 \N \N 6037813 2025-03-19 13:52:17.372 2025-03-19 13:52:17.372 18900 TIP 435544 20861 \N \N 6037860 2025-03-19 13:54:47.424 2025-03-19 13:54:47.424 90000 FEE 435488 21051 \N \N 6037861 2025-03-19 13:54:47.424 2025-03-19 13:54:47.424 810000 TIP 435488 1162 \N \N 6037868 2025-03-19 13:54:59.946 2025-03-19 13:54:59.946 100 FEE 435628 1136 \N \N 6037869 2025-03-19 13:54:59.946 2025-03-19 13:54:59.946 900 TIP 435628 848 \N \N 6037880 2025-03-19 13:57:16.957 2025-03-19 13:57:16.957 2500 FEE 435615 12911 \N \N 6037881 2025-03-19 13:57:16.957 2025-03-19 13:57:16.957 22500 TIP 435615 13361 \N \N 6037883 2025-03-19 13:58:51.312 2025-03-19 13:58:51.312 1000 FEE 435631 9476 \N \N 6037893 2025-03-19 14:01:59.462 2025-03-19 14:01:59.462 7100 FEE 435463 17157 \N \N 6037894 2025-03-19 14:01:59.462 2025-03-19 14:01:59.462 63900 TIP 435463 20450 \N \N 6037897 2025-03-19 14:02:34.523 2025-03-19 14:02:34.523 1000 FEE 435637 5728 \N \N 6037910 2025-03-19 14:04:54.03 2025-03-19 14:04:54.03 2100 FEE 434642 21427 \N \N 6037911 2025-03-19 14:04:54.03 2025-03-19 14:04:54.03 18900 TIP 434642 21768 \N \N 6037919 2025-03-19 14:05:16.552 2025-03-19 14:05:16.552 2100 FEE 434485 18430 \N \N 6037920 2025-03-19 14:05:16.552 2025-03-19 14:05:16.552 18900 TIP 434485 16177 \N \N 6037927 2025-03-19 14:09:00.397 2025-03-19 14:09:00.397 2100 FEE 435457 2528 \N \N 6037928 2025-03-19 14:09:00.397 2025-03-19 14:09:00.397 18900 TIP 435457 680 \N \N 6038872 2025-03-19 16:17:51.317 2025-03-19 16:17:51.317 9000 TIP 435505 21451 \N \N 6038881 2025-03-19 16:18:17.047 2025-03-19 16:18:17.047 1000 FEE 435729 7913 \N \N 6038882 2025-03-19 16:18:17.047 2025-03-19 16:18:17.047 9000 TIP 435729 1495 \N \N 6038891 2025-03-19 16:23:03.76 2025-03-19 16:23:03.76 0 FEE 435741 6058 \N \N 6038930 2025-03-19 16:29:44.819 2025-03-19 16:29:44.819 2300 FEE 435596 21269 \N \N 6038931 2025-03-19 16:29:44.819 2025-03-19 16:29:44.819 20700 TIP 435596 3304 \N \N 6038945 2025-03-19 16:30:44.467 2025-03-19 16:30:44.467 22700 FEE 432920 17184 \N \N 6038946 2025-03-19 16:30:44.467 2025-03-19 16:30:44.467 204300 TIP 432920 20647 \N \N 6038950 2025-03-19 16:31:24.569 2025-03-19 16:31:24.569 2500 FEE 435665 12222 \N \N 6038951 2025-03-19 16:31:24.569 2025-03-19 16:31:24.569 22500 TIP 435665 18241 \N \N 6038966 2025-03-19 16:35:23.232 2025-03-19 16:35:23.232 10000 FEE 435746 11648 \N \N 6038968 2025-03-19 16:36:08.718 2025-03-19 16:36:08.718 1000 FEE 435657 17673 \N \N 6038969 2025-03-19 16:36:08.718 2025-03-19 16:36:08.718 9000 TIP 435657 9364 \N \N 6038980 2025-03-19 16:41:29.801 2025-03-19 16:41:29.801 2700 FEE 435552 2734 \N \N 6038981 2025-03-19 16:41:29.801 2025-03-19 16:41:29.801 24300 TIP 435552 16834 \N \N 6038984 2025-03-19 16:41:30.176 2025-03-19 16:41:30.176 2700 FEE 435552 13177 \N \N 6038985 2025-03-19 16:41:30.176 2025-03-19 16:41:30.176 24300 TIP 435552 2151 \N \N 6038990 2025-03-19 16:41:44.45 2025-03-19 16:41:44.45 2700 FEE 435552 776 \N \N 6038991 2025-03-19 16:41:44.45 2025-03-19 16:41:44.45 24300 TIP 435552 15091 \N \N 6039002 2025-03-19 16:41:58.674 2025-03-19 16:41:58.674 1000 FEE 435747 18449 \N \N 6039049 2025-03-19 16:57:07.953 2025-03-19 16:57:07.953 2700 FEE 435181 8059 \N \N 6039050 2025-03-19 16:57:07.953 2025-03-19 16:57:07.953 24300 TIP 435181 720 \N \N 6039061 2025-03-19 16:58:20.927 2025-03-19 16:58:20.927 1000 FEE 435751 16406 \N \N 6039072 2025-03-19 16:58:31.508 2025-03-19 16:58:31.508 2700 FEE 435086 7992 \N \N 6039073 2025-03-19 16:58:31.508 2025-03-19 16:58:31.508 24300 TIP 435086 716 \N \N 6039081 2025-03-19 16:59:20.117 2025-03-19 16:59:20.117 100 FEE 435718 21766 \N \N 6039082 2025-03-19 16:59:20.117 2025-03-19 16:59:20.117 900 TIP 435718 21571 \N \N 6039085 2025-03-19 16:59:24.698 2025-03-19 16:59:24.698 100 FEE 435741 1833 \N \N 6039086 2025-03-19 16:59:24.698 2025-03-19 16:59:24.698 900 TIP 435741 20481 \N \N 6039097 2025-03-19 16:59:36.747 2025-03-19 16:59:36.747 1000 FEE 435328 18314 \N \N 6039098 2025-03-19 16:59:36.747 2025-03-19 16:59:36.747 9000 TIP 435328 6616 \N \N 6039113 2025-03-19 16:59:38.354 2025-03-19 16:59:38.354 1000 FEE 435328 1141 \N \N 6039114 2025-03-19 16:59:38.354 2025-03-19 16:59:38.354 9000 TIP 435328 18313 \N \N 6039117 2025-03-19 16:59:38.618 2025-03-19 16:59:38.618 1000 FEE 435328 6741 \N \N 6039118 2025-03-19 16:59:38.618 2025-03-19 16:59:38.618 9000 TIP 435328 4538 \N \N 6039121 2025-03-19 16:59:39.065 2025-03-19 16:59:39.065 1000 FEE 435328 20841 \N \N 6039122 2025-03-19 16:59:39.065 2025-03-19 16:59:39.065 9000 TIP 435328 1237 \N \N 6039125 2025-03-19 16:59:39.763 2025-03-19 16:59:39.763 3000 FEE 435328 1814 \N \N 6039126 2025-03-19 16:59:39.763 2025-03-19 16:59:39.763 27000 TIP 435328 956 \N \N 6039149 2025-03-19 16:59:51.034 2025-03-19 16:59:51.034 900 FEE 435711 716 \N \N 6039150 2025-03-19 16:59:51.034 2025-03-19 16:59:51.034 8100 TIP 435711 20756 \N \N 6039157 2025-03-19 16:59:58.517 2025-03-19 16:59:58.517 9000 FEE 435704 4238 \N \N 6039158 2025-03-19 16:59:58.517 2025-03-19 16:59:58.517 81000 TIP 435704 11716 \N \N 6039160 2025-03-19 17:00:15.859 2025-03-19 17:00:15.859 1000 FEE 435753 4064 \N \N 6039165 2025-03-19 17:00:59.996 2025-03-19 17:00:59.996 0 FEE 435753 10280 \N \N 6039182 2025-03-19 17:10:56.338 2025-03-19 17:10:56.338 1000 FEE 435757 9362 \N \N 6039187 2025-03-19 17:11:28.691 2025-03-19 17:11:28.691 900 FEE 435178 27 \N \N 6039188 2025-03-19 17:11:28.691 2025-03-19 17:11:28.691 8100 TIP 435178 1585 \N \N 6039189 2025-03-19 17:11:38.87 2025-03-19 17:11:38.87 2100 FEE 435657 13133 \N \N 6039190 2025-03-19 17:11:38.87 2025-03-19 17:11:38.87 18900 TIP 435657 21413 \N \N 6039198 2025-03-19 17:12:09.045 2025-03-19 17:12:09.045 900 FEE 435676 21391 \N \N 6039199 2025-03-19 17:12:09.045 2025-03-19 17:12:09.045 8100 TIP 435676 10311 \N \N 6039203 2025-03-19 17:12:25.862 2025-03-19 17:12:25.862 100 FEE 435086 21233 \N \N 6039204 2025-03-19 17:12:25.862 2025-03-19 17:12:25.862 900 TIP 435086 20871 \N \N 6039205 2025-03-19 17:12:27.73 2025-03-19 17:12:27.73 900 FEE 435086 8269 \N \N 6039206 2025-03-19 17:12:27.73 2025-03-19 17:12:27.73 8100 TIP 435086 5694 \N \N 6039207 2025-03-19 17:12:33.21 2025-03-19 17:12:33.21 1000 FEE 435196 1030 \N \N 6039208 2025-03-19 17:12:33.21 2025-03-19 17:12:33.21 9000 TIP 435196 21482 \N \N 6039209 2025-03-19 17:13:02.995 2025-03-19 17:13:02.995 100 FEE 435755 21083 \N \N 6039210 2025-03-19 17:13:02.995 2025-03-19 17:13:02.995 900 TIP 435755 7913 \N \N 6039211 2025-03-19 17:13:03.103 2025-03-19 17:13:03.103 900 FEE 435755 17710 \N \N 6039212 2025-03-19 17:13:03.103 2025-03-19 17:13:03.103 8100 TIP 435755 20502 \N \N 6039217 2025-03-19 17:13:41.452 2025-03-19 17:13:41.452 2700 FEE 435365 14785 \N \N 6039218 2025-03-19 17:13:41.452 2025-03-19 17:13:41.452 24300 TIP 435365 998 \N \N 6039243 2025-03-19 17:22:30.022 2025-03-19 17:22:30.022 21800 FEE 435189 1261 \N \N 6039244 2025-03-19 17:22:30.022 2025-03-19 17:22:30.022 196200 TIP 435189 16966 \N \N 6039263 2025-03-19 17:26:41.897 2025-03-19 17:26:41.897 2100 FEE 435497 19930 \N \N 6039264 2025-03-19 17:26:41.897 2025-03-19 17:26:41.897 18900 TIP 435497 14503 \N \N 6039283 2025-03-19 17:26:49.916 2025-03-19 17:26:49.916 2100 FEE 435577 721 \N \N 6039284 2025-03-19 17:26:49.916 2025-03-19 17:26:49.916 18900 TIP 435577 15890 \N \N 6039285 2025-03-19 17:26:50.359 2025-03-19 17:26:50.359 2100 FEE 435030 21418 \N \N 6039286 2025-03-19 17:26:50.359 2025-03-19 17:26:50.359 18900 TIP 435030 9421 \N \N 6039294 2025-03-19 17:31:35.379 2025-03-19 17:31:35.379 2100 FEE 435690 5306 \N \N 6039295 2025-03-19 17:31:35.379 2025-03-19 17:31:35.379 18900 TIP 435690 20152 \N \N 6039301 2025-03-19 17:33:21.831 2025-03-19 17:33:21.831 1000 FEE 435639 17148 \N \N 6039302 2025-03-19 17:33:21.831 2025-03-19 17:33:21.831 9000 TIP 435639 17798 \N \N 6039308 2025-03-19 17:35:38.058 2025-03-19 17:35:38.058 27000 FEE 435759 3683 \N \N 6039309 2025-03-19 17:35:38.058 2025-03-19 17:35:38.058 243000 TIP 435759 882 \N \N 6039314 2025-03-19 17:36:02.266 2025-03-19 17:36:02.266 2300 FEE 435721 20102 \N \N 6039315 2025-03-19 17:36:02.266 2025-03-19 17:36:02.266 20700 TIP 435721 14385 \N \N 6039320 2025-03-19 17:39:58.009 2025-03-19 17:39:58.009 1000 FEE 435767 21202 \N \N 6039325 2025-03-19 17:41:06.011 2025-03-19 17:41:06.011 10000 FEE 435769 17824 \N \N 6039327 2025-03-19 17:41:21.818 2025-03-19 17:41:21.818 3000 FEE 435763 21734 \N \N 6039328 2025-03-19 17:41:21.818 2025-03-19 17:41:21.818 27000 TIP 435763 1010 \N \N 6039330 2025-03-19 17:43:04.181 2025-03-19 17:43:04.181 1000 FEE 435770 8506 \N \N 6039334 2025-03-19 17:43:41.568 2025-03-19 17:43:41.568 3300 FEE 435761 21603 \N \N 6039335 2025-03-19 17:43:41.568 2025-03-19 17:43:41.568 29700 TIP 435761 5852 \N \N 6038890 2025-03-19 16:22:35.167 2025-03-19 16:22:35.167 1000 FEE 435742 20554 \N \N 6038908 2025-03-19 16:29:20.824 2025-03-19 16:29:20.824 2300 FEE 435728 21238 \N \N 6038909 2025-03-19 16:29:20.824 2025-03-19 16:29:20.824 20700 TIP 435728 21369 \N \N 6038922 2025-03-19 16:29:37.032 2025-03-19 16:29:37.032 2300 FEE 435610 21814 \N \N 6038923 2025-03-19 16:29:37.032 2025-03-19 16:29:37.032 20700 TIP 435610 19854 \N \N 6038957 2025-03-19 16:32:15.243 2025-03-19 16:32:15.243 2100 FEE 435610 2460 \N \N 6038958 2025-03-19 16:32:15.243 2025-03-19 16:32:15.243 18900 TIP 435610 20963 \N \N 6038971 2025-03-19 16:36:26.427 2025-03-19 16:36:26.427 3300 FEE 434745 1195 \N \N 6038972 2025-03-19 16:36:26.427 2025-03-19 16:36:26.427 29700 TIP 434745 9820 \N \N 6038986 2025-03-19 16:41:30.484 2025-03-19 16:41:30.484 2700 FEE 435552 20849 \N \N 6038987 2025-03-19 16:41:30.484 2025-03-19 16:41:30.484 24300 TIP 435552 18069 \N \N 6038992 2025-03-19 16:41:44.631 2025-03-19 16:41:44.631 2700 FEE 435552 822 \N \N 6038993 2025-03-19 16:41:44.631 2025-03-19 16:41:44.631 24300 TIP 435552 13100 \N \N 6038998 2025-03-19 16:41:45.137 2025-03-19 16:41:45.137 2700 FEE 435552 1985 \N \N 6038999 2025-03-19 16:41:45.137 2025-03-19 16:41:45.137 24300 TIP 435552 16059 \N \N 6039010 2025-03-19 16:45:25.92 2025-03-19 16:45:25.92 100 FEE 435690 16336 \N \N 6039011 2025-03-19 16:45:25.92 2025-03-19 16:45:25.92 900 TIP 435690 5759 \N \N 6039017 2025-03-19 16:49:10.421 2025-03-19 16:49:10.421 1000 FEE 435749 12334 \N \N 6039070 2025-03-19 16:58:31.008 2025-03-19 16:58:31.008 2700 FEE 435086 1647 \N \N 6039071 2025-03-19 16:58:31.008 2025-03-19 16:58:31.008 24300 TIP 435086 20624 \N \N 6039076 2025-03-19 16:58:40.904 2025-03-19 16:58:40.904 1000 FEE 435752 14357 \N \N 6039083 2025-03-19 16:59:20.303 2025-03-19 16:59:20.303 900 FEE 435718 21603 \N \N 6039084 2025-03-19 16:59:20.303 2025-03-19 16:59:20.303 8100 TIP 435718 19018 \N \N 6039093 2025-03-19 16:59:36.33 2025-03-19 16:59:36.33 1000 FEE 435328 940 \N \N 6039094 2025-03-19 16:59:36.33 2025-03-19 16:59:36.33 9000 TIP 435328 21416 \N \N 6039103 2025-03-19 16:59:37.315 2025-03-19 16:59:37.315 1000 FEE 435328 16966 \N \N 6039104 2025-03-19 16:59:37.315 2025-03-19 16:59:37.315 9000 TIP 435328 12277 \N \N 6039107 2025-03-19 16:59:37.78 2025-03-19 16:59:37.78 1000 FEE 435328 20023 \N \N 6039108 2025-03-19 16:59:37.78 2025-03-19 16:59:37.78 9000 TIP 435328 20291 \N \N 6039135 2025-03-19 16:59:41.299 2025-03-19 16:59:41.299 1000 FEE 435328 18274 \N \N 6039136 2025-03-19 16:59:41.299 2025-03-19 16:59:41.299 9000 TIP 435328 13169 \N \N 6039137 2025-03-19 16:59:41.483 2025-03-19 16:59:41.483 1000 FEE 435328 11314 \N \N 6039138 2025-03-19 16:59:41.483 2025-03-19 16:59:41.483 9000 TIP 435328 16876 \N \N 6039166 2025-03-19 17:01:12.527 2025-03-19 17:01:12.527 1000 FEE 435755 925 \N \N 6039173 2025-03-19 17:05:01.353 2025-03-19 17:05:01.353 1000 FEE 435756 9330 \N \N 6039215 2025-03-19 17:13:41.299 2025-03-19 17:13:41.299 2700 FEE 435365 2514 \N \N 6039216 2025-03-19 17:13:41.299 2025-03-19 17:13:41.299 24300 TIP 435365 15243 \N \N 6039221 2025-03-19 17:13:41.788 2025-03-19 17:13:41.788 2700 FEE 435365 17316 \N \N 6039222 2025-03-19 17:13:41.788 2025-03-19 17:13:41.788 24300 TIP 435365 20922 \N \N 6039226 2025-03-19 17:14:42.6 2025-03-19 17:14:42.6 1000 FEE 435761 717 \N \N 6039227 2025-03-19 17:14:55.903 2025-03-19 17:14:55.903 1000 FEE 435762 1307 \N \N 6039229 2025-03-19 17:15:23.331 2025-03-19 17:15:23.331 5000 FEE 435346 5129 \N \N 6039230 2025-03-19 17:15:23.331 2025-03-19 17:15:23.331 45000 TIP 435346 20799 \N \N 6039269 2025-03-19 17:26:44.077 2025-03-19 17:26:44.077 2100 FEE 435046 18393 \N \N 6039270 2025-03-19 17:26:44.077 2025-03-19 17:26:44.077 18900 TIP 435046 11395 \N \N 6039271 2025-03-19 17:26:44.72 2025-03-19 17:26:44.72 2100 FEE 435690 7913 \N \N 6039272 2025-03-19 17:26:44.72 2025-03-19 17:26:44.72 18900 TIP 435690 6653 \N \N 6039296 2025-03-19 17:31:49.53 2025-03-19 17:31:49.53 1000 FEE 435765 14909 \N \N 6039299 2025-03-19 17:33:21.066 2025-03-19 17:33:21.066 1000 FEE 435488 10112 \N \N 6039300 2025-03-19 17:33:21.066 2025-03-19 17:33:21.066 9000 TIP 435488 16988 \N \N 6039304 2025-03-19 17:34:25.518 2025-03-19 17:34:25.518 1000 FEE 435766 14774 \N \N 6039310 2025-03-19 17:36:00.822 2025-03-19 17:36:00.822 2300 FEE 435721 14650 \N \N 6039311 2025-03-19 17:36:00.822 2025-03-19 17:36:00.822 20700 TIP 435721 1237 \N \N 6039312 2025-03-19 17:36:01.919 2025-03-19 17:36:01.919 2300 FEE 435721 21600 \N \N 6039313 2025-03-19 17:36:01.919 2025-03-19 17:36:01.919 20700 TIP 435721 802 \N \N 6039324 2025-03-19 17:40:28.998 2025-03-19 17:40:28.998 1000 FEE 435768 1617 \N \N 6039332 2025-03-19 17:43:37.879 2025-03-19 17:43:37.879 300 FEE 435719 6765 \N \N 6039333 2025-03-19 17:43:37.879 2025-03-19 17:43:37.879 2700 TIP 435719 2593 \N \N 6039336 2025-03-19 17:44:03.895 2025-03-19 17:44:03.895 3000 FEE 435527 14169 \N \N 6039337 2025-03-19 17:44:03.895 2025-03-19 17:44:03.895 27000 TIP 435527 5195 \N \N 6039339 2025-03-19 17:44:34.086 2025-03-19 17:44:34.086 1000 FEE 435771 6749 \N \N 6039340 2025-03-19 17:44:38.436 2025-03-19 17:44:38.436 1000 FEE 435772 8326 \N \N 6039343 2025-03-19 17:45:05.691 2025-03-19 17:45:05.691 1000 FEE 435619 18423 \N \N 6039344 2025-03-19 17:45:05.691 2025-03-19 17:45:05.691 9000 TIP 435619 19071 \N \N 6039345 2025-03-19 17:45:05.963 2025-03-19 17:45:05.963 1000 FEE 435619 9552 \N \N 6039346 2025-03-19 17:45:05.963 2025-03-19 17:45:05.963 9000 TIP 435619 14503 \N \N 6039347 2025-03-19 17:45:06.059 2025-03-19 17:45:06.059 1000 FEE 435619 8469 \N \N 6039348 2025-03-19 17:45:06.059 2025-03-19 17:45:06.059 9000 TIP 435619 16809 \N \N 6039351 2025-03-19 17:45:06.423 2025-03-19 17:45:06.423 1000 FEE 435619 14607 \N \N 6039352 2025-03-19 17:45:06.423 2025-03-19 17:45:06.423 9000 TIP 435619 14818 \N \N 6039357 2025-03-19 17:46:20.887 2025-03-19 17:46:20.887 1000 FEE 435773 1733 \N \N 6039362 2025-03-19 17:46:23.82 2025-03-19 17:46:23.82 3300 FEE 435679 20745 \N \N 6039363 2025-03-19 17:46:23.82 2025-03-19 17:46:23.82 29700 TIP 435679 15180 \N \N 6039379 2025-03-19 17:57:25.794 2025-03-19 17:57:25.794 1000 FEE 435774 16442 \N \N 6039385 2025-03-19 17:59:41.583 2025-03-19 17:59:41.583 10000 FEE 435697 1713 \N \N 6039386 2025-03-19 17:59:41.583 2025-03-19 17:59:41.583 90000 TIP 435697 5809 \N \N 6039388 2025-03-19 18:01:08.755 2025-03-19 18:01:08.755 3300 FEE 418021 671 \N \N 6039389 2025-03-19 18:01:08.755 2025-03-19 18:01:08.755 29700 TIP 418021 3347 \N \N 6039395 2025-03-19 18:05:33.934 2025-03-19 18:05:33.934 1000 FEE 435410 1429 \N \N 6039396 2025-03-19 18:05:33.934 2025-03-19 18:05:33.934 9000 TIP 435410 9354 \N \N 6039399 2025-03-19 18:06:33.345 2025-03-19 18:06:33.345 10000 FEE 435746 21214 \N \N 6039400 2025-03-19 18:06:33.345 2025-03-19 18:06:33.345 90000 TIP 435746 15213 \N \N 6039401 2025-03-19 18:06:36.992 2025-03-19 18:06:36.992 1000 FEE 435776 21334 \N \N 6039403 2025-03-19 18:07:56.087 2025-03-19 18:07:56.087 1000 FEE 435777 12609 \N \N 6039341 2025-03-19 17:45:05.517 2025-03-19 17:45:05.517 1000 FEE 435619 15510 \N \N 6039342 2025-03-19 17:45:05.517 2025-03-19 17:45:05.517 9000 TIP 435619 7395 \N \N 6039349 2025-03-19 17:45:06.258 2025-03-19 17:45:06.258 1000 FEE 435619 6594 \N \N 6039350 2025-03-19 17:45:06.258 2025-03-19 17:45:06.258 9000 TIP 435619 2719 \N \N 6039353 2025-03-19 17:45:06.581 2025-03-19 17:45:06.581 1000 FEE 435619 5759 \N \N 6039354 2025-03-19 17:45:06.581 2025-03-19 17:45:06.581 9000 TIP 435619 616 \N \N 6039358 2025-03-19 17:46:22.695 2025-03-19 17:46:22.695 3300 FEE 435679 10554 \N \N 6039359 2025-03-19 17:46:22.695 2025-03-19 17:46:22.695 29700 TIP 435679 2780 \N \N 6039360 2025-03-19 17:46:23.15 2025-03-19 17:46:23.15 3300 FEE 435679 4083 \N \N 6039361 2025-03-19 17:46:23.15 2025-03-19 17:46:23.15 29700 TIP 435679 14376 \N \N 6039364 2025-03-19 17:46:47.332 2025-03-19 17:46:47.332 19800 FEE 435687 18321 \N \N 6039365 2025-03-19 17:46:47.332 2025-03-19 17:46:47.332 178200 TIP 435687 16270 \N \N 6039376 2025-03-19 17:56:31.95 2025-03-19 17:56:31.95 1000 FEE 435579 1425 \N \N 6039377 2025-03-19 17:56:31.95 2025-03-19 17:56:31.95 9000 TIP 435579 1705 \N \N 6039381 2025-03-19 17:58:16.017 2025-03-19 17:58:16.017 1000 FEE 435775 1478 \N \N 6039382 2025-03-19 17:58:55.554 2025-03-19 17:58:55.554 1000 FEE 435770 21262 \N \N 6039383 2025-03-19 17:58:55.554 2025-03-19 17:58:55.554 9000 TIP 435770 21357 \N \N 6039398 2025-03-19 18:06:30.709 2025-03-19 18:06:30.709 1000 POLL 435516 20734 \N \N 6039404 2025-03-19 18:07:59.108 2025-03-19 18:07:59.108 1000 FEE 435375 14122 \N \N 6039405 2025-03-19 18:07:59.108 2025-03-19 18:07:59.108 9000 TIP 435375 18225 \N \N 6039406 2025-03-19 18:07:59.78 2025-03-19 18:07:59.78 1000 FEE 435375 678 \N \N 6039407 2025-03-19 18:07:59.78 2025-03-19 18:07:59.78 9000 TIP 435375 7913 \N \N 6039408 2025-03-19 18:08:08.491 2025-03-19 18:08:08.491 1000 FEE 435778 805 \N \N 6039410 2025-03-19 18:08:15.558 2025-03-19 18:08:15.558 10000 FEE 435224 854 \N \N 6039411 2025-03-19 18:08:15.558 2025-03-19 18:08:15.558 90000 TIP 435224 2088 \N \N 6039412 2025-03-19 18:08:24.468 2025-03-19 18:08:24.468 1000 FEE 435779 16754 \N \N 6039413 2025-03-19 18:08:28.293 2025-03-19 18:08:28.293 10000 FEE 435151 4048 \N \N 6039414 2025-03-19 18:08:28.293 2025-03-19 18:08:28.293 90000 TIP 435151 836 \N \N 6039415 2025-03-19 18:08:32.685 2025-03-19 18:08:32.685 1000 FEE 435780 4819 \N \N 6039416 2025-03-19 18:08:34.945 2025-03-19 18:08:34.945 7700 FEE 434988 20243 \N \N 6039417 2025-03-19 18:08:34.945 2025-03-19 18:08:34.945 69300 TIP 434988 15282 \N \N 6039418 2025-03-19 18:08:36.472 2025-03-19 18:08:36.472 1000 FEE 435781 15843 \N \N 6039419 2025-03-19 18:08:39.531 2025-03-19 18:08:39.531 10000 FEE 434990 9307 \N \N 6039420 2025-03-19 18:08:39.531 2025-03-19 18:08:39.531 90000 TIP 434990 13753 \N \N 6039421 2025-03-19 18:08:45.993 2025-03-19 18:08:45.993 10000 FEE 435782 787 \N \N 6032768 2025-03-19 06:32:56.116 2025-03-19 06:32:56.116 3400 FEE 435046 15560 \N \N 6032769 2025-03-19 06:32:56.116 2025-03-19 06:32:56.116 30600 TIP 435046 19930 \N \N 6032784 2025-03-19 06:35:33.201 2025-03-19 06:35:33.201 1000 FEE 435108 21688 \N \N 6032838 2025-03-19 06:43:00.082 2025-03-19 06:43:00.082 500 FEE 435046 21281 \N \N 6037571 2025-03-19 13:43:40.607 2025-03-19 13:43:40.607 1000 FEE 435261 6360 \N \N 6037572 2025-03-19 13:43:40.607 2025-03-19 13:43:40.607 9000 TIP 435261 16988 \N \N 6037573 2025-03-19 13:44:08.839 2025-03-19 13:44:08.839 1000 FEE 435619 2963 \N \N 6037583 2025-03-19 13:47:32.325 2025-03-19 13:47:32.325 10000 FEE 435620 9916 \N \N 6037601 2025-03-19 13:47:41.227 2025-03-19 13:47:41.227 2100 FEE 435328 21768 \N \N 6037602 2025-03-19 13:47:41.227 2025-03-19 13:47:41.227 18900 TIP 435328 1007 \N \N 6037629 2025-03-19 13:48:05.322 2025-03-19 13:48:05.322 1000 FEE 435621 20854 \N \N 6037632 2025-03-19 13:48:08.851 2025-03-19 13:48:08.851 4200 FEE 435402 8544 \N \N 6037633 2025-03-19 13:48:08.851 2025-03-19 13:48:08.851 37800 TIP 435402 13100 \N \N 6037662 2025-03-19 13:49:30.588 2025-03-19 13:49:30.588 2500 FEE 435489 16679 \N \N 6037663 2025-03-19 13:49:30.588 2025-03-19 13:49:30.588 22500 TIP 435489 16679 \N \N 6037666 2025-03-19 13:49:38.964 2025-03-19 13:49:38.964 3300 FEE 435579 19673 \N \N 6037667 2025-03-19 13:49:38.964 2025-03-19 13:49:38.964 29700 TIP 435579 6526 \N \N 6037704 2025-03-19 13:51:18.514 2025-03-19 13:51:18.514 2100 FEE 434813 20551 \N \N 6037705 2025-03-19 13:51:18.514 2025-03-19 13:51:18.514 18900 TIP 434813 16769 \N \N 6037706 2025-03-19 13:51:18.993 2025-03-19 13:51:18.993 2100 FEE 434813 21714 \N \N 6037707 2025-03-19 13:51:18.993 2025-03-19 13:51:18.993 18900 TIP 434813 6058 \N \N 6037708 2025-03-19 13:51:19.185 2025-03-19 13:51:19.185 2100 FEE 434813 16357 \N \N 6037709 2025-03-19 13:51:19.185 2025-03-19 13:51:19.185 18900 TIP 434813 12049 \N \N 6037722 2025-03-19 13:51:42.533 2025-03-19 13:51:42.533 2100 FEE 435327 14278 \N \N 6037723 2025-03-19 13:51:42.533 2025-03-19 13:51:42.533 18900 TIP 435327 18011 \N \N 6037726 2025-03-19 13:51:43.01 2025-03-19 13:51:43.01 2100 FEE 435327 15282 \N \N 6037727 2025-03-19 13:51:43.01 2025-03-19 13:51:43.01 18900 TIP 435327 8269 \N \N 6037728 2025-03-19 13:51:43.261 2025-03-19 13:51:43.261 2100 FEE 435327 714 \N \N 6037729 2025-03-19 13:51:43.261 2025-03-19 13:51:43.261 18900 TIP 435327 909 \N \N 6037732 2025-03-19 13:51:44.061 2025-03-19 13:51:44.061 2100 FEE 435327 20555 \N \N 6037733 2025-03-19 13:51:44.061 2025-03-19 13:51:44.061 18900 TIP 435327 8726 \N \N 6037740 2025-03-19 13:51:50.562 2025-03-19 13:51:50.562 2100 FEE 435030 700 \N \N 6037741 2025-03-19 13:51:50.562 2025-03-19 13:51:50.562 18900 TIP 435030 2342 \N \N 6037775 2025-03-19 13:52:11.241 2025-03-19 13:52:11.241 2100 FEE 435544 7827 \N \N 6037776 2025-03-19 13:52:11.241 2025-03-19 13:52:11.241 18900 TIP 435544 889 \N \N 6037781 2025-03-19 13:52:11.98 2025-03-19 13:52:11.98 2100 FEE 435544 7746 \N \N 6032823 2025-03-19 06:41:46.085 2025-03-19 06:41:46.085 27000 FEE 435063 976 \N \N 6032824 2025-03-19 06:41:46.085 2025-03-19 06:41:46.085 243000 TIP 435063 7673 \N \N 6032830 2025-03-19 06:42:33.148 2025-03-19 06:42:33.148 3000 FEE 435098 12422 \N \N 6032831 2025-03-19 06:42:33.148 2025-03-19 06:42:33.148 27000 TIP 435098 1611 \N \N 6032836 2025-03-19 06:42:50.648 2025-03-19 06:42:50.648 2100 FEE 435089 15762 \N \N 6032837 2025-03-19 06:42:50.648 2025-03-19 06:42:50.648 18900 TIP 435089 19735 \N \N 6032848 2025-03-19 06:43:13.843 2025-03-19 06:43:13.843 2100 FEE 435092 2326 \N \N 6032849 2025-03-19 06:43:13.843 2025-03-19 06:43:13.843 18900 TIP 435092 6717 \N \N 6032892 2025-03-19 06:47:48.358 2025-03-19 06:47:48.358 15000 FEE 434588 18717 \N \N 6032893 2025-03-19 06:47:48.358 2025-03-19 06:47:48.358 135000 TIP 434588 714 \N \N 6032901 2025-03-19 06:48:22.329 2025-03-19 06:48:22.329 1000 FEE 435121 11298 \N \N 6032910 2025-03-19 06:48:26.24 2025-03-19 06:48:26.24 1000 FEE 434600 27 \N \N 6032911 2025-03-19 06:48:26.24 2025-03-19 06:48:26.24 9000 TIP 434600 20511 \N \N 6032933 2025-03-19 06:54:00.587 2025-03-19 06:54:00.587 300 FEE 435115 12935 \N \N 6032934 2025-03-19 06:54:00.587 2025-03-19 06:54:00.587 2700 TIP 435115 10094 \N \N 6032944 2025-03-19 06:55:34.537 2025-03-19 06:55:34.537 1000 FEE 435127 19777 \N \N 6032949 2025-03-19 06:56:48.408 2025-03-19 06:56:48.408 1000 FEE 435129 21647 \N \N 6032959 2025-03-19 06:57:40.522 2025-03-19 06:57:40.522 800 FEE 435046 21140 \N \N 6032960 2025-03-19 06:57:40.522 2025-03-19 06:57:40.522 7200 TIP 435046 11866 \N \N 6032973 2025-03-19 06:58:49.947 2025-03-19 06:58:49.947 1000 FEE 435133 19735 \N \N 6032984 2025-03-19 06:59:17.529 2025-03-19 06:59:17.529 500 FEE 435026 8508 \N \N 6032985 2025-03-19 06:59:17.529 2025-03-19 06:59:17.529 4500 TIP 435026 17517 \N \N 6032991 2025-03-19 07:00:05.386 2025-03-19 07:00:05.386 0 FEE 435135 17696 \N \N 6032993 2025-03-19 07:00:25.938 2025-03-19 07:00:25.938 4000 FEE 435124 13378 \N \N 6032994 2025-03-19 07:00:25.938 2025-03-19 07:00:25.938 36000 TIP 435124 11454 \N \N 6033020 2025-03-19 07:02:56.053 2025-03-19 07:02:56.053 8300 FEE 434791 725 \N \N 6033021 2025-03-19 07:02:56.053 2025-03-19 07:02:56.053 74700 TIP 434791 11999 \N \N 6033028 2025-03-19 07:02:56.638 2025-03-19 07:02:56.638 8300 FEE 434791 2322 \N \N 6033029 2025-03-19 07:02:56.638 2025-03-19 07:02:56.638 74700 TIP 434791 661 \N \N 6033030 2025-03-19 07:02:56.976 2025-03-19 07:02:56.976 8300 FEE 434791 20502 \N \N 6033031 2025-03-19 07:02:56.976 2025-03-19 07:02:56.976 74700 TIP 434791 925 \N \N 6033047 2025-03-19 07:03:26.939 2025-03-19 07:03:26.939 2100 FEE 435002 10981 \N \N 6033048 2025-03-19 07:03:26.939 2025-03-19 07:03:26.939 18900 TIP 435002 16301 \N \N 6033076 2025-03-19 07:04:18.204 2025-03-19 07:04:18.204 9000 FEE 435100 632 \N \N 6033077 2025-03-19 07:04:18.204 2025-03-19 07:04:18.204 81000 TIP 435100 16562 \N \N 6033083 2025-03-19 07:04:53.724 2025-03-19 07:04:53.724 2100 FEE 434124 21798 \N \N 6033084 2025-03-19 07:04:53.724 2025-03-19 07:04:53.724 18900 TIP 434124 21067 \N \N 6033087 2025-03-19 07:05:10.855 2025-03-19 07:05:10.855 2100 FEE 434219 21401 \N \N 6033088 2025-03-19 07:05:10.855 2025-03-19 07:05:10.855 18900 TIP 434219 15052 \N \N 6033091 2025-03-19 07:06:21.526 2025-03-19 07:06:21.526 1000 FEE 435140 2329 \N \N 6033092 2025-03-19 07:06:21.526 2025-03-19 07:06:21.526 9000 TIP 435140 20906 \N \N 6033111 2025-03-19 07:07:40.247 2025-03-19 07:07:40.247 1000 FEE 435146 1411 \N \N 6033112 2025-03-19 07:07:40.327 2025-03-19 07:07:40.327 9000 FEE 434939 1038 \N \N 6033113 2025-03-19 07:07:40.327 2025-03-19 07:07:40.327 81000 TIP 434939 16954 \N \N 6033134 2025-03-19 07:08:33.26 2025-03-19 07:08:33.26 100 FEE 434994 16562 \N \N 6033135 2025-03-19 07:08:33.26 2025-03-19 07:08:33.26 900 TIP 434994 17221 \N \N 6033152 2025-03-19 07:08:55.826 2025-03-19 07:08:55.826 1000 FEE 435148 7772 \N \N 6033191 2025-03-19 07:12:16.772 2025-03-19 07:12:16.772 1000 FEE 434353 675 \N \N 6033192 2025-03-19 07:12:16.772 2025-03-19 07:12:16.772 9000 TIP 434353 11477 \N \N 6033226 2025-03-19 07:15:14.814 2025-03-19 07:15:14.814 400 FEE 435146 7674 \N \N 6033227 2025-03-19 07:15:14.814 2025-03-19 07:15:14.814 3600 TIP 435146 1173 \N \N 6033242 2025-03-19 07:15:21.638 2025-03-19 07:15:21.638 2100 FEE 434139 14607 \N \N 6033243 2025-03-19 07:15:21.638 2025-03-19 07:15:21.638 18900 TIP 434139 19375 \N \N 6033244 2025-03-19 07:15:44.221 2025-03-19 07:15:44.221 2100 FEE 434440 2952 \N \N 6033245 2025-03-19 07:15:44.221 2025-03-19 07:15:44.221 18900 TIP 434440 17494 \N \N 6033255 2025-03-19 07:18:19.937 2025-03-19 07:18:19.937 1000 FEE 435157 21207 \N \N 6033261 2025-03-19 07:19:16.006 2025-03-19 07:19:16.006 100 FEE 433851 5758 \N \N 6033262 2025-03-19 07:19:16.006 2025-03-19 07:19:16.006 900 TIP 433851 16347 \N \N 6033265 2025-03-19 07:19:39.085 2025-03-19 07:19:39.085 1600 FEE 435136 20619 \N \N 6032839 2025-03-19 06:43:00.082 2025-03-19 06:43:00.082 4500 TIP 435046 13217 \N \N 6032844 2025-03-19 06:43:11.093 2025-03-19 06:43:11.093 2100 FEE 435040 12334 \N \N 6032845 2025-03-19 06:43:11.093 2025-03-19 06:43:11.093 18900 TIP 435040 1741 \N \N 6032921 2025-03-19 06:51:29.529 2025-03-19 06:51:29.529 0 FEE 435122 14857 \N \N 6032937 2025-03-19 06:54:55.235 2025-03-19 06:54:55.235 3000 FEE 435122 19292 \N \N 6032938 2025-03-19 06:54:55.235 2025-03-19 06:54:55.235 27000 TIP 435122 8469 \N \N 6032939 2025-03-19 06:54:56.62 2025-03-19 06:54:56.62 27000 FEE 435122 1751 \N \N 6032940 2025-03-19 06:54:56.62 2025-03-19 06:54:56.62 243000 TIP 435122 12490 \N \N 6032950 2025-03-19 06:56:55.374 2025-03-19 06:56:55.374 1000 FEE 435130 6765 \N \N 6032951 2025-03-19 06:57:05.418 2025-03-19 06:57:05.418 8300 FEE 435116 20891 \N \N 6032952 2025-03-19 06:57:05.418 2025-03-19 06:57:05.418 74700 TIP 435116 20220 \N \N 6032978 2025-03-19 06:58:58.916 2025-03-19 06:58:58.916 1000 FEE 434498 21412 \N \N 6032979 2025-03-19 06:58:58.916 2025-03-19 06:58:58.916 9000 TIP 434498 20837 \N \N 6032986 2025-03-19 06:59:18.917 2025-03-19 06:59:18.917 1000 FEE 435135 18321 \N \N 6032999 2025-03-19 07:01:25.701 2025-03-19 07:01:25.701 1000 FEE 435137 20646 \N \N 6033005 2025-03-19 07:02:07.756 2025-03-19 07:02:07.756 1000 FEE 435139 657 \N \N 6033049 2025-03-19 07:03:27.625 2025-03-19 07:03:27.625 1000 FEE 434665 16267 \N \N 6033050 2025-03-19 07:03:27.625 2025-03-19 07:03:27.625 9000 TIP 434665 8459 \N \N 6033097 2025-03-19 07:06:51.337 2025-03-19 07:06:51.337 100 FEE 435136 1094 \N \N 6033098 2025-03-19 07:06:51.337 2025-03-19 07:06:51.337 900 TIP 435136 2577 \N \N 6033138 2025-03-19 07:08:33.614 2025-03-19 07:08:33.614 100 FEE 434994 21218 \N \N 6033139 2025-03-19 07:08:33.614 2025-03-19 07:08:33.614 900 TIP 434994 16410 \N \N 6033166 2025-03-19 07:10:23.436 2025-03-19 07:10:23.436 1000 FEE 434440 766 \N \N 6033167 2025-03-19 07:10:23.436 2025-03-19 07:10:23.436 9000 TIP 434440 5758 \N \N 6033175 2025-03-19 07:11:51.207 2025-03-19 07:11:51.207 1000 FEE 434559 15160 \N \N 6033176 2025-03-19 07:11:51.207 2025-03-19 07:11:51.207 9000 TIP 434559 20198 \N \N 6033187 2025-03-19 07:12:15.567 2025-03-19 07:12:15.567 1000 FEE 434353 18368 \N \N 6033188 2025-03-19 07:12:15.567 2025-03-19 07:12:15.567 9000 TIP 434353 11942 \N \N 6033204 2025-03-19 07:13:57.285 2025-03-19 07:13:57.285 3200 FEE 435148 16440 \N \N 6033205 2025-03-19 07:13:57.285 2025-03-19 07:13:57.285 28800 TIP 435148 11443 \N \N 6033216 2025-03-19 07:15:11.43 2025-03-19 07:15:11.43 1000 FEE 435156 10409 \N \N 6033222 2025-03-19 07:15:13.736 2025-03-19 07:15:13.736 400 FEE 435146 15843 \N \N 6032863 2025-03-19 06:45:37.957 2025-03-19 06:45:37.957 18900 TIP 434323 4474 \N \N 6032864 2025-03-19 06:45:47.833 2025-03-19 06:45:47.833 7700 FEE 433649 8505 \N \N 6032865 2025-03-19 06:45:47.833 2025-03-19 06:45:47.833 69300 TIP 433649 6058 \N \N 6032876 2025-03-19 06:45:51.961 2025-03-19 06:45:51.961 100 FEE 433649 21480 \N \N 6032877 2025-03-19 06:45:51.961 2025-03-19 06:45:51.961 900 TIP 433649 18673 \N \N 6032902 2025-03-19 06:48:24.348 2025-03-19 06:48:24.348 1000 FEE 434600 18525 \N \N 6032903 2025-03-19 06:48:24.348 2025-03-19 06:48:24.348 9000 TIP 434600 8080 \N \N 6032913 2025-03-19 06:49:24.942 2025-03-19 06:49:24.942 2100 FEE 434960 9921 \N \N 6032914 2025-03-19 06:49:24.942 2025-03-19 06:49:24.942 18900 TIP 434960 15577 \N \N 6032918 2025-03-19 06:50:38.677 2025-03-19 06:50:38.677 1000 FEE 435122 21180 \N \N 6032926 2025-03-19 06:53:23.447 2025-03-19 06:53:23.447 1000 FEE 434572 1817 \N \N 6032927 2025-03-19 06:53:23.447 2025-03-19 06:53:23.447 9000 TIP 434572 21083 \N \N 6032928 2025-03-19 06:53:41.998 2025-03-19 06:53:41.998 2100 FEE 434859 1195 \N \N 6032929 2025-03-19 06:53:41.998 2025-03-19 06:53:41.998 18900 TIP 434859 11760 \N \N 6032936 2025-03-19 06:54:27.08 2025-03-19 06:54:27.08 1000 FEE 435124 1549 \N \N 6032989 2025-03-19 07:00:00.898 2025-03-19 07:00:00.898 10000 FEE 435030 9084 \N \N 6032990 2025-03-19 07:00:00.898 2025-03-19 07:00:00.898 90000 TIP 435030 21022 \N \N 6033014 2025-03-19 07:02:55.735 2025-03-19 07:02:55.735 8300 FEE 434791 14168 \N \N 6033015 2025-03-19 07:02:55.735 2025-03-19 07:02:55.735 74700 TIP 434791 16956 \N \N 6033069 2025-03-19 07:04:00.661 2025-03-19 07:04:00.661 90000 FEE 434278 8416 \N \N 6033070 2025-03-19 07:04:00.661 2025-03-19 07:04:00.661 810000 TIP 434278 1471 \N \N 6033078 2025-03-19 07:04:21.772 2025-03-19 07:04:21.772 10000 FEE 435144 3729 \N \N 6033102 2025-03-19 07:07:11.04 2025-03-19 07:07:11.04 3000 FEE 435132 4084 \N \N 6033103 2025-03-19 07:07:11.04 2025-03-19 07:07:11.04 27000 TIP 435132 736 \N \N 6033144 2025-03-19 07:08:55.084 2025-03-19 07:08:55.084 100 FEE 435046 1092 \N \N 6033145 2025-03-19 07:08:55.084 2025-03-19 07:08:55.084 900 TIP 435046 1720 \N \N 6033148 2025-03-19 07:08:55.506 2025-03-19 07:08:55.506 100 FEE 435046 4238 \N \N 6033149 2025-03-19 07:08:55.506 2025-03-19 07:08:55.506 900 TIP 435046 21647 \N \N 6033159 2025-03-19 07:10:05.514 2025-03-19 07:10:05.514 1000 FEE 434957 6419 \N \N 6033160 2025-03-19 07:10:05.514 2025-03-19 07:10:05.514 9000 TIP 434957 17696 \N \N 6033170 2025-03-19 07:10:53.721 2025-03-19 07:10:53.721 100 FEE 434498 828 \N \N 6033171 2025-03-19 07:10:53.721 2025-03-19 07:10:53.721 900 TIP 434498 11967 \N \N 6033181 2025-03-19 07:12:03.157 2025-03-19 07:12:03.157 1000 FEE 435150 2748 \N \N 6033232 2025-03-19 07:15:17.199 2025-03-19 07:15:17.199 2100 FEE 434139 21373 \N \N 6033233 2025-03-19 07:15:17.199 2025-03-19 07:15:17.199 18900 TIP 434139 807 \N \N 6033252 2025-03-19 07:17:28.192 2025-03-19 07:17:28.192 2100 FEE 434019 715 \N \N 6033253 2025-03-19 07:17:28.192 2025-03-19 07:17:28.192 18900 TIP 434019 1394 \N \N 6033278 2025-03-19 07:21:04.102 2025-03-19 07:21:04.102 20000 FEE 435136 21184 \N \N 6033279 2025-03-19 07:21:04.102 2025-03-19 07:21:04.102 180000 TIP 435136 13566 \N \N 6033285 2025-03-19 07:21:24.957 2025-03-19 07:21:24.957 100000 FEE 435167 4250 \N \N 6033286 2025-03-19 07:21:34.073 2025-03-19 07:21:34.073 1000 FEE 435168 1624 \N \N 6033292 2025-03-19 07:23:18.061 2025-03-19 07:23:18.061 1000 FEE 435170 5500 \N \N 6033298 2025-03-19 07:23:49.96 2025-03-19 07:23:49.96 1000 FEE 435172 1044 \N \N 6033305 2025-03-19 07:24:13.122 2025-03-19 07:24:13.122 900000 FEE 432920 9354 \N \N 6033306 2025-03-19 07:24:13.122 2025-03-19 07:24:13.122 8100000 TIP 432920 17116 \N \N 6033320 2025-03-19 07:24:46.52 2025-03-19 07:24:46.52 100 FEE 434640 15213 \N \N 6033321 2025-03-19 07:24:46.52 2025-03-19 07:24:46.52 900 TIP 434640 1585 \N \N 6033330 2025-03-19 07:25:38.511 2025-03-19 07:25:38.511 1000 FEE 435177 2335 \N \N 6033357 2025-03-19 07:28:44.332 2025-03-19 07:28:44.332 8300 FEE 435151 1519 \N \N 6033358 2025-03-19 07:28:44.332 2025-03-19 07:28:44.332 74700 TIP 435151 16351 \N \N 6033367 2025-03-19 07:29:55.035 2025-03-19 07:29:55.035 3000 FEE 435030 18270 \N \N 6033368 2025-03-19 07:29:55.035 2025-03-19 07:29:55.035 27000 TIP 435030 4079 \N \N 6033391 2025-03-19 07:32:46.748 2025-03-19 07:32:46.748 1000 FEE 435190 6229 \N \N 6033392 2025-03-19 07:32:49.321 2025-03-19 07:32:49.321 27000 FEE 435086 21514 \N \N 6033393 2025-03-19 07:32:49.321 2025-03-19 07:32:49.321 243000 TIP 435086 6573 \N \N 6033409 2025-03-19 07:33:08.15 2025-03-19 07:33:08.15 1000 FEE 434997 7827 \N \N 6033410 2025-03-19 07:33:08.15 2025-03-19 07:33:08.15 9000 TIP 434997 4754 \N \N 6033411 2025-03-19 07:33:08.653 2025-03-19 07:33:08.653 1000 FEE 434997 20852 \N \N 6033412 2025-03-19 07:33:08.653 2025-03-19 07:33:08.653 9000 TIP 434997 21734 \N \N 6033413 2025-03-19 07:33:09.107 2025-03-19 07:33:09.107 1000 FEE 434997 16347 \N \N 6033414 2025-03-19 07:33:09.107 2025-03-19 07:33:09.107 9000 TIP 434997 20185 \N \N 6033430 2025-03-19 07:33:37.007 2025-03-19 07:33:37.007 1000 FEE 435019 762 \N \N 6033431 2025-03-19 07:33:37.007 2025-03-19 07:33:37.007 9000 TIP 435019 16912 \N \N 6033457 2025-03-19 07:36:26.117 2025-03-19 07:36:26.117 2100 FEE 433833 20220 \N \N 6033458 2025-03-19 07:36:26.117 2025-03-19 07:36:26.117 18900 TIP 433833 9552 \N \N 6033463 2025-03-19 07:36:29.048 2025-03-19 07:36:29.048 4000 FEE 435196 20073 \N \N 6033464 2025-03-19 07:36:29.048 2025-03-19 07:36:29.048 36000 TIP 435196 10007 \N \N 6033482 2025-03-19 07:37:32.797 2025-03-19 07:37:32.797 83000 DONT_LIKE_THIS 435142 730 \N \N 6033488 2025-03-19 07:38:17.57 2025-03-19 07:38:17.57 1000 FEE 435198 4035 \N \N 6033548 2025-03-19 07:41:08.961 2025-03-19 07:41:08.961 11700 FEE 434665 21166 \N \N 6033549 2025-03-19 07:41:08.961 2025-03-19 07:41:08.961 105300 TIP 434665 979 \N \N 6033559 2025-03-19 07:41:36.127 2025-03-19 07:41:36.127 1000 FEE 435204 16301 \N \N 6033626 2025-03-19 07:50:24.063 2025-03-19 07:50:24.063 1000 FEE 434642 14152 \N \N 6033627 2025-03-19 07:50:24.063 2025-03-19 07:50:24.063 9000 TIP 434642 999 \N \N 6033632 2025-03-19 07:50:26.493 2025-03-19 07:50:26.493 1000 FEE 434646 21506 \N \N 6033633 2025-03-19 07:50:26.493 2025-03-19 07:50:26.493 9000 TIP 434646 1785 \N \N 6033647 2025-03-19 07:51:25.946 2025-03-19 07:51:25.946 1000 FEE 435216 622 \N \N 6033677 2025-03-19 07:55:46.375 2025-03-19 07:55:46.375 1000 FEE 435223 976 \N \N 6033700 2025-03-19 07:59:10.707 2025-03-19 07:59:10.707 1000 FEE 435230 9329 \N \N 6033714 2025-03-19 08:00:15.363 2025-03-19 08:00:15.363 1000 FEE 435221 14385 \N \N 6033715 2025-03-19 08:00:15.363 2025-03-19 08:00:15.363 9000 TIP 435221 882 \N \N 6033716 2025-03-19 08:00:17.289 2025-03-19 08:00:17.289 1000 FEE 435232 9421 \N \N 6033717 2025-03-19 08:00:17.289 2025-03-19 08:00:17.289 9000 TIP 435232 5775 \N \N 6033755 2025-03-19 08:01:13.603 2025-03-19 08:01:13.603 1000 FEE 434958 19189 \N \N 6033756 2025-03-19 08:01:13.603 2025-03-19 08:01:13.603 9000 TIP 434958 716 \N \N 6033770 2025-03-19 08:02:04.563 2025-03-19 08:02:04.563 2100 FEE 434958 16839 \N \N 6033771 2025-03-19 08:02:04.563 2025-03-19 08:02:04.563 18900 TIP 434958 8926 \N \N 6032956 2025-03-19 06:57:36.476 2025-03-19 06:57:36.476 1000 FEE 435131 21810 \N \N 6032962 2025-03-19 06:57:58.496 2025-03-19 06:57:58.496 1000 FEE 435046 692 \N \N 6032963 2025-03-19 06:57:58.496 2025-03-19 06:57:58.496 9000 TIP 435046 16769 \N \N 6032971 2025-03-19 06:58:27.247 2025-03-19 06:58:27.247 27000 FEE 435119 4314 \N \N 6032972 2025-03-19 06:58:27.247 2025-03-19 06:58:27.247 243000 TIP 435119 16638 \N \N 6032974 2025-03-19 06:58:54.405 2025-03-19 06:58:54.405 1600 FEE 435115 760 \N \N 6032975 2025-03-19 06:58:54.405 2025-03-19 06:58:54.405 14400 TIP 435115 1584 \N \N 6032982 2025-03-19 06:59:15.373 2025-03-19 06:59:15.373 3400 FEE 434512 6526 \N \N 6032983 2025-03-19 06:59:15.373 2025-03-19 06:59:15.373 30600 TIP 434512 5694 \N \N 6032997 2025-03-19 07:01:04.331 2025-03-19 07:01:04.331 210000 FEE 435136 20220 \N \N 6033001 2025-03-19 07:01:58.919 2025-03-19 07:01:58.919 300 FEE 435096 4487 \N \N 6033002 2025-03-19 07:01:58.919 2025-03-19 07:01:58.919 2700 TIP 435096 11158 \N \N 6033003 2025-03-19 07:02:02.217 2025-03-19 07:02:02.217 1000 FEE 434627 16424 \N \N 6033004 2025-03-19 07:02:02.217 2025-03-19 07:02:02.217 9000 TIP 434627 695 \N \N 6033010 2025-03-19 07:02:55.486 2025-03-19 07:02:55.486 8300 FEE 434791 10102 \N \N 6033011 2025-03-19 07:02:55.486 2025-03-19 07:02:55.486 74700 TIP 434791 19217 \N \N 6033012 2025-03-19 07:02:55.618 2025-03-19 07:02:55.618 8300 FEE 434791 624 \N \N 6033013 2025-03-19 07:02:55.618 2025-03-19 07:02:55.618 74700 TIP 434791 16998 \N \N 6033016 2025-03-19 07:02:55.853 2025-03-19 07:02:55.853 8300 FEE 434791 21547 \N \N 6033017 2025-03-19 07:02:55.853 2025-03-19 07:02:55.853 74700 TIP 434791 4314 \N \N 6033024 2025-03-19 07:02:56.397 2025-03-19 07:02:56.397 8300 FEE 434791 5557 \N \N 6033025 2025-03-19 07:02:56.397 2025-03-19 07:02:56.397 74700 TIP 434791 21037 \N \N 6033026 2025-03-19 07:02:56.522 2025-03-19 07:02:56.522 8300 FEE 434791 20924 \N \N 6033027 2025-03-19 07:02:56.522 2025-03-19 07:02:56.522 74700 TIP 434791 18409 \N \N 6033041 2025-03-19 07:03:24.99 2025-03-19 07:03:24.99 2100 FEE 435082 876 \N \N 6033042 2025-03-19 07:03:24.99 2025-03-19 07:03:24.99 18900 TIP 435082 1044 \N \N 6033063 2025-03-19 07:03:51.473 2025-03-19 07:03:51.473 100 FEE 434958 13843 \N \N 6033064 2025-03-19 07:03:51.473 2025-03-19 07:03:51.473 900 TIP 434958 20185 \N \N 6033074 2025-03-19 07:04:17.554 2025-03-19 07:04:17.554 900 FEE 435100 1454 \N \N 6033075 2025-03-19 07:04:17.554 2025-03-19 07:04:17.554 8100 TIP 435100 3439 \N \N 6033079 2025-03-19 07:04:27.551 2025-03-19 07:04:27.551 1000 FEE 435111 21825 \N \N 6033080 2025-03-19 07:04:27.551 2025-03-19 07:04:27.551 9000 TIP 435111 2203 \N \N 6033099 2025-03-19 07:06:51.532 2025-03-19 07:06:51.532 900 FEE 435136 20980 \N \N 6033100 2025-03-19 07:06:51.532 2025-03-19 07:06:51.532 8100 TIP 435136 20710 \N \N 6033101 2025-03-19 07:06:59.503 2025-03-19 07:06:59.503 1000 FEE 435145 7772 \N \N 6033104 2025-03-19 07:07:11.869 2025-03-19 07:07:11.869 27000 FEE 435132 21033 \N \N 6033105 2025-03-19 07:07:11.869 2025-03-19 07:07:11.869 243000 TIP 435132 7389 \N \N 6033109 2025-03-19 07:07:39.778 2025-03-19 07:07:39.778 900 FEE 434939 8796 \N \N 6033110 2025-03-19 07:07:39.778 2025-03-19 07:07:39.778 8100 TIP 434939 17218 \N \N 6033122 2025-03-19 07:08:10.59 2025-03-19 07:08:10.59 100 FEE 435142 998 \N \N 6033123 2025-03-19 07:08:10.59 2025-03-19 07:08:10.59 900 TIP 435142 688 \N \N 6033136 2025-03-19 07:08:33.435 2025-03-19 07:08:33.435 100 FEE 434994 15624 \N \N 6033137 2025-03-19 07:08:33.435 2025-03-19 07:08:33.435 900 TIP 434994 627 \N \N 6033154 2025-03-19 07:09:32.881 2025-03-19 07:09:32.881 2100 FEE 435133 9378 \N \N 6033155 2025-03-19 07:09:32.881 2025-03-19 07:09:32.881 18900 TIP 435133 17552 \N \N 6033158 2025-03-19 07:09:52.442 2025-03-19 07:09:52.442 1000 FEE 435149 17991 \N \N 6033168 2025-03-19 07:10:53.696 2025-03-19 07:10:53.696 100 FEE 434498 1051 \N \N 6033169 2025-03-19 07:10:53.696 2025-03-19 07:10:53.696 900 TIP 434498 2709 \N \N 6033179 2025-03-19 07:11:54.393 2025-03-19 07:11:54.393 1000 FEE 434559 20306 \N \N 6033180 2025-03-19 07:11:54.393 2025-03-19 07:11:54.393 9000 TIP 434559 21072 \N \N 6033184 2025-03-19 07:12:13.77 2025-03-19 07:12:13.77 1000 FEE 434353 7376 \N \N 6033185 2025-03-19 07:12:13.77 2025-03-19 07:12:13.77 9000 TIP 434353 20275 \N \N 6033197 2025-03-19 07:12:45.744 2025-03-19 07:12:45.744 1000 FEE 435153 20577 \N \N 6033199 2025-03-19 07:13:21.743 2025-03-19 07:13:21.743 2100 FEE 434934 692 \N \N 6033200 2025-03-19 07:13:21.743 2025-03-19 07:13:21.743 18900 TIP 434934 12346 \N \N 6033206 2025-03-19 07:14:13.954 2025-03-19 07:14:13.954 100 FEE 435151 2514 \N \N 6033207 2025-03-19 07:14:13.954 2025-03-19 07:14:13.954 900 TIP 435151 6260 \N \N 6033258 2025-03-19 07:18:46.978 2025-03-19 07:18:46.978 1000 FEE 435158 756 \N \N 6032958 2025-03-19 06:57:40.338 2025-03-19 06:57:40.338 7200 TIP 435046 11145 \N \N 6032967 2025-03-19 06:58:15.742 2025-03-19 06:58:15.742 1000 FEE 435026 14688 \N \N 6032968 2025-03-19 06:58:15.742 2025-03-19 06:58:15.742 9000 TIP 435026 17212 \N \N 6032969 2025-03-19 06:58:26.933 2025-03-19 06:58:26.933 3000 FEE 435119 1319 \N \N 6032970 2025-03-19 06:58:26.933 2025-03-19 06:58:26.933 27000 TIP 435119 5752 \N \N 6032981 2025-03-19 06:59:13.242 2025-03-19 06:59:13.242 1000 FEE 435134 20409 \N \N 6033008 2025-03-19 07:02:55.296 2025-03-19 07:02:55.296 8300 FEE 434791 4754 \N \N 6033009 2025-03-19 07:02:55.296 2025-03-19 07:02:55.296 74700 TIP 434791 3213 \N \N 6033043 2025-03-19 07:03:25.262 2025-03-19 07:03:25.262 2100 FEE 435010 21320 \N \N 6033044 2025-03-19 07:03:25.262 2025-03-19 07:03:25.262 18900 TIP 435010 18525 \N \N 6033051 2025-03-19 07:03:28.147 2025-03-19 07:03:28.147 1000 FEE 434665 19199 \N \N 6033052 2025-03-19 07:03:28.147 2025-03-19 07:03:28.147 9000 TIP 434665 16424 \N \N 6033053 2025-03-19 07:03:28.663 2025-03-19 07:03:28.663 1000 FEE 434665 12769 \N \N 6033054 2025-03-19 07:03:28.663 2025-03-19 07:03:28.663 9000 TIP 434665 9334 \N \N 6033116 2025-03-19 07:08:00.979 2025-03-19 07:08:00.979 100 FEE 434934 19735 \N \N 6033117 2025-03-19 07:08:00.979 2025-03-19 07:08:00.979 900 TIP 434934 20776 \N \N 6033118 2025-03-19 07:08:01.131 2025-03-19 07:08:01.131 900 FEE 434934 8541 \N \N 6033119 2025-03-19 07:08:01.131 2025-03-19 07:08:01.131 8100 TIP 434934 5865 \N \N 6033124 2025-03-19 07:08:11.17 2025-03-19 07:08:11.17 1000 FEE 435147 1726 \N \N 6033132 2025-03-19 07:08:33.062 2025-03-19 07:08:33.062 100 FEE 434994 5425 \N \N 6033133 2025-03-19 07:08:33.062 2025-03-19 07:08:33.062 900 TIP 434994 8469 \N \N 6033140 2025-03-19 07:08:33.798 2025-03-19 07:08:33.798 100 FEE 434994 9107 \N \N 6033141 2025-03-19 07:08:33.798 2025-03-19 07:08:33.798 900 TIP 434994 14169 \N \N 6033142 2025-03-19 07:08:54.901 2025-03-19 07:08:54.901 100 FEE 435046 4973 \N \N 6033143 2025-03-19 07:08:54.901 2025-03-19 07:08:54.901 900 TIP 435046 11275 \N \N 6033150 2025-03-19 07:08:55.748 2025-03-19 07:08:55.748 100 FEE 435046 15521 \N \N 6033151 2025-03-19 07:08:55.748 2025-03-19 07:08:55.748 900 TIP 435046 11454 \N \N 6033195 2025-03-19 07:12:19.884 2025-03-19 07:12:19.884 1000 FEE 435151 3417 \N \N 6033213 2025-03-19 07:14:43.283 2025-03-19 07:14:43.283 1000 FEE 435155 19494 \N \N 6033214 2025-03-19 07:14:49.606 2025-03-19 07:14:49.606 2100 FEE 434920 18306 \N \N 6033215 2025-03-19 07:14:49.606 2025-03-19 07:14:49.606 18900 TIP 434920 11670 \N \N 6033218 2025-03-19 07:15:13.067 2025-03-19 07:15:13.067 400 FEE 435146 1114 \N \N 6033219 2025-03-19 07:15:13.067 2025-03-19 07:15:13.067 3600 TIP 435146 9026 \N \N 6033230 2025-03-19 07:15:16.935 2025-03-19 07:15:16.935 2100 FEE 434139 21444 \N \N 6033231 2025-03-19 07:15:16.935 2025-03-19 07:15:16.935 18900 TIP 434139 646 \N \N 6033236 2025-03-19 07:15:20.662 2025-03-19 07:15:20.662 2100 FEE 434139 12516 \N \N 6033237 2025-03-19 07:15:20.662 2025-03-19 07:15:20.662 18900 TIP 434139 20799 \N \N 6033264 2025-03-19 07:19:31.41 2025-03-19 07:19:31.41 1000 FEE 435161 12959 \N \N 6033275 2025-03-19 07:20:46.26 2025-03-19 07:20:46.26 100000 FEE 435165 16276 \N \N 6033283 2025-03-19 07:21:13.877 2025-03-19 07:21:13.877 2300 FEE 435136 626 \N \N 6033284 2025-03-19 07:21:13.877 2025-03-19 07:21:13.877 20700 TIP 435136 17517 \N \N 6033299 2025-03-19 07:23:54.729 2025-03-19 07:23:54.729 90000 FEE 433943 14650 \N \N 6033300 2025-03-19 07:23:54.729 2025-03-19 07:23:54.729 810000 TIP 433943 19531 \N \N 6033302 2025-03-19 07:24:05.25 2025-03-19 07:24:05.25 90000 FEE 434535 11938 \N \N 6033303 2025-03-19 07:24:05.25 2025-03-19 07:24:05.25 810000 TIP 434535 21670 \N \N 6033334 2025-03-19 07:25:55.069 2025-03-19 07:25:55.069 1100 FEE 435030 12188 \N \N 6033335 2025-03-19 07:25:55.069 2025-03-19 07:25:55.069 9900 TIP 435030 18772 \N \N 6033343 2025-03-19 07:27:18.798 2025-03-19 07:27:18.798 1000 FEE 435180 14255 \N \N 6033351 2025-03-19 07:28:09.101 2025-03-19 07:28:09.101 1000 FEE 435183 3990 \N \N 6033361 2025-03-19 07:29:37.627 2025-03-19 07:29:37.627 1000 FEE 435154 1426 \N \N 6033362 2025-03-19 07:29:37.627 2025-03-19 07:29:37.627 9000 TIP 435154 15556 \N \N 6033373 2025-03-19 07:29:59.879 2025-03-19 07:29:59.879 1000 FEE 435029 16876 \N \N 6033374 2025-03-19 07:29:59.879 2025-03-19 07:29:59.879 9000 TIP 435029 21771 \N \N 6033389 2025-03-19 07:32:45.743 2025-03-19 07:32:45.743 3000 FEE 435086 10862 \N \N 6033390 2025-03-19 07:32:45.743 2025-03-19 07:32:45.743 27000 TIP 435086 20381 \N \N 6033401 2025-03-19 07:33:05.873 2025-03-19 07:33:05.873 1000 FEE 434997 20102 \N \N 6033402 2025-03-19 07:33:05.873 2025-03-19 07:33:05.873 9000 TIP 434997 20681 \N \N 6033403 2025-03-19 07:33:06.448 2025-03-19 07:33:06.448 1000 FEE 434997 956 \N \N 6033404 2025-03-19 07:33:06.448 2025-03-19 07:33:06.448 9000 TIP 434997 1733 \N \N 6033415 2025-03-19 07:33:09.593 2025-03-19 07:33:09.593 1000 FEE 434997 16456 \N \N 6033416 2025-03-19 07:33:09.593 2025-03-19 07:33:09.593 9000 TIP 434997 20647 \N \N 6033420 2025-03-19 07:33:24.713 2025-03-19 07:33:24.713 1000 FEE 435019 18265 \N \N 6033421 2025-03-19 07:33:24.713 2025-03-19 07:33:24.713 9000 TIP 435019 680 \N \N 6033422 2025-03-19 07:33:25.404 2025-03-19 07:33:25.404 1000 FEE 435019 20201 \N \N 6033423 2025-03-19 07:33:25.404 2025-03-19 07:33:25.404 9000 TIP 435019 19637 \N \N 6033453 2025-03-19 07:36:02.485 2025-03-19 07:36:02.485 7100 FEE 435163 2502 \N \N 6033454 2025-03-19 07:36:02.485 2025-03-19 07:36:02.485 63900 TIP 435163 21555 \N \N 6033461 2025-03-19 07:36:28.809 2025-03-19 07:36:28.809 4000 FEE 435196 15521 \N \N 6033462 2025-03-19 07:36:28.809 2025-03-19 07:36:28.809 36000 TIP 435196 9450 \N \N 6033479 2025-03-19 07:36:56.067 2025-03-19 07:36:56.067 16600 FEE 435030 7913 \N \N 6033480 2025-03-19 07:36:56.067 2025-03-19 07:36:56.067 149400 TIP 435030 1609 \N \N 6033485 2025-03-19 07:38:12.723 2025-03-19 07:38:12.723 8300 FEE 435120 2734 \N \N 6033486 2025-03-19 07:38:12.723 2025-03-19 07:38:12.723 74700 TIP 435120 965 \N \N 6033524 2025-03-19 07:40:02.7 2025-03-19 07:40:02.7 500 FEE 435046 7869 \N \N 6033525 2025-03-19 07:40:02.7 2025-03-19 07:40:02.7 4500 TIP 435046 2224 \N \N 6033540 2025-03-19 07:40:31.846 2025-03-19 07:40:31.846 2100 FEE 432713 19117 \N \N 6033541 2025-03-19 07:40:31.846 2025-03-19 07:40:31.846 18900 TIP 432713 20897 \N \N 6033552 2025-03-19 07:41:09.784 2025-03-19 07:41:09.784 1000 FEE 435100 837 \N \N 6033553 2025-03-19 07:41:09.784 2025-03-19 07:41:09.784 9000 TIP 435100 15192 \N \N 6033566 2025-03-19 07:42:05.721 2025-03-19 07:42:05.721 100000 FEE 435207 622 \N \N 6033594 2025-03-19 07:46:51.872 2025-03-19 07:46:51.872 1000 FEE 435210 4378 \N \N 6033620 2025-03-19 07:50:22.305 2025-03-19 07:50:22.305 1000 FEE 434642 1213 \N \N 6033621 2025-03-19 07:50:22.305 2025-03-19 07:50:22.305 9000 TIP 434642 21647 \N \N 6033624 2025-03-19 07:50:23.942 2025-03-19 07:50:23.942 1000 FEE 434642 9349 \N \N 6033625 2025-03-19 07:50:23.942 2025-03-19 07:50:23.942 9000 TIP 434642 21710 \N \N 6033628 2025-03-19 07:50:25.203 2025-03-19 07:50:25.203 1000 FEE 434646 19527 \N \N 6033629 2025-03-19 07:50:25.203 2025-03-19 07:50:25.203 9000 TIP 434646 4079 \N \N 6033651 2025-03-19 07:52:33.434 2025-03-19 07:52:33.434 1000 FEE 435219 13216 \N \N 6033663 2025-03-19 07:54:22.112 2025-03-19 07:54:22.112 3000 FEE 435220 12368 \N \N 6033664 2025-03-19 07:54:22.112 2025-03-19 07:54:22.112 27000 TIP 435220 1697 \N \N 6033671 2025-03-19 07:55:04.748 2025-03-19 07:55:04.748 3000 FEE 435183 20802 \N \N 6033672 2025-03-19 07:55:04.748 2025-03-19 07:55:04.748 27000 TIP 435183 16847 \N \N 6033682 2025-03-19 07:57:08.685 2025-03-19 07:57:08.685 0 FEE 435217 6030 \N \N 6033699 2025-03-19 07:59:06.165 2025-03-19 07:59:06.165 1000 FEE 435229 11263 \N \N 6033703 2025-03-19 07:59:34.453 2025-03-19 07:59:34.453 1000 FEE 435232 7659 \N \N 6033720 2025-03-19 08:00:18.689 2025-03-19 08:00:18.689 1000 FEE 435232 6160 \N \N 6033721 2025-03-19 08:00:18.689 2025-03-19 08:00:18.689 9000 TIP 435232 20606 \N \N 6033730 2025-03-19 08:00:27.848 2025-03-19 08:00:27.848 1000 FEE 435234 21279 \N \N 6033731 2025-03-19 08:00:39.808 2025-03-19 08:00:39.808 1000 FEE 435235 4225 \N \N 6033750 2025-03-19 08:01:12.205 2025-03-19 08:01:12.205 1000 FEE 434962 5779 \N \N 6033751 2025-03-19 08:01:12.205 2025-03-19 08:01:12.205 9000 TIP 434962 679 \N \N 6033786 2025-03-19 08:03:42.226 2025-03-19 08:03:42.226 2100 FEE 435220 687 \N \N 6033787 2025-03-19 08:03:42.226 2025-03-19 08:03:42.226 18900 TIP 435220 2492 \N \N 6033818 2025-03-19 08:09:41.857 2025-03-19 08:09:41.857 3000 FEE 435235 2514 \N \N 6037592 2025-03-19 13:47:39.278 2025-03-19 13:47:39.278 0 FEE 435619 18829 \N \N 6037611 2025-03-19 13:47:54.894 2025-03-19 13:47:54.894 2100 FEE 435458 16679 \N \N 6037612 2025-03-19 13:47:54.894 2025-03-19 13:47:54.894 18900 TIP 435458 15146 \N \N 6037613 2025-03-19 13:47:55.421 2025-03-19 13:47:55.421 2100 FEE 435458 20669 \N \N 6037614 2025-03-19 13:47:55.421 2025-03-19 13:47:55.421 18900 TIP 435458 21159 \N \N 6037627 2025-03-19 13:48:04.959 2025-03-19 13:48:04.959 2100 FEE 435154 10519 \N \N 6037628 2025-03-19 13:48:04.959 2025-03-19 13:48:04.959 18900 TIP 435154 3544 \N \N 6037648 2025-03-19 13:48:39.32 2025-03-19 13:48:39.32 100 FEE 435596 3717 \N \N 6037649 2025-03-19 13:48:39.32 2025-03-19 13:48:39.32 900 TIP 435596 17091 \N \N 6037672 2025-03-19 13:49:58.773 2025-03-19 13:49:58.773 2100 FEE 435457 630 \N \N 6037673 2025-03-19 13:49:58.773 2025-03-19 13:49:58.773 18900 TIP 435457 18533 \N \N 6037674 2025-03-19 13:49:59.238 2025-03-19 13:49:59.238 2100 FEE 435457 14731 \N \N 6037675 2025-03-19 13:49:59.238 2025-03-19 13:49:59.238 18900 TIP 435457 2741 \N \N 6037684 2025-03-19 13:50:07.59 2025-03-19 13:50:07.59 2100 FEE 435046 18678 \N \N 6037685 2025-03-19 13:50:07.59 2025-03-19 13:50:07.59 18900 TIP 435046 17638 \N \N 6037692 2025-03-19 13:50:24.372 2025-03-19 13:50:24.372 0 FEE 435619 12368 \N \N 6037712 2025-03-19 13:51:19.687 2025-03-19 13:51:19.687 2100 FEE 434813 21014 \N \N 6037713 2025-03-19 13:51:19.687 2025-03-19 13:51:19.687 18900 TIP 434813 16598 \N \N 6037730 2025-03-19 13:51:43.789 2025-03-19 13:51:43.789 2100 FEE 435327 11498 \N \N 6037731 2025-03-19 13:51:43.789 2025-03-19 13:51:43.789 18900 TIP 435327 5828 \N \N 6037765 2025-03-19 13:52:10.053 2025-03-19 13:52:10.053 2100 FEE 435544 19570 \N \N 6037766 2025-03-19 13:52:10.053 2025-03-19 13:52:10.053 18900 TIP 435544 20799 \N \N 6037779 2025-03-19 13:52:11.645 2025-03-19 13:52:11.645 2100 FEE 435544 3729 \N \N 6037780 2025-03-19 13:52:11.645 2025-03-19 13:52:11.645 18900 TIP 435544 10611 \N \N 6037786 2025-03-19 13:52:14.762 2025-03-19 13:52:14.762 1000 FEE 435579 4250 \N \N 6037787 2025-03-19 13:52:14.762 2025-03-19 13:52:14.762 9000 TIP 435579 20963 \N \N 6037788 2025-03-19 13:52:14.921 2025-03-19 13:52:14.921 1000 FEE 435579 7960 \N \N 6037789 2025-03-19 13:52:14.921 2025-03-19 13:52:14.921 9000 TIP 435579 10638 \N \N 6037806 2025-03-19 13:52:16.735 2025-03-19 13:52:16.735 2100 FEE 435544 2593 \N \N 6037807 2025-03-19 13:52:16.735 2025-03-19 13:52:16.735 18900 TIP 435544 15925 \N \N 6037814 2025-03-19 13:52:17.631 2025-03-19 13:52:17.631 2500 FEE 435226 19826 \N \N 6037815 2025-03-19 13:52:17.631 2025-03-19 13:52:17.631 22500 TIP 435226 2724 \N \N 6037830 2025-03-19 13:52:40.198 2025-03-19 13:52:40.198 3300 FEE 435532 5775 \N \N 6037831 2025-03-19 13:52:40.198 2025-03-19 13:52:40.198 29700 TIP 435532 7903 \N \N 6037836 2025-03-19 13:52:44.665 2025-03-19 13:52:44.665 3300 FEE 435458 6136 \N \N 6037837 2025-03-19 13:52:44.665 2025-03-19 13:52:44.665 29700 TIP 435458 9418 \N \N 6037845 2025-03-19 13:53:15.68 2025-03-19 13:53:15.68 1000 FEE 435626 7891 \N \N 6037864 2025-03-19 13:54:52.875 2025-03-19 13:54:52.875 2100 FEE 432705 2056 \N \N 6037865 2025-03-19 13:54:52.875 2025-03-19 13:54:52.875 18900 TIP 432705 19016 \N \N 6037878 2025-03-19 13:56:17.744 2025-03-19 13:56:17.744 1000 FEE 435630 19512 \N \N 6037888 2025-03-19 14:00:48.609 2025-03-19 14:00:48.609 1000 FEE 435359 21131 \N \N 6037889 2025-03-19 14:00:48.609 2025-03-19 14:00:48.609 9000 TIP 435359 5427 \N \N 6037896 2025-03-19 14:02:18.534 2025-03-19 14:02:18.534 1000 FEE 435636 16354 \N \N 6037916 2025-03-19 14:05:04.713 2025-03-19 14:05:04.713 4000 FEE 435579 690 \N \N 6037917 2025-03-19 14:05:04.713 2025-03-19 14:05:04.713 36000 TIP 435579 11192 \N \N 6037943 2025-03-19 14:12:26.829 2025-03-19 14:12:26.829 1600 FEE 435639 1389 \N \N 6037944 2025-03-19 14:12:26.829 2025-03-19 14:12:26.829 14400 TIP 435639 20660 \N \N 6037948 2025-03-19 14:14:00.967 2025-03-19 14:14:00.967 1000 POLL 435516 17095 \N \N 6037982 2025-03-19 14:17:48.507 2025-03-19 14:17:48.507 500 FEE 435327 20891 \N \N 6037983 2025-03-19 14:17:48.507 2025-03-19 14:17:48.507 4500 TIP 435327 3729 \N \N 6037996 2025-03-19 14:22:12.399 2025-03-19 14:22:12.399 12800 FEE 435551 6602 \N \N 6037997 2025-03-19 14:22:12.399 2025-03-19 14:22:12.399 115200 TIP 435551 21070 \N \N 6038010 2025-03-19 14:24:40.198 2025-03-19 14:24:40.198 8300 FEE 435639 9246 \N \N 6038011 2025-03-19 14:24:40.198 2025-03-19 14:24:40.198 74700 TIP 435639 1198 \N \N 6038017 2025-03-19 14:25:09.815 2025-03-19 14:25:09.815 8300 FEE 435488 16704 \N \N 6038018 2025-03-19 14:25:09.815 2025-03-19 14:25:09.815 74700 TIP 435488 17291 \N \N 6038027 2025-03-19 14:25:10.599 2025-03-19 14:25:10.599 8300 FEE 435488 18923 \N \N 6038028 2025-03-19 14:25:10.599 2025-03-19 14:25:10.599 74700 TIP 435488 4958 \N \N 6038031 2025-03-19 14:25:11.306 2025-03-19 14:25:11.306 8300 FEE 435488 20706 \N \N 6038032 2025-03-19 14:25:11.306 2025-03-19 14:25:11.306 74700 TIP 435488 7395 \N \N 6038037 2025-03-19 14:25:11.796 2025-03-19 14:25:11.796 8300 FEE 435488 20059 \N \N 6038038 2025-03-19 14:25:11.796 2025-03-19 14:25:11.796 74700 TIP 435488 4692 \N \N 6038043 2025-03-19 14:25:12.106 2025-03-19 14:25:12.106 8300 FEE 435488 19394 \N \N 6038044 2025-03-19 14:25:12.106 2025-03-19 14:25:12.106 74700 TIP 435488 19189 \N \N 6038047 2025-03-19 14:25:12.431 2025-03-19 14:25:12.431 8300 FEE 435488 21398 \N \N 6038048 2025-03-19 14:25:12.431 2025-03-19 14:25:12.431 74700 TIP 435488 21829 \N \N 6038068 2025-03-19 14:25:13.649 2025-03-19 14:25:13.649 8300 FEE 435488 1673 \N \N 6038069 2025-03-19 14:25:13.649 2025-03-19 14:25:13.649 74700 TIP 435488 5978 \N \N 6038074 2025-03-19 14:25:13.98 2025-03-19 14:25:13.98 8300 FEE 435488 17237 \N \N 6038075 2025-03-19 14:25:13.98 2025-03-19 14:25:13.98 74700 TIP 435488 14370 \N \N 6038083 2025-03-19 14:25:30.05 2025-03-19 14:25:30.05 8300 FEE 435488 1617 \N \N 6038084 2025-03-19 14:25:30.05 2025-03-19 14:25:30.05 74700 TIP 435488 1195 \N \N 6038104 2025-03-19 14:26:05.825 2025-03-19 14:26:05.825 0 FEE 435649 20596 \N \N 6038108 2025-03-19 14:26:24.219 2025-03-19 14:26:24.219 1300 FEE 433376 13599 \N \N 6038109 2025-03-19 14:26:24.219 2025-03-19 14:26:24.219 11700 TIP 433376 721 \N \N 6038112 2025-03-19 14:26:26.979 2025-03-19 14:26:26.979 1300 FEE 433376 14452 \N \N 6038113 2025-03-19 14:26:26.979 2025-03-19 14:26:26.979 11700 TIP 433376 998 \N \N 6038114 2025-03-19 14:26:45.445 2025-03-19 14:26:45.445 1000 FEE 435651 1495 \N \N 6038124 2025-03-19 14:28:01.973 2025-03-19 14:28:01.973 1000 FEE 435652 20198 \N \N 6038146 2025-03-19 14:32:57.725 2025-03-19 14:32:57.725 10000 FEE 435659 4776 \N \N 6038147 2025-03-19 14:33:09.697 2025-03-19 14:33:09.697 1000 FEE 435658 14080 \N \N 6038148 2025-03-19 14:33:09.697 2025-03-19 14:33:09.697 9000 TIP 435658 13162 \N \N 6038158 2025-03-19 14:34:16.159 2025-03-19 14:34:16.159 8300 FEE 435657 2674 \N \N 6038159 2025-03-19 14:34:16.159 2025-03-19 14:34:16.159 74700 TIP 435657 2776 \N \N 6038164 2025-03-19 14:34:16.565 2025-03-19 14:34:16.565 8300 FEE 435657 17824 \N \N 6038165 2025-03-19 14:34:16.565 2025-03-19 14:34:16.565 74700 TIP 435657 718 \N \N 6038217 2025-03-19 14:46:14.518 2025-03-19 14:46:14.518 100 FEE 435328 16406 \N \N 6038218 2025-03-19 14:46:14.518 2025-03-19 14:46:14.518 900 TIP 435328 9159 \N \N 6038224 2025-03-19 14:48:23.364 2025-03-19 14:48:23.364 100 FEE 435457 10661 \N \N 6038225 2025-03-19 14:48:23.364 2025-03-19 14:48:23.364 900 TIP 435457 13854 \N \N 6038250 2025-03-19 14:50:24.695 2025-03-19 14:50:24.695 100 FEE 435242 1814 \N \N 6038251 2025-03-19 14:50:24.695 2025-03-19 14:50:24.695 900 TIP 435242 20310 \N \N 6038262 2025-03-19 14:54:57.071 2025-03-19 14:54:57.071 3300 FEE 435497 4225 \N \N 6038263 2025-03-19 14:54:57.071 2025-03-19 14:54:57.071 29700 TIP 435497 19502 \N \N 6038274 2025-03-19 14:55:41.837 2025-03-19 14:55:41.837 2100 FEE 435505 658 \N \N 6033033 2025-03-19 07:02:57.094 2025-03-19 07:02:57.094 74700 TIP 434791 13921 \N \N 6033037 2025-03-19 07:03:17.117 2025-03-19 07:03:17.117 90000 FEE 434498 11515 \N \N 6033038 2025-03-19 07:03:17.117 2025-03-19 07:03:17.117 810000 TIP 434498 7674 \N \N 6033039 2025-03-19 07:03:20.116 2025-03-19 07:03:20.116 2100 FEE 435026 20691 \N \N 6033040 2025-03-19 07:03:20.116 2025-03-19 07:03:20.116 18900 TIP 435026 11417 \N \N 6033060 2025-03-19 07:03:43.349 2025-03-19 07:03:43.349 1000 FEE 435143 1130 \N \N 6033061 2025-03-19 07:03:46.762 2025-03-19 07:03:46.762 2100 FEE 434500 16834 \N \N 6033062 2025-03-19 07:03:46.762 2025-03-19 07:03:46.762 18900 TIP 434500 1632 \N \N 6033067 2025-03-19 07:03:56.826 2025-03-19 07:03:56.826 90000 FEE 434440 18923 \N \N 6033068 2025-03-19 07:03:56.826 2025-03-19 07:03:56.826 810000 TIP 434440 2328 \N \N 6033081 2025-03-19 07:04:34.12 2025-03-19 07:04:34.12 2100 FEE 434897 925 \N \N 6033082 2025-03-19 07:04:34.12 2025-03-19 07:04:34.12 18900 TIP 434897 7877 \N \N 6033093 2025-03-19 07:06:31.982 2025-03-19 07:06:31.982 100 FEE 435142 21233 \N \N 6033094 2025-03-19 07:06:31.982 2025-03-19 07:06:31.982 900 TIP 435142 20099 \N \N 6033095 2025-03-19 07:06:32.16 2025-03-19 07:06:32.16 900 FEE 435142 17212 \N \N 6033096 2025-03-19 07:06:32.16 2025-03-19 07:06:32.16 8100 TIP 435142 17106 \N \N 6033120 2025-03-19 07:08:01.503 2025-03-19 07:08:01.503 9000 FEE 434934 20370 \N \N 6033121 2025-03-19 07:08:01.503 2025-03-19 07:08:01.503 81000 TIP 434934 4064 \N \N 6033128 2025-03-19 07:08:32.719 2025-03-19 07:08:32.719 100 FEE 434994 18901 \N \N 6033129 2025-03-19 07:08:32.719 2025-03-19 07:08:32.719 900 TIP 434994 16680 \N \N 6033146 2025-03-19 07:08:55.297 2025-03-19 07:08:55.297 100 FEE 435046 21061 \N \N 6033147 2025-03-19 07:08:55.297 2025-03-19 07:08:55.297 900 TIP 435046 1564 \N \N 6033161 2025-03-19 07:10:14.194 2025-03-19 07:10:14.194 3000 FEE 435135 21391 \N \N 6033162 2025-03-19 07:10:14.194 2025-03-19 07:10:14.194 27000 TIP 435135 11491 \N \N 6033246 2025-03-19 07:16:01.402 2025-03-19 07:16:01.402 2100 FEE 435100 17218 \N \N 6033247 2025-03-19 07:16:01.402 2025-03-19 07:16:01.402 18900 TIP 435100 20450 \N \N 6033271 2025-03-19 07:20:28.625 2025-03-19 07:20:28.625 1000 FEE 435163 21413 \N \N 6033287 2025-03-19 07:21:39.369 2025-03-19 07:21:39.369 800 FEE 435151 13217 \N \N 6033288 2025-03-19 07:21:39.369 2025-03-19 07:21:39.369 7200 TIP 435151 21804 \N \N 6033290 2025-03-19 07:22:29.596 2025-03-19 07:22:29.596 1000 FEE 435169 4768 \N \N 6033316 2025-03-19 07:24:35.612 2025-03-19 07:24:35.612 900 FEE 435168 5794 \N \N 6033317 2025-03-19 07:24:35.612 2025-03-19 07:24:35.612 8100 TIP 435168 3686 \N \N 6033324 2025-03-19 07:25:00.598 2025-03-19 07:25:00.598 300 FEE 435174 16353 \N \N 6033325 2025-03-19 07:25:00.598 2025-03-19 07:25:00.598 2700 TIP 435174 14731 \N \N 6033344 2025-03-19 07:27:21.923 2025-03-19 07:27:21.923 3400 FEE 435149 18402 \N \N 6033345 2025-03-19 07:27:21.923 2025-03-19 07:27:21.923 30600 TIP 435149 20871 \N \N 6033348 2025-03-19 07:27:58.458 2025-03-19 07:27:58.458 1100 FEE 434975 680 \N \N 6033349 2025-03-19 07:27:58.458 2025-03-19 07:27:58.458 9900 TIP 434975 16309 \N \N 6033350 2025-03-19 07:28:09.082 2025-03-19 07:28:09.082 1000 FEE 435182 1632 \N \N 6033369 2025-03-19 07:29:55.624 2025-03-19 07:29:55.624 27000 FEE 435030 5487 \N \N 6033370 2025-03-19 07:29:55.624 2025-03-19 07:29:55.624 243000 TIP 435030 5708 \N \N 6033371 2025-03-19 07:29:56.14 2025-03-19 07:29:56.14 1000 FEE 435030 15463 \N \N 6033372 2025-03-19 07:29:56.14 2025-03-19 07:29:56.14 9000 TIP 435030 20646 \N \N 6033396 2025-03-19 07:32:59.115 2025-03-19 07:32:59.115 0 FEE 435190 20059 \N \N 6033407 2025-03-19 07:33:07.664 2025-03-19 07:33:07.664 1000 FEE 434997 21421 \N \N 6033408 2025-03-19 07:33:07.664 2025-03-19 07:33:07.664 9000 TIP 434997 6160 \N \N 6033441 2025-03-19 07:34:37.692 2025-03-19 07:34:37.692 100 FEE 434988 2749 \N \N 6033442 2025-03-19 07:34:37.692 2025-03-19 07:34:37.692 900 TIP 434988 20454 \N \N 6033465 2025-03-19 07:36:54.057 2025-03-19 07:36:54.057 8300 FEE 435046 21216 \N \N 6033466 2025-03-19 07:36:54.057 2025-03-19 07:36:54.057 74700 TIP 435046 18615 \N \N 6033477 2025-03-19 07:36:55.783 2025-03-19 07:36:55.783 8300 FEE 435030 19863 \N \N 6033478 2025-03-19 07:36:55.783 2025-03-19 07:36:55.783 74700 TIP 435030 20755 \N \N 6033495 2025-03-19 07:38:39.8 2025-03-19 07:38:39.8 500 FEE 435086 15484 \N \N 6033496 2025-03-19 07:38:39.8 2025-03-19 07:38:39.8 4500 TIP 435086 21771 \N \N 6033499 2025-03-19 07:38:42.614 2025-03-19 07:38:42.614 100000 FEE 435199 21041 \N \N 6033532 2025-03-19 07:40:08.614 2025-03-19 07:40:08.614 2300 FEE 435193 21060 \N \N 6033533 2025-03-19 07:40:08.614 2025-03-19 07:40:08.614 20700 TIP 435193 17673 \N \N 6033538 2025-03-19 07:40:09.265 2025-03-19 07:40:09.265 10000 FEE 435201 19689 \N \N 6033543 2025-03-19 07:40:47.973 2025-03-19 07:40:47.973 500 FEE 434791 7746 \N \N 6033544 2025-03-19 07:40:47.973 2025-03-19 07:40:47.973 4500 TIP 434791 6335 \N \N 6033545 2025-03-19 07:40:56.201 2025-03-19 07:40:56.201 500 FEE 434934 16594 \N \N 6033546 2025-03-19 07:40:56.201 2025-03-19 07:40:56.201 4500 TIP 434934 21713 \N \N 6033550 2025-03-19 07:41:09.221 2025-03-19 07:41:09.221 1000 FEE 435100 1515 \N \N 6033551 2025-03-19 07:41:09.221 2025-03-19 07:41:09.221 9000 TIP 435100 6555 \N \N 6033554 2025-03-19 07:41:13.253 2025-03-19 07:41:13.253 1000 FEE 434583 5017 \N \N 6033555 2025-03-19 07:41:13.253 2025-03-19 07:41:13.253 9000 TIP 434583 21334 \N \N 6033579 2025-03-19 07:43:08.26 2025-03-19 07:43:08.26 1000 FEE 435208 14295 \N \N 6033599 2025-03-19 07:49:05.636 2025-03-19 07:49:05.636 1000 FEE 435213 20811 \N \N 6033609 2025-03-19 07:50:09.905 2025-03-19 07:50:09.905 1000 FEE 435046 1489 \N \N 6033610 2025-03-19 07:50:09.905 2025-03-19 07:50:09.905 9000 TIP 435046 5578 \N \N 6033638 2025-03-19 07:50:38.813 2025-03-19 07:50:38.813 3000 FEE 435213 5519 \N \N 6033639 2025-03-19 07:50:38.813 2025-03-19 07:50:38.813 27000 TIP 435213 10096 \N \N 6033659 2025-03-19 07:53:51.221 2025-03-19 07:53:51.221 2100 FEE 435135 20433 \N \N 6033660 2025-03-19 07:53:51.221 2025-03-19 07:53:51.221 18900 TIP 435135 3409 \N \N 6033669 2025-03-19 07:54:53.241 2025-03-19 07:54:53.241 27000 FEE 435154 17517 \N \N 6033670 2025-03-19 07:54:53.241 2025-03-19 07:54:53.241 243000 TIP 435154 9450 \N \N 6033679 2025-03-19 07:56:22.446 2025-03-19 07:56:22.446 30000 FEE 435151 698 \N \N 6033680 2025-03-19 07:56:22.446 2025-03-19 07:56:22.446 270000 TIP 435151 9332 \N \N 6033691 2025-03-19 07:58:07.81 2025-03-19 07:58:07.81 27000 FEE 435115 20680 \N \N 6033692 2025-03-19 07:58:07.81 2025-03-19 07:58:07.81 243000 TIP 435115 965 \N \N 6033708 2025-03-19 08:00:14.08 2025-03-19 08:00:14.08 1000 FEE 435221 19524 \N \N 6033709 2025-03-19 08:00:14.08 2025-03-19 08:00:14.08 9000 TIP 435221 12049 \N \N 6033722 2025-03-19 08:00:19.045 2025-03-19 08:00:19.045 1000 FEE 435232 7389 \N \N 6033723 2025-03-19 08:00:19.045 2025-03-19 08:00:19.045 9000 TIP 435232 18678 \N \N 6033744 2025-03-19 08:01:09.563 2025-03-19 08:01:09.563 1000 FEE 435136 13198 \N \N 6033745 2025-03-19 08:01:09.563 2025-03-19 08:01:09.563 9000 TIP 435136 20412 \N \N 6033746 2025-03-19 08:01:10.814 2025-03-19 08:01:10.814 1000 FEE 435154 20623 \N \N 6033747 2025-03-19 08:01:10.814 2025-03-19 08:01:10.814 9000 TIP 435154 17147 \N \N 6033752 2025-03-19 08:01:12.393 2025-03-19 08:01:12.393 1000 FEE 434962 7682 \N \N 6033753 2025-03-19 08:01:12.393 2025-03-19 08:01:12.393 9000 TIP 434962 12935 \N \N 6033757 2025-03-19 08:01:13.892 2025-03-19 08:01:13.892 1000 FEE 434958 20612 \N \N 6033758 2025-03-19 08:01:13.892 2025-03-19 08:01:13.892 9000 TIP 434958 5870 \N \N 6033761 2025-03-19 08:01:15.59 2025-03-19 08:01:15.59 1000 FEE 434975 12102 \N \N 6033762 2025-03-19 08:01:15.59 2025-03-19 08:01:15.59 9000 TIP 434975 5961 \N \N 6033794 2025-03-19 08:05:24.219 2025-03-19 08:05:24.219 100000 FEE 435242 16562 \N \N 6037655 2025-03-19 13:48:51.159 2025-03-19 13:48:51.159 8100 TIP 435580 5557 \N \N 6037656 2025-03-19 13:48:51.702 2025-03-19 13:48:51.702 9000 FEE 435580 690 \N \N 6037657 2025-03-19 13:48:51.702 2025-03-19 13:48:51.702 81000 TIP 435580 963 \N \N 6037700 2025-03-19 13:51:03.315 2025-03-19 13:51:03.315 1000 FEE 435583 657 \N \N 6037701 2025-03-19 13:51:03.315 2025-03-19 13:51:03.315 9000 TIP 435583 8796 \N \N 6037716 2025-03-19 13:51:35.518 2025-03-19 13:51:35.518 1600 FEE 435378 8541 \N \N 6037717 2025-03-19 13:51:35.518 2025-03-19 13:51:35.518 14400 TIP 435378 21042 \N \N 6037724 2025-03-19 13:51:42.758 2025-03-19 13:51:42.758 2100 FEE 435327 6136 \N \N 6037725 2025-03-19 13:51:42.758 2025-03-19 13:51:42.758 18900 TIP 435327 9337 \N \N 6037742 2025-03-19 13:51:51.163 2025-03-19 13:51:51.163 2100 FEE 435030 1488 \N \N 6037743 2025-03-19 13:51:51.163 2025-03-19 13:51:51.163 18900 TIP 435030 8535 \N \N 6037762 2025-03-19 13:52:08.992 2025-03-19 13:52:08.992 1000 FEE 435625 684 \N \N 6037771 2025-03-19 13:52:10.757 2025-03-19 13:52:10.757 2100 FEE 435544 18500 \N \N 6037772 2025-03-19 13:52:10.757 2025-03-19 13:52:10.757 18900 TIP 435544 1010 \N \N 6037800 2025-03-19 13:52:16.13 2025-03-19 13:52:16.13 2100 FEE 435544 10283 \N \N 6037801 2025-03-19 13:52:16.13 2025-03-19 13:52:16.13 18900 TIP 435544 18412 \N \N 6037810 2025-03-19 13:52:17.146 2025-03-19 13:52:17.146 2100 FEE 435544 13921 \N \N 6037811 2025-03-19 13:52:17.146 2025-03-19 13:52:17.146 18900 TIP 435544 17552 \N \N 6037818 2025-03-19 13:52:20.283 2025-03-19 13:52:20.283 3300 FEE 435551 20596 \N \N 6037819 2025-03-19 13:52:20.283 2025-03-19 13:52:20.283 29700 TIP 435551 21829 \N \N 6037820 2025-03-19 13:52:20.776 2025-03-19 13:52:20.776 3300 FEE 435551 632 \N \N 6037821 2025-03-19 13:52:20.776 2025-03-19 13:52:20.776 29700 TIP 435551 15890 \N \N 6037834 2025-03-19 13:52:43.778 2025-03-19 13:52:43.778 3300 FEE 435458 1615 \N \N 6037835 2025-03-19 13:52:43.778 2025-03-19 13:52:43.778 29700 TIP 435458 12245 \N \N 6037925 2025-03-19 14:07:55.658 2025-03-19 14:07:55.658 1000 FEE 435640 21159 \N \N 6037932 2025-03-19 14:09:37.841 2025-03-19 14:09:37.841 2100 FEE 435596 16912 \N \N 6033085 2025-03-19 07:04:59.696 2025-03-19 07:04:59.696 3000 FEE 435127 985 \N \N 6033086 2025-03-19 07:04:59.696 2025-03-19 07:04:59.696 27000 TIP 435127 8726 \N \N 6033130 2025-03-19 07:08:32.89 2025-03-19 07:08:32.89 100 FEE 434994 20669 \N \N 6033131 2025-03-19 07:08:32.89 2025-03-19 07:08:32.89 900 TIP 434994 15491 \N \N 6033156 2025-03-19 07:09:45.38 2025-03-19 07:09:45.38 2100 FEE 435075 21249 \N \N 6033157 2025-03-19 07:09:45.38 2025-03-19 07:09:45.38 18900 TIP 435075 19966 \N \N 6033164 2025-03-19 07:10:14.752 2025-03-19 07:10:14.752 27000 FEE 435135 17535 \N \N 6033165 2025-03-19 07:10:14.752 2025-03-19 07:10:14.752 243000 TIP 435135 5173 \N \N 6033177 2025-03-19 07:11:54.044 2025-03-19 07:11:54.044 1000 FEE 434559 21412 \N \N 6033178 2025-03-19 07:11:54.044 2025-03-19 07:11:54.044 9000 TIP 434559 2213 \N \N 6033201 2025-03-19 07:13:32.43 2025-03-19 07:13:32.43 2100 FEE 434939 17984 \N \N 6033202 2025-03-19 07:13:32.43 2025-03-19 07:13:32.43 18900 TIP 434939 18426 \N \N 6033203 2025-03-19 07:13:57.23 2025-03-19 07:13:57.23 100000 FEE 435154 21249 \N \N 6033209 2025-03-19 07:14:17.376 2025-03-19 07:14:17.376 7100 FEE 435150 18178 \N \N 6033210 2025-03-19 07:14:17.376 2025-03-19 07:14:17.376 63900 TIP 435150 9 \N \N 6033220 2025-03-19 07:15:13.577 2025-03-19 07:15:13.577 400 FEE 435146 14857 \N \N 6033221 2025-03-19 07:15:13.577 2025-03-19 07:15:13.577 3600 TIP 435146 1836 \N \N 6033234 2025-03-19 07:15:17.29 2025-03-19 07:15:17.29 2100 FEE 434139 11760 \N \N 6033235 2025-03-19 07:15:17.29 2025-03-19 07:15:17.29 18900 TIP 434139 985 \N \N 6033269 2025-03-19 07:20:19.485 2025-03-19 07:20:19.485 30000 FEE 435014 1175 \N \N 6033270 2025-03-19 07:20:19.485 2025-03-19 07:20:19.485 270000 TIP 435014 13759 \N \N 6033281 2025-03-19 07:21:11.1 2025-03-19 07:21:11.1 0 FEE 435163 1881 \N \N 6033310 2025-03-19 07:24:33.443 2025-03-19 07:24:33.443 900 FEE 435151 5752 \N \N 6033311 2025-03-19 07:24:33.443 2025-03-19 07:24:33.443 8100 TIP 435151 1469 \N \N 6033352 2025-03-19 07:28:10.595 2025-03-19 07:28:10.595 100 FEE 435154 11328 \N \N 6033353 2025-03-19 07:28:10.595 2025-03-19 07:28:10.595 900 TIP 435154 5112 \N \N 6033386 2025-03-19 07:32:26.737 2025-03-19 07:32:26.737 8300 FEE 435018 20185 \N \N 6033387 2025-03-19 07:32:26.737 2025-03-19 07:32:26.737 74700 TIP 435018 19535 \N \N 6033394 2025-03-19 07:32:50.535 2025-03-19 07:32:50.535 1000 FEE 435191 9418 \N \N 6033397 2025-03-19 07:33:01.741 2025-03-19 07:33:01.741 3300 FEE 435183 1769 \N \N 6033398 2025-03-19 07:33:01.741 2025-03-19 07:33:01.741 29700 TIP 435183 20904 \N \N 6033399 2025-03-19 07:33:05.291 2025-03-19 07:33:05.291 1000 FEE 434997 3990 \N \N 6033400 2025-03-19 07:33:05.291 2025-03-19 07:33:05.291 9000 TIP 434997 721 \N \N 6033443 2025-03-19 07:34:37.813 2025-03-19 07:34:37.813 900 FEE 434988 12774 \N \N 6033444 2025-03-19 07:34:37.813 2025-03-19 07:34:37.813 8100 TIP 434988 21263 \N \N 6033450 2025-03-19 07:35:25.201 2025-03-19 07:35:25.201 2100 FEE 434994 18402 \N \N 6033223 2025-03-19 07:15:13.736 2025-03-19 07:15:13.736 3600 TIP 435146 20157 \N \N 6033224 2025-03-19 07:15:13.898 2025-03-19 07:15:13.898 400 FEE 435146 10007 \N \N 6033225 2025-03-19 07:15:13.898 2025-03-19 07:15:13.898 3600 TIP 435146 20586 \N \N 6033228 2025-03-19 07:15:16.755 2025-03-19 07:15:16.755 2100 FEE 434139 16329 \N \N 6033229 2025-03-19 07:15:16.755 2025-03-19 07:15:16.755 18900 TIP 434139 2670 \N \N 6033240 2025-03-19 07:15:21.584 2025-03-19 07:15:21.584 2100 FEE 434139 20892 \N \N 6033241 2025-03-19 07:15:21.584 2025-03-19 07:15:21.584 18900 TIP 434139 11609 \N \N 6033260 2025-03-19 07:19:15.511 2025-03-19 07:19:15.511 1000 FEE 435159 17455 \N \N 6033263 2025-03-19 07:19:24.05 2025-03-19 07:19:24.05 1000 FEE 435160 2342 \N \N 6033276 2025-03-19 07:21:03.448 2025-03-19 07:21:03.448 3000 FEE 435155 14258 \N \N 6033277 2025-03-19 07:21:03.448 2025-03-19 07:21:03.448 27000 TIP 435155 9496 \N \N 6033363 2025-03-19 07:29:38.788 2025-03-19 07:29:38.788 1000 FEE 435115 16747 \N \N 6033364 2025-03-19 07:29:38.788 2025-03-19 07:29:38.788 9000 TIP 435115 8998 \N \N 6033428 2025-03-19 07:33:35.951 2025-03-19 07:33:35.951 1000 FEE 435019 9351 \N \N 6033429 2025-03-19 07:33:35.951 2025-03-19 07:33:35.951 9000 TIP 435019 4388 \N \N 6033440 2025-03-19 07:34:25.19 2025-03-19 07:34:25.19 10000 DONT_LIKE_THIS 434991 18731 \N \N 6033473 2025-03-19 07:36:55.496 2025-03-19 07:36:55.496 8300 FEE 435030 18557 \N \N 6033474 2025-03-19 07:36:55.496 2025-03-19 07:36:55.496 74700 TIP 435030 6573 \N \N 6033493 2025-03-19 07:38:33.607 2025-03-19 07:38:33.607 2100 FEE 435014 16598 \N \N 6033494 2025-03-19 07:38:33.607 2025-03-19 07:38:33.607 18900 TIP 435014 10693 \N \N 6033506 2025-03-19 07:38:46.417 2025-03-19 07:38:46.417 500 FEE 435030 18330 \N \N 6033507 2025-03-19 07:38:46.417 2025-03-19 07:38:46.417 4500 TIP 435030 2639 \N \N 6033510 2025-03-19 07:38:49.407 2025-03-19 07:38:49.407 2100 FEE 435154 6765 \N \N 6033511 2025-03-19 07:38:49.407 2025-03-19 07:38:49.407 18900 TIP 435154 20073 \N \N 6033518 2025-03-19 07:39:53.848 2025-03-19 07:39:53.848 2100 FEE 435073 21523 \N \N 6033519 2025-03-19 07:39:53.848 2025-03-19 07:39:53.848 18900 TIP 435073 678 \N \N 6033560 2025-03-19 07:41:42.584 2025-03-19 07:41:42.584 3000 FEE 435200 16267 \N \N 6033561 2025-03-19 07:41:42.584 2025-03-19 07:41:42.584 27000 TIP 435200 16447 \N \N 6033569 2025-03-19 07:42:14.042 2025-03-19 07:42:14.042 3300 FEE 435195 20647 \N \N 6033570 2025-03-19 07:42:14.042 2025-03-19 07:42:14.042 29700 TIP 435195 19569 \N \N 6033571 2025-03-19 07:42:18.348 2025-03-19 07:42:18.348 10000 FEE 434791 21207 \N \N 6033572 2025-03-19 07:42:18.348 2025-03-19 07:42:18.348 90000 TIP 434791 7903 \N \N 6033596 2025-03-19 07:48:11.842 2025-03-19 07:48:11.842 1000 FEE 435211 21014 \N \N 6033604 2025-03-19 07:49:36.761 2025-03-19 07:49:36.761 27000 FEE 435209 21442 \N \N 6033605 2025-03-19 07:49:36.761 2025-03-19 07:49:36.761 243000 TIP 435209 10611 \N \N 6033613 2025-03-19 07:50:10.971 2025-03-19 07:50:10.971 1000 FEE 435046 7395 \N \N 6033614 2025-03-19 07:50:10.971 2025-03-19 07:50:10.971 9000 TIP 435046 8045 \N \N 6033618 2025-03-19 07:50:22.264 2025-03-19 07:50:22.264 1000 FEE 434642 9334 \N \N 6033619 2025-03-19 07:50:22.264 2025-03-19 07:50:22.264 9000 TIP 434642 632 \N \N 6033634 2025-03-19 07:50:27.113 2025-03-19 07:50:27.113 1000 FEE 434646 19663 \N \N 6033635 2025-03-19 07:50:27.113 2025-03-19 07:50:27.113 9000 TIP 434646 21506 \N \N 6033645 2025-03-19 07:51:13.045 2025-03-19 07:51:13.045 2100 FEE 435136 909 \N \N 6033646 2025-03-19 07:51:13.045 2025-03-19 07:51:13.045 18900 TIP 435136 1438 \N \N 6033654 2025-03-19 07:52:57.29 2025-03-19 07:52:57.29 0 FEE 435217 20993 \N \N 6033673 2025-03-19 07:55:08.457 2025-03-19 07:55:08.457 2100 FEE 435217 8176 \N \N 6033674 2025-03-19 07:55:08.457 2025-03-19 07:55:08.457 18900 TIP 435217 20409 \N \N 6033676 2025-03-19 07:55:35.845 2025-03-19 07:55:35.845 1000 FEE 435222 20897 \N \N 6033681 2025-03-19 07:57:06.169 2025-03-19 07:57:06.169 1000 FEE 435225 14385 \N \N 6033687 2025-03-19 07:58:00.797 2025-03-19 07:58:00.797 1000 FEE 435030 1438 \N \N 6033688 2025-03-19 07:58:00.797 2025-03-19 07:58:00.797 9000 TIP 435030 1737 \N \N 6033718 2025-03-19 08:00:17.987 2025-03-19 08:00:17.987 1000 FEE 435232 20059 \N \N 6033719 2025-03-19 08:00:17.987 2025-03-19 08:00:17.987 9000 TIP 435232 618 \N \N 6033736 2025-03-19 08:00:59.005 2025-03-19 08:00:59.005 1000 FEE 435018 3360 \N \N 6033737 2025-03-19 08:00:59.005 2025-03-19 08:00:59.005 9000 TIP 435018 20990 \N \N 6033811 2025-03-19 08:09:21.933 2025-03-19 08:09:21.933 1000 FEE 435247 18526 \N \N 6033824 2025-03-19 08:09:55.945 2025-03-19 08:09:55.945 3000 FEE 435234 17116 \N \N 6033825 2025-03-19 08:09:55.945 2025-03-19 08:09:55.945 27000 TIP 435234 19292 \N \N 6033833 2025-03-19 08:10:41.162 2025-03-19 08:10:41.162 3000 FEE 435246 652 \N \N 6033834 2025-03-19 08:10:41.162 2025-03-19 08:10:41.162 27000 TIP 435246 9329 \N \N 6033856 2025-03-19 08:11:29.373 2025-03-19 08:11:29.373 4000 FEE 435026 17710 \N \N 6033857 2025-03-19 08:11:29.373 2025-03-19 08:11:29.373 36000 TIP 435026 20826 \N \N 6033858 2025-03-19 08:11:29.694 2025-03-19 08:11:29.694 4000 FEE 435100 17714 \N \N 6033859 2025-03-19 08:11:29.694 2025-03-19 08:11:29.694 36000 TIP 435100 3353 \N \N 6033860 2025-03-19 08:11:32.182 2025-03-19 08:11:32.182 4000 FEE 435120 1713 \N \N 6033861 2025-03-19 08:11:32.182 2025-03-19 08:11:32.182 36000 TIP 435120 4378 \N \N 6033911 2025-03-19 08:17:08.929 2025-03-19 08:17:08.929 1000 FEE 435256 1673 \N \N 6033913 2025-03-19 08:17:25.373 2025-03-19 08:17:25.373 2300 FEE 435241 10608 \N \N 6033914 2025-03-19 08:17:25.373 2025-03-19 08:17:25.373 20700 TIP 435241 21172 \N \N 6033915 2025-03-19 08:17:25.505 2025-03-19 08:17:25.505 2300 FEE 435241 12169 \N \N 6033916 2025-03-19 08:17:25.505 2025-03-19 08:17:25.505 20700 TIP 435241 7899 \N \N 6033927 2025-03-19 08:17:26.82 2025-03-19 08:17:26.82 2300 FEE 435241 21666 \N \N 6033928 2025-03-19 08:17:26.82 2025-03-19 08:17:26.82 20700 TIP 435241 10352 \N \N 6033935 2025-03-19 08:17:27.379 2025-03-19 08:17:27.379 2300 FEE 435241 1474 \N \N 6033936 2025-03-19 08:17:27.379 2025-03-19 08:17:27.379 20700 TIP 435241 20436 \N \N 6033945 2025-03-19 08:17:50.151 2025-03-19 08:17:50.151 2100 FEE 435241 17064 \N \N 6033946 2025-03-19 08:17:50.151 2025-03-19 08:17:50.151 18900 TIP 435241 1825 \N \N 6033960 2025-03-19 08:18:42.317 2025-03-19 08:18:42.317 10000 FEE 435242 4570 \N \N 6033961 2025-03-19 08:18:42.317 2025-03-19 08:18:42.317 90000 TIP 435242 1237 \N \N 6033964 2025-03-19 08:18:42.735 2025-03-19 08:18:42.735 1000 FEE 435259 19842 \N \N 6033983 2025-03-19 08:21:11.461 2025-03-19 08:21:11.461 2300 FEE 435242 711 \N \N 6033984 2025-03-19 08:21:11.461 2025-03-19 08:21:11.461 20700 TIP 435242 2741 \N \N 6033989 2025-03-19 08:21:12.093 2025-03-19 08:21:12.093 2300 FEE 435242 777 \N \N 6033990 2025-03-19 08:21:12.093 2025-03-19 08:21:12.093 20700 TIP 435242 21222 \N \N 6034060 2025-03-19 08:21:25.64 2025-03-19 08:21:25.64 2300 FEE 435231 2844 \N \N 6034061 2025-03-19 08:21:25.64 2025-03-19 08:21:25.64 20700 TIP 435231 10016 \N \N 6034062 2025-03-19 08:21:25.811 2025-03-19 08:21:25.811 2300 FEE 435231 10096 \N \N 6034063 2025-03-19 08:21:25.811 2025-03-19 08:21:25.811 20700 TIP 435231 18735 \N \N 6034066 2025-03-19 08:21:26.132 2025-03-19 08:21:26.132 2300 FEE 435231 21062 \N \N 6034067 2025-03-19 08:21:26.132 2025-03-19 08:21:26.132 20700 TIP 435231 1046 \N \N 6034078 2025-03-19 08:21:27.151 2025-03-19 08:21:27.151 2300 FEE 435231 15160 \N \N 6034079 2025-03-19 08:21:27.151 2025-03-19 08:21:27.151 20700 TIP 435231 20026 \N \N 6034092 2025-03-19 08:21:42.046 2025-03-19 08:21:42.046 100000 FEE 435261 2065 \N \N 6034093 2025-03-19 08:22:08.378 2025-03-19 08:22:08.378 1100 FEE 435100 20099 \N \N 6034094 2025-03-19 08:22:08.378 2025-03-19 08:22:08.378 9900 TIP 435100 20963 \N \N 6034100 2025-03-19 08:23:55.173 2025-03-19 08:23:55.173 1000 FEE 435265 15556 \N \N 6034104 2025-03-19 08:24:59.22 2025-03-19 08:24:59.22 100000 DONT_LIKE_THIS 435248 6430 \N \N 6034108 2025-03-19 08:26:07.568 2025-03-19 08:26:07.568 100 FEE 435231 1468 \N \N 6034109 2025-03-19 08:26:07.568 2025-03-19 08:26:07.568 900 TIP 435231 21037 \N \N 6034110 2025-03-19 08:26:07.717 2025-03-19 08:26:07.717 900 FEE 435231 5497 \N \N 6034111 2025-03-19 08:26:07.717 2025-03-19 08:26:07.717 8100 TIP 435231 18528 \N \N 6034133 2025-03-19 08:28:15.326 2025-03-19 08:28:15.326 3200 FEE 435253 1090 \N \N 6034134 2025-03-19 08:28:15.326 2025-03-19 08:28:15.326 28800 TIP 435253 16456 \N \N 6034140 2025-03-19 08:29:08.071 2025-03-19 08:29:08.071 1600 FEE 435231 20701 \N \N 6034141 2025-03-19 08:29:08.071 2025-03-19 08:29:08.071 14400 TIP 435231 3506 \N \N 6034156 2025-03-19 08:29:46.858 2025-03-19 08:29:46.858 1000 FEE 435260 16667 \N \N 6033266 2025-03-19 07:19:39.085 2025-03-19 07:19:39.085 14400 TIP 435136 21803 \N \N 6033267 2025-03-19 07:19:41.427 2025-03-19 07:19:41.427 1000 FEE 435162 14910 \N \N 6033272 2025-03-19 07:20:32.413 2025-03-19 07:20:32.413 1000 FEE 435164 9438 \N \N 6033312 2025-03-19 07:24:34.21 2025-03-19 07:24:34.21 9000 FEE 435151 5578 \N \N 6033313 2025-03-19 07:24:34.21 2025-03-19 07:24:34.21 81000 TIP 435151 649 \N \N 6033331 2025-03-19 07:25:48.314 2025-03-19 07:25:48.314 1000 FEE 435178 2748 \N \N 6033332 2025-03-19 07:25:51.208 2025-03-19 07:25:51.208 100 FEE 434651 2016 \N \N 6033333 2025-03-19 07:25:51.208 2025-03-19 07:25:51.208 900 TIP 434651 18743 \N \N 6033339 2025-03-19 07:26:17.632 2025-03-19 07:26:17.632 1000 FEE 435179 14195 \N \N 6033340 2025-03-19 07:26:29.62 2025-03-19 07:26:29.62 1000 FEE 434680 4763 \N \N 6033341 2025-03-19 07:26:29.62 2025-03-19 07:26:29.62 9000 TIP 434680 20436 \N \N 6033360 2025-03-19 07:29:33.779 2025-03-19 07:29:33.779 100000 FEE 435184 16289 \N \N 6033382 2025-03-19 07:31:51.198 2025-03-19 07:31:51.198 1000 FEE 435186 11417 \N \N 6033385 2025-03-19 07:32:25.023 2025-03-19 07:32:25.023 1000 FEE 435188 638 \N \N 6033388 2025-03-19 07:32:44.503 2025-03-19 07:32:44.503 1000 FEE 435189 11992 \N \N 6033426 2025-03-19 07:33:26.805 2025-03-19 07:33:26.805 1000 FEE 435019 15409 \N \N 6033427 2025-03-19 07:33:26.805 2025-03-19 07:33:26.805 9000 TIP 435019 2039 \N \N 6033432 2025-03-19 07:33:45.016 2025-03-19 07:33:45.016 1000 FEE 435193 8045 \N \N 6033434 2025-03-19 07:34:17.091 2025-03-19 07:34:17.091 100 FEE 434991 8505 \N \N 6033435 2025-03-19 07:34:17.091 2025-03-19 07:34:17.091 900 TIP 434991 20220 \N \N 6033447 2025-03-19 07:35:02.489 2025-03-19 07:35:02.489 1000 FEE 435194 9356 \N \N 6033467 2025-03-19 07:36:54.534 2025-03-19 07:36:54.534 8300 FEE 435046 2022 \N \N 6033468 2025-03-19 07:36:54.534 2025-03-19 07:36:54.534 74700 TIP 435046 21603 \N \N 6033483 2025-03-19 07:38:00.766 2025-03-19 07:38:00.766 30000 FEE 432977 21683 \N \N 6033484 2025-03-19 07:38:00.766 2025-03-19 07:38:00.766 270000 TIP 432977 4776 \N \N 6033502 2025-03-19 07:38:44.819 2025-03-19 07:38:44.819 3000 FEE 435189 761 \N \N 6033503 2025-03-19 07:38:44.819 2025-03-19 07:38:44.819 27000 TIP 435189 21424 \N \N 6033512 2025-03-19 07:39:01.23 2025-03-19 07:39:01.23 500 FEE 435046 10849 \N \N 6033513 2025-03-19 07:39:01.23 2025-03-19 07:39:01.23 4500 TIP 435046 20523 \N \N 6033515 2025-03-19 07:39:13.915 2025-03-19 07:39:13.915 2100 FEE 435120 4167 \N \N 6033516 2025-03-19 07:39:13.915 2025-03-19 07:39:13.915 18900 TIP 435120 9655 \N \N 6033522 2025-03-19 07:40:02.099 2025-03-19 07:40:02.099 500 FEE 435046 10731 \N \N 6033523 2025-03-19 07:40:02.099 2025-03-19 07:40:02.099 4500 TIP 435046 14909 \N \N 6033547 2025-03-19 07:40:57.686 2025-03-19 07:40:57.686 1000 FEE 435203 20222 \N \N 6033592 2025-03-19 07:45:13.96 2025-03-19 07:45:13.96 1000 FEE 435209 21042 \N \N 6033603 2025-03-19 07:49:36.468 2025-03-19 07:49:36.468 1000 FEE 435214 20225 \N \N 6033606 2025-03-19 07:49:58.78 2025-03-19 07:49:58.78 1000 FEE 435215 3745 \N \N 6033658 2025-03-19 07:53:40.942 2025-03-19 07:53:40.942 1000 FEE 435220 780 \N \N 6033684 2025-03-19 07:57:21.811 2025-03-19 07:57:21.811 21000 FEE 435226 8870 \N \N 6033695 2025-03-19 07:58:10.752 2025-03-19 07:58:10.752 1000 FEE 435228 7960 \N \N 6033702 2025-03-19 07:59:19.041 2025-03-19 07:59:19.041 100000 FEE 435231 20755 \N \N 6033712 2025-03-19 08:00:15.059 2025-03-19 08:00:15.059 1000 FEE 435221 4378 \N \N 6033713 2025-03-19 08:00:15.059 2025-03-19 08:00:15.059 9000 TIP 435221 20987 \N \N 6033767 2025-03-19 08:01:26.118 2025-03-19 08:01:26.118 1000 FEE 435236 21815 \N \N 6033781 2025-03-19 08:03:23.463 2025-03-19 08:03:23.463 1000 FEE 435238 20858 \N \N 6033782 2025-03-19 08:03:23.594 2025-03-19 08:03:23.594 3000 FEE 435136 18615 \N \N 6033783 2025-03-19 08:03:23.594 2025-03-19 08:03:23.594 27000 TIP 435136 20826 \N \N 6033788 2025-03-19 08:03:44.559 2025-03-19 08:03:44.559 100 FEE 435217 10280 \N \N 6033789 2025-03-19 08:03:44.559 2025-03-19 08:03:44.559 900 TIP 435217 20562 \N \N 6033799 2025-03-19 08:07:07.415 2025-03-19 08:07:07.415 1000 FEE 435244 1773 \N \N 6033801 2025-03-19 08:07:15.623 2025-03-19 08:07:15.623 4000 FEE 435243 20613 \N \N 6033802 2025-03-19 08:07:15.623 2025-03-19 08:07:15.623 36000 TIP 435243 18829 \N \N 6033803 2025-03-19 08:07:54.103 2025-03-19 08:07:54.103 1000 FEE 435245 14357 \N \N 6033806 2025-03-19 08:08:13.685 2025-03-19 08:08:13.685 700 FEE 434713 2232 \N \N 6033807 2025-03-19 08:08:13.685 2025-03-19 08:08:13.685 6300 TIP 434713 20190 \N \N 6033812 2025-03-19 08:09:28.347 2025-03-19 08:09:28.347 3000 FEE 435230 21455 \N \N 6033813 2025-03-19 08:09:28.347 2025-03-19 08:09:28.347 27000 TIP 435230 20751 \N \N 6033830 2025-03-19 08:10:28.238 2025-03-19 08:10:28.238 100 FEE 435169 12562 \N \N 6033831 2025-03-19 08:10:28.238 2025-03-19 08:10:28.238 900 TIP 435169 20757 \N \N 6033837 2025-03-19 08:10:42.382 2025-03-19 08:10:42.382 27000 FEE 435246 10096 \N \N 6033838 2025-03-19 08:10:42.382 2025-03-19 08:10:42.382 243000 TIP 435246 1447 \N \N 6033871 2025-03-19 08:15:24.232 2025-03-19 08:15:24.232 10000 FEE 433208 1173 \N \N 6033872 2025-03-19 08:15:24.232 2025-03-19 08:15:24.232 90000 TIP 433208 13249 \N \N 6033878 2025-03-19 08:15:48.019 2025-03-19 08:15:48.019 1000 FEE 434440 21406 \N \N 6033879 2025-03-19 08:15:48.019 2025-03-19 08:15:48.019 9000 TIP 434440 4167 \N \N 6033903 2025-03-19 08:16:18.885 2025-03-19 08:16:18.885 1000 FEE 435254 13097 \N \N 6033904 2025-03-19 08:16:18.885 2025-03-19 08:16:18.885 9000 TIP 435254 21044 \N \N 6033909 2025-03-19 08:16:19.971 2025-03-19 08:16:19.971 1000 FEE 435254 20225 \N \N 6033910 2025-03-19 08:16:19.971 2025-03-19 08:16:19.971 9000 TIP 435254 18011 \N \N 6033933 2025-03-19 08:17:27.238 2025-03-19 08:17:27.238 2300 FEE 435241 21070 \N \N 6033934 2025-03-19 08:17:27.238 2025-03-19 08:17:27.238 20700 TIP 435241 16747 \N \N 6033937 2025-03-19 08:17:27.496 2025-03-19 08:17:27.496 2300 FEE 435241 20133 \N \N 6033938 2025-03-19 08:17:27.496 2025-03-19 08:17:27.496 20700 TIP 435241 2529 \N \N 6033939 2025-03-19 08:17:27.631 2025-03-19 08:17:27.631 2300 FEE 435241 19842 \N \N 6033940 2025-03-19 08:17:27.631 2025-03-19 08:17:27.631 20700 TIP 435241 3686 \N \N 6033953 2025-03-19 08:18:11.51 2025-03-19 08:18:11.51 100 FEE 435046 1002 \N \N 6033954 2025-03-19 08:18:11.51 2025-03-19 08:18:11.51 900 TIP 435046 13553 \N \N 6034002 2025-03-19 08:21:16.507 2025-03-19 08:21:16.507 4600 FEE 435231 11942 \N \N 6034003 2025-03-19 08:21:16.507 2025-03-19 08:21:16.507 41400 TIP 435231 18265 \N \N 6034012 2025-03-19 08:21:17.917 2025-03-19 08:21:17.917 2300 FEE 435231 902 \N \N 6034013 2025-03-19 08:21:17.917 2025-03-19 08:21:17.917 20700 TIP 435231 16842 \N \N 6034036 2025-03-19 08:21:23.21 2025-03-19 08:21:23.21 2300 FEE 435231 20454 \N \N 6034037 2025-03-19 08:21:23.21 2025-03-19 08:21:23.21 20700 TIP 435231 15719 \N \N 6034040 2025-03-19 08:21:23.674 2025-03-19 08:21:23.674 2300 FEE 435231 776 \N \N 6034041 2025-03-19 08:21:23.674 2025-03-19 08:21:23.674 20700 TIP 435231 20717 \N \N 6034042 2025-03-19 08:21:23.695 2025-03-19 08:21:23.695 2300 FEE 435231 16562 \N \N 6034043 2025-03-19 08:21:23.695 2025-03-19 08:21:23.695 20700 TIP 435231 19488 \N \N 6034048 2025-03-19 08:21:24.169 2025-03-19 08:21:24.169 2300 FEE 435231 618 \N \N 6034049 2025-03-19 08:21:24.169 2025-03-19 08:21:24.169 20700 TIP 435231 1141 \N \N 6034052 2025-03-19 08:21:25.127 2025-03-19 08:21:25.127 2300 FEE 435231 21829 \N \N 6034053 2025-03-19 08:21:25.127 2025-03-19 08:21:25.127 20700 TIP 435231 15617 \N \N 6034056 2025-03-19 08:21:25.314 2025-03-19 08:21:25.314 2300 FEE 435231 21320 \N \N 6034057 2025-03-19 08:21:25.314 2025-03-19 08:21:25.314 20700 TIP 435231 14357 \N \N 6034113 2025-03-19 08:26:16.369 2025-03-19 08:26:16.369 9000 FEE 435231 21022 \N \N 6034114 2025-03-19 08:26:16.369 2025-03-19 08:26:16.369 81000 TIP 435231 9695 \N \N 6034151 2025-03-19 08:29:32.636 2025-03-19 08:29:32.636 1000 FEE 435257 1173 \N \N 6034152 2025-03-19 08:29:32.636 2025-03-19 08:29:32.636 9000 TIP 435257 642 \N \N 6034155 2025-03-19 08:29:45.807 2025-03-19 08:29:45.807 1000 FEE 435272 13759 \N \N 6034169 2025-03-19 08:30:46.96 2025-03-19 08:30:46.96 1000 FEE 435275 1733 \N \N 6034190 2025-03-19 08:30:49.936 2025-03-19 08:30:49.936 100000 FEE 435276 6268 \N \N 6034191 2025-03-19 08:30:50.056 2025-03-19 08:30:50.056 2300 FEE 429559 2719 \N \N 6034192 2025-03-19 08:30:50.056 2025-03-19 08:30:50.056 20700 TIP 429559 14785 \N \N 6034207 2025-03-19 08:30:56.433 2025-03-19 08:30:56.433 2300 FEE 433844 882 \N \N 6034208 2025-03-19 08:30:56.433 2025-03-19 08:30:56.433 20700 TIP 433844 739 \N \N 6034209 2025-03-19 08:30:56.665 2025-03-19 08:30:56.665 2300 FEE 433844 1198 \N \N 6034210 2025-03-19 08:30:56.665 2025-03-19 08:30:56.665 20700 TIP 433844 10690 \N \N 6033273 2025-03-19 07:20:39.541 2025-03-19 07:20:39.541 800 FEE 435142 937 \N \N 6033274 2025-03-19 07:20:39.541 2025-03-19 07:20:39.541 7200 TIP 435142 12277 \N \N 6033294 2025-03-19 07:23:36.125 2025-03-19 07:23:36.125 9000 FEE 434958 16816 \N \N 6033295 2025-03-19 07:23:36.125 2025-03-19 07:23:36.125 81000 TIP 434958 900 \N \N 6033301 2025-03-19 07:24:04.131 2025-03-19 07:24:04.131 1000 FEE 435173 20563 \N \N 6033304 2025-03-19 07:24:06.606 2025-03-19 07:24:06.606 1000 FEE 435174 618 \N \N 6033308 2025-03-19 07:24:33.285 2025-03-19 07:24:33.285 100 FEE 435151 13217 \N \N 6033309 2025-03-19 07:24:33.285 2025-03-19 07:24:33.285 900 TIP 435151 11999 \N \N 6033318 2025-03-19 07:24:36.484 2025-03-19 07:24:36.484 1000 FEE 435158 10818 \N \N 6033319 2025-03-19 07:24:36.484 2025-03-19 07:24:36.484 9000 TIP 435158 17316 \N \N 6033328 2025-03-19 07:25:31.243 2025-03-19 07:25:31.243 27000 FEE 435152 4177 \N \N 6033329 2025-03-19 07:25:31.243 2025-03-19 07:25:31.243 243000 TIP 435152 13566 \N \N 6033354 2025-03-19 07:28:10.745 2025-03-19 07:28:10.745 900 FEE 435154 20778 \N \N 6033355 2025-03-19 07:28:10.745 2025-03-19 07:28:10.745 8100 TIP 435154 704 \N \N 6033377 2025-03-19 07:30:00.929 2025-03-19 07:30:00.929 1000 FEE 435002 20225 \N \N 6033378 2025-03-19 07:30:00.929 2025-03-19 07:30:00.929 9000 TIP 435002 738 \N \N 6033395 2025-03-19 07:32:56.008 2025-03-19 07:32:56.008 1000 FEE 435192 9695 \N \N 6033417 2025-03-19 07:33:10.008 2025-03-19 07:33:10.008 1000 FEE 434997 15196 \N \N 6033418 2025-03-19 07:33:10.008 2025-03-19 07:33:10.008 9000 TIP 434997 20023 \N \N 6033424 2025-03-19 07:33:26.126 2025-03-19 07:33:26.126 1000 FEE 435019 15336 \N \N 6033425 2025-03-19 07:33:26.126 2025-03-19 07:33:26.126 9000 TIP 435019 4084 \N \N 6033436 2025-03-19 07:34:17.27 2025-03-19 07:34:17.27 900 FEE 434991 1209 \N \N 6033437 2025-03-19 07:34:17.27 2025-03-19 07:34:17.27 8100 TIP 434991 7992 \N \N 6033445 2025-03-19 07:34:41.705 2025-03-19 07:34:41.705 9000 FEE 434988 649 \N \N 6033446 2025-03-19 07:34:41.705 2025-03-19 07:34:41.705 81000 TIP 434988 14785 \N \N 6033456 2025-03-19 07:36:16.263 2025-03-19 07:36:16.263 1000 FEE 435197 1519 \N \N 6033459 2025-03-19 07:36:28.47 2025-03-19 07:36:28.47 4000 FEE 435196 17030 \N \N 6033460 2025-03-19 07:36:28.47 2025-03-19 07:36:28.47 36000 TIP 435196 2718 \N \N 6033469 2025-03-19 07:36:54.672 2025-03-19 07:36:54.672 8300 FEE 435046 18601 \N \N 6033470 2025-03-19 07:36:54.672 2025-03-19 07:36:54.672 74700 TIP 435046 19842 \N \N 6033491 2025-03-19 07:38:31.999 2025-03-19 07:38:31.999 27000 FEE 435192 12769 \N \N 6033492 2025-03-19 07:38:31.999 2025-03-19 07:38:31.999 243000 TIP 435192 1761 \N \N 6033504 2025-03-19 07:38:46.022 2025-03-19 07:38:46.022 500 FEE 435030 9276 \N \N 6033505 2025-03-19 07:38:46.022 2025-03-19 07:38:46.022 4500 TIP 435030 19996 \N \N 6033508 2025-03-19 07:38:48.889 2025-03-19 07:38:48.889 27000 FEE 435189 18274 \N \N 6033509 2025-03-19 07:38:48.889 2025-03-19 07:38:48.889 243000 TIP 435189 13249 \N \N 6033517 2025-03-19 07:39:47.912 2025-03-19 07:39:47.912 1000 FEE 435200 20939 \N \N 6033520 2025-03-19 07:40:01.876 2025-03-19 07:40:01.876 500 FEE 435046 1515 \N \N 6033521 2025-03-19 07:40:01.876 2025-03-19 07:40:01.876 4500 TIP 435046 10979 \N \N 6033530 2025-03-19 07:40:08.465 2025-03-19 07:40:08.465 2300 FEE 435193 9184 \N \N 6033531 2025-03-19 07:40:08.465 2025-03-19 07:40:08.465 20700 TIP 435193 16356 \N \N 6033536 2025-03-19 07:40:08.861 2025-03-19 07:40:08.861 2300 FEE 435193 20799 \N \N 6033537 2025-03-19 07:40:08.861 2025-03-19 07:40:08.861 20700 TIP 435193 21482 \N \N 6033556 2025-03-19 07:41:13.401 2025-03-19 07:41:13.401 1000 FEE 434583 1618 \N \N 6033557 2025-03-19 07:41:13.401 2025-03-19 07:41:13.401 9000 TIP 434583 20840 \N \N 6033562 2025-03-19 07:41:43.408 2025-03-19 07:41:43.408 27000 FEE 435200 617 \N \N 6033563 2025-03-19 07:41:43.408 2025-03-19 07:41:43.408 243000 TIP 435200 19537 \N \N 6033565 2025-03-19 07:41:56.329 2025-03-19 07:41:56.329 1000 FEE 435206 21734 \N \N 6033575 2025-03-19 07:42:45.446 2025-03-19 07:42:45.446 1000 FEE 435046 691 \N \N 6033576 2025-03-19 07:42:45.446 2025-03-19 07:42:45.446 9000 TIP 435046 7125 \N \N 6033577 2025-03-19 07:42:45.986 2025-03-19 07:42:45.986 9000 FEE 435046 1692 \N \N 6033578 2025-03-19 07:42:45.986 2025-03-19 07:42:45.986 81000 TIP 435046 20602 \N \N 6033583 2025-03-19 07:43:36.911 2025-03-19 07:43:36.911 1000 FEE 435199 21239 \N \N 6033584 2025-03-19 07:43:36.911 2025-03-19 07:43:36.911 9000 TIP 435199 15115 \N \N 6033589 2025-03-19 07:44:41.34 2025-03-19 07:44:41.34 10000 FEE 435030 17116 \N \N 6033590 2025-03-19 07:44:41.34 2025-03-19 07:44:41.34 90000 TIP 435030 19378 \N \N 6033601 2025-03-19 07:49:35.471 2025-03-19 07:49:35.471 3000 FEE 435209 15544 \N \N 6033602 2025-03-19 07:49:35.471 2025-03-19 07:49:35.471 27000 TIP 435209 10398 \N \N 6033611 2025-03-19 07:50:10.468 2025-03-19 07:50:10.468 1000 FEE 435046 720 \N \N 6033612 2025-03-19 07:50:10.468 2025-03-19 07:50:10.468 9000 TIP 435046 19655 \N \N 6033649 2025-03-19 07:52:04.601 2025-03-19 07:52:04.601 1000 FEE 435218 21412 \N \N 6033652 2025-03-19 07:52:50.677 2025-03-19 07:52:50.677 7100 FEE 435018 685 \N \N 6033653 2025-03-19 07:52:50.677 2025-03-19 07:52:50.677 63900 TIP 435018 17673 \N \N 6033655 2025-03-19 07:53:08.927 2025-03-19 07:53:08.927 3000 FEE 435214 12097 \N \N 6033656 2025-03-19 07:53:08.927 2025-03-19 07:53:08.927 27000 TIP 435214 697 \N \N 6033665 2025-03-19 07:54:22.562 2025-03-19 07:54:22.562 27000 FEE 435220 15146 \N \N 6033666 2025-03-19 07:54:22.562 2025-03-19 07:54:22.562 243000 TIP 435220 1615 \N \N 6033667 2025-03-19 07:54:51.076 2025-03-19 07:54:51.076 3000 FEE 435154 15119 \N \N 6033668 2025-03-19 07:54:51.076 2025-03-19 07:54:51.076 27000 TIP 435154 1046 \N \N 6033685 2025-03-19 07:57:31.483 2025-03-19 07:57:31.483 0 FEE 435217 6202 \N \N 6033689 2025-03-19 07:58:06.211 2025-03-19 07:58:06.211 3000 FEE 435115 3642 \N \N 6033690 2025-03-19 07:58:06.211 2025-03-19 07:58:06.211 27000 TIP 435115 2459 \N \N 6033693 2025-03-19 07:58:08.545 2025-03-19 07:58:08.545 10000 FEE 434835 16809 \N \N 6033694 2025-03-19 07:58:08.545 2025-03-19 07:58:08.545 90000 TIP 434835 17209 \N \N 6033697 2025-03-19 07:58:48.519 2025-03-19 07:58:48.519 1000 FEE 435044 964 \N \N 6033698 2025-03-19 07:58:48.519 2025-03-19 07:58:48.519 9000 TIP 435044 19759 \N \N 6033710 2025-03-19 08:00:14.763 2025-03-19 08:00:14.763 1000 FEE 435221 10311 \N \N 6033711 2025-03-19 08:00:14.763 2025-03-19 08:00:14.763 9000 TIP 435221 21287 \N \N 6033724 2025-03-19 08:00:19.729 2025-03-19 08:00:19.729 1000 FEE 435232 10013 \N \N 6033725 2025-03-19 08:00:19.729 2025-03-19 08:00:19.729 9000 TIP 435232 7668 \N \N 6033732 2025-03-19 08:00:44.688 2025-03-19 08:00:44.688 15000 FEE 435220 16513 \N \N 6033733 2025-03-19 08:00:44.688 2025-03-19 08:00:44.688 135000 TIP 435220 985 \N \N 6033738 2025-03-19 08:01:02.726 2025-03-19 08:01:02.726 2000 FEE 434791 6164 \N \N 6033739 2025-03-19 08:01:02.726 2025-03-19 08:01:02.726 18000 TIP 434791 14663 \N \N 6033740 2025-03-19 08:01:08.18 2025-03-19 08:01:08.18 2000 FEE 435115 11298 \N \N 6033741 2025-03-19 08:01:08.18 2025-03-19 08:01:08.18 18000 TIP 435115 5758 \N \N 6033784 2025-03-19 08:03:25.763 2025-03-19 08:03:25.763 1000 FEE 435239 19502 \N \N 6033785 2025-03-19 08:03:41.63 2025-03-19 08:03:41.63 1000 FEE 435240 894 \N \N 6033792 2025-03-19 08:04:19.959 2025-03-19 08:04:19.959 0 FEE 435240 749 \N \N 6033820 2025-03-19 08:09:43.403 2025-03-19 08:09:43.403 3000 FEE 435232 20655 \N \N 6033280 2025-03-19 07:21:10.516 2025-03-19 07:21:10.516 1000 FEE 435166 14260 \N \N 6033293 2025-03-19 07:23:23.295 2025-03-19 07:23:23.295 1000 FEE 435171 4415 \N \N 6033296 2025-03-19 07:23:45.691 2025-03-19 07:23:45.691 9000 FEE 435018 17817 \N \N 6033297 2025-03-19 07:23:45.691 2025-03-19 07:23:45.691 81000 TIP 435018 21012 \N \N 6033314 2025-03-19 07:24:35.476 2025-03-19 07:24:35.476 100 FEE 435168 2583 \N \N 6033315 2025-03-19 07:24:35.476 2025-03-19 07:24:35.476 900 TIP 435168 11897 \N \N 6033322 2025-03-19 07:24:57.401 2025-03-19 07:24:57.401 3000 FEE 435152 7395 \N \N 6033323 2025-03-19 07:24:57.401 2025-03-19 07:24:57.401 27000 TIP 435152 1478 \N \N 6033327 2025-03-19 07:25:25.176 2025-03-19 07:25:25.176 1000 FEE 435176 17148 \N \N 6033336 2025-03-19 07:26:02.365 2025-03-19 07:26:02.365 100 FEE 434765 20310 \N \N 6033337 2025-03-19 07:26:02.365 2025-03-19 07:26:02.365 900 TIP 434765 1006 \N \N 6033346 2025-03-19 07:27:51.16 2025-03-19 07:27:51.16 1700 FEE 435174 2330 \N \N 6033347 2025-03-19 07:27:51.16 2025-03-19 07:27:51.16 15300 TIP 435174 20717 \N \N 6033365 2025-03-19 07:29:41.556 2025-03-19 07:29:41.556 1000 FEE 435065 686 \N \N 6033366 2025-03-19 07:29:41.556 2025-03-19 07:29:41.556 9000 TIP 435065 15732 \N \N 6033375 2025-03-19 07:30:00.636 2025-03-19 07:30:00.636 1000 FEE 435018 16276 \N \N 6033376 2025-03-19 07:30:00.636 2025-03-19 07:30:00.636 9000 TIP 435018 1175 \N \N 6033379 2025-03-19 07:30:02.954 2025-03-19 07:30:02.954 1000 FEE 435185 16594 \N \N 6033383 2025-03-19 07:32:00.003 2025-03-19 07:32:00.003 1000 FEE 435187 21825 \N \N 6033405 2025-03-19 07:33:07.496 2025-03-19 07:33:07.496 1000 FEE 434997 20922 \N \N 6033406 2025-03-19 07:33:07.496 2025-03-19 07:33:07.496 9000 TIP 434997 20222 \N \N 6033438 2025-03-19 07:34:17.491 2025-03-19 07:34:17.491 9000 FEE 434991 896 \N \N 6033439 2025-03-19 07:34:17.491 2025-03-19 07:34:17.491 81000 TIP 434991 4819 \N \N 6033449 2025-03-19 07:35:15.731 2025-03-19 07:35:15.731 1000 FEE 435195 2942 \N \N 6033452 2025-03-19 07:35:44.837 2025-03-19 07:35:44.837 1000 FEE 435196 2065 \N \N 6033471 2025-03-19 07:36:55.413 2025-03-19 07:36:55.413 8300 FEE 435030 861 \N \N 6033472 2025-03-19 07:36:55.413 2025-03-19 07:36:55.413 74700 TIP 435030 21670 \N \N 6033475 2025-03-19 07:36:55.627 2025-03-19 07:36:55.627 8300 FEE 435030 16447 \N \N 6033476 2025-03-19 07:36:55.627 2025-03-19 07:36:55.627 74700 TIP 435030 16336 \N \N 6033489 2025-03-19 07:38:29.367 2025-03-19 07:38:29.367 3000 FEE 435192 20606 \N \N 6033490 2025-03-19 07:38:29.367 2025-03-19 07:38:29.367 27000 TIP 435192 11829 \N \N 6033526 2025-03-19 07:40:03.033 2025-03-19 07:40:03.033 500 FEE 435046 2583 \N \N 6033527 2025-03-19 07:40:03.033 2025-03-19 07:40:03.033 4500 TIP 435046 20781 \N \N 6033542 2025-03-19 07:40:33.305 2025-03-19 07:40:33.305 1000 FEE 435202 5175 \N \N 6033567 2025-03-19 07:42:12.011 2025-03-19 07:42:12.011 0 FEE 435206 15526 \N \N 6033580 2025-03-19 07:43:14.014 2025-03-19 07:43:14.014 3300 FEE 435162 15662 \N \N 6033581 2025-03-19 07:43:14.014 2025-03-19 07:43:14.014 29700 TIP 435162 10352 \N \N 6033585 2025-03-19 07:43:36.967 2025-03-19 07:43:36.967 1000 FEE 435199 3504 \N \N 6033586 2025-03-19 07:43:36.967 2025-03-19 07:43:36.967 9000 TIP 435199 13467 \N \N 6033587 2025-03-19 07:44:09.422 2025-03-19 07:44:09.422 0 FEE 435207 20745 \N \N 6033598 2025-03-19 07:48:42.436 2025-03-19 07:48:42.436 1000 FEE 435212 6578 \N \N 6033607 2025-03-19 07:50:09.284 2025-03-19 07:50:09.284 1000 FEE 435046 9184 \N \N 6033608 2025-03-19 07:50:09.284 2025-03-19 07:50:09.284 9000 TIP 435046 7682 \N \N 6033636 2025-03-19 07:50:27.619 2025-03-19 07:50:27.619 1000 FEE 434646 7766 \N \N 6033637 2025-03-19 07:50:27.619 2025-03-19 07:50:27.619 9000 TIP 434646 797 \N \N 6033640 2025-03-19 07:50:39.513 2025-03-19 07:50:39.513 27000 FEE 435213 3686 \N \N 6033641 2025-03-19 07:50:39.513 2025-03-19 07:50:39.513 243000 TIP 435213 11314 \N \N 6033642 2025-03-19 07:50:50.434 2025-03-19 07:50:50.434 10000 FEE 421398 624 \N \N 6033643 2025-03-19 07:50:50.434 2025-03-19 07:50:50.434 90000 TIP 421398 2543 \N \N 6033704 2025-03-19 08:00:10.488 2025-03-19 08:00:10.488 1000 FEE 435233 2327 \N \N 6033706 2025-03-19 08:00:13.386 2025-03-19 08:00:13.386 1000 FEE 435221 20495 \N \N 6033707 2025-03-19 08:00:13.386 2025-03-19 08:00:13.386 9000 TIP 435221 20892 \N \N 6033726 2025-03-19 08:00:25.891 2025-03-19 08:00:25.891 1000 FEE 435002 6030 \N \N 6033727 2025-03-19 08:00:25.891 2025-03-19 08:00:25.891 9000 TIP 435002 16410 \N \N 6033734 2025-03-19 08:00:58.625 2025-03-19 08:00:58.625 1000 FEE 435018 11716 \N \N 6033735 2025-03-19 08:00:58.625 2025-03-19 08:00:58.625 9000 TIP 435018 9418 \N \N 6037739 2025-03-19 13:51:47.461 2025-03-19 13:51:47.461 18900 TIP 435217 7583 \N \N 6037744 2025-03-19 13:51:51.641 2025-03-19 13:51:51.641 2100 FEE 435030 9329 \N \N 6037745 2025-03-19 13:51:51.641 2025-03-19 13:51:51.641 18900 TIP 435030 1825 \N \N 6037750 2025-03-19 13:51:52.57 2025-03-19 13:51:52.57 2100 FEE 435030 13133 \N \N 6037751 2025-03-19 13:51:52.57 2025-03-19 13:51:52.57 18900 TIP 435030 2285 \N \N 6037767 2025-03-19 13:52:10.271 2025-03-19 13:52:10.271 2100 FEE 435544 7913 \N \N 6037768 2025-03-19 13:52:10.271 2025-03-19 13:52:10.271 18900 TIP 435544 6537 \N \N 6037777 2025-03-19 13:52:11.404 2025-03-19 13:52:11.404 2100 FEE 435544 20713 \N \N 6037778 2025-03-19 13:52:11.404 2025-03-19 13:52:11.404 18900 TIP 435544 13843 \N \N 6037784 2025-03-19 13:52:13.553 2025-03-19 13:52:13.553 2500 FEE 435226 16667 \N \N 6037785 2025-03-19 13:52:13.553 2025-03-19 13:52:13.553 22500 TIP 435226 16387 \N \N 6037792 2025-03-19 13:52:15.271 2025-03-19 13:52:15.271 1000 FEE 435579 18393 \N \N 6037793 2025-03-19 13:52:15.271 2025-03-19 13:52:15.271 9000 TIP 435579 3347 \N \N 6037822 2025-03-19 13:52:21.398 2025-03-19 13:52:21.398 3300 FEE 435551 5775 \N \N 6037823 2025-03-19 13:52:21.398 2025-03-19 13:52:21.398 29700 TIP 435551 19924 \N \N 6037828 2025-03-19 13:52:39.603 2025-03-19 13:52:39.603 3300 FEE 435532 14818 \N \N 6037829 2025-03-19 13:52:39.603 2025-03-19 13:52:39.603 29700 TIP 435532 2492 \N \N 6037839 2025-03-19 13:53:04.297 2025-03-19 13:53:04.297 2100 FEE 434807 1638 \N \N 6037840 2025-03-19 13:53:04.297 2025-03-19 13:53:04.297 18900 TIP 434807 5195 \N \N 6037846 2025-03-19 13:53:29.818 2025-03-19 13:53:29.818 2100 FEE 435007 16660 \N \N 6037847 2025-03-19 13:53:29.818 2025-03-19 13:53:29.818 18900 TIP 435007 4776 \N \N 6037851 2025-03-19 13:54:16.582 2025-03-19 13:54:16.582 3300 FEE 435468 6136 \N \N 6037852 2025-03-19 13:54:16.582 2025-03-19 13:54:16.582 29700 TIP 435468 9367 \N \N 6037890 2025-03-19 14:00:51.748 2025-03-19 14:00:51.748 10000 FEE 435634 12965 \N \N 6037899 2025-03-19 14:03:17.19 2025-03-19 14:03:17.19 2100 FEE 435488 9099 \N \N 6037900 2025-03-19 14:03:17.19 2025-03-19 14:03:17.19 18900 TIP 435488 2056 \N \N 6037923 2025-03-19 14:06:30.859 2025-03-19 14:06:30.859 100000 FEE 435639 18449 \N \N 6037936 2025-03-19 14:09:45.31 2025-03-19 14:09:45.31 2100 FEE 435579 9307 \N \N 6037937 2025-03-19 14:09:45.31 2025-03-19 14:09:45.31 18900 TIP 435579 4128 \N \N 6037950 2025-03-19 14:14:31.017 2025-03-19 14:14:31.017 5000 FEE 435643 6741 \N \N 6037954 2025-03-19 14:15:44.637 2025-03-19 14:15:44.637 1000 FEE 435646 21555 \N \N 6038008 2025-03-19 14:24:25.858 2025-03-19 14:24:25.858 2100 FEE 435577 6191 \N \N 6038009 2025-03-19 14:24:25.858 2025-03-19 14:24:25.858 18900 TIP 435577 14260 \N \N 6038012 2025-03-19 14:24:40.608 2025-03-19 14:24:40.608 16600 FEE 435639 15662 \N \N 6038013 2025-03-19 14:24:40.608 2025-03-19 14:24:40.608 149400 TIP 435639 19378 \N \N 6038014 2025-03-19 14:24:45.752 2025-03-19 14:24:45.752 1000 FEE 435649 10490 \N \N 6038019 2025-03-19 14:25:09.968 2025-03-19 14:25:09.968 16600 FEE 435488 9611 \N \N 6038020 2025-03-19 14:25:09.968 2025-03-19 14:25:09.968 149400 TIP 435488 7667 \N \N 6038057 2025-03-19 14:25:12.932 2025-03-19 14:25:12.932 8300 FEE 435488 15180 \N \N 6038058 2025-03-19 14:25:12.932 2025-03-19 14:25:12.932 74700 TIP 435488 1785 \N \N 6038070 2025-03-19 14:25:13.744 2025-03-19 14:25:13.744 8300 FEE 435488 20133 \N \N 6038071 2025-03-19 14:25:13.744 2025-03-19 14:25:13.744 74700 TIP 435488 7389 \N \N 6038106 2025-03-19 14:26:23.131 2025-03-19 14:26:23.131 1300 FEE 433376 18494 \N \N 6038107 2025-03-19 14:26:23.131 2025-03-19 14:26:23.131 11700 TIP 433376 16351 \N \N 6038115 2025-03-19 14:26:59.888 2025-03-19 14:26:59.888 10000 FEE 435135 5057 \N \N 6038116 2025-03-19 14:26:59.888 2025-03-19 14:26:59.888 90000 TIP 435135 15491 \N \N 6038132 2025-03-19 14:29:20.464 2025-03-19 14:29:20.464 1000 FEE 435654 20597 \N \N 6038133 2025-03-19 14:29:26.652 2025-03-19 14:29:26.652 0 FEE 435654 9354 \N \N 6038149 2025-03-19 14:33:09.997 2025-03-19 14:33:09.997 1000 FEE 435658 15762 \N \N 6038150 2025-03-19 14:33:09.997 2025-03-19 14:33:09.997 9000 TIP 435658 18557 \N \N 6038160 2025-03-19 14:34:16.293 2025-03-19 14:34:16.293 8300 FEE 435657 7869 \N \N 6038161 2025-03-19 14:34:16.293 2025-03-19 14:34:16.293 74700 TIP 435657 11158 \N \N 6038176 2025-03-19 14:34:17.92 2025-03-19 14:34:17.92 8300 FEE 435657 1173 \N \N 6038177 2025-03-19 14:34:17.92 2025-03-19 14:34:17.92 74700 TIP 435657 20674 \N \N 6038184 2025-03-19 14:34:18.968 2025-03-19 14:34:18.968 8300 FEE 435657 18608 \N \N 6038185 2025-03-19 14:34:18.968 2025-03-19 14:34:18.968 74700 TIP 435657 20434 \N \N 6038194 2025-03-19 14:35:06.371 2025-03-19 14:35:06.371 8300 FEE 435133 632 \N \N 6038195 2025-03-19 14:35:06.371 2025-03-19 14:35:06.371 74700 TIP 435133 19217 \N \N 6038201 2025-03-19 14:37:49.913 2025-03-19 14:37:49.913 2000 FEE 435662 17592 \N \N 6038202 2025-03-19 14:37:49.913 2025-03-19 14:37:49.913 18000 TIP 435662 5870 \N \N 6038212 2025-03-19 14:43:32.756 2025-03-19 14:43:32.756 2500 FEE 435665 14376 \N \N 6038213 2025-03-19 14:43:32.756 2025-03-19 14:43:32.756 22500 TIP 435665 14663 \N \N 6038232 2025-03-19 14:49:08.635 2025-03-19 14:49:08.635 3400 FEE 435217 1038 \N \N 6038233 2025-03-19 14:49:08.635 2025-03-19 14:49:08.635 30600 TIP 435217 11153 \N \N 6038234 2025-03-19 14:49:08.66 2025-03-19 14:49:08.66 3400 FEE 435217 6537 \N \N 6038235 2025-03-19 14:49:08.66 2025-03-19 14:49:08.66 30600 TIP 435217 2741 \N \N 6038248 2025-03-19 14:50:14.36 2025-03-19 14:50:14.36 1100 FEE 435524 9353 \N \N 6038249 2025-03-19 14:50:14.36 2025-03-19 14:50:14.36 9900 TIP 435524 2293 \N \N 6038284 2025-03-19 14:56:11.784 2025-03-19 14:56:11.784 100 FEE 435610 1800 \N \N 6038285 2025-03-19 14:56:11.784 2025-03-19 14:56:11.784 900 TIP 435610 20973 \N \N 6038301 2025-03-19 14:58:53.423 2025-03-19 14:58:53.423 0 FEE 435669 19417 \N \N 6038313 2025-03-19 15:02:25.48 2025-03-19 15:02:25.48 3400 FEE 435569 2670 \N \N 6038314 2025-03-19 15:02:25.48 2025-03-19 15:02:25.48 30600 TIP 435569 17116 \N \N 6037782 2025-03-19 13:52:11.98 2025-03-19 13:52:11.98 18900 TIP 435544 9364 \N \N 6037804 2025-03-19 13:52:16.538 2025-03-19 13:52:16.538 2100 FEE 435544 20642 \N \N 6037805 2025-03-19 13:52:16.538 2025-03-19 13:52:16.538 18900 TIP 435544 9339 \N \N 6037838 2025-03-19 13:52:56.5 2025-03-19 13:52:56.5 0 FEE 435619 20715 \N \N 6037848 2025-03-19 13:53:40.26 2025-03-19 13:53:40.26 1000 FEE 435627 15560 \N \N 6037874 2025-03-19 13:55:00.726 2025-03-19 13:55:00.726 9000 FEE 435628 21631 \N \N 6037875 2025-03-19 13:55:00.726 2025-03-19 13:55:00.726 81000 TIP 435628 17106 \N \N 6037908 2025-03-19 14:04:42.595 2025-03-19 14:04:42.595 2100 FEE 435457 20825 \N \N 6037909 2025-03-19 14:04:42.595 2025-03-19 14:04:42.595 18900 TIP 435457 16329 \N \N 6037929 2025-03-19 14:09:03.931 2025-03-19 14:09:03.931 2100 FEE 435551 691 \N \N 6037930 2025-03-19 14:09:03.931 2025-03-19 14:09:03.931 18900 TIP 435551 1632 \N \N 6037960 2025-03-19 14:16:37.286 2025-03-19 14:16:37.286 2100 FEE 435551 21424 \N \N 6037961 2025-03-19 14:16:37.286 2025-03-19 14:16:37.286 18900 TIP 435551 11515 \N \N 6037969 2025-03-19 14:17:37.027 2025-03-19 14:17:37.027 2100 FEE 435465 17411 \N \N 6037970 2025-03-19 14:17:37.027 2025-03-19 14:17:37.027 18900 TIP 435465 12921 \N \N 6037977 2025-03-19 14:17:44.589 2025-03-19 14:17:44.589 2100 FEE 435468 5829 \N \N 6037978 2025-03-19 14:17:44.589 2025-03-19 14:17:44.589 18900 TIP 435468 18005 \N \N 6038088 2025-03-19 14:25:30.279 2025-03-19 14:25:30.279 8300 FEE 435488 8059 \N \N 6038089 2025-03-19 14:25:30.279 2025-03-19 14:25:30.279 74700 TIP 435488 19777 \N \N 6038096 2025-03-19 14:25:31.051 2025-03-19 14:25:31.051 8300 FEE 435488 1122 \N \N 6038097 2025-03-19 14:25:31.051 2025-03-19 14:25:31.051 74700 TIP 435488 17316 \N \N 6038110 2025-03-19 14:26:25.081 2025-03-19 14:26:25.081 1300 FEE 433376 17455 \N \N 6038111 2025-03-19 14:26:25.081 2025-03-19 14:26:25.081 11700 TIP 433376 2519 \N \N 6038117 2025-03-19 14:27:04.285 2025-03-19 14:27:04.285 3000 FEE 435649 987 \N \N 6038118 2025-03-19 14:27:04.285 2025-03-19 14:27:04.285 27000 TIP 435649 13544 \N \N 6038126 2025-03-19 14:28:15.707 2025-03-19 14:28:15.707 8300 FEE 435610 9330 \N \N 6038127 2025-03-19 14:28:15.707 2025-03-19 14:28:15.707 74700 TIP 435610 925 \N \N 6038141 2025-03-19 14:32:20.496 2025-03-19 14:32:20.496 1000 FEE 435658 4287 \N \N 6038154 2025-03-19 14:33:20.051 2025-03-19 14:33:20.051 1000 FEE 435660 1469 \N \N 6038174 2025-03-19 14:34:17.724 2025-03-19 14:34:17.724 8300 FEE 435657 19930 \N \N 6038175 2025-03-19 14:34:17.724 2025-03-19 14:34:17.724 74700 TIP 435657 16289 \N \N 6038182 2025-03-19 14:34:18.909 2025-03-19 14:34:18.909 8300 FEE 435657 21090 \N \N 6038183 2025-03-19 14:34:18.909 2025-03-19 14:34:18.909 74700 TIP 435657 20825 \N \N 6038192 2025-03-19 14:35:06.109 2025-03-19 14:35:06.109 8300 FEE 435133 882 \N \N 6038193 2025-03-19 14:35:06.109 2025-03-19 14:35:06.109 74700 TIP 435133 19655 \N \N 6038230 2025-03-19 14:49:07.279 2025-03-19 14:49:07.279 3400 FEE 435217 17157 \N \N 6038231 2025-03-19 14:49:07.279 2025-03-19 14:49:07.279 30600 TIP 435217 17209 \N \N 6038246 2025-03-19 14:50:13.484 2025-03-19 14:50:13.484 1100 FEE 435524 646 \N \N 6038247 2025-03-19 14:50:13.484 2025-03-19 14:50:13.484 9900 TIP 435524 12656 \N \N 6038252 2025-03-19 14:50:33.765 2025-03-19 14:50:33.765 2100 FEE 435657 5495 \N \N 6038253 2025-03-19 14:50:33.765 2025-03-19 14:50:33.765 18900 TIP 435657 12935 \N \N 6038270 2025-03-19 14:55:37.628 2025-03-19 14:55:37.628 200 FEE 435505 10352 \N \N 6038271 2025-03-19 14:55:37.628 2025-03-19 14:55:37.628 1800 TIP 435505 1515 \N \N 6038278 2025-03-19 14:55:48.854 2025-03-19 14:55:48.854 3300 FEE 435641 19570 \N \N 6038279 2025-03-19 14:55:48.854 2025-03-19 14:55:48.854 29700 TIP 435641 20291 \N \N 6038288 2025-03-19 14:56:41.29 2025-03-19 14:56:41.29 21000 FEE 435671 9552 \N \N 6038289 2025-03-19 14:56:44.751 2025-03-19 14:56:44.751 1000 FEE 435664 10849 \N \N 6038290 2025-03-19 14:56:44.751 2025-03-19 14:56:44.751 9000 TIP 435664 20701 \N \N 6038304 2025-03-19 14:59:22.245 2025-03-19 14:59:22.245 0 FEE 435669 14688 \N \N 6038346 2025-03-19 15:04:14.677 2025-03-19 15:04:14.677 300 FEE 435457 19537 \N \N 6038347 2025-03-19 15:04:14.677 2025-03-19 15:04:14.677 2700 TIP 435457 14990 \N \N 6038350 2025-03-19 15:04:15.185 2025-03-19 15:04:15.185 300 FEE 435457 21424 \N \N 6038351 2025-03-19 15:04:15.185 2025-03-19 15:04:15.185 2700 TIP 435457 2789 \N \N 6038360 2025-03-19 15:04:16.416 2025-03-19 15:04:16.416 300 FEE 435457 20710 \N \N 6038361 2025-03-19 15:04:16.416 2025-03-19 15:04:16.416 2700 TIP 435457 5359 \N \N 6038364 2025-03-19 15:04:16.937 2025-03-19 15:04:16.937 300 FEE 435457 5961 \N \N 6038365 2025-03-19 15:04:16.937 2025-03-19 15:04:16.937 2700 TIP 435457 6537 \N \N 6038371 2025-03-19 15:05:12.619 2025-03-19 15:05:12.619 12800 FEE 434814 902 \N \N 6038372 2025-03-19 15:05:12.619 2025-03-19 15:05:12.619 115200 TIP 434814 642 \N \N 6038383 2025-03-19 15:06:32.507 2025-03-19 15:06:32.507 9000 FEE 435630 13399 \N \N 6038384 2025-03-19 15:06:32.507 2025-03-19 15:06:32.507 81000 TIP 435630 12976 \N \N 6038394 2025-03-19 15:07:22.404 2025-03-19 15:07:22.404 1000 FEE 435684 13843 \N \N 6038420 2025-03-19 15:10:23.26 2025-03-19 15:10:23.26 1100 FEE 435495 1745 \N \N 6038421 2025-03-19 15:10:23.26 2025-03-19 15:10:23.26 9900 TIP 435495 4062 \N \N 6038437 2025-03-19 15:16:27.658 2025-03-19 15:16:27.658 100 FEE 435580 21585 \N \N 6038438 2025-03-19 15:16:27.658 2025-03-19 15:16:27.658 900 TIP 435580 15556 \N \N 6038456 2025-03-19 15:16:45.266 2025-03-19 15:16:45.266 100 FEE 435629 1039 \N \N 6038457 2025-03-19 15:16:45.266 2025-03-19 15:16:45.266 900 TIP 435629 19668 \N \N 6038462 2025-03-19 15:16:45.93 2025-03-19 15:16:45.93 100 FEE 435629 17991 \N \N 6038463 2025-03-19 15:16:45.93 2025-03-19 15:16:45.93 900 TIP 435629 18829 \N \N 6038464 2025-03-19 15:16:46.184 2025-03-19 15:16:46.184 100 FEE 435629 17201 \N \N 6038465 2025-03-19 15:16:46.184 2025-03-19 15:16:46.184 900 TIP 435629 20439 \N \N 6038470 2025-03-19 15:17:32.083 2025-03-19 15:17:32.083 1000 FEE 435689 782 \N \N 6038479 2025-03-19 15:17:57.809 2025-03-19 15:17:57.809 300 FEE 435677 21373 \N \N 6038480 2025-03-19 15:17:57.809 2025-03-19 15:17:57.809 2700 TIP 435677 21287 \N \N 6038525 2025-03-19 15:18:23.719 2025-03-19 15:18:23.719 300 FEE 435585 15703 \N \N 6038526 2025-03-19 15:18:23.719 2025-03-19 15:18:23.719 2700 TIP 435585 3360 \N \N 6038541 2025-03-19 15:20:06.835 2025-03-19 15:20:06.835 4000 FEE 435577 20412 \N \N 6038542 2025-03-19 15:20:06.835 2025-03-19 15:20:06.835 36000 TIP 435577 20102 \N \N 6038560 2025-03-19 15:24:39.411 2025-03-19 15:24:39.411 100 FEE 435678 20409 \N \N 6038561 2025-03-19 15:24:39.411 2025-03-19 15:24:39.411 900 TIP 435678 6136 \N \N 6038567 2025-03-19 15:25:24.21 2025-03-19 15:25:24.21 150000 FEE 435410 20837 \N \N 6038568 2025-03-19 15:25:24.21 2025-03-19 15:25:24.21 1350000 TIP 435410 18618 \N \N 6038574 2025-03-19 15:28:51.323 2025-03-19 15:28:51.323 1000 FEE 435698 16695 \N \N 6038585 2025-03-19 15:29:19.177 2025-03-19 15:29:19.177 1100 FEE 435653 12946 \N \N 6038586 2025-03-19 15:29:19.177 2025-03-19 15:29:19.177 9900 TIP 435653 2156 \N \N 6038595 2025-03-19 15:30:25.218 2025-03-19 15:30:25.218 1000 FEE 435698 660 \N \N 6038596 2025-03-19 15:30:25.218 2025-03-19 15:30:25.218 9000 TIP 435698 8287 \N \N 6038605 2025-03-19 15:30:56.976 2025-03-19 15:30:56.976 2300 FEE 435657 886 \N \N 6038606 2025-03-19 15:30:56.976 2025-03-19 15:30:56.976 20700 TIP 435657 11938 \N \N 6038638 2025-03-19 15:31:49.973 2025-03-19 15:31:49.973 2300 FEE 435657 15196 \N \N 6038639 2025-03-19 15:31:49.973 2025-03-19 15:31:49.973 20700 TIP 435657 1890 \N \N 6038642 2025-03-19 15:31:50.179 2025-03-19 15:31:50.179 2300 FEE 435657 1534 \N \N 6038643 2025-03-19 15:31:50.179 2025-03-19 15:31:50.179 20700 TIP 435657 17526 \N \N 6038661 2025-03-19 15:33:45.338 2025-03-19 15:33:45.338 1000 POLL 435516 17535 \N \N 6038663 2025-03-19 15:34:23.898 2025-03-19 15:34:23.898 1000 FEE 435706 21079 \N \N 6038713 2025-03-19 15:41:55.166 2025-03-19 15:41:55.166 1100 FEE 435497 19394 \N \N 6038714 2025-03-19 15:41:55.166 2025-03-19 15:41:55.166 9900 TIP 435497 1723 \N \N 6038732 2025-03-19 15:50:14.564 2025-03-19 15:50:14.564 0 FEE 435713 678 \N \N 6038752 2025-03-19 15:53:51.395 2025-03-19 15:53:51.395 1100 FEE 435719 20179 \N \N 6038753 2025-03-19 15:53:51.395 2025-03-19 15:53:51.395 9900 TIP 435719 1803 \N \N 6038758 2025-03-19 15:54:20.683 2025-03-19 15:54:20.683 300 FEE 435720 1424 \N \N 6038759 2025-03-19 15:54:20.683 2025-03-19 15:54:20.683 2700 TIP 435720 21829 \N \N 6038779 2025-03-19 15:58:37.048 2025-03-19 15:58:37.048 3000 FEE 435657 20778 \N \N 6033451 2025-03-19 07:35:25.201 2025-03-19 07:35:25.201 18900 TIP 434994 21271 \N \N 6033497 2025-03-19 07:38:40.087 2025-03-19 07:38:40.087 500 FEE 435086 20782 \N \N 6033498 2025-03-19 07:38:40.087 2025-03-19 07:38:40.087 4500 TIP 435086 6164 \N \N 6033500 2025-03-19 07:38:44.717 2025-03-19 07:38:44.717 2100 FEE 435019 20912 \N \N 6033501 2025-03-19 07:38:44.717 2025-03-19 07:38:44.717 18900 TIP 435019 658 \N \N 6033528 2025-03-19 07:40:03.561 2025-03-19 07:40:03.561 500 FEE 435046 5809 \N \N 6033529 2025-03-19 07:40:03.561 2025-03-19 07:40:03.561 4500 TIP 435046 13399 \N \N 6033534 2025-03-19 07:40:08.763 2025-03-19 07:40:08.763 2300 FEE 435193 6555 \N \N 6033535 2025-03-19 07:40:08.763 2025-03-19 07:40:08.763 20700 TIP 435193 17519 \N \N 6033564 2025-03-19 07:41:46.524 2025-03-19 07:41:46.524 10000 FEE 435205 13753 \N \N 6033573 2025-03-19 07:42:20.097 2025-03-19 07:42:20.097 2100 FEE 435200 13878 \N \N 6033574 2025-03-19 07:42:20.097 2025-03-19 07:42:20.097 18900 TIP 435200 20597 \N \N 6033615 2025-03-19 07:50:11.542 2025-03-19 07:50:11.542 1000 FEE 435046 12169 \N \N 6033616 2025-03-19 07:50:11.542 2025-03-19 07:50:11.542 9000 TIP 435046 11750 \N \N 6033622 2025-03-19 07:50:22.796 2025-03-19 07:50:22.796 1000 FEE 434642 2942 \N \N 6033623 2025-03-19 07:50:22.796 2025-03-19 07:50:22.796 9000 TIP 434642 3990 \N \N 6033630 2025-03-19 07:50:25.93 2025-03-19 07:50:25.93 1000 FEE 434646 12768 \N \N 6033631 2025-03-19 07:50:25.93 2025-03-19 07:50:25.93 9000 TIP 434646 12334 \N \N 6033648 2025-03-19 07:52:00.157 2025-03-19 07:52:00.157 210000 FEE 435217 5129 \N \N 6033661 2025-03-19 07:54:03.85 2025-03-19 07:54:03.85 1000 FEE 435221 19459 \N \N 6033686 2025-03-19 07:57:39.964 2025-03-19 07:57:39.964 10000 FEE 435227 5497 \N \N 6033728 2025-03-19 08:00:26.458 2025-03-19 08:00:26.458 1000 FEE 435002 1469 \N \N 6033729 2025-03-19 08:00:26.458 2025-03-19 08:00:26.458 9000 TIP 435002 9356 \N \N 6033742 2025-03-19 08:01:09.296 2025-03-19 08:01:09.296 1000 FEE 435136 726 \N \N 6033743 2025-03-19 08:01:09.296 2025-03-19 08:01:09.296 9000 TIP 435136 20812 \N \N 6033763 2025-03-19 08:01:23.878 2025-03-19 08:01:23.878 1000 FEE 435002 20734 \N \N 6033764 2025-03-19 08:01:23.878 2025-03-19 08:01:23.878 9000 TIP 435002 20619 \N \N 6033768 2025-03-19 08:01:31.765 2025-03-19 08:01:31.765 800 FEE 435224 2492 \N \N 6033769 2025-03-19 08:01:31.765 2025-03-19 08:01:31.765 7200 TIP 435224 3544 \N \N 6033773 2025-03-19 08:02:20.818 2025-03-19 08:02:20.818 2100 FEE 434958 20811 \N \N 6033774 2025-03-19 08:02:20.818 2025-03-19 08:02:20.818 18900 TIP 434958 18743 \N \N 6033775 2025-03-19 08:02:50.861 2025-03-19 08:02:50.861 100 FEE 435030 16348 \N \N 6033776 2025-03-19 08:02:50.861 2025-03-19 08:02:50.861 900 TIP 435030 2502 \N \N 6033777 2025-03-19 08:03:12.463 2025-03-19 08:03:12.463 4000 FEE 435206 986 \N \N 6033778 2025-03-19 08:03:12.463 2025-03-19 08:03:12.463 36000 TIP 435206 4487 \N \N 6033780 2025-03-19 08:03:19.372 2025-03-19 08:03:19.372 1000 FEE 435237 15239 \N \N 6033796 2025-03-19 08:05:54.685 2025-03-19 08:05:54.685 7100 FEE 435237 720 \N \N 6033797 2025-03-19 08:05:54.685 2025-03-19 08:05:54.685 63900 TIP 435237 19531 \N \N 6033804 2025-03-19 08:07:59.489 2025-03-19 08:07:59.489 1000 FEE 435246 6136 \N \N 6033841 2025-03-19 08:10:59.295 2025-03-19 08:10:59.295 1000 FEE 434963 16816 \N \N 6033842 2025-03-19 08:10:59.295 2025-03-19 08:10:59.295 9000 TIP 434963 12346 \N \N 6033846 2025-03-19 08:11:23.175 2025-03-19 08:11:23.175 4000 FEE 435154 14909 \N \N 6033847 2025-03-19 08:11:23.175 2025-03-19 08:11:23.175 36000 TIP 435154 19924 \N \N 6033880 2025-03-19 08:15:48.221 2025-03-19 08:15:48.221 1000 FEE 435254 11522 \N \N 6033899 2025-03-19 08:16:16.641 2025-03-19 08:16:16.641 1000 FEE 435238 12291 \N \N 6033900 2025-03-19 08:16:16.641 2025-03-19 08:16:16.641 9000 TIP 435238 19829 \N \N 6033925 2025-03-19 08:17:26.692 2025-03-19 08:17:26.692 2300 FEE 435241 16284 \N \N 6033926 2025-03-19 08:17:26.692 2025-03-19 08:17:26.692 20700 TIP 435241 667 \N \N 6033929 2025-03-19 08:17:26.962 2025-03-19 08:17:26.962 2300 FEE 435241 20137 \N \N 6033930 2025-03-19 08:17:26.962 2025-03-19 08:17:26.962 20700 TIP 435241 19966 \N \N 6033943 2025-03-19 08:17:29.36 2025-03-19 08:17:29.36 1000 FEE 435257 21421 \N \N 6033951 2025-03-19 08:17:55.664 2025-03-19 08:17:55.664 2100 FEE 435246 3377 \N \N 6033952 2025-03-19 08:17:55.664 2025-03-19 08:17:55.664 18900 TIP 435246 16704 \N \N 6033958 2025-03-19 08:18:42.283 2025-03-19 08:18:42.283 100 FEE 435252 12102 \N \N 6033959 2025-03-19 08:18:42.283 2025-03-19 08:18:42.283 900 TIP 435252 20778 \N \N 6033967 2025-03-19 08:18:54.699 2025-03-19 08:18:54.699 300 FEE 434925 16442 \N \N 6033968 2025-03-19 08:18:54.699 2025-03-19 08:18:54.699 2700 TIP 434925 621 \N \N 6033975 2025-03-19 08:20:31.856 2025-03-19 08:20:31.856 1000 FEE 435260 21683 \N \N 6033976 2025-03-19 08:20:32.384 2025-03-19 08:20:32.384 0 FEE 435255 19570 \N \N 6034000 2025-03-19 08:21:16.237 2025-03-19 08:21:16.237 2300 FEE 435231 6149 \N \N 6034001 2025-03-19 08:21:16.237 2025-03-19 08:21:16.237 20700 TIP 435231 807 \N \N 6034008 2025-03-19 08:21:17.588 2025-03-19 08:21:17.588 2300 FEE 435231 9355 \N \N 6034009 2025-03-19 08:21:17.588 2025-03-19 08:21:17.588 20700 TIP 435231 3504 \N \N 6034014 2025-03-19 08:21:18.065 2025-03-19 08:21:18.065 2300 FEE 435231 8045 \N \N 6034015 2025-03-19 08:21:18.065 2025-03-19 08:21:18.065 20700 TIP 435231 13759 \N \N 6034096 2025-03-19 08:23:05.59 2025-03-19 08:23:05.59 97000 FEE 435262 1469 \N \N 6034102 2025-03-19 08:24:26.094 2025-03-19 08:24:26.094 200 FEE 435264 20892 \N \N 6034103 2025-03-19 08:24:26.094 2025-03-19 08:24:26.094 1800 TIP 435264 14080 \N \N 6034107 2025-03-19 08:25:17.165 2025-03-19 08:25:17.165 100000 DONT_LIKE_THIS 435201 2674 \N \N 6034153 2025-03-19 08:29:40.062 2025-03-19 08:29:40.062 3300 FEE 435256 2735 \N \N 6034154 2025-03-19 08:29:40.062 2025-03-19 08:29:40.062 29700 TIP 435256 1439 \N \N 6034165 2025-03-19 08:30:39.742 2025-03-19 08:30:39.742 200 FEE 435272 12169 \N \N 6034166 2025-03-19 08:30:39.742 2025-03-19 08:30:39.742 1800 TIP 435272 17392 \N \N 6034178 2025-03-19 08:30:49.094 2025-03-19 08:30:49.094 2300 FEE 429559 1800 \N \N 6034179 2025-03-19 08:30:49.094 2025-03-19 08:30:49.094 20700 TIP 429559 21072 \N \N 6034186 2025-03-19 08:30:49.762 2025-03-19 08:30:49.762 2300 FEE 429559 11714 \N \N 6034187 2025-03-19 08:30:49.762 2025-03-19 08:30:49.762 20700 TIP 429559 9985 \N \N 6034197 2025-03-19 08:30:51.061 2025-03-19 08:30:51.061 2300 FEE 429559 9036 \N \N 6034198 2025-03-19 08:30:51.061 2025-03-19 08:30:51.061 20700 TIP 429559 15577 \N \N 6034211 2025-03-19 08:30:56.831 2025-03-19 08:30:56.831 2300 FEE 433844 21040 \N \N 6034212 2025-03-19 08:30:56.831 2025-03-19 08:30:56.831 20700 TIP 433844 10611 \N \N 6034245 2025-03-19 08:30:59.946 2025-03-19 08:30:59.946 2300 FEE 433844 21714 \N \N 6034246 2025-03-19 08:30:59.946 2025-03-19 08:30:59.946 20700 TIP 433844 14385 \N \N 6034283 2025-03-19 08:31:03.685 2025-03-19 08:31:03.685 2300 FEE 433844 624 \N \N 6034284 2025-03-19 08:31:03.685 2025-03-19 08:31:03.685 20700 TIP 433844 19735 \N \N 6034309 2025-03-19 08:32:23.159 2025-03-19 08:32:23.159 2300 FEE 435241 1044 \N \N 6034310 2025-03-19 08:32:23.159 2025-03-19 08:32:23.159 20700 TIP 435241 652 \N \N 6034325 2025-03-19 08:32:24.524 2025-03-19 08:32:24.524 2300 FEE 435241 5444 \N \N 6034326 2025-03-19 08:32:24.524 2025-03-19 08:32:24.524 20700 TIP 435241 3439 \N \N 6034331 2025-03-19 08:32:25.126 2025-03-19 08:32:25.126 2300 FEE 435241 14015 \N \N 6034332 2025-03-19 08:32:25.126 2025-03-19 08:32:25.126 20700 TIP 435241 15100 \N \N 6034348 2025-03-19 08:33:12.796 2025-03-19 08:33:12.796 8300 FEE 435231 11263 \N \N 6034349 2025-03-19 08:33:12.796 2025-03-19 08:33:12.796 74700 TIP 435231 5776 \N \N 6034352 2025-03-19 08:33:13.168 2025-03-19 08:33:13.168 16600 FEE 435231 2776 \N \N 6034353 2025-03-19 08:33:13.168 2025-03-19 08:33:13.168 149400 TIP 435231 18829 \N \N 6037862 2025-03-19 13:54:52.272 2025-03-19 13:54:52.272 2100 FEE 432705 5195 \N \N 6037863 2025-03-19 13:54:52.272 2025-03-19 13:54:52.272 18900 TIP 432705 9295 \N \N 6037866 2025-03-19 13:54:57.385 2025-03-19 13:54:57.385 1600 FEE 435610 15858 \N \N 6037867 2025-03-19 13:54:57.385 2025-03-19 13:54:57.385 14400 TIP 435610 20606 \N \N 6037870 2025-03-19 13:55:00.045 2025-03-19 13:55:00.045 2100 FEE 432705 667 \N \N 6037871 2025-03-19 13:55:00.045 2025-03-19 13:55:00.045 18900 TIP 432705 7772 \N \N 6037872 2025-03-19 13:55:00.187 2025-03-19 13:55:00.187 900 FEE 435628 9695 \N \N 6037873 2025-03-19 13:55:00.187 2025-03-19 13:55:00.187 8100 TIP 435628 5069 \N \N 6037887 2025-03-19 14:00:25.118 2025-03-19 14:00:25.118 1000 FEE 435633 16842 \N \N 6037955 2025-03-19 14:15:52.445 2025-03-19 14:15:52.445 7700 FEE 415559 18731 \N \N 6037956 2025-03-19 14:15:52.445 2025-03-19 14:15:52.445 69300 TIP 415559 9992 \N \N 6037963 2025-03-19 14:17:23.363 2025-03-19 14:17:23.363 500 FEE 435571 13177 \N \N 6037964 2025-03-19 14:17:23.363 2025-03-19 14:17:23.363 4500 TIP 435571 13878 \N \N 6037965 2025-03-19 14:17:32.52 2025-03-19 14:17:32.52 2100 FEE 435458 2111 \N \N 6037966 2025-03-19 14:17:32.52 2025-03-19 14:17:32.52 18900 TIP 435458 19403 \N \N 6037979 2025-03-19 14:17:46.413 2025-03-19 14:17:46.413 100000 FEE 435647 618 \N \N 6038035 2025-03-19 14:25:11.558 2025-03-19 14:25:11.558 8300 FEE 435488 21104 \N \N 6038036 2025-03-19 14:25:11.558 2025-03-19 14:25:11.558 74700 TIP 435488 2703 \N \N 6038049 2025-03-19 14:25:12.438 2025-03-19 14:25:12.438 8300 FEE 435488 12139 \N \N 6038050 2025-03-19 14:25:12.438 2025-03-19 14:25:12.438 74700 TIP 435488 661 \N \N 6038066 2025-03-19 14:25:13.482 2025-03-19 14:25:13.482 8300 FEE 435488 12935 \N \N 6038067 2025-03-19 14:25:13.482 2025-03-19 14:25:13.482 74700 TIP 435488 20973 \N \N 6038072 2025-03-19 14:25:13.853 2025-03-19 14:25:13.853 8300 FEE 435488 9026 \N \N 6038073 2025-03-19 14:25:13.853 2025-03-19 14:25:13.853 74700 TIP 435488 8535 \N \N 6038076 2025-03-19 14:25:14.081 2025-03-19 14:25:14.081 8300 FEE 435488 5942 \N \N 6038077 2025-03-19 14:25:14.081 2025-03-19 14:25:14.081 74700 TIP 435488 1428 \N \N 6038079 2025-03-19 14:25:29.735 2025-03-19 14:25:29.735 8300 FEE 435488 14705 \N \N 6038080 2025-03-19 14:25:29.735 2025-03-19 14:25:29.735 74700 TIP 435488 20891 \N \N 6038085 2025-03-19 14:25:30.079 2025-03-19 14:25:30.079 0 FEE 435649 21416 \N \N 6038098 2025-03-19 14:25:31.167 2025-03-19 14:25:31.167 8300 FEE 435488 21012 \N \N 6038099 2025-03-19 14:25:31.167 2025-03-19 14:25:31.167 74700 TIP 435488 9366 \N \N 6038100 2025-03-19 14:25:31.238 2025-03-19 14:25:31.238 8300 FEE 435488 20306 \N \N 6038101 2025-03-19 14:25:31.238 2025-03-19 14:25:31.238 74700 TIP 435488 2640 \N \N 6038128 2025-03-19 14:28:16.315 2025-03-19 14:28:16.315 8300 FEE 435610 20381 \N \N 6038129 2025-03-19 14:28:16.315 2025-03-19 14:28:16.315 74700 TIP 435610 16353 \N \N 6038136 2025-03-19 14:30:19.267 2025-03-19 14:30:19.267 1000 FEE 435656 12721 \N \N 6038151 2025-03-19 14:33:10.158 2025-03-19 14:33:10.158 1000 FEE 435658 1046 \N \N 6038152 2025-03-19 14:33:10.158 2025-03-19 14:33:10.158 9000 TIP 435658 16270 \N \N 6038178 2025-03-19 14:34:18.333 2025-03-19 14:34:18.333 8300 FEE 435657 670 \N \N 6038179 2025-03-19 14:34:18.333 2025-03-19 14:34:18.333 74700 TIP 435657 18232 \N \N 6038190 2025-03-19 14:35:05.968 2025-03-19 14:35:05.968 8300 FEE 435133 20551 \N \N 6038191 2025-03-19 14:35:05.968 2025-03-19 14:35:05.968 74700 TIP 435133 14381 \N \N 6038228 2025-03-19 14:48:23.813 2025-03-19 14:48:23.813 100 FEE 435457 1615 \N \N 6038229 2025-03-19 14:48:23.813 2025-03-19 14:48:23.813 900 TIP 435457 8376 \N \N 6038243 2025-03-19 14:50:08.671 2025-03-19 14:50:08.671 1100 FEE 435524 6202 \N \N 6038244 2025-03-19 14:50:08.671 2025-03-19 14:50:08.671 9900 TIP 435524 7583 \N \N 6038259 2025-03-19 14:54:37.224 2025-03-19 14:54:37.224 1000 FEE 435668 9337 \N \N 6038268 2025-03-19 14:55:34.444 2025-03-19 14:55:34.444 3300 FEE 435505 10280 \N \N 6038269 2025-03-19 14:55:34.444 2025-03-19 14:55:34.444 29700 TIP 435505 17162 \N \N 6038280 2025-03-19 14:55:48.968 2025-03-19 14:55:48.968 3300 FEE 435641 20019 \N \N 6038281 2025-03-19 14:55:48.968 2025-03-19 14:55:48.968 29700 TIP 435641 17984 \N \N 6038306 2025-03-19 15:00:11.296 2025-03-19 15:00:11.296 10000 FEE 435675 940 \N \N 6038315 2025-03-19 15:02:45.357 2025-03-19 15:02:45.357 1000 FEE 435676 16816 \N \N 6038354 2025-03-19 15:04:15.67 2025-03-19 15:04:15.67 300 FEE 435457 5794 \N \N 6038355 2025-03-19 15:04:15.67 2025-03-19 15:04:15.67 2700 TIP 435457 6260 \N \N 6038376 2025-03-19 15:06:02.317 2025-03-19 15:06:02.317 1100 FEE 435596 19689 \N \N 6038377 2025-03-19 15:06:02.317 2025-03-19 15:06:02.317 9900 TIP 435596 9906 \N \N 6038379 2025-03-19 15:06:29.787 2025-03-19 15:06:29.787 100 FEE 435630 5519 \N \N 6038380 2025-03-19 15:06:29.787 2025-03-19 15:06:29.787 900 TIP 435630 18423 \N \N 6038405 2025-03-19 15:09:26.029 2025-03-19 15:09:26.029 1100 FEE 435030 19446 \N \N 6038406 2025-03-19 15:09:26.029 2025-03-19 15:09:26.029 9900 TIP 435030 678 \N \N 6038430 2025-03-19 15:12:54.208 2025-03-19 15:12:54.208 2100 FEE 435610 15386 \N \N 6038431 2025-03-19 15:12:54.208 2025-03-19 15:12:54.208 18900 TIP 435610 11450 \N \N 6038439 2025-03-19 15:16:27.782 2025-03-19 15:16:27.782 100 FEE 435580 19966 \N \N 6038440 2025-03-19 15:16:27.782 2025-03-19 15:16:27.782 900 TIP 435580 12368 \N \N 6038454 2025-03-19 15:16:45.096 2025-03-19 15:16:45.096 100 FEE 435629 7659 \N \N 6038455 2025-03-19 15:16:45.096 2025-03-19 15:16:45.096 900 TIP 435629 13348 \N \N 6038460 2025-03-19 15:16:45.57 2025-03-19 15:16:45.57 100 FEE 435629 2367 \N \N 6038461 2025-03-19 15:16:45.57 2025-03-19 15:16:45.57 900 TIP 435629 20577 \N \N 6038481 2025-03-19 15:17:57.911 2025-03-19 15:17:57.911 300 FEE 435677 798 \N \N 6038482 2025-03-19 15:17:57.911 2025-03-19 15:17:57.911 2700 TIP 435677 1802 \N \N 6038499 2025-03-19 15:18:10.449 2025-03-19 15:18:10.449 0 FEE 435690 777 \N \N 6038504 2025-03-19 15:18:12.616 2025-03-19 15:18:12.616 100 FEE 435639 4768 \N \N 6038505 2025-03-19 15:18:12.616 2025-03-19 15:18:12.616 900 TIP 435639 12946 \N \N 6038509 2025-03-19 15:18:18.168 2025-03-19 15:18:18.168 100 FEE 435657 11328 \N \N 6038510 2025-03-19 15:18:18.168 2025-03-19 15:18:18.168 900 TIP 435657 11938 \N \N 6038515 2025-03-19 15:18:22.555 2025-03-19 15:18:22.555 300 FEE 435585 749 \N \N 6038516 2025-03-19 15:18:22.555 2025-03-19 15:18:22.555 2700 TIP 435585 6419 \N \N 6038533 2025-03-19 15:18:44.964 2025-03-19 15:18:44.964 0 FEE 435692 828 \N \N 6038549 2025-03-19 15:21:56.924 2025-03-19 15:21:56.924 1000 FEE 435693 9552 \N \N 6038564 2025-03-19 15:24:54.855 2025-03-19 15:24:54.855 1600 FEE 435488 21114 \N \N 6038565 2025-03-19 15:24:54.855 2025-03-19 15:24:54.855 14400 TIP 435488 679 \N \N 6038575 2025-03-19 15:28:54.611 2025-03-19 15:28:54.611 1100 FEE 435690 20911 \N \N 6038576 2025-03-19 15:28:54.611 2025-03-19 15:28:54.611 9900 TIP 435690 1261 \N \N 6038589 2025-03-19 15:29:52.54 2025-03-19 15:29:52.54 0 FEE 435700 9183 \N \N 6038601 2025-03-19 15:30:26.382 2025-03-19 15:30:26.382 1000 FEE 435702 2329 \N \N 6038613 2025-03-19 15:30:57.602 2025-03-19 15:30:57.602 2300 FEE 435657 1030 \N \N 6038614 2025-03-19 15:30:57.602 2025-03-19 15:30:57.602 20700 TIP 435657 11798 \N \N 6038644 2025-03-19 15:31:56.57 2025-03-19 15:31:56.57 2300 FEE 435488 16948 \N \N 6038645 2025-03-19 15:31:56.57 2025-03-19 15:31:56.57 20700 TIP 435488 20852 \N \N 6038657 2025-03-19 15:33:10.333 2025-03-19 15:33:10.333 1000 FEE 435705 7992 \N \N 6038674 2025-03-19 15:36:46.642 2025-03-19 15:36:46.642 1000 FEE 435577 1209 \N \N 6038675 2025-03-19 15:36:46.642 2025-03-19 15:36:46.642 9000 TIP 435577 2361 \N \N 6038690 2025-03-19 15:41:13.297 2025-03-19 15:41:13.297 0 FEE 435710 8870 \N \N 6038700 2025-03-19 15:41:52.239 2025-03-19 15:41:52.239 1100 FEE 435551 4378 \N \N 6038701 2025-03-19 15:41:52.239 2025-03-19 15:41:52.239 9900 TIP 435551 16354 \N \N 6037912 2025-03-19 14:04:59.615 2025-03-19 14:04:59.615 4000 FEE 435596 10536 \N \N 6037913 2025-03-19 14:04:59.615 2025-03-19 14:04:59.615 36000 TIP 435596 12738 \N \N 6037914 2025-03-19 14:05:02.415 2025-03-19 14:05:02.415 4000 FEE 435488 2709 \N \N 6037915 2025-03-19 14:05:02.415 2025-03-19 14:05:02.415 36000 TIP 435488 1737 \N \N 6037934 2025-03-19 14:09:41.785 2025-03-19 14:09:41.785 2100 FEE 435488 20554 \N \N 6037935 2025-03-19 14:09:41.785 2025-03-19 14:09:41.785 18900 TIP 435488 12272 \N \N 6037940 2025-03-19 14:11:55.622 2025-03-19 14:11:55.622 0 FEE 435640 7772 \N \N 6037941 2025-03-19 14:12:03.584 2025-03-19 14:12:03.584 100000 FEE 435641 3417 \N \N 6037945 2025-03-19 14:12:41.868 2025-03-19 14:12:41.868 0 FEE 435640 9348 \N \N 6037952 2025-03-19 14:15:08.455 2025-03-19 14:15:08.455 1000 FEE 435645 859 \N \N 6037967 2025-03-19 14:17:33.342 2025-03-19 14:17:33.342 2100 FEE 435458 14503 \N \N 6037968 2025-03-19 14:17:33.342 2025-03-19 14:17:33.342 18900 TIP 435458 21061 \N \N 6037980 2025-03-19 14:17:47.607 2025-03-19 14:17:47.607 6400 FEE 435640 14657 \N \N 6037981 2025-03-19 14:17:47.607 2025-03-19 14:17:47.607 57600 TIP 435640 12774 \N \N 6038001 2025-03-19 14:22:49.057 2025-03-19 14:22:49.057 100000 FEE 435648 2583 \N \N 6038023 2025-03-19 14:25:10.475 2025-03-19 14:25:10.475 8300 FEE 435488 919 \N \N 6038024 2025-03-19 14:25:10.475 2025-03-19 14:25:10.475 74700 TIP 435488 5978 \N \N 6038061 2025-03-19 14:25:13.138 2025-03-19 14:25:13.138 8300 FEE 435488 19018 \N \N 6038062 2025-03-19 14:25:13.138 2025-03-19 14:25:13.138 74700 TIP 435488 13042 \N \N 6038119 2025-03-19 14:27:05.778 2025-03-19 14:27:05.778 27000 FEE 435649 11999 \N \N 6038120 2025-03-19 14:27:05.778 2025-03-19 14:27:05.778 243000 TIP 435649 20657 \N \N 6038122 2025-03-19 14:27:38.726 2025-03-19 14:27:38.726 270000 FEE 435135 13767 \N \N 6038123 2025-03-19 14:27:38.726 2025-03-19 14:27:38.726 2430000 TIP 435135 3347 \N \N 6038130 2025-03-19 14:28:50.081 2025-03-19 14:28:50.081 100000 FEE 435653 708 \N \N 6038134 2025-03-19 14:29:31.839 2025-03-19 14:29:31.839 10000 FEE 435655 9329 \N \N 6038226 2025-03-19 14:48:23.389 2025-03-19 14:48:23.389 2100 FEE 435536 4754 \N \N 6038227 2025-03-19 14:48:23.389 2025-03-19 14:48:23.389 18900 TIP 435536 7668 \N \N 6038265 2025-03-19 14:55:23.008 2025-03-19 14:55:23.008 1000 FEE 435669 21532 \N \N 6038266 2025-03-19 14:55:31.684 2025-03-19 14:55:31.684 3300 FEE 435505 8498 \N \N 6038267 2025-03-19 14:55:31.684 2025-03-19 14:55:31.684 29700 TIP 435505 16387 \N \N 6038340 2025-03-19 15:04:13.942 2025-03-19 15:04:13.942 300 FEE 435457 21518 \N \N 6038341 2025-03-19 15:04:13.942 2025-03-19 15:04:13.942 2700 TIP 435457 8535 \N \N 6038381 2025-03-19 15:06:29.991 2025-03-19 15:06:29.991 900 FEE 435630 848 \N \N 6038382 2025-03-19 15:06:29.991 2025-03-19 15:06:29.991 8100 TIP 435630 837 \N \N 6038400 2025-03-19 15:08:47.983 2025-03-19 15:08:47.983 10000 FEE 435685 17064 \N \N 6038415 2025-03-19 15:10:17.266 2025-03-19 15:10:17.266 1000 FEE 435453 9346 \N \N 6038416 2025-03-19 15:10:17.266 2025-03-19 15:10:17.266 9000 TIP 435453 14465 \N \N 6038417 2025-03-19 15:10:18.861 2025-03-19 15:10:18.861 1000 POLL 435495 20511 \N \N 6038418 2025-03-19 15:10:19.336 2025-03-19 15:10:19.336 10000 FEE 330574 20187 \N \N 6038419 2025-03-19 15:10:19.336 2025-03-19 15:10:19.336 90000 TIP 330574 13365 \N \N 6038426 2025-03-19 15:11:01.463 2025-03-19 15:11:01.463 27000 FEE 435679 2176 \N \N 6038427 2025-03-19 15:11:01.463 2025-03-19 15:11:01.463 243000 TIP 435679 19813 \N \N 6038435 2025-03-19 15:15:38.219 2025-03-19 15:15:38.219 1000 FEE 435687 16042 \N \N 6038445 2025-03-19 15:16:28.288 2025-03-19 15:16:28.288 100 FEE 435580 16633 \N \N 6038446 2025-03-19 15:16:28.288 2025-03-19 15:16:28.288 900 TIP 435580 12334 \N \N 6038475 2025-03-19 15:17:57.212 2025-03-19 15:17:57.212 100 FEE 435690 12220 \N \N 6038476 2025-03-19 15:17:57.212 2025-03-19 15:17:57.212 900 TIP 435690 1960 \N \N 6038500 2025-03-19 15:18:11.062 2025-03-19 15:18:11.062 100 FEE 435634 21184 \N \N 6038501 2025-03-19 15:18:11.062 2025-03-19 15:18:11.062 900 TIP 435634 5942 \N \N 6038513 2025-03-19 15:18:22.37 2025-03-19 15:18:22.37 300 FEE 435585 16282 \N \N 6038514 2025-03-19 15:18:22.37 2025-03-19 15:18:22.37 2700 TIP 435585 16351 \N \N 6038517 2025-03-19 15:18:22.726 2025-03-19 15:18:22.726 300 FEE 435585 20647 \N \N 6038518 2025-03-19 15:18:22.726 2025-03-19 15:18:22.726 2700 TIP 435585 11477 \N \N 6038529 2025-03-19 15:18:29.884 2025-03-19 15:18:29.884 900 FEE 435679 21287 \N \N 6038530 2025-03-19 15:18:29.884 2025-03-19 15:18:29.884 8100 TIP 435679 13921 \N \N 6038539 2025-03-19 15:20:03.723 2025-03-19 15:20:03.723 4000 FEE 435610 15624 \N \N 6033748 2025-03-19 08:01:11.076 2025-03-19 08:01:11.076 1000 FEE 435154 17064 \N \N 6033749 2025-03-19 08:01:11.076 2025-03-19 08:01:11.076 9000 TIP 435154 21526 \N \N 6033759 2025-03-19 08:01:15.431 2025-03-19 08:01:15.431 1000 FEE 434975 19569 \N \N 6033760 2025-03-19 08:01:15.431 2025-03-19 08:01:15.431 9000 TIP 434975 19906 \N \N 6033765 2025-03-19 08:01:24.062 2025-03-19 08:01:24.062 1000 FEE 435002 21620 \N \N 6033766 2025-03-19 08:01:24.062 2025-03-19 08:01:24.062 9000 TIP 435002 20502 \N \N 6033839 2025-03-19 08:10:53.641 2025-03-19 08:10:53.641 10000 FEE 435231 9758 \N \N 6033840 2025-03-19 08:10:53.641 2025-03-19 08:10:53.641 90000 TIP 435231 1712 \N \N 6033848 2025-03-19 08:11:24.496 2025-03-19 08:11:24.496 4000 FEE 435136 16301 \N \N 6033849 2025-03-19 08:11:24.496 2025-03-19 08:11:24.496 36000 TIP 435136 4345 \N \N 6033862 2025-03-19 08:11:33.422 2025-03-19 08:11:33.422 4000 FEE 434988 19570 \N \N 6033863 2025-03-19 08:11:33.422 2025-03-19 08:11:33.422 36000 TIP 434988 2529 \N \N 6033874 2025-03-19 08:15:30.872 2025-03-19 08:15:30.872 1000 FEE 435252 1773 \N \N 6033887 2025-03-19 08:15:49.559 2025-03-19 08:15:49.559 1000 FEE 434440 17741 \N \N 6033888 2025-03-19 08:15:49.559 2025-03-19 08:15:49.559 9000 TIP 434440 14663 \N \N 6033897 2025-03-19 08:16:16.285 2025-03-19 08:16:16.285 1000 FEE 435238 18430 \N \N 6033898 2025-03-19 08:16:16.285 2025-03-19 08:16:16.285 9000 TIP 435238 20663 \N \N 6033905 2025-03-19 08:16:19.352 2025-03-19 08:16:19.352 1000 FEE 435254 21374 \N \N 6033906 2025-03-19 08:16:19.352 2025-03-19 08:16:19.352 9000 TIP 435254 10493 \N \N 6033931 2025-03-19 08:17:27.086 2025-03-19 08:17:27.086 2300 FEE 435241 6717 \N \N 6033932 2025-03-19 08:17:27.086 2025-03-19 08:17:27.086 20700 TIP 435241 2335 \N \N 6033962 2025-03-19 08:18:42.487 2025-03-19 08:18:42.487 900 FEE 435252 15326 \N \N 6033963 2025-03-19 08:18:42.487 2025-03-19 08:18:42.487 8100 TIP 435252 9537 \N \N 6033997 2025-03-19 08:21:12.931 2025-03-19 08:21:12.931 2300 FEE 435242 20901 \N \N 6033998 2025-03-19 08:21:12.931 2025-03-19 08:21:12.931 20700 TIP 435242 3417 \N \N 6034010 2025-03-19 08:21:17.749 2025-03-19 08:21:17.749 2300 FEE 435231 20490 \N \N 6034011 2025-03-19 08:21:17.749 2025-03-19 08:21:17.749 20700 TIP 435231 16432 \N \N 6034038 2025-03-19 08:21:23.353 2025-03-19 08:21:23.353 2300 FEE 435231 17331 \N \N 6034039 2025-03-19 08:21:23.353 2025-03-19 08:21:23.353 20700 TIP 435231 13038 \N \N 6034072 2025-03-19 08:21:26.639 2025-03-19 08:21:26.639 2300 FEE 435231 18011 \N \N 6034073 2025-03-19 08:21:26.639 2025-03-19 08:21:26.639 20700 TIP 435231 756 \N \N 6034088 2025-03-19 08:21:28.64 2025-03-19 08:21:28.64 2300 FEE 435231 15139 \N \N 6034089 2025-03-19 08:21:28.64 2025-03-19 08:21:28.64 20700 TIP 435231 647 \N \N 6034142 2025-03-19 08:29:08.943 2025-03-19 08:29:08.943 1000 FEE 435217 5852 \N \N 6034143 2025-03-19 08:29:08.943 2025-03-19 08:29:08.943 9000 TIP 435217 17171 \N \N 6034174 2025-03-19 08:30:48.737 2025-03-19 08:30:48.737 2300 FEE 429559 4115 \N \N 6034175 2025-03-19 08:30:48.737 2025-03-19 08:30:48.737 20700 TIP 429559 15139 \N \N 6034184 2025-03-19 08:30:49.598 2025-03-19 08:30:49.598 2300 FEE 429559 18114 \N \N 6034185 2025-03-19 08:30:49.598 2025-03-19 08:30:49.598 20700 TIP 429559 1602 \N \N 6034205 2025-03-19 08:30:56.137 2025-03-19 08:30:56.137 4600 FEE 433844 21374 \N \N 6034206 2025-03-19 08:30:56.137 2025-03-19 08:30:56.137 41400 TIP 433844 21116 \N \N 6034215 2025-03-19 08:30:57.145 2025-03-19 08:30:57.145 2300 FEE 433844 807 \N \N 6034216 2025-03-19 08:30:57.145 2025-03-19 08:30:57.145 20700 TIP 433844 708 \N \N 6034233 2025-03-19 08:30:58.809 2025-03-19 08:30:58.809 2300 FEE 433844 10273 \N \N 6034234 2025-03-19 08:30:58.809 2025-03-19 08:30:58.809 20700 TIP 433844 4084 \N \N 6034269 2025-03-19 08:31:02.647 2025-03-19 08:31:02.647 2300 FEE 433844 669 \N \N 6034270 2025-03-19 08:31:02.647 2025-03-19 08:31:02.647 20700 TIP 433844 1603 \N \N 6034279 2025-03-19 08:31:03.346 2025-03-19 08:31:03.346 2300 FEE 433844 11417 \N \N 6034280 2025-03-19 08:31:03.346 2025-03-19 08:31:03.346 20700 TIP 433844 18608 \N \N 6034295 2025-03-19 08:31:05.854 2025-03-19 08:31:05.854 2300 FEE 433844 8059 \N \N 6034296 2025-03-19 08:31:05.854 2025-03-19 08:31:05.854 20700 TIP 433844 1195 \N \N 6034305 2025-03-19 08:32:22.679 2025-03-19 08:32:22.679 2300 FEE 435241 2942 \N \N 6033790 2025-03-19 08:04:11.317 2025-03-19 08:04:11.317 1000 FEE 435241 14255 \N \N 6033795 2025-03-19 08:05:26.997 2025-03-19 08:05:26.997 100000 FEE 435243 19581 \N \N 6033826 2025-03-19 08:10:02.457 2025-03-19 08:10:02.457 0 FEE 435246 644 \N \N 6033873 2025-03-19 08:15:29.536 2025-03-19 08:15:29.536 1000 FEE 435251 19537 \N \N 6033891 2025-03-19 08:16:14.968 2025-03-19 08:16:14.968 1000 FEE 435238 21412 \N \N 6033892 2025-03-19 08:16:14.968 2025-03-19 08:16:14.968 9000 TIP 435238 18630 \N \N 6033895 2025-03-19 08:16:15.924 2025-03-19 08:16:15.924 1000 FEE 435238 989 \N \N 6033896 2025-03-19 08:16:15.924 2025-03-19 08:16:15.924 9000 TIP 435238 11527 \N \N 6033901 2025-03-19 08:16:18.539 2025-03-19 08:16:18.539 1000 FEE 435254 803 \N \N 6033902 2025-03-19 08:16:18.539 2025-03-19 08:16:18.539 9000 TIP 435254 9337 \N \N 6033917 2025-03-19 08:17:25.636 2025-03-19 08:17:25.636 2300 FEE 435241 21771 \N \N 6033918 2025-03-19 08:17:25.636 2025-03-19 08:17:25.636 20700 TIP 435241 1515 \N \N 6033969 2025-03-19 08:19:00.646 2025-03-19 08:19:00.646 2100 FEE 435252 7983 \N \N 6033970 2025-03-19 08:19:00.646 2025-03-19 08:19:00.646 18900 TIP 435252 21365 \N \N 6033979 2025-03-19 08:20:55.286 2025-03-19 08:20:55.286 100 FEE 435115 8508 \N \N 6033980 2025-03-19 08:20:55.286 2025-03-19 08:20:55.286 900 TIP 435115 761 \N \N 6033995 2025-03-19 08:21:12.778 2025-03-19 08:21:12.778 2300 FEE 435242 5308 \N \N 6033996 2025-03-19 08:21:12.778 2025-03-19 08:21:12.778 20700 TIP 435242 886 \N \N 6034004 2025-03-19 08:21:16.976 2025-03-19 08:21:16.976 2300 FEE 435231 993 \N \N 6034005 2025-03-19 08:21:16.976 2025-03-19 08:21:16.976 20700 TIP 435231 21383 \N \N 6034020 2025-03-19 08:21:18.827 2025-03-19 08:21:18.827 2300 FEE 435231 18529 \N \N 6034021 2025-03-19 08:21:18.827 2025-03-19 08:21:18.827 20700 TIP 435231 9363 \N \N 6034022 2025-03-19 08:21:18.943 2025-03-19 08:21:18.943 2300 FEE 435231 1814 \N \N 6034023 2025-03-19 08:21:18.943 2025-03-19 08:21:18.943 20700 TIP 435231 9351 \N \N 6034026 2025-03-19 08:21:22.587 2025-03-19 08:21:22.587 2300 FEE 435231 1761 \N \N 6034027 2025-03-19 08:21:22.587 2025-03-19 08:21:22.587 20700 TIP 435231 8469 \N \N 6034030 2025-03-19 08:21:22.732 2025-03-19 08:21:22.732 2300 FEE 435231 672 \N \N 6034031 2025-03-19 08:21:22.732 2025-03-19 08:21:22.732 20700 TIP 435231 13365 \N \N 6034034 2025-03-19 08:21:23.144 2025-03-19 08:21:23.144 2300 FEE 435231 16347 \N \N 6034035 2025-03-19 08:21:23.144 2025-03-19 08:21:23.144 20700 TIP 435231 4654 \N \N 6034128 2025-03-19 08:27:43.588 2025-03-19 08:27:43.588 1000 FEE 435247 4754 \N \N 6034129 2025-03-19 08:27:43.588 2025-03-19 08:27:43.588 9000 TIP 435247 21389 \N \N 6034136 2025-03-19 08:28:50.095 2025-03-19 08:28:50.095 800 FEE 435018 5637 \N \N 6034137 2025-03-19 08:28:50.095 2025-03-19 08:28:50.095 7200 TIP 435018 3417 \N \N 6034138 2025-03-19 08:28:55.397 2025-03-19 08:28:55.397 800 FEE 434958 20998 \N \N 6034139 2025-03-19 08:28:55.397 2025-03-19 08:28:55.397 7200 TIP 434958 15045 \N \N 6034147 2025-03-19 08:29:29.734 2025-03-19 08:29:29.734 3300 FEE 435254 7992 \N \N 6034148 2025-03-19 08:29:29.734 2025-03-19 08:29:29.734 29700 TIP 435254 21416 \N \N 6034201 2025-03-19 08:30:51.342 2025-03-19 08:30:51.342 2300 FEE 429559 17124 \N \N 6034202 2025-03-19 08:30:51.342 2025-03-19 08:30:51.342 20700 TIP 429559 4538 \N \N 6034213 2025-03-19 08:30:56.983 2025-03-19 08:30:56.983 2300 FEE 433844 1738 \N \N 6034214 2025-03-19 08:30:56.983 2025-03-19 08:30:56.983 20700 TIP 433844 1389 \N \N 6034221 2025-03-19 08:30:57.844 2025-03-19 08:30:57.844 2300 FEE 433844 1468 \N \N 6034222 2025-03-19 08:30:57.844 2025-03-19 08:30:57.844 20700 TIP 433844 14260 \N \N 6034225 2025-03-19 08:30:58.176 2025-03-19 08:30:58.176 2300 FEE 433844 2342 \N \N 6034226 2025-03-19 08:30:58.176 2025-03-19 08:30:58.176 20700 TIP 433844 8985 \N \N 6034227 2025-03-19 08:30:58.326 2025-03-19 08:30:58.326 2300 FEE 433844 5942 \N \N 6034228 2025-03-19 08:30:58.326 2025-03-19 08:30:58.326 20700 TIP 433844 9329 \N \N 6034257 2025-03-19 08:31:01.085 2025-03-19 08:31:01.085 2300 FEE 433844 10849 \N \N 6034258 2025-03-19 08:31:01.085 2025-03-19 08:31:01.085 20700 TIP 433844 4238 \N \N 6034259 2025-03-19 08:31:01.215 2025-03-19 08:31:01.215 2300 FEE 433844 21063 \N \N 6034260 2025-03-19 08:31:01.215 2025-03-19 08:31:01.215 20700 TIP 433844 21334 \N \N 6034261 2025-03-19 08:31:01.64 2025-03-19 08:31:01.64 2300 FEE 433844 959 \N \N 6034262 2025-03-19 08:31:01.64 2025-03-19 08:31:01.64 20700 TIP 433844 20864 \N \N 6034271 2025-03-19 08:31:02.78 2025-03-19 08:31:02.78 2300 FEE 433844 1615 \N \N 6034272 2025-03-19 08:31:02.78 2025-03-19 08:31:02.78 20700 TIP 433844 1773 \N \N 6034300 2025-03-19 08:32:11.906 2025-03-19 08:32:11.906 1000 FEE 435277 1082 \N \N 6034313 2025-03-19 08:32:23.371 2025-03-19 08:32:23.371 2300 FEE 435241 15243 \N \N 6034314 2025-03-19 08:32:23.371 2025-03-19 08:32:23.371 20700 TIP 435241 7418 \N \N 6034319 2025-03-19 08:32:24.302 2025-03-19 08:32:24.302 2300 FEE 435241 19854 \N \N 6034320 2025-03-19 08:32:24.302 2025-03-19 08:32:24.302 20700 TIP 435241 663 \N \N 6034333 2025-03-19 08:32:25.242 2025-03-19 08:32:25.242 2300 FEE 435241 19018 \N \N 6034334 2025-03-19 08:32:25.242 2025-03-19 08:32:25.242 20700 TIP 435241 19863 \N \N 6034394 2025-03-19 08:34:25.929 2025-03-19 08:34:25.929 8300 FEE 435242 976 \N \N 6034395 2025-03-19 08:34:25.929 2025-03-19 08:34:25.929 74700 TIP 435242 1718 \N \N 6034439 2025-03-19 08:35:15.102 2025-03-19 08:35:15.102 5000 FEE 435284 10821 \N \N 6034444 2025-03-19 08:36:14.539 2025-03-19 08:36:14.539 1000 FEE 435286 894 \N \N 6034447 2025-03-19 08:36:26.894 2025-03-19 08:36:26.894 2300 FEE 435261 21556 \N \N 6034448 2025-03-19 08:36:26.894 2025-03-19 08:36:26.894 20700 TIP 435261 20998 \N \N 6034451 2025-03-19 08:36:27.105 2025-03-19 08:36:27.105 2300 FEE 435261 4128 \N \N 6034452 2025-03-19 08:36:27.105 2025-03-19 08:36:27.105 20700 TIP 435261 5128 \N \N 6034475 2025-03-19 08:36:56.982 2025-03-19 08:36:56.982 8300 FEE 435261 12356 \N \N 6034476 2025-03-19 08:36:56.982 2025-03-19 08:36:56.982 74700 TIP 435261 10690 \N \N 6034495 2025-03-19 08:36:59.351 2025-03-19 08:36:59.351 8300 FEE 435261 9350 \N \N 6034496 2025-03-19 08:36:59.351 2025-03-19 08:36:59.351 74700 TIP 435261 16598 \N \N 6034502 2025-03-19 08:37:39.422 2025-03-19 08:37:39.422 100 FEE 435284 18618 \N \N 6034503 2025-03-19 08:37:39.422 2025-03-19 08:37:39.422 900 TIP 435284 11967 \N \N 6034506 2025-03-19 08:37:41.11 2025-03-19 08:37:41.11 9000 FEE 435284 9843 \N \N 6034507 2025-03-19 08:37:41.11 2025-03-19 08:37:41.11 81000 TIP 435284 11298 \N \N 6034508 2025-03-19 08:37:45.239 2025-03-19 08:37:45.239 100 FEE 435280 20646 \N \N 6034509 2025-03-19 08:37:45.239 2025-03-19 08:37:45.239 900 TIP 435280 17014 \N \N 6034548 2025-03-19 08:41:45.48 2025-03-19 08:41:45.48 7700 FEE 435274 21088 \N \N 6034549 2025-03-19 08:41:45.48 2025-03-19 08:41:45.48 69300 TIP 435274 623 \N \N 6034550 2025-03-19 08:42:12.597 2025-03-19 08:42:12.597 0 FEE 383547 20904 \N \N 6034574 2025-03-19 08:44:27.257 2025-03-19 08:44:27.257 1000 FEE 435294 7966 \N \N 6034575 2025-03-19 08:44:27.257 2025-03-19 08:44:27.257 9000 TIP 435294 8376 \N \N 6034610 2025-03-19 08:46:10.111 2025-03-19 08:46:10.111 1600 FEE 435242 19117 \N \N 6034611 2025-03-19 08:46:10.111 2025-03-19 08:46:10.111 14400 TIP 435242 21159 \N \N 6034612 2025-03-19 08:46:10.746 2025-03-19 08:46:10.746 100 FEE 435030 12188 \N \N 6034613 2025-03-19 08:46:10.746 2025-03-19 08:46:10.746 900 TIP 435030 21672 \N \N 6034645 2025-03-19 08:49:11.482 2025-03-19 08:49:11.482 0 FEE 435308 17568 \N \N 6034670 2025-03-19 08:51:45.712 2025-03-19 08:51:45.712 100 FEE 435217 5017 \N \N 6034671 2025-03-19 08:51:45.712 2025-03-19 08:51:45.712 900 TIP 435217 12356 \N \N 6034677 2025-03-19 08:52:05.392 2025-03-19 08:52:05.392 1000 FEE 435271 20852 \N \N 6034678 2025-03-19 08:52:05.392 2025-03-19 08:52:05.392 9000 TIP 435271 13143 \N \N 6034693 2025-03-19 08:52:22.386 2025-03-19 08:52:22.386 900 FEE 435263 1620 \N \N 6034694 2025-03-19 08:52:22.386 2025-03-19 08:52:22.386 8100 TIP 435263 617 \N \N 6034709 2025-03-19 08:53:36.289 2025-03-19 08:53:36.289 2100 FEE 434650 8570 \N \N 6034710 2025-03-19 08:53:36.289 2025-03-19 08:53:36.289 18900 TIP 434650 4798 \N \N 6033808 2025-03-19 08:08:44.593 2025-03-19 08:08:44.593 300 FEE 364096 1389 \N \N 6033809 2025-03-19 08:08:44.593 2025-03-19 08:08:44.593 2700 TIP 364096 9529 \N \N 6033814 2025-03-19 08:09:29.88 2025-03-19 08:09:29.88 27000 FEE 435230 14465 \N \N 6033815 2025-03-19 08:09:29.88 2025-03-19 08:09:29.88 243000 TIP 435230 20956 \N \N 6033816 2025-03-19 08:09:41.792 2025-03-19 08:09:41.792 100 FEE 435242 2016 \N \N 6033817 2025-03-19 08:09:41.792 2025-03-19 08:09:41.792 900 TIP 435242 21647 \N \N 6033822 2025-03-19 08:09:44.166 2025-03-19 08:09:44.166 3000 FEE 435233 4538 \N \N 6033823 2025-03-19 08:09:44.166 2025-03-19 08:09:44.166 27000 TIP 435233 2640 \N \N 6033835 2025-03-19 08:10:41.343 2025-03-19 08:10:41.343 1600 FEE 435244 681 \N \N 6033836 2025-03-19 08:10:41.343 2025-03-19 08:10:41.343 14400 TIP 435244 1425 \N \N 6033923 2025-03-19 08:17:26.567 2025-03-19 08:17:26.567 2300 FEE 435241 811 \N \N 6033924 2025-03-19 08:17:26.567 2025-03-19 08:17:26.567 20700 TIP 435241 6030 \N \N 6033977 2025-03-19 08:20:37.756 2025-03-19 08:20:37.756 2300 FEE 435257 5017 \N \N 6033978 2025-03-19 08:20:37.756 2025-03-19 08:20:37.756 20700 TIP 435257 16259 \N \N 6033981 2025-03-19 08:21:11.32 2025-03-19 08:21:11.32 2300 FEE 435242 17710 \N \N 6033982 2025-03-19 08:21:11.32 2025-03-19 08:21:11.32 20700 TIP 435242 13177 \N \N 6034018 2025-03-19 08:21:18.724 2025-03-19 08:21:18.724 2300 FEE 435231 770 \N \N 6034019 2025-03-19 08:21:18.724 2025-03-19 08:21:18.724 20700 TIP 435231 20756 \N \N 6034024 2025-03-19 08:21:19.083 2025-03-19 08:21:19.083 2300 FEE 435231 1044 \N \N 6034025 2025-03-19 08:21:19.083 2025-03-19 08:21:19.083 20700 TIP 435231 13174 \N \N 6034028 2025-03-19 08:21:22.609 2025-03-19 08:21:22.609 2300 FEE 435231 21379 \N \N 6034029 2025-03-19 08:21:22.609 2025-03-19 08:21:22.609 20700 TIP 435231 2206 \N \N 6034046 2025-03-19 08:21:24.027 2025-03-19 08:21:24.027 2300 FEE 435231 1447 \N \N 6034047 2025-03-19 08:21:24.027 2025-03-19 08:21:24.027 20700 TIP 435231 4768 \N \N 6034058 2025-03-19 08:21:25.501 2025-03-19 08:21:25.501 2300 FEE 435231 21734 \N \N 6034059 2025-03-19 08:21:25.501 2025-03-19 08:21:25.501 20700 TIP 435231 20904 \N \N 6034074 2025-03-19 08:21:26.827 2025-03-19 08:21:26.827 2300 FEE 435231 18321 \N \N 6034075 2025-03-19 08:21:26.827 2025-03-19 08:21:26.827 20700 TIP 435231 986 \N \N 6034076 2025-03-19 08:21:26.993 2025-03-19 08:21:26.993 2300 FEE 435231 866 \N \N 6034077 2025-03-19 08:21:26.993 2025-03-19 08:21:26.993 20700 TIP 435231 2326 \N \N 6034080 2025-03-19 08:21:27.314 2025-03-19 08:21:27.314 2300 FEE 435231 1741 \N \N 6034081 2025-03-19 08:21:27.314 2025-03-19 08:21:27.314 20700 TIP 435231 20812 \N \N 6034082 2025-03-19 08:21:28.152 2025-03-19 08:21:28.152 2300 FEE 435231 8870 \N \N 6034083 2025-03-19 08:21:28.152 2025-03-19 08:21:28.152 20700 TIP 435231 16350 \N \N 6034090 2025-03-19 08:21:28.791 2025-03-19 08:21:28.791 2300 FEE 435231 19378 \N \N 6034091 2025-03-19 08:21:28.791 2025-03-19 08:21:28.791 20700 TIP 435231 21670 \N \N 6034105 2025-03-19 08:25:04.879 2025-03-19 08:25:04.879 1000 FEE 435266 18011 \N \N 6034115 2025-03-19 08:26:19.911 2025-03-19 08:26:19.911 1000 FEE 435267 1094 \N \N 6034116 2025-03-19 08:26:28.518 2025-03-19 08:26:28.518 100 FEE 435120 21048 \N \N 6034117 2025-03-19 08:26:28.518 2025-03-19 08:26:28.518 900 TIP 435120 21832 \N \N 6034120 2025-03-19 08:26:42.275 2025-03-19 08:26:42.275 9000 FEE 435120 20802 \N \N 6034121 2025-03-19 08:26:42.275 2025-03-19 08:26:42.275 81000 TIP 435120 711 \N \N 6034122 2025-03-19 08:26:49.398 2025-03-19 08:26:49.398 1000 FEE 435268 19829 \N \N 6034132 2025-03-19 08:28:13.415 2025-03-19 08:28:13.415 1000 FEE 435270 20596 \N \N 6034135 2025-03-19 08:28:48.031 2025-03-19 08:28:48.031 1000 FEE 435271 1454 \N \N 6034158 2025-03-19 08:29:52.301 2025-03-19 08:29:52.301 1000 FEE 435273 18402 \N \N 6034163 2025-03-19 08:30:13.688 2025-03-19 08:30:13.688 100 FEE 435261 3990 \N \N 6034164 2025-03-19 08:30:13.688 2025-03-19 08:30:13.688 900 TIP 435261 20603 \N \N 6034182 2025-03-19 08:30:49.388 2025-03-19 08:30:49.388 2300 FEE 429559 2431 \N \N 6034183 2025-03-19 08:30:49.388 2025-03-19 08:30:49.388 20700 TIP 429559 9758 \N \N 6034193 2025-03-19 08:30:50.17 2025-03-19 08:30:50.17 2300 FEE 429559 16834 \N \N 6034194 2025-03-19 08:30:50.17 2025-03-19 08:30:50.17 20700 TIP 429559 6335 \N \N 6034237 2025-03-19 08:30:59.275 2025-03-19 08:30:59.275 2300 FEE 433844 17046 \N \N 6034238 2025-03-19 08:30:59.275 2025-03-19 08:30:59.275 20700 TIP 433844 18178 \N \N 6034243 2025-03-19 08:30:59.77 2025-03-19 08:30:59.77 2300 FEE 433844 20409 \N \N 6034244 2025-03-19 08:30:59.77 2025-03-19 08:30:59.77 20700 TIP 433844 1469 \N \N 6034251 2025-03-19 08:31:00.62 2025-03-19 08:31:00.62 2300 FEE 433844 15115 \N \N 6034252 2025-03-19 08:31:00.62 2025-03-19 08:31:00.62 20700 TIP 433844 21498 \N \N 6034285 2025-03-19 08:31:04.436 2025-03-19 08:31:04.436 2300 FEE 433844 1738 \N \N 6034286 2025-03-19 08:31:04.436 2025-03-19 08:31:04.436 20700 TIP 433844 19535 \N \N 6034289 2025-03-19 08:31:04.753 2025-03-19 08:31:04.753 2300 FEE 433844 21139 \N \N 6034290 2025-03-19 08:31:04.753 2025-03-19 08:31:04.753 20700 TIP 433844 910 \N \N 6034298 2025-03-19 08:32:09.642 2025-03-19 08:32:09.642 700 FEE 435272 937 \N \N 6034299 2025-03-19 08:32:09.642 2025-03-19 08:32:09.642 6300 TIP 435272 5978 \N \N 6034303 2025-03-19 08:32:20.514 2025-03-19 08:32:20.514 1000 FEE 435167 704 \N \N 6034304 2025-03-19 08:32:20.514 2025-03-19 08:32:20.514 9000 TIP 435167 20613 \N \N 6034317 2025-03-19 08:32:23.822 2025-03-19 08:32:23.822 4600 FEE 435241 7119 \N \N 6034318 2025-03-19 08:32:23.822 2025-03-19 08:32:23.822 41400 TIP 435241 21631 \N \N 6034323 2025-03-19 08:32:24.485 2025-03-19 08:32:24.485 2300 FEE 435241 3371 \N \N 6034324 2025-03-19 08:32:24.485 2025-03-19 08:32:24.485 20700 TIP 435241 770 \N \N 6034337 2025-03-19 08:32:25.537 2025-03-19 08:32:25.537 2300 FEE 435241 16679 \N \N 6034338 2025-03-19 08:32:25.537 2025-03-19 08:32:25.537 20700 TIP 435241 19535 \N \N 6034366 2025-03-19 08:33:35.297 2025-03-19 08:33:35.297 500 FEE 435271 691 \N \N 6034367 2025-03-19 08:33:35.297 2025-03-19 08:33:35.297 4500 TIP 435271 17226 \N \N 6034373 2025-03-19 08:33:45.753 2025-03-19 08:33:45.753 1000 FEE 435195 19796 \N \N 6034374 2025-03-19 08:33:45.753 2025-03-19 08:33:45.753 9000 TIP 435195 1801 \N \N 6034386 2025-03-19 08:34:25.523 2025-03-19 08:34:25.523 8300 FEE 435242 20310 \N \N 6034387 2025-03-19 08:34:25.523 2025-03-19 08:34:25.523 74700 TIP 435242 19813 \N \N 6034410 2025-03-19 08:34:26.845 2025-03-19 08:34:26.845 8300 FEE 435242 981 \N \N 6034411 2025-03-19 08:34:26.845 2025-03-19 08:34:26.845 74700 TIP 435242 16329 \N \N 6034414 2025-03-19 08:34:27.597 2025-03-19 08:34:27.597 8300 FEE 435242 2709 \N \N 6034415 2025-03-19 08:34:27.597 2025-03-19 08:34:27.597 74700 TIP 435242 2543 \N \N 6034428 2025-03-19 08:34:28.422 2025-03-19 08:34:28.422 8300 FEE 435242 2844 \N \N 6034429 2025-03-19 08:34:28.422 2025-03-19 08:34:28.422 74700 TIP 435242 956 \N \N 6034430 2025-03-19 08:34:28.528 2025-03-19 08:34:28.528 8300 FEE 435242 4314 \N \N 6034431 2025-03-19 08:34:28.528 2025-03-19 08:34:28.528 74700 TIP 435242 11491 \N \N 6034455 2025-03-19 08:36:27.888 2025-03-19 08:36:27.888 2300 FEE 435261 2022 \N \N 6034456 2025-03-19 08:36:27.888 2025-03-19 08:36:27.888 20700 TIP 435261 21713 \N \N 6034463 2025-03-19 08:36:29.133 2025-03-19 08:36:29.133 2300 FEE 435261 848 \N \N 6034464 2025-03-19 08:36:29.133 2025-03-19 08:36:29.133 20700 TIP 435261 4177 \N \N 6033819 2025-03-19 08:09:41.857 2025-03-19 08:09:41.857 27000 TIP 435235 8423 \N \N 6033832 2025-03-19 08:10:39.555 2025-03-19 08:10:39.555 1000 FEE 435249 12749 \N \N 6033844 2025-03-19 08:11:18.819 2025-03-19 08:11:18.819 4000 FEE 434791 8544 \N \N 6033845 2025-03-19 08:11:18.819 2025-03-19 08:11:18.819 36000 TIP 434791 10490 \N \N 6033850 2025-03-19 08:11:25.278 2025-03-19 08:11:25.278 4000 FEE 435019 21338 \N \N 6033851 2025-03-19 08:11:25.278 2025-03-19 08:11:25.278 36000 TIP 435019 21320 \N \N 6033852 2025-03-19 08:11:26.305 2025-03-19 08:11:26.305 4000 FEE 434975 20825 \N \N 6033853 2025-03-19 08:11:26.305 2025-03-19 08:11:26.305 36000 TIP 434975 1051 \N \N 6033875 2025-03-19 08:15:31.171 2025-03-19 08:15:31.171 1000 FEE 435253 1483 \N \N 6033876 2025-03-19 08:15:35.22 2025-03-19 08:15:35.22 2100 FEE 435249 658 \N \N 6033877 2025-03-19 08:15:35.22 2025-03-19 08:15:35.22 18900 TIP 435249 16154 \N \N 6033885 2025-03-19 08:15:49.197 2025-03-19 08:15:49.197 1000 FEE 434440 2151 \N \N 6033886 2025-03-19 08:15:49.197 2025-03-19 08:15:49.197 9000 TIP 434440 19071 \N \N 6033889 2025-03-19 08:15:59.389 2025-03-19 08:15:59.389 1000 FEE 435255 712 \N \N 6033907 2025-03-19 08:16:19.711 2025-03-19 08:16:19.711 1000 FEE 435254 11450 \N \N 6033908 2025-03-19 08:16:19.711 2025-03-19 08:16:19.711 9000 TIP 435254 8926 \N \N 6033941 2025-03-19 08:17:27.777 2025-03-19 08:17:27.777 2300 FEE 435241 2609 \N \N 6033942 2025-03-19 08:17:27.777 2025-03-19 08:17:27.777 20700 TIP 435241 6573 \N \N 6033944 2025-03-19 08:17:39.225 2025-03-19 08:17:39.225 1000 FEE 435258 4250 \N \N 6033955 2025-03-19 08:18:12.174 2025-03-19 08:18:12.174 100 FEE 435046 4287 \N \N 6033956 2025-03-19 08:18:12.174 2025-03-19 08:18:12.174 900 TIP 435046 17162 \N \N 6033985 2025-03-19 08:21:11.682 2025-03-19 08:21:11.682 2300 FEE 435242 18865 \N \N 6033986 2025-03-19 08:21:11.682 2025-03-19 08:21:11.682 20700 TIP 435242 18525 \N \N 6033991 2025-03-19 08:21:12.308 2025-03-19 08:21:12.308 2300 FEE 435242 18219 \N \N 6033992 2025-03-19 08:21:12.308 2025-03-19 08:21:12.308 20700 TIP 435242 827 \N \N 6033993 2025-03-19 08:21:12.639 2025-03-19 08:21:12.639 2300 FEE 435242 6741 \N \N 6033994 2025-03-19 08:21:12.639 2025-03-19 08:21:12.639 20700 TIP 435242 2724 \N \N 6034016 2025-03-19 08:21:18.159 2025-03-19 08:21:18.159 2300 FEE 435231 725 \N \N 6034017 2025-03-19 08:21:18.159 2025-03-19 08:21:18.159 20700 TIP 435231 617 \N \N 6034032 2025-03-19 08:21:22.898 2025-03-19 08:21:22.898 2300 FEE 435231 21442 \N \N 6034033 2025-03-19 08:21:22.898 2025-03-19 08:21:22.898 20700 TIP 435231 2056 \N \N 6034044 2025-03-19 08:21:23.878 2025-03-19 08:21:23.878 2300 FEE 435231 14688 \N \N 6034045 2025-03-19 08:21:23.878 2025-03-19 08:21:23.878 20700 TIP 435231 1611 \N \N 6034064 2025-03-19 08:21:25.978 2025-03-19 08:21:25.978 2300 FEE 435231 647 \N \N 6034065 2025-03-19 08:21:25.978 2025-03-19 08:21:25.978 20700 TIP 435231 9333 \N \N 6034070 2025-03-19 08:21:26.476 2025-03-19 08:21:26.476 2300 FEE 435231 4323 \N \N 6034071 2025-03-19 08:21:26.476 2025-03-19 08:21:26.476 20700 TIP 435231 17106 \N \N 6034086 2025-03-19 08:21:28.495 2025-03-19 08:21:28.495 2300 FEE 435231 1244 \N \N 6034087 2025-03-19 08:21:28.495 2025-03-19 08:21:28.495 20700 TIP 435231 1039 \N \N 6034098 2025-03-19 08:23:32.665 2025-03-19 08:23:32.665 100000 FEE 435263 21832 \N \N 6034099 2025-03-19 08:23:48.823 2025-03-19 08:23:48.823 1000 FEE 435264 19813 \N \N 6034126 2025-03-19 08:27:42.866 2025-03-19 08:27:42.866 1000 FEE 435236 18368 \N \N 6034127 2025-03-19 08:27:42.866 2025-03-19 08:27:42.866 9000 TIP 435236 21020 \N \N 6034130 2025-03-19 08:28:10.618 2025-03-19 08:28:10.618 1000 FEE 435269 649 \N \N 6034145 2025-03-19 08:29:21.197 2025-03-19 08:29:21.197 1600 FEE 435171 2492 \N \N 6034146 2025-03-19 08:29:21.197 2025-03-19 08:29:21.197 14400 TIP 435171 844 \N \N 6034149 2025-03-19 08:29:31.763 2025-03-19 08:29:31.763 1000 FEE 435241 20280 \N \N 6034150 2025-03-19 08:29:31.763 2025-03-19 08:29:31.763 9000 TIP 435241 19668 \N \N 6034167 2025-03-19 08:30:46.827 2025-03-19 08:30:46.827 3000 FEE 435254 9378 \N \N 6034168 2025-03-19 08:30:46.827 2025-03-19 08:30:46.827 27000 TIP 435254 11240 \N \N 6034170 2025-03-19 08:30:47.616 2025-03-19 08:30:47.616 3000 FEE 435256 19777 \N \N 6034171 2025-03-19 08:30:47.616 2025-03-19 08:30:47.616 27000 TIP 435256 18309 \N \N 6034195 2025-03-19 08:30:50.92 2025-03-19 08:30:50.92 2300 FEE 429559 18494 \N \N 6034196 2025-03-19 08:30:50.92 2025-03-19 08:30:50.92 20700 TIP 429559 17291 \N \N 6034217 2025-03-19 08:30:57.32 2025-03-19 08:30:57.32 2300 FEE 433844 7667 \N \N 6034218 2025-03-19 08:30:57.32 2025-03-19 08:30:57.32 20700 TIP 433844 21103 \N \N 6034229 2025-03-19 08:30:58.5 2025-03-19 08:30:58.5 2300 FEE 433844 21233 \N \N 6034230 2025-03-19 08:30:58.5 2025-03-19 08:30:58.5 20700 TIP 433844 21357 \N \N 6034235 2025-03-19 08:30:58.944 2025-03-19 08:30:58.944 2300 FEE 433844 16942 \N \N 6034236 2025-03-19 08:30:58.944 2025-03-19 08:30:58.944 20700 TIP 433844 2508 \N \N 6034253 2025-03-19 08:31:00.766 2025-03-19 08:31:00.766 2300 FEE 433844 7891 \N \N 6034254 2025-03-19 08:31:00.766 2025-03-19 08:31:00.766 20700 TIP 433844 21349 \N \N 6034255 2025-03-19 08:31:00.933 2025-03-19 08:31:00.933 2300 FEE 433844 20381 \N \N 6034256 2025-03-19 08:31:00.933 2025-03-19 08:31:00.933 20700 TIP 433844 1245 \N \N 6034277 2025-03-19 08:31:03.182 2025-03-19 08:31:03.182 2300 FEE 433844 1273 \N \N 6034278 2025-03-19 08:31:03.182 2025-03-19 08:31:03.182 20700 TIP 433844 17991 \N \N 6034281 2025-03-19 08:31:03.533 2025-03-19 08:31:03.533 2300 FEE 433844 10944 \N \N 6034282 2025-03-19 08:31:03.533 2025-03-19 08:31:03.533 20700 TIP 433844 9906 \N \N 6034291 2025-03-19 08:31:05.542 2025-03-19 08:31:05.542 2300 FEE 433844 13249 \N \N 6034292 2025-03-19 08:31:05.542 2025-03-19 08:31:05.542 20700 TIP 433844 20619 \N \N 6034293 2025-03-19 08:31:05.696 2025-03-19 08:31:05.696 2300 FEE 433844 21083 \N \N 6034294 2025-03-19 08:31:05.696 2025-03-19 08:31:05.696 20700 TIP 433844 12507 \N \N 6034321 2025-03-19 08:32:24.47 2025-03-19 08:32:24.47 2300 FEE 435241 5425 \N \N 6034322 2025-03-19 08:32:24.47 2025-03-19 08:32:24.47 20700 TIP 435241 13566 \N \N 6034327 2025-03-19 08:32:24.707 2025-03-19 08:32:24.707 4600 FEE 435241 8664 \N \N 6034328 2025-03-19 08:32:24.707 2025-03-19 08:32:24.707 41400 TIP 435241 21406 \N \N 6034346 2025-03-19 08:33:12.665 2025-03-19 08:33:12.665 8300 FEE 435231 9330 \N \N 6034347 2025-03-19 08:33:12.665 2025-03-19 08:33:12.665 74700 TIP 435231 782 \N \N 6034350 2025-03-19 08:33:12.914 2025-03-19 08:33:12.914 8300 FEE 435231 10280 \N \N 6034351 2025-03-19 08:33:12.914 2025-03-19 08:33:12.914 74700 TIP 435231 5017 \N \N 6034355 2025-03-19 08:33:14.18 2025-03-19 08:33:14.18 8300 FEE 435231 8269 \N \N 6034356 2025-03-19 08:33:14.18 2025-03-19 08:33:14.18 74700 TIP 435231 4502 \N \N 6034362 2025-03-19 08:33:25.583 2025-03-19 08:33:25.583 1000 FEE 435183 21514 \N \N 6034363 2025-03-19 08:33:25.583 2025-03-19 08:33:25.583 9000 TIP 435183 20841 \N \N 6034370 2025-03-19 08:33:40.973 2025-03-19 08:33:40.973 2100 FEE 435269 5779 \N \N 6034371 2025-03-19 08:33:40.973 2025-03-19 08:33:40.973 18900 TIP 435269 14731 \N \N 6034382 2025-03-19 08:34:25.26 2025-03-19 08:34:25.26 8300 FEE 435242 17891 \N \N 6034383 2025-03-19 08:34:25.26 2025-03-19 08:34:25.26 74700 TIP 435242 14939 \N \N 6034396 2025-03-19 08:34:26.054 2025-03-19 08:34:26.054 8300 FEE 435242 21577 \N \N 6034397 2025-03-19 08:34:26.054 2025-03-19 08:34:26.054 74700 TIP 435242 9350 \N \N 6034402 2025-03-19 08:34:26.386 2025-03-19 08:34:26.386 8300 FEE 435242 15409 \N \N 6034403 2025-03-19 08:34:26.386 2025-03-19 08:34:26.386 74700 TIP 435242 8713 \N \N 6034426 2025-03-19 08:34:28.31 2025-03-19 08:34:28.31 8300 FEE 435242 9921 \N \N 6034427 2025-03-19 08:34:28.31 2025-03-19 08:34:28.31 74700 TIP 435242 20972 \N \N 6034461 2025-03-19 08:36:28.968 2025-03-19 08:36:28.968 2300 FEE 435261 4633 \N \N 6034462 2025-03-19 08:36:28.968 2025-03-19 08:36:28.968 20700 TIP 435261 18393 \N \N 6034467 2025-03-19 08:36:31.81 2025-03-19 08:36:31.81 2300 FEE 435263 12736 \N \N 6034468 2025-03-19 08:36:31.81 2025-03-19 08:36:31.81 20700 TIP 435263 5175 \N \N 6034473 2025-03-19 08:36:56.859 2025-03-19 08:36:56.859 8300 FEE 435261 1030 \N \N 6034474 2025-03-19 08:36:56.859 2025-03-19 08:36:56.859 74700 TIP 435261 16442 \N \N 6034504 2025-03-19 08:37:39.612 2025-03-19 08:37:39.612 900 FEE 435284 4345 \N \N 6034505 2025-03-19 08:37:39.612 2025-03-19 08:37:39.612 8100 TIP 435284 18772 \N \N 6034512 2025-03-19 08:37:49.088 2025-03-19 08:37:49.088 10000 FEE 435291 5427 \N \N 6034516 2025-03-19 08:38:43.131 2025-03-19 08:38:43.131 4000 FEE 435261 18618 \N \N 6034517 2025-03-19 08:38:43.131 2025-03-19 08:38:43.131 36000 TIP 435261 4166 \N \N 6034522 2025-03-19 08:39:20.638 2025-03-19 08:39:20.638 2500 FEE 435046 19966 \N \N 6033821 2025-03-19 08:09:43.403 2025-03-19 08:09:43.403 27000 TIP 435232 5112 \N \N 6033827 2025-03-19 08:10:09.209 2025-03-19 08:10:09.209 3000 FEE 435238 20225 \N \N 6033828 2025-03-19 08:10:09.209 2025-03-19 08:10:09.209 27000 TIP 435238 692 \N \N 6033854 2025-03-19 08:11:27.705 2025-03-19 08:11:27.705 4000 FEE 434994 6421 \N \N 6033855 2025-03-19 08:11:27.705 2025-03-19 08:11:27.705 36000 TIP 434994 3411 \N \N 6033865 2025-03-19 08:12:29.508 2025-03-19 08:12:29.508 10000 FEE 435046 17944 \N \N 6033866 2025-03-19 08:12:29.508 2025-03-19 08:12:29.508 90000 TIP 435046 21057 \N \N 6033869 2025-03-19 08:14:47.627 2025-03-19 08:14:47.627 75000 DONT_LIKE_THIS 435250 20911 \N \N 6033881 2025-03-19 08:15:48.401 2025-03-19 08:15:48.401 1000 FEE 434440 21041 \N \N 6033882 2025-03-19 08:15:48.401 2025-03-19 08:15:48.401 9000 TIP 434440 15549 \N \N 6033883 2025-03-19 08:15:48.798 2025-03-19 08:15:48.798 1000 FEE 434440 5865 \N \N 6033884 2025-03-19 08:15:48.798 2025-03-19 08:15:48.798 9000 TIP 434440 694 \N \N 6033893 2025-03-19 08:16:15.562 2025-03-19 08:16:15.562 1000 FEE 435238 4313 \N \N 6033894 2025-03-19 08:16:15.562 2025-03-19 08:16:15.562 9000 TIP 435238 20660 \N \N 6033919 2025-03-19 08:17:25.878 2025-03-19 08:17:25.878 2300 FEE 435241 11314 \N \N 6033920 2025-03-19 08:17:25.878 2025-03-19 08:17:25.878 20700 TIP 435241 15941 \N \N 6033921 2025-03-19 08:17:26.443 2025-03-19 08:17:26.443 2300 FEE 435241 19570 \N \N 6033922 2025-03-19 08:17:26.443 2025-03-19 08:17:26.443 20700 TIP 435241 14785 \N \N 6033947 2025-03-19 08:17:51.279 2025-03-19 08:17:51.279 2100 FEE 435241 14225 \N \N 6033948 2025-03-19 08:17:51.279 2025-03-19 08:17:51.279 18900 TIP 435241 16830 \N \N 6033949 2025-03-19 08:17:52.404 2025-03-19 08:17:52.404 2100 FEE 435241 5003 \N \N 6033950 2025-03-19 08:17:52.404 2025-03-19 08:17:52.404 18900 TIP 435241 17124 \N \N 6033965 2025-03-19 08:18:42.984 2025-03-19 08:18:42.984 9000 FEE 435252 685 \N \N 6033966 2025-03-19 08:18:42.984 2025-03-19 08:18:42.984 81000 TIP 435252 17050 \N \N 6033972 2025-03-19 08:19:55.252 2025-03-19 08:19:55.252 900000 FEE 435046 1141 \N \N 6033973 2025-03-19 08:19:55.252 2025-03-19 08:19:55.252 8100000 TIP 435046 10934 \N \N 6033987 2025-03-19 08:21:11.972 2025-03-19 08:21:11.972 2300 FEE 435242 685 \N \N 6033988 2025-03-19 08:21:11.972 2025-03-19 08:21:11.972 20700 TIP 435242 9184 \N \N 6034006 2025-03-19 08:21:17.2 2025-03-19 08:21:17.2 2300 FEE 435231 17722 \N \N 6034007 2025-03-19 08:21:17.2 2025-03-19 08:21:17.2 20700 TIP 435231 15226 \N \N 6034050 2025-03-19 08:21:24.491 2025-03-19 08:21:24.491 4600 FEE 435231 5637 \N \N 6034051 2025-03-19 08:21:24.491 2025-03-19 08:21:24.491 41400 TIP 435231 10270 \N \N 6034054 2025-03-19 08:21:25.134 2025-03-19 08:21:25.134 2300 FEE 435231 21455 \N \N 6034055 2025-03-19 08:21:25.134 2025-03-19 08:21:25.134 20700 TIP 435231 1273 \N \N 6034068 2025-03-19 08:21:26.305 2025-03-19 08:21:26.305 2300 FEE 435231 15148 \N \N 6034069 2025-03-19 08:21:26.305 2025-03-19 08:21:26.305 20700 TIP 435231 9367 \N \N 6034084 2025-03-19 08:21:28.324 2025-03-19 08:21:28.324 2300 FEE 435231 686 \N \N 6034085 2025-03-19 08:21:28.324 2025-03-19 08:21:28.324 20700 TIP 435231 19952 \N \N 6034118 2025-03-19 08:26:28.73 2025-03-19 08:26:28.73 900 FEE 435120 2640 \N \N 6034119 2025-03-19 08:26:28.73 2025-03-19 08:26:28.73 8100 TIP 435120 21501 \N \N 6034124 2025-03-19 08:27:30.407 2025-03-19 08:27:30.407 1000 FEE 435224 11819 \N \N 6034125 2025-03-19 08:27:30.407 2025-03-19 08:27:30.407 9000 TIP 435224 20891 \N \N 6034159 2025-03-19 08:29:55.649 2025-03-19 08:29:55.649 1000 FEE 435240 20891 \N \N 6034160 2025-03-19 08:29:55.649 2025-03-19 08:29:55.649 9000 TIP 435240 8985 \N \N 6034161 2025-03-19 08:30:06.943 2025-03-19 08:30:06.943 1000 FEE 435274 20717 \N \N 6034172 2025-03-19 08:30:48.651 2025-03-19 08:30:48.651 2300 FEE 429559 20912 \N \N 6034173 2025-03-19 08:30:48.651 2025-03-19 08:30:48.651 20700 TIP 429559 720 \N \N 6034176 2025-03-19 08:30:48.93 2025-03-19 08:30:48.93 2300 FEE 429559 766 \N \N 6034177 2025-03-19 08:30:48.93 2025-03-19 08:30:48.93 20700 TIP 429559 15941 \N \N 6034203 2025-03-19 08:30:51.457 2025-03-19 08:30:51.457 2300 FEE 429559 18177 \N \N 6034204 2025-03-19 08:30:51.457 2025-03-19 08:30:51.457 20700 TIP 429559 9099 \N \N 6034219 2025-03-19 08:30:57.466 2025-03-19 08:30:57.466 2300 FEE 433844 21248 \N \N 6034157 2025-03-19 08:29:46.858 2025-03-19 08:29:46.858 9000 TIP 435260 1596 \N \N 6034180 2025-03-19 08:30:49.241 2025-03-19 08:30:49.241 2300 FEE 429559 9517 \N \N 6034181 2025-03-19 08:30:49.241 2025-03-19 08:30:49.241 20700 TIP 429559 925 \N \N 6034188 2025-03-19 08:30:49.912 2025-03-19 08:30:49.912 2300 FEE 429559 17091 \N \N 6034189 2025-03-19 08:30:49.912 2025-03-19 08:30:49.912 20700 TIP 429559 21523 \N \N 6034199 2025-03-19 08:30:51.204 2025-03-19 08:30:51.204 2300 FEE 429559 7760 \N \N 6034200 2025-03-19 08:30:51.204 2025-03-19 08:30:51.204 20700 TIP 429559 5557 \N \N 6034263 2025-03-19 08:31:01.788 2025-03-19 08:31:01.788 2300 FEE 433844 1411 \N \N 6034264 2025-03-19 08:31:01.788 2025-03-19 08:31:01.788 20700 TIP 433844 21003 \N \N 6034273 2025-03-19 08:31:02.85 2025-03-19 08:31:02.85 2300 FEE 433844 4831 \N \N 6034274 2025-03-19 08:31:02.85 2025-03-19 08:31:02.85 20700 TIP 433844 1209 \N \N 6034275 2025-03-19 08:31:03.018 2025-03-19 08:31:03.018 2300 FEE 433844 16966 \N \N 6034276 2025-03-19 08:31:03.018 2025-03-19 08:31:03.018 20700 TIP 433844 13587 \N \N 6034287 2025-03-19 08:31:04.607 2025-03-19 08:31:04.607 2300 FEE 433844 21281 \N \N 6034288 2025-03-19 08:31:04.607 2025-03-19 08:31:04.607 20700 TIP 433844 5444 \N \N 6034339 2025-03-19 08:32:43.698 2025-03-19 08:32:43.698 1000 FEE 435279 7587 \N \N 6034340 2025-03-19 08:32:45.898 2025-03-19 08:32:45.898 1000 FEE 435170 9695 \N \N 6034341 2025-03-19 08:32:45.898 2025-03-19 08:32:45.898 9000 TIP 435170 21116 \N \N 6034359 2025-03-19 08:33:17.181 2025-03-19 08:33:17.181 1000 FEE 435154 2774 \N \N 6034360 2025-03-19 08:33:17.181 2025-03-19 08:33:17.181 9000 TIP 435154 5557 \N \N 6034361 2025-03-19 08:33:25.224 2025-03-19 08:33:25.224 1000 FEE 435280 1120 \N \N 6034372 2025-03-19 08:33:40.994 2025-03-19 08:33:40.994 1000 FEE 435281 10484 \N \N 6034380 2025-03-19 08:34:25.051 2025-03-19 08:34:25.051 8300 FEE 435242 628 \N \N 6034381 2025-03-19 08:34:25.051 2025-03-19 08:34:25.051 74700 TIP 435242 21208 \N \N 6034388 2025-03-19 08:34:25.69 2025-03-19 08:34:25.69 8300 FEE 435242 21334 \N \N 6034389 2025-03-19 08:34:25.69 2025-03-19 08:34:25.69 74700 TIP 435242 17064 \N \N 6034404 2025-03-19 08:34:26.501 2025-03-19 08:34:26.501 8300 FEE 435242 15690 \N \N 6034405 2025-03-19 08:34:26.501 2025-03-19 08:34:26.501 74700 TIP 435242 7827 \N \N 6034424 2025-03-19 08:34:28.194 2025-03-19 08:34:28.194 8300 FEE 435242 17526 \N \N 6034425 2025-03-19 08:34:28.194 2025-03-19 08:34:28.194 74700 TIP 435242 17331 \N \N 6034436 2025-03-19 08:35:08.29 2025-03-19 08:35:08.29 1000 FEE 435282 12566 \N \N 6034437 2025-03-19 08:35:08.673 2025-03-19 08:35:08.673 1000 FEE 435283 11819 \N \N 6034487 2025-03-19 08:36:58.135 2025-03-19 08:36:58.135 8300 FEE 435261 11263 \N \N 6034488 2025-03-19 08:36:58.135 2025-03-19 08:36:58.135 74700 TIP 435261 623 \N \N 6034500 2025-03-19 08:37:25.526 2025-03-19 08:37:25.526 1000 FEE 435277 5578 \N \N 6034501 2025-03-19 08:37:25.526 2025-03-19 08:37:25.526 9000 TIP 435277 4802 \N \N 6034524 2025-03-19 08:39:45.102 2025-03-19 08:39:45.102 8300 FEE 435284 20710 \N \N 6034525 2025-03-19 08:39:45.102 2025-03-19 08:39:45.102 74700 TIP 435284 650 \N \N 6034532 2025-03-19 08:40:10.243 2025-03-19 08:40:10.243 2100 FEE 435251 12049 \N \N 6034533 2025-03-19 08:40:10.243 2025-03-19 08:40:10.243 18900 TIP 435251 1209 \N \N 6034534 2025-03-19 08:40:11.313 2025-03-19 08:40:11.313 2100 FEE 435278 11158 \N \N 6034535 2025-03-19 08:40:11.313 2025-03-19 08:40:11.313 18900 TIP 435278 21547 \N \N 6034565 2025-03-19 08:44:22.056 2025-03-19 08:44:22.056 3300 FEE 435287 17046 \N \N 6034566 2025-03-19 08:44:22.056 2025-03-19 08:44:22.056 29700 TIP 435287 21402 \N \N 6034593 2025-03-19 08:45:10.911 2025-03-19 08:45:10.911 1000 FEE 435291 12245 \N \N 6034594 2025-03-19 08:45:10.911 2025-03-19 08:45:10.911 9000 TIP 435291 17838 \N \N 6034597 2025-03-19 08:45:11.843 2025-03-19 08:45:11.843 1000 FEE 435291 12049 \N \N 6034598 2025-03-19 08:45:11.843 2025-03-19 08:45:11.843 9000 TIP 435291 18402 \N \N 6034604 2025-03-19 08:46:04.477 2025-03-19 08:46:04.477 3000 FEE 435303 17201 \N \N 6034605 2025-03-19 08:46:04.477 2025-03-19 08:46:04.477 27000 TIP 435303 17064 \N \N 6034634 2025-03-19 08:47:22.627 2025-03-19 08:47:22.627 1000 FEE 435298 1145 \N \N 6034635 2025-03-19 08:47:22.627 2025-03-19 08:47:22.627 9000 TIP 435298 13038 \N \N 6034658 2025-03-19 08:51:00.243 2025-03-19 08:51:00.243 3200 FEE 435281 1638 \N \N 6034659 2025-03-19 08:51:00.243 2025-03-19 08:51:00.243 28800 TIP 435281 10731 \N \N 6034683 2025-03-19 08:52:08.716 2025-03-19 08:52:08.716 100 FEE 435224 1261 \N \N 6034684 2025-03-19 08:52:08.716 2025-03-19 08:52:08.716 900 TIP 435224 5036 \N \N 6034697 2025-03-19 08:52:39.241 2025-03-19 08:52:39.241 1000 FEE 435316 18313 \N \N 6034739 2025-03-19 08:54:05.788 2025-03-19 08:54:05.788 2100 FEE 434958 3396 \N \N 6034740 2025-03-19 08:54:05.788 2025-03-19 08:54:05.788 18900 TIP 434958 768 \N \N 6034781 2025-03-19 08:54:57.98 2025-03-19 08:54:57.98 2300 FEE 435308 15544 \N \N 6034782 2025-03-19 08:54:57.98 2025-03-19 08:54:57.98 20700 TIP 435308 5825 \N \N 6034823 2025-03-19 08:59:52.84 2025-03-19 08:59:52.84 5000 FEE 435328 15075 \N \N 6034824 2025-03-19 08:59:52.84 2025-03-19 08:59:52.84 45000 TIP 435328 676 \N \N 6034850 2025-03-19 09:00:50.276 2025-03-19 09:00:50.276 9000 FEE 435323 19459 \N \N 6034851 2025-03-19 09:00:50.276 2025-03-19 09:00:50.276 81000 TIP 435323 844 \N \N 6034854 2025-03-19 09:01:04.635 2025-03-19 09:01:04.635 1000 FEE 435321 9335 \N \N 6034855 2025-03-19 09:01:04.635 2025-03-19 09:01:04.635 9000 TIP 435321 9246 \N \N 6034863 2025-03-19 09:02:02.377 2025-03-19 09:02:02.377 500 FEE 435331 6268 \N \N 6034864 2025-03-19 09:02:02.377 2025-03-19 09:02:02.377 4500 TIP 435331 647 \N \N 6034868 2025-03-19 09:02:14.203 2025-03-19 09:02:14.203 1000 FEE 435336 14515 \N \N 6034872 2025-03-19 09:02:49.828 2025-03-19 09:02:49.828 3300 FEE 435217 14260 \N \N 6034873 2025-03-19 09:02:49.828 2025-03-19 09:02:49.828 29700 TIP 435217 746 \N \N 6034877 2025-03-19 09:03:25.449 2025-03-19 09:03:25.449 3300 FEE 435275 20840 \N \N 6034878 2025-03-19 09:03:25.449 2025-03-19 09:03:25.449 29700 TIP 435275 910 \N \N 6034898 2025-03-19 09:03:34.681 2025-03-19 09:03:34.681 8900 FEE 435277 1647 \N \N 6034899 2025-03-19 09:03:34.681 2025-03-19 09:03:34.681 80100 TIP 435277 777 \N \N 6034900 2025-03-19 09:03:44.425 2025-03-19 09:03:44.425 1000 FEE 435338 5852 \N \N 6034905 2025-03-19 09:04:15.226 2025-03-19 09:04:15.226 100000 FEE 435340 16747 \N \N 6034915 2025-03-19 09:04:35.204 2025-03-19 09:04:35.204 3300 FEE 435136 12738 \N \N 6034916 2025-03-19 09:04:35.204 2025-03-19 09:04:35.204 29700 TIP 435136 1519 \N \N 6034929 2025-03-19 09:05:22.628 2025-03-19 09:05:22.628 1000 FEE 435344 18270 \N \N 6034932 2025-03-19 09:05:25.061 2025-03-19 09:05:25.061 3300 FEE 435274 20614 \N \N 6034933 2025-03-19 09:05:25.061 2025-03-19 09:05:25.061 29700 TIP 435274 17533 \N \N 6034951 2025-03-19 09:05:53.359 2025-03-19 09:05:53.359 1000 FEE 435346 8326 \N \N 6034952 2025-03-19 09:06:02.746 2025-03-19 09:06:02.746 2100 FEE 435343 2328 \N \N 6034953 2025-03-19 09:06:02.746 2025-03-19 09:06:02.746 18900 TIP 435343 21405 \N \N 6034967 2025-03-19 09:08:35.594 2025-03-19 09:08:35.594 1000 FEE 435263 21815 \N \N 6034968 2025-03-19 09:08:35.594 2025-03-19 09:08:35.594 9000 TIP 435263 713 \N \N 6034980 2025-03-19 09:08:58.275 2025-03-19 09:08:58.275 8300 FEE 435327 21249 \N \N 6034981 2025-03-19 09:08:58.275 2025-03-19 09:08:58.275 74700 TIP 435327 16309 \N \N 6034984 2025-03-19 09:08:58.488 2025-03-19 09:08:58.488 8300 FEE 435327 10549 \N \N 6034985 2025-03-19 09:08:58.488 2025-03-19 09:08:58.488 74700 TIP 435327 17696 \N \N 6035014 2025-03-19 09:09:56.513 2025-03-19 09:09:56.513 1000 FEE 435328 15160 \N \N 6035015 2025-03-19 09:09:56.513 2025-03-19 09:09:56.513 9000 TIP 435328 18174 \N \N 6035026 2025-03-19 09:10:05.263 2025-03-19 09:10:05.263 1000 FEE 435314 13133 \N \N 6035027 2025-03-19 09:10:05.263 2025-03-19 09:10:05.263 9000 TIP 435314 16769 \N \N 6035034 2025-03-19 09:10:06.574 2025-03-19 09:10:06.574 1000 FEE 435314 9339 \N \N 6035035 2025-03-19 09:10:06.574 2025-03-19 09:10:06.574 9000 TIP 435314 16276 \N \N 6035046 2025-03-19 09:10:11.169 2025-03-19 09:10:11.169 8300 FEE 435231 1310 \N \N 6035047 2025-03-19 09:10:11.169 2025-03-19 09:10:11.169 74700 TIP 435231 760 \N \N 6035062 2025-03-19 09:12:11.903 2025-03-19 09:12:11.903 1000 FEE 433456 15732 \N \N 6035063 2025-03-19 09:12:11.903 2025-03-19 09:12:11.903 9000 TIP 433456 3683 \N \N 6035093 2025-03-19 09:15:10.497 2025-03-19 09:15:10.497 10000 FEE 435351 2640 \N \N 6035096 2025-03-19 09:15:12.549 2025-03-19 09:15:12.549 900 FEE 435349 21233 \N \N 6035097 2025-03-19 09:15:12.549 2025-03-19 09:15:12.549 8100 TIP 435349 20969 \N \N 6035109 2025-03-19 09:15:51.243 2025-03-19 09:15:51.243 10000 FEE 433878 19888 \N \N 6034220 2025-03-19 08:30:57.466 2025-03-19 08:30:57.466 20700 TIP 433844 21365 \N \N 6034223 2025-03-19 08:30:58.059 2025-03-19 08:30:58.059 2300 FEE 433844 14731 \N \N 6034224 2025-03-19 08:30:58.059 2025-03-19 08:30:58.059 20700 TIP 433844 1046 \N \N 6034231 2025-03-19 08:30:58.673 2025-03-19 08:30:58.673 2300 FEE 433844 21804 \N \N 6034232 2025-03-19 08:30:58.673 2025-03-19 08:30:58.673 20700 TIP 433844 854 \N \N 6034239 2025-03-19 08:30:59.417 2025-03-19 08:30:59.417 2300 FEE 433844 2293 \N \N 6034240 2025-03-19 08:30:59.417 2025-03-19 08:30:59.417 20700 TIP 433844 2367 \N \N 6034265 2025-03-19 08:31:01.951 2025-03-19 08:31:01.951 2300 FEE 433844 21274 \N \N 6034266 2025-03-19 08:31:01.951 2025-03-19 08:31:01.951 20700 TIP 433844 1577 \N \N 6034357 2025-03-19 08:33:14.418 2025-03-19 08:33:14.418 16600 FEE 435231 714 \N \N 6034358 2025-03-19 08:33:14.418 2025-03-19 08:33:14.418 149400 TIP 435231 21269 \N \N 6034390 2025-03-19 08:34:25.754 2025-03-19 08:34:25.754 8300 FEE 435242 894 \N \N 6034391 2025-03-19 08:34:25.754 2025-03-19 08:34:25.754 74700 TIP 435242 9099 \N \N 6034412 2025-03-19 08:34:26.968 2025-03-19 08:34:26.968 8300 FEE 435242 9307 \N \N 6034413 2025-03-19 08:34:26.968 2025-03-19 08:34:26.968 74700 TIP 435242 6688 \N \N 6034418 2025-03-19 08:34:27.853 2025-03-19 08:34:27.853 8300 FEE 435242 13042 \N \N 6034419 2025-03-19 08:34:27.853 2025-03-19 08:34:27.853 74700 TIP 435242 716 \N \N 6034434 2025-03-19 08:34:28.751 2025-03-19 08:34:28.751 8300 FEE 435242 14015 \N \N 6034435 2025-03-19 08:34:28.751 2025-03-19 08:34:28.751 74700 TIP 435242 17226 \N \N 6034445 2025-03-19 08:36:26.744 2025-03-19 08:36:26.744 2300 FEE 435261 21003 \N \N 6034446 2025-03-19 08:36:26.744 2025-03-19 08:36:26.744 20700 TIP 435261 4692 \N \N 6034453 2025-03-19 08:36:27.225 2025-03-19 08:36:27.225 2300 FEE 435261 12272 \N \N 6034454 2025-03-19 08:36:27.225 2025-03-19 08:36:27.225 20700 TIP 435261 7674 \N \N 6034472 2025-03-19 08:36:52.467 2025-03-19 08:36:52.467 1000 FEE 435288 15060 \N \N 6034485 2025-03-19 08:36:58.072 2025-03-19 08:36:58.072 8300 FEE 435261 18601 \N \N 6034486 2025-03-19 08:36:58.072 2025-03-19 08:36:58.072 74700 TIP 435261 20912 \N \N 6034498 2025-03-19 08:36:59.377 2025-03-19 08:36:59.377 1000 FEE 435290 700 \N \N 6034510 2025-03-19 08:37:45.424 2025-03-19 08:37:45.424 900 FEE 435280 17817 \N \N 6034511 2025-03-19 08:37:45.424 2025-03-19 08:37:45.424 8100 TIP 435280 6260 \N \N 6034514 2025-03-19 08:38:22.897 2025-03-19 08:38:22.897 1000 FEE 435293 13903 \N \N 6034582 2025-03-19 08:44:38.015 2025-03-19 08:44:38.015 400 FEE 435302 14791 \N \N 6034583 2025-03-19 08:44:38.015 2025-03-19 08:44:38.015 3600 TIP 435302 2711 \N \N 6034621 2025-03-19 08:47:10.088 2025-03-19 08:47:10.088 2100 FEE 435046 6430 \N \N 6034622 2025-03-19 08:47:10.088 2025-03-19 08:47:10.088 18900 TIP 435046 7766 \N \N 6034640 2025-03-19 08:48:27.268 2025-03-19 08:48:27.268 200 FEE 435293 13327 \N \N 6034641 2025-03-19 08:48:27.268 2025-03-19 08:48:27.268 1800 TIP 435293 18956 \N \N 6034651 2025-03-19 08:50:31.165 2025-03-19 08:50:31.165 400 FEE 434896 21518 \N \N 6034652 2025-03-19 08:50:31.165 2025-03-19 08:50:31.165 3600 TIP 434896 21832 \N \N 6034669 2025-03-19 08:51:31.954 2025-03-19 08:51:31.954 1000 FEE 435313 20965 \N \N 6034679 2025-03-19 08:52:06.594 2025-03-19 08:52:06.594 100 FEE 435236 3353 \N \N 6034680 2025-03-19 08:52:06.594 2025-03-19 08:52:06.594 900 TIP 435236 7966 \N \N 6034689 2025-03-19 08:52:12.578 2025-03-19 08:52:12.578 1000 FEE 435315 1471 \N \N 6034699 2025-03-19 08:53:10.763 2025-03-19 08:53:10.763 0 FEE 435317 15386 \N \N 6034715 2025-03-19 08:53:39.212 2025-03-19 08:53:39.212 2100 FEE 434917 10060 \N \N 6034716 2025-03-19 08:53:39.212 2025-03-19 08:53:39.212 18900 TIP 434917 3729 \N \N 6034717 2025-03-19 08:53:42.151 2025-03-19 08:53:42.151 2100 FEE 434954 828 \N \N 6034718 2025-03-19 08:53:42.151 2025-03-19 08:53:42.151 18900 TIP 434954 1244 \N \N 6034737 2025-03-19 08:54:03.59 2025-03-19 08:54:03.59 100 FEE 435314 16336 \N \N 6034738 2025-03-19 08:54:03.59 2025-03-19 08:54:03.59 900 TIP 435314 19826 \N \N 6034754 2025-03-19 08:54:13.885 2025-03-19 08:54:13.885 2100 FEE 435026 9333 \N \N 6034755 2025-03-19 08:54:13.885 2025-03-19 08:54:13.885 18900 TIP 435026 13547 \N \N 6034758 2025-03-19 08:54:35.148 2025-03-19 08:54:35.148 2100 FEE 435270 6430 \N \N 6034759 2025-03-19 08:54:35.148 2025-03-19 08:54:35.148 18900 TIP 435270 12821 \N \N 6034760 2025-03-19 08:54:38.553 2025-03-19 08:54:38.553 2100 FEE 435217 14857 \N \N 6034761 2025-03-19 08:54:38.553 2025-03-19 08:54:38.553 18900 TIP 435217 6471 \N \N 6034775 2025-03-19 08:54:57.396 2025-03-19 08:54:57.396 27000 FEE 435312 18241 \N \N 6034776 2025-03-19 08:54:57.396 2025-03-19 08:54:57.396 243000 TIP 435312 15806 \N \N 6034784 2025-03-19 08:55:20.989 2025-03-19 08:55:20.989 2100 FEE 435226 1652 \N \N 6034785 2025-03-19 08:55:20.989 2025-03-19 08:55:20.989 18900 TIP 435226 14669 \N \N 6034789 2025-03-19 08:55:57.208 2025-03-19 08:55:57.208 1000 FEE 435320 21398 \N \N 6034806 2025-03-19 08:58:20.042 2025-03-19 08:58:20.042 1000 FEE 435326 20479 \N \N 6034822 2025-03-19 08:59:29.694 2025-03-19 08:59:29.694 100000 FEE 435328 1564 \N \N 6034841 2025-03-19 09:00:00.486 2025-03-19 09:00:00.486 90000 FEE 435328 21208 \N \N 6034842 2025-03-19 09:00:00.486 2025-03-19 09:00:00.486 810000 TIP 435328 18265 \N \N 6034858 2025-03-19 09:01:34.259 2025-03-19 09:01:34.259 1000 FEE 435333 9843 \N \N 6034859 2025-03-19 09:01:37.683 2025-03-19 09:01:37.683 800 FEE 435315 7558 \N \N 6034860 2025-03-19 09:01:37.683 2025-03-19 09:01:37.683 7200 TIP 435315 15049 \N \N 6034874 2025-03-19 09:02:50.037 2025-03-19 09:02:50.037 3300 FEE 435217 16876 \N \N 6034875 2025-03-19 09:02:50.037 2025-03-19 09:02:50.037 29700 TIP 435217 13575 \N \N 6034881 2025-03-19 09:03:25.58 2025-03-19 09:03:25.58 3300 FEE 435275 2735 \N \N 6034882 2025-03-19 09:03:25.58 2025-03-19 09:03:25.58 29700 TIP 435275 21131 \N \N 6034908 2025-03-19 09:04:20.428 2025-03-19 09:04:20.428 0 FEE 435339 15556 \N \N 6034909 2025-03-19 09:04:25.836 2025-03-19 09:04:25.836 3300 FEE 435030 18901 \N \N 6034910 2025-03-19 09:04:25.836 2025-03-19 09:04:25.836 29700 TIP 435030 18533 \N \N 6034947 2025-03-19 09:05:49.24 2025-03-19 09:05:49.24 3300 FEE 435171 10060 \N \N 6034948 2025-03-19 09:05:49.24 2025-03-19 09:05:49.24 29700 TIP 435171 718 \N \N 6034988 2025-03-19 09:08:58.841 2025-03-19 09:08:58.841 8300 FEE 435327 12779 \N \N 6034989 2025-03-19 09:08:58.841 2025-03-19 09:08:58.841 74700 TIP 435327 2529 \N \N 6034990 2025-03-19 09:08:58.954 2025-03-19 09:08:58.954 8300 FEE 435327 21281 \N \N 6034991 2025-03-19 09:08:58.954 2025-03-19 09:08:58.954 74700 TIP 435327 14295 \N \N 6034994 2025-03-19 09:08:59.169 2025-03-19 09:08:59.169 8300 FEE 435327 16788 \N \N 6034995 2025-03-19 09:08:59.169 2025-03-19 09:08:59.169 74700 TIP 435327 21279 \N \N 6034996 2025-03-19 09:08:59.289 2025-03-19 09:08:59.289 8300 FEE 435327 17291 \N \N 6034241 2025-03-19 08:30:59.579 2025-03-19 08:30:59.579 2300 FEE 433844 21585 \N \N 6034242 2025-03-19 08:30:59.579 2025-03-19 08:30:59.579 20700 TIP 433844 999 \N \N 6034247 2025-03-19 08:31:00.119 2025-03-19 08:31:00.119 2300 FEE 433844 13348 \N \N 6034248 2025-03-19 08:31:00.119 2025-03-19 08:31:00.119 20700 TIP 433844 19930 \N \N 6034249 2025-03-19 08:31:00.298 2025-03-19 08:31:00.298 2300 FEE 433844 16410 \N \N 6034250 2025-03-19 08:31:00.298 2025-03-19 08:31:00.298 20700 TIP 433844 2328 \N \N 6034267 2025-03-19 08:31:02.114 2025-03-19 08:31:02.114 2300 FEE 433844 1221 \N \N 6034268 2025-03-19 08:31:02.114 2025-03-19 08:31:02.114 20700 TIP 433844 16230 \N \N 6034302 2025-03-19 08:32:19.18 2025-03-19 08:32:19.18 1000 FEE 435278 20970 \N \N 6034307 2025-03-19 08:32:23.051 2025-03-19 08:32:23.051 2300 FEE 435241 19378 \N \N 6034308 2025-03-19 08:32:23.051 2025-03-19 08:32:23.051 20700 TIP 435241 13878 \N \N 6034342 2025-03-19 08:33:07.09 2025-03-19 08:33:07.09 1000 FEE 435018 16259 \N \N 6034343 2025-03-19 08:33:07.09 2025-03-19 08:33:07.09 9000 TIP 435018 21521 \N \N 6034384 2025-03-19 08:34:25.379 2025-03-19 08:34:25.379 8300 FEE 435242 16670 \N \N 6034385 2025-03-19 08:34:25.379 2025-03-19 08:34:25.379 74700 TIP 435242 12656 \N \N 6034398 2025-03-19 08:34:26.162 2025-03-19 08:34:26.162 8300 FEE 435242 12561 \N \N 6034399 2025-03-19 08:34:26.162 2025-03-19 08:34:26.162 74700 TIP 435242 5794 \N \N 6034432 2025-03-19 08:34:28.654 2025-03-19 08:34:28.654 8300 FEE 435242 7119 \N \N 6034433 2025-03-19 08:34:28.654 2025-03-19 08:34:28.654 74700 TIP 435242 16929 \N \N 6034469 2025-03-19 08:36:32.173 2025-03-19 08:36:32.173 2300 FEE 435263 10849 \N \N 6034470 2025-03-19 08:36:32.173 2025-03-19 08:36:32.173 20700 TIP 435263 12291 \N \N 6034471 2025-03-19 08:36:38.754 2025-03-19 08:36:38.754 1000 FEE 435287 18441 \N \N 6034481 2025-03-19 08:36:57.31 2025-03-19 08:36:57.31 8300 FEE 435261 21832 \N \N 6034482 2025-03-19 08:36:57.31 2025-03-19 08:36:57.31 74700 TIP 435261 10398 \N \N 6034515 2025-03-19 08:38:29.409 2025-03-19 08:38:29.409 1000 FEE 435294 3353 \N \N 6034520 2025-03-19 08:39:17.581 2025-03-19 08:39:17.581 2500 FEE 435046 11873 \N \N 6034521 2025-03-19 08:39:17.581 2025-03-19 08:39:17.581 22500 TIP 435046 16126 \N \N 6034538 2025-03-19 08:40:26.727 2025-03-19 08:40:26.727 1000 FEE 435296 16834 \N \N 6034539 2025-03-19 08:40:27.188 2025-03-19 08:40:27.188 1000 FEE 435297 16353 \N \N 6034546 2025-03-19 08:41:20.739 2025-03-19 08:41:20.739 1000 FEE 435298 14220 \N \N 6034552 2025-03-19 08:42:22.809 2025-03-19 08:42:22.809 0 FEE 383547 11423 \N \N 6034553 2025-03-19 08:42:26.133 2025-03-19 08:42:26.133 1000 FEE 435300 16842 \N \N 6034568 2025-03-19 08:44:24.995 2025-03-19 08:44:24.995 3300 FEE 435297 7847 \N \N 6034569 2025-03-19 08:44:24.995 2025-03-19 08:44:24.995 29700 TIP 435297 4459 \N \N 6034576 2025-03-19 08:44:27.543 2025-03-19 08:44:27.543 1000 FEE 435294 10096 \N \N 6034577 2025-03-19 08:44:27.543 2025-03-19 08:44:27.543 9000 TIP 435294 2537 \N \N 6034601 2025-03-19 08:45:12.721 2025-03-19 08:45:12.721 1000 FEE 435291 2748 \N \N 6034602 2025-03-19 08:45:12.721 2025-03-19 08:45:12.721 9000 TIP 435291 1960 \N \N 6034608 2025-03-19 08:46:08.416 2025-03-19 08:46:08.416 100 FEE 435046 17984 \N \N 6034609 2025-03-19 08:46:08.416 2025-03-19 08:46:08.416 900 TIP 435046 5829 \N \N 6034619 2025-03-19 08:47:05.995 2025-03-19 08:47:05.995 1000 FEE 435301 11491 \N \N 6034620 2025-03-19 08:47:05.995 2025-03-19 08:47:05.995 9000 TIP 435301 21442 \N \N 6034630 2025-03-19 08:47:17.878 2025-03-19 08:47:17.878 2100 FEE 435242 17570 \N \N 6034631 2025-03-19 08:47:17.878 2025-03-19 08:47:17.878 18900 TIP 435242 20715 \N \N 6034653 2025-03-19 08:50:32.304 2025-03-19 08:50:32.304 1000 FEE 435310 756 \N \N 6034665 2025-03-19 08:51:13.914 2025-03-19 08:51:13.914 9000 FEE 435261 9167 \N \N 6034666 2025-03-19 08:51:13.914 2025-03-19 08:51:13.914 81000 TIP 435261 1469 \N \N 6034681 2025-03-19 08:52:06.761 2025-03-19 08:52:06.761 900 FEE 435236 19537 \N \N 6034682 2025-03-19 08:52:06.761 2025-03-19 08:52:06.761 8100 TIP 435236 11158 \N \N 6034698 2025-03-19 08:52:41.866 2025-03-19 08:52:41.866 1000 FEE 435317 8505 \N \N 6034701 2025-03-19 08:53:27.172 2025-03-19 08:53:27.172 2100 FEE 435046 6419 \N \N 6034702 2025-03-19 08:53:27.172 2025-03-19 08:53:27.172 18900 TIP 435046 4819 \N \N 6034705 2025-03-19 08:53:28.859 2025-03-19 08:53:28.859 2100 FEE 435231 21114 \N \N 6034706 2025-03-19 08:53:28.859 2025-03-19 08:53:28.859 18900 TIP 435231 13467 \N \N 6034733 2025-03-19 08:54:02.624 2025-03-19 08:54:02.624 200 FEE 434713 18500 \N \N 6034734 2025-03-19 08:54:02.624 2025-03-19 08:54:02.624 1800 TIP 434713 1823 \N \N 6034735 2025-03-19 08:54:02.671 2025-03-19 08:54:02.671 200 FEE 434713 11862 \N \N 6034736 2025-03-19 08:54:02.671 2025-03-19 08:54:02.671 1800 TIP 434713 21114 \N \N 6034743 2025-03-19 08:54:08.078 2025-03-19 08:54:08.078 2100 FEE 435115 695 \N \N 6034744 2025-03-19 08:54:08.078 2025-03-19 08:54:08.078 18900 TIP 435115 1213 \N \N 6034790 2025-03-19 08:56:05.835 2025-03-19 08:56:05.835 1000 FEE 435321 998 \N \N 6034810 2025-03-19 08:58:55.923 2025-03-19 08:58:55.923 0 FEE 435322 20606 \N \N 6034811 2025-03-19 08:58:56.438 2025-03-19 08:58:56.438 3000 FEE 435310 940 \N \N 6034306 2025-03-19 08:32:22.679 2025-03-19 08:32:22.679 20700 TIP 435241 9758 \N \N 6034311 2025-03-19 08:32:23.279 2025-03-19 08:32:23.279 2300 FEE 435241 21037 \N \N 6034312 2025-03-19 08:32:23.279 2025-03-19 08:32:23.279 20700 TIP 435241 18368 \N \N 6034315 2025-03-19 08:32:23.589 2025-03-19 08:32:23.589 2300 FEE 435241 19527 \N \N 6034316 2025-03-19 08:32:23.589 2025-03-19 08:32:23.589 20700 TIP 435241 3360 \N \N 6034329 2025-03-19 08:32:24.989 2025-03-19 08:32:24.989 2300 FEE 435241 21067 \N \N 6034330 2025-03-19 08:32:24.989 2025-03-19 08:32:24.989 20700 TIP 435241 1003 \N \N 6034335 2025-03-19 08:32:25.393 2025-03-19 08:32:25.393 2300 FEE 435241 20588 \N \N 6034336 2025-03-19 08:32:25.393 2025-03-19 08:32:25.393 20700 TIP 435241 10638 \N \N 6034344 2025-03-19 08:33:12.469 2025-03-19 08:33:12.469 8300 FEE 435231 15180 \N \N 6034345 2025-03-19 08:33:12.469 2025-03-19 08:33:12.469 74700 TIP 435231 16747 \N \N 6034400 2025-03-19 08:34:26.262 2025-03-19 08:34:26.262 8300 FEE 435242 15690 \N \N 6034401 2025-03-19 08:34:26.262 2025-03-19 08:34:26.262 74700 TIP 435242 714 \N \N 6034406 2025-03-19 08:34:26.609 2025-03-19 08:34:26.609 8300 FEE 435242 10549 \N \N 6034407 2025-03-19 08:34:26.609 2025-03-19 08:34:26.609 74700 TIP 435242 9307 \N \N 6034408 2025-03-19 08:34:26.729 2025-03-19 08:34:26.729 8300 FEE 435242 732 \N \N 6034409 2025-03-19 08:34:26.729 2025-03-19 08:34:26.729 74700 TIP 435242 1985 \N \N 6034416 2025-03-19 08:34:27.743 2025-03-19 08:34:27.743 8300 FEE 435242 20681 \N \N 6034417 2025-03-19 08:34:27.743 2025-03-19 08:34:27.743 74700 TIP 435242 20254 \N \N 6034422 2025-03-19 08:34:28.078 2025-03-19 08:34:28.078 8300 FEE 435242 21444 \N \N 6034423 2025-03-19 08:34:28.078 2025-03-19 08:34:28.078 74700 TIP 435242 13878 \N \N 6034440 2025-03-19 08:35:46.537 2025-03-19 08:35:46.537 3000 FEE 435147 10536 \N \N 6034441 2025-03-19 08:35:46.537 2025-03-19 08:35:46.537 27000 TIP 435147 19952 \N \N 6034442 2025-03-19 08:36:01.561 2025-03-19 08:36:01.561 1000 FEE 435285 21058 \N \N 6034449 2025-03-19 08:36:26.991 2025-03-19 08:36:26.991 2300 FEE 435261 21238 \N \N 6034450 2025-03-19 08:36:26.991 2025-03-19 08:36:26.991 20700 TIP 435261 998 \N \N 6034477 2025-03-19 08:36:57.111 2025-03-19 08:36:57.111 8300 FEE 435261 9341 \N \N 6034364 2025-03-19 08:33:33.88 2025-03-19 08:33:33.88 1000 FEE 435234 9496 \N \N 6034365 2025-03-19 08:33:33.88 2025-03-19 08:33:33.88 9000 TIP 435234 2367 \N \N 6034368 2025-03-19 08:33:36.385 2025-03-19 08:33:36.385 1000 FEE 435190 2952 \N \N 6034369 2025-03-19 08:33:36.385 2025-03-19 08:33:36.385 9000 TIP 435190 16259 \N \N 6034375 2025-03-19 08:33:47.637 2025-03-19 08:33:47.637 1000 FEE 435206 15196 \N \N 6034376 2025-03-19 08:33:47.637 2025-03-19 08:33:47.637 9000 TIP 435206 9820 \N \N 6034378 2025-03-19 08:34:24.566 2025-03-19 08:34:24.566 8300 FEE 435242 18529 \N \N 6034379 2025-03-19 08:34:24.566 2025-03-19 08:34:24.566 74700 TIP 435242 21339 \N \N 6034392 2025-03-19 08:34:25.813 2025-03-19 08:34:25.813 8300 FEE 435242 623 \N \N 6034393 2025-03-19 08:34:25.813 2025-03-19 08:34:25.813 74700 TIP 435242 11621 \N \N 6034420 2025-03-19 08:34:27.968 2025-03-19 08:34:27.968 8300 FEE 435242 8570 \N \N 6034421 2025-03-19 08:34:27.968 2025-03-19 08:34:27.968 74700 TIP 435242 624 \N \N 6034457 2025-03-19 08:36:28.035 2025-03-19 08:36:28.035 2300 FEE 435261 4079 \N \N 6034458 2025-03-19 08:36:28.035 2025-03-19 08:36:28.035 20700 TIP 435261 2088 \N \N 6034459 2025-03-19 08:36:28.822 2025-03-19 08:36:28.822 2300 FEE 435261 3213 \N \N 6034460 2025-03-19 08:36:28.822 2025-03-19 08:36:28.822 20700 TIP 435261 21791 \N \N 6034483 2025-03-19 08:36:57.889 2025-03-19 08:36:57.889 8300 FEE 435261 15147 \N \N 6034484 2025-03-19 08:36:57.889 2025-03-19 08:36:57.889 74700 TIP 435261 13587 \N \N 6034518 2025-03-19 08:38:56.895 2025-03-19 08:38:56.895 0 FEE 435292 828 \N \N 6034528 2025-03-19 08:39:46.754 2025-03-19 08:39:46.754 27000 FEE 435292 4259 \N \N 6034529 2025-03-19 08:39:46.754 2025-03-19 08:39:46.754 243000 TIP 435292 8472 \N \N 6034554 2025-03-19 08:42:34.634 2025-03-19 08:42:34.634 1000 FEE 435276 20861 \N \N 6034555 2025-03-19 08:42:34.634 2025-03-19 08:42:34.634 9000 TIP 435276 20504 \N \N 6034561 2025-03-19 08:44:01.222 2025-03-19 08:44:01.222 2000 FEE 435263 2774 \N \N 6034562 2025-03-19 08:44:01.222 2025-03-19 08:44:01.222 18000 TIP 435263 3371 \N \N 6034591 2025-03-19 08:45:04.884 2025-03-19 08:45:04.884 2000 FEE 435120 18330 \N \N 6034592 2025-03-19 08:45:04.884 2025-03-19 08:45:04.884 18000 TIP 435120 10821 \N \N 6034595 2025-03-19 08:45:11.41 2025-03-19 08:45:11.41 1000 FEE 435291 9166 \N \N 6039422 2025-03-19 18:09:05.068 2025-03-19 18:09:05.068 1000 FEE 435783 18426 \N \N 6039440 2025-03-19 18:15:28.41 2025-03-19 18:15:28.41 1000 FEE 435784 21048 \N \N 6039461 2025-03-19 18:18:24.154 2025-03-19 18:18:24.154 1000 FEE 435788 12821 \N \N 6039472 2025-03-19 18:20:14.374 2025-03-19 18:20:14.374 500 FEE 435328 21020 \N \N 6039473 2025-03-19 18:20:14.374 2025-03-19 18:20:14.374 4500 TIP 435328 19888 \N \N 6039479 2025-03-19 18:20:16.724 2025-03-19 18:20:16.724 500 FEE 435030 1983 \N \N 6039480 2025-03-19 18:20:16.724 2025-03-19 18:20:16.724 4500 TIP 435030 656 \N \N 6039497 2025-03-19 18:20:44.592 2025-03-19 18:20:44.592 2100 FEE 435274 16154 \N \N 6039498 2025-03-19 18:20:44.592 2025-03-19 18:20:44.592 18900 TIP 435274 16410 \N \N 6039517 2025-03-19 18:22:05.551 2025-03-19 18:22:05.551 5000 FEE 435614 16788 \N \N 6039518 2025-03-19 18:22:05.551 2025-03-19 18:22:05.551 45000 TIP 435614 684 \N \N 6039521 2025-03-19 18:22:09.013 2025-03-19 18:22:09.013 5000 FEE 435327 10586 \N \N 6039522 2025-03-19 18:22:09.013 2025-03-19 18:22:09.013 45000 TIP 435327 910 \N \N 6039568 2025-03-19 18:33:55.629 2025-03-19 18:33:55.629 1000 FEE 435596 10611 \N \N 6039569 2025-03-19 18:33:55.629 2025-03-19 18:33:55.629 9000 TIP 435596 11621 \N \N 6039599 2025-03-19 18:36:47.234 2025-03-19 18:36:47.234 500 FEE 435657 16724 \N \N 6039600 2025-03-19 18:36:47.234 2025-03-19 18:36:47.234 4500 TIP 435657 636 \N \N 6039620 2025-03-19 18:37:43.754 2025-03-19 18:37:43.754 1000 FEE 435799 18494 \N \N 6039625 2025-03-19 18:38:17.255 2025-03-19 18:38:17.255 2100 FEE 435704 17953 \N \N 6039626 2025-03-19 18:38:17.255 2025-03-19 18:38:17.255 18900 TIP 435704 4250 \N \N 6039627 2025-03-19 18:38:18.517 2025-03-19 18:38:18.517 2100 FEE 435711 900 \N \N 6039628 2025-03-19 18:38:18.517 2025-03-19 18:38:18.517 18900 TIP 435711 15925 \N \N 6039649 2025-03-19 18:41:28.17 2025-03-19 18:41:28.17 500 FEE 435342 20619 \N \N 6039650 2025-03-19 18:41:28.17 2025-03-19 18:41:28.17 4500 TIP 435342 14357 \N \N 6039659 2025-03-19 18:41:50.906 2025-03-19 18:41:50.906 500 FEE 435614 4768 \N \N 6039660 2025-03-19 18:41:50.906 2025-03-19 18:41:50.906 4500 TIP 435614 16667 \N \N 6039699 2025-03-19 18:47:12.553 2025-03-19 18:47:12.553 500 FEE 434654 17519 \N \N 6039700 2025-03-19 18:47:12.553 2025-03-19 18:47:12.553 4500 TIP 434654 1618 \N \N 6039706 2025-03-19 18:50:37.715 2025-03-19 18:50:37.715 1000 FEE 435488 8004 \N \N 6039707 2025-03-19 18:50:37.715 2025-03-19 18:50:37.715 9000 TIP 435488 16998 \N \N 6039710 2025-03-19 18:50:39.413 2025-03-19 18:50:39.413 1000 FEE 434791 2195 \N \N 6039711 2025-03-19 18:50:39.413 2025-03-19 18:50:39.413 9000 TIP 434791 1741 \N \N 6039725 2025-03-19 18:51:56.758 2025-03-19 18:51:56.758 1000 FEE 435728 20647 \N \N 6039726 2025-03-19 18:51:56.758 2025-03-19 18:51:56.758 9000 TIP 435728 20062 \N \N 6039753 2025-03-19 19:00:10.72 2025-03-19 19:00:10.72 100000 FEE 435812 631 \N \N 6039767 2025-03-19 19:03:02.149 2025-03-19 19:03:02.149 1000 FEE 434791 1515 \N \N 6039768 2025-03-19 19:03:02.149 2025-03-19 19:03:02.149 9000 TIP 434791 16834 \N \N 6039824 2025-03-19 19:11:40.8 2025-03-19 19:11:40.8 2100 FEE 435812 6463 \N \N 6039825 2025-03-19 19:11:40.8 2025-03-19 19:11:40.8 18900 TIP 435812 11862 \N \N 6039840 2025-03-19 19:12:39.079 2025-03-19 19:12:39.079 2100 FEE 435667 19198 \N \N 6039841 2025-03-19 19:12:39.079 2025-03-19 19:12:39.079 18900 TIP 435667 16965 \N \N 6039864 2025-03-19 19:18:16.415 2025-03-19 19:18:16.415 2100 FEE 435667 5761 \N \N 6039865 2025-03-19 19:18:16.415 2025-03-19 19:18:16.415 18900 TIP 435667 17570 \N \N 6039866 2025-03-19 19:18:59.215 2025-03-19 19:18:59.215 100 FEE 430892 20603 \N \N 6039867 2025-03-19 19:18:59.215 2025-03-19 19:18:59.215 900 TIP 430892 15577 \N \N 6039908 2025-03-19 19:33:08.543 2025-03-19 19:33:08.543 1000 FEE 435378 822 \N \N 6039909 2025-03-19 19:33:08.543 2025-03-19 19:33:08.543 9000 TIP 435378 12738 \N \N 6039963 2025-03-19 19:36:53.077 2025-03-19 19:36:53.077 1000 FEE 435292 20220 \N \N 6039964 2025-03-19 19:36:53.077 2025-03-19 19:36:53.077 9000 TIP 435292 12169 \N \N 6040031 2025-03-19 20:00:30.121 2025-03-19 20:00:30.121 100000 FEE 435838 21578 \N \N 6040079 2025-03-19 20:22:11.507 2025-03-19 20:22:11.507 100 FEE 435776 1424 \N \N 6040080 2025-03-19 20:22:11.507 2025-03-19 20:22:11.507 900 TIP 435776 1209 \N \N 6040088 2025-03-19 20:23:04.715 2025-03-19 20:23:04.715 1000 FEE 435850 15052 \N \N 6040092 2025-03-19 20:24:35.349 2025-03-19 20:24:35.349 2100 FEE 435834 21501 \N \N 6040093 2025-03-19 20:24:35.349 2025-03-19 20:24:35.349 18900 TIP 435834 19980 \N \N 6040104 2025-03-19 20:29:44.543 2025-03-19 20:29:44.543 1000 FEE 435855 3342 \N \N 6040122 2025-03-19 20:38:44.747 2025-03-19 20:38:44.747 1000 FEE 435859 9 \N \N 6040154 2025-03-19 20:52:45.958 2025-03-19 20:52:45.958 1000 FEE 435246 1044 \N \N 6040155 2025-03-19 20:52:45.958 2025-03-19 20:52:45.958 9000 TIP 435246 20858 \N \N 6040178 2025-03-19 20:58:48.719 2025-03-19 20:58:48.719 1000 FEE 435868 6555 \N \N 6040179 2025-03-19 20:58:56.979 2025-03-19 20:58:56.979 2100 FEE 435711 4287 \N \N 6040180 2025-03-19 20:58:56.979 2025-03-19 20:58:56.979 18900 TIP 435711 17172 \N \N 6040185 2025-03-19 21:00:42.117 2025-03-19 21:00:42.117 1000 FEE 435869 21249 \N \N 6040188 2025-03-19 21:01:30.216 2025-03-19 21:01:30.216 2100 FEE 435656 20190 \N \N 6040189 2025-03-19 21:01:30.216 2025-03-19 21:01:30.216 18900 TIP 435656 1611 \N \N 6040211 2025-03-19 21:05:22.306 2025-03-19 21:05:22.306 300 FEE 435837 7903 \N \N 6040212 2025-03-19 21:05:22.306 2025-03-19 21:05:22.306 2700 TIP 435837 13177 \N \N 6040266 2025-03-19 21:17:29.646 2025-03-19 21:17:29.646 1000 FEE 435878 7992 \N \N 6040315 2025-03-19 21:31:50.047 2025-03-19 21:31:50.047 100 FEE 435719 1272 \N \N 6040316 2025-03-19 21:31:50.047 2025-03-19 21:31:50.047 900 TIP 435719 17392 \N \N 6040324 2025-03-19 21:36:46.462 2025-03-19 21:36:46.462 1000 FEE 435885 20596 \N \N 6040339 2025-03-19 21:38:52.027 2025-03-19 21:38:52.027 100 FEE 435769 5978 \N \N 6040340 2025-03-19 21:38:52.027 2025-03-19 21:38:52.027 900 TIP 435769 19581 \N \N 6040382 2025-03-19 21:41:19.616 2025-03-19 21:41:19.616 1000 FEE 435886 12261 \N \N 6040386 2025-03-19 21:41:46.883 2025-03-19 21:41:46.883 400 FEE 435813 19668 \N \N 6040387 2025-03-19 21:41:46.883 2025-03-19 21:41:46.883 3600 TIP 435813 9084 \N \N 6040407 2025-03-19 21:43:36.298 2025-03-19 21:43:36.298 800 FEE 435328 21103 \N \N 6040408 2025-03-19 21:43:36.298 2025-03-19 21:43:36.298 7200 TIP 435328 5085 \N \N 6040411 2025-03-19 21:43:36.725 2025-03-19 21:43:36.725 800 FEE 435328 17042 \N \N 6040412 2025-03-19 21:43:36.725 2025-03-19 21:43:36.725 7200 TIP 435328 21242 \N \N 6040417 2025-03-19 21:43:38.077 2025-03-19 21:43:38.077 800 FEE 435328 1145 \N \N 6040418 2025-03-19 21:43:38.077 2025-03-19 21:43:38.077 7200 TIP 435328 679 \N \N 6040426 2025-03-19 21:43:39.84 2025-03-19 21:43:39.84 800 FEE 435328 17221 \N \N 6040427 2025-03-19 21:43:39.84 2025-03-19 21:43:39.84 7200 TIP 435328 13249 \N \N 6040430 2025-03-19 21:44:09.733 2025-03-19 21:44:09.733 10000 FEE 435812 8796 \N \N 6040431 2025-03-19 21:44:09.733 2025-03-19 21:44:09.733 90000 TIP 435812 16950 \N \N 6040471 2025-03-19 21:57:56.556 2025-03-19 21:57:56.556 1000 FEE 435898 12245 \N \N 6040489 2025-03-19 22:01:05.976 2025-03-19 22:01:05.976 1000 FEE 435901 12368 \N \N 6040494 2025-03-19 22:03:02.092 2025-03-19 22:03:02.092 2100 FEE 435847 21824 \N \N 6040495 2025-03-19 22:03:02.092 2025-03-19 22:03:02.092 18900 TIP 435847 660 \N \N 6040499 2025-03-19 22:04:02.581 2025-03-19 22:04:02.581 100 FEE 435850 15386 \N \N 6040500 2025-03-19 22:04:02.581 2025-03-19 22:04:02.581 900 TIP 435850 2347 \N \N 6040508 2025-03-19 22:08:00.759 2025-03-19 22:08:00.759 10000 FEE 435903 1745 \N \N 6040511 2025-03-19 22:09:56.967 2025-03-19 22:09:56.967 1000 FEE 435904 21526 \N \N 6040567 2025-03-19 22:17:30.657 2025-03-19 22:17:30.657 2100 FEE 435847 7827 \N \N 6040568 2025-03-19 22:17:30.657 2025-03-19 22:17:30.657 18900 TIP 435847 15978 \N \N 6040597 2025-03-19 22:18:25.797 2025-03-19 22:18:25.797 2100 FEE 435805 12609 \N \N 6040598 2025-03-19 22:18:25.797 2025-03-19 22:18:25.797 18900 TIP 435805 5519 \N \N 6040624 2025-03-19 22:30:02.405 2025-03-19 22:30:02.405 100000 FEE 435914 2330 \N \N 6040668 2025-03-19 22:41:41.393 2025-03-19 22:41:41.393 10000 FEE 435916 736 \N \N 6040679 2025-03-19 22:42:08.834 2025-03-19 22:42:08.834 1000 FEE 434163 16998 \N \N 6040680 2025-03-19 22:42:08.834 2025-03-19 22:42:08.834 9000 TIP 434163 5195 \N \N 6040700 2025-03-19 22:45:26.533 2025-03-19 22:45:26.533 12800 FEE 435823 951 \N \N 6040701 2025-03-19 22:45:26.533 2025-03-19 22:45:26.533 115200 TIP 435823 21060 \N \N 6040705 2025-03-19 22:46:00.238 2025-03-19 22:46:00.238 1000 FEE 435923 18321 \N \N 6040736 2025-03-19 22:48:57.212 2025-03-19 22:48:57.212 12800 FEE 435125 15100 \N \N 6143258 2025-03-28 09:44:08.094 2025-03-28 09:44:08.094 9000 TIP 447128 3979 \N \N 6143259 2025-03-28 09:44:10.86 2025-03-28 09:44:10.86 1000 FEE 447128 21269 \N \N 6143260 2025-03-28 09:44:10.86 2025-03-28 09:44:10.86 9000 TIP 447128 16284 \N \N 6143268 2025-03-28 09:44:22.132 2025-03-28 09:44:22.132 1500 FEE 447133 13574 \N \N 6143269 2025-03-28 09:44:22.132 2025-03-28 09:44:22.132 13500 TIP 447133 6421 \N \N 6143300 2025-03-28 09:46:52.427 2025-03-28 09:46:52.427 1000 FEE 447034 10490 \N \N 6143301 2025-03-28 09:46:52.427 2025-03-28 09:46:52.427 9000 TIP 447034 20799 \N \N 6143311 2025-03-28 09:48:54.503 2025-03-28 09:48:54.503 500 FEE 447121 16839 \N \N 6143312 2025-03-28 09:48:54.503 2025-03-28 09:48:54.503 4500 TIP 447121 10493 \N \N 6143319 2025-03-28 09:49:07.606 2025-03-28 09:49:07.606 2100 FEE 447087 18923 \N \N 6143320 2025-03-28 09:49:07.606 2025-03-28 09:49:07.606 18900 TIP 447087 17494 \N \N 6143374 2025-03-28 09:53:45.409 2025-03-28 09:53:45.409 2100 FEE 447134 5806 \N \N 6143375 2025-03-28 09:53:45.409 2025-03-28 09:53:45.409 18900 TIP 447134 21647 \N \N 6143393 2025-03-28 09:55:35.489 2025-03-28 09:55:35.489 300 FEE 446965 13467 \N \N 6143394 2025-03-28 09:55:35.489 2025-03-28 09:55:35.489 2700 TIP 446965 21033 \N \N 6143421 2025-03-28 09:55:38.632 2025-03-28 09:55:38.632 300 FEE 446965 20691 \N \N 6143422 2025-03-28 09:55:38.632 2025-03-28 09:55:38.632 2700 TIP 446965 1773 \N \N 6143469 2025-03-28 09:57:09.969 2025-03-28 09:57:09.969 2500 FEE 447153 21810 \N \N 6143470 2025-03-28 09:57:09.969 2025-03-28 09:57:09.969 22500 TIP 447153 13216 \N \N 6143484 2025-03-28 10:00:52.63 2025-03-28 10:00:52.63 100 FEE 447119 17713 \N \N 6143485 2025-03-28 10:00:52.63 2025-03-28 10:00:52.63 900 TIP 447119 20490 \N \N 6143486 2025-03-28 10:00:53.253 2025-03-28 10:00:53.253 100 FEE 447119 16124 \N \N 6143487 2025-03-28 10:00:53.253 2025-03-28 10:00:53.253 900 TIP 447119 21389 \N \N 6143511 2025-03-28 10:01:56.552 2025-03-28 10:01:56.552 1000 POLL 446942 1273 \N \N 6143524 2025-03-28 10:04:14.86 2025-03-28 10:04:14.86 100000 FEE 447162 7558 \N \N 6143528 2025-03-28 10:04:24.976 2025-03-28 10:04:24.976 1000 FEE 447163 15045 \N \N 6143529 2025-03-28 10:04:24.976 2025-03-28 10:04:24.976 9000 TIP 447163 15337 \N \N 6143562 2025-03-28 10:08:34.784 2025-03-28 10:08:34.784 1000 FEE 447168 15624 \N \N 6143563 2025-03-28 10:08:57.417 2025-03-28 10:08:57.417 6900 FEE 447164 15577 \N \N 6143564 2025-03-28 10:08:57.417 2025-03-28 10:08:57.417 62100 TIP 447164 13566 \N \N 6143571 2025-03-28 10:09:44.025 2025-03-28 10:09:44.025 6900 FEE 446358 19494 \N \N 6143572 2025-03-28 10:09:44.025 2025-03-28 10:09:44.025 62100 TIP 446358 4345 \N \N 6143621 2025-03-28 10:13:50.802 2025-03-28 10:13:50.802 1000 FEE 447073 1354 \N \N 6143622 2025-03-28 10:13:50.802 2025-03-28 10:13:50.802 9000 TIP 447073 11164 \N \N 6143624 2025-03-28 10:14:46.724 2025-03-28 10:14:46.724 10000 DONT_LIKE_THIS 447108 16432 \N \N 6143637 2025-03-28 10:18:40.136 2025-03-28 10:18:40.136 1000 FEE 447169 20597 \N \N 6143638 2025-03-28 10:18:40.136 2025-03-28 10:18:40.136 9000 TIP 447169 21455 \N \N 6143645 2025-03-28 10:19:10.967 2025-03-28 10:19:10.967 10000 FEE 446575 14489 \N \N 6143646 2025-03-28 10:19:10.967 2025-03-28 10:19:10.967 90000 TIP 446575 16353 \N \N 6143665 2025-03-28 10:22:29.461 2025-03-28 10:22:29.461 1000 FEE 446962 683 \N \N 6143666 2025-03-28 10:22:29.461 2025-03-28 10:22:29.461 9000 TIP 446962 11714 \N \N 6143667 2025-03-28 10:22:43.608 2025-03-28 10:22:43.608 1000 FEE 447181 9331 \N \N 6143668 2025-03-28 10:22:45.607 2025-03-28 10:22:45.607 1000 FEE 447182 18423 \N \N 6143681 2025-03-28 10:27:06.107 2025-03-28 10:27:06.107 2100 FEE 447143 19655 \N \N 6143682 2025-03-28 10:27:06.107 2025-03-28 10:27:06.107 18900 TIP 447143 17218 \N \N 6143690 2025-03-28 10:28:36.157 2025-03-28 10:28:36.157 1000 FEE 446954 16387 \N \N 6143691 2025-03-28 10:28:36.157 2025-03-28 10:28:36.157 9000 TIP 446954 19446 \N \N 6143704 2025-03-28 10:30:03.796 2025-03-28 10:30:03.796 800 FEE 446971 7510 \N \N 6143705 2025-03-28 10:30:03.796 2025-03-28 10:30:03.796 7200 TIP 446971 21522 \N \N 6143717 2025-03-28 10:31:44.054 2025-03-28 10:31:44.054 1000 FEE 447191 951 \N \N 6143740 2025-03-28 10:33:33.681 2025-03-28 10:33:33.681 900 FEE 446683 15045 \N \N 6143741 2025-03-28 10:33:33.681 2025-03-28 10:33:33.681 8100 TIP 446683 21578 \N \N 6143754 2025-03-28 10:34:04.776 2025-03-28 10:34:04.776 9000 FEE 447013 1729 \N \N 6143755 2025-03-28 10:34:04.776 2025-03-28 10:34:04.776 81000 TIP 447013 18601 \N \N 6143801 2025-03-28 10:43:21.86 2025-03-28 10:43:21.86 0 FEE 447200 4027 \N \N 6143815 2025-03-28 10:46:28.305 2025-03-28 10:46:28.305 1000 FEE 446945 14705 \N \N 6143816 2025-03-28 10:46:28.305 2025-03-28 10:46:28.305 9000 TIP 446945 20655 \N \N 6143854 2025-03-28 10:54:45.382 2025-03-28 10:54:45.382 1000 FEE 447213 18412 \N \N 6143870 2025-03-28 10:56:33.044 2025-03-28 10:56:33.044 500 FEE 447100 20614 \N \N 6143871 2025-03-28 10:56:33.044 2025-03-28 10:56:33.044 4500 TIP 447100 20606 \N \N 6143873 2025-03-28 10:57:44.654 2025-03-28 10:57:44.654 1000 FEE 447216 20613 \N \N 6143878 2025-03-28 10:57:48.661 2025-03-28 10:57:48.661 1000 FEE 447213 9171 \N \N 6143879 2025-03-28 10:57:48.661 2025-03-28 10:57:48.661 9000 TIP 447213 3478 \N \N 6143913 2025-03-28 11:00:36.71 2025-03-28 11:00:36.71 21000 FEE 447221 16336 \N \N 6143918 2025-03-28 11:01:09.177 2025-03-28 11:01:09.177 0 FEE 447218 8841 \N \N 6143921 2025-03-28 11:01:22.106 2025-03-28 11:01:22.106 1100 FEE 447151 21672 \N \N 6143922 2025-03-28 11:01:22.106 2025-03-28 11:01:22.106 9900 TIP 447151 12721 \N \N 6143943 2025-03-28 11:02:41.282 2025-03-28 11:02:41.282 0 FEE 447218 980 \N \N 6143974 2025-03-28 11:04:59.059 2025-03-28 11:04:59.059 1700 FEE 447225 21498 \N \N 6143975 2025-03-28 11:04:59.059 2025-03-28 11:04:59.059 15300 TIP 447225 798 \N \N 6143982 2025-03-28 11:05:01.652 2025-03-28 11:05:01.652 1700 FEE 447225 10549 \N \N 6143983 2025-03-28 11:05:01.652 2025-03-28 11:05:01.652 15300 TIP 447225 2111 \N \N 6143984 2025-03-28 11:05:02.078 2025-03-28 11:05:02.078 1700 FEE 447225 13903 \N \N 6143985 2025-03-28 11:05:02.078 2025-03-28 11:05:02.078 15300 TIP 447225 21401 \N \N 6144026 2025-03-28 11:07:12.118 2025-03-28 11:07:12.118 1000 FEE 447225 21356 \N \N 6039425 2025-03-19 18:11:13.285 2025-03-19 18:11:13.285 4000 FEE 435783 902 \N \N 6039426 2025-03-19 18:11:13.285 2025-03-19 18:11:13.285 36000 TIP 435783 20058 \N \N 6039450 2025-03-19 18:17:08.937 2025-03-19 18:17:08.937 5000 FEE 435707 20563 \N \N 6039451 2025-03-19 18:17:08.937 2025-03-19 18:17:08.937 45000 TIP 435707 21334 \N \N 6039465 2025-03-19 18:19:04.537 2025-03-19 18:19:04.537 5000 FEE 434902 21794 \N \N 6039466 2025-03-19 18:19:04.537 2025-03-19 18:19:04.537 45000 TIP 434902 16950 \N \N 6039470 2025-03-19 18:19:59.462 2025-03-19 18:19:59.462 5000 FEE 435630 20073 \N \N 6039471 2025-03-19 18:19:59.462 2025-03-19 18:19:59.462 45000 TIP 435630 989 \N \N 6039489 2025-03-19 18:20:26.871 2025-03-19 18:20:26.871 500 FEE 435242 18441 \N \N 6039490 2025-03-19 18:20:26.871 2025-03-19 18:20:26.871 4500 TIP 435242 3478 \N \N 6039535 2025-03-19 18:24:37.404 2025-03-19 18:24:37.404 5000 FEE 435260 21349 \N \N 6039536 2025-03-19 18:24:37.404 2025-03-19 18:24:37.404 45000 TIP 435260 910 \N \N 6039537 2025-03-19 18:24:46.867 2025-03-19 18:24:46.867 5000 FEE 435217 20799 \N \N 6039538 2025-03-19 18:24:46.867 2025-03-19 18:24:46.867 45000 TIP 435217 787 \N \N 6039542 2025-03-19 18:25:08.441 2025-03-19 18:25:08.441 5000 FEE 435746 899 \N \N 6039543 2025-03-19 18:25:08.441 2025-03-19 18:25:08.441 45000 TIP 435746 17798 \N \N 6039586 2025-03-19 18:34:44.514 2025-03-19 18:34:44.514 500 FEE 435378 9833 \N \N 6039587 2025-03-19 18:34:44.514 2025-03-19 18:34:44.514 4500 TIP 435378 13378 \N \N 6039601 2025-03-19 18:36:47.316 2025-03-19 18:36:47.316 500 FEE 435610 650 \N \N 6039602 2025-03-19 18:36:47.316 2025-03-19 18:36:47.316 4500 TIP 435610 937 \N \N 6039611 2025-03-19 18:36:54.704 2025-03-19 18:36:54.704 500 FEE 435596 5776 \N \N 6039612 2025-03-19 18:36:54.704 2025-03-19 18:36:54.704 4500 TIP 435596 20222 \N \N 6039615 2025-03-19 18:36:57.272 2025-03-19 18:36:57.272 500 FEE 435497 16212 \N \N 6039616 2025-03-19 18:36:57.272 2025-03-19 18:36:57.272 4500 TIP 435497 21062 \N \N 6039622 2025-03-19 18:38:09.435 2025-03-19 18:38:09.435 1000 FEE 435801 18412 \N \N 6039631 2025-03-19 18:39:03.741 2025-03-19 18:39:03.741 1000 FEE 435803 696 \N \N 6039666 2025-03-19 18:43:14.798 2025-03-19 18:43:14.798 1000 FEE 435046 980 \N \N 6039667 2025-03-19 18:43:14.798 2025-03-19 18:43:14.798 9000 TIP 435046 622 \N \N 6039673 2025-03-19 18:43:42.254 2025-03-19 18:43:42.254 1000 FEE 435580 6777 \N \N 6039674 2025-03-19 18:43:42.254 2025-03-19 18:43:42.254 9000 TIP 435580 12821 \N \N 6039741 2025-03-19 18:56:05.572 2025-03-19 18:56:05.572 1000 POLL 435805 798 \N \N 6039789 2025-03-19 19:04:18.144 2025-03-19 19:04:18.144 2600 FEE 435814 12819 \N \N 6039790 2025-03-19 19:04:18.144 2025-03-19 19:04:18.144 23400 TIP 435814 4166 \N \N 6039831 2025-03-19 19:12:16.608 2025-03-19 19:12:16.608 1000 FEE 435819 5308 \N \N 6039860 2025-03-19 19:18:10.562 2025-03-19 19:18:10.562 1000 FEE 435824 21064 \N \N 6039885 2025-03-19 19:29:41.47 2025-03-19 19:29:41.47 3300 FEE 435610 20245 \N \N 6039886 2025-03-19 19:29:41.47 2025-03-19 19:29:41.47 29700 TIP 435610 18430 \N \N 6039900 2025-03-19 19:32:55.019 2025-03-19 19:32:55.019 4000 FEE 435812 620 \N \N 6039901 2025-03-19 19:32:55.019 2025-03-19 19:32:55.019 36000 TIP 435812 13162 \N \N 6039902 2025-03-19 19:33:00.299 2025-03-19 19:33:00.299 3000 FEE 435821 5825 \N \N 6039903 2025-03-19 19:33:00.299 2025-03-19 19:33:00.299 27000 TIP 435821 19463 \N \N 6039910 2025-03-19 19:33:15.268 2025-03-19 19:33:15.268 1000 FEE 435292 15719 \N \N 6039911 2025-03-19 19:33:15.268 2025-03-19 19:33:15.268 9000 TIP 435292 21540 \N \N 6039913 2025-03-19 19:33:21.664 2025-03-19 19:33:21.664 1000 FEE 434978 1002 \N \N 6039914 2025-03-19 19:33:21.664 2025-03-19 19:33:21.664 9000 TIP 434978 12245 \N \N 6039921 2025-03-19 19:33:56.032 2025-03-19 19:33:56.032 10000 FEE 435679 13076 \N \N 6039922 2025-03-19 19:33:56.032 2025-03-19 19:33:56.032 90000 TIP 435679 18528 \N \N 6039926 2025-03-19 19:34:16.683 2025-03-19 19:34:16.683 4000 FEE 435695 713 \N \N 6039927 2025-03-19 19:34:16.683 2025-03-19 19:34:16.683 36000 TIP 435695 20019 \N \N 6039934 2025-03-19 19:35:09.281 2025-03-19 19:35:09.281 1000 FEE 435328 20829 \N \N 6039935 2025-03-19 19:35:09.281 2025-03-19 19:35:09.281 9000 TIP 435328 8729 \N \N 6039938 2025-03-19 19:35:09.512 2025-03-19 19:35:09.512 1000 FEE 435610 21518 \N \N 6039939 2025-03-19 19:35:09.512 2025-03-19 19:35:09.512 9000 TIP 435610 3745 \N \N 6039940 2025-03-19 19:35:10.545 2025-03-19 19:35:10.545 1000 FEE 435488 1692 \N \N 6039941 2025-03-19 19:35:10.545 2025-03-19 19:35:10.545 9000 TIP 435488 21631 \N \N 6039945 2025-03-19 19:35:34.505 2025-03-19 19:35:34.505 2100 FEE 435610 18269 \N \N 6039946 2025-03-19 19:35:34.505 2025-03-19 19:35:34.505 18900 TIP 435610 21833 \N \N 6039957 2025-03-19 19:36:31.771 2025-03-19 19:36:31.771 1000 FEE 435196 21734 \N \N 6039958 2025-03-19 19:36:31.771 2025-03-19 19:36:31.771 9000 TIP 435196 8729 \N \N 6039959 2025-03-19 19:36:43.03 2025-03-19 19:36:43.03 7700 FEE 435806 9655 \N \N 6039960 2025-03-19 19:36:43.03 2025-03-19 19:36:43.03 69300 TIP 435806 21701 \N \N 6039983 2025-03-19 19:43:08.58 2025-03-19 19:43:08.58 1000 FEE 435648 21216 \N \N 6039984 2025-03-19 19:43:08.58 2025-03-19 19:43:08.58 9000 TIP 435648 7668 \N \N 6039998 2025-03-19 19:47:27.035 2025-03-19 19:47:27.035 1000 FEE 435832 18313 \N \N 6040010 2025-03-19 19:53:52.823 2025-03-19 19:53:52.823 3300 FEE 435657 1602 \N \N 6040011 2025-03-19 19:53:52.823 2025-03-19 19:53:52.823 29700 TIP 435657 21571 \N \N 6040022 2025-03-19 19:56:20.308 2025-03-19 19:56:20.308 1000 FEE 435837 1064 \N \N 6040042 2025-03-19 20:06:02.506 2025-03-19 20:06:02.506 1000 FEE 435842 10270 \N \N 6040053 2025-03-19 20:13:15.483 2025-03-19 20:13:15.483 1000 FEE 435845 10979 \N \N 6040073 2025-03-19 20:22:10.365 2025-03-19 20:22:10.365 100 FEE 435776 977 \N \N 6040074 2025-03-19 20:22:10.365 2025-03-19 20:22:10.365 900 TIP 435776 718 \N \N 6040137 2025-03-19 20:46:35.462 2025-03-19 20:46:35.462 21000 FEE 435864 18114 \N \N 6040158 2025-03-19 20:52:47.759 2025-03-19 20:52:47.759 1000 FEE 435246 20137 \N \N 6040159 2025-03-19 20:52:47.759 2025-03-19 20:52:47.759 9000 TIP 435246 21710 \N \N 6040160 2025-03-19 20:52:48.4 2025-03-19 20:52:48.4 1000 FEE 435246 20190 \N \N 6040161 2025-03-19 20:52:48.4 2025-03-19 20:52:48.4 9000 TIP 435246 965 \N \N 6040171 2025-03-19 20:54:46.635 2025-03-19 20:54:46.635 400 FEE 435557 21389 \N \N 6040172 2025-03-19 20:54:46.635 2025-03-19 20:54:46.635 3600 TIP 435557 7809 \N \N 6040174 2025-03-19 20:55:45.746 2025-03-19 20:55:45.746 1000 FEE 435867 3439 \N \N 6040204 2025-03-19 21:04:45.917 2025-03-19 21:04:45.917 100 FEE 435242 20680 \N \N 6040205 2025-03-19 21:04:45.917 2025-03-19 21:04:45.917 900 TIP 435242 15336 \N \N 6040227 2025-03-19 21:05:36.117 2025-03-19 21:05:36.117 300 FEE 435844 6741 \N \N 6040228 2025-03-19 21:05:36.117 2025-03-19 21:05:36.117 2700 TIP 435844 14657 \N \N 6040246 2025-03-19 21:07:54.983 2025-03-19 21:07:54.983 100 FEE 435217 679 \N \N 6040247 2025-03-19 21:07:54.983 2025-03-19 21:07:54.983 900 TIP 435217 1959 \N \N 6040268 2025-03-19 21:18:21.33 2025-03-19 21:18:21.33 1000 FEE 435242 5173 \N \N 6040269 2025-03-19 21:18:21.33 2025-03-19 21:18:21.33 9000 TIP 435242 5377 \N \N 6040274 2025-03-19 21:19:48.898 2025-03-19 21:19:48.898 1000 FEE 433394 17046 \N \N 6040275 2025-03-19 21:19:48.898 2025-03-19 21:19:48.898 9000 TIP 433394 13767 \N \N 6040288 2025-03-19 21:24:06.247 2025-03-19 21:24:06.247 1000 FEE 435628 12261 \N \N 6040289 2025-03-19 21:24:06.247 2025-03-19 21:24:06.247 9000 TIP 435628 1237 \N \N 6040345 2025-03-19 21:39:12.949 2025-03-19 21:39:12.949 9900 FEE 435805 9200 \N \N 6040346 2025-03-19 21:39:12.949 2025-03-19 21:39:12.949 89100 TIP 435805 17094 \N \N 6040379 2025-03-19 21:40:28.017 2025-03-19 21:40:28.017 9000 FEE 430411 979 \N \N 6040380 2025-03-19 21:40:28.017 2025-03-19 21:40:28.017 81000 TIP 430411 2232 \N \N 6040401 2025-03-19 21:43:34.693 2025-03-19 21:43:34.693 800 FEE 435328 9363 \N \N 6040402 2025-03-19 21:43:34.693 2025-03-19 21:43:34.693 7200 TIP 435328 12561 \N \N 6040421 2025-03-19 21:43:38.43 2025-03-19 21:43:38.43 1000 FEE 435888 651 \N \N 6040424 2025-03-19 21:43:39.099 2025-03-19 21:43:39.099 800 FEE 435328 21514 \N \N 6040425 2025-03-19 21:43:39.099 2025-03-19 21:43:39.099 7200 TIP 435328 21791 \N \N 6040428 2025-03-19 21:43:40.375 2025-03-19 21:43:40.375 800 FEE 435328 17727 \N \N 6040429 2025-03-19 21:43:40.375 2025-03-19 21:43:40.375 7200 TIP 435328 15091 \N \N 6040458 2025-03-19 21:53:38.536 2025-03-19 21:53:38.536 1000 FEE 435895 20555 \N \N 6040470 2025-03-19 21:57:28.892 2025-03-19 21:57:28.892 1000 FEE 435897 19463 \N \N 6040479 2025-03-19 21:59:40.73 2025-03-19 21:59:40.73 5000 FEE 435765 17535 \N \N 6040480 2025-03-19 21:59:40.73 2025-03-19 21:59:40.73 45000 TIP 435765 20912 \N \N 6143272 2025-03-28 09:44:58.323 2025-03-28 09:44:58.323 1000 FEE 447036 17147 \N \N 6143273 2025-03-28 09:44:58.323 2025-03-28 09:44:58.323 9000 TIP 447036 951 \N \N 6143285 2025-03-28 09:46:13.994 2025-03-28 09:46:13.994 1000 FEE 446937 18930 \N \N 6143286 2025-03-28 09:46:13.994 2025-03-28 09:46:13.994 9000 TIP 446937 20825 \N \N 6143288 2025-03-28 09:46:30.518 2025-03-28 09:46:30.518 1000 FEE 447136 20687 \N \N 6143294 2025-03-28 09:46:36.322 2025-03-28 09:46:36.322 1000 FEE 447123 11515 \N \N 6143295 2025-03-28 09:46:36.322 2025-03-28 09:46:36.322 9000 TIP 447123 20562 \N \N 6143298 2025-03-28 09:46:36.881 2025-03-28 09:46:36.881 1000 FEE 447123 2652 \N \N 6143299 2025-03-28 09:46:36.881 2025-03-28 09:46:36.881 9000 TIP 447123 16354 \N \N 6143315 2025-03-28 09:49:00.567 2025-03-28 09:49:00.567 2100 FEE 447108 11967 \N \N 6143316 2025-03-28 09:49:00.567 2025-03-28 09:49:00.567 18900 TIP 447108 19812 \N \N 6143326 2025-03-28 09:49:15.078 2025-03-28 09:49:15.078 1000 FEE 447140 1615 \N \N 6143346 2025-03-28 09:50:47.302 2025-03-28 09:50:47.302 1000 FEE 447139 1236 \N \N 6143347 2025-03-28 09:50:47.302 2025-03-28 09:50:47.302 9000 TIP 447139 16680 \N \N 6143349 2025-03-28 09:51:15.886 2025-03-28 09:51:15.886 2100 FEE 447142 17976 \N \N 6143350 2025-03-28 09:51:15.886 2025-03-28 09:51:15.886 18900 TIP 447142 5809 \N \N 6143361 2025-03-28 09:52:52.356 2025-03-28 09:52:52.356 21000 FEE 447148 9695 \N \N 6143370 2025-03-28 09:53:30.141 2025-03-28 09:53:30.141 7600 FEE 446688 20969 \N \N 6143371 2025-03-28 09:53:30.141 2025-03-28 09:53:30.141 68400 TIP 446688 15273 \N \N 6143387 2025-03-28 09:54:41.033 2025-03-28 09:54:41.033 2100 FEE 447147 9354 \N \N 6143388 2025-03-28 09:54:41.033 2025-03-28 09:54:41.033 18900 TIP 447147 17226 \N \N 6143399 2025-03-28 09:55:36.169 2025-03-28 09:55:36.169 300 FEE 446965 21369 \N \N 6143400 2025-03-28 09:55:36.169 2025-03-28 09:55:36.169 2700 TIP 446965 11164 \N \N 6143401 2025-03-28 09:55:36.375 2025-03-28 09:55:36.375 300 FEE 446965 18011 \N \N 6143402 2025-03-28 09:55:36.375 2025-03-28 09:55:36.375 2700 TIP 446965 9332 \N \N 6143405 2025-03-28 09:55:36.837 2025-03-28 09:55:36.837 300 FEE 446965 16259 \N \N 6143406 2025-03-28 09:55:36.837 2025-03-28 09:55:36.837 2700 TIP 446965 21485 \N \N 6143419 2025-03-28 09:55:38.39 2025-03-28 09:55:38.39 300 FEE 446965 802 \N \N 6143420 2025-03-28 09:55:38.39 2025-03-28 09:55:38.39 2700 TIP 446965 5776 \N \N 6143431 2025-03-28 09:55:40.175 2025-03-28 09:55:40.175 1000 FEE 447153 20509 \N \N 6143463 2025-03-28 09:56:22.679 2025-03-28 09:56:22.679 1000 FEE 447154 18529 \N \N 6143496 2025-03-28 10:01:09.923 2025-03-28 10:01:09.923 1000 FEE 447159 17533 \N \N 6143497 2025-03-28 10:01:09.923 2025-03-28 10:01:09.923 9000 TIP 447159 17147 \N \N 6143502 2025-03-28 10:01:11.677 2025-03-28 10:01:11.677 1000 FEE 447159 13399 \N \N 6143503 2025-03-28 10:01:11.677 2025-03-28 10:01:11.677 9000 TIP 447159 7983 \N \N 6143519 2025-03-28 10:03:22.513 2025-03-28 10:03:22.513 100 FEE 446547 1713 \N \N 6143520 2025-03-28 10:03:22.513 2025-03-28 10:03:22.513 900 TIP 446547 20657 \N \N 6143533 2025-03-28 10:05:32.751 2025-03-28 10:05:32.751 1000 FEE 447164 2196 \N \N 6143538 2025-03-28 10:06:04.548 2025-03-28 10:06:04.548 1000 FEE 447164 17183 \N \N 6143539 2025-03-28 10:06:04.548 2025-03-28 10:06:04.548 9000 TIP 447164 21379 \N \N 6143547 2025-03-28 10:06:26.445 2025-03-28 10:06:26.445 1000 FEE 447164 761 \N \N 6143548 2025-03-28 10:06:26.445 2025-03-28 10:06:26.445 9000 TIP 447164 675 \N \N 6143575 2025-03-28 10:09:44.936 2025-03-28 10:09:44.936 6900 FEE 446358 18188 \N \N 6143576 2025-03-28 10:09:44.936 2025-03-28 10:09:44.936 62100 TIP 446358 18727 \N \N 6143597 2025-03-28 10:10:59.36 2025-03-28 10:10:59.36 90000 FEE 446774 17710 \N \N 6143598 2025-03-28 10:10:59.36 2025-03-28 10:10:59.36 810000 TIP 446774 6777 \N \N 6143656 2025-03-28 10:20:59.399 2025-03-28 10:20:59.399 1000 FEE 447179 21228 \N \N 6143696 2025-03-28 10:28:52.025 2025-03-28 10:28:52.025 1000 FEE 447186 15115 \N \N 6143712 2025-03-28 10:30:29.467 2025-03-28 10:30:29.467 21000 DONT_LIKE_THIS 447049 21541 \N \N 6143722 2025-03-28 10:32:19.549 2025-03-28 10:32:19.549 1100 FEE 447177 15180 \N \N 6143723 2025-03-28 10:32:19.549 2025-03-28 10:32:19.549 9900 TIP 447177 965 \N \N 6143734 2025-03-28 10:33:32.595 2025-03-28 10:33:32.595 100 FEE 447165 13100 \N \N 6143735 2025-03-28 10:33:32.595 2025-03-28 10:33:32.595 900 TIP 447165 11561 \N \N 6143760 2025-03-28 10:34:33.569 2025-03-28 10:34:33.569 900 FEE 447192 19005 \N \N 6143761 2025-03-28 10:34:33.569 2025-03-28 10:34:33.569 8100 TIP 447192 4388 \N \N 6143774 2025-03-28 10:37:09.693 2025-03-28 10:37:09.693 100 FEE 447184 13132 \N \N 6143775 2025-03-28 10:37:09.693 2025-03-28 10:37:09.693 900 TIP 447184 4395 \N \N 6143779 2025-03-28 10:38:33.45 2025-03-28 10:38:33.45 1000 FEE 447198 726 \N \N 6143783 2025-03-28 10:39:31.247 2025-03-28 10:39:31.247 1000 FEE 447199 13143 \N \N 6143799 2025-03-28 10:42:47.274 2025-03-28 10:42:47.274 1000 FEE 447205 695 \N \N 6143827 2025-03-28 10:49:01.1 2025-03-28 10:49:01.1 1000 FEE 447208 19637 \N \N 6143835 2025-03-28 10:50:00.053 2025-03-28 10:50:00.053 100 FEE 446900 20243 \N \N 6143836 2025-03-28 10:50:00.053 2025-03-28 10:50:00.053 900 TIP 446900 6471 \N \N 6143847 2025-03-28 10:54:01.956 2025-03-28 10:54:01.956 5000 FEE 446964 6687 \N \N 6143848 2025-03-28 10:54:01.956 2025-03-28 10:54:01.956 45000 TIP 446964 14278 \N \N 6143849 2025-03-28 10:54:02.311 2025-03-28 10:54:02.311 5000 FEE 446964 5825 \N \N 6143850 2025-03-28 10:54:02.311 2025-03-28 10:54:02.311 45000 TIP 446964 5308 \N \N 6143868 2025-03-28 10:56:04.339 2025-03-28 10:56:04.339 1000 POLL 446783 21734 \N \N 6143880 2025-03-28 10:57:48.923 2025-03-28 10:57:48.923 1000 FEE 447213 4459 \N \N 6143881 2025-03-28 10:57:48.923 2025-03-28 10:57:48.923 9000 TIP 447213 5527 \N \N 6143900 2025-03-28 10:59:38.016 2025-03-28 10:59:38.016 1000 FEE 447219 1307 \N \N 6143903 2025-03-28 10:59:40.703 2025-03-28 10:59:40.703 1000 FEE 447199 20636 \N \N 6143904 2025-03-28 10:59:40.703 2025-03-28 10:59:40.703 9000 TIP 447199 5519 \N \N 6143950 2025-03-28 11:02:53.657 2025-03-28 11:02:53.657 7600 FEE 446945 17291 \N \N 6143951 2025-03-28 11:02:53.657 2025-03-28 11:02:53.657 68400 TIP 446945 15075 \N \N 6143959 2025-03-28 11:03:38.962 2025-03-28 11:03:38.962 0 FEE 447223 1717 \N \N 6143962 2025-03-28 11:04:19.25 2025-03-28 11:04:19.25 0 FEE 447218 20754 \N \N 6143966 2025-03-28 11:04:40.451 2025-03-28 11:04:40.451 21100 FEE 446937 1046 \N \N 6039429 2025-03-19 18:12:18.256 2025-03-19 18:12:18.256 2000 FEE 435679 1236 \N \N 6039430 2025-03-19 18:12:18.256 2025-03-19 18:12:18.256 18000 TIP 435679 3706 \N \N 6039431 2025-03-19 18:12:20.076 2025-03-19 18:12:20.076 2000 FEE 435679 12490 \N \N 6039432 2025-03-19 18:12:20.076 2025-03-19 18:12:20.076 18000 TIP 435679 19637 \N \N 6039445 2025-03-19 18:16:21.469 2025-03-19 18:16:21.469 1000 FEE 435786 794 \N \N 6039446 2025-03-19 18:16:39.632 2025-03-19 18:16:39.632 5000 FEE 434574 12821 \N \N 6039447 2025-03-19 18:16:39.632 2025-03-19 18:16:39.632 45000 TIP 434574 10096 \N \N 6039448 2025-03-19 18:17:03.862 2025-03-19 18:17:03.862 5000 FEE 435687 1478 \N \N 6039449 2025-03-19 18:17:03.862 2025-03-19 18:17:03.862 45000 TIP 435687 9351 \N \N 6039454 2025-03-19 18:17:12.347 2025-03-19 18:17:12.347 1000 FEE 435787 20562 \N \N 6039499 2025-03-19 18:20:57.973 2025-03-19 18:20:57.973 2100 FEE 435171 17541 \N \N 6039500 2025-03-19 18:20:57.973 2025-03-19 18:20:57.973 18900 TIP 435171 9366 \N \N 6039519 2025-03-19 18:22:06.238 2025-03-19 18:22:06.238 5000 FEE 435614 21287 \N \N 6039520 2025-03-19 18:22:06.238 2025-03-19 18:22:06.238 45000 TIP 435614 16145 \N \N 6039562 2025-03-19 18:33:32.217 2025-03-19 18:33:32.217 500 FEE 435618 1959 \N \N 6039563 2025-03-19 18:33:32.217 2025-03-19 18:33:32.217 4500 TIP 435618 13566 \N \N 6039564 2025-03-19 18:33:33.933 2025-03-19 18:33:33.933 500 FEE 435487 20490 \N \N 6039565 2025-03-19 18:33:33.933 2025-03-19 18:33:33.933 4500 TIP 435487 2338 \N \N 6039589 2025-03-19 18:34:49.794 2025-03-19 18:34:49.794 500 FEE 435382 20647 \N \N 6039590 2025-03-19 18:34:49.794 2025-03-19 18:34:49.794 4500 TIP 435382 3304 \N \N 6039595 2025-03-19 18:35:02.649 2025-03-19 18:35:02.649 3000 FEE 435797 14472 \N \N 6039596 2025-03-19 18:35:02.649 2025-03-19 18:35:02.649 27000 TIP 435797 652 \N \N 6039603 2025-03-19 18:36:47.343 2025-03-19 18:36:47.343 500 FEE 435488 6602 \N \N 6039604 2025-03-19 18:36:47.343 2025-03-19 18:36:47.343 4500 TIP 435488 1465 \N \N 6039613 2025-03-19 18:36:56.284 2025-03-19 18:36:56.284 500 FEE 435690 1474 \N \N 6039614 2025-03-19 18:36:56.284 2025-03-19 18:36:56.284 4500 TIP 435690 651 \N \N 6039617 2025-03-19 18:36:58.31 2025-03-19 18:36:58.31 500 FEE 435261 17638 \N \N 6039618 2025-03-19 18:36:58.31 2025-03-19 18:36:58.31 4500 TIP 435261 1833 \N \N 6039636 2025-03-19 18:41:00.521 2025-03-19 18:41:00.521 500 FEE 435292 7978 \N \N 6039637 2025-03-19 18:41:00.521 2025-03-19 18:41:00.521 4500 TIP 435292 21139 \N \N 6039651 2025-03-19 18:41:31.941 2025-03-19 18:41:31.941 500 FEE 435509 20479 \N \N 6039652 2025-03-19 18:41:31.941 2025-03-19 18:41:31.941 4500 TIP 435509 5520 \N \N 6039678 2025-03-19 18:44:14.081 2025-03-19 18:44:14.081 1000 FEE 434978 21539 \N \N 6039679 2025-03-19 18:44:14.081 2025-03-19 18:44:14.081 9000 TIP 434978 16594 \N \N 6039704 2025-03-19 18:49:20.432 2025-03-19 18:49:20.432 100000 FEE 435805 15409 \N \N 6039777 2025-03-19 19:03:13.769 2025-03-19 19:03:13.769 1000 FEE 435618 10270 \N \N 6039778 2025-03-19 19:03:13.769 2025-03-19 19:03:13.769 9000 TIP 435618 10611 \N \N 6039784 2025-03-19 19:03:36.934 2025-03-19 19:03:36.934 1000 FEE 435378 4173 \N \N 6039785 2025-03-19 19:03:36.934 2025-03-19 19:03:36.934 9000 TIP 435378 2681 \N \N 6039816 2025-03-19 19:10:55.898 2025-03-19 19:10:55.898 1000 FEE 435818 895 \N \N 6039820 2025-03-19 19:11:27.246 2025-03-19 19:11:27.246 4200 FEE 435410 1717 \N \N 6039821 2025-03-19 19:11:27.246 2025-03-19 19:11:27.246 37800 TIP 435410 9276 \N \N 6039832 2025-03-19 19:12:23.523 2025-03-19 19:12:23.523 2100 FEE 435679 13544 \N \N 6039833 2025-03-19 19:12:23.523 2025-03-19 19:12:23.523 18900 TIP 435679 1012 \N \N 6039839 2025-03-19 19:12:35.003 2025-03-19 19:12:35.003 1000 FEE 435821 9036 \N \N 6039847 2025-03-19 19:14:15.357 2025-03-19 19:14:15.357 10000 FEE 435630 10016 \N \N 6039848 2025-03-19 19:14:15.357 2025-03-19 19:14:15.357 90000 TIP 435630 14650 \N \N 6039875 2025-03-19 19:21:54.827 2025-03-19 19:21:54.827 1000 FEE 435827 4862 \N \N 6039936 2025-03-19 19:35:09.35 2025-03-19 19:35:09.35 1000 FEE 435639 21216 \N \N 6039937 2025-03-19 19:35:09.35 2025-03-19 19:35:09.35 9000 TIP 435639 17046 \N \N 6039947 2025-03-19 19:35:35.129 2025-03-19 19:35:35.129 2100 FEE 435610 2741 \N \N 6039948 2025-03-19 19:35:35.129 2025-03-19 19:35:35.129 18900 TIP 435610 762 \N \N 6039953 2025-03-19 19:35:36.518 2025-03-19 19:35:36.518 2100 FEE 435610 21710 \N \N 6039954 2025-03-19 19:35:36.518 2025-03-19 19:35:36.518 18900 TIP 435610 18068 \N \N 6039988 2025-03-19 19:44:03.978 2025-03-19 19:44:03.978 1000 FEE 435826 19346 \N \N 6039989 2025-03-19 19:44:03.978 2025-03-19 19:44:03.978 9000 TIP 435826 17696 \N \N 6040023 2025-03-19 19:56:42.619 2025-03-19 19:56:42.619 1000 FEE 435795 3392 \N \N 6040024 2025-03-19 19:56:42.619 2025-03-19 19:56:42.619 9000 TIP 435795 21539 \N \N 6040040 2025-03-19 20:05:28.527 2025-03-19 20:05:28.527 2600 FEE 435812 16282 \N \N 6040041 2025-03-19 20:05:28.527 2025-03-19 20:05:28.527 23400 TIP 435812 5519 \N \N 6040057 2025-03-19 20:15:51.489 2025-03-19 20:15:51.489 100000 FEE 435847 16695 \N \N 6040071 2025-03-19 20:22:10.053 2025-03-19 20:22:10.053 100 FEE 435776 13921 \N \N 6040072 2025-03-19 20:22:10.053 2025-03-19 20:22:10.053 900 TIP 435776 866 \N \N 6040077 2025-03-19 20:22:10.7 2025-03-19 20:22:10.7 100 FEE 435776 18270 \N \N 6040078 2025-03-19 20:22:10.7 2025-03-19 20:22:10.7 900 TIP 435776 21072 \N \N 6040081 2025-03-19 20:22:11.547 2025-03-19 20:22:11.547 100 FEE 435776 814 \N \N 6040082 2025-03-19 20:22:11.547 2025-03-19 20:22:11.547 900 TIP 435776 3504 \N \N 6040116 2025-03-19 20:37:11.956 2025-03-19 20:37:11.956 1000 FEE 435242 769 \N \N 6040117 2025-03-19 20:37:11.956 2025-03-19 20:37:11.956 9000 TIP 435242 20381 \N \N 6040135 2025-03-19 20:45:28.672 2025-03-19 20:45:28.672 1000 FEE 435863 1823 \N \N 6040156 2025-03-19 20:52:47.072 2025-03-19 20:52:47.072 1000 FEE 435246 14663 \N \N 6040157 2025-03-19 20:52:47.072 2025-03-19 20:52:47.072 9000 TIP 435246 965 \N \N 6040219 2025-03-19 21:05:34.926 2025-03-19 21:05:34.926 300 FEE 435844 11714 \N \N 6040220 2025-03-19 21:05:34.926 2025-03-19 21:05:34.926 2700 TIP 435844 20099 \N \N 6040223 2025-03-19 21:05:35.225 2025-03-19 21:05:35.225 300 FEE 435844 13767 \N \N 6040224 2025-03-19 21:05:35.225 2025-03-19 21:05:35.225 2700 TIP 435844 17570 \N \N 6040229 2025-03-19 21:05:47.321 2025-03-19 21:05:47.321 100 FEE 435328 12516 \N \N 6040230 2025-03-19 21:05:47.321 2025-03-19 21:05:47.321 900 TIP 435328 716 \N \N 6040250 2025-03-19 21:08:00.061 2025-03-19 21:08:00.061 100 FEE 435217 20812 \N \N 6040251 2025-03-19 21:08:00.061 2025-03-19 21:08:00.061 900 TIP 435217 10291 \N \N 6039433 2025-03-19 18:12:21.966 2025-03-19 18:12:21.966 2000 FEE 435679 12561 \N \N 6039434 2025-03-19 18:12:21.966 2025-03-19 18:12:21.966 18000 TIP 435679 10484 \N \N 6039441 2025-03-19 18:15:32.657 2025-03-19 18:15:32.657 1000 FEE 435785 9537 \N \N 6039464 2025-03-19 18:18:50.936 2025-03-19 18:18:50.936 1000 FEE 435789 21620 \N \N 6039481 2025-03-19 18:20:17.462 2025-03-19 18:20:17.462 500 FEE 435261 4074 \N \N 6039482 2025-03-19 18:20:17.462 2025-03-19 18:20:17.462 4500 TIP 435261 17494 \N \N 6039485 2025-03-19 18:20:18.955 2025-03-19 18:20:18.955 2100 FEE 435639 11164 \N \N 6039486 2025-03-19 18:20:18.955 2025-03-19 18:20:18.955 18900 TIP 435639 20275 \N \N 6039513 2025-03-19 18:21:24.991 2025-03-19 18:21:24.991 5000 FEE 435457 7097 \N \N 6039514 2025-03-19 18:21:24.991 2025-03-19 18:21:24.991 45000 TIP 435457 2513 \N \N 6039532 2025-03-19 18:23:53.587 2025-03-19 18:23:53.587 5000 FEE 435561 2593 \N \N 6039533 2025-03-19 18:23:53.587 2025-03-19 18:23:53.587 45000 TIP 435561 21228 \N \N 6039547 2025-03-19 18:25:57.958 2025-03-19 18:25:57.958 2100 FEE 435137 18930 \N \N 6039548 2025-03-19 18:25:57.958 2025-03-19 18:25:57.958 18900 TIP 435137 18225 \N \N 6039559 2025-03-19 18:33:14.67 2025-03-19 18:33:14.67 2100 FEE 435728 4313 \N \N 6039560 2025-03-19 18:33:14.67 2025-03-19 18:33:14.67 18900 TIP 435728 1723 \N \N 6039585 2025-03-19 18:34:44.278 2025-03-19 18:34:44.278 1000 FEE 435797 716 \N \N 6039593 2025-03-19 18:34:55.402 2025-03-19 18:34:55.402 500 FEE 435327 2459 \N \N 6039594 2025-03-19 18:34:55.402 2025-03-19 18:34:55.402 4500 TIP 435327 19863 \N \N 6039653 2025-03-19 18:41:41.495 2025-03-19 18:41:41.495 500 FEE 435377 5852 \N \N 6039654 2025-03-19 18:41:41.495 2025-03-19 18:41:41.495 4500 TIP 435377 16978 \N \N 6039657 2025-03-19 18:41:49.731 2025-03-19 18:41:49.731 500 FEE 435571 21274 \N \N 6039658 2025-03-19 18:41:49.731 2025-03-19 18:41:49.731 4500 TIP 435571 15075 \N \N 6039662 2025-03-19 18:43:12.993 2025-03-19 18:43:12.993 1000 FEE 435328 9529 \N \N 6039663 2025-03-19 18:43:12.993 2025-03-19 18:43:12.993 9000 TIP 435328 21734 \N \N 6039671 2025-03-19 18:43:16.973 2025-03-19 18:43:16.973 1000 FEE 435657 9183 \N \N 6039672 2025-03-19 18:43:16.973 2025-03-19 18:43:16.973 9000 TIP 435657 16754 \N \N 6039681 2025-03-19 18:44:22.501 2025-03-19 18:44:22.501 1000 FEE 435342 13921 \N \N 6039682 2025-03-19 18:44:22.501 2025-03-19 18:44:22.501 9000 TIP 435342 14990 \N \N 6039683 2025-03-19 18:44:32.787 2025-03-19 18:44:32.787 1000 FEE 435377 1469 \N \N 6039437 2025-03-19 18:14:15.435 2025-03-19 18:14:15.435 2100 FEE 435679 21275 \N \N 6039438 2025-03-19 18:14:15.435 2025-03-19 18:14:15.435 18900 TIP 435679 16347 \N \N 6039456 2025-03-19 18:18:12.886 2025-03-19 18:18:12.886 5000 FEE 435274 16808 \N \N 6039457 2025-03-19 18:18:12.886 2025-03-19 18:18:12.886 45000 TIP 435274 9307 \N \N 6039458 2025-03-19 18:18:13.455 2025-03-19 18:18:13.455 5000 FEE 435274 1737 \N \N 6039459 2025-03-19 18:18:13.455 2025-03-19 18:18:13.455 45000 TIP 435274 6777 \N \N 6039462 2025-03-19 18:18:28.573 2025-03-19 18:18:28.573 5000 FEE 435299 21020 \N \N 6039463 2025-03-19 18:18:28.573 2025-03-19 18:18:28.573 45000 TIP 435299 4323 \N \N 6039467 2025-03-19 18:19:08.56 2025-03-19 18:19:08.56 1000 FEE 435790 9346 \N \N 6039469 2025-03-19 18:19:41.525 2025-03-19 18:19:41.525 1000 FEE 435791 21451 \N \N 6039491 2025-03-19 18:20:28.528 2025-03-19 18:20:28.528 500 FEE 435657 18494 \N \N 6039492 2025-03-19 18:20:28.528 2025-03-19 18:20:28.528 4500 TIP 435657 7583 \N \N 6039526 2025-03-19 18:22:50.117 2025-03-19 18:22:50.117 5000 FEE 435086 5829 \N \N 6039527 2025-03-19 18:22:50.117 2025-03-19 18:22:50.117 45000 TIP 435086 11450 \N \N 6039541 2025-03-19 18:25:06.113 2025-03-19 18:25:06.113 1000 FEE 435794 8269 \N \N 6039545 2025-03-19 18:25:38.259 2025-03-19 18:25:38.259 5000 FEE 435615 1316 \N \N 6039546 2025-03-19 18:25:38.259 2025-03-19 18:25:38.259 45000 TIP 435615 18219 \N \N 6039556 2025-03-19 18:32:09.796 2025-03-19 18:32:09.796 1000 FEE 435721 9295 \N \N 6039557 2025-03-19 18:32:09.796 2025-03-19 18:32:09.796 9000 TIP 435721 2213 \N \N 6039581 2025-03-19 18:34:33.53 2025-03-19 18:34:33.53 500 FEE 435531 1173 \N \N 6039582 2025-03-19 18:34:33.53 2025-03-19 18:34:33.53 4500 TIP 435531 1713 \N \N 6039605 2025-03-19 18:36:48.139 2025-03-19 18:36:48.139 500 FEE 435551 6160 \N \N 6039606 2025-03-19 18:36:48.139 2025-03-19 18:36:48.139 4500 TIP 435551 19217 \N \N 6039640 2025-03-19 18:41:13.062 2025-03-19 18:41:13.062 2100 FEE 434962 16724 \N \N 6039641 2025-03-19 18:41:13.062 2025-03-19 18:41:13.062 18900 TIP 434962 5497 \N \N 6039645 2025-03-19 18:41:20.261 2025-03-19 18:41:20.261 500 FEE 435384 8472 \N \N 6039646 2025-03-19 18:41:20.261 2025-03-19 18:41:20.261 4500 TIP 435384 730 \N \N 6039664 2025-03-19 18:43:13.895 2025-03-19 18:43:13.895 1000 FEE 435030 3683 \N \N 6039665 2025-03-19 18:43:13.895 2025-03-19 18:43:13.895 9000 TIP 435030 19117 \N \N 6039669 2025-03-19 18:43:15.766 2025-03-19 18:43:15.766 1000 FEE 435231 21600 \N \N 6039670 2025-03-19 18:43:15.766 2025-03-19 18:43:15.766 9000 TIP 435231 20294 \N \N 6039677 2025-03-19 18:44:05.652 2025-03-19 18:44:05.652 100000 FEE 435804 759 \N \N 6039442 2025-03-19 18:16:13.079 2025-03-19 18:16:13.079 100 FEE 435544 6765 \N \N 6039443 2025-03-19 18:16:13.079 2025-03-19 18:16:13.079 900 TIP 435544 6268 \N \N 6039452 2025-03-19 18:17:09.716 2025-03-19 18:17:09.716 5000 FEE 435707 21338 \N \N 6039453 2025-03-19 18:17:09.716 2025-03-19 18:17:09.716 45000 TIP 435707 21805 \N \N 6039483 2025-03-19 18:20:18.287 2025-03-19 18:20:18.287 500 FEE 434791 19292 \N \N 6039484 2025-03-19 18:20:18.287 2025-03-19 18:20:18.287 4500 TIP 434791 19777 \N \N 6039487 2025-03-19 18:20:19.144 2025-03-19 18:20:19.144 500 FEE 435231 21064 \N \N 6039488 2025-03-19 18:20:19.144 2025-03-19 18:20:19.144 4500 TIP 435231 21803 \N \N 6039495 2025-03-19 18:20:36.501 2025-03-19 18:20:36.501 2100 FEE 435637 1673 \N \N 6039496 2025-03-19 18:20:36.501 2025-03-19 18:20:36.501 18900 TIP 435637 16212 \N \N 6039503 2025-03-19 18:21:22.078 2025-03-19 18:21:22.078 5000 FEE 435457 18174 \N \N 6039504 2025-03-19 18:21:22.078 2025-03-19 18:21:22.078 45000 TIP 435457 8289 \N \N 6039524 2025-03-19 18:22:49.808 2025-03-19 18:22:49.808 5000 FEE 435086 3304 \N \N 6039525 2025-03-19 18:22:49.808 2025-03-19 18:22:49.808 45000 TIP 435086 17331 \N \N 6039530 2025-03-19 18:23:10.402 2025-03-19 18:23:10.402 1000 FEE 435793 12245 \N \N 6039583 2025-03-19 18:34:34.253 2025-03-19 18:34:34.253 500 FEE 435552 21547 \N \N 6039584 2025-03-19 18:34:34.253 2025-03-19 18:34:34.253 4500 TIP 435552 13361 \N \N 6039591 2025-03-19 18:34:54.494 2025-03-19 18:34:54.494 500 FEE 435217 5757 \N \N 6039592 2025-03-19 18:34:54.494 2025-03-19 18:34:54.494 4500 TIP 435217 19735 \N \N 6039624 2025-03-19 18:38:15.563 2025-03-19 18:38:15.563 1000 FEE 435802 16858 \N \N 6039629 2025-03-19 18:38:34.06 2025-03-19 18:38:34.06 3000 FEE 435560 21373 \N \N 6039630 2025-03-19 18:38:34.06 2025-03-19 18:38:34.06 27000 TIP 435560 9159 \N \N 6039655 2025-03-19 18:41:41.981 2025-03-19 18:41:41.981 500 FEE 435377 14941 \N \N 6039656 2025-03-19 18:41:41.981 2025-03-19 18:41:41.981 4500 TIP 435377 5761 \N \N 6039712 2025-03-19 18:50:40.451 2025-03-19 18:50:40.451 1000 FEE 435242 5708 \N \N 6039713 2025-03-19 18:50:40.451 2025-03-19 18:50:40.451 9000 TIP 435242 1802 \N \N 6039716 2025-03-19 18:51:12.588 2025-03-19 18:51:12.588 1000 FEE 435618 21833 \N \N 6039717 2025-03-19 18:51:12.588 2025-03-19 18:51:12.588 9000 TIP 435618 9356 \N \N 6039721 2025-03-19 18:51:35.042 2025-03-19 18:51:35.042 1000 FEE 435292 11561 \N \N 6039722 2025-03-19 18:51:35.042 2025-03-19 18:51:35.042 9000 TIP 435292 626 \N \N 6039736 2025-03-19 18:55:39.434 2025-03-19 18:55:39.434 100 FEE 435741 666 \N \N 6039737 2025-03-19 18:55:39.434 2025-03-19 18:55:39.434 900 TIP 435741 19531 \N \N 6039742 2025-03-19 18:56:07.524 2025-03-19 18:56:07.524 1000 FEE 435809 1584 \N \N 6039761 2025-03-19 19:01:35.531 2025-03-19 19:01:35.531 100 FEE 435798 20681 \N \N 6039762 2025-03-19 19:01:35.531 2025-03-19 19:01:35.531 900 TIP 435798 20280 \N \N 6039769 2025-03-19 19:03:02.987 2025-03-19 19:03:02.987 1000 FEE 435231 16410 \N \N 6039770 2025-03-19 19:03:02.987 2025-03-19 19:03:02.987 9000 TIP 435231 20922 \N \N 6039773 2025-03-19 19:03:05.865 2025-03-19 19:03:05.865 1000 FEE 435657 10818 \N \N 6039774 2025-03-19 19:03:05.865 2025-03-19 19:03:05.865 9000 TIP 435657 1890 \N \N 6039791 2025-03-19 19:04:33.138 2025-03-19 19:04:33.138 1000 FEE 435815 10094 \N \N 6039792 2025-03-19 19:04:45.641 2025-03-19 19:04:45.641 0 FEE 435815 16769 \N \N 6039797 2025-03-19 19:05:59.15 2025-03-19 19:05:59.15 4200 FEE 434674 12566 \N \N 6039798 2025-03-19 19:05:59.15 2025-03-19 19:05:59.15 37800 TIP 434674 3353 \N \N 6039803 2025-03-19 19:08:02.042 2025-03-19 19:08:02.042 2000 FEE 435808 15577 \N \N 6039804 2025-03-19 19:08:02.042 2025-03-19 19:08:02.042 18000 TIP 435808 17148 \N \N 6039805 2025-03-19 19:08:02.668 2025-03-19 19:08:02.668 2000 FEE 435807 21402 \N \N 6039806 2025-03-19 19:08:02.668 2025-03-19 19:08:02.668 18000 TIP 435807 673 \N \N 6039826 2025-03-19 19:11:55.714 2025-03-19 19:11:55.714 7700 FEE 435610 9307 \N \N 6039827 2025-03-19 19:11:55.714 2025-03-19 19:11:55.714 69300 TIP 435610 1122 \N \N 6039828 2025-03-19 19:12:14.784 2025-03-19 19:12:14.784 2100 FEE 435697 6030 \N \N 6039475 2025-03-19 18:20:15.266 2025-03-19 18:20:15.266 500 FEE 435046 20198 \N \N 6039476 2025-03-19 18:20:15.266 2025-03-19 18:20:15.266 4500 TIP 435046 11967 \N \N 6039493 2025-03-19 18:20:29.34 2025-03-19 18:20:29.34 500 FEE 435551 20825 \N \N 6039494 2025-03-19 18:20:29.34 2025-03-19 18:20:29.34 4500 TIP 435551 5519 \N \N 6039505 2025-03-19 18:21:22.646 2025-03-19 18:21:22.646 5000 FEE 435457 16347 \N \N 6039506 2025-03-19 18:21:22.646 2025-03-19 18:21:22.646 45000 TIP 435457 14271 \N \N 6039528 2025-03-19 18:22:50.417 2025-03-19 18:22:50.417 5000 FEE 435086 20222 \N \N 6039529 2025-03-19 18:22:50.417 2025-03-19 18:22:50.417 45000 TIP 435086 713 \N \N 6039573 2025-03-19 18:34:20.801 2025-03-19 18:34:20.801 500 FEE 435580 11328 \N \N 6039574 2025-03-19 18:34:20.801 2025-03-19 18:34:20.801 4500 TIP 435580 1673 \N \N 6039575 2025-03-19 18:34:21.52 2025-03-19 18:34:21.52 500 FEE 435580 11523 \N \N 6039576 2025-03-19 18:34:21.52 2025-03-19 18:34:21.52 4500 TIP 435580 929 \N \N 6039609 2025-03-19 18:36:53.024 2025-03-19 18:36:53.024 500 FEE 435328 1286 \N \N 6039610 2025-03-19 18:36:53.024 2025-03-19 18:36:53.024 4500 TIP 435328 8004 \N \N 6039621 2025-03-19 18:37:47.767 2025-03-19 18:37:47.767 1000 FEE 435800 2749 \N \N 6039634 2025-03-19 18:40:52.361 2025-03-19 18:40:52.361 500 FEE 435086 1007 \N \N 6039635 2025-03-19 18:40:52.361 2025-03-19 18:40:52.361 4500 TIP 435086 12721 \N \N 6039675 2025-03-19 18:44:05.225 2025-03-19 18:44:05.225 1000 FEE 435378 18601 \N \N 6039676 2025-03-19 18:44:05.225 2025-03-19 18:44:05.225 9000 TIP 435378 20715 \N \N 6039685 2025-03-19 18:44:43.273 2025-03-19 18:44:43.273 1000 POLL 435516 20562 \N \N 6039695 2025-03-19 18:47:10.846 2025-03-19 18:47:10.846 500 FEE 434654 20715 \N \N 6039696 2025-03-19 18:47:10.846 2025-03-19 18:47:10.846 4500 TIP 434654 21233 \N \N 6039782 2025-03-19 19:03:26.001 2025-03-19 19:03:26.001 1000 FEE 435086 16876 \N \N 6039783 2025-03-19 19:03:26.001 2025-03-19 19:03:26.001 9000 TIP 435086 649 \N \N 6039795 2025-03-19 19:05:48.365 2025-03-19 19:05:48.365 4200 FEE 435001 2156 \N \N 6039796 2025-03-19 19:05:48.365 2025-03-19 19:05:48.365 37800 TIP 435001 19930 \N \N 6039822 2025-03-19 19:11:35.618 2025-03-19 19:11:35.618 2700 FEE 435768 11992 \N \N 6039823 2025-03-19 19:11:35.618 2025-03-19 19:11:35.618 24300 TIP 435768 20642 \N \N 6039837 2025-03-19 19:12:33.641 2025-03-19 19:12:33.641 2100 FEE 435655 5703 \N \N 6039838 2025-03-19 19:12:33.641 2025-03-19 19:12:33.641 18900 TIP 435655 8989 \N \N 6039861 2025-03-19 19:18:12.823 2025-03-19 19:18:12.823 2100 FEE 435674 10056 \N \N 6039862 2025-03-19 19:18:12.823 2025-03-19 19:18:12.823 18900 TIP 435674 21577 \N \N 6039870 2025-03-19 19:19:47.08 2025-03-19 19:19:47.08 1000 FEE 259258 16406 \N \N 6039871 2025-03-19 19:19:47.08 2025-03-19 19:19:47.08 9000 TIP 259258 15703 \N \N 6039872 2025-03-19 19:20:03.16 2025-03-19 19:20:03.16 100000 FEE 435826 2338 \N \N 6039889 2025-03-19 19:29:56.299 2025-03-19 19:29:56.299 1000 FEE 435488 3439 \N \N 6039890 2025-03-19 19:29:56.299 2025-03-19 19:29:56.299 9000 TIP 435488 686 \N \N 6039891 2025-03-19 19:30:00.336 2025-03-19 19:30:00.336 1000 FEE 435328 20245 \N \N 6039892 2025-03-19 19:30:00.336 2025-03-19 19:30:00.336 9000 TIP 435328 15119 \N \N 6039917 2025-03-19 19:33:51.343 2025-03-19 19:33:51.343 10000 FEE 435721 20187 \N \N 6039918 2025-03-19 19:33:51.343 2025-03-19 19:33:51.343 90000 TIP 435721 18923 \N \N 6039923 2025-03-19 19:33:56.942 2025-03-19 19:33:56.942 4000 FEE 435746 12566 \N \N 6039924 2025-03-19 19:33:56.942 2025-03-19 19:33:56.942 36000 TIP 435746 17713 \N \N 6039961 2025-03-19 19:36:46.341 2025-03-19 19:36:46.341 1000 FEE 435378 1512 \N \N 6039962 2025-03-19 19:36:46.341 2025-03-19 19:36:46.341 9000 TIP 435378 2543 \N \N 6039966 2025-03-19 19:37:51.892 2025-03-19 19:37:51.892 1000 FEE 435830 21061 \N \N 6039477 2025-03-19 18:20:15.991 2025-03-19 18:20:15.991 500 FEE 435488 17494 \N \N 6039478 2025-03-19 18:20:15.991 2025-03-19 18:20:15.991 4500 TIP 435488 10270 \N \N 6039502 2025-03-19 18:21:15.301 2025-03-19 18:21:15.301 1000 FEE 435792 20073 \N \N 6039507 2025-03-19 18:21:22.726 2025-03-19 18:21:22.726 5000 FEE 435457 13599 \N \N 6039508 2025-03-19 18:21:22.726 2025-03-19 18:21:22.726 45000 TIP 435457 2735 \N \N 6039509 2025-03-19 18:21:23.287 2025-03-19 18:21:23.287 5000 FEE 435457 12346 \N \N 6039510 2025-03-19 18:21:23.287 2025-03-19 18:21:23.287 45000 TIP 435457 2459 \N \N 6039511 2025-03-19 18:21:23.455 2025-03-19 18:21:23.455 5000 FEE 435457 7773 \N \N 6039512 2025-03-19 18:21:23.455 2025-03-19 18:21:23.455 45000 TIP 435457 8459 \N \N 6039515 2025-03-19 18:21:25.751 2025-03-19 18:21:25.751 5000 FEE 435457 14381 \N \N 6039516 2025-03-19 18:21:25.751 2025-03-19 18:21:25.751 45000 TIP 435457 20450 \N \N 6039539 2025-03-19 18:24:47.657 2025-03-19 18:24:47.657 5000 FEE 435217 19863 \N \N 6039540 2025-03-19 18:24:47.657 2025-03-19 18:24:47.657 45000 TIP 435217 16176 \N \N 6039550 2025-03-19 18:27:10.986 2025-03-19 18:27:10.986 1000 FEE 435795 11164 \N \N 6039566 2025-03-19 18:33:54.053 2025-03-19 18:33:54.053 1000 FEE 435639 17592 \N \N 6039567 2025-03-19 18:33:54.053 2025-03-19 18:33:54.053 9000 TIP 435639 11760 \N \N 6039570 2025-03-19 18:34:03.43 2025-03-19 18:34:03.43 500 FEE 435292 20225 \N \N 6039571 2025-03-19 18:34:03.43 2025-03-19 18:34:03.43 4500 TIP 435292 20837 \N \N 6039577 2025-03-19 18:34:23.494 2025-03-19 18:34:23.494 500 FEE 435741 621 \N \N 6039578 2025-03-19 18:34:23.494 2025-03-19 18:34:23.494 4500 TIP 435741 4763 \N \N 6039579 2025-03-19 18:34:30.491 2025-03-19 18:34:30.491 500 FEE 435086 10719 \N \N 6039580 2025-03-19 18:34:30.491 2025-03-19 18:34:30.491 4500 TIP 435086 1769 \N \N 6039588 2025-03-19 18:34:45.411 2025-03-19 18:34:45.411 100000 FEE 435798 20026 \N \N 6039607 2025-03-19 18:36:48.608 2025-03-19 18:36:48.608 500 FEE 435639 19121 \N \N 6039608 2025-03-19 18:36:48.608 2025-03-19 18:36:48.608 4500 TIP 435639 9262 \N \N 6039638 2025-03-19 18:41:11.029 2025-03-19 18:41:11.029 500 FEE 434978 18734 \N \N 6039639 2025-03-19 18:41:11.029 2025-03-19 18:41:11.029 4500 TIP 434978 5359 \N \N 6039643 2025-03-19 18:41:17.26 2025-03-19 18:41:17.26 500 FEE 435384 19952 \N \N 6039644 2025-03-19 18:41:17.26 2025-03-19 18:41:17.26 4500 TIP 435384 2361 \N \N 6039647 2025-03-19 18:41:27.241 2025-03-19 18:41:27.241 500 FEE 435342 15521 \N \N 6039648 2025-03-19 18:41:27.241 2025-03-19 18:41:27.241 4500 TIP 435342 8416 \N \N 6039697 2025-03-19 18:47:11.318 2025-03-19 18:47:11.318 500 FEE 434654 19471 \N \N 6039698 2025-03-19 18:47:11.318 2025-03-19 18:47:11.318 4500 TIP 434654 21062 \N \N 6039708 2025-03-19 18:50:38.389 2025-03-19 18:50:38.389 1000 FEE 435261 10661 \N \N 6039709 2025-03-19 18:50:38.389 2025-03-19 18:50:38.389 9000 TIP 435261 4177 \N \N 6039714 2025-03-19 18:50:41.938 2025-03-19 18:50:41.938 1000 FEE 435217 16670 \N \N 6039715 2025-03-19 18:50:41.938 2025-03-19 18:50:41.938 9000 TIP 435217 20450 \N \N 6039734 2025-03-19 18:54:48.332 2025-03-19 18:54:48.332 1000 FEE 435807 16282 \N \N 6039749 2025-03-19 18:58:36.523 2025-03-19 18:58:36.523 1000 FEE 435811 15386 \N \N 6039755 2025-03-19 19:00:34.195 2025-03-19 19:00:34.195 4200 FEE 435242 1549 \N \N 6039756 2025-03-19 19:00:34.195 2025-03-19 19:00:34.195 37800 TIP 435242 19217 \N \N 6039765 2025-03-19 19:02:24.208 2025-03-19 19:02:24.208 4200 FEE 435577 13038 \N \N 6039766 2025-03-19 19:02:24.208 2025-03-19 19:02:24.208 37800 TIP 435577 17519 \N \N 6039842 2025-03-19 19:12:39.993 2025-03-19 19:12:39.993 0 FEE 435820 11018 \N \N 6039845 2025-03-19 19:12:55.257 2025-03-19 19:12:55.257 1000 FEE 435822 20577 \N \N 6039850 2025-03-19 19:14:24.925 2025-03-19 19:14:24.925 100 FEE 435812 19735 \N \N 6039851 2025-03-19 19:14:24.925 2025-03-19 19:14:24.925 900 TIP 435812 27 \N \N 6039854 2025-03-19 19:16:49.4 2025-03-19 19:16:49.4 1000 FEE 435823 1959 \N \N 6039855 2025-03-19 19:16:50.214 2025-03-19 19:16:50.214 10100 FEE 435663 2347 \N \N 6039856 2025-03-19 19:16:50.214 2025-03-19 19:16:50.214 90900 TIP 435663 17976 \N \N 6039906 2025-03-19 19:33:02.937 2025-03-19 19:33:02.937 1000 FEE 435086 16424 \N \N 6039907 2025-03-19 19:33:02.937 2025-03-19 19:33:02.937 9000 TIP 435086 17455 \N \N 6039928 2025-03-19 19:34:24.841 2025-03-19 19:34:24.841 36000 FEE 435695 746 \N \N 6039929 2025-03-19 19:34:24.841 2025-03-19 19:34:24.841 324000 TIP 435695 20755 \N \N 6039930 2025-03-19 19:35:06.566 2025-03-19 19:35:06.566 1000 FEE 435596 16270 \N \N 6039931 2025-03-19 19:35:06.566 2025-03-19 19:35:06.566 9000 TIP 435596 826 \N \N 6039942 2025-03-19 19:35:10.609 2025-03-19 19:35:10.609 1000 FEE 435657 7891 \N \N 6039943 2025-03-19 19:35:10.609 2025-03-19 19:35:10.609 9000 TIP 435657 20864 \N \N 6039949 2025-03-19 19:35:35.649 2025-03-19 19:35:35.649 2100 FEE 435610 3506 \N \N 6039950 2025-03-19 19:35:35.649 2025-03-19 19:35:35.649 18900 TIP 435610 10352 \N \N 6039968 2025-03-19 19:38:35.346 2025-03-19 19:38:35.346 1000 FEE 435690 21062 \N \N 6039969 2025-03-19 19:38:35.346 2025-03-19 19:38:35.346 9000 TIP 435690 20481 \N \N 6039980 2025-03-19 19:42:38.716 2025-03-19 19:42:38.716 1000 FEE 435824 623 \N \N 6039981 2025-03-19 19:42:38.716 2025-03-19 19:42:38.716 9000 TIP 435824 15890 \N \N 6039993 2025-03-19 19:47:12.033 2025-03-19 19:47:12.033 1000 FEE 435328 10393 \N \N 6039994 2025-03-19 19:47:12.033 2025-03-19 19:47:12.033 9000 TIP 435328 19857 \N \N 6040038 2025-03-19 20:04:23.257 2025-03-19 20:04:23.257 1000 FEE 435841 14705 \N \N 6040047 2025-03-19 20:10:03.494 2025-03-19 20:10:03.494 1000 FEE 435843 12222 \N \N 6040091 2025-03-19 20:24:34.505 2025-03-19 20:24:34.505 1000 FEE 435851 756 \N \N 6040099 2025-03-19 20:27:46.846 2025-03-19 20:27:46.846 1000 FEE 435852 5519 \N \N 6040110 2025-03-19 20:32:17.776 2025-03-19 20:32:17.776 1000 FEE 435856 21578 \N \N 6040215 2025-03-19 21:05:23.317 2025-03-19 21:05:23.317 300 FEE 435837 5112 \N \N 6040216 2025-03-19 21:05:23.317 2025-03-19 21:05:23.317 2700 TIP 435837 994 \N \N 6040221 2025-03-19 21:05:35.073 2025-03-19 21:05:35.073 300 FEE 435844 17064 \N \N 6040222 2025-03-19 21:05:35.073 2025-03-19 21:05:35.073 2700 TIP 435844 19138 \N \N 6040234 2025-03-19 21:06:58.105 2025-03-19 21:06:58.105 2100 FEE 435869 2335 \N \N 6040235 2025-03-19 21:06:58.105 2025-03-19 21:06:58.105 18900 TIP 435869 18219 \N \N 6040248 2025-03-19 21:07:57.868 2025-03-19 21:07:57.868 100 FEE 435217 17713 \N \N 6040249 2025-03-19 21:07:57.868 2025-03-19 21:07:57.868 900 TIP 435217 14705 \N \N 6040282 2025-03-19 21:23:39.285 2025-03-19 21:23:39.285 1000 FEE 435551 848 \N \N 6040283 2025-03-19 21:23:39.285 2025-03-19 21:23:39.285 9000 TIP 435551 866 \N \N 6040302 2025-03-19 21:25:27.663 2025-03-19 21:25:27.663 1000 FEE 435828 18727 \N \N 6040303 2025-03-19 21:25:27.663 2025-03-19 21:25:27.663 9000 TIP 435828 7654 \N \N 6040333 2025-03-19 21:38:29.678 2025-03-19 21:38:29.678 100 FEE 435812 21526 \N \N 6040334 2025-03-19 21:38:29.678 2025-03-19 21:38:29.678 900 TIP 435812 2711 \N \N 6040335 2025-03-19 21:38:29.868 2025-03-19 21:38:29.868 900 FEE 435812 5942 \N \N 6143516 2025-03-28 10:03:13.03 2025-03-28 10:03:13.03 200 FEE 447143 21212 \N \N 6143517 2025-03-28 10:03:13.03 2025-03-28 10:03:13.03 1800 TIP 447143 2709 \N \N 6143525 2025-03-28 10:04:16.224 2025-03-28 10:04:16.224 1000 FEE 447163 12609 \N \N 6143540 2025-03-28 10:06:06.953 2025-03-28 10:06:06.953 1000 FEE 447164 18526 \N \N 6143541 2025-03-28 10:06:06.953 2025-03-28 10:06:06.953 9000 TIP 447164 714 \N \N 6143585 2025-03-28 10:09:58.961 2025-03-28 10:09:58.961 6900 FEE 446954 623 \N \N 6143586 2025-03-28 10:09:58.961 2025-03-28 10:09:58.961 62100 TIP 446954 21547 \N \N 6143587 2025-03-28 10:09:59.475 2025-03-28 10:09:59.475 6900 FEE 446954 17411 \N \N 6143588 2025-03-28 10:09:59.475 2025-03-28 10:09:59.475 62100 TIP 446954 17011 \N \N 6143590 2025-03-28 10:10:18.13 2025-03-28 10:10:18.13 6900 FEE 447115 989 \N \N 6143591 2025-03-28 10:10:18.13 2025-03-28 10:10:18.13 62100 TIP 447115 2176 \N \N 6111384 2025-03-26 02:27:32.964 2025-03-26 02:27:32.964 900 TIP 442729 16270 \N \N 6111390 2025-03-26 02:29:29.661 2025-03-26 02:29:29.661 0 FEE 443331 17106 \N \N 6111448 2025-03-26 02:33:37.399 2025-03-26 02:33:37.399 800 FEE 443332 17157 \N \N 6111449 2025-03-26 02:33:37.399 2025-03-26 02:33:37.399 7200 TIP 443332 16988 \N \N 6111450 2025-03-26 02:34:07.365 2025-03-26 02:34:07.365 10000 FEE 443339 3461 \N \N 6111453 2025-03-26 02:35:06.193 2025-03-26 02:35:06.193 100 FEE 443339 14731 \N \N 6111454 2025-03-26 02:35:06.193 2025-03-26 02:35:06.193 900 TIP 443339 9349 \N \N 6111491 2025-03-26 02:42:40.418 2025-03-26 02:42:40.418 1000 FEE 443314 14037 \N \N 6111492 2025-03-26 02:42:40.418 2025-03-26 02:42:40.418 9000 TIP 443314 8037 \N \N 6111503 2025-03-26 02:44:44.211 2025-03-26 02:44:44.211 1000 FEE 443345 16680 \N \N 6111533 2025-03-26 02:47:26.863 2025-03-26 02:47:26.863 1000 FEE 442861 15148 \N \N 6111534 2025-03-26 02:47:26.863 2025-03-26 02:47:26.863 9000 TIP 442861 1564 \N \N 6111564 2025-03-26 02:50:24.257 2025-03-26 02:50:24.257 1300 FEE 443319 21037 \N \N 6111565 2025-03-26 02:50:24.257 2025-03-26 02:50:24.257 11700 TIP 443319 4650 \N \N 6111570 2025-03-26 02:50:26.163 2025-03-26 02:50:26.163 1300 FEE 443319 20913 \N \N 6111571 2025-03-26 02:50:26.163 2025-03-26 02:50:26.163 11700 TIP 443319 739 \N \N 6111578 2025-03-26 02:50:26.788 2025-03-26 02:50:26.788 1300 FEE 443319 9353 \N \N 6111579 2025-03-26 02:50:26.788 2025-03-26 02:50:26.788 11700 TIP 443319 18225 \N \N 6111598 2025-03-26 02:50:28.47 2025-03-26 02:50:28.47 1300 FEE 443319 4079 \N \N 6111599 2025-03-26 02:50:28.47 2025-03-26 02:50:28.47 11700 TIP 443319 20841 \N \N 6111600 2025-03-26 02:50:28.566 2025-03-26 02:50:28.566 1300 FEE 443319 2329 \N \N 6111601 2025-03-26 02:50:28.566 2025-03-26 02:50:28.566 11700 TIP 443319 2674 \N \N 6111604 2025-03-26 02:50:28.938 2025-03-26 02:50:28.938 1300 FEE 443319 671 \N \N 6111605 2025-03-26 02:50:28.938 2025-03-26 02:50:28.938 11700 TIP 443319 1411 \N \N 6111628 2025-03-26 02:50:31.239 2025-03-26 02:50:31.239 1300 FEE 443319 21166 \N \N 6111629 2025-03-26 02:50:31.239 2025-03-26 02:50:31.239 11700 TIP 443319 18265 \N \N 6111668 2025-03-26 02:55:15.006 2025-03-26 02:55:15.006 100 FEE 442904 20554 \N \N 6111669 2025-03-26 02:55:15.006 2025-03-26 02:55:15.006 900 TIP 442904 11491 \N \N 6111688 2025-03-26 02:57:01.733 2025-03-26 02:57:01.733 100 FEE 442710 10056 \N \N 6111689 2025-03-26 02:57:01.733 2025-03-26 02:57:01.733 900 TIP 442710 19346 \N \N 6111697 2025-03-26 02:59:32.552 2025-03-26 02:59:32.552 5700 FEE 443266 17533 \N \N 6111698 2025-03-26 02:59:32.552 2025-03-26 02:59:32.552 51300 TIP 443266 2335 \N \N 6111709 2025-03-26 03:02:41.192 2025-03-26 03:02:41.192 1000 FEE 442888 2620 \N \N 6111710 2025-03-26 03:02:41.192 2025-03-26 03:02:41.192 9000 TIP 442888 5809 \N \N 6111714 2025-03-26 03:04:15.803 2025-03-26 03:04:15.803 100000 FEE 443364 7916 \N \N 6111726 2025-03-26 03:07:16.575 2025-03-26 03:07:16.575 1000 FEE 443366 8080 \N \N 6111738 2025-03-26 03:09:08.108 2025-03-26 03:09:08.108 2100 FEE 443294 1490 \N \N 6111739 2025-03-26 03:09:08.108 2025-03-26 03:09:08.108 18900 TIP 443294 775 \N \N 6111741 2025-03-26 03:10:12.832 2025-03-26 03:10:12.832 2100 FEE 443014 1726 \N \N 6111742 2025-03-26 03:10:12.832 2025-03-26 03:10:12.832 18900 TIP 443014 826 \N \N 6111764 2025-03-26 03:13:01.605 2025-03-26 03:13:01.605 2100 FEE 443253 20674 \N \N 6111765 2025-03-26 03:13:01.605 2025-03-26 03:13:01.605 18900 TIP 443253 21271 \N \N 6111768 2025-03-26 03:14:44.616 2025-03-26 03:14:44.616 1000 FEE 443371 636 \N \N 6111770 2025-03-26 03:15:01.781 2025-03-26 03:15:01.781 0 FEE 443371 4259 \N \N 6111773 2025-03-26 03:15:32.923 2025-03-26 03:15:32.923 1000 POLL 442751 2780 \N \N 6111780 2025-03-26 03:16:44.051 2025-03-26 03:16:44.051 1000 FEE 443337 7587 \N \N 6111781 2025-03-26 03:16:44.051 2025-03-26 03:16:44.051 9000 TIP 443337 4802 \N \N 6039684 2025-03-19 18:44:32.787 2025-03-19 18:44:32.787 9000 TIP 435377 17147 \N \N 6039687 2025-03-19 18:45:52.182 2025-03-19 18:45:52.182 4200 FEE 435663 15192 \N \N 6039688 2025-03-19 18:45:52.182 2025-03-19 18:45:52.182 37800 TIP 435663 987 \N \N 6039692 2025-03-19 18:47:05.984 2025-03-19 18:47:05.984 40000 DONT_LIKE_THIS 431241 20551 \N \N 6039719 2025-03-19 18:51:25.652 2025-03-19 18:51:25.652 1000 FEE 435086 12744 \N \N 6039720 2025-03-19 18:51:25.652 2025-03-19 18:51:25.652 9000 TIP 435086 20433 \N \N 6039731 2025-03-19 18:53:14.262 2025-03-19 18:53:14.262 1000 POLL 435805 6594 \N \N 6039739 2025-03-19 18:56:05.184 2025-03-19 18:56:05.184 1000 FEE 435804 10393 \N \N 6039740 2025-03-19 18:56:05.184 2025-03-19 18:56:05.184 9000 TIP 435804 1060 \N \N 6039743 2025-03-19 18:56:14.634 2025-03-19 18:56:14.634 10000 FEE 435805 19199 \N \N 6039744 2025-03-19 18:56:14.634 2025-03-19 18:56:14.634 90000 TIP 435805 11477 \N \N 6039786 2025-03-19 19:03:45.897 2025-03-19 19:03:45.897 1000 FEE 435292 9261 \N \N 6039787 2025-03-19 19:03:45.897 2025-03-19 19:03:45.897 9000 TIP 435292 21041 \N \N 6039800 2025-03-19 19:06:16.155 2025-03-19 19:06:16.155 20000 FEE 434665 4692 \N \N 6039801 2025-03-19 19:06:16.155 2025-03-19 19:06:16.155 180000 TIP 434665 21047 \N \N 6039808 2025-03-19 19:08:10.254 2025-03-19 19:08:10.254 1000 FEE 435663 15662 \N \N 6039809 2025-03-19 19:08:10.254 2025-03-19 19:08:10.254 9000 TIP 435663 7682 \N \N 6039812 2025-03-19 19:09:35.363 2025-03-19 19:09:35.363 1000 FEE 435817 10311 \N \N 6039814 2025-03-19 19:10:48.797 2025-03-19 19:10:48.797 7100 FEE 435690 1198 \N \N 6039815 2025-03-19 19:10:48.797 2025-03-19 19:10:48.797 63900 TIP 435690 3371 \N \N 6039834 2025-03-19 19:12:24.324 2025-03-19 19:12:24.324 1000 FEE 435820 2773 \N \N 6039887 2025-03-19 19:29:55.051 2025-03-19 19:29:55.051 1000 FEE 435657 15549 \N \N 6039888 2025-03-19 19:29:55.051 2025-03-19 19:29:55.051 9000 TIP 435657 705 \N \N 6039895 2025-03-19 19:30:07.283 2025-03-19 19:30:07.283 1000 FEE 435217 16556 \N \N 6039896 2025-03-19 19:30:07.283 2025-03-19 19:30:07.283 9000 TIP 435217 7667 \N \N 6039904 2025-03-19 19:33:01.296 2025-03-19 19:33:01.296 4000 FEE 435805 1836 \N \N 6039905 2025-03-19 19:33:01.296 2025-03-19 19:33:01.296 36000 TIP 435805 16442 \N \N 6039919 2025-03-19 19:33:54.935 2025-03-19 19:33:54.935 10000 FEE 435721 17106 \N \N 6039920 2025-03-19 19:33:54.935 2025-03-19 19:33:54.935 90000 TIP 435721 11873 \N \N 6039995 2025-03-19 19:47:13.011 2025-03-19 19:47:13.011 2100 FEE 435800 8448 \N \N 6039996 2025-03-19 19:47:13.011 2025-03-19 19:47:13.011 18900 TIP 435800 14376 \N \N 6040015 2025-03-19 19:54:43.998 2025-03-19 19:54:43.998 6900 FEE 435579 2711 \N \N 6040016 2025-03-19 19:54:43.998 2025-03-19 19:54:43.998 62100 TIP 435579 20691 \N \N 6040018 2025-03-19 19:55:31.273 2025-03-19 19:55:31.273 10000 FEE 435834 21166 \N \N 6040028 2025-03-19 20:00:02.084 2025-03-19 20:00:02.084 2000 FEE 435820 18011 \N \N 6040029 2025-03-19 20:00:02.084 2025-03-19 20:00:02.084 18000 TIP 435820 15192 \N \N 6040050 2025-03-19 20:11:27.828 2025-03-19 20:11:27.828 100000 FEE 435844 14213 \N \N 6039689 2025-03-19 18:45:58.03 2025-03-19 18:45:58.03 4200 FEE 435610 4083 \N \N 6039690 2025-03-19 18:45:58.03 2025-03-19 18:45:58.03 37800 TIP 435610 20562 \N \N 6039693 2025-03-19 18:47:10.39 2025-03-19 18:47:10.39 500 FEE 434654 2640 \N \N 6039694 2025-03-19 18:47:10.39 2025-03-19 18:47:10.39 4500 TIP 434654 21713 \N \N 6039723 2025-03-19 18:51:46.383 2025-03-19 18:51:46.383 1000 FEE 435384 1785 \N \N 6039724 2025-03-19 18:51:46.383 2025-03-19 18:51:46.383 9000 TIP 435384 7097 \N \N 6039728 2025-03-19 18:52:26.943 2025-03-19 18:52:26.943 10000 FEE 435806 4763 \N \N 6039729 2025-03-19 18:52:51.318 2025-03-19 18:52:51.318 1000 FEE 435805 17797 \N \N 6039730 2025-03-19 18:52:51.318 2025-03-19 18:52:51.318 9000 TIP 435805 17291 \N \N 6039738 2025-03-19 18:55:45.045 2025-03-19 18:55:45.045 1000 FEE 435808 1717 \N \N 6039748 2025-03-19 18:58:25.099 2025-03-19 18:58:25.099 1000 FEE 435810 2639 \N \N 6039750 2025-03-19 18:59:04.535 2025-03-19 18:59:04.535 4200 FEE 435383 836 \N \N 6039751 2025-03-19 18:59:04.535 2025-03-19 18:59:04.535 37800 TIP 435383 12334 \N \N 6039757 2025-03-19 19:00:43.396 2025-03-19 19:00:43.396 10000 FEE 435669 5171 \N \N 6039758 2025-03-19 19:00:43.396 2025-03-19 19:00:43.396 90000 TIP 435669 986 \N \N 6039760 2025-03-19 19:01:26.168 2025-03-19 19:01:26.168 1000 FEE 435813 19905 \N \N 6039763 2025-03-19 19:01:37.57 2025-03-19 19:01:37.57 1000 FEE 435814 1273 \N \N 6039771 2025-03-19 19:03:03.829 2025-03-19 19:03:03.829 1000 FEE 435242 7667 \N \N 6039772 2025-03-19 19:03:03.829 2025-03-19 19:03:03.829 9000 TIP 435242 21136 \N \N 6039775 2025-03-19 19:03:06.053 2025-03-19 19:03:06.053 1000 FEE 435217 1438 \N \N 6039776 2025-03-19 19:03:06.053 2025-03-19 19:03:06.053 9000 TIP 435217 10102 \N \N 6039780 2025-03-19 19:03:19.906 2025-03-19 19:03:19.906 1000 FEE 435580 2775 \N \N 6039781 2025-03-19 19:03:19.906 2025-03-19 19:03:19.906 9000 TIP 435580 12609 \N \N 6039793 2025-03-19 19:05:07.49 2025-03-19 19:05:07.49 0 FEE 435815 20660 \N \N 6039807 2025-03-19 19:08:04.36 2025-03-19 19:08:04.36 1000 FEE 435816 19673 \N \N 6039818 2025-03-19 19:11:16.35 2025-03-19 19:11:16.35 2100 FEE 435812 12965 \N \N 6039819 2025-03-19 19:11:16.35 2025-03-19 19:11:16.35 18900 TIP 435812 21275 \N \N 6039843 2025-03-19 19:12:47.728 2025-03-19 19:12:47.728 10000 FEE 435711 5017 \N \N 6039844 2025-03-19 19:12:47.728 2025-03-19 19:12:47.728 90000 TIP 435711 686 \N \N 6039858 2025-03-19 19:18:01.421 2025-03-19 19:18:01.421 10100 FEE 435610 13587 \N \N 6039859 2025-03-19 19:18:01.421 2025-03-19 19:18:01.421 90900 TIP 435610 1433 \N \N 6039869 2025-03-19 19:19:41.602 2025-03-19 19:19:41.602 1000 FEE 435825 18011 \N \N 6039915 2025-03-19 19:33:27.691 2025-03-19 19:33:27.691 1000 FEE 435384 5961 \N \N 6039916 2025-03-19 19:33:27.691 2025-03-19 19:33:27.691 9000 TIP 435384 20509 \N \N 6039973 2025-03-19 19:42:10.622 2025-03-19 19:42:10.622 1000 FEE 435695 11450 \N \N 6039974 2025-03-19 19:42:10.622 2025-03-19 19:42:10.622 9000 TIP 435695 21248 \N \N 6039978 2025-03-19 19:42:37.7 2025-03-19 19:42:37.7 1000 FEE 435674 1784 \N \N 6039979 2025-03-19 19:42:37.7 2025-03-19 19:42:37.7 9000 TIP 435674 20881 \N \N 6039982 2025-03-19 19:42:50.071 2025-03-19 19:42:50.071 1000 FEE 435831 20588 \N \N 6039986 2025-03-19 19:43:43.777 2025-03-19 19:43:43.777 10000 FEE 435576 20755 \N \N 6039987 2025-03-19 19:43:43.777 2025-03-19 19:43:43.777 90000 TIP 435576 761 \N \N 6040003 2025-03-19 19:49:36.965 2025-03-19 19:49:36.965 1000 FEE 435721 1493 \N \N 6040004 2025-03-19 19:49:36.965 2025-03-19 19:49:36.965 9000 TIP 435721 18330 \N \N 6040007 2025-03-19 19:52:00.267 2025-03-19 19:52:00.267 100000 FEE 435833 19943 \N \N 6040034 2025-03-19 20:02:39.143 2025-03-19 20:02:39.143 1000 FEE 435839 20586 \N \N 6040059 2025-03-19 20:16:48.928 2025-03-19 20:16:48.928 1000 POLL 435805 708 \N \N 6040067 2025-03-19 20:22:09.683 2025-03-19 20:22:09.683 100 FEE 435776 12490 \N \N 6040068 2025-03-19 20:22:09.683 2025-03-19 20:22:09.683 900 TIP 435776 16347 \N \N 6040102 2025-03-19 20:29:07.62 2025-03-19 20:29:07.62 1000 FEE 435854 9341 \N \N 6040121 2025-03-19 20:38:26.038 2025-03-19 20:38:26.038 1000 FEE 435858 7809 \N \N 6040142 2025-03-19 20:49:28.138 2025-03-19 20:49:28.138 100 FEE 435488 4062 \N \N 6040143 2025-03-19 20:49:28.138 2025-03-19 20:49:28.138 900 TIP 435488 15560 \N \N 6040147 2025-03-19 20:51:26.993 2025-03-19 20:51:26.993 100 FEE 435639 896 \N \N 6111485 2025-03-26 02:42:10.938 2025-03-26 02:42:10.938 9000 TIP 443329 4958 \N \N 6111498 2025-03-26 02:44:12.432 2025-03-26 02:44:12.432 1000 FEE 443297 1723 \N \N 6111499 2025-03-26 02:44:12.432 2025-03-26 02:44:12.432 9000 TIP 443297 16447 \N \N 6111501 2025-03-26 02:44:36.337 2025-03-26 02:44:36.337 1000 FEE 443339 1833 \N \N 6111502 2025-03-26 02:44:36.337 2025-03-26 02:44:36.337 9000 TIP 443339 2773 \N \N 6111512 2025-03-26 02:46:20.296 2025-03-26 02:46:20.296 5000 FEE 442313 10342 \N \N 6111513 2025-03-26 02:46:20.296 2025-03-26 02:46:20.296 45000 TIP 442313 2652 \N \N 6111520 2025-03-26 02:46:33.12 2025-03-26 02:46:33.12 1000 FEE 443169 17221 \N \N 6111521 2025-03-26 02:46:33.12 2025-03-26 02:46:33.12 9000 TIP 443169 4763 \N \N 6111541 2025-03-26 02:48:41.033 2025-03-26 02:48:41.033 1000 FEE 443351 12261 \N \N 6111562 2025-03-26 02:50:24.158 2025-03-26 02:50:24.158 1300 FEE 443319 11714 \N \N 6111563 2025-03-26 02:50:24.158 2025-03-26 02:50:24.158 11700 TIP 443319 21339 \N \N 6039829 2025-03-19 19:12:14.784 2025-03-19 19:12:14.784 18900 TIP 435697 998 \N \N 6039835 2025-03-19 19:12:31.897 2025-03-19 19:12:31.897 10000 FEE 435728 805 \N \N 6039836 2025-03-19 19:12:31.897 2025-03-19 19:12:31.897 90000 TIP 435728 20187 \N \N 6039877 2025-03-19 19:22:21.322 2025-03-19 19:22:21.322 1000 FEE 435828 9200 \N \N 6039893 2025-03-19 19:30:03.082 2025-03-19 19:30:03.082 1000 FEE 435242 10818 \N \N 6039894 2025-03-19 19:30:03.082 2025-03-19 19:30:03.082 9000 TIP 435242 21271 \N \N 6039932 2025-03-19 19:35:09.152 2025-03-19 19:35:09.152 1000 FEE 435551 1814 \N \N 6039933 2025-03-19 19:35:09.152 2025-03-19 19:35:09.152 9000 TIP 435551 21422 \N \N 6039951 2025-03-19 19:35:36.131 2025-03-19 19:35:36.131 2100 FEE 435610 716 \N \N 6039952 2025-03-19 19:35:36.131 2025-03-19 19:35:36.131 18900 TIP 435610 20280 \N \N 6039955 2025-03-19 19:35:51.219 2025-03-19 19:35:51.219 1000 FEE 435829 13574 \N \N 6039999 2025-03-19 19:48:07.401 2025-03-19 19:48:07.401 1000 FEE 435242 18923 \N \N 6040000 2025-03-19 19:48:07.401 2025-03-19 19:48:07.401 9000 TIP 435242 18393 \N \N 6040020 2025-03-19 19:55:37.893 2025-03-19 19:55:37.893 1000 FEE 435836 1136 \N \N 6040066 2025-03-19 20:21:40.25 2025-03-19 20:21:40.25 1000 FEE 435849 9450 \N \N 6040069 2025-03-19 20:22:09.856 2025-03-19 20:22:09.856 100 FEE 435776 7668 \N \N 6040070 2025-03-19 20:22:09.856 2025-03-19 20:22:09.856 900 TIP 435776 16276 \N \N 6040101 2025-03-19 20:28:58.388 2025-03-19 20:28:58.388 1000 FEE 435853 20969 \N \N 6040106 2025-03-19 20:30:37.405 2025-03-19 20:30:37.405 50000 FEE 435770 20965 \N \N 6040107 2025-03-19 20:30:37.405 2025-03-19 20:30:37.405 450000 TIP 435770 16809 \N \N 6040192 2025-03-19 21:02:25.353 2025-03-19 21:02:25.353 0 FEE 435869 21547 \N \N 6040198 2025-03-19 21:03:57.623 2025-03-19 21:03:57.623 1000 FEE 435873 21036 \N \N 6040242 2025-03-19 21:07:54.921 2025-03-19 21:07:54.921 100 FEE 435217 15409 \N \N 6040243 2025-03-19 21:07:54.921 2025-03-19 21:07:54.921 900 TIP 435217 21263 \N \N 6040254 2025-03-19 21:09:43.264 2025-03-19 21:09:43.264 20000 FEE 435669 21685 \N \N 6040255 2025-03-19 21:09:43.264 2025-03-19 21:09:43.264 180000 TIP 435669 7869 \N \N 6040271 2025-03-19 21:19:09.067 2025-03-19 21:19:09.067 1000 FEE 435880 10393 \N \N 6040279 2025-03-19 21:23:12.247 2025-03-19 21:23:12.247 1600 FEE 435488 13198 \N \N 6040280 2025-03-19 21:23:12.247 2025-03-19 21:23:12.247 14400 TIP 435488 17411 \N \N 6040295 2025-03-19 21:24:43.449 2025-03-19 21:24:43.449 36000 FEE 435139 21585 \N \N 6040296 2025-03-19 21:24:43.449 2025-03-19 21:24:43.449 324000 TIP 435139 20205 \N \N 6040309 2025-03-19 21:29:56.603 2025-03-19 21:29:56.603 21000 FEE 435882 19569 \N \N 6040326 2025-03-19 21:38:05.062 2025-03-19 21:38:05.062 100 FEE 435746 1650 \N \N 6040327 2025-03-19 21:38:05.062 2025-03-19 21:38:05.062 900 TIP 435746 16670 \N \N 6040350 2025-03-19 21:39:26.181 2025-03-19 21:39:26.181 1000 FEE 432920 4538 \N \N 6040351 2025-03-19 21:39:26.181 2025-03-19 21:39:26.181 9000 TIP 432920 14939 \N \N 6040388 2025-03-19 21:41:48.021 2025-03-19 21:41:48.021 400 FEE 435799 4027 \N \N 6040389 2025-03-19 21:41:48.021 2025-03-19 21:41:48.021 3600 TIP 435799 15806 \N \N 6040395 2025-03-19 21:43:19.703 2025-03-19 21:43:19.703 1000 FEE 433247 15336 \N \N 6040396 2025-03-19 21:43:19.703 2025-03-19 21:43:19.703 9000 TIP 433247 19813 \N \N 6040399 2025-03-19 21:43:34.516 2025-03-19 21:43:34.516 800 FEE 435328 17838 \N \N 6040400 2025-03-19 21:43:34.516 2025-03-19 21:43:34.516 7200 TIP 435328 9036 \N \N 6040422 2025-03-19 21:43:38.526 2025-03-19 21:43:38.526 800 FEE 435328 16126 \N \N 6040423 2025-03-19 21:43:38.526 2025-03-19 21:43:38.526 7200 TIP 435328 4287 \N \N 6040473 2025-03-19 21:58:39.969 2025-03-19 21:58:39.969 1000 FEE 435899 1142 \N \N 6040517 2025-03-19 22:12:34.733 2025-03-19 22:12:34.733 0 FEE 435904 16284 \N \N 6040520 2025-03-19 22:14:31.175 2025-03-19 22:14:31.175 10000 FEE 435905 20825 \N \N 6040529 2025-03-19 22:16:01.11 2025-03-19 22:16:01.11 2100 FEE 435610 21036 \N \N 6040530 2025-03-19 22:16:01.11 2025-03-19 22:16:01.11 18900 TIP 435610 713 \N \N 6040531 2025-03-19 22:16:03.394 2025-03-19 22:16:03.394 2100 FEE 435551 20956 \N \N 6040532 2025-03-19 22:16:03.394 2025-03-19 22:16:03.394 18900 TIP 435551 894 \N \N 6040541 2025-03-19 22:16:07.004 2025-03-19 22:16:07.004 2100 FEE 435805 18005 \N \N 6040542 2025-03-19 22:16:07.004 2025-03-19 22:16:07.004 18900 TIP 435805 19842 \N \N 6040560 2025-03-19 22:16:25.231 2025-03-19 22:16:25.231 2100 FEE 435667 2710 \N \N 6040561 2025-03-19 22:16:25.231 2025-03-19 22:16:25.231 18900 TIP 435667 17411 \N \N 6040581 2025-03-19 22:17:51.902 2025-03-19 22:17:51.902 100 FEE 435902 7746 \N \N 6040582 2025-03-19 22:17:51.902 2025-03-19 22:17:51.902 900 TIP 435902 683 \N \N 6040585 2025-03-19 22:17:52.72 2025-03-19 22:17:52.72 100 FEE 435902 20225 \N \N 6040586 2025-03-19 22:17:52.72 2025-03-19 22:17:52.72 900 TIP 435902 12779 \N \N 6040611 2025-03-19 22:23:24.451 2025-03-19 22:23:24.451 210000 FEE 435908 13378 \N \N 6040617 2025-03-19 22:25:49.4 2025-03-19 22:25:49.4 1000 FEE 435911 837 \N \N 6040622 2025-03-19 22:28:14.303 2025-03-19 22:28:14.303 1000 FEE 435913 13348 \N \N 6040659 2025-03-19 22:40:50.526 2025-03-19 22:40:50.526 12800 FEE 435657 11450 \N \N 6040660 2025-03-19 22:40:50.526 2025-03-19 22:40:50.526 115200 TIP 435657 15273 \N \N 6040691 2025-03-19 22:44:07.604 2025-03-19 22:44:07.604 12800 FEE 435728 7558 \N \N 6040692 2025-03-19 22:44:07.604 2025-03-19 22:44:07.604 115200 TIP 435728 811 \N \N 6040696 2025-03-19 22:44:59.927 2025-03-19 22:44:59.927 12800 FEE 435709 5557 \N \N 6040697 2025-03-19 22:44:59.927 2025-03-19 22:44:59.927 115200 TIP 435709 20434 \N \N 6040699 2025-03-19 22:45:21.827 2025-03-19 22:45:21.827 1000 FEE 435921 21406 \N \N 6040724 2025-03-19 22:46:47.281 2025-03-19 22:46:47.281 1000 FEE 435755 5661 \N \N 6040725 2025-03-19 22:46:47.281 2025-03-19 22:46:47.281 9000 TIP 435755 18601 \N \N 6040734 2025-03-19 22:48:20.551 2025-03-19 22:48:20.551 1000 FEE 435925 803 \N \N 6040749 2025-03-19 22:50:56.835 2025-03-19 22:50:56.835 1000 FEE 435928 3347 \N \N 6040760 2025-03-19 22:52:48.934 2025-03-19 22:52:48.934 2100 FEE 435915 1000 \N \N 6040761 2025-03-19 22:52:48.934 2025-03-19 22:52:48.934 18900 TIP 435915 6537 \N \N 6040775 2025-03-19 22:55:05.353 2025-03-19 22:55:05.353 0 FEE 435926 15139 \N \N 6040801 2025-03-19 22:58:39.129 2025-03-19 22:58:39.129 1000 FEE 435934 20852 \N \N 6040824 2025-03-19 23:09:41.854 2025-03-19 23:09:41.854 0 FEE 435937 19924 \N \N 6040846 2025-03-19 23:17:04.914 2025-03-19 23:17:04.914 1000 FEE 435940 10549 \N \N 6040884 2025-03-19 23:30:45.317 2025-03-19 23:30:45.317 1000 FEE 435945 5522 \N \N 6040897 2025-03-19 23:33:20.544 2025-03-19 23:33:20.544 1000 FEE 435948 861 \N \N 6040917 2025-03-19 23:43:02.813 2025-03-19 23:43:02.813 1000 FEE 435812 21063 \N \N 6040918 2025-03-19 23:43:02.813 2025-03-19 23:43:02.813 9000 TIP 435812 15488 \N \N 6040936 2025-03-19 23:47:20.84 2025-03-19 23:47:20.84 10000 FEE 435954 20294 \N \N 6040948 2025-03-19 23:53:44.141 2025-03-19 23:53:44.141 800 FEE 435831 7558 \N \N 6040949 2025-03-19 23:53:44.141 2025-03-19 23:53:44.141 7200 TIP 435831 9529 \N \N 6040959 2025-03-19 23:57:23.116 2025-03-19 23:57:23.116 12800 FEE 435921 11590 \N \N 6040960 2025-03-19 23:57:23.116 2025-03-19 23:57:23.116 115200 TIP 435921 2528 \N \N 6040964 2025-03-19 23:58:17.556 2025-03-19 23:58:17.556 800 FEE 435904 669 \N \N 6040965 2025-03-19 23:58:17.556 2025-03-19 23:58:17.556 7200 TIP 435904 21026 \N \N 6040971 2025-03-20 00:00:11.997 2025-03-20 00:00:11.997 1000 FEE 435957 20973 \N \N 6040981 2025-03-20 00:05:48.081 2025-03-20 00:05:48.081 1000 FEE 435961 659 \N \N 6041000 2025-03-20 00:14:05.231 2025-03-20 00:14:05.231 1100 FEE 435924 17064 \N \N 6041001 2025-03-20 00:14:05.231 2025-03-20 00:14:05.231 9900 TIP 435924 641 \N \N 6041004 2025-03-20 00:14:51.102 2025-03-20 00:14:51.102 1100 FEE 435922 1320 \N \N 6041005 2025-03-20 00:14:51.102 2025-03-20 00:14:51.102 9900 TIP 435922 9242 \N \N 6041012 2025-03-20 00:15:03.669 2025-03-20 00:15:03.669 1000 FEE 435488 16336 \N \N 6041013 2025-03-20 00:15:03.669 2025-03-20 00:15:03.669 9000 TIP 435488 18601 \N \N 6041020 2025-03-20 00:15:06.348 2025-03-20 00:15:06.348 1000 FEE 435718 14688 \N \N 6041021 2025-03-20 00:15:06.348 2025-03-20 00:15:06.348 9000 TIP 435718 21356 \N \N 6041034 2025-03-20 00:15:11.397 2025-03-20 00:15:11.397 1000 FEE 435902 15052 \N \N 6155080 2025-03-29 08:20:46.295 2025-03-29 08:20:46.295 100 FEE 448059 9159 \N \N 6155081 2025-03-29 08:20:46.295 2025-03-29 08:20:46.295 900 TIP 448059 1261 \N \N 6155103 2025-03-29 08:23:40.569 2025-03-29 08:23:40.569 7600 FEE 448356 20603 \N \N 6155104 2025-03-29 08:23:40.569 2025-03-29 08:23:40.569 68400 TIP 448356 15386 \N \N 6155113 2025-03-29 08:24:50.002 2025-03-29 08:24:50.002 200 FEE 448040 12139 \N \N 6155114 2025-03-29 08:24:50.002 2025-03-29 08:24:50.002 1800 TIP 448040 20811 \N \N 6155128 2025-03-29 08:26:21.202 2025-03-29 08:26:21.202 1000 FEE 448361 7673 \N \N 6155136 2025-03-29 08:26:32.984 2025-03-29 08:26:32.984 2100 FEE 448061 6765 \N \N 6155137 2025-03-29 08:26:32.984 2025-03-29 08:26:32.984 18900 TIP 448061 17221 \N \N 6155179 2025-03-29 08:28:02.187 2025-03-29 08:28:02.187 1600 FEE 447903 15890 \N \N 6155180 2025-03-29 08:28:02.187 2025-03-29 08:28:02.187 14400 TIP 447903 7425 \N \N 6155196 2025-03-29 08:29:31.135 2025-03-29 08:29:31.135 1000 FEE 448367 20495 \N \N 6155199 2025-03-29 08:29:39.906 2025-03-29 08:29:39.906 2100 FEE 448293 21091 \N \N 6155200 2025-03-29 08:29:39.906 2025-03-29 08:29:39.906 18900 TIP 448293 1145 \N \N 6155209 2025-03-29 08:29:50.099 2025-03-29 08:29:50.099 2000 FEE 448349 826 \N \N 6155210 2025-03-29 08:29:50.099 2025-03-29 08:29:50.099 18000 TIP 448349 20586 \N \N 6155226 2025-03-29 08:30:01.706 2025-03-29 08:30:01.706 1000 FEE 448201 657 \N \N 6155227 2025-03-29 08:30:01.706 2025-03-29 08:30:01.706 9000 TIP 448201 5904 \N \N 6155238 2025-03-29 08:30:09.795 2025-03-29 08:30:09.795 1000 FEE 448141 17541 \N \N 6155239 2025-03-29 08:30:09.795 2025-03-29 08:30:09.795 9000 TIP 448141 1038 \N \N 6155259 2025-03-29 08:31:41.865 2025-03-29 08:31:41.865 2100 FEE 448369 664 \N \N 6155260 2025-03-29 08:31:41.865 2025-03-29 08:31:41.865 18900 TIP 448369 19502 \N \N 6155287 2025-03-29 08:33:20.433 2025-03-29 08:33:20.433 10100 FEE 447944 1272 \N \N 6155288 2025-03-29 08:33:20.433 2025-03-29 08:33:20.433 90900 TIP 447944 4754 \N \N 6155294 2025-03-29 08:33:36.897 2025-03-29 08:33:36.897 1000 FEE 448377 20225 \N \N 6155305 2025-03-29 08:34:00.797 2025-03-29 08:34:00.797 800 FEE 447280 20588 \N \N 6155306 2025-03-29 08:34:00.797 2025-03-29 08:34:00.797 7200 TIP 447280 9418 \N \N 6155347 2025-03-29 08:35:04.339 2025-03-29 08:35:04.339 2100 FEE 448227 2224 \N \N 6155348 2025-03-29 08:35:04.339 2025-03-29 08:35:04.339 18900 TIP 448227 21523 \N \N 6155377 2025-03-29 08:37:04.855 2025-03-29 08:37:04.855 2100 FEE 448331 20710 \N \N 6155378 2025-03-29 08:37:04.855 2025-03-29 08:37:04.855 18900 TIP 448331 16176 \N \N 6155382 2025-03-29 08:37:14.13 2025-03-29 08:37:14.13 2100 FEE 448244 11999 \N \N 6155383 2025-03-29 08:37:14.13 2025-03-29 08:37:14.13 18900 TIP 448244 717 \N \N 6155388 2025-03-29 08:37:58.581 2025-03-29 08:37:58.581 21000 FEE 448385 836 \N \N 6155394 2025-03-29 08:38:37.169 2025-03-29 08:38:37.169 2100 FEE 448201 736 \N \N 6155395 2025-03-29 08:38:37.169 2025-03-29 08:38:37.169 18900 TIP 448201 20500 \N \N 6155439 2025-03-29 08:39:17.651 2025-03-29 08:39:17.651 2100 FEE 448241 14465 \N \N 6155440 2025-03-29 08:39:17.651 2025-03-29 08:39:17.651 18900 TIP 448241 21271 \N \N 6155449 2025-03-29 08:39:38.685 2025-03-29 08:39:38.685 1000 FEE 448381 2329 \N \N 6155450 2025-03-29 08:39:38.685 2025-03-29 08:39:38.685 9000 TIP 448381 8004 \N \N 6155494 2025-03-29 08:42:52.681 2025-03-29 08:42:52.681 1000 FEE 448395 21148 \N \N 6155535 2025-03-29 08:44:25.794 2025-03-29 08:44:25.794 1000 POLL 448029 2347 \N \N 6155565 2025-03-29 08:45:25.224 2025-03-29 08:45:25.224 2100 FEE 448392 12291 \N \N 6155566 2025-03-29 08:45:25.224 2025-03-29 08:45:25.224 18900 TIP 448392 1564 \N \N 6158707 2025-03-29 14:36:31.543 2025-03-29 14:36:31.543 9000 TIP 448716 14271 \N \N 6158733 2025-03-29 14:37:56.253 2025-03-29 14:37:56.253 1000 FEE 448730 9655 \N \N 6158734 2025-03-29 14:37:56.253 2025-03-29 14:37:56.253 9000 TIP 448730 9307 \N \N 6158746 2025-03-29 14:38:15.006 2025-03-29 14:38:15.006 1000 FEE 448732 10591 \N \N 6158747 2025-03-29 14:38:15.006 2025-03-29 14:38:15.006 9000 TIP 448732 7389 \N \N 6158762 2025-03-29 14:42:43.847 2025-03-29 14:42:43.847 3000 FEE 448773 21555 \N \N 6158763 2025-03-29 14:42:43.847 2025-03-29 14:42:43.847 27000 TIP 448773 694 \N \N 6158784 2025-03-29 14:44:55.318 2025-03-29 14:44:55.318 1000 FEE 448775 1495 \N \N 6158815 2025-03-29 14:47:49.066 2025-03-29 14:47:49.066 100 FEE 448676 8469 \N \N 6158816 2025-03-29 14:47:49.066 2025-03-29 14:47:49.066 900 TIP 448676 15491 \N \N 6158819 2025-03-29 14:47:50.065 2025-03-29 14:47:50.065 9000 FEE 448676 5444 \N \N 6158820 2025-03-29 14:47:50.065 2025-03-29 14:47:50.065 81000 TIP 448676 14657 \N \N 6158836 2025-03-29 14:50:24.084 2025-03-29 14:50:24.084 7700 FEE 448617 21248 \N \N 6158837 2025-03-29 14:50:24.084 2025-03-29 14:50:24.084 69300 TIP 448617 20701 \N \N 6158858 2025-03-29 14:53:40.819 2025-03-29 14:53:40.819 3000 FEE 448746 16680 \N \N 6158859 2025-03-29 14:53:40.819 2025-03-29 14:53:40.819 27000 TIP 448746 16684 \N \N 6158864 2025-03-29 14:54:27.364 2025-03-29 14:54:27.364 1000 FEE 448780 3353 \N \N 6158872 2025-03-29 14:55:18.523 2025-03-29 14:55:18.523 2100 FEE 448769 21688 \N \N 6158873 2025-03-29 14:55:18.523 2025-03-29 14:55:18.523 18900 TIP 448769 17014 \N \N 6158901 2025-03-29 15:01:56.204 2025-03-29 15:01:56.204 1000 FEE 448765 9378 \N \N 6158902 2025-03-29 15:01:56.204 2025-03-29 15:01:56.204 9000 TIP 448765 20179 \N \N 6158934 2025-03-29 15:05:40.186 2025-03-29 15:05:40.186 77000 DONT_LIKE_THIS 448524 1468 \N \N 6160925 2025-03-29 19:13:04.8 2025-03-29 19:13:04.8 7100 FEE 448061 18101 \N \N 6160926 2025-03-29 19:13:04.8 2025-03-29 19:13:04.8 63900 TIP 448061 4250 \N \N 6160937 2025-03-29 19:14:38.189 2025-03-29 19:14:38.189 10100 FEE 448817 1652 \N \N 6160938 2025-03-29 19:14:38.189 2025-03-29 19:14:38.189 90900 TIP 448817 1970 \N \N 6160973 2025-03-29 19:26:37.008 2025-03-29 19:26:37.008 2700 FEE 448921 20642 \N \N 6160974 2025-03-29 19:26:37.008 2025-03-29 19:26:37.008 24300 TIP 448921 10690 \N \N 6160977 2025-03-29 19:26:37.423 2025-03-29 19:26:37.423 2700 FEE 448921 19117 \N \N 6160978 2025-03-29 19:26:37.423 2025-03-29 19:26:37.423 24300 TIP 448921 1120 \N \N 6111574 2025-03-26 02:50:26.498 2025-03-26 02:50:26.498 1300 FEE 443319 12220 \N \N 6111575 2025-03-26 02:50:26.498 2025-03-26 02:50:26.498 11700 TIP 443319 11527 \N \N 6111586 2025-03-26 02:50:27.439 2025-03-26 02:50:27.439 1300 FEE 443319 5520 \N \N 6111587 2025-03-26 02:50:27.439 2025-03-26 02:50:27.439 11700 TIP 443319 8954 \N \N 6111596 2025-03-26 02:50:28.322 2025-03-26 02:50:28.322 1300 FEE 443319 19198 \N \N 6111597 2025-03-26 02:50:28.322 2025-03-26 02:50:28.322 11700 TIP 443319 17321 \N \N 6111602 2025-03-26 02:50:28.796 2025-03-26 02:50:28.796 1300 FEE 443319 16301 \N \N 6111603 2025-03-26 02:50:28.796 2025-03-26 02:50:28.796 11700 TIP 443319 16126 \N \N 6111606 2025-03-26 02:50:29.351 2025-03-26 02:50:29.351 1300 FEE 443319 630 \N \N 6111607 2025-03-26 02:50:29.351 2025-03-26 02:50:29.351 11700 TIP 443319 13162 \N \N 6111612 2025-03-26 02:50:29.819 2025-03-26 02:50:29.819 1300 FEE 443319 11144 \N \N 6111613 2025-03-26 02:50:29.819 2025-03-26 02:50:29.819 11700 TIP 443319 14791 \N \N 6111620 2025-03-26 02:50:30.553 2025-03-26 02:50:30.553 1300 FEE 443319 17103 \N \N 6111621 2025-03-26 02:50:30.553 2025-03-26 02:50:30.553 11700 TIP 443319 4754 \N \N 6111634 2025-03-26 02:50:39.888 2025-03-26 02:50:39.888 5700 FEE 443339 5427 \N \N 6111635 2025-03-26 02:50:39.888 2025-03-26 02:50:39.888 51300 TIP 443339 16929 \N \N 6111636 2025-03-26 02:50:49.837 2025-03-26 02:50:49.837 1000 FEE 443354 656 \N \N 6111647 2025-03-26 02:51:59.449 2025-03-26 02:51:59.449 1000 FEE 443356 1012 \N \N 6111678 2025-03-26 02:55:41.404 2025-03-26 02:55:41.404 100 FEE 442627 14404 \N \N 6111679 2025-03-26 02:55:41.404 2025-03-26 02:55:41.404 900 TIP 442627 713 \N \N 6111696 2025-03-26 02:59:22.974 2025-03-26 02:59:22.974 1000 FEE 443361 10493 \N \N 6111724 2025-03-26 03:07:14.612 2025-03-26 03:07:14.612 200 FEE 443363 18601 \N \N 6111725 2025-03-26 03:07:14.612 2025-03-26 03:07:14.612 1800 TIP 443363 17714 \N \N 6111736 2025-03-26 03:08:57.158 2025-03-26 03:08:57.158 1000 FEE 443319 18923 \N \N 6111737 2025-03-26 03:08:57.158 2025-03-26 03:08:57.158 9000 TIP 443319 12368 \N \N 6111744 2025-03-26 03:10:23.507 2025-03-26 03:10:23.507 500 FEE 443332 20979 \N \N 6111745 2025-03-26 03:10:23.507 2025-03-26 03:10:23.507 4500 TIP 443332 13327 \N \N 6111746 2025-03-26 03:10:30.396 2025-03-26 03:10:30.396 210000 FEE 443367 1495 \N \N 6111775 2025-03-26 03:16:09.421 2025-03-26 03:16:09.421 2100 FEE 443371 1007 \N \N 6111776 2025-03-26 03:16:09.421 2025-03-26 03:16:09.421 18900 TIP 443371 16912 \N \N 6111790 2025-03-26 03:18:24.846 2025-03-26 03:18:24.846 1000 POLL 442163 7659 \N \N 6111798 2025-03-26 03:21:42.9 2025-03-26 03:21:42.9 5000 FEE 443376 13076 \N \N 6111806 2025-03-26 03:25:23.792 2025-03-26 03:25:23.792 2100 FEE 443319 10096 \N \N 6111807 2025-03-26 03:25:23.792 2025-03-26 03:25:23.792 18900 TIP 443319 19512 \N \N 6143594 2025-03-28 10:10:39.276 2025-03-28 10:10:39.276 10100 FEE 446937 21036 \N \N 6143595 2025-03-28 10:10:39.276 2025-03-28 10:10:39.276 90900 TIP 446937 20117 \N \N 6143625 2025-03-28 10:14:49.022 2025-03-28 10:14:49.022 10100 FEE 446628 7580 \N \N 6143626 2025-03-28 10:14:49.022 2025-03-28 10:14:49.022 90900 TIP 446628 2459 \N \N 6143652 2025-03-28 10:20:09.433 2025-03-28 10:20:09.433 1000 FEE 447178 782 \N \N 6143658 2025-03-28 10:21:47.397 2025-03-28 10:21:47.397 1000 FEE 447180 16724 \N \N 6143659 2025-03-28 10:22:04.788 2025-03-28 10:22:04.788 7700 FEE 447179 634 \N \N 6143660 2025-03-28 10:22:04.788 2025-03-28 10:22:04.788 69300 TIP 447179 3706 \N \N 6143686 2025-03-28 10:28:02.533 2025-03-28 10:28:02.533 2100 FEE 403036 15146 \N \N 6143687 2025-03-28 10:28:02.533 2025-03-28 10:28:02.533 18900 TIP 403036 630 \N \N 6143703 2025-03-28 10:29:41.982 2025-03-28 10:29:41.982 1000 FEE 447189 20757 \N \N 6143744 2025-03-28 10:33:36.429 2025-03-28 10:33:36.429 900 FEE 446662 20980 \N \N 6143745 2025-03-28 10:33:36.429 2025-03-28 10:33:36.429 8100 TIP 446662 20979 \N \N 6143762 2025-03-28 10:34:34.311 2025-03-28 10:34:34.311 800 FEE 447164 624 \N \N 6143763 2025-03-28 10:34:34.311 2025-03-28 10:34:34.311 7200 TIP 447164 4459 \N \N 6143765 2025-03-28 10:36:02.587 2025-03-28 10:36:02.587 1000 FEE 447195 17050 \N \N 6143787 2025-03-28 10:39:55.525 2025-03-28 10:39:55.525 1000 POLL 446942 20745 \N \N 6143804 2025-03-28 10:44:41.68 2025-03-28 10:44:41.68 1000 FEE 447207 20969 \N \N 6143807 2025-03-28 10:44:45.633 2025-03-28 10:44:45.633 300 FEE 447204 19193 \N \N 6143808 2025-03-28 10:44:45.633 2025-03-28 10:44:45.633 2700 TIP 447204 18241 \N \N 6143829 2025-03-28 10:49:15.133 2025-03-28 10:49:15.133 1000 FEE 447209 21248 \N \N 6143833 2025-03-28 10:49:57.767 2025-03-28 10:49:57.767 100 FEE 446901 19346 \N \N 6143834 2025-03-28 10:49:57.767 2025-03-28 10:49:57.767 900 TIP 446901 13378 \N \N 6143846 2025-03-28 10:53:58.279 2025-03-28 10:53:58.279 1000 FEE 447212 661 \N \N 6143863 2025-03-28 10:55:46.795 2025-03-28 10:55:46.795 5000 FEE 446657 17798 \N \N 6143864 2025-03-28 10:55:46.795 2025-03-28 10:55:46.795 45000 TIP 446657 16970 \N \N 6143896 2025-03-28 10:58:47.297 2025-03-28 10:58:47.297 1000 FEE 447218 14258 \N \N 6143909 2025-03-28 10:59:41.759 2025-03-28 10:59:41.759 1000 FEE 447199 21798 \N \N 6143910 2025-03-28 10:59:41.759 2025-03-28 10:59:41.759 9000 TIP 447199 13365 \N \N 6143920 2025-03-28 11:01:21.918 2025-03-28 11:01:21.918 1000 FEE 447222 17690 \N \N 6143929 2025-03-28 11:01:58.189 2025-03-28 11:01:58.189 7600 FEE 447197 8870 \N \N 6143930 2025-03-28 11:01:58.189 2025-03-28 11:01:58.189 68400 TIP 447197 1970 \N \N 6143948 2025-03-28 11:02:52.5 2025-03-28 11:02:52.5 7600 FEE 446942 19655 \N \N 6143949 2025-03-28 11:02:52.5 2025-03-28 11:02:52.5 68400 TIP 446942 21666 \N \N 6143952 2025-03-28 11:02:59.66 2025-03-28 11:02:59.66 2100 FEE 447184 20864 \N \N 6143953 2025-03-28 11:02:59.66 2025-03-28 11:02:59.66 18900 TIP 447184 15536 \N \N 6143976 2025-03-28 11:05:00.768 2025-03-28 11:05:00.768 1700 FEE 447225 11220 \N \N 6143977 2025-03-28 11:05:00.768 2025-03-28 11:05:00.768 15300 TIP 447225 18178 \N \N 6143987 2025-03-28 11:05:19.954 2025-03-28 11:05:19.954 1000 FEE 447226 6058 \N \N 6143989 2025-03-28 11:05:43.866 2025-03-28 11:05:43.866 1000 FEE 447224 1273 \N \N 6143990 2025-03-28 11:05:43.866 2025-03-28 11:05:43.866 9000 TIP 447224 20026 \N \N 6143995 2025-03-28 11:05:44.923 2025-03-28 11:05:44.923 1000 FEE 447224 917 \N \N 6143996 2025-03-28 11:05:44.923 2025-03-28 11:05:44.923 9000 TIP 447224 11515 \N \N 6143999 2025-03-28 11:05:51.186 2025-03-28 11:05:51.186 1000 FEE 447228 663 \N \N 6144009 2025-03-28 11:06:48.934 2025-03-28 11:06:48.934 1100 FEE 447138 8416 \N \N 6144010 2025-03-28 11:06:48.934 2025-03-28 11:06:48.934 9900 TIP 447138 18017 \N \N 6144011 2025-03-28 11:06:52.513 2025-03-28 11:06:52.513 1000 FEE 447230 6419 \N \N 6144024 2025-03-28 11:07:11.668 2025-03-28 11:07:11.668 1000 FEE 447225 15556 \N \N 6144025 2025-03-28 11:07:11.668 2025-03-28 11:07:11.668 9000 TIP 447225 8945 \N \N 6144030 2025-03-28 11:07:12.892 2025-03-28 11:07:12.892 1000 FEE 447225 5825 \N \N 6039976 2025-03-19 19:42:21.579 2025-03-19 19:42:21.579 1000 FEE 435667 17091 \N \N 6039977 2025-03-19 19:42:21.579 2025-03-19 19:42:21.579 9000 TIP 435667 2963 \N \N 6040012 2025-03-19 19:53:57.615 2025-03-19 19:53:57.615 11100 FEE 434410 12169 \N \N 6040013 2025-03-19 19:53:57.615 2025-03-19 19:53:57.615 99900 TIP 434410 17519 \N \N 6040019 2025-03-19 19:55:37.485 2025-03-19 19:55:37.485 100000 FEE 435835 1474 \N \N 6040037 2025-03-19 20:04:14.919 2025-03-19 20:04:14.919 10000 FEE 435840 7125 \N \N 6040054 2025-03-19 20:13:39.577 2025-03-19 20:13:39.577 1000 FEE 435846 20710 \N \N 6040075 2025-03-19 20:22:10.626 2025-03-19 20:22:10.626 100 FEE 435776 7913 \N \N 6040076 2025-03-19 20:22:10.626 2025-03-19 20:22:10.626 900 TIP 435776 11670 \N \N 6040083 2025-03-19 20:22:11.842 2025-03-19 20:22:11.842 100 FEE 435776 14260 \N \N 6040084 2025-03-19 20:22:11.842 2025-03-19 20:22:11.842 900 TIP 435776 21506 \N \N 6040115 2025-03-19 20:36:59.9 2025-03-19 20:36:59.9 1000 FEE 435857 11873 \N \N 6040119 2025-03-19 20:37:18.73 2025-03-19 20:37:18.73 1000 POLL 435516 6765 \N \N 6040126 2025-03-19 20:41:03.867 2025-03-19 20:41:03.867 10100 FEE 435847 9920 \N \N 6040127 2025-03-19 20:41:03.867 2025-03-19 20:41:03.867 90900 TIP 435847 1697 \N \N 6040138 2025-03-19 20:46:39.132 2025-03-19 20:46:39.132 0 FEE 435860 981 \N \N 6040151 2025-03-19 20:51:27.461 2025-03-19 20:51:27.461 100 FEE 435639 19888 \N \N 6040152 2025-03-19 20:51:27.461 2025-03-19 20:51:27.461 900 TIP 435639 19826 \N \N 6040162 2025-03-19 20:52:49.151 2025-03-19 20:52:49.151 1000 FEE 435246 1620 \N \N 6040163 2025-03-19 20:52:49.151 2025-03-19 20:52:49.151 9000 TIP 435246 894 \N \N 6040182 2025-03-19 20:59:20.472 2025-03-19 20:59:20.472 2100 FEE 435803 21424 \N \N 6040183 2025-03-19 20:59:20.472 2025-03-19 20:59:20.472 18900 TIP 435803 8469 \N \N 6040190 2025-03-19 21:01:57.014 2025-03-19 21:01:57.014 1000 FEE 435871 19673 \N \N 6040200 2025-03-19 21:04:45.512 2025-03-19 21:04:45.512 100 FEE 435242 8729 \N \N 6040201 2025-03-19 21:04:45.512 2025-03-19 21:04:45.512 900 TIP 435242 19980 \N \N 6040208 2025-03-19 21:04:46.109 2025-03-19 21:04:46.109 100 FEE 435242 19378 \N \N 6040209 2025-03-19 21:04:46.109 2025-03-19 21:04:46.109 900 TIP 435242 5359 \N \N 6040213 2025-03-19 21:05:23.145 2025-03-19 21:05:23.145 300 FEE 435837 11523 \N \N 6040214 2025-03-19 21:05:23.145 2025-03-19 21:05:23.145 2700 TIP 435837 21498 \N \N 6040231 2025-03-19 21:05:48.829 2025-03-19 21:05:48.829 400 FEE 435328 20094 \N \N 6040232 2025-03-19 21:05:48.829 2025-03-19 21:05:48.829 3600 TIP 435328 20623 \N \N 6040236 2025-03-19 21:07:02.081 2025-03-19 21:07:02.081 1000 FEE 435874 2583 \N \N 6040238 2025-03-19 21:07:53.609 2025-03-19 21:07:53.609 100 FEE 435217 9863 \N \N 6040239 2025-03-19 21:07:53.609 2025-03-19 21:07:53.609 900 TIP 435217 16842 \N \N 6040256 2025-03-19 21:09:54.444 2025-03-19 21:09:54.444 1000 FEE 435876 1650 \N \N 6040291 2025-03-19 21:24:36.353 2025-03-19 21:24:36.353 1000 FEE 435755 10283 \N \N 6040292 2025-03-19 21:24:36.353 2025-03-19 21:24:36.353 9000 TIP 435755 18068 \N \N 6040293 2025-03-19 21:24:43.064 2025-03-19 21:24:43.064 4000 FEE 435139 20117 \N \N 6040294 2025-03-19 21:24:43.064 2025-03-19 21:24:43.064 36000 TIP 435139 19005 \N \N 6040300 2025-03-19 21:25:17.539 2025-03-19 21:25:17.539 1000 FEE 435582 21180 \N \N 6040301 2025-03-19 21:25:17.539 2025-03-19 21:25:17.539 9000 TIP 435582 16432 \N \N 6040328 2025-03-19 21:38:05.258 2025-03-19 21:38:05.258 900 FEE 435746 5069 \N \N 6040329 2025-03-19 21:38:05.258 2025-03-19 21:38:05.258 8100 TIP 435746 21281 \N \N 6040341 2025-03-19 21:38:52.189 2025-03-19 21:38:52.189 900 FEE 435769 10102 \N \N 6040342 2025-03-19 21:38:52.189 2025-03-19 21:38:52.189 8100 TIP 435769 21501 \N \N 6040352 2025-03-19 21:39:39.428 2025-03-19 21:39:39.428 100 FEE 435826 10611 \N \N 6040353 2025-03-19 21:39:39.428 2025-03-19 21:39:39.428 900 TIP 435826 17708 \N \N 6040354 2025-03-19 21:39:39.612 2025-03-19 21:39:39.612 900 FEE 435826 20254 \N \N 6040355 2025-03-19 21:39:39.612 2025-03-19 21:39:39.612 8100 TIP 435826 7418 \N \N 6040362 2025-03-19 21:40:07.74 2025-03-19 21:40:07.74 100 FEE 435860 2748 \N \N 6040363 2025-03-19 21:40:07.74 2025-03-19 21:40:07.74 900 TIP 435860 17212 \N \N 6040364 2025-03-19 21:40:07.948 2025-03-19 21:40:07.948 900 FEE 435860 9200 \N \N 6040365 2025-03-19 21:40:07.948 2025-03-19 21:40:07.948 8100 TIP 435860 617 \N \N 6040375 2025-03-19 21:40:17.235 2025-03-19 21:40:17.235 7100 FEE 435799 1047 \N \N 6040376 2025-03-19 21:40:17.235 2025-03-19 21:40:17.235 63900 TIP 435799 7376 \N \N 6040397 2025-03-19 21:43:34.357 2025-03-19 21:43:34.357 800 FEE 435328 21498 \N \N 6040398 2025-03-19 21:43:34.357 2025-03-19 21:43:34.357 7200 TIP 435328 1652 \N \N 6040437 2025-03-19 21:46:04.811 2025-03-19 21:46:04.811 1000 FEE 435890 917 \N \N 6040438 2025-03-19 21:46:11.673 2025-03-19 21:46:11.673 800 FEE 435808 20479 \N \N 6040439 2025-03-19 21:46:11.673 2025-03-19 21:46:11.673 7200 TIP 435808 21498 \N \N 6040451 2025-03-19 21:51:57.69 2025-03-19 21:51:57.69 2100 FEE 435769 19829 \N \N 6040452 2025-03-19 21:51:57.69 2025-03-19 21:51:57.69 18900 TIP 435769 11038 \N \N 6040461 2025-03-19 21:55:07.528 2025-03-19 21:55:07.528 10000 FEE 435847 11144 \N \N 6040462 2025-03-19 21:55:07.528 2025-03-19 21:55:07.528 90000 TIP 435847 20337 \N \N 6040465 2025-03-19 21:55:09.767 2025-03-19 21:55:09.767 10000 FEE 435847 12808 \N \N 6040466 2025-03-19 21:55:09.767 2025-03-19 21:55:09.767 90000 TIP 435847 20756 \N \N 6040488 2025-03-19 22:00:36.919 2025-03-19 22:00:36.919 1000 FEE 435900 21506 \N \N 6040525 2025-03-19 22:15:59.509 2025-03-19 22:15:59.509 2100 FEE 435328 10016 \N \N 6040526 2025-03-19 22:15:59.509 2025-03-19 22:15:59.509 18900 TIP 435328 636 \N \N 6040527 2025-03-19 22:16:00.218 2025-03-19 22:16:00.218 2100 FEE 435812 2123 \N \N 6040528 2025-03-19 22:16:00.218 2025-03-19 22:16:00.218 18900 TIP 435812 634 \N \N 6040533 2025-03-19 22:16:03.457 2025-03-19 22:16:03.457 2100 FEE 435488 20523 \N \N 6040534 2025-03-19 22:16:03.457 2025-03-19 22:16:03.457 18900 TIP 435488 654 \N \N 6040545 2025-03-19 22:16:08.135 2025-03-19 22:16:08.135 2100 FEE 435826 21832 \N \N 6040546 2025-03-19 22:16:08.135 2025-03-19 22:16:08.135 18900 TIP 435826 19842 \N \N 6040577 2025-03-19 22:17:51.533 2025-03-19 22:17:51.533 100 FEE 435902 20602 \N \N 6040578 2025-03-19 22:17:51.533 2025-03-19 22:17:51.533 900 TIP 435902 20642 \N \N 6040579 2025-03-19 22:17:51.7 2025-03-19 22:17:51.7 100 FEE 435902 5017 \N \N 6040580 2025-03-19 22:17:51.7 2025-03-19 22:17:51.7 900 TIP 435902 670 \N \N 6040612 2025-03-19 22:23:50.638 2025-03-19 22:23:50.638 1000 FEE 435909 11454 \N \N 6040637 2025-03-19 22:30:12.023 2025-03-19 22:30:12.023 100 FEE 435242 21518 \N \N 6040638 2025-03-19 22:30:12.023 2025-03-19 22:30:12.023 900 TIP 435242 9476 \N \N 6040669 2025-03-19 22:41:42.856 2025-03-19 22:41:42.856 1000 FEE 435812 695 \N \N 6040670 2025-03-19 22:41:42.856 2025-03-19 22:41:42.856 9000 TIP 435812 985 \N \N 6040735 2025-03-19 22:48:56.45 2025-03-19 22:48:56.45 21000 FEE 435926 4395 \N \N 6040774 2025-03-19 22:55:02.51 2025-03-19 22:55:02.51 1000 FEE 435932 3506 \N \N 6040778 2025-03-19 22:55:35.439 2025-03-19 22:55:35.439 0 FEE 383547 16347 \N \N 6040792 2025-03-19 22:57:57.939 2025-03-19 22:57:57.939 100 FEE 435639 21044 \N \N 6040793 2025-03-19 22:57:57.939 2025-03-19 22:57:57.939 900 TIP 435639 15100 \N \N 6040859 2025-03-19 23:19:20.094 2025-03-19 23:19:20.094 200 FEE 435030 10818 \N \N 6040860 2025-03-19 23:19:20.094 2025-03-19 23:19:20.094 1800 TIP 435030 15577 \N \N 6040903 2025-03-19 23:34:18.168 2025-03-19 23:34:18.168 10000 FEE 232964 8059 \N \N 6040904 2025-03-19 23:34:18.168 2025-03-19 23:34:18.168 90000 TIP 232964 1825 \N \N 6111619 2025-03-26 02:50:30.339 2025-03-26 02:50:30.339 11700 TIP 443319 20370 \N \N 6111622 2025-03-26 02:50:30.743 2025-03-26 02:50:30.743 1300 FEE 443319 20187 \N \N 6111623 2025-03-26 02:50:30.743 2025-03-26 02:50:30.743 11700 TIP 443319 14260 \N \N 6111665 2025-03-26 02:54:43.841 2025-03-26 02:54:43.841 500 FEE 443099 14357 \N \N 6111666 2025-03-26 02:54:43.841 2025-03-26 02:54:43.841 4500 TIP 443099 822 \N \N 6111680 2025-03-26 02:55:44.076 2025-03-26 02:55:44.076 100 FEE 443129 21281 \N \N 6111681 2025-03-26 02:55:44.076 2025-03-26 02:55:44.076 900 TIP 443129 18274 \N \N 6111682 2025-03-26 02:55:46.05 2025-03-26 02:55:46.05 100 FEE 442894 5752 \N \N 6111683 2025-03-26 02:55:46.05 2025-03-26 02:55:46.05 900 TIP 442894 654 \N \N 6111713 2025-03-26 03:03:57.288 2025-03-26 03:03:57.288 10000 FEE 443363 20614 \N \N 6111733 2025-03-26 03:07:45.124 2025-03-26 03:07:45.124 1000 FEE 443299 20647 \N \N 6111734 2025-03-26 03:07:45.124 2025-03-26 03:07:45.124 9000 TIP 443299 1802 \N \N 6111757 2025-03-26 03:12:26.704 2025-03-26 03:12:26.704 5000 FEE 443225 13042 \N \N 6111758 2025-03-26 03:12:26.704 2025-03-26 03:12:26.704 45000 TIP 443225 14168 \N \N 6111769 2025-03-26 03:14:50.604 2025-03-26 03:14:50.604 100000 FEE 443372 963 \N \N 6111784 2025-03-26 03:16:54.111 2025-03-26 03:16:54.111 3200 FEE 443372 2832 \N \N 6111785 2025-03-26 03:16:54.111 2025-03-26 03:16:54.111 28800 TIP 443372 2640 \N \N 6111809 2025-03-26 03:26:12.441 2025-03-26 03:26:12.441 1000 FEE 443336 16988 \N \N 6111810 2025-03-26 03:26:12.441 2025-03-26 03:26:12.441 9000 TIP 443336 12102 \N \N 6111828 2025-03-26 03:28:29.271 2025-03-26 03:28:29.271 5000 FEE 443380 12097 \N \N 6111829 2025-03-26 03:28:29.271 2025-03-26 03:28:29.271 45000 TIP 443380 21296 \N \N 6111830 2025-03-26 03:28:30.305 2025-03-26 03:28:30.305 5000 FEE 443381 4654 \N \N 6111831 2025-03-26 03:28:30.305 2025-03-26 03:28:30.305 45000 TIP 443381 20904 \N \N 6111905 2025-03-26 03:39:18.691 2025-03-26 03:39:18.691 2100 FEE 442608 5112 \N \N 6111906 2025-03-26 03:39:18.691 2025-03-26 03:39:18.691 18900 TIP 442608 1424 \N \N 6111909 2025-03-26 03:39:24.161 2025-03-26 03:39:24.161 1000 FEE 443400 21603 \N \N 6111935 2025-03-26 03:46:22.271 2025-03-26 03:46:22.271 4200 FEE 443319 1603 \N \N 6111936 2025-03-26 03:46:22.271 2025-03-26 03:46:22.271 37800 TIP 443319 1825 \N \N 6112020 2025-03-26 04:02:01.557 2025-03-26 04:02:01.557 2100 FEE 443367 18351 \N \N 6112021 2025-03-26 04:02:01.557 2025-03-26 04:02:01.557 18900 TIP 443367 21518 \N \N 6112026 2025-03-26 04:03:41.51 2025-03-26 04:03:41.51 1000 FEE 443422 7395 \N \N 6112035 2025-03-26 04:06:30.164 2025-03-26 04:06:30.164 1000 FEE 443424 21526 \N \N 6112037 2025-03-26 04:07:14.504 2025-03-26 04:07:14.504 1000 FEE 443425 17226 \N \N 6112049 2025-03-26 04:08:16.416 2025-03-26 04:08:16.416 1000 FEE 443428 21036 \N \N 6112053 2025-03-26 04:08:30.825 2025-03-26 04:08:30.825 1000 FEE 443413 4167 \N \N 6112054 2025-03-26 04:08:30.825 2025-03-26 04:08:30.825 9000 TIP 443413 18528 \N \N 6112060 2025-03-26 04:09:45.692 2025-03-26 04:09:45.692 7000 DONT_LIKE_THIS 442859 20502 \N \N 6112064 2025-03-26 04:09:56.898 2025-03-26 04:09:56.898 5000 FEE 443178 4083 \N \N 6112065 2025-03-26 04:09:56.898 2025-03-26 04:09:56.898 45000 TIP 443178 1124 \N \N 6112072 2025-03-26 04:10:31.721 2025-03-26 04:10:31.721 1000 FEE 443432 721 \N \N 6112073 2025-03-26 04:10:48.171 2025-03-26 04:10:48.171 2100 FEE 443430 17690 \N \N 6112074 2025-03-26 04:10:48.171 2025-03-26 04:10:48.171 18900 TIP 443430 16230 \N \N 6112114 2025-03-26 04:13:26.068 2025-03-26 04:13:26.068 9000 FEE 443122 4048 \N \N 6112115 2025-03-26 04:13:26.068 2025-03-26 04:13:26.068 81000 TIP 443122 4027 \N \N 6112122 2025-03-26 04:13:34.904 2025-03-26 04:13:34.904 1000 FEE 443437 16808 \N \N 6112123 2025-03-26 04:13:34.97 2025-03-26 04:13:34.97 2100 FEE 443379 20254 \N \N 6112124 2025-03-26 04:13:34.97 2025-03-26 04:13:34.97 18900 TIP 443379 18269 \N \N 6112141 2025-03-26 04:15:16.644 2025-03-26 04:15:16.644 100 FEE 443107 11443 \N \N 6112142 2025-03-26 04:15:16.644 2025-03-26 04:15:16.644 900 TIP 443107 15192 \N \N 6112154 2025-03-26 04:16:16.357 2025-03-26 04:16:16.357 100 FEE 443160 951 \N \N 6112155 2025-03-26 04:16:16.357 2025-03-26 04:16:16.357 900 TIP 443160 9366 \N \N 6112190 2025-03-26 04:20:29.725 2025-03-26 04:20:29.725 1000 FEE 443448 10934 \N \N 6112209 2025-03-26 04:22:25.078 2025-03-26 04:22:25.078 2100 FEE 443336 21332 \N \N 6112210 2025-03-26 04:22:25.078 2025-03-26 04:22:25.078 18900 TIP 443336 21401 \N \N 6112216 2025-03-26 04:23:50.241 2025-03-26 04:23:50.241 100 FEE 443069 985 \N \N 6112217 2025-03-26 04:23:50.241 2025-03-26 04:23:50.241 900 TIP 443069 20811 \N \N 6112219 2025-03-26 04:24:17.143 2025-03-26 04:24:17.143 10000 FEE 443453 17535 \N \N 6112223 2025-03-26 04:24:47.916 2025-03-26 04:24:47.916 100 FEE 443091 8289 \N \N 6112224 2025-03-26 04:24:47.916 2025-03-26 04:24:47.916 900 TIP 443091 20781 \N \N 6112237 2025-03-26 04:25:28.074 2025-03-26 04:25:28.074 1000 FEE 443312 15139 \N \N 6112238 2025-03-26 04:25:28.074 2025-03-26 04:25:28.074 9000 TIP 443312 2724 \N \N 6112273 2025-03-26 04:31:19.941 2025-03-26 04:31:19.941 1000 FEE 440692 18231 \N \N 6112274 2025-03-26 04:31:19.941 2025-03-26 04:31:19.941 9000 TIP 440692 19446 \N \N 6112275 2025-03-26 04:31:20.403 2025-03-26 04:31:20.403 1000 FEE 440692 2016 \N \N 6112276 2025-03-26 04:31:20.403 2025-03-26 04:31:20.403 9000 TIP 440692 18525 \N \N 6112281 2025-03-26 04:31:22.169 2025-03-26 04:31:22.169 1000 FEE 440692 3683 \N \N 6112282 2025-03-26 04:31:22.169 2025-03-26 04:31:22.169 9000 TIP 440692 20993 \N \N 6112295 2025-03-26 04:32:39.861 2025-03-26 04:32:39.861 1000 FEE 443452 16834 \N \N 6112296 2025-03-26 04:32:39.861 2025-03-26 04:32:39.861 9000 TIP 443452 21248 \N \N 6112302 2025-03-26 04:33:22.967 2025-03-26 04:33:22.967 1000 FEE 443461 1620 \N \N 6112309 2025-03-26 04:35:26.613 2025-03-26 04:35:26.613 5700 FEE 443272 9337 \N \N 6112310 2025-03-26 04:35:26.613 2025-03-26 04:35:26.613 51300 TIP 443272 4225 \N \N 6112383 2025-03-26 04:44:41.132 2025-03-26 04:44:41.132 100000 FEE 443473 8176 \N \N 6112384 2025-03-26 04:44:41.132 2025-03-26 04:44:41.132 900000 TIP 443473 9476 \N \N 6112401 2025-03-26 04:45:30.819 2025-03-26 04:45:30.819 1000 FEE 442904 18068 \N \N 6112402 2025-03-26 04:45:30.819 2025-03-26 04:45:30.819 9000 TIP 442904 9171 \N \N 6112403 2025-03-26 04:45:30.863 2025-03-26 04:45:30.863 1000 FEE 442904 20058 \N \N 6112404 2025-03-26 04:45:30.863 2025-03-26 04:45:30.863 9000 TIP 442904 9295 \N \N 6112407 2025-03-26 04:45:30.934 2025-03-26 04:45:30.934 2100 FEE 443467 10270 \N \N 6112408 2025-03-26 04:45:30.934 2025-03-26 04:45:30.934 18900 TIP 443467 11423 \N \N 6112411 2025-03-26 04:45:31.214 2025-03-26 04:45:31.214 1000 FEE 442904 2710 \N \N 6112412 2025-03-26 04:45:31.214 2025-03-26 04:45:31.214 9000 TIP 442904 5017 \N \N 6112429 2025-03-26 04:45:33.189 2025-03-26 04:45:33.189 1000 FEE 442904 5425 \N \N 6112430 2025-03-26 04:45:33.189 2025-03-26 04:45:33.189 9000 TIP 442904 21119 \N \N 6112433 2025-03-26 04:45:34.123 2025-03-26 04:45:34.123 1000 FEE 442904 16097 \N \N 6112434 2025-03-26 04:45:34.123 2025-03-26 04:45:34.123 9000 TIP 442904 19126 \N \N 6112435 2025-03-26 04:45:34.181 2025-03-26 04:45:34.181 2000 FEE 442904 1175 \N \N 6112436 2025-03-26 04:45:34.181 2025-03-26 04:45:34.181 18000 TIP 442904 2577 \N \N 6112457 2025-03-26 04:45:40.632 2025-03-26 04:45:40.632 1000 FEE 442904 2741 \N \N 6112458 2025-03-26 04:45:40.632 2025-03-26 04:45:40.632 9000 TIP 442904 760 \N \N 6112467 2025-03-26 04:45:42.43 2025-03-26 04:45:42.43 1000 FEE 442904 21145 \N \N 6112468 2025-03-26 04:45:42.43 2025-03-26 04:45:42.43 9000 TIP 442904 18956 \N \N 6112487 2025-03-26 04:45:44.266 2025-03-26 04:45:44.266 1000 FEE 442904 2195 \N \N 6112488 2025-03-26 04:45:44.266 2025-03-26 04:45:44.266 9000 TIP 442904 686 \N \N 6112503 2025-03-26 04:45:46.413 2025-03-26 04:45:46.413 2000 FEE 442904 12278 \N \N 6112504 2025-03-26 04:45:46.413 2025-03-26 04:45:46.413 18000 TIP 442904 2196 \N \N 6112509 2025-03-26 04:45:46.87 2025-03-26 04:45:46.87 1000 FEE 442904 8989 \N \N 6112510 2025-03-26 04:45:46.87 2025-03-26 04:45:46.87 9000 TIP 442904 16267 \N \N 6112511 2025-03-26 04:45:47.118 2025-03-26 04:45:47.118 1000 FEE 442904 21263 \N \N 6112512 2025-03-26 04:45:47.118 2025-03-26 04:45:47.118 9000 TIP 442904 13174 \N \N 6112515 2025-03-26 04:45:47.528 2025-03-26 04:45:47.528 1000 FEE 442904 9820 \N \N 6111654 2025-03-26 02:53:12.53 2025-03-26 02:53:12.53 2600 FEE 443158 685 \N \N 6111655 2025-03-26 02:53:12.53 2025-03-26 02:53:12.53 23400 TIP 443158 21159 \N \N 6111657 2025-03-26 02:53:25.904 2025-03-26 02:53:25.904 2600 FEE 443031 20157 \N \N 6111658 2025-03-26 02:53:25.904 2025-03-26 02:53:25.904 23400 TIP 443031 10981 \N \N 6111661 2025-03-26 02:54:26.148 2025-03-26 02:54:26.148 500 FEE 442556 21416 \N \N 6111662 2025-03-26 02:54:26.148 2025-03-26 02:54:26.148 4500 TIP 442556 673 \N \N 6111663 2025-03-26 02:54:41.398 2025-03-26 02:54:41.398 500 FEE 443105 21540 \N \N 6111664 2025-03-26 02:54:41.398 2025-03-26 02:54:41.398 4500 TIP 443105 18423 \N \N 6111676 2025-03-26 02:55:34.034 2025-03-26 02:55:34.034 100 FEE 442820 3656 \N \N 6111677 2025-03-26 02:55:34.034 2025-03-26 02:55:34.034 900 TIP 442820 3544 \N \N 6111712 2025-03-26 03:03:52.466 2025-03-26 03:03:52.466 1000 POLL 442163 13553 \N \N 6111721 2025-03-26 03:06:39.065 2025-03-26 03:06:39.065 2100 FEE 443316 750 \N \N 6111722 2025-03-26 03:06:39.065 2025-03-26 03:06:39.065 18900 TIP 443316 1094 \N \N 6111729 2025-03-26 03:07:19.264 2025-03-26 03:07:19.264 500 FEE 442904 4062 \N \N 6111730 2025-03-26 03:07:19.264 2025-03-26 03:07:19.264 4500 TIP 442904 21712 \N \N 6111763 2025-03-26 03:12:56.487 2025-03-26 03:12:56.487 1000 FEE 443370 2709 \N \N 6111821 2025-03-26 03:27:31.309 2025-03-26 03:27:31.309 1000 FEE 443381 20102 \N \N 6111822 2025-03-26 03:27:37.626 2025-03-26 03:27:37.626 1000 FEE 443382 9921 \N \N 6111832 2025-03-26 03:28:41.299 2025-03-26 03:28:41.299 1000 FEE 443383 12049 \N \N 6111860 2025-03-26 03:34:05.14 2025-03-26 03:34:05.14 2100 FEE 443372 3686 \N \N 6111861 2025-03-26 03:34:05.14 2025-03-26 03:34:05.14 18900 TIP 443372 811 \N \N 6111874 2025-03-26 03:36:04.447 2025-03-26 03:36:04.447 1000 FEE 443325 13406 \N \N 6111875 2025-03-26 03:36:04.447 2025-03-26 03:36:04.447 9000 TIP 443325 10719 \N \N 6111879 2025-03-26 03:36:59.418 2025-03-26 03:36:59.418 20000 FEE 443274 9906 \N \N 6111880 2025-03-26 03:36:59.418 2025-03-26 03:36:59.418 180000 TIP 443274 18219 \N \N 6111885 2025-03-26 03:38:22.399 2025-03-26 03:38:22.399 1000 FEE 443397 17522 \N \N 6111895 2025-03-26 03:38:54.84 2025-03-26 03:38:54.84 2100 FEE 443397 925 \N \N 6111896 2025-03-26 03:38:54.84 2025-03-26 03:38:54.84 18900 TIP 443397 8269 \N \N 6111915 2025-03-26 03:40:43.553 2025-03-26 03:40:43.553 0 FEE 443398 725 \N \N 6111941 2025-03-26 03:46:59.024 2025-03-26 03:46:59.024 500 FEE 443274 21051 \N \N 6111942 2025-03-26 03:46:59.024 2025-03-26 03:46:59.024 4500 TIP 443274 3417 \N \N 6111968 2025-03-26 03:49:11.032 2025-03-26 03:49:11.032 1000 FEE 443407 1298 \N \N 6111992 2025-03-26 03:55:11.011 2025-03-26 03:55:11.011 2100 FEE 443358 21424 \N \N 6111993 2025-03-26 03:55:11.011 2025-03-26 03:55:11.011 18900 TIP 443358 18743 \N \N 6112002 2025-03-26 03:56:50.536 2025-03-26 03:56:50.536 1000 FEE 443415 20602 \N \N 6112031 2025-03-26 04:06:25.131 2025-03-26 04:06:25.131 5700 FEE 443395 1881 \N \N 6112032 2025-03-26 04:06:25.131 2025-03-26 04:06:25.131 51300 TIP 443395 14791 \N \N 6112038 2025-03-26 04:07:17.521 2025-03-26 04:07:17.521 5000 FEE 443399 21159 \N \N 6112039 2025-03-26 04:07:17.521 2025-03-26 04:07:17.521 45000 TIP 443399 6148 \N \N 6112041 2025-03-26 04:07:30.408 2025-03-26 04:07:30.408 100 FEE 443353 20979 \N \N 6112042 2025-03-26 04:07:30.408 2025-03-26 04:07:30.408 900 TIP 443353 13365 \N \N 6112075 2025-03-26 04:11:05.641 2025-03-26 04:11:05.641 100 FEE 443272 20554 \N \N 6112076 2025-03-26 04:11:05.641 2025-03-26 04:11:05.641 900 TIP 443272 2065 \N \N 6112077 2025-03-26 04:11:05.9 2025-03-26 04:11:05.9 900 FEE 443272 20409 \N \N 6112078 2025-03-26 04:11:05.9 2025-03-26 04:11:05.9 8100 TIP 443272 3377 \N \N 6112088 2025-03-26 04:11:52.644 2025-03-26 04:11:52.644 9000 FEE 443274 981 \N \N 6112089 2025-03-26 04:11:52.644 2025-03-26 04:11:52.644 81000 TIP 443274 1729 \N \N 6112097 2025-03-26 04:12:24.295 2025-03-26 04:12:24.295 900 FEE 443197 4048 \N \N 6112098 2025-03-26 04:12:24.295 2025-03-26 04:12:24.295 8100 TIP 443197 1439 \N \N 6112102 2025-03-26 04:12:41.601 2025-03-26 04:12:41.601 1000 FEE 443435 15526 \N \N 6112103 2025-03-26 04:12:49.278 2025-03-26 04:12:49.278 1600 FEE 443419 19292 \N \N 6112104 2025-03-26 04:12:49.278 2025-03-26 04:12:49.278 14400 TIP 443419 2593 \N \N 6112118 2025-03-26 04:13:28.482 2025-03-26 04:13:28.482 1000 FEE 443434 18673 \N \N 6112119 2025-03-26 04:13:28.482 2025-03-26 04:13:28.482 9000 TIP 443434 11516 \N \N 6112127 2025-03-26 04:13:45.961 2025-03-26 04:13:45.961 900 FEE 443108 9655 \N \N 6112128 2025-03-26 04:13:45.961 2025-03-26 04:13:45.961 8100 TIP 443108 17639 \N \N 6112151 2025-03-26 04:15:45.443 2025-03-26 04:15:45.443 90000 FEE 443107 19138 \N \N 6112152 2025-03-26 04:15:45.443 2025-03-26 04:15:45.443 810000 TIP 443107 8945 \N \N 6112161 2025-03-26 04:16:55.489 2025-03-26 04:16:55.489 1000 FEE 443441 21406 \N \N 6112162 2025-03-26 04:17:08.292 2025-03-26 04:17:08.292 1000 FEE 443233 20642 \N \N 6143609 2025-03-28 10:13:05.21 2025-03-28 10:13:05.21 23400 TIP 447161 1650 \N \N 6143613 2025-03-28 10:13:49.412 2025-03-28 10:13:49.412 1000 FEE 447073 8289 \N \N 6143614 2025-03-28 10:13:49.412 2025-03-28 10:13:49.412 9000 TIP 447073 976 \N \N 6143632 2025-03-28 10:17:51.307 2025-03-28 10:17:51.307 1000 FEE 447176 8037 \N \N 6143636 2025-03-28 10:18:37.752 2025-03-28 10:18:37.752 1000 FEE 447177 1490 \N \N 6143643 2025-03-28 10:19:00.528 2025-03-28 10:19:00.528 10000 FEE 446714 1244 \N \N 6143644 2025-03-28 10:19:00.528 2025-03-28 10:19:00.528 90000 TIP 446714 2519 \N \N 6143650 2025-03-28 10:19:18.971 2025-03-28 10:19:18.971 1000 FEE 447143 964 \N \N 6143651 2025-03-28 10:19:18.971 2025-03-28 10:19:18.971 9000 TIP 447143 695 \N \N 6143692 2025-03-28 10:28:39.603 2025-03-28 10:28:39.603 1000 FEE 446937 15510 \N \N 6143693 2025-03-28 10:28:39.603 2025-03-28 10:28:39.603 9000 TIP 446937 19930 \N \N 6143702 2025-03-28 10:29:34.346 2025-03-28 10:29:34.346 0 FEE 447186 7960 \N \N 6143770 2025-03-28 10:37:04.301 2025-03-28 10:37:04.301 2100 FEE 447184 21275 \N \N 6143771 2025-03-28 10:37:04.301 2025-03-28 10:37:04.301 18900 TIP 447184 9183 \N \N 6143786 2025-03-28 10:39:53.518 2025-03-28 10:39:53.518 1000 FEE 447200 4287 \N \N 6143788 2025-03-28 10:39:58.013 2025-03-28 10:39:58.013 1000 FEE 447201 5865 \N \N 6143824 2025-03-28 10:47:55.045 2025-03-28 10:47:55.045 1000 FEE 447107 2327 \N \N 6143825 2025-03-28 10:47:55.045 2025-03-28 10:47:55.045 9000 TIP 447107 15045 \N \N 6143845 2025-03-28 10:53:48.902 2025-03-28 10:53:48.902 1000 POLL 446964 20588 \N \N 6143874 2025-03-28 10:57:46.654 2025-03-28 10:57:46.654 1000 FEE 447213 7979 \N \N 6143875 2025-03-28 10:57:46.654 2025-03-28 10:57:46.654 9000 TIP 447213 13216 \N \N 6143876 2025-03-28 10:57:46.947 2025-03-28 10:57:46.947 1000 FEE 447213 17030 \N \N 6143877 2025-03-28 10:57:46.947 2025-03-28 10:57:46.947 9000 TIP 447213 4415 \N \N 6143885 2025-03-28 10:58:23.595 2025-03-28 10:58:23.595 1000 FEE 447217 13097 \N \N 6143886 2025-03-28 10:58:26.156 2025-03-28 10:58:26.156 1000 FEE 447212 1817 \N \N 6143887 2025-03-28 10:58:26.156 2025-03-28 10:58:26.156 9000 TIP 447212 21164 \N \N 6143901 2025-03-28 10:59:40.42 2025-03-28 10:59:40.42 1000 FEE 447199 811 \N \N 6143902 2025-03-28 10:59:40.42 2025-03-28 10:59:40.42 9000 TIP 447199 18426 \N \N 6143912 2025-03-28 11:00:30.701 2025-03-28 11:00:30.701 100000 FEE 447220 17673 \N \N 6143927 2025-03-28 11:01:27.809 2025-03-28 11:01:27.809 7600 FEE 447164 7673 \N \N 6143928 2025-03-28 11:01:27.809 2025-03-28 11:01:27.809 68400 TIP 447164 21532 \N \N 6143941 2025-03-28 11:02:38.212 2025-03-28 11:02:38.212 2100 FEE 447221 5828 \N \N 6143942 2025-03-28 11:02:38.212 2025-03-28 11:02:38.212 18900 TIP 447221 20970 \N \N 6143991 2025-03-28 11:05:44.297 2025-03-28 11:05:44.297 1000 FEE 447224 732 \N \N 6143992 2025-03-28 11:05:44.297 2025-03-28 11:05:44.297 9000 TIP 447224 20555 \N \N 6144003 2025-03-28 11:06:45.075 2025-03-28 11:06:45.075 1100 FEE 447153 20481 \N \N 6144004 2025-03-28 11:06:45.075 2025-03-28 11:06:45.075 9900 TIP 447153 6030 \N \N 6144045 2025-03-28 11:07:25.996 2025-03-28 11:07:25.996 1000 FEE 447231 21670 \N \N 6144056 2025-03-28 11:07:30.389 2025-03-28 11:07:30.389 1000 FEE 447121 1428 \N \N 6144057 2025-03-28 11:07:30.389 2025-03-28 11:07:30.389 9000 TIP 447121 3706 \N \N 6144064 2025-03-28 11:07:31.712 2025-03-28 11:07:31.712 1000 FEE 447121 21164 \N \N 6144065 2025-03-28 11:07:31.712 2025-03-28 11:07:31.712 9000 TIP 447121 894 \N \N 6144079 2025-03-28 11:11:13.486 2025-03-28 11:11:13.486 2100 FEE 447121 10608 \N \N 6144080 2025-03-28 11:11:13.486 2025-03-28 11:11:13.486 18900 TIP 447121 8168 \N \N 6144085 2025-03-28 11:12:11.362 2025-03-28 11:12:11.362 1000 FEE 447194 902 \N \N 6144086 2025-03-28 11:12:11.362 2025-03-28 11:12:11.362 9000 TIP 447194 20891 \N \N 6144105 2025-03-28 11:14:15.66 2025-03-28 11:14:15.66 3000 FEE 447148 17693 \N \N 6144106 2025-03-28 11:14:15.66 2025-03-28 11:14:15.66 27000 TIP 447148 4167 \N \N 6144107 2025-03-28 11:14:18.892 2025-03-28 11:14:18.892 27000 FEE 447148 20187 \N \N 6144108 2025-03-28 11:14:18.892 2025-03-28 11:14:18.892 243000 TIP 447148 6471 \N \N 6144129 2025-03-28 11:17:08.739 2025-03-28 11:17:08.739 1000 FEE 447232 1130 \N \N 6144130 2025-03-28 11:17:08.739 2025-03-28 11:17:08.739 9000 TIP 447232 21047 \N \N 6144142 2025-03-28 11:19:17.559 2025-03-28 11:19:17.559 2500 FEE 447236 621 \N \N 6144143 2025-03-28 11:19:17.559 2025-03-28 11:19:17.559 22500 TIP 447236 1772 \N \N 6144153 2025-03-28 11:23:02.545 2025-03-28 11:23:02.545 5000 FEE 447215 15662 \N \N 6144154 2025-03-28 11:23:02.545 2025-03-28 11:23:02.545 45000 TIP 447215 1051 \N \N 6144171 2025-03-28 11:25:26.156 2025-03-28 11:25:26.156 1000 POLL 446783 1394 \N \N 6144180 2025-03-28 11:26:20.821 2025-03-28 11:26:20.821 1000 FEE 447246 1825 \N \N 6144198 2025-03-28 11:27:49.225 2025-03-28 11:27:49.225 1000 FEE 447247 20306 \N \N 6144220 2025-03-28 11:31:49.884 2025-03-28 11:31:49.884 1000 FEE 447254 19829 \N \N 6144229 2025-03-28 11:35:06.078 2025-03-28 11:35:06.078 69000 FEE 447257 19655 \N \N 6144237 2025-03-28 11:36:14.499 2025-03-28 11:36:14.499 900 FEE 447258 21494 \N \N 6144238 2025-03-28 11:36:14.499 2025-03-28 11:36:14.499 8100 TIP 447258 16536 \N \N 6144259 2025-03-28 11:39:45.728 2025-03-28 11:39:45.728 21100 FEE 447251 16250 \N \N 6144260 2025-03-28 11:39:45.728 2025-03-28 11:39:45.728 189900 TIP 447251 859 \N \N 6144262 2025-03-28 11:40:51.882 2025-03-28 11:40:51.882 25000 FEE 447251 2000 \N \N 6144263 2025-03-28 11:40:51.882 2025-03-28 11:40:51.882 225000 TIP 447251 1577 \N \N 6144270 2025-03-28 11:42:09.751 2025-03-28 11:42:09.751 2100 FEE 447225 1136 \N \N 6144271 2025-03-28 11:42:09.751 2025-03-28 11:42:09.751 18900 TIP 447225 9330 \N \N 6144291 2025-03-28 11:44:40.413 2025-03-28 11:44:40.413 1000 FEE 447264 20182 \N \N 6144292 2025-03-28 11:44:40.413 2025-03-28 11:44:40.413 9000 TIP 447264 986 \N \N 6144321 2025-03-28 11:47:28.425 2025-03-28 11:47:28.425 0 FEE 447267 19446 \N \N 6144328 2025-03-28 11:47:40.502 2025-03-28 11:47:40.502 2100 FEE 447257 16747 \N \N 6144329 2025-03-28 11:47:40.502 2025-03-28 11:47:40.502 18900 TIP 447257 667 \N \N 6144344 2025-03-28 11:48:20.048 2025-03-28 11:48:20.048 2100 FEE 447203 19673 \N \N 6144345 2025-03-28 11:48:20.048 2025-03-28 11:48:20.048 18900 TIP 447203 16970 \N \N 6144360 2025-03-28 11:49:56.696 2025-03-28 11:49:56.696 1000 FEE 447273 8729 \N \N 6144375 2025-03-28 11:50:43.54 2025-03-28 11:50:43.54 2100 FEE 446719 20613 \N \N 6144376 2025-03-28 11:50:43.54 2025-03-28 11:50:43.54 18900 TIP 446719 17106 \N \N 6144406 2025-03-28 11:54:29.77 2025-03-28 11:54:29.77 1000 FEE 447278 12188 \N \N 6144420 2025-03-28 11:59:27.849 2025-03-28 11:59:27.849 3000 FEE 447280 14385 \N \N 6144421 2025-03-28 11:59:27.849 2025-03-28 11:59:27.849 27000 TIP 447280 16858 \N \N 6144433 2025-03-28 12:01:19.016 2025-03-28 12:01:19.016 2100 FEE 447241 1825 \N \N 6144434 2025-03-28 12:01:19.016 2025-03-28 12:01:19.016 18900 TIP 447241 15556 \N \N 6144447 2025-03-28 12:02:33.45 2025-03-28 12:02:33.45 1000 FEE 447286 20599 \N \N 6144450 2025-03-28 12:02:36.211 2025-03-28 12:02:36.211 1000 FEE 447282 16124 \N \N 6144451 2025-03-28 12:02:36.211 2025-03-28 12:02:36.211 9000 TIP 447282 12483 \N \N 6144456 2025-03-28 12:03:01.076 2025-03-28 12:03:01.076 1000 FEE 446937 18314 \N \N 6144457 2025-03-28 12:03:01.076 2025-03-28 12:03:01.076 9000 TIP 446937 20788 \N \N 6040065 2025-03-19 20:21:21.9 2025-03-19 20:21:21.9 1000 FEE 435848 18615 \N \N 6040085 2025-03-19 20:22:12.305 2025-03-19 20:22:12.305 100 FEE 435776 7395 \N \N 6040086 2025-03-19 20:22:12.305 2025-03-19 20:22:12.305 900 TIP 435776 2710 \N \N 6040096 2025-03-19 20:26:57.866 2025-03-19 20:26:57.866 1100 FEE 435830 6430 \N \N 6040097 2025-03-19 20:26:57.866 2025-03-19 20:26:57.866 9900 TIP 435830 4984 \N \N 6040125 2025-03-19 20:40:58.364 2025-03-19 20:40:58.364 1000 FEE 435860 21577 \N \N 6040129 2025-03-19 20:41:36.086 2025-03-19 20:41:36.086 1000 FEE 435861 17221 \N \N 6040132 2025-03-19 20:43:39.159 2025-03-19 20:43:39.159 100000 FEE 435862 4064 \N \N 6040146 2025-03-19 20:51:25.302 2025-03-19 20:51:25.302 1000 FEE 435865 17693 \N \N 6040149 2025-03-19 20:51:27.256 2025-03-19 20:51:27.256 100 FEE 435639 10986 \N \N 6040150 2025-03-19 20:51:27.256 2025-03-19 20:51:27.256 900 TIP 435639 1195 \N \N 6040186 2025-03-19 21:00:45.795 2025-03-19 21:00:45.795 1000 FEE 435870 5775 \N \N 6040194 2025-03-19 21:03:03.546 2025-03-19 21:03:03.546 1000 FEE 435762 21501 \N \N 6040195 2025-03-19 21:03:03.546 2025-03-19 21:03:03.546 9000 TIP 435762 5590 \N \N 6040206 2025-03-19 21:04:45.985 2025-03-19 21:04:45.985 100 FEE 435242 9348 \N \N 6040207 2025-03-19 21:04:45.985 2025-03-19 21:04:45.985 900 TIP 435242 16350 \N \N 6040240 2025-03-19 21:07:54.901 2025-03-19 21:07:54.901 100 FEE 435217 17064 \N \N 6040241 2025-03-19 21:07:54.901 2025-03-19 21:07:54.901 900 TIP 435217 11609 \N \N 6040270 2025-03-19 21:18:24.836 2025-03-19 21:18:24.836 1000 FEE 435879 10469 \N \N 6040284 2025-03-19 21:23:40.3 2025-03-19 21:23:40.3 1000 FEE 435608 21526 \N \N 6040285 2025-03-19 21:23:40.3 2025-03-19 21:23:40.3 9000 TIP 435608 13406 \N \N 6040311 2025-03-19 21:30:55.554 2025-03-19 21:30:55.554 0 FEE 435881 15521 \N \N 6040321 2025-03-19 21:35:37.933 2025-03-19 21:35:37.933 2100 FEE 435769 19576 \N \N 6040322 2025-03-19 21:35:37.933 2025-03-19 21:35:37.933 18900 TIP 435769 21585 \N \N 6040337 2025-03-19 21:38:33.493 2025-03-19 21:38:33.493 9000 FEE 435812 16988 \N \N 6040338 2025-03-19 21:38:33.493 2025-03-19 21:38:33.493 81000 TIP 435812 21320 \N \N 6040360 2025-03-19 21:39:55.661 2025-03-19 21:39:55.661 900 FEE 435834 16789 \N \N 6040361 2025-03-19 21:39:55.661 2025-03-19 21:39:55.661 8100 TIP 435834 746 \N \N 6040383 2025-03-19 21:41:29.74 2025-03-19 21:41:29.74 100000 DONT_LIKE_THIS 435884 9367 \N \N 6040390 2025-03-19 21:41:49.708 2025-03-19 21:41:49.708 400 FEE 435788 20734 \N \N 6040391 2025-03-19 21:41:49.708 2025-03-19 21:41:49.708 3600 TIP 435788 21455 \N \N 6040393 2025-03-19 21:42:25.773 2025-03-19 21:42:25.773 1000 FEE 435887 21393 \N \N 6040403 2025-03-19 21:43:34.876 2025-03-19 21:43:34.876 800 FEE 435328 9450 \N \N 6040404 2025-03-19 21:43:34.876 2025-03-19 21:43:34.876 7200 TIP 435328 9084 \N \N 6040409 2025-03-19 21:43:36.482 2025-03-19 21:43:36.482 800 FEE 435328 694 \N \N 6040410 2025-03-19 21:43:36.482 2025-03-19 21:43:36.482 7200 TIP 435328 11590 \N \N 6040413 2025-03-19 21:43:36.987 2025-03-19 21:43:36.987 800 FEE 435328 9026 \N \N 6040414 2025-03-19 21:43:36.987 2025-03-19 21:43:36.987 7200 TIP 435328 13249 \N \N 6040415 2025-03-19 21:43:37.261 2025-03-19 21:43:37.261 800 FEE 435328 4167 \N \N 6040416 2025-03-19 21:43:37.261 2025-03-19 21:43:37.261 7200 TIP 435328 1960 \N \N 6040443 2025-03-19 21:46:42.451 2025-03-19 21:46:42.451 7000 FEE 435891 880 \N \N 6040453 2025-03-19 21:51:59.167 2025-03-19 21:51:59.167 2100 FEE 435885 15100 \N \N 6040454 2025-03-19 21:51:59.167 2025-03-19 21:51:59.167 18900 TIP 435885 12821 \N \N 6040477 2025-03-19 21:59:40.207 2025-03-19 21:59:40.207 5000 FEE 435790 4079 \N \N 6040478 2025-03-19 21:59:40.207 2025-03-19 21:59:40.207 45000 TIP 435790 15386 \N \N 6040481 2025-03-19 21:59:40.935 2025-03-19 21:59:40.935 5000 FEE 435765 20751 \N \N 6040482 2025-03-19 21:59:40.935 2025-03-19 21:59:40.935 45000 TIP 435765 2361 \N \N 6040483 2025-03-19 21:59:41.186 2025-03-19 21:59:41.186 5000 FEE 435765 979 \N \N 6040484 2025-03-19 21:59:41.186 2025-03-19 21:59:41.186 45000 TIP 435765 2577 \N \N 6040506 2025-03-19 22:07:38.955 2025-03-19 22:07:38.955 100 FEE 435812 20479 \N \N 6040507 2025-03-19 22:07:38.955 2025-03-19 22:07:38.955 900 TIP 435812 15588 \N \N 6040521 2025-03-19 22:14:43.601 2025-03-19 22:14:43.601 21000 FEE 435906 3353 \N \N 6040523 2025-03-19 22:15:58.958 2025-03-19 22:15:58.958 2100 FEE 435657 15192 \N \N 6040524 2025-03-19 22:15:58.958 2025-03-19 22:15:58.958 18900 TIP 435657 20450 \N \N 6040543 2025-03-19 22:16:07.641 2025-03-19 22:16:07.641 2100 FEE 435497 20817 \N \N 6040544 2025-03-19 22:16:07.641 2025-03-19 22:16:07.641 18900 TIP 435497 21398 \N \N 6040547 2025-03-19 22:16:08.66 2025-03-19 22:16:08.66 2100 FEE 435639 16970 \N \N 6040548 2025-03-19 22:16:08.66 2025-03-19 22:16:08.66 18900 TIP 435639 15588 \N \N 6040575 2025-03-19 22:17:51.35 2025-03-19 22:17:51.35 100 FEE 435902 20613 \N \N 6040576 2025-03-19 22:17:51.35 2025-03-19 22:17:51.35 900 TIP 435902 19502 \N \N 6040587 2025-03-19 22:17:53.057 2025-03-19 22:17:53.057 100 FEE 435902 660 \N \N 6040588 2025-03-19 22:17:53.057 2025-03-19 22:17:53.057 900 TIP 435902 16954 \N \N 6040589 2025-03-19 22:17:56.603 2025-03-19 22:17:56.603 2100 FEE 435668 20555 \N \N 6040590 2025-03-19 22:17:56.603 2025-03-19 22:17:56.603 18900 TIP 435668 2963 \N \N 6040600 2025-03-19 22:19:48.566 2025-03-19 22:19:48.566 100 FEE 435549 4079 \N \N 6040601 2025-03-19 22:19:48.566 2025-03-19 22:19:48.566 900 TIP 435549 16667 \N \N 6040613 2025-03-19 22:23:54.433 2025-03-19 22:23:54.433 100000 FEE 435910 628 \N \N 6040657 2025-03-19 22:40:25.437 2025-03-19 22:40:25.437 2100 FEE 435488 19332 \N \N 6040658 2025-03-19 22:40:25.437 2025-03-19 22:40:25.437 18900 TIP 435488 16097 \N \N 6040666 2025-03-19 22:41:31.596 2025-03-19 22:41:31.596 1000 FEE 435912 20381 \N \N 6040667 2025-03-19 22:41:31.596 2025-03-19 22:41:31.596 9000 TIP 435912 18673 \N \N 6040684 2025-03-19 22:42:55.206 2025-03-19 22:42:55.206 1000 FEE 435917 17014 \N \N 6040694 2025-03-19 22:44:16.04 2025-03-19 22:44:16.04 1000 FEE 435919 16789 \N \N 6040702 2025-03-19 22:45:32.642 2025-03-19 22:45:32.642 2100 FEE 435288 937 \N \N 6040703 2025-03-19 22:45:32.642 2025-03-19 22:45:32.642 18900 TIP 435288 19980 \N \N 6040712 2025-03-19 22:46:45.087 2025-03-19 22:46:45.087 2000 FEE 435755 1009 \N \N 6040713 2025-03-19 22:46:45.087 2025-03-19 22:46:45.087 18000 TIP 435755 13987 \N \N 6040728 2025-03-19 22:46:47.62 2025-03-19 22:46:47.62 100 FEE 435641 10519 \N \N 6040729 2025-03-19 22:46:47.62 2025-03-19 22:46:47.62 900 TIP 435641 18309 \N \N 6040739 2025-03-19 22:49:16.969 2025-03-19 22:49:16.969 2100 FEE 435812 21412 \N \N 6040740 2025-03-19 22:49:16.969 2025-03-19 22:49:16.969 18900 TIP 435812 5703 \N \N 6040786 2025-03-19 22:57:55.102 2025-03-19 22:57:55.102 2100 FEE 435914 15491 \N \N 6040787 2025-03-19 22:57:55.102 2025-03-19 22:57:55.102 18900 TIP 435914 8469 \N \N 6040788 2025-03-19 22:57:57.333 2025-03-19 22:57:57.333 100 FEE 435639 16284 \N \N 6040789 2025-03-19 22:57:57.333 2025-03-19 22:57:57.333 900 TIP 435639 14465 \N \N 6040798 2025-03-19 22:58:12.372 2025-03-19 22:58:12.372 2100 FEE 435905 21374 \N \N 6040799 2025-03-19 22:58:12.372 2025-03-19 22:58:12.372 18900 TIP 435905 2232 \N \N 6040835 2025-03-19 23:13:19.174 2025-03-19 23:13:19.174 2100 FEE 435847 16965 \N \N 6040836 2025-03-19 23:13:19.174 2025-03-19 23:13:19.174 18900 TIP 435847 11670 \N \N 6143617 2025-03-28 10:13:49.783 2025-03-28 10:13:49.783 1000 FEE 447073 13878 \N \N 6143618 2025-03-28 10:13:49.783 2025-03-28 10:13:49.783 9000 TIP 447073 21063 \N \N 6143662 2025-03-28 10:22:17.178 2025-03-28 10:22:17.178 1000 POLL 446962 13348 \N \N 6143675 2025-03-28 10:26:27.659 2025-03-28 10:26:27.659 6900 FEE 447175 623 \N \N 6143676 2025-03-28 10:26:27.659 2025-03-28 10:26:27.659 62100 TIP 447175 21389 \N \N 6143684 2025-03-28 10:27:32.744 2025-03-28 10:27:32.744 6900 FEE 447143 11192 \N \N 6155177 2025-03-29 08:27:53.858 2025-03-29 08:27:53.858 62100 TIP 448358 11220 \N \N 6155183 2025-03-29 08:28:17.404 2025-03-29 08:28:17.404 1000 FEE 448365 4079 \N \N 6155186 2025-03-29 08:28:39.242 2025-03-29 08:28:39.242 2100 FEE 448157 20599 \N \N 6155187 2025-03-29 08:28:39.242 2025-03-29 08:28:39.242 18900 TIP 448157 6777 \N \N 6155218 2025-03-29 08:29:57.151 2025-03-29 08:29:57.151 1000 FEE 448229 12562 \N \N 6155219 2025-03-29 08:29:57.151 2025-03-29 08:29:57.151 9000 TIP 448229 7097 \N \N 6155222 2025-03-29 08:29:59.467 2025-03-29 08:29:59.467 1000 FEE 448229 688 \N \N 6155223 2025-03-29 08:29:59.467 2025-03-29 08:29:59.467 9000 TIP 448229 9330 \N \N 6155224 2025-03-29 08:30:01.159 2025-03-29 08:30:01.159 1000 FEE 448202 21164 \N \N 6155225 2025-03-29 08:30:01.159 2025-03-29 08:30:01.159 9000 TIP 448202 770 \N \N 6155271 2025-03-29 08:32:20.691 2025-03-29 08:32:20.691 1000 FEE 448372 21339 \N \N 6155281 2025-03-29 08:33:04.976 2025-03-29 08:33:04.976 1000 FEE 448373 16653 \N \N 6155292 2025-03-29 08:33:35.974 2025-03-29 08:33:35.974 800 FEE 447585 811 \N \N 6155293 2025-03-29 08:33:35.974 2025-03-29 08:33:35.974 7200 TIP 447585 20623 \N \N 6155315 2025-03-29 08:34:35.608 2025-03-29 08:34:35.608 1000 FEE 448378 20616 \N \N 6155331 2025-03-29 08:34:47.118 2025-03-29 08:34:47.118 7600 FEE 448377 9362 \N \N 6155332 2025-03-29 08:34:47.118 2025-03-29 08:34:47.118 68400 TIP 448377 20201 \N \N 6155333 2025-03-29 08:34:49.525 2025-03-29 08:34:49.525 2100 FEE 448349 9166 \N \N 6155334 2025-03-29 08:34:49.525 2025-03-29 08:34:49.525 18900 TIP 448349 19512 \N \N 6155342 2025-03-29 08:34:56.872 2025-03-29 08:34:56.872 1000 FEE 448380 4989 \N \N 6155352 2025-03-29 08:35:14.567 2025-03-29 08:35:14.567 2100 FEE 448202 1584 \N \N 6155353 2025-03-29 08:35:14.567 2025-03-29 08:35:14.567 18900 TIP 448202 21805 \N \N 6155384 2025-03-29 08:37:34.099 2025-03-29 08:37:34.099 2600 FEE 447583 9418 \N \N 6155385 2025-03-29 08:37:34.099 2025-03-29 08:37:34.099 23400 TIP 447583 21019 \N \N 6158768 2025-03-29 14:43:21.535 2025-03-29 14:43:21.535 900 TIP 448691 19842 \N \N 6158780 2025-03-29 14:44:52.689 2025-03-29 14:44:52.689 100 FEE 448727 21603 \N \N 6158781 2025-03-29 14:44:52.689 2025-03-29 14:44:52.689 900 TIP 448727 21079 \N \N 6158782 2025-03-29 14:44:52.87 2025-03-29 14:44:52.87 900 FEE 448727 2674 \N \N 6158783 2025-03-29 14:44:52.87 2025-03-29 14:44:52.87 8100 TIP 448727 7978 \N \N 6158822 2025-03-29 14:47:57.809 2025-03-29 14:47:57.809 100 FEE 448547 20901 \N \N 6158823 2025-03-29 14:47:57.809 2025-03-29 14:47:57.809 900 TIP 448547 19581 \N \N 6158907 2025-03-29 15:01:56.844 2025-03-29 15:01:56.844 1000 FEE 448765 20023 \N \N 6158908 2025-03-29 15:01:56.844 2025-03-29 15:01:56.844 9000 TIP 448765 1389 \N \N 6158912 2025-03-29 15:02:38.747 2025-03-29 15:02:38.747 1600 FEE 448780 981 \N \N 6158913 2025-03-29 15:02:38.747 2025-03-29 15:02:38.747 14400 TIP 448780 1090 \N \N 6158970 2025-03-29 15:09:15.689 2025-03-29 15:09:15.689 7600 FEE 448795 802 \N \N 6158971 2025-03-29 15:09:15.689 2025-03-29 15:09:15.689 68400 TIP 448795 9276 \N \N 6158992 2025-03-29 15:14:04.329 2025-03-29 15:14:04.329 2100 FEE 448035 21555 \N \N 6158993 2025-03-29 15:14:04.329 2025-03-29 15:14:04.329 18900 TIP 448035 15526 \N \N 6155251 2025-03-29 08:30:56.862 2025-03-29 08:30:56.862 0 FEE 448363 5557 \N \N 6155254 2025-03-29 08:31:10.696 2025-03-29 08:31:10.696 2100 FEE 448334 19071 \N \N 6155255 2025-03-29 08:31:10.696 2025-03-29 08:31:10.696 18900 TIP 448334 11798 \N \N 6155268 2025-03-29 08:32:11.32 2025-03-29 08:32:11.32 1600 FEE 448029 10291 \N \N 6155269 2025-03-29 08:32:11.32 2025-03-29 08:32:11.32 14400 TIP 448029 6777 \N \N 6155316 2025-03-29 08:34:36.44 2025-03-29 08:34:36.44 800 FEE 447081 21631 \N \N 6155317 2025-03-29 08:34:36.44 2025-03-29 08:34:36.44 7200 TIP 447081 19663 \N \N 6155335 2025-03-29 08:34:49.61 2025-03-29 08:34:49.61 2100 FEE 448228 16571 \N \N 6155336 2025-03-29 08:34:49.61 2025-03-29 08:34:49.61 18900 TIP 448228 19655 \N \N 6155337 2025-03-29 08:34:53.228 2025-03-29 08:34:53.228 1600 FEE 447902 2065 \N \N 6155338 2025-03-29 08:34:53.228 2025-03-29 08:34:53.228 14400 TIP 447902 2098 \N \N 6155369 2025-03-29 08:36:40.569 2025-03-29 08:36:40.569 2100 FEE 448341 749 \N \N 6155370 2025-03-29 08:36:40.569 2025-03-29 08:36:40.569 18900 TIP 448341 17050 \N \N 6155392 2025-03-29 08:38:33.367 2025-03-29 08:38:33.367 10000 FEE 448349 19198 \N \N 6155393 2025-03-29 08:38:33.367 2025-03-29 08:38:33.367 90000 TIP 448349 21269 \N \N 6155404 2025-03-29 08:39:04.177 2025-03-29 08:39:04.177 1700 FEE 448385 16309 \N \N 6155405 2025-03-29 08:39:04.177 2025-03-29 08:39:04.177 15300 TIP 448385 18494 \N \N 6155412 2025-03-29 08:39:04.929 2025-03-29 08:39:04.929 1700 FEE 448385 20479 \N \N 6155413 2025-03-29 08:39:04.929 2025-03-29 08:39:04.929 15300 TIP 448385 696 \N \N 6155422 2025-03-29 08:39:12.845 2025-03-29 08:39:12.845 2100 FEE 448234 19512 \N \N 6155423 2025-03-29 08:39:12.845 2025-03-29 08:39:12.845 18900 TIP 448234 16788 \N \N 6155431 2025-03-29 08:39:15.184 2025-03-29 08:39:15.184 2100 FEE 448232 19332 \N \N 6155432 2025-03-29 08:39:15.184 2025-03-29 08:39:15.184 18900 TIP 448232 18727 \N \N 6155447 2025-03-29 08:39:38.206 2025-03-29 08:39:38.206 1000 FEE 448381 21116 \N \N 6155448 2025-03-29 08:39:38.206 2025-03-29 08:39:38.206 9000 TIP 448381 17218 \N \N 6155467 2025-03-29 08:41:04.05 2025-03-29 08:41:04.05 1000 FEE 448393 1602 \N \N 6155503 2025-03-29 08:42:54.962 2025-03-29 08:42:54.962 100 FEE 448229 3478 \N \N 6155504 2025-03-29 08:42:54.962 2025-03-29 08:42:54.962 900 TIP 448229 4035 \N \N 6155527 2025-03-29 08:44:14.007 2025-03-29 08:44:14.007 1000 FEE 448398 16684 \N \N 6155571 2025-03-29 08:46:11.662 2025-03-29 08:46:11.662 5000 FEE 448378 1960 \N \N 6155572 2025-03-29 08:46:11.662 2025-03-29 08:46:11.662 45000 TIP 448378 2367 \N \N 6155596 2025-03-29 08:49:02.287 2025-03-29 08:49:02.287 1000 FEE 448405 656 \N \N 6155606 2025-03-29 08:50:09.819 2025-03-29 08:50:09.819 1000 FEE 448387 1298 \N \N 6155607 2025-03-29 08:50:09.819 2025-03-29 08:50:09.819 9000 TIP 448387 5725 \N \N 6155621 2025-03-29 08:52:38.599 2025-03-29 08:52:38.599 1600 FEE 448396 19198 \N \N 6155622 2025-03-29 08:52:38.599 2025-03-29 08:52:38.599 14400 TIP 448396 5377 \N \N 6155634 2025-03-29 08:53:43.757 2025-03-29 08:53:43.757 1000 FEE 448404 5828 \N \N 6155635 2025-03-29 08:53:43.757 2025-03-29 08:53:43.757 9000 TIP 448404 3347 \N \N 6155647 2025-03-29 08:54:14.286 2025-03-29 08:54:14.286 1000 FEE 448403 19263 \N \N 6155648 2025-03-29 08:54:14.286 2025-03-29 08:54:14.286 9000 TIP 448403 1012 \N \N 6155649 2025-03-29 08:54:14.518 2025-03-29 08:54:14.518 2100 FEE 421451 1745 \N \N 6155650 2025-03-29 08:54:14.518 2025-03-29 08:54:14.518 18900 TIP 421451 19992 \N \N 6155666 2025-03-29 08:55:24.565 2025-03-29 08:55:24.565 1000 FEE 448416 992 \N \N 6155712 2025-03-29 09:01:44.566 2025-03-29 09:01:44.566 10000 FEE 447944 6421 \N \N 6155713 2025-03-29 09:01:44.566 2025-03-29 09:01:44.566 90000 TIP 447944 6136 \N \N 6155724 2025-03-29 09:03:21.726 2025-03-29 09:03:21.726 1000 FEE 448431 12277 \N \N 6155730 2025-03-29 09:03:59.621 2025-03-29 09:03:59.621 100 FEE 448430 20409 \N \N 6155731 2025-03-29 09:03:59.621 2025-03-29 09:03:59.621 900 TIP 448430 18393 \N \N 6155737 2025-03-29 09:04:35.899 2025-03-29 09:04:35.899 1000 FEE 448436 726 \N \N 6155740 2025-03-29 09:04:54.379 2025-03-29 09:04:54.379 1000 FEE 448437 2010 \N \N 6155741 2025-03-29 09:05:03.518 2025-03-29 09:05:03.518 10000 FEE 448360 21254 \N \N 6155742 2025-03-29 09:05:03.518 2025-03-29 09:05:03.518 90000 TIP 448360 977 \N \N 6155749 2025-03-29 09:05:49.935 2025-03-29 09:05:49.935 1000 FEE 448439 20117 \N \N 6155760 2025-03-29 09:07:20.72 2025-03-29 09:07:20.72 2100 FEE 448430 1047 \N \N 6155761 2025-03-29 09:07:20.72 2025-03-29 09:07:20.72 18900 TIP 448430 17095 \N \N 6155764 2025-03-29 09:07:22.288 2025-03-29 09:07:22.288 2100 FEE 448409 20683 \N \N 6155765 2025-03-29 09:07:22.288 2025-03-29 09:07:22.288 18900 TIP 448409 20972 \N \N 6155779 2025-03-29 09:08:03.564 2025-03-29 09:08:03.564 1000 FEE 448444 3392 \N \N 6155801 2025-03-29 09:08:53.33 2025-03-29 09:08:53.33 5000 FEE 345255 19217 \N \N 6155802 2025-03-29 09:08:53.33 2025-03-29 09:08:53.33 45000 TIP 345255 6160 \N \N 6155811 2025-03-29 09:08:59.171 2025-03-29 09:08:59.171 2100 FEE 448386 2013 \N \N 6155812 2025-03-29 09:08:59.171 2025-03-29 09:08:59.171 18900 TIP 448386 16633 \N \N 6155815 2025-03-29 09:09:02.314 2025-03-29 09:09:02.314 0 FEE 448439 7960 \N \N 6040148 2025-03-19 20:51:26.993 2025-03-19 20:51:26.993 900 TIP 435639 2022 \N \N 6040164 2025-03-19 20:52:49.91 2025-03-19 20:52:49.91 1000 FEE 435246 770 \N \N 6040165 2025-03-19 20:52:49.91 2025-03-19 20:52:49.91 9000 TIP 435246 10698 \N \N 6040166 2025-03-19 20:53:07.383 2025-03-19 20:53:07.383 1000 FEE 435866 14271 \N \N 6040168 2025-03-19 20:53:28.747 2025-03-19 20:53:28.747 400 FEE 435410 7979 \N \N 6040169 2025-03-19 20:53:28.747 2025-03-19 20:53:28.747 3600 TIP 435410 17838 \N \N 6040193 2025-03-19 21:02:45.286 2025-03-19 21:02:45.286 1000 FEE 435872 1007 \N \N 6040197 2025-03-19 21:03:45.705 2025-03-19 21:03:45.705 0 FEE 435869 5003 \N \N 6040202 2025-03-19 21:04:45.705 2025-03-19 21:04:45.705 100 FEE 435242 21620 \N \N 6040203 2025-03-19 21:04:45.705 2025-03-19 21:04:45.705 900 TIP 435242 19417 \N \N 6040217 2025-03-19 21:05:25.11 2025-03-19 21:05:25.11 300 FEE 435837 17291 \N \N 6040218 2025-03-19 21:05:25.11 2025-03-19 21:05:25.11 2700 TIP 435837 18116 \N \N 6040225 2025-03-19 21:05:35.702 2025-03-19 21:05:35.702 300 FEE 435844 14688 \N \N 6040226 2025-03-19 21:05:35.702 2025-03-19 21:05:35.702 2700 TIP 435844 1552 \N \N 6040244 2025-03-19 21:07:54.973 2025-03-19 21:07:54.973 100 FEE 435217 2013 \N \N 6040245 2025-03-19 21:07:54.973 2025-03-19 21:07:54.973 900 TIP 435217 11561 \N \N 6040263 2025-03-19 21:16:07.783 2025-03-19 21:16:07.783 10000 FEE 435877 9348 \N \N 6040286 2025-03-19 21:23:47.405 2025-03-19 21:23:47.405 1000 FEE 435615 16354 \N \N 6040287 2025-03-19 21:23:47.405 2025-03-19 21:23:47.405 9000 TIP 435615 21791 \N \N 6040297 2025-03-19 21:24:58.509 2025-03-19 21:24:58.509 1000 FEE 435574 21494 \N \N 6040298 2025-03-19 21:24:58.509 2025-03-19 21:24:58.509 9000 TIP 435574 3353 \N \N 6040307 2025-03-19 21:29:02.321 2025-03-19 21:29:02.321 1000 FEE 435881 11158 \N \N 6040313 2025-03-19 21:31:35.462 2025-03-19 21:31:35.462 100 FEE 435639 13365 \N \N 6040314 2025-03-19 21:31:35.462 2025-03-19 21:31:35.462 900 TIP 435639 12821 \N \N 6040343 2025-03-19 21:39:12.27 2025-03-19 21:39:12.27 100 FEE 435805 7960 \N \N 6040344 2025-03-19 21:39:12.27 2025-03-19 21:39:12.27 900 TIP 435805 9290 \N \N 6040356 2025-03-19 21:39:40.287 2025-03-19 21:39:40.287 9000 FEE 435826 10536 \N \N 6040357 2025-03-19 21:39:40.287 2025-03-19 21:39:40.287 81000 TIP 435826 7877 \N \N 6040358 2025-03-19 21:39:55.42 2025-03-19 21:39:55.42 100 FEE 435834 21798 \N \N 6040359 2025-03-19 21:39:55.42 2025-03-19 21:39:55.42 900 TIP 435834 21647 \N \N 6040366 2025-03-19 21:40:09.246 2025-03-19 21:40:09.246 9000 FEE 435860 21216 \N \N 6040367 2025-03-19 21:40:09.246 2025-03-19 21:40:09.246 81000 TIP 435860 4768 \N \N 6040377 2025-03-19 21:40:27.481 2025-03-19 21:40:27.481 1000 FEE 430411 17014 \N \N 6040378 2025-03-19 21:40:27.481 2025-03-19 21:40:27.481 9000 TIP 430411 618 \N \N 6040434 2025-03-19 21:45:03.496 2025-03-19 21:45:03.496 2000 FEE 435812 1469 \N \N 6040435 2025-03-19 21:45:03.496 2025-03-19 21:45:03.496 18000 TIP 435812 20881 \N \N 6040448 2025-03-19 21:49:22.955 2025-03-19 21:49:22.955 1000 FEE 435893 15703 \N \N 6040457 2025-03-19 21:53:34.447 2025-03-19 21:53:34.447 10000 FEE 435894 5779 \N \N 6040463 2025-03-19 21:55:08.951 2025-03-19 21:55:08.951 10000 FEE 435847 21406 \N \N 6040464 2025-03-19 21:55:08.951 2025-03-19 21:55:08.951 90000 TIP 435847 21547 \N \N 6040475 2025-03-19 21:59:37.379 2025-03-19 21:59:37.379 5000 FEE 435765 21014 \N \N 6040476 2025-03-19 21:59:37.379 2025-03-19 21:59:37.379 45000 TIP 435765 21228 \N \N 6040485 2025-03-19 21:59:42.205 2025-03-19 21:59:42.205 5000 FEE 435765 1272 \N \N 6040486 2025-03-19 21:59:42.205 2025-03-19 21:59:42.205 45000 TIP 435765 16543 \N \N 6040539 2025-03-19 22:16:05.497 2025-03-19 22:16:05.497 2100 FEE 435847 1124 \N \N 6040540 2025-03-19 22:16:05.497 2025-03-19 22:16:05.497 18900 TIP 435847 20254 \N \N 6040605 2025-03-19 22:21:07.779 2025-03-19 22:21:07.779 100 FEE 435517 4259 \N \N 6040606 2025-03-19 22:21:07.779 2025-03-19 22:21:07.779 900 TIP 435517 6382 \N \N 6040641 2025-03-19 22:30:12.524 2025-03-19 22:30:12.524 100 FEE 435242 4754 \N \N 6040642 2025-03-19 22:30:12.524 2025-03-19 22:30:12.524 900 TIP 435242 16543 \N \N 6040654 2025-03-19 22:38:38.798 2025-03-19 22:38:38.798 1000 FEE 435915 12139 \N \N 6040661 2025-03-19 22:40:55.443 2025-03-19 22:40:55.443 1000 FEE 435841 3642 \N \N 6040662 2025-03-19 22:40:55.443 2025-03-19 22:40:55.443 9000 TIP 435841 13903 \N \N 6040671 2025-03-19 22:41:43.272 2025-03-19 22:41:43.272 1000 FEE 435812 16747 \N \N 6040672 2025-03-19 22:41:43.272 2025-03-19 22:41:43.272 9000 TIP 435812 12072 \N \N 6040677 2025-03-19 22:41:43.859 2025-03-19 22:41:43.859 1000 FEE 435812 14225 \N \N 6040678 2025-03-19 22:41:43.859 2025-03-19 22:41:43.859 9000 TIP 435812 19332 \N \N 6040682 2025-03-19 22:42:25.25 2025-03-19 22:42:25.25 1000 FEE 434163 19303 \N \N 6040683 2025-03-19 22:42:25.25 2025-03-19 22:42:25.25 9000 TIP 434163 18265 \N \N 6040704 2025-03-19 22:45:36.179 2025-03-19 22:45:36.179 21000 FEE 435922 13076 \N \N 6040706 2025-03-19 22:46:06.522 2025-03-19 22:46:06.522 12800 FEE 435859 1769 \N \N 6040707 2025-03-19 22:46:06.522 2025-03-19 22:46:06.522 115200 TIP 435859 822 \N \N 6040720 2025-03-19 22:46:46.707 2025-03-19 22:46:46.707 1000 FEE 435755 20956 \N \N 6040721 2025-03-19 22:46:46.707 2025-03-19 22:46:46.707 9000 TIP 435755 19952 \N \N 6040722 2025-03-19 22:46:47.26 2025-03-19 22:46:47.26 100 FEE 435641 21803 \N \N 6040723 2025-03-19 22:46:47.26 2025-03-19 22:46:47.26 900 TIP 435641 9758 \N \N 6040726 2025-03-19 22:46:47.517 2025-03-19 22:46:47.517 1000 FEE 435755 19332 \N \N 6040727 2025-03-19 22:46:47.517 2025-03-19 22:46:47.517 9000 TIP 435755 681 \N \N 6040747 2025-03-19 22:50:50.636 2025-03-19 22:50:50.636 2000 FEE 435801 16948 \N \N 6040748 2025-03-19 22:50:50.636 2025-03-19 22:50:50.636 18000 TIP 435801 7425 \N \N 6040766 2025-03-19 22:53:16.73 2025-03-19 22:53:16.73 2100 FEE 435912 15386 \N \N 6040767 2025-03-19 22:53:16.73 2025-03-19 22:53:16.73 18900 TIP 435912 1236 \N \N 6040784 2025-03-19 22:57:26.309 2025-03-19 22:57:26.309 10000 FEE 435924 8985 \N \N 6040785 2025-03-19 22:57:26.309 2025-03-19 22:57:26.309 90000 TIP 435924 18231 \N \N 6040796 2025-03-19 22:58:01.46 2025-03-19 22:58:01.46 2100 FEE 435907 19826 \N \N 6040797 2025-03-19 22:58:01.46 2025-03-19 22:58:01.46 18900 TIP 435907 634 \N \N 6040811 2025-03-19 23:03:25.369 2025-03-19 23:03:25.369 5000 FEE 435728 831 \N \N 6040812 2025-03-19 23:03:25.369 2025-03-19 23:03:25.369 45000 TIP 435728 997 \N \N 6040813 2025-03-19 23:03:56.412 2025-03-19 23:03:56.412 2100 FEE 435904 9159 \N \N 6040814 2025-03-19 23:03:56.412 2025-03-19 23:03:56.412 18900 TIP 435904 21063 \N \N 6040823 2025-03-19 23:09:18.345 2025-03-19 23:09:18.345 1000 FEE 435937 14278 \N \N 6040838 2025-03-19 23:15:13.761 2025-03-19 23:15:13.761 120000 FEE 435938 5746 \N \N 6040840 2025-03-19 23:15:17.785 2025-03-19 23:15:17.785 1000 FEE 435939 7960 \N \N 6040843 2025-03-19 23:16:04.344 2025-03-19 23:16:04.344 2100 FEE 435718 2724 \N \N 6040844 2025-03-19 23:16:04.344 2025-03-19 23:16:04.344 18900 TIP 435718 8380 \N \N 6040856 2025-03-19 23:19:07.287 2025-03-19 23:19:07.287 200 FEE 435242 9184 \N \N 6040857 2025-03-19 23:19:07.287 2025-03-19 23:19:07.287 1800 TIP 435242 17838 \N \N 6040874 2025-03-19 23:28:19.566 2025-03-19 23:28:19.566 2100 FEE 435760 624 \N \N 6040875 2025-03-19 23:28:19.566 2025-03-19 23:28:19.566 18900 TIP 435760 19217 \N \N 6111731 2025-03-26 03:07:35.621 2025-03-26 03:07:35.621 2100 FEE 443288 766 \N \N 6111732 2025-03-26 03:07:35.621 2025-03-26 03:07:35.621 18900 TIP 443288 20854 \N \N 6111755 2025-03-26 03:12:15.429 2025-03-26 03:12:15.429 100 FEE 443368 20245 \N \N 6111756 2025-03-26 03:12:15.429 2025-03-26 03:12:15.429 900 TIP 443368 1145 \N \N 6111761 2025-03-26 03:12:33.548 2025-03-26 03:12:33.548 1000 FEE 443365 15045 \N \N 6111762 2025-03-26 03:12:33.548 2025-03-26 03:12:33.548 9000 TIP 443365 2232 \N \N 6111787 2025-03-26 03:17:55.732 2025-03-26 03:17:55.732 5700 FEE 443362 654 \N \N 6111788 2025-03-26 03:17:55.732 2025-03-26 03:17:55.732 51300 TIP 443362 19471 \N \N 6111792 2025-03-26 03:19:49.94 2025-03-26 03:19:49.94 100 FEE 443373 14381 \N \N 6111793 2025-03-26 03:19:49.94 2025-03-26 03:19:49.94 900 TIP 443373 1261 \N \N 6111795 2025-03-26 03:20:18.904 2025-03-26 03:20:18.904 1000 FEE 443372 4633 \N \N 6111796 2025-03-26 03:20:18.904 2025-03-26 03:20:18.904 9000 TIP 443372 4313 \N \N 6111811 2025-03-26 03:26:12.952 2025-03-26 03:26:12.952 1000 FEE 443336 21639 \N \N 6111812 2025-03-26 03:26:12.952 2025-03-26 03:26:12.952 9000 TIP 443336 21079 \N \N 6111813 2025-03-26 03:26:13.789 2025-03-26 03:26:13.789 2000 FEE 443336 16097 \N \N 6111814 2025-03-26 03:26:13.789 2025-03-26 03:26:13.789 18000 TIP 443336 8498 \N \N 6111835 2025-03-26 03:28:44.517 2025-03-26 03:28:44.517 1000 FEE 443374 12819 \N \N 6111836 2025-03-26 03:28:44.517 2025-03-26 03:28:44.517 9000 TIP 443374 16193 \N \N 6111843 2025-03-26 03:30:44.316 2025-03-26 03:30:44.316 0 FEE 443384 21369 \N \N 6111859 2025-03-26 03:33:58.113 2025-03-26 03:33:58.113 0 FEE 443390 641 \N \N 6111864 2025-03-26 03:34:28.594 2025-03-26 03:34:28.594 1000 FEE 443392 5728 \N \N 6111867 2025-03-26 03:34:30.832 2025-03-26 03:34:30.832 1000 FEE 443315 19333 \N \N 6111868 2025-03-26 03:34:30.832 2025-03-26 03:34:30.832 9000 TIP 443315 14552 \N \N 6111887 2025-03-26 03:38:28.675 2025-03-26 03:38:28.675 5700 FEE 443390 10016 \N \N 6111888 2025-03-26 03:38:28.675 2025-03-26 03:38:28.675 51300 TIP 443390 831 \N \N 6111911 2025-03-26 03:40:04.64 2025-03-26 03:40:04.64 0 FEE 443398 20841 \N \N 6111913 2025-03-26 03:40:20.368 2025-03-26 03:40:20.368 2100 FEE 443398 19930 \N \N 6111914 2025-03-26 03:40:20.368 2025-03-26 03:40:20.368 18900 TIP 443398 7847 \N \N 6111932 2025-03-26 03:46:16.755 2025-03-26 03:46:16.755 1000 FEE 443403 4973 \N \N 6111955 2025-03-26 03:47:24.77 2025-03-26 03:47:24.77 5000 FEE 443353 20755 \N \N 6111956 2025-03-26 03:47:24.77 2025-03-26 03:47:24.77 45000 TIP 443353 11523 \N \N 6111983 2025-03-26 03:53:17.013 2025-03-26 03:53:17.013 1000 FEE 443410 16847 \N \N 6112007 2025-03-26 03:58:15.346 2025-03-26 03:58:15.346 1000 FEE 443416 19857 \N \N 6112043 2025-03-26 04:07:32.292 2025-03-26 04:07:32.292 900 FEE 443353 2204 \N \N 6112044 2025-03-26 04:07:32.292 2025-03-26 04:07:32.292 8100 TIP 443353 9169 \N \N 6112046 2025-03-26 04:07:59.325 2025-03-26 04:07:59.325 2100 FEE 443427 10433 \N \N 6112047 2025-03-26 04:07:59.325 2025-03-26 04:07:59.325 18900 TIP 443427 2204 \N \N 6112084 2025-03-26 04:11:41.776 2025-03-26 04:11:41.776 100 FEE 443274 7772 \N \N 6112085 2025-03-26 04:11:41.776 2025-03-26 04:11:41.776 900 TIP 443274 2347 \N \N 6112095 2025-03-26 04:12:23.565 2025-03-26 04:12:23.565 100 FEE 443197 16097 \N \N 6112096 2025-03-26 04:12:23.565 2025-03-26 04:12:23.565 900 TIP 443197 11220 \N \N 6143685 2025-03-28 10:27:32.744 2025-03-28 10:27:32.744 62100 TIP 447143 10302 \N \N 6143697 2025-03-28 10:29:09.788 2025-03-28 10:29:09.788 1000 FEE 447187 21012 \N \N 6143699 2025-03-28 10:29:22.48 2025-03-28 10:29:22.48 1100 FEE 447081 21833 \N \N 6143700 2025-03-28 10:29:22.48 2025-03-28 10:29:22.48 9900 TIP 447081 2196 \N \N 6143710 2025-03-28 10:30:22.56 2025-03-28 10:30:22.56 21000 DONT_LIKE_THIS 447185 15491 \N \N 6143713 2025-03-28 10:30:56.631 2025-03-28 10:30:56.631 1000 POLL 446942 805 \N \N 6143729 2025-03-28 10:33:17.144 2025-03-28 10:33:17.144 1000 FEE 447193 20624 \N \N 6143730 2025-03-28 10:33:29.843 2025-03-28 10:33:29.843 100 FEE 446907 4819 \N \N 6143731 2025-03-28 10:33:29.843 2025-03-28 10:33:29.843 900 TIP 446907 16250 \N \N 6143756 2025-03-28 10:34:10.224 2025-03-28 10:34:10.224 1000 FEE 447194 10013 \N \N 6143758 2025-03-28 10:34:33.357 2025-03-28 10:34:33.357 100 FEE 447192 725 \N \N 6143759 2025-03-28 10:34:33.357 2025-03-28 10:34:33.357 900 TIP 447192 19198 \N \N 6143768 2025-03-28 10:36:40.896 2025-03-28 10:36:40.896 2100 FEE 447154 21430 \N \N 6143769 2025-03-28 10:36:40.896 2025-03-28 10:36:40.896 18900 TIP 447154 11897 \N \N 6143784 2025-03-28 10:39:44.619 2025-03-28 10:39:44.619 2100 FEE 446942 20683 \N \N 6143785 2025-03-28 10:39:44.619 2025-03-28 10:39:44.619 18900 TIP 446942 19906 \N \N 6143802 2025-03-28 10:44:08.314 2025-03-28 10:44:08.314 1000 FEE 447206 5746 \N \N 6143830 2025-03-28 10:49:45.501 2025-03-28 10:49:45.501 1000 FEE 447210 16939 \N \N 6143831 2025-03-28 10:49:47.344 2025-03-28 10:49:47.344 1000 FEE 446864 8498 \N \N 6143832 2025-03-28 10:49:47.344 2025-03-28 10:49:47.344 9000 TIP 446864 15075 \N \N 6143841 2025-03-28 10:52:18.177 2025-03-28 10:52:18.177 2100 FEE 446393 1439 \N \N 6143842 2025-03-28 10:52:18.177 2025-03-28 10:52:18.177 18900 TIP 446393 9705 \N \N 6143867 2025-03-28 10:55:57.509 2025-03-28 10:55:57.509 1000 FEE 447215 15617 \N \N 6143882 2025-03-28 10:57:49.177 2025-03-28 10:57:49.177 1000 FEE 447213 21119 \N \N 6143883 2025-03-28 10:57:49.177 2025-03-28 10:57:49.177 9000 TIP 447213 2151 \N \N 6155256 2025-03-29 08:31:13.291 2025-03-29 08:31:13.291 1600 FEE 447583 21208 \N \N 6155257 2025-03-29 08:31:13.291 2025-03-29 08:31:13.291 14400 TIP 447583 4802 \N \N 6155272 2025-03-29 08:32:25.442 2025-03-29 08:32:25.442 800 FEE 448035 13132 \N \N 6155273 2025-03-29 08:32:25.442 2025-03-29 08:32:25.442 7200 TIP 448035 10280 \N \N 6155275 2025-03-29 08:32:29.997 2025-03-29 08:32:29.997 1600 FEE 448120 13759 \N \N 6155276 2025-03-29 08:32:29.997 2025-03-29 08:32:29.997 14400 TIP 448120 15890 \N \N 6155313 2025-03-29 08:34:22.755 2025-03-29 08:34:22.755 0 FEE 448373 12490 \N \N 6155327 2025-03-29 08:34:39.706 2025-03-29 08:34:39.706 1000 FEE 448341 1801 \N \N 6155328 2025-03-29 08:34:39.706 2025-03-29 08:34:39.706 9000 TIP 448341 9276 \N \N 6155345 2025-03-29 08:35:04.237 2025-03-29 08:35:04.237 800 FEE 447218 20511 \N \N 6155346 2025-03-29 08:35:04.237 2025-03-29 08:35:04.237 7200 TIP 447218 17221 \N \N 6155400 2025-03-29 08:38:51.065 2025-03-29 08:38:51.065 2100 FEE 448200 21393 \N \N 6155401 2025-03-29 08:38:51.065 2025-03-29 08:38:51.065 18900 TIP 448200 20291 \N \N 6155451 2025-03-29 08:39:40.924 2025-03-29 08:39:40.924 7600 FEE 448385 10719 \N \N 6155452 2025-03-29 08:39:40.924 2025-03-29 08:39:40.924 68400 TIP 448385 14260 \N \N 6155482 2025-03-29 08:42:16.794 2025-03-29 08:42:16.794 2100 FEE 448276 882 \N \N 6155483 2025-03-29 08:42:16.794 2025-03-29 08:42:16.794 18900 TIP 448276 17713 \N \N 6155507 2025-03-29 08:43:13.951 2025-03-29 08:43:13.951 1000 POLL 448029 15463 \N \N 6155529 2025-03-29 08:44:22.2 2025-03-29 08:44:22.2 2100 FEE 444842 10311 \N \N 6155530 2025-03-29 08:44:22.2 2025-03-29 08:44:22.2 18900 TIP 444842 2088 \N \N 6155590 2025-03-29 08:47:20.421 2025-03-29 08:47:20.421 1000 FEE 448399 1213 \N \N 6155591 2025-03-29 08:47:20.421 2025-03-29 08:47:20.421 9000 TIP 448399 714 \N \N 6040273 2025-03-19 21:19:19.033 2025-03-19 21:19:19.033 1000 POLL 435805 7654 \N \N 6040331 2025-03-19 21:38:15.565 2025-03-19 21:38:15.565 9000 FEE 435746 20687 \N \N 6040332 2025-03-19 21:38:15.565 2025-03-19 21:38:15.565 81000 TIP 435746 977 \N \N 6040368 2025-03-19 21:40:12.974 2025-03-19 21:40:12.974 100 FEE 435847 20922 \N \N 6040369 2025-03-19 21:40:12.974 2025-03-19 21:40:12.974 900 TIP 435847 19303 \N \N 6040384 2025-03-19 21:41:41.223 2025-03-19 21:41:41.223 400 FEE 435871 8269 \N \N 6040385 2025-03-19 21:41:41.223 2025-03-19 21:41:41.223 3600 TIP 435871 2942 \N \N 6040405 2025-03-19 21:43:35.091 2025-03-19 21:43:35.091 800 FEE 435328 19471 \N \N 6040406 2025-03-19 21:43:35.091 2025-03-19 21:43:35.091 7200 TIP 435328 21406 \N \N 6040419 2025-03-19 21:43:38.337 2025-03-19 21:43:38.337 800 FEE 435328 691 \N \N 6040420 2025-03-19 21:43:38.337 2025-03-19 21:43:38.337 7200 TIP 435328 787 \N \N 6040459 2025-03-19 21:53:52.469 2025-03-19 21:53:52.469 1000 FEE 435896 19813 \N \N 6040492 2025-03-19 22:03:01.636 2025-03-19 22:03:01.636 2100 FEE 435847 21482 \N \N 6040493 2025-03-19 22:03:01.636 2025-03-19 22:03:01.636 18900 TIP 435847 733 \N \N 6040513 2025-03-19 22:10:25.5 2025-03-19 22:10:25.5 100 FEE 435663 16348 \N \N 6040514 2025-03-19 22:10:25.5 2025-03-19 22:10:25.5 900 TIP 435663 5597 \N \N 6040537 2025-03-19 22:16:05.04 2025-03-19 22:16:05.04 2100 FEE 435746 19087 \N \N 6040538 2025-03-19 22:16:05.04 2025-03-19 22:16:05.04 18900 TIP 435746 9107 \N \N 6040549 2025-03-19 22:16:09.307 2025-03-19 22:16:09.307 2100 FEE 435596 627 \N \N 6040550 2025-03-19 22:16:09.307 2025-03-19 22:16:09.307 18900 TIP 435596 2437 \N \N 6040551 2025-03-19 22:16:12.162 2025-03-19 22:16:12.162 2100 FEE 435679 21427 \N \N 6040552 2025-03-19 22:16:12.162 2025-03-19 22:16:12.162 18900 TIP 435679 18271 \N \N 6040562 2025-03-19 22:16:29.702 2025-03-19 22:16:29.702 2100 FEE 435489 21540 \N \N 6040563 2025-03-19 22:16:29.702 2025-03-19 22:16:29.702 18900 TIP 435489 6149 \N \N 6040565 2025-03-19 22:17:21.986 2025-03-19 22:17:21.986 2100 FEE 435812 13865 \N \N 6040566 2025-03-19 22:17:21.986 2025-03-19 22:17:21.986 18900 TIP 435812 837 \N \N 6040569 2025-03-19 22:17:50.87 2025-03-19 22:17:50.87 100 FEE 435902 13553 \N \N 6040570 2025-03-19 22:17:50.87 2025-03-19 22:17:50.87 900 TIP 435902 18717 \N \N 6040591 2025-03-19 22:18:08.345 2025-03-19 22:18:08.345 2100 FEE 435588 21413 \N \N 6040592 2025-03-19 22:18:08.345 2025-03-19 22:18:08.345 18900 TIP 435588 1745 \N \N 6040603 2025-03-19 22:20:51.341 2025-03-19 22:20:51.341 10000 FEE 435905 11450 \N \N 6040604 2025-03-19 22:20:51.341 2025-03-19 22:20:51.341 90000 TIP 435905 15282 \N \N 6040607 2025-03-19 22:21:10.774 2025-03-19 22:21:10.774 21000 FEE 435907 1173 \N \N 6040619 2025-03-19 22:26:46.597 2025-03-19 22:26:46.597 100000 FEE 435912 2088 \N \N 6040627 2025-03-19 22:30:10.71 2025-03-19 22:30:10.71 100 FEE 435242 760 \N \N 6040628 2025-03-19 22:30:10.71 2025-03-19 22:30:10.71 900 TIP 435242 18402 \N \N 6040629 2025-03-19 22:30:10.981 2025-03-19 22:30:10.981 100 FEE 435242 4538 \N \N 6040630 2025-03-19 22:30:10.981 2025-03-19 22:30:10.981 900 TIP 435242 10311 \N \N 6040631 2025-03-19 22:30:11.19 2025-03-19 22:30:11.19 100 FEE 435242 16912 \N \N 6040632 2025-03-19 22:30:11.19 2025-03-19 22:30:11.19 900 TIP 435242 700 \N \N 6040639 2025-03-19 22:30:12.285 2025-03-19 22:30:12.285 100 FEE 435242 15139 \N \N 6040640 2025-03-19 22:30:12.285 2025-03-19 22:30:12.285 900 TIP 435242 897 \N \N 6040651 2025-03-19 22:37:39.653 2025-03-19 22:37:39.653 12800 FEE 435914 7389 \N \N 6040652 2025-03-19 22:37:39.653 2025-03-19 22:37:39.653 115200 TIP 435914 21383 \N \N 6040710 2025-03-19 22:46:44.164 2025-03-19 22:46:44.164 1000 FEE 435755 12490 \N \N 6040711 2025-03-19 22:46:44.164 2025-03-19 22:46:44.164 9000 TIP 435755 21022 \N \N 6040718 2025-03-19 22:46:46.559 2025-03-19 22:46:46.559 1000 FEE 435755 937 \N \N 6040719 2025-03-19 22:46:46.559 2025-03-19 22:46:46.559 9000 TIP 435755 3506 \N \N 6040762 2025-03-19 22:53:08.616 2025-03-19 22:53:08.616 1000 FEE 435930 21090 \N \N 6040768 2025-03-19 22:53:59.683 2025-03-19 22:53:59.683 1000 FEE 435931 16950 \N \N 6040769 2025-03-19 22:54:04.943 2025-03-19 22:54:04.943 2100 FEE 435910 12870 \N \N 6040770 2025-03-19 22:54:04.943 2025-03-19 22:54:04.943 18900 TIP 435910 1881 \N \N 6040780 2025-03-19 22:56:11.239 2025-03-19 22:56:11.239 2100 FEE 435912 16301 \N \N 6040781 2025-03-19 22:56:11.239 2025-03-19 22:56:11.239 18900 TIP 435912 5746 \N \N 6040803 2025-03-19 22:59:40.212 2025-03-19 22:59:40.212 10000 FEE 435935 16966 \N \N 6040806 2025-03-19 23:01:24.052 2025-03-19 23:01:24.052 1000 FEE 435936 9551 \N \N 6040819 2025-03-19 23:07:28.483 2025-03-19 23:07:28.483 10000 FEE 435935 21485 \N \N 6040820 2025-03-19 23:07:28.483 2025-03-19 23:07:28.483 90000 TIP 435935 2123 \N \N 6040830 2025-03-19 23:13:07.575 2025-03-19 23:13:07.575 2100 FEE 435328 21485 \N \N 6040831 2025-03-19 23:13:07.575 2025-03-19 23:13:07.575 18900 TIP 435328 2123 \N \N 6040833 2025-03-19 23:13:16.315 2025-03-19 23:13:16.315 2100 FEE 435610 2528 \N \N 6040834 2025-03-19 23:13:16.315 2025-03-19 23:13:16.315 18900 TIP 435610 19759 \N \N 6040841 2025-03-19 23:15:22.077 2025-03-19 23:15:22.077 2100 FEE 435740 12821 \N \N 6040842 2025-03-19 23:15:22.077 2025-03-19 23:15:22.077 18900 TIP 435740 21556 \N \N 6143727 2025-03-28 10:33:04.047 2025-03-28 10:33:04.047 4500 TIP 446937 2459 \N \N 6143736 2025-03-28 10:33:32.795 2025-03-28 10:33:32.795 900 FEE 447165 1474 \N \N 6143737 2025-03-28 10:33:32.795 2025-03-28 10:33:32.795 8100 TIP 447165 672 \N \N 6143738 2025-03-28 10:33:33.502 2025-03-28 10:33:33.502 100 FEE 446683 1960 \N \N 6143739 2025-03-28 10:33:33.502 2025-03-28 10:33:33.502 900 TIP 446683 17953 \N \N 6143742 2025-03-28 10:33:36.237 2025-03-28 10:33:36.237 100 FEE 446662 10731 \N \N 6143743 2025-03-28 10:33:36.237 2025-03-28 10:33:36.237 900 TIP 446662 21178 \N \N 6143750 2025-03-28 10:34:03.641 2025-03-28 10:34:03.641 100 FEE 447013 699 \N \N 6143751 2025-03-28 10:34:03.641 2025-03-28 10:34:03.641 900 TIP 447013 21825 \N \N 6040336 2025-03-19 21:38:29.868 2025-03-19 21:38:29.868 8100 TIP 435812 641 \N \N 6040348 2025-03-19 21:39:25.374 2025-03-19 21:39:25.374 1000 FEE 432920 20562 \N \N 6040349 2025-03-19 21:39:25.374 2025-03-19 21:39:25.374 9000 TIP 432920 21314 \N \N 6040370 2025-03-19 21:40:13.178 2025-03-19 21:40:13.178 900 FEE 435847 18637 \N \N 6040371 2025-03-19 21:40:13.178 2025-03-19 21:40:13.178 8100 TIP 435847 770 \N \N 6040373 2025-03-19 21:40:13.709 2025-03-19 21:40:13.709 9000 FEE 435847 19488 \N \N 6040374 2025-03-19 21:40:13.709 2025-03-19 21:40:13.709 81000 TIP 435847 8045 \N \N 6040433 2025-03-19 21:44:53.733 2025-03-19 21:44:53.733 1000 FEE 435889 2620 \N \N 6040441 2025-03-19 21:46:23.538 2025-03-19 21:46:23.538 10000 FEE 435847 14688 \N \N 6040442 2025-03-19 21:46:23.538 2025-03-19 21:46:23.538 90000 TIP 435847 20663 \N \N 6040444 2025-03-19 21:46:42.615 2025-03-19 21:46:42.615 1000 FEE 435892 21555 \N \N 6040502 2025-03-19 22:04:30.446 2025-03-19 22:04:30.446 1000 FEE 435902 11192 \N \N 6040554 2025-03-19 22:16:21.571 2025-03-19 22:16:21.571 2100 FEE 435864 9276 \N \N 6040555 2025-03-19 22:16:21.571 2025-03-19 22:16:21.571 18900 TIP 435864 16145 \N \N 6040556 2025-03-19 22:16:22.251 2025-03-19 22:16:22.251 2100 FEE 435695 19512 \N \N 6040557 2025-03-19 22:16:22.251 2025-03-19 22:16:22.251 18900 TIP 435695 19333 \N \N 6040571 2025-03-19 22:17:51.022 2025-03-19 22:17:51.022 100 FEE 435902 3461 \N \N 6040572 2025-03-19 22:17:51.022 2025-03-19 22:17:51.022 900 TIP 435902 20788 \N \N 6040583 2025-03-19 22:17:52.391 2025-03-19 22:17:52.391 100 FEE 435902 21412 \N \N 6040584 2025-03-19 22:17:52.391 2025-03-19 22:17:52.391 900 TIP 435902 21688 \N \N 6040593 2025-03-19 22:18:12.272 2025-03-19 22:18:12.272 2100 FEE 435540 21238 \N \N 6040594 2025-03-19 22:18:12.272 2025-03-19 22:18:12.272 18900 TIP 435540 1549 \N \N 6040596 2025-03-19 22:18:19.409 2025-03-19 22:18:19.409 1000 POLL 435805 16347 \N \N 6040625 2025-03-19 22:30:10.399 2025-03-19 22:30:10.399 100 FEE 435242 2326 \N \N 6040626 2025-03-19 22:30:10.399 2025-03-19 22:30:10.399 900 TIP 435242 19217 \N \N 6040633 2025-03-19 22:30:11.433 2025-03-19 22:30:11.433 100 FEE 435242 9339 \N \N 6040634 2025-03-19 22:30:11.433 2025-03-19 22:30:11.433 900 TIP 435242 8448 \N \N 6040635 2025-03-19 22:30:11.834 2025-03-19 22:30:11.834 100 FEE 435242 2437 \N \N 6040636 2025-03-19 22:30:11.834 2025-03-19 22:30:11.834 900 TIP 435242 11515 \N \N 6040686 2025-03-19 22:43:13.892 2025-03-19 22:43:13.892 2100 FEE 435663 15408 \N \N 6040687 2025-03-19 22:43:13.892 2025-03-19 22:43:13.892 18900 TIP 435663 21494 \N \N 6040690 2025-03-19 22:43:59.421 2025-03-19 22:43:59.421 1000 FEE 435918 674 \N \N 6040730 2025-03-19 22:46:48.626 2025-03-19 22:46:48.626 2100 FEE 435920 7869 \N \N 6040497 2025-03-19 22:03:30.698 2025-03-19 22:03:30.698 1000 FEE 435852 831 \N \N 6040498 2025-03-19 22:03:30.698 2025-03-19 22:03:30.698 9000 TIP 435852 13042 \N \N 6040535 2025-03-19 22:16:04.447 2025-03-19 22:16:04.447 2100 FEE 435217 11670 \N \N 6040536 2025-03-19 22:16:04.447 2025-03-19 22:16:04.447 18900 TIP 435217 20412 \N \N 6040558 2025-03-19 22:16:23.263 2025-03-19 22:16:23.263 2100 FEE 435671 20840 \N \N 6040559 2025-03-19 22:16:23.263 2025-03-19 22:16:23.263 18900 TIP 435671 17535 \N \N 6040573 2025-03-19 22:17:51.19 2025-03-19 22:17:51.19 100 FEE 435902 15408 \N \N 6040574 2025-03-19 22:17:51.19 2025-03-19 22:17:51.19 900 TIP 435902 20841 \N \N 6040615 2025-03-19 22:25:05.433 2025-03-19 22:25:05.433 1000 POLL 435805 5500 \N \N 6040663 2025-03-19 22:40:55.877 2025-03-19 22:40:55.877 1000 FEE 435889 14080 \N \N 6040664 2025-03-19 22:40:55.877 2025-03-19 22:40:55.877 9000 TIP 435889 2042 \N \N 6040673 2025-03-19 22:41:43.437 2025-03-19 22:41:43.437 1000 FEE 435812 1273 \N \N 6040674 2025-03-19 22:41:43.437 2025-03-19 22:41:43.437 9000 TIP 435812 15521 \N \N 6040675 2025-03-19 22:41:43.619 2025-03-19 22:41:43.619 1000 FEE 435812 20377 \N \N 6040676 2025-03-19 22:41:43.619 2025-03-19 22:41:43.619 9000 TIP 435812 627 \N \N 6040688 2025-03-19 22:43:15.344 2025-03-19 22:43:15.344 1000 FEE 435747 13055 \N \N 6040689 2025-03-19 22:43:15.344 2025-03-19 22:43:15.344 9000 TIP 435747 21247 \N \N 6040695 2025-03-19 22:44:26.758 2025-03-19 22:44:26.758 1000 FEE 435920 17011 \N \N 6040709 2025-03-19 22:46:18.021 2025-03-19 22:46:18.021 210000 FEE 435924 21164 \N \N 6040714 2025-03-19 22:46:46.039 2025-03-19 22:46:46.039 1000 FEE 435755 14449 \N \N 6040715 2025-03-19 22:46:46.039 2025-03-19 22:46:46.039 9000 TIP 435755 12346 \N \N 6040716 2025-03-19 22:46:46.384 2025-03-19 22:46:46.384 1000 FEE 435755 2437 \N \N 6040717 2025-03-19 22:46:46.384 2025-03-19 22:46:46.384 9000 TIP 435755 1141 \N \N 6040809 2025-03-19 23:03:20.653 2025-03-19 23:03:20.653 2100 FEE 435911 20681 \N \N 6040810 2025-03-19 23:03:20.653 2025-03-19 23:03:20.653 18900 TIP 435911 7097 \N \N 6040847 2025-03-19 23:17:06.209 2025-03-19 23:17:06.209 2100 FEE 435770 17147 \N \N 6040848 2025-03-19 23:17:06.209 2025-03-19 23:17:06.209 18900 TIP 435770 18101 \N \N 6158805 2025-03-29 14:46:29.543 2025-03-29 14:46:29.543 900 FEE 448748 12738 \N \N 6158806 2025-03-29 14:46:29.543 2025-03-29 14:46:29.543 8100 TIP 448748 16562 \N \N 6158807 2025-03-29 14:46:53.983 2025-03-29 14:46:53.983 1000 FEE 448776 21014 \N \N 6158827 2025-03-29 14:48:37.403 2025-03-29 14:48:37.403 1000 POLL 448349 21012 \N \N 6158831 2025-03-29 14:49:57.09 2025-03-29 14:49:57.09 7700 FEE 448612 13467 \N \N 6158832 2025-03-29 14:49:57.09 2025-03-29 14:49:57.09 69300 TIP 448612 7667 \N \N 6158841 2025-03-29 14:51:54.413 2025-03-29 14:51:54.413 27000 FEE 448591 12291 \N \N 6158842 2025-03-29 14:51:54.413 2025-03-29 14:51:54.413 243000 TIP 448591 690 \N \N 6158894 2025-03-29 14:59:52.339 2025-03-29 14:59:52.339 1000 FEE 448785 21178 \N \N 6158905 2025-03-29 15:01:56.566 2025-03-29 15:01:56.566 1000 FEE 448765 21116 \N \N 6158906 2025-03-29 15:01:56.566 2025-03-29 15:01:56.566 9000 TIP 448765 680 \N \N 6158924 2025-03-29 15:05:03.76 2025-03-29 15:05:03.76 27000 FEE 448790 11996 \N \N 6158928 2025-03-29 15:05:39.805 2025-03-29 15:05:39.805 1000 FEE 448759 19863 \N \N 6158929 2025-03-29 15:05:39.805 2025-03-29 15:05:39.805 9000 TIP 448759 16956 \N \N 6158947 2025-03-29 15:07:27.052 2025-03-29 15:07:27.052 6900 FEE 448781 20710 \N \N 6158948 2025-03-29 15:07:27.052 2025-03-29 15:07:27.052 62100 TIP 448781 7979 \N \N 6158949 2025-03-29 15:07:52.07 2025-03-29 15:07:52.07 7700 FEE 448778 4763 \N \N 6158950 2025-03-29 15:07:52.07 2025-03-29 15:07:52.07 69300 TIP 448778 895 \N \N 6158959 2025-03-29 15:09:00.765 2025-03-29 15:09:00.765 2100 FEE 448591 811 \N \N 6158960 2025-03-29 15:09:00.765 2025-03-29 15:09:00.765 18900 TIP 448591 20972 \N \N 6158981 2025-03-29 15:10:55.062 2025-03-29 15:10:55.062 300 FEE 448505 19375 \N \N 6158982 2025-03-29 15:10:55.062 2025-03-29 15:10:55.062 2700 TIP 448505 16939 \N \N 6158983 2025-03-29 15:10:58.508 2025-03-29 15:10:58.508 2100 FEE 447160 16939 \N \N 6158984 2025-03-29 15:10:58.508 2025-03-29 15:10:58.508 18900 TIP 447160 1298 \N \N 6158991 2025-03-29 15:13:44.106 2025-03-29 15:13:44.106 1000 POLL 448029 12911 \N \N 6159019 2025-03-29 15:18:34.789 2025-03-29 15:18:34.789 1000 FEE 448799 9261 \N \N 6159020 2025-03-29 15:18:37.815 2025-03-29 15:18:37.815 1000 POLL 448349 16653 \N \N 6159036 2025-03-29 15:21:29.69 2025-03-29 15:21:29.69 2100 FEE 448802 21814 \N \N 6159037 2025-03-29 15:21:29.69 2025-03-29 15:21:29.69 18900 TIP 448802 1411 \N \N 6159048 2025-03-29 15:25:38.757 2025-03-29 15:25:38.757 1000 FEE 448808 9758 \N \N 6159055 2025-03-29 15:26:43.535 2025-03-29 15:26:43.535 1000 FEE 448809 9845 \N \N 6159071 2025-03-29 15:27:24.974 2025-03-29 15:27:24.974 1000 FEE 448810 21083 \N \N 6159072 2025-03-29 15:27:25.031 2025-03-29 15:27:25.031 900 FEE 448788 16858 \N \N 6159073 2025-03-29 15:27:25.031 2025-03-29 15:27:25.031 8100 TIP 448788 18717 \N \N 6159075 2025-03-29 15:28:21.367 2025-03-29 15:28:21.367 4100 FEE 448803 15463 \N \N 6159076 2025-03-29 15:28:21.367 2025-03-29 15:28:21.367 36900 TIP 448803 21083 \N \N 6159077 2025-03-29 15:28:39.796 2025-03-29 15:28:39.796 1000 FEE 448811 9339 \N \N 6159102 2025-03-29 15:34:24.977 2025-03-29 15:34:24.977 1600 FEE 448802 928 \N \N 6159103 2025-03-29 15:34:24.977 2025-03-29 15:34:24.977 14400 TIP 448802 3409 \N \N 6159115 2025-03-29 15:37:23.365 2025-03-29 15:37:23.365 220000 FEE 448817 836 \N \N 6159139 2025-03-29 15:39:11.489 2025-03-29 15:39:11.489 7700 FEE 448691 12562 \N \N 6159140 2025-03-29 15:39:11.489 2025-03-29 15:39:11.489 69300 TIP 448691 15544 \N \N 6159143 2025-03-29 15:39:11.704 2025-03-29 15:39:11.704 7700 FEE 448691 20987 \N \N 6159144 2025-03-29 15:39:11.704 2025-03-29 15:39:11.704 69300 TIP 448691 9184 \N \N 6159170 2025-03-29 15:46:46.836 2025-03-29 15:46:46.836 1000 FEE 448821 1803 \N \N 6159174 2025-03-29 15:47:19.821 2025-03-29 15:47:19.821 7600 FEE 448691 20802 \N \N 6159175 2025-03-29 15:47:19.821 2025-03-29 15:47:19.821 68400 TIP 448691 8648 \N \N 6159185 2025-03-29 15:49:52.786 2025-03-29 15:49:52.786 1000 FEE 448823 6382 \N \N 6159186 2025-03-29 15:49:54.71 2025-03-29 15:49:54.71 0 FEE 448822 10342 \N \N 6159205 2025-03-29 15:54:06.722 2025-03-29 15:54:06.722 1000 FEE 448829 7659 \N \N 6159213 2025-03-29 15:56:44.475 2025-03-29 15:56:44.475 2100 FEE 447841 6526 \N \N 6159214 2025-03-29 15:56:44.475 2025-03-29 15:56:44.475 18900 TIP 447841 9992 \N \N 6159227 2025-03-29 15:57:43.41 2025-03-29 15:57:43.41 2100 FEE 448824 9845 \N \N 6159228 2025-03-29 15:57:43.41 2025-03-29 15:57:43.41 18900 TIP 448824 721 \N \N 6159237 2025-03-29 15:58:03.448 2025-03-29 15:58:03.448 2100 FEE 448073 1602 \N \N 6159238 2025-03-29 15:58:03.448 2025-03-29 15:58:03.448 18900 TIP 448073 672 \N \N 6159245 2025-03-29 15:58:11.656 2025-03-29 15:58:11.656 2100 FEE 448817 2195 \N \N 6159246 2025-03-29 15:58:11.656 2025-03-29 15:58:11.656 18900 TIP 448817 20775 \N \N 6159267 2025-03-29 15:58:27.624 2025-03-29 15:58:27.624 2100 FEE 448769 15728 \N \N 6159268 2025-03-29 15:58:27.624 2025-03-29 15:58:27.624 18900 TIP 448769 1195 \N \N 6159269 2025-03-29 15:58:28.303 2025-03-29 15:58:28.303 2100 FEE 448769 1488 \N \N 6159270 2025-03-29 15:58:28.303 2025-03-29 15:58:28.303 18900 TIP 448769 18178 \N \N 6159299 2025-03-29 15:59:38.738 2025-03-29 15:59:38.738 2100 FEE 448476 9362 \N \N 6159300 2025-03-29 15:59:38.738 2025-03-29 15:59:38.738 18900 TIP 448476 659 \N \N 6159311 2025-03-29 15:59:54.758 2025-03-29 15:59:54.758 2100 FEE 448375 21332 \N \N 6159312 2025-03-29 15:59:54.758 2025-03-29 15:59:54.758 18900 TIP 448375 20614 \N \N 6159325 2025-03-29 16:04:18.959 2025-03-29 16:04:18.959 7700 FEE 448820 14657 \N \N 6159326 2025-03-29 16:04:18.959 2025-03-29 16:04:18.959 69300 TIP 448820 6361 \N \N 6159347 2025-03-29 16:13:28.212 2025-03-29 16:13:28.212 21100 FEE 448805 21014 \N \N 6159348 2025-03-29 16:13:28.212 2025-03-29 16:13:28.212 189900 TIP 448805 889 \N \N 6040731 2025-03-19 22:46:48.626 2025-03-19 22:46:48.626 18900 TIP 435920 14122 \N \N 6040744 2025-03-19 22:50:22.136 2025-03-19 22:50:22.136 1000 FEE 435927 10944 \N \N 6040745 2025-03-19 22:50:49.642 2025-03-19 22:50:49.642 2000 FEE 435870 659 \N \N 6040746 2025-03-19 22:50:49.642 2025-03-19 22:50:49.642 18000 TIP 435870 21104 \N \N 6040750 2025-03-19 22:51:02.975 2025-03-19 22:51:02.975 1000 FEE 435929 11798 \N \N 6040752 2025-03-19 22:52:03.389 2025-03-19 22:52:03.389 0 FEE 383547 21555 \N \N 6040756 2025-03-19 22:52:37.592 2025-03-19 22:52:37.592 1000 FEE 435820 671 \N \N 6040757 2025-03-19 22:52:37.592 2025-03-19 22:52:37.592 9000 TIP 435820 20778 \N \N 6040763 2025-03-19 22:53:12.783 2025-03-19 22:53:12.783 1000 FEE 435871 16847 \N \N 6040764 2025-03-19 22:53:12.783 2025-03-19 22:53:12.783 9000 TIP 435871 1429 \N \N 6040737 2025-03-19 22:48:57.212 2025-03-19 22:48:57.212 115200 TIP 435125 9833 \N \N 6040741 2025-03-19 22:50:08.506 2025-03-19 22:50:08.506 2100 FEE 435924 2774 \N \N 6040742 2025-03-19 22:50:08.506 2025-03-19 22:50:08.506 18900 TIP 435924 16704 \N \N 6040754 2025-03-19 22:52:28.546 2025-03-19 22:52:28.546 1000 FEE 435808 8037 \N \N 6040755 2025-03-19 22:52:28.546 2025-03-19 22:52:28.546 9000 TIP 435808 8045 \N \N 6040758 2025-03-19 22:52:45.962 2025-03-19 22:52:45.962 2100 FEE 435914 7097 \N \N 6040759 2025-03-19 22:52:45.962 2025-03-19 22:52:45.962 18900 TIP 435914 5759 \N \N 6040772 2025-03-19 22:54:23.705 2025-03-19 22:54:23.705 2100 FEE 435922 20816 \N \N 6040773 2025-03-19 22:54:23.705 2025-03-19 22:54:23.705 18900 TIP 435922 9845 \N \N 6040779 2025-03-19 22:55:52.905 2025-03-19 22:55:52.905 0 FEE 435932 20837 \N \N 6040790 2025-03-19 22:57:57.67 2025-03-19 22:57:57.67 100 FEE 435639 10398 \N \N 6040791 2025-03-19 22:57:57.67 2025-03-19 22:57:57.67 900 TIP 435639 5495 \N \N 6040825 2025-03-19 23:10:12.5 2025-03-19 23:10:12.5 2100 FEE 435874 651 \N \N 6040826 2025-03-19 23:10:12.5 2025-03-19 23:10:12.5 18900 TIP 435874 12291 \N \N 6040861 2025-03-19 23:19:22.811 2025-03-19 23:19:22.811 2100 FEE 435935 21014 \N \N 6040862 2025-03-19 23:19:22.811 2025-03-19 23:19:22.811 18900 TIP 435935 1124 \N \N 6040887 2025-03-19 23:31:05.158 2025-03-19 23:31:05.158 1000 FEE 435946 21166 \N \N 6040915 2025-03-19 23:41:56.434 2025-03-19 23:41:56.434 10000 FEE 435951 1817 \N \N 6040919 2025-03-19 23:43:03.826 2025-03-19 23:43:03.826 1000 FEE 435663 4602 \N \N 6040920 2025-03-19 23:43:03.826 2025-03-19 23:43:03.826 9000 TIP 435663 19943 \N \N 6040962 2025-03-19 23:58:17.429 2025-03-19 23:58:17.429 800 FEE 435904 21518 \N \N 6040963 2025-03-19 23:58:17.429 2025-03-19 23:58:17.429 7200 TIP 435904 3990 \N \N 6040973 2025-03-20 00:00:24.218 2025-03-20 00:00:24.218 21000 FEE 435958 1009 \N \N 6040997 2025-03-20 00:12:29.706 2025-03-20 00:12:29.706 2100 FEE 435950 15925 \N \N 6040998 2025-03-20 00:12:29.706 2025-03-20 00:12:29.706 18900 TIP 435950 10591 \N \N 6041054 2025-03-20 00:17:42.698 2025-03-20 00:17:42.698 2100 FEE 435949 12951 \N \N 6041055 2025-03-20 00:17:42.698 2025-03-20 00:17:42.698 18900 TIP 435949 17722 \N \N 6041105 2025-03-20 00:20:30.535 2025-03-20 00:20:30.535 1000 FEE 435293 17148 \N \N 6041106 2025-03-20 00:20:30.535 2025-03-20 00:20:30.535 9000 TIP 435293 20185 \N \N 6041115 2025-03-20 00:20:35.678 2025-03-20 00:20:35.678 1000 FEE 435329 19863 \N \N 6041116 2025-03-20 00:20:35.678 2025-03-20 00:20:35.678 9000 TIP 435329 2459 \N \N 6041121 2025-03-20 00:20:43.003 2025-03-20 00:20:43.003 1000 FEE 435687 2098 \N \N 6041122 2025-03-20 00:20:43.003 2025-03-20 00:20:43.003 9000 TIP 435687 1120 \N \N 6041141 2025-03-20 00:21:11.375 2025-03-20 00:21:11.375 1000 FEE 435805 12139 \N \N 6041142 2025-03-20 00:21:11.375 2025-03-20 00:21:11.375 9000 TIP 435805 20612 \N \N 6041154 2025-03-20 00:21:24.859 2025-03-20 00:21:24.859 1000 FEE 435355 20412 \N \N 6041155 2025-03-20 00:21:24.859 2025-03-20 00:21:24.859 9000 TIP 435355 20102 \N \N 6041160 2025-03-20 00:21:37.919 2025-03-20 00:21:37.919 1000 FEE 435546 13097 \N \N 6041161 2025-03-20 00:21:37.919 2025-03-20 00:21:37.919 9000 TIP 435546 17944 \N \N 6041182 2025-03-20 00:21:49.572 2025-03-20 00:21:49.572 1000 FEE 435120 15336 \N \N 6041183 2025-03-20 00:21:49.572 2025-03-20 00:21:49.572 9000 TIP 435120 16432 \N \N 6041184 2025-03-20 00:21:51.955 2025-03-20 00:21:51.955 1000 FEE 435177 976 \N \N 6041185 2025-03-20 00:21:51.955 2025-03-20 00:21:51.955 9000 TIP 435177 634 \N \N 6041196 2025-03-20 00:25:58.913 2025-03-20 00:25:58.913 10000 FEE 435944 15213 \N \N 6041197 2025-03-20 00:25:58.913 2025-03-20 00:25:58.913 90000 TIP 435944 11018 \N \N 6041218 2025-03-20 00:33:23.009 2025-03-20 00:33:23.009 1000 FEE 435969 1286 \N \N 6041239 2025-03-20 00:41:35.633 2025-03-20 00:41:35.633 1000 FEE 435972 4323 \N \N 6041241 2025-03-20 00:42:38.578 2025-03-20 00:42:38.578 1000 FEE 435944 12261 \N \N 6041242 2025-03-20 00:42:38.578 2025-03-20 00:42:38.578 9000 TIP 435944 12188 \N \N 6041269 2025-03-20 00:51:40.749 2025-03-20 00:51:40.749 2100 FEE 435892 19570 \N \N 6041270 2025-03-20 00:51:40.749 2025-03-20 00:51:40.749 18900 TIP 435892 690 \N \N 6041273 2025-03-20 00:53:06.044 2025-03-20 00:53:06.044 1000 FEE 435980 13566 \N \N 6041288 2025-03-20 00:57:16.339 2025-03-20 00:57:16.339 1000 FEE 435810 11443 \N \N 6041289 2025-03-20 00:57:16.339 2025-03-20 00:57:16.339 9000 TIP 435810 16839 \N \N 6041290 2025-03-20 00:57:23.165 2025-03-20 00:57:23.165 15000 FEE 435982 616 \N \N 6041295 2025-03-20 00:59:37.325 2025-03-20 00:59:37.325 1000 FEE 435983 16670 \N \N 6041297 2025-03-20 01:00:46.841 2025-03-20 01:00:46.841 1000 FEE 435984 19930 \N \N 6041301 2025-03-20 01:01:44.928 2025-03-20 01:01:44.928 125000 FEE 435985 17570 \N \N 6041320 2025-03-20 01:05:34.685 2025-03-20 01:05:34.685 10000 FEE 435406 20190 \N \N 6041321 2025-03-20 01:05:34.685 2025-03-20 01:05:34.685 90000 TIP 435406 11515 \N \N 6041327 2025-03-20 01:08:09.017 2025-03-20 01:08:09.017 10000 FEE 435979 17696 \N \N 6041328 2025-03-20 01:08:09.017 2025-03-20 01:08:09.017 90000 TIP 435979 8954 \N \N 6041351 2025-03-20 01:15:54.181 2025-03-20 01:15:54.181 1000 FEE 436000 1273 \N \N 6041365 2025-03-20 01:22:46.054 2025-03-20 01:22:46.054 1000 FEE 435958 2111 \N \N 6041366 2025-03-20 01:22:46.054 2025-03-20 01:22:46.054 9000 TIP 435958 811 \N \N 6041385 2025-03-20 01:31:50.352 2025-03-20 01:31:50.352 800 FEE 436001 11091 \N \N 6041386 2025-03-20 01:31:50.352 2025-03-20 01:31:50.352 7200 TIP 436001 684 \N \N 6041401 2025-03-20 01:34:31.191 2025-03-20 01:34:31.191 100 FEE 435908 21114 \N \N 6041402 2025-03-20 01:34:31.191 2025-03-20 01:34:31.191 900 TIP 435908 20436 \N \N 6041469 2025-03-20 01:46:23.045 2025-03-20 01:46:23.045 2100 FEE 397192 16562 \N \N 6041470 2025-03-20 01:46:23.045 2025-03-20 01:46:23.045 18900 TIP 397192 2010 \N \N 6041475 2025-03-20 01:46:25.353 2025-03-20 01:46:25.353 2100 FEE 397192 18727 \N \N 6041476 2025-03-20 01:46:25.353 2025-03-20 01:46:25.353 18900 TIP 397192 16410 \N \N 6041485 2025-03-20 01:48:26.823 2025-03-20 01:48:26.823 2100 FEE 431293 10433 \N \N 6041486 2025-03-20 01:48:26.823 2025-03-20 01:48:26.823 18900 TIP 431293 20939 \N \N 6041493 2025-03-20 01:48:47.552 2025-03-20 01:48:47.552 2100 FEE 418294 909 \N \N 6041494 2025-03-20 01:48:47.552 2025-03-20 01:48:47.552 18900 TIP 418294 21338 \N \N 6041499 2025-03-20 01:48:47.992 2025-03-20 01:48:47.992 2100 FEE 418294 1515 \N \N 6041500 2025-03-20 01:48:47.992 2025-03-20 01:48:47.992 18900 TIP 418294 2327 \N \N 6041502 2025-03-20 01:49:12.573 2025-03-20 01:49:12.573 2100 FEE 237680 5708 \N \N 6041503 2025-03-20 01:49:12.573 2025-03-20 01:49:12.573 18900 TIP 237680 11523 \N \N 6041517 2025-03-20 01:53:30.719 2025-03-20 01:53:30.719 1000 FEE 436016 8544 \N \N 6041518 2025-03-20 01:53:30.719 2025-03-20 01:53:30.719 9000 TIP 436016 6741 \N \N 6041525 2025-03-20 01:55:01.311 2025-03-20 01:55:01.311 1000 FEE 436022 14357 \N \N 6041532 2025-03-20 01:58:10.951 2025-03-20 01:58:10.951 0 FEE 436021 21526 \N \N 6041551 2025-03-20 02:04:33.139 2025-03-20 02:04:33.139 4000 FEE 435987 9307 \N \N 6041552 2025-03-20 02:04:33.139 2025-03-20 02:04:33.139 36000 TIP 435987 21810 \N \N 6041554 2025-03-20 02:04:45.761 2025-03-20 02:04:45.761 4000 FEE 435938 19217 \N \N 6041555 2025-03-20 02:04:45.761 2025-03-20 02:04:45.761 36000 TIP 435938 1261 \N \N 6041590 2025-03-20 02:08:12.381 2025-03-20 02:08:12.381 2100 FEE 435746 11678 \N \N 6041591 2025-03-20 02:08:12.381 2025-03-20 02:08:12.381 18900 TIP 435746 4776 \N \N 6041597 2025-03-20 02:08:26.902 2025-03-20 02:08:26.902 0 FEE 436031 20655 \N \N 6041615 2025-03-20 02:17:20.34 2025-03-20 02:17:20.34 1000 FEE 436035 5904 \N \N 6041620 2025-03-20 02:18:07.468 2025-03-20 02:18:07.468 100000 FEE 436036 977 \N \N 6041630 2025-03-20 02:21:07.31 2025-03-20 02:21:07.31 1000 FEE 436033 1632 \N \N 6041631 2025-03-20 02:21:07.31 2025-03-20 02:21:07.31 9000 TIP 436033 19087 \N \N 6041695 2025-03-20 02:26:51.212 2025-03-20 02:26:51.212 5000 FEE 435284 12097 \N \N 6041696 2025-03-20 02:26:51.212 2025-03-20 02:26:51.212 45000 TIP 435284 8376 \N \N 6111808 2025-03-26 03:26:11.504 2025-03-26 03:26:11.504 1000 FEE 443380 19980 \N \N 6111841 2025-03-26 03:30:43.995 2025-03-26 03:30:43.995 10000 FEE 443385 15544 \N \N 6111842 2025-03-26 03:30:43.995 2025-03-26 03:30:43.995 90000 TIP 443385 6602 \N \N 6111850 2025-03-26 03:31:55.191 2025-03-26 03:31:55.191 1000 FEE 443389 9355 \N \N 6111889 2025-03-26 03:38:30.534 2025-03-26 03:38:30.534 1000 FEE 443396 721 \N \N 6111890 2025-03-26 03:38:30.534 2025-03-26 03:38:30.534 9000 TIP 443396 1469 \N \N 6111899 2025-03-26 03:39:17.719 2025-03-26 03:39:17.719 2100 FEE 442608 15213 \N \N 6111900 2025-03-26 03:39:17.719 2025-03-26 03:39:17.719 18900 TIP 442608 18274 \N \N 6111910 2025-03-26 03:39:49.043 2025-03-26 03:39:49.043 0 FEE 443386 21555 \N \N 6111918 2025-03-26 03:42:08.798 2025-03-26 03:42:08.798 2100 FEE 443146 16212 \N \N 6111919 2025-03-26 03:42:08.798 2025-03-26 03:42:08.798 18900 TIP 443146 16638 \N \N 6112033 2025-03-26 04:06:27.513 2025-03-26 04:06:27.513 5700 FEE 443400 10934 \N \N 6112034 2025-03-26 04:06:27.513 2025-03-26 04:06:27.513 51300 TIP 443400 9183 \N \N 6112058 2025-03-26 04:09:23.406 2025-03-26 04:09:23.406 5700 FEE 443429 9336 \N \N 6112059 2025-03-26 04:09:23.406 2025-03-26 04:09:23.406 51300 TIP 443429 13133 \N \N 6112079 2025-03-26 04:11:07.241 2025-03-26 04:11:07.241 9000 FEE 443272 1124 \N \N 6112080 2025-03-26 04:11:07.241 2025-03-26 04:11:07.241 81000 TIP 443272 20502 \N \N 6112110 2025-03-26 04:13:23.302 2025-03-26 04:13:23.302 100 FEE 443122 21400 \N \N 6112111 2025-03-26 04:13:23.302 2025-03-26 04:13:23.302 900 TIP 443122 20683 \N \N 6112120 2025-03-26 04:13:29.577 2025-03-26 04:13:29.577 1000 FEE 443427 2639 \N \N 6112121 2025-03-26 04:13:29.577 2025-03-26 04:13:29.577 9000 TIP 443427 2111 \N \N 6112139 2025-03-26 04:15:14.993 2025-03-26 04:15:14.993 1000 FEE 443439 21263 \N \N 6112168 2025-03-26 04:17:44.946 2025-03-26 04:17:44.946 1000 FEE 443443 8544 \N \N 6112174 2025-03-26 04:18:36.385 2025-03-26 04:18:36.385 6900 FEE 443093 1082 \N \N 6112175 2025-03-26 04:18:36.385 2025-03-26 04:18:36.385 62100 TIP 443093 1705 \N \N 6112182 2025-03-26 04:19:15.887 2025-03-26 04:19:15.887 1000 FEE 443445 19484 \N \N 6112200 2025-03-26 04:21:54.993 2025-03-26 04:21:54.993 2100 FEE 443197 11648 \N \N 6112201 2025-03-26 04:21:54.993 2025-03-26 04:21:54.993 18900 TIP 443197 814 \N \N 6112235 2025-03-26 04:25:27.492 2025-03-26 04:25:27.492 1000 FEE 443312 21393 \N \N 6112236 2025-03-26 04:25:27.492 2025-03-26 04:25:27.492 9000 TIP 443312 19821 \N \N 6112277 2025-03-26 04:31:21.317 2025-03-26 04:31:21.317 1000 FEE 440692 6268 \N \N 6112278 2025-03-26 04:31:21.317 2025-03-26 04:31:21.317 9000 TIP 440692 5173 \N \N 6112285 2025-03-26 04:31:22.537 2025-03-26 04:31:22.537 1000 FEE 440692 2596 \N \N 6112286 2025-03-26 04:31:22.537 2025-03-26 04:31:22.537 9000 TIP 440692 15180 \N \N 6112287 2025-03-26 04:31:22.717 2025-03-26 04:31:22.717 1000 FEE 440692 20864 \N \N 6112288 2025-03-26 04:31:22.717 2025-03-26 04:31:22.717 9000 TIP 440692 14220 \N \N 6112314 2025-03-26 04:35:38.425 2025-03-26 04:35:38.425 10000 FEE 443463 20799 \N \N 6112338 2025-03-26 04:38:57.936 2025-03-26 04:38:57.936 10000 DONT_LIKE_THIS 443319 8173 \N \N 6112359 2025-03-26 04:41:29.712 2025-03-26 04:41:29.712 2100 FEE 443262 19924 \N \N 6112360 2025-03-26 04:41:29.712 2025-03-26 04:41:29.712 18900 TIP 443262 1784 \N \N 6112363 2025-03-26 04:41:35.459 2025-03-26 04:41:35.459 100 FEE 443228 5978 \N \N 6112364 2025-03-26 04:41:35.459 2025-03-26 04:41:35.459 900 TIP 443228 2402 \N \N 6112385 2025-03-26 04:44:45.994 2025-03-26 04:44:45.994 2100 FEE 443319 822 \N \N 6112386 2025-03-26 04:44:45.994 2025-03-26 04:44:45.994 18900 TIP 443319 9099 \N \N 6112405 2025-03-26 04:45:30.889 2025-03-26 04:45:30.889 1000 FEE 442904 13055 \N \N 6112406 2025-03-26 04:45:30.889 2025-03-26 04:45:30.889 9000 TIP 442904 6463 \N \N 6112415 2025-03-26 04:45:31.869 2025-03-26 04:45:31.869 1000 FEE 442904 9355 \N \N 6112416 2025-03-26 04:45:31.869 2025-03-26 04:45:31.869 9000 TIP 442904 1495 \N \N 6112419 2025-03-26 04:45:32.178 2025-03-26 04:45:32.178 1000 FEE 442904 1483 \N \N 6112420 2025-03-26 04:45:32.178 2025-03-26 04:45:32.178 9000 TIP 442904 13566 \N \N 6112437 2025-03-26 04:45:35.718 2025-03-26 04:45:35.718 1000 FEE 442904 15978 \N \N 6112438 2025-03-26 04:45:35.718 2025-03-26 04:45:35.718 9000 TIP 442904 1817 \N \N 6112455 2025-03-26 04:45:40.407 2025-03-26 04:45:40.407 1000 FEE 442904 6777 \N \N 6112456 2025-03-26 04:45:40.407 2025-03-26 04:45:40.407 9000 TIP 442904 20562 \N \N 6112519 2025-03-26 04:45:47.889 2025-03-26 04:45:47.889 1000 FEE 442904 18734 \N \N 6112520 2025-03-26 04:45:47.889 2025-03-26 04:45:47.889 9000 TIP 442904 844 \N \N 6112550 2025-03-26 04:48:25.399 2025-03-26 04:48:25.399 1000 FEE 443478 19689 \N \N 6112555 2025-03-26 04:49:25.1 2025-03-26 04:49:25.1 1000 FEE 443480 14959 \N \N 6112560 2025-03-26 04:51:21.787 2025-03-26 04:51:21.787 1700 FEE 443096 18449 \N \N 6112561 2025-03-26 04:51:21.787 2025-03-26 04:51:21.787 15300 TIP 443096 17533 \N \N 6112562 2025-03-26 04:51:21.945 2025-03-26 04:51:21.945 1700 FEE 443096 21442 \N \N 6112563 2025-03-26 04:51:21.945 2025-03-26 04:51:21.945 15300 TIP 443096 21639 \N \N 6112564 2025-03-26 04:51:23.898 2025-03-26 04:51:23.898 1000 FEE 443483 1489 \N \N 6112573 2025-03-26 04:53:01.54 2025-03-26 04:53:01.54 1000 FEE 443485 5870 \N \N 6112585 2025-03-26 04:56:25.73 2025-03-26 04:56:25.73 1700 FEE 443142 19303 \N \N 6112586 2025-03-26 04:56:25.73 2025-03-26 04:56:25.73 15300 TIP 443142 697 \N \N 6112593 2025-03-26 04:56:46.723 2025-03-26 04:56:46.723 700 FEE 443487 2285 \N \N 6112594 2025-03-26 04:56:46.723 2025-03-26 04:56:46.723 6300 TIP 443487 2285 \N \N 6040777 2025-03-19 22:55:22.022 2025-03-19 22:55:22.022 1000 FEE 435933 2703 \N \N 6040794 2025-03-19 22:58:00.646 2025-03-19 22:58:00.646 2100 FEE 435908 12245 \N \N 6040795 2025-03-19 22:58:00.646 2025-03-19 22:58:00.646 18900 TIP 435908 652 \N \N 6040863 2025-03-19 23:19:39.871 2025-03-19 23:19:39.871 1000 POLL 435805 730 \N \N 6040898 2025-03-19 23:33:24.716 2025-03-19 23:33:24.716 3000 FEE 435944 15941 \N \N 6040899 2025-03-19 23:33:24.716 2025-03-19 23:33:24.716 27000 TIP 435944 10291 \N \N 6040900 2025-03-19 23:33:54.3 2025-03-19 23:33:54.3 1000000 FEE 435944 1009 \N \N 6040901 2025-03-19 23:33:54.3 2025-03-19 23:33:54.3 9000000 TIP 435944 7654 \N \N 6040940 2025-03-19 23:50:22.535 2025-03-19 23:50:22.535 21000 FEE 435955 20987 \N \N 6040946 2025-03-19 23:53:36.89 2025-03-19 23:53:36.89 1600 FEE 435824 20892 \N \N 6040947 2025-03-19 23:53:36.89 2025-03-19 23:53:36.89 14400 TIP 435824 20657 \N \N 6040966 2025-03-19 23:59:02.889 2025-03-19 23:59:02.889 3200 FEE 435944 15103 \N \N 6040967 2025-03-19 23:59:02.889 2025-03-19 23:59:02.889 28800 TIP 435944 805 \N \N 6041003 2025-03-20 00:14:48.958 2025-03-20 00:14:48.958 1000 FEE 435962 16638 \N \N 6041030 2025-03-20 00:15:10.003 2025-03-20 00:15:10.003 1000 FEE 435776 19655 \N \N 6041031 2025-03-20 00:15:10.003 2025-03-20 00:15:10.003 9000 TIP 435776 7376 \N \N 6041052 2025-03-20 00:17:15.235 2025-03-20 00:17:15.235 200 FEE 435651 15521 \N \N 6041053 2025-03-20 00:17:15.235 2025-03-20 00:17:15.235 1800 TIP 435651 2674 \N \N 6041059 2025-03-20 00:18:51.17 2025-03-20 00:18:51.17 100 FEE 435488 15282 \N \N 6041060 2025-03-20 00:18:51.17 2025-03-20 00:18:51.17 900 TIP 435488 11829 \N \N 6041093 2025-03-20 00:20:25.821 2025-03-20 00:20:25.821 1000 FEE 435430 6741 \N \N 6041094 2025-03-20 00:20:25.821 2025-03-20 00:20:25.821 9000 TIP 435430 18441 \N \N 6041103 2025-03-20 00:20:29.803 2025-03-20 00:20:29.803 1000 FEE 435286 3417 \N \N 6041104 2025-03-20 00:20:29.803 2025-03-20 00:20:29.803 9000 TIP 435286 13174 \N \N 6041109 2025-03-20 00:20:33.381 2025-03-20 00:20:33.381 1000 FEE 435470 17797 \N \N 6041110 2025-03-20 00:20:33.381 2025-03-20 00:20:33.381 9000 TIP 435470 21804 \N \N 6041123 2025-03-20 00:20:43.785 2025-03-20 00:20:43.785 1000 FEE 435719 15577 \N \N 6041124 2025-03-20 00:20:43.785 2025-03-20 00:20:43.785 9000 TIP 435719 16988 \N \N 6041144 2025-03-20 00:21:14.264 2025-03-20 00:21:14.264 1000 FEE 435808 15484 \N \N 6041145 2025-03-20 00:21:14.264 2025-03-20 00:21:14.264 9000 TIP 435808 9276 \N \N 6041188 2025-03-20 00:21:53.969 2025-03-20 00:21:53.969 1000 FEE 435492 9982 \N \N 6041189 2025-03-20 00:21:53.969 2025-03-20 00:21:53.969 9000 TIP 435492 3461 \N \N 6041225 2025-03-20 00:38:44.06 2025-03-20 00:38:44.06 2500 FEE 435908 11897 \N \N 6041226 2025-03-20 00:38:44.06 2025-03-20 00:38:44.06 22500 TIP 435908 2326 \N \N 6041254 2025-03-20 00:47:33.332 2025-03-20 00:47:33.332 1000 FEE 435976 11165 \N \N 6041285 2025-03-20 00:55:46.955 2025-03-20 00:55:46.955 10000 FEE 435981 6229 \N \N 6041299 2025-03-20 01:01:34.29 2025-03-20 01:01:34.29 10000 FEE 435944 20817 \N \N 6041300 2025-03-20 01:01:34.29 2025-03-20 01:01:34.29 90000 TIP 435944 9494 \N \N 6041346 2025-03-20 01:12:22.04 2025-03-20 01:12:22.04 1000 FEE 435998 9529 \N \N 6041364 2025-03-20 01:22:32.612 2025-03-20 01:22:32.612 1000 FEE 436004 19378 \N \N 6041397 2025-03-20 01:34:30.501 2025-03-20 01:34:30.501 100 FEE 435908 17592 \N \N 6041398 2025-03-20 01:34:30.501 2025-03-20 01:34:30.501 900 TIP 435908 1286 \N \N 6041455 2025-03-20 01:43:50.922 2025-03-20 01:43:50.922 2500 FEE 435769 21666 \N \N 6041456 2025-03-20 01:43:50.922 2025-03-20 01:43:50.922 22500 TIP 435769 18232 \N \N 6041463 2025-03-20 01:45:06.471 2025-03-20 01:45:06.471 200 FEE 435596 10469 \N \N 6041464 2025-03-20 01:45:06.471 2025-03-20 01:45:06.471 1800 TIP 435596 2757 \N \N 6041505 2025-03-20 01:49:13.25 2025-03-20 01:49:13.25 2100 FEE 237680 20603 \N \N 6041506 2025-03-20 01:49:13.25 2025-03-20 01:49:13.25 18900 TIP 237680 632 \N \N 6041507 2025-03-20 01:49:33.414 2025-03-20 01:49:33.414 0 FEE 436019 5708 \N \N 6041553 2025-03-20 02:04:36.096 2025-03-20 02:04:36.096 1000 FEE 436029 7395 \N \N 6041560 2025-03-20 02:05:34.674 2025-03-20 02:05:34.674 4000 FEE 435881 1401 \N \N 6041561 2025-03-20 02:05:34.674 2025-03-20 02:05:34.674 36000 TIP 435881 795 \N \N 6041562 2025-03-20 02:05:42.943 2025-03-20 02:05:42.943 4000 FEE 435878 17838 \N \N 6041563 2025-03-20 02:05:42.943 2025-03-20 02:05:42.943 36000 TIP 435878 15091 \N \N 6041565 2025-03-20 02:06:10.731 2025-03-20 02:06:10.731 4000 FEE 435858 4862 \N \N 6041566 2025-03-20 02:06:10.731 2025-03-20 02:06:10.731 36000 TIP 435858 20606 \N \N 6041572 2025-03-20 02:07:01.175 2025-03-20 02:07:01.175 0 FEE 436029 17103 \N \N 6143746 2025-03-28 10:33:55.859 2025-03-28 10:33:55.859 100 FEE 447105 8242 \N \N 6143747 2025-03-28 10:33:55.859 2025-03-28 10:33:55.859 900 TIP 447105 16447 \N \N 6143752 2025-03-28 10:34:03.894 2025-03-28 10:34:03.894 900 FEE 447013 17673 \N \N 6143753 2025-03-28 10:34:03.894 2025-03-28 10:34:03.894 8100 TIP 447013 8506 \N \N 6143772 2025-03-28 10:37:05.802 2025-03-28 10:37:05.802 2100 FEE 447148 3456 \N \N 6143773 2025-03-28 10:37:05.802 2025-03-28 10:37:05.802 18900 TIP 447148 9820 \N \N 6143795 2025-03-28 10:41:42.396 2025-03-28 10:41:42.396 1000 FEE 447204 20454 \N \N 6143796 2025-03-28 10:41:50.421 2025-03-28 10:41:50.421 100 FEE 447197 1615 \N \N 6143797 2025-03-28 10:41:50.421 2025-03-28 10:41:50.421 900 TIP 447197 14818 \N \N 6143809 2025-03-28 10:44:47.447 2025-03-28 10:44:47.447 300 FEE 447192 1319 \N \N 6143810 2025-03-28 10:44:47.447 2025-03-28 10:44:47.447 2700 TIP 447192 5759 \N \N 6143813 2025-03-28 10:46:26.902 2025-03-28 10:46:26.902 1000 FEE 446942 21400 \N \N 6143814 2025-03-28 10:46:26.902 2025-03-28 10:46:26.902 9000 TIP 446942 17727 \N \N 6143838 2025-03-28 10:50:26.756 2025-03-28 10:50:26.756 1000 POLL 446942 5708 \N \N 6143852 2025-03-28 10:54:27.36 2025-03-28 10:54:27.36 1100 FEE 447079 9874 \N \N 6143853 2025-03-28 10:54:27.36 2025-03-28 10:54:27.36 9900 TIP 447079 15978 \N \N 6143855 2025-03-28 10:54:59.218 2025-03-28 10:54:59.218 1100 FEE 447133 21523 \N \N 6143856 2025-03-28 10:54:59.218 2025-03-28 10:54:59.218 9900 TIP 447133 5775 \N \N 6143860 2025-03-28 10:55:27.489 2025-03-28 10:55:27.489 1000 FEE 447214 634 \N \N 6143888 2025-03-28 10:58:26.622 2025-03-28 10:58:26.622 1000 FEE 447212 659 \N \N 6143889 2025-03-28 10:58:26.622 2025-03-28 10:58:26.622 9000 TIP 447212 4167 \N \N 6143894 2025-03-28 10:58:28.207 2025-03-28 10:58:28.207 1000 FEE 447212 10862 \N \N 6143895 2025-03-28 10:58:28.207 2025-03-28 10:58:28.207 9000 TIP 447212 16954 \N \N 6143915 2025-03-28 11:00:47.989 2025-03-28 11:00:47.989 5000 FEE 447081 11561 \N \N 6143916 2025-03-28 11:00:47.989 2025-03-28 11:00:47.989 45000 TIP 447081 18241 \N \N 6143923 2025-03-28 11:01:23.178 2025-03-28 11:01:23.178 1100 FEE 447167 621 \N \N 6143924 2025-03-28 11:01:23.178 2025-03-28 11:01:23.178 9900 TIP 447167 1624 \N \N 6143956 2025-03-28 11:03:27.074 2025-03-28 11:03:27.074 0 FEE 447218 20802 \N \N 6143964 2025-03-28 11:04:35.834 2025-03-28 11:04:35.834 5000 FEE 447217 21104 \N \N 6143965 2025-03-28 11:04:35.834 2025-03-28 11:04:35.834 45000 TIP 447217 16594 \N \N 6143980 2025-03-28 11:05:01.537 2025-03-28 11:05:01.537 1000 FEE 447225 2088 \N \N 6143981 2025-03-28 11:05:01.537 2025-03-28 11:05:01.537 9000 TIP 447225 1009 \N \N 6143993 2025-03-28 11:05:44.564 2025-03-28 11:05:44.564 1000 FEE 447224 19930 \N \N 6143994 2025-03-28 11:05:44.564 2025-03-28 11:05:44.564 9000 TIP 447224 16571 \N \N 6144000 2025-03-28 11:05:52.949 2025-03-28 11:05:52.949 1000 FEE 447229 956 \N \N 6144005 2025-03-28 11:06:45.742 2025-03-28 11:06:45.742 1100 FEE 447147 6430 \N \N 6144006 2025-03-28 11:06:45.742 2025-03-28 11:06:45.742 9900 TIP 447147 1605 \N \N 6144012 2025-03-28 11:06:56.798 2025-03-28 11:06:56.798 1000 FEE 447226 21228 \N \N 6144013 2025-03-28 11:06:56.798 2025-03-28 11:06:56.798 9000 TIP 447226 11873 \N \N 6144036 2025-03-28 11:07:14.091 2025-03-28 11:07:14.091 1000 FEE 447225 13100 \N \N 6144037 2025-03-28 11:07:14.091 2025-03-28 11:07:14.091 9000 TIP 447225 21402 \N \N 6144052 2025-03-28 11:07:29.302 2025-03-28 11:07:29.302 1000 FEE 447121 696 \N \N 6144053 2025-03-28 11:07:29.302 2025-03-28 11:07:29.302 9000 TIP 447121 1221 \N \N 6144067 2025-03-28 11:07:43.952 2025-03-28 11:07:43.952 10000 FEE 446937 20963 \N \N 6144068 2025-03-28 11:07:43.952 2025-03-28 11:07:43.952 90000 TIP 446937 638 \N \N 6144072 2025-03-28 11:09:06.406 2025-03-28 11:09:06.406 3000 FEE 447106 20019 \N \N 6144073 2025-03-28 11:09:06.406 2025-03-28 11:09:06.406 27000 TIP 447106 2338 \N \N 6144083 2025-03-28 11:12:01.031 2025-03-28 11:12:01.031 1000 FEE 447236 1626 \N \N 6144124 2025-03-28 11:16:31.273 2025-03-28 11:16:31.273 1000 FEE 447239 3392 \N \N 6144125 2025-03-28 11:16:31.273 2025-03-28 11:16:31.273 9000 TIP 447239 620 \N \N 6158862 2025-03-29 14:54:06.377 2025-03-29 14:54:06.377 9000 TIP 448746 5703 \N \N 6158878 2025-03-29 14:57:04.992 2025-03-29 14:57:04.992 2100 FEE 448765 10731 \N \N 6158879 2025-03-29 14:57:04.992 2025-03-29 14:57:04.992 18900 TIP 448765 16948 \N \N 6158892 2025-03-29 14:59:46.434 2025-03-29 14:59:46.434 7700 FEE 448057 2326 \N \N 6158893 2025-03-29 14:59:46.434 2025-03-29 14:59:46.434 69300 TIP 448057 5661 \N \N 6158910 2025-03-29 15:02:18.262 2025-03-29 15:02:18.262 1000 FEE 448786 2088 \N \N 6158911 2025-03-29 15:02:25.4 2025-03-29 15:02:25.4 1000 FEE 448787 7125 \N \N 6158922 2025-03-29 15:04:14.351 2025-03-29 15:04:14.351 4200 FEE 410985 1615 \N \N 6158923 2025-03-29 15:04:14.351 2025-03-29 15:04:14.351 37800 TIP 410985 19126 \N \N 6158930 2025-03-29 15:05:39.823 2025-03-29 15:05:39.823 1000 FEE 448789 20377 \N \N 6158931 2025-03-29 15:05:39.823 2025-03-29 15:05:39.823 9000 TIP 448789 3504 \N \N 6158935 2025-03-29 15:05:40.19 2025-03-29 15:05:40.19 1000 FEE 448759 15662 \N \N 6158936 2025-03-29 15:05:40.19 2025-03-29 15:05:40.19 9000 TIP 448759 20094 \N \N 6158943 2025-03-29 15:06:34.13 2025-03-29 15:06:34.13 1600 FEE 448779 5708 \N \N 6111826 2025-03-26 03:27:41.899 2025-03-26 03:27:41.899 9000 TIP 443338 965 \N \N 6111849 2025-03-26 03:31:36.639 2025-03-26 03:31:36.639 7000 FEE 443388 21803 \N \N 6111852 2025-03-26 03:32:29.367 2025-03-26 03:32:29.367 0 FEE 443385 17592 \N \N 6111862 2025-03-26 03:34:13.885 2025-03-26 03:34:13.885 0 FEE 443384 19378 \N \N 6111869 2025-03-26 03:34:37.515 2025-03-26 03:34:37.515 10000 FEE 443393 2652 \N \N 6111882 2025-03-26 03:37:40.884 2025-03-26 03:37:40.884 1000 FEE 443395 16830 \N \N 6111883 2025-03-26 03:38:14.368 2025-03-26 03:38:14.368 10000 FEE 443396 9347 \N \N 6111903 2025-03-26 03:39:17.846 2025-03-26 03:39:17.846 2100 FEE 442608 2577 \N \N 6111904 2025-03-26 03:39:17.846 2025-03-26 03:39:17.846 18900 TIP 442608 7674 \N \N 6111907 2025-03-26 03:39:22.333 2025-03-26 03:39:22.333 100000 FEE 442608 12951 \N \N 6111908 2025-03-26 03:39:22.333 2025-03-26 03:39:22.333 900000 TIP 442608 8684 \N \N 6111927 2025-03-26 03:44:13.405 2025-03-26 03:44:13.405 2100 FEE 443179 21829 \N \N 6111928 2025-03-26 03:44:13.405 2025-03-26 03:44:13.405 18900 TIP 443179 15337 \N \N 6111937 2025-03-26 03:46:58.651 2025-03-26 03:46:58.651 500 FEE 443274 18500 \N \N 6111938 2025-03-26 03:46:58.651 2025-03-26 03:46:58.651 4500 TIP 443274 19378 \N \N 6111966 2025-03-26 03:48:56.971 2025-03-26 03:48:56.971 10000 FEE 442514 18557 \N \N 6111967 2025-03-26 03:48:56.971 2025-03-26 03:48:56.971 90000 TIP 442514 8729 \N \N 6111971 2025-03-26 03:50:10.884 2025-03-26 03:50:10.884 10000 FEE 443408 18017 \N \N 6111978 2025-03-26 03:51:16.016 2025-03-26 03:51:16.016 10000 FEE 443399 7992 \N \N 6111979 2025-03-26 03:51:16.016 2025-03-26 03:51:16.016 90000 TIP 443399 10493 \N \N 6111988 2025-03-26 03:54:22.576 2025-03-26 03:54:22.576 2100 FEE 443378 10352 \N \N 6111989 2025-03-26 03:54:22.576 2025-03-26 03:54:22.576 18900 TIP 443378 12422 \N \N 6111990 2025-03-26 03:54:47.585 2025-03-26 03:54:47.585 21000 FEE 443412 7682 \N \N 6111991 2025-03-26 03:55:08.267 2025-03-26 03:55:08.267 0 FEE 443411 2232 \N \N 6112004 2025-03-26 03:57:58.423 2025-03-26 03:57:58.423 1600 FEE 443412 16769 \N \N 6112005 2025-03-26 03:57:58.423 2025-03-26 03:57:58.423 14400 TIP 443412 8245 \N \N 6112008 2025-03-26 03:58:40.753 2025-03-26 03:58:40.753 1000 FEE 443417 1833 \N \N 6112010 2025-03-26 03:59:54.602 2025-03-26 03:59:54.602 1000 FEE 443418 18321 \N \N 6112019 2025-03-26 04:01:56.836 2025-03-26 04:01:56.836 1000 FEE 443419 9307 \N \N 6112051 2025-03-26 04:08:27.84 2025-03-26 04:08:27.84 1000 FEE 443414 19637 \N \N 6112052 2025-03-26 04:08:27.84 2025-03-26 04:08:27.84 9000 TIP 443414 16177 \N \N 6112061 2025-03-26 04:09:47.144 2025-03-26 04:09:47.144 1000 FEE 443430 21522 \N \N 6112068 2025-03-26 04:10:02.911 2025-03-26 04:10:02.911 700 FEE 442985 2774 \N \N 6112069 2025-03-26 04:10:02.911 2025-03-26 04:10:02.911 6300 TIP 442985 2111 \N \N 6112083 2025-03-26 04:11:27.677 2025-03-26 04:11:27.677 0 FEE 443432 658 \N \N 6112086 2025-03-26 04:11:42.289 2025-03-26 04:11:42.289 900 FEE 443274 4474 \N \N 6112087 2025-03-26 04:11:42.289 2025-03-26 04:11:42.289 8100 TIP 443274 21047 \N \N 6112099 2025-03-26 04:12:25.794 2025-03-26 04:12:25.794 9000 FEE 443197 1615 \N \N 6112100 2025-03-26 04:12:25.794 2025-03-26 04:12:25.794 81000 TIP 443197 21391 \N \N 6112136 2025-03-26 04:14:47.714 2025-03-26 04:14:47.714 15000 FEE 443438 1718 \N \N 6112143 2025-03-26 04:15:17.909 2025-03-26 04:15:17.909 900 FEE 443107 17693 \N \N 6112144 2025-03-26 04:15:17.909 2025-03-26 04:15:17.909 8100 TIP 443107 20619 \N \N 6112145 2025-03-26 04:15:18.156 2025-03-26 04:15:18.156 2100 FEE 443349 20602 \N \N 6111844 2025-03-26 03:30:44.363 2025-03-26 03:30:44.363 1000 FEE 443386 1825 \N \N 6111848 2025-03-26 03:31:27.59 2025-03-26 03:31:27.59 1000 FEE 443387 2402 \N \N 6111853 2025-03-26 03:32:43.255 2025-03-26 03:32:43.255 0 FEE 443385 12245 \N \N 6111854 2025-03-26 03:33:02.868 2025-03-26 03:33:02.868 5700 FEE 443386 15139 \N \N 6111855 2025-03-26 03:33:02.868 2025-03-26 03:33:02.868 51300 TIP 443386 18528 \N \N 6111886 2025-03-26 03:38:24.936 2025-03-26 03:38:24.936 1000 FEE 443398 21506 \N \N 6111891 2025-03-26 03:38:32.297 2025-03-26 03:38:32.297 1100 FEE 443387 859 \N \N 6111892 2025-03-26 03:38:32.297 2025-03-26 03:38:32.297 9900 TIP 443387 9705 \N \N 6111917 2025-03-26 03:41:40.554 2025-03-26 03:41:40.554 1000 FEE 443401 15474 \N \N 6111933 2025-03-26 03:46:19.822 2025-03-26 03:46:19.822 5700 FEE 443399 1720 \N \N 6111934 2025-03-26 03:46:19.822 2025-03-26 03:46:19.822 51300 TIP 443399 999 \N \N 6111943 2025-03-26 03:46:59.199 2025-03-26 03:46:59.199 500 FEE 443274 1718 \N \N 6111944 2025-03-26 03:46:59.199 2025-03-26 03:46:59.199 4500 TIP 443274 9184 \N \N 6111949 2025-03-26 03:46:59.893 2025-03-26 03:46:59.893 1000 FEE 443274 1092 \N \N 6111950 2025-03-26 03:46:59.893 2025-03-26 03:46:59.893 9000 TIP 443274 19199 \N \N 6111958 2025-03-26 03:48:24.363 2025-03-26 03:48:24.363 1000 FEE 443405 15488 \N \N 6111961 2025-03-26 03:48:41.672 2025-03-26 03:48:41.672 1000 FEE 443406 1638 \N \N 6111975 2025-03-26 03:50:56.688 2025-03-26 03:50:56.688 1000 FEE 443406 14169 \N \N 6111976 2025-03-26 03:50:56.688 2025-03-26 03:50:56.688 9000 TIP 443406 11776 \N \N 6111980 2025-03-26 03:51:55.15 2025-03-26 03:51:55.15 1000 FEE 443409 1705 \N \N 6112014 2025-03-26 04:00:20.15 2025-03-26 04:00:20.15 10000 FEE 443399 9833 \N \N 6112015 2025-03-26 04:00:20.15 2025-03-26 04:00:20.15 90000 TIP 443399 1092 \N \N 6112025 2025-03-26 04:03:33.414 2025-03-26 04:03:33.414 1000 FEE 443421 2233 \N \N 6112045 2025-03-26 04:07:35.033 2025-03-26 04:07:35.033 1000 FEE 443427 20433 \N \N 6112071 2025-03-26 04:10:18.321 2025-03-26 04:10:18.321 100000 FEE 443431 768 \N \N 6112090 2025-03-26 04:12:00.285 2025-03-26 04:12:00.285 2100 FEE 443432 20973 \N \N 6112091 2025-03-26 04:12:00.285 2025-03-26 04:12:00.285 18900 TIP 443432 21131 \N \N 6112109 2025-03-26 04:13:16.19 2025-03-26 04:13:16.19 1000 FEE 443436 630 \N \N 6112137 2025-03-26 04:14:58.39 2025-03-26 04:14:58.39 1000 FEE 443399 634 \N \N 6112138 2025-03-26 04:14:58.39 2025-03-26 04:14:58.39 9000 TIP 443399 14271 \N \N 6112147 2025-03-26 04:15:20.481 2025-03-26 04:15:20.481 9000 FEE 443107 21523 \N \N 6112148 2025-03-26 04:15:20.481 2025-03-26 04:15:20.481 81000 TIP 443107 13143 \N \N 6112169 2025-03-26 04:17:55.258 2025-03-26 04:17:55.258 1600 FEE 443438 17116 \N \N 6112170 2025-03-26 04:17:55.258 2025-03-26 04:17:55.258 14400 TIP 443438 20734 \N \N 6112171 2025-03-26 04:18:12.259 2025-03-26 04:18:12.259 6900 FEE 443265 10493 \N \N 6112172 2025-03-26 04:18:12.259 2025-03-26 04:18:12.259 62100 TIP 443265 3377 \N \N 6112178 2025-03-26 04:18:50.583 2025-03-26 04:18:50.583 1000 FEE 443444 20891 \N \N 6112183 2025-03-26 04:19:58.197 2025-03-26 04:19:58.197 10000 FEE 443246 20782 \N \N 6112184 2025-03-26 04:19:58.197 2025-03-26 04:19:58.197 90000 TIP 443246 18601 \N \N 6112193 2025-03-26 04:20:54.192 2025-03-26 04:20:54.192 1000 FEE 443449 8570 \N \N 6112198 2025-03-26 04:21:51.625 2025-03-26 04:21:51.625 2100 FEE 443372 768 \N \N 6112199 2025-03-26 04:21:51.625 2025-03-26 04:21:51.625 18900 TIP 443372 20973 \N \N 6112256 2025-03-26 04:28:48.797 2025-03-26 04:28:48.797 1000 FEE 442313 15239 \N \N 6112257 2025-03-26 04:28:48.797 2025-03-26 04:28:48.797 9000 TIP 442313 18101 \N \N 6112258 2025-03-26 04:28:49.264 2025-03-26 04:28:49.264 1000 FEE 442313 5728 \N \N 6112259 2025-03-26 04:28:49.264 2025-03-26 04:28:49.264 9000 TIP 442313 14959 \N \N 6112260 2025-03-26 04:28:54.906 2025-03-26 04:28:54.906 10000 FEE 443455 17710 \N \N 6112261 2025-03-26 04:28:54.906 2025-03-26 04:28:54.906 90000 TIP 443455 21202 \N \N 6112270 2025-03-26 04:30:56.988 2025-03-26 04:30:56.988 1000 FEE 443393 2952 \N \N 6112271 2025-03-26 04:30:56.988 2025-03-26 04:30:56.988 9000 TIP 443393 828 \N \N 6112279 2025-03-26 04:31:21.864 2025-03-26 04:31:21.864 1000 FEE 440692 687 \N \N 6112280 2025-03-26 04:31:21.864 2025-03-26 04:31:21.864 9000 TIP 440692 16212 \N \N 6112293 2025-03-26 04:32:39.526 2025-03-26 04:32:39.526 1000 FEE 443452 9351 \N \N 6112294 2025-03-26 04:32:39.526 2025-03-26 04:32:39.526 9000 TIP 443452 5661 \N \N 6112316 2025-03-26 04:36:35.798 2025-03-26 04:36:35.798 700 FEE 443388 951 \N \N 6112317 2025-03-26 04:36:35.798 2025-03-26 04:36:35.798 6300 TIP 443388 13903 \N \N 6112318 2025-03-26 04:36:37.967 2025-03-26 04:36:37.967 1000 FEE 443464 19531 \N \N 6112332 2025-03-26 04:38:38.226 2025-03-26 04:38:38.226 100 FEE 443364 13097 \N \N 6112333 2025-03-26 04:38:38.226 2025-03-26 04:38:38.226 900 TIP 443364 9992 \N \N 6112354 2025-03-26 04:40:45.185 2025-03-26 04:40:45.185 2100 FEE 443458 11829 \N \N 6112355 2025-03-26 04:40:45.185 2025-03-26 04:40:45.185 18900 TIP 443458 14705 \N \N 6112365 2025-03-26 04:42:06.781 2025-03-26 04:42:06.781 1000 FEE 443471 9833 \N \N 6112389 2025-03-26 04:45:29.478 2025-03-26 04:45:29.478 1000 FEE 442904 20310 \N \N 6112390 2025-03-26 04:45:29.478 2025-03-26 04:45:29.478 9000 TIP 442904 3377 \N \N 6112391 2025-03-26 04:45:29.635 2025-03-26 04:45:29.635 1000 FEE 442904 1632 \N \N 6112392 2025-03-26 04:45:29.635 2025-03-26 04:45:29.635 9000 TIP 442904 11144 \N \N 6112425 2025-03-26 04:45:32.751 2025-03-26 04:45:32.751 1000 FEE 442904 20969 \N \N 6112426 2025-03-26 04:45:32.751 2025-03-26 04:45:32.751 9000 TIP 442904 19992 \N \N 6112469 2025-03-26 04:45:42.477 2025-03-26 04:45:42.477 1000 FEE 442904 2156 \N \N 6112470 2025-03-26 04:45:42.477 2025-03-26 04:45:42.477 9000 TIP 442904 1044 \N \N 6112495 2025-03-26 04:45:45.121 2025-03-26 04:45:45.121 1000 FEE 442904 730 \N \N 6112496 2025-03-26 04:45:45.121 2025-03-26 04:45:45.121 9000 TIP 442904 21556 \N \N 6112499 2025-03-26 04:45:46.404 2025-03-26 04:45:46.404 1000 FEE 442904 897 \N \N 6112500 2025-03-26 04:45:46.404 2025-03-26 04:45:46.404 9000 TIP 442904 5825 \N \N 6112507 2025-03-26 04:45:46.689 2025-03-26 04:45:46.689 1000 FEE 442904 633 \N \N 6112508 2025-03-26 04:45:46.689 2025-03-26 04:45:46.689 9000 TIP 442904 18637 \N \N 6112521 2025-03-26 04:45:48.112 2025-03-26 04:45:48.112 1000 FEE 442904 2322 \N \N 6040850 2025-03-19 23:17:25.715 2025-03-19 23:17:25.715 0 FEE 435940 647 \N \N 6040865 2025-03-19 23:20:19.678 2025-03-19 23:20:19.678 1000 FEE 435941 3683 \N \N 6040879 2025-03-19 23:29:46.94 2025-03-19 23:29:46.94 21000 FEE 435944 21498 \N \N 6040880 2025-03-19 23:29:46.94 2025-03-19 23:29:46.94 35000000 BOOST 435944 9330 \N \N 6040893 2025-03-19 23:32:37.432 2025-03-19 23:32:37.432 0 FEE 435947 15488 \N \N 6040894 2025-03-19 23:32:42.671 2025-03-19 23:32:42.671 2100 FEE 435919 20245 \N \N 6040895 2025-03-19 23:32:42.671 2025-03-19 23:32:42.671 18900 TIP 435919 11609 \N \N 6040924 2025-03-19 23:44:04.269 2025-03-19 23:44:04.269 2100 FEE 435935 7978 \N \N 6040925 2025-03-19 23:44:04.269 2025-03-19 23:44:04.269 18900 TIP 435935 18269 \N \N 6040930 2025-03-19 23:45:21.939 2025-03-19 23:45:21.939 1000 FEE 435952 7903 \N \N 6040933 2025-03-19 23:46:29.897 2025-03-19 23:46:29.897 1600 FEE 435900 20412 \N \N 6040934 2025-03-19 23:46:29.897 2025-03-19 23:46:29.897 14400 TIP 435900 14941 \N \N 6040957 2025-03-19 23:56:35.826 2025-03-19 23:56:35.826 1000 FEE 435956 12744 \N \N 6040994 2025-03-20 00:12:11.247 2025-03-20 00:12:11.247 1100 FEE 430248 13361 \N \N 6040995 2025-03-20 00:12:11.247 2025-03-20 00:12:11.247 9900 TIP 430248 16667 \N \N 6041016 2025-03-20 00:15:05.351 2025-03-20 00:15:05.351 1000 FEE 435580 20409 \N \N 6041017 2025-03-20 00:15:05.351 2025-03-20 00:15:05.351 9000 TIP 435580 4654 \N \N 6041026 2025-03-20 00:15:08.699 2025-03-20 00:15:08.699 1000 FEE 435849 20970 \N \N 6041027 2025-03-20 00:15:08.699 2025-03-20 00:15:08.699 9000 TIP 435849 11328 \N \N 6041064 2025-03-20 00:19:13.836 2025-03-20 00:19:13.836 100 FEE 435718 20817 \N \N 6041065 2025-03-20 00:19:13.836 2025-03-20 00:19:13.836 900 TIP 435718 2010 \N \N 6041073 2025-03-20 00:20:17.311 2025-03-20 00:20:17.311 1000 FEE 435550 692 \N \N 6041074 2025-03-20 00:20:17.311 2025-03-20 00:20:17.311 9000 TIP 435550 14657 \N \N 6041079 2025-03-20 00:20:19.161 2025-03-20 00:20:19.161 1000 FEE 435401 13378 \N \N 6041080 2025-03-20 00:20:19.161 2025-03-20 00:20:19.161 9000 TIP 435401 11897 \N \N 6041087 2025-03-20 00:20:22.948 2025-03-20 00:20:22.948 1000 FEE 435410 15762 \N \N 6041088 2025-03-20 00:20:22.948 2025-03-20 00:20:22.948 9000 TIP 435410 21287 \N \N 6041097 2025-03-20 00:20:27.523 2025-03-20 00:20:27.523 1000 FEE 435867 13599 \N \N 6041098 2025-03-20 00:20:27.523 2025-03-20 00:20:27.523 9000 TIP 435867 21091 \N \N 6041099 2025-03-20 00:20:28.333 2025-03-20 00:20:28.333 1000 FEE 435866 14705 \N \N 6041100 2025-03-20 00:20:28.333 2025-03-20 00:20:28.333 9000 TIP 435866 993 \N \N 6041133 2025-03-20 00:20:55.341 2025-03-20 00:20:55.341 1000 FEE 435453 12490 \N \N 6041134 2025-03-20 00:20:55.341 2025-03-20 00:20:55.341 9000 TIP 435453 16126 \N \N 6041150 2025-03-20 00:21:19.827 2025-03-20 00:21:19.827 1000 FEE 434978 17838 \N \N 6041151 2025-03-20 00:21:19.827 2025-03-20 00:21:19.827 9000 TIP 434978 6421 \N \N 6041156 2025-03-20 00:21:35.464 2025-03-20 00:21:35.464 1000 FEE 435523 7760 \N \N 6041157 2025-03-20 00:21:35.464 2025-03-20 00:21:35.464 9000 TIP 435523 20133 \N \N 6041172 2025-03-20 00:21:40.953 2025-03-20 00:21:40.953 1000 FEE 435511 675 \N \N 6041173 2025-03-20 00:21:40.953 2025-03-20 00:21:40.953 9000 TIP 435511 21444 \N \N 6041199 2025-03-20 00:26:35.149 2025-03-20 00:26:35.149 1000 FEE 435966 994 \N \N 6041207 2025-03-20 00:27:49.518 2025-03-20 00:27:49.518 1100 FEE 435963 6030 \N \N 6041208 2025-03-20 00:27:49.518 2025-03-20 00:27:49.518 9900 TIP 435963 21825 \N \N 6041210 2025-03-20 00:28:39.253 2025-03-20 00:28:39.253 2000 FEE 435873 19930 \N \N 6041211 2025-03-20 00:28:39.253 2025-03-20 00:28:39.253 18000 TIP 435873 7960 \N \N 6041249 2025-03-20 00:45:32.212 2025-03-20 00:45:32.212 1000 FEE 435974 16289 \N \N 6041250 2025-03-20 00:45:58.614 2025-03-20 00:45:58.614 1000 FEE 435975 21418 \N \N 6041264 2025-03-20 00:50:49.595 2025-03-20 00:50:49.595 1000 POLL 435805 9329 \N \N 6041272 2025-03-20 00:52:49.288 2025-03-20 00:52:49.288 0 FEE 435979 17321 \N \N 6041275 2025-03-20 00:53:18.501 2025-03-20 00:53:18.501 0 FEE 435979 15588 \N \N 6041276 2025-03-20 00:53:34.067 2025-03-20 00:53:34.067 0 FEE 435980 20663 \N \N 6041305 2025-03-20 01:03:01.871 2025-03-20 01:03:01.871 5000 FEE 435986 16354 \N \N 6041310 2025-03-20 01:04:55.999 2025-03-20 01:04:55.999 10000 FEE 435847 16667 \N \N 6041311 2025-03-20 01:04:55.999 2025-03-20 01:04:55.999 90000 TIP 435847 4115 \N \N 6041318 2025-03-20 01:05:05.345 2025-03-20 01:05:05.345 1000 FEE 435989 12490 \N \N 6041322 2025-03-20 01:05:36.145 2025-03-20 01:05:36.145 1000 FEE 435990 5500 \N \N 6041325 2025-03-20 01:06:35.016 2025-03-20 01:06:35.016 1000 FEE 435992 2734 \N \N 6041335 2025-03-20 01:10:04.574 2025-03-20 01:10:04.574 6400 FEE 435992 10698 \N \N 6041336 2025-03-20 01:10:04.574 2025-03-20 01:10:04.574 57600 TIP 435992 9982 \N \N 6041342 2025-03-20 01:12:00.616 2025-03-20 01:12:00.616 1000 FEE 435997 14258 \N \N 6041343 2025-03-20 01:12:12.128 2025-03-20 01:12:12.128 1100 FEE 435944 11288 \N \N 6041344 2025-03-20 01:12:12.128 2025-03-20 01:12:12.128 9900 TIP 435944 21540 \N \N 6041368 2025-03-20 01:23:50.709 2025-03-20 01:23:50.709 10000 FEE 436005 680 \N \N 6041369 2025-03-20 01:23:58.394 2025-03-20 01:23:58.394 100000 FEE 436006 11648 \N \N 6041381 2025-03-20 01:31:49.973 2025-03-20 01:31:49.973 800 FEE 436001 21207 \N \N 6041382 2025-03-20 01:31:49.973 2025-03-20 01:31:49.973 7200 TIP 436001 891 \N \N 6041390 2025-03-20 01:32:26.817 2025-03-20 01:32:26.817 10000 FEE 436009 750 \N \N 6041429 2025-03-20 01:37:48.439 2025-03-20 01:37:48.439 200 FEE 435970 4754 \N \N 6041430 2025-03-20 01:37:48.439 2025-03-20 01:37:48.439 1800 TIP 435970 2010 \N \N 6041438 2025-03-20 01:39:02.053 2025-03-20 01:39:02.053 1000 FEE 436013 14465 \N \N 6041449 2025-03-20 01:42:13.274 2025-03-20 01:42:13.274 200 FEE 435812 1814 \N \N 6041450 2025-03-20 01:42:13.274 2025-03-20 01:42:13.274 1800 TIP 435812 21303 \N \N 6041467 2025-03-20 01:45:46.451 2025-03-20 01:45:46.451 0 FEE 436016 718 \N \N 6041501 2025-03-20 01:49:07.346 2025-03-20 01:49:07.346 1000 FEE 436020 18005 \N \N 6041535 2025-03-20 01:58:34.411 2025-03-20 01:58:34.411 1000 FEE 436014 1039 \N \N 6041536 2025-03-20 01:58:34.411 2025-03-20 01:58:34.411 9000 TIP 436014 19806 \N \N 6041539 2025-03-20 01:59:27.092 2025-03-20 01:59:27.092 100000 FEE 436025 5527 \N \N 6041540 2025-03-20 01:59:33.792 2025-03-20 01:59:33.792 0 FEE 436021 13055 \N \N 6041564 2025-03-20 02:06:00.984 2025-03-20 02:06:00.984 1000 FEE 436030 21184 \N \N 6041570 2025-03-20 02:06:15.026 2025-03-20 02:06:15.026 4000 FEE 435846 675 \N \N 6041571 2025-03-20 02:06:15.026 2025-03-20 02:06:15.026 36000 TIP 435846 19193 \N \N 6041575 2025-03-20 02:07:08.527 2025-03-20 02:07:08.527 4000 FEE 435847 13399 \N \N 6041576 2025-03-20 02:07:08.527 2025-03-20 02:07:08.527 36000 TIP 435847 17991 \N \N 6041589 2025-03-20 02:08:10.488 2025-03-20 02:08:10.488 0 FEE 436031 5499 \N \N 6041593 2025-03-20 02:08:13.419 2025-03-20 02:08:13.419 2100 FEE 435327 1585 \N \N 6041594 2025-03-20 02:08:13.419 2025-03-20 02:08:13.419 18900 TIP 435327 2749 \N \N 6041637 2025-03-20 02:21:17.726 2025-03-20 02:21:17.726 1100 FEE 435986 1354 \N \N 6041638 2025-03-20 02:21:17.726 2025-03-20 02:21:17.726 9900 TIP 435986 2056 \N \N 6041645 2025-03-20 02:22:10.414 2025-03-20 02:22:10.414 2100 FEE 436032 20980 \N \N 6041646 2025-03-20 02:22:10.414 2025-03-20 02:22:10.414 18900 TIP 436032 18219 \N \N 6041652 2025-03-20 02:22:37.976 2025-03-20 02:22:37.976 2100 FEE 436019 21374 \N \N 6041653 2025-03-20 02:22:37.976 2025-03-20 02:22:37.976 18900 TIP 436019 3504 \N \N 6041654 2025-03-20 02:22:41.113 2025-03-20 02:22:41.113 800 FEE 435924 1175 \N \N 6041655 2025-03-20 02:22:41.113 2025-03-20 02:22:41.113 7200 TIP 435924 1705 \N \N 6041666 2025-03-20 02:23:15.889 2025-03-20 02:23:15.889 1600 FEE 435908 21140 \N \N 6041667 2025-03-20 02:23:15.889 2025-03-20 02:23:15.889 14400 TIP 435908 20776 \N \N 6041682 2025-03-20 02:24:34.553 2025-03-20 02:24:34.553 4000 FEE 436037 8505 \N \N 6041683 2025-03-20 02:24:34.553 2025-03-20 02:24:34.553 36000 TIP 436037 10102 \N \N 6041697 2025-03-20 02:26:57.97 2025-03-20 02:26:57.97 1000 FEE 436041 15488 \N \N 6041709 2025-03-20 02:29:42.321 2025-03-20 02:29:42.321 10000 FEE 436048 12721 \N \N 6041727 2025-03-20 02:37:13.195 2025-03-20 02:37:13.195 1000 FEE 436052 3706 \N \N 6041734 2025-03-20 02:38:22.866 2025-03-20 02:38:22.866 0 FEE 436052 1801 \N \N 6041736 2025-03-20 02:38:47.411 2025-03-20 02:38:47.411 1000 FEE 436054 12921 \N \N 6041747 2025-03-20 02:40:28.473 2025-03-20 02:40:28.473 0 FEE 436052 21400 \N \N 6040851 2025-03-19 23:18:12.49 2025-03-19 23:18:12.49 10000 FEE 435497 20058 \N \N 6040852 2025-03-19 23:18:12.49 2025-03-19 23:18:12.49 90000 TIP 435497 7682 \N \N 6040907 2025-03-19 23:35:28.922 2025-03-19 23:35:28.922 1000 FEE 435949 713 \N \N 6040927 2025-03-19 23:44:35.574 2025-03-19 23:44:35.574 2100 FEE 435697 5759 \N \N 6040928 2025-03-19 23:44:35.574 2025-03-19 23:44:35.574 18900 TIP 435697 1823 \N \N 6040942 2025-03-19 23:51:56.561 2025-03-19 23:51:56.561 3200 FEE 435771 13042 \N \N 6040943 2025-03-19 23:51:56.561 2025-03-19 23:51:56.561 28800 TIP 435771 6191 \N \N 6040980 2025-03-20 00:05:33.993 2025-03-20 00:05:33.993 1000 FEE 435960 638 \N \N 6041006 2025-03-20 00:14:52.434 2025-03-20 00:14:52.434 1000 FEE 435944 11144 \N \N 6041007 2025-03-20 00:14:52.434 2025-03-20 00:14:52.434 9000 TIP 435944 12139 \N \N 6041008 2025-03-20 00:14:52.6 2025-03-20 00:14:52.6 1000 FEE 435944 12821 \N \N 6041009 2025-03-20 00:14:52.6 2025-03-20 00:14:52.6 9000 TIP 435944 7916 \N \N 6041010 2025-03-20 00:14:52.767 2025-03-20 00:14:52.767 1000 FEE 435944 6578 \N \N 6041011 2025-03-20 00:14:52.767 2025-03-20 00:14:52.767 9000 TIP 435944 12721 \N \N 6041022 2025-03-20 00:15:06.932 2025-03-20 00:15:06.932 1000 FEE 435848 18368 \N \N 6041023 2025-03-20 00:15:06.932 2025-03-20 00:15:06.932 9000 TIP 435848 5597 \N \N 6041032 2025-03-20 00:15:10.625 2025-03-20 00:15:10.625 1000 FEE 435850 20058 \N \N 6041033 2025-03-20 00:15:10.625 2025-03-20 00:15:10.625 9000 TIP 435850 9334 \N \N 6041036 2025-03-20 00:15:12.782 2025-03-20 00:15:12.782 1000 FEE 435629 21833 \N \N 6041037 2025-03-20 00:15:12.782 2025-03-20 00:15:12.782 9000 TIP 435629 15526 \N \N 6041041 2025-03-20 00:15:14.21 2025-03-20 00:15:14.21 1000 FEE 435963 14152 \N \N 6041042 2025-03-20 00:15:27.403 2025-03-20 00:15:27.403 2100 FEE 435890 2224 \N \N 6041043 2025-03-20 00:15:27.403 2025-03-20 00:15:27.403 18900 TIP 435890 15160 \N \N 6041095 2025-03-20 00:20:27.047 2025-03-20 00:20:27.047 1000 FEE 435557 11395 \N \N 6041096 2025-03-20 00:20:27.047 2025-03-20 00:20:27.047 9000 TIP 435557 18630 \N \N 6041200 2025-03-20 00:26:44.784 2025-03-20 00:26:44.784 1000 FEE 435967 6537 \N \N 6041204 2025-03-20 00:27:10.93 2025-03-20 00:27:10.93 2100 FEE 435956 21291 \N \N 6041205 2025-03-20 00:27:10.93 2025-03-20 00:27:10.93 18900 TIP 435956 6148 \N \N 6041233 2025-03-20 00:39:33.002 2025-03-20 00:39:33.002 10000 FEE 435967 14080 \N \N 6041234 2025-03-20 00:39:33.002 2025-03-20 00:39:33.002 90000 TIP 435967 861 \N \N 6041280 2025-03-20 00:54:39.472 2025-03-20 00:54:39.472 1000 FEE 435967 18734 \N \N 6041281 2025-03-20 00:54:39.472 2025-03-20 00:54:39.472 9000 TIP 435967 12749 \N \N 6041307 2025-03-20 01:03:52.821 2025-03-20 01:03:52.821 100000 FEE 435987 5694 \N \N 6041379 2025-03-20 01:31:30.581 2025-03-20 01:31:30.581 0 FEE 428953 960 \N \N 6041387 2025-03-20 01:31:50.514 2025-03-20 01:31:50.514 800 FEE 436001 8037 \N \N 6041388 2025-03-20 01:31:50.514 2025-03-20 01:31:50.514 7200 TIP 436001 21405 \N \N 6041409 2025-03-20 01:34:34.706 2025-03-20 01:34:34.706 100 FEE 435907 7668 \N \N 6041410 2025-03-20 01:34:34.706 2025-03-20 01:34:34.706 900 TIP 435907 18368 \N \N 6041411 2025-03-20 01:34:35.129 2025-03-20 01:34:35.129 100 FEE 435907 8544 \N \N 6041412 2025-03-20 01:34:35.129 2025-03-20 01:34:35.129 900 TIP 435907 2013 \N \N 6041427 2025-03-20 01:37:47.21 2025-03-20 01:37:47.21 200 FEE 435981 1584 \N \N 6041428 2025-03-20 01:37:47.21 2025-03-20 01:37:47.21 1800 TIP 435981 2013 \N \N 6041451 2025-03-20 01:42:28.528 2025-03-20 01:42:28.528 10000 FEE 436016 2502 \N \N 6041461 2025-03-20 01:45:00.412 2025-03-20 01:45:00.412 100 FEE 436010 16970 \N \N 6041462 2025-03-20 01:45:00.412 2025-03-20 01:45:00.412 900 TIP 436010 21131 \N \N 6041478 2025-03-20 01:46:30.001 2025-03-20 01:46:30.001 2100 FEE 397192 946 \N \N 6041479 2025-03-20 01:46:30.001 2025-03-20 01:46:30.001 18900 TIP 397192 654 \N \N 6041487 2025-03-20 01:48:42.012 2025-03-20 01:48:42.012 2100 FEE 418294 16842 \N \N 6041488 2025-03-20 01:48:42.012 2025-03-20 01:48:42.012 18900 TIP 418294 717 \N \N 6041489 2025-03-20 01:48:43.615 2025-03-20 01:48:43.615 2100 FEE 418294 20837 \N \N 6041490 2025-03-20 01:48:43.615 2025-03-20 01:48:43.615 18900 TIP 418294 1465 \N \N 6041491 2025-03-20 01:48:43.751 2025-03-20 01:48:43.751 2100 FEE 418294 19094 \N \N 6041492 2025-03-20 01:48:43.751 2025-03-20 01:48:43.751 18900 TIP 418294 4989 \N \N 6041497 2025-03-20 01:48:47.848 2025-03-20 01:48:47.848 2100 FEE 418294 736 \N \N 6041498 2025-03-20 01:48:47.848 2025-03-20 01:48:47.848 18900 TIP 418294 20636 \N \N 6041508 2025-03-20 01:49:35.843 2025-03-20 01:49:35.843 0 FEE 436016 13547 \N \N 6041524 2025-03-20 01:54:31.679 2025-03-20 01:54:31.679 0 FEE 436021 6578 \N \N 6041527 2025-03-20 01:55:14.317 2025-03-20 01:55:14.317 0 FEE 436022 4083 \N \N 6041534 2025-03-20 01:58:31.802 2025-03-20 01:58:31.802 1000 FEE 436024 20881 \N \N 6041549 2025-03-20 02:03:31.837 2025-03-20 02:03:31.837 1000 POLL 435805 4292 \N \N 6041595 2025-03-20 02:08:24.152 2025-03-20 02:08:24.152 3200 FEE 436029 2718 \N \N 6041596 2025-03-20 02:08:24.152 2025-03-20 02:08:24.152 28800 TIP 436029 21262 \N \N 6041603 2025-03-20 02:09:49.211 2025-03-20 02:09:49.211 1000 FEE 436034 17944 \N \N 6041687 2025-03-20 02:24:55.92 2025-03-20 02:24:55.92 10000 FEE 435764 16717 \N \N 6041688 2025-03-20 02:24:55.92 2025-03-20 02:24:55.92 90000 TIP 435764 913 \N \N 6041704 2025-03-20 02:28:21.47 2025-03-20 02:28:21.47 1000 FEE 436044 21019 \N \N 6041705 2025-03-20 02:28:55.65 2025-03-20 02:28:55.65 1000 FEE 436045 11750 \N \N 6041725 2025-03-20 02:36:57.843 2025-03-20 02:36:57.843 10000 FEE 436051 14122 \N \N 6041743 2025-03-20 02:39:33.774 2025-03-20 02:39:33.774 0 FEE 436052 21406 \N \N 6041769 2025-03-20 02:45:47.364 2025-03-20 02:45:47.364 1000 FEE 436061 721 \N \N 6041772 2025-03-20 02:46:32.271 2025-03-20 02:46:32.271 1000 FEE 436063 10013 \N \N 6041795 2025-03-20 02:49:20.519 2025-03-20 02:49:20.519 100 FEE 436030 9336 \N \N 6041796 2025-03-20 02:49:20.519 2025-03-20 02:49:20.519 900 TIP 436030 5171 \N \N 6041803 2025-03-20 02:50:02.95 2025-03-20 02:50:02.95 1600 FEE 435805 1221 \N \N 6041804 2025-03-20 02:50:02.95 2025-03-20 02:50:02.95 14400 TIP 435805 1705 \N \N 6041807 2025-03-20 02:50:21.493 2025-03-20 02:50:21.493 100 FEE 436030 14168 \N \N 6041808 2025-03-20 02:50:21.493 2025-03-20 02:50:21.493 900 TIP 436030 21600 \N \N 6041813 2025-03-20 02:50:22.501 2025-03-20 02:50:22.501 100 FEE 436030 11491 \N \N 6041814 2025-03-20 02:50:22.501 2025-03-20 02:50:22.501 900 TIP 436030 5578 \N \N 6041815 2025-03-20 02:50:22.838 2025-03-20 02:50:22.838 100 FEE 436030 16229 \N \N 6041816 2025-03-20 02:50:22.838 2025-03-20 02:50:22.838 900 TIP 436030 21810 \N \N 6041825 2025-03-20 02:51:22.465 2025-03-20 02:51:22.465 1000 FEE 435345 20788 \N \N 6041826 2025-03-20 02:51:22.465 2025-03-20 02:51:22.465 9000 TIP 435345 16289 \N \N 6041830 2025-03-20 02:51:45.087 2025-03-20 02:51:45.087 1000 FEE 436062 1092 \N \N 6041831 2025-03-20 02:51:45.087 2025-03-20 02:51:45.087 9000 TIP 436062 985 \N \N 6041861 2025-03-20 02:53:17.508 2025-03-20 02:53:17.508 800 FEE 435910 5828 \N \N 6041862 2025-03-20 02:53:17.508 2025-03-20 02:53:17.508 7200 TIP 435910 21248 \N \N 6041878 2025-03-20 02:55:07.833 2025-03-20 02:55:07.833 500 FEE 434279 16754 \N \N 6041879 2025-03-20 02:55:07.833 2025-03-20 02:55:07.833 4500 TIP 434279 640 \N \N 6041896 2025-03-20 02:56:02.742 2025-03-20 02:56:02.742 200 FEE 436009 760 \N \N 6041897 2025-03-20 02:56:02.742 2025-03-20 02:56:02.742 1800 TIP 436009 16653 \N \N 6041909 2025-03-20 02:56:41.045 2025-03-20 02:56:41.045 1000 FEE 436073 2514 \N \N 6041916 2025-03-20 02:57:38.675 2025-03-20 02:57:38.675 2100 FEE 435981 11885 \N \N 6040854 2025-03-19 23:18:44.81 2025-03-19 23:18:44.81 200 FEE 435924 10586 \N \N 6040855 2025-03-19 23:18:44.81 2025-03-19 23:18:44.81 1800 TIP 435924 16948 \N \N 6040885 2025-03-19 23:31:03.604 2025-03-19 23:31:03.604 4200 FEE 432547 19117 \N \N 6040886 2025-03-19 23:31:03.604 2025-03-19 23:31:03.604 37800 TIP 432547 1650 \N \N 6040891 2025-03-19 23:32:21.169 2025-03-19 23:32:21.169 1000000 FEE 435944 1438 \N \N 6040892 2025-03-19 23:32:21.169 2025-03-19 23:32:21.169 9000000 TIP 435944 2952 \N \N 6040913 2025-03-19 23:41:13.918 2025-03-19 23:41:13.918 1000 FEE 435950 6526 \N \N 6040931 2025-03-19 23:45:31.657 2025-03-19 23:45:31.657 1000 FEE 435953 18177 \N \N 6040954 2025-03-19 23:56:07.828 2025-03-19 23:56:07.828 1000 FEE 435580 11621 \N \N 6040955 2025-03-19 23:56:07.828 2025-03-19 23:56:07.828 9000 TIP 435580 8841 \N \N 6040977 2025-03-20 00:03:18.121 2025-03-20 00:03:18.121 1000 FEE 435959 9026 \N \N 6040982 2025-03-20 00:05:59.375 2025-03-20 00:05:59.375 1600 FEE 435847 14663 \N \N 6040983 2025-03-20 00:05:59.375 2025-03-20 00:05:59.375 14400 TIP 435847 10549 \N \N 6041049 2025-03-20 00:17:07.477 2025-03-20 00:17:07.477 200 FEE 435460 21164 \N \N 6041050 2025-03-20 00:17:07.477 2025-03-20 00:17:07.477 1800 TIP 435460 20778 \N \N 6041061 2025-03-20 00:19:09.291 2025-03-20 00:19:09.291 100 FEE 435580 12072 \N \N 6041062 2025-03-20 00:19:09.291 2025-03-20 00:19:09.291 900 TIP 435580 684 \N \N 6041075 2025-03-20 00:20:17.881 2025-03-20 00:20:17.881 1000 FEE 435408 5487 \N \N 6041076 2025-03-20 00:20:17.881 2025-03-20 00:20:17.881 9000 TIP 435408 760 \N \N 6041081 2025-03-20 00:20:20.55 2025-03-20 00:20:20.55 1000 FEE 435409 19842 \N \N 6041082 2025-03-20 00:20:20.55 2025-03-20 00:20:20.55 9000 TIP 435409 11996 \N \N 6041085 2025-03-20 00:20:21.813 2025-03-20 00:20:21.813 1000 FEE 435396 19524 \N \N 6041086 2025-03-20 00:20:21.813 2025-03-20 00:20:21.813 9000 TIP 435396 2749 \N \N 6041101 2025-03-20 00:20:28.63 2025-03-20 00:20:28.63 1000 FEE 435272 666 \N \N 6041102 2025-03-20 00:20:28.63 2025-03-20 00:20:28.63 9000 TIP 435272 4292 \N \N 6041107 2025-03-20 00:20:32.796 2025-03-20 00:20:32.796 1000 FEE 435446 11073 \N \N 6041108 2025-03-20 00:20:32.796 2025-03-20 00:20:32.796 9000 TIP 435446 17041 \N \N 6041135 2025-03-20 00:20:56.17 2025-03-20 00:20:56.17 1000 FEE 435241 3990 \N \N 6041136 2025-03-20 00:20:56.17 2025-03-20 00:20:56.17 9000 TIP 435241 16276 \N \N 6041146 2025-03-20 00:21:15.34 2025-03-20 00:21:15.34 1000 FEE 435808 6137 \N \N 6041147 2025-03-20 00:21:15.34 2025-03-20 00:21:15.34 9000 TIP 435808 21810 \N \N 6041221 2025-03-20 00:35:20.893 2025-03-20 00:35:20.893 10000 FEE 435970 20841 \N \N 6041230 2025-03-20 00:39:27.323 2025-03-20 00:39:27.323 1000 FEE 435971 9177 \N \N 6041235 2025-03-20 00:39:34.853 2025-03-20 00:39:34.853 10000 FEE 435951 9517 \N \N 6041236 2025-03-20 00:39:34.853 2025-03-20 00:39:34.853 90000 TIP 435951 16284 \N \N 6041277 2025-03-20 00:53:53.737 2025-03-20 00:53:53.737 1000 FEE 435944 1740 \N \N 6041278 2025-03-20 00:53:53.737 2025-03-20 00:53:53.737 9000 TIP 435944 20306 \N \N 6041312 2025-03-20 01:04:56.216 2025-03-20 01:04:56.216 10000 FEE 435847 617 \N \N 6041313 2025-03-20 01:04:56.216 2025-03-20 01:04:56.216 90000 TIP 435847 1617 \N \N 6041324 2025-03-20 01:06:13.176 2025-03-20 01:06:13.176 10000 FEE 435991 1549 \N \N 6041332 2025-03-20 01:09:07.472 2025-03-20 01:09:07.472 1000 FEE 435994 12656 \N \N 6041340 2025-03-20 01:11:42.998 2025-03-20 01:11:42.998 1100 FEE 435971 1603 \N \N 6041341 2025-03-20 01:11:42.998 2025-03-20 01:11:42.998 9900 TIP 435971 2674 \N \N 6041383 2025-03-20 01:31:50.142 2025-03-20 01:31:50.142 800 FEE 436001 1712 \N \N 6041384 2025-03-20 01:31:50.142 2025-03-20 01:31:50.142 7200 TIP 436001 9820 \N \N 6041399 2025-03-20 01:34:30.739 2025-03-20 01:34:30.739 100 FEE 435908 12291 \N \N 6041400 2025-03-20 01:34:30.739 2025-03-20 01:34:30.739 900 TIP 435908 21026 \N \N 6041421 2025-03-20 01:37:30.683 2025-03-20 01:37:30.683 10000 FEE 435997 2577 \N \N 6041422 2025-03-20 01:37:30.683 2025-03-20 01:37:30.683 90000 TIP 435997 5171 \N \N 6041431 2025-03-20 01:38:08.564 2025-03-20 01:38:08.564 1000 FEE 436011 20646 \N \N 6041453 2025-03-20 01:43:49.411 2025-03-20 01:43:49.411 2500 FEE 435769 17201 \N \N 6041454 2025-03-20 01:43:49.411 2025-03-20 01:43:49.411 22500 TIP 435769 1478 \N \N 6041473 2025-03-20 01:46:24.564 2025-03-20 01:46:24.564 2100 FEE 397192 12049 \N \N 6041474 2025-03-20 01:46:24.564 2025-03-20 01:46:24.564 18900 TIP 397192 9 \N \N 6041477 2025-03-20 01:46:25.769 2025-03-20 01:46:25.769 1000 FEE 436018 8508 \N \N 6041528 2025-03-20 01:55:40.353 2025-03-20 01:55:40.353 10000 FEE 436023 17147 \N \N 6041531 2025-03-20 01:57:47.303 2025-03-20 01:57:47.303 0 FEE 436021 20788 \N \N 6041546 2025-03-20 02:02:13.402 2025-03-20 02:02:13.402 0 FEE 436021 17817 \N \N 6041556 2025-03-20 02:05:12.391 2025-03-20 02:05:12.391 4000 FEE 435927 11153 \N \N 6041557 2025-03-20 02:05:12.391 2025-03-20 02:05:12.391 36000 TIP 435927 20434 \N \N 6041583 2025-03-20 02:08:05.624 2025-03-20 02:08:05.624 2100 FEE 435944 19488 \N \N 6041584 2025-03-20 02:08:05.624 2025-03-20 02:08:05.624 18900 TIP 435944 1631 \N \N 6041607 2025-03-20 02:12:02.641 2025-03-20 02:12:02.641 0 FEE 436031 4624 \N \N 6041616 2025-03-20 02:17:23.042 2025-03-20 02:17:23.042 2500 FEE 435596 18174 \N \N 6041617 2025-03-20 02:17:23.042 2025-03-20 02:17:23.042 22500 TIP 435596 5590 \N \N 6041618 2025-03-20 02:17:59.614 2025-03-20 02:17:59.614 10000 FEE 436032 676 \N \N 6041619 2025-03-20 02:17:59.614 2025-03-20 02:17:59.614 90000 TIP 436032 21520 \N \N 6041641 2025-03-20 02:21:29.236 2025-03-20 02:21:29.236 1000 FEE 436031 21506 \N \N 6041642 2025-03-20 02:21:29.236 2025-03-20 02:21:29.236 9000 TIP 436031 11423 \N \N 6041672 2025-03-20 02:23:57.924 2025-03-20 02:23:57.924 2500 FEE 435036 21242 \N \N 6041673 2025-03-20 02:23:57.924 2025-03-20 02:23:57.924 22500 TIP 435036 20026 \N \N 6041675 2025-03-20 02:24:12.406 2025-03-20 02:24:12.406 1000 FEE 435963 1424 \N \N 6041676 2025-03-20 02:24:12.406 2025-03-20 02:24:12.406 9000 TIP 435963 12959 \N \N 6041691 2025-03-20 02:25:31 2025-03-20 02:25:31 1000 FEE 436040 19829 \N \N 6041701 2025-03-20 02:28:00.207 2025-03-20 02:28:00.207 2100 FEE 436024 21824 \N \N 6041702 2025-03-20 02:28:00.207 2025-03-20 02:28:00.207 18900 TIP 436024 17494 \N \N 6041711 2025-03-20 02:30:18.431 2025-03-20 02:30:18.431 4000 FEE 436047 21541 \N \N 6041712 2025-03-20 02:30:18.431 2025-03-20 02:30:18.431 36000 TIP 436047 671 \N \N 6041713 2025-03-20 02:30:20.173 2025-03-20 02:30:20.173 21000 FEE 436049 20904 \N \N 6041715 2025-03-20 02:31:39.896 2025-03-20 02:31:39.896 1100 FEE 436049 1611 \N \N 6041716 2025-03-20 02:31:39.896 2025-03-20 02:31:39.896 9900 TIP 436049 19071 \N \N 6041730 2025-03-20 02:37:35.541 2025-03-20 02:37:35.541 0 FEE 436052 13987 \N \N 6041731 2025-03-20 02:37:58.937 2025-03-20 02:37:58.937 0 FEE 436052 9982 \N \N 6041748 2025-03-20 02:40:59.799 2025-03-20 02:40:59.799 1000 FEE 436056 21249 \N \N 6041749 2025-03-20 02:41:10.529 2025-03-20 02:41:10.529 3000 FEE 435907 4115 \N \N 6041750 2025-03-20 02:41:10.529 2025-03-20 02:41:10.529 27000 TIP 435907 2543 \N \N 6041751 2025-03-20 02:41:12.563 2025-03-20 02:41:12.563 3000 FEE 435883 726 \N \N 6041752 2025-03-20 02:41:12.563 2025-03-20 02:41:12.563 27000 TIP 435883 15521 \N \N 6041761 2025-03-20 02:43:16.319 2025-03-20 02:43:16.319 1000 FEE 436060 12562 \N \N 6041764 2025-03-20 02:43:40.462 2025-03-20 02:43:40.462 4200 FEE 435657 15052 \N \N 6041765 2025-03-20 02:43:40.462 2025-03-20 02:43:40.462 37800 TIP 435657 960 \N \N 6041773 2025-03-20 02:46:39.369 2025-03-20 02:46:39.369 1000 FEE 436064 5171 \N \N 6041783 2025-03-20 02:49:18.952 2025-03-20 02:49:18.952 100 FEE 436030 2640 \N \N 6041784 2025-03-20 02:49:18.952 2025-03-20 02:49:18.952 900 TIP 436030 9529 \N \N 6041799 2025-03-20 02:49:21.058 2025-03-20 02:49:21.058 100 FEE 436030 2459 \N \N 6041800 2025-03-20 02:49:21.058 2025-03-20 02:49:21.058 900 TIP 436030 828 \N \N 6155299 2025-03-29 08:33:47.896 2025-03-29 08:33:47.896 800 FEE 447991 6393 \N \N 6155300 2025-03-29 08:33:47.896 2025-03-29 08:33:47.896 7200 TIP 447991 16704 \N \N 6155308 2025-03-29 08:34:10.988 2025-03-29 08:34:10.988 800 FEE 447956 20597 \N \N 6155309 2025-03-29 08:34:10.988 2025-03-29 08:34:10.988 7200 TIP 447956 14705 \N \N 6155359 2025-03-29 08:35:31.636 2025-03-29 08:35:31.636 2600 FEE 448031 18717 \N \N 6155360 2025-03-29 08:35:31.636 2025-03-29 08:35:31.636 23400 TIP 448031 6594 \N \N 6155391 2025-03-29 08:38:32.809 2025-03-29 08:38:32.809 1000 FEE 448386 2195 \N \N 6155414 2025-03-29 08:39:09.576 2025-03-29 08:39:09.576 2100 FEE 448230 964 \N \N 6155415 2025-03-29 08:39:09.576 2025-03-29 08:39:09.576 18900 TIP 448230 722 \N \N 6155443 2025-03-29 08:39:19.181 2025-03-29 08:39:19.181 2100 FEE 448238 21003 \N \N 6155444 2025-03-29 08:39:19.181 2025-03-29 08:39:19.181 18900 TIP 448238 21012 \N \N 6155455 2025-03-29 08:40:07.933 2025-03-29 08:40:07.933 0 FEE 448387 1489 \N \N 6155485 2025-03-29 08:42:18.338 2025-03-29 08:42:18.338 2100 FEE 448218 19138 \N \N 6155486 2025-03-29 08:42:18.338 2025-03-29 08:42:18.338 18900 TIP 448218 1620 \N \N 6155495 2025-03-29 08:42:52.986 2025-03-29 08:42:52.986 1000 FEE 448389 18743 \N \N 6155496 2025-03-29 08:42:52.986 2025-03-29 08:42:52.986 9000 TIP 448389 1105 \N \N 6155499 2025-03-29 08:42:53.81 2025-03-29 08:42:53.81 1000 FEE 448389 1745 \N \N 6155500 2025-03-29 08:42:53.81 2025-03-29 08:42:53.81 9000 TIP 448389 20180 \N \N 6155505 2025-03-29 08:43:04.68 2025-03-29 08:43:04.68 1000 FEE 448396 688 \N \N 6155536 2025-03-29 08:44:27.489 2025-03-29 08:44:27.489 2100 FEE 446169 1310 \N \N 6155537 2025-03-29 08:44:27.489 2025-03-29 08:44:27.489 18900 TIP 446169 19537 \N \N 6155599 2025-03-29 08:49:10.479 2025-03-29 08:49:10.479 2100 FEE 448349 21369 \N \N 6155600 2025-03-29 08:49:10.479 2025-03-29 08:49:10.479 18900 TIP 448349 5775 \N \N 6155604 2025-03-29 08:50:04.908 2025-03-29 08:50:04.908 100 FEE 448402 999 \N \N 6155605 2025-03-29 08:50:04.908 2025-03-29 08:50:04.908 900 TIP 448402 4819 \N \N 6155623 2025-03-29 08:52:41.381 2025-03-29 08:52:41.381 0 FEE 448404 1394 \N \N 6158875 2025-03-29 14:56:39.688 2025-03-29 14:56:39.688 1000 FEE 448781 766 \N \N 6158881 2025-03-29 14:57:14.407 2025-03-29 14:57:14.407 1000 FEE 448782 9290 \N \N 6158883 2025-03-29 14:58:24.594 2025-03-29 14:58:24.594 1000 FEE 448743 16432 \N \N 6158884 2025-03-29 14:58:24.594 2025-03-29 14:58:24.594 9000 TIP 448743 3213 \N \N 6158887 2025-03-29 14:58:31.83 2025-03-29 14:58:31.83 1000 FEE 448783 20409 \N \N 6158888 2025-03-29 14:58:46.217 2025-03-29 14:58:46.217 1000 FEE 448782 8541 \N \N 6158889 2025-03-29 14:58:46.217 2025-03-29 14:58:46.217 9000 TIP 448782 21061 \N \N 6158903 2025-03-29 15:01:56.383 2025-03-29 15:01:56.383 1000 FEE 448765 1424 \N \N 6158904 2025-03-29 15:01:56.383 2025-03-29 15:01:56.383 9000 TIP 448765 21202 \N \N 6158942 2025-03-29 15:06:24.307 2025-03-29 15:06:24.307 1000 FEE 448793 1433 \N \N 6158967 2025-03-29 15:09:02.194 2025-03-29 15:09:02.194 2100 FEE 448591 20990 \N \N 6158968 2025-03-29 15:09:02.194 2025-03-29 15:09:02.194 18900 TIP 448591 18630 \N \N 6158976 2025-03-29 15:09:46.291 2025-03-29 15:09:46.291 800 FEE 448691 21164 \N \N 6158977 2025-03-29 15:09:46.291 2025-03-29 15:09:46.291 7200 TIP 448691 8841 \N \N 6158979 2025-03-29 15:10:50.4 2025-03-29 15:10:50.4 10000 FEE 448591 20094 \N \N 6158980 2025-03-29 15:10:50.4 2025-03-29 15:10:50.4 90000 TIP 448591 21238 \N \N 6158985 2025-03-29 15:10:59.08 2025-03-29 15:10:59.08 10000 FEE 448349 7097 \N \N 6158986 2025-03-29 15:10:59.08 2025-03-29 15:10:59.08 90000 TIP 448349 20294 \N \N 6159032 2025-03-29 15:21:28.296 2025-03-29 15:21:28.296 2500 FEE 448035 9354 \N \N 6159033 2025-03-29 15:21:28.296 2025-03-29 15:21:28.296 22500 TIP 448035 21578 \N \N 6159040 2025-03-29 15:22:51.4 2025-03-29 15:22:51.4 11700 FEE 448802 18265 \N \N 6159041 2025-03-29 15:22:51.4 2025-03-29 15:22:51.4 105300 TIP 448802 21647 \N \N 6159047 2025-03-29 15:25:20.508 2025-03-29 15:25:20.508 1000 FEE 448807 5597 \N \N 6159078 2025-03-29 15:29:00.122 2025-03-29 15:29:00.122 3000 FEE 448810 1729 \N \N 6159079 2025-03-29 15:29:00.122 2025-03-29 15:29:00.122 27000 TIP 448810 2652 \N \N 6159100 2025-03-29 15:34:21.207 2025-03-29 15:34:21.207 2100 FEE 448790 3656 \N \N 6159101 2025-03-29 15:34:21.207 2025-03-29 15:34:21.207 18900 TIP 448790 20377 \N \N 6159108 2025-03-29 15:36:04.216 2025-03-29 15:36:04.216 1000 FEE 448816 21067 \N \N 6159110 2025-03-29 15:36:20.336 2025-03-29 15:36:20.336 800 FEE 448809 9295 \N \N 6159111 2025-03-29 15:36:20.336 2025-03-29 15:36:20.336 7200 TIP 448809 14818 \N \N 6159133 2025-03-29 15:39:10.623 2025-03-29 15:39:10.623 7700 FEE 448691 17148 \N \N 6159134 2025-03-29 15:39:10.623 2025-03-29 15:39:10.623 69300 TIP 448691 18743 \N \N 6159156 2025-03-29 15:41:31.812 2025-03-29 15:41:31.812 1000 FEE 448818 16126 \N \N 6159161 2025-03-29 15:43:03.613 2025-03-29 15:43:03.613 21100 FEE 448817 9438 \N \N 6159162 2025-03-29 15:43:03.613 2025-03-29 15:43:03.613 189900 TIP 448817 14515 \N \N 6159167 2025-03-29 15:46:10.059 2025-03-29 15:46:10.059 2100 FEE 446942 21207 \N \N 6159168 2025-03-29 15:46:10.059 2025-03-29 15:46:10.059 18900 TIP 446942 13216 \N \N 6159184 2025-03-29 15:49:46.14 2025-03-29 15:49:46.14 1000 FEE 448822 9421 \N \N 6159201 2025-03-29 15:53:08.444 2025-03-29 15:53:08.444 1000 FEE 448828 1960 \N \N 6159207 2025-03-29 15:54:36.043 2025-03-29 15:54:36.043 2100 FEE 448802 1094 \N \N 6159208 2025-03-29 15:54:36.043 2025-03-29 15:54:36.043 18900 TIP 448802 21136 \N \N 6159215 2025-03-29 15:56:58.02 2025-03-29 15:56:58.02 2100 FEE 448802 3411 \N \N 6159216 2025-03-29 15:56:58.02 2025-03-29 15:56:58.02 18900 TIP 448802 9421 \N \N 6159239 2025-03-29 15:58:04.501 2025-03-29 15:58:04.501 2100 FEE 448073 859 \N \N 6159240 2025-03-29 15:58:04.501 2025-03-29 15:58:04.501 18900 TIP 448073 17184 \N \N 6159272 2025-03-29 15:58:43.991 2025-03-29 15:58:43.991 1000 FEE 448833 5725 \N \N 6040882 2025-03-19 23:30:36.599 2025-03-19 23:30:36.599 500000 FEE 432322 1596 \N \N 6040883 2025-03-19 23:30:36.599 2025-03-19 23:30:36.599 4500000 TIP 432322 11621 \N \N 6040889 2025-03-19 23:31:23.806 2025-03-19 23:31:23.806 1000000 FEE 435947 11192 \N \N 6040921 2025-03-19 23:43:07.037 2025-03-19 23:43:07.037 10000 FEE 435402 1039 \N \N 6040922 2025-03-19 23:43:07.037 2025-03-19 23:43:07.037 90000 TIP 435402 21338 \N \N 6040969 2025-03-19 23:59:28.028 2025-03-19 23:59:28.028 2100 FEE 435944 21314 \N \N 6040970 2025-03-19 23:59:28.028 2025-03-19 23:59:28.028 18900 TIP 435944 11192 \N \N 6041045 2025-03-20 00:16:54.256 2025-03-20 00:16:54.256 200 FEE 435945 16230 \N \N 6041046 2025-03-20 00:16:54.256 2025-03-20 00:16:54.256 1800 TIP 435945 2776 \N \N 6041047 2025-03-20 00:16:59.192 2025-03-20 00:16:59.192 200 FEE 435597 13177 \N \N 6041048 2025-03-20 00:16:59.192 2025-03-20 00:16:59.192 1800 TIP 435597 20525 \N \N 6041066 2025-03-20 00:20:09.718 2025-03-20 00:20:09.718 1000 FEE 435261 776 \N \N 6041067 2025-03-20 00:20:09.718 2025-03-20 00:20:09.718 9000 TIP 435261 760 \N \N 6041069 2025-03-20 00:20:13.937 2025-03-20 00:20:13.937 1000 FEE 435520 21405 \N \N 6041070 2025-03-20 00:20:13.937 2025-03-20 00:20:13.937 9000 TIP 435520 20825 \N \N 6041071 2025-03-20 00:20:16.905 2025-03-20 00:20:16.905 1000 FEE 435382 7891 \N \N 6041072 2025-03-20 00:20:16.905 2025-03-20 00:20:16.905 9000 TIP 435382 5497 \N \N 6041091 2025-03-20 00:20:25.065 2025-03-20 00:20:25.065 1000 FEE 435420 12736 \N \N 6041092 2025-03-20 00:20:25.065 2025-03-20 00:20:25.065 9000 TIP 435420 714 \N \N 6041113 2025-03-20 00:20:35.152 2025-03-20 00:20:35.152 1000 FEE 435264 19857 \N \N 6041114 2025-03-20 00:20:35.152 2025-03-20 00:20:35.152 9000 TIP 435264 20433 \N \N 6041131 2025-03-20 00:20:52.119 2025-03-20 00:20:52.119 1000 FEE 435699 4128 \N \N 6041132 2025-03-20 00:20:52.119 2025-03-20 00:20:52.119 9000 TIP 435699 861 \N \N 6041164 2025-03-20 00:21:38.705 2025-03-20 00:21:38.705 1000 FEE 435405 20987 \N \N 6041165 2025-03-20 00:21:38.705 2025-03-20 00:21:38.705 9000 TIP 435405 21424 \N \N 6041166 2025-03-20 00:21:39.319 2025-03-20 00:21:39.319 1000 FEE 435404 1717 \N \N 6041167 2025-03-20 00:21:39.319 2025-03-20 00:21:39.319 9000 TIP 435404 19524 \N \N 6041168 2025-03-20 00:21:39.865 2025-03-20 00:21:39.865 1000 FEE 435393 2609 \N \N 6041169 2025-03-20 00:21:39.865 2025-03-20 00:21:39.865 9000 TIP 435393 12102 \N \N 6041170 2025-03-20 00:21:40.415 2025-03-20 00:21:40.415 1000 FEE 435364 21058 \N \N 6041171 2025-03-20 00:21:40.415 2025-03-20 00:21:40.415 9000 TIP 435364 17212 \N \N 6041178 2025-03-20 00:21:43.486 2025-03-20 00:21:43.486 1000 FEE 435442 21402 \N \N 6041179 2025-03-20 00:21:43.486 2025-03-20 00:21:43.486 9000 TIP 435442 1751 \N \N 6041186 2025-03-20 00:21:52.709 2025-03-20 00:21:52.709 1000 FEE 435666 20275 \N \N 6041187 2025-03-20 00:21:52.709 2025-03-20 00:21:52.709 9000 TIP 435666 5427 \N \N 6041192 2025-03-20 00:22:52.675 2025-03-20 00:22:52.675 1000 FEE 435965 21518 \N \N 6041243 2025-03-20 00:42:40.141 2025-03-20 00:42:40.141 1000 FEE 435973 21303 \N \N 6041246 2025-03-20 00:44:18.748 2025-03-20 00:44:18.748 2100 FEE 430867 12736 \N \N 6041247 2025-03-20 00:44:18.748 2025-03-20 00:44:18.748 18900 TIP 430867 1620 \N \N 6041255 2025-03-20 00:47:53.411 2025-03-20 00:47:53.411 5000 FEE 435944 21262 \N \N 6041256 2025-03-20 00:47:53.411 2025-03-20 00:47:53.411 45000 TIP 435944 11153 \N \N 6041283 2025-03-20 00:55:46.819 2025-03-20 00:55:46.819 1000 FEE 435345 12946 \N \N 6041284 2025-03-20 00:55:46.819 2025-03-20 00:55:46.819 9000 TIP 435345 19806 \N \N 6041334 2025-03-20 01:09:57.372 2025-03-20 01:09:57.372 1000 FEE 435995 21401 \N \N 6041354 2025-03-20 01:18:02.992 2025-03-20 01:18:02.992 1000 FEE 436001 2330 \N \N 6041359 2025-03-20 01:20:49.002 2025-03-20 01:20:49.002 0 FEE 436001 3213 \N \N 6041360 2025-03-20 01:21:12.771 2025-03-20 01:21:12.771 10000 FEE 436002 18500 \N \N 6041413 2025-03-20 01:34:35.669 2025-03-20 01:34:35.669 100 FEE 435907 7809 \N \N 6041414 2025-03-20 01:34:35.669 2025-03-20 01:34:35.669 900 TIP 435907 15624 \N \N 6041420 2025-03-20 01:37:14.254 2025-03-20 01:37:14.254 1000 FEE 436010 1800 \N \N 6041425 2025-03-20 01:37:46.307 2025-03-20 01:37:46.307 200 FEE 436002 1236 \N \N 6041426 2025-03-20 01:37:46.307 2025-03-20 01:37:46.307 1800 TIP 436002 16250 \N \N 6041434 2025-03-20 01:38:51.21 2025-03-20 01:38:51.21 10000 FEE 436003 2722 \N \N 6041435 2025-03-20 01:38:51.21 2025-03-20 01:38:51.21 90000 TIP 436003 6191 \N \N 6041436 2025-03-20 01:38:52.011 2025-03-20 01:38:52.011 10000 FEE 435979 5779 \N \N 6041437 2025-03-20 01:38:52.011 2025-03-20 01:38:52.011 90000 TIP 435979 8242 \N \N 6041440 2025-03-20 01:39:13.847 2025-03-20 01:39:13.847 10000 FEE 435998 9262 \N \N 6041441 2025-03-20 01:39:13.847 2025-03-20 01:39:13.847 90000 TIP 435998 1426 \N \N 6041443 2025-03-20 01:40:09.655 2025-03-20 01:40:09.655 10000 FEE 436000 13143 \N \N 6041444 2025-03-20 01:40:09.655 2025-03-20 01:40:09.655 90000 TIP 436000 5961 \N \N 6041459 2025-03-20 01:44:59.983 2025-03-20 01:44:59.983 100 FEE 436010 9330 \N \N 6041460 2025-03-20 01:44:59.983 2025-03-20 01:44:59.983 900 TIP 436010 1552 \N \N 6041480 2025-03-20 01:46:36.607 2025-03-20 01:46:36.607 5000 FEE 436012 14489 \N \N 6041481 2025-03-20 01:46:36.607 2025-03-20 01:46:36.607 45000 TIP 436012 16440 \N \N 6041512 2025-03-20 01:52:52.977 2025-03-20 01:52:52.977 1100 FEE 436010 17690 \N \N 6041513 2025-03-20 01:52:52.977 2025-03-20 01:52:52.977 9900 TIP 436010 951 \N \N 6041519 2025-03-20 01:53:35.234 2025-03-20 01:53:35.234 1100 FEE 435907 11798 \N \N 6041520 2025-03-20 01:53:35.234 2025-03-20 01:53:35.234 9900 TIP 435907 17331 \N \N 6041537 2025-03-20 01:59:05.365 2025-03-20 01:59:05.365 0 FEE 436021 7847 \N \N 6041544 2025-03-20 02:01:32.387 2025-03-20 02:01:32.387 1000 FEE 436026 14663 \N \N 6041559 2025-03-20 02:05:21.615 2025-03-20 02:05:21.615 0 FEE 436029 13544 \N \N 6041568 2025-03-20 02:06:13.311 2025-03-20 02:06:13.311 4000 FEE 435851 5794 \N \N 6041569 2025-03-20 02:06:13.311 2025-03-20 02:06:13.311 36000 TIP 435851 929 \N \N 6041580 2025-03-20 02:07:13.38 2025-03-20 02:07:13.38 4000 FEE 435639 11942 \N \N 6041581 2025-03-20 02:07:13.38 2025-03-20 02:07:13.38 36000 TIP 435639 21136 \N \N 6041587 2025-03-20 02:08:09.934 2025-03-20 02:08:09.934 2100 FEE 435812 9084 \N \N 6041588 2025-03-20 02:08:09.934 2025-03-20 02:08:09.934 18900 TIP 435812 20187 \N \N 6041606 2025-03-20 02:11:56.297 2025-03-20 02:11:56.297 0 FEE 436031 9669 \N \N 6041643 2025-03-20 02:21:50.434 2025-03-20 02:21:50.434 1000 FEE 436025 2639 \N \N 6041644 2025-03-20 02:21:50.434 2025-03-20 02:21:50.434 9000 TIP 436025 997 \N \N 6041650 2025-03-20 02:22:33.063 2025-03-20 02:22:33.063 10000 FEE 436005 18309 \N \N 6041651 2025-03-20 02:22:33.063 2025-03-20 02:22:33.063 90000 TIP 436005 21712 \N \N 6041662 2025-03-20 02:23:08.464 2025-03-20 02:23:08.464 1000 FEE 436037 20657 \N \N 6041663 2025-03-20 02:23:08.663 2025-03-20 02:23:08.663 2100 FEE 435974 6137 \N \N 6041664 2025-03-20 02:23:08.663 2025-03-20 02:23:08.663 18900 TIP 435974 11967 \N \N 6041677 2025-03-20 02:24:13.052 2025-03-20 02:24:13.052 1000 FEE 435962 17817 \N \N 6041678 2025-03-20 02:24:13.052 2025-03-20 02:24:13.052 9000 TIP 435962 5779 \N \N 6041685 2025-03-20 02:24:38.58 2025-03-20 02:24:38.58 4000 FEE 436033 21599 \N \N 6041686 2025-03-20 02:24:38.58 2025-03-20 02:24:38.58 36000 TIP 436033 20102 \N \N 6041692 2025-03-20 02:25:31.785 2025-03-20 02:25:31.785 2500 FEE 435877 1142 \N \N 6041693 2025-03-20 02:25:31.785 2025-03-20 02:25:31.785 22500 TIP 435877 4225 \N \N 6041728 2025-03-20 02:37:20.378 2025-03-20 02:37:20.378 7700 FEE 436045 2176 \N \N 6041729 2025-03-20 02:37:20.378 2025-03-20 02:37:20.378 69300 TIP 436045 20504 \N \N 6041745 2025-03-20 02:40:06.452 2025-03-20 02:40:06.452 0 FEE 436052 9367 \N \N 6041787 2025-03-20 02:49:19.634 2025-03-20 02:49:19.634 100 FEE 436030 20439 \N \N 6041788 2025-03-20 02:49:19.634 2025-03-20 02:49:19.634 900 TIP 436030 14663 \N \N 6041829 2025-03-20 02:51:42.089 2025-03-20 02:51:42.089 0 FEE 436064 21067 \N \N 6158932 2025-03-29 15:05:39.965 2025-03-29 15:05:39.965 1000 FEE 448759 5708 \N \N 6158933 2025-03-29 15:05:39.965 2025-03-29 15:05:39.965 9000 TIP 448759 11515 \N \N 6158940 2025-03-29 15:06:01.467 2025-03-29 15:06:01.467 1000 FEE 448792 20157 \N \N 6158946 2025-03-29 15:07:15.432 2025-03-29 15:07:15.432 1000 FEE 448794 21239 \N \N 6158951 2025-03-29 15:07:55.526 2025-03-29 15:07:55.526 800 FEE 448740 20911 \N \N 6158952 2025-03-29 15:07:55.526 2025-03-29 15:07:55.526 7200 TIP 448740 980 \N \N 6158974 2025-03-29 15:09:45.085 2025-03-29 15:09:45.085 500 FEE 448722 21275 \N \N 6158975 2025-03-29 15:09:45.085 2025-03-29 15:09:45.085 4500 TIP 448722 1471 \N \N 6159003 2025-03-29 15:15:36.216 2025-03-29 15:15:36.216 7700 FEE 448790 20655 \N \N 6159004 2025-03-29 15:15:36.216 2025-03-29 15:15:36.216 69300 TIP 448790 15147 \N \N 6159007 2025-03-29 15:16:29.188 2025-03-29 15:16:29.188 900 FEE 448349 11454 \N \N 6159008 2025-03-29 15:16:29.188 2025-03-29 15:16:29.188 8100 TIP 448349 11760 \N \N 6159021 2025-03-29 15:18:50.422 2025-03-29 15:18:50.422 2500 FEE 448729 21079 \N \N 6159022 2025-03-29 15:18:50.422 2025-03-29 15:18:50.422 22500 TIP 448729 10270 \N \N 6159031 2025-03-29 15:21:21.525 2025-03-29 15:21:21.525 21000 FEE 448802 1488 \N \N 6159049 2025-03-29 15:25:55.731 2025-03-29 15:25:55.731 21800 FEE 448763 6463 \N \N 6159050 2025-03-29 15:25:55.731 2025-03-29 15:25:55.731 196200 TIP 448763 21058 \N \N 6159053 2025-03-29 15:26:42.755 2025-03-29 15:26:42.755 300 FEE 448804 16598 \N \N 6159054 2025-03-29 15:26:42.755 2025-03-29 15:26:42.755 2700 TIP 448804 21541 \N \N 6159067 2025-03-29 15:27:19.255 2025-03-29 15:27:19.255 300 FEE 448806 654 \N \N 6159068 2025-03-29 15:27:19.255 2025-03-29 15:27:19.255 2700 TIP 448806 16998 \N \N 6159084 2025-03-29 15:29:14.407 2025-03-29 15:29:14.407 1000 FEE 448812 19673 \N \N 6159116 2025-03-29 15:38:05.984 2025-03-29 15:38:05.984 10000 FEE 448817 10818 \N \N 6159117 2025-03-29 15:38:05.984 2025-03-29 15:38:05.984 90000 TIP 448817 11240 \N \N 6159125 2025-03-29 15:39:02.002 2025-03-29 15:39:02.002 1000 FEE 448805 21416 \N \N 6159126 2025-03-29 15:39:02.002 2025-03-29 15:39:02.002 9000 TIP 448805 20563 \N \N 6159171 2025-03-29 15:47:09.864 2025-03-29 15:47:09.864 10000 FEE 448817 4287 \N \N 6159172 2025-03-29 15:47:09.864 2025-03-29 15:47:09.864 90000 TIP 448817 16704 \N \N 6159219 2025-03-29 15:57:02.656 2025-03-29 15:57:02.656 2100 FEE 448802 17209 \N \N 6159220 2025-03-29 15:57:02.656 2025-03-29 15:57:02.656 18900 TIP 448802 4043 \N \N 6159243 2025-03-29 15:58:08.28 2025-03-29 15:58:08.28 2100 FEE 448073 9906 \N \N 6159244 2025-03-29 15:58:08.28 2025-03-29 15:58:08.28 18900 TIP 448073 20509 \N \N 6159271 2025-03-29 15:58:39.188 2025-03-29 15:58:39.188 1000 FEE 448832 21269 \N \N 6159301 2025-03-29 15:59:39.3 2025-03-29 15:59:39.3 2100 FEE 448476 805 \N \N 6159302 2025-03-29 15:59:39.3 2025-03-29 15:59:39.3 18900 TIP 448476 10536 \N \N 6159317 2025-03-29 16:01:41.134 2025-03-29 16:01:41.134 7700 FEE 448823 1221 \N \N 6159318 2025-03-29 16:01:41.134 2025-03-29 16:01:41.134 69300 TIP 448823 2039 \N \N 6159332 2025-03-29 16:06:38.504 2025-03-29 16:06:38.504 0 FEE 448835 16970 \N \N 6159333 2025-03-29 16:06:45.807 2025-03-29 16:06:45.807 10000 FEE 448035 10112 \N \N 6159334 2025-03-29 16:06:45.807 2025-03-29 16:06:45.807 90000 TIP 448035 1726 \N \N 6159343 2025-03-29 16:11:02.412 2025-03-29 16:11:02.412 1000 FEE 448837 20816 \N \N 6159366 2025-03-29 16:16:58.418 2025-03-29 16:16:58.418 1000 FEE 448838 2013 \N \N 6159392 2025-03-29 16:27:06.476 2025-03-29 16:27:06.476 1000 FEE 448837 2327 \N \N 6159393 2025-03-29 16:27:06.476 2025-03-29 16:27:06.476 9000 TIP 448837 10986 \N \N 6159406 2025-03-29 16:30:57.789 2025-03-29 16:30:57.789 1000 FEE 448843 738 \N \N 6159414 2025-03-29 16:32:01.052 2025-03-29 16:32:01.052 0 FEE 448844 9166 \N \N 6159429 2025-03-29 16:35:44.895 2025-03-29 16:35:44.895 1000 FEE 448849 15556 \N \N 6159430 2025-03-29 16:35:59.688 2025-03-29 16:35:59.688 0 FEE 448848 2537 \N \N 6159435 2025-03-29 16:36:20.857 2025-03-29 16:36:20.857 1000 POLL 448349 1769 \N \N 6159461 2025-03-29 16:37:34.25 2025-03-29 16:37:34.25 3300 FEE 448349 10986 \N \N 6159462 2025-03-29 16:37:34.25 2025-03-29 16:37:34.25 29700 TIP 448349 21578 \N \N 6159474 2025-03-29 16:38:08.991 2025-03-29 16:38:08.991 2100 FEE 448790 21734 \N \N 6159475 2025-03-29 16:38:08.991 2025-03-29 16:38:08.991 18900 TIP 448790 10549 \N \N 6159479 2025-03-29 16:38:55.84 2025-03-29 16:38:55.84 2100 FEE 448841 2639 \N \N 6159480 2025-03-29 16:38:55.84 2025-03-29 16:38:55.84 18900 TIP 448841 20655 \N \N 6159492 2025-03-29 16:43:55.942 2025-03-29 16:43:55.942 1000 FEE 448854 15119 \N \N 6159502 2025-03-29 16:48:25.108 2025-03-29 16:48:25.108 7600 FEE 448802 21119 \N \N 6159503 2025-03-29 16:48:25.108 2025-03-29 16:48:25.108 68400 TIP 448802 9335 \N \N 6159538 2025-03-29 16:57:26.663 2025-03-29 16:57:26.663 7700 FEE 448861 7558 \N \N 6159539 2025-03-29 16:57:26.663 2025-03-29 16:57:26.663 69300 TIP 448861 1012 \N \N 6159550 2025-03-29 16:57:28.203 2025-03-29 16:57:28.203 7700 FEE 448861 20613 \N \N 6159551 2025-03-29 16:57:28.203 2025-03-29 16:57:28.203 69300 TIP 448861 12738 \N \N 6159562 2025-03-29 16:57:49.987 2025-03-29 16:57:49.987 7700 FEE 448855 15052 \N \N 6159563 2025-03-29 16:57:49.987 2025-03-29 16:57:49.987 69300 TIP 448855 21701 \N \N 6159565 2025-03-29 16:58:18.669 2025-03-29 16:58:18.669 1000 POLL 448029 11714 \N \N 6159568 2025-03-29 16:58:44.857 2025-03-29 16:58:44.857 1000 FEE 448863 18271 \N \N 6159571 2025-03-29 16:59:59.694 2025-03-29 16:59:59.694 11700 FEE 448851 720 \N \N 6159572 2025-03-29 16:59:59.694 2025-03-29 16:59:59.694 105300 TIP 448851 11454 \N \N 6159586 2025-03-29 17:01:50.722 2025-03-29 17:01:50.722 900 FEE 448802 3342 \N \N 6159587 2025-03-29 17:01:50.722 2025-03-29 17:01:50.722 8100 TIP 448802 20439 \N \N 6159597 2025-03-29 17:02:08.208 2025-03-29 17:02:08.208 100 FEE 448830 1221 \N \N 6159598 2025-03-29 17:02:08.208 2025-03-29 17:02:08.208 900 TIP 448830 11942 \N \N 6159606 2025-03-29 17:05:26.103 2025-03-29 17:05:26.103 1000 FEE 448867 21600 \N \N 6159613 2025-03-29 17:07:36.764 2025-03-29 17:07:36.764 21000 DONT_LIKE_THIS 448861 17291 \N \N 6143767 2025-03-28 10:36:22.747 2025-03-28 10:36:22.747 1000 FEE 447196 8380 \N \N 6143793 2025-03-28 10:41:18.007 2025-03-28 10:41:18.007 1000 FEE 447202 15703 \N \N 6143817 2025-03-28 10:46:43.623 2025-03-28 10:46:43.623 1000 FEE 446798 2543 \N \N 6143818 2025-03-28 10:46:43.623 2025-03-28 10:46:43.623 9000 TIP 446798 20993 \N \N 6143865 2025-03-28 10:55:54.055 2025-03-28 10:55:54.055 5000 FEE 446486 18306 \N \N 6143866 2025-03-28 10:55:54.055 2025-03-28 10:55:54.055 45000 TIP 446486 20826 \N \N 6143892 2025-03-28 10:58:27.702 2025-03-28 10:58:27.702 1000 FEE 447212 8544 \N \N 6143893 2025-03-28 10:58:27.702 2025-03-28 10:58:27.702 9000 TIP 447212 21514 \N \N 6143898 2025-03-28 10:59:19.814 2025-03-28 10:59:19.814 0 FEE 447218 14381 \N \N 6143914 2025-03-28 11:00:37.057 2025-03-28 11:00:37.057 0 FEE 447218 15336 \N \N 6143931 2025-03-28 11:02:03.882 2025-03-28 11:02:03.882 0 FEE 447218 9820 \N \N 6143937 2025-03-28 11:02:16.585 2025-03-28 11:02:16.585 2100 FEE 447164 21070 \N \N 6143938 2025-03-28 11:02:16.585 2025-03-28 11:02:16.585 18900 TIP 447164 3990 \N \N 6143954 2025-03-28 11:03:05.107 2025-03-28 11:03:05.107 1000 FEE 447223 14909 \N \N 6143957 2025-03-28 11:03:30.704 2025-03-28 11:03:30.704 1100 FEE 447111 4225 \N \N 6143958 2025-03-28 11:03:30.704 2025-03-28 11:03:30.704 9900 TIP 447111 8045 \N \N 6143960 2025-03-28 11:04:03.332 2025-03-28 11:04:03.332 0 FEE 447218 21442 \N \N 6143969 2025-03-28 11:04:52.795 2025-03-28 11:04:52.795 20000 FEE 447225 15243 \N \N 6143972 2025-03-28 11:04:58.782 2025-03-28 11:04:58.782 1700 FEE 447225 11263 \N \N 6143973 2025-03-28 11:04:58.782 2025-03-28 11:04:58.782 15300 TIP 447225 17162 \N \N 6143988 2025-03-28 11:05:28.178 2025-03-28 11:05:28.178 1000 FEE 447227 12819 \N \N 6144020 2025-03-28 11:06:58.494 2025-03-28 11:06:58.494 1000 FEE 447226 5637 \N \N 6144021 2025-03-28 11:06:58.494 2025-03-28 11:06:58.494 9000 TIP 447226 20117 \N \N 6144022 2025-03-28 11:07:06.363 2025-03-28 11:07:06.363 1000 FEE 446954 21356 \N \N 6144023 2025-03-28 11:07:06.363 2025-03-28 11:07:06.363 9000 TIP 446954 21114 \N \N 6144028 2025-03-28 11:07:12.528 2025-03-28 11:07:12.528 1000 FEE 447225 14515 \N \N 6144029 2025-03-28 11:07:12.528 2025-03-28 11:07:12.528 9000 TIP 447225 951 \N \N 6144032 2025-03-28 11:07:13.352 2025-03-28 11:07:13.352 1000 FEE 447225 12946 \N \N 6144033 2025-03-28 11:07:13.352 2025-03-28 11:07:13.352 9000 TIP 447225 18219 \N \N 6144058 2025-03-28 11:07:30.485 2025-03-28 11:07:30.485 1000 FEE 447121 21683 \N \N 6144059 2025-03-28 11:07:30.485 2025-03-28 11:07:30.485 9000 TIP 447121 21400 \N \N 6144093 2025-03-28 11:12:39.799 2025-03-28 11:12:39.799 2100 FEE 447225 18930 \N \N 6144094 2025-03-28 11:12:39.799 2025-03-28 11:12:39.799 18900 TIP 447225 8506 \N \N 6144118 2025-03-28 11:16:29.862 2025-03-28 11:16:29.862 1000 FEE 447239 20745 \N \N 6144119 2025-03-28 11:16:29.862 2025-03-28 11:16:29.862 9000 TIP 447239 6149 \N \N 6144120 2025-03-28 11:16:30.374 2025-03-28 11:16:30.374 1000 FEE 447239 20623 \N \N 6144121 2025-03-28 11:16:30.374 2025-03-28 11:16:30.374 9000 TIP 447239 16536 \N \N 6144134 2025-03-28 11:17:25.843 2025-03-28 11:17:25.843 0 FEE 447236 880 \N \N 6144168 2025-03-28 11:24:53.915 2025-03-28 11:24:53.915 1000 FEE 446623 13378 \N \N 6144169 2025-03-28 11:24:53.915 2025-03-28 11:24:53.915 9000 TIP 446623 7903 \N \N 6144174 2025-03-28 11:25:53.697 2025-03-28 11:25:53.697 10100 FEE 447243 19016 \N \N 6144175 2025-03-28 11:25:53.697 2025-03-28 11:25:53.697 90900 TIP 447243 725 \N \N 6144216 2025-03-28 11:31:33.243 2025-03-28 11:31:33.243 1000 FEE 447253 9275 \N \N 6144219 2025-03-28 11:31:43.159 2025-03-28 11:31:43.159 0 FEE 447251 5661 \N \N 6144228 2025-03-28 11:35:01.451 2025-03-28 11:35:01.451 1000 FEE 447256 21815 \N \N 6144244 2025-03-28 11:37:29.216 2025-03-28 11:37:29.216 1000 FEE 447259 669 \N \N 6144245 2025-03-28 11:37:41.575 2025-03-28 11:37:41.575 1000 FEE 447260 9421 \N \N 6144336 2025-03-28 11:47:43.465 2025-03-28 11:47:43.465 2100 FEE 447251 14941 \N \N 6144337 2025-03-28 11:47:43.465 2025-03-28 11:47:43.465 18900 TIP 447251 13169 \N \N 6144348 2025-03-28 11:48:23.408 2025-03-28 11:48:23.408 2100 FEE 447221 15119 \N \N 6144349 2025-03-28 11:48:23.408 2025-03-28 11:48:23.408 18900 TIP 447221 770 \N \N 6144352 2025-03-28 11:49:25.285 2025-03-28 11:49:25.285 2100 FEE 447220 15719 \N \N 6144353 2025-03-28 11:49:25.285 2025-03-28 11:49:25.285 18900 TIP 447220 21072 \N \N 6144354 2025-03-28 11:49:43.298 2025-03-28 11:49:43.298 2100 FEE 447143 16724 \N \N 6144355 2025-03-28 11:49:43.298 2025-03-28 11:49:43.298 18900 TIP 447143 11164 \N \N 6144356 2025-03-28 11:49:49.025 2025-03-28 11:49:49.025 2100 FEE 447162 20523 \N \N 6144357 2025-03-28 11:49:49.025 2025-03-28 11:49:49.025 18900 TIP 447162 10112 \N \N 6144358 2025-03-28 11:49:49.44 2025-03-28 11:49:49.44 2100 FEE 447160 19094 \N \N 6144359 2025-03-28 11:49:49.44 2025-03-28 11:49:49.44 18900 TIP 447160 16354 \N \N 6144371 2025-03-28 11:50:39.813 2025-03-28 11:50:39.813 2100 FEE 446736 985 \N \N 6144372 2025-03-28 11:50:39.813 2025-03-28 11:50:39.813 18900 TIP 446736 4819 \N \N 6144429 2025-03-28 12:00:25.746 2025-03-28 12:00:25.746 1000 FEE 447282 2111 \N \N 6144435 2025-03-28 12:02:01.045 2025-03-28 12:02:01.045 1000 FEE 447283 5978 \N \N 6144436 2025-03-28 12:02:01.761 2025-03-28 12:02:01.761 1000 FEE 447284 2347 \N \N 6144454 2025-03-28 12:02:54.23 2025-03-28 12:02:54.23 2100 FEE 212959 14785 \N \N 6144455 2025-03-28 12:02:54.23 2025-03-28 12:02:54.23 18900 TIP 212959 16536 \N \N 6144458 2025-03-28 12:03:03.803 2025-03-28 12:03:03.803 1000 FEE 447287 5865 \N \N 6144461 2025-03-28 12:03:07.23 2025-03-28 12:03:07.23 900 FEE 447267 674 \N \N 6144462 2025-03-28 12:03:07.23 2025-03-28 12:03:07.23 8100 TIP 447267 1480 \N \N 6144463 2025-03-28 12:03:07.806 2025-03-28 12:03:07.806 9000 FEE 447267 12911 \N \N 6144464 2025-03-28 12:03:07.806 2025-03-28 12:03:07.806 81000 TIP 447267 16633 \N \N 6144471 2025-03-28 12:03:44.988 2025-03-28 12:03:44.988 5000 FEE 447271 12609 \N \N 6144472 2025-03-28 12:03:44.988 2025-03-28 12:03:44.988 45000 TIP 447271 9796 \N \N 6144488 2025-03-28 12:04:30.042 2025-03-28 12:04:30.042 2100 FEE 447289 2508 \N \N 6144489 2025-03-28 12:04:30.042 2025-03-28 12:04:30.042 18900 TIP 447289 14278 \N \N 6144495 2025-03-28 12:05:19.396 2025-03-28 12:05:19.396 1000 FEE 447264 11967 \N \N 6144496 2025-03-28 12:05:19.396 2025-03-28 12:05:19.396 9000 TIP 447264 20182 \N \N 6144532 2025-03-28 12:09:00.472 2025-03-28 12:09:00.472 1000 FEE 447299 14688 \N \N 6144538 2025-03-28 12:09:16.188 2025-03-28 12:09:16.188 2100 FEE 447239 2513 \N \N 6144539 2025-03-28 12:09:16.188 2025-03-28 12:09:16.188 18900 TIP 447239 2098 \N \N 6144542 2025-03-28 12:09:17.703 2025-03-28 12:09:17.703 7600 FEE 447199 20864 \N \N 6144543 2025-03-28 12:09:17.703 2025-03-28 12:09:17.703 68400 TIP 447199 8535 \N \N 6144552 2025-03-28 12:09:50.032 2025-03-28 12:09:50.032 7600 FEE 447288 17172 \N \N 6144553 2025-03-28 12:09:50.032 2025-03-28 12:09:50.032 68400 TIP 447288 20599 \N \N 6144557 2025-03-28 12:10:43.986 2025-03-28 12:10:43.986 3300 FEE 447279 18309 \N \N 6144558 2025-03-28 12:10:43.986 2025-03-28 12:10:43.986 29700 TIP 447279 9366 \N \N 6155311 2025-03-29 08:34:20.644 2025-03-29 08:34:20.644 800 FEE 447302 8498 \N \N 6155312 2025-03-29 08:34:20.644 2025-03-29 08:34:20.644 7200 TIP 447302 19524 \N \N 6155339 2025-03-29 08:34:53.387 2025-03-29 08:34:53.387 2100 FEE 448201 20495 \N \N 6155340 2025-03-29 08:34:53.387 2025-03-29 08:34:53.387 18900 TIP 448201 20701 \N \N 6155350 2025-03-29 08:35:12.961 2025-03-29 08:35:12.961 2100 FEE 448155 16638 \N \N 6155351 2025-03-29 08:35:12.961 2025-03-29 08:35:12.961 18900 TIP 448155 17535 \N \N 6155425 2025-03-29 08:39:13.839 2025-03-29 08:39:13.839 1700 FEE 448369 797 \N \N 6155426 2025-03-29 08:39:13.839 2025-03-29 08:39:13.839 15300 TIP 448369 3979 \N \N 6155427 2025-03-29 08:39:14.047 2025-03-29 08:39:14.047 1700 FEE 448369 21172 \N \N 6155428 2025-03-29 08:39:14.047 2025-03-29 08:39:14.047 15300 TIP 448369 18557 \N \N 6155460 2025-03-29 08:40:35.465 2025-03-29 08:40:35.465 1000 FEE 448391 17533 \N \N 6155476 2025-03-29 08:42:14.583 2025-03-29 08:42:14.583 2100 FEE 448352 15146 \N \N 6155477 2025-03-29 08:42:14.583 2025-03-29 08:42:14.583 18900 TIP 448352 6268 \N \N 6155518 2025-03-29 08:43:46.366 2025-03-29 08:43:46.366 2100 FEE 444755 14255 \N \N 6155519 2025-03-29 08:43:46.366 2025-03-29 08:43:46.366 18900 TIP 444755 736 \N \N 6155542 2025-03-29 08:44:35.501 2025-03-29 08:44:35.501 2100 FEE 446434 21520 \N \N 6155543 2025-03-29 08:44:35.501 2025-03-29 08:44:35.501 18900 TIP 446434 21208 \N \N 6155546 2025-03-29 08:44:37.819 2025-03-29 08:44:37.819 1000 FEE 448373 21540 \N \N 6155547 2025-03-29 08:44:37.819 2025-03-29 08:44:37.819 9000 TIP 448373 9166 \N \N 6155548 2025-03-29 08:44:38.044 2025-03-29 08:44:38.044 2100 FEE 446210 20922 \N \N 6155549 2025-03-29 08:44:38.044 2025-03-29 08:44:38.044 18900 TIP 446210 8284 \N \N 6155550 2025-03-29 08:44:38.5 2025-03-29 08:44:38.5 2100 FEE 444764 20660 \N \N 6155551 2025-03-29 08:44:38.5 2025-03-29 08:44:38.5 18900 TIP 444764 9476 \N \N 6155578 2025-03-29 08:47:05.449 2025-03-29 08:47:05.449 5000 FEE 448261 14552 \N \N 6155579 2025-03-29 08:47:05.449 2025-03-29 08:47:05.449 45000 TIP 448261 825 \N \N 6155588 2025-03-29 08:47:19.708 2025-03-29 08:47:19.708 1000 FEE 448399 1772 \N \N 6155589 2025-03-29 08:47:19.708 2025-03-29 08:47:19.708 9000 TIP 448399 19126 \N \N 6155631 2025-03-29 08:53:37.716 2025-03-29 08:53:37.716 800 FEE 448385 18116 \N \N 6155632 2025-03-29 08:53:37.716 2025-03-29 08:53:37.716 7200 TIP 448385 21455 \N \N 6155633 2025-03-29 08:53:40.033 2025-03-29 08:53:40.033 1000 FEE 448413 9982 \N \N 6155653 2025-03-29 08:54:23.878 2025-03-29 08:54:23.878 10100 FEE 448349 1652 \N \N 6155654 2025-03-29 08:54:23.878 2025-03-29 08:54:23.878 90900 TIP 448349 19471 \N \N 6155657 2025-03-29 08:54:52.773 2025-03-29 08:54:52.773 1600 FEE 448202 1773 \N \N 6155658 2025-03-29 08:54:52.773 2025-03-29 08:54:52.773 14400 TIP 448202 11328 \N \N 6158944 2025-03-29 15:06:34.13 2025-03-29 15:06:34.13 14400 TIP 448779 1394 \N \N 6158963 2025-03-29 15:09:01.378 2025-03-29 15:09:01.378 2100 FEE 448591 9366 \N \N 6158964 2025-03-29 15:09:01.378 2025-03-29 15:09:01.378 18900 TIP 448591 19905 \N \N 6158995 2025-03-29 15:14:49.122 2025-03-29 15:14:49.122 1000 FEE 448798 16432 \N \N 6158996 2025-03-29 15:14:56.608 2025-03-29 15:14:56.608 2100 FEE 448035 705 \N \N 6158997 2025-03-29 15:14:56.608 2025-03-29 15:14:56.608 18900 TIP 448035 18393 \N \N 6159023 2025-03-29 15:18:52.356 2025-03-29 15:18:52.356 2500 FEE 448729 1044 \N \N 6159024 2025-03-29 15:18:52.356 2025-03-29 15:18:52.356 22500 TIP 448729 5069 \N \N 6159051 2025-03-29 15:26:03.269 2025-03-29 15:26:03.269 1000 POLL 448349 7587 \N \N 6159088 2025-03-29 15:30:18.018 2025-03-29 15:30:18.018 6400 FEE 448015 8416 \N \N 6159089 2025-03-29 15:30:18.018 2025-03-29 15:30:18.018 57600 TIP 448015 4570 \N \N 6159137 2025-03-29 15:39:10.811 2025-03-29 15:39:10.811 7700 FEE 448691 20657 \N \N 6159138 2025-03-29 15:39:10.811 2025-03-29 15:39:10.811 69300 TIP 448691 671 \N \N 6159146 2025-03-29 15:39:37.588 2025-03-29 15:39:37.588 100 FEE 448786 2232 \N \N 6159147 2025-03-29 15:39:37.588 2025-03-29 15:39:37.588 900 TIP 448786 18618 \N \N 6159188 2025-03-29 15:50:12.174 2025-03-29 15:50:12.174 1900 FEE 448820 19777 \N \N 6159189 2025-03-29 15:50:12.174 2025-03-29 15:50:12.174 17100 TIP 448820 1424 \N \N 6040905 2025-03-19 23:34:18.46 2025-03-19 23:34:18.46 0 FEE 435947 4973 \N \N 6040952 2025-03-19 23:55:39.075 2025-03-19 23:55:39.075 500 FEE 435657 12245 \N \N 6040953 2025-03-19 23:55:39.075 2025-03-19 23:55:39.075 4500 TIP 435657 13399 \N \N 6040984 2025-03-20 00:06:11.051 2025-03-20 00:06:11.051 10100 FEE 435944 16939 \N \N 6040985 2025-03-20 00:06:11.051 2025-03-20 00:06:11.051 90900 TIP 435944 633 \N \N 6040991 2025-03-20 00:11:07.086 2025-03-20 00:11:07.086 2100 FEE 435935 2942 \N \N 6040992 2025-03-20 00:11:07.086 2025-03-20 00:11:07.086 18900 TIP 435935 18232 \N \N 6041014 2025-03-20 00:15:04.032 2025-03-20 00:15:04.032 1000 FEE 435741 21444 \N \N 6041015 2025-03-20 00:15:04.032 2025-03-20 00:15:04.032 9000 TIP 435741 14295 \N \N 6041018 2025-03-20 00:15:05.8 2025-03-20 00:15:05.8 1000 FEE 435688 5806 \N \N 6041019 2025-03-20 00:15:05.8 2025-03-20 00:15:05.8 9000 TIP 435688 14959 \N \N 6041024 2025-03-20 00:15:08.146 2025-03-20 00:15:08.146 1000 FEE 435680 16717 \N \N 6041025 2025-03-20 00:15:08.146 2025-03-20 00:15:08.146 9000 TIP 435680 12870 \N \N 6041028 2025-03-20 00:15:09.298 2025-03-20 00:15:09.298 1000 FEE 435770 8535 \N \N 6041029 2025-03-20 00:15:09.298 2025-03-20 00:15:09.298 9000 TIP 435770 9 \N \N 6041039 2025-03-20 00:15:13.862 2025-03-20 00:15:13.862 1000 FEE 435959 20776 \N \N 6041040 2025-03-20 00:15:13.862 2025-03-20 00:15:13.862 9000 TIP 435959 8870 \N \N 6041056 2025-03-20 00:18:00.346 2025-03-20 00:18:00.346 1100 FEE 435905 10586 \N \N 6041057 2025-03-20 00:18:00.346 2025-03-20 00:18:00.346 9900 TIP 435905 13217 \N \N 6041077 2025-03-20 00:20:18.327 2025-03-20 00:20:18.327 1000 FEE 435378 14271 \N \N 6041078 2025-03-20 00:20:18.327 2025-03-20 00:20:18.327 9000 TIP 435378 15139 \N \N 6041089 2025-03-20 00:20:23.494 2025-03-20 00:20:23.494 1000 FEE 435439 16858 \N \N 6041090 2025-03-20 00:20:23.494 2025-03-20 00:20:23.494 9000 TIP 435439 20922 \N \N 6041117 2025-03-20 00:20:36.199 2025-03-20 00:20:36.199 1000 FEE 435945 18351 \N \N 6041118 2025-03-20 00:20:36.199 2025-03-20 00:20:36.199 9000 TIP 435945 15544 \N \N 6041125 2025-03-20 00:20:46.282 2025-03-20 00:20:46.282 1000 FEE 435217 2773 \N \N 6041126 2025-03-20 00:20:46.282 2025-03-20 00:20:46.282 9000 TIP 435217 21412 \N \N 6041127 2025-03-20 00:20:50.128 2025-03-20 00:20:50.128 1000 FEE 435377 14552 \N \N 6041128 2025-03-20 00:20:50.128 2025-03-20 00:20:50.128 9000 TIP 435377 20120 \N \N 6041137 2025-03-20 00:20:57.337 2025-03-20 00:20:57.337 1000 FEE 435346 6653 \N \N 6041138 2025-03-20 00:20:57.337 2025-03-20 00:20:57.337 9000 TIP 435346 21271 \N \N 6041148 2025-03-20 00:21:18.159 2025-03-20 00:21:18.159 1000 FEE 434791 10311 \N \N 6041149 2025-03-20 00:21:18.159 2025-03-20 00:21:18.159 9000 TIP 434791 1003 \N \N 6041152 2025-03-20 00:21:23.163 2025-03-20 00:21:23.163 1000 FEE 435314 1817 \N \N 6041153 2025-03-20 00:21:23.163 2025-03-20 00:21:23.163 9000 TIP 435314 9494 \N \N 6041215 2025-03-20 00:32:01.077 2025-03-20 00:32:01.077 50000 FEE 435968 12188 \N \N 6041227 2025-03-20 00:39:06.052 2025-03-20 00:39:06.052 1000 FEE 435909 795 \N \N 6041228 2025-03-20 00:39:06.052 2025-03-20 00:39:06.052 9000 TIP 435909 18177 \N \N 6041258 2025-03-20 00:48:12.959 2025-03-20 00:48:12.959 1000 FEE 435977 10063 \N \N 6041265 2025-03-20 00:51:07.598 2025-03-20 00:51:07.598 1000 FEE 435979 16124 \N \N 6041303 2025-03-20 01:02:19.753 2025-03-20 01:02:19.753 10000 FEE 435741 10690 \N \N 6041304 2025-03-20 01:02:19.753 2025-03-20 01:02:19.753 90000 TIP 435741 19570 \N \N 6041314 2025-03-20 01:04:56.544 2025-03-20 01:04:56.544 10000 FEE 435847 12490 \N \N 6041315 2025-03-20 01:04:56.544 2025-03-20 01:04:56.544 90000 TIP 435847 21405 \N \N 6041331 2025-03-20 01:08:44.29 2025-03-20 01:08:44.29 0 FEE 435993 20490 \N \N 6041349 2025-03-20 01:14:42.611 2025-03-20 01:14:42.611 15000 FEE 435999 13921 \N \N 6041358 2025-03-20 01:20:22.248 2025-03-20 01:20:22.248 0 FEE 436001 629 \N \N 6041362 2025-03-20 01:22:09.911 2025-03-20 01:22:09.911 1000 FEE 436003 701 \N \N 6041372 2025-03-20 01:25:43.132 2025-03-20 01:25:43.132 21000 FEE 436007 20337 \N \N 6041391 2025-03-20 01:33:09.895 2025-03-20 01:33:09.895 2500 FEE 435907 21421 \N \N 6041392 2025-03-20 01:33:09.895 2025-03-20 01:33:09.895 22500 TIP 435907 9242 \N \N 6041395 2025-03-20 01:34:30.123 2025-03-20 01:34:30.123 100 FEE 435908 20881 \N \N 6041396 2025-03-20 01:34:30.123 2025-03-20 01:34:30.123 900 TIP 435908 5597 \N \N 6041403 2025-03-20 01:34:31.648 2025-03-20 01:34:31.648 100 FEE 435908 19570 \N \N 6041404 2025-03-20 01:34:31.648 2025-03-20 01:34:31.648 900 TIP 435908 14255 \N \N 6041405 2025-03-20 01:34:33.971 2025-03-20 01:34:33.971 100 FEE 435907 770 \N \N 6041406 2025-03-20 01:34:33.971 2025-03-20 01:34:33.971 900 TIP 435907 9833 \N \N 6041407 2025-03-20 01:34:34.321 2025-03-20 01:34:34.321 100 FEE 435907 11873 \N \N 6041408 2025-03-20 01:34:34.321 2025-03-20 01:34:34.321 900 TIP 435907 16660 \N \N 6041415 2025-03-20 01:35:02.335 2025-03-20 01:35:02.335 1000000 FEE 435944 5703 \N \N 6041416 2025-03-20 01:35:02.335 2025-03-20 01:35:02.335 9000000 TIP 435944 17221 \N \N 6041442 2025-03-20 01:39:25.751 2025-03-20 01:39:25.751 1000 FEE 436014 12072 \N \N 6041446 2025-03-20 01:40:26.499 2025-03-20 01:40:26.499 15000 FEE 436015 21631 \N \N 6041458 2025-03-20 01:44:54.994 2025-03-20 01:44:54.994 0 FEE 436014 16447 \N \N 6041466 2025-03-20 01:45:16.692 2025-03-20 01:45:16.692 10000 FEE 436017 1825 \N \N 6041541 2025-03-20 02:00:08.616 2025-03-20 02:00:08.616 0 FEE 436021 1751 \N \N 6041577 2025-03-20 02:07:09.985 2025-03-20 02:07:09.985 4000 FEE 435812 7983 \N \N 6041578 2025-03-20 02:07:09.985 2025-03-20 02:07:09.985 36000 TIP 435812 21172 \N \N 6041598 2025-03-20 02:08:39.179 2025-03-20 02:08:39.179 21000 FEE 436032 1745 \N \N 6041626 2025-03-20 02:20:20.734 2025-03-20 02:20:20.734 1100 FEE 436007 14774 \N \N 6041627 2025-03-20 02:20:20.734 2025-03-20 02:20:20.734 9900 TIP 436007 635 \N \N 6041628 2025-03-20 02:20:52.662 2025-03-20 02:20:52.662 2000 FEE 436032 9611 \N \N 6041629 2025-03-20 02:20:52.662 2025-03-20 02:20:52.662 18000 TIP 436032 16042 \N \N 6041635 2025-03-20 02:21:15.036 2025-03-20 02:21:15.036 1000 FEE 436030 7960 \N \N 6041636 2025-03-20 02:21:15.036 2025-03-20 02:21:15.036 9000 TIP 436030 4225 \N \N 6041660 2025-03-20 02:22:54.754 2025-03-20 02:22:54.754 2100 FEE 436010 13575 \N \N 6041661 2025-03-20 02:22:54.754 2025-03-20 02:22:54.754 18900 TIP 436010 20479 \N \N 6041680 2025-03-20 02:24:15.006 2025-03-20 02:24:15.006 1000 FEE 435922 21262 \N \N 6041681 2025-03-20 02:24:15.006 2025-03-20 02:24:15.006 9000 TIP 435922 9496 \N \N 6041722 2025-03-20 02:36:05.078 2025-03-20 02:36:05.078 10000 FEE 433721 9184 \N \N 6041723 2025-03-20 02:36:05.078 2025-03-20 02:36:05.078 90000 TIP 433721 1092 \N \N 6041737 2025-03-20 02:39:04.969 2025-03-20 02:39:04.969 0 FEE 436052 9348 \N \N 6041741 2025-03-20 02:39:26.134 2025-03-20 02:39:26.134 4000 FEE 436052 13399 \N \N 6041742 2025-03-20 02:39:26.134 2025-03-20 02:39:26.134 36000 TIP 436052 19576 \N \N 6041744 2025-03-20 02:39:36.459 2025-03-20 02:39:36.459 1000 FEE 436055 10519 \N \N 6041754 2025-03-20 02:41:25.577 2025-03-20 02:41:25.577 21000 FEE 436057 19581 \N \N 6041759 2025-03-20 02:42:29.652 2025-03-20 02:42:29.652 1000 FEE 436059 651 \N \N 6041777 2025-03-20 02:48:04.387 2025-03-20 02:48:04.387 1000 FEE 436065 18351 \N \N 6041785 2025-03-20 02:49:19.354 2025-03-20 02:49:19.354 100 FEE 436030 16598 \N \N 6155354 2025-03-29 08:35:16.393 2025-03-29 08:35:16.393 1000 FEE 448381 2196 \N \N 6155375 2025-03-29 08:37:03.537 2025-03-29 08:37:03.537 2100 FEE 448343 5069 \N \N 6155376 2025-03-29 08:37:03.537 2025-03-29 08:37:03.537 18900 TIP 448343 1490 \N \N 6155396 2025-03-29 08:38:39.998 2025-03-29 08:38:39.998 1000 FEE 448387 1564 \N \N 6155410 2025-03-29 08:39:04.702 2025-03-29 08:39:04.702 1700 FEE 448385 10311 \N \N 6155411 2025-03-29 08:39:04.702 2025-03-29 08:39:04.702 15300 TIP 448385 5003 \N \N 6155473 2025-03-29 08:41:39.637 2025-03-29 08:41:39.637 2100 FEE 448283 909 \N \N 6155474 2025-03-29 08:41:39.637 2025-03-29 08:41:39.637 18900 TIP 448283 18116 \N \N 6155487 2025-03-29 08:42:18.81 2025-03-29 08:42:18.81 2100 FEE 448211 2757 \N \N 6155488 2025-03-29 08:42:18.81 2025-03-29 08:42:18.81 18900 TIP 448211 2322 \N \N 6155558 2025-03-29 08:44:45.097 2025-03-29 08:44:45.097 2100 FEE 444806 21803 \N \N 6155559 2025-03-29 08:44:45.097 2025-03-29 08:44:45.097 18900 TIP 444806 9107 \N \N 6155560 2025-03-29 08:44:45.802 2025-03-29 08:44:45.802 2100 FEE 444866 19796 \N \N 6112011 2025-03-26 04:00:06.501 2025-03-26 04:00:06.501 10000 FEE 443011 20291 \N \N 6112012 2025-03-26 04:00:06.501 2025-03-26 04:00:06.501 90000 TIP 443011 11498 \N \N 6112017 2025-03-26 04:01:14.798 2025-03-26 04:01:14.798 3000 FEE 442931 19189 \N \N 6112018 2025-03-26 04:01:14.798 2025-03-26 04:01:14.798 27000 TIP 442931 1286 \N \N 6112022 2025-03-26 04:02:09.678 2025-03-26 04:02:09.678 1000 FEE 443420 8985 \N \N 6112040 2025-03-26 04:07:21.9 2025-03-26 04:07:21.9 1000 FEE 443426 959 \N \N 6112050 2025-03-26 04:08:25.701 2025-03-26 04:08:25.701 1000 FEE 443429 673 \N \N 6112056 2025-03-26 04:09:16.312 2025-03-26 04:09:16.312 1000 FEE 443410 11992 \N \N 6112057 2025-03-26 04:09:16.312 2025-03-26 04:09:16.312 9000 TIP 443410 2722 \N \N 6112062 2025-03-26 04:09:53.975 2025-03-26 04:09:53.975 2100 FEE 443372 19581 \N \N 6112063 2025-03-26 04:09:53.975 2025-03-26 04:09:53.975 18900 TIP 443372 7746 \N \N 6112066 2025-03-26 04:10:01.197 2025-03-26 04:10:01.197 1000 FEE 443351 11999 \N \N 6112067 2025-03-26 04:10:01.197 2025-03-26 04:10:01.197 9000 TIP 443351 5497 \N \N 6112082 2025-03-26 04:11:25.574 2025-03-26 04:11:25.574 1000 FEE 443433 14370 \N \N 6112092 2025-03-26 04:12:05.064 2025-03-26 04:12:05.064 5000 FEE 443338 20381 \N \N 6112093 2025-03-26 04:12:05.064 2025-03-26 04:12:05.064 45000 TIP 443338 993 \N \N 6112112 2025-03-26 04:13:23.792 2025-03-26 04:13:23.792 900 FEE 443122 10698 \N \N 6112113 2025-03-26 04:13:23.792 2025-03-26 04:13:23.792 8100 TIP 443122 9356 \N \N 6112116 2025-03-26 04:13:27.875 2025-03-26 04:13:27.875 90000 FEE 443122 21825 \N \N 6112117 2025-03-26 04:13:27.875 2025-03-26 04:13:27.875 810000 TIP 443122 5522 \N \N 6112156 2025-03-26 04:16:19.285 2025-03-26 04:16:19.285 900 FEE 443160 20657 \N \N 6112157 2025-03-26 04:16:19.285 2025-03-26 04:16:19.285 8100 TIP 443160 2293 \N \N 6112158 2025-03-26 04:16:29.197 2025-03-26 04:16:29.197 1000 FEE 443440 21058 \N \N 6112159 2025-03-26 04:16:38.542 2025-03-26 04:16:38.542 10000 FEE 443038 21620 \N \N 6112160 2025-03-26 04:16:38.542 2025-03-26 04:16:38.542 90000 TIP 443038 732 \N \N 6112179 2025-03-26 04:19:10.474 2025-03-26 04:19:10.474 1000 FEE 443330 19888 \N \N 6112180 2025-03-26 04:19:10.474 2025-03-26 04:19:10.474 9000 TIP 443330 6687 \N \N 6112232 2025-03-26 04:25:21.767 2025-03-26 04:25:21.767 1000 FEE 443322 9275 \N \N 6112233 2025-03-26 04:25:21.767 2025-03-26 04:25:21.767 9000 TIP 443322 2010 \N \N 6112234 2025-03-26 04:25:22.648 2025-03-26 04:25:22.648 1000 FEE 443456 1615 \N \N 6112239 2025-03-26 04:26:01.855 2025-03-26 04:26:01.855 1000 POLL 442751 20636 \N \N 6112297 2025-03-26 04:33:04.566 2025-03-26 04:33:04.566 1000 FEE 442551 21148 \N \N 6112298 2025-03-26 04:33:04.566 2025-03-26 04:33:04.566 9000 TIP 442551 14169 \N \N 6112306 2025-03-26 04:34:38.785 2025-03-26 04:34:38.785 5700 FEE 443461 15337 \N \N 6112307 2025-03-26 04:34:38.785 2025-03-26 04:34:38.785 51300 TIP 443461 14280 \N \N 6112311 2025-03-26 04:35:28.274 2025-03-26 04:35:28.274 5700 FEE 443197 1602 \N \N 6112312 2025-03-26 04:35:28.274 2025-03-26 04:35:28.274 51300 TIP 443197 10821 \N \N 6112347 2025-03-26 04:40:22.755 2025-03-26 04:40:22.755 1000 FEE 443470 10433 \N \N 6112357 2025-03-26 04:41:21.948 2025-03-26 04:41:21.948 2100 FEE 443334 8570 \N \N 6112358 2025-03-26 04:41:21.948 2025-03-26 04:41:21.948 18900 TIP 443334 20436 \N \N 6112371 2025-03-26 04:42:12.515 2025-03-26 04:42:12.515 1000 FEE 443473 16562 \N \N 6112381 2025-03-26 04:44:16.558 2025-03-26 04:44:16.558 5700 FEE 443463 21334 \N \N 6112382 2025-03-26 04:44:16.558 2025-03-26 04:44:16.558 51300 TIP 443463 12566 \N \N 6112388 2025-03-26 04:45:17.539 2025-03-26 04:45:17.539 1000 FEE 443474 20970 \N \N 6112395 2025-03-26 04:45:30.037 2025-03-26 04:45:30.037 1000 FEE 442904 21494 \N \N 6112396 2025-03-26 04:45:30.037 2025-03-26 04:45:30.037 9000 TIP 442904 628 \N \N 6112399 2025-03-26 04:45:30.551 2025-03-26 04:45:30.551 1000 FEE 442904 21063 \N \N 6158954 2025-03-29 15:08:05.045 2025-03-29 15:08:05.045 6900 FEE 448778 2206 \N \N 6158955 2025-03-29 15:08:05.045 2025-03-29 15:08:05.045 62100 TIP 448778 21578 \N \N 6158957 2025-03-29 15:08:39.909 2025-03-29 15:08:39.909 2100 FEE 448751 20778 \N \N 6158958 2025-03-29 15:08:39.909 2025-03-29 15:08:39.909 18900 TIP 448751 5776 \N \N 6158988 2025-03-29 15:11:47.058 2025-03-29 15:11:47.058 10000 FEE 448796 686 \N \N 6158998 2025-03-29 15:14:56.755 2025-03-29 15:14:56.755 2100 FEE 448035 4064 \N \N 6158999 2025-03-29 15:14:56.755 2025-03-29 15:14:56.755 18900 TIP 448035 1802 \N \N 6159011 2025-03-29 15:16:29.5 2025-03-29 15:16:29.5 900 FEE 448349 12483 \N \N 6159012 2025-03-29 15:16:29.5 2025-03-29 15:16:29.5 8100 TIP 448349 17519 \N \N 6159013 2025-03-29 15:16:29.757 2025-03-29 15:16:29.757 900 FEE 448349 21599 \N \N 6159014 2025-03-29 15:16:29.757 2025-03-29 15:16:29.757 8100 TIP 448349 14295 \N \N 6159058 2025-03-29 15:27:02.214 2025-03-29 15:27:02.214 100 FEE 448805 14552 \N \N 6159059 2025-03-29 15:27:02.214 2025-03-29 15:27:02.214 900 TIP 448805 20660 \N \N 6159080 2025-03-29 15:29:08.714 2025-03-29 15:29:08.714 7700 FEE 448810 17696 \N \N 6159081 2025-03-29 15:29:08.714 2025-03-29 15:29:08.714 69300 TIP 448810 929 \N \N 6159112 2025-03-29 15:36:27.002 2025-03-29 15:36:27.002 300 FEE 448785 9099 \N \N 6159113 2025-03-29 15:36:27.002 2025-03-29 15:36:27.002 2700 TIP 448785 18731 \N \N 6159121 2025-03-29 15:38:34.958 2025-03-29 15:38:34.958 9000 FEE 448802 16543 \N \N 6159122 2025-03-29 15:38:34.958 2025-03-29 15:38:34.958 81000 TIP 448802 21334 \N \N 6159141 2025-03-29 15:39:11.668 2025-03-29 15:39:11.668 7700 FEE 448691 14385 \N \N 6159142 2025-03-29 15:39:11.668 2025-03-29 15:39:11.668 69300 TIP 448691 854 \N \N 6159159 2025-03-29 15:42:40.071 2025-03-29 15:42:40.071 10000 FEE 448817 9099 \N \N 6159160 2025-03-29 15:42:40.071 2025-03-29 15:42:40.071 90000 TIP 448817 16126 \N \N 6159191 2025-03-29 15:51:10.362 2025-03-29 15:51:10.362 1000 FEE 448826 1652 \N \N 6159195 2025-03-29 15:52:07.587 2025-03-29 15:52:07.587 1000 FEE 448827 1761 \N \N 6159197 2025-03-29 15:52:47.617 2025-03-29 15:52:47.617 1000 POLL 448029 21520 \N \N 6159249 2025-03-29 15:58:18.706 2025-03-29 15:58:18.706 2100 FEE 448733 10818 \N \N 6159250 2025-03-29 15:58:18.706 2025-03-29 15:58:18.706 18900 TIP 448733 9611 \N \N 6159261 2025-03-29 15:58:26.549 2025-03-29 15:58:26.549 1700 FEE 448802 1198 \N \N 6041035 2025-03-20 00:15:11.397 2025-03-20 00:15:11.397 9000 TIP 435902 21710 \N \N 6041083 2025-03-20 00:20:21.132 2025-03-20 00:20:21.132 1000 FEE 435514 15326 \N \N 6041084 2025-03-20 00:20:21.132 2025-03-20 00:20:21.132 9000 TIP 435514 19668 \N \N 6041111 2025-03-20 00:20:34.813 2025-03-20 00:20:34.813 1000 FEE 435597 2460 \N \N 6041112 2025-03-20 00:20:34.813 2025-03-20 00:20:34.813 9000 TIP 435597 706 \N \N 6041119 2025-03-20 00:20:42.267 2025-03-20 00:20:42.267 1000 FEE 435639 21803 \N \N 6041120 2025-03-20 00:20:42.267 2025-03-20 00:20:42.267 9000 TIP 435639 11561 \N \N 6041129 2025-03-20 00:20:51.078 2025-03-20 00:20:51.078 1000 FEE 435561 15337 \N \N 6041130 2025-03-20 00:20:51.078 2025-03-20 00:20:51.078 9000 TIP 435561 1237 \N \N 6041139 2025-03-20 00:20:59.329 2025-03-20 00:20:59.329 1000 FEE 435217 989 \N \N 6041140 2025-03-20 00:20:59.329 2025-03-20 00:20:59.329 9000 TIP 435217 20597 \N \N 6041158 2025-03-20 00:21:36.085 2025-03-20 00:21:36.085 1000 FEE 435595 13406 \N \N 6041159 2025-03-20 00:21:36.085 2025-03-20 00:21:36.085 9000 TIP 435595 20812 \N \N 6041162 2025-03-20 00:21:38.12 2025-03-20 00:21:38.12 1000 FEE 435421 1488 \N \N 6041163 2025-03-20 00:21:38.12 2025-03-20 00:21:38.12 9000 TIP 435421 18630 \N \N 6041174 2025-03-20 00:21:42.424 2025-03-20 00:21:42.424 1000 FEE 435367 6555 \N \N 6041175 2025-03-20 00:21:42.424 2025-03-20 00:21:42.424 9000 TIP 435367 21398 \N \N 6041176 2025-03-20 00:21:43.06 2025-03-20 00:21:43.06 1000 FEE 435398 623 \N \N 6041177 2025-03-20 00:21:43.06 2025-03-20 00:21:43.06 9000 TIP 435398 16097 \N \N 6041180 2025-03-20 00:21:45.907 2025-03-20 00:21:45.907 1000 FEE 435018 21262 \N \N 6041181 2025-03-20 00:21:45.907 2025-03-20 00:21:45.907 9000 TIP 435018 19071 \N \N 6041191 2025-03-20 00:22:51.481 2025-03-20 00:22:51.481 1000 FEE 435964 1773 \N \N 6041201 2025-03-20 00:26:46.781 2025-03-20 00:26:46.781 2100 FEE 435912 17838 \N \N 6041202 2025-03-20 00:26:46.781 2025-03-20 00:26:46.781 18900 TIP 435912 1326 \N \N 6041203 2025-03-20 00:26:52.877 2025-03-20 00:26:52.877 0 FEE 435966 2620 \N \N 6041231 2025-03-20 00:39:31.86 2025-03-20 00:39:31.86 10000 FEE 435950 16950 \N \N 6041232 2025-03-20 00:39:31.86 2025-03-20 00:39:31.86 90000 TIP 435950 16847 \N \N 6041251 2025-03-20 00:46:05.929 2025-03-20 00:46:05.929 0 FEE 435974 20509 \N \N 6041259 2025-03-20 00:48:51.079 2025-03-20 00:48:51.079 1000 FEE 435978 9982 \N \N 6041262 2025-03-20 00:50:37.1 2025-03-20 00:50:37.1 5000 FEE 435678 9084 \N \N 6041263 2025-03-20 00:50:37.1 2025-03-20 00:50:37.1 45000 TIP 435678 8080 \N \N 6041267 2025-03-20 00:51:13.976 2025-03-20 00:51:13.976 2100 FEE 435847 17984 \N \N 6041268 2025-03-20 00:51:13.976 2025-03-20 00:51:13.976 18900 TIP 435847 1983 \N \N 6041292 2025-03-20 00:58:29.438 2025-03-20 00:58:29.438 2100 FEE 435944 7916 \N \N 6041293 2025-03-20 00:58:29.438 2025-03-20 00:58:29.438 18900 TIP 435944 3717 \N \N 6041308 2025-03-20 01:03:59.622 2025-03-20 01:03:59.622 150000 FEE 435988 7185 \N \N 6041316 2025-03-20 01:04:56.79 2025-03-20 01:04:56.79 10000 FEE 435847 18630 \N \N 6041317 2025-03-20 01:04:56.79 2025-03-20 01:04:56.79 90000 TIP 435847 20023 \N \N 6041330 2025-03-20 01:08:36.771 2025-03-20 01:08:36.771 1000 FEE 435993 621 \N \N 6041338 2025-03-20 01:10:59.588 2025-03-20 01:10:59.588 1000 FEE 435996 11018 \N \N 6041380 2025-03-20 01:31:35.307 2025-03-20 01:31:35.307 10000 FEE 436008 17976 \N \N 6041423 2025-03-20 01:37:45.579 2025-03-20 01:37:45.579 200 FEE 436008 19980 \N \N 6041424 2025-03-20 01:37:45.579 2025-03-20 01:37:45.579 1800 TIP 436008 21422 \N \N 6041433 2025-03-20 01:38:48.568 2025-03-20 01:38:48.568 1000 FEE 436012 8326 \N \N 6041471 2025-03-20 01:46:23.798 2025-03-20 01:46:23.798 2100 FEE 397192 6148 \N \N 6041472 2025-03-20 01:46:23.798 2025-03-20 01:46:23.798 18900 TIP 397192 17094 \N \N 6041482 2025-03-20 01:46:54.86 2025-03-20 01:46:54.86 1000 FEE 436019 11648 \N \N 6041495 2025-03-20 01:48:47.693 2025-03-20 01:48:47.693 2100 FEE 418294 618 \N \N 6041496 2025-03-20 01:48:47.693 2025-03-20 01:48:47.693 18900 TIP 418294 2789 \N \N 6041514 2025-03-20 01:53:05.059 2025-03-20 01:53:05.059 1000 FEE 436021 12261 \N \N 6041516 2025-03-20 01:53:21.813 2025-03-20 01:53:21.813 0 FEE 436021 21791 \N \N 6041521 2025-03-20 01:53:49.932 2025-03-20 01:53:49.932 200 FEE 436014 21494 \N \N 6041522 2025-03-20 01:53:49.932 2025-03-20 01:53:49.932 1800 TIP 436014 730 \N \N 6041547 2025-03-20 02:02:59.219 2025-03-20 02:02:59.219 0 FEE 436021 12507 \N \N 6041573 2025-03-20 02:07:05.8 2025-03-20 02:07:05.8 4000 FEE 435944 19943 \N \N 6041574 2025-03-20 02:07:05.8 2025-03-20 02:07:05.8 36000 TIP 435944 1261 \N \N 6041585 2025-03-20 02:08:09.446 2025-03-20 02:08:09.446 2100 FEE 435847 21114 \N \N 6041586 2025-03-20 02:08:09.446 2025-03-20 02:08:09.446 18900 TIP 435847 10493 \N \N 6041602 2025-03-20 02:09:22.227 2025-03-20 02:09:22.227 1000 FEE 436033 14607 \N \N 6041632 2025-03-20 02:21:10.077 2025-03-20 02:21:10.077 1100 FEE 435988 899 \N \N 6041633 2025-03-20 02:21:10.077 2025-03-20 02:21:10.077 9900 TIP 435988 2774 \N \N 6041639 2025-03-20 02:21:24.37 2025-03-20 02:21:24.37 1000 FEE 436029 1162 \N \N 6041640 2025-03-20 02:21:24.37 2025-03-20 02:21:24.37 9000 TIP 436029 831 \N \N 6041648 2025-03-20 02:22:28.403 2025-03-20 02:22:28.403 2100 FEE 436022 20969 \N \N 6041649 2025-03-20 02:22:28.403 2025-03-20 02:22:28.403 18900 TIP 436022 5978 \N \N 6041668 2025-03-20 02:23:16.593 2025-03-20 02:23:16.593 1600 FEE 435907 937 \N \N 6041669 2025-03-20 02:23:16.593 2025-03-20 02:23:16.593 14400 TIP 435907 9820 \N \N 6041674 2025-03-20 02:24:05.571 2025-03-20 02:24:05.571 1000 FEE 436038 21398 \N \N 6041699 2025-03-20 02:27:29.604 2025-03-20 02:27:29.604 1000 FEE 436042 12566 \N \N 6041700 2025-03-20 02:27:55.714 2025-03-20 02:27:55.714 1000 FEE 436043 17984 \N \N 6041708 2025-03-20 02:29:31.022 2025-03-20 02:29:31.022 10000 FEE 436047 2674 \N \N 6041735 2025-03-20 02:38:32.188 2025-03-20 02:38:32.188 0 FEE 436052 2492 \N \N 6041775 2025-03-20 02:47:47.03 2025-03-20 02:47:47.03 1100 FEE 436060 1261 \N \N 6041776 2025-03-20 02:47:47.03 2025-03-20 02:47:47.03 9900 TIP 436060 1652 \N \N 6041778 2025-03-20 02:48:12.591 2025-03-20 02:48:12.591 0 FEE 436065 20059 \N \N 6041818 2025-03-20 02:50:27.216 2025-03-20 02:50:27.216 800 FEE 435883 2213 \N \N 6041819 2025-03-20 02:50:27.216 2025-03-20 02:50:27.216 7200 TIP 435883 21408 \N \N 6041834 2025-03-20 02:51:53.827 2025-03-20 02:51:53.827 0 FEE 436064 19826 \N \N 6041845 2025-03-20 02:52:51.147 2025-03-20 02:52:51.147 2100 FEE 436053 18011 \N \N 6041846 2025-03-20 02:52:51.147 2025-03-20 02:52:51.147 18900 TIP 436053 1519 \N \N 6041847 2025-03-20 02:52:52.79 2025-03-20 02:52:52.79 2100 FEE 436042 13763 \N \N 6041848 2025-03-20 02:52:52.79 2025-03-20 02:52:52.79 18900 TIP 436042 18901 \N \N 6041865 2025-03-20 02:53:53.605 2025-03-20 02:53:53.605 1000 FEE 436071 16149 \N \N 6041872 2025-03-20 02:54:21.607 2025-03-20 02:54:21.607 0 FEE 436065 16267 \N \N 6041873 2025-03-20 02:54:25.917 2025-03-20 02:54:25.917 800 FEE 435914 11443 \N \N 6041874 2025-03-20 02:54:25.917 2025-03-20 02:54:25.917 7200 TIP 435914 2748 \N \N 6041884 2025-03-20 02:55:35.752 2025-03-20 02:55:35.752 2100 FEE 436032 4166 \N \N 6041885 2025-03-20 02:55:35.752 2025-03-20 02:55:35.752 18900 TIP 436032 4043 \N \N 6041886 2025-03-20 02:55:37.246 2025-03-20 02:55:37.246 2100 FEE 436023 18271 \N \N 6041887 2025-03-20 02:55:37.246 2025-03-20 02:55:37.246 18900 TIP 436023 1009 \N \N 6041905 2025-03-20 02:56:22.937 2025-03-20 02:56:22.937 2100 FEE 435988 18557 \N \N 6041906 2025-03-20 02:56:22.937 2025-03-20 02:56:22.937 18900 TIP 435988 16212 \N \N 6041918 2025-03-20 02:57:42.995 2025-03-20 02:57:42.995 1000 FEE 435944 5175 \N \N 6041919 2025-03-20 02:57:42.995 2025-03-20 02:57:42.995 9000 TIP 435944 1145 \N \N 6041931 2025-03-20 02:58:15.972 2025-03-20 02:58:15.972 4000 FEE 436064 11862 \N \N 6041932 2025-03-20 02:58:15.972 2025-03-20 02:58:15.972 36000 TIP 436064 20220 \N \N 6041951 2025-03-20 03:00:56.992 2025-03-20 03:00:56.992 1000 FEE 436077 2609 \N \N 6041959 2025-03-20 03:01:45.119 2025-03-20 03:01:45.119 100 FEE 435999 10554 \N \N 6041960 2025-03-20 03:01:45.119 2025-03-20 03:01:45.119 900 TIP 435999 1740 \N \N 6041972 2025-03-20 03:03:57.684 2025-03-20 03:03:57.684 200 FEE 436076 5557 \N \N 6143823 2025-03-28 10:47:52.75 2025-03-28 10:47:52.75 9000 TIP 447094 11450 \N \N 6143843 2025-03-28 10:53:13.996 2025-03-28 10:53:13.996 1000 FEE 447211 18241 \N \N 6143857 2025-03-28 10:55:13.42 2025-03-28 10:55:13.42 5000 FEE 447109 17522 \N \N 6143858 2025-03-28 10:55:13.42 2025-03-28 10:55:13.42 45000 TIP 447109 20674 \N \N 6143861 2025-03-28 10:55:29.137 2025-03-28 10:55:29.137 300 FEE 447209 2285 \N \N 6143862 2025-03-28 10:55:29.137 2025-03-28 10:55:29.137 2700 TIP 447209 701 \N \N 6143917 2025-03-28 11:00:55.729 2025-03-28 11:00:55.729 1000 POLL 446942 1534 \N \N 6143932 2025-03-28 11:02:06.133 2025-03-28 11:02:06.133 7600 FEE 447221 621 \N \N 6143933 2025-03-28 11:02:06.133 2025-03-28 11:02:06.133 68400 TIP 447221 20956 \N \N 6143939 2025-03-28 11:02:34.373 2025-03-28 11:02:34.373 10000 FEE 447221 12965 \N \N 6143940 2025-03-28 11:02:34.373 2025-03-28 11:02:34.373 90000 TIP 447221 738 \N \N 6143944 2025-03-28 11:02:50.019 2025-03-28 11:02:50.019 2100 FEE 447197 1585 \N \N 6143945 2025-03-28 11:02:50.019 2025-03-28 11:02:50.019 18900 TIP 447197 900 \N \N 6143946 2025-03-28 11:02:50.558 2025-03-28 11:02:50.558 5000 FEE 447218 15488 \N \N 6143947 2025-03-28 11:02:50.558 2025-03-28 11:02:50.558 45000 TIP 447218 13361 \N \N 6143978 2025-03-28 11:05:01.217 2025-03-28 11:05:01.217 1700 FEE 447225 627 \N \N 6143979 2025-03-28 11:05:01.217 2025-03-28 11:05:01.217 15300 TIP 447225 8570 \N \N 6144001 2025-03-28 11:06:12.33 2025-03-28 11:06:12.33 0 FEE 447218 2203 \N \N 6144016 2025-03-28 11:06:58.051 2025-03-28 11:06:58.051 1000 FEE 447226 15556 \N \N 6144017 2025-03-28 11:06:58.051 2025-03-28 11:06:58.051 9000 TIP 447226 15463 \N \N 6144018 2025-03-28 11:06:58.276 2025-03-28 11:06:58.276 1000 FEE 447226 11885 \N \N 6144019 2025-03-28 11:06:58.276 2025-03-28 11:06:58.276 9000 TIP 447226 20619 \N \N 6144082 2025-03-28 11:11:18.44 2025-03-28 11:11:18.44 0 FEE 447235 15728 \N \N 6144084 2025-03-28 11:12:11.14 2025-03-28 11:12:11.14 1000 FEE 447237 825 \N \N 6144111 2025-03-28 11:15:20.016 2025-03-28 11:15:20.016 1000 FEE 447240 21072 \N \N 6144112 2025-03-28 11:15:40.374 2025-03-28 11:15:40.374 1000 POLL 446942 21131 \N \N 6144122 2025-03-28 11:16:30.899 2025-03-28 11:16:30.899 1000 FEE 447239 14941 \N \N 6144123 2025-03-28 11:16:30.899 2025-03-28 11:16:30.899 9000 TIP 447239 733 \N \N 6144126 2025-03-28 11:16:31.572 2025-03-28 11:16:31.572 1000 FEE 447239 20201 \N \N 6144127 2025-03-28 11:16:31.572 2025-03-28 11:16:31.572 9000 TIP 447239 1425 \N \N 6144133 2025-03-28 11:17:21.251 2025-03-28 11:17:21.251 1000 FEE 447242 16769 \N \N 6144135 2025-03-28 11:17:33.525 2025-03-28 11:17:33.525 1700 FEE 446880 1567 \N \N 6144136 2025-03-28 11:17:33.525 2025-03-28 11:17:33.525 15300 TIP 446880 12561 \N \N 6144158 2025-03-28 11:23:43.429 2025-03-28 11:23:43.429 1000 FEE 447243 20603 \N \N 6144201 2025-03-28 11:29:28.817 2025-03-28 11:29:28.817 1000 FEE 447163 1638 \N \N 6144202 2025-03-28 11:29:28.817 2025-03-28 11:29:28.817 9000 TIP 447163 628 \N \N 6144203 2025-03-28 11:29:39.976 2025-03-28 11:29:39.976 1000 FEE 446942 18529 \N \N 6144204 2025-03-28 11:29:39.976 2025-03-28 11:29:39.976 9000 TIP 446942 20881 \N \N 6144207 2025-03-28 11:30:03.725 2025-03-28 11:30:03.725 1000 FEE 447248 694 \N \N 6144223 2025-03-28 11:33:02.43 2025-03-28 11:33:02.43 0 FEE 447251 13987 \N \N 6144234 2025-03-28 11:36:07.861 2025-03-28 11:36:07.861 0 FEE 447258 3371 \N \N 6144253 2025-03-28 11:38:37.961 2025-03-28 11:38:37.961 100 FEE 447251 18678 \N \N 6144254 2025-03-28 11:38:37.961 2025-03-28 11:38:37.961 900 TIP 447251 14731 \N \N 6144272 2025-03-28 11:42:11.435 2025-03-28 11:42:11.435 2100 FEE 447241 7978 \N \N 6144273 2025-03-28 11:42:11.435 2025-03-28 11:42:11.435 18900 TIP 447241 21072 \N \N 6144277 2025-03-28 11:42:16.939 2025-03-28 11:42:16.939 1000 FEE 447262 11996 \N \N 6144278 2025-03-28 11:42:18.514 2025-03-28 11:42:18.514 2100 FEE 447257 13843 \N \N 6144279 2025-03-28 11:42:18.514 2025-03-28 11:42:18.514 18900 TIP 447257 13398 \N \N 6144286 2025-03-28 11:44:14.054 2025-03-28 11:44:14.054 500 FEE 446937 805 \N \N 6144287 2025-03-28 11:44:14.054 2025-03-28 11:44:14.054 4500 TIP 446937 14295 \N \N 6144312 2025-03-28 11:47:11.887 2025-03-28 11:47:11.887 7700 FEE 447200 2328 \N \N 6144313 2025-03-28 11:47:11.887 2025-03-28 11:47:11.887 69300 TIP 447200 6430 \N \N 6144338 2025-03-28 11:47:43.58 2025-03-28 11:47:43.58 0 FEE 447267 20562 \N \N 6144341 2025-03-28 11:48:04.959 2025-03-28 11:48:04.959 1000 FEE 447270 3396 \N \N 6144391 2025-03-28 11:51:16.362 2025-03-28 11:51:16.362 10000 FEE 447132 2402 \N \N 6144392 2025-03-28 11:51:16.362 2025-03-28 11:51:16.362 90000 TIP 447132 13169 \N \N 6144407 2025-03-28 11:54:43.749 2025-03-28 11:54:43.749 1000 FEE 447277 2437 \N \N 6144408 2025-03-28 11:54:43.749 2025-03-28 11:54:43.749 9000 TIP 447277 1006 \N \N 6144424 2025-03-28 12:00:05.523 2025-03-28 12:00:05.523 3000 FEE 447242 656 \N \N 6144425 2025-03-28 12:00:05.523 2025-03-28 12:00:05.523 27000 TIP 447242 618 \N \N 6144441 2025-03-28 12:02:05.521 2025-03-28 12:02:05.521 1000 FEE 447173 17838 \N \N 6144442 2025-03-28 12:02:05.521 2025-03-28 12:02:05.521 9000 TIP 447173 13365 \N \N 6144505 2025-03-28 12:06:49.185 2025-03-28 12:06:49.185 10000 FEE 447280 3392 \N \N 6144506 2025-03-28 12:06:49.185 2025-03-28 12:06:49.185 90000 TIP 447280 18956 \N \N 6144507 2025-03-28 12:06:53.892 2025-03-28 12:06:53.892 42000 FEE 447264 11454 \N \N 6144508 2025-03-28 12:06:53.892 2025-03-28 12:06:53.892 378000 TIP 447264 5728 \N \N 6144517 2025-03-28 12:07:30.279 2025-03-28 12:07:30.279 1000 FEE 447298 17212 \N \N 6144518 2025-03-28 12:07:35.546 2025-03-28 12:07:35.546 7600 FEE 447225 21539 \N \N 6144519 2025-03-28 12:07:35.546 2025-03-28 12:07:35.546 68400 TIP 447225 19446 \N \N 6144533 2025-03-28 12:09:05.775 2025-03-28 12:09:05.775 10000 FEE 447148 20913 \N \N 6144534 2025-03-28 12:09:05.775 2025-03-28 12:09:05.775 90000 TIP 447148 16229 \N \N 6144544 2025-03-28 12:09:19.162 2025-03-28 12:09:19.162 7600 FEE 447219 21805 \N \N 6144545 2025-03-28 12:09:19.162 2025-03-28 12:09:19.162 68400 TIP 447219 17722 \N \N 6144548 2025-03-28 12:09:21.73 2025-03-28 12:09:21.73 2100 FEE 447242 20972 \N \N 6144549 2025-03-28 12:09:21.73 2025-03-28 12:09:21.73 18900 TIP 447242 19637 \N \N 6144563 2025-03-28 12:11:12.048 2025-03-28 12:11:12.048 3300 FEE 447121 17891 \N \N 6144564 2025-03-28 12:11:12.048 2025-03-28 12:11:12.048 29700 TIP 447121 16250 \N \N 6144595 2025-03-28 12:13:42.321 2025-03-28 12:13:42.321 1000 FEE 447152 14910 \N \N 6144596 2025-03-28 12:13:42.321 2025-03-28 12:13:42.321 9000 TIP 447152 9276 \N \N 6144607 2025-03-28 12:15:00.1 2025-03-28 12:15:00.1 0 FEE 447302 2459 \N \N 6144608 2025-03-28 12:15:03.284 2025-03-28 12:15:03.284 6400 FEE 447251 19813 \N \N 6144609 2025-03-28 12:15:03.284 2025-03-28 12:15:03.284 57600 TIP 447251 1717 \N \N 6112101 2025-03-26 04:12:31.873 2025-03-26 04:12:31.873 1000 FEE 443434 16447 \N \N 6112105 2025-03-26 04:12:53.842 2025-03-26 04:12:53.842 0 FEE 443432 687 \N \N 6112125 2025-03-26 04:13:45.373 2025-03-26 04:13:45.373 100 FEE 443108 18225 \N \N 6112126 2025-03-26 04:13:45.373 2025-03-26 04:13:45.373 900 TIP 443108 16842 \N \N 6112134 2025-03-26 04:14:28.899 2025-03-26 04:14:28.899 10000 FEE 443164 2722 \N \N 6112135 2025-03-26 04:14:28.899 2025-03-26 04:14:28.899 90000 TIP 443164 18321 \N \N 6112165 2025-03-26 04:17:27.193 2025-03-26 04:17:27.193 5700 FEE 443440 17172 \N \N 6112166 2025-03-26 04:17:27.193 2025-03-26 04:17:27.193 51300 TIP 443440 9992 \N \N 6112167 2025-03-26 04:17:44.202 2025-03-26 04:17:44.202 1000 FEE 443442 14651 \N \N 6112204 2025-03-26 04:21:58.954 2025-03-26 04:21:58.954 2100 FEE 443272 20979 \N \N 6112205 2025-03-26 04:21:58.954 2025-03-26 04:21:58.954 18900 TIP 443272 777 \N \N 6112230 2025-03-26 04:25:20.891 2025-03-26 04:25:20.891 100 FEE 443083 9833 \N \N 6112231 2025-03-26 04:25:20.891 2025-03-26 04:25:20.891 900 TIP 443083 16513 \N \N 6112241 2025-03-26 04:26:45.243 2025-03-26 04:26:45.243 100 FEE 443357 5961 \N \N 6112242 2025-03-26 04:26:45.243 2025-03-26 04:26:45.243 900 TIP 443357 2735 \N \N 6112249 2025-03-26 04:27:24.955 2025-03-26 04:27:24.955 10000 FEE 443319 763 \N \N 6112250 2025-03-26 04:27:24.955 2025-03-26 04:27:24.955 90000 TIP 443319 827 \N \N 6112251 2025-03-26 04:28:09.98 2025-03-26 04:28:09.98 0 FEE 404172 15690 \N \N 6112266 2025-03-26 04:30:07.068 2025-03-26 04:30:07.068 1000 FEE 443431 14376 \N \N 6112267 2025-03-26 04:30:07.068 2025-03-26 04:30:07.068 9000 TIP 443431 4763 \N \N 6112283 2025-03-26 04:31:22.361 2025-03-26 04:31:22.361 1000 FEE 440692 6616 \N \N 6112284 2025-03-26 04:31:22.361 2025-03-26 04:31:22.361 9000 TIP 440692 9200 \N \N 6112304 2025-03-26 04:34:23.96 2025-03-26 04:34:23.96 5700 FEE 443393 6419 \N \N 6112305 2025-03-26 04:34:23.96 2025-03-26 04:34:23.96 51300 TIP 443393 826 \N \N 6112327 2025-03-26 04:38:33.131 2025-03-26 04:38:33.131 1000 FEE 443469 13759 \N \N 6112336 2025-03-26 04:38:43.852 2025-03-26 04:38:43.852 500 FEE 443266 20133 \N \N 6112337 2025-03-26 04:38:43.852 2025-03-26 04:38:43.852 4500 TIP 443266 13162 \N \N 6112344 2025-03-26 04:39:54.066 2025-03-26 04:39:54.066 100 FEE 442313 6537 \N \N 6112345 2025-03-26 04:39:54.066 2025-03-26 04:39:54.066 900 TIP 442313 21523 \N \N 6112397 2025-03-26 04:45:30.198 2025-03-26 04:45:30.198 1000 FEE 442904 20198 \N \N 6112398 2025-03-26 04:45:30.198 2025-03-26 04:45:30.198 9000 TIP 442904 1428 \N \N 6112417 2025-03-26 04:45:31.999 2025-03-26 04:45:31.999 1000 FEE 442904 18529 \N \N 6112418 2025-03-26 04:45:31.999 2025-03-26 04:45:31.999 9000 TIP 442904 21498 \N \N 6112423 2025-03-26 04:45:32.613 2025-03-26 04:45:32.613 1000 FEE 442904 13132 \N \N 6112424 2025-03-26 04:45:32.613 2025-03-26 04:45:32.613 9000 TIP 442904 10311 \N \N 6112449 2025-03-26 04:45:39.753 2025-03-26 04:45:39.753 1000 FEE 442904 17001 \N \N 6112450 2025-03-26 04:45:39.753 2025-03-26 04:45:39.753 9000 TIP 442904 17455 \N \N 6112461 2025-03-26 04:45:41.029 2025-03-26 04:45:41.029 1000 FEE 442904 3392 \N \N 6112462 2025-03-26 04:45:41.029 2025-03-26 04:45:41.029 9000 TIP 442904 2734 \N \N 6112473 2025-03-26 04:45:42.8 2025-03-26 04:45:42.8 1000 FEE 442904 15408 \N \N 6112474 2025-03-26 04:45:42.8 2025-03-26 04:45:42.8 9000 TIP 442904 5129 \N \N 6112477 2025-03-26 04:45:43.375 2025-03-26 04:45:43.375 1000 FEE 442904 21672 \N \N 6112478 2025-03-26 04:45:43.375 2025-03-26 04:45:43.375 9000 TIP 442904 1802 \N \N 6112489 2025-03-26 04:45:44.497 2025-03-26 04:45:44.497 1000 FEE 442904 13162 \N \N 6112490 2025-03-26 04:45:44.497 2025-03-26 04:45:44.497 9000 TIP 442904 9982 \N \N 6112493 2025-03-26 04:45:44.916 2025-03-26 04:45:44.916 1000 FEE 442904 15160 \N \N 6112494 2025-03-26 04:45:44.916 2025-03-26 04:45:44.916 9000 TIP 442904 15588 \N \N 6112497 2025-03-26 04:45:45.296 2025-03-26 04:45:45.296 1000 FEE 442904 2748 \N \N 6112498 2025-03-26 04:45:45.296 2025-03-26 04:45:45.296 9000 TIP 442904 9845 \N \N 6112600 2025-03-26 04:57:27.976 2025-03-26 04:57:27.976 0 FEE 443491 2832 \N \N 6112604 2025-03-26 04:58:05.722 2025-03-26 04:58:05.722 1000 FEE 443493 13878 \N \N 6112613 2025-03-26 04:59:04.574 2025-03-26 04:59:04.574 500 FEE 443319 14280 \N \N 6112614 2025-03-26 04:59:04.574 2025-03-26 04:59:04.574 4500 TIP 443319 1286 \N \N 6112106 2025-03-26 04:13:12 2025-03-26 04:13:12 2100 FEE 443434 12769 \N \N 6112107 2025-03-26 04:13:12 2025-03-26 04:13:12 18900 TIP 443434 16424 \N \N 6112129 2025-03-26 04:13:47.452 2025-03-26 04:13:47.452 9000 FEE 443108 1326 \N \N 6112130 2025-03-26 04:13:47.452 2025-03-26 04:13:47.452 81000 TIP 443108 697 \N \N 6112131 2025-03-26 04:13:52.375 2025-03-26 04:13:52.375 90000 FEE 443108 18188 \N \N 6112132 2025-03-26 04:13:52.375 2025-03-26 04:13:52.375 810000 TIP 443108 10270 \N \N 6112149 2025-03-26 04:15:26.055 2025-03-26 04:15:26.055 1000 FEE 443288 4166 \N \N 6112150 2025-03-26 04:15:26.055 2025-03-26 04:15:26.055 9000 TIP 443288 12072 \N \N 6112191 2025-03-26 04:20:32.155 2025-03-26 04:20:32.155 800 FEE 443399 712 \N \N 6112192 2025-03-26 04:20:32.155 2025-03-26 04:20:32.155 7200 TIP 443399 761 \N \N 6112146 2025-03-26 04:15:18.156 2025-03-26 04:15:18.156 18900 TIP 443349 679 \N \N 6112185 2025-03-26 04:20:07.869 2025-03-26 04:20:07.869 800 FEE 443431 2437 \N \N 6112186 2025-03-26 04:20:07.869 2025-03-26 04:20:07.869 7200 TIP 443431 9262 \N \N 6112187 2025-03-26 04:20:14.439 2025-03-26 04:20:14.439 1000 FEE 443446 2206 \N \N 6112196 2025-03-26 04:21:50.253 2025-03-26 04:21:50.253 2100 FEE 443319 20094 \N \N 6112197 2025-03-26 04:21:50.253 2025-03-26 04:21:50.253 18900 TIP 443319 8173 \N \N 6112214 2025-03-26 04:23:25.36 2025-03-26 04:23:25.36 100 FEE 443058 654 \N \N 6112215 2025-03-26 04:23:25.36 2025-03-26 04:23:25.36 900 TIP 443058 844 \N \N 6112245 2025-03-26 04:27:09.499 2025-03-26 04:27:09.499 100 FEE 442997 11866 \N \N 6112246 2025-03-26 04:27:09.499 2025-03-26 04:27:09.499 900 TIP 442997 2039 \N \N 6112262 2025-03-26 04:29:07.843 2025-03-26 04:29:07.843 0 FEE 443455 18423 \N \N 6112264 2025-03-26 04:29:22.505 2025-03-26 04:29:22.505 1000 FEE 443431 17221 \N \N 6112265 2025-03-26 04:29:22.505 2025-03-26 04:29:22.505 9000 TIP 443431 18232 \N \N 6112328 2025-03-26 04:38:36.264 2025-03-26 04:38:36.264 1700 FEE 443313 706 \N \N 6112329 2025-03-26 04:38:36.264 2025-03-26 04:38:36.264 15300 TIP 443313 15624 \N \N 6112330 2025-03-26 04:38:36.406 2025-03-26 04:38:36.406 1700 FEE 443313 956 \N \N 6112331 2025-03-26 04:38:36.406 2025-03-26 04:38:36.406 15300 TIP 443313 10554 \N \N 6112340 2025-03-26 04:39:24.491 2025-03-26 04:39:24.491 9000 FEE 442298 20198 \N \N 6112341 2025-03-26 04:39:24.491 2025-03-26 04:39:24.491 81000 TIP 442298 8376 \N \N 6112348 2025-03-26 04:40:24.224 2025-03-26 04:40:24.224 1700 FEE 443231 6749 \N \N 6112349 2025-03-26 04:40:24.224 2025-03-26 04:40:24.224 15300 TIP 443231 837 \N \N 6112352 2025-03-26 04:40:25.39 2025-03-26 04:40:25.39 1700 FEE 443231 19842 \N \N 6112353 2025-03-26 04:40:25.39 2025-03-26 04:40:25.39 15300 TIP 443231 6749 \N \N 6112361 2025-03-26 04:41:34.549 2025-03-26 04:41:34.549 100 FEE 443228 713 \N \N 6112362 2025-03-26 04:41:34.549 2025-03-26 04:41:34.549 900 TIP 443228 1881 \N \N 6112366 2025-03-26 04:42:08.447 2025-03-26 04:42:08.447 1000 FEE 443472 21349 \N \N 6112367 2025-03-26 04:42:08.551 2025-03-26 04:42:08.551 1700 FEE 443221 1245 \N \N 6112368 2025-03-26 04:42:08.551 2025-03-26 04:42:08.551 15300 TIP 443221 4487 \N \N 6112427 2025-03-26 04:45:32.964 2025-03-26 04:45:32.964 1000 FEE 442904 1960 \N \N 6112428 2025-03-26 04:45:32.964 2025-03-26 04:45:32.964 9000 TIP 442904 18735 \N \N 6112439 2025-03-26 04:45:35.976 2025-03-26 04:45:35.976 1000 FEE 442904 9529 \N \N 6112440 2025-03-26 04:45:35.976 2025-03-26 04:45:35.976 9000 TIP 442904 19471 \N \N 6112481 2025-03-26 04:45:43.597 2025-03-26 04:45:43.597 1000 FEE 442904 12935 \N \N 6112482 2025-03-26 04:45:43.597 2025-03-26 04:45:43.597 9000 TIP 442904 21079 \N \N 6112483 2025-03-26 04:45:43.814 2025-03-26 04:45:43.814 1000 FEE 442904 13467 \N \N 6112484 2025-03-26 04:45:43.814 2025-03-26 04:45:43.814 9000 TIP 442904 20353 \N \N 6112485 2025-03-26 04:45:44.078 2025-03-26 04:45:44.078 1000 FEE 442904 3506 \N \N 6112486 2025-03-26 04:45:44.078 2025-03-26 04:45:44.078 9000 TIP 442904 762 \N \N 6112501 2025-03-26 04:45:46.409 2025-03-26 04:45:46.409 2000 FEE 442904 2749 \N \N 6112502 2025-03-26 04:45:46.409 2025-03-26 04:45:46.409 18000 TIP 442904 11240 \N \N 6112525 2025-03-26 04:45:48.489 2025-03-26 04:45:48.489 1000 FEE 442904 20433 \N \N 6112526 2025-03-26 04:45:48.489 2025-03-26 04:45:48.489 9000 TIP 442904 2513 \N \N 6112537 2025-03-26 04:46:25.725 2025-03-26 04:46:25.725 1000 FEE 443475 19930 \N \N 6112559 2025-03-26 04:51:19.323 2025-03-26 04:51:19.323 1000 FEE 443482 1567 \N \N 6112590 2025-03-26 04:56:44.372 2025-03-26 04:56:44.372 700 FEE 443487 2322 \N \N 6112591 2025-03-26 04:56:44.372 2025-03-26 04:56:44.372 6300 TIP 443487 11996 \N \N 6112597 2025-03-26 04:57:06.138 2025-03-26 04:57:06.138 1000 FEE 443491 21041 \N \N 6112602 2025-03-26 04:57:52.041 2025-03-26 04:57:52.041 10000 FEE 443486 16747 \N \N 6112603 2025-03-26 04:57:52.041 2025-03-26 04:57:52.041 90000 TIP 443486 17526 \N \N 6112608 2025-03-26 04:58:38.697 2025-03-26 04:58:38.697 10000 FEE 443496 17991 \N \N 6112609 2025-03-26 04:58:55.847 2025-03-26 04:58:55.847 500 FEE 443274 2329 \N \N 6112610 2025-03-26 04:58:55.847 2025-03-26 04:58:55.847 4500 TIP 443274 1122 \N \N 6112611 2025-03-26 04:58:59.201 2025-03-26 04:58:59.201 500 FEE 442904 20563 \N \N 6112612 2025-03-26 04:58:59.201 2025-03-26 04:58:59.201 4500 TIP 442904 20972 \N \N 6112620 2025-03-26 04:59:21.545 2025-03-26 04:59:21.545 500 FEE 443197 1814 \N \N 6112621 2025-03-26 04:59:21.545 2025-03-26 04:59:21.545 4500 TIP 443197 21180 \N \N 6112632 2025-03-26 04:59:55.239 2025-03-26 04:59:55.239 500 FEE 442298 4259 \N \N 6112633 2025-03-26 04:59:55.239 2025-03-26 04:59:55.239 4500 TIP 442298 20182 \N \N 6112635 2025-03-26 04:59:58.966 2025-03-26 04:59:58.966 1000 FEE 442551 13921 \N \N 6112636 2025-03-26 04:59:58.966 2025-03-26 04:59:58.966 9000 TIP 442551 13517 \N \N 6112642 2025-03-26 05:00:54.362 2025-03-26 05:00:54.362 5700 FEE 443495 21314 \N \N 6112643 2025-03-26 05:00:54.362 2025-03-26 05:00:54.362 51300 TIP 443495 1618 \N \N 6112645 2025-03-26 05:00:56.262 2025-03-26 05:00:56.262 800 FEE 443495 7903 \N \N 6112646 2025-03-26 05:00:56.262 2025-03-26 05:00:56.262 7200 TIP 443495 891 \N \N 6112672 2025-03-26 05:04:18.49 2025-03-26 05:04:18.49 1700 FEE 443495 19502 \N \N 6112673 2025-03-26 05:04:18.49 2025-03-26 05:04:18.49 15300 TIP 443495 4177 \N \N 6112682 2025-03-26 05:06:07.805 2025-03-26 05:06:07.805 3100 FEE 443399 760 \N \N 6112683 2025-03-26 05:06:07.805 2025-03-26 05:06:07.805 27900 TIP 443399 10433 \N \N 6112690 2025-03-26 05:06:39.477 2025-03-26 05:06:39.477 1000 FEE 443512 1596 \N \N 6112692 2025-03-26 05:07:05.486 2025-03-26 05:07:05.486 1700 FEE 443506 9339 \N \N 6112693 2025-03-26 05:07:05.486 2025-03-26 05:07:05.486 15300 TIP 443506 17316 \N \N 6112776 2025-03-26 05:21:14.544 2025-03-26 05:21:14.544 1000 FEE 443534 6717 \N \N 6112794 2025-03-26 05:23:26.02 2025-03-26 05:23:26.02 100 FEE 443492 642 \N \N 6112795 2025-03-26 05:23:26.02 2025-03-26 05:23:26.02 900 TIP 443492 1803 \N \N 6112800 2025-03-26 05:23:40.574 2025-03-26 05:23:40.574 10000 DONT_LIKE_THIS 443454 7979 \N \N 6112802 2025-03-26 05:24:01.986 2025-03-26 05:24:01.986 0 FEE 443526 2513 \N \N 6160995 2025-03-29 19:31:29.049 2025-03-29 19:31:29.049 2100 FEE 448947 827 \N \N 6160996 2025-03-29 19:31:29.049 2025-03-29 19:31:29.049 18900 TIP 448947 1564 \N \N 6161023 2025-03-29 19:39:53.954 2025-03-29 19:39:53.954 500 FEE 447841 5128 \N \N 6161024 2025-03-29 19:39:53.954 2025-03-29 19:39:53.954 4500 TIP 447841 20596 \N \N 6161027 2025-03-29 19:39:57.33 2025-03-29 19:39:57.33 500 FEE 447903 15273 \N \N 6161028 2025-03-29 19:39:57.33 2025-03-29 19:39:57.33 4500 TIP 447903 12736 \N \N 6161046 2025-03-29 19:40:58.094 2025-03-29 19:40:58.094 500 FEE 448935 5725 \N \N 6161047 2025-03-29 19:40:58.094 2025-03-29 19:40:58.094 4500 TIP 448935 11165 \N \N 6161065 2025-03-29 19:41:15.843 2025-03-29 19:41:15.843 500 FEE 448948 19759 \N \N 6161066 2025-03-29 19:41:15.843 2025-03-29 19:41:15.843 4500 TIP 448948 18717 \N \N 6112163 2025-03-26 04:17:08.292 2025-03-26 04:17:08.292 9000 TIP 443233 15491 \N \N 6112176 2025-03-26 04:18:43.856 2025-03-26 04:18:43.856 2100 FEE 443423 20646 \N \N 6112177 2025-03-26 04:18:43.856 2025-03-26 04:18:43.856 18900 TIP 443423 19992 \N \N 6112189 2025-03-26 04:20:15.988 2025-03-26 04:20:15.988 1000 FEE 443447 644 \N \N 6112195 2025-03-26 04:21:36.2 2025-03-26 04:21:36.2 10000 FEE 443450 10934 \N \N 6112202 2025-03-26 04:21:56.868 2025-03-26 04:21:56.868 100 FEE 443422 13763 \N \N 6112203 2025-03-26 04:21:56.868 2025-03-26 04:21:56.868 900 TIP 443422 4602 \N \N 6112207 2025-03-26 04:22:17.137 2025-03-26 04:22:17.137 1600 FEE 443381 9347 \N \N 6112208 2025-03-26 04:22:17.137 2025-03-26 04:22:17.137 14400 TIP 443381 8945 \N \N 6112212 2025-03-26 04:23:08.727 2025-03-26 04:23:08.727 1000 FEE 443452 17171 \N \N 6112222 2025-03-26 04:24:47.06 2025-03-26 04:24:47.06 0 FEE 443445 681 \N \N 6112253 2025-03-26 04:28:19.998 2025-03-26 04:28:19.998 1000 FEE 443458 11263 \N \N 6112289 2025-03-26 04:31:22.895 2025-03-26 04:31:22.895 1000 FEE 440692 16357 \N \N 6112290 2025-03-26 04:31:22.895 2025-03-26 04:31:22.895 9000 TIP 440692 642 \N \N 6112313 2025-03-26 04:35:30.763 2025-03-26 04:35:30.763 9000 FEE 443462 12870 \N \N 6112321 2025-03-26 04:37:43.72 2025-03-26 04:37:43.72 1000 FEE 443466 695 \N \N 6112350 2025-03-26 04:40:24.385 2025-03-26 04:40:24.385 1700 FEE 443231 715 \N \N 6112351 2025-03-26 04:40:24.385 2025-03-26 04:40:24.385 15300 TIP 443231 2780 \N \N 6112374 2025-03-26 04:43:28.166 2025-03-26 04:43:28.166 3200 FEE 443460 1564 \N \N 6112375 2025-03-26 04:43:28.166 2025-03-26 04:43:28.166 28800 TIP 443460 21683 \N \N 6112378 2025-03-26 04:44:12.571 2025-03-26 04:44:12.571 5700 FEE 443467 1611 \N \N 6112379 2025-03-26 04:44:12.571 2025-03-26 04:44:12.571 51300 TIP 443467 1044 \N \N 6112409 2025-03-26 04:45:31.043 2025-03-26 04:45:31.043 1000 FEE 442904 18368 \N \N 6112410 2025-03-26 04:45:31.043 2025-03-26 04:45:31.043 9000 TIP 442904 9109 \N \N 6112443 2025-03-26 04:45:36.326 2025-03-26 04:45:36.326 1000 FEE 442904 9611 \N \N 6112444 2025-03-26 04:45:36.326 2025-03-26 04:45:36.326 9000 TIP 442904 21520 \N \N 6112445 2025-03-26 04:45:39.411 2025-03-26 04:45:39.411 1000 FEE 442904 4602 \N \N 6112446 2025-03-26 04:45:39.411 2025-03-26 04:45:39.411 9000 TIP 442904 8713 \N \N 6112447 2025-03-26 04:45:39.57 2025-03-26 04:45:39.57 1000 FEE 442904 21522 \N \N 6112448 2025-03-26 04:45:39.57 2025-03-26 04:45:39.57 9000 TIP 442904 20062 \N \N 6112451 2025-03-26 04:45:39.994 2025-03-26 04:45:39.994 1000 FEE 442904 21202 \N \N 6112452 2025-03-26 04:45:39.994 2025-03-26 04:45:39.994 9000 TIP 442904 15060 \N \N 6112459 2025-03-26 04:45:40.814 2025-03-26 04:45:40.814 1000 FEE 442904 1221 \N \N 6112460 2025-03-26 04:45:40.814 2025-03-26 04:45:40.814 9000 TIP 442904 11621 \N \N 6112475 2025-03-26 04:45:43.049 2025-03-26 04:45:43.049 1000 FEE 442904 21768 \N \N 6112476 2025-03-26 04:45:43.049 2025-03-26 04:45:43.049 9000 TIP 442904 21020 \N \N 6112479 2025-03-26 04:45:43.441 2025-03-26 04:45:43.441 1000 FEE 442904 17817 \N \N 6112480 2025-03-26 04:45:43.441 2025-03-26 04:45:43.441 9000 TIP 442904 17124 \N \N 6112513 2025-03-26 04:45:47.281 2025-03-26 04:45:47.281 1000 FEE 442904 20479 \N \N 6112514 2025-03-26 04:45:47.281 2025-03-26 04:45:47.281 9000 TIP 442904 642 \N \N 6112546 2025-03-26 04:47:42.266 2025-03-26 04:47:42.266 1700 FEE 443152 641 \N \N 6112547 2025-03-26 04:47:42.266 2025-03-26 04:47:42.266 15300 TIP 443152 18225 \N \N 6112552 2025-03-26 04:49:14.293 2025-03-26 04:49:14.293 1000 FEE 443479 667 \N \N 6112587 2025-03-26 04:56:25.908 2025-03-26 04:56:25.908 1700 FEE 443142 763 \N \N 6112588 2025-03-26 04:56:25.908 2025-03-26 04:56:25.908 15300 TIP 443142 21603 \N \N 6112661 2025-03-26 05:03:07.646 2025-03-26 05:03:07.646 2100 FEE 443340 9329 \N \N 6112662 2025-03-26 05:03:07.646 2025-03-26 05:03:07.646 18900 TIP 443340 18306 \N \N 6112664 2025-03-26 05:03:37.238 2025-03-26 05:03:37.238 0 FEE 443490 6335 \N \N 6112680 2025-03-26 05:05:29.097 2025-03-26 05:05:29.097 3300 FEE 443309 1576 \N \N 6112681 2025-03-26 05:05:29.097 2025-03-26 05:05:29.097 29700 TIP 443309 18231 \N \N 6112694 2025-03-26 05:07:05.662 2025-03-26 05:07:05.662 1700 FEE 443506 1044 \N \N 6112695 2025-03-26 05:07:05.662 2025-03-26 05:07:05.662 15300 TIP 443506 1320 \N \N 6112714 2025-03-26 05:10:21.531 2025-03-26 05:10:21.531 0 FEE 443507 954 \N \N 6112729 2025-03-26 05:12:54.748 2025-03-26 05:12:54.748 1000 FEE 443521 21040 \N \N 6112734 2025-03-26 05:13:41.473 2025-03-26 05:13:41.473 1000 FEE 443522 2609 \N \N 6112735 2025-03-26 05:13:43.069 2025-03-26 05:13:43.069 1000 FEE 443495 20911 \N \N 6112736 2025-03-26 05:13:43.069 2025-03-26 05:13:43.069 9000 TIP 443495 9551 \N \N 6112766 2025-03-26 05:19:30.179 2025-03-26 05:19:30.179 0 FEE 443526 11967 \N \N 6112767 2025-03-26 05:19:32.366 2025-03-26 05:19:32.366 1000 FEE 443530 11328 \N \N 6112774 2025-03-26 05:21:10.705 2025-03-26 05:21:10.705 1000 FEE 443533 1534 \N \N 6112788 2025-03-26 05:23:03.131 2025-03-26 05:23:03.131 1000 FEE 437845 11648 \N \N 6112789 2025-03-26 05:23:03.131 2025-03-26 05:23:03.131 9000 TIP 437845 12220 \N \N 6112796 2025-03-26 05:23:26.307 2025-03-26 05:23:26.307 900 FEE 443492 2749 \N \N 6112797 2025-03-26 05:23:26.307 2025-03-26 05:23:26.307 8100 TIP 443492 21798 \N \N 6112801 2025-03-26 05:23:45.278 2025-03-26 05:23:45.278 1000 FEE 443537 1705 \N \N 6112814 2025-03-26 05:26:58.738 2025-03-26 05:26:58.738 1100 FEE 443532 21131 \N \N 6112815 2025-03-26 05:26:58.738 2025-03-26 05:26:58.738 9900 TIP 443532 15337 \N \N 6112817 2025-03-26 05:27:18.57 2025-03-26 05:27:18.57 1000 FEE 443542 11073 \N \N 6112824 2025-03-26 05:28:48.817 2025-03-26 05:28:48.817 500 FEE 443538 2734 \N \N 6112825 2025-03-26 05:28:48.817 2025-03-26 05:28:48.817 4500 TIP 443538 17064 \N \N 6112828 2025-03-26 05:28:56.649 2025-03-26 05:28:56.649 420000 FEE 443545 20137 \N \N 6112849 2025-03-26 05:30:47.791 2025-03-26 05:30:47.791 3100 FEE 443272 722 \N \N 6112850 2025-03-26 05:30:47.791 2025-03-26 05:30:47.791 27900 TIP 443272 18306 \N \N 6112870 2025-03-26 05:32:14.167 2025-03-26 05:32:14.167 10000 FEE 443539 20225 \N \N 6112871 2025-03-26 05:32:14.167 2025-03-26 05:32:14.167 90000 TIP 443539 8004 \N \N 6112898 2025-03-26 05:35:57.937 2025-03-26 05:35:57.937 1000 FEE 443566 15226 \N \N 6112952 2025-03-26 05:39:10.581 2025-03-26 05:39:10.581 1000 FEE 443575 17106 \N \N 6112960 2025-03-26 05:39:14.386 2025-03-26 05:39:14.386 7700 FEE 443274 16598 \N \N 6112961 2025-03-26 05:39:14.386 2025-03-26 05:39:14.386 69300 TIP 443274 19394 \N \N 6112986 2025-03-26 05:39:25.379 2025-03-26 05:39:25.379 7700 FEE 443372 20023 \N \N 6112987 2025-03-26 05:39:25.379 2025-03-26 05:39:25.379 69300 TIP 443372 1472 \N \N 6113000 2025-03-26 05:39:26.312 2025-03-26 05:39:26.312 7700 FEE 443372 18393 \N \N 6113001 2025-03-26 05:39:26.312 2025-03-26 05:39:26.312 69300 TIP 443372 1471 \N \N 6113006 2025-03-26 05:39:26.63 2025-03-26 05:39:26.63 7700 FEE 443372 1006 \N \N 6113007 2025-03-26 05:39:26.63 2025-03-26 05:39:26.63 69300 TIP 443372 6191 \N \N 6113020 2025-03-26 05:39:30.885 2025-03-26 05:39:30.885 7700 FEE 443179 7185 \N \N 6113021 2025-03-26 05:39:30.885 2025-03-26 05:39:30.885 69300 TIP 443179 20811 \N \N 6113034 2025-03-26 05:39:41.289 2025-03-26 05:39:41.289 7700 FEE 443545 5694 \N \N 6113035 2025-03-26 05:39:41.289 2025-03-26 05:39:41.289 69300 TIP 443545 21357 \N \N 6155386 2025-03-29 08:37:36.847 2025-03-29 08:37:36.847 1000 FEE 448384 11621 \N \N 6155418 2025-03-29 08:39:11.956 2025-03-29 08:39:11.956 2100 FEE 448207 21178 \N \N 6155419 2025-03-29 08:39:11.956 2025-03-29 08:39:11.956 18900 TIP 448207 19576 \N \N 6155464 2025-03-29 08:41:01.537 2025-03-29 08:41:01.537 1000 FEE 448392 5978 \N \N 6155480 2025-03-29 08:42:16.382 2025-03-29 08:42:16.382 2100 FEE 448315 10731 \N \N 6155481 2025-03-29 08:42:16.382 2025-03-29 08:42:16.382 18900 TIP 448315 21090 \N \N 6155484 2025-03-29 08:42:17.957 2025-03-29 08:42:17.957 10000 FEE 448394 14650 \N \N 6155491 2025-03-29 08:42:21.711 2025-03-29 08:42:21.711 2100 FEE 448208 3683 \N \N 6155492 2025-03-29 08:42:21.711 2025-03-29 08:42:21.711 18900 TIP 448208 9796 \N \N 6155516 2025-03-29 08:43:40.158 2025-03-29 08:43:40.158 2100 FEE 448375 2722 \N \N 6155517 2025-03-29 08:43:40.158 2025-03-29 08:43:40.158 18900 TIP 448375 13553 \N \N 6155528 2025-03-29 08:44:19.957 2025-03-29 08:44:19.957 1000 FEE 448399 11829 \N \N 6155540 2025-03-29 08:44:34.553 2025-03-29 08:44:34.553 1000 FEE 448392 15367 \N \N 6155541 2025-03-29 08:44:34.553 2025-03-29 08:44:34.553 9000 TIP 448392 2459 \N \N 6155562 2025-03-29 08:44:47.643 2025-03-29 08:44:47.643 1000 FEE 448400 13398 \N \N 6155567 2025-03-29 08:45:38.706 2025-03-29 08:45:38.706 10000 FEE 448402 16939 \N \N 6155616 2025-03-29 08:51:24.543 2025-03-29 08:51:24.543 21000 FEE 448409 6653 \N \N 6155638 2025-03-29 08:54:10.095 2025-03-29 08:54:10.095 1000 FEE 448403 21178 \N \N 6155639 2025-03-29 08:54:10.095 2025-03-29 08:54:10.095 9000 TIP 448403 9246 \N \N 6155640 2025-03-29 08:54:10.482 2025-03-29 08:54:10.482 1000 FEE 448403 19332 \N \N 6155641 2025-03-29 08:54:10.482 2025-03-29 08:54:10.482 9000 TIP 448403 10979 \N \N 6155644 2025-03-29 08:54:12.491 2025-03-29 08:54:12.491 1000 FEE 448403 15474 \N \N 6155645 2025-03-29 08:54:12.491 2025-03-29 08:54:12.491 9000 TIP 448403 675 \N \N 6155651 2025-03-29 08:54:17.296 2025-03-29 08:54:17.296 800 FEE 448244 18174 \N \N 6155652 2025-03-29 08:54:17.296 2025-03-29 08:54:17.296 7200 TIP 448244 12738 \N \N 6155667 2025-03-29 08:55:28.265 2025-03-29 08:55:28.265 1000 FEE 448417 2347 \N \N 6155682 2025-03-29 08:57:46.383 2025-03-29 08:57:46.383 0 FEE 448420 20825 \N \N 6155689 2025-03-29 08:58:54.884 2025-03-29 08:58:54.884 1000 POLL 448349 15226 \N \N 6155700 2025-03-29 09:00:36.921 2025-03-29 09:00:36.921 7600 FEE 448244 4259 \N \N 6155701 2025-03-29 09:00:36.921 2025-03-29 09:00:36.921 68400 TIP 448244 15326 \N \N 6155709 2025-03-29 09:01:31.548 2025-03-29 09:01:31.548 5000 FEE 383302 3656 \N \N 6155710 2025-03-29 09:01:31.548 2025-03-29 09:01:31.548 45000 TIP 383302 9167 \N \N 6155725 2025-03-29 09:03:45.999 2025-03-29 09:03:45.999 21000 FEE 448426 21556 \N \N 6155726 2025-03-29 09:03:45.999 2025-03-29 09:03:45.999 189000 TIP 448426 20911 \N \N 6155738 2025-03-29 09:04:42.234 2025-03-29 09:04:42.234 100 FEE 447944 1468 \N \N 6155739 2025-03-29 09:04:42.234 2025-03-29 09:04:42.234 900 TIP 447944 16954 \N \N 6155766 2025-03-29 09:07:23.089 2025-03-29 09:07:23.089 2100 FEE 448402 4650 \N \N 6155767 2025-03-29 09:07:23.089 2025-03-29 09:07:23.089 18900 TIP 448402 5694 \N \N 6155809 2025-03-29 09:08:59.084 2025-03-29 09:08:59.084 2100 FEE 448441 11866 \N \N 6155810 2025-03-29 09:08:59.084 2025-03-29 09:08:59.084 18900 TIP 448441 1751 \N \N 6155813 2025-03-29 09:08:59.812 2025-03-29 09:08:59.812 2100 FEE 448181 18101 \N \N 6155814 2025-03-29 09:08:59.812 2025-03-29 09:08:59.812 18900 TIP 448181 12821 \N \N 6155834 2025-03-29 09:09:22.353 2025-03-29 09:09:22.353 1000 FEE 448385 21714 \N \N 6155835 2025-03-29 09:09:22.353 2025-03-29 09:09:22.353 9000 TIP 448385 16954 \N \N 6155848 2025-03-29 09:09:25.579 2025-03-29 09:09:25.579 1000 FEE 448385 9275 \N \N 6155849 2025-03-29 09:09:25.579 2025-03-29 09:09:25.579 9000 TIP 448385 14213 \N \N 6155855 2025-03-29 09:09:33.527 2025-03-29 09:09:33.527 2100 FEE 448158 20294 \N \N 6155856 2025-03-29 09:09:33.527 2025-03-29 09:09:33.527 18900 TIP 448158 20849 \N \N 6155898 2025-03-29 09:14:16.966 2025-03-29 09:14:16.966 1000 FEE 448456 960 \N \N 6155913 2025-03-29 09:15:16.707 2025-03-29 09:15:16.707 1000 FEE 448409 2640 \N \N 6155914 2025-03-29 09:15:16.707 2025-03-29 09:15:16.707 9000 TIP 448409 4259 \N \N 6155916 2025-03-29 09:15:21.391 2025-03-29 09:15:21.391 1000 FEE 448457 20782 \N \N 6155944 2025-03-29 09:17:07.046 2025-03-29 09:17:07.046 1000 FEE 448460 2347 \N \N 6155946 2025-03-29 09:17:16.062 2025-03-29 09:17:16.062 1000 FEE 448461 20062 \N \N 6155966 2025-03-29 09:18:38.446 2025-03-29 09:18:38.446 1000 FEE 448059 5746 \N \N 6155967 2025-03-29 09:18:38.446 2025-03-29 09:18:38.446 9000 TIP 448059 18265 \N \N 6155982 2025-03-29 09:18:48.33 2025-03-29 09:18:48.33 2100 FEE 447981 1090 \N \N 6155983 2025-03-29 09:18:48.33 2025-03-29 09:18:48.33 18900 TIP 447981 21418 \N \N 6156042 2025-03-29 09:20:23.772 2025-03-29 09:20:23.772 2100 FEE 447287 2213 \N \N 6156043 2025-03-29 09:20:23.772 2025-03-29 09:20:23.772 18900 TIP 447287 667 \N \N 6156063 2025-03-29 09:21:06.941 2025-03-29 09:21:06.941 2100 FEE 448011 9364 \N \N 6156064 2025-03-29 09:21:06.941 2025-03-29 09:21:06.941 18900 TIP 448011 3717 \N \N 6156073 2025-03-29 09:21:12.086 2025-03-29 09:21:12.086 2100 FEE 447442 21332 \N \N 6156074 2025-03-29 09:21:12.086 2025-03-29 09:21:12.086 18900 TIP 447442 4084 \N \N 6156085 2025-03-29 09:21:16.657 2025-03-29 09:21:16.657 2100 FEE 447200 7673 \N \N 6156086 2025-03-29 09:21:16.657 2025-03-29 09:21:16.657 18900 TIP 447200 4062 \N \N 6156087 2025-03-29 09:21:22.97 2025-03-29 09:21:22.97 2100 FEE 446430 1738 \N \N 6156088 2025-03-29 09:21:22.97 2025-03-29 09:21:22.97 18900 TIP 446430 673 \N \N 6156092 2025-03-29 09:22:39.479 2025-03-29 09:22:39.479 900 FEE 448466 8684 \N \N 6156093 2025-03-29 09:22:39.479 2025-03-29 09:22:39.479 8100 TIP 448466 21281 \N \N 6156110 2025-03-29 09:23:11.269 2025-03-29 09:23:11.269 9000 FEE 448244 7667 \N \N 6156111 2025-03-29 09:23:11.269 2025-03-29 09:23:11.269 81000 TIP 448244 8469 \N \N 6156122 2025-03-29 09:24:10.689 2025-03-29 09:24:10.689 0 FEE 448467 11609 \N \N 6156154 2025-03-29 09:26:42.873 2025-03-29 09:26:42.873 100000 FEE 448470 7097 \N \N 6156155 2025-03-29 09:26:46.846 2025-03-29 09:26:46.846 5000 FEE 448437 1733 \N \N 6156156 2025-03-29 09:26:46.846 2025-03-29 09:26:46.846 45000 TIP 448437 9874 \N \N 6156179 2025-03-29 09:30:07.85 2025-03-29 09:30:07.85 1000 FEE 448478 21444 \N \N 6156184 2025-03-29 09:31:08.497 2025-03-29 09:31:08.497 1000 FEE 448220 701 \N \N 6156185 2025-03-29 09:31:08.497 2025-03-29 09:31:08.497 9000 TIP 448220 7891 \N \N 6156193 2025-03-29 09:31:51.16 2025-03-29 09:31:51.16 1000 POLL 448155 2327 \N \N 6156206 2025-03-29 09:32:47.273 2025-03-29 09:32:47.273 1000 FEE 448484 2789 \N \N 6156242 2025-03-29 09:37:59.957 2025-03-29 09:37:59.957 1000 FEE 448491 11798 \N \N 6156250 2025-03-29 09:38:43.454 2025-03-29 09:38:43.454 1000 FEE 447719 7979 \N \N 6156251 2025-03-29 09:38:43.454 2025-03-29 09:38:43.454 9000 TIP 447719 20280 \N \N 6156256 2025-03-29 09:38:44.187 2025-03-29 09:38:44.187 2000 FEE 447719 10352 \N \N 6156257 2025-03-29 09:38:44.187 2025-03-29 09:38:44.187 18000 TIP 447719 6160 \N \N 6156264 2025-03-29 09:38:47.264 2025-03-29 09:38:47.264 1000 FEE 447719 759 \N \N 6156265 2025-03-29 09:38:47.264 2025-03-29 09:38:47.264 9000 TIP 447719 12507 \N \N 6156270 2025-03-29 09:38:49.479 2025-03-29 09:38:49.479 1000 FEE 447719 11073 \N \N 6156271 2025-03-29 09:38:49.479 2025-03-29 09:38:49.479 9000 TIP 447719 18412 \N \N 6156279 2025-03-29 09:39:33.216 2025-03-29 09:39:33.216 1000 FEE 448492 19689 \N \N 6156280 2025-03-29 09:39:51.609 2025-03-29 09:39:51.609 1000 FEE 448493 4062 \N \N 6112211 2025-03-26 04:22:29.283 2025-03-26 04:22:29.283 1000 FEE 443451 20963 \N \N 6112220 2025-03-26 04:24:34.252 2025-03-26 04:24:34.252 1000 FEE 443454 20563 \N \N 6112221 2025-03-26 04:24:34.746 2025-03-26 04:24:34.746 1000 FEE 443455 11328 \N \N 6112225 2025-03-26 04:25:10.967 2025-03-26 04:25:10.967 2100 FEE 443059 15732 \N \N 6112226 2025-03-26 04:25:10.967 2025-03-26 04:25:10.967 18900 TIP 443059 1817 \N \N 6112227 2025-03-26 04:25:11.441 2025-03-26 04:25:11.441 1000 FEE 443312 1720 \N \N 6112228 2025-03-26 04:25:11.441 2025-03-26 04:25:11.441 9000 TIP 443312 20596 \N \N 6112243 2025-03-26 04:26:53.349 2025-03-26 04:26:53.349 1000 FEE 443296 17275 \N \N 6112244 2025-03-26 04:26:53.349 2025-03-26 04:26:53.349 9000 TIP 443296 15115 \N \N 6112248 2025-03-26 04:27:19.91 2025-03-26 04:27:19.91 1000 FEE 443457 20310 \N \N 6112254 2025-03-26 04:28:48.044 2025-03-26 04:28:48.044 1000 FEE 442313 8570 \N \N 6112255 2025-03-26 04:28:48.044 2025-03-26 04:28:48.044 9000 TIP 442313 909 \N \N 6112269 2025-03-26 04:30:25.996 2025-03-26 04:30:25.996 1000 FEE 443459 18473 \N \N 6112292 2025-03-26 04:32:37.297 2025-03-26 04:32:37.297 1000 FEE 443460 17710 \N \N 6112299 2025-03-26 04:33:04.859 2025-03-26 04:33:04.859 1000 FEE 442551 20854 \N \N 6112300 2025-03-26 04:33:04.859 2025-03-26 04:33:04.859 9000 TIP 442551 4238 \N \N 6112320 2025-03-26 04:37:41.185 2025-03-26 04:37:41.185 1000 FEE 443465 11220 \N \N 6112322 2025-03-26 04:37:55.648 2025-03-26 04:37:55.648 100000 FEE 443467 15617 \N \N 6143890 2025-03-28 10:58:27.154 2025-03-28 10:58:27.154 1000 FEE 447212 13406 \N \N 6143891 2025-03-28 10:58:27.154 2025-03-28 10:58:27.154 9000 TIP 447212 19980 \N \N 6143899 2025-03-28 10:59:30.325 2025-03-28 10:59:30.325 0 FEE 447218 1624 \N \N 6143905 2025-03-28 10:59:41.111 2025-03-28 10:59:41.111 1000 FEE 447199 626 \N \N 6143906 2025-03-28 10:59:41.111 2025-03-28 10:59:41.111 9000 TIP 447199 20768 \N \N 6143907 2025-03-28 10:59:41.535 2025-03-28 10:59:41.535 1000 FEE 447199 21810 \N \N 6143908 2025-03-28 10:59:41.535 2025-03-28 10:59:41.535 9000 TIP 447199 5703 \N \N 6143925 2025-03-28 11:01:25.871 2025-03-28 11:01:25.871 2100 FEE 447219 10096 \N \N 6143926 2025-03-28 11:01:25.871 2025-03-28 11:01:25.871 18900 TIP 447219 21233 \N \N 6143934 2025-03-28 11:02:11.859 2025-03-28 11:02:11.859 10000 FEE 446937 21666 \N \N 6143935 2025-03-28 11:02:11.859 2025-03-28 11:02:11.859 90000 TIP 446937 4259 \N \N 6143963 2025-03-28 11:04:23.981 2025-03-28 11:04:23.981 0 FEE 447223 708 \N \N 6143968 2025-03-28 11:04:50.623 2025-03-28 11:04:50.623 1000 FEE 447224 649 \N \N 6143997 2025-03-28 11:05:45.19 2025-03-28 11:05:45.19 1000 FEE 447224 9346 \N \N 6143998 2025-03-28 11:05:45.19 2025-03-28 11:05:45.19 9000 TIP 447224 19668 \N \N 6144038 2025-03-28 11:07:14.667 2025-03-28 11:07:14.667 1000 FEE 447225 21339 \N \N 6144039 2025-03-28 11:07:14.667 2025-03-28 11:07:14.667 9000 TIP 447225 1120 \N \N 6144041 2025-03-28 11:07:15.209 2025-03-28 11:07:15.209 1000 FEE 447225 11073 \N \N 6144042 2025-03-28 11:07:15.209 2025-03-28 11:07:15.209 9000 TIP 447225 1114 \N \N 6144043 2025-03-28 11:07:15.477 2025-03-28 11:07:15.477 1000 FEE 447225 9171 \N \N 6144044 2025-03-28 11:07:15.477 2025-03-28 11:07:15.477 9000 TIP 447225 959 \N \N 6144046 2025-03-28 11:07:28.036 2025-03-28 11:07:28.036 1000 FEE 447121 10060 \N \N 6144047 2025-03-28 11:07:28.036 2025-03-28 11:07:28.036 9000 TIP 447121 17976 \N \N 6144050 2025-03-28 11:07:29.082 2025-03-28 11:07:29.082 1000 FEE 447121 630 \N \N 6144051 2025-03-28 11:07:29.082 2025-03-28 11:07:29.082 9000 TIP 447121 21014 \N \N 6144054 2025-03-28 11:07:29.673 2025-03-28 11:07:29.673 1000 FEE 447121 17184 \N \N 6144055 2025-03-28 11:07:29.673 2025-03-28 11:07:29.673 9000 TIP 447121 10469 \N \N 6144062 2025-03-28 11:07:31.3 2025-03-28 11:07:31.3 1000 FEE 447121 20781 \N \N 6144063 2025-03-28 11:07:31.3 2025-03-28 11:07:31.3 9000 TIP 447121 5129 \N \N 6144092 2025-03-28 11:12:27.951 2025-03-28 11:12:27.951 1000 FEE 447238 20755 \N \N 6144116 2025-03-28 11:16:12.838 2025-03-28 11:16:12.838 500 FEE 337715 21332 \N \N 6144117 2025-03-28 11:16:12.838 2025-03-28 11:16:12.838 4500 TIP 337715 15843 \N \N 6144138 2025-03-28 11:17:52.636 2025-03-28 11:17:52.636 1000 FEE 447241 5306 \N \N 6144139 2025-03-28 11:17:52.636 2025-03-28 11:17:52.636 9000 TIP 447241 9339 \N \N 6144144 2025-03-28 11:20:06.796 2025-03-28 11:20:06.796 1000 FEE 447234 14990 \N \N 6144145 2025-03-28 11:20:06.796 2025-03-28 11:20:06.796 9000 TIP 447234 2513 \N \N 6144149 2025-03-28 11:20:47.203 2025-03-28 11:20:47.203 5000 FEE 447241 9337 \N \N 6144150 2025-03-28 11:20:47.203 2025-03-28 11:20:47.203 45000 TIP 447241 18930 \N \N 6144159 2025-03-28 11:23:53.026 2025-03-28 11:23:53.026 100 FEE 447237 1433 \N \N 6144160 2025-03-28 11:23:53.026 2025-03-28 11:23:53.026 900 TIP 447237 15719 \N \N 6144181 2025-03-28 11:26:44.276 2025-03-28 11:26:44.276 300 FEE 447245 16753 \N \N 6144182 2025-03-28 11:26:44.276 2025-03-28 11:26:44.276 2700 TIP 447245 17316 \N \N 6144185 2025-03-28 11:26:50.649 2025-03-28 11:26:50.649 300 FEE 447107 11750 \N \N 6144186 2025-03-28 11:26:50.649 2025-03-28 11:26:50.649 2700 TIP 447107 16513 \N \N 6144187 2025-03-28 11:27:01.723 2025-03-28 11:27:01.723 1100 FEE 446464 18601 \N \N 6144188 2025-03-28 11:27:01.723 2025-03-28 11:27:01.723 9900 TIP 446464 2583 \N \N 6144214 2025-03-28 11:31:23.173 2025-03-28 11:31:23.173 100000 FEE 447251 16282 \N \N 6144226 2025-03-28 11:34:13.495 2025-03-28 11:34:13.495 1000 POLL 446942 16633 \N \N 6144233 2025-03-28 11:35:45.233 2025-03-28 11:35:45.233 0 FEE 447258 763 \N \N 6144265 2025-03-28 11:41:31.049 2025-03-28 11:41:31.049 10000 FEE 447251 21014 \N \N 6144266 2025-03-28 11:41:31.049 2025-03-28 11:41:31.049 90000 TIP 447251 6765 \N \N 6144267 2025-03-28 11:41:31.161 2025-03-28 11:41:31.161 2100 FEE 447250 10311 \N \N 6144268 2025-03-28 11:41:31.161 2025-03-28 11:41:31.161 18900 TIP 447250 15326 \N \N 6144269 2025-03-28 11:42:01.394 2025-03-28 11:42:01.394 1000 POLL 446942 4128 \N \N 6144281 2025-03-28 11:43:24.281 2025-03-28 11:43:24.281 1000 FEE 447233 2514 \N \N 6144282 2025-03-28 11:43:24.281 2025-03-28 11:43:24.281 9000 TIP 447233 1286 \N \N 6144293 2025-03-28 11:45:03.995 2025-03-28 11:45:03.995 3300 FEE 447218 16270 \N \N 6144294 2025-03-28 11:45:03.995 2025-03-28 11:45:03.995 29700 TIP 447218 1785 \N \N 6144314 2025-03-28 11:47:12.583 2025-03-28 11:47:12.583 1000 FEE 447268 4250 \N \N 6144346 2025-03-28 11:48:22.665 2025-03-28 11:48:22.665 2100 FEE 447225 20504 \N \N 6144347 2025-03-28 11:48:22.665 2025-03-28 11:48:22.665 18900 TIP 447225 998 \N \N 6144367 2025-03-28 11:50:34.074 2025-03-28 11:50:34.074 2100 FEE 446798 20597 \N \N 6144368 2025-03-28 11:50:34.074 2025-03-28 11:50:34.074 18900 TIP 446798 17046 \N \N 6144373 2025-03-28 11:50:40.54 2025-03-28 11:50:40.54 2100 FEE 446742 21383 \N \N 6144374 2025-03-28 11:50:40.54 2025-03-28 11:50:40.54 18900 TIP 446742 12561 \N \N 6144379 2025-03-28 11:50:50.272 2025-03-28 11:50:50.272 2100 FEE 446659 1468 \N \N 6144380 2025-03-28 11:50:50.272 2025-03-28 11:50:50.272 18900 TIP 446659 1173 \N \N 6144381 2025-03-28 11:50:52.345 2025-03-28 11:50:52.345 2100 FEE 446603 21701 \N \N 6144382 2025-03-28 11:50:52.345 2025-03-28 11:50:52.345 18900 TIP 446603 13076 \N \N 6144393 2025-03-28 11:51:19.28 2025-03-28 11:51:19.28 21100 FEE 447264 21012 \N \N 6144394 2025-03-28 11:51:19.28 2025-03-28 11:51:19.28 189900 TIP 447264 16097 \N \N 6144395 2025-03-28 11:51:55.183 2025-03-28 11:51:55.183 1000 FEE 446983 1825 \N \N 6144396 2025-03-28 11:51:55.183 2025-03-28 11:51:55.183 9000 TIP 446983 21083 \N \N 6112323 2025-03-26 04:38:04.973 2025-03-26 04:38:04.973 1000 FEE 443468 10016 \N \N 6112325 2025-03-26 04:38:25.085 2025-03-26 04:38:25.085 10000 FEE 443319 7916 \N \N 6112326 2025-03-26 04:38:25.085 2025-03-26 04:38:25.085 90000 TIP 443319 21044 \N \N 6112334 2025-03-26 04:38:38.526 2025-03-26 04:38:38.526 100 FEE 443364 20680 \N \N 6112335 2025-03-26 04:38:38.526 2025-03-26 04:38:38.526 900 TIP 443364 21523 \N \N 6112342 2025-03-26 04:39:44.8 2025-03-26 04:39:44.8 90000 FEE 443197 7119 \N \N 6112343 2025-03-26 04:39:44.8 2025-03-26 04:39:44.8 810000 TIP 443197 11527 \N \N 6112369 2025-03-26 04:42:08.714 2025-03-26 04:42:08.714 1700 FEE 443221 20911 \N \N 6112370 2025-03-26 04:42:08.714 2025-03-26 04:42:08.714 15300 TIP 443221 15160 \N \N 6112376 2025-03-26 04:43:40.756 2025-03-26 04:43:40.756 10000 FEE 443467 21402 \N \N 6112377 2025-03-26 04:43:40.756 2025-03-26 04:43:40.756 90000 TIP 443467 7659 \N \N 6112393 2025-03-26 04:45:29.824 2025-03-26 04:45:29.824 1000 FEE 442904 4083 \N \N 6112394 2025-03-26 04:45:29.824 2025-03-26 04:45:29.824 9000 TIP 442904 977 \N \N 6112441 2025-03-26 04:45:36.134 2025-03-26 04:45:36.134 1000 FEE 442904 21521 \N \N 6112442 2025-03-26 04:45:36.134 2025-03-26 04:45:36.134 9000 TIP 442904 15337 \N \N 6112453 2025-03-26 04:45:40.229 2025-03-26 04:45:40.229 1000 FEE 442904 15556 \N \N 6112454 2025-03-26 04:45:40.229 2025-03-26 04:45:40.229 9000 TIP 442904 1162 \N \N 6112465 2025-03-26 04:45:42.403 2025-03-26 04:45:42.403 4000 FEE 442904 16176 \N \N 6112466 2025-03-26 04:45:42.403 2025-03-26 04:45:42.403 36000 TIP 442904 20778 \N \N 6112471 2025-03-26 04:45:42.603 2025-03-26 04:45:42.603 1000 FEE 442904 15890 \N \N 6112472 2025-03-26 04:45:42.603 2025-03-26 04:45:42.603 9000 TIP 442904 15100 \N \N 6112505 2025-03-26 04:45:46.547 2025-03-26 04:45:46.547 1000 FEE 442904 7668 \N \N 6112506 2025-03-26 04:45:46.547 2025-03-26 04:45:46.547 9000 TIP 442904 16753 \N \N 6112529 2025-03-26 04:45:50.44 2025-03-26 04:45:50.44 1000 FEE 442904 20409 \N \N 6112530 2025-03-26 04:45:50.44 2025-03-26 04:45:50.44 9000 TIP 442904 18473 \N \N 6112531 2025-03-26 04:45:50.51 2025-03-26 04:45:50.51 1000 FEE 442904 16456 \N \N 6112532 2025-03-26 04:45:50.51 2025-03-26 04:45:50.51 9000 TIP 442904 21701 \N \N 6112538 2025-03-26 04:46:46.27 2025-03-26 04:46:46.27 2100 FEE 443274 20912 \N \N 6112539 2025-03-26 04:46:46.27 2025-03-26 04:46:46.27 18900 TIP 443274 20901 \N \N 6112565 2025-03-26 04:52:11.637 2025-03-26 04:52:11.637 1000 FEE 443484 9200 \N \N 6112571 2025-03-26 04:52:38.893 2025-03-26 04:52:38.893 10000 FEE 443477 21042 \N \N 6112572 2025-03-26 04:52:38.893 2025-03-26 04:52:38.893 90000 TIP 443477 9426 \N \N 6112576 2025-03-26 04:53:05.07 2025-03-26 04:53:05.07 10000 FEE 443486 21212 \N \N 6112584 2025-03-26 04:56:24.075 2025-03-26 04:56:24.075 1000 FEE 443488 7185 \N \N 6112589 2025-03-26 04:56:32.958 2025-03-26 04:56:32.958 21000 FEE 443489 4287 \N \N 6112592 2025-03-26 04:56:46.621 2025-03-26 04:56:46.621 100000 FEE 443490 861 \N \N 6112615 2025-03-26 04:59:08.653 2025-03-26 04:59:08.653 500 FEE 443272 7667 \N \N 6112616 2025-03-26 04:59:08.653 2025-03-26 04:59:08.653 4500 TIP 443272 3745 \N \N 6112617 2025-03-26 04:59:13.091 2025-03-26 04:59:13.091 500 FEE 442931 621 \N \N 6112618 2025-03-26 04:59:13.091 2025-03-26 04:59:13.091 4500 TIP 442931 21026 \N \N 6112626 2025-03-26 04:59:39.943 2025-03-26 04:59:39.943 27900 FEE 443339 1603 \N \N 6112627 2025-03-26 04:59:39.943 2025-03-26 04:59:39.943 251100 TIP 443339 9353 \N \N 6112638 2025-03-26 05:00:03.416 2025-03-26 05:00:03.416 1600 FEE 443490 1145 \N \N 6112639 2025-03-26 05:00:03.416 2025-03-26 05:00:03.416 14400 TIP 443490 17162 \N \N 6112666 2025-03-26 05:03:52.09 2025-03-26 05:03:52.09 0 FEE 443490 2232 \N \N 6112674 2025-03-26 05:04:29.765 2025-03-26 05:04:29.765 3100 FEE 443396 2577 \N \N 6112675 2025-03-26 05:04:29.765 2025-03-26 05:04:29.765 27900 TIP 443396 13566 \N \N 6112703 2025-03-26 05:08:11.92 2025-03-26 05:08:11.92 3400 FEE 443197 2151 \N \N 6112704 2025-03-26 05:08:11.92 2025-03-26 05:08:11.92 30600 TIP 443197 11515 \N \N 6112707 2025-03-26 05:08:36.389 2025-03-26 05:08:36.389 1000 FEE 443516 13575 \N \N 6112721 2025-03-26 05:12:11.405 2025-03-26 05:12:11.405 1000 FEE 443519 19471 \N \N 6112722 2025-03-26 05:12:11.405 2025-03-26 05:12:11.405 9000 TIP 443519 3686 \N \N 6112726 2025-03-26 05:12:30.757 2025-03-26 05:12:30.757 2100 FEE 443339 1145 \N \N 6112727 2025-03-26 05:12:30.757 2025-03-26 05:12:30.757 18900 TIP 443339 14669 \N \N 6112741 2025-03-26 05:15:32.629 2025-03-26 05:15:32.629 21000 FEE 443524 13097 \N \N 6112746 2025-03-26 05:16:15.061 2025-03-26 05:16:15.061 0 FEE 443524 17014 \N \N 6112756 2025-03-26 05:16:53.273 2025-03-26 05:16:53.273 1000 FEE 443422 16353 \N \N 6112757 2025-03-26 05:16:53.273 2025-03-26 05:16:53.273 9000 TIP 443422 795 \N \N 6112758 2025-03-26 05:17:08.794 2025-03-26 05:17:08.794 100 FEE 443425 9920 \N \N 6112759 2025-03-26 05:17:08.794 2025-03-26 05:17:08.794 900 TIP 443425 1881 \N \N 6112763 2025-03-26 05:19:05.687 2025-03-26 05:19:05.687 256000 FEE 443528 20062 \N \N 6112783 2025-03-26 05:22:30.809 2025-03-26 05:22:30.809 1000 FEE 443536 11378 \N \N 6112791 2025-03-26 05:23:09.882 2025-03-26 05:23:09.882 1000 FEE 443491 1772 \N \N 6112792 2025-03-26 05:23:09.882 2025-03-26 05:23:09.882 9000 TIP 443491 13599 \N \N 6155389 2025-03-29 08:38:03.497 2025-03-29 08:38:03.497 1000 POLL 448349 10096 \N \N 6155402 2025-03-29 08:39:03.949 2025-03-29 08:39:03.949 1700 FEE 448385 705 \N \N 6155403 2025-03-29 08:39:03.949 2025-03-29 08:39:03.949 15300 TIP 448385 19905 \N \N 6155461 2025-03-29 08:40:35.545 2025-03-29 08:40:35.545 2100 FEE 448370 21148 \N \N 6155462 2025-03-29 08:40:35.545 2025-03-29 08:40:35.545 18900 TIP 448370 20614 \N \N 6155478 2025-03-29 08:42:15.043 2025-03-29 08:42:15.043 2100 FEE 448320 14465 \N \N 6155479 2025-03-29 08:42:15.043 2025-03-29 08:42:15.043 18900 TIP 448320 4989 \N \N 6155493 2025-03-29 08:42:26.844 2025-03-29 08:42:26.844 1000 POLL 448029 2065 \N \N 6155508 2025-03-29 08:43:14.776 2025-03-29 08:43:14.776 1000 FEE 448397 913 \N \N 6155509 2025-03-29 08:43:17.797 2025-03-29 08:43:17.797 2100 FEE 448331 1718 \N \N 6155510 2025-03-29 08:43:17.797 2025-03-29 08:43:17.797 18900 TIP 448331 16834 \N \N 6155512 2025-03-29 08:43:23.7 2025-03-29 08:43:23.7 2100 FEE 448191 18314 \N \N 6155513 2025-03-29 08:43:23.7 2025-03-29 08:43:23.7 18900 TIP 448191 717 \N \N 6155533 2025-03-29 08:44:24.502 2025-03-29 08:44:24.502 2100 FEE 444916 2156 \N \N 6155534 2025-03-29 08:44:24.502 2025-03-29 08:44:24.502 18900 TIP 444916 1114 \N \N 6155595 2025-03-29 08:48:20.467 2025-03-29 08:48:20.467 1000 FEE 448404 16954 \N \N 6155624 2025-03-29 08:53:00.042 2025-03-29 08:53:00.042 100 FEE 448283 698 \N \N 6155625 2025-03-29 08:53:00.042 2025-03-29 08:53:00.042 900 TIP 448283 18449 \N \N 6155629 2025-03-29 08:53:23.111 2025-03-29 08:53:23.111 500 FEE 447944 7654 \N \N 6155630 2025-03-29 08:53:23.111 2025-03-29 08:53:23.111 4500 TIP 447944 658 \N \N 6155665 2025-03-29 08:55:18.165 2025-03-29 08:55:18.165 95000 FEE 448415 20614 \N \N 6041582 2025-03-20 02:07:28.957 2025-03-20 02:07:28.957 10000 FEE 436031 15732 \N \N 6041600 2025-03-20 02:09:15.24 2025-03-20 02:09:15.24 10000 FEE 435812 21116 \N \N 6041601 2025-03-20 02:09:15.24 2025-03-20 02:09:15.24 90000 TIP 435812 17041 \N \N 6041608 2025-03-20 02:12:09.299 2025-03-20 02:12:09.299 0 FEE 436031 2829 \N \N 6041623 2025-03-20 02:20:02.072 2025-03-20 02:20:02.072 2500 FEE 436023 2832 \N \N 6041624 2025-03-20 02:20:02.072 2025-03-20 02:20:02.072 22500 TIP 436023 14280 \N \N 6041656 2025-03-20 02:22:42.299 2025-03-20 02:22:42.299 2100 FEE 436016 11018 \N \N 6041657 2025-03-20 02:22:42.299 2025-03-20 02:22:42.299 18900 TIP 436016 1512 \N \N 6041658 2025-03-20 02:22:51.329 2025-03-20 02:22:51.329 2100 FEE 436014 18351 \N \N 6041659 2025-03-20 02:22:51.329 2025-03-20 02:22:51.329 18900 TIP 436014 7992 \N \N 6041670 2025-03-20 02:23:57.299 2025-03-20 02:23:57.299 1000 FEE 435935 9295 \N \N 6041671 2025-03-20 02:23:57.299 2025-03-20 02:23:57.299 9000 TIP 435935 18901 \N \N 6041684 2025-03-20 02:24:38.392 2025-03-20 02:24:38.392 1000 FEE 436039 8176 \N \N 6041689 2025-03-20 02:25:06.475 2025-03-20 02:25:06.475 1000 POLL 435516 17157 \N \N 6041707 2025-03-20 02:29:14.821 2025-03-20 02:29:14.821 1000 FEE 436046 19094 \N \N 6041717 2025-03-20 02:31:51.705 2025-03-20 02:31:51.705 1000 FEE 436050 12566 \N \N 6041733 2025-03-20 02:38:13.733 2025-03-20 02:38:13.733 1000 FEE 436053 5425 \N \N 6041739 2025-03-20 02:39:20.166 2025-03-20 02:39:20.166 1000 FEE 435993 8380 \N \N 6041740 2025-03-20 02:39:20.166 2025-03-20 02:39:20.166 9000 TIP 435993 20972 \N \N 6041758 2025-03-20 02:42:17.086 2025-03-20 02:42:17.086 1000 FEE 436058 6202 \N \N 6041767 2025-03-20 02:44:46.457 2025-03-20 02:44:46.457 1000 POLL 436036 20751 \N \N 6041770 2025-03-20 02:46:01.51 2025-03-20 02:46:01.51 10000 FEE 436062 17291 \N \N 6041781 2025-03-20 02:49:18.725 2025-03-20 02:49:18.725 100 FEE 436030 3717 \N \N 6041782 2025-03-20 02:49:18.725 2025-03-20 02:49:18.725 900 TIP 436030 20599 \N \N 6041797 2025-03-20 02:49:20.773 2025-03-20 02:49:20.773 100 FEE 436030 1784 \N \N 6041798 2025-03-20 02:49:20.773 2025-03-20 02:49:20.773 900 TIP 436030 21067 \N \N 6041822 2025-03-20 02:51:08.818 2025-03-20 02:51:08.818 100 FEE 436048 15049 \N \N 6041823 2025-03-20 02:51:08.818 2025-03-20 02:51:08.818 900 TIP 436048 9611 \N \N 6041827 2025-03-20 02:51:28.84 2025-03-20 02:51:28.84 1000 FEE 435509 659 \N \N 6041828 2025-03-20 02:51:28.84 2025-03-20 02:51:28.84 9000 TIP 435509 21044 \N \N 6041851 2025-03-20 02:53:03.938 2025-03-20 02:53:03.938 2100 FEE 436029 16387 \N \N 6041852 2025-03-20 02:53:03.938 2025-03-20 02:53:03.938 18900 TIP 436029 16633 \N \N 6041866 2025-03-20 02:53:55.21 2025-03-20 02:53:55.21 1600 FEE 435912 1124 \N \N 6041867 2025-03-20 02:53:55.21 2025-03-20 02:53:55.21 14400 TIP 435912 20511 \N \N 6041892 2025-03-20 02:56:00.299 2025-03-20 02:56:00.299 2100 FEE 436007 21600 \N \N 6041893 2025-03-20 02:56:00.299 2025-03-20 02:56:00.299 18900 TIP 436007 822 \N \N 6041894 2025-03-20 02:56:01.939 2025-03-20 02:56:01.939 2100 FEE 436005 21021 \N \N 6041895 2025-03-20 02:56:01.939 2025-03-20 02:56:01.939 18900 TIP 436005 1802 \N \N 6041898 2025-03-20 02:56:03.961 2025-03-20 02:56:03.961 2100 FEE 436015 1890 \N \N 6041899 2025-03-20 02:56:03.961 2025-03-20 02:56:03.961 18900 TIP 436015 19471 \N \N 6041922 2025-03-20 02:58:01.105 2025-03-20 02:58:01.105 2100 FEE 435926 20182 \N \N 6041923 2025-03-20 02:58:01.105 2025-03-20 02:58:01.105 18900 TIP 435926 635 \N \N 6041982 2025-03-20 03:04:51.123 2025-03-20 03:04:51.123 1900 FEE 435936 5703 \N \N 6041983 2025-03-20 03:04:51.123 2025-03-20 03:04:51.123 17100 TIP 435936 21048 \N \N 6041989 2025-03-20 03:06:57.966 2025-03-20 03:06:57.966 4000 FEE 436076 10096 \N \N 6041990 2025-03-20 03:06:57.966 2025-03-20 03:06:57.966 36000 TIP 436076 9705 \N \N 6041992 2025-03-20 03:07:23.084 2025-03-20 03:07:23.084 4200 FEE 435812 10280 \N \N 6041993 2025-03-20 03:07:23.084 2025-03-20 03:07:23.084 37800 TIP 435812 21647 \N \N 6042032 2025-03-20 03:17:52.47 2025-03-20 03:17:52.47 1000 FEE 436086 21061 \N \N 6042036 2025-03-20 03:19:09.194 2025-03-20 03:19:09.194 500 FEE 434665 8508 \N \N 6042037 2025-03-20 03:19:09.194 2025-03-20 03:19:09.194 4500 TIP 434665 15510 \N \N 6042057 2025-03-20 03:27:33.3 2025-03-20 03:27:33.3 1000 FEE 436091 1567 \N \N 6042062 2025-03-20 03:27:55.015 2025-03-20 03:27:55.015 2100 FEE 435935 14271 \N \N 6042063 2025-03-20 03:27:55.015 2025-03-20 03:27:55.015 18900 TIP 435935 20377 \N \N 6042083 2025-03-20 03:29:05.22 2025-03-20 03:29:05.22 2100 FEE 436081 17124 \N \N 6042084 2025-03-20 03:29:05.22 2025-03-20 03:29:05.22 18900 TIP 436081 1697 \N \N 6042087 2025-03-20 03:29:06.788 2025-03-20 03:29:06.788 200 FEE 436081 19930 \N \N 6042088 2025-03-20 03:29:06.788 2025-03-20 03:29:06.788 1800 TIP 436081 11897 \N \N 6042096 2025-03-20 03:29:20.711 2025-03-20 03:29:20.711 1000 FEE 435861 2774 \N \N 6042097 2025-03-20 03:29:20.711 2025-03-20 03:29:20.711 9000 TIP 435861 4313 \N \N 6042119 2025-03-20 03:32:46.943 2025-03-20 03:32:46.943 3200 FEE 436072 1130 \N \N 6042120 2025-03-20 03:32:46.943 2025-03-20 03:32:46.943 28800 TIP 436072 705 \N \N 6042121 2025-03-20 03:33:12.588 2025-03-20 03:33:12.588 1000 FEE 436100 10016 \N \N 6042132 2025-03-20 03:36:42.704 2025-03-20 03:36:42.704 200 FEE 435867 8376 \N \N 6042133 2025-03-20 03:36:42.704 2025-03-20 03:36:42.704 1800 TIP 435867 2326 \N \N 6042134 2025-03-20 03:36:45.435 2025-03-20 03:36:45.435 200 FEE 435557 20157 \N \N 6042135 2025-03-20 03:36:45.435 2025-03-20 03:36:45.435 1800 TIP 435557 19992 \N \N 6042136 2025-03-20 03:36:48.497 2025-03-20 03:36:48.497 200 FEE 435866 16214 \N \N 6042137 2025-03-20 03:36:48.497 2025-03-20 03:36:48.497 1800 TIP 435866 4259 \N \N 6042146 2025-03-20 03:39:19.83 2025-03-20 03:39:19.83 2100 FEE 436051 14295 \N \N 6042147 2025-03-20 03:39:19.83 2025-03-20 03:39:19.83 18900 TIP 436051 20751 \N \N 6042152 2025-03-20 03:40:00.572 2025-03-20 03:40:00.572 1700 FEE 435891 16704 \N \N 6042153 2025-03-20 03:40:00.572 2025-03-20 03:40:00.572 15300 TIP 435891 16354 \N \N 6042157 2025-03-20 03:40:16.861 2025-03-20 03:40:16.861 200 FEE 436093 17727 \N \N 6042158 2025-03-20 03:40:16.861 2025-03-20 03:40:16.861 1800 TIP 436093 9349 \N \N 6042190 2025-03-20 03:45:07.997 2025-03-20 03:45:07.997 1000 FEE 436112 8954 \N \N 6042260 2025-03-20 03:53:11.027 2025-03-20 03:53:11.027 2300 FEE 435928 20768 \N \N 6042261 2025-03-20 03:53:11.027 2025-03-20 03:53:11.027 20700 TIP 435928 15160 \N \N 6042264 2025-03-20 03:53:11.407 2025-03-20 03:53:11.407 2300 FEE 435928 3717 \N \N 6042265 2025-03-20 03:53:11.407 2025-03-20 03:53:11.407 20700 TIP 435928 937 \N \N 6042276 2025-03-20 03:53:12.704 2025-03-20 03:53:12.704 2300 FEE 435928 831 \N \N 6042277 2025-03-20 03:53:12.704 2025-03-20 03:53:12.704 20700 TIP 435928 5775 \N \N 6042290 2025-03-20 03:53:15.638 2025-03-20 03:53:15.638 2300 FEE 435928 17331 \N \N 6042291 2025-03-20 03:53:15.638 2025-03-20 03:53:15.638 20700 TIP 435928 690 \N \N 6042300 2025-03-20 03:53:16.518 2025-03-20 03:53:16.518 2300 FEE 435928 17708 \N \N 6042301 2025-03-20 03:53:16.518 2025-03-20 03:53:16.518 20700 TIP 435928 5942 \N \N 6042381 2025-03-20 03:53:32.113 2025-03-20 03:53:32.113 0 FEE 436120 20198 \N \N 6042386 2025-03-20 03:53:32.635 2025-03-20 03:53:32.635 2300 FEE 435928 7891 \N \N 6042387 2025-03-20 03:53:32.635 2025-03-20 03:53:32.635 20700 TIP 435928 6687 \N \N 6042388 2025-03-20 03:53:32.813 2025-03-20 03:53:32.813 2300 FEE 435928 19471 \N \N 6042389 2025-03-20 03:53:32.813 2025-03-20 03:53:32.813 20700 TIP 435928 1729 \N \N 6042399 2025-03-20 03:53:33.978 2025-03-20 03:53:33.978 2300 FEE 435928 12870 \N \N 6042400 2025-03-20 03:53:33.978 2025-03-20 03:53:33.978 20700 TIP 435928 3213 \N \N 6042421 2025-03-20 03:54:18.288 2025-03-20 03:54:18.288 4600 FEE 435847 4831 \N \N 6042422 2025-03-20 03:54:18.288 2025-03-20 03:54:18.288 41400 TIP 435847 1120 \N \N 6042431 2025-03-20 03:54:19.385 2025-03-20 03:54:19.385 2300 FEE 435847 21136 \N \N 6041755 2025-03-20 02:41:42.855 2025-03-20 02:41:42.855 100 FEE 436033 2328 \N \N 6041756 2025-03-20 02:41:42.855 2025-03-20 02:41:42.855 900 TIP 436033 9355 \N \N 6041791 2025-03-20 02:49:20.145 2025-03-20 02:49:20.145 100 FEE 436030 14381 \N \N 6041792 2025-03-20 02:49:20.145 2025-03-20 02:49:20.145 900 TIP 436030 18426 \N \N 6041793 2025-03-20 02:49:20.312 2025-03-20 02:49:20.312 100 FEE 436030 4831 \N \N 6041794 2025-03-20 02:49:20.312 2025-03-20 02:49:20.312 900 TIP 436030 3409 \N \N 6041817 2025-03-20 02:50:23.288 2025-03-20 02:50:23.288 1000 FEE 436068 19488 \N \N 6041832 2025-03-20 02:51:46.207 2025-03-20 02:51:46.207 1000 FEE 436015 17690 \N \N 6041833 2025-03-20 02:51:46.207 2025-03-20 02:51:46.207 9000 TIP 436015 620 \N \N 6041849 2025-03-20 02:52:56.182 2025-03-20 02:52:56.182 2100 FEE 436030 2596 \N \N 6041850 2025-03-20 02:52:56.182 2025-03-20 02:52:56.182 18900 TIP 436030 3417 \N \N 6041853 2025-03-20 02:53:07.793 2025-03-20 02:53:07.793 2100 FEE 436045 1985 \N \N 6041854 2025-03-20 02:53:07.793 2025-03-20 02:53:07.793 18900 TIP 436045 1505 \N \N 6041856 2025-03-20 02:53:09.777 2025-03-20 02:53:09.777 2100 FEE 436031 12356 \N \N 6041857 2025-03-20 02:53:09.777 2025-03-20 02:53:09.777 18900 TIP 436031 5293 \N \N 6041881 2025-03-20 02:55:18.988 2025-03-20 02:55:18.988 1000 FEE 436072 859 \N \N 6041913 2025-03-20 02:57:16.023 2025-03-20 02:57:16.023 1000 FEE 436074 8459 \N \N 6041914 2025-03-20 02:57:34.807 2025-03-20 02:57:34.807 2100 FEE 435986 11395 \N \N 6041915 2025-03-20 02:57:34.807 2025-03-20 02:57:34.807 18900 TIP 435986 8004 \N \N 6041924 2025-03-20 02:58:05.733 2025-03-20 02:58:05.733 4000 FEE 436065 10311 \N \N 6041925 2025-03-20 02:58:05.733 2025-03-20 02:58:05.733 36000 TIP 436065 16230 \N \N 6041958 2025-03-20 03:01:30.902 2025-03-20 03:01:30.902 1000 FEE 436079 17091 \N \N 6041995 2025-03-20 03:08:54.064 2025-03-20 03:08:54.064 1000 FEE 436083 21060 \N \N 6042012 2025-03-20 03:14:41.893 2025-03-20 03:14:41.893 2100 FEE 436076 4474 \N \N 6042013 2025-03-20 03:14:41.893 2025-03-20 03:14:41.893 18900 TIP 436076 760 \N \N 6042015 2025-03-20 03:15:18.142 2025-03-20 03:15:18.142 2100 FEE 436079 20454 \N \N 6042016 2025-03-20 03:15:18.142 2025-03-20 03:15:18.142 18900 TIP 436079 21178 \N \N 6042021 2025-03-20 03:16:05.328 2025-03-20 03:16:05.328 1000 FEE 436084 13132 \N \N 6042023 2025-03-20 03:16:15.77 2025-03-20 03:16:15.77 2100 FEE 435955 1985 \N \N 6042024 2025-03-20 03:16:15.77 2025-03-20 03:16:15.77 18900 TIP 435955 17568 \N \N 6042068 2025-03-20 03:28:05.239 2025-03-20 03:28:05.239 2100 FEE 435746 20840 \N \N 6042069 2025-03-20 03:28:05.239 2025-03-20 03:28:05.239 18900 TIP 435746 667 \N \N 6042089 2025-03-20 03:29:09.62 2025-03-20 03:29:09.62 2100 FEE 436036 6202 \N \N 6042090 2025-03-20 03:29:09.62 2025-03-20 03:29:09.62 18900 TIP 436036 11443 \N \N 6042108 2025-03-20 03:31:23.58 2025-03-20 03:31:23.58 1000 FEE 435574 11670 \N \N 6042109 2025-03-20 03:31:23.58 2025-03-20 03:31:23.58 9000 TIP 435574 9695 \N \N 6042150 2025-03-20 03:39:27.585 2025-03-20 03:39:27.585 10000 FEE 436100 20377 \N \N 6042151 2025-03-20 03:39:27.585 2025-03-20 03:39:27.585 90000 TIP 436100 2829 \N \N 6042154 2025-03-20 03:40:09.653 2025-03-20 03:40:09.653 1700 FEE 435714 672 \N \N 6042155 2025-03-20 03:40:09.653 2025-03-20 03:40:09.653 15300 TIP 435714 18630 \N \N 6042170 2025-03-20 03:43:11.042 2025-03-20 03:43:11.042 2800 FEE 436037 12356 \N \N 6042171 2025-03-20 03:43:11.042 2025-03-20 03:43:11.042 25200 TIP 436037 1044 \N \N 6042173 2025-03-20 03:43:20.725 2025-03-20 03:43:20.725 1000 FEE 436107 17517 \N \N 6042174 2025-03-20 03:43:31 2025-03-20 03:43:31 2800 FEE 436097 21455 \N \N 6042175 2025-03-20 03:43:31 2025-03-20 03:43:31 25200 TIP 436097 770 \N \N 6042185 2025-03-20 03:44:31.689 2025-03-20 03:44:31.689 10000 FEE 436093 20734 \N \N 6042186 2025-03-20 03:44:31.689 2025-03-20 03:44:31.689 90000 TIP 436093 861 \N \N 6042188 2025-03-20 03:44:42.684 2025-03-20 03:44:42.684 100000 FEE 436110 10270 \N \N 6042192 2025-03-20 03:45:36.822 2025-03-20 03:45:36.822 1000 FEE 436113 17494 \N \N 6042205 2025-03-20 03:49:17.162 2025-03-20 03:49:17.162 1000 FEE 436118 672 \N \N 6042246 2025-03-20 03:53:09.795 2025-03-20 03:53:09.795 2300 FEE 435928 18225 \N \N 6042247 2025-03-20 03:53:09.795 2025-03-20 03:53:09.795 20700 TIP 435928 674 \N \N 6042248 2025-03-20 03:53:09.946 2025-03-20 03:53:09.946 2300 FEE 435928 16571 \N \N 6042249 2025-03-20 03:53:09.946 2025-03-20 03:53:09.946 20700 TIP 435928 17411 \N \N 6042278 2025-03-20 03:53:12.925 2025-03-20 03:53:12.925 2300 FEE 435928 19471 \N \N 6042279 2025-03-20 03:53:12.925 2025-03-20 03:53:12.925 20700 TIP 435928 16513 \N \N 6042284 2025-03-20 03:53:13.636 2025-03-20 03:53:13.636 4600 FEE 435928 20602 \N \N 6042285 2025-03-20 03:53:13.636 2025-03-20 03:53:13.636 41400 TIP 435928 20280 \N \N 6042292 2025-03-20 03:53:15.828 2025-03-20 03:53:15.828 2300 FEE 435928 19121 \N \N 6042293 2025-03-20 03:53:15.828 2025-03-20 03:53:15.828 20700 TIP 435928 12821 \N \N 6042334 2025-03-20 03:53:20.767 2025-03-20 03:53:20.767 2300 FEE 435928 17001 \N \N 6042335 2025-03-20 03:53:20.767 2025-03-20 03:53:20.767 20700 TIP 435928 7992 \N \N 6042359 2025-03-20 03:53:28.992 2025-03-20 03:53:28.992 4600 FEE 435928 20939 \N \N 6042360 2025-03-20 03:53:28.992 2025-03-20 03:53:28.992 41400 TIP 435928 9166 \N \N 6042363 2025-03-20 03:53:30.267 2025-03-20 03:53:30.267 2300 FEE 435928 20205 \N \N 6042364 2025-03-20 03:53:30.267 2025-03-20 03:53:30.267 20700 TIP 435928 16808 \N \N 6042367 2025-03-20 03:53:31.077 2025-03-20 03:53:31.077 2300 FEE 435928 11038 \N \N 6042368 2025-03-20 03:53:31.077 2025-03-20 03:53:31.077 20700 TIP 435928 16858 \N \N 6042409 2025-03-20 03:53:35.191 2025-03-20 03:53:35.191 2300 FEE 435928 20778 \N \N 6042410 2025-03-20 03:53:35.191 2025-03-20 03:53:35.191 20700 TIP 435928 21047 \N \N 6042457 2025-03-20 03:54:21.968 2025-03-20 03:54:21.968 2300 FEE 435847 21412 \N \N 6042458 2025-03-20 03:54:21.968 2025-03-20 03:54:21.968 20700 TIP 435847 9916 \N \N 6042459 2025-03-20 03:54:22.193 2025-03-20 03:54:22.193 2300 FEE 435847 4650 \N \N 6042460 2025-03-20 03:54:22.193 2025-03-20 03:54:22.193 20700 TIP 435847 14168 \N \N 6042484 2025-03-20 03:54:24.994 2025-03-20 03:54:24.994 2300 FEE 435847 6164 \N \N 6042485 2025-03-20 03:54:24.994 2025-03-20 03:54:24.994 20700 TIP 435847 14731 \N \N 6042488 2025-03-20 03:54:25.323 2025-03-20 03:54:25.323 2300 FEE 435847 946 \N \N 6042489 2025-03-20 03:54:25.323 2025-03-20 03:54:25.323 20700 TIP 435847 16753 \N \N 6042492 2025-03-20 03:54:25.93 2025-03-20 03:54:25.93 2300 FEE 435847 19952 \N \N 6042493 2025-03-20 03:54:25.93 2025-03-20 03:54:25.93 20700 TIP 435847 21320 \N \N 6042494 2025-03-20 03:54:36.514 2025-03-20 03:54:36.514 2100 FEE 435925 1761 \N \N 6042495 2025-03-20 03:54:36.514 2025-03-20 03:54:36.514 18900 TIP 435925 1652 \N \N 6042512 2025-03-20 03:54:49.204 2025-03-20 03:54:49.204 2300 FEE 435944 16876 \N \N 6042513 2025-03-20 03:54:49.204 2025-03-20 03:54:49.204 20700 TIP 435944 6335 \N \N 6042518 2025-03-20 03:54:49.744 2025-03-20 03:54:49.744 2300 FEE 435944 9906 \N \N 6042519 2025-03-20 03:54:49.744 2025-03-20 03:54:49.744 20700 TIP 435944 15491 \N \N 6042526 2025-03-20 03:54:50.772 2025-03-20 03:54:50.772 2300 FEE 435944 20291 \N \N 6042527 2025-03-20 03:54:50.772 2025-03-20 03:54:50.772 20700 TIP 435944 2402 \N \N 6042528 2025-03-20 03:54:50.944 2025-03-20 03:54:50.944 2300 FEE 435944 20811 \N \N 6042529 2025-03-20 03:54:50.944 2025-03-20 03:54:50.944 20700 TIP 435944 2639 \N \N 6042536 2025-03-20 03:55:19.395 2025-03-20 03:55:19.395 4000 FEE 436053 14225 \N \N 6042537 2025-03-20 03:55:19.395 2025-03-20 03:55:19.395 36000 TIP 436053 16289 \N \N 6042548 2025-03-20 03:56:38.657 2025-03-20 03:56:38.657 700 FEE 436025 1425 \N \N 6042549 2025-03-20 03:56:38.657 2025-03-20 03:56:38.657 6300 TIP 436025 13042 \N \N 6042554 2025-03-20 03:57:01.725 2025-03-20 03:57:01.725 1000 FEE 436127 16754 \N \N 6042562 2025-03-20 03:58:09.754 2025-03-20 03:58:09.754 1000 FEE 435847 974 \N \N 6042563 2025-03-20 03:58:09.754 2025-03-20 03:58:09.754 9000 TIP 435847 688 \N \N 6042574 2025-03-20 03:59:03.665 2025-03-20 03:59:03.665 1000 FEE 436129 831 \N \N 6042590 2025-03-20 04:02:22.525 2025-03-20 04:02:22.525 10000 FEE 435973 1433 \N \N 6042591 2025-03-20 04:02:22.525 2025-03-20 04:02:22.525 90000 TIP 435973 897 \N \N 6042594 2025-03-20 04:02:24.033 2025-03-20 04:02:24.033 10000 FEE 435948 1713 \N \N 6042595 2025-03-20 04:02:24.033 2025-03-20 04:02:24.033 90000 TIP 435948 831 \N \N 6042600 2025-03-20 04:02:38.809 2025-03-20 04:02:38.809 10000 FEE 435997 21022 \N \N 6042601 2025-03-20 04:02:38.809 2025-03-20 04:02:38.809 90000 TIP 435997 827 \N \N 6042602 2025-03-20 04:02:56.37 2025-03-20 04:02:56.37 1000 FEE 436134 10862 \N \N 6041762 2025-03-20 02:43:34.758 2025-03-20 02:43:34.758 4200 FEE 435728 19502 \N \N 6041763 2025-03-20 02:43:34.758 2025-03-20 02:43:34.758 37800 TIP 435728 20137 \N \N 6041789 2025-03-20 02:49:19.837 2025-03-20 02:49:19.837 100 FEE 436030 4388 \N \N 6041790 2025-03-20 02:49:19.837 2025-03-20 02:49:19.837 900 TIP 436030 15463 \N \N 6041809 2025-03-20 02:50:21.863 2025-03-20 02:50:21.863 100 FEE 436030 5128 \N \N 6041810 2025-03-20 02:50:21.863 2025-03-20 02:50:21.863 900 TIP 436030 1051 \N \N 6041811 2025-03-20 02:50:22.184 2025-03-20 02:50:22.184 100 FEE 436030 20681 \N \N 6041812 2025-03-20 02:50:22.184 2025-03-20 02:50:22.184 900 TIP 436030 11885 \N \N 6041838 2025-03-20 02:52:20.036 2025-03-20 02:52:20.036 2100 FEE 436057 20179 \N \N 6041839 2025-03-20 02:52:20.036 2025-03-20 02:52:20.036 18900 TIP 436057 1478 \N \N 6041870 2025-03-20 02:54:13.309 2025-03-20 02:54:13.309 0 FEE 436065 2196 \N \N 6041929 2025-03-20 02:58:14.165 2025-03-20 02:58:14.165 2100 FEE 435883 1495 \N \N 6041930 2025-03-20 02:58:14.165 2025-03-20 02:58:14.165 18900 TIP 435883 20500 \N \N 6041936 2025-03-20 02:58:46.975 2025-03-20 02:58:46.975 2100 FEE 435882 9758 \N \N 6041937 2025-03-20 02:58:46.975 2025-03-20 02:58:46.975 18900 TIP 435882 20201 \N \N 6041949 2025-03-20 03:00:29.266 2025-03-20 03:00:29.266 1600 FEE 436047 9169 \N \N 6041950 2025-03-20 03:00:29.266 2025-03-20 03:00:29.266 14400 TIP 436047 21416 \N \N 6041962 2025-03-20 03:02:24.35 2025-03-20 03:02:24.35 4000 FEE 436062 940 \N \N 6041963 2025-03-20 03:02:24.35 2025-03-20 03:02:24.35 36000 TIP 436062 20222 \N \N 6041964 2025-03-20 03:02:30.467 2025-03-20 03:02:30.467 100 FEE 435986 5865 \N \N 6041965 2025-03-20 03:02:30.467 2025-03-20 03:02:30.467 900 TIP 435986 811 \N \N 6041969 2025-03-20 03:03:27.833 2025-03-20 03:03:27.833 1000 FEE 436080 1008 \N \N 6041970 2025-03-20 03:03:39.254 2025-03-20 03:03:39.254 4200 FEE 435046 11999 \N \N 6041971 2025-03-20 03:03:39.254 2025-03-20 03:03:39.254 37800 TIP 435046 631 \N \N 6042041 2025-03-20 03:21:18.596 2025-03-20 03:21:18.596 10000 FEE 436089 7891 \N \N 6042058 2025-03-20 03:27:38.949 2025-03-20 03:27:38.949 10000 FEE 436065 10944 \N \N 6042059 2025-03-20 03:27:38.949 2025-03-20 03:27:38.949 90000 TIP 436065 2832 \N \N 6042066 2025-03-20 03:28:03.297 2025-03-20 03:28:03.297 2100 FEE 436062 21815 \N \N 6042067 2025-03-20 03:28:03.297 2025-03-20 03:28:03.297 18900 TIP 436062 21631 \N \N 6042079 2025-03-20 03:29:01.573 2025-03-20 03:29:01.573 2100 FEE 436082 11450 \N \N 6042080 2025-03-20 03:29:01.573 2025-03-20 03:29:01.573 18900 TIP 436082 17696 \N \N 6042094 2025-03-20 03:29:20.265 2025-03-20 03:29:20.265 200 FEE 436079 16177 \N \N 6042095 2025-03-20 03:29:20.265 2025-03-20 03:29:20.265 1800 TIP 436079 10063 \N \N 6042104 2025-03-20 03:31:01.767 2025-03-20 03:31:01.767 125000 FEE 436093 3400 \N \N 6042105 2025-03-20 03:31:02.799 2025-03-20 03:31:02.799 1000 FEE 436094 21022 \N \N 6042110 2025-03-20 03:31:35.673 2025-03-20 03:31:35.673 2100 FEE 435579 1970 \N \N 6042111 2025-03-20 03:31:35.673 2025-03-20 03:31:35.673 18900 TIP 435579 21014 \N \N 6042123 2025-03-20 03:33:33.854 2025-03-20 03:33:33.854 0 FEE 436100 11298 \N \N 6042140 2025-03-20 03:38:37.794 2025-03-20 03:38:37.794 1000 FEE 436094 12278 \N \N 6042141 2025-03-20 03:38:37.794 2025-03-20 03:38:37.794 9000 TIP 436094 21339 \N \N 6042167 2025-03-20 03:42:28.231 2025-03-20 03:42:28.231 2800 FEE 436053 20734 \N \N 6042168 2025-03-20 03:42:28.231 2025-03-20 03:42:28.231 25200 TIP 436053 5497 \N \N 6155416 2025-03-29 08:39:10.475 2025-03-29 08:39:10.475 2100 FEE 448205 2039 \N \N 6155417 2025-03-29 08:39:10.475 2025-03-29 08:39:10.475 18900 TIP 448205 10273 \N \N 6155433 2025-03-29 08:39:15.87 2025-03-29 08:39:15.87 2100 FEE 448363 12049 \N \N 6155434 2025-03-29 08:39:15.87 2025-03-29 08:39:15.87 18900 TIP 448363 13547 \N \N 6155465 2025-03-29 08:41:03.56 2025-03-29 08:41:03.56 10100 FEE 448049 19777 \N \N 6155466 2025-03-29 08:41:03.56 2025-03-29 08:41:03.56 90900 TIP 448049 636 \N \N 6155469 2025-03-29 08:41:16.408 2025-03-29 08:41:16.408 3200 FEE 448373 21480 \N \N 6155470 2025-03-29 08:41:16.408 2025-03-29 08:41:16.408 28800 TIP 448373 15762 \N \N 6155592 2025-03-29 08:47:31.929 2025-03-29 08:47:31.929 10000 FEE 448185 698 \N \N 6155593 2025-03-29 08:47:31.929 2025-03-29 08:47:31.929 90000 TIP 448185 7978 \N \N 6155597 2025-03-29 08:49:06.26 2025-03-29 08:49:06.26 2100 FEE 448373 15147 \N \N 6155598 2025-03-29 08:49:06.26 2025-03-29 08:49:06.26 18900 TIP 448373 2330 \N \N 6155620 2025-03-29 08:52:20.996 2025-03-29 08:52:20.996 0 FEE 448404 4862 \N \N 6155671 2025-03-29 08:56:03.295 2025-03-29 08:56:03.295 800 FEE 448263 692 \N \N 6155672 2025-03-29 08:56:03.295 2025-03-29 08:56:03.295 7200 TIP 448263 21287 \N \N 6155676 2025-03-29 08:57:01.459 2025-03-29 08:57:01.459 5000 FEE 448395 16424 \N \N 6155677 2025-03-29 08:57:01.459 2025-03-29 08:57:01.459 45000 TIP 448395 21672 \N \N 6155684 2025-03-29 08:57:57.617 2025-03-29 08:57:57.617 1000 FEE 448422 12965 \N \N 6155692 2025-03-29 08:59:15.908 2025-03-29 08:59:15.908 1000 FEE 448423 19637 \N \N 6155693 2025-03-29 08:59:15.908 2025-03-29 08:59:15.908 9000 TIP 448423 1007 \N \N 6155705 2025-03-29 09:01:12.719 2025-03-29 09:01:12.719 1000 FEE 448429 1105 \N \N 6155707 2025-03-29 09:01:26.318 2025-03-29 09:01:26.318 1000 FEE 448349 12057 \N \N 6155708 2025-03-29 09:01:26.318 2025-03-29 09:01:26.318 9000 TIP 448349 19494 \N \N 6155716 2025-03-29 09:02:23.804 2025-03-29 09:02:23.804 1000 POLL 448349 769 \N \N 6155720 2025-03-29 09:03:17.251 2025-03-29 09:03:17.251 100 FEE 448415 2583 \N \N 6155721 2025-03-29 09:03:17.251 2025-03-29 09:03:17.251 900 TIP 448415 16942 \N \N 6155745 2025-03-29 09:05:12.09 2025-03-29 09:05:12.09 1000 FEE 448438 5487 \N \N 6155752 2025-03-29 09:06:10.058 2025-03-29 09:06:10.058 1000 FEE 448440 20294 \N \N 6155755 2025-03-29 09:06:39.151 2025-03-29 09:06:39.151 0 FEE 448439 946 \N \N 6155768 2025-03-29 09:07:25.199 2025-03-29 09:07:25.199 2100 FEE 448394 13361 \N \N 6155769 2025-03-29 09:07:25.199 2025-03-29 09:07:25.199 18900 TIP 448394 9969 \N \N 6155780 2025-03-29 09:08:09.837 2025-03-29 09:08:09.837 10000 FEE 448445 4173 \N \N 6155784 2025-03-29 09:08:31.115 2025-03-29 09:08:31.115 1000 FEE 448446 5661 \N \N 6155793 2025-03-29 09:08:38.664 2025-03-29 09:08:38.664 2100 FEE 448341 1512 \N \N 6155794 2025-03-29 09:08:38.664 2025-03-29 09:08:38.664 18900 TIP 448341 9496 \N \N 6155795 2025-03-29 09:08:39.986 2025-03-29 09:08:39.986 2100 FEE 448437 10693 \N \N 6155796 2025-03-29 09:08:39.986 2025-03-29 09:08:39.986 18900 TIP 448437 20799 \N \N 6155799 2025-03-29 09:08:41.919 2025-03-29 09:08:41.919 2100 FEE 448301 12911 \N \N 6155800 2025-03-29 09:08:41.919 2025-03-29 09:08:41.919 18900 TIP 448301 16336 \N \N 6155807 2025-03-29 09:08:58.508 2025-03-29 09:08:58.508 5000 FEE 344372 4692 \N \N 6155808 2025-03-29 09:08:58.508 2025-03-29 09:08:58.508 45000 TIP 344372 13055 \N \N 6155816 2025-03-29 09:09:02.822 2025-03-29 09:09:02.822 2100 FEE 448168 8376 \N \N 6155817 2025-03-29 09:09:02.822 2025-03-29 09:09:02.822 18900 TIP 448168 18441 \N \N 6155828 2025-03-29 09:09:18.789 2025-03-29 09:09:18.789 1000 FEE 448415 16410 \N \N 6155829 2025-03-29 09:09:18.789 2025-03-29 09:09:18.789 9000 TIP 448415 20998 \N \N 6155854 2025-03-29 09:09:31.18 2025-03-29 09:09:31.18 1000 FEE 448450 15521 \N \N 6155934 2025-03-29 09:16:57.289 2025-03-29 09:16:57.289 1000 FEE 448409 15549 \N \N 6155935 2025-03-29 09:16:57.289 2025-03-29 09:16:57.289 9000 TIP 448409 2593 \N \N 6155974 2025-03-29 09:18:44.657 2025-03-29 09:18:44.657 10000 FEE 448391 20757 \N \N 6155975 2025-03-29 09:18:44.657 2025-03-29 09:18:44.657 90000 TIP 448391 16543 \N \N 6041786 2025-03-20 02:49:19.354 2025-03-20 02:49:19.354 900 TIP 436030 5500 \N \N 6041806 2025-03-20 02:50:15.083 2025-03-20 02:50:15.083 1000 FEE 436067 9551 \N \N 6041820 2025-03-20 02:51:01.32 2025-03-20 02:51:01.32 100 FEE 436057 14663 \N \N 6041821 2025-03-20 02:51:01.32 2025-03-20 02:51:01.32 900 TIP 436057 21088 \N \N 6041855 2025-03-20 02:53:08.665 2025-03-20 02:53:08.665 1000 FEE 436070 616 \N \N 6041876 2025-03-20 02:54:44.263 2025-03-20 02:54:44.263 1600 FEE 435935 10112 \N \N 6041877 2025-03-20 02:54:44.263 2025-03-20 02:54:44.263 14400 TIP 435935 979 \N \N 6041907 2025-03-20 02:56:23.627 2025-03-20 02:56:23.627 2100 FEE 435988 11378 \N \N 6041908 2025-03-20 02:56:23.627 2025-03-20 02:56:23.627 18900 TIP 435988 802 \N \N 6041910 2025-03-20 02:57:11.765 2025-03-20 02:57:11.765 10000 FEE 435944 17082 \N \N 6041911 2025-03-20 02:57:11.765 2025-03-20 02:57:11.765 90000 TIP 435944 2942 \N \N 6041920 2025-03-20 02:57:43.448 2025-03-20 02:57:43.448 2100 FEE 435970 5519 \N \N 6041921 2025-03-20 02:57:43.448 2025-03-20 02:57:43.448 18900 TIP 435970 861 \N \N 6041945 2025-03-20 02:59:45.939 2025-03-20 02:59:45.939 100 FEE 436015 21041 \N \N 6041946 2025-03-20 02:59:45.939 2025-03-20 02:59:45.939 900 TIP 436015 20745 \N \N 6041966 2025-03-20 03:02:49.546 2025-03-20 03:02:49.546 1000 FEE 436079 20624 \N \N 6041967 2025-03-20 03:02:49.546 2025-03-20 03:02:49.546 9000 TIP 436079 9349 \N \N 6041999 2025-03-20 03:10:10.356 2025-03-20 03:10:10.356 500 FEE 435457 1195 \N \N 6042000 2025-03-20 03:10:10.356 2025-03-20 03:10:10.356 4500 TIP 435457 18441 \N \N 6042002 2025-03-20 03:10:22.474 2025-03-20 03:10:22.474 1000 FEE 435242 4802 \N \N 6042003 2025-03-20 03:10:22.474 2025-03-20 03:10:22.474 9000 TIP 435242 4415 \N \N 6042019 2025-03-20 03:16:01.62 2025-03-20 03:16:01.62 2100 FEE 436069 2832 \N \N 6042020 2025-03-20 03:16:01.62 2025-03-20 03:16:01.62 18900 TIP 436069 21416 \N \N 6042025 2025-03-20 03:16:47.304 2025-03-20 03:16:47.304 10000 FEE 419511 21791 \N \N 6042026 2025-03-20 03:16:47.304 2025-03-20 03:16:47.304 90000 TIP 419511 13097 \N \N 6042046 2025-03-20 03:23:11.24 2025-03-20 03:23:11.24 1000 FEE 435610 21222 \N \N 6042047 2025-03-20 03:23:11.24 2025-03-20 03:23:11.24 9000 TIP 435610 1009 \N \N 6042085 2025-03-20 03:29:06.554 2025-03-20 03:29:06.554 2100 FEE 436051 777 \N \N 6042086 2025-03-20 03:29:06.554 2025-03-20 03:29:06.554 18900 TIP 436051 19888 \N \N 6042117 2025-03-20 03:32:16.873 2025-03-20 03:32:16.873 1000 FEE 436098 20881 \N \N 6042145 2025-03-20 03:39:19.454 2025-03-20 03:39:19.454 1000 FEE 436104 14381 \N \N 6042181 2025-03-20 03:44:20.592 2025-03-20 03:44:20.592 300 FEE 436032 15617 \N \N 6042182 2025-03-20 03:44:20.592 2025-03-20 03:44:20.592 2700 TIP 436032 15484 \N \N 6042183 2025-03-20 03:44:22.477 2025-03-20 03:44:22.477 300 FEE 435908 1738 \N \N 6042184 2025-03-20 03:44:22.477 2025-03-20 03:44:22.477 2700 TIP 435908 21556 \N \N 6042211 2025-03-20 03:51:01.767 2025-03-20 03:51:01.767 4000 FEE 436115 17710 \N \N 6042212 2025-03-20 03:51:01.767 2025-03-20 03:51:01.767 36000 TIP 436115 12356 \N \N 6042215 2025-03-20 03:51:47.915 2025-03-20 03:51:47.915 1000 FEE 436121 11298 \N \N 6042230 2025-03-20 03:53:08.232 2025-03-20 03:53:08.232 2300 FEE 435928 10591 \N \N 6042231 2025-03-20 03:53:08.232 2025-03-20 03:53:08.232 20700 TIP 435928 21522 \N \N 6042234 2025-03-20 03:53:08.419 2025-03-20 03:53:08.419 2300 FEE 435928 17673 \N \N 6042235 2025-03-20 03:53:08.419 2025-03-20 03:53:08.419 20700 TIP 435928 4763 \N \N 6042236 2025-03-20 03:53:08.965 2025-03-20 03:53:08.965 2300 FEE 435928 13398 \N \N 6042237 2025-03-20 03:53:08.965 2025-03-20 03:53:08.965 20700 TIP 435928 994 \N \N 6042242 2025-03-20 03:53:09.489 2025-03-20 03:53:09.489 2300 FEE 435928 5703 \N \N 6042243 2025-03-20 03:53:09.489 2025-03-20 03:53:09.489 20700 TIP 435928 7760 \N \N 6042262 2025-03-20 03:53:11.182 2025-03-20 03:53:11.182 2300 FEE 435928 4989 \N \N 6042263 2025-03-20 03:53:11.182 2025-03-20 03:53:11.182 20700 TIP 435928 1261 \N \N 6042272 2025-03-20 03:53:12.349 2025-03-20 03:53:12.349 2300 FEE 435928 5519 \N \N 6042273 2025-03-20 03:53:12.349 2025-03-20 03:53:12.349 20700 TIP 435928 20817 \N \N 6042294 2025-03-20 03:53:16.001 2025-03-20 03:53:16.001 2300 FEE 435928 13216 \N \N 6042295 2025-03-20 03:53:16.001 2025-03-20 03:53:16.001 20700 TIP 435928 16424 \N \N 6042296 2025-03-20 03:53:16.28 2025-03-20 03:53:16.28 2300 FEE 435928 651 \N \N 6042297 2025-03-20 03:53:16.28 2025-03-20 03:53:16.28 20700 TIP 435928 13038 \N \N 6042308 2025-03-20 03:53:17.218 2025-03-20 03:53:17.218 2300 FEE 435928 1221 \N \N 6042309 2025-03-20 03:53:17.218 2025-03-20 03:53:17.218 20700 TIP 435928 21022 \N \N 6042310 2025-03-20 03:53:17.403 2025-03-20 03:53:17.403 2300 FEE 435928 17218 \N \N 6042311 2025-03-20 03:53:17.403 2025-03-20 03:53:17.403 20700 TIP 435928 20222 \N \N 6042318 2025-03-20 03:53:18.606 2025-03-20 03:53:18.606 2300 FEE 435928 13361 \N \N 6042319 2025-03-20 03:53:18.606 2025-03-20 03:53:18.606 20700 TIP 435928 9418 \N \N 6042322 2025-03-20 03:53:19.015 2025-03-20 03:53:19.015 2300 FEE 435928 20713 \N \N 6042323 2025-03-20 03:53:19.015 2025-03-20 03:53:19.015 20700 TIP 435928 12821 \N \N 6042324 2025-03-20 03:53:19.138 2025-03-20 03:53:19.138 2300 FEE 435928 20187 \N \N 6042325 2025-03-20 03:53:19.138 2025-03-20 03:53:19.138 20700 TIP 435928 12769 \N \N 6042336 2025-03-20 03:53:20.978 2025-03-20 03:53:20.978 2300 FEE 435928 21520 \N \N 6042337 2025-03-20 03:53:20.978 2025-03-20 03:53:20.978 20700 TIP 435928 21825 \N \N 6042344 2025-03-20 03:53:24.581 2025-03-20 03:53:24.581 0 FEE 436120 19193 \N \N 6042365 2025-03-20 03:53:30.891 2025-03-20 03:53:30.891 2300 FEE 435928 2367 \N \N 6042366 2025-03-20 03:53:30.891 2025-03-20 03:53:30.891 20700 TIP 435928 6578 \N \N 6042390 2025-03-20 03:53:32.989 2025-03-20 03:53:32.989 2300 FEE 435928 18601 \N \N 6042391 2025-03-20 03:53:32.989 2025-03-20 03:53:32.989 20700 TIP 435928 19375 \N \N 6042411 2025-03-20 03:53:35.338 2025-03-20 03:53:35.338 2300 FEE 435928 5129 \N \N 6042412 2025-03-20 03:53:35.338 2025-03-20 03:53:35.338 20700 TIP 435928 21639 \N \N 6042413 2025-03-20 03:53:35.512 2025-03-20 03:53:35.512 2300 FEE 435928 4345 \N \N 6042414 2025-03-20 03:53:35.512 2025-03-20 03:53:35.512 20700 TIP 435928 679 \N \N 6042445 2025-03-20 03:54:20.84 2025-03-20 03:54:20.84 2300 FEE 435847 11678 \N \N 6042446 2025-03-20 03:54:20.84 2025-03-20 03:54:20.84 20700 TIP 435847 18271 \N \N 6042552 2025-03-20 03:56:52.715 2025-03-20 03:56:52.715 10000 FEE 436090 7674 \N \N 6042553 2025-03-20 03:56:52.715 2025-03-20 03:56:52.715 90000 TIP 436090 20490 \N \N 6042560 2025-03-20 03:58:09.596 2025-03-20 03:58:09.596 1000 FEE 435847 8037 \N \N 6042561 2025-03-20 03:58:09.596 2025-03-20 03:58:09.596 9000 TIP 435847 1008 \N \N 6042580 2025-03-20 03:59:36.909 2025-03-20 03:59:36.909 0 FEE 436129 12779 \N \N 6042584 2025-03-20 04:00:43.552 2025-03-20 04:00:43.552 1000 FEE 436132 19759 \N \N 6042605 2025-03-20 04:03:50.182 2025-03-20 04:03:50.182 210000 FEE 436136 985 \N \N 6042607 2025-03-20 04:04:36.093 2025-03-20 04:04:36.093 3000 FEE 435872 12272 \N \N 6042608 2025-03-20 04:04:36.093 2025-03-20 04:04:36.093 27000 TIP 435872 19292 \N \N 6042641 2025-03-20 04:06:49.243 2025-03-20 04:06:49.243 1100 FEE 435847 730 \N \N 6042642 2025-03-20 04:06:49.243 2025-03-20 04:06:49.243 9900 TIP 435847 21485 \N \N 6042660 2025-03-20 04:07:20.62 2025-03-20 04:07:20.62 1100 FEE 435944 1617 \N \N 6042661 2025-03-20 04:07:20.62 2025-03-20 04:07:20.62 9900 TIP 435944 827 \N \N 6042662 2025-03-20 04:07:20.92 2025-03-20 04:07:20.92 1100 FEE 435944 9329 \N \N 6042663 2025-03-20 04:07:20.92 2025-03-20 04:07:20.92 9900 TIP 435944 21164 \N \N 6042687 2025-03-20 04:09:00.011 2025-03-20 04:09:00.011 1000 FEE 436063 21547 \N \N 6042688 2025-03-20 04:09:00.011 2025-03-20 04:09:00.011 9000 TIP 436063 14990 \N \N 6042705 2025-03-20 04:09:20.629 2025-03-20 04:09:20.629 2000 FEE 436048 17226 \N \N 6042706 2025-03-20 04:09:20.629 2025-03-20 04:09:20.629 18000 TIP 436048 1124 \N \N 6042797 2025-03-20 04:15:16.954 2025-03-20 04:15:16.954 100 FEE 435924 21356 \N \N 6042798 2025-03-20 04:15:16.954 2025-03-20 04:15:16.954 900 TIP 435924 15488 \N \N 6042825 2025-03-20 04:16:52.49 2025-03-20 04:16:52.49 0 FEE 436143 18529 \N \N 6042876 2025-03-20 04:20:10.188 2025-03-20 04:20:10.188 90000 FEE 436093 12738 \N \N 6042877 2025-03-20 04:20:10.188 2025-03-20 04:20:10.188 810000 TIP 436093 1298 \N \N 6042889 2025-03-20 04:20:44.973 2025-03-20 04:20:44.973 100 FEE 436158 12222 \N \N 6042890 2025-03-20 04:20:44.973 2025-03-20 04:20:44.973 900 TIP 436158 2437 \N \N 6042931 2025-03-20 04:23:42.452 2025-03-20 04:23:42.452 2100 FEE 436153 10638 \N \N 6042932 2025-03-20 04:23:42.452 2025-03-20 04:23:42.452 18900 TIP 436153 9107 \N \N 6041801 2025-03-20 02:49:51.819 2025-03-20 02:49:51.819 10000 FEE 436066 5036 \N \N 6041802 2025-03-20 02:50:00.458 2025-03-20 02:50:00.458 1000 POLL 435805 2098 \N \N 6041835 2025-03-20 02:52:06.14 2025-03-20 02:52:06.14 1600 FEE 435905 21042 \N \N 6041836 2025-03-20 02:52:06.14 2025-03-20 02:52:06.14 14400 TIP 435905 21791 \N \N 6041840 2025-03-20 02:52:20.961 2025-03-20 02:52:20.961 2100 FEE 436049 672 \N \N 6041841 2025-03-20 02:52:20.961 2025-03-20 02:52:20.961 18900 TIP 436049 12277 \N \N 6041842 2025-03-20 02:52:30.807 2025-03-20 02:52:30.807 1000 FEE 436069 10638 \N \N 6041843 2025-03-20 02:52:47.63 2025-03-20 02:52:47.63 2100 FEE 436061 1469 \N \N 6041844 2025-03-20 02:52:47.63 2025-03-20 02:52:47.63 18900 TIP 436061 3304 \N \N 6041859 2025-03-20 02:53:14.305 2025-03-20 02:53:14.305 500 FEE 435610 9418 \N \N 6041860 2025-03-20 02:53:14.305 2025-03-20 02:53:14.305 4500 TIP 435610 998 \N \N 6041875 2025-03-20 02:54:32.854 2025-03-20 02:54:32.854 0 FEE 436065 17237 \N \N 6041890 2025-03-20 02:55:55.706 2025-03-20 02:55:55.706 2100 FEE 436071 670 \N \N 6041891 2025-03-20 02:55:55.706 2025-03-20 02:55:55.706 18900 TIP 436071 634 \N \N 6041900 2025-03-20 02:56:08.245 2025-03-20 02:56:08.245 5000 FEE 436029 15147 \N \N 6041901 2025-03-20 02:56:08.245 2025-03-20 02:56:08.245 45000 TIP 436029 13174 \N \N 6041903 2025-03-20 02:56:17.374 2025-03-20 02:56:17.374 2100 FEE 435988 8508 \N \N 6041904 2025-03-20 02:56:17.374 2025-03-20 02:56:17.374 18900 TIP 435988 4167 \N \N 6041926 2025-03-20 02:58:08.979 2025-03-20 02:58:08.979 2100 FEE 435910 2502 \N \N 6041927 2025-03-20 02:58:08.979 2025-03-20 02:58:08.979 18900 TIP 435910 21832 \N \N 6041933 2025-03-20 02:58:24.516 2025-03-20 02:58:24.516 1000 FEE 436075 4776 \N \N 6041934 2025-03-20 02:58:31.162 2025-03-20 02:58:31.162 200 FEE 436025 14791 \N \N 6041935 2025-03-20 02:58:31.162 2025-03-20 02:58:31.162 1800 TIP 436025 12169 \N \N 6041938 2025-03-20 02:58:50.506 2025-03-20 02:58:50.506 800 FEE 435812 1130 \N \N 6041939 2025-03-20 02:58:50.506 2025-03-20 02:58:50.506 7200 TIP 435812 16769 \N \N 6041943 2025-03-20 02:59:23.437 2025-03-20 02:59:23.437 100 FEE 436025 19673 \N \N 6041944 2025-03-20 02:59:23.437 2025-03-20 02:59:23.437 900 TIP 436025 9920 \N \N 6041954 2025-03-20 03:01:03.537 2025-03-20 03:01:03.537 100 FEE 436009 16296 \N \N 6041955 2025-03-20 03:01:03.537 2025-03-20 03:01:03.537 900 TIP 436009 15192 \N \N 6041977 2025-03-20 03:04:27.764 2025-03-20 03:04:27.764 100000 FEE 436081 667 \N \N 6041985 2025-03-20 03:05:51.869 2025-03-20 03:05:51.869 100000 FEE 436082 21271 \N \N 6042004 2025-03-20 03:10:49.484 2025-03-20 03:10:49.484 1000 FEE 435791 1480 \N \N 6042005 2025-03-20 03:10:49.484 2025-03-20 03:10:49.484 9000 TIP 435791 11516 \N \N 6042060 2025-03-20 03:27:43.094 2025-03-20 03:27:43.094 12800 FEE 436029 802 \N \N 6042061 2025-03-20 03:27:43.094 2025-03-20 03:27:43.094 115200 TIP 436029 20858 \N \N 6042064 2025-03-20 03:27:58.151 2025-03-20 03:27:58.151 2100 FEE 436076 1833 \N \N 6042065 2025-03-20 03:27:58.151 2025-03-20 03:27:58.151 18900 TIP 436076 18232 \N \N 6042077 2025-03-20 03:28:24.406 2025-03-20 03:28:24.406 2100 FEE 435805 12768 \N \N 6042078 2025-03-20 03:28:24.406 2025-03-20 03:28:24.406 18900 TIP 435805 19375 \N \N 6042102 2025-03-20 03:30:29.23 2025-03-20 03:30:29.23 2100 FEE 435993 21083 \N \N 6042103 2025-03-20 03:30:29.23 2025-03-20 03:30:29.23 18900 TIP 435993 11561 \N \N 6042114 2025-03-20 03:31:49.058 2025-03-20 03:31:49.058 1000 FEE 436096 769 \N \N 6042124 2025-03-20 03:33:37.331 2025-03-20 03:33:37.331 10000 FEE 436061 640 \N \N 6042125 2025-03-20 03:33:37.331 2025-03-20 03:33:37.331 90000 TIP 436061 11885 \N \N 6042129 2025-03-20 03:35:04.759 2025-03-20 03:35:04.759 1000 FEE 436102 20906 \N \N 6042169 2025-03-20 03:42:42.152 2025-03-20 03:42:42.152 1000 FEE 436106 17218 \N \N 6042177 2025-03-20 03:43:51.8 2025-03-20 03:43:51.8 2800 FEE 436100 19292 \N \N 6042178 2025-03-20 03:43:51.8 2025-03-20 03:43:51.8 25200 TIP 436100 21228 \N \N 6042179 2025-03-20 03:44:03.132 2025-03-20 03:44:03.132 1000 POLL 436036 16847 \N \N 6042187 2025-03-20 03:44:33.998 2025-03-20 03:44:33.998 1000 FEE 436109 19446 \N \N 6042208 2025-03-20 03:50:27.518 2025-03-20 03:50:27.518 1000 FEE 436119 21139 \N \N 6042222 2025-03-20 03:52:52.935 2025-03-20 03:52:52.935 2100 FEE 435693 678 \N \N 6042223 2025-03-20 03:52:52.935 2025-03-20 03:52:52.935 18900 TIP 435693 1733 \N \N 6042228 2025-03-20 03:53:07.957 2025-03-20 03:53:07.957 2300 FEE 435928 16834 \N \N 6042229 2025-03-20 03:53:07.957 2025-03-20 03:53:07.957 20700 TIP 435928 17064 \N \N 6042240 2025-03-20 03:53:09.341 2025-03-20 03:53:09.341 2300 FEE 435928 16970 \N \N 6042241 2025-03-20 03:53:09.341 2025-03-20 03:53:09.341 20700 TIP 435928 21148 \N \N 6042244 2025-03-20 03:53:09.644 2025-03-20 03:53:09.644 2300 FEE 435928 1817 \N \N 6042245 2025-03-20 03:53:09.644 2025-03-20 03:53:09.644 20700 TIP 435928 10273 \N \N 6042258 2025-03-20 03:53:10.847 2025-03-20 03:53:10.847 2300 FEE 435928 10591 \N \N 6042259 2025-03-20 03:53:10.847 2025-03-20 03:53:10.847 20700 TIP 435928 18271 \N \N 6042270 2025-03-20 03:53:12.181 2025-03-20 03:53:12.181 2300 FEE 435928 1006 \N \N 6042271 2025-03-20 03:53:12.181 2025-03-20 03:53:12.181 20700 TIP 435928 717 \N \N 6042274 2025-03-20 03:53:12.536 2025-03-20 03:53:12.536 2300 FEE 435928 8423 \N \N 6042275 2025-03-20 03:53:12.536 2025-03-20 03:53:12.536 20700 TIP 435928 12744 \N \N 6042287 2025-03-20 03:53:14.797 2025-03-20 03:53:14.797 4600 FEE 435928 1784 \N \N 6042288 2025-03-20 03:53:14.797 2025-03-20 03:53:14.797 41400 TIP 435928 20310 \N \N 6042298 2025-03-20 03:53:16.416 2025-03-20 03:53:16.416 2300 FEE 435928 2367 \N \N 6042299 2025-03-20 03:53:16.416 2025-03-20 03:53:16.416 20700 TIP 435928 11378 \N \N 6042304 2025-03-20 03:53:16.89 2025-03-20 03:53:16.89 2300 FEE 435928 14168 \N \N 6042305 2025-03-20 03:53:16.89 2025-03-20 03:53:16.89 20700 TIP 435928 1286 \N \N 6042320 2025-03-20 03:53:18.763 2025-03-20 03:53:18.763 2300 FEE 435928 1213 \N \N 6042321 2025-03-20 03:53:18.763 2025-03-20 03:53:18.763 20700 TIP 435928 16250 \N \N 6042328 2025-03-20 03:53:19.46 2025-03-20 03:53:19.46 2300 FEE 435928 21303 \N \N 6042329 2025-03-20 03:53:19.46 2025-03-20 03:53:19.46 20700 TIP 435928 8648 \N \N 6042351 2025-03-20 03:53:28.15 2025-03-20 03:53:28.15 2300 FEE 435928 1784 \N \N 6042352 2025-03-20 03:53:28.15 2025-03-20 03:53:28.15 20700 TIP 435928 1745 \N \N 6042357 2025-03-20 03:53:28.653 2025-03-20 03:53:28.653 2300 FEE 435928 21208 \N \N 6042358 2025-03-20 03:53:28.653 2025-03-20 03:53:28.653 20700 TIP 435928 21814 \N \N 6042371 2025-03-20 03:53:31.603 2025-03-20 03:53:31.603 2300 FEE 435928 11240 \N \N 6041863 2025-03-20 02:53:25.555 2025-03-20 02:53:25.555 100 FEE 436063 20799 \N \N 6041864 2025-03-20 02:53:25.555 2025-03-20 02:53:25.555 900 TIP 436063 19087 \N \N 6041868 2025-03-20 02:54:12.781 2025-03-20 02:54:12.781 100 FEE 436036 15200 \N \N 6041869 2025-03-20 02:54:12.781 2025-03-20 02:54:12.781 900 TIP 436036 797 \N \N 6041882 2025-03-20 02:55:32.06 2025-03-20 02:55:32.06 2100 FEE 436048 9992 \N \N 6041883 2025-03-20 02:55:32.06 2025-03-20 02:55:32.06 18900 TIP 436048 16950 \N \N 6041888 2025-03-20 02:55:45.286 2025-03-20 02:55:45.286 2100 FEE 436017 676 \N \N 6041889 2025-03-20 02:55:45.286 2025-03-20 02:55:45.286 18900 TIP 436017 13903 \N \N 6041948 2025-03-20 03:00:16.183 2025-03-20 03:00:16.183 100000 FEE 436076 4378 \N \N 6041952 2025-03-20 03:01:01.229 2025-03-20 03:01:01.229 1600 FEE 436076 21242 \N \N 6041953 2025-03-20 03:01:01.229 2025-03-20 03:01:01.229 14400 TIP 436076 12346 \N \N 6041957 2025-03-20 03:01:30.738 2025-03-20 03:01:30.738 1000 FEE 436078 11314 \N \N 6041974 2025-03-20 03:04:00.858 2025-03-20 03:04:00.858 4200 FEE 435135 17517 \N \N 6041975 2025-03-20 03:04:00.858 2025-03-20 03:04:00.858 37800 TIP 435135 9845 \N \N 6041978 2025-03-20 03:04:43.753 2025-03-20 03:04:43.753 100 FEE 435936 17727 \N \N 6041979 2025-03-20 03:04:43.753 2025-03-20 03:04:43.753 900 TIP 435936 19527 \N \N 6041980 2025-03-20 03:04:46.395 2025-03-20 03:04:46.395 100 FEE 435936 10979 \N \N 6041981 2025-03-20 03:04:46.395 2025-03-20 03:04:46.395 900 TIP 435936 6149 \N \N 6041986 2025-03-20 03:05:58.163 2025-03-20 03:05:58.163 0 FEE 4177 12334 \N \N 6042031 2025-03-20 03:17:51.089 2025-03-20 03:17:51.089 1000 POLL 436036 9335 \N \N 6042050 2025-03-20 03:24:43.839 2025-03-20 03:24:43.839 100 FEE 436085 2776 \N \N 6042051 2025-03-20 03:24:43.839 2025-03-20 03:24:43.839 900 TIP 436085 14472 \N \N 6042075 2025-03-20 03:28:21.289 2025-03-20 03:28:21.289 2100 FEE 436047 1549 \N \N 6042076 2025-03-20 03:28:21.289 2025-03-20 03:28:21.289 18900 TIP 436047 10096 \N \N 6042081 2025-03-20 03:29:04.39 2025-03-20 03:29:04.39 2100 FEE 436066 11938 \N \N 6042082 2025-03-20 03:29:04.39 2025-03-20 03:29:04.39 18900 TIP 436066 2749 \N \N 6042098 2025-03-20 03:29:51.876 2025-03-20 03:29:51.876 1000 FEE 436092 6749 \N \N 6042107 2025-03-20 03:31:17.378 2025-03-20 03:31:17.378 1000 FEE 436095 14552 \N \N 6042112 2025-03-20 03:31:38.265 2025-03-20 03:31:38.265 2100 FEE 435154 18011 \N \N 6042113 2025-03-20 03:31:38.265 2025-03-20 03:31:38.265 18900 TIP 435154 7746 \N \N 6042115 2025-03-20 03:31:56.427 2025-03-20 03:31:56.427 1000 FEE 436097 20619 \N \N 6042118 2025-03-20 03:32:42.7 2025-03-20 03:32:42.7 1000 FEE 436099 9159 \N \N 6042148 2025-03-20 03:39:25.294 2025-03-20 03:39:25.294 21000 FEE 436100 902 \N \N 6042149 2025-03-20 03:39:25.294 2025-03-20 03:39:25.294 189000 TIP 436100 1478 \N \N 6042159 2025-03-20 03:40:22.268 2025-03-20 03:40:22.268 1000 FEE 435780 21406 \N \N 6042160 2025-03-20 03:40:22.268 2025-03-20 03:40:22.268 9000 TIP 435780 6537 \N \N 6112400 2025-03-26 04:45:30.551 2025-03-26 04:45:30.551 9000 TIP 442904 11038 \N \N 6112413 2025-03-26 04:45:31.605 2025-03-26 04:45:31.605 2000 FEE 442904 4415 \N \N 6112414 2025-03-26 04:45:31.605 2025-03-26 04:45:31.605 18000 TIP 442904 14905 \N \N 6112421 2025-03-26 04:45:32.423 2025-03-26 04:45:32.423 1000 FEE 442904 10536 \N \N 6112422 2025-03-26 04:45:32.423 2025-03-26 04:45:32.423 9000 TIP 442904 1003 \N \N 6112431 2025-03-26 04:45:33.358 2025-03-26 04:45:33.358 1000 FEE 442904 13132 \N \N 6112432 2025-03-26 04:45:33.358 2025-03-26 04:45:33.358 9000 TIP 442904 859 \N \N 6112463 2025-03-26 04:45:41.228 2025-03-26 04:45:41.228 1000 FEE 442904 16276 \N \N 6112464 2025-03-26 04:45:41.228 2025-03-26 04:45:41.228 9000 TIP 442904 21216 \N \N 6112491 2025-03-26 04:45:44.76 2025-03-26 04:45:44.76 1000 FEE 442904 19980 \N \N 6112492 2025-03-26 04:45:44.76 2025-03-26 04:45:44.76 9000 TIP 442904 21577 \N \N 6112533 2025-03-26 04:45:50.975 2025-03-26 04:45:50.975 1000 FEE 442904 13553 \N \N 6112534 2025-03-26 04:45:50.975 2025-03-26 04:45:50.975 9000 TIP 442904 2016 \N \N 6112548 2025-03-26 04:47:58.331 2025-03-26 04:47:58.331 1000 FEE 443477 6419 \N \N 6112553 2025-03-26 04:49:21.968 2025-03-26 04:49:21.968 6900 FEE 443470 21578 \N \N 6112554 2025-03-26 04:49:21.968 2025-03-26 04:49:21.968 62100 TIP 443470 1890 \N \N 6112557 2025-03-26 04:50:17.499 2025-03-26 04:50:17.499 1000 FEE 443481 19217 \N \N 6112569 2025-03-26 04:52:26.911 2025-03-26 04:52:26.911 50000 FEE 443038 9843 \N \N 6112570 2025-03-26 04:52:26.911 2025-03-26 04:52:26.911 450000 TIP 443038 13599 \N \N 6112578 2025-03-26 04:53:38.073 2025-03-26 04:53:38.073 50000 FEE 443038 12291 \N \N 6112579 2025-03-26 04:53:38.073 2025-03-26 04:53:38.073 450000 TIP 443038 15147 \N \N 6112582 2025-03-26 04:56:07.571 2025-03-26 04:56:07.571 11000 FEE 443487 21379 \N \N 6112598 2025-03-26 04:57:09.363 2025-03-26 04:57:09.363 1000 FEE 443492 5637 \N \N 6112628 2025-03-26 04:59:43.825 2025-03-26 04:59:43.825 500 FEE 442084 630 \N \N 6112629 2025-03-26 04:59:43.825 2025-03-26 04:59:43.825 4500 TIP 442084 20433 \N \N 6112634 2025-03-26 04:59:55.301 2025-03-26 04:59:55.301 1000 FEE 443497 20479 \N \N 6112644 2025-03-26 05:00:55.825 2025-03-26 05:00:55.825 21000 FEE 443500 14941 \N \N 6112648 2025-03-26 05:01:03.088 2025-03-26 05:01:03.088 1000 FEE 443502 17568 \N \N 6112653 2025-03-26 05:02:27.367 2025-03-26 05:02:27.367 10000 FEE 436015 5557 \N \N 6112654 2025-03-26 05:02:27.367 2025-03-26 05:02:27.367 90000 TIP 436015 2233 \N \N 6112655 2025-03-26 05:02:34.776 2025-03-26 05:02:34.776 3100 FEE 442023 11760 \N \N 6112656 2025-03-26 05:02:34.776 2025-03-26 05:02:34.776 27900 TIP 442023 19863 \N \N 6112660 2025-03-26 05:02:50.649 2025-03-26 05:02:50.649 0 FEE 443500 1039 \N \N 6041917 2025-03-20 02:57:38.675 2025-03-20 02:57:38.675 18900 TIP 435981 16704 \N \N 6041940 2025-03-20 02:58:57.57 2025-03-20 02:58:57.57 2100 FEE 435826 12483 \N \N 6041941 2025-03-20 02:58:57.57 2025-03-20 02:58:57.57 18900 TIP 435826 7766 \N \N 6042009 2025-03-20 03:14:11.316 2025-03-20 03:14:11.316 100 FEE 435944 8506 \N \N 6042010 2025-03-20 03:14:11.316 2025-03-20 03:14:11.316 900 TIP 435944 19637 \N \N 6042028 2025-03-20 03:16:52.459 2025-03-20 03:16:52.459 1100 FEE 436066 18174 \N \N 6042029 2025-03-20 03:16:52.459 2025-03-20 03:16:52.459 9900 TIP 436066 9669 \N \N 6042042 2025-03-20 03:21:54.702 2025-03-20 03:21:54.702 1000 FEE 436090 20969 \N \N 6042053 2025-03-20 03:25:38.795 2025-03-20 03:25:38.795 100 FEE 436082 3990 \N \N 6042054 2025-03-20 03:25:38.795 2025-03-20 03:25:38.795 900 TIP 436082 17091 \N \N 6042092 2025-03-20 03:29:20.056 2025-03-20 03:29:20.056 1000 FEE 435861 14370 \N \N 6042093 2025-03-20 03:29:20.056 2025-03-20 03:29:20.056 9000 TIP 435861 16193 \N \N 6042100 2025-03-20 03:30:18.988 2025-03-20 03:30:18.988 2100 FEE 435639 10698 \N \N 6042101 2025-03-20 03:30:18.988 2025-03-20 03:30:18.988 18900 TIP 435639 1985 \N \N 6042143 2025-03-20 03:39:18.447 2025-03-20 03:39:18.447 700 FEE 435832 21287 \N \N 6042144 2025-03-20 03:39:18.447 2025-03-20 03:39:18.447 6300 TIP 435832 14122 \N \N 6042164 2025-03-20 03:42:10.467 2025-03-20 03:42:10.467 300 FEE 435721 787 \N \N 6042165 2025-03-20 03:42:10.467 2025-03-20 03:42:10.467 2700 TIP 435721 19966 \N \N 6042193 2025-03-20 03:45:45.899 2025-03-20 03:45:45.899 0 FEE 436113 13575 \N \N 6042196 2025-03-20 03:46:13.623 2025-03-20 03:46:13.623 1000 FEE 436114 5775 \N \N 6042200 2025-03-20 03:47:56.975 2025-03-20 03:47:56.975 2800 FEE 436114 1596 \N \N 6042201 2025-03-20 03:47:56.975 2025-03-20 03:47:56.975 25200 TIP 436114 20023 \N \N 6042214 2025-03-20 03:51:32.804 2025-03-20 03:51:32.804 1000 FEE 436120 678 \N \N 6042219 2025-03-20 03:52:39.303 2025-03-20 03:52:39.303 0 FEE 436119 20058 \N \N 6042224 2025-03-20 03:52:56.806 2025-03-20 03:52:56.806 4000 FEE 436072 17046 \N \N 6042225 2025-03-20 03:52:56.806 2025-03-20 03:52:56.806 36000 TIP 436072 2710 \N \N 6042238 2025-03-20 03:53:09.128 2025-03-20 03:53:09.128 2300 FEE 435928 7675 \N \N 6042239 2025-03-20 03:53:09.128 2025-03-20 03:53:09.128 20700 TIP 435928 9833 \N \N 6042280 2025-03-20 03:53:13.066 2025-03-20 03:53:13.066 2300 FEE 435928 19488 \N \N 6042281 2025-03-20 03:53:13.066 2025-03-20 03:53:13.066 20700 TIP 435928 10291 \N \N 6042332 2025-03-20 03:53:20.617 2025-03-20 03:53:20.617 2300 FEE 435928 2111 \N \N 6042333 2025-03-20 03:53:20.617 2025-03-20 03:53:20.617 20700 TIP 435928 2437 \N \N 6042345 2025-03-20 03:53:27.659 2025-03-20 03:53:27.659 2300 FEE 435928 19930 \N \N 6042346 2025-03-20 03:53:27.659 2025-03-20 03:53:27.659 20700 TIP 435928 1124 \N \N 6042349 2025-03-20 03:53:27.98 2025-03-20 03:53:27.98 2300 FEE 435928 21766 \N \N 6042350 2025-03-20 03:53:27.98 2025-03-20 03:53:27.98 20700 TIP 435928 2213 \N \N 6042353 2025-03-20 03:53:28.322 2025-03-20 03:53:28.322 2300 FEE 435928 21829 \N \N 6042354 2025-03-20 03:53:28.322 2025-03-20 03:53:28.322 20700 TIP 435928 2718 \N \N 6042361 2025-03-20 03:53:30.115 2025-03-20 03:53:30.115 2300 FEE 435928 18673 \N \N 6042362 2025-03-20 03:53:30.115 2025-03-20 03:53:30.115 20700 TIP 435928 21585 \N \N 6042369 2025-03-20 03:53:31.26 2025-03-20 03:53:31.26 2300 FEE 435928 21685 \N \N 6042370 2025-03-20 03:53:31.26 2025-03-20 03:53:31.26 20700 TIP 435928 1603 \N \N 6042397 2025-03-20 03:53:33.788 2025-03-20 03:53:33.788 2300 FEE 435928 1354 \N \N 6042398 2025-03-20 03:53:33.788 2025-03-20 03:53:33.788 20700 TIP 435928 14705 \N \N 6042401 2025-03-20 03:53:34.155 2025-03-20 03:53:34.155 2300 FEE 435928 21506 \N \N 6042402 2025-03-20 03:53:34.155 2025-03-20 03:53:34.155 20700 TIP 435928 2061 \N \N 6042403 2025-03-20 03:53:34.324 2025-03-20 03:53:34.324 2300 FEE 435928 21701 \N \N 6042404 2025-03-20 03:53:34.324 2025-03-20 03:53:34.324 20700 TIP 435928 1519 \N \N 6042451 2025-03-20 03:54:21.42 2025-03-20 03:54:21.42 2300 FEE 435847 9183 \N \N 6042452 2025-03-20 03:54:21.42 2025-03-20 03:54:21.42 20700 TIP 435847 17221 \N \N 6042453 2025-03-20 03:54:21.604 2025-03-20 03:54:21.604 2300 FEE 435847 4862 \N \N 6042454 2025-03-20 03:54:21.604 2025-03-20 03:54:21.604 20700 TIP 435847 19292 \N \N 6042476 2025-03-20 03:54:23.836 2025-03-20 03:54:23.836 2300 FEE 435847 21332 \N \N 6042477 2025-03-20 03:54:23.836 2025-03-20 03:54:23.836 20700 TIP 435847 17157 \N \N 6042478 2025-03-20 03:54:24.018 2025-03-20 03:54:24.018 2300 FEE 435847 20691 \N \N 6042479 2025-03-20 03:54:24.018 2025-03-20 03:54:24.018 20700 TIP 435847 2293 \N \N 6042500 2025-03-20 03:54:47.965 2025-03-20 03:54:47.965 2300 FEE 435944 16754 \N \N 6042501 2025-03-20 03:54:47.965 2025-03-20 03:54:47.965 20700 TIP 435944 17001 \N \N 6042538 2025-03-20 03:55:20.003 2025-03-20 03:55:20.003 4000 FEE 436053 1959 \N \N 6042539 2025-03-20 03:55:20.003 2025-03-20 03:55:20.003 36000 TIP 436053 20970 \N \N 6042545 2025-03-20 03:55:49.559 2025-03-20 03:55:49.559 0 FEE 436126 19198 \N \N 6042556 2025-03-20 03:57:25.053 2025-03-20 03:57:25.053 300 FEE 435914 1495 \N \N 6042557 2025-03-20 03:57:25.053 2025-03-20 03:57:25.053 2700 TIP 435914 7773 \N \N 6041973 2025-03-20 03:03:57.684 2025-03-20 03:03:57.684 1800 TIP 436076 646 \N \N 6041987 2025-03-20 03:05:59.25 2025-03-20 03:05:59.25 1000 POLL 435516 20734 \N \N 6041996 2025-03-20 03:09:10.597 2025-03-20 03:09:10.597 1600 FEE 436082 746 \N \N 6041997 2025-03-20 03:09:10.597 2025-03-20 03:09:10.597 14400 TIP 436082 18231 \N \N 6042017 2025-03-20 03:15:30.357 2025-03-20 03:15:30.357 2100 FEE 435944 21585 \N \N 6042018 2025-03-20 03:15:30.357 2025-03-20 03:15:30.357 18900 TIP 435944 4083 \N \N 6042027 2025-03-20 03:16:49.662 2025-03-20 03:16:49.662 1000 FEE 436085 960 \N \N 6042033 2025-03-20 03:17:59.351 2025-03-20 03:17:59.351 1000 FEE 436087 8989 \N \N 6042035 2025-03-20 03:18:41.792 2025-03-20 03:18:41.792 1000 FEE 436088 1585 \N \N 6042043 2025-03-20 03:22:03.584 2025-03-20 03:22:03.584 100000 FEE 435944 20811 \N \N 6042044 2025-03-20 03:22:03.584 2025-03-20 03:22:03.584 900000 TIP 435944 21442 \N \N 6042070 2025-03-20 03:28:08.663 2025-03-20 03:28:08.663 2100 FEE 435912 17541 \N \N 6042071 2025-03-20 03:28:08.663 2025-03-20 03:28:08.663 18900 TIP 435912 7675 \N \N 6042072 2025-03-20 03:28:11.773 2025-03-20 03:28:11.773 2100 FEE 435905 1801 \N \N 6042073 2025-03-20 03:28:11.773 2025-03-20 03:28:11.773 18900 TIP 435905 21771 \N \N 6042126 2025-03-20 03:33:57.051 2025-03-20 03:33:57.051 1000 FEE 436101 19863 \N \N 6042128 2025-03-20 03:34:26.717 2025-03-20 03:34:26.717 0 FEE 436100 11450 \N \N 6042161 2025-03-20 03:40:33.163 2025-03-20 03:40:33.163 200 FEE 436091 21424 \N \N 6042162 2025-03-20 03:40:33.163 2025-03-20 03:40:33.163 1800 TIP 436091 8376 \N \N 6042176 2025-03-20 03:43:48.547 2025-03-20 03:43:48.547 1000 FEE 436108 12566 \N \N 6042189 2025-03-20 03:44:56.424 2025-03-20 03:44:56.424 1000 FEE 436111 16808 \N \N 6042194 2025-03-20 03:46:05.473 2025-03-20 03:46:05.473 1000 FEE 436062 14650 \N \N 6042195 2025-03-20 03:46:05.473 2025-03-20 03:46:05.473 9000 TIP 436062 7760 \N \N 6042199 2025-03-20 03:47:17.576 2025-03-20 03:47:17.576 1000 FEE 436115 18494 \N \N 6042203 2025-03-20 03:48:38.491 2025-03-20 03:48:38.491 1000 FEE 436117 1142 \N \N 6042220 2025-03-20 03:52:40.996 2025-03-20 03:52:40.996 4000 FEE 436097 20970 \N \N 6042221 2025-03-20 03:52:40.996 2025-03-20 03:52:40.996 36000 TIP 436097 10352 \N \N 6042232 2025-03-20 03:53:08.298 2025-03-20 03:53:08.298 2300 FEE 435928 2022 \N \N 6042233 2025-03-20 03:53:08.298 2025-03-20 03:53:08.298 20700 TIP 435928 10342 \N \N 6042250 2025-03-20 03:53:10.164 2025-03-20 03:53:10.164 2300 FEE 435928 12049 \N \N 6042251 2025-03-20 03:53:10.164 2025-03-20 03:53:10.164 20700 TIP 435928 13517 \N \N 6042268 2025-03-20 03:53:12.007 2025-03-20 03:53:12.007 2300 FEE 435928 1105 \N \N 6042269 2025-03-20 03:53:12.007 2025-03-20 03:53:12.007 20700 TIP 435928 15408 \N \N 6042302 2025-03-20 03:53:16.713 2025-03-20 03:53:16.713 2300 FEE 435928 5828 \N \N 6042303 2025-03-20 03:53:16.713 2025-03-20 03:53:16.713 20700 TIP 435928 4459 \N \N 6042314 2025-03-20 03:53:18.233 2025-03-20 03:53:18.233 2300 FEE 435928 13132 \N \N 6042315 2025-03-20 03:53:18.233 2025-03-20 03:53:18.233 20700 TIP 435928 994 \N \N 6042316 2025-03-20 03:53:18.426 2025-03-20 03:53:18.426 2300 FEE 435928 2749 \N \N 6042317 2025-03-20 03:53:18.426 2025-03-20 03:53:18.426 20700 TIP 435928 11590 \N \N 6042338 2025-03-20 03:53:21.172 2025-03-20 03:53:21.172 2300 FEE 435928 21140 \N \N 6042339 2025-03-20 03:53:21.172 2025-03-20 03:53:21.172 20700 TIP 435928 827 \N \N 6042375 2025-03-20 03:53:31.774 2025-03-20 03:53:31.774 2300 FEE 435928 10731 \N \N 6042376 2025-03-20 03:53:31.774 2025-03-20 03:53:31.774 20700 TIP 435928 14472 \N \N 6042377 2025-03-20 03:53:31.946 2025-03-20 03:53:31.946 2300 FEE 435928 7983 \N \N 6042378 2025-03-20 03:53:31.946 2025-03-20 03:53:31.946 20700 TIP 435928 21172 \N \N 6042384 2025-03-20 03:53:32.472 2025-03-20 03:53:32.472 2300 FEE 435928 20454 \N \N 6042385 2025-03-20 03:53:32.472 2025-03-20 03:53:32.472 20700 TIP 435928 19826 \N \N 6042395 2025-03-20 03:53:33.714 2025-03-20 03:53:33.714 2300 FEE 435928 2056 \N \N 6042396 2025-03-20 03:53:33.714 2025-03-20 03:53:33.714 20700 TIP 435928 20619 \N \N 6042425 2025-03-20 03:54:18.861 2025-03-20 03:54:18.861 2300 FEE 435847 981 \N \N 6042426 2025-03-20 03:54:18.861 2025-03-20 03:54:18.861 20700 TIP 435847 3304 \N \N 6042429 2025-03-20 03:54:19.242 2025-03-20 03:54:19.242 2300 FEE 435847 21339 \N \N 6042430 2025-03-20 03:54:19.242 2025-03-20 03:54:19.242 20700 TIP 435847 18306 \N \N 6042435 2025-03-20 03:54:19.959 2025-03-20 03:54:19.959 2300 FEE 435847 10608 \N \N 6042436 2025-03-20 03:54:19.959 2025-03-20 03:54:19.959 20700 TIP 435847 9496 \N \N 6042447 2025-03-20 03:54:21.014 2025-03-20 03:54:21.014 2300 FEE 435847 20745 \N \N 6042448 2025-03-20 03:54:21.014 2025-03-20 03:54:21.014 20700 TIP 435847 1495 \N \N 6042449 2025-03-20 03:54:21.226 2025-03-20 03:54:21.226 2300 FEE 435847 6430 \N \N 6042450 2025-03-20 03:54:21.226 2025-03-20 03:54:21.226 20700 TIP 435847 7772 \N \N 6042464 2025-03-20 03:54:22.528 2025-03-20 03:54:22.528 2300 FEE 435847 16356 \N \N 6042465 2025-03-20 03:54:22.528 2025-03-20 03:54:22.528 20700 TIP 435847 20599 \N \N 6042506 2025-03-20 03:54:48.51 2025-03-20 03:54:48.51 2300 FEE 435944 12561 \N \N 6042507 2025-03-20 03:54:48.51 2025-03-20 03:54:48.51 20700 TIP 435944 9337 \N \N 6042564 2025-03-20 03:58:09.898 2025-03-20 03:58:09.898 1000 FEE 435847 4763 \N \N 6042565 2025-03-20 03:58:09.898 2025-03-20 03:58:09.898 9000 TIP 435847 6360 \N \N 6042583 2025-03-20 04:00:30.392 2025-03-20 04:00:30.392 1000 FEE 436131 3213 \N \N 6042586 2025-03-20 04:02:05.85 2025-03-20 04:02:05.85 1000 FEE 436133 866 \N \N 6042679 2025-03-20 04:08:38.089 2025-03-20 04:08:38.089 900 FEE 435904 2710 \N \N 6042680 2025-03-20 04:08:38.089 2025-03-20 04:08:38.089 8100 TIP 435904 6202 \N \N 6042681 2025-03-20 04:08:38.842 2025-03-20 04:08:38.842 9000 FEE 435904 19829 \N \N 6042682 2025-03-20 04:08:38.842 2025-03-20 04:08:38.842 81000 TIP 435904 21022 \N \N 6042701 2025-03-20 04:09:13.857 2025-03-20 04:09:13.857 900 FEE 436021 2735 \N \N 6042702 2025-03-20 04:09:13.857 2025-03-20 04:09:13.857 8100 TIP 436021 21647 \N \N 6042735 2025-03-20 04:11:58.711 2025-03-20 04:11:58.711 900 FEE 436075 16769 \N \N 6042736 2025-03-20 04:11:58.711 2025-03-20 04:11:58.711 8100 TIP 436075 5904 \N \N 6042749 2025-03-20 04:12:52.575 2025-03-20 04:12:52.575 500 FEE 435944 2748 \N \N 6042750 2025-03-20 04:12:52.575 2025-03-20 04:12:52.575 4500 TIP 435944 21485 \N \N 6042788 2025-03-20 04:15:04.274 2025-03-20 04:15:04.274 500 FEE 435580 20817 \N \N 6042789 2025-03-20 04:15:04.274 2025-03-20 04:15:04.274 4500 TIP 435580 2016 \N \N 6042799 2025-03-20 04:15:17.713 2025-03-20 04:15:17.713 900 FEE 435924 20710 \N \N 6042800 2025-03-20 04:15:17.713 2025-03-20 04:15:17.713 8100 TIP 435924 17095 \N \N 6042857 2025-03-20 04:18:17.327 2025-03-20 04:18:17.327 900 FEE 436015 20970 \N \N 6042858 2025-03-20 04:18:17.327 2025-03-20 04:18:17.327 8100 TIP 436015 2961 \N \N 6042887 2025-03-20 04:20:39.438 2025-03-20 04:20:39.438 900 FEE 436147 15213 \N \N 6042888 2025-03-20 04:20:39.438 2025-03-20 04:20:39.438 8100 TIP 436147 3729 \N \N 6042896 2025-03-20 04:20:52.909 2025-03-20 04:20:52.909 100 FEE 436153 3656 \N \N 6042897 2025-03-20 04:20:52.909 2025-03-20 04:20:52.909 900 TIP 436153 8985 \N \N 6042902 2025-03-20 04:21:18.062 2025-03-20 04:21:18.062 100 FEE 238583 2639 \N \N 6042903 2025-03-20 04:21:18.062 2025-03-20 04:21:18.062 900 TIP 238583 11417 \N \N 6042904 2025-03-20 04:21:45.871 2025-03-20 04:21:45.871 100 FEE 435944 9171 \N \N 6042905 2025-03-20 04:21:45.871 2025-03-20 04:21:45.871 900 TIP 435944 18630 \N \N 6042922 2025-03-20 04:23:11.969 2025-03-20 04:23:11.969 500 FEE 434535 13133 \N \N 6042923 2025-03-20 04:23:11.969 2025-03-20 04:23:11.969 4500 TIP 434535 9295 \N \N 6042924 2025-03-20 04:23:12.069 2025-03-20 04:23:12.069 500 FEE 434535 1454 \N \N 6042925 2025-03-20 04:23:12.069 2025-03-20 04:23:12.069 4500 TIP 434535 11527 \N \N 6042941 2025-03-20 04:24:38.386 2025-03-20 04:24:38.386 2700 FEE 435834 9796 \N \N 6042942 2025-03-20 04:24:38.386 2025-03-20 04:24:38.386 24300 TIP 435834 5112 \N \N 6042960 2025-03-20 04:27:12.745 2025-03-20 04:27:12.745 1000 FEE 436168 2735 \N \N 6042977 2025-03-20 04:27:23.375 2025-03-20 04:27:23.375 2700 FEE 435663 18526 \N \N 6042978 2025-03-20 04:27:23.375 2025-03-20 04:27:23.375 24300 TIP 435663 19759 \N \N 6042981 2025-03-20 04:27:23.747 2025-03-20 04:27:23.747 2700 FEE 435663 13132 \N \N 6042982 2025-03-20 04:27:23.747 2025-03-20 04:27:23.747 24300 TIP 435663 5852 \N \N 6112516 2025-03-26 04:45:47.528 2025-03-26 04:45:47.528 9000 TIP 442904 10944 \N \N 6112517 2025-03-26 04:45:47.725 2025-03-26 04:45:47.725 1000 FEE 442904 1135 \N \N 6112518 2025-03-26 04:45:47.725 2025-03-26 04:45:47.725 9000 TIP 442904 17953 \N \N 6112527 2025-03-26 04:45:48.915 2025-03-26 04:45:48.915 2000 FEE 442904 712 \N \N 6112528 2025-03-26 04:45:48.915 2025-03-26 04:45:48.915 18000 TIP 442904 11866 \N \N 6112541 2025-03-26 04:47:38.282 2025-03-26 04:47:38.282 1000 FEE 443476 9200 \N \N 6112544 2025-03-26 04:47:41.2 2025-03-26 04:47:41.2 1700 FEE 443152 10484 \N \N 6112545 2025-03-26 04:47:41.2 2025-03-26 04:47:41.2 15300 TIP 443152 13398 \N \N 6112567 2025-03-26 04:52:26.154 2025-03-26 04:52:26.154 10000 FEE 443477 20479 \N \N 6112568 2025-03-26 04:52:26.154 2025-03-26 04:52:26.154 90000 TIP 443477 678 \N \N 6112574 2025-03-26 04:53:04.476 2025-03-26 04:53:04.476 2100 FEE 443457 20674 \N \N 6112575 2025-03-26 04:53:04.476 2025-03-26 04:53:04.476 18900 TIP 443457 1298 \N \N 6112595 2025-03-26 04:56:47.103 2025-03-26 04:56:47.103 700 FEE 443487 16356 \N \N 6112596 2025-03-26 04:56:47.103 2025-03-26 04:56:47.103 6300 TIP 443487 1209 \N \N 6112605 2025-03-26 04:58:07.901 2025-03-26 04:58:07.901 1000 FEE 443494 19570 \N \N 6112630 2025-03-26 04:59:48.267 2025-03-26 04:59:48.267 500 FEE 442751 18637 \N \N 6112631 2025-03-26 04:59:48.267 2025-03-26 04:59:48.267 4500 TIP 442751 1468 \N \N 6112647 2025-03-26 05:01:01.121 2025-03-26 05:01:01.121 1000 FEE 443501 16126 \N \N 6112657 2025-03-26 05:02:35.194 2025-03-26 05:02:35.194 27900 FEE 442023 631 \N \N 6112658 2025-03-26 05:02:35.194 2025-03-26 05:02:35.194 251100 TIP 442023 20306 \N \N 6112665 2025-03-26 05:03:38.548 2025-03-26 05:03:38.548 0 FEE 443505 20687 \N \N 6112669 2025-03-26 05:04:11.998 2025-03-26 05:04:11.998 1000 FEE 443507 14255 \N \N 6112678 2025-03-26 05:04:36.108 2025-03-26 05:04:36.108 1000 FEE 443509 10493 \N \N 6112684 2025-03-26 05:06:08.684 2025-03-26 05:06:08.684 27900 FEE 443399 7587 \N \N 6112685 2025-03-26 05:06:08.684 2025-03-26 05:06:08.684 251100 TIP 443399 17148 \N \N 6112697 2025-03-26 05:07:20.181 2025-03-26 05:07:20.181 1000 FEE 443514 17365 \N \N 6112706 2025-03-26 05:08:22.519 2025-03-26 05:08:22.519 1000 FEE 443515 14404 \N \N 6112718 2025-03-26 05:11:36.281 2025-03-26 05:11:36.281 1000 FEE 443518 12656 \N \N 6112719 2025-03-26 05:11:36.281 2025-03-26 05:11:36.281 9000 TIP 443518 1549 \N \N 6112731 2025-03-26 05:13:20.351 2025-03-26 05:13:20.351 0 FEE 443521 2773 \N \N 6112778 2025-03-26 05:21:39.271 2025-03-26 05:21:39.271 1000 FEE 443535 20683 \N \N 6112798 2025-03-26 05:23:28.125 2025-03-26 05:23:28.125 4800 FEE 443496 14785 \N \N 6112799 2025-03-26 05:23:28.125 2025-03-26 05:23:28.125 43200 TIP 443496 16296 \N \N 6143967 2025-03-28 11:04:40.451 2025-03-28 11:04:40.451 189900 TIP 446937 20858 \N \N 6143970 2025-03-28 11:04:57.23 2025-03-28 11:04:57.23 1700 FEE 447225 959 \N \N 6143971 2025-03-28 11:04:57.23 2025-03-28 11:04:57.23 15300 TIP 447225 946 \N \N 6144007 2025-03-28 11:06:47.373 2025-03-28 11:06:47.373 1100 FEE 447125 15526 \N \N 6144008 2025-03-28 11:06:47.373 2025-03-28 11:06:47.373 9900 TIP 447125 20782 \N \N 6144014 2025-03-28 11:06:57.743 2025-03-28 11:06:57.743 1000 FEE 447226 13587 \N \N 6144015 2025-03-28 11:06:57.743 2025-03-28 11:06:57.743 9000 TIP 447226 7847 \N \N 6144034 2025-03-28 11:07:13.996 2025-03-28 11:07:13.996 1000 FEE 447225 6160 \N \N 6144035 2025-03-28 11:07:13.996 2025-03-28 11:07:13.996 9000 TIP 447225 20562 \N \N 6144048 2025-03-28 11:07:28.531 2025-03-28 11:07:28.531 1000 FEE 447121 954 \N \N 6144049 2025-03-28 11:07:28.531 2025-03-28 11:07:28.531 9000 TIP 447121 951 \N \N 6144069 2025-03-28 11:08:09.598 2025-03-28 11:08:09.598 1000 FEE 447154 17696 \N \N 6144070 2025-03-28 11:08:09.598 2025-03-28 11:08:09.598 9000 TIP 447154 21666 \N \N 6144076 2025-03-28 11:10:18.451 2025-03-28 11:10:18.451 1000 FEE 447233 2309 \N \N 6144078 2025-03-28 11:10:51.563 2025-03-28 11:10:51.563 1000 FEE 447235 1051 \N \N 6144088 2025-03-28 11:12:13.278 2025-03-28 11:12:13.278 1000 FEE 447194 16939 \N \N 6144089 2025-03-28 11:12:13.278 2025-03-28 11:12:13.278 9000 TIP 447194 2431 \N \N 6144102 2025-03-28 11:13:53.191 2025-03-28 11:13:53.191 3000 FEE 447159 18241 \N \N 6144103 2025-03-28 11:13:53.191 2025-03-28 11:13:53.191 27000 TIP 447159 9347 \N \N 6144113 2025-03-28 11:16:10.458 2025-03-28 11:16:10.458 4000 FEE 447156 1825 \N \N 6144114 2025-03-28 11:16:10.458 2025-03-28 11:16:10.458 36000 TIP 447156 9332 \N \N 6144128 2025-03-28 11:17:03.412 2025-03-28 11:17:03.412 100000 FEE 447241 2151 \N \N 6144163 2025-03-28 11:24:04.5 2025-03-28 11:24:04.5 0 FEE 447243 5961 \N \N 6144173 2025-03-28 11:25:53.57 2025-03-28 11:25:53.57 1000 POLL 446942 2123 \N \N 6144176 2025-03-28 11:25:56.492 2025-03-28 11:25:56.492 1100 FEE 446728 10352 \N \N 6144177 2025-03-28 11:25:56.492 2025-03-28 11:25:56.492 9900 TIP 446728 714 \N \N 6144189 2025-03-28 11:27:02.491 2025-03-28 11:27:02.491 1100 FEE 446465 768 \N \N 6144190 2025-03-28 11:27:02.491 2025-03-28 11:27:02.491 9900 TIP 446465 20606 \N \N 6144215 2025-03-28 11:31:27.535 2025-03-28 11:31:27.535 10000 FEE 447252 9820 \N \N 6144221 2025-03-28 11:32:13.423 2025-03-28 11:32:13.423 0 FEE 447253 20243 \N \N 6144224 2025-03-28 11:33:04.586 2025-03-28 11:33:04.586 10000 FEE 447255 17533 \N \N 6144235 2025-03-28 11:36:14.318 2025-03-28 11:36:14.318 100 FEE 447258 11862 \N \N 6144236 2025-03-28 11:36:14.318 2025-03-28 11:36:14.318 900 TIP 447258 9820 \N \N 6144242 2025-03-28 11:36:25.933 2025-03-28 11:36:25.933 0 FEE 447258 12102 \N \N 6144248 2025-03-28 11:38:06.28 2025-03-28 11:38:06.28 100 FEE 192644 1213 \N \N 6144249 2025-03-28 11:38:06.28 2025-03-28 11:38:06.28 900 TIP 192644 21275 \N \N 6112522 2025-03-26 04:45:48.112 2025-03-26 04:45:48.112 9000 TIP 442904 4819 \N \N 6112523 2025-03-26 04:45:48.275 2025-03-26 04:45:48.275 1000 FEE 442904 14357 \N \N 6112524 2025-03-26 04:45:48.275 2025-03-26 04:45:48.275 9000 TIP 442904 21398 \N \N 6112535 2025-03-26 04:46:01.116 2025-03-26 04:46:01.116 0 FEE 404172 20490 \N \N 6112542 2025-03-26 04:47:40.912 2025-03-26 04:47:40.912 1700 FEE 443152 18265 \N \N 6112543 2025-03-26 04:47:40.912 2025-03-26 04:47:40.912 15300 TIP 443152 15703 \N \N 6112601 2025-03-26 04:57:35.688 2025-03-26 04:57:35.688 0 FEE 443490 11477 \N \N 6112607 2025-03-26 04:58:24.792 2025-03-26 04:58:24.792 1000 FEE 443495 14015 \N \N 6112624 2025-03-26 04:59:33.588 2025-03-26 04:59:33.588 3100 FEE 443339 20922 \N \N 6112625 2025-03-26 04:59:33.588 2025-03-26 04:59:33.588 27900 TIP 443339 1478 \N \N 6112691 2025-03-26 05:07:04.803 2025-03-26 05:07:04.803 1000 FEE 443513 654 \N \N 6112713 2025-03-26 05:10:18.558 2025-03-26 05:10:18.558 1000 FEE 443518 20782 \N \N 6112724 2025-03-26 05:12:22.408 2025-03-26 05:12:22.408 2100 FEE 443399 21794 \N \N 6112725 2025-03-26 05:12:22.408 2025-03-26 05:12:22.408 18900 TIP 443399 19303 \N \N 6112737 2025-03-26 05:14:01.185 2025-03-26 05:14:01.185 1000 FEE 443523 10690 \N \N 6112751 2025-03-26 05:16:33.901 2025-03-26 05:16:33.901 1000 FEE 443459 20713 \N \N 6112752 2025-03-26 05:16:33.901 2025-03-26 05:16:33.901 9000 TIP 443459 1286 \N \N 6112770 2025-03-26 05:20:26.612 2025-03-26 05:20:26.612 97000 FEE 443532 2596 \N \N 6112772 2025-03-26 05:20:51.594 2025-03-26 05:20:51.594 710000 FEE 438108 7818 \N \N 6112773 2025-03-26 05:20:51.594 2025-03-26 05:20:51.594 6390000 TIP 438108 17082 \N \N 6112784 2025-03-26 05:22:40.754 2025-03-26 05:22:40.754 5700 FEE 443531 19446 \N \N 6112785 2025-03-26 05:22:40.754 2025-03-26 05:22:40.754 51300 TIP 443531 4487 \N \N 6112786 2025-03-26 05:22:50.016 2025-03-26 05:22:50.016 1000 FEE 443454 2335 \N \N 6112787 2025-03-26 05:22:50.016 2025-03-26 05:22:50.016 9000 TIP 443454 21485 \N \N 6144027 2025-03-28 11:07:12.118 2025-03-28 11:07:12.118 9000 TIP 447225 1609 \N \N 6144060 2025-03-28 11:07:30.9 2025-03-28 11:07:30.9 1000 FEE 447121 14213 \N \N 6144061 2025-03-28 11:07:30.9 2025-03-28 11:07:30.9 9000 TIP 447121 859 \N \N 6144077 2025-03-28 11:10:36.243 2025-03-28 11:10:36.243 1000 FEE 447234 21672 \N \N 6144090 2025-03-28 11:12:27.482 2025-03-28 11:12:27.482 3000 FEE 447118 18069 \N \N 6144091 2025-03-28 11:12:27.482 2025-03-28 11:12:27.482 27000 TIP 447118 12965 \N \N 6144095 2025-03-28 11:12:43.645 2025-03-28 11:12:43.645 50000 FEE 446406 21485 \N \N 6144096 2025-03-28 11:12:43.645 2025-03-28 11:12:43.645 450000 TIP 446406 15367 \N \N 6144100 2025-03-28 11:13:34.653 2025-03-28 11:13:34.653 3000 FEE 447136 20502 \N \N 6144101 2025-03-28 11:13:34.653 2025-03-28 11:13:34.653 27000 TIP 447136 9796 \N \N 6144031 2025-03-28 11:07:12.892 2025-03-28 11:07:12.892 9000 TIP 447225 21184 \N \N 6144066 2025-03-28 11:07:37.186 2025-03-28 11:07:37.186 1000 FEE 447232 15213 \N \N 6144097 2025-03-28 11:13:05.659 2025-03-28 11:13:05.659 3000 FEE 447123 11165 \N \N 6144098 2025-03-28 11:13:05.659 2025-03-28 11:13:05.659 27000 TIP 447123 1741 \N \N 6144137 2025-03-28 11:17:40.247 2025-03-28 11:17:40.247 0 FEE 447236 21114 \N \N 6144155 2025-03-28 11:23:04.703 2025-03-28 11:23:04.703 5000 FEE 447215 20802 \N \N 6144156 2025-03-28 11:23:04.703 2025-03-28 11:23:04.703 45000 TIP 447215 20133 \N \N 6144161 2025-03-28 11:23:57.932 2025-03-28 11:23:57.932 2000 FEE 447237 1729 \N \N 6144162 2025-03-28 11:23:57.932 2025-03-28 11:23:57.932 18000 TIP 447237 3347 \N \N 6144165 2025-03-28 11:24:17.079 2025-03-28 11:24:17.079 0 FEE 447243 9084 \N \N 6144166 2025-03-28 11:24:27.6 2025-03-28 11:24:27.6 2100 FEE 447208 632 \N \N 6144167 2025-03-28 11:24:27.6 2025-03-28 11:24:27.6 18900 TIP 447208 12768 \N \N 6144178 2025-03-28 11:25:57.569 2025-03-28 11:25:57.569 1000 FEE 447245 9242 \N \N 6144183 2025-03-28 11:26:45.078 2025-03-28 11:26:45.078 300 FEE 447208 1493 \N \N 6144184 2025-03-28 11:26:45.078 2025-03-28 11:26:45.078 2700 TIP 447208 21824 \N \N 6144194 2025-03-28 11:27:19.216 2025-03-28 11:27:19.216 1000 FEE 447246 14489 \N \N 6144195 2025-03-28 11:27:19.216 2025-03-28 11:27:19.216 9000 TIP 447246 17183 \N \N 6144196 2025-03-28 11:27:42.557 2025-03-28 11:27:42.557 1100 FEE 447149 20647 \N \N 6144197 2025-03-28 11:27:42.557 2025-03-28 11:27:42.557 9900 TIP 447149 9184 \N \N 6144211 2025-03-28 11:30:15.825 2025-03-28 11:30:15.825 1000 FEE 447249 17592 \N \N 6144212 2025-03-28 11:30:48.785 2025-03-28 11:30:48.785 1000 FEE 447250 18528 \N \N 6144232 2025-03-28 11:35:38.007 2025-03-28 11:35:38.007 0 FEE 447257 1658 \N \N 6144240 2025-03-28 11:36:15.825 2025-03-28 11:36:15.825 9000 FEE 447258 11942 \N \N 6144241 2025-03-28 11:36:15.825 2025-03-28 11:36:15.825 81000 TIP 447258 18557 \N \N 6144257 2025-03-28 11:38:52.049 2025-03-28 11:38:52.049 1000 FEE 447261 13406 \N \N 6144274 2025-03-28 11:42:14.146 2025-03-28 11:42:14.146 2100 FEE 447251 9335 \N \N 6144275 2025-03-28 11:42:14.146 2025-03-28 11:42:14.146 18900 TIP 447251 16556 \N \N 6144283 2025-03-28 11:43:25.379 2025-03-28 11:43:25.379 1000 FEE 447233 12277 \N \N 6144284 2025-03-28 11:43:25.379 2025-03-28 11:43:25.379 9000 TIP 447233 3478 \N \N 6144295 2025-03-28 11:45:05.544 2025-03-28 11:45:05.544 100000 FEE 447265 7818 \N \N 6144319 2025-03-28 11:47:26.621 2025-03-28 11:47:26.621 7700 FEE 447219 766 \N \N 6144320 2025-03-28 11:47:26.621 2025-03-28 11:47:26.621 69300 TIP 447219 1012 \N \N 6144322 2025-03-28 11:47:30.668 2025-03-28 11:47:30.668 7700 FEE 447260 9362 \N \N 6144323 2025-03-28 11:47:30.668 2025-03-28 11:47:30.668 69300 TIP 447260 9200 \N \N 6144361 2025-03-28 11:49:58.507 2025-03-28 11:49:58.507 2100 FEE 446963 19193 \N \N 6144362 2025-03-28 11:49:58.507 2025-03-28 11:49:58.507 18900 TIP 446963 1411 \N \N 6144402 2025-03-28 11:52:19.481 2025-03-28 11:52:19.481 1000 FEE 447276 5779 \N \N 6144427 2025-03-28 12:00:13.355 2025-03-28 12:00:13.355 2100 FEE 447085 20990 \N \N 6144428 2025-03-28 12:00:13.355 2025-03-28 12:00:13.355 18900 TIP 447085 7766 \N \N 6144439 2025-03-28 12:02:04.582 2025-03-28 12:02:04.582 1000 FEE 447276 11609 \N \N 6144440 2025-03-28 12:02:04.582 2025-03-28 12:02:04.582 9000 TIP 447276 2748 \N \N 6144448 2025-03-28 12:02:35.359 2025-03-28 12:02:35.359 1000 FEE 447282 21647 \N \N 6144449 2025-03-28 12:02:35.359 2025-03-28 12:02:35.359 9000 TIP 447282 21401 \N \N 6144479 2025-03-28 12:03:46.301 2025-03-28 12:03:46.301 1000 FEE 447288 11996 \N \N 6144480 2025-03-28 12:03:46.301 2025-03-28 12:03:46.301 9000 TIP 447288 21485 \N \N 6144490 2025-03-28 12:04:33.362 2025-03-28 12:04:33.362 10000 FEE 447287 4538 \N \N 6144491 2025-03-28 12:04:33.362 2025-03-28 12:04:33.362 90000 TIP 447287 16212 \N \N 6144492 2025-03-28 12:04:48.38 2025-03-28 12:04:48.38 1000 FEE 447291 1352 \N \N 6144501 2025-03-28 12:06:11.817 2025-03-28 12:06:11.817 1000 FEE 447295 2620 \N \N 6144530 2025-03-28 12:08:50.192 2025-03-28 12:08:50.192 7600 FEE 447143 763 \N \N 6144531 2025-03-28 12:08:50.192 2025-03-28 12:08:50.192 68400 TIP 447143 9200 \N \N 6144582 2025-03-28 12:12:52.91 2025-03-28 12:12:52.91 2100 FEE 447263 1389 \N \N 6144583 2025-03-28 12:12:52.91 2025-03-28 12:12:52.91 18900 TIP 447263 20243 \N \N 6144590 2025-03-28 12:13:08.932 2025-03-28 12:13:08.932 1000 FEE 447120 726 \N \N 6144591 2025-03-28 12:13:08.932 2025-03-28 12:13:08.932 9000 TIP 447120 18734 \N \N 6144604 2025-03-28 12:14:32.075 2025-03-28 12:14:32.075 1000 FEE 447143 21442 \N \N 6144605 2025-03-28 12:14:32.075 2025-03-28 12:14:32.075 9000 TIP 447143 21713 \N \N 6144606 2025-03-28 12:14:55.795 2025-03-28 12:14:55.795 100000 FEE 447304 20201 \N \N 6144644 2025-03-28 12:20:22.827 2025-03-28 12:20:22.827 1000 FEE 447300 18529 \N \N 6144645 2025-03-28 12:20:22.827 2025-03-28 12:20:22.827 9000 TIP 447300 3304 \N \N 6144691 2025-03-28 12:22:43.841 2025-03-28 12:22:43.841 2100 FEE 447251 10352 \N \N 6144692 2025-03-28 12:22:43.841 2025-03-28 12:22:43.841 18900 TIP 447251 704 \N \N 6144736 2025-03-28 12:25:01.003 2025-03-28 12:25:01.003 1000 FEE 446937 10554 \N \N 6144737 2025-03-28 12:25:01.003 2025-03-28 12:25:01.003 9000 TIP 446937 21768 \N \N 6144786 2025-03-28 12:26:52.118 2025-03-28 12:26:52.118 2100 FEE 446697 17212 \N \N 6144787 2025-03-28 12:26:52.118 2025-03-28 12:26:52.118 18900 TIP 446697 6136 \N \N 6144848 2025-03-28 12:29:35.458 2025-03-28 12:29:35.458 1000 FEE 447302 15491 \N \N 6144849 2025-03-28 12:29:35.458 2025-03-28 12:29:35.458 9000 TIP 447302 2711 \N \N 6144899 2025-03-28 12:35:14.491 2025-03-28 12:35:14.491 300 FEE 447310 10586 \N \N 6144900 2025-03-28 12:35:14.491 2025-03-28 12:35:14.491 2700 TIP 447310 2596 \N \N 6144901 2025-03-28 12:35:15.288 2025-03-28 12:35:15.288 300 FEE 447310 15367 \N \N 6144902 2025-03-28 12:35:15.288 2025-03-28 12:35:15.288 2700 TIP 447310 3478 \N \N 6144925 2025-03-28 12:37:32.977 2025-03-28 12:37:32.977 0 FEE 447325 9295 \N \N 6144964 2025-03-28 12:39:56.763 2025-03-28 12:39:56.763 300 FEE 446452 8870 \N \N 6144965 2025-03-28 12:39:56.763 2025-03-28 12:39:56.763 2700 TIP 446452 8508 \N \N 6144976 2025-03-28 12:41:37.49 2025-03-28 12:41:37.49 1000 FEE 447331 21233 \N \N 6144977 2025-03-28 12:41:37.49 2025-03-28 12:41:37.49 9000 TIP 447331 13399 \N \N 6144991 2025-03-28 12:42:42.27 2025-03-28 12:42:42.27 1000 FEE 447332 1959 \N \N 6144992 2025-03-28 12:42:42.27 2025-03-28 12:42:42.27 9000 TIP 447332 17891 \N \N 6144109 2025-03-28 11:15:09.207 2025-03-28 11:15:09.207 1000 FEE 447239 2749 \N \N 6144132 2025-03-28 11:17:18.379 2025-03-28 11:17:18.379 100000 DONT_LIKE_THIS 447235 9476 \N \N 6144147 2025-03-28 11:20:27.601 2025-03-28 11:20:27.601 1000 FEE 447079 1439 \N \N 6144148 2025-03-28 11:20:27.601 2025-03-28 11:20:27.601 9000 TIP 447079 19581 \N \N 6144172 2025-03-28 11:25:32.494 2025-03-28 11:25:32.494 1000 FEE 447244 17162 \N \N 6144205 2025-03-28 11:29:45.699 2025-03-28 11:29:45.699 1000 FEE 446945 8269 \N \N 6144206 2025-03-28 11:29:45.699 2025-03-28 11:29:45.699 9000 TIP 446945 20562 \N \N 6144208 2025-03-28 11:30:14.471 2025-03-28 11:30:14.471 11700 FEE 447241 14080 \N \N 6144209 2025-03-28 11:30:14.471 2025-03-28 11:30:14.471 105300 TIP 447241 16124 \N \N 6144217 2025-03-28 11:31:37.86 2025-03-28 11:31:37.86 11700 FEE 447251 15196 \N \N 6144218 2025-03-28 11:31:37.86 2025-03-28 11:31:37.86 105300 TIP 447251 2757 \N \N 6144231 2025-03-28 11:35:27.885 2025-03-28 11:35:27.885 1000 FEE 447258 14472 \N \N 6144246 2025-03-28 11:38:05.754 2025-03-28 11:38:05.754 500 FEE 446937 18717 \N \N 6144247 2025-03-28 11:38:05.754 2025-03-28 11:38:05.754 4500 TIP 446937 16212 \N \N 6144255 2025-03-28 11:38:43.952 2025-03-28 11:38:43.952 21000 FEE 447251 9352 \N \N 6144256 2025-03-28 11:38:43.952 2025-03-28 11:38:43.952 189000 TIP 447251 1428 \N \N 6144301 2025-03-28 11:45:43.528 2025-03-28 11:45:43.528 2100 FEE 447210 8242 \N \N 6144302 2025-03-28 11:45:43.528 2025-03-28 11:45:43.528 18900 TIP 447210 20981 \N \N 6144303 2025-03-28 11:45:44.578 2025-03-28 11:45:44.578 2100 FEE 447256 3400 \N \N 6144304 2025-03-28 11:45:44.578 2025-03-28 11:45:44.578 18900 TIP 447256 21833 \N \N 6144334 2025-03-28 11:47:41.821 2025-03-28 11:47:41.821 2100 FEE 447252 14385 \N \N 6144335 2025-03-28 11:47:41.821 2025-03-28 11:47:41.821 18900 TIP 447252 9611 \N \N 6144343 2025-03-28 11:48:16.066 2025-03-28 11:48:16.066 1000 FEE 447271 780 \N \N 6144350 2025-03-28 11:49:04.349 2025-03-28 11:49:04.349 1000 FEE 447272 12057 \N \N 6144383 2025-03-28 11:50:53.241 2025-03-28 11:50:53.241 2100 FEE 446603 15192 \N \N 6144384 2025-03-28 11:50:53.241 2025-03-28 11:50:53.241 18900 TIP 446603 1130 \N \N 6144397 2025-03-28 11:51:59.523 2025-03-28 11:51:59.523 3300 FEE 446880 20120 \N \N 6144398 2025-03-28 11:51:59.523 2025-03-28 11:51:59.523 29700 TIP 446880 21532 \N \N 6144409 2025-03-28 11:54:44.025 2025-03-28 11:54:44.025 1000 FEE 447277 11760 \N \N 6144410 2025-03-28 11:54:44.025 2025-03-28 11:54:44.025 9000 TIP 447277 15577 \N \N 6144413 2025-03-28 11:56:05.081 2025-03-28 11:56:05.081 1000 FEE 447280 13547 \N \N 6144422 2025-03-28 11:59:40.351 2025-03-28 11:59:40.351 1000 FEE 447265 2123 \N \N 6144423 2025-03-28 11:59:40.351 2025-03-28 11:59:40.351 9000 TIP 447265 9378 \N \N 6144437 2025-03-28 12:02:03.313 2025-03-28 12:02:03.313 10000 FEE 447143 10016 \N \N 6144438 2025-03-28 12:02:03.313 2025-03-28 12:02:03.313 90000 TIP 447143 4958 \N \N 6144525 2025-03-28 12:08:17.433 2025-03-28 12:08:17.433 2100 FEE 447257 7766 \N \N 6144526 2025-03-28 12:08:17.433 2025-03-28 12:08:17.433 18900 TIP 447257 17693 \N \N 6144528 2025-03-28 12:08:42.459 2025-03-28 12:08:42.459 7600 FEE 447251 16351 \N \N 6144529 2025-03-28 12:08:42.459 2025-03-28 12:08:42.459 68400 TIP 447251 16966 \N \N 6144559 2025-03-28 12:10:50.284 2025-03-28 12:10:50.284 1000 FEE 447300 660 \N \N 6144570 2025-03-28 12:11:29.363 2025-03-28 12:11:29.363 1000 FEE 447252 2519 \N \N 6144571 2025-03-28 12:11:29.363 2025-03-28 12:11:29.363 9000 TIP 447252 896 \N \N 6144572 2025-03-28 12:11:34.277 2025-03-28 12:11:34.277 10000 FEE 447287 21040 \N \N 6144573 2025-03-28 12:11:34.277 2025-03-28 12:11:34.277 90000 TIP 447287 2309 \N \N 6144578 2025-03-28 12:12:19.346 2025-03-28 12:12:19.346 0 FEE 447302 11873 \N \N 6144584 2025-03-28 12:13:05.627 2025-03-28 12:13:05.627 2100 FEE 446609 1697 \N \N 6144585 2025-03-28 12:13:05.627 2025-03-28 12:13:05.627 18900 TIP 446609 16250 \N \N 6144616 2025-03-28 12:16:24.766 2025-03-28 12:16:24.766 1000 FEE 446440 20291 \N \N 6144617 2025-03-28 12:16:24.766 2025-03-28 12:16:24.766 9000 TIP 446440 16456 \N \N 6144629 2025-03-28 12:19:21.502 2025-03-28 12:19:21.502 10000 FEE 447304 21442 \N \N 6144630 2025-03-28 12:19:21.502 2025-03-28 12:19:21.502 90000 TIP 447304 21631 \N \N 6144657 2025-03-28 12:21:30.424 2025-03-28 12:21:30.424 1000 FEE 447305 721 \N \N 6144658 2025-03-28 12:21:30.424 2025-03-28 12:21:30.424 9000 TIP 447305 10661 \N \N 6144662 2025-03-28 12:21:51.865 2025-03-28 12:21:51.865 1000 FEE 447308 1985 \N \N 6144665 2025-03-28 12:22:22.455 2025-03-28 12:22:22.455 100 FEE 447189 11220 \N \N 6144666 2025-03-28 12:22:22.455 2025-03-28 12:22:22.455 900 TIP 447189 9336 \N \N 6144667 2025-03-28 12:22:22.686 2025-03-28 12:22:22.686 100 FEE 447189 17541 \N \N 6144668 2025-03-28 12:22:22.686 2025-03-28 12:22:22.686 900 TIP 447189 1806 \N \N 6144683 2025-03-28 12:22:41.76 2025-03-28 12:22:41.76 2100 FEE 446937 11789 \N \N 6144684 2025-03-28 12:22:41.76 2025-03-28 12:22:41.76 18900 TIP 446937 985 \N \N 6144694 2025-03-28 12:23:33.129 2025-03-28 12:23:33.129 2100 FEE 446301 18526 \N \N 6144695 2025-03-28 12:23:33.129 2025-03-28 12:23:33.129 18900 TIP 446301 20691 \N \N 6144708 2025-03-28 12:23:48.969 2025-03-28 12:23:48.969 1000 POLL 446942 20778 \N \N 6144750 2025-03-28 12:25:02.461 2025-03-28 12:25:02.461 1000 FEE 446937 18269 \N \N 6144751 2025-03-28 12:25:02.461 2025-03-28 12:25:02.461 9000 TIP 446937 5725 \N \N 6144754 2025-03-28 12:25:02.68 2025-03-28 12:25:02.68 1000 FEE 446937 4973 \N \N 6144755 2025-03-28 12:25:02.68 2025-03-28 12:25:02.68 9000 TIP 446937 8168 \N \N 6042206 2025-03-20 03:49:26.84 2025-03-20 03:49:26.84 0 FEE 436111 16513 \N \N 6042209 2025-03-20 03:50:38.648 2025-03-20 03:50:38.648 1000 FEE 435770 13544 \N \N 6042210 2025-03-20 03:50:38.648 2025-03-20 03:50:38.648 9000 TIP 435770 21334 \N \N 6042256 2025-03-20 03:53:10.691 2025-03-20 03:53:10.691 2300 FEE 435928 16747 \N \N 6042257 2025-03-20 03:53:10.691 2025-03-20 03:53:10.691 20700 TIP 435928 16387 \N \N 6042282 2025-03-20 03:53:13.234 2025-03-20 03:53:13.234 2300 FEE 435928 6382 \N \N 6042283 2025-03-20 03:53:13.234 2025-03-20 03:53:13.234 20700 TIP 435928 7675 \N \N 6042312 2025-03-20 03:53:18.073 2025-03-20 03:53:18.073 2300 FEE 435928 9845 \N \N 6042313 2025-03-20 03:53:18.073 2025-03-20 03:53:18.073 20700 TIP 435928 21248 \N \N 6042326 2025-03-20 03:53:19.298 2025-03-20 03:53:19.298 2300 FEE 435928 1145 \N \N 6042327 2025-03-20 03:53:19.298 2025-03-20 03:53:19.298 20700 TIP 435928 2724 \N \N 6042347 2025-03-20 03:53:27.823 2025-03-20 03:53:27.823 2300 FEE 435928 7119 \N \N 6042348 2025-03-20 03:53:27.823 2025-03-20 03:53:27.823 20700 TIP 435928 762 \N \N 6042379 2025-03-20 03:53:32.105 2025-03-20 03:53:32.105 2300 FEE 435928 20901 \N \N 6042380 2025-03-20 03:53:32.105 2025-03-20 03:53:32.105 20700 TIP 435928 20500 \N \N 6042407 2025-03-20 03:53:35.009 2025-03-20 03:53:35.009 2300 FEE 435928 11527 \N \N 6042408 2025-03-20 03:53:35.009 2025-03-20 03:53:35.009 20700 TIP 435928 848 \N \N 6042417 2025-03-20 03:53:46.736 2025-03-20 03:53:46.736 1000 FEE 436123 2088 \N \N 6042418 2025-03-20 03:53:56.98 2025-03-20 03:53:56.98 1000 FEE 436124 12261 \N \N 6042419 2025-03-20 03:54:09.861 2025-03-20 03:54:09.861 0 FEE 436119 10536 \N \N 6042423 2025-03-20 03:54:18.686 2025-03-20 03:54:18.686 2300 FEE 435847 761 \N \N 6042424 2025-03-20 03:54:18.686 2025-03-20 03:54:18.686 20700 TIP 435847 7119 \N \N 6042468 2025-03-20 03:54:23.079 2025-03-20 03:54:23.079 2100 FEE 435946 20993 \N \N 6042469 2025-03-20 03:54:23.079 2025-03-20 03:54:23.079 18900 TIP 435946 6688 \N \N 6042470 2025-03-20 03:54:23.329 2025-03-20 03:54:23.329 2300 FEE 435847 13798 \N \N 6042471 2025-03-20 03:54:23.329 2025-03-20 03:54:23.329 20700 TIP 435847 10273 \N \N 6042474 2025-03-20 03:54:23.736 2025-03-20 03:54:23.736 2300 FEE 435847 2670 \N \N 6042475 2025-03-20 03:54:23.736 2025-03-20 03:54:23.736 20700 TIP 435847 18309 \N \N 6042480 2025-03-20 03:54:24.627 2025-03-20 03:54:24.627 2300 FEE 435847 2061 \N \N 6042481 2025-03-20 03:54:24.627 2025-03-20 03:54:24.627 20700 TIP 435847 10007 \N \N 6042486 2025-03-20 03:54:25.179 2025-03-20 03:54:25.179 2300 FEE 435847 15273 \N \N 6042487 2025-03-20 03:54:25.179 2025-03-20 03:54:25.179 20700 TIP 435847 1960 \N \N 6042502 2025-03-20 03:54:48.156 2025-03-20 03:54:48.156 2300 FEE 435944 19446 \N \N 6042503 2025-03-20 03:54:48.156 2025-03-20 03:54:48.156 20700 TIP 435944 17095 \N \N 6042508 2025-03-20 03:54:48.775 2025-03-20 03:54:48.775 2300 FEE 435944 14278 \N \N 6042509 2025-03-20 03:54:48.775 2025-03-20 03:54:48.775 20700 TIP 435944 21639 \N \N 6042530 2025-03-20 03:54:51.085 2025-03-20 03:54:51.085 2300 FEE 435944 14731 \N \N 6042531 2025-03-20 03:54:51.085 2025-03-20 03:54:51.085 20700 TIP 435944 14607 \N \N 6042532 2025-03-20 03:54:54.056 2025-03-20 03:54:54.056 1000 FEE 436126 3717 \N \N 6042540 2025-03-20 03:55:20.486 2025-03-20 03:55:20.486 4000 FEE 436053 7583 \N \N 6042541 2025-03-20 03:55:20.486 2025-03-20 03:55:20.486 36000 TIP 436053 15549 \N \N 6042542 2025-03-20 03:55:20.802 2025-03-20 03:55:20.802 4000 FEE 436053 18114 \N \N 6042543 2025-03-20 03:55:20.802 2025-03-20 03:55:20.802 36000 TIP 436053 18930 \N \N 6042550 2025-03-20 03:56:41.66 2025-03-20 03:56:41.66 4000 FEE 434801 1751 \N \N 6042551 2025-03-20 03:56:41.66 2025-03-20 03:56:41.66 36000 TIP 434801 19796 \N \N 6042581 2025-03-20 04:00:02.943 2025-03-20 04:00:02.943 1000 FEE 436130 2734 \N \N 6042592 2025-03-20 04:02:23.585 2025-03-20 04:02:23.585 10000 FEE 435948 658 \N \N 6042593 2025-03-20 04:02:23.585 2025-03-20 04:02:23.585 90000 TIP 435948 21067 \N \N 6042609 2025-03-20 04:04:51.058 2025-03-20 04:04:51.058 1000 FEE 436137 8416 \N \N 6042629 2025-03-20 04:06:44.89 2025-03-20 04:06:44.89 1100 FEE 435596 20187 \N \N 6042630 2025-03-20 04:06:44.89 2025-03-20 04:06:44.89 9900 TIP 435596 21374 \N \N 6042637 2025-03-20 04:06:48.927 2025-03-20 04:06:48.927 1100 FEE 435847 20757 \N \N 6042638 2025-03-20 04:06:48.927 2025-03-20 04:06:48.927 9900 TIP 435847 626 \N \N 6042670 2025-03-20 04:07:21.486 2025-03-20 04:07:21.486 1100 FEE 435944 17124 \N \N 6042671 2025-03-20 04:07:21.486 2025-03-20 04:07:21.486 9900 TIP 435944 11498 \N \N 6042693 2025-03-20 04:09:04.678 2025-03-20 04:09:04.678 9000 FEE 436001 7119 \N \N 6042694 2025-03-20 04:09:04.678 2025-03-20 04:09:04.678 81000 TIP 436001 7766 \N \N 6042713 2025-03-20 04:09:32.689 2025-03-20 04:09:32.689 2000 FEE 436036 21228 \N \N 6042714 2025-03-20 04:09:32.689 2025-03-20 04:09:32.689 18000 TIP 436036 14791 \N \N 6042732 2025-03-20 04:11:49.605 2025-03-20 04:11:49.605 10000 FEE 436149 2065 \N \N 6042756 2025-03-20 04:13:41.373 2025-03-20 04:13:41.373 300 FEE 436115 20717 \N \N 6042757 2025-03-20 04:13:41.373 2025-03-20 04:13:41.373 2700 TIP 436115 9036 \N \N 6042758 2025-03-20 04:13:41.857 2025-03-20 04:13:41.857 500 FEE 435944 21012 \N \N 6042759 2025-03-20 04:13:41.857 2025-03-20 04:13:41.857 4500 TIP 435944 1198 \N \N 6042786 2025-03-20 04:15:04.185 2025-03-20 04:15:04.185 500 FEE 435580 7992 \N \N 6042787 2025-03-20 04:15:04.185 2025-03-20 04:15:04.185 4500 TIP 435580 21022 \N \N 6042850 2025-03-20 04:18:12.655 2025-03-20 04:18:12.655 300 FEE 435970 5809 \N \N 6042851 2025-03-20 04:18:12.655 2025-03-20 04:18:12.655 2700 TIP 435970 18225 \N \N 6042855 2025-03-20 04:18:16.993 2025-03-20 04:18:16.993 100 FEE 436015 20495 \N \N 6042856 2025-03-20 04:18:16.993 2025-03-20 04:18:16.993 900 TIP 436015 7583 \N \N 6042861 2025-03-20 04:18:39.694 2025-03-20 04:18:39.694 2100 FEE 435328 3377 \N \N 6042862 2025-03-20 04:18:39.694 2025-03-20 04:18:39.694 18900 TIP 435328 14381 \N \N 6042871 2025-03-20 04:19:43.127 2025-03-20 04:19:43.127 900 FEE 436093 16754 \N \N 6042872 2025-03-20 04:19:43.127 2025-03-20 04:19:43.127 8100 TIP 436093 11144 \N \N 6042875 2025-03-20 04:19:44.876 2025-03-20 04:19:44.876 1000 FEE 436159 19488 \N \N 6042916 2025-03-20 04:23:03.057 2025-03-20 04:23:03.057 500 FEE 435895 16347 \N \N 6042917 2025-03-20 04:23:03.057 2025-03-20 04:23:03.057 4500 TIP 435895 14818 \N \N 6042962 2025-03-20 04:27:16.5 2025-03-20 04:27:16.5 0 FEE 436167 12422 \N \N 6042969 2025-03-20 04:27:22.608 2025-03-20 04:27:22.608 2700 FEE 435663 8469 \N \N 6042970 2025-03-20 04:27:22.608 2025-03-20 04:27:22.608 24300 TIP 435663 9845 \N \N 6043020 2025-03-20 04:30:11.599 2025-03-20 04:30:11.599 10000 FEE 436148 5759 \N \N 6043021 2025-03-20 04:30:11.599 2025-03-20 04:30:11.599 90000 TIP 436148 8570 \N \N 6043030 2025-03-20 04:31:14.698 2025-03-20 04:31:14.698 1000 FEE 436175 11165 \N \N 6043031 2025-03-20 04:31:37.957 2025-03-20 04:31:37.957 1000 FEE 436176 8926 \N \N 6043040 2025-03-20 04:31:42.147 2025-03-20 04:31:42.147 100 FEE 436123 2061 \N \N 6043041 2025-03-20 04:31:42.147 2025-03-20 04:31:42.147 900 TIP 436123 21379 \N \N 6043057 2025-03-20 04:34:47.467 2025-03-20 04:34:47.467 10000 FEE 436181 19524 \N \N 6043095 2025-03-20 04:47:15.193 2025-03-20 04:47:15.193 1000 FEE 436046 21012 \N \N 6043096 2025-03-20 04:47:15.193 2025-03-20 04:47:15.193 9000 TIP 436046 713 \N \N 6043105 2025-03-20 04:48:09.064 2025-03-20 04:48:09.064 1000 FEE 436041 6030 \N \N 6043106 2025-03-20 04:48:09.064 2025-03-20 04:48:09.064 9000 TIP 436041 14990 \N \N 6043112 2025-03-20 04:50:05.789 2025-03-20 04:50:05.789 100 FEE 435629 20812 \N \N 6043113 2025-03-20 04:50:05.789 2025-03-20 04:50:05.789 900 TIP 435629 10493 \N \N 6043118 2025-03-20 04:50:39.552 2025-03-20 04:50:39.552 1000 FEE 436199 8713 \N \N 6043119 2025-03-20 04:50:39.909 2025-03-20 04:50:39.909 100 FEE 436189 16956 \N \N 6043120 2025-03-20 04:50:39.909 2025-03-20 04:50:39.909 900 TIP 436189 20646 \N \N 6043122 2025-03-20 04:51:37.188 2025-03-20 04:51:37.188 10000 FEE 436201 636 \N \N 6043129 2025-03-20 04:52:52.048 2025-03-20 04:52:52.048 1000 FEE 436203 4633 \N \N 6043130 2025-03-20 04:53:06.923 2025-03-20 04:53:06.923 0 FEE 436199 9551 \N \N 6043140 2025-03-20 04:53:51.663 2025-03-20 04:53:51.663 1000 FEE 436044 7978 \N \N 6043141 2025-03-20 04:53:51.663 2025-03-20 04:53:51.663 9000 TIP 436044 17316 \N \N 6043180 2025-03-20 04:55:30.506 2025-03-20 04:55:30.506 8300 FEE 436197 10979 \N \N 6043181 2025-03-20 04:55:30.506 2025-03-20 04:55:30.506 74700 TIP 436197 12779 \N \N 6042216 2025-03-20 03:51:53.391 2025-03-20 03:51:53.391 4000 FEE 436100 976 \N \N 6042217 2025-03-20 03:51:53.391 2025-03-20 03:51:53.391 36000 TIP 436100 20245 \N \N 6042226 2025-03-20 03:53:07.818 2025-03-20 03:53:07.818 2300 FEE 435928 721 \N \N 6042227 2025-03-20 03:53:07.818 2025-03-20 03:53:07.818 20700 TIP 435928 10586 \N \N 6042252 2025-03-20 03:53:10.355 2025-03-20 03:53:10.355 2300 FEE 435928 17082 \N \N 6042253 2025-03-20 03:53:10.355 2025-03-20 03:53:10.355 20700 TIP 435928 16556 \N \N 6042254 2025-03-20 03:53:10.54 2025-03-20 03:53:10.54 2300 FEE 435928 1105 \N \N 6042255 2025-03-20 03:53:10.54 2025-03-20 03:53:10.54 20700 TIP 435928 20613 \N \N 6042266 2025-03-20 03:53:11.836 2025-03-20 03:53:11.836 2300 FEE 435928 12507 \N \N 6042267 2025-03-20 03:53:11.836 2025-03-20 03:53:11.836 20700 TIP 435928 4292 \N \N 6042289 2025-03-20 03:53:14.939 2025-03-20 03:53:14.939 1000 FEE 436122 19463 \N \N 6042306 2025-03-20 03:53:17.068 2025-03-20 03:53:17.068 2300 FEE 435928 21040 \N \N 6042307 2025-03-20 03:53:17.068 2025-03-20 03:53:17.068 20700 TIP 435928 2652 \N \N 6042330 2025-03-20 03:53:19.597 2025-03-20 03:53:19.597 2300 FEE 435928 997 \N \N 6042331 2025-03-20 03:53:19.597 2025-03-20 03:53:19.597 20700 TIP 435928 20117 \N \N 6042340 2025-03-20 03:53:21.335 2025-03-20 03:53:21.335 2300 FEE 435928 654 \N \N 6042341 2025-03-20 03:53:21.335 2025-03-20 03:53:21.335 20700 TIP 435928 21022 \N \N 6042342 2025-03-20 03:53:21.515 2025-03-20 03:53:21.515 2300 FEE 435928 20781 \N \N 6042343 2025-03-20 03:53:21.515 2025-03-20 03:53:21.515 20700 TIP 435928 11750 \N \N 6042355 2025-03-20 03:53:28.492 2025-03-20 03:53:28.492 2300 FEE 435928 9355 \N \N 6042356 2025-03-20 03:53:28.492 2025-03-20 03:53:28.492 20700 TIP 435928 20062 \N \N 6042382 2025-03-20 03:53:32.261 2025-03-20 03:53:32.261 2300 FEE 435928 20275 \N \N 6042383 2025-03-20 03:53:32.261 2025-03-20 03:53:32.261 20700 TIP 435928 13622 \N \N 6042392 2025-03-20 03:53:33.149 2025-03-20 03:53:33.149 2300 FEE 435928 1881 \N \N 6042393 2025-03-20 03:53:33.149 2025-03-20 03:53:33.149 20700 TIP 435928 733 \N \N 6042415 2025-03-20 03:53:35.655 2025-03-20 03:53:35.655 2300 FEE 435928 10409 \N \N 6042416 2025-03-20 03:53:35.655 2025-03-20 03:53:35.655 20700 TIP 435928 21501 \N \N 6042427 2025-03-20 03:54:19.032 2025-03-20 03:54:19.032 2300 FEE 435847 21349 \N \N 6042428 2025-03-20 03:54:19.032 2025-03-20 03:54:19.032 20700 TIP 435847 16704 \N \N 6042439 2025-03-20 03:54:20.391 2025-03-20 03:54:20.391 2300 FEE 435847 7667 \N \N 6042440 2025-03-20 03:54:20.391 2025-03-20 03:54:20.391 20700 TIP 435847 13133 \N \N 6042461 2025-03-20 03:54:22.339 2025-03-20 03:54:22.339 2300 FEE 435847 4754 \N \N 6042462 2025-03-20 03:54:22.339 2025-03-20 03:54:22.339 20700 TIP 435847 18473 \N \N 6042466 2025-03-20 03:54:22.708 2025-03-20 03:54:22.708 2300 FEE 435847 8544 \N \N 6042467 2025-03-20 03:54:22.708 2025-03-20 03:54:22.708 20700 TIP 435847 21810 \N \N 6042472 2025-03-20 03:54:23.533 2025-03-20 03:54:23.533 2300 FEE 435847 2335 \N \N 6042473 2025-03-20 03:54:23.533 2025-03-20 03:54:23.533 20700 TIP 435847 20841 \N \N 6042482 2025-03-20 03:54:24.809 2025-03-20 03:54:24.809 2300 FEE 435847 18901 \N \N 6042483 2025-03-20 03:54:24.809 2025-03-20 03:54:24.809 20700 TIP 435847 17030 \N \N 6042490 2025-03-20 03:54:25.742 2025-03-20 03:54:25.742 2300 FEE 435847 18678 \N \N 6042491 2025-03-20 03:54:25.742 2025-03-20 03:54:25.742 20700 TIP 435847 2596 \N \N 6042496 2025-03-20 03:54:40.646 2025-03-20 03:54:40.646 1600 FEE 436093 20220 \N \N 6042497 2025-03-20 03:54:40.646 2025-03-20 03:54:40.646 14400 TIP 436093 9333 \N \N 6042520 2025-03-20 03:54:49.946 2025-03-20 03:54:49.946 2300 FEE 435944 18528 \N \N 6042521 2025-03-20 03:54:49.946 2025-03-20 03:54:49.946 20700 TIP 435944 11417 \N \N 6042522 2025-03-20 03:54:50.114 2025-03-20 03:54:50.114 2300 FEE 435944 5377 \N \N 6042523 2025-03-20 03:54:50.114 2025-03-20 03:54:50.114 20700 TIP 435944 20911 \N \N 6042524 2025-03-20 03:54:50.301 2025-03-20 03:54:50.301 2300 FEE 435944 1047 \N \N 6042525 2025-03-20 03:54:50.301 2025-03-20 03:54:50.301 20700 TIP 435944 7760 \N \N 6042544 2025-03-20 03:55:26.389 2025-03-20 03:55:26.389 0 FEE 436126 18630 \N \N 6042571 2025-03-20 03:58:45.747 2025-03-20 03:58:45.747 10000 FEE 436023 21281 \N \N 6042572 2025-03-20 03:58:45.747 2025-03-20 03:58:45.747 90000 TIP 436023 19777 \N \N 6042575 2025-03-20 03:59:08.719 2025-03-20 03:59:08.719 100 FEE 435944 2367 \N \N 6042576 2025-03-20 03:59:08.719 2025-03-20 03:59:08.719 900 TIP 435944 14774 \N \N 6042666 2025-03-20 04:07:21.179 2025-03-20 04:07:21.179 1100 FEE 435944 5806 \N \N 6042667 2025-03-20 04:07:21.179 2025-03-20 04:07:21.179 9900 TIP 435944 1567 \N \N 6042668 2025-03-20 04:07:21.318 2025-03-20 04:07:21.318 1100 FEE 435944 15139 \N \N 6042669 2025-03-20 04:07:21.318 2025-03-20 04:07:21.318 9900 TIP 435944 5069 \N \N 6042703 2025-03-20 04:09:19.562 2025-03-20 04:09:19.562 9000 FEE 436021 674 \N \N 6042704 2025-03-20 04:09:19.562 2025-03-20 04:09:19.562 81000 TIP 436021 20776 \N \N 6042721 2025-03-20 04:11:40.827 2025-03-20 04:11:40.827 1000 FEE 436036 19888 \N \N 6042722 2025-03-20 04:11:40.827 2025-03-20 04:11:40.827 9000 TIP 436036 844 \N \N 6042733 2025-03-20 04:11:58.525 2025-03-20 04:11:58.525 100 FEE 436075 14271 \N \N 6042734 2025-03-20 04:11:58.525 2025-03-20 04:11:58.525 900 TIP 436075 14258 \N \N 6042745 2025-03-20 04:12:48.095 2025-03-20 04:12:48.095 100 FEE 435891 17116 \N \N 6042746 2025-03-20 04:12:48.095 2025-03-20 04:12:48.095 900 TIP 435891 9366 \N \N 6042753 2025-03-20 04:12:56.516 2025-03-20 04:12:56.516 10000 FEE 436151 9364 \N \N 6042754 2025-03-20 04:13:09.559 2025-03-20 04:13:09.559 0 FEE 436150 1985 \N \N 6042770 2025-03-20 04:13:55.345 2025-03-20 04:13:55.345 1000 FEE 436152 20755 \N \N 6042773 2025-03-20 04:14:06.354 2025-03-20 04:14:06.354 100000 FEE 436153 7916 \N \N 6042794 2025-03-20 04:15:11.474 2025-03-20 04:15:11.474 3000 FEE 435925 7097 \N \N 6042795 2025-03-20 04:15:11.474 2025-03-20 04:15:11.474 27000 TIP 435925 16176 \N \N 6042801 2025-03-20 04:15:20.467 2025-03-20 04:15:20.467 1000 FEE 436156 9921 \N \N 6042805 2025-03-20 04:15:26.984 2025-03-20 04:15:26.984 9000 FEE 435924 9169 \N \N 6042806 2025-03-20 04:15:26.984 2025-03-20 04:15:26.984 81000 TIP 435924 10849 \N \N 6042816 2025-03-20 04:16:06.435 2025-03-20 04:16:06.435 9000 FEE 435947 8045 \N \N 6042817 2025-03-20 04:16:06.435 2025-03-20 04:16:06.435 81000 TIP 435947 985 \N \N 6042834 2025-03-20 04:17:05.529 2025-03-20 04:17:05.529 1000 FEE 436137 21670 \N \N 6042835 2025-03-20 04:17:05.529 2025-03-20 04:17:05.529 9000 TIP 436137 15662 \N \N 6042852 2025-03-20 04:18:12.842 2025-03-20 04:18:12.842 11100 FEE 436126 20812 \N \N 6042853 2025-03-20 04:18:12.842 2025-03-20 04:18:12.842 99900 TIP 436126 20597 \N \N 6042864 2025-03-20 04:18:55.074 2025-03-20 04:18:55.074 0 FEE 436152 6653 \N \N 6042885 2025-03-20 04:20:38.975 2025-03-20 04:20:38.975 100 FEE 436147 4624 \N \N 6042886 2025-03-20 04:20:38.975 2025-03-20 04:20:38.975 900 TIP 436147 17011 \N \N 6042906 2025-03-20 04:21:48.904 2025-03-20 04:21:48.904 1000 FEE 436162 17535 \N \N 6042908 2025-03-20 04:22:19.187 2025-03-20 04:22:19.187 500 FEE 435458 9184 \N \N 6042372 2025-03-20 03:53:31.603 2025-03-20 03:53:31.603 20700 TIP 435928 9378 \N \N 6042373 2025-03-20 03:53:31.635 2025-03-20 03:53:31.635 2300 FEE 435928 1064 \N \N 6042374 2025-03-20 03:53:31.635 2025-03-20 03:53:31.635 20700 TIP 435928 21026 \N \N 6042394 2025-03-20 03:53:33.275 2025-03-20 03:53:33.275 0 FEE 436119 5173 \N \N 6042405 2025-03-20 03:53:34.854 2025-03-20 03:53:34.854 2300 FEE 435928 896 \N \N 6042406 2025-03-20 03:53:34.854 2025-03-20 03:53:34.854 20700 TIP 435928 19126 \N \N 6042443 2025-03-20 03:54:20.649 2025-03-20 03:54:20.649 2300 FEE 435847 928 \N \N 6042444 2025-03-20 03:54:20.649 2025-03-20 03:54:20.649 20700 TIP 435847 13406 \N \N 6042498 2025-03-20 03:54:42.576 2025-03-20 03:54:42.576 2100 FEE 435966 7913 \N \N 6042499 2025-03-20 03:54:42.576 2025-03-20 03:54:42.576 18900 TIP 435966 9529 \N \N 6042504 2025-03-20 03:54:48.383 2025-03-20 03:54:48.383 2300 FEE 435944 21714 \N \N 6042505 2025-03-20 03:54:48.383 2025-03-20 03:54:48.383 20700 TIP 435944 8985 \N \N 6042516 2025-03-20 03:54:49.548 2025-03-20 03:54:49.548 2300 FEE 435944 10549 \N \N 6042517 2025-03-20 03:54:49.548 2025-03-20 03:54:49.548 20700 TIP 435944 20979 \N \N 6042533 2025-03-20 03:55:05.172 2025-03-20 03:55:05.172 1000 FEE 436118 13467 \N \N 6042534 2025-03-20 03:55:05.172 2025-03-20 03:55:05.172 9000 TIP 436118 13042 \N \N 6042569 2025-03-20 03:58:15.553 2025-03-20 03:58:15.553 1000 FEE 435857 17183 \N \N 6042570 2025-03-20 03:58:15.553 2025-03-20 03:58:15.553 9000 TIP 435857 17218 \N \N 6042588 2025-03-20 04:02:17.818 2025-03-20 04:02:17.818 10000 FEE 436090 9026 \N \N 6042589 2025-03-20 04:02:17.818 2025-03-20 04:02:17.818 90000 TIP 436090 1124 \N \N 6042598 2025-03-20 04:02:38.277 2025-03-20 04:02:38.277 10000 FEE 436087 654 \N \N 6042599 2025-03-20 04:02:38.277 2025-03-20 04:02:38.277 90000 TIP 436087 15521 \N \N 6042615 2025-03-20 04:05:32.229 2025-03-20 04:05:32.229 1000 FEE 436138 9418 \N \N 6042616 2025-03-20 04:05:48.422 2025-03-20 04:05:48.422 3000 FEE 435920 19471 \N \N 6042617 2025-03-20 04:05:48.422 2025-03-20 04:05:48.422 27000 TIP 435920 3717 \N \N 6042631 2025-03-20 04:06:45.605 2025-03-20 04:06:45.605 1100 FEE 435579 15544 \N \N 6042632 2025-03-20 04:06:45.605 2025-03-20 04:06:45.605 9900 TIP 435579 7583 \N \N 6042633 2025-03-20 04:06:45.779 2025-03-20 04:06:45.779 1100 FEE 435579 20554 \N \N 6042634 2025-03-20 04:06:45.779 2025-03-20 04:06:45.779 9900 TIP 435579 20911 \N \N 6042635 2025-03-20 04:06:45.958 2025-03-20 04:06:45.958 1100 FEE 435579 5487 \N \N 6042636 2025-03-20 04:06:45.958 2025-03-20 04:06:45.958 9900 TIP 435579 13843 \N \N 6042664 2025-03-20 04:07:21.021 2025-03-20 04:07:21.021 1100 FEE 435944 2098 \N \N 6042665 2025-03-20 04:07:21.021 2025-03-20 04:07:21.021 9900 TIP 435944 910 \N \N 6042691 2025-03-20 04:09:03.975 2025-03-20 04:09:03.975 900 FEE 436001 18901 \N \N 6042692 2025-03-20 04:09:03.975 2025-03-20 04:09:03.975 8100 TIP 436001 16769 \N \N 6042699 2025-03-20 04:09:13.597 2025-03-20 04:09:13.597 100 FEE 436021 2710 \N \N 6042700 2025-03-20 04:09:13.597 2025-03-20 04:09:13.597 900 TIP 436021 937 \N \N 6042708 2025-03-20 04:09:26.088 2025-03-20 04:09:26.088 0 FEE 436143 1740 \N \N 6042739 2025-03-20 04:12:00.001 2025-03-20 04:12:00.001 900 FEE 436068 17714 \N \N 6042740 2025-03-20 04:12:00.001 2025-03-20 04:12:00.001 8100 TIP 436068 21482 \N \N 6042747 2025-03-20 04:12:48.67 2025-03-20 04:12:48.67 900 FEE 435891 1596 \N \N 6042748 2025-03-20 04:12:48.67 2025-03-20 04:12:48.67 8100 TIP 435891 16747 \N \N 6042766 2025-03-20 04:13:45.413 2025-03-20 04:13:45.413 9000 FEE 435905 20981 \N \N 6042767 2025-03-20 04:13:45.413 2025-03-20 04:13:45.413 81000 TIP 435905 19193 \N \N 6042771 2025-03-20 04:14:06.338 2025-03-20 04:14:06.338 300 FEE 436061 700 \N \N 6042772 2025-03-20 04:14:06.338 2025-03-20 04:14:06.338 2700 TIP 436061 1534 \N \N 6042774 2025-03-20 04:14:11.925 2025-03-20 04:14:11.925 1000 FEE 436154 10849 \N \N 6042812 2025-03-20 04:16:04.375 2025-03-20 04:16:04.375 100 FEE 435947 1136 \N \N 6042813 2025-03-20 04:16:04.375 2025-03-20 04:16:04.375 900 TIP 435947 1705 \N \N 6042823 2025-03-20 04:16:31.943 2025-03-20 04:16:31.943 900 FEE 435968 17331 \N \N 6042824 2025-03-20 04:16:31.943 2025-03-20 04:16:31.943 8100 TIP 435968 20849 \N \N 6042863 2025-03-20 04:18:50.886 2025-03-20 04:18:50.886 10000 FEE 436158 746 \N \N 6042873 2025-03-20 04:19:43.453 2025-03-20 04:19:43.453 9000 FEE 436093 14169 \N \N 6042874 2025-03-20 04:19:43.453 2025-03-20 04:19:43.453 81000 TIP 436093 15049 \N \N 6042879 2025-03-20 04:20:15.408 2025-03-20 04:20:15.408 100 FEE 436062 7376 \N \N 6042880 2025-03-20 04:20:15.408 2025-03-20 04:20:15.408 900 TIP 436062 14357 \N \N 6042891 2025-03-20 04:20:45.054 2025-03-20 04:20:45.054 900 FEE 436158 4487 \N \N 6042892 2025-03-20 04:20:45.054 2025-03-20 04:20:45.054 8100 TIP 436158 17095 \N \N 6042938 2025-03-20 04:24:22.505 2025-03-20 04:24:22.505 500 FEE 434601 1352 \N \N 6042939 2025-03-20 04:24:22.505 2025-03-20 04:24:22.505 4500 TIP 434601 667 \N \N 6042967 2025-03-20 04:27:22.422 2025-03-20 04:27:22.422 2700 FEE 435663 21480 \N \N 6042968 2025-03-20 04:27:22.422 2025-03-20 04:27:22.422 24300 TIP 435663 20222 \N \N 6042979 2025-03-20 04:27:23.542 2025-03-20 04:27:23.542 2700 FEE 435663 7425 \N \N 6042980 2025-03-20 04:27:23.542 2025-03-20 04:27:23.542 24300 TIP 435663 20826 \N \N 6042993 2025-03-20 04:28:27.537 2025-03-20 04:28:27.537 2700 FEE 435856 17944 \N \N 6042994 2025-03-20 04:28:27.537 2025-03-20 04:28:27.537 24300 TIP 435856 21019 \N \N 6043001 2025-03-20 04:28:42.23 2025-03-20 04:28:42.23 2100 FEE 247866 19199 \N \N 6043002 2025-03-20 04:28:42.23 2025-03-20 04:28:42.23 18900 TIP 247866 9295 \N \N 6043005 2025-03-20 04:28:42.812 2025-03-20 04:28:42.812 0 FEE 436168 20185 \N \N 6043012 2025-03-20 04:28:45.366 2025-03-20 04:28:45.366 2100 FEE 247866 7847 \N \N 6043013 2025-03-20 04:28:45.366 2025-03-20 04:28:45.366 18900 TIP 247866 1881 \N \N 6043014 2025-03-20 04:28:48.967 2025-03-20 04:28:48.967 1000 FEE 436158 854 \N \N 6043015 2025-03-20 04:28:48.967 2025-03-20 04:28:48.967 9000 TIP 436158 21482 \N \N 6043028 2025-03-20 04:30:53.366 2025-03-20 04:30:53.366 100000 FEE 436174 18608 \N \N 6043043 2025-03-20 04:32:02.657 2025-03-20 04:32:02.657 0 FEE 436171 5306 \N \N 6043059 2025-03-20 04:36:01.9 2025-03-20 04:36:01.9 21000 FEE 436182 954 \N \N 6043062 2025-03-20 04:37:28.299 2025-03-20 04:37:28.299 1000 FEE 436183 11516 \N \N 6043064 2025-03-20 04:38:23.78 2025-03-20 04:38:23.78 1000 FEE 436184 1585 \N \N 6043081 2025-03-20 04:42:12.361 2025-03-20 04:42:12.361 1000 FEE 436190 21145 \N \N 6043097 2025-03-20 04:47:15.254 2025-03-20 04:47:15.254 0 FEE 436191 17095 \N \N 6043102 2025-03-20 04:48:00.492 2025-03-20 04:48:00.492 1000 FEE 436196 7667 \N \N 6043124 2025-03-20 04:52:23.562 2025-03-20 04:52:23.562 1000 FEE 436202 13547 \N \N 6043125 2025-03-20 04:52:31.099 2025-03-20 04:52:31.099 1600 FEE 436197 19924 \N \N 6043126 2025-03-20 04:52:31.099 2025-03-20 04:52:31.099 14400 TIP 436197 18735 \N \N 6043132 2025-03-20 04:53:29.975 2025-03-20 04:53:29.975 1000 FEE 436043 15925 \N \N 6043133 2025-03-20 04:53:29.975 2025-03-20 04:53:29.975 9000 TIP 436043 1244 \N \N 6043149 2025-03-20 04:54:41.927 2025-03-20 04:54:41.927 100000 FEE 436207 946 \N \N 6043168 2025-03-20 04:55:27.384 2025-03-20 04:55:27.384 8300 FEE 436093 15556 \N \N 6043169 2025-03-20 04:55:27.384 2025-03-20 04:55:27.384 74700 TIP 436093 20623 \N \N 6043170 2025-03-20 04:55:27.504 2025-03-20 04:55:27.504 8300 FEE 436093 10280 \N \N 6043171 2025-03-20 04:55:27.504 2025-03-20 04:55:27.504 74700 TIP 436093 20597 \N \N 6043178 2025-03-20 04:55:30.45 2025-03-20 04:55:30.45 8300 FEE 436197 21501 \N \N 6043179 2025-03-20 04:55:30.45 2025-03-20 04:55:30.45 74700 TIP 436197 19469 \N \N 6043207 2025-03-20 05:01:01.776 2025-03-20 05:01:01.776 2300 FEE 436136 5085 \N \N 6043208 2025-03-20 05:01:01.776 2025-03-20 05:01:01.776 20700 TIP 436136 16679 \N \N 6043229 2025-03-20 05:01:03.994 2025-03-20 05:01:03.994 2300 FEE 436136 1480 \N \N 6043230 2025-03-20 05:01:03.994 2025-03-20 05:01:03.994 20700 TIP 436136 21248 \N \N 6043237 2025-03-20 05:01:04.705 2025-03-20 05:01:04.705 2300 FEE 436136 7760 \N \N 6043238 2025-03-20 05:01:04.705 2025-03-20 05:01:04.705 20700 TIP 436136 16214 \N \N 6043239 2025-03-20 05:01:04.888 2025-03-20 05:01:04.888 2300 FEE 436136 16387 \N \N 6043240 2025-03-20 05:01:04.888 2025-03-20 05:01:04.888 20700 TIP 436136 13100 \N \N 6043257 2025-03-20 05:01:07.29 2025-03-20 05:01:07.29 2300 FEE 436136 675 \N \N 6043258 2025-03-20 05:01:07.29 2025-03-20 05:01:07.29 20700 TIP 436136 18500 \N \N 6042432 2025-03-20 03:54:19.385 2025-03-20 03:54:19.385 20700 TIP 435847 714 \N \N 6042433 2025-03-20 03:54:19.56 2025-03-20 03:54:19.56 2300 FEE 435847 4043 \N \N 6042434 2025-03-20 03:54:19.56 2025-03-20 03:54:19.56 20700 TIP 435847 11760 \N \N 6042437 2025-03-20 03:54:20.137 2025-03-20 03:54:20.137 2300 FEE 435847 19996 \N \N 6042438 2025-03-20 03:54:20.137 2025-03-20 03:54:20.137 20700 TIP 435847 21600 \N \N 6042441 2025-03-20 03:54:20.538 2025-03-20 03:54:20.538 2300 FEE 435847 12562 \N \N 6042442 2025-03-20 03:54:20.538 2025-03-20 03:54:20.538 20700 TIP 435847 21518 \N \N 6042455 2025-03-20 03:54:21.786 2025-03-20 03:54:21.786 2300 FEE 435847 4415 \N \N 6042456 2025-03-20 03:54:21.786 2025-03-20 03:54:21.786 20700 TIP 435847 19796 \N \N 6042463 2025-03-20 03:54:22.399 2025-03-20 03:54:22.399 1000 FEE 436125 16410 \N \N 6042510 2025-03-20 03:54:48.955 2025-03-20 03:54:48.955 2300 FEE 435944 3213 \N \N 6042511 2025-03-20 03:54:48.955 2025-03-20 03:54:48.955 20700 TIP 435944 13854 \N \N 6042514 2025-03-20 03:54:49.356 2025-03-20 03:54:49.356 2300 FEE 435944 4074 \N \N 6042515 2025-03-20 03:54:49.356 2025-03-20 03:54:49.356 20700 TIP 435944 15719 \N \N 6042546 2025-03-20 03:55:55.746 2025-03-20 03:55:55.746 0 FEE 436126 2609 \N \N 6042558 2025-03-20 03:58:09.008 2025-03-20 03:58:09.008 1000 FEE 435847 9833 \N \N 6042559 2025-03-20 03:58:09.008 2025-03-20 03:58:09.008 9000 TIP 435847 15386 \N \N 6042566 2025-03-20 03:58:12.415 2025-03-20 03:58:12.415 1000 FEE 435892 19488 \N \N 6042567 2025-03-20 03:58:12.415 2025-03-20 03:58:12.415 9000 TIP 435892 1959 \N \N 6042577 2025-03-20 03:59:09.958 2025-03-20 03:59:09.958 100 FEE 435944 17682 \N \N 6042578 2025-03-20 03:59:09.958 2025-03-20 03:59:09.958 900 TIP 435944 21810 \N \N 6042596 2025-03-20 04:02:30.799 2025-03-20 04:02:30.799 10000 FEE 436087 9969 \N \N 6042597 2025-03-20 04:02:30.799 2025-03-20 04:02:30.799 90000 TIP 436087 7869 \N \N 6042622 2025-03-20 04:06:18.603 2025-03-20 04:06:18.603 1000 FEE 436140 1802 \N \N 6042623 2025-03-20 04:06:29.914 2025-03-20 04:06:29.914 300 FEE 436081 19459 \N \N 6042624 2025-03-20 04:06:29.914 2025-03-20 04:06:29.914 2700 TIP 436081 21501 \N \N 6042627 2025-03-20 04:06:44.75 2025-03-20 04:06:44.75 1100 FEE 435596 14015 \N \N 6042628 2025-03-20 04:06:44.75 2025-03-20 04:06:44.75 9900 TIP 435596 16259 \N \N 6042672 2025-03-20 04:07:28.117 2025-03-20 04:07:28.117 4000 FEE 436138 21620 \N \N 6042673 2025-03-20 04:07:28.117 2025-03-20 04:07:28.117 36000 TIP 436138 8245 \N \N 6042674 2025-03-20 04:07:30.316 2025-03-20 04:07:30.316 1000 FEE 436141 3392 \N \N 6042689 2025-03-20 04:09:03.722 2025-03-20 04:09:03.722 100 FEE 436001 12261 \N \N 6042690 2025-03-20 04:09:03.722 2025-03-20 04:09:03.722 900 TIP 436001 7891 \N \N 6042695 2025-03-20 04:09:08.006 2025-03-20 04:09:08.006 1000 POLL 436036 7891 \N \N 6042709 2025-03-20 04:09:30.349 2025-03-20 04:09:30.349 100 FEE 436094 20180 \N \N 6042710 2025-03-20 04:09:30.349 2025-03-20 04:09:30.349 900 TIP 436094 21805 \N \N 6042711 2025-03-20 04:09:31.763 2025-03-20 04:09:31.763 900 FEE 436094 16145 \N \N 6042712 2025-03-20 04:09:31.763 2025-03-20 04:09:31.763 8100 TIP 436094 21048 \N \N 6042719 2025-03-20 04:11:07.251 2025-03-20 04:11:07.251 100000 DONT_LIKE_THIS 436144 627 \N \N 6042729 2025-03-20 04:11:42.13 2025-03-20 04:11:42.13 1000 FEE 436036 876 \N \N 6042730 2025-03-20 04:11:42.13 2025-03-20 04:11:42.13 9000 TIP 436036 21159 \N \N 6042731 2025-03-20 04:11:44.578 2025-03-20 04:11:44.578 1000 FEE 436148 18772 \N \N 6042737 2025-03-20 04:11:59.815 2025-03-20 04:11:59.815 100 FEE 436068 14657 \N \N 6042738 2025-03-20 04:11:59.815 2025-03-20 04:11:59.815 900 TIP 436068 16149 \N \N 6042744 2025-03-20 04:12:29.837 2025-03-20 04:12:29.837 1000 FEE 436150 1638 \N \N 6042751 2025-03-20 04:12:55.556 2025-03-20 04:12:55.556 500 FEE 435944 20182 \N \N 6042752 2025-03-20 04:12:55.556 2025-03-20 04:12:55.556 4500 TIP 435944 3360 \N \N 6042776 2025-03-20 04:14:19.816 2025-03-20 04:14:19.816 500 FEE 435580 20710 \N \N 6042777 2025-03-20 04:14:19.816 2025-03-20 04:14:19.816 4500 TIP 435580 1438 \N \N 6042790 2025-03-20 04:15:04.388 2025-03-20 04:15:04.388 500 FEE 435580 11220 \N \N 6042791 2025-03-20 04:15:04.388 2025-03-20 04:15:04.388 4500 TIP 435580 8664 \N \N 6042810 2025-03-20 04:15:49.527 2025-03-20 04:15:49.527 900 FEE 435926 670 \N \N 6042811 2025-03-20 04:15:49.527 2025-03-20 04:15:49.527 8100 TIP 435926 5495 \N \N 6042814 2025-03-20 04:16:04.499 2025-03-20 04:16:04.499 900 FEE 435947 17944 \N \N 6042815 2025-03-20 04:16:04.499 2025-03-20 04:16:04.499 8100 TIP 435947 1983 \N \N 6042821 2025-03-20 04:16:31.605 2025-03-20 04:16:31.605 100 FEE 435968 20525 \N \N 6042822 2025-03-20 04:16:31.605 2025-03-20 04:16:31.605 900 TIP 435968 21338 \N \N 6042826 2025-03-20 04:16:55.851 2025-03-20 04:16:55.851 500 FEE 435993 9261 \N \N 6042827 2025-03-20 04:16:55.851 2025-03-20 04:16:55.851 4500 TIP 435993 776 \N \N 6042828 2025-03-20 04:16:56.283 2025-03-20 04:16:56.283 100 FEE 435987 861 \N \N 6042829 2025-03-20 04:16:56.283 2025-03-20 04:16:56.283 900 TIP 435987 18735 \N \N 6042830 2025-03-20 04:16:56.31 2025-03-20 04:16:56.31 900 FEE 435987 20781 \N \N 6042831 2025-03-20 04:16:56.31 2025-03-20 04:16:56.31 8100 TIP 435987 9347 \N \N 6042849 2025-03-20 04:18:08.644 2025-03-20 04:18:08.644 0 FEE 436152 15843 \N \N 6042867 2025-03-20 04:19:37.475 2025-03-20 04:19:37.475 2100 FEE 436049 10493 \N \N 6042868 2025-03-20 04:19:37.475 2025-03-20 04:19:37.475 18900 TIP 436049 889 \N \N 6042883 2025-03-20 04:20:28.528 2025-03-20 04:20:28.528 100 FEE 436143 2065 \N \N 6042884 2025-03-20 04:20:28.528 2025-03-20 04:20:28.528 900 TIP 436143 5852 \N \N 6042893 2025-03-20 04:20:46.004 2025-03-20 04:20:46.004 0 FEE 436161 2961 \N \N 6042910 2025-03-20 04:22:19.64 2025-03-20 04:22:19.64 500 FEE 435458 13759 \N \N 6042911 2025-03-20 04:22:19.64 2025-03-20 04:22:19.64 4500 TIP 435458 685 \N \N 6042912 2025-03-20 04:22:20.476 2025-03-20 04:22:20.476 100 FEE 436025 4287 \N \N 6042913 2025-03-20 04:22:20.476 2025-03-20 04:22:20.476 900 TIP 436025 18901 \N \N 6042929 2025-03-20 04:23:28.747 2025-03-20 04:23:28.747 100 FEE 428988 16556 \N \N 6042930 2025-03-20 04:23:28.747 2025-03-20 04:23:28.747 900 TIP 428988 2735 \N \N 6042945 2025-03-20 04:24:38.75 2025-03-20 04:24:38.75 2700 FEE 435834 21797 \N \N 6042946 2025-03-20 04:24:38.75 2025-03-20 04:24:38.75 24300 TIP 435834 6058 \N \N 6042949 2025-03-20 04:25:04.468 2025-03-20 04:25:04.468 1600 FEE 436158 16329 \N \N 6042950 2025-03-20 04:25:04.468 2025-03-20 04:25:04.468 14400 TIP 436158 1298 \N \N 6042573 2025-03-20 03:59:02.527 2025-03-20 03:59:02.527 1000 FEE 436128 20757 \N \N 6042604 2025-03-20 04:03:34.273 2025-03-20 04:03:34.273 1000 FEE 436135 673 \N \N 6042610 2025-03-20 04:04:57.137 2025-03-20 04:04:57.137 2800 FEE 434801 9339 \N \N 6042611 2025-03-20 04:04:57.137 2025-03-20 04:04:57.137 25200 TIP 434801 736 \N \N 6042612 2025-03-20 04:04:58.264 2025-03-20 04:04:58.264 2800 FEE 436128 13406 \N \N 6042613 2025-03-20 04:04:58.264 2025-03-20 04:04:58.264 25200 TIP 436128 20353 \N \N 6042618 2025-03-20 04:06:06.369 2025-03-20 04:06:06.369 1000 FEE 436139 10352 \N \N 6042643 2025-03-20 04:06:50.49 2025-03-20 04:06:50.49 1100 FEE 436093 959 \N \N 6042644 2025-03-20 04:06:50.49 2025-03-20 04:06:50.49 9900 TIP 436093 8173 \N \N 6042645 2025-03-20 04:06:50.652 2025-03-20 04:06:50.652 1100 FEE 436093 656 \N \N 6042646 2025-03-20 04:06:50.652 2025-03-20 04:06:50.652 9900 TIP 436093 11158 \N \N 6042647 2025-03-20 04:06:50.814 2025-03-20 04:06:50.814 1100 FEE 436093 16542 \N \N 6042648 2025-03-20 04:06:50.814 2025-03-20 04:06:50.814 9900 TIP 436093 1439 \N \N 6042649 2025-03-20 04:06:54.652 2025-03-20 04:06:54.652 2200 FEE 435046 14785 \N \N 6042650 2025-03-20 04:06:54.652 2025-03-20 04:06:54.652 19800 TIP 435046 2513 \N \N 6042651 2025-03-20 04:06:54.822 2025-03-20 04:06:54.822 1100 FEE 435046 10283 \N \N 6042652 2025-03-20 04:06:54.822 2025-03-20 04:06:54.822 9900 TIP 435046 675 \N \N 6042657 2025-03-20 04:06:56.547 2025-03-20 04:06:56.547 1100 FEE 435046 8423 \N \N 6042658 2025-03-20 04:06:56.547 2025-03-20 04:06:56.547 9900 TIP 435046 880 \N \N 6042677 2025-03-20 04:08:37.515 2025-03-20 04:08:37.515 100 FEE 435904 7766 \N \N 6042678 2025-03-20 04:08:37.515 2025-03-20 04:08:37.515 900 TIP 435904 2681 \N \N 6042683 2025-03-20 04:08:55.59 2025-03-20 04:08:55.59 2000 FEE 436082 20924 \N \N 6042684 2025-03-20 04:08:55.59 2025-03-20 04:08:55.59 18000 TIP 436082 9334 \N \N 6042685 2025-03-20 04:08:56.532 2025-03-20 04:08:56.532 2000 FEE 436082 1136 \N \N 6042686 2025-03-20 04:08:56.532 2025-03-20 04:08:56.532 18000 TIP 436082 4128 \N \N 6042707 2025-03-20 04:09:21.078 2025-03-20 04:09:21.078 1000 FEE 436143 3396 \N \N 6042715 2025-03-20 04:09:43.02 2025-03-20 04:09:43.02 1000 FEE 436145 6360 \N \N 6042716 2025-03-20 04:09:43.7 2025-03-20 04:09:43.7 1000 FEE 436146 12821 \N \N 6042718 2025-03-20 04:10:53.839 2025-03-20 04:10:53.839 1000 FEE 436147 19863 \N \N 6042725 2025-03-20 04:11:41.365 2025-03-20 04:11:41.365 1000 FEE 436036 16680 \N \N 6042726 2025-03-20 04:11:41.365 2025-03-20 04:11:41.365 9000 TIP 436036 21712 \N \N 6042727 2025-03-20 04:11:41.566 2025-03-20 04:11:41.566 1000 FEE 436036 3392 \N \N 6042728 2025-03-20 04:11:41.566 2025-03-20 04:11:41.566 9000 TIP 436036 5173 \N \N 6042742 2025-03-20 04:12:14.504 2025-03-20 04:12:14.504 10000 FEE 397842 759 \N \N 6042743 2025-03-20 04:12:14.504 2025-03-20 04:12:14.504 90000 TIP 397842 14688 \N \N 6042762 2025-03-20 04:13:44.365 2025-03-20 04:13:44.365 100 FEE 435905 5003 \N \N 6042763 2025-03-20 04:13:44.365 2025-03-20 04:13:44.365 900 TIP 435905 9363 \N \N 6042778 2025-03-20 04:14:20.008 2025-03-20 04:14:20.008 500 FEE 435580 19378 \N \N 6042779 2025-03-20 04:14:20.008 2025-03-20 04:14:20.008 4500 TIP 435580 686 \N \N 6042780 2025-03-20 04:14:20.466 2025-03-20 04:14:20.466 100 FEE 435912 10608 \N \N 6042781 2025-03-20 04:14:20.466 2025-03-20 04:14:20.466 900 TIP 435912 20981 \N \N 6042782 2025-03-20 04:14:21.695 2025-03-20 04:14:21.695 900 FEE 435912 10013 \N \N 6042783 2025-03-20 04:14:21.695 2025-03-20 04:14:21.695 8100 TIP 435912 9796 \N \N 6042785 2025-03-20 04:14:48.242 2025-03-20 04:14:48.242 1000 FEE 436155 14941 \N \N 6042792 2025-03-20 04:15:04.647 2025-03-20 04:15:04.647 500 FEE 435580 10112 \N \N 6042793 2025-03-20 04:15:04.647 2025-03-20 04:15:04.647 4500 TIP 435580 13042 \N \N 6042818 2025-03-20 04:16:12.114 2025-03-20 04:16:12.114 500 FEE 435242 17991 \N \N 6042819 2025-03-20 04:16:12.114 2025-03-20 04:16:12.114 4500 TIP 435242 21019 \N \N 6042838 2025-03-20 04:17:09.379 2025-03-20 04:17:09.379 900 FEE 435985 6687 \N \N 6042839 2025-03-20 04:17:09.379 2025-03-20 04:17:09.379 8100 TIP 435985 2327 \N \N 6042840 2025-03-20 04:17:09.411 2025-03-20 04:17:09.411 0 FEE 436143 14905 \N \N 6042842 2025-03-20 04:17:30.92 2025-03-20 04:17:30.92 500 FEE 435457 14990 \N \N 6042843 2025-03-20 04:17:30.92 2025-03-20 04:17:30.92 4500 TIP 435457 20353 \N \N 6042844 2025-03-20 04:17:31.318 2025-03-20 04:17:31.318 500 FEE 435457 8416 \N \N 6042845 2025-03-20 04:17:31.318 2025-03-20 04:17:31.318 4500 TIP 435457 15690 \N \N 6042846 2025-03-20 04:17:40.272 2025-03-20 04:17:40.272 500 FEE 435792 1120 \N \N 6042847 2025-03-20 04:17:40.272 2025-03-20 04:17:40.272 4500 TIP 435792 1145 \N \N 6042848 2025-03-20 04:17:57.967 2025-03-20 04:17:57.967 10000 DONT_LIKE_THIS 436017 20555 \N \N 6042859 2025-03-20 04:18:18.019 2025-03-20 04:18:18.019 9000 FEE 436015 647 \N \N 6042860 2025-03-20 04:18:18.019 2025-03-20 04:18:18.019 81000 TIP 436015 16214 \N \N 6042869 2025-03-20 04:19:42.692 2025-03-20 04:19:42.692 100 FEE 436093 20972 \N \N 6042870 2025-03-20 04:19:42.692 2025-03-20 04:19:42.692 900 TIP 436093 10433 \N \N 6042881 2025-03-20 04:20:17.727 2025-03-20 04:20:17.727 1000 FEE 436160 21051 \N \N 6042900 2025-03-20 04:21:14.057 2025-03-20 04:21:14.057 500 FEE 435500 8726 \N \N 6042901 2025-03-20 04:21:14.057 2025-03-20 04:21:14.057 4500 TIP 435500 21238 \N \N 6042920 2025-03-20 04:23:04.713 2025-03-20 04:23:04.713 500 FEE 435895 15521 \N \N 6042921 2025-03-20 04:23:04.713 2025-03-20 04:23:04.713 4500 TIP 435895 10981 \N \N 6042947 2025-03-20 04:24:38.936 2025-03-20 04:24:38.936 2700 FEE 435834 622 \N \N 6042948 2025-03-20 04:24:38.936 2025-03-20 04:24:38.936 24300 TIP 435834 20706 \N \N 6042986 2025-03-20 04:28:09.014 2025-03-20 04:28:09.014 100 FEE 436162 9333 \N \N 6042987 2025-03-20 04:28:09.014 2025-03-20 04:28:09.014 900 TIP 436162 9036 \N \N 6043010 2025-03-20 04:28:44.404 2025-03-20 04:28:44.404 2100 FEE 247866 9529 \N \N 6043011 2025-03-20 04:28:44.404 2025-03-20 04:28:44.404 18900 TIP 247866 20906 \N \N 6043024 2025-03-20 04:30:30.826 2025-03-20 04:30:30.826 0 FEE 436171 1389 \N \N 6043025 2025-03-20 04:30:38.328 2025-03-20 04:30:38.328 1000 FEE 436173 16309 \N \N 6043038 2025-03-20 04:31:41.513 2025-03-20 04:31:41.513 100 FEE 436123 3745 \N \N 6043039 2025-03-20 04:31:41.513 2025-03-20 04:31:41.513 900 TIP 436123 15526 \N \N 6043066 2025-03-20 04:39:09.319 2025-03-20 04:39:09.319 1000 FEE 436186 3642 \N \N 6043090 2025-03-20 04:45:32.879 2025-03-20 04:45:32.879 100000 FEE 436191 21248 \N \N 6043099 2025-03-20 04:47:26.77 2025-03-20 04:47:26.77 21000 FEE 436195 8544 \N \N 6043114 2025-03-20 04:50:08.838 2025-03-20 04:50:08.838 100 FEE 435488 7966 \N \N 6043115 2025-03-20 04:50:08.838 2025-03-20 04:50:08.838 900 TIP 435488 13100 \N \N 6043148 2025-03-20 04:54:32.078 2025-03-20 04:54:32.078 1000 FEE 436206 19842 \N \N 6043151 2025-03-20 04:55:11.195 2025-03-20 04:55:11.195 1000 FEE 436133 2508 \N \N 6043152 2025-03-20 04:55:11.195 2025-03-20 04:55:11.195 9000 TIP 436133 20525 \N \N 6043160 2025-03-20 04:55:25.565 2025-03-20 04:55:25.565 8300 FEE 435944 14489 \N \N 6043161 2025-03-20 04:55:25.565 2025-03-20 04:55:25.565 74700 TIP 435944 12911 \N \N 6043182 2025-03-20 04:55:37.819 2025-03-20 04:55:37.819 2100 FEE 435550 929 \N \N 6043183 2025-03-20 04:55:37.819 2025-03-20 04:55:37.819 18900 TIP 435550 11621 \N \N 6043198 2025-03-20 04:59:10.889 2025-03-20 04:59:10.889 1000 FEE 436215 15408 \N \N 6043265 2025-03-20 05:01:08.113 2025-03-20 05:01:08.113 2300 FEE 436136 1618 \N \N 6043266 2025-03-20 05:01:08.113 2025-03-20 05:01:08.113 20700 TIP 436136 9916 \N \N 6043273 2025-03-20 05:01:08.82 2025-03-20 05:01:08.82 2300 FEE 436136 12736 \N \N 6043274 2025-03-20 05:01:08.82 2025-03-20 05:01:08.82 20700 TIP 436136 20509 \N \N 6042619 2025-03-20 04:06:09.805 2025-03-20 04:06:09.805 10000 FEE 436018 21263 \N \N 6042620 2025-03-20 04:06:09.805 2025-03-20 04:06:09.805 90000 TIP 436018 21829 \N \N 6042625 2025-03-20 04:06:44.617 2025-03-20 04:06:44.617 1100 FEE 435596 15386 \N \N 6042626 2025-03-20 04:06:44.617 2025-03-20 04:06:44.617 9900 TIP 435596 17041 \N \N 6042639 2025-03-20 04:06:49.08 2025-03-20 04:06:49.08 1100 FEE 435847 11527 \N \N 6042640 2025-03-20 04:06:49.08 2025-03-20 04:06:49.08 9900 TIP 435847 19668 \N \N 6042653 2025-03-20 04:06:54.961 2025-03-20 04:06:54.961 1100 FEE 435046 1236 \N \N 6042654 2025-03-20 04:06:54.961 2025-03-20 04:06:54.961 9900 TIP 435046 16145 \N \N 6042655 2025-03-20 04:06:56.352 2025-03-20 04:06:56.352 1100 FEE 435046 730 \N \N 6042656 2025-03-20 04:06:56.352 2025-03-20 04:06:56.352 9900 TIP 435046 3411 \N \N 6042675 2025-03-20 04:07:49.867 2025-03-20 04:07:49.867 1000 FEE 436142 20655 \N \N 6042696 2025-03-20 04:09:09.027 2025-03-20 04:09:09.027 2000 FEE 436051 13798 \N \N 6042697 2025-03-20 04:09:09.027 2025-03-20 04:09:09.027 18000 TIP 436051 21320 \N \N 6112622 2025-03-26 04:59:27.024 2025-03-26 04:59:27.024 500 FEE 443178 5752 \N \N 6112623 2025-03-26 04:59:27.024 2025-03-26 04:59:27.024 4500 TIP 443178 5825 \N \N 6112641 2025-03-26 05:00:47.296 2025-03-26 05:00:47.296 1000 FEE 443499 15273 \N \N 6112652 2025-03-26 05:02:18.053 2025-03-26 05:02:18.053 1000 FEE 443504 20911 \N \N 6112659 2025-03-26 05:02:44.813 2025-03-26 05:02:44.813 1000 FEE 443505 18923 \N \N 6112676 2025-03-26 05:04:30.391 2025-03-26 05:04:30.391 27900 FEE 443396 21398 \N \N 6112677 2025-03-26 05:04:30.391 2025-03-26 05:04:30.391 251100 TIP 443396 11288 \N \N 6112688 2025-03-26 05:06:29.222 2025-03-26 05:06:29.222 700 FEE 443506 13599 \N \N 6112689 2025-03-26 05:06:29.222 2025-03-26 05:06:29.222 6300 TIP 443506 6191 \N \N 6112701 2025-03-26 05:08:11.591 2025-03-26 05:08:11.591 3400 FEE 443197 21248 \N \N 6112702 2025-03-26 05:08:11.591 2025-03-26 05:08:11.591 30600 TIP 443197 15858 \N \N 6112711 2025-03-26 05:09:41.605 2025-03-26 05:09:41.605 1000 FEE 443517 16842 \N \N 6112728 2025-03-26 05:12:45.407 2025-03-26 05:12:45.407 1000 FEE 443520 5703 \N \N 6112739 2025-03-26 05:14:42.106 2025-03-26 05:14:42.106 0 FEE 443521 20310 \N \N 6112743 2025-03-26 05:16:09.069 2025-03-26 05:16:09.069 1000 FEE 443467 20614 \N \N 6112744 2025-03-26 05:16:09.069 2025-03-26 05:16:09.069 9000 TIP 443467 16424 \N \N 6112747 2025-03-26 05:16:17.737 2025-03-26 05:16:17.737 1000 FEE 443515 18274 \N \N 6112748 2025-03-26 05:16:17.737 2025-03-26 05:16:17.737 9000 TIP 443515 7682 \N \N 6112753 2025-03-26 05:16:37.807 2025-03-26 05:16:37.807 1000 FEE 443526 17991 \N \N 6112754 2025-03-26 05:16:48.163 2025-03-26 05:16:48.163 3100 FEE 443525 8713 \N \N 6112755 2025-03-26 05:16:48.163 2025-03-26 05:16:48.163 27900 TIP 443525 5775 \N \N 6112765 2025-03-26 05:19:14.217 2025-03-26 05:19:14.217 1000 FEE 443529 6537 \N \N 6112851 2025-03-26 05:30:49.448 2025-03-26 05:30:49.448 27900 FEE 443272 4958 \N \N 6112852 2025-03-26 05:30:49.448 2025-03-26 05:30:49.448 251100 TIP 443272 11417 \N \N 6112858 2025-03-26 05:31:36.984 2025-03-26 05:31:36.984 0 FEE 443551 763 \N \N 6112862 2025-03-26 05:31:47.002 2025-03-26 05:31:47.002 30000 FEE 443287 17082 \N \N 6112863 2025-03-26 05:31:47.002 2025-03-26 05:31:47.002 270000 TIP 443287 5661 \N \N 6112865 2025-03-26 05:31:52.107 2025-03-26 05:31:52.107 100000 FEE 443554 21208 \N \N 6112879 2025-03-26 05:33:59.091 2025-03-26 05:33:59.091 3100 FEE 443557 21062 \N \N 6042723 2025-03-20 04:11:41.089 2025-03-20 04:11:41.089 1000 FEE 436036 9669 \N \N 6042724 2025-03-20 04:11:41.089 2025-03-20 04:11:41.089 9000 TIP 436036 4819 \N \N 6042760 2025-03-20 04:13:42.193 2025-03-20 04:13:42.193 500 FEE 435944 989 \N \N 6042761 2025-03-20 04:13:42.193 2025-03-20 04:13:42.193 4500 TIP 435944 20680 \N \N 6042764 2025-03-20 04:13:44.688 2025-03-20 04:13:44.688 900 FEE 435905 20642 \N \N 6042765 2025-03-20 04:13:44.688 2025-03-20 04:13:44.688 8100 TIP 435905 4313 \N \N 6042768 2025-03-20 04:13:53.228 2025-03-20 04:13:53.228 90000 FEE 435905 19812 \N \N 6042769 2025-03-20 04:13:53.228 2025-03-20 04:13:53.228 810000 TIP 435905 1488 \N \N 6042784 2025-03-20 04:14:23.445 2025-03-20 04:14:23.445 0 FEE 436148 15147 \N \N 6042802 2025-03-20 04:15:22.363 2025-03-20 04:15:22.363 1000 FEE 436157 3518 \N \N 6042803 2025-03-20 04:15:26.19 2025-03-20 04:15:26.19 1000 FEE 436093 20436 \N \N 6042804 2025-03-20 04:15:26.19 2025-03-20 04:15:26.19 9000 TIP 436093 16357 \N \N 6042807 2025-03-20 04:15:36.753 2025-03-20 04:15:36.753 0 FEE 436152 19527 \N \N 6042808 2025-03-20 04:15:49.322 2025-03-20 04:15:49.322 100 FEE 435926 12738 \N \N 6042809 2025-03-20 04:15:49.322 2025-03-20 04:15:49.322 900 TIP 435926 2508 \N \N 6042832 2025-03-20 04:17:00.431 2025-03-20 04:17:00.431 500 FEE 435639 20956 \N \N 6042833 2025-03-20 04:17:00.431 2025-03-20 04:17:00.431 4500 TIP 435639 17212 \N \N 6042836 2025-03-20 04:17:08.379 2025-03-20 04:17:08.379 100 FEE 435985 21712 \N \N 6042837 2025-03-20 04:17:08.379 2025-03-20 04:17:08.379 900 TIP 435985 5779 \N \N 6042865 2025-03-20 04:19:04.71 2025-03-20 04:19:04.71 100000 DONT_LIKE_THIS 436036 17275 \N \N 6042882 2025-03-20 04:20:22.754 2025-03-20 04:20:22.754 1000 FEE 436161 11275 \N \N 6042894 2025-03-20 04:20:47.672 2025-03-20 04:20:47.672 9000 FEE 436158 8326 \N \N 6042895 2025-03-20 04:20:47.672 2025-03-20 04:20:47.672 81000 TIP 436158 12245 \N \N 6042898 2025-03-20 04:20:57.342 2025-03-20 04:20:57.342 1000 POLL 435805 9367 \N \N 6042914 2025-03-20 04:22:26.417 2025-03-20 04:22:26.417 100 FEE 436159 1319 \N \N 6042915 2025-03-20 04:22:26.417 2025-03-20 04:22:26.417 900 TIP 436159 21803 \N \N 6042940 2025-03-20 04:24:33.048 2025-03-20 04:24:33.048 100000 FEE 436163 11395 \N \N 6042943 2025-03-20 04:24:38.576 2025-03-20 04:24:38.576 2700 FEE 435834 16250 \N \N 6042944 2025-03-20 04:24:38.576 2025-03-20 04:24:38.576 24300 TIP 435834 18865 \N \N 6042952 2025-03-20 04:25:18.558 2025-03-20 04:25:18.558 10000 FEE 435657 6202 \N \N 6042953 2025-03-20 04:25:18.558 2025-03-20 04:25:18.558 90000 TIP 435657 1489 \N \N 6042963 2025-03-20 04:27:22.048 2025-03-20 04:27:22.048 2700 FEE 435663 20133 \N \N 6042964 2025-03-20 04:27:22.048 2025-03-20 04:27:22.048 24300 TIP 435663 21532 \N \N 6042983 2025-03-20 04:27:23.896 2025-03-20 04:27:23.896 2700 FEE 435663 960 \N \N 6042984 2025-03-20 04:27:23.896 2025-03-20 04:27:23.896 24300 TIP 435663 5195 \N \N 6042989 2025-03-20 04:28:13.843 2025-03-20 04:28:13.843 1000 FEE 435944 13854 \N \N 6042990 2025-03-20 04:28:13.843 2025-03-20 04:28:13.843 9000 TIP 435944 900 \N \N 6043047 2025-03-20 04:32:33.081 2025-03-20 04:32:33.081 2800 FEE 436153 11328 \N \N 6043048 2025-03-20 04:32:33.081 2025-03-20 04:32:33.081 25200 TIP 436153 2367 \N \N 6043051 2025-03-20 04:33:20.688 2025-03-20 04:33:20.688 2800 FEE 238583 9348 \N \N 6043052 2025-03-20 04:33:20.688 2025-03-20 04:33:20.688 25200 TIP 238583 16695 \N \N 6043053 2025-03-20 04:34:02.771 2025-03-20 04:34:02.771 1000 FEE 436174 6136 \N \N 6043054 2025-03-20 04:34:02.771 2025-03-20 04:34:02.771 9000 TIP 436174 20588 \N \N 6043056 2025-03-20 04:34:40.785 2025-03-20 04:34:40.785 1000 FEE 436180 21014 \N \N 6043070 2025-03-20 04:39:42.059 2025-03-20 04:39:42.059 4000 FEE 436186 2829 \N \N 6043071 2025-03-20 04:39:42.059 2025-03-20 04:39:42.059 36000 TIP 436186 19829 \N \N 6043073 2025-03-20 04:40:17.439 2025-03-20 04:40:17.439 100 FEE 435912 21357 \N \N 6043074 2025-03-20 04:40:17.439 2025-03-20 04:40:17.439 900 TIP 435912 14449 \N \N 6043078 2025-03-20 04:41:24.381 2025-03-20 04:41:24.381 100000 FEE 436189 21501 \N \N 6043085 2025-03-20 04:44:51.435 2025-03-20 04:44:51.435 10000 FEE 436093 630 \N \N 6043086 2025-03-20 04:44:51.435 2025-03-20 04:44:51.435 90000 TIP 436093 19806 \N \N 6043117 2025-03-20 04:50:36.769 2025-03-20 04:50:36.769 0 FEE 436196 17331 \N \N 6043143 2025-03-20 04:54:23.467 2025-03-20 04:54:23.467 1000 FEE 436205 19126 \N \N 6043146 2025-03-20 04:54:31.217 2025-03-20 04:54:31.217 4000 FEE 436194 21599 \N \N 6043147 2025-03-20 04:54:31.217 2025-03-20 04:54:31.217 36000 TIP 436194 925 \N \N 6043172 2025-03-20 04:55:29.635 2025-03-20 04:55:29.635 8300 FEE 436197 4395 \N \N 6043173 2025-03-20 04:55:29.635 2025-03-20 04:55:29.635 74700 TIP 436197 21814 \N \N 6043188 2025-03-20 04:57:05.247 2025-03-20 04:57:05.247 1000 FEE 436038 4115 \N \N 6043189 2025-03-20 04:57:05.247 2025-03-20 04:57:05.247 9000 TIP 436038 730 \N \N 6042909 2025-03-20 04:22:19.187 2025-03-20 04:22:19.187 4500 TIP 435458 929 \N \N 6042918 2025-03-20 04:23:03.813 2025-03-20 04:23:03.813 4000 FEE 436158 12291 \N \N 6042919 2025-03-20 04:23:03.813 2025-03-20 04:23:03.813 36000 TIP 436158 21271 \N \N 6042926 2025-03-20 04:23:12.406 2025-03-20 04:23:12.406 500 FEE 434535 10661 \N \N 6042927 2025-03-20 04:23:12.406 2025-03-20 04:23:12.406 4500 TIP 434535 20187 \N \N 6042936 2025-03-20 04:24:17.078 2025-03-20 04:24:17.078 500 FEE 434625 17046 \N \N 6042937 2025-03-20 04:24:17.078 2025-03-20 04:24:17.078 4500 TIP 434625 12921 \N \N 6042954 2025-03-20 04:25:57.414 2025-03-20 04:25:57.414 1000 FEE 436164 15273 \N \N 6042956 2025-03-20 04:26:14.746 2025-03-20 04:26:14.746 1000 FEE 436165 14791 \N \N 6042973 2025-03-20 04:27:22.992 2025-03-20 04:27:22.992 2700 FEE 435663 4250 \N \N 6042974 2025-03-20 04:27:22.992 2025-03-20 04:27:22.992 24300 TIP 435663 9261 \N \N 6043032 2025-03-20 04:31:40.988 2025-03-20 04:31:40.988 100 FEE 436123 10060 \N \N 6043033 2025-03-20 04:31:40.988 2025-03-20 04:31:40.988 900 TIP 436123 622 \N \N 6043075 2025-03-20 04:40:45.249 2025-03-20 04:40:45.249 1000 FEE 436187 11038 \N \N 6043088 2025-03-20 04:45:26.93 2025-03-20 04:45:26.93 5000 FEE 435328 19943 \N \N 6043089 2025-03-20 04:45:26.93 2025-03-20 04:45:26.93 45000 TIP 435328 6526 \N \N 6043136 2025-03-20 04:53:46.331 2025-03-20 04:53:46.331 3000 FEE 436047 19217 \N \N 6043137 2025-03-20 04:53:46.331 2025-03-20 04:53:46.331 27000 TIP 436047 4064 \N \N 6043138 2025-03-20 04:53:46.963 2025-03-20 04:53:46.963 27000 FEE 436047 10112 \N \N 6043139 2025-03-20 04:53:46.963 2025-03-20 04:53:46.963 243000 TIP 436047 21184 \N \N 6043187 2025-03-20 04:56:51.675 2025-03-20 04:56:51.675 0 FEE 436210 20973 \N \N 6043221 2025-03-20 05:01:03.061 2025-03-20 05:01:03.061 2300 FEE 436136 18232 \N \N 6043222 2025-03-20 05:01:03.061 2025-03-20 05:01:03.061 20700 TIP 436136 16747 \N \N 6043227 2025-03-20 05:01:03.501 2025-03-20 05:01:03.501 2300 FEE 436136 4768 \N \N 6043228 2025-03-20 05:01:03.501 2025-03-20 05:01:03.501 20700 TIP 436136 798 \N \N 6043235 2025-03-20 05:01:04.625 2025-03-20 05:01:04.625 2300 FEE 436136 775 \N \N 6043236 2025-03-20 05:01:04.625 2025-03-20 05:01:04.625 20700 TIP 436136 6268 \N \N 6043243 2025-03-20 05:01:05.911 2025-03-20 05:01:05.911 2300 FEE 436136 20717 \N \N 6043244 2025-03-20 05:01:05.911 2025-03-20 05:01:05.911 20700 TIP 436136 11091 \N \N 6043249 2025-03-20 05:01:06.451 2025-03-20 05:01:06.451 2300 FEE 436136 5728 \N \N 6043250 2025-03-20 05:01:06.451 2025-03-20 05:01:06.451 20700 TIP 436136 18743 \N \N 6043255 2025-03-20 05:01:07.127 2025-03-20 05:01:07.127 2300 FEE 436136 14909 \N \N 6043256 2025-03-20 05:01:07.127 2025-03-20 05:01:07.127 20700 TIP 436136 20509 \N \N 6043259 2025-03-20 05:01:07.496 2025-03-20 05:01:07.496 2300 FEE 436136 15521 \N \N 6043260 2025-03-20 05:01:07.496 2025-03-20 05:01:07.496 20700 TIP 436136 11527 \N \N 6043269 2025-03-20 05:01:08.471 2025-03-20 05:01:08.471 2300 FEE 436136 3417 \N \N 6043270 2025-03-20 05:01:08.471 2025-03-20 05:01:08.471 20700 TIP 436136 12656 \N \N 6043299 2025-03-20 05:01:11.619 2025-03-20 05:01:11.619 2300 FEE 436136 16357 \N \N 6043300 2025-03-20 05:01:11.619 2025-03-20 05:01:11.619 20700 TIP 436136 4314 \N \N 6043329 2025-03-20 05:02:18.812 2025-03-20 05:02:18.812 1000 FEE 436195 685 \N \N 6043330 2025-03-20 05:02:18.812 2025-03-20 05:02:18.812 9000 TIP 436195 1472 \N \N 6043372 2025-03-20 05:08:55.924 2025-03-20 05:08:55.924 10000 FEE 436226 5557 \N \N 6043393 2025-03-20 05:16:21.76 2025-03-20 05:16:21.76 11000 FEE 436228 897 \N \N 6043415 2025-03-20 05:22:31.421 2025-03-20 05:22:31.421 1000 FEE 436234 3360 \N \N 6043418 2025-03-20 05:22:53.318 2025-03-20 05:22:53.318 2100 FEE 436004 20182 \N \N 6043419 2025-03-20 05:22:53.318 2025-03-20 05:22:53.318 18900 TIP 436004 21037 \N \N 6043439 2025-03-20 05:27:26.149 2025-03-20 05:27:26.149 3200 FEE 436230 21521 \N \N 6043440 2025-03-20 05:27:26.149 2025-03-20 05:27:26.149 28800 TIP 436230 3990 \N \N 6043465 2025-03-20 05:31:16.12 2025-03-20 05:31:16.12 8300 FEE 436233 20911 \N \N 6043466 2025-03-20 05:31:16.12 2025-03-20 05:31:16.12 74700 TIP 436233 5173 \N \N 6043473 2025-03-20 05:31:17.214 2025-03-20 05:31:17.214 1000 FEE 436241 20577 \N \N 6043474 2025-03-20 05:31:17.214 2025-03-20 05:31:17.214 9000 TIP 436241 1825 \N \N 6043501 2025-03-20 05:32:15.159 2025-03-20 05:32:15.159 8300 FEE 435847 10849 \N \N 6043502 2025-03-20 05:32:15.159 2025-03-20 05:32:15.159 74700 TIP 435847 1307 \N \N 6043505 2025-03-20 05:32:15.596 2025-03-20 05:32:15.596 16600 FEE 435847 2437 \N \N 6043506 2025-03-20 05:32:15.596 2025-03-20 05:32:15.596 149400 TIP 435847 16097 \N \N 6043533 2025-03-20 05:32:18.762 2025-03-20 05:32:18.762 8300 FEE 435847 5829 \N \N 6043534 2025-03-20 05:32:18.762 2025-03-20 05:32:18.762 74700 TIP 435847 20981 \N \N 6043581 2025-03-20 05:34:08.873 2025-03-20 05:34:08.873 1000 FEE 436138 686 \N \N 6043582 2025-03-20 05:34:08.873 2025-03-20 05:34:08.873 9000 TIP 436138 19217 \N \N 6043586 2025-03-20 05:34:13.95 2025-03-20 05:34:13.95 1000 FEE 436128 11498 \N \N 6043587 2025-03-20 05:34:13.95 2025-03-20 05:34:13.95 9000 TIP 436128 18313 \N \N 6043602 2025-03-20 05:35:51.895 2025-03-20 05:35:51.895 4000 FEE 435905 10519 \N \N 6043603 2025-03-20 05:35:51.895 2025-03-20 05:35:51.895 36000 TIP 435905 8796 \N \N 6043638 2025-03-20 05:38:40.484 2025-03-20 05:38:40.484 1000 FEE 199286 17984 \N \N 6043639 2025-03-20 05:38:40.484 2025-03-20 05:38:40.484 9000 TIP 199286 14503 \N \N 6043647 2025-03-20 05:39:35.732 2025-03-20 05:39:35.732 4000 FEE 436106 3411 \N \N 6043648 2025-03-20 05:39:35.732 2025-03-20 05:39:35.732 36000 TIP 436106 10409 \N \N 6043682 2025-03-20 05:42:22.211 2025-03-20 05:42:22.211 1000 FEE 436261 19821 \N \N 6043683 2025-03-20 05:42:33.921 2025-03-20 05:42:33.921 500 FEE 436256 6463 \N \N 6043684 2025-03-20 05:42:33.921 2025-03-20 05:42:33.921 4500 TIP 436256 14503 \N \N 6043697 2025-03-20 05:44:50.981 2025-03-20 05:44:50.981 100 FEE 436241 17103 \N \N 6043698 2025-03-20 05:44:50.981 2025-03-20 05:44:50.981 900 TIP 436241 13622 \N \N 6043733 2025-03-20 05:48:27.462 2025-03-20 05:48:27.462 2100 FEE 435861 20222 \N \N 6043734 2025-03-20 05:48:27.462 2025-03-20 05:48:27.462 18900 TIP 435861 2832 \N \N 6043741 2025-03-20 05:49:13.368 2025-03-20 05:49:13.368 2100 FEE 436136 11789 \N \N 6043742 2025-03-20 05:49:13.368 2025-03-20 05:49:13.368 18900 TIP 436136 21521 \N \N 6043749 2025-03-20 05:49:25.973 2025-03-20 05:49:25.973 2000 FEE 436208 17291 \N \N 6043750 2025-03-20 05:49:25.973 2025-03-20 05:49:25.973 18000 TIP 436208 13767 \N \N 6043751 2025-03-20 05:49:26.247 2025-03-20 05:49:26.247 1000 FEE 436208 9333 \N \N 6043752 2025-03-20 05:49:26.247 2025-03-20 05:49:26.247 9000 TIP 436208 2402 \N \N 6043755 2025-03-20 05:49:26.602 2025-03-20 05:49:26.602 2000 FEE 436208 1552 \N \N 6043756 2025-03-20 05:49:26.602 2025-03-20 05:49:26.602 18000 TIP 436208 20479 \N \N 6043773 2025-03-20 05:49:59.16 2025-03-20 05:49:59.16 4000 FEE 436263 16998 \N \N 6043774 2025-03-20 05:49:59.16 2025-03-20 05:49:59.16 36000 TIP 436263 15526 \N \N 6043792 2025-03-20 05:51:28.405 2025-03-20 05:51:28.405 2100 FEE 436213 16336 \N \N 6043793 2025-03-20 05:51:28.405 2025-03-20 05:51:28.405 18900 TIP 436213 1298 \N \N 6043823 2025-03-20 05:53:39.225 2025-03-20 05:53:39.225 2100 FEE 436030 12261 \N \N 6043824 2025-03-20 05:53:39.225 2025-03-20 05:53:39.225 18900 TIP 436030 6191 \N \N 6043838 2025-03-20 05:54:59.496 2025-03-20 05:54:59.496 1600 FEE 436233 20781 \N \N 6043839 2025-03-20 05:54:59.496 2025-03-20 05:54:59.496 14400 TIP 436233 9537 \N \N 6043845 2025-03-20 05:56:26.247 2025-03-20 05:56:26.247 1000 FEE 436274 21688 \N \N 6043859 2025-03-20 05:59:10.488 2025-03-20 05:59:10.488 100 FEE 436241 20310 \N \N 6043860 2025-03-20 05:59:10.488 2025-03-20 05:59:10.488 900 TIP 436241 16680 \N \N 6043863 2025-03-20 05:59:19.738 2025-03-20 05:59:19.738 100 FEE 435847 21281 \N \N 6043864 2025-03-20 05:59:19.738 2025-03-20 05:59:19.738 900 TIP 435847 19417 \N \N 6043891 2025-03-20 06:06:10.781 2025-03-20 06:06:10.781 10000 FEE 435847 21547 \N \N 6043892 2025-03-20 06:06:10.781 2025-03-20 06:06:10.781 90000 TIP 435847 3304 \N \N 6043893 2025-03-20 06:06:10.933 2025-03-20 06:06:10.933 10000 FEE 435847 19005 \N \N 6043894 2025-03-20 06:06:10.933 2025-03-20 06:06:10.933 90000 TIP 435847 19735 \N \N 6043908 2025-03-20 06:06:17.24 2025-03-20 06:06:17.24 1100 FEE 436241 8541 \N \N 6043909 2025-03-20 06:06:17.24 2025-03-20 06:06:17.24 9900 TIP 436241 9820 \N \N 6042934 2025-03-20 04:24:16.56 2025-03-20 04:24:16.56 500 FEE 434625 1120 \N \N 6042935 2025-03-20 04:24:16.56 2025-03-20 04:24:16.56 4500 TIP 434625 7869 \N \N 6042957 2025-03-20 04:26:19.208 2025-03-20 04:26:19.208 800 FEE 436147 11477 \N \N 6042958 2025-03-20 04:26:19.208 2025-03-20 04:26:19.208 7200 TIP 436147 7668 \N \N 6042971 2025-03-20 04:27:22.803 2025-03-20 04:27:22.803 2700 FEE 435663 17708 \N \N 6042972 2025-03-20 04:27:22.803 2025-03-20 04:27:22.803 24300 TIP 435663 6717 \N \N 6042975 2025-03-20 04:27:23.167 2025-03-20 04:27:23.167 2700 FEE 435663 14552 \N \N 6042976 2025-03-20 04:27:23.167 2025-03-20 04:27:23.167 24300 TIP 435663 19016 \N \N 6042985 2025-03-20 04:28:05.542 2025-03-20 04:28:05.542 1000 FEE 436169 1114 \N \N 6042997 2025-03-20 04:28:28.271 2025-03-20 04:28:28.271 2700 FEE 435856 19854 \N \N 6042998 2025-03-20 04:28:28.271 2025-03-20 04:28:28.271 24300 TIP 435856 19576 \N \N 6042999 2025-03-20 04:28:42.033 2025-03-20 04:28:42.033 2100 FEE 247866 15075 \N \N 6043000 2025-03-20 04:28:42.033 2025-03-20 04:28:42.033 18900 TIP 247866 16284 \N \N 6043008 2025-03-20 04:28:44.2 2025-03-20 04:28:44.2 2100 FEE 247866 2361 \N \N 6043009 2025-03-20 04:28:44.2 2025-03-20 04:28:44.2 18900 TIP 247866 1447 \N \N 6043023 2025-03-20 04:30:21.097 2025-03-20 04:30:21.097 0 FEE 436171 21734 \N \N 6043034 2025-03-20 04:31:41.061 2025-03-20 04:31:41.061 100 FEE 436123 782 \N \N 6043035 2025-03-20 04:31:41.061 2025-03-20 04:31:41.061 900 TIP 436123 21666 \N \N 6043042 2025-03-20 04:31:51.94 2025-03-20 04:31:51.94 1000 FEE 436178 17415 \N \N 6043045 2025-03-20 04:32:21.465 2025-03-20 04:32:21.465 3400 FEE 435763 4043 \N \N 6043046 2025-03-20 04:32:21.465 2025-03-20 04:32:21.465 30600 TIP 435763 13327 \N \N 6043076 2025-03-20 04:40:56.646 2025-03-20 04:40:56.646 1000 FEE 436188 14663 \N \N 6043098 2025-03-20 04:47:21.372 2025-03-20 04:47:21.372 1000 FEE 436194 16842 \N \N 6043100 2025-03-20 04:47:31.914 2025-03-20 04:47:31.914 1000 FEE 436069 20481 \N \N 6043101 2025-03-20 04:47:31.914 2025-03-20 04:47:31.914 9000 TIP 436069 21172 \N \N 6043103 2025-03-20 04:48:08.129 2025-03-20 04:48:08.129 10000 FEE 435934 1772 \N \N 6043104 2025-03-20 04:48:08.129 2025-03-20 04:48:08.129 90000 TIP 435934 17638 \N \N 6043156 2025-03-20 04:55:25.343 2025-03-20 04:55:25.343 3000 FEE 436062 929 \N \N 6043157 2025-03-20 04:55:25.343 2025-03-20 04:55:25.343 27000 TIP 436062 4287 \N \N 6043158 2025-03-20 04:55:25.383 2025-03-20 04:55:25.383 8300 FEE 435944 657 \N \N 6043159 2025-03-20 04:55:25.383 2025-03-20 04:55:25.383 74700 TIP 435944 1567 \N \N 6043166 2025-03-20 04:55:27.301 2025-03-20 04:55:27.301 8300 FEE 436093 7580 \N \N 6043167 2025-03-20 04:55:27.301 2025-03-20 04:55:27.301 74700 TIP 436093 1817 \N \N 6043205 2025-03-20 05:01:01.596 2025-03-20 05:01:01.596 2300 FEE 436136 14152 \N \N 6043206 2025-03-20 05:01:01.596 2025-03-20 05:01:01.596 20700 TIP 436136 19375 \N \N 6043233 2025-03-20 05:01:04.488 2025-03-20 05:01:04.488 2300 FEE 436136 1209 \N \N 6043234 2025-03-20 05:01:04.488 2025-03-20 05:01:04.488 20700 TIP 436136 20275 \N \N 6043253 2025-03-20 05:01:06.951 2025-03-20 05:01:06.951 2300 FEE 436136 714 \N \N 6043254 2025-03-20 05:01:06.951 2025-03-20 05:01:06.951 20700 TIP 436136 7668 \N \N 6043301 2025-03-20 05:01:11.879 2025-03-20 05:01:11.879 2300 FEE 436136 17817 \N \N 6043302 2025-03-20 05:01:11.879 2025-03-20 05:01:11.879 20700 TIP 436136 21090 \N \N 6043343 2025-03-20 05:02:22.511 2025-03-20 05:02:22.511 1000 FEE 436174 768 \N \N 6043344 2025-03-20 05:02:22.511 2025-03-20 05:02:22.511 9000 TIP 436174 1552 \N \N 6043351 2025-03-20 05:02:35.395 2025-03-20 05:02:35.395 1000 FEE 436217 1039 \N \N 6043358 2025-03-20 05:05:28.125 2025-03-20 05:05:28.125 0 FEE 436215 20190 \N \N 6043375 2025-03-20 05:09:20.657 2025-03-20 05:09:20.657 10000 FEE 436213 19668 \N \N 6043376 2025-03-20 05:09:20.657 2025-03-20 05:09:20.657 90000 TIP 436213 739 \N \N 6043394 2025-03-20 05:16:54.437 2025-03-20 05:16:54.437 10000 FEE 436197 21079 \N \N 6043395 2025-03-20 05:16:54.437 2025-03-20 05:16:54.437 90000 TIP 436197 12368 \N \N 6043399 2025-03-20 05:17:54.946 2025-03-20 05:17:54.946 800 FEE 436015 16816 \N \N 6043400 2025-03-20 05:17:54.946 2025-03-20 05:17:54.946 7200 TIP 436015 1624 \N \N 6043427 2025-03-20 05:25:18.533 2025-03-20 05:25:18.533 1000 FEE 436236 10986 \N \N 6043437 2025-03-20 05:27:21.748 2025-03-20 05:27:21.748 2500 FEE 436230 1030 \N \N 6043438 2025-03-20 05:27:21.748 2025-03-20 05:27:21.748 22500 TIP 436230 6463 \N \N 6043452 2025-03-20 05:29:46.287 2025-03-20 05:29:46.287 1000 FEE 436175 11153 \N \N 6043453 2025-03-20 05:29:46.287 2025-03-20 05:29:46.287 9000 TIP 436175 14651 \N \N 6043492 2025-03-20 05:31:59.598 2025-03-20 05:31:59.598 8300 FEE 436243 18557 \N \N 6043493 2025-03-20 05:31:59.598 2025-03-20 05:31:59.598 74700 TIP 436243 15588 \N \N 6043517 2025-03-20 05:32:17.26 2025-03-20 05:32:17.26 8300 FEE 435847 11621 \N \N 6043518 2025-03-20 05:32:17.26 2025-03-20 05:32:17.26 74700 TIP 435847 683 \N \N 6043527 2025-03-20 05:32:18.317 2025-03-20 05:32:18.317 8300 FEE 435847 9758 \N \N 6043528 2025-03-20 05:32:18.317 2025-03-20 05:32:18.317 74700 TIP 435847 618 \N \N 6043529 2025-03-20 05:32:18.464 2025-03-20 05:32:18.464 8300 FEE 435847 5293 \N \N 6043530 2025-03-20 05:32:18.464 2025-03-20 05:32:18.464 74700 TIP 435847 21577 \N \N 6043549 2025-03-20 05:32:19.98 2025-03-20 05:32:19.98 8300 FEE 435847 21520 \N \N 6043550 2025-03-20 05:32:19.98 2025-03-20 05:32:19.98 74700 TIP 435847 15243 \N \N 6043575 2025-03-20 05:33:08.552 2025-03-20 05:33:08.552 8300 FEE 436248 8423 \N \N 6043576 2025-03-20 05:33:08.552 2025-03-20 05:33:08.552 74700 TIP 436248 18368 \N \N 6043634 2025-03-20 05:38:38.933 2025-03-20 05:38:38.933 1000 FEE 217413 5757 \N \N 6043635 2025-03-20 05:38:38.933 2025-03-20 05:38:38.933 9000 TIP 217413 2431 \N \N 6043640 2025-03-20 05:38:49.573 2025-03-20 05:38:49.573 4000 FEE 436257 5578 \N \N 6043641 2025-03-20 05:38:49.573 2025-03-20 05:38:49.573 36000 TIP 436257 8472 \N \N 6043653 2025-03-20 05:39:39.37 2025-03-20 05:39:39.37 4000 FEE 436252 704 \N \N 6043654 2025-03-20 05:39:39.37 2025-03-20 05:39:39.37 36000 TIP 436252 14607 \N \N 6043659 2025-03-20 05:40:21.621 2025-03-20 05:40:21.621 8300 FEE 436256 738 \N \N 6043660 2025-03-20 05:40:21.621 2025-03-20 05:40:21.621 74700 TIP 436256 5646 \N \N 6043680 2025-03-20 05:41:30.634 2025-03-20 05:41:30.634 0 FEE 436243 21239 \N \N 6043705 2025-03-20 05:45:39.85 2025-03-20 05:45:39.85 1000 FEE 436259 21685 \N \N 6043706 2025-03-20 05:45:39.85 2025-03-20 05:45:39.85 9000 TIP 436259 12744 \N \N 6043709 2025-03-20 05:45:43.443 2025-03-20 05:45:43.443 100 FEE 436235 12821 \N \N 6043710 2025-03-20 05:45:43.443 2025-03-20 05:45:43.443 900 TIP 436235 19217 \N \N 6043717 2025-03-20 05:45:45.593 2025-03-20 05:45:45.593 100 FEE 436239 7966 \N \N 6043718 2025-03-20 05:45:45.593 2025-03-20 05:45:45.593 900 TIP 436239 3409 \N \N 6043731 2025-03-20 05:47:47.704 2025-03-20 05:47:47.704 1000 FEE 436265 19537 \N \N 6043743 2025-03-20 05:49:15.797 2025-03-20 05:49:15.797 2100 FEE 436233 11443 \N \N 6043744 2025-03-20 05:49:15.797 2025-03-20 05:49:15.797 18900 TIP 436233 676 \N \N 6043763 2025-03-20 05:49:29.561 2025-03-20 05:49:29.561 2100 FEE 436254 21620 \N \N 6043764 2025-03-20 05:49:29.561 2025-03-20 05:49:29.561 18900 TIP 436254 1394 \N \N 6043775 2025-03-20 05:50:08.7 2025-03-20 05:50:08.7 2100 FEE 436174 1505 \N \N 6043776 2025-03-20 05:50:08.7 2025-03-20 05:50:08.7 18900 TIP 436174 897 \N \N 6043790 2025-03-20 05:51:16.068 2025-03-20 05:51:16.068 2100 FEE 436231 5597 \N \N 6043791 2025-03-20 05:51:16.068 2025-03-20 05:51:16.068 18900 TIP 436231 1425 \N \N 6042959 2025-03-20 04:26:30.321 2025-03-20 04:26:30.321 10000 FEE 436166 705 \N \N 6042965 2025-03-20 04:27:22.228 2025-03-20 04:27:22.228 2700 FEE 435663 21522 \N \N 6042966 2025-03-20 04:27:22.228 2025-03-20 04:27:22.228 24300 TIP 435663 2735 \N \N 6042995 2025-03-20 04:28:27.722 2025-03-20 04:28:27.722 2700 FEE 435856 1737 \N \N 6042996 2025-03-20 04:28:27.722 2025-03-20 04:28:27.722 24300 TIP 435856 2342 \N \N 6043003 2025-03-20 04:28:42.602 2025-03-20 04:28:42.602 2100 FEE 247866 2514 \N \N 6043004 2025-03-20 04:28:42.602 2025-03-20 04:28:42.602 18900 TIP 247866 654 \N \N 6043016 2025-03-20 04:29:10.603 2025-03-20 04:29:10.603 1000 FEE 436170 15474 \N \N 6043018 2025-03-20 04:29:59.03 2025-03-20 04:29:59.03 1000 FEE 436171 7675 \N \N 6043067 2025-03-20 04:39:12.438 2025-03-20 04:39:12.438 3200 FEE 436175 21103 \N \N 6043068 2025-03-20 04:39:12.438 2025-03-20 04:39:12.438 28800 TIP 436175 1801 \N \N 6043079 2025-03-20 04:42:07.853 2025-03-20 04:42:07.853 1600 FEE 436188 15060 \N \N 6043080 2025-03-20 04:42:07.853 2025-03-20 04:42:07.853 14400 TIP 436188 620 \N \N 6043091 2025-03-20 04:46:00.116 2025-03-20 04:46:00.116 1000 FEE 436192 19403 \N \N 6043093 2025-03-20 04:46:54.402 2025-03-20 04:46:54.402 1000 FEE 436193 20965 \N \N 6043108 2025-03-20 04:48:32.476 2025-03-20 04:48:32.476 1000000 FEE 436197 14705 \N \N 6043109 2025-03-20 04:48:32.476 2025-03-20 04:48:32.476 30000000 BOOST 436197 7583 \N \N 6043134 2025-03-20 04:53:38.014 2025-03-20 04:53:38.014 1000 FEE 436026 17042 \N \N 6043135 2025-03-20 04:53:38.014 2025-03-20 04:53:38.014 9000 TIP 436026 18188 \N \N 6043144 2025-03-20 04:54:25.234 2025-03-20 04:54:25.234 1100 FEE 436160 15978 \N \N 6043145 2025-03-20 04:54:25.234 2025-03-20 04:54:25.234 9900 TIP 436160 10342 \N \N 6043150 2025-03-20 04:54:56.838 2025-03-20 04:54:56.838 1000 FEE 436208 5759 \N \N 6043176 2025-03-20 04:55:30.219 2025-03-20 04:55:30.219 8300 FEE 436197 21269 \N \N 6043177 2025-03-20 04:55:30.219 2025-03-20 04:55:30.219 74700 TIP 436197 20906 \N \N 6043190 2025-03-20 04:57:08.274 2025-03-20 04:57:08.274 100 FEE 436191 21012 \N \N 6043191 2025-03-20 04:57:08.274 2025-03-20 04:57:08.274 900 TIP 436191 20602 \N \N 6043195 2025-03-20 04:59:03.238 2025-03-20 04:59:03.238 100 FEE 436207 1472 \N \N 6043196 2025-03-20 04:59:03.238 2025-03-20 04:59:03.238 900 TIP 436207 13921 \N \N 6043215 2025-03-20 05:01:02.465 2025-03-20 05:01:02.465 2300 FEE 436136 20603 \N \N 6043216 2025-03-20 05:01:02.465 2025-03-20 05:01:02.465 20700 TIP 436136 3642 \N \N 6043225 2025-03-20 05:01:03.342 2025-03-20 05:01:03.342 2300 FEE 436136 15052 \N \N 6043226 2025-03-20 05:01:03.342 2025-03-20 05:01:03.342 20700 TIP 436136 18637 \N \N 6043231 2025-03-20 05:01:04.179 2025-03-20 05:01:04.179 2300 FEE 436136 711 \N \N 6043232 2025-03-20 05:01:04.179 2025-03-20 05:01:04.179 20700 TIP 436136 10302 \N \N 6043283 2025-03-20 05:01:09.76 2025-03-20 05:01:09.76 2300 FEE 436136 10283 \N \N 6043284 2025-03-20 05:01:09.76 2025-03-20 05:01:09.76 20700 TIP 436136 13348 \N \N 6043289 2025-03-20 05:01:10.328 2025-03-20 05:01:10.328 2300 FEE 436136 21036 \N \N 6043290 2025-03-20 05:01:10.328 2025-03-20 05:01:10.328 20700 TIP 436136 1772 \N \N 6043307 2025-03-20 05:01:12.549 2025-03-20 05:01:12.549 2300 FEE 436136 20370 \N \N 6043308 2025-03-20 05:01:12.549 2025-03-20 05:01:12.549 20700 TIP 436136 4079 \N \N 6043325 2025-03-20 05:02:15.126 2025-03-20 05:02:15.126 1000 FEE 435905 756 \N \N 6043326 2025-03-20 05:02:15.126 2025-03-20 05:02:15.126 9000 TIP 435905 680 \N \N 6043385 2025-03-20 05:14:10.191 2025-03-20 05:14:10.191 0 FEE 436221 894 \N \N 6042991 2025-03-20 04:28:27.328 2025-03-20 04:28:27.328 2700 FEE 435856 20969 \N \N 6042992 2025-03-20 04:28:27.328 2025-03-20 04:28:27.328 24300 TIP 435856 11670 \N \N 6043006 2025-03-20 04:28:44.043 2025-03-20 04:28:44.043 2100 FEE 247866 21357 \N \N 6043007 2025-03-20 04:28:44.043 2025-03-20 04:28:44.043 18900 TIP 247866 10393 \N \N 6043019 2025-03-20 04:30:00.133 2025-03-20 04:30:00.133 1000 FEE 436172 6687 \N \N 6043026 2025-03-20 04:30:42.644 2025-03-20 04:30:42.644 10000 FEE 436169 18956 \N \N 6043027 2025-03-20 04:30:42.644 2025-03-20 04:30:42.644 90000 TIP 436169 20854 \N \N 6043036 2025-03-20 04:31:41.27 2025-03-20 04:31:41.27 100 FEE 436123 21180 \N \N 6043037 2025-03-20 04:31:41.27 2025-03-20 04:31:41.27 900 TIP 436123 9863 \N \N 6043049 2025-03-20 04:32:44.413 2025-03-20 04:32:44.413 1000 FEE 436179 9517 \N \N 6043065 2025-03-20 04:39:07.814 2025-03-20 04:39:07.814 1000 FEE 436185 18772 \N \N 6043111 2025-03-20 04:49:46.661 2025-03-20 04:49:46.661 1000 FEE 436198 14785 \N \N 6043127 2025-03-20 04:52:41.689 2025-03-20 04:52:41.689 1600 FEE 436197 17713 \N \N 6043128 2025-03-20 04:52:41.689 2025-03-20 04:52:41.689 14400 TIP 436197 6137 \N \N 6043154 2025-03-20 04:55:25.21 2025-03-20 04:55:25.21 8300 FEE 435944 9758 \N \N 6043155 2025-03-20 04:55:25.21 2025-03-20 04:55:25.21 74700 TIP 435944 14939 \N \N 6043162 2025-03-20 04:55:25.803 2025-03-20 04:55:25.803 8300 FEE 435944 20636 \N \N 6043163 2025-03-20 04:55:25.803 2025-03-20 04:55:25.803 74700 TIP 435944 14489 \N \N 6043164 2025-03-20 04:55:25.955 2025-03-20 04:55:25.955 27000 FEE 436062 2342 \N \N 6043165 2025-03-20 04:55:25.955 2025-03-20 04:55:25.955 243000 TIP 436062 19138 \N \N 6043174 2025-03-20 04:55:29.924 2025-03-20 04:55:29.924 8300 FEE 436197 14357 \N \N 6043175 2025-03-20 04:55:29.924 2025-03-20 04:55:29.924 74700 TIP 436197 15103 \N \N 6043201 2025-03-20 05:01:01.257 2025-03-20 05:01:01.257 2300 FEE 436136 10591 \N \N 6043202 2025-03-20 05:01:01.257 2025-03-20 05:01:01.257 20700 TIP 436136 675 \N \N 6043245 2025-03-20 05:01:06.08 2025-03-20 05:01:06.08 2300 FEE 436136 20979 \N \N 6043246 2025-03-20 05:01:06.08 2025-03-20 05:01:06.08 20700 TIP 436136 9246 \N \N 6043267 2025-03-20 05:01:08.299 2025-03-20 05:01:08.299 2300 FEE 436136 10013 \N \N 6043268 2025-03-20 05:01:08.299 2025-03-20 05:01:08.299 20700 TIP 436136 19673 \N \N 6112637 2025-03-26 05:00:00.903 2025-03-26 05:00:00.903 1000 FEE 443498 9099 \N \N 6112650 2025-03-26 05:01:54.416 2025-03-26 05:01:54.416 1000 FEE 443503 3504 \N \N 6112667 2025-03-26 05:04:07.13 2025-03-26 05:04:07.13 2600 FEE 443382 20381 \N \N 6112668 2025-03-26 05:04:07.13 2025-03-26 05:04:07.13 23400 TIP 443382 2224 \N \N 6112687 2025-03-26 05:06:17.16 2025-03-26 05:06:17.16 1000 FEE 443511 15336 \N \N 6112698 2025-03-26 05:07:58.762 2025-03-26 05:07:58.762 1000 POLL 442163 21041 \N \N 6112699 2025-03-26 05:08:11.436 2025-03-26 05:08:11.436 3400 FEE 443197 19488 \N \N 6112700 2025-03-26 05:08:11.436 2025-03-26 05:08:11.436 30600 TIP 443197 19943 \N \N 6112709 2025-03-26 05:09:19.415 2025-03-26 05:09:19.415 2100 FEE 443501 15337 \N \N 6112710 2025-03-26 05:09:19.415 2025-03-26 05:09:19.415 18900 TIP 443501 1769 \N \N 6112715 2025-03-26 05:10:43.404 2025-03-26 05:10:43.404 3400 FEE 443473 3642 \N \N 6112716 2025-03-26 05:10:43.404 2025-03-26 05:10:43.404 30600 TIP 443473 18528 \N \N 6112732 2025-03-26 05:13:25.806 2025-03-26 05:13:25.806 2100 FEE 443228 17162 \N \N 6112733 2025-03-26 05:13:25.806 2025-03-26 05:13:25.806 18900 TIP 443228 9418 \N \N 6112749 2025-03-26 05:16:24.91 2025-03-26 05:16:24.91 1000 FEE 443516 13378 \N \N 6112750 2025-03-26 05:16:24.91 2025-03-26 05:16:24.91 9000 TIP 443516 18731 \N \N 6112768 2025-03-26 05:20:02.227 2025-03-26 05:20:02.227 100000 FEE 443531 20291 \N \N 6112790 2025-03-26 05:23:07.806 2025-03-26 05:23:07.806 0 FEE 443526 12808 \N \N 6112813 2025-03-26 05:26:53.788 2025-03-26 05:26:53.788 100000 FEE 443541 17209 \N \N 6112818 2025-03-26 05:27:18.923 2025-03-26 05:27:18.923 1000 FEE 443543 12921 \N \N 6112842 2025-03-26 05:29:33.048 2025-03-26 05:29:33.048 500 FEE 443528 15091 \N \N 6112843 2025-03-26 05:29:33.048 2025-03-26 05:29:33.048 4500 TIP 443528 6260 \N \N 6112848 2025-03-26 05:30:28.667 2025-03-26 05:30:28.667 1000 FEE 443549 19292 \N \N 6112857 2025-03-26 05:31:26.492 2025-03-26 05:31:26.492 1000 FEE 443551 713 \N \N 6112864 2025-03-26 05:31:47.957 2025-03-26 05:31:47.957 1000 FEE 443553 913 \N \N 6112868 2025-03-26 05:32:10.002 2025-03-26 05:32:10.002 1000 FEE 443555 4043 \N \N 6112872 2025-03-26 05:32:43.723 2025-03-26 05:32:43.723 1000 FEE 443556 20481 \N \N 6112873 2025-03-26 05:33:10.728 2025-03-26 05:33:10.728 10000 FEE 443555 641 \N \N 6112874 2025-03-26 05:33:10.728 2025-03-26 05:33:10.728 90000 TIP 443555 17237 \N \N 6112877 2025-03-26 05:33:50.065 2025-03-26 05:33:50.065 1000 FEE 443538 9335 \N \N 6112878 2025-03-26 05:33:50.065 2025-03-26 05:33:50.065 9000 TIP 443538 2010 \N \N 6112882 2025-03-26 05:34:11.164 2025-03-26 05:34:11.164 1600 FEE 443545 15577 \N \N 6112883 2025-03-26 05:34:11.164 2025-03-26 05:34:11.164 14400 TIP 443545 19888 \N \N 6112930 2025-03-26 05:37:51.253 2025-03-26 05:37:51.253 2100 FEE 443272 18101 \N \N 6112931 2025-03-26 05:37:51.253 2025-03-26 05:37:51.253 18900 TIP 443272 16042 \N \N 6112954 2025-03-26 05:39:13.764 2025-03-26 05:39:13.764 500 FEE 443514 16956 \N \N 6112955 2025-03-26 05:39:13.764 2025-03-26 05:39:13.764 4500 TIP 443514 21166 \N \N 6112958 2025-03-26 05:39:14.214 2025-03-26 05:39:14.214 7700 FEE 443274 1480 \N \N 6112959 2025-03-26 05:39:14.214 2025-03-26 05:39:14.214 69300 TIP 443274 16259 \N \N 6113036 2025-03-26 05:39:45.513 2025-03-26 05:39:45.513 2100 FEE 443517 21406 \N \N 6113037 2025-03-26 05:39:45.513 2025-03-26 05:39:45.513 18900 TIP 443517 1549 \N \N 6113038 2025-03-26 05:39:49.148 2025-03-26 05:39:49.148 7700 FEE 443545 12808 \N \N 6113039 2025-03-26 05:39:49.148 2025-03-26 05:39:49.148 69300 TIP 443545 21136 \N \N 6113040 2025-03-26 05:39:49.26 2025-03-26 05:39:49.26 7700 FEE 443545 21145 \N \N 6113041 2025-03-26 05:39:49.26 2025-03-26 05:39:49.26 69300 TIP 443545 21091 \N \N 6113048 2025-03-26 05:40:00.274 2025-03-26 05:40:00.274 2100 FEE 443505 21709 \N \N 6113049 2025-03-26 05:40:00.274 2025-03-26 05:40:00.274 18900 TIP 443505 9242 \N \N 6113056 2025-03-26 05:40:11.885 2025-03-26 05:40:11.885 7700 FEE 443571 989 \N \N 6113057 2025-03-26 05:40:11.885 2025-03-26 05:40:11.885 69300 TIP 443571 946 \N \N 6113071 2025-03-26 05:40:36.313 2025-03-26 05:40:36.313 1000 FEE 443576 21701 \N \N 6113076 2025-03-26 05:40:58.62 2025-03-26 05:40:58.62 2700 FEE 443492 21254 \N \N 6113077 2025-03-26 05:40:58.62 2025-03-26 05:40:58.62 24300 TIP 443492 4862 \N \N 6113082 2025-03-26 05:41:12.571 2025-03-26 05:41:12.571 15000 FEE 443578 16282 \N \N 6113101 2025-03-26 05:42:36.884 2025-03-26 05:42:36.884 13800 FEE 443272 10112 \N \N 6113102 2025-03-26 05:42:36.884 2025-03-26 05:42:36.884 124200 TIP 443272 19524 \N \N 6043184 2025-03-20 04:55:49.163 2025-03-20 04:55:49.163 1000 FEE 436210 16353 \N \N 6043186 2025-03-20 04:56:37.639 2025-03-20 04:56:37.639 1000 FEE 436211 6555 \N \N 6043193 2025-03-20 04:57:53.402 2025-03-20 04:57:53.402 21000 FEE 436212 5308 \N \N 6043197 2025-03-20 04:59:10.499 2025-03-20 04:59:10.499 1000 FEE 436214 21044 \N \N 6043209 2025-03-20 05:01:02.008 2025-03-20 05:01:02.008 2300 FEE 436136 10849 \N \N 6043210 2025-03-20 05:01:02.008 2025-03-20 05:01:02.008 20700 TIP 436136 7891 \N \N 6043223 2025-03-20 05:01:03.203 2025-03-20 05:01:03.203 2300 FEE 436136 10719 \N \N 6043224 2025-03-20 05:01:03.203 2025-03-20 05:01:03.203 20700 TIP 436136 960 \N \N 6043241 2025-03-20 05:01:05.748 2025-03-20 05:01:05.748 2300 FEE 436136 10273 \N \N 6043242 2025-03-20 05:01:05.748 2025-03-20 05:01:05.748 20700 TIP 436136 21238 \N \N 6043251 2025-03-20 05:01:06.678 2025-03-20 05:01:06.678 2300 FEE 436136 13921 \N \N 6043252 2025-03-20 05:01:06.678 2025-03-20 05:01:06.678 20700 TIP 436136 1712 \N \N 6043311 2025-03-20 05:01:12.856 2025-03-20 05:01:12.856 2300 FEE 436136 3409 \N \N 6043312 2025-03-20 05:01:12.856 2025-03-20 05:01:12.856 20700 TIP 436136 12721 \N \N 6043314 2025-03-20 05:02:05.288 2025-03-20 05:02:05.288 1000 FEE 436093 18473 \N \N 6043315 2025-03-20 05:02:05.288 2025-03-20 05:02:05.288 9000 TIP 436093 1394 \N \N 6043331 2025-03-20 05:02:19.195 2025-03-20 05:02:19.195 1000 FEE 436197 19198 \N \N 6043332 2025-03-20 05:02:19.195 2025-03-20 05:02:19.195 9000 TIP 436197 13753 \N \N 6043333 2025-03-20 05:02:19.758 2025-03-20 05:02:19.758 1000 FEE 436201 1454 \N \N 6043334 2025-03-20 05:02:19.758 2025-03-20 05:02:19.758 9000 TIP 436201 2703 \N \N 6043335 2025-03-20 05:02:20.011 2025-03-20 05:02:20.011 1000 FEE 436207 15192 \N \N 6043336 2025-03-20 05:02:20.011 2025-03-20 05:02:20.011 9000 TIP 436207 9378 \N \N 6043341 2025-03-20 05:02:22.11 2025-03-20 05:02:22.11 1000 FEE 436166 1571 \N \N 6043342 2025-03-20 05:02:22.11 2025-03-20 05:02:22.11 9000 TIP 436166 20198 \N \N 6043353 2025-03-20 05:02:51.475 2025-03-20 05:02:51.475 0 FEE 428953 16336 \N \N 6043368 2025-03-20 05:08:18.284 2025-03-20 05:08:18.284 10000 FEE 436174 20612 \N \N 6043369 2025-03-20 05:08:18.284 2025-03-20 05:08:18.284 90000 TIP 436174 4035 \N \N 6043371 2025-03-20 05:08:48.654 2025-03-20 05:08:48.654 1000 FEE 436225 1605 \N \N 6043382 2025-03-20 05:13:18.896 2025-03-20 05:13:18.896 500 FEE 436221 18409 \N \N 6043383 2025-03-20 05:13:18.896 2025-03-20 05:13:18.896 4500 TIP 436221 15941 \N \N 6043390 2025-03-20 05:16:10.197 2025-03-20 05:16:10.197 1000 FEE 436224 1970 \N \N 6043391 2025-03-20 05:16:10.197 2025-03-20 05:16:10.197 9000 TIP 436224 21422 \N \N 6043416 2025-03-20 05:22:40.304 2025-03-20 05:22:40.304 5000 FEE 436224 18232 \N \N 6043417 2025-03-20 05:22:40.304 2025-03-20 05:22:40.304 45000 TIP 436224 12911 \N \N 6043428 2025-03-20 05:25:26.33 2025-03-20 05:25:26.33 3200 FEE 436213 1105 \N \N 6043429 2025-03-20 05:25:26.33 2025-03-20 05:25:26.33 28800 TIP 436213 17095 \N \N 6043479 2025-03-20 05:31:36.155 2025-03-20 05:31:36.155 1000 FEE 436243 4173 \N \N 6043511 2025-03-20 05:32:16.118 2025-03-20 05:32:16.118 16600 FEE 435847 13132 \N \N 6043512 2025-03-20 05:32:16.118 2025-03-20 05:32:16.118 149400 TIP 435847 700 \N \N 6043521 2025-03-20 05:32:18.16 2025-03-20 05:32:18.16 8300 FEE 435847 861 \N \N 6043522 2025-03-20 05:32:18.16 2025-03-20 05:32:18.16 74700 TIP 435847 11522 \N \N 6043531 2025-03-20 05:32:18.617 2025-03-20 05:32:18.617 8300 FEE 435847 12609 \N \N 6043532 2025-03-20 05:32:18.617 2025-03-20 05:32:18.617 74700 TIP 435847 21401 \N \N 6043539 2025-03-20 05:32:19.263 2025-03-20 05:32:19.263 8300 FEE 435847 696 \N \N 6043540 2025-03-20 05:32:19.263 2025-03-20 05:32:19.263 74700 TIP 435847 19796 \N \N 6043606 2025-03-20 05:36:25.905 2025-03-20 05:36:25.905 8900 FEE 436243 684 \N \N 6043607 2025-03-20 05:36:25.905 2025-03-20 05:36:25.905 80100 TIP 436243 20636 \N \N 6043612 2025-03-20 05:37:07.218 2025-03-20 05:37:07.218 0 FEE 436243 805 \N \N 6043626 2025-03-20 05:38:19.049 2025-03-20 05:38:19.049 1000 FEE 436106 9695 \N \N 6043627 2025-03-20 05:38:19.049 2025-03-20 05:38:19.049 9000 TIP 436106 7097 \N \N 6043630 2025-03-20 05:38:37.491 2025-03-20 05:38:37.491 1000 FEE 230233 9169 \N \N 6043631 2025-03-20 05:38:37.491 2025-03-20 05:38:37.491 9000 TIP 230233 3656 \N \N 6043690 2025-03-20 05:43:23.447 2025-03-20 05:43:23.447 1000 FEE 436262 9695 \N \N 6043696 2025-03-20 05:44:36.567 2025-03-20 05:44:36.567 10000 DONT_LIKE_THIS 436233 19826 \N \N 6043699 2025-03-20 05:44:51.009 2025-03-20 05:44:51.009 900 FEE 436241 7425 \N \N 6043700 2025-03-20 05:44:51.009 2025-03-20 05:44:51.009 8100 TIP 436241 1438 \N \N 6043704 2025-03-20 05:45:39.751 2025-03-20 05:45:39.751 1000 FEE 436263 16704 \N \N 6043713 2025-03-20 05:45:44.811 2025-03-20 05:45:44.811 100 FEE 436237 12768 \N \N 6043714 2025-03-20 05:45:44.811 2025-03-20 05:45:44.811 900 TIP 436237 7587 \N \N 6043715 2025-03-20 05:45:44.978 2025-03-20 05:45:44.978 900 FEE 436237 12749 \N \N 6043716 2025-03-20 05:45:44.978 2025-03-20 05:45:44.978 8100 TIP 436237 2652 \N \N 6043726 2025-03-20 05:46:23.015 2025-03-20 05:46:23.015 42000 FEE 436264 20963 \N \N 6043728 2025-03-20 05:47:33.138 2025-03-20 05:47:33.138 0 FEE 436263 896 \N \N 6043735 2025-03-20 05:48:42.98 2025-03-20 05:48:42.98 1000 FEE 436266 6777 \N \N 6043759 2025-03-20 05:49:29.057 2025-03-20 05:49:29.057 1000 FEE 436208 1236 \N \N 6043760 2025-03-20 05:49:29.057 2025-03-20 05:49:29.057 9000 TIP 436208 6526 \N \N 6043783 2025-03-20 05:51:00.664 2025-03-20 05:51:00.664 1000 FEE 435929 13599 \N \N 6043784 2025-03-20 05:51:00.664 2025-03-20 05:51:00.664 9000 TIP 435929 2329 \N \N 6043803 2025-03-20 05:52:46.347 2025-03-20 05:52:46.347 2100 FEE 436072 896 \N \N 6043804 2025-03-20 05:52:46.347 2025-03-20 05:52:46.347 18900 TIP 436072 21810 \N \N 6043807 2025-03-20 05:52:54.281 2025-03-20 05:52:54.281 2100 FEE 436053 928 \N \N 6043808 2025-03-20 05:52:54.281 2025-03-20 05:52:54.281 18900 TIP 436053 8400 \N \N 6043861 2025-03-20 05:59:10.85 2025-03-20 05:59:10.85 1000 FEE 436278 822 \N \N 6043869 2025-03-20 06:01:28.826 2025-03-20 06:01:28.826 2000 FEE 436243 20099 \N \N 6043870 2025-03-20 06:01:28.826 2025-03-20 06:01:28.826 18000 TIP 436243 6777 \N \N 6043875 2025-03-20 06:04:09.177 2025-03-20 06:04:09.177 4200 FEE 436258 21710 \N \N 6043876 2025-03-20 06:04:09.177 2025-03-20 06:04:09.177 37800 TIP 436258 4768 \N \N 6043203 2025-03-20 05:01:01.482 2025-03-20 05:01:01.482 2300 FEE 436136 621 \N \N 6043204 2025-03-20 05:01:01.482 2025-03-20 05:01:01.482 20700 TIP 436136 4345 \N \N 6043211 2025-03-20 05:01:02.166 2025-03-20 05:01:02.166 2300 FEE 436136 680 \N \N 6043212 2025-03-20 05:01:02.166 2025-03-20 05:01:02.166 20700 TIP 436136 980 \N \N 6043213 2025-03-20 05:01:02.326 2025-03-20 05:01:02.326 2300 FEE 436136 21683 \N \N 6043214 2025-03-20 05:01:02.326 2025-03-20 05:01:02.326 20700 TIP 436136 18313 \N \N 6043217 2025-03-20 05:01:02.673 2025-03-20 05:01:02.673 2300 FEE 436136 17976 \N \N 6043218 2025-03-20 05:01:02.673 2025-03-20 05:01:02.673 20700 TIP 436136 12921 \N \N 6043219 2025-03-20 05:01:02.862 2025-03-20 05:01:02.862 2300 FEE 436136 822 \N \N 6043220 2025-03-20 05:01:02.862 2025-03-20 05:01:02.862 20700 TIP 436136 21506 \N \N 6043247 2025-03-20 05:01:06.281 2025-03-20 05:01:06.281 2300 FEE 436136 20436 \N \N 6043248 2025-03-20 05:01:06.281 2025-03-20 05:01:06.281 20700 TIP 436136 16282 \N \N 6043271 2025-03-20 05:01:08.662 2025-03-20 05:01:08.662 2300 FEE 436136 1833 \N \N 6043272 2025-03-20 05:01:08.662 2025-03-20 05:01:08.662 20700 TIP 436136 7773 \N \N 6043275 2025-03-20 05:01:09.021 2025-03-20 05:01:09.021 2300 FEE 436136 20706 \N \N 6043276 2025-03-20 05:01:09.021 2025-03-20 05:01:09.021 20700 TIP 436136 8729 \N \N 6043291 2025-03-20 05:01:10.88 2025-03-20 05:01:10.88 2300 FEE 436136 8448 \N \N 6043292 2025-03-20 05:01:10.88 2025-03-20 05:01:10.88 20700 TIP 436136 20220 \N \N 6043295 2025-03-20 05:01:11.269 2025-03-20 05:01:11.269 2300 FEE 436136 994 \N \N 6043296 2025-03-20 05:01:11.269 2025-03-20 05:01:11.269 20700 TIP 436136 6335 \N \N 6043297 2025-03-20 05:01:11.438 2025-03-20 05:01:11.438 2300 FEE 436136 14651 \N \N 6043298 2025-03-20 05:01:11.438 2025-03-20 05:01:11.438 20700 TIP 436136 18500 \N \N 6043303 2025-03-20 05:01:11.948 2025-03-20 05:01:11.948 2300 FEE 436136 4388 \N \N 6043304 2025-03-20 05:01:11.948 2025-03-20 05:01:11.948 20700 TIP 436136 20377 \N \N 6043309 2025-03-20 05:01:12.728 2025-03-20 05:01:12.728 2300 FEE 436136 769 \N \N 6043310 2025-03-20 05:01:12.728 2025-03-20 05:01:12.728 20700 TIP 436136 18525 \N \N 6043316 2025-03-20 05:02:06.417 2025-03-20 05:02:06.417 1000 FEE 436158 2577 \N \N 6043317 2025-03-20 05:02:06.417 2025-03-20 05:02:06.417 9000 TIP 436158 16336 \N \N 6043320 2025-03-20 05:02:09.878 2025-03-20 05:02:09.878 1000 FEE 436062 3409 \N \N 6043321 2025-03-20 05:02:09.878 2025-03-20 05:02:09.878 9000 TIP 436062 17838 \N \N 6043347 2025-03-20 05:02:23.324 2025-03-20 05:02:23.324 1000 FEE 436182 17014 \N \N 6043348 2025-03-20 05:02:23.324 2025-03-20 05:02:23.324 9000 TIP 436182 18423 \N \N 6043359 2025-03-20 05:05:59.7 2025-03-20 05:05:59.7 1000 FEE 436221 17570 \N \N 6043387 2025-03-20 05:14:43.939 2025-03-20 05:14:43.939 10000 FEE 435576 21303 \N \N 6043388 2025-03-20 05:14:43.939 2025-03-20 05:14:43.939 90000 TIP 435576 20490 \N \N 6043397 2025-03-20 05:17:46.737 2025-03-20 05:17:46.737 1600 FEE 436062 6382 \N \N 6043398 2025-03-20 05:17:46.737 2025-03-20 05:17:46.737 14400 TIP 436062 20717 \N \N 6043408 2025-03-20 05:21:05.114 2025-03-20 05:21:05.114 1000 FEE 435944 16950 \N \N 6043409 2025-03-20 05:21:05.114 2025-03-20 05:21:05.114 9000 TIP 435944 10352 \N \N 6043414 2025-03-20 05:22:18.083 2025-03-20 05:22:18.083 0 FEE 436233 19924 \N \N 6043422 2025-03-20 05:23:33.262 2025-03-20 05:23:33.262 2000 FEE 436231 21631 \N \N 6043423 2025-03-20 05:23:33.262 2025-03-20 05:23:33.262 18000 TIP 436231 18225 \N \N 6043447 2025-03-20 05:28:21.97 2025-03-20 05:28:21.97 1000 FEE 436238 21269 \N \N 6043454 2025-03-20 05:29:49.823 2025-03-20 05:29:49.823 1000 FEE 436194 20980 \N \N 6043455 2025-03-20 05:29:49.823 2025-03-20 05:29:49.823 9000 TIP 436194 10484 \N \N 6043461 2025-03-20 05:30:44.607 2025-03-20 05:30:44.607 1000 FEE 436242 21338 \N \N 6043462 2025-03-20 05:31:07.946 2025-03-20 05:31:07.946 10000 FEE 436241 17321 \N \N 6043463 2025-03-20 05:31:07.946 2025-03-20 05:31:07.946 90000 TIP 436241 18068 \N \N 6043469 2025-03-20 05:31:16.459 2025-03-20 05:31:16.459 8300 FEE 436233 13348 \N \N 6043470 2025-03-20 05:31:16.459 2025-03-20 05:31:16.459 74700 TIP 436233 17091 \N \N 6043487 2025-03-20 05:31:50.177 2025-03-20 05:31:50.177 1100 FEE 436241 7510 \N \N 6043488 2025-03-20 05:31:50.177 2025-03-20 05:31:50.177 9900 TIP 436241 16406 \N \N 6043507 2025-03-20 05:32:15.695 2025-03-20 05:32:15.695 8300 FEE 435847 18865 \N \N 6043508 2025-03-20 05:32:15.695 2025-03-20 05:32:15.695 74700 TIP 435847 9843 \N \N 6043515 2025-03-20 05:32:17.172 2025-03-20 05:32:17.172 8300 FEE 435847 992 \N \N 6043516 2025-03-20 05:32:17.172 2025-03-20 05:32:17.172 74700 TIP 435847 1316 \N \N 6043519 2025-03-20 05:32:17.413 2025-03-20 05:32:17.413 8300 FEE 435847 4166 \N \N 6043520 2025-03-20 05:32:17.413 2025-03-20 05:32:17.413 74700 TIP 435847 19502 \N \N 6043535 2025-03-20 05:32:18.932 2025-03-20 05:32:18.932 8300 FEE 435847 12976 \N \N 6043536 2025-03-20 05:32:18.932 2025-03-20 05:32:18.932 74700 TIP 435847 14607 \N \N 6043554 2025-03-20 05:32:29.712 2025-03-20 05:32:29.712 1000 FEE 436246 5725 \N \N 6043555 2025-03-20 05:32:29.712 2025-03-20 05:32:29.712 9000 TIP 436246 7580 \N \N 6043566 2025-03-20 05:32:52.823 2025-03-20 05:32:52.823 8300 FEE 436244 18412 \N \N 6043567 2025-03-20 05:32:52.823 2025-03-20 05:32:52.823 74700 TIP 436244 8989 \N \N 6043573 2025-03-20 05:33:02.185 2025-03-20 05:33:02.185 4000 FEE 436233 17690 \N \N 6043574 2025-03-20 05:33:02.185 2025-03-20 05:33:02.185 36000 TIP 436233 9109 \N \N 6043579 2025-03-20 05:34:08.301 2025-03-20 05:34:08.301 1000 FEE 436138 14225 \N \N 6043580 2025-03-20 05:34:08.301 2025-03-20 05:34:08.301 9000 TIP 436138 21389 \N \N 6043592 2025-03-20 05:35:01.138 2025-03-20 05:35:01.138 1000 FEE 436251 711 \N \N 6043594 2025-03-20 05:35:22.784 2025-03-20 05:35:22.784 1000 FEE 436252 15662 \N \N 6043605 2025-03-20 05:36:18.64 2025-03-20 05:36:18.64 10000 FEE 436253 19303 \N \N 6043620 2025-03-20 05:38:13.705 2025-03-20 05:38:13.705 1000 FEE 436128 15273 \N \N 6043621 2025-03-20 05:38:13.705 2025-03-20 05:38:13.705 9000 TIP 436128 16842 \N \N 6043656 2025-03-20 05:40:12.937 2025-03-20 05:40:12.937 8300 FEE 436136 8570 \N \N 6043657 2025-03-20 05:40:12.937 2025-03-20 05:40:12.937 74700 TIP 436136 19484 \N \N 6043666 2025-03-20 05:40:37.884 2025-03-20 05:40:37.884 8300 FEE 435905 15119 \N \N 6043667 2025-03-20 05:40:37.884 2025-03-20 05:40:37.884 74700 TIP 435905 20481 \N \N 6043670 2025-03-20 05:40:38.414 2025-03-20 05:40:38.414 8300 FEE 435905 14376 \N \N 6043671 2025-03-20 05:40:38.414 2025-03-20 05:40:38.414 74700 TIP 435905 21672 \N \N 6043672 2025-03-20 05:40:38.784 2025-03-20 05:40:38.784 16600 FEE 435905 10549 \N \N 6043673 2025-03-20 05:40:38.784 2025-03-20 05:40:38.784 149400 TIP 435905 3683 \N \N 6043676 2025-03-20 05:40:46.739 2025-03-20 05:40:46.739 2000 FEE 436155 4768 \N \N 6043677 2025-03-20 05:40:46.739 2025-03-20 05:40:46.739 18000 TIP 436155 891 \N \N 6043701 2025-03-20 05:44:51.466 2025-03-20 05:44:51.466 9000 FEE 436241 16667 \N \N 6043702 2025-03-20 05:44:51.466 2025-03-20 05:44:51.466 81000 TIP 436241 12566 \N \N 6043707 2025-03-20 05:45:39.886 2025-03-20 05:45:39.886 1000 FEE 436259 4776 \N \N 6043708 2025-03-20 05:45:39.886 2025-03-20 05:45:39.886 9000 TIP 436259 986 \N \N 6043753 2025-03-20 05:49:26.377 2025-03-20 05:49:26.377 2100 FEE 435905 4238 \N \N 6043754 2025-03-20 05:49:26.377 2025-03-20 05:49:26.377 18900 TIP 435905 18528 \N \N 6043794 2025-03-20 05:51:34.239 2025-03-20 05:51:34.239 1000 FEE 436269 11220 \N \N 6043827 2025-03-20 05:53:49.036 2025-03-20 05:53:49.036 2100 FEE 436045 5825 \N \N 6043261 2025-03-20 05:01:07.715 2025-03-20 05:01:07.715 2300 FEE 436136 12368 \N \N 6043262 2025-03-20 05:01:07.715 2025-03-20 05:01:07.715 20700 TIP 436136 20523 \N \N 6043263 2025-03-20 05:01:07.893 2025-03-20 05:01:07.893 2300 FEE 436136 16912 \N \N 6043264 2025-03-20 05:01:07.893 2025-03-20 05:01:07.893 20700 TIP 436136 15732 \N \N 6043277 2025-03-20 05:01:09.246 2025-03-20 05:01:09.246 2300 FEE 436136 12261 \N \N 6043278 2025-03-20 05:01:09.246 2025-03-20 05:01:09.246 20700 TIP 436136 20137 \N \N 6043279 2025-03-20 05:01:09.415 2025-03-20 05:01:09.415 2300 FEE 436136 21485 \N \N 6043280 2025-03-20 05:01:09.415 2025-03-20 05:01:09.415 20700 TIP 436136 19199 \N \N 6043287 2025-03-20 05:01:10.142 2025-03-20 05:01:10.142 2300 FEE 436136 9171 \N \N 6043288 2025-03-20 05:01:10.142 2025-03-20 05:01:10.142 20700 TIP 436136 814 \N \N 6043293 2025-03-20 05:01:11.077 2025-03-20 05:01:11.077 2300 FEE 436136 19005 \N \N 6043294 2025-03-20 05:01:11.077 2025-03-20 05:01:11.077 20700 TIP 436136 7580 \N \N 6043305 2025-03-20 05:01:12.113 2025-03-20 05:01:12.113 2300 FEE 436136 2722 \N \N 6043306 2025-03-20 05:01:12.113 2025-03-20 05:01:12.113 20700 TIP 436136 7978 \N \N 6043327 2025-03-20 05:02:18.8 2025-03-20 05:02:18.8 1000 FEE 436191 642 \N \N 6043328 2025-03-20 05:02:18.8 2025-03-20 05:02:18.8 9000 TIP 436191 11776 \N \N 6043337 2025-03-20 05:02:20.425 2025-03-20 05:02:20.425 1000 FEE 436212 16724 \N \N 6043338 2025-03-20 05:02:20.425 2025-03-20 05:02:20.425 9000 TIP 436212 16942 \N \N 6043349 2025-03-20 05:02:23.747 2025-03-20 05:02:23.747 1000 FEE 436189 965 \N \N 6043350 2025-03-20 05:02:23.747 2025-03-20 05:02:23.747 9000 TIP 436189 18637 \N \N 6043352 2025-03-20 05:02:41.396 2025-03-20 05:02:41.396 10000 FEE 436218 10719 \N \N 6043366 2025-03-20 05:08:03.109 2025-03-20 05:08:03.109 1000 FEE 436223 9171 \N \N 6043370 2025-03-20 05:08:29.689 2025-03-20 05:08:29.689 11000 FEE 436224 1626 \N \N 6043384 2025-03-20 05:13:30.129 2025-03-20 05:13:30.129 2000 DONT_LIKE_THIS 436219 3409 \N \N 6043433 2025-03-20 05:26:53.771 2025-03-20 05:26:53.771 0 FEE 436232 20481 \N \N 6043446 2025-03-20 05:28:13.761 2025-03-20 05:28:13.761 1000 FEE 436237 13517 \N \N 6043477 2025-03-20 05:31:30.624 2025-03-20 05:31:30.624 10000 FEE 436174 12819 \N \N 6043478 2025-03-20 05:31:30.624 2025-03-20 05:31:30.624 90000 TIP 436174 9537 \N \N 6043485 2025-03-20 05:31:49.667 2025-03-20 05:31:49.667 2100 FEE 436233 4754 \N \N 6043486 2025-03-20 05:31:49.667 2025-03-20 05:31:49.667 18900 TIP 436233 20502 \N \N 6043494 2025-03-20 05:32:05.708 2025-03-20 05:32:05.708 1000 FEE 436246 14465 \N \N 6043525 2025-03-20 05:32:18.238 2025-03-20 05:32:18.238 8300 FEE 435847 21248 \N \N 6043526 2025-03-20 05:32:18.238 2025-03-20 05:32:18.238 74700 TIP 435847 20911 \N \N 6043541 2025-03-20 05:32:19.343 2025-03-20 05:32:19.343 8300 FEE 435847 9084 \N \N 6043542 2025-03-20 05:32:19.343 2025-03-20 05:32:19.343 74700 TIP 435847 15536 \N \N 6043543 2025-03-20 05:32:19.515 2025-03-20 05:32:19.515 8300 FEE 435847 20412 \N \N 6043544 2025-03-20 05:32:19.515 2025-03-20 05:32:19.515 74700 TIP 435847 9982 \N \N 6043545 2025-03-20 05:32:19.668 2025-03-20 05:32:19.668 8300 FEE 435847 20871 \N \N 6043546 2025-03-20 05:32:19.668 2025-03-20 05:32:19.668 74700 TIP 435847 20987 \N \N 6043562 2025-03-20 05:32:51.076 2025-03-20 05:32:51.076 500 FEE 436241 4862 \N \N 6043563 2025-03-20 05:32:51.076 2025-03-20 05:32:51.076 4500 TIP 436241 15409 \N \N 6043589 2025-03-20 05:34:47.197 2025-03-20 05:34:47.197 0 FEE 436246 13177 \N \N 6043597 2025-03-20 05:35:24.68 2025-03-20 05:35:24.68 1000 FEE 436106 16876 \N \N 6043598 2025-03-20 05:35:24.68 2025-03-20 05:35:24.68 9000 TIP 436106 760 \N \N 6043608 2025-03-20 05:36:49.693 2025-03-20 05:36:49.693 1000 FEE 436254 16834 \N \N 6043616 2025-03-20 05:37:44.749 2025-03-20 05:37:44.749 1000 FEE 436257 14015 \N \N 6043622 2025-03-20 05:38:15.482 2025-03-20 05:38:15.482 6400 FEE 436246 14376 \N \N 6043623 2025-03-20 05:38:15.482 2025-03-20 05:38:15.482 57600 TIP 436246 19524 \N \N 6043636 2025-03-20 05:38:40.068 2025-03-20 05:38:40.068 1000 FEE 199286 626 \N \N 6043637 2025-03-20 05:38:40.068 2025-03-20 05:38:40.068 9000 TIP 199286 14910 \N \N 6043649 2025-03-20 05:39:37.333 2025-03-20 05:39:37.333 4000 FEE 436252 620 \N \N 6043650 2025-03-20 05:39:37.333 2025-03-20 05:39:37.333 36000 TIP 436252 12736 \N \N 6043662 2025-03-20 05:40:36.922 2025-03-20 05:40:36.922 8300 FEE 435905 13843 \N \N 6043663 2025-03-20 05:40:36.922 2025-03-20 05:40:36.922 74700 TIP 435905 15103 \N \N 6043674 2025-03-20 05:40:38.921 2025-03-20 05:40:38.921 8300 FEE 435905 18734 \N \N 6043675 2025-03-20 05:40:38.921 2025-03-20 05:40:38.921 74700 TIP 435905 21577 \N \N 6043691 2025-03-20 05:44:06.035 2025-03-20 05:44:06.035 500 FEE 436197 14404 \N \N 6043692 2025-03-20 05:44:06.035 2025-03-20 05:44:06.035 4500 TIP 436197 8448 \N \N 6043721 2025-03-20 05:46:12.173 2025-03-20 05:46:12.173 100 FEE 436197 15386 \N \N 6043722 2025-03-20 05:46:12.173 2025-03-20 05:46:12.173 900 TIP 436197 18468 \N \N 6043729 2025-03-20 05:47:33.841 2025-03-20 05:47:33.841 8300 FEE 436258 14449 \N \N 6043730 2025-03-20 05:47:33.841 2025-03-20 05:47:33.841 74700 TIP 436258 9354 \N \N 6043738 2025-03-20 05:49:10.215 2025-03-20 05:49:10.215 2100 FEE 436093 15560 \N \N 6043739 2025-03-20 05:49:10.215 2025-03-20 05:49:10.215 18900 TIP 436093 21242 \N \N 6043745 2025-03-20 05:49:20.992 2025-03-20 05:49:20.992 2100 FEE 436158 708 \N \N 6043746 2025-03-20 05:49:20.992 2025-03-20 05:49:20.992 18900 TIP 436158 3990 \N \N 6043747 2025-03-20 05:49:25.46 2025-03-20 05:49:25.46 1000 FEE 436208 681 \N \N 6043748 2025-03-20 05:49:25.46 2025-03-20 05:49:25.46 9000 TIP 436208 21688 \N \N 6043757 2025-03-20 05:49:27.028 2025-03-20 05:49:27.028 2000 FEE 436208 6537 \N \N 6043758 2025-03-20 05:49:27.028 2025-03-20 05:49:27.028 18000 TIP 436208 706 \N \N 6043771 2025-03-20 05:49:53.106 2025-03-20 05:49:53.106 2100 FEE 436047 3504 \N \N 6043772 2025-03-20 05:49:53.106 2025-03-20 05:49:53.106 18900 TIP 436047 3518 \N \N 6043777 2025-03-20 05:50:10.998 2025-03-20 05:50:10.998 3400 FEE 436047 9295 \N \N 6043778 2025-03-20 05:50:10.998 2025-03-20 05:50:10.998 30600 TIP 436047 20596 \N \N 6043780 2025-03-20 05:50:21.12 2025-03-20 05:50:21.12 1000 FEE 436268 659 \N \N 6043787 2025-03-20 05:51:00.944 2025-03-20 05:51:00.944 1000 FEE 435929 1712 \N \N 6043788 2025-03-20 05:51:00.944 2025-03-20 05:51:00.944 9000 TIP 435929 2596 \N \N 6043796 2025-03-20 05:52:16.492 2025-03-20 05:52:16.492 1000 FEE 436270 1697 \N \N 6043809 2025-03-20 05:53:08.097 2025-03-20 05:53:08.097 1000 FEE 436271 4166 \N \N 6043818 2025-03-20 05:53:12.971 2025-03-20 05:53:12.971 2100 FEE 436037 9366 \N \N 6043819 2025-03-20 05:53:12.971 2025-03-20 05:53:12.971 18900 TIP 436037 16839 \N \N 6043831 2025-03-20 05:54:19.54 2025-03-20 05:54:19.54 800 FEE 436255 14452 \N \N 6043832 2025-03-20 05:54:19.54 2025-03-20 05:54:19.54 7200 TIP 436255 963 \N \N 6043865 2025-03-20 05:59:22.102 2025-03-20 05:59:22.102 0 FEE 436277 16329 \N \N 6043885 2025-03-20 06:06:10.114 2025-03-20 06:06:10.114 21100 FEE 436093 18717 \N \N 6043886 2025-03-20 06:06:10.114 2025-03-20 06:06:10.114 189900 TIP 436093 10056 \N \N 6043281 2025-03-20 05:01:09.579 2025-03-20 05:01:09.579 2300 FEE 436136 2502 \N \N 6043282 2025-03-20 05:01:09.579 2025-03-20 05:01:09.579 20700 TIP 436136 21578 \N \N 6043285 2025-03-20 05:01:10.067 2025-03-20 05:01:10.067 2300 FEE 436136 4989 \N \N 6043286 2025-03-20 05:01:10.067 2025-03-20 05:01:10.067 20700 TIP 436136 16594 \N \N 6043318 2025-03-20 05:02:08.328 2025-03-20 05:02:08.328 1000 FEE 436015 1489 \N \N 6043319 2025-03-20 05:02:08.328 2025-03-20 05:02:08.328 9000 TIP 436015 14651 \N \N 6043322 2025-03-20 05:02:12.265 2025-03-20 05:02:12.265 1000 FEE 435657 15925 \N \N 6043323 2025-03-20 05:02:12.265 2025-03-20 05:02:12.265 9000 TIP 435657 14260 \N \N 6043356 2025-03-20 05:04:51.667 2025-03-20 05:04:51.667 1000 FEE 436220 5128 \N \N 6043364 2025-03-20 05:07:26.253 2025-03-20 05:07:26.253 10000 FEE 436216 21339 \N \N 6043365 2025-03-20 05:07:26.253 2025-03-20 05:07:26.253 90000 TIP 436216 13348 \N \N 6043373 2025-03-20 05:09:11.287 2025-03-20 05:09:11.287 10000 FEE 436227 7418 \N \N 6043378 2025-03-20 05:11:01.083 2025-03-20 05:11:01.083 0 FEE 436218 15273 \N \N 6043401 2025-03-20 05:18:08.69 2025-03-20 05:18:08.69 1000 FEE 436229 1814 \N \N 6043421 2025-03-20 05:23:30.997 2025-03-20 05:23:30.997 1000 FEE 436235 848 \N \N 6043431 2025-03-20 05:26:18.303 2025-03-20 05:26:18.303 3200 FEE 436234 17541 \N \N 6043432 2025-03-20 05:26:18.303 2025-03-20 05:26:18.303 28800 TIP 436234 19663 \N \N 6043449 2025-03-20 05:29:06.381 2025-03-20 05:29:06.381 800 FEE 436231 17824 \N \N 6043450 2025-03-20 05:29:06.381 2025-03-20 05:29:06.381 7200 TIP 436231 6741 \N \N 6043456 2025-03-20 05:30:10.431 2025-03-20 05:30:10.431 10000 FEE 436210 11714 \N \N 6043457 2025-03-20 05:30:10.431 2025-03-20 05:30:10.431 90000 TIP 436210 21556 \N \N 6043459 2025-03-20 05:30:30.669 2025-03-20 05:30:30.669 10000 FEE 436240 16965 \N \N 6043460 2025-03-20 05:30:40.742 2025-03-20 05:30:40.742 100000 FEE 436241 9329 \N \N 6043471 2025-03-20 05:31:16.493 2025-03-20 05:31:16.493 8300 FEE 436233 1814 \N \N 6043472 2025-03-20 05:31:16.493 2025-03-20 05:31:16.493 74700 TIP 436233 21798 \N \N 6043475 2025-03-20 05:31:29.386 2025-03-20 05:31:29.386 3200 FEE 436241 1310 \N \N 6043476 2025-03-20 05:31:29.386 2025-03-20 05:31:29.386 28800 TIP 436241 8954 \N \N 6043480 2025-03-20 05:31:49.218 2025-03-20 05:31:49.218 2100 FEE 436233 11220 \N \N 6043481 2025-03-20 05:31:49.218 2025-03-20 05:31:49.218 18900 TIP 436233 20306 \N \N 6043491 2025-03-20 05:31:56.168 2025-03-20 05:31:56.168 7000 FEE 436245 4819 \N \N 6043497 2025-03-20 05:32:14.906 2025-03-20 05:32:14.906 8300 FEE 435847 21791 \N \N 6043498 2025-03-20 05:32:14.906 2025-03-20 05:32:14.906 74700 TIP 435847 627 \N \N 6043503 2025-03-20 05:32:15.296 2025-03-20 05:32:15.296 8300 FEE 435847 12356 \N \N 6043504 2025-03-20 05:32:15.296 2025-03-20 05:32:15.296 74700 TIP 435847 21603 \N \N 6043513 2025-03-20 05:32:16.546 2025-03-20 05:32:16.546 16600 FEE 435847 21424 \N \N 6043514 2025-03-20 05:32:16.546 2025-03-20 05:32:16.546 149400 TIP 435847 4292 \N \N 6043553 2025-03-20 05:32:29.642 2025-03-20 05:32:29.642 1000 FEE 436247 20829 \N \N 6043556 2025-03-20 05:32:49.056 2025-03-20 05:32:49.056 21000 FEE 436248 715 \N \N 6043560 2025-03-20 05:32:50.868 2025-03-20 05:32:50.868 500 FEE 436241 2952 \N \N 6043561 2025-03-20 05:32:50.868 2025-03-20 05:32:50.868 4500 TIP 436241 20555 \N \N 6043571 2025-03-20 05:32:54.519 2025-03-20 05:32:54.519 4000 FEE 436241 4292 \N \N 6043572 2025-03-20 05:32:54.519 2025-03-20 05:32:54.519 36000 TIP 436241 703 \N \N 6043611 2025-03-20 05:37:06.707 2025-03-20 05:37:06.707 1000 FEE 436256 895 \N \N 6043624 2025-03-20 05:38:18.512 2025-03-20 05:38:18.512 1000 FEE 436125 20433 \N \N 6043625 2025-03-20 05:38:18.512 2025-03-20 05:38:18.512 9000 TIP 436125 20757 \N \N 6043642 2025-03-20 05:38:49.926 2025-03-20 05:38:49.926 4000 FEE 436257 2741 \N \N 6043643 2025-03-20 05:38:49.926 2025-03-20 05:38:49.926 36000 TIP 436257 20495 \N \N 6043651 2025-03-20 05:39:38.649 2025-03-20 05:39:38.649 4000 FEE 436252 678 \N \N 6043652 2025-03-20 05:39:38.649 2025-03-20 05:39:38.649 36000 TIP 436252 10698 \N \N 6043658 2025-03-20 05:40:17.776 2025-03-20 05:40:17.776 10000 FEE 436258 9695 \N \N 6043723 2025-03-20 05:46:12.35 2025-03-20 05:46:12.35 900 FEE 436197 1624 \N \N 6043724 2025-03-20 05:46:12.35 2025-03-20 05:46:12.35 8100 TIP 436197 19016 \N \N 6043761 2025-03-20 05:49:29.242 2025-03-20 05:49:29.242 1000 FEE 436208 19471 \N \N 6043762 2025-03-20 05:49:29.242 2025-03-20 05:49:29.242 9000 TIP 436208 21172 \N \N 6043797 2025-03-20 05:52:24.847 2025-03-20 05:52:24.847 2100 FEE 436115 17817 \N \N 6043798 2025-03-20 05:52:24.847 2025-03-20 05:52:24.847 18900 TIP 436115 6382 \N \N 6043812 2025-03-20 05:53:10.532 2025-03-20 05:53:10.532 1000 FEE 436101 15239 \N \N 6043813 2025-03-20 05:53:10.532 2025-03-20 05:53:10.532 9000 TIP 436101 866 \N \N 6043821 2025-03-20 05:53:24.011 2025-03-20 05:53:24.011 1600 FEE 436249 21631 \N \N 6043822 2025-03-20 05:53:24.011 2025-03-20 05:53:24.011 14400 TIP 436249 3360 \N \N 6043339 2025-03-20 05:02:21.728 2025-03-20 05:02:21.728 1000 FEE 436163 663 \N \N 6043340 2025-03-20 05:02:21.728 2025-03-20 05:02:21.728 9000 TIP 436163 13169 \N \N 6043345 2025-03-20 05:02:22.917 2025-03-20 05:02:22.917 1000 FEE 436181 18069 \N \N 6043346 2025-03-20 05:02:22.917 2025-03-20 05:02:22.917 9000 TIP 436181 18865 \N \N 6043360 2025-03-20 05:06:01.79 2025-03-20 05:06:01.79 0 FEE 436215 11776 \N \N 6043363 2025-03-20 05:07:23.418 2025-03-20 05:07:23.418 1000 FEE 436222 11760 \N \N 6043407 2025-03-20 05:20:56.676 2025-03-20 05:20:56.676 1000 FEE 436230 17535 \N \N 6043412 2025-03-20 05:21:46.222 2025-03-20 05:21:46.222 21000 FEE 436233 27 \N \N 6043425 2025-03-20 05:24:40.072 2025-03-20 05:24:40.072 0 FEE 436232 21521 \N \N 6043443 2025-03-20 05:28:02.337 2025-03-20 05:28:02.337 1000 FEE 436227 1438 \N \N 6043444 2025-03-20 05:28:02.337 2025-03-20 05:28:02.337 9000 TIP 436227 20979 \N \N 6043467 2025-03-20 05:31:16.354 2025-03-20 05:31:16.354 8300 FEE 436233 20776 \N \N 6043468 2025-03-20 05:31:16.354 2025-03-20 05:31:16.354 74700 TIP 436233 21518 \N \N 6043484 2025-03-20 05:31:49.557 2025-03-20 05:31:49.557 1000 FEE 436244 1198 \N \N 6043495 2025-03-20 05:32:05.841 2025-03-20 05:32:05.841 0 FEE 436243 9551 \N \N 6043499 2025-03-20 05:32:15.071 2025-03-20 05:32:15.071 8300 FEE 435847 16542 \N \N 6043500 2025-03-20 05:32:15.071 2025-03-20 05:32:15.071 74700 TIP 435847 16513 \N \N 6043523 2025-03-20 05:32:18.223 2025-03-20 05:32:18.223 8300 FEE 435847 1802 \N \N 6043524 2025-03-20 05:32:18.223 2025-03-20 05:32:18.223 74700 TIP 435847 21427 \N \N 6043551 2025-03-20 05:32:20.13 2025-03-20 05:32:20.13 8300 FEE 435847 1012 \N \N 6043552 2025-03-20 05:32:20.13 2025-03-20 05:32:20.13 74700 TIP 435847 827 \N \N 6043557 2025-03-20 05:32:50.333 2025-03-20 05:32:50.333 42000 FEE 436249 3729 \N \N 6043564 2025-03-20 05:32:52.6 2025-03-20 05:32:52.6 1100 FEE 436246 14255 \N \N 6043565 2025-03-20 05:32:52.6 2025-03-20 05:32:52.6 9900 TIP 436246 20881 \N \N 6043578 2025-03-20 05:34:06.764 2025-03-20 05:34:06.764 1000 FEE 436250 21518 \N \N 6043584 2025-03-20 05:34:13.188 2025-03-20 05:34:13.188 1000 FEE 436128 3417 \N \N 6043585 2025-03-20 05:34:13.188 2025-03-20 05:34:13.188 9000 TIP 436128 16276 \N \N 6043590 2025-03-20 05:34:53.931 2025-03-20 05:34:53.931 2000 FEE 436125 2327 \N \N 6043591 2025-03-20 05:34:53.931 2025-03-20 05:34:53.931 18000 TIP 436125 8535 \N \N 6043601 2025-03-20 05:35:49.411 2025-03-20 05:35:49.411 0 FEE 436246 19303 \N \N 6043610 2025-03-20 05:37:01.747 2025-03-20 05:37:01.747 50000 FEE 436255 827 \N \N 6043628 2025-03-20 05:38:37.046 2025-03-20 05:38:37.046 1000 FEE 230233 10661 \N \N 6043629 2025-03-20 05:38:37.046 2025-03-20 05:38:37.046 9000 TIP 230233 5112 \N \N 6043632 2025-03-20 05:38:38.496 2025-03-20 05:38:38.496 1000 FEE 217413 712 \N \N 6043633 2025-03-20 05:38:38.496 2025-03-20 05:38:38.496 9000 TIP 217413 891 \N \N 6043644 2025-03-20 05:38:50.111 2025-03-20 05:38:50.111 4000 FEE 436257 20377 \N \N 6043645 2025-03-20 05:38:50.111 2025-03-20 05:38:50.111 36000 TIP 436257 1801 \N \N 6043678 2025-03-20 05:40:49.887 2025-03-20 05:40:49.887 10000 FEE 436260 12744 \N \N 6043685 2025-03-20 05:42:37.388 2025-03-20 05:42:37.388 500 FEE 436246 21026 \N \N 6043686 2025-03-20 05:42:37.388 2025-03-20 05:42:37.388 4500 TIP 436246 21666 \N \N 6043719 2025-03-20 05:45:45.63 2025-03-20 05:45:45.63 900 FEE 436239 4048 \N \N 6043720 2025-03-20 05:45:45.63 2025-03-20 05:45:45.63 8100 TIP 436239 7558 \N \N 6043736 2025-03-20 05:49:08.005 2025-03-20 05:49:08.005 2100 FEE 436197 15474 \N \N 6043737 2025-03-20 05:49:08.005 2025-03-20 05:49:08.005 18900 TIP 436197 16842 \N \N 6043767 2025-03-20 05:49:40.254 2025-03-20 05:49:40.254 2100 FEE 436248 19996 \N \N 6043768 2025-03-20 05:49:40.254 2025-03-20 05:49:40.254 18900 TIP 436248 20717 \N \N 6043769 2025-03-20 05:49:45.464 2025-03-20 05:49:45.464 2100 FEE 436241 2367 \N \N 6043770 2025-03-20 05:49:45.464 2025-03-20 05:49:45.464 18900 TIP 436241 18219 \N \N 6043781 2025-03-20 05:50:50.947 2025-03-20 05:50:50.947 2100 FEE 436258 16948 \N \N 6043782 2025-03-20 05:50:50.947 2025-03-20 05:50:50.947 18900 TIP 436258 17221 \N \N 6043810 2025-03-20 05:53:10.404 2025-03-20 05:53:10.404 1000 FEE 436101 8289 \N \N 6043811 2025-03-20 05:53:10.404 2025-03-20 05:53:10.404 9000 TIP 436101 17091 \N \N 6043814 2025-03-20 05:53:10.667 2025-03-20 05:53:10.667 1000 FEE 436101 8713 \N \N 6043815 2025-03-20 05:53:10.667 2025-03-20 05:53:10.667 9000 TIP 436101 17713 \N \N 6043835 2025-03-20 05:54:47.071 2025-03-20 05:54:47.071 2100 FEE 436265 19303 \N \N 6043836 2025-03-20 05:54:47.071 2025-03-20 05:54:47.071 18900 TIP 436265 11192 \N \N 6043914 2025-03-20 06:06:18.413 2025-03-20 06:06:18.413 1100 FEE 436158 17693 \N \N 6043915 2025-03-20 06:06:18.413 2025-03-20 06:06:18.413 9900 TIP 436158 1141 \N \N 6043938 2025-03-20 06:11:00.034 2025-03-20 06:11:00.034 8300 FEE 436281 12819 \N \N 6043939 2025-03-20 06:11:00.034 2025-03-20 06:11:00.034 74700 TIP 436281 7425 \N \N 6043942 2025-03-20 06:11:39.58 2025-03-20 06:11:39.58 1000 FEE 436286 2639 \N \N 6043946 2025-03-20 06:12:28.009 2025-03-20 06:12:28.009 200 FEE 436274 17064 \N \N 6043947 2025-03-20 06:12:28.009 2025-03-20 06:12:28.009 1800 TIP 436274 20381 \N \N 6043948 2025-03-20 06:12:56.697 2025-03-20 06:12:56.697 800 FEE 436021 18557 \N \N 6043949 2025-03-20 06:12:56.697 2025-03-20 06:12:56.697 7200 TIP 436021 20509 \N \N 6043960 2025-03-20 06:15:02.075 2025-03-20 06:15:02.075 10000 FEE 436289 17116 \N \N 6043969 2025-03-20 06:16:25.012 2025-03-20 06:16:25.012 200 FEE 436256 19668 \N \N 6043970 2025-03-20 06:16:25.012 2025-03-20 06:16:25.012 1800 TIP 436256 16724 \N \N 6043974 2025-03-20 06:16:50.046 2025-03-20 06:16:50.046 1000 FEE 436295 21514 \N \N 6043997 2025-03-20 06:19:38.302 2025-03-20 06:19:38.302 2100 FEE 436197 14910 \N \N 6043998 2025-03-20 06:19:38.302 2025-03-20 06:19:38.302 18900 TIP 436197 2213 \N \N 6044030 2025-03-20 06:24:21.497 2025-03-20 06:24:21.497 1000 FEE 436306 17212 \N \N 6044035 2025-03-20 06:24:59.387 2025-03-20 06:24:59.387 1000 FEE 436228 21131 \N \N 6044036 2025-03-20 06:24:59.387 2025-03-20 06:24:59.387 9000 TIP 436228 21062 \N \N 6044066 2025-03-20 06:27:27.146 2025-03-20 06:27:27.146 3000 FEE 436306 21379 \N \N 6044067 2025-03-20 06:27:27.146 2025-03-20 06:27:27.146 27000 TIP 436306 2326 \N \N 6044071 2025-03-20 06:28:04.299 2025-03-20 06:28:04.299 4000 FEE 436310 10719 \N \N 6044072 2025-03-20 06:28:04.299 2025-03-20 06:28:04.299 36000 TIP 436310 16042 \N \N 6044076 2025-03-20 06:28:50.065 2025-03-20 06:28:50.065 500 FEE 436208 14663 \N \N 6044077 2025-03-20 06:28:50.065 2025-03-20 06:28:50.065 4500 TIP 436208 1173 \N \N 6044102 2025-03-20 06:31:22.662 2025-03-20 06:31:22.662 7100 FEE 434469 15045 \N \N 6044103 2025-03-20 06:31:22.662 2025-03-20 06:31:22.662 63900 TIP 434469 19531 \N \N 6044110 2025-03-20 06:31:39.246 2025-03-20 06:31:39.246 5000 FEE 435924 6573 \N \N 6044111 2025-03-20 06:31:39.246 2025-03-20 06:31:39.246 45000 TIP 435924 16193 \N \N 6044169 2025-03-20 06:36:46.587 2025-03-20 06:36:46.587 5000 FEE 434183 14376 \N \N 6044170 2025-03-20 06:36:46.587 2025-03-20 06:36:46.587 45000 TIP 434183 2710 \N \N 6044200 2025-03-20 06:44:11.685 2025-03-20 06:44:11.685 2100 FEE 436061 2775 \N \N 6044201 2025-03-20 06:44:11.685 2025-03-20 06:44:11.685 18900 TIP 436061 17103 \N \N 6044211 2025-03-20 06:45:51.881 2025-03-20 06:45:51.881 100 FEE 436287 21088 \N \N 6044212 2025-03-20 06:45:51.881 2025-03-20 06:45:51.881 900 TIP 436287 1505 \N \N 6044221 2025-03-20 06:47:44.067 2025-03-20 06:47:44.067 100 FEE 436241 20220 \N \N 6044222 2025-03-20 06:47:44.067 2025-03-20 06:47:44.067 900 TIP 436241 21079 \N \N 6044228 2025-03-20 06:49:37.4 2025-03-20 06:49:37.4 1000 POLL 436323 628 \N \N 6044284 2025-03-20 06:53:46.526 2025-03-20 06:53:46.526 1000 FEE 436326 985 \N \N 6044285 2025-03-20 06:53:46.526 2025-03-20 06:53:46.526 9000 TIP 436326 21620 \N \N 6044304 2025-03-20 06:54:32.556 2025-03-20 06:54:32.556 1600 FEE 436332 8080 \N \N 6044305 2025-03-20 06:54:32.556 2025-03-20 06:54:32.556 14400 TIP 436332 21180 \N \N 6044317 2025-03-20 06:55:59.347 2025-03-20 06:55:59.347 3000 FEE 436329 21832 \N \N 6044318 2025-03-20 06:55:59.347 2025-03-20 06:55:59.347 27000 TIP 436329 18402 \N \N 6044329 2025-03-20 06:57:19.241 2025-03-20 06:57:19.241 1000 FEE 436337 21424 \N \N 6044373 2025-03-20 06:59:34.469 2025-03-20 06:59:34.469 4000 FEE 436258 1817 \N \N 6044374 2025-03-20 06:59:34.469 2025-03-20 06:59:34.469 36000 TIP 436258 18017 \N \N 6044401 2025-03-20 07:01:20.195 2025-03-20 07:01:20.195 1000 FEE 435063 1801 \N \N 6044402 2025-03-20 07:01:20.195 2025-03-20 07:01:20.195 9000 TIP 435063 20353 \N \N 6044428 2025-03-20 07:02:07.211 2025-03-20 07:02:07.211 3000 FEE 435756 21522 \N \N 6044429 2025-03-20 07:02:07.211 2025-03-20 07:02:07.211 27000 TIP 435756 2724 \N \N 6155429 2025-03-29 08:39:14.733 2025-03-29 08:39:14.733 2100 FEE 448367 650 \N \N 6155430 2025-03-29 08:39:14.733 2025-03-29 08:39:14.733 18900 TIP 448367 8289 \N \N 6155437 2025-03-29 08:39:16.94 2025-03-29 08:39:16.94 2100 FEE 448373 19888 \N \N 6155438 2025-03-29 08:39:16.94 2025-03-29 08:39:16.94 18900 TIP 448373 5806 \N \N 6155458 2025-03-29 08:40:14.297 2025-03-29 08:40:14.297 1000000 DONT_LIKE_THIS 448331 876 \N \N 6155520 2025-03-29 08:43:48.201 2025-03-29 08:43:48.201 5000 FEE 448353 16816 \N \N 6155521 2025-03-29 08:43:48.201 2025-03-29 08:43:48.201 45000 TIP 448353 656 \N \N 6155544 2025-03-29 08:44:37.595 2025-03-29 08:44:37.595 2100 FEE 445222 19829 \N \N 6155545 2025-03-29 08:44:37.595 2025-03-29 08:44:37.595 18900 TIP 445222 16356 \N \N 6155569 2025-03-29 08:46:10.894 2025-03-29 08:46:10.894 5000 FEE 448372 20998 \N \N 6155570 2025-03-29 08:46:10.894 2025-03-29 08:46:10.894 45000 TIP 448372 673 \N \N 6155574 2025-03-29 08:46:36.8 2025-03-29 08:46:36.8 12100 FEE 448402 14465 \N \N 6155575 2025-03-29 08:46:36.8 2025-03-29 08:46:36.8 108900 TIP 448402 21041 \N \N 6155576 2025-03-29 08:46:55.466 2025-03-29 08:46:55.466 1000 FEE 448029 21541 \N \N 6155577 2025-03-29 08:46:55.466 2025-03-29 08:46:55.466 9000 TIP 448029 20710 \N \N 6155614 2025-03-29 08:51:13.691 2025-03-29 08:51:13.691 2100 FEE 448408 14939 \N \N 6155615 2025-03-29 08:51:13.691 2025-03-29 08:51:13.691 18900 TIP 448408 20597 \N \N 6155626 2025-03-29 08:53:08.298 2025-03-29 08:53:08.298 100 FEE 448263 17494 \N \N 6155627 2025-03-29 08:53:08.298 2025-03-29 08:53:08.298 900 TIP 448263 15147 \N \N 6155679 2025-03-29 08:57:21.785 2025-03-29 08:57:21.785 5000 FEE 448313 2111 \N \N 6155680 2025-03-29 08:57:21.785 2025-03-29 08:57:21.785 45000 TIP 448313 18005 \N \N 6155688 2025-03-29 08:58:50.288 2025-03-29 08:58:50.288 1000 FEE 448425 16042 \N \N 6155762 2025-03-29 09:07:21.234 2025-03-29 09:07:21.234 2100 FEE 448433 16282 \N \N 6155763 2025-03-29 09:07:21.234 2025-03-29 09:07:21.234 18900 TIP 448433 6229 \N \N 6155770 2025-03-29 09:07:28.994 2025-03-29 09:07:28.994 1000 FEE 448443 16594 \N \N 6155805 2025-03-29 09:08:58.265 2025-03-29 09:08:58.265 2100 FEE 448293 21666 \N \N 6155806 2025-03-29 09:08:58.265 2025-03-29 09:08:58.265 18900 TIP 448293 18321 \N \N 6155825 2025-03-29 09:09:16.642 2025-03-29 09:09:16.642 1000 FEE 448449 18426 \N \N 6155840 2025-03-29 09:09:23.763 2025-03-29 09:09:23.763 1000 FEE 448385 1038 \N \N 6155841 2025-03-29 09:09:23.763 2025-03-29 09:09:23.763 9000 TIP 448385 681 \N \N 6155865 2025-03-29 09:09:49.651 2025-03-29 09:09:49.651 1000 FEE 448452 1552 \N \N 6155875 2025-03-29 09:10:45.385 2025-03-29 09:10:45.385 1000 FEE 448349 7913 \N \N 6155876 2025-03-29 09:10:45.385 2025-03-29 09:10:45.385 9000 TIP 448349 5752 \N \N 6155885 2025-03-29 09:11:02.387 2025-03-29 09:11:02.387 0 FEE 448446 17535 \N \N 6155903 2025-03-29 09:15:03.256 2025-03-29 09:15:03.256 1000 FEE 448385 15243 \N \N 6155904 2025-03-29 09:15:03.256 2025-03-29 09:15:03.256 9000 TIP 448385 21672 \N \N 6155950 2025-03-29 09:18:23.18 2025-03-29 09:18:23.18 1000 FEE 448200 18069 \N \N 6155951 2025-03-29 09:18:23.18 2025-03-29 09:18:23.18 9000 TIP 448200 1245 \N \N 6155956 2025-03-29 09:18:30.013 2025-03-29 09:18:30.013 1000 FEE 448073 954 \N \N 6155957 2025-03-29 09:18:30.013 2025-03-29 09:18:30.013 9000 TIP 448073 1401 \N \N 6043403 2025-03-20 05:18:18.339 2025-03-20 05:18:18.339 2100 FEE 435847 4388 \N \N 6043404 2025-03-20 05:18:18.339 2025-03-20 05:18:18.339 18900 TIP 435847 19980 \N \N 6043411 2025-03-20 05:21:40.803 2025-03-20 05:21:40.803 1000 FEE 436232 14909 \N \N 6043434 2025-03-20 05:27:07.5 2025-03-20 05:27:07.5 200 FEE 436153 14472 \N \N 6043435 2025-03-20 05:27:07.5 2025-03-20 05:27:07.5 1800 TIP 436153 1411 \N \N 6043441 2025-03-20 05:27:52.006 2025-03-20 05:27:52.006 4000 FEE 436231 20613 \N \N 6043442 2025-03-20 05:27:52.006 2025-03-20 05:27:52.006 36000 TIP 436231 2775 \N \N 6043448 2025-03-20 05:29:02.297 2025-03-20 05:29:02.297 1000 FEE 436239 9183 \N \N 6043482 2025-03-20 05:31:49.427 2025-03-20 05:31:49.427 2100 FEE 436233 2519 \N \N 6043483 2025-03-20 05:31:49.427 2025-03-20 05:31:49.427 18900 TIP 436233 14489 \N \N 6043489 2025-03-20 05:31:52.919 2025-03-20 05:31:52.919 2100 FEE 436195 787 \N \N 6043490 2025-03-20 05:31:52.919 2025-03-20 05:31:52.919 18900 TIP 436195 708 \N \N 6043509 2025-03-20 05:32:15.828 2025-03-20 05:32:15.828 8300 FEE 435847 1650 \N \N 6043510 2025-03-20 05:32:15.828 2025-03-20 05:32:15.828 74700 TIP 435847 21620 \N \N 6043537 2025-03-20 05:32:19.045 2025-03-20 05:32:19.045 8300 FEE 435847 15544 \N \N 6043538 2025-03-20 05:32:19.045 2025-03-20 05:32:19.045 74700 TIP 435847 17147 \N \N 6043547 2025-03-20 05:32:19.817 2025-03-20 05:32:19.817 8300 FEE 435847 18525 \N \N 6043548 2025-03-20 05:32:19.817 2025-03-20 05:32:19.817 74700 TIP 435847 21416 \N \N 6043558 2025-03-20 05:32:50.676 2025-03-20 05:32:50.676 1100 FEE 436243 19905 \N \N 6043559 2025-03-20 05:32:50.676 2025-03-20 05:32:50.676 9900 TIP 436243 17708 \N \N 6043568 2025-03-20 05:32:53.333 2025-03-20 05:32:53.333 500 FEE 436241 631 \N \N 6043569 2025-03-20 05:32:53.333 2025-03-20 05:32:53.333 4500 TIP 436241 1261 \N \N 6043570 2025-03-20 05:32:54.317 2025-03-20 05:32:54.317 0 FEE 436246 19005 \N \N 6043588 2025-03-20 05:34:16.833 2025-03-20 05:34:16.833 0 FEE 436246 2285 \N \N 6043595 2025-03-20 05:35:24.151 2025-03-20 05:35:24.151 1000 FEE 436106 19403 \N \N 6043596 2025-03-20 05:35:24.151 2025-03-20 05:35:24.151 9000 TIP 436106 11829 \N \N 6043599 2025-03-20 05:35:36.871 2025-03-20 05:35:36.871 4200 FEE 436158 1060 \N \N 6043600 2025-03-20 05:35:36.871 2025-03-20 05:35:36.871 37800 TIP 436158 17535 \N \N 6043609 2025-03-20 05:36:52.344 2025-03-20 05:36:52.344 0 FEE 436243 21079 \N \N 6043614 2025-03-20 05:37:36.141 2025-03-20 05:37:36.141 3400 FEE 436062 2367 \N \N 6043615 2025-03-20 05:37:36.141 2025-03-20 05:37:36.141 30600 TIP 436062 16336 \N \N 6043617 2025-03-20 05:38:10.954 2025-03-20 05:38:10.954 1000 FEE 436138 21247 \N \N 6043618 2025-03-20 05:38:10.954 2025-03-20 05:38:10.954 9000 TIP 436138 20523 \N \N 6043661 2025-03-20 05:40:22.414 2025-03-20 05:40:22.414 1000 FEE 436259 11240 \N \N 6043664 2025-03-20 05:40:37.706 2025-03-20 05:40:37.706 8300 FEE 435905 9438 \N \N 6043665 2025-03-20 05:40:37.706 2025-03-20 05:40:37.706 74700 TIP 435905 21070 \N \N 6043668 2025-03-20 05:40:37.984 2025-03-20 05:40:37.984 8300 FEE 435905 6765 \N \N 6043669 2025-03-20 05:40:37.984 2025-03-20 05:40:37.984 74700 TIP 435905 12768 \N \N 6043687 2025-03-20 05:42:38.916 2025-03-20 05:42:38.916 500 FEE 436246 12965 \N \N 6043688 2025-03-20 05:42:38.916 2025-03-20 05:42:38.916 4500 TIP 436246 11091 \N \N 6043693 2025-03-20 05:44:08.249 2025-03-20 05:44:08.249 6400 FEE 436207 21485 \N \N 6043694 2025-03-20 05:44:08.249 2025-03-20 05:44:08.249 57600 TIP 436207 16214 \N \N 6043711 2025-03-20 05:45:44.31 2025-03-20 05:45:44.31 900 FEE 436235 16296 \N \N 6043712 2025-03-20 05:45:44.31 2025-03-20 05:45:44.31 8100 TIP 436235 15239 \N \N 6043765 2025-03-20 05:49:32.1 2025-03-20 05:49:32.1 2100 FEE 436261 11328 \N \N 6043766 2025-03-20 05:49:32.1 2025-03-20 05:49:32.1 18900 TIP 436261 891 \N \N 6043785 2025-03-20 05:51:00.836 2025-03-20 05:51:00.836 1000 FEE 435929 1411 \N \N 6043786 2025-03-20 05:51:00.836 2025-03-20 05:51:00.836 9000 TIP 435929 18368 \N \N 6043799 2025-03-20 05:52:26.686 2025-03-20 05:52:26.686 2800 FEE 436261 679 \N \N 6043800 2025-03-20 05:52:26.686 2025-03-20 05:52:26.686 25200 TIP 436261 6202 \N \N 6043853 2025-03-20 05:57:48.665 2025-03-20 05:57:48.665 2000 FEE 435905 16351 \N \N 6043854 2025-03-20 05:57:48.665 2025-03-20 05:57:48.665 18000 TIP 435905 20602 \N \N 6043887 2025-03-20 06:06:10.491 2025-03-20 06:06:10.491 10000 FEE 435847 19375 \N \N 6043888 2025-03-20 06:06:10.491 2025-03-20 06:06:10.491 90000 TIP 435847 8506 \N \N 6043904 2025-03-20 06:06:15.998 2025-03-20 06:06:15.998 1100 FEE 436136 11018 \N \N 6043905 2025-03-20 06:06:15.998 2025-03-20 06:06:15.998 9900 TIP 436136 635 \N \N 6043906 2025-03-20 06:06:16.191 2025-03-20 06:06:16.191 1100 FEE 436136 21166 \N \N 6043907 2025-03-20 06:06:16.191 2025-03-20 06:06:16.191 9900 TIP 436136 917 \N \N 6043975 2025-03-20 06:17:06.221 2025-03-20 06:17:06.221 1000 FEE 436296 17291 \N \N 6043982 2025-03-20 06:18:16.997 2025-03-20 06:18:16.997 1000 FEE 436297 6148 \N \N 6044018 2025-03-20 06:22:40.274 2025-03-20 06:22:40.274 0 FEE 436300 13399 \N \N 6044041 2025-03-20 06:25:26.65 2025-03-20 06:25:26.65 1000 FEE 436308 9337 \N \N 6044042 2025-03-20 06:25:27.308 2025-03-20 06:25:27.308 2100 FEE 436306 18529 \N \N 6044043 2025-03-20 06:25:27.308 2025-03-20 06:25:27.308 18900 TIP 436306 16353 \N \N 6044046 2025-03-20 06:26:40.385 2025-03-20 06:26:40.385 100 FEE 436290 5308 \N \N 6044047 2025-03-20 06:26:40.385 2025-03-20 06:26:40.385 900 TIP 436290 1000 \N \N 6044083 2025-03-20 06:29:45.793 2025-03-20 06:29:45.793 4000 FEE 436273 624 \N \N 6044084 2025-03-20 06:29:45.793 2025-03-20 06:29:45.793 36000 TIP 436273 13055 \N \N 6044106 2025-03-20 06:31:29.335 2025-03-20 06:31:29.335 7100 FEE 433978 9378 \N \N 6044107 2025-03-20 06:31:29.335 2025-03-20 06:31:29.335 63900 TIP 433978 10007 \N \N 6044128 2025-03-20 06:32:44.397 2025-03-20 06:32:44.397 1000 FEE 435947 946 \N \N 6044129 2025-03-20 06:32:44.397 2025-03-20 06:32:44.397 9000 TIP 435947 12609 \N \N 6044143 2025-03-20 06:33:02.413 2025-03-20 06:33:02.413 1000 FEE 436197 714 \N \N 6044144 2025-03-20 06:33:02.413 2025-03-20 06:33:02.413 9000 TIP 436197 19857 \N \N 6044158 2025-03-20 06:35:15.079 2025-03-20 06:35:15.079 21000 FEE 436319 9036 \N \N 6044164 2025-03-20 06:36:23.894 2025-03-20 06:36:23.894 1000 FEE 436320 19663 \N \N 6044174 2025-03-20 06:38:11.215 2025-03-20 06:38:11.215 5000 FEE 434046 16638 \N \N 6044175 2025-03-20 06:38:11.215 2025-03-20 06:38:11.215 45000 TIP 434046 1495 \N \N 6044189 2025-03-20 06:39:36.78 2025-03-20 06:39:36.78 1000 FEE 436324 3979 \N \N 6044226 2025-03-20 06:48:51.779 2025-03-20 06:48:51.779 1000 POLL 436036 1519 \N \N 6044245 2025-03-20 06:51:03.16 2025-03-20 06:51:03.16 1000 FEE 436327 1761 \N \N 6044257 2025-03-20 06:53:36.967 2025-03-20 06:53:36.967 1000 FEE 436332 15703 \N \N 6044260 2025-03-20 06:53:43.708 2025-03-20 06:53:43.708 1000 FEE 436326 19018 \N \N 6044261 2025-03-20 06:53:43.708 2025-03-20 06:53:43.708 9000 TIP 436326 1825 \N \N 6044292 2025-03-20 06:53:56.546 2025-03-20 06:53:56.546 8300 FEE 436246 7659 \N \N 6112671 2025-03-26 05:04:16.948 2025-03-26 05:04:16.948 1000 FEE 443508 12749 \N \N 6112720 2025-03-26 05:11:48.361 2025-03-26 05:11:48.361 1000 FEE 443519 20099 \N \N 6112742 2025-03-26 05:15:58.816 2025-03-26 05:15:58.816 1000 FEE 443525 2528 \N \N 6112761 2025-03-26 05:17:56.604 2025-03-26 05:17:56.604 1000 FEE 443527 13132 \N \N 6112771 2025-03-26 05:20:47.653 2025-03-26 05:20:47.653 0 FEE 443531 12291 \N \N 6112777 2025-03-26 05:21:24.317 2025-03-26 05:21:24.317 0 FEE 443526 17714 \N \N 6112779 2025-03-26 05:21:49.124 2025-03-26 05:21:49.124 0 FEE 443535 9275 \N \N 6112781 2025-03-26 05:22:18.256 2025-03-26 05:22:18.256 2800 FEE 443533 9331 \N \N 6112782 2025-03-26 05:22:18.256 2025-03-26 05:22:18.256 25200 TIP 443533 19292 \N \N 6144191 2025-03-28 11:27:03.865 2025-03-28 11:27:03.865 1100 FEE 447065 11938 \N \N 6144192 2025-03-28 11:27:03.865 2025-03-28 11:27:03.865 9900 TIP 447065 14225 \N \N 6144289 2025-03-28 11:44:24.356 2025-03-28 11:44:24.356 0 FEE 447263 20377 \N \N 6144296 2025-03-28 11:45:06.102 2025-03-28 11:45:06.102 3300 FEE 446937 1769 \N \N 6144297 2025-03-28 11:45:06.102 2025-03-28 11:45:06.102 29700 TIP 446937 10302 \N \N 6144299 2025-03-28 11:45:14.347 2025-03-28 11:45:14.347 2100 FEE 447241 11515 \N \N 6144300 2025-03-28 11:45:14.347 2025-03-28 11:45:14.347 18900 TIP 447241 19570 \N \N 6144309 2025-03-28 11:46:37.797 2025-03-28 11:46:37.797 10000 FEE 442313 825 \N \N 6144310 2025-03-28 11:46:37.797 2025-03-28 11:46:37.797 90000 TIP 442313 6335 \N \N 6144311 2025-03-28 11:47:09.975 2025-03-28 11:47:09.975 1000 FEE 447267 16754 \N \N 6144318 2025-03-28 11:47:15.811 2025-03-28 11:47:15.811 1000 FEE 447269 19121 \N \N 6144339 2025-03-28 11:47:58.703 2025-03-28 11:47:58.703 1100 FEE 446814 635 \N \N 6144340 2025-03-28 11:47:58.703 2025-03-28 11:47:58.703 9900 TIP 446814 21332 \N \N 6144363 2025-03-28 11:50:11.467 2025-03-28 11:50:11.467 1000 FEE 447274 17316 \N \N 6144369 2025-03-28 11:50:35.755 2025-03-28 11:50:35.755 2100 FEE 446780 16351 \N \N 6144370 2025-03-28 11:50:35.755 2025-03-28 11:50:35.755 18900 TIP 446780 1726 \N \N 6144377 2025-03-28 11:50:49.542 2025-03-28 11:50:49.542 2100 FEE 446628 21159 \N \N 6144378 2025-03-28 11:50:49.542 2025-03-28 11:50:49.542 18900 TIP 446628 640 \N \N 6144385 2025-03-28 11:50:54.254 2025-03-28 11:50:54.254 2100 FEE 446602 21771 \N \N 6144386 2025-03-28 11:50:54.254 2025-03-28 11:50:54.254 18900 TIP 446602 18608 \N \N 6144404 2025-03-28 11:53:32.541 2025-03-28 11:53:32.541 1000 FEE 447277 14663 \N \N 6144415 2025-03-28 11:56:56.565 2025-03-28 11:56:56.565 1000 POLL 446942 10273 \N \N 6144477 2025-03-28 12:03:46.035 2025-03-28 12:03:46.035 1000 FEE 447288 4459 \N \N 6144478 2025-03-28 12:03:46.035 2025-03-28 12:03:46.035 9000 TIP 447288 703 \N \N 6144483 2025-03-28 12:03:48.342 2025-03-28 12:03:48.342 1000 FEE 447289 19996 \N \N 6144514 2025-03-28 12:07:14.675 2025-03-28 12:07:14.675 7600 FEE 447277 1483 \N \N 6144515 2025-03-28 12:07:14.675 2025-03-28 12:07:14.675 68400 TIP 447277 20681 \N \N 6144554 2025-03-28 12:09:50.341 2025-03-28 12:09:50.341 7600 FEE 447288 11716 \N \N 6144555 2025-03-28 12:09:50.341 2025-03-28 12:09:50.341 68400 TIP 447288 6471 \N \N 6144561 2025-03-28 12:11:06.332 2025-03-28 12:11:06.332 3300 FEE 447251 5497 \N \N 6144562 2025-03-28 12:11:06.332 2025-03-28 12:11:06.332 29700 TIP 447251 21406 \N \N 6144586 2025-03-28 12:13:07.514 2025-03-28 12:13:07.514 1000 FEE 447120 10554 \N \N 6144587 2025-03-28 12:13:07.514 2025-03-28 12:13:07.514 9000 TIP 447120 17103 \N \N 6144618 2025-03-28 12:16:31.964 2025-03-28 12:16:31.964 3000 FEE 447300 749 \N \N 6144619 2025-03-28 12:16:31.964 2025-03-28 12:16:31.964 27000 TIP 447300 21166 \N \N 6144659 2025-03-28 12:21:30.989 2025-03-28 12:21:30.989 1000 FEE 447305 964 \N \N 6144660 2025-03-28 12:21:30.989 2025-03-28 12:21:30.989 9000 TIP 447305 4074 \N \N 6144669 2025-03-28 12:22:22.965 2025-03-28 12:22:22.965 100 FEE 447189 10393 \N \N 6144670 2025-03-28 12:22:22.965 2025-03-28 12:22:22.965 900 TIP 447189 3371 \N \N 6144673 2025-03-28 12:22:34.15 2025-03-28 12:22:34.15 4200 FEE 447264 21072 \N \N 6144674 2025-03-28 12:22:34.15 2025-03-28 12:22:34.15 37800 TIP 447264 8796 \N \N 6144687 2025-03-28 12:22:43.49 2025-03-28 12:22:43.49 2100 FEE 447251 19016 \N \N 6144688 2025-03-28 12:22:43.49 2025-03-28 12:22:43.49 18900 TIP 447251 21810 \N \N 6144698 2025-03-28 12:23:33.506 2025-03-28 12:23:33.506 2100 FEE 446301 993 \N \N 6144699 2025-03-28 12:23:33.506 2025-03-28 12:23:33.506 18900 TIP 446301 20201 \N \N 6144704 2025-03-28 12:23:34.036 2025-03-28 12:23:34.036 2100 FEE 446301 6717 \N \N 6144705 2025-03-28 12:23:34.036 2025-03-28 12:23:34.036 18900 TIP 446301 9332 \N \N 6144711 2025-03-28 12:24:31.816 2025-03-28 12:24:31.816 2100 FEE 446602 7185 \N \N 6144712 2025-03-28 12:24:31.816 2025-03-28 12:24:31.816 18900 TIP 446602 21064 \N \N 6144717 2025-03-28 12:24:38.66 2025-03-28 12:24:38.66 2100 FEE 447143 21119 \N \N 6144718 2025-03-28 12:24:38.66 2025-03-28 12:24:38.66 18900 TIP 447143 20555 \N \N 6144731 2025-03-28 12:24:52.584 2025-03-28 12:24:52.584 2100 FEE 446774 18829 \N \N 6144732 2025-03-28 12:24:52.584 2025-03-28 12:24:52.584 18900 TIP 446774 16354 \N \N 6144735 2025-03-28 12:24:54.17 2025-03-28 12:24:54.17 1000 FEE 447310 12507 \N \N 6144740 2025-03-28 12:25:01.352 2025-03-28 12:25:01.352 1000 FEE 446937 13042 \N \N 6144741 2025-03-28 12:25:01.352 2025-03-28 12:25:01.352 9000 TIP 446937 15282 \N \N 6144776 2025-03-28 12:26:46.446 2025-03-28 12:26:46.446 1000 FEE 447241 16965 \N \N 6144777 2025-03-28 12:26:46.446 2025-03-28 12:26:46.446 9000 TIP 447241 9916 \N \N 6144784 2025-03-28 12:26:51.921 2025-03-28 12:26:51.921 2100 FEE 446697 21041 \N \N 6144785 2025-03-28 12:26:51.921 2025-03-28 12:26:51.921 18900 TIP 446697 9290 \N \N 6144790 2025-03-28 12:26:52.434 2025-03-28 12:26:52.434 2100 FEE 446697 16942 \N \N 6144791 2025-03-28 12:26:52.434 2025-03-28 12:26:52.434 18900 TIP 446697 4388 \N \N 6144794 2025-03-28 12:26:52.768 2025-03-28 12:26:52.768 2100 FEE 446697 14663 \N \N 6144795 2025-03-28 12:26:52.768 2025-03-28 12:26:52.768 18900 TIP 446697 7510 \N \N 6144801 2025-03-28 12:27:15.48 2025-03-28 12:27:15.48 2100 FEE 446628 1114 \N \N 6144802 2025-03-28 12:27:15.48 2025-03-28 12:27:15.48 18900 TIP 446628 19126 \N \N 6144807 2025-03-28 12:27:16.687 2025-03-28 12:27:16.687 2100 FEE 446628 1272 \N \N 6144808 2025-03-28 12:27:16.687 2025-03-28 12:27:16.687 18900 TIP 446628 10611 \N \N 6144811 2025-03-28 12:28:27.222 2025-03-28 12:28:27.222 2100 FEE 447221 1817 \N \N 6144812 2025-03-28 12:28:27.222 2025-03-28 12:28:27.222 18900 TIP 447221 11678 \N \N 6144821 2025-03-28 12:28:33.394 2025-03-28 12:28:33.394 100 FEE 447235 20353 \N \N 6144822 2025-03-28 12:28:33.394 2025-03-28 12:28:33.394 900 TIP 447235 18608 \N \N 6144827 2025-03-28 12:28:35.473 2025-03-28 12:28:35.473 100 FEE 447299 1881 \N \N 6144828 2025-03-28 12:28:35.473 2025-03-28 12:28:35.473 900 TIP 447299 1959 \N \N 6144844 2025-03-28 12:29:23.54 2025-03-28 12:29:23.54 2100 FEE 445505 1319 \N \N 6144845 2025-03-28 12:29:23.54 2025-03-28 12:29:23.54 18900 TIP 445505 10102 \N \N 6144862 2025-03-28 12:31:41.872 2025-03-28 12:31:41.872 1000 FEE 447314 15588 \N \N 6144863 2025-03-28 12:31:54.379 2025-03-28 12:31:54.379 10000 FEE 447311 5597 \N \N 6144864 2025-03-28 12:31:54.379 2025-03-28 12:31:54.379 90000 TIP 447311 940 \N \N 6144866 2025-03-28 12:32:13.804 2025-03-28 12:32:13.804 1000 FEE 447313 18734 \N \N 6144867 2025-03-28 12:32:13.804 2025-03-28 12:32:13.804 9000 TIP 447313 19826 \N \N 6144881 2025-03-28 12:33:30.986 2025-03-28 12:33:30.986 2100 FEE 447132 21685 \N \N 6144882 2025-03-28 12:33:30.986 2025-03-28 12:33:30.986 18900 TIP 447132 1130 \N \N 6144903 2025-03-28 12:35:35.8 2025-03-28 12:35:35.8 1000 FEE 446526 9350 \N \N 6159009 2025-03-29 15:16:29.359 2025-03-29 15:16:29.359 900 FEE 448349 19199 \N \N 6159010 2025-03-29 15:16:29.359 2025-03-29 15:16:29.359 8100 TIP 448349 20205 \N \N 6159028 2025-03-29 15:20:15.471 2025-03-29 15:20:15.471 900 FEE 448796 21797 \N \N 6159029 2025-03-29 15:20:15.471 2025-03-29 15:20:15.471 8100 TIP 448796 14910 \N \N 6159034 2025-03-29 15:21:29.647 2025-03-29 15:21:29.647 2500 FEE 448035 7389 \N \N 6159035 2025-03-29 15:21:29.647 2025-03-29 15:21:29.647 22500 TIP 448035 21047 \N \N 6159056 2025-03-29 15:26:52.78 2025-03-29 15:26:52.78 2100 FEE 448778 10719 \N \N 6159057 2025-03-29 15:26:52.78 2025-03-29 15:26:52.78 18900 TIP 448778 3417 \N \N 6159060 2025-03-29 15:27:02.406 2025-03-29 15:27:02.406 900 FEE 448805 21248 \N \N 6159061 2025-03-29 15:27:02.406 2025-03-29 15:27:02.406 8100 TIP 448805 15925 \N \N 6159062 2025-03-29 15:27:02.94 2025-03-29 15:27:02.94 9000 FEE 448805 695 \N \N 6159063 2025-03-29 15:27:02.94 2025-03-29 15:27:02.94 81000 TIP 448805 1814 \N \N 6159082 2025-03-29 15:29:11.091 2025-03-29 15:29:11.091 1000 POLL 448029 16387 \N \N 6159085 2025-03-29 15:29:53.688 2025-03-29 15:29:53.688 100 FEE 448725 1658 \N \N 6159086 2025-03-29 15:29:53.688 2025-03-29 15:29:53.688 900 TIP 448725 19906 \N \N 6159097 2025-03-29 15:34:06.454 2025-03-29 15:34:06.454 800 FEE 448790 13216 \N \N 6159098 2025-03-29 15:34:06.454 2025-03-29 15:34:06.454 7200 TIP 448790 13174 \N \N 6159105 2025-03-29 15:35:23.808 2025-03-29 15:35:23.808 1000 FEE 448815 17535 \N \N 6159123 2025-03-29 15:38:59.882 2025-03-29 15:38:59.882 1000 FEE 448790 17798 \N \N 6159124 2025-03-29 15:38:59.882 2025-03-29 15:38:59.882 9000 TIP 448790 19346 \N \N 6159127 2025-03-29 15:39:10.295 2025-03-29 15:39:10.295 7700 FEE 448691 4345 \N \N 6159128 2025-03-29 15:39:10.295 2025-03-29 15:39:10.295 69300 TIP 448691 9329 \N \N 6159153 2025-03-29 15:40:34.115 2025-03-29 15:40:34.115 2100 FEE 448817 5942 \N \N 6159154 2025-03-29 15:40:34.115 2025-03-29 15:40:34.115 18900 TIP 448817 12738 \N \N 6159178 2025-03-29 15:47:28.581 2025-03-29 15:47:28.581 7700 FEE 448817 18271 \N \N 6159179 2025-03-29 15:47:28.581 2025-03-29 15:47:28.581 69300 TIP 448817 4973 \N \N 6159217 2025-03-29 15:56:58.674 2025-03-29 15:56:58.674 2100 FEE 448802 3417 \N \N 6159218 2025-03-29 15:56:58.674 2025-03-29 15:56:58.674 18900 TIP 448802 7772 \N \N 6159231 2025-03-29 15:57:58.369 2025-03-29 15:57:58.369 2100 FEE 447841 18717 \N \N 6159232 2025-03-29 15:57:58.369 2025-03-29 15:57:58.369 18900 TIP 447841 1720 \N \N 6159251 2025-03-29 15:58:19.653 2025-03-29 15:58:19.653 2100 FEE 448778 21136 \N \N 6159252 2025-03-29 15:58:19.653 2025-03-29 15:58:19.653 18900 TIP 448778 21600 \N \N 6159253 2025-03-29 15:58:20.297 2025-03-29 15:58:20.297 2100 FEE 448778 17046 \N \N 6159254 2025-03-29 15:58:20.297 2025-03-29 15:58:20.297 18900 TIP 448778 15367 \N \N 6159257 2025-03-29 15:58:26.155 2025-03-29 15:58:26.155 1700 FEE 448802 21020 \N \N 6159258 2025-03-29 15:58:26.155 2025-03-29 15:58:26.155 15300 TIP 448802 20254 \N \N 6159259 2025-03-29 15:58:26.31 2025-03-29 15:58:26.31 1700 FEE 448802 9796 \N \N 6159260 2025-03-29 15:58:26.31 2025-03-29 15:58:26.31 15300 TIP 448802 2022 \N \N 6159263 2025-03-29 15:58:26.711 2025-03-29 15:58:26.711 1700 FEE 448802 14213 \N \N 6159264 2025-03-29 15:58:26.711 2025-03-29 15:58:26.711 15300 TIP 448802 21067 \N \N 6159282 2025-03-29 15:59:00.967 2025-03-29 15:59:00.967 2100 FEE 448621 10731 \N \N 6159283 2025-03-29 15:59:00.967 2025-03-29 15:59:00.967 18900 TIP 448621 5527 \N \N 6161306 2025-03-29 20:20:51.139 2025-03-29 20:20:51.139 2500 FEE 447960 21520 \N \N 6161307 2025-03-29 20:20:51.139 2025-03-29 20:20:51.139 22500 TIP 447960 7425 \N \N 6161322 2025-03-29 20:21:20.377 2025-03-29 20:21:20.377 2500 FEE 448199 20680 \N \N 6161323 2025-03-29 20:21:20.377 2025-03-29 20:21:20.377 22500 TIP 448199 21239 \N \N 6161329 2025-03-29 20:22:08.803 2025-03-29 20:22:08.803 1000 FEE 448817 1064 \N \N 6161330 2025-03-29 20:22:08.803 2025-03-29 20:22:08.803 9000 TIP 448817 3371 \N \N 6161361 2025-03-29 20:29:04.475 2025-03-29 20:29:04.475 12100 FEE 448953 633 \N \N 6161362 2025-03-29 20:29:04.475 2025-03-29 20:29:04.475 108900 TIP 448953 617 \N \N 6161388 2025-03-29 20:38:39.526 2025-03-29 20:38:39.526 1000 FEE 448904 18529 \N \N 6161389 2025-03-29 20:38:39.526 2025-03-29 20:38:39.526 9000 TIP 448904 5427 \N \N 6161412 2025-03-29 20:50:20.945 2025-03-29 20:50:20.945 1000 FEE 448975 9450 \N \N 6161420 2025-03-29 20:54:40.829 2025-03-29 20:54:40.829 2500 FEE 448817 4259 \N \N 6161421 2025-03-29 20:54:40.829 2025-03-29 20:54:40.829 22500 TIP 448817 10280 \N \N 6161429 2025-03-29 20:58:26.349 2025-03-29 20:58:26.349 1000000 DONT_LIKE_THIS 448918 8945 \N \N 6161444 2025-03-29 20:59:11.119 2025-03-29 20:59:11.119 900 FEE 448888 8416 \N \N 6161445 2025-03-29 20:59:11.119 2025-03-29 20:59:11.119 8100 TIP 448888 9362 \N \N 6161446 2025-03-29 20:59:11.376 2025-03-29 20:59:11.376 1000 FEE 448979 5427 \N \N 6161450 2025-03-29 20:59:15.614 2025-03-29 20:59:15.614 90000 FEE 448888 12959 \N \N 6161451 2025-03-29 20:59:15.614 2025-03-29 20:59:15.614 810000 TIP 448888 16145 \N \N 6161452 2025-03-29 20:59:21.754 2025-03-29 20:59:21.754 3000 FEE 441259 9334 \N \N 6161453 2025-03-29 20:59:21.754 2025-03-29 20:59:21.754 27000 TIP 441259 21212 \N \N 6161454 2025-03-29 20:59:23.704 2025-03-29 20:59:23.704 100 FEE 448894 16667 \N \N 6161455 2025-03-29 20:59:23.704 2025-03-29 20:59:23.704 900 TIP 448894 929 \N \N 6161456 2025-03-29 20:59:23.717 2025-03-29 20:59:23.717 900 FEE 448894 19569 \N \N 6161457 2025-03-29 20:59:23.717 2025-03-29 20:59:23.717 8100 TIP 448894 9551 \N \N 6161458 2025-03-29 20:59:25.809 2025-03-29 20:59:25.809 9000 FEE 448894 4862 \N \N 6161459 2025-03-29 20:59:25.809 2025-03-29 20:59:25.809 81000 TIP 448894 21314 \N \N 6161460 2025-03-29 20:59:41.857 2025-03-29 20:59:41.857 2100 FEE 448962 1806 \N \N 6161461 2025-03-29 20:59:41.857 2025-03-29 20:59:41.857 18900 TIP 448962 1428 \N \N 6043801 2025-03-20 05:52:27.849 2025-03-20 05:52:27.849 2100 FEE 436100 844 \N \N 6043802 2025-03-20 05:52:27.849 2025-03-20 05:52:27.849 18900 TIP 436100 3979 \N \N 6043805 2025-03-20 05:52:50.317 2025-03-20 05:52:50.317 2100 FEE 436061 14552 \N \N 6043806 2025-03-20 05:52:50.317 2025-03-20 05:52:50.317 18900 TIP 436061 17331 \N \N 6043816 2025-03-20 05:53:10.835 2025-03-20 05:53:10.835 1000 FEE 436101 6137 \N \N 6043817 2025-03-20 05:53:10.835 2025-03-20 05:53:10.835 9000 TIP 436101 13042 \N \N 6043846 2025-03-20 05:56:30.632 2025-03-20 05:56:30.632 500 FEE 435944 6578 \N \N 6043847 2025-03-20 05:56:30.632 2025-03-20 05:56:30.632 4500 TIP 435944 11018 \N \N 6043852 2025-03-20 05:57:22.557 2025-03-20 05:57:22.557 1000 FEE 436276 18923 \N \N 6043902 2025-03-20 06:06:15.744 2025-03-20 06:06:15.744 1100 FEE 436197 21216 \N \N 6043903 2025-03-20 06:06:15.744 2025-03-20 06:06:15.744 9900 TIP 436197 21670 \N \N 6043934 2025-03-20 06:10:39.805 2025-03-20 06:10:39.805 2100 FEE 436211 2176 \N \N 6043935 2025-03-20 06:10:39.805 2025-03-20 06:10:39.805 18900 TIP 436211 1478 \N \N 6043965 2025-03-20 06:15:48.332 2025-03-20 06:15:48.332 1000 FEE 436293 3371 \N \N 6043972 2025-03-20 06:16:34.469 2025-03-20 06:16:34.469 10000 FEE 436174 675 \N \N 6043973 2025-03-20 06:16:34.469 2025-03-20 06:16:34.469 90000 TIP 436174 12291 \N \N 6044001 2025-03-20 06:19:58.826 2025-03-20 06:19:58.826 2100 FEE 435261 18426 \N \N 6044002 2025-03-20 06:19:58.826 2025-03-20 06:19:58.826 18900 TIP 435261 6260 \N \N 6044021 2025-03-20 06:23:21.63 2025-03-20 06:23:21.63 1000 FEE 436304 14465 \N \N 6044026 2025-03-20 06:23:58.164 2025-03-20 06:23:58.164 0 FEE 436303 16834 \N \N 6044033 2025-03-20 06:24:43.608 2025-03-20 06:24:43.608 3000 FEE 436288 1552 \N \N 6044034 2025-03-20 06:24:43.608 2025-03-20 06:24:43.608 27000 TIP 436288 1122 \N \N 6044039 2025-03-20 06:25:19.999 2025-03-20 06:25:19.999 2100 FEE 436281 14552 \N \N 6044040 2025-03-20 06:25:19.999 2025-03-20 06:25:19.999 18900 TIP 436281 2710 \N \N 6044051 2025-03-20 06:26:59.856 2025-03-20 06:26:59.856 9000 FEE 436290 1652 \N \N 6044052 2025-03-20 06:26:59.856 2025-03-20 06:26:59.856 81000 TIP 436290 697 \N \N 6044055 2025-03-20 06:27:10.464 2025-03-20 06:27:10.464 2300 FEE 436241 18829 \N \N 6044056 2025-03-20 06:27:10.464 2025-03-20 06:27:10.464 20700 TIP 436241 4177 \N \N 6044104 2025-03-20 06:31:27.138 2025-03-20 06:31:27.138 7100 FEE 434129 7675 \N \N 6044105 2025-03-20 06:31:27.138 2025-03-20 06:31:27.138 63900 TIP 434129 5708 \N \N 6044123 2025-03-20 06:32:20.236 2025-03-20 06:32:20.236 4000 FEE 436314 21798 \N \N 6044124 2025-03-20 06:32:20.236 2025-03-20 06:32:20.236 36000 TIP 436314 1002 \N \N 6044145 2025-03-20 06:33:02.542 2025-03-20 06:33:02.542 1000 FEE 436197 2711 \N \N 6044146 2025-03-20 06:33:02.542 2025-03-20 06:33:02.542 9000 TIP 436197 11999 \N \N 6044154 2025-03-20 06:33:44.506 2025-03-20 06:33:44.506 100000 FEE 436317 10291 \N \N 6043825 2025-03-20 05:53:43.48 2025-03-20 05:53:43.48 2100 FEE 436029 21389 \N \N 6043826 2025-03-20 05:53:43.48 2025-03-20 05:53:43.48 18900 TIP 436029 21797 \N \N 6043830 2025-03-20 05:54:15.35 2025-03-20 05:54:15.35 0 FEE 436271 20436 \N \N 6043833 2025-03-20 05:54:34.402 2025-03-20 05:54:34.402 2100 FEE 436091 20816 \N \N 6043834 2025-03-20 05:54:34.402 2025-03-20 05:54:34.402 18900 TIP 436091 7659 \N \N 6043837 2025-03-20 05:54:57.583 2025-03-20 05:54:57.583 1000 FEE 436272 6393 \N \N 6043843 2025-03-20 05:56:03.473 2025-03-20 05:56:03.473 10000 FEE 436273 17046 \N \N 6043856 2025-03-20 05:58:51.9 2025-03-20 05:58:51.9 1000 FEE 436277 10112 \N \N 6043880 2025-03-20 06:05:06.385 2025-03-20 06:05:06.385 1000 FEE 436279 20781 \N \N 6043920 2025-03-20 06:07:06.341 2025-03-20 06:07:06.341 1000 FEE 436281 6555 \N \N 6043928 2025-03-20 06:09:48.177 2025-03-20 06:09:48.177 1000 FEE 435944 2151 \N \N 6043929 2025-03-20 06:09:48.177 2025-03-20 06:09:48.177 9000 TIP 435944 9363 \N \N 6043931 2025-03-20 06:10:33.971 2025-03-20 06:10:33.971 1000 FEE 436284 11395 \N \N 6043828 2025-03-20 05:53:49.036 2025-03-20 05:53:49.036 18900 TIP 436045 1773 \N \N 6043841 2025-03-20 05:55:27.388 2025-03-20 05:55:27.388 2800 FEE 436241 2513 \N \N 6043842 2025-03-20 05:55:27.388 2025-03-20 05:55:27.388 25200 TIP 436241 3506 \N \N 6043848 2025-03-20 05:56:53.89 2025-03-20 05:56:53.89 1000 FEE 436275 21088 \N \N 6043849 2025-03-20 05:57:12.536 2025-03-20 05:57:12.536 3400 FEE 435987 651 \N \N 6043850 2025-03-20 05:57:12.536 2025-03-20 05:57:12.536 30600 TIP 435987 20998 \N \N 6043857 2025-03-20 05:58:56.829 2025-03-20 05:58:56.829 2000 FEE 436093 2640 \N \N 6043858 2025-03-20 05:58:56.829 2025-03-20 05:58:56.829 18000 TIP 436093 1647 \N \N 6043866 2025-03-20 05:59:43.692 2025-03-20 05:59:43.692 0 FEE 436277 16633 \N \N 6043873 2025-03-20 06:03:14.65 2025-03-20 06:03:14.65 25600 FEE 435619 17275 \N \N 6043874 2025-03-20 06:03:14.65 2025-03-20 06:03:14.65 230400 TIP 435619 8400 \N \N 6043877 2025-03-20 06:04:12.42 2025-03-20 06:04:12.42 4200 FEE 436174 2844 \N \N 6043878 2025-03-20 06:04:12.42 2025-03-20 06:04:12.42 37800 TIP 436174 1002 \N \N 6043882 2025-03-20 06:05:43.682 2025-03-20 06:05:43.682 1000 FEE 436280 7960 \N \N 6043883 2025-03-20 06:06:07.771 2025-03-20 06:06:07.771 10000 FEE 436248 1046 \N \N 6043884 2025-03-20 06:06:07.771 2025-03-20 06:06:07.771 90000 TIP 436248 8870 \N \N 6043889 2025-03-20 06:06:10.638 2025-03-20 06:06:10.638 10000 FEE 435847 18923 \N \N 6043890 2025-03-20 06:06:10.638 2025-03-20 06:06:10.638 90000 TIP 435847 21766 \N \N 6112804 2025-03-26 05:25:04.745 2025-03-26 05:25:04.745 2100 FEE 443274 1720 \N \N 6112805 2025-03-26 05:25:04.745 2025-03-26 05:25:04.745 18900 TIP 443274 19570 \N \N 6112811 2025-03-26 05:25:53.497 2025-03-26 05:25:53.497 1000 FEE 443540 20710 \N \N 6043896 2025-03-20 06:06:14.62 2025-03-20 06:06:14.62 1100 FEE 436197 20306 \N \N 6043897 2025-03-20 06:06:14.62 2025-03-20 06:06:14.62 9900 TIP 436197 4313 \N \N 6043910 2025-03-20 06:06:17.269 2025-03-20 06:06:17.269 1100 FEE 436241 2285 \N \N 6043911 2025-03-20 06:06:17.269 2025-03-20 06:06:17.269 9900 TIP 436241 20826 \N \N 6043918 2025-03-20 06:06:20.389 2025-03-20 06:06:20.389 2200 FEE 436062 15941 \N \N 6043919 2025-03-20 06:06:20.389 2025-03-20 06:06:20.389 19800 TIP 436062 12774 \N \N 6043921 2025-03-20 06:07:08.849 2025-03-20 06:07:08.849 1000 FEE 436282 21391 \N \N 6043923 2025-03-20 06:07:13.724 2025-03-20 06:07:13.724 1000 FEE 436283 21532 \N \N 6043936 2025-03-20 06:10:44.779 2025-03-20 06:10:44.779 2100 FEE 436208 21526 \N \N 6043937 2025-03-20 06:10:44.779 2025-03-20 06:10:44.779 18900 TIP 436208 20680 \N \N 6043961 2025-03-20 06:15:13.132 2025-03-20 06:15:13.132 10000 FEE 436290 16695 \N \N 6043964 2025-03-20 06:15:29.713 2025-03-20 06:15:29.713 1000 FEE 436292 10979 \N \N 6043990 2025-03-20 06:18:38.281 2025-03-20 06:18:38.281 1000 FEE 436299 18011 \N \N 6043999 2025-03-20 06:19:48.917 2025-03-20 06:19:48.917 2100 FEE 436174 2529 \N \N 6044000 2025-03-20 06:19:48.917 2025-03-20 06:19:48.917 18900 TIP 436174 12870 \N \N 6044003 2025-03-20 06:20:09.363 2025-03-20 06:20:09.363 4000 FEE 436297 1060 \N \N 6044004 2025-03-20 06:20:09.363 2025-03-20 06:20:09.363 36000 TIP 436297 13798 \N \N 6044015 2025-03-20 06:21:43.603 2025-03-20 06:21:43.603 10100 FEE 436093 900 \N \N 6044016 2025-03-20 06:21:43.603 2025-03-20 06:21:43.603 90900 TIP 436093 5487 \N \N 6044022 2025-03-20 06:23:29.395 2025-03-20 06:23:29.395 0 FEE 436304 5978 \N \N 6044025 2025-03-20 06:23:57.815 2025-03-20 06:23:57.815 1000 FEE 436305 20973 \N \N 6044031 2025-03-20 06:24:37.432 2025-03-20 06:24:37.432 2100 FEE 436241 17693 \N \N 6044032 2025-03-20 06:24:37.432 2025-03-20 06:24:37.432 18900 TIP 436241 11527 \N \N 6044038 2025-03-20 06:25:16.909 2025-03-20 06:25:16.909 1000 FEE 436307 19906 \N \N 6044048 2025-03-20 06:26:40.758 2025-03-20 06:26:40.758 900 FEE 436290 21412 \N \N 6044049 2025-03-20 06:26:40.758 2025-03-20 06:26:40.758 8100 TIP 436290 17568 \N \N 6044068 2025-03-20 06:27:28.092 2025-03-20 06:27:28.092 27000 FEE 436306 1632 \N \N 6044069 2025-03-20 06:27:28.092 2025-03-20 06:27:28.092 243000 TIP 436306 981 \N \N 6044070 2025-03-20 06:27:46.839 2025-03-20 06:27:46.839 1000 FEE 436311 703 \N \N 6044085 2025-03-20 06:29:46.228 2025-03-20 06:29:46.228 4000 FEE 436273 1424 \N \N 6044086 2025-03-20 06:29:46.228 2025-03-20 06:29:46.228 36000 TIP 436273 2593 \N \N 6044100 2025-03-20 06:31:18.724 2025-03-20 06:31:18.724 7100 FEE 434563 13361 \N \N 6044101 2025-03-20 06:31:18.724 2025-03-20 06:31:18.724 63900 TIP 434563 718 \N \N 6044121 2025-03-20 06:32:18.72 2025-03-20 06:32:18.72 4000 FEE 436314 11829 \N \N 6044122 2025-03-20 06:32:18.72 2025-03-20 06:32:18.72 36000 TIP 436314 17095 \N \N 6044183 2025-03-20 06:39:07.337 2025-03-20 06:39:07.337 100 FEE 436318 17291 \N \N 6044184 2025-03-20 06:39:07.337 2025-03-20 06:39:07.337 900 TIP 436318 1245 \N \N 6044187 2025-03-20 06:39:35.307 2025-03-20 06:39:35.307 2100 FEE 436093 21338 \N \N 6044188 2025-03-20 06:39:35.307 2025-03-20 06:39:35.307 18900 TIP 436093 17201 \N \N 6044217 2025-03-20 06:45:53.312 2025-03-20 06:45:53.312 200 FEE 436287 5746 \N \N 6044218 2025-03-20 06:45:53.312 2025-03-20 06:45:53.312 1800 TIP 436287 4973 \N \N 6044235 2025-03-20 06:49:41.014 2025-03-20 06:49:41.014 1000 FEE 436323 16965 \N \N 6044236 2025-03-20 06:49:41.014 2025-03-20 06:49:41.014 9000 TIP 436323 11999 \N \N 6044254 2025-03-20 06:53:00.804 2025-03-20 06:53:00.804 1000 FEE 436330 6749 \N \N 6044266 2025-03-20 06:53:44.279 2025-03-20 06:53:44.279 1000 FEE 436326 994 \N \N 6044267 2025-03-20 06:53:44.279 2025-03-20 06:53:44.279 9000 TIP 436326 18500 \N \N 6044270 2025-03-20 06:53:44.759 2025-03-20 06:53:44.759 1000 FEE 436326 6578 \N \N 6044271 2025-03-20 06:53:44.759 2025-03-20 06:53:44.759 9000 TIP 436326 21804 \N \N 6044294 2025-03-20 06:54:00.875 2025-03-20 06:54:00.875 8300 FEE 436325 16808 \N \N 6044295 2025-03-20 06:54:00.875 2025-03-20 06:54:00.875 74700 TIP 436325 18901 \N \N 6044296 2025-03-20 06:54:07.164 2025-03-20 06:54:07.164 8300 FEE 436281 21202 \N \N 6044297 2025-03-20 06:54:07.164 2025-03-20 06:54:07.164 74700 TIP 436281 9820 \N \N 6044327 2025-03-20 06:57:12.086 2025-03-20 06:57:12.086 10000 FEE 436336 15408 \N \N 6044335 2025-03-20 06:58:21.05 2025-03-20 06:58:21.05 1000 FEE 436341 11999 \N \N 6044340 2025-03-20 06:58:22.99 2025-03-20 06:58:22.99 1000 FEE 436180 8287 \N \N 6044341 2025-03-20 06:58:22.99 2025-03-20 06:58:22.99 9000 TIP 436180 1319 \N \N 6044352 2025-03-20 06:58:53.253 2025-03-20 06:58:53.253 10000 FEE 436342 1713 \N \N 6044365 2025-03-20 06:59:14.67 2025-03-20 06:59:14.67 1000 FEE 435560 10731 \N \N 6044366 2025-03-20 06:59:14.67 2025-03-20 06:59:14.67 9000 TIP 435560 1007 \N \N 6044369 2025-03-20 06:59:31.702 2025-03-20 06:59:31.702 4000 FEE 436197 9184 \N \N 6044370 2025-03-20 06:59:31.702 2025-03-20 06:59:31.702 36000 TIP 436197 17522 \N \N 6044394 2025-03-20 07:00:22.454 2025-03-20 07:00:22.454 1000 FEE 435654 6268 \N \N 6044395 2025-03-20 07:00:22.454 2025-03-20 07:00:22.454 9000 TIP 435654 16229 \N \N 6044399 2025-03-20 07:01:18.411 2025-03-20 07:01:18.411 2000 FEE 435310 9036 \N \N 6044400 2025-03-20 07:01:18.411 2025-03-20 07:01:18.411 18000 TIP 435310 21159 \N \N 6044409 2025-03-20 07:01:26.603 2025-03-20 07:01:26.603 300 FEE 436032 12188 \N \N 6044410 2025-03-20 07:01:26.603 2025-03-20 07:01:26.603 2700 TIP 436032 10549 \N \N 6044437 2025-03-20 07:02:47.255 2025-03-20 07:02:47.255 1000 FEE 436350 3506 \N \N 6044438 2025-03-20 07:02:49.469 2025-03-20 07:02:49.469 1000 FEE 435786 12072 \N \N 6044439 2025-03-20 07:02:49.469 2025-03-20 07:02:49.469 9000 TIP 435786 16966 \N \N 6044444 2025-03-20 07:02:51.073 2025-03-20 07:02:51.073 1000 FEE 435786 21166 \N \N 6044445 2025-03-20 07:02:51.073 2025-03-20 07:02:51.073 9000 TIP 435786 701 \N \N 6044473 2025-03-20 07:04:14.551 2025-03-20 07:04:14.551 1000 FEE 435882 14857 \N \N 6044474 2025-03-20 07:04:14.551 2025-03-20 07:04:14.551 9000 TIP 435882 8173 \N \N 6044482 2025-03-20 07:04:52.084 2025-03-20 07:04:52.084 1000 FEE 435882 16406 \N \N 6044483 2025-03-20 07:04:52.084 2025-03-20 07:04:52.084 9000 TIP 435882 18956 \N \N 6044490 2025-03-20 07:04:53.611 2025-03-20 07:04:53.611 100000 DONT_LIKE_THIS 436319 9356 \N \N 6044493 2025-03-20 07:04:54.521 2025-03-20 07:04:54.521 1000 FEE 435882 19016 \N \N 6044494 2025-03-20 07:04:54.521 2025-03-20 07:04:54.521 9000 TIP 435882 659 \N \N 6044571 2025-03-20 07:12:35.825 2025-03-20 07:12:35.825 100 FEE 436359 2056 \N \N 6044572 2025-03-20 07:12:35.825 2025-03-20 07:12:35.825 900 TIP 436359 9337 \N \N 6044573 2025-03-20 07:12:36.019 2025-03-20 07:12:36.019 100 FEE 436359 7583 \N \N 6044574 2025-03-20 07:12:36.019 2025-03-20 07:12:36.019 900 TIP 436359 18772 \N \N 6044602 2025-03-20 07:14:02.413 2025-03-20 07:14:02.413 10000 FEE 436364 17106 \N \N 6044641 2025-03-20 07:17:48.85 2025-03-20 07:17:48.85 1000 FEE 436362 15762 \N \N 6044642 2025-03-20 07:17:48.85 2025-03-20 07:17:48.85 9000 TIP 436362 17541 \N \N 6044663 2025-03-20 07:20:47.181 2025-03-20 07:20:47.181 4000 FEE 436353 1652 \N \N 6044664 2025-03-20 07:20:47.181 2025-03-20 07:20:47.181 36000 TIP 436353 11897 \N \N 6043898 2025-03-20 06:06:14.652 2025-03-20 06:06:14.652 1100 FEE 436197 2010 \N \N 6043899 2025-03-20 06:06:14.652 2025-03-20 06:06:14.652 9900 TIP 436197 8841 \N \N 6043900 2025-03-20 06:06:15.718 2025-03-20 06:06:15.718 1100 FEE 436197 3456 \N \N 6043901 2025-03-20 06:06:15.718 2025-03-20 06:06:15.718 9900 TIP 436197 21058 \N \N 6043926 2025-03-20 06:09:36.387 2025-03-20 06:09:36.387 2100 FEE 436135 9109 \N \N 6043927 2025-03-20 06:09:36.387 2025-03-20 06:09:36.387 18900 TIP 436135 21710 \N \N 6043932 2025-03-20 06:10:35.698 2025-03-20 06:10:35.698 2100 FEE 436276 20280 \N \N 6043933 2025-03-20 06:10:35.698 2025-03-20 06:10:35.698 18900 TIP 436276 7746 \N \N 6043941 2025-03-20 06:11:21.085 2025-03-20 06:11:21.085 1000 FEE 436285 9295 \N \N 6043943 2025-03-20 06:11:46.299 2025-03-20 06:11:46.299 500 FEE 436281 14080 \N \N 6043944 2025-03-20 06:11:46.299 2025-03-20 06:11:46.299 4500 TIP 436281 21639 \N \N 6043957 2025-03-20 06:14:40.385 2025-03-20 06:14:40.385 800 FEE 436093 12261 \N \N 6043958 2025-03-20 06:14:40.385 2025-03-20 06:14:40.385 7200 TIP 436093 9985 \N \N 6043963 2025-03-20 06:15:21.816 2025-03-20 06:15:21.816 1000 FEE 436291 12272 \N \N 6043971 2025-03-20 06:16:28.326 2025-03-20 06:16:28.326 1000 FEE 436294 763 \N \N 6044080 2025-03-20 06:29:25.051 2025-03-20 06:29:25.051 1000 FEE 436313 7960 \N \N 6044089 2025-03-20 06:29:58.849 2025-03-20 06:29:58.849 4000 FEE 436290 2232 \N \N 6044090 2025-03-20 06:29:58.849 2025-03-20 06:29:58.849 36000 TIP 436290 6393 \N \N 6044097 2025-03-20 06:31:12.554 2025-03-20 06:31:12.554 7100 FEE 434595 10693 \N \N 6044098 2025-03-20 06:31:12.554 2025-03-20 06:31:12.554 63900 TIP 434595 701 \N \N 6044179 2025-03-20 06:38:36.166 2025-03-20 06:38:36.166 1000 FEE 436321 4378 \N \N 6044185 2025-03-20 06:39:11.189 2025-03-20 06:39:11.189 10000 FEE 436323 21212 \N \N 6044193 2025-03-20 06:42:34.538 2025-03-20 06:42:34.538 2100 FEE 436315 13587 \N \N 6044194 2025-03-20 06:42:34.538 2025-03-20 06:42:34.538 18900 TIP 436315 2724 \N \N 6044196 2025-03-20 06:43:31.261 2025-03-20 06:43:31.261 7100 FEE 436218 20201 \N \N 6044197 2025-03-20 06:43:31.261 2025-03-20 06:43:31.261 63900 TIP 436218 1564 \N \N 6044231 2025-03-20 06:49:40.36 2025-03-20 06:49:40.36 1000 FEE 436323 5519 \N \N 6044232 2025-03-20 06:49:40.36 2025-03-20 06:49:40.36 9000 TIP 436323 9833 \N \N 6044276 2025-03-20 06:53:45.417 2025-03-20 06:53:45.417 1000 FEE 436326 20901 \N \N 6044277 2025-03-20 06:53:45.417 2025-03-20 06:53:45.417 9000 TIP 436326 2016 \N \N 6044344 2025-03-20 06:58:23.827 2025-03-20 06:58:23.827 1000 FEE 436180 20691 \N \N 6044345 2025-03-20 06:58:23.827 2025-03-20 06:58:23.827 9000 TIP 436180 19018 \N \N 6044346 2025-03-20 06:58:24.157 2025-03-20 06:58:24.157 1000 FEE 436180 1051 \N \N 6044347 2025-03-20 06:58:24.157 2025-03-20 06:58:24.157 9000 TIP 436180 2022 \N \N 6044356 2025-03-20 06:59:13.215 2025-03-20 06:59:13.215 1000 FEE 435560 21714 \N \N 6044357 2025-03-20 06:59:13.215 2025-03-20 06:59:13.215 9000 TIP 435560 11314 \N \N 6044358 2025-03-20 06:59:13.575 2025-03-20 06:59:13.575 1000 FEE 435560 928 \N \N 6044359 2025-03-20 06:59:13.575 2025-03-20 06:59:13.575 9000 TIP 435560 2775 \N \N 6044396 2025-03-20 07:00:43.563 2025-03-20 07:00:43.563 700 FEE 436245 15147 \N \N 6044397 2025-03-20 07:00:43.563 2025-03-20 07:00:43.563 6300 TIP 436245 1726 \N \N 6044405 2025-03-20 07:01:22.238 2025-03-20 07:01:22.238 1000 FEE 435447 649 \N \N 6044406 2025-03-20 07:01:22.238 2025-03-20 07:01:22.238 9000 TIP 435447 16354 \N \N 6044413 2025-03-20 07:01:26.976 2025-03-20 07:01:26.976 1000 FEE 435456 2342 \N \N 6044414 2025-03-20 07:01:26.976 2025-03-20 07:01:26.976 9000 TIP 435456 21418 \N \N 6044419 2025-03-20 07:01:31.407 2025-03-20 07:01:31.407 0 FEE 436331 2000 \N \N 6044484 2025-03-20 07:04:52.581 2025-03-20 07:04:52.581 1000 FEE 435882 20133 \N \N 6044485 2025-03-20 07:04:52.581 2025-03-20 07:04:52.581 9000 TIP 435882 976 \N \N 6044495 2025-03-20 07:04:55.081 2025-03-20 07:04:55.081 1000 FEE 435882 17030 \N \N 6044496 2025-03-20 07:04:55.081 2025-03-20 07:04:55.081 9000 TIP 435882 21349 \N \N 6044515 2025-03-20 07:07:14.753 2025-03-20 07:07:14.753 10000 FEE 436176 2749 \N \N 6044516 2025-03-20 07:07:14.753 2025-03-20 07:07:14.753 90000 TIP 436176 20481 \N \N 6044531 2025-03-20 07:09:14.668 2025-03-20 07:09:14.668 300 FEE 436358 18449 \N \N 6044532 2025-03-20 07:09:14.668 2025-03-20 07:09:14.668 2700 TIP 436358 9476 \N \N 6044552 2025-03-20 07:12:25.486 2025-03-20 07:12:25.486 1000 FEE 436361 6393 \N \N 6044563 2025-03-20 07:12:35.089 2025-03-20 07:12:35.089 100 FEE 436359 17103 \N \N 6044564 2025-03-20 07:12:35.089 2025-03-20 07:12:35.089 900 TIP 436359 16354 \N \N 6044577 2025-03-20 07:12:36.531 2025-03-20 07:12:36.531 100 FEE 436359 21067 \N \N 6044578 2025-03-20 07:12:36.531 2025-03-20 07:12:36.531 900 TIP 436359 2513 \N \N 6044587 2025-03-20 07:12:38.768 2025-03-20 07:12:38.768 100 FEE 436359 1718 \N \N 6044588 2025-03-20 07:12:38.768 2025-03-20 07:12:38.768 900 TIP 436359 7119 \N \N 6044594 2025-03-20 07:12:51.325 2025-03-20 07:12:51.325 1000 FEE 436362 21408 \N \N 6044595 2025-03-20 07:12:51.325 2025-03-20 07:12:51.325 9000 TIP 436362 2593 \N \N 6044600 2025-03-20 07:13:55.901 2025-03-20 07:13:55.901 15000 FEE 436355 11498 \N \N 6044601 2025-03-20 07:13:55.901 2025-03-20 07:13:55.901 135000 TIP 436355 18069 \N \N 6044606 2025-03-20 07:14:41.463 2025-03-20 07:14:41.463 900 FEE 436344 8045 \N \N 6044607 2025-03-20 07:14:41.463 2025-03-20 07:14:41.463 8100 TIP 436344 16145 \N \N 6044608 2025-03-20 07:14:50.8 2025-03-20 07:14:50.8 1000 FEE 436367 6268 \N \N 6044612 2025-03-20 07:16:01.892 2025-03-20 07:16:01.892 300 FEE 436352 4654 \N \N 6044613 2025-03-20 07:16:01.892 2025-03-20 07:16:01.892 2700 TIP 436352 6058 \N \N 6044625 2025-03-20 07:17:20.597 2025-03-20 07:17:20.597 1000 FEE 436356 16704 \N \N 6044626 2025-03-20 07:17:20.597 2025-03-20 07:17:20.597 9000 TIP 436356 782 \N \N 6044645 2025-03-20 07:17:50.096 2025-03-20 07:17:50.096 1000 FEE 436362 8448 \N \N 6044646 2025-03-20 07:17:50.096 2025-03-20 07:17:50.096 9000 TIP 436362 1310 \N \N 6044655 2025-03-20 07:18:45.228 2025-03-20 07:18:45.228 2100 FEE 436364 678 \N \N 6044656 2025-03-20 07:18:45.228 2025-03-20 07:18:45.228 18900 TIP 436364 17082 \N \N 6044668 2025-03-20 07:22:20.745 2025-03-20 07:22:20.745 1000 FEE 436374 1489 \N \N 6044676 2025-03-20 07:23:18.167 2025-03-20 07:23:18.167 1000 FEE 436362 2776 \N \N 6044677 2025-03-20 07:23:18.167 2025-03-20 07:23:18.167 9000 TIP 436362 18231 \N \N 6044717 2025-03-20 07:25:11.386 2025-03-20 07:25:11.386 1000 FEE 435907 16939 \N \N 6044718 2025-03-20 07:25:11.386 2025-03-20 07:25:11.386 9000 TIP 435907 21271 \N \N 6044727 2025-03-20 07:25:13.351 2025-03-20 07:25:13.351 1000 FEE 435907 21239 \N \N 6044728 2025-03-20 07:25:13.351 2025-03-20 07:25:13.351 9000 TIP 435907 13987 \N \N 6044738 2025-03-20 07:25:15.18 2025-03-20 07:25:15.18 1000 FEE 435907 1806 \N \N 6044739 2025-03-20 07:25:15.18 2025-03-20 07:25:15.18 9000 TIP 435907 11789 \N \N 6044782 2025-03-20 07:34:46.908 2025-03-20 07:34:46.908 3000 FEE 436343 10007 \N \N 6044783 2025-03-20 07:34:46.908 2025-03-20 07:34:46.908 27000 TIP 436343 1429 \N \N 6044804 2025-03-20 07:40:11.906 2025-03-20 07:40:11.906 1000 FEE 436273 14376 \N \N 6044805 2025-03-20 07:40:11.906 2025-03-20 07:40:11.906 9000 TIP 436273 15703 \N \N 6044812 2025-03-20 07:40:13.434 2025-03-20 07:40:13.434 1000 FEE 436273 2640 \N \N 6044813 2025-03-20 07:40:13.434 2025-03-20 07:40:13.434 9000 TIP 436273 21202 \N \N 6044823 2025-03-20 07:42:17.785 2025-03-20 07:42:17.785 10000 FEE 436394 15662 \N \N 6044852 2025-03-20 07:48:54.323 2025-03-20 07:48:54.323 1000 FEE 436398 13217 \N \N 6044853 2025-03-20 07:48:54.323 2025-03-20 07:48:54.323 9000 TIP 436398 1740 \N \N 6043912 2025-03-20 06:06:18.11 2025-03-20 06:06:18.11 3300 FEE 436241 21379 \N \N 6043913 2025-03-20 06:06:18.11 2025-03-20 06:06:18.11 29700 TIP 436241 6555 \N \N 6043916 2025-03-20 06:06:18.815 2025-03-20 06:06:18.815 1100 FEE 436158 18412 \N \N 6043917 2025-03-20 06:06:18.815 2025-03-20 06:06:18.815 9900 TIP 436158 831 \N \N 6043955 2025-03-20 06:14:40.186 2025-03-20 06:14:40.186 800 FEE 436093 1064 \N \N 6043956 2025-03-20 06:14:40.186 2025-03-20 06:14:40.186 7200 TIP 436093 8045 \N \N 6043959 2025-03-20 06:14:47.239 2025-03-20 06:14:47.239 1000 FEE 436288 14650 \N \N 6043983 2025-03-20 06:18:18.852 2025-03-20 06:18:18.852 1000 FEE 436270 18017 \N \N 6043984 2025-03-20 06:18:18.852 2025-03-20 06:18:18.852 9000 TIP 436270 1823 \N \N 6044011 2025-03-20 06:21:07.897 2025-03-20 06:21:07.897 2100 FEE 436290 4173 \N \N 6044012 2025-03-20 06:21:07.897 2025-03-20 06:21:07.897 18900 TIP 436290 16212 \N \N 6044013 2025-03-20 06:21:08.232 2025-03-20 06:21:08.232 1000 FEE 436302 4692 \N \N 6044053 2025-03-20 06:27:10.333 2025-03-20 06:27:10.333 2300 FEE 436241 20998 \N \N 6044054 2025-03-20 06:27:10.333 2025-03-20 06:27:10.333 20700 TIP 436241 1713 \N \N 6044057 2025-03-20 06:27:10.613 2025-03-20 06:27:10.613 2300 FEE 436241 15617 \N \N 6044058 2025-03-20 06:27:10.613 2025-03-20 06:27:10.613 20700 TIP 436241 16212 \N \N 6044087 2025-03-20 06:29:55.182 2025-03-20 06:29:55.182 3000 FEE 436312 1261 \N \N 6112807 2025-03-26 05:25:18.848 2025-03-26 05:25:18.848 1000 FEE 443538 20245 \N \N 6112808 2025-03-26 05:25:21.575 2025-03-26 05:25:21.575 21800 FEE 443274 21091 \N \N 6112809 2025-03-26 05:25:21.575 2025-03-26 05:25:21.575 196200 TIP 443274 17713 \N \N 6112821 2025-03-26 05:28:18.753 2025-03-26 05:28:18.753 1000 FEE 443544 1652 \N \N 6112822 2025-03-26 05:28:31.532 2025-03-26 05:28:31.532 500 FEE 443531 5520 \N \N 6112823 2025-03-26 05:28:31.532 2025-03-26 05:28:31.532 4500 TIP 443531 20717 \N \N 6112838 2025-03-26 05:29:25.279 2025-03-26 05:29:25.279 1000 FEE 443436 660 \N \N 6112839 2025-03-26 05:29:25.279 2025-03-26 05:29:25.279 9000 TIP 443436 19117 \N \N 6112840 2025-03-26 05:29:32.789 2025-03-26 05:29:32.789 10000 FEE 443473 15521 \N \N 6112841 2025-03-26 05:29:32.789 2025-03-26 05:29:32.789 90000 TIP 443473 17519 \N \N 6043950 2025-03-20 06:12:56.896 2025-03-20 06:12:56.896 800 FEE 436021 15941 \N \N 6043951 2025-03-20 06:12:56.896 2025-03-20 06:12:56.896 7200 TIP 436021 10944 \N \N 6043976 2025-03-20 06:17:11.216 2025-03-20 06:17:11.216 3300 FEE 436176 11678 \N \N 6043977 2025-03-20 06:17:11.216 2025-03-20 06:17:11.216 29700 TIP 436176 10719 \N \N 6043985 2025-03-20 06:18:19.222 2025-03-20 06:18:19.222 1000 FEE 436270 14195 \N \N 6043986 2025-03-20 06:18:19.222 2025-03-20 06:18:19.222 9000 TIP 436270 20691 \N \N 6043995 2025-03-20 06:19:26.47 2025-03-20 06:19:26.47 2100 FEE 436241 13055 \N \N 6043996 2025-03-20 06:19:26.47 2025-03-20 06:19:26.47 18900 TIP 436241 15719 \N \N 6044010 2025-03-20 06:20:23.71 2025-03-20 06:20:23.71 10000 FEE 436301 20117 \N \N 6044019 2025-03-20 06:22:51.637 2025-03-20 06:22:51.637 1000 FEE 436303 4624 \N \N 6044044 2025-03-20 06:25:54.591 2025-03-20 06:25:54.591 1000 FEE 436309 7185 \N \N 6044050 2025-03-20 06:26:44.027 2025-03-20 06:26:44.027 1000 FEE 436310 2774 \N \N 6044059 2025-03-20 06:27:10.859 2025-03-20 06:27:10.859 2300 FEE 436241 2010 \N \N 6044060 2025-03-20 06:27:10.859 2025-03-20 06:27:10.859 20700 TIP 436241 1650 \N \N 6044092 2025-03-20 06:30:35.56 2025-03-20 06:30:35.56 1000 FEE 436314 11897 \N \N 6044093 2025-03-20 06:30:57.019 2025-03-20 06:30:57.019 7100 FEE 436189 5306 \N \N 6044094 2025-03-20 06:30:57.019 2025-03-20 06:30:57.019 63900 TIP 436189 10690 \N \N 6044095 2025-03-20 06:31:09.862 2025-03-20 06:31:09.862 7100 FEE 434882 16347 \N \N 6044096 2025-03-20 06:31:09.862 2025-03-20 06:31:09.862 63900 TIP 434882 18409 \N \N 6044114 2025-03-20 06:32:05.439 2025-03-20 06:32:05.439 100 FEE 436258 5128 \N \N 6044115 2025-03-20 06:32:05.439 2025-03-20 06:32:05.439 900 TIP 436258 5003 \N \N 6044119 2025-03-20 06:32:16.911 2025-03-20 06:32:16.911 4000 FEE 436314 10484 \N \N 6044120 2025-03-20 06:32:16.911 2025-03-20 06:32:16.911 36000 TIP 436314 20190 \N \N 6044181 2025-03-20 06:38:46.567 2025-03-20 06:38:46.567 5000 FEE 434432 12245 \N \N 6044182 2025-03-20 06:38:46.567 2025-03-20 06:38:46.567 45000 TIP 434432 3213 \N \N 6044233 2025-03-20 06:49:40.652 2025-03-20 06:49:40.652 1000 FEE 436323 17109 \N \N 6044234 2025-03-20 06:49:40.652 2025-03-20 06:49:40.652 9000 TIP 436323 16753 \N \N 6044239 2025-03-20 06:49:41.397 2025-03-20 06:49:41.397 1000 FEE 436323 5759 \N \N 6044240 2025-03-20 06:49:41.397 2025-03-20 06:49:41.397 9000 TIP 436323 1761 \N \N 6044247 2025-03-20 06:52:09.926 2025-03-20 06:52:09.926 1000 FEE 436328 9336 \N \N 6044251 2025-03-20 06:52:40.692 2025-03-20 06:52:40.692 1000 FEE 436329 2670 \N \N 6044278 2025-03-20 06:53:45.591 2025-03-20 06:53:45.591 1000 FEE 436326 19417 \N \N 6044279 2025-03-20 06:53:45.591 2025-03-20 06:53:45.591 9000 TIP 436326 999 \N \N 6044290 2025-03-20 06:53:48.588 2025-03-20 06:53:48.588 1000 FEE 436326 21249 \N \N 6044291 2025-03-20 06:53:48.588 2025-03-20 06:53:48.588 9000 TIP 436326 7766 \N \N 6044319 2025-03-20 06:56:07.836 2025-03-20 06:56:07.836 1000 FEE 436333 717 \N \N 6044324 2025-03-20 06:57:04.536 2025-03-20 06:57:04.536 1700 FEE 436286 844 \N \N 6044325 2025-03-20 06:57:04.536 2025-03-20 06:57:04.536 15300 TIP 436286 21577 \N \N 6043953 2025-03-20 06:14:02.324 2025-03-20 06:14:02.324 1000 FEE 436287 6537 \N \N 6043967 2025-03-20 06:16:24.026 2025-03-20 06:16:24.026 10000 FEE 436290 11516 \N \N 6043968 2025-03-20 06:16:24.026 2025-03-20 06:16:24.026 90000 TIP 436290 16998 \N \N 6043979 2025-03-20 06:17:47.896 2025-03-20 06:17:47.896 3300 FEE 436103 4064 \N \N 6043980 2025-03-20 06:17:47.896 2025-03-20 06:17:47.896 29700 TIP 436103 20706 \N \N 6043987 2025-03-20 06:18:28.909 2025-03-20 06:18:28.909 10100 FEE 435971 8954 \N \N 6043988 2025-03-20 06:18:28.909 2025-03-20 06:18:28.909 90900 TIP 435971 2514 \N \N 6043989 2025-03-20 06:18:31.911 2025-03-20 06:18:31.911 1000 FEE 436298 19463 \N \N 6043991 2025-03-20 06:19:10.182 2025-03-20 06:19:10.182 2100 FEE 436136 18271 \N \N 6043992 2025-03-20 06:19:10.182 2025-03-20 06:19:10.182 18900 TIP 436136 11220 \N \N 6043994 2025-03-20 06:19:13.951 2025-03-20 06:19:13.951 1000 FEE 436300 5173 \N \N 6044005 2025-03-20 06:20:12.656 2025-03-20 06:20:12.656 4000 FEE 436297 9669 \N \N 6044006 2025-03-20 06:20:12.656 2025-03-20 06:20:12.656 36000 TIP 436297 21814 \N \N 6044008 2025-03-20 06:20:13.306 2025-03-20 06:20:13.306 4000 FEE 436291 2492 \N \N 6044009 2025-03-20 06:20:13.306 2025-03-20 06:20:13.306 36000 TIP 436291 18930 \N \N 6044023 2025-03-20 06:23:55.854 2025-03-20 06:23:55.854 2100 FEE 436243 14657 \N \N 6044024 2025-03-20 06:23:55.854 2025-03-20 06:23:55.854 18900 TIP 436243 1959 \N \N 6044027 2025-03-20 06:24:05.992 2025-03-20 06:24:05.992 7700 FEE 436093 6602 \N \N 6044028 2025-03-20 06:24:05.992 2025-03-20 06:24:05.992 69300 TIP 436093 16978 \N \N 6044061 2025-03-20 06:27:10.967 2025-03-20 06:27:10.967 2300 FEE 436241 5806 \N \N 6044062 2025-03-20 06:27:10.967 2025-03-20 06:27:10.967 20700 TIP 436241 9347 \N \N 6044063 2025-03-20 06:27:11.291 2025-03-20 06:27:11.291 2300 FEE 436241 2749 \N \N 6044064 2025-03-20 06:27:11.291 2025-03-20 06:27:11.291 20700 TIP 436241 21805 \N \N 6044074 2025-03-20 06:28:36.039 2025-03-20 06:28:36.039 2100 FEE 436264 827 \N \N 6044075 2025-03-20 06:28:36.039 2025-03-20 06:28:36.039 18900 TIP 436264 9611 \N \N 6044079 2025-03-20 06:29:18 2025-03-20 06:29:18 1000 FEE 436312 20509 \N \N 6044081 2025-03-20 06:29:33.338 2025-03-20 06:29:33.338 4000 FEE 436273 16571 \N \N 6044082 2025-03-20 06:29:33.338 2025-03-20 06:29:33.338 36000 TIP 436273 650 \N \N 6044112 2025-03-20 06:31:53.006 2025-03-20 06:31:53.006 7100 FEE 433613 20861 \N \N 6044113 2025-03-20 06:31:53.006 2025-03-20 06:31:53.006 63900 TIP 433613 2329 \N \N 6044125 2025-03-20 06:32:42.297 2025-03-20 06:32:42.297 1000 FEE 436315 21303 \N \N 6044126 2025-03-20 06:32:44.237 2025-03-20 06:32:44.237 1000 FEE 435947 621 \N \N 6044127 2025-03-20 06:32:44.237 2025-03-20 06:32:44.237 9000 TIP 435947 15762 \N \N 6044130 2025-03-20 06:32:44.577 2025-03-20 06:32:44.577 1000 FEE 435947 12946 \N \N 6044131 2025-03-20 06:32:44.577 2025-03-20 06:32:44.577 9000 TIP 435947 21815 \N \N 6044133 2025-03-20 06:32:48.648 2025-03-20 06:32:48.648 3000 FEE 436307 2952 \N \N 6044134 2025-03-20 06:32:48.648 2025-03-20 06:32:48.648 27000 TIP 436307 21037 \N \N 6044137 2025-03-20 06:32:49.781 2025-03-20 06:32:49.781 1000 FEE 435986 21398 \N \N 6044138 2025-03-20 06:32:49.781 2025-03-20 06:32:49.781 9000 TIP 435986 7668 \N \N 6044139 2025-03-20 06:32:49.929 2025-03-20 06:32:49.929 1000 FEE 435986 21369 \N \N 6044140 2025-03-20 06:32:49.929 2025-03-20 06:32:49.929 9000 TIP 435986 621 \N \N 6044152 2025-03-20 06:33:41.542 2025-03-20 06:33:41.542 1000 FEE 435643 21639 \N \N 6044153 2025-03-20 06:33:41.542 2025-03-20 06:33:41.542 9000 TIP 435643 18956 \N \N 6044165 2025-03-20 06:36:24.442 2025-03-20 06:36:24.442 5000 FEE 433999 1000 \N \N 6044166 2025-03-20 06:36:24.442 2025-03-20 06:36:24.442 45000 TIP 433999 9200 \N \N 6044167 2025-03-20 06:36:25.307 2025-03-20 06:36:25.307 5000 FEE 434176 16282 \N \N 6044168 2025-03-20 06:36:25.307 2025-03-20 06:36:25.307 45000 TIP 434176 11491 \N \N 6044172 2025-03-20 06:37:58.093 2025-03-20 06:37:58.093 5000 FEE 434292 763 \N \N 6044173 2025-03-20 06:37:58.093 2025-03-20 06:37:58.093 45000 TIP 434292 20026 \N \N 6044180 2025-03-20 06:38:45.319 2025-03-20 06:38:45.319 100000 FEE 436322 21494 \N \N 6044209 2025-03-20 06:45:17.054 2025-03-20 06:45:17.054 5000 FEE 434874 17103 \N \N 6044210 2025-03-20 06:45:17.054 2025-03-20 06:45:17.054 45000 TIP 434874 5427 \N \N 6044213 2025-03-20 06:45:52.505 2025-03-20 06:45:52.505 100 FEE 436287 4323 \N \N 6044214 2025-03-20 06:45:52.505 2025-03-20 06:45:52.505 900 TIP 436287 21291 \N \N 6044229 2025-03-20 06:49:39.681 2025-03-20 06:49:39.681 1000 FEE 436323 1740 \N \N 6044230 2025-03-20 06:49:39.681 2025-03-20 06:49:39.681 9000 TIP 436323 14376 \N \N 6044243 2025-03-20 06:49:58.041 2025-03-20 06:49:58.041 1000000 FEE 436326 5597 \N \N 6044252 2025-03-20 06:52:42.966 2025-03-20 06:52:42.966 1600 FEE 436273 20701 \N \N 6044253 2025-03-20 06:52:42.966 2025-03-20 06:52:42.966 14400 TIP 436273 1320 \N \N 6044264 2025-03-20 06:53:44.073 2025-03-20 06:53:44.073 1000 FEE 436326 13878 \N \N 6044265 2025-03-20 06:53:44.073 2025-03-20 06:53:44.073 9000 TIP 436326 17109 \N \N 6044274 2025-03-20 06:53:45.176 2025-03-20 06:53:45.176 1000 FEE 436326 8535 \N \N 6044275 2025-03-20 06:53:45.176 2025-03-20 06:53:45.176 9000 TIP 436326 5455 \N \N 6044280 2025-03-20 06:53:45.789 2025-03-20 06:53:45.789 1000 FEE 436326 20337 \N \N 6044281 2025-03-20 06:53:45.789 2025-03-20 06:53:45.789 9000 TIP 436326 19537 \N \N 6044286 2025-03-20 06:53:46.791 2025-03-20 06:53:46.791 1000 FEE 436326 14385 \N \N 6044287 2025-03-20 06:53:46.791 2025-03-20 06:53:46.791 9000 TIP 436326 13398 \N \N 6044308 2025-03-20 06:54:53.886 2025-03-20 06:54:53.886 8300 FEE 436326 16942 \N \N 6044309 2025-03-20 06:54:53.886 2025-03-20 06:54:53.886 74700 TIP 436326 4062 \N \N 6044321 2025-03-20 06:56:31.814 2025-03-20 06:56:31.814 2100 FEE 436328 21803 \N \N 6044322 2025-03-20 06:56:31.814 2025-03-20 06:56:31.814 18900 TIP 436328 19403 \N \N 6044336 2025-03-20 06:58:22.541 2025-03-20 06:58:22.541 1000 FEE 436180 6382 \N \N 6044337 2025-03-20 06:58:22.541 2025-03-20 06:58:22.541 9000 TIP 436180 21064 \N \N 6044361 2025-03-20 06:59:13.957 2025-03-20 06:59:13.957 1000 FEE 435560 9290 \N \N 6044362 2025-03-20 06:59:13.957 2025-03-20 06:59:13.957 9000 TIP 435560 11996 \N \N 6044384 2025-03-20 07:00:04.9 2025-03-20 07:00:04.9 1000 FEE 435649 1245 \N \N 6044385 2025-03-20 07:00:04.9 2025-03-20 07:00:04.9 9000 TIP 435649 3377 \N \N 6112810 2025-03-26 05:25:21.926 2025-03-26 05:25:21.926 1000 FEE 443539 694 \N \N 6112866 2025-03-26 05:32:06.925 2025-03-26 05:32:06.925 10000 FEE 314960 19332 \N \N 6112867 2025-03-26 05:32:06.925 2025-03-26 05:32:06.925 90000 TIP 314960 19535 \N \N 6112888 2025-03-26 05:34:55.831 2025-03-26 05:34:55.831 1000 FEE 443561 623 \N \N 6112894 2025-03-26 05:35:31.978 2025-03-26 05:35:31.978 1000 FEE 443564 18011 \N \N 6112901 2025-03-26 05:36:02.882 2025-03-26 05:36:02.882 10000 FEE 443396 12779 \N \N 6112902 2025-03-26 05:36:02.882 2025-03-26 05:36:02.882 90000 TIP 443396 5520 \N \N 6112940 2025-03-26 05:38:19.142 2025-03-26 05:38:19.142 2100 FEE 443197 3683 \N \N 6112941 2025-03-26 05:38:19.142 2025-03-26 05:38:19.142 18900 TIP 443197 18225 \N \N 6112949 2025-03-26 05:38:41.117 2025-03-26 05:38:41.117 1000 FEE 443574 16556 \N \N 6112964 2025-03-26 05:39:14.622 2025-03-26 05:39:14.622 7700 FEE 443274 2402 \N \N 6112965 2025-03-26 05:39:14.622 2025-03-26 05:39:14.622 69300 TIP 443274 21555 \N \N 6112982 2025-03-26 05:39:25.124 2025-03-26 05:39:25.124 7700 FEE 443372 2065 \N \N 6112983 2025-03-26 05:39:25.124 2025-03-26 05:39:25.124 69300 TIP 443372 15890 \N \N 6113010 2025-03-26 05:39:30.067 2025-03-26 05:39:30.067 7700 FEE 443179 11776 \N \N 6113011 2025-03-26 05:39:30.067 2025-03-26 05:39:30.067 69300 TIP 443179 2042 \N \N 6113028 2025-03-26 05:39:40.904 2025-03-26 05:39:40.904 7700 FEE 443545 8459 \N \N 6113029 2025-03-26 05:39:40.904 2025-03-26 05:39:40.904 69300 TIP 443545 1576 \N \N 6113044 2025-03-26 05:39:58.62 2025-03-26 05:39:58.62 15400 FEE 443339 2039 \N \N 6113045 2025-03-26 05:39:58.62 2025-03-26 05:39:58.62 138600 TIP 443339 21019 \N \N 6113072 2025-03-26 05:40:48.138 2025-03-26 05:40:48.138 10000 FEE 443545 20254 \N \N 6113073 2025-03-26 05:40:48.138 2025-03-26 05:40:48.138 90000 TIP 443545 4973 \N \N 6113074 2025-03-26 05:40:50.559 2025-03-26 05:40:50.559 2100 FEE 443329 659 \N \N 6113075 2025-03-26 05:40:50.559 2025-03-26 05:40:50.559 18900 TIP 443329 17568 \N \N 6113078 2025-03-26 05:40:58.848 2025-03-26 05:40:58.848 2100 FEE 443316 1425 \N \N 6113079 2025-03-26 05:40:58.848 2025-03-26 05:40:58.848 18900 TIP 443316 21413 \N \N 6113094 2025-03-26 05:42:25.421 2025-03-26 05:42:25.421 2100 FEE 443545 11897 \N \N 6113095 2025-03-26 05:42:25.421 2025-03-26 05:42:25.421 18900 TIP 443545 21172 \N \N 6044088 2025-03-20 06:29:55.182 2025-03-20 06:29:55.182 27000 TIP 436312 9496 \N \N 6044108 2025-03-20 06:31:33.155 2025-03-20 06:31:33.155 7100 FEE 433799 21166 \N \N 6044109 2025-03-20 06:31:33.155 2025-03-20 06:31:33.155 63900 TIP 433799 14220 \N \N 6044116 2025-03-20 06:32:05.664 2025-03-20 06:32:05.664 900 FEE 436258 9339 \N \N 6044117 2025-03-20 06:32:05.664 2025-03-20 06:32:05.664 8100 TIP 436258 16348 \N \N 6044132 2025-03-20 06:32:45.695 2025-03-20 06:32:45.695 100000 FEE 436316 2056 \N \N 6044135 2025-03-20 06:32:49.599 2025-03-20 06:32:49.599 1000 FEE 435986 20751 \N \N 6044136 2025-03-20 06:32:49.599 2025-03-20 06:32:49.599 9000 TIP 435986 27 \N \N 6044141 2025-03-20 06:33:00.793 2025-03-20 06:33:00.793 1000 FEE 436197 650 \N \N 6044142 2025-03-20 06:33:00.793 2025-03-20 06:33:00.793 9000 TIP 436197 1605 \N \N 6044148 2025-03-20 06:33:41.231 2025-03-20 06:33:41.231 1000 FEE 435643 21571 \N \N 6044149 2025-03-20 06:33:41.231 2025-03-20 06:33:41.231 9000 TIP 435643 8004 \N \N 6044150 2025-03-20 06:33:41.383 2025-03-20 06:33:41.383 1000 FEE 435643 644 \N \N 6044151 2025-03-20 06:33:41.383 2025-03-20 06:33:41.383 9000 TIP 435643 5308 \N \N 6044162 2025-03-20 06:36:21.615 2025-03-20 06:36:21.615 5000 FEE 434020 13587 \N \N 6044163 2025-03-20 06:36:21.615 2025-03-20 06:36:21.615 45000 TIP 434020 11798 \N \N 6044198 2025-03-20 06:43:34.808 2025-03-20 06:43:34.808 2100 FEE 436174 21079 \N \N 6044199 2025-03-20 06:43:34.808 2025-03-20 06:43:34.808 18900 TIP 436174 10719 \N \N 6044203 2025-03-20 06:44:28.136 2025-03-20 06:44:28.136 7100 FEE 436318 12102 \N \N 6044204 2025-03-20 06:44:28.136 2025-03-20 06:44:28.136 63900 TIP 436318 11395 \N \N 6044205 2025-03-20 06:44:44.617 2025-03-20 06:44:44.617 1000 FEE 436325 12072 \N \N 6044207 2025-03-20 06:45:16.541 2025-03-20 06:45:16.541 5000 FEE 434874 18449 \N \N 6044208 2025-03-20 06:45:16.541 2025-03-20 06:45:16.541 45000 TIP 434874 7766 \N \N 6044215 2025-03-20 06:45:52.819 2025-03-20 06:45:52.819 100 FEE 436287 16876 \N \N 6044216 2025-03-20 06:45:52.819 2025-03-20 06:45:52.819 900 TIP 436287 9307 \N \N 6044249 2025-03-20 06:52:23.537 2025-03-20 06:52:23.537 2100 FEE 436322 21083 \N \N 6044250 2025-03-20 06:52:23.537 2025-03-20 06:52:23.537 18900 TIP 436322 20222 \N \N 6044268 2025-03-20 06:53:44.523 2025-03-20 06:53:44.523 1000 FEE 436326 15941 \N \N 6044269 2025-03-20 06:53:44.523 2025-03-20 06:53:44.523 9000 TIP 436326 16747 \N \N 6044282 2025-03-20 06:53:46.043 2025-03-20 06:53:46.043 1000 FEE 436326 797 \N \N 6044283 2025-03-20 06:53:46.043 2025-03-20 06:53:46.043 9000 TIP 436326 673 \N \N 6044299 2025-03-20 06:54:22.207 2025-03-20 06:54:22.207 0 FEE 436325 1712 \N \N 6044302 2025-03-20 06:54:30.85 2025-03-20 06:54:30.85 1600 FEE 436322 8416 \N \N 6044303 2025-03-20 06:54:30.85 2025-03-20 06:54:30.85 14400 TIP 436322 2330 \N \N 6044312 2025-03-20 06:54:54.148 2025-03-20 06:54:54.148 8300 FEE 436326 8945 \N \N 6044313 2025-03-20 06:54:54.148 2025-03-20 06:54:54.148 74700 TIP 436326 16653 \N \N 6044315 2025-03-20 06:55:39.989 2025-03-20 06:55:39.989 1600 FEE 436326 8985 \N \N 6044316 2025-03-20 06:55:39.989 2025-03-20 06:55:39.989 14400 TIP 436326 1602 \N \N 6044155 2025-03-20 06:33:45.278 2025-03-20 06:33:45.278 100000 FEE 436318 7827 \N \N 6044159 2025-03-20 06:36:12.275 2025-03-20 06:36:12.275 2100 FEE 436313 21334 \N \N 6044160 2025-03-20 06:36:12.275 2025-03-20 06:36:12.275 18900 TIP 436313 20892 \N \N 6044177 2025-03-20 06:38:35.957 2025-03-20 06:38:35.957 5000 FEE 434115 20023 \N \N 6044178 2025-03-20 06:38:35.957 2025-03-20 06:38:35.957 45000 TIP 434115 5728 \N \N 6044224 2025-03-20 06:48:18.902 2025-03-20 06:48:18.902 2000 FEE 436303 7674 \N \N 6044225 2025-03-20 06:48:18.902 2025-03-20 06:48:18.902 18000 TIP 436303 11450 \N \N 6044237 2025-03-20 06:49:41.225 2025-03-20 06:49:41.225 1000 FEE 436323 11298 \N \N 6044238 2025-03-20 06:49:41.225 2025-03-20 06:49:41.225 9000 TIP 436323 18068 \N \N 6044241 2025-03-20 06:49:41.619 2025-03-20 06:49:41.619 1000 FEE 436323 13399 \N \N 6044242 2025-03-20 06:49:41.619 2025-03-20 06:49:41.619 9000 TIP 436323 14910 \N \N 6044256 2025-03-20 06:53:31.545 2025-03-20 06:53:31.545 100000 FEE 436331 1652 \N \N 6044258 2025-03-20 06:53:43.414 2025-03-20 06:53:43.414 1600 FEE 436290 9438 \N \N 6044259 2025-03-20 06:53:43.414 2025-03-20 06:53:43.414 14400 TIP 436290 8287 \N \N 6044262 2025-03-20 06:53:43.885 2025-03-20 06:53:43.885 1000 FEE 436326 6360 \N \N 6044263 2025-03-20 06:53:43.885 2025-03-20 06:53:43.885 9000 TIP 436326 14015 \N \N 6044272 2025-03-20 06:53:45.018 2025-03-20 06:53:45.018 1000 FEE 436326 5499 \N \N 6044273 2025-03-20 06:53:45.018 2025-03-20 06:53:45.018 9000 TIP 436326 16978 \N \N 6044288 2025-03-20 06:53:47.135 2025-03-20 06:53:47.135 1000 FEE 436326 18441 \N \N 6044289 2025-03-20 06:53:47.135 2025-03-20 06:53:47.135 9000 TIP 436326 4314 \N \N 6044323 2025-03-20 06:56:36.505 2025-03-20 06:56:36.505 1000 FEE 436334 21063 \N \N 6044379 2025-03-20 06:59:39.345 2025-03-20 06:59:39.345 4000 FEE 436213 21666 \N \N 6044380 2025-03-20 06:59:39.345 2025-03-20 06:59:39.345 36000 TIP 436213 701 \N \N 6044407 2025-03-20 07:01:22.274 2025-03-20 07:01:22.274 1000 FEE 435063 1425 \N \N 6044408 2025-03-20 07:01:22.274 2025-03-20 07:01:22.274 9000 TIP 435063 12356 \N \N 6044411 2025-03-20 07:01:26.768 2025-03-20 07:01:26.768 1000 FEE 435456 9346 \N \N 6044412 2025-03-20 07:01:26.768 2025-03-20 07:01:26.768 9000 TIP 435456 20377 \N \N 6044415 2025-03-20 07:01:28.13 2025-03-20 07:01:28.13 1000 FEE 435246 6555 \N \N 6044416 2025-03-20 07:01:28.13 2025-03-20 07:01:28.13 9000 TIP 435246 16126 \N \N 6044433 2025-03-20 07:02:24.201 2025-03-20 07:02:24.201 1000 FEE 436347 3745 \N \N 6044442 2025-03-20 07:02:50.769 2025-03-20 07:02:50.769 1000 FEE 435786 2195 \N \N 6044443 2025-03-20 07:02:50.769 2025-03-20 07:02:50.769 9000 TIP 435786 14404 \N \N 6044456 2025-03-20 07:04:04.343 2025-03-20 07:04:04.343 7700 FEE 435939 15890 \N \N 6044457 2025-03-20 07:04:04.343 2025-03-20 07:04:04.343 69300 TIP 435939 5195 \N \N 6044464 2025-03-20 07:04:10.118 2025-03-20 07:04:10.118 1000 FEE 435882 13162 \N \N 6044465 2025-03-20 07:04:10.118 2025-03-20 07:04:10.118 9000 TIP 435882 16410 \N \N 6044466 2025-03-20 07:04:10.338 2025-03-20 07:04:10.338 1000 FEE 435882 17014 \N \N 6044467 2025-03-20 07:04:10.338 2025-03-20 07:04:10.338 9000 TIP 435882 21833 \N \N 6044477 2025-03-20 07:04:15.329 2025-03-20 07:04:15.329 1000 FEE 435882 9335 \N \N 6044478 2025-03-20 07:04:15.329 2025-03-20 07:04:15.329 9000 TIP 435882 3478 \N \N 6044481 2025-03-20 07:04:49.889 2025-03-20 07:04:49.889 1000 FEE 436352 6382 \N \N 6044488 2025-03-20 07:04:53.605 2025-03-20 07:04:53.605 1000 FEE 435882 16684 \N \N 6044489 2025-03-20 07:04:53.605 2025-03-20 07:04:53.605 9000 TIP 435882 20275 \N \N 6044501 2025-03-20 07:05:58.685 2025-03-20 07:05:58.685 100 FEE 436345 20099 \N \N 6044502 2025-03-20 07:05:58.685 2025-03-20 07:05:58.685 900 TIP 436345 21233 \N \N 6044507 2025-03-20 07:06:45.537 2025-03-20 07:06:45.537 100 FEE 436317 706 \N \N 6044508 2025-03-20 07:06:45.537 2025-03-20 07:06:45.537 900 TIP 436317 5497 \N \N 6044509 2025-03-20 07:06:46.953 2025-03-20 07:06:46.953 900 FEE 436317 1429 \N \N 6044510 2025-03-20 07:06:46.953 2025-03-20 07:06:46.953 8100 TIP 436317 6393 \N \N 6044534 2025-03-20 07:09:42.097 2025-03-20 07:09:42.097 3300 FEE 5705 3656 \N \N 6044535 2025-03-20 07:09:42.097 2025-03-20 07:09:42.097 29700 TIP 5705 10608 \N \N 6044539 2025-03-20 07:10:40.618 2025-03-20 07:10:40.618 500 FEE 436321 807 \N \N 6044540 2025-03-20 07:10:40.618 2025-03-20 07:10:40.618 4500 TIP 436321 6360 \N \N 6112819 2025-03-26 05:27:42.996 2025-03-26 05:27:42.996 1000 POLL 442751 21164 \N \N 6112835 2025-03-26 05:29:22.757 2025-03-26 05:29:22.757 1700 FEE 443528 1652 \N \N 6112836 2025-03-26 05:29:22.757 2025-03-26 05:29:22.757 15300 TIP 443528 13169 \N \N 6112853 2025-03-26 05:31:05.735 2025-03-26 05:31:05.735 300 FEE 443487 4487 \N \N 6112854 2025-03-26 05:31:05.735 2025-03-26 05:31:05.735 2700 TIP 443487 10818 \N \N 6112855 2025-03-26 05:31:11.33 2025-03-26 05:31:11.33 21000 FEE 443550 17570 \N \N 6112881 2025-03-26 05:34:02.372 2025-03-26 05:34:02.372 1000 FEE 443559 814 \N \N 6112885 2025-03-26 05:34:39.05 2025-03-26 05:34:39.05 1000 FEE 443560 21248 \N \N 6112899 2025-03-26 05:36:01.789 2025-03-26 05:36:01.789 3100 FEE 443329 19094 \N \N 6112900 2025-03-26 05:36:01.789 2025-03-26 05:36:01.789 27900 TIP 443329 16230 \N \N 6112915 2025-03-26 05:36:56.72 2025-03-26 05:36:56.72 0 FEE 443561 21521 \N \N 6112925 2025-03-26 05:37:39.856 2025-03-26 05:37:39.856 2100 FEE 443463 16177 \N \N 6112926 2025-03-26 05:37:39.856 2025-03-26 05:37:39.856 18900 TIP 443463 18225 \N \N 6112927 2025-03-26 05:37:43.878 2025-03-26 05:37:43.878 0 FEE 443561 1785 \N \N 6112937 2025-03-26 05:38:08.172 2025-03-26 05:38:08.172 2100 FEE 443372 20433 \N \N 6112938 2025-03-26 05:38:08.172 2025-03-26 05:38:08.172 18900 TIP 443372 16808 \N \N 6112944 2025-03-26 05:38:33.675 2025-03-26 05:38:33.675 3000 FEE 443572 1173 \N \N 6112945 2025-03-26 05:38:33.675 2025-03-26 05:38:33.675 27000 TIP 443572 4763 \N \N 6112948 2025-03-26 05:38:38.096 2025-03-26 05:38:38.096 1000 FEE 443573 2293 \N \N 6112970 2025-03-26 05:39:16.754 2025-03-26 05:39:16.754 15400 FEE 443274 8729 \N \N 6112971 2025-03-26 05:39:16.754 2025-03-26 05:39:16.754 138600 TIP 443274 20963 \N \N 6112978 2025-03-26 05:39:24.809 2025-03-26 05:39:24.809 7700 FEE 443372 11073 \N \N 6112979 2025-03-26 05:39:24.809 2025-03-26 05:39:24.809 69300 TIP 443372 17638 \N \N 6112996 2025-03-26 05:39:25.929 2025-03-26 05:39:25.929 7700 FEE 443372 9921 \N \N 6112997 2025-03-26 05:39:25.929 2025-03-26 05:39:25.929 69300 TIP 443372 20799 \N \N 6113022 2025-03-26 05:39:31.025 2025-03-26 05:39:31.025 7700 FEE 443179 680 \N \N 6113023 2025-03-26 05:39:31.025 2025-03-26 05:39:31.025 69300 TIP 443179 15843 \N \N 6113026 2025-03-26 05:39:40.48 2025-03-26 05:39:40.48 7700 FEE 443545 3642 \N \N 6113027 2025-03-26 05:39:40.48 2025-03-26 05:39:40.48 69300 TIP 443545 20924 \N \N 6113030 2025-03-26 05:39:41.049 2025-03-26 05:39:41.049 7700 FEE 443545 17953 \N \N 6113031 2025-03-26 05:39:41.049 2025-03-26 05:39:41.049 69300 TIP 443545 16410 \N \N 6113084 2025-03-26 05:41:19.864 2025-03-26 05:41:19.864 2100 FEE 443297 4654 \N \N 6113085 2025-03-26 05:41:19.864 2025-03-26 05:41:19.864 18900 TIP 443297 837 \N \N 6113135 2025-03-26 05:45:55.944 2025-03-26 05:45:55.944 7700 FEE 443274 21291 \N \N 6113136 2025-03-26 05:45:55.944 2025-03-26 05:45:55.944 69300 TIP 443274 14449 \N \N 6113141 2025-03-26 05:45:57.235 2025-03-26 05:45:57.235 7700 FEE 443272 11678 \N \N 6113142 2025-03-26 05:45:57.235 2025-03-26 05:45:57.235 69300 TIP 443272 925 \N \N 6113153 2025-03-26 05:46:07.501 2025-03-26 05:46:07.501 300 FEE 443545 1135 \N \N 6113154 2025-03-26 05:46:07.501 2025-03-26 05:46:07.501 2700 TIP 443545 13878 \N \N 6113187 2025-03-26 05:46:12.293 2025-03-26 05:46:12.293 300 FEE 442904 15549 \N \N 6113188 2025-03-26 05:46:12.293 2025-03-26 05:46:12.293 2700 TIP 442904 21391 \N \N 6113197 2025-03-26 05:46:13.206 2025-03-26 05:46:13.206 300 FEE 442904 16684 \N \N 6113198 2025-03-26 05:46:13.206 2025-03-26 05:46:13.206 2700 TIP 442904 687 \N \N 6113200 2025-03-26 05:46:13.406 2025-03-26 05:46:13.406 300 FEE 442904 5487 \N \N 6113201 2025-03-26 05:46:13.406 2025-03-26 05:46:13.406 2700 TIP 442904 21254 \N \N 6113216 2025-03-26 05:46:17.624 2025-03-26 05:46:17.624 3100 FEE 443581 4250 \N \N 6113217 2025-03-26 05:46:17.624 2025-03-26 05:46:17.624 27900 TIP 443581 13544 \N \N 6113244 2025-03-26 05:47:35.115 2025-03-26 05:47:35.115 2100 FEE 443583 7583 \N \N 6113245 2025-03-26 05:47:35.115 2025-03-26 05:47:35.115 18900 TIP 443583 16424 \N \N 6113267 2025-03-26 05:49:03.778 2025-03-26 05:49:03.778 21000 FEE 443589 20094 \N \N 6113279 2025-03-26 05:50:01.52 2025-03-26 05:50:01.52 2700 FEE 443319 1881 \N \N 6113280 2025-03-26 05:50:01.52 2025-03-26 05:50:01.52 24300 TIP 443319 16356 \N \N 6113299 2025-03-26 05:50:55.801 2025-03-26 05:50:55.801 21000 FEE 443593 2039 \N \N 6113338 2025-03-26 05:54:12.638 2025-03-26 05:54:12.638 9000 FEE 443583 21159 \N \N 6113339 2025-03-26 05:54:12.638 2025-03-26 05:54:12.638 81000 TIP 443583 2213 \N \N 6044293 2025-03-20 06:53:56.546 2025-03-20 06:53:56.546 74700 TIP 436246 20412 \N \N 6044300 2025-03-20 06:54:24.023 2025-03-20 06:54:24.023 1000 FEE 435767 10484 \N \N 6044301 2025-03-20 06:54:24.023 2025-03-20 06:54:24.023 9000 TIP 435767 18274 \N \N 6044306 2025-03-20 06:54:53.825 2025-03-20 06:54:53.825 8300 FEE 436326 10311 \N \N 6044307 2025-03-20 06:54:53.825 2025-03-20 06:54:53.825 74700 TIP 436326 1000 \N \N 6044310 2025-03-20 06:54:54.017 2025-03-20 06:54:54.017 8300 FEE 436326 928 \N \N 6044311 2025-03-20 06:54:54.017 2025-03-20 06:54:54.017 74700 TIP 436326 15091 \N \N 6044326 2025-03-20 06:57:08.27 2025-03-20 06:57:08.27 1000 FEE 436335 16667 \N \N 6044330 2025-03-20 06:57:49.565 2025-03-20 06:57:49.565 1000 FEE 436338 14857 \N \N 6044331 2025-03-20 06:57:56.724 2025-03-20 06:57:56.724 1000 FEE 436339 21501 \N \N 6044367 2025-03-20 06:59:31.276 2025-03-20 06:59:31.276 4000 FEE 436093 825 \N \N 6044368 2025-03-20 06:59:31.276 2025-03-20 06:59:31.276 36000 TIP 436093 1585 \N \N 6044377 2025-03-20 06:59:39.287 2025-03-20 06:59:39.287 4000 FEE 436248 12959 \N \N 6044378 2025-03-20 06:59:39.287 2025-03-20 06:59:39.287 36000 TIP 436248 16126 \N \N 6044381 2025-03-20 06:59:56.572 2025-03-20 06:59:56.572 4000 FEE 436344 1120 \N \N 6044382 2025-03-20 06:59:56.572 2025-03-20 06:59:56.572 36000 TIP 436344 12561 \N \N 6044392 2025-03-20 07:00:20.163 2025-03-20 07:00:20.163 1000 FEE 435652 9982 \N \N 6044393 2025-03-20 07:00:20.163 2025-03-20 07:00:20.163 9000 TIP 435652 15491 \N \N 6044426 2025-03-20 07:01:58.824 2025-03-20 07:01:58.824 1000 FEE 435678 684 \N \N 6044427 2025-03-20 07:01:58.824 2025-03-20 07:01:58.824 9000 TIP 435678 1620 \N \N 6044430 2025-03-20 07:02:08.392 2025-03-20 07:02:08.392 2000 FEE 436293 886 \N \N 6044431 2025-03-20 07:02:08.392 2025-03-20 07:02:08.392 18000 TIP 436293 2328 \N \N 6044436 2025-03-20 07:02:33.495 2025-03-20 07:02:33.495 1000 FEE 436349 651 \N \N 6044440 2025-03-20 07:02:50.492 2025-03-20 07:02:50.492 1000 FEE 435786 2402 \N \N 6044441 2025-03-20 07:02:50.492 2025-03-20 07:02:50.492 9000 TIP 435786 20504 \N \N 6044446 2025-03-20 07:02:51.376 2025-03-20 07:02:51.376 1000 FEE 435786 1474 \N \N 6044447 2025-03-20 07:02:51.376 2025-03-20 07:02:51.376 9000 TIP 435786 19417 \N \N 6044450 2025-03-20 07:04:01.275 2025-03-20 07:04:01.275 1000 FEE 435908 13398 \N \N 6044451 2025-03-20 07:04:01.275 2025-03-20 07:04:01.275 9000 TIP 435908 20864 \N \N 6044511 2025-03-20 07:07:03.818 2025-03-20 07:07:03.818 1000 FEE 436354 10818 \N \N 6044512 2025-03-20 07:07:04.124 2025-03-20 07:07:04.124 2100 FEE 436338 5637 \N \N 6044513 2025-03-20 07:07:04.124 2025-03-20 07:07:04.124 18900 TIP 436338 16816 \N \N 6044518 2025-03-20 07:07:37.906 2025-03-20 07:07:37.906 2000 FEE 436129 11678 \N \N 6044519 2025-03-20 07:07:37.906 2025-03-20 07:07:37.906 18000 TIP 436129 17690 \N \N 6044520 2025-03-20 07:07:38.24 2025-03-20 07:07:38.24 1000 FEE 436356 14657 \N \N 6044533 2025-03-20 07:09:22.323 2025-03-20 07:09:22.323 1000 FEE 436359 21296 \N \N 6044550 2025-03-20 07:12:23.404 2025-03-20 07:12:23.404 3300 FEE 436142 4973 \N \N 6044551 2025-03-20 07:12:23.404 2025-03-20 07:12:23.404 29700 TIP 436142 21320 \N \N 6044579 2025-03-20 07:12:36.756 2025-03-20 07:12:36.756 100 FEE 436359 5085 \N \N 6044580 2025-03-20 07:12:36.756 2025-03-20 07:12:36.756 900 TIP 436359 17275 \N \N 6044623 2025-03-20 07:17:15.409 2025-03-20 07:17:15.409 2100 FEE 436326 17331 \N \N 6044624 2025-03-20 07:17:15.409 2025-03-20 07:17:15.409 18900 TIP 436326 20133 \N \N 6044669 2025-03-20 07:22:45.314 2025-03-20 07:22:45.314 0 FEE 436374 21212 \N \N 6044675 2025-03-20 07:23:16.417 2025-03-20 07:23:16.417 1000 FEE 436375 20616 \N \N 6044684 2025-03-20 07:23:19.962 2025-03-20 07:23:19.962 1000 FEE 436362 15336 \N \N 6044685 2025-03-20 07:23:19.962 2025-03-20 07:23:19.962 9000 TIP 436362 21442 \N \N 6044712 2025-03-20 07:24:40.341 2025-03-20 07:24:40.341 10000 FEE 436378 10013 \N \N 6044723 2025-03-20 07:25:12.917 2025-03-20 07:25:12.917 1000 FEE 435907 3518 \N \N 6044724 2025-03-20 07:25:12.917 2025-03-20 07:25:12.917 9000 TIP 435907 20642 \N \N 6044734 2025-03-20 07:25:14.953 2025-03-20 07:25:14.953 1000 FEE 435907 19333 \N \N 6044735 2025-03-20 07:25:14.953 2025-03-20 07:25:14.953 9000 TIP 435907 8376 \N \N 6044750 2025-03-20 07:26:24.065 2025-03-20 07:26:24.065 1000 FEE 436328 20963 \N \N 6044751 2025-03-20 07:26:24.065 2025-03-20 07:26:24.065 9000 TIP 436328 6777 \N \N 6044758 2025-03-20 07:30:02.975 2025-03-20 07:30:02.975 3200 FEE 436343 1733 \N \N 6044759 2025-03-20 07:30:02.975 2025-03-20 07:30:02.975 28800 TIP 436343 21281 \N \N 6044772 2025-03-20 07:32:10.556 2025-03-20 07:32:10.556 0 FEE 436385 2640 \N \N 6044784 2025-03-20 07:34:49.84 2025-03-20 07:34:49.84 3000 FEE 436275 21393 \N \N 6044785 2025-03-20 07:34:49.84 2025-03-20 07:34:49.84 27000 TIP 436275 2789 \N \N 6044790 2025-03-20 07:36:22.196 2025-03-20 07:36:22.196 1000 FEE 436388 5870 \N \N 6044810 2025-03-20 07:40:13.139 2025-03-20 07:40:13.139 1000 FEE 436273 691 \N \N 6044811 2025-03-20 07:40:13.139 2025-03-20 07:40:13.139 9000 TIP 436273 886 \N \N 6044819 2025-03-20 07:41:55.497 2025-03-20 07:41:55.497 1000 FEE 436393 9496 \N \N 6044820 2025-03-20 07:42:10.322 2025-03-20 07:42:10.322 3000 FEE 436391 13177 \N \N 6044821 2025-03-20 07:42:10.322 2025-03-20 07:42:10.322 27000 TIP 436391 1130 \N \N 6044832 2025-03-20 07:43:25.753 2025-03-20 07:43:25.753 1000 FEE 436275 15703 \N \N 6044833 2025-03-20 07:43:25.753 2025-03-20 07:43:25.753 9000 TIP 436275 21578 \N \N 6044860 2025-03-20 07:48:55.481 2025-03-20 07:48:55.481 2100 FEE 436399 9184 \N \N 6044861 2025-03-20 07:48:55.481 2025-03-20 07:48:55.481 18900 TIP 436399 11477 \N \N 6044880 2025-03-20 07:52:23.92 2025-03-20 07:52:23.92 1000 FEE 436407 739 \N \N 6044899 2025-03-20 07:57:16.066 2025-03-20 07:57:16.066 0 FEE 436411 19198 \N \N 6044918 2025-03-20 08:00:14.125 2025-03-20 08:00:14.125 100 FEE 435178 6555 \N \N 6044919 2025-03-20 08:00:14.125 2025-03-20 08:00:14.125 900 TIP 435178 750 \N \N 6044925 2025-03-20 08:00:28.731 2025-03-20 08:00:28.731 1000 POLL 436323 16929 \N \N 6044988 2025-03-20 08:05:23.473 2025-03-20 08:05:23.473 2100 FEE 435922 5708 \N \N 6044989 2025-03-20 08:05:23.473 2025-03-20 08:05:23.473 18900 TIP 435922 651 \N \N 6044991 2025-03-20 08:05:59.531 2025-03-20 08:05:59.531 3300 FEE 436323 617 \N \N 6044992 2025-03-20 08:05:59.531 2025-03-20 08:05:59.531 29700 TIP 436323 19888 \N \N 6045003 2025-03-20 08:06:40.511 2025-03-20 08:06:40.511 0 FEE 436413 1474 \N \N 6045037 2025-03-20 08:08:09.7 2025-03-20 08:08:09.7 100 FEE 436223 21303 \N \N 6045038 2025-03-20 08:08:09.7 2025-03-20 08:08:09.7 900 TIP 436223 1959 \N \N 6045043 2025-03-20 08:08:20.076 2025-03-20 08:08:20.076 100 FEE 436372 20655 \N \N 6045044 2025-03-20 08:08:20.076 2025-03-20 08:08:20.076 900 TIP 436372 19943 \N \N 6045048 2025-03-20 08:08:48.828 2025-03-20 08:08:48.828 1000 FEE 436422 20254 \N \N 6045056 2025-03-20 08:09:08.085 2025-03-20 08:09:08.085 2100 FEE 436198 8289 \N \N 6045057 2025-03-20 08:09:08.085 2025-03-20 08:09:08.085 18900 TIP 436198 7818 \N \N 6045067 2025-03-20 08:09:23.071 2025-03-20 08:09:23.071 2100 FEE 436197 17638 \N \N 6045068 2025-03-20 08:09:23.071 2025-03-20 08:09:23.071 18900 TIP 436197 14370 \N \N 6045086 2025-03-20 08:09:56.866 2025-03-20 08:09:56.866 2100 FEE 435596 11491 \N \N 6045087 2025-03-20 08:09:56.866 2025-03-20 08:09:56.866 18900 TIP 435596 6653 \N \N 6045098 2025-03-20 08:10:27.637 2025-03-20 08:10:27.637 1000 FEE 436426 20817 \N \N 6045135 2025-03-20 08:12:53.66 2025-03-20 08:12:53.66 2100 FEE 435564 21442 \N \N 6045136 2025-03-20 08:12:53.66 2025-03-20 08:12:53.66 18900 TIP 435564 7125 \N \N 6045161 2025-03-20 08:14:31.269 2025-03-20 08:14:31.269 2100 FEE 435847 9159 \N \N 6045162 2025-03-20 08:14:31.269 2025-03-20 08:14:31.269 18900 TIP 435847 19777 \N \N 6045168 2025-03-20 08:14:40.238 2025-03-20 08:14:40.238 500 FEE 436409 20901 \N \N 6045169 2025-03-20 08:14:40.238 2025-03-20 08:14:40.238 4500 TIP 436409 4166 \N \N 6045219 2025-03-20 08:16:34.061 2025-03-20 08:16:34.061 2100 FEE 436326 19930 \N \N 6045220 2025-03-20 08:16:34.061 2025-03-20 08:16:34.061 18900 TIP 436326 21518 \N \N 6045227 2025-03-20 08:16:35.03 2025-03-20 08:16:35.03 2100 FEE 436326 2151 \N \N 6045228 2025-03-20 08:16:35.03 2025-03-20 08:16:35.03 18900 TIP 436326 9494 \N \N 6045251 2025-03-20 08:17:06.689 2025-03-20 08:17:06.689 1100 FEE 435847 15103 \N \N 6045252 2025-03-20 08:17:06.689 2025-03-20 08:17:06.689 9900 TIP 435847 630 \N \N 6045298 2025-03-20 08:20:16.367 2025-03-20 08:20:16.367 2300 FEE 436437 19992 \N \N 6045299 2025-03-20 08:20:16.367 2025-03-20 08:20:16.367 20700 TIP 436437 14015 \N \N 6045306 2025-03-20 08:20:16.915 2025-03-20 08:20:16.915 2300 FEE 436437 1718 \N \N 6044333 2025-03-20 06:58:16.002 2025-03-20 06:58:16.002 700 FEE 436224 703 \N \N 6044334 2025-03-20 06:58:16.002 2025-03-20 06:58:16.002 6300 TIP 436224 986 \N \N 6044342 2025-03-20 06:58:23.411 2025-03-20 06:58:23.411 1000 FEE 436180 17838 \N \N 6044343 2025-03-20 06:58:23.411 2025-03-20 06:58:23.411 9000 TIP 436180 18678 \N \N 6044350 2025-03-20 06:58:46.172 2025-03-20 06:58:46.172 1000 FEE 435466 18829 \N \N 6044351 2025-03-20 06:58:46.172 2025-03-20 06:58:46.172 9000 TIP 435466 14939 \N \N 6044363 2025-03-20 06:59:14.344 2025-03-20 06:59:14.344 1000 FEE 435560 18351 \N \N 6044364 2025-03-20 06:59:14.344 2025-03-20 06:59:14.344 9000 TIP 435560 5112 \N \N 6044371 2025-03-20 06:59:32.834 2025-03-20 06:59:32.834 4000 FEE 436136 8713 \N \N 6044372 2025-03-20 06:59:32.834 2025-03-20 06:59:32.834 36000 TIP 436136 21444 \N \N 6044389 2025-03-20 07:00:16.082 2025-03-20 07:00:16.082 1000 FEE 436346 21666 \N \N 6044390 2025-03-20 07:00:18.861 2025-03-20 07:00:18.861 1000 FEE 435684 20310 \N \N 6044391 2025-03-20 07:00:18.861 2025-03-20 07:00:18.861 9000 TIP 435684 739 \N \N 6044452 2025-03-20 07:04:01.702 2025-03-20 07:04:01.702 1000 FEE 435908 15139 \N \N 6044453 2025-03-20 07:04:01.702 2025-03-20 07:04:01.702 9000 TIP 435908 1162 \N \N 6044486 2025-03-20 07:04:53.193 2025-03-20 07:04:53.193 1000 FEE 435882 9366 \N \N 6044487 2025-03-20 07:04:53.193 2025-03-20 07:04:53.193 9000 TIP 435882 12220 \N \N 6044491 2025-03-20 07:04:54.069 2025-03-20 07:04:54.069 1000 FEE 435882 775 \N \N 6044492 2025-03-20 07:04:54.069 2025-03-20 07:04:54.069 9000 TIP 435882 2111 \N \N 6044517 2025-03-20 07:07:18.025 2025-03-20 07:07:18.025 21000 FEE 436355 13854 \N \N 6044523 2025-03-20 07:07:47.248 2025-03-20 07:07:47.248 27000 FEE 436353 5597 \N \N 6044524 2025-03-20 07:07:47.248 2025-03-20 07:07:47.248 243000 TIP 436353 1717 \N \N 6044543 2025-03-20 07:10:53.562 2025-03-20 07:10:53.562 500 FEE 436024 14169 \N \N 6044544 2025-03-20 07:10:53.562 2025-03-20 07:10:53.562 4500 TIP 436024 21815 \N \N 6044561 2025-03-20 07:12:34.908 2025-03-20 07:12:34.908 100 FEE 436359 21116 \N \N 6044562 2025-03-20 07:12:34.908 2025-03-20 07:12:34.908 900 TIP 436359 13097 \N \N 6044565 2025-03-20 07:12:35.322 2025-03-20 07:12:35.322 100 FEE 436359 6653 \N \N 6044566 2025-03-20 07:12:35.322 2025-03-20 07:12:35.322 900 TIP 436359 21555 \N \N 6044581 2025-03-20 07:12:37.159 2025-03-20 07:12:37.159 100 FEE 436359 6148 \N \N 6044582 2025-03-20 07:12:37.159 2025-03-20 07:12:37.159 900 TIP 436359 15510 \N \N 6044585 2025-03-20 07:12:37.636 2025-03-20 07:12:37.636 100 FEE 436359 5757 \N \N 6044586 2025-03-20 07:12:37.636 2025-03-20 07:12:37.636 900 TIP 436359 16684 \N \N 6044589 2025-03-20 07:12:38.95 2025-03-20 07:12:38.95 100 FEE 436359 1162 \N \N 6044590 2025-03-20 07:12:38.95 2025-03-20 07:12:38.95 900 TIP 436359 1512 \N \N 6044627 2025-03-20 07:17:21.168 2025-03-20 07:17:21.168 1000 FEE 436356 12102 \N \N 6044628 2025-03-20 07:17:21.168 2025-03-20 07:17:21.168 9000 TIP 436356 19806 \N \N 6044650 2025-03-20 07:18:04.902 2025-03-20 07:18:04.902 2700 FEE 436223 5444 \N \N 6044651 2025-03-20 07:18:04.902 2025-03-20 07:18:04.902 24300 TIP 436223 675 \N \N 6044657 2025-03-20 07:18:58.51 2025-03-20 07:18:58.51 1000 FEE 436371 805 \N \N 6044661 2025-03-20 07:20:38.968 2025-03-20 07:20:38.968 2100 FEE 436241 14791 \N \N 6044662 2025-03-20 07:20:38.968 2025-03-20 07:20:38.968 18900 TIP 436241 10719 \N \N 6044670 2025-03-20 07:23:01.087 2025-03-20 07:23:01.087 2100 FEE 436281 20799 \N \N 6044671 2025-03-20 07:23:01.087 2025-03-20 07:23:01.087 18900 TIP 436281 21571 \N \N 6044688 2025-03-20 07:23:24.209 2025-03-20 07:23:24.209 3000 FEE 436373 919 \N \N 6044689 2025-03-20 07:23:24.209 2025-03-20 07:23:24.209 27000 TIP 436373 14449 \N \N 6044694 2025-03-20 07:23:35.338 2025-03-20 07:23:35.338 1000 FEE 436318 9833 \N \N 6044695 2025-03-20 07:23:35.338 2025-03-20 07:23:35.338 9000 TIP 436318 16789 \N \N 6044719 2025-03-20 07:25:12.365 2025-03-20 07:25:12.365 1000 FEE 435907 21263 \N \N 6044720 2025-03-20 07:25:12.365 2025-03-20 07:25:12.365 9000 TIP 435907 21164 \N \N 6044736 2025-03-20 07:25:14.969 2025-03-20 07:25:14.969 1000 FEE 435907 7983 \N \N 6044737 2025-03-20 07:25:14.969 2025-03-20 07:25:14.969 9000 TIP 435907 776 \N \N 6044755 2025-03-20 07:28:06.284 2025-03-20 07:28:06.284 100000 FEE 436382 19992 \N \N 6044763 2025-03-20 07:30:21.193 2025-03-20 07:30:21.193 1000 FEE 436040 1718 \N \N 6044764 2025-03-20 07:30:21.193 2025-03-20 07:30:21.193 9000 TIP 436040 15925 \N \N 6044824 2025-03-20 07:42:52.497 2025-03-20 07:42:52.497 1000 FEE 436395 5522 \N \N 6044831 2025-03-20 07:43:22.773 2025-03-20 07:43:22.773 100000 FEE 436397 1825 \N \N 6044850 2025-03-20 07:48:53.895 2025-03-20 07:48:53.895 1000 FEE 436398 20756 \N \N 6044851 2025-03-20 07:48:53.895 2025-03-20 07:48:53.895 9000 TIP 436398 2437 \N \N 6044867 2025-03-20 07:49:16.422 2025-03-20 07:49:16.422 10000 FEE 436269 20669 \N \N 6044868 2025-03-20 07:49:16.422 2025-03-20 07:49:16.422 90000 TIP 436269 17275 \N \N 6044881 2025-03-20 07:52:44.277 2025-03-20 07:52:44.277 1000 FEE 436152 20157 \N \N 6044882 2025-03-20 07:52:44.277 2025-03-20 07:52:44.277 9000 TIP 436152 14785 \N \N 6044886 2025-03-20 07:54:17.008 2025-03-20 07:54:17.008 500 FEE 436063 763 \N \N 6044887 2025-03-20 07:54:17.008 2025-03-20 07:54:17.008 4500 TIP 436063 11938 \N \N 6044913 2025-03-20 07:59:38.664 2025-03-20 07:59:38.664 210000 FEE 436413 18441 \N \N 6044914 2025-03-20 08:00:05.753 2025-03-20 08:00:05.753 100 FEE 436323 14657 \N \N 6044915 2025-03-20 08:00:05.753 2025-03-20 08:00:05.753 900 TIP 436323 21067 \N \N 6044921 2025-03-20 08:00:15.233 2025-03-20 08:00:15.233 9000 FEE 436323 21532 \N \N 6044922 2025-03-20 08:00:15.233 2025-03-20 08:00:15.233 81000 TIP 436323 1801 \N \N 6044927 2025-03-20 08:01:40.624 2025-03-20 08:01:40.624 1100 FEE 436413 19471 \N \N 6044928 2025-03-20 08:01:40.624 2025-03-20 08:01:40.624 9900 TIP 436413 1814 \N \N 6044950 2025-03-20 08:03:47.763 2025-03-20 08:03:47.763 3300 FEE 436174 10493 \N \N 6044951 2025-03-20 08:03:47.763 2025-03-20 08:03:47.763 29700 TIP 436174 12356 \N \N 6044960 2025-03-20 08:04:10.101 2025-03-20 08:04:10.101 3300 FEE 436062 10981 \N \N 6044961 2025-03-20 08:04:10.101 2025-03-20 08:04:10.101 29700 TIP 436062 717 \N \N 6044965 2025-03-20 08:04:23.398 2025-03-20 08:04:23.398 3300 FEE 436047 8380 \N \N 6044966 2025-03-20 08:04:23.398 2025-03-20 08:04:23.398 29700 TIP 436047 21057 \N \N 6044967 2025-03-20 08:04:28.819 2025-03-20 08:04:28.819 100 FEE 435669 20778 \N \N 6044968 2025-03-20 08:04:28.819 2025-03-20 08:04:28.819 900 TIP 435669 8954 \N \N 6044973 2025-03-20 08:04:53.431 2025-03-20 08:04:53.431 2100 FEE 435951 16229 \N \N 6044974 2025-03-20 08:04:53.431 2025-03-20 08:04:53.431 18900 TIP 435951 21791 \N \N 6044990 2025-03-20 08:05:33.749 2025-03-20 08:05:33.749 1000 FEE 436415 959 \N \N 6045004 2025-03-20 08:06:57.908 2025-03-20 08:06:57.908 3300 FEE 436343 7979 \N \N 6045005 2025-03-20 08:06:57.908 2025-03-20 08:06:57.908 29700 TIP 436343 1738 \N \N 6045013 2025-03-20 08:07:29.477 2025-03-20 08:07:29.477 6600 FEE 436115 3642 \N \N 6045014 2025-03-20 08:07:29.477 2025-03-20 08:07:29.477 59400 TIP 436115 19018 \N \N 6045032 2025-03-20 08:08:06.132 2025-03-20 08:08:06.132 2100 FEE 436326 9177 \N \N 6045033 2025-03-20 08:08:06.132 2025-03-20 08:08:06.132 18900 TIP 436326 6361 \N \N 6045036 2025-03-20 08:08:07.564 2025-03-20 08:08:07.564 1000 FEE 436419 16387 \N \N 6044338 2025-03-20 06:58:22.881 2025-03-20 06:58:22.881 2600 FEE 436130 10661 \N \N 6044339 2025-03-20 06:58:22.881 2025-03-20 06:58:22.881 23400 TIP 436130 8989 \N \N 6044348 2025-03-20 06:58:45.825 2025-03-20 06:58:45.825 1000 FEE 435466 18717 \N \N 6044349 2025-03-20 06:58:45.825 2025-03-20 06:58:45.825 9000 TIP 435466 12736 \N \N 6044353 2025-03-20 06:58:55.212 2025-03-20 06:58:55.212 700 FEE 436228 17275 \N \N 6044354 2025-03-20 06:58:55.212 2025-03-20 06:58:55.212 6300 TIP 436228 21014 \N \N 6044355 2025-03-20 06:59:07.412 2025-03-20 06:59:07.412 1000 FEE 436343 8726 \N \N 6044375 2025-03-20 06:59:34.897 2025-03-20 06:59:34.897 4000 FEE 436174 21356 \N \N 6044376 2025-03-20 06:59:34.897 2025-03-20 06:59:34.897 36000 TIP 436174 3456 \N \N 6044383 2025-03-20 06:59:57.891 2025-03-20 06:59:57.891 1000 FEE 436345 19193 \N \N 6044386 2025-03-20 07:00:05.303 2025-03-20 07:00:05.303 1000 FEE 435649 14515 \N \N 6044387 2025-03-20 07:00:05.303 2025-03-20 07:00:05.303 9000 TIP 435649 20710 \N \N 6044403 2025-03-20 07:01:21.923 2025-03-20 07:01:21.923 1000 FEE 435447 21506 \N \N 6044404 2025-03-20 07:01:21.923 2025-03-20 07:01:21.923 9000 TIP 435447 704 \N \N 6044417 2025-03-20 07:01:28.451 2025-03-20 07:01:28.451 1000 FEE 435246 2342 \N \N 6044418 2025-03-20 07:01:28.451 2025-03-20 07:01:28.451 9000 TIP 435246 20577 \N \N 6044424 2025-03-20 07:01:58.598 2025-03-20 07:01:58.598 1000 FEE 435678 20182 \N \N 6044425 2025-03-20 07:01:58.598 2025-03-20 07:01:58.598 9000 TIP 435678 21338 \N \N 6044454 2025-03-20 07:04:02.451 2025-03-20 07:04:02.451 1000 FEE 435908 17011 \N \N 6044455 2025-03-20 07:04:02.451 2025-03-20 07:04:02.451 9000 TIP 435908 16834 \N \N 6044460 2025-03-20 07:04:09.245 2025-03-20 07:04:09.245 1000 FEE 435882 746 \N \N 6044461 2025-03-20 07:04:09.245 2025-03-20 07:04:09.245 9000 TIP 435882 736 \N \N 6044497 2025-03-20 07:05:00.888 2025-03-20 07:05:00.888 1000 FEE 436353 16556 \N \N 6044521 2025-03-20 07:07:42.648 2025-03-20 07:07:42.648 3000 FEE 436353 1092 \N \N 6044522 2025-03-20 07:07:42.648 2025-03-20 07:07:42.648 27000 TIP 436353 21131 \N \N 6044527 2025-03-20 07:08:27.906 2025-03-20 07:08:27.906 1000 FEE 436358 12072 \N \N 6044528 2025-03-20 07:09:06.203 2025-03-20 07:09:06.203 1100 FEE 436241 8726 \N \N 6044529 2025-03-20 07:09:06.203 2025-03-20 07:09:06.203 9900 TIP 436241 18731 \N \N 6044537 2025-03-20 07:10:32.665 2025-03-20 07:10:32.665 300 FEE 435908 20990 \N \N 6044538 2025-03-20 07:10:32.665 2025-03-20 07:10:32.665 2700 TIP 435908 6149 \N \N 6044541 2025-03-20 07:10:42.196 2025-03-20 07:10:42.196 500 FEE 436304 831 \N \N 6044542 2025-03-20 07:10:42.196 2025-03-20 07:10:42.196 4500 TIP 436304 705 \N \N 6044549 2025-03-20 07:12:19.796 2025-03-20 07:12:19.796 1000 FEE 436360 9537 \N \N 6044555 2025-03-20 07:12:26.696 2025-03-20 07:12:26.696 100 FEE 436359 9330 \N \N 6044556 2025-03-20 07:12:26.696 2025-03-20 07:12:26.696 900 TIP 436359 7818 \N \N 6044591 2025-03-20 07:12:39.148 2025-03-20 07:12:39.148 100 FEE 436359 1352 \N \N 6044592 2025-03-20 07:12:39.148 2025-03-20 07:12:39.148 900 TIP 436359 782 \N \N 6044596 2025-03-20 07:12:53.132 2025-03-20 07:12:53.132 10000 FEE 436363 20059 \N \N 6044605 2025-03-20 07:14:35.538 2025-03-20 07:14:35.538 1000 FEE 436366 16998 \N \N 6044631 2025-03-20 07:17:21.54 2025-03-20 07:17:21.54 1000 FEE 436356 1726 \N \N 6044632 2025-03-20 07:17:21.54 2025-03-20 07:17:21.54 9000 TIP 436356 18368 \N \N 6044637 2025-03-20 07:17:33.145 2025-03-20 07:17:33.145 3200 FEE 436334 14910 \N \N 6044638 2025-03-20 07:17:33.145 2025-03-20 07:17:33.145 28800 TIP 436334 15488 \N \N 6044647 2025-03-20 07:18:02.52 2025-03-20 07:18:02.52 1000 FEE 436370 15160 \N \N 6044680 2025-03-20 07:23:18.796 2025-03-20 07:23:18.796 1000 FEE 436362 18101 \N \N 6044681 2025-03-20 07:23:18.796 2025-03-20 07:23:18.796 9000 TIP 436362 21091 \N \N 6044696 2025-03-20 07:23:35.513 2025-03-20 07:23:35.513 1000 FEE 436318 21401 \N \N 6044697 2025-03-20 07:23:35.513 2025-03-20 07:23:35.513 9000 TIP 436318 2844 \N \N 6044715 2025-03-20 07:25:10.992 2025-03-20 07:25:10.992 2000 FEE 435907 18829 \N \N 6044716 2025-03-20 07:25:10.992 2025-03-20 07:25:10.992 18000 TIP 435907 20812 \N \N 6044746 2025-03-20 07:25:50.231 2025-03-20 07:25:50.231 1000 FEE 436379 13198 \N \N 6044753 2025-03-20 07:27:56.543 2025-03-20 07:27:56.543 4000 FEE 436326 13574 \N \N 6044754 2025-03-20 07:27:56.543 2025-03-20 07:27:56.543 36000 TIP 436326 14404 \N \N 6044768 2025-03-20 07:31:35.05 2025-03-20 07:31:35.05 1000 FEE 436381 16347 \N \N 6044769 2025-03-20 07:31:35.05 2025-03-20 07:31:35.05 9000 TIP 436381 21332 \N \N 6044798 2025-03-20 07:38:23.621 2025-03-20 07:38:23.621 1000 POLL 436323 15549 \N \N 6044799 2025-03-20 07:38:29.865 2025-03-20 07:38:29.865 300 FEE 436241 17682 \N \N 6044800 2025-03-20 07:38:29.865 2025-03-20 07:38:29.865 2700 TIP 436241 1009 \N \N 6044803 2025-03-20 07:39:58.083 2025-03-20 07:39:58.083 1000 FEE 436391 21710 \N \N 6044815 2025-03-20 07:40:18.751 2025-03-20 07:40:18.751 1000 FEE 436337 16950 \N \N 6044816 2025-03-20 07:40:18.751 2025-03-20 07:40:18.751 9000 TIP 436337 17696 \N \N 6044836 2025-03-20 07:43:47.977 2025-03-20 07:43:47.977 1000 FEE 436398 16769 \N \N 6044862 2025-03-20 07:48:57.413 2025-03-20 07:48:57.413 1000 FEE 436402 15521 \N \N 6044897 2025-03-20 07:56:48.464 2025-03-20 07:56:48.464 1000 FEE 436411 14959 \N \N 6044907 2025-03-20 07:57:53.487 2025-03-20 07:57:53.487 3000 FEE 436411 2670 \N \N 6044908 2025-03-20 07:57:53.487 2025-03-20 07:57:53.487 27000 TIP 436411 12609 \N \N 6044910 2025-03-20 07:58:17.441 2025-03-20 07:58:17.441 500 FEE 436281 951 \N \N 6044911 2025-03-20 07:58:17.441 2025-03-20 07:58:17.441 4500 TIP 436281 21791 \N \N 6044932 2025-03-20 08:01:59.964 2025-03-20 08:01:59.964 900 FEE 436377 1092 \N \N 6044933 2025-03-20 08:01:59.964 2025-03-20 08:01:59.964 8100 TIP 436377 6578 \N \N 6044934 2025-03-20 08:02:04.493 2025-03-20 08:02:04.493 100 FEE 436393 1039 \N \N 6044935 2025-03-20 08:02:04.493 2025-03-20 08:02:04.493 900 TIP 436393 2322 \N \N 6044958 2025-03-20 08:04:02.154 2025-03-20 08:04:02.154 3300 FEE 436258 10469 \N \N 6044959 2025-03-20 08:04:02.154 2025-03-20 08:04:02.154 29700 TIP 436258 9843 \N \N 6044975 2025-03-20 08:05:11.805 2025-03-20 08:05:11.805 2100 FEE 436248 16042 \N \N 6044976 2025-03-20 08:05:11.805 2025-03-20 08:05:11.805 18900 TIP 436248 5495 \N \N 6044994 2025-03-20 08:06:10.368 2025-03-20 08:06:10.368 2100 FEE 435962 1114 \N \N 6044995 2025-03-20 08:06:10.368 2025-03-20 08:06:10.368 18900 TIP 435962 19333 \N \N 6045017 2025-03-20 08:07:35.125 2025-03-20 08:07:35.125 2100 FEE 436364 8376 \N \N 6045018 2025-03-20 08:07:35.125 2025-03-20 08:07:35.125 18900 TIP 436364 15367 \N \N 6045026 2025-03-20 08:08:01.273 2025-03-20 08:08:01.273 2100 FEE 436342 15100 \N \N 6045027 2025-03-20 08:08:01.273 2025-03-20 08:08:01.273 18900 TIP 436342 780 \N \N 6045030 2025-03-20 08:08:05.018 2025-03-20 08:08:05.018 2100 FEE 436323 14449 \N \N 6045031 2025-03-20 08:08:05.018 2025-03-20 08:08:05.018 18900 TIP 436323 848 \N \N 6045042 2025-03-20 08:08:17.726 2025-03-20 08:08:17.726 21000 FEE 436420 21532 \N \N 6045045 2025-03-20 08:08:37.971 2025-03-20 08:08:37.971 1000 FEE 436421 19813 \N \N 6045058 2025-03-20 08:09:08.643 2025-03-20 08:09:08.643 2100 FEE 436165 6765 \N \N 6045059 2025-03-20 08:09:08.643 2025-03-20 08:09:08.643 18900 TIP 436165 18393 \N \N 6045094 2025-03-20 08:10:25.981 2025-03-20 08:10:25.981 2100 FEE 436419 1439 \N \N 6045095 2025-03-20 08:10:25.981 2025-03-20 08:10:25.981 18900 TIP 436419 1960 \N \N 6045099 2025-03-20 08:10:41.837 2025-03-20 08:10:41.837 4000 FEE 436400 794 \N \N 6045100 2025-03-20 08:10:41.837 2025-03-20 08:10:41.837 36000 TIP 436400 16432 \N \N 6045101 2025-03-20 08:10:48.327 2025-03-20 08:10:48.327 2100 FEE 436385 12490 \N \N 6045102 2025-03-20 08:10:48.327 2025-03-20 08:10:48.327 18900 TIP 436385 20409 \N \N 6045103 2025-03-20 08:11:13.528 2025-03-20 08:11:13.528 100 FEE 436244 11873 \N \N 6045104 2025-03-20 08:11:13.528 2025-03-20 08:11:13.528 900 TIP 436244 16410 \N \N 6045119 2025-03-20 08:12:17.226 2025-03-20 08:12:17.226 100000 FEE 436429 1772 \N \N 6045127 2025-03-20 08:12:30.98 2025-03-20 08:12:30.98 2100 FEE 436207 1624 \N \N 6045128 2025-03-20 08:12:30.98 2025-03-20 08:12:30.98 18900 TIP 436207 18901 \N \N 6045152 2025-03-20 08:14:24.044 2025-03-20 08:14:24.044 2100 FEE 436413 2719 \N \N 6045153 2025-03-20 08:14:24.044 2025-03-20 08:14:24.044 18900 TIP 436413 13987 \N \N 6044420 2025-03-20 07:01:51.189 2025-03-20 07:01:51.189 1000 FEE 435635 1596 \N \N 6044421 2025-03-20 07:01:51.189 2025-03-20 07:01:51.189 9000 TIP 435635 8037 \N \N 6044422 2025-03-20 07:01:51.653 2025-03-20 07:01:51.653 1000 FEE 435635 20511 \N \N 6044423 2025-03-20 07:01:51.653 2025-03-20 07:01:51.653 9000 TIP 435635 21771 \N \N 6044458 2025-03-20 07:04:08.902 2025-03-20 07:04:08.902 1000 FEE 435882 21520 \N \N 6044459 2025-03-20 07:04:08.902 2025-03-20 07:04:08.902 9000 TIP 435882 14941 \N \N 6044469 2025-03-20 07:04:13.957 2025-03-20 07:04:13.957 1000 FEE 435882 21791 \N \N 6044470 2025-03-20 07:04:13.957 2025-03-20 07:04:13.957 9000 TIP 435882 18225 \N \N 6044471 2025-03-20 07:04:14.278 2025-03-20 07:04:14.278 1000 FEE 435882 21577 \N \N 6044472 2025-03-20 07:04:14.278 2025-03-20 07:04:14.278 9000 TIP 435882 12965 \N \N 6044475 2025-03-20 07:04:14.94 2025-03-20 07:04:14.94 1000 FEE 435882 21709 \N \N 6044476 2025-03-20 07:04:14.94 2025-03-20 07:04:14.94 9000 TIP 435882 725 \N \N 6044499 2025-03-20 07:05:42.434 2025-03-20 07:05:42.434 15000 FEE 435906 739 \N \N 6044500 2025-03-20 07:05:42.434 2025-03-20 07:05:42.434 135000 TIP 435906 21418 \N \N 6044503 2025-03-20 07:05:58.861 2025-03-20 07:05:58.861 900 FEE 436345 14280 \N \N 6044504 2025-03-20 07:05:58.861 2025-03-20 07:05:58.861 8100 TIP 436345 1577 \N \N 6044506 2025-03-20 07:06:14.077 2025-03-20 07:06:14.077 100000 DONT_LIKE_THIS 436348 750 \N \N 6044553 2025-03-20 07:12:26.299 2025-03-20 07:12:26.299 100 FEE 436359 20616 \N \N 6044554 2025-03-20 07:12:26.299 2025-03-20 07:12:26.299 900 TIP 436359 16769 \N \N 6044557 2025-03-20 07:12:26.911 2025-03-20 07:12:26.911 100 FEE 436359 20646 \N \N 6044558 2025-03-20 07:12:26.911 2025-03-20 07:12:26.911 900 TIP 436359 17095 \N \N 6044559 2025-03-20 07:12:27.14 2025-03-20 07:12:27.14 100 FEE 436359 5637 \N \N 6044560 2025-03-20 07:12:27.14 2025-03-20 07:12:27.14 900 TIP 436359 16970 \N \N 6044575 2025-03-20 07:12:36.312 2025-03-20 07:12:36.312 100 FEE 436359 11648 \N \N 6044576 2025-03-20 07:12:36.312 2025-03-20 07:12:36.312 900 TIP 436359 9349 \N \N 6044593 2025-03-20 07:12:39.33 2025-03-20 07:12:39.33 100000 FEE 436362 12749 \N \N 6044597 2025-03-20 07:13:06.009 2025-03-20 07:13:06.009 2600 FEE 436197 656 \N \N 6044598 2025-03-20 07:13:06.009 2025-03-20 07:13:06.009 23400 TIP 436197 18529 \N \N 6044617 2025-03-20 07:16:45.1 2025-03-20 07:16:45.1 2100 FEE 436005 1433 \N \N 6044618 2025-03-20 07:16:45.1 2025-03-20 07:16:45.1 18900 TIP 436005 18174 \N \N 6044635 2025-03-20 07:17:29.712 2025-03-20 07:17:29.712 2100 FEE 436343 5942 \N \N 6044636 2025-03-20 07:17:29.712 2025-03-20 07:17:29.712 18900 TIP 436343 12965 \N \N 6044639 2025-03-20 07:17:48.562 2025-03-20 07:17:48.562 1000 FEE 436362 19796 \N \N 6044640 2025-03-20 07:17:48.562 2025-03-20 07:17:48.562 9000 TIP 436362 1209 \N \N 6044643 2025-03-20 07:17:49.409 2025-03-20 07:17:49.409 1000 FEE 436362 20755 \N \N 6044644 2025-03-20 07:17:49.409 2025-03-20 07:17:49.409 9000 TIP 436362 2952 \N \N 6044648 2025-03-20 07:18:04.716 2025-03-20 07:18:04.716 2700 FEE 436223 21585 \N \N 6044649 2025-03-20 07:18:04.716 2025-03-20 07:18:04.716 24300 TIP 436223 1468 \N \N 6044678 2025-03-20 07:23:18.483 2025-03-20 07:23:18.483 1000 FEE 436362 7903 \N \N 6044679 2025-03-20 07:23:18.483 2025-03-20 07:23:18.483 9000 TIP 436362 20019 \N \N 6044686 2025-03-20 07:23:21.478 2025-03-20 07:23:21.478 200 FEE 436363 20864 \N \N 6044687 2025-03-20 07:23:21.478 2025-03-20 07:23:21.478 1800 TIP 436363 805 \N \N 6044704 2025-03-20 07:23:38.229 2025-03-20 07:23:38.229 1000 FEE 436376 11609 \N \N 6044713 2025-03-20 07:25:06.356 2025-03-20 07:25:06.356 2100 FEE 436246 2056 \N \N 6044714 2025-03-20 07:25:06.356 2025-03-20 07:25:06.356 18900 TIP 436246 2330 \N \N 6044770 2025-03-20 07:31:35.797 2025-03-20 07:31:35.797 1000 FEE 436381 11938 \N \N 6044771 2025-03-20 07:31:35.797 2025-03-20 07:31:35.797 9000 TIP 436381 27 \N \N 6044774 2025-03-20 07:32:33.438 2025-03-20 07:32:33.438 2100 FEE 436355 9242 \N \N 6044775 2025-03-20 07:32:33.438 2025-03-20 07:32:33.438 18900 TIP 436355 18351 \N \N 6044794 2025-03-20 07:37:43.323 2025-03-20 07:37:43.323 1000 FEE 436389 8713 \N \N 6044808 2025-03-20 07:40:12.73 2025-03-20 07:40:12.73 1000 FEE 436273 956 \N \N 6044809 2025-03-20 07:40:12.73 2025-03-20 07:40:12.73 9000 TIP 436273 18473 \N \N 6044817 2025-03-20 07:41:01.23 2025-03-20 07:41:01.23 1000 FEE 436392 18231 \N \N 6044825 2025-03-20 07:42:58.708 2025-03-20 07:42:58.708 1000 FEE 436343 16970 \N \N 6044826 2025-03-20 07:42:58.708 2025-03-20 07:42:58.708 9000 TIP 436343 2195 \N \N 6044834 2025-03-20 07:43:26.014 2025-03-20 07:43:26.014 1000 FEE 436275 15367 \N \N 6044835 2025-03-20 07:43:26.014 2025-03-20 07:43:26.014 9000 TIP 436275 17944 \N \N 6044847 2025-03-20 07:48:25.357 2025-03-20 07:48:25.357 1000 FEE 436401 9695 \N \N 6044854 2025-03-20 07:48:54.703 2025-03-20 07:48:54.703 1000 FEE 436398 20254 \N \N 6044855 2025-03-20 07:48:54.703 2025-03-20 07:48:54.703 9000 TIP 436398 15200 \N \N 6044884 2025-03-20 07:54:07.654 2025-03-20 07:54:07.654 1000 FEE 436408 17148 \N \N 6044901 2025-03-20 07:57:35.049 2025-03-20 07:57:35.049 2100 FEE 436076 20969 \N \N 6044902 2025-03-20 07:57:35.049 2025-03-20 07:57:35.049 18900 TIP 436076 16301 \N \N 6044905 2025-03-20 07:57:35.393 2025-03-20 07:57:35.393 10000 FEE 436276 9655 \N \N 6044906 2025-03-20 07:57:35.393 2025-03-20 07:57:35.393 90000 TIP 436276 3213 \N \N 6044938 2025-03-20 08:02:09.052 2025-03-20 08:02:09.052 100 FEE 436369 19332 \N \N 6044939 2025-03-20 08:02:09.052 2025-03-20 08:02:09.052 900 TIP 436369 20871 \N \N 6044956 2025-03-20 08:03:57.282 2025-03-20 08:03:57.282 3300 FEE 436136 20987 \N \N 6044957 2025-03-20 08:03:57.282 2025-03-20 08:03:57.282 29700 TIP 436136 1010 \N \N 6044962 2025-03-20 08:04:11.07 2025-03-20 08:04:11.07 3300 FEE 436062 19854 \N \N 6044963 2025-03-20 08:04:11.07 2025-03-20 08:04:11.07 29700 TIP 436062 718 \N \N 6044971 2025-03-20 08:04:52.848 2025-03-20 08:04:52.848 2100 FEE 435950 712 \N \N 6044972 2025-03-20 08:04:52.848 2025-03-20 08:04:52.848 18900 TIP 435950 20897 \N \N 6044980 2025-03-20 08:05:15.653 2025-03-20 08:05:15.653 3300 FEE 435905 11477 \N \N 6044981 2025-03-20 08:05:15.653 2025-03-20 08:05:15.653 29700 TIP 435905 18468 \N \N 6044982 2025-03-20 08:05:16.081 2025-03-20 08:05:16.081 3300 FEE 435905 20198 \N \N 6044983 2025-03-20 08:05:16.081 2025-03-20 08:05:16.081 29700 TIP 435905 21166 \N \N 6045065 2025-03-20 08:09:22.735 2025-03-20 08:09:22.735 100 FEE 436305 20619 \N \N 6045066 2025-03-20 08:09:22.735 2025-03-20 08:09:22.735 900 TIP 436305 20717 \N \N 6045071 2025-03-20 08:09:29.674 2025-03-20 08:09:29.674 2100 FEE 436158 4474 \N \N 6045072 2025-03-20 08:09:29.674 2025-03-20 08:09:29.674 18900 TIP 436158 20669 \N \N 6045090 2025-03-20 08:10:01.396 2025-03-20 08:10:01.396 1000 FEE 436425 20751 \N \N 6045107 2025-03-20 08:11:36.185 2025-03-20 08:11:36.185 8300 FEE 436425 20680 \N \N 6045108 2025-03-20 08:11:36.185 2025-03-20 08:11:36.185 74700 TIP 436425 17533 \N \N 6045113 2025-03-20 08:11:56.385 2025-03-20 08:11:56.385 1000 FEE 436428 5495 \N \N 6045138 2025-03-20 08:13:22.244 2025-03-20 08:13:22.244 8300 FEE 436417 2749 \N \N 6045139 2025-03-20 08:13:22.244 2025-03-20 08:13:22.244 74700 TIP 436417 659 \N \N 6045155 2025-03-20 08:14:30.859 2025-03-20 08:14:30.859 2100 FEE 435847 15148 \N \N 6045156 2025-03-20 08:14:30.859 2025-03-20 08:14:30.859 18900 TIP 435847 20669 \N \N 6045167 2025-03-20 08:14:33.518 2025-03-20 08:14:33.518 1000 FEE 436433 21048 \N \N 6045170 2025-03-20 08:14:42.974 2025-03-20 08:14:42.974 2100 FEE 436364 803 \N \N 6045171 2025-03-20 08:14:42.974 2025-03-20 08:14:42.974 18900 TIP 436364 5646 \N \N 6045204 2025-03-20 08:15:47.566 2025-03-20 08:15:47.566 1000 FEE 436435 11275 \N \N 6045217 2025-03-20 08:16:33.752 2025-03-20 08:16:33.752 2100 FEE 436326 882 \N \N 6045218 2025-03-20 08:16:33.752 2025-03-20 08:16:33.752 18900 TIP 436326 11298 \N \N 6045237 2025-03-20 08:16:38.644 2025-03-20 08:16:38.644 2100 FEE 436326 722 \N \N 6045238 2025-03-20 08:16:38.644 2025-03-20 08:16:38.644 18900 TIP 436326 18441 \N \N 6045239 2025-03-20 08:16:49.812 2025-03-20 08:16:49.812 2100 FEE 436197 19018 \N \N 6045240 2025-03-20 08:16:49.812 2025-03-20 08:16:49.812 18900 TIP 436197 7992 \N \N 6045249 2025-03-20 08:16:52.292 2025-03-20 08:16:52.292 1100 FEE 436258 15367 \N \N 6045250 2025-03-20 08:16:52.292 2025-03-20 08:16:52.292 9900 TIP 436258 836 \N \N 6045270 2025-03-20 08:19:48.557 2025-03-20 08:19:48.557 1000 FEE 436437 15806 \N \N 6045273 2025-03-20 08:20:13.323 2025-03-20 08:20:13.323 2300 FEE 436437 20120 \N \N 6045274 2025-03-20 08:20:13.323 2025-03-20 08:20:13.323 20700 TIP 436437 20655 \N \N 6044434 2025-03-20 07:02:31.006 2025-03-20 07:02:31.006 3300 FEE 436093 5308 \N \N 6044435 2025-03-20 07:02:31.006 2025-03-20 07:02:31.006 29700 TIP 436093 21805 \N \N 6044449 2025-03-20 07:03:45.056 2025-03-20 07:03:45.056 1000 FEE 436351 1354 \N \N 6044462 2025-03-20 07:04:09.632 2025-03-20 07:04:09.632 1000 FEE 435882 16259 \N \N 6044463 2025-03-20 07:04:09.632 2025-03-20 07:04:09.632 9000 TIP 435882 636 \N \N 6044479 2025-03-20 07:04:15.697 2025-03-20 07:04:15.697 1000 FEE 435882 1307 \N \N 6044480 2025-03-20 07:04:15.697 2025-03-20 07:04:15.697 9000 TIP 435882 21712 \N \N 6044525 2025-03-20 07:07:47.659 2025-03-20 07:07:47.659 1000 FEE 436357 21672 \N \N 6044567 2025-03-20 07:12:35.433 2025-03-20 07:12:35.433 100 FEE 436359 9921 \N \N 6044568 2025-03-20 07:12:35.433 2025-03-20 07:12:35.433 900 TIP 436359 17316 \N \N 6044569 2025-03-20 07:12:35.613 2025-03-20 07:12:35.613 100 FEE 436359 1603 \N \N 6044570 2025-03-20 07:12:35.613 2025-03-20 07:12:35.613 900 TIP 436359 9331 \N \N 6044603 2025-03-20 07:14:05.151 2025-03-20 07:14:05.151 1000 FEE 436365 17552 \N \N 6044615 2025-03-20 07:16:31.101 2025-03-20 07:16:31.101 300 FEE 436365 18116 \N \N 6044616 2025-03-20 07:16:31.101 2025-03-20 07:16:31.101 2700 TIP 436365 15463 \N \N 6044621 2025-03-20 07:17:11.204 2025-03-20 07:17:11.204 1000 FEE 436369 14489 \N \N 6044633 2025-03-20 07:17:21.85 2025-03-20 07:17:21.85 1000 FEE 436356 782 \N \N 6044634 2025-03-20 07:17:21.85 2025-03-20 07:17:21.85 9000 TIP 436356 2844 \N \N 6044658 2025-03-20 07:19:03.404 2025-03-20 07:19:03.404 1000 FEE 436372 5359 \N \N 6044721 2025-03-20 07:25:12.853 2025-03-20 07:25:12.853 1000 FEE 435907 4048 \N \N 6044722 2025-03-20 07:25:12.853 2025-03-20 07:25:12.853 9000 TIP 435907 717 \N \N 6044732 2025-03-20 07:25:14.218 2025-03-20 07:25:14.218 1000 FEE 435907 2722 \N \N 6044733 2025-03-20 07:25:14.218 2025-03-20 07:25:14.218 9000 TIP 435907 1424 \N \N 6044740 2025-03-20 07:25:15.694 2025-03-20 07:25:15.694 1000 FEE 435907 6616 \N \N 6044741 2025-03-20 07:25:15.694 2025-03-20 07:25:15.694 9000 TIP 435907 9171 \N \N 6044744 2025-03-20 07:25:36.872 2025-03-20 07:25:36.872 1000 FEE 436375 16348 \N \N 6044745 2025-03-20 07:25:36.872 2025-03-20 07:25:36.872 9000 TIP 436375 15491 \N \N 6044748 2025-03-20 07:26:02.623 2025-03-20 07:26:02.623 1000 FEE 436381 12911 \N \N 6044778 2025-03-20 07:34:16.704 2025-03-20 07:34:16.704 1000 FEE 436386 621 \N \N 6044779 2025-03-20 07:34:16.704 2025-03-20 07:34:16.704 9000 TIP 436386 20058 \N \N 6044780 2025-03-20 07:34:35.026 2025-03-20 07:34:35.026 2100 FEE 436376 14905 \N \N 6044781 2025-03-20 07:34:35.026 2025-03-20 07:34:35.026 18900 TIP 436376 10352 \N \N 6044802 2025-03-20 07:39:38.358 2025-03-20 07:39:38.358 98000 FEE 436390 16858 \N \N 6044827 2025-03-20 07:42:59.199 2025-03-20 07:42:59.199 1000 FEE 436343 1802 \N \N 6044828 2025-03-20 07:42:59.199 2025-03-20 07:42:59.199 9000 TIP 436343 14037 \N \N 6044830 2025-03-20 07:43:17.271 2025-03-20 07:43:17.271 1000 FEE 436396 21427 \N \N 6044841 2025-03-20 07:46:21.808 2025-03-20 07:46:21.808 100000 FEE 436400 20504 \N \N 6044869 2025-03-20 07:50:11.77 2025-03-20 07:50:11.77 1000 FEE 436404 19394 \N \N 6044875 2025-03-20 07:51:29.534 2025-03-20 07:51:29.534 5000 FEE 436404 10060 \N \N 6044876 2025-03-20 07:51:29.534 2025-03-20 07:51:29.534 45000 TIP 436404 18829 \N \N 6044888 2025-03-20 07:54:24.408 2025-03-20 07:54:24.408 1000 FEE 436330 666 \N \N 6044889 2025-03-20 07:54:24.408 2025-03-20 07:54:24.408 9000 TIP 436330 15526 \N \N 6044946 2025-03-20 08:03:43.605 2025-03-20 08:03:43.605 3300 FEE 436241 18269 \N \N 6044947 2025-03-20 08:03:43.605 2025-03-20 08:03:43.605 29700 TIP 436241 16839 \N \N 6044978 2025-03-20 08:05:15.51 2025-03-20 08:05:15.51 2100 FEE 436099 9109 \N \N 6044979 2025-03-20 08:05:15.51 2025-03-20 08:05:15.51 18900 TIP 436099 7654 \N \N 6044984 2025-03-20 08:05:16.25 2025-03-20 08:05:16.25 3300 FEE 435905 5359 \N \N 6044985 2025-03-20 08:05:16.25 2025-03-20 08:05:16.25 29700 TIP 435905 17494 \N \N 6044986 2025-03-20 08:05:18.333 2025-03-20 08:05:18.333 3300 FEE 435905 16097 \N \N 6044987 2025-03-20 08:05:18.333 2025-03-20 08:05:18.333 29700 TIP 435905 7418 \N \N 6044993 2025-03-20 08:06:02.8 2025-03-20 08:06:02.8 1000 FEE 436416 746 \N \N 6045022 2025-03-20 08:07:49.695 2025-03-20 08:07:49.695 2100 FEE 436366 2123 \N \N 6045023 2025-03-20 08:07:49.695 2025-03-20 08:07:49.695 18900 TIP 436366 1825 \N \N 6045034 2025-03-20 08:08:06.383 2025-03-20 08:08:06.383 100 FEE 436384 21214 \N \N 6045035 2025-03-20 08:08:06.383 2025-03-20 08:08:06.383 900 TIP 436384 7916 \N \N 6045075 2025-03-20 08:09:33 2025-03-20 08:09:33 2100 FEE 436174 13217 \N \N 6045076 2025-03-20 08:09:33 2025-03-20 08:09:33 18900 TIP 436174 691 \N \N 6045081 2025-03-20 08:09:37.265 2025-03-20 08:09:37.265 2100 FEE 435328 13753 \N \N 6045082 2025-03-20 08:09:37.265 2025-03-20 08:09:37.265 18900 TIP 435328 20683 \N \N 6045109 2025-03-20 08:11:44.126 2025-03-20 08:11:44.126 100 FEE 436243 15049 \N \N 6045110 2025-03-20 08:11:44.126 2025-03-20 08:11:44.126 900 TIP 436243 7510 \N \N 6045131 2025-03-20 08:12:48.758 2025-03-20 08:12:48.758 2100 FEE 435690 17522 \N \N 6045132 2025-03-20 08:12:48.758 2025-03-20 08:12:48.758 18900 TIP 435690 9758 \N \N 6045140 2025-03-20 08:13:22.392 2025-03-20 08:13:22.392 8300 FEE 436417 4292 \N \N 6045141 2025-03-20 08:13:22.392 2025-03-20 08:13:22.392 74700 TIP 436417 21523 \N \N 6045148 2025-03-20 08:13:43.917 2025-03-20 08:13:43.917 10000 FEE 436431 8287 \N \N 6045182 2025-03-20 08:15:08.576 2025-03-20 08:15:08.576 2100 FEE 435954 1472 \N \N 6045183 2025-03-20 08:15:08.576 2025-03-20 08:15:08.576 18900 TIP 435954 3417 \N \N 6045243 2025-03-20 08:16:50.692 2025-03-20 08:16:50.692 2100 FEE 436197 16598 \N \N 6045244 2025-03-20 08:16:50.692 2025-03-20 08:16:50.692 18900 TIP 436197 20864 \N \N 6045254 2025-03-20 08:17:30.152 2025-03-20 08:17:30.152 2100 FEE 435732 5590 \N \N 6045255 2025-03-20 08:17:30.152 2025-03-20 08:17:30.152 18900 TIP 435732 18241 \N \N 6045281 2025-03-20 08:20:13.762 2025-03-20 08:20:13.762 2300 FEE 436437 11829 \N \N 6045282 2025-03-20 08:20:13.762 2025-03-20 08:20:13.762 20700 TIP 436437 21427 \N \N 6045288 2025-03-20 08:20:14.683 2025-03-20 08:20:14.683 2300 FEE 436437 17124 \N \N 6045289 2025-03-20 08:20:14.683 2025-03-20 08:20:14.683 20700 TIP 436437 19576 \N \N 6045312 2025-03-20 08:20:17.314 2025-03-20 08:20:17.314 2300 FEE 436437 15536 \N \N 6045313 2025-03-20 08:20:17.314 2025-03-20 08:20:17.314 20700 TIP 436437 1881 \N \N 6045332 2025-03-20 08:20:19.374 2025-03-20 08:20:19.374 2300 FEE 436437 19117 \N \N 6045333 2025-03-20 08:20:19.374 2025-03-20 08:20:19.374 20700 TIP 436437 10981 \N \N 6045403 2025-03-20 08:22:53.899 2025-03-20 08:22:53.899 2300 FEE 436437 21815 \N \N 6045404 2025-03-20 08:22:53.899 2025-03-20 08:22:53.899 20700 TIP 436437 11164 \N \N 6045425 2025-03-20 08:22:55.366 2025-03-20 08:22:55.366 2300 FEE 436437 7125 \N \N 6045426 2025-03-20 08:22:55.366 2025-03-20 08:22:55.366 20700 TIP 436437 21145 \N \N 6045431 2025-03-20 08:22:55.767 2025-03-20 08:22:55.767 2300 FEE 436437 20788 \N \N 6045432 2025-03-20 08:22:55.767 2025-03-20 08:22:55.767 20700 TIP 436437 16834 \N \N 6045435 2025-03-20 08:22:56.05 2025-03-20 08:22:56.05 2300 FEE 436437 21514 \N \N 6045436 2025-03-20 08:22:56.05 2025-03-20 08:22:56.05 20700 TIP 436437 20706 \N \N 6045445 2025-03-20 08:22:56.767 2025-03-20 08:22:56.767 2300 FEE 436437 19569 \N \N 6045446 2025-03-20 08:22:56.767 2025-03-20 08:22:56.767 20700 TIP 436437 15549 \N \N 6045447 2025-03-20 08:22:56.917 2025-03-20 08:22:56.917 2300 FEE 436437 6602 \N \N 6045448 2025-03-20 08:22:56.917 2025-03-20 08:22:56.917 20700 TIP 436437 861 \N \N 6045487 2025-03-20 08:24:48.606 2025-03-20 08:24:48.606 100 FEE 435751 21063 \N \N 6045488 2025-03-20 08:24:48.606 2025-03-20 08:24:48.606 900 TIP 435751 20225 \N \N 6045489 2025-03-20 08:24:49.176 2025-03-20 08:24:49.176 100 FEE 435751 2596 \N \N 6045490 2025-03-20 08:24:49.176 2025-03-20 08:24:49.176 900 TIP 435751 2326 \N \N 6045563 2025-03-20 08:28:58.563 2025-03-20 08:28:58.563 1000 FEE 436458 1626 \N \N 6045590 2025-03-20 08:32:32.483 2025-03-20 08:32:32.483 800 FEE 435711 21064 \N \N 6045591 2025-03-20 08:32:32.483 2025-03-20 08:32:32.483 7200 TIP 435711 2757 \N \N 6045609 2025-03-20 08:33:15.477 2025-03-20 08:33:15.477 1000 FEE 436336 1082 \N \N 6045610 2025-03-20 08:33:15.477 2025-03-20 08:33:15.477 9000 TIP 436336 15762 \N \N 6044546 2025-03-20 07:12:08.892 2025-03-20 07:12:08.892 1100 FEE 436040 14657 \N \N 6044547 2025-03-20 07:12:08.892 2025-03-20 07:12:08.892 9900 TIP 436040 12808 \N \N 6044583 2025-03-20 07:12:37.361 2025-03-20 07:12:37.361 100 FEE 436359 17201 \N \N 6044584 2025-03-20 07:12:37.361 2025-03-20 07:12:37.361 900 TIP 436359 1658 \N \N 6044609 2025-03-20 07:15:09.702 2025-03-20 07:15:09.702 1000 POLL 436323 2502 \N \N 6044611 2025-03-20 07:15:49.796 2025-03-20 07:15:49.796 1000 FEE 436368 5497 \N \N 6044619 2025-03-20 07:17:09.039 2025-03-20 07:17:09.039 2100 FEE 436290 11144 \N \N 6044620 2025-03-20 07:17:09.039 2025-03-20 07:17:09.039 18900 TIP 436290 6602 \N \N 6044629 2025-03-20 07:17:21.279 2025-03-20 07:17:21.279 1000 FEE 436356 20023 \N \N 6044630 2025-03-20 07:17:21.279 2025-03-20 07:17:21.279 9000 TIP 436356 10342 \N \N 6044652 2025-03-20 07:18:05.578 2025-03-20 07:18:05.578 2700 FEE 436223 1003 \N \N 6044653 2025-03-20 07:18:05.578 2025-03-20 07:18:05.578 24300 TIP 436223 9921 \N \N 6044682 2025-03-20 07:23:19.836 2025-03-20 07:23:19.836 1000 FEE 436362 1596 \N \N 6044683 2025-03-20 07:23:19.836 2025-03-20 07:23:19.836 9000 TIP 436362 21797 \N \N 6044690 2025-03-20 07:23:24.812 2025-03-20 07:23:24.812 27000 FEE 436373 16695 \N \N 6044691 2025-03-20 07:23:24.812 2025-03-20 07:23:24.812 243000 TIP 436373 700 \N \N 6044692 2025-03-20 07:23:34.614 2025-03-20 07:23:34.614 5000 FEE 436243 13198 \N \N 6044693 2025-03-20 07:23:34.614 2025-03-20 07:23:34.614 45000 TIP 436243 17519 \N \N 6044700 2025-03-20 07:23:35.929 2025-03-20 07:23:35.929 1000 FEE 436318 11275 \N \N 6044701 2025-03-20 07:23:35.929 2025-03-20 07:23:35.929 9000 TIP 436318 886 \N \N 6044707 2025-03-20 07:24:16.671 2025-03-20 07:24:16.671 1000 FEE 436377 16230 \N \N 6044708 2025-03-20 07:24:19.865 2025-03-20 07:24:19.865 1000 FEE 436369 14449 \N \N 6044709 2025-03-20 07:24:19.865 2025-03-20 07:24:19.865 9000 TIP 436369 21501 \N \N 6044710 2025-03-20 07:24:20.061 2025-03-20 07:24:20.061 1000 FEE 436369 7185 \N \N 6044711 2025-03-20 07:24:20.061 2025-03-20 07:24:20.061 9000 TIP 436369 2431 \N \N 6044747 2025-03-20 07:25:56.278 2025-03-20 07:25:56.278 1000 FEE 436380 7760 \N \N 6044765 2025-03-20 07:31:12.245 2025-03-20 07:31:12.245 21000 FEE 436385 4238 \N \N 6044767 2025-03-20 07:31:32.888 2025-03-20 07:31:32.888 1000 FEE 436386 17824 \N \N 6044787 2025-03-20 07:35:37.704 2025-03-20 07:35:37.704 3000 FEE 436115 20892 \N \N 6044788 2025-03-20 07:35:37.704 2025-03-20 07:35:37.704 27000 TIP 436115 11561 \N \N 6044791 2025-03-20 07:36:47.384 2025-03-20 07:36:47.384 300 FEE 436227 1602 \N \N 6044792 2025-03-20 07:36:47.384 2025-03-20 07:36:47.384 2700 TIP 436227 718 \N \N 6044795 2025-03-20 07:38:13.34 2025-03-20 07:38:13.34 700 FEE 436364 882 \N \N 6044796 2025-03-20 07:38:13.34 2025-03-20 07:38:13.34 6300 TIP 436364 16788 \N \N 6044806 2025-03-20 07:40:12.334 2025-03-20 07:40:12.334 1000 FEE 436273 9177 \N \N 6044807 2025-03-20 07:40:12.334 2025-03-20 07:40:12.334 9000 TIP 436273 1090 \N \N 6044839 2025-03-20 07:45:39.032 2025-03-20 07:45:39.032 1000 FEE 436399 1173 \N \N 6044842 2025-03-20 07:46:40.934 2025-03-20 07:46:40.934 1000 FEE 436326 9363 \N \N 6044843 2025-03-20 07:46:40.934 2025-03-20 07:46:40.934 9000 TIP 436326 19813 \N \N 6044848 2025-03-20 07:48:38.944 2025-03-20 07:48:38.944 11700 FEE 436281 1483 \N \N 6044849 2025-03-20 07:48:38.944 2025-03-20 07:48:38.944 105300 TIP 436281 16424 \N \N 6044864 2025-03-20 07:49:07.735 2025-03-20 07:49:07.735 3000 FEE 436401 5775 \N \N 6044865 2025-03-20 07:49:07.735 2025-03-20 07:49:07.735 27000 TIP 436401 11776 \N \N 6044870 2025-03-20 07:50:12.474 2025-03-20 07:50:12.474 5000 FEE 436405 21832 \N \N 6044877 2025-03-20 07:51:43.007 2025-03-20 07:51:43.007 3000 FEE 436395 21369 \N \N 6044878 2025-03-20 07:51:43.007 2025-03-20 07:51:43.007 27000 TIP 436395 21238 \N \N 6044890 2025-03-20 07:54:39.207 2025-03-20 07:54:39.207 1000 FEE 436409 15536 \N \N 6044923 2025-03-20 08:00:20.964 2025-03-20 08:00:20.964 21100 FEE 435905 20776 \N \N 6044924 2025-03-20 08:00:20.964 2025-03-20 08:00:20.964 189900 TIP 435905 16679 \N \N 6044929 2025-03-20 08:01:55.496 2025-03-20 08:01:55.496 1000 FEE 436414 7674 \N \N 6044930 2025-03-20 08:01:59.721 2025-03-20 08:01:59.721 100 FEE 436377 5128 \N \N 6044931 2025-03-20 08:01:59.721 2025-03-20 08:01:59.721 900 TIP 436377 2519 \N \N 6044940 2025-03-20 08:02:09.245 2025-03-20 08:02:09.245 900 FEE 436369 18630 \N \N 6044941 2025-03-20 08:02:09.245 2025-03-20 08:02:09.245 8100 TIP 436369 9916 \N \N 6044944 2025-03-20 08:03:40.709 2025-03-20 08:03:40.709 3300 FEE 436197 15806 \N \N 6044945 2025-03-20 08:03:40.709 2025-03-20 08:03:40.709 29700 TIP 436197 21148 \N \N 6044948 2025-03-20 08:03:45.355 2025-03-20 08:03:45.355 3300 FEE 436241 20755 \N \N 6044949 2025-03-20 08:03:45.355 2025-03-20 08:03:45.355 29700 TIP 436241 2326 \N \N 6044666 2025-03-20 07:21:20.906 2025-03-20 07:21:20.906 1000 FEE 436373 716 \N \N 6044672 2025-03-20 07:23:02.17 2025-03-20 07:23:02.17 2100 FEE 436243 11423 \N \N 6044673 2025-03-20 07:23:02.17 2025-03-20 07:23:02.17 18900 TIP 436243 21804 \N \N 6044698 2025-03-20 07:23:35.734 2025-03-20 07:23:35.734 1000 FEE 436318 5128 \N \N 6044699 2025-03-20 07:23:35.734 2025-03-20 07:23:35.734 9000 TIP 436318 5708 \N \N 6044702 2025-03-20 07:23:36.124 2025-03-20 07:23:36.124 1000 FEE 436318 5779 \N \N 6044703 2025-03-20 07:23:36.124 2025-03-20 07:23:36.124 9000 TIP 436318 16267 \N \N 6044705 2025-03-20 07:23:50.108 2025-03-20 07:23:50.108 1000 POLL 436323 19494 \N \N 6044725 2025-03-20 07:25:13.167 2025-03-20 07:25:13.167 1000 FEE 435907 20577 \N \N 6044726 2025-03-20 07:25:13.167 2025-03-20 07:25:13.167 9000 TIP 435907 18901 \N \N 6044729 2025-03-20 07:25:13.633 2025-03-20 07:25:13.633 1000 FEE 435907 20993 \N \N 6044730 2025-03-20 07:25:13.633 2025-03-20 07:25:13.633 9000 TIP 435907 21048 \N \N 6044742 2025-03-20 07:25:15.899 2025-03-20 07:25:15.899 1000 FEE 435907 15624 \N \N 6044743 2025-03-20 07:25:15.899 2025-03-20 07:25:15.899 9000 TIP 435907 4768 \N \N 6044761 2025-03-20 07:30:19.238 2025-03-20 07:30:19.238 1000 FEE 436383 11885 \N \N 6044762 2025-03-20 07:30:20.458 2025-03-20 07:30:20.458 1000 FEE 436384 9669 \N \N 6044845 2025-03-20 07:48:11.502 2025-03-20 07:48:11.502 0 FEE 436397 7760 \N \N 6044863 2025-03-20 07:48:57.63 2025-03-20 07:48:57.63 1000 FEE 436403 21042 \N \N 6044872 2025-03-20 07:50:38.858 2025-03-20 07:50:38.858 1000 POLL 435516 9378 \N \N 6044874 2025-03-20 07:51:15.89 2025-03-20 07:51:15.89 10000 FEE 436406 8506 \N \N 6044892 2025-03-20 07:54:53.556 2025-03-20 07:54:53.556 300 FEE 436243 1090 \N \N 6044893 2025-03-20 07:54:53.556 2025-03-20 07:54:53.556 2700 TIP 436243 730 \N \N 6044903 2025-03-20 07:57:35.361 2025-03-20 07:57:35.361 500 FEE 436243 21228 \N \N 6044904 2025-03-20 07:57:35.361 2025-03-20 07:57:35.361 4500 TIP 436243 1596 \N \N 6044916 2025-03-20 08:00:05.943 2025-03-20 08:00:05.943 900 FEE 436323 19863 \N \N 6044917 2025-03-20 08:00:05.943 2025-03-20 08:00:05.943 8100 TIP 436323 8648 \N \N 6044936 2025-03-20 08:02:04.679 2025-03-20 08:02:04.679 900 FEE 436393 9845 \N \N 6044937 2025-03-20 08:02:04.679 2025-03-20 08:02:04.679 8100 TIP 436393 15115 \N \N 6044952 2025-03-20 08:03:54.791 2025-03-20 08:03:54.791 3300 FEE 435944 2098 \N \N 6044953 2025-03-20 08:03:54.791 2025-03-20 08:03:54.791 29700 TIP 435944 16834 \N \N 6044969 2025-03-20 08:04:38.546 2025-03-20 08:04:38.546 2100 FEE 435944 11298 \N \N 6044970 2025-03-20 08:04:38.546 2025-03-20 08:04:38.546 18900 TIP 435944 12774 \N \N 6045001 2025-03-20 08:06:25.998 2025-03-20 08:06:25.998 2100 FEE 436413 11328 \N \N 6045002 2025-03-20 08:06:25.998 2025-03-20 08:06:25.998 18900 TIP 436413 9906 \N \N 6045006 2025-03-20 08:07:00.426 2025-03-20 08:07:00.426 3300 FEE 436343 20099 \N \N 6045007 2025-03-20 08:07:00.426 2025-03-20 08:07:00.426 29700 TIP 436343 997 \N \N 6045008 2025-03-20 08:07:06.932 2025-03-20 08:07:06.932 3300 FEE 436156 680 \N \N 6045009 2025-03-20 08:07:06.932 2025-03-20 08:07:06.932 29700 TIP 436156 1008 \N \N 6045010 2025-03-20 08:07:11.295 2025-03-20 08:07:11.295 3300 FEE 436145 3686 \N \N 6045011 2025-03-20 08:07:11.295 2025-03-20 08:07:11.295 29700 TIP 436145 1003 \N \N 6045021 2025-03-20 08:07:46.908 2025-03-20 08:07:46.908 1000 FEE 436418 21291 \N \N 6045040 2025-03-20 08:08:16.262 2025-03-20 08:08:16.262 2100 FEE 436253 20811 \N \N 6045041 2025-03-20 08:08:16.262 2025-03-20 08:08:16.262 18900 TIP 436253 1493 \N \N 6045051 2025-03-20 08:08:58.82 2025-03-20 08:08:58.82 100 FEE 436333 14909 \N \N 6045052 2025-03-20 08:08:58.82 2025-03-20 08:08:58.82 900 TIP 436333 1609 \N \N 6045060 2025-03-20 08:09:09.265 2025-03-20 08:09:09.265 2100 FEE 436415 17411 \N \N 6045061 2025-03-20 08:09:09.265 2025-03-20 08:09:09.265 18900 TIP 436415 18188 \N \N 6045069 2025-03-20 08:09:26.076 2025-03-20 08:09:26.076 2100 FEE 436241 632 \N \N 6045070 2025-03-20 08:09:26.076 2025-03-20 08:09:26.076 18900 TIP 436241 20310 \N \N 6045077 2025-03-20 08:09:34.543 2025-03-20 08:09:34.543 2100 FEE 436213 5794 \N \N 6045078 2025-03-20 08:09:34.543 2025-03-20 08:09:34.543 18900 TIP 436213 21212 \N \N 6045111 2025-03-20 08:11:50.879 2025-03-20 08:11:50.879 100 FEE 436412 999 \N \N 6045112 2025-03-20 08:11:50.879 2025-03-20 08:11:50.879 900 TIP 436412 21578 \N \N 6044856 2025-03-20 07:48:55.09 2025-03-20 07:48:55.09 1000 FEE 436398 9611 \N \N 6044857 2025-03-20 07:48:55.09 2025-03-20 07:48:55.09 9000 TIP 436398 16284 \N \N 6044858 2025-03-20 07:48:55.466 2025-03-20 07:48:55.466 1000 FEE 436398 3456 \N \N 6044859 2025-03-20 07:48:55.466 2025-03-20 07:48:55.466 9000 TIP 436398 19199 \N \N 6044891 2025-03-20 07:54:47.155 2025-03-20 07:54:47.155 1000 FEE 436410 6191 \N \N 6044895 2025-03-20 07:56:04.413 2025-03-20 07:56:04.413 1000 POLL 436323 7760 \N \N 6044900 2025-03-20 07:57:23.029 2025-03-20 07:57:23.029 1000 FEE 436412 16753 \N \N 6044954 2025-03-20 08:03:55.545 2025-03-20 08:03:55.545 3300 FEE 436136 6202 \N \N 6044955 2025-03-20 08:03:55.545 2025-03-20 08:03:55.545 29700 TIP 436136 19463 \N \N 6045015 2025-03-20 08:07:30.949 2025-03-20 08:07:30.949 2100 FEE 436406 2829 \N \N 6045016 2025-03-20 08:07:30.949 2025-03-20 08:07:30.949 18900 TIP 436406 15588 \N \N 6045028 2025-03-20 08:08:03.926 2025-03-20 08:08:03.926 2100 FEE 436290 15326 \N \N 6045029 2025-03-20 08:08:03.926 2025-03-20 08:08:03.926 18900 TIP 436290 20881 \N \N 6045049 2025-03-20 08:08:53.894 2025-03-20 08:08:53.894 2100 FEE 436218 987 \N \N 6045050 2025-03-20 08:08:53.894 2025-03-20 08:08:53.894 18900 TIP 436218 3304 \N \N 6045053 2025-03-20 08:09:00.827 2025-03-20 08:09:00.827 2100 FEE 436147 20802 \N \N 6045054 2025-03-20 08:09:00.827 2025-03-20 08:09:00.827 18900 TIP 436147 1609 \N \N 6045073 2025-03-20 08:09:31.454 2025-03-20 08:09:31.454 2100 FEE 436233 5557 \N \N 6045074 2025-03-20 08:09:31.454 2025-03-20 08:09:31.454 18900 TIP 436233 21062 \N \N 6045096 2025-03-20 08:10:26.52 2025-03-20 08:10:26.52 2100 FEE 436420 4378 \N \N 6045097 2025-03-20 08:10:26.52 2025-03-20 08:10:26.52 18900 TIP 436420 13767 \N \N 6045106 2025-03-20 08:11:29.242 2025-03-20 08:11:29.242 1000 FEE 436427 20655 \N \N 6045121 2025-03-20 08:12:23.714 2025-03-20 08:12:23.714 2100 FEE 436382 6777 \N \N 6045122 2025-03-20 08:12:23.714 2025-03-20 08:12:23.714 18900 TIP 436382 27 \N \N 6045125 2025-03-20 08:12:28.973 2025-03-20 08:12:28.973 2100 FEE 436318 5809 \N \N 6045126 2025-03-20 08:12:28.973 2025-03-20 08:12:28.973 18900 TIP 436318 16695 \N \N 6045149 2025-03-20 08:14:03.78 2025-03-20 08:14:03.78 2100 FEE 436326 1741 \N \N 6045150 2025-03-20 08:14:03.78 2025-03-20 08:14:03.78 18900 TIP 436326 4064 \N \N 6045172 2025-03-20 08:14:45.314 2025-03-20 08:14:45.314 500 FEE 436330 15052 \N \N 6045173 2025-03-20 08:14:45.314 2025-03-20 08:14:45.314 4500 TIP 436330 11999 \N \N 6045174 2025-03-20 08:14:48.175 2025-03-20 08:14:48.175 2100 FEE 436363 4250 \N \N 6045175 2025-03-20 08:14:48.175 2025-03-20 08:14:48.175 18900 TIP 436363 12921 \N \N 6045199 2025-03-20 08:15:41.909 2025-03-20 08:15:41.909 1000 FEE 436434 18269 \N \N 6045202 2025-03-20 08:15:47.017 2025-03-20 08:15:47.017 12100 FEE 436394 7891 \N \N 6045203 2025-03-20 08:15:47.017 2025-03-20 08:15:47.017 108900 TIP 436394 16948 \N \N 6045211 2025-03-20 08:16:01.459 2025-03-20 08:16:01.459 2100 FEE 436163 1424 \N \N 6045212 2025-03-20 08:16:01.459 2025-03-20 08:16:01.459 18900 TIP 436163 5829 \N \N 6045221 2025-03-20 08:16:34.255 2025-03-20 08:16:34.255 2100 FEE 436326 16357 \N \N 6045222 2025-03-20 08:16:34.255 2025-03-20 08:16:34.255 18900 TIP 436326 18449 \N \N 6045263 2025-03-20 08:19:04.05 2025-03-20 08:19:04.05 100 FEE 433821 17109 \N \N 6045264 2025-03-20 08:19:04.05 2025-03-20 08:19:04.05 900 TIP 433821 10608 \N \N 6112826 2025-03-26 05:28:49.231 2025-03-26 05:28:49.231 2100 FEE 443399 642 \N \N 6112827 2025-03-26 05:28:49.231 2025-03-26 05:28:49.231 18900 TIP 443399 16789 \N \N 6112830 2025-03-26 05:29:17.826 2025-03-26 05:29:17.826 1000 FEE 443546 1803 \N \N 6112844 2025-03-26 05:29:36.623 2025-03-26 05:29:36.623 2100 FEE 443266 1718 \N \N 6112845 2025-03-26 05:29:36.623 2025-03-26 05:29:36.623 18900 TIP 443266 17109 \N \N 6112886 2025-03-26 05:34:49.979 2025-03-26 05:34:49.979 42000 FEE 443543 3683 \N \N 6112887 2025-03-26 05:34:49.979 2025-03-26 05:34:49.979 378000 TIP 443543 16212 \N \N 6112893 2025-03-26 05:35:27.506 2025-03-26 05:35:27.506 1000 FEE 443563 17798 \N \N 6112895 2025-03-26 05:35:39.6 2025-03-26 05:35:39.6 1000 FEE 443565 18011 \N \N 6112896 2025-03-26 05:35:54.573 2025-03-26 05:35:54.573 25500 FEE 443563 16978 \N \N 6112897 2025-03-26 05:35:54.573 2025-03-26 05:35:54.573 229500 TIP 443563 19417 \N \N 6112907 2025-03-26 05:36:35.229 2025-03-26 05:36:35.229 2100 FEE 443531 15075 \N \N 6112908 2025-03-26 05:36:35.229 2025-03-26 05:36:35.229 18900 TIP 443531 17103 \N \N 6112911 2025-03-26 05:36:49.391 2025-03-26 05:36:49.391 2100 FEE 443528 4415 \N \N 6112912 2025-03-26 05:36:49.391 2025-03-26 05:36:49.391 18900 TIP 443528 13767 \N \N 6112922 2025-03-26 05:37:27.839 2025-03-26 05:37:27.839 2100 FEE 443438 21271 \N \N 6112923 2025-03-26 05:37:27.839 2025-03-26 05:37:27.839 18900 TIP 443438 679 \N \N 6112928 2025-03-26 05:37:48.184 2025-03-26 05:37:48.184 2100 FEE 443274 17568 \N \N 6112929 2025-03-26 05:37:48.184 2025-03-26 05:37:48.184 18900 TIP 443274 17824 \N \N 6112934 2025-03-26 05:37:57.682 2025-03-26 05:37:57.682 1000 FEE 443572 21523 \N \N 6112946 2025-03-26 05:38:36.646 2025-03-26 05:38:36.646 2100 FEE 443304 2309 \N \N 6112947 2025-03-26 05:38:36.646 2025-03-26 05:38:36.646 18900 TIP 443304 18393 \N \N 6112956 2025-03-26 05:39:14.201 2025-03-26 05:39:14.201 2100 FEE 443548 716 \N \N 6112957 2025-03-26 05:39:14.201 2025-03-26 05:39:14.201 18900 TIP 443548 17291 \N \N 6112966 2025-03-26 05:39:14.809 2025-03-26 05:39:14.809 7700 FEE 443274 20481 \N \N 6112967 2025-03-26 05:39:14.809 2025-03-26 05:39:14.809 69300 TIP 443274 644 \N \N 6112972 2025-03-26 05:39:16.832 2025-03-26 05:39:16.832 7700 FEE 443274 11314 \N \N 6112973 2025-03-26 05:39:16.832 2025-03-26 05:39:16.832 69300 TIP 443274 19821 \N \N 6112988 2025-03-26 05:39:25.457 2025-03-26 05:39:25.457 7700 FEE 443372 17183 \N \N 6112989 2025-03-26 05:39:25.457 2025-03-26 05:39:25.457 69300 TIP 443372 9906 \N \N 6112990 2025-03-26 05:39:25.583 2025-03-26 05:39:25.583 7700 FEE 443372 4173 \N \N 6112991 2025-03-26 05:39:25.583 2025-03-26 05:39:25.583 69300 TIP 443372 4259 \N \N 6112992 2025-03-26 05:39:25.748 2025-03-26 05:39:25.748 7700 FEE 443372 8506 \N \N 6112993 2025-03-26 05:39:25.748 2025-03-26 05:39:25.748 69300 TIP 443372 4958 \N \N 6112998 2025-03-26 05:39:26.245 2025-03-26 05:39:26.245 7700 FEE 443372 20433 \N \N 6112999 2025-03-26 05:39:26.245 2025-03-26 05:39:26.245 69300 TIP 443372 20768 \N \N 6113032 2025-03-26 05:39:41.135 2025-03-26 05:39:41.135 7700 FEE 443545 13517 \N \N 6113033 2025-03-26 05:39:41.135 2025-03-26 05:39:41.135 69300 TIP 443545 19777 \N \N 6113065 2025-03-26 05:40:26.463 2025-03-26 05:40:26.463 500 FEE 443298 21506 \N \N 6113066 2025-03-26 05:40:26.463 2025-03-26 05:40:26.463 4500 TIP 443298 9378 \N \N 6113067 2025-03-26 05:40:27.819 2025-03-26 05:40:27.819 2100 FEE 443380 15544 \N \N 6113068 2025-03-26 05:40:27.819 2025-03-26 05:40:27.819 18900 TIP 443380 11164 \N \N 6113099 2025-03-26 05:42:36.795 2025-03-26 05:42:36.795 6900 FEE 443272 2156 \N \N 6113100 2025-03-26 05:42:36.795 2025-03-26 05:42:36.795 62100 TIP 443272 16876 \N \N 6113103 2025-03-26 05:42:37.127 2025-03-26 05:42:37.127 6900 FEE 443272 2519 \N \N 6113104 2025-03-26 05:42:37.127 2025-03-26 05:42:37.127 62100 TIP 443272 1465 \N \N 6113116 2025-03-26 05:43:39.038 2025-03-26 05:43:39.038 1000 FEE 443581 4602 \N \N 6113128 2025-03-26 05:45:38.808 2025-03-26 05:45:38.808 1100 FEE 443432 746 \N \N 6113129 2025-03-26 05:45:38.808 2025-03-26 05:45:38.808 9900 TIP 443432 6471 \N \N 6113132 2025-03-26 05:45:51.06 2025-03-26 05:45:51.06 100000 FEE 443583 19924 \N \N 6113139 2025-03-26 05:45:57.109 2025-03-26 05:45:57.109 7700 FEE 443272 3304 \N \N 6113140 2025-03-26 05:45:57.109 2025-03-26 05:45:57.109 69300 TIP 443272 1273 \N \N 6113145 2025-03-26 05:45:57.666 2025-03-26 05:45:57.666 7700 FEE 443272 21338 \N \N 6113146 2025-03-26 05:45:57.666 2025-03-26 05:45:57.666 69300 TIP 443272 9796 \N \N 6113151 2025-03-26 05:45:57.925 2025-03-26 05:45:57.925 7700 FEE 443272 9341 \N \N 6113152 2025-03-26 05:45:57.925 2025-03-26 05:45:57.925 69300 TIP 443272 3360 \N \N 6113163 2025-03-26 05:46:09.506 2025-03-26 05:46:09.506 300 FEE 443545 11144 \N \N 6113164 2025-03-26 05:46:09.506 2025-03-26 05:46:09.506 2700 TIP 443545 19094 \N \N 6113165 2025-03-26 05:46:09.572 2025-03-26 05:46:09.572 300 FEE 443545 6653 \N \N 6113166 2025-03-26 05:46:09.572 2025-03-26 05:46:09.572 2700 TIP 443545 1008 \N \N 6113185 2025-03-26 05:46:12.076 2025-03-26 05:46:12.076 300 FEE 442904 19292 \N \N 6113186 2025-03-26 05:46:12.076 2025-03-26 05:46:12.076 2700 TIP 442904 9262 \N \N 6113224 2025-03-26 05:46:57.166 2025-03-26 05:46:57.166 500 FEE 443122 4474 \N \N 6113225 2025-03-26 05:46:57.166 2025-03-26 05:46:57.166 4500 TIP 443122 21026 \N \N 6113242 2025-03-26 05:47:26.669 2025-03-26 05:47:26.669 2700 FEE 438678 21202 \N \N 6113243 2025-03-26 05:47:26.669 2025-03-26 05:47:26.669 24300 TIP 438678 8954 \N \N 6113249 2025-03-26 05:47:59.412 2025-03-26 05:47:59.412 1000 FEE 443588 19576 \N \N 6113254 2025-03-26 05:48:12.831 2025-03-26 05:48:12.831 300 FEE 441807 21060 \N \N 6113255 2025-03-26 05:48:12.831 2025-03-26 05:48:12.831 2700 TIP 441807 5527 \N \N 6113263 2025-03-26 05:48:48.836 2025-03-26 05:48:48.836 300 FEE 443105 628 \N \N 6113264 2025-03-26 05:48:48.836 2025-03-26 05:48:48.836 2700 TIP 443105 9330 \N \N 6113285 2025-03-26 05:50:02.15 2025-03-26 05:50:02.15 2700 FEE 443319 9335 \N \N 6113286 2025-03-26 05:50:02.15 2025-03-26 05:50:02.15 24300 TIP 443319 10056 \N \N 6113297 2025-03-26 05:50:51.446 2025-03-26 05:50:51.446 300 FEE 442718 1626 \N \N 6113298 2025-03-26 05:50:51.446 2025-03-26 05:50:51.446 2700 TIP 442718 19094 \N \N 6113310 2025-03-26 05:51:39.379 2025-03-26 05:51:39.379 1000 FEE 443595 1650 \N \N 6113322 2025-03-26 05:53:18.535 2025-03-26 05:53:18.535 1000 FEE 443599 10311 \N \N 6113336 2025-03-26 05:54:11.458 2025-03-26 05:54:11.458 900 FEE 443583 646 \N \N 6113337 2025-03-26 05:54:11.458 2025-03-26 05:54:11.458 8100 TIP 443583 16406 \N \N 6113358 2025-03-26 05:55:03.187 2025-03-26 05:55:03.187 7700 FEE 443577 16284 \N \N 6113359 2025-03-26 05:55:03.187 2025-03-26 05:55:03.187 69300 TIP 443577 21275 \N \N 6113360 2025-03-26 05:55:03.269 2025-03-26 05:55:03.269 7700 FEE 443577 716 \N \N 6113361 2025-03-26 05:55:03.269 2025-03-26 05:55:03.269 69300 TIP 443577 5036 \N \N 6113364 2025-03-26 05:55:07.715 2025-03-26 05:55:07.715 2100 FEE 443602 678 \N \N 6113365 2025-03-26 05:55:07.715 2025-03-26 05:55:07.715 18900 TIP 443602 21339 \N \N 6113366 2025-03-26 05:55:10.787 2025-03-26 05:55:10.787 1000 FEE 443604 17714 \N \N 6113370 2025-03-26 05:55:15.923 2025-03-26 05:55:15.923 100 FEE 443592 20636 \N \N 6113371 2025-03-26 05:55:15.923 2025-03-26 05:55:15.923 900 TIP 443592 17291 \N \N 6113386 2025-03-26 05:56:40.859 2025-03-26 05:56:40.859 1000 FEE 443609 15091 \N \N 6113387 2025-03-26 05:56:47.212 2025-03-26 05:56:47.212 2100 FEE 443577 17109 \N \N 6113388 2025-03-26 05:56:47.212 2025-03-26 05:56:47.212 18900 TIP 443577 15703 \N \N 6113397 2025-03-26 05:57:36.498 2025-03-26 05:57:36.498 1000 FEE 443610 19842 \N \N 6113414 2025-03-26 05:58:44.835 2025-03-26 05:58:44.835 6300 FEE 443473 15146 \N \N 6112831 2025-03-26 05:29:21.96 2025-03-26 05:29:21.96 100 FEE 443541 811 \N \N 6112832 2025-03-26 05:29:21.96 2025-03-26 05:29:21.96 900 TIP 443541 9366 \N \N 6112833 2025-03-26 05:29:22.55 2025-03-26 05:29:22.55 1700 FEE 443528 2741 \N \N 6112834 2025-03-26 05:29:22.55 2025-03-26 05:29:22.55 15300 TIP 443528 18368 \N \N 6112837 2025-03-26 05:29:24.245 2025-03-26 05:29:24.245 1000 FEE 443547 2204 \N \N 6112846 2025-03-26 05:30:03.879 2025-03-26 05:30:03.879 1000 FEE 443548 14910 \N \N 6112859 2025-03-26 05:31:45.506 2025-03-26 05:31:45.506 30000 FEE 443304 4474 \N \N 6112860 2025-03-26 05:31:45.506 2025-03-26 05:31:45.506 270000 TIP 443304 21421 \N \N 6112891 2025-03-26 05:35:22.372 2025-03-26 05:35:22.372 3100 FEE 443517 2123 \N \N 6112892 2025-03-26 05:35:22.372 2025-03-26 05:35:22.372 27900 TIP 443517 20912 \N \N 6112903 2025-03-26 05:36:09.776 2025-03-26 05:36:09.776 1000 FEE 443567 20409 \N \N 6112909 2025-03-26 05:36:40.641 2025-03-26 05:36:40.641 2100 FEE 443532 10013 \N \N 6112910 2025-03-26 05:36:40.641 2025-03-26 05:36:40.641 18900 TIP 443532 21254 \N \N 6112913 2025-03-26 05:36:51.559 2025-03-26 05:36:51.559 3100 FEE 443560 19189 \N \N 6112914 2025-03-26 05:36:51.559 2025-03-26 05:36:51.559 27900 TIP 443560 2757 \N \N 6112916 2025-03-26 05:37:08.331 2025-03-26 05:37:08.331 1000 FEE 443568 19569 \N \N 6112918 2025-03-26 05:37:12.1 2025-03-26 05:37:12.1 1000 FEE 443570 9476 \N \N 6112935 2025-03-26 05:38:05.295 2025-03-26 05:38:05.295 2100 FEE 443399 1705 \N \N 6112936 2025-03-26 05:38:05.295 2025-03-26 05:38:05.295 18900 TIP 443399 2620 \N \N 6112942 2025-03-26 05:38:22.003 2025-03-26 05:38:22.003 2100 FEE 443490 12245 \N \N 6112943 2025-03-26 05:38:22.003 2025-03-26 05:38:22.003 18900 TIP 443490 3656 \N \N 6112962 2025-03-26 05:39:14.552 2025-03-26 05:39:14.552 7700 FEE 443274 1428 \N \N 6112963 2025-03-26 05:39:14.552 2025-03-26 05:39:14.552 69300 TIP 443274 20647 \N \N 6112974 2025-03-26 05:39:17.884 2025-03-26 05:39:17.884 7700 FEE 443274 670 \N \N 6112975 2025-03-26 05:39:17.884 2025-03-26 05:39:17.884 69300 TIP 443274 21291 \N \N 6112980 2025-03-26 05:39:25.03 2025-03-26 05:39:25.03 15400 FEE 443372 1729 \N \N 6112981 2025-03-26 05:39:25.03 2025-03-26 05:39:25.03 138600 TIP 443372 2016 \N \N 6112984 2025-03-26 05:39:25.256 2025-03-26 05:39:25.256 7700 FEE 443372 20599 \N \N 6112985 2025-03-26 05:39:25.256 2025-03-26 05:39:25.256 69300 TIP 443372 681 \N \N 6112994 2025-03-26 05:39:25.828 2025-03-26 05:39:25.828 7700 FEE 443372 19813 \N \N 6112995 2025-03-26 05:39:25.828 2025-03-26 05:39:25.828 69300 TIP 443372 681 \N \N 6113014 2025-03-26 05:39:30.363 2025-03-26 05:39:30.363 7700 FEE 443179 697 \N \N 6113015 2025-03-26 05:39:30.363 2025-03-26 05:39:30.363 69300 TIP 443179 19502 \N \N 6113054 2025-03-26 05:40:11.168 2025-03-26 05:40:11.168 7700 FEE 443514 12072 \N \N 6113055 2025-03-26 05:40:11.168 2025-03-26 05:40:11.168 69300 TIP 443514 5499 \N \N 6113059 2025-03-26 05:40:14.051 2025-03-26 05:40:14.051 2100 FEE 443336 654 \N \N 6113060 2025-03-26 05:40:14.051 2025-03-26 05:40:14.051 18900 TIP 443336 20817 \N \N 6113125 2025-03-26 05:44:42.327 2025-03-26 05:44:42.327 1000 FEE 443582 17693 \N \N 6113126 2025-03-26 05:44:42.327 2025-03-26 05:44:42.327 9000 TIP 443582 1738 \N \N 6113181 2025-03-26 05:46:11.294 2025-03-26 05:46:11.294 300 FEE 443545 5746 \N \N 6113182 2025-03-26 05:46:11.294 2025-03-26 05:46:11.294 2700 TIP 443545 10409 \N \N 6113183 2025-03-26 05:46:11.822 2025-03-26 05:46:11.822 300 FEE 442904 14688 \N \N 6113184 2025-03-26 05:46:11.822 2025-03-26 05:46:11.822 2700 TIP 442904 17891 \N \N 6113214 2025-03-26 05:46:17.124 2025-03-26 05:46:17.124 7700 FEE 443525 9552 \N \N 6113215 2025-03-26 05:46:17.124 2025-03-26 05:46:17.124 69300 TIP 443525 21444 \N \N 6113221 2025-03-26 05:46:44.561 2025-03-26 05:46:44.561 1000 FEE 443585 7827 \N \N 6113270 2025-03-26 05:49:16.818 2025-03-26 05:49:16.818 1000 FEE 443591 1244 \N \N 6113273 2025-03-26 05:49:24.174 2025-03-26 05:49:24.174 5000 FEE 443583 18368 \N \N 6113274 2025-03-26 05:49:24.174 2025-03-26 05:49:24.174 45000 TIP 443583 9476 \N \N 6113305 2025-03-26 05:51:06.784 2025-03-26 05:51:06.784 1000 FEE 443545 635 \N \N 6113306 2025-03-26 05:51:06.784 2025-03-26 05:51:06.784 9000 TIP 443545 14258 \N \N 6113308 2025-03-26 05:51:31.149 2025-03-26 05:51:31.149 21800 FEE 443319 16176 \N \N 6113309 2025-03-26 05:51:31.149 2025-03-26 05:51:31.149 196200 TIP 443319 11798 \N \N 6113316 2025-03-26 05:53:09.271 2025-03-26 05:53:09.271 6300 FEE 443545 1493 \N \N 6113317 2025-03-26 05:53:09.271 2025-03-26 05:53:09.271 56700 TIP 443545 7818 \N \N 6113327 2025-03-26 05:53:31.883 2025-03-26 05:53:31.883 1000 FEE 443600 18727 \N \N 6113330 2025-03-26 05:53:58.025 2025-03-26 05:53:58.025 400 FEE 443568 14489 \N \N 6113331 2025-03-26 05:53:58.025 2025-03-26 05:53:58.025 3600 TIP 443568 1605 \N \N 6113346 2025-03-26 05:54:45.964 2025-03-26 05:54:45.964 2100 FEE 443593 21683 \N \N 6113347 2025-03-26 05:54:45.964 2025-03-26 05:54:45.964 18900 TIP 443593 5017 \N \N 6113368 2025-03-26 05:55:14.509 2025-03-26 05:55:14.509 3300 FEE 443543 13599 \N \N 6113369 2025-03-26 05:55:14.509 2025-03-26 05:55:14.509 29700 TIP 443543 12483 \N \N 6113392 2025-03-26 05:57:16.897 2025-03-26 05:57:16.897 0 FEE 443608 20577 \N \N 6113405 2025-03-26 05:58:11.748 2025-03-26 05:58:11.748 0 FEE 443602 1785 \N \N 6113426 2025-03-26 05:59:34.683 2025-03-26 05:59:34.683 3100 FEE 443583 1130 \N \N 6113427 2025-03-26 05:59:34.683 2025-03-26 05:59:34.683 27900 TIP 443583 910 \N \N 6113478 2025-03-26 06:01:20.071 2025-03-26 06:01:20.071 7700 FEE 443617 15119 \N \N 6113479 2025-03-26 06:01:20.071 2025-03-26 06:01:20.071 69300 TIP 443617 19996 \N \N 6113506 2025-03-26 06:02:20.339 2025-03-26 06:02:20.339 1000 FEE 443623 18618 \N \N 6113515 2025-03-26 06:02:51.657 2025-03-26 06:02:51.657 1000 FEE 443626 15103 \N \N 6113527 2025-03-26 06:03:09.528 2025-03-26 06:03:09.528 100 FEE 443589 20683 \N \N 6113528 2025-03-26 06:03:09.528 2025-03-26 06:03:09.528 900 TIP 443589 10490 \N \N 6113531 2025-03-26 06:03:16.896 2025-03-26 06:03:16.896 100 FEE 443579 8544 \N \N 6113532 2025-03-26 06:03:16.896 2025-03-26 06:03:16.896 900 TIP 443579 9290 \N \N 6113564 2025-03-26 06:04:11.339 2025-03-26 06:04:11.339 300 FEE 443613 11527 \N \N 6113565 2025-03-26 06:04:11.339 2025-03-26 06:04:11.339 2700 TIP 443613 9364 \N \N 6113570 2025-03-26 06:04:11.907 2025-03-26 06:04:11.907 300 FEE 443613 8926 \N \N 6113571 2025-03-26 06:04:11.907 2025-03-26 06:04:11.907 2700 TIP 443613 4177 \N \N 6113580 2025-03-26 06:04:21.76 2025-03-26 06:04:21.76 100 FEE 443524 18923 \N \N 6113581 2025-03-26 06:04:21.76 2025-03-26 06:04:21.76 900 TIP 443524 998 \N \N 6113590 2025-03-26 06:04:30.034 2025-03-26 06:04:30.034 1000 FEE 443638 21480 \N \N 6113619 2025-03-26 06:05:38.429 2025-03-26 06:05:38.429 10000 FEE 443611 9352 \N \N 6113620 2025-03-26 06:05:38.429 2025-03-26 06:05:38.429 90000 TIP 443611 670 \N \N 6113634 2025-03-26 06:08:12.51 2025-03-26 06:08:12.51 1000 FEE 443650 18525 \N \N 6113659 2025-03-26 06:09:39.791 2025-03-26 06:09:39.791 2700 FEE 443624 19759 \N \N 6113660 2025-03-26 06:09:39.791 2025-03-26 06:09:39.791 24300 TIP 443624 20479 \N \N 6113665 2025-03-26 06:09:40.322 2025-03-26 06:09:40.322 2700 FEE 443624 7674 \N \N 6113666 2025-03-26 06:09:40.322 2025-03-26 06:09:40.322 24300 TIP 443624 13042 \N \N 6113692 2025-03-26 06:10:39.901 2025-03-26 06:10:39.901 2700 FEE 443545 10490 \N \N 6113693 2025-03-26 06:10:39.901 2025-03-26 06:10:39.901 24300 TIP 443545 20970 \N \N 6113735 2025-03-26 06:13:21.217 2025-03-26 06:13:21.217 5700 FEE 443528 762 \N \N 6113736 2025-03-26 06:13:21.217 2025-03-26 06:13:21.217 51300 TIP 443528 2367 \N \N 6113737 2025-03-26 06:13:38.13 2025-03-26 06:13:38.13 6100 FEE 443647 20245 \N \N 6113738 2025-03-26 06:13:38.13 2025-03-26 06:13:38.13 54900 TIP 443647 10273 \N \N 6113749 2025-03-26 06:13:55.504 2025-03-26 06:13:55.504 2100 FEE 443611 21026 \N \N 6113750 2025-03-26 06:13:55.504 2025-03-26 06:13:55.504 18900 TIP 443611 7746 \N \N 6113764 2025-03-26 06:14:50.171 2025-03-26 06:14:50.171 1000 FEE 443661 766 \N \N 6113773 2025-03-26 06:15:55.001 2025-03-26 06:15:55.001 1000 FEE 443663 21218 \N \N 6044996 2025-03-20 08:06:12.098 2025-03-20 08:06:12.098 2100 FEE 435963 9655 \N \N 6044997 2025-03-20 08:06:12.098 2025-03-20 08:06:12.098 18900 TIP 435963 9833 \N \N 6044999 2025-03-20 08:06:19.455 2025-03-20 08:06:19.455 3300 FEE 436326 8505 \N \N 6045000 2025-03-20 08:06:19.455 2025-03-20 08:06:19.455 29700 TIP 436326 18231 \N \N 6045019 2025-03-20 08:07:37.843 2025-03-20 08:07:37.843 2100 FEE 436344 12946 \N \N 6045020 2025-03-20 08:07:37.843 2025-03-20 08:07:37.843 18900 TIP 436344 19494 \N \N 6045024 2025-03-20 08:07:50.064 2025-03-20 08:07:50.064 2100 FEE 436345 19581 \N \N 6045025 2025-03-20 08:07:50.064 2025-03-20 08:07:50.064 18900 TIP 436345 13169 \N \N 6045079 2025-03-20 08:09:35.878 2025-03-20 08:09:35.878 2100 FEE 436273 3683 \N \N 6045080 2025-03-20 08:09:35.878 2025-03-20 08:09:35.878 18900 TIP 436273 20205 \N \N 6045083 2025-03-20 08:09:39.927 2025-03-20 08:09:39.927 100 FEE 436302 21064 \N \N 6045084 2025-03-20 08:09:39.927 2025-03-20 08:09:39.927 900 TIP 436302 1729 \N \N 6045085 2025-03-20 08:09:49.201 2025-03-20 08:09:49.201 1000 FEE 436424 21019 \N \N 6045091 2025-03-20 08:10:12.472 2025-03-20 08:10:12.472 100 FEE 436246 9921 \N \N 6045092 2025-03-20 08:10:12.472 2025-03-20 08:10:12.472 900 TIP 436246 16754 \N \N 6045116 2025-03-20 08:12:12.751 2025-03-20 08:12:12.751 100 FEE 436308 5728 \N \N 6045117 2025-03-20 08:12:12.751 2025-03-20 08:12:12.751 900 TIP 436308 17519 \N \N 6045154 2025-03-20 08:14:24.846 2025-03-20 08:14:24.846 1000 FEE 436432 9084 \N \N 6045165 2025-03-20 08:14:31.945 2025-03-20 08:14:31.945 2100 FEE 435847 675 \N \N 6045166 2025-03-20 08:14:31.945 2025-03-20 08:14:31.945 18900 TIP 435847 2156 \N \N 6045178 2025-03-20 08:15:06.757 2025-03-20 08:15:06.757 2100 FEE 436316 5746 \N \N 6045179 2025-03-20 08:15:06.757 2025-03-20 08:15:06.757 18900 TIP 436316 5761 \N \N 6045189 2025-03-20 08:15:18.055 2025-03-20 08:15:18.055 2100 FEE 436255 1124 \N \N 6045190 2025-03-20 08:15:18.055 2025-03-20 08:15:18.055 18900 TIP 436255 1483 \N \N 6045191 2025-03-20 08:15:22.339 2025-03-20 08:15:22.339 2100 FEE 436253 20998 \N \N 6045192 2025-03-20 08:15:22.339 2025-03-20 08:15:22.339 18900 TIP 436253 4984 \N \N 6045197 2025-03-20 08:15:33.571 2025-03-20 08:15:33.571 2100 FEE 436248 7389 \N \N 6045198 2025-03-20 08:15:33.571 2025-03-20 08:15:33.571 18900 TIP 436248 837 \N \N 6045213 2025-03-20 08:16:08.368 2025-03-20 08:16:08.368 1000 FEE 436436 17533 \N \N 6045215 2025-03-20 08:16:26.342 2025-03-20 08:16:26.342 12100 FEE 436240 805 \N \N 6045216 2025-03-20 08:16:26.342 2025-03-20 08:16:26.342 108900 TIP 436240 8498 \N \N 6045225 2025-03-20 08:16:34.676 2025-03-20 08:16:34.676 2100 FEE 436326 18829 \N \N 6045226 2025-03-20 08:16:34.676 2025-03-20 08:16:34.676 18900 TIP 436326 21424 \N \N 6045231 2025-03-20 08:16:36.3 2025-03-20 08:16:36.3 2100 FEE 436326 750 \N \N 6045232 2025-03-20 08:16:36.3 2025-03-20 08:16:36.3 18900 TIP 436326 16124 \N \N 6045233 2025-03-20 08:16:37.641 2025-03-20 08:16:37.641 100 FEE 436203 21383 \N \N 6045234 2025-03-20 08:16:37.641 2025-03-20 08:16:37.641 900 TIP 436203 21061 \N \N 6045245 2025-03-20 08:16:51.146 2025-03-20 08:16:51.146 2100 FEE 436197 13553 \N \N 6045246 2025-03-20 08:16:51.146 2025-03-20 08:16:51.146 18900 TIP 436197 12245 \N \N 6045296 2025-03-20 08:20:16.221 2025-03-20 08:20:16.221 2300 FEE 436437 6058 \N \N 6045297 2025-03-20 08:20:16.221 2025-03-20 08:20:16.221 20700 TIP 436437 2111 \N \N 6045350 2025-03-20 08:20:21.155 2025-03-20 08:20:21.155 2300 FEE 436437 1802 \N \N 6045351 2025-03-20 08:20:21.155 2025-03-20 08:20:21.155 20700 TIP 436437 10849 \N \N 6045354 2025-03-20 08:20:21.471 2025-03-20 08:20:21.471 2300 FEE 436437 725 \N \N 6045355 2025-03-20 08:20:21.471 2025-03-20 08:20:21.471 20700 TIP 436437 12507 \N \N 6045366 2025-03-20 08:20:22.174 2025-03-20 08:20:22.174 2300 FEE 436437 7992 \N \N 6045367 2025-03-20 08:20:22.174 2025-03-20 08:20:22.174 20700 TIP 436437 17519 \N \N 6045376 2025-03-20 08:20:22.848 2025-03-20 08:20:22.848 21000 FEE 436440 2774 \N \N 6045378 2025-03-20 08:21:01.326 2025-03-20 08:21:01.326 1000 FEE 436442 20225 \N \N 6045413 2025-03-20 08:22:54.535 2025-03-20 08:22:54.535 2300 FEE 436437 17124 \N \N 6045414 2025-03-20 08:22:54.535 2025-03-20 08:22:54.535 20700 TIP 436437 18269 \N \N 6045423 2025-03-20 08:22:55.216 2025-03-20 08:22:55.216 2300 FEE 436437 20757 \N \N 6045424 2025-03-20 08:22:55.216 2025-03-20 08:22:55.216 20700 TIP 436437 20901 \N \N 6045449 2025-03-20 08:22:57.05 2025-03-20 08:22:57.05 2300 FEE 436437 770 \N \N 6045450 2025-03-20 08:22:57.05 2025-03-20 08:22:57.05 20700 TIP 436437 9036 \N \N 6045459 2025-03-20 08:23:49.422 2025-03-20 08:23:49.422 1000 FEE 436448 21212 \N \N 6045464 2025-03-20 08:24:05.978 2025-03-20 08:24:05.978 1000 FEE 436449 659 \N \N 6045481 2025-03-20 08:24:47.488 2025-03-20 08:24:47.488 100 FEE 435751 21303 \N \N 6045482 2025-03-20 08:24:47.488 2025-03-20 08:24:47.488 900 TIP 435751 20201 \N \N 6045530 2025-03-20 08:26:13.521 2025-03-20 08:26:13.521 2100 FEE 436430 2537 \N \N 6045531 2025-03-20 08:26:13.521 2025-03-20 08:26:13.521 18900 TIP 436430 21180 \N \N 6045541 2025-03-20 08:27:18.755 2025-03-20 08:27:18.755 2300 FEE 436449 10536 \N \N 6045542 2025-03-20 08:27:18.755 2025-03-20 08:27:18.755 20700 TIP 436449 19759 \N \N 6045543 2025-03-20 08:27:30.653 2025-03-20 08:27:30.653 1000 FEE 436246 7966 \N \N 6045544 2025-03-20 08:27:30.653 2025-03-20 08:27:30.653 9000 TIP 436246 17722 \N \N 6045579 2025-03-20 08:32:05.392 2025-03-20 08:32:05.392 1600 FEE 435596 7673 \N \N 6045580 2025-03-20 08:32:05.392 2025-03-20 08:32:05.392 14400 TIP 435596 1785 \N \N 6045592 2025-03-20 08:32:38.031 2025-03-20 08:32:38.031 800 FEE 435630 20586 \N \N 6045593 2025-03-20 08:32:38.031 2025-03-20 08:32:38.031 7200 TIP 435630 21421 \N \N 6045598 2025-03-20 08:32:53.604 2025-03-20 08:32:53.604 800 FEE 436065 1823 \N \N 6045599 2025-03-20 08:32:53.604 2025-03-20 08:32:53.604 7200 TIP 436065 6160 \N \N 6045604 2025-03-20 08:33:06.301 2025-03-20 08:33:06.301 800 FEE 436417 16660 \N \N 6045605 2025-03-20 08:33:06.301 2025-03-20 08:33:06.301 7200 TIP 436417 11144 \N \N 6045668 2025-03-20 08:36:00.933 2025-03-20 08:36:00.933 8300 FEE 436459 9171 \N \N 6045669 2025-03-20 08:36:00.933 2025-03-20 08:36:00.933 74700 TIP 436459 775 \N \N 6045682 2025-03-20 08:36:12.845 2025-03-20 08:36:12.845 2100 FEE 435847 2329 \N \N 6045683 2025-03-20 08:36:12.845 2025-03-20 08:36:12.845 18900 TIP 435847 12188 \N \N 6045688 2025-03-20 08:36:53.795 2025-03-20 08:36:53.795 3300 FEE 436413 1490 \N \N 6045689 2025-03-20 08:36:53.795 2025-03-20 08:36:53.795 29700 TIP 436413 11621 \N \N 6045749 2025-03-20 08:41:08.214 2025-03-20 08:41:08.214 1000 FEE 436475 659 \N \N 6045750 2025-03-20 08:41:08.269 2025-03-20 08:41:08.269 9900 FEE 436450 2961 \N \N 6045751 2025-03-20 08:41:08.269 2025-03-20 08:41:08.269 89100 TIP 436450 1469 \N \N 6045757 2025-03-20 08:41:11.293 2025-03-20 08:41:11.293 1000 FEE 435682 16754 \N \N 6045758 2025-03-20 08:41:11.293 2025-03-20 08:41:11.293 9000 TIP 435682 5597 \N \N 6045772 2025-03-20 08:41:29.198 2025-03-20 08:41:29.198 1000 FEE 436475 5809 \N \N 6045773 2025-03-20 08:41:29.198 2025-03-20 08:41:29.198 9000 TIP 436475 14015 \N \N 6045783 2025-03-20 08:41:33.058 2025-03-20 08:41:33.058 3000 FEE 435906 4487 \N \N 6045784 2025-03-20 08:41:33.058 2025-03-20 08:41:33.058 27000 TIP 435906 9261 \N \N 6045787 2025-03-20 08:41:35.507 2025-03-20 08:41:35.507 1000 FEE 436335 16942 \N \N 6045788 2025-03-20 08:41:35.507 2025-03-20 08:41:35.507 9000 TIP 436335 1007 \N \N 6045823 2025-03-20 08:44:53.523 2025-03-20 08:44:53.523 1000 FEE 436484 977 \N \N 6045845 2025-03-20 08:49:11.435 2025-03-20 08:49:11.435 1000 FEE 436364 673 \N \N 6045846 2025-03-20 08:49:11.435 2025-03-20 08:49:11.435 9000 TIP 436364 11145 \N \N 6045858 2025-03-20 08:49:58.895 2025-03-20 08:49:58.895 1000 FEE 431189 2775 \N \N 6045859 2025-03-20 08:49:58.895 2025-03-20 08:49:58.895 9000 TIP 431189 20555 \N \N 6045887 2025-03-20 08:50:47.415 2025-03-20 08:50:47.415 1100 FEE 436323 20775 \N \N 6045888 2025-03-20 08:50:47.415 2025-03-20 08:50:47.415 9900 TIP 436323 21274 \N \N 6045931 2025-03-20 08:52:26.036 2025-03-20 08:52:26.036 100 FEE 436496 17201 \N \N 6045932 2025-03-20 08:52:26.036 2025-03-20 08:52:26.036 900 TIP 436496 19193 \N \N 6045956 2025-03-20 08:54:45.806 2025-03-20 08:54:45.806 0 FEE 436494 21057 \N \N 6045974 2025-03-20 08:56:09.73 2025-03-20 08:56:09.73 1000 FEE 436501 16410 \N \N 6046012 2025-03-20 08:58:24.457 2025-03-20 08:58:24.457 1000 POLL 435495 19581 \N \N 6046070 2025-03-20 09:04:24.504 2025-03-20 09:04:24.504 100 FEE 436487 2844 \N \N 6046071 2025-03-20 09:04:24.504 2025-03-20 09:04:24.504 900 TIP 436487 14607 \N \N 6045046 2025-03-20 08:08:41.977 2025-03-20 08:08:41.977 2100 FEE 436231 9331 \N \N 6045047 2025-03-20 08:08:41.977 2025-03-20 08:08:41.977 18900 TIP 436231 3990 \N \N 6045055 2025-03-20 08:09:06.261 2025-03-20 08:09:06.261 1000 FEE 436423 16680 \N \N 6045063 2025-03-20 08:09:14.931 2025-03-20 08:09:14.931 2100 FEE 436136 1785 \N \N 6045064 2025-03-20 08:09:14.931 2025-03-20 08:09:14.931 18900 TIP 436136 20755 \N \N 6045088 2025-03-20 08:09:58.826 2025-03-20 08:09:58.826 2100 FEE 435924 19777 \N \N 6045089 2025-03-20 08:09:58.826 2025-03-20 08:09:58.826 18900 TIP 435924 13327 \N \N 6045120 2025-03-20 08:12:20.032 2025-03-20 08:12:20.032 1000 FEE 436430 18731 \N \N 6045133 2025-03-20 08:12:51.285 2025-03-20 08:12:51.285 2100 FEE 435467 680 \N \N 6045134 2025-03-20 08:12:51.285 2025-03-20 08:12:51.285 18900 TIP 435467 679 \N \N 6045144 2025-03-20 08:13:22.582 2025-03-20 08:13:22.582 16600 FEE 436417 2609 \N \N 6045145 2025-03-20 08:13:22.582 2025-03-20 08:13:22.582 149400 TIP 436417 21523 \N \N 6045146 2025-03-20 08:13:23.142 2025-03-20 08:13:23.142 2100 FEE 434197 1272 \N \N 6045147 2025-03-20 08:13:23.142 2025-03-20 08:13:23.142 18900 TIP 434197 21061 \N \N 6045176 2025-03-20 08:14:55.01 2025-03-20 08:14:55.01 2100 FEE 436322 6382 \N \N 6045177 2025-03-20 08:14:55.01 2025-03-20 08:14:55.01 18900 TIP 436322 6148 \N \N 6045184 2025-03-20 08:15:09.68 2025-03-20 08:15:09.68 4200 FEE 435954 1245 \N \N 6045185 2025-03-20 08:15:09.68 2025-03-20 08:15:09.68 37800 TIP 435954 16753 \N \N 6045200 2025-03-20 08:15:43.347 2025-03-20 08:15:43.347 2100 FEE 436191 20377 \N \N 6045201 2025-03-20 08:15:43.347 2025-03-20 08:15:43.347 18900 TIP 436191 19906 \N \N 6045229 2025-03-20 08:16:35.282 2025-03-20 08:16:35.282 2100 FEE 436326 12769 \N \N 6045230 2025-03-20 08:16:35.282 2025-03-20 08:16:35.282 18900 TIP 436326 882 \N \N 6045241 2025-03-20 08:16:50.299 2025-03-20 08:16:50.299 2100 FEE 436197 5728 \N \N 6045242 2025-03-20 08:16:50.299 2025-03-20 08:16:50.299 18900 TIP 436197 13162 \N \N 6045247 2025-03-20 08:16:51.933 2025-03-20 08:16:51.933 2100 FEE 436197 20939 \N \N 6045248 2025-03-20 08:16:51.933 2025-03-20 08:16:51.933 18900 TIP 436197 19826 \N \N 6045259 2025-03-20 08:18:38.376 2025-03-20 08:18:38.376 2100 FEE 435944 13327 \N \N 6045260 2025-03-20 08:18:38.376 2025-03-20 08:18:38.376 18900 TIP 435944 19488 \N \N 6045290 2025-03-20 08:20:15.806 2025-03-20 08:20:15.806 2300 FEE 436437 1236 \N \N 6045291 2025-03-20 08:20:15.806 2025-03-20 08:20:15.806 20700 TIP 436437 14168 \N \N 6045304 2025-03-20 08:20:16.788 2025-03-20 08:20:16.788 2300 FEE 436437 20023 \N \N 6045305 2025-03-20 08:20:16.788 2025-03-20 08:20:16.788 20700 TIP 436437 15463 \N \N 6045328 2025-03-20 08:20:19.073 2025-03-20 08:20:19.073 2300 FEE 436437 9307 \N \N 6045329 2025-03-20 08:20:19.073 2025-03-20 08:20:19.073 20700 TIP 436437 20225 \N \N 6045360 2025-03-20 08:20:21.851 2025-03-20 08:20:21.851 2300 FEE 436437 1003 \N \N 6045361 2025-03-20 08:20:21.851 2025-03-20 08:20:21.851 20700 TIP 436437 20190 \N \N 6045368 2025-03-20 08:20:22.325 2025-03-20 08:20:22.325 2300 FEE 436437 21833 \N \N 6045369 2025-03-20 08:20:22.325 2025-03-20 08:20:22.325 20700 TIP 436437 1483 \N \N 6045390 2025-03-20 08:22:36.868 2025-03-20 08:22:36.868 1000 FEE 436322 21222 \N \N 6045391 2025-03-20 08:22:36.868 2025-03-20 08:22:36.868 9000 TIP 436322 16684 \N \N 6045405 2025-03-20 08:22:53.997 2025-03-20 08:22:53.997 2300 FEE 436437 5870 \N \N 6045406 2025-03-20 08:22:53.997 2025-03-20 08:22:53.997 20700 TIP 436437 18005 \N \N 6045407 2025-03-20 08:22:54.122 2025-03-20 08:22:54.122 2300 FEE 436437 8505 \N \N 6045408 2025-03-20 08:22:54.122 2025-03-20 08:22:54.122 20700 TIP 436437 19663 \N \N 6045417 2025-03-20 08:22:54.797 2025-03-20 08:22:54.797 2300 FEE 436437 8459 \N \N 6045418 2025-03-20 08:22:54.797 2025-03-20 08:22:54.797 20700 TIP 436437 21003 \N \N 6045427 2025-03-20 08:22:55.482 2025-03-20 08:22:55.482 2300 FEE 436437 12779 \N \N 6045428 2025-03-20 08:22:55.482 2025-03-20 08:22:55.482 20700 TIP 436437 7827 \N \N 6045458 2025-03-20 08:23:38.26 2025-03-20 08:23:38.26 1000 FEE 436447 20854 \N \N 6045462 2025-03-20 08:24:00.213 2025-03-20 08:24:00.213 2300 FEE 436396 666 \N \N 6045463 2025-03-20 08:24:00.213 2025-03-20 08:24:00.213 20700 TIP 436396 1195 \N \N 6045479 2025-03-20 08:24:47.347 2025-03-20 08:24:47.347 100 FEE 435751 13361 \N \N 6045480 2025-03-20 08:24:47.347 2025-03-20 08:24:47.347 900 TIP 435751 18500 \N \N 6045485 2025-03-20 08:24:47.777 2025-03-20 08:24:47.777 100 FEE 435751 8168 \N \N 6045486 2025-03-20 08:24:47.777 2025-03-20 08:24:47.777 900 TIP 435751 9354 \N \N 6045493 2025-03-20 08:24:49.902 2025-03-20 08:24:49.902 100 FEE 435751 19826 \N \N 6045494 2025-03-20 08:24:49.902 2025-03-20 08:24:49.902 900 TIP 435751 21291 \N \N 6045521 2025-03-20 08:25:19.02 2025-03-20 08:25:19.02 1000 FEE 436341 20434 \N \N 6045522 2025-03-20 08:25:19.02 2025-03-20 08:25:19.02 9000 TIP 436341 1114 \N \N 6045526 2025-03-20 08:25:48.177 2025-03-20 08:25:48.177 200 FEE 436444 2203 \N \N 6045527 2025-03-20 08:25:48.177 2025-03-20 08:25:48.177 1800 TIP 436444 20306 \N \N 6045535 2025-03-20 08:27:15.423 2025-03-20 08:27:15.423 1000 FEE 436374 11750 \N \N 6045536 2025-03-20 08:27:15.423 2025-03-20 08:27:15.423 9000 TIP 436374 21522 \N \N 6045539 2025-03-20 08:27:18.05 2025-03-20 08:27:18.05 2300 FEE 436449 4819 \N \N 6045540 2025-03-20 08:27:18.05 2025-03-20 08:27:18.05 20700 TIP 436449 1881 \N \N 6045554 2025-03-20 08:28:09.754 2025-03-20 08:28:09.754 1000 FEE 436244 4250 \N \N 6045555 2025-03-20 08:28:09.754 2025-03-20 08:28:09.754 9000 TIP 436244 1320 \N \N 6045602 2025-03-20 08:33:02.337 2025-03-20 08:33:02.337 800 FEE 435346 3353 \N \N 6045603 2025-03-20 08:33:02.337 2025-03-20 08:33:02.337 7200 TIP 435346 16276 \N \N 6045612 2025-03-20 08:33:18.082 2025-03-20 08:33:18.082 800 FEE 435438 5746 \N \N 6045613 2025-03-20 08:33:18.082 2025-03-20 08:33:18.082 7200 TIP 435438 20563 \N \N 6045631 2025-03-20 08:35:00.196 2025-03-20 08:35:00.196 3300 FEE 435631 2402 \N \N 6045632 2025-03-20 08:35:00.196 2025-03-20 08:35:00.196 29700 TIP 435631 1638 \N \N 6045636 2025-03-20 08:35:14.757 2025-03-20 08:35:14.757 3300 FEE 436424 14452 \N \N 6045637 2025-03-20 08:35:14.757 2025-03-20 08:35:14.757 29700 TIP 436424 12774 \N \N 6045651 2025-03-20 08:35:40.054 2025-03-20 08:35:40.054 1000 FEE 436372 16965 \N \N 6045652 2025-03-20 08:35:40.054 2025-03-20 08:35:40.054 9000 TIP 436372 5870 \N \N 6045686 2025-03-20 08:36:52.071 2025-03-20 08:36:52.071 3300 FEE 436438 1175 \N \N 6045687 2025-03-20 08:36:52.071 2025-03-20 08:36:52.071 29700 TIP 436438 17046 \N \N 6045702 2025-03-20 08:38:07.692 2025-03-20 08:38:07.692 3300 FEE 436391 21600 \N \N 6045703 2025-03-20 08:38:07.692 2025-03-20 08:38:07.692 29700 TIP 436391 11648 \N \N 6045708 2025-03-20 08:38:18.052 2025-03-20 08:38:18.052 1000 FEE 436333 2776 \N \N 6045709 2025-03-20 08:38:18.052 2025-03-20 08:38:18.052 9000 TIP 436333 17162 \N \N 6045727 2025-03-20 08:39:36.337 2025-03-20 08:39:36.337 1000 FEE 436445 9378 \N \N 6045728 2025-03-20 08:39:36.337 2025-03-20 08:39:36.337 9000 TIP 436445 9985 \N \N 6045114 2025-03-20 08:12:05.515 2025-03-20 08:12:05.515 100 FEE 436321 16176 \N \N 6045115 2025-03-20 08:12:05.515 2025-03-20 08:12:05.515 900 TIP 436321 7847 \N \N 6045123 2025-03-20 08:12:27.638 2025-03-20 08:12:27.638 2100 FEE 436322 17218 \N \N 6045124 2025-03-20 08:12:27.638 2025-03-20 08:12:27.638 18900 TIP 436322 18101 \N \N 6045129 2025-03-20 08:12:34.114 2025-03-20 08:12:34.114 8300 FEE 436413 2156 \N \N 6045130 2025-03-20 08:12:34.114 2025-03-20 08:12:34.114 74700 TIP 436413 18901 \N \N 6045142 2025-03-20 08:13:22.446 2025-03-20 08:13:22.446 2100 FEE 434197 831 \N \N 6045143 2025-03-20 08:13:22.446 2025-03-20 08:13:22.446 18900 TIP 434197 1007 \N \N 6045159 2025-03-20 08:14:31.028 2025-03-20 08:14:31.028 2100 FEE 435847 20757 \N \N 6045160 2025-03-20 08:14:31.028 2025-03-20 08:14:31.028 18900 TIP 435847 20377 \N \N 6045186 2025-03-20 08:15:11.316 2025-03-20 08:15:11.316 2100 FEE 435954 9863 \N \N 6045187 2025-03-20 08:15:11.316 2025-03-20 08:15:11.316 18900 TIP 435954 18351 \N \N 6045195 2025-03-20 08:15:26.484 2025-03-20 08:15:26.484 2100 FEE 436241 14489 \N \N 6045196 2025-03-20 08:15:26.484 2025-03-20 08:15:26.484 18900 TIP 436241 6653 \N \N 6045207 2025-03-20 08:15:53.046 2025-03-20 08:15:53.046 2100 FEE 436181 733 \N \N 6045208 2025-03-20 08:15:53.046 2025-03-20 08:15:53.046 18900 TIP 436181 20094 \N \N 6045223 2025-03-20 08:16:34.473 2025-03-20 08:16:34.473 2100 FEE 436326 1298 \N \N 6045224 2025-03-20 08:16:34.473 2025-03-20 08:16:34.473 18900 TIP 436326 19992 \N \N 6045256 2025-03-20 08:17:37.315 2025-03-20 08:17:37.315 2100 FEE 435675 2328 \N \N 6045257 2025-03-20 08:17:37.315 2025-03-20 08:17:37.315 18900 TIP 435675 16356 \N \N 6045268 2025-03-20 08:19:38.174 2025-03-20 08:19:38.174 100 FEE 432328 18232 \N \N 6045269 2025-03-20 08:19:38.174 2025-03-20 08:19:38.174 900 TIP 432328 16876 \N \N 6045272 2025-03-20 08:20:04.297 2025-03-20 08:20:04.297 1000 FEE 436439 6749 \N \N 6045300 2025-03-20 08:20:16.498 2025-03-20 08:20:16.498 2300 FEE 436437 14278 \N \N 6045301 2025-03-20 08:20:16.498 2025-03-20 08:20:16.498 20700 TIP 436437 794 \N \N 6045316 2025-03-20 08:20:17.615 2025-03-20 08:20:17.615 2300 FEE 436437 2543 \N \N 6045317 2025-03-20 08:20:17.615 2025-03-20 08:20:17.615 20700 TIP 436437 2722 \N \N 6045336 2025-03-20 08:20:19.706 2025-03-20 08:20:19.706 2300 FEE 436437 8505 \N \N 6045337 2025-03-20 08:20:19.706 2025-03-20 08:20:19.706 20700 TIP 436437 8423 \N \N 6045356 2025-03-20 08:20:21.573 2025-03-20 08:20:21.573 2300 FEE 436437 1577 \N \N 6045357 2025-03-20 08:20:21.573 2025-03-20 08:20:21.573 20700 TIP 436437 20220 \N \N 6045362 2025-03-20 08:20:22.006 2025-03-20 08:20:22.006 2300 FEE 436437 652 \N \N 6045363 2025-03-20 08:20:22.006 2025-03-20 08:20:22.006 20700 TIP 436437 659 \N \N 6045374 2025-03-20 08:20:22.735 2025-03-20 08:20:22.735 2300 FEE 436437 18930 \N \N 6045375 2025-03-20 08:20:22.735 2025-03-20 08:20:22.735 20700 TIP 436437 15386 \N \N 6045379 2025-03-20 08:21:03.101 2025-03-20 08:21:03.101 1100 FEE 436322 21805 \N \N 6045380 2025-03-20 08:21:03.101 2025-03-20 08:21:03.101 9900 TIP 436322 14278 \N \N 6045382 2025-03-20 08:21:34.724 2025-03-20 08:21:34.724 1000 FEE 436443 7983 \N \N 6045421 2025-03-20 08:22:55.082 2025-03-20 08:22:55.082 2300 FEE 436437 2537 \N \N 6045422 2025-03-20 08:22:55.082 2025-03-20 08:22:55.082 20700 TIP 436437 18526 \N \N 6045441 2025-03-20 08:22:56.484 2025-03-20 08:22:56.484 2300 FEE 436437 897 \N \N 6045442 2025-03-20 08:22:56.484 2025-03-20 08:22:56.484 20700 TIP 436437 21398 \N \N 6045460 2025-03-20 08:24:00.093 2025-03-20 08:24:00.093 4600 FEE 436396 17103 \N \N 6045461 2025-03-20 08:24:00.093 2025-03-20 08:24:00.093 41400 TIP 436396 15662 \N \N 6045469 2025-03-20 08:24:34.762 2025-03-20 08:24:34.762 1000 FEE 436450 14278 \N \N 6045470 2025-03-20 08:24:35.003 2025-03-20 08:24:35.003 1600 FEE 436442 8945 \N \N 6045471 2025-03-20 08:24:35.003 2025-03-20 08:24:35.003 14400 TIP 436442 4602 \N \N 6045501 2025-03-20 08:24:55.987 2025-03-20 08:24:55.987 2300 FEE 436445 8059 \N \N 6045502 2025-03-20 08:24:55.987 2025-03-20 08:24:55.987 20700 TIP 436445 21585 \N \N 6045513 2025-03-20 08:25:14.368 2025-03-20 08:25:14.368 1000 FEE 436412 21400 \N \N 6045514 2025-03-20 08:25:14.368 2025-03-20 08:25:14.368 9000 TIP 436412 1389 \N \N 6045552 2025-03-20 08:27:58.319 2025-03-20 08:27:58.319 4000 FEE 436413 697 \N \N 6045553 2025-03-20 08:27:58.319 2025-03-20 08:27:58.319 36000 TIP 436413 12368 \N \N 6045557 2025-03-20 08:28:23.493 2025-03-20 08:28:23.493 1000 FEE 436456 16670 \N \N 6045566 2025-03-20 08:29:11.544 2025-03-20 08:29:11.544 1000 FEE 436272 974 \N \N 6045567 2025-03-20 08:29:11.544 2025-03-20 08:29:11.544 9000 TIP 436272 15577 \N \N 6045581 2025-03-20 08:32:10.651 2025-03-20 08:32:10.651 1600 FEE 435579 19217 \N \N 6045582 2025-03-20 08:32:10.651 2025-03-20 08:32:10.651 14400 TIP 435579 15690 \N \N 6045586 2025-03-20 08:32:15.171 2025-03-20 08:32:15.171 1600 FEE 435284 954 \N \N 6045587 2025-03-20 08:32:15.171 2025-03-20 08:32:15.171 14400 TIP 435284 1401 \N \N 6045594 2025-03-20 08:32:43.976 2025-03-20 08:32:43.976 800 FEE 435928 10409 \N \N 6045595 2025-03-20 08:32:43.976 2025-03-20 08:32:43.976 7200 TIP 435928 19655 \N \N 6045618 2025-03-20 08:34:02.635 2025-03-20 08:34:02.635 1000 POLL 436323 8535 \N \N 6045621 2025-03-20 08:34:03.752 2025-03-20 08:34:03.752 6600 FEE 435610 2513 \N \N 6045622 2025-03-20 08:34:03.752 2025-03-20 08:34:03.752 59400 TIP 435610 16440 \N \N 6045658 2025-03-20 08:35:59.433 2025-03-20 08:35:59.433 8300 FEE 436459 10112 \N \N 6045659 2025-03-20 08:35:59.433 2025-03-20 08:35:59.433 74700 TIP 436459 9611 \N \N 6045676 2025-03-20 08:36:01.906 2025-03-20 08:36:01.906 8300 FEE 436459 12821 \N \N 6045677 2025-03-20 08:36:01.906 2025-03-20 08:36:01.906 74700 TIP 436459 17237 \N \N 6045678 2025-03-20 08:36:02.037 2025-03-20 08:36:02.037 8300 FEE 436459 11450 \N \N 6045679 2025-03-20 08:36:02.037 2025-03-20 08:36:02.037 74700 TIP 436459 5825 \N \N 6045694 2025-03-20 08:37:58.37 2025-03-20 08:37:58.37 21000 FEE 436466 671 \N \N 6045704 2025-03-20 08:38:10.184 2025-03-20 08:38:10.184 1000 FEE 436468 5829 \N \N 6045717 2025-03-20 08:39:12.651 2025-03-20 08:39:12.651 1000 FEE 436472 16059 \N \N 6045719 2025-03-20 08:39:14.803 2025-03-20 08:39:14.803 1000 FEE 436451 16350 \N \N 6045720 2025-03-20 08:39:14.803 2025-03-20 08:39:14.803 9000 TIP 436451 21239 \N \N 6045730 2025-03-20 08:39:50.804 2025-03-20 08:39:50.804 2300 FEE 436471 20768 \N \N 6045731 2025-03-20 08:39:50.804 2025-03-20 08:39:50.804 20700 TIP 436471 633 \N \N 6045734 2025-03-20 08:39:51.107 2025-03-20 08:39:51.107 2300 FEE 436471 18269 \N \N 6045735 2025-03-20 08:39:51.107 2025-03-20 08:39:51.107 20700 TIP 436471 16942 \N \N 6045755 2025-03-20 08:41:10.363 2025-03-20 08:41:10.363 27000 FEE 436466 15978 \N \N 6045756 2025-03-20 08:41:10.363 2025-03-20 08:41:10.363 243000 TIP 436466 21338 \N \N 6045759 2025-03-20 08:41:12.11 2025-03-20 08:41:12.11 1000 FEE 435682 8469 \N \N 6045760 2025-03-20 08:41:12.11 2025-03-20 08:41:12.11 9000 TIP 435682 2609 \N \N 6045770 2025-03-20 08:41:28.904 2025-03-20 08:41:28.904 1000 FEE 436475 19826 \N \N 6045771 2025-03-20 08:41:28.904 2025-03-20 08:41:28.904 9000 TIP 436475 18901 \N \N 6045785 2025-03-20 08:41:33.677 2025-03-20 08:41:33.677 27000 FEE 435906 21501 \N \N 6045157 2025-03-20 08:14:30.901 2025-03-20 08:14:30.901 2100 FEE 435847 21814 \N \N 6045158 2025-03-20 08:14:30.901 2025-03-20 08:14:30.901 18900 TIP 435847 15690 \N \N 6045163 2025-03-20 08:14:31.538 2025-03-20 08:14:31.538 2100 FEE 435847 1469 \N \N 6045164 2025-03-20 08:14:31.538 2025-03-20 08:14:31.538 18900 TIP 435847 16809 \N \N 6045180 2025-03-20 08:15:07.501 2025-03-20 08:15:07.501 2100 FEE 435954 20504 \N \N 6045181 2025-03-20 08:15:07.501 2025-03-20 08:15:07.501 18900 TIP 435954 10469 \N \N 6045193 2025-03-20 08:15:23.656 2025-03-20 08:15:23.656 100 FEE 436242 9341 \N \N 6045194 2025-03-20 08:15:23.656 2025-03-20 08:15:23.656 900 TIP 436242 17095 \N \N 6045205 2025-03-20 08:15:52.521 2025-03-20 08:15:52.521 10000 FEE 436323 19980 \N \N 6045206 2025-03-20 08:15:52.521 2025-03-20 08:15:52.521 90000 TIP 436323 807 \N \N 6045209 2025-03-20 08:15:57.8 2025-03-20 08:15:57.8 100 FEE 436181 1454 \N \N 6045210 2025-03-20 08:15:57.8 2025-03-20 08:15:57.8 900 TIP 436181 21408 \N \N 6045235 2025-03-20 08:16:37.862 2025-03-20 08:16:37.862 2100 FEE 436326 20436 \N \N 6045236 2025-03-20 08:16:37.862 2025-03-20 08:16:37.862 18900 TIP 436326 10291 \N \N 6045261 2025-03-20 08:18:43.33 2025-03-20 08:18:43.33 3000 FEE 436261 880 \N \N 6045262 2025-03-20 08:18:43.33 2025-03-20 08:18:43.33 27000 TIP 436261 10056 \N \N 6045277 2025-03-20 08:20:13.565 2025-03-20 08:20:13.565 2300 FEE 436437 15049 \N \N 6045278 2025-03-20 08:20:13.565 2025-03-20 08:20:13.565 20700 TIP 436437 12738 \N \N 6045279 2025-03-20 08:20:13.629 2025-03-20 08:20:13.629 2300 FEE 436437 16447 \N \N 6045280 2025-03-20 08:20:13.629 2025-03-20 08:20:13.629 20700 TIP 436437 7682 \N \N 6045285 2025-03-20 08:20:14.306 2025-03-20 08:20:14.306 6900 FEE 436437 16176 \N \N 6045286 2025-03-20 08:20:14.306 2025-03-20 08:20:14.306 62100 TIP 436437 2151 \N \N 6045292 2025-03-20 08:20:15.944 2025-03-20 08:20:15.944 2300 FEE 436437 4378 \N \N 6045293 2025-03-20 08:20:15.944 2025-03-20 08:20:15.944 20700 TIP 436437 644 \N \N 6045318 2025-03-20 08:20:17.774 2025-03-20 08:20:17.774 2300 FEE 436437 18557 \N \N 6045319 2025-03-20 08:20:17.774 2025-03-20 08:20:17.774 20700 TIP 436437 10934 \N \N 6045338 2025-03-20 08:20:19.827 2025-03-20 08:20:19.827 2300 FEE 436437 616 \N \N 6045339 2025-03-20 08:20:19.827 2025-03-20 08:20:19.827 20700 TIP 436437 20613 \N \N 6045340 2025-03-20 08:20:19.957 2025-03-20 08:20:19.957 2300 FEE 436437 1209 \N \N 6045341 2025-03-20 08:20:19.957 2025-03-20 08:20:19.957 20700 TIP 436437 20490 \N \N 6045352 2025-03-20 08:20:21.292 2025-03-20 08:20:21.292 2300 FEE 436437 2213 \N \N 6045353 2025-03-20 08:20:21.292 2025-03-20 08:20:21.292 20700 TIP 436437 20734 \N \N 6045358 2025-03-20 08:20:21.725 2025-03-20 08:20:21.725 2300 FEE 436437 16357 \N \N 6045359 2025-03-20 08:20:21.725 2025-03-20 08:20:21.725 20700 TIP 436437 15103 \N \N 6045364 2025-03-20 08:20:22.149 2025-03-20 08:20:22.149 1100 FEE 436273 3642 \N \N 6045365 2025-03-20 08:20:22.149 2025-03-20 08:20:22.149 9900 TIP 436273 21803 \N \N 6045383 2025-03-20 08:21:37.136 2025-03-20 08:21:37.136 3000 FEE 436241 21672 \N \N 6045384 2025-03-20 08:21:37.136 2025-03-20 08:21:37.136 27000 TIP 436241 928 \N \N 6045389 2025-03-20 08:22:15.51 2025-03-20 08:22:15.51 10000 FEE 436445 19535 \N \N 6045393 2025-03-20 08:22:51.893 2025-03-20 08:22:51.893 1000 FEE 436443 20133 \N \N 6045394 2025-03-20 08:22:51.893 2025-03-20 08:22:51.893 9000 TIP 436443 21442 \N \N 6045409 2025-03-20 08:22:54.268 2025-03-20 08:22:54.268 2300 FEE 436437 7673 \N \N 6045410 2025-03-20 08:22:54.268 2025-03-20 08:22:54.268 20700 TIP 436437 9364 \N \N 6045411 2025-03-20 08:22:54.384 2025-03-20 08:22:54.384 2300 FEE 436437 18526 \N \N 6045412 2025-03-20 08:22:54.384 2025-03-20 08:22:54.384 20700 TIP 436437 20179 \N \N 6045454 2025-03-20 08:23:28.411 2025-03-20 08:23:28.411 1000 FEE 436281 16424 \N \N 6045455 2025-03-20 08:23:28.411 2025-03-20 08:23:28.411 9000 TIP 436281 9833 \N \N 6045468 2025-03-20 08:24:29.946 2025-03-20 08:24:29.946 0 FEE 368845 20137 \N \N 6045491 2025-03-20 08:24:49.61 2025-03-20 08:24:49.61 100 FEE 435751 21701 \N \N 6045492 2025-03-20 08:24:49.61 2025-03-20 08:24:49.61 900 TIP 435751 1468 \N \N 6045495 2025-03-20 08:24:50.86 2025-03-20 08:24:50.86 200 FEE 435751 766 \N \N 6045496 2025-03-20 08:24:50.86 2025-03-20 08:24:50.86 1800 TIP 435751 11450 \N \N 6045516 2025-03-20 08:25:15.898 2025-03-20 08:25:15.898 1000 FEE 436440 15139 \N \N 6045517 2025-03-20 08:25:15.898 2025-03-20 08:25:15.898 9000 TIP 436440 15409 \N \N 6045519 2025-03-20 08:25:18.832 2025-03-20 08:25:18.832 1000 FEE 436341 19812 \N \N 6045520 2025-03-20 08:25:18.832 2025-03-20 08:25:18.832 9000 TIP 436341 20681 \N \N 6045523 2025-03-20 08:25:43.263 2025-03-20 08:25:43.263 1000 FEE 436453 16410 \N \N 6045528 2025-03-20 08:25:49.388 2025-03-20 08:25:49.388 200 FEE 436444 17592 \N \N 6045529 2025-03-20 08:25:49.388 2025-03-20 08:25:49.388 1800 TIP 436444 12808 \N \N 6045533 2025-03-20 08:27:11.63 2025-03-20 08:27:11.63 1000 FEE 436454 5527 \N \N 6045545 2025-03-20 08:27:31.503 2025-03-20 08:27:31.503 1000 FEE 436455 9339 \N \N 6045561 2025-03-20 08:28:52.728 2025-03-20 08:28:52.728 1000 FEE 436325 1802 \N \N 6045562 2025-03-20 08:28:52.728 2025-03-20 08:28:52.728 9000 TIP 436325 1120 \N \N 6045564 2025-03-20 08:29:08.207 2025-03-20 08:29:08.207 1000 FEE 436261 685 \N \N 6045565 2025-03-20 08:29:08.207 2025-03-20 08:29:08.207 9000 TIP 436261 700 \N \N 6045583 2025-03-20 08:32:12.583 2025-03-20 08:32:12.583 1600 FEE 435746 17109 \N \N 6045584 2025-03-20 08:32:12.583 2025-03-20 08:32:12.583 14400 TIP 435746 6191 \N \N 6045614 2025-03-20 08:33:28.477 2025-03-20 08:33:28.477 1000 FEE 436254 16950 \N \N 6045615 2025-03-20 08:33:28.477 2025-03-20 08:33:28.477 9000 TIP 436254 5597 \N \N 6045619 2025-03-20 08:34:02.831 2025-03-20 08:34:02.831 3300 FEE 435610 13544 \N \N 6045620 2025-03-20 08:34:02.831 2025-03-20 08:34:02.831 29700 TIP 435610 674 \N \N 6045624 2025-03-20 08:34:38.46 2025-03-20 08:34:38.46 1000 FEE 436461 14280 \N \N 6045625 2025-03-20 08:34:40.018 2025-03-20 08:34:40.018 10000 FEE 436462 889 \N \N 6045640 2025-03-20 08:35:15.186 2025-03-20 08:35:15.186 3300 FEE 436424 13217 \N \N 6045641 2025-03-20 08:35:15.186 2025-03-20 08:35:15.186 29700 TIP 436424 17041 \N \N 6045654 2025-03-20 08:35:59.201 2025-03-20 08:35:59.201 8300 FEE 436459 3353 \N \N 6045655 2025-03-20 08:35:59.201 2025-03-20 08:35:59.201 74700 TIP 436459 3409 \N \N 6045656 2025-03-20 08:35:59.333 2025-03-20 08:35:59.333 8300 FEE 436459 960 \N \N 6045657 2025-03-20 08:35:59.333 2025-03-20 08:35:59.333 74700 TIP 436459 20612 \N \N 6045690 2025-03-20 08:36:54.009 2025-03-20 08:36:54.009 3300 FEE 436413 1602 \N \N 6045691 2025-03-20 08:36:54.009 2025-03-20 08:36:54.009 29700 TIP 436413 21247 \N \N 6045695 2025-03-20 08:37:58.482 2025-03-20 08:37:58.482 3300 FEE 436273 2773 \N \N 6045696 2025-03-20 08:37:58.482 2025-03-20 08:37:58.482 29700 TIP 436273 7772 \N \N 6045714 2025-03-20 08:38:57.41 2025-03-20 08:38:57.41 1000 FEE 436469 16684 \N \N 6045732 2025-03-20 08:39:50.96 2025-03-20 08:39:50.96 2300 FEE 436471 21369 \N \N 6045733 2025-03-20 08:39:50.96 2025-03-20 08:39:50.96 20700 TIP 436471 714 \N \N 6045742 2025-03-20 08:40:22.87 2025-03-20 08:40:22.87 1000 FEE 436410 837 \N \N 6045743 2025-03-20 08:40:22.87 2025-03-20 08:40:22.87 9000 TIP 436410 5708 \N \N 6045774 2025-03-20 08:41:29.756 2025-03-20 08:41:29.756 1000 FEE 436475 4958 \N \N 6045775 2025-03-20 08:41:29.756 2025-03-20 08:41:29.756 9000 TIP 436475 21685 \N \N 6045778 2025-03-20 08:41:30.483 2025-03-20 08:41:30.483 1000 FEE 436475 21020 \N \N 6045779 2025-03-20 08:41:30.483 2025-03-20 08:41:30.483 9000 TIP 436475 2583 \N \N 6045795 2025-03-20 08:42:26.352 2025-03-20 08:42:26.352 1000 FEE 436481 2942 \N \N 6045799 2025-03-20 08:42:49.233 2025-03-20 08:42:49.233 1000 FEE 436298 696 \N \N 6045800 2025-03-20 08:42:49.233 2025-03-20 08:42:49.233 9000 TIP 436298 9349 \N \N 6045825 2025-03-20 08:45:30.629 2025-03-20 08:45:30.629 1000 FEE 436485 10280 \N \N 6045832 2025-03-20 08:46:19.642 2025-03-20 08:46:19.642 1000 FEE 436488 9335 \N \N 6045843 2025-03-20 08:48:55.978 2025-03-20 08:48:55.978 1000 FEE 436412 20439 \N \N 6045844 2025-03-20 08:48:55.978 2025-03-20 08:48:55.978 9000 TIP 436412 802 \N \N 6112861 2025-03-26 05:31:46.17 2025-03-26 05:31:46.17 1000 FEE 443552 21249 \N \N 6112876 2025-03-26 05:33:47.029 2025-03-26 05:33:47.029 1000 FEE 443558 19346 \N \N 6112905 2025-03-26 05:36:24.442 2025-03-26 05:36:24.442 2100 FEE 443545 6191 \N \N 6112906 2025-03-26 05:36:24.442 2025-03-26 05:36:24.442 18900 TIP 443545 2583 \N \N 6112917 2025-03-26 05:37:10.42 2025-03-26 05:37:10.42 1000 FEE 443569 15890 \N \N 6112919 2025-03-26 05:37:12.536 2025-03-26 05:37:12.536 2100 FEE 443467 1429 \N \N 6112920 2025-03-26 05:37:12.536 2025-03-26 05:37:12.536 18900 TIP 443467 17321 \N \N 6112950 2025-03-26 05:39:04.174 2025-03-26 05:39:04.174 500 FEE 443272 20597 \N \N 6112951 2025-03-26 05:39:04.174 2025-03-26 05:39:04.174 4500 TIP 443272 21060 \N \N 6113016 2025-03-26 05:39:30.531 2025-03-26 05:39:30.531 7700 FEE 443179 1213 \N \N 6113017 2025-03-26 05:39:30.531 2025-03-26 05:39:30.531 69300 TIP 443179 18116 \N \N 6113042 2025-03-26 05:39:58.194 2025-03-26 05:39:58.194 7700 FEE 443339 4035 \N \N 6113043 2025-03-26 05:39:58.194 2025-03-26 05:39:58.194 69300 TIP 443339 7983 \N \N 6113050 2025-03-26 05:40:04.928 2025-03-26 05:40:04.928 2100 FEE 443483 15146 \N \N 6113051 2025-03-26 05:40:04.928 2025-03-26 05:40:04.928 18900 TIP 443483 16059 \N \N 6113080 2025-03-26 05:41:03.678 2025-03-26 05:41:03.678 2100 FEE 443312 20599 \N \N 6113081 2025-03-26 05:41:03.678 2025-03-26 05:41:03.678 18900 TIP 443312 15806 \N \N 6113086 2025-03-26 05:41:20.666 2025-03-26 05:41:20.666 10000 FEE 443579 20511 \N \N 6113089 2025-03-26 05:41:31.626 2025-03-26 05:41:31.626 500 FEE 443553 891 \N \N 6113090 2025-03-26 05:41:31.626 2025-03-26 05:41:31.626 4500 TIP 443553 16948 \N \N 6113191 2025-03-26 05:46:12.531 2025-03-26 05:46:12.531 1100 FEE 443423 769 \N \N 6113192 2025-03-26 05:46:12.531 2025-03-26 05:46:12.531 9900 TIP 443423 21418 \N \N 6113204 2025-03-26 05:46:13.622 2025-03-26 05:46:13.622 300 FEE 442904 6361 \N \N 6113205 2025-03-26 05:46:13.622 2025-03-26 05:46:13.622 2700 TIP 442904 13100 \N \N 6113210 2025-03-26 05:46:14.286 2025-03-26 05:46:14.286 300 FEE 442904 696 \N \N 6113211 2025-03-26 05:46:14.286 2025-03-26 05:46:14.286 2700 TIP 442904 826 \N \N 6113252 2025-03-26 05:48:12.108 2025-03-26 05:48:12.108 1700 FEE 443559 9906 \N \N 6113253 2025-03-26 05:48:12.108 2025-03-26 05:48:12.108 15300 TIP 443559 6594 \N \N 6113261 2025-03-26 05:48:47.838 2025-03-26 05:48:47.838 300 FEE 443099 4768 \N \N 6113262 2025-03-26 05:48:47.838 2025-03-26 05:48:47.838 2700 TIP 443099 663 \N \N 6113265 2025-03-26 05:48:49.87 2025-03-26 05:48:49.87 300 FEE 443268 21291 \N \N 6113266 2025-03-26 05:48:49.87 2025-03-26 05:48:49.87 2700 TIP 443268 5128 \N \N 6113277 2025-03-26 05:50:01.319 2025-03-26 05:50:01.319 2700 FEE 443319 2735 \N \N 6113278 2025-03-26 05:50:01.319 2025-03-26 05:50:01.319 24300 TIP 443319 15890 \N \N 6113281 2025-03-26 05:50:01.718 2025-03-26 05:50:01.718 2700 FEE 443319 16145 \N \N 6113282 2025-03-26 05:50:01.718 2025-03-26 05:50:01.718 24300 TIP 443319 9906 \N \N 6113295 2025-03-26 05:50:48.204 2025-03-26 05:50:48.204 1600 FEE 443583 1044 \N \N 6113296 2025-03-26 05:50:48.204 2025-03-26 05:50:48.204 14400 TIP 443583 15337 \N \N 6113311 2025-03-26 05:51:42.666 2025-03-26 05:51:42.666 1000 FEE 443596 16214 \N \N 6113314 2025-03-26 05:52:32.728 2025-03-26 05:52:32.728 1600 FEE 443589 8713 \N \N 6113315 2025-03-26 05:52:32.728 2025-03-26 05:52:32.728 14400 TIP 443589 5942 \N \N 6113334 2025-03-26 05:54:11.204 2025-03-26 05:54:11.204 100 FEE 443583 13865 \N \N 6113335 2025-03-26 05:54:11.204 2025-03-26 05:54:11.204 900 TIP 443583 8168 \N \N 6113343 2025-03-26 05:54:17.985 2025-03-26 05:54:17.985 1000 FEE 443601 21070 \N \N 6113356 2025-03-26 05:55:03.154 2025-03-26 05:55:03.154 7700 FEE 443577 667 \N \N 6113357 2025-03-26 05:55:03.154 2025-03-26 05:55:03.154 69300 TIP 443577 20852 \N \N 6113374 2025-03-26 05:55:21.768 2025-03-26 05:55:21.768 2100 FEE 443579 2609 \N \N 6113375 2025-03-26 05:55:21.768 2025-03-26 05:55:21.768 18900 TIP 443579 663 \N \N 6113378 2025-03-26 05:55:59.554 2025-03-26 05:55:59.554 1600 FEE 443593 20998 \N \N 6113379 2025-03-26 05:55:59.554 2025-03-26 05:55:59.554 14400 TIP 443593 8989 \N \N 6113385 2025-03-26 05:56:39.175 2025-03-26 05:56:39.175 0 FEE 443608 965 \N \N 6113395 2025-03-26 05:57:35.929 2025-03-26 05:57:35.929 3300 FEE 443583 837 \N \N 6113396 2025-03-26 05:57:35.929 2025-03-26 05:57:35.929 29700 TIP 443583 4754 \N \N 6113416 2025-03-26 05:58:49.58 2025-03-26 05:58:49.58 1000 FEE 443615 20577 \N \N 6113417 2025-03-26 05:59:11.465 2025-03-26 05:59:11.465 2500 FEE 443319 732 \N \N 6113418 2025-03-26 05:59:11.465 2025-03-26 05:59:11.465 22500 TIP 443319 14910 \N \N 6113437 2025-03-26 06:00:13.371 2025-03-26 06:00:13.371 400 FEE 443604 4313 \N \N 6113438 2025-03-26 06:00:13.371 2025-03-26 06:00:13.371 3600 TIP 443604 21279 \N \N 6113439 2025-03-26 06:00:14.281 2025-03-26 06:00:14.281 400 FEE 443048 19673 \N \N 6113440 2025-03-26 06:00:14.281 2025-03-26 06:00:14.281 3600 TIP 443048 14791 \N \N 6113464 2025-03-26 06:01:18.626 2025-03-26 06:01:18.626 7700 FEE 443617 21254 \N \N 6113465 2025-03-26 06:01:18.626 2025-03-26 06:01:18.626 69300 TIP 443617 1738 \N \N 6113466 2025-03-26 06:01:18.647 2025-03-26 06:01:18.647 7700 FEE 443617 20182 \N \N 6113467 2025-03-26 06:01:18.647 2025-03-26 06:01:18.647 69300 TIP 443617 679 \N \N 6113484 2025-03-26 06:01:20.769 2025-03-26 06:01:20.769 7700 FEE 443617 12609 \N \N 6113485 2025-03-26 06:01:20.769 2025-03-26 06:01:20.769 69300 TIP 443617 19854 \N \N 6113530 2025-03-26 06:03:13.797 2025-03-26 06:03:13.797 1000 FEE 443628 1692 \N \N 6113534 2025-03-26 06:03:19.66 2025-03-26 06:03:19.66 100 FEE 443578 19531 \N \N 6113535 2025-03-26 06:03:19.66 2025-03-26 06:03:19.66 900 TIP 443578 9494 \N \N 6113548 2025-03-26 06:03:44.162 2025-03-26 06:03:44.162 1700 FEE 443616 1618 \N \N 6113549 2025-03-26 06:03:44.162 2025-03-26 06:03:44.162 15300 TIP 443616 13467 \N \N 6113551 2025-03-26 06:03:54.363 2025-03-26 06:03:54.363 1000 FEE 443634 761 \N \N 6113614 2025-03-26 06:05:32.844 2025-03-26 06:05:32.844 1000 FEE 443645 16753 \N \N 6113625 2025-03-26 06:06:27.2 2025-03-26 06:06:27.2 1000 FEE 443647 9969 \N \N 6113647 2025-03-26 06:09:33.122 2025-03-26 06:09:33.122 2700 FEE 443645 1726 \N \N 6113648 2025-03-26 06:09:33.122 2025-03-26 06:09:33.122 24300 TIP 443645 17494 \N \N 6113653 2025-03-26 06:09:35.837 2025-03-26 06:09:35.837 2700 FEE 443645 16638 \N \N 6113654 2025-03-26 06:09:35.837 2025-03-26 06:09:35.837 24300 TIP 443645 1712 \N \N 6113661 2025-03-26 06:09:39.992 2025-03-26 06:09:39.992 2700 FEE 443624 1552 \N \N 6113662 2025-03-26 06:09:39.992 2025-03-26 06:09:39.992 24300 TIP 443624 897 \N \N 6045266 2025-03-20 08:19:30.599 2025-03-20 08:19:30.599 3000 FEE 436336 20660 \N \N 6045267 2025-03-20 08:19:30.599 2025-03-20 08:19:30.599 27000 TIP 436336 826 \N \N 6045271 2025-03-20 08:19:56.784 2025-03-20 08:19:56.784 1000 FEE 436438 21044 \N \N 6045283 2025-03-20 08:20:14.024 2025-03-20 08:20:14.024 2300 FEE 436437 692 \N \N 6045284 2025-03-20 08:20:14.024 2025-03-20 08:20:14.024 20700 TIP 436437 770 \N \N 6045294 2025-03-20 08:20:16.085 2025-03-20 08:20:16.085 2300 FEE 436437 929 \N \N 6045295 2025-03-20 08:20:16.085 2025-03-20 08:20:16.085 20700 TIP 436437 20965 \N \N 6045302 2025-03-20 08:20:16.659 2025-03-20 08:20:16.659 2300 FEE 436437 9611 \N \N 6045303 2025-03-20 08:20:16.659 2025-03-20 08:20:16.659 20700 TIP 436437 10944 \N \N 6045308 2025-03-20 08:20:17.064 2025-03-20 08:20:17.064 2300 FEE 436437 13574 \N \N 6045309 2025-03-20 08:20:17.064 2025-03-20 08:20:17.064 20700 TIP 436437 21825 \N \N 6045346 2025-03-20 08:20:20.38 2025-03-20 08:20:20.38 2300 FEE 436437 1576 \N \N 6045347 2025-03-20 08:20:20.38 2025-03-20 08:20:20.38 20700 TIP 436437 902 \N \N 6045372 2025-03-20 08:20:22.616 2025-03-20 08:20:22.616 2300 FEE 436437 21670 \N \N 6045373 2025-03-20 08:20:22.616 2025-03-20 08:20:22.616 20700 TIP 436437 11240 \N \N 6045387 2025-03-20 08:22:09.424 2025-03-20 08:22:09.424 21000 FEE 436444 854 \N \N 6045397 2025-03-20 08:22:53.498 2025-03-20 08:22:53.498 2300 FEE 436437 20243 \N \N 6045398 2025-03-20 08:22:53.498 2025-03-20 08:22:53.498 20700 TIP 436437 18232 \N \N 6045433 2025-03-20 08:22:55.9 2025-03-20 08:22:55.9 2300 FEE 436437 2326 \N \N 6045434 2025-03-20 08:22:55.9 2025-03-20 08:22:55.9 20700 TIP 436437 1720 \N \N 6045456 2025-03-20 08:23:32.338 2025-03-20 08:23:32.338 1000 FEE 436376 18468 \N \N 6045457 2025-03-20 08:23:32.338 2025-03-20 08:23:32.338 9000 TIP 436376 17082 \N \N 6045466 2025-03-20 08:24:20.649 2025-03-20 08:24:20.649 1000 FEE 436243 2776 \N \N 6045467 2025-03-20 08:24:20.649 2025-03-20 08:24:20.649 9000 TIP 436243 20799 \N \N 6045472 2025-03-20 08:24:41.262 2025-03-20 08:24:41.262 3000 FEE 436439 20897 \N \N 6045473 2025-03-20 08:24:41.262 2025-03-20 08:24:41.262 27000 TIP 436439 2722 \N \N 6045476 2025-03-20 08:24:43.276 2025-03-20 08:24:43.276 2100 FEE 436444 10352 \N \N 6045477 2025-03-20 08:24:43.276 2025-03-20 08:24:43.276 18900 TIP 436444 16212 \N \N 6045478 2025-03-20 08:24:46.164 2025-03-20 08:24:46.164 1000 FEE 436451 674 \N \N 6045499 2025-03-20 08:24:55.686 2025-03-20 08:24:55.686 2100 FEE 436448 766 \N \N 6045500 2025-03-20 08:24:55.686 2025-03-20 08:24:55.686 18900 TIP 436448 2402 \N \N 6045507 2025-03-20 08:24:57.758 2025-03-20 08:24:57.758 1000 FEE 436321 19952 \N \N 6045508 2025-03-20 08:24:57.758 2025-03-20 08:24:57.758 9000 TIP 436321 21501 \N \N 6045509 2025-03-20 08:25:04.62 2025-03-20 08:25:04.62 1000 FEE 436304 14037 \N \N 6045510 2025-03-20 08:25:04.62 2025-03-20 08:25:04.62 9000 TIP 436304 633 \N \N 6045524 2025-03-20 08:25:47.922 2025-03-20 08:25:47.922 200 FEE 436444 1519 \N \N 6045525 2025-03-20 08:25:47.922 2025-03-20 08:25:47.922 1800 TIP 436444 21539 \N \N 6045546 2025-03-20 08:27:32.434 2025-03-20 08:27:32.434 1000 FEE 436426 9364 \N \N 6045547 2025-03-20 08:27:32.434 2025-03-20 08:27:32.434 9000 TIP 436426 2326 \N \N 6045548 2025-03-20 08:27:36.819 2025-03-20 08:27:36.819 2300 FEE 436449 977 \N \N 6045549 2025-03-20 08:27:36.819 2025-03-20 08:27:36.819 20700 TIP 436449 5942 \N \N 6045570 2025-03-20 08:31:04.121 2025-03-20 08:31:04.121 10000 FEE 436326 13878 \N \N 6045571 2025-03-20 08:31:04.121 2025-03-20 08:31:04.121 90000 TIP 436326 1428 \N \N 6045574 2025-03-20 08:31:51.696 2025-03-20 08:31:51.696 2100 FEE 435644 18735 \N \N 6045575 2025-03-20 08:31:51.696 2025-03-20 08:31:51.696 18900 TIP 435644 739 \N \N 6045576 2025-03-20 08:31:55.247 2025-03-20 08:31:55.247 100000 FEE 436459 2529 \N \N 6045596 2025-03-20 08:32:48.305 2025-03-20 08:32:48.305 800 FEE 436437 21014 \N \N 6045597 2025-03-20 08:32:48.305 2025-03-20 08:32:48.305 7200 TIP 436437 8926 \N \N 6045630 2025-03-20 08:34:53.6 2025-03-20 08:34:53.6 0 FEE 436462 20596 \N \N 6045642 2025-03-20 08:35:22.611 2025-03-20 08:35:22.611 1000 FEE 436463 19463 \N \N 6045645 2025-03-20 08:35:32.412 2025-03-20 08:35:32.412 3300 FEE 436451 2774 \N \N 6045646 2025-03-20 08:35:32.412 2025-03-20 08:35:32.412 29700 TIP 436451 2056 \N \N 6045710 2025-03-20 08:38:22.712 2025-03-20 08:38:22.712 1000 FEE 436305 19796 \N \N 6045711 2025-03-20 08:38:22.712 2025-03-20 08:38:22.712 9000 TIP 436305 16598 \N \N 6045736 2025-03-20 08:40:02.046 2025-03-20 08:40:02.046 1000 FEE 436473 9355 \N \N 6045739 2025-03-20 08:40:13.103 2025-03-20 08:40:13.103 1100 FEE 436470 19087 \N \N 6045740 2025-03-20 08:40:13.103 2025-03-20 08:40:13.103 9900 TIP 436470 14785 \N \N 6045766 2025-03-20 08:41:28.231 2025-03-20 08:41:28.231 2000 FEE 436475 8284 \N \N 6045767 2025-03-20 08:41:28.231 2025-03-20 08:41:28.231 18000 TIP 436475 20683 \N \N 6045780 2025-03-20 08:41:30.942 2025-03-20 08:41:30.942 1000 FEE 436475 16571 \N \N 6045781 2025-03-20 08:41:30.942 2025-03-20 08:41:30.942 9000 TIP 436475 715 \N \N 6045802 2025-03-20 08:43:00.051 2025-03-20 08:43:00.051 300 FEE 436463 4624 \N \N 6045803 2025-03-20 08:43:00.051 2025-03-20 08:43:00.051 2700 TIP 436463 2735 \N \N 6045826 2025-03-20 08:45:35.566 2025-03-20 08:45:35.566 1000 FEE 436486 20436 \N \N 6045849 2025-03-20 08:49:24.956 2025-03-20 08:49:24.956 210000 FEE 436493 17218 \N \N 6045853 2025-03-20 08:49:51.675 2025-03-20 08:49:51.675 500 FEE 436412 20120 \N \N 6045854 2025-03-20 08:49:51.675 2025-03-20 08:49:51.675 4500 TIP 436412 21480 \N \N 6045857 2025-03-20 08:49:57.09 2025-03-20 08:49:57.09 0 FEE 436492 20059 \N \N 6045901 2025-03-20 08:50:48.484 2025-03-20 08:50:48.484 1100 FEE 436323 5694 \N \N 6045902 2025-03-20 08:50:48.484 2025-03-20 08:50:48.484 9900 TIP 436323 8284 \N \N 6045906 2025-03-20 08:50:55.279 2025-03-20 08:50:55.279 10000 FEE 436494 882 \N \N 6045907 2025-03-20 08:50:55.279 2025-03-20 08:50:55.279 90000 TIP 436494 1718 \N \N 6045941 2025-03-20 08:53:44.177 2025-03-20 08:53:44.177 100000 FEE 436499 7916 \N \N 6045945 2025-03-20 08:54:04.272 2025-03-20 08:54:04.272 1000 FEE 436486 19502 \N \N 6045946 2025-03-20 08:54:04.272 2025-03-20 08:54:04.272 9000 TIP 436486 3979 \N \N 6045964 2025-03-20 08:55:24.484 2025-03-20 08:55:24.484 1000 FEE 436489 640 \N \N 6045965 2025-03-20 08:55:24.484 2025-03-20 08:55:24.484 9000 TIP 436489 11158 \N \N 6045996 2025-03-20 08:58:02.315 2025-03-20 08:58:02.315 1000 FEE 436491 8380 \N \N 6045997 2025-03-20 08:58:02.315 2025-03-20 08:58:02.315 9000 TIP 436491 15180 \N \N 6046005 2025-03-20 08:58:10.061 2025-03-20 08:58:10.061 5000 FEE 436197 7818 \N \N 6046006 2025-03-20 08:58:10.061 2025-03-20 08:58:10.061 45000 TIP 436197 19777 \N \N 6046030 2025-03-20 09:00:33.877 2025-03-20 09:00:33.877 1000 FEE 436466 1286 \N \N 6046031 2025-03-20 09:00:33.877 2025-03-20 09:00:33.877 9000 TIP 436466 5761 \N \N 6046048 2025-03-20 09:03:02.138 2025-03-20 09:03:02.138 900 FEE 436222 16633 \N \N 6046049 2025-03-20 09:03:02.138 2025-03-20 09:03:02.138 8100 TIP 436222 19924 \N \N 6046053 2025-03-20 09:03:37.969 2025-03-20 09:03:37.969 5000 FEE 436455 749 \N \N 6046054 2025-03-20 09:03:37.969 2025-03-20 09:03:37.969 45000 TIP 436455 1584 \N \N 6046055 2025-03-20 09:03:50.115 2025-03-20 09:03:50.115 26400 FEE 436455 14376 \N \N 6046056 2025-03-20 09:03:50.115 2025-03-20 09:03:50.115 237600 TIP 436455 20849 \N \N 6046067 2025-03-20 09:04:12.124 2025-03-20 09:04:12.124 400 FEE 436508 17321 \N \N 6046068 2025-03-20 09:04:12.124 2025-03-20 09:04:12.124 3600 TIP 436508 20099 \N \N 6046072 2025-03-20 09:04:24.785 2025-03-20 09:04:24.785 900 FEE 436487 17798 \N \N 6046073 2025-03-20 09:04:24.785 2025-03-20 09:04:24.785 8100 TIP 436487 13553 \N \N 6046097 2025-03-20 09:05:23.855 2025-03-20 09:05:23.855 2300 FEE 436505 13547 \N \N 6046098 2025-03-20 09:05:23.855 2025-03-20 09:05:23.855 20700 TIP 436505 21791 \N \N 6045275 2025-03-20 08:20:13.415 2025-03-20 08:20:13.415 2300 FEE 436437 19198 \N \N 6045276 2025-03-20 08:20:13.415 2025-03-20 08:20:13.415 20700 TIP 436437 2543 \N \N 6045310 2025-03-20 08:20:17.2 2025-03-20 08:20:17.2 2300 FEE 436437 20757 \N \N 6045311 2025-03-20 08:20:17.2 2025-03-20 08:20:17.2 20700 TIP 436437 1198 \N \N 6045322 2025-03-20 08:20:18.143 2025-03-20 08:20:18.143 2300 FEE 436437 1044 \N \N 6045323 2025-03-20 08:20:18.143 2025-03-20 08:20:18.143 20700 TIP 436437 21064 \N \N 6045324 2025-03-20 08:20:18.287 2025-03-20 08:20:18.287 2300 FEE 436437 14169 \N \N 6045325 2025-03-20 08:20:18.287 2025-03-20 08:20:18.287 20700 TIP 436437 5794 \N \N 6045326 2025-03-20 08:20:18.948 2025-03-20 08:20:18.948 2300 FEE 436437 21314 \N \N 6045327 2025-03-20 08:20:18.948 2025-03-20 08:20:18.948 20700 TIP 436437 5293 \N \N 6045334 2025-03-20 08:20:19.538 2025-03-20 08:20:19.538 2300 FEE 436437 20861 \N \N 6045335 2025-03-20 08:20:19.538 2025-03-20 08:20:19.538 20700 TIP 436437 5495 \N \N 6045342 2025-03-20 08:20:20.095 2025-03-20 08:20:20.095 2300 FEE 436437 15243 \N \N 6045343 2025-03-20 08:20:20.095 2025-03-20 08:20:20.095 20700 TIP 436437 13566 \N \N 6045370 2025-03-20 08:20:22.476 2025-03-20 08:20:22.476 2300 FEE 436437 1970 \N \N 6045371 2025-03-20 08:20:22.476 2025-03-20 08:20:22.476 20700 TIP 436437 6555 \N \N 6045415 2025-03-20 08:22:54.707 2025-03-20 08:22:54.707 2300 FEE 436437 17526 \N \N 6045416 2025-03-20 08:22:54.707 2025-03-20 08:22:54.707 20700 TIP 436437 876 \N \N 6045429 2025-03-20 08:22:55.635 2025-03-20 08:22:55.635 2300 FEE 436437 7418 \N \N 6045430 2025-03-20 08:22:55.635 2025-03-20 08:22:55.635 20700 TIP 436437 4819 \N \N 6045439 2025-03-20 08:22:56.336 2025-03-20 08:22:56.336 2300 FEE 436437 11561 \N \N 6045440 2025-03-20 08:22:56.336 2025-03-20 08:22:56.336 20700 TIP 436437 8841 \N \N 6045443 2025-03-20 08:22:56.645 2025-03-20 08:22:56.645 2300 FEE 436437 17741 \N \N 6045444 2025-03-20 08:22:56.645 2025-03-20 08:22:56.645 20700 TIP 436437 14258 \N \N 6045497 2025-03-20 08:24:52.649 2025-03-20 08:24:52.649 100 FEE 435751 19663 \N \N 6045498 2025-03-20 08:24:52.649 2025-03-20 08:24:52.649 900 TIP 435751 3656 \N \N 6045503 2025-03-20 08:24:56.038 2025-03-20 08:24:56.038 2300 FEE 436445 21413 \N \N 6045504 2025-03-20 08:24:56.038 2025-03-20 08:24:56.038 20700 TIP 436445 726 \N \N 6045505 2025-03-20 08:24:56.176 2025-03-20 08:24:56.176 2300 FEE 436445 19980 \N \N 6045506 2025-03-20 08:24:56.176 2025-03-20 08:24:56.176 20700 TIP 436445 1705 \N \N 6045511 2025-03-20 08:25:10.267 2025-03-20 08:25:10.267 1000 FEE 436367 8841 \N \N 6045512 2025-03-20 08:25:10.267 2025-03-20 08:25:10.267 9000 TIP 436367 16830 \N \N 6045518 2025-03-20 08:25:17.494 2025-03-20 08:25:17.494 1000 FEE 436452 16177 \N \N 6045573 2025-03-20 08:31:21.505 2025-03-20 08:31:21.505 1000 POLL 436323 4238 \N \N 6045577 2025-03-20 08:31:55.427 2025-03-20 08:31:55.427 2100 FEE 435585 17331 \N \N 6045578 2025-03-20 08:31:55.427 2025-03-20 08:31:55.427 18900 TIP 435585 9611 \N \N 6045600 2025-03-20 08:32:58.537 2025-03-20 08:32:58.537 800 FEE 435580 9334 \N \N 6045601 2025-03-20 08:32:58.537 2025-03-20 08:32:58.537 7200 TIP 435580 2459 \N \N 6045606 2025-03-20 08:33:10.745 2025-03-20 08:33:10.745 800 FEE 436100 18017 \N \N 6045607 2025-03-20 08:33:10.745 2025-03-20 08:33:10.745 7200 TIP 436100 1817 \N \N 6045611 2025-03-20 08:33:16.194 2025-03-20 08:33:16.194 10000 FEE 436460 8269 \N \N 6045626 2025-03-20 08:34:43.933 2025-03-20 08:34:43.933 3300 FEE 435767 15049 \N \N 6045627 2025-03-20 08:34:43.933 2025-03-20 08:34:43.933 29700 TIP 435767 11670 \N \N 6045643 2025-03-20 08:35:23.282 2025-03-20 08:35:23.282 3300 FEE 436449 4459 \N \N 6045644 2025-03-20 08:35:23.282 2025-03-20 08:35:23.282 29700 TIP 436449 20509 \N \N 6045666 2025-03-20 08:36:00.841 2025-03-20 08:36:00.841 8300 FEE 436459 15491 \N \N 6045667 2025-03-20 08:36:00.841 2025-03-20 08:36:00.841 74700 TIP 436459 9262 \N \N 6045674 2025-03-20 08:36:01.434 2025-03-20 08:36:01.434 8300 FEE 436459 11417 \N \N 6045675 2025-03-20 08:36:01.434 2025-03-20 08:36:01.434 74700 TIP 436459 777 \N \N 6045700 2025-03-20 08:38:02.92 2025-03-20 08:38:02.92 3300 FEE 436439 10280 \N \N 6045701 2025-03-20 08:38:02.92 2025-03-20 08:38:02.92 29700 TIP 436439 902 \N \N 6045705 2025-03-20 08:38:10.57 2025-03-20 08:38:10.57 4000 FEE 436466 5500 \N \N 6045706 2025-03-20 08:38:10.57 2025-03-20 08:38:10.57 36000 TIP 436466 14705 \N \N 6045712 2025-03-20 08:38:42.869 2025-03-20 08:38:42.869 1000 FEE 436302 21814 \N \N 6045713 2025-03-20 08:38:42.869 2025-03-20 08:38:42.869 9000 TIP 436302 16830 \N \N 6045716 2025-03-20 08:39:12.251 2025-03-20 08:39:12.251 1000 FEE 436471 14990 \N \N 6045763 2025-03-20 08:41:22.273 2025-03-20 08:41:22.273 1000 FEE 436478 12222 \N \N 6045790 2025-03-20 08:41:46.305 2025-03-20 08:41:46.305 1000 FEE 436479 986 \N \N 6045796 2025-03-20 08:42:39.422 2025-03-20 08:42:39.422 1000 FEE 436482 1712 \N \N 6045817 2025-03-20 08:44:26.67 2025-03-20 08:44:26.67 1000 FEE 436459 13763 \N \N 6045818 2025-03-20 08:44:26.67 2025-03-20 08:44:26.67 9000 TIP 436459 10944 \N \N 6045827 2025-03-20 08:45:47.84 2025-03-20 08:45:47.84 10000 FEE 436487 18678 \N \N 6045830 2025-03-20 08:45:53.893 2025-03-20 08:45:53.893 1000 POLL 436323 13921 \N \N 6045836 2025-03-20 08:47:56.69 2025-03-20 08:47:56.69 2100 FEE 436488 7960 \N \N 6045837 2025-03-20 08:47:56.69 2025-03-20 08:47:56.69 18900 TIP 436488 998 \N \N 6045871 2025-03-20 08:50:40.544 2025-03-20 08:50:40.544 1100 FEE 436494 17991 \N \N 6045872 2025-03-20 08:50:40.544 2025-03-20 08:50:40.544 9900 TIP 436494 7913 \N \N 6045873 2025-03-20 08:50:40.713 2025-03-20 08:50:40.713 1100 FEE 436494 20757 \N \N 6045874 2025-03-20 08:50:40.713 2025-03-20 08:50:40.713 9900 TIP 436494 895 \N \N 6045883 2025-03-20 08:50:47.086 2025-03-20 08:50:47.086 1100 FEE 436323 1564 \N \N 6045884 2025-03-20 08:50:47.086 2025-03-20 08:50:47.086 9900 TIP 436323 21036 \N \N 6045307 2025-03-20 08:20:16.915 2025-03-20 08:20:16.915 20700 TIP 436437 1618 \N \N 6045314 2025-03-20 08:20:17.483 2025-03-20 08:20:17.483 2300 FEE 436437 16447 \N \N 6045315 2025-03-20 08:20:17.483 2025-03-20 08:20:17.483 20700 TIP 436437 21501 \N \N 6045320 2025-03-20 08:20:17.966 2025-03-20 08:20:17.966 2300 FEE 436437 8998 \N \N 6045321 2025-03-20 08:20:17.966 2025-03-20 08:20:17.966 20700 TIP 436437 1426 \N \N 6045330 2025-03-20 08:20:19.22 2025-03-20 08:20:19.22 2300 FEE 436437 20525 \N \N 6045331 2025-03-20 08:20:19.22 2025-03-20 08:20:19.22 20700 TIP 436437 16289 \N \N 6045344 2025-03-20 08:20:20.239 2025-03-20 08:20:20.239 2300 FEE 436437 11288 \N \N 6045345 2025-03-20 08:20:20.239 2025-03-20 08:20:20.239 20700 TIP 436437 18231 \N \N 6045348 2025-03-20 08:20:20.513 2025-03-20 08:20:20.513 2300 FEE 436437 14280 \N \N 6045349 2025-03-20 08:20:20.513 2025-03-20 08:20:20.513 20700 TIP 436437 1647 \N \N 6045377 2025-03-20 08:20:27.529 2025-03-20 08:20:27.529 1000 FEE 436441 3461 \N \N 6045385 2025-03-20 08:21:39.771 2025-03-20 08:21:39.771 27000 FEE 436241 3478 \N \N 6045386 2025-03-20 08:21:39.771 2025-03-20 08:21:39.771 243000 TIP 436241 21600 \N \N 6045392 2025-03-20 08:22:48.849 2025-03-20 08:22:48.849 1000 FEE 436446 2748 \N \N 6045395 2025-03-20 08:22:53.233 2025-03-20 08:22:53.233 4600 FEE 436437 19469 \N \N 6045396 2025-03-20 08:22:53.233 2025-03-20 08:22:53.233 41400 TIP 436437 680 \N \N 6045399 2025-03-20 08:22:53.618 2025-03-20 08:22:53.618 2300 FEE 436437 1124 \N \N 6045400 2025-03-20 08:22:53.618 2025-03-20 08:22:53.618 20700 TIP 436437 1959 \N \N 6045401 2025-03-20 08:22:53.751 2025-03-20 08:22:53.751 2300 FEE 436437 2327 \N \N 6045402 2025-03-20 08:22:53.751 2025-03-20 08:22:53.751 20700 TIP 436437 13038 \N \N 6045419 2025-03-20 08:22:54.952 2025-03-20 08:22:54.952 2300 FEE 436437 10342 \N \N 6045420 2025-03-20 08:22:54.952 2025-03-20 08:22:54.952 20700 TIP 436437 794 \N \N 6045437 2025-03-20 08:22:56.201 2025-03-20 08:22:56.201 2300 FEE 436437 11760 \N \N 6045438 2025-03-20 08:22:56.201 2025-03-20 08:22:56.201 20700 TIP 436437 1198 \N \N 6045451 2025-03-20 08:22:57.217 2025-03-20 08:22:57.217 2300 FEE 436437 1245 \N \N 6045452 2025-03-20 08:22:57.217 2025-03-20 08:22:57.217 20700 TIP 436437 7760 \N \N 6045474 2025-03-20 08:24:42.876 2025-03-20 08:24:42.876 2100 FEE 436444 633 \N \N 6045475 2025-03-20 08:24:42.876 2025-03-20 08:24:42.876 18900 TIP 436444 20969 \N \N 6045483 2025-03-20 08:24:47.635 2025-03-20 08:24:47.635 100 FEE 435751 19018 \N \N 6045484 2025-03-20 08:24:47.635 2025-03-20 08:24:47.635 900 TIP 435751 2596 \N \N 6045537 2025-03-20 08:27:17.71 2025-03-20 08:27:17.71 1000 FEE 436308 5293 \N \N 6045538 2025-03-20 08:27:17.71 2025-03-20 08:27:17.71 9000 TIP 436308 11378 \N \N 6045550 2025-03-20 08:27:53.987 2025-03-20 08:27:53.987 4000 FEE 436323 14195 \N \N 6045551 2025-03-20 08:27:53.987 2025-03-20 08:27:53.987 36000 TIP 436323 1092 \N \N 6045558 2025-03-20 08:28:32.904 2025-03-20 08:28:32.904 1000 FEE 436425 956 \N \N 6045559 2025-03-20 08:28:32.904 2025-03-20 08:28:32.904 9000 TIP 436425 21014 \N \N 6045560 2025-03-20 08:28:41.355 2025-03-20 08:28:41.355 1000 FEE 436457 1082 \N \N 6045588 2025-03-20 08:32:28.535 2025-03-20 08:32:28.535 800 FEE 435728 1286 \N \N 6045589 2025-03-20 08:32:28.535 2025-03-20 08:32:28.535 7200 TIP 435728 10007 \N \N 6045616 2025-03-20 08:33:41.67 2025-03-20 08:33:41.67 1000 FEE 436274 14657 \N \N 6045617 2025-03-20 08:33:41.67 2025-03-20 08:33:41.67 9000 TIP 436274 1394 \N \N 6045628 2025-03-20 08:34:46.269 2025-03-20 08:34:46.269 3300 FEE 436337 9969 \N \N 6045629 2025-03-20 08:34:46.269 2025-03-20 08:34:46.269 29700 TIP 436337 12097 \N \N 6045638 2025-03-20 08:35:15.003 2025-03-20 08:35:15.003 3300 FEE 436424 10719 \N \N 6045639 2025-03-20 08:35:15.003 2025-03-20 08:35:15.003 29700 TIP 436424 21710 \N \N 6045647 2025-03-20 08:35:32.603 2025-03-20 08:35:32.603 3300 FEE 436451 20825 \N \N 6045648 2025-03-20 08:35:32.603 2025-03-20 08:35:32.603 29700 TIP 436451 9611 \N \N 6045653 2025-03-20 08:35:42.348 2025-03-20 08:35:42.348 1000 FEE 436464 14255 \N \N 6045660 2025-03-20 08:35:59.685 2025-03-20 08:35:59.685 8300 FEE 436459 965 \N \N 6045661 2025-03-20 08:35:59.685 2025-03-20 08:35:59.685 74700 TIP 436459 20563 \N \N 6045664 2025-03-20 08:36:00.732 2025-03-20 08:36:00.732 16600 FEE 436459 896 \N \N 6045665 2025-03-20 08:36:00.732 2025-03-20 08:36:00.732 149400 TIP 436459 19446 \N \N 6045693 2025-03-20 08:37:49.572 2025-03-20 08:37:49.572 1000 FEE 436465 18468 \N \N 6045697 2025-03-20 08:37:58.776 2025-03-20 08:37:58.776 3300 FEE 436273 21303 \N \N 6045698 2025-03-20 08:37:58.776 2025-03-20 08:37:58.776 29700 TIP 436273 6749 \N \N 6045699 2025-03-20 08:38:01.12 2025-03-20 08:38:01.12 1000 FEE 436467 21421 \N \N 6045715 2025-03-20 08:39:12.039 2025-03-20 08:39:12.039 1000 FEE 436470 7877 \N \N 6045725 2025-03-20 08:39:23.968 2025-03-20 08:39:23.968 1000 FEE 436323 5557 \N \N 6045726 2025-03-20 08:39:23.968 2025-03-20 08:39:23.968 9000 TIP 436323 2674 \N \N 6045729 2025-03-20 08:39:47.44 2025-03-20 08:39:47.44 0 FEE 119101 15282 \N \N 6045746 2025-03-20 08:40:39.026 2025-03-20 08:40:39.026 1000 FEE 436474 21520 \N \N 6045747 2025-03-20 08:40:52.108 2025-03-20 08:40:52.108 1000 FEE 436368 7583 \N \N 6045748 2025-03-20 08:40:52.108 2025-03-20 08:40:52.108 9000 TIP 436368 6160 \N \N 6045752 2025-03-20 08:41:08.992 2025-03-20 08:41:08.992 1000 FEE 436476 19673 \N \N 6045789 2025-03-20 08:41:39.544 2025-03-20 08:41:39.544 0 FEE 436477 11288 \N \N 6045797 2025-03-20 08:42:43.448 2025-03-20 08:42:43.448 1000 FEE 436460 5495 \N \N 6045798 2025-03-20 08:42:43.448 2025-03-20 08:42:43.448 9000 TIP 436460 9355 \N \N 6045809 2025-03-20 08:43:44.081 2025-03-20 08:43:44.081 0 FEE 436479 10986 \N \N 6045811 2025-03-20 08:44:04.447 2025-03-20 08:44:04.447 0 FEE 436483 20137 \N \N 6045828 2025-03-20 08:45:53.44 2025-03-20 08:45:53.44 1000 FEE 436460 20254 \N \N 6045829 2025-03-20 08:45:53.44 2025-03-20 08:45:53.44 9000 TIP 436460 16406 \N \N 6045867 2025-03-20 08:50:39.522 2025-03-20 08:50:39.522 2100 FEE 436197 1145 \N \N 6045868 2025-03-20 08:50:39.522 2025-03-20 08:50:39.522 18900 TIP 436197 16267 \N \N 6045869 2025-03-20 08:50:39.93 2025-03-20 08:50:39.93 1100 FEE 436494 686 \N \N 6045870 2025-03-20 08:50:39.93 2025-03-20 08:50:39.93 9900 TIP 436494 2293 \N \N 6045875 2025-03-20 08:50:43.972 2025-03-20 08:50:43.972 1100 FEE 436323 7587 \N \N 6045633 2025-03-20 08:35:01.934 2025-03-20 08:35:01.934 1000 FEE 436384 17316 \N \N 6045634 2025-03-20 08:35:01.934 2025-03-20 08:35:01.934 9000 TIP 436384 17798 \N \N 6045649 2025-03-20 08:35:33.044 2025-03-20 08:35:33.044 3300 FEE 436451 14910 \N \N 6045650 2025-03-20 08:35:33.044 2025-03-20 08:35:33.044 29700 TIP 436451 2735 \N \N 6045662 2025-03-20 08:36:00.368 2025-03-20 08:36:00.368 8300 FEE 436459 16351 \N \N 6045663 2025-03-20 08:36:00.368 2025-03-20 08:36:00.368 74700 TIP 436459 811 \N \N 6045670 2025-03-20 08:36:01.153 2025-03-20 08:36:01.153 8300 FEE 436459 10979 \N \N 6045671 2025-03-20 08:36:01.153 2025-03-20 08:36:01.153 74700 TIP 436459 826 \N \N 6045672 2025-03-20 08:36:01.266 2025-03-20 08:36:01.266 8300 FEE 436459 17714 \N \N 6045673 2025-03-20 08:36:01.266 2025-03-20 08:36:01.266 74700 TIP 436459 18409 \N \N 6045680 2025-03-20 08:36:12.675 2025-03-20 08:36:12.675 2100 FEE 435847 629 \N \N 6045681 2025-03-20 08:36:12.675 2025-03-20 08:36:12.675 18900 TIP 435847 12222 \N \N 6045685 2025-03-20 08:36:42.747 2025-03-20 08:36:42.747 1000 POLL 436323 21391 \N \N 6045721 2025-03-20 08:39:15.066 2025-03-20 08:39:15.066 1000 FEE 436451 17095 \N \N 6045722 2025-03-20 08:39:15.066 2025-03-20 08:39:15.066 9000 TIP 436451 7389 \N \N 6045723 2025-03-20 08:39:23.852 2025-03-20 08:39:23.852 3000 FEE 436467 21279 \N \N 6045724 2025-03-20 08:39:23.852 2025-03-20 08:39:23.852 27000 TIP 436467 1237 \N \N 6045744 2025-03-20 08:40:35.452 2025-03-20 08:40:35.452 100 FEE 436450 657 \N \N 6045745 2025-03-20 08:40:35.452 2025-03-20 08:40:35.452 900 TIP 436450 6137 \N \N 6045762 2025-03-20 08:41:18.656 2025-03-20 08:41:18.656 1000 FEE 436477 9339 \N \N 6045794 2025-03-20 08:42:20.621 2025-03-20 08:42:20.621 1000 FEE 436480 1638 \N \N 6045804 2025-03-20 08:43:03.079 2025-03-20 08:43:03.079 700 FEE 436435 4313 \N \N 6045805 2025-03-20 08:43:03.079 2025-03-20 08:43:03.079 6300 TIP 436435 17638 \N \N 6045810 2025-03-20 08:43:53.802 2025-03-20 08:43:53.802 1000 FEE 436483 18069 \N \N 6045815 2025-03-20 08:44:26.479 2025-03-20 08:44:26.479 1000 FEE 436459 6430 \N \N 6045816 2025-03-20 08:44:26.479 2025-03-20 08:44:26.479 9000 TIP 436459 20674 \N \N 6045821 2025-03-20 08:44:33.576 2025-03-20 08:44:33.576 3000 FEE 436481 19394 \N \N 6045822 2025-03-20 08:44:33.576 2025-03-20 08:44:33.576 27000 TIP 436481 13587 \N \N 6045841 2025-03-20 08:48:47.769 2025-03-20 08:48:47.769 10000 FEE 436491 20710 \N \N 6045905 2025-03-20 08:50:52.71 2025-03-20 08:50:52.71 1000 POLL 436323 827 \N \N 6045920 2025-03-20 08:51:27.216 2025-03-20 08:51:27.216 2100 FEE 435905 11621 \N \N 6045921 2025-03-20 08:51:27.216 2025-03-20 08:51:27.216 18900 TIP 435905 5455 \N \N 6045933 2025-03-20 08:52:26.207 2025-03-20 08:52:26.207 900 FEE 436496 8535 \N \N 6045934 2025-03-20 08:52:26.207 2025-03-20 08:52:26.207 8100 TIP 436496 717 \N \N 6045935 2025-03-20 08:52:51.871 2025-03-20 08:52:51.871 200 FEE 436304 18772 \N \N 6045936 2025-03-20 08:52:51.871 2025-03-20 08:52:51.871 1800 TIP 436304 16808 \N \N 6045954 2025-03-20 08:54:45.26 2025-03-20 08:54:45.26 2000 FEE 436477 10409 \N \N 6045955 2025-03-20 08:54:45.26 2025-03-20 08:54:45.26 18000 TIP 436477 5128 \N \N 6045958 2025-03-20 08:55:23.08 2025-03-20 08:55:23.08 1000 FEE 436489 746 \N \N 6045959 2025-03-20 08:55:23.08 2025-03-20 08:55:23.08 9000 TIP 436489 681 \N \N 6045966 2025-03-20 08:55:24.974 2025-03-20 08:55:24.974 1000 FEE 436489 18678 \N \N 6045967 2025-03-20 08:55:24.974 2025-03-20 08:55:24.974 9000 TIP 436489 5661 \N \N 6045987 2025-03-20 08:56:31.229 2025-03-20 08:56:31.229 2100 FEE 435580 18368 \N \N 6045988 2025-03-20 08:56:31.229 2025-03-20 08:56:31.229 18900 TIP 435580 16808 \N \N 6045989 2025-03-20 08:56:31.379 2025-03-20 08:56:31.379 2100 FEE 435580 803 \N \N 6045990 2025-03-20 08:56:31.379 2025-03-20 08:56:31.379 18900 TIP 435580 21401 \N \N 6046023 2025-03-20 09:00:20.587 2025-03-20 09:00:20.587 1000 FEE 436507 671 \N \N 6046026 2025-03-20 09:00:31.689 2025-03-20 09:00:31.689 1000 FEE 436466 9496 \N \N 6046027 2025-03-20 09:00:31.689 2025-03-20 09:00:31.689 9000 TIP 436466 21116 \N \N 6046038 2025-03-20 09:00:38.757 2025-03-20 09:00:38.757 1000 FEE 436466 827 \N \N 6046039 2025-03-20 09:00:38.757 2025-03-20 09:00:38.757 9000 TIP 436466 9537 \N \N 6046089 2025-03-20 09:05:23.247 2025-03-20 09:05:23.247 2300 FEE 436505 20891 \N \N 6046090 2025-03-20 09:05:23.247 2025-03-20 09:05:23.247 20700 TIP 436505 1008 \N \N 6046118 2025-03-20 09:06:22.028 2025-03-20 09:06:22.028 2100 FEE 436493 21159 \N \N 6046119 2025-03-20 09:06:22.028 2025-03-20 09:06:22.028 18900 TIP 436493 19863 \N \N 6046120 2025-03-20 09:07:00.279 2025-03-20 09:07:00.279 6900 FEE 436493 3353 \N \N 6046121 2025-03-20 09:07:00.279 2025-03-20 09:07:00.279 62100 TIP 436493 16230 \N \N 6046128 2025-03-20 09:07:02.132 2025-03-20 09:07:02.132 4600 FEE 436493 18409 \N \N 6046129 2025-03-20 09:07:02.132 2025-03-20 09:07:02.132 41400 TIP 436493 17050 \N \N 6046132 2025-03-20 09:07:03.191 2025-03-20 09:07:03.191 2300 FEE 436493 956 \N \N 6046133 2025-03-20 09:07:03.191 2025-03-20 09:07:03.191 20700 TIP 436493 9295 \N \N 6046140 2025-03-20 09:07:04.07 2025-03-20 09:07:04.07 2300 FEE 436493 27 \N \N 6046141 2025-03-20 09:07:04.07 2025-03-20 09:07:04.07 20700 TIP 436493 925 \N \N 6046158 2025-03-20 09:07:09.65 2025-03-20 09:07:09.65 2100 FEE 436508 11220 \N \N 6046159 2025-03-20 09:07:09.65 2025-03-20 09:07:09.65 18900 TIP 436508 4378 \N \N 6046165 2025-03-20 09:07:13.005 2025-03-20 09:07:13.005 2100 FEE 436508 636 \N \N 6046166 2025-03-20 09:07:13.005 2025-03-20 09:07:13.005 18900 TIP 436508 9695 \N \N 6046174 2025-03-20 09:07:33.674 2025-03-20 09:07:33.674 2300 FEE 436493 21090 \N \N 6046175 2025-03-20 09:07:33.674 2025-03-20 09:07:33.674 20700 TIP 436493 1806 \N \N 6046200 2025-03-20 09:07:36.296 2025-03-20 09:07:36.296 2300 FEE 436493 2347 \N \N 6046201 2025-03-20 09:07:36.296 2025-03-20 09:07:36.296 20700 TIP 436493 21389 \N \N 6046228 2025-03-20 09:07:40.398 2025-03-20 09:07:40.398 2300 FEE 436493 21393 \N \N 6046229 2025-03-20 09:07:40.398 2025-03-20 09:07:40.398 20700 TIP 436493 21208 \N \N 6046232 2025-03-20 09:07:40.753 2025-03-20 09:07:40.753 2300 FEE 436493 1039 \N \N 6046233 2025-03-20 09:07:40.753 2025-03-20 09:07:40.753 20700 TIP 436493 20715 \N \N 6046250 2025-03-20 09:07:43.078 2025-03-20 09:07:43.078 2300 FEE 436493 17392 \N \N 6046251 2025-03-20 09:07:43.078 2025-03-20 09:07:43.078 20700 TIP 436493 20956 \N \N 6046268 2025-03-20 09:07:44.567 2025-03-20 09:07:44.567 2300 FEE 436493 9169 \N \N 6046269 2025-03-20 09:07:44.567 2025-03-20 09:07:44.567 20700 TIP 436493 16816 \N \N 6046283 2025-03-20 09:08:51.883 2025-03-20 09:08:51.883 2100 FEE 436494 1620 \N \N 6046284 2025-03-20 09:08:51.883 2025-03-20 09:08:51.883 18900 TIP 436494 2000 \N \N 6046305 2025-03-20 09:11:06.505 2025-03-20 09:11:06.505 2300 FEE 436514 20970 \N \N 6046306 2025-03-20 09:11:06.505 2025-03-20 09:11:06.505 20700 TIP 436514 1611 \N \N 6046307 2025-03-20 09:11:06.648 2025-03-20 09:11:06.648 2300 FEE 436514 663 \N \N 6046308 2025-03-20 09:11:06.648 2025-03-20 09:11:06.648 20700 TIP 436514 19952 \N \N 6046311 2025-03-20 09:11:07.848 2025-03-20 09:11:07.848 2300 FEE 436514 7389 \N \N 6046312 2025-03-20 09:11:07.848 2025-03-20 09:11:07.848 20700 TIP 436514 16424 \N \N 6046348 2025-03-20 09:13:33.823 2025-03-20 09:13:33.823 2100 FEE 435856 6526 \N \N 6045737 2025-03-20 08:40:04.752 2025-03-20 08:40:04.752 1100 FEE 436465 20220 \N \N 6045738 2025-03-20 08:40:04.752 2025-03-20 08:40:04.752 9900 TIP 436465 18901 \N \N 6045753 2025-03-20 08:41:09.724 2025-03-20 08:41:09.724 3000 FEE 436466 12245 \N \N 6045754 2025-03-20 08:41:09.724 2025-03-20 08:41:09.724 27000 TIP 436466 12139 \N \N 6045764 2025-03-20 08:41:27.558 2025-03-20 08:41:27.558 1000 FEE 436475 3686 \N \N 6045765 2025-03-20 08:41:27.558 2025-03-20 08:41:27.558 9000 TIP 436475 20619 \N \N 6045768 2025-03-20 08:41:28.585 2025-03-20 08:41:28.585 1000 FEE 436475 730 \N \N 6045769 2025-03-20 08:41:28.585 2025-03-20 08:41:28.585 9000 TIP 436475 21620 \N \N 6045776 2025-03-20 08:41:30.056 2025-03-20 08:41:30.056 1000 FEE 436475 2780 \N \N 6045777 2025-03-20 08:41:30.056 2025-03-20 08:41:30.056 9000 TIP 436475 15243 \N \N 6045782 2025-03-20 08:41:31.875 2025-03-20 08:41:31.875 0 FEE 436477 9378 \N \N 6045791 2025-03-20 08:42:10.646 2025-03-20 08:42:10.646 2100 FEE 436210 704 \N \N 6045792 2025-03-20 08:42:10.646 2025-03-20 08:42:10.646 18900 TIP 436210 1245 \N \N 6045801 2025-03-20 08:42:55.114 2025-03-20 08:42:55.114 0 FEE 436479 1010 \N \N 6045812 2025-03-20 08:44:11.662 2025-03-20 08:44:11.662 10000 FEE 435815 762 \N \N 6045813 2025-03-20 08:44:11.662 2025-03-20 08:44:11.662 90000 TIP 435815 993 \N \N 6045833 2025-03-20 08:47:01.551 2025-03-20 08:47:01.551 1000 FEE 436489 1426 \N \N 6045835 2025-03-20 08:47:52.063 2025-03-20 08:47:52.063 1000 FEE 436490 21556 \N \N 6045839 2025-03-20 08:48:41.903 2025-03-20 08:48:41.903 1000 FEE 436385 21088 \N \N 6045840 2025-03-20 08:48:41.903 2025-03-20 08:48:41.903 9000 TIP 436385 12368 \N \N 6045842 2025-03-20 08:48:55.88 2025-03-20 08:48:55.88 0 FEE 436480 7668 \N \N 6045851 2025-03-20 08:49:46.073 2025-03-20 08:49:46.073 2100 FEE 436241 9352 \N \N 6045852 2025-03-20 08:49:46.073 2025-03-20 08:49:46.073 18900 TIP 436241 6653 \N \N 6045862 2025-03-20 08:50:09.262 2025-03-20 08:50:09.262 3000 FEE 436466 2431 \N \N 6045863 2025-03-20 08:50:09.262 2025-03-20 08:50:09.262 27000 TIP 436466 672 \N \N 6045879 2025-03-20 08:50:44.359 2025-03-20 08:50:44.359 900 FEE 436394 3396 \N \N 6045880 2025-03-20 08:50:44.359 2025-03-20 08:50:44.359 8100 TIP 436394 1352 \N \N 6045881 2025-03-20 08:50:45.208 2025-03-20 08:50:45.208 9000 FEE 436394 4115 \N \N 6045882 2025-03-20 08:50:45.208 2025-03-20 08:50:45.208 81000 TIP 436394 11938 \N \N 6045885 2025-03-20 08:50:47.256 2025-03-20 08:50:47.256 1100 FEE 436323 17533 \N \N 6045886 2025-03-20 08:50:47.256 2025-03-20 08:50:47.256 9900 TIP 436323 21033 \N \N 6045889 2025-03-20 08:50:47.577 2025-03-20 08:50:47.577 1100 FEE 436323 19446 \N \N 6045890 2025-03-20 08:50:47.577 2025-03-20 08:50:47.577 9900 TIP 436323 13216 \N \N 6045908 2025-03-20 08:50:55.702 2025-03-20 08:50:55.702 3000 FEE 436332 2620 \N \N 6045909 2025-03-20 08:50:55.702 2025-03-20 08:50:55.702 27000 TIP 436332 15719 \N \N 6045929 2025-03-20 08:52:22.984 2025-03-20 08:52:22.984 500 FEE 436412 1411 \N \N 6045930 2025-03-20 08:52:22.984 2025-03-20 08:52:22.984 4500 TIP 436412 6526 \N \N 6045939 2025-03-20 08:53:18.855 2025-03-20 08:53:18.855 1000 FEE 436449 11866 \N \N 6045940 2025-03-20 08:53:18.855 2025-03-20 08:53:18.855 9000 TIP 436449 5112 \N \N 6045942 2025-03-20 08:53:51.216 2025-03-20 08:53:51.216 1000 FEE 436500 19332 \N \N 6045972 2025-03-20 08:56:09.024 2025-03-20 08:56:09.024 2100 FEE 434695 20904 \N \N 6045973 2025-03-20 08:56:09.024 2025-03-20 08:56:09.024 18900 TIP 434695 14651 \N \N 6045975 2025-03-20 08:56:12.083 2025-03-20 08:56:12.083 2100 FEE 436326 15732 \N \N 6045976 2025-03-20 08:56:12.083 2025-03-20 08:56:12.083 18900 TIP 436326 2233 \N \N 6045977 2025-03-20 08:56:12.599 2025-03-20 08:56:12.599 2100 FEE 436326 16562 \N \N 6045978 2025-03-20 08:56:12.599 2025-03-20 08:56:12.599 18900 TIP 436326 5759 \N \N 6045993 2025-03-20 08:56:49.462 2025-03-20 08:56:49.462 1000 FEE 436502 11395 \N \N 6046017 2025-03-20 08:59:27.467 2025-03-20 08:59:27.467 1000 FEE 436506 21523 \N \N 6046036 2025-03-20 09:00:37.299 2025-03-20 09:00:37.299 1000 FEE 436466 6471 \N \N 6046037 2025-03-20 09:00:37.299 2025-03-20 09:00:37.299 9000 TIP 436466 676 \N \N 6046041 2025-03-20 09:01:47.874 2025-03-20 09:01:47.874 100000 FEE 436508 21401 \N \N 6046046 2025-03-20 09:03:01.932 2025-03-20 09:03:01.932 100 FEE 436222 8080 \N \N 6046047 2025-03-20 09:03:01.932 2025-03-20 09:03:01.932 900 TIP 436222 3411 \N \N 6046057 2025-03-20 09:03:52.143 2025-03-20 09:03:52.143 0 FEE 368845 20691 \N \N 6046063 2025-03-20 09:04:11.548 2025-03-20 09:04:11.548 200 FEE 436508 9331 \N \N 6046064 2025-03-20 09:04:11.548 2025-03-20 09:04:11.548 1800 TIP 436508 4973 \N \N 6046065 2025-03-20 09:04:11.676 2025-03-20 09:04:11.676 200 FEE 436508 9921 \N \N 6046066 2025-03-20 09:04:11.676 2025-03-20 09:04:11.676 1800 TIP 436508 9295 \N \N 6046087 2025-03-20 09:05:14.594 2025-03-20 09:05:14.594 9000 FEE 436397 12245 \N \N 6046088 2025-03-20 09:05:14.594 2025-03-20 09:05:14.594 81000 TIP 436397 15728 \N \N 6046091 2025-03-20 09:05:23.417 2025-03-20 09:05:23.417 2300 FEE 436505 20891 \N \N 6046092 2025-03-20 09:05:23.417 2025-03-20 09:05:23.417 20700 TIP 436505 6393 \N \N 6046146 2025-03-20 09:07:04.631 2025-03-20 09:07:04.631 2300 FEE 436493 21207 \N \N 6046147 2025-03-20 09:07:04.631 2025-03-20 09:07:04.631 20700 TIP 436493 17944 \N \N 6046167 2025-03-20 09:07:23.006 2025-03-20 09:07:23.006 1000 FEE 436512 16296 \N \N 6046188 2025-03-20 09:07:35.306 2025-03-20 09:07:35.306 2300 FEE 436493 1038 \N \N 6046189 2025-03-20 09:07:35.306 2025-03-20 09:07:35.306 20700 TIP 436493 19966 \N \N 6046192 2025-03-20 09:07:35.63 2025-03-20 09:07:35.63 2300 FEE 436493 10934 \N \N 6046193 2025-03-20 09:07:35.63 2025-03-20 09:07:35.63 20700 TIP 436493 19378 \N \N 6046206 2025-03-20 09:07:36.995 2025-03-20 09:07:36.995 2300 FEE 436493 7966 \N \N 6046207 2025-03-20 09:07:36.995 2025-03-20 09:07:36.995 20700 TIP 436493 1307 \N \N 6046214 2025-03-20 09:07:38.169 2025-03-20 09:07:38.169 2300 FEE 436493 902 \N \N 6046215 2025-03-20 09:07:38.169 2025-03-20 09:07:38.169 20700 TIP 436493 12819 \N \N 6046224 2025-03-20 09:07:40.067 2025-03-20 09:07:40.067 2300 FEE 436493 20904 \N \N 6046225 2025-03-20 09:07:40.067 2025-03-20 09:07:40.067 20700 TIP 436493 17095 \N \N 6046226 2025-03-20 09:07:40.236 2025-03-20 09:07:40.236 2300 FEE 436493 16301 \N \N 6046227 2025-03-20 09:07:40.236 2025-03-20 09:07:40.236 20700 TIP 436493 20073 \N \N 6046234 2025-03-20 09:07:41.097 2025-03-20 09:07:41.097 4600 FEE 436493 3392 \N \N 6046235 2025-03-20 09:07:41.097 2025-03-20 09:07:41.097 41400 TIP 436493 20511 \N \N 6046256 2025-03-20 09:07:43.6 2025-03-20 09:07:43.6 2300 FEE 436493 725 \N \N 6046257 2025-03-20 09:07:43.6 2025-03-20 09:07:43.6 20700 TIP 436493 3396 \N \N 6046258 2025-03-20 09:07:43.716 2025-03-20 09:07:43.716 2300 FEE 436493 1647 \N \N 6046259 2025-03-20 09:07:43.716 2025-03-20 09:07:43.716 20700 TIP 436493 7682 \N \N 6046260 2025-03-20 09:07:43.882 2025-03-20 09:07:43.882 2300 FEE 436493 16660 \N \N 6046261 2025-03-20 09:07:43.882 2025-03-20 09:07:43.882 20700 TIP 436493 1039 \N \N 6046278 2025-03-20 09:07:57.312 2025-03-20 09:07:57.312 5000 FEE 436513 1571 \N \N 6046293 2025-03-20 09:11:02.816 2025-03-20 09:11:02.816 2100 FEE 436515 15728 \N \N 6046294 2025-03-20 09:11:02.816 2025-03-20 09:11:02.816 18900 TIP 436515 20981 \N \N 6046297 2025-03-20 09:11:04.819 2025-03-20 09:11:04.819 2300 FEE 436514 5175 \N \N 6046298 2025-03-20 09:11:04.819 2025-03-20 09:11:04.819 20700 TIP 436514 708 \N \N 6046325 2025-03-20 09:13:04.158 2025-03-20 09:13:04.158 1000 FEE 436508 15052 \N \N 6046326 2025-03-20 09:13:04.158 2025-03-20 09:13:04.158 9000 TIP 436508 18731 \N \N 6046354 2025-03-20 09:14:50.44 2025-03-20 09:14:50.44 400 FEE 436515 1806 \N \N 6046355 2025-03-20 09:14:50.44 2025-03-20 09:14:50.44 3600 TIP 436515 18772 \N \N 6046357 2025-03-20 09:15:05.048 2025-03-20 09:15:05.048 2100 FEE 436444 20756 \N \N 6046358 2025-03-20 09:15:05.048 2025-03-20 09:15:05.048 18900 TIP 436444 9026 \N \N 6046382 2025-03-20 09:19:42.476 2025-03-20 09:19:42.476 1000 FEE 436522 12821 \N \N 6046418 2025-03-20 09:20:57.724 2025-03-20 09:20:57.724 1000 FEE 436504 14381 \N \N 6045786 2025-03-20 08:41:33.677 2025-03-20 08:41:33.677 243000 TIP 435906 6148 \N \N 6045806 2025-03-20 08:43:03.084 2025-03-20 08:43:03.084 3000 FEE 436361 2773 \N \N 6045807 2025-03-20 08:43:03.084 2025-03-20 08:43:03.084 27000 TIP 436361 1320 \N \N 6045819 2025-03-20 08:44:26.85 2025-03-20 08:44:26.85 1000 FEE 436459 699 \N \N 6045820 2025-03-20 08:44:26.85 2025-03-20 08:44:26.85 9000 TIP 436459 9364 \N \N 6045850 2025-03-20 08:49:38.414 2025-03-20 08:49:38.414 100000 FEE 436494 11999 \N \N 6045877 2025-03-20 08:50:44.324 2025-03-20 08:50:44.324 100 FEE 436394 14225 \N \N 6045878 2025-03-20 08:50:44.324 2025-03-20 08:50:44.324 900 TIP 436394 986 \N \N 6045891 2025-03-20 08:50:47.776 2025-03-20 08:50:47.776 1100 FEE 436323 1823 \N \N 6045892 2025-03-20 08:50:47.776 2025-03-20 08:50:47.776 9900 TIP 436323 673 \N \N 6045897 2025-03-20 08:50:48.185 2025-03-20 08:50:48.185 1100 FEE 436323 15213 \N \N 6045898 2025-03-20 08:50:48.185 2025-03-20 08:50:48.185 9900 TIP 436323 9349 \N \N 6045916 2025-03-20 08:51:11.864 2025-03-20 08:51:11.864 2100 FEE 435944 16387 \N \N 6045917 2025-03-20 08:51:11.864 2025-03-20 08:51:11.864 18900 TIP 435944 12222 \N \N 6045925 2025-03-20 08:51:49.78 2025-03-20 08:51:49.78 10000 FEE 436243 822 \N \N 6045926 2025-03-20 08:51:49.78 2025-03-20 08:51:49.78 90000 TIP 436243 18011 \N \N 6045938 2025-03-20 08:53:17.248 2025-03-20 08:53:17.248 1000 FEE 436498 17533 \N \N 6045948 2025-03-20 08:54:14.037 2025-03-20 08:54:14.037 1000 FEE 436494 2329 \N \N 6045949 2025-03-20 08:54:14.037 2025-03-20 08:54:14.037 9000 TIP 436494 11798 \N \N 6045950 2025-03-20 08:54:36.977 2025-03-20 08:54:36.977 3000 FEE 436492 15367 \N \N 6045951 2025-03-20 08:54:36.977 2025-03-20 08:54:36.977 27000 TIP 436492 647 \N \N 6045952 2025-03-20 08:54:37.558 2025-03-20 08:54:37.558 27000 FEE 436492 15624 \N \N 6045953 2025-03-20 08:54:37.558 2025-03-20 08:54:37.558 243000 TIP 436492 18274 \N \N 6045960 2025-03-20 08:55:23.531 2025-03-20 08:55:23.531 1000 FEE 436489 5522 \N \N 6045961 2025-03-20 08:55:23.531 2025-03-20 08:55:23.531 9000 TIP 436489 749 \N \N 6045981 2025-03-20 08:56:25.303 2025-03-20 08:56:25.303 2100 FEE 435488 19673 \N \N 6045982 2025-03-20 08:56:25.303 2025-03-20 08:56:25.303 18900 TIP 435488 6578 \N \N 6046000 2025-03-20 08:58:02.705 2025-03-20 08:58:02.705 1000 FEE 436491 21555 \N \N 6046001 2025-03-20 08:58:02.705 2025-03-20 08:58:02.705 9000 TIP 436491 1705 \N \N 6046002 2025-03-20 08:58:02.876 2025-03-20 08:58:02.876 1000 FEE 436491 21797 \N \N 6046003 2025-03-20 08:58:02.876 2025-03-20 08:58:02.876 9000 TIP 436491 21091 \N \N 6046010 2025-03-20 08:58:21.862 2025-03-20 08:58:21.862 10000 FEE 435217 20904 \N \N 6046011 2025-03-20 08:58:21.862 2025-03-20 08:58:21.862 90000 TIP 435217 4035 \N \N 6046020 2025-03-20 08:59:43.16 2025-03-20 08:59:43.16 1000 FEE 435466 956 \N \N 6046021 2025-03-20 08:59:43.16 2025-03-20 08:59:43.16 9000 TIP 435466 4314 \N \N 6046028 2025-03-20 09:00:32.621 2025-03-20 09:00:32.621 1000 FEE 436466 5978 \N \N 6046029 2025-03-20 09:00:32.621 2025-03-20 09:00:32.621 9000 TIP 436466 21212 \N \N 6046042 2025-03-20 09:02:05.009 2025-03-20 09:02:05.009 1000 FEE 436507 15139 \N \N 6046043 2025-03-20 09:02:05.009 2025-03-20 09:02:05.009 9000 TIP 436507 18188 \N \N 6046045 2025-03-20 09:02:27.772 2025-03-20 09:02:27.772 1000 FEE 436509 8469 \N \N 6046050 2025-03-20 09:03:04.14 2025-03-20 09:03:04.14 9000 FEE 436222 15386 \N \N 6046051 2025-03-20 09:03:04.14 2025-03-20 09:03:04.14 81000 TIP 436222 18829 \N \N 6046111 2025-03-20 09:05:30.68 2025-03-20 09:05:30.68 100000 FEE 436511 13553 \N \N 6046116 2025-03-20 09:06:16.176 2025-03-20 09:06:16.176 1100 FEE 436243 1298 \N \N 6046117 2025-03-20 09:06:16.176 2025-03-20 09:06:16.176 9900 TIP 436243 15282 \N \N 6046126 2025-03-20 09:07:02.013 2025-03-20 09:07:02.013 6900 FEE 436493 10060 \N \N 6046127 2025-03-20 09:07:02.013 2025-03-20 09:07:02.013 62100 TIP 436493 18426 \N \N 6046136 2025-03-20 09:07:03.547 2025-03-20 09:07:03.547 2300 FEE 436493 18673 \N \N 6046137 2025-03-20 09:07:03.547 2025-03-20 09:07:03.547 20700 TIP 436493 1729 \N \N 6046150 2025-03-20 09:07:05.154 2025-03-20 09:07:05.154 2300 FEE 436493 16387 \N \N 6046151 2025-03-20 09:07:05.154 2025-03-20 09:07:05.154 20700 TIP 436493 1130 \N \N 6046156 2025-03-20 09:07:09.642 2025-03-20 09:07:09.642 2100 FEE 436508 8459 \N \N 6046157 2025-03-20 09:07:09.642 2025-03-20 09:07:09.642 18900 TIP 436508 2338 \N \N 6046198 2025-03-20 09:07:36.128 2025-03-20 09:07:36.128 2300 FEE 436493 708 \N \N 6046199 2025-03-20 09:07:36.128 2025-03-20 09:07:36.128 20700 TIP 436493 20924 \N \N 6046208 2025-03-20 09:07:37.163 2025-03-20 09:07:37.163 2300 FEE 436493 19812 \N \N 6046209 2025-03-20 09:07:37.163 2025-03-20 09:07:37.163 20700 TIP 436493 9169 \N \N 6046238 2025-03-20 09:07:41.812 2025-03-20 09:07:41.812 2300 FEE 436493 2528 \N \N 6046239 2025-03-20 09:07:41.812 2025-03-20 09:07:41.812 20700 TIP 436493 13100 \N \N 6046254 2025-03-20 09:07:43.378 2025-03-20 09:07:43.378 2300 FEE 436493 13169 \N \N 6046255 2025-03-20 09:07:43.378 2025-03-20 09:07:43.378 20700 TIP 436493 977 \N \N 6046262 2025-03-20 09:07:44.071 2025-03-20 09:07:44.071 2300 FEE 436493 3392 \N \N 6046263 2025-03-20 09:07:44.071 2025-03-20 09:07:44.071 20700 TIP 436493 2338 \N \N 6046266 2025-03-20 09:07:44.388 2025-03-20 09:07:44.388 2300 FEE 436493 1549 \N \N 6046267 2025-03-20 09:07:44.388 2025-03-20 09:07:44.388 20700 TIP 436493 14909 \N \N 6046272 2025-03-20 09:07:44.953 2025-03-20 09:07:44.953 2300 FEE 436493 17526 \N \N 6046273 2025-03-20 09:07:44.953 2025-03-20 09:07:44.953 20700 TIP 436493 6136 \N \N 6046286 2025-03-20 09:09:20.463 2025-03-20 09:09:20.463 2100 FEE 436477 6260 \N \N 6046287 2025-03-20 09:09:20.463 2025-03-20 09:09:20.463 18900 TIP 436477 1474 \N \N 6046288 2025-03-20 09:10:01.482 2025-03-20 09:10:01.482 1000 FEE 436515 2022 \N \N 6046290 2025-03-20 09:10:38.131 2025-03-20 09:10:38.131 2100 FEE 436491 18557 \N \N 6046291 2025-03-20 09:10:38.131 2025-03-20 09:10:38.131 18900 TIP 436491 10352 \N \N 6046299 2025-03-20 09:11:05.595 2025-03-20 09:11:05.595 2300 FEE 436514 20781 \N \N 6046300 2025-03-20 09:11:05.595 2025-03-20 09:11:05.595 20700 TIP 436514 17392 \N \N 6046303 2025-03-20 09:11:05.887 2025-03-20 09:11:05.887 2300 FEE 436514 21048 \N \N 6046304 2025-03-20 09:11:05.887 2025-03-20 09:11:05.887 20700 TIP 436514 1352 \N \N 6046320 2025-03-20 09:12:39.249 2025-03-20 09:12:39.249 1000 FEE 436518 638 \N \N 6046323 2025-03-20 09:13:04.075 2025-03-20 09:13:04.075 1000 FEE 436508 21683 \N \N 6046324 2025-03-20 09:13:04.075 2025-03-20 09:13:04.075 9000 TIP 436508 3642 \N \N 6046351 2025-03-20 09:14:26.816 2025-03-20 09:14:26.816 0 FEE 436519 9276 \N \N 6046375 2025-03-20 09:17:54.856 2025-03-20 09:17:54.856 30000 FEE 436459 621 \N \N 6046376 2025-03-20 09:17:54.856 2025-03-20 09:17:54.856 270000 TIP 436459 4474 \N \N 6046384 2025-03-20 09:20:00.177 2025-03-20 09:20:00.177 2100 FEE 436294 1673 \N \N 6046385 2025-03-20 09:20:00.177 2025-03-20 09:20:00.177 18900 TIP 436294 16816 \N \N 6046404 2025-03-20 09:20:56.32 2025-03-20 09:20:56.32 1000 FEE 436504 14404 \N \N 6046405 2025-03-20 09:20:56.32 2025-03-20 09:20:56.32 9000 TIP 436504 17064 \N \N 6046449 2025-03-20 09:25:04.743 2025-03-20 09:25:04.743 100 FEE 436512 1319 \N \N 6046450 2025-03-20 09:25:04.743 2025-03-20 09:25:04.743 900 TIP 436512 15890 \N \N 6046484 2025-03-20 09:26:23.145 2025-03-20 09:26:23.145 1000 FEE 436501 1352 \N \N 6046485 2025-03-20 09:26:23.145 2025-03-20 09:26:23.145 9000 TIP 436501 12072 \N \N 6045848 2025-03-20 08:49:17.609 2025-03-20 08:49:17.609 1000 FEE 436492 17824 \N \N 6045855 2025-03-20 08:49:51.808 2025-03-20 08:49:51.808 1000 FEE 436490 726 \N \N 6045856 2025-03-20 08:49:51.808 2025-03-20 08:49:51.808 9000 TIP 436490 18017 \N \N 6045860 2025-03-20 08:50:01.447 2025-03-20 08:50:01.447 2100 FEE 436093 6137 \N \N 6045861 2025-03-20 08:50:01.447 2025-03-20 08:50:01.447 18900 TIP 436093 4768 \N \N 6045865 2025-03-20 08:50:30.448 2025-03-20 08:50:30.448 3000 FEE 436491 12072 \N \N 6045866 2025-03-20 08:50:30.448 2025-03-20 08:50:30.448 27000 TIP 436491 16684 \N \N 6045910 2025-03-20 08:51:02.593 2025-03-20 08:51:02.593 100 FEE 436413 15491 \N \N 6045911 2025-03-20 08:51:02.593 2025-03-20 08:51:02.593 900 TIP 436413 2016 \N \N 6045924 2025-03-20 08:51:44.866 2025-03-20 08:51:44.866 1000 FEE 436496 20710 \N \N 6045943 2025-03-20 08:54:04.149 2025-03-20 08:54:04.149 1000 FEE 436486 8004 \N \N 6045944 2025-03-20 08:54:04.149 2025-03-20 08:54:04.149 9000 TIP 436486 1564 \N \N 6045968 2025-03-20 08:56:07.82 2025-03-20 08:56:07.82 2100 FEE 434695 21139 \N \N 6045969 2025-03-20 08:56:07.82 2025-03-20 08:56:07.82 18900 TIP 434695 629 \N \N 6045970 2025-03-20 08:56:08.246 2025-03-20 08:56:08.246 2100 FEE 434695 16939 \N \N 6045971 2025-03-20 08:56:08.246 2025-03-20 08:56:08.246 18900 TIP 434695 18468 \N \N 6045983 2025-03-20 08:56:26.412 2025-03-20 08:56:26.412 4200 FEE 435488 831 \N \N 6045984 2025-03-20 08:56:26.412 2025-03-20 08:56:26.412 37800 TIP 435488 21254 \N \N 6045991 2025-03-20 08:56:31.539 2025-03-20 08:56:31.539 2100 FEE 435580 21320 \N \N 6045992 2025-03-20 08:56:31.539 2025-03-20 08:56:31.539 18900 TIP 435580 21233 \N \N 6046004 2025-03-20 08:58:06.289 2025-03-20 08:58:06.289 1000 FEE 436504 8245 \N \N 6046018 2025-03-20 08:59:28.632 2025-03-20 08:59:28.632 3000 FEE 436503 21814 \N \N 6046019 2025-03-20 08:59:28.632 2025-03-20 08:59:28.632 27000 TIP 436503 12821 \N \N 6046024 2025-03-20 09:00:30.907 2025-03-20 09:00:30.907 1000 FEE 436466 21797 \N \N 6046025 2025-03-20 09:00:30.907 2025-03-20 09:00:30.907 9000 TIP 436466 16562 \N \N 6046034 2025-03-20 09:00:35.547 2025-03-20 09:00:35.547 1000 FEE 436466 13143 \N \N 6046035 2025-03-20 09:00:35.547 2025-03-20 09:00:35.547 9000 TIP 436466 17727 \N \N 6046059 2025-03-20 09:03:57.991 2025-03-20 09:03:57.991 31400 FEE 436498 16259 \N \N 6046060 2025-03-20 09:03:57.991 2025-03-20 09:03:57.991 282600 TIP 436498 13162 \N \N 6046074 2025-03-20 09:04:25.478 2025-03-20 09:04:25.478 9000 FEE 436487 7654 \N \N 6046075 2025-03-20 09:04:25.478 2025-03-20 09:04:25.478 81000 TIP 436487 21520 \N \N 6046093 2025-03-20 09:05:23.559 2025-03-20 09:05:23.559 2300 FEE 436505 20745 \N \N 6046094 2025-03-20 09:05:23.559 2025-03-20 09:05:23.559 20700 TIP 436505 14255 \N \N 6046122 2025-03-20 09:07:00.696 2025-03-20 09:07:00.696 2300 FEE 436493 5444 \N \N 6046123 2025-03-20 09:07:00.696 2025-03-20 09:07:00.696 20700 TIP 436493 21571 \N \N 6046138 2025-03-20 09:07:03.766 2025-03-20 09:07:03.766 2300 FEE 436493 7674 \N \N 6046139 2025-03-20 09:07:03.766 2025-03-20 09:07:03.766 20700 TIP 436493 21320 \N \N 6046142 2025-03-20 09:07:04.237 2025-03-20 09:07:04.237 2300 FEE 436493 1571 \N \N 6046143 2025-03-20 09:07:04.237 2025-03-20 09:07:04.237 20700 TIP 436493 9329 \N \N 6046162 2025-03-20 09:07:09.774 2025-03-20 09:07:09.774 2100 FEE 436508 5128 \N \N 6046163 2025-03-20 09:07:09.774 2025-03-20 09:07:09.774 18900 TIP 436508 1465 \N \N 6046168 2025-03-20 09:07:32.829 2025-03-20 09:07:32.829 2300 FEE 436493 20450 \N \N 6046169 2025-03-20 09:07:32.829 2025-03-20 09:07:32.829 20700 TIP 436493 6382 \N \N 6046172 2025-03-20 09:07:33.544 2025-03-20 09:07:33.544 2300 FEE 436493 21238 \N \N 6046173 2025-03-20 09:07:33.544 2025-03-20 09:07:33.544 20700 TIP 436493 666 \N \N 6046180 2025-03-20 09:07:34.193 2025-03-20 09:07:34.193 2300 FEE 436493 1697 \N \N 6046181 2025-03-20 09:07:34.193 2025-03-20 09:07:34.193 20700 TIP 436493 7682 \N \N 6046182 2025-03-20 09:07:34.361 2025-03-20 09:07:34.361 2300 FEE 436493 20715 \N \N 6046183 2025-03-20 09:07:34.361 2025-03-20 09:07:34.361 20700 TIP 436493 18865 \N \N 6046186 2025-03-20 09:07:34.793 2025-03-20 09:07:34.793 2300 FEE 436493 1120 \N \N 6046187 2025-03-20 09:07:34.793 2025-03-20 09:07:34.793 20700 TIP 436493 17517 \N \N 6046202 2025-03-20 09:07:36.447 2025-03-20 09:07:36.447 2300 FEE 436493 9275 \N \N 6046203 2025-03-20 09:07:36.447 2025-03-20 09:07:36.447 20700 TIP 436493 12561 \N \N 6046210 2025-03-20 09:07:37.332 2025-03-20 09:07:37.332 2300 FEE 436493 1130 \N \N 6046211 2025-03-20 09:07:37.332 2025-03-20 09:07:37.332 20700 TIP 436493 4074 \N \N 6046212 2025-03-20 09:07:37.809 2025-03-20 09:07:37.809 6900 FEE 436493 17710 \N \N 6046213 2025-03-20 09:07:37.809 2025-03-20 09:07:37.809 62100 TIP 436493 21416 \N \N 6046216 2025-03-20 09:07:38.53 2025-03-20 09:07:38.53 2300 FEE 436493 692 \N \N 6046217 2025-03-20 09:07:38.53 2025-03-20 09:07:38.53 20700 TIP 436493 20717 \N \N 6046230 2025-03-20 09:07:40.586 2025-03-20 09:07:40.586 2300 FEE 436493 1985 \N \N 6046231 2025-03-20 09:07:40.586 2025-03-20 09:07:40.586 20700 TIP 436493 21709 \N \N 6046246 2025-03-20 09:07:42.467 2025-03-20 09:07:42.467 2300 FEE 436493 1316 \N \N 6046247 2025-03-20 09:07:42.467 2025-03-20 09:07:42.467 20700 TIP 436493 20778 \N \N 6046248 2025-03-20 09:07:42.946 2025-03-20 09:07:42.946 2300 FEE 436493 15617 \N \N 6046249 2025-03-20 09:07:42.946 2025-03-20 09:07:42.946 20700 TIP 436493 9969 \N \N 6046270 2025-03-20 09:07:44.732 2025-03-20 09:07:44.732 2300 FEE 436493 21247 \N \N 6046271 2025-03-20 09:07:44.732 2025-03-20 09:07:44.732 20700 TIP 436493 698 \N \N 6046274 2025-03-20 09:07:45.149 2025-03-20 09:07:45.149 2300 FEE 436493 2330 \N \N 6046275 2025-03-20 09:07:45.149 2025-03-20 09:07:45.149 20700 TIP 436493 16912 \N \N 6046292 2025-03-20 09:10:54.6 2025-03-20 09:10:54.6 7000 FEE 436516 18314 \N \N 6046337 2025-03-20 09:13:07.69 2025-03-20 09:13:07.69 1000 FEE 436519 20973 \N \N 6046356 2025-03-20 09:14:59.212 2025-03-20 09:14:59.212 100000 FEE 436520 1173 \N \N 6046397 2025-03-20 09:20:55.512 2025-03-20 09:20:55.512 1000 FEE 436504 666 \N \N 6046398 2025-03-20 09:20:55.512 2025-03-20 09:20:55.512 9000 TIP 436504 1298 \N \N 6046412 2025-03-20 09:20:57.213 2025-03-20 09:20:57.213 1000 FEE 436504 21090 \N \N 6046413 2025-03-20 09:20:57.213 2025-03-20 09:20:57.213 9000 TIP 436504 11275 \N \N 6046443 2025-03-20 09:24:01.556 2025-03-20 09:24:01.556 4200 FEE 436463 2000 \N \N 6046444 2025-03-20 09:24:01.556 2025-03-20 09:24:01.556 37800 TIP 436463 11527 \N \N 6046469 2025-03-20 09:25:41.766 2025-03-20 09:25:41.766 200 FEE 436492 16177 \N \N 6045876 2025-03-20 08:50:43.972 2025-03-20 08:50:43.972 9900 TIP 436323 663 \N \N 6045895 2025-03-20 08:50:48.018 2025-03-20 08:50:48.018 1100 FEE 436323 7510 \N \N 6045896 2025-03-20 08:50:48.018 2025-03-20 08:50:48.018 9900 TIP 436323 2749 \N \N 6045903 2025-03-20 08:50:49.008 2025-03-20 08:50:49.008 1100 FEE 436323 21712 \N \N 6045904 2025-03-20 08:50:49.008 2025-03-20 08:50:49.008 9900 TIP 436323 21103 \N \N 6045912 2025-03-20 08:51:02.821 2025-03-20 08:51:02.821 900 FEE 436413 763 \N \N 6045913 2025-03-20 08:51:02.821 2025-03-20 08:51:02.821 8100 TIP 436413 11443 \N \N 6045914 2025-03-20 08:51:11.539 2025-03-20 08:51:11.539 4000 FEE 436491 10821 \N \N 6045915 2025-03-20 08:51:11.539 2025-03-20 08:51:11.539 36000 TIP 436491 21145 \N \N 6045927 2025-03-20 08:52:03.726 2025-03-20 08:52:03.726 1000 FEE 436497 2639 \N \N 6045962 2025-03-20 08:55:24.071 2025-03-20 08:55:24.071 1000 FEE 436489 20778 \N \N 6045963 2025-03-20 08:55:24.071 2025-03-20 08:55:24.071 9000 TIP 436489 15119 \N \N 6045980 2025-03-20 08:56:17.68 2025-03-20 08:56:17.68 0 FEE 436490 1469 \N \N 6045998 2025-03-20 08:58:02.528 2025-03-20 08:58:02.528 1000 FEE 436491 5828 \N \N 6045999 2025-03-20 08:58:02.528 2025-03-20 08:58:02.528 9000 TIP 436491 14255 \N \N 6045893 2025-03-20 08:50:47.855 2025-03-20 08:50:47.855 1100 FEE 436323 1729 \N \N 6045894 2025-03-20 08:50:47.855 2025-03-20 08:50:47.855 9900 TIP 436323 20434 \N \N 6045899 2025-03-20 08:50:48.326 2025-03-20 08:50:48.326 1100 FEE 436323 19117 \N \N 6045900 2025-03-20 08:50:48.326 2025-03-20 08:50:48.326 9900 TIP 436323 18241 \N \N 6045918 2025-03-20 08:51:14.164 2025-03-20 08:51:14.164 1000 FEE 436495 20904 \N \N 6045922 2025-03-20 08:51:29.926 2025-03-20 08:51:29.926 3300 FEE 436494 620 \N \N 6045923 2025-03-20 08:51:29.926 2025-03-20 08:51:29.926 29700 TIP 436494 2232 \N \N 6045985 2025-03-20 08:56:31.077 2025-03-20 08:56:31.077 2100 FEE 435580 17106 \N \N 6045986 2025-03-20 08:56:31.077 2025-03-20 08:56:31.077 18900 TIP 435580 15200 \N \N 6045995 2025-03-20 08:57:21.826 2025-03-20 08:57:21.826 1000 FEE 436503 12356 \N \N 6046013 2025-03-20 08:58:40.018 2025-03-20 08:58:40.018 2600 FEE 435719 12139 \N \N 6046014 2025-03-20 08:58:40.018 2025-03-20 08:58:40.018 23400 TIP 435719 7773 \N \N 6046058 2025-03-20 09:03:55.859 2025-03-20 09:03:55.859 11000 FEE 436510 12139 \N \N 6046076 2025-03-20 09:04:42.92 2025-03-20 09:04:42.92 100 FEE 436440 699 \N \N 6046077 2025-03-20 09:04:42.92 2025-03-20 09:04:42.92 900 TIP 436440 1489 \N \N 6046080 2025-03-20 09:04:47.157 2025-03-20 09:04:47.157 9000 FEE 436440 21051 \N \N 6046081 2025-03-20 09:04:47.157 2025-03-20 09:04:47.157 81000 TIP 436440 18430 \N \N 6046085 2025-03-20 09:05:13.983 2025-03-20 09:05:13.983 900 FEE 436397 12911 \N \N 6046086 2025-03-20 09:05:13.983 2025-03-20 09:05:13.983 8100 TIP 436397 21218 \N \N 6046095 2025-03-20 09:05:23.711 2025-03-20 09:05:23.711 2300 FEE 436505 20059 \N \N 6046096 2025-03-20 09:05:23.711 2025-03-20 09:05:23.711 20700 TIP 436505 3213 \N \N 6046184 2025-03-20 09:07:34.595 2025-03-20 09:07:34.595 2300 FEE 436493 7966 \N \N 6046185 2025-03-20 09:07:34.595 2025-03-20 09:07:34.595 20700 TIP 436493 16354 \N \N 6046190 2025-03-20 09:07:35.464 2025-03-20 09:07:35.464 2300 FEE 436493 20511 \N \N 6046191 2025-03-20 09:07:35.464 2025-03-20 09:07:35.464 20700 TIP 436493 20841 \N \N 6046242 2025-03-20 09:07:42.13 2025-03-20 09:07:42.13 2300 FEE 436493 15549 \N \N 6046243 2025-03-20 09:07:42.13 2025-03-20 09:07:42.13 20700 TIP 436493 1596 \N \N 6046309 2025-03-20 09:11:06.79 2025-03-20 09:11:06.79 2300 FEE 436514 9347 \N \N 6046310 2025-03-20 09:11:06.79 2025-03-20 09:11:06.79 20700 TIP 436514 10981 \N \N 6046331 2025-03-20 09:13:05.732 2025-03-20 09:13:05.732 1000 FEE 436508 1650 \N \N 6046332 2025-03-20 09:13:05.732 2025-03-20 09:13:05.732 9000 TIP 436508 5497 \N \N 6046340 2025-03-20 09:13:08.031 2025-03-20 09:13:08.031 2000 FEE 436508 21349 \N \N 6046341 2025-03-20 09:13:08.031 2025-03-20 09:13:08.031 18000 TIP 436508 9261 \N \N 6046342 2025-03-20 09:13:10.787 2025-03-20 09:13:10.787 2100 FEE 436506 11942 \N \N 6046343 2025-03-20 09:13:10.787 2025-03-20 09:13:10.787 18900 TIP 436506 7978 \N \N 6046352 2025-03-20 09:14:32.126 2025-03-20 09:14:32.126 2100 FEE 436459 8176 \N \N 6046353 2025-03-20 09:14:32.126 2025-03-20 09:14:32.126 18900 TIP 436459 2620 \N \N 6046387 2025-03-20 09:20:31.159 2025-03-20 09:20:31.159 10000 FEE 436493 20454 \N \N 6046388 2025-03-20 09:20:31.159 2025-03-20 09:20:31.159 90000 TIP 436493 4292 \N \N 6046391 2025-03-20 09:20:54.482 2025-03-20 09:20:54.482 1000 FEE 436504 20674 \N \N 6046392 2025-03-20 09:20:54.482 2025-03-20 09:20:54.482 9000 TIP 436504 1352 \N \N 6046400 2025-03-20 09:20:55.974 2025-03-20 09:20:55.974 1000 FEE 436504 21555 \N \N 6046401 2025-03-20 09:20:55.974 2025-03-20 09:20:55.974 9000 TIP 436504 21794 \N \N 6046414 2025-03-20 09:20:57.386 2025-03-20 09:20:57.386 1000 FEE 436504 1136 \N \N 6046415 2025-03-20 09:20:57.386 2025-03-20 09:20:57.386 9000 TIP 436504 12768 \N \N 6046422 2025-03-20 09:20:58.064 2025-03-20 09:20:58.064 1000 FEE 436504 1983 \N \N 6046423 2025-03-20 09:20:58.064 2025-03-20 09:20:58.064 9000 TIP 436504 5759 \N \N 6046424 2025-03-20 09:20:58.295 2025-03-20 09:20:58.295 1000 FEE 436504 1720 \N \N 6046425 2025-03-20 09:20:58.295 2025-03-20 09:20:58.295 9000 TIP 436504 15052 \N \N 6046428 2025-03-20 09:20:58.862 2025-03-20 09:20:58.862 1000 FEE 436504 5746 \N \N 6046429 2025-03-20 09:20:58.862 2025-03-20 09:20:58.862 9000 TIP 436504 13133 \N \N 6046435 2025-03-20 09:22:09.368 2025-03-20 09:22:09.368 10000 FEE 436330 20509 \N \N 6046436 2025-03-20 09:22:09.368 2025-03-20 09:22:09.368 90000 TIP 436330 20754 \N \N 6112880 2025-03-26 05:33:59.091 2025-03-26 05:33:59.091 27900 TIP 443557 9863 \N \N 6112890 2025-03-26 05:35:15.407 2025-03-26 05:35:15.407 1000 FEE 443562 20912 \N \N 6112924 2025-03-26 05:37:34.255 2025-03-26 05:37:34.255 1000 FEE 443571 8059 \N \N 6112932 2025-03-26 05:37:57.576 2025-03-26 05:37:57.576 2100 FEE 443319 7960 \N \N 6112933 2025-03-26 05:37:57.576 2025-03-26 05:37:57.576 18900 TIP 443319 3353 \N \N 6112968 2025-03-26 05:39:15.083 2025-03-26 05:39:15.083 7700 FEE 443274 12976 \N \N 6112969 2025-03-26 05:39:15.083 2025-03-26 05:39:15.083 69300 TIP 443274 2061 \N \N 6112976 2025-03-26 05:39:24.684 2025-03-26 05:39:24.684 7700 FEE 443372 9332 \N \N 6112977 2025-03-26 05:39:24.684 2025-03-26 05:39:24.684 69300 TIP 443372 13076 \N \N 6113002 2025-03-26 05:39:26.411 2025-03-26 05:39:26.411 7700 FEE 443372 1120 \N \N 6113003 2025-03-26 05:39:26.411 2025-03-26 05:39:26.411 69300 TIP 443372 11515 \N \N 6113004 2025-03-26 05:39:26.512 2025-03-26 05:39:26.512 7700 FEE 443372 21036 \N \N 6113005 2025-03-26 05:39:26.512 2025-03-26 05:39:26.512 69300 TIP 443372 19821 \N \N 6113008 2025-03-26 05:39:26.798 2025-03-26 05:39:26.798 7700 FEE 443372 2010 \N \N 6113009 2025-03-26 05:39:26.798 2025-03-26 05:39:26.798 69300 TIP 443372 4225 \N \N 6113012 2025-03-26 05:39:30.275 2025-03-26 05:39:30.275 7700 FEE 443179 4989 \N \N 6113013 2025-03-26 05:39:30.275 2025-03-26 05:39:30.275 69300 TIP 443179 5904 \N \N 6113018 2025-03-26 05:39:30.681 2025-03-26 05:39:30.681 7700 FEE 443179 9177 \N \N 6113019 2025-03-26 05:39:30.681 2025-03-26 05:39:30.681 69300 TIP 443179 6148 \N \N 6113024 2025-03-26 05:39:31.331 2025-03-26 05:39:31.331 15400 FEE 443179 10493 \N \N 6113025 2025-03-26 05:39:31.331 2025-03-26 05:39:31.331 138600 TIP 443179 10591 \N \N 6113046 2025-03-26 05:39:59.491 2025-03-26 05:39:59.491 7700 FEE 443339 718 \N \N 6113047 2025-03-26 05:39:59.491 2025-03-26 05:39:59.491 69300 TIP 443339 14607 \N \N 6113087 2025-03-26 05:41:26.334 2025-03-26 05:41:26.334 2100 FEE 443296 13177 \N \N 6113088 2025-03-26 05:41:26.334 2025-03-26 05:41:26.334 18900 TIP 443296 21768 \N \N 6113091 2025-03-26 05:41:48.39 2025-03-26 05:41:48.39 1000 FEE 443487 20596 \N \N 6113092 2025-03-26 05:41:48.39 2025-03-26 05:41:48.39 9000 TIP 443487 19796 \N \N 6113096 2025-03-26 05:42:25.448 2025-03-26 05:42:25.448 1000 FEE 443580 1003 \N \N 6113105 2025-03-26 05:42:37.314 2025-03-26 05:42:37.314 6900 FEE 443272 5444 \N \N 6113106 2025-03-26 05:42:37.314 2025-03-26 05:42:37.314 62100 TIP 443272 13348 \N \N 6113107 2025-03-26 05:42:37.446 2025-03-26 05:42:37.446 6900 FEE 443272 684 \N \N 6113108 2025-03-26 05:42:37.446 2025-03-26 05:42:37.446 62100 TIP 443272 17944 \N \N 6113114 2025-03-26 05:43:20.391 2025-03-26 05:43:20.391 2100 FEE 443192 629 \N \N 6113115 2025-03-26 05:43:20.391 2025-03-26 05:43:20.391 18900 TIP 443192 17535 \N \N 6113130 2025-03-26 05:45:47.265 2025-03-26 05:45:47.265 1100 FEE 443436 16406 \N \N 6113131 2025-03-26 05:45:47.265 2025-03-26 05:45:47.265 9900 TIP 443436 20881 \N \N 6113137 2025-03-26 05:45:56.16 2025-03-26 05:45:56.16 7700 FEE 443274 8326 \N \N 6113138 2025-03-26 05:45:56.16 2025-03-26 05:45:56.16 69300 TIP 443274 2111 \N \N 6113149 2025-03-26 05:45:57.782 2025-03-26 05:45:57.782 7700 FEE 443272 641 \N \N 6113150 2025-03-26 05:45:57.782 2025-03-26 05:45:57.782 69300 TIP 443272 20956 \N \N 6113250 2025-03-26 05:48:11.635 2025-03-26 05:48:11.635 1700 FEE 443559 7916 \N \N 6113251 2025-03-26 05:48:11.635 2025-03-26 05:48:11.635 15300 TIP 443559 11829 \N \N 6113268 2025-03-26 05:49:11.278 2025-03-26 05:49:11.278 1000 FEE 443590 837 \N \N 6113291 2025-03-26 05:50:27.023 2025-03-26 05:50:27.023 800 FEE 443578 3353 \N \N 6113292 2025-03-26 05:50:27.023 2025-03-26 05:50:27.023 7200 TIP 443578 18306 \N \N 6113293 2025-03-26 05:50:41.384 2025-03-26 05:50:41.384 300 FEE 443404 13622 \N \N 6113294 2025-03-26 05:50:41.384 2025-03-26 05:50:41.384 2700 TIP 443404 21014 \N \N 6113303 2025-03-26 05:51:05.974 2025-03-26 05:51:05.974 1000 FEE 443578 16858 \N \N 6113304 2025-03-26 05:51:05.974 2025-03-26 05:51:05.974 9000 TIP 443578 17741 \N \N 6113313 2025-03-26 05:52:19.92 2025-03-26 05:52:19.92 1000 FEE 443597 854 \N \N 6113332 2025-03-26 05:54:05.453 2025-03-26 05:54:05.453 10000 FEE 443583 1429 \N \N 6113333 2025-03-26 05:54:05.453 2025-03-26 05:54:05.453 90000 TIP 443583 4763 \N \N 6113349 2025-03-26 05:54:54.421 2025-03-26 05:54:54.421 1000 FEE 443272 2330 \N \N 6113350 2025-03-26 05:54:54.421 2025-03-26 05:54:54.421 9000 TIP 443272 667 \N \N 6113353 2025-03-26 05:54:58.202 2025-03-26 05:54:58.202 7700 FEE 443577 9421 \N \N 6113354 2025-03-26 05:54:58.202 2025-03-26 05:54:58.202 69300 TIP 443577 8498 \N \N 6113362 2025-03-26 05:55:04.882 2025-03-26 05:55:04.882 7700 FEE 443577 21164 \N \N 6113363 2025-03-26 05:55:04.882 2025-03-26 05:55:04.882 69300 TIP 443577 19403 \N \N 6113372 2025-03-26 05:55:16.2 2025-03-26 05:55:16.2 6300 FEE 443603 20059 \N \N 6113373 2025-03-26 05:55:16.2 2025-03-26 05:55:16.2 56700 TIP 443603 9084 \N \N 6113393 2025-03-26 05:57:24.983 2025-03-26 05:57:24.983 5000 FEE 443602 9843 \N \N 6113394 2025-03-26 05:57:24.983 2025-03-26 05:57:24.983 45000 TIP 443602 16348 \N \N 6113398 2025-03-26 05:57:46.212 2025-03-26 05:57:46.212 1000 FEE 443611 15147 \N \N 6113412 2025-03-26 05:58:42.91 2025-03-26 05:58:42.91 1000 FEE 443613 17891 \N \N 6113413 2025-03-26 05:58:44.579 2025-03-26 05:58:44.579 1000 FEE 443614 770 \N \N 6113422 2025-03-26 05:59:26.277 2025-03-26 05:59:26.277 100 FEE 443545 708 \N \N 6113423 2025-03-26 05:59:26.277 2025-03-26 05:59:26.277 900 TIP 443545 21365 \N \N 6113430 2025-03-26 05:59:42.364 2025-03-26 05:59:42.364 100000 FEE 443617 7667 \N \N 6113431 2025-03-26 06:00:02.062 2025-03-26 06:00:02.062 1100 FEE 443100 1806 \N \N 6113432 2025-03-26 06:00:02.062 2025-03-26 06:00:02.062 9900 TIP 443100 1064 \N \N 6113451 2025-03-26 06:01:02.185 2025-03-26 06:01:02.185 2100 FEE 443577 1136 \N \N 6113452 2025-03-26 06:01:02.185 2025-03-26 06:01:02.185 18900 TIP 443577 1082 \N \N 6113490 2025-03-26 06:01:54.6 2025-03-26 06:01:54.6 3100 FEE 443592 2741 \N \N 6113491 2025-03-26 06:01:54.6 2025-03-26 06:01:54.6 27900 TIP 443592 21422 \N \N 6113494 2025-03-26 06:02:06.149 2025-03-26 06:02:06.149 1700 FEE 443616 2196 \N \N 6113495 2025-03-26 06:02:06.149 2025-03-26 06:02:06.149 15300 TIP 443616 14255 \N \N 6113518 2025-03-26 06:03:02.862 2025-03-26 06:03:02.862 100 FEE 443602 9450 \N \N 6113519 2025-03-26 06:03:02.862 2025-03-26 06:03:02.862 900 TIP 443602 1800 \N \N 6113525 2025-03-26 06:03:09.391 2025-03-26 06:03:09.391 38400 FEE 443626 21026 \N \N 6113526 2025-03-26 06:03:09.391 2025-03-26 06:03:09.391 345600 TIP 443626 1044 \N \N 6113536 2025-03-26 06:03:21.918 2025-03-26 06:03:21.918 1000 FEE 443630 6602 \N \N 6113539 2025-03-26 06:03:24.931 2025-03-26 06:03:24.931 1000 FEE 443631 1433 \N \N 6113052 2025-03-26 05:40:10.865 2025-03-26 05:40:10.865 7700 FEE 443514 21365 \N \N 6113053 2025-03-26 05:40:10.865 2025-03-26 05:40:10.865 69300 TIP 443514 20059 \N \N 6113061 2025-03-26 05:40:21.312 2025-03-26 05:40:21.312 500 FEE 443276 16970 \N \N 6113062 2025-03-26 05:40:21.312 2025-03-26 05:40:21.312 4500 TIP 443276 20190 \N \N 6113063 2025-03-26 05:40:23.755 2025-03-26 05:40:23.755 20000 FEE 443528 18441 \N \N 6113064 2025-03-26 05:40:23.755 2025-03-26 05:40:23.755 180000 TIP 443528 17147 \N \N 6113069 2025-03-26 05:40:32.352 2025-03-26 05:40:32.352 2100 FEE 443332 17171 \N \N 6113070 2025-03-26 05:40:32.352 2025-03-26 05:40:32.352 18900 TIP 443332 1720 \N \N 6113109 2025-03-26 05:42:38.425 2025-03-26 05:42:38.425 6900 FEE 443272 17991 \N \N 6113110 2025-03-26 05:42:38.425 2025-03-26 05:42:38.425 62100 TIP 443272 1326 \N \N 6113123 2025-03-26 05:44:33.189 2025-03-26 05:44:33.189 2500 FEE 443379 699 \N \N 6113124 2025-03-26 05:44:33.189 2025-03-26 05:44:33.189 22500 TIP 443379 13365 \N \N 6113143 2025-03-26 05:45:57.464 2025-03-26 05:45:57.464 7700 FEE 443272 5703 \N \N 6113144 2025-03-26 05:45:57.464 2025-03-26 05:45:57.464 69300 TIP 443272 4624 \N \N 6113202 2025-03-26 05:46:13.458 2025-03-26 05:46:13.458 7700 FEE 443515 794 \N \N 6113203 2025-03-26 05:46:13.458 2025-03-26 05:46:13.458 69300 TIP 443515 837 \N \N 6113206 2025-03-26 05:46:13.851 2025-03-26 05:46:13.851 300 FEE 442904 21320 \N \N 6113207 2025-03-26 05:46:13.851 2025-03-26 05:46:13.851 2700 TIP 442904 15045 \N \N 6113212 2025-03-26 05:46:16.962 2025-03-26 05:46:16.962 7700 FEE 443467 14909 \N \N 6113213 2025-03-26 05:46:16.962 2025-03-26 05:46:16.962 69300 TIP 443467 20826 \N \N 6113226 2025-03-26 05:46:59.326 2025-03-26 05:46:59.326 500 FEE 443123 1047 \N \N 6113227 2025-03-26 05:46:59.326 2025-03-26 05:46:59.326 4500 TIP 443123 2347 \N \N 6113228 2025-03-26 05:47:01.945 2025-03-26 05:47:01.945 1000 FEE 443586 19488 \N \N 6113234 2025-03-26 05:47:16.708 2025-03-26 05:47:16.708 2100 FEE 443272 618 \N \N 6113235 2025-03-26 05:47:16.708 2025-03-26 05:47:16.708 18900 TIP 443272 13143 \N \N 6113238 2025-03-26 05:47:25.589 2025-03-26 05:47:25.589 2700 FEE 438678 2749 \N \N 6113239 2025-03-26 05:47:25.589 2025-03-26 05:47:25.589 24300 TIP 438678 21228 \N \N 6113246 2025-03-26 05:47:44.398 2025-03-26 05:47:44.398 1000 FEE 443587 15806 \N \N 6113283 2025-03-26 05:50:01.917 2025-03-26 05:50:01.917 2700 FEE 443319 21172 \N \N 6113284 2025-03-26 05:50:01.917 2025-03-26 05:50:01.917 24300 TIP 443319 19332 \N \N 6113287 2025-03-26 05:50:13.274 2025-03-26 05:50:13.274 1000 FEE 443592 11996 \N \N 6113300 2025-03-26 05:51:04.934 2025-03-26 05:51:04.934 1000 FEE 443583 20972 \N \N 6113301 2025-03-26 05:51:04.934 2025-03-26 05:51:04.934 9000 TIP 443583 20500 \N \N 6113302 2025-03-26 05:51:05.357 2025-03-26 05:51:05.357 1000 FEE 443594 9496 \N \N 6113323 2025-03-26 05:53:20.393 2025-03-26 05:53:20.393 3000 FEE 443593 21334 \N \N 6113324 2025-03-26 05:53:20.393 2025-03-26 05:53:20.393 27000 TIP 443593 21058 \N \N 6113341 2025-03-26 05:54:13.544 2025-03-26 05:54:13.544 90000 FEE 443583 16284 \N \N 6113342 2025-03-26 05:54:13.544 2025-03-26 05:54:13.544 810000 TIP 443583 20019 \N \N 6113377 2025-03-26 05:55:34.304 2025-03-26 05:55:34.304 1000 FEE 443606 7877 \N \N 6113433 2025-03-26 06:00:11.699 2025-03-26 06:00:11.699 1000 FEE 443618 20434 \N \N 6113443 2025-03-26 06:00:24.387 2025-03-26 06:00:24.387 0 FEE 443611 18731 \N \N 6113460 2025-03-26 06:01:18.113 2025-03-26 06:01:18.113 7700 FEE 443617 19094 \N \N 6113461 2025-03-26 06:01:18.113 2025-03-26 06:01:18.113 69300 TIP 443617 18901 \N \N 6113472 2025-03-26 06:01:19.306 2025-03-26 06:01:19.306 7700 FEE 443617 5003 \N \N 6113473 2025-03-26 06:01:19.306 2025-03-26 06:01:19.306 69300 TIP 443617 766 \N \N 6113486 2025-03-26 06:01:21.097 2025-03-26 06:01:21.097 7700 FEE 443617 2718 \N \N 6113487 2025-03-26 06:01:21.097 2025-03-26 06:01:21.097 69300 TIP 443617 11220 \N \N 6113507 2025-03-26 06:02:21.908 2025-03-26 06:02:21.908 1000 FEE 443624 21287 \N \N 6113523 2025-03-26 06:03:08.849 2025-03-26 06:03:08.849 2100 FEE 443623 900 \N \N 6113524 2025-03-26 06:03:08.849 2025-03-26 06:03:08.849 18900 TIP 443623 910 \N \N 6113542 2025-03-26 06:03:35.628 2025-03-26 06:03:35.628 1000 FEE 443116 20094 \N \N 6113543 2025-03-26 06:03:35.628 2025-03-26 06:03:35.628 9000 TIP 443116 7809 \N \N 6113557 2025-03-26 06:04:05.601 2025-03-26 06:04:05.601 1000 FEE 443636 21400 \N \N 6113558 2025-03-26 06:04:09.991 2025-03-26 06:04:09.991 100 FEE 443541 1162 \N \N 6113559 2025-03-26 06:04:09.991 2025-03-26 06:04:09.991 900 TIP 443541 20198 \N \N 6113575 2025-03-26 06:04:16.746 2025-03-26 06:04:16.746 100 FEE 443531 21131 \N \N 6113576 2025-03-26 06:04:16.746 2025-03-26 06:04:16.746 900 TIP 443531 21585 \N \N 6113594 2025-03-26 06:04:45.548 2025-03-26 06:04:45.548 100 FEE 443629 12516 \N \N 6113595 2025-03-26 06:04:45.548 2025-03-26 06:04:45.548 900 TIP 443629 16970 \N \N 6113599 2025-03-26 06:04:56.273 2025-03-26 06:04:56.273 900 FEE 443372 2724 \N \N 6113600 2025-03-26 06:04:56.273 2025-03-26 06:04:56.273 8100 TIP 443372 18731 \N \N 6113607 2025-03-26 06:05:12.588 2025-03-26 06:05:12.588 1000 FEE 443643 16284 \N \N 6113611 2025-03-26 06:05:29.814 2025-03-26 06:05:29.814 3400 FEE 443617 10013 \N \N 6113612 2025-03-26 06:05:29.814 2025-03-26 06:05:29.814 30600 TIP 443617 8269 \N \N 6046007 2025-03-20 08:58:12.209 2025-03-20 08:58:12.209 5000 FEE 436197 623 \N \N 6046008 2025-03-20 08:58:12.209 2025-03-20 08:58:12.209 45000 TIP 436197 20861 \N \N 6046016 2025-03-20 08:59:24.242 2025-03-20 08:59:24.242 1000 FEE 436505 9169 \N \N 6046032 2025-03-20 09:00:34.579 2025-03-20 09:00:34.579 1000 FEE 436466 1002 \N \N 6046033 2025-03-20 09:00:34.579 2025-03-20 09:00:34.579 9000 TIP 436466 14489 \N \N 6046061 2025-03-20 09:04:11.301 2025-03-20 09:04:11.301 200 FEE 436508 2016 \N \N 6046062 2025-03-20 09:04:11.301 2025-03-20 09:04:11.301 1800 TIP 436508 10731 \N \N 6046078 2025-03-20 09:04:43.196 2025-03-20 09:04:43.196 900 FEE 436440 2670 \N \N 6046079 2025-03-20 09:04:43.196 2025-03-20 09:04:43.196 8100 TIP 436440 775 \N \N 6046083 2025-03-20 09:05:13.729 2025-03-20 09:05:13.729 100 FEE 436397 4118 \N \N 6046084 2025-03-20 09:05:13.729 2025-03-20 09:05:13.729 900 TIP 436397 10821 \N \N 6046101 2025-03-20 09:05:24.21 2025-03-20 09:05:24.21 2300 FEE 436505 1038 \N \N 6046102 2025-03-20 09:05:24.21 2025-03-20 09:05:24.21 20700 TIP 436505 993 \N \N 6046103 2025-03-20 09:05:24.378 2025-03-20 09:05:24.378 2300 FEE 436505 18901 \N \N 6046104 2025-03-20 09:05:24.378 2025-03-20 09:05:24.378 20700 TIP 436505 14657 \N \N 6046160 2025-03-20 09:07:09.681 2025-03-20 09:07:09.681 2100 FEE 436508 11999 \N \N 6046161 2025-03-20 09:07:09.681 2025-03-20 09:07:09.681 18900 TIP 436508 1092 \N \N 6046099 2025-03-20 09:05:24.07 2025-03-20 09:05:24.07 2300 FEE 436505 21734 \N \N 6046100 2025-03-20 09:05:24.07 2025-03-20 09:05:24.07 20700 TIP 436505 19469 \N \N 6046105 2025-03-20 09:05:24.545 2025-03-20 09:05:24.545 2300 FEE 436505 21670 \N \N 6046106 2025-03-20 09:05:24.545 2025-03-20 09:05:24.545 20700 TIP 436505 20922 \N \N 6046107 2025-03-20 09:05:28.346 2025-03-20 09:05:28.346 100 FEE 436417 19531 \N \N 6046108 2025-03-20 09:05:28.346 2025-03-20 09:05:28.346 900 TIP 436417 11716 \N \N 6046113 2025-03-20 09:06:11.897 2025-03-20 09:06:11.897 4200 FEE 436508 1286 \N \N 6046114 2025-03-20 09:06:11.897 2025-03-20 09:06:11.897 37800 TIP 436508 13100 \N \N 6046134 2025-03-20 09:07:03.359 2025-03-20 09:07:03.359 2300 FEE 436493 12562 \N \N 6046135 2025-03-20 09:07:03.359 2025-03-20 09:07:03.359 20700 TIP 436493 16653 \N \N 6046154 2025-03-20 09:07:08.648 2025-03-20 09:07:08.648 2100 FEE 436508 644 \N \N 6046155 2025-03-20 09:07:08.648 2025-03-20 09:07:08.648 18900 TIP 436508 21520 \N \N 6046194 2025-03-20 09:07:35.793 2025-03-20 09:07:35.793 2300 FEE 436493 19537 \N \N 6046195 2025-03-20 09:07:35.793 2025-03-20 09:07:35.793 20700 TIP 436493 1985 \N \N 6046196 2025-03-20 09:07:35.963 2025-03-20 09:07:35.963 2300 FEE 436493 17693 \N \N 6046197 2025-03-20 09:07:35.963 2025-03-20 09:07:35.963 20700 TIP 436493 17638 \N \N 6046218 2025-03-20 09:07:39.584 2025-03-20 09:07:39.584 2300 FEE 436493 16956 \N \N 6046219 2025-03-20 09:07:39.584 2025-03-20 09:07:39.584 20700 TIP 436493 21212 \N \N 6046220 2025-03-20 09:07:39.729 2025-03-20 09:07:39.729 2300 FEE 436493 21145 \N \N 6046221 2025-03-20 09:07:39.729 2025-03-20 09:07:39.729 20700 TIP 436493 618 \N \N 6046240 2025-03-20 09:07:41.964 2025-03-20 09:07:41.964 2300 FEE 436493 17201 \N \N 6046241 2025-03-20 09:07:41.964 2025-03-20 09:07:41.964 20700 TIP 436493 4167 \N \N 6046276 2025-03-20 09:07:47.931 2025-03-20 09:07:47.931 21000 FEE 436508 20094 \N \N 6046277 2025-03-20 09:07:47.931 2025-03-20 09:07:47.931 189000 TIP 436508 811 \N \N 6046295 2025-03-20 09:11:04.653 2025-03-20 09:11:04.653 2300 FEE 436514 4064 \N \N 6046296 2025-03-20 09:11:04.653 2025-03-20 09:11:04.653 20700 TIP 436514 21709 \N \N 6046313 2025-03-20 09:11:08.259 2025-03-20 09:11:08.259 6900 FEE 436514 654 \N \N 6046314 2025-03-20 09:11:08.259 2025-03-20 09:11:08.259 62100 TIP 436514 9177 \N \N 6046316 2025-03-20 09:11:44.475 2025-03-20 09:11:44.475 100 FEE 436178 646 \N \N 6046317 2025-03-20 09:11:44.475 2025-03-20 09:11:44.475 900 TIP 436178 15690 \N \N 6046327 2025-03-20 09:13:04.442 2025-03-20 09:13:04.442 1000 FEE 436508 1836 \N \N 6046328 2025-03-20 09:13:04.442 2025-03-20 09:13:04.442 9000 TIP 436508 5112 \N \N 6046333 2025-03-20 09:13:05.83 2025-03-20 09:13:05.83 1000 FEE 436508 2514 \N \N 6046334 2025-03-20 09:13:05.83 2025-03-20 09:13:05.83 9000 TIP 436508 20577 \N \N 6046335 2025-03-20 09:13:07.453 2025-03-20 09:13:07.453 1000 FEE 436508 21408 \N \N 6046336 2025-03-20 09:13:07.453 2025-03-20 09:13:07.453 9000 TIP 436508 19906 \N \N 6046338 2025-03-20 09:13:07.762 2025-03-20 09:13:07.762 1000 FEE 436508 21067 \N \N 6046339 2025-03-20 09:13:07.762 2025-03-20 09:13:07.762 9000 TIP 436508 19796 \N \N 6046359 2025-03-20 09:15:05.344 2025-03-20 09:15:05.344 2100 FEE 436444 19796 \N \N 6046360 2025-03-20 09:15:05.344 2025-03-20 09:15:05.344 18900 TIP 436444 9349 \N \N 6046367 2025-03-20 09:17:01.768 2025-03-20 09:17:01.768 0 FEE 436519 16354 \N \N 6046368 2025-03-20 09:17:10.157 2025-03-20 09:17:10.157 2100 FEE 436508 768 \N \N 6046369 2025-03-20 09:17:10.157 2025-03-20 09:17:10.157 18900 TIP 436508 21398 \N \N 6046379 2025-03-20 09:19:39.358 2025-03-20 09:19:39.358 1000 FEE 436521 15139 \N \N 6046440 2025-03-20 09:23:44.735 2025-03-20 09:23:44.735 4200 FEE 436435 627 \N \N 6046441 2025-03-20 09:23:44.735 2025-03-20 09:23:44.735 37800 TIP 436435 12911 \N \N 6046458 2025-03-20 09:25:33.938 2025-03-20 09:25:33.938 2100 FEE 434197 7983 \N \N 6046459 2025-03-20 09:25:33.938 2025-03-20 09:25:33.938 18900 TIP 434197 9921 \N \N 6046465 2025-03-20 09:25:40.955 2025-03-20 09:25:40.955 100 FEE 436492 897 \N \N 6046466 2025-03-20 09:25:40.955 2025-03-20 09:25:40.955 900 TIP 436492 12097 \N \N 6046493 2025-03-20 09:28:10.98 2025-03-20 09:28:10.98 1000 FEE 436528 1124 \N \N 6046530 2025-03-20 09:30:32.234 2025-03-20 09:30:32.234 1000 FEE 436327 5036 \N \N 6046531 2025-03-20 09:30:32.234 2025-03-20 09:30:32.234 9000 TIP 436327 17091 \N \N 6046532 2025-03-20 09:30:36.646 2025-03-20 09:30:36.646 10000 FEE 436530 5069 \N \N 6046553 2025-03-20 09:30:54.889 2025-03-20 09:30:54.889 500 FEE 436246 1468 \N \N 6046554 2025-03-20 09:30:54.889 2025-03-20 09:30:54.889 4500 TIP 436246 726 \N \N 6046616 2025-03-20 09:37:10.605 2025-03-20 09:37:10.605 2100 FEE 436523 2537 \N \N 6046617 2025-03-20 09:37:10.605 2025-03-20 09:37:10.605 18900 TIP 436523 1658 \N \N 6046619 2025-03-20 09:37:40.513 2025-03-20 09:37:40.513 1000 FEE 436543 20891 \N \N 6046620 2025-03-20 09:37:58.443 2025-03-20 09:37:58.443 1000 FEE 436544 21539 \N \N 6046622 2025-03-20 09:38:25.833 2025-03-20 09:38:25.833 0 FEE 436543 21214 \N \N 6046630 2025-03-20 09:39:20.417 2025-03-20 09:39:20.417 2100 FEE 436530 12656 \N \N 6046631 2025-03-20 09:39:20.417 2025-03-20 09:39:20.417 18900 TIP 436530 9363 \N \N 6046632 2025-03-20 09:39:22.006 2025-03-20 09:39:22.006 0 FEE 436545 2543 \N \N 6046633 2025-03-20 09:39:38.273 2025-03-20 09:39:38.273 0 FEE 436545 12422 \N \N 6046643 2025-03-20 09:40:56.171 2025-03-20 09:40:56.171 97000 FEE 436549 20717 \N \N 6046646 2025-03-20 09:41:30.895 2025-03-20 09:41:30.895 1000 FEE 436549 1632 \N \N 6046647 2025-03-20 09:41:30.895 2025-03-20 09:41:30.895 9000 TIP 436549 20280 \N \N 6046648 2025-03-20 09:41:31.333 2025-03-20 09:41:31.333 1000 FEE 436549 20911 \N \N 6046649 2025-03-20 09:41:31.333 2025-03-20 09:41:31.333 9000 TIP 436549 616 \N \N 6046657 2025-03-20 09:42:07.992 2025-03-20 09:42:07.992 2100 FEE 436527 3304 \N \N 6046658 2025-03-20 09:42:07.992 2025-03-20 09:42:07.992 18900 TIP 436527 1008 \N \N 6046660 2025-03-20 09:42:37.06 2025-03-20 09:42:37.06 21000 DONT_LIKE_THIS 436499 2309 \N \N 6046109 2025-03-20 09:05:28.558 2025-03-20 09:05:28.558 900 FEE 436417 12334 \N \N 6046110 2025-03-20 09:05:28.558 2025-03-20 09:05:28.558 8100 TIP 436417 21271 \N \N 6046112 2025-03-20 09:05:51.055 2025-03-20 09:05:51.055 0 FEE 436508 641 \N \N 6046124 2025-03-20 09:07:01.246 2025-03-20 09:07:01.246 2300 FEE 436493 666 \N \N 6046125 2025-03-20 09:07:01.246 2025-03-20 09:07:01.246 20700 TIP 436493 11450 \N \N 6046130 2025-03-20 09:07:03.025 2025-03-20 09:07:03.025 2300 FEE 436493 1012 \N \N 6046131 2025-03-20 09:07:03.025 2025-03-20 09:07:03.025 20700 TIP 436493 2963 \N \N 6046144 2025-03-20 09:07:04.45 2025-03-20 09:07:04.45 2300 FEE 436493 19980 \N \N 6046145 2025-03-20 09:07:04.45 2025-03-20 09:07:04.45 20700 TIP 436493 1505 \N \N 6046148 2025-03-20 09:07:04.816 2025-03-20 09:07:04.816 2300 FEE 436493 11423 \N \N 6046149 2025-03-20 09:07:04.816 2025-03-20 09:07:04.816 20700 TIP 436493 638 \N \N 6046152 2025-03-20 09:07:05.334 2025-03-20 09:07:05.334 2300 FEE 436493 1389 \N \N 6046153 2025-03-20 09:07:05.334 2025-03-20 09:07:05.334 20700 TIP 436493 16988 \N \N 6046170 2025-03-20 09:07:33.074 2025-03-20 09:07:33.074 4600 FEE 436493 5036 \N \N 6046171 2025-03-20 09:07:33.074 2025-03-20 09:07:33.074 41400 TIP 436493 9906 \N \N 6046204 2025-03-20 09:07:36.835 2025-03-20 09:07:36.835 2300 FEE 436493 19263 \N \N 6046205 2025-03-20 09:07:36.835 2025-03-20 09:07:36.835 20700 TIP 436493 8245 \N \N 6046222 2025-03-20 09:07:39.908 2025-03-20 09:07:39.908 2300 FEE 436493 9171 \N \N 6046223 2025-03-20 09:07:39.908 2025-03-20 09:07:39.908 20700 TIP 436493 19346 \N \N 6046244 2025-03-20 09:07:42.296 2025-03-20 09:07:42.296 2300 FEE 436493 9295 \N \N 6046245 2025-03-20 09:07:42.296 2025-03-20 09:07:42.296 20700 TIP 436493 2722 \N \N 6046280 2025-03-20 09:08:44.296 2025-03-20 09:08:44.296 100 FEE 436494 21037 \N \N 6046281 2025-03-20 09:08:44.296 2025-03-20 09:08:44.296 900 TIP 436494 21373 \N \N 6046301 2025-03-20 09:11:05.73 2025-03-20 09:11:05.73 2300 FEE 436514 14357 \N \N 6046302 2025-03-20 09:11:05.73 2025-03-20 09:11:05.73 20700 TIP 436514 5661 \N \N 6046319 2025-03-20 09:12:20.993 2025-03-20 09:12:20.993 1000 FEE 436517 17722 \N \N 6046329 2025-03-20 09:13:05.528 2025-03-20 09:13:05.528 1000 FEE 436508 6526 \N \N 6046330 2025-03-20 09:13:05.528 2025-03-20 09:13:05.528 9000 TIP 436508 16543 \N \N 6046344 2025-03-20 09:13:12.786 2025-03-20 09:13:12.786 2100 FEE 436337 14452 \N \N 6046345 2025-03-20 09:13:12.786 2025-03-20 09:13:12.786 18900 TIP 436337 19668 \N \N 6046361 2025-03-20 09:15:05.591 2025-03-20 09:15:05.591 2100 FEE 436444 925 \N \N 6046362 2025-03-20 09:15:05.591 2025-03-20 09:15:05.591 18900 TIP 436444 10016 \N \N 6046371 2025-03-20 09:17:54.242 2025-03-20 09:17:54.242 30000 FEE 436459 21047 \N \N 6046372 2025-03-20 09:17:54.242 2025-03-20 09:17:54.242 270000 TIP 436459 5757 \N \N 6046373 2025-03-20 09:17:54.647 2025-03-20 09:17:54.647 30000 FEE 436459 2195 \N \N 6046374 2025-03-20 09:17:54.647 2025-03-20 09:17:54.647 270000 TIP 436459 18271 \N \N 6046383 2025-03-20 09:19:51.473 2025-03-20 09:19:51.473 10000 FEE 436523 1960 \N \N 6046399 2025-03-20 09:20:55.68 2025-03-20 09:20:55.68 1000 FEE 436524 7097 \N \N 6046451 2025-03-20 09:25:05.976 2025-03-20 09:25:05.976 100 FEE 436512 18557 \N \N 6046452 2025-03-20 09:25:05.976 2025-03-20 09:25:05.976 900 TIP 436512 1438 \N \N 6046455 2025-03-20 09:25:06.911 2025-03-20 09:25:06.911 100 FEE 436512 4173 \N \N 6046456 2025-03-20 09:25:06.911 2025-03-20 09:25:06.911 900 TIP 436512 20614 \N \N 6046471 2025-03-20 09:25:51.884 2025-03-20 09:25:51.884 8300 FEE 436493 19888 \N \N 6046472 2025-03-20 09:25:51.884 2025-03-20 09:25:51.884 74700 TIP 436493 20680 \N \N 6046517 2025-03-20 09:28:17.018 2025-03-20 09:28:17.018 100 FEE 436493 16680 \N \N 6046518 2025-03-20 09:28:17.018 2025-03-20 09:28:17.018 900 TIP 436493 18177 \N \N 6046548 2025-03-20 09:30:44.52 2025-03-20 09:30:44.52 500 FEE 436518 722 \N \N 6046549 2025-03-20 09:30:44.52 2025-03-20 09:30:44.52 4500 TIP 436518 762 \N \N 6046598 2025-03-20 09:34:10.489 2025-03-20 09:34:10.489 3300 FEE 436509 16513 \N \N 6046599 2025-03-20 09:34:10.489 2025-03-20 09:34:10.489 29700 TIP 436509 20852 \N \N 6046600 2025-03-20 09:34:10.766 2025-03-20 09:34:10.766 3300 FEE 436509 16193 \N \N 6046601 2025-03-20 09:34:10.766 2025-03-20 09:34:10.766 29700 TIP 436509 4166 \N \N 6046605 2025-03-20 09:34:20.177 2025-03-20 09:34:20.177 0 FEE 436531 5069 \N \N 6046610 2025-03-20 09:35:13.32 2025-03-20 09:35:13.32 100000 FEE 436540 19126 \N \N 6046623 2025-03-20 09:38:50.836 2025-03-20 09:38:50.836 0 FEE 436543 895 \N \N 6046634 2025-03-20 09:39:47.352 2025-03-20 09:39:47.352 1000 FEE 436534 17710 \N \N 6046635 2025-03-20 09:39:47.352 2025-03-20 09:39:47.352 9000 TIP 436534 2326 \N \N 6046669 2025-03-20 09:45:39.601 2025-03-20 09:45:39.601 500 FEE 436548 21247 \N \N 6046670 2025-03-20 09:45:39.601 2025-03-20 09:45:39.601 4500 TIP 436548 617 \N \N 6046685 2025-03-20 09:46:58.97 2025-03-20 09:46:58.97 100 FEE 436488 21803 \N \N 6046686 2025-03-20 09:46:58.97 2025-03-20 09:46:58.97 900 TIP 436488 9796 \N \N 6046687 2025-03-20 09:47:03.121 2025-03-20 09:47:03.121 100 FEE 436490 4776 \N \N 6046688 2025-03-20 09:47:03.121 2025-03-20 09:47:03.121 900 TIP 436490 15843 \N \N 6046723 2025-03-20 09:50:12.079 2025-03-20 09:50:12.079 1000 FEE 436355 20117 \N \N 6046724 2025-03-20 09:50:12.079 2025-03-20 09:50:12.079 9000 TIP 436355 651 \N \N 6046736 2025-03-20 09:51:01.096 2025-03-20 09:51:01.096 1000 FEE 436466 11454 \N \N 6046737 2025-03-20 09:51:01.096 2025-03-20 09:51:01.096 9000 TIP 436466 4388 \N \N 6046738 2025-03-20 09:51:09.757 2025-03-20 09:51:09.757 1000 FEE 436554 11862 \N \N 6046757 2025-03-20 09:53:34.827 2025-03-20 09:53:34.827 2100 FEE 431655 5904 \N \N 6046758 2025-03-20 09:53:34.827 2025-03-20 09:53:34.827 18900 TIP 431655 21402 \N \N 6046759 2025-03-20 09:53:53.276 2025-03-20 09:53:53.276 1000 FEE 436555 10719 \N \N 6046760 2025-03-20 09:53:53.276 2025-03-20 09:53:53.276 9000 TIP 436555 20924 \N \N 6046800 2025-03-20 09:58:25.423 2025-03-20 09:58:25.423 2100 FEE 436412 4862 \N \N 6046801 2025-03-20 09:58:25.423 2025-03-20 09:58:25.423 18900 TIP 436412 16042 \N \N 6046834 2025-03-20 10:02:54.663 2025-03-20 10:02:54.663 2100 FEE 435944 15762 \N \N 6046835 2025-03-20 10:02:54.663 2025-03-20 10:02:54.663 18900 TIP 435944 10944 \N \N 6046890 2025-03-20 10:08:33.102 2025-03-20 10:08:33.102 2300 FEE 436499 18068 \N \N 6046891 2025-03-20 10:08:33.102 2025-03-20 10:08:33.102 20700 TIP 436499 1495 \N \N 6046915 2025-03-20 10:09:32.733 2025-03-20 10:09:32.733 5000 FEE 436556 11153 \N \N 6046916 2025-03-20 10:09:32.733 2025-03-20 10:09:32.733 45000 TIP 436556 12334 \N \N 6046919 2025-03-20 10:09:54.507 2025-03-20 10:09:54.507 8300 FEE 436566 977 \N \N 6046920 2025-03-20 10:09:54.507 2025-03-20 10:09:54.507 74700 TIP 436566 2710 \N \N 6046929 2025-03-20 10:09:55.031 2025-03-20 10:09:55.031 8300 FEE 436566 9159 \N \N 6046930 2025-03-20 10:09:55.031 2025-03-20 10:09:55.031 74700 TIP 436566 9669 \N \N 6046956 2025-03-20 10:10:37.586 2025-03-20 10:10:37.586 1000 FEE 436562 4768 \N \N 6046957 2025-03-20 10:10:37.586 2025-03-20 10:10:37.586 9000 TIP 436562 11443 \N \N 6046969 2025-03-20 10:11:14.795 2025-03-20 10:11:14.795 1100 FEE 385935 4654 \N \N 6046970 2025-03-20 10:11:14.795 2025-03-20 10:11:14.795 9900 TIP 385935 19193 \N \N 6046987 2025-03-20 10:11:16.321 2025-03-20 10:11:16.321 1100 FEE 385935 8570 \N \N 6046988 2025-03-20 10:11:16.321 2025-03-20 10:11:16.321 9900 TIP 385935 1823 \N \N 6046997 2025-03-20 10:12:28.116 2025-03-20 10:12:28.116 100000 FEE 436574 2748 \N \N 6047009 2025-03-20 10:14:16.032 2025-03-20 10:14:16.032 1000 FEE 436561 17568 \N \N 6047010 2025-03-20 10:14:16.032 2025-03-20 10:14:16.032 9000 TIP 436561 999 \N \N 6047063 2025-03-20 10:24:32.076 2025-03-20 10:24:32.076 1000 POLL 436323 20663 \N \N 6047082 2025-03-20 10:31:59.796 2025-03-20 10:31:59.796 1000 FEE 436572 985 \N \N 6047083 2025-03-20 10:31:59.796 2025-03-20 10:31:59.796 9000 TIP 436572 21212 \N \N 6047090 2025-03-20 10:33:42.975 2025-03-20 10:33:42.975 1000 FEE 436511 19375 \N \N 6047091 2025-03-20 10:33:42.975 2025-03-20 10:33:42.975 9000 TIP 436511 640 \N \N 6047114 2025-03-20 10:40:51.439 2025-03-20 10:40:51.439 3000 FEE 436583 13544 \N \N 6047115 2025-03-20 10:40:51.439 2025-03-20 10:40:51.439 27000 TIP 436583 21391 \N \N 6047126 2025-03-20 10:42:02.526 2025-03-20 10:42:02.526 1000 FEE 435820 16289 \N \N 6047127 2025-03-20 10:42:02.526 2025-03-20 10:42:02.526 9000 TIP 435820 18449 \N \N 6047156 2025-03-20 10:46:37.316 2025-03-20 10:46:37.316 2100 FEE 436507 16653 \N \N 6047157 2025-03-20 10:46:37.316 2025-03-20 10:46:37.316 18900 TIP 436507 17592 \N \N 6047159 2025-03-20 10:47:44.652 2025-03-20 10:47:44.652 1000 FEE 436326 18529 \N \N 6046176 2025-03-20 09:07:33.866 2025-03-20 09:07:33.866 2300 FEE 436493 15662 \N \N 6046177 2025-03-20 09:07:33.866 2025-03-20 09:07:33.866 20700 TIP 436493 17209 \N \N 6046178 2025-03-20 09:07:34.025 2025-03-20 09:07:34.025 2300 FEE 436493 11523 \N \N 6046179 2025-03-20 09:07:34.025 2025-03-20 09:07:34.025 20700 TIP 436493 21275 \N \N 6046236 2025-03-20 09:07:41.733 2025-03-20 09:07:41.733 2300 FEE 436493 18430 \N \N 6046237 2025-03-20 09:07:41.733 2025-03-20 09:07:41.733 20700 TIP 436493 12072 \N \N 6046252 2025-03-20 09:07:43.248 2025-03-20 09:07:43.248 2300 FEE 436493 18330 \N \N 6046253 2025-03-20 09:07:43.248 2025-03-20 09:07:43.248 20700 TIP 436493 21814 \N \N 6046264 2025-03-20 09:07:44.235 2025-03-20 09:07:44.235 2300 FEE 436493 20185 \N \N 6046265 2025-03-20 09:07:44.235 2025-03-20 09:07:44.235 20700 TIP 436493 937 \N \N 6046282 2025-03-20 09:08:46.775 2025-03-20 09:08:46.775 210000 FEE 436514 720 \N \N 6046321 2025-03-20 09:13:03.816 2025-03-20 09:13:03.816 1000 FEE 436508 11263 \N \N 6046322 2025-03-20 09:13:03.816 2025-03-20 09:13:03.816 9000 TIP 436508 18608 \N \N 6046347 2025-03-20 09:13:20.078 2025-03-20 09:13:20.078 0 FEE 436519 18731 \N \N 6046402 2025-03-20 09:20:56.148 2025-03-20 09:20:56.148 1000 FEE 436504 11423 \N \N 6046403 2025-03-20 09:20:56.148 2025-03-20 09:20:56.148 9000 TIP 436504 16684 \N \N 6046406 2025-03-20 09:20:56.587 2025-03-20 09:20:56.587 1000 FEE 436504 1833 \N \N 6046407 2025-03-20 09:20:56.587 2025-03-20 09:20:56.587 9000 TIP 436504 19459 \N \N 6046408 2025-03-20 09:20:56.67 2025-03-20 09:20:56.67 1000 FEE 436504 5455 \N \N 6046409 2025-03-20 09:20:56.67 2025-03-20 09:20:56.67 9000 TIP 436504 4345 \N \N 6046410 2025-03-20 09:20:56.886 2025-03-20 09:20:56.886 1000 FEE 436504 7818 \N \N 6046411 2025-03-20 09:20:56.886 2025-03-20 09:20:56.886 9000 TIP 436504 7903 \N \N 6046416 2025-03-20 09:20:57.547 2025-03-20 09:20:57.547 1000 FEE 436504 20623 \N \N 6046417 2025-03-20 09:20:57.547 2025-03-20 09:20:57.547 9000 TIP 436504 9426 \N \N 6046433 2025-03-20 09:21:34.17 2025-03-20 09:21:34.17 3000 FEE 436241 17552 \N \N 6046434 2025-03-20 09:21:34.17 2025-03-20 09:21:34.17 27000 TIP 436241 19199 \N \N 6046473 2025-03-20 09:25:56.482 2025-03-20 09:25:56.482 100 FEE 436433 20775 \N \N 6046474 2025-03-20 09:25:56.482 2025-03-20 09:25:56.482 900 TIP 436433 21242 \N \N 6046475 2025-03-20 09:25:57.045 2025-03-20 09:25:57.045 100 FEE 436433 9669 \N \N 6046476 2025-03-20 09:25:57.045 2025-03-20 09:25:57.045 900 TIP 436433 11158 \N \N 6046540 2025-03-20 09:30:42.439 2025-03-20 09:30:42.439 1000 FEE 436324 5500 \N \N 6046541 2025-03-20 09:30:42.439 2025-03-20 09:30:42.439 9000 TIP 436324 14357 \N \N 6046551 2025-03-20 09:30:54.653 2025-03-20 09:30:54.653 1000 FEE 436292 8469 \N \N 6046552 2025-03-20 09:30:54.653 2025-03-20 09:30:54.653 9000 TIP 436292 17526 \N \N 6046586 2025-03-20 09:32:46.687 2025-03-20 09:32:46.687 1000 FEE 436343 1060 \N \N 6046587 2025-03-20 09:32:46.687 2025-03-20 09:32:46.687 9000 TIP 436343 21021 \N \N 6046606 2025-03-20 09:34:47.657 2025-03-20 09:34:47.657 1000 FEE 436538 11378 \N \N 6046607 2025-03-20 09:34:58.596 2025-03-20 09:34:58.596 1000 FEE 436539 16753 \N \N 6046612 2025-03-20 09:36:15.656 2025-03-20 09:36:15.656 1000 FEE 436541 17727 \N \N 6046626 2025-03-20 09:39:14.629 2025-03-20 09:39:14.629 1000 FEE 436546 1959 \N \N 6046655 2025-03-20 09:41:32.492 2025-03-20 09:41:32.492 1000 FEE 436549 11999 \N \N 6046656 2025-03-20 09:41:32.492 2025-03-20 09:41:32.492 9000 TIP 436549 5590 \N \N 6046663 2025-03-20 09:44:34.266 2025-03-20 09:44:34.266 2100 FEE 436382 18351 \N \N 6046664 2025-03-20 09:44:34.266 2025-03-20 09:44:34.266 18900 TIP 436382 6361 \N \N 6046689 2025-03-20 09:47:11.142 2025-03-20 09:47:11.142 100 FEE 436495 21791 \N \N 6046690 2025-03-20 09:47:11.142 2025-03-20 09:47:11.142 900 TIP 436495 1352 \N \N 6046693 2025-03-20 09:47:33.184 2025-03-20 09:47:33.184 2100 FEE 436493 1044 \N \N 6046694 2025-03-20 09:47:33.184 2025-03-20 09:47:33.184 18900 TIP 436493 3686 \N \N 6046697 2025-03-20 09:47:41 2025-03-20 09:47:41 2100 FEE 436413 1298 \N \N 6046698 2025-03-20 09:47:41 2025-03-20 09:47:41 18900 TIP 436413 17221 \N \N 6046734 2025-03-20 09:51:00.507 2025-03-20 09:51:00.507 1000 FEE 436466 11515 \N \N 6046735 2025-03-20 09:51:00.507 2025-03-20 09:51:00.507 9000 TIP 436466 7903 \N \N 6046745 2025-03-20 09:51:51.237 2025-03-20 09:51:51.237 1100 FEE 430208 837 \N \N 6046746 2025-03-20 09:51:51.237 2025-03-20 09:51:51.237 9900 TIP 430208 19537 \N \N 6046827 2025-03-20 10:02:43.354 2025-03-20 10:02:43.354 1000 FEE 436563 739 \N \N 6046845 2025-03-20 10:04:08.983 2025-03-20 10:04:08.983 2100 FEE 436136 1617 \N \N 6046846 2025-03-20 10:04:08.983 2025-03-20 10:04:08.983 18900 TIP 436136 6749 \N \N 6046850 2025-03-20 10:05:10.162 2025-03-20 10:05:10.162 2100 FEE 436307 21444 \N \N 6046851 2025-03-20 10:05:10.162 2025-03-20 10:05:10.162 18900 TIP 436307 16301 \N \N 6046855 2025-03-20 10:05:28.565 2025-03-20 10:05:28.565 1000 FEE 436484 1009 \N \N 6046856 2025-03-20 10:05:28.565 2025-03-20 10:05:28.565 9000 TIP 436484 6268 \N \N 6046877 2025-03-20 10:07:57.506 2025-03-20 10:07:57.506 3000 FEE 436567 19663 \N \N 6046878 2025-03-20 10:07:57.506 2025-03-20 10:07:57.506 27000 TIP 436567 21421 \N \N 6046882 2025-03-20 10:08:32.511 2025-03-20 10:08:32.511 2300 FEE 436499 20892 \N \N 6046883 2025-03-20 10:08:32.511 2025-03-20 10:08:32.511 20700 TIP 436499 19535 \N \N 6046888 2025-03-20 10:08:32.971 2025-03-20 10:08:32.971 2300 FEE 436499 19459 \N \N 6046889 2025-03-20 10:08:32.971 2025-03-20 10:08:32.971 20700 TIP 436499 1615 \N \N 6046904 2025-03-20 10:09:25.468 2025-03-20 10:09:25.468 1000 FEE 436570 21062 \N \N 6046913 2025-03-20 10:09:32.712 2025-03-20 10:09:32.712 16600 FEE 436499 19668 \N \N 6046914 2025-03-20 10:09:32.712 2025-03-20 10:09:32.712 149400 TIP 436499 16788 \N \N 6046945 2025-03-20 10:09:56.073 2025-03-20 10:09:56.073 8300 FEE 436566 1519 \N \N 6046946 2025-03-20 10:09:56.073 2025-03-20 10:09:56.073 74700 TIP 436566 1060 \N \N 6046947 2025-03-20 10:09:56.618 2025-03-20 10:09:56.618 8300 FEE 436566 12278 \N \N 6046948 2025-03-20 10:09:56.618 2025-03-20 10:09:56.618 74700 TIP 436566 16942 \N \N 6046962 2025-03-20 10:10:44.373 2025-03-20 10:10:44.373 1000 FEE 436560 20623 \N \N 6046963 2025-03-20 10:10:44.373 2025-03-20 10:10:44.373 9000 TIP 436560 2537 \N \N 6046983 2025-03-20 10:11:16.061 2025-03-20 10:11:16.061 1100 FEE 385935 21242 \N \N 6046984 2025-03-20 10:11:16.061 2025-03-20 10:11:16.061 9900 TIP 385935 5427 \N \N 6046995 2025-03-20 10:12:16.974 2025-03-20 10:12:16.974 1000 FEE 436344 12736 \N \N 6046996 2025-03-20 10:12:16.974 2025-03-20 10:12:16.974 9000 TIP 436344 1712 \N \N 6047011 2025-03-20 10:14:16.235 2025-03-20 10:14:16.235 1000 FEE 436561 2789 \N \N 6046349 2025-03-20 09:13:33.823 2025-03-20 09:13:33.823 18900 TIP 435856 9242 \N \N 6046364 2025-03-20 09:15:55.58 2025-03-20 09:15:55.58 2100 FEE 436457 2537 \N \N 6046365 2025-03-20 09:15:55.58 2025-03-20 09:15:55.58 18900 TIP 436457 8289 \N \N 6046380 2025-03-20 09:19:40.15 2025-03-20 09:19:40.15 10000 FEE 436466 21829 \N \N 6046381 2025-03-20 09:19:40.15 2025-03-20 09:19:40.15 90000 TIP 436466 2098 \N \N 6046389 2025-03-20 09:20:47.053 2025-03-20 09:20:47.053 2100 FEE 436459 15386 \N \N 6046390 2025-03-20 09:20:47.053 2025-03-20 09:20:47.053 18900 TIP 436459 17710 \N \N 6046393 2025-03-20 09:20:54.649 2025-03-20 09:20:54.649 1000 FEE 436504 4167 \N \N 6046394 2025-03-20 09:20:54.649 2025-03-20 09:20:54.649 9000 TIP 436504 9261 \N \N 6046395 2025-03-20 09:20:54.96 2025-03-20 09:20:54.96 2000 FEE 436504 18116 \N \N 6046396 2025-03-20 09:20:54.96 2025-03-20 09:20:54.96 18000 TIP 436504 18735 \N \N 6046426 2025-03-20 09:20:58.401 2025-03-20 09:20:58.401 1000 FEE 436504 9334 \N \N 6046427 2025-03-20 09:20:58.401 2025-03-20 09:20:58.401 9000 TIP 436504 1611 \N \N 6046439 2025-03-20 09:23:31.311 2025-03-20 09:23:31.311 1000 POLL 436323 21406 \N \N 6046446 2025-03-20 09:24:49.983 2025-03-20 09:24:49.983 1000 FEE 436526 21398 \N \N 6046447 2025-03-20 09:25:03.811 2025-03-20 09:25:03.811 100 FEE 436512 1737 \N \N 6046448 2025-03-20 09:25:03.811 2025-03-20 09:25:03.811 900 TIP 436512 17082 \N \N 6046460 2025-03-20 09:25:38.554 2025-03-20 09:25:38.554 1000 FEE 436527 18673 \N \N 6046479 2025-03-20 09:25:57.613 2025-03-20 09:25:57.613 100 FEE 436433 18351 \N \N 6046480 2025-03-20 09:25:57.613 2025-03-20 09:25:57.613 900 TIP 436433 2206 \N \N 6046481 2025-03-20 09:25:58.354 2025-03-20 09:25:58.354 100 FEE 436433 1985 \N \N 6046482 2025-03-20 09:25:58.354 2025-03-20 09:25:58.354 900 TIP 436433 2326 \N \N 6046486 2025-03-20 09:26:51.43 2025-03-20 09:26:51.43 1000 FEE 436426 959 \N \N 6046487 2025-03-20 09:26:51.43 2025-03-20 09:26:51.43 9000 TIP 436426 12222 \N \N 6046495 2025-03-20 09:28:14.291 2025-03-20 09:28:14.291 300 FEE 436493 11609 \N \N 6046496 2025-03-20 09:28:14.291 2025-03-20 09:28:14.291 2700 TIP 436493 20137 \N \N 6046497 2025-03-20 09:28:14.69 2025-03-20 09:28:14.69 100 FEE 436493 21683 \N \N 6046498 2025-03-20 09:28:14.69 2025-03-20 09:28:14.69 900 TIP 436493 19806 \N \N 6046511 2025-03-20 09:28:16.148 2025-03-20 09:28:16.148 100 FEE 436493 18069 \N \N 6046512 2025-03-20 09:28:16.148 2025-03-20 09:28:16.148 900 TIP 436493 14657 \N \N 6046515 2025-03-20 09:28:16.831 2025-03-20 09:28:16.831 100 FEE 436493 20310 \N \N 6046516 2025-03-20 09:28:16.831 2025-03-20 09:28:16.831 900 TIP 436493 2593 \N \N 6046535 2025-03-20 09:30:39.089 2025-03-20 09:30:39.089 1000 FEE 436531 2347 \N \N 6046538 2025-03-20 09:30:42.234 2025-03-20 09:30:42.234 1000 FEE 436529 13903 \N \N 6046539 2025-03-20 09:30:42.234 2025-03-20 09:30:42.234 9000 TIP 436529 17727 \N \N 6046542 2025-03-20 09:30:42.51 2025-03-20 09:30:42.51 500 FEE 436518 11873 \N \N 6046543 2025-03-20 09:30:42.51 2025-03-20 09:30:42.51 4500 TIP 436518 13249 \N \N 6046544 2025-03-20 09:30:42.989 2025-03-20 09:30:42.989 500 FEE 436518 1890 \N \N 6046545 2025-03-20 09:30:42.989 2025-03-20 09:30:42.989 4500 TIP 436518 11862 \N \N 6046565 2025-03-20 09:31:01.453 2025-03-20 09:31:01.453 1000 FEE 436269 14909 \N \N 6046566 2025-03-20 09:31:01.453 2025-03-20 09:31:01.453 9000 TIP 436269 4692 \N \N 6046588 2025-03-20 09:32:49.097 2025-03-20 09:32:49.097 1000 FEE 436396 17331 \N \N 6046589 2025-03-20 09:32:49.097 2025-03-20 09:32:49.097 9000 TIP 436396 20094 \N \N 6046590 2025-03-20 09:32:57.597 2025-03-20 09:32:57.597 1000 FEE 436275 2514 \N \N 6046591 2025-03-20 09:32:57.597 2025-03-20 09:32:57.597 9000 TIP 436275 13327 \N \N 6046593 2025-03-20 09:33:48.436 2025-03-20 09:33:48.436 1000 FEE 436535 7916 \N \N 6046624 2025-03-20 09:38:59.458 2025-03-20 09:38:59.458 1000 FEE 436545 18265 \N \N 6046627 2025-03-20 09:39:15.643 2025-03-20 09:39:15.643 2100 FEE 436320 17690 \N \N 6046628 2025-03-20 09:39:15.643 2025-03-20 09:39:15.643 18900 TIP 436320 20310 \N \N 6046629 2025-03-20 09:39:19.242 2025-03-20 09:39:19.242 1000 FEE 436547 1012 \N \N 6046650 2025-03-20 09:41:31.708 2025-03-20 09:41:31.708 0 FEE 436540 15474 \N \N 6046653 2025-03-20 09:41:32.134 2025-03-20 09:41:32.134 1000 FEE 436549 11670 \N \N 6046654 2025-03-20 09:41:32.134 2025-03-20 09:41:32.134 9000 TIP 436549 9364 \N \N 6046671 2025-03-20 09:45:39.995 2025-03-20 09:45:39.995 500 FEE 436548 5036 \N \N 6046672 2025-03-20 09:45:39.995 2025-03-20 09:45:39.995 4500 TIP 436548 7682 \N \N 6046673 2025-03-20 09:45:40.097 2025-03-20 09:45:40.097 500 FEE 436548 12169 \N \N 6046674 2025-03-20 09:45:40.097 2025-03-20 09:45:40.097 4500 TIP 436548 9183 \N \N 6046681 2025-03-20 09:46:28.553 2025-03-20 09:46:28.553 1000 FEE 436514 9537 \N \N 6046682 2025-03-20 09:46:28.553 2025-03-20 09:46:28.553 9000 TIP 436514 18735 \N \N 6046707 2025-03-20 09:47:57.02 2025-03-20 09:47:57.02 2100 FEE 436402 12346 \N \N 6046708 2025-03-20 09:47:57.02 2025-03-20 09:47:57.02 18900 TIP 436402 16562 \N \N 6046709 2025-03-20 09:48:04.275 2025-03-20 09:48:04.275 2100 FEE 436392 21412 \N \N 6046710 2025-03-20 09:48:04.275 2025-03-20 09:48:04.275 18900 TIP 436392 15526 \N \N 6046715 2025-03-20 09:50:07.341 2025-03-20 09:50:07.341 1000 FEE 436466 1002 \N \N 6046716 2025-03-20 09:50:07.341 2025-03-20 09:50:07.341 9000 TIP 436466 20500 \N \N 6046719 2025-03-20 09:50:09.238 2025-03-20 09:50:09.238 1000 FEE 436466 787 \N \N 6046720 2025-03-20 09:50:09.238 2025-03-20 09:50:09.238 9000 TIP 436466 9367 \N \N 6046721 2025-03-20 09:50:10.118 2025-03-20 09:50:10.118 1000 FEE 436466 14607 \N \N 6046722 2025-03-20 09:50:10.118 2025-03-20 09:50:10.118 9000 TIP 436466 13399 \N \N 6046740 2025-03-20 09:51:26.302 2025-03-20 09:51:26.302 2100 FEE 430277 2309 \N \N 6046741 2025-03-20 09:51:26.302 2025-03-20 09:51:26.302 18900 TIP 430277 16229 \N \N 6046751 2025-03-20 09:52:59.018 2025-03-20 09:52:59.018 2100 FEE 436493 9171 \N \N 6046752 2025-03-20 09:52:59.018 2025-03-20 09:52:59.018 18900 TIP 436493 7903 \N \N 6046765 2025-03-20 09:53:55.118 2025-03-20 09:53:55.118 1000 FEE 436555 5779 \N \N 6046766 2025-03-20 09:53:55.118 2025-03-20 09:53:55.118 9000 TIP 436555 16284 \N \N 6046776 2025-03-20 09:54:46.134 2025-03-20 09:54:46.134 2100 FEE 436508 797 \N \N 6046777 2025-03-20 09:54:46.134 2025-03-20 09:54:46.134 18900 TIP 436508 2232 \N \N 6046778 2025-03-20 09:55:02.146 2025-03-20 09:55:02.146 1100 FEE 436459 17218 \N \N 6046779 2025-03-20 09:55:02.146 2025-03-20 09:55:02.146 9900 TIP 436459 11942 \N \N 6046794 2025-03-20 09:56:59.119 2025-03-20 09:56:59.119 2100 FEE 436243 7847 \N \N 6046795 2025-03-20 09:56:59.119 2025-03-20 09:56:59.119 18900 TIP 436243 9985 \N \N 6046810 2025-03-20 10:00:13.555 2025-03-20 10:00:13.555 1000 FEE 436561 21766 \N \N 6046817 2025-03-20 10:01:17.602 2025-03-20 10:01:17.602 0 FEE 375801 19663 \N \N 6046830 2025-03-20 10:02:47.136 2025-03-20 10:02:47.136 1000 FEE 436522 19016 \N \N 6046831 2025-03-20 10:02:47.136 2025-03-20 10:02:47.136 9000 TIP 436522 21575 \N \N 6046832 2025-03-20 10:02:52.226 2025-03-20 10:02:52.226 4000 FEE 436555 5003 \N \N 6046833 2025-03-20 10:02:52.226 2025-03-20 10:02:52.226 36000 TIP 436555 5175 \N \N 6046837 2025-03-20 10:03:04.48 2025-03-20 10:03:04.48 1000 FEE 436529 650 \N \N 6046838 2025-03-20 10:03:04.48 2025-03-20 10:03:04.48 9000 TIP 436529 7668 \N \N 6046839 2025-03-20 10:03:05.576 2025-03-20 10:03:05.576 1000 FEE 436559 9362 \N \N 6046840 2025-03-20 10:03:05.576 2025-03-20 10:03:05.576 9000 TIP 436559 15052 \N \N 6046853 2025-03-20 10:05:15.768 2025-03-20 10:05:15.768 2100 FEE 435847 15045 \N \N 6046854 2025-03-20 10:05:15.768 2025-03-20 10:05:15.768 18900 TIP 435847 19512 \N \N 6046860 2025-03-20 10:07:09.988 2025-03-20 10:07:09.988 1000 FEE 436568 1658 \N \N 6046872 2025-03-20 10:07:40.567 2025-03-20 10:07:40.567 2100 FEE 435551 18321 \N \N 6046873 2025-03-20 10:07:40.567 2025-03-20 10:07:40.567 18900 TIP 435551 21365 \N \N 6046419 2025-03-20 09:20:57.724 2025-03-20 09:20:57.724 9000 TIP 436504 10944 \N \N 6046420 2025-03-20 09:20:57.892 2025-03-20 09:20:57.892 1000 FEE 436504 21768 \N \N 6046421 2025-03-20 09:20:57.892 2025-03-20 09:20:57.892 9000 TIP 436504 5757 \N \N 6046430 2025-03-20 09:20:59.118 2025-03-20 09:20:59.118 1000 FEE 436504 5904 \N \N 6046431 2025-03-20 09:20:59.118 2025-03-20 09:20:59.118 9000 TIP 436504 21166 \N \N 6046467 2025-03-20 09:25:41.181 2025-03-20 09:25:41.181 100 FEE 436492 19484 \N \N 6046468 2025-03-20 09:25:41.181 2025-03-20 09:25:41.181 900 TIP 436492 11144 \N \N 6046509 2025-03-20 09:28:16.032 2025-03-20 09:28:16.032 100 FEE 436493 11798 \N \N 6046510 2025-03-20 09:28:16.032 2025-03-20 09:28:16.032 900 TIP 436493 9476 \N \N 6046523 2025-03-20 09:30:04.214 2025-03-20 09:30:04.214 1000 FEE 436093 1723 \N \N 6046524 2025-03-20 09:30:04.214 2025-03-20 09:30:04.214 9000 TIP 436093 4973 \N \N 6046536 2025-03-20 09:30:42.084 2025-03-20 09:30:42.084 1000 FEE 436529 1060 \N \N 6046537 2025-03-20 09:30:42.084 2025-03-20 09:30:42.084 9000 TIP 436529 2773 \N \N 6046555 2025-03-20 09:30:55.334 2025-03-20 09:30:55.334 1000 FEE 436301 20734 \N \N 6046556 2025-03-20 09:30:55.334 2025-03-20 09:30:55.334 9000 TIP 436301 899 \N \N 6046561 2025-03-20 09:31:00.528 2025-03-20 09:31:00.528 1000 FEE 436278 21815 \N \N 6046562 2025-03-20 09:31:00.528 2025-03-20 09:31:00.528 9000 TIP 436278 15588 \N \N 6046570 2025-03-20 09:31:24.495 2025-03-20 09:31:24.495 1000 FEE 436449 9363 \N \N 6046571 2025-03-20 09:31:24.495 2025-03-20 09:31:24.495 9000 TIP 436449 8423 \N \N 6046572 2025-03-20 09:31:28.894 2025-03-20 09:31:28.894 1000 FEE 436498 21274 \N \N 6046573 2025-03-20 09:31:28.894 2025-03-20 09:31:28.894 9000 TIP 436498 13169 \N \N 6046576 2025-03-20 09:31:32.242 2025-03-20 09:31:32.242 2100 FEE 436495 19966 \N \N 6046577 2025-03-20 09:31:32.242 2025-03-20 09:31:32.242 18900 TIP 436495 7992 \N \N 6046584 2025-03-20 09:32:39.62 2025-03-20 09:32:39.62 1000 FEE 436392 21218 \N \N 6046585 2025-03-20 09:32:39.62 2025-03-20 09:32:39.62 9000 TIP 436392 11515 \N \N 6046597 2025-03-20 09:34:07.694 2025-03-20 09:34:07.694 1000 FEE 436537 18731 \N \N 6046608 2025-03-20 09:35:04.214 2025-03-20 09:35:04.214 0 FEE 436531 5978 \N \N 6046613 2025-03-20 09:36:36.377 2025-03-20 09:36:36.377 1000 FEE 436542 21547 \N \N 6046675 2025-03-20 09:46:10.438 2025-03-20 09:46:10.438 1000 FEE 436552 20825 \N \N 6046713 2025-03-20 09:50:06.621 2025-03-20 09:50:06.621 1000 FEE 436466 2508 \N \N 6046714 2025-03-20 09:50:06.621 2025-03-20 09:50:06.621 9000 TIP 436466 21398 \N \N 6046717 2025-03-20 09:50:08.38 2025-03-20 09:50:08.38 1000 FEE 436466 633 \N \N 6046718 2025-03-20 09:50:08.38 2025-03-20 09:50:08.38 9000 TIP 436466 20190 \N \N 6046768 2025-03-20 09:54:26.519 2025-03-20 09:54:26.519 2100 FEE 436493 701 \N \N 6046769 2025-03-20 09:54:26.519 2025-03-20 09:54:26.519 18900 TIP 436493 12102 \N \N 6046821 2025-03-20 10:02:16.951 2025-03-20 10:02:16.951 2100 FEE 436033 1471 \N \N 6046822 2025-03-20 10:02:16.951 2025-03-20 10:02:16.951 18900 TIP 436033 16858 \N \N 6046825 2025-03-20 10:02:24.625 2025-03-20 10:02:24.625 1000 FEE 436552 20972 \N \N 6046826 2025-03-20 10:02:24.625 2025-03-20 10:02:24.625 9000 TIP 436552 1495 \N \N 6046874 2025-03-20 10:07:43.947 2025-03-20 10:07:43.947 2100 FEE 436556 1051 \N \N 6046875 2025-03-20 10:07:43.947 2025-03-20 10:07:43.947 18900 TIP 436556 17891 \N \N 6046884 2025-03-20 10:08:32.657 2025-03-20 10:08:32.657 2300 FEE 436499 7682 \N \N 6046885 2025-03-20 10:08:32.657 2025-03-20 10:08:32.657 20700 TIP 436499 1890 \N \N 6046892 2025-03-20 10:08:33.195 2025-03-20 10:08:33.195 2300 FEE 436499 18615 \N \N 6046893 2025-03-20 10:08:33.195 2025-03-20 10:08:33.195 20700 TIP 436499 8287 \N \N 6046909 2025-03-20 10:09:30.606 2025-03-20 10:09:30.606 16600 FEE 436499 928 \N \N 6046910 2025-03-20 10:09:30.606 2025-03-20 10:09:30.606 149400 TIP 436499 1471 \N \N 6046958 2025-03-20 10:10:43.4 2025-03-20 10:10:43.4 1000 FEE 436560 1426 \N \N 6046959 2025-03-20 10:10:43.4 2025-03-20 10:10:43.4 9000 TIP 436560 11164 \N \N 6046979 2025-03-20 10:11:15.767 2025-03-20 10:11:15.767 2200 FEE 385935 667 \N \N 6046980 2025-03-20 10:11:15.767 2025-03-20 10:11:15.767 19800 TIP 385935 19071 \N \N 6046991 2025-03-20 10:11:16.645 2025-03-20 10:11:16.645 1100 FEE 385935 4173 \N \N 6046992 2025-03-20 10:11:16.645 2025-03-20 10:11:16.645 9900 TIP 385935 21514 \N \N 6047005 2025-03-20 10:14:15.644 2025-03-20 10:14:15.644 1000 FEE 436561 20811 \N \N 6047006 2025-03-20 10:14:15.644 2025-03-20 10:14:15.644 9000 TIP 436561 6382 \N \N 6047015 2025-03-20 10:14:44.951 2025-03-20 10:14:44.951 2100 FEE 435619 19087 \N \N 6047016 2025-03-20 10:14:44.951 2025-03-20 10:14:44.951 18900 TIP 435619 8289 \N \N 6047019 2025-03-20 10:15:04.983 2025-03-20 10:15:04.983 1100 FEE 435630 5708 \N \N 6047020 2025-03-20 10:15:04.983 2025-03-20 10:15:04.983 9900 TIP 435630 4487 \N \N 6047033 2025-03-20 10:17:02.597 2025-03-20 10:17:02.597 2300 FEE 436564 14080 \N \N 6047034 2025-03-20 10:17:02.597 2025-03-20 10:17:02.597 20700 TIP 436564 20023 \N \N 6047042 2025-03-20 10:19:06.982 2025-03-20 10:19:06.982 2100 FEE 436570 5725 \N \N 6047043 2025-03-20 10:19:06.982 2025-03-20 10:19:06.982 18900 TIP 436570 15103 \N \N 6047053 2025-03-20 10:23:13.23 2025-03-20 10:23:13.23 5000 FEE 436527 18188 \N \N 6047054 2025-03-20 10:23:13.23 2025-03-20 10:23:13.23 45000 TIP 436527 15703 \N \N 6047056 2025-03-20 10:23:17.062 2025-03-20 10:23:17.062 1000 FEE 436580 21249 \N \N 6047067 2025-03-20 10:27:19.379 2025-03-20 10:27:19.379 2100 FEE 436527 21048 \N \N 6047068 2025-03-20 10:27:19.379 2025-03-20 10:27:19.379 18900 TIP 436527 1567 \N \N 6047149 2025-03-20 10:45:36.612 2025-03-20 10:45:36.612 1000 FEE 436592 21577 \N \N 6047171 2025-03-20 10:51:10.583 2025-03-20 10:51:10.583 0 FEE 436585 4570 \N \N 6047177 2025-03-20 10:55:05.496 2025-03-20 10:55:05.496 1000 POLL 436323 11621 \N \N 6047185 2025-03-20 10:55:39.976 2025-03-20 10:55:39.976 2300 FEE 436593 1609 \N \N 6047186 2025-03-20 10:55:39.976 2025-03-20 10:55:39.976 20700 TIP 436593 1009 \N \N 6047203 2025-03-20 10:55:42.183 2025-03-20 10:55:42.183 2300 FEE 436593 18321 \N \N 6047204 2025-03-20 10:55:42.183 2025-03-20 10:55:42.183 20700 TIP 436593 21047 \N \N 6047216 2025-03-20 10:59:16.106 2025-03-20 10:59:16.106 2100 FEE 436241 20509 \N \N 6047217 2025-03-20 10:59:16.106 2025-03-20 10:59:16.106 18900 TIP 436241 10393 \N \N 6047220 2025-03-20 10:59:17.407 2025-03-20 10:59:17.407 2100 FEE 436459 1044 \N \N 6047221 2025-03-20 10:59:17.407 2025-03-20 10:59:17.407 18900 TIP 436459 1785 \N \N 6047226 2025-03-20 10:59:19.38 2025-03-20 10:59:19.38 2100 FEE 436093 21057 \N \N 6047227 2025-03-20 10:59:19.38 2025-03-20 10:59:19.38 18900 TIP 436093 2402 \N \N 6047259 2025-03-20 11:00:35.206 2025-03-20 11:00:35.206 2100 FEE 436218 10818 \N \N 6047260 2025-03-20 11:00:35.206 2025-03-20 11:00:35.206 18900 TIP 436218 1817 \N \N 6047273 2025-03-20 11:04:24.592 2025-03-20 11:04:24.592 100 FEE 436560 5069 \N \N 6047274 2025-03-20 11:04:24.592 2025-03-20 11:04:24.592 900 TIP 436560 713 \N \N 6047286 2025-03-20 11:05:07.155 2025-03-20 11:05:07.155 900 FEE 436572 17106 \N \N 6047287 2025-03-20 11:05:07.155 2025-03-20 11:05:07.155 8100 TIP 436572 1162 \N \N 6047296 2025-03-20 11:06:57.571 2025-03-20 11:06:57.571 100 FEE 436523 15119 \N \N 6047297 2025-03-20 11:06:57.571 2025-03-20 11:06:57.571 900 TIP 436523 1647 \N \N 6047307 2025-03-20 11:07:36.482 2025-03-20 11:07:36.482 100 FEE 436556 5961 \N \N 6047308 2025-03-20 11:07:36.482 2025-03-20 11:07:36.482 900 TIP 436556 2492 \N \N 6047320 2025-03-20 11:09:02.102 2025-03-20 11:09:02.102 2300 FEE 436605 20117 \N \N 6047321 2025-03-20 11:09:02.102 2025-03-20 11:09:02.102 20700 TIP 436605 14122 \N \N 6047362 2025-03-20 11:09:06.979 2025-03-20 11:09:06.979 1000 FEE 436326 2674 \N \N 6047363 2025-03-20 11:09:06.979 2025-03-20 11:09:06.979 9000 TIP 436326 13327 \N \N 6047378 2025-03-20 11:09:08.108 2025-03-20 11:09:08.108 2300 FEE 436605 1970 \N \N 6046442 2025-03-20 09:23:55.332 2025-03-20 09:23:55.332 1000 FEE 436525 2832 \N \N 6046453 2025-03-20 09:25:06.307 2025-03-20 09:25:06.307 100 FEE 436512 11144 \N \N 6046454 2025-03-20 09:25:06.307 2025-03-20 09:25:06.307 900 TIP 436512 679 \N \N 6046461 2025-03-20 09:25:40.121 2025-03-20 09:25:40.121 100 FEE 436492 5293 \N \N 6046462 2025-03-20 09:25:40.121 2025-03-20 09:25:40.121 900 TIP 436492 965 \N \N 6046463 2025-03-20 09:25:40.665 2025-03-20 09:25:40.665 100 FEE 436492 15200 \N \N 6046464 2025-03-20 09:25:40.665 2025-03-20 09:25:40.665 900 TIP 436492 775 \N \N 6046499 2025-03-20 09:28:14.872 2025-03-20 09:28:14.872 100 FEE 436493 13843 \N \N 6046500 2025-03-20 09:28:14.872 2025-03-20 09:28:14.872 900 TIP 436493 5359 \N \N 6046501 2025-03-20 09:28:15.11 2025-03-20 09:28:15.11 100 FEE 436493 2204 \N \N 6046502 2025-03-20 09:28:15.11 2025-03-20 09:28:15.11 900 TIP 436493 10393 \N \N 6046503 2025-03-20 09:28:15.314 2025-03-20 09:28:15.314 100 FEE 436493 2338 \N \N 6046504 2025-03-20 09:28:15.314 2025-03-20 09:28:15.314 900 TIP 436493 690 \N \N 6046505 2025-03-20 09:28:15.531 2025-03-20 09:28:15.531 100 FEE 436493 5306 \N \N 6046506 2025-03-20 09:28:15.531 2025-03-20 09:28:15.531 900 TIP 436493 11678 \N \N 6046526 2025-03-20 09:30:15.902 2025-03-20 09:30:15.902 1000 FEE 436303 13406 \N \N 6046527 2025-03-20 09:30:15.902 2025-03-20 09:30:15.902 9000 TIP 436303 4984 \N \N 6046557 2025-03-20 09:30:58.334 2025-03-20 09:30:58.334 1100 FEE 436509 18673 \N \N 6046558 2025-03-20 09:30:58.334 2025-03-20 09:30:58.334 9900 TIP 436509 632 \N \N 6046567 2025-03-20 09:31:02.101 2025-03-20 09:31:02.101 1000 FEE 436295 17727 \N \N 6046568 2025-03-20 09:31:02.101 2025-03-20 09:31:02.101 9000 TIP 436295 16965 \N \N 6046579 2025-03-20 09:32:09.238 2025-03-20 09:32:09.238 1000 FEE 436395 19980 \N \N 6046580 2025-03-20 09:32:09.238 2025-03-20 09:32:09.238 9000 TIP 436395 21430 \N \N 6046636 2025-03-20 09:39:48.188 2025-03-20 09:39:48.188 1000 FEE 436534 4388 \N \N 6046637 2025-03-20 09:39:48.188 2025-03-20 09:39:48.188 9000 TIP 436534 769 \N \N 6046638 2025-03-20 09:39:53.864 2025-03-20 09:39:53.864 0 FEE 436545 1426 \N \N 6046651 2025-03-20 09:41:31.724 2025-03-20 09:41:31.724 1000 FEE 436549 999 \N \N 6046652 2025-03-20 09:41:31.724 2025-03-20 09:41:31.724 9000 TIP 436549 20525 \N \N 6046666 2025-03-20 09:45:29.676 2025-03-20 09:45:29.676 1000 FEE 436551 16948 \N \N 6046679 2025-03-20 09:46:28.383 2025-03-20 09:46:28.383 1000 FEE 436514 18430 \N \N 6046680 2025-03-20 09:46:28.383 2025-03-20 09:46:28.383 9000 TIP 436514 9843 \N \N 6046701 2025-03-20 09:47:48.81 2025-03-20 09:47:48.81 2100 FEE 436323 7992 \N \N 6046702 2025-03-20 09:47:48.81 2025-03-20 09:47:48.81 18900 TIP 436323 17106 \N \N 6046742 2025-03-20 09:51:31.937 2025-03-20 09:51:31.937 10000 FEE 436555 12072 \N \N 6046753 2025-03-20 09:53:06.989 2025-03-20 09:53:06.989 1100 FEE 430104 20099 \N \N 6046754 2025-03-20 09:53:06.989 2025-03-20 09:53:06.989 9900 TIP 430104 16724 \N \N 6046786 2025-03-20 09:56:13.21 2025-03-20 09:56:13.21 2500 FEE 436380 20840 \N \N 6046787 2025-03-20 09:56:13.21 2025-03-20 09:56:13.21 22500 TIP 436380 5578 \N \N 6046788 2025-03-20 09:56:14.829 2025-03-20 09:56:14.829 2500 FEE 436467 11091 \N \N 6046789 2025-03-20 09:56:14.829 2025-03-20 09:56:14.829 22500 TIP 436467 642 \N \N 6046802 2025-03-20 09:59:13.176 2025-03-20 09:59:13.176 1100 FEE 436197 19569 \N \N 6046803 2025-03-20 09:59:13.176 2025-03-20 09:59:13.176 9900 TIP 436197 11999 \N \N 6046818 2025-03-20 10:01:53.317 2025-03-20 10:01:53.317 2100 FEE 436100 16193 \N \N 6046819 2025-03-20 10:01:53.317 2025-03-20 10:01:53.317 18900 TIP 436100 1051 \N \N 6046828 2025-03-20 10:02:46.062 2025-03-20 10:02:46.062 4000 FEE 436553 18313 \N \N 6046829 2025-03-20 10:02:46.062 2025-03-20 10:02:46.062 36000 TIP 436553 1012 \N \N 6046879 2025-03-20 10:08:01.387 2025-03-20 10:08:01.387 1000 FEE 436417 20577 \N \N 6046880 2025-03-20 10:08:01.387 2025-03-20 10:08:01.387 9000 TIP 436417 1438 \N \N 6046905 2025-03-20 10:09:30.143 2025-03-20 10:09:30.143 8300 FEE 436499 10698 \N \N 6046906 2025-03-20 10:09:30.143 2025-03-20 10:09:30.143 74700 TIP 436499 12072 \N \N 6046935 2025-03-20 10:09:55.338 2025-03-20 10:09:55.338 8300 FEE 436566 1552 \N \N 6046936 2025-03-20 10:09:55.338 2025-03-20 10:09:55.338 74700 TIP 436566 19527 \N \N 6046939 2025-03-20 10:09:55.753 2025-03-20 10:09:55.753 8300 FEE 436566 20799 \N \N 6046940 2025-03-20 10:09:55.753 2025-03-20 10:09:55.753 74700 TIP 436566 5557 \N \N 6046960 2025-03-20 10:10:44.082 2025-03-20 10:10:44.082 1000 FEE 436560 3409 \N \N 6046961 2025-03-20 10:10:44.082 2025-03-20 10:10:44.082 9000 TIP 436560 9820 \N \N 6046985 2025-03-20 10:11:16.172 2025-03-20 10:11:16.172 1100 FEE 385935 18069 \N \N 6046986 2025-03-20 10:11:16.172 2025-03-20 10:11:16.172 9900 TIP 385935 18402 \N \N 6046994 2025-03-20 10:12:15.693 2025-03-20 10:12:15.693 1000 FEE 436573 1310 \N \N 6047002 2025-03-20 10:14:13.074 2025-03-20 10:14:13.074 1100 FEE 435728 17275 \N \N 6047003 2025-03-20 10:14:13.074 2025-03-20 10:14:13.074 9900 TIP 435728 14650 \N \N 6047007 2025-03-20 10:14:15.795 2025-03-20 10:14:15.795 1000 FEE 436561 18930 \N \N 6047008 2025-03-20 10:14:15.795 2025-03-20 10:14:15.795 9000 TIP 436561 19952 \N \N 6047022 2025-03-20 10:15:30.607 2025-03-20 10:15:30.607 1100 FEE 436437 21083 \N \N 6047023 2025-03-20 10:15:30.607 2025-03-20 10:15:30.607 9900 TIP 436437 17541 \N \N 6047035 2025-03-20 10:17:03.596 2025-03-20 10:17:03.596 2300 FEE 436564 5487 \N \N 6047036 2025-03-20 10:17:03.596 2025-03-20 10:17:03.596 20700 TIP 436564 19689 \N \N 6047051 2025-03-20 10:22:57.575 2025-03-20 10:22:57.575 4200 FEE 436336 11776 \N \N 6047052 2025-03-20 10:22:57.575 2025-03-20 10:22:57.575 37800 TIP 436336 6471 \N \N 6047071 2025-03-20 10:28:13.805 2025-03-20 10:28:13.805 1000 FEE 436583 18865 \N \N 6047092 2025-03-20 10:33:43.202 2025-03-20 10:33:43.202 1000 FEE 436511 21044 \N \N 6047093 2025-03-20 10:33:43.202 2025-03-20 10:33:43.202 9000 TIP 436511 20019 \N \N 6047097 2025-03-20 10:35:03.747 2025-03-20 10:35:03.747 100 FEE 436493 19966 \N \N 6047098 2025-03-20 10:35:03.747 2025-03-20 10:35:03.747 900 TIP 436493 2022 \N \N 6047100 2025-03-20 10:35:36.296 2025-03-20 10:35:36.296 1000 POLL 436323 20681 \N \N 6047131 2025-03-20 10:42:23.78 2025-03-20 10:42:23.78 1000 FEE 436589 20854 \N \N 6047140 2025-03-20 10:43:37.101 2025-03-20 10:43:37.101 1000 FEE 436591 20502 \N \N 6047169 2025-03-20 10:50:15.404 2025-03-20 10:50:15.404 1000 FEE 436595 7983 \N \N 6047193 2025-03-20 10:55:40.503 2025-03-20 10:55:40.503 2300 FEE 436593 1213 \N \N 6047194 2025-03-20 10:55:40.503 2025-03-20 10:55:40.503 20700 TIP 436593 21057 \N \N 6047197 2025-03-20 10:55:41.335 2025-03-20 10:55:41.335 2300 FEE 436593 705 \N \N 6047198 2025-03-20 10:55:41.335 2025-03-20 10:55:41.335 20700 TIP 436593 782 \N \N 6047210 2025-03-20 10:56:54.862 2025-03-20 10:56:54.862 1000 FEE 436599 1605 \N \N 6047224 2025-03-20 10:59:18.78 2025-03-20 10:59:18.78 2100 FEE 436413 14650 \N \N 6047225 2025-03-20 10:59:18.78 2025-03-20 10:59:18.78 18900 TIP 436413 21639 \N \N 6047230 2025-03-20 10:59:21.282 2025-03-20 10:59:21.282 2100 FEE 436566 12220 \N \N 6047231 2025-03-20 10:59:21.282 2025-03-20 10:59:21.282 18900 TIP 436566 15239 \N \N 6047236 2025-03-20 10:59:23.485 2025-03-20 10:59:23.485 2100 FEE 436323 19463 \N \N 6047237 2025-03-20 10:59:23.485 2025-03-20 10:59:23.485 18900 TIP 436323 889 \N \N 6047246 2025-03-20 10:59:25.908 2025-03-20 10:59:25.908 2100 FEE 436494 16536 \N \N 6047247 2025-03-20 10:59:25.908 2025-03-20 10:59:25.908 18900 TIP 436494 13406 \N \N 6047254 2025-03-20 10:59:27.915 2025-03-20 10:59:27.915 2100 FEE 436258 2010 \N \N 6047255 2025-03-20 10:59:27.915 2025-03-20 10:59:27.915 18900 TIP 436258 10433 \N \N 6047261 2025-03-20 11:00:55.356 2025-03-20 11:00:55.356 3000 FEE 436597 10490 \N \N 6047262 2025-03-20 11:00:55.356 2025-03-20 11:00:55.356 27000 TIP 436597 11609 \N \N 6047275 2025-03-20 11:04:28.836 2025-03-20 11:04:28.836 100 FEE 436566 16912 \N \N 6047276 2025-03-20 11:04:28.836 2025-03-20 11:04:28.836 900 TIP 436566 5806 \N \N 6047374 2025-03-20 11:09:07.49 2025-03-20 11:09:07.49 2300 FEE 436605 20852 \N \N 6047375 2025-03-20 11:09:07.49 2025-03-20 11:09:07.49 20700 TIP 436605 2016 \N \N 6047380 2025-03-20 11:09:08.243 2025-03-20 11:09:08.243 2300 FEE 436605 10283 \N \N 6047381 2025-03-20 11:09:08.243 2025-03-20 11:09:08.243 20700 TIP 436605 19189 \N \N 6047387 2025-03-20 11:09:11.145 2025-03-20 11:09:11.145 900 FEE 436550 994 \N \N 6047388 2025-03-20 11:09:11.145 2025-03-20 11:09:11.145 8100 TIP 436550 20754 \N \N 6046470 2025-03-20 09:25:41.766 2025-03-20 09:25:41.766 1800 TIP 436492 2000 \N \N 6046477 2025-03-20 09:25:57.242 2025-03-20 09:25:57.242 100 FEE 436433 21829 \N \N 6046478 2025-03-20 09:25:57.242 2025-03-20 09:25:57.242 900 TIP 436433 21734 \N \N 6046507 2025-03-20 09:28:15.721 2025-03-20 09:28:15.721 100 FEE 436493 994 \N \N 6046508 2025-03-20 09:28:15.721 2025-03-20 09:28:15.721 900 TIP 436493 12483 \N \N 6046513 2025-03-20 09:28:16.347 2025-03-20 09:28:16.347 100 FEE 436493 9335 \N \N 6046514 2025-03-20 09:28:16.347 2025-03-20 09:28:16.347 900 TIP 436493 686 \N \N 6046533 2025-03-20 09:30:38.883 2025-03-20 09:30:38.883 1000 FEE 436347 17710 \N \N 6046534 2025-03-20 09:30:38.883 2025-03-20 09:30:38.883 9000 TIP 436347 18426 \N \N 6046550 2025-03-20 09:30:52.421 2025-03-20 09:30:52.421 10000 FEE 436532 20275 \N \N 6046563 2025-03-20 09:31:00.981 2025-03-20 09:31:00.981 1000 FEE 436113 16336 \N \N 6046564 2025-03-20 09:31:00.981 2025-03-20 09:31:00.981 9000 TIP 436113 9362 \N \N 6046574 2025-03-20 09:31:29.477 2025-03-20 09:31:29.477 1000 FEE 436455 20291 \N \N 6046575 2025-03-20 09:31:29.477 2025-03-20 09:31:29.477 9000 TIP 436455 20370 \N \N 6046578 2025-03-20 09:31:57.588 2025-03-20 09:31:57.588 1000 POLL 436323 15556 \N \N 6046640 2025-03-20 09:40:22.778 2025-03-20 09:40:22.778 1000 FEE 436548 16724 \N \N 6046644 2025-03-20 09:40:58.374 2025-03-20 09:40:58.374 10000 FEE 436550 886 \N \N 6046667 2025-03-20 09:45:39.19 2025-03-20 09:45:39.19 500 FEE 436548 20756 \N \N 6046668 2025-03-20 09:45:39.19 2025-03-20 09:45:39.19 4500 TIP 436548 12976 \N \N 6046692 2025-03-20 09:47:16.918 2025-03-20 09:47:16.918 10000 FEE 436553 19378 \N \N 6046728 2025-03-20 09:50:14.064 2025-03-20 09:50:14.064 1000 FEE 435882 18772 \N \N 6046729 2025-03-20 09:50:14.064 2025-03-20 09:50:14.064 9000 TIP 435882 21577 \N \N 6046743 2025-03-20 09:51:45.679 2025-03-20 09:51:45.679 1100 FEE 430216 1130 \N \N 6046744 2025-03-20 09:51:45.679 2025-03-20 09:51:45.679 9900 TIP 430216 652 \N \N 6046774 2025-03-20 09:54:45.93 2025-03-20 09:54:45.93 2100 FEE 436508 18528 \N \N 6046775 2025-03-20 09:54:45.93 2025-03-20 09:54:45.93 18900 TIP 436508 8926 \N \N 6046781 2025-03-20 09:55:27.318 2025-03-20 09:55:27.318 2100 FEE 436241 18525 \N \N 6046782 2025-03-20 09:55:27.318 2025-03-20 09:55:27.318 18900 TIP 436241 9421 \N \N 6046790 2025-03-20 09:56:19.002 2025-03-20 09:56:19.002 2500 FEE 436492 12139 \N \N 6046791 2025-03-20 09:56:19.002 2025-03-20 09:56:19.002 22500 TIP 436492 21296 \N \N 6046807 2025-03-20 10:00:00.21 2025-03-20 10:00:00.21 2100 FEE 436093 6030 \N \N 6046808 2025-03-20 10:00:00.21 2025-03-20 10:00:00.21 18900 TIP 436093 1006 \N \N 6046813 2025-03-20 10:00:18.502 2025-03-20 10:00:18.502 100000 FEE 436562 17415 \N \N 6046823 2025-03-20 10:02:20.076 2025-03-20 10:02:20.076 3000 FEE 436544 1817 \N \N 6046824 2025-03-20 10:02:20.076 2025-03-20 10:02:20.076 27000 TIP 436544 5776 \N \N 6046836 2025-03-20 10:03:00.739 2025-03-20 10:03:00.739 1000 FEE 436564 5306 \N \N 6046876 2025-03-20 10:07:49.063 2025-03-20 10:07:49.063 1000 POLL 436323 14357 \N \N 6046917 2025-03-20 10:09:54.367 2025-03-20 10:09:54.367 8300 FEE 436566 20254 \N \N 6046918 2025-03-20 10:09:54.367 2025-03-20 10:09:54.367 74700 TIP 436566 16276 \N \N 6046921 2025-03-20 10:09:54.546 2025-03-20 10:09:54.546 8300 FEE 436566 21014 \N \N 6046922 2025-03-20 10:09:54.546 2025-03-20 10:09:54.546 74700 TIP 436566 5904 \N \N 6046923 2025-03-20 10:09:54.701 2025-03-20 10:09:54.701 8300 FEE 436566 9863 \N \N 6046924 2025-03-20 10:09:54.701 2025-03-20 10:09:54.701 74700 TIP 436566 5444 \N \N 6046964 2025-03-20 10:10:45.172 2025-03-20 10:10:45.172 1000 FEE 436571 1105 \N \N 6046981 2025-03-20 10:11:15.893 2025-03-20 10:11:15.893 1100 FEE 385935 14465 \N \N 6046982 2025-03-20 10:11:15.893 2025-03-20 10:11:15.893 9900 TIP 385935 1326 \N \N 6047045 2025-03-20 10:19:59.317 2025-03-20 10:19:59.317 10000 FEE 436384 20674 \N \N 6047046 2025-03-20 10:19:59.317 2025-03-20 10:19:59.317 90000 TIP 436384 994 \N \N 6047049 2025-03-20 10:21:22.195 2025-03-20 10:21:22.195 1000 FEE 436579 11862 \N \N 6047057 2025-03-20 10:23:45.338 2025-03-20 10:23:45.338 1000 FEE 436581 18630 \N \N 6047074 2025-03-20 10:28:56.854 2025-03-20 10:28:56.854 1100 FEE 436568 1741 \N \N 6047075 2025-03-20 10:28:56.854 2025-03-20 10:28:56.854 9900 TIP 436568 4225 \N \N 6047080 2025-03-20 10:31:59.585 2025-03-20 10:31:59.585 1000 FEE 436572 21798 \N \N 6047081 2025-03-20 10:31:59.585 2025-03-20 10:31:59.585 9000 TIP 436572 11395 \N \N 6047110 2025-03-20 10:40:30.281 2025-03-20 10:40:30.281 2100 FEE 436466 646 \N \N 6047111 2025-03-20 10:40:30.281 2025-03-20 10:40:30.281 18900 TIP 436466 1515 \N \N 6047117 2025-03-20 10:41:30.962 2025-03-20 10:41:30.962 1000 FEE 436586 7659 \N \N 6047132 2025-03-20 10:42:28.047 2025-03-20 10:42:28.047 1000 FEE 436590 18114 \N \N 6047141 2025-03-20 10:44:04.353 2025-03-20 10:44:04.353 5000 FEE 436537 14959 \N \N 6047142 2025-03-20 10:44:04.353 2025-03-20 10:44:04.353 45000 TIP 436537 12976 \N \N 6047144 2025-03-20 10:44:36.314 2025-03-20 10:44:36.314 2100 FEE 436202 1447 \N \N 6047145 2025-03-20 10:44:36.314 2025-03-20 10:44:36.314 18900 TIP 436202 20745 \N \N 6047222 2025-03-20 10:59:17.968 2025-03-20 10:59:17.968 2100 FEE 436197 1632 \N \N 6047223 2025-03-20 10:59:17.968 2025-03-20 10:59:17.968 18900 TIP 436197 20979 \N \N 6047244 2025-03-20 10:59:25.624 2025-03-20 10:59:25.624 2100 FEE 436136 859 \N \N 6047245 2025-03-20 10:59:25.624 2025-03-20 10:59:25.624 18900 TIP 436136 19018 \N \N 6047265 2025-03-20 11:01:25.748 2025-03-20 11:01:25.748 300 FEE 436596 7425 \N \N 6047266 2025-03-20 11:01:25.748 2025-03-20 11:01:25.748 2700 TIP 436596 20642 \N \N 6047281 2025-03-20 11:04:44.03 2025-03-20 11:04:44.03 1000 FEE 436586 20310 \N \N 6047282 2025-03-20 11:04:44.03 2025-03-20 11:04:44.03 9000 TIP 436586 19094 \N \N 6047284 2025-03-20 11:05:06.875 2025-03-20 11:05:06.875 100 FEE 436572 5497 \N \N 6047285 2025-03-20 11:05:06.875 2025-03-20 11:05:06.875 900 TIP 436572 20500 \N \N 6047314 2025-03-20 11:09:01.452 2025-03-20 11:09:01.452 2300 FEE 436605 8004 \N \N 6047315 2025-03-20 11:09:01.452 2025-03-20 11:09:01.452 20700 TIP 436605 5708 \N \N 6047326 2025-03-20 11:09:02.698 2025-03-20 11:09:02.698 2300 FEE 436605 21416 \N \N 6047327 2025-03-20 11:09:02.698 2025-03-20 11:09:02.698 20700 TIP 436605 2196 \N \N 6047330 2025-03-20 11:09:03.018 2025-03-20 11:09:03.018 2300 FEE 436605 10016 \N \N 6047331 2025-03-20 11:09:03.018 2025-03-20 11:09:03.018 20700 TIP 436605 17710 \N \N 6047358 2025-03-20 11:09:06.762 2025-03-20 11:09:06.762 2300 FEE 436605 16542 \N \N 6047359 2025-03-20 11:09:06.762 2025-03-20 11:09:06.762 20700 TIP 436605 7418 \N \N 6047360 2025-03-20 11:09:06.811 2025-03-20 11:09:06.811 1000 FEE 436326 17519 \N \N 6047361 2025-03-20 11:09:06.811 2025-03-20 11:09:06.811 9000 TIP 436326 2061 \N \N 6047372 2025-03-20 11:09:07.474 2025-03-20 11:09:07.474 1000 FEE 436326 2596 \N \N 6047373 2025-03-20 11:09:07.474 2025-03-20 11:09:07.474 9000 TIP 436326 17817 \N \N 6047395 2025-03-20 11:09:12.674 2025-03-20 11:09:12.674 1000 FEE 436326 1624 \N \N 6047396 2025-03-20 11:09:12.674 2025-03-20 11:09:12.674 9000 TIP 436326 1817 \N \N 6047422 2025-03-20 11:09:19.771 2025-03-20 11:09:19.771 1000 FEE 436326 21600 \N \N 6047423 2025-03-20 11:09:19.771 2025-03-20 11:09:19.771 9000 TIP 436326 10979 \N \N 6047434 2025-03-20 11:09:28.843 2025-03-20 11:09:28.843 90000 FEE 436556 1092 \N \N 6047435 2025-03-20 11:09:28.843 2025-03-20 11:09:28.843 810000 TIP 436556 1105 \N \N 6047438 2025-03-20 11:09:35.921 2025-03-20 11:09:35.921 100 FEE 436562 6430 \N \N 6047439 2025-03-20 11:09:35.921 2025-03-20 11:09:35.921 900 TIP 436562 21712 \N \N 6047442 2025-03-20 11:09:37.336 2025-03-20 11:09:37.336 9000 FEE 436562 1454 \N \N 6047443 2025-03-20 11:09:37.336 2025-03-20 11:09:37.336 81000 TIP 436562 16097 \N \N 6047461 2025-03-20 11:10:07.328 2025-03-20 11:10:07.328 9000 FEE 436587 999 \N \N 6047462 2025-03-20 11:10:07.328 2025-03-20 11:10:07.328 81000 TIP 436587 6260 \N \N 6047471 2025-03-20 11:10:29.772 2025-03-20 11:10:29.772 100 FEE 435944 993 \N \N 6047472 2025-03-20 11:10:29.772 2025-03-20 11:10:29.772 900 TIP 435944 3392 \N \N 6047507 2025-03-20 11:10:54.735 2025-03-20 11:10:54.735 90000 FEE 436258 900 \N \N 6047508 2025-03-20 11:10:54.735 2025-03-20 11:10:54.735 810000 TIP 436258 15326 \N \N 6047539 2025-03-20 11:10:59.573 2025-03-20 11:10:59.573 1000 FEE 436326 7818 \N \N 6046488 2025-03-20 09:27:10.797 2025-03-20 09:27:10.797 4000 FEE 436523 15617 \N \N 6046489 2025-03-20 09:27:10.797 2025-03-20 09:27:10.797 36000 TIP 436523 10007 \N \N 6046491 2025-03-20 09:28:08.987 2025-03-20 09:28:08.987 10000 FEE 435944 17673 \N \N 6046492 2025-03-20 09:28:08.987 2025-03-20 09:28:08.987 90000 TIP 435944 14939 \N \N 6046519 2025-03-20 09:28:17.253 2025-03-20 09:28:17.253 100 FEE 436493 21202 \N \N 6046520 2025-03-20 09:28:17.253 2025-03-20 09:28:17.253 900 TIP 436493 1471 \N \N 6046521 2025-03-20 09:28:42.597 2025-03-20 09:28:42.597 1000 FEE 436529 2204 \N \N 6046528 2025-03-20 09:30:25.065 2025-03-20 09:30:25.065 1000 FEE 436519 17953 \N \N 6046529 2025-03-20 09:30:25.065 2025-03-20 09:30:25.065 9000 TIP 436519 917 \N \N 6046546 2025-03-20 09:30:43.249 2025-03-20 09:30:43.249 7700 FEE 436508 2952 \N \N 6046547 2025-03-20 09:30:43.249 2025-03-20 09:30:43.249 69300 TIP 436508 15326 \N \N 6046559 2025-03-20 09:31:00.109 2025-03-20 09:31:00.109 1000 FEE 436285 1549 \N \N 6046560 2025-03-20 09:31:00.109 2025-03-20 09:31:00.109 9000 TIP 436285 17638 \N \N 6046582 2025-03-20 09:32:13.911 2025-03-20 09:32:13.911 1000 FEE 436533 3518 \N \N 6046583 2025-03-20 09:32:25.892 2025-03-20 09:32:25.892 1000 FEE 436534 650 \N \N 6046594 2025-03-20 09:33:49.217 2025-03-20 09:33:49.217 1000 FEE 436536 9183 \N \N 6046595 2025-03-20 09:33:50.257 2025-03-20 09:33:50.257 4000 FEE 436377 16830 \N \N 6046596 2025-03-20 09:33:50.257 2025-03-20 09:33:50.257 36000 TIP 436377 667 \N \N 6046602 2025-03-20 09:34:11.318 2025-03-20 09:34:11.318 3300 FEE 436509 2039 \N \N 6046603 2025-03-20 09:34:11.318 2025-03-20 09:34:11.318 29700 TIP 436509 2437 \N \N 6046614 2025-03-20 09:36:47.745 2025-03-20 09:36:47.745 3300 FEE 436493 21088 \N \N 6046615 2025-03-20 09:36:47.745 2025-03-20 09:36:47.745 29700 TIP 436493 2156 \N \N 6046641 2025-03-20 09:40:23.13 2025-03-20 09:40:23.13 3000 FEE 436546 9350 \N \N 6046642 2025-03-20 09:40:23.13 2025-03-20 09:40:23.13 27000 TIP 436546 17638 \N \N 6046683 2025-03-20 09:46:29.072 2025-03-20 09:46:29.072 100 FEE 436460 19668 \N \N 6046684 2025-03-20 09:46:29.072 2025-03-20 09:46:29.072 900 TIP 436460 2670 \N \N 6046695 2025-03-20 09:47:36.746 2025-03-20 09:47:36.746 2100 FEE 436459 1003 \N \N 6046696 2025-03-20 09:47:36.746 2025-03-20 09:47:36.746 18900 TIP 436459 910 \N \N 6046705 2025-03-20 09:47:54.039 2025-03-20 09:47:54.039 2100 FEE 436449 8985 \N \N 6046706 2025-03-20 09:47:54.039 2025-03-20 09:47:54.039 18900 TIP 436449 21442 \N \N 6046725 2025-03-20 09:50:13.141 2025-03-20 09:50:13.141 1000 FEE 435906 21062 \N \N 6046726 2025-03-20 09:50:13.141 2025-03-20 09:50:13.141 9000 TIP 435906 9982 \N \N 6046730 2025-03-20 09:50:20.566 2025-03-20 09:50:20.566 1000 FEE 434851 9084 \N \N 6046731 2025-03-20 09:50:20.566 2025-03-20 09:50:20.566 9000 TIP 434851 21314 \N \N 6046732 2025-03-20 09:50:23.169 2025-03-20 09:50:23.169 2100 FEE 429739 9356 \N \N 6046733 2025-03-20 09:50:23.169 2025-03-20 09:50:23.169 18900 TIP 429739 17741 \N \N 6046749 2025-03-20 09:52:58.863 2025-03-20 09:52:58.863 2100 FEE 436493 20619 \N \N 6046750 2025-03-20 09:52:58.863 2025-03-20 09:52:58.863 18900 TIP 436493 21296 \N \N 6046770 2025-03-20 09:54:45.488 2025-03-20 09:54:45.488 2100 FEE 436508 732 \N \N 6046771 2025-03-20 09:54:45.488 2025-03-20 09:54:45.488 18900 TIP 436508 21603 \N \N 6046797 2025-03-20 09:57:29.662 2025-03-20 09:57:29.662 2100 FEE 436244 18930 \N \N 6046798 2025-03-20 09:57:29.662 2025-03-20 09:57:29.662 18900 TIP 436244 4754 \N \N 6046805 2025-03-20 09:59:19.206 2025-03-20 09:59:19.206 1000 FEE 436559 10536 \N \N 6046806 2025-03-20 09:59:55.905 2025-03-20 09:59:55.905 100000 FEE 436560 2719 \N \N 6046844 2025-03-20 10:03:33.783 2025-03-20 10:03:33.783 1000 FEE 436565 831 \N \N 6046864 2025-03-20 10:07:33.061 2025-03-20 10:07:33.061 2300 FEE 436537 15762 \N \N 6046865 2025-03-20 10:07:33.061 2025-03-20 10:07:33.061 20700 TIP 436537 10690 \N \N 6046866 2025-03-20 10:07:33.215 2025-03-20 10:07:33.215 2300 FEE 436537 21262 \N \N 6046867 2025-03-20 10:07:33.215 2025-03-20 10:07:33.215 20700 TIP 436537 11395 \N \N 6046898 2025-03-20 10:08:33.601 2025-03-20 10:08:33.601 2300 FEE 436499 14990 \N \N 6046899 2025-03-20 10:08:33.601 2025-03-20 10:08:33.601 20700 TIP 436499 20509 \N \N 6046900 2025-03-20 10:08:45.039 2025-03-20 10:08:45.039 2100 FEE 436560 666 \N \N 6046901 2025-03-20 10:08:45.039 2025-03-20 10:08:45.039 18900 TIP 436560 16594 \N \N 6046907 2025-03-20 10:09:30.428 2025-03-20 10:09:30.428 8300 FEE 436499 1012 \N \N 6046908 2025-03-20 10:09:30.428 2025-03-20 10:09:30.428 74700 TIP 436499 20099 \N \N 6046931 2025-03-20 10:09:55.108 2025-03-20 10:09:55.108 8300 FEE 436566 2508 \N \N 6046932 2025-03-20 10:09:55.108 2025-03-20 10:09:55.108 74700 TIP 436566 20490 \N \N 6046933 2025-03-20 10:09:55.247 2025-03-20 10:09:55.247 8300 FEE 436566 4250 \N \N 6046934 2025-03-20 10:09:55.247 2025-03-20 10:09:55.247 74700 TIP 436566 1983 \N \N 6046937 2025-03-20 10:09:55.645 2025-03-20 10:09:55.645 8300 FEE 436566 3729 \N \N 6046938 2025-03-20 10:09:55.645 2025-03-20 10:09:55.645 74700 TIP 436566 12959 \N \N 6046941 2025-03-20 10:09:55.829 2025-03-20 10:09:55.829 8300 FEE 436566 15549 \N \N 6046942 2025-03-20 10:09:55.829 2025-03-20 10:09:55.829 74700 TIP 436566 1772 \N \N 6046952 2025-03-20 10:10:36.285 2025-03-20 10:10:36.285 1000 FEE 436562 17592 \N \N 6046953 2025-03-20 10:10:36.285 2025-03-20 10:10:36.285 9000 TIP 436562 21520 \N \N 6046977 2025-03-20 10:11:15.555 2025-03-20 10:11:15.555 1100 FEE 385935 1122 \N \N 6046978 2025-03-20 10:11:15.555 2025-03-20 10:11:15.555 9900 TIP 385935 8469 \N \N 6046998 2025-03-20 10:12:50.363 2025-03-20 10:12:50.363 1000 FEE 436575 3342 \N \N 6047013 2025-03-20 10:14:20.17 2025-03-20 10:14:20.17 2100 FEE 435711 663 \N \N 6047014 2025-03-20 10:14:20.17 2025-03-20 10:14:20.17 18900 TIP 435711 14080 \N \N 6047017 2025-03-20 10:14:58.218 2025-03-20 10:14:58.218 1100 FEE 435453 15843 \N \N 6047018 2025-03-20 10:14:58.218 2025-03-20 10:14:58.218 9900 TIP 435453 15858 \N \N 6047030 2025-03-20 10:16:55.234 2025-03-20 10:16:55.234 1000 FEE 436577 638 \N \N 6047039 2025-03-20 10:18:16.707 2025-03-20 10:18:16.707 3000 FEE 436577 21713 \N \N 6047040 2025-03-20 10:18:16.707 2025-03-20 10:18:16.707 27000 TIP 436577 20597 \N \N 6047060 2025-03-20 10:24:11.542 2025-03-20 10:24:11.542 1000 FEE 436407 16638 \N \N 6047061 2025-03-20 10:24:11.542 2025-03-20 10:24:11.542 9000 TIP 436407 19930 \N \N 6047086 2025-03-20 10:33:36.317 2025-03-20 10:33:36.317 3000 FEE 436560 15728 \N \N 6047087 2025-03-20 10:33:36.317 2025-03-20 10:33:36.317 27000 TIP 436560 20825 \N \N 6047094 2025-03-20 10:33:43.553 2025-03-20 10:33:43.553 1000 FEE 436511 20624 \N \N 6047095 2025-03-20 10:33:43.553 2025-03-20 10:33:43.553 9000 TIP 436511 891 \N \N 6047104 2025-03-20 10:38:22.702 2025-03-20 10:38:22.702 10000 FEE 436584 21405 \N \N 6047120 2025-03-20 10:41:39.72 2025-03-20 10:41:39.72 2100 FEE 436358 5455 \N \N 6047121 2025-03-20 10:41:39.72 2025-03-20 10:41:39.72 18900 TIP 436358 11999 \N \N 6047133 2025-03-20 10:42:33.116 2025-03-20 10:42:33.116 1000 FEE 435873 1124 \N \N 6047134 2025-03-20 10:42:33.116 2025-03-20 10:42:33.116 9000 TIP 435873 954 \N \N 6047137 2025-03-20 10:42:50.961 2025-03-20 10:42:50.961 2100 FEE 436383 11829 \N \N 6047138 2025-03-20 10:42:50.961 2025-03-20 10:42:50.961 18900 TIP 436383 1552 \N \N 6047151 2025-03-20 10:46:34.118 2025-03-20 10:46:34.118 210000 FEE 436593 2327 \N \N 6047154 2025-03-20 10:46:34.874 2025-03-20 10:46:34.874 1100 FEE 436493 8954 \N \N 6047155 2025-03-20 10:46:34.874 2025-03-20 10:46:34.874 9900 TIP 436493 1038 \N \N 6047170 2025-03-20 10:50:26.498 2025-03-20 10:50:26.498 97000 FEE 436596 18630 \N \N 6047178 2025-03-20 10:55:12.542 2025-03-20 10:55:12.542 1000 FEE 436597 10060 \N \N 6047207 2025-03-20 10:55:47.587 2025-03-20 10:55:47.587 300 FEE 436474 917 \N \N 6047208 2025-03-20 10:55:47.587 2025-03-20 10:55:47.587 2700 TIP 436474 12561 \N \N 6047240 2025-03-20 10:59:24.176 2025-03-20 10:59:24.176 2100 FEE 436440 2681 \N \N 6047241 2025-03-20 10:59:24.176 2025-03-20 10:59:24.176 18900 TIP 436440 20891 \N \N 6047267 2025-03-20 11:02:13.177 2025-03-20 11:02:13.177 1000 FEE 436601 1135 \N \N 6047279 2025-03-20 11:04:30.38 2025-03-20 11:04:30.38 9000 FEE 436566 21263 \N \N 6047280 2025-03-20 11:04:30.38 2025-03-20 11:04:30.38 81000 TIP 436566 3417 \N \N 6047291 2025-03-20 11:05:24.927 2025-03-20 11:05:24.927 0 FEE 436605 18441 \N \N 6047294 2025-03-20 11:06:22.015 2025-03-20 11:06:22.015 5500 FEE 436599 1488 \N \N 6047295 2025-03-20 11:06:22.015 2025-03-20 11:06:22.015 49500 TIP 436599 10979 \N \N 6047303 2025-03-20 11:07:27.244 2025-03-20 11:07:27.244 100 FEE 436584 21303 \N \N 6047304 2025-03-20 11:07:27.244 2025-03-20 11:07:27.244 900 TIP 436584 4802 \N \N 6047322 2025-03-20 11:09:02.359 2025-03-20 11:09:02.359 2300 FEE 436605 1823 \N \N 6113097 2025-03-26 05:42:36.433 2025-03-26 05:42:36.433 6900 FEE 443272 17103 \N \N 6113098 2025-03-26 05:42:36.433 2025-03-26 05:42:36.433 62100 TIP 443272 18526 \N \N 6113117 2025-03-26 05:43:49.31 2025-03-26 05:43:49.31 1000 FEE 443582 1447 \N \N 6113121 2025-03-26 05:44:31.792 2025-03-26 05:44:31.792 2100 FEE 443489 19333 \N \N 6113122 2025-03-26 05:44:31.792 2025-03-26 05:44:31.792 18900 TIP 443489 16124 \N \N 6113155 2025-03-26 05:46:08.313 2025-03-26 05:46:08.313 300 FEE 443545 12946 \N \N 6113156 2025-03-26 05:46:08.313 2025-03-26 05:46:08.313 2700 TIP 443545 14959 \N \N 6113157 2025-03-26 05:46:08.549 2025-03-26 05:46:08.549 300 FEE 443545 19394 \N \N 6113158 2025-03-26 05:46:08.549 2025-03-26 05:46:08.549 2700 TIP 443545 4474 \N \N 6113159 2025-03-26 05:46:08.798 2025-03-26 05:46:08.798 300 FEE 443545 16354 \N \N 6113160 2025-03-26 05:46:08.798 2025-03-26 05:46:08.798 2700 TIP 443545 15139 \N \N 6113189 2025-03-26 05:46:12.495 2025-03-26 05:46:12.495 300 FEE 442904 15409 \N \N 6113190 2025-03-26 05:46:12.495 2025-03-26 05:46:12.495 2700 TIP 442904 738 \N \N 6113195 2025-03-26 05:46:12.961 2025-03-26 05:46:12.961 300 FEE 442904 21672 \N \N 6113196 2025-03-26 05:46:12.961 2025-03-26 05:46:12.961 2700 TIP 442904 21248 \N \N 6113208 2025-03-26 05:46:14.108 2025-03-26 05:46:14.108 300 FEE 442904 2681 \N \N 6113209 2025-03-26 05:46:14.108 2025-03-26 05:46:14.108 2700 TIP 442904 10549 \N \N 6113222 2025-03-26 05:46:44.599 2025-03-26 05:46:44.599 10000 FEE 443561 15941 \N \N 6113223 2025-03-26 05:46:44.599 2025-03-26 05:46:44.599 90000 TIP 443561 640 \N \N 6113229 2025-03-26 05:47:06.672 2025-03-26 05:47:06.672 2100 FEE 443274 7654 \N \N 6113230 2025-03-26 05:47:06.672 2025-03-26 05:47:06.672 18900 TIP 443274 1692 \N \N 6113247 2025-03-26 05:47:47.057 2025-03-26 05:47:47.057 800 FEE 443339 11395 \N \N 6113248 2025-03-26 05:47:47.057 2025-03-26 05:47:47.057 7200 TIP 443339 994 \N \N 6113275 2025-03-26 05:49:59.483 2025-03-26 05:49:59.483 1000 FEE 443573 18241 \N \N 6113276 2025-03-26 05:49:59.483 2025-03-26 05:49:59.483 9000 TIP 443573 2961 \N \N 6113319 2025-03-26 05:53:17.629 2025-03-26 05:53:17.629 1000 FEE 443598 15337 \N \N 6113320 2025-03-26 05:53:17.799 2025-03-26 05:53:17.799 10000 FEE 443577 925 \N \N 6113321 2025-03-26 05:53:17.799 2025-03-26 05:53:17.799 90000 TIP 443577 14731 \N \N 6113351 2025-03-26 05:54:56.004 2025-03-26 05:54:56.004 1000 FEE 443399 12821 \N \N 6113352 2025-03-26 05:54:56.004 2025-03-26 05:54:56.004 9000 TIP 443399 1631 \N \N 6113355 2025-03-26 05:54:59.379 2025-03-26 05:54:59.379 1000 FEE 443603 716 \N \N 6113389 2025-03-26 05:57:08.03 2025-03-26 05:57:08.03 5000 FEE 443396 9820 \N \N 6113390 2025-03-26 05:57:08.03 2025-03-26 05:57:08.03 45000 TIP 443396 18494 \N \N 6113401 2025-03-26 05:58:05.427 2025-03-26 05:58:05.427 0 FEE 443609 999 \N \N 6113402 2025-03-26 05:58:09.457 2025-03-26 05:58:09.457 1000 FEE 443612 10007 \N \N 6113403 2025-03-26 05:58:10.469 2025-03-26 05:58:10.469 5700 FEE 443336 16124 \N \N 6113404 2025-03-26 05:58:10.469 2025-03-26 05:58:10.469 51300 TIP 443336 828 \N \N 6113468 2025-03-26 06:01:18.815 2025-03-26 06:01:18.815 7700 FEE 443617 1000 \N \N 6113469 2025-03-26 06:01:18.815 2025-03-26 06:01:18.815 69300 TIP 443617 21482 \N \N 6113499 2025-03-26 06:02:11.629 2025-03-26 06:02:11.629 1700 FEE 443616 2111 \N \N 6113500 2025-03-26 06:02:11.629 2025-03-26 06:02:11.629 15300 TIP 443616 20117 \N \N 6113501 2025-03-26 06:02:11.813 2025-03-26 06:02:11.813 1700 FEE 443616 14731 \N \N 6113502 2025-03-26 06:02:11.813 2025-03-26 06:02:11.813 15300 TIP 443616 14939 \N \N 6113511 2025-03-26 06:02:25.459 2025-03-26 06:02:25.459 1700 FEE 443610 4654 \N \N 6113512 2025-03-26 06:02:25.459 2025-03-26 06:02:25.459 15300 TIP 443610 9920 \N \N 6113516 2025-03-26 06:02:56.758 2025-03-26 06:02:56.758 100 FEE 443617 13574 \N \N 6113517 2025-03-26 06:02:56.758 2025-03-26 06:02:56.758 900 TIP 443617 6137 \N \N 6113533 2025-03-26 06:03:16.912 2025-03-26 06:03:16.912 10000 FEE 443629 2952 \N \N 6113550 2025-03-26 06:03:49.424 2025-03-26 06:03:49.424 1000 FEE 443633 10311 \N \N 6113591 2025-03-26 06:04:38.424 2025-03-26 06:04:38.424 1000 FEE 443639 16594 \N \N 6113603 2025-03-26 06:05:03.073 2025-03-26 06:05:03.073 10000 FEE 443641 16410 \N \N 6113604 2025-03-26 06:05:03.073 2025-03-26 06:05:03.073 90000 TIP 443641 11716 \N \N 6113609 2025-03-26 06:05:26.981 2025-03-26 06:05:26.981 2100 FEE 443641 21274 \N \N 6113610 2025-03-26 06:05:26.981 2025-03-26 06:05:26.981 18900 TIP 443641 20511 \N \N 6113617 2025-03-26 06:05:33.255 2025-03-26 06:05:33.255 900 FEE 443613 17148 \N \N 6113618 2025-03-26 06:05:33.255 2025-03-26 06:05:33.255 8100 TIP 443613 697 \N \N 6113669 2025-03-26 06:09:40.839 2025-03-26 06:09:40.839 2700 FEE 443624 15075 \N \N 6113670 2025-03-26 06:09:40.839 2025-03-26 06:09:40.839 24300 TIP 443624 15075 \N \N 6113675 2025-03-26 06:09:59.024 2025-03-26 06:09:59.024 5700 FEE 443652 5942 \N \N 6113676 2025-03-26 06:09:59.024 2025-03-26 06:09:59.024 51300 TIP 443652 826 \N \N 6113683 2025-03-26 06:10:31.045 2025-03-26 06:10:31.045 1000 FEE 443653 7960 \N \N 6113686 2025-03-26 06:10:37.335 2025-03-26 06:10:37.335 2700 FEE 443545 5942 \N \N 6113687 2025-03-26 06:10:37.335 2025-03-26 06:10:37.335 24300 TIP 443545 11609 \N \N 6113700 2025-03-26 06:10:55.982 2025-03-26 06:10:55.982 0 FEE 443649 859 \N \N 6113701 2025-03-26 06:10:58.739 2025-03-26 06:10:58.739 1000 FEE 443654 1751 \N \N 6113724 2025-03-26 06:12:36.335 2025-03-26 06:12:36.335 7700 FEE 443427 19417 \N \N 6113725 2025-03-26 06:12:36.335 2025-03-26 06:12:36.335 69300 TIP 443427 714 \N \N 6113758 2025-03-26 06:14:22.893 2025-03-26 06:14:22.893 1000 FEE 443617 12222 \N \N 6113759 2025-03-26 06:14:22.893 2025-03-26 06:14:22.893 9000 TIP 443617 27 \N \N 6113111 2025-03-26 05:43:02.537 2025-03-26 05:43:02.537 300 FEE 443554 21184 \N \N 6113112 2025-03-26 05:43:02.537 2025-03-26 05:43:02.537 2700 TIP 443554 20490 \N \N 6113119 2025-03-26 05:44:22.129 2025-03-26 05:44:22.129 2100 FEE 443545 712 \N \N 6113120 2025-03-26 05:44:22.129 2025-03-26 05:44:22.129 18900 TIP 443545 2061 \N \N 6113133 2025-03-26 05:45:55.824 2025-03-26 05:45:55.824 7700 FEE 443274 7659 \N \N 6113134 2025-03-26 05:45:55.824 2025-03-26 05:45:55.824 69300 TIP 443274 10302 \N \N 6113147 2025-03-26 05:45:57.731 2025-03-26 05:45:57.731 7700 FEE 443272 3347 \N \N 6113148 2025-03-26 05:45:57.731 2025-03-26 05:45:57.731 69300 TIP 443272 13249 \N \N 6113161 2025-03-26 05:46:09 2025-03-26 05:46:09 300 FEE 443545 12566 \N \N 6113162 2025-03-26 05:46:09 2025-03-26 05:46:09 2700 TIP 443545 13327 \N \N 6113167 2025-03-26 05:46:09.704 2025-03-26 05:46:09.704 300 FEE 443545 6058 \N \N 6113168 2025-03-26 05:46:09.704 2025-03-26 05:46:09.704 2700 TIP 443545 16912 \N \N 6113169 2025-03-26 05:46:09.95 2025-03-26 05:46:09.95 300 FEE 443545 19806 \N \N 6113170 2025-03-26 05:46:09.95 2025-03-26 05:46:09.95 2700 TIP 443545 10986 \N \N 6113171 2025-03-26 05:46:10.203 2025-03-26 05:46:10.203 300 FEE 443545 1272 \N \N 6113172 2025-03-26 05:46:10.203 2025-03-26 05:46:10.203 2700 TIP 443545 1244 \N \N 6113173 2025-03-26 05:46:10.448 2025-03-26 05:46:10.448 300 FEE 443545 673 \N \N 6113174 2025-03-26 05:46:10.448 2025-03-26 05:46:10.448 2700 TIP 443545 1489 \N \N 6113175 2025-03-26 05:46:10.635 2025-03-26 05:46:10.635 300 FEE 443545 3461 \N \N 6113176 2025-03-26 05:46:10.635 2025-03-26 05:46:10.635 2700 TIP 443545 20201 \N \N 6113177 2025-03-26 05:46:10.873 2025-03-26 05:46:10.873 300 FEE 443545 2829 \N \N 6113178 2025-03-26 05:46:10.873 2025-03-26 05:46:10.873 2700 TIP 443545 21639 \N \N 6113179 2025-03-26 05:46:11.123 2025-03-26 05:46:11.123 300 FEE 443545 964 \N \N 6113180 2025-03-26 05:46:11.123 2025-03-26 05:46:11.123 2700 TIP 443545 21020 \N \N 6113193 2025-03-26 05:46:12.756 2025-03-26 05:46:12.756 300 FEE 442904 13249 \N \N 6113194 2025-03-26 05:46:12.756 2025-03-26 05:46:12.756 2700 TIP 442904 20117 \N \N 6113218 2025-03-26 05:46:17.849 2025-03-26 05:46:17.849 7700 FEE 443467 12738 \N \N 6113219 2025-03-26 05:46:17.849 2025-03-26 05:46:17.849 69300 TIP 443467 7899 \N \N 6113220 2025-03-26 05:46:24.136 2025-03-26 05:46:24.136 1000 FEE 443584 18637 \N \N 6113231 2025-03-26 05:47:08.481 2025-03-26 05:47:08.481 2100 FEE 443465 16842 \N \N 6113232 2025-03-26 05:47:08.481 2025-03-26 05:47:08.481 18900 TIP 443465 15588 \N \N 6113236 2025-03-26 05:47:25.402 2025-03-26 05:47:25.402 2700 FEE 438678 19375 \N \N 6113237 2025-03-26 05:47:25.402 2025-03-26 05:47:25.402 24300 TIP 438678 4115 \N \N 6113240 2025-03-26 05:47:25.86 2025-03-26 05:47:25.86 2700 FEE 438678 2437 \N \N 6113241 2025-03-26 05:47:25.86 2025-03-26 05:47:25.86 24300 TIP 438678 16154 \N \N 6113257 2025-03-26 05:48:32.758 2025-03-26 05:48:32.758 5700 FEE 443588 20180 \N \N 6113258 2025-03-26 05:48:32.758 2025-03-26 05:48:32.758 51300 TIP 443588 20185 \N \N 6113259 2025-03-26 05:48:40.657 2025-03-26 05:48:40.657 5700 FEE 443583 21518 \N \N 6113260 2025-03-26 05:48:40.657 2025-03-26 05:48:40.657 51300 TIP 443583 21585 \N \N 6113271 2025-03-26 05:49:20.792 2025-03-26 05:49:20.792 7700 FEE 443515 1615 \N \N 6113272 2025-03-26 05:49:20.792 2025-03-26 05:49:20.792 69300 TIP 443515 2829 \N \N 6113289 2025-03-26 05:50:22.479 2025-03-26 05:50:22.479 1000 FEE 443586 714 \N \N 6113290 2025-03-26 05:50:22.479 2025-03-26 05:50:22.479 9000 TIP 443586 9669 \N \N 6113325 2025-03-26 05:53:29.398 2025-03-26 05:53:29.398 300 FEE 443532 954 \N \N 6113326 2025-03-26 05:53:29.398 2025-03-26 05:53:29.398 2700 TIP 443532 7418 \N \N 6113328 2025-03-26 05:53:40.515 2025-03-26 05:53:40.515 2500 FEE 443116 11862 \N \N 6113329 2025-03-26 05:53:40.515 2025-03-26 05:53:40.515 22500 TIP 443116 20370 \N \N 6113348 2025-03-26 05:54:48.439 2025-03-26 05:54:48.439 100000 FEE 443602 9339 \N \N 6113384 2025-03-26 05:56:17.617 2025-03-26 05:56:17.617 1000 FEE 443608 895 \N \N 6113411 2025-03-26 05:58:16.454 2025-03-26 05:58:16.454 0 FEE 443609 1803 \N \N 6113449 2025-03-26 06:00:56.03 2025-03-26 06:00:56.03 2100 FEE 443545 17570 \N \N 6113450 2025-03-26 06:00:56.03 2025-03-26 06:00:56.03 18900 TIP 443545 9494 \N \N 6113453 2025-03-26 06:01:03.153 2025-03-26 06:01:03.153 2100 FEE 443528 1712 \N \N 6113454 2025-03-26 06:01:03.153 2025-03-26 06:01:03.153 18900 TIP 443528 1162 \N \N 6113462 2025-03-26 06:01:18.285 2025-03-26 06:01:18.285 7700 FEE 443617 1983 \N \N 6113463 2025-03-26 06:01:18.285 2025-03-26 06:01:18.285 69300 TIP 443617 3400 \N \N 6113470 2025-03-26 06:01:19 2025-03-26 06:01:19 7700 FEE 443617 2844 \N \N 6113471 2025-03-26 06:01:19 2025-03-26 06:01:19 69300 TIP 443617 13174 \N \N 6113482 2025-03-26 06:01:20.653 2025-03-26 06:01:20.653 7700 FEE 443617 1549 \N \N 6113483 2025-03-26 06:01:20.653 2025-03-26 06:01:20.653 69300 TIP 443617 5499 \N \N 6113488 2025-03-26 06:01:36.057 2025-03-26 06:01:36.057 10000 FEE 443617 630 \N \N 6113489 2025-03-26 06:01:36.057 2025-03-26 06:01:36.057 90000 TIP 443617 20826 \N \N 6113492 2025-03-26 06:02:05.759 2025-03-26 06:02:05.759 3100 FEE 443603 11516 \N \N 6113493 2025-03-26 06:02:05.759 2025-03-26 06:02:05.759 27900 TIP 443603 21334 \N \N 6113496 2025-03-26 06:02:06.35 2025-03-26 06:02:06.35 1700 FEE 443616 6058 \N \N 6113497 2025-03-26 06:02:06.35 2025-03-26 06:02:06.35 15300 TIP 443616 17552 \N \N 6113504 2025-03-26 06:02:17.651 2025-03-26 06:02:17.651 500 FEE 443601 5646 \N \N 6113505 2025-03-26 06:02:17.651 2025-03-26 06:02:17.651 4500 TIP 443601 928 \N \N 6113509 2025-03-26 06:02:25.296 2025-03-26 06:02:25.296 1700 FEE 443610 11491 \N \N 6113510 2025-03-26 06:02:25.296 2025-03-26 06:02:25.296 15300 TIP 443610 12049 \N \N 6046677 2025-03-20 09:46:27.9 2025-03-20 09:46:27.9 1000 FEE 436514 7395 \N \N 6046678 2025-03-20 09:46:27.9 2025-03-20 09:46:27.9 9000 TIP 436514 7847 \N \N 6046699 2025-03-20 09:47:44.999 2025-03-20 09:47:44.999 2100 FEE 436493 9366 \N \N 6046700 2025-03-20 09:47:44.999 2025-03-20 09:47:44.999 18900 TIP 436493 1983 \N \N 6046703 2025-03-20 09:47:50.065 2025-03-20 09:47:50.065 2100 FEE 436459 21019 \N \N 6046704 2025-03-20 09:47:50.065 2025-03-20 09:47:50.065 18900 TIP 436459 1468 \N \N 6046748 2025-03-20 09:52:53.436 2025-03-20 09:52:53.436 21000 FEE 436556 19857 \N \N 6046756 2025-03-20 09:53:27.239 2025-03-20 09:53:27.239 1000 FEE 436557 5779 \N \N 6046761 2025-03-20 09:53:54.247 2025-03-20 09:53:54.247 2000 FEE 436555 1729 \N \N 6046762 2025-03-20 09:53:54.247 2025-03-20 09:53:54.247 18000 TIP 436555 6616 \N \N 6046763 2025-03-20 09:53:54.746 2025-03-20 09:53:54.746 1000 FEE 436555 1692 \N \N 6046764 2025-03-20 09:53:54.746 2025-03-20 09:53:54.746 9000 TIP 436555 651 \N \N 6046772 2025-03-20 09:54:45.752 2025-03-20 09:54:45.752 2100 FEE 436508 2123 \N \N 6046773 2025-03-20 09:54:45.752 2025-03-20 09:54:45.752 18900 TIP 436508 2098 \N \N 6046783 2025-03-20 09:55:31.837 2025-03-20 09:55:31.837 1000 FEE 436558 20563 \N \N 6046792 2025-03-20 09:56:51.506 2025-03-20 09:56:51.506 2100 FEE 436281 946 \N \N 6046793 2025-03-20 09:56:51.506 2025-03-20 09:56:51.506 18900 TIP 436281 780 \N \N 6046811 2025-03-20 10:00:16.705 2025-03-20 10:00:16.705 2000 FEE 436523 4083 \N \N 6046812 2025-03-20 10:00:16.705 2025-03-20 10:00:16.705 18000 TIP 436523 21033 \N \N 6046814 2025-03-20 10:00:32.971 2025-03-20 10:00:32.971 1100 FEE 436449 20481 \N \N 6046815 2025-03-20 10:00:32.971 2025-03-20 10:00:32.971 9900 TIP 436449 642 \N \N 6046842 2025-03-20 10:03:20.816 2025-03-20 10:03:20.816 21100 FEE 436560 21044 \N \N 6046843 2025-03-20 10:03:20.816 2025-03-20 10:03:20.816 189900 TIP 436560 9796 \N \N 6046848 2025-03-20 10:04:21.171 2025-03-20 10:04:21.171 10000 FEE 436566 894 \N \N 6046849 2025-03-20 10:05:08.23 2025-03-20 10:05:08.23 1000 FEE 436567 16789 \N \N 6046858 2025-03-20 10:06:48.107 2025-03-20 10:06:48.107 1100 FEE 435488 20906 \N \N 6046859 2025-03-20 10:06:48.107 2025-03-20 10:06:48.107 9900 TIP 435488 1009 \N \N 6046862 2025-03-20 10:07:22.771 2025-03-20 10:07:22.771 1100 FEE 435610 10638 \N \N 6046863 2025-03-20 10:07:22.771 2025-03-20 10:07:22.771 9900 TIP 435610 9107 \N \N 6046868 2025-03-20 10:07:33.298 2025-03-20 10:07:33.298 2300 FEE 436537 4989 \N \N 6046869 2025-03-20 10:07:33.298 2025-03-20 10:07:33.298 20700 TIP 436537 641 \N \N 6046870 2025-03-20 10:07:33.551 2025-03-20 10:07:33.551 4600 FEE 436537 14650 \N \N 6046871 2025-03-20 10:07:33.551 2025-03-20 10:07:33.551 41400 TIP 436537 11491 \N \N 6046894 2025-03-20 10:08:33.319 2025-03-20 10:08:33.319 2300 FEE 436499 19117 \N \N 6046895 2025-03-20 10:08:33.319 2025-03-20 10:08:33.319 20700 TIP 436499 20812 \N \N 6046896 2025-03-20 10:08:33.462 2025-03-20 10:08:33.462 2300 FEE 436499 716 \N \N 6046897 2025-03-20 10:08:33.462 2025-03-20 10:08:33.462 20700 TIP 436499 16876 \N \N 6046911 2025-03-20 10:09:31.432 2025-03-20 10:09:31.432 8300 FEE 436499 657 \N \N 6046912 2025-03-20 10:09:31.432 2025-03-20 10:09:31.432 74700 TIP 436499 627 \N \N 6046925 2025-03-20 10:09:54.752 2025-03-20 10:09:54.752 8300 FEE 436566 17713 \N \N 6046926 2025-03-20 10:09:54.752 2025-03-20 10:09:54.752 74700 TIP 436566 19581 \N \N 6046943 2025-03-20 10:09:55.907 2025-03-20 10:09:55.907 8300 FEE 436566 5057 \N \N 6046944 2025-03-20 10:09:55.907 2025-03-20 10:09:55.907 74700 TIP 436566 2013 \N \N 6046949 2025-03-20 10:09:56.791 2025-03-20 10:09:56.791 8300 FEE 436566 13365 \N \N 6046950 2025-03-20 10:09:56.791 2025-03-20 10:09:56.791 74700 TIP 436566 11938 \N \N 6046973 2025-03-20 10:11:15.155 2025-03-20 10:11:15.155 1100 FEE 385935 9450 \N \N 6046974 2025-03-20 10:11:15.155 2025-03-20 10:11:15.155 9900 TIP 385935 9366 \N \N 6046975 2025-03-20 10:11:15.284 2025-03-20 10:11:15.284 1100 FEE 385935 9109 \N \N 6046976 2025-03-20 10:11:15.284 2025-03-20 10:11:15.284 9900 TIP 385935 20612 \N \N 6047024 2025-03-20 10:15:36.534 2025-03-20 10:15:36.534 4200 FEE 436560 20922 \N \N 6047025 2025-03-20 10:15:36.534 2025-03-20 10:15:36.534 37800 TIP 436560 9611 \N \N 6047026 2025-03-20 10:15:53.482 2025-03-20 10:15:53.482 1000 FEE 436576 12911 \N \N 6047027 2025-03-20 10:16:01.779 2025-03-20 10:16:01.779 1100 FEE 436029 20841 \N \N 6047028 2025-03-20 10:16:01.779 2025-03-20 10:16:01.779 9900 TIP 436029 718 \N \N 6047072 2025-03-20 10:28:50.355 2025-03-20 10:28:50.355 1100 FEE 436572 14669 \N \N 6047073 2025-03-20 10:28:50.355 2025-03-20 10:28:50.355 9900 TIP 436572 12976 \N \N 6047106 2025-03-20 10:39:23.079 2025-03-20 10:39:23.079 0 FEE 436585 11091 \N \N 6047124 2025-03-20 10:41:53.25 2025-03-20 10:41:53.25 2100 FEE 436585 21701 \N \N 6047125 2025-03-20 10:41:53.25 2025-03-20 10:41:53.25 18900 TIP 436585 10536 \N \N 6047130 2025-03-20 10:42:21.908 2025-03-20 10:42:21.908 1000 FEE 436588 2459 \N \N 6047165 2025-03-20 10:48:39.21 2025-03-20 10:48:39.21 10000 FEE 433208 9378 \N \N 6047166 2025-03-20 10:48:39.21 2025-03-20 10:48:39.21 90000 TIP 433208 6164 \N \N 6047181 2025-03-20 10:55:39.638 2025-03-20 10:55:39.638 2300 FEE 436593 7425 \N \N 6047182 2025-03-20 10:55:39.638 2025-03-20 10:55:39.638 20700 TIP 436593 9167 \N \N 6047187 2025-03-20 10:55:40.147 2025-03-20 10:55:40.147 2300 FEE 436593 17568 \N \N 6047188 2025-03-20 10:55:40.147 2025-03-20 10:55:40.147 20700 TIP 436593 2609 \N \N 6047189 2025-03-20 10:55:40.258 2025-03-20 10:55:40.258 2300 FEE 436593 11819 \N \N 6047190 2025-03-20 10:55:40.258 2025-03-20 10:55:40.258 20700 TIP 436593 701 \N \N 6047214 2025-03-20 10:59:15.642 2025-03-20 10:59:15.642 2100 FEE 436493 2711 \N \N 6047215 2025-03-20 10:59:15.642 2025-03-20 10:59:15.642 18900 TIP 436493 19576 \N \N 6047232 2025-03-20 10:59:21.752 2025-03-20 10:59:21.752 2100 FEE 436508 1105 \N \N 6047233 2025-03-20 10:59:21.752 2025-03-20 10:59:21.752 18900 TIP 436508 2674 \N \N 6047248 2025-03-20 10:59:26.201 2025-03-20 10:59:26.201 100 FEE 436357 11298 \N \N 6047249 2025-03-20 10:59:26.201 2025-03-20 10:59:26.201 900 TIP 436357 15091 \N \N 6047250 2025-03-20 10:59:27.059 2025-03-20 10:59:27.059 2100 FEE 436174 21709 \N \N 6047251 2025-03-20 10:59:27.059 2025-03-20 10:59:27.059 18900 TIP 436174 21514 \N \N 6047305 2025-03-20 11:07:28.141 2025-03-20 11:07:28.141 900 FEE 436584 11153 \N \N 6047306 2025-03-20 11:07:28.141 2025-03-20 11:07:28.141 8100 TIP 436584 18101 \N \N 6047318 2025-03-20 11:09:01.794 2025-03-20 11:09:01.794 2300 FEE 436605 18402 \N \N 6047319 2025-03-20 11:09:01.794 2025-03-20 11:09:01.794 20700 TIP 436605 16296 \N \N 6047332 2025-03-20 11:09:03.587 2025-03-20 11:09:03.587 2300 FEE 436605 16513 \N \N 6047333 2025-03-20 11:09:03.587 2025-03-20 11:09:03.587 20700 TIP 436605 12334 \N \N 6047338 2025-03-20 11:09:04.097 2025-03-20 11:09:04.097 2300 FEE 436605 8506 \N \N 6047339 2025-03-20 11:09:04.097 2025-03-20 11:09:04.097 20700 TIP 436605 10944 \N \N 6047399 2025-03-20 11:09:13.242 2025-03-20 11:09:13.242 1000 FEE 436326 12566 \N \N 6047400 2025-03-20 11:09:13.242 2025-03-20 11:09:13.242 9000 TIP 436326 16347 \N \N 6047404 2025-03-20 11:09:13.821 2025-03-20 11:09:13.821 1000 FEE 436326 21349 \N \N 6047405 2025-03-20 11:09:13.821 2025-03-20 11:09:13.821 9000 TIP 436326 13217 \N \N 6047416 2025-03-20 11:09:19.352 2025-03-20 11:09:19.352 1000 FEE 436326 917 \N \N 6047417 2025-03-20 11:09:19.352 2025-03-20 11:09:19.352 9000 TIP 436326 7580 \N \N 6047418 2025-03-20 11:09:19.544 2025-03-20 11:09:19.544 1000 FEE 436326 1647 \N \N 6047419 2025-03-20 11:09:19.544 2025-03-20 11:09:19.544 9000 TIP 436326 1814 \N \N 6047424 2025-03-20 11:09:20.009 2025-03-20 11:09:20.009 1000 FEE 436326 18423 \N \N 6047425 2025-03-20 11:09:20.009 2025-03-20 11:09:20.009 9000 TIP 436326 20511 \N \N 6047436 2025-03-20 11:09:31.679 2025-03-20 11:09:31.679 90000 FEE 436566 11819 \N \N 6047437 2025-03-20 11:09:31.679 2025-03-20 11:09:31.679 810000 TIP 436566 10302 \N \N 6047489 2025-03-20 11:10:50.105 2025-03-20 11:10:50.105 1000 FEE 436326 18178 \N \N 6047490 2025-03-20 11:10:50.105 2025-03-20 11:10:50.105 9000 TIP 436326 12139 \N \N 6047493 2025-03-20 11:10:50.421 2025-03-20 11:10:50.421 1000 FEE 436326 20073 \N \N 6047494 2025-03-20 11:10:50.421 2025-03-20 11:10:50.421 9000 TIP 436326 16301 \N \N 6144251 2025-03-28 11:38:15.531 2025-03-28 11:38:15.531 1000 FEE 446724 14959 \N \N 6144252 2025-03-28 11:38:15.531 2025-03-28 11:38:15.531 9000 TIP 446724 21518 \N \N 6144285 2025-03-28 11:44:12.807 2025-03-28 11:44:12.807 1000 FEE 447263 18306 \N \N 6144290 2025-03-28 11:44:29.557 2025-03-28 11:44:29.557 10000 FEE 447264 998 \N \N 6144305 2025-03-28 11:46:01.991 2025-03-28 11:46:01.991 1000 POLL 446942 4624 \N \N 6144307 2025-03-28 11:46:19.86 2025-03-28 11:46:19.86 100000 FEE 447251 17991 \N \N 6144308 2025-03-28 11:46:19.86 2025-03-28 11:46:19.86 900000 TIP 447251 20904 \N \N 6144315 2025-03-28 11:47:14.662 2025-03-28 11:47:14.662 7700 FEE 447199 2347 \N \N 6144316 2025-03-28 11:47:14.662 2025-03-28 11:47:14.662 69300 TIP 447199 27 \N \N 6144324 2025-03-28 11:47:37.841 2025-03-28 11:47:37.841 7700 FEE 447260 9364 \N \N 6144325 2025-03-28 11:47:37.841 2025-03-28 11:47:37.841 69300 TIP 447260 20646 \N \N 6144326 2025-03-28 11:47:40.03 2025-03-28 11:47:40.03 2100 FEE 447264 20913 \N \N 6144327 2025-03-28 11:47:40.03 2025-03-28 11:47:40.03 18900 TIP 447264 16154 \N \N 6144330 2025-03-28 11:47:41.105 2025-03-28 11:47:41.105 4200 FEE 447222 21249 \N \N 6144331 2025-03-28 11:47:41.105 2025-03-28 11:47:41.105 37800 TIP 447222 886 \N \N 6144332 2025-03-28 11:47:41.179 2025-03-28 11:47:41.179 2100 FEE 447255 17976 \N \N 6144333 2025-03-28 11:47:41.179 2025-03-28 11:47:41.179 18900 TIP 447255 11165 \N \N 6144365 2025-03-28 11:50:18.674 2025-03-28 11:50:18.674 2100 FEE 446904 2330 \N \N 6144366 2025-03-28 11:50:18.674 2025-03-28 11:50:18.674 18900 TIP 446904 1584 \N \N 6144387 2025-03-28 11:51:08.159 2025-03-28 11:51:08.159 20000 FEE 447264 12769 \N \N 6144388 2025-03-28 11:51:08.159 2025-03-28 11:51:08.159 180000 TIP 447264 2309 \N \N 6144389 2025-03-28 11:51:12.949 2025-03-28 11:51:12.949 1000 FEE 447275 5003 \N \N 6144412 2025-03-28 11:55:40.708 2025-03-28 11:55:40.708 1000 FEE 447279 1394 \N \N 6144459 2025-03-28 12:03:07.059 2025-03-28 12:03:07.059 100 FEE 447267 18717 \N \N 6144460 2025-03-28 12:03:07.059 2025-03-28 12:03:07.059 900 TIP 447267 13133 \N \N 6144468 2025-03-28 12:03:12.943 2025-03-28 12:03:12.943 900 FEE 447262 18270 \N \N 6144469 2025-03-28 12:03:12.943 2025-03-28 12:03:12.943 8100 TIP 447262 17690 \N \N 6144473 2025-03-28 12:03:45.518 2025-03-28 12:03:45.518 1000 FEE 447288 697 \N \N 6144474 2025-03-28 12:03:45.518 2025-03-28 12:03:45.518 9000 TIP 447288 21287 \N \N 6144481 2025-03-28 12:03:46.708 2025-03-28 12:03:46.708 1000 FEE 447288 2326 \N \N 6144482 2025-03-28 12:03:46.708 2025-03-28 12:03:46.708 9000 TIP 447288 1135 \N \N 6144498 2025-03-28 12:06:08.251 2025-03-28 12:06:08.251 1000 FEE 447294 21058 \N \N 6144499 2025-03-28 12:06:11.262 2025-03-28 12:06:11.262 1000 FEE 447284 733 \N \N 6144500 2025-03-28 12:06:11.262 2025-03-28 12:06:11.262 9000 TIP 447284 13753 \N \N 6144510 2025-03-28 12:07:07.927 2025-03-28 12:07:07.927 1000 FEE 447296 12049 \N \N 6144512 2025-03-28 12:07:13.156 2025-03-28 12:07:13.156 7600 FEE 447280 9366 \N \N 6144513 2025-03-28 12:07:13.156 2025-03-28 12:07:13.156 68400 TIP 447280 6149 \N \N 6144516 2025-03-28 12:07:17.077 2025-03-28 12:07:17.077 100000 FEE 447297 16284 \N \N 6144522 2025-03-28 12:07:40.388 2025-03-28 12:07:40.388 2100 FEE 447160 21083 \N \N 6046886 2025-03-20 10:08:32.825 2025-03-20 10:08:32.825 2300 FEE 436499 9353 \N \N 6046887 2025-03-20 10:08:32.825 2025-03-20 10:08:32.825 20700 TIP 436499 680 \N \N 6046903 2025-03-20 10:09:14.34 2025-03-20 10:09:14.34 1000 FEE 436569 9026 \N \N 6046927 2025-03-20 10:09:54.885 2025-03-20 10:09:54.885 8300 FEE 436566 14939 \N \N 6046928 2025-03-20 10:09:54.885 2025-03-20 10:09:54.885 74700 TIP 436566 14651 \N \N 6046954 2025-03-20 10:10:36.583 2025-03-20 10:10:36.583 1000 FEE 436562 8985 \N \N 6046955 2025-03-20 10:10:36.583 2025-03-20 10:10:36.583 9000 TIP 436562 9275 \N \N 6046965 2025-03-20 10:10:50.346 2025-03-20 10:10:50.346 1000 FEE 436572 15588 \N \N 6046966 2025-03-20 10:10:58.115 2025-03-20 10:10:58.115 1000 FEE 436344 1800 \N \N 6046967 2025-03-20 10:10:58.115 2025-03-20 10:10:58.115 9000 TIP 436344 21430 \N \N 6046971 2025-03-20 10:11:14.911 2025-03-20 10:11:14.911 1100 FEE 385935 21794 \N \N 6046972 2025-03-20 10:11:14.911 2025-03-20 10:11:14.911 9900 TIP 385935 16350 \N \N 6046989 2025-03-20 10:11:16.467 2025-03-20 10:11:16.467 1100 FEE 385935 20222 \N \N 6046990 2025-03-20 10:11:16.467 2025-03-20 10:11:16.467 9900 TIP 385935 16406 \N \N 6046999 2025-03-20 10:12:56.828 2025-03-20 10:12:56.828 2100 FEE 436508 15103 \N \N 6047000 2025-03-20 10:12:56.828 2025-03-20 10:12:56.828 18900 TIP 436508 14663 \N \N 6047041 2025-03-20 10:18:54.083 2025-03-20 10:18:54.083 1000 FEE 436578 954 \N \N 6047088 2025-03-20 10:33:42.739 2025-03-20 10:33:42.739 1000 FEE 436511 6137 \N \N 6047089 2025-03-20 10:33:42.739 2025-03-20 10:33:42.739 9000 TIP 436511 9183 \N \N 6047107 2025-03-20 10:39:28.718 2025-03-20 10:39:28.718 0 FEE 436585 21833 \N \N 6047112 2025-03-20 10:40:36.237 2025-03-20 10:40:36.237 2100 FEE 436379 21048 \N \N 6047113 2025-03-20 10:40:36.237 2025-03-20 10:40:36.237 18900 TIP 436379 1008 \N \N 6047122 2025-03-20 10:41:43.48 2025-03-20 10:41:43.48 2100 FEE 436129 9307 \N \N 6047123 2025-03-20 10:41:43.48 2025-03-20 10:41:43.48 18900 TIP 436129 1733 \N \N 6047135 2025-03-20 10:42:48.84 2025-03-20 10:42:48.84 2100 FEE 436566 15732 \N \N 6047136 2025-03-20 10:42:48.84 2025-03-20 10:42:48.84 18900 TIP 436566 21709 \N \N 6047242 2025-03-20 10:59:25.315 2025-03-20 10:59:25.315 2100 FEE 436514 704 \N \N 6047243 2025-03-20 10:59:25.315 2025-03-20 10:59:25.315 18900 TIP 436514 1890 \N \N 6047252 2025-03-20 10:59:27.491 2025-03-20 10:59:27.491 2100 FEE 436487 21090 \N \N 6047253 2025-03-20 10:59:27.491 2025-03-20 10:59:27.491 18900 TIP 436487 20454 \N \N 6047256 2025-03-20 10:59:47.508 2025-03-20 10:59:47.508 300 FEE 436589 726 \N \N 6047257 2025-03-20 10:59:47.508 2025-03-20 10:59:47.508 2700 TIP 436589 16653 \N \N 6047277 2025-03-20 11:04:29.08 2025-03-20 11:04:29.08 900 FEE 436566 654 \N \N 6047278 2025-03-20 11:04:29.08 2025-03-20 11:04:29.08 8100 TIP 436566 2213 \N \N 6047298 2025-03-20 11:06:57.918 2025-03-20 11:06:57.918 900 FEE 436523 10638 \N \N 6047299 2025-03-20 11:06:57.918 2025-03-20 11:06:57.918 8100 TIP 436523 1175 \N \N 6047309 2025-03-20 11:07:37.089 2025-03-20 11:07:37.089 900 FEE 436556 9348 \N \N 6047310 2025-03-20 11:07:37.089 2025-03-20 11:07:37.089 8100 TIP 436556 21571 \N \N 6047324 2025-03-20 11:09:02.552 2025-03-20 11:09:02.552 2300 FEE 436605 14657 \N \N 6047325 2025-03-20 11:09:02.552 2025-03-20 11:09:02.552 20700 TIP 436605 4798 \N \N 6047340 2025-03-20 11:09:04.285 2025-03-20 11:09:04.285 2300 FEE 436605 27 \N \N 6047341 2025-03-20 11:09:04.285 2025-03-20 11:09:04.285 20700 TIP 436605 2674 \N \N 6047352 2025-03-20 11:09:06.047 2025-03-20 11:09:06.047 2300 FEE 436605 17201 \N \N 6047353 2025-03-20 11:09:06.047 2025-03-20 11:09:06.047 20700 TIP 436605 10433 \N \N 6047364 2025-03-20 11:09:07.139 2025-03-20 11:09:07.139 1000 FEE 436326 14607 \N \N 6047365 2025-03-20 11:09:07.139 2025-03-20 11:09:07.139 9000 TIP 436326 16542 \N \N 6047366 2025-03-20 11:09:07.176 2025-03-20 11:09:07.176 2300 FEE 436605 21578 \N \N 6047367 2025-03-20 11:09:07.176 2025-03-20 11:09:07.176 20700 TIP 436605 11515 \N \N 6047410 2025-03-20 11:09:18.825 2025-03-20 11:09:18.825 1000 FEE 436326 1652 \N \N 6047411 2025-03-20 11:09:18.825 2025-03-20 11:09:18.825 9000 TIP 436326 9450 \N \N 6047440 2025-03-20 11:09:36.148 2025-03-20 11:09:36.148 900 FEE 436562 2176 \N \N 6047441 2025-03-20 11:09:36.148 2025-03-20 11:09:36.148 8100 TIP 436562 7809 \N \N 6047446 2025-03-20 11:09:48.275 2025-03-20 11:09:48.275 900 FEE 436585 634 \N \N 6047447 2025-03-20 11:09:48.275 2025-03-20 11:09:48.275 8100 TIP 436585 20776 \N \N 6047497 2025-03-20 11:10:53.393 2025-03-20 11:10:53.393 1000 FEE 436326 11819 \N \N 6047498 2025-03-20 11:10:53.393 2025-03-20 11:10:53.393 9000 TIP 436326 9982 \N \N 6047517 2025-03-20 11:10:57.609 2025-03-20 11:10:57.609 1000 FEE 436326 17183 \N \N 6047518 2025-03-20 11:10:57.609 2025-03-20 11:10:57.609 9000 TIP 436326 2335 \N \N 6047523 2025-03-20 11:10:58.191 2025-03-20 11:10:58.191 1000 FEE 436326 2206 \N \N 6047524 2025-03-20 11:10:58.191 2025-03-20 11:10:58.191 9000 TIP 436326 20972 \N \N 6047553 2025-03-20 11:11:00.609 2025-03-20 11:11:00.609 900000 FEE 435847 18011 \N \N 6047554 2025-03-20 11:11:00.609 2025-03-20 11:11:00.609 8100000 TIP 435847 20433 \N \N 6047557 2025-03-20 11:11:00.804 2025-03-20 11:11:00.804 1000 FEE 436326 20655 \N \N 6047558 2025-03-20 11:11:00.804 2025-03-20 11:11:00.804 9000 TIP 436326 14905 \N \N 6047627 2025-03-20 11:11:10.364 2025-03-20 11:11:10.364 1000 FEE 436326 15484 \N \N 6047628 2025-03-20 11:11:10.364 2025-03-20 11:11:10.364 9000 TIP 436326 1495 \N \N 6047629 2025-03-20 11:11:10.52 2025-03-20 11:11:10.52 1000 FEE 436326 10409 \N \N 6047630 2025-03-20 11:11:10.52 2025-03-20 11:11:10.52 9000 TIP 436326 8945 \N \N 6047665 2025-03-20 11:12:06.873 2025-03-20 11:12:06.873 10100 FEE 436582 2338 \N \N 6047666 2025-03-20 11:12:06.873 2025-03-20 11:12:06.873 90900 TIP 436582 628 \N \N 6047678 2025-03-20 11:12:45.052 2025-03-20 11:12:45.052 90000 FEE 435812 1806 \N \N 6047679 2025-03-20 11:12:45.052 2025-03-20 11:12:45.052 810000 TIP 435812 14939 \N \N 6047732 2025-03-20 11:21:43.688 2025-03-20 11:21:43.688 8300 FEE 436560 20562 \N \N 6047733 2025-03-20 11:21:43.688 2025-03-20 11:21:43.688 74700 TIP 436560 649 \N \N 6047749 2025-03-20 11:22:00.175 2025-03-20 11:22:00.175 2100 FEE 436508 13042 \N \N 6047750 2025-03-20 11:22:00.175 2025-03-20 11:22:00.175 18900 TIP 436508 661 \N \N 6047777 2025-03-20 11:23:48.972 2025-03-20 11:23:48.972 2100 FEE 436394 1298 \N \N 6047778 2025-03-20 11:23:48.972 2025-03-20 11:23:48.972 18900 TIP 436394 15148 \N \N 6047792 2025-03-20 11:25:00.185 2025-03-20 11:25:00.185 100000 FEE 436618 706 \N \N 6047848 2025-03-20 11:34:32.465 2025-03-20 11:34:32.465 1000 FEE 436628 2196 \N \N 6047849 2025-03-20 11:34:32.465 2025-03-20 11:34:32.465 9000 TIP 436628 21714 \N \N 6047870 2025-03-20 11:34:36.053 2025-03-20 11:34:36.053 1000 FEE 436628 16406 \N \N 6047871 2025-03-20 11:34:36.053 2025-03-20 11:34:36.053 9000 TIP 436628 5085 \N \N 6047874 2025-03-20 11:34:36.397 2025-03-20 11:34:36.397 1000 FEE 436628 21287 \N \N 6047875 2025-03-20 11:34:36.397 2025-03-20 11:34:36.397 9000 TIP 436628 10591 \N \N 6047886 2025-03-20 11:35:30.854 2025-03-20 11:35:30.854 2100 FEE 436355 695 \N \N 6047887 2025-03-20 11:35:30.854 2025-03-20 11:35:30.854 18900 TIP 436355 1142 \N \N 6047899 2025-03-20 11:37:09.154 2025-03-20 11:37:09.154 100 FEE 436556 19906 \N \N 6047900 2025-03-20 11:37:09.154 2025-03-20 11:37:09.154 900 TIP 436556 1552 \N \N 6047911 2025-03-20 11:38:20.265 2025-03-20 11:38:20.265 0 FEE 368845 20998 \N \N 6047938 2025-03-20 11:40:21.157 2025-03-20 11:40:21.157 8300 FEE 436499 19217 \N \N 6047939 2025-03-20 11:40:21.157 2025-03-20 11:40:21.157 74700 TIP 436499 9346 \N \N 6047946 2025-03-20 11:40:21.835 2025-03-20 11:40:21.835 8300 FEE 436499 17124 \N \N 6047947 2025-03-20 11:40:21.835 2025-03-20 11:40:21.835 74700 TIP 436499 10981 \N \N 6047950 2025-03-20 11:40:22.056 2025-03-20 11:40:22.056 8300 FEE 436499 993 \N \N 6047951 2025-03-20 11:40:22.056 2025-03-20 11:40:22.056 74700 TIP 436499 987 \N \N 6047965 2025-03-20 11:41:19.927 2025-03-20 11:41:19.927 10000 FEE 436634 1814 \N \N 6047012 2025-03-20 10:14:16.235 2025-03-20 10:14:16.235 9000 TIP 436561 3518 \N \N 6047031 2025-03-20 10:17:02.495 2025-03-20 10:17:02.495 2300 FEE 436564 4074 \N \N 6047032 2025-03-20 10:17:02.495 2025-03-20 10:17:02.495 20700 TIP 436564 18529 \N \N 6047058 2025-03-20 10:24:10.665 2025-03-20 10:24:10.665 1000 FEE 436480 21019 \N \N 6047059 2025-03-20 10:24:10.665 2025-03-20 10:24:10.665 9000 TIP 436480 9366 \N \N 6047069 2025-03-20 10:27:33.938 2025-03-20 10:27:33.938 1000 FEE 436582 17221 \N \N 6047078 2025-03-20 10:31:11.722 2025-03-20 10:31:11.722 1000 POLL 436323 2329 \N \N 6047108 2025-03-20 10:40:06.18 2025-03-20 10:40:06.18 1000 POLL 435805 6430 \N \N 6047118 2025-03-20 10:41:34.429 2025-03-20 10:41:34.429 2100 FEE 436215 1094 \N \N 6047119 2025-03-20 10:41:34.429 2025-03-20 10:41:34.429 18900 TIP 436215 15226 \N \N 6047129 2025-03-20 10:42:14.812 2025-03-20 10:42:14.812 11000 FEE 436587 1960 \N \N 6047146 2025-03-20 10:45:12.012 2025-03-20 10:45:12.012 3300 FEE 436560 2724 \N \N 6047147 2025-03-20 10:45:12.012 2025-03-20 10:45:12.012 29700 TIP 436560 21418 \N \N 6047152 2025-03-20 10:46:34.653 2025-03-20 10:46:34.653 1100 FEE 436493 4043 \N \N 6047153 2025-03-20 10:46:34.653 2025-03-20 10:46:34.653 9900 TIP 436493 17321 \N \N 6047161 2025-03-20 10:47:51.223 2025-03-20 10:47:51.223 1000 FEE 436326 19138 \N \N 6047162 2025-03-20 10:47:51.223 2025-03-20 10:47:51.223 9000 TIP 436326 736 \N \N 6047163 2025-03-20 10:48:09.804 2025-03-20 10:48:09.804 1000 FEE 436594 1092 \N \N 6047173 2025-03-20 10:51:53.449 2025-03-20 10:51:53.449 0 FEE 436585 13759 \N \N 6047179 2025-03-20 10:55:12.79 2025-03-20 10:55:12.79 1000 FEE 436598 10102 \N \N 6047183 2025-03-20 10:55:39.863 2025-03-20 10:55:39.863 2300 FEE 436593 687 \N \N 6047184 2025-03-20 10:55:39.863 2025-03-20 10:55:39.863 20700 TIP 436593 19735 \N \N 6047191 2025-03-20 10:55:40.356 2025-03-20 10:55:40.356 2300 FEE 436593 9874 \N \N 6047192 2025-03-20 10:55:40.356 2025-03-20 10:55:40.356 20700 TIP 436593 2195 \N \N 6047195 2025-03-20 10:55:41.189 2025-03-20 10:55:41.189 2300 FEE 436593 20502 \N \N 6047196 2025-03-20 10:55:41.189 2025-03-20 10:55:41.189 20700 TIP 436593 17984 \N \N 6047199 2025-03-20 10:55:41.443 2025-03-20 10:55:41.443 2300 FEE 436593 19863 \N \N 6047200 2025-03-20 10:55:41.443 2025-03-20 10:55:41.443 20700 TIP 436593 2151 \N \N 6047205 2025-03-20 10:55:42.317 2025-03-20 10:55:42.317 2300 FEE 436593 2639 \N \N 6047206 2025-03-20 10:55:42.317 2025-03-20 10:55:42.317 20700 TIP 436593 9200 \N \N 6047218 2025-03-20 10:59:16.743 2025-03-20 10:59:16.743 2100 FEE 436499 21670 \N \N 6047219 2025-03-20 10:59:16.743 2025-03-20 10:59:16.743 18900 TIP 436499 20094 \N \N 6047238 2025-03-20 10:59:23.848 2025-03-20 10:59:23.848 2100 FEE 436466 13759 \N \N 6047239 2025-03-20 10:59:23.848 2025-03-20 10:59:23.848 18900 TIP 436466 688 \N \N 6047263 2025-03-20 11:01:11.992 2025-03-20 11:01:11.992 1000 FEE 436600 20713 \N \N 6047270 2025-03-20 11:03:59.393 2025-03-20 11:03:59.393 1000 FEE 436602 7654 \N \N 6047271 2025-03-20 11:04:04.168 2025-03-20 11:04:04.168 1000 FEE 436603 21212 \N \N 6047283 2025-03-20 11:05:03.537 2025-03-20 11:05:03.537 1000 FEE 436605 13759 \N \N 6047334 2025-03-20 11:09:03.746 2025-03-20 11:09:03.746 2300 FEE 436605 1352 \N \N 6047335 2025-03-20 11:09:03.746 2025-03-20 11:09:03.746 20700 TIP 436605 16954 \N \N 6047368 2025-03-20 11:09:07.323 2025-03-20 11:09:07.323 1000 FEE 436326 9339 \N \N 6047369 2025-03-20 11:09:07.323 2025-03-20 11:09:07.323 9000 TIP 436326 20647 \N \N 6047370 2025-03-20 11:09:07.344 2025-03-20 11:09:07.344 2300 FEE 436605 9863 \N \N 6047371 2025-03-20 11:09:07.344 2025-03-20 11:09:07.344 20700 TIP 436605 21494 \N \N 6047376 2025-03-20 11:09:07.631 2025-03-20 11:09:07.631 2300 FEE 436605 669 \N \N 6047377 2025-03-20 11:09:07.631 2025-03-20 11:09:07.631 20700 TIP 436605 4048 \N \N 6047406 2025-03-20 11:09:14.114 2025-03-20 11:09:14.114 1000 FEE 436326 18473 \N \N 6047407 2025-03-20 11:09:14.114 2025-03-20 11:09:14.114 9000 TIP 436326 805 \N \N 6047412 2025-03-20 11:09:18.88 2025-03-20 11:09:18.88 1000 FEE 436326 16929 \N \N 6047413 2025-03-20 11:09:18.88 2025-03-20 11:09:18.88 9000 TIP 436326 624 \N \N 6047420 2025-03-20 11:09:19.736 2025-03-20 11:09:19.736 2300 FEE 436606 20993 \N \N 6047421 2025-03-20 11:09:19.736 2025-03-20 11:09:19.736 20700 TIP 436606 2703 \N \N 6047426 2025-03-20 11:09:20.133 2025-03-20 11:09:20.133 9000 FEE 436550 21766 \N \N 6047427 2025-03-20 11:09:20.133 2025-03-20 11:09:20.133 81000 TIP 436550 18956 \N \N 6047444 2025-03-20 11:09:47.824 2025-03-20 11:09:47.824 100 FEE 436585 3377 \N \N 6047445 2025-03-20 11:09:47.824 2025-03-20 11:09:47.824 900 TIP 436585 11417 \N \N 6047450 2025-03-20 11:09:50.069 2025-03-20 11:09:50.069 900 FEE 436590 8037 \N \N 6047451 2025-03-20 11:09:50.069 2025-03-20 11:09:50.069 8100 TIP 436590 14357 \N \N 6047456 2025-03-20 11:09:52.854 2025-03-20 11:09:52.854 10000 FEE 436608 1833 \N \N 6047459 2025-03-20 11:10:00.504 2025-03-20 11:10:00.504 900 FEE 436587 15192 \N \N 6047460 2025-03-20 11:10:00.504 2025-03-20 11:10:00.504 8100 TIP 436587 4084 \N \N 6047464 2025-03-20 11:10:20.605 2025-03-20 11:10:20.605 90000 FEE 436241 18402 \N \N 6047465 2025-03-20 11:10:20.605 2025-03-20 11:10:20.605 810000 TIP 436241 5557 \N \N 6047468 2025-03-20 11:10:27.105 2025-03-20 11:10:27.105 0 FEE 436607 18772 \N \N 6047487 2025-03-20 11:10:49.934 2025-03-20 11:10:49.934 1000 FEE 436326 9307 \N \N 6047488 2025-03-20 11:10:49.934 2025-03-20 11:10:49.934 9000 TIP 436326 21480 \N \N 6047511 2025-03-20 11:10:56.914 2025-03-20 11:10:56.914 1000 FEE 436326 1615 \N \N 6047512 2025-03-20 11:10:56.914 2025-03-20 11:10:56.914 9000 TIP 436326 5112 \N \N 6047525 2025-03-20 11:10:58.488 2025-03-20 11:10:58.488 1000 FEE 436326 18219 \N \N 6047526 2025-03-20 11:10:58.488 2025-03-20 11:10:58.488 9000 TIP 436326 2088 \N \N 6047531 2025-03-20 11:10:58.803 2025-03-20 11:10:58.803 90000 FEE 435847 5961 \N \N 6047532 2025-03-20 11:10:58.803 2025-03-20 11:10:58.803 810000 TIP 435847 1602 \N \N 6047535 2025-03-20 11:10:59.233 2025-03-20 11:10:59.233 2000 FEE 436326 20655 \N \N 6047536 2025-03-20 11:10:59.233 2025-03-20 11:10:59.233 18000 TIP 436326 5757 \N \N 6047537 2025-03-20 11:10:59.492 2025-03-20 11:10:59.492 1000 FEE 436326 14552 \N \N 6047538 2025-03-20 11:10:59.492 2025-03-20 11:10:59.492 9000 TIP 436326 4173 \N \N 6047547 2025-03-20 11:11:00.204 2025-03-20 11:11:00.204 1000 FEE 436326 1433 \N \N 6047548 2025-03-20 11:11:00.204 2025-03-20 11:11:00.204 9000 TIP 436326 15556 \N \N 6047549 2025-03-20 11:11:00.353 2025-03-20 11:11:00.353 1000 FEE 436326 14688 \N \N 6047550 2025-03-20 11:11:00.353 2025-03-20 11:11:00.353 9000 TIP 436326 9262 \N \N 6047573 2025-03-20 11:11:01.981 2025-03-20 11:11:01.981 1000 FEE 436326 4984 \N \N 6047574 2025-03-20 11:11:01.981 2025-03-20 11:11:01.981 9000 TIP 436326 18901 \N \N 6047579 2025-03-20 11:11:02.437 2025-03-20 11:11:02.437 1000 FEE 436326 4692 \N \N 6047580 2025-03-20 11:11:02.437 2025-03-20 11:11:02.437 9000 TIP 436326 13174 \N \N 6047160 2025-03-20 10:47:44.652 2025-03-20 10:47:44.652 9000 TIP 436326 8506 \N \N 6047201 2025-03-20 10:55:41.559 2025-03-20 10:55:41.559 2300 FEE 436593 21214 \N \N 6047202 2025-03-20 10:55:41.559 2025-03-20 10:55:41.559 20700 TIP 436593 20745 \N \N 6047228 2025-03-20 10:59:20.978 2025-03-20 10:59:20.978 2100 FEE 436560 12976 \N \N 6047229 2025-03-20 10:59:20.978 2025-03-20 10:59:20.978 18900 TIP 436560 10934 \N \N 6047234 2025-03-20 10:59:22.139 2025-03-20 10:59:22.139 2100 FEE 436326 1135 \N \N 6047235 2025-03-20 10:59:22.139 2025-03-20 10:59:22.139 18900 TIP 436326 12819 \N \N 6047288 2025-03-20 11:05:08.737 2025-03-20 11:05:08.737 9000 FEE 436572 15200 \N \N 6047289 2025-03-20 11:05:08.737 2025-03-20 11:05:08.737 81000 TIP 436572 16276 \N \N 6155490 2025-03-29 08:42:21.203 2025-03-29 08:42:21.203 18900 TIP 448208 10849 \N \N 6155497 2025-03-29 08:42:53.581 2025-03-29 08:42:53.581 1000 FEE 448389 1272 \N \N 6155498 2025-03-29 08:42:53.581 2025-03-29 08:42:53.581 9000 TIP 448389 15560 \N \N 6155514 2025-03-29 08:43:32.272 2025-03-29 08:43:32.272 2100 FEE 448385 1213 \N \N 6155515 2025-03-29 08:43:32.272 2025-03-29 08:43:32.272 18900 TIP 448385 15326 \N \N 6155524 2025-03-29 08:43:57.47 2025-03-29 08:43:57.47 1000 FEE 448158 5128 \N \N 6155525 2025-03-29 08:43:57.47 2025-03-29 08:43:57.47 9000 TIP 448158 17226 \N \N 6155556 2025-03-29 08:44:44.736 2025-03-29 08:44:44.736 2100 FEE 445589 1512 \N \N 6155557 2025-03-29 08:44:44.736 2025-03-29 08:44:44.736 18900 TIP 445589 2583 \N \N 6155568 2025-03-29 08:45:45.719 2025-03-29 08:45:45.719 0 FEE 448388 2309 \N \N 6155659 2025-03-29 08:54:53.467 2025-03-29 08:54:53.467 1000 FEE 448414 8004 \N \N 6155673 2025-03-29 08:56:12.09 2025-03-29 08:56:12.09 1000 POLL 448349 20854 \N \N 6155681 2025-03-29 08:57:32.043 2025-03-29 08:57:32.043 1000 FEE 448420 1195 \N \N 6155702 2025-03-29 09:00:39.764 2025-03-29 09:00:39.764 1000 FEE 448427 3439 \N \N 6155711 2025-03-29 09:01:38.874 2025-03-29 09:01:38.874 1000 POLL 448349 18309 \N \N 6155722 2025-03-29 09:03:21.693 2025-03-29 09:03:21.693 1000 FEE 448411 21314 \N \N 6155723 2025-03-29 09:03:21.693 2025-03-29 09:03:21.693 9000 TIP 448411 647 \N \N 6155735 2025-03-29 09:04:15.439 2025-03-29 09:04:15.439 1000 FEE 448434 649 \N \N 6155743 2025-03-29 09:05:05.103 2025-03-29 09:05:05.103 10000 FEE 448432 16970 \N \N 6155744 2025-03-29 09:05:05.103 2025-03-29 09:05:05.103 90000 TIP 448432 8459 \N \N 6155756 2025-03-29 09:07:06.24 2025-03-29 09:07:06.24 2100 FEE 448438 17570 \N \N 6155757 2025-03-29 09:07:06.24 2025-03-29 09:07:06.24 18900 TIP 448438 21514 \N \N 6155771 2025-03-29 09:07:41.638 2025-03-29 09:07:41.638 10000 FEE 448436 21040 \N \N 6155772 2025-03-29 09:07:41.638 2025-03-29 09:07:41.638 90000 TIP 448436 1549 \N \N 6155775 2025-03-29 09:07:55.104 2025-03-29 09:07:55.104 2100 FEE 448328 20751 \N \N 6155776 2025-03-29 09:07:55.104 2025-03-29 09:07:55.104 18900 TIP 448328 3371 \N \N 6113344 2025-03-26 05:54:35.644 2025-03-26 05:54:35.644 2100 FEE 443554 7899 \N \N 6113345 2025-03-26 05:54:35.644 2025-03-26 05:54:35.644 18900 TIP 443554 9438 \N \N 6113376 2025-03-26 05:55:33.685 2025-03-26 05:55:33.685 1000 FEE 443605 20706 \N \N 6113380 2025-03-26 05:56:05.213 2025-03-26 05:56:05.213 2100 FEE 443602 3213 \N \N 6113381 2025-03-26 05:56:05.213 2025-03-26 05:56:05.213 18900 TIP 443602 21666 \N \N 6113383 2025-03-26 05:56:15.505 2025-03-26 05:56:15.505 0 FEE 443602 12222 \N \N 6113399 2025-03-26 05:57:59.238 2025-03-26 05:57:59.238 5700 FEE 443599 20788 \N \N 6113400 2025-03-26 05:57:59.238 2025-03-26 05:57:59.238 51300 TIP 443599 1617 \N \N 6113407 2025-03-26 05:58:12.788 2025-03-26 05:58:12.788 5700 FEE 443451 18231 \N \N 6113408 2025-03-26 05:58:12.788 2025-03-26 05:58:12.788 51300 TIP 443451 11395 \N \N 6113409 2025-03-26 05:58:14.621 2025-03-26 05:58:14.621 5700 FEE 443380 4064 \N \N 6113410 2025-03-26 05:58:14.621 2025-03-26 05:58:14.621 51300 TIP 443380 20939 \N \N 6113421 2025-03-26 05:59:20.935 2025-03-26 05:59:20.935 1000 FEE 443616 9349 \N \N 6113428 2025-03-26 05:59:35.704 2025-03-26 05:59:35.704 27900 FEE 443583 9820 \N \N 6113429 2025-03-26 05:59:35.704 2025-03-26 05:59:35.704 251100 TIP 443583 19952 \N \N 6113435 2025-03-26 06:00:13.201 2025-03-26 06:00:13.201 400 FEE 443604 20981 \N \N 6113436 2025-03-26 06:00:13.201 2025-03-26 06:00:13.201 3600 TIP 443604 21262 \N \N 6113441 2025-03-26 06:00:14.432 2025-03-26 06:00:14.432 400 FEE 443048 17673 \N \N 6113442 2025-03-26 06:00:14.432 2025-03-26 06:00:14.432 3600 TIP 443048 18017 \N \N 6113444 2025-03-26 06:00:35.275 2025-03-26 06:00:35.275 1000 FEE 443620 1534 \N \N 6113415 2025-03-26 05:58:44.835 2025-03-26 05:58:44.835 56700 TIP 443473 9705 \N \N 6113420 2025-03-26 05:59:16.064 2025-03-26 05:59:16.064 0 FEE 443609 12057 \N \N 6113424 2025-03-26 05:59:26.524 2025-03-26 05:59:26.524 900 FEE 443545 1493 \N \N 6113425 2025-03-26 05:59:26.524 2025-03-26 05:59:26.524 8100 TIP 443545 1985 \N \N 6113447 2025-03-26 06:00:54.34 2025-03-26 06:00:54.34 2100 FEE 443583 652 \N \N 6113448 2025-03-26 06:00:54.34 2025-03-26 06:00:54.34 18900 TIP 443583 16353 \N \N 6113457 2025-03-26 06:01:12.828 2025-03-26 06:01:12.828 5700 FEE 443545 19863 \N \N 6113458 2025-03-26 06:01:12.828 2025-03-26 06:01:12.828 51300 TIP 443545 11165 \N \N 6113476 2025-03-26 06:01:20.033 2025-03-26 06:01:20.033 7700 FEE 443617 6393 \N \N 6113477 2025-03-26 06:01:20.033 2025-03-26 06:01:20.033 69300 TIP 443617 7746 \N \N 6113498 2025-03-26 06:02:10.68 2025-03-26 06:02:10.68 1000 FEE 443622 18306 \N \N 6113520 2025-03-26 06:03:05.769 2025-03-26 06:03:05.769 1000 FEE 443627 13249 \N \N 6113521 2025-03-26 06:03:07.064 2025-03-26 06:03:07.064 100 FEE 443593 9969 \N \N 6113522 2025-03-26 06:03:07.064 2025-03-26 06:03:07.064 900 TIP 443593 7966 \N \N 6113544 2025-03-26 06:03:40.795 2025-03-26 06:03:40.795 0 FEE 443627 20687 \N \N 6113552 2025-03-26 06:03:57.743 2025-03-26 06:03:57.743 1700 FEE 443629 18409 \N \N 6113553 2025-03-26 06:03:57.743 2025-03-26 06:03:57.743 15300 TIP 443629 686 \N \N 6113562 2025-03-26 06:04:11.058 2025-03-26 06:04:11.058 300 FEE 443613 16929 \N \N 6113563 2025-03-26 06:04:11.058 2025-03-26 06:04:11.058 2700 TIP 443613 1008 \N \N 6113568 2025-03-26 06:04:11.724 2025-03-26 06:04:11.724 300 FEE 443613 2123 \N \N 6113569 2025-03-26 06:04:11.724 2025-03-26 06:04:11.724 2700 TIP 443613 11670 \N \N 6113593 2025-03-26 06:04:42.072 2025-03-26 06:04:42.072 10000 FEE 443641 998 \N \N 6113605 2025-03-26 06:05:03.722 2025-03-26 06:05:03.722 100 FEE 443319 19668 \N \N 6113606 2025-03-26 06:05:03.722 2025-03-26 06:05:03.722 900 TIP 443319 20433 \N \N 6113621 2025-03-26 06:06:09.447 2025-03-26 06:06:09.447 1000 FEE 443646 21585 \N \N 6113630 2025-03-26 06:07:35.511 2025-03-26 06:07:35.511 0 FEE 443644 21083 \N \N 6113711 2025-03-26 06:11:53.502 2025-03-26 06:11:53.502 15400 FEE 443272 9863 \N \N 6113712 2025-03-26 06:11:53.502 2025-03-26 06:11:53.502 138600 TIP 443272 16598 \N \N 6113715 2025-03-26 06:11:53.986 2025-03-26 06:11:53.986 7700 FEE 443272 21540 \N \N 6113716 2025-03-26 06:11:53.986 2025-03-26 06:11:53.986 69300 TIP 443272 3456 \N \N 6113726 2025-03-26 06:12:40.537 2025-03-26 06:12:40.537 1600 FEE 443617 17124 \N \N 6113727 2025-03-26 06:12:40.537 2025-03-26 06:12:40.537 14400 TIP 443617 20683 \N \N 6113730 2025-03-26 06:12:54.704 2025-03-26 06:12:54.704 900 FEE 443659 20802 \N \N 6113731 2025-03-26 06:12:54.704 2025-03-26 06:12:54.704 8100 TIP 443659 11992 \N \N 6113772 2025-03-26 06:15:53.503 2025-03-26 06:15:53.503 1000 FEE 443662 4624 \N \N 6113777 2025-03-26 06:16:44.456 2025-03-26 06:16:44.456 5000 FEE 443451 19484 \N \N 6113778 2025-03-26 06:16:44.456 2025-03-26 06:16:44.456 45000 TIP 443451 21540 \N \N 6113787 2025-03-26 06:16:48.149 2025-03-26 06:16:48.149 1000 FEE 443467 8713 \N \N 6113788 2025-03-26 06:16:48.149 2025-03-26 06:16:48.149 9000 TIP 443467 16594 \N \N 6113794 2025-03-26 06:17:25.727 2025-03-26 06:17:25.727 1000 FEE 443272 19263 \N \N 6113795 2025-03-26 06:17:25.727 2025-03-26 06:17:25.727 9000 TIP 443272 14385 \N \N 6113796 2025-03-26 06:17:49.407 2025-03-26 06:17:49.407 500 FEE 443583 20691 \N \N 6113797 2025-03-26 06:17:49.407 2025-03-26 06:17:49.407 4500 TIP 443583 21040 \N \N 6113800 2025-03-26 06:17:58.984 2025-03-26 06:17:58.984 6900 FEE 443545 746 \N \N 6113801 2025-03-26 06:17:58.984 2025-03-26 06:17:58.984 62100 TIP 443545 3979 \N \N 6113846 2025-03-26 06:20:20.037 2025-03-26 06:20:20.037 1000 FEE 443663 9 \N \N 6113847 2025-03-26 06:20:20.037 2025-03-26 06:20:20.037 9000 TIP 443663 6260 \N \N 6113975 2025-03-26 06:30:19.451 2025-03-26 06:30:19.451 1000 FEE 443680 9307 \N \N 6114002 2025-03-26 06:30:42.935 2025-03-26 06:30:42.935 1000 FEE 443681 16296 \N \N 6114003 2025-03-26 06:30:45.782 2025-03-26 06:30:45.782 1000 FEE 443682 20490 \N \N 6114021 2025-03-26 06:31:45.461 2025-03-26 06:31:45.461 1000 FEE 443683 12911 \N \N 6114022 2025-03-26 06:31:45.461 2025-03-26 06:31:45.461 9000 TIP 443683 19126 \N \N 6114025 2025-03-26 06:32:09.721 2025-03-26 06:32:09.721 10000 FEE 443482 19812 \N \N 6114026 2025-03-26 06:32:09.721 2025-03-26 06:32:09.721 90000 TIP 443482 16336 \N \N 6114031 2025-03-26 06:32:29.429 2025-03-26 06:32:29.429 1000 FEE 443577 13361 \N \N 6114032 2025-03-26 06:32:29.429 2025-03-26 06:32:29.429 9000 TIP 443577 16809 \N \N 6114047 2025-03-26 06:33:00.157 2025-03-26 06:33:00.157 1000 FEE 443453 19292 \N \N 6114048 2025-03-26 06:33:00.157 2025-03-26 06:33:00.157 9000 TIP 443453 21494 \N \N 6114055 2025-03-26 06:33:05.638 2025-03-26 06:33:05.638 2100 FEE 443633 20596 \N \N 6114056 2025-03-26 06:33:05.638 2025-03-26 06:33:05.638 18900 TIP 443633 9476 \N \N 6114059 2025-03-26 06:33:07.675 2025-03-26 06:33:07.675 2100 FEE 443548 12422 \N \N 6114060 2025-03-26 06:33:07.675 2025-03-26 06:33:07.675 18900 TIP 443548 11165 \N \N 6114067 2025-03-26 06:33:13.595 2025-03-26 06:33:13.595 2100 FEE 443505 19198 \N \N 6114068 2025-03-26 06:33:13.595 2025-03-26 06:33:13.595 18900 TIP 443505 1720 \N \N 6114088 2025-03-26 06:33:31.379 2025-03-26 06:33:31.379 10000 FEE 443685 1424 \N \N 6114099 2025-03-26 06:33:57.849 2025-03-26 06:33:57.849 2100 FEE 443599 20745 \N \N 6114100 2025-03-26 06:33:57.849 2025-03-26 06:33:57.849 18900 TIP 443599 7580 \N \N 6114138 2025-03-26 06:35:50.566 2025-03-26 06:35:50.566 10000 FEE 443593 2203 \N \N 6114139 2025-03-26 06:35:50.566 2025-03-26 06:35:50.566 90000 TIP 443593 20660 \N \N 6114145 2025-03-26 06:35:57.249 2025-03-26 06:35:57.249 1000 FEE 443692 9426 \N \N 6114162 2025-03-26 06:37:13.407 2025-03-26 06:37:13.407 2100 FEE 443329 1603 \N \N 6114163 2025-03-26 06:37:13.407 2025-03-26 06:37:13.407 18900 TIP 443329 10433 \N \N 6114185 2025-03-26 06:37:27.152 2025-03-26 06:37:27.152 2100 FEE 443301 20612 \N \N 6114186 2025-03-26 06:37:27.152 2025-03-26 06:37:27.152 18900 TIP 443301 15160 \N \N 6047292 2025-03-20 11:05:59.438 2025-03-20 11:05:59.438 1000 FEE 436606 13398 \N \N 6047300 2025-03-20 11:06:58.804 2025-03-20 11:06:58.804 9000 FEE 436523 1741 \N \N 6047301 2025-03-20 11:06:58.804 2025-03-20 11:06:58.804 81000 TIP 436523 1741 \N \N 6047311 2025-03-20 11:07:37.937 2025-03-20 11:07:37.937 9000 FEE 436556 9529 \N \N 6047312 2025-03-20 11:07:37.937 2025-03-20 11:07:37.937 81000 TIP 436556 15196 \N \N 6047316 2025-03-20 11:09:01.608 2025-03-20 11:09:01.608 2300 FEE 436605 19888 \N \N 6047317 2025-03-20 11:09:01.608 2025-03-20 11:09:01.608 20700 TIP 436605 10611 \N \N 6047344 2025-03-20 11:09:05.072 2025-03-20 11:09:05.072 2300 FEE 436605 12222 \N \N 6047345 2025-03-20 11:09:05.072 2025-03-20 11:09:05.072 20700 TIP 436605 21413 \N \N 6047346 2025-03-20 11:09:05.262 2025-03-20 11:09:05.262 2300 FEE 436605 20956 \N \N 6047347 2025-03-20 11:09:05.262 2025-03-20 11:09:05.262 20700 TIP 436605 18011 \N \N 6047350 2025-03-20 11:09:05.886 2025-03-20 11:09:05.886 2300 FEE 436605 5112 \N \N 6047351 2025-03-20 11:09:05.886 2025-03-20 11:09:05.886 20700 TIP 436605 15491 \N \N 6047354 2025-03-20 11:09:06.456 2025-03-20 11:09:06.456 2300 FEE 436605 8080 \N \N 6047355 2025-03-20 11:09:06.456 2025-03-20 11:09:06.456 20700 TIP 436605 10056 \N \N 6047356 2025-03-20 11:09:06.615 2025-03-20 11:09:06.615 2300 FEE 436605 20225 \N \N 6047357 2025-03-20 11:09:06.615 2025-03-20 11:09:06.615 20700 TIP 436605 21164 \N \N 6047383 2025-03-20 11:09:09.967 2025-03-20 11:09:09.967 1000 FEE 436326 3461 \N \N 6047384 2025-03-20 11:09:09.967 2025-03-20 11:09:09.967 9000 TIP 436326 882 \N \N 6047385 2025-03-20 11:09:10.902 2025-03-20 11:09:10.902 100 FEE 436550 726 \N \N 6047386 2025-03-20 11:09:10.902 2025-03-20 11:09:10.902 900 TIP 436550 18526 \N \N 6047389 2025-03-20 11:09:11.829 2025-03-20 11:09:11.829 1000 FEE 436326 19966 \N \N 6047390 2025-03-20 11:09:11.829 2025-03-20 11:09:11.829 9000 TIP 436326 20825 \N \N 6047391 2025-03-20 11:09:12.117 2025-03-20 11:09:12.117 1000 FEE 436326 17365 \N \N 6047392 2025-03-20 11:09:12.117 2025-03-20 11:09:12.117 9000 TIP 436326 14080 \N \N 6047428 2025-03-20 11:09:20.228 2025-03-20 11:09:20.228 1000 FEE 436326 21832 \N \N 6047429 2025-03-20 11:09:20.228 2025-03-20 11:09:20.228 9000 TIP 436326 2203 \N \N 6047454 2025-03-20 11:09:50.798 2025-03-20 11:09:50.798 900 FEE 436588 14280 \N \N 6047455 2025-03-20 11:09:50.798 2025-03-20 11:09:50.798 8100 TIP 436588 989 \N \N 6047481 2025-03-20 11:10:38.217 2025-03-20 11:10:38.217 9000 FEE 436593 16562 \N \N 6047482 2025-03-20 11:10:38.217 2025-03-20 11:10:38.217 81000 TIP 436593 17797 \N \N 6047533 2025-03-20 11:10:58.969 2025-03-20 11:10:58.969 1000 FEE 436326 20825 \N \N 6047534 2025-03-20 11:10:58.969 2025-03-20 11:10:58.969 9000 TIP 436326 2329 \N \N 6047561 2025-03-20 11:11:01.092 2025-03-20 11:11:01.092 1000 FEE 436326 12291 \N \N 6047562 2025-03-20 11:11:01.092 2025-03-20 11:11:01.092 9000 TIP 436326 18525 \N \N 6047567 2025-03-20 11:11:01.608 2025-03-20 11:11:01.608 1000 FEE 436326 1970 \N \N 6047568 2025-03-20 11:11:01.608 2025-03-20 11:11:01.608 9000 TIP 436326 11073 \N \N 6047609 2025-03-20 11:11:08.831 2025-03-20 11:11:08.831 1000 FEE 436326 20562 \N \N 6047610 2025-03-20 11:11:08.831 2025-03-20 11:11:08.831 9000 TIP 436326 717 \N \N 6047613 2025-03-20 11:11:09.141 2025-03-20 11:11:09.141 1000 FEE 436326 16753 \N \N 6047614 2025-03-20 11:11:09.141 2025-03-20 11:11:09.141 9000 TIP 436326 16212 \N \N 6047617 2025-03-20 11:11:09.451 2025-03-20 11:11:09.451 1000 FEE 436326 20963 \N \N 6047618 2025-03-20 11:11:09.451 2025-03-20 11:11:09.451 9000 TIP 436326 20502 \N \N 6047623 2025-03-20 11:11:09.974 2025-03-20 11:11:09.974 1000 FEE 436326 2196 \N \N 6047624 2025-03-20 11:11:09.974 2025-03-20 11:11:09.974 9000 TIP 436326 1488 \N \N 6047625 2025-03-20 11:11:10.208 2025-03-20 11:11:10.208 1000 FEE 436326 14449 \N \N 6047626 2025-03-20 11:11:10.208 2025-03-20 11:11:10.208 9000 TIP 436326 5825 \N \N 6047635 2025-03-20 11:11:11.023 2025-03-20 11:11:11.023 1000 FEE 436326 9350 \N \N 6047636 2025-03-20 11:11:11.023 2025-03-20 11:11:11.023 9000 TIP 436326 16513 \N \N 6047645 2025-03-20 11:11:13.247 2025-03-20 11:11:13.247 1000 FEE 436326 18829 \N \N 6047646 2025-03-20 11:11:13.247 2025-03-20 11:11:13.247 9000 TIP 436326 21714 \N \N 6047682 2025-03-20 11:12:58.61 2025-03-20 11:12:58.61 90000 FEE 435596 701 \N \N 6047683 2025-03-20 11:12:58.61 2025-03-20 11:12:58.61 810000 TIP 435596 4395 \N \N 6047755 2025-03-20 11:22:01.042 2025-03-20 11:22:01.042 2100 FEE 436508 20778 \N \N 6047756 2025-03-20 11:22:01.042 2025-03-20 11:22:01.042 18900 TIP 436508 633 \N \N 6047757 2025-03-20 11:22:01.505 2025-03-20 11:22:01.505 2100 FEE 436508 16950 \N \N 6047758 2025-03-20 11:22:01.505 2025-03-20 11:22:01.505 18900 TIP 436508 20222 \N \N 6047767 2025-03-20 11:22:38.099 2025-03-20 11:22:38.099 2100 FEE 436553 19303 \N \N 6047768 2025-03-20 11:22:38.099 2025-03-20 11:22:38.099 18900 TIP 436553 10519 \N \N 6047789 2025-03-20 11:23:59.743 2025-03-20 11:23:59.743 1000 FEE 436616 9339 \N \N 6047812 2025-03-20 11:29:23.107 2025-03-20 11:29:23.107 1000 FEE 436623 20613 \N \N 6047827 2025-03-20 11:33:03.387 2025-03-20 11:33:03.387 200 FEE 436613 8037 \N \N 6047828 2025-03-20 11:33:03.387 2025-03-20 11:33:03.387 1800 TIP 436613 900 \N \N 6047852 2025-03-20 11:34:33.296 2025-03-20 11:34:33.296 1000 FEE 436628 21026 \N \N 6047853 2025-03-20 11:34:33.296 2025-03-20 11:34:33.296 9000 TIP 436628 15119 \N \N 6047856 2025-03-20 11:34:33.875 2025-03-20 11:34:33.875 1000 FEE 436628 1173 \N \N 6047857 2025-03-20 11:34:33.875 2025-03-20 11:34:33.875 9000 TIP 436628 5444 \N \N 6047892 2025-03-20 11:35:43.657 2025-03-20 11:35:43.657 1000 FEE 435488 1469 \N \N 6047893 2025-03-20 11:35:43.657 2025-03-20 11:35:43.657 9000 TIP 435488 11443 \N \N 6047902 2025-03-20 11:37:40.089 2025-03-20 11:37:40.089 100000 FEE 436632 19512 \N \N 6047323 2025-03-20 11:09:02.359 2025-03-20 11:09:02.359 20700 TIP 436605 706 \N \N 6047328 2025-03-20 11:09:02.848 2025-03-20 11:09:02.848 2300 FEE 436605 18615 \N \N 6047329 2025-03-20 11:09:02.848 2025-03-20 11:09:02.848 20700 TIP 436605 21048 \N \N 6047336 2025-03-20 11:09:03.916 2025-03-20 11:09:03.916 2300 FEE 436605 20778 \N \N 6047337 2025-03-20 11:09:03.916 2025-03-20 11:09:03.916 20700 TIP 436605 19980 \N \N 6047342 2025-03-20 11:09:04.857 2025-03-20 11:09:04.857 2300 FEE 436605 12744 \N \N 6047343 2025-03-20 11:09:04.857 2025-03-20 11:09:04.857 20700 TIP 436605 8535 \N \N 6047348 2025-03-20 11:09:05.703 2025-03-20 11:09:05.703 2300 FEE 436605 20613 \N \N 6047349 2025-03-20 11:09:05.703 2025-03-20 11:09:05.703 20700 TIP 436605 3656 \N \N 6047382 2025-03-20 11:09:08.322 2025-03-20 11:09:08.322 1000 FEE 436607 19668 \N \N 6047393 2025-03-20 11:09:12.395 2025-03-20 11:09:12.395 1000 FEE 436326 20099 \N \N 6047394 2025-03-20 11:09:12.395 2025-03-20 11:09:12.395 9000 TIP 436326 18529 \N \N 6047397 2025-03-20 11:09:13.054 2025-03-20 11:09:13.054 1000 FEE 436326 987 \N \N 6047398 2025-03-20 11:09:13.054 2025-03-20 11:09:13.054 9000 TIP 436326 2639 \N \N 6047401 2025-03-20 11:09:13.59 2025-03-20 11:09:13.59 1000 FEE 436326 17184 \N \N 6047402 2025-03-20 11:09:13.59 2025-03-20 11:09:13.59 9000 TIP 436326 12738 \N \N 6047414 2025-03-20 11:09:19.09 2025-03-20 11:09:19.09 1000 FEE 436326 1114 \N \N 6047415 2025-03-20 11:09:19.09 2025-03-20 11:09:19.09 9000 TIP 436326 2176 \N \N 6047466 2025-03-20 11:10:25.296 2025-03-20 11:10:25.296 9000 FEE 436197 688 \N \N 6047467 2025-03-20 11:10:25.296 2025-03-20 11:10:25.296 81000 TIP 436197 1090 \N \N 6047475 2025-03-20 11:10:30.616 2025-03-20 11:10:30.616 9000 FEE 435944 17001 \N \N 6047476 2025-03-20 11:10:30.616 2025-03-20 11:10:30.616 81000 TIP 435944 1060 \N \N 6047477 2025-03-20 11:10:37.037 2025-03-20 11:10:37.037 100 FEE 436593 16289 \N \N 6047478 2025-03-20 11:10:37.037 2025-03-20 11:10:37.037 900 TIP 436593 18731 \N \N 6047515 2025-03-20 11:10:57.393 2025-03-20 11:10:57.393 1000 FEE 436326 16754 \N \N 6047516 2025-03-20 11:10:57.393 2025-03-20 11:10:57.393 9000 TIP 436326 17552 \N \N 6047521 2025-03-20 11:10:58.078 2025-03-20 11:10:58.078 1000 FEE 436326 738 \N \N 6047522 2025-03-20 11:10:58.078 2025-03-20 11:10:58.078 9000 TIP 436326 21014 \N \N 6047527 2025-03-20 11:10:58.542 2025-03-20 11:10:58.542 1000 FEE 436326 13042 \N \N 6047528 2025-03-20 11:10:58.542 2025-03-20 11:10:58.542 9000 TIP 436326 2749 \N \N 6047569 2025-03-20 11:11:01.705 2025-03-20 11:11:01.705 1000 FEE 436326 4043 \N \N 6047570 2025-03-20 11:11:01.705 2025-03-20 11:11:01.705 9000 TIP 436326 20245 \N \N 6047601 2025-03-20 11:11:08.244 2025-03-20 11:11:08.244 1000 FEE 436326 20133 \N \N 6047602 2025-03-20 11:11:08.244 2025-03-20 11:11:08.244 9000 TIP 436326 896 \N \N 6047619 2025-03-20 11:11:09.608 2025-03-20 11:11:09.608 1000 FEE 436326 21051 \N \N 6047620 2025-03-20 11:11:09.608 2025-03-20 11:11:09.608 9000 TIP 436326 16680 \N \N 6047633 2025-03-20 11:11:10.836 2025-03-20 11:11:10.836 1000 FEE 436326 9339 \N \N 6047634 2025-03-20 11:11:10.836 2025-03-20 11:11:10.836 9000 TIP 436326 7847 \N \N 6047650 2025-03-20 11:11:14.506 2025-03-20 11:11:14.506 1000 FEE 436326 19494 \N \N 6047651 2025-03-20 11:11:14.506 2025-03-20 11:11:14.506 9000 TIP 436326 4345 \N \N 6047652 2025-03-20 11:11:20.193 2025-03-20 11:11:20.193 90000 FEE 436290 1626 \N \N 6047653 2025-03-20 11:11:20.193 2025-03-20 11:11:20.193 810000 TIP 436290 15180 \N \N 6047660 2025-03-20 11:11:41.772 2025-03-20 11:11:41.772 9000 FEE 436508 1389 \N \N 6047661 2025-03-20 11:11:41.772 2025-03-20 11:11:41.772 81000 TIP 436508 17316 \N \N 6047667 2025-03-20 11:12:08.87 2025-03-20 11:12:08.87 100 FEE 436553 11670 \N \N 6047668 2025-03-20 11:12:08.87 2025-03-20 11:12:08.87 900 TIP 436553 10094 \N \N 6047680 2025-03-20 11:12:53.259 2025-03-20 11:12:53.259 9000 FEE 435596 14225 \N \N 6047681 2025-03-20 11:12:53.259 2025-03-20 11:12:53.259 81000 TIP 435596 641 \N \N 6047688 2025-03-20 11:13:16.625 2025-03-20 11:13:16.625 9000 FEE 436413 19842 \N \N 6047689 2025-03-20 11:13:16.625 2025-03-20 11:13:16.625 81000 TIP 436413 21670 \N \N 6047700 2025-03-20 11:16:07.634 2025-03-20 11:16:07.634 2100 FEE 436566 20892 \N \N 6047701 2025-03-20 11:16:07.634 2025-03-20 11:16:07.634 18900 TIP 436566 17275 \N \N 6047708 2025-03-20 11:19:16.364 2025-03-20 11:19:16.364 10000 FEE 436612 9341 \N \N 6047379 2025-03-20 11:09:08.108 2025-03-20 11:09:08.108 20700 TIP 436605 11515 \N \N 6047408 2025-03-20 11:09:14.34 2025-03-20 11:09:14.34 1000 FEE 436326 1319 \N \N 6047409 2025-03-20 11:09:14.34 2025-03-20 11:09:14.34 9000 TIP 436326 998 \N \N 6047448 2025-03-20 11:09:49.768 2025-03-20 11:09:49.768 100 FEE 436590 1740 \N \N 6047449 2025-03-20 11:09:49.768 2025-03-20 11:09:49.768 900 TIP 436590 10849 \N \N 6047452 2025-03-20 11:09:50.597 2025-03-20 11:09:50.597 100 FEE 436588 738 \N \N 6047453 2025-03-20 11:09:50.597 2025-03-20 11:09:50.597 900 TIP 436588 9348 \N \N 6047469 2025-03-20 11:10:29.259 2025-03-20 11:10:29.259 4000 FEE 436608 775 \N \N 6047470 2025-03-20 11:10:29.259 2025-03-20 11:10:29.259 36000 TIP 436608 16808 \N \N 6047473 2025-03-20 11:10:30.009 2025-03-20 11:10:30.009 900 FEE 435944 20019 \N \N 6047474 2025-03-20 11:10:30.009 2025-03-20 11:10:30.009 8100 TIP 435944 16329 \N \N 6047479 2025-03-20 11:10:37.453 2025-03-20 11:10:37.453 900 FEE 436593 2010 \N \N 6047480 2025-03-20 11:10:37.453 2025-03-20 11:10:37.453 8100 TIP 436593 16633 \N \N 6047483 2025-03-20 11:10:45.138 2025-03-20 11:10:45.138 90000 FEE 436323 686 \N \N 6047484 2025-03-20 11:10:45.138 2025-03-20 11:10:45.138 810000 TIP 436323 4388 \N \N 6047495 2025-03-20 11:10:53.154 2025-03-20 11:10:53.154 9000 FEE 436258 896 \N \N 6047496 2025-03-20 11:10:53.154 2025-03-20 11:10:53.154 81000 TIP 436258 3400 \N \N 6047503 2025-03-20 11:10:54.021 2025-03-20 11:10:54.021 1000 FEE 436326 16250 \N \N 6047504 2025-03-20 11:10:54.021 2025-03-20 11:10:54.021 9000 TIP 436326 720 \N \N 6047543 2025-03-20 11:10:59.892 2025-03-20 11:10:59.892 1000 FEE 436326 6602 \N \N 6047544 2025-03-20 11:10:59.892 2025-03-20 11:10:59.892 9000 TIP 436326 8684 \N \N 6047555 2025-03-20 11:11:00.695 2025-03-20 11:11:00.695 1000 FEE 436326 20663 \N \N 6047556 2025-03-20 11:11:00.695 2025-03-20 11:11:00.695 9000 TIP 436326 21079 \N \N 6047565 2025-03-20 11:11:01.439 2025-03-20 11:11:01.439 1000 FEE 436326 9363 \N \N 6047566 2025-03-20 11:11:01.439 2025-03-20 11:11:01.439 9000 TIP 436326 18637 \N \N 6047589 2025-03-20 11:11:03.207 2025-03-20 11:11:03.207 1000 FEE 436326 7978 \N \N 6047590 2025-03-20 11:11:03.207 2025-03-20 11:11:03.207 9000 TIP 436326 20073 \N \N 6047607 2025-03-20 11:11:08.69 2025-03-20 11:11:08.69 1000 FEE 436326 11716 \N \N 6047608 2025-03-20 11:11:08.69 2025-03-20 11:11:08.69 9000 TIP 436326 8684 \N \N 6047654 2025-03-20 11:11:27.477 2025-03-20 11:11:27.477 90000 FEE 436158 15484 \N \N 6047655 2025-03-20 11:11:27.477 2025-03-20 11:11:27.477 810000 TIP 436158 2335 \N \N 6047715 2025-03-20 11:21:23.811 2025-03-20 11:21:23.811 100 FEE 436493 10016 \N \N 6047716 2025-03-20 11:21:23.811 2025-03-20 11:21:23.811 900 TIP 436493 1352 \N \N 6047717 2025-03-20 11:21:24.1 2025-03-20 11:21:24.1 900 FEE 436493 19576 \N \N 6047718 2025-03-20 11:21:24.1 2025-03-20 11:21:24.1 8100 TIP 436493 1433 \N \N 6047720 2025-03-20 11:21:42.371 2025-03-20 11:21:42.371 8300 FEE 436560 10112 \N \N 6047721 2025-03-20 11:21:42.371 2025-03-20 11:21:42.371 74700 TIP 436560 18678 \N \N 6047728 2025-03-20 11:21:42.934 2025-03-20 11:21:42.934 8300 FEE 436560 8954 \N \N 6047729 2025-03-20 11:21:42.934 2025-03-20 11:21:42.934 74700 TIP 436560 12507 \N \N 6047751 2025-03-20 11:22:00.351 2025-03-20 11:22:00.351 2100 FEE 436508 4225 \N \N 6047752 2025-03-20 11:22:00.351 2025-03-20 11:22:00.351 18900 TIP 436508 1009 \N \N 6047763 2025-03-20 11:22:37.372 2025-03-20 11:22:37.372 2100 FEE 436553 2776 \N \N 6047764 2025-03-20 11:22:37.372 2025-03-20 11:22:37.372 18900 TIP 436553 7899 \N \N 6047781 2025-03-20 11:23:49.364 2025-03-20 11:23:49.364 2100 FEE 436394 21275 \N \N 6047782 2025-03-20 11:23:49.364 2025-03-20 11:23:49.364 18900 TIP 436394 1881 \N \N 6047800 2025-03-20 11:26:25.608 2025-03-20 11:26:25.608 4000 FEE 436613 15858 \N \N 6047801 2025-03-20 11:26:25.608 2025-03-20 11:26:25.608 36000 TIP 436613 5519 \N \N 6047815 2025-03-20 11:29:49.055 2025-03-20 11:29:49.055 3300 FEE 436600 6160 \N \N 6047816 2025-03-20 11:29:49.055 2025-03-20 11:29:49.055 29700 TIP 436600 20059 \N \N 6047817 2025-03-20 11:29:51.429 2025-03-20 11:29:51.429 3300 FEE 436600 20502 \N \N 6047818 2025-03-20 11:29:51.429 2025-03-20 11:29:51.429 29700 TIP 436600 14774 \N \N 6047840 2025-03-20 11:33:51.857 2025-03-20 11:33:51.857 1000 FEE 436444 1617 \N \N 6047841 2025-03-20 11:33:51.857 2025-03-20 11:33:51.857 9000 TIP 436444 27 \N \N 6047842 2025-03-20 11:34:01.281 2025-03-20 11:34:01.281 10000 FEE 436630 1136 \N \N 6047858 2025-03-20 11:34:34.31 2025-03-20 11:34:34.31 1000 FEE 436628 18393 \N \N 6047859 2025-03-20 11:34:34.31 2025-03-20 11:34:34.31 9000 TIP 436628 20094 \N \N 6047894 2025-03-20 11:35:50.574 2025-03-20 11:35:50.574 2100 FEE 436475 19303 \N \N 6047895 2025-03-20 11:35:50.574 2025-03-20 11:35:50.574 18900 TIP 436475 20655 \N \N 6047925 2025-03-20 11:39:57.863 2025-03-20 11:39:57.863 1000 FEE 436175 12278 \N \N 6047926 2025-03-20 11:39:57.863 2025-03-20 11:39:57.863 9000 TIP 436175 3642 \N \N 6047933 2025-03-20 11:40:11.973 2025-03-20 11:40:11.973 2100 FEE 436556 1424 \N \N 6047934 2025-03-20 11:40:11.973 2025-03-20 11:40:11.973 18900 TIP 436556 3656 \N \N 6047936 2025-03-20 11:40:15.762 2025-03-20 11:40:15.762 2100 FEE 436508 8059 \N \N 6047937 2025-03-20 11:40:15.762 2025-03-20 11:40:15.762 18900 TIP 436508 18321 \N \N 6047944 2025-03-20 11:40:21.711 2025-03-20 11:40:21.711 8300 FEE 436499 18101 \N \N 6047945 2025-03-20 11:40:21.711 2025-03-20 11:40:21.711 74700 TIP 436499 14381 \N \N 6047958 2025-03-20 11:40:30.431 2025-03-20 11:40:30.431 2100 FEE 436601 1495 \N \N 6047959 2025-03-20 11:40:30.431 2025-03-20 11:40:30.431 18900 TIP 436601 4259 \N \N 6048048 2025-03-20 11:48:17.882 2025-03-20 11:48:17.882 100 FEE 436626 3396 \N \N 6048049 2025-03-20 11:48:17.882 2025-03-20 11:48:17.882 900 TIP 436626 10719 \N \N 6048058 2025-03-20 11:48:26.799 2025-03-20 11:48:26.799 900 FEE 436622 4763 \N \N 6048059 2025-03-20 11:48:26.799 2025-03-20 11:48:26.799 8100 TIP 436622 2056 \N \N 6048062 2025-03-20 11:48:29.814 2025-03-20 11:48:29.814 900 FEE 436621 7772 \N \N 6048063 2025-03-20 11:48:29.814 2025-03-20 11:48:29.814 8100 TIP 436621 9348 \N \N 6048068 2025-03-20 11:48:31.399 2025-03-20 11:48:31.399 9000 FEE 436568 9356 \N \N 6048069 2025-03-20 11:48:31.399 2025-03-20 11:48:31.399 81000 TIP 436568 9969 \N \N 6048071 2025-03-20 11:49:37.158 2025-03-20 11:49:37.158 1000 FEE 436566 13566 \N \N 6048072 2025-03-20 11:49:37.158 2025-03-20 11:49:37.158 9000 TIP 436566 9796 \N \N 6048077 2025-03-20 11:50:37.678 2025-03-20 11:50:37.678 1000 POLL 436323 20220 \N \N 6048079 2025-03-20 11:50:50.3 2025-03-20 11:50:50.3 1000 FEE 436641 21019 \N \N 6048090 2025-03-20 11:52:46.235 2025-03-20 11:52:46.235 2300 FEE 436639 803 \N \N 6048091 2025-03-20 11:52:46.235 2025-03-20 11:52:46.235 20700 TIP 436639 1244 \N \N 6048095 2025-03-20 11:53:18.482 2025-03-20 11:53:18.482 100 FEE 436619 18225 \N \N 6048096 2025-03-20 11:53:18.482 2025-03-20 11:53:18.482 900 TIP 436619 12821 \N \N 6048099 2025-03-20 11:53:20.238 2025-03-20 11:53:20.238 100 FEE 436556 16704 \N \N 6048100 2025-03-20 11:53:20.238 2025-03-20 11:53:20.238 900 TIP 436556 17693 \N \N 6048113 2025-03-20 11:56:19.209 2025-03-20 11:56:19.209 100 FEE 436499 9820 \N \N 6048114 2025-03-20 11:56:19.209 2025-03-20 11:56:19.209 900 TIP 436499 21444 \N \N 6048115 2025-03-20 11:56:19.976 2025-03-20 11:56:19.976 1000 FEE 436645 20825 \N \N 6048145 2025-03-20 11:58:47.243 2025-03-20 11:58:47.243 800 FEE 436508 15147 \N \N 6048146 2025-03-20 11:58:47.243 2025-03-20 11:58:47.243 7200 TIP 436508 20310 \N \N 6048168 2025-03-20 12:03:54.112 2025-03-20 12:03:54.112 2100 FEE 436625 21254 \N \N 6048169 2025-03-20 12:03:54.112 2025-03-20 12:03:54.112 18900 TIP 436625 18309 \N \N 6048174 2025-03-20 12:04:24.114 2025-03-20 12:04:24.114 1000 FEE 436592 20990 \N \N 6048175 2025-03-20 12:04:24.114 2025-03-20 12:04:24.114 9000 TIP 436592 19930 \N \N 6048186 2025-03-20 12:05:12.854 2025-03-20 12:05:12.854 8300 FEE 436508 1970 \N \N 6048187 2025-03-20 12:05:12.854 2025-03-20 12:05:12.854 74700 TIP 436508 8989 \N \N 6048193 2025-03-20 12:05:26.256 2025-03-20 12:05:26.256 2100 FEE 436622 9363 \N \N 6048194 2025-03-20 12:05:26.256 2025-03-20 12:05:26.256 18900 TIP 436622 5661 \N \N 6048203 2025-03-20 12:05:48.148 2025-03-20 12:05:48.148 2100 FEE 436570 1823 \N \N 6048204 2025-03-20 12:05:48.148 2025-03-20 12:05:48.148 18900 TIP 436570 8459 \N \N 6048205 2025-03-20 12:05:51.415 2025-03-20 12:05:51.415 2100 FEE 436567 1009 \N \N 6048206 2025-03-20 12:05:51.415 2025-03-20 12:05:51.415 18900 TIP 436567 20606 \N \N 6048215 2025-03-20 12:06:11.41 2025-03-20 12:06:11.41 2100 FEE 436525 16633 \N \N 6047430 2025-03-20 11:09:20.473 2025-03-20 11:09:20.473 1000 FEE 436326 1447 \N \N 6047431 2025-03-20 11:09:20.473 2025-03-20 11:09:20.473 9000 TIP 436326 713 \N \N 6047432 2025-03-20 11:09:20.739 2025-03-20 11:09:20.739 1000 FEE 436326 20073 \N \N 6047433 2025-03-20 11:09:20.739 2025-03-20 11:09:20.739 9000 TIP 436326 1273 \N \N 6047457 2025-03-20 11:10:00.173 2025-03-20 11:10:00.173 100 FEE 436587 9529 \N \N 6047458 2025-03-20 11:10:00.173 2025-03-20 11:10:00.173 900 TIP 436587 4768 \N \N 6047485 2025-03-20 11:10:49.787 2025-03-20 11:10:49.787 1000 FEE 436326 2508 \N \N 6047486 2025-03-20 11:10:49.787 2025-03-20 11:10:49.787 9000 TIP 436326 18525 \N \N 6047491 2025-03-20 11:10:50.276 2025-03-20 11:10:50.276 1000 FEE 436326 20243 \N \N 6047492 2025-03-20 11:10:50.276 2025-03-20 11:10:50.276 9000 TIP 436326 9183 \N \N 6047499 2025-03-20 11:10:53.555 2025-03-20 11:10:53.555 1000 FEE 436326 9362 \N \N 6047500 2025-03-20 11:10:53.555 2025-03-20 11:10:53.555 9000 TIP 436326 19375 \N \N 6047509 2025-03-20 11:10:56.866 2025-03-20 11:10:56.866 1000 FEE 436326 7418 \N \N 6047510 2025-03-20 11:10:56.866 2025-03-20 11:10:56.866 9000 TIP 436326 18269 \N \N 6047519 2025-03-20 11:10:57.792 2025-03-20 11:10:57.792 1000 FEE 436326 831 \N \N 6047520 2025-03-20 11:10:57.792 2025-03-20 11:10:57.792 9000 TIP 436326 20987 \N \N 6047529 2025-03-20 11:10:58.717 2025-03-20 11:10:58.717 1000 FEE 436326 13753 \N \N 6047530 2025-03-20 11:10:58.717 2025-03-20 11:10:58.717 9000 TIP 436326 2789 \N \N 6047545 2025-03-20 11:11:00.042 2025-03-20 11:11:00.042 1000 FEE 436326 2224 \N \N 6047546 2025-03-20 11:11:00.042 2025-03-20 11:11:00.042 9000 TIP 436326 9334 \N \N 6047575 2025-03-20 11:11:02.132 2025-03-20 11:11:02.132 1000 FEE 436326 7809 \N \N 6047576 2025-03-20 11:11:02.132 2025-03-20 11:11:02.132 9000 TIP 436326 8684 \N \N 6047587 2025-03-20 11:11:03.061 2025-03-20 11:11:03.061 1000 FEE 436326 633 \N \N 6047588 2025-03-20 11:11:03.061 2025-03-20 11:11:03.061 9000 TIP 436326 16097 \N \N 6047593 2025-03-20 11:11:07.696 2025-03-20 11:11:07.696 1000 FEE 436326 6335 \N \N 6047594 2025-03-20 11:11:07.696 2025-03-20 11:11:07.696 9000 TIP 436326 670 \N \N 6047599 2025-03-20 11:11:08.087 2025-03-20 11:11:08.087 1000 FEE 436326 20854 \N \N 6047600 2025-03-20 11:11:08.087 2025-03-20 11:11:08.087 9000 TIP 436326 21455 \N \N 6047658 2025-03-20 11:11:40.566 2025-03-20 11:11:40.566 900 FEE 436508 10398 \N \N 6047659 2025-03-20 11:11:40.566 2025-03-20 11:11:40.566 8100 TIP 436508 15052 \N \N 6047713 2025-03-20 11:21:20.35 2025-03-20 11:21:20.35 2100 FEE 436560 14376 \N \N 6047714 2025-03-20 11:21:20.35 2025-03-20 11:21:20.35 18900 TIP 436560 8648 \N \N 6047722 2025-03-20 11:21:42.662 2025-03-20 11:21:42.662 8300 FEE 436560 2329 \N \N 6047723 2025-03-20 11:21:42.662 2025-03-20 11:21:42.662 74700 TIP 436560 15408 \N \N 6047726 2025-03-20 11:21:42.825 2025-03-20 11:21:42.825 8300 FEE 436560 4474 \N \N 6047727 2025-03-20 11:21:42.825 2025-03-20 11:21:42.825 74700 TIP 436560 649 \N \N 6047730 2025-03-20 11:21:43.186 2025-03-20 11:21:43.186 8300 FEE 436560 9537 \N \N 6047731 2025-03-20 11:21:43.186 2025-03-20 11:21:43.186 74700 TIP 436560 10519 \N \N 6047771 2025-03-20 11:23:29.314 2025-03-20 11:23:29.314 2100 FEE 436361 13566 \N \N 6047772 2025-03-20 11:23:29.314 2025-03-20 11:23:29.314 18900 TIP 436361 16966 \N \N 6047796 2025-03-20 11:25:36.237 2025-03-20 11:25:36.237 1000 FEE 436619 18101 \N \N 6047803 2025-03-20 11:26:37 2025-03-20 11:26:37 4000 FEE 436612 15941 \N \N 6047804 2025-03-20 11:26:37 2025-03-20 11:26:37 36000 TIP 436612 9920 \N \N 6047822 2025-03-20 11:31:38.232 2025-03-20 11:31:38.232 1000 FEE 436625 4259 \N \N 6047823 2025-03-20 11:32:02.932 2025-03-20 11:32:02.932 1000 FEE 436626 18423 \N \N 6047829 2025-03-20 11:33:04.637 2025-03-20 11:33:04.637 1000 FEE 436628 13174 \N \N 6047833 2025-03-20 11:33:20.22 2025-03-20 11:33:20.22 900 FEE 436561 713 \N \N 6047834 2025-03-20 11:33:20.22 2025-03-20 11:33:20.22 8100 TIP 436561 20243 \N \N 6047839 2025-03-20 11:33:24.992 2025-03-20 11:33:24.992 1000 FEE 436629 15326 \N \N 6047876 2025-03-20 11:34:36.577 2025-03-20 11:34:36.577 1000 FEE 436628 20602 \N \N 6047877 2025-03-20 11:34:36.577 2025-03-20 11:34:36.577 9000 TIP 436628 17365 \N \N 6047917 2025-03-20 11:39:46.648 2025-03-20 11:39:46.648 2100 FEE 436489 2718 \N \N 6047918 2025-03-20 11:39:46.648 2025-03-20 11:39:46.648 18900 TIP 436489 9418 \N \N 6047921 2025-03-20 11:39:53.462 2025-03-20 11:39:53.462 2100 FEE 436566 1038 \N \N 6047922 2025-03-20 11:39:53.462 2025-03-20 11:39:53.462 18900 TIP 436566 1615 \N \N 6047927 2025-03-20 11:40:02.213 2025-03-20 11:40:02.213 2100 FEE 436593 15510 \N \N 6047928 2025-03-20 11:40:02.213 2025-03-20 11:40:02.213 18900 TIP 436593 7580 \N \N 6047948 2025-03-20 11:40:22.026 2025-03-20 11:40:22.026 8300 FEE 436499 8505 \N \N 6047949 2025-03-20 11:40:22.026 2025-03-20 11:40:22.026 74700 TIP 436499 15226 \N \N 6047974 2025-03-20 11:42:24.222 2025-03-20 11:42:24.222 1100 FEE 436621 1092 \N \N 6047975 2025-03-20 11:42:24.222 2025-03-20 11:42:24.222 9900 TIP 436621 16270 \N \N 6048005 2025-03-20 11:44:44.412 2025-03-20 11:44:44.412 1000 FEE 436636 5171 \N \N 6048008 2025-03-20 11:44:57.623 2025-03-20 11:44:57.623 2100 FEE 436560 844 \N \N 6048009 2025-03-20 11:44:57.623 2025-03-20 11:44:57.623 18900 TIP 436560 12097 \N \N 6048020 2025-03-20 11:45:02.596 2025-03-20 11:45:02.596 2100 FEE 436556 16348 \N \N 6048021 2025-03-20 11:45:02.596 2025-03-20 11:45:02.596 18900 TIP 436556 20829 \N \N 6048031 2025-03-20 11:46:39.167 2025-03-20 11:46:39.167 1000 FEE 436638 21214 \N \N 6048039 2025-03-20 11:47:45.189 2025-03-20 11:47:45.189 1000 FEE 436636 770 \N \N 6048040 2025-03-20 11:47:45.189 2025-03-20 11:47:45.189 9000 TIP 436636 5828 \N \N 6048045 2025-03-20 11:47:51.91 2025-03-20 11:47:51.91 1000 FEE 436559 9166 \N \N 6048046 2025-03-20 11:47:51.91 2025-03-20 11:47:51.91 9000 TIP 436559 20657 \N \N 6048050 2025-03-20 11:48:18.2 2025-03-20 11:48:18.2 900 FEE 436626 21061 \N \N 6048051 2025-03-20 11:48:18.2 2025-03-20 11:48:18.2 8100 TIP 436626 9529 \N \N 6048054 2025-03-20 11:48:20.073 2025-03-20 11:48:20.073 4000 FEE 436632 17109 \N \N 6048055 2025-03-20 11:48:20.073 2025-03-20 11:48:20.073 36000 TIP 436632 17162 \N \N 6048078 2025-03-20 11:50:42.651 2025-03-20 11:50:42.651 10000 FEE 436640 10311 \N \N 6048082 2025-03-20 11:50:56.057 2025-03-20 11:50:56.057 1500 FEE 436491 9355 \N \N 6048083 2025-03-20 11:50:56.057 2025-03-20 11:50:56.057 13500 TIP 436491 16042 \N \N 6048101 2025-03-20 11:53:28.245 2025-03-20 11:53:28.245 500 FEE 436330 18231 \N \N 6048102 2025-03-20 11:53:28.245 2025-03-20 11:53:28.245 4500 TIP 436330 4064 \N \N 6048104 2025-03-20 11:54:11.281 2025-03-20 11:54:11.281 10000 FEE 436643 11621 \N \N 6048120 2025-03-20 11:56:57.413 2025-03-20 11:56:57.413 5000 FEE 436566 666 \N \N 6048121 2025-03-20 11:56:57.413 2025-03-20 11:56:57.413 45000 TIP 436566 10409 \N \N 6048124 2025-03-20 11:56:58.295 2025-03-20 11:56:58.295 100 FEE 436642 1605 \N \N 6048125 2025-03-20 11:56:58.295 2025-03-20 11:56:58.295 900 TIP 436642 13361 \N \N 6047501 2025-03-20 11:10:53.775 2025-03-20 11:10:53.775 1000 FEE 436326 1006 \N \N 6047502 2025-03-20 11:10:53.775 2025-03-20 11:10:53.775 9000 TIP 436326 836 \N \N 6047505 2025-03-20 11:10:54.097 2025-03-20 11:10:54.097 1000 FEE 436326 10549 \N \N 6047506 2025-03-20 11:10:54.097 2025-03-20 11:10:54.097 9000 TIP 436326 20222 \N \N 6047513 2025-03-20 11:10:57.151 2025-03-20 11:10:57.151 1000 FEE 436326 18734 \N \N 6047514 2025-03-20 11:10:57.151 2025-03-20 11:10:57.151 9000 TIP 436326 21620 \N \N 6047541 2025-03-20 11:10:59.73 2025-03-20 11:10:59.73 1000 FEE 436326 21712 \N \N 6047542 2025-03-20 11:10:59.73 2025-03-20 11:10:59.73 9000 TIP 436326 10016 \N \N 6047563 2025-03-20 11:11:01.234 2025-03-20 11:11:01.234 1000 FEE 436326 7389 \N \N 6047564 2025-03-20 11:11:01.234 2025-03-20 11:11:01.234 9000 TIP 436326 13038 \N \N 6047581 2025-03-20 11:11:02.638 2025-03-20 11:11:02.638 1000 FEE 436326 21051 \N \N 6047582 2025-03-20 11:11:02.638 2025-03-20 11:11:02.638 9000 TIP 436326 12976 \N \N 6047591 2025-03-20 11:11:03.68 2025-03-20 11:11:03.68 1000 FEE 436326 1784 \N \N 6047592 2025-03-20 11:11:03.68 2025-03-20 11:11:03.68 9000 TIP 436326 17415 \N \N 6047595 2025-03-20 11:11:07.871 2025-03-20 11:11:07.871 1000 FEE 436326 16432 \N \N 6047596 2025-03-20 11:11:07.871 2025-03-20 11:11:07.871 9000 TIP 436326 20058 \N \N 6047597 2025-03-20 11:11:07.946 2025-03-20 11:11:07.946 1000 FEE 436326 825 \N \N 6047598 2025-03-20 11:11:07.946 2025-03-20 11:11:07.946 9000 TIP 436326 20891 \N \N 6047656 2025-03-20 11:11:40.289 2025-03-20 11:11:40.289 100 FEE 436508 2330 \N \N 6047657 2025-03-20 11:11:40.289 2025-03-20 11:11:40.289 900 TIP 436508 8544 \N \N 6047664 2025-03-20 11:12:03.785 2025-03-20 11:12:03.785 1000 FEE 436609 21214 \N \N 6047674 2025-03-20 11:12:24.263 2025-03-20 11:12:24.263 90000 FEE 435327 11678 \N \N 6047675 2025-03-20 11:12:24.263 2025-03-20 11:12:24.263 810000 TIP 435327 16660 \N \N 6047686 2025-03-20 11:13:08.293 2025-03-20 11:13:08.293 1000 FEE 436610 18865 \N \N 6047694 2025-03-20 11:13:26.013 2025-03-20 11:13:26.013 27000 FEE 436593 20306 \N \N 6047695 2025-03-20 11:13:26.013 2025-03-20 11:13:26.013 243000 TIP 436593 17727 \N \N 6047696 2025-03-20 11:13:33.169 2025-03-20 11:13:33.169 10000 DONT_LIKE_THIS 436499 5761 \N \N 6047698 2025-03-20 11:14:38.425 2025-03-20 11:14:38.425 21000 FEE 436611 13174 \N \N 6047705 2025-03-20 11:18:56.274 2025-03-20 11:18:56.274 2100 FEE 436556 1245 \N \N 6047706 2025-03-20 11:18:56.274 2025-03-20 11:18:56.274 18900 TIP 436556 6058 \N \N 6047710 2025-03-20 11:20:57.542 2025-03-20 11:20:57.542 2100 FEE 436556 4502 \N \N 6047711 2025-03-20 11:20:57.542 2025-03-20 11:20:57.542 18900 TIP 436556 5069 \N \N 6047724 2025-03-20 11:21:42.706 2025-03-20 11:21:42.706 8300 FEE 436560 7395 \N \N 6047725 2025-03-20 11:21:42.706 2025-03-20 11:21:42.706 74700 TIP 436560 20901 \N \N 6047736 2025-03-20 11:21:43.943 2025-03-20 11:21:43.943 8300 FEE 436560 910 \N \N 6047737 2025-03-20 11:21:43.943 2025-03-20 11:21:43.943 74700 TIP 436560 9758 \N \N 6047747 2025-03-20 11:21:59.95 2025-03-20 11:21:59.95 2100 FEE 436508 4487 \N \N 6047748 2025-03-20 11:21:59.95 2025-03-20 11:21:59.95 18900 TIP 436508 18309 \N \N 6047785 2025-03-20 11:23:52.008 2025-03-20 11:23:52.008 2100 FEE 436566 21412 \N \N 6047786 2025-03-20 11:23:52.008 2025-03-20 11:23:52.008 18900 TIP 436566 1800 \N \N 6047791 2025-03-20 11:24:23.087 2025-03-20 11:24:23.087 1000 FEE 436617 666 \N \N 6047802 2025-03-20 11:26:27.625 2025-03-20 11:26:27.625 1000 FEE 436620 21713 \N \N 6047820 2025-03-20 11:31:02.08 2025-03-20 11:31:02.08 1000 FEE 436624 647 \N \N 6047826 2025-03-20 11:32:18.114 2025-03-20 11:32:18.114 10000 FEE 436627 17727 \N \N 6047837 2025-03-20 11:33:24.692 2025-03-20 11:33:24.692 900 FEE 436529 2710 \N \N 6047838 2025-03-20 11:33:24.692 2025-03-20 11:33:24.692 8100 TIP 436529 5758 \N \N 6047846 2025-03-20 11:34:31.813 2025-03-20 11:34:31.813 1000 FEE 436628 20562 \N \N 6047847 2025-03-20 11:34:31.813 2025-03-20 11:34:31.813 9000 TIP 436628 8926 \N \N 6047878 2025-03-20 11:34:36.76 2025-03-20 11:34:36.76 1000 FEE 436628 14195 \N \N 6047879 2025-03-20 11:34:36.76 2025-03-20 11:34:36.76 9000 TIP 436628 20939 \N \N 6047880 2025-03-20 11:34:37.216 2025-03-20 11:34:37.216 1000 FEE 436628 711 \N \N 6047881 2025-03-20 11:34:37.216 2025-03-20 11:34:37.216 9000 TIP 436628 19471 \N \N 6047890 2025-03-20 11:35:34.129 2025-03-20 11:35:34.129 2100 FEE 435882 15624 \N \N 6047891 2025-03-20 11:35:34.129 2025-03-20 11:35:34.129 18900 TIP 435882 10060 \N \N 6047897 2025-03-20 11:36:40.448 2025-03-20 11:36:40.448 1000 FEE 436581 4074 \N \N 6047898 2025-03-20 11:36:40.448 2025-03-20 11:36:40.448 9000 TIP 436581 21771 \N \N 6047905 2025-03-20 11:38:03.71 2025-03-20 11:38:03.71 1000 FEE 435912 8870 \N \N 6047906 2025-03-20 11:38:03.71 2025-03-20 11:38:03.71 9000 TIP 435912 895 \N \N 6047923 2025-03-20 11:39:56.056 2025-03-20 11:39:56.056 2100 FEE 436560 14278 \N \N 6047924 2025-03-20 11:39:56.056 2025-03-20 11:39:56.056 18900 TIP 436560 6149 \N \N 6047940 2025-03-20 11:40:21.366 2025-03-20 11:40:21.366 8300 FEE 436499 2577 \N \N 6047941 2025-03-20 11:40:21.366 2025-03-20 11:40:21.366 74700 TIP 436499 2016 \N \N 6047956 2025-03-20 11:40:22.871 2025-03-20 11:40:22.871 16600 FEE 436499 21798 \N \N 6047957 2025-03-20 11:40:22.871 2025-03-20 11:40:22.871 149400 TIP 436499 4079 \N \N 6047962 2025-03-20 11:40:41.833 2025-03-20 11:40:41.833 2100 FEE 436395 9332 \N \N 6047963 2025-03-20 11:40:41.833 2025-03-20 11:40:41.833 18900 TIP 436395 635 \N \N 6047966 2025-03-20 11:41:31.93 2025-03-20 11:41:31.93 1000 FEE 435869 733 \N \N 6047967 2025-03-20 11:41:31.93 2025-03-20 11:41:31.93 9000 TIP 435869 9705 \N \N 6047970 2025-03-20 11:42:02.014 2025-03-20 11:42:02.014 2100 FEE 436560 21571 \N \N 6047971 2025-03-20 11:42:02.014 2025-03-20 11:42:02.014 18900 TIP 436560 1718 \N \N 6047990 2025-03-20 11:44:17.697 2025-03-20 11:44:17.697 1000 FEE 436560 1825 \N \N 6047991 2025-03-20 11:44:17.697 2025-03-20 11:44:17.697 9000 TIP 436560 18526 \N \N 6047994 2025-03-20 11:44:18.122 2025-03-20 11:44:18.122 1000 FEE 436560 1319 \N \N 6047995 2025-03-20 11:44:18.122 2025-03-20 11:44:18.122 9000 TIP 436560 19663 \N \N 6047996 2025-03-20 11:44:20.399 2025-03-20 11:44:20.399 1000 FEE 436566 11220 \N \N 6047997 2025-03-20 11:44:20.399 2025-03-20 11:44:20.399 9000 TIP 436566 21794 \N \N 6047998 2025-03-20 11:44:23.296 2025-03-20 11:44:23.296 1000 POLL 436323 19829 \N \N 6048029 2025-03-20 11:45:24.238 2025-03-20 11:45:24.238 1000 FEE 436637 766 \N \N 6048032 2025-03-20 11:46:42.451 2025-03-20 11:46:42.451 2100 FEE 436323 18956 \N \N 6048033 2025-03-20 11:46:42.451 2025-03-20 11:46:42.451 18900 TIP 436323 20019 \N \N 6048066 2025-03-20 11:48:30.848 2025-03-20 11:48:30.848 900 FEE 436568 13097 \N \N 6048067 2025-03-20 11:48:30.848 2025-03-20 11:48:30.848 8100 TIP 436568 20481 \N \N 6048073 2025-03-20 11:49:37.391 2025-03-20 11:49:37.391 1000 FEE 436566 2338 \N \N 6048074 2025-03-20 11:49:37.391 2025-03-20 11:49:37.391 9000 TIP 436566 896 \N \N 6048097 2025-03-20 11:53:18.711 2025-03-20 11:53:18.711 100 FEE 436619 861 \N \N 6048098 2025-03-20 11:53:18.711 2025-03-20 11:53:18.711 900 TIP 436619 4802 \N \N 6048126 2025-03-20 11:56:58.521 2025-03-20 11:56:58.521 100 FEE 436642 17275 \N \N 6048127 2025-03-20 11:56:58.521 2025-03-20 11:56:58.521 900 TIP 436642 21430 \N \N 6048131 2025-03-20 11:57:38.034 2025-03-20 11:57:38.034 200 FEE 436621 10409 \N \N 6048132 2025-03-20 11:57:38.034 2025-03-20 11:57:38.034 1800 TIP 436621 5828 \N \N 6048141 2025-03-20 11:58:46.223 2025-03-20 11:58:46.223 800 FEE 436508 1615 \N \N 6048142 2025-03-20 11:58:46.223 2025-03-20 11:58:46.223 7200 TIP 436508 20717 \N \N 6048176 2025-03-20 12:05:12.202 2025-03-20 12:05:12.202 8300 FEE 436508 1647 \N \N 6048177 2025-03-20 12:05:12.202 2025-03-20 12:05:12.202 74700 TIP 436508 9355 \N \N 6048180 2025-03-20 12:05:12.559 2025-03-20 12:05:12.559 8300 FEE 436508 10698 \N \N 6048181 2025-03-20 12:05:12.559 2025-03-20 12:05:12.559 74700 TIP 436508 21620 \N \N 6048302 2025-03-20 12:19:29.663 2025-03-20 12:19:29.663 4000 FEE 436654 1082 \N \N 6048303 2025-03-20 12:19:29.663 2025-03-20 12:19:29.663 36000 TIP 436654 18500 \N \N 6047540 2025-03-20 11:10:59.573 2025-03-20 11:10:59.573 9000 TIP 436326 10719 \N \N 6047551 2025-03-20 11:11:00.537 2025-03-20 11:11:00.537 1000 FEE 436326 16176 \N \N 6047552 2025-03-20 11:11:00.537 2025-03-20 11:11:00.537 9000 TIP 436326 13162 \N \N 6047559 2025-03-20 11:11:00.945 2025-03-20 11:11:00.945 1000 FEE 436326 17046 \N \N 6047560 2025-03-20 11:11:00.945 2025-03-20 11:11:00.945 9000 TIP 436326 11073 \N \N 6047571 2025-03-20 11:11:01.829 2025-03-20 11:11:01.829 1000 FEE 436326 11527 \N \N 6047572 2025-03-20 11:11:01.829 2025-03-20 11:11:01.829 9000 TIP 436326 1433 \N \N 6047577 2025-03-20 11:11:02.35 2025-03-20 11:11:02.35 1000 FEE 436326 985 \N \N 6047578 2025-03-20 11:11:02.35 2025-03-20 11:11:02.35 9000 TIP 436326 3409 \N \N 6047603 2025-03-20 11:11:08.444 2025-03-20 11:11:08.444 1000 FEE 436326 6777 \N \N 6047604 2025-03-20 11:11:08.444 2025-03-20 11:11:08.444 9000 TIP 436326 20624 \N \N 6047637 2025-03-20 11:11:11.15 2025-03-20 11:11:11.15 1000 FEE 436326 675 \N \N 6047638 2025-03-20 11:11:11.15 2025-03-20 11:11:11.15 9000 TIP 436326 19126 \N \N 6047641 2025-03-20 11:11:11.917 2025-03-20 11:11:11.917 1000 FEE 436326 10484 \N \N 6047642 2025-03-20 11:11:11.917 2025-03-20 11:11:11.917 9000 TIP 436326 18409 \N \N 6047648 2025-03-20 11:11:13.934 2025-03-20 11:11:13.934 1000 FEE 436326 14774 \N \N 6047649 2025-03-20 11:11:13.934 2025-03-20 11:11:13.934 9000 TIP 436326 13753 \N \N 6047662 2025-03-20 11:12:01.27 2025-03-20 11:12:01.27 90000 FEE 435231 18005 \N \N 6047663 2025-03-20 11:12:01.27 2025-03-20 11:12:01.27 810000 TIP 435231 18274 \N \N 6047672 2025-03-20 11:12:21.439 2025-03-20 11:12:21.439 9000 FEE 436553 5520 \N \N 6047673 2025-03-20 11:12:21.439 2025-03-20 11:12:21.439 81000 TIP 436553 19263 \N \N 6047676 2025-03-20 11:12:37.61 2025-03-20 11:12:37.61 9000 FEE 435639 1012 \N \N 6047677 2025-03-20 11:12:37.61 2025-03-20 11:12:37.61 81000 TIP 435639 5646 \N \N 6047692 2025-03-20 11:13:25.61 2025-03-20 11:13:25.61 3000 FEE 436593 9242 \N \N 6047693 2025-03-20 11:13:25.61 2025-03-20 11:13:25.61 27000 TIP 436593 10311 \N \N 6047719 2025-03-20 11:21:40.738 2025-03-20 11:21:40.738 100000 DONT_LIKE_THIS 436459 21833 \N \N 6047740 2025-03-20 11:21:46.212 2025-03-20 11:21:46.212 10000 FEE 436613 8284 \N \N 6047741 2025-03-20 11:21:59.313 2025-03-20 11:21:59.313 2100 FEE 436508 649 \N \N 6047742 2025-03-20 11:21:59.313 2025-03-20 11:21:59.313 18900 TIP 436508 998 \N \N 6047743 2025-03-20 11:21:59.565 2025-03-20 11:21:59.565 2100 FEE 436508 889 \N \N 6047744 2025-03-20 11:21:59.565 2025-03-20 11:21:59.565 18900 TIP 436508 17095 \N \N 6047745 2025-03-20 11:21:59.719 2025-03-20 11:21:59.719 2100 FEE 436508 1970 \N \N 6047746 2025-03-20 11:21:59.719 2025-03-20 11:21:59.719 18900 TIP 436508 1094 \N \N 6047760 2025-03-20 11:22:13.379 2025-03-20 11:22:13.379 2100 FEE 436603 20657 \N \N 6047761 2025-03-20 11:22:13.379 2025-03-20 11:22:13.379 18900 TIP 436603 9863 \N \N 6047787 2025-03-20 11:23:57.5 2025-03-20 11:23:57.5 1000 FEE 436434 2039 \N \N 6047788 2025-03-20 11:23:57.5 2025-03-20 11:23:57.5 9000 TIP 436434 17316 \N \N 6047794 2025-03-20 11:25:27.985 2025-03-20 11:25:27.985 500 FEE 436536 9183 \N \N 6047795 2025-03-20 11:25:27.985 2025-03-20 11:25:27.985 4500 TIP 436536 5427 \N \N 6047813 2025-03-20 11:29:26.447 2025-03-20 11:29:26.447 3300 FEE 436218 13903 \N \N 6047814 2025-03-20 11:29:26.447 2025-03-20 11:29:26.447 29700 TIP 436218 11523 \N \N 6047824 2025-03-20 11:32:06.742 2025-03-20 11:32:06.742 0 FEE 436615 18101 \N \N 6047844 2025-03-20 11:34:31.641 2025-03-20 11:34:31.641 1000 FEE 436628 15160 \N \N 6047845 2025-03-20 11:34:31.641 2025-03-20 11:34:31.641 9000 TIP 436628 4802 \N \N 6047866 2025-03-20 11:34:35.54 2025-03-20 11:34:35.54 1000 FEE 436628 19117 \N \N 6047867 2025-03-20 11:34:35.54 2025-03-20 11:34:35.54 9000 TIP 436628 12821 \N \N 6047868 2025-03-20 11:34:35.886 2025-03-20 11:34:35.886 1000 FEE 436628 9276 \N \N 6047869 2025-03-20 11:34:35.886 2025-03-20 11:34:35.886 9000 TIP 436628 14472 \N \N 6047882 2025-03-20 11:34:37.461 2025-03-20 11:34:37.461 1000 FEE 436628 1493 \N \N 6047883 2025-03-20 11:34:37.461 2025-03-20 11:34:37.461 9000 TIP 436628 10280 \N \N 6047888 2025-03-20 11:35:31.691 2025-03-20 11:35:31.691 2100 FEE 436466 20897 \N \N 6047889 2025-03-20 11:35:31.691 2025-03-20 11:35:31.691 18900 TIP 436466 20102 \N \N 6047914 2025-03-20 11:39:35.7 2025-03-20 11:39:35.7 1000 FEE 436633 20205 \N \N 6047919 2025-03-20 11:39:47.238 2025-03-20 11:39:47.238 2100 FEE 436503 928 \N \N 6047920 2025-03-20 11:39:47.238 2025-03-20 11:39:47.238 18900 TIP 436503 925 \N \N 6047929 2025-03-20 11:40:05.181 2025-03-20 11:40:05.181 2100 FEE 436499 6616 \N \N 6047930 2025-03-20 11:40:05.181 2025-03-20 11:40:05.181 18900 TIP 436499 21218 \N \N 6047954 2025-03-20 11:40:22.289 2025-03-20 11:40:22.289 8300 FEE 436499 15367 \N \N 6047955 2025-03-20 11:40:22.289 2025-03-20 11:40:22.289 74700 TIP 436499 20180 \N \N 6047976 2025-03-20 11:42:34.663 2025-03-20 11:42:34.663 1100 FEE 436622 20624 \N \N 6047583 2025-03-20 11:11:02.757 2025-03-20 11:11:02.757 1000 FEE 436326 7583 \N \N 6047584 2025-03-20 11:11:02.757 2025-03-20 11:11:02.757 9000 TIP 436326 7097 \N \N 6047585 2025-03-20 11:11:02.907 2025-03-20 11:11:02.907 1000 FEE 436326 21521 \N \N 6047586 2025-03-20 11:11:02.907 2025-03-20 11:11:02.907 9000 TIP 436326 19138 \N \N 6047605 2025-03-20 11:11:08.548 2025-03-20 11:11:08.548 1000 FEE 436326 5085 \N \N 6047606 2025-03-20 11:11:08.548 2025-03-20 11:11:08.548 9000 TIP 436326 4314 \N \N 6047611 2025-03-20 11:11:08.99 2025-03-20 11:11:08.99 1000 FEE 436326 19292 \N \N 6047612 2025-03-20 11:11:08.99 2025-03-20 11:11:08.99 9000 TIP 436326 18601 \N \N 6047615 2025-03-20 11:11:09.298 2025-03-20 11:11:09.298 1000 FEE 436326 5578 \N \N 6047616 2025-03-20 11:11:09.298 2025-03-20 11:11:09.298 9000 TIP 436326 5809 \N \N 6047621 2025-03-20 11:11:09.75 2025-03-20 11:11:09.75 1000 FEE 436326 10862 \N \N 6047622 2025-03-20 11:11:09.75 2025-03-20 11:11:09.75 9000 TIP 436326 21555 \N \N 6047631 2025-03-20 11:11:10.676 2025-03-20 11:11:10.676 1000 FEE 436326 21791 \N \N 6047632 2025-03-20 11:11:10.676 2025-03-20 11:11:10.676 9000 TIP 436326 18306 \N \N 6047639 2025-03-20 11:11:11.291 2025-03-20 11:11:11.291 1000 FEE 436326 21603 \N \N 6047640 2025-03-20 11:11:11.291 2025-03-20 11:11:11.291 9000 TIP 436326 9336 \N \N 6047643 2025-03-20 11:11:12.393 2025-03-20 11:11:12.393 1000 FEE 436326 4570 \N \N 6047644 2025-03-20 11:11:12.393 2025-03-20 11:11:12.393 9000 TIP 436326 814 \N \N 6047669 2025-03-20 11:12:09.227 2025-03-20 11:12:09.227 900 FEE 436553 20243 \N \N 6047670 2025-03-20 11:12:09.227 2025-03-20 11:12:09.227 8100 TIP 436553 10393 \N \N 6047684 2025-03-20 11:13:02.451 2025-03-20 11:13:02.451 90000 FEE 435746 11516 \N \N 6047685 2025-03-20 11:13:02.451 2025-03-20 11:13:02.451 810000 TIP 435746 17944 \N \N 6047690 2025-03-20 11:13:21.645 2025-03-20 11:13:21.645 3000 FEE 436605 5961 \N \N 6047691 2025-03-20 11:13:21.645 2025-03-20 11:13:21.645 27000 TIP 436605 981 \N \N 6047769 2025-03-20 11:22:38.102 2025-03-20 11:22:38.102 1000 FEE 436615 2213 \N \N 6047773 2025-03-20 11:23:47.096 2025-03-20 11:23:47.096 1000 FEE 436323 15624 \N \N 6047774 2025-03-20 11:23:47.096 2025-03-20 11:23:47.096 9000 TIP 436323 4624 \N \N 6047779 2025-03-20 11:23:49.205 2025-03-20 11:23:49.205 2100 FEE 436394 21079 \N \N 6047780 2025-03-20 11:23:49.205 2025-03-20 11:23:49.205 18900 TIP 436394 15690 \N \N 6047783 2025-03-20 11:23:49.592 2025-03-20 11:23:49.592 2100 FEE 436394 680 \N \N 6047784 2025-03-20 11:23:49.592 2025-03-20 11:23:49.592 18900 TIP 436394 14404 \N \N 6047805 2025-03-20 11:26:57.994 2025-03-20 11:26:57.994 1000 FEE 436621 16954 \N \N 6047809 2025-03-20 11:27:30.086 2025-03-20 11:27:30.086 1000 FEE 436622 16284 \N \N 6047831 2025-03-20 11:33:20.05 2025-03-20 11:33:20.05 100 FEE 436561 854 \N \N 6047832 2025-03-20 11:33:20.05 2025-03-20 11:33:20.05 900 TIP 436561 21688 \N \N 6047850 2025-03-20 11:34:32.602 2025-03-20 11:34:32.602 1000 FEE 436628 1051 \N \N 6047851 2025-03-20 11:34:32.602 2025-03-20 11:34:32.602 9000 TIP 436628 762 \N \N 6047854 2025-03-20 11:34:33.49 2025-03-20 11:34:33.49 1000 FEE 436628 960 \N \N 6047855 2025-03-20 11:34:33.49 2025-03-20 11:34:33.49 9000 TIP 436628 10731 \N \N 6047872 2025-03-20 11:34:36.225 2025-03-20 11:34:36.225 1000 FEE 436628 651 \N \N 6047873 2025-03-20 11:34:36.225 2025-03-20 11:34:36.225 9000 TIP 436628 9365 \N \N 6047907 2025-03-20 11:38:04.583 2025-03-20 11:38:04.583 1000 FEE 435912 12959 \N \N 6047908 2025-03-20 11:38:04.583 2025-03-20 11:38:04.583 9000 TIP 435912 21798 \N \N 6047931 2025-03-20 11:40:05.723 2025-03-20 11:40:05.723 2100 FEE 436523 1726 \N \N 6047932 2025-03-20 11:40:05.723 2025-03-20 11:40:05.723 18900 TIP 436523 7659 \N \N 6047960 2025-03-20 11:40:33.678 2025-03-20 11:40:33.678 1000 FEE 436186 21022 \N \N 6047961 2025-03-20 11:40:33.678 2025-03-20 11:40:33.678 9000 TIP 436186 711 \N \N 6047992 2025-03-20 11:44:17.989 2025-03-20 11:44:17.989 1000 FEE 436560 21442 \N \N 6047993 2025-03-20 11:44:17.989 2025-03-20 11:44:17.989 9000 TIP 436560 17106 \N \N 6048043 2025-03-20 11:47:51.697 2025-03-20 11:47:51.697 1000 FEE 436559 16684 \N \N 6048044 2025-03-20 11:47:51.697 2025-03-20 11:47:51.697 9000 TIP 436559 16149 \N \N 6048076 2025-03-20 11:50:21.25 2025-03-20 11:50:21.25 1000 FEE 436639 1970 \N \N 6048080 2025-03-20 11:50:51.003 2025-03-20 11:50:51.003 1100 FEE 436523 4831 \N \N 6048081 2025-03-20 11:50:51.003 2025-03-20 11:50:51.003 9900 TIP 436523 19821 \N \N 6048128 2025-03-20 11:56:58.736 2025-03-20 11:56:58.736 100 FEE 436642 17316 \N \N 6048129 2025-03-20 11:56:58.736 2025-03-20 11:56:58.736 900 TIP 436642 10393 \N \N 6048134 2025-03-20 11:57:43.735 2025-03-20 11:57:43.735 100000 FEE 436647 15978 \N \N 6048195 2025-03-20 12:05:26.847 2025-03-20 12:05:26.847 1000 FEE 436632 674 \N \N 6048196 2025-03-20 12:05:26.847 2025-03-20 12:05:26.847 9000 TIP 436632 16842 \N \N 6048207 2025-03-20 12:06:03.403 2025-03-20 12:06:03.403 2100 FEE 436558 21514 \N \N 6048208 2025-03-20 12:06:03.403 2025-03-20 12:06:03.403 18900 TIP 436558 19663 \N \N 6048217 2025-03-20 12:06:11.935 2025-03-20 12:06:11.935 2100 FEE 436521 2347 \N \N 6048218 2025-03-20 12:06:11.935 2025-03-20 12:06:11.935 18900 TIP 436521 17714 \N \N 6048296 2025-03-20 12:17:25.519 2025-03-20 12:17:25.519 2100 FEE 436549 1801 \N \N 6048297 2025-03-20 12:17:25.519 2025-03-20 12:17:25.519 18900 TIP 436549 14489 \N \N 6048298 2025-03-20 12:17:29.026 2025-03-20 12:17:29.026 7100 FEE 436549 1638 \N \N 6048299 2025-03-20 12:17:29.026 2025-03-20 12:17:29.026 63900 TIP 436549 15336 \N \N 6048304 2025-03-20 12:19:36.842 2025-03-20 12:19:36.842 4000 FEE 436640 12959 \N \N 6048305 2025-03-20 12:19:36.842 2025-03-20 12:19:36.842 36000 TIP 436640 937 \N \N 6048317 2025-03-20 12:21:52.47 2025-03-20 12:21:52.47 27000 FEE 436658 1046 \N \N 6048318 2025-03-20 12:21:52.47 2025-03-20 12:21:52.47 243000 TIP 436658 4819 \N \N 6048320 2025-03-20 12:22:56.024 2025-03-20 12:22:56.024 2100 FEE 436659 21275 \N \N 6048321 2025-03-20 12:22:56.024 2025-03-20 12:22:56.024 18900 TIP 436659 686 \N \N 6048326 2025-03-20 12:24:58.547 2025-03-20 12:24:58.547 1000 FEE 436660 7899 \N \N 6048347 2025-03-20 12:31:29.811 2025-03-20 12:31:29.811 1000 FEE 436666 2233 \N \N 6048361 2025-03-20 12:34:58.491 2025-03-20 12:34:58.491 1000 FEE 436669 20775 \N \N 6048362 2025-03-20 12:34:58.491 2025-03-20 12:34:58.491 9000 TIP 436669 17535 \N \N 6048367 2025-03-20 12:35:01.677 2025-03-20 12:35:01.677 1000 FEE 436669 21036 \N \N 6048368 2025-03-20 12:35:01.677 2025-03-20 12:35:01.677 9000 TIP 436669 19857 \N \N 6048379 2025-03-20 12:35:02.788 2025-03-20 12:35:02.788 1000 FEE 436669 5590 \N \N 6048380 2025-03-20 12:35:02.788 2025-03-20 12:35:02.788 9000 TIP 436669 2232 \N \N 6048389 2025-03-20 12:35:03.768 2025-03-20 12:35:03.768 1000 FEE 436669 2719 \N \N 6113445 2025-03-26 06:00:41.368 2025-03-26 06:00:41.368 5700 FEE 443617 1740 \N \N 6113446 2025-03-26 06:00:41.368 2025-03-26 06:00:41.368 51300 TIP 443617 21296 \N \N 6113455 2025-03-26 06:01:04.271 2025-03-26 06:01:04.271 2100 FEE 443396 19637 \N \N 6113456 2025-03-26 06:01:04.271 2025-03-26 06:01:04.271 18900 TIP 443396 19016 \N \N 6113474 2025-03-26 06:01:19.336 2025-03-26 06:01:19.336 7700 FEE 443617 19980 \N \N 6113475 2025-03-26 06:01:19.336 2025-03-26 06:01:19.336 69300 TIP 443617 21208 \N \N 6113480 2025-03-26 06:01:20.42 2025-03-26 06:01:20.42 7700 FEE 443617 736 \N \N 6113481 2025-03-26 06:01:20.42 2025-03-26 06:01:20.42 69300 TIP 443617 20562 \N \N 6155561 2025-03-29 08:44:45.802 2025-03-29 08:44:45.802 18900 TIP 444866 19198 \N \N 6155610 2025-03-29 08:50:18.289 2025-03-29 08:50:18.289 1000 FEE 448408 4538 \N \N 6155617 2025-03-29 08:51:29.786 2025-03-29 08:51:29.786 1000 FEE 448410 16594 \N \N 6155642 2025-03-29 08:54:12.227 2025-03-29 08:54:12.227 1000 FEE 448403 16809 \N \N 6155643 2025-03-29 08:54:12.227 2025-03-29 08:54:12.227 9000 TIP 448403 20603 \N \N 6161040 2025-03-29 19:40:48.005 2025-03-29 19:40:48.005 500 FEE 448598 17124 \N \N 6161041 2025-03-29 19:40:48.005 2025-03-29 19:40:48.005 4500 TIP 448598 960 \N \N 6161044 2025-03-29 19:40:57.919 2025-03-29 19:40:57.919 500 FEE 448935 5487 \N \N 6161045 2025-03-29 19:40:57.919 2025-03-29 19:40:57.919 4500 TIP 448935 17415 \N \N 6161054 2025-03-29 19:41:12.169 2025-03-29 19:41:12.169 500 FEE 448948 1631 \N \N 6161055 2025-03-29 19:41:12.169 2025-03-29 19:41:12.169 4500 TIP 448948 980 \N \N 6161069 2025-03-29 19:41:23.625 2025-03-29 19:41:23.625 500 FEE 448932 19126 \N \N 6161070 2025-03-29 19:41:23.625 2025-03-29 19:41:23.625 4500 TIP 448932 1802 \N \N 6161077 2025-03-29 19:41:46.644 2025-03-29 19:41:46.644 500 FEE 448907 6687 \N \N 6161078 2025-03-29 19:41:46.644 2025-03-29 19:41:46.644 4500 TIP 448907 21639 \N \N 6161087 2025-03-29 19:41:54.204 2025-03-29 19:41:54.204 500 FEE 448902 11450 \N \N 6161088 2025-03-29 19:41:54.204 2025-03-29 19:41:54.204 4500 TIP 448902 679 \N \N 6161100 2025-03-29 19:42:22.943 2025-03-29 19:42:22.943 2100 FEE 448894 5487 \N \N 6161101 2025-03-29 19:42:22.943 2025-03-29 19:42:22.943 18900 TIP 448894 624 \N \N 6161124 2025-03-29 19:54:37.305 2025-03-29 19:54:37.305 10000 FEE 448953 16660 \N \N 6161139 2025-03-29 19:57:01.042 2025-03-29 19:57:01.042 1000 FEE 448954 644 \N \N 6161142 2025-03-29 19:57:19.83 2025-03-29 19:57:19.83 2100 FEE 448888 3456 \N \N 6161143 2025-03-29 19:57:19.83 2025-03-29 19:57:19.83 18900 TIP 448888 8989 \N \N 6161312 2025-03-29 20:20:51.691 2025-03-29 20:20:51.691 2500 FEE 447960 691 \N \N 6161313 2025-03-29 20:20:51.691 2025-03-29 20:20:51.691 22500 TIP 447960 21233 \N \N 6161324 2025-03-29 20:21:21.755 2025-03-29 20:21:21.755 2500 FEE 448043 16998 \N \N 6161325 2025-03-29 20:21:21.755 2025-03-29 20:21:21.755 22500 TIP 448043 7389 \N \N 6161340 2025-03-29 20:22:48.079 2025-03-29 20:22:48.079 1000 FEE 448817 7675 \N \N 6161341 2025-03-29 20:22:48.079 2025-03-29 20:22:48.079 9000 TIP 448817 10554 \N \N 6161347 2025-03-29 20:25:12.758 2025-03-29 20:25:12.758 0 FEE 448966 4064 \N \N 6161356 2025-03-29 20:26:34.419 2025-03-29 20:26:34.419 500 FEE 448888 2213 \N \N 6161357 2025-03-29 20:26:34.419 2025-03-29 20:26:34.419 4500 TIP 448888 11776 \N \N 6161374 2025-03-29 20:32:53.148 2025-03-29 20:32:53.148 10000 FEE 448971 700 \N \N 6161375 2025-03-29 20:32:53.148 2025-03-29 20:32:53.148 90000 TIP 448971 21713 \N \N 6161394 2025-03-29 20:42:38.174 2025-03-29 20:42:38.174 1000 FEE 448349 19655 \N \N 6161395 2025-03-29 20:42:38.174 2025-03-29 20:42:38.174 9000 TIP 448349 636 \N \N 6161407 2025-03-29 20:48:42.006 2025-03-29 20:48:42.006 2100 FEE 448971 15049 \N \N 6161408 2025-03-29 20:48:42.006 2025-03-29 20:48:42.006 18900 TIP 448971 21303 \N \N 6161430 2025-03-29 20:58:48.424 2025-03-29 20:58:48.424 100 FEE 448962 12097 \N \N 6161431 2025-03-29 20:58:48.424 2025-03-29 20:58:48.424 900 TIP 448962 11378 \N \N 6161434 2025-03-29 20:58:49.538 2025-03-29 20:58:49.538 9000 FEE 448962 2952 \N \N 6161435 2025-03-29 20:58:49.538 2025-03-29 20:58:49.538 81000 TIP 448962 12261 \N \N 6161442 2025-03-29 20:59:10.884 2025-03-29 20:59:10.884 100 FEE 448888 14370 \N \N 6161443 2025-03-29 20:59:10.884 2025-03-29 20:59:10.884 900 TIP 448888 20817 \N \N 6161447 2025-03-29 20:59:12.753 2025-03-29 20:59:12.753 9000 FEE 448888 11716 \N \N 6161448 2025-03-29 20:59:12.753 2025-03-29 20:59:12.753 81000 TIP 448888 2013 \N \N 6047734 2025-03-20 11:21:43.712 2025-03-20 11:21:43.712 8300 FEE 436560 6602 \N \N 6047735 2025-03-20 11:21:43.712 2025-03-20 11:21:43.712 74700 TIP 436560 2734 \N \N 6047738 2025-03-20 11:21:44.024 2025-03-20 11:21:44.024 8300 FEE 436560 9354 \N \N 6047739 2025-03-20 11:21:44.024 2025-03-20 11:21:44.024 74700 TIP 436560 21338 \N \N 6047753 2025-03-20 11:22:00.536 2025-03-20 11:22:00.536 2100 FEE 436508 13903 \N \N 6047754 2025-03-20 11:22:00.536 2025-03-20 11:22:00.536 18900 TIP 436508 1729 \N \N 6047759 2025-03-20 11:22:08.007 2025-03-20 11:22:08.007 1000 FEE 436614 15703 \N \N 6047765 2025-03-20 11:22:37.814 2025-03-20 11:22:37.814 2100 FEE 436553 4650 \N \N 6047766 2025-03-20 11:22:37.814 2025-03-20 11:22:37.814 18900 TIP 436553 13378 \N \N 6047775 2025-03-20 11:23:48.749 2025-03-20 11:23:48.749 2100 FEE 436394 11897 \N \N 6047776 2025-03-20 11:23:48.749 2025-03-20 11:23:48.749 18900 TIP 436394 21577 \N \N 6047797 2025-03-20 11:25:49.742 2025-03-20 11:25:49.742 2100 FEE 436556 16456 \N \N 6047798 2025-03-20 11:25:49.742 2025-03-20 11:25:49.742 18900 TIP 436556 21216 \N \N 6047807 2025-03-20 11:27:28.979 2025-03-20 11:27:28.979 1000 FEE 436566 4173 \N \N 6047808 2025-03-20 11:27:28.979 2025-03-20 11:27:28.979 9000 TIP 436566 9333 \N \N 6047835 2025-03-20 11:33:24.403 2025-03-20 11:33:24.403 100 FEE 436529 1401 \N \N 6047836 2025-03-20 11:33:24.403 2025-03-20 11:33:24.403 900 TIP 436529 16442 \N \N 6047860 2025-03-20 11:34:34.64 2025-03-20 11:34:34.64 2000 FEE 436628 9 \N \N 6047861 2025-03-20 11:34:34.64 2025-03-20 11:34:34.64 18000 TIP 436628 14990 \N \N 6047862 2025-03-20 11:34:35.171 2025-03-20 11:34:35.171 1000 FEE 436628 5036 \N \N 6047863 2025-03-20 11:34:35.171 2025-03-20 11:34:35.171 9000 TIP 436628 19071 \N \N 6047864 2025-03-20 11:34:35.372 2025-03-20 11:34:35.372 1000 FEE 436628 18601 \N \N 6047865 2025-03-20 11:34:35.372 2025-03-20 11:34:35.372 9000 TIP 436628 1712 \N \N 6047885 2025-03-20 11:35:16.575 2025-03-20 11:35:16.575 1000 FEE 436631 11621 \N \N 6047903 2025-03-20 11:38:01.588 2025-03-20 11:38:01.588 1000 FEE 435912 1534 \N \N 6047904 2025-03-20 11:38:01.588 2025-03-20 11:38:01.588 9000 TIP 435912 4538 \N \N 6047915 2025-03-20 11:39:45.689 2025-03-20 11:39:45.689 2100 FEE 436481 4624 \N \N 6047916 2025-03-20 11:39:45.689 2025-03-20 11:39:45.689 18900 TIP 436481 13547 \N \N 6047952 2025-03-20 11:40:22.221 2025-03-20 11:40:22.221 8300 FEE 436499 5746 \N \N 6047953 2025-03-20 11:40:22.221 2025-03-20 11:40:22.221 74700 TIP 436499 16834 \N \N 6047968 2025-03-20 11:42:01.783 2025-03-20 11:42:01.783 2100 FEE 436560 13878 \N \N 6047969 2025-03-20 11:42:01.783 2025-03-20 11:42:01.783 18900 TIP 436560 725 \N \N 6047973 2025-03-20 11:42:21.038 2025-03-20 11:42:21.038 1000 FEE 436635 16354 \N \N 6048016 2025-03-20 11:45:02.207 2025-03-20 11:45:02.207 2100 FEE 436556 20636 \N \N 6048017 2025-03-20 11:45:02.207 2025-03-20 11:45:02.207 18900 TIP 436556 964 \N \N 6048025 2025-03-20 11:45:17.977 2025-03-20 11:45:17.977 2100 FEE 436493 20613 \N \N 6048026 2025-03-20 11:45:17.977 2025-03-20 11:45:17.977 18900 TIP 436493 1751 \N \N 6048037 2025-03-20 11:47:44.805 2025-03-20 11:47:44.805 1000 FEE 436636 7891 \N \N 6048038 2025-03-20 11:47:44.805 2025-03-20 11:47:44.805 9000 TIP 436636 5806 \N \N 6048056 2025-03-20 11:48:26.643 2025-03-20 11:48:26.643 100 FEE 436622 16145 \N \N 6048057 2025-03-20 11:48:26.643 2025-03-20 11:48:26.643 900 TIP 436622 716 \N \N 6048086 2025-03-20 11:52:31.927 2025-03-20 11:52:31.927 1100 FEE 436639 21798 \N \N 6048087 2025-03-20 11:52:31.927 2025-03-20 11:52:31.927 9900 TIP 436639 1141 \N \N 6048118 2025-03-20 11:56:56.878 2025-03-20 11:56:56.878 100 FEE 436642 11776 \N \N 6048119 2025-03-20 11:56:56.878 2025-03-20 11:56:56.878 900 TIP 436642 2757 \N \N 6048137 2025-03-20 11:58:39.61 2025-03-20 11:58:39.61 1200 FEE 436566 9496 \N \N 6048138 2025-03-20 11:58:39.61 2025-03-20 11:58:39.61 10800 TIP 436566 13198 \N \N 6048147 2025-03-20 11:58:47.763 2025-03-20 11:58:47.763 800 FEE 436508 10469 \N \N 6048148 2025-03-20 11:58:47.763 2025-03-20 11:58:47.763 7200 TIP 436508 11220 \N \N 6048151 2025-03-20 11:58:49.656 2025-03-20 11:58:49.656 800 FEE 436508 5085 \N \N 6048152 2025-03-20 11:58:49.656 2025-03-20 11:58:49.656 7200 TIP 436508 6749 \N \N 6048156 2025-03-20 12:00:20.099 2025-03-20 12:00:20.099 1000 FEE 436635 1552 \N \N 6048157 2025-03-20 12:00:20.099 2025-03-20 12:00:20.099 9000 TIP 436635 3706 \N \N 6048161 2025-03-20 12:01:57.082 2025-03-20 12:01:57.082 7100 FEE 436556 18231 \N \N 6048162 2025-03-20 12:01:57.082 2025-03-20 12:01:57.082 63900 TIP 436556 10490 \N \N 6048167 2025-03-20 12:03:16.548 2025-03-20 12:03:16.548 1000 FEE 436650 2042 \N \N 6048189 2025-03-20 12:05:24.356 2025-03-20 12:05:24.356 2100 FEE 436641 20811 \N \N 6048190 2025-03-20 12:05:24.356 2025-03-20 12:05:24.356 18900 TIP 436641 7916 \N \N 6048191 2025-03-20 12:05:25.286 2025-03-20 12:05:25.286 2100 FEE 436638 16513 \N \N 6048192 2025-03-20 12:05:25.286 2025-03-20 12:05:25.286 18900 TIP 436638 11395 \N \N 6048209 2025-03-20 12:06:07.736 2025-03-20 12:06:07.736 2100 FEE 436539 12921 \N \N 6048210 2025-03-20 12:06:07.736 2025-03-20 12:06:07.736 18900 TIP 436539 10608 \N \N 6048230 2025-03-20 12:08:24.779 2025-03-20 12:08:24.779 4000 FEE 436566 21145 \N \N 6048231 2025-03-20 12:08:24.779 2025-03-20 12:08:24.779 36000 TIP 436566 17014 \N \N 6048252 2025-03-20 12:10:29.059 2025-03-20 12:10:29.059 1000 FEE 436653 15408 \N \N 6048253 2025-03-20 12:10:54.899 2025-03-20 12:10:54.899 2100 FEE 436523 16660 \N \N 6048254 2025-03-20 12:10:54.899 2025-03-20 12:10:54.899 18900 TIP 436523 19531 \N \N 6048257 2025-03-20 12:11:56.841 2025-03-20 12:11:56.841 10000 FEE 436654 20768 \N \N 6048270 2025-03-20 12:12:49.156 2025-03-20 12:12:49.156 1000 FEE 436655 5112 \N \N 6048271 2025-03-20 12:12:59.286 2025-03-20 12:12:59.286 100000 DONT_LIKE_THIS 436651 10862 \N \N 6048287 2025-03-20 12:15:32.789 2025-03-20 12:15:32.789 10000 FEE 436459 17673 \N \N 6048288 2025-03-20 12:15:32.789 2025-03-20 12:15:32.789 90000 TIP 436459 14909 \N \N 6048323 2025-03-20 12:23:49.903 2025-03-20 12:23:49.903 4000 FEE 436659 7869 \N \N 6048324 2025-03-20 12:23:49.903 2025-03-20 12:23:49.903 36000 TIP 436659 19537 \N \N 6048348 2025-03-20 12:31:32.667 2025-03-20 12:31:32.667 1000 FEE 436667 12819 \N \N 6048352 2025-03-20 12:32:57.499 2025-03-20 12:32:57.499 1000 FEE 436668 1429 \N \N 6048358 2025-03-20 12:34:17.561 2025-03-20 12:34:17.561 1000 FEE 436459 762 \N \N 6048359 2025-03-20 12:34:17.561 2025-03-20 12:34:17.561 9000 TIP 436459 20502 \N \N 6048401 2025-03-20 12:35:04.945 2025-03-20 12:35:04.945 1000 FEE 436669 21036 \N \N 6048402 2025-03-20 12:35:04.945 2025-03-20 12:35:04.945 9000 TIP 436669 2674 \N \N 6048420 2025-03-20 12:35:17.85 2025-03-20 12:35:17.85 1000 FEE 436669 16176 \N \N 6048421 2025-03-20 12:35:17.85 2025-03-20 12:35:17.85 9000 TIP 436669 1173 \N \N 6048422 2025-03-20 12:35:19.739 2025-03-20 12:35:19.739 1000 FEE 436669 4798 \N \N 6048423 2025-03-20 12:35:19.739 2025-03-20 12:35:19.739 9000 TIP 436669 17106 \N \N 6048439 2025-03-20 12:36:32.502 2025-03-20 12:36:32.502 1000 FEE 436671 10934 \N \N 6048449 2025-03-20 12:37:02.874 2025-03-20 12:37:02.874 1000 FEE 436669 20892 \N \N 6048450 2025-03-20 12:37:02.874 2025-03-20 12:37:02.874 9000 TIP 436669 16876 \N \N 6048456 2025-03-20 12:37:14.759 2025-03-20 12:37:14.759 90000 FEE 436669 18423 \N \N 6048457 2025-03-20 12:37:14.759 2025-03-20 12:37:14.759 810000 TIP 436669 698 \N \N 6048471 2025-03-20 12:41:01.275 2025-03-20 12:41:01.275 400 FEE 436619 11716 \N \N 6048472 2025-03-20 12:41:01.275 2025-03-20 12:41:01.275 3600 TIP 436619 1802 \N \N 6113508 2025-03-26 06:02:24.346 2025-03-26 06:02:24.346 1000 FEE 443625 20225 \N \N 6113537 2025-03-26 06:03:23.843 2025-03-26 06:03:23.843 100 FEE 443577 4459 \N \N 6113538 2025-03-26 06:03:23.843 2025-03-26 06:03:23.843 900 TIP 443577 21119 \N \N 6113577 2025-03-26 06:04:18.948 2025-03-26 06:04:18.948 1000 FEE 443637 2710 \N \N 6113578 2025-03-26 06:04:19.748 2025-03-26 06:04:19.748 100 FEE 443528 5646 \N \N 6113579 2025-03-26 06:04:19.748 2025-03-26 06:04:19.748 900 TIP 443528 1737 \N \N 6113582 2025-03-26 06:04:22.242 2025-03-26 06:04:22.242 2100 FEE 443617 13177 \N \N 6113583 2025-03-26 06:04:22.242 2025-03-26 06:04:22.242 18900 TIP 443617 21365 \N \N 6113588 2025-03-26 06:04:28.861 2025-03-26 06:04:28.861 100 FEE 443495 16124 \N \N 6113589 2025-03-26 06:04:28.861 2025-03-26 06:04:28.861 900 TIP 443495 20956 \N \N 6113598 2025-03-26 06:04:55.876 2025-03-26 06:04:55.876 1000 FEE 443642 15326 \N \N 6113627 2025-03-26 06:07:01.914 2025-03-26 06:07:01.914 0 FEE 443646 6741 \N \N 6113637 2025-03-26 06:08:32.551 2025-03-26 06:08:32.551 1100 FEE 443635 2735 \N \N 6113638 2025-03-26 06:08:32.551 2025-03-26 06:08:32.551 9900 TIP 443635 730 \N \N 6113645 2025-03-26 06:09:32.857 2025-03-26 06:09:32.857 2700 FEE 443645 21228 \N \N 6113646 2025-03-26 06:09:32.857 2025-03-26 06:09:32.857 24300 TIP 443645 836 \N \N 6113651 2025-03-26 06:09:34.821 2025-03-26 06:09:34.821 5400 FEE 443645 16177 \N \N 6113652 2025-03-26 06:09:34.821 2025-03-26 06:09:34.821 48600 TIP 443645 9331 \N \N 6113678 2025-03-26 06:10:25.401 2025-03-26 06:10:25.401 21800 FEE 443611 5129 \N \N 6113679 2025-03-26 06:10:25.401 2025-03-26 06:10:25.401 196200 TIP 443611 21391 \N \N 6113690 2025-03-26 06:10:39.175 2025-03-26 06:10:39.175 2700 FEE 443545 17157 \N \N 6113691 2025-03-26 06:10:39.175 2025-03-26 06:10:39.175 24300 TIP 443545 4084 \N \N 6113717 2025-03-26 06:11:55.544 2025-03-26 06:11:55.544 1000 FEE 443659 1658 \N \N 6113719 2025-03-26 06:12:28.06 2025-03-26 06:12:28.06 1000 FEE 443660 5776 \N \N 6113739 2025-03-26 06:13:47.35 2025-03-26 06:13:47.35 2100 FEE 443583 17944 \N \N 6113740 2025-03-26 06:13:47.35 2025-03-26 06:13:47.35 18900 TIP 443583 13903 \N \N 6113753 2025-03-26 06:14:03.123 2025-03-26 06:14:03.123 2100 FEE 443617 12245 \N \N 6113754 2025-03-26 06:14:03.123 2025-03-26 06:14:03.123 18900 TIP 443617 9450 \N \N 6113762 2025-03-26 06:14:24.363 2025-03-26 06:14:24.363 1000 FEE 443617 16282 \N \N 6113763 2025-03-26 06:14:24.363 2025-03-26 06:14:24.363 9000 TIP 443617 716 \N \N 6113783 2025-03-26 06:16:45.879 2025-03-26 06:16:45.879 1000 FEE 443467 20717 \N \N 6113784 2025-03-26 06:16:45.879 2025-03-26 06:16:45.879 9000 TIP 443467 2942 \N \N 6113819 2025-03-26 06:18:15.009 2025-03-26 06:18:15.009 5700 FEE 443662 2111 \N \N 6113820 2025-03-26 06:18:15.009 2025-03-26 06:18:15.009 51300 TIP 443662 18743 \N \N 6113821 2025-03-26 06:18:30.175 2025-03-26 06:18:30.175 2100 FEE 443467 15806 \N \N 6113822 2025-03-26 06:18:30.175 2025-03-26 06:18:30.175 18900 TIP 443467 17014 \N \N 6113829 2025-03-26 06:19:10.395 2025-03-26 06:19:10.395 1000 FEE 443183 12736 \N \N 6113830 2025-03-26 06:19:10.395 2025-03-26 06:19:10.395 9000 TIP 443183 7674 \N \N 6113839 2025-03-26 06:20:00.954 2025-03-26 06:20:00.954 1000 FEE 443668 15510 \N \N 6113862 2025-03-26 06:20:54.729 2025-03-26 06:20:54.729 100 FEE 443247 5597 \N \N 6113863 2025-03-26 06:20:54.729 2025-03-26 06:20:54.729 900 TIP 443247 2722 \N \N 6113869 2025-03-26 06:21:36.672 2025-03-26 06:21:36.672 1000 FEE 443669 21114 \N \N 6113881 2025-03-26 06:22:08.569 2025-03-26 06:22:08.569 1000 FEE 443487 17976 \N \N 6113882 2025-03-26 06:22:08.569 2025-03-26 06:22:08.569 9000 TIP 443487 3717 \N \N 6113893 2025-03-26 06:24:52.961 2025-03-26 06:24:52.961 1700 FEE 443659 11153 \N \N 6113894 2025-03-26 06:24:52.961 2025-03-26 06:24:52.961 15300 TIP 443659 20381 \N \N 6113907 2025-03-26 06:26:12.842 2025-03-26 06:26:12.842 1000 FEE 443674 17041 \N \N 6113916 2025-03-26 06:28:05.374 2025-03-26 06:28:05.374 1000 FEE 443484 12057 \N \N 6113917 2025-03-26 06:28:05.374 2025-03-26 06:28:05.374 9000 TIP 443484 1825 \N \N 6113937 2025-03-26 06:28:21.949 2025-03-26 06:28:21.949 3400 FEE 443339 19576 \N \N 6113938 2025-03-26 06:28:21.949 2025-03-26 06:28:21.949 30600 TIP 443339 13587 \N \N 6113950 2025-03-26 06:29:07.866 2025-03-26 06:29:07.866 100 FEE 443663 16424 \N \N 6113951 2025-03-26 06:29:07.866 2025-03-26 06:29:07.866 900 TIP 443663 9367 \N \N 6113957 2025-03-26 06:29:17.806 2025-03-26 06:29:17.806 100 FEE 443651 15662 \N \N 6113958 2025-03-26 06:29:17.806 2025-03-26 06:29:17.806 900 TIP 443651 6202 \N \N 6113976 2025-03-26 06:30:19.616 2025-03-26 06:30:19.616 2100 FEE 442978 7185 \N \N 6113977 2025-03-26 06:30:19.616 2025-03-26 06:30:19.616 18900 TIP 442978 654 \N \N 6113982 2025-03-26 06:30:24.211 2025-03-26 06:30:24.211 13800 FEE 443679 20881 \N \N 6113983 2025-03-26 06:30:24.211 2025-03-26 06:30:24.211 124200 TIP 443679 21214 \N \N 6114000 2025-03-26 06:30:37.616 2025-03-26 06:30:37.616 6900 FEE 443679 17147 \N \N 6114001 2025-03-26 06:30:37.616 2025-03-26 06:30:37.616 62100 TIP 443679 733 \N \N 6114039 2025-03-26 06:32:58.478 2025-03-26 06:32:58.478 5700 FEE 443684 18727 \N \N 6114040 2025-03-26 06:32:58.478 2025-03-26 06:32:58.478 51300 TIP 443684 656 \N \N 6114063 2025-03-26 06:33:11.146 2025-03-26 06:33:11.146 2100 FEE 443557 20990 \N \N 6114064 2025-03-26 06:33:11.146 2025-03-26 06:33:11.146 18900 TIP 443557 20479 \N \N 6114070 2025-03-26 06:33:14.397 2025-03-26 06:33:14.397 2100 FEE 443483 15337 \N \N 6114071 2025-03-26 06:33:14.397 2025-03-26 06:33:14.397 18900 TIP 443483 1082 \N \N 6114082 2025-03-26 06:33:21.36 2025-03-26 06:33:21.36 2100 FEE 443381 17984 \N \N 6114083 2025-03-26 06:33:21.36 2025-03-26 06:33:21.36 18900 TIP 443381 10849 \N \N 6114089 2025-03-26 06:33:36.692 2025-03-26 06:33:36.692 1000 FEE 443686 13076 \N \N 6114093 2025-03-26 06:33:54.519 2025-03-26 06:33:54.519 2100 FEE 443337 16754 \N \N 6114094 2025-03-26 06:33:54.519 2025-03-26 06:33:54.519 18900 TIP 443337 17226 \N \N 6114105 2025-03-26 06:34:00.046 2025-03-26 06:34:00.046 2100 FEE 443314 8380 \N \N 6114106 2025-03-26 06:34:00.046 2025-03-26 06:34:00.046 18900 TIP 443314 16406 \N \N 6114107 2025-03-26 06:34:07.954 2025-03-26 06:34:07.954 100 FEE 443681 20026 \N \N 6114108 2025-03-26 06:34:07.954 2025-03-26 06:34:07.954 900 TIP 443681 12946 \N \N 6114114 2025-03-26 06:34:23.641 2025-03-26 06:34:23.641 9000 FEE 443593 7772 \N \N 6114115 2025-03-26 06:34:23.641 2025-03-26 06:34:23.641 81000 TIP 443593 836 \N \N 6114140 2025-03-26 06:35:50.757 2025-03-26 06:35:50.757 10000 FEE 443593 20924 \N \N 6114141 2025-03-26 06:35:50.757 2025-03-26 06:35:50.757 90000 TIP 443593 1729 \N \N 6114146 2025-03-26 06:36:11.115 2025-03-26 06:36:11.115 0 FEE 443691 21647 \N \N 6114183 2025-03-26 06:37:26.661 2025-03-26 06:37:26.661 2100 FEE 443333 861 \N \N 6114184 2025-03-26 06:37:26.661 2025-03-26 06:37:26.661 18900 TIP 443333 18409 \N \N 6114201 2025-03-26 06:37:34.957 2025-03-26 06:37:34.957 2100 FEE 443302 794 \N \N 6114202 2025-03-26 06:37:34.957 2025-03-26 06:37:34.957 18900 TIP 443302 1631 \N \N 6114250 2025-03-26 06:41:30.067 2025-03-26 06:41:30.067 10000 FEE 443704 1213 \N \N 6114254 2025-03-26 06:41:53.082 2025-03-26 06:41:53.082 1000 FEE 443706 9262 \N \N 6114267 2025-03-26 06:42:50.442 2025-03-26 06:42:50.442 1000 FEE 443707 12721 \N \N 6114272 2025-03-26 06:43:16.587 2025-03-26 06:43:16.587 1700 FEE 443702 7818 \N \N 6114273 2025-03-26 06:43:16.587 2025-03-26 06:43:16.587 15300 TIP 443702 19806 \N \N 6114291 2025-03-26 06:46:19.538 2025-03-26 06:46:19.538 1000 FEE 443711 17109 \N \N 6114341 2025-03-26 06:54:31.01 2025-03-26 06:54:31.01 1000 FEE 443721 12738 \N \N 6114352 2025-03-26 06:55:50.96 2025-03-26 06:55:50.96 1000 FEE 443725 21805 \N \N 6114355 2025-03-26 06:55:55.564 2025-03-26 06:55:55.564 0 FEE 443723 15510 \N \N 6114360 2025-03-26 06:56:29.796 2025-03-26 06:56:29.796 7700 FEE 443288 8045 \N \N 6114361 2025-03-26 06:56:29.796 2025-03-26 06:56:29.796 69300 TIP 443288 6526 \N \N 6114362 2025-03-26 06:56:30.01 2025-03-26 06:56:30.01 7700 FEE 443288 16270 \N \N 6114363 2025-03-26 06:56:30.01 2025-03-26 06:56:30.01 69300 TIP 443288 7587 \N \N 6114366 2025-03-26 06:56:30.47 2025-03-26 06:56:30.47 7700 FEE 443288 18011 \N \N 6114367 2025-03-26 06:56:30.47 2025-03-26 06:56:30.47 69300 TIP 443288 21401 \N \N 6114376 2025-03-26 06:57:14.898 2025-03-26 06:57:14.898 0 FEE 443723 21482 \N \N 6114379 2025-03-26 06:58:12.136 2025-03-26 06:58:12.136 0 FEE 443723 654 \N \N 6114389 2025-03-26 06:59:05.258 2025-03-26 06:59:05.258 500 FEE 443583 917 \N \N 6114390 2025-03-26 06:59:05.258 2025-03-26 06:59:05.258 4500 TIP 443583 20245 \N \N 6047910 2025-03-20 11:38:19.013 2025-03-20 11:38:19.013 1000 POLL 436323 10484 \N \N 6047912 2025-03-20 11:38:55.545 2025-03-20 11:38:55.545 100000 DONT_LIKE_THIS 436632 20906 \N \N 6047942 2025-03-20 11:40:21.371 2025-03-20 11:40:21.371 8300 FEE 436499 20616 \N \N 6047943 2025-03-20 11:40:21.371 2025-03-20 11:40:21.371 74700 TIP 436499 21547 \N \N 6047981 2025-03-20 11:43:26.888 2025-03-20 11:43:26.888 210000 FEE 436508 9107 \N \N 6047982 2025-03-20 11:43:26.888 2025-03-20 11:43:26.888 1890000 TIP 436508 21014 \N \N 6048106 2025-03-20 11:55:04.855 2025-03-20 11:55:04.855 3000 FEE 436633 15243 \N \N 6048107 2025-03-20 11:55:04.855 2025-03-20 11:55:04.855 27000 TIP 436633 21369 \N \N 6048122 2025-03-20 11:56:57.491 2025-03-20 11:56:57.491 100 FEE 436642 12819 \N \N 6048123 2025-03-20 11:56:57.491 2025-03-20 11:56:57.491 900 TIP 436642 5175 \N \N 6048133 2025-03-20 11:57:39.986 2025-03-20 11:57:39.986 1000 FEE 436646 15703 \N \N 6048143 2025-03-20 11:58:46.664 2025-03-20 11:58:46.664 800 FEE 436508 12346 \N \N 6048144 2025-03-20 11:58:46.664 2025-03-20 11:58:46.664 7200 TIP 436508 20454 \N \N 6048171 2025-03-20 12:04:09.793 2025-03-20 12:04:09.793 800 FEE 436508 16724 \N \N 6048172 2025-03-20 12:04:09.793 2025-03-20 12:04:09.793 7200 TIP 436508 5359 \N \N 6048211 2025-03-20 12:06:07.799 2025-03-20 12:06:07.799 2100 FEE 436546 700 \N \N 6048212 2025-03-20 12:06:07.799 2025-03-20 12:06:07.799 18900 TIP 436546 6555 \N \N 6048234 2025-03-20 12:08:30.829 2025-03-20 12:08:30.829 4000 FEE 436560 10311 \N \N 6048235 2025-03-20 12:08:30.829 2025-03-20 12:08:30.829 36000 TIP 436560 9183 \N \N 6048238 2025-03-20 12:08:33.469 2025-03-20 12:08:33.469 4000 FEE 436593 1833 \N \N 6048239 2025-03-20 12:08:33.469 2025-03-20 12:08:33.469 36000 TIP 436593 7674 \N \N 6048243 2025-03-20 12:08:39.826 2025-03-20 12:08:39.826 4000 FEE 436459 2327 \N \N 6048244 2025-03-20 12:08:39.826 2025-03-20 12:08:39.826 36000 TIP 436459 15858 \N \N 6048272 2025-03-20 12:13:10.917 2025-03-20 12:13:10.917 100 FEE 436611 20133 \N \N 6048273 2025-03-20 12:13:10.917 2025-03-20 12:13:10.917 900 TIP 436611 1712 \N \N 6048290 2025-03-20 12:17:00.75 2025-03-20 12:17:00.75 100000 FEE 436656 866 \N \N 6048295 2025-03-20 12:17:23.33 2025-03-20 12:17:23.33 1000 FEE 436658 20892 \N \N 6048340 2025-03-20 12:28:33.586 2025-03-20 12:28:33.586 1000 FEE 436664 708 \N \N 6048349 2025-03-20 12:32:02.932 2025-03-20 12:32:02.932 5000 FEE 436661 10944 \N \N 6048350 2025-03-20 12:32:02.932 2025-03-20 12:32:02.932 45000 TIP 436661 20965 \N \N 6048399 2025-03-20 12:35:04.749 2025-03-20 12:35:04.749 1000 FEE 436669 19888 \N \N 6048400 2025-03-20 12:35:04.749 2025-03-20 12:35:04.749 9000 TIP 436669 14213 \N \N 6048418 2025-03-20 12:35:15.403 2025-03-20 12:35:15.403 1000 FEE 436669 4692 \N \N 6048419 2025-03-20 12:35:15.403 2025-03-20 12:35:15.403 9000 TIP 436669 14220 \N \N 6048424 2025-03-20 12:35:20.994 2025-03-20 12:35:20.994 1000 FEE 436669 21418 \N \N 6048425 2025-03-20 12:35:20.994 2025-03-20 12:35:20.994 9000 TIP 436669 2749 \N \N 6048428 2025-03-20 12:35:22.82 2025-03-20 12:35:22.82 1000 FEE 436669 2844 \N \N 6048429 2025-03-20 12:35:22.82 2025-03-20 12:35:22.82 9000 TIP 436669 19378 \N \N 6048430 2025-03-20 12:35:26.966 2025-03-20 12:35:26.966 1000 FEE 436669 20198 \N \N 6048431 2025-03-20 12:35:26.966 2025-03-20 12:35:26.966 9000 TIP 436669 21103 \N \N 6048462 2025-03-20 12:38:50.903 2025-03-20 12:38:50.903 1000 FEE 436674 8289 \N \N 6048503 2025-03-20 12:50:00.916 2025-03-20 12:50:00.916 0 FEE 436681 21798 \N \N 6048547 2025-03-20 12:53:46.071 2025-03-20 12:53:46.071 2000 FEE 436686 20817 \N \N 6048548 2025-03-20 12:53:46.071 2025-03-20 12:53:46.071 18000 TIP 436686 669 \N \N 6048549 2025-03-20 12:53:46.17 2025-03-20 12:53:46.17 1000 FEE 436686 2016 \N \N 6048550 2025-03-20 12:53:46.17 2025-03-20 12:53:46.17 9000 TIP 436686 10690 \N \N 6048561 2025-03-20 12:54:32.488 2025-03-20 12:54:32.488 1000 FEE 436683 641 \N \N 6048562 2025-03-20 12:54:32.488 2025-03-20 12:54:32.488 9000 TIP 436683 12965 \N \N 6048568 2025-03-20 12:56:00.802 2025-03-20 12:56:00.802 1000 FEE 436688 5978 \N \N 6048600 2025-03-20 12:58:04.405 2025-03-20 12:58:04.405 1000 FEE 436683 7583 \N \N 6048601 2025-03-20 12:58:04.405 2025-03-20 12:58:04.405 9000 TIP 436683 7682 \N \N 6048604 2025-03-20 12:58:08.052 2025-03-20 12:58:08.052 50000 FEE 436683 16753 \N \N 6048605 2025-03-20 12:58:08.052 2025-03-20 12:58:08.052 450000 TIP 436683 4238 \N \N 6048614 2025-03-20 13:00:39.858 2025-03-20 13:00:39.858 1000 FEE 436692 3990 \N \N 6048664 2025-03-20 13:06:12.72 2025-03-20 13:06:12.72 0 FEE 436697 20891 \N \N 6048675 2025-03-20 13:07:04.299 2025-03-20 13:07:04.299 210000 FEE 436699 9476 \N \N 6048713 2025-03-20 13:09:42.928 2025-03-20 13:09:42.928 8300 FEE 436666 9307 \N \N 6048714 2025-03-20 13:09:42.928 2025-03-20 13:09:42.928 74700 TIP 436666 10270 \N \N 6048719 2025-03-20 13:09:52.956 2025-03-20 13:09:52.956 8300 FEE 436605 20495 \N \N 6048720 2025-03-20 13:09:52.956 2025-03-20 13:09:52.956 74700 TIP 436605 6058 \N \N 6048739 2025-03-20 13:14:11.076 2025-03-20 13:14:11.076 1000 FEE 436702 15549 \N \N 6048761 2025-03-20 13:21:13.591 2025-03-20 13:21:13.591 2500 FEE 436683 15213 \N \N 6048762 2025-03-20 13:21:13.591 2025-03-20 13:21:13.591 22500 TIP 436683 2703 \N \N 6048774 2025-03-20 13:25:14.174 2025-03-20 13:25:14.174 4000 FEE 436664 9863 \N \N 6048775 2025-03-20 13:25:14.174 2025-03-20 13:25:14.174 36000 TIP 436664 9329 \N \N 6048780 2025-03-20 13:26:47.551 2025-03-20 13:26:47.551 100 FEE 436556 2749 \N \N 6048781 2025-03-20 13:26:47.551 2025-03-20 13:26:47.551 900 TIP 436556 6361 \N \N 6048785 2025-03-20 13:27:22.041 2025-03-20 13:27:22.041 8300 FEE 436669 1970 \N \N 6048786 2025-03-20 13:27:22.041 2025-03-20 13:27:22.041 74700 TIP 436669 769 \N \N 6048793 2025-03-20 13:27:22.667 2025-03-20 13:27:22.667 8300 FEE 436669 21647 \N \N 6048794 2025-03-20 13:27:22.667 2025-03-20 13:27:22.667 74700 TIP 436669 13767 \N \N 6048799 2025-03-20 13:27:22.902 2025-03-20 13:27:22.902 8300 FEE 436669 3504 \N \N 6048800 2025-03-20 13:27:22.902 2025-03-20 13:27:22.902 74700 TIP 436669 21631 \N \N 6048823 2025-03-20 13:31:55.687 2025-03-20 13:31:55.687 1000 FEE 436669 9167 \N \N 6048824 2025-03-20 13:31:55.687 2025-03-20 13:31:55.687 9000 TIP 436669 14657 \N \N 6048832 2025-03-20 13:32:30.027 2025-03-20 13:32:30.027 1000 FEE 436499 21506 \N \N 6048833 2025-03-20 13:32:30.027 2025-03-20 13:32:30.027 9000 TIP 436499 16847 \N \N 6048912 2025-03-20 13:58:25.621 2025-03-20 13:58:25.621 1300 FEE 436464 8998 \N \N 6048913 2025-03-20 13:58:25.621 2025-03-20 13:58:25.621 11700 TIP 436464 19394 \N \N 6048924 2025-03-20 13:58:39.495 2025-03-20 13:58:39.495 1000 FEE 436715 16270 \N \N 6048926 2025-03-20 13:59:32.814 2025-03-20 13:59:32.814 0 FEE 436713 626 \N \N 6048952 2025-03-20 14:03:54.823 2025-03-20 14:03:54.823 2100 FEE 436699 17708 \N \N 6048953 2025-03-20 14:03:54.823 2025-03-20 14:03:54.823 18900 TIP 436699 19121 \N \N 6048970 2025-03-20 14:07:51.81 2025-03-20 14:07:51.81 1000 FEE 436649 12072 \N \N 6048971 2025-03-20 14:07:51.81 2025-03-20 14:07:51.81 9000 TIP 436649 21287 \N \N 6049015 2025-03-20 14:16:46.06 2025-03-20 14:16:46.06 1000 FEE 436709 17212 \N \N 6049016 2025-03-20 14:16:46.06 2025-03-20 14:16:46.06 9000 TIP 436709 15336 \N \N 6049017 2025-03-20 14:16:46.302 2025-03-20 14:16:46.302 1000 FEE 436709 10063 \N \N 6049018 2025-03-20 14:16:46.302 2025-03-20 14:16:46.302 9000 TIP 436709 20998 \N \N 6049038 2025-03-20 14:24:43.086 2025-03-20 14:24:43.086 1000 FEE 436724 19777 \N \N 6049047 2025-03-20 14:24:53.289 2025-03-20 14:24:53.289 100 FEE 436720 21647 \N \N 6049048 2025-03-20 14:24:53.289 2025-03-20 14:24:53.289 900 TIP 436720 6382 \N \N 6049074 2025-03-20 14:28:23.126 2025-03-20 14:28:23.126 5000 FEE 436669 12562 \N \N 6049075 2025-03-20 14:28:23.126 2025-03-20 14:28:23.126 45000 TIP 436669 16839 \N \N 6049095 2025-03-20 14:28:57.732 2025-03-20 14:28:57.732 1000 FEE 436491 18069 \N \N 6049096 2025-03-20 14:28:57.732 2025-03-20 14:28:57.732 9000 TIP 436491 18426 \N \N 6049108 2025-03-20 14:29:19.026 2025-03-20 14:29:19.026 5000 FEE 436614 21314 \N \N 6049109 2025-03-20 14:29:19.026 2025-03-20 14:29:19.026 45000 TIP 436614 21701 \N \N 6049167 2025-03-20 14:31:23.804 2025-03-20 14:31:23.804 5000 FEE 436710 21116 \N \N 6049168 2025-03-20 14:31:23.804 2025-03-20 14:31:23.804 45000 TIP 436710 19581 \N \N 6049169 2025-03-20 14:31:24.312 2025-03-20 14:31:24.312 5000 FEE 436710 628 \N \N 6049170 2025-03-20 14:31:24.312 2025-03-20 14:31:24.312 45000 TIP 436710 20993 \N \N 6113513 2025-03-26 06:02:33.648 2025-03-26 06:02:33.648 1600 FEE 443601 11145 \N \N 6113514 2025-03-26 06:02:33.648 2025-03-26 06:02:33.648 14400 TIP 443601 1705 \N \N 6113556 2025-03-26 06:03:58.185 2025-03-26 06:03:58.185 1000 FEE 443635 20841 \N \N 6113560 2025-03-26 06:04:10.801 2025-03-26 06:04:10.801 300 FEE 443613 10398 \N \N 6113561 2025-03-26 06:04:10.801 2025-03-26 06:04:10.801 2700 TIP 443613 797 \N \N 6113566 2025-03-26 06:04:11.562 2025-03-26 06:04:11.562 300 FEE 443613 9349 \N \N 6113567 2025-03-26 06:04:11.562 2025-03-26 06:04:11.562 2700 TIP 443613 18615 \N \N 6113572 2025-03-26 06:04:12.361 2025-03-26 06:04:12.361 300 FEE 443613 690 \N \N 6113573 2025-03-26 06:04:12.361 2025-03-26 06:04:12.361 2700 TIP 443613 9036 \N \N 6113592 2025-03-26 06:04:40.688 2025-03-26 06:04:40.688 1000 FEE 443640 13574 \N \N 6113596 2025-03-26 06:04:55.155 2025-03-26 06:04:55.155 100 FEE 443372 16717 \N \N 6113597 2025-03-26 06:04:55.155 2025-03-26 06:04:55.155 900 TIP 443372 20972 \N \N 6113623 2025-03-26 06:06:15.361 2025-03-26 06:06:15.361 6300 FEE 443197 9183 \N \N 6113624 2025-03-26 06:06:15.361 2025-03-26 06:06:15.361 56700 TIP 443197 20182 \N \N 6113626 2025-03-26 06:06:49.992 2025-03-26 06:06:49.992 1000 POLL 442751 19996 \N \N 6113629 2025-03-26 06:07:35.319 2025-03-26 06:07:35.319 1000 FEE 443649 10693 \N \N 6113641 2025-03-26 06:09:10.019 2025-03-26 06:09:10.019 1000 FEE 443652 1454 \N \N 6113643 2025-03-26 06:09:32.674 2025-03-26 06:09:32.674 2700 FEE 443645 16704 \N \N 6113644 2025-03-26 06:09:32.674 2025-03-26 06:09:32.674 24300 TIP 443645 8289 \N \N 6113649 2025-03-26 06:09:33.679 2025-03-26 06:09:33.679 2700 FEE 443645 1438 \N \N 6113650 2025-03-26 06:09:33.679 2025-03-26 06:09:33.679 24300 TIP 443645 17226 \N \N 6113663 2025-03-26 06:09:40.148 2025-03-26 06:09:40.148 2700 FEE 443624 16309 \N \N 6113664 2025-03-26 06:09:40.148 2025-03-26 06:09:40.148 24300 TIP 443624 1298 \N \N 6113673 2025-03-26 06:09:43.231 2025-03-26 06:09:43.231 12500 FEE 443583 1692 \N \N 6113674 2025-03-26 06:09:43.231 2025-03-26 06:09:43.231 112500 TIP 443583 21825 \N \N 6113684 2025-03-26 06:10:37.137 2025-03-26 06:10:37.137 2700 FEE 443545 3411 \N \N 6113685 2025-03-26 06:10:37.137 2025-03-26 06:10:37.137 24300 TIP 443545 11073 \N \N 6113688 2025-03-26 06:10:37.749 2025-03-26 06:10:37.749 5400 FEE 443545 997 \N \N 6113689 2025-03-26 06:10:37.749 2025-03-26 06:10:37.749 48600 TIP 443545 651 \N \N 6113694 2025-03-26 06:10:39.929 2025-03-26 06:10:39.929 2700 FEE 443545 1817 \N \N 6113695 2025-03-26 06:10:39.929 2025-03-26 06:10:39.929 24300 TIP 443545 16834 \N \N 6113704 2025-03-26 06:11:11.332 2025-03-26 06:11:11.332 1000 FEE 443657 1605 \N \N 6113720 2025-03-26 06:12:29.41 2025-03-26 06:12:29.41 7700 FEE 443390 14260 \N \N 6113721 2025-03-26 06:12:29.41 2025-03-26 06:12:29.41 69300 TIP 443390 18731 \N \N 6113775 2025-03-26 06:16:07.402 2025-03-26 06:16:07.402 1000 FEE 443665 20655 \N \N 6113834 2025-03-26 06:19:13.953 2025-03-26 06:19:13.953 1100 FEE 443656 5758 \N \N 6113835 2025-03-26 06:19:13.953 2025-03-26 06:19:13.953 9900 TIP 443656 21178 \N \N 6113850 2025-03-26 06:20:51.663 2025-03-26 06:20:51.663 100 FEE 443247 21639 \N \N 6113851 2025-03-26 06:20:51.663 2025-03-26 06:20:51.663 900 TIP 443247 9 \N \N 6113858 2025-03-26 06:20:53.859 2025-03-26 06:20:53.859 100 FEE 443247 16571 \N \N 6113859 2025-03-26 06:20:53.859 2025-03-26 06:20:53.859 900 TIP 443247 5173 \N \N 6113866 2025-03-26 06:20:55.581 2025-03-26 06:20:55.581 100 FEE 443247 1038 \N \N 6113867 2025-03-26 06:20:55.581 2025-03-26 06:20:55.581 900 TIP 443247 16830 \N \N 6113909 2025-03-26 06:26:27.98 2025-03-26 06:26:27.98 1000 POLL 442751 13055 \N \N 6113939 2025-03-26 06:28:29.781 2025-03-26 06:28:29.781 100 FEE 443671 896 \N \N 6113940 2025-03-26 06:28:29.781 2025-03-26 06:28:29.781 900 TIP 443671 12609 \N \N 6113969 2025-03-26 06:30:16.975 2025-03-26 06:30:16.975 2100 FEE 443266 21670 \N \N 6113970 2025-03-26 06:30:16.975 2025-03-26 06:30:16.975 18900 TIP 443266 16284 \N \N 6113973 2025-03-26 06:30:19.287 2025-03-26 06:30:19.287 2100 FEE 443107 19217 \N \N 6113974 2025-03-26 06:30:19.287 2025-03-26 06:30:19.287 18900 TIP 443107 14452 \N \N 6113980 2025-03-26 06:30:23.754 2025-03-26 06:30:23.754 2100 FEE 442245 18557 \N \N 6113981 2025-03-26 06:30:23.754 2025-03-26 06:30:23.754 18900 TIP 442245 7818 \N \N 6113996 2025-03-26 06:30:37.003 2025-03-26 06:30:37.003 6900 FEE 443679 694 \N \N 6113997 2025-03-26 06:30:37.003 2025-03-26 06:30:37.003 62100 TIP 443679 9833 \N \N 6114006 2025-03-26 06:31:04.236 2025-03-26 06:31:04.236 6900 FEE 443679 1836 \N \N 6114007 2025-03-26 06:31:04.236 2025-03-26 06:31:04.236 62100 TIP 443679 678 \N \N 6114029 2025-03-26 06:32:12.271 2025-03-26 06:32:12.271 1000 FEE 443684 899 \N \N 6114076 2025-03-26 06:33:18.79 2025-03-26 06:33:18.79 2100 FEE 443380 2735 \N \N 6114077 2025-03-26 06:33:18.79 2025-03-26 06:33:18.79 18900 TIP 443380 9920 \N \N 6114084 2025-03-26 06:33:21.633 2025-03-26 06:33:21.633 2100 FEE 443452 1272 \N \N 6114085 2025-03-26 06:33:21.633 2025-03-26 06:33:21.633 18900 TIP 443452 7376 \N \N 6114091 2025-03-26 06:33:53.939 2025-03-26 06:33:53.939 2100 FEE 443305 16598 \N \N 6114092 2025-03-26 06:33:53.939 2025-03-26 06:33:53.939 18900 TIP 443305 16950 \N \N 6114101 2025-03-26 06:33:58.217 2025-03-26 06:33:58.217 2100 FEE 443374 2722 \N \N 6114102 2025-03-26 06:33:58.217 2025-03-26 06:33:58.217 18900 TIP 443374 10283 \N \N 6114129 2025-03-26 06:35:47.931 2025-03-26 06:35:47.931 1000 FEE 443690 17392 \N \N 6114136 2025-03-26 06:35:50.379 2025-03-26 06:35:50.379 10000 FEE 443593 706 \N \N 6114137 2025-03-26 06:35:50.379 2025-03-26 06:35:50.379 90000 TIP 443593 5904 \N \N 6114144 2025-03-26 06:35:51.041 2025-03-26 06:35:51.041 1000 FEE 443691 20370 \N \N 6114148 2025-03-26 06:36:14.058 2025-03-26 06:36:14.058 1000 FEE 443693 1429 \N \N 6114160 2025-03-26 06:37:11.539 2025-03-26 06:37:11.539 2100 FEE 443344 21401 \N \N 6114161 2025-03-26 06:37:11.539 2025-03-26 06:37:11.539 18900 TIP 443344 902 \N \N 6114173 2025-03-26 06:37:20.966 2025-03-26 06:37:20.966 2100 FEE 443327 1959 \N \N 6114174 2025-03-26 06:37:20.966 2025-03-26 06:37:20.966 18900 TIP 443327 20778 \N \N 6114179 2025-03-26 06:37:25.726 2025-03-26 06:37:25.726 2100 FEE 443328 18678 \N \N 6114180 2025-03-26 06:37:25.726 2025-03-26 06:37:25.726 18900 TIP 443328 9982 \N \N 6114216 2025-03-26 06:38:21.698 2025-03-26 06:38:21.698 2100 FEE 443531 616 \N \N 6114217 2025-03-26 06:38:21.698 2025-03-26 06:38:21.698 18900 TIP 443531 837 \N \N 6114222 2025-03-26 06:38:40.561 2025-03-26 06:38:40.561 1000 FEE 443699 13249 \N \N 6114231 2025-03-26 06:40:04.869 2025-03-26 06:40:04.869 2100 FEE 443645 732 \N \N 6114232 2025-03-26 06:40:04.869 2025-03-26 06:40:04.869 18900 TIP 443645 2519 \N \N 6114259 2025-03-26 06:41:59.767 2025-03-26 06:41:59.767 2100 FEE 443429 11498 \N \N 6114260 2025-03-26 06:41:59.767 2025-03-26 06:41:59.767 18900 TIP 443429 8080 \N \N 6114281 2025-03-26 06:43:58.029 2025-03-26 06:43:58.029 100 FEE 442904 18309 \N \N 6114282 2025-03-26 06:43:58.029 2025-03-26 06:43:58.029 900 TIP 442904 2640 \N \N 6114292 2025-03-26 06:46:42.193 2025-03-26 06:46:42.193 0 FEE 443711 12507 \N \N 6114293 2025-03-26 06:46:44.207 2025-03-26 06:46:44.207 100 FEE 443651 15049 \N \N 6114294 2025-03-26 06:46:44.207 2025-03-26 06:46:44.207 900 TIP 443651 14657 \N \N 6114321 2025-03-26 06:51:31.163 2025-03-26 06:51:31.163 5700 FEE 443713 16440 \N \N 6114322 2025-03-26 06:51:31.163 2025-03-26 06:51:31.163 51300 TIP 443713 11942 \N \N 6114330 2025-03-26 06:52:10.355 2025-03-26 06:52:10.355 1000 FEE 443716 2514 \N \N 6114331 2025-03-26 06:52:10.355 2025-03-26 06:52:10.355 9000 TIP 443716 15075 \N \N 6114348 2025-03-26 06:55:15.199 2025-03-26 06:55:15.199 1000 FEE 443723 6360 \N \N 6114349 2025-03-26 06:55:17.206 2025-03-26 06:55:17.206 1000 FEE 443724 21815 \N \N 6114353 2025-03-26 06:55:51.905 2025-03-26 06:55:51.905 2000 FEE 443724 5752 \N \N 6114354 2025-03-26 06:55:51.905 2025-03-26 06:55:51.905 18000 TIP 443724 20816 \N \N 6114370 2025-03-26 06:56:30.628 2025-03-26 06:56:30.628 7700 FEE 443288 6421 \N \N 6114371 2025-03-26 06:56:30.628 2025-03-26 06:56:30.628 69300 TIP 443288 7966 \N \N 6114372 2025-03-26 06:56:30.81 2025-03-26 06:56:30.81 7700 FEE 443288 2056 \N \N 6113540 2025-03-26 06:03:27.709 2025-03-26 06:03:27.709 100 FEE 443554 1626 \N \N 6113541 2025-03-26 06:03:27.709 2025-03-26 06:03:27.709 900 TIP 443554 9695 \N \N 6113545 2025-03-26 06:03:41.646 2025-03-26 06:03:41.646 1000 FEE 443632 21418 \N \N 6113546 2025-03-26 06:03:43.81 2025-03-26 06:03:43.81 1700 FEE 443616 16950 \N \N 6113547 2025-03-26 06:03:43.81 2025-03-26 06:03:43.81 15300 TIP 443616 18923 \N \N 6113554 2025-03-26 06:03:57.915 2025-03-26 06:03:57.915 1700 FEE 443629 12422 \N \N 6113555 2025-03-26 06:03:57.915 2025-03-26 06:03:57.915 15300 TIP 443629 21585 \N \N 6113584 2025-03-26 06:04:23.431 2025-03-26 06:04:23.431 100 FEE 443506 695 \N \N 6113585 2025-03-26 06:04:23.431 2025-03-26 06:04:23.431 900 TIP 443506 8004 \N \N 6113586 2025-03-26 06:04:25.1 2025-03-26 06:04:25.1 100 FEE 443500 20597 \N \N 6113587 2025-03-26 06:04:25.1 2025-03-26 06:04:25.1 900 TIP 443500 1647 \N \N 6113601 2025-03-26 06:04:57.12 2025-03-26 06:04:57.12 9000 FEE 443372 739 \N \N 6113602 2025-03-26 06:04:57.12 2025-03-26 06:04:57.12 81000 TIP 443372 16724 \N \N 6113631 2025-03-26 06:07:48.07 2025-03-26 06:07:48.07 0 FEE 443649 18528 \N \N 6113636 2025-03-26 06:08:21.842 2025-03-26 06:08:21.842 1000 FEE 443651 2151 \N \N 6113639 2025-03-26 06:09:04.179 2025-03-26 06:09:04.179 2100 FEE 443569 16965 \N \N 6113640 2025-03-26 06:09:04.179 2025-03-26 06:09:04.179 18900 TIP 443569 16440 \N \N 6113655 2025-03-26 06:09:36.439 2025-03-26 06:09:36.439 2700 FEE 443645 16536 \N \N 6113656 2025-03-26 06:09:36.439 2025-03-26 06:09:36.439 24300 TIP 443645 2232 \N \N 6113657 2025-03-26 06:09:39.603 2025-03-26 06:09:39.603 2700 FEE 443624 16704 \N \N 6113658 2025-03-26 06:09:39.603 2025-03-26 06:09:39.603 24300 TIP 443624 3717 \N \N 6113671 2025-03-26 06:09:41.319 2025-03-26 06:09:41.319 2700 FEE 443624 882 \N \N 6113672 2025-03-26 06:09:41.319 2025-03-26 06:09:41.319 24300 TIP 443624 19488 \N \N 6113681 2025-03-26 06:10:25.863 2025-03-26 06:10:25.863 3300 FEE 443440 14818 \N \N 6113682 2025-03-26 06:10:25.863 2025-03-26 06:10:25.863 29700 TIP 443440 16250 \N \N 6113713 2025-03-26 06:11:53.871 2025-03-26 06:11:53.871 7700 FEE 443272 20613 \N \N 6113714 2025-03-26 06:11:53.871 2025-03-26 06:11:53.871 69300 TIP 443272 16562 \N \N 6113732 2025-03-26 06:12:55.412 2025-03-26 06:12:55.412 9000 FEE 443659 993 \N \N 6113733 2025-03-26 06:12:55.412 2025-03-26 06:12:55.412 81000 TIP 443659 9366 \N \N 6113741 2025-03-26 06:13:50.114 2025-03-26 06:13:50.114 2100 FEE 443645 9341 \N \N 6113742 2025-03-26 06:13:50.114 2025-03-26 06:13:50.114 18900 TIP 443645 979 \N \N 6113751 2025-03-26 06:14:02.802 2025-03-26 06:14:02.802 6900 FEE 443587 20922 \N \N 6113752 2025-03-26 06:14:02.802 2025-03-26 06:14:02.802 62100 TIP 443587 701 \N \N 6113774 2025-03-26 06:16:04.607 2025-03-26 06:16:04.607 1000 FEE 443664 20597 \N \N 6113785 2025-03-26 06:16:47.065 2025-03-26 06:16:47.065 2000 FEE 443467 10719 \N \N 6113786 2025-03-26 06:16:47.065 2025-03-26 06:16:47.065 18000 TIP 443467 21603 \N \N 6113792 2025-03-26 06:17:20.149 2025-03-26 06:17:20.149 1000 FEE 443307 21710 \N \N 6113793 2025-03-26 06:17:20.149 2025-03-26 06:17:20.149 9000 TIP 443307 5306 \N \N 6113827 2025-03-26 06:19:09.754 2025-03-26 06:19:09.754 1000 FEE 443183 16653 \N \N 6113828 2025-03-26 06:19:09.754 2025-03-26 06:19:09.754 9000 TIP 443183 713 \N \N 6113852 2025-03-26 06:20:52.457 2025-03-26 06:20:52.457 100 FEE 443247 21413 \N \N 6113853 2025-03-26 06:20:52.457 2025-03-26 06:20:52.457 900 TIP 443247 21103 \N \N 6113860 2025-03-26 06:20:54.305 2025-03-26 06:20:54.305 100 FEE 443247 5828 \N \N 6113861 2025-03-26 06:20:54.305 2025-03-26 06:20:54.305 900 TIP 443247 805 \N \N 6113870 2025-03-26 06:21:37.151 2025-03-26 06:21:37.151 1000 FEE 443506 21287 \N \N 6113871 2025-03-26 06:21:37.151 2025-03-26 06:21:37.151 9000 TIP 443506 13587 \N \N 6113877 2025-03-26 06:22:07.19 2025-03-26 06:22:07.19 1000 FEE 443487 15463 \N \N 6113878 2025-03-26 06:22:07.19 2025-03-26 06:22:07.19 9000 TIP 443487 3342 \N \N 6113879 2025-03-26 06:22:07.878 2025-03-26 06:22:07.878 1000 FEE 443487 20152 \N \N 6113880 2025-03-26 06:22:07.878 2025-03-26 06:22:07.878 9000 TIP 443487 2098 \N \N 6113883 2025-03-26 06:22:09.753 2025-03-26 06:22:09.753 1000 FEE 443487 3377 \N \N 6047977 2025-03-20 11:42:34.663 2025-03-20 11:42:34.663 9900 TIP 436622 10056 \N \N 6047978 2025-03-20 11:42:45.532 2025-03-20 11:42:45.532 1100 FEE 436626 17727 \N \N 6047979 2025-03-20 11:42:45.532 2025-03-20 11:42:45.532 9900 TIP 436626 21713 \N \N 6047983 2025-03-20 11:43:46.589 2025-03-20 11:43:46.589 100 FEE 436614 20563 \N \N 6047984 2025-03-20 11:43:46.589 2025-03-20 11:43:46.589 900 TIP 436614 21279 \N \N 6047999 2025-03-20 11:44:30.348 2025-03-20 11:44:30.348 1000 FEE 436556 2151 \N \N 6048000 2025-03-20 11:44:30.348 2025-03-20 11:44:30.348 9000 TIP 436556 900 \N \N 6048003 2025-03-20 11:44:30.8 2025-03-20 11:44:30.8 1000 FEE 436556 8841 \N \N 6048004 2025-03-20 11:44:30.8 2025-03-20 11:44:30.8 9000 TIP 436556 19829 \N \N 6048014 2025-03-20 11:45:00.072 2025-03-20 11:45:00.072 4200 FEE 436566 11515 \N \N 6048015 2025-03-20 11:45:00.072 2025-03-20 11:45:00.072 37800 TIP 436566 18637 \N \N 6048023 2025-03-20 11:45:17.961 2025-03-20 11:45:17.961 2100 FEE 436493 1038 \N \N 6048024 2025-03-20 11:45:17.961 2025-03-20 11:45:17.961 18900 TIP 436493 2088 \N \N 6048027 2025-03-20 11:45:18.669 2025-03-20 11:45:18.669 1000 FEE 436559 14385 \N \N 6048028 2025-03-20 11:45:18.669 2025-03-20 11:45:18.669 9000 TIP 436559 866 \N \N 6048041 2025-03-20 11:47:51.514 2025-03-20 11:47:51.514 1000 FEE 436559 16267 \N \N 6048042 2025-03-20 11:47:51.514 2025-03-20 11:47:51.514 9000 TIP 436559 2437 \N \N 6048052 2025-03-20 11:48:19.437 2025-03-20 11:48:19.437 9000 FEE 436626 650 \N \N 6048053 2025-03-20 11:48:19.437 2025-03-20 11:48:19.437 81000 TIP 436626 6136 \N \N 6048064 2025-03-20 11:48:30.671 2025-03-20 11:48:30.671 100 FEE 436568 21248 \N \N 6048065 2025-03-20 11:48:30.671 2025-03-20 11:48:30.671 900 TIP 436568 13217 \N \N 6048093 2025-03-20 11:53:18.307 2025-03-20 11:53:18.307 100 FEE 436619 1447 \N \N 6048094 2025-03-20 11:53:18.307 2025-03-20 11:53:18.307 900 TIP 436619 946 \N \N 6048103 2025-03-20 11:54:01.668 2025-03-20 11:54:01.668 1000 FEE 436642 9177 \N \N 6048155 2025-03-20 12:00:16.467 2025-03-20 12:00:16.467 1000 FEE 436649 16229 \N \N 6048158 2025-03-20 12:00:20.544 2025-03-20 12:00:20.544 1000 FEE 436635 21383 \N \N 6048159 2025-03-20 12:00:20.544 2025-03-20 12:00:20.544 9000 TIP 436635 16695 \N \N 6048184 2025-03-20 12:05:12.818 2025-03-20 12:05:12.818 8300 FEE 436508 5173 \N \N 6048185 2025-03-20 12:05:12.818 2025-03-20 12:05:12.818 74700 TIP 436508 21406 \N \N 6048199 2025-03-20 12:05:39.026 2025-03-20 12:05:39.026 2100 FEE 436602 21114 \N \N 6048200 2025-03-20 12:05:39.026 2025-03-20 12:05:39.026 18900 TIP 436602 10342 \N \N 6048247 2025-03-20 12:08:41.52 2025-03-20 12:08:41.52 4000 FEE 436562 20157 \N \N 6048248 2025-03-20 12:08:41.52 2025-03-20 12:08:41.52 36000 TIP 436562 20706 \N \N 6048258 2025-03-20 12:12:04.804 2025-03-20 12:12:04.804 0 FEE 436653 2681 \N \N 6048260 2025-03-20 12:12:14.045 2025-03-20 12:12:14.045 100 FEE 436612 9843 \N \N 6048261 2025-03-20 12:12:14.045 2025-03-20 12:12:14.045 900 TIP 436612 9341 \N \N 6048276 2025-03-20 12:13:11.856 2025-03-20 12:13:11.856 9000 FEE 436611 1136 \N \N 6048277 2025-03-20 12:13:11.856 2025-03-20 12:13:11.856 81000 TIP 436611 21222 \N \N 6048284 2025-03-20 12:14:35.636 2025-03-20 12:14:35.636 1000 FEE 436566 21041 \N \N 6048285 2025-03-20 12:14:35.636 2025-03-20 12:14:35.636 9000 TIP 436566 16747 \N \N 6048306 2025-03-20 12:19:44.402 2025-03-20 12:19:44.402 10000 FEE 436659 2609 \N \N 6048335 2025-03-20 12:28:01.201 2025-03-20 12:28:01.201 300 FEE 436478 19952 \N \N 6048336 2025-03-20 12:28:01.201 2025-03-20 12:28:01.201 2700 TIP 436478 1141 \N \N 6048363 2025-03-20 12:34:59.197 2025-03-20 12:34:59.197 1000 FEE 436669 21275 \N \N 6048364 2025-03-20 12:34:59.197 2025-03-20 12:34:59.197 9000 TIP 436669 21103 \N \N 6048385 2025-03-20 12:35:03.401 2025-03-20 12:35:03.401 1000 FEE 436669 8570 \N \N 6048386 2025-03-20 12:35:03.401 2025-03-20 12:35:03.401 9000 TIP 436669 882 \N \N 6048393 2025-03-20 12:35:04.171 2025-03-20 12:35:04.171 1000 FEE 436669 5776 \N \N 6048394 2025-03-20 12:35:04.171 2025-03-20 12:35:04.171 9000 TIP 436669 16717 \N \N 6048395 2025-03-20 12:35:04.356 2025-03-20 12:35:04.356 1000 FEE 436669 1272 \N \N 6048396 2025-03-20 12:35:04.356 2025-03-20 12:35:04.356 9000 TIP 436669 16653 \N \N 6048405 2025-03-20 12:35:10.727 2025-03-20 12:35:10.727 1000 FEE 436669 635 \N \N 6048406 2025-03-20 12:35:10.727 2025-03-20 12:35:10.727 9000 TIP 436669 20655 \N \N 6048440 2025-03-20 12:36:33.068 2025-03-20 12:36:33.068 1000 FEE 436672 20756 \N \N 6048441 2025-03-20 12:36:35.176 2025-03-20 12:36:35.176 400 FEE 436566 4238 \N \N 6048442 2025-03-20 12:36:35.176 2025-03-20 12:36:35.176 3600 TIP 436566 20602 \N \N 6048445 2025-03-20 12:37:02.35 2025-03-20 12:37:02.35 100 FEE 436669 9833 \N \N 6048446 2025-03-20 12:37:02.35 2025-03-20 12:37:02.35 900 TIP 436669 18309 \N \N 6048447 2025-03-20 12:37:02.549 2025-03-20 12:37:02.549 900 FEE 436669 21287 \N \N 6048448 2025-03-20 12:37:02.549 2025-03-20 12:37:02.549 8100 TIP 436669 11018 \N \N 6113613 2025-03-26 06:05:31.557 2025-03-26 06:05:31.557 1000 FEE 443644 15160 \N \N 6113615 2025-03-26 06:05:33.052 2025-03-26 06:05:33.052 100 FEE 443613 20603 \N \N 6113616 2025-03-26 06:05:33.052 2025-03-26 06:05:33.052 900 TIP 443613 9695 \N \N 6113632 2025-03-26 06:07:49.903 2025-03-26 06:07:49.903 2800 FEE 443646 739 \N \N 6113633 2025-03-26 06:07:49.903 2025-03-26 06:07:49.903 25200 TIP 443646 630 \N \N 6113667 2025-03-26 06:09:40.515 2025-03-26 06:09:40.515 2700 FEE 443624 17392 \N \N 6113668 2025-03-26 06:09:40.515 2025-03-26 06:09:40.515 24300 TIP 443624 20993 \N \N 6113702 2025-03-26 06:11:02.651 2025-03-26 06:11:02.651 100000 FEE 443655 9992 \N \N 6113703 2025-03-26 06:11:08.633 2025-03-26 06:11:08.633 1000 FEE 443656 4062 \N \N 6113707 2025-03-26 06:11:53.061 2025-03-26 06:11:53.061 7700 FEE 443272 9796 \N \N 6113708 2025-03-26 06:11:53.061 2025-03-26 06:11:53.061 69300 TIP 443272 14280 \N \N 6113709 2025-03-26 06:11:53.413 2025-03-26 06:11:53.413 7700 FEE 443272 1617 \N \N 6113710 2025-03-26 06:11:53.413 2025-03-26 06:11:53.413 69300 TIP 443272 16356 \N \N 6113722 2025-03-26 06:12:31.581 2025-03-26 06:12:31.581 6300 FEE 443611 21247 \N \N 6113723 2025-03-26 06:12:31.581 2025-03-26 06:12:31.581 56700 TIP 443611 17741 \N \N 6113745 2025-03-26 06:13:54.006 2025-03-26 06:13:54.006 2100 FEE 443624 627 \N \N 6113746 2025-03-26 06:13:54.006 2025-03-26 06:13:54.006 18900 TIP 443624 20939 \N \N 6113760 2025-03-26 06:14:23.656 2025-03-26 06:14:23.656 1000 FEE 443617 17714 \N \N 6113761 2025-03-26 06:14:23.656 2025-03-26 06:14:23.656 9000 TIP 443617 1983 \N \N 6113781 2025-03-26 06:16:45.003 2025-03-26 06:16:45.003 5000 FEE 443460 797 \N \N 6113782 2025-03-26 06:16:45.003 2025-03-26 06:16:45.003 45000 TIP 443460 5806 \N \N 6113810 2025-03-26 06:18:04.622 2025-03-26 06:18:04.622 1000 FEE 443613 1135 \N \N 6113811 2025-03-26 06:18:04.622 2025-03-26 06:18:04.622 9000 TIP 443613 12921 \N \N 6113816 2025-03-26 06:18:13.341 2025-03-26 06:18:13.341 1000 FEE 442904 18219 \N \N 6113817 2025-03-26 06:18:13.341 2025-03-26 06:18:13.341 9000 TIP 442904 19346 \N \N 6113874 2025-03-26 06:21:47.794 2025-03-26 06:21:47.794 1000 FEE 443667 20337 \N \N 6113875 2025-03-26 06:21:47.794 2025-03-26 06:21:47.794 9000 TIP 443667 15526 \N \N 6113895 2025-03-26 06:24:54.987 2025-03-26 06:24:54.987 1700 FEE 443659 20751 \N \N 6113896 2025-03-26 06:24:54.987 2025-03-26 06:24:54.987 15300 TIP 443659 18313 \N \N 6113915 2025-03-26 06:28:03.944 2025-03-26 06:28:03.944 1000 FEE 443677 16536 \N \N 6113918 2025-03-26 06:28:05.67 2025-03-26 06:28:05.67 1000 FEE 443484 3979 \N \N 6113919 2025-03-26 06:28:05.67 2025-03-26 06:28:05.67 9000 TIP 443484 712 \N \N 6113932 2025-03-26 06:28:07.676 2025-03-26 06:28:07.676 1000 FEE 443484 14370 \N \N 6113933 2025-03-26 06:28:07.676 2025-03-26 06:28:07.676 9000 TIP 443484 1012 \N \N 6113948 2025-03-26 06:29:00.044 2025-03-26 06:29:00.044 1000 FEE 443678 11967 \N \N 6113949 2025-03-26 06:29:00.044 2025-03-26 06:29:00.044 9000 TIP 443678 13042 \N \N 6113955 2025-03-26 06:29:14.672 2025-03-26 06:29:14.672 1000 FEE 443617 1890 \N \N 6113956 2025-03-26 06:29:14.672 2025-03-26 06:29:14.672 9000 TIP 443617 20826 \N \N 6113959 2025-03-26 06:29:25.695 2025-03-26 06:29:25.695 1000 FEE 443679 15719 \N \N 6113964 2025-03-26 06:30:12.437 2025-03-26 06:30:12.437 2100 FEE 443593 21139 \N \N 6113965 2025-03-26 06:30:12.437 2025-03-26 06:30:12.437 18900 TIP 443593 20337 \N \N 6113990 2025-03-26 06:30:25.961 2025-03-26 06:30:25.961 6900 FEE 443679 6382 \N \N 6047985 2025-03-20 11:44:11.708 2025-03-20 11:44:11.708 1000 FEE 436566 1044 \N \N 6047986 2025-03-20 11:44:11.708 2025-03-20 11:44:11.708 9000 TIP 436566 998 \N \N 6047987 2025-03-20 11:44:12.131 2025-03-20 11:44:12.131 1000 FEE 436566 17797 \N \N 6047988 2025-03-20 11:44:12.131 2025-03-20 11:44:12.131 9000 TIP 436566 21041 \N \N 6048001 2025-03-20 11:44:30.506 2025-03-20 11:44:30.506 1000 FEE 436556 12721 \N \N 6048002 2025-03-20 11:44:30.506 2025-03-20 11:44:30.506 9000 TIP 436556 21442 \N \N 6048006 2025-03-20 11:44:57.363 2025-03-20 11:44:57.363 2100 FEE 436560 13854 \N \N 6048007 2025-03-20 11:44:57.363 2025-03-20 11:44:57.363 18900 TIP 436560 18321 \N \N 6048010 2025-03-20 11:44:57.842 2025-03-20 11:44:57.842 2100 FEE 436560 10060 \N \N 6048011 2025-03-20 11:44:57.842 2025-03-20 11:44:57.842 18900 TIP 436560 13132 \N \N 6048012 2025-03-20 11:44:58.163 2025-03-20 11:44:58.163 2100 FEE 436560 8059 \N \N 6048013 2025-03-20 11:44:58.163 2025-03-20 11:44:58.163 18900 TIP 436560 17106 \N \N 6048018 2025-03-20 11:45:02.521 2025-03-20 11:45:02.521 2100 FEE 436556 8242 \N \N 6048019 2025-03-20 11:45:02.521 2025-03-20 11:45:02.521 18900 TIP 436556 21178 \N \N 6048035 2025-03-20 11:47:30.437 2025-03-20 11:47:30.437 1000 FEE 435812 19378 \N \N 6048036 2025-03-20 11:47:30.437 2025-03-20 11:47:30.437 9000 TIP 435812 10608 \N \N 6048060 2025-03-20 11:48:29.609 2025-03-20 11:48:29.609 100 FEE 436621 21291 \N \N 6048061 2025-03-20 11:48:29.609 2025-03-20 11:48:29.609 900 TIP 436621 4474 \N \N 6048088 2025-03-20 11:52:45.714 2025-03-20 11:52:45.714 2300 FEE 436639 19094 \N \N 6048089 2025-03-20 11:52:45.714 2025-03-20 11:52:45.714 20700 TIP 436639 1175 \N \N 6048108 2025-03-20 11:55:07.563 2025-03-20 11:55:07.563 1000 FEE 436601 3717 \N \N 6048109 2025-03-20 11:55:07.563 2025-03-20 11:55:07.563 9000 TIP 436601 994 \N \N 6048112 2025-03-20 11:56:16.081 2025-03-20 11:56:16.081 1000 FEE 436644 1825 \N \N 6048116 2025-03-20 11:56:39.177 2025-03-20 11:56:39.177 100 FEE 436562 1483 \N \N 6048117 2025-03-20 11:56:39.177 2025-03-20 11:56:39.177 900 TIP 436562 10981 \N \N 6048136 2025-03-20 11:58:25.556 2025-03-20 11:58:25.556 1000 FEE 436648 9335 \N \N 6048170 2025-03-20 12:04:00.125 2025-03-20 12:04:00.125 21000 DONT_LIKE_THIS 436611 21768 \N \N 6048213 2025-03-20 12:06:08.999 2025-03-20 12:06:08.999 2100 FEE 436536 15243 \N \N 6048214 2025-03-20 12:06:08.999 2025-03-20 12:06:08.999 18900 TIP 436536 3342 \N \N 6048240 2025-03-20 12:08:34.102 2025-03-20 12:08:34.102 10000 FEE 436651 671 \N \N 6048256 2025-03-20 12:11:38.024 2025-03-20 12:11:38.024 0 FEE 436653 7389 \N \N 6048264 2025-03-20 12:12:15.379 2025-03-20 12:12:15.379 9000 FEE 436612 13987 \N \N 6048265 2025-03-20 12:12:15.379 2025-03-20 12:12:15.379 81000 TIP 436612 13217 \N \N 6048268 2025-03-20 12:12:19.538 2025-03-20 12:12:19.538 900 FEE 436654 12609 \N \N 6048269 2025-03-20 12:12:19.538 2025-03-20 12:12:19.538 8100 TIP 436654 673 \N \N 6048279 2025-03-20 12:13:20.343 2025-03-20 12:13:20.343 2100 FEE 436243 2681 \N \N 6048280 2025-03-20 12:13:20.343 2025-03-20 12:13:20.343 18900 TIP 436243 15226 \N \N 6048291 2025-03-20 12:17:09.629 2025-03-20 12:17:09.629 1000000 FEE 436657 20768 \N \N 6048307 2025-03-20 12:19:56.194 2025-03-20 12:19:56.194 10000 FEE 435073 11527 \N \N 6048308 2025-03-20 12:19:56.194 2025-03-20 12:19:56.194 90000 TIP 435073 14705 \N \N 6048312 2025-03-20 12:20:30.74 2025-03-20 12:20:30.74 1000 FEE 436593 13553 \N \N 6048313 2025-03-20 12:20:30.74 2025-03-20 12:20:30.74 9000 TIP 436593 21405 \N \N 6048328 2025-03-20 12:25:21.691 2025-03-20 12:25:21.691 1000 FEE 436661 657 \N \N 6048373 2025-03-20 12:35:02.36 2025-03-20 12:35:02.36 1000 FEE 436669 6573 \N \N 6048374 2025-03-20 12:35:02.36 2025-03-20 12:35:02.36 9000 TIP 436669 642 \N \N 6048383 2025-03-20 12:35:03.186 2025-03-20 12:35:03.186 1000 FEE 436669 21413 \N \N 6048384 2025-03-20 12:35:03.186 2025-03-20 12:35:03.186 9000 TIP 436669 11999 \N \N 6048403 2025-03-20 12:35:05.965 2025-03-20 12:35:05.965 1000 FEE 436669 4754 \N \N 6048404 2025-03-20 12:35:05.965 2025-03-20 12:35:05.965 9000 TIP 436669 21332 \N \N 6048436 2025-03-20 12:35:49.398 2025-03-20 12:35:49.398 300 FEE 436587 21048 \N \N 6048437 2025-03-20 12:35:49.398 2025-03-20 12:35:49.398 2700 TIP 436587 14168 \N \N 6048460 2025-03-20 12:37:30.916 2025-03-20 12:37:30.916 1000 FEE 436673 13042 \N \N 6048464 2025-03-20 12:39:20.194 2025-03-20 12:39:20.194 2100 FEE 436351 9339 \N \N 6048465 2025-03-20 12:39:20.194 2025-03-20 12:39:20.194 18900 TIP 436351 8729 \N \N 6048466 2025-03-20 12:39:29.043 2025-03-20 12:39:29.043 210000 FEE 436675 11491 \N \N 6048494 2025-03-20 12:48:13.929 2025-03-20 12:48:13.929 1000 FEE 436679 16348 \N \N 6048532 2025-03-20 12:53:41.211 2025-03-20 12:53:41.211 0 FEE 436685 14404 \N \N 6048537 2025-03-20 12:53:44.749 2025-03-20 12:53:44.749 1000 FEE 436686 16948 \N \N 6048538 2025-03-20 12:53:44.749 2025-03-20 12:53:44.749 9000 TIP 436686 21091 \N \N 6048539 2025-03-20 12:53:44.877 2025-03-20 12:53:44.877 1000 FEE 436686 21405 \N \N 6048540 2025-03-20 12:53:44.877 2025-03-20 12:53:44.877 9000 TIP 436686 18528 \N \N 6048551 2025-03-20 12:54:07.478 2025-03-20 12:54:07.478 1000 FEE 436683 20099 \N \N 6048552 2025-03-20 12:54:07.478 2025-03-20 12:54:07.478 9000 TIP 436683 20871 \N \N 6048565 2025-03-20 12:54:32.835 2025-03-20 12:54:32.835 1000 FEE 436683 5112 \N \N 6048566 2025-03-20 12:54:32.835 2025-03-20 12:54:32.835 9000 TIP 436683 2789 \N \N 6048586 2025-03-20 12:58:03.281 2025-03-20 12:58:03.281 1000 FEE 436683 9364 \N \N 6048587 2025-03-20 12:58:03.281 2025-03-20 12:58:03.281 9000 TIP 436683 5520 \N \N 6048590 2025-03-20 12:58:03.601 2025-03-20 12:58:03.601 1000 FEE 436683 4654 \N \N 6048591 2025-03-20 12:58:03.601 2025-03-20 12:58:03.601 9000 TIP 436683 928 \N \N 6048596 2025-03-20 12:58:04.095 2025-03-20 12:58:04.095 1000 FEE 436683 12049 \N \N 6048597 2025-03-20 12:58:04.095 2025-03-20 12:58:04.095 9000 TIP 436683 16177 \N \N 6048617 2025-03-20 13:01:10.891 2025-03-20 13:01:10.891 100 FEE 436566 11516 \N \N 6048618 2025-03-20 13:01:10.891 2025-03-20 13:01:10.891 900 TIP 436566 21814 \N \N 6048621 2025-03-20 13:01:11.412 2025-03-20 13:01:11.412 100 FEE 436566 20757 \N \N 6048622 2025-03-20 13:01:11.412 2025-03-20 13:01:11.412 900 TIP 436566 738 \N \N 6048625 2025-03-20 13:01:11.871 2025-03-20 13:01:11.871 100 FEE 436566 2722 \N \N 6048626 2025-03-20 13:01:11.871 2025-03-20 13:01:11.871 900 TIP 436566 14465 \N \N 6048658 2025-03-20 13:04:55.151 2025-03-20 13:04:55.151 1000 FEE 436523 1326 \N \N 6048659 2025-03-20 13:04:55.151 2025-03-20 13:04:55.151 9000 TIP 436523 2583 \N \N 6048687 2025-03-20 13:07:42.902 2025-03-20 13:07:42.902 2300 FEE 436669 21391 \N \N 6048688 2025-03-20 13:07:42.902 2025-03-20 13:07:42.902 20700 TIP 436669 17275 \N \N 6048693 2025-03-20 13:07:43.407 2025-03-20 13:07:43.407 2300 FEE 436669 730 \N \N 6048694 2025-03-20 13:07:43.407 2025-03-20 13:07:43.407 20700 TIP 436669 18727 \N \N 6048733 2025-03-20 13:11:43.093 2025-03-20 13:11:43.093 8300 FEE 436675 19637 \N \N 6048734 2025-03-20 13:11:43.093 2025-03-20 13:11:43.093 74700 TIP 436675 667 \N \N 6113680 2025-03-26 06:10:25.769 2025-03-26 06:10:25.769 0 FEE 443649 1401 \N \N 6113696 2025-03-26 06:10:39.978 2025-03-26 06:10:39.978 2700 FEE 443545 2203 \N \N 6113697 2025-03-26 06:10:39.978 2025-03-26 06:10:39.978 24300 TIP 443545 20816 \N \N 6113698 2025-03-26 06:10:40.097 2025-03-26 06:10:40.097 2700 FEE 443545 1983 \N \N 6113699 2025-03-26 06:10:40.097 2025-03-26 06:10:40.097 24300 TIP 443545 1044 \N \N 6113706 2025-03-26 06:11:41.837 2025-03-26 06:11:41.837 1000 FEE 443658 10979 \N \N 6113728 2025-03-26 06:12:54.5 2025-03-26 06:12:54.5 100 FEE 443659 11144 \N \N 6113729 2025-03-26 06:12:54.5 2025-03-26 06:12:54.5 900 TIP 443659 20980 \N \N 6113743 2025-03-26 06:13:53.119 2025-03-26 06:13:53.119 400 FEE 443618 11648 \N \N 6113744 2025-03-26 06:13:53.119 2025-03-26 06:13:53.119 3600 TIP 443618 20841 \N \N 6113747 2025-03-26 06:13:54.492 2025-03-26 06:13:54.492 400 FEE 443628 16942 \N \N 6113748 2025-03-26 06:13:54.492 2025-03-26 06:13:54.492 3600 TIP 443628 2203 \N \N 6113755 2025-03-26 06:14:07.231 2025-03-26 06:14:07.231 2100 FEE 443577 21172 \N \N 6113756 2025-03-26 06:14:07.231 2025-03-26 06:14:07.231 18900 TIP 443577 14260 \N \N 6113765 2025-03-26 06:14:52.544 2025-03-26 06:14:52.544 2100 FEE 443605 2367 \N \N 6113766 2025-03-26 06:14:52.544 2025-03-26 06:14:52.544 18900 TIP 443605 6594 \N \N 6113770 2025-03-26 06:15:49.578 2025-03-26 06:15:49.578 3300 FEE 443372 20433 \N \N 6113771 2025-03-26 06:15:49.578 2025-03-26 06:15:49.578 29700 TIP 443372 16670 \N \N 6113790 2025-03-26 06:17:19.027 2025-03-26 06:17:19.027 1000 FEE 443298 20554 \N \N 6113791 2025-03-26 06:17:19.027 2025-03-26 06:17:19.027 9000 TIP 443298 692 \N \N 6113798 2025-03-26 06:17:58.538 2025-03-26 06:17:58.538 500 FEE 443611 20306 \N \N 6113799 2025-03-26 06:17:58.538 2025-03-26 06:17:58.538 4500 TIP 443611 12808 \N \N 6113804 2025-03-26 06:17:59.314 2025-03-26 06:17:59.314 6900 FEE 443545 17639 \N \N 6113805 2025-03-26 06:17:59.314 2025-03-26 06:17:59.314 62100 TIP 443545 5746 \N \N 6113806 2025-03-26 06:17:59.717 2025-03-26 06:17:59.717 6900 FEE 443545 13365 \N \N 6113807 2025-03-26 06:17:59.717 2025-03-26 06:17:59.717 62100 TIP 443545 17221 \N \N 6113808 2025-03-26 06:18:03.827 2025-03-26 06:18:03.827 1000 FEE 443613 21391 \N \N 6113809 2025-03-26 06:18:03.827 2025-03-26 06:18:03.827 9000 TIP 443613 13216 \N \N 6113825 2025-03-26 06:18:51.02 2025-03-26 06:18:51.02 500 FEE 443658 18734 \N \N 6113826 2025-03-26 06:18:51.02 2025-03-26 06:18:51.02 4500 TIP 443658 20680 \N \N 6113831 2025-03-26 06:19:11.041 2025-03-26 06:19:11.041 1000 FEE 443183 9476 \N \N 6113832 2025-03-26 06:19:11.041 2025-03-26 06:19:11.041 9000 TIP 443183 17291 \N \N 6113838 2025-03-26 06:19:52.376 2025-03-26 06:19:52.376 210000 FEE 443667 16948 \N \N 6113840 2025-03-26 06:20:01.139 2025-03-26 06:20:01.139 1000 FEE 443613 21422 \N \N 6113841 2025-03-26 06:20:01.139 2025-03-26 06:20:01.139 9000 TIP 443613 13575 \N \N 6113854 2025-03-26 06:20:53.002 2025-03-26 06:20:53.002 100 FEE 443247 21180 \N \N 6113855 2025-03-26 06:20:53.002 2025-03-26 06:20:53.002 900 TIP 443247 15728 \N \N 6113864 2025-03-26 06:20:55.341 2025-03-26 06:20:55.341 100 FEE 443247 3686 \N \N 6113865 2025-03-26 06:20:55.341 2025-03-26 06:20:55.341 900 TIP 443247 14015 \N \N 6113876 2025-03-26 06:21:51.083 2025-03-26 06:21:51.083 1000 FEE 443670 16270 \N \N 6113887 2025-03-26 06:23:37.51 2025-03-26 06:23:37.51 1000 FEE 443554 11220 \N \N 6113888 2025-03-26 06:23:37.51 2025-03-26 06:23:37.51 9000 TIP 443554 5870 \N \N 6113901 2025-03-26 06:25:03.642 2025-03-26 06:25:03.642 1700 FEE 443667 6777 \N \N 6113902 2025-03-26 06:25:03.642 2025-03-26 06:25:03.642 15300 TIP 443667 21373 \N \N 6113911 2025-03-26 06:27:22.378 2025-03-26 06:27:22.378 1000 FEE 443675 21373 \N \N 6113941 2025-03-26 06:28:42.938 2025-03-26 06:28:42.938 100 FEE 443676 5942 \N \N 6113942 2025-03-26 06:28:42.938 2025-03-26 06:28:42.938 900 TIP 443676 621 \N \N 6113944 2025-03-26 06:28:50.887 2025-03-26 06:28:50.887 100 FEE 443669 15386 \N \N 6113945 2025-03-26 06:28:50.887 2025-03-26 06:28:50.887 900 TIP 443669 1209 \N \N 6113952 2025-03-26 06:29:12.067 2025-03-26 06:29:12.067 100 FEE 443672 4292 \N \N 6113953 2025-03-26 06:29:12.067 2025-03-26 06:29:12.067 900 TIP 443672 17316 \N \N 6113960 2025-03-26 06:30:09.52 2025-03-26 06:30:09.52 1000 FEE 443676 16336 \N \N 6113961 2025-03-26 06:30:09.52 2025-03-26 06:30:09.52 9000 TIP 443676 21829 \N \N 6113978 2025-03-26 06:30:23.02 2025-03-26 06:30:23.02 2100 FEE 442527 19394 \N \N 6113979 2025-03-26 06:30:23.02 2025-03-26 06:30:23.02 18900 TIP 442527 9242 \N \N 6113984 2025-03-26 06:30:24.317 2025-03-26 06:30:24.317 6900 FEE 443679 6360 \N \N 6113985 2025-03-26 06:30:24.317 2025-03-26 06:30:24.317 62100 TIP 443679 1772 \N \N 6113988 2025-03-26 06:30:25.441 2025-03-26 06:30:25.441 2100 FEE 441629 13216 \N \N 6113989 2025-03-26 06:30:25.441 2025-03-26 06:30:25.441 18900 TIP 441629 16542 \N \N 6113992 2025-03-26 06:30:35.603 2025-03-26 06:30:35.603 3000 FEE 443680 21242 \N \N 6113993 2025-03-26 06:30:35.603 2025-03-26 06:30:35.603 27000 TIP 443680 21281 \N \N 6114065 2025-03-26 06:33:11.476 2025-03-26 06:33:11.476 2100 FEE 443517 776 \N \N 6114066 2025-03-26 06:33:11.476 2025-03-26 06:33:11.476 18900 TIP 443517 2942 \N \N 6114072 2025-03-26 06:33:16.81 2025-03-26 06:33:16.81 2100 FEE 443336 19394 \N \N 6114073 2025-03-26 06:33:16.81 2025-03-26 06:33:16.81 18900 TIP 443336 21287 \N \N 6114095 2025-03-26 06:33:55.378 2025-03-26 06:33:55.378 2100 FEE 443297 16357 \N \N 6114096 2025-03-26 06:33:55.378 2025-03-26 06:33:55.378 18900 TIP 443297 16660 \N \N 6114127 2025-03-26 06:35:45.813 2025-03-26 06:35:45.813 100 FEE 443689 20854 \N \N 6114128 2025-03-26 06:35:45.813 2025-03-26 06:35:45.813 900 TIP 443689 19303 \N \N 6114156 2025-03-26 06:37:09.096 2025-03-26 06:37:09.096 2100 FEE 443398 2293 \N \N 6114157 2025-03-26 06:37:09.096 2025-03-26 06:37:09.096 18900 TIP 443398 8242 \N \N 6114167 2025-03-26 06:37:14.524 2025-03-26 06:37:14.524 2100 FEE 443316 9084 \N \N 6114168 2025-03-26 06:37:14.524 2025-03-26 06:37:14.524 18900 TIP 443316 15577 \N \N 6114244 2025-03-26 06:41:16.195 2025-03-26 06:41:16.195 11100 FEE 443683 20751 \N \N 6114245 2025-03-26 06:41:16.195 2025-03-26 06:41:16.195 99900 TIP 443683 1505 \N \N 6114248 2025-03-26 06:41:25.295 2025-03-26 06:41:25.295 2100 FEE 443655 937 \N \N 6114249 2025-03-26 06:41:25.295 2025-03-26 06:41:25.295 18900 TIP 443655 11609 \N \N 6114251 2025-03-26 06:41:35.086 2025-03-26 06:41:35.086 1000 FEE 443705 21810 \N \N 6114252 2025-03-26 06:41:36.69 2025-03-26 06:41:36.69 2100 FEE 443372 21639 \N \N 6114253 2025-03-26 06:41:36.69 2025-03-26 06:41:36.69 18900 TIP 443372 880 \N \N 6114261 2025-03-26 06:42:08.78 2025-03-26 06:42:08.78 2100 FEE 443434 3518 \N \N 6114262 2025-03-26 06:42:08.78 2025-03-26 06:42:08.78 18900 TIP 443434 2013 \N \N 6114297 2025-03-26 06:47:18.92 2025-03-26 06:47:18.92 1000 FEE 443711 5761 \N \N 6114298 2025-03-26 06:47:18.92 2025-03-26 06:47:18.92 9000 TIP 443711 13878 \N \N 6114303 2025-03-26 06:48:53.653 2025-03-26 06:48:53.653 0 FEE 443713 14271 \N \N 6114326 2025-03-26 06:51:35.503 2025-03-26 06:51:35.503 1000 FEE 442710 17455 \N \N 6114327 2025-03-26 06:51:35.503 2025-03-26 06:51:35.503 9000 TIP 442710 1237 \N \N 6114334 2025-03-26 06:52:42.906 2025-03-26 06:52:42.906 1000 FEE 443718 16653 \N \N 6114335 2025-03-26 06:52:42.906 2025-03-26 06:52:42.906 9000 TIP 443718 21003 \N \N 6114345 2025-03-26 06:55:05.684 2025-03-26 06:55:05.684 1000 FEE 443720 19655 \N \N 6114346 2025-03-26 06:55:05.684 2025-03-26 06:55:05.684 9000 TIP 443720 7587 \N \N 6114383 2025-03-26 06:58:30.851 2025-03-26 06:58:30.851 800 FEE 443698 1571 \N \N 6114384 2025-03-26 06:58:30.851 2025-03-26 06:58:30.851 7200 TIP 443698 2437 \N \N 6114445 2025-03-26 07:03:50.754 2025-03-26 07:03:50.754 90000 FEE 443683 8508 \N \N 6114446 2025-03-26 07:03:50.754 2025-03-26 07:03:50.754 810000 TIP 443683 18468 \N \N 6114458 2025-03-26 07:05:08.999 2025-03-26 07:05:08.999 0 FEE 443730 6463 \N \N 6114475 2025-03-26 07:05:21.531 2025-03-26 07:05:21.531 1000 FEE 443739 20599 \N \N 6114476 2025-03-26 07:05:24.604 2025-03-26 07:05:24.604 500 FEE 443729 14213 \N \N 6114477 2025-03-26 07:05:24.604 2025-03-26 07:05:24.604 4500 TIP 443729 17218 \N \N 6113767 2025-03-26 06:15:05.918 2025-03-26 06:15:05.918 2100 FEE 443620 5425 \N \N 6113768 2025-03-26 06:15:05.918 2025-03-26 06:15:05.918 18900 TIP 443620 13566 \N \N 6113812 2025-03-26 06:18:05.554 2025-03-26 06:18:05.554 1000 FEE 443613 18174 \N \N 6113813 2025-03-26 06:18:05.554 2025-03-26 06:18:05.554 9000 TIP 443613 19512 \N \N 6113814 2025-03-26 06:18:10.803 2025-03-26 06:18:10.803 500 FEE 443645 1447 \N \N 6113815 2025-03-26 06:18:10.803 2025-03-26 06:18:10.803 4500 TIP 443645 9329 \N \N 6113836 2025-03-26 06:19:36.617 2025-03-26 06:19:36.617 1000 FEE 443651 21262 \N \N 6113837 2025-03-26 06:19:36.617 2025-03-26 06:19:36.617 9000 TIP 443651 21506 \N \N 6113844 2025-03-26 06:20:13.573 2025-03-26 06:20:13.573 0 FEE 443668 2459 \N \N 6113856 2025-03-26 06:20:53.719 2025-03-26 06:20:53.719 100 FEE 443247 1806 \N \N 6113857 2025-03-26 06:20:53.719 2025-03-26 06:20:53.719 900 TIP 443247 3504 \N \N 6113872 2025-03-26 06:21:38.205 2025-03-26 06:21:38.205 1000 FEE 443495 9705 \N \N 6113873 2025-03-26 06:21:38.205 2025-03-26 06:21:38.205 9000 TIP 443495 9167 \N \N 6113897 2025-03-26 06:25:03.277 2025-03-26 06:25:03.277 1700 FEE 443667 1609 \N \N 6113898 2025-03-26 06:25:03.277 2025-03-26 06:25:03.277 15300 TIP 443667 17209 \N \N 6113906 2025-03-26 06:26:08.321 2025-03-26 06:26:08.321 0 FEE 443667 21393 \N \N 6113912 2025-03-26 06:27:50.934 2025-03-26 06:27:50.934 3400 FEE 443396 15662 \N \N 6113913 2025-03-26 06:27:50.934 2025-03-26 06:27:50.934 30600 TIP 443396 9307 \N \N 6113924 2025-03-26 06:28:06.276 2025-03-26 06:28:06.276 1000 FEE 443484 9920 \N \N 6113925 2025-03-26 06:28:06.276 2025-03-26 06:28:06.276 9000 TIP 443484 1286 \N \N 6113934 2025-03-26 06:28:08.423 2025-03-26 06:28:08.423 1000 FEE 443484 20775 \N \N 6113935 2025-03-26 06:28:08.423 2025-03-26 06:28:08.423 9000 TIP 443484 1833 \N \N 6113962 2025-03-26 06:30:10.885 2025-03-26 06:30:10.885 2100 FEE 443678 18330 \N \N 6113963 2025-03-26 06:30:10.885 2025-03-26 06:30:10.885 18900 TIP 443678 14015 \N \N 6113971 2025-03-26 06:30:17.888 2025-03-26 06:30:17.888 2100 FEE 443160 10490 \N \N 6113972 2025-03-26 06:30:17.888 2025-03-26 06:30:17.888 18900 TIP 443160 680 \N \N 6114012 2025-03-26 06:31:05.174 2025-03-26 06:31:05.174 6900 FEE 443679 7960 \N \N 6114013 2025-03-26 06:31:05.174 2025-03-26 06:31:05.174 62100 TIP 443679 12821 \N \N 6114014 2025-03-26 06:31:05.318 2025-03-26 06:31:05.318 6900 FEE 443679 5036 \N \N 6114015 2025-03-26 06:31:05.318 2025-03-26 06:31:05.318 62100 TIP 443679 622 \N \N 6114020 2025-03-26 06:31:42.682 2025-03-26 06:31:42.682 21000 DONT_LIKE_THIS 443527 5306 \N \N 6114023 2025-03-26 06:32:08.347 2025-03-26 06:32:08.347 10000 FEE 443482 15049 \N \N 6114024 2025-03-26 06:32:08.347 2025-03-26 06:32:08.347 90000 TIP 443482 21631 \N \N 6114027 2025-03-26 06:32:10.315 2025-03-26 06:32:10.315 10000 FEE 443482 1039 \N \N 6114028 2025-03-26 06:32:10.315 2025-03-26 06:32:10.315 90000 TIP 443482 2711 \N \N 6114037 2025-03-26 06:32:50.639 2025-03-26 06:32:50.639 1000 FEE 443593 13547 \N \N 6114038 2025-03-26 06:32:50.639 2025-03-26 06:32:50.639 9000 TIP 443593 3686 \N \N 6114043 2025-03-26 06:32:59.173 2025-03-26 06:32:59.173 1000 FEE 443453 13038 \N \N 6114044 2025-03-26 06:32:59.173 2025-03-26 06:32:59.173 9000 TIP 443453 673 \N \N 6114045 2025-03-26 06:32:59.702 2025-03-26 06:32:59.702 1000 FEE 443453 8173 \N \N 6114046 2025-03-26 06:32:59.702 2025-03-26 06:32:59.702 9000 TIP 443453 9329 \N \N 6114080 2025-03-26 06:33:20.744 2025-03-26 06:33:20.744 2100 FEE 443332 13365 \N \N 6114081 2025-03-26 06:33:20.744 2025-03-26 06:33:20.744 18900 TIP 443332 4624 \N \N 6114109 2025-03-26 06:34:09.052 2025-03-26 06:34:09.052 100 FEE 443329 21522 \N \N 6114110 2025-03-26 06:34:09.052 2025-03-26 06:34:09.052 900 TIP 443329 981 \N \N 6114118 2025-03-26 06:35:02.204 2025-03-26 06:35:02.204 1000 FEE 443687 21571 \N \N 6114119 2025-03-26 06:35:02.204 2025-03-26 06:35:02.204 9000 TIP 443687 19217 \N \N 6114197 2025-03-26 06:37:32.802 2025-03-26 06:37:32.802 2100 FEE 443296 698 \N \N 6114198 2025-03-26 06:37:32.802 2025-03-26 06:37:32.802 18900 TIP 443296 7983 \N \N 6114238 2025-03-26 06:40:21.259 2025-03-26 06:40:21.259 1000 FEE 443701 994 \N \N 6114276 2025-03-26 06:43:25.134 2025-03-26 06:43:25.134 1400 FEE 443372 13217 \N \N 6114277 2025-03-26 06:43:25.134 2025-03-26 06:43:25.134 12600 TIP 443372 5293 \N \N 6114309 2025-03-26 06:49:34.291 2025-03-26 06:49:34.291 0 FEE 443713 11454 \N \N 6114343 2025-03-26 06:54:56.382 2025-03-26 06:54:56.382 5700 FEE 443685 633 \N \N 6114344 2025-03-26 06:54:56.382 2025-03-26 06:54:56.382 51300 TIP 443685 16660 \N \N 6114364 2025-03-26 06:56:30.443 2025-03-26 06:56:30.443 7700 FEE 443288 750 \N \N 6113779 2025-03-26 06:16:44.736 2025-03-26 06:16:44.736 5000 FEE 443452 16387 \N \N 6113780 2025-03-26 06:16:44.736 2025-03-26 06:16:44.736 45000 TIP 443452 16753 \N \N 6113802 2025-03-26 06:17:59.194 2025-03-26 06:17:59.194 6900 FEE 443545 638 \N \N 6113803 2025-03-26 06:17:59.194 2025-03-26 06:17:59.194 62100 TIP 443545 1411 \N \N 6113823 2025-03-26 06:18:42.571 2025-03-26 06:18:42.571 500 FEE 443624 15703 \N \N 6113824 2025-03-26 06:18:42.571 2025-03-26 06:18:42.571 4500 TIP 443624 4128 \N \N 6113842 2025-03-26 06:20:11.451 2025-03-26 06:20:11.451 200 FEE 443495 18630 \N \N 6113843 2025-03-26 06:20:11.451 2025-03-26 06:20:11.451 1800 TIP 443495 20734 \N \N 6113848 2025-03-26 06:20:42.094 2025-03-26 06:20:42.094 100 FEE 443247 9845 \N \N 6113849 2025-03-26 06:20:42.094 2025-03-26 06:20:42.094 900 TIP 443247 15491 \N \N 6113889 2025-03-26 06:23:56.69 2025-03-26 06:23:56.69 2100 FEE 439834 17517 \N \N 6113890 2025-03-26 06:23:56.69 2025-03-26 06:23:56.69 18900 TIP 439834 2203 \N \N 6113892 2025-03-26 06:24:48.566 2025-03-26 06:24:48.566 1000 FEE 443671 986 \N \N 6113899 2025-03-26 06:25:03.506 2025-03-26 06:25:03.506 1700 FEE 443667 15690 \N \N 6113900 2025-03-26 06:25:03.506 2025-03-26 06:25:03.506 15300 TIP 443667 954 \N \N 6113905 2025-03-26 06:25:50.052 2025-03-26 06:25:50.052 1000 FEE 443673 12721 \N \N 6113920 2025-03-26 06:28:05.86 2025-03-26 06:28:05.86 1000 FEE 443484 8498 \N \N 6113921 2025-03-26 06:28:05.86 2025-03-26 06:28:05.86 9000 TIP 443484 9418 \N \N 6113922 2025-03-26 06:28:06.073 2025-03-26 06:28:06.073 1000 FEE 443484 20291 \N \N 6113923 2025-03-26 06:28:06.073 2025-03-26 06:28:06.073 9000 TIP 443484 16124 \N \N 6113930 2025-03-26 06:28:06.846 2025-03-26 06:28:06.846 1000 FEE 443484 18314 \N \N 6113931 2025-03-26 06:28:06.846 2025-03-26 06:28:06.846 9000 TIP 443484 20525 \N \N 6113943 2025-03-26 06:28:48.251 2025-03-26 06:28:48.251 210000 FEE 443678 17891 \N \N 6113946 2025-03-26 06:28:58.011 2025-03-26 06:28:58.011 100 FEE 443613 21083 \N \N 6113947 2025-03-26 06:28:58.011 2025-03-26 06:28:58.011 900 TIP 443613 1489 \N \N 6113967 2025-03-26 06:30:14.459 2025-03-26 06:30:14.459 2100 FEE 443489 2640 \N \N 6113968 2025-03-26 06:30:14.459 2025-03-26 06:30:14.459 18900 TIP 443489 21541 \N \N 6113986 2025-03-26 06:30:24.549 2025-03-26 06:30:24.549 6900 FEE 443679 18265 \N \N 6113987 2025-03-26 06:30:24.549 2025-03-26 06:30:24.549 62100 TIP 443679 1429 \N \N 6113994 2025-03-26 06:30:36.807 2025-03-26 06:30:36.807 6900 FEE 443679 5865 \N \N 6113995 2025-03-26 06:30:36.807 2025-03-26 06:30:36.807 62100 TIP 443679 21356 \N \N 6113998 2025-03-26 06:30:37.219 2025-03-26 06:30:37.219 13800 FEE 443679 1469 \N \N 6113999 2025-03-26 06:30:37.219 2025-03-26 06:30:37.219 124200 TIP 443679 14225 \N \N 6114017 2025-03-26 06:31:34.771 2025-03-26 06:31:34.771 420000 FEE 443683 18393 \N \N 6114018 2025-03-26 06:31:37.695 2025-03-26 06:31:37.695 500 FEE 443681 21670 \N \N 6114019 2025-03-26 06:31:37.695 2025-03-26 06:31:37.695 4500 TIP 443681 8505 \N \N 6114051 2025-03-26 06:33:03.645 2025-03-26 06:33:03.645 2100 FEE 443664 1745 \N \N 6114052 2025-03-26 06:33:03.645 2025-03-26 06:33:03.645 18900 TIP 443664 21037 \N \N 6114097 2025-03-26 06:33:55.894 2025-03-26 06:33:55.894 2100 FEE 443322 21571 \N \N 6114098 2025-03-26 06:33:55.894 2025-03-26 06:33:55.894 18900 TIP 443322 21033 \N \N 6114116 2025-03-26 06:34:41.721 2025-03-26 06:34:41.721 1000 FEE 443688 17568 \N \N 6114134 2025-03-26 06:35:50.216 2025-03-26 06:35:50.216 10000 FEE 443593 10013 \N \N 6114135 2025-03-26 06:35:50.216 2025-03-26 06:35:50.216 90000 TIP 443593 4395 \N \N 6114149 2025-03-26 06:36:14.393 2025-03-26 06:36:14.393 1000 FEE 443694 12808 \N \N 6114151 2025-03-26 06:36:45.328 2025-03-26 06:36:45.328 1000 FEE 443695 21140 \N \N 6114169 2025-03-26 06:37:15.27 2025-03-26 06:37:15.27 10000 FEE 443583 661 \N \N 6114170 2025-03-26 06:37:15.27 2025-03-26 06:37:15.27 90000 TIP 443583 17095 \N \N 6114181 2025-03-26 06:37:26.236 2025-03-26 06:37:26.236 2100 FEE 443330 640 \N \N 6114182 2025-03-26 06:37:26.236 2025-03-26 06:37:26.236 18900 TIP 443330 21522 \N \N 6114193 2025-03-26 06:37:30.676 2025-03-26 06:37:30.676 2100 FEE 443315 21805 \N \N 6114194 2025-03-26 06:37:30.676 2025-03-26 06:37:30.676 18900 TIP 443315 14213 \N \N 6114203 2025-03-26 06:37:35.24 2025-03-26 06:37:35.24 2100 FEE 443309 6777 \N \N 6114204 2025-03-26 06:37:35.24 2025-03-26 06:37:35.24 18900 TIP 443309 14774 \N \N 6114211 2025-03-26 06:38:18.893 2025-03-26 06:38:18.893 69000 FEE 443697 11523 \N \N 6114214 2025-03-26 06:38:20.4 2025-03-26 06:38:20.4 2100 FEE 443554 2749 \N \N 6114215 2025-03-26 06:38:20.4 2025-03-26 06:38:20.4 18900 TIP 443554 2718 \N \N 6114218 2025-03-26 06:38:24.752 2025-03-26 06:38:24.752 2100 FEE 443431 17533 \N \N 6114219 2025-03-26 06:38:24.752 2025-03-26 06:38:24.752 18900 TIP 443431 2361 \N \N 6114233 2025-03-26 06:40:06.199 2025-03-26 06:40:06.199 2100 FEE 443624 9330 \N \N 6114234 2025-03-26 06:40:06.199 2025-03-26 06:40:06.199 18900 TIP 443624 21275 \N \N 6114240 2025-03-26 06:40:58.42 2025-03-26 06:40:58.42 1000 FEE 443701 9833 \N \N 6114241 2025-03-26 06:40:58.42 2025-03-26 06:40:58.42 9000 TIP 443701 13055 \N \N 6114242 2025-03-26 06:41:08.069 2025-03-26 06:41:08.069 1000 FEE 443703 4062 \N \N 6114255 2025-03-26 06:41:53.894 2025-03-26 06:41:53.894 2100 FEE 443390 622 \N \N 6114256 2025-03-26 06:41:53.894 2025-03-26 06:41:53.894 18900 TIP 443390 11527 \N \N 6114257 2025-03-26 06:41:59.006 2025-03-26 06:41:59.006 2100 FEE 443427 974 \N \N 6114258 2025-03-26 06:41:59.006 2025-03-26 06:41:59.006 18900 TIP 443427 6717 \N \N 6114266 2025-03-26 06:42:14.938 2025-03-26 06:42:14.938 0 FEE 443705 18068 \N \N 6114278 2025-03-26 06:43:26.666 2025-03-26 06:43:26.666 1000 FEE 443709 705 \N \N 6048139 2025-03-20 11:58:46.181 2025-03-20 11:58:46.181 900 FEE 436258 647 \N \N 6048140 2025-03-20 11:58:46.181 2025-03-20 11:58:46.181 8100 TIP 436258 4043 \N \N 6048149 2025-03-20 11:58:48.77 2025-03-20 11:58:48.77 800 FEE 436508 4323 \N \N 6048150 2025-03-20 11:58:48.77 2025-03-20 11:58:48.77 7200 TIP 436508 20433 \N \N 6048164 2025-03-20 12:02:57.645 2025-03-20 12:02:57.645 1100 FEE 436648 17592 \N \N 6048165 2025-03-20 12:02:57.645 2025-03-20 12:02:57.645 9900 TIP 436648 18011 \N \N 6048178 2025-03-20 12:05:12.3 2025-03-20 12:05:12.3 8300 FEE 436508 20713 \N \N 6048179 2025-03-20 12:05:12.3 2025-03-20 12:05:12.3 74700 TIP 436508 11038 \N \N 6048182 2025-03-20 12:05:12.649 2025-03-20 12:05:12.649 8300 FEE 436508 889 \N \N 6048183 2025-03-20 12:05:12.649 2025-03-20 12:05:12.649 74700 TIP 436508 21044 \N \N 6048197 2025-03-20 12:05:34.14 2025-03-20 12:05:34.14 2100 FEE 436612 7891 \N \N 6048198 2025-03-20 12:05:34.14 2025-03-20 12:05:34.14 18900 TIP 436612 1733 \N \N 6048201 2025-03-20 12:05:41.264 2025-03-20 12:05:41.264 2100 FEE 436587 2529 \N \N 6048202 2025-03-20 12:05:41.264 2025-03-20 12:05:41.264 18900 TIP 436587 2123 \N \N 6048220 2025-03-20 12:06:30.274 2025-03-20 12:06:30.274 2100 FEE 436644 8664 \N \N 6048221 2025-03-20 12:06:30.274 2025-03-20 12:06:30.274 18900 TIP 436644 21514 \N \N 6048222 2025-03-20 12:06:53.031 2025-03-20 12:06:53.031 1100 FEE 436643 12935 \N \N 6048223 2025-03-20 12:06:53.031 2025-03-20 12:06:53.031 9900 TIP 436643 14909 \N \N 6048226 2025-03-20 12:07:06.517 2025-03-20 12:07:06.517 200 FEE 436643 14651 \N \N 6048227 2025-03-20 12:07:06.517 2025-03-20 12:07:06.517 1800 TIP 436643 18772 \N \N 6048232 2025-03-20 12:08:30.018 2025-03-20 12:08:30.018 4000 FEE 436493 5495 \N \N 6048233 2025-03-20 12:08:30.018 2025-03-20 12:08:30.018 36000 TIP 436493 16594 \N \N 6048236 2025-03-20 12:08:33.274 2025-03-20 12:08:33.274 4000 FEE 436508 11443 \N \N 6048237 2025-03-20 12:08:33.274 2025-03-20 12:08:33.274 36000 TIP 436508 6360 \N \N 6048241 2025-03-20 12:08:35.902 2025-03-20 12:08:35.902 4000 FEE 436556 1120 \N \N 6048242 2025-03-20 12:08:35.902 2025-03-20 12:08:35.902 36000 TIP 436556 8269 \N \N 6048245 2025-03-20 12:08:41.174 2025-03-20 12:08:41.174 4000 FEE 436514 7674 \N \N 6048246 2025-03-20 12:08:41.174 2025-03-20 12:08:41.174 36000 TIP 436514 19263 \N \N 6048251 2025-03-20 12:10:23.911 2025-03-20 12:10:23.911 1000 FEE 436652 10549 \N \N 6048262 2025-03-20 12:12:14.25 2025-03-20 12:12:14.25 900 FEE 436612 21379 \N \N 6048263 2025-03-20 12:12:14.25 2025-03-20 12:12:14.25 8100 TIP 436612 19924 \N \N 6048266 2025-03-20 12:12:19.301 2025-03-20 12:12:19.301 100 FEE 436654 20198 \N \N 6048267 2025-03-20 12:12:19.301 2025-03-20 12:12:19.301 900 TIP 436654 20963 \N \N 6048274 2025-03-20 12:13:11.11 2025-03-20 12:13:11.11 900 FEE 436611 6777 \N \N 6048275 2025-03-20 12:13:11.11 2025-03-20 12:13:11.11 8100 TIP 436611 20990 \N \N 6048282 2025-03-20 12:14:14.215 2025-03-20 12:14:14.215 2100 FEE 436244 1733 \N \N 6048283 2025-03-20 12:14:14.215 2025-03-20 12:14:14.215 18900 TIP 436244 15806 \N \N 6048338 2025-03-20 12:28:01.235 2025-03-20 12:28:01.235 10000 FEE 436663 770 \N \N 6048354 2025-03-20 12:33:58.79 2025-03-20 12:33:58.79 100000 FEE 436669 18402 \N \N 6048369 2025-03-20 12:35:01.851 2025-03-20 12:35:01.851 1000 FEE 436669 19735 \N \N 6048370 2025-03-20 12:35:01.851 2025-03-20 12:35:01.851 9000 TIP 436669 20490 \N \N 6048371 2025-03-20 12:35:02.043 2025-03-20 12:35:02.043 1000 FEE 436669 21712 \N \N 6048372 2025-03-20 12:35:02.043 2025-03-20 12:35:02.043 9000 TIP 436669 11992 \N \N 6048377 2025-03-20 12:35:02.618 2025-03-20 12:35:02.618 1000 FEE 436669 14657 \N \N 6048378 2025-03-20 12:35:02.618 2025-03-20 12:35:02.618 9000 TIP 436669 4831 \N \N 6048381 2025-03-20 12:35:02.996 2025-03-20 12:35:02.996 1000 FEE 436669 10007 \N \N 6048382 2025-03-20 12:35:02.996 2025-03-20 12:35:02.996 9000 TIP 436669 17976 \N \N 6048412 2025-03-20 12:35:14.689 2025-03-20 12:35:14.689 1000 FEE 436669 21526 \N \N 6048413 2025-03-20 12:35:14.689 2025-03-20 12:35:14.689 9000 TIP 436669 3400 \N \N 6048414 2025-03-20 12:35:14.946 2025-03-20 12:35:14.946 1000 FEE 436669 15148 \N \N 6048415 2025-03-20 12:35:14.946 2025-03-20 12:35:14.946 9000 TIP 436669 10821 \N \N 6048416 2025-03-20 12:35:15.172 2025-03-20 12:35:15.172 1000 FEE 436669 11498 \N \N 6048417 2025-03-20 12:35:15.172 2025-03-20 12:35:15.172 9000 TIP 436669 10283 \N \N 6048432 2025-03-20 12:35:27.165 2025-03-20 12:35:27.165 1000 FEE 436669 6229 \N \N 6048433 2025-03-20 12:35:27.165 2025-03-20 12:35:27.165 9000 TIP 436669 7659 \N \N 6048453 2025-03-20 12:37:06.539 2025-03-20 12:37:06.539 1000 FEE 436669 21139 \N \N 6048454 2025-03-20 12:37:06.539 2025-03-20 12:37:06.539 9000 TIP 436669 8400 \N \N 6048478 2025-03-20 12:43:58.367 2025-03-20 12:43:58.367 4000 FEE 436665 21172 \N \N 6048479 2025-03-20 12:43:58.367 2025-03-20 12:43:58.367 36000 TIP 436665 17552 \N \N 6048480 2025-03-20 12:43:59.192 2025-03-20 12:43:59.192 1000 FEE 436677 1092 \N \N 6048481 2025-03-20 12:43:59.478 2025-03-20 12:43:59.478 1000 FEE 436678 646 \N \N 6048487 2025-03-20 12:47:28.58 2025-03-20 12:47:28.58 2100 FEE 436671 910 \N \N 6048488 2025-03-20 12:47:28.58 2025-03-20 12:47:28.58 18900 TIP 436671 1611 \N \N 6048502 2025-03-20 12:50:00.86 2025-03-20 12:50:00.86 1000 FEE 436682 17106 \N \N 6048509 2025-03-20 12:50:19.013 2025-03-20 12:50:19.013 27000 FEE 436674 2204 \N \N 6048510 2025-03-20 12:50:19.013 2025-03-20 12:50:19.013 243000 TIP 436674 21391 \N \N 6048535 2025-03-20 12:53:44.593 2025-03-20 12:53:44.593 1000 FEE 436686 12774 \N \N 6048536 2025-03-20 12:53:44.593 2025-03-20 12:53:44.593 9000 TIP 436686 4079 \N \N 6048553 2025-03-20 12:54:07.658 2025-03-20 12:54:07.658 1000 FEE 436683 1618 \N \N 6048554 2025-03-20 12:54:07.658 2025-03-20 12:54:07.658 9000 TIP 436683 16965 \N \N 6048582 2025-03-20 12:58:02.99 2025-03-20 12:58:02.99 1000 FEE 436683 15119 \N \N 6048583 2025-03-20 12:58:02.99 2025-03-20 12:58:02.99 9000 TIP 436683 18114 \N \N 6048602 2025-03-20 12:58:04.572 2025-03-20 12:58:04.572 1000 FEE 436683 14195 \N \N 6048603 2025-03-20 12:58:04.572 2025-03-20 12:58:04.572 9000 TIP 436683 20811 \N \N 6048615 2025-03-20 13:01:10.162 2025-03-20 13:01:10.162 10000 FEE 436688 12097 \N \N 6048616 2025-03-20 13:01:10.162 2025-03-20 13:01:10.162 90000 TIP 436688 17046 \N \N 6048630 2025-03-20 13:01:21.476 2025-03-20 13:01:21.476 1000 FEE 436693 17522 \N \N 6048631 2025-03-20 13:01:52.559 2025-03-20 13:01:52.559 1000 FEE 436694 1236 \N \N 6048642 2025-03-20 13:03:21.994 2025-03-20 13:03:21.994 1000 FEE 436695 2224 \N \N 6048643 2025-03-20 13:03:21.994 2025-03-20 13:03:21.994 9000 TIP 436695 4345 \N \N 6048650 2025-03-20 13:04:35.577 2025-03-20 13:04:35.577 2000 FEE 436523 14225 \N \N 6048651 2025-03-20 13:04:35.577 2025-03-20 13:04:35.577 18000 TIP 436523 7979 \N \N 6048652 2025-03-20 13:04:54.156 2025-03-20 13:04:54.156 1000 FEE 436523 19663 \N \N 6048653 2025-03-20 13:04:54.156 2025-03-20 13:04:54.156 9000 TIP 436523 5728 \N \N 6048654 2025-03-20 13:04:54.326 2025-03-20 13:04:54.326 1000 FEE 436523 18177 \N \N 6113884 2025-03-26 06:22:09.753 2025-03-26 06:22:09.753 9000 TIP 443487 622 \N \N 6113904 2025-03-26 06:25:30.494 2025-03-26 06:25:30.494 1000 FEE 443672 20687 \N \N 6113914 2025-03-26 06:27:58.043 2025-03-26 06:27:58.043 1000 FEE 443676 21042 \N \N 6113926 2025-03-26 06:28:06.476 2025-03-26 06:28:06.476 1000 FEE 443484 20906 \N \N 6113927 2025-03-26 06:28:06.476 2025-03-26 06:28:06.476 9000 TIP 443484 2749 \N \N 6113928 2025-03-26 06:28:06.644 2025-03-26 06:28:06.644 1000 FEE 443484 2652 \N \N 6113929 2025-03-26 06:28:06.644 2025-03-26 06:28:06.644 9000 TIP 443484 2492 \N \N 6114035 2025-03-26 06:32:45.354 2025-03-26 06:32:45.354 1000 FEE 443528 14404 \N \N 6114036 2025-03-26 06:32:45.354 2025-03-26 06:32:45.354 9000 TIP 443528 19924 \N \N 6114041 2025-03-26 06:32:58.63 2025-03-26 06:32:58.63 2100 FEE 443467 15925 \N \N 6114042 2025-03-26 06:32:58.63 2025-03-26 06:32:58.63 18900 TIP 443467 9537 \N \N 6114049 2025-03-26 06:33:00.679 2025-03-26 06:33:00.679 1000 FEE 443453 11590 \N \N 6114050 2025-03-26 06:33:00.679 2025-03-26 06:33:00.679 9000 TIP 443453 9262 \N \N 6114061 2025-03-26 06:33:11.05 2025-03-26 06:33:11.05 2100 FEE 443560 652 \N \N 6114062 2025-03-26 06:33:11.05 2025-03-26 06:33:11.05 18900 TIP 443560 18314 \N \N 6114086 2025-03-26 06:33:23.028 2025-03-26 06:33:23.028 2100 FEE 443371 21631 \N \N 6114087 2025-03-26 06:33:23.028 2025-03-26 06:33:23.028 18900 TIP 443371 17082 \N \N 6114090 2025-03-26 06:33:49.353 2025-03-26 06:33:49.353 1000 FEE 443687 17106 \N \N 6114103 2025-03-26 06:33:59.453 2025-03-26 06:33:59.453 2100 FEE 443312 844 \N \N 6114104 2025-03-26 06:33:59.453 2025-03-26 06:33:59.453 18900 TIP 443312 21233 \N \N 6114112 2025-03-26 06:34:20.967 2025-03-26 06:34:20.967 100 FEE 443337 20599 \N \N 6114113 2025-03-26 06:34:20.967 2025-03-26 06:34:20.967 900 TIP 443337 17184 \N \N 6114117 2025-03-26 06:34:45.285 2025-03-26 06:34:45.285 1000 FEE 443689 1836 \N \N 6114130 2025-03-26 06:35:48.592 2025-03-26 06:35:48.592 1000 FEE 443689 9655 \N \N 6114131 2025-03-26 06:35:48.592 2025-03-26 06:35:48.592 9000 TIP 443689 15045 \N \N 6114142 2025-03-26 06:35:50.921 2025-03-26 06:35:50.921 10000 FEE 443593 20614 \N \N 6114143 2025-03-26 06:35:50.921 2025-03-26 06:35:50.921 90000 TIP 443593 1307 \N \N 6114150 2025-03-26 06:36:38.204 2025-03-26 06:36:38.204 0 FEE 443693 20157 \N \N 6114158 2025-03-26 06:37:11.098 2025-03-26 06:37:11.098 2100 FEE 443387 20099 \N \N 6114159 2025-03-26 06:37:11.098 2025-03-26 06:37:11.098 18900 TIP 443387 6382 \N \N 6114165 2025-03-26 06:37:14.03 2025-03-26 06:37:14.03 2100 FEE 443320 18930 \N \N 6114166 2025-03-26 06:37:14.03 2025-03-26 06:37:14.03 18900 TIP 443320 5069 \N \N 6114187 2025-03-26 06:37:27.698 2025-03-26 06:37:27.698 2100 FEE 443308 992 \N \N 6114188 2025-03-26 06:37:27.698 2025-03-26 06:37:27.698 18900 TIP 443308 16097 \N \N 6114189 2025-03-26 06:37:29.593 2025-03-26 06:37:29.593 2100 FEE 443311 1737 \N \N 6114190 2025-03-26 06:37:29.593 2025-03-26 06:37:29.593 18900 TIP 443311 17172 \N \N 6114191 2025-03-26 06:37:29.736 2025-03-26 06:37:29.736 1000 FEE 443685 17316 \N \N 6114192 2025-03-26 06:37:29.736 2025-03-26 06:37:29.736 9000 TIP 443685 21514 \N \N 6114212 2025-03-26 06:38:19.168 2025-03-26 06:38:19.168 2100 FEE 443602 5852 \N \N 6114213 2025-03-26 06:38:19.168 2025-03-26 06:38:19.168 18900 TIP 443602 12049 \N \N 6114224 2025-03-26 06:39:32.404 2025-03-26 06:39:32.404 2100 FEE 443583 5293 \N \N 6114225 2025-03-26 06:39:32.404 2025-03-26 06:39:32.404 18900 TIP 443583 17291 \N \N 6114226 2025-03-26 06:39:55.042 2025-03-26 06:39:55.042 1000 FEE 443700 1717 \N \N 6114227 2025-03-26 06:39:56.276 2025-03-26 06:39:56.276 1000 FEE 443699 13327 \N \N 6114228 2025-03-26 06:39:56.276 2025-03-26 06:39:56.276 9000 TIP 443699 2206 \N \N 6114239 2025-03-26 06:40:55.157 2025-03-26 06:40:55.157 1000 FEE 443702 13169 \N \N 6114274 2025-03-26 06:43:17.508 2025-03-26 06:43:17.508 1700 FEE 443699 822 \N \N 6114275 2025-03-26 06:43:17.508 2025-03-26 06:43:17.508 15300 TIP 443699 16406 \N \N 6114287 2025-03-26 06:45:11.923 2025-03-26 06:45:11.923 3300 FEE 442904 2722 \N \N 6114288 2025-03-26 06:45:11.923 2025-03-26 06:45:11.923 29700 TIP 442904 11477 \N \N 6114333 2025-03-26 06:52:26.014 2025-03-26 06:52:26.014 1000 FEE 443718 9335 \N \N 6114359 2025-03-26 06:56:21.627 2025-03-26 06:56:21.627 1000 FEE 443726 11477 \N \N 6114377 2025-03-26 06:58:05.264 2025-03-26 06:58:05.264 1100 FEE 403892 14357 \N \N 6114378 2025-03-26 06:58:05.264 2025-03-26 06:58:05.264 9900 TIP 403892 1142 \N \N 6114396 2025-03-26 06:59:13.826 2025-03-26 06:59:13.826 9000 FEE 443683 4313 \N \N 6114397 2025-03-26 06:59:13.826 2025-03-26 06:59:13.826 81000 TIP 443683 2528 \N \N 6114413 2025-03-26 07:00:58.165 2025-03-26 07:00:58.165 500 FEE 443577 8448 \N \N 6114414 2025-03-26 07:00:58.165 2025-03-26 07:00:58.165 4500 TIP 443577 21275 \N \N 6114420 2025-03-26 07:02:01.69 2025-03-26 07:02:01.69 900 FEE 443711 8400 \N \N 6114421 2025-03-26 07:02:01.69 2025-03-26 07:02:01.69 8100 TIP 443711 1008 \N \N 6114447 2025-03-26 07:03:55.338 2025-03-26 07:03:55.338 5700 FEE 443593 19126 \N \N 6114448 2025-03-26 07:03:55.338 2025-03-26 07:03:55.338 51300 TIP 443593 16670 \N \N 6114449 2025-03-26 07:03:56.193 2025-03-26 07:03:56.193 5700 FEE 443667 15115 \N \N 6114450 2025-03-26 07:03:56.193 2025-03-26 07:03:56.193 51300 TIP 443667 19484 \N \N 6114455 2025-03-26 07:04:14.965 2025-03-26 07:04:14.965 100000 FEE 443736 17392 \N \N 6114466 2025-03-26 07:05:14.766 2025-03-26 07:05:14.766 2100 FEE 443726 1468 \N \N 6114467 2025-03-26 07:05:14.766 2025-03-26 07:05:14.766 18900 TIP 443726 708 \N \N 6114470 2025-03-26 07:05:16.218 2025-03-26 07:05:16.218 1000 FEE 443738 7654 \N \N 6114481 2025-03-26 07:06:04.371 2025-03-26 07:06:04.371 1700 FEE 443712 15147 \N \N 6114482 2025-03-26 07:06:04.371 2025-03-26 07:06:04.371 15300 TIP 443712 9353 \N \N 6114513 2025-03-26 07:09:12.191 2025-03-26 07:09:12.191 2100 FEE 443274 20073 \N \N 6114514 2025-03-26 07:09:12.191 2025-03-26 07:09:12.191 18900 TIP 443274 725 \N \N 6114515 2025-03-26 07:09:12.522 2025-03-26 07:09:12.522 2100 FEE 443274 21212 \N \N 6114516 2025-03-26 07:09:12.522 2025-03-26 07:09:12.522 18900 TIP 443274 20972 \N \N 6114541 2025-03-26 07:12:34.118 2025-03-26 07:12:34.118 1000 FEE 443750 17147 \N \N 6114558 2025-03-26 07:12:53.444 2025-03-26 07:12:53.444 100 FEE 443747 9334 \N \N 6114559 2025-03-26 07:12:53.444 2025-03-26 07:12:53.444 900 TIP 443747 20614 \N \N 6114574 2025-03-26 07:12:59.862 2025-03-26 07:12:59.862 2100 FEE 443545 989 \N \N 6114575 2025-03-26 07:12:59.862 2025-03-26 07:12:59.862 18900 TIP 443545 15336 \N \N 6114590 2025-03-26 07:15:00.864 2025-03-26 07:15:00.864 1000 FEE 443754 3656 \N \N 6114617 2025-03-26 07:18:34.3 2025-03-26 07:18:34.3 100 FEE 443750 2681 \N \N 6114618 2025-03-26 07:18:34.3 2025-03-26 07:18:34.3 900 TIP 443750 20981 \N \N 6114619 2025-03-26 07:18:41.175 2025-03-26 07:18:41.175 1000 FEE 443759 16562 \N \N 6114620 2025-03-26 07:18:41.175 2025-03-26 07:18:41.175 9000 TIP 443759 17696 \N \N 6114638 2025-03-26 07:20:31.843 2025-03-26 07:20:31.843 2100 FEE 443717 715 \N \N 6114639 2025-03-26 07:20:31.843 2025-03-26 07:20:31.843 18900 TIP 443717 12169 \N \N 6114651 2025-03-26 07:21:38.956 2025-03-26 07:21:38.956 0 FEE 443762 4079 \N \N 6114660 2025-03-26 07:22:20.451 2025-03-26 07:22:20.451 800 FEE 443743 12346 \N \N 6114661 2025-03-26 07:22:20.451 2025-03-26 07:22:20.451 7200 TIP 443743 21060 \N \N 6114671 2025-03-26 07:22:49.334 2025-03-26 07:22:49.334 0 FEE 443762 20490 \N \N 6114672 2025-03-26 07:22:54.301 2025-03-26 07:22:54.301 1000 FEE 443771 5978 \N \N 6114696 2025-03-26 07:24:44.928 2025-03-26 07:24:44.928 100000 FEE 443775 14015 \N \N 6114699 2025-03-26 07:24:58.989 2025-03-26 07:24:58.989 100 FEE 443712 14280 \N \N 6114700 2025-03-26 07:24:58.989 2025-03-26 07:24:58.989 900 TIP 443712 738 \N \N 6114710 2025-03-26 07:25:21.117 2025-03-26 07:25:21.117 2100 FEE 443616 9421 \N \N 6114711 2025-03-26 07:25:21.117 2025-03-26 07:25:21.117 18900 TIP 443616 8535 \N \N 6114740 2025-03-26 07:28:49.591 2025-03-26 07:28:49.591 2100 FEE 443272 6361 \N \N 6114741 2025-03-26 07:28:49.591 2025-03-26 07:28:49.591 18900 TIP 443272 5306 \N \N 6114768 2025-03-26 07:29:27.079 2025-03-26 07:29:27.079 1700 FEE 443768 5829 \N \N 6114769 2025-03-26 07:29:27.079 2025-03-26 07:29:27.079 15300 TIP 443768 1673 \N \N 6114774 2025-03-26 07:29:44.979 2025-03-26 07:29:44.979 1000 FEE 443771 658 \N \N 6114775 2025-03-26 07:29:44.979 2025-03-26 07:29:44.979 9000 TIP 443771 11522 \N \N 6114796 2025-03-26 07:31:07.589 2025-03-26 07:31:07.589 1700 FEE 443758 7674 \N \N 6048216 2025-03-20 12:06:11.41 2025-03-20 12:06:11.41 18900 TIP 436525 21079 \N \N 6048224 2025-03-20 12:06:53.055 2025-03-20 12:06:53.055 1000 FEE 436608 8498 \N \N 6048225 2025-03-20 12:06:53.055 2025-03-20 12:06:53.055 9000 TIP 436608 21373 \N \N 6048293 2025-03-20 12:17:23.298 2025-03-20 12:17:23.298 7100 FEE 436601 9367 \N \N 6048294 2025-03-20 12:17:23.298 2025-03-20 12:17:23.298 63900 TIP 436601 10352 \N \N 6048330 2025-03-20 12:26:32.453 2025-03-20 12:26:32.453 4200 FEE 436605 19087 \N \N 6048331 2025-03-20 12:26:32.453 2025-03-20 12:26:32.453 37800 TIP 436605 14258 \N \N 6048360 2025-03-20 12:34:44.514 2025-03-20 12:34:44.514 1000 FEE 436670 2593 \N \N 6048365 2025-03-20 12:35:01.554 2025-03-20 12:35:01.554 1000 FEE 436669 14385 \N \N 6048366 2025-03-20 12:35:01.554 2025-03-20 12:35:01.554 9000 TIP 436669 9378 \N \N 6048375 2025-03-20 12:35:02.423 2025-03-20 12:35:02.423 1000 FEE 436669 5455 \N \N 6048376 2025-03-20 12:35:02.423 2025-03-20 12:35:02.423 9000 TIP 436669 21766 \N \N 6048468 2025-03-20 12:40:55.705 2025-03-20 12:40:55.705 2100 FEE 431293 4570 \N \N 6048469 2025-03-20 12:40:55.705 2025-03-20 12:40:55.705 18900 TIP 431293 14168 \N \N 6048495 2025-03-20 12:48:27.792 2025-03-20 12:48:27.792 1000 FEE 436680 21824 \N \N 6048496 2025-03-20 12:48:30.175 2025-03-20 12:48:30.175 2000 FEE 436665 20864 \N \N 6048497 2025-03-20 12:48:30.175 2025-03-20 12:48:30.175 18000 TIP 436665 827 \N \N 6048524 2025-03-20 12:50:45.105 2025-03-20 12:50:45.105 1000 FEE 436684 3686 \N \N 6048525 2025-03-20 12:50:56.13 2025-03-20 12:50:56.13 1000 FEE 436683 21412 \N \N 6048526 2025-03-20 12:50:56.13 2025-03-20 12:50:56.13 9000 TIP 436683 4798 \N \N 6048545 2025-03-20 12:53:45.324 2025-03-20 12:53:45.324 1000 FEE 436686 12188 \N \N 6048546 2025-03-20 12:53:45.324 2025-03-20 12:53:45.324 9000 TIP 436686 1221 \N \N 6048594 2025-03-20 12:58:03.923 2025-03-20 12:58:03.923 1000 FEE 436683 9366 \N \N 6048595 2025-03-20 12:58:03.923 2025-03-20 12:58:03.923 9000 TIP 436683 18412 \N \N 6048607 2025-03-20 12:58:16.774 2025-03-20 12:58:16.774 1000 FEE 436689 12561 \N \N 6048627 2025-03-20 13:01:12.314 2025-03-20 13:01:12.314 100 FEE 436566 11220 \N \N 6048628 2025-03-20 13:01:12.314 2025-03-20 13:01:12.314 900 TIP 436566 21416 \N \N 6048647 2025-03-20 13:04:19.331 2025-03-20 13:04:19.331 1000 FEE 436696 1519 \N \N 6048660 2025-03-20 13:04:55.247 2025-03-20 13:04:55.247 1000 FEE 436523 11164 \N \N 6048661 2025-03-20 13:04:55.247 2025-03-20 13:04:55.247 9000 TIP 436523 18473 \N \N 6048683 2025-03-20 13:07:34.982 2025-03-20 13:07:34.982 1000 FEE 436700 9476 \N \N 6048684 2025-03-20 13:07:36.063 2025-03-20 13:07:36.063 1000 FEE 436701 20745 \N \N 6048689 2025-03-20 13:07:43.051 2025-03-20 13:07:43.051 2300 FEE 436669 21805 \N \N 6048690 2025-03-20 13:07:43.051 2025-03-20 13:07:43.051 20700 TIP 436669 13544 \N \N 6048695 2025-03-20 13:07:43.623 2025-03-20 13:07:43.623 2300 FEE 436669 19117 \N \N 6048696 2025-03-20 13:07:43.623 2025-03-20 13:07:43.623 20700 TIP 436669 17722 \N \N 6048723 2025-03-20 13:09:58.052 2025-03-20 13:09:58.052 1000 FEE 436686 14376 \N \N 6048724 2025-03-20 13:09:58.052 2025-03-20 13:09:58.052 9000 TIP 436686 21061 \N \N 6048755 2025-03-20 13:19:05.037 2025-03-20 13:19:05.037 1000 FEE 436705 1244 \N \N 6048777 2025-03-20 13:26:40.227 2025-03-20 13:26:40.227 1000 FEE 436707 9421 \N \N 6048795 2025-03-20 13:27:22.677 2025-03-20 13:27:22.677 8300 FEE 436669 1806 \N \N 6048796 2025-03-20 13:27:22.677 2025-03-20 13:27:22.677 74700 TIP 436669 621 \N \N 6048841 2025-03-20 13:33:49.033 2025-03-20 13:33:49.033 1000 FEE 436699 1030 \N \N 6048842 2025-03-20 13:33:49.033 2025-03-20 13:33:49.033 9000 TIP 436699 20811 \N \N 6048869 2025-03-20 13:43:35.345 2025-03-20 13:43:35.345 10000 FEE 436536 7766 \N \N 6048870 2025-03-20 13:43:35.345 2025-03-20 13:43:35.345 90000 TIP 436536 15139 \N \N 6048880 2025-03-20 13:46:38.9 2025-03-20 13:46:38.9 1000 FEE 436712 21406 \N \N 6048932 2025-03-20 14:02:25.456 2025-03-20 14:02:25.456 500 FEE 436560 2459 \N \N 6048933 2025-03-20 14:02:25.456 2025-03-20 14:02:25.456 4500 TIP 436560 1465 \N \N 6048951 2025-03-20 14:03:53.313 2025-03-20 14:03:53.313 1000 FEE 436716 11789 \N \N 6048962 2025-03-20 14:07:50.577 2025-03-20 14:07:50.577 1000 FEE 436649 16680 \N \N 6048963 2025-03-20 14:07:50.577 2025-03-20 14:07:50.577 9000 TIP 436649 5036 \N \N 6048982 2025-03-20 14:07:55.964 2025-03-20 14:07:55.964 1000 FEE 436649 13038 \N \N 6048983 2025-03-20 14:07:55.964 2025-03-20 14:07:55.964 9000 TIP 436649 18368 \N \N 6049025 2025-03-20 14:20:17.831 2025-03-20 14:20:17.831 10000 FEE 436611 18241 \N \N 6049026 2025-03-20 14:20:17.831 2025-03-20 14:20:17.831 90000 TIP 436611 6741 \N \N 6049045 2025-03-20 14:24:52.761 2025-03-20 14:24:52.761 100 FEE 436720 9496 \N \N 6049046 2025-03-20 14:24:52.761 2025-03-20 14:24:52.761 900 TIP 436720 699 \N \N 6049049 2025-03-20 14:24:53.89 2025-03-20 14:24:53.89 100 FEE 436720 19484 \N \N 6049050 2025-03-20 14:24:53.89 2025-03-20 14:24:53.89 900 TIP 436720 11328 \N \N 6049051 2025-03-20 14:24:54.927 2025-03-20 14:24:54.927 100 FEE 436720 763 \N \N 6049052 2025-03-20 14:24:54.927 2025-03-20 14:24:54.927 900 TIP 436720 1567 \N \N 6049053 2025-03-20 14:24:56.326 2025-03-20 14:24:56.326 100 FEE 436720 20751 \N \N 6049054 2025-03-20 14:24:56.326 2025-03-20 14:24:56.326 900 TIP 436720 21356 \N \N 6049055 2025-03-20 14:24:57.695 2025-03-20 14:24:57.695 100 FEE 436720 13759 \N \N 6049056 2025-03-20 14:24:57.695 2025-03-20 14:24:57.695 900 TIP 436720 19502 \N \N 6049091 2025-03-20 14:28:57.271 2025-03-20 14:28:57.271 1000 FEE 436491 20500 \N \N 6049092 2025-03-20 14:28:57.271 2025-03-20 14:28:57.271 9000 TIP 436491 9354 \N \N 6049112 2025-03-20 14:29:21.441 2025-03-20 14:29:21.441 5000 FEE 436560 8989 \N \N 6049113 2025-03-20 14:29:21.441 2025-03-20 14:29:21.441 45000 TIP 436560 2000 \N \N 6049128 2025-03-20 14:29:58.401 2025-03-20 14:29:58.401 2300 FEE 436612 8954 \N \N 6049129 2025-03-20 14:29:58.401 2025-03-20 14:29:58.401 20700 TIP 436612 20245 \N \N 6049130 2025-03-20 14:29:58.783 2025-03-20 14:29:58.783 2300 FEE 436612 19394 \N \N 6049131 2025-03-20 14:29:58.783 2025-03-20 14:29:58.783 20700 TIP 436612 7818 \N \N 6049137 2025-03-20 14:30:22.22 2025-03-20 14:30:22.22 1000 FEE 435987 2016 \N \N 6049138 2025-03-20 14:30:22.22 2025-03-20 14:30:22.22 9000 TIP 435987 15521 \N \N 6049149 2025-03-20 14:30:42.312 2025-03-20 14:30:42.312 2300 FEE 436720 10342 \N \N 6049150 2025-03-20 14:30:42.312 2025-03-20 14:30:42.312 20700 TIP 436720 20906 \N \N 6049180 2025-03-20 14:34:40.339 2025-03-20 14:34:40.339 1000 FEE 436732 11561 \N \N 6049197 2025-03-20 14:36:35.898 2025-03-20 14:36:35.898 2100 FEE 436696 10013 \N \N 6049198 2025-03-20 14:36:35.898 2025-03-20 14:36:35.898 18900 TIP 436696 4378 \N \N 6049215 2025-03-20 14:37:59.456 2025-03-20 14:37:59.456 8300 FEE 436729 17570 \N \N 6049216 2025-03-20 14:37:59.456 2025-03-20 14:37:59.456 74700 TIP 436729 9290 \N \N 6049221 2025-03-20 14:38:03.165 2025-03-20 14:38:03.165 8300 FEE 436729 13132 \N \N 6049222 2025-03-20 14:38:03.165 2025-03-20 14:38:03.165 74700 TIP 436729 17570 \N \N 6049227 2025-03-20 14:38:03.823 2025-03-20 14:38:03.823 8300 FEE 436729 2596 \N \N 6049228 2025-03-20 14:38:03.823 2025-03-20 14:38:03.823 74700 TIP 436729 16097 \N \N 6049237 2025-03-20 14:38:04.437 2025-03-20 14:38:04.437 8300 FEE 436729 19531 \N \N 6049238 2025-03-20 14:38:04.437 2025-03-20 14:38:04.437 74700 TIP 436729 15226 \N \N 6049266 2025-03-20 14:39:09.226 2025-03-20 14:39:09.226 3300 FEE 436695 1577 \N \N 6049267 2025-03-20 14:39:09.226 2025-03-20 14:39:09.226 29700 TIP 436695 13217 \N \N 6049268 2025-03-20 14:39:12.282 2025-03-20 14:39:12.282 3300 FEE 436695 8284 \N \N 6049269 2025-03-20 14:39:12.282 2025-03-20 14:39:12.282 29700 TIP 436695 10490 \N \N 6049310 2025-03-20 14:44:32.313 2025-03-20 14:44:32.313 100 FEE 436736 2780 \N \N 6049311 2025-03-20 14:44:32.313 2025-03-20 14:44:32.313 900 TIP 436736 19527 \N \N 6049312 2025-03-20 14:44:32.501 2025-03-20 14:44:32.501 900 FEE 436736 11454 \N \N 6049313 2025-03-20 14:44:32.501 2025-03-20 14:44:32.501 8100 TIP 436736 15890 \N \N 6049333 2025-03-20 14:46:05.577 2025-03-20 14:46:05.577 500 FEE 435728 4388 \N \N 6049334 2025-03-20 14:46:05.577 2025-03-20 14:46:05.577 4500 TIP 435728 1740 \N \N 6049343 2025-03-20 14:47:20.327 2025-03-20 14:47:20.327 500 FEE 436694 20663 \N \N 6049344 2025-03-20 14:47:20.327 2025-03-20 14:47:20.327 4500 TIP 436694 16704 \N \N 6049371 2025-03-20 14:48:38.675 2025-03-20 14:48:38.675 3000 FEE 436702 19471 \N \N 6049372 2025-03-20 14:48:38.675 2025-03-20 14:48:38.675 27000 TIP 436702 20198 \N \N 6049390 2025-03-20 14:50:25.04 2025-03-20 14:50:25.04 2800 FEE 423683 1394 \N \N 6048310 2025-03-20 12:20:21.11 2025-03-20 12:20:21.11 10000 FEE 436650 19576 \N \N 6048311 2025-03-20 12:20:21.11 2025-03-20 12:20:21.11 90000 TIP 436650 17226 \N \N 6048315 2025-03-20 12:21:49.559 2025-03-20 12:21:49.559 3000 FEE 436658 1237 \N \N 6048316 2025-03-20 12:21:49.559 2025-03-20 12:21:49.559 27000 TIP 436658 20980 \N \N 6048333 2025-03-20 12:27:46.576 2025-03-20 12:27:46.576 2100 FEE 436658 11938 \N \N 6048334 2025-03-20 12:27:46.576 2025-03-20 12:27:46.576 18900 TIP 436658 1120 \N \N 6048342 2025-03-20 12:29:27.841 2025-03-20 12:29:27.841 1000 FEE 436665 1006 \N \N 6048344 2025-03-20 12:31:01.805 2025-03-20 12:31:01.805 300 FEE 435876 20502 \N \N 6048345 2025-03-20 12:31:01.805 2025-03-20 12:31:01.805 2700 TIP 435876 8684 \N \N 6048355 2025-03-20 12:34:11.036 2025-03-20 12:34:11.036 1000 FEE 436669 4378 \N \N 6048356 2025-03-20 12:34:11.036 2025-03-20 12:34:11.036 9000 TIP 436669 16633 \N \N 6048387 2025-03-20 12:35:03.588 2025-03-20 12:35:03.588 1000 FEE 436669 9421 \N \N 6048388 2025-03-20 12:35:03.588 2025-03-20 12:35:03.588 9000 TIP 436669 3544 \N \N 6048397 2025-03-20 12:35:04.57 2025-03-20 12:35:04.57 1000 FEE 436669 21734 \N \N 6048398 2025-03-20 12:35:04.57 2025-03-20 12:35:04.57 9000 TIP 436669 12911 \N \N 6048407 2025-03-20 12:35:11.42 2025-03-20 12:35:11.42 1000 FEE 436669 16842 \N \N 6048408 2025-03-20 12:35:11.42 2025-03-20 12:35:11.42 9000 TIP 436669 16876 \N \N 6048409 2025-03-20 12:35:11.86 2025-03-20 12:35:11.86 1000 FEE 436669 738 \N \N 6048410 2025-03-20 12:35:11.86 2025-03-20 12:35:11.86 9000 TIP 436669 5455 \N \N 6048426 2025-03-20 12:35:21.918 2025-03-20 12:35:21.918 1000 FEE 436669 9332 \N \N 6048427 2025-03-20 12:35:21.918 2025-03-20 12:35:21.918 9000 TIP 436669 759 \N \N 6048443 2025-03-20 12:36:45.298 2025-03-20 12:36:45.298 500000 FEE 432920 11491 \N \N 6048444 2025-03-20 12:36:45.298 2025-03-20 12:36:45.298 4500000 TIP 432920 642 \N \N 6048470 2025-03-20 12:40:59.898 2025-03-20 12:40:59.898 1000 FEE 436676 17552 \N \N 6048499 2025-03-20 12:49:14.076 2025-03-20 12:49:14.076 2100 FEE 436609 21338 \N \N 6048500 2025-03-20 12:49:14.076 2025-03-20 12:49:14.076 18900 TIP 436609 21603 \N \N 6048543 2025-03-20 12:53:45.191 2025-03-20 12:53:45.191 1000 FEE 436686 6537 \N \N 6048544 2025-03-20 12:53:45.191 2025-03-20 12:53:45.191 9000 TIP 436686 13553 \N \N 6048557 2025-03-20 12:54:08.044 2025-03-20 12:54:08.044 1000 FEE 436683 4654 \N \N 6048558 2025-03-20 12:54:08.044 2025-03-20 12:54:08.044 9000 TIP 436683 18717 \N \N 6048632 2025-03-20 13:01:58.698 2025-03-20 13:01:58.698 0 FEE 436692 12368 \N \N 6048634 2025-03-20 13:02:20.261 2025-03-20 13:02:20.261 1000 FEE 436695 9426 \N \N 6048640 2025-03-20 13:03:21.884 2025-03-20 13:03:21.884 1000 FEE 436695 17710 \N \N 6048641 2025-03-20 13:03:21.884 2025-03-20 13:03:21.884 9000 TIP 436695 16212 \N \N 6048648 2025-03-20 13:04:35.248 2025-03-20 13:04:35.248 1000 FEE 436523 10661 \N \N 6048649 2025-03-20 13:04:35.248 2025-03-20 13:04:35.248 9000 TIP 436523 18743 \N \N 6048670 2025-03-20 13:06:43.381 2025-03-20 13:06:43.381 1000 FEE 436698 20525 \N \N 6048685 2025-03-20 13:07:41.288 2025-03-20 13:07:41.288 1000 FEE 436673 13327 \N \N 6048686 2025-03-20 13:07:41.288 2025-03-20 13:07:41.288 9000 TIP 436673 688 \N \N 6048697 2025-03-20 13:07:44.108 2025-03-20 13:07:44.108 2300 FEE 436669 10698 \N \N 6048698 2025-03-20 13:07:44.108 2025-03-20 13:07:44.108 20700 TIP 436669 19292 \N \N 6048699 2025-03-20 13:07:44.305 2025-03-20 13:07:44.305 2300 FEE 436669 675 \N \N 6048700 2025-03-20 13:07:44.305 2025-03-20 13:07:44.305 20700 TIP 436669 798 \N \N 6048701 2025-03-20 13:07:44.44 2025-03-20 13:07:44.44 2300 FEE 436669 16970 \N \N 6048702 2025-03-20 13:07:44.44 2025-03-20 13:07:44.44 20700 TIP 436669 1447 \N \N 6048711 2025-03-20 13:09:42.593 2025-03-20 13:09:42.593 8300 FEE 436666 20647 \N \N 6048712 2025-03-20 13:09:42.593 2025-03-20 13:09:42.593 74700 TIP 436666 12769 \N \N 6048726 2025-03-20 13:10:19.549 2025-03-20 13:10:19.549 1000 FEE 436513 8713 \N \N 6048727 2025-03-20 13:10:19.549 2025-03-20 13:10:19.549 9000 TIP 436513 6335 \N \N 6048778 2025-03-20 13:26:47.324 2025-03-20 13:26:47.324 100 FEE 436556 2042 \N \N 6048779 2025-03-20 13:26:47.324 2025-03-20 13:26:47.324 900 TIP 436556 9 \N \N 6048783 2025-03-20 13:27:21.874 2025-03-20 13:27:21.874 8300 FEE 436669 20756 \N \N 6048784 2025-03-20 13:27:21.874 2025-03-20 13:27:21.874 74700 TIP 436669 633 \N \N 6048805 2025-03-20 13:27:24.706 2025-03-20 13:27:24.706 8300 FEE 436669 21320 \N \N 6048806 2025-03-20 13:27:24.706 2025-03-20 13:27:24.706 74700 TIP 436669 15762 \N \N 6048815 2025-03-20 13:30:05.013 2025-03-20 13:30:05.013 3300 FEE 436566 2609 \N \N 6048816 2025-03-20 13:30:05.013 2025-03-20 13:30:05.013 29700 TIP 436566 1003 \N \N 6048818 2025-03-20 13:30:19.521 2025-03-20 13:30:19.521 3200 FEE 436639 13133 \N \N 6048819 2025-03-20 13:30:19.521 2025-03-20 13:30:19.521 28800 TIP 436639 21421 \N \N 6048830 2025-03-20 13:32:23.115 2025-03-20 13:32:23.115 1000 FEE 436493 8037 \N \N 6048831 2025-03-20 13:32:23.115 2025-03-20 13:32:23.115 9000 TIP 436493 15200 \N \N 6048834 2025-03-20 13:32:41.101 2025-03-20 13:32:41.101 1000 FEE 436258 15560 \N \N 6048835 2025-03-20 13:32:41.101 2025-03-20 13:32:41.101 9000 TIP 436258 6463 \N \N 6048836 2025-03-20 13:32:55.603 2025-03-20 13:32:55.603 1000 FEE 436330 21523 \N \N 6048837 2025-03-20 13:32:55.603 2025-03-20 13:32:55.603 9000 TIP 436330 18225 \N \N 6048863 2025-03-20 13:41:39.533 2025-03-20 13:41:39.533 2100 FEE 436683 15367 \N \N 6048864 2025-03-20 13:41:39.533 2025-03-20 13:41:39.533 18900 TIP 436683 19535 \N \N 6249252 2025-03-19 19:23:13.309 2025-03-19 19:23:13.309 2000 BOOST 141924 19488 \N \N 6249253 2025-03-19 21:04:13.372 2025-03-19 21:04:13.372 3000 BOOST 141924 21815 \N \N 6249254 2025-03-20 07:24:14.069 2025-03-20 07:24:14.069 3000 BOOST 141924 15577 \N \N 6249255 2025-03-19 10:12:13.973 2025-03-19 10:12:13.973 1000 BOOST 141924 3990 \N \N 6249256 2025-03-20 06:30:13.453 2025-03-20 06:30:13.453 1000 BOOST 141924 1003 \N \N 6249257 2025-03-19 18:15:14.592 2025-03-19 18:15:14.592 3000 BOOST 141924 5487 \N \N 6249258 2025-03-20 12:42:12.978 2025-03-20 12:42:12.978 1000 BOOST 141924 798 \N \N 6249259 2025-03-26 04:02:14.818 2025-03-26 04:02:14.818 1000 BOOST 141924 4624 \N \N 6249260 2025-03-19 14:06:13.012 2025-03-19 14:06:13.012 1000 BOOST 141924 21766 \N \N 6249261 2025-03-19 14:35:13.236 2025-03-19 14:35:13.236 1000 BOOST 141924 19527 \N \N 6249262 2025-03-26 05:13:13.213 2025-03-26 05:13:13.213 2000 BOOST 141924 1173 \N \N 6249263 2025-03-19 04:01:13.514 2025-03-19 04:01:13.514 1000 BOOST 141924 16816 \N \N 6249264 2025-03-19 11:52:14.221 2025-03-19 11:52:14.221 1000 BOOST 141924 3656 \N \N 6249265 2025-03-20 01:24:12.906 2025-03-20 01:24:12.906 1000 BOOST 141924 8045 \N \N 6249266 2025-03-20 03:59:14.222 2025-03-20 03:59:14.222 4000 BOOST 141924 4345 \N \N 6249267 2025-03-20 12:15:12.838 2025-03-20 12:15:12.838 2000 BOOST 141924 17171 \N \N 6249268 2025-03-19 07:19:12.945 2025-03-19 07:19:12.945 1000 BOOST 141924 9169 \N \N 6249269 2025-03-19 06:14:13.456 2025-03-19 06:14:13.456 2000 BOOST 141924 7675 \N \N 6249270 2025-03-18 23:23:15.15 2025-03-18 23:23:15.15 1000 BOOST 141924 2213 \N \N 6249271 2025-03-20 06:55:13.834 2025-03-20 06:55:13.834 3000 BOOST 141924 10280 \N \N 6249272 2025-03-28 11:47:14.911 2025-03-28 11:47:14.911 4000 BOOST 141924 1825 \N \N 6249273 2025-03-26 06:51:13.692 2025-03-26 06:51:13.692 3000 BOOST 141924 11621 \N \N 6249274 2025-03-19 05:42:14 2025-03-19 05:42:14 1000 BOOST 141924 4238 \N \N 6249275 2025-03-19 23:07:13.982 2025-03-19 23:07:13.982 4000 BOOST 141924 6653 \N \N 6249276 2024-01-14 15:00:12.864 2024-01-14 15:00:12.864 1000 BOOST 109138 1620 \N \N 6249277 2025-03-26 03:42:14.629 2025-03-26 03:42:14.629 2000 BOOST 141924 10469 \N \N 6249278 2025-03-19 17:26:12.577 2025-03-19 17:26:12.577 1000 BOOST 141924 5708 \N \N 6249279 2025-03-26 05:47:12.389 2025-03-26 05:47:12.389 2000 BOOST 141924 21036 \N \N 6249280 2025-03-20 02:00:13.047 2025-03-20 02:00:13.047 3000 BOOST 141924 5499 \N \N 6249281 2025-03-20 00:14:13.665 2025-03-20 00:14:13.665 2000 BOOST 141924 15484 \N \N 6249282 2025-03-20 09:32:13.113 2025-03-20 09:32:13.113 2000 BOOST 141924 20825 \N \N 6249283 2025-03-20 02:19:13.143 2025-03-20 02:19:13.143 4000 BOOST 141924 12188 \N \N 6249284 2025-03-28 10:43:14.629 2025-03-28 10:43:14.629 2000 BOOST 141924 634 \N \N 6249285 2025-03-20 12:40:12.971 2025-03-20 12:40:12.971 3000 BOOST 141924 10944 \N \N 6249286 2025-03-29 08:55:15.017 2025-03-29 08:55:15.017 3000 BOOST 141924 18717 \N \N 6249287 2025-03-19 12:35:14.437 2025-03-19 12:35:14.437 2000 BOOST 141924 13575 \N \N 6249288 2025-03-20 05:55:13.109 2025-03-20 05:55:13.109 2000 BOOST 141924 695 \N \N 6249289 2024-01-14 14:34:12.427 2024-01-14 14:34:12.427 1000 BOOST 109138 15243 \N \N 6249290 2025-03-20 00:28:12.503 2025-03-20 00:28:12.503 3000 BOOST 141924 5829 \N \N 6249291 2025-03-19 16:30:14.1 2025-03-19 16:30:14.1 1000 BOOST 141924 2711 \N \N 6249292 2025-03-28 10:48:14.642 2025-03-28 10:48:14.642 2000 BOOST 141924 11477 \N \N 6249293 2025-03-20 09:01:12.913 2025-03-20 09:01:12.913 3000 BOOST 141924 13767 \N \N 6249294 2025-03-26 03:22:14.558 2025-03-26 03:22:14.558 5000 BOOST 141924 11866 \N \N 6249295 2025-03-18 21:30:14.304 2025-03-18 21:30:14.304 1000 BOOST 141924 18615 \N \N 6249296 2025-03-26 05:10:13.211 2025-03-26 05:10:13.211 2000 BOOST 141924 19016 \N \N 6249297 2025-03-20 09:03:12.914 2025-03-20 09:03:12.914 3000 BOOST 141924 5359 \N \N 6249298 2024-01-14 15:01:12.395 2024-01-14 15:01:12.395 1000 BOOST 109138 9200 \N \N 6249299 2025-03-28 12:25:12.583 2025-03-28 12:25:12.583 2000 BOOST 141924 9496 \N \N 6249300 2025-03-19 20:43:13.101 2025-03-19 20:43:13.101 1000 BOOST 141924 20563 \N \N 6249301 2025-03-29 08:44:12.903 2025-03-29 08:44:12.903 2000 BOOST 141924 20734 \N \N 6249302 2025-03-19 11:39:14.172 2025-03-19 11:39:14.172 1000 BOOST 141924 15728 \N \N 6249303 2025-03-26 03:36:12.786 2025-03-26 03:36:12.786 3000 BOOST 141924 736 \N \N 6249304 2025-03-20 05:23:13.328 2025-03-20 05:23:13.328 1000 BOOST 141924 18069 \N \N 6249305 2025-03-19 14:41:13.22 2025-03-19 14:41:13.22 1000 BOOST 141924 622 \N \N 6249306 2024-01-14 14:45:12.911 2024-01-14 14:45:12.911 1000 BOOST 109138 9906 \N \N 6249307 2025-03-19 22:39:13.719 2025-03-19 22:39:13.719 2000 BOOST 141924 3396 \N \N 6249308 2025-03-26 03:08:14.424 2025-03-26 03:08:14.424 4000 BOOST 141924 14472 \N \N 6249309 2025-03-28 11:06:12.452 2025-03-28 11:06:12.452 6000 BOOST 141924 13865 \N \N 6249310 2025-03-26 03:50:14.725 2025-03-26 03:50:14.725 4000 BOOST 141924 9450 \N \N 6249311 2024-01-14 14:50:12.845 2024-01-14 14:50:12.845 1000 BOOST 109142 18441 \N \N 6249312 2025-03-20 03:23:14.375 2025-03-20 03:23:14.375 2000 BOOST 141924 13517 \N \N 6249313 2025-03-18 17:23:13.658 2025-03-18 17:23:13.658 1000 BOOST 141924 6555 \N \N 6249314 2025-03-26 04:28:15.017 2025-03-26 04:28:15.017 2000 BOOST 141924 2528 \N \N 6249315 2025-03-26 05:18:13.253 2025-03-26 05:18:13.253 2000 BOOST 141924 8080 \N \N 6249316 2025-03-20 04:18:12.911 2025-03-20 04:18:12.911 2000 BOOST 141924 20479 \N \N 6249317 2025-03-20 00:53:12.588 2025-03-20 00:53:12.588 4000 BOOST 141924 17316 \N \N 6249318 2025-03-19 18:19:14.622 2025-03-19 18:19:14.622 1000 BOOST 141924 2111 \N \N 6249319 2025-03-26 06:09:13.469 2025-03-26 06:09:13.469 1000 BOOST 141924 20612 \N \N 6249320 2025-03-29 10:09:15.73 2025-03-29 10:09:15.73 1000 BOOST 141924 3353 \N \N 6249321 2025-03-20 01:11:13.801 2025-03-20 01:11:13.801 1000 BOOST 141924 1307 \N \N 6249322 2025-03-28 10:41:14.631 2025-03-28 10:41:14.631 2000 BOOST 141924 2537 \N \N 6249323 2025-03-20 03:53:14.151 2025-03-20 03:53:14.151 3000 BOOST 141924 8508 \N \N 6249324 2025-03-28 12:14:12.526 2025-03-28 12:14:12.526 4000 BOOST 141924 17094 \N \N 6249325 2025-03-28 10:27:14.496 2025-03-28 10:27:14.496 2000 BOOST 141924 1602 \N \N 6249326 2025-03-28 10:34:14.544 2025-03-28 10:34:14.544 3000 BOOST 141924 17522 \N \N 6249327 2025-03-20 02:59:13.342 2025-03-20 02:59:13.342 3000 BOOST 141924 7891 \N \N 6249328 2025-03-20 12:18:12.85 2025-03-20 12:18:12.85 4000 BOOST 141924 18731 \N \N 6249329 2025-03-20 04:46:13.076 2025-03-20 04:46:13.076 2000 BOOST 141924 5904 \N \N 6249330 2025-03-20 00:22:12.429 2025-03-20 00:22:12.429 1000 BOOST 141924 13574 \N \N 6249331 2025-03-19 06:35:14.3 2025-03-19 06:35:14.3 1000 BOOST 141924 17172 \N \N 6249332 2025-03-19 14:18:13.077 2025-03-19 14:18:13.077 1000 BOOST 141924 1713 \N \N 6249333 2025-03-20 08:49:12.641 2025-03-20 08:49:12.641 2000 BOOST 141924 13544 \N \N 6249334 2025-03-20 12:56:13.064 2025-03-20 12:56:13.064 3000 BOOST 141924 16229 \N \N 6249335 2024-01-14 15:15:12.97 2024-01-14 15:15:12.97 1000 BOOST 109142 5003 \N \N 6249336 2025-03-26 06:44:13.659 2025-03-26 06:44:13.659 1000 BOOST 141924 2061 \N \N 6249337 2025-03-19 11:23:14.041 2025-03-19 11:23:14.041 1000 BOOST 141924 5171 \N \N 6249338 2025-03-18 20:29:14 2025-03-18 20:29:14 1000 BOOST 141924 1120 \N \N 6249339 2025-03-29 20:33:14.893 2025-03-29 20:33:14.893 5000 BOOST 141924 759 \N \N 6249340 2025-03-20 12:02:13.971 2025-03-20 12:02:13.971 2000 BOOST 141924 21405 \N \N 6249341 2025-03-20 08:09:14.345 2025-03-20 08:09:14.345 5000 BOOST 141924 9362 \N \N 6249342 2025-03-29 20:55:14.931 2025-03-29 20:55:14.931 1000 BOOST 141924 1803 \N \N 6249343 2025-03-20 01:22:12.887 2025-03-20 01:22:12.887 1000 BOOST 141924 20291 \N \N 6249344 2025-03-19 17:03:14.411 2025-03-19 17:03:14.411 3000 BOOST 141924 20778 \N \N 6249345 2025-03-18 19:08:13.595 2025-03-18 19:08:13.595 1000 BOOST 141924 1145 \N \N 6249346 2025-03-28 11:28:15.333 2025-03-28 11:28:15.333 5000 BOOST 141924 10849 \N \N 6249347 2025-03-20 11:47:13.116 2025-03-20 11:47:13.116 3000 BOOST 141924 1354 \N \N 6249348 2025-03-20 02:33:13.197 2025-03-20 02:33:13.197 1000 BOOST 141924 27 \N \N 6249349 2025-03-29 08:36:12.777 2025-03-29 08:36:12.777 3000 BOOST 141924 20660 \N \N 6249350 2025-03-20 01:32:12.945 2025-03-20 01:32:12.945 2000 BOOST 141924 5427 \N \N 6249351 2025-03-20 10:16:13.313 2025-03-20 10:16:13.313 1000 BOOST 141924 20892 \N \N 6249352 2025-03-19 04:44:13.739 2025-03-19 04:44:13.739 2000 BOOST 141924 17365 \N \N 6249353 2025-03-19 02:38:12.814 2025-03-19 02:38:12.814 1000 BOOST 141924 16176 \N \N 6249354 2025-03-19 23:34:15.435 2025-03-19 23:34:15.435 3000 BOOST 141924 20715 \N \N 6249355 2025-03-26 03:07:14.408 2025-03-26 03:07:14.408 4000 BOOST 141924 13365 \N \N 6249356 2025-03-20 03:09:13.399 2025-03-20 03:09:13.399 2000 BOOST 141924 626 \N \N 6249357 2025-03-20 04:28:12.941 2025-03-20 04:28:12.941 2000 BOOST 141924 17710 \N \N 6249358 2025-03-20 11:16:13.765 2025-03-20 11:16:13.765 2000 BOOST 141924 17011 \N \N 6249359 2025-03-20 00:47:12.465 2025-03-20 00:47:12.465 2000 BOOST 141924 18309 \N \N 6249360 2025-03-20 10:20:13.325 2025-03-20 10:20:13.325 2000 BOOST 141924 15703 \N \N 6249361 2025-03-29 08:32:12.114 2025-03-29 08:32:12.114 5000 BOOST 141924 19863 \N \N 6249362 2025-03-20 02:34:13.194 2025-03-20 02:34:13.194 1000 BOOST 141924 12220 \N \N 6249363 2025-03-26 05:34:13.373 2025-03-26 05:34:13.373 3000 BOOST 141924 7097 \N \N 6249364 2025-03-26 04:29:13.015 2025-03-26 04:29:13.015 1000 BOOST 141924 16042 \N \N 6249365 2025-03-19 23:45:15.465 2025-03-19 23:45:15.465 2000 BOOST 141924 16876 \N \N 6249366 2025-03-20 10:53:14.672 2025-03-20 10:53:14.672 1000 BOOST 141924 21037 \N \N 6249367 2025-03-19 22:14:13.584 2025-03-19 22:14:13.584 1000 BOOST 141924 10283 \N \N 6249368 2025-03-20 07:45:14.185 2025-03-20 07:45:14.185 2000 BOOST 141924 9367 \N \N 6249369 2025-03-19 00:07:14.909 2025-03-19 00:07:14.909 1000 BOOST 141924 8376 \N \N 6249370 2025-03-19 17:22:14.236 2025-03-19 17:22:14.236 1000 BOOST 141924 1428 \N \N 6249371 2025-03-19 19:48:12.251 2025-03-19 19:48:12.251 3000 BOOST 141924 3686 \N \N 6249372 2025-03-19 07:07:14.438 2025-03-19 07:07:14.438 2000 BOOST 141924 16351 \N \N 6249373 2025-03-19 21:18:13.35 2025-03-19 21:18:13.35 1000 BOOST 141924 21140 \N \N 6249374 2025-03-19 02:39:12.823 2025-03-19 02:39:12.823 1000 BOOST 141924 21406 \N \N 6249375 2025-03-20 07:04:13.91 2025-03-20 07:04:13.91 3000 BOOST 141924 1985 \N \N 6249376 2024-01-14 15:08:12.953 2024-01-14 15:08:12.953 1000 BOOST 109142 2098 \N \N 6249377 2024-01-14 14:58:13.309 2024-01-14 14:58:13.309 1000 BOOST 109138 21413 \N \N 6249378 2025-03-20 06:35:13.638 2025-03-20 06:35:13.638 2000 BOOST 141924 8459 \N \N 6249379 2025-03-20 08:41:14.593 2025-03-20 08:41:14.593 2000 BOOST 141924 21791 \N \N 6249380 2025-03-26 05:46:13.375 2025-03-26 05:46:13.375 1000 BOOST 141924 14818 \N \N 6249381 2025-03-20 02:14:13.111 2025-03-20 02:14:13.111 2000 BOOST 141924 21422 \N \N 6249382 2025-03-20 12:49:13.044 2025-03-20 12:49:13.044 2000 BOOST 141924 16638 \N \N 6249383 2025-03-20 12:07:12.781 2025-03-20 12:07:12.781 2000 BOOST 141924 20157 \N \N 6249384 2025-03-20 02:45:13.272 2025-03-20 02:45:13.272 1000 BOOST 141924 2347 \N \N 6249385 2025-03-26 04:36:13.053 2025-03-26 04:36:13.053 1000 BOOST 141924 6148 \N \N 6249386 2025-03-19 19:12:15.509 2025-03-19 19:12:15.509 1000 BOOST 141924 20782 \N \N 6249387 2025-03-20 10:36:13.449 2025-03-20 10:36:13.449 1000 BOOST 141924 641 \N \N 6249388 2025-03-20 09:14:13.049 2025-03-20 09:14:13.049 3000 BOOST 141924 5425 \N \N 6249389 2025-03-19 09:29:13.534 2025-03-19 09:29:13.534 1000 BOOST 141924 20683 \N \N 6249390 2025-03-19 03:04:12.865 2025-03-19 03:04:12.865 2000 BOOST 141924 18219 \N \N 6249391 2025-03-18 16:32:13.053 2025-03-18 16:32:13.053 1000 BOOST 141924 1002 \N \N 6249392 2025-03-20 11:22:13.787 2025-03-20 11:22:13.787 1000 BOOST 141924 9537 \N \N 6249393 2025-03-20 09:36:13.166 2025-03-20 09:36:13.166 2000 BOOST 141924 14503 \N \N 6249394 2025-03-18 21:58:13.854 2025-03-18 21:58:13.854 2000 BOOST 141924 15052 \N \N 6249395 2025-03-19 03:44:12.981 2025-03-19 03:44:12.981 1000 BOOST 141924 16542 \N \N 6249396 2025-03-20 09:46:13.136 2025-03-20 09:46:13.136 1000 BOOST 141924 15560 \N \N 6249397 2025-03-28 10:38:15.564 2025-03-28 10:38:15.564 3000 BOOST 141924 14295 \N \N 6249398 2025-03-20 06:25:13.418 2025-03-20 06:25:13.418 3000 BOOST 141924 21798 \N \N 6249399 2024-01-14 14:48:12.881 2024-01-14 14:48:12.881 1000 BOOST 109138 1825 \N \N 6249400 2025-03-20 07:52:14.224 2025-03-20 07:52:14.224 1000 BOOST 141924 8448 \N \N 6249401 2025-03-26 04:56:15.488 2025-03-26 04:56:15.488 3000 BOOST 141924 1429 \N \N 6249402 2025-03-28 11:07:14.757 2025-03-28 11:07:14.757 3000 BOOST 141924 14910 \N \N 6249403 2025-03-26 04:42:13.092 2025-03-26 04:42:13.092 2000 BOOST 141924 9336 \N \N 6249404 2025-03-29 08:33:12.834 2025-03-29 08:33:12.834 1000 BOOST 141924 4487 \N \N 6249405 2025-03-19 18:03:13.805 2025-03-19 18:03:13.805 3000 BOOST 141924 6616 \N \N 6249406 2025-03-20 11:54:14.367 2025-03-20 11:54:14.367 4000 BOOST 141924 730 \N \N 6249407 2025-03-19 07:39:12.795 2025-03-19 07:39:12.795 1000 BOOST 141924 1705 \N \N 6249408 2025-03-26 04:24:14.99 2025-03-26 04:24:14.99 3000 BOOST 141924 997 \N \N 6249409 2025-03-18 20:33:14.045 2025-03-18 20:33:14.045 1000 BOOST 141924 21768 \N \N 6249410 2025-03-20 05:45:13.003 2025-03-20 05:45:13.003 3000 BOOST 141924 4570 \N \N 6249411 2025-03-20 03:58:14.205 2025-03-20 03:58:14.205 3000 BOOST 141924 20588 \N \N 6249412 2025-03-19 07:40:12.795 2025-03-19 07:40:12.795 1000 BOOST 141924 627 \N \N 6249413 2025-03-20 03:39:14.069 2025-03-20 03:39:14.069 1000 BOOST 141924 998 \N \N 6249414 2025-03-19 21:56:13.479 2025-03-19 21:56:13.479 2000 BOOST 141924 20190 \N \N 6249415 2025-03-19 09:53:13.421 2025-03-19 09:53:13.421 1000 BOOST 141924 17673 \N \N 6249416 2025-03-26 03:05:12.677 2025-03-26 03:05:12.677 5000 BOOST 141924 1352 \N \N 6249417 2025-03-20 09:56:13.192 2025-03-20 09:56:13.192 1000 BOOST 141924 16948 \N \N 6249418 2025-03-20 03:19:14.615 2025-03-20 03:19:14.615 2000 BOOST 141924 20713 \N \N 6249419 2024-01-14 15:01:12.385 2024-01-14 15:01:12.385 1000 BOOST 109142 12516 \N \N 6249420 2024-01-14 14:46:12.635 2024-01-14 14:46:12.635 1000 BOOST 109138 909 \N \N 6249421 2025-03-26 02:58:14.46 2025-03-26 02:58:14.46 3000 BOOST 141924 12921 \N \N 6249422 2025-03-20 01:17:12.869 2025-03-20 01:17:12.869 1000 BOOST 141924 16724 \N \N 6249423 2025-03-26 05:49:12.417 2025-03-26 05:49:12.417 3000 BOOST 141924 1534 \N \N 6249424 2025-03-19 23:15:14.013 2025-03-19 23:15:14.013 2000 BOOST 141924 6164 \N \N 6249425 2025-03-19 04:35:13.725 2025-03-19 04:35:13.725 2000 BOOST 141924 15239 \N \N 6249426 2025-03-19 21:53:13.469 2025-03-19 21:53:13.469 1000 BOOST 141924 12566 \N \N 6249427 2025-03-20 05:39:12.888 2025-03-20 05:39:12.888 4000 BOOST 141924 14404 \N \N 6249428 2025-03-18 16:27:14.156 2025-03-18 16:27:14.156 1000 BOOST 141924 21070 \N \N 6249429 2025-03-26 06:05:13.454 2025-03-26 06:05:13.454 3000 BOOST 141924 1515 \N \N 6249430 2025-03-26 03:16:14.525 2025-03-26 03:16:14.525 4000 BOOST 141924 11819 \N \N 6249431 2025-03-19 05:13:13.875 2025-03-19 05:13:13.875 3000 BOOST 141924 12609 \N \N 6249432 2025-03-20 11:36:13.873 2025-03-20 11:36:13.873 2000 BOOST 141924 12049 \N \N 6249433 2025-03-20 11:12:13.764 2025-03-20 11:12:13.764 4000 BOOST 141924 1584 \N \N 6249434 2025-03-19 05:46:14.04 2025-03-19 05:46:14.04 2000 BOOST 141924 15119 \N \N 6249435 2024-01-14 14:54:12.793 2024-01-14 14:54:12.793 1000 BOOST 109138 919 \N \N 6249436 2025-03-19 23:23:14.044 2025-03-19 23:23:14.044 2000 BOOST 141924 20840 \N \N 6249437 2025-03-19 17:56:13.724 2025-03-19 17:56:13.724 2000 BOOST 141924 20979 \N \N 6249438 2025-03-19 00:43:13.554 2025-03-19 00:43:13.554 1000 BOOST 141924 19812 \N \N 6249439 2025-03-26 04:17:15.129 2025-03-26 04:17:15.129 2000 BOOST 141924 9378 \N \N 6249440 2025-03-20 04:47:13.079 2025-03-20 04:47:13.079 2000 BOOST 141924 7978 \N \N 6249441 2025-03-20 03:16:13.42 2025-03-20 03:16:13.42 2000 BOOST 141924 2022 \N \N 6249442 2025-03-19 17:35:13.112 2025-03-19 17:35:13.112 2000 BOOST 141924 18528 \N \N 6249443 2025-03-19 16:53:14.32 2025-03-19 16:53:14.32 2000 BOOST 141924 5637 \N \N 6249444 2025-03-19 22:00:13.508 2025-03-19 22:00:13.508 1000 BOOST 141924 1717 \N \N 6249445 2025-03-19 00:27:13.014 2025-03-19 00:27:13.014 1000 BOOST 141924 7659 \N \N 6249446 2025-03-20 04:14:12.87 2025-03-20 04:14:12.87 2000 BOOST 141924 17526 \N \N 6249447 2025-03-18 19:51:13.805 2025-03-18 19:51:13.805 1000 BOOST 141924 1136 \N \N 6249448 2025-03-20 13:04:13.117 2025-03-20 13:04:13.117 1000 BOOST 141924 8945 \N \N 6249449 2025-03-20 12:36:12.957 2025-03-20 12:36:12.957 1000 BOOST 141924 917 \N \N 6249450 2025-03-19 13:09:13.177 2025-03-19 13:09:13.177 1000 BOOST 141924 13177 \N \N 6249451 2025-03-20 10:42:13.48 2025-03-20 10:42:13.48 2000 BOOST 141924 14990 \N \N 6249452 2025-03-20 13:05:13.127 2025-03-20 13:05:13.127 2000 BOOST 141924 20755 \N \N 6249453 2025-03-28 11:42:16.378 2025-03-28 11:42:16.378 4000 BOOST 141924 4062 \N \N 6249454 2024-01-14 15:13:12.406 2024-01-14 15:13:12.406 1000 BOOST 109138 8541 \N \N 6249455 2024-01-14 14:32:12.457 2024-01-14 14:32:12.457 1000 BOOST 109142 10719 \N \N 6249456 2025-03-20 04:56:13.152 2025-03-20 04:56:13.152 1000 BOOST 141924 10519 \N \N 6249457 2025-03-29 08:47:12.918 2025-03-29 08:47:12.918 6000 BOOST 141924 16788 \N \N 6249458 2025-03-19 12:06:14.245 2025-03-19 12:06:14.245 1000 BOOST 141924 621 \N \N 6249459 2024-01-14 14:31:14.1 2024-01-14 14:31:14.1 1000 BOOST 109142 4798 \N \N 6249460 2025-03-20 09:22:13.097 2025-03-20 09:22:13.097 2000 BOOST 141924 13753 \N \N 6249461 2025-03-26 05:08:13.211 2025-03-26 05:08:13.211 3000 BOOST 141924 12291 \N \N 6249462 2025-03-19 09:21:13.456 2025-03-19 09:21:13.456 1000 BOOST 141924 16684 \N \N 6249463 2025-03-20 00:15:13.691 2025-03-20 00:15:13.691 1000 BOOST 141924 20669 \N \N 6249464 2025-03-19 23:32:15.215 2025-03-19 23:32:15.215 2000 BOOST 141924 15226 \N \N 6249465 2025-03-19 18:35:15.26 2025-03-19 18:35:15.26 3000 BOOST 141924 20655 \N \N 6249466 2025-03-19 20:20:12.651 2025-03-19 20:20:12.651 1000 BOOST 141924 2519 \N \N 6249467 2025-03-18 16:45:13.206 2025-03-18 16:45:13.206 1000 BOOST 141924 964 \N \N 6249468 2025-03-26 02:50:14.186 2025-03-26 02:50:14.186 2000 BOOST 141924 1261 \N \N 6249469 2025-03-19 08:58:13.132 2025-03-19 08:58:13.132 1000 BOOST 141924 20657 \N \N 6249470 2025-03-20 11:05:13.719 2025-03-20 11:05:13.719 4000 BOOST 141924 9906 \N \N 6249471 2025-03-19 05:59:13.35 2025-03-19 05:59:13.35 1000 BOOST 141924 4225 \N \N 6249472 2025-03-18 17:04:13.396 2025-03-18 17:04:13.396 1000 BOOST 141924 5942 \N \N 6249473 2025-03-29 09:06:15.218 2025-03-29 09:06:15.218 3000 BOOST 141924 17693 \N \N 6249474 2025-03-19 18:30:15.234 2025-03-19 18:30:15.234 2000 BOOST 141924 4538 \N \N 6249475 2025-03-20 00:17:13.697 2025-03-20 00:17:13.697 1000 BOOST 141924 15146 \N \N 6249476 2025-03-20 01:35:12.954 2025-03-20 01:35:12.954 2000 BOOST 141924 618 \N \N 6249477 2025-03-18 19:31:13.698 2025-03-18 19:31:13.698 1000 BOOST 141924 20409 \N \N 6249478 2025-03-20 08:33:14.524 2025-03-20 08:33:14.524 1000 BOOST 141924 8713 \N \N 6249479 2025-03-19 05:54:14.078 2025-03-19 05:54:14.078 2000 BOOST 141924 21218 \N \N 6249480 2025-03-20 05:02:13.213 2025-03-20 05:02:13.213 2000 BOOST 141924 20377 \N \N 6249481 2025-03-26 04:31:13.026 2025-03-26 04:31:13.026 4000 BOOST 141924 782 \N \N 6249482 2025-03-26 04:51:15.179 2025-03-26 04:51:15.179 2000 BOOST 141924 20412 \N \N 6249483 2025-03-19 12:10:14.263 2025-03-19 12:10:14.263 2000 BOOST 141924 13553 \N \N 6249484 2025-03-28 11:25:16.276 2025-03-28 11:25:16.276 1000 BOOST 141924 19581 \N \N 6249485 2025-03-19 13:10:12.681 2025-03-19 13:10:12.681 2000 BOOST 141924 21391 \N \N 6249486 2025-03-18 19:20:13.646 2025-03-18 19:20:13.646 1000 BOOST 141924 9159 \N \N 6249487 2025-03-20 10:04:13.236 2025-03-20 10:04:13.236 2000 BOOST 141924 837 \N \N 6249488 2025-03-18 19:29:13.684 2025-03-18 19:29:13.684 1000 BOOST 141924 12656 \N \N 6249489 2025-03-19 08:06:12.982 2025-03-19 08:06:12.982 1000 BOOST 141924 17109 \N \N 6249490 2025-03-26 06:16:13.522 2025-03-26 06:16:13.522 4000 BOOST 141924 2583 \N \N 6249491 2025-03-20 02:08:13.037 2025-03-20 02:08:13.037 1000 BOOST 141924 7510 \N \N 6249492 2025-03-26 04:58:15.179 2025-03-26 04:58:15.179 2000 BOOST 141924 17552 \N \N 6249493 2025-03-20 10:19:13.319 2025-03-20 10:19:13.319 2000 BOOST 141924 9669 \N \N 6249494 2025-03-20 06:18:13.645 2025-03-20 06:18:13.645 3000 BOOST 141924 17798 \N \N 6249495 2025-03-19 13:30:12.637 2025-03-19 13:30:12.637 2000 BOOST 141924 13361 \N \N 6249496 2025-03-19 20:57:13.233 2025-03-19 20:57:13.233 4000 BOOST 141924 19673 \N \N 6249497 2025-03-26 06:25:13.609 2025-03-26 06:25:13.609 4000 BOOST 141924 882 \N \N 6249498 2025-03-19 02:48:13.072 2025-03-19 02:48:13.072 2000 BOOST 141924 21455 \N \N 6249499 2025-03-20 08:38:14.541 2025-03-20 08:38:14.541 5000 BOOST 141924 2773 \N \N 6249500 2025-03-26 03:32:14.458 2025-03-26 03:32:14.458 2000 BOOST 141924 12911 \N \N 6249501 2025-03-28 11:37:12.68 2025-03-28 11:37:12.68 2000 BOOST 141924 2789 \N \N 6249502 2025-03-19 10:03:13.909 2025-03-19 10:03:13.909 2000 BOOST 141924 17714 \N \N 6249503 2025-03-20 00:48:12.714 2025-03-20 00:48:12.714 3000 BOOST 141924 3544 \N \N 6249504 2025-03-20 03:44:14.13 2025-03-20 03:44:14.13 1000 BOOST 141924 19906 \N \N 6249505 2025-03-19 09:20:13.432 2025-03-19 09:20:13.432 2000 BOOST 141924 17331 \N \N 6249506 2025-03-20 04:30:12.947 2025-03-20 04:30:12.947 3000 BOOST 141924 21501 \N \N 6249507 2025-03-26 03:00:12.642 2025-03-26 03:00:12.642 4000 BOOST 141924 9330 \N \N 6249508 2025-03-18 16:58:13.316 2025-03-18 16:58:13.316 1000 BOOST 141924 2195 \N \N 6249509 2025-03-29 08:59:15.077 2025-03-29 08:59:15.077 3000 BOOST 141924 3461 \N \N 6249510 2025-03-19 09:30:13.54 2025-03-19 09:30:13.54 2000 BOOST 141924 11561 \N \N 6249511 2025-03-19 04:10:13.52 2025-03-19 04:10:13.52 1000 BOOST 141924 11144 \N \N 6249512 2025-03-26 06:06:13.447 2025-03-26 06:06:13.447 4000 BOOST 141924 10102 \N \N 6249513 2025-03-26 04:50:15.467 2025-03-26 04:50:15.467 3000 BOOST 141924 5293 \N \N 6249514 2025-03-28 12:20:12.561 2025-03-28 12:20:12.561 1000 BOOST 141924 16660 \N \N 6249515 2025-03-20 02:36:13.189 2025-03-20 02:36:13.189 2000 BOOST 141924 7913 \N \N 6249516 2025-03-26 06:08:13.473 2025-03-26 06:08:13.473 1000 BOOST 141924 10981 \N \N 6249517 2025-03-19 20:53:13.205 2025-03-19 20:53:13.205 2000 BOOST 141924 21357 \N \N 6249518 2024-01-14 14:56:13.496 2024-01-14 14:56:13.496 1000 BOOST 109138 4984 \N \N 6249519 2025-03-20 11:55:12.38 2025-03-20 11:55:12.38 2000 BOOST 141924 18011 \N \N 6249520 2025-03-19 23:57:15.546 2025-03-19 23:57:15.546 2000 BOOST 141924 21145 \N \N 6249521 2025-03-20 03:03:13.385 2025-03-20 03:03:13.385 1000 BOOST 141924 1738 \N \N 6249522 2025-03-19 09:47:13.718 2025-03-19 09:47:13.718 1000 BOOST 141924 2543 \N \N 6249523 2025-03-20 03:13:13.418 2025-03-20 03:13:13.418 6000 BOOST 141924 14370 \N \N 6249524 2025-03-20 05:26:13.357 2025-03-20 05:26:13.357 2000 BOOST 141924 981 \N \N 6249525 2025-03-26 04:39:15.324 2025-03-26 04:39:15.324 3000 BOOST 141924 20019 \N \N 6249526 2025-03-19 22:07:13.548 2025-03-19 22:07:13.548 4000 BOOST 141924 889 \N \N 6249527 2024-01-14 15:06:12.359 2024-01-14 15:06:12.359 1000 BOOST 109142 7960 \N \N 6249528 2025-03-20 08:55:12.877 2025-03-20 08:55:12.877 4000 BOOST 141924 7979 \N \N 6249529 2025-03-28 11:04:12.51 2025-03-28 11:04:12.51 3000 BOOST 141924 21202 \N \N 6249530 2025-03-26 06:32:13.633 2025-03-26 06:32:13.633 3000 BOOST 141924 9349 \N \N 6249531 2025-03-20 10:57:13.68 2025-03-20 10:57:13.68 2000 BOOST 141924 12965 \N \N 6249532 2025-03-20 07:08:13.936 2025-03-20 07:08:13.936 2000 BOOST 141924 15408 \N \N 6249533 2025-03-19 17:20:13.033 2025-03-19 17:20:13.033 2000 BOOST 141924 17984 \N \N 6249534 2025-03-28 10:23:15.453 2025-03-28 10:23:15.453 2000 BOOST 141924 20826 \N \N 6249535 2025-03-28 11:50:12.443 2025-03-28 11:50:12.443 5000 BOOST 141924 999 \N \N 6249536 2025-03-19 19:41:15.628 2025-03-19 19:41:15.628 1000 BOOST 141924 13038 \N \N 6249537 2025-03-28 11:41:12.698 2025-03-28 11:41:12.698 2000 BOOST 141924 14688 \N \N 6249538 2025-03-28 11:00:12.53 2025-03-28 11:00:12.53 3000 BOOST 141924 15474 \N \N 6249539 2025-03-20 01:46:13 2025-03-20 01:46:13 3000 BOOST 141924 717 \N \N 6249540 2025-03-20 06:50:13.787 2025-03-20 06:50:13.787 4000 BOOST 141924 18923 \N \N 6249541 2025-03-20 06:24:13.423 2025-03-20 06:24:13.423 4000 BOOST 141924 7903 \N \N 6249542 2025-03-19 00:38:13.052 2025-03-19 00:38:13.052 1000 BOOST 141924 16789 \N \N 6249543 2025-03-19 22:40:13.728 2025-03-19 22:40:13.728 3000 BOOST 141924 21430 \N \N 6249544 2024-01-14 15:10:13.098 2024-01-14 15:10:13.098 1000 BOOST 109142 21408 \N \N 6249545 2025-03-20 02:24:13.173 2025-03-20 02:24:13.173 1000 BOOST 141924 5444 \N \N 6249546 2025-03-28 12:26:12.591 2025-03-28 12:26:12.591 2000 BOOST 141924 828 \N \N 6249547 2025-03-20 00:25:13.756 2025-03-20 00:25:13.756 1000 BOOST 141924 2942 \N \N 6249548 2025-03-19 09:28:13.531 2025-03-19 09:28:13.531 1000 BOOST 141924 12222 \N \N 6249549 2025-03-18 17:42:15.05 2025-03-18 17:42:15.05 1000 BOOST 141924 20922 \N \N 6249550 2025-03-19 01:12:12.206 2025-03-19 01:12:12.206 1000 BOOST 141924 9705 \N \N 6249551 2025-03-19 11:34:14.177 2025-03-19 11:34:14.177 2000 BOOST 141924 20939 \N \N 6249552 2025-03-19 09:58:13.968 2025-03-19 09:58:13.968 3000 BOOST 141924 2196 \N \N 6249553 2025-03-18 18:26:14.123 2025-03-18 18:26:14.123 1000 BOOST 141924 13798 \N \N 6249554 2024-01-14 15:05:13.164 2024-01-14 15:05:13.164 1000 BOOST 109142 19943 \N \N 6249555 2025-03-26 06:02:12.585 2025-03-26 06:02:12.585 1000 BOOST 141924 1833 \N \N 6249556 2025-03-26 05:15:13.238 2025-03-26 05:15:13.238 4000 BOOST 141924 15409 \N \N 6249557 2025-03-19 03:50:13.431 2025-03-19 03:50:13.431 1000 BOOST 141924 886 \N \N 6249558 2025-03-18 19:48:13.764 2025-03-18 19:48:13.764 1000 BOOST 141924 13327 \N \N 6249559 2025-03-19 20:41:13.193 2025-03-19 20:41:13.193 3000 BOOST 141924 11164 \N \N 6249560 2025-03-19 02:58:12.795 2025-03-19 02:58:12.795 2000 BOOST 141924 1326 \N \N 6249561 2025-03-18 18:33:14.216 2025-03-18 18:33:14.216 1000 BOOST 141924 17050 \N \N 6249562 2024-01-14 14:49:12.761 2024-01-14 14:49:12.761 1000 BOOST 109142 940 \N \N 6249563 2025-03-20 09:40:13.237 2025-03-20 09:40:13.237 3000 BOOST 141924 10063 \N \N 6249564 2025-03-20 11:56:12.391 2025-03-20 11:56:12.391 1000 BOOST 141924 738 \N \N 6249565 2025-03-20 09:42:13.218 2025-03-20 09:42:13.218 3000 BOOST 141924 974 \N \N 6249566 2025-03-20 08:26:14.478 2025-03-20 08:26:14.478 2000 BOOST 141924 21091 \N \N 6249567 2025-03-20 02:54:13.32 2025-03-20 02:54:13.32 1000 BOOST 141924 1236 \N \N 6249568 2025-03-28 10:19:14.471 2025-03-28 10:19:14.471 5000 BOOST 141924 746 \N \N 6249569 2025-03-19 21:27:13.374 2025-03-19 21:27:13.374 1000 BOOST 141924 14385 \N \N 6249570 2025-03-20 03:57:14.201 2025-03-20 03:57:14.201 2000 BOOST 141924 21051 \N \N 6249571 2025-03-19 06:42:14.324 2025-03-19 06:42:14.324 1000 BOOST 141924 1761 \N \N 6249572 2024-01-14 15:17:12.997 2024-01-14 15:17:12.997 1000 BOOST 109142 21022 \N \N 6249573 2025-03-20 05:08:13.238 2025-03-20 05:08:13.238 1000 BOOST 141924 13759 \N \N 6249574 2025-03-20 03:47:14.117 2025-03-20 03:47:14.117 2000 BOOST 141924 9476 \N \N 6249575 2025-03-19 14:56:13.328 2025-03-19 14:56:13.328 1000 BOOST 141924 3478 \N \N 6249576 2025-03-19 03:33:12.953 2025-03-19 03:33:12.953 1000 BOOST 141924 985 \N \N 6249577 2025-03-26 05:22:13.285 2025-03-26 05:22:13.285 5000 BOOST 141924 4027 \N \N 6249578 2025-03-26 04:30:15.041 2025-03-26 04:30:15.041 1000 BOOST 141924 14152 \N \N 6249579 2025-03-20 05:10:13.239 2025-03-20 05:10:13.239 2000 BOOST 141924 20981 \N \N 6249580 2025-03-19 21:23:13.354 2025-03-19 21:23:13.354 3000 BOOST 141924 4064 \N \N 6249581 2025-03-20 02:30:13.175 2025-03-20 02:30:13.175 1000 BOOST 141924 1823 \N \N 6249582 2025-03-26 04:22:16.892 2025-03-26 04:22:16.892 2000 BOOST 141924 769 \N \N 6249583 2025-03-19 17:58:13.738 2025-03-19 17:58:13.738 2000 BOOST 141924 17741 \N \N 6249584 2025-03-26 02:52:15.884 2025-03-26 02:52:15.884 3000 BOOST 141924 3411 \N \N 6249585 2025-03-19 12:17:14.374 2025-03-19 12:17:14.374 1000 BOOST 141924 2529 \N \N 6249586 2025-03-19 03:28:12.916 2025-03-19 03:28:12.916 1000 BOOST 141924 19087 \N \N 6249587 2025-03-19 12:07:14.265 2025-03-19 12:07:14.265 1000 BOOST 141924 16667 \N \N 6249588 2025-03-19 02:03:14.326 2025-03-19 02:03:14.326 1000 BOOST 141924 17157 \N \N 6249589 2025-03-19 22:49:13.775 2025-03-19 22:49:13.775 1000 BOOST 141924 1245 \N \N 6249590 2025-03-19 09:37:13.612 2025-03-19 09:37:13.612 5000 BOOST 141924 20353 \N \N 6249591 2025-03-19 14:28:13.18 2025-03-19 14:28:13.18 2000 BOOST 141924 19469 \N \N 6249592 2025-03-19 20:47:13.146 2025-03-19 20:47:13.146 3000 BOOST 141924 1647 \N \N 6249593 2024-01-14 15:09:13.213 2024-01-14 15:09:13.213 1000 BOOST 109138 21062 \N \N 6249594 2025-03-18 19:02:13.569 2025-03-18 19:02:13.569 1000 BOOST 141924 3417 \N \N 6249595 2025-03-28 12:08:12.512 2025-03-28 12:08:12.512 3000 BOOST 141924 12721 \N \N 6249596 2025-03-26 02:55:14.233 2025-03-26 02:55:14.233 2000 BOOST 141924 13878 \N \N 6249597 2025-03-18 16:31:13.045 2025-03-18 16:31:13.045 1000 BOOST 141924 14465 \N \N 6249598 2025-03-19 22:45:13.744 2025-03-19 22:45:13.744 1000 BOOST 141924 16289 \N \N 6249599 2025-03-19 21:51:13.467 2025-03-19 21:51:13.467 1000 BOOST 141924 9418 \N \N 6249600 2025-03-26 06:18:13.565 2025-03-26 06:18:13.565 4000 BOOST 141924 4115 \N \N 6249601 2025-03-18 17:02:13.346 2025-03-18 17:02:13.346 1000 BOOST 141924 20799 \N \N 6249602 2025-03-20 02:50:13.287 2025-03-20 02:50:13.287 2000 BOOST 141924 1030 \N \N 6249603 2025-03-19 01:17:12.906 2025-03-19 01:17:12.906 1000 BOOST 141924 20757 \N \N 6249604 2024-01-14 15:12:12.924 2024-01-14 15:12:12.924 1000 BOOST 109138 1272 \N \N 6249605 2025-03-20 00:08:13.623 2025-03-20 00:08:13.623 2000 BOOST 141924 9200 \N \N 6249606 2025-03-19 15:54:13.909 2025-03-19 15:54:13.909 1000 BOOST 141924 4048 \N \N 6249607 2025-03-19 06:37:12.639 2025-03-19 06:37:12.639 2000 BOOST 141924 1090 \N \N 6249608 2025-03-20 05:24:13.338 2025-03-20 05:24:13.338 3000 BOOST 141924 1801 \N \N 6249609 2025-03-28 12:19:12.555 2025-03-28 12:19:12.555 4000 BOOST 141924 705 \N \N 6249610 2024-01-14 15:00:12.801 2024-01-14 15:00:12.801 1000 BOOST 109142 8841 \N \N 6249611 2025-03-19 19:30:15.488 2025-03-19 19:30:15.488 4000 BOOST 141924 17046 \N \N 6249612 2025-03-28 10:51:12.365 2025-03-28 10:51:12.365 4000 BOOST 141924 20370 \N \N 6249613 2025-03-18 16:39:13.144 2025-03-18 16:39:13.144 1000 BOOST 141924 703 \N \N 6249614 2024-01-14 15:06:12.292 2024-01-14 15:06:12.292 1000 BOOST 109138 16834 \N \N 6249615 2025-03-26 02:29:14.079 2025-03-26 02:29:14.079 2000 BOOST 141924 16536 \N \N 6249616 2025-03-20 02:29:13.156 2025-03-20 02:29:13.156 2000 BOOST 141924 10484 \N \N 6249617 2025-03-20 08:36:14.531 2025-03-20 08:36:14.531 2000 BOOST 141924 5036 \N \N 6249618 2025-03-28 10:56:12.404 2025-03-28 10:56:12.404 3000 BOOST 141924 2329 \N \N 6249619 2025-03-19 04:22:13.641 2025-03-19 04:22:13.641 3000 BOOST 141924 21020 \N \N 6249620 2025-03-19 23:36:15.399 2025-03-19 23:36:15.399 3000 BOOST 141924 20701 \N \N 6249621 2025-03-19 03:02:12.823 2025-03-19 03:02:12.823 1000 BOOST 141924 18101 \N \N 6249622 2025-03-20 03:11:13.425 2025-03-20 03:11:13.425 2000 BOOST 141924 20745 \N \N 6249623 2025-03-20 12:53:13.049 2025-03-20 12:53:13.049 3000 BOOST 141924 21373 \N \N 6249624 2025-03-19 01:38:13.271 2025-03-19 01:38:13.271 1000 BOOST 141924 629 \N \N 6249625 2025-03-19 20:33:12.737 2025-03-19 20:33:12.737 2000 BOOST 141924 17415 \N \N 6249626 2025-03-20 09:34:13.153 2025-03-20 09:34:13.153 1000 BOOST 141924 894 \N \N 6249627 2025-03-20 08:06:14.315 2025-03-20 08:06:14.315 3000 BOOST 141924 3518 \N \N 6249628 2025-03-26 06:43:13.672 2025-03-26 06:43:13.672 2000 BOOST 141924 17991 \N \N 6249629 2024-01-14 14:59:13.285 2024-01-14 14:59:13.285 1000 BOOST 109142 10342 \N \N 6249630 2025-03-19 19:57:16.506 2025-03-19 19:57:16.506 2000 BOOST 141924 18116 \N \N 6249631 2025-03-28 12:23:12.565 2025-03-28 12:23:12.565 8000 BOOST 141924 21047 \N \N 6249632 2025-03-20 07:20:14.04 2025-03-20 07:20:14.04 1000 BOOST 141924 21279 \N \N 6249633 2025-03-20 07:46:14.198 2025-03-20 07:46:14.198 2000 BOOST 141924 6537 \N \N 6249634 2025-03-20 02:57:13.348 2025-03-20 02:57:13.348 1000 BOOST 141924 21575 \N \N 6249635 2025-03-19 01:37:13.603 2025-03-19 01:37:13.603 2000 BOOST 141924 18241 \N \N 6249636 2025-03-19 18:27:15.033 2025-03-19 18:27:15.033 2000 BOOST 141924 18306 \N \N 6249637 2025-03-19 15:33:13.687 2025-03-19 15:33:13.687 4000 BOOST 141924 9341 \N \N 6249638 2025-03-19 05:11:13.856 2025-03-19 05:11:13.856 1000 BOOST 141924 5495 \N \N 6249639 2025-03-20 01:50:13.007 2025-03-20 01:50:13.007 1000 BOOST 141924 20781 \N \N 6249640 2025-03-19 20:25:12.715 2025-03-19 20:25:12.715 3000 BOOST 141924 667 \N \N 6249641 2025-03-19 09:48:13.711 2025-03-19 09:48:13.711 1000 BOOST 141924 9611 \N \N 6249642 2025-03-19 01:25:13.555 2025-03-19 01:25:13.555 1000 BOOST 141924 7772 \N \N 6249643 2025-03-20 06:36:13.635 2025-03-20 06:36:13.635 4000 BOOST 141924 18618 \N \N 6249644 2025-03-26 05:31:13.31 2025-03-26 05:31:13.31 3000 BOOST 141924 8954 \N \N 6249645 2025-03-20 01:29:12.946 2025-03-20 01:29:12.946 4000 BOOST 141924 2098 \N \N 6249646 2025-03-19 14:15:13.066 2025-03-19 14:15:13.066 1000 BOOST 141924 20852 \N \N 6249647 2025-03-20 11:03:13.708 2025-03-20 11:03:13.708 2000 BOOST 141924 2000 \N \N 6249648 2025-03-26 02:54:14.209 2025-03-26 02:54:14.209 1000 BOOST 141924 5725 \N \N 6249649 2025-03-20 03:40:14.052 2025-03-20 03:40:14.052 3000 BOOST 141924 21383 \N \N 6249650 2025-03-29 08:54:12.967 2025-03-29 08:54:12.967 3000 BOOST 141924 19759 \N \N 6249651 2025-03-18 18:46:13.52 2025-03-18 18:46:13.52 1000 BOOST 141924 11992 \N \N 6249652 2025-03-20 10:03:13.329 2025-03-20 10:03:13.329 1000 BOOST 141924 11527 \N \N 6249653 2025-03-20 12:11:12.81 2025-03-20 12:11:12.81 2000 BOOST 141924 17014 \N \N 6249654 2025-03-19 05:33:13.948 2025-03-19 05:33:13.948 2000 BOOST 141924 656 \N \N 6249655 2025-03-20 12:25:12.888 2025-03-20 12:25:12.888 3000 BOOST 141924 21833 \N \N 6249656 2025-03-26 05:36:13.364 2025-03-26 05:36:13.364 2000 BOOST 141924 21734 \N \N 6249657 2025-03-19 16:09:13.94 2025-03-19 16:09:13.94 1000 BOOST 141924 13169 \N \N 6249658 2025-03-28 10:55:14.69 2025-03-28 10:55:14.69 4000 BOOST 141924 822 \N \N 6249659 2025-03-26 04:44:13.094 2025-03-26 04:44:13.094 2000 BOOST 141924 11999 \N \N 6249660 2025-03-19 22:59:13.833 2025-03-19 22:59:13.833 1000 BOOST 141924 9833 \N \N 6249661 2025-03-20 06:01:13.559 2025-03-20 06:01:13.559 3000 BOOST 141924 6430 \N \N 6249662 2025-03-19 16:24:14.089 2025-03-19 16:24:14.089 3000 BOOST 141924 15719 \N \N 6249663 2025-03-20 01:34:12.956 2025-03-20 01:34:12.956 2000 BOOST 141924 657 \N \N 6249664 2025-03-20 03:29:13.692 2025-03-20 03:29:13.692 3000 BOOST 141924 8269 \N \N 6249665 2025-03-29 20:53:14.927 2025-03-29 20:53:14.927 4000 BOOST 141924 19777 \N \N 6249666 2025-03-20 05:56:13.545 2025-03-20 05:56:13.545 1000 BOOST 141924 5129 \N \N 6249667 2025-03-20 09:17:13.073 2025-03-20 09:17:13.073 3000 BOOST 141924 2156 \N \N 6249668 2025-03-20 10:49:13.546 2025-03-20 10:49:13.546 2000 BOOST 141924 1890 \N \N 6249669 2025-03-18 21:57:13.846 2025-03-18 21:57:13.846 1000 BOOST 141924 13843 \N \N 6249670 2025-03-26 04:26:15.012 2025-03-26 04:26:15.012 1000 BOOST 141924 11829 \N \N 6249671 2025-03-20 09:33:13.135 2025-03-20 09:33:13.135 2000 BOOST 141924 9099 \N \N 6249672 2025-03-26 06:30:13.616 2025-03-26 06:30:13.616 3000 BOOST 141924 671 \N \N 6249673 2025-03-19 08:51:12.849 2025-03-19 08:51:12.849 2000 BOOST 141924 20596 \N \N 6249674 2025-03-19 09:26:13.524 2025-03-19 09:26:13.524 1000 BOOST 141924 21083 \N \N 6249675 2025-03-19 07:16:12.951 2025-03-19 07:16:12.951 1000 BOOST 141924 16753 \N \N 6249676 2025-03-18 21:24:14.238 2025-03-18 21:24:14.238 1000 BOOST 141924 987 \N \N 6249677 2025-03-20 04:49:13.105 2025-03-20 04:49:13.105 2000 BOOST 141924 18772 \N \N 6249678 2025-03-29 09:08:15.216 2025-03-29 09:08:15.216 1000 BOOST 141924 2016 \N \N 6249679 2025-03-20 11:49:12.335 2025-03-20 11:49:12.335 2000 BOOST 141924 2593 \N \N 6249680 2025-03-20 09:57:13.22 2025-03-20 09:57:13.22 2000 BOOST 141924 18269 \N \N 6249681 2025-03-29 08:34:12.775 2025-03-29 08:34:12.775 1000 BOOST 141924 20829 \N \N 6249682 2025-03-28 11:30:14.88 2025-03-28 11:30:14.88 5000 BOOST 141924 2088 \N \N 6249683 2025-03-20 11:20:13.808 2025-03-20 11:20:13.808 1000 BOOST 141924 11288 \N \N 6249684 2025-03-20 04:23:12.902 2025-03-20 04:23:12.902 3000 BOOST 141924 2330 \N \N 6249685 2025-03-20 13:02:13.1 2025-03-20 13:02:13.1 5000 BOOST 141924 14785 \N \N 6249686 2025-03-18 23:39:14.717 2025-03-18 23:39:14.717 1000 BOOST 141924 10342 \N \N 6249687 2025-03-19 04:41:13.713 2025-03-19 04:41:13.713 2000 BOOST 141924 1626 \N \N 6249688 2025-03-19 06:04:13.423 2025-03-19 06:04:13.423 2000 BOOST 141924 20642 \N \N 6249689 2025-03-19 14:58:13.323 2025-03-19 14:58:13.323 1000 BOOST 141924 16440 \N \N 6249690 2025-03-19 21:36:13.406 2025-03-19 21:36:13.406 2000 BOOST 141924 12561 \N \N 6249691 2025-03-20 00:44:12.699 2025-03-20 00:44:12.699 1000 BOOST 141924 12935 \N \N 6249692 2025-03-20 09:31:13.115 2025-03-20 09:31:13.115 1000 BOOST 141924 2639 \N \N 6249693 2025-03-19 08:23:13.155 2025-03-19 08:23:13.155 2000 BOOST 141924 17201 \N \N 6249694 2025-03-19 19:14:15.519 2025-03-19 19:14:15.519 1000 BOOST 141924 10719 \N \N 6249695 2025-03-18 21:44:14.399 2025-03-18 21:44:14.399 1000 BOOST 141924 16212 \N \N 6249696 2025-03-20 10:31:13.4 2025-03-20 10:31:13.4 1000 BOOST 141924 1433 \N \N 6249697 2025-03-19 17:55:13.888 2025-03-19 17:55:13.888 1000 BOOST 141924 14280 \N \N 6249698 2025-03-20 03:05:13.387 2025-03-20 03:05:13.387 3000 BOOST 141924 8926 \N \N 6249699 2025-03-20 10:02:13.326 2025-03-20 10:02:13.326 1000 BOOST 141924 21058 \N \N 6249700 2025-03-19 22:36:13.711 2025-03-19 22:36:13.711 1000 BOOST 141924 10291 \N \N 6249701 2025-03-20 00:21:13.703 2025-03-20 00:21:13.703 2000 BOOST 141924 16149 \N \N 6249702 2025-03-19 06:11:13.442 2025-03-19 06:11:13.442 1000 BOOST 141924 1141 \N \N 6249703 2024-01-14 15:14:12.967 2024-01-14 15:14:12.967 1000 BOOST 109138 20310 \N \N 6249704 2025-03-19 04:04:13.557 2025-03-19 04:04:13.557 1000 BOOST 141924 14452 \N \N 6249705 2025-03-19 18:36:15.267 2025-03-19 18:36:15.267 2000 BOOST 141924 1596 \N \N 6249706 2025-03-26 05:40:13.373 2025-03-26 05:40:13.373 2000 BOOST 141924 19346 \N \N 6249707 2025-03-19 13:31:12.849 2025-03-19 13:31:12.849 1000 BOOST 141924 4287 \N \N 6249708 2025-03-20 11:40:13.076 2025-03-20 11:40:13.076 2000 BOOST 141924 18271 \N \N 6249709 2025-03-19 07:18:14.521 2025-03-19 07:18:14.521 1000 BOOST 141924 19217 \N \N 6249710 2025-03-28 10:21:14.486 2025-03-28 10:21:14.486 1000 BOOST 141924 20751 \N \N 6249711 2025-03-19 12:49:14.542 2025-03-19 12:49:14.542 2000 BOOST 141924 2342 \N \N 6249712 2025-03-19 21:05:13.254 2025-03-19 21:05:13.254 2000 BOOST 141924 21159 \N \N 6249713 2025-03-20 12:33:12.947 2025-03-20 12:33:12.947 1000 BOOST 141924 8380 \N \N 6249714 2025-03-19 10:37:14.177 2025-03-19 10:37:14.177 1000 BOOST 141924 4776 \N \N 6249715 2025-03-26 03:44:14.698 2025-03-26 03:44:14.698 2000 BOOST 141924 5557 \N \N 6249716 2025-03-20 10:27:13.377 2025-03-20 10:27:13.377 2000 BOOST 141924 14515 \N \N 6249717 2025-03-19 20:28:12.696 2025-03-19 20:28:12.696 1000 BOOST 141924 20275 \N \N 6249718 2025-03-18 18:10:13.249 2025-03-18 18:10:13.249 1000 BOOST 141924 21114 \N \N 6249719 2025-03-19 15:51:13.817 2025-03-19 15:51:13.817 1000 BOOST 141924 13903 \N \N 6249720 2025-03-19 23:03:12.104 2025-03-19 23:03:12.104 1000 BOOST 141924 20956 \N \N 6249721 2025-03-19 18:20:14.702 2025-03-19 18:20:14.702 1000 BOOST 141924 706 \N \N 6249722 2025-03-26 05:55:12.442 2025-03-26 05:55:12.442 1000 BOOST 141924 1673 \N \N 6249723 2025-03-18 20:02:13.058 2025-03-18 20:02:13.058 1000 BOOST 141924 17237 \N \N 6249724 2025-03-19 13:49:14.745 2025-03-19 13:49:14.745 2000 BOOST 141924 861 \N \N 6249725 2025-03-18 22:55:14.442 2025-03-18 22:55:14.442 1000 BOOST 141924 8684 \N \N 6249726 2025-03-19 01:51:13.434 2025-03-19 01:51:13.434 1000 BOOST 141924 675 \N \N 6249727 2025-03-28 12:02:14.99 2025-03-28 12:02:14.99 5000 BOOST 141924 2042 \N \N 6249728 2025-03-19 21:48:13.45 2025-03-19 21:48:13.45 1000 BOOST 141924 7992 \N \N 6249729 2025-03-18 18:02:13.846 2025-03-18 18:02:13.846 1000 BOOST 141924 20062 \N \N 6249730 2025-03-20 03:31:14.471 2025-03-20 03:31:14.471 1000 BOOST 141924 7580 \N \N 6249731 2025-03-28 11:26:12.275 2025-03-28 11:26:12.275 4000 BOOST 141924 638 \N \N 6249732 2025-03-28 12:17:12.547 2025-03-28 12:17:12.547 1000 BOOST 141924 711 \N \N 6249733 2025-03-19 00:10:14.917 2025-03-19 00:10:14.917 1000 BOOST 141924 14015 \N \N 6249734 2025-03-19 03:10:12.869 2025-03-19 03:10:12.869 2000 BOOST 141924 13217 \N \N 6249735 2025-03-19 21:46:13.438 2025-03-19 21:46:13.438 2000 BOOST 141924 19094 \N \N 6249736 2025-03-18 16:20:14.121 2025-03-18 16:20:14.121 1000 BOOST 141924 17824 \N \N 6249737 2025-03-19 05:14:13.883 2025-03-19 05:14:13.883 1000 BOOST 141924 2402 \N \N 6249738 2025-03-28 11:22:12.288 2025-03-28 11:22:12.288 1000 BOOST 141924 20871 \N \N 6249739 2025-03-19 00:32:13.031 2025-03-19 00:32:13.031 2000 BOOST 141924 8544 \N \N 6249740 2025-03-26 04:13:15.094 2025-03-26 04:13:15.094 2000 BOOST 141924 854 \N \N 6249741 2025-03-28 10:39:15.578 2025-03-28 10:39:15.578 6000 BOOST 141924 21599 \N \N 6249742 2025-03-19 05:32:13.949 2025-03-19 05:32:13.949 1000 BOOST 141924 21033 \N \N 6249743 2025-03-19 21:45:13.444 2025-03-19 21:45:13.444 2000 BOOST 141924 13076 \N \N 6249744 2025-03-20 04:55:13.159 2025-03-20 04:55:13.159 2000 BOOST 141924 21287 \N \N 6249745 2025-03-19 05:15:13.898 2025-03-19 05:15:13.898 1000 BOOST 141924 7760 \N \N 6249746 2025-03-26 05:04:13.207 2025-03-26 05:04:13.207 2000 BOOST 141924 15556 \N \N 6249747 2025-03-20 09:58:13.29 2025-03-20 09:58:13.29 2000 BOOST 141924 3456 \N \N 6249748 2025-03-19 23:22:14.045 2025-03-19 23:22:14.045 2000 BOOST 141924 19531 \N \N 6249749 2025-03-20 12:45:12.998 2025-03-20 12:45:12.998 1000 BOOST 141924 17162 \N \N 6249750 2025-03-26 04:27:13.01 2025-03-26 04:27:13.01 1000 BOOST 141924 16354 \N \N 6249751 2025-03-26 03:29:14.564 2025-03-26 03:29:14.564 1000 BOOST 141924 20969 \N \N 6249752 2025-03-19 00:46:13.551 2025-03-19 00:46:13.551 1000 BOOST 141924 2508 \N \N 6249753 2025-03-20 10:52:13.557 2025-03-20 10:52:13.557 3000 BOOST 141924 18557 \N \N 6249754 2025-03-20 08:19:14.425 2025-03-20 08:19:14.425 2000 BOOST 141924 2776 \N \N 6249755 2025-03-19 16:06:13.906 2025-03-19 16:06:13.906 2000 BOOST 141924 20490 \N \N 6249756 2025-03-19 14:24:13.165 2025-03-19 14:24:13.165 1000 BOOST 141924 19576 \N \N 6249757 2025-03-19 02:05:14.319 2025-03-19 02:05:14.319 2000 BOOST 141924 644 \N \N 6249758 2025-03-19 16:55:14.327 2025-03-19 16:55:14.327 2000 BOOST 141924 11515 \N \N 6249759 2025-03-19 22:23:13.668 2025-03-19 22:23:13.668 2000 BOOST 141924 1310 \N \N 6249760 2025-03-20 11:43:12.279 2025-03-20 11:43:12.279 4000 BOOST 141924 1480 \N \N 6249761 2025-03-19 14:31:13.203 2025-03-19 14:31:13.203 2000 BOOST 141924 1585 \N \N 6249762 2025-03-19 13:22:12.532 2025-03-19 13:22:12.532 2000 BOOST 141924 686 \N \N 6249763 2025-03-20 00:12:13.657 2025-03-20 00:12:13.657 1000 BOOST 141924 20120 \N \N 6249764 2025-03-19 21:01:13.243 2025-03-19 21:01:13.243 1000 BOOST 141924 8985 \N \N 6249765 2025-03-20 12:03:12.459 2025-03-20 12:03:12.459 3000 BOOST 141924 694 \N \N 6249766 2025-03-20 12:28:12.905 2025-03-20 12:28:12.905 2000 BOOST 141924 15510 \N \N 6249767 2025-03-20 06:52:13.791 2025-03-20 06:52:13.791 2000 BOOST 141924 9183 \N \N 6249768 2025-03-20 01:12:12.856 2025-03-20 01:12:12.856 2000 BOOST 141924 13599 \N \N 6249769 2025-03-18 20:58:13.583 2025-03-18 20:58:13.583 1000 BOOST 141924 20756 \N \N 6249770 2025-03-20 10:41:13.475 2025-03-20 10:41:13.475 2000 BOOST 141924 994 \N \N 6249771 2025-03-19 15:26:13.563 2025-03-19 15:26:13.563 1000 BOOST 141924 1772 \N \N 6249772 2025-03-19 17:28:12.477 2025-03-19 17:28:12.477 2000 BOOST 141924 9921 \N \N 6249773 2025-03-28 10:59:14.701 2025-03-28 10:59:14.701 2000 BOOST 141924 16154 \N \N 6249774 2025-03-20 08:34:14.521 2025-03-20 08:34:14.521 3000 BOOST 141924 21539 \N \N 6249775 2025-03-26 02:31:14.083 2025-03-26 02:31:14.083 1000 BOOST 141924 7966 \N \N 6249776 2025-03-19 13:45:12.892 2025-03-19 13:45:12.892 2000 BOOST 141924 661 \N \N 6249777 2025-03-20 11:17:13.771 2025-03-20 11:17:13.771 3000 BOOST 141924 1044 \N \N 6249778 2025-03-20 11:53:12.357 2025-03-20 11:53:12.357 1000 BOOST 141924 919 \N \N 6249779 2025-03-19 19:04:14.826 2025-03-19 19:04:14.826 1000 BOOST 141924 2832 \N \N 6249780 2025-03-26 06:15:12.715 2025-03-26 06:15:12.715 1000 BOOST 141924 1094 \N \N 6249781 2025-03-19 15:20:13.532 2025-03-19 15:20:13.532 2000 BOOST 141924 9655 \N \N 6249782 2024-01-14 14:36:12.444 2024-01-14 14:36:12.444 1000 BOOST 109142 10536 \N \N 6249783 2025-03-20 13:01:13.101 2025-03-20 13:01:13.101 5000 BOOST 141924 756 \N \N 6249784 2025-03-26 03:45:14.719 2025-03-26 03:45:14.719 5000 BOOST 141924 19570 \N \N 6249785 2025-03-20 04:06:12.773 2025-03-20 04:06:12.773 3000 BOOST 141924 7376 \N \N 6249786 2024-01-14 14:56:13.471 2024-01-14 14:56:13.471 1000 BOOST 109142 12490 \N \N 6249787 2025-03-28 10:35:12.288 2025-03-28 10:35:12.288 1000 BOOST 141924 2735 \N \N 6249788 2025-03-28 10:50:14.653 2025-03-28 10:50:14.653 3000 BOOST 141924 9494 \N \N 6249789 2025-03-19 23:59:15.546 2025-03-19 23:59:15.546 1000 BOOST 141924 660 \N \N 6249790 2025-03-19 07:55:14.802 2025-03-19 07:55:14.802 1000 BOOST 141924 1519 \N \N 6249791 2025-03-19 06:50:14.368 2025-03-19 06:50:14.368 2000 BOOST 141924 732 \N \N 6249792 2025-03-18 22:13:13.906 2025-03-18 22:13:13.906 1000 BOOST 141924 14669 \N \N 6249793 2025-03-26 04:05:12.993 2025-03-26 04:05:12.993 5000 BOOST 141924 9036 \N \N 6249794 2025-03-20 01:59:13.015 2025-03-20 01:59:13.015 3000 BOOST 141924 14357 \N \N 6249795 2025-03-28 11:54:12.455 2025-03-28 11:54:12.455 4000 BOOST 141924 11716 \N \N 6249796 2025-03-20 08:32:14.515 2025-03-20 08:32:14.515 2000 BOOST 141924 4958 \N \N 6249797 2025-03-20 11:50:13.891 2025-03-20 11:50:13.891 1000 BOOST 141924 9863 \N \N 6249798 2025-03-19 23:46:15.465 2025-03-19 23:46:15.465 2000 BOOST 141924 21710 \N \N 6249799 2025-03-20 12:41:12.972 2025-03-20 12:41:12.972 4000 BOOST 141924 5112 \N \N 6249800 2025-03-19 14:26:13.17 2025-03-19 14:26:13.17 1000 BOOST 141924 7960 \N \N 6249801 2025-03-19 11:11:14.008 2025-03-19 11:11:14.008 3000 BOOST 141924 2681 \N \N 6249802 2025-03-20 10:37:13.451 2025-03-20 10:37:13.451 5000 BOOST 141924 1692 \N \N 6249803 2025-03-20 10:23:13.367 2025-03-20 10:23:13.367 2000 BOOST 141924 10409 \N \N 6249804 2025-03-18 16:42:13.177 2025-03-18 16:42:13.177 1000 BOOST 141924 13467 \N \N 6249805 2025-03-20 08:50:14.625 2025-03-20 08:50:14.625 3000 BOOST 141924 10013 \N \N 6249806 2025-03-19 17:04:12.449 2025-03-19 17:04:12.449 1000 BOOST 141924 9845 \N \N 6249807 2025-03-19 10:42:14.194 2025-03-19 10:42:14.194 2000 BOOST 141924 2703 \N \N 6249808 2025-03-20 09:02:12.906 2025-03-20 09:02:12.906 4000 BOOST 141924 9426 \N \N 6249809 2025-03-20 01:01:12.773 2025-03-20 01:01:12.773 2000 BOOST 141924 20201 \N \N 6249810 2025-03-19 15:46:13.754 2025-03-19 15:46:13.754 1000 BOOST 141924 704 \N \N 6249811 2024-01-14 14:37:12.988 2024-01-14 14:37:12.988 1000 BOOST 109138 21262 \N \N 6249812 2025-03-28 11:03:14.773 2025-03-28 11:03:14.773 4000 BOOST 141924 3400 \N \N 6249813 2025-03-26 03:26:16.415 2025-03-26 03:26:16.415 5000 BOOST 141924 1401 \N \N 6249814 2025-03-29 10:08:15.729 2025-03-29 10:08:15.729 1000 BOOST 141924 1142 \N \N 6249815 2025-03-19 10:56:14.345 2025-03-19 10:56:14.345 3000 BOOST 141924 21228 \N \N 6249816 2025-03-20 10:34:13.448 2025-03-20 10:34:13.448 2000 BOOST 141924 2204 \N \N 6249817 2025-03-28 12:06:12.496 2025-03-28 12:06:12.496 2000 BOOST 141924 623 \N \N 6249818 2025-03-19 01:23:13.545 2025-03-19 01:23:13.545 1000 BOOST 141924 1000 \N \N 6249819 2025-03-29 09:07:15.216 2025-03-29 09:07:15.216 5000 BOOST 141924 2640 \N \N 6249820 2025-03-20 06:14:13.301 2025-03-20 06:14:13.301 2000 BOOST 141924 21164 \N \N 6249821 2025-03-26 04:01:12.918 2025-03-26 04:01:12.918 4000 BOOST 141924 6687 \N \N 6249822 2025-03-19 08:26:13.179 2025-03-19 08:26:13.179 2000 BOOST 141924 2039 \N \N 6249823 2025-03-26 03:51:14.781 2025-03-26 03:51:14.781 2000 BOOST 141924 15925 \N \N 6249824 2024-01-14 14:51:14.158 2024-01-14 14:51:14.158 1000 BOOST 109142 20187 \N \N 6249825 2025-03-19 08:09:13.054 2025-03-19 08:09:13.054 1000 BOOST 141924 19199 \N \N 6249826 2025-03-26 06:21:13.581 2025-03-26 06:21:13.581 4000 BOOST 141924 2844 \N \N 6249827 2025-03-28 10:04:14.425 2025-03-28 10:04:14.425 4000 BOOST 141924 21247 \N \N 6249828 2025-03-28 12:04:12.504 2025-03-28 12:04:12.504 2000 BOOST 141924 18231 \N \N 6249829 2024-01-14 15:07:12.875 2024-01-14 15:07:12.875 1000 BOOST 109138 1286 \N \N 6249830 2025-03-20 04:44:13.056 2025-03-20 04:44:13.056 3000 BOOST 141924 8400 \N \N 6249831 2025-03-20 10:38:13.462 2025-03-20 10:38:13.462 1000 BOOST 141924 1495 \N \N 6249832 2025-03-28 10:26:12.24 2025-03-28 10:26:12.24 4000 BOOST 141924 1060 \N \N 6249833 2025-03-20 05:36:12.886 2025-03-20 05:36:12.886 2000 BOOST 141924 20179 \N \N 6249834 2025-03-20 04:25:12.91 2025-03-20 04:25:12.91 2000 BOOST 141924 17392 \N \N 6249835 2025-03-19 07:05:12.871 2025-03-19 07:05:12.871 2000 BOOST 141924 14941 \N \N 6249836 2025-03-20 03:55:14.192 2025-03-20 03:55:14.192 1000 BOOST 141924 9333 \N \N 6249837 2025-03-26 06:10:12.668 2025-03-26 06:10:12.668 3000 BOOST 141924 16447 \N \N 6249838 2025-03-28 10:52:15.728 2025-03-28 10:52:15.728 3000 BOOST 141924 14213 \N \N 6249839 2025-03-18 16:34:13.105 2025-03-18 16:34:13.105 1000 BOOST 141924 13399 \N \N 6249840 2025-03-18 21:42:14.377 2025-03-18 21:42:14.377 2000 BOOST 141924 17722 \N \N 6249841 2025-03-20 05:37:12.877 2025-03-20 05:37:12.877 2000 BOOST 141924 17639 \N \N 6249842 2025-03-20 12:24:12.877 2025-03-20 12:24:12.877 3000 BOOST 141924 6749 \N \N 6249843 2025-03-26 06:48:13.666 2025-03-26 06:48:13.666 4000 BOOST 141924 1773 \N \N 6249844 2025-03-26 04:10:14.904 2025-03-26 04:10:14.904 2000 BOOST 141924 10821 \N \N 6249845 2025-03-28 12:21:12.569 2025-03-28 12:21:12.569 7000 BOOST 141924 11378 \N \N 6249846 2025-03-28 12:15:12.533 2025-03-28 12:15:12.533 2000 BOOST 141924 10638 \N \N 6249847 2025-03-19 11:46:14.142 2025-03-19 11:46:14.142 3000 BOOST 141924 14657 \N \N 6249848 2025-03-26 03:20:14.521 2025-03-26 03:20:14.521 2000 BOOST 141924 20562 \N \N 6249849 2025-03-19 16:57:14.34 2025-03-19 16:57:14.34 2000 BOOST 141924 2224 \N \N 6249850 2025-03-20 11:19:13.81 2025-03-20 11:19:13.81 4000 BOOST 141924 5195 \N \N 6249851 2024-01-14 14:33:14.1 2024-01-14 14:33:14.1 1000 BOOST 109142 718 \N \N 6249852 2025-03-19 14:37:13.245 2025-03-19 14:37:13.245 2000 BOOST 141924 803 \N \N 6249853 2025-03-19 04:51:13.782 2025-03-19 04:51:13.782 1000 BOOST 141924 11523 \N \N 6249854 2025-03-26 06:01:13.44 2025-03-26 06:01:13.44 3000 BOOST 141924 6136 \N \N 6249855 2025-03-19 16:29:14.089 2025-03-19 16:29:14.089 1000 BOOST 141924 7125 \N \N 6249856 2025-03-20 07:07:13.927 2025-03-20 07:07:13.927 4000 BOOST 141924 624 \N \N 6249857 2025-03-20 08:15:14.406 2025-03-20 08:15:14.406 1000 BOOST 141924 20647 \N \N 6249858 2025-03-26 02:38:14.128 2025-03-26 02:38:14.128 4000 BOOST 141924 15978 \N \N 6249859 2025-03-20 11:04:13.724 2025-03-20 11:04:13.724 1000 BOOST 141924 15521 \N \N 6249860 2025-03-20 10:30:13.403 2025-03-20 10:30:13.403 5000 BOOST 141924 3642 \N \N 6249861 2025-03-20 00:50:12.731 2025-03-20 00:50:12.731 1000 BOOST 141924 6260 \N \N 6249862 2025-03-19 20:30:12.723 2025-03-19 20:30:12.723 1000 BOOST 141924 14607 \N \N 6249863 2025-03-20 07:13:13.989 2025-03-20 07:13:13.989 4000 BOOST 141924 635 \N \N 6249864 2024-01-14 14:35:13.931 2024-01-14 14:35:13.931 1000 BOOST 109138 18630 \N \N 6249865 2025-03-19 23:35:15.394 2025-03-19 23:35:15.394 1000 BOOST 141924 1806 \N \N 6249866 2025-03-26 04:53:15.182 2025-03-26 04:53:15.182 1000 BOOST 141924 632 \N \N 6249867 2025-03-20 12:54:13.051 2025-03-20 12:54:13.051 2000 BOOST 141924 17321 \N \N 6249868 2025-03-19 20:56:13.212 2025-03-19 20:56:13.212 2000 BOOST 141924 651 \N \N 6249869 2025-03-20 06:15:13.283 2025-03-20 06:15:13.283 2000 BOOST 141924 8506 \N \N 6249870 2025-03-19 06:28:14.25 2025-03-19 06:28:14.25 1000 BOOST 141924 19463 \N \N 6249871 2025-03-26 03:58:14.791 2025-03-26 03:58:14.791 1000 BOOST 141924 8535 \N \N 6249872 2025-03-20 08:48:14.615 2025-03-20 08:48:14.615 5000 BOOST 141924 1221 \N \N 6249873 2025-03-19 02:52:12.771 2025-03-19 02:52:12.771 2000 BOOST 141924 646 \N \N 6249874 2025-03-20 00:24:12.475 2025-03-20 00:24:12.475 2000 BOOST 141924 718 \N \N 6249875 2024-01-14 14:53:12.693 2024-01-14 14:53:12.693 1000 BOOST 109138 13378 \N \N 6249876 2025-03-20 12:37:12.964 2025-03-20 12:37:12.964 1000 BOOST 141924 6741 \N \N 6249877 2025-03-19 10:29:14.124 2025-03-19 10:29:14.124 1000 BOOST 141924 3371 \N \N 6249878 2025-03-19 06:18:13.528 2025-03-19 06:18:13.528 1000 BOOST 141924 909 \N \N 6249879 2025-03-18 19:03:13.571 2025-03-18 19:03:13.571 1000 BOOST 141924 21408 \N \N 6249880 2025-03-26 03:11:14.457 2025-03-26 03:11:14.457 3000 BOOST 141924 21136 \N \N 6249881 2025-03-18 21:29:14.28 2025-03-18 21:29:14.28 1000 BOOST 141924 2961 \N \N 6249882 2025-03-29 10:10:15.807 2025-03-29 10:10:15.807 1000 BOOST 141924 8726 \N \N 6249883 2025-03-20 09:11:13.04 2025-03-20 09:11:13.04 3000 BOOST 141924 21532 \N \N 6249884 2024-01-14 14:48:12.831 2024-01-14 14:48:12.831 1000 BOOST 109142 21212 \N \N 6249885 2025-03-20 00:26:12.469 2025-03-20 00:26:12.469 2000 BOOST 141924 1009 \N \N 6249886 2025-03-28 11:34:14.917 2025-03-28 11:34:14.917 2000 BOOST 141924 9290 \N \N 6249887 2025-03-20 02:21:13.142 2025-03-20 02:21:13.142 1000 BOOST 141924 20680 \N \N 6249888 2025-03-29 09:05:15.218 2025-03-29 09:05:15.218 6000 BOOST 141924 1726 \N \N 6249889 2025-03-26 03:33:14.594 2025-03-26 03:33:14.594 3000 BOOST 141924 6602 \N \N 6249890 2025-03-19 22:32:13.694 2025-03-19 22:32:13.694 2000 BOOST 141924 21281 \N \N 6249891 2025-03-20 05:30:13.373 2025-03-20 05:30:13.373 2000 BOOST 141924 1006 \N \N 6249892 2025-03-18 21:07:14.042 2025-03-18 21:07:14.042 1000 BOOST 141924 2322 \N \N 6249893 2025-03-20 11:08:13.725 2025-03-20 11:08:13.725 3000 BOOST 141924 12356 \N \N 6249894 2025-03-26 02:51:14.187 2025-03-26 02:51:14.187 5000 BOOST 141924 617 \N \N 6249895 2025-03-26 06:07:12.634 2025-03-26 06:07:12.634 3000 BOOST 141924 1814 \N \N 6249896 2025-03-20 04:51:13.128 2025-03-20 04:51:13.128 1000 BOOST 141924 21014 \N \N 6249897 2025-03-19 13:41:12.9 2025-03-19 13:41:12.9 1000 BOOST 141924 2741 \N \N 6249898 2025-03-28 11:29:12.685 2025-03-28 11:29:12.685 1000 BOOST 141924 1564 \N \N 6249899 2025-03-19 16:25:14.047 2025-03-19 16:25:14.047 1000 BOOST 141924 2459 \N \N 6249900 2025-03-20 08:22:14.445 2025-03-20 08:22:14.445 1000 BOOST 141924 795 \N \N 6249901 2025-03-29 08:58:15.061 2025-03-29 08:58:15.061 3000 BOOST 141924 1130 \N \N 6249902 2025-03-19 11:04:14.549 2025-03-19 11:04:14.549 1000 BOOST 141924 21365 \N \N 6249903 2025-03-20 07:54:14.237 2025-03-20 07:54:14.237 1000 BOOST 141924 21494 \N \N 6249904 2025-03-20 01:55:12.996 2025-03-20 01:55:12.996 1000 BOOST 141924 1567 \N \N 6249905 2025-03-19 00:48:13.556 2025-03-19 00:48:13.556 1000 BOOST 141924 1983 \N \N 6249906 2025-03-20 04:29:12.932 2025-03-20 04:29:12.932 2000 BOOST 141924 10016 \N \N 6249907 2025-03-29 08:56:15.029 2025-03-29 08:56:15.029 3000 BOOST 141924 20710 \N \N 6249908 2025-03-28 10:28:12.253 2025-03-28 10:28:12.253 3000 BOOST 141924 895 \N \N 6249909 2024-01-14 14:44:12.59 2024-01-14 14:44:12.59 1000 BOOST 109142 19735 \N \N 6249910 2025-03-20 02:31:13.183 2025-03-20 02:31:13.183 1000 BOOST 141924 12346 \N \N 6249911 2025-03-20 06:07:13.609 2025-03-20 06:07:13.609 2000 BOOST 141924 5578 \N \N 6249912 2025-03-20 10:09:13.255 2025-03-20 10:09:13.255 3000 BOOST 141924 9184 \N \N 6249913 2025-03-19 10:41:14.22 2025-03-19 10:41:14.22 1000 BOOST 141924 859 \N \N 6249914 2025-03-28 12:05:15.02 2025-03-28 12:05:15.02 5000 BOOST 141924 18188 \N \N 6249915 2025-03-20 03:35:14.019 2025-03-20 03:35:14.019 1000 BOOST 141924 2514 \N \N 6249916 2025-03-26 04:04:14.834 2025-03-26 04:04:14.834 2000 BOOST 141924 20706 \N \N 6249917 2025-03-20 10:22:13.346 2025-03-20 10:22:13.346 1000 BOOST 141924 18637 \N \N 6249918 2025-03-26 06:28:13.614 2025-03-26 06:28:13.614 2000 BOOST 141924 19980 \N \N 6249919 2025-03-19 04:57:13.78 2025-03-19 04:57:13.78 3000 BOOST 141924 1603 \N \N 6249920 2025-03-26 06:29:13.627 2025-03-26 06:29:13.627 2000 BOOST 141924 21338 \N \N 6249921 2025-03-26 06:33:13.647 2025-03-26 06:33:13.647 4000 BOOST 141924 21212 \N \N 6249922 2025-03-19 19:46:12.385 2025-03-19 19:46:12.385 3000 BOOST 141924 4862 \N \N 6249923 2025-03-19 10:28:14.115 2025-03-19 10:28:14.115 1000 BOOST 141924 11073 \N \N 6249924 2025-03-19 12:46:12.524 2025-03-19 12:46:12.524 3000 BOOST 141924 4754 \N \N 6249925 2025-03-19 20:54:13.218 2025-03-19 20:54:13.218 1000 BOOST 141924 6578 \N \N 6249926 2025-03-19 23:29:15.216 2025-03-19 23:29:15.216 3000 BOOST 141924 13198 \N \N 6249927 2025-03-19 02:01:13.692 2025-03-19 02:01:13.692 2000 BOOST 141924 1658 \N \N 6249928 2025-03-19 17:15:12.478 2025-03-19 17:15:12.478 1000 BOOST 141924 10096 \N \N 6249929 2025-03-19 02:16:14.447 2025-03-19 02:16:14.447 2000 BOOST 141924 12821 \N \N 6249930 2025-03-19 16:21:14.045 2025-03-19 16:21:14.045 1000 BOOST 141924 749 \N \N 6249931 2025-03-26 06:19:13.569 2025-03-26 06:19:13.569 2000 BOOST 141924 21424 \N \N 6249932 2025-03-19 20:26:12.723 2025-03-19 20:26:12.723 2000 BOOST 141924 21262 \N \N 6249933 2025-03-19 17:09:12.438 2025-03-19 17:09:12.438 1000 BOOST 141924 19502 \N \N 6249934 2025-03-28 10:46:14.644 2025-03-28 10:46:14.644 2000 BOOST 141924 2285 \N \N 6249935 2025-03-20 12:21:12.858 2025-03-20 12:21:12.858 3000 BOOST 141924 10094 \N \N 6249936 2025-03-28 12:22:12.576 2025-03-28 12:22:12.576 2000 BOOST 141924 17891 \N \N 6249937 2025-03-18 19:25:13.661 2025-03-18 19:25:13.661 1000 BOOST 141924 7395 \N \N 6249938 2025-03-20 01:58:13.006 2025-03-20 01:58:13.006 1000 BOOST 141924 762 \N \N 6249939 2025-03-28 10:58:12.42 2025-03-28 10:58:12.42 5000 BOOST 141924 776 \N \N 6249940 2025-03-29 19:32:15.803 2025-03-29 19:32:15.803 2000 BOOST 141924 21672 \N \N 6249941 2025-03-26 06:13:13.487 2025-03-26 06:13:13.487 2000 BOOST 141924 20970 \N \N 6249942 2025-03-19 07:43:14.714 2025-03-19 07:43:14.714 1000 BOOST 141924 15588 \N \N 6249943 2025-03-20 03:43:14.108 2025-03-20 03:43:14.108 2000 BOOST 141924 8648 \N \N 6249944 2025-03-20 08:40:14.594 2025-03-20 08:40:14.594 1000 BOOST 141924 20094 \N \N 6249945 2024-01-14 15:11:13.047 2024-01-14 15:11:13.047 1000 BOOST 109138 21145 \N \N 6249946 2025-03-29 08:52:12.94 2025-03-29 08:52:12.94 1000 BOOST 141924 21088 \N \N 6249947 2025-03-26 03:39:14.624 2025-03-26 03:39:14.624 1000 BOOST 141924 20525 \N \N 6249948 2025-03-20 04:07:12.835 2025-03-20 04:07:12.835 2000 BOOST 141924 20551 \N \N 6249949 2025-03-28 10:42:15.589 2025-03-28 10:42:15.589 3000 BOOST 141924 2293 \N \N 6249950 2024-01-14 15:10:13.064 2024-01-14 15:10:13.064 1000 BOOST 109138 666 \N \N 6249951 2025-03-19 18:47:15.568 2025-03-19 18:47:15.568 1000 BOOST 141924 21208 \N \N 6249952 2025-03-20 09:00:12.898 2025-03-20 09:00:12.898 2000 BOOST 141924 19403 \N \N 6249953 2025-03-19 04:47:13.761 2025-03-19 04:47:13.761 1000 BOOST 141924 15762 \N \N 6249954 2025-03-20 08:10:14.355 2025-03-20 08:10:14.355 2000 BOOST 141924 5308 \N \N 6249955 2025-03-28 11:24:12.317 2025-03-28 11:24:12.317 1000 BOOST 141924 16680 \N \N 6249956 2025-03-20 01:33:12.964 2025-03-20 01:33:12.964 3000 BOOST 141924 17291 \N \N 6249957 2025-03-19 16:13:13.926 2025-03-19 16:13:13.926 1000 BOOST 141924 18473 \N \N 6249958 2025-03-19 01:41:13.624 2025-03-19 01:41:13.624 1000 BOOST 141924 20280 \N \N 6249959 2025-03-18 23:35:14.66 2025-03-18 23:35:14.66 1000 BOOST 141924 739 \N \N 6249960 2025-03-19 19:43:15.922 2025-03-19 19:43:15.922 1000 BOOST 141924 15273 \N \N 6249961 2025-03-19 09:10:13.304 2025-03-19 09:10:13.304 1000 BOOST 141924 19655 \N \N 6249962 2025-03-19 19:20:13.268 2025-03-19 19:20:13.268 2000 BOOST 141924 18500 \N \N 6249963 2025-03-20 13:14:13.216 2025-03-20 13:14:13.216 1000 BOOST 141924 20152 \N \N 6249964 2025-03-20 01:02:13.588 2025-03-20 01:02:13.588 1000 BOOST 141924 21416 \N \N 6249965 2025-03-20 03:50:14.138 2025-03-20 03:50:14.138 1000 BOOST 141924 640 \N \N 6249966 2025-03-20 08:54:12.885 2025-03-20 08:54:12.885 3000 BOOST 141924 10549 \N \N 6249967 2025-03-18 18:08:15.237 2025-03-18 18:08:15.237 1000 BOOST 141924 12744 \N \N 6249968 2024-01-14 15:18:12.888 2024-01-14 15:18:12.888 1000 BOOST 109138 4167 \N \N 6249969 2025-03-19 04:25:13.644 2025-03-19 04:25:13.644 1000 BOOST 141924 20881 \N \N 6249970 2025-03-26 03:09:14.467 2025-03-26 03:09:14.467 2000 BOOST 141924 20924 \N \N 6249971 2025-03-20 01:47:13.007 2025-03-20 01:47:13.007 1000 BOOST 141924 1817 \N \N 6249972 2025-03-19 22:25:13.662 2025-03-19 22:25:13.662 1000 BOOST 141924 20616 \N \N 6249973 2025-03-28 10:05:14.413 2025-03-28 10:05:14.413 2000 BOOST 141924 17103 \N \N 6249974 2025-03-26 04:20:15.16 2025-03-26 04:20:15.16 2000 BOOST 141924 19668 \N \N 6249975 2025-03-19 01:52:13.68 2025-03-19 01:52:13.68 1000 BOOST 141924 9695 \N \N 6249976 2025-03-20 12:50:13.04 2025-03-20 12:50:13.04 4000 BOOST 141924 616 \N \N 6249977 2025-03-26 02:39:17.38 2025-03-26 02:39:17.38 2000 BOOST 141924 15386 \N \N 6249978 2025-03-19 23:31:15.217 2025-03-19 23:31:15.217 3000 BOOST 141924 6573 \N \N 6249979 2025-03-20 10:17:13.319 2025-03-20 10:17:13.319 3000 BOOST 141924 14122 \N \N 6249980 2025-03-20 07:06:13.938 2025-03-20 07:06:13.938 2000 BOOST 141924 17212 \N \N 6249981 2025-03-20 00:01:13.552 2025-03-20 00:01:13.552 2000 BOOST 141924 15336 \N \N 6249982 2025-03-26 05:17:13.247 2025-03-26 05:17:13.247 1000 BOOST 141924 5794 \N \N 6249983 2025-03-20 00:03:13.563 2025-03-20 00:03:13.563 1000 BOOST 141924 15213 \N \N 6249984 2025-03-28 11:13:14.767 2025-03-28 11:13:14.767 4000 BOOST 141924 5500 \N \N 6249985 2024-01-14 15:05:13.106 2024-01-14 15:05:13.106 1000 BOOST 109138 13517 \N \N 6249986 2025-03-20 10:33:13.426 2025-03-20 10:33:13.426 1000 BOOST 141924 21178 \N \N 6249987 2025-03-26 05:26:13.283 2025-03-26 05:26:13.283 1000 BOOST 141924 9969 \N \N 6249988 2025-03-28 10:30:12.242 2025-03-28 10:30:12.242 2000 BOOST 141924 1609 \N \N 6249989 2025-03-18 17:46:13.704 2025-03-18 17:46:13.704 1000 BOOST 141924 683 \N \N 6249990 2025-03-20 01:31:12.933 2025-03-20 01:31:12.933 1000 BOOST 141924 7185 \N \N 6249991 2025-03-18 20:11:13.017 2025-03-18 20:11:13.017 1000 BOOST 141924 21442 \N \N 6249992 2025-03-19 18:04:14.111 2025-03-19 18:04:14.111 5000 BOOST 141924 21063 \N \N 6249993 2024-01-14 14:42:12.85 2024-01-14 14:42:12.85 1000 BOOST 109142 9418 \N \N 6249994 2025-03-19 18:16:14.586 2025-03-19 18:16:14.586 2000 BOOST 141924 19138 \N \N 6249995 2025-03-26 02:46:15.826 2025-03-26 02:46:15.826 4000 BOOST 141924 15075 \N \N 6249996 2025-03-19 13:13:13.176 2025-03-19 13:13:13.176 4000 BOOST 141924 9171 \N \N 6249997 2024-01-14 15:16:12.439 2024-01-14 15:16:12.439 1000 BOOST 109142 11716 \N \N 6249998 2025-03-19 02:51:13.094 2025-03-19 02:51:13.094 2000 BOOST 141924 13133 \N \N 6249999 2025-03-19 23:09:13.973 2025-03-19 23:09:13.973 2000 BOOST 141924 11450 \N \N 6250000 2025-03-26 03:25:14.548 2025-03-26 03:25:14.548 3000 BOOST 141924 844 \N \N 6250001 2025-03-19 08:30:13.203 2025-03-19 08:30:13.203 1000 BOOST 141924 21556 \N \N 6250002 2025-03-26 05:28:13.296 2025-03-26 05:28:13.296 1000 BOOST 141924 21683 \N \N 6250003 2024-01-14 14:31:14.171 2024-01-14 14:31:14.171 1000 BOOST 109138 9695 \N \N 6250004 2025-03-29 20:49:14.928 2025-03-29 20:49:14.928 2000 BOOST 141924 5597 \N \N 6250005 2025-03-19 14:22:13.113 2025-03-19 14:22:13.113 1000 BOOST 141924 768 \N \N 6250006 2025-03-20 12:35:12.954 2025-03-20 12:35:12.954 6000 BOOST 141924 11314 \N \N 6250007 2025-03-19 15:12:13.46 2025-03-19 15:12:13.46 1000 BOOST 141924 21263 \N \N 6250008 2025-03-19 13:08:12.667 2025-03-19 13:08:12.667 1000 BOOST 141924 13566 \N \N 6250009 2025-03-28 12:36:12.904 2025-03-28 12:36:12.904 2000 BOOST 141924 678 \N \N 6250010 2025-03-26 05:30:13.293 2025-03-26 05:30:13.293 1000 BOOST 141924 20306 \N \N 6250011 2025-03-20 06:48:13.794 2025-03-20 06:48:13.794 3000 BOOST 141924 696 \N \N 6250012 2025-03-26 03:34:14.533 2025-03-26 03:34:14.533 4000 BOOST 141924 21506 \N \N 6250013 2025-03-19 14:53:13.309 2025-03-19 14:53:13.309 2000 BOOST 141924 16276 \N \N 6250014 2024-01-14 14:51:14.179 2024-01-14 14:51:14.179 1000 BOOST 109138 21825 \N \N 6250015 2025-03-26 03:55:14.713 2025-03-26 03:55:14.713 2000 BOOST 141924 16145 \N \N 6250016 2025-03-19 09:49:13.737 2025-03-19 09:49:13.737 1000 BOOST 141924 8498 \N \N 6250017 2025-03-20 10:43:13.494 2025-03-20 10:43:13.494 1000 BOOST 141924 21269 \N \N 6250018 2025-03-26 04:14:13 2025-03-26 04:14:13 5000 BOOST 141924 20619 \N \N 6250019 2025-03-28 10:24:14.487 2025-03-28 10:24:14.487 3000 BOOST 141924 18526 \N \N 6250020 2025-03-20 09:26:13.1 2025-03-20 09:26:13.1 2000 BOOST 141924 19813 \N \N 6250021 2025-03-19 18:40:15.49 2025-03-19 18:40:15.49 1000 BOOST 141924 10352 \N \N 6250022 2025-03-20 00:30:12.522 2025-03-20 00:30:12.522 2000 BOOST 141924 11967 \N \N 6250023 2025-03-19 23:20:14.036 2025-03-19 23:20:14.036 3000 BOOST 141924 16942 \N \N 6250024 2025-03-19 00:18:14.961 2025-03-19 00:18:14.961 1000 BOOST 141924 20636 \N \N 6250025 2025-03-19 11:08:14.457 2025-03-19 11:08:14.457 2000 BOOST 141924 2013 \N \N 6250026 2025-03-20 03:08:13.386 2025-03-20 03:08:13.386 1000 BOOST 141924 4650 \N \N 6250027 2025-03-18 18:34:13.422 2025-03-18 18:34:13.422 1000 BOOST 141924 19292 \N \N 6250028 2025-03-19 22:26:13.666 2025-03-19 22:26:13.666 1000 BOOST 141924 20245 \N \N 6250029 2025-03-18 21:49:14.436 2025-03-18 21:49:14.436 1000 BOOST 141924 19417 \N \N 6250030 2025-03-28 11:01:16.013 2025-03-28 11:01:16.013 3000 BOOST 141924 8284 \N \N 6250031 2025-03-19 11:25:14.124 2025-03-19 11:25:14.124 1000 BOOST 141924 8287 \N \N 6250032 2025-03-29 08:42:12.846 2025-03-29 08:42:12.846 5000 BOOST 141924 5520 \N \N 6250033 2025-03-26 04:41:15.338 2025-03-26 04:41:15.338 1000 BOOST 141924 18409 \N \N 6250034 2025-03-26 05:37:13.36 2025-03-26 05:37:13.36 2000 BOOST 141924 2176 \N \N 6250035 2025-03-26 04:59:15.186 2025-03-26 04:59:15.186 4000 BOOST 141924 9364 \N \N 6250036 2025-03-19 15:45:13.768 2025-03-19 15:45:13.768 2000 BOOST 141924 8168 \N \N 6250037 2025-03-20 07:53:14.227 2025-03-20 07:53:14.227 2000 BOOST 141924 713 \N \N 6250038 2025-03-20 00:49:12.529 2025-03-20 00:49:12.529 3000 BOOST 141924 18412 \N \N 6250039 2025-03-20 10:45:13.502 2025-03-20 10:45:13.502 1000 BOOST 141924 1047 \N \N 6250040 2025-03-20 07:39:14.15 2025-03-20 07:39:14.15 1000 BOOST 141924 1114 \N \N 6250041 2025-03-28 11:44:16.425 2025-03-28 11:44:16.425 2000 BOOST 141924 20864 \N \N 6250042 2025-03-19 19:02:14.772 2025-03-19 19:02:14.772 1000 BOOST 141924 21003 \N \N 6250043 2025-03-20 04:24:12.907 2025-03-20 04:24:12.907 1000 BOOST 141924 891 \N \N 6250044 2025-03-19 03:36:12.938 2025-03-19 03:36:12.938 2000 BOOST 141924 21540 \N \N 6250045 2025-03-20 08:20:14.429 2025-03-20 08:20:14.429 2000 BOOST 141924 17116 \N \N 6250046 2024-01-14 14:40:12.865 2024-01-14 14:40:12.865 1000 BOOST 109138 4474 \N \N 6250047 2025-03-19 19:25:12.181 2025-03-19 19:25:12.181 2000 BOOST 141924 1631 \N \N 6250048 2025-03-19 12:20:14.38 2025-03-19 12:20:14.38 2000 BOOST 141924 659 \N \N 6250049 2025-03-19 21:02:13.265 2025-03-19 21:02:13.265 2000 BOOST 141924 19796 \N \N 6250050 2025-03-20 05:05:14.497 2025-03-20 05:05:14.497 2000 BOOST 141924 13763 \N \N 6250051 2024-01-14 14:55:13.227 2024-01-14 14:55:13.227 1000 BOOST 109142 2492 \N \N 6250052 2025-03-20 00:16:13.671 2025-03-20 00:16:13.671 1000 BOOST 141924 20243 \N \N 6250053 2025-03-28 12:29:13.064 2025-03-28 12:29:13.064 5000 BOOST 141924 19689 \N \N 6250054 2025-03-18 21:23:14.224 2025-03-18 21:23:14.224 1000 BOOST 141924 8326 \N \N 6250055 2025-03-19 13:42:12.899 2025-03-19 13:42:12.899 2000 BOOST 141924 1478 \N \N 6250056 2025-03-28 10:44:14.649 2025-03-28 10:44:14.649 3000 BOOST 141924 21090 \N \N 6250057 2025-03-26 03:10:14.464 2025-03-26 03:10:14.464 1000 BOOST 141924 21824 \N \N 6250058 2025-03-20 10:05:13.348 2025-03-20 10:05:13.348 3000 BOOST 141924 16939 \N \N 6250059 2024-01-14 15:03:12.621 2024-01-14 15:03:12.621 1000 BOOST 109142 14280 \N \N 6250060 2025-03-26 03:13:12.689 2025-03-26 03:13:12.689 2000 BOOST 141924 16653 \N \N 6250061 2025-03-26 03:21:14.547 2025-03-26 03:21:14.547 2000 BOOST 141924 687 \N \N 6250062 2025-03-20 04:22:12.904 2025-03-20 04:22:12.904 1000 BOOST 141924 12516 \N \N 6250063 2025-03-28 10:32:12.238 2025-03-28 10:32:12.238 2000 BOOST 141924 9262 \N \N 6250064 2025-03-19 13:39:14.345 2025-03-19 13:39:14.345 2000 BOOST 141924 16598 \N \N 6250065 2025-03-19 04:14:13.545 2025-03-19 04:14:13.545 2000 BOOST 141924 5828 \N \N 6250066 2025-03-20 03:42:14.096 2025-03-20 03:42:14.096 1000 BOOST 141924 20099 \N \N 6250067 2025-03-19 22:08:13.545 2025-03-19 22:08:13.545 3000 BOOST 141924 19943 \N \N 6250068 2024-01-14 14:41:12.372 2024-01-14 14:41:12.372 1000 BOOST 109138 7654 \N \N 6250069 2024-01-14 14:57:13.333 2024-01-14 14:57:13.333 1000 BOOST 109138 19992 \N \N 6250070 2025-03-26 05:32:13.323 2025-03-26 05:32:13.323 1000 BOOST 141924 21042 \N \N 6250071 2025-03-19 07:02:14.392 2025-03-19 07:02:14.392 2000 BOOST 141924 15148 \N \N 6250072 2025-03-19 20:51:13.173 2025-03-19 20:51:13.173 3000 BOOST 141924 698 \N \N 6250073 2025-03-19 11:36:14.174 2025-03-19 11:36:14.174 2000 BOOST 141924 1611 \N \N 6250074 2025-03-19 23:28:14.095 2025-03-19 23:28:14.095 3000 BOOST 141924 1454 \N \N 6250075 2025-03-19 00:05:14.884 2025-03-19 00:05:14.884 1000 BOOST 141924 16214 \N \N 6250076 2025-03-26 03:59:12.893 2025-03-26 03:59:12.893 2000 BOOST 141924 1737 \N \N 6250077 2024-01-14 14:39:12.574 2024-01-14 14:39:12.574 1000 BOOST 109142 16356 \N \N 6250078 2025-03-19 22:42:13.733 2025-03-19 22:42:13.733 1000 BOOST 141924 15196 \N \N 6250079 2025-03-28 10:29:14.512 2025-03-28 10:29:14.512 3000 BOOST 141924 17455 \N \N 6250080 2025-03-20 04:35:12.982 2025-03-20 04:35:12.982 1000 BOOST 141924 21012 \N \N 6250081 2025-03-26 05:07:13.186 2025-03-26 05:07:13.186 1000 BOOST 141924 17708 \N \N 6250082 2025-03-20 12:06:12.778 2025-03-20 12:06:12.778 4000 BOOST 141924 19826 \N \N 6250083 2025-03-20 12:26:12.893 2025-03-20 12:26:12.893 2000 BOOST 141924 20073 \N \N 6250084 2025-03-26 03:24:14.582 2025-03-26 03:24:14.582 1000 BOOST 141924 16769 \N \N 6250085 2025-03-20 07:25:14.075 2025-03-20 07:25:14.075 1000 BOOST 141924 5779 \N \N 6250086 2025-03-19 23:58:15.548 2025-03-19 23:58:15.548 2000 BOOST 141924 633 \N \N 6250087 2025-03-19 15:01:13.368 2025-03-19 15:01:13.368 1000 BOOST 141924 19332 \N \N 6250088 2025-03-19 22:03:13.528 2025-03-19 22:03:13.528 1000 BOOST 141924 16348 \N \N 6250089 2025-03-20 12:57:13.073 2025-03-20 12:57:13.073 2000 BOOST 141924 20205 \N \N 6250090 2025-03-20 03:37:14.046 2025-03-20 03:37:14.046 5000 BOOST 141924 21349 \N \N 6250091 2025-03-18 22:49:14.408 2025-03-18 22:49:14.408 1000 BOOST 141924 1273 \N \N 6250092 2025-03-20 05:49:13.043 2025-03-20 05:49:13.043 2000 BOOST 141924 965 \N \N 6250093 2025-03-29 08:41:12.904 2025-03-29 08:41:12.904 1000 BOOST 141924 17592 \N \N 6250094 2025-03-28 11:21:14.776 2025-03-28 11:21:14.776 1000 BOOST 141924 14225 \N \N 6250095 2025-03-19 11:43:14.105 2025-03-19 11:43:14.105 3000 BOOST 141924 20502 \N \N 6250096 2025-03-20 08:30:14.498 2025-03-20 08:30:14.498 2000 BOOST 141924 5661 \N \N 6250097 2025-03-19 19:05:15.297 2025-03-19 19:05:15.297 1000 BOOST 141924 12736 \N \N 6250098 2024-01-14 14:54:12.741 2024-01-14 14:54:12.741 1000 BOOST 109142 7097 \N \N 6250099 2025-03-19 21:41:13.433 2025-03-19 21:41:13.433 3000 BOOST 141924 18533 \N \N 6250100 2025-03-19 22:43:13.736 2025-03-19 22:43:13.736 4000 BOOST 141924 1237 \N \N 6250101 2024-01-14 14:57:13.266 2024-01-14 14:57:13.266 1000 BOOST 109142 7425 \N \N 6250102 2025-03-19 21:10:13.322 2025-03-19 21:10:13.322 1000 BOOST 141924 4035 \N \N 6250103 2025-03-18 21:27:14.273 2025-03-18 21:27:14.273 1000 BOOST 141924 630 \N \N 6250104 2025-03-19 22:41:13.725 2025-03-19 22:41:13.725 2000 BOOST 141924 4128 \N \N 6250105 2024-01-14 14:50:12.782 2024-01-14 14:50:12.782 1000 BOOST 109138 1044 \N \N 6250106 2025-03-20 06:11:13.613 2025-03-20 06:11:13.613 2000 BOOST 141924 4459 \N \N 6250107 2025-03-20 05:52:13.075 2025-03-20 05:52:13.075 3000 BOOST 141924 14278 \N \N 6250108 2024-01-14 14:42:12.837 2024-01-14 14:42:12.837 1000 BOOST 109138 1618 \N \N 6250109 2025-03-19 18:10:14.247 2025-03-19 18:10:14.247 3000 BOOST 141924 10979 \N \N 6250110 2025-03-19 02:30:14.55 2025-03-19 02:30:14.55 1000 BOOST 141924 17030 \N \N 6250111 2025-03-19 19:53:16.227 2025-03-19 19:53:16.227 2000 BOOST 141924 6058 \N \N 6250112 2025-03-19 10:36:14.198 2025-03-19 10:36:14.198 2000 BOOST 141924 16456 \N \N 6250113 2025-03-26 05:24:13.298 2025-03-26 05:24:13.298 3000 BOOST 141924 2327 \N \N 6250114 2025-03-19 05:24:13.918 2025-03-19 05:24:13.918 1000 BOOST 141924 15549 \N \N 6250115 2025-03-18 17:40:13.66 2025-03-18 17:40:13.66 1000 BOOST 141924 8505 \N \N 6250116 2025-03-19 09:55:13.782 2025-03-19 09:55:13.782 1000 BOOST 141924 685 \N \N 6250117 2025-03-18 21:19:13.655 2025-03-18 21:19:13.655 1000 BOOST 141924 1051 \N \N 6250118 2025-03-19 10:14:14.022 2025-03-19 10:14:14.022 1000 BOOST 141924 9355 \N \N 6250119 2025-03-20 03:41:14.082 2025-03-20 03:41:14.082 2000 BOOST 141924 20904 \N \N 6250120 2025-03-26 04:55:13.165 2025-03-26 04:55:13.165 5000 BOOST 141924 14260 \N \N 6250121 2025-03-20 04:20:12.9 2025-03-20 04:20:12.9 2000 BOOST 141924 5961 \N \N 6250122 2025-03-19 10:51:14.299 2025-03-19 10:51:14.299 1000 BOOST 141924 1483 \N \N 6250123 2025-03-20 10:15:13.302 2025-03-20 10:15:13.302 3000 BOOST 141924 794 \N \N 6250124 2025-03-19 05:50:14.059 2025-03-19 05:50:14.059 1000 BOOST 141924 4692 \N \N 6250125 2025-03-20 08:52:12.889 2025-03-20 08:52:12.889 2000 BOOST 141924 16633 \N \N 6250126 2025-03-20 05:21:12.706 2025-03-20 05:21:12.706 2000 BOOST 141924 14774 \N \N 6250127 2024-01-14 15:04:13.446 2024-01-14 15:04:13.446 1000 BOOST 109142 679 \N \N 6250128 2025-03-20 09:15:13.057 2025-03-20 09:15:13.057 3000 BOOST 141924 7418 \N \N 6250129 2025-03-26 03:35:14.634 2025-03-26 03:35:14.634 1000 BOOST 141924 20198 \N \N 6250130 2025-03-19 14:23:13.122 2025-03-19 14:23:13.122 5000 BOOST 141924 15192 \N \N 6250131 2025-03-20 09:10:13.018 2025-03-20 09:10:13.018 3000 BOOST 141924 814 \N \N 6250132 2025-03-28 11:32:15.167 2025-03-28 11:32:15.167 3000 BOOST 141924 1105 \N \N 6250133 2025-03-28 12:12:12.516 2025-03-28 12:12:12.516 4000 BOOST 141924 20861 \N \N 6250134 2025-03-19 22:24:13.658 2025-03-19 22:24:13.658 3000 BOOST 141924 20646 \N \N 6250135 2025-03-20 10:00:13.229 2025-03-20 10:00:13.229 1000 BOOST 141924 21040 \N \N 6250136 2025-03-19 06:31:14.264 2025-03-19 06:31:14.264 2000 BOOST 141924 16177 \N \N 6250137 2025-03-28 11:08:12.465 2025-03-28 11:08:12.465 2000 BOOST 141924 18017 \N \N 6250138 2025-03-26 02:57:14.31 2025-03-26 02:57:14.31 2000 BOOST 141924 2724 \N \N 6250139 2025-03-20 12:00:12.434 2025-03-20 12:00:12.434 3000 BOOST 141924 896 \N \N 6250140 2025-03-26 06:42:13.651 2025-03-26 06:42:13.651 2000 BOOST 141924 19005 \N \N 6250141 2025-03-19 17:54:13.905 2025-03-19 17:54:13.905 1000 BOOST 141924 9438 \N \N 6250142 2025-03-20 06:46:13.806 2025-03-20 06:46:13.806 2000 BOOST 141924 6419 \N \N 6250143 2025-03-29 08:45:12.866 2025-03-29 08:45:12.866 1000 BOOST 141924 12097 \N \N 6250144 2025-03-26 05:19:13.267 2025-03-26 05:19:13.267 2000 BOOST 141924 2206 \N \N 6250145 2025-03-20 07:18:14.027 2025-03-20 07:18:14.027 3000 BOOST 141924 21296 \N \N 6250146 2025-03-19 17:37:12.912 2025-03-19 17:37:12.912 5000 BOOST 141924 10398 \N \N 6250147 2025-03-19 16:45:14.255 2025-03-19 16:45:14.255 2000 BOOST 141924 9335 \N \N 6250148 2025-03-26 05:14:13.241 2025-03-26 05:14:13.241 4000 BOOST 141924 2460 \N \N 6250149 2025-03-19 14:20:13.098 2025-03-19 14:20:13.098 1000 BOOST 141924 1468 \N \N 6250150 2025-03-19 14:08:13.044 2025-03-19 14:08:13.044 3000 BOOST 141924 1740 \N \N 6250151 2025-03-19 22:13:13.571 2025-03-19 22:13:13.571 2000 BOOST 141924 21794 \N \N 6250152 2025-03-20 03:18:13.406 2025-03-20 03:18:13.406 3000 BOOST 141924 20606 \N \N 6250153 2025-03-19 12:31:14.416 2025-03-19 12:31:14.416 1000 BOOST 141924 900 \N \N 6250154 2025-03-20 12:47:13.026 2025-03-20 12:47:13.026 4000 BOOST 141924 10611 \N \N 6250155 2025-03-19 20:55:13.207 2025-03-19 20:55:13.207 2000 BOOST 141924 8004 \N \N 6250156 2025-03-19 11:01:14.564 2025-03-19 11:01:14.564 1000 BOOST 141924 18423 \N \N 6250157 2025-03-26 05:35:13.36 2025-03-26 05:35:13.36 5000 BOOST 141924 16387 \N \N 6250158 2025-03-26 03:37:14.619 2025-03-26 03:37:14.619 3000 BOOST 141924 5825 \N \N 6250159 2025-03-19 03:57:13.487 2025-03-19 03:57:13.487 1000 BOOST 141924 12422 \N \N 6250160 2025-03-29 08:35:12.856 2025-03-29 08:35:12.856 2000 BOOST 141924 6160 \N \N 6250161 2025-03-19 12:04:14.269 2025-03-19 12:04:14.269 2000 BOOST 141924 10818 \N \N 6250162 2025-03-19 10:18:13.998 2025-03-19 10:18:13.998 1000 BOOST 141924 1092 \N \N 6250163 2025-03-19 05:06:13.813 2025-03-19 05:06:13.813 1000 BOOST 141924 20906 \N \N 6250164 2025-03-19 05:22:13.934 2025-03-19 05:22:13.934 2000 BOOST 141924 13216 \N \N 6250165 2025-03-20 05:09:13.245 2025-03-20 05:09:13.245 2000 BOOST 141924 17519 \N \N 6250166 2025-03-18 18:51:13.538 2025-03-18 18:51:13.538 1000 BOOST 141924 6526 \N \N 6250167 2025-03-20 09:29:13.113 2025-03-20 09:29:13.113 2000 BOOST 141924 18314 \N \N 6250168 2025-03-19 09:08:13.297 2025-03-19 09:08:13.297 1000 BOOST 141924 14552 \N \N 6250169 2025-03-19 21:39:13.425 2025-03-19 21:39:13.425 2000 BOOST 141924 8423 \N \N 6250170 2025-03-19 21:29:13.374 2025-03-19 21:29:13.374 2000 BOOST 141924 20454 \N \N 6250171 2025-03-19 22:53:13.787 2025-03-19 22:53:13.787 2000 BOOST 141924 21249 \N \N 6250172 2025-03-20 01:41:12.972 2025-03-20 01:41:12.972 2000 BOOST 141924 690 \N \N 6250173 2025-03-26 04:38:13.064 2025-03-26 04:38:13.064 3000 BOOST 141924 925 \N \N 6250174 2025-03-20 10:51:13.558 2025-03-20 10:51:13.558 2000 BOOST 141924 8729 \N \N 6250175 2025-03-19 15:28:13.593 2025-03-19 15:28:13.593 2000 BOOST 141924 7119 \N \N 6250176 2025-03-20 11:37:13.868 2025-03-20 11:37:13.868 7000 BOOST 141924 18232 \N \N 6250177 2025-03-28 12:07:12.485 2025-03-28 12:07:12.485 2000 BOOST 141924 12749 \N \N 6250178 2025-03-19 14:36:13.231 2025-03-19 14:36:13.231 1000 BOOST 141924 4323 \N \N 6250179 2025-03-19 06:22:13.581 2025-03-19 06:22:13.581 2000 BOOST 141924 649 \N \N 6250180 2025-03-20 11:33:13.839 2025-03-20 11:33:13.839 2000 BOOST 141924 9242 \N \N 6250181 2025-03-26 04:32:15.378 2025-03-26 04:32:15.378 4000 BOOST 141924 10693 \N \N 6250182 2025-03-26 05:16:13.234 2025-03-26 05:16:13.234 3000 BOOST 141924 1800 \N \N 6250183 2025-03-18 22:33:14.777 2025-03-18 22:33:14.777 2000 BOOST 141924 21239 \N \N 6250184 2025-03-20 11:01:13.696 2025-03-20 11:01:13.696 4000 BOOST 141924 6229 \N \N 6250185 2025-03-20 09:30:13.116 2025-03-20 09:30:13.116 1000 BOOST 141924 2492 \N \N 6250186 2024-01-14 14:32:12.389 2024-01-14 14:32:12.389 1000 BOOST 109138 16406 \N \N 6250187 2025-03-20 00:20:13.701 2025-03-20 00:20:13.701 1000 BOOST 141924 1720 \N \N 6250188 2025-03-20 08:47:14.618 2025-03-20 08:47:14.618 4000 BOOST 141924 17953 \N \N 6250189 2025-03-20 11:28:13.81 2025-03-20 11:28:13.81 4000 BOOST 141924 21814 \N \N 6250190 2025-03-20 02:05:13.077 2025-03-20 02:05:13.077 1000 BOOST 141924 12102 \N \N 6250191 2025-03-20 04:26:12.909 2025-03-20 04:26:12.909 1000 BOOST 141924 2748 \N \N 6250192 2025-03-19 04:24:13.654 2025-03-19 04:24:13.654 2000 BOOST 141924 9365 \N \N 6250193 2025-03-19 20:59:13.217 2025-03-19 20:59:13.217 3000 BOOST 141924 10986 \N \N 6250194 2025-03-20 07:59:14.226 2025-03-20 07:59:14.226 2000 BOOST 141924 10731 \N \N 6250195 2025-03-26 06:00:12.571 2025-03-26 06:00:12.571 5000 BOOST 141924 3304 \N \N 6250196 2025-03-19 04:33:13.705 2025-03-19 04:33:13.705 1000 BOOST 141924 20058 \N \N 6250197 2025-03-20 00:36:13.812 2025-03-20 00:36:13.812 2000 BOOST 141924 11648 \N \N 6250198 2025-03-19 18:21:14.739 2025-03-19 18:21:14.739 2000 BOOST 141924 21139 \N \N 6250199 2024-01-14 15:15:12.991 2024-01-14 15:15:12.991 1000 BOOST 109138 20291 \N \N 6250200 2025-03-26 02:27:15.327 2025-03-26 02:27:15.327 1000 BOOST 141924 10060 \N \N 6250201 2025-03-19 16:46:14.259 2025-03-19 16:46:14.259 1000 BOOST 141924 12490 \N \N 6250202 2025-03-26 04:35:15.311 2025-03-26 04:35:15.311 2000 BOOST 141924 11760 \N \N 6250203 2025-03-20 07:10:13.956 2025-03-20 07:10:13.956 4000 BOOST 141924 5173 \N \N 6250204 2025-03-19 17:13:14.483 2025-03-19 17:13:14.483 2000 BOOST 141924 10591 \N \N 6250205 2025-03-20 10:50:13.549 2025-03-20 10:50:13.549 2000 BOOST 141924 5377 \N \N 6250206 2025-03-18 23:20:15.158 2025-03-18 23:20:15.158 1000 BOOST 141924 9354 \N \N 6250207 2025-03-26 05:58:12.546 2025-03-26 05:58:12.546 1000 BOOST 141924 1439 \N \N 6250208 2025-03-20 09:48:13.146 2025-03-20 09:48:13.146 5000 BOOST 141924 16296 \N \N 6250209 2025-03-19 22:55:13.81 2025-03-19 22:55:13.81 2000 BOOST 141924 18630 \N \N 6250210 2024-01-14 14:40:12.861 2024-01-14 14:40:12.861 1000 BOOST 109142 20523 \N \N 6250211 2025-03-19 19:36:15.552 2025-03-19 19:36:15.552 7000 BOOST 141924 9339 \N \N 6250212 2025-03-20 10:08:13.251 2025-03-20 10:08:13.251 1000 BOOST 141924 726 \N \N 6250213 2025-03-20 06:57:13.855 2025-03-20 06:57:13.855 1000 BOOST 141924 16839 \N \N 6250214 2025-03-19 19:45:15.043 2025-03-19 19:45:15.043 1000 BOOST 141924 19512 \N \N 6250215 2025-03-20 03:51:14.158 2025-03-20 03:51:14.158 3000 BOOST 141924 1272 \N \N 6250216 2025-03-20 04:33:12.963 2025-03-20 04:33:12.963 4000 BOOST 141924 7668 \N \N 6250217 2025-03-20 12:31:12.916 2025-03-20 12:31:12.916 5000 BOOST 141924 5978 \N \N 6250218 2025-03-19 16:33:14.128 2025-03-19 16:33:14.128 5000 BOOST 141924 21578 \N \N 6250219 2024-01-14 14:43:14.058 2024-01-14 14:43:14.058 1000 BOOST 109138 1959 \N \N 6250220 2025-03-20 03:25:14.411 2025-03-20 03:25:14.411 1000 BOOST 141924 21062 \N \N 6250221 2025-03-18 19:10:13.599 2025-03-18 19:10:13.599 1000 BOOST 141924 2328 \N \N 6250222 2025-03-20 06:44:13.712 2025-03-20 06:44:13.712 2000 BOOST 141924 2338 \N \N 6250223 2025-03-19 22:10:13.56 2025-03-19 22:10:13.56 2000 BOOST 141924 15806 \N \N 6250224 2025-03-20 01:38:12.953 2025-03-20 01:38:12.953 3000 BOOST 141924 11516 \N \N 6250225 2025-03-19 07:08:12.882 2025-03-19 07:08:12.882 4000 BOOST 141924 17042 \N \N 6250226 2025-03-20 12:04:12.523 2025-03-20 12:04:12.523 2000 BOOST 141924 5870 \N \N 6250227 2025-03-20 08:53:12.877 2025-03-20 08:53:12.877 2000 BOOST 141924 1552 \N \N 6250228 2025-03-26 06:36:13.654 2025-03-26 06:36:13.654 1000 BOOST 141924 20613 \N \N 6250229 2025-03-19 18:57:14.765 2025-03-19 18:57:14.765 1000 BOOST 141924 11328 \N \N 6250230 2025-03-20 02:20:13.165 2025-03-20 02:20:13.165 3000 BOOST 141924 9366 \N \N 6250231 2025-03-19 02:31:14.544 2025-03-19 02:31:14.544 2000 BOOST 141924 6382 \N \N 6250232 2025-03-18 22:06:14.512 2025-03-18 22:06:14.512 1000 BOOST 141924 2952 \N \N 6250233 2025-03-26 05:38:13.382 2025-03-26 05:38:13.382 3000 BOOST 141924 21413 \N \N 6250234 2024-01-14 15:02:12.616 2024-01-14 15:02:12.616 1000 BOOST 109138 6160 \N \N 6250235 2025-03-19 10:11:13.958 2025-03-19 10:11:13.958 2000 BOOST 141924 4654 \N \N 6250236 2025-03-20 00:02:15.566 2025-03-20 00:02:15.566 1000 BOOST 141924 2652 \N \N 6250237 2025-03-26 04:11:12.925 2025-03-26 04:11:12.925 1000 BOOST 141924 13378 \N \N 6250238 2025-03-20 09:21:13.09 2025-03-20 09:21:13.09 3000 BOOST 141924 21022 \N \N 6250239 2025-03-26 04:06:14.987 2025-03-26 04:06:14.987 1000 BOOST 141924 10661 \N \N 6250240 2025-03-26 05:29:13.302 2025-03-26 05:29:13.302 2000 BOOST 141924 2309 \N \N 6250241 2025-03-26 05:41:13.359 2025-03-26 05:41:13.359 1000 BOOST 141924 14705 \N \N 6250242 2025-03-20 02:55:13.313 2025-03-20 02:55:13.313 3000 BOOST 141924 666 \N \N 6250243 2025-03-26 05:44:13.367 2025-03-26 05:44:13.367 4000 BOOST 141924 21620 \N \N 6250244 2025-03-20 01:57:12.998 2025-03-20 01:57:12.998 2000 BOOST 141924 20812 \N \N 6250245 2025-03-19 07:38:14.735 2025-03-19 07:38:14.735 2000 BOOST 141924 16259 \N \N 6250246 2025-03-19 03:07:12.851 2025-03-19 03:07:12.851 1000 BOOST 141924 7916 \N \N 6250247 2025-03-18 23:48:14.843 2025-03-18 23:48:14.843 2000 BOOST 141924 16059 \N \N 6250248 2025-03-20 00:10:12.245 2025-03-20 00:10:12.245 3000 BOOST 141924 21019 \N \N 6250249 2025-03-20 08:13:14.389 2025-03-20 08:13:14.389 1000 BOOST 141924 3729 \N \N 6250250 2025-03-20 00:45:12.432 2025-03-20 00:45:12.432 1000 BOOST 141924 802 \N \N 6250251 2025-03-28 10:54:12.391 2025-03-28 10:54:12.391 2000 BOOST 141924 19189 \N \N 6250252 2025-03-26 04:46:13.107 2025-03-26 04:46:13.107 1000 BOOST 141924 5761 \N \N 6250253 2025-03-26 05:12:13.221 2025-03-26 05:12:13.221 2000 BOOST 141924 1411 \N \N 6250254 2025-03-19 14:55:13.324 2025-03-19 14:55:13.324 2000 BOOST 141924 5497 \N \N 6250255 2025-03-19 06:59:12.823 2025-03-19 06:59:12.823 1000 BOOST 141924 20254 \N \N 6250256 2025-03-26 06:14:13.543 2025-03-26 06:14:13.543 2000 BOOST 141924 13398 \N \N 6250257 2025-03-19 19:10:15.487 2025-03-19 19:10:15.487 3000 BOOST 141924 963 \N \N 6250258 2025-03-18 18:45:13.453 2025-03-18 18:45:13.453 1000 BOOST 141924 16336 \N \N 6250259 2025-03-20 10:25:13.369 2025-03-20 10:25:13.369 2000 BOOST 141924 20663 \N \N 6250260 2025-03-20 01:52:13.017 2025-03-20 01:52:13.017 4000 BOOST 141924 18178 \N \N 6250261 2025-03-26 02:28:14.074 2025-03-26 02:28:14.074 1000 BOOST 141924 19193 \N \N 6250262 2025-03-20 01:56:13.013 2025-03-20 01:56:13.013 1000 BOOST 141924 19992 \N \N 6250263 2025-03-28 11:48:12.403 2025-03-28 11:48:12.403 2000 BOOST 141924 12277 \N \N 6250264 2025-03-20 07:42:14.168 2025-03-20 07:42:14.168 3000 BOOST 141924 9177 \N \N 6250265 2025-03-19 07:57:12.948 2025-03-19 07:57:12.948 1000 BOOST 141924 7877 \N \N 6250266 2025-03-19 17:11:12.456 2025-03-19 17:11:12.456 3000 BOOST 141924 18430 \N \N 6250267 2025-03-18 22:40:14.275 2025-03-18 22:40:14.275 2000 BOOST 141924 899 \N \N 6250268 2025-03-20 12:05:13.981 2025-03-20 12:05:13.981 3000 BOOST 141924 7667 \N \N 6250269 2025-03-19 09:03:13.164 2025-03-19 09:03:13.164 2000 BOOST 141924 9874 \N \N 6250270 2025-03-20 01:19:12.864 2025-03-20 01:19:12.864 2000 BOOST 141924 18468 \N \N 6250271 2024-01-14 15:02:12.707 2024-01-14 15:02:12.707 1000 BOOST 109142 1549 \N \N 6250272 2025-03-19 23:30:15.195 2025-03-19 23:30:15.195 1000 BOOST 141924 20577 \N \N 6250273 2025-03-20 03:21:13.632 2025-03-20 03:21:13.632 1000 BOOST 141924 21064 \N \N 6250274 2025-03-19 15:04:13.436 2025-03-19 15:04:13.436 1000 BOOST 141924 2010 \N \N 6250275 2024-01-14 15:18:12.797 2024-01-14 15:18:12.797 1000 BOOST 109142 4177 \N \N 6250276 2025-03-20 12:27:12.897 2025-03-20 12:27:12.897 3000 BOOST 141924 805 \N \N 6250277 2025-03-26 06:11:13.482 2025-03-26 06:11:13.482 2000 BOOST 141924 11750 \N \N 6250278 2025-03-28 11:52:12.415 2025-03-28 11:52:12.415 2000 BOOST 141924 21555 \N \N 6250279 2024-01-14 15:07:12.898 2024-01-14 15:07:12.898 1000 BOOST 109142 21222 \N \N 6250280 2025-03-19 15:58:13.858 2025-03-19 15:58:13.858 2000 BOOST 141924 16562 \N \N 6250281 2024-01-14 14:33:14.161 2024-01-14 14:33:14.161 1000 BOOST 109138 1326 \N \N 6250282 2025-03-20 09:24:13.094 2025-03-20 09:24:13.094 4000 BOOST 141924 2367 \N \N 6250283 2025-03-19 09:07:13.277 2025-03-19 09:07:13.277 2000 BOOST 141924 21701 \N \N 6250284 2024-01-14 14:38:12.835 2024-01-14 14:38:12.835 1000 BOOST 109138 20852 \N \N 6250285 2024-01-14 15:08:12.971 2024-01-14 15:08:12.971 1000 BOOST 109138 11829 \N \N 6250286 2025-03-26 04:07:13.006 2025-03-26 04:07:13.006 1000 BOOST 141924 787 \N \N 6250287 2025-03-29 15:08:13.576 2025-03-29 15:08:13.576 3000 BOOST 141924 937 \N \N 6250288 2025-03-26 03:47:14.761 2025-03-26 03:47:14.761 1000 BOOST 141924 8173 \N \N 6250289 2025-03-19 20:39:12.81 2025-03-19 20:39:12.81 1000 BOOST 141924 16556 \N \N 6250290 2025-03-19 23:49:15.51 2025-03-19 23:49:15.51 2000 BOOST 141924 21709 \N \N 6250291 2025-03-20 02:44:13.255 2025-03-20 02:44:13.255 2000 BOOST 141924 18174 \N \N 6250292 2025-03-26 02:42:15.39 2025-03-26 02:42:15.39 2000 BOOST 141924 780 \N \N 6250293 2025-03-19 17:46:13.206 2025-03-19 17:46:13.206 2000 BOOST 141924 797 \N \N 6250294 2025-03-19 21:12:13.332 2025-03-19 21:12:13.332 1000 BOOST 141924 1124 \N \N 6250295 2025-03-20 06:10:13.618 2025-03-20 06:10:13.618 2000 BOOST 141924 20963 \N \N 6250296 2025-03-19 10:40:14.212 2025-03-19 10:40:14.212 1000 BOOST 141924 16830 \N \N 6250297 2025-03-19 22:44:13.741 2025-03-19 22:44:13.741 3000 BOOST 141924 9331 \N \N 6250298 2025-03-26 06:37:13.655 2025-03-26 06:37:13.655 2000 BOOST 141924 16950 \N \N 6250299 2025-03-19 22:22:13.645 2025-03-19 22:22:13.645 2000 BOOST 141924 11263 \N \N 6250300 2025-03-26 05:33:13.324 2025-03-26 05:33:13.324 6000 BOOST 141924 16858 \N \N 6250301 2025-03-19 19:39:15.579 2025-03-19 19:39:15.579 1000 BOOST 141924 836 \N \N 6250302 2025-03-20 12:29:12.907 2025-03-20 12:29:12.907 3000 BOOST 141924 20504 \N \N 6250303 2025-03-18 19:01:13.562 2025-03-18 19:01:13.562 1000 BOOST 141924 13622 \N \N 6250304 2025-03-20 12:44:13.001 2025-03-20 12:44:13.001 2000 BOOST 141924 21688 \N \N 6250305 2025-03-20 10:28:13.383 2025-03-20 10:28:13.383 1000 BOOST 141924 2513 \N \N 6250306 2025-03-19 21:49:13.457 2025-03-19 21:49:13.457 3000 BOOST 141924 9758 \N \N 6250307 2025-03-26 02:17:15.286 2025-03-26 02:17:15.286 4000 BOOST 141924 9796 \N \N 6250308 2025-03-19 18:02:13.782 2025-03-19 18:02:13.782 1000 BOOST 141924 4084 \N \N 6250309 2025-03-19 05:43:14.013 2025-03-19 05:43:14.013 1000 BOOST 141924 11240 \N \N 6250310 2025-03-19 05:20:13.915 2025-03-19 05:20:13.915 3000 BOOST 141924 670 \N \N 6250311 2025-03-18 19:18:13.63 2025-03-18 19:18:13.63 1000 BOOST 141924 15367 \N \N 6250312 2025-03-26 06:41:13.661 2025-03-26 06:41:13.661 3000 BOOST 141924 16284 \N \N 6250313 2025-03-19 05:12:13.853 2025-03-19 05:12:13.853 2000 BOOST 141924 21072 \N \N 6250314 2025-03-20 11:59:12.429 2025-03-20 11:59:12.429 4000 BOOST 141924 4177 \N \N 6250315 2025-03-19 08:53:12.863 2025-03-19 08:53:12.863 1000 BOOST 141924 1881 \N \N 6250316 2024-01-14 15:16:12.395 2024-01-14 15:16:12.395 1000 BOOST 109138 20715 \N \N 6250317 2025-03-26 03:43:14.701 2025-03-26 03:43:14.701 1000 BOOST 141924 21832 \N \N 6250318 2025-03-26 04:57:15.198 2025-03-26 04:57:15.198 2000 BOOST 141924 7583 \N \N 6250319 2025-03-26 04:16:12.97 2025-03-26 04:16:12.97 3000 BOOST 141924 14857 \N \N 6250320 2025-03-28 11:16:12.229 2025-03-28 11:16:12.229 3000 BOOST 141924 14255 \N \N 6250321 2025-03-26 02:35:14.123 2025-03-26 02:35:14.123 2000 BOOST 141924 714 \N \N 6250322 2025-03-20 00:11:13.646 2025-03-20 00:11:13.646 2000 BOOST 141924 8289 \N \N 6250323 2025-03-19 22:19:13.626 2025-03-19 22:19:13.626 2000 BOOST 141924 1298 \N \N 6250324 2025-03-28 12:10:12.498 2025-03-28 12:10:12.498 2000 BOOST 141924 21805 \N \N 6250325 2025-03-18 19:47:13.772 2025-03-18 19:47:13.772 1000 BOOST 141924 21521 \N \N 6250326 2025-03-20 01:15:13.832 2025-03-20 01:15:13.832 2000 BOOST 141924 4984 \N \N 6250327 2025-03-20 08:03:14.283 2025-03-20 08:03:14.283 4000 BOOST 141924 913 \N \N 6250328 2025-03-19 22:27:13.68 2025-03-19 22:27:13.68 1000 BOOST 141924 8998 \N \N 6250329 2025-03-26 04:18:14.964 2025-03-26 04:18:14.964 5000 BOOST 141924 16513 \N \N 6250330 2025-03-20 10:24:13.364 2025-03-20 10:24:13.364 1000 BOOST 141924 20912 \N \N 6250331 2025-03-20 07:22:14.058 2025-03-20 07:22:14.058 3000 BOOST 141924 2963 \N \N 6250332 2025-03-18 17:30:13.423 2025-03-18 17:30:13.423 1000 BOOST 141924 761 \N \N 6250333 2024-01-14 14:43:14.122 2024-01-14 14:43:14.122 1000 BOOST 109142 699 \N \N 6250334 2025-03-20 05:50:13.516 2025-03-20 05:50:13.516 1000 BOOST 141924 21639 \N \N 6250335 2025-03-20 12:13:12.823 2025-03-20 12:13:12.823 1000 BOOST 141924 21207 \N \N 6250336 2025-03-20 06:54:13.814 2025-03-20 06:54:13.814 3000 BOOST 141924 3745 \N \N 6250337 2025-03-28 12:09:12.501 2025-03-28 12:09:12.501 4000 BOOST 141924 19484 \N \N 6250338 2025-03-20 08:43:14.613 2025-03-20 08:43:14.613 2000 BOOST 141924 15160 \N \N 6250339 2025-03-19 13:36:12.88 2025-03-19 13:36:12.88 1000 BOOST 141924 3360 \N \N 6250340 2025-03-26 04:00:14.835 2025-03-26 04:00:14.835 3000 BOOST 141924 1474 \N \N 6250341 2025-03-19 19:34:15.565 2025-03-19 19:34:15.565 1000 BOOST 141924 3683 \N \N 6250342 2025-03-20 02:22:13.151 2025-03-20 02:22:13.151 3000 BOOST 141924 16929 \N \N 6250343 2025-03-20 00:40:12.686 2025-03-20 00:40:12.686 1000 BOOST 141924 21119 \N \N 6250344 2025-03-26 03:40:14.618 2025-03-26 03:40:14.618 3000 BOOST 141924 652 \N \N 6250345 2025-03-20 08:45:14.598 2025-03-20 08:45:14.598 3000 BOOST 141924 19394 \N \N 6250346 2025-03-18 18:41:12.971 2025-03-18 18:41:12.971 1000 BOOST 141924 669 \N \N 6250347 2025-03-26 04:23:12.987 2025-03-26 04:23:12.987 2000 BOOST 141924 19263 \N \N 6250348 2025-03-19 13:33:12.868 2025-03-19 13:33:12.868 2000 BOOST 141924 20500 \N \N 6250349 2025-03-18 21:11:14.075 2025-03-18 21:11:14.075 1000 BOOST 141924 679 \N \N 6250350 2025-03-19 15:56:13.872 2025-03-19 15:56:13.872 3000 BOOST 141924 6335 \N \N 6250351 2025-03-20 08:29:14.511 2025-03-20 08:29:14.511 3000 BOOST 141924 12774 \N \N 6250352 2025-03-20 07:56:14.203 2025-03-20 07:56:14.203 3000 BOOST 141924 21379 \N \N 6250353 2025-03-20 07:41:14.156 2025-03-20 07:41:14.156 1000 BOOST 141924 21412 \N \N 6250354 2025-03-19 23:51:15.518 2025-03-19 23:51:15.518 1000 BOOST 141924 20901 \N \N 6250355 2025-03-18 22:30:14.777 2025-03-18 22:30:14.777 1000 BOOST 141924 11873 \N \N 6250356 2024-01-14 15:03:12.626 2024-01-14 15:03:12.626 1000 BOOST 109138 2061 \N \N 6250357 2025-03-20 10:14:13.304 2025-03-20 10:14:13.304 5000 BOOST 141924 674 \N \N 6250358 2025-03-26 03:27:14.41 2025-03-26 03:27:14.41 2000 BOOST 141924 19117 \N \N 6250359 2025-03-20 02:37:13.196 2025-03-20 02:37:13.196 2000 BOOST 141924 21398 \N \N 6250360 2025-03-26 03:56:14.776 2025-03-26 03:56:14.776 4000 BOOST 141924 20816 \N \N 6250361 2025-03-20 11:02:13.704 2025-03-20 11:02:13.704 6000 BOOST 141924 21829 \N \N 6250362 2025-03-20 05:13:13.267 2025-03-20 05:13:13.267 2000 BOOST 141924 18274 \N \N 6250363 2025-03-19 14:44:13.257 2025-03-19 14:44:13.257 1000 BOOST 141924 16998 \N \N 6250364 2025-03-28 10:45:12.353 2025-03-28 10:45:12.353 4000 BOOST 141924 19924 \N \N 6250365 2025-03-28 10:03:14.4 2025-03-28 10:03:14.4 1000 BOOST 141924 980 \N \N 6250366 2025-03-19 19:28:15.464 2025-03-19 19:28:15.464 1000 BOOST 141924 12278 \N \N 6250367 2025-03-20 07:23:14.061 2025-03-20 07:23:14.061 3000 BOOST 141924 14651 \N \N 6250368 2025-03-28 11:46:16.393 2025-03-28 11:46:16.393 4000 BOOST 141924 21332 \N \N 6250369 2025-03-28 11:17:14.782 2025-03-28 11:17:14.782 3000 BOOST 141924 7746 \N \N 6250370 2025-03-29 08:46:12.918 2025-03-29 08:46:12.918 2000 BOOST 141924 18494 \N \N 6250371 2025-03-20 06:23:13.385 2025-03-20 06:23:13.385 1000 BOOST 141924 12951 \N \N 6250372 2025-03-29 20:32:15.027 2025-03-29 20:32:15.027 6000 BOOST 141924 20439 \N \N 6250373 2025-03-26 05:21:13.255 2025-03-26 05:21:13.255 1000 BOOST 141924 18608 \N \N 6250374 2025-03-19 21:33:13.392 2025-03-19 21:33:13.392 1000 BOOST 141924 13854 \N \N 6250375 2025-03-26 03:48:14.702 2025-03-26 03:48:14.702 1000 BOOST 141924 16808 \N \N 6250376 2025-03-26 05:01:15.203 2025-03-26 05:01:15.203 3000 BOOST 141924 16270 \N \N 6250377 2025-03-18 17:00:13.33 2025-03-18 17:00:13.33 1000 BOOST 141924 14195 \N \N 6250378 2024-01-14 15:09:13.198 2024-01-14 15:09:13.198 1000 BOOST 109142 21520 \N \N 6250379 2024-01-14 14:35:13.927 2024-01-14 14:35:13.927 1000 BOOST 109142 17817 \N \N 6250380 2025-03-28 10:11:14.42 2025-03-28 10:11:14.42 3000 BOOST 141924 4313 \N \N 6250381 2025-03-26 05:42:13.362 2025-03-26 05:42:13.362 2000 BOOST 141924 20990 \N \N 6250382 2025-03-26 05:51:12.416 2025-03-26 05:51:12.416 2000 BOOST 141924 7654 \N \N 6250383 2025-03-19 10:31:14.124 2025-03-19 10:31:14.124 1000 BOOST 141924 12245 \N \N 6250384 2025-03-19 21:25:13.383 2025-03-19 21:25:13.383 1000 BOOST 141924 4768 \N \N 6250385 2024-01-14 14:52:12.869 2024-01-14 14:52:12.869 1000 BOOST 109138 17226 \N \N 6250386 2025-03-20 03:24:14.382 2025-03-20 03:24:14.382 3000 BOOST 141924 16126 \N \N 6250387 2025-03-20 10:56:13.681 2025-03-20 10:56:13.681 3000 BOOST 141924 21666 \N \N 6250388 2024-01-14 15:11:13.111 2024-01-14 15:11:13.111 1000 BOOST 109142 4027 \N \N 6250389 2025-03-19 19:01:14.769 2025-03-19 19:01:14.769 1000 BOOST 141924 21184 \N \N 6250390 2025-03-19 06:30:14.27 2025-03-19 06:30:14.27 1000 BOOST 141924 16954 \N \N 6250391 2025-03-18 20:16:13.153 2025-03-18 20:16:13.153 1000 BOOST 141924 2718 \N \N 6250392 2025-03-28 11:27:16.298 2025-03-28 11:27:16.298 3000 BOOST 141924 21714 \N \N 6250393 2025-03-20 08:00:14.235 2025-03-20 08:00:14.235 3000 BOOST 141924 14939 \N \N 6250394 2025-03-28 11:43:12.722 2025-03-28 11:43:12.722 3000 BOOST 141924 16966 \N \N 6250395 2025-03-28 10:49:12.36 2025-03-28 10:49:12.36 1000 BOOST 141924 20858 \N \N 6250396 2025-03-19 05:48:14.045 2025-03-19 05:48:14.045 1000 BOOST 141924 21585 \N \N 6250397 2025-03-28 12:27:12.589 2025-03-28 12:27:12.589 6000 BOOST 141924 20687 \N \N 6250398 2025-03-28 11:38:14.856 2025-03-28 11:38:14.856 6000 BOOST 141924 17218 \N \N 6250399 2025-03-20 09:08:12.984 2025-03-20 09:08:12.984 3000 BOOST 141924 19333 \N \N 6250400 2025-03-26 03:02:14.365 2025-03-26 03:02:14.365 5000 BOOST 141924 10690 \N \N 6250401 2025-03-20 07:33:14.124 2025-03-20 07:33:14.124 1000 BOOST 141924 9107 \N \N 6250402 2025-03-20 02:42:13.303 2025-03-20 02:42:13.303 2000 BOOST 141924 21248 \N \N 6250403 2025-03-19 07:48:12.87 2025-03-19 07:48:12.87 1000 BOOST 141924 3392 \N \N 6250404 2025-03-19 12:19:14.378 2025-03-19 12:19:14.378 2000 BOOST 141924 20102 \N \N 6250405 2025-03-20 08:24:14.47 2025-03-20 08:24:14.47 2000 BOOST 141924 16350 \N \N 6250406 2025-03-20 11:13:12.013 2025-03-20 11:13:12.013 1000 BOOST 141924 9352 \N \N 6250407 2025-03-26 02:43:13.824 2025-03-26 02:43:13.824 3000 BOOST 141924 20802 \N \N 6250408 2025-03-18 21:16:14.13 2025-03-18 21:16:14.13 1000 BOOST 141924 21238 \N \N 6250409 2025-03-20 03:38:14.076 2025-03-20 03:38:14.076 2000 BOOST 141924 2151 \N \N 6250410 2024-01-14 14:38:12.774 2024-01-14 14:38:12.774 1000 BOOST 109142 21540 \N \N 6250411 2025-03-19 21:55:13.474 2025-03-19 21:55:13.474 1000 BOOST 141924 14258 \N \N 6250412 2025-03-20 09:52:13.17 2025-03-20 09:52:13.17 3000 BOOST 141924 15690 \N \N 6250413 2025-03-28 12:01:12.452 2025-03-28 12:01:12.452 2000 BOOST 141924 1438 \N \N 6250414 2025-03-19 05:31:13.935 2025-03-19 05:31:13.935 1000 BOOST 141924 1425 \N \N 6250415 2025-03-19 07:10:14.457 2025-03-19 07:10:14.457 2000 BOOST 141924 9843 \N \N 6250416 2025-03-20 12:16:12.839 2025-03-20 12:16:12.839 3000 BOOST 141924 1046 \N \N 6250417 2025-03-28 10:37:15.58 2025-03-28 10:37:15.58 3000 BOOST 141924 21369 \N \N 6250418 2025-03-20 05:22:13.328 2025-03-20 05:22:13.328 2000 BOOST 141924 12334 \N \N 6250419 2025-03-26 03:49:14.769 2025-03-26 03:49:14.769 2000 BOOST 141924 12769 \N \N 6250420 2025-03-20 05:25:13.342 2025-03-20 05:25:13.342 2000 BOOST 141924 6471 \N \N 6250421 2024-01-14 15:12:12.975 2024-01-14 15:12:12.975 1000 BOOST 109142 20603 \N \N 6250422 2025-03-20 11:14:13.752 2025-03-20 11:14:13.752 5000 BOOST 141924 825 \N \N 6250423 2025-03-20 01:05:12.815 2025-03-20 01:05:12.815 3000 BOOST 141924 9261 \N \N 6250424 2025-03-19 18:34:15.336 2025-03-19 18:34:15.336 1000 BOOST 141924 15662 \N \N 6250425 2025-03-20 10:59:13.686 2025-03-20 10:59:13.686 2000 BOOST 141924 7899 \N \N 6250426 2025-03-19 01:44:13.381 2025-03-19 01:44:13.381 1000 BOOST 141924 676 \N \N 6250427 2025-03-28 11:10:12.478 2025-03-28 11:10:12.478 4000 BOOST 141924 17713 \N \N 6250428 2025-03-19 11:37:14.165 2025-03-19 11:37:14.165 2000 BOOST 141924 7674 \N \N 6250429 2025-03-20 12:22:12.862 2025-03-20 12:22:12.862 2000 BOOST 141924 20495 \N \N 6250430 2025-03-19 05:26:13.917 2025-03-19 05:26:13.917 1000 BOOST 141924 1970 \N \N 6250431 2025-03-20 02:48:13.276 2025-03-20 02:48:13.276 2000 BOOST 141924 21303 \N \N 6250432 2025-03-28 11:05:16.082 2025-03-28 11:05:16.082 2000 BOOST 141924 940 \N \N 6250433 2025-03-18 19:38:13.729 2025-03-18 19:38:13.729 1000 BOOST 141924 876 \N \N 6250434 2025-03-26 03:53:14.802 2025-03-26 03:53:14.802 2000 BOOST 141924 6202 \N \N 6250435 2025-03-19 09:43:13.696 2025-03-19 09:43:13.696 1000 BOOST 141924 13547 \N \N 6250436 2025-03-20 04:04:12.814 2025-03-20 04:04:12.814 1000 BOOST 141924 5522 \N \N 6250437 2025-03-28 10:10:14.422 2025-03-28 10:10:14.422 4000 BOOST 141924 21026 \N \N 6250438 2025-03-20 04:58:13.181 2025-03-20 04:58:13.181 2000 BOOST 141924 5646 \N \N 6250439 2025-03-20 01:51:13.001 2025-03-20 01:51:13.001 3000 BOOST 141924 5694 \N \N 6250440 2025-03-19 17:45:13.224 2025-03-19 17:45:13.224 3000 BOOST 141924 14650 \N \N 6250441 2025-03-20 12:51:13.045 2025-03-20 12:51:13.045 3000 BOOST 141924 15147 \N \N 6250442 2025-03-19 11:55:14.232 2025-03-19 11:55:14.232 1000 BOOST 141924 992 \N \N 6250443 2025-03-28 10:40:14.649 2025-03-28 10:40:14.649 3000 BOOST 141924 673 \N \N 6250444 2025-03-18 18:15:13.996 2025-03-18 18:15:13.996 1000 BOOST 141924 11158 \N \N 6250445 2025-03-20 11:27:13.828 2025-03-20 11:27:13.828 4000 BOOST 141924 16353 \N \N 6250446 2024-01-14 14:52:12.872 2024-01-14 14:52:12.872 1000 BOOST 109142 20775 \N \N 6250447 2025-03-20 03:17:13.41 2025-03-20 03:17:13.41 3000 BOOST 141924 18313 \N \N 6250448 2025-03-26 06:17:13.554 2025-03-26 06:17:13.554 1000 BOOST 141924 12483 \N \N 6250449 2025-03-20 10:06:13.233 2025-03-20 10:06:13.233 2000 BOOST 141924 17082 \N \N 6250450 2025-03-29 10:06:15.697 2025-03-29 10:06:15.697 2000 BOOST 141924 5527 \N \N 6250451 2025-03-19 04:43:13.728 2025-03-19 04:43:13.728 2000 BOOST 141924 17690 \N \N 6250452 2025-03-20 04:21:12.89 2025-03-20 04:21:12.89 3000 BOOST 141924 15617 \N \N 6250453 2025-03-18 23:47:14.883 2025-03-18 23:47:14.883 1000 BOOST 141924 1959 \N \N 6250454 2025-03-20 10:29:13.398 2025-03-20 10:29:13.398 2000 BOOST 141924 11220 \N \N 6250455 2025-03-20 10:21:13.337 2025-03-20 10:21:13.337 2000 BOOST 141924 979 \N \N 6250456 2025-03-26 03:03:14.367 2025-03-26 03:03:14.367 1000 BOOST 141924 19821 \N \N 6250457 2025-03-19 05:36:13.959 2025-03-19 05:36:13.959 1000 BOOST 141924 1751 \N \N 6250458 2025-03-19 14:17:13.071 2025-03-19 14:17:13.071 1000 BOOST 141924 7389 \N \N 6250459 2025-03-19 14:57:13.307 2025-03-19 14:57:13.307 2000 BOOST 141924 16097 \N \N 6250460 2025-03-26 06:38:13.664 2025-03-26 06:38:13.664 2000 BOOST 141924 658 \N \N 6250461 2025-03-20 04:02:14.228 2025-03-20 04:02:14.228 1000 BOOST 141924 688 \N \N 6250462 2025-03-18 22:15:13.908 2025-03-18 22:15:13.908 1000 BOOST 141924 17533 \N \N 6250463 2025-03-28 11:20:12.258 2025-03-28 11:20:12.258 2000 BOOST 141924 880 \N \N 6250464 2025-03-28 11:58:12.438 2025-03-28 11:58:12.438 4000 BOOST 141924 5759 \N \N 6250465 2025-03-20 00:33:12.642 2025-03-20 00:33:12.642 1000 BOOST 141924 20023 \N \N 6250466 2025-03-26 05:43:13.352 2025-03-26 05:43:13.352 4000 BOOST 141924 19121 \N \N 6250467 2024-01-14 14:36:12.473 2024-01-14 14:36:12.473 1000 BOOST 109138 21520 \N \N 6250468 2025-03-19 20:42:13.094 2025-03-19 20:42:13.094 1000 BOOST 141924 17517 \N \N 6250469 2025-03-20 08:39:14.536 2025-03-20 08:39:14.536 1000 BOOST 141924 9307 \N \N 6250470 2025-03-26 02:59:15.985 2025-03-26 02:59:15.985 2000 BOOST 141924 16965 \N \N 6250471 2025-03-28 10:25:15.497 2025-03-28 10:25:15.497 2000 BOOST 141924 11038 \N \N 6250472 2025-03-18 23:11:15.09 2025-03-18 23:11:15.09 1000 BOOST 141924 20998 \N \N 6250473 2025-03-19 21:24:13.373 2025-03-19 21:24:13.373 1000 BOOST 141924 1697 \N \N 6250474 2025-03-28 10:53:14.677 2025-03-28 10:53:14.677 6000 BOOST 141924 2674 \N \N 6250475 2025-03-19 15:10:13.442 2025-03-19 15:10:13.442 3000 BOOST 141924 910 \N \N 6250476 2025-03-26 04:19:12.963 2025-03-26 04:19:12.963 6000 BOOST 141924 1472 \N \N 6250477 2025-03-28 10:33:15.541 2025-03-28 10:33:15.541 1000 BOOST 141924 10934 \N \N 6250478 2025-03-28 12:11:12.508 2025-03-28 12:11:12.508 5000 BOOST 141924 21541 \N \N 6250479 2025-03-19 12:38:14.468 2025-03-19 12:38:14.468 3000 BOOST 141924 14905 \N \N 6250480 2025-03-19 22:01:13.523 2025-03-19 22:01:13.523 1000 BOOST 141924 1745 \N \N 6250481 2025-03-19 06:32:12.62 2025-03-19 06:32:12.62 1000 BOOST 141924 19494 \N \N 6250482 2025-03-18 21:39:14.358 2025-03-18 21:39:14.358 1000 BOOST 141924 16193 \N \N 6250483 2025-03-20 11:18:13.8 2025-03-20 11:18:13.8 1000 BOOST 141924 11862 \N \N 6250484 2025-03-20 07:11:13.964 2025-03-20 07:11:13.964 1000 BOOST 141924 20987 \N \N 6250485 2025-03-19 04:30:13.675 2025-03-19 04:30:13.675 1000 BOOST 141924 11145 \N \N 6250486 2025-03-20 11:58:12.409 2025-03-20 11:58:12.409 5000 BOOST 141924 15326 \N \N 6250487 2025-03-20 09:16:13.069 2025-03-20 09:16:13.069 1000 BOOST 141924 18734 \N \N 6250488 2025-03-20 00:37:12.65 2025-03-20 00:37:12.65 1000 BOOST 141924 4074 \N \N 6250489 2025-03-19 17:16:12.476 2025-03-19 17:16:12.476 1000 BOOST 141924 17570 \N \N 6250490 2025-03-19 03:52:13.447 2025-03-19 03:52:13.447 1000 BOOST 141924 14449 \N \N 6250491 2025-03-19 15:03:13.378 2025-03-19 15:03:13.378 1000 BOOST 141924 3706 \N \N 6250492 2025-03-26 06:27:13.594 2025-03-26 06:27:13.594 2000 BOOST 141924 12261 \N \N 6250493 2025-03-19 21:22:13.358 2025-03-19 21:22:13.358 4000 BOOST 141924 21131 \N \N 6250494 2025-03-19 14:13:13.052 2025-03-19 14:13:13.052 1000 BOOST 141924 20059 \N \N 6250495 2025-03-19 06:26:14.23 2025-03-19 06:26:14.23 1000 BOOST 141924 19378 \N \N 6250496 2025-03-19 13:48:12.931 2025-03-19 13:48:12.931 2000 BOOST 141924 13100 \N \N 6250497 2025-03-20 07:38:14.139 2025-03-20 07:38:14.139 1000 BOOST 141924 20599 \N \N 6250498 2025-03-20 05:20:13.314 2025-03-20 05:20:13.314 2000 BOOST 141924 18441 \N \N 6250499 2025-03-20 04:12:12.849 2025-03-20 04:12:12.849 1000 BOOST 141924 700 \N \N 6250500 2025-03-20 12:55:13.066 2025-03-20 12:55:13.066 2000 BOOST 141924 20436 \N \N 6250501 2025-03-26 03:30:14.559 2025-03-26 03:30:14.559 1000 BOOST 141924 18901 \N \N 6250502 2025-03-20 04:50:13.111 2025-03-20 04:50:13.111 1000 BOOST 141924 8989 \N \N 6250503 2025-03-20 09:37:13.178 2025-03-20 09:37:13.178 2000 BOOST 141924 631 \N \N 6250504 2025-03-19 22:58:13.844 2025-03-19 22:58:13.844 1000 BOOST 141924 19071 \N \N 6250505 2025-03-20 04:38:12.996 2025-03-20 04:38:12.996 1000 BOOST 141924 11192 \N \N 6250506 2025-03-19 02:25:14.503 2025-03-19 02:25:14.503 1000 BOOST 141924 2335 \N \N 6250507 2025-03-19 23:12:14.025 2025-03-19 23:12:14.025 4000 BOOST 141924 17147 \N \N 6250508 2025-03-20 07:26:14.08 2025-03-20 07:26:14.08 1000 BOOST 141924 19888 \N \N 6250509 2025-03-20 06:33:13.495 2025-03-20 06:33:13.495 3000 BOOST 141924 720 \N \N 6250510 2025-03-19 11:03:14.425 2025-03-19 11:03:14.425 1000 BOOST 141924 19857 \N \N 6250511 2025-03-20 02:46:13.268 2025-03-20 02:46:13.268 1000 BOOST 141924 20225 \N \N 6250512 2025-03-20 08:42:14.611 2025-03-20 08:42:14.611 2000 BOOST 141924 11885 \N \N 6250513 2025-03-19 06:07:13.438 2025-03-19 06:07:13.438 1000 BOOST 141924 897 \N \N 6250514 2025-03-20 09:18:13.093 2025-03-20 09:18:13.093 2000 BOOST 141924 21418 \N \N 6250515 2025-03-19 12:58:12.586 2025-03-19 12:58:12.586 2000 BOOST 141924 19637 \N \N 6250516 2025-03-19 10:10:13.95 2025-03-19 10:10:13.95 1000 BOOST 141924 8037 \N \N 6250517 2025-03-29 08:37:12.831 2025-03-29 08:37:12.831 1000 BOOST 141924 19537 \N \N 6250518 2025-03-28 10:31:16.242 2025-03-28 10:31:16.242 1000 BOOST 141924 18265 \N \N 6250519 2025-03-26 06:20:13.587 2025-03-26 06:20:13.587 4000 BOOST 141924 4802 \N \N 6250520 2025-03-20 05:44:13.034 2025-03-20 05:44:13.034 3000 BOOST 141924 699 \N \N 6250521 2025-03-20 05:38:12.874 2025-03-20 05:38:12.874 1000 BOOST 141924 8416 \N \N 6250522 2025-03-19 17:24:12.563 2025-03-19 17:24:12.563 2000 BOOST 141924 21804 \N \N 6250523 2025-03-28 11:31:12.637 2025-03-28 11:31:12.637 3000 BOOST 141924 21547 \N \N 6250524 2025-03-20 09:04:12.961 2025-03-20 09:04:12.961 3000 BOOST 141924 5758 \N \N 6250525 2025-03-19 06:34:12.644 2025-03-19 06:34:12.644 1000 BOOST 141924 20433 \N \N 6250526 2025-03-28 11:19:14.798 2025-03-28 11:19:14.798 4000 BOOST 141924 15843 \N \N 6250527 2025-03-28 12:24:12.575 2025-03-28 12:24:12.575 6000 BOOST 141924 20337 \N \N 6250528 2025-03-28 11:35:12.676 2025-03-28 11:35:12.676 2000 BOOST 141924 5728 \N \N 6250529 2025-03-19 07:28:14.652 2025-03-19 07:28:14.652 2000 BOOST 141924 6421 \N \N 6250530 2025-03-20 12:08:12.79 2025-03-20 12:08:12.79 3000 BOOST 141924 18114 \N \N 6250531 2025-03-26 04:25:12.985 2025-03-26 04:25:12.985 4000 BOOST 141924 1038 \N \N 6250532 2025-03-19 19:58:12.514 2025-03-19 19:58:12.514 1000 BOOST 141924 20623 \N \N 6250533 2025-03-28 12:00:12.864 2025-03-28 12:00:12.864 2000 BOOST 141924 17727 \N \N 6250534 2025-03-26 06:22:13.587 2025-03-26 06:22:13.587 3000 BOOST 141924 636 \N \N 6250535 2025-03-20 02:40:13.224 2025-03-20 02:40:13.224 3000 BOOST 141924 15103 \N \N 6250536 2025-03-19 20:58:13.229 2025-03-19 20:58:13.229 4000 BOOST 141924 6360 \N \N 6250537 2025-03-20 01:14:12.864 2025-03-20 01:14:12.864 3000 BOOST 141924 21480 \N \N 6250538 2025-03-29 08:51:12.94 2025-03-29 08:51:12.94 2000 BOOST 141924 642 \N \N 6250539 2025-03-19 21:37:13.412 2025-03-19 21:37:13.412 1000 BOOST 141924 680 \N \N 6250540 2025-03-19 20:00:12.534 2025-03-19 20:00:12.534 3000 BOOST 141924 21803 \N \N 6250541 2025-03-19 15:17:13.517 2025-03-19 15:17:13.517 1000 BOOST 141924 21631 \N \N 6250542 2025-03-18 19:43:13.746 2025-03-18 19:43:13.746 1000 BOOST 141924 20717 \N \N 6250543 2025-03-18 19:28:13.686 2025-03-18 19:28:13.686 1000 BOOST 141924 21356 \N \N 6250544 2025-03-26 06:39:13.665 2025-03-26 06:39:13.665 2000 BOOST 141924 21172 \N \N 6250545 2025-03-18 23:17:15.126 2025-03-18 23:17:15.126 1000 BOOST 141924 10273 \N \N 6250546 2025-03-20 10:55:13.698 2025-03-20 10:55:13.698 3000 BOOST 141924 664 \N \N 6250547 2025-03-20 02:27:13.171 2025-03-20 02:27:13.171 1000 BOOST 141924 15115 \N \N 6250548 2025-03-20 12:34:12.955 2025-03-20 12:34:12.955 2000 BOOST 141924 15060 \N \N 6250549 2025-03-19 22:18:13.624 2025-03-19 22:18:13.624 1000 BOOST 141924 12368 \N \N 6250550 2025-03-26 03:52:14.705 2025-03-26 03:52:14.705 2000 BOOST 141924 20187 \N \N 6250551 2025-03-19 10:59:14.409 2025-03-19 10:59:14.409 1000 BOOST 141924 15180 \N \N 6250552 2025-03-20 09:49:13.169 2025-03-20 09:49:13.169 2000 BOOST 141924 9551 \N \N 6250553 2025-03-20 08:56:12.887 2025-03-20 08:56:12.887 2000 BOOST 141924 11423 \N \N 6250554 2025-03-19 22:52:15.118 2025-03-19 22:52:15.118 2000 BOOST 141924 1008 \N \N 6250555 2025-03-19 17:08:14.444 2025-03-19 17:08:14.444 2000 BOOST 141924 20911 \N \N 6250556 2025-03-19 08:49:12.838 2025-03-19 08:49:12.838 2000 BOOST 141924 21797 \N \N 6250557 2025-03-20 09:44:13.142 2025-03-20 09:44:13.142 3000 BOOST 141924 6191 \N \N 6250558 2024-01-14 14:47:12.604 2024-01-14 14:47:12.604 1000 BOOST 109142 20906 \N \N 6250559 2025-03-26 03:17:12.691 2025-03-26 03:17:12.691 2000 BOOST 141924 928 \N \N 6250560 2025-03-19 06:21:13.576 2025-03-19 06:21:13.576 1000 BOOST 141924 3504 \N \N 6250561 2025-03-20 09:06:12.962 2025-03-20 09:06:12.962 2000 BOOST 141924 17221 \N \N 6250562 2025-03-18 19:06:13.588 2025-03-18 19:06:13.588 1000 BOOST 141924 18402 \N \N 6250563 2024-01-14 14:30:12.127 2024-01-14 14:30:12.127 1000 BOOST 109142 1489 \N \N 6250564 2025-03-19 20:44:13.169 2025-03-19 20:44:13.169 2000 BOOST 141924 5703 \N \N 6250565 2025-03-20 13:06:13.129 2025-03-20 13:06:13.129 1000 BOOST 141924 16406 \N \N 6250566 2025-03-20 04:43:13.028 2025-03-20 04:43:13.028 2000 BOOST 141924 18330 \N \N 6250567 2025-03-19 22:15:13.591 2025-03-19 22:15:13.591 3000 BOOST 141924 9246 \N \N 6250568 2025-03-19 07:23:12.951 2025-03-19 07:23:12.951 3000 BOOST 141924 716 \N \N 6250569 2025-03-19 18:09:14.068 2025-03-19 18:09:14.068 1000 BOOST 141924 1652 \N \N 6250570 2025-03-20 03:14:13.418 2025-03-20 03:14:13.418 1000 BOOST 141924 8472 \N \N 6250571 2025-03-19 20:52:13.154 2025-03-19 20:52:13.154 1000 BOOST 141924 21048 \N \N 6250572 2025-03-20 07:02:13.91 2025-03-20 07:02:13.91 3000 BOOST 141924 16282 \N \N 6250573 2025-03-26 04:52:15.185 2025-03-26 04:52:15.185 3000 BOOST 141924 11942 \N \N 6250574 2025-03-26 05:02:15.215 2025-03-26 05:02:15.215 3000 BOOST 141924 21571 \N \N 6250575 2024-01-14 14:41:12.367 2024-01-14 14:41:12.367 1000 BOOST 109142 9438 \N \N 6250576 2025-03-20 10:39:13.467 2025-03-20 10:39:13.467 2000 BOOST 141924 13162 \N \N 6250577 2025-03-26 06:04:12.638 2025-03-26 06:04:12.638 1000 BOOST 141924 21600 \N \N 6250578 2025-03-19 21:47:13.449 2025-03-19 21:47:13.449 1000 BOOST 141924 19446 \N \N 6250579 2025-03-19 23:38:15.41 2025-03-19 23:38:15.41 4000 BOOST 141924 2609 \N \N 6250580 2025-03-26 05:50:13.377 2025-03-26 05:50:13.377 2000 BOOST 141924 8796 \N \N 6250581 2025-03-19 03:00:12.808 2025-03-19 03:00:12.808 1000 BOOST 141924 977 \N \N 6250582 2024-01-14 15:04:13.401 2024-01-14 15:04:13.401 1000 BOOST 109138 3304 \N \N 6250583 2025-03-28 11:12:12.465 2025-03-28 11:12:12.465 3000 BOOST 141924 11938 \N \N 6250584 2025-03-26 04:49:13.126 2025-03-26 04:49:13.126 2000 BOOST 141924 20602 \N \N 6250585 2025-03-19 15:24:13.585 2025-03-19 15:24:13.585 1000 BOOST 141924 21603 \N \N 6250586 2025-03-28 10:14:14.436 2025-03-28 10:14:14.436 2000 BOOST 141924 11417 \N \N 6250587 2025-03-19 00:42:13.088 2025-03-19 00:42:13.088 2000 BOOST 141924 672 \N \N 6250588 2025-03-19 06:03:13.388 2025-03-19 06:03:13.388 1000 BOOST 141924 18829 \N \N 6250589 2025-03-19 09:27:13.526 2025-03-19 09:27:13.526 2000 BOOST 141924 21393 \N \N 6250590 2025-03-19 20:45:13.133 2025-03-19 20:45:13.133 2000 BOOST 141924 21713 \N \N 6250591 2025-03-19 08:43:12.982 2025-03-19 08:43:12.982 3000 BOOST 141924 14959 \N \N 6250592 2025-03-19 20:02:12.566 2025-03-19 20:02:12.566 3000 BOOST 141924 20849 \N \N 6250593 2024-01-14 14:45:12.948 2024-01-14 14:45:12.948 1000 BOOST 109142 663 \N \N 6250594 2025-03-19 00:01:14.779 2025-03-19 00:01:14.779 1000 BOOST 141924 10433 \N \N 6250595 2025-03-18 19:46:13.758 2025-03-18 19:46:13.758 1000 BOOST 141924 6765 \N \N 6250596 2025-03-19 09:24:13.49 2025-03-19 09:24:13.49 2000 BOOST 141924 18930 \N \N 6250597 2024-01-14 14:29:13.837 2024-01-14 14:29:13.837 1000 BOOST 109142 9843 \N \N 6250598 2025-03-19 05:00:13.802 2025-03-19 05:00:13.802 1000 BOOST 141924 2749 \N \N 6250599 2025-03-19 12:02:14.198 2025-03-19 12:02:14.198 1000 BOOST 141924 17411 \N \N 6250600 2025-03-20 06:59:13.872 2025-03-20 06:59:13.872 1000 BOOST 141924 14489 \N \N 6250601 2025-03-20 02:04:13.075 2025-03-20 02:04:13.075 5000 BOOST 141924 10608 \N \N 6250602 2025-03-19 07:11:12.9 2025-03-19 07:11:12.9 2000 BOOST 141924 15337 \N \N 6250603 2025-03-20 12:59:13.083 2025-03-20 12:59:13.083 4000 BOOST 141924 15139 \N \N 6250604 2024-01-14 14:30:12.177 2024-01-14 14:30:12.177 1000 BOOST 109138 21064 \N \N 6250605 2025-03-20 05:11:13.249 2025-03-20 05:11:13.249 1000 BOOST 141924 9529 \N \N 6250606 2025-03-28 11:23:14.806 2025-03-28 11:23:14.806 2000 BOOST 141924 1195 \N \N 6250607 2025-03-26 05:06:15.531 2025-03-26 05:06:15.531 4000 BOOST 141924 11897 \N \N 6250608 2025-03-19 15:30:13.63 2025-03-19 15:30:13.63 2000 BOOST 141924 12959 \N \N 6250609 2024-01-14 14:58:13.303 2024-01-14 14:58:13.303 1000 BOOST 109142 2724 \N \N 6250610 2024-01-14 14:44:12.569 2024-01-14 14:44:12.569 1000 BOOST 109138 9307 \N \N 6250611 2025-03-29 09:12:15.272 2025-03-29 09:12:15.272 4000 BOOST 141924 13174 \N \N 6250612 2025-03-26 03:28:14.563 2025-03-26 03:28:14.563 2000 BOOST 141924 17568 \N \N 6250613 2025-03-18 23:55:14.91 2025-03-18 23:55:14.91 1000 BOOST 141924 807 \N \N 6250614 2025-03-20 03:28:14.443 2025-03-20 03:28:14.443 2000 BOOST 141924 21498 \N \N 6250615 2025-03-19 17:44:13.209 2025-03-19 17:44:13.209 1000 BOOST 141924 10536 \N \N 6250616 2025-03-20 07:09:13.944 2025-03-20 07:09:13.944 2000 BOOST 141924 18529 \N \N 6250617 2025-03-19 14:21:13.111 2025-03-19 14:21:13.111 2000 BOOST 141924 11091 \N \N 6250618 2025-03-20 07:37:14.148 2025-03-20 07:37:14.148 2000 BOOST 141924 5746 \N \N 6250619 2025-03-20 05:47:13.024 2025-03-20 05:47:13.024 2000 BOOST 141924 14037 \N \N 6250620 2025-03-19 11:48:14.203 2025-03-19 11:48:14.203 2000 BOOST 141924 19524 \N \N 6250621 2025-03-26 03:46:14.696 2025-03-26 03:46:14.696 4000 BOOST 141924 2233 \N \N 6250622 2025-03-19 18:49:15.595 2025-03-19 18:49:15.595 1000 BOOST 141924 5809 \N \N 6250623 2025-03-19 12:34:14.435 2025-03-19 12:34:14.435 1000 BOOST 141924 1723 \N \N 6250624 2025-03-20 11:34:13.836 2025-03-20 11:34:13.836 2000 BOOST 141924 1618 \N \N 6250625 2025-03-19 03:43:12.997 2025-03-19 03:43:12.997 1000 BOOST 141924 763 \N \N 6250626 2025-03-20 11:51:12.343 2025-03-20 11:51:12.343 1000 BOOST 141924 15526 \N \N 6250627 2025-03-26 05:05:15.521 2025-03-26 05:05:15.521 2000 BOOST 141924 20624 \N \N 6250628 2025-03-26 02:40:14.13 2025-03-26 02:40:14.13 4000 BOOST 141924 681 \N \N 6250629 2025-03-26 02:12:15.288 2025-03-26 02:12:15.288 4000 BOOST 141924 12072 \N \N 6250630 2025-03-28 11:33:12.649 2025-03-28 11:33:12.649 3000 BOOST 141924 16754 \N \N 6250631 2025-03-20 09:43:13.118 2025-03-20 09:43:13.118 1000 BOOST 141924 4989 \N \N 6250632 2025-03-28 11:45:12.743 2025-03-28 11:45:12.743 3000 BOOST 141924 4415 \N \N 6250633 2025-03-19 17:12:14.47 2025-03-19 17:12:14.47 2000 BOOST 141924 11395 \N \N 6250634 2025-03-20 10:46:13.508 2025-03-20 10:46:13.508 1000 BOOST 141924 16809 \N \N 6250635 2025-03-19 08:17:13.105 2025-03-19 08:17:13.105 4000 BOOST 141924 4167 \N \N 6250636 2024-01-14 14:39:12.585 2024-01-14 14:39:12.585 1000 BOOST 109138 4692 \N \N 6250637 2025-03-29 20:48:14.91 2025-03-29 20:48:14.91 2000 BOOST 141924 4259 \N \N 6250638 2025-03-19 15:02:13.37 2025-03-19 15:02:13.37 2000 BOOST 141924 956 \N \N 6250639 2025-03-26 05:45:13.364 2025-03-26 05:45:13.364 2000 BOOST 141924 17226 \N \N 6250640 2025-03-19 20:46:13.135 2025-03-19 20:46:13.135 3000 BOOST 141924 1424 \N \N 6250641 2025-03-20 02:09:13.074 2025-03-20 02:09:13.074 2000 BOOST 141924 17001 \N \N 6250642 2025-03-19 19:54:12.525 2025-03-19 19:54:12.525 3000 BOOST 141924 9517 \N \N 6250643 2025-03-26 05:27:13.282 2025-03-26 05:27:13.282 2000 BOOST 141924 20973 \N \N 6250644 2025-03-28 12:13:12.522 2025-03-28 12:13:12.522 3000 BOOST 141924 18956 \N \N 6250645 2025-03-19 13:47:14.727 2025-03-19 13:47:14.727 1000 BOOST 141924 16842 \N \N 6250646 2025-03-20 09:50:13.157 2025-03-20 09:50:13.157 3000 BOOST 141924 20133 \N \N 6250647 2025-03-20 07:55:14.235 2025-03-20 07:55:14.235 3000 BOOST 141924 11670 \N \N 6250648 2025-03-28 11:09:14.764 2025-03-28 11:09:14.764 4000 BOOST 141924 4166 \N \N 6250649 2025-03-20 06:00:13.548 2025-03-20 06:00:13.548 3000 BOOST 141924 11590 \N \N 6250650 2025-03-28 11:56:12.441 2025-03-28 11:56:12.441 4000 BOOST 141924 8870 \N \N 6250651 2025-03-20 12:38:12.97 2025-03-20 12:38:12.97 2000 BOOST 141924 10056 \N \N 6250652 2025-03-19 08:25:13.168 2025-03-19 08:25:13.168 2000 BOOST 141924 16267 \N \N 6250653 2025-03-19 12:27:14.415 2025-03-19 12:27:14.415 3000 BOOST 141924 4474 \N \N 6250654 2025-03-28 11:18:12.506 2025-03-28 11:18:12.506 3000 BOOST 141924 21401 \N \N 6250655 2025-03-18 21:43:14.389 2025-03-18 21:43:14.389 1000 BOOST 141924 1122 \N \N 6250656 2025-03-19 10:09:13.952 2025-03-19 10:09:13.952 1000 BOOST 141924 1320 \N \N 6250657 2025-03-19 20:21:12.643 2025-03-19 20:21:12.643 2000 BOOST 141924 8469 \N \N 6250658 2025-03-18 21:21:13.66 2025-03-18 21:21:13.66 1000 BOOST 141924 9166 \N \N 6250659 2025-03-26 06:26:13.602 2025-03-26 06:26:13.602 2000 BOOST 141924 1488 \N \N 6250660 2024-01-14 14:29:13.824 2024-01-14 14:29:13.824 1000 BOOST 109138 14503 \N \N 6250661 2025-03-26 04:08:14.898 2025-03-26 04:08:14.898 1000 BOOST 141924 1785 \N \N 6250662 2025-03-19 23:21:14.037 2025-03-19 23:21:14.037 2000 BOOST 141924 5085 \N \N 6250663 2025-03-19 02:33:12.988 2025-03-19 02:33:12.988 2000 BOOST 141924 1319 \N \N 6250664 2025-03-20 11:45:13.877 2025-03-20 11:45:13.877 2000 BOOST 141924 697 \N \N 6250665 2025-03-19 18:56:14.763 2025-03-19 18:56:14.763 1000 BOOST 141924 4633 \N \N 6250666 2025-03-26 04:45:17.093 2025-03-26 04:45:17.093 3000 BOOST 141924 17106 \N \N 6250667 2025-03-20 11:39:13.857 2025-03-20 11:39:13.857 3000 BOOST 141924 21214 \N \N 6250668 2025-03-20 08:04:14.343 2025-03-20 08:04:14.343 1000 BOOST 141924 9920 \N \N 6250669 2025-03-26 05:54:13.395 2025-03-26 05:54:13.395 1000 BOOST 141924 989 \N \N 6250670 2025-03-20 01:21:12.856 2025-03-20 01:21:12.856 1000 BOOST 141924 21400 \N \N 6250671 2025-03-19 10:21:14.066 2025-03-19 10:21:14.066 1000 BOOST 141924 7773 \N \N 6250672 2025-03-26 05:57:13.397 2025-03-26 05:57:13.397 1000 BOOST 141924 18270 \N \N 6250673 2025-03-20 05:35:12.845 2025-03-20 05:35:12.845 1000 BOOST 141924 21825 \N \N 6250674 2025-03-19 21:00:13.24 2025-03-19 21:00:13.24 2000 BOOST 141924 19829 \N \N 6250675 2025-03-20 03:32:13.982 2025-03-20 03:32:13.982 2000 BOOST 141924 775 \N \N 6250676 2025-03-29 15:17:13.605 2025-03-29 15:17:13.605 4000 BOOST 141924 21314 \N \N 6250677 2025-03-19 11:09:13.98 2025-03-19 11:09:13.98 1000 BOOST 141924 16571 \N \N 6250678 2025-03-20 05:48:13.026 2025-03-20 05:48:13.026 4000 BOOST 141924 10490 \N \N 6250679 2025-03-20 07:03:13.895 2025-03-20 07:03:13.895 2000 BOOST 141924 16834 \N \N 6250680 2025-03-19 20:36:12.764 2025-03-19 20:36:12.764 2000 BOOST 141924 17541 \N \N 6250681 2025-03-26 03:31:14.59 2025-03-26 03:31:14.59 2000 BOOST 141924 19459 \N \N 6250682 2024-01-14 15:13:12.482 2024-01-14 15:13:12.482 1000 BOOST 109142 14385 \N \N 6250683 2025-03-20 01:04:13.75 2025-03-20 01:04:13.75 1000 BOOST 141924 12946 \N \N 6250684 2025-03-19 01:40:13.283 2025-03-19 01:40:13.283 1000 BOOST 141924 12272 \N \N 6250685 2024-01-14 14:59:13.279 2024-01-14 14:59:13.279 1000 BOOST 109138 6594 \N \N 6250686 2025-03-20 11:57:12.408 2025-03-20 11:57:12.408 2000 BOOST 141924 9348 \N \N 6250687 2025-03-20 07:29:14.112 2025-03-20 07:29:14.112 2000 BOOST 141924 21670 \N \N 6250688 2025-03-19 01:57:13.68 2025-03-19 01:57:13.68 3000 BOOST 141924 21712 \N \N 6250689 2025-03-19 08:19:13.12 2025-03-19 08:19:13.12 1000 BOOST 141924 9084 \N \N 6250690 2025-03-20 03:54:14.179 2025-03-20 03:54:14.179 3000 BOOST 141924 1620 \N \N 6250691 2025-03-19 11:14:14.032 2025-03-19 11:14:14.032 1000 BOOST 141924 19663 \N \N 6250692 2025-03-26 04:15:15.163 2025-03-26 04:15:15.163 2000 BOOST 141924 21444 \N \N 6250693 2025-03-29 09:09:15.228 2025-03-29 09:09:15.228 5000 BOOST 141924 10007 \N \N 6250694 2025-03-19 17:48:13.326 2025-03-19 17:48:13.326 2000 BOOST 141924 8841 \N \N 6250695 2025-03-20 07:01:13.89 2025-03-20 07:01:13.89 2000 BOOST 141924 16347 \N \N 6250696 2025-03-19 13:23:12.787 2025-03-19 13:23:12.787 1000 BOOST 141924 9 \N \N 6250697 2025-03-19 05:37:13.967 2025-03-19 05:37:13.967 2000 BOOST 141924 6137 \N \N 6250698 2024-01-14 14:55:13.297 2024-01-14 14:55:13.297 1000 BOOST 109138 1401 \N \N 6250699 2025-03-20 06:26:13.408 2025-03-20 06:26:13.408 2000 BOOST 141924 20854 \N \N 6250700 2025-03-19 17:50:13.28 2025-03-19 17:50:13.28 2000 BOOST 141924 902 \N \N 6250701 2025-03-20 12:19:12.865 2025-03-20 12:19:12.865 3000 BOOST 141924 18368 \N \N 6250702 2025-03-19 16:14:13.945 2025-03-19 16:14:13.945 1000 BOOST 141924 1836 \N \N 6250703 2025-03-19 21:13:13.349 2025-03-19 21:13:13.349 2000 BOOST 141924 13143 \N \N 6250704 2025-03-19 23:37:15.399 2025-03-19 23:37:15.399 2000 BOOST 141924 8242 \N \N 6250705 2025-03-19 06:40:14.316 2025-03-19 06:40:14.316 3000 BOOST 141924 21485 \N \N 6250706 2025-03-19 19:40:15.6 2025-03-19 19:40:15.6 1000 BOOST 141924 4819 \N \N 6250707 2025-03-19 08:11:13.057 2025-03-19 08:11:13.057 1000 BOOST 141924 9332 \N \N 6250708 2025-03-19 10:54:14.355 2025-03-19 10:54:14.355 2000 BOOST 141924 12057 \N \N 6250709 2025-03-20 06:45:13.704 2025-03-20 06:45:13.704 5000 BOOST 141924 8541 \N \N 6250710 2025-03-20 08:51:14.625 2025-03-20 08:51:14.625 3000 BOOST 141924 12819 \N \N 6250711 2025-03-26 05:03:13.23 2025-03-26 05:03:13.23 2000 BOOST 141924 21254 \N \N 6250712 2025-03-26 02:56:14.309 2025-03-26 02:56:14.309 1000 BOOST 141924 16442 \N \N 6250713 2025-03-19 18:28:15.054 2025-03-19 18:28:15.054 2000 BOOST 141924 9982 \N \N 6250714 2025-03-20 04:11:12.843 2025-03-20 04:11:12.843 3000 BOOST 141924 17944 \N \N 6250715 2025-03-19 08:56:12.884 2025-03-19 08:56:12.884 2000 BOOST 141924 20980 \N \N 6250716 2025-03-19 18:46:15.563 2025-03-19 18:46:15.563 1000 BOOST 141924 6777 \N \N 6250717 2025-03-18 20:45:13.442 2025-03-18 20:45:13.442 1000 BOOST 141924 1469 \N \N 6250718 2025-03-28 11:15:16.232 2025-03-28 11:15:16.232 5000 BOOST 141924 2361 \N \N 6250719 2025-03-28 11:40:16.4 2025-03-28 11:40:16.4 3000 BOOST 141924 19471 \N \N 6250720 2025-03-19 02:54:12.808 2025-03-19 02:54:12.808 3000 BOOST 141924 12139 \N \N 6250721 2025-03-29 08:40:12.842 2025-03-29 08:40:12.842 1000 BOOST 141924 20788 \N \N 6250722 2025-03-26 05:53:12.433 2025-03-26 05:53:12.433 3000 BOOST 141924 9421 \N \N 6250723 2025-03-26 06:03:13.429 2025-03-26 06:03:13.429 6000 BOOST 141924 1064 \N \N 6250724 2025-03-20 10:12:13.274 2025-03-20 10:12:13.274 3000 BOOST 141924 1082 \N \N 6250725 2024-01-14 14:53:12.64 2024-01-14 14:53:12.64 1000 BOOST 109142 11153 \N \N 6250726 2025-03-29 20:59:15.023 2025-03-29 20:59:15.023 1000 BOOST 141924 1175 \N \N 6250727 2025-03-28 10:17:14.448 2025-03-28 10:17:14.448 5000 BOOST 141924 19966 \N \N 6250728 2025-03-28 11:02:12.445 2025-03-28 11:02:12.445 5000 BOOST 141924 20137 \N \N 6250729 2025-03-20 10:18:13.329 2025-03-20 10:18:13.329 4000 BOOST 141924 18673 \N \N 6250730 2025-03-28 11:36:14.904 2025-03-28 11:36:14.904 3000 BOOST 141924 21274 \N \N 6250731 2024-01-14 14:46:12.607 2024-01-14 14:46:12.607 1000 BOOST 109142 16998 \N \N 6250732 2025-03-20 06:27:13.415 2025-03-20 06:27:13.415 2000 BOOST 141924 13042 \N \N 6250733 2025-03-19 10:46:14.258 2025-03-19 10:46:14.258 1000 BOOST 141924 1039 \N \N 6250734 2025-03-19 03:47:13.642 2025-03-19 03:47:13.642 1000 BOOST 141924 14220 \N \N 6250735 2025-03-19 04:15:13.558 2025-03-19 04:15:13.558 2000 BOOST 141924 18177 \N \N 6250736 2025-03-29 09:00:15.088 2025-03-29 09:00:15.088 2000 BOOST 141924 9026 \N \N 6250737 2025-03-20 09:41:13.122 2025-03-20 09:41:13.122 1000 BOOST 141924 16250 \N \N 6250738 2025-03-19 19:18:13.01 2025-03-19 19:18:13.01 2000 BOOST 141924 708 \N \N 6250739 2025-03-29 08:38:12.798 2025-03-29 08:38:12.798 1000 BOOST 141924 2577 \N \N 6250740 2025-03-26 03:04:16.033 2025-03-26 03:04:16.033 3000 BOOST 141924 10112 \N \N 6250741 2025-03-20 05:00:13.205 2025-03-20 05:00:13.205 3000 BOOST 141924 20294 \N \N 6250742 2025-03-19 15:15:13.494 2025-03-19 15:15:13.494 3000 BOOST 141924 1549 \N \N 6250743 2025-03-19 14:25:13.15 2025-03-19 14:25:13.15 1000 BOOST 141924 2326 \N \N 6250744 2025-03-19 17:36:12.881 2025-03-19 17:36:12.881 2000 BOOST 141924 16329 \N \N 6250745 2025-03-26 02:44:14.142 2025-03-26 02:44:14.142 3000 BOOST 141924 20681 \N \N 6250746 2025-03-19 19:42:15.641 2025-03-19 19:42:15.641 2000 BOOST 141924 4173 \N \N 6250747 2025-03-20 08:05:14.296 2025-03-20 08:05:14.296 2000 BOOST 141924 12169 \N \N 6250748 2025-03-20 02:17:13.117 2025-03-20 02:17:13.117 2000 BOOST 141924 20555 \N \N 6250749 2025-03-20 04:15:12.875 2025-03-20 04:15:12.875 4000 BOOST 141924 21334 \N \N 6250750 2025-03-28 11:39:12.687 2025-03-28 11:39:12.687 5000 BOOST 141924 20754 \N \N 6250751 2025-03-26 04:37:15.32 2025-03-26 04:37:15.32 1000 BOOST 141924 21389 \N \N 6250752 2025-03-20 07:48:14.2 2025-03-20 07:48:14.2 2000 BOOST 141924 20511 \N \N 6250753 2025-03-19 19:06:15.47 2025-03-19 19:06:15.47 2000 BOOST 141924 16670 \N \N 6250754 2025-03-20 07:43:14.173 2025-03-20 07:43:14.173 1000 BOOST 141924 20509 \N \N 6250755 2025-03-18 22:09:14.52 2025-03-18 22:09:14.52 1000 BOOST 141924 7425 \N \N 6250756 2025-03-19 23:25:14.06 2025-03-19 23:25:14.06 1000 BOOST 141924 18601 \N \N 6250757 2025-03-28 11:11:14.781 2025-03-28 11:11:14.781 5000 BOOST 141924 21180 \N \N 6250758 2025-03-19 16:35:14.149 2025-03-19 16:35:14.149 2000 BOOST 141924 1286 \N \N 6250759 2025-03-20 01:42:12.971 2025-03-20 01:42:12.971 2000 BOOST 141924 21320 \N \N 6250760 2025-03-19 16:23:14.044 2025-03-19 16:23:14.044 2000 BOOST 141924 11165 \N \N 6250761 2025-03-26 03:14:14.553 2025-03-26 03:14:14.553 3000 BOOST 141924 16424 \N \N 6250762 2025-03-28 10:09:14.425 2025-03-28 10:09:14.425 5000 BOOST 141924 11491 \N \N 6250763 2025-03-20 12:43:12.987 2025-03-20 12:43:12.987 3000 BOOST 141924 4388 \N \N 6250764 2025-03-19 02:45:12.96 2025-03-19 02:45:12.96 3000 BOOST 141924 3377 \N \N 6250765 2025-03-20 08:12:14.38 2025-03-20 08:12:14.38 2000 BOOST 141924 1769 \N \N 6250766 2025-03-19 21:35:13.404 2025-03-19 21:35:13.404 1000 BOOST 141924 1244 \N \N 6250767 2025-03-20 05:06:13.236 2025-03-20 05:06:13.236 3000 BOOST 141924 21216 \N \N 6250768 2025-03-20 03:04:13.399 2025-03-20 03:04:13.399 3000 BOOST 141924 11678 \N \N 6250769 2025-03-26 04:48:17.11 2025-03-26 04:48:17.11 1000 BOOST 141924 12562 \N \N 6250770 2024-01-14 15:14:13.053 2024-01-14 15:14:13.053 1000 BOOST 109142 9171 \N \N 6250771 2025-03-19 05:44:14.034 2025-03-19 05:44:14.034 1000 BOOST 141924 9820 \N \N 6250772 2025-03-20 04:45:13.061 2025-03-20 04:45:13.061 2000 BOOST 141924 17095 \N \N 6250773 2025-03-28 10:36:15.543 2025-03-28 10:36:15.543 1000 BOOST 141924 3409 \N \N 6250774 2025-03-19 23:52:15.545 2025-03-19 23:52:15.545 2000 BOOST 141924 17696 \N \N 6250775 2025-03-26 05:39:13.364 2025-03-26 05:39:13.364 3000 BOOST 141924 18727 \N \N 6250776 2025-03-19 23:26:14.08 2025-03-19 23:26:14.08 3000 BOOST 141924 19842 \N \N 6250777 2025-03-20 05:40:12.882 2025-03-20 05:40:12.882 2000 BOOST 141924 21061 \N \N 6250778 2024-01-14 15:17:13.011 2024-01-14 15:17:13.011 2000 BOOST 109138 19189 \N \N 6250779 2024-01-14 14:37:12.923 2024-01-14 14:37:12.923 1000 BOOST 109142 826 \N \N 6250780 2024-01-14 14:47:12.641 2024-01-14 14:47:12.641 1000 BOOST 109138 8245 \N \N 6250781 2025-03-20 02:43:13.203 2025-03-20 02:43:13.203 3000 BOOST 141924 827 \N \N 6250782 2025-03-26 02:37:15.367 2025-03-26 02:37:15.367 1000 BOOST 141924 9295 \N \N 6250783 2025-03-20 04:41:13.02 2025-03-20 04:41:13.02 2000 BOOST 141924 19198 \N \N 6250784 2025-03-28 11:14:12.486 2025-03-28 11:14:12.486 3000 BOOST 141924 21233 \N \N 6250785 2025-03-19 16:39:13.925 2025-03-19 16:39:13.925 1000 BOOST 141924 15890 \N \N 6250786 2025-03-20 05:46:13.501 2025-03-20 05:46:13.501 1000 BOOST 141924 9275 \N \N 6250787 2025-03-19 04:29:13.673 2025-03-19 04:29:13.673 1000 BOOST 141924 760 \N \N 6250788 2025-03-26 06:34:13.668 2025-03-26 06:34:13.668 2000 BOOST 141924 5752 \N \N 6250789 2025-03-19 07:56:12.934 2025-03-19 07:56:12.934 1000 BOOST 141924 19569 \N \N 6250790 2025-03-29 08:43:12.905 2025-03-29 08:43:12.905 1000 BOOST 141924 15858 \N \N 6250791 2025-03-20 06:37:13.659 2025-03-20 06:37:13.659 4000 BOOST 141924 20586 \N \N 6250792 2025-03-20 10:07:13.242 2025-03-20 10:07:13.242 3000 BOOST 141924 20434 \N \N 6250793 2025-03-20 02:51:13.298 2025-03-20 02:51:13.298 1000 BOOST 141924 9363 \N \N 6250794 2025-03-19 23:01:13.854 2025-03-19 23:01:13.854 2000 BOOST 141924 831 \N \N 6250795 2025-03-28 10:47:12.342 2025-03-28 10:47:12.342 1000 BOOST 141924 10698 \N \N 6250796 2025-03-19 17:33:13.108 2025-03-19 17:33:13.108 1000 BOOST 141924 20222 \N \N 6250797 2025-03-19 19:52:12.46 2025-03-19 19:52:12.46 2000 BOOST 141924 946 \N \N 6250798 2025-03-19 09:18:13.416 2025-03-19 09:18:13.416 1000 BOOST 141924 21057 \N \N 6250799 2024-01-14 14:34:12.412 2024-01-14 14:34:12.412 1000 BOOST 109142 21238 \N \N 6250800 2025-03-20 07:00:13.875 2025-03-20 07:00:13.875 2000 BOOST 141924 7869 \N \N 6250801 2025-03-19 15:48:13.798 2025-03-19 15:48:13.798 2000 BOOST 141924 21060 \N \N 6250802 2025-03-29 08:57:15.046 2025-03-29 08:57:15.046 1000 BOOST 141924 6717 \N \N 6250803 2025-03-20 12:17:12.848 2025-03-20 12:17:12.848 1000 BOOST 141924 21148 \N \N 6250804 2025-03-26 03:15:14.51 2025-03-26 03:15:14.51 3000 BOOST 141924 9337 \N \N 6250805 2025-03-20 12:46:13.019 2025-03-20 12:46:13.019 2000 BOOST 141924 1426 \N \N 6250806 2025-03-20 04:37:12.997 2025-03-20 04:37:12.997 2000 BOOST 141924 21526 \N \N 6250807 2025-03-20 06:29:13.447 2025-03-20 06:29:13.447 1000 BOOST 141924 21067 \N \N 6250808 2025-03-20 01:36:12.969 2025-03-20 01:36:12.969 2000 BOOST 141924 12808 \N \N 6250809 2025-03-20 09:53:13.174 2025-03-20 09:53:13.174 1000 BOOST 141924 17183 \N \N 6250810 2025-03-26 04:40:13.103 2025-03-26 04:40:13.103 2000 BOOST 141924 16357 \N \N 6250811 2025-03-20 07:31:14.13 2025-03-20 07:31:14.13 3000 BOOST 141924 18005 \N \N 6250812 2025-03-18 16:38:13.125 2025-03-18 16:38:13.125 1000 BOOST 141924 21771 \N \N 6250813 2025-03-19 05:08:13.831 2025-03-19 05:08:13.831 1000 BOOST 141924 9276 \N \N 6250814 2025-03-26 06:23:13.594 2025-03-26 06:23:13.594 4000 BOOST 141924 16970 \N \N 6250815 2025-03-20 04:03:14.222 2025-03-20 04:03:14.222 2000 BOOST 141924 20841 \N \N 6250816 2025-03-20 03:10:13.453 2025-03-20 03:10:13.453 2000 BOOST 141924 7673 \N \N 6250817 2025-03-19 17:52:13.623 2025-03-19 17:52:13.623 1000 BOOST 141924 21520 \N \N 6250818 2025-03-20 06:58:13.86 2025-03-20 06:58:13.86 2000 BOOST 141924 18678 \N \N 6250819 2025-03-26 04:09:13.049 2025-03-26 04:09:13.049 3000 BOOST 141924 17494 \N \N 6250820 2025-03-20 07:17:14.036 2025-03-20 07:17:14.036 1000 BOOST 141924 4502 \N \N 6250821 2025-03-19 17:23:13.057 2025-03-19 17:23:13.057 1000 BOOST 141924 15045 \N \N 6250822 2025-03-19 16:40:14.465 2025-03-19 16:40:14.465 2000 BOOST 141924 10302 \N \N 6250823 2025-03-20 11:31:13.806 2025-03-20 11:31:13.806 2000 BOOST 141924 10393 \N \N 6250824 2025-03-19 07:09:12.858 2025-03-19 07:09:12.858 2000 BOOST 141924 13348 \N \N 6250825 2025-03-19 15:14:13.529 2025-03-19 15:14:13.529 2000 BOOST 141924 1802 \N \N 6250826 2025-03-19 14:10:13.053 2025-03-19 14:10:13.053 2000 BOOST 141924 21514 \N \N 6250827 2025-03-20 06:39:13.668 2025-03-20 06:39:13.668 4000 BOOST 141924 5519 \N \N 6250828 2025-03-19 08:45:13.01 2025-03-19 08:45:13.01 2000 BOOST 141924 19126 \N \N 6250829 2025-03-19 19:37:15.565 2025-03-19 19:37:15.565 2000 BOOST 141924 3439 \N \N 6250830 2025-03-20 11:07:13.723 2025-03-20 11:07:13.723 4000 BOOST 141924 19375 \N \N 6250831 2025-03-19 14:45:13.256 2025-03-19 14:45:13.256 1000 BOOST 141924 20817 \N \N 6250832 2025-03-29 09:01:15.088 2025-03-29 09:01:15.088 3000 BOOST 141924 10270 \N \N 6250833 2025-03-20 04:31:12.946 2025-03-20 04:31:12.946 3000 BOOST 141924 5306 \N \N 6250834 2025-03-28 12:16:12.541 2025-03-28 12:16:12.541 5000 BOOST 141924 20185 \N \N 6250835 2025-03-19 15:21:13.532 2025-03-19 15:21:13.532 1000 BOOST 141924 750 \N \N 6250836 2025-03-19 07:46:12.847 2025-03-19 07:46:12.847 1000 BOOST 141924 18743 \N \N 6250837 2025-03-20 07:50:14.216 2025-03-20 07:50:14.216 2000 BOOST 141924 18351 \N \N 6250838 2025-03-26 05:00:15.189 2025-03-26 05:00:15.189 3000 BOOST 141924 986 \N \N \. -- -- Data for Name: ItemForward; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ItemForward" (id, created_at, updated_at, "itemId", "userId", pct) FROM stdin; \. -- -- Data for Name: ItemMention; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ItemMention" (id, created_at, updated_at, "referrerId", "refereeId") FROM stdin; \. -- -- Data for Name: ItemUpload; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ItemUpload" (created_at, updated_at, "itemId", "uploadId") FROM stdin; \. -- -- Data for Name: ItemUserAgg; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ItemUserAgg" (id, created_at, updated_at, "itemId", "userId", "zapSats", "downZapSats") FROM stdin; 1 2025-03-20 03:05:58.163 2025-03-20 03:05:58.163 4177 12334 0 0 2 2025-03-20 07:09:42.097 2025-03-20 07:09:42.097 5705 3656 3 0 3 2025-03-20 07:09:42.097 2025-03-20 07:09:42.097 5705 10608 30 0 4 2025-03-19 12:38:29.762 2025-03-19 12:38:29.762 37384 8664 0 0 5 2025-03-19 12:38:29.762 2025-03-19 12:38:29.762 37384 9026 3 0 6 2025-03-19 04:38:11.41 2025-03-19 04:38:11.41 38225 1617 0 0 7 2025-03-19 04:38:39.314 2025-03-19 04:38:39.314 38225 5036 0 0 8 2025-03-18 20:21:31.218 2025-03-18 20:21:31.218 60799 891 10 0 9 2025-03-18 20:21:31.218 2025-03-18 20:21:31.218 60799 20222 1 0 10 2025-03-18 17:01:04.792 2025-03-18 17:01:04.792 79125 2596 90 0 11 2025-03-18 17:01:04.792 2025-03-18 17:01:04.792 79125 9334 10 0 12 2025-03-19 12:27:39.988 2025-03-19 12:27:39.988 97082 1609 2 0 13 2025-03-19 12:27:39.988 2025-03-19 12:27:39.988 97082 1632 19 0 14 2025-03-19 12:27:39.466 2025-03-19 12:27:39.466 97082 6137 19 0 15 2025-03-19 12:27:38.871 2025-03-19 12:27:38.871 97082 9758 19 0 16 2025-03-19 12:27:38.186 2025-03-19 12:27:38.186 97082 12222 2 0 17 2025-03-19 12:27:40.492 2025-03-19 12:27:40.492 97082 17082 19 0 18 2025-03-19 12:27:39.466 2025-03-19 12:27:39.466 97082 20924 2 0 19 2025-03-19 12:27:38.186 2025-03-19 12:27:38.186 97082 21048 19 0 20 2025-03-19 12:27:40.492 2025-03-19 12:27:40.492 97082 21287 2 0 21 2025-03-19 12:27:38.871 2025-03-19 12:27:38.871 97082 21825 2 0 22 2025-03-20 08:39:47.44 2025-03-20 08:39:47.44 119101 15282 0 0 23 2025-03-18 22:14:59.639 2025-03-18 22:14:59.639 190861 13987 1 0 24 2025-03-18 22:14:59.639 2025-03-18 22:14:59.639 190861 16348 9 0 25 2025-03-28 11:38:06.28 2025-03-28 11:38:06.28 192644 1213 0 0 26 2025-03-28 11:38:06.28 2025-03-28 11:38:06.28 192644 21275 1 0 27 2025-03-19 04:12:26.416 2025-03-19 04:12:26.416 193487 3456 10 0 28 2025-03-19 04:12:26.416 2025-03-19 04:12:26.416 193487 9329 1 0 29 2025-03-19 09:52:20.712 2025-03-19 09:52:20.712 199147 2718 0 0 30 2025-03-19 09:52:20.712 2025-03-19 09:52:20.712 199147 13177 2 0 31 2025-03-20 05:38:40.068 2025-03-20 05:38:40.068 199286 626 1 0 32 2025-03-20 05:38:40.484 2025-03-20 05:38:40.484 199286 14503 9 0 33 2025-03-20 05:38:40.068 2025-03-20 05:38:40.068 199286 14910 9 0 34 2025-03-20 05:38:40.484 2025-03-20 05:38:40.484 199286 17984 1 0 35 2025-03-28 12:02:54.23 2025-03-28 12:02:54.23 212959 14785 2 0 36 2025-03-28 12:02:54.23 2025-03-28 12:02:54.23 212959 16536 19 0 37 2025-03-20 05:38:38.496 2025-03-20 05:38:38.496 217413 712 1 0 38 2025-03-20 05:38:38.496 2025-03-20 05:38:38.496 217413 891 9 0 39 2025-03-20 05:38:38.933 2025-03-20 05:38:38.933 217413 2431 9 0 40 2025-03-20 05:38:38.933 2025-03-20 05:38:38.933 217413 5757 1 0 41 2025-03-20 05:38:37.491 2025-03-20 05:38:37.491 230233 3656 9 0 42 2025-03-20 05:38:37.046 2025-03-20 05:38:37.046 230233 5112 9 0 43 2025-03-20 05:38:37.491 2025-03-20 05:38:37.491 230233 9169 1 0 44 2025-03-20 05:38:37.046 2025-03-20 05:38:37.046 230233 10661 1 0 45 2025-03-19 23:34:18.168 2025-03-19 23:34:18.168 232964 1825 90 0 46 2025-03-19 23:34:18.168 2025-03-19 23:34:18.168 232964 8059 10 0 47 2025-03-20 01:49:13.25 2025-03-20 01:49:13.25 237680 632 19 0 48 2025-03-20 01:49:12.573 2025-03-20 01:49:12.573 237680 5708 2 0 49 2025-03-20 01:49:12.573 2025-03-20 01:49:12.573 237680 11523 19 0 50 2025-03-20 01:49:13.25 2025-03-20 01:49:13.25 237680 20603 2 0 51 2025-03-20 04:21:18.062 2025-03-20 04:21:18.062 238583 2639 0 0 52 2025-03-20 04:33:20.688 2025-03-20 04:33:20.688 238583 9348 3 0 53 2025-03-20 04:21:18.062 2025-03-20 04:21:18.062 238583 11417 1 0 54 2025-03-20 04:33:20.688 2025-03-20 04:33:20.688 238583 16695 25 0 55 2025-03-20 04:28:42.602 2025-03-20 04:28:42.602 247866 654 19 0 56 2025-03-20 04:28:44.2 2025-03-20 04:28:44.2 247866 1447 19 0 57 2025-03-20 04:28:45.366 2025-03-20 04:28:45.366 247866 1881 19 0 58 2025-03-20 04:28:44.2 2025-03-20 04:28:44.2 247866 2361 2 0 59 2025-03-20 04:28:42.602 2025-03-20 04:28:42.602 247866 2514 2 0 60 2025-03-20 04:28:45.366 2025-03-20 04:28:45.366 247866 7847 2 0 61 2025-03-20 04:28:42.23 2025-03-20 04:28:42.23 247866 9295 19 0 62 2025-03-20 04:28:44.404 2025-03-20 04:28:44.404 247866 9529 2 0 63 2025-03-20 04:28:44.043 2025-03-20 04:28:44.043 247866 10393 19 0 64 2025-03-20 04:28:42.033 2025-03-20 04:28:42.033 247866 15075 2 0 65 2025-03-20 04:28:42.033 2025-03-20 04:28:42.033 247866 16284 19 0 66 2025-03-20 04:28:42.23 2025-03-20 04:28:42.23 247866 19199 2 0 67 2025-03-20 04:28:44.404 2025-03-20 04:28:44.404 247866 20906 19 0 68 2025-03-20 04:28:44.043 2025-03-20 04:28:44.043 247866 21357 2 0 69 2025-03-19 05:24:37.431 2025-03-19 05:24:37.431 253077 4776 243 0 70 2025-03-19 05:24:37.431 2025-03-19 05:24:37.431 253077 10352 27 0 71 2025-03-19 05:24:37.114 2025-03-19 05:24:37.114 253077 15488 3 0 72 2025-03-19 05:24:37.114 2025-03-19 05:24:37.114 253077 16350 27 0 73 2025-03-19 19:19:47.08 2025-03-19 19:19:47.08 259258 15703 9 0 74 2025-03-19 19:19:47.08 2025-03-19 19:19:47.08 259258 16406 1 0 75 2025-03-18 19:05:39.84 2025-03-18 19:05:39.84 265848 1426 1 0 76 2025-03-18 19:05:39.84 2025-03-18 19:05:39.84 265848 10433 9 0 77 2025-03-18 19:06:04.212 2025-03-18 19:06:04.212 266131 2309 9 0 78 2025-03-18 19:06:04.212 2025-03-18 19:06:04.212 266131 2774 1 0 79 2025-03-18 16:42:20.614 2025-03-18 16:42:20.614 266721 827 2 0 80 2025-03-18 16:42:20.614 2025-03-18 16:42:20.614 266721 16808 19 0 81 2025-03-19 03:29:27.313 2025-03-19 03:29:27.313 294981 10519 0 3 82 2025-03-19 13:41:25.595 2025-03-19 13:41:25.595 298001 16149 0 0 83 2025-03-19 05:29:27.458 2025-03-19 05:29:27.458 312024 848 13 0 84 2025-03-19 05:29:27.458 2025-03-19 05:29:27.458 312024 1833 115 0 85 2025-03-19 05:28:55.24 2025-03-19 05:28:55.24 312067 5725 115 0 86 2025-03-19 05:28:55.24 2025-03-19 05:28:55.24 312067 16956 13 0 87 2025-03-19 02:14:46.13 2025-03-19 02:14:46.13 314277 13348 3 0 88 2025-03-19 02:14:46.13 2025-03-19 02:14:46.13 314277 17953 0 0 89 2025-03-26 05:32:06.925 2025-03-26 05:32:06.925 314960 19332 10 0 90 2025-03-26 05:32:06.925 2025-03-26 05:32:06.925 314960 19535 90 0 91 2025-03-19 04:46:50.903 2025-03-19 04:46:50.903 317410 976 10 0 92 2025-03-19 04:46:50.903 2025-03-19 04:46:50.903 317410 21208 90 0 93 2025-03-19 15:10:19.336 2025-03-19 15:10:19.336 330574 13365 90 0 94 2025-03-19 15:10:19.336 2025-03-19 15:10:19.336 330574 20187 10 0 95 2025-03-19 04:34:35.07 2025-03-19 04:34:35.07 330735 697 1 0 96 2025-03-19 04:34:35.07 2025-03-19 04:34:35.07 330735 4173 0 0 97 2025-03-28 11:16:12.838 2025-03-28 11:16:12.838 337715 15843 5 0 98 2025-03-28 11:16:12.838 2025-03-28 11:16:12.838 337715 21332 1 0 99 2025-03-29 09:08:58.508 2025-03-29 09:08:58.508 344372 4692 5 0 100 2025-03-29 09:08:58.508 2025-03-29 09:08:58.508 344372 13055 45 0 101 2025-03-29 09:08:53.33 2025-03-29 09:08:53.33 345255 6160 45 0 102 2025-03-29 09:08:53.33 2025-03-29 09:08:53.33 345255 19217 5 0 103 2025-03-19 10:06:01.7 2025-03-19 10:06:01.7 357875 9378 1 0 104 2025-03-19 10:06:01.7 2025-03-19 10:06:01.7 357875 21620 10 0 105 2025-03-19 08:08:44.593 2025-03-19 08:08:44.593 364096 1389 0 0 106 2025-03-19 08:08:44.593 2025-03-19 08:08:44.593 364096 9529 3 0 107 2025-03-20 08:24:29.946 2025-03-20 08:24:29.946 368845 20137 0 0 108 2025-03-20 09:03:52.143 2025-03-20 09:03:52.143 368845 20691 0 0 109 2025-03-20 11:38:20.265 2025-03-20 11:38:20.265 368845 20998 0 0 110 2025-03-20 10:01:17.602 2025-03-20 10:01:17.602 375801 19663 0 0 111 2025-03-29 09:01:31.548 2025-03-29 09:01:31.548 383302 3656 5 0 112 2025-03-29 09:01:31.548 2025-03-29 09:01:31.548 383302 9167 45 0 113 2025-03-19 03:47:37.605 2025-03-19 03:47:37.605 383547 10342 0 0 114 2025-03-19 08:42:22.809 2025-03-19 08:42:22.809 383547 11423 0 0 115 2025-03-19 22:55:35.439 2025-03-19 22:55:35.439 383547 16347 0 0 116 2025-03-19 08:42:12.597 2025-03-19 08:42:12.597 383547 20904 0 0 117 2025-03-19 22:52:03.389 2025-03-19 22:52:03.389 383547 21555 0 0 118 2025-03-20 10:11:15.767 2025-03-20 10:11:15.767 385935 667 2 0 119 2025-03-20 10:11:15.555 2025-03-20 10:11:15.555 385935 1122 1 0 120 2025-03-20 10:11:15.893 2025-03-20 10:11:15.893 385935 1326 10 0 121 2025-03-20 10:11:16.321 2025-03-20 10:11:16.321 385935 1823 10 0 122 2025-03-20 10:11:16.645 2025-03-20 10:11:16.645 385935 4173 1 0 123 2025-03-20 10:11:14.795 2025-03-20 10:11:14.795 385935 4654 1 0 124 2025-03-20 10:11:16.061 2025-03-20 10:11:16.061 385935 5427 10 0 125 2025-03-20 10:11:15.555 2025-03-20 10:11:15.555 385935 8469 10 0 126 2025-03-20 10:11:16.321 2025-03-20 10:11:16.321 385935 8570 1 0 127 2025-03-20 10:11:15.284 2025-03-20 10:11:15.284 385935 9109 1 0 128 2025-03-20 10:11:15.155 2025-03-20 10:11:15.155 385935 9366 10 0 129 2025-03-20 10:11:15.155 2025-03-20 10:11:15.155 385935 9450 1 0 130 2025-03-20 10:11:15.893 2025-03-20 10:11:15.893 385935 14465 1 0 131 2025-03-20 10:11:14.911 2025-03-20 10:11:14.911 385935 16350 10 0 132 2025-03-20 10:11:16.467 2025-03-20 10:11:16.467 385935 16406 10 0 133 2025-03-20 10:11:16.172 2025-03-20 10:11:16.172 385935 18069 1 0 134 2025-03-20 10:11:16.172 2025-03-20 10:11:16.172 385935 18402 10 0 135 2025-03-20 10:11:15.767 2025-03-20 10:11:15.767 385935 19071 20 0 136 2025-03-20 10:11:14.795 2025-03-20 10:11:14.795 385935 19193 10 0 137 2025-03-20 10:11:16.467 2025-03-20 10:11:16.467 385935 20222 1 0 138 2025-03-20 10:11:15.284 2025-03-20 10:11:15.284 385935 20612 10 0 139 2025-03-20 10:11:16.061 2025-03-20 10:11:16.061 385935 21242 1 0 140 2025-03-20 10:11:16.645 2025-03-20 10:11:16.645 385935 21514 10 0 141 2025-03-20 10:11:14.911 2025-03-20 10:11:14.911 385935 21794 1 0 142 2025-03-18 21:51:33.366 2025-03-18 21:51:33.366 386196 1505 9 0 143 2025-03-18 21:51:33.366 2025-03-18 21:51:33.366 386196 12291 1 0 144 2025-03-19 04:48:28.003 2025-03-19 04:48:28.003 392486 713 15 0 145 2025-03-19 04:48:28.003 2025-03-19 04:48:28.003 392486 18005 2 0 146 2025-03-20 01:46:24.564 2025-03-20 01:46:24.564 397192 9 19 0 147 2025-03-20 01:46:30.001 2025-03-20 01:46:30.001 397192 654 19 0 148 2025-03-20 01:46:30.001 2025-03-20 01:46:30.001 397192 946 2 0 149 2025-03-20 01:46:23.045 2025-03-20 01:46:23.045 397192 2010 19 0 150 2025-03-20 01:46:23.798 2025-03-20 01:46:23.798 397192 6148 2 0 151 2025-03-20 01:46:24.564 2025-03-20 01:46:24.564 397192 12049 2 0 152 2025-03-20 01:46:25.353 2025-03-20 01:46:25.353 397192 16410 19 0 153 2025-03-20 01:46:23.045 2025-03-20 01:46:23.045 397192 16562 2 0 154 2025-03-20 01:46:23.798 2025-03-20 01:46:23.798 397192 17094 19 0 155 2025-03-20 01:46:25.353 2025-03-20 01:46:25.353 397192 18727 2 0 156 2025-03-20 04:12:14.504 2025-03-20 04:12:14.504 397842 759 10 0 157 2025-03-20 04:12:14.504 2025-03-20 04:12:14.504 397842 14688 90 0 158 2025-03-28 10:28:02.533 2025-03-28 10:28:02.533 403036 630 19 0 159 2025-03-28 10:28:02.533 2025-03-28 10:28:02.533 403036 15146 2 0 160 2025-03-26 06:58:05.264 2025-03-26 06:58:05.264 403892 1142 10 0 161 2025-03-26 06:58:05.264 2025-03-26 06:58:05.264 403892 14357 1 0 162 2025-03-26 04:28:09.98 2025-03-26 04:28:09.98 404172 15690 0 0 163 2025-03-26 04:46:01.116 2025-03-26 04:46:01.116 404172 20490 0 0 164 2025-03-18 19:18:01.983 2025-03-18 19:18:01.983 409082 10719 4 0 165 2025-03-18 19:18:01.983 2025-03-18 19:18:01.983 409082 12774 38 0 166 2025-03-29 15:04:14.351 2025-03-29 15:04:14.351 410985 1615 4 0 167 2025-03-29 15:04:14.351 2025-03-29 15:04:14.351 410985 19126 38 0 168 2025-03-19 14:15:52.445 2025-03-19 14:15:52.445 415559 9992 69 0 169 2025-03-19 14:15:52.445 2025-03-19 14:15:52.445 415559 18731 8 0 170 2025-03-18 23:08:54.311 2025-03-18 23:08:54.311 416239 4167 90 0 171 2025-03-18 23:08:54.311 2025-03-18 23:08:54.311 416239 10698 10 0 172 2025-03-18 23:08:52.011 2025-03-18 23:08:52.011 416239 15103 10 0 173 2025-03-18 23:08:52.011 2025-03-18 23:08:52.011 416239 20913 90 0 174 2025-03-19 18:01:08.755 2025-03-19 18:01:08.755 418021 671 3 0 175 2025-03-19 18:01:08.755 2025-03-19 18:01:08.755 418021 3347 30 0 176 2025-03-20 01:48:47.693 2025-03-20 01:48:47.693 418294 618 2 0 177 2025-03-20 01:48:42.012 2025-03-20 01:48:42.012 418294 717 19 0 178 2025-03-20 01:48:47.848 2025-03-20 01:48:47.848 418294 736 2 0 179 2025-03-20 01:48:47.552 2025-03-20 01:48:47.552 418294 909 2 0 180 2025-03-20 01:48:43.615 2025-03-20 01:48:43.615 418294 1465 19 0 181 2025-03-20 01:48:47.992 2025-03-20 01:48:47.992 418294 1515 2 0 182 2025-03-20 01:48:47.992 2025-03-20 01:48:47.992 418294 2327 19 0 183 2025-03-20 01:48:47.693 2025-03-20 01:48:47.693 418294 2789 19 0 184 2025-03-20 01:48:43.751 2025-03-20 01:48:43.751 418294 4989 19 0 185 2025-03-20 01:48:42.012 2025-03-20 01:48:42.012 418294 16842 2 0 186 2025-03-20 01:48:43.751 2025-03-20 01:48:43.751 418294 19094 2 0 187 2025-03-20 01:48:47.848 2025-03-20 01:48:47.848 418294 20636 19 0 188 2025-03-20 01:48:43.615 2025-03-20 01:48:43.615 418294 20837 2 0 189 2025-03-20 01:48:47.552 2025-03-20 01:48:47.552 418294 21338 19 0 190 2025-03-20 03:16:47.304 2025-03-20 03:16:47.304 419511 13097 90 0 191 2025-03-20 03:16:47.304 2025-03-20 03:16:47.304 419511 21791 10 0 192 2025-03-18 21:45:23.731 2025-03-18 21:45:23.731 419731 21408 0 1 193 2025-03-19 07:50:50.434 2025-03-19 07:50:50.434 421398 624 10 0 194 2025-03-19 07:50:50.434 2025-03-19 07:50:50.434 421398 2543 90 0 195 2025-03-29 08:54:14.518 2025-03-29 08:54:14.518 421451 1745 2 0 196 2025-03-29 08:54:14.518 2025-03-29 08:54:14.518 421451 19992 19 0 197 2025-03-19 04:34:33.325 2025-03-19 04:34:33.325 422673 5752 3 0 198 2025-03-19 04:34:33.325 2025-03-19 04:34:33.325 422673 11395 0 0 199 2025-03-18 18:19:11.058 2025-03-18 18:19:11.058 423475 691 1 0 200 2025-03-18 18:19:09.396 2025-03-18 18:19:09.396 423475 997 1 0 201 2025-03-18 18:18:59.802 2025-03-18 18:18:59.802 423475 1495 1 0 202 2025-03-18 18:19:08.951 2025-03-18 18:19:08.951 423475 1611 1 0 203 2025-03-18 18:18:58.87 2025-03-18 18:18:58.87 423475 1720 0 0 204 2025-03-18 18:19:11.511 2025-03-18 18:19:11.511 423475 1802 0 0 205 2025-03-18 18:19:09.193 2025-03-18 18:19:09.193 423475 1970 1 0 206 2025-03-18 18:19:10.042 2025-03-18 18:19:10.042 423475 2514 0 0 207 2025-03-18 18:19:11.119 2025-03-18 18:19:11.119 423475 4115 0 0 208 2025-03-18 18:19:11.119 2025-03-18 18:19:11.119 423475 4650 1 0 209 2025-03-18 18:18:59.943 2025-03-18 18:18:59.943 423475 5519 1 0 210 2025-03-18 18:19:11.511 2025-03-18 18:19:11.511 423475 5825 1 0 211 2025-03-18 18:18:59.491 2025-03-18 18:18:59.491 423475 6421 0 0 212 2025-03-18 18:18:57.593 2025-03-18 18:18:57.593 423475 7097 1 0 213 2025-03-18 18:18:59.943 2025-03-18 18:18:59.943 423475 7674 0 0 214 2025-03-18 18:19:09.193 2025-03-18 18:19:09.193 423475 8045 0 0 215 2025-03-18 18:19:08.951 2025-03-18 18:19:08.951 423475 8173 0 0 216 2025-03-18 18:18:58.87 2025-03-18 18:18:58.87 423475 9171 2 0 217 2025-03-18 18:18:59.491 2025-03-18 18:18:59.491 423475 9355 1 0 218 2025-03-18 18:18:59.802 2025-03-18 18:18:59.802 423475 9705 0 0 219 2025-03-18 18:18:59.335 2025-03-18 18:18:59.335 423475 10719 1 0 220 2025-03-18 18:18:59.335 2025-03-18 18:18:59.335 423475 13878 0 0 221 2025-03-18 18:19:11.058 2025-03-18 18:19:11.058 423475 16351 0 0 222 2025-03-18 18:19:10.066 2025-03-18 18:19:10.066 423475 17001 1 0 223 2025-03-18 18:19:10.066 2025-03-18 18:19:10.066 423475 17157 0 0 224 2025-03-18 18:19:09.658 2025-03-18 18:19:09.658 423475 19463 0 0 225 2025-03-18 18:19:10.042 2025-03-18 18:19:10.042 423475 19826 1 0 226 2025-03-18 18:19:09.658 2025-03-18 18:19:09.658 423475 20026 1 0 227 2025-03-18 18:19:10.542 2025-03-18 18:19:10.542 423475 20381 0 0 228 2025-03-18 18:18:57.593 2025-03-18 18:18:57.593 423475 20613 0 0 229 2025-03-18 18:19:09.396 2025-03-18 18:19:09.396 423475 20680 0 0 230 2025-03-18 18:19:10.542 2025-03-18 18:19:10.542 423475 20906 1 0 231 2025-03-20 14:50:25.04 2025-03-20 14:50:25.04 423683 1394 3 0 232 2025-03-18 18:22:19.111 2025-03-18 18:22:19.111 423720 909 1 0 233 2025-03-18 18:22:19.985 2025-03-18 18:22:19.985 423720 1354 0 0 234 2025-03-18 18:22:18.497 2025-03-18 18:22:18.497 423720 1472 0 0 235 2025-03-18 18:22:19.286 2025-03-18 18:22:19.286 423720 1505 1 0 236 2025-03-18 18:22:18.827 2025-03-18 18:22:18.827 423720 2748 0 0 237 2025-03-18 18:22:20.201 2025-03-18 18:22:20.201 423720 4602 1 0 238 2025-03-18 18:22:19.286 2025-03-18 18:22:19.286 423720 7587 0 0 239 2025-03-18 18:22:19.766 2025-03-18 18:22:19.766 423720 11527 2 0 240 2025-03-18 18:22:18.827 2025-03-18 18:22:18.827 423720 14381 1 0 241 2025-03-18 18:22:20.201 2025-03-18 18:22:20.201 423720 14651 0 0 242 2025-03-18 18:22:19.111 2025-03-18 18:22:19.111 423720 15588 0 0 243 2025-03-18 18:22:19.985 2025-03-18 18:22:19.985 423720 16354 1 0 244 2025-03-18 18:22:19.766 2025-03-18 18:22:19.766 423720 17741 0 0 245 2025-03-18 18:22:18.497 2025-03-18 18:22:18.497 423720 19199 1 0 246 2025-03-18 21:40:28.678 2025-03-18 21:40:28.678 425712 16289 19 0 247 2025-03-18 21:40:28.678 2025-03-18 21:40:28.678 425712 20062 2 0 248 2025-03-19 04:34:27.731 2025-03-19 04:34:27.731 426444 10519 0 0 249 2025-03-19 04:34:27.731 2025-03-19 04:34:27.731 426444 15060 3 0 250 2025-03-18 20:51:36.944 2025-03-18 20:51:36.944 427186 963 8 0 251 2025-03-18 20:51:36.545 2025-03-18 20:51:36.545 427186 1124 69 0 252 2025-03-18 20:51:35.327 2025-03-18 20:51:35.327 427186 1773 8 0 253 2025-03-18 20:51:36.663 2025-03-18 20:51:36.663 427186 9167 69 0 254 2025-03-18 20:51:35.327 2025-03-18 20:51:35.327 427186 12097 69 0 255 2025-03-18 20:51:36.944 2025-03-18 20:51:36.944 427186 14688 69 0 256 2025-03-18 20:51:36.663 2025-03-18 20:51:36.663 427186 14990 8 0 257 2025-03-18 20:51:36.545 2025-03-18 20:51:36.545 427186 20436 8 0 258 2025-03-19 14:49:30.549 2025-03-19 14:49:30.549 427798 1803 1 0 259 2025-03-19 14:49:30.549 2025-03-19 14:49:30.549 427798 20099 0 0 260 2025-03-20 01:31:30.581 2025-03-20 01:31:30.581 428953 960 0 0 261 2025-03-20 05:02:51.475 2025-03-20 05:02:51.475 428953 16336 0 0 262 2025-03-20 04:23:28.747 2025-03-20 04:23:28.747 428988 2735 1 0 263 2025-03-20 04:23:28.747 2025-03-20 04:23:28.747 428988 16556 0 0 264 2025-03-18 20:42:31.494 2025-03-18 20:42:31.494 428997 899 1 0 265 2025-03-18 20:42:31.494 2025-03-18 20:42:31.494 428997 17682 0 0 266 2025-03-19 04:04:10.63 2025-03-19 04:04:10.63 429227 7185 1 0 267 2025-03-19 04:04:10.63 2025-03-19 04:04:10.63 429227 17570 9 0 268 2025-03-19 05:30:35.534 2025-03-19 05:30:35.534 429275 704 10 0 269 2025-03-19 05:30:35.534 2025-03-19 05:30:35.534 429275 17741 1 0 270 2025-03-19 01:30:35.539 2025-03-19 01:30:35.539 429291 14705 13 0 271 2025-03-19 01:30:35.539 2025-03-19 01:30:35.539 429291 16282 115 0 272 2025-03-19 08:30:48.651 2025-03-19 08:30:48.651 429559 720 21 0 273 2025-03-19 08:30:48.93 2025-03-19 08:30:48.93 429559 766 2 0 274 2025-03-19 08:30:49.241 2025-03-19 08:30:49.241 429559 925 21 0 275 2025-03-19 08:30:49.598 2025-03-19 08:30:49.598 429559 1602 21 0 276 2025-03-19 08:30:49.094 2025-03-19 08:30:49.094 429559 1800 2 0 277 2025-03-19 08:30:49.388 2025-03-19 08:30:49.388 429559 2431 2 0 278 2025-03-19 08:30:50.056 2025-03-19 08:30:50.056 429559 2719 2 0 279 2025-03-19 08:30:48.737 2025-03-19 08:30:48.737 429559 4115 2 0 280 2025-03-19 08:30:51.342 2025-03-19 08:30:51.342 429559 4538 21 0 281 2025-03-19 08:30:51.204 2025-03-19 08:30:51.204 429559 5557 21 0 282 2025-03-19 08:30:50.17 2025-03-19 08:30:50.17 429559 6335 21 0 283 2025-03-19 08:30:51.204 2025-03-19 08:30:51.204 429559 7760 2 0 284 2025-03-19 08:30:51.061 2025-03-19 08:30:51.061 429559 9036 2 0 285 2025-03-19 08:30:51.457 2025-03-19 08:30:51.457 429559 9099 21 0 286 2025-03-19 08:30:49.241 2025-03-19 08:30:49.241 429559 9517 2 0 287 2025-03-19 08:30:49.388 2025-03-19 08:30:49.388 429559 9758 21 0 288 2025-03-19 08:30:49.762 2025-03-19 08:30:49.762 429559 9985 21 0 289 2025-03-19 08:30:49.762 2025-03-19 08:30:49.762 429559 11714 2 0 290 2025-03-19 08:30:50.056 2025-03-19 08:30:50.056 429559 14785 21 0 291 2025-03-19 08:30:48.737 2025-03-19 08:30:48.737 429559 15139 21 0 292 2025-03-19 08:30:51.061 2025-03-19 08:30:51.061 429559 15577 21 0 293 2025-03-19 08:30:48.93 2025-03-19 08:30:48.93 429559 15941 21 0 294 2025-03-19 08:30:50.17 2025-03-19 08:30:50.17 429559 16834 2 0 295 2025-03-19 08:30:49.912 2025-03-19 08:30:49.912 429559 17091 2 0 296 2025-03-19 08:30:51.342 2025-03-19 08:30:51.342 429559 17124 2 0 297 2025-03-19 08:30:50.92 2025-03-19 08:30:50.92 429559 17291 21 0 298 2025-03-19 08:30:49.598 2025-03-19 08:30:49.598 429559 18114 2 0 299 2025-03-19 08:30:51.457 2025-03-19 08:30:51.457 429559 18177 2 0 300 2025-03-19 08:30:50.92 2025-03-19 08:30:50.92 429559 18494 2 0 301 2025-03-19 08:30:48.651 2025-03-19 08:30:48.651 429559 20912 2 0 302 2025-03-19 08:30:49.094 2025-03-19 08:30:49.094 429559 21072 21 0 303 2025-03-19 08:30:49.912 2025-03-19 08:30:49.912 429559 21523 21 0 304 2025-03-20 09:50:23.169 2025-03-20 09:50:23.169 429739 9356 2 0 305 2025-03-20 09:50:23.169 2025-03-20 09:50:23.169 429739 17741 19 0 306 2025-03-19 11:03:59.554 2025-03-19 11:03:59.554 429807 19459 2 0 307 2025-03-19 11:03:59.554 2025-03-19 11:03:59.554 429807 21136 19 0 308 2025-03-20 09:53:06.989 2025-03-20 09:53:06.989 430104 16724 10 0 309 2025-03-20 09:53:06.989 2025-03-20 09:53:06.989 430104 20099 1 0 310 2025-03-20 09:51:51.237 2025-03-20 09:51:51.237 430208 837 1 0 311 2025-03-20 09:51:51.237 2025-03-20 09:51:51.237 430208 19537 10 0 312 2025-03-20 09:51:45.679 2025-03-20 09:51:45.679 430216 652 10 0 313 2025-03-20 09:51:45.679 2025-03-20 09:51:45.679 430216 1130 1 0 314 2025-03-20 00:12:11.247 2025-03-20 00:12:11.247 430248 13361 1 0 315 2025-03-20 00:12:11.247 2025-03-20 00:12:11.247 430248 16667 10 0 316 2025-03-20 09:51:26.302 2025-03-20 09:51:26.302 430277 2309 2 0 317 2025-03-20 09:51:26.302 2025-03-20 09:51:26.302 430277 16229 19 0 318 2025-03-19 03:17:45.31 2025-03-19 03:17:45.31 430342 624 0 0 319 2025-03-19 03:17:45.781 2025-03-19 03:17:45.781 430342 705 1 0 320 2025-03-19 03:17:43.904 2025-03-19 03:17:43.904 430342 993 1 0 321 2025-03-19 03:17:45.781 2025-03-19 03:17:45.781 430342 4862 0 0 322 2025-03-19 03:17:43.904 2025-03-19 03:17:43.904 430342 6578 0 0 323 2025-03-19 03:17:46.168 2025-03-19 03:17:46.168 430342 12808 1 0 324 2025-03-19 03:17:44.764 2025-03-19 03:17:44.764 430342 17171 1 0 325 2025-03-19 03:17:46.168 2025-03-19 03:17:46.168 430342 17714 0 0 326 2025-03-19 03:17:45.31 2025-03-19 03:17:45.31 430342 20137 1 0 327 2025-03-19 03:17:44.764 2025-03-19 03:17:44.764 430342 20647 0 0 328 2025-03-19 21:40:27.481 2025-03-19 21:40:27.481 430411 618 9 0 329 2025-03-19 21:40:28.017 2025-03-19 21:40:28.017 430411 979 9 0 330 2025-03-19 21:40:28.017 2025-03-19 21:40:28.017 430411 2232 81 0 331 2025-03-19 21:40:27.481 2025-03-19 21:40:27.481 430411 17014 1 0 332 2025-03-19 00:41:04.106 2025-03-19 00:41:04.106 430498 646 3 0 333 2025-03-19 00:40:27.416 2025-03-19 00:40:27.416 430498 690 0 0 334 2025-03-19 00:40:27.416 2025-03-19 00:40:27.416 430498 11527 4 0 335 2025-03-19 00:41:04.106 2025-03-19 00:41:04.106 430498 16267 27 0 336 2025-03-20 00:44:18.748 2025-03-20 00:44:18.748 430867 1620 19 0 337 2025-03-20 00:44:18.748 2025-03-20 00:44:18.748 430867 12736 2 0 338 2025-03-19 19:18:59.215 2025-03-19 19:18:59.215 430892 15577 1 0 339 2025-03-19 19:18:59.215 2025-03-19 19:18:59.215 430892 20603 0 0 340 2025-03-20 08:49:58.895 2025-03-20 08:49:58.895 431189 2775 1 0 341 2025-03-20 08:49:58.895 2025-03-20 08:49:58.895 431189 20555 9 0 342 2025-03-19 18:47:05.984 2025-03-19 18:47:05.984 431241 20551 0 40 343 2025-03-20 12:40:55.705 2025-03-20 12:40:55.705 431293 4570 2 0 344 2025-03-20 01:48:26.823 2025-03-20 01:48:26.823 431293 10433 2 0 345 2025-03-20 12:40:55.705 2025-03-20 12:40:55.705 431293 14168 19 0 346 2025-03-20 01:48:26.823 2025-03-20 01:48:26.823 431293 20939 19 0 347 2025-03-20 09:53:34.827 2025-03-20 09:53:34.827 431655 5904 2 0 348 2025-03-20 09:53:34.827 2025-03-20 09:53:34.827 431655 21402 19 0 349 2025-03-19 02:48:19.911 2025-03-19 02:48:19.911 431714 11240 19 0 350 2025-03-19 02:48:19.911 2025-03-19 02:48:19.911 431714 18393 2 0 351 2025-03-19 23:30:36.599 2025-03-19 23:30:36.599 432322 1596 500 0 352 2025-03-19 23:30:36.599 2025-03-19 23:30:36.599 432322 11621 4500 0 353 2025-03-20 08:19:38.174 2025-03-20 08:19:38.174 432328 16876 1 0 354 2025-03-20 08:19:38.174 2025-03-20 08:19:38.174 432328 18232 0 0 355 2025-03-19 11:39:23.647 2025-03-19 11:39:23.647 432416 2749 10 0 356 2025-03-19 11:39:23.647 2025-03-19 11:39:23.647 432416 9290 90 0 357 2025-03-19 03:45:29.649 2025-03-19 03:45:29.649 432504 2285 2 0 358 2025-03-19 03:45:29.649 2025-03-19 03:45:29.649 432504 16571 19 0 359 2025-03-19 23:31:03.604 2025-03-19 23:31:03.604 432547 1650 38 0 360 2025-03-19 23:31:03.604 2025-03-19 23:31:03.604 432547 19117 4 0 361 2025-03-19 13:55:00.045 2025-03-19 13:55:00.045 432705 667 2 0 362 2025-03-19 13:54:52.875 2025-03-19 13:54:52.875 432705 2056 2 0 363 2025-03-19 13:54:52.272 2025-03-19 13:54:52.272 432705 5195 2 0 364 2025-03-19 13:55:00.045 2025-03-19 13:55:00.045 432705 7772 19 0 365 2025-03-19 13:54:52.272 2025-03-19 13:54:52.272 432705 9295 19 0 366 2025-03-19 13:54:52.875 2025-03-19 13:54:52.875 432705 19016 19 0 367 2025-03-19 07:40:31.846 2025-03-19 07:40:31.846 432713 19117 2 0 368 2025-03-19 07:40:31.846 2025-03-19 07:40:31.846 432713 20897 19 0 369 2025-03-19 05:31:05.109 2025-03-19 05:31:05.109 432838 1469 0 0 370 2025-03-19 05:31:05.109 2025-03-19 05:31:05.109 432838 11192 3 0 371 2025-03-19 02:28:01.354 2025-03-19 02:28:01.354 432861 16660 10 0 372 2025-03-19 02:28:01.354 2025-03-19 02:28:01.354 432861 17041 1 0 373 2025-03-18 20:30:36.517 2025-03-18 20:30:36.517 432920 633 1407 0 374 2025-03-20 12:36:45.298 2025-03-20 12:36:45.298 432920 642 4500 0 375 2025-03-19 04:13:13.852 2025-03-19 04:13:13.852 432920 780 20 0 376 2025-03-19 16:30:47.103 2025-03-19 16:30:47.103 432920 827 204 0 377 2025-03-19 04:13:13.852 2025-03-19 04:13:13.852 432920 2232 180 0 378 2025-03-18 20:30:36.517 2025-03-18 20:30:36.517 432920 2330 156 0 379 2025-03-18 20:28:18.771 2025-03-18 20:28:18.771 432920 2844 100 0 380 2025-03-18 20:28:18.771 2025-03-18 20:28:18.771 432920 4079 900 0 381 2025-03-19 21:39:26.181 2025-03-19 21:39:26.181 432920 4538 1 0 382 2025-03-19 04:13:06.941 2025-03-19 04:13:06.941 432920 7827 180 0 383 2025-03-19 07:24:13.122 2025-03-19 07:24:13.122 432920 9354 900 0 384 2025-03-20 12:36:45.298 2025-03-20 12:36:45.298 432920 11491 500 0 385 2025-03-19 21:39:26.181 2025-03-19 21:39:26.181 432920 14939 9 0 386 2025-03-19 06:39:07.355 2025-03-19 06:39:07.355 432920 15147 1 0 387 2025-03-19 00:34:46.619 2025-03-19 00:34:46.619 432920 16250 42 0 388 2025-03-19 16:30:47.103 2025-03-19 16:30:47.103 432920 16424 23 0 389 2025-03-19 04:13:06.941 2025-03-19 04:13:06.941 432920 16543 20 0 390 2025-03-19 07:24:13.122 2025-03-19 07:24:13.122 432920 17116 8100 0 391 2025-03-19 16:30:44.467 2025-03-19 16:30:44.467 432920 17184 23 0 392 2025-03-19 06:39:07.355 2025-03-19 06:39:07.355 432920 19378 0 0 393 2025-03-19 21:39:25.374 2025-03-19 21:39:25.374 432920 20562 1 0 394 2025-03-19 16:30:44.467 2025-03-19 16:30:44.467 432920 20647 204 0 395 2025-03-19 21:39:25.374 2025-03-19 21:39:25.374 432920 21314 9 0 396 2025-03-19 00:34:46.619 2025-03-19 00:34:46.619 432920 21514 379 0 397 2025-03-19 07:38:00.766 2025-03-19 07:38:00.766 432977 4776 270 0 398 2025-03-19 07:38:00.766 2025-03-19 07:38:00.766 432977 21683 30 0 399 2025-03-19 04:34:41.387 2025-03-19 04:34:41.387 432982 5308 6 0 400 2025-03-19 04:34:41.387 2025-03-19 04:34:41.387 432982 20636 1 0 401 2025-03-19 09:15:14.97 2025-03-19 09:15:14.97 433066 5637 9 0 402 2025-03-19 09:15:15.821 2025-03-19 09:15:15.821 433066 17321 1 0 403 2025-03-19 09:15:15.821 2025-03-19 09:15:15.821 433066 21451 9 0 404 2025-03-19 09:15:14.97 2025-03-19 09:15:14.97 433066 21494 1 0 405 2025-03-18 19:48:04.313 2025-03-18 19:48:04.313 433079 1881 1 0 406 2025-03-18 19:48:04.313 2025-03-18 19:48:04.313 433079 11866 9 0 407 2025-03-19 09:12:07.974 2025-03-19 09:12:07.974 433088 746 9 0 408 2025-03-19 09:12:07.974 2025-03-19 09:12:07.974 433088 21369 1 0 409 2025-03-19 04:12:15.722 2025-03-19 04:12:15.722 433123 673 20 0 410 2025-03-19 04:12:19.205 2025-03-19 04:12:19.205 433123 1105 180 0 411 2025-03-19 04:12:42.41 2025-03-19 04:12:42.41 433123 1316 1 0 412 2025-03-19 04:12:37.147 2025-03-19 04:12:37.147 433123 1718 23 0 413 2025-03-19 04:12:37.147 2025-03-19 04:12:37.147 433123 2749 3 0 414 2025-03-19 04:12:22.914 2025-03-19 04:12:22.914 433123 3409 20 0 415 2025-03-19 04:11:51.236 2025-03-19 04:12:22.914 433123 4973 190 0 416 2025-03-19 00:33:29.193 2025-03-19 00:33:29.193 433123 9290 90 0 417 2025-03-19 04:11:51.236 2025-03-19 04:11:51.236 433123 10280 90 0 418 2025-03-19 04:12:15.722 2025-03-19 04:12:15.722 433123 11314 180 0 419 2025-03-19 04:12:42.41 2025-03-19 04:12:42.41 433123 12976 0 0 420 2025-03-19 04:12:19.205 2025-03-19 04:12:19.205 433123 18618 20 0 421 2025-03-19 00:33:29.193 2025-03-19 00:33:29.193 433123 20755 10 0 422 2025-03-19 09:13:45.335 2025-03-19 09:13:45.335 433167 1803 1 0 423 2025-03-19 09:13:45.335 2025-03-19 09:13:45.335 433167 3745 9 0 424 2025-03-18 20:29:02.007 2025-03-18 20:29:02.007 433198 3377 90 0 425 2025-03-18 20:29:02.007 2025-03-18 20:29:02.007 433198 15690 10 0 426 2025-03-19 00:44:05.105 2025-03-19 00:44:05.105 433206 6229 19 0 427 2025-03-19 00:44:05.105 2025-03-19 00:44:05.105 433206 19796 2 0 428 2025-03-19 08:15:24.232 2025-03-19 08:15:24.232 433208 1173 10 0 429 2025-03-20 10:48:39.21 2025-03-20 10:48:39.21 433208 6164 90 0 430 2025-03-20 10:48:39.21 2025-03-20 10:48:39.21 433208 9378 10 0 431 2025-03-19 08:15:24.232 2025-03-19 08:15:24.232 433208 13249 90 0 432 2025-03-19 00:44:14.331 2025-03-19 00:44:14.331 433212 2508 2 0 433 2025-03-19 00:44:14.331 2025-03-19 00:44:14.331 433212 21398 19 0 434 2025-03-19 01:26:46.966 2025-03-19 01:26:46.966 433232 1221 50 0 435 2025-03-19 01:26:46.966 2025-03-19 01:26:46.966 433232 11443 450 0 436 2025-03-19 09:45:02.117 2025-03-19 09:45:02.117 433240 2309 19 0 437 2025-03-18 20:27:12.277 2025-03-18 20:27:12.277 433240 11417 13 0 438 2025-03-18 20:27:12.277 2025-03-18 20:27:12.277 433240 11967 115 0 439 2025-03-19 09:45:02.117 2025-03-19 09:45:02.117 433240 16942 2 0 440 2025-03-19 21:43:19.703 2025-03-19 21:43:19.703 433247 15336 1 0 441 2025-03-19 21:43:19.703 2025-03-19 21:43:19.703 433247 19813 9 0 442 2025-03-19 09:57:14.366 2025-03-19 09:57:14.366 433296 644 19 0 443 2025-03-19 09:57:14.366 2025-03-19 09:57:14.366 433296 19581 2 0 444 2025-03-18 17:54:03.714 2025-03-18 17:54:03.714 433311 7119 1 0 445 2025-03-18 17:54:03.714 2025-03-18 17:54:03.714 433311 15925 9 0 446 2025-03-19 02:40:12.142 2025-03-19 02:40:12.142 433331 1039 1 0 447 2025-03-19 02:40:12.142 2025-03-19 02:40:12.142 433331 5775 9 0 448 2025-03-18 17:04:28.488 2025-03-18 17:04:28.488 433333 2327 19 0 449 2025-03-18 17:04:28.488 2025-03-18 17:04:28.488 433333 7869 2 0 450 2025-03-18 17:04:52.19 2025-03-18 17:04:52.19 433345 797 1 0 451 2025-03-18 17:04:55.995 2025-03-18 17:04:55.995 433345 5499 12 0 452 2025-03-18 17:04:52.19 2025-03-18 17:04:52.19 433345 7979 12 0 453 2025-03-18 17:04:55.995 2025-03-18 17:04:55.995 433345 16966 1 0 454 2025-03-18 20:40:21.336 2025-03-18 20:40:21.336 433347 6149 45 0 455 2025-03-18 17:39:48.234 2025-03-18 17:39:48.234 433347 19463 9 0 456 2025-03-18 17:39:48.234 2025-03-18 17:39:48.234 433347 19512 1 0 457 2025-03-18 20:40:21.336 2025-03-18 20:40:21.336 433347 19930 5 0 458 2025-03-18 17:05:21.052 2025-03-18 17:05:21.052 433376 635 1 0 459 2025-03-19 14:26:24.219 2025-03-19 14:26:24.219 433376 721 12 0 460 2025-03-19 14:26:26.979 2025-03-19 14:26:26.979 433376 998 12 0 461 2025-03-19 14:26:25.081 2025-03-19 14:26:25.081 433376 2519 12 0 462 2025-03-18 17:05:23.103 2025-03-18 17:05:23.103 433376 5761 12 0 463 2025-03-18 17:05:23.103 2025-03-18 17:05:23.103 433376 7960 1 0 464 2025-03-18 17:05:21.052 2025-03-18 17:05:21.052 433376 11038 12 0 465 2025-03-19 14:26:24.219 2025-03-19 14:26:24.219 433376 13599 1 0 466 2025-03-19 14:26:26.979 2025-03-19 14:26:26.979 433376 14452 1 0 467 2025-03-18 17:05:19.715 2025-03-18 17:05:19.715 433376 15732 12 0 468 2025-03-19 14:26:23.131 2025-03-19 14:26:23.131 433376 16351 12 0 469 2025-03-19 14:26:25.081 2025-03-19 14:26:25.081 433376 17455 1 0 470 2025-03-19 14:26:23.131 2025-03-19 14:26:23.131 433376 18494 1 0 471 2025-03-18 17:05:19.715 2025-03-18 17:05:19.715 433376 21279 1 0 472 2025-03-19 02:40:08.192 2025-03-19 02:40:08.192 433377 3642 9 0 473 2025-03-19 02:40:08.192 2025-03-19 02:40:08.192 433377 15200 1 0 474 2025-03-18 17:04:24.358 2025-03-18 17:04:24.358 433382 700 2 0 475 2025-03-18 17:04:24.358 2025-03-18 17:04:24.358 433382 20776 19 0 476 2025-03-19 21:19:48.898 2025-03-19 21:19:48.898 433394 13767 9 0 477 2025-03-19 21:19:48.898 2025-03-19 21:19:48.898 433394 17046 1 0 478 2025-03-18 20:57:55.704 2025-03-18 20:57:55.704 433422 5171 11 0 479 2025-03-18 20:57:55.704 2025-03-18 20:57:55.704 433422 21180 100 0 480 2025-03-18 20:27:31.418 2025-03-18 20:27:31.418 433437 976 0 10 481 2025-03-19 09:12:11.903 2025-03-19 09:12:11.903 433456 3683 9 0 482 2025-03-19 09:12:11.903 2025-03-19 09:12:11.903 433456 15732 1 0 483 2025-03-18 17:03:53.98 2025-03-18 17:03:53.98 433457 7654 19 0 484 2025-03-18 17:03:53.98 2025-03-18 17:03:53.98 433457 12272 2 0 485 2025-03-18 19:49:07.998 2025-03-18 19:49:07.998 433499 987 9 0 486 2025-03-18 19:49:07.998 2025-03-18 19:49:07.998 433499 16653 1 0 487 2025-03-19 05:31:11.552 2025-03-19 05:31:11.552 433547 2203 6 0 488 2025-03-19 05:31:11.552 2025-03-19 05:31:11.552 433547 3544 1 0 489 2025-03-18 22:31:57.233 2025-03-18 22:31:57.233 433555 8926 19 0 490 2025-03-18 22:31:57.233 2025-03-18 22:31:57.233 433555 16769 2 0 491 2025-03-19 02:35:06.943 2025-03-19 02:35:06.943 433571 19198 1 0 492 2025-03-19 02:35:06.943 2025-03-19 02:35:06.943 433571 20965 9 0 493 2025-03-19 01:07:13.12 2025-03-19 01:07:13.12 433611 718 115 0 494 2025-03-19 01:07:13.12 2025-03-19 01:07:13.12 433611 1615 13 0 495 2025-03-20 06:31:53.006 2025-03-20 06:31:53.006 433613 2329 64 0 496 2025-03-20 06:31:53.006 2025-03-20 06:31:53.006 433613 20861 7 0 497 2025-03-19 06:45:53.247 2025-03-19 06:45:53.247 433649 618 1 0 498 2025-03-19 06:45:51.74 2025-03-19 06:45:51.74 433649 685 0 0 499 2025-03-19 06:45:51.49 2025-03-19 06:45:51.49 433649 909 1 0 500 2025-03-19 06:45:51.74 2025-03-19 06:45:51.74 433649 1489 1 0 501 2025-03-19 06:45:51.233 2025-03-19 06:45:51.233 433649 1585 1 0 502 2025-03-19 06:45:52.78 2025-03-19 06:45:52.78 433649 1673 1 0 503 2025-03-19 06:45:52.242 2025-03-19 06:45:52.242 433649 5852 1 0 504 2025-03-19 06:45:47.833 2025-03-19 06:45:47.833 433649 6058 69 0 505 2025-03-19 06:45:53.904 2025-03-19 06:45:53.904 433649 8242 1 0 506 2025-03-19 06:45:47.833 2025-03-19 06:45:47.833 433649 8505 8 0 507 2025-03-19 06:45:50.555 2025-03-19 06:45:50.555 433649 8989 1 0 508 2025-03-19 06:45:52.242 2025-03-19 06:45:52.242 433649 12821 0 0 509 2025-03-19 06:45:53.247 2025-03-19 06:45:53.247 433649 16442 0 0 510 2025-03-19 06:45:53.904 2025-03-19 06:45:53.904 433649 17064 0 0 511 2025-03-19 06:45:51.961 2025-03-19 06:45:51.961 433649 18673 1 0 512 2025-03-19 06:45:50.153 2025-03-19 06:45:50.153 433649 20222 2 0 513 2025-03-19 06:45:51.49 2025-03-19 06:45:51.49 433649 20956 0 0 514 2025-03-19 06:45:50.555 2025-03-19 06:45:50.555 433649 21104 0 0 515 2025-03-19 06:45:52.78 2025-03-19 06:45:52.78 433649 21281 0 0 516 2025-03-19 06:45:50.153 2025-03-19 06:45:50.153 433649 21383 0 0 517 2025-03-19 06:45:51.961 2025-03-19 06:45:51.961 433649 21480 0 0 518 2025-03-19 06:45:51.233 2025-03-19 06:45:51.233 433649 21803 0 0 519 2025-03-19 06:45:25.428 2025-03-19 06:45:25.428 433669 768 8 0 520 2025-03-19 06:45:25.428 2025-03-19 06:45:25.428 433669 894 69 0 521 2025-03-19 01:08:50.786 2025-03-19 01:08:50.786 433687 13574 115 0 522 2025-03-19 01:08:50.786 2025-03-19 01:08:50.786 433687 20377 13 0 523 2025-03-18 19:49:09.437 2025-03-18 19:49:09.437 433688 656 9 0 524 2025-03-18 19:49:09.437 2025-03-18 19:49:09.437 433688 3342 1 0 525 2025-03-19 00:04:27.548 2025-03-19 00:04:27.548 433688 3400 45 0 526 2025-03-18 21:27:39.19 2025-03-18 21:27:39.19 433688 7667 9 0 527 2025-03-19 04:46:39.784 2025-03-19 04:46:39.784 433688 11621 19 0 528 2025-03-19 00:04:27.548 2025-03-19 00:04:27.548 433688 15180 5 0 529 2025-03-18 21:27:39.19 2025-03-18 21:27:39.19 433688 20099 1 0 530 2025-03-19 04:46:39.784 2025-03-19 04:46:39.784 433688 20606 2 0 531 2025-03-19 00:41:34.836 2025-03-19 00:41:34.836 433695 8459 13 0 532 2025-03-19 00:41:34.836 2025-03-19 00:41:34.836 433695 10056 115 0 533 2025-03-19 00:43:21.869 2025-03-19 00:43:21.869 433712 2711 6 0 534 2025-03-19 00:43:21.869 2025-03-19 00:43:21.869 433712 6741 58 0 535 2025-03-20 02:36:05.078 2025-03-20 02:36:05.078 433721 1092 90 0 536 2025-03-20 02:36:05.078 2025-03-20 02:36:05.078 433721 9184 10 0 537 2025-03-19 00:46:44.658 2025-03-19 00:46:44.658 433724 5036 115 0 538 2025-03-19 00:46:44.658 2025-03-19 00:46:44.658 433724 21339 13 0 539 2025-03-19 01:05:30.782 2025-03-19 01:05:30.782 433735 699 6 0 540 2025-03-19 01:05:30.782 2025-03-19 01:05:30.782 433735 13399 58 0 541 2025-03-19 02:18:42.942 2025-03-19 02:18:42.942 433738 9331 1 0 542 2025-03-19 02:18:42.942 2025-03-19 02:18:42.942 433738 21803 10 0 543 2025-03-18 22:31:55.058 2025-03-18 22:31:55.058 433740 726 2 0 544 2025-03-18 22:04:26.211 2025-03-18 22:04:26.211 433740 8176 10 0 545 2025-03-18 22:04:26.211 2025-03-18 22:04:26.211 433740 16536 90 0 546 2025-03-18 22:31:55.058 2025-03-18 22:31:55.058 433740 20715 19 0 547 2025-03-18 17:22:10.447 2025-03-18 17:22:10.447 433753 876 19 0 548 2025-03-18 17:22:10.447 2025-03-18 17:22:10.447 433753 16250 2 0 549 2025-03-19 01:00:29.859 2025-03-19 01:00:29.859 433772 15474 115 0 550 2025-03-19 01:00:29.859 2025-03-19 01:00:29.859 433772 20636 13 0 551 2025-03-19 00:54:01.389 2025-03-19 00:54:01.389 433782 15624 115 0 552 2025-03-19 00:54:01.389 2025-03-19 00:54:01.389 433782 17094 13 0 553 2025-03-19 00:51:47.485 2025-03-19 00:51:47.485 433788 1745 115 0 554 2025-03-19 00:51:47.485 2025-03-19 00:51:47.485 433788 14465 13 0 555 2025-03-19 02:14:44.461 2025-03-19 02:14:44.461 433799 711 9 0 556 2025-03-19 02:14:45.561 2025-03-19 02:14:45.561 433799 1429 18 0 557 2025-03-19 02:14:43.889 2025-03-19 02:14:43.889 433799 5708 1 0 558 2025-03-20 06:31:33.155 2025-03-20 06:31:33.155 433799 14220 64 0 559 2025-03-19 02:14:45.561 2025-03-19 02:14:45.561 433799 16513 2 0 560 2025-03-19 02:14:44.461 2025-03-19 02:14:44.461 433799 20825 1 0 561 2025-03-20 06:31:33.155 2025-03-20 06:31:33.155 433799 21166 7 0 562 2025-03-19 02:14:43.889 2025-03-19 02:14:43.889 433799 21416 9 0 563 2025-03-20 08:19:04.05 2025-03-20 08:19:04.05 433821 10608 1 0 564 2025-03-20 08:19:04.05 2025-03-20 08:19:04.05 433821 17109 0 0 565 2025-03-18 22:31:47.716 2025-03-18 22:31:47.716 433828 623 19 0 566 2025-03-19 01:10:23.297 2025-03-19 01:10:23.297 433828 652 90 0 567 2025-03-19 04:54:30.74 2025-03-19 04:54:30.74 433828 675 1 0 568 2025-03-18 22:41:34.498 2025-03-18 22:41:34.498 433828 697 19 0 569 2025-03-19 04:54:31.076 2025-03-19 04:54:31.076 433828 910 1 0 570 2025-03-18 22:41:34.531 2025-03-18 22:41:34.531 433828 989 19 0 571 2025-03-19 00:01:02.101 2025-03-19 00:01:02.101 433828 1495 5 0 572 2025-03-18 19:47:21.935 2025-03-18 19:47:21.935 433828 1823 1 0 573 2025-03-18 21:26:15.518 2025-03-18 21:26:15.518 433828 2039 1 0 574 2025-03-19 04:51:19.305 2025-03-19 04:51:19.305 433828 2224 2 0 575 2025-03-18 23:21:05.444 2025-03-18 23:21:05.444 433828 2718 10 0 576 2025-03-18 16:37:16.704 2025-03-18 16:37:16.704 433828 8648 900 0 577 2025-03-18 21:26:15.518 2025-03-18 21:26:15.518 433828 9331 9 0 578 2025-03-19 04:54:31.009 2025-03-19 04:54:31.009 433828 10490 10 0 579 2025-03-19 00:01:02.101 2025-03-19 00:01:02.101 433828 10591 45 0 580 2025-03-19 01:10:23.297 2025-03-19 01:10:23.297 433828 10608 10 0 581 2025-03-18 16:44:14.277 2025-03-18 16:44:14.277 433828 10611 230 0 582 2025-03-19 04:54:31.009 2025-03-19 04:54:31.009 433828 11263 1 0 583 2025-03-18 22:07:02.621 2025-03-18 22:07:02.621 433828 13042 1 0 584 2025-03-18 16:44:14.277 2025-03-18 19:47:21.935 433828 13854 35 0 585 2025-03-19 00:01:03.491 2025-03-19 00:01:03.491 433828 15858 45 0 586 2025-03-19 04:51:19.305 2025-03-19 04:51:19.305 433828 16354 19 0 587 2025-03-19 00:01:03.491 2025-03-19 00:01:03.491 433828 16638 5 0 588 2025-03-18 22:31:47.716 2025-03-18 22:31:47.716 433828 16684 2 0 589 2025-03-19 04:54:31.076 2025-03-19 04:54:31.076 433828 19087 10 0 590 2025-03-18 16:37:16.704 2025-03-18 16:37:16.704 433828 19469 8100 0 591 2025-03-18 22:41:34.498 2025-03-18 22:41:34.498 433828 19488 2 0 592 2025-03-19 04:54:30.74 2025-03-19 04:54:30.74 433828 21022 10 0 593 2025-03-18 23:21:05.444 2025-03-18 23:21:05.444 433828 21103 90 0 594 2025-03-18 22:41:34.531 2025-03-18 22:41:34.531 433828 21184 2 0 595 2025-03-18 22:07:02.621 2025-03-18 22:07:02.621 433828 21688 9 0 596 2025-03-19 02:25:51.607 2025-03-19 02:25:51.607 433831 672 9 0 597 2025-03-19 02:25:52.529 2025-03-19 02:25:52.529 433831 807 9 0 598 2025-03-19 02:25:52.785 2025-03-19 02:25:52.785 433831 1130 1 0 599 2025-03-19 02:25:52.785 2025-03-19 02:25:52.785 433831 3213 9 0 600 2025-03-19 02:25:52.529 2025-03-19 02:25:52.529 433831 7097 1 0 601 2025-03-19 02:25:51.607 2025-03-19 02:25:51.607 433831 21042 1 0 602 2025-03-18 17:57:11.604 2025-03-18 17:57:11.604 433833 623 38 0 603 2025-03-19 01:32:24.613 2025-03-19 01:32:24.613 433833 7675 13 0 604 2025-03-19 07:36:26.117 2025-03-19 07:36:26.117 433833 9552 19 0 605 2025-03-18 22:31:53.76 2025-03-18 22:31:53.76 433833 17891 19 0 606 2025-03-18 22:31:53.76 2025-03-18 22:31:53.76 433833 18306 2 0 607 2025-03-19 01:32:24.613 2025-03-19 01:32:24.613 433833 19527 115 0 608 2025-03-19 07:36:26.117 2025-03-19 07:36:26.117 433833 20220 2 0 609 2025-03-18 21:27:39.469 2025-03-18 21:27:39.469 433833 20337 9 0 610 2025-03-18 21:27:39.469 2025-03-18 21:27:39.469 433833 20754 1 0 611 2025-03-18 17:57:11.604 2025-03-18 17:57:11.604 433833 21178 4 0 612 2025-03-19 00:23:53.538 2025-03-19 00:23:53.538 433835 620 13 0 613 2025-03-19 00:23:53.538 2025-03-19 00:23:53.538 433835 16978 115 0 614 2025-03-18 17:03:58.765 2025-03-18 17:03:58.765 433842 8168 2 0 615 2025-03-18 19:48:28.313 2025-03-18 19:48:28.313 433842 9421 9 0 616 2025-03-18 19:48:28.313 2025-03-18 19:48:28.313 433842 21037 1 0 617 2025-03-18 17:03:58.765 2025-03-18 17:03:58.765 433842 21239 19 0 618 2025-03-19 08:31:03.685 2025-03-19 08:31:03.685 433844 624 2 0 619 2025-03-19 08:31:02.647 2025-03-19 08:31:02.647 433844 669 2 0 620 2025-03-19 08:30:57.145 2025-03-19 08:30:57.145 433844 708 21 0 621 2025-03-19 08:30:56.433 2025-03-19 08:30:56.433 433844 739 21 0 622 2025-03-19 08:30:57.145 2025-03-19 08:30:57.145 433844 807 2 0 623 2025-03-19 08:30:58.673 2025-03-19 08:30:58.673 433844 854 21 0 624 2025-03-19 08:30:56.433 2025-03-19 08:30:56.433 433844 882 2 0 625 2025-03-19 08:31:04.753 2025-03-19 08:31:04.753 433844 910 21 0 626 2025-03-19 08:31:01.64 2025-03-19 08:31:01.64 433844 959 2 0 627 2025-03-19 08:30:59.579 2025-03-19 08:30:59.579 433844 999 21 0 628 2025-03-19 08:30:58.059 2025-03-19 08:30:58.059 433844 1046 21 0 629 2025-03-19 08:31:05.854 2025-03-19 08:31:05.854 433844 1195 21 0 630 2025-03-19 08:30:56.665 2025-03-19 08:30:56.665 433844 1198 2 0 631 2025-03-19 08:31:02.85 2025-03-19 08:31:02.85 433844 1209 21 0 632 2025-03-19 08:31:02.114 2025-03-19 08:31:02.114 433844 1221 2 0 633 2025-03-19 08:31:00.933 2025-03-19 08:31:00.933 433844 1245 21 0 634 2025-03-19 08:31:03.182 2025-03-19 08:31:03.182 433844 1273 2 0 635 2025-03-19 08:30:56.983 2025-03-19 08:30:56.983 433844 1389 21 0 636 2025-03-19 08:31:01.788 2025-03-19 08:31:01.788 433844 1411 2 0 637 2025-03-19 08:30:57.844 2025-03-19 08:30:57.844 433844 1468 2 0 638 2025-03-19 08:30:59.77 2025-03-19 08:30:59.77 433844 1469 21 0 639 2025-03-18 22:31:54.269 2025-03-18 22:31:54.269 433844 1480 19 0 640 2025-03-19 08:31:01.951 2025-03-19 08:31:01.951 433844 1577 21 0 641 2025-03-19 08:31:02.647 2025-03-19 08:31:02.647 433844 1603 21 0 642 2025-03-19 08:31:02.78 2025-03-19 08:31:02.78 433844 1615 2 0 643 2025-03-19 08:30:56.983 2025-03-19 08:31:04.436 433844 1738 5 0 644 2025-03-19 08:31:02.78 2025-03-19 08:31:02.78 433844 1773 21 0 645 2025-03-18 21:26:26.063 2025-03-18 21:26:26.063 433844 2156 1 0 646 2025-03-19 08:30:59.417 2025-03-19 08:30:59.417 433844 2293 2 0 647 2025-03-19 08:31:00.298 2025-03-19 08:31:00.298 433844 2328 21 0 648 2025-03-19 08:30:58.176 2025-03-19 08:30:58.176 433844 2342 2 0 649 2025-03-19 08:30:59.417 2025-03-19 08:30:59.417 433844 2367 21 0 650 2025-03-19 08:30:58.944 2025-03-19 08:30:58.944 433844 2508 21 0 651 2025-03-19 08:30:58.809 2025-03-19 08:30:58.809 433844 4084 21 0 652 2025-03-19 08:31:01.085 2025-03-19 08:31:01.085 433844 4238 21 0 653 2025-03-19 08:31:02.85 2025-03-19 08:31:02.85 433844 4831 2 0 654 2025-03-19 08:31:04.607 2025-03-19 08:31:04.607 433844 5444 21 0 655 2025-03-19 08:30:58.326 2025-03-19 08:30:58.326 433844 5942 2 0 656 2025-03-19 08:30:57.32 2025-03-19 08:30:57.32 433844 7667 2 0 657 2025-03-19 08:31:00.766 2025-03-19 08:31:00.766 433844 7891 2 0 658 2025-03-19 08:31:05.854 2025-03-19 08:31:05.854 433844 8059 2 0 659 2025-03-19 08:30:58.176 2025-03-19 08:30:58.176 433844 8985 21 0 660 2025-03-19 08:30:58.326 2025-03-19 08:30:58.326 433844 9329 21 0 661 2025-03-19 00:43:19.276 2025-03-19 00:43:19.276 433844 9758 2 0 662 2025-03-19 08:31:03.533 2025-03-19 08:31:03.533 433844 9906 21 0 663 2025-03-19 08:30:58.809 2025-03-19 08:30:58.809 433844 10273 2 0 664 2025-03-19 08:30:56.831 2025-03-19 08:30:56.831 433844 10611 21 0 665 2025-03-19 08:30:56.665 2025-03-19 08:30:56.665 433844 10690 21 0 666 2025-03-19 08:31:01.085 2025-03-19 08:31:01.085 433844 10849 2 0 667 2025-03-19 08:31:03.533 2025-03-19 08:31:03.533 433844 10944 2 0 668 2025-03-19 08:31:03.346 2025-03-19 08:31:03.346 433844 11417 2 0 669 2025-03-18 22:31:54.269 2025-03-18 22:31:54.269 433844 12272 2 0 670 2025-03-19 08:31:05.696 2025-03-19 08:31:05.696 433844 12507 21 0 671 2025-03-19 08:31:05.542 2025-03-19 08:31:05.542 433844 13249 2 0 672 2025-03-19 08:31:00.119 2025-03-19 08:31:00.119 433844 13348 2 0 673 2025-03-19 08:31:03.018 2025-03-19 08:31:03.018 433844 13587 21 0 674 2025-03-19 08:30:57.844 2025-03-19 08:30:57.844 433844 14260 21 0 675 2025-03-19 08:30:59.946 2025-03-19 08:30:59.946 433844 14385 21 0 676 2025-03-19 08:30:58.059 2025-03-19 08:30:58.059 433844 14731 2 0 677 2025-03-19 08:31:00.62 2025-03-19 08:31:00.62 433844 15115 2 0 678 2025-03-19 08:31:02.114 2025-03-19 08:31:02.114 433844 16230 21 0 679 2025-03-18 19:47:24.62 2025-03-18 19:47:24.62 433844 16296 1 0 680 2025-03-19 08:31:00.298 2025-03-19 08:31:00.298 433844 16410 2 0 681 2025-03-18 19:47:24.62 2025-03-18 19:47:24.62 433844 16536 9 0 682 2025-03-18 21:26:26.063 2025-03-18 21:26:26.063 433844 16638 9 0 683 2025-03-19 08:30:58.944 2025-03-19 08:30:58.944 433844 16942 2 0 684 2025-03-19 08:31:03.018 2025-03-19 08:31:03.018 433844 16966 2 0 685 2025-03-19 08:30:59.275 2025-03-19 08:30:59.275 433844 17046 2 0 686 2025-03-19 08:31:03.182 2025-03-19 08:31:03.182 433844 17991 21 0 687 2025-03-19 08:30:59.275 2025-03-19 08:30:59.275 433844 18178 21 0 688 2025-03-19 00:43:19.276 2025-03-19 00:43:19.276 433844 18219 19 0 689 2025-03-19 08:31:03.346 2025-03-19 08:31:03.346 433844 18608 21 0 690 2025-03-19 08:31:04.436 2025-03-19 08:31:04.436 433844 19535 21 0 691 2025-03-19 08:31:03.685 2025-03-19 08:31:03.685 433844 19735 21 0 692 2025-03-19 08:31:00.119 2025-03-19 08:31:00.119 433844 19930 21 0 693 2025-03-19 08:31:00.933 2025-03-19 08:31:00.933 433844 20381 2 0 694 2025-03-19 08:30:59.77 2025-03-19 08:30:59.77 433844 20409 2 0 695 2025-03-19 08:31:05.542 2025-03-19 08:31:05.542 433844 20619 21 0 696 2025-03-18 22:16:07.82 2025-03-18 22:16:07.82 433844 20710 27 0 697 2025-03-18 22:16:07.82 2025-03-18 22:16:07.82 433844 20826 3 0 698 2025-03-19 08:31:01.64 2025-03-19 08:31:01.64 433844 20864 21 0 699 2025-03-19 08:31:01.788 2025-03-19 08:31:01.788 433844 21003 21 0 700 2025-03-19 08:30:56.831 2025-03-19 08:30:56.831 433844 21040 2 0 701 2025-03-19 08:31:01.215 2025-03-19 08:31:01.215 433844 21063 2 0 702 2025-03-19 08:31:05.696 2025-03-19 08:31:05.696 433844 21083 2 0 703 2025-03-19 08:30:57.32 2025-03-19 08:30:57.32 433844 21103 21 0 704 2025-03-19 08:30:56.137 2025-03-19 08:30:56.137 433844 21116 41 0 705 2025-03-19 08:31:04.753 2025-03-19 08:31:04.753 433844 21139 2 0 706 2025-03-19 08:30:58.5 2025-03-19 08:30:58.5 433844 21233 2 0 707 2025-03-19 08:30:57.466 2025-03-19 08:30:57.466 433844 21248 2 0 708 2025-03-19 08:31:01.951 2025-03-19 08:31:01.951 433844 21274 2 0 709 2025-03-19 08:31:04.607 2025-03-19 08:31:04.607 433844 21281 2 0 710 2025-03-19 08:31:01.215 2025-03-19 08:31:01.215 433844 21334 21 0 711 2025-03-19 08:31:00.766 2025-03-19 08:31:00.766 433844 21349 21 0 712 2025-03-19 08:30:58.5 2025-03-19 08:30:58.5 433844 21357 21 0 713 2025-03-19 08:30:57.466 2025-03-19 08:30:57.466 433844 21365 21 0 714 2025-03-19 08:30:56.137 2025-03-19 08:30:56.137 433844 21374 5 0 715 2025-03-19 08:31:00.62 2025-03-19 08:31:00.62 433844 21498 21 0 716 2025-03-19 08:30:59.579 2025-03-19 08:30:59.579 433844 21585 2 0 717 2025-03-19 08:30:59.946 2025-03-19 08:30:59.946 433844 21714 2 0 718 2025-03-19 08:30:58.673 2025-03-19 08:30:58.673 433844 21804 2 0 719 2025-03-18 17:04:30.237 2025-03-18 17:04:30.237 433849 9350 2 0 720 2025-03-18 17:04:30.237 2025-03-18 17:04:30.237 433849 21026 19 0 721 2025-03-18 17:03:47.488 2025-03-18 17:03:47.488 433851 660 2 0 722 2025-03-19 00:22:32.64 2025-03-19 00:22:32.64 433851 782 19 0 723 2025-03-18 18:44:07.358 2025-03-18 18:44:07.358 433851 946 10 0 724 2025-03-19 07:19:16.006 2025-03-19 07:19:16.006 433851 5758 0 0 725 2025-03-19 00:22:32.64 2025-03-19 00:22:32.64 433851 10698 2 0 726 2025-03-19 07:19:16.006 2025-03-19 07:19:16.006 433851 16347 1 0 727 2025-03-18 17:03:47.488 2025-03-18 17:03:47.488 433851 16965 19 0 728 2025-03-18 19:47:56.239 2025-03-18 19:47:56.239 433851 17519 9 0 729 2025-03-18 18:44:06.929 2025-03-18 18:44:06.929 433851 17722 10 0 730 2025-03-18 18:44:07.358 2025-03-18 18:44:07.358 433851 20409 90 0 731 2025-03-18 19:47:56.239 2025-03-18 19:47:56.239 433851 21178 1 0 732 2025-03-18 18:44:06.929 2025-03-18 18:44:06.929 433851 21815 90 0 733 2025-03-18 20:16:52.793 2025-03-18 20:16:52.793 433860 1316 10 0 734 2025-03-18 20:16:52.793 2025-03-18 20:16:52.793 433860 2010 90 0 735 2025-03-19 06:05:01.959 2025-03-19 06:05:01.959 433865 1471 81 0 736 2025-03-19 06:05:00.322 2025-03-19 06:05:00.322 433865 2327 8 0 737 2025-03-19 05:11:53.798 2025-03-19 05:11:53.798 433865 2639 3 0 738 2025-03-19 05:11:54.622 2025-03-19 05:11:54.622 433865 9242 243 0 739 2025-03-19 06:05:00.198 2025-03-19 06:05:00.198 433865 12819 0 0 740 2025-03-19 06:05:01.959 2025-03-19 06:05:01.959 433865 13547 9 0 741 2025-03-19 05:11:54.622 2025-03-19 05:11:54.622 433865 14122 27 0 742 2025-03-19 06:05:00.198 2025-03-19 06:05:00.198 433865 14225 1 0 743 2025-03-19 05:11:53.798 2025-03-19 05:11:53.798 433865 14404 27 0 744 2025-03-19 06:05:00.322 2025-03-19 06:05:00.322 433865 20058 1 0 745 2025-03-19 09:15:52.686 2025-03-19 09:15:52.686 433878 699 10 0 746 2025-03-19 09:15:51.917 2025-03-19 09:15:51.917 433878 759 10 0 747 2025-03-19 09:15:52.686 2025-03-19 09:15:52.686 433878 965 90 0 748 2025-03-19 09:15:53.805 2025-03-19 09:15:53.805 433878 1620 10 0 749 2025-03-18 21:27:38.908 2025-03-18 21:27:38.908 433878 2000 1 0 750 2025-03-19 09:15:51.917 2025-03-19 09:15:51.917 433878 2022 90 0 751 2025-03-19 09:15:53.805 2025-03-19 09:15:53.805 433878 4776 90 0 752 2025-03-19 09:15:53.484 2025-03-19 09:15:53.484 433878 5794 90 0 753 2025-03-18 22:31:58.774 2025-03-18 22:31:58.774 433878 10490 2 0 754 2025-03-19 09:15:51.243 2025-03-19 09:15:51.243 433878 14168 90 0 755 2025-03-19 09:15:53.484 2025-03-19 09:15:53.484 433878 15858 10 0 756 2025-03-19 09:15:53.116 2025-03-19 09:15:53.116 433878 17082 10 0 757 2025-03-19 09:15:52.293 2025-03-19 09:15:52.293 433878 17727 10 0 758 2025-03-19 09:15:51.243 2025-03-19 09:15:51.243 433878 19888 10 0 759 2025-03-18 21:27:38.908 2025-03-18 21:27:38.908 433878 20913 9 0 760 2025-03-19 09:15:53.116 2025-03-19 09:15:53.116 433878 20969 90 0 761 2025-03-18 22:31:58.774 2025-03-18 22:31:58.774 433878 20987 19 0 762 2025-03-19 09:15:52.293 2025-03-19 09:15:52.293 433878 21670 90 0 763 2025-03-18 16:19:55.737 2025-03-18 16:19:55.737 433881 641 24 0 764 2025-03-18 16:19:55.907 2025-03-18 16:19:55.907 433881 5578 24 0 765 2025-03-18 16:19:55.566 2025-03-18 16:19:55.566 433881 6717 3 0 766 2025-03-18 16:19:55.566 2025-03-18 16:19:55.566 433881 6749 24 0 767 2025-03-18 16:19:55.737 2025-03-18 16:19:55.737 433881 18368 3 0 768 2025-03-18 16:19:55.907 2025-03-18 16:19:55.907 433881 21631 3 0 769 2025-03-19 01:25:17.645 2025-03-19 01:25:17.645 433883 1692 1 0 770 2025-03-19 01:25:17.645 2025-03-19 01:25:17.645 433883 21088 10 0 771 2025-03-18 17:20:12.033 2025-03-18 17:20:12.033 433889 19570 1 0 772 2025-03-18 17:20:12.033 2025-03-18 17:20:12.033 433889 21794 12 0 773 2025-03-19 09:13:37.06 2025-03-19 09:13:37.06 433892 616 1 0 774 2025-03-19 09:13:37.06 2025-03-19 09:13:37.06 433892 20409 9 0 775 2025-03-19 02:07:03.032 2025-03-19 02:07:03.032 433913 636 10 0 776 2025-03-19 02:00:20.291 2025-03-19 02:00:20.291 433913 5728 1 0 777 2025-03-19 02:07:03.032 2025-03-19 02:07:03.032 433913 11716 1 0 778 2025-03-19 02:00:20.291 2025-03-19 02:00:20.291 433913 21798 10 0 779 2025-03-18 16:19:48.078 2025-03-18 16:19:48.078 433914 705 24 0 780 2025-03-18 16:19:47.889 2025-03-18 16:19:47.889 433914 1769 24 0 781 2025-03-18 16:19:48.078 2025-03-18 16:19:48.078 433914 2232 3 0 782 2025-03-18 16:19:47.889 2025-03-18 16:19:47.889 433914 21051 3 0 783 2025-03-18 21:27:38.706 2025-03-18 21:27:38.706 433934 2710 1 0 784 2025-03-18 21:27:38.706 2025-03-18 21:27:38.706 433934 15521 9 0 785 2025-03-18 19:00:55.553 2025-03-18 19:00:55.553 433937 837 9 0 786 2025-03-18 19:00:54.536 2025-03-18 19:00:54.536 433937 866 9 0 787 2025-03-18 19:00:54.875 2025-03-18 19:00:54.875 433937 1584 1 0 788 2025-03-18 18:49:09.119 2025-03-18 18:49:09.119 433937 4250 10 0 789 2025-03-18 19:00:55.553 2025-03-18 19:00:55.553 433937 9261 1 0 790 2025-03-18 18:49:09.119 2025-03-18 18:49:09.119 433937 12291 90 0 791 2025-03-18 19:00:54.875 2025-03-18 19:00:54.875 433937 18528 9 0 792 2025-03-18 19:00:54.536 2025-03-18 19:00:54.536 433937 21599 1 0 793 2025-03-18 22:18:56.613 2025-03-18 22:18:56.613 433943 722 1 0 794 2025-03-18 22:18:57.365 2025-03-18 22:18:57.365 433943 1617 1 0 795 2025-03-18 21:22:54.197 2025-03-18 21:22:54.197 433943 1806 2 0 796 2025-03-18 21:22:53.931 2025-03-18 21:22:53.931 433943 3396 18 0 797 2025-03-19 02:02:30.356 2025-03-19 02:02:30.356 433943 4624 10 0 798 2025-03-19 00:43:11.417 2025-03-19 00:43:11.417 433943 4802 19 0 799 2025-03-18 22:18:57.778 2025-03-18 22:18:57.778 433943 5112 1 0 800 2025-03-18 22:18:58.518 2025-03-18 22:18:58.518 433943 5129 9 0 801 2025-03-18 20:44:17.455 2025-03-18 20:44:17.455 433943 5870 0 0 802 2025-03-18 22:31:49.037 2025-03-18 22:31:49.037 433943 6202 19 0 803 2025-03-18 22:18:58.518 2025-03-18 22:18:58.518 433943 8796 1 0 804 2025-03-18 21:22:54.197 2025-03-18 21:22:54.197 433943 9363 18 0 805 2025-03-19 01:13:13.225 2025-03-19 01:13:13.225 433943 12188 90 0 806 2025-03-18 19:47:23.449 2025-03-18 19:47:23.449 433943 13865 9 0 807 2025-03-19 07:23:54.729 2025-03-19 07:23:54.729 433943 14650 90 0 808 2025-03-18 21:52:22.721 2025-03-18 21:52:22.721 433943 15196 19 0 809 2025-03-19 01:13:13.225 2025-03-19 01:13:13.225 433943 15239 10 0 810 2025-03-18 22:31:49.037 2025-03-18 22:31:49.037 433943 16259 2 0 811 2025-03-18 22:54:53.905 2025-03-18 22:54:53.905 433943 16350 29 0 812 2025-03-18 20:44:17.455 2025-03-18 20:44:17.455 433943 16638 1 0 813 2025-03-18 22:18:58.328 2025-03-18 22:18:58.328 433943 17042 9 0 814 2025-03-18 19:47:23.449 2025-03-18 19:47:23.449 433943 17109 1 0 815 2025-03-19 02:02:30.356 2025-03-19 02:02:30.356 433943 17696 90 0 816 2025-03-18 21:22:53.931 2025-03-18 21:22:53.931 433943 18901 2 0 817 2025-03-19 07:23:54.729 2025-03-19 07:23:54.729 433943 19531 810 0 818 2025-03-18 22:18:57.778 2025-03-18 22:18:57.778 433943 20225 9 0 819 2025-03-18 22:18:58.328 2025-03-18 22:18:58.328 433943 20280 1 0 820 2025-03-18 22:18:56.613 2025-03-18 22:18:56.613 433943 20906 9 0 821 2025-03-18 22:18:57.365 2025-03-18 22:18:57.365 433943 21051 9 0 822 2025-03-18 21:52:22.721 2025-03-18 21:52:22.721 433943 21119 2 0 823 2025-03-18 22:54:53.905 2025-03-18 22:54:53.905 433943 21383 3 0 824 2025-03-19 00:43:11.417 2025-03-19 00:43:11.417 433943 21408 2 0 825 2025-03-18 16:28:44.65 2025-03-18 16:28:44.65 433945 1705 24 0 826 2025-03-18 16:28:44.842 2025-03-18 16:28:44.842 433945 2196 3 0 827 2025-03-18 16:28:45.678 2025-03-18 16:28:45.678 433945 2492 24 0 828 2025-03-18 16:29:44.084 2025-03-18 16:29:44.084 433945 6148 23 0 829 2025-03-18 16:28:46.309 2025-03-18 16:28:46.309 433945 15103 24 0 830 2025-03-18 16:28:44.65 2025-03-18 16:28:44.65 433945 16350 3 0 831 2025-03-18 16:28:46.309 2025-03-18 16:28:46.309 433945 17046 3 0 832 2025-03-18 16:29:44.084 2025-03-18 16:29:44.084 433945 17517 3 0 833 2025-03-18 16:28:45.678 2025-03-18 16:28:45.678 433945 19842 3 0 834 2025-03-18 16:28:45.055 2025-03-18 16:28:45.055 433945 20102 3 0 835 2025-03-18 16:28:44.842 2025-03-18 16:28:44.842 433945 20904 24 0 836 2025-03-18 16:28:45.055 2025-03-18 16:28:45.055 433945 21402 24 0 837 2025-03-18 17:04:34.062 2025-03-18 17:04:34.062 433962 1007 19 0 838 2025-03-18 17:04:34.062 2025-03-18 17:04:34.062 433962 21247 2 0 839 2025-03-18 20:10:44.163 2025-03-18 20:10:44.163 433975 18423 90 0 840 2025-03-18 20:10:44.163 2025-03-18 20:10:44.163 433975 21180 10 0 841 2025-03-19 02:08:15.499 2025-03-19 02:08:15.499 433978 652 1 0 842 2025-03-18 17:29:00.898 2025-03-18 17:29:00.898 433978 4166 0 0 843 2025-03-20 06:31:29.335 2025-03-20 06:31:29.335 433978 9378 7 0 844 2025-03-20 06:31:29.335 2025-03-20 06:31:29.335 433978 10007 64 0 845 2025-03-18 17:29:00.898 2025-03-18 17:29:00.898 433978 16965 1 0 846 2025-03-19 02:08:15.499 2025-03-19 02:08:15.499 433978 16998 9 0 847 2025-03-18 16:31:44.019 2025-03-18 16:31:44.019 433998 768 45 0 848 2025-03-18 16:31:44.019 2025-03-18 16:31:44.019 433998 20554 5 0 849 2025-03-20 06:36:24.442 2025-03-20 06:36:24.442 433999 1000 5 0 850 2025-03-20 06:36:24.442 2025-03-20 06:36:24.442 433999 9200 45 0 851 2025-03-18 17:04:02.738 2025-03-18 17:04:02.738 434000 9843 2 0 852 2025-03-18 17:04:02.738 2025-03-18 17:04:02.738 434000 13574 19 0 853 2025-03-19 07:17:28.192 2025-03-19 07:17:28.192 434019 715 2 0 854 2025-03-19 07:17:28.192 2025-03-19 07:17:28.192 434019 1394 19 0 855 2025-03-20 06:36:21.615 2025-03-20 06:36:21.615 434020 11798 45 0 856 2025-03-20 06:36:21.615 2025-03-20 06:36:21.615 434020 13587 5 0 857 2025-03-18 19:48:42.976 2025-03-18 19:48:42.976 434025 7580 9 0 858 2025-03-18 19:48:42.976 2025-03-18 19:48:42.976 434025 10016 1 0 859 2025-03-18 17:03:51.859 2025-03-18 17:03:51.859 434026 954 19 0 860 2025-03-18 17:03:51.859 2025-03-18 17:03:51.859 434026 6537 2 0 861 2025-03-18 19:26:11.822 2025-03-18 19:26:11.822 434026 20680 1 0 862 2025-03-18 19:26:11.822 2025-03-18 19:26:11.822 434026 21482 9 0 863 2025-03-18 23:01:04.386 2025-03-18 23:01:04.386 434030 7119 9 0 864 2025-03-18 23:01:04.386 2025-03-18 23:01:04.386 434030 20906 1 0 865 2025-03-18 16:31:08.739 2025-03-18 16:31:08.739 434037 1650 1 0 866 2025-03-18 16:31:07.159 2025-03-19 03:30:01.332 434037 8945 70 0 867 2025-03-18 16:31:08.739 2025-03-18 16:31:08.739 434037 10302 0 0 868 2025-03-19 03:30:01.332 2025-03-19 03:30:01.332 434037 15052 9 0 869 2025-03-18 16:31:07.159 2025-03-18 16:31:07.159 434037 16912 8 0 870 2025-03-20 06:38:11.215 2025-03-20 06:38:11.215 434046 1495 45 0 871 2025-03-20 06:38:11.215 2025-03-20 06:38:11.215 434046 16638 5 0 872 2025-03-18 17:04:20.488 2025-03-18 17:04:20.488 434048 925 2 0 873 2025-03-18 17:04:20.488 2025-03-18 17:04:20.488 434048 6137 19 0 874 2025-03-19 02:03:50.68 2025-03-19 02:03:50.68 434056 1620 9 0 875 2025-03-19 02:03:50.68 2025-03-19 02:03:50.68 434056 8729 1 0 876 2025-03-19 03:30:13.28 2025-03-19 03:30:13.28 434064 951 1 0 877 2025-03-19 03:30:13.28 2025-03-19 03:30:13.28 434064 17014 9 0 878 2025-03-19 01:06:57.648 2025-03-19 01:06:57.648 434072 8684 115 0 879 2025-03-19 01:06:57.648 2025-03-19 01:06:57.648 434072 10484 13 0 880 2025-03-18 21:07:10.87 2025-03-18 21:07:10.87 434077 16442 90 0 881 2025-03-18 21:07:10.87 2025-03-18 21:07:10.87 434077 18321 10 0 882 2025-03-18 20:58:04.468 2025-03-18 20:58:04.468 434082 18500 90 0 883 2025-03-18 20:58:04.468 2025-03-18 20:58:04.468 434082 20713 10 0 884 2025-03-18 16:19:51.295 2025-03-18 16:19:51.295 434085 12507 3 0 885 2025-03-18 16:19:51.508 2025-03-18 16:19:51.508 434085 13216 24 0 886 2025-03-18 16:19:51.508 2025-03-18 16:19:51.508 434085 19581 3 0 887 2025-03-18 16:19:51.295 2025-03-18 16:19:51.295 434085 20849 24 0 888 2025-03-18 16:24:10.29 2025-03-18 16:24:10.29 434099 725 24 0 889 2025-03-18 16:24:10.371 2025-03-18 16:24:10.371 434099 994 3 0 890 2025-03-18 16:24:10.371 2025-03-18 16:24:10.371 434099 7510 24 0 891 2025-03-18 16:24:10.631 2025-03-18 16:24:10.631 434099 7654 24 0 892 2025-03-18 16:24:12.114 2025-03-18 16:24:12.114 434099 9356 3 0 893 2025-03-18 16:24:10.503 2025-03-18 16:24:10.503 434099 13143 3 0 894 2025-03-18 23:13:09.043 2025-03-18 23:13:09.043 434099 16816 2 0 895 2025-03-18 16:24:10.29 2025-03-18 16:24:10.29 434099 16842 3 0 896 2025-03-18 16:24:10.817 2025-03-18 16:24:10.817 434099 17568 24 0 897 2025-03-18 16:24:10.503 2025-03-18 16:24:10.503 434099 19930 24 0 898 2025-03-18 16:24:12.646 2025-03-18 16:24:12.646 434099 21020 24 0 899 2025-03-18 16:24:12.114 2025-03-18 16:24:12.114 434099 21021 24 0 900 2025-03-18 23:13:09.043 2025-03-18 23:13:09.043 434099 21022 19 0 901 2025-03-18 16:24:10.817 2025-03-18 16:24:10.817 434099 21349 3 0 902 2025-03-18 16:24:10.631 2025-03-18 16:24:10.631 434099 21620 3 0 903 2025-03-18 16:24:12.646 2025-03-18 16:24:12.646 434099 21832 3 0 904 2025-03-18 18:03:43.233 2025-03-18 18:03:43.233 434101 10013 1 0 905 2025-03-18 18:03:43.233 2025-03-18 18:03:43.233 434101 21048 9 0 906 2025-03-20 06:38:35.957 2025-03-20 06:38:35.957 434115 5728 45 0 907 2025-03-20 06:38:35.957 2025-03-20 06:38:35.957 434115 20023 5 0 908 2025-03-19 01:03:11.449 2025-03-19 01:03:11.449 434119 20993 19 0 909 2025-03-19 01:03:11.449 2025-03-19 01:03:11.449 434119 21373 2 0 910 2025-03-19 09:52:29.897 2025-03-19 09:52:29.897 434124 627 1 0 911 2025-03-19 09:52:35.805 2025-03-19 09:52:35.805 434124 649 1 0 912 2025-03-19 09:52:35.805 2025-03-19 09:52:35.805 434124 859 9 0 913 2025-03-19 01:25:06.253 2025-03-19 01:25:06.253 434124 974 10 0 914 2025-03-19 09:52:35.186 2025-03-19 09:52:35.186 434124 3729 9 0 915 2025-03-19 09:52:36.137 2025-03-19 09:52:36.137 434124 4292 9 0 916 2025-03-19 09:53:53.249 2025-03-19 09:53:53.249 434124 6382 900 0 917 2025-03-19 09:52:35.621 2025-03-19 09:52:35.621 434124 9333 1 0 918 2025-03-19 09:52:35.995 2025-03-19 09:52:35.995 434124 9845 9 0 919 2025-03-19 09:52:33.58 2025-03-19 09:52:33.58 434124 11192 1 0 920 2025-03-19 09:52:33.58 2025-03-19 09:52:33.58 434124 11776 9 0 921 2025-03-19 01:25:06.253 2025-03-19 01:25:06.253 434124 13132 90 0 922 2025-03-19 09:52:35.621 2025-03-19 09:52:35.621 434124 16289 9 0 923 2025-03-19 09:52:35.995 2025-03-19 09:52:35.995 434124 20157 1 0 924 2025-03-19 09:52:36.137 2025-03-19 09:52:36.137 434124 20205 1 0 925 2025-03-19 09:53:53.249 2025-03-19 09:53:53.249 434124 20647 100 0 926 2025-03-19 09:52:29.897 2025-03-19 09:52:29.897 434124 20864 9 0 927 2025-03-19 09:56:58.289 2025-03-19 09:56:58.289 434124 20956 90 0 928 2025-03-19 07:04:53.724 2025-03-19 07:04:53.724 434124 21067 19 0 929 2025-03-19 09:52:35.44 2025-03-19 09:52:35.44 434124 21287 1 0 930 2025-03-19 09:52:35.44 2025-03-19 09:52:35.44 434124 21523 9 0 931 2025-03-19 09:56:58.289 2025-03-19 09:56:58.289 434124 21575 810 0 932 2025-03-19 09:52:35.186 2025-03-19 09:52:35.186 434124 21797 1 0 933 2025-03-19 07:04:53.724 2025-03-19 07:04:53.724 434124 21798 2 0 934 2025-03-19 09:14:54.432 2025-03-19 09:14:54.432 434129 909 1 0 935 2025-03-19 09:15:14.793 2025-03-19 09:15:14.793 434129 980 9 0 936 2025-03-19 09:14:54.222 2025-03-19 09:14:54.222 434129 3377 0 0 937 2025-03-20 06:31:27.138 2025-03-20 06:31:27.138 434129 5708 64 0 938 2025-03-19 09:11:24.841 2025-03-19 09:11:24.841 434129 5825 90 0 939 2025-03-20 06:31:27.138 2025-03-20 06:31:27.138 434129 7675 7 0 940 2025-03-19 09:11:24.841 2025-03-19 09:11:24.841 434129 9537 10 0 941 2025-03-19 09:14:54.432 2025-03-19 09:14:54.432 434129 11423 8 0 942 2025-03-19 09:14:54.222 2025-03-19 09:14:54.222 434129 15103 1 0 943 2025-03-19 09:15:14.793 2025-03-19 09:15:14.793 434129 19535 81 0 944 2025-03-19 07:15:16.935 2025-03-19 07:15:16.935 434139 646 19 0 945 2025-03-19 07:15:17.199 2025-03-19 07:15:17.199 434139 807 19 0 946 2025-03-19 07:15:17.29 2025-03-19 07:15:17.29 434139 985 19 0 947 2025-03-19 10:38:13.795 2025-03-19 10:38:13.795 434139 1801 1 0 948 2025-03-19 07:15:16.755 2025-03-19 07:15:16.755 434139 2670 19 0 949 2025-03-19 07:15:21.584 2025-03-19 07:15:21.584 434139 11609 19 0 950 2025-03-19 07:15:17.29 2025-03-19 07:15:17.29 434139 11760 2 0 951 2025-03-19 07:15:20.662 2025-03-19 07:15:20.662 434139 12516 2 0 952 2025-03-19 07:15:21.638 2025-03-19 07:15:21.638 434139 14607 2 0 953 2025-03-19 07:15:16.755 2025-03-19 07:15:16.755 434139 16329 2 0 954 2025-03-19 10:38:13.795 2025-03-19 10:38:13.795 434139 17103 9 0 955 2025-03-19 07:15:21.638 2025-03-19 07:15:21.638 434139 19375 19 0 956 2025-03-19 07:15:20.662 2025-03-19 07:15:20.662 434139 20799 19 0 957 2025-03-19 07:15:21.584 2025-03-19 07:15:21.584 434139 20892 2 0 958 2025-03-19 07:15:17.199 2025-03-19 07:15:17.199 434139 21373 2 0 959 2025-03-19 07:15:16.935 2025-03-19 07:15:16.935 434139 21444 2 0 960 2025-03-19 01:59:14.595 2025-03-19 01:59:14.595 434141 8289 9 0 961 2025-03-19 01:59:14.595 2025-03-19 01:59:14.595 434141 20906 1 0 962 2025-03-18 16:25:13.186 2025-03-18 16:25:13.186 434147 9346 24 0 963 2025-03-18 16:28:55.636 2025-03-18 16:28:55.636 434147 11967 46 0 964 2025-03-18 16:25:13.36 2025-03-18 16:25:13.36 434147 15326 3 0 965 2025-03-18 16:25:13.36 2025-03-18 16:25:13.36 434147 21389 24 0 966 2025-03-18 16:28:55.636 2025-03-18 16:28:55.636 434147 21400 5 0 967 2025-03-18 16:25:13.186 2025-03-18 16:25:13.186 434147 21539 3 0 968 2025-03-19 00:54:51.659 2025-03-19 00:54:51.659 434155 13365 36 0 969 2025-03-19 00:54:51.659 2025-03-19 00:54:51.659 434155 16193 4 0 970 2025-03-18 23:01:31.431 2025-03-18 23:01:31.431 434160 16965 1 0 971 2025-03-18 23:01:31.431 2025-03-18 23:01:31.431 434160 20816 9 0 972 2025-03-19 22:42:08.834 2025-03-19 22:42:08.834 434163 5195 9 0 973 2025-03-19 22:42:08.834 2025-03-19 22:42:08.834 434163 16998 1 0 974 2025-03-19 22:42:25.25 2025-03-19 22:42:25.25 434163 18265 9 0 975 2025-03-19 22:42:25.25 2025-03-19 22:42:25.25 434163 19303 1 0 976 2025-03-18 19:48:43.711 2025-03-18 19:48:43.711 434171 631 9 0 977 2025-03-18 19:48:43.711 2025-03-18 19:48:43.711 434171 21148 1 0 978 2025-03-20 06:36:25.307 2025-03-20 06:36:25.307 434176 11491 45 0 979 2025-03-20 06:36:25.307 2025-03-20 06:36:25.307 434176 16282 5 0 980 2025-03-19 02:09:17.019 2025-03-19 02:09:17.019 434177 651 1 0 981 2025-03-19 02:09:17.019 2025-03-19 02:09:17.019 434177 954 0 0 982 2025-03-19 02:09:16.453 2025-03-19 02:09:16.453 434177 6717 1 0 983 2025-03-19 02:09:16.453 2025-03-19 02:09:16.453 434177 21401 0 0 984 2025-03-20 06:36:46.587 2025-03-20 06:36:46.587 434183 2710 45 0 985 2025-03-20 06:36:46.587 2025-03-20 06:36:46.587 434183 14376 5 0 986 2025-03-18 22:58:17.881 2025-03-18 22:58:17.881 434186 803 97 0 987 2025-03-18 22:58:17.881 2025-03-18 22:58:17.881 434186 11192 11 0 988 2025-03-18 18:46:55.714 2025-03-18 18:46:55.714 434191 1221 1 0 989 2025-03-18 18:46:55.714 2025-03-18 18:46:55.714 434191 4378 9 0 990 2025-03-20 08:13:22.446 2025-03-20 08:13:22.446 434197 831 2 0 991 2025-03-20 08:13:22.446 2025-03-20 08:13:22.446 434197 1007 19 0 992 2025-03-20 08:13:23.142 2025-03-20 08:13:23.142 434197 1272 2 0 993 2025-03-20 09:25:33.938 2025-03-20 09:25:33.938 434197 7983 2 0 994 2025-03-20 09:25:33.938 2025-03-20 09:25:33.938 434197 9921 19 0 995 2025-03-20 08:13:23.142 2025-03-20 08:13:23.142 434197 21061 19 0 996 2025-03-19 08:53:58.283 2025-03-19 08:53:58.283 434212 8242 0 0 997 2025-03-19 08:53:58.283 2025-03-19 08:53:58.283 434212 16347 2 0 998 2025-03-19 07:05:10.855 2025-03-19 07:05:10.855 434219 15052 19 0 999 2025-03-19 07:05:10.855 2025-03-19 07:05:10.855 434219 21401 2 0 1000 2025-03-19 03:02:06.235 2025-03-19 03:02:06.235 434223 8713 13 0 1001 2025-03-19 03:02:06.235 2025-03-19 03:02:06.235 434223 18923 115 0 1002 2025-03-19 04:40:30.948 2025-03-19 04:40:30.948 434227 1273 10 0 1003 2025-03-19 04:40:30.948 2025-03-19 04:40:30.948 434227 4388 90 0 1004 2025-03-18 19:26:18.682 2025-03-18 19:26:18.682 434231 4958 1 0 1005 2025-03-18 19:26:18.682 2025-03-18 19:26:18.682 434231 16347 9 0 1006 2025-03-18 20:37:36.685 2025-03-18 20:37:36.685 434242 4984 1 0 1007 2025-03-19 03:38:32.111 2025-03-19 03:38:32.111 434242 5499 0 0 1008 2025-03-19 03:38:32.111 2025-03-19 03:38:32.111 434242 9084 2 0 1009 2025-03-18 20:37:36.685 2025-03-18 20:37:36.685 434242 10986 0 0 1010 2025-03-18 21:26:27.435 2025-03-18 21:26:27.435 434243 1474 1 0 1011 2025-03-18 17:08:45.022 2025-03-18 17:08:45.022 434243 2013 1 0 1012 2025-03-18 21:26:27.435 2025-03-18 21:26:27.435 434243 2213 9 0 1013 2025-03-18 17:08:45.022 2025-03-18 17:08:45.022 434243 2776 7 0 1014 2025-03-18 22:31:59.359 2025-03-18 22:31:59.359 434243 4118 2 0 1015 2025-03-18 17:08:45.205 2025-03-18 17:08:45.205 434243 5175 7 0 1016 2025-03-19 09:05:07.992 2025-03-19 09:05:07.992 434243 5757 1 0 1017 2025-03-18 17:08:47.611 2025-03-18 17:08:47.611 434243 6137 7 0 1018 2025-03-18 22:31:59.359 2025-03-18 22:31:59.359 434243 8269 19 0 1019 2025-03-18 17:08:47.429 2025-03-18 17:08:47.429 434243 9537 7 0 1020 2025-03-18 17:08:45.205 2025-03-18 17:08:45.205 434243 12169 1 0 1021 2025-03-19 09:05:07.992 2025-03-19 09:05:07.992 434243 14774 7 0 1022 2025-03-18 17:08:47.429 2025-03-18 17:08:47.429 434243 15091 1 0 1023 2025-03-18 17:08:47.611 2025-03-18 17:08:47.611 434243 21442 1 0 1024 2025-03-19 09:24:59.298 2025-03-19 09:24:59.298 434245 5661 9 0 1025 2025-03-19 09:24:59.298 2025-03-19 09:24:59.298 434245 20981 1 0 1026 2025-03-18 21:28:13.665 2025-03-18 21:28:13.665 434260 17392 9 0 1027 2025-03-18 21:28:13.665 2025-03-18 21:28:13.665 434260 21238 1 0 1028 2025-03-19 05:01:27.365 2025-03-19 05:01:27.365 434261 2224 8 0 1029 2025-03-19 05:01:27.365 2025-03-19 05:01:27.365 434261 8954 75 0 1030 2025-03-19 16:15:23.715 2025-03-19 16:15:23.715 434263 1718 8 0 1031 2025-03-19 16:15:25.651 2025-03-19 16:15:25.651 434263 1785 8 0 1032 2025-03-19 16:15:25.227 2025-03-19 16:15:25.227 434263 7818 69 0 1033 2025-03-19 16:15:25.984 2025-03-19 16:15:25.984 434263 7899 8 0 1034 2025-03-19 16:15:25.474 2025-03-19 16:15:25.474 434263 9183 8 0 1035 2025-03-19 16:15:25.227 2025-03-19 16:15:25.227 434263 9367 8 0 1036 2025-03-19 16:15:25.871 2025-03-19 16:15:25.871 434263 10342 69 0 1037 2025-03-19 16:15:25.651 2025-03-19 16:15:25.651 434263 11819 69 0 1038 2025-03-19 16:15:25.984 2025-03-19 16:15:25.984 434263 11866 69 0 1039 2025-03-19 16:15:26.324 2025-03-19 16:15:26.324 434263 13517 139 0 1040 2025-03-19 16:15:25.345 2025-03-19 16:15:25.345 434263 14280 8 0 1041 2025-03-18 21:28:13.471 2025-03-19 16:15:25.474 434263 17209 70 0 1042 2025-03-19 16:15:23.715 2025-03-19 16:15:23.715 434263 18231 69 0 1043 2025-03-18 21:28:13.471 2025-03-18 21:28:13.471 434263 19527 9 0 1044 2025-03-19 16:15:25.871 2025-03-19 16:15:25.871 434263 20687 8 0 1045 2025-03-19 16:15:25.345 2025-03-19 16:15:25.345 434263 20706 69 0 1046 2025-03-19 16:15:26.324 2025-03-19 16:15:26.324 434263 21019 15 0 1047 2025-03-18 21:28:13.246 2025-03-18 21:28:13.246 434264 5500 9 0 1048 2025-03-18 21:28:13.246 2025-03-18 21:28:13.246 434264 21239 1 0 1049 2025-03-18 21:28:12.936 2025-03-18 21:28:12.936 434265 19570 9 0 1050 2025-03-18 21:28:12.936 2025-03-18 21:28:12.936 434265 20956 1 0 1051 2025-03-18 21:28:11.741 2025-03-18 21:28:11.741 434271 1298 1 0 1052 2025-03-18 20:56:54.327 2025-03-18 20:56:54.327 434271 1354 10 0 1053 2025-03-18 20:56:54.327 2025-03-18 20:56:54.327 434271 10818 90 0 1054 2025-03-18 21:28:11.741 2025-03-18 21:28:11.741 434271 21119 9 0 1055 2025-03-19 03:06:47.111 2025-03-19 03:06:47.111 434274 685 0 0 1056 2025-03-19 03:06:46.487 2025-03-19 03:06:46.487 434274 891 0 0 1057 2025-03-19 03:06:48.174 2025-03-19 03:06:48.174 434274 900 0 0 1058 2025-03-19 03:06:46.679 2025-03-19 03:06:46.679 434274 1773 1 0 1059 2025-03-19 03:06:46.487 2025-03-19 03:06:46.487 434274 3729 1 0 1060 2025-03-19 03:06:45.765 2025-03-19 03:06:45.765 434274 11153 0 0 1061 2025-03-19 03:06:46.679 2025-03-19 03:06:46.679 434274 13055 0 0 1062 2025-03-19 03:06:48.174 2025-03-19 03:06:48.174 434274 17984 1 0 1063 2025-03-19 03:06:45.765 2025-03-19 03:06:45.765 434274 19117 1 0 1064 2025-03-19 03:06:47.111 2025-03-19 03:06:47.111 434274 21022 1 0 1065 2025-03-19 00:49:14.154 2025-03-19 00:49:14.154 434276 4048 90 0 1066 2025-03-19 00:49:14.154 2025-03-19 00:49:14.154 434276 10536 10 0 1067 2025-03-19 11:39:20.519 2025-03-19 11:39:20.519 434276 11091 7 0 1068 2025-03-19 11:39:20.519 2025-03-19 11:39:20.519 434276 11885 1 0 1069 2025-03-18 21:28:11.495 2025-03-18 21:28:11.495 434277 992 9 0 1070 2025-03-18 21:28:11.495 2025-03-18 21:28:11.495 434277 10490 1 0 1071 2025-03-18 17:43:54.847 2025-03-18 17:43:54.847 434277 13365 1 0 1072 2025-03-18 17:43:54.847 2025-03-18 17:43:54.847 434277 21824 9 0 1073 2025-03-18 22:31:50.933 2025-03-18 22:31:50.933 434278 626 19 0 1074 2025-03-18 17:02:03.615 2025-03-18 17:02:03.615 434278 722 2 0 1075 2025-03-18 18:20:20.802 2025-03-18 18:20:20.802 434278 763 30 0 1076 2025-03-19 04:49:54.355 2025-03-19 04:49:54.355 434278 1039 19 0 1077 2025-03-19 04:49:54.355 2025-03-19 04:49:54.355 434278 1401 2 0 1078 2025-03-19 07:04:00.661 2025-03-19 07:04:00.661 434278 1471 810 0 1079 2025-03-18 18:51:43.174 2025-03-18 18:51:43.174 434278 1602 9 0 1080 2025-03-18 19:47:28.008 2025-03-18 19:47:28.008 434278 1605 9 0 1081 2025-03-18 18:20:20.802 2025-03-18 18:20:20.802 434278 3396 3 0 1082 2025-03-18 22:31:50.933 2025-03-18 22:31:50.933 434278 5904 2 0 1083 2025-03-19 07:04:00.661 2025-03-19 07:04:00.661 434278 8416 90 0 1084 2025-03-18 19:47:28.008 2025-03-18 19:47:28.008 434278 10007 1 0 1085 2025-03-18 18:51:43.174 2025-03-18 18:51:43.174 434278 11938 1 0 1086 2025-03-19 00:43:14.816 2025-03-19 00:43:14.816 434278 16177 2 0 1087 2025-03-19 00:43:14.816 2025-03-19 00:43:14.816 434278 16456 19 0 1088 2025-03-18 21:26:06.874 2025-03-18 21:26:06.874 434278 16717 1 0 1089 2025-03-18 21:26:06.874 2025-03-18 21:26:06.874 434278 19689 9 0 1090 2025-03-18 17:02:03.615 2025-03-18 17:02:03.615 434278 21547 19 0 1091 2025-03-20 02:55:07.833 2025-03-20 02:55:07.833 434279 640 5 0 1092 2025-03-20 02:55:07.833 2025-03-20 02:55:07.833 434279 16754 1 0 1093 2025-03-18 21:28:10.907 2025-03-18 21:28:10.907 434281 20680 9 0 1094 2025-03-18 21:28:10.907 2025-03-18 21:28:10.907 434281 20891 1 0 1095 2025-03-18 16:24:00.012 2025-03-18 16:24:00.012 434283 848 1 0 1096 2025-03-18 17:44:17.656 2025-03-18 17:44:17.656 434283 1030 1 0 1097 2025-03-18 21:28:10.56 2025-03-18 21:28:10.56 434283 4395 9 0 1098 2025-03-18 16:24:00.012 2025-03-18 16:24:00.012 434283 8541 0 0 1099 2025-03-18 17:44:17.656 2025-03-18 17:44:17.656 434283 9276 9 0 1100 2025-03-18 21:28:10.56 2025-03-18 21:28:10.56 434283 21139 1 0 1101 2025-03-19 05:37:56.852 2025-03-19 05:37:56.852 434285 620 5 0 1102 2025-03-19 00:43:12.304 2025-03-19 00:43:12.304 434285 711 19 0 1103 2025-03-18 18:03:50.735 2025-03-18 18:03:50.735 434285 937 7 0 1104 2025-03-18 23:59:07.372 2025-03-18 23:59:07.372 434285 1039 5 0 1105 2025-03-18 17:16:25.184 2025-03-18 17:16:25.184 434285 1195 9 0 1106 2025-03-18 18:20:22.722 2025-03-18 18:20:22.722 434285 1213 1 0 1107 2025-03-19 01:39:27.878 2025-03-19 01:39:27.878 434285 2111 1 0 1108 2025-03-18 17:02:00.794 2025-03-18 17:02:00.794 434285 2639 19 0 1109 2025-03-19 05:37:56.852 2025-03-19 05:37:56.852 434285 3400 1 0 1110 2025-03-19 01:45:34.415 2025-03-19 01:45:34.415 434285 4074 9 0 1111 2025-03-18 18:03:49.448 2025-03-18 18:03:49.448 434285 4079 7 0 1112 2025-03-18 18:51:39.441 2025-03-18 18:51:39.441 434285 5308 1 0 1113 2025-03-18 23:59:08.106 2025-03-18 23:59:08.106 434285 5455 1 0 1114 2025-03-19 01:39:27.878 2025-03-19 01:39:27.878 434285 5500 9 0 1115 2025-03-18 16:54:23.315 2025-03-18 16:54:23.315 434285 5806 8 0 1116 2025-03-19 00:43:12.304 2025-03-19 00:43:12.304 434285 7580 2 0 1117 2025-03-18 16:57:09.061 2025-03-18 16:57:09.061 434285 7903 23 0 1118 2025-03-18 22:31:48.426 2025-03-18 22:31:48.426 434285 8472 2 0 1119 2025-03-19 05:37:57.156 2025-03-19 05:37:57.156 434285 9167 1 0 1120 2025-03-19 01:26:04.495 2025-03-19 01:26:04.495 434285 9334 1 0 1121 2025-03-18 18:03:50.533 2025-03-18 18:03:50.533 434285 9349 7 0 1122 2025-03-18 21:05:47.842 2025-03-18 21:05:47.842 434285 9517 45 0 1123 2025-03-18 18:20:23.381 2025-03-18 18:20:23.381 434285 10096 1 0 1124 2025-03-18 18:03:49.448 2025-03-18 18:03:49.448 434285 12808 1 0 1125 2025-03-18 23:59:06.715 2025-03-18 23:59:06.715 434285 12946 5 0 1126 2025-03-18 23:59:07.372 2025-03-18 23:59:07.372 434285 13100 1 0 1127 2025-03-18 18:20:23.198 2025-03-18 18:20:23.198 434285 13378 1 0 1128 2025-03-18 16:57:09.061 2025-03-18 16:57:09.061 434285 14220 3 0 1129 2025-03-18 18:20:22.884 2025-03-18 18:20:22.884 434285 14370 10 0 1130 2025-03-18 23:59:06.715 2025-03-18 23:59:06.715 434285 14959 1 0 1131 2025-03-18 23:59:05.586 2025-03-18 23:59:05.586 434285 15146 1 0 1132 2025-03-18 21:05:47.842 2025-03-18 21:05:47.842 434285 15491 5 0 1133 2025-03-18 18:03:49.245 2025-03-18 18:03:49.245 434285 15858 1 0 1134 2025-03-18 23:59:06.131 2025-03-18 23:59:06.131 434285 16250 1 0 1135 2025-03-18 21:52:56.38 2025-03-18 21:52:56.38 434285 16284 1 0 1136 2025-03-19 00:52:21.504 2025-03-19 00:52:21.504 434285 16309 90 0 1137 2025-03-18 18:03:50.533 2025-03-18 18:03:50.533 434285 16939 1 0 1138 2025-03-18 19:47:22.661 2025-03-18 19:47:22.661 434285 17184 9 0 1139 2025-03-18 21:25:59.498 2025-03-18 21:25:59.498 434285 17533 1 0 1140 2025-03-18 18:20:23.198 2025-03-18 18:20:23.198 434285 17541 10 0 1141 2025-03-19 05:37:57.156 2025-03-19 05:37:57.156 434285 17710 5 0 1142 2025-03-18 18:20:22.593 2025-03-18 18:20:22.593 434285 17722 10 0 1143 2025-03-18 23:59:06.131 2025-03-18 23:59:06.131 434285 18116 5 0 1144 2025-03-18 18:20:22.722 2025-03-18 18:20:22.722 434285 18265 10 0 1145 2025-03-18 19:47:22.661 2025-03-18 19:47:22.661 434285 18330 1 0 1146 2025-03-18 18:20:23.381 2025-03-18 18:20:23.381 434285 18956 10 0 1147 2025-03-18 23:59:08.106 2025-03-18 23:59:08.106 434285 19121 5 0 1148 2025-03-18 18:03:50.735 2025-03-18 18:03:50.735 434285 19463 1 0 1149 2025-03-18 18:03:49.245 2025-03-18 18:03:49.245 434285 19826 7 0 1150 2025-03-19 01:45:34.415 2025-03-19 01:45:34.415 434285 20099 1 0 1151 2025-03-19 00:52:21.504 2025-03-19 00:52:21.504 434285 20939 10 0 1152 2025-03-18 17:16:25.184 2025-03-18 17:16:25.184 434285 20970 1 0 1153 2025-03-18 18:51:39.441 2025-03-18 18:51:39.441 434285 21091 9 0 1154 2025-03-19 01:26:04.495 2025-03-19 01:26:04.495 434285 21103 10 0 1155 2025-03-18 23:59:05.586 2025-03-18 23:59:05.586 434285 21314 5 0 1156 2025-03-18 18:20:22.593 2025-03-18 18:20:22.593 434285 21339 1 0 1157 2025-03-18 16:54:23.315 2025-03-18 16:54:23.315 434285 21391 69 0 1158 2025-03-18 22:31:48.426 2025-03-18 22:31:48.426 434285 21422 19 0 1159 2025-03-18 21:52:56.38 2025-03-18 21:52:56.38 434285 21798 8 0 1160 2025-03-18 21:25:59.498 2025-03-18 21:25:59.498 434285 21814 9 0 1161 2025-03-18 18:20:22.884 2025-03-18 18:20:22.884 434285 21815 1 0 1162 2025-03-18 17:02:00.794 2025-03-18 17:02:00.794 434285 21832 2 0 1163 2025-03-18 21:28:09.949 2025-03-18 21:28:09.949 434288 626 1 0 1164 2025-03-19 03:45:54.529 2025-03-19 03:45:54.529 434288 13553 10 0 1165 2025-03-18 21:28:09.949 2025-03-18 21:28:09.949 434288 21338 9 0 1166 2025-03-19 03:45:54.529 2025-03-19 03:45:54.529 434288 21540 90 0 1167 2025-03-18 21:28:09.178 2025-03-18 21:28:09.178 434289 16357 1 0 1168 2025-03-18 21:28:09.178 2025-03-18 21:28:09.178 434289 18772 9 0 1169 2025-03-18 21:28:08.208 2025-03-18 21:28:08.208 434290 9421 1 0 1170 2025-03-18 21:28:08.208 2025-03-18 21:28:08.208 434290 9529 9 0 1171 2025-03-20 06:37:58.093 2025-03-20 06:37:58.093 434292 763 5 0 1172 2025-03-20 06:37:58.093 2025-03-20 06:37:58.093 434292 20026 45 0 1173 2025-03-18 21:28:07.878 2025-03-18 21:28:07.878 434293 6526 1 0 1174 2025-03-18 21:28:07.878 2025-03-18 21:28:07.878 434293 20691 9 0 1175 2025-03-18 18:18:54.792 2025-03-18 18:18:54.792 434295 1003 19 0 1176 2025-03-18 18:18:54.792 2025-03-18 18:18:54.792 434295 9353 2 0 1177 2025-03-18 21:28:07.582 2025-03-18 21:28:07.582 434297 11992 1 0 1178 2025-03-18 21:28:07.582 2025-03-18 21:28:07.582 434297 21131 9 0 1179 2025-03-18 18:54:26.476 2025-03-18 18:54:26.476 434298 9863 1 0 1180 2025-03-18 18:54:26.476 2025-03-18 18:54:26.476 434298 19663 9 0 1181 2025-03-18 21:28:07.333 2025-03-18 21:28:07.333 434299 618 9 0 1182 2025-03-18 20:32:18.594 2025-03-18 20:32:18.594 434299 1044 19 0 1183 2025-03-18 20:32:18.594 2025-03-18 20:32:18.594 434299 11716 2 0 1184 2025-03-18 21:28:07.333 2025-03-18 21:28:07.333 434299 17157 1 0 1185 2025-03-18 19:48:13.574 2025-03-18 19:48:13.574 434300 16406 1 0 1186 2025-03-18 19:48:13.574 2025-03-18 19:48:13.574 434300 19199 9 0 1187 2025-03-18 21:28:06.314 2025-03-18 21:28:06.314 434301 1650 1 0 1188 2025-03-18 21:28:06.314 2025-03-18 21:28:06.314 434301 17817 9 0 1189 2025-03-18 18:58:34.517 2025-03-18 18:58:34.517 434307 622 1 0 1190 2025-03-18 18:58:34.517 2025-03-18 18:58:34.517 434307 20642 9 0 1191 2025-03-18 19:55:10.531 2025-03-18 19:55:10.531 434309 8506 1 0 1192 2025-03-18 19:55:10.531 2025-03-18 19:55:10.531 434309 10056 9 0 1193 2025-03-18 23:13:19.394 2025-03-18 23:13:19.394 434309 19943 1 0 1194 2025-03-18 23:13:19.394 2025-03-18 23:13:19.394 434309 20812 0 0 1195 2025-03-18 20:47:52.005 2025-03-18 20:47:52.005 434310 641 9 0 1196 2025-03-18 18:54:37.243 2025-03-18 18:54:37.243 434310 1173 9 0 1197 2025-03-18 17:04:31.194 2025-03-18 17:04:31.194 434310 2775 19 0 1198 2025-03-18 20:47:52.005 2025-03-18 20:47:52.005 434310 13587 1 0 1199 2025-03-19 11:42:55.346 2025-03-19 11:42:55.346 434310 15148 7 0 1200 2025-03-18 17:04:31.194 2025-03-18 17:04:31.194 434310 16789 2 0 1201 2025-03-19 11:42:55.346 2025-03-19 11:42:55.346 434310 17226 1 0 1202 2025-03-18 18:54:37.243 2025-03-18 18:54:37.243 434310 19016 1 0 1203 2025-03-18 22:21:43.693 2025-03-18 22:21:43.693 434313 683 2 0 1204 2025-03-18 22:21:43.693 2025-03-18 22:21:43.693 434313 5057 0 0 1205 2025-03-18 17:27:01.61 2025-03-18 17:27:01.61 434316 11789 4 0 1206 2025-03-18 17:27:01.61 2025-03-18 17:27:01.61 434316 19980 0 0 1207 2025-03-18 21:28:06.048 2025-03-18 21:28:06.048 434317 8289 9 0 1208 2025-03-18 21:28:06.048 2025-03-18 21:28:06.048 434317 21373 1 0 1209 2025-03-18 17:04:56.817 2025-03-18 17:04:56.817 434318 794 2 0 1210 2025-03-18 18:52:11.333 2025-03-18 18:52:11.333 434318 999 9 0 1211 2025-03-19 04:50:47.708 2025-03-19 04:50:47.708 434318 2056 19 0 1212 2025-03-19 11:44:10.609 2025-03-19 11:44:10.609 434318 2459 1 0 1213 2025-03-19 11:44:10.609 2025-03-19 11:44:10.609 434318 3706 7 0 1214 2025-03-18 17:04:56.817 2025-03-18 17:04:56.817 434318 5752 19 0 1215 2025-03-19 04:50:47.708 2025-03-19 04:50:47.708 434318 11992 2 0 1216 2025-03-18 18:52:11.333 2025-03-18 18:52:11.333 434318 20225 1 0 1217 2025-03-19 00:55:22.319 2025-03-19 00:55:22.319 434319 696 1890 0 1218 2025-03-19 00:28:07.241 2025-03-19 00:28:07.241 434319 848 11 0 1219 2025-03-19 00:28:07.398 2025-03-19 00:28:07.398 434319 2111 11 0 1220 2025-03-19 00:28:07.398 2025-03-19 00:28:07.398 434319 3656 1 0 1221 2025-03-19 00:28:07.043 2025-03-19 00:28:07.043 434319 6749 1 0 1222 2025-03-19 04:04:08.014 2025-03-19 04:04:08.014 434319 8080 123 0 1223 2025-03-19 00:55:22.319 2025-03-19 00:55:22.319 434319 8448 210 0 1224 2025-03-19 00:28:08.228 2025-03-19 00:28:08.228 434319 9026 1 0 1225 2025-03-19 00:28:08.228 2025-03-19 00:28:08.228 434319 9758 11 0 1226 2025-03-19 00:28:07.241 2025-03-19 00:28:07.241 434319 10981 1 0 1227 2025-03-18 21:28:05.74 2025-03-18 21:28:05.74 434319 11992 1 0 1228 2025-03-18 22:42:37.283 2025-03-18 22:42:37.283 434319 15091 900 0 1229 2025-03-19 04:04:08.014 2025-03-19 04:04:08.014 434319 19854 1111 0 1230 2025-03-18 22:42:37.283 2025-03-18 22:42:37.283 434319 20185 100 0 1231 2025-03-19 00:28:07.043 2025-03-19 00:28:07.043 434319 20586 11 0 1232 2025-03-18 22:43:13.476 2025-03-18 22:43:13.476 434319 20849 0 0 1233 2025-03-18 22:43:13.476 2025-03-18 22:43:13.476 434319 21037 4 0 1234 2025-03-18 21:28:05.74 2025-03-18 21:28:05.74 434319 21701 9 0 1235 2025-03-18 21:28:05.349 2025-03-18 21:28:05.349 434321 15239 1 0 1236 2025-03-18 21:28:05.349 2025-03-18 21:28:05.349 434321 17991 9 0 1237 2025-03-19 06:45:37.957 2025-03-19 06:45:37.957 434323 4474 19 0 1238 2025-03-19 06:45:37.957 2025-03-19 06:45:37.957 434323 5444 2 0 1239 2025-03-19 01:54:31.039 2025-03-19 01:54:31.039 434328 1006 1 0 1240 2025-03-19 01:54:32.24 2025-03-19 01:54:32.24 434328 1483 1 0 1241 2025-03-18 21:28:04.915 2025-03-18 21:28:04.915 434328 2832 9 0 1242 2025-03-19 01:54:32.24 2025-03-19 01:54:32.24 434328 4798 9 0 1243 2025-03-19 01:54:30.411 2025-03-19 01:54:30.411 434328 5661 1 0 1244 2025-03-18 21:28:04.915 2025-03-18 21:28:04.915 434328 10698 1 0 1245 2025-03-19 01:54:30.411 2025-03-19 01:54:30.411 434328 16432 9 0 1246 2025-03-19 01:54:31.627 2025-03-19 01:54:31.627 434328 19332 1 0 1247 2025-03-19 01:54:31.627 2025-03-19 01:54:31.627 434328 20849 9 0 1248 2025-03-19 01:54:31.039 2025-03-19 01:54:31.039 434328 21091 9 0 1249 2025-03-18 21:28:02.198 2025-03-18 21:28:02.198 434332 822 1 0 1250 2025-03-18 21:28:02.198 2025-03-18 21:28:02.198 434332 5809 9 0 1251 2025-03-18 18:54:03.603 2025-03-18 18:54:03.603 434335 11776 1 0 1252 2025-03-18 18:54:03.603 2025-03-18 18:54:03.603 434335 21401 9 0 1253 2025-03-19 01:41:12.352 2025-03-19 01:41:12.352 434338 20094 10 0 1254 2025-03-19 01:41:12.352 2025-03-19 01:41:12.352 434338 21339 1 0 1255 2025-03-18 21:28:01.796 2025-03-18 21:28:01.796 434343 1729 1 0 1256 2025-03-18 21:28:01.796 2025-03-18 21:28:01.796 434343 16816 9 0 1257 2025-03-18 20:19:27.884 2025-03-18 20:19:27.884 434347 4624 1 0 1258 2025-03-18 20:19:27.884 2025-03-18 20:19:27.884 434347 10060 0 0 1259 2025-03-18 19:00:44.868 2025-03-18 19:00:44.868 434349 5728 9 0 1260 2025-03-18 19:00:44.868 2025-03-18 19:00:44.868 434349 21815 1 0 1261 2025-03-18 21:28:01.414 2025-03-18 21:28:01.414 434350 844 9 0 1262 2025-03-18 21:28:01.414 2025-03-18 21:28:01.414 434350 18673 1 0 1263 2025-03-18 21:28:00.417 2025-03-18 21:28:00.417 434352 13348 9 0 1264 2025-03-18 21:28:00.417 2025-03-18 21:28:00.417 434352 17798 1 0 1265 2025-03-19 07:12:16.772 2025-03-19 07:12:16.772 434353 675 1 0 1266 2025-03-19 07:12:15.865 2025-03-19 07:12:15.865 434353 6191 1 0 1267 2025-03-19 07:12:13.77 2025-03-19 07:12:13.77 434353 7376 1 0 1268 2025-03-19 07:12:16.772 2025-03-19 07:12:16.772 434353 11477 9 0 1269 2025-03-19 07:12:15.567 2025-03-19 07:12:15.567 434353 11942 9 0 1270 2025-03-19 07:12:12.772 2025-03-19 07:12:12.772 434353 12946 9 0 1271 2025-03-19 07:12:12.772 2025-03-19 07:12:12.772 434353 14278 1 0 1272 2025-03-19 07:12:15.567 2025-03-19 07:12:15.567 434353 18368 1 0 1273 2025-03-19 07:12:13.77 2025-03-19 07:12:13.77 434353 20275 9 0 1274 2025-03-19 07:12:15.865 2025-03-19 07:12:15.865 434353 21172 9 0 1275 2025-03-18 19:00:55.547 2025-03-18 19:00:55.547 434358 2195 1 0 1276 2025-03-18 19:00:55.547 2025-03-18 19:00:55.547 434358 20782 9 0 1277 2025-03-18 18:47:00.784 2025-03-18 18:47:00.784 434359 5003 1 0 1278 2025-03-18 18:47:00.784 2025-03-18 18:47:00.784 434359 10393 9 0 1279 2025-03-18 21:28:00.091 2025-03-18 21:28:00.091 434360 9336 1 0 1280 2025-03-18 21:28:00.091 2025-03-18 21:28:00.091 434360 10719 9 0 1281 2025-03-18 21:27:59.69 2025-03-18 21:27:59.69 434364 2735 9 0 1282 2025-03-18 21:27:59.69 2025-03-18 21:27:59.69 434364 18231 1 0 1283 2025-03-18 18:59:48.031 2025-03-18 18:59:48.031 434366 7847 1 0 1284 2025-03-18 18:59:48.031 2025-03-18 18:59:48.031 434366 16834 9 0 1285 2025-03-18 20:34:33.639 2025-03-18 20:34:33.639 434367 13575 2 0 1286 2025-03-18 20:34:33.639 2025-03-18 20:34:33.639 434367 18772 19 0 1287 2025-03-18 22:58:55.61 2025-03-18 22:58:55.61 434371 10986 2 0 1288 2025-03-18 22:58:55.61 2025-03-18 22:58:55.61 434371 13169 0 0 1289 2025-03-19 01:41:47.237 2025-03-19 01:41:47.237 434372 1618 10 0 1290 2025-03-19 01:41:47.237 2025-03-19 01:41:47.237 434372 16598 1 0 1291 2025-03-18 21:27:58.597 2025-03-18 21:27:58.597 434378 997 1 0 1292 2025-03-18 21:27:58.597 2025-03-18 21:27:58.597 434378 1814 9 0 1293 2025-03-18 21:27:58.21 2025-03-18 21:27:58.21 434379 9496 1 0 1294 2025-03-18 21:27:58.21 2025-03-18 21:27:58.21 434379 17014 9 0 1295 2025-03-18 21:27:57.842 2025-03-18 21:27:57.842 434382 11829 1 0 1296 2025-03-18 21:27:57.842 2025-03-18 21:27:57.842 434382 21373 9 0 1297 2025-03-18 23:01:02.669 2025-03-18 23:01:02.669 434383 8173 1 0 1298 2025-03-18 23:01:02.669 2025-03-18 23:01:02.669 434383 17682 9 0 1299 2025-03-18 20:13:56.274 2025-03-18 20:13:56.274 434384 13763 10 0 1300 2025-03-18 20:13:56.274 2025-03-18 20:13:56.274 434384 14705 1 0 1301 2025-03-18 21:26:08.686 2025-03-18 21:26:08.686 434385 624 9 0 1302 2025-03-18 23:54:08.402 2025-03-18 23:54:08.402 434385 798 1 0 1303 2025-03-19 00:43:17.707 2025-03-19 00:43:17.707 434385 3745 19 0 1304 2025-03-18 22:31:51.674 2025-03-18 22:31:51.674 434385 3990 2 0 1305 2025-03-18 17:23:04.975 2025-03-18 17:23:04.975 434385 4802 4 0 1306 2025-03-18 22:31:51.674 2025-03-18 22:31:51.674 434385 5865 19 0 1307 2025-03-19 03:55:21.257 2025-03-19 03:55:21.257 434385 6361 10 0 1308 2025-03-19 00:43:17.707 2025-03-19 00:43:17.707 434385 7376 2 0 1309 2025-03-18 23:54:08.402 2025-03-18 23:54:08.402 434385 11145 7 0 1310 2025-03-19 03:55:21.128 2025-03-19 03:55:21.128 434385 11298 10 0 1311 2025-03-18 20:17:38.015 2025-03-18 20:17:38.015 434385 13169 10 0 1312 2025-03-18 21:26:08.686 2025-03-18 21:26:08.686 434385 16847 1 0 1313 2025-03-18 18:43:23.098 2025-03-18 18:43:23.098 434385 16965 10 0 1314 2025-03-19 03:55:21.257 2025-03-19 03:55:21.257 434385 17838 1 0 1315 2025-03-18 20:17:38.015 2025-03-18 20:17:38.015 434385 20205 1 0 1316 2025-03-18 17:23:04.975 2025-03-18 17:23:04.975 434385 20280 38 0 1317 2025-03-19 03:55:21.128 2025-03-19 03:55:21.128 434385 20788 1 0 1318 2025-03-18 18:43:23.098 2025-03-18 18:43:23.098 434385 21532 90 0 1319 2025-03-18 20:47:56 2025-03-18 20:47:56 434387 9820 19 0 1320 2025-03-18 20:47:56 2025-03-18 20:47:56 434387 11885 2 0 1321 2025-03-18 17:26:59.578 2025-03-18 17:26:59.578 434392 9552 4 0 1322 2025-03-18 17:26:59.578 2025-03-18 17:26:59.578 434392 11873 0 0 1323 2025-03-18 16:54:16.256 2025-03-18 16:54:16.256 434395 683 8 0 1324 2025-03-19 11:43:57.087 2025-03-19 11:43:57.087 434395 1237 7 0 1325 2025-03-18 16:54:16.256 2025-03-18 16:54:16.256 434395 1733 69 0 1326 2025-03-18 19:48:59.494 2025-03-18 19:48:59.494 434395 5852 9 0 1327 2025-03-18 17:17:11.911 2025-03-18 17:17:11.911 434395 9921 1 0 1328 2025-03-18 17:17:11.911 2025-03-18 17:17:11.911 434395 13365 9 0 1329 2025-03-19 11:43:57.087 2025-03-19 11:43:57.087 434395 15510 1 0 1330 2025-03-18 17:04:57.52 2025-03-18 17:04:57.52 434395 16695 2 0 1331 2025-03-18 17:04:57.52 2025-03-18 17:04:57.52 434395 16704 19 0 1332 2025-03-18 22:02:41.847 2025-03-18 22:02:41.847 434395 20642 1 0 1333 2025-03-18 22:02:41.847 2025-03-18 22:02:41.847 434395 20901 9 0 1334 2025-03-18 19:48:59.494 2025-03-18 19:48:59.494 434395 21136 1 0 1335 2025-03-18 16:25:50.472 2025-03-18 16:25:50.472 434396 700 4 0 1336 2025-03-18 17:55:08.054 2025-03-18 22:31:52.548 434396 750 29 0 1337 2025-03-19 04:34:06.347 2025-03-19 04:34:06.347 434396 797 19 0 1338 2025-03-18 19:03:42.591 2025-03-18 19:03:42.591 434396 2204 1 0 1339 2025-03-18 19:03:42.591 2025-03-18 19:03:42.591 434396 5444 9 0 1340 2025-03-19 00:43:24.188 2025-03-19 00:43:24.188 434396 6602 2 0 1341 2025-03-19 00:43:24.188 2025-03-19 00:43:24.188 434396 7899 19 0 1342 2025-03-18 21:26:34.957 2025-03-18 21:26:47.831 434396 9378 10 0 1343 2025-03-19 02:31:21.834 2025-03-19 02:31:21.834 434396 14503 1 0 1344 2025-03-18 20:31:33.071 2025-03-18 21:26:34.957 434396 14939 11 0 1345 2025-03-18 16:25:50.472 2025-03-18 16:25:50.472 434396 17212 36 0 1346 2025-03-19 02:31:21.834 2025-03-19 02:31:21.834 434396 17226 10 0 1347 2025-03-19 04:34:06.347 2025-03-19 04:34:06.347 434396 17984 2 0 1348 2025-03-18 20:31:33.071 2025-03-18 20:31:33.071 434396 18265 19 0 1349 2025-03-18 17:55:08.054 2025-03-18 17:55:08.054 434396 19417 90 0 1350 2025-03-18 21:26:47.831 2025-03-18 21:26:47.831 434396 21026 1 0 1351 2025-03-18 22:31:52.548 2025-03-18 22:31:52.548 434396 21485 2 0 1352 2025-03-18 17:25:01.896 2025-03-18 17:25:01.896 434399 1720 1 0 1353 2025-03-18 17:25:01.896 2025-03-18 17:25:01.896 434399 18011 0 0 1354 2025-03-18 23:01:02.196 2025-03-18 23:01:02.196 434399 18956 1 0 1355 2025-03-18 23:01:02.196 2025-03-18 23:01:02.196 434399 20190 9 0 1356 2025-03-18 17:14:08.813 2025-03-18 17:14:08.813 434402 8289 9 0 1357 2025-03-18 21:27:56.833 2025-03-18 21:27:56.833 434402 9969 9 0 1358 2025-03-18 21:27:56.833 2025-03-18 21:27:56.833 434402 20683 1 0 1359 2025-03-18 17:14:08.813 2025-03-18 17:14:08.813 434402 21701 1 0 1360 2025-03-18 18:58:41.431 2025-03-18 18:58:41.431 434404 696 1 0 1361 2025-03-18 18:58:41.431 2025-03-18 18:58:41.431 434404 14688 9 0 1362 2025-03-18 22:02:52.038 2025-03-18 22:02:52.038 434405 9705 9 0 1363 2025-03-18 17:17:35.608 2025-03-18 17:17:35.608 434405 16126 1 0 1364 2025-03-18 22:02:52.038 2025-03-18 22:02:52.038 434405 17797 1 0 1365 2025-03-18 17:17:35.608 2025-03-18 17:17:35.608 434405 20157 9 0 1366 2025-03-18 17:17:29.006 2025-03-18 17:17:29.006 434406 14905 9 0 1367 2025-03-18 17:17:29.006 2025-03-18 17:17:29.006 434406 17713 1 0 1368 2025-03-18 21:27:30.822 2025-03-18 21:27:30.822 434410 669 1 0 1369 2025-03-18 20:25:24.729 2025-03-18 20:25:24.729 434410 721 2 0 1370 2025-03-19 12:48:43.4 2025-03-19 12:48:43.4 434410 902 0 0 1371 2025-03-18 21:27:30.68 2025-03-18 21:27:30.68 434410 999 9 0 1372 2025-03-18 17:14:36.082 2025-03-18 17:14:36.082 434410 1352 2 0 1373 2025-03-18 22:31:56.758 2025-03-18 22:31:56.758 434410 1733 2 0 1374 2025-03-18 21:27:30.68 2025-03-18 21:27:30.68 434410 1737 1 0 1375 2025-03-18 21:27:30.462 2025-03-18 21:27:30.462 434410 3683 1 0 1376 2025-03-18 21:27:30.462 2025-03-18 21:27:30.462 434410 7978 9 0 1377 2025-03-19 12:48:43.4 2025-03-19 12:48:43.4 434410 8945 1 0 1378 2025-03-18 17:14:36.082 2025-03-18 17:14:36.082 434410 10608 19 0 1379 2025-03-18 22:31:56.758 2025-03-18 22:31:56.758 434410 10693 19 0 1380 2025-03-19 00:43:26.505 2025-03-19 00:43:26.505 434410 10944 2 0 1381 2025-03-19 19:53:57.615 2025-03-19 19:53:57.615 434410 12169 11 0 1382 2025-03-18 17:08:23.952 2025-03-18 17:08:23.952 434410 12245 9 0 1383 2025-03-19 00:32:52.218 2025-03-19 00:32:52.218 434410 13599 1 0 1384 2025-03-18 21:27:30.822 2025-03-18 21:27:30.822 434410 14651 9 0 1385 2025-03-19 00:32:52.218 2025-03-19 00:32:52.218 434410 17162 7 0 1386 2025-03-18 17:08:23.952 2025-03-18 17:08:23.952 434410 17172 1 0 1387 2025-03-19 19:53:57.615 2025-03-19 19:53:57.615 434410 17519 100 0 1388 2025-03-18 20:25:24.729 2025-03-18 20:25:24.729 434410 17522 19 0 1389 2025-03-18 17:02:26.617 2025-03-18 17:02:26.617 434410 19018 2 0 1390 2025-03-19 00:43:26.505 2025-03-19 00:43:26.505 434410 19417 19 0 1391 2025-03-18 17:02:26.617 2025-03-18 17:02:26.617 434410 20897 19 0 1392 2025-03-18 18:55:04.849 2025-03-18 18:55:04.849 434411 2711 1 0 1393 2025-03-18 18:55:04.849 2025-03-18 18:55:04.849 434411 10484 9 0 1394 2025-03-18 21:16:37.236 2025-03-18 21:16:37.236 434412 5444 2 0 1395 2025-03-18 21:16:37.236 2025-03-18 21:16:37.236 434412 21320 19 0 1396 2025-03-18 17:58:06.22 2025-03-18 17:58:06.22 434413 1286 5 0 1397 2025-03-18 17:58:06.22 2025-03-18 17:58:06.22 434413 12774 45 0 1398 2025-03-19 04:50:53.275 2025-03-19 04:50:53.275 434417 9 2 0 1399 2025-03-18 18:53:09.659 2025-03-18 18:53:09.659 434417 1002 1 0 1400 2025-03-18 18:53:09.659 2025-03-18 18:53:09.659 434417 1272 9 0 1401 2025-03-19 04:50:53.275 2025-03-19 04:50:53.275 434417 11153 19 0 1402 2025-03-18 16:29:55.857 2025-03-18 16:29:55.857 434420 8998 3 0 1403 2025-03-18 16:29:55.654 2025-03-18 16:29:55.654 434420 16966 3 0 1404 2025-03-18 16:29:55.654 2025-03-18 16:29:55.654 434420 16978 24 0 1405 2025-03-18 16:29:55.857 2025-03-18 16:29:55.857 434420 18637 24 0 1406 2025-03-18 18:59:33.096 2025-03-18 18:59:33.096 434421 1114 9 0 1407 2025-03-18 18:59:33.096 2025-03-18 18:59:33.096 434421 20981 1 0 1408 2025-03-18 20:14:05.91 2025-03-18 20:14:05.91 434422 8713 10 0 1409 2025-03-18 20:14:05.91 2025-03-18 20:14:05.91 434422 11670 1 0 1410 2025-03-19 05:00:09.215 2025-03-19 05:00:09.215 434423 19759 2 0 1411 2025-03-19 05:00:09.215 2025-03-19 05:00:09.215 434423 20687 18 0 1412 2025-03-18 19:39:43.804 2025-03-18 19:39:43.804 434424 672 0 0 1413 2025-03-18 19:39:43.804 2025-03-18 19:39:43.804 434424 698 1 0 1414 2025-03-19 10:15:32.831 2025-03-19 10:15:32.831 434424 4083 5 0 1415 2025-03-19 10:27:34.833 2025-03-19 10:27:34.833 434424 4388 19 0 1416 2025-03-18 21:27:56.306 2025-03-18 21:27:56.306 434424 5779 1 0 1417 2025-03-18 19:39:44.052 2025-03-18 19:39:44.052 434424 6749 8 0 1418 2025-03-18 21:27:56.306 2025-03-18 21:27:56.306 434424 12507 9 0 1419 2025-03-19 10:15:32.831 2025-03-19 10:15:32.831 434424 12965 45 0 1420 2025-03-18 22:32:05.567 2025-03-18 22:32:05.567 434424 16124 19 0 1421 2025-03-18 22:32:05.567 2025-03-18 22:32:05.567 434424 18525 2 0 1422 2025-03-19 10:27:34.833 2025-03-19 10:27:34.833 434424 20603 2 0 1423 2025-03-19 00:44:16.176 2025-03-19 00:44:16.176 434424 21416 19 0 1424 2025-03-19 00:44:16.176 2025-03-19 00:44:16.176 434424 21501 2 0 1425 2025-03-18 19:39:44.052 2025-03-18 19:39:44.052 434424 21575 1 0 1426 2025-03-18 21:27:55.91 2025-03-18 21:27:55.91 434427 20353 1 0 1427 2025-03-18 21:27:55.91 2025-03-18 21:27:55.91 434427 21062 9 0 1428 2025-03-18 20:41:27.278 2025-03-18 20:41:27.278 434431 712 2 0 1429 2025-03-18 20:41:29.38 2025-03-18 20:41:29.38 434431 1433 19 0 1430 2025-03-18 20:39:37.732 2025-03-18 20:39:37.732 434431 4650 2 0 1431 2025-03-18 20:41:29.38 2025-03-18 20:41:29.38 434431 8380 2 0 1432 2025-03-18 20:39:37.732 2025-03-18 20:39:37.732 434431 13599 19 0 1433 2025-03-18 20:41:27.278 2025-03-18 20:41:27.278 434431 14225 19 0 1434 2025-03-20 06:38:46.567 2025-03-20 06:38:46.567 434432 3213 45 0 1435 2025-03-20 06:38:46.567 2025-03-20 06:38:46.567 434432 12245 5 0 1436 2025-03-19 00:59:02.912 2025-03-19 00:59:02.912 434434 1447 10 0 1437 2025-03-18 21:27:54.834 2025-03-18 21:27:54.834 434434 5195 9 0 1438 2025-03-18 19:39:15.148 2025-03-18 19:39:15.148 434434 6616 1 0 1439 2025-03-19 00:59:02.912 2025-03-19 00:59:02.912 434434 12188 1 0 1440 2025-03-18 19:39:15.148 2025-03-18 19:39:15.148 434434 14260 0 0 1441 2025-03-18 21:27:54.834 2025-03-18 21:27:54.834 434434 16747 1 0 1442 2025-03-18 19:39:15.354 2025-03-18 19:39:15.354 434434 20636 1 0 1443 2025-03-18 19:39:15.354 2025-03-18 19:39:15.354 434434 21501 8 0 1444 2025-03-18 18:56:58.709 2025-03-18 18:56:58.709 434435 1175 1 0 1445 2025-03-18 18:56:58.709 2025-03-18 18:56:58.709 434435 18219 9 0 1446 2025-03-18 20:14:07.225 2025-03-18 20:14:07.225 434436 730 1 0 1447 2025-03-18 20:14:07.225 2025-03-18 20:14:07.225 434436 20852 10 0 1448 2025-03-18 17:08:44.402 2025-03-18 17:08:44.402 434437 722 1 0 1449 2025-03-18 17:08:44.402 2025-03-18 17:08:44.402 434437 1488 9 0 1450 2025-03-18 20:26:41.294 2025-03-18 20:26:41.294 434437 4083 2 0 1451 2025-03-18 20:26:41.294 2025-03-18 20:26:41.294 434437 5942 19 0 1452 2025-03-18 21:27:36.163 2025-03-18 21:27:36.163 434437 12139 9 0 1453 2025-03-18 21:27:36.163 2025-03-18 21:27:36.163 434437 17209 1 0 1454 2025-03-18 18:53:53.245 2025-03-18 18:53:53.245 434438 13921 9 0 1455 2025-03-18 18:53:53.245 2025-03-18 18:53:53.245 434438 16839 1 0 1456 2025-03-19 02:08:20.393 2025-03-19 02:08:20.393 434440 616 1 0 1457 2025-03-18 21:51:10.513 2025-03-18 21:51:10.513 434440 649 19 0 1458 2025-03-18 18:24:38.429 2025-03-18 18:24:38.429 434440 650 19 0 1459 2025-03-19 00:43:18.051 2025-03-19 00:43:18.051 434440 659 19 0 1460 2025-03-18 21:51:10.513 2025-03-18 21:51:10.513 434440 675 2 0 1461 2025-03-19 08:15:48.798 2025-03-19 08:15:48.798 434440 694 9 0 1462 2025-03-19 02:08:18.928 2025-03-19 05:34:50.564 434440 703 25 0 1463 2025-03-19 00:49:56.36 2025-03-19 00:49:56.36 434440 761 0 0 1464 2025-03-19 07:10:23.436 2025-03-19 07:10:23.436 434440 766 1 0 1465 2025-03-19 02:38:39.293 2025-03-19 02:38:39.293 434440 770 9 0 1466 2025-03-18 21:26:10.239 2025-03-18 21:26:10.239 434440 794 1 0 1467 2025-03-18 17:02:17.992 2025-03-18 17:02:17.992 434440 859 19 0 1468 2025-03-19 02:08:18.698 2025-03-19 02:08:18.698 434440 910 0 0 1469 2025-03-19 02:08:19.709 2025-03-19 02:08:19.709 434440 985 1 0 1470 2025-03-19 02:38:43.307 2025-03-19 02:38:43.307 434440 1047 9 0 1471 2025-03-18 22:11:57.738 2025-03-18 22:11:57.738 434440 1094 3 0 1472 2025-03-19 02:38:40.897 2025-03-19 02:38:40.897 434440 1316 1 0 1473 2025-03-19 02:08:18.514 2025-03-19 02:08:18.514 434440 1319 2 0 1474 2025-03-18 21:14:28.775 2025-03-18 21:14:28.775 434440 1354 2 0 1475 2025-03-18 21:26:11.336 2025-03-18 21:26:11.336 434440 1697 9 0 1476 2025-03-19 02:08:18.698 2025-03-19 02:08:18.698 434440 1733 1 0 1477 2025-03-19 04:27:21.976 2025-03-19 04:27:21.976 434440 1773 27 0 1478 2025-03-18 19:38:31.94 2025-03-18 19:38:31.94 434440 1960 9 0 1479 2025-03-19 08:15:49.197 2025-03-19 08:15:49.197 434440 2151 1 0 1480 2025-03-18 23:51:03.202 2025-03-18 23:51:03.202 434440 2176 7 0 1481 2025-03-19 07:03:56.826 2025-03-19 07:03:56.826 434440 2328 810 0 1482 2025-03-19 04:59:23.365 2025-03-19 04:59:23.365 434440 2537 0 0 1483 2025-03-18 23:51:03.202 2025-03-19 02:08:19.147 434440 2640 1 0 1484 2025-03-19 04:59:24.355 2025-03-19 04:59:24.355 434440 2741 1 0 1485 2025-03-19 00:49:59.683 2025-03-19 00:49:59.683 434440 2829 0 0 1486 2025-03-19 07:15:44.221 2025-03-19 07:15:44.221 434440 2952 2 0 1487 2025-03-18 22:31:50.383 2025-03-18 22:31:50.383 434440 4043 19 0 1488 2025-03-19 08:15:48.019 2025-03-19 08:15:48.019 434440 4167 9 0 1489 2025-03-19 02:08:17.946 2025-03-19 02:08:17.946 434440 4395 0 0 1490 2025-03-19 04:27:23.167 2025-03-19 04:27:23.167 434440 4819 27 0 1491 2025-03-19 02:08:18.514 2025-03-19 02:08:18.514 434440 4973 0 0 1492 2025-03-19 07:10:23.436 2025-03-19 07:10:23.436 434440 5758 9 0 1493 2025-03-19 05:34:52.006 2025-03-19 05:34:52.006 434440 5828 24 0 1494 2025-03-19 08:15:48.798 2025-03-19 08:15:48.798 434440 5865 1 0 1495 2025-03-19 05:34:51.35 2025-03-19 05:34:51.35 434440 6360 24 0 1496 2025-03-19 02:08:18.928 2025-03-19 02:08:18.928 434440 6382 0 0 1497 2025-03-19 00:49:57.021 2025-03-19 00:49:57.021 434440 6578 1 0 1498 2025-03-19 02:24:40.884 2025-03-19 02:24:40.884 434440 7389 10 0 1499 2025-03-19 05:34:50.956 2025-03-19 05:34:50.956 434440 7869 24 0 1500 2025-03-18 22:20:55.366 2025-03-18 22:20:55.366 434440 8469 45 0 1501 2025-03-19 02:24:40.884 2025-03-19 02:24:40.884 434440 8472 90 0 1502 2025-03-18 21:51:10.045 2025-03-18 21:51:10.045 434440 8684 19 0 1503 2025-03-19 05:34:50.75 2025-03-19 05:34:50.75 434440 8726 24 0 1504 2025-03-19 05:34:51.35 2025-03-19 05:34:51.35 434440 8989 3 0 1505 2025-03-18 17:26:33.793 2025-03-18 17:26:33.793 434440 9348 10 0 1506 2025-03-19 03:46:45.956 2025-03-19 03:46:45.956 434440 9450 50 0 1507 2025-03-19 05:34:50.564 2025-03-19 05:34:50.564 434440 9476 3 0 1508 2025-03-18 22:20:55.366 2025-03-18 22:20:55.366 434440 9982 405 0 1509 2025-03-19 04:59:23.365 2025-03-19 04:59:23.365 434440 9985 1 0 1510 2025-03-19 05:34:51.153 2025-03-19 05:34:51.153 434440 10944 3 0 1511 2025-03-18 22:20:53.973 2025-03-18 22:20:53.973 434440 11158 45 0 1512 2025-03-19 04:49:38.603 2025-03-19 04:49:38.603 434440 11240 19 0 1513 2025-03-19 04:49:38.603 2025-03-19 04:49:38.603 434440 11328 2 0 1514 2025-03-19 02:08:19.147 2025-03-19 02:08:19.147 434440 11515 1 0 1515 2025-03-18 17:26:33.793 2025-03-18 17:26:33.793 434440 11590 90 0 1516 2025-03-19 05:34:50.367 2025-03-19 05:34:50.367 434440 11714 24 0 1517 2025-03-18 22:20:53.973 2025-03-18 22:20:53.973 434440 11999 5 0 1518 2025-03-19 00:49:57.021 2025-03-19 00:49:57.021 434440 12057 0 0 1519 2025-03-18 21:14:28.775 2025-03-18 21:14:28.775 434440 12277 19 0 1520 2025-03-19 04:59:23.871 2025-03-19 04:59:23.871 434440 12422 1 0 1521 2025-03-18 19:38:30.642 2025-03-18 19:38:30.642 434440 12721 1 0 1522 2025-03-19 05:34:50.956 2025-03-19 05:34:50.956 434440 13177 3 0 1523 2025-03-19 00:49:59.201 2025-03-19 00:49:59.201 434440 13365 1 0 1524 2025-03-19 00:49:57.511 2025-03-19 00:49:57.511 434440 13903 0 0 1525 2025-03-19 00:49:59.201 2025-03-19 00:49:59.201 434440 14260 0 0 1526 2025-03-19 04:59:24.705 2025-03-19 04:59:24.705 434440 14385 1 0 1527 2025-03-19 05:34:50.75 2025-03-19 05:34:50.75 434440 14651 3 0 1528 2025-03-19 08:15:49.559 2025-03-19 08:15:49.559 434440 14663 9 0 1529 2025-03-18 19:53:45.559 2025-03-18 19:53:45.559 434440 14785 10 0 1530 2025-03-19 01:23:55.918 2025-03-19 01:23:55.918 434440 14990 1 0 1531 2025-03-19 00:49:58.741 2025-03-19 00:49:58.741 434440 15160 1 0 1532 2025-03-19 04:59:24.705 2025-03-19 04:59:24.705 434440 15243 0 0 1533 2025-03-19 00:50:00.158 2025-03-19 00:50:00.158 434440 15488 0 0 1534 2025-03-19 08:15:48.401 2025-03-19 08:15:48.401 434440 15549 9 0 1535 2025-03-19 00:43:18.051 2025-03-19 00:43:18.051 434440 15728 2 0 1536 2025-03-19 00:49:58.118 2025-03-19 00:49:58.118 434440 16276 0 0 1537 2025-03-18 21:18:31.519 2025-03-18 21:18:31.519 434440 16406 9 0 1538 2025-03-19 02:38:39.293 2025-03-19 02:38:39.293 434440 16948 1 0 1539 2025-03-18 21:26:11.336 2025-03-18 21:26:11.336 434440 16970 1 0 1540 2025-03-18 19:38:30.288 2025-03-18 19:38:30.288 434440 17014 1 0 1541 2025-03-19 02:38:40.897 2025-03-19 02:38:40.897 434440 17046 9 0 1542 2025-03-18 19:38:31.94 2025-03-18 19:38:31.94 434440 17082 81 0 1543 2025-03-19 00:49:57.511 2025-03-19 00:49:57.511 434440 17183 1 0 1544 2025-03-19 04:59:23.871 2025-03-19 04:59:23.871 434440 17321 0 0 1545 2025-03-19 00:49:56.36 2025-03-19 00:49:56.36 434440 17331 1 0 1546 2025-03-19 02:08:20.393 2025-03-19 02:08:20.393 434440 17392 0 0 1547 2025-03-19 07:15:44.221 2025-03-19 07:15:44.221 434440 17494 19 0 1548 2025-03-18 21:51:10.045 2025-03-18 21:51:10.045 434440 17526 2 0 1549 2025-03-18 21:26:10.239 2025-03-18 21:26:10.239 434440 17696 9 0 1550 2025-03-19 08:15:49.559 2025-03-19 08:15:49.559 434440 17741 1 0 1551 2025-03-19 02:38:41.916 2025-03-19 02:38:41.916 434440 18313 9 0 1552 2025-03-18 17:02:17.992 2025-03-18 17:02:17.992 434440 18528 2 0 1553 2025-03-19 00:49:58.741 2025-03-19 00:49:58.741 434440 18735 0 0 1554 2025-03-19 07:03:56.826 2025-03-19 07:03:56.826 434440 18923 90 0 1555 2025-03-19 08:15:49.197 2025-03-19 08:15:49.197 434440 19071 9 0 1556 2025-03-18 21:26:10.905 2025-03-18 21:26:10.905 434440 19777 1 0 1557 2025-03-19 04:27:23.167 2025-03-19 04:27:23.167 434440 19806 243 0 1558 2025-03-18 21:26:10.905 2025-03-18 21:26:10.905 434440 19842 9 0 1559 2025-03-19 02:38:41.426 2025-03-19 02:38:41.426 434440 19905 1 0 1560 2025-03-19 05:34:50.367 2025-03-19 05:34:50.367 434440 19943 3 0 1561 2025-03-18 22:31:50.383 2025-03-18 22:31:50.383 434440 20152 2 0 1562 2025-03-18 21:18:31.519 2025-03-18 21:18:31.519 434440 20198 1 0 1563 2025-03-18 20:15:37.189 2025-03-18 20:15:37.189 434440 20606 230 0 1564 2025-03-19 03:46:45.956 2025-03-19 03:46:45.956 434440 20613 450 0 1565 2025-03-19 00:49:59.683 2025-03-19 00:49:59.683 434440 20616 1 0 1566 2025-03-19 02:38:41.426 2025-03-19 02:38:41.426 434440 20663 9 0 1567 2025-03-18 19:53:45.559 2025-03-18 19:53:45.559 434440 20669 90 0 1568 2025-03-19 00:50:00.158 2025-03-19 00:50:00.158 434440 20680 1 0 1569 2025-03-19 05:34:52.006 2025-03-19 05:34:52.006 434440 20840 3 0 1570 2025-03-18 19:38:30.288 2025-03-18 19:38:30.288 434440 20881 0 0 1571 2025-03-19 04:59:24.355 2025-03-19 04:59:24.355 434440 20993 0 0 1572 2025-03-19 08:15:48.401 2025-03-19 08:15:48.401 434440 21041 1 0 1573 2025-03-18 20:15:37.189 2025-03-18 20:15:37.189 434440 21090 26 0 1574 2025-03-19 02:08:17.946 2025-03-19 02:08:17.946 434440 21140 1 0 1575 2025-03-18 19:38:30.642 2025-03-18 19:38:30.642 434440 21180 8 0 1576 2025-03-19 00:49:58.118 2025-03-19 00:49:58.118 434440 21216 1 0 1577 2025-03-19 02:38:43.307 2025-03-19 02:38:43.307 434440 21228 1 0 1578 2025-03-19 05:34:51.153 2025-03-19 05:34:51.153 434440 21291 24 0 1579 2025-03-19 02:08:19.709 2025-03-19 02:08:19.709 434440 21369 0 0 1580 2025-03-18 18:24:38.429 2025-03-18 18:24:38.429 434440 21389 2 0 1581 2025-03-19 02:38:41.916 2025-03-19 02:38:41.916 434440 21401 1 0 1582 2025-03-19 04:59:25.056 2025-03-19 08:15:48.019 434440 21406 2 0 1583 2025-03-19 04:27:21.976 2025-03-19 04:27:21.976 434440 21599 3 0 1584 2025-03-19 01:23:55.918 2025-03-19 01:23:55.918 434440 21620 0 0 1585 2025-03-19 04:59:25.056 2025-03-19 04:59:25.056 434440 21804 0 0 1586 2025-03-18 22:11:57.738 2025-03-18 22:11:57.738 434440 21829 27 0 1587 2025-03-18 16:25:46.971 2025-03-18 16:25:46.971 434441 913 4 0 1588 2025-03-18 19:09:18.923 2025-03-18 19:09:18.923 434441 1425 9 0 1589 2025-03-18 18:04:47.103 2025-03-18 18:04:47.103 434441 1447 251 0 1590 2025-03-18 19:09:18.923 2025-03-18 19:09:18.923 434441 2519 1 0 1591 2025-03-18 21:26:34.49 2025-03-18 21:26:34.49 434441 3518 9 0 1592 2025-03-18 16:25:46.971 2025-03-18 16:25:46.971 434441 6688 36 0 1593 2025-03-18 16:37:55.223 2025-03-18 16:37:55.223 434441 7119 0 1000 1594 2025-03-18 21:26:34.49 2025-03-18 21:26:34.49 434441 12334 1 0 1595 2025-03-18 18:04:46.478 2025-03-18 18:04:46.478 434441 17522 3 0 1596 2025-03-18 18:04:46.478 2025-03-18 18:04:46.478 434441 21281 28 0 1597 2025-03-18 18:04:47.103 2025-03-18 18:04:47.103 434441 21666 28 0 1598 2025-03-18 18:58:01.362 2025-03-18 18:58:01.362 434442 756 1 0 1599 2025-03-18 18:58:01.362 2025-03-18 18:58:01.362 434442 16542 9 0 1600 2025-03-18 18:58:12.092 2025-03-18 18:58:12.092 434444 9985 1 0 1601 2025-03-18 18:58:12.092 2025-03-18 18:58:12.092 434444 14663 9 0 1602 2025-03-19 02:27:33.91 2025-03-19 02:27:33.91 434445 7983 9 0 1603 2025-03-18 21:27:54.23 2025-03-18 21:27:54.23 434445 11670 1 0 1604 2025-03-19 02:27:33.91 2025-03-19 02:27:33.91 434445 19689 1 0 1605 2025-03-18 21:27:54.23 2025-03-18 21:27:54.23 434445 21131 9 0 1606 2025-03-18 21:27:53.276 2025-03-18 21:27:53.276 434447 10862 9 0 1607 2025-03-18 21:27:53.276 2025-03-18 21:27:53.276 434447 20117 1 0 1608 2025-03-18 19:10:29.41 2025-03-18 19:10:29.41 434452 895 1 0 1609 2025-03-18 19:10:29.41 2025-03-18 19:10:29.41 434452 21262 9 0 1610 2025-03-18 17:17:41.751 2025-03-18 17:17:41.751 434456 632 1 0 1611 2025-03-18 17:17:41.751 2025-03-18 17:17:41.751 434456 21275 9 0 1612 2025-03-19 02:25:35.65 2025-03-19 02:25:35.65 434457 965 36 0 1613 2025-03-19 02:25:35.65 2025-03-19 02:25:35.65 434457 2204 4 0 1614 2025-03-18 22:12:47.506 2025-03-18 22:12:47.506 434457 2609 19 0 1615 2025-03-18 20:21:17.978 2025-03-18 20:21:17.978 434457 9537 2 0 1616 2025-03-18 20:21:17.978 2025-03-18 20:21:17.978 434457 12721 19 0 1617 2025-03-18 21:27:52.807 2025-03-18 21:27:52.807 434457 18265 9 0 1618 2025-03-18 21:27:52.807 2025-03-18 21:27:52.807 434457 20291 1 0 1619 2025-03-18 22:12:47.506 2025-03-18 22:12:47.506 434457 21480 2 0 1620 2025-03-18 16:19:21.233 2025-03-18 16:19:21.233 434459 4166 15 0 1621 2025-03-18 16:19:21.233 2025-03-18 16:19:21.233 434459 8870 2 0 1622 2025-03-18 21:11:04.613 2025-03-18 21:11:04.613 434460 980 9 0 1623 2025-03-18 21:11:04.613 2025-03-18 21:11:04.613 434460 2774 1 0 1624 2025-03-18 16:21:41.925 2025-03-18 16:21:41.925 434460 15732 28 0 1625 2025-03-18 16:21:41.925 2025-03-18 16:21:41.925 434460 21398 3 0 1626 2025-03-18 16:58:57.065 2025-03-18 16:58:57.065 434461 14213 9 0 1627 2025-03-18 16:58:57.065 2025-03-18 16:58:57.065 434461 17221 1 0 1628 2025-03-18 21:27:50.599 2025-03-18 21:27:50.599 434462 977 9 0 1629 2025-03-18 21:27:50.599 2025-03-18 21:27:50.599 434462 1647 1 0 1630 2025-03-18 16:20:14.847 2025-03-18 16:20:14.847 434462 10493 100 0 1631 2025-03-18 16:24:06.695 2025-03-18 16:24:06.695 434463 675 1 0 1632 2025-03-18 16:29:01.677 2025-03-18 16:29:01.677 434463 4538 8 0 1633 2025-03-18 16:29:01.677 2025-03-18 16:29:01.677 434463 16809 69 0 1634 2025-03-18 16:26:28.547 2025-03-18 16:26:28.547 434464 21712 1 0 1635 2025-03-18 16:38:06.85 2025-03-18 16:38:06.85 434465 638 0 0 1636 2025-03-18 16:38:06.999 2025-03-18 16:38:06.999 434465 656 1 0 1637 2025-03-18 16:38:06.85 2025-03-18 16:38:06.85 434465 1046 1 0 1638 2025-03-18 16:38:06.999 2025-03-18 16:38:06.999 434465 3979 8 0 1639 2025-03-18 21:03:10.666 2025-03-18 21:03:10.666 434465 5590 3 0 1640 2025-03-19 02:33:05.391 2025-03-19 02:33:05.391 434465 7659 1 0 1641 2025-03-18 21:03:11.097 2025-03-18 21:03:11.097 434465 7983 3 0 1642 2025-03-18 21:27:50.258 2025-03-18 21:27:50.258 434465 8535 1 0 1643 2025-03-18 21:03:10.904 2025-03-18 21:03:10.904 434465 9421 30 0 1644 2025-03-18 20:12:37.018 2025-03-18 20:12:37.018 434465 10611 0 0 1645 2025-03-18 18:01:44.735 2025-03-18 18:01:44.735 434465 16660 19 0 1646 2025-03-18 16:27:57.581 2025-03-18 16:27:57.581 434465 16847 0 0 1647 2025-03-18 16:27:57.606 2025-03-18 16:27:57.606 434465 17392 10 0 1648 2025-03-18 16:27:57.606 2025-03-18 16:27:57.606 434465 17693 90 0 1649 2025-03-18 21:03:26.215 2025-03-18 21:03:26.215 434465 18017 0 0 1650 2025-03-18 21:03:22.235 2025-03-18 21:03:22.235 434465 18528 30 0 1651 2025-03-18 18:01:44.735 2025-03-18 18:01:44.735 434465 19471 2 0 1652 2025-03-18 16:27:16.573 2025-03-18 16:27:16.573 434465 20198 210 0 1653 2025-03-18 21:03:21.477 2025-03-18 21:03:21.477 434465 20614 3 0 1654 2025-03-18 21:03:11.097 2025-03-18 21:03:11.097 434465 20812 30 0 1655 2025-03-18 21:03:10.666 2025-03-18 21:03:10.666 434465 20849 30 0 1656 2025-03-18 21:03:22.235 2025-03-18 21:03:22.235 434465 20858 3 0 1657 2025-03-18 21:03:10.904 2025-03-18 21:03:10.904 434465 21048 3 0 1658 2025-03-18 20:12:37.018 2025-03-18 20:12:37.018 434465 21061 1 0 1659 2025-03-18 21:03:26.215 2025-03-18 21:03:26.215 434465 21249 2 0 1660 2025-03-19 02:33:05.391 2025-03-19 02:33:05.391 434465 21373 10 0 1661 2025-03-18 21:27:50.258 2025-03-18 21:27:50.258 434465 21430 9 0 1662 2025-03-18 21:03:21.477 2025-03-18 21:03:21.477 434465 21832 30 0 1663 2025-03-18 16:29:11.905 2025-03-18 16:29:11.905 434466 4973 5 0 1664 2025-03-18 16:29:11.571 2025-03-18 16:29:11.571 434466 10096 21 0 1665 2025-03-18 16:29:11.905 2025-03-18 16:29:11.905 434466 13133 41 0 1666 2025-03-18 16:29:12.07 2025-03-18 16:29:12.07 434466 16684 21 0 1667 2025-03-18 16:29:12.07 2025-03-18 16:29:12.07 434466 20840 2 0 1668 2025-03-18 16:29:11.571 2025-03-18 16:29:11.571 434466 21578 2 0 1669 2025-03-18 16:28:57.871 2025-03-18 16:28:57.871 434466 21829 1 0 1670 2025-03-18 16:40:15.485 2025-03-18 16:40:15.485 434467 3396 0 0 1671 2025-03-18 16:39:00.988 2025-03-18 16:39:00.988 434467 5590 0 0 1672 2025-03-18 16:37:49.287 2025-03-18 16:37:49.287 434467 7185 1 0 1673 2025-03-18 16:57:38.786 2025-03-18 16:57:38.786 434468 12562 0 100 1674 2025-03-18 21:26:33.577 2025-03-18 21:26:33.577 434469 652 1 0 1675 2025-03-18 19:36:44.03 2025-03-18 19:36:44.03 434469 713 9 0 1676 2025-03-18 18:02:16.333 2025-03-18 18:02:16.333 434469 1447 2 0 1677 2025-03-18 19:36:44.246 2025-03-18 19:36:44.246 434469 1571 1 0 1678 2025-03-18 21:26:33.577 2025-03-18 21:26:33.577 434469 6160 9 0 1679 2025-03-18 18:24:33.656 2025-03-18 18:24:33.656 434469 9347 19 0 1680 2025-03-18 17:29:21.547 2025-03-18 17:29:21.547 434469 9353 81 0 1681 2025-03-18 19:36:44.246 2025-03-18 19:36:44.246 434469 9438 9 0 1682 2025-03-18 16:45:41.914 2025-03-18 16:45:41.914 434469 11866 98 0 1683 2025-03-19 03:44:10.293 2025-03-19 03:44:10.293 434469 14122 9 0 1684 2025-03-20 06:31:22.662 2025-03-20 06:31:22.662 434469 15045 7 0 1685 2025-03-18 17:29:21.547 2025-03-18 17:29:21.547 434469 16301 9 0 1686 2025-03-18 19:36:44.03 2025-03-18 19:36:44.03 434469 16680 1 0 1687 2025-03-18 16:58:16.675 2025-03-18 16:58:16.675 434469 16950 1 0 1688 2025-03-18 19:36:43.188 2025-03-18 19:36:43.188 434469 17798 1 0 1689 2025-03-18 16:58:16.473 2025-03-18 16:58:16.473 434469 18174 0 0 1690 2025-03-19 03:44:10.293 2025-03-19 03:44:10.293 434469 18409 1 0 1691 2025-03-18 19:36:43.364 2025-03-18 19:36:43.364 434469 18601 9 0 1692 2025-03-18 19:36:43.188 2025-03-18 19:36:43.188 434469 19018 9 0 1693 2025-03-18 18:24:33.656 2025-03-18 18:24:33.656 434469 19087 2 0 1694 2025-03-20 06:31:22.662 2025-03-20 06:31:22.662 434469 19531 64 0 1695 2025-03-18 16:58:16.473 2025-03-18 16:58:16.473 434469 20599 1 0 1696 2025-03-18 19:36:43.364 2025-03-18 19:36:43.364 434469 20619 1 0 1697 2025-03-18 16:58:16.675 2025-03-18 16:58:16.675 434469 20816 8 0 1698 2025-03-18 18:02:16.333 2025-03-18 18:02:16.333 434469 21072 19 0 1699 2025-03-18 16:50:45.879 2025-03-18 16:50:45.879 434470 1638 1 0 1700 2025-03-18 16:55:36.469 2025-03-18 16:55:36.469 434471 985 0 0 1701 2025-03-18 20:14:26.115 2025-03-18 20:14:26.115 434471 2329 1 0 1702 2025-03-18 16:53:39.521 2025-03-18 16:53:39.521 434471 14385 1 0 1703 2025-03-18 20:14:26.115 2025-03-18 20:14:26.115 434471 15728 10 0 1704 2025-03-18 16:57:20.582 2025-03-18 16:57:20.582 434472 4654 0 0 1705 2025-03-18 16:57:20.582 2025-03-18 16:57:20.582 434472 7979 1 0 1706 2025-03-18 16:57:20.78 2025-03-18 16:57:20.78 434472 10944 1 0 1707 2025-03-18 16:55:43.13 2025-03-18 16:55:43.13 434472 13544 100 0 1708 2025-03-18 16:57:20.78 2025-03-18 16:57:20.78 434472 15549 8 0 1709 2025-03-18 16:57:21.393 2025-03-18 16:57:21.393 434472 16456 9 0 1710 2025-03-18 17:17:22.138 2025-03-18 17:17:22.138 434472 19996 9 0 1711 2025-03-18 17:17:22.138 2025-03-18 17:17:22.138 434472 20602 1 0 1712 2025-03-18 16:57:21.393 2025-03-18 16:57:21.393 434472 21140 81 0 1713 2025-03-18 16:57:11.528 2025-03-18 16:57:11.528 434473 20751 1 0 1714 2025-03-18 17:04:45.635 2025-03-18 17:04:45.635 434474 9421 1 0 1715 2025-03-18 17:59:01.271 2025-03-18 17:59:01.271 434474 20180 3 0 1716 2025-03-18 17:59:01.271 2025-03-18 17:59:01.271 434474 21254 28 0 1717 2025-03-18 17:05:01.333 2025-03-18 17:05:01.333 434475 827 1 0 1718 2025-03-18 17:27:00.26 2025-03-18 17:27:00.26 434476 16769 4 0 1719 2025-03-18 17:27:00.26 2025-03-18 17:27:00.26 434476 17533 0 0 1720 2025-03-19 02:31:19.744 2025-03-19 02:31:19.744 434477 685 1 0 1721 2025-03-19 02:31:19.744 2025-03-19 02:31:19.744 434477 17953 10 0 1722 2025-03-18 17:09:16.594 2025-03-18 17:09:16.594 434477 21040 1 0 1723 2025-03-18 17:12:57.085 2025-03-18 17:12:57.085 434478 21356 1 0 1724 2025-03-18 18:46:52.699 2025-03-18 18:46:52.699 434479 672 9 0 1725 2025-03-18 18:46:51.529 2025-03-18 18:46:51.529 434479 876 1 0 1726 2025-03-18 18:46:52.699 2025-03-18 18:46:52.699 434479 1576 1 0 1727 2025-03-18 21:27:35.063 2025-03-18 21:27:35.063 434479 1712 9 0 1728 2025-03-18 17:13:35.978 2025-03-18 17:13:35.978 434479 1803 1 0 1729 2025-03-18 18:46:51.786 2025-03-18 18:46:51.786 434479 4035 1 0 1730 2025-03-18 18:46:53.418 2025-03-18 18:46:53.418 434479 4763 1 0 1731 2025-03-18 18:46:53.222 2025-03-18 18:46:53.222 434479 4776 9 0 1732 2025-03-18 18:46:51.529 2025-03-18 18:46:51.529 434479 4798 9 0 1733 2025-03-18 20:26:37.65 2025-03-18 20:26:37.65 434479 8541 2 0 1734 2025-03-18 20:26:37.65 2025-03-18 20:26:37.65 434479 9336 19 0 1735 2025-03-18 18:46:53.418 2025-03-18 18:46:53.418 434479 9695 9 0 1736 2025-03-18 18:46:53.222 2025-03-18 18:46:53.222 434479 10096 1 0 1737 2025-03-18 18:46:52.493 2025-03-18 18:46:52.493 434479 11515 1 0 1738 2025-03-18 21:27:35.063 2025-03-18 21:27:35.063 434479 12278 1 0 1739 2025-03-18 18:46:51.786 2025-03-18 18:46:51.786 434479 19531 9 0 1740 2025-03-18 18:46:52.493 2025-03-18 18:46:52.493 434479 20094 9 0 1741 2025-03-18 18:36:07.746 2025-03-18 18:36:07.746 434480 4027 2 0 1742 2025-03-18 18:36:07.746 2025-03-18 18:36:07.746 434480 8004 19 0 1743 2025-03-18 17:22:45.705 2025-03-18 17:22:45.705 434480 21012 0 0 1744 2025-03-18 17:22:01.277 2025-03-18 17:22:01.277 434480 21451 1 0 1745 2025-03-18 21:01:44.975 2025-03-18 21:01:44.975 434481 692 3 0 1746 2025-03-18 21:01:44.975 2025-03-18 21:01:44.975 434481 695 30 0 1747 2025-03-18 21:27:49.254 2025-03-18 21:27:49.254 434481 1092 9 0 1748 2025-03-18 21:01:45.733 2025-03-18 21:01:45.733 434481 1122 3 0 1749 2025-03-18 17:22:59.824 2025-03-18 17:22:59.824 434481 2593 5 0 1750 2025-03-18 17:30:27.1 2025-03-18 17:30:27.1 434481 3304 0 0 1751 2025-03-18 21:01:44.545 2025-03-18 21:01:44.545 434481 4487 30 0 1752 2025-03-18 21:01:49.809 2025-03-18 21:01:49.809 434481 5661 1 0 1753 2025-03-18 21:55:51.599 2025-03-18 21:55:51.599 434481 7916 2 0 1754 2025-03-18 21:01:43.799 2025-03-18 21:01:43.799 434481 7960 3 0 1755 2025-03-18 21:55:51.599 2025-03-18 21:55:51.599 434481 8004 19 0 1756 2025-03-18 21:01:44.545 2025-03-18 21:01:44.545 434481 9365 3 0 1757 2025-03-18 21:01:43.562 2025-03-18 21:01:43.562 434481 9906 3 0 1758 2025-03-18 21:27:49.254 2025-03-18 21:27:49.254 434481 10934 1 0 1759 2025-03-18 21:01:45.733 2025-03-18 21:01:45.733 434481 12169 30 0 1760 2025-03-18 17:52:00.621 2025-03-18 17:52:00.621 434481 13759 19 0 1761 2025-03-18 21:01:43.799 2025-03-18 21:01:43.799 434481 13921 30 0 1762 2025-03-18 21:01:43.562 2025-03-18 21:01:43.562 434481 16424 30 0 1763 2025-03-18 17:52:00.621 2025-03-18 17:52:00.621 434481 17682 2 0 1764 2025-03-18 21:01:49.809 2025-03-18 21:01:49.809 434481 21271 12 0 1765 2025-03-18 17:45:42.799 2025-03-18 17:45:42.799 434482 8985 2 0 1766 2025-03-18 21:19:28.508 2025-03-18 21:19:28.508 434482 15732 9 0 1767 2025-03-18 17:26:31.955 2025-03-18 17:26:31.955 434482 18351 1 0 1768 2025-03-18 17:45:42.799 2025-03-18 17:45:42.799 434482 20563 19 0 1769 2025-03-18 21:19:28.508 2025-03-18 21:19:28.508 434482 20897 1 0 1770 2025-03-18 21:27:48.625 2025-03-18 21:27:48.625 434483 1209 9 0 1771 2025-03-18 21:27:48.625 2025-03-18 21:27:48.625 434483 1631 1 0 1772 2025-03-18 17:27:36.191 2025-03-18 17:27:36.191 434483 17041 210 0 1773 2025-03-18 19:14:35.134 2025-03-18 19:14:35.134 434484 836 9 0 1774 2025-03-19 04:45:14.105 2025-03-19 04:45:14.105 434484 1970 1 0 1775 2025-03-19 04:45:14.105 2025-03-19 04:45:14.105 434484 5961 12 0 1776 2025-03-18 19:14:35.134 2025-03-18 19:14:35.134 434484 12959 1 0 1777 2025-03-18 17:29:17.123 2025-03-18 17:29:17.123 434484 14688 1 0 1778 2025-03-18 21:27:48.915 2025-03-18 21:27:48.915 434485 712 1 0 1779 2025-03-18 17:42:01.905 2025-03-18 17:42:01.905 434485 717 36 0 1780 2025-03-18 21:27:48.915 2025-03-18 21:27:48.915 434485 746 9 0 1781 2025-03-18 19:36:55.973 2025-03-18 19:36:55.973 434485 822 9 0 1782 2025-03-18 17:51:54.673 2025-03-18 17:51:54.673 434485 919 19 0 1783 2025-03-18 17:42:36.852 2025-03-18 17:42:36.852 434485 4062 36 0 1784 2025-03-18 17:42:36.852 2025-03-18 17:42:36.852 434485 5444 4 0 1785 2025-03-18 17:51:54.673 2025-03-18 17:51:54.673 434485 5703 2 0 1786 2025-03-18 20:17:49.022 2025-03-18 20:17:49.022 434485 5759 10 0 1787 2025-03-18 19:36:54.902 2025-03-18 19:36:54.902 434485 8726 0 0 1788 2025-03-18 17:39:40.021 2025-03-18 17:39:40.021 434485 9167 10 0 1789 2025-03-18 19:36:55.149 2025-03-18 19:36:55.149 434485 10469 1 0 1790 2025-03-18 19:36:55.149 2025-03-18 19:36:55.149 434485 11819 8 0 1791 2025-03-18 20:19:14.738 2025-03-18 20:19:14.738 434485 12946 1 0 1792 2025-03-18 20:45:03.808 2025-03-18 20:45:03.808 434485 13174 2 0 1793 2025-03-18 20:17:49.022 2025-03-18 20:17:49.022 434485 13378 1 0 1794 2025-03-18 18:47:48.167 2025-03-18 18:47:48.167 434485 14939 19 0 1795 2025-03-18 20:19:14.738 2025-03-18 20:19:14.738 434485 16154 0 0 1796 2025-03-19 14:05:16.552 2025-03-19 14:05:16.552 434485 16177 19 0 1797 2025-03-18 19:36:54.902 2025-03-18 19:36:54.902 434485 16387 1 0 1798 2025-03-18 22:31:56.09 2025-03-18 22:31:56.09 434485 16717 2 0 1799 2025-03-19 14:05:16.552 2025-03-19 14:05:16.552 434485 18430 2 0 1800 2025-03-18 22:31:56.09 2025-03-18 22:31:56.09 434485 18529 19 0 1801 2025-03-18 19:36:55.973 2025-03-18 19:36:55.973 434485 20201 81 0 1802 2025-03-18 17:42:01.905 2025-03-18 17:42:01.905 434485 20337 4 0 1803 2025-03-18 20:45:03.808 2025-03-18 20:45:03.808 434485 21408 19 0 1804 2025-03-18 18:47:48.167 2025-03-18 18:47:48.167 434485 21666 2 0 1805 2025-03-18 23:46:00.334 2025-03-18 23:46:00.334 434486 7674 1 0 1806 2025-03-18 23:46:00.334 2025-03-18 23:46:00.334 434486 17172 7 0 1807 2025-03-18 17:42:23.23 2025-03-18 17:42:23.23 434486 20706 1 0 1808 2025-03-18 21:19:35.969 2025-03-18 21:19:35.969 434487 763 1 0 1809 2025-03-18 21:19:35.969 2025-03-18 21:19:35.969 434487 2437 9 0 1810 2025-03-18 17:46:58.663 2025-03-18 17:46:58.663 434487 15526 1 0 1811 2025-03-18 17:53:39.552 2025-03-18 17:53:39.552 434488 663 10 0 1812 2025-03-19 00:34:07.664 2025-03-19 00:34:07.664 434488 720 7 0 1813 2025-03-18 20:44:59.023 2025-03-18 20:44:59.023 434488 756 19 0 1814 2025-03-18 19:18:34.219 2025-03-18 19:18:34.219 434488 763 8 0 1815 2025-03-19 00:31:04.7 2025-03-19 00:31:04.7 434488 1652 4 0 1816 2025-03-18 19:32:56.457 2025-03-18 19:32:56.457 434488 1717 1 0 1817 2025-03-19 05:52:00.285 2025-03-19 05:52:00.285 434488 1740 3 0 1818 2025-03-19 00:04:17.036 2025-03-19 00:04:17.036 434488 1784 5 0 1819 2025-03-19 00:43:15.728 2025-03-19 00:43:15.728 434488 1801 19 0 1820 2025-03-18 20:14:09.265 2025-03-18 20:14:09.265 434488 2529 7 0 1821 2025-03-19 01:29:42.505 2025-03-19 01:29:42.505 434488 2640 0 0 1822 2025-03-19 05:52:00.285 2025-03-19 05:52:00.285 434488 2711 30 0 1823 2025-03-18 21:26:05.369 2025-03-18 21:26:05.369 434488 2757 9 0 1824 2025-03-19 02:34:35.185 2025-03-19 02:34:35.185 434488 5308 10 0 1825 2025-03-19 00:04:17.036 2025-03-19 00:04:17.036 434488 5708 45 0 1826 2025-03-18 22:31:52.967 2025-03-18 22:31:52.967 434488 6148 2 0 1827 2025-03-18 19:32:56.242 2025-03-18 19:32:56.242 434488 7760 1 0 1828 2025-03-18 19:18:34.188 2025-03-18 19:18:34.188 434488 7847 75 0 1829 2025-03-19 02:55:15.137 2025-03-19 02:55:15.137 434488 9355 1 0 1830 2025-03-18 22:31:52.967 2025-03-18 22:31:52.967 434488 10302 19 0 1831 2025-03-18 19:32:56.242 2025-03-18 19:32:56.242 434488 10342 0 0 1832 2025-03-18 22:54:35.559 2025-03-18 22:54:35.559 434488 10611 19 0 1833 2025-03-18 20:14:08.394 2025-03-18 20:14:08.394 434488 11038 64 0 1834 2025-03-19 04:02:59.343 2025-03-19 04:02:59.343 434488 14385 38 0 1835 2025-03-18 20:14:08.83 2025-03-18 20:14:08.83 434488 15192 7 0 1836 2025-03-18 19:32:56.457 2025-03-18 19:32:56.457 434488 15196 8 0 1837 2025-03-18 20:14:08.394 2025-03-18 20:14:08.394 434488 15326 7 0 1838 2025-03-18 22:54:35.559 2025-03-18 22:54:35.559 434488 15978 2 0 1839 2025-03-19 00:31:04.7 2025-03-19 00:31:04.7 434488 16660 36 0 1840 2025-03-19 04:02:59.343 2025-03-19 04:02:59.343 434488 16842 4 0 1841 2025-03-18 19:18:32.282 2025-03-18 19:18:32.282 434488 17011 75 0 1842 2025-03-18 19:18:34.627 2025-03-18 19:18:34.627 434488 17212 75 0 1843 2025-03-18 19:18:34.188 2025-03-18 19:18:34.188 434488 17526 8 0 1844 2025-03-18 19:18:34.627 2025-03-18 19:18:34.627 434488 17817 8 0 1845 2025-03-18 17:54:32.413 2025-03-18 17:54:32.413 434488 18449 2 0 1846 2025-03-19 00:04:14.743 2025-03-19 00:04:14.743 434488 18494 45 0 1847 2025-03-18 20:44:59.023 2025-03-18 20:44:59.023 434488 18608 2 0 1848 2025-03-18 20:17:33.564 2025-03-18 20:17:33.564 434488 19332 1 0 1849 2025-03-19 02:34:35.185 2025-03-19 02:34:35.185 434488 19346 90 0 1850 2025-03-18 20:14:08.83 2025-03-18 20:14:08.83 434488 19854 64 0 1851 2025-03-19 00:43:15.728 2025-03-19 00:43:15.728 434488 19996 2 0 1852 2025-03-18 20:14:09.265 2025-03-18 20:14:09.265 434488 20254 64 0 1853 2025-03-19 02:55:15.137 2025-03-19 02:55:15.137 434488 20479 9 0 1854 2025-03-19 00:34:07.664 2025-03-19 00:34:07.664 434488 20606 1 0 1855 2025-03-18 19:18:32.282 2025-03-18 19:18:32.282 434488 21139 8 0 1856 2025-03-18 20:17:33.564 2025-03-18 20:17:33.564 434488 21184 10 0 1857 2025-03-19 01:29:42.505 2025-03-19 01:29:42.505 434488 21207 1 0 1858 2025-03-18 17:54:32.413 2025-03-18 17:54:32.413 434488 21269 19 0 1859 2025-03-19 00:04:14.743 2025-03-19 00:04:14.743 434488 21271 5 0 1860 2025-03-18 21:26:05.369 2025-03-18 21:26:05.369 434488 21374 1 0 1861 2025-03-18 19:18:34.219 2025-03-18 19:18:34.219 434488 21810 75 0 1862 2025-03-18 18:47:38.877 2025-03-18 18:47:38.877 434489 1094 9 0 1863 2025-03-18 18:47:38.235 2025-03-18 18:47:38.235 434489 3979 8 0 1864 2025-03-18 18:47:37.991 2025-03-18 18:47:37.991 434489 7510 1 0 1865 2025-03-18 18:47:37.991 2025-03-18 18:47:37.991 434489 12368 0 0 1866 2025-03-18 17:54:15.54 2025-03-18 17:54:15.54 434489 18901 1 0 1867 2025-03-18 18:47:38.235 2025-03-18 18:47:38.235 434489 19996 1 0 1868 2025-03-18 18:47:38.877 2025-03-18 18:47:38.877 434489 21103 81 0 1869 2025-03-18 17:55:56.262 2025-03-19 02:14:53.144 434490 4167 20 0 1870 2025-03-18 19:09:05.968 2025-03-18 19:09:05.968 434490 4487 1 0 1871 2025-03-18 19:09:05.968 2025-03-18 19:09:05.968 434490 11776 9 0 1872 2025-03-19 02:14:53.144 2025-03-19 02:14:53.144 434490 21057 2 0 1873 2025-03-19 05:01:24.474 2025-03-19 05:01:24.474 434491 8535 75 0 1874 2025-03-19 05:01:24.474 2025-03-19 05:01:24.474 434491 14280 8 0 1875 2025-03-18 17:57:08.442 2025-03-18 17:57:08.442 434491 21070 1 0 1876 2025-03-18 20:46:48.727 2025-03-18 20:46:48.727 434492 9426 19 0 1877 2025-03-18 17:58:31.44 2025-03-18 17:58:31.44 434492 14152 1 0 1878 2025-03-18 20:46:48.727 2025-03-18 20:46:48.727 434492 21239 2 0 1879 2025-03-18 17:59:09.404 2025-03-18 17:59:09.404 434493 21714 1 0 1880 2025-03-18 18:00:24.45 2025-03-18 18:00:24.45 434494 12261 1 0 1881 2025-03-18 21:09:21.763 2025-03-18 21:09:21.763 434494 21303 4 0 1882 2025-03-18 21:09:21.763 2025-03-18 21:09:21.763 434494 21455 0 0 1883 2025-03-18 18:00:35.784 2025-03-18 18:00:35.784 434495 20681 1 0 1884 2025-03-18 18:02:04.895 2025-03-18 18:02:04.895 434496 19193 1 0 1885 2025-03-19 04:45:20.028 2025-03-19 04:45:20.028 434497 8459 12 0 1886 2025-03-19 04:45:20.028 2025-03-19 04:45:20.028 434497 13921 1 0 1887 2025-03-18 18:04:20.737 2025-03-18 18:04:20.737 434497 19494 1 0 1888 2025-03-18 19:18:35.334 2025-03-18 19:18:35.334 434498 627 8 0 1889 2025-03-18 22:31:47.127 2025-03-18 22:31:47.127 434498 732 19 0 1890 2025-03-18 23:36:17.089 2025-03-19 07:10:53.721 434498 828 5 0 1891 2025-03-18 23:36:17.089 2025-03-18 23:36:17.089 434498 880 45 0 1892 2025-03-19 04:33:56.779 2025-03-19 04:33:56.779 434498 899 19 0 1893 2025-03-18 19:32:44.968 2025-03-18 19:32:44.968 434498 902 8 0 1894 2025-03-18 21:25:57.953 2025-03-18 21:25:57.953 434498 974 1 0 1895 2025-03-18 21:22:42.904 2025-03-18 21:22:42.904 434498 981 18 0 1896 2025-03-18 21:22:42.904 2025-03-18 21:22:42.904 434498 1002 2 0 1897 2025-03-19 07:10:53.696 2025-03-19 07:10:53.696 434498 1051 0 0 1898 2025-03-19 00:43:09.765 2025-03-19 00:43:09.765 434498 1447 2 0 1899 2025-03-18 20:40:52.993 2025-03-18 20:40:52.993 434498 1490 19 0 1900 2025-03-18 20:17:08.167 2025-03-18 20:17:08.167 434498 1564 1 0 1901 2025-03-18 21:25:57.953 2025-03-18 21:25:57.953 434498 1720 9 0 1902 2025-03-19 05:31:18.486 2025-03-19 05:31:18.486 434498 2309 3 0 1903 2025-03-18 20:40:52.993 2025-03-18 20:40:52.993 434498 2431 2 0 1904 2025-03-19 07:10:53.696 2025-03-19 07:10:53.696 434498 2709 1 0 1905 2025-03-18 19:32:44.573 2025-03-18 19:32:44.573 434498 2775 0 0 1906 2025-03-18 19:18:31.521 2025-03-18 19:18:31.521 434498 4128 8 0 1907 2025-03-18 18:24:44.17 2025-03-18 18:24:44.17 434498 4238 19 0 1908 2025-03-18 18:10:44.698 2025-03-18 18:10:44.698 434498 4754 21 0 1909 2025-03-18 20:17:08.167 2025-03-18 20:17:08.167 434498 5527 10 0 1910 2025-03-19 07:03:17.117 2025-03-19 07:03:17.117 434498 7674 810 0 1911 2025-03-19 00:31:00.602 2025-03-19 00:31:00.602 434498 9332 4 0 1912 2025-03-19 05:31:16.054 2025-03-19 05:31:16.054 434498 10469 49 0 1913 2025-03-18 19:18:31.521 2025-03-18 19:18:31.521 434498 10638 75 0 1914 2025-03-19 07:03:17.117 2025-03-19 07:03:17.117 434498 11515 90 0 1915 2025-03-18 19:21:27.482 2025-03-18 19:21:27.482 434498 11561 190 0 1916 2025-03-19 07:10:53.721 2025-03-19 07:10:53.721 434498 11967 1 0 1917 2025-03-18 19:32:44.968 2025-03-18 19:32:44.968 434498 11996 1 0 1918 2025-03-19 05:31:17.558 2025-03-19 05:31:17.558 434498 12097 24 0 1919 2025-03-18 18:05:05.759 2025-03-18 18:05:05.759 434498 12278 100 0 1920 2025-03-19 05:31:18.486 2025-03-19 05:31:18.486 434498 12744 24 0 1921 2025-03-18 23:50:52.001 2025-03-18 23:50:52.001 434498 12808 2 0 1922 2025-03-19 12:46:52.194 2025-03-19 12:46:52.194 434498 14037 0 0 1923 2025-03-18 18:24:44.17 2025-03-18 18:24:44.17 434498 14905 2 0 1924 2025-03-18 19:18:35.334 2025-03-18 19:18:35.334 434498 16598 75 0 1925 2025-03-18 18:10:44.8 2025-03-18 18:10:44.8 434498 16638 21 0 1926 2025-03-18 23:50:52.001 2025-03-18 23:50:52.001 434498 16747 14 0 1927 2025-03-19 05:31:17.558 2025-03-19 05:31:17.558 434498 16808 3 0 1928 2025-03-19 04:33:56.779 2025-03-19 04:33:56.779 434498 17106 2 0 1929 2025-03-19 00:31:00.602 2025-03-19 00:31:00.602 434498 19459 36 0 1930 2025-03-18 19:32:44.573 2025-03-19 00:43:09.765 434498 19581 20 0 1931 2025-03-19 02:20:35.211 2025-03-19 02:20:35.211 434498 19668 90 0 1932 2025-03-18 19:32:48.658 2025-03-18 19:32:48.658 434498 20058 9 0 1933 2025-03-18 22:31:47.127 2025-03-18 22:31:47.127 434498 20187 2 0 1934 2025-03-19 05:31:19.585 2025-03-19 05:31:19.585 434498 20310 24 0 1935 2025-03-19 06:58:58.916 2025-03-19 06:58:58.916 434498 20837 9 0 1936 2025-03-18 18:10:44.8 2025-03-18 18:10:44.8 434498 21012 2 0 1937 2025-03-19 02:20:35.211 2025-03-19 02:20:35.211 434498 21148 10 0 1938 2025-03-19 05:31:19.585 2025-03-19 05:31:19.585 434498 21249 3 0 1939 2025-03-18 19:21:27.482 2025-03-18 19:21:27.482 434498 21291 21 0 1940 2025-03-19 05:31:16.054 2025-03-19 05:31:16.054 434498 21393 5 0 1941 2025-03-19 06:58:58.916 2025-03-19 06:58:58.916 434498 21412 1 0 1942 2025-03-19 12:46:52.194 2025-03-19 12:46:52.194 434498 21701 1 0 1943 2025-03-18 19:32:48.658 2025-03-18 19:32:48.658 434498 21710 81 0 1944 2025-03-18 18:10:44.698 2025-03-18 18:10:44.698 434498 21805 2 0 1945 2025-03-18 18:05:14.155 2025-03-18 18:05:14.155 434499 20687 10 0 1946 2025-03-18 21:26:20.964 2025-03-18 21:26:20.964 434500 667 9 0 1947 2025-03-18 18:10:30.117 2025-03-18 18:10:30.117 434500 913 2 0 1948 2025-03-18 18:49:31.234 2025-03-18 18:49:31.234 434500 1064 19 0 1949 2025-03-18 21:26:20.964 2025-03-18 21:26:20.964 434500 1307 1 0 1950 2025-03-18 18:10:28.946 2025-03-18 18:10:28.946 434500 1316 21 0 1951 2025-03-18 18:24:49.018 2025-03-18 18:24:49.018 434500 1480 2 0 1952 2025-03-18 18:10:29.845 2025-03-18 18:10:29.845 434500 1534 41 0 1953 2025-03-19 07:03:46.762 2025-03-19 07:03:46.762 434500 1632 19 0 1954 2025-03-18 18:10:29.784 2025-03-18 18:10:29.784 434500 1712 21 0 1955 2025-03-18 18:10:29.086 2025-03-18 18:10:29.086 434500 1751 2 0 1956 2025-03-18 18:10:29.312 2025-03-18 18:10:29.312 434500 2326 21 0 1957 2025-03-18 18:10:29.392 2025-03-18 18:10:29.392 434500 2327 2 0 1958 2025-03-18 18:10:30.117 2025-03-18 18:10:30.117 434500 3353 21 0 1959 2025-03-18 18:05:20.026 2025-03-18 18:05:20.026 434500 3506 100 0 1960 2025-03-18 20:18:58.815 2025-03-18 20:18:58.815 434500 5527 2 0 1961 2025-03-18 20:18:58.815 2025-03-18 20:18:58.815 434500 7425 19 0 1962 2025-03-18 18:10:29.845 2025-03-18 18:10:29.845 434500 7903 5 0 1963 2025-03-18 22:31:58.175 2025-03-18 22:31:58.175 434500 8535 19 0 1964 2025-03-18 18:10:29.086 2025-03-18 18:10:29.086 434500 9084 21 0 1965 2025-03-18 18:49:31.234 2025-03-18 18:49:31.234 434500 9354 2 0 1966 2025-03-18 18:08:50.72 2025-03-18 18:08:50.72 434500 9366 0 0 1967 2025-03-18 22:31:58.175 2025-03-18 22:31:58.175 434500 10302 2 0 1968 2025-03-18 18:10:29.312 2025-03-18 18:10:29.312 434500 12935 2 0 1969 2025-03-19 07:03:46.762 2025-03-19 07:03:46.762 434500 16834 2 0 1970 2025-03-18 18:10:29.392 2025-03-18 18:10:29.392 434500 17218 21 0 1971 2025-03-18 18:08:16.417 2025-03-18 18:08:16.417 434500 20642 0 0 1972 2025-03-18 18:24:49.018 2025-03-18 18:24:49.018 434500 21020 19 0 1973 2025-03-18 18:10:28.946 2025-03-18 18:10:28.946 434500 21061 2 0 1974 2025-03-18 18:10:29.784 2025-03-18 18:10:29.784 434500 21070 2 0 1975 2025-03-18 18:34:58.335 2025-03-18 18:34:58.335 434500 21771 0 26 1976 2025-03-18 19:08:54.264 2025-03-18 19:08:54.264 434501 711 9 0 1977 2025-03-18 21:07:51.708 2025-03-18 21:07:51.708 434501 732 45 0 1978 2025-03-18 19:08:54.264 2025-03-18 19:08:54.264 434501 17522 1 0 1979 2025-03-18 18:06:44.031 2025-03-18 18:06:44.031 434501 19759 1 0 1980 2025-03-18 21:07:51.708 2025-03-18 21:07:51.708 434501 21685 5 0 1981 2025-03-18 18:08:55.26 2025-03-18 18:08:55.26 434502 18731 1 0 1982 2025-03-18 18:14:30.012 2025-03-18 18:14:30.012 434503 17157 1 0 1983 2025-03-18 19:38:13.245 2025-03-18 19:38:13.245 434504 2347 1 0 1984 2025-03-18 21:27:47.147 2025-03-18 21:27:47.147 434504 7583 1 0 1985 2025-03-18 19:38:13.245 2025-03-18 19:38:13.245 434504 16124 8 0 1986 2025-03-18 19:38:13.008 2025-03-18 19:38:13.008 434504 16769 1 0 1987 2025-03-18 21:27:47.147 2025-03-18 21:27:47.147 434504 16948 9 0 1988 2025-03-18 19:38:13.008 2025-03-18 19:38:13.008 434504 20751 0 0 1989 2025-03-18 18:18:31.127 2025-03-18 18:18:31.127 434504 21026 100 0 1990 2025-03-19 05:01:22.256 2025-03-19 05:01:22.256 434505 10493 8 0 1991 2025-03-18 18:19:01.209 2025-03-18 18:19:01.209 434505 13198 1 0 1992 2025-03-19 05:01:22.256 2025-03-19 05:01:22.256 434505 21145 75 0 1993 2025-03-18 19:10:31.613 2025-03-18 19:10:31.613 434506 16939 2 0 1994 2025-03-18 19:10:31.613 2025-03-18 19:10:31.613 434506 17212 19 0 1995 2025-03-18 18:20:29.661 2025-03-18 18:20:29.661 434506 21314 1 0 1996 2025-03-18 19:10:30.831 2025-03-18 19:10:30.831 434507 4323 19 0 1997 2025-03-18 19:10:30.831 2025-03-18 19:10:30.831 434507 5557 2 0 1998 2025-03-18 18:22:16.895 2025-03-18 18:22:16.895 434507 19138 1 0 1999 2025-03-18 18:25:50.248 2025-03-18 18:25:50.248 434508 1002 1 0 2000 2025-03-18 18:41:41.636 2025-03-18 18:41:41.636 434509 620 1 0 2001 2025-03-18 18:41:28.081 2025-03-18 18:41:28.081 434509 626 1 0 2002 2025-03-18 18:41:41.828 2025-03-18 18:41:41.828 434509 746 0 0 2003 2025-03-18 18:41:49.697 2025-03-18 18:41:49.697 434509 756 1 0 2004 2025-03-18 18:41:43.3 2025-03-18 18:41:43.3 434509 761 1 0 2005 2025-03-18 18:41:29.186 2025-03-18 18:41:29.186 434509 960 0 0 2006 2025-03-18 18:41:43.709 2025-03-18 18:41:43.709 434509 1145 0 0 2007 2025-03-18 18:41:52.845 2025-03-18 18:41:52.845 434509 1162 1 0 2008 2025-03-18 18:41:30.269 2025-03-18 18:41:30.269 434509 1173 1 0 2009 2025-03-18 18:41:30.696 2025-03-18 18:41:30.696 434509 1439 1 0 2010 2025-03-18 18:41:28.709 2025-03-18 18:41:28.709 434509 1512 1 0 2011 2025-03-18 18:41:45.993 2025-03-18 18:41:45.993 434509 1647 1 0 2012 2025-03-18 18:43:21.495 2025-03-18 18:43:21.495 434509 1738 1 0 2013 2025-03-18 18:43:21.495 2025-03-18 18:43:21.495 434509 1761 0 0 2014 2025-03-18 18:41:40.196 2025-03-18 18:41:40.196 434509 1769 1 0 2015 2025-03-18 18:41:39.911 2025-03-18 18:41:39.911 434509 1784 0 0 2016 2025-03-18 18:41:42.665 2025-03-18 18:41:42.665 434509 1785 2 0 2017 2025-03-18 18:41:41.828 2025-03-18 18:41:41.828 434509 2039 1 0 2018 2025-03-18 18:41:30.947 2025-03-18 18:41:30.947 434509 2065 0 0 2019 2025-03-18 18:41:29.935 2025-03-18 18:41:29.935 434509 2361 0 0 2020 2025-03-18 18:41:39.911 2025-03-18 18:41:39.911 434509 2367 1 0 2021 2025-03-18 18:43:20.624 2025-03-18 18:43:20.624 434509 2502 0 0 2022 2025-03-18 18:41:45.468 2025-03-18 18:41:45.468 434509 2528 0 0 2023 2025-03-18 18:41:40.954 2025-03-18 18:41:40.954 434509 2640 2 0 2024 2025-03-18 18:41:29.055 2025-03-18 18:41:29.055 434509 2734 0 0 2025 2025-03-18 18:41:53.006 2025-03-18 18:41:53.006 434509 2757 0 0 2026 2025-03-18 18:41:52.187 2025-03-18 18:41:52.187 434509 2774 1 0 2027 2025-03-18 18:41:52.187 2025-03-18 18:41:52.187 434509 4238 0 0 2028 2025-03-18 18:41:52.618 2025-03-18 18:41:52.618 434509 4259 1 0 2029 2025-03-18 18:41:30.696 2025-03-18 18:41:30.696 434509 4633 0 0 2030 2025-03-18 18:41:41.274 2025-03-18 18:41:41.274 434509 5069 0 0 2031 2025-03-18 18:41:31.65 2025-03-18 18:41:31.65 434509 5175 0 0 2032 2025-03-18 18:41:45.993 2025-03-18 18:41:45.993 434509 5694 0 0 2033 2025-03-18 18:41:30.08 2025-03-18 18:41:30.08 434509 6136 0 0 2034 2025-03-18 18:41:53.242 2025-03-18 18:41:53.242 434509 6361 0 0 2035 2025-03-18 18:34:44.074 2025-03-18 18:34:44.074 434509 6430 1 0 2036 2025-03-18 18:41:45.468 2025-03-18 18:41:45.468 434509 6463 1 0 2037 2025-03-18 18:41:30.269 2025-03-18 18:41:30.269 434509 6537 0 0 2038 2025-03-18 18:41:40.196 2025-03-18 18:41:40.196 434509 7418 0 0 2039 2025-03-18 18:41:53.65 2025-03-18 18:41:53.65 434509 8080 0 0 2040 2025-03-18 18:41:44.985 2025-03-18 18:41:44.985 434509 8380 1 0 2041 2025-03-18 20:19:37.327 2025-03-18 20:19:37.327 434509 8416 19 0 2042 2025-03-18 18:41:39.869 2025-03-18 18:41:39.869 434509 8729 0 0 2043 2025-03-18 18:41:41.274 2025-03-18 18:41:41.274 434509 9167 1 0 2044 2025-03-18 18:41:53.449 2025-03-18 18:41:53.449 434509 9336 0 0 2045 2025-03-18 18:41:29.055 2025-03-18 18:41:29.055 434509 9496 1 0 2046 2025-03-18 18:41:32.789 2025-03-18 18:41:32.789 434509 9552 1 0 2047 2025-03-18 18:41:27.66 2025-03-18 18:41:27.66 434509 9669 1 0 2048 2025-03-18 18:41:32.789 2025-03-18 18:41:32.789 434509 9916 0 0 2049 2025-03-18 18:41:31.905 2025-03-18 18:41:31.905 434509 10056 0 0 2050 2025-03-18 18:41:28.081 2025-03-18 18:41:28.081 434509 10611 0 0 2051 2025-03-18 18:41:31.65 2025-03-18 18:41:31.65 434509 10979 1 0 2052 2025-03-18 18:41:30.471 2025-03-18 18:41:30.471 434509 11073 0 0 2053 2025-03-18 18:41:30.471 2025-03-18 18:41:30.471 434509 11443 1 0 2054 2025-03-18 18:41:43.709 2025-03-18 18:41:43.709 434509 11670 1 0 2055 2025-03-18 18:43:21.627 2025-03-18 18:43:21.627 434509 11938 0 0 2056 2025-03-18 18:41:51.96 2025-03-18 18:41:51.96 434509 11942 1 0 2057 2025-03-18 18:41:52.845 2025-03-18 18:41:52.845 434509 13133 0 0 2058 2025-03-18 18:41:43.869 2025-03-18 18:41:43.869 434509 13162 1 0 2059 2025-03-18 18:41:28.445 2025-03-18 18:41:28.445 434509 13216 1 0 2060 2025-03-18 18:41:52.425 2025-03-18 18:41:52.425 434509 13365 0 0 2061 2025-03-18 18:41:31.34 2025-03-18 18:41:31.34 434509 13753 0 0 2062 2025-03-18 18:43:21.436 2025-03-18 18:43:21.436 434509 14255 1 0 2063 2025-03-18 20:19:37.327 2025-03-18 20:19:37.327 434509 14385 2 0 2064 2025-03-18 18:41:40.954 2025-03-18 18:41:40.954 434509 14909 0 0 2065 2025-03-18 18:41:43.3 2025-03-18 18:41:43.3 434509 15049 0 0 2066 2025-03-18 18:43:20.624 2025-03-18 18:43:20.624 434509 15200 1 0 2067 2025-03-18 18:41:30.947 2025-03-18 18:41:30.947 434509 15336 1 0 2068 2025-03-18 18:41:29.55 2025-03-18 18:41:29.55 434509 15367 0 0 2069 2025-03-18 18:41:42.985 2025-03-18 18:41:42.985 434509 15690 1 0 2070 2025-03-18 18:41:53.65 2025-03-18 18:41:53.65 434509 16042 1 0 2071 2025-03-18 18:41:32.247 2025-03-18 18:41:32.247 434509 16301 0 0 2072 2025-03-18 18:41:53.449 2025-03-18 18:41:53.449 434509 16556 1 0 2073 2025-03-18 18:41:30.08 2025-03-18 18:41:30.08 434509 16571 1 0 2074 2025-03-18 18:41:40.566 2025-03-18 18:41:40.566 434509 16942 1 0 2075 2025-03-18 18:41:28.445 2025-03-18 18:41:28.445 434509 17014 0 0 2076 2025-03-18 18:43:20.985 2025-03-18 18:43:20.985 434509 17046 1 0 2077 2025-03-18 18:41:27.66 2025-03-18 18:41:27.66 434509 18727 0 0 2078 2025-03-18 18:41:42.985 2025-03-18 18:41:42.985 434509 19016 0 0 2079 2025-03-18 18:41:44.579 2025-03-18 18:41:44.579 434509 19494 1 0 2080 2025-03-18 18:41:44.579 2025-03-18 18:41:44.579 434509 19502 0 0 2081 2025-03-18 18:41:40.566 2025-03-18 18:41:40.566 434509 19576 0 0 2082 2025-03-18 18:41:32.247 2025-03-18 18:41:32.247 434509 19863 1 0 2083 2025-03-18 18:41:50.093 2025-03-18 18:41:50.093 434509 20157 0 0 2084 2025-03-18 18:41:51.96 2025-03-18 18:41:51.96 434509 20201 0 0 2085 2025-03-18 18:41:45.22 2025-03-18 18:43:21.627 434509 20381 1 0 2086 2025-03-18 18:41:32.421 2025-03-18 18:41:32.421 434509 20409 0 0 2087 2025-03-18 18:41:44.985 2025-03-18 18:41:44.985 434509 20500 0 0 2088 2025-03-18 18:41:31.259 2025-03-18 18:41:31.259 434509 20577 0 0 2089 2025-03-18 18:41:29.935 2025-03-18 18:41:29.935 434509 20602 1 0 2090 2025-03-18 18:41:41.636 2025-03-18 18:41:41.636 434509 20603 0 0 2091 2025-03-18 18:41:53.242 2025-03-18 18:41:53.242 434509 20710 1 0 2092 2025-03-18 18:41:52.618 2025-03-18 18:41:52.618 434509 20734 0 0 2093 2025-03-18 18:41:29.186 2025-03-18 18:41:29.186 434509 20754 1 0 2094 2025-03-18 18:41:31.34 2025-03-18 18:41:31.34 434509 20775 1 0 2095 2025-03-18 18:41:43.869 2025-03-18 18:41:43.869 434509 20778 0 0 2096 2025-03-18 18:41:31.259 2025-03-18 18:41:31.259 434509 20817 1 0 2097 2025-03-18 18:41:31.905 2025-03-18 18:41:31.905 434509 20840 1 0 2098 2025-03-18 18:41:32.421 2025-03-18 18:41:32.421 434509 21033 1 0 2099 2025-03-18 18:41:29.55 2025-03-18 18:41:29.55 434509 21048 1 0 2100 2025-03-18 18:41:50.093 2025-03-18 18:41:50.093 434509 21083 1 0 2101 2025-03-18 18:41:28.709 2025-03-18 18:41:28.709 434509 21140 0 0 2102 2025-03-18 18:41:45.22 2025-03-18 18:41:45.22 434509 21303 1 0 2103 2025-03-18 18:41:52.425 2025-03-18 18:41:52.425 434509 21369 1 0 2104 2025-03-18 18:43:21.436 2025-03-18 18:43:21.436 434509 21405 0 0 2105 2025-03-18 18:43:20.985 2025-03-18 18:43:20.985 434509 21571 0 0 2106 2025-03-18 18:41:42.665 2025-03-18 18:41:42.665 434509 21631 0 0 2107 2025-03-18 18:41:53.006 2025-03-18 18:41:53.006 434509 21714 1 0 2108 2025-03-18 18:41:49.697 2025-03-18 18:41:49.697 434509 21810 0 0 2109 2025-03-18 18:41:39.869 2025-03-18 18:41:39.869 434509 21815 1 0 2110 2025-03-18 18:39:13.406 2025-03-18 18:39:13.406 434510 895 1 0 2111 2025-03-18 21:01:08.86 2025-03-18 21:01:08.86 434510 11866 2 0 2112 2025-03-18 21:01:08.86 2025-03-18 21:01:08.86 434510 18923 19 0 2113 2025-03-18 20:19:38.152 2025-03-18 20:19:38.152 434511 2013 2 0 2114 2025-03-18 18:41:21.895 2025-03-18 18:41:21.895 434511 2963 1 0 2115 2025-03-18 20:19:38.152 2025-03-18 20:19:38.152 434511 21451 19 0 2116 2025-03-18 22:02:27.61 2025-03-18 22:02:27.61 434512 1772 9 0 2117 2025-03-19 06:59:15.373 2025-03-19 06:59:15.373 434512 5694 31 0 2118 2025-03-18 22:02:27.61 2025-03-18 22:02:27.61 434512 5728 1 0 2119 2025-03-19 06:59:15.373 2025-03-19 06:59:15.373 434512 6526 3 0 2120 2025-03-18 19:06:59.432 2025-03-18 19:06:59.432 434512 11164 8 0 2121 2025-03-18 19:06:59.432 2025-03-18 19:06:59.432 434512 21022 75 0 2122 2025-03-18 18:43:47.293 2025-03-18 18:43:47.293 434512 21523 1 0 2123 2025-03-18 21:27:36.193 2025-03-18 21:27:36.193 434513 1549 1 0 2124 2025-03-18 21:27:36.193 2025-03-18 21:27:36.193 434513 3411 9 0 2125 2025-03-18 18:47:24.142 2025-03-18 18:47:24.142 434513 15536 1 0 2126 2025-03-18 20:26:40.728 2025-03-18 20:26:40.728 434513 18178 19 0 2127 2025-03-18 20:26:40.728 2025-03-18 20:26:40.728 434513 19417 2 0 2128 2025-03-18 19:36:19.875 2025-03-18 19:36:19.875 434514 683 1 0 2129 2025-03-18 19:09:18.006 2025-03-18 19:09:18.006 434514 986 75 0 2130 2025-03-18 19:36:19.875 2025-03-18 19:36:19.875 434514 1429 9 0 2131 2025-03-18 19:36:20.36 2025-03-18 19:36:20.36 434514 2543 1 0 2132 2025-03-19 01:43:18.948 2025-03-19 01:43:18.948 434514 3478 9 0 2133 2025-03-19 12:19:54.084 2025-03-19 12:19:54.084 434514 3642 19 0 2134 2025-03-18 19:09:19.919 2025-03-18 19:09:19.919 434514 5520 75 0 2135 2025-03-18 19:36:20.124 2025-03-18 19:36:20.124 434514 6361 1 0 2136 2025-03-18 19:09:17.577 2025-03-18 19:09:17.577 434514 7746 75 0 2137 2025-03-19 01:43:18.948 2025-03-19 01:43:18.948 434514 9335 1 0 2138 2025-03-18 19:37:19.894 2025-03-18 19:37:19.894 434514 10554 0 0 2139 2025-03-18 19:09:19.966 2025-03-18 19:09:19.966 434514 11073 8 0 2140 2025-03-18 19:37:20.711 2025-03-18 19:37:20.711 434514 11144 8 0 2141 2025-03-18 19:09:19.919 2025-03-18 19:09:19.919 434514 12738 8 0 2142 2025-03-18 21:27:46.918 2025-03-18 21:27:46.918 434514 13042 1 0 2143 2025-03-18 19:09:57.945 2025-03-18 19:09:57.945 434514 13249 8 0 2144 2025-03-19 00:28:26.137 2025-03-19 00:28:26.137 434514 13574 1 0 2145 2025-03-18 19:37:20.711 2025-03-18 19:37:20.711 434514 15119 1 0 2146 2025-03-18 19:09:17.838 2025-03-18 19:09:17.838 434514 15925 75 0 2147 2025-03-18 19:37:19.894 2025-03-18 19:37:19.894 434514 16769 1 0 2148 2025-03-18 19:36:20.124 2025-03-18 19:36:20.124 434514 17331 9 0 2149 2025-03-18 19:09:18.006 2025-03-18 19:09:18.006 434514 18116 8 0 2150 2025-03-18 21:27:46.918 2025-03-18 21:27:46.918 434514 18423 9 0 2151 2025-03-19 00:28:26.137 2025-03-19 00:28:26.137 434514 18557 7 0 2152 2025-03-18 19:09:57.135 2025-03-18 19:09:57.135 434514 20555 8 0 2153 2025-03-18 19:09:57.135 2025-03-18 19:09:57.135 434514 20562 75 0 2154 2025-03-19 12:19:54.084 2025-03-19 12:19:54.084 434514 20619 2 0 2155 2025-03-18 19:36:20.36 2025-03-18 19:36:20.36 434514 21033 9 0 2156 2025-03-18 19:09:17.577 2025-03-18 19:09:17.577 434514 21091 8 0 2157 2025-03-18 19:09:17.838 2025-03-18 19:09:17.838 434514 21389 8 0 2158 2025-03-18 19:09:57.945 2025-03-18 19:09:57.945 434514 21400 75 0 2159 2025-03-18 19:09:19.966 2025-03-18 19:09:19.966 434514 21427 75 0 2160 2025-03-19 04:50:52.16 2025-03-19 04:50:52.16 434515 759 19 0 2161 2025-03-18 18:53:36.123 2025-03-18 18:53:36.123 434515 11678 36 0 2162 2025-03-19 04:50:52.16 2025-03-19 04:50:52.16 434515 18717 2 0 2163 2025-03-18 18:53:36.123 2025-03-18 18:53:36.123 434515 20981 4 0 2164 2025-03-18 18:53:02.548 2025-03-18 18:53:02.548 434515 21577 1 0 2165 2025-03-19 00:39:55.371 2025-03-19 00:39:55.371 434516 1512 36 0 2166 2025-03-18 18:56:44.327 2025-03-18 18:56:44.327 434516 4074 1 0 2167 2025-03-19 00:39:55.371 2025-03-19 00:39:55.371 434516 21019 4 0 2168 2025-03-18 18:57:17.467 2025-03-18 18:57:17.467 434517 16830 1 0 2169 2025-03-18 18:57:55.457 2025-03-18 18:57:55.457 434518 963 1 0 2170 2025-03-18 18:59:27.425 2025-03-18 18:59:27.425 434519 20756 1 0 2171 2025-03-18 19:00:19.075 2025-03-18 19:00:19.075 434520 20998 1 0 2172 2025-03-18 19:01:16.695 2025-03-18 19:01:16.695 434521 634 1 0 2173 2025-03-18 19:01:39.105 2025-03-18 19:01:39.105 434522 7903 1 0 2174 2025-03-18 19:06:54.911 2025-03-18 19:06:54.911 434523 749 75 0 2175 2025-03-18 22:02:21.822 2025-03-18 22:02:21.822 434523 837 1 0 2176 2025-03-18 19:06:54.775 2025-03-18 19:06:54.775 434523 980 75 0 2177 2025-03-18 19:02:09.519 2025-03-18 19:02:09.519 434523 1624 1 0 2178 2025-03-18 19:06:54.775 2025-03-18 19:06:54.775 434523 4287 8 0 2179 2025-03-18 22:02:21.822 2025-03-18 22:02:21.822 434523 5377 9 0 2180 2025-03-18 19:06:54.911 2025-03-18 19:06:54.911 434523 7682 8 0 2181 2025-03-18 19:03:09.092 2025-03-18 19:03:09.092 434524 18449 1 0 2182 2025-03-18 19:05:35.374 2025-03-18 19:05:35.374 434525 14376 1 0 2183 2025-03-18 19:08:59.615 2025-03-18 19:08:59.615 434526 18232 1 0 2184 2025-03-18 19:37:26.229 2025-03-18 19:37:26.229 434527 1273 8 0 2185 2025-03-18 19:10:41.94 2025-03-18 19:10:41.94 434527 4115 0 0 2186 2025-03-19 12:20:04.11 2025-03-19 12:20:04.11 434527 11648 19 0 2187 2025-03-18 19:37:25.273 2025-03-18 19:37:25.273 434527 11760 1 0 2188 2025-03-19 12:20:04.11 2025-03-19 12:20:04.11 434527 11866 2 0 2189 2025-03-18 19:37:26.229 2025-03-18 19:37:26.229 434527 18678 1 0 2190 2025-03-18 19:10:41.94 2025-03-18 19:10:41.94 434527 21303 1 0 2191 2025-03-18 19:09:46.649 2025-03-18 19:09:46.649 434527 21526 1 0 2192 2025-03-18 19:37:25.273 2025-03-18 19:37:25.273 434527 21539 0 0 2193 2025-03-18 19:18:09.127 2025-03-18 19:18:09.127 434528 6058 8 0 2194 2025-03-18 19:18:09.127 2025-03-18 19:18:09.127 434528 10273 75 0 2195 2025-03-18 19:11:02.688 2025-03-18 19:11:02.688 434528 18630 1 0 2196 2025-03-18 19:11:26.917 2025-03-18 19:11:26.917 434529 7674 1 0 2197 2025-03-18 21:05:54.369 2025-03-18 21:05:54.369 434529 8684 0 21 2198 2025-03-18 19:12:38.457 2025-03-18 19:12:38.457 434530 16347 1 0 2199 2025-03-18 19:14:00.896 2025-03-18 19:14:00.896 434531 19531 1 0 2200 2025-03-18 19:14:14.638 2025-03-18 19:14:14.638 434532 2502 1 0 2201 2025-03-19 04:45:19.177 2025-03-19 04:45:19.177 434533 1620 1 0 2202 2025-03-19 04:45:19.177 2025-03-19 04:45:19.177 434533 5761 12 0 2203 2025-03-18 19:15:06.577 2025-03-18 19:15:06.577 434533 20102 1 0 2204 2025-03-18 19:18:16.254 2025-03-18 19:18:16.254 434534 15273 1 0 2205 2025-03-19 00:39:17.453 2025-03-19 00:39:17.453 434534 18116 4 0 2206 2025-03-19 00:39:17.453 2025-03-19 00:39:17.453 434534 20781 36 0 2207 2025-03-18 21:01:25.105 2025-03-18 21:01:25.105 434535 649 30 0 2208 2025-03-19 04:33:47.58 2025-03-19 04:33:47.58 434535 910 2 0 2209 2025-03-18 21:01:25.269 2025-03-18 21:01:25.269 434535 974 3 0 2210 2025-03-18 21:13:29.444 2025-03-18 21:13:29.444 434535 1064 0 1 2211 2025-03-20 04:23:12.069 2025-03-20 04:23:12.069 434535 1454 1 0 2212 2025-03-19 00:43:11.566 2025-03-19 00:43:11.566 434535 1468 19 0 2213 2025-03-18 23:50:47.729 2025-03-18 23:50:47.729 434535 1493 2 0 2214 2025-03-18 19:24:33.263 2025-03-18 19:24:33.263 434535 1567 9 0 2215 2025-03-19 00:43:11.566 2025-03-19 00:43:11.566 434535 1585 2 0 2216 2025-03-18 19:55:42.829 2025-03-18 19:55:42.829 434535 3504 19 0 2217 2025-03-18 19:37:35.112 2025-03-18 19:37:35.112 434535 3706 1 0 2218 2025-03-18 22:31:49.885 2025-03-18 22:31:49.885 434535 4027 19 0 2219 2025-03-18 21:27:45.662 2025-03-18 21:27:45.662 434535 4345 1 0 2220 2025-03-18 21:22:59.006 2025-03-18 21:22:59.006 434535 4459 18 0 2221 2025-03-18 21:01:26.464 2025-03-18 21:01:26.464 434535 4570 3 0 2222 2025-03-18 20:19:26.6 2025-03-18 20:19:26.6 434535 5003 0 0 2223 2025-03-18 21:01:25.105 2025-03-18 21:01:25.105 434535 5175 3 0 2224 2025-03-18 21:22:59.006 2025-03-18 21:22:59.006 434535 5578 2 0 2225 2025-03-18 21:27:45.662 2025-03-18 21:27:45.662 434535 5694 9 0 2226 2025-03-18 20:19:26.6 2025-03-18 20:19:26.6 434535 6136 1 0 2227 2025-03-18 23:03:01.637 2025-03-18 23:03:01.637 434535 6578 19 0 2228 2025-03-18 20:45:08.302 2025-03-18 20:45:08.302 434535 8284 19 0 2229 2025-03-18 19:21:51.792 2025-03-18 19:21:51.792 434535 8684 10 0 2230 2025-03-20 04:23:11.969 2025-03-20 04:23:11.969 434535 9295 5 0 2231 2025-03-18 22:46:25.501 2025-03-18 22:46:25.501 434535 9367 1 0 2232 2025-03-18 19:37:36.489 2025-03-18 19:37:36.489 434535 9611 81 0 2233 2025-03-18 19:24:32.781 2025-03-18 19:24:32.781 434535 9982 1 0 2234 2025-03-18 23:03:01.637 2025-03-18 23:03:01.637 434535 10007 2 0 2235 2025-03-20 04:23:12.406 2025-03-20 04:23:12.406 434535 10661 1 0 2236 2025-03-19 00:04:02.235 2025-03-19 00:04:02.235 434535 11038 0 0 2237 2025-03-18 19:37:36.489 2025-03-18 19:37:36.489 434535 11328 9 0 2238 2025-03-20 04:23:12.069 2025-03-20 04:23:12.069 434535 11527 5 0 2239 2025-03-18 19:37:34.782 2025-03-18 19:37:34.782 434535 11789 0 0 2240 2025-03-19 07:24:05.25 2025-03-19 07:24:05.25 434535 11938 90 0 2241 2025-03-20 04:23:11.969 2025-03-20 04:23:11.969 434535 13133 1 0 2242 2025-03-18 19:24:32.781 2025-03-18 19:24:32.781 434535 13174 9 0 2243 2025-03-18 20:19:24.639 2025-03-18 20:19:24.639 434535 13365 0 0 2244 2025-03-18 21:22:59.393 2025-03-18 21:22:59.393 434535 14258 18 0 2245 2025-03-18 19:55:42.829 2025-03-18 19:55:42.829 434535 14370 2 0 2246 2025-03-18 23:50:47.729 2025-03-18 23:50:47.729 434535 15139 14 0 2247 2025-03-18 21:58:21.239 2025-03-18 21:58:21.239 434535 15213 9 0 2248 2025-03-18 20:45:08.302 2025-03-18 20:45:08.302 434535 17041 2 0 2249 2025-03-19 04:33:47.58 2025-03-19 04:33:47.58 434535 17064 19 0 2250 2025-03-19 00:33:18.272 2025-03-19 00:33:18.272 434535 17838 1 0 2251 2025-03-18 21:25:45.022 2025-03-18 21:25:45.022 434535 17953 45 0 2252 2025-03-19 00:31:02.805 2025-03-19 00:31:02.805 434535 18430 36 0 2253 2025-03-18 21:14:16.811 2025-03-18 21:14:16.811 434535 18441 0 21 2254 2025-03-19 00:33:18.272 2025-03-19 00:33:18.272 434535 18528 5 0 2255 2025-03-18 19:37:34.782 2025-03-18 19:37:34.782 434535 18557 1 0 2256 2025-03-19 01:52:38.828 2025-03-19 01:52:38.828 434535 18734 1 0 2257 2025-03-18 22:31:49.885 2025-03-18 22:31:49.885 434535 19463 2 0 2258 2025-03-19 00:04:02.235 2025-03-19 00:04:02.235 434535 19576 1 0 2259 2025-03-18 21:01:25.445 2025-03-18 21:01:25.445 434535 19813 3 0 2260 2025-03-18 22:46:25.501 2025-03-18 22:46:25.501 434535 19952 9 0 2261 2025-03-20 04:23:12.406 2025-03-20 04:23:12.406 434535 20187 5 0 2262 2025-03-18 19:37:35.112 2025-03-18 19:37:35.112 434535 20381 8 0 2263 2025-03-18 21:01:25.445 2025-03-18 21:01:25.445 434535 20495 30 0 2264 2025-03-18 21:01:26.464 2025-03-18 21:01:26.464 434535 20683 30 0 2265 2025-03-19 00:31:02.805 2025-03-19 00:31:02.805 434535 20757 4 0 2266 2025-03-18 21:22:59.393 2025-03-18 21:22:59.393 434535 20817 2 0 2267 2025-03-18 19:24:33.263 2025-03-18 19:24:33.263 434535 21349 81 0 2268 2025-03-18 21:25:45.022 2025-03-18 21:25:45.022 434535 21539 5 0 2269 2025-03-18 20:19:24.639 2025-03-18 20:19:24.639 434535 21547 1 0 2270 2025-03-18 21:01:25.269 2025-03-18 21:01:25.269 434535 21555 30 0 2271 2025-03-19 07:24:05.25 2025-03-19 07:24:05.25 434535 21670 810 0 2272 2025-03-19 01:52:38.828 2025-03-19 01:52:38.828 434535 21713 10 0 2273 2025-03-18 21:58:21.239 2025-03-18 21:58:21.239 434535 21768 1 0 2274 2025-03-18 21:27:45.415 2025-03-18 21:27:45.415 434536 617 9 0 2275 2025-03-18 21:27:45.415 2025-03-18 21:27:45.415 434536 1244 1 0 2276 2025-03-18 20:30:34.62 2025-03-18 20:30:34.62 434536 11648 2 0 2277 2025-03-18 19:29:48.976 2025-03-18 19:29:48.976 434536 12721 2 0 2278 2025-03-18 19:29:48.976 2025-03-18 19:29:48.976 434536 14503 19 0 2279 2025-03-18 20:30:34.62 2025-03-18 20:30:34.62 434536 16282 19 0 2280 2025-03-18 19:22:39.003 2025-03-18 19:22:39.003 434536 20912 10 0 2281 2025-03-18 19:26:08.563 2025-03-18 19:26:08.563 434537 623 1 0 2282 2025-03-19 09:24:13.425 2025-03-19 09:24:13.425 434538 3990 9 0 2283 2025-03-18 19:28:56.58 2025-03-18 19:28:56.58 434538 6421 1 0 2284 2025-03-19 09:24:13.425 2025-03-19 09:24:13.425 434538 20370 1 0 2285 2025-03-18 19:41:26.219 2025-03-18 19:41:26.219 434539 900 2 0 2286 2025-03-18 19:41:25.439 2025-03-18 19:41:25.439 434539 1970 2 0 2287 2025-03-18 19:41:34.108 2025-03-18 19:41:34.108 434539 2010 2 0 2288 2025-03-18 21:05:21.024 2025-03-18 21:05:21.024 434539 2342 2 0 2289 2025-03-18 19:30:02.105 2025-03-18 19:30:02.105 434539 6653 1 0 2290 2025-03-18 19:41:24.454 2025-03-18 19:41:24.454 434539 8242 2 0 2291 2025-03-18 19:41:24.454 2025-03-18 19:41:24.454 434539 9378 19 0 2292 2025-03-18 19:41:26.219 2025-03-18 19:41:26.219 434539 9863 19 0 2293 2025-03-18 19:41:34.108 2025-03-18 19:41:34.108 434539 18494 19 0 2294 2025-03-18 21:05:21.024 2025-03-18 21:05:21.024 434539 20904 19 0 2295 2025-03-18 19:41:25.439 2025-03-18 19:41:25.439 434539 20963 19 0 2296 2025-03-18 19:37:28.261 2025-03-18 19:37:28.261 434540 777 0 0 2297 2025-03-18 19:37:28.51 2025-03-18 19:37:28.51 434540 1737 8 0 2298 2025-03-19 12:20:04.307 2025-03-19 12:20:04.307 434540 4633 2 0 2299 2025-03-18 19:37:28.51 2025-03-18 19:37:28.51 434540 7827 1 0 2300 2025-03-18 19:37:28.261 2025-03-18 19:37:28.261 434540 8459 1 0 2301 2025-03-19 12:20:04.307 2025-03-19 12:20:04.307 434540 8684 19 0 2302 2025-03-18 19:36:10.188 2025-03-18 19:36:10.188 434540 21145 1 0 2303 2025-03-18 20:16:02.458 2025-03-18 20:16:02.458 434541 6616 2 0 2304 2025-03-18 21:27:45.141 2025-03-18 21:27:45.141 434541 19471 1 0 2305 2025-03-18 21:27:45.141 2025-03-18 21:27:45.141 434541 20993 9 0 2306 2025-03-18 19:36:31.606 2025-03-18 19:36:31.606 434541 21166 10 0 2307 2025-03-18 20:16:02.458 2025-03-18 20:16:02.458 434541 21303 19 0 2308 2025-03-18 19:38:43.896 2025-03-18 19:38:43.896 434542 1761 1 0 2309 2025-03-19 04:45:15.962 2025-03-19 04:45:15.962 434542 12721 1 0 2310 2025-03-19 04:45:15.962 2025-03-19 04:45:15.962 434542 16347 12 0 2311 2025-03-18 19:40:22.346 2025-03-18 19:40:22.346 434543 12188 10 0 2312 2025-03-18 21:27:44.81 2025-03-18 21:27:44.81 434543 14941 1 0 2313 2025-03-18 21:27:44.81 2025-03-18 21:27:44.81 434543 21339 9 0 2314 2025-03-18 21:27:44.499 2025-03-18 21:27:44.499 434544 632 1 0 2315 2025-03-18 19:43:44.705 2025-03-18 19:43:44.705 434544 997 4 0 2316 2025-03-18 19:43:45.115 2025-03-18 19:43:45.115 434544 6160 2 0 2317 2025-03-18 19:43:45.115 2025-03-18 19:43:45.115 434544 6164 18 0 2318 2025-03-18 19:43:44.705 2025-03-18 19:43:44.705 434544 9551 36 0 2319 2025-03-18 19:43:45.519 2025-03-18 19:43:45.519 434544 9874 18 0 2320 2025-03-18 19:43:45.36 2025-03-18 19:43:45.36 434544 14037 18 0 2321 2025-03-18 19:43:45.36 2025-03-18 19:43:45.36 434544 20220 2 0 2322 2025-03-18 21:27:44.499 2025-03-18 21:27:44.499 434544 21042 9 0 2323 2025-03-18 19:42:21.516 2025-03-18 19:42:21.516 434544 21506 100 0 2324 2025-03-18 19:43:45.519 2025-03-18 19:43:45.519 434544 21804 2 0 2325 2025-03-18 19:46:12.696 2025-03-18 19:46:12.696 434545 12976 1 0 2326 2025-03-18 19:53:13.655 2025-03-18 19:53:13.655 434546 15180 1 0 2327 2025-03-18 19:55:02.98 2025-03-18 19:55:02.98 434547 21207 1 0 2328 2025-03-18 19:56:07.748 2025-03-18 19:56:07.748 434548 11395 1 0 2329 2025-03-18 19:59:04.789 2025-03-18 19:59:04.789 434549 1136 10 0 2330 2025-03-18 19:56:57.869 2025-03-18 19:56:57.869 434549 8726 1 0 2331 2025-03-18 19:59:04.789 2025-03-18 19:59:04.789 434549 10862 90 0 2332 2025-03-18 19:59:08.949 2025-03-18 19:59:08.949 434550 2776 1 0 2333 2025-03-18 20:01:00.25 2025-03-18 20:01:00.25 434551 6260 1 0 2334 2025-03-18 21:06:25.824 2025-03-18 21:06:25.824 434551 17116 1 0 2335 2025-03-18 21:06:25.824 2025-03-18 21:06:25.824 434551 20776 9 0 2336 2025-03-18 20:02:40.623 2025-03-18 20:02:40.623 434552 20225 1 0 2337 2025-03-18 21:12:14.69 2025-03-18 21:12:14.69 434553 1833 3 0 2338 2025-03-18 20:02:43.62 2025-03-18 20:02:43.62 434553 5828 1 0 2339 2025-03-19 04:36:23.21 2025-03-19 04:36:23.21 434553 7558 2 0 2340 2025-03-18 21:12:14.69 2025-03-18 21:12:14.69 434553 16834 23 0 2341 2025-03-19 04:36:23.21 2025-03-19 04:36:23.21 434553 21714 19 0 2342 2025-03-18 20:03:10.465 2025-03-18 20:03:10.465 434554 20225 1 0 2343 2025-03-18 20:04:40.019 2025-03-18 20:04:40.019 434555 16145 1 0 2344 2025-03-19 05:17:09.135 2025-03-19 05:17:09.135 434556 1469 8 0 2345 2025-03-18 21:58:37.446 2025-03-18 21:58:37.446 434556 1717 9 0 2346 2025-03-19 05:17:09.135 2025-03-19 05:17:09.135 434556 6393 75 0 2347 2025-03-18 20:05:43.163 2025-03-18 20:05:43.163 434556 8945 1 0 2348 2025-03-18 21:01:36.801 2025-03-18 21:01:36.801 434556 14278 3 0 2349 2025-03-18 21:01:36.801 2025-03-18 21:01:36.801 434556 14295 30 0 2350 2025-03-19 05:17:08.311 2025-03-19 05:17:08.311 434556 16809 75 0 2351 2025-03-18 21:58:37.446 2025-03-18 21:58:37.446 434556 20102 1 0 2352 2025-03-19 05:17:08.311 2025-03-19 05:17:08.311 434556 21631 8 0 2353 2025-03-19 04:58:27.697 2025-03-19 04:58:27.697 434557 10519 9 0 2354 2025-03-19 04:58:27.697 2025-03-19 04:58:27.697 434557 18321 1 0 2355 2025-03-18 20:07:53.401 2025-03-18 20:07:53.401 434557 21683 1 0 2356 2025-03-19 00:50:20.204 2025-03-19 00:50:20.204 434558 1784 2 0 2357 2025-03-18 20:08:08.921 2025-03-18 20:08:08.921 434558 10484 1 0 2358 2025-03-19 00:50:20.204 2025-03-19 00:50:20.204 434558 21797 19 0 2359 2025-03-19 07:11:54.044 2025-03-19 07:11:54.044 434559 2213 9 0 2360 2025-03-18 20:12:27.598 2025-03-18 20:12:27.598 434559 2330 1 0 2361 2025-03-19 07:11:50.951 2025-03-19 07:11:50.951 434559 12769 9 0 2362 2025-03-19 07:11:51.207 2025-03-19 07:11:51.207 434559 15160 1 0 2363 2025-03-19 07:11:51.207 2025-03-19 07:11:51.207 434559 20198 9 0 2364 2025-03-19 07:11:54.393 2025-03-19 07:11:54.393 434559 20306 1 0 2365 2025-03-19 07:11:54.393 2025-03-19 07:11:54.393 434559 21072 9 0 2366 2025-03-19 07:11:54.044 2025-03-19 07:11:54.044 434559 21412 1 0 2367 2025-03-19 07:11:50.951 2025-03-19 07:11:50.951 434559 21794 1 0 2368 2025-03-18 20:46:42.738 2025-03-18 20:46:42.738 434560 777 2 0 2369 2025-03-18 23:27:22.439 2025-03-18 23:27:22.439 434560 964 2 0 2370 2025-03-18 21:49:26.773 2025-03-18 21:49:26.773 434560 1039 27 0 2371 2025-03-18 21:35:19.612 2025-03-18 21:35:19.612 434560 1046 1 0 2372 2025-03-19 03:57:06.043 2025-03-19 03:57:06.043 434560 1120 2 0 2373 2025-03-19 03:57:06.043 2025-03-19 03:57:06.043 434560 5646 19 0 2374 2025-03-18 21:49:26.773 2025-03-18 21:49:26.773 434560 5725 3 0 2375 2025-03-19 02:33:38.198 2025-03-19 02:33:38.198 434560 8173 90 0 2376 2025-03-18 20:12:44.288 2025-03-18 20:12:44.288 434560 9262 1 0 2377 2025-03-19 00:02:38.042 2025-03-19 00:02:38.042 434560 12951 5 0 2378 2025-03-19 00:02:38.042 2025-03-19 00:02:38.042 434560 13763 45 0 2379 2025-03-18 21:35:19.612 2025-03-18 21:35:19.612 434560 20613 5 0 2380 2025-03-18 23:27:22.439 2025-03-18 23:27:22.439 434560 20657 19 0 2381 2025-03-18 20:46:42.738 2025-03-18 20:46:42.738 434560 21037 19 0 2382 2025-03-19 02:33:38.198 2025-03-19 02:33:38.198 434560 21688 10 0 2383 2025-03-18 20:13:02.469 2025-03-18 20:13:02.469 434561 623 1 0 2384 2025-03-18 20:14:08.186 2025-03-18 20:14:08.186 434562 11038 1 0 2385 2025-03-20 06:31:18.724 2025-03-20 06:31:18.724 434563 718 64 0 2386 2025-03-18 20:15:39.267 2025-03-18 20:15:39.267 434563 11158 1 0 2387 2025-03-20 06:31:18.724 2025-03-20 06:31:18.724 434563 13361 7 0 2388 2025-03-18 20:15:51.193 2025-03-18 20:15:51.193 434564 16929 1 0 2389 2025-03-18 21:04:15.68 2025-03-18 21:04:15.68 434565 1723 3 0 2390 2025-03-18 21:04:16.44 2025-03-18 21:04:16.44 434565 2718 3 0 2391 2025-03-18 20:16:50.785 2025-03-18 20:16:50.785 434565 8045 1 0 2392 2025-03-18 21:04:16.545 2025-03-18 21:04:16.545 434565 11498 30 0 2393 2025-03-18 23:08:38.828 2025-03-18 23:08:38.828 434565 12870 19 0 2394 2025-03-18 21:05:56.518 2025-03-18 21:05:56.518 434565 14607 1 0 2395 2025-03-18 23:08:38.828 2025-03-18 23:08:38.828 434565 17316 2 0 2396 2025-03-18 21:05:56.518 2025-03-18 21:05:56.518 434565 18314 9 0 2397 2025-03-18 21:04:15.68 2025-03-18 21:04:15.68 434565 18393 30 0 2398 2025-03-18 21:04:16.545 2025-03-18 21:04:16.545 434565 20179 3 0 2399 2025-03-18 21:04:16.44 2025-03-18 21:04:16.44 434565 21051 30 0 2400 2025-03-18 20:18:27.703 2025-03-18 20:18:27.703 434566 16842 1 0 2401 2025-03-18 20:20:50.75 2025-03-18 20:20:50.75 434567 1576 1 0 2402 2025-03-18 20:21:29.383 2025-03-18 20:21:29.383 434568 14774 1 0 2403 2025-03-18 20:24:31.318 2025-03-18 20:24:31.318 434569 19018 1 0 2404 2025-03-19 00:37:44.365 2025-03-19 00:37:44.365 434570 6471 36 0 2405 2025-03-19 00:37:44.365 2025-03-19 00:37:44.365 434570 7818 4 0 2406 2025-03-18 20:25:06.963 2025-03-18 20:25:06.963 434570 16432 1 0 2407 2025-03-18 20:26:31.719 2025-03-18 20:26:31.719 434571 2056 1 0 2408 2025-03-18 20:28:07.586 2025-03-18 20:28:07.586 434571 9418 0 0 2409 2025-03-18 21:27:36.435 2025-03-18 21:27:36.435 434572 917 9 0 2410 2025-03-19 06:53:23.447 2025-03-19 06:53:23.447 434572 1817 1 0 2411 2025-03-18 21:27:36.435 2025-03-18 21:27:36.435 434572 18528 1 0 2412 2025-03-18 20:26:43.253 2025-03-18 20:26:43.253 434572 20973 1 0 2413 2025-03-19 06:53:23.447 2025-03-19 06:53:23.447 434572 21083 9 0 2414 2025-03-18 20:30:56.962 2025-03-18 20:30:56.962 434573 10493 1 0 2415 2025-03-18 20:34:31.086 2025-03-18 20:34:31.086 434573 17201 19 0 2416 2025-03-18 20:34:31.086 2025-03-18 20:34:31.086 434573 21532 2 0 2417 2025-03-19 18:16:39.632 2025-03-19 18:16:39.632 434574 10096 45 0 2418 2025-03-19 18:16:39.632 2025-03-19 18:16:39.632 434574 12821 5 0 2419 2025-03-18 20:34:28.613 2025-03-18 20:34:28.613 434574 16276 1 0 2420 2025-03-18 21:59:24.12 2025-03-18 21:59:24.12 434575 959 9 0 2421 2025-03-18 20:40:09.163 2025-03-18 20:40:09.163 434575 3411 0 0 2422 2025-03-18 23:06:05.31 2025-03-18 23:06:05.31 434575 4292 0 0 2423 2025-03-18 23:06:05.31 2025-03-18 23:06:05.31 434575 5597 1 0 2424 2025-03-18 20:39:18.96 2025-03-18 20:39:18.96 434575 8416 1 0 2425 2025-03-18 21:59:24.12 2025-03-18 21:59:24.12 434575 16336 1 0 2426 2025-03-18 20:40:19.008 2025-03-18 20:40:19.008 434576 21369 1 0 2427 2025-03-18 21:27:44.205 2025-03-18 21:27:44.205 434577 705 9 0 2428 2025-03-19 03:55:37.652 2025-03-19 03:55:37.652 434577 900 10 0 2429 2025-03-19 02:26:40.816 2025-03-19 02:26:40.816 434577 1472 1 0 2430 2025-03-18 21:58:49.259 2025-03-18 21:58:49.259 434577 1474 90 0 2431 2025-03-19 04:40:53.887 2025-03-19 04:40:53.887 434577 1480 19 0 2432 2025-03-19 00:43:25.749 2025-03-19 00:43:25.749 434577 1515 19 0 2433 2025-03-19 04:40:53.887 2025-03-19 04:40:53.887 434577 1960 2 0 2434 2025-03-18 23:41:46.586 2025-03-18 23:41:46.586 434577 7583 19 0 2435 2025-03-18 23:41:46.586 2025-03-18 23:41:46.586 434577 8726 2 0 2436 2025-03-19 00:27:43.304 2025-03-19 00:27:43.304 434577 9552 1 0 2437 2025-03-19 03:55:37.56 2025-03-19 03:55:37.56 434577 10549 1 0 2438 2025-03-19 03:55:37.56 2025-03-19 03:55:37.56 434577 11220 10 0 2439 2025-03-19 03:55:37.652 2025-03-19 03:55:37.652 434577 13042 1 0 2440 2025-03-18 20:46:53.613 2025-03-18 20:46:53.613 434577 15484 9 0 2441 2025-03-18 21:29:24.001 2025-03-18 21:29:24.001 434577 15521 19 0 2442 2025-03-18 21:58:49.259 2025-03-18 21:58:49.259 434577 17172 10 0 2443 2025-03-18 20:46:53.613 2025-03-18 20:46:53.613 434577 17741 1 0 2444 2025-03-19 00:27:43.304 2025-03-19 00:27:43.304 434577 19821 7 0 2445 2025-03-18 20:41:11.478 2025-03-18 20:41:11.478 434577 19829 21 0 2446 2025-03-19 00:43:25.749 2025-03-19 00:43:25.749 434577 20073 2 0 2447 2025-03-18 21:29:24.001 2025-03-18 21:29:24.001 434577 20782 2 0 2448 2025-03-18 21:27:44.205 2025-03-18 21:27:44.205 434577 21212 1 0 2449 2025-03-19 02:26:40.816 2025-03-19 02:26:40.816 434577 21263 9 0 2450 2025-03-18 20:43:43.177 2025-03-18 20:43:43.177 434578 7425 1 0 2451 2025-03-18 20:45:00.83 2025-03-18 20:45:00.83 434579 20294 1 0 2452 2025-03-18 21:59:15.68 2025-03-18 21:59:15.68 434580 11523 9 0 2453 2025-03-18 21:59:15.68 2025-03-18 21:59:15.68 434580 13467 1 0 2454 2025-03-18 20:45:19.319 2025-03-18 20:45:19.319 434580 21003 10 0 2455 2025-03-19 16:09:19.548 2025-03-19 16:09:19.548 434581 2022 1 0 2456 2025-03-19 16:09:19.548 2025-03-19 16:09:19.548 434581 19570 9 0 2457 2025-03-18 20:46:04.989 2025-03-18 20:46:04.989 434581 21338 1 0 2458 2025-03-18 23:34:02.697 2025-03-18 23:34:02.697 434582 2583 3 0 2459 2025-03-18 23:34:02.697 2025-03-18 23:34:02.697 434582 16250 23 0 2460 2025-03-18 20:48:47.895 2025-03-18 20:48:47.895 434582 20523 1 0 2461 2025-03-19 07:41:13.401 2025-03-19 07:41:13.401 434583 1618 1 0 2462 2025-03-19 07:41:13.253 2025-03-19 07:41:13.253 434583 5017 1 0 2463 2025-03-18 21:27:43.887 2025-03-18 21:27:43.887 434583 7185 1 0 2464 2025-03-18 21:23:23.796 2025-03-18 21:23:23.796 434583 14990 4 0 2465 2025-03-18 20:48:50.694 2025-03-18 20:48:50.694 434583 16270 50 0 2466 2025-03-18 21:23:23.796 2025-03-18 21:23:23.796 434583 16653 36 0 2467 2025-03-18 21:27:43.887 2025-03-18 21:27:43.887 434583 19924 9 0 2468 2025-03-19 07:41:13.401 2025-03-19 07:41:13.401 434583 20840 9 0 2469 2025-03-19 07:41:13.253 2025-03-19 07:41:13.253 434583 21334 9 0 2470 2025-03-18 20:50:12.336 2025-03-18 20:50:12.336 434584 1658 1 0 2471 2025-03-18 20:54:36.646 2025-03-18 20:54:36.646 434584 4819 2 0 2472 2025-03-18 20:54:36.646 2025-03-18 20:54:36.646 434584 5495 19 0 2473 2025-03-18 21:05:46.671 2025-03-18 21:05:46.671 434585 667 1 0 2474 2025-03-18 20:51:44.168 2025-03-18 20:51:44.168 434585 15336 0 0 2475 2025-03-18 21:05:46.671 2025-03-18 21:05:46.671 434585 17046 9 0 2476 2025-03-18 20:51:00.979 2025-03-18 20:51:00.979 434585 17690 1 0 2477 2025-03-18 20:53:14.328 2025-03-18 20:53:14.328 434586 3213 1 0 2478 2025-03-18 20:58:00.949 2025-03-18 20:58:00.949 434587 726 1 0 2479 2025-03-18 20:58:16.036 2025-03-18 20:58:16.036 434587 8505 0 0 2480 2025-03-19 06:47:48.358 2025-03-19 06:47:48.358 434588 714 135 0 2481 2025-03-18 21:02:18.67 2025-03-18 21:02:18.67 434588 15196 21 0 2482 2025-03-18 21:27:43.445 2025-03-18 21:27:43.445 434588 18529 1 0 2483 2025-03-19 06:47:48.358 2025-03-19 06:47:48.358 434588 18717 15 0 2484 2025-03-18 21:27:43.445 2025-03-18 21:27:43.445 434588 20059 9 0 2485 2025-03-18 22:02:57.393 2025-03-18 22:02:57.393 434589 8045 1 0 2486 2025-03-18 21:05:15.296 2025-03-18 21:05:15.296 434589 8287 1 0 2487 2025-03-18 22:02:57.393 2025-03-18 22:02:57.393 434589 13987 9 0 2488 2025-03-18 21:05:55.169 2025-03-18 21:05:55.169 434590 19796 1 0 2489 2025-03-18 21:05:55.169 2025-03-18 21:05:55.169 434590 20642 9 0 2490 2025-03-18 21:05:33.262 2025-03-18 21:05:33.262 434590 20911 1 0 2491 2025-03-18 23:01:34.769 2025-03-18 23:01:34.769 434591 1577 0 21 2492 2025-03-18 21:08:17.324 2025-03-18 21:08:17.324 434592 9529 1 0 2493 2025-03-18 21:08:55.383 2025-03-18 21:08:55.383 434593 9863 1 0 2494 2025-03-20 06:31:12.554 2025-03-20 06:31:12.554 434595 701 64 0 2495 2025-03-18 21:27:42.907 2025-03-18 21:27:42.907 434595 732 1 0 2496 2025-03-18 23:22:55.238 2025-03-18 23:22:55.238 434595 6030 10 0 2497 2025-03-18 21:09:18.323 2025-03-18 21:09:18.323 434595 9982 100 0 2498 2025-03-20 06:31:12.554 2025-03-20 06:31:12.554 434595 10693 7 0 2499 2025-03-18 23:22:55.238 2025-03-18 23:22:55.238 434595 10979 90 0 2500 2025-03-18 21:27:42.907 2025-03-18 21:27:42.907 434595 17817 9 0 2501 2025-03-18 21:09:46.587 2025-03-18 21:09:46.587 434596 782 1 0 2502 2025-03-18 21:10:24.615 2025-03-18 21:10:24.615 434597 2724 1 0 2503 2025-03-18 21:11:39.205 2025-03-18 21:11:39.205 434598 14607 10 0 2504 2025-03-19 15:51:57.873 2025-03-19 15:51:57.873 434599 671 0 0 2505 2025-03-19 15:51:58.199 2025-03-19 15:51:58.199 434599 7580 0 0 2506 2025-03-19 15:51:58.199 2025-03-19 15:51:58.199 434599 7773 3 0 2507 2025-03-19 15:51:58.049 2025-03-19 15:51:58.049 434599 9331 3 0 2508 2025-03-19 15:51:57.873 2025-03-19 15:51:57.873 434599 14271 3 0 2509 2025-03-19 15:51:58.049 2025-03-19 15:51:58.049 434599 20616 0 0 2510 2025-03-18 21:12:14.433 2025-03-18 21:12:14.433 434599 21405 1 0 2511 2025-03-19 06:48:26.24 2025-03-19 06:48:26.24 434600 27 1 0 2512 2025-03-19 06:48:25.218 2025-03-19 06:48:25.218 434600 770 1 0 2513 2025-03-19 06:48:24.655 2025-03-19 06:48:24.655 434600 2735 1 0 2514 2025-03-18 21:12:31.506 2025-03-18 21:12:31.506 434600 3400 1 0 2515 2025-03-19 06:48:24.348 2025-03-19 06:48:24.348 434600 8080 9 0 2516 2025-03-19 06:48:25.631 2025-03-19 06:48:25.631 434600 15588 9 0 2517 2025-03-19 06:48:24.655 2025-03-19 06:48:24.655 434600 17517 9 0 2518 2025-03-19 06:48:24.348 2025-03-19 06:48:24.348 434600 18525 1 0 2519 2025-03-19 06:48:25.631 2025-03-19 06:48:25.631 434600 19992 1 0 2520 2025-03-19 06:48:26.24 2025-03-19 06:48:26.24 434600 20511 9 0 2521 2025-03-19 06:48:25.218 2025-03-19 06:48:25.218 434600 21357 9 0 2522 2025-03-20 04:24:22.505 2025-03-20 04:24:22.505 434601 667 5 0 2523 2025-03-20 04:24:22.505 2025-03-20 04:24:22.505 434601 1352 1 0 2524 2025-03-18 21:59:10.227 2025-03-18 21:59:10.227 434601 16387 1 0 2525 2025-03-18 21:14:37.461 2025-03-18 21:14:37.461 434601 20201 1 0 2526 2025-03-18 21:59:10.227 2025-03-18 21:59:10.227 434601 21233 9 0 2527 2025-03-18 21:14:44.237 2025-03-18 21:14:44.237 434602 17824 1 0 2528 2025-03-18 21:15:44.938 2025-03-18 21:15:44.938 434603 9438 1 0 2529 2025-03-19 04:50:49.355 2025-03-19 04:50:49.355 434604 1733 19 0 2530 2025-03-19 00:36:54.987 2025-03-19 00:36:54.987 434604 13587 4 0 2531 2025-03-19 04:50:49.355 2025-03-19 04:50:49.355 434604 17162 2 0 2532 2025-03-18 21:17:52.617 2025-03-18 21:17:52.617 434604 20837 1 0 2533 2025-03-19 00:36:54.987 2025-03-19 00:36:54.987 434604 21281 36 0 2534 2025-03-18 21:19:25.514 2025-03-18 21:19:25.514 434605 5444 1 0 2535 2025-03-18 21:27:42.445 2025-03-18 21:27:42.445 434606 641 1 0 2536 2025-03-18 21:23:28.999 2025-03-18 21:23:28.999 434606 1320 10 0 2537 2025-03-18 22:12:39.885 2025-03-18 22:12:39.885 434606 4292 2 0 2538 2025-03-18 21:27:42.445 2025-03-18 21:27:42.445 434606 5590 9 0 2539 2025-03-18 22:12:39.885 2025-03-18 22:12:39.885 434606 20993 19 0 2540 2025-03-19 03:50:18.689 2025-03-19 03:50:18.689 434607 617 27 0 2541 2025-03-19 03:50:18.689 2025-03-19 03:50:18.689 434607 657 3 0 2542 2025-03-18 21:23:44.279 2025-03-18 21:23:44.279 434607 7673 1 0 2543 2025-03-18 21:24:23.925 2025-03-18 21:24:23.925 434608 7877 1 0 2544 2025-03-19 01:00:50.417 2025-03-19 01:00:50.417 434609 2335 10 0 2545 2025-03-19 03:58:27.113 2025-03-19 03:58:27.113 434609 4027 2 0 2546 2025-03-19 01:00:50.417 2025-03-19 01:00:50.417 434609 16259 1 0 2547 2025-03-18 21:49:44.23 2025-03-18 21:49:44.23 434609 20225 27 0 2548 2025-03-18 21:28:30.934 2025-03-18 21:28:30.934 434609 20713 1 0 2549 2025-03-18 21:49:44.23 2025-03-18 21:49:44.23 434609 20904 3 0 2550 2025-03-19 03:58:27.113 2025-03-19 03:58:27.113 434609 20979 19 0 2551 2025-03-18 21:29:19.748 2025-03-18 21:29:19.748 434610 10063 1 0 2552 2025-03-18 21:55:45.518 2025-03-18 21:55:45.518 434610 13365 90 0 2553 2025-03-19 04:43:44.549 2025-03-19 04:43:44.549 434610 16966 2 0 2554 2025-03-19 04:43:44.549 2025-03-19 04:43:44.549 434610 17991 19 0 2555 2025-03-18 21:55:45.518 2025-03-18 21:55:45.518 434610 21672 10 0 2556 2025-03-18 21:38:40.629 2025-03-18 21:38:40.629 434611 718 1 0 2557 2025-03-18 21:37:11.673 2025-03-18 21:37:11.673 434611 3544 1 0 2558 2025-03-18 21:38:40.629 2025-03-18 21:38:40.629 434611 7960 9 0 2559 2025-03-18 21:37:40.097 2025-03-18 21:37:40.097 434612 2749 1 0 2560 2025-03-19 04:44:56.242 2025-03-19 04:44:56.242 434613 654 12 0 2561 2025-03-18 21:38:38.02 2025-03-18 21:38:38.02 434613 805 0 0 2562 2025-03-18 21:39:02.769 2025-03-18 21:39:02.769 434613 866 0 0 2563 2025-03-19 04:44:54.914 2025-03-19 04:44:54.914 434613 1723 1 0 2564 2025-03-18 21:38:08.293 2025-03-18 21:38:08.293 434613 1836 1 0 2565 2025-03-19 04:44:55.466 2025-03-19 04:44:55.466 434613 4570 1 0 2566 2025-03-19 04:44:56.242 2025-03-19 04:44:56.242 434613 5112 1 0 2567 2025-03-19 04:44:55.466 2025-03-19 04:44:55.466 434613 6765 12 0 2568 2025-03-19 04:44:54.914 2025-03-19 04:44:54.914 434613 7891 12 0 2569 2025-03-18 21:39:19.666 2025-03-18 21:39:19.666 434613 21228 0 0 2570 2025-03-18 21:38:08.89 2025-03-18 21:38:08.89 434614 19821 1 0 2571 2025-03-19 04:12:10.184 2025-03-19 04:12:10.184 434615 678 8 0 2572 2025-03-18 23:00:49.403 2025-03-18 23:00:49.403 434615 1472 2 0 2573 2025-03-18 21:45:33.825 2025-03-18 21:45:33.825 434615 1483 10 0 2574 2025-03-19 04:12:10.184 2025-03-19 04:12:10.184 434615 2204 1 0 2575 2025-03-19 05:14:16.683 2025-03-19 05:14:16.683 434615 2583 1 0 2576 2025-03-18 21:45:33.825 2025-03-18 21:45:33.825 434615 3417 90 0 2577 2025-03-19 05:14:16.785 2025-03-19 05:14:16.785 434615 4250 1 0 2578 2025-03-18 23:00:49.403 2025-03-18 23:00:49.403 434615 5520 19 0 2579 2025-03-19 04:12:13.363 2025-03-19 04:12:13.363 434615 6030 81 0 2580 2025-03-19 04:12:09.774 2025-03-19 04:12:09.774 434615 7675 0 0 2581 2025-03-19 04:12:13.363 2025-03-19 04:12:13.363 434615 9906 9 0 2582 2025-03-19 04:12:09.774 2025-03-19 04:12:09.774 434615 10096 1 0 2583 2025-03-19 00:53:50.825 2025-03-19 00:53:50.825 434615 15549 1 0 2584 2025-03-19 05:14:16.683 2025-03-19 05:14:16.683 434615 17696 10 0 2585 2025-03-19 00:53:50.825 2025-03-19 00:53:50.825 434615 19535 7 0 2586 2025-03-18 21:38:45.857 2025-03-18 21:38:45.857 434615 20969 100 0 2587 2025-03-19 04:42:15.815 2025-03-19 04:42:15.815 434615 21281 2 0 2588 2025-03-19 05:14:16.785 2025-03-19 05:14:16.785 434615 21421 10 0 2589 2025-03-19 04:42:15.815 2025-03-19 04:42:15.815 434615 21532 19 0 2590 2025-03-18 22:29:50.587 2025-03-18 22:29:50.587 434616 6058 1 0 2591 2025-03-18 22:29:50.587 2025-03-18 22:29:50.587 434616 18601 9 0 2592 2025-03-18 21:39:46.492 2025-03-18 21:39:46.492 434616 19531 1 0 2593 2025-03-19 05:09:20.314 2025-03-19 05:09:20.314 434617 1802 10 0 2594 2025-03-19 05:09:06.331 2025-03-19 05:09:06.331 434617 2829 10 0 2595 2025-03-19 05:09:16.771 2025-03-19 05:09:16.771 434617 5175 1 0 2596 2025-03-19 04:58:25.047 2025-03-19 04:58:25.047 434617 5828 1 0 2597 2025-03-19 04:58:25.047 2025-03-19 04:58:25.047 434617 7097 9 0 2598 2025-03-18 21:43:23.258 2025-03-18 21:43:23.258 434617 12102 1 0 2599 2025-03-19 04:58:20.719 2025-03-19 04:58:20.719 434617 14385 1 0 2600 2025-03-19 05:09:20.314 2025-03-19 05:09:20.314 434617 18011 90 0 2601 2025-03-19 05:09:16.771 2025-03-19 05:09:16.771 434617 20495 9 0 2602 2025-03-19 04:58:20.719 2025-03-19 04:58:20.719 434617 20858 9 0 2603 2025-03-19 05:09:06.331 2025-03-19 05:09:06.331 434617 21526 92 0 2604 2025-03-18 21:46:56.253 2025-03-18 21:46:56.253 434618 902 1 0 2605 2025-03-18 21:54:46.174 2025-03-18 21:54:46.174 434619 1130 2 0 2606 2025-03-18 21:54:11.113 2025-03-18 21:54:11.113 434619 2961 10 0 2607 2025-03-19 04:12:22.558 2025-03-19 04:12:22.558 434619 5293 0 0 2608 2025-03-18 23:00:53.993 2025-03-18 23:00:53.993 434619 7903 19 0 2609 2025-03-18 21:54:46.174 2025-03-18 21:54:46.174 434619 9331 19 0 2610 2025-03-18 21:47:46.478 2025-03-18 23:41:34.977 434619 11378 12 0 2611 2025-03-19 04:12:22.558 2025-03-19 04:12:22.558 434619 11395 1 0 2612 2025-03-19 04:12:22.871 2025-03-19 04:12:22.871 434619 12946 1 0 2613 2025-03-19 00:43:28.386 2025-03-19 00:43:28.386 434619 16296 19 0 2614 2025-03-18 23:41:34.977 2025-03-18 23:41:34.977 434619 16571 19 0 2615 2025-03-19 04:12:22.871 2025-03-19 04:12:22.871 434619 17218 8 0 2616 2025-03-19 04:12:24.645 2025-03-19 04:12:24.645 434619 17710 9 0 2617 2025-03-19 04:12:24.645 2025-03-19 04:12:24.645 434619 19980 81 0 2618 2025-03-18 21:54:11.113 2025-03-18 21:54:11.113 434619 20858 90 0 2619 2025-03-18 23:00:53.993 2025-03-18 23:00:53.993 434619 21424 2 0 2620 2025-03-19 00:43:28.386 2025-03-19 00:43:28.386 434619 21710 2 0 2621 2025-03-18 21:49:20.731 2025-03-18 21:49:20.731 434620 2196 1 0 2622 2025-03-18 21:49:42.272 2025-03-18 21:49:42.272 434621 20674 1 0 2623 2025-03-19 04:44:52.8 2025-03-19 04:44:52.8 434622 694 2 0 2624 2025-03-18 21:51:46.493 2025-03-18 21:51:46.493 434622 716 1 0 2625 2025-03-18 21:58:52.706 2025-03-18 21:58:52.706 434622 8059 19 0 2626 2025-03-18 21:58:52.706 2025-03-18 21:58:52.706 434622 17212 2 0 2627 2025-03-19 04:44:52.8 2025-03-19 04:44:52.8 434622 21408 19 0 2628 2025-03-18 21:55:20.363 2025-03-18 21:55:20.363 434623 1983 1 0 2629 2025-03-18 23:29:11.797 2025-03-18 23:29:11.797 434624 3392 5 0 2630 2025-03-19 03:47:04.212 2025-03-19 03:47:04.212 434624 4259 19 0 2631 2025-03-19 03:47:04.212 2025-03-19 03:47:04.212 434624 9307 2 0 2632 2025-03-18 21:56:06.475 2025-03-18 21:56:06.475 434624 11263 1 0 2633 2025-03-18 23:29:13.572 2025-03-18 23:29:13.572 434624 11942 5 0 2634 2025-03-18 23:29:13.572 2025-03-18 23:29:13.572 434624 14489 1 0 2635 2025-03-18 23:29:11.797 2025-03-18 23:29:11.797 434624 17050 1 0 2636 2025-03-20 04:24:16.56 2025-03-20 04:24:16.56 434625 1120 1 0 2637 2025-03-19 05:17:17.249 2025-03-19 05:17:17.249 434625 1162 75 0 2638 2025-03-19 05:17:17.249 2025-03-19 05:17:17.249 434625 1632 8 0 2639 2025-03-18 21:58:57.596 2025-03-18 21:58:57.596 434625 5759 1 0 2640 2025-03-18 21:56:09.162 2025-03-18 21:56:09.162 434625 7376 1 0 2641 2025-03-20 04:24:16.56 2025-03-20 04:24:16.56 434625 7869 5 0 2642 2025-03-20 04:24:17.078 2025-03-20 04:24:17.078 434625 12921 5 0 2643 2025-03-20 04:24:17.078 2025-03-20 04:24:17.078 434625 17046 1 0 2644 2025-03-18 21:57:53.923 2025-03-18 21:57:53.923 434625 19469 0 0 2645 2025-03-18 21:58:57.596 2025-03-18 21:58:57.596 434625 20864 9 0 2646 2025-03-19 03:58:47.599 2025-03-19 03:58:47.599 434626 959 10 0 2647 2025-03-19 03:58:48.285 2025-03-19 03:58:48.285 434626 1012 1 0 2648 2025-03-19 03:58:49.257 2025-03-19 03:58:49.257 434626 1141 1 0 2649 2025-03-19 03:58:49.257 2025-03-19 03:58:49.257 434626 2335 10 0 2650 2025-03-19 03:58:48.285 2025-03-19 03:58:48.285 434626 8469 10 0 2651 2025-03-19 04:24:42.926 2025-03-19 04:24:42.926 434626 15147 90 0 2652 2025-03-19 04:24:42.926 2025-03-19 04:24:42.926 434626 16309 10 0 2653 2025-03-18 21:58:24.697 2025-03-18 21:58:24.697 434626 19637 0 0 2654 2025-03-18 21:57:56.296 2025-03-18 21:57:56.296 434626 20657 100 0 2655 2025-03-19 03:58:47.599 2025-03-19 03:58:47.599 434626 21712 1 0 2656 2025-03-18 23:42:16.882 2025-03-18 23:42:16.882 434627 616 19 0 2657 2025-03-19 01:47:22.64 2025-03-19 01:47:22.64 434627 649 1 0 2658 2025-03-18 22:11:34.483 2025-03-18 22:11:34.483 434627 673 1 0 2659 2025-03-19 07:02:02.217 2025-03-19 07:02:02.217 434627 695 9 0 2660 2025-03-19 00:22:56.263 2025-03-19 00:22:56.263 434627 712 7 0 2661 2025-03-19 04:53:46.447 2025-03-19 04:53:46.447 434627 826 1 0 2662 2025-03-18 22:37:54.036 2025-03-18 22:37:54.036 434627 828 9 0 2663 2025-03-18 22:06:24.693 2025-03-18 22:06:24.693 434627 909 3 0 2664 2025-03-18 22:40:59.066 2025-03-18 22:40:59.066 434627 1122 1 0 2665 2025-03-18 22:41:10.211 2025-03-18 22:41:10.211 434627 1145 19 0 2666 2025-03-18 22:38:07.674 2025-03-18 22:38:07.674 434627 1236 1 0 2667 2025-03-18 22:38:07.272 2025-03-18 22:38:07.272 434627 1609 1 0 2668 2025-03-18 22:38:07.83 2025-03-18 22:38:07.83 434627 1618 9 0 2669 2025-03-19 04:53:46.976 2025-03-19 04:53:46.976 434627 1650 10 0 2670 2025-03-18 23:42:16.882 2025-03-18 23:42:16.882 434627 1729 2 0 2671 2025-03-19 03:29:55.867 2025-03-19 03:29:55.867 434627 1806 2 0 2672 2025-03-19 03:29:55.867 2025-03-19 03:29:55.867 434627 2088 19 0 2673 2025-03-18 22:38:07.449 2025-03-18 22:38:07.449 434627 2098 1 0 2674 2025-03-18 22:41:10.015 2025-03-18 22:41:10.015 434627 2328 19 0 2675 2025-03-19 04:33:26.6 2025-03-19 04:33:26.6 434627 2514 19 0 2676 2025-03-18 22:38:07.83 2025-03-18 22:38:07.83 434627 2952 1 0 2677 2025-03-18 22:37:55.21 2025-03-18 22:37:55.21 434627 3304 1 0 2678 2025-03-19 04:53:46.842 2025-03-19 04:53:46.842 434627 3396 10 0 2679 2025-03-19 01:47:22.64 2025-03-19 01:47:22.64 434627 3745 10 0 2680 2025-03-19 01:45:41.138 2025-03-19 01:45:41.138 434627 4079 1 0 2681 2025-03-19 04:53:46.581 2025-03-19 04:53:46.581 434627 5293 1 0 2682 2025-03-18 22:40:59.277 2025-03-18 22:40:59.277 434627 8037 9 0 2683 2025-03-19 04:53:46.581 2025-03-19 04:53:46.581 434627 9276 10 0 2684 2025-03-19 04:53:45.995 2025-03-19 04:53:45.995 434627 9537 10 0 2685 2025-03-19 04:53:46.714 2025-03-19 04:53:46.714 434627 10013 10 0 2686 2025-03-19 04:33:26.6 2025-03-19 04:33:26.6 434627 10493 2 0 2687 2025-03-19 03:56:14.4 2025-03-19 03:56:14.4 434627 11220 10 0 2688 2025-03-19 04:53:46.447 2025-03-19 04:53:46.447 434627 11776 10 0 2689 2025-03-19 04:53:46.714 2025-03-19 04:53:46.714 434627 12356 1 0 2690 2025-03-18 22:38:07.449 2025-03-18 22:38:07.449 434627 12656 9 0 2691 2025-03-18 22:37:53.895 2025-03-18 22:37:53.895 434627 13216 1 0 2692 2025-03-18 22:41:10.211 2025-03-18 22:41:10.211 434627 13544 2 0 2693 2025-03-18 22:37:54.036 2025-03-18 22:37:54.036 434627 13763 1 0 2694 2025-03-19 00:31:01.146 2025-03-19 00:31:01.146 434627 13921 4 0 2695 2025-03-19 04:53:46.976 2025-03-19 04:53:46.976 434627 14370 1 0 2696 2025-03-19 14:22:11.601 2025-03-19 14:22:11.601 434627 14909 189 0 2697 2025-03-18 22:06:24.693 2025-03-18 22:06:24.693 434627 15147 27 0 2698 2025-03-18 22:11:34.483 2025-03-18 22:11:34.483 434627 15326 0 0 2699 2025-03-19 03:56:14.4 2025-03-19 03:56:14.4 434627 16250 90 0 2700 2025-03-19 00:31:01.146 2025-03-19 07:02:02.217 434627 16424 37 0 2701 2025-03-18 22:37:55.21 2025-03-18 22:37:55.21 434627 16684 9 0 2702 2025-03-19 04:53:46.842 2025-03-19 04:53:46.842 434627 16830 1 0 2703 2025-03-18 22:41:09.74 2025-03-18 22:41:09.74 434627 16970 2 0 2704 2025-03-18 22:38:07.272 2025-03-18 22:38:07.272 434627 17157 9 0 2705 2025-03-19 14:22:11.601 2025-03-19 14:22:11.601 434627 17570 21 0 2706 2025-03-18 22:41:09.74 2025-03-18 22:41:09.74 434627 18306 19 0 2707 2025-03-18 22:40:59.277 2025-03-18 22:40:59.277 434627 18500 1 0 2708 2025-03-19 04:53:45.995 2025-03-19 04:53:45.995 434627 18743 1 0 2709 2025-03-18 22:40:59.066 2025-03-18 22:40:59.066 434627 18772 9 0 2710 2025-03-18 22:38:07.674 2025-03-18 22:38:07.674 434627 19488 9 0 2711 2025-03-19 01:45:41.138 2025-03-19 01:45:41.138 434627 20225 9 0 2712 2025-03-19 00:43:13.07 2025-03-19 00:43:13.07 434627 20555 19 0 2713 2025-03-19 00:22:56.263 2025-03-19 00:22:56.263 434627 20588 1 0 2714 2025-03-18 21:58:39.136 2025-03-18 21:58:39.136 434627 20623 100 0 2715 2025-03-19 00:43:13.07 2025-03-19 00:43:13.07 434627 21072 2 0 2716 2025-03-18 22:37:53.895 2025-03-18 22:37:53.895 434627 21400 9 0 2717 2025-03-18 22:41:10.015 2025-03-18 22:41:10.015 434627 21832 2 0 2718 2025-03-19 04:43:36.387 2025-03-19 04:43:36.387 434628 659 19 0 2719 2025-03-18 21:58:42.672 2025-03-18 21:58:42.672 434628 732 1 0 2720 2025-03-19 06:20:53.643 2025-03-19 06:20:53.643 434628 9159 19 0 2721 2025-03-18 21:59:17.711 2025-03-18 21:59:17.711 434628 9276 0 0 2722 2025-03-19 04:43:36.387 2025-03-19 04:43:36.387 434628 21012 2 0 2723 2025-03-19 06:20:53.643 2025-03-19 06:20:53.643 434628 21391 2 0 2724 2025-03-18 23:25:08.463 2025-03-18 23:25:08.463 434629 3686 1 0 2725 2025-03-18 23:25:08.463 2025-03-18 23:25:08.463 434629 12245 0 0 2726 2025-03-18 22:00:35.501 2025-03-18 22:00:35.501 434629 20614 1 0 2727 2025-03-18 22:02:01.93 2025-03-18 22:02:01.93 434630 16753 1 0 2728 2025-03-18 22:03:58.999 2025-03-18 22:03:58.999 434631 661 1 0 2729 2025-03-19 04:12:53.242 2025-03-19 04:12:53.242 434631 1465 0 0 2730 2025-03-19 03:58:40.762 2025-03-19 03:58:40.762 434631 1738 10 0 2731 2025-03-19 03:58:41.611 2025-03-19 03:58:41.611 434631 2039 1 0 2732 2025-03-19 04:12:53.242 2025-03-19 04:12:53.242 434631 5017 1 0 2733 2025-03-19 02:41:02.176 2025-03-19 02:41:02.176 434631 7772 57 0 2734 2025-03-19 03:58:41.611 2025-03-19 03:58:41.611 434631 8544 10 0 2735 2025-03-19 03:58:42.645 2025-03-19 03:58:42.645 434631 11523 10 0 2736 2025-03-19 03:58:40.762 2025-03-19 03:58:40.762 434631 13767 1 0 2737 2025-03-19 03:58:42.645 2025-03-19 03:58:42.645 434631 16309 1 0 2738 2025-03-19 04:12:53.474 2025-03-19 04:12:53.474 434631 18901 8 0 2739 2025-03-19 02:41:02.176 2025-03-19 02:41:02.176 434631 19569 6 0 2740 2025-03-19 03:58:27.319 2025-03-19 03:58:27.319 434631 20826 10 0 2741 2025-03-19 04:12:53.474 2025-03-19 04:12:53.474 434631 20924 1 0 2742 2025-03-19 03:58:27.319 2025-03-19 03:58:27.319 434631 21140 1 0 2743 2025-03-18 22:04:14.937 2025-03-18 22:04:14.937 434632 9339 100 0 2744 2025-03-18 22:04:15.524 2025-03-18 22:04:15.524 434633 981 1 0 2745 2025-03-18 22:04:43.402 2025-03-18 22:04:43.402 434634 2735 1 0 2746 2025-03-18 22:09:17.796 2025-03-18 22:09:17.796 434635 769 1 0 2747 2025-03-19 16:08:34.973 2025-03-19 16:08:34.973 434635 17172 9 0 2748 2025-03-19 16:08:34.973 2025-03-19 16:08:34.973 434635 20939 1 0 2749 2025-03-18 22:10:12.958 2025-03-18 22:10:12.958 434636 13162 1 0 2750 2025-03-18 23:07:03.052 2025-03-18 23:07:03.052 434636 17713 19 0 2751 2025-03-18 23:07:03.052 2025-03-18 23:07:03.052 434636 18270 2 0 2752 2025-03-18 22:46:23.323 2025-03-18 22:46:23.323 434637 929 1 0 2753 2025-03-19 06:25:28.287 2025-03-19 06:25:28.287 434637 1038 31 0 2754 2025-03-19 06:26:04.604 2025-03-19 06:26:04.604 434637 1310 31 0 2755 2025-03-19 01:47:06.111 2025-03-19 01:47:06.111 434637 1394 10 0 2756 2025-03-19 01:47:06.111 2025-03-19 01:47:06.111 434637 3392 1 0 2757 2025-03-19 00:31:09.621 2025-03-19 00:31:09.621 434637 4459 4 0 2758 2025-03-19 05:10:07.493 2025-03-19 05:10:07.493 434637 4602 3 0 2759 2025-03-19 05:10:07.493 2025-03-19 05:10:07.493 434637 8505 27 0 2760 2025-03-19 06:25:28.287 2025-03-19 06:25:28.287 434637 8541 3 0 2761 2025-03-19 04:41:02.867 2025-03-19 04:41:02.867 434637 8954 2 0 2762 2025-03-18 23:51:23.668 2025-03-18 23:51:23.668 434637 9350 90 0 2763 2025-03-18 22:46:23.323 2025-03-18 22:46:23.323 434637 9356 9 0 2764 2025-03-19 00:31:09.621 2025-03-19 00:31:09.621 434637 10302 36 0 2765 2025-03-19 06:26:04.604 2025-03-19 06:26:04.604 434637 10611 3 0 2766 2025-03-19 04:41:02.867 2025-03-19 04:41:02.867 434637 14941 19 0 2767 2025-03-19 00:43:25.404 2025-03-19 00:43:25.404 434637 16353 2 0 2768 2025-03-19 05:10:08.611 2025-03-19 05:10:08.611 434637 16978 27 0 2769 2025-03-19 00:17:09.912 2025-03-19 00:17:09.912 434637 17147 7 0 2770 2025-03-19 05:10:08.611 2025-03-19 05:10:08.611 434637 17541 243 0 2771 2025-03-19 00:17:09.912 2025-03-19 00:17:09.912 434637 17570 1 0 2772 2025-03-19 00:43:25.404 2025-03-19 00:43:25.404 434637 19854 19 0 2773 2025-03-18 22:12:25.218 2025-03-18 22:12:25.218 434637 21148 10 0 2774 2025-03-18 23:51:23.668 2025-03-18 23:51:23.668 434637 21639 10 0 2775 2025-03-18 22:21:30.798 2025-03-18 22:21:30.798 434638 919 1 0 2776 2025-03-18 22:22:55.368 2025-03-18 22:22:55.368 434639 10280 1 0 2777 2025-03-19 07:24:46.52 2025-03-19 07:24:46.52 434640 1585 1 0 2778 2025-03-19 04:00:00.604 2025-03-19 04:00:00.604 434640 2039 2 0 2779 2025-03-19 04:00:00.604 2025-03-19 04:00:00.604 434640 3392 19 0 2780 2025-03-18 22:26:39.861 2025-03-18 22:26:39.861 434640 12609 1 0 2781 2025-03-19 07:24:46.52 2025-03-19 07:24:46.52 434640 15213 0 0 2782 2025-03-18 22:27:34.815 2025-03-18 22:27:34.815 434640 16230 0 0 2783 2025-03-18 22:28:30.09 2025-03-18 22:28:30.09 434641 913 100 0 2784 2025-03-19 04:13:50.954 2025-03-19 04:13:50.954 434641 1472 0 0 2785 2025-03-19 04:13:52.332 2025-03-19 04:13:52.332 434641 1761 81 0 2786 2025-03-19 04:13:51.391 2025-03-19 04:13:51.391 434641 2513 8 0 2787 2025-03-19 04:13:51.391 2025-03-19 04:13:51.391 434641 5444 1 0 2788 2025-03-19 04:13:50.954 2025-03-19 04:13:50.954 434641 10536 1 0 2789 2025-03-19 04:13:52.332 2025-03-19 04:13:52.332 434641 18473 9 0 2790 2025-03-19 07:50:22.264 2025-03-19 07:50:22.264 434642 632 9 0 2791 2025-03-19 00:10:32.694 2025-03-19 00:10:32.694 434642 635 14 0 2792 2025-03-18 23:52:03.441 2025-03-18 23:52:03.441 434642 715 1 0 2793 2025-03-19 03:35:31.465 2025-03-19 03:35:31.465 434642 761 10 0 2794 2025-03-18 23:52:04.36 2025-03-18 23:52:04.36 434642 889 0 0 2795 2025-03-19 03:35:32.19 2025-03-19 03:35:32.19 434642 928 1 0 2796 2025-03-19 00:10:32.694 2025-03-19 00:10:32.694 434642 960 2 0 2797 2025-03-19 07:50:24.063 2025-03-19 07:50:24.063 434642 999 9 0 2798 2025-03-19 07:50:22.305 2025-03-19 07:50:22.305 434642 1213 1 0 2799 2025-03-19 03:35:30.874 2025-03-19 03:35:30.874 434642 1474 10 0 2800 2025-03-18 23:52:04.957 2025-03-18 23:52:04.957 434642 2123 0 0 2801 2025-03-18 22:33:26.376 2025-03-18 22:33:26.376 434642 2156 21 0 2802 2025-03-19 10:16:10.017 2025-03-19 10:16:10.017 434642 2508 23 0 2803 2025-03-19 07:50:22.796 2025-03-19 07:50:22.796 434642 2942 1 0 2804 2025-03-19 07:50:22.796 2025-03-19 07:50:22.796 434642 3990 9 0 2805 2025-03-18 23:52:04.038 2025-03-18 23:52:04.038 434642 5761 0 0 2806 2025-03-18 23:00:20.163 2025-03-18 23:00:20.163 434642 6030 19 0 2807 2025-03-18 23:52:03.747 2025-03-18 23:52:03.747 434642 7746 1 0 2808 2025-03-19 07:50:22.264 2025-03-19 07:50:22.264 434642 9334 1 0 2809 2025-03-19 07:50:23.942 2025-03-19 07:50:23.942 434642 9349 1 0 2810 2025-03-18 23:52:04.36 2025-03-18 23:52:04.36 434642 12774 1 0 2811 2025-03-19 03:35:32.19 2025-03-19 03:35:32.19 434642 13878 10 0 2812 2025-03-19 07:50:24.063 2025-03-19 07:50:24.063 434642 14152 1 0 2813 2025-03-19 00:44:16.863 2025-03-19 00:44:16.863 434642 16789 2 0 2814 2025-03-18 23:52:03.441 2025-03-18 23:52:03.441 434642 16808 0 0 2815 2025-03-18 23:52:03.747 2025-03-18 23:52:03.747 434642 17291 0 0 2816 2025-03-19 03:35:30.874 2025-03-19 03:35:30.874 434642 17522 1 0 2817 2025-03-19 10:16:10.017 2025-03-19 10:16:10.017 434642 17824 3 0 2818 2025-03-19 03:35:31.465 2025-03-19 03:35:31.465 434642 18601 1 0 2819 2025-03-19 00:44:16.863 2025-03-19 00:44:16.863 434642 18865 19 0 2820 2025-03-19 00:55:36.42 2025-03-19 00:55:36.42 434642 19494 1 0 2821 2025-03-18 23:52:04.957 2025-03-18 23:52:04.957 434642 19930 1 0 2822 2025-03-19 00:55:36.42 2025-03-19 00:55:36.42 434642 20133 9 0 2823 2025-03-18 23:52:04.038 2025-03-18 23:52:04.038 434642 20922 1 0 2824 2025-03-18 23:00:20.163 2025-03-18 23:00:20.163 434642 21051 2 0 2825 2025-03-19 14:04:54.03 2025-03-19 14:04:54.03 434642 21427 2 0 2826 2025-03-19 07:50:22.305 2025-03-19 07:50:22.305 434642 21647 9 0 2827 2025-03-19 07:50:23.942 2025-03-19 07:50:23.942 434642 21710 9 0 2828 2025-03-19 14:04:54.03 2025-03-19 14:04:54.03 434642 21768 19 0 2829 2025-03-18 22:34:06.457 2025-03-18 22:34:06.457 434643 4984 1 0 2830 2025-03-19 03:08:56.488 2025-03-19 03:08:56.488 434643 10433 1 0 2831 2025-03-19 03:06:06.145 2025-03-19 03:06:06.145 434643 20776 10 0 2832 2025-03-19 03:06:06.145 2025-03-19 03:06:06.145 434643 21254 1 0 2833 2025-03-19 03:08:56.488 2025-03-19 03:08:56.488 434643 21383 8 0 2834 2025-03-18 22:35:34.468 2025-03-18 22:35:34.468 434644 20026 1 0 2835 2025-03-18 22:37:04.115 2025-03-18 22:37:04.115 434645 21444 1 0 2836 2025-03-18 23:52:09.344 2025-03-18 23:52:09.344 434646 636 1 0 2837 2025-03-18 23:52:08.387 2025-03-18 23:52:08.387 434646 694 1 0 2838 2025-03-19 07:50:27.619 2025-03-19 07:50:27.619 434646 797 9 0 2839 2025-03-18 23:00:14.454 2025-03-18 23:00:14.454 434646 825 19 0 2840 2025-03-19 00:10:33.218 2025-03-19 07:50:26.493 434646 1785 23 0 2841 2025-03-18 23:52:09.344 2025-03-18 23:52:09.344 434646 2431 0 0 2842 2025-03-19 07:50:25.203 2025-03-19 07:50:25.203 434646 4079 9 0 2843 2025-03-18 23:52:07.842 2025-03-18 23:52:07.842 434646 4802 0 0 2844 2025-03-18 23:52:07.502 2025-03-18 23:52:07.502 434646 5495 1 0 2845 2025-03-19 01:39:03.928 2025-03-19 01:39:03.928 434646 5794 1 0 2846 2025-03-18 23:52:08.873 2025-03-18 23:52:08.873 434646 6137 0 0 2847 2025-03-19 00:38:33.002 2025-03-19 00:38:33.002 434646 6229 9 0 2848 2025-03-19 07:50:27.619 2025-03-19 07:50:27.619 434646 7766 1 0 2849 2025-03-18 23:52:07.842 2025-03-18 23:52:07.842 434646 7809 1 0 2850 2025-03-18 23:52:08.096 2025-03-18 23:52:08.096 434646 8998 0 0 2851 2025-03-19 01:39:03.928 2025-03-19 01:39:03.928 434646 10094 9 0 2852 2025-03-18 23:52:08.873 2025-03-18 23:52:08.873 434646 10096 1 0 2853 2025-03-18 23:52:08.387 2025-03-18 23:52:08.387 434646 11423 0 0 2854 2025-03-19 07:50:25.93 2025-03-19 07:50:25.93 434646 12334 9 0 2855 2025-03-19 07:50:25.93 2025-03-19 07:50:25.93 434646 12768 1 0 2856 2025-03-18 22:37:18.851 2025-03-18 22:37:18.851 434646 12774 210 0 2857 2025-03-19 00:44:13.003 2025-03-19 00:44:13.003 434646 15045 2 0 2858 2025-03-19 00:38:33.002 2025-03-19 00:38:33.002 434646 16543 1 0 2859 2025-03-18 23:52:07.502 2025-03-18 23:52:07.502 434646 18188 0 0 2860 2025-03-19 07:50:25.203 2025-03-19 07:50:25.203 434646 19527 1 0 2861 2025-03-19 07:50:27.113 2025-03-19 07:50:27.113 434646 19663 1 0 2862 2025-03-18 23:00:14.454 2025-03-18 23:00:14.454 434646 20657 2 0 2863 2025-03-19 00:10:33.218 2025-03-19 00:10:33.218 434646 20980 2 0 2864 2025-03-18 23:52:08.096 2025-03-18 23:52:08.096 434646 21061 1 0 2865 2025-03-19 00:44:13.003 2025-03-19 00:44:13.003 434646 21072 19 0 2866 2025-03-19 07:50:26.493 2025-03-19 07:50:27.113 434646 21506 10 0 2867 2025-03-18 22:37:22.722 2025-03-18 22:37:22.722 434647 13854 100 0 2868 2025-03-19 00:05:58.09 2025-03-19 00:05:58.09 434647 14515 19 0 2869 2025-03-19 00:05:58.09 2025-03-19 00:05:58.09 434647 19189 2 0 2870 2025-03-18 22:38:26.394 2025-03-18 22:38:26.394 434648 10283 1 0 2871 2025-03-18 22:39:53.976 2025-03-18 22:39:53.976 434649 16432 1 0 2872 2025-03-19 08:53:36.289 2025-03-19 08:53:36.289 434650 4798 19 0 2873 2025-03-19 08:53:36.289 2025-03-19 08:53:36.289 434650 8570 2 0 2874 2025-03-18 22:47:09.437 2025-03-18 22:47:09.437 434650 9352 0 0 2875 2025-03-18 22:46:01.806 2025-03-18 22:46:01.806 434650 11491 0 0 2876 2025-03-18 22:40:45.604 2025-03-18 22:40:45.604 434650 18231 1 0 2877 2025-03-18 22:45:13.988 2025-03-18 22:45:13.988 434650 21631 0 0 2878 2025-03-18 23:58:56.464 2025-03-18 23:58:56.464 434651 768 5 0 2879 2025-03-18 23:58:57.145 2025-03-18 23:58:57.145 434651 928 1 0 2880 2025-03-18 22:40:47.456 2025-03-18 22:40:47.456 434651 1658 1 0 2881 2025-03-19 07:25:51.208 2025-03-19 07:25:51.208 434651 2016 0 0 2882 2025-03-18 23:58:57.718 2025-03-18 23:58:57.718 434651 4225 5 0 2883 2025-03-18 23:58:57.718 2025-03-18 23:58:57.718 434651 9426 1 0 2884 2025-03-18 23:58:56.464 2025-03-18 23:58:56.464 434651 10433 1 0 2885 2025-03-19 07:25:51.208 2025-03-19 07:25:51.208 434651 18743 1 0 2886 2025-03-18 23:58:57.145 2025-03-18 23:58:57.145 434651 21020 5 0 2887 2025-03-19 01:29:48.055 2025-03-19 01:29:48.055 434652 1519 19 0 2888 2025-03-18 22:41:18.168 2025-03-18 22:41:18.168 434652 7903 1 0 2889 2025-03-19 01:29:48.055 2025-03-19 01:29:48.055 434652 21063 2 0 2890 2025-03-18 22:42:15.581 2025-03-18 22:42:15.581 434653 16816 1 0 2891 2025-03-19 18:47:12.553 2025-03-19 18:47:12.553 434654 1618 5 0 2892 2025-03-19 18:47:10.39 2025-03-19 18:47:10.39 434654 2640 1 0 2893 2025-03-18 22:42:49.418 2025-03-18 22:42:49.418 434654 4313 1 0 2894 2025-03-19 18:47:12.553 2025-03-19 18:47:12.553 434654 17519 1 0 2895 2025-03-19 18:47:11.318 2025-03-19 18:47:11.318 434654 19471 1 0 2896 2025-03-19 18:47:10.846 2025-03-19 18:47:10.846 434654 20715 1 0 2897 2025-03-19 18:47:11.318 2025-03-19 18:47:11.318 434654 21062 5 0 2898 2025-03-19 18:47:10.846 2025-03-19 18:47:10.846 434654 21233 5 0 2899 2025-03-19 18:47:10.39 2025-03-19 18:47:10.39 434654 21713 5 0 2900 2025-03-18 22:44:02.126 2025-03-18 22:44:02.126 434655 16948 1 0 2901 2025-03-18 23:48:34.443 2025-03-18 23:48:34.443 434656 1549 10 0 2902 2025-03-18 22:48:09.713 2025-03-18 22:48:09.713 434656 9169 1 0 2903 2025-03-18 23:48:34.443 2025-03-18 23:48:34.443 434656 12277 90 0 2904 2025-03-19 13:03:57.045 2025-03-19 13:03:57.045 434657 1718 19 0 2905 2025-03-19 13:03:57.045 2025-03-19 13:03:57.045 434657 2156 2 0 2906 2025-03-18 22:48:55.919 2025-03-18 22:48:55.919 434657 7827 1 0 2907 2025-03-19 03:44:35.477 2025-03-19 03:44:35.477 434658 795 2 0 2908 2025-03-19 03:44:35.477 2025-03-19 03:44:35.477 434658 5128 19 0 2909 2025-03-18 22:51:29.059 2025-03-18 22:51:29.059 434658 21539 1 0 2910 2025-03-19 00:35:46.303 2025-03-19 00:35:46.303 434659 618 36 0 2911 2025-03-19 00:35:46.303 2025-03-19 00:35:46.303 434659 11716 4 0 2912 2025-03-18 22:53:15.091 2025-03-18 22:53:15.091 434659 17991 1 0 2913 2025-03-18 23:45:10.847 2025-03-18 23:45:10.847 434660 770 19 0 2914 2025-03-19 03:57:24.737 2025-03-19 03:57:24.737 434660 8541 2 0 2915 2025-03-18 23:45:10.847 2025-03-18 23:45:10.847 434660 12097 2 0 2916 2025-03-18 23:02:55.043 2025-03-18 23:02:55.043 434660 17221 21 0 2917 2025-03-18 22:54:13.599 2025-03-18 22:54:13.599 434660 18731 1 0 2918 2025-03-19 03:57:24.737 2025-03-19 03:57:24.737 434660 20185 19 0 2919 2025-03-19 05:01:20.682 2025-03-19 05:01:20.682 434661 633 75 0 2920 2025-03-19 05:01:21.203 2025-03-19 05:01:21.203 434661 5359 75 0 2921 2025-03-19 05:01:21.203 2025-03-19 05:01:21.203 434661 8926 8 0 2922 2025-03-18 22:56:03.851 2025-03-18 22:56:03.851 434661 17991 1 0 2923 2025-03-19 05:01:20.682 2025-03-19 05:01:20.682 434661 19459 8 0 2924 2025-03-19 01:35:50.262 2025-03-19 01:35:50.262 434662 647 2 0 2925 2025-03-18 22:58:36.571 2025-03-18 22:58:36.571 434662 17570 1 0 2926 2025-03-19 01:35:50.262 2025-03-19 01:35:50.262 434662 20710 19 0 2927 2025-03-18 23:00:56.213 2025-03-18 23:00:56.213 434663 794 1 0 2928 2025-03-18 23:01:23.016 2025-03-18 23:01:23.016 434664 14489 1 0 2929 2025-03-19 09:44:48.973 2025-03-19 09:44:48.973 434665 616 1 0 2930 2025-03-18 23:40:44.222 2025-03-18 23:40:44.222 434665 699 2 0 2931 2025-03-19 05:11:21.538 2025-03-19 05:11:21.538 434665 859 90 0 2932 2025-03-19 05:01:52.243 2025-03-19 05:01:52.243 434665 964 8 0 2933 2025-03-19 07:41:08.961 2025-03-19 07:41:08.961 434665 979 105 0 2934 2025-03-19 03:30:02.376 2025-03-19 03:30:02.376 434665 1389 19 0 2935 2025-03-19 05:11:21.538 2025-03-19 05:11:21.538 434665 1483 10 0 2936 2025-03-19 07:03:26.84 2025-03-19 07:03:26.84 434665 1577 1 0 2937 2025-03-19 07:03:26.84 2025-03-19 07:03:26.84 434665 1624 9 0 2938 2025-03-18 23:27:04.157 2025-03-18 23:27:04.157 434665 2961 19 0 2939 2025-03-18 23:46:39.983 2025-03-18 23:46:39.983 434665 3213 10 0 2940 2025-03-19 00:15:45.98 2025-03-19 00:15:45.98 434665 3400 1 0 2941 2025-03-19 05:01:52.243 2025-03-19 05:01:52.243 434665 3417 75 0 2942 2025-03-19 09:44:49.087 2025-03-19 09:44:49.087 434665 4084 1 0 2943 2025-03-19 19:06:16.155 2025-03-19 19:06:16.155 434665 4692 20 0 2944 2025-03-19 09:44:49.193 2025-03-19 09:44:49.193 434665 4831 10 0 2945 2025-03-19 04:14:34.213 2025-03-19 04:14:34.213 434665 5527 0 0 2946 2025-03-19 00:38:46.359 2025-03-19 00:38:46.359 434665 6777 0 0 2947 2025-03-19 07:03:27.625 2025-03-19 07:03:27.625 434665 8459 9 0 2948 2025-03-20 03:19:09.194 2025-03-20 03:19:09.194 434665 8508 1 0 2949 2025-03-19 04:14:34.213 2025-03-19 04:14:34.213 434665 9109 1 0 2950 2025-03-19 07:03:28.663 2025-03-19 07:03:28.663 434665 9334 9 0 2951 2025-03-19 05:21:13.634 2025-03-19 05:21:13.634 434665 9339 19 0 2952 2025-03-19 00:31:07.39 2025-03-19 00:31:07.39 434665 10944 4 0 2953 2025-03-18 23:02:13.776 2025-03-18 23:02:13.776 434665 11153 10 0 2954 2025-03-18 23:40:44.222 2025-03-18 23:40:44.222 434665 11275 19 0 2955 2025-03-19 03:47:35.903 2025-03-19 03:47:35.903 434665 11395 38 0 2956 2025-03-18 23:25:10.561 2025-03-18 23:25:10.561 434665 11417 90 0 2957 2025-03-19 09:44:48.973 2025-03-19 09:44:48.973 434665 11829 10 0 2958 2025-03-19 00:31:07.39 2025-03-19 00:31:07.39 434665 12261 36 0 2959 2025-03-19 07:03:28.663 2025-03-19 07:03:28.663 434665 12769 1 0 2960 2025-03-19 05:17:07.981 2025-03-19 05:17:07.981 434665 12774 115 0 2961 2025-03-19 00:43:18.65 2025-03-19 00:43:18.65 434665 13763 2 0 2962 2025-03-18 23:46:39.983 2025-03-18 23:46:39.983 434665 14225 90 0 2963 2025-03-19 03:30:02.376 2025-03-19 03:30:02.376 434665 14910 2 0 2964 2025-03-19 04:14:34.434 2025-03-19 04:14:34.434 434665 15180 1 0 2965 2025-03-19 09:44:49.087 2025-03-19 09:44:49.087 434665 15488 10 0 2966 2025-03-20 03:19:09.194 2025-03-20 03:19:09.194 434665 15510 5 0 2967 2025-03-19 00:15:45.98 2025-03-19 00:15:45.98 434665 15536 7 0 2968 2025-03-19 07:03:27.625 2025-03-19 07:03:27.625 434665 16267 1 0 2969 2025-03-19 04:14:34.434 2025-03-19 04:33:28.312 434665 16354 27 0 2970 2025-03-19 07:03:28.147 2025-03-19 07:03:28.147 434665 16424 9 0 2971 2025-03-19 00:43:18.65 2025-03-19 00:43:18.65 434665 16447 19 0 2972 2025-03-19 07:03:29.015 2025-03-19 07:03:29.015 434665 16876 1 0 2973 2025-03-19 05:17:07.981 2025-03-19 05:17:07.981 434665 17103 13 0 2974 2025-03-19 05:21:13.634 2025-03-19 05:21:13.634 434665 17713 2 0 2975 2025-03-19 03:47:35.903 2025-03-19 03:47:35.903 434665 18241 4 0 2976 2025-03-18 23:25:10.561 2025-03-18 23:25:10.561 434665 18368 10 0 2977 2025-03-19 07:03:29.015 2025-03-19 07:03:29.015 434665 18930 9 0 2978 2025-03-19 07:03:28.147 2025-03-19 07:03:28.147 434665 19199 1 0 2979 2025-03-19 00:38:46.359 2025-03-19 00:38:46.359 434665 19303 1 0 2980 2025-03-19 05:01:51.618 2025-03-19 05:01:51.618 434665 20454 8 0 2981 2025-03-19 05:01:51.618 2025-03-19 05:01:51.618 434665 20924 75 0 2982 2025-03-19 19:06:16.155 2025-03-19 19:06:16.155 434665 21047 180 0 2983 2025-03-19 04:33:28.312 2025-03-19 04:33:28.312 434665 21064 2 0 2984 2025-03-19 07:41:08.961 2025-03-19 07:41:08.961 434665 21166 12 0 2985 2025-03-19 09:44:49.193 2025-03-19 09:44:49.193 434665 21207 1 0 2986 2025-03-18 23:27:04.157 2025-03-18 23:27:04.157 434665 21389 2 0 2987 2025-03-18 23:06:02.258 2025-03-18 23:06:02.258 434666 3461 1 0 2988 2025-03-18 23:06:14.7 2025-03-18 23:06:14.7 434667 9351 1 0 2989 2025-03-18 23:07:18.818 2025-03-18 23:07:18.818 434668 21062 1 0 2990 2025-03-18 23:09:17.701 2025-03-18 23:09:17.701 434669 21413 1 0 2991 2025-03-18 23:10:39.723 2025-03-18 23:10:39.723 434670 11798 1 0 2992 2025-03-18 23:12:00.353 2025-03-18 23:12:00.353 434671 13249 1 0 2993 2025-03-18 23:13:41.724 2025-03-18 23:13:41.724 434672 669 1 0 2994 2025-03-18 23:20:43.473 2025-03-18 23:20:43.473 434673 17522 1 0 2995 2025-03-18 23:21:53.787 2025-03-18 23:21:53.787 434673 20881 0 0 2996 2025-03-18 23:27:29.171 2025-03-18 23:27:29.171 434674 1114 2 0 2997 2025-03-18 23:27:27.949 2025-03-18 23:27:27.949 434674 2176 19 0 2998 2025-03-19 19:05:59.15 2025-03-19 19:05:59.15 434674 3353 38 0 2999 2025-03-19 00:38:56.728 2025-03-19 00:38:56.728 434674 7766 1 0 3000 2025-03-19 00:38:56.728 2025-03-19 00:38:56.728 434674 9378 0 0 3001 2025-03-18 23:27:27.949 2025-03-18 23:27:27.949 434674 9450 2 0 3002 2025-03-19 19:05:59.15 2025-03-19 19:05:59.15 434674 12566 4 0 3003 2025-03-19 05:26:44.526 2025-03-19 05:26:44.526 434674 16230 2 0 3004 2025-03-18 23:27:29.171 2025-03-18 23:27:29.171 434674 19826 19 0 3005 2025-03-19 05:26:44.526 2025-03-19 05:26:44.526 434674 21136 19 0 3006 2025-03-18 23:24:53.13 2025-03-18 23:24:53.13 434674 21521 1 0 3007 2025-03-19 03:34:16.197 2025-03-19 03:34:16.197 434675 1114 0 0 3008 2025-03-19 03:34:16.197 2025-03-19 03:34:16.197 434675 2065 2 0 3009 2025-03-18 23:36:11.526 2025-03-18 23:36:11.526 434675 12169 1 0 3010 2025-03-18 23:36:30.15 2025-03-18 23:36:30.15 434676 9339 1 0 3011 2025-03-18 23:37:36.528 2025-03-18 23:37:36.528 434677 5757 1 0 3012 2025-03-18 23:45:53.777 2025-03-18 23:45:53.777 434678 780 1 0 3013 2025-03-18 23:48:04.628 2025-03-18 23:48:04.628 434679 1761 1 0 3014 2025-03-18 23:53:55.974 2025-03-18 23:53:55.974 434680 2437 0 0 3015 2025-03-19 07:26:29.62 2025-03-19 07:26:29.62 434680 4763 1 0 3016 2025-03-18 23:50:14.057 2025-03-18 23:50:14.057 434680 5597 1 0 3017 2025-03-19 07:26:29.62 2025-03-19 07:26:29.62 434680 20436 9 0 3018 2025-03-19 00:13:42.939 2025-03-19 00:13:42.939 434681 993 19 0 3019 2025-03-19 00:13:42.939 2025-03-19 00:13:42.939 434681 1631 2 0 3020 2025-03-18 23:51:12.794 2025-03-18 23:51:12.794 434681 6160 1 0 3021 2025-03-18 23:52:52.675 2025-03-18 23:52:52.675 434682 721 1 0 3022 2025-03-19 03:33:19.603 2025-03-19 03:33:19.603 434682 4692 2 0 3023 2025-03-18 23:56:53.834 2025-03-18 23:56:53.834 434682 12736 0 0 3024 2025-03-19 03:33:19.603 2025-03-19 03:33:19.603 434682 21768 19 0 3025 2025-03-18 23:53:38.756 2025-03-18 23:53:38.756 434683 18116 1 0 3026 2025-03-19 01:29:08.734 2025-03-19 01:29:08.734 434684 960 19 0 3027 2025-03-19 01:29:08.734 2025-03-19 01:29:08.734 434684 986 2 0 3028 2025-03-18 23:55:56.304 2025-03-18 23:55:56.304 434684 1576 0 0 3029 2025-03-18 23:54:48.796 2025-03-18 23:54:48.796 434684 1618 1 0 3030 2025-03-18 23:55:37.092 2025-03-18 23:55:37.092 434684 15526 0 0 3031 2025-03-19 04:14:44.548 2025-03-19 04:14:44.548 434685 635 27 0 3032 2025-03-19 04:14:44.548 2025-03-19 04:14:44.548 434685 657 3 0 3033 2025-03-19 02:00:28.581 2025-03-19 02:00:28.581 434685 1094 19 0 3034 2025-03-19 00:30:55.589 2025-03-19 00:30:55.589 434685 4989 1 0 3035 2025-03-19 05:05:40.48 2025-03-19 05:05:40.48 434685 5306 19 0 3036 2025-03-19 04:14:52.573 2025-03-19 04:14:52.573 434685 6149 243 0 3037 2025-03-19 02:57:58.222 2025-03-19 02:57:58.222 434685 6419 4 0 3038 2025-03-19 01:59:28.157 2025-03-19 01:59:28.157 434685 7992 1 0 3039 2025-03-19 09:26:19.868 2025-03-19 09:26:19.868 434685 9166 3 0 3040 2025-03-19 02:57:58.222 2025-03-19 02:57:58.222 434685 9695 36 0 3041 2025-03-19 04:14:52.573 2025-03-19 04:14:52.573 434685 9820 27 0 3042 2025-03-19 02:00:28.581 2025-03-19 02:00:28.581 434685 11942 2 0 3043 2025-03-18 23:58:34.845 2025-03-18 23:58:34.845 434685 15556 10 0 3044 2025-03-19 01:44:17.182 2025-03-19 01:44:17.182 434685 16387 1 0 3045 2025-03-19 04:33:38.725 2025-03-19 04:33:38.725 434685 17519 2 0 3046 2025-03-19 05:05:40.48 2025-03-19 05:05:40.48 434685 18309 2 0 3047 2025-03-19 00:30:55.589 2025-03-19 00:30:55.589 434685 18557 0 0 3048 2025-03-19 04:33:38.725 2025-03-19 04:33:38.725 434685 20680 19 0 3049 2025-03-19 01:44:17.182 2025-03-19 01:44:17.182 434685 21314 9 0 3050 2025-03-19 01:59:28.157 2025-03-19 01:59:28.157 434685 21421 10 0 3051 2025-03-19 09:26:19.868 2025-03-19 09:26:19.868 434685 21791 23 0 3052 2025-03-19 00:04:13.877 2025-03-19 00:04:13.877 434686 21498 1 0 3053 2025-03-19 01:27:50.049 2025-03-19 01:27:50.049 434687 775 2 0 3054 2025-03-19 01:27:50.049 2025-03-19 01:27:50.049 434687 794 19 0 3055 2025-03-19 00:05:08.335 2025-03-19 00:05:08.335 434687 19459 1 0 3056 2025-03-19 03:34:04.217 2025-03-19 03:34:04.217 434688 8998 2 0 3057 2025-03-19 00:09:04.858 2025-03-19 00:09:04.858 434688 11378 0 0 3058 2025-03-19 03:34:04.217 2025-03-19 03:34:04.217 434688 19303 0 0 3059 2025-03-19 00:07:07.063 2025-03-19 00:07:07.063 434688 21136 1 0 3060 2025-03-19 00:08:29.337 2025-03-19 00:08:29.337 434688 21145 0 0 3061 2025-03-19 03:33:58.125 2025-03-19 03:33:58.125 434689 9366 2 0 3062 2025-03-19 00:07:28.899 2025-03-19 00:07:28.899 434689 19071 1 0 3063 2025-03-19 03:33:58.125 2025-03-19 03:33:58.125 434689 21710 0 0 3064 2025-03-19 00:07:51.049 2025-03-19 00:07:51.049 434690 16270 1 0 3065 2025-03-19 01:23:07.652 2025-03-19 01:23:07.652 434691 8242 19 0 3066 2025-03-19 01:23:07.652 2025-03-19 01:23:07.652 434691 10862 2 0 3067 2025-03-19 00:08:13.135 2025-03-19 00:08:13.135 434691 11240 1 0 3068 2025-03-19 00:10:33.302 2025-03-19 00:10:33.302 434692 9167 1 0 3069 2025-03-19 00:10:41.021 2025-03-19 00:10:41.021 434692 12768 0 0 3070 2025-03-19 00:10:50.95 2025-03-19 00:10:50.95 434692 20745 0 0 3071 2025-03-19 00:13:06.245 2025-03-19 00:13:06.245 434693 1881 10 0 3072 2025-03-19 00:13:25.242 2025-03-19 00:13:25.242 434693 16562 0 0 3073 2025-03-19 00:14:09.329 2025-03-19 00:14:09.329 434694 1007 10 0 3074 2025-03-20 08:56:07.82 2025-03-20 08:56:07.82 434695 629 19 0 3075 2025-03-19 01:44:15.677 2025-03-19 01:44:15.677 434695 848 1 0 3076 2025-03-19 04:14:59.71 2025-03-19 04:14:59.71 434695 1044 1 0 3077 2025-03-19 01:44:15.677 2025-03-19 01:44:15.677 434695 1483 9 0 3078 2025-03-19 01:25:20.158 2025-03-19 01:25:20.158 434695 1617 10 0 3079 2025-03-19 04:15:01.154 2025-03-19 04:15:01.154 434695 2674 9 0 3080 2025-03-19 04:14:59.795 2025-03-19 04:14:59.795 434695 3411 8 0 3081 2025-03-19 04:33:32.949 2025-03-19 04:33:32.949 434695 3506 19 0 3082 2025-03-19 01:25:20.158 2025-03-19 01:25:20.158 434695 5425 90 0 3083 2025-03-19 06:02:52.004 2025-03-19 06:02:52.004 434695 7773 1 0 3084 2025-03-19 05:05:43.564 2025-03-19 05:05:43.564 434695 9107 19 0 3085 2025-03-19 04:33:32.949 2025-03-19 04:33:32.949 434695 9355 2 0 3086 2025-03-20 08:56:09.024 2025-03-20 08:56:09.024 434695 14651 19 0 3087 2025-03-19 01:15:06.043 2025-03-19 01:15:06.043 434695 15588 1 0 3088 2025-03-19 04:14:59.795 2025-03-19 04:14:59.795 434695 16267 1 0 3089 2025-03-20 08:56:08.246 2025-03-20 08:56:08.246 434695 16939 2 0 3090 2025-03-19 01:15:06.043 2025-03-19 01:15:06.043 434695 17552 10 0 3091 2025-03-20 08:56:08.246 2025-03-20 08:56:08.246 434695 18468 19 0 3092 2025-03-19 04:14:59.71 2025-03-19 04:14:59.71 434695 18473 0 0 3093 2025-03-19 00:20:24.261 2025-03-19 00:20:24.261 434695 19199 10 0 3094 2025-03-19 06:02:52.004 2025-03-19 06:02:52.004 434695 20669 5 0 3095 2025-03-20 08:56:09.024 2025-03-20 08:56:09.024 434695 20904 2 0 3096 2025-03-19 04:15:01.154 2025-03-19 04:15:01.154 434695 21104 81 0 3097 2025-03-20 08:56:07.82 2025-03-20 08:56:07.82 434695 21139 2 0 3098 2025-03-19 05:05:43.564 2025-03-19 05:05:43.564 434695 21514 2 0 3099 2025-03-19 08:53:37.061 2025-03-19 08:53:37.061 434696 8472 19 0 3100 2025-03-19 00:22:00.677 2025-03-19 00:22:00.677 434696 10698 1 0 3101 2025-03-19 00:22:22.354 2025-03-19 00:22:22.354 434696 12779 0 0 3102 2025-03-19 08:53:37.061 2025-03-19 08:53:37.061 434696 17162 2 0 3103 2025-03-19 01:08:57.759 2025-03-19 01:08:57.759 434697 814 10 0 3104 2025-03-19 00:25:00.141 2025-03-19 00:25:00.141 434697 1424 2 0 3105 2025-03-19 01:08:57.759 2025-03-19 01:08:57.759 434697 2711 1 0 3106 2025-03-19 00:23:37.122 2025-03-19 00:23:37.122 434697 8544 10 0 3107 2025-03-19 00:25:00.141 2025-03-19 00:25:00.141 434697 10490 19 0 3108 2025-03-19 00:31:38.794 2025-03-19 00:31:38.794 434698 1761 36 0 3109 2025-03-19 00:31:38.794 2025-03-19 00:31:38.794 434698 2640 4 0 3110 2025-03-19 00:23:37.495 2025-03-19 00:23:37.495 434698 4173 10 0 3111 2025-03-19 00:25:14.684 2025-03-19 00:25:14.684 434698 7877 19 0 3112 2025-03-19 00:25:14.684 2025-03-19 00:25:14.684 434698 8289 2 0 3113 2025-03-19 00:25:58.451 2025-03-19 00:25:58.451 434699 1244 100 0 3114 2025-03-19 00:53:48.278 2025-03-19 00:53:48.278 434699 1825 2 0 3115 2025-03-19 00:53:48.278 2025-03-19 00:53:48.278 434699 20205 19 0 3116 2025-03-19 00:26:48.623 2025-03-19 00:26:48.623 434700 768 1 0 3117 2025-03-19 02:41:59.579 2025-03-19 02:41:59.579 434700 1800 1 0 3118 2025-03-19 02:41:59.579 2025-03-19 02:41:59.579 434700 3396 9 0 3119 2025-03-19 00:28:15.433 2025-03-19 00:28:15.433 434701 21714 1 0 3120 2025-03-19 01:40:01.818 2025-03-19 01:40:01.818 434702 5495 1 0 3121 2025-03-19 01:40:01.818 2025-03-19 01:40:01.818 434702 16970 0 0 3122 2025-03-19 00:30:58.253 2025-03-19 00:30:58.253 434702 17953 1 0 3123 2025-03-19 04:15:17.626 2025-03-19 04:15:17.626 434703 713 0 0 3124 2025-03-19 04:19:24.566 2025-03-19 04:19:24.566 434703 2757 2 0 3125 2025-03-19 04:15:21.003 2025-03-19 04:15:21.003 434703 5306 1 0 3126 2025-03-19 04:15:21.003 2025-03-19 04:15:21.003 434703 7389 8 0 3127 2025-03-19 04:19:24.566 2025-03-19 04:19:24.566 434703 9529 19 0 3128 2025-03-19 00:33:17.984 2025-03-19 00:33:17.984 434703 16988 100 0 3129 2025-03-19 04:15:17.626 2025-03-19 04:15:17.626 434703 21072 1 0 3130 2025-03-19 00:33:53.948 2025-03-19 00:33:53.948 434704 16954 1 0 3131 2025-03-19 01:27:46.236 2025-03-19 01:27:46.236 434705 2061 450 0 3132 2025-03-19 00:34:11.711 2025-03-19 00:34:11.711 434705 4633 1 0 3133 2025-03-19 01:27:46.236 2025-03-19 01:27:46.236 434705 16542 50 0 3134 2025-03-19 00:35:08.673 2025-03-19 00:35:08.673 434706 736 1 0 3135 2025-03-19 00:37:08.231 2025-03-19 00:37:08.231 434706 2010 0 0 3136 2025-03-19 05:20:36.854 2025-03-19 05:20:36.854 434707 2329 19 0 3137 2025-03-19 01:11:52.43 2025-03-19 01:11:52.43 434707 2367 450 0 3138 2025-03-19 01:11:56.04 2025-03-19 01:11:56.04 434707 4084 450 0 3139 2025-03-19 05:20:36.854 2025-03-19 05:20:36.854 434707 6148 2 0 3140 2025-03-19 01:11:56.04 2025-03-19 01:11:56.04 434707 8472 50 0 3141 2025-03-19 02:25:04.518 2025-03-19 02:25:04.518 434707 15045 10 0 3142 2025-03-19 01:11:52.43 2025-03-19 01:11:52.43 434707 15337 50 0 3143 2025-03-19 00:35:09.46 2025-03-19 00:35:09.46 434707 17014 10 0 3144 2025-03-19 02:25:04.518 2025-03-19 02:25:04.518 434707 21042 90 0 3145 2025-03-19 00:35:42.916 2025-03-19 00:35:42.916 434708 802 1 0 3146 2025-03-19 12:20:30.35 2025-03-19 12:20:30.35 434708 2329 4 0 3147 2025-03-19 12:20:30.35 2025-03-19 12:20:30.35 434708 21766 36 0 3148 2025-03-19 01:39:04.499 2025-03-19 01:39:04.499 434709 629 1 0 3149 2025-03-19 01:27:09.868 2025-03-19 01:27:09.868 434709 4650 2 0 3150 2025-03-19 01:39:05.179 2025-03-19 01:39:05.179 434709 8544 1 0 3151 2025-03-19 01:39:05.376 2025-03-19 01:39:05.376 434709 8713 1 0 3152 2025-03-19 01:27:09.868 2025-03-19 01:27:09.868 434709 13574 19 0 3153 2025-03-19 01:39:04.759 2025-03-19 01:39:04.759 434709 15115 1 0 3154 2025-03-19 00:36:17.874 2025-03-19 00:36:17.874 434709 20509 1 0 3155 2025-03-19 01:38:55.529 2025-03-19 01:38:55.529 434709 20603 9 0 3156 2025-03-19 01:39:04.499 2025-03-19 01:39:04.499 434709 21067 0 0 3157 2025-03-19 01:38:55.529 2025-03-19 01:38:55.529 434709 21072 1 0 3158 2025-03-19 01:39:04.759 2025-03-19 01:39:04.759 434709 21334 0 0 3159 2025-03-19 01:39:05.179 2025-03-19 01:39:05.179 434709 21631 0 0 3160 2025-03-19 01:39:05.376 2025-03-19 01:39:05.376 434709 21666 0 0 3161 2025-03-19 00:37:21.17 2025-03-19 00:37:21.17 434711 685 10 0 3162 2025-03-19 00:41:18.947 2025-03-19 00:41:18.947 434713 700 0 0 3163 2025-03-19 00:41:15.07 2025-03-19 00:41:15.07 434713 822 0 0 3164 2025-03-19 00:41:15.903 2025-03-19 00:41:15.903 434713 976 3 0 3165 2025-03-19 00:41:25.106 2025-03-19 00:41:25.106 434713 1173 0 0 3166 2025-03-19 00:41:13.751 2025-03-19 00:41:13.751 434713 1564 3 0 3167 2025-03-19 08:54:02.624 2025-03-19 08:54:02.624 434713 1823 2 0 3168 2025-03-19 00:41:14.698 2025-03-19 00:41:14.698 434713 1881 3 0 3169 2025-03-19 00:41:14.86 2025-03-19 00:41:14.86 434713 2151 3 0 3170 2025-03-19 08:08:13.685 2025-03-19 08:08:13.685 434713 2232 1 0 3171 2025-03-19 00:41:14.698 2025-03-19 00:41:14.698 434713 2952 0 0 3172 2025-03-19 00:41:19.304 2025-03-19 00:41:19.304 434713 5057 3 0 3173 2025-03-19 00:39:40.029 2025-03-19 00:39:40.029 434713 8287 1 0 3174 2025-03-19 08:54:02.307 2025-03-19 08:54:02.307 434713 8535 2 0 3175 2025-03-19 00:41:13.919 2025-03-19 00:41:13.919 434713 9341 3 0 3176 2025-03-19 00:41:15.672 2025-03-19 00:41:15.672 434713 9863 3 0 3177 2025-03-19 00:41:14.86 2025-03-19 00:41:14.86 434713 11590 0 0 3178 2025-03-19 08:54:02.671 2025-03-19 08:54:02.671 434713 11862 0 0 3179 2025-03-19 00:41:13.751 2025-03-19 00:41:13.751 434713 16149 0 0 3180 2025-03-19 00:41:18.947 2025-03-19 00:41:18.947 434713 16724 3 0 3181 2025-03-19 00:41:13.919 2025-03-19 00:41:13.919 434713 18423 0 0 3182 2025-03-19 08:54:02.624 2025-03-19 08:54:02.624 434713 18500 0 0 3183 2025-03-19 08:08:13.685 2025-03-19 08:08:13.685 434713 20190 6 0 3184 2025-03-19 00:41:15.07 2025-03-19 00:41:15.07 434713 20254 3 0 3185 2025-03-19 00:41:25.106 2025-03-19 00:41:25.106 434713 20603 1 0 3186 2025-03-19 00:41:15.903 2025-03-19 00:41:15.903 434713 21020 0 0 3187 2025-03-19 00:41:15.672 2025-03-19 00:41:15.672 434713 21091 0 0 3188 2025-03-19 08:54:02.671 2025-03-19 08:54:02.671 434713 21114 2 0 3189 2025-03-19 08:54:02.307 2025-03-19 08:54:02.307 434713 21242 0 0 3190 2025-03-19 00:41:19.304 2025-03-19 00:41:19.304 434713 21389 0 0 3191 2025-03-19 03:43:49.789 2025-03-19 03:43:49.789 434714 4602 900 0 3192 2025-03-19 03:43:49.789 2025-03-19 03:43:49.789 434714 8448 100 0 3193 2025-03-19 00:41:01.475 2025-03-19 00:41:01.475 434714 21494 1 0 3194 2025-03-19 00:52:22.805 2025-03-19 00:52:22.805 434715 17011 5 0 3195 2025-03-19 00:42:08.91 2025-03-19 00:42:08.91 434715 17209 1 0 3196 2025-03-19 00:52:22.805 2025-03-19 00:52:22.805 434715 21332 45 0 3197 2025-03-19 00:43:33.664 2025-03-19 00:43:33.664 434716 704 1 0 3198 2025-03-19 02:24:57.801 2025-03-19 02:24:57.801 434717 1489 18 0 3199 2025-03-19 10:03:13.732 2025-03-19 10:03:13.732 434717 2204 10 0 3200 2025-03-19 01:04:35.256 2025-03-19 01:04:35.256 434717 2492 19 0 3201 2025-03-19 01:59:21.183 2025-03-19 01:59:21.183 434717 4378 0 0 3202 2025-03-19 01:59:19.818 2025-03-19 01:59:19.818 434717 5708 1 0 3203 2025-03-19 10:03:13.732 2025-03-19 10:03:13.732 434717 6765 90 0 3204 2025-03-19 00:55:44.855 2025-03-19 00:55:44.855 434717 7418 9 0 3205 2025-03-19 00:44:04.189 2025-03-19 00:44:04.189 434717 9335 21 0 3206 2025-03-19 01:59:20.64 2025-03-19 01:59:20.64 434717 11967 0 0 3207 2025-03-19 00:55:43.298 2025-03-19 00:55:43.298 434717 12562 1 0 3208 2025-03-19 01:59:20.197 2025-03-19 01:59:20.197 434717 14449 1 0 3209 2025-03-19 01:27:02.989 2025-03-19 01:27:02.989 434717 14465 19 0 3210 2025-03-19 00:55:43.298 2025-03-19 00:55:43.298 434717 15180 9 0 3211 2025-03-19 01:27:02.989 2025-03-19 01:27:02.989 434717 17046 2 0 3212 2025-03-19 04:33:31.548 2025-03-19 04:33:31.548 434717 17517 19 0 3213 2025-03-19 01:04:35.256 2025-03-19 01:04:35.256 434717 18101 2 0 3214 2025-03-19 01:59:21.183 2025-03-19 01:59:21.183 434717 19292 1 0 3215 2025-03-19 02:24:57.801 2025-03-19 02:24:57.801 434717 19673 2 0 3216 2025-03-19 04:33:31.548 2025-03-19 04:33:31.548 434717 20198 2 0 3217 2025-03-19 01:59:20.64 2025-03-19 01:59:20.64 434717 20586 1 0 3218 2025-03-19 01:59:19.515 2025-03-19 01:59:19.515 434717 20612 0 0 3219 2025-03-19 01:59:19.818 2025-03-19 01:59:19.818 434717 20756 0 0 3220 2025-03-19 01:59:20.197 2025-03-19 01:59:20.197 434717 21079 0 0 3221 2025-03-19 01:59:19.515 2025-03-19 01:59:19.515 434717 21088 1 0 3222 2025-03-19 00:55:44.855 2025-03-19 00:55:44.855 434717 21339 1 0 3223 2025-03-19 00:46:13.262 2025-03-19 00:46:13.262 434718 27 10 0 3224 2025-03-19 01:38:59.989 2025-03-19 01:38:59.989 434718 641 0 0 3225 2025-03-19 00:54:50.316 2025-03-19 00:54:50.316 434718 660 0 0 3226 2025-03-19 01:39:00.236 2025-03-19 01:39:00.236 434718 956 0 0 3227 2025-03-19 01:39:01.016 2025-03-19 01:39:01.016 434718 1307 1 0 3228 2025-03-19 01:31:32.915 2025-03-19 01:31:32.915 434718 1480 19 0 3229 2025-03-19 00:46:29.779 2025-03-19 00:46:29.779 434718 1585 0 0 3230 2025-03-19 01:31:32.915 2025-03-19 01:31:32.915 434718 2709 2 0 3231 2025-03-19 00:54:43.097 2025-03-19 00:54:43.097 434718 4115 0 0 3232 2025-03-19 01:39:00.451 2025-03-19 01:39:00.451 434718 6616 0 0 3233 2025-03-19 01:38:59.811 2025-03-19 01:38:59.811 434718 9367 1 0 3234 2025-03-19 01:39:00.236 2025-03-19 01:39:00.236 434718 9655 1 0 3235 2025-03-19 01:38:47.68 2025-03-19 01:38:47.68 434718 11192 1 0 3236 2025-03-19 00:55:11.461 2025-03-19 00:55:11.461 434718 16704 0 0 3237 2025-03-19 01:38:47.68 2025-03-19 01:38:47.68 434718 16858 9 0 3238 2025-03-19 01:38:59.811 2025-03-19 01:38:59.811 434718 16965 0 0 3239 2025-03-19 01:39:01.016 2025-03-19 01:39:01.016 434718 17797 0 0 3240 2025-03-19 01:39:00.451 2025-03-19 01:39:00.451 434718 20636 1 0 3241 2025-03-19 01:38:59.989 2025-03-19 01:38:59.989 434718 21374 1 0 3242 2025-03-19 00:47:20.526 2025-03-19 00:47:20.526 434719 627 1 0 3243 2025-03-19 00:48:34.752 2025-03-19 00:48:34.752 434720 705 1 0 3244 2025-03-19 04:36:20.831 2025-03-19 04:36:20.831 434720 1970 19 0 3245 2025-03-19 12:52:05.355 2025-03-19 12:52:05.355 434720 4378 9 0 3246 2025-03-19 04:36:20.831 2025-03-19 04:36:20.831 434720 6653 2 0 3247 2025-03-19 02:35:27.808 2025-03-19 02:35:27.808 434720 19138 90 0 3248 2025-03-19 02:35:27.808 2025-03-19 02:35:27.808 434720 20481 10 0 3249 2025-03-19 12:52:05.355 2025-03-19 12:52:05.355 434720 20663 1 0 3250 2025-03-19 06:39:59.326 2025-03-19 06:39:59.326 434721 919 1 0 3251 2025-03-19 00:50:07.992 2025-03-19 00:50:07.992 434721 1326 0 0 3252 2025-03-19 06:40:00.551 2025-03-19 06:40:00.551 434721 1512 1 0 3253 2025-03-19 06:39:59.326 2025-03-19 06:39:59.326 434721 1772 9 0 3254 2025-03-19 06:39:56.577 2025-03-19 06:39:56.577 434721 6594 9 0 3255 2025-03-19 06:39:56.577 2025-03-19 06:39:56.577 434721 7185 1 0 3256 2025-03-19 06:40:05.45 2025-03-19 06:40:05.45 434721 8998 1 0 3257 2025-03-19 00:49:08.823 2025-03-19 00:49:08.823 434721 15556 1 0 3258 2025-03-19 06:40:02.303 2025-03-19 06:40:02.303 434721 20745 1 0 3259 2025-03-19 06:40:00.551 2025-03-19 06:40:00.551 434721 21526 9 0 3260 2025-03-19 06:40:02.303 2025-03-19 06:40:02.303 434721 21666 9 0 3261 2025-03-19 06:40:05.45 2025-03-19 06:40:05.45 434721 21701 9 0 3262 2025-03-19 00:49:19.097 2025-03-19 00:49:19.097 434722 5085 21 0 3263 2025-03-19 01:44:14.339 2025-03-19 01:44:14.339 434722 11498 9 0 3264 2025-03-19 03:45:25.353 2025-03-19 03:45:25.353 434722 11798 10 0 3265 2025-03-19 01:24:08.163 2025-03-19 01:24:08.163 434722 12245 1 0 3266 2025-03-19 04:33:42.471 2025-03-19 04:33:42.471 434722 15148 19 0 3267 2025-03-19 03:45:25.353 2025-03-19 03:45:25.353 434722 16284 90 0 3268 2025-03-19 04:33:42.471 2025-03-19 04:33:42.471 434722 16351 2 0 3269 2025-03-19 04:15:50.602 2025-03-19 04:15:50.602 434722 16942 0 0 3270 2025-03-19 04:15:50.753 2025-03-19 04:15:50.753 434722 18271 1 0 3271 2025-03-19 01:24:08.163 2025-03-19 01:24:08.163 434722 19854 0 0 3272 2025-03-19 04:15:50.602 2025-03-19 04:15:50.602 434722 20901 1 0 3273 2025-03-19 04:15:50.753 2025-03-19 04:15:50.753 434722 21072 8 0 3274 2025-03-19 01:44:14.339 2025-03-19 01:44:14.339 434722 21184 1 0 3275 2025-03-19 00:49:42.6 2025-03-19 00:49:42.6 434723 929 1 0 3276 2025-03-19 01:01:43.41 2025-03-19 01:01:43.41 434723 1411 2 0 3277 2025-03-19 01:01:43.41 2025-03-19 01:01:43.41 434723 2361 19 0 3278 2025-03-19 01:47:39.105 2025-03-19 01:47:39.105 434723 17570 19 0 3279 2025-03-19 01:47:39.105 2025-03-19 01:47:39.105 434723 20912 2 0 3280 2025-03-19 01:04:34.806 2025-03-19 01:04:34.806 434724 880 2 0 3281 2025-03-19 00:52:33.77 2025-03-19 00:52:33.77 434724 889 0 0 3282 2025-03-19 01:04:34.806 2025-03-19 01:04:34.806 434724 1245 19 0 3283 2025-03-19 01:37:30.272 2025-03-19 01:37:30.272 434724 1584 2 0 3284 2025-03-19 01:37:30.084 2025-03-19 01:37:30.084 434724 5520 9 0 3285 2025-03-19 00:51:31.747 2025-03-19 00:51:31.747 434724 5757 21 0 3286 2025-03-19 01:37:30.084 2025-03-19 01:37:30.084 434724 12562 1 0 3287 2025-03-19 01:37:32.104 2025-03-19 01:37:32.104 434724 13076 9 0 3288 2025-03-19 01:37:32.104 2025-03-19 01:37:32.104 434724 16042 1 0 3289 2025-03-19 01:37:30.272 2025-03-19 01:37:30.272 434724 21424 18 0 3290 2025-03-19 00:52:15.057 2025-03-19 00:52:15.057 434725 11648 1 0 3291 2025-03-19 00:52:57.264 2025-03-19 00:52:57.264 434726 14255 1 0 3292 2025-03-19 01:39:57.304 2025-03-19 01:39:57.304 434726 14381 1 0 3293 2025-03-19 01:53:15.639 2025-03-19 01:53:15.639 434727 8796 10 0 3294 2025-03-19 00:54:57.628 2025-03-19 00:54:57.628 434727 11776 0 0 3295 2025-03-19 00:53:31.272 2025-03-19 00:53:31.272 434727 13198 100 0 3296 2025-03-19 01:53:15.639 2025-03-19 01:53:15.639 434727 16717 1 0 3297 2025-03-19 01:22:18.643 2025-03-19 01:22:18.643 434727 21063 0 0 3298 2025-03-19 01:22:18.643 2025-03-19 01:22:18.643 434727 21239 1 0 3299 2025-03-19 00:53:51.24 2025-03-19 00:53:51.24 434728 2749 1 0 3300 2025-03-19 04:18:13.438 2025-03-19 04:18:13.438 434728 7425 3 0 3301 2025-03-19 04:18:13.438 2025-03-19 04:18:13.438 434728 17713 27 0 3302 2025-03-19 00:54:18.402 2025-03-19 00:54:18.402 434729 3377 1 0 3303 2025-03-19 01:02:32.968 2025-03-19 01:02:32.968 434730 654 2 0 3304 2025-03-19 00:59:21.914 2025-03-19 00:59:21.914 434730 894 0 0 3305 2025-03-19 00:57:39.308 2025-03-19 00:57:39.308 434730 3656 0 0 3306 2025-03-19 02:41:43.834 2025-03-19 02:41:43.834 434730 8505 1 0 3307 2025-03-19 01:02:32.968 2025-03-19 01:02:32.968 434730 13177 19 0 3308 2025-03-19 02:41:43.834 2025-03-19 02:41:43.834 434730 16353 9 0 3309 2025-03-19 00:56:31.56 2025-03-19 00:56:31.56 434730 18727 1 0 3310 2025-03-19 01:26:30.716 2025-03-19 01:26:30.716 434731 2735 0 0 3311 2025-03-19 00:57:28.464 2025-03-19 00:57:28.464 434731 16193 1 0 3312 2025-03-19 01:26:30.716 2025-03-19 01:26:30.716 434731 20754 1 0 3313 2025-03-19 01:03:16.447 2025-03-19 01:03:16.447 434732 1298 19 0 3314 2025-03-19 00:58:24.245 2025-03-19 00:58:24.245 434732 11873 1 0 3315 2025-03-19 01:03:16.447 2025-03-19 01:03:16.447 434732 16834 2 0 3316 2025-03-19 00:58:25.152 2025-03-19 00:58:25.152 434733 13553 1 0 3317 2025-03-19 00:59:00.31 2025-03-19 00:59:00.31 434734 19735 1 0 3318 2025-03-19 00:59:48.504 2025-03-19 00:59:48.504 434735 21090 1 0 3319 2025-03-19 00:59:58.41 2025-03-19 00:59:58.41 434736 11298 1 0 3320 2025-03-19 03:45:46.181 2025-03-19 03:45:46.181 434737 12562 19 0 3321 2025-03-19 03:45:46.181 2025-03-19 03:45:46.181 434737 13878 2 0 3322 2025-03-19 01:01:18.46 2025-03-19 01:01:18.46 434737 17095 1 0 3323 2025-03-19 01:05:53.249 2025-03-19 01:05:53.249 434738 21334 1 0 3324 2025-03-19 01:10:26.407 2025-03-19 01:10:26.407 434739 2963 7 0 3325 2025-03-19 01:06:19.375 2025-03-19 01:06:19.375 434739 5809 1 0 3326 2025-03-19 01:10:26.407 2025-03-19 01:10:26.407 434739 11590 1 0 3327 2025-03-19 01:07:07.376 2025-03-19 01:07:07.376 434740 5499 1 0 3328 2025-03-19 04:09:25.597 2025-03-19 04:09:25.597 434740 9330 81 0 3329 2025-03-19 04:09:25.597 2025-03-19 04:09:25.597 434740 9669 9 0 3330 2025-03-19 04:09:24.222 2025-03-19 04:09:24.222 434740 11516 0 0 3331 2025-03-19 04:09:24.222 2025-03-19 04:09:24.222 434740 13174 1 0 3332 2025-03-19 04:09:24.425 2025-03-19 04:09:24.425 434740 16212 8 0 3333 2025-03-19 04:09:24.425 2025-03-19 04:09:24.425 434740 21805 1 0 3334 2025-03-19 01:07:49.145 2025-03-19 01:07:49.145 434741 3456 1 0 3335 2025-03-19 01:08:07.138 2025-03-19 01:08:07.138 434742 21518 1 0 3336 2025-03-19 02:34:53.904 2025-03-19 02:34:53.904 434743 9796 2 0 3337 2025-03-19 01:08:50.33 2025-03-19 01:08:50.33 434743 10554 1 0 3338 2025-03-19 01:39:56.165 2025-03-19 01:39:56.165 434743 10591 1 0 3339 2025-03-19 02:34:53.904 2025-03-19 02:34:53.904 434743 20998 19 0 3340 2025-03-19 01:39:56.165 2025-03-19 01:39:56.165 434743 21103 0 0 3341 2025-03-19 01:09:15.339 2025-03-19 01:09:15.339 434744 19527 1 0 3342 2025-03-19 16:36:26.427 2025-03-19 16:36:26.427 434745 1195 3 0 3343 2025-03-19 04:13:13.748 2025-03-19 04:13:13.748 434745 1352 5 0 3344 2025-03-19 16:36:26.427 2025-03-19 16:36:26.427 434745 9820 30 0 3345 2025-03-19 01:09:39.39 2025-03-19 01:09:39.39 434745 16289 10 0 3346 2025-03-19 04:13:13.748 2025-03-19 04:13:13.748 434745 20816 45 0 3347 2025-03-19 01:09:40.681 2025-03-19 01:09:40.681 434746 19569 1 0 3348 2025-03-19 01:11:57.157 2025-03-19 01:11:57.157 434747 1245 1 0 3349 2025-03-19 01:45:31.693 2025-03-19 01:45:31.693 434748 703 2 0 3350 2025-03-19 01:15:02.487 2025-03-19 01:15:02.487 434748 2596 1 0 3351 2025-03-19 01:45:31.693 2025-03-19 01:45:31.693 434748 13162 19 0 3352 2025-03-19 01:18:00.569 2025-03-19 01:18:00.569 434749 18393 1 0 3353 2025-03-19 01:19:00.152 2025-03-19 01:19:00.152 434750 16562 1 0 3354 2025-03-19 04:07:44.262 2025-03-19 04:07:44.262 434751 703 0 0 3355 2025-03-19 04:07:44.262 2025-03-19 04:07:44.262 434751 9099 2 0 3356 2025-03-19 01:21:23.922 2025-03-19 01:21:23.922 434751 13566 10 0 3357 2025-03-19 01:34:11.565 2025-03-19 01:34:11.565 434751 19217 0 0 3358 2025-03-19 01:34:11.565 2025-03-19 01:34:11.565 434751 21833 2 0 3359 2025-03-19 01:21:54.798 2025-03-19 01:21:54.798 434752 3360 1 0 3360 2025-03-19 01:29:56.983 2025-03-19 01:29:56.983 434752 13378 2 0 3361 2025-03-19 01:29:56.983 2025-03-19 01:29:56.983 434752 21003 14 0 3362 2025-03-19 01:22:15.332 2025-03-19 01:22:15.332 434753 10944 1 0 3363 2025-03-19 02:24:56.256 2025-03-19 02:24:56.256 434754 897 19 0 3364 2025-03-19 04:00:16.684 2025-03-19 04:00:16.684 434754 1738 2 0 3365 2025-03-19 04:00:16.684 2025-03-19 04:00:16.684 434754 4958 19 0 3366 2025-03-19 02:24:56.256 2025-03-19 02:24:56.256 434754 9354 2 0 3367 2025-03-19 01:23:50.918 2025-03-19 01:23:50.918 434754 11829 1 0 3368 2025-03-19 01:25:02.342 2025-03-19 01:25:02.342 434755 676 1 0 3369 2025-03-19 01:25:02.852 2025-03-19 01:25:02.852 434755 717 1 0 3370 2025-03-19 02:01:55.882 2025-03-19 02:01:55.882 434755 1009 9 0 3371 2025-03-19 01:25:02.117 2025-03-19 01:25:02.117 434755 2285 1 0 3372 2025-03-19 01:25:03.367 2025-03-19 01:25:03.367 434755 2326 1 0 3373 2025-03-19 01:25:02.117 2025-03-19 01:25:02.117 434755 5725 0 0 3374 2025-03-19 01:25:02.342 2025-03-19 01:25:02.342 434755 6202 0 0 3375 2025-03-19 02:01:55.882 2025-03-19 02:01:55.882 434755 11450 1 0 3376 2025-03-19 01:24:19.487 2025-03-19 01:24:19.487 434755 11873 1 0 3377 2025-03-19 01:25:03.367 2025-03-19 01:25:03.367 434755 13517 0 0 3378 2025-03-19 01:25:02.564 2025-03-19 01:25:02.564 434755 20614 0 0 3379 2025-03-19 01:25:02.564 2025-03-19 01:25:02.564 434755 20624 1 0 3380 2025-03-19 01:25:02.852 2025-03-19 01:25:02.852 434755 21523 0 0 3381 2025-03-19 01:24:57.523 2025-03-19 01:24:57.523 434756 4167 1 0 3382 2025-03-19 01:39:08.752 2025-03-19 01:39:08.752 434756 5487 2 0 3383 2025-03-19 01:39:08.752 2025-03-19 01:39:08.752 434756 6393 19 0 3384 2025-03-19 01:25:14.996 2025-03-19 01:25:14.996 434757 10302 1 0 3385 2025-03-19 01:55:23.612 2025-03-19 01:55:23.612 434757 15408 1 0 3386 2025-03-19 01:55:23.612 2025-03-19 01:55:23.612 434757 21291 7 0 3387 2025-03-19 01:26:07.134 2025-03-19 01:26:07.134 434758 21518 1 0 3388 2025-03-19 01:27:46.48 2025-03-19 01:27:46.48 434759 679 1 0 3389 2025-03-19 01:58:15.039 2025-03-19 01:58:15.039 434759 12819 1 0 3390 2025-03-19 01:58:15.039 2025-03-19 01:58:15.039 434759 15488 9 0 3391 2025-03-19 02:00:20.39 2025-03-19 02:00:20.39 434760 4650 9 0 3392 2025-03-19 02:00:20.39 2025-03-19 02:00:20.39 434760 9036 1 0 3393 2025-03-19 01:29:01.744 2025-03-19 01:29:01.744 434760 9242 1 0 3394 2025-03-19 01:29:40.162 2025-03-19 01:29:40.162 434761 9167 1 0 3395 2025-03-19 01:29:40.846 2025-03-19 01:29:40.846 434762 14905 1 0 3396 2025-03-19 02:27:54.361 2025-03-19 02:27:54.361 434763 20756 1 0 3397 2025-03-19 01:30:28.898 2025-03-19 01:30:28.898 434763 21033 1 0 3398 2025-03-19 02:27:54.361 2025-03-19 02:27:54.361 434763 21714 10 0 3399 2025-03-19 01:31:20.143 2025-03-19 01:31:20.143 434764 18101 1 0 3400 2025-03-19 07:26:02.365 2025-03-19 07:26:02.365 434765 1006 1 0 3401 2025-03-19 07:26:02.365 2025-03-19 07:26:02.365 434765 20310 0 0 3402 2025-03-19 01:32:31.32 2025-03-19 01:32:31.32 434765 21349 1 0 3403 2025-03-19 03:10:13.356 2025-03-19 03:10:13.356 434766 1008 25 0 3404 2025-03-19 03:10:13.356 2025-03-19 03:10:13.356 434766 12139 3 0 3405 2025-03-19 01:33:30.803 2025-03-19 01:33:30.803 434766 17798 1 0 3406 2025-03-19 01:58:07.082 2025-03-19 01:58:07.082 434767 1465 1 0 3407 2025-03-19 01:33:33.38 2025-03-19 01:33:33.38 434767 12368 1 0 3408 2025-03-19 01:58:07.082 2025-03-19 01:58:07.082 434767 19016 9 0 3409 2025-03-19 01:37:12.176 2025-03-19 01:37:12.176 434768 16747 1 0 3410 2025-03-19 02:00:29.959 2025-03-19 02:00:29.959 434769 1712 9 0 3411 2025-03-19 01:37:53.288 2025-03-19 01:37:53.288 434769 2338 0 0 3412 2025-03-19 01:40:13.059 2025-03-19 01:40:13.059 434769 5003 2 0 3413 2025-03-19 01:40:13.059 2025-03-19 01:40:13.059 434769 5171 19 0 3414 2025-03-19 01:37:38.969 2025-03-19 01:37:38.969 434769 21026 1 0 3415 2025-03-19 02:00:29.959 2025-03-19 02:00:29.959 434769 21314 1 0 3416 2025-03-19 01:38:00.852 2025-03-19 01:38:00.852 434770 673 1 0 3417 2025-03-19 01:38:47.05 2025-03-19 01:38:47.05 434770 4173 0 0 3418 2025-03-19 01:38:51.111 2025-03-19 01:38:51.111 434770 15577 0 0 3419 2025-03-19 01:38:30.939 2025-03-19 01:38:30.939 434771 1692 1 0 3420 2025-03-19 01:38:47.434 2025-03-19 01:38:47.434 434771 11996 0 0 3421 2025-03-19 01:38:58.207 2025-03-19 01:38:58.207 434772 688 1 0 3422 2025-03-19 01:57:52.573 2025-03-19 01:57:52.573 434772 4292 9 0 3423 2025-03-19 01:57:52.573 2025-03-19 01:57:52.573 434772 8664 1 0 3424 2025-03-19 01:58:13.611 2025-03-19 01:58:13.611 434773 15526 9 0 3425 2025-03-19 01:39:22.759 2025-03-19 01:39:22.759 434773 16556 1 0 3426 2025-03-19 01:58:13.611 2025-03-19 01:58:13.611 434773 21373 1 0 3427 2025-03-19 01:39:30.068 2025-03-19 01:39:30.068 434774 622 1 0 3428 2025-03-19 01:41:30.992 2025-03-19 01:41:30.992 434774 1272 10 0 3429 2025-03-19 01:41:30.992 2025-03-19 01:41:30.992 434774 18930 90 0 3430 2025-03-19 01:40:55.308 2025-03-19 01:40:55.308 434775 696 0 0 3431 2025-03-19 01:40:55.952 2025-03-19 01:40:55.952 434775 1652 1 0 3432 2025-03-19 01:40:55.952 2025-03-19 01:40:55.952 434775 2213 0 0 3433 2025-03-19 01:40:54.863 2025-03-19 01:40:54.863 434775 3396 0 0 3434 2025-03-19 01:40:03.175 2025-03-19 01:40:03.175 434775 10060 1 0 3435 2025-03-19 01:40:51.841 2025-03-19 01:40:51.841 434775 11862 1 0 3436 2025-03-19 01:40:55.308 2025-03-19 01:40:55.308 434775 13406 1 0 3437 2025-03-19 01:40:55.077 2025-03-19 01:40:55.077 434775 16440 0 0 3438 2025-03-19 01:40:54.863 2025-03-19 01:40:54.863 434775 17535 1 0 3439 2025-03-19 01:40:55.077 2025-03-19 01:40:55.077 434775 18608 1 0 3440 2025-03-19 01:40:51.841 2025-03-19 01:40:51.841 434775 20619 0 0 3441 2025-03-19 01:40:49.847 2025-03-19 01:40:49.847 434776 2670 1 0 3442 2025-03-19 01:41:29.634 2025-03-19 01:41:29.634 434777 20280 1 0 3443 2025-03-19 01:41:37.158 2025-03-19 01:41:37.158 434778 21712 1 0 3444 2025-03-19 01:48:07.654 2025-03-19 01:48:07.654 434779 1814 19 0 3445 2025-03-19 01:48:07.654 2025-03-19 01:48:07.654 434779 5522 2 0 3446 2025-03-19 01:46:47.028 2025-03-19 01:46:47.028 434779 5870 1 0 3447 2025-03-19 09:25:11.588 2025-03-19 09:25:11.588 434779 9026 3 0 3448 2025-03-19 09:25:11.588 2025-03-19 09:25:11.588 434779 9476 23 0 3449 2025-03-19 08:53:38.514 2025-03-19 08:53:38.514 434780 9362 2 0 3450 2025-03-19 08:53:38.514 2025-03-19 08:53:38.514 434780 15243 19 0 3451 2025-03-19 01:47:37.143 2025-03-19 01:47:37.143 434780 18615 1 0 3452 2025-03-19 01:50:56.781 2025-03-19 01:50:56.781 434781 687 10 0 3453 2025-03-19 01:50:54.452 2025-03-19 01:50:54.452 434781 732 10 0 3454 2025-03-19 01:50:54.452 2025-03-19 01:50:54.452 434781 7185 1 0 3455 2025-03-19 01:50:56.224 2025-03-19 01:50:56.224 434781 12222 1 0 3456 2025-03-19 01:50:56.781 2025-03-19 01:50:56.781 434781 17741 1 0 3457 2025-03-19 01:48:03.217 2025-03-19 01:48:03.217 434781 19581 1 0 3458 2025-03-19 01:50:56.224 2025-03-19 01:50:56.224 434781 20152 10 0 3459 2025-03-19 01:50:35.968 2025-03-19 01:50:35.968 434782 14037 10 0 3460 2025-03-19 04:22:02.352 2025-03-19 04:22:02.352 434782 16788 1 0 3461 2025-03-19 04:22:02.352 2025-03-19 04:22:02.352 434782 20019 9 0 3462 2025-03-19 01:51:10.506 2025-03-19 01:51:10.506 434783 10469 1 0 3463 2025-03-19 05:17:28.067 2025-03-19 05:17:28.067 434784 876 8 0 3464 2025-03-19 04:22:06.407 2025-03-19 04:22:06.407 434784 976 9 0 3465 2025-03-19 04:22:06.407 2025-03-19 04:22:06.407 434784 12102 1 0 3466 2025-03-19 05:17:28.067 2025-03-19 05:17:28.067 434784 15526 75 0 3467 2025-03-19 01:52:27.797 2025-03-19 01:52:27.797 434784 17147 1 0 3468 2025-03-19 01:53:28.309 2025-03-19 01:53:28.309 434785 2722 10 0 3469 2025-03-19 04:16:18.14 2025-03-19 04:16:18.14 434785 19673 0 100 3470 2025-03-19 02:23:52.366 2025-03-19 02:23:52.366 434786 4115 18 0 3471 2025-03-19 04:33:18.434 2025-03-19 04:33:18.434 434786 4250 2 0 3472 2025-03-19 02:23:52.366 2025-03-19 02:23:52.366 434786 19332 2 0 3473 2025-03-19 04:33:18.434 2025-03-19 04:33:18.434 434786 19469 19 0 3474 2025-03-19 01:53:42.572 2025-03-19 01:53:42.572 434786 20683 21 0 3475 2025-03-19 01:55:30.881 2025-03-19 01:55:30.881 434787 12222 1 0 3476 2025-03-19 03:31:20.508 2025-03-19 03:31:20.508 434787 14910 19 0 3477 2025-03-19 03:31:20.508 2025-03-19 03:31:20.508 434787 19813 2 0 3478 2025-03-19 04:22:43.532 2025-03-19 04:22:43.532 434788 1030 2 0 3479 2025-03-19 04:22:43.532 2025-03-19 04:22:43.532 434788 11454 19 0 3480 2025-03-19 09:26:14.5 2025-03-19 09:26:14.5 434788 12507 23 0 3481 2025-03-19 09:26:14.5 2025-03-19 09:26:14.5 434788 12768 3 0 3482 2025-03-19 01:59:22.567 2025-03-19 01:59:22.567 434788 17064 1 0 3483 2025-03-19 01:59:24.082 2025-03-19 01:59:24.082 434789 705 1 0 3484 2025-03-19 03:34:33.031 2025-03-19 03:34:33.031 434789 1638 19 0 3485 2025-03-19 03:34:33.031 2025-03-19 03:34:33.031 434789 16809 2 0 3486 2025-03-19 02:00:19.893 2025-03-19 02:00:19.893 434790 3396 1 0 3487 2025-03-19 04:16:40.617 2025-03-19 04:16:40.617 434790 20562 27 0 3488 2025-03-19 04:16:40.617 2025-03-19 04:16:40.617 434790 21620 3 0 3489 2025-03-19 02:20:31.933 2025-03-19 07:02:55.618 434791 624 9 0 3490 2025-03-19 02:00:28.757 2025-03-19 02:00:28.757 434791 656 100 0 3491 2025-03-19 07:02:56.638 2025-03-19 07:02:56.638 434791 661 75 0 3492 2025-03-19 05:42:32.834 2025-03-19 05:42:32.834 434791 704 3 0 3493 2025-03-19 05:42:34.152 2025-03-19 07:02:56.053 434791 725 33 0 3494 2025-03-19 04:33:25.273 2025-03-19 04:33:25.273 434791 766 19 0 3495 2025-03-19 05:01:04.951 2025-03-19 05:01:04.951 434791 826 75 0 3496 2025-03-19 07:02:56.976 2025-03-19 07:02:56.976 434791 925 75 0 3497 2025-03-19 07:02:56.176 2025-03-19 07:02:56.176 434791 980 8 0 3498 2025-03-20 00:21:18.159 2025-03-20 00:21:18.159 434791 1003 9 0 3499 2025-03-19 07:02:57.094 2025-03-19 07:02:57.094 434791 1094 8 0 3500 2025-03-19 19:03:02.149 2025-03-19 19:03:02.149 434791 1515 1 0 3501 2025-03-19 05:01:05.896 2025-03-19 05:01:05.896 434791 1632 8 0 3502 2025-03-19 18:50:39.413 2025-03-19 18:50:39.413 434791 1741 9 0 3503 2025-03-19 18:50:39.413 2025-03-19 18:50:39.413 434791 2195 1 0 3504 2025-03-19 07:02:56.638 2025-03-19 07:02:56.638 434791 2322 8 0 3505 2025-03-19 05:42:34.152 2025-03-19 05:42:34.152 434791 2335 3 0 3506 2025-03-19 05:01:08.184 2025-03-19 05:01:08.184 434791 2528 8 0 3507 2025-03-19 05:05:37.066 2025-03-19 05:05:37.066 434791 2543 19 0 3508 2025-03-19 04:26:48.889 2025-03-19 04:26:48.889 434791 2674 9 0 3509 2025-03-19 07:02:55.296 2025-03-19 07:02:55.296 434791 3213 75 0 3510 2025-03-19 05:42:33.004 2025-03-19 05:42:33.004 434791 3706 24 0 3511 2025-03-19 07:02:55.853 2025-03-19 07:02:55.853 434791 4314 75 0 3512 2025-03-19 05:50:26.61 2025-03-19 05:50:26.61 434791 4602 243 0 3513 2025-03-19 07:02:55.296 2025-03-19 07:02:55.296 434791 4754 8 0 3514 2025-03-19 07:02:56.041 2025-03-19 07:02:56.041 434791 4798 75 0 3515 2025-03-19 04:26:48.889 2025-03-19 04:26:48.889 434791 4973 1 0 3516 2025-03-19 07:02:56.397 2025-03-19 07:02:56.397 434791 5557 8 0 3517 2025-03-19 08:01:02.726 2025-03-19 08:01:02.726 434791 6164 2 0 3518 2025-03-19 07:40:47.973 2025-03-19 07:40:47.973 434791 6335 5 0 3519 2025-03-19 05:01:05.682 2025-03-19 05:01:05.682 434791 6578 8 0 3520 2025-03-19 03:05:35.705 2025-03-19 05:01:04.117 434791 6653 8 0 3521 2025-03-19 05:42:33.546 2025-03-19 05:42:33.546 434791 7389 24 0 3522 2025-03-19 05:42:33.735 2025-03-19 05:42:33.735 434791 7418 3 0 3523 2025-03-19 07:40:47.973 2025-03-19 07:40:47.973 434791 7746 1 0 3524 2025-03-19 05:48:49.766 2025-03-19 07:42:18.348 434791 7903 900 0 3525 2025-03-19 08:11:18.819 2025-03-19 08:11:18.819 434791 8544 4 0 3526 2025-03-19 03:05:35.705 2025-03-19 03:05:35.705 434791 9159 1 0 3527 2025-03-19 05:42:34.927 2025-03-19 05:42:34.927 434791 9275 24 0 3528 2025-03-19 05:01:03.677 2025-03-19 05:01:03.677 434791 9350 75 0 3529 2025-03-19 05:42:33.929 2025-03-19 05:42:33.929 434791 9438 3 0 3530 2025-03-19 05:05:37.066 2025-03-19 05:05:37.066 434791 9863 2 0 3531 2025-03-19 07:02:55.486 2025-03-19 07:02:55.486 434791 10102 8 0 3532 2025-03-20 00:21:18.159 2025-03-20 00:21:18.159 434791 10311 1 0 3533 2025-03-19 08:11:18.819 2025-03-19 08:11:18.819 434791 10490 36 0 3534 2025-03-19 05:01:04.45 2025-03-19 05:01:04.45 434791 10719 8 0 3535 2025-03-19 05:42:33.929 2025-03-19 05:42:33.929 434791 10862 24 0 3536 2025-03-19 04:16:35.612 2025-03-19 04:16:35.612 434791 11523 81 0 3537 2025-03-19 05:01:04.462 2025-03-19 05:01:04.462 434791 11648 8 0 3538 2025-03-19 04:26:19.856 2025-03-19 04:26:19.856 434791 11678 9 0 3539 2025-03-19 05:01:07.659 2025-03-19 05:01:07.659 434791 11819 75 0 3540 2025-03-19 07:02:56.053 2025-03-19 07:02:56.053 434791 11999 75 0 3541 2025-03-19 05:01:05.682 2025-03-19 05:01:05.682 434791 12072 75 0 3542 2025-03-19 05:01:04.117 2025-03-19 05:01:04.117 434791 12102 75 0 3543 2025-03-19 05:42:33.176 2025-03-19 05:42:33.176 434791 12188 24 0 3544 2025-03-19 05:50:26.61 2025-03-19 05:50:26.61 434791 12291 27 0 3545 2025-03-19 05:01:05.034 2025-03-19 05:01:05.034 434791 12609 8 0 3546 2025-03-19 05:48:49.766 2025-03-19 05:48:49.766 434791 12821 90 0 3547 2025-03-19 05:01:04.951 2025-03-19 05:01:04.951 434791 12935 8 0 3548 2025-03-19 05:01:05.896 2025-03-19 05:01:05.896 434791 13348 75 0 3549 2025-03-19 07:02:57.094 2025-03-19 07:02:57.094 434791 13921 75 0 3550 2025-03-19 07:02:55.735 2025-03-19 07:02:55.735 434791 14168 8 0 3551 2025-03-19 07:02:56.176 2025-03-19 08:01:02.726 434791 14663 93 0 3552 2025-03-19 04:16:35.612 2025-03-19 04:16:35.612 434791 14705 9 0 3553 2025-03-19 05:50:26.181 2025-03-19 05:50:26.181 434791 14818 27 0 3554 2025-03-19 05:01:05.034 2025-03-19 05:42:33.176 434791 15544 77 0 3555 2025-03-19 05:55:01.222 2025-03-19 05:55:01.222 434791 15617 19 0 3556 2025-03-19 05:42:33.735 2025-03-19 05:42:33.735 434791 15843 24 0 3557 2025-03-19 05:01:04.462 2025-03-19 05:01:04.462 434791 16176 75 0 3558 2025-03-19 05:42:32.541 2025-03-19 05:42:32.541 434791 16406 24 0 3559 2025-03-19 05:42:33.36 2025-03-19 05:42:33.36 434791 16747 24 0 3560 2025-03-19 19:03:02.149 2025-03-19 19:03:02.149 434791 16834 9 0 3561 2025-03-19 07:02:55.735 2025-03-19 07:02:55.735 434791 16956 75 0 3562 2025-03-19 07:02:55.618 2025-03-19 07:02:55.618 434791 16998 75 0 3563 2025-03-19 05:01:03.677 2025-03-19 05:01:03.677 434791 17011 8 0 3564 2025-03-19 05:42:32.834 2025-03-19 05:42:32.834 434791 17162 24 0 3565 2025-03-19 05:42:32.541 2025-03-19 05:42:32.541 434791 17201 3 0 3566 2025-03-19 04:16:34.335 2025-03-19 04:16:34.335 434791 17209 0 0 3567 2025-03-19 05:01:04.45 2025-03-19 05:01:04.45 434791 17696 75 0 3568 2025-03-19 05:01:04.593 2025-03-19 05:01:04.593 434791 18402 8 0 3569 2025-03-19 07:02:56.522 2025-03-19 07:02:56.522 434791 18409 75 0 3570 2025-03-19 05:55:01.222 2025-03-19 05:55:01.222 434791 18865 2 0 3571 2025-03-19 02:20:31.933 2025-03-19 02:20:31.933 434791 19071 9 0 3572 2025-03-19 04:16:34.656 2025-03-19 04:16:34.656 434791 19117 1 0 3573 2025-03-19 07:02:55.486 2025-03-19 07:02:55.486 434791 19217 75 0 3574 2025-03-19 18:20:18.287 2025-03-19 18:20:18.287 434791 19292 1 0 3575 2025-03-19 05:01:04.425 2025-03-19 05:01:04.425 434791 19394 75 0 3576 2025-03-19 05:42:33.36 2025-03-19 05:42:33.36 434791 19484 3 0 3577 2025-03-19 05:01:08.184 2025-03-19 05:01:08.184 434791 19663 75 0 3578 2025-03-19 18:20:18.287 2025-03-19 18:20:18.287 434791 19777 5 0 3579 2025-03-19 04:16:34.656 2025-03-19 04:16:34.656 434791 19992 8 0 3580 2025-03-19 05:42:33.546 2025-03-19 05:42:33.546 434791 20182 3 0 3581 2025-03-19 04:33:25.273 2025-03-19 04:33:25.273 434791 20377 2 0 3582 2025-03-19 05:01:04.957 2025-03-19 05:01:04.957 434791 20450 8 0 3583 2025-03-19 07:02:56.976 2025-03-19 07:02:56.976 434791 20502 8 0 3584 2025-03-19 05:01:03.899 2025-03-19 05:01:03.899 434791 20504 149 0 3585 2025-03-19 05:50:26.181 2025-03-19 05:50:26.181 434791 20701 3 0 3586 2025-03-19 05:01:04.957 2025-03-19 05:01:04.957 434791 20799 75 0 3587 2025-03-19 05:42:35.455 2025-03-19 05:42:35.455 434791 20849 3 0 3588 2025-03-19 05:01:07.574 2025-03-19 05:01:07.574 434791 20854 75 0 3589 2025-03-19 07:02:56.522 2025-03-19 07:02:56.522 434791 20924 8 0 3590 2025-03-19 07:02:56.041 2025-03-19 07:02:56.041 434791 21014 8 0 3591 2025-03-19 07:02:56.397 2025-03-19 07:02:56.397 434791 21037 75 0 3592 2025-03-19 05:01:03.899 2025-03-19 05:01:03.899 434791 21048 17 0 3593 2025-03-19 05:50:44.549 2025-03-19 05:50:44.549 434791 21063 2 0 3594 2025-03-19 05:50:44.549 2025-03-19 05:50:44.549 434791 21131 19 0 3595 2025-03-19 05:01:07.574 2025-03-19 05:01:07.574 434791 21148 8 0 3596 2025-03-19 07:42:18.348 2025-03-19 07:42:18.348 434791 21207 10 0 3597 2025-03-19 05:01:07.659 2025-03-19 05:01:07.659 434791 21242 8 0 3598 2025-03-19 05:42:32.642 2025-03-19 05:42:32.642 434791 21303 3 0 3599 2025-03-19 05:01:04.425 2025-03-19 05:01:04.425 434791 21369 8 0 3600 2025-03-19 04:26:19.856 2025-03-19 04:26:19.856 434791 21393 1 0 3601 2025-03-19 05:42:35.455 2025-03-19 05:42:35.455 434791 21400 24 0 3602 2025-03-19 05:42:33.004 2025-03-19 05:42:33.004 434791 21442 3 0 3603 2025-03-19 05:01:04.593 2025-03-19 05:01:04.593 434791 21541 75 0 3604 2025-03-19 07:02:55.853 2025-03-19 07:02:55.853 434791 21547 8 0 3605 2025-03-19 04:16:34.335 2025-03-19 04:16:34.335 434791 21585 1 0 3606 2025-03-19 05:42:32.642 2025-03-19 05:42:32.642 434791 21712 24 0 3607 2025-03-19 05:42:34.927 2025-03-19 05:42:34.927 434791 21814 3 0 3608 2025-03-19 02:00:34.924 2025-03-19 02:00:34.924 434792 19952 10 0 3609 2025-03-19 03:33:21.062 2025-03-19 03:33:21.062 434793 4287 2 0 3610 2025-03-19 02:02:20.935 2025-03-19 02:02:20.935 434793 5775 1 0 3611 2025-03-19 03:33:21.062 2025-03-19 03:33:21.062 434793 9969 19 0 3612 2025-03-19 02:04:13.343 2025-03-19 02:04:13.343 434794 20906 1 0 3613 2025-03-19 02:04:19.689 2025-03-19 02:04:19.689 434796 703 1 0 3614 2025-03-19 02:08:28.959 2025-03-19 02:08:28.959 434796 992 29 0 3615 2025-03-19 02:06:57.713 2025-03-19 02:06:57.713 434796 2000 9 0 3616 2025-03-19 04:39:56.371 2025-03-19 04:39:56.371 434796 2042 19 0 3617 2025-03-19 02:06:56.104 2025-03-19 02:06:56.104 434796 2519 0 0 3618 2025-03-19 05:56:18.456 2025-03-19 05:56:18.456 434796 2774 19 0 3619 2025-03-19 05:56:18.456 2025-03-19 05:56:18.456 434796 5306 2 0 3620 2025-03-19 04:39:56.371 2025-03-19 04:39:56.371 434796 6419 2 0 3621 2025-03-19 02:06:57.241 2025-03-19 02:06:57.241 434796 7827 1 0 3622 2025-03-19 09:14:00.62 2025-03-19 09:14:00.62 434796 9906 7 0 3623 2025-03-19 09:14:00.62 2025-03-19 09:14:00.62 434796 12769 1 0 3624 2025-03-19 02:05:51.934 2025-03-19 02:05:51.934 434796 13055 0 0 3625 2025-03-19 02:33:38.856 2025-03-19 02:33:38.856 434796 13763 1 0 3626 2025-03-19 09:14:00.441 2025-03-19 09:14:00.441 434796 13903 7 0 3627 2025-03-19 02:08:22.742 2025-03-19 02:08:22.742 434796 14255 0 0 3628 2025-03-19 02:06:57.241 2025-03-19 02:06:57.241 434796 14959 9 0 3629 2025-03-19 02:33:38.856 2025-03-19 02:33:38.856 434796 15282 9 0 3630 2025-03-19 02:06:46.193 2025-03-19 02:06:46.193 434796 16059 0 0 3631 2025-03-19 02:20:16.471 2025-03-19 02:20:16.471 434796 18005 6 0 3632 2025-03-19 09:14:00.441 2025-03-19 09:14:00.441 434796 19796 1 0 3633 2025-03-19 02:08:28.959 2025-03-19 02:08:28.959 434796 20120 3 0 3634 2025-03-19 02:06:57.713 2025-03-19 02:06:57.713 434796 20525 1 0 3635 2025-03-19 02:07:55.947 2025-03-19 02:07:55.947 434796 21247 0 0 3636 2025-03-19 02:20:16.471 2025-03-19 02:20:16.471 434796 21810 58 0 3637 2025-03-19 05:55:36.422 2025-03-19 05:55:36.422 434797 985 2 0 3638 2025-03-19 02:06:54.589 2025-03-19 02:06:54.589 434797 1060 9 0 3639 2025-03-19 02:06:48.654 2025-03-19 02:06:48.654 434797 6137 3 0 3640 2025-03-19 02:06:48.654 2025-03-19 02:06:48.654 434797 7389 29 0 3641 2025-03-19 02:06:54.589 2025-03-19 02:06:54.589 434797 9450 1 0 3642 2025-03-19 02:06:53.383 2025-03-19 02:06:53.383 434797 10554 1 0 3643 2025-03-19 04:39:46.849 2025-03-19 04:39:46.849 434797 11992 19 0 3644 2025-03-19 02:06:53.383 2025-03-19 02:06:53.383 434797 13361 9 0 3645 2025-03-19 05:55:36.422 2025-03-19 05:55:36.422 434797 18241 19 0 3646 2025-03-19 02:05:08.644 2025-03-19 02:05:08.644 434797 18270 1 0 3647 2025-03-19 04:39:46.849 2025-03-19 04:39:46.849 434797 21303 2 0 3648 2025-03-19 02:07:00.815 2025-03-19 02:07:00.815 434798 1618 1 0 3649 2025-03-19 02:05:36.86 2025-03-19 02:05:36.86 434798 3686 1 0 3650 2025-03-19 05:55:28.974 2025-03-19 05:55:28.974 434798 8059 2 0 3651 2025-03-19 09:41:29.363 2025-03-19 09:41:29.363 434798 9669 9 0 3652 2025-03-19 04:39:45.217 2025-03-19 04:39:45.217 434798 9796 19 0 3653 2025-03-19 02:07:00.815 2025-03-19 02:07:00.815 434798 10849 9 0 3654 2025-03-19 03:42:13.249 2025-03-19 03:42:13.249 434798 12946 10 0 3655 2025-03-19 05:55:28.974 2025-03-19 05:55:28.974 434798 14515 19 0 3656 2025-03-19 09:41:29.363 2025-03-19 09:41:29.363 434798 16126 1 0 3657 2025-03-19 04:39:45.217 2025-03-19 04:39:45.217 434798 19759 2 0 3658 2025-03-19 03:42:13.249 2025-03-19 03:42:13.249 434798 20778 90 0 3659 2025-03-19 02:06:20.811 2025-03-19 02:06:20.811 434799 21374 1 0 3660 2025-03-19 02:06:43.3 2025-03-19 02:06:43.3 434800 703 1 0 3661 2025-03-19 02:07:28.692 2025-03-19 02:07:28.692 434800 1717 4 0 3662 2025-03-19 04:39:53.221 2025-03-19 04:39:53.221 434800 9331 19 0 3663 2025-03-19 02:07:28.692 2025-03-19 02:07:28.692 434800 14688 36 0 3664 2025-03-19 04:39:53.221 2025-03-19 04:39:53.221 434800 20220 2 0 3665 2025-03-20 04:04:57.137 2025-03-20 04:04:57.137 434801 736 25 0 3666 2025-03-19 05:55:00.243 2025-03-19 05:55:00.243 434801 1307 2 0 3667 2025-03-20 03:56:41.66 2025-03-20 03:56:41.66 434801 1751 4 0 3668 2025-03-19 04:39:42.587 2025-03-19 04:39:42.587 434801 6268 2 0 3669 2025-03-19 04:39:42.587 2025-03-19 04:39:42.587 434801 7376 19 0 3670 2025-03-19 02:17:17.318 2025-03-19 02:17:17.318 434801 8998 2 0 3671 2025-03-20 04:04:57.137 2025-03-20 04:04:57.137 434801 9339 3 0 3672 2025-03-19 02:18:57.91 2025-03-19 02:18:57.91 434801 9985 20 0 3673 2025-03-19 02:06:45.181 2025-03-19 02:06:45.181 434801 10536 1 0 3674 2025-03-19 02:32:49.057 2025-03-19 02:32:49.057 434801 11275 1 0 3675 2025-03-19 02:32:49.057 2025-03-19 02:32:49.057 434801 12965 9 0 3676 2025-03-19 05:55:00.243 2025-03-19 05:55:00.243 434801 14941 19 0 3677 2025-03-19 02:17:17.318 2025-03-19 02:17:17.318 434801 16126 14 0 3678 2025-03-20 03:56:41.66 2025-03-20 03:56:41.66 434801 19796 36 0 3679 2025-03-19 02:18:57.91 2025-03-19 02:18:57.91 434801 21239 2 0 3680 2025-03-19 02:06:58.83 2025-03-19 02:06:58.83 434802 12291 1 0 3681 2025-03-19 02:07:37.021 2025-03-19 02:07:37.021 434803 14857 1 0 3682 2025-03-19 02:08:36.142 2025-03-19 02:08:36.142 434804 1720 1 0 3683 2025-03-19 04:40:02.26 2025-03-19 04:40:02.26 434804 1823 2 0 3684 2025-03-19 02:40:27.774 2025-03-19 02:40:27.774 434804 2213 57 0 3685 2025-03-19 04:40:02.26 2025-03-19 04:40:02.26 434804 4345 19 0 3686 2025-03-19 02:40:27.774 2025-03-19 02:40:27.774 434804 6526 6 0 3687 2025-03-19 02:12:14.17 2025-03-19 02:12:14.17 434805 750 29 0 3688 2025-03-19 04:39:54.814 2025-03-19 04:39:54.814 434805 768 19 0 3689 2025-03-19 02:33:16.221 2025-03-19 02:33:16.221 434805 2338 1 0 3690 2025-03-19 03:05:06.782 2025-03-19 03:05:06.782 434805 5487 10 0 3691 2025-03-19 02:12:14.17 2025-03-19 02:12:14.17 434805 6688 3 0 3692 2025-03-19 04:39:54.814 2025-03-19 04:39:54.814 434805 7674 2 0 3693 2025-03-19 04:40:15.435 2025-03-19 04:40:15.435 434805 8505 45 0 3694 2025-03-19 03:05:06.782 2025-03-19 03:05:06.782 434805 11760 90 0 3695 2025-03-19 04:40:15.435 2025-03-19 04:40:15.435 434805 16442 5 0 3696 2025-03-19 02:09:49.935 2025-03-19 02:09:49.935 434805 16447 1 0 3697 2025-03-19 02:33:16.221 2025-03-19 02:33:16.221 434805 21247 9 0 3698 2025-03-19 02:15:32.378 2025-03-19 02:15:32.378 434806 1273 14 0 3699 2025-03-19 02:15:32.378 2025-03-19 02:15:32.378 434806 1316 2 0 3700 2025-03-19 05:54:51.309 2025-03-19 05:54:51.309 434806 9529 19 0 3701 2025-03-19 05:54:51.309 2025-03-19 05:54:51.309 434806 10638 2 0 3702 2025-03-19 04:39:40.699 2025-03-19 04:39:40.699 434806 13038 2 0 3703 2025-03-19 04:39:40.699 2025-03-19 04:39:40.699 434806 18101 19 0 3704 2025-03-19 02:10:17.444 2025-03-19 02:10:17.444 434806 19863 1 0 3705 2025-03-19 09:44:50.221 2025-03-19 09:44:50.221 434807 618 10 0 3706 2025-03-19 02:11:27.927 2025-03-19 02:11:27.927 434807 669 10 0 3707 2025-03-19 09:44:50.093 2025-03-19 09:44:50.093 434807 776 1 0 3708 2025-03-19 02:11:45.444 2025-03-19 02:11:45.444 434807 986 36 0 3709 2025-03-19 09:44:50.093 2025-03-19 09:44:50.093 434807 1615 10 0 3710 2025-03-19 13:53:04.297 2025-03-19 13:53:04.297 434807 1638 2 0 3711 2025-03-19 05:53:13.184 2025-03-19 05:53:13.184 434807 1773 19 0 3712 2025-03-19 03:29:58.659 2025-03-19 03:29:58.659 434807 1890 19 0 3713 2025-03-19 02:11:39.517 2025-03-19 02:11:39.517 434807 2734 1 0 3714 2025-03-19 09:44:49.947 2025-03-19 09:44:49.947 434807 2789 1 0 3715 2025-03-19 13:53:04.297 2025-03-19 13:53:04.297 434807 5195 19 0 3716 2025-03-19 02:11:27.927 2025-03-19 02:11:27.927 434807 5499 1 0 3717 2025-03-19 02:11:36.622 2025-03-19 02:11:36.622 434807 5746 9 0 3718 2025-03-19 02:11:45.444 2025-03-19 02:11:45.444 434807 5870 4 0 3719 2025-03-19 09:44:49.817 2025-03-19 09:44:49.817 434807 8469 1 0 3720 2025-03-19 03:03:46.758 2025-03-19 03:03:46.758 434807 9349 7 0 3721 2025-03-19 03:03:46.758 2025-03-19 03:03:46.758 434807 10519 1 0 3722 2025-03-19 03:01:10.157 2025-03-19 03:01:10.157 434807 11516 19 0 3723 2025-03-19 02:10:45.009 2025-03-19 02:10:45.009 434807 15521 100 0 3724 2025-03-19 09:44:49.947 2025-03-19 09:44:49.947 434807 17953 10 0 3725 2025-03-19 09:44:49.817 2025-03-19 09:44:49.817 434807 18500 10 0 3726 2025-03-19 09:44:50.221 2025-03-19 09:44:50.221 434807 19005 1 0 3727 2025-03-19 04:33:24.48 2025-03-19 04:33:24.48 434807 19569 2 0 3728 2025-03-19 02:11:26.41 2025-03-19 02:11:26.41 434807 20187 1 0 3729 2025-03-19 02:11:36.622 2025-03-19 02:11:36.622 434807 20436 1 0 3730 2025-03-19 05:53:13.184 2025-03-19 05:53:13.184 434807 20577 2 0 3731 2025-03-19 02:11:39.517 2025-03-19 02:11:39.517 434807 20904 10 0 3732 2025-03-19 03:29:58.659 2025-03-19 03:29:58.659 434807 20990 2 0 3733 2025-03-19 04:33:24.48 2025-03-19 04:33:24.48 434807 21091 19 0 3734 2025-03-19 03:01:10.157 2025-03-19 03:01:10.157 434807 21145 2 0 3735 2025-03-19 02:11:26.41 2025-03-19 02:11:26.41 434807 21400 10 0 3736 2025-03-19 02:11:09.883 2025-03-19 02:11:09.883 434808 10849 1 0 3737 2025-03-19 04:48:31.034 2025-03-19 04:48:31.034 434809 986 2 0 3738 2025-03-19 04:48:31.034 2025-03-19 04:48:31.034 434809 17030 19 0 3739 2025-03-19 02:11:38.559 2025-03-19 02:11:38.559 434809 20669 1 0 3740 2025-03-19 02:21:30.625 2025-03-19 02:21:30.625 434810 699 1 0 3741 2025-03-19 02:21:30.625 2025-03-19 02:21:30.625 434810 738 10 0 3742 2025-03-19 05:56:03.04 2025-03-19 05:56:03.04 434810 2232 1 0 3743 2025-03-19 04:42:56.302 2025-03-19 04:42:56.302 434810 6268 21 0 3744 2025-03-19 05:56:02.062 2025-03-19 05:56:02.062 434810 9099 1 0 3745 2025-03-19 05:56:03.04 2025-03-19 05:56:03.04 434810 12935 9 0 3746 2025-03-19 05:56:02.062 2025-03-19 05:56:02.062 434810 18865 9 0 3747 2025-03-19 02:12:05.718 2025-03-19 02:12:05.718 434810 19512 100 0 3748 2025-03-19 02:14:04.754 2025-03-19 02:14:04.754 434810 20683 0 0 3749 2025-03-19 04:42:56.302 2025-03-19 04:42:56.302 434810 21079 2 0 3750 2025-03-19 02:12:43.149 2025-03-19 02:12:43.149 434811 698 36 0 3751 2025-03-19 02:12:10.526 2025-03-19 02:12:10.526 434811 12561 1 0 3752 2025-03-19 02:12:43.149 2025-03-19 02:12:43.149 434811 15978 4 0 3753 2025-03-19 04:39:56.979 2025-03-19 04:39:56.979 434811 17218 19 0 3754 2025-03-19 04:39:56.979 2025-03-19 04:39:56.979 434811 18468 2 0 3755 2025-03-19 05:26:56.222 2025-03-19 05:26:56.222 434812 673 19 0 3756 2025-03-19 02:13:27.17 2025-03-19 02:13:27.17 434812 706 1 0 3757 2025-03-19 05:26:56.222 2025-03-19 05:26:56.222 434812 1785 2 0 3758 2025-03-19 13:51:19.35 2025-03-19 13:51:19.35 434813 691 19 0 3759 2025-03-19 02:41:28.124 2025-03-19 02:41:28.124 434813 1469 1 0 3760 2025-03-19 13:51:18.993 2025-03-19 13:51:18.993 434813 6058 19 0 3761 2025-03-19 02:41:28.124 2025-03-19 02:41:28.124 434813 9036 0 0 3762 2025-03-19 13:51:19.185 2025-03-19 13:51:19.185 434813 12049 19 0 3763 2025-03-19 13:51:19.35 2025-03-19 13:51:19.35 434813 13378 2 0 3764 2025-03-19 13:51:19.185 2025-03-19 13:51:19.185 434813 16357 2 0 3765 2025-03-19 13:51:19.687 2025-03-19 13:51:19.687 434813 16598 19 0 3766 2025-03-19 13:51:18.514 2025-03-19 13:51:18.514 434813 16769 19 0 3767 2025-03-19 02:13:28.804 2025-03-19 02:13:28.804 434813 17030 10 0 3768 2025-03-19 13:51:18.514 2025-03-19 13:51:18.514 434813 20551 2 0 3769 2025-03-19 13:51:19.687 2025-03-19 13:51:19.687 434813 21014 2 0 3770 2025-03-19 13:51:18.993 2025-03-19 13:51:18.993 434813 21714 2 0 3771 2025-03-19 15:05:12.619 2025-03-19 15:05:12.619 434814 642 115 0 3772 2025-03-19 15:05:12.619 2025-03-19 15:05:12.619 434814 902 13 0 3773 2025-03-19 02:39:57.919 2025-03-19 02:39:57.919 434814 5017 10 0 3774 2025-03-19 02:22:33.423 2025-03-19 02:22:33.423 434814 5499 0 0 3775 2025-03-19 02:39:57.919 2025-03-19 02:39:57.919 434814 8945 1 0 3776 2025-03-19 02:22:33.423 2025-03-19 02:22:33.423 434814 15336 1 0 3777 2025-03-19 02:14:08.696 2025-03-19 02:14:08.696 434814 21585 100 0 3778 2025-03-19 02:14:40.529 2025-03-19 02:14:40.529 434815 11073 1 0 3779 2025-03-19 02:44:59.162 2025-03-19 02:44:59.162 434816 691 9 0 3780 2025-03-19 02:14:48.215 2025-03-19 02:14:48.215 434816 4345 1 0 3781 2025-03-19 02:44:59.162 2025-03-19 02:44:59.162 434816 21228 1 0 3782 2025-03-19 02:22:41.631 2025-03-19 02:22:41.631 434818 654 2 0 3783 2025-03-19 04:40:03.3 2025-03-19 04:40:03.3 434818 7418 19 0 3784 2025-03-19 02:15:22.823 2025-03-19 02:15:22.823 434818 10112 1 0 3785 2025-03-19 02:16:08.397 2025-03-19 02:16:08.397 434818 18630 0 0 3786 2025-03-19 02:22:41.631 2025-03-19 02:22:41.631 434818 20754 14 0 3787 2025-03-19 04:40:03.3 2025-03-19 04:40:03.3 434818 20881 2 0 3788 2025-03-19 02:16:18.996 2025-03-19 02:16:18.996 434818 21389 0 0 3789 2025-03-19 02:18:57.733 2025-03-19 02:18:57.733 434819 4128 1 0 3790 2025-03-19 02:18:57.571 2025-03-19 02:18:57.571 434819 6430 1 0 3791 2025-03-19 02:18:57.733 2025-03-19 02:18:57.733 434819 7185 10 0 3792 2025-03-19 02:15:29.37 2025-03-19 02:15:29.37 434819 10484 1 0 3793 2025-03-19 02:18:57.38 2025-03-19 02:18:57.38 434819 17331 1 0 3794 2025-03-19 02:18:57.571 2025-03-19 02:18:57.571 434819 21522 10 0 3795 2025-03-19 02:18:57.38 2025-03-19 02:18:57.38 434819 21833 10 0 3796 2025-03-19 09:12:04.502 2025-03-19 09:12:04.502 434820 661 2 0 3797 2025-03-19 03:06:04.667 2025-03-19 03:06:04.667 434820 5728 9 0 3798 2025-03-19 09:12:04.502 2025-03-19 09:12:04.502 434820 10280 14 0 3799 2025-03-19 03:06:00.3 2025-03-19 03:06:00.3 434820 10986 9 0 3800 2025-03-19 04:39:44.557 2025-03-19 04:39:44.557 434820 11275 2 0 3801 2025-03-19 03:06:00.3 2025-03-19 03:06:00.3 434820 16594 1 0 3802 2025-03-19 04:39:44.557 2025-03-19 04:39:44.557 434820 18271 19 0 3803 2025-03-19 02:17:13.618 2025-03-19 02:17:13.618 434820 20756 1 0 3804 2025-03-19 03:06:04.667 2025-03-19 03:06:04.667 434820 21406 1 0 3805 2025-03-19 02:18:12.288 2025-03-19 02:18:12.288 434821 1609 1 0 3806 2025-03-19 02:18:31.137 2025-03-19 02:18:31.137 434822 11240 10 0 3807 2025-03-19 02:18:36.584 2025-03-19 02:18:36.584 434823 19924 1 0 3808 2025-03-19 04:39:43.088 2025-03-19 04:39:43.088 434824 634 19 0 3809 2025-03-19 02:32:46.116 2025-03-19 02:32:46.116 434824 675 1 0 3810 2025-03-19 02:18:52.806 2025-03-19 02:18:52.806 434824 700 1 0 3811 2025-03-19 02:32:46.116 2025-03-19 02:32:46.116 434824 987 9 0 3812 2025-03-19 02:20:51.823 2025-03-19 02:20:51.823 434824 9551 0 0 3813 2025-03-19 04:39:43.088 2025-03-19 04:39:43.088 434824 17050 2 0 3814 2025-03-19 02:20:35.324 2025-03-19 02:20:35.324 434824 17526 0 0 3815 2025-03-19 02:23:43.281 2025-03-19 02:23:43.281 434824 19198 0 0 3816 2025-03-19 03:06:06.394 2025-03-19 03:06:06.394 434824 20972 1 0 3817 2025-03-19 03:06:06.394 2025-03-19 03:06:06.394 434824 21041 9 0 3818 2025-03-19 02:20:08.786 2025-03-19 02:20:08.786 434825 20825 1 0 3819 2025-03-19 02:21:22.791 2025-03-19 02:21:22.791 434826 9166 1 0 3820 2025-03-19 09:26:54.299 2025-03-19 09:26:54.299 434827 768 23 0 3821 2025-03-19 06:04:37.844 2025-03-19 06:04:37.844 434827 836 1 0 3822 2025-03-19 04:46:12.619 2025-03-19 04:46:12.619 434827 1245 19 0 3823 2025-03-19 06:04:37.197 2025-03-19 06:04:37.197 434827 2338 1 0 3824 2025-03-19 02:22:13.19 2025-03-19 02:22:13.19 434827 4650 1 0 3825 2025-03-19 06:04:38.388 2025-03-19 06:04:38.388 434827 5173 0 0 3826 2025-03-19 09:26:54.299 2025-03-19 09:26:54.299 434827 9992 3 0 3827 2025-03-19 02:22:04.673 2025-03-19 02:22:04.673 434827 11498 10 0 3828 2025-03-19 06:04:37.197 2025-03-19 06:04:37.197 434827 11590 0 0 3829 2025-03-19 02:25:15.213 2025-03-19 02:25:15.213 434827 12808 36 0 3830 2025-03-19 06:04:36.538 2025-03-19 06:04:36.538 434827 13177 1 0 3831 2025-03-19 03:08:43.454 2025-03-19 03:08:43.454 434827 15941 10 0 3832 2025-03-19 03:08:43.454 2025-03-19 03:08:43.454 434827 20294 1 0 3833 2025-03-19 02:25:15.213 2025-03-19 02:25:15.213 434827 20799 4 0 3834 2025-03-19 06:04:36.538 2025-03-19 06:04:36.538 434827 21136 0 0 3835 2025-03-19 06:04:37.844 2025-03-19 06:04:37.844 434827 21338 0 0 3836 2025-03-19 02:22:13.19 2025-03-19 02:22:13.19 434827 21356 0 0 3837 2025-03-19 06:04:38.388 2025-03-19 06:04:38.388 434827 21577 1 0 3838 2025-03-19 04:46:12.619 2025-03-19 04:46:12.619 434827 21710 2 0 3839 2025-03-19 02:32:25.145 2025-03-19 02:32:25.145 434828 726 8 0 3840 2025-03-19 02:22:38.999 2025-03-19 02:22:38.999 434828 2206 0 0 3841 2025-03-19 02:22:27.712 2025-03-19 02:22:27.712 434828 9246 1 0 3842 2025-03-19 02:32:25.145 2025-03-19 02:32:25.145 434828 10638 69 0 3843 2025-03-19 04:40:05.542 2025-03-19 04:40:05.542 434828 18314 2 0 3844 2025-03-19 04:40:05.542 2025-03-19 04:40:05.542 434828 20596 19 0 3845 2025-03-19 04:40:03.888 2025-03-19 04:40:03.888 434829 886 2 0 3846 2025-03-19 04:40:03.888 2025-03-19 04:40:03.888 434829 2056 19 0 3847 2025-03-19 03:01:42.568 2025-03-19 03:01:42.568 434829 11240 20 0 3848 2025-03-19 03:01:42.568 2025-03-19 03:01:42.568 434829 14122 2 0 3849 2025-03-19 02:22:29.945 2025-03-19 02:22:29.945 434829 20963 1 0 3850 2025-03-19 02:25:32.283 2025-03-19 02:25:32.283 434830 4459 0 0 3851 2025-03-19 02:25:30.235 2025-03-19 02:25:30.235 434830 11885 1 0 3852 2025-03-19 02:25:30.235 2025-03-19 02:25:30.235 434830 16839 10 0 3853 2025-03-19 02:24:54.785 2025-03-19 02:24:54.785 434830 17331 1 0 3854 2025-03-19 03:51:16.261 2025-03-19 03:51:16.261 434831 2326 3 0 3855 2025-03-19 02:25:40.298 2025-03-19 02:25:40.298 434831 10981 1 0 3856 2025-03-19 03:51:16.261 2025-03-19 03:51:16.261 434831 17103 27 0 3857 2025-03-19 02:27:07.856 2025-03-19 02:27:07.856 434832 21571 1 0 3858 2025-03-19 02:33:42.599 2025-03-19 02:33:42.599 434833 690 0 0 3859 2025-03-19 02:33:25.915 2025-03-19 02:33:25.915 434833 4062 0 0 3860 2025-03-19 02:31:14.978 2025-03-19 02:31:14.978 434833 16633 1 0 3861 2025-03-19 02:35:24.281 2025-03-19 02:35:24.281 434833 17568 0 0 3862 2025-03-19 02:36:10.486 2025-03-19 02:36:10.486 434833 19826 0 0 3863 2025-03-19 02:31:37.088 2025-03-19 02:31:37.088 434833 21208 0 0 3864 2025-03-19 02:31:15.904 2025-03-19 02:31:15.904 434834 803 1 0 3865 2025-03-19 03:04:48.781 2025-03-19 03:04:48.781 434835 12169 1 0 3866 2025-03-19 03:04:48.781 2025-03-19 03:04:48.781 434835 15549 0 0 3867 2025-03-19 07:58:08.545 2025-03-19 07:58:08.545 434835 16809 10 0 3868 2025-03-19 07:58:08.545 2025-03-19 07:58:08.545 434835 17209 90 0 3869 2025-03-19 02:31:59.85 2025-03-19 02:31:59.85 434835 21498 10 0 3870 2025-03-19 02:32:07.648 2025-03-19 02:32:07.648 434836 20799 100 0 3871 2025-03-19 04:46:09.821 2025-03-19 04:46:09.821 434837 2775 19 0 3872 2025-03-19 13:10:59.281 2025-03-19 13:10:59.281 434837 4083 1 0 3873 2025-03-19 03:22:09.711 2025-03-19 03:22:09.711 434837 13921 1 0 3874 2025-03-19 13:10:59.281 2025-03-19 13:10:59.281 434837 14909 9 0 3875 2025-03-19 02:36:27.791 2025-03-19 02:36:27.791 434837 15337 0 0 3876 2025-03-19 02:32:12.182 2025-03-19 02:32:12.182 434837 16149 10 0 3877 2025-03-19 03:22:09.711 2025-03-19 03:22:09.711 434837 17415 10 0 3878 2025-03-19 04:46:09.821 2025-03-19 04:46:09.821 434837 20555 2 0 3879 2025-03-19 02:34:04.561 2025-03-19 02:34:04.561 434837 21072 4 0 3880 2025-03-19 02:34:04.561 2025-03-19 02:34:04.561 434837 21555 36 0 3881 2025-03-19 04:16:56.792 2025-03-19 04:16:56.792 434838 660 1 0 3882 2025-03-19 04:16:56.624 2025-03-19 04:16:56.624 434838 959 1 0 3883 2025-03-19 04:16:56.624 2025-03-19 04:16:56.624 434838 1490 0 0 3884 2025-03-19 04:16:56.792 2025-03-19 04:16:56.792 434838 15488 8 0 3885 2025-03-19 02:32:19.456 2025-03-19 02:32:19.456 434838 20669 1 0 3886 2025-03-19 02:33:01.905 2025-03-19 02:33:01.905 434839 1618 1 0 3887 2025-03-19 02:38:40.174 2025-03-19 02:38:40.174 434840 647 1 0 3888 2025-03-19 02:39:52.023 2025-03-19 02:39:52.023 434841 19826 1 0 3889 2025-03-19 02:59:29.947 2025-03-19 02:59:29.947 434842 919 2 0 3890 2025-03-19 02:59:29.947 2025-03-19 02:59:29.947 434842 9177 19 0 3891 2025-03-19 04:39:38.759 2025-03-19 04:39:38.759 434842 14278 2 0 3892 2025-03-19 02:40:02.743 2025-03-19 02:40:02.743 434842 15484 1 0 3893 2025-03-19 05:54:29.004 2025-03-19 05:54:29.004 434842 16440 2 0 3894 2025-03-19 05:54:29.004 2025-03-19 05:54:29.004 434842 20073 19 0 3895 2025-03-19 04:39:38.759 2025-03-19 04:39:38.759 434842 21683 19 0 3896 2025-03-19 02:40:17.87 2025-03-19 02:40:17.87 434843 10719 1 0 3897 2025-03-19 03:33:21.659 2025-03-19 03:33:21.659 434844 6421 19 0 3898 2025-03-19 02:44:32.713 2025-03-19 02:44:32.713 434844 9276 0 0 3899 2025-03-19 03:33:21.659 2025-03-19 03:33:21.659 434844 13398 2 0 3900 2025-03-19 02:40:27.692 2025-03-19 02:40:27.692 434844 17171 1 0 3901 2025-03-19 06:53:49.998 2025-03-19 06:53:49.998 434845 2322 19 0 3902 2025-03-19 05:01:59.777 2025-03-19 05:01:59.777 434845 3745 0 0 3903 2025-03-19 06:53:49.998 2025-03-19 06:53:49.998 434845 10096 2 0 3904 2025-03-19 05:01:59.777 2025-03-19 05:01:59.777 434845 10818 1 0 3905 2025-03-19 04:39:39.458 2025-03-19 04:39:39.458 434845 11590 19 0 3906 2025-03-19 02:59:03.973 2025-03-19 02:59:03.973 434845 11942 19 0 3907 2025-03-19 05:54:16.58 2025-03-19 05:54:16.58 434845 13249 2 0 3908 2025-03-19 02:42:52.825 2025-03-19 02:42:52.825 434845 19888 1 0 3909 2025-03-19 04:39:39.458 2025-03-19 04:39:39.458 434845 20840 2 0 3910 2025-03-19 05:54:16.58 2025-03-19 05:54:16.58 434845 21424 19 0 3911 2025-03-19 02:59:03.973 2025-03-19 02:59:03.973 434845 21427 2 0 3912 2025-03-19 05:22:11.03 2025-03-19 05:22:11.03 434846 733 3 0 3913 2025-03-19 02:42:55.117 2025-03-19 02:42:55.117 434846 10291 10 0 3914 2025-03-19 03:04:52.436 2025-03-19 03:04:52.436 434846 13467 19 0 3915 2025-03-19 05:22:11.03 2025-03-19 05:22:11.03 434846 16542 0 0 3916 2025-03-19 03:04:52.436 2025-03-19 03:04:52.436 434846 16929 2 0 3917 2025-03-19 02:43:26.801 2025-03-19 02:43:26.801 434847 1273 1 0 3918 2025-03-19 02:59:53.095 2025-03-19 02:59:53.095 434847 19637 1 0 3919 2025-03-19 13:51:36.464 2025-03-19 13:51:36.464 434847 19813 2 0 3920 2025-03-19 13:51:36.464 2025-03-19 13:51:36.464 434847 21048 19 0 3921 2025-03-19 02:59:53.095 2025-03-19 02:59:53.095 434847 21254 10 0 3922 2025-03-19 02:43:48.674 2025-03-19 02:43:48.674 434848 13365 1 0 3923 2025-03-19 02:45:47.772 2025-03-19 02:45:47.772 434849 17221 1 0 3924 2025-03-19 02:49:32.752 2025-03-19 02:49:32.752 434850 21047 1 0 3925 2025-03-20 09:50:20.566 2025-03-20 09:50:20.566 434851 9084 1 0 3926 2025-03-19 06:47:23.143 2025-03-19 06:47:23.143 434851 16598 135 0 3927 2025-03-19 02:50:00.717 2025-03-19 02:50:00.717 434851 18068 21 0 3928 2025-03-19 06:47:23.143 2025-03-19 06:47:23.143 434851 21214 15 0 3929 2025-03-20 09:50:20.566 2025-03-20 09:50:20.566 434851 21314 9 0 3930 2025-03-19 02:53:17.222 2025-03-19 02:53:17.222 434852 15282 1 0 3931 2025-03-19 02:54:56.44 2025-03-19 02:54:56.44 434853 5195 1 0 3932 2025-03-19 02:57:28.129 2025-03-19 02:57:28.129 434854 780 4 0 3933 2025-03-19 04:52:16.61 2025-03-19 04:52:16.61 434854 1051 2 0 3934 2025-03-19 03:02:24.55 2025-03-19 03:02:24.55 434854 1692 0 0 3935 2025-03-19 02:57:28.129 2025-03-19 02:57:28.129 434854 4292 36 0 3936 2025-03-19 03:02:24.55 2025-03-19 03:02:24.55 434854 18017 1 0 3937 2025-03-19 02:56:02.783 2025-03-19 02:56:02.783 434854 19527 10 0 3938 2025-03-19 04:52:16.61 2025-03-19 04:52:16.61 434854 21803 19 0 3939 2025-03-19 02:58:47.786 2025-03-19 02:58:47.786 434855 762 1 0 3940 2025-03-19 02:59:21.469 2025-03-19 02:59:21.469 434856 644 1 0 3941 2025-03-19 04:09:27.705 2025-03-19 04:09:27.705 434856 2513 1 0 3942 2025-03-19 04:09:27.705 2025-03-19 04:09:27.705 434856 12561 0 0 3943 2025-03-19 04:09:28.306 2025-03-19 04:09:28.306 434856 17184 1 0 3944 2025-03-19 04:09:28.306 2025-03-19 04:09:28.306 434856 18525 8 0 3945 2025-03-19 02:59:47.922 2025-03-19 02:59:47.922 434857 1609 1 0 3946 2025-03-19 13:51:33.793 2025-03-19 13:51:33.793 434857 7978 2 0 3947 2025-03-19 13:51:33.793 2025-03-19 13:51:33.793 434857 20133 19 0 3948 2025-03-19 03:05:41.127 2025-03-19 03:05:41.127 434858 713 0 0 3949 2025-03-19 03:02:46.493 2025-03-19 03:02:46.493 434858 827 0 0 3950 2025-03-19 03:04:16.07 2025-03-19 03:04:16.07 434858 880 0 0 3951 2025-03-19 03:04:38.12 2025-03-19 03:04:38.12 434858 1567 0 0 3952 2025-03-19 03:01:35.882 2025-03-19 03:01:35.882 434858 1620 1 0 3953 2025-03-19 03:06:52.086 2025-03-19 03:06:52.086 434858 2123 0 0 3954 2025-03-19 03:02:06.236 2025-03-19 03:02:06.236 434858 9450 0 0 3955 2025-03-19 03:03:21.515 2025-03-19 03:03:21.515 434858 11275 0 0 3956 2025-03-19 03:05:23.019 2025-03-19 03:05:23.019 434858 15119 0 0 3957 2025-03-19 03:05:31.838 2025-03-19 03:05:31.838 434858 15409 0 0 3958 2025-03-19 03:03:47.636 2025-03-19 03:03:47.636 434858 16753 0 0 3959 2025-03-19 03:08:22.338 2025-03-19 03:08:22.338 434858 20998 0 0 3960 2025-03-19 03:06:37.373 2025-03-19 03:06:37.373 434858 21047 0 0 3961 2025-03-19 03:06:10.231 2025-03-19 03:06:10.231 434858 21062 0 0 3962 2025-03-19 05:54:02.508 2025-03-19 05:54:02.508 434859 738 19 0 3963 2025-03-19 05:54:02.508 2025-03-19 05:54:02.508 434859 987 2 0 3964 2025-03-19 06:53:41.998 2025-03-19 06:53:41.998 434859 1195 2 0 3965 2025-03-19 03:02:50.374 2025-03-19 03:02:50.374 434859 2195 1 0 3966 2025-03-19 06:53:41.998 2025-03-19 06:53:41.998 434859 11760 19 0 3967 2025-03-19 04:39:36.68 2025-03-19 04:39:36.68 434859 19494 2 0 3968 2025-03-19 04:39:36.68 2025-03-19 04:39:36.68 434859 20674 19 0 3969 2025-03-19 03:04:14.829 2025-03-19 03:04:14.829 434860 13753 100 0 3970 2025-03-19 03:04:15.5 2025-03-19 03:04:15.5 434861 2748 1 0 3971 2025-03-19 03:04:30.76 2025-03-19 03:04:30.76 434862 2609 1 0 3972 2025-03-19 03:09:01.853 2025-03-19 03:09:01.853 434862 5852 1 0 3973 2025-03-19 03:09:01.406 2025-03-19 03:09:01.406 434862 11423 1 0 3974 2025-03-19 03:09:00.811 2025-03-19 03:09:00.811 434862 11498 10 0 3975 2025-03-19 03:09:01.853 2025-03-19 03:09:01.853 434862 14669 10 0 3976 2025-03-19 03:09:00.811 2025-03-19 03:09:00.811 434862 20220 1 0 3977 2025-03-19 03:09:01.406 2025-03-19 03:09:01.406 434862 21119 10 0 3978 2025-03-19 05:59:46.637 2025-03-19 05:59:46.637 434863 9242 2 0 3979 2025-03-19 05:59:46.637 2025-03-19 05:59:46.637 434863 11153 19 0 3980 2025-03-19 03:05:47.505 2025-03-19 03:05:47.505 434863 18231 1 0 3981 2025-03-19 03:09:28.242 2025-03-19 03:09:28.242 434864 837 7 0 3982 2025-03-19 05:10:58.174 2025-03-19 05:10:58.174 434864 1012 23 0 3983 2025-03-19 04:52:59.646 2025-03-19 04:52:59.646 434864 1650 1 0 3984 2025-03-19 05:10:58.174 2025-03-19 05:10:58.174 434864 4984 3 0 3985 2025-03-19 03:09:28.242 2025-03-19 03:09:28.242 434864 11776 1 0 3986 2025-03-19 04:52:59.646 2025-03-19 04:52:59.646 434864 21281 7 0 3987 2025-03-19 03:05:53.242 2025-03-19 03:05:53.242 434864 21291 1 0 3988 2025-03-19 03:18:04.133 2025-03-19 03:18:04.133 434865 1213 10 0 3989 2025-03-19 04:33:19.138 2025-03-19 04:33:19.138 434865 1273 2 0 3990 2025-03-19 03:18:04.133 2025-03-19 03:18:04.133 434865 1439 1 0 3991 2025-03-19 03:18:05.516 2025-03-19 03:18:05.516 434865 3411 1 0 3992 2025-03-19 03:18:04.476 2025-03-19 03:18:04.476 434865 4225 10 0 3993 2025-03-19 03:18:04.476 2025-03-19 03:18:04.476 434865 6653 1 0 3994 2025-03-19 03:06:15.576 2025-03-19 03:06:15.576 434865 9330 21 0 3995 2025-03-19 03:18:05.516 2025-03-19 03:18:05.516 434865 17212 10 0 3996 2025-03-19 04:33:19.138 2025-03-19 04:33:19.138 434865 19888 19 0 3997 2025-03-19 04:39:48.627 2025-03-19 04:39:48.627 434866 17953 2 0 3998 2025-03-19 03:07:37.392 2025-03-19 03:07:37.392 434866 18309 4 0 3999 2025-03-19 04:39:48.627 2025-03-19 04:39:48.627 434866 18423 19 0 4000 2025-03-19 03:07:37.392 2025-03-19 03:07:37.392 434866 20291 36 0 4001 2025-03-19 03:06:43.392 2025-03-19 03:06:43.392 434866 20624 1 0 4002 2025-03-19 03:14:16.361 2025-03-19 03:14:16.361 434867 3396 19 0 4003 2025-03-19 03:08:40.45 2025-03-19 03:08:40.45 434867 5746 1 0 4004 2025-03-19 03:14:16.361 2025-03-19 03:14:16.361 434867 10536 2 0 4005 2025-03-19 03:33:16.886 2025-03-19 03:33:16.886 434868 769 19 0 4006 2025-03-19 03:33:16.886 2025-03-19 03:33:16.886 434868 12935 2 0 4007 2025-03-19 03:08:48.468 2025-03-19 03:08:48.468 434868 21062 1 0 4008 2025-03-19 03:08:49.342 2025-03-19 03:08:49.342 434869 1881 1 0 4009 2025-03-19 03:25:08.736 2025-03-19 03:25:08.736 434870 1488 5 0 4010 2025-03-19 03:09:19.548 2025-03-19 03:09:19.548 434870 5776 1 0 4011 2025-03-19 03:25:08.736 2025-03-19 03:25:08.736 434870 17291 1 0 4012 2025-03-19 03:11:22.695 2025-03-19 03:11:22.695 434871 1489 1 0 4013 2025-03-19 03:14:23.881 2025-03-19 03:14:23.881 434871 4958 0 0 4014 2025-03-19 03:30:39.557 2025-03-19 03:30:39.557 434871 8796 2 0 4015 2025-03-19 03:12:15.39 2025-03-19 03:12:15.39 434871 16704 0 0 4016 2025-03-19 03:16:14.512 2025-03-19 03:16:14.512 434871 17183 2 0 4017 2025-03-19 03:11:40.005 2025-03-19 03:11:40.005 434871 18717 0 0 4018 2025-03-19 03:16:14.512 2025-03-19 03:16:14.512 434871 20788 18 0 4019 2025-03-19 03:30:39.557 2025-03-19 03:30:39.557 434871 20969 19 0 4020 2025-03-19 03:17:07.796 2025-03-19 03:17:07.796 434872 979 10 0 4021 2025-03-19 03:17:08.837 2025-03-19 03:17:08.837 434872 2593 1 0 4022 2025-03-19 03:17:08.837 2025-03-19 03:17:08.837 434872 6148 10 0 4023 2025-03-19 03:17:08.316 2025-03-19 03:17:08.316 434872 11716 10 0 4024 2025-03-19 03:17:07.796 2025-03-19 03:17:07.796 434872 11776 1 0 4025 2025-03-19 03:14:11.277 2025-03-19 03:14:11.277 434872 11866 1 0 4026 2025-03-19 03:17:08.316 2025-03-19 03:17:08.316 434872 12609 1 0 4027 2025-03-19 03:17:36.476 2025-03-19 03:17:36.476 434873 17116 1 0 4028 2025-03-19 03:17:56.87 2025-03-19 03:17:56.87 434874 1745 1 0 4029 2025-03-20 06:45:17.054 2025-03-20 06:45:17.054 434874 5427 45 0 4030 2025-03-20 06:45:16.541 2025-03-20 06:45:16.541 434874 7766 45 0 4031 2025-03-19 13:02:16.182 2025-03-19 13:02:16.182 434874 14905 2 0 4032 2025-03-19 13:02:16.182 2025-03-19 13:02:16.182 434874 15273 19 0 4033 2025-03-20 06:45:17.054 2025-03-20 06:45:17.054 434874 17103 5 0 4034 2025-03-20 06:45:16.541 2025-03-20 06:45:16.541 434874 18449 5 0 4035 2025-03-19 03:18:00.574 2025-03-19 03:18:00.574 434875 12921 1 0 4036 2025-03-19 03:19:38.787 2025-03-19 03:19:38.787 434876 1959 1 0 4037 2025-03-19 04:20:25.77 2025-03-19 04:20:25.77 434877 1515 1 0 4038 2025-03-19 04:20:25.77 2025-03-19 04:20:25.77 434877 2528 9 0 4039 2025-03-19 03:21:41.269 2025-03-19 03:21:41.269 434877 9611 0 0 4040 2025-03-19 03:33:28.068 2025-03-19 03:33:28.068 434877 10013 2 0 4041 2025-03-19 03:33:28.068 2025-03-19 03:33:28.068 434877 11776 19 0 4042 2025-03-19 03:21:12.405 2025-03-19 03:21:12.405 434877 21373 1 0 4043 2025-03-19 13:10:11.084 2025-03-19 13:10:11.084 434878 623 9 0 4044 2025-03-19 03:22:06.031 2025-03-19 03:22:06.031 434878 5746 1 0 4045 2025-03-19 05:40:20.373 2025-03-19 05:40:20.373 434878 7809 0 0 4046 2025-03-19 13:10:11.084 2025-03-19 13:10:11.084 434878 7847 1 0 4047 2025-03-19 05:53:32.922 2025-03-19 05:53:32.922 434878 11527 3 0 4048 2025-03-19 05:53:32.922 2025-03-19 05:53:32.922 434878 11862 30 0 4049 2025-03-19 05:40:20.373 2025-03-19 05:40:20.373 434878 20755 1 0 4050 2025-03-19 04:39:50.286 2025-03-19 04:39:50.286 434879 3745 19 0 4051 2025-03-19 03:30:29.15 2025-03-19 03:30:29.15 434879 5057 36 0 4052 2025-03-19 03:22:22.951 2025-03-19 03:22:22.951 434879 5809 1 0 4053 2025-03-19 04:39:50.286 2025-03-19 04:39:50.286 434879 17365 2 0 4054 2025-03-19 03:30:29.15 2025-03-19 03:30:29.15 434879 21402 4 0 4055 2025-03-19 03:22:32.164 2025-03-19 03:22:32.164 434880 18412 1 0 4056 2025-03-19 03:23:33.392 2025-03-19 03:23:33.392 434881 5293 1 0 4057 2025-03-19 04:35:33.635 2025-03-19 04:35:33.635 434882 2776 19 0 4058 2025-03-19 03:23:52.33 2025-03-19 03:23:52.33 434882 4958 98 0 4059 2025-03-19 03:45:12.442 2025-03-19 03:45:12.442 434882 8544 19 0 4060 2025-03-19 04:35:33.635 2025-03-19 04:35:33.635 434882 15588 2 0 4061 2025-03-20 06:31:09.862 2025-03-20 06:31:09.862 434882 16347 7 0 4062 2025-03-20 06:31:09.862 2025-03-20 06:31:09.862 434882 18409 64 0 4063 2025-03-19 03:45:12.442 2025-03-19 03:45:12.442 434882 20073 2 0 4064 2025-03-19 03:26:11.503 2025-03-19 03:26:11.503 434883 770 7 0 4065 2025-03-19 03:26:11.503 2025-03-19 03:26:11.503 434883 1092 1 0 4066 2025-03-19 03:25:32.092 2025-03-19 03:25:32.092 434883 1245 1 0 4067 2025-03-19 03:29:26.927 2025-03-19 03:29:26.927 434884 7916 1 0 4068 2025-03-19 03:26:49.084 2025-03-19 03:26:49.084 434884 10519 1 0 4069 2025-03-19 03:29:26.927 2025-03-19 03:29:26.927 434884 12656 10 0 4070 2025-03-19 10:37:19.879 2025-03-19 10:37:19.879 434885 1424 0 0 4071 2025-03-19 10:37:20.083 2025-03-19 10:37:20.083 434885 10291 0 0 4072 2025-03-19 10:37:20.083 2025-03-19 10:37:20.083 434885 17541 1 0 4073 2025-03-19 10:37:19.879 2025-03-19 10:37:19.879 434885 19375 1 0 4074 2025-03-19 03:27:51.562 2025-03-19 03:27:51.562 434885 21494 1 0 4075 2025-03-19 03:28:09.846 2025-03-19 03:28:09.846 434886 12779 1 0 4076 2025-03-19 03:28:11.581 2025-03-19 03:28:11.581 434887 5171 10 0 4077 2025-03-19 03:32:08.413 2025-03-19 03:32:08.413 434887 18615 0 0 4078 2025-03-19 03:32:08.413 2025-03-19 03:32:08.413 434887 19857 1 0 4079 2025-03-19 04:35:31.1 2025-03-19 04:35:31.1 434888 7682 2 0 4080 2025-03-19 03:29:00.344 2025-03-19 03:29:00.344 434888 11165 100 0 4081 2025-03-19 03:59:30.77 2025-03-19 03:59:30.77 434888 15588 10 0 4082 2025-03-19 03:59:30.77 2025-03-19 03:59:30.77 434888 15719 90 0 4083 2025-03-19 04:35:31.1 2025-03-19 04:35:31.1 434888 17494 19 0 4084 2025-03-19 03:29:30.015 2025-03-19 03:29:30.015 434889 2620 1 0 4085 2025-03-19 04:48:30.151 2025-03-19 04:48:30.151 434890 4395 19 0 4086 2025-03-19 03:30:26.148 2025-03-19 03:30:26.148 434890 5500 1 0 4087 2025-03-19 04:48:30.151 2025-03-19 04:48:30.151 434890 20205 2 0 4088 2025-03-19 03:31:18.46 2025-03-19 03:31:18.46 434891 21734 1 0 4089 2025-03-19 03:34:42.874 2025-03-19 03:34:42.874 434892 627 1 0 4090 2025-03-19 03:34:42.696 2025-03-19 03:34:42.696 434892 1802 1 0 4091 2025-03-19 03:34:43.683 2025-03-19 03:34:43.683 434892 17714 10 0 4092 2025-03-19 03:32:39.278 2025-03-19 03:32:39.278 434892 20495 1 0 4093 2025-03-19 03:34:43.683 2025-03-19 03:34:43.683 434892 20680 1 0 4094 2025-03-19 03:34:42.874 2025-03-19 03:34:42.874 434892 20755 10 0 4095 2025-03-19 03:34:42.696 2025-03-19 03:34:42.696 434892 21202 10 0 4096 2025-03-19 03:33:12.246 2025-03-19 03:33:12.246 434893 14669 1 0 4097 2025-03-19 03:33:15.11 2025-03-19 03:33:15.11 434894 12102 1 0 4098 2025-03-19 03:33:37.985 2025-03-19 03:33:37.985 434895 641 1 0 4099 2025-03-19 03:34:17.485 2025-03-19 03:34:17.485 434896 12562 1 0 4100 2025-03-19 08:50:31.165 2025-03-19 08:50:31.165 434896 21518 0 0 4101 2025-03-19 08:50:31.165 2025-03-19 08:50:31.165 434896 21832 4 0 4102 2025-03-19 07:04:34.12 2025-03-19 07:04:34.12 434897 925 2 0 4103 2025-03-19 07:04:34.12 2025-03-19 07:04:34.12 434897 7877 19 0 4104 2025-03-19 03:34:37.575 2025-03-19 03:34:37.575 434897 10102 100 0 4105 2025-03-19 04:02:17.954 2025-03-19 04:02:17.954 434898 1803 1 0 4106 2025-03-19 03:35:37.563 2025-03-19 03:35:37.563 434898 12169 1 0 4107 2025-03-19 04:02:17.954 2025-03-19 04:02:17.954 434898 16816 9 0 4108 2025-03-19 03:51:48.323 2025-03-19 03:51:48.323 434899 11996 2 0 4109 2025-03-19 03:51:48.323 2025-03-19 03:51:48.323 434899 19494 18 0 4110 2025-03-19 03:36:59.82 2025-03-19 03:36:59.82 434899 21222 1 0 4111 2025-03-19 03:37:11.821 2025-03-19 03:37:11.821 434900 776 1 0 4112 2025-03-19 03:37:26.334 2025-03-19 03:37:26.334 434901 6137 1 0 4113 2025-03-19 04:01:40.406 2025-03-19 04:01:40.406 434902 672 20 0 4114 2025-03-19 03:43:12.219 2025-03-19 03:43:12.219 434902 688 1 0 4115 2025-03-19 03:56:25.41 2025-03-19 03:56:25.41 434902 827 9 0 4116 2025-03-19 03:56:24.175 2025-03-19 03:56:24.175 434902 1620 1 0 4117 2025-03-19 05:53:43.722 2025-03-19 05:53:43.722 434902 2039 19 0 4118 2025-03-19 03:54:38.198 2025-03-19 03:54:38.198 434902 2098 2 0 4119 2025-03-19 04:03:10.987 2025-03-19 04:03:10.987 434902 3411 2 0 4120 2025-03-19 04:01:40.406 2025-03-19 04:01:40.406 434902 9276 2 0 4121 2025-03-19 03:56:24.175 2025-03-19 03:56:24.175 434902 15239 9 0 4122 2025-03-19 18:19:04.537 2025-03-19 18:19:04.537 434902 16950 45 0 4123 2025-03-19 03:56:25.41 2025-03-19 04:39:34.872 434902 20180 3 0 4124 2025-03-19 05:53:43.722 2025-03-19 05:53:43.722 434902 20450 2 0 4125 2025-03-19 04:39:34.872 2025-03-19 04:39:34.872 434902 20754 19 0 4126 2025-03-19 03:54:38.198 2025-03-19 03:54:38.198 434902 20901 19 0 4127 2025-03-19 04:03:10.987 2025-03-19 04:03:10.987 434902 20970 14 0 4128 2025-03-19 18:19:04.537 2025-03-19 18:19:04.537 434902 21794 5 0 4129 2025-03-19 04:45:12.773 2025-03-19 04:45:12.773 434903 638 1 0 4130 2025-03-19 03:44:00.084 2025-03-19 03:44:00.084 434903 2013 1 0 4131 2025-03-19 06:02:26.052 2025-03-19 06:02:26.052 434903 4776 12 0 4132 2025-03-19 04:45:12.773 2025-03-19 04:45:12.773 434903 11714 12 0 4133 2025-03-19 06:02:26.052 2025-03-19 06:02:26.052 434903 20768 1 0 4134 2025-03-19 03:44:27.337 2025-03-19 03:44:27.337 434904 18865 1 0 4135 2025-03-19 03:44:31.743 2025-03-19 03:44:31.743 434905 16660 21 0 4136 2025-03-19 04:02:37.33 2025-03-19 04:02:37.33 434905 20993 10 0 4137 2025-03-19 04:02:37.33 2025-03-19 04:02:37.33 434905 21571 90 0 4138 2025-03-19 03:45:38.958 2025-03-19 03:45:38.958 434906 14650 1 0 4139 2025-03-19 03:46:18.913 2025-03-19 03:46:18.913 434907 17535 1 0 4140 2025-03-19 07:14:20.978 2025-03-19 07:14:20.978 434908 1195 64 0 4141 2025-03-19 07:14:20.978 2025-03-19 07:14:20.978 434908 16406 7 0 4142 2025-03-19 03:49:11.389 2025-03-19 03:49:11.389 434908 21373 1 0 4143 2025-03-19 03:49:15.671 2025-03-19 03:49:15.671 434909 859 10 0 4144 2025-03-19 04:35:28.038 2025-03-19 04:35:28.038 434909 7773 19 0 4145 2025-03-19 03:50:33.766 2025-03-19 03:50:33.766 434909 9036 4 0 4146 2025-03-19 03:50:33.766 2025-03-19 03:50:33.766 434909 10981 36 0 4147 2025-03-19 04:35:28.038 2025-03-19 04:35:28.038 434909 15103 2 0 4148 2025-03-19 03:51:32.611 2025-03-19 03:51:32.611 434910 1512 36 0 4149 2025-03-19 03:51:32.611 2025-03-19 03:51:32.611 434910 18717 4 0 4150 2025-03-19 03:50:15.226 2025-03-19 03:50:15.226 434910 21020 1 0 4151 2025-03-19 03:50:40.496 2025-03-19 03:50:40.496 434911 1772 10 0 4152 2025-03-19 03:51:02.934 2025-03-19 03:51:02.934 434911 10638 0 0 4153 2025-03-19 03:53:31.426 2025-03-19 03:53:31.426 434912 10849 19 0 4154 2025-03-19 03:53:31.426 2025-03-19 03:53:31.426 434912 15243 2 0 4155 2025-03-19 03:51:40.161 2025-03-19 03:51:40.161 434912 21600 1 0 4156 2025-03-19 05:47:32.143 2025-03-19 05:47:32.143 434913 5003 9 0 4157 2025-03-19 03:53:32.937 2025-03-19 03:53:32.937 434913 9916 1 0 4158 2025-03-19 05:47:32.143 2025-03-19 05:47:32.143 434913 14452 1 0 4159 2025-03-19 03:54:23.157 2025-03-19 03:54:23.157 434914 10536 1 0 4160 2025-03-19 12:48:35.176 2025-03-19 12:48:35.176 434915 667 45 0 4161 2025-03-19 03:54:43.285 2025-03-19 03:54:43.285 434915 13987 1 0 4162 2025-03-19 12:48:35.176 2025-03-19 12:48:35.176 434915 20956 5 0 4163 2025-03-19 03:59:50.815 2025-03-19 03:59:50.815 434916 622 10 0 4164 2025-03-19 03:59:54.65 2025-03-19 03:59:54.65 434916 2329 10 0 4165 2025-03-19 04:35:39.087 2025-03-19 04:35:39.087 434916 2593 19 0 4166 2025-03-19 03:59:50.815 2025-03-19 03:59:50.815 434916 5455 1 0 4167 2025-03-19 03:59:53.801 2025-03-19 03:59:53.801 434916 5904 10 0 4168 2025-03-19 03:55:30.722 2025-03-19 03:55:30.722 434916 8173 2 0 4169 2025-03-19 04:35:39.087 2025-03-19 04:35:39.087 434916 11145 2 0 4170 2025-03-19 03:59:54.65 2025-03-19 03:59:54.65 434916 16950 1 0 4171 2025-03-19 03:59:53.801 2025-03-19 03:59:53.801 434916 21393 1 0 4172 2025-03-19 03:55:50.016 2025-03-19 03:55:50.016 434917 913 1 0 4173 2025-03-19 08:53:39.212 2025-03-19 08:53:39.212 434917 3729 19 0 4174 2025-03-19 08:53:39.212 2025-03-19 08:53:39.212 434917 10060 2 0 4175 2025-03-19 03:55:50.333 2025-03-19 03:55:50.333 434918 9426 125 0 4176 2025-03-19 12:48:34.802 2025-03-19 12:48:34.802 434919 1307 5 0 4177 2025-03-19 12:48:34.802 2025-03-19 12:48:34.802 434919 1761 45 0 4178 2025-03-19 03:56:22.66 2025-03-19 03:56:22.66 434919 20377 1 0 4179 2025-03-19 05:52:50.214 2025-03-19 05:52:50.214 434920 1737 2 0 4180 2025-03-19 04:43:54.733 2025-03-19 04:43:54.733 434920 2670 21 0 4181 2025-03-19 04:43:54.239 2025-03-19 04:43:54.239 434920 2724 21 0 4182 2025-03-19 04:43:54.239 2025-03-19 04:43:54.239 434920 4650 2 0 4183 2025-03-19 03:57:17.041 2025-03-19 03:57:17.041 434920 6335 210 0 4184 2025-03-19 04:43:54.733 2025-03-19 04:43:54.733 434920 8004 2 0 4185 2025-03-19 04:43:53.621 2025-03-19 04:43:53.621 434920 9655 2 0 4186 2025-03-19 04:43:53.621 2025-03-19 04:43:53.621 434920 10469 21 0 4187 2025-03-19 04:53:12.199 2025-03-19 04:53:12.199 434920 10719 19 0 4188 2025-03-19 05:05:39.507 2025-03-19 07:14:49.606 434920 11670 38 0 4189 2025-03-19 04:53:12.199 2025-03-19 04:53:12.199 434920 17237 2 0 4190 2025-03-19 07:14:49.606 2025-03-19 07:14:49.606 434920 18306 2 0 4191 2025-03-19 05:52:50.214 2025-03-19 05:52:50.214 434920 20551 19 0 4192 2025-03-19 05:05:39.507 2025-03-19 05:05:39.507 434920 21400 2 0 4193 2025-03-19 04:39:53.991 2025-03-19 04:39:53.991 434921 725 19 0 4194 2025-03-19 03:57:22.091 2025-03-19 03:57:22.091 434921 1495 1 0 4195 2025-03-19 04:39:53.991 2025-03-19 04:39:53.991 434921 19531 2 0 4196 2025-03-19 03:58:04.249 2025-03-19 03:58:04.249 434921 19668 36 0 4197 2025-03-19 03:58:04.249 2025-03-19 03:58:04.249 434921 21044 4 0 4198 2025-03-19 04:25:40.422 2025-03-19 04:25:40.422 434922 638 10 0 4199 2025-03-19 04:03:05.385 2025-03-19 04:03:05.385 434922 664 4 0 4200 2025-03-19 03:57:53.811 2025-03-19 03:57:53.811 434922 837 100 0 4201 2025-03-19 04:35:23.582 2025-03-19 04:35:23.582 434922 928 2 0 4202 2025-03-19 04:25:40.422 2025-03-19 04:25:40.422 434922 5809 90 0 4203 2025-03-19 04:03:05.385 2025-03-19 04:03:05.385 434922 6164 36 0 4204 2025-03-19 04:35:23.582 2025-03-19 04:35:23.582 434922 16939 19 0 4205 2025-03-19 04:02:06.125 2025-03-19 04:02:06.125 434922 20852 0 21 4206 2025-03-19 04:00:21.624 2025-03-19 04:00:21.624 434923 12277 10 0 4207 2025-03-19 04:00:21.624 2025-03-19 04:00:21.624 434923 14015 90 0 4208 2025-03-19 03:58:24.54 2025-03-19 03:58:24.54 434923 17727 1 0 4209 2025-03-19 03:58:39.527 2025-03-19 03:58:39.527 434924 15732 1 0 4210 2025-03-19 08:18:54.699 2025-03-19 08:18:54.699 434925 621 3 0 4211 2025-03-19 04:00:14.845 2025-03-19 04:00:14.845 434925 5590 1 0 4212 2025-03-19 08:18:54.699 2025-03-19 08:18:54.699 434925 16442 0 0 4213 2025-03-19 04:05:35.085 2025-03-19 04:05:35.085 434926 976 10 0 4214 2025-03-19 04:00:46.789 2025-03-19 04:00:46.789 434926 5112 1 0 4215 2025-03-19 04:05:34.329 2025-03-19 04:05:34.329 434926 7674 10 0 4216 2025-03-19 04:05:35.085 2025-03-19 04:05:35.085 434926 9333 1 0 4217 2025-03-19 04:05:34.329 2025-03-19 04:05:34.329 434926 18930 1 0 4218 2025-03-19 04:05:35.604 2025-03-19 04:05:35.604 434926 19488 10 0 4219 2025-03-19 04:05:35.604 2025-03-19 04:05:35.604 434926 21797 1 0 4220 2025-03-19 04:09:45.217 2025-03-19 04:09:45.217 434927 776 81 0 4221 2025-03-19 04:02:55.074 2025-03-19 04:02:55.074 434927 2596 1 0 4222 2025-03-19 04:09:44.163 2025-03-19 04:09:44.163 434927 10591 0 0 4223 2025-03-19 04:09:44.163 2025-03-19 04:09:44.163 434927 13174 1 0 4224 2025-03-19 04:09:44.428 2025-03-19 04:09:44.428 434927 20987 1 0 4225 2025-03-19 04:09:45.217 2025-03-19 04:09:45.217 434927 21555 9 0 4226 2025-03-19 04:09:44.428 2025-03-19 04:09:44.428 434927 21672 8 0 4227 2025-03-19 04:04:15.172 2025-03-19 04:04:15.172 434928 12769 100 0 4228 2025-03-19 04:04:15.588 2025-03-19 04:04:15.588 434929 624 1 0 4229 2025-03-19 04:04:36.951 2025-03-19 04:04:36.951 434930 3304 0 0 4230 2025-03-19 12:48:35.091 2025-03-19 12:48:35.091 434930 5752 45 0 4231 2025-03-19 12:48:35.091 2025-03-19 12:48:35.091 434930 10979 5 0 4232 2025-03-19 04:04:23.871 2025-03-19 04:04:23.871 434930 13143 1 0 4233 2025-03-19 04:06:59.792 2025-03-19 04:06:59.792 434931 4177 2 0 4234 2025-03-19 04:06:51.598 2025-03-19 04:06:51.598 434931 8173 10 0 4235 2025-03-19 04:06:59.792 2025-03-19 04:06:59.792 434931 18178 0 0 4236 2025-03-19 05:47:56.744 2025-03-19 05:47:56.744 434931 20490 0 83 4237 2025-03-19 04:07:41.316 2025-03-19 04:07:41.316 434932 12911 1 0 4238 2025-03-19 05:06:25.809 2025-03-19 05:06:25.809 434933 17226 2 0 4239 2025-03-19 04:08:17.506 2025-03-19 04:08:17.506 434933 20849 1 0 4240 2025-03-19 05:06:25.809 2025-03-19 05:06:25.809 434933 20963 19 0 4241 2025-03-19 07:13:21.743 2025-03-19 07:13:21.743 434934 692 2 0 4242 2025-03-19 07:08:01.503 2025-03-19 07:08:01.503 434934 4064 81 0 4243 2025-03-19 04:34:36.93 2025-03-19 04:34:36.93 434934 4502 2 0 4244 2025-03-19 07:08:01.131 2025-03-19 07:08:01.131 434934 5865 8 0 4245 2025-03-19 07:08:01.131 2025-03-19 07:08:01.131 434934 8541 1 0 4246 2025-03-19 07:13:21.743 2025-03-19 07:13:21.743 434934 12346 19 0 4247 2025-03-19 04:09:25.263 2025-03-19 04:09:25.263 434934 14552 10 0 4248 2025-03-19 04:34:36.93 2025-03-19 04:34:36.93 434934 14818 19 0 4249 2025-03-19 07:40:56.201 2025-03-19 07:40:56.201 434934 16594 1 0 4250 2025-03-19 07:08:00.979 2025-03-19 07:08:00.979 434934 19735 0 0 4251 2025-03-19 04:32:58.654 2025-03-19 04:32:58.654 434934 19829 36 0 4252 2025-03-19 04:32:58.654 2025-03-19 04:32:58.654 434934 20243 4 0 4253 2025-03-19 07:08:01.503 2025-03-19 07:08:01.503 434934 20370 9 0 4254 2025-03-19 07:08:00.979 2025-03-19 07:08:00.979 434934 20776 1 0 4255 2025-03-19 07:40:56.201 2025-03-19 07:40:56.201 434934 21713 5 0 4256 2025-03-19 04:09:56.592 2025-03-19 04:09:56.592 434935 1438 1 0 4257 2025-03-19 05:29:49.355 2025-03-19 05:29:49.355 434936 1585 2 0 4258 2025-03-19 05:29:49.355 2025-03-19 05:29:49.355 434936 1738 19 0 4259 2025-03-19 04:10:13.886 2025-03-19 04:10:13.886 434936 2000 2 0 4260 2025-03-19 04:11:06.544 2025-03-19 04:11:06.544 434937 627 1 0 4261 2025-03-19 04:13:43.704 2025-03-19 04:13:43.704 434938 1970 0 0 4262 2025-03-19 04:13:07.279 2025-03-19 04:13:07.279 434938 12656 1 0 4263 2025-03-19 07:07:40.327 2025-03-19 07:07:40.327 434939 1038 9 0 4264 2025-03-19 07:07:39.778 2025-03-19 07:07:39.778 434939 8796 1 0 4265 2025-03-19 04:14:28.78 2025-03-19 04:14:28.78 434939 9843 36 0 4266 2025-03-19 07:07:40.327 2025-03-19 07:07:40.327 434939 16954 81 0 4267 2025-03-19 07:07:39.778 2025-03-19 07:07:39.778 434939 17218 8 0 4268 2025-03-19 07:13:32.43 2025-03-19 07:13:32.43 434939 17984 2 0 4269 2025-03-19 07:07:39.341 2025-03-19 07:07:39.341 434939 18313 0 0 4270 2025-03-19 07:13:32.43 2025-03-19 07:13:32.43 434939 18426 19 0 4271 2025-03-19 04:14:28.78 2025-03-19 04:14:28.78 434939 21061 4 0 4272 2025-03-19 07:07:39.341 2025-03-19 07:07:39.341 434939 21180 1 0 4273 2025-03-19 04:13:14.557 2025-03-19 04:13:14.557 434939 21532 10 0 4274 2025-03-19 04:13:34.544 2025-03-19 04:13:34.544 434940 708 1 0 4275 2025-03-19 12:43:50.222 2025-03-19 12:43:50.222 434940 10979 1 0 4276 2025-03-19 12:43:50.222 2025-03-19 12:43:50.222 434940 15732 9 0 4277 2025-03-19 04:27:19.099 2025-03-19 04:27:19.099 434941 11423 100 0 4278 2025-03-19 04:27:19.099 2025-03-19 04:27:19.099 434941 15100 900 0 4279 2025-03-19 04:14:49.838 2025-03-19 04:14:49.838 434941 21131 10 0 4280 2025-03-19 04:24:14.498 2025-03-19 04:24:14.498 434942 2151 0 0 4281 2025-03-19 04:17:42.682 2025-03-19 04:17:42.682 434942 14663 10 0 4282 2025-03-19 04:24:14.498 2025-03-19 04:24:14.498 434942 17797 2 0 4283 2025-03-19 04:17:46.126 2025-03-19 04:17:46.126 434943 1002 1 0 4284 2025-03-19 04:20:42.176 2025-03-19 04:20:42.176 434944 692 1 0 4285 2025-03-19 04:22:50.345 2025-03-19 04:22:50.345 434945 782 1 0 4286 2025-03-19 04:23:12.874 2025-03-19 04:23:12.874 434946 4395 1 0 4287 2025-03-19 05:29:50.952 2025-03-19 05:29:50.952 434947 3506 2 0 4288 2025-03-19 05:29:50.952 2025-03-19 05:29:50.952 434947 20602 19 0 4289 2025-03-19 04:24:42.386 2025-03-19 04:24:42.386 434947 20687 2 0 4290 2025-03-19 04:24:56.013 2025-03-19 04:24:56.013 434948 1784 1 0 4291 2025-03-19 04:24:58.736 2025-03-19 04:24:58.736 434949 16653 1 0 4292 2025-03-19 04:26:44.489 2025-03-19 04:26:44.489 434950 1480 1 0 4293 2025-03-19 04:51:56.269 2025-03-19 04:51:56.269 434950 1802 0 0 4294 2025-03-19 04:51:56.269 2025-03-19 04:51:56.269 434950 9159 1 0 4295 2025-03-19 04:38:20.43 2025-03-19 04:38:20.43 434950 13406 58 0 4296 2025-03-19 04:38:20.43 2025-03-19 04:38:20.43 434950 16598 6 0 4297 2025-03-19 04:44:32.485 2025-03-19 04:44:32.485 434951 822 3 0 4298 2025-03-19 04:44:32.485 2025-03-19 04:44:32.485 434951 8287 27 0 4299 2025-03-19 04:27:28.974 2025-03-19 04:27:28.974 434951 9438 1 0 4300 2025-03-19 12:43:55.506 2025-03-19 12:43:55.506 434951 13566 1 0 4301 2025-03-19 12:43:55.506 2025-03-19 12:43:55.506 434951 16406 9 0 4302 2025-03-19 05:01:45.757 2025-03-19 05:01:45.757 434952 1673 0 0 4303 2025-03-19 04:39:33.018 2025-03-19 04:39:33.018 434952 3409 19 0 4304 2025-03-19 04:43:48.843 2025-03-19 04:43:48.843 434952 6688 1 0 4305 2025-03-19 04:28:46.322 2025-03-19 04:28:46.322 434952 7583 1 0 4306 2025-03-19 05:53:41.759 2025-03-19 05:53:41.759 434952 7659 19 0 4307 2025-03-19 06:21:14.146 2025-03-19 06:21:14.146 434952 11942 23 0 4308 2025-03-19 06:21:14.146 2025-03-19 06:21:14.146 434952 14258 3 0 4309 2025-03-19 05:01:45.757 2025-03-19 05:01:45.757 434952 18274 1 0 4310 2025-03-19 05:53:41.759 2025-03-19 05:53:41.759 434952 19346 2 0 4311 2025-03-19 04:39:33.018 2025-03-19 04:39:33.018 434952 19673 2 0 4312 2025-03-19 04:43:48.843 2025-03-19 04:43:48.843 434952 20768 7 0 4313 2025-03-19 04:29:58.757 2025-03-19 04:29:58.757 434953 15858 1 0 4314 2025-03-19 08:53:42.151 2025-03-19 08:53:42.151 434954 828 2 0 4315 2025-03-19 08:53:42.151 2025-03-19 08:53:42.151 434954 1244 19 0 4316 2025-03-19 04:30:29.981 2025-03-19 04:30:29.981 434954 16536 1 0 4317 2025-03-19 04:30:58.329 2025-03-19 04:30:58.329 434955 718 1 0 4318 2025-03-19 04:34:49.089 2025-03-19 04:34:49.089 434955 1237 29 0 4319 2025-03-19 04:34:49.089 2025-03-19 04:34:49.089 434955 1772 3 0 4320 2025-03-19 04:37:51.377 2025-03-19 04:37:51.377 434956 8664 2 0 4321 2025-03-19 04:32:32.343 2025-03-19 04:32:32.343 434956 17042 1 0 4322 2025-03-19 04:37:51.377 2025-03-19 04:37:51.377 434956 21275 19 0 4323 2025-03-19 06:48:15.93 2025-03-19 06:48:15.93 434957 697 19 0 4324 2025-03-19 06:20:54.514 2025-03-19 06:20:54.514 434957 894 19 0 4325 2025-03-19 06:05:46.836 2025-03-19 06:05:46.836 434957 2361 81 0 4326 2025-03-19 06:05:46.48 2025-03-19 06:05:46.48 434957 2749 1 0 4327 2025-03-19 07:10:05.514 2025-03-19 07:10:05.514 434957 6419 1 0 4328 2025-03-19 06:05:46.48 2025-03-19 06:05:46.48 434957 15192 8 0 4329 2025-03-19 06:05:46.303 2025-03-19 06:05:46.303 434957 16432 1 0 4330 2025-03-19 06:05:46.303 2025-03-19 06:05:46.303 434957 16724 0 0 4331 2025-03-19 06:20:54.514 2025-03-19 06:20:54.514 434957 17321 2 0 4332 2025-03-19 07:10:05.514 2025-03-19 07:10:05.514 434957 17696 9 0 4333 2025-03-19 06:05:46.836 2025-03-19 06:05:46.836 434957 18526 9 0 4334 2025-03-19 06:48:15.93 2025-03-19 06:48:15.93 434957 19333 2 0 4335 2025-03-19 04:32:57.777 2025-03-19 04:32:57.777 434957 20603 100 0 4336 2025-03-19 08:01:13.603 2025-03-19 08:01:13.603 434958 716 9 0 4337 2025-03-19 08:54:05.788 2025-03-19 08:54:05.788 434958 768 19 0 4338 2025-03-19 07:23:36.125 2025-03-19 07:23:36.125 434958 900 81 0 4339 2025-03-19 05:22:11.825 2025-03-19 05:22:11.825 434958 980 243 0 4340 2025-03-19 05:53:01.415 2025-03-19 05:53:01.415 434958 1114 19 0 4341 2025-03-19 04:44:00.585 2025-03-19 04:44:00.585 434958 1439 36 0 4342 2025-03-19 05:22:10.589 2025-03-19 05:22:10.589 434958 1970 27 0 4343 2025-03-19 08:54:05.788 2025-03-19 08:54:05.788 434958 3396 2 0 4344 2025-03-19 08:01:13.892 2025-03-19 08:01:13.892 434958 5870 9 0 4345 2025-03-19 05:22:11.825 2025-03-19 05:22:11.825 434958 6137 27 0 4346 2025-03-19 12:18:39.09 2025-03-19 12:18:39.09 434958 8376 2 0 4347 2025-03-19 08:02:04.563 2025-03-19 08:02:04.563 434958 8926 19 0 4348 2025-03-19 07:03:51.677 2025-03-19 07:03:51.677 434958 11992 8 0 4349 2025-03-19 05:53:01.415 2025-03-19 05:53:01.415 434958 12169 2 0 4350 2025-03-19 07:03:51.473 2025-03-19 07:03:51.473 434958 13843 0 0 4351 2025-03-19 07:03:51.677 2025-03-19 07:03:51.677 434958 14705 1 0 4352 2025-03-19 08:28:55.397 2025-03-19 08:28:55.397 434958 15045 7 0 4353 2025-03-19 04:44:00.585 2025-03-19 04:44:00.585 434958 15226 4 0 4354 2025-03-19 04:33:51.818 2025-03-19 04:33:51.818 434958 16667 97 0 4355 2025-03-19 07:23:36.125 2025-03-19 07:23:36.125 434958 16816 9 0 4356 2025-03-19 08:02:04.563 2025-03-19 08:02:04.563 434958 16839 2 0 4357 2025-03-19 12:18:39.09 2025-03-19 12:18:39.09 434958 16858 19 0 4358 2025-03-19 08:02:20.818 2025-03-19 08:02:20.818 434958 18743 19 0 4359 2025-03-19 08:01:13.603 2025-03-19 08:01:13.603 434958 19189 1 0 4360 2025-03-19 07:03:51.473 2025-03-19 07:03:51.473 434958 20185 1 0 4361 2025-03-19 05:22:10.589 2025-03-19 05:22:10.589 434958 20439 3 0 4362 2025-03-19 08:01:13.892 2025-03-19 08:01:13.892 434958 20612 1 0 4363 2025-03-19 08:02:20.818 2025-03-19 08:02:20.818 434958 20811 2 0 4364 2025-03-19 08:28:55.397 2025-03-19 08:28:55.397 434958 20998 1 0 4365 2025-03-19 04:34:45.799 2025-03-19 04:34:45.799 434959 3400 1 0 4366 2025-03-19 06:05:21.897 2025-03-19 06:05:21.897 434960 985 1 0 4367 2025-03-19 06:05:22.376 2025-03-19 06:05:22.376 434960 3506 1 0 4368 2025-03-19 06:28:31.863 2025-03-19 06:28:31.863 434960 4225 2 0 4369 2025-03-19 06:05:22.376 2025-03-19 06:05:22.376 434960 4259 8 0 4370 2025-03-19 06:28:31.863 2025-03-19 06:28:31.863 434960 5828 19 0 4371 2025-03-19 06:05:21.897 2025-03-19 06:05:21.897 434960 6687 0 0 4372 2025-03-19 04:34:45.923 2025-03-19 04:34:45.923 434960 8505 1 0 4373 2025-03-19 06:05:44.499 2025-03-19 06:05:44.499 434960 9863 81 0 4374 2025-03-19 06:49:24.942 2025-03-19 06:49:24.942 434960 9921 2 0 4375 2025-03-19 06:05:44.499 2025-03-19 06:05:44.499 434960 14449 9 0 4376 2025-03-19 06:49:24.942 2025-03-19 06:49:24.942 434960 15577 19 0 4377 2025-03-19 04:35:11.636 2025-03-19 04:35:11.636 434961 7766 1 0 4378 2025-03-19 05:49:00.541 2025-03-19 05:49:00.541 434962 623 81 0 4379 2025-03-19 08:01:12.205 2025-03-19 08:01:12.205 434962 679 9 0 4380 2025-03-19 04:43:51.895 2025-03-19 04:43:51.895 434962 909 9 0 4381 2025-03-19 04:36:18.344 2025-03-19 04:36:18.344 434962 1060 10 0 4382 2025-03-19 05:36:54.672 2025-03-19 05:36:54.672 434962 2010 24 0 4383 2025-03-19 04:43:52.205 2025-03-19 04:43:52.205 434962 2330 9 0 4384 2025-03-19 04:43:51.591 2025-03-19 04:43:51.591 434962 2652 9 0 4385 2025-03-19 04:43:51.283 2025-03-19 04:43:51.283 434962 2952 9 0 4386 2025-03-19 05:50:45.64 2025-03-19 05:50:45.64 434962 3396 2 0 4387 2025-03-19 05:36:55.603 2025-03-19 05:36:55.603 434962 4287 24 0 4388 2025-03-19 05:36:55.21 2025-03-19 05:36:55.21 434962 4502 3 0 4389 2025-03-19 05:36:55.395 2025-03-19 05:36:55.395 434962 4776 24 0 4390 2025-03-19 18:41:13.062 2025-03-19 18:41:13.062 434962 5497 19 0 4391 2025-03-19 08:01:12.205 2025-03-19 08:01:12.205 434962 5779 1 0 4392 2025-03-19 05:48:58.102 2025-03-19 05:48:58.102 434962 6058 1 0 4393 2025-03-19 08:01:12.393 2025-03-19 08:01:12.393 434962 7682 1 0 4394 2025-03-19 05:36:54.614 2025-03-19 05:36:54.614 434962 7913 3 0 4395 2025-03-19 05:48:58.318 2025-03-19 05:48:58.318 434962 9346 1 0 4396 2025-03-19 04:43:50.861 2025-03-19 04:43:50.861 434962 9655 1 0 4397 2025-03-19 08:54:10.204 2025-03-19 08:54:10.204 434962 10007 19 0 4398 2025-03-19 05:36:54.868 2025-03-19 05:36:54.868 434962 11038 3 0 4399 2025-03-19 05:36:55.603 2025-03-19 05:36:55.603 434962 11091 3 0 4400 2025-03-19 04:43:51.895 2025-03-19 04:43:51.895 434962 11298 1 0 4401 2025-03-19 05:36:55.395 2025-03-19 05:36:55.395 434962 11750 3 0 4402 2025-03-19 05:48:58.102 2025-03-19 05:48:58.102 434962 11819 0 0 4403 2025-03-19 05:36:54.614 2025-03-19 05:36:54.614 434962 11866 24 0 4404 2025-03-19 08:01:12.393 2025-03-19 08:01:12.393 434962 12935 9 0 4405 2025-03-19 05:25:33.666 2025-03-19 05:25:33.666 434962 15703 135 0 4406 2025-03-19 18:41:13.062 2025-03-19 18:41:13.062 434962 16724 2 0 4407 2025-03-19 05:36:55.034 2025-03-19 05:36:55.034 434962 16747 24 0 4408 2025-03-19 05:48:58.318 2025-03-19 05:48:58.318 434962 17014 8 0 4409 2025-03-19 05:49:00.541 2025-03-19 05:49:00.541 434962 17042 9 0 4410 2025-03-19 04:43:52.205 2025-03-19 04:43:52.205 434962 17976 1 0 4411 2025-03-19 04:43:50.861 2025-03-19 04:43:50.861 434962 18526 9 0 4412 2025-03-19 04:43:51.591 2025-03-19 04:43:51.591 434962 19071 1 0 4413 2025-03-19 08:54:10.204 2025-03-19 08:54:10.204 434962 19569 2 0 4414 2025-03-19 05:36:55.034 2025-03-19 05:36:55.034 434962 19924 3 0 4415 2025-03-19 05:50:45.64 2025-03-19 05:50:45.64 434962 20179 19 0 4416 2025-03-19 05:36:55.21 2025-03-19 05:36:55.21 434962 20222 24 0 4417 2025-03-19 05:36:54.868 2025-03-19 05:36:54.868 434962 20778 24 0 4418 2025-03-19 05:25:33.666 2025-03-19 05:25:33.666 434962 21281 15 0 4419 2025-03-19 04:43:51.283 2025-03-19 04:43:51.283 434962 21401 1 0 4420 2025-03-19 04:43:53.069 2025-03-19 04:43:53.069 434962 21405 9 0 4421 2025-03-19 04:42:17.758 2025-03-19 05:36:54.672 434962 21599 7 0 4422 2025-03-19 04:42:17.758 2025-03-19 04:42:17.758 434962 21683 36 0 4423 2025-03-19 04:43:53.069 2025-03-19 04:43:53.069 434962 21791 1 0 4424 2025-03-19 04:36:44.335 2025-03-19 04:36:44.335 434963 780 100 0 4425 2025-03-19 04:37:52.494 2025-03-19 04:37:52.494 434963 4238 0 0 4426 2025-03-19 08:10:59.295 2025-03-19 08:10:59.295 434963 12346 9 0 4427 2025-03-19 08:10:59.295 2025-03-19 08:10:59.295 434963 16816 1 0 4428 2025-03-19 04:38:06.723 2025-03-19 04:38:06.723 434964 5578 1 0 4429 2025-03-19 04:42:58.082 2025-03-19 04:42:58.082 434964 9346 1 0 4430 2025-03-19 04:42:58.082 2025-03-19 04:42:58.082 434964 21063 9 0 4431 2025-03-19 04:39:35.315 2025-03-19 04:39:35.315 434965 2735 0 0 4432 2025-03-19 04:38:31.299 2025-03-19 04:38:31.299 434965 15560 1 0 4433 2025-03-19 04:44:27.521 2025-03-19 04:44:27.521 434965 17741 27 0 4434 2025-03-19 04:44:27.521 2025-03-19 04:44:27.521 434965 18473 3 0 4435 2025-03-19 04:38:33.493 2025-03-19 04:38:33.493 434966 19796 1 0 4436 2025-03-19 04:39:28.657 2025-03-19 04:39:28.657 434967 15536 1 0 4437 2025-03-19 04:39:52.659 2025-03-19 04:39:52.659 434968 13843 1 0 4438 2025-03-19 04:42:09.713 2025-03-19 04:42:09.713 434969 951 4 0 4439 2025-03-19 04:39:59.319 2025-03-19 04:39:59.319 434969 2513 10 0 4440 2025-03-19 05:15:24.961 2025-03-19 05:15:24.961 434969 11314 0 83 4441 2025-03-19 04:54:22.154 2025-03-19 04:54:22.154 434969 15544 19 0 4442 2025-03-19 04:54:22.154 2025-03-19 04:54:22.154 434969 19126 2 0 4443 2025-03-19 04:42:09.713 2025-03-19 04:42:09.713 434969 20636 36 0 4444 2025-03-19 05:21:15.548 2025-03-19 05:21:15.548 434969 21303 0 23 4445 2025-03-19 04:43:12.027 2025-03-19 04:43:12.027 434970 9330 1 0 4446 2025-03-19 04:44:03.281 2025-03-19 04:44:03.281 434971 16956 1 0 4447 2025-03-19 04:44:46.204 2025-03-19 04:44:46.204 434972 21164 1 0 4448 2025-03-19 04:45:28.725 2025-03-19 04:45:28.725 434973 9337 11 0 4449 2025-03-19 04:45:33.965 2025-03-19 04:45:33.965 434974 18313 1 0 4450 2025-03-19 07:27:58.458 2025-03-19 07:27:58.458 434975 680 1 0 4451 2025-03-19 05:29:35.157 2025-03-19 05:29:35.157 434975 825 9 0 4452 2025-03-19 08:11:26.305 2025-03-19 08:11:26.305 434975 1051 36 0 4453 2025-03-19 04:52:41.349 2025-03-19 04:52:41.349 434975 1245 2 0 4454 2025-03-19 08:54:11.988 2025-03-19 08:54:11.988 434975 1705 2 0 4455 2025-03-19 05:06:06 2025-03-19 05:06:06 434975 1823 90 0 4456 2025-03-19 05:29:34.694 2025-03-19 05:29:34.694 434975 2151 1 0 4457 2025-03-19 05:50:57.287 2025-03-19 05:50:57.287 434975 5637 19 0 4458 2025-03-19 08:01:15.59 2025-03-19 08:01:15.59 434975 5961 9 0 4459 2025-03-19 05:29:34.457 2025-03-19 05:29:34.457 434975 6393 0 0 4460 2025-03-19 12:48:51.119 2025-03-19 12:48:51.119 434975 6419 1 0 4461 2025-03-19 05:50:56.873 2025-03-19 05:50:56.873 434975 7395 19 0 4462 2025-03-19 05:50:56.873 2025-03-19 05:50:56.873 434975 7558 2 0 4463 2025-03-19 05:29:34.694 2025-03-19 05:29:34.694 434975 7659 8 0 4464 2025-03-19 05:29:35.157 2025-03-19 05:29:35.157 434975 9295 81 0 4465 2025-03-19 05:50:57.287 2025-03-19 05:50:57.287 434975 10102 2 0 4466 2025-03-19 05:06:06 2025-03-19 05:06:06 434975 10112 10 0 4467 2025-03-19 05:29:34.457 2025-03-19 05:29:34.457 434975 11609 1 0 4468 2025-03-19 08:01:15.59 2025-03-19 08:01:15.59 434975 12102 1 0 4469 2025-03-19 08:54:11.988 2025-03-19 08:54:11.988 434975 12769 19 0 4470 2025-03-19 04:46:37.84 2025-03-19 04:46:37.84 434975 15526 100 0 4471 2025-03-19 07:27:58.458 2025-03-19 07:27:58.458 434975 16309 10 0 4472 2025-03-19 04:52:41.349 2025-03-19 04:52:41.349 434975 16424 19 0 4473 2025-03-19 12:48:51.119 2025-03-19 12:48:51.119 434975 19394 0 0 4474 2025-03-19 08:01:15.431 2025-03-19 08:01:15.431 434975 19569 1 0 4475 2025-03-19 08:01:15.431 2025-03-19 08:01:15.431 434975 19906 9 0 4476 2025-03-19 08:11:26.305 2025-03-19 08:11:26.305 434975 20825 4 0 4477 2025-03-19 04:49:01.699 2025-03-19 04:49:01.699 434976 4115 1 0 4478 2025-03-19 04:49:28.319 2025-03-19 04:49:28.319 434977 13132 10 0 4479 2025-03-19 05:38:00.265 2025-03-19 05:38:00.265 434978 919 3 0 4480 2025-03-19 19:33:21.664 2025-03-19 19:33:21.664 434978 1002 1 0 4481 2025-03-19 05:46:17.354 2025-03-19 05:46:17.354 434978 1472 3 0 4482 2025-03-19 05:37:59.945 2025-03-19 05:37:59.945 434978 1488 3 0 4483 2025-03-19 05:38:00.068 2025-03-19 05:38:00.068 434978 1705 24 0 4484 2025-03-19 05:37:59.945 2025-03-19 05:37:59.945 434978 2098 24 0 4485 2025-03-19 05:38:00.265 2025-03-19 05:38:00.265 434978 4084 24 0 4486 2025-03-19 05:38:00.471 2025-03-19 05:38:00.471 434978 4776 24 0 4487 2025-03-19 18:41:11.029 2025-03-19 18:41:11.029 434978 5359 5 0 4488 2025-03-20 00:21:19.827 2025-03-20 00:21:19.827 434978 6421 9 0 4489 2025-03-19 05:38:00.068 2025-03-19 05:38:00.068 434978 7673 3 0 4490 2025-03-19 04:49:34.876 2025-03-19 04:49:34.876 434978 8245 1 0 4491 2025-03-19 04:52:45.856 2025-03-19 04:52:45.856 434978 8326 29 0 4492 2025-03-19 19:33:21.664 2025-03-19 19:33:21.664 434978 12245 9 0 4493 2025-03-19 18:44:14.081 2025-03-19 18:44:14.081 434978 16594 9 0 4494 2025-03-20 00:21:19.827 2025-03-20 00:21:19.827 434978 17838 1 0 4495 2025-03-19 04:52:45.856 2025-03-19 04:52:45.856 434978 18265 3 0 4496 2025-03-19 05:38:00.471 2025-03-19 05:38:00.471 434978 18630 3 0 4497 2025-03-19 18:41:11.029 2025-03-19 18:41:11.029 434978 18734 1 0 4498 2025-03-19 05:37:59.674 2025-03-19 05:37:59.674 434978 20525 24 0 4499 2025-03-19 05:46:17.354 2025-03-19 05:46:17.354 434978 20624 27 0 4500 2025-03-19 05:37:59.674 2025-03-19 05:37:59.674 434978 21274 3 0 4501 2025-03-19 18:44:14.081 2025-03-19 18:44:14.081 434978 21539 1 0 4502 2025-03-19 04:50:00.154 2025-03-19 04:50:00.154 434979 21418 1 0 4503 2025-03-19 06:00:12.702 2025-03-19 06:00:12.702 434980 1310 1 0 4504 2025-03-19 06:00:12.702 2025-03-19 06:00:12.702 434980 1806 10 0 4505 2025-03-19 04:50:19.656 2025-03-19 04:50:19.656 434980 2088 1 0 4506 2025-03-19 06:00:12.873 2025-03-19 06:00:12.873 434980 5128 1 0 4507 2025-03-19 06:00:12.525 2025-03-19 06:00:12.525 434980 11091 1 0 4508 2025-03-19 06:00:12.873 2025-03-19 06:00:12.873 434980 20687 10 0 4509 2025-03-19 06:00:12.525 2025-03-19 06:00:12.525 434980 21373 10 0 4510 2025-03-19 04:50:37.081 2025-03-19 04:50:37.081 434981 21424 1 0 4511 2025-03-19 06:42:49.141 2025-03-19 06:42:49.141 434982 15243 2 0 4512 2025-03-19 06:42:49.141 2025-03-19 06:42:49.141 434982 21057 19 0 4513 2025-03-19 04:56:14.571 2025-03-19 04:56:14.571 434982 21275 1 0 4514 2025-03-19 04:56:48.865 2025-03-19 04:56:48.865 434983 9331 1 0 4515 2025-03-19 04:57:32.981 2025-03-19 04:57:32.981 434984 17162 1 0 4516 2025-03-19 04:58:14.55 2025-03-19 04:58:14.55 434985 4238 1 0 4517 2025-03-19 04:59:22.415 2025-03-19 04:59:22.415 434986 2719 0 0 4518 2025-03-19 04:58:22.226 2025-03-19 04:58:22.226 434986 13553 10 0 4519 2025-03-19 05:07:29.402 2025-03-19 05:07:29.402 434987 2039 2 0 4520 2025-03-19 05:07:29.402 2025-03-19 05:07:29.402 434987 6419 19 0 4521 2025-03-19 04:58:56.657 2025-03-19 04:58:56.657 434987 10056 1 0 4522 2025-03-19 07:34:41.705 2025-03-19 07:34:41.705 434988 649 9 0 4523 2025-03-19 08:11:33.422 2025-03-19 08:11:33.422 434988 2529 36 0 4524 2025-03-19 07:34:37.692 2025-03-19 07:34:37.692 434988 2749 0 0 4525 2025-03-19 04:59:51.385 2025-03-19 04:59:51.385 434988 5522 100 0 4526 2025-03-19 07:34:37.813 2025-03-19 07:34:37.813 434988 12774 1 0 4527 2025-03-19 07:34:41.705 2025-03-19 07:34:41.705 434988 14785 81 0 4528 2025-03-19 18:08:34.945 2025-03-19 18:08:34.945 434988 15282 69 0 4529 2025-03-19 08:11:33.422 2025-03-19 08:11:33.422 434988 19570 4 0 4530 2025-03-19 18:08:34.945 2025-03-19 18:08:34.945 434988 20243 8 0 4531 2025-03-19 07:34:37.692 2025-03-19 07:34:37.692 434988 20454 1 0 4532 2025-03-19 07:34:37.813 2025-03-19 07:34:37.813 434988 21263 8 0 4533 2025-03-19 05:00:07.561 2025-03-19 05:00:07.561 434989 1469 1 0 4534 2025-03-19 05:31:02.739 2025-03-19 05:31:02.739 434989 5003 19 0 4535 2025-03-19 05:31:02.739 2025-03-19 05:31:02.739 434989 12368 2 0 4536 2025-03-19 05:01:26.674 2025-03-19 05:01:26.674 434989 19535 0 0 4537 2025-03-19 05:54:38.128 2025-03-19 05:54:38.128 434990 629 1 0 4538 2025-03-19 05:54:37.965 2025-03-19 05:54:37.965 434990 6430 0 0 4539 2025-03-19 05:02:01.67 2025-03-19 05:02:01.67 434990 6717 75 0 4540 2025-03-19 05:10:56.909 2025-03-19 05:10:56.909 434990 8508 36 0 4541 2025-03-19 05:55:55.775 2025-03-19 05:55:55.775 434990 8713 2 0 4542 2025-03-19 05:09:45.703 2025-03-19 05:09:45.703 434990 9275 1 0 4543 2025-03-19 18:08:39.531 2025-03-19 18:08:39.531 434990 9307 10 0 4544 2025-03-19 05:55:55.775 2025-03-19 05:55:55.775 434990 11164 19 0 4545 2025-03-19 05:10:56.909 2025-03-19 05:10:56.909 434990 13361 4 0 4546 2025-03-19 18:08:39.531 2025-03-19 18:08:39.531 434990 13753 90 0 4547 2025-03-19 05:09:45.703 2025-03-19 05:09:45.703 434990 15337 7 0 4548 2025-03-19 05:54:38.128 2025-03-19 05:54:38.128 434990 19581 8 0 4549 2025-03-19 05:54:37.965 2025-03-19 05:54:37.965 434990 21058 1 0 4550 2025-03-19 05:02:01.67 2025-03-19 05:02:01.67 434990 21514 8 0 4551 2025-03-19 05:02:12.045 2025-03-19 05:02:12.045 434991 670 100 0 4552 2025-03-19 05:56:23.719 2025-03-19 05:56:23.719 434991 721 1 0 4553 2025-03-19 07:34:17.491 2025-03-19 07:34:17.491 434991 896 9 0 4554 2025-03-19 07:34:17.27 2025-03-19 07:34:17.27 434991 1209 1 0 4555 2025-03-19 05:56:24.059 2025-03-19 05:56:24.059 434991 1620 1 0 4556 2025-03-19 05:56:23.883 2025-03-19 05:56:23.883 434991 1705 1 0 4557 2025-03-19 05:56:24.433 2025-03-19 05:56:24.433 434991 1825 1 0 4558 2025-03-19 07:34:17.491 2025-03-19 07:34:17.491 434991 4819 81 0 4559 2025-03-19 05:56:23.883 2025-03-19 05:56:23.883 434991 5646 9 0 4560 2025-03-19 05:30:57.208 2025-03-19 05:30:57.208 434991 7667 29 0 4561 2025-03-19 07:34:17.27 2025-03-19 07:34:17.27 434991 7992 8 0 4562 2025-03-19 05:56:24.236 2025-03-19 05:56:24.236 434991 8287 9 0 4563 2025-03-19 07:03:30.626 2025-03-19 07:03:30.626 434991 8380 2 0 4564 2025-03-19 07:34:17.091 2025-03-19 07:34:17.091 434991 8505 0 0 4565 2025-03-19 05:56:24.433 2025-03-19 05:56:24.433 434991 10393 9 0 4566 2025-03-19 05:56:24.059 2025-03-19 05:56:24.059 434991 11776 9 0 4567 2025-03-19 05:03:05.998 2025-03-19 05:03:05.998 434991 13174 0 0 4568 2025-03-19 05:30:57.208 2025-03-19 05:30:57.208 434991 15180 3 0 4569 2025-03-19 05:56:24.236 2025-03-19 05:56:24.236 434991 16717 1 0 4570 2025-03-19 07:34:25.19 2025-03-19 07:34:25.19 434991 18731 0 10 4571 2025-03-19 05:03:05.998 2025-03-19 05:03:05.998 434991 19121 1 0 4572 2025-03-19 05:56:23.719 2025-03-19 05:56:23.719 434991 19189 9 0 4573 2025-03-19 07:34:17.091 2025-03-19 07:34:17.091 434991 20220 1 0 4574 2025-03-19 07:03:30.626 2025-03-19 07:03:30.626 434991 21713 19 0 4575 2025-03-19 05:04:15.541 2025-03-19 05:04:15.541 434992 16670 100 0 4576 2025-03-19 05:04:16.085 2025-03-19 05:04:16.085 434993 1751 1 0 4577 2025-03-19 07:08:33.435 2025-03-19 07:08:33.435 434994 627 1 0 4578 2025-03-19 09:28:18.046 2025-03-19 09:28:18.046 434994 671 90 0 4579 2025-03-19 12:20:38.986 2025-03-19 12:20:38.986 434994 805 2 0 4580 2025-03-19 08:54:10.824 2025-03-19 08:54:10.824 434994 836 19 0 4581 2025-03-19 09:18:10.093 2025-03-19 09:18:10.093 434994 960 7 0 4582 2025-03-19 06:52:32.804 2025-03-19 06:52:32.804 434994 1489 10 0 4583 2025-03-19 05:14:17.801 2025-03-19 05:14:17.801 434994 1624 8 0 4584 2025-03-19 06:52:32.804 2025-03-19 06:52:32.804 434994 1751 90 0 4585 2025-03-19 05:36:47.626 2025-03-19 05:36:47.626 434994 1801 38 0 4586 2025-03-19 05:14:16.974 2025-03-19 05:14:16.974 434994 3213 75 0 4587 2025-03-19 08:11:27.705 2025-03-19 08:11:27.705 434994 3411 36 0 4588 2025-03-19 05:51:02.214 2025-03-19 05:51:02.214 434994 4287 2 0 4589 2025-03-19 06:01:44.381 2025-03-19 06:01:44.381 434994 4798 9 0 4590 2025-03-19 05:14:17.801 2025-03-19 05:14:17.801 434994 4819 75 0 4591 2025-03-19 07:08:33.062 2025-03-19 07:08:33.062 434994 5425 0 0 4592 2025-03-19 08:11:27.705 2025-03-19 08:11:27.705 434994 6421 4 0 4593 2025-03-19 07:08:33.062 2025-03-19 07:08:33.062 434994 8469 1 0 4594 2025-03-19 07:08:32.546 2025-03-19 07:08:32.546 434994 8570 1 0 4595 2025-03-19 07:08:33.798 2025-03-19 07:08:33.798 434994 9107 0 0 4596 2025-03-19 09:18:10.751 2025-03-19 09:18:10.751 434994 10291 1 0 4597 2025-03-19 08:54:10.824 2025-03-19 08:54:10.824 434994 11153 2 0 4598 2025-03-19 09:28:18.046 2025-03-19 09:28:18.046 434994 11789 10 0 4599 2025-03-19 09:18:10.751 2025-03-19 09:18:10.751 434994 12769 7 0 4600 2025-03-19 07:08:33.798 2025-03-19 07:08:33.798 434994 14169 1 0 4601 2025-03-19 05:51:02.214 2025-03-19 05:51:02.214 434994 14731 19 0 4602 2025-03-19 07:08:32.89 2025-03-19 07:08:32.89 434994 15491 1 0 4603 2025-03-19 07:08:33.435 2025-03-19 07:08:33.435 434994 15624 0 0 4604 2025-03-19 07:08:33.614 2025-03-19 07:08:33.614 434994 16410 1 0 4605 2025-03-19 07:08:33.26 2025-03-19 07:08:33.26 434994 16562 0 0 4606 2025-03-19 07:08:32.719 2025-03-19 07:08:32.719 434994 16680 1 0 4607 2025-03-19 07:08:33.26 2025-03-19 07:08:33.26 434994 17221 1 0 4608 2025-03-19 09:44:50.956 2025-03-19 09:44:50.956 434994 17592 1 0 4609 2025-03-19 07:08:32.546 2025-03-19 07:08:32.546 434994 17708 0 0 4610 2025-03-19 05:04:42.139 2025-03-19 05:04:42.139 434994 18101 100 0 4611 2025-03-19 05:36:47.626 2025-03-19 05:36:47.626 434994 18241 4 0 4612 2025-03-19 07:35:25.201 2025-03-19 07:35:25.201 434994 18402 2 0 4613 2025-03-19 12:20:38.986 2025-03-19 12:20:38.986 434994 18449 19 0 4614 2025-03-19 07:08:32.719 2025-03-19 07:08:32.719 434994 18901 0 0 4615 2025-03-19 09:44:50.79 2025-03-19 09:44:50.79 434994 19488 10 0 4616 2025-03-19 09:18:10.093 2025-03-19 09:18:10.093 434994 19512 1 0 4617 2025-03-19 07:08:32.89 2025-03-19 07:08:32.89 434994 20669 0 0 4618 2025-03-19 05:14:16.974 2025-03-19 05:14:16.974 434994 20757 8 0 4619 2025-03-19 09:44:50.79 2025-03-19 09:44:50.79 434994 20990 1 0 4620 2025-03-19 07:08:33.614 2025-03-19 07:08:33.614 434994 21218 0 0 4621 2025-03-19 07:35:25.201 2025-03-19 07:35:25.201 434994 21271 19 0 4622 2025-03-19 06:01:44.381 2025-03-19 06:01:44.381 434994 21405 1 0 4623 2025-03-19 09:44:50.956 2025-03-19 09:44:50.956 434994 21451 10 0 4624 2025-03-19 05:46:53.606 2025-03-19 05:46:53.606 434995 678 9 0 4625 2025-03-19 05:46:53.606 2025-03-19 05:46:53.606 434995 1236 1 0 4626 2025-03-19 05:06:33.981 2025-03-19 05:06:33.981 434995 8535 1 0 4627 2025-03-19 05:07:06.266 2025-03-19 05:07:06.266 434996 12245 1 0 4628 2025-03-19 07:33:05.291 2025-03-19 07:33:05.291 434997 721 9 0 4629 2025-03-19 07:33:06.448 2025-03-19 07:33:06.448 434997 956 1 0 4630 2025-03-19 07:33:06.448 2025-03-19 07:33:06.448 434997 1733 9 0 4631 2025-03-19 05:08:05.144 2025-03-19 05:08:05.144 434997 2844 10 0 4632 2025-03-19 07:33:05.291 2025-03-19 07:33:05.291 434997 3990 1 0 4633 2025-03-19 07:33:08.15 2025-03-19 07:33:08.15 434997 4754 9 0 4634 2025-03-19 07:33:07.664 2025-03-19 07:33:07.664 434997 6160 9 0 4635 2025-03-19 07:33:08.15 2025-03-19 07:33:08.15 434997 7827 1 0 4636 2025-03-19 05:09:18.581 2025-03-19 05:09:18.581 434997 10007 2 0 4637 2025-03-19 05:09:18.581 2025-03-19 05:09:18.581 434997 11714 14 0 4638 2025-03-19 07:33:10.008 2025-03-19 07:33:10.008 434997 15196 1 0 4639 2025-03-19 07:33:09.107 2025-03-19 07:33:09.107 434997 16347 1 0 4640 2025-03-19 07:33:09.593 2025-03-19 07:33:09.593 434997 16456 1 0 4641 2025-03-19 07:33:10.008 2025-03-19 07:33:10.008 434997 20023 9 0 4642 2025-03-19 07:33:05.873 2025-03-19 07:33:05.873 434997 20102 1 0 4643 2025-03-19 07:33:09.107 2025-03-19 07:33:09.107 434997 20185 9 0 4644 2025-03-19 07:33:07.496 2025-03-19 07:33:07.496 434997 20222 9 0 4645 2025-03-19 07:33:09.593 2025-03-19 07:33:09.593 434997 20647 9 0 4646 2025-03-19 07:33:05.873 2025-03-19 07:33:05.873 434997 20681 9 0 4647 2025-03-19 07:33:08.653 2025-03-19 07:33:08.653 434997 20852 1 0 4648 2025-03-19 07:33:07.496 2025-03-19 07:33:07.496 434997 20922 1 0 4649 2025-03-19 07:33:07.664 2025-03-19 07:33:07.664 434997 21421 1 0 4650 2025-03-19 07:33:08.653 2025-03-19 07:33:08.653 434997 21734 9 0 4651 2025-03-19 05:08:33.512 2025-03-19 05:08:33.512 434998 649 1 0 4652 2025-03-19 05:08:50.373 2025-03-19 05:08:50.373 434999 1718 1 0 4653 2025-03-19 05:28:56.395 2025-03-19 05:28:56.395 434999 10849 19 0 4654 2025-03-19 05:28:56.395 2025-03-19 05:28:56.395 434999 21710 2 0 4655 2025-03-19 05:09:40.47 2025-03-19 05:09:40.47 435000 10608 1 0 4656 2025-03-19 05:54:41.814 2025-03-19 05:54:41.814 435000 12721 0 0 4657 2025-03-19 05:56:17.161 2025-03-19 05:56:17.161 435000 16954 19 0 4658 2025-03-19 05:54:41.814 2025-03-19 05:54:41.814 435000 17696 1 0 4659 2025-03-19 05:54:41.977 2025-03-19 05:54:41.977 435000 20198 8 0 4660 2025-03-19 05:56:17.161 2025-03-19 05:56:17.161 435000 20370 2 0 4661 2025-03-19 05:54:41.977 2025-03-19 05:54:41.977 435000 21070 1 0 4662 2025-03-19 19:05:48.365 2025-03-19 19:05:48.365 435001 2156 4 0 4663 2025-03-19 05:26:54.934 2025-03-19 05:26:54.934 435001 11897 2 0 4664 2025-03-19 05:09:50.21 2025-03-19 05:09:50.21 435001 13348 1 0 4665 2025-03-19 19:05:48.365 2025-03-19 19:05:48.365 435001 19930 38 0 4666 2025-03-19 05:26:54.934 2025-03-19 05:26:54.934 435001 21047 19 0 4667 2025-03-19 07:30:00.929 2025-03-19 07:30:00.929 435002 738 9 0 4668 2025-03-19 06:20:02.5 2025-03-19 06:20:02.5 435002 1213 90 0 4669 2025-03-19 08:00:26.458 2025-03-19 08:00:26.458 435002 1469 1 0 4670 2025-03-19 06:20:47.438 2025-03-19 06:20:47.438 435002 1745 0 0 4671 2025-03-19 06:20:46.165 2025-03-19 06:20:46.165 435002 3642 0 0 4672 2025-03-19 06:20:47.438 2025-03-19 06:20:47.438 435002 5377 3 0 4673 2025-03-19 06:18:47.957 2025-03-19 06:18:47.957 435002 5522 2 0 4674 2025-03-19 08:00:25.891 2025-03-19 08:00:25.891 435002 6030 1 0 4675 2025-03-19 06:20:47.132 2025-03-19 06:20:47.132 435002 7510 0 0 4676 2025-03-19 06:20:47.132 2025-03-19 06:20:47.132 435002 7583 3 0 4677 2025-03-19 06:20:47.046 2025-03-19 06:20:47.046 435002 7818 3 0 4678 2025-03-19 06:20:47.738 2025-03-19 06:20:47.738 435002 7966 0 0 4679 2025-03-19 06:20:47.738 2025-03-19 06:20:47.738 435002 8416 3 0 4680 2025-03-19 08:00:26.458 2025-03-19 08:00:26.458 435002 9356 9 0 4681 2025-03-19 05:11:14.107 2025-03-19 05:11:14.107 435002 10433 14 0 4682 2025-03-19 07:03:26.939 2025-03-19 07:03:26.939 435002 10981 2 0 4683 2025-03-19 05:11:14.107 2025-03-19 05:11:14.107 435002 13198 2 0 4684 2025-03-19 07:03:26.939 2025-03-19 07:03:26.939 435002 16301 19 0 4685 2025-03-19 08:00:25.891 2025-03-19 08:00:25.891 435002 16410 9 0 4686 2025-03-19 06:20:48.071 2025-03-19 06:20:48.071 435002 17415 3 0 4687 2025-03-19 06:20:48.071 2025-03-19 06:20:48.071 435002 17722 0 0 4688 2025-03-19 06:20:46.43 2025-03-19 06:20:46.43 435002 18409 3 0 4689 2025-03-19 06:18:47.957 2025-03-19 06:18:47.957 435002 19138 19 0 4690 2025-03-19 07:30:00.929 2025-03-19 07:30:00.929 435002 20225 1 0 4691 2025-03-19 08:01:24.062 2025-03-19 08:01:24.062 435002 20502 9 0 4692 2025-03-19 06:20:47.046 2025-03-19 06:20:47.046 435002 20603 0 0 4693 2025-03-19 08:01:23.878 2025-03-19 08:01:23.878 435002 20619 9 0 4694 2025-03-19 08:01:23.878 2025-03-19 08:01:23.878 435002 20734 1 0 4695 2025-03-19 06:20:46.43 2025-03-19 06:20:46.43 435002 20778 0 0 4696 2025-03-19 05:09:51.498 2025-03-19 05:09:51.498 435002 21064 100 0 4697 2025-03-19 06:20:46.165 2025-03-19 06:20:46.165 435002 21222 3 0 4698 2025-03-19 06:20:02.5 2025-03-19 06:20:02.5 435002 21339 10 0 4699 2025-03-19 08:01:24.062 2025-03-19 08:01:24.062 435002 21620 1 0 4700 2025-03-19 05:10:15.511 2025-03-19 05:10:15.511 435003 759 1 0 4701 2025-03-19 05:12:34.079 2025-03-19 05:12:34.079 435003 5359 2 0 4702 2025-03-19 05:12:34.079 2025-03-19 05:12:34.079 435003 21832 14 0 4703 2025-03-19 05:54:41.032 2025-03-19 05:54:41.032 435004 992 8 0 4704 2025-03-19 05:56:16.477 2025-03-19 05:56:16.477 435004 2402 2 0 4705 2025-03-19 05:54:40.873 2025-03-19 05:54:40.873 435004 2942 0 0 4706 2025-03-19 05:56:16.477 2025-03-19 05:56:16.477 435004 9036 19 0 4707 2025-03-19 05:11:03.379 2025-03-19 05:11:03.379 435004 12609 1 0 4708 2025-03-19 05:54:40.873 2025-03-19 05:54:40.873 435004 18011 1 0 4709 2025-03-19 05:54:41.032 2025-03-19 05:54:41.032 435004 21639 1 0 4710 2025-03-19 05:11:09.286 2025-03-19 05:11:09.286 435005 15146 1 0 4711 2025-03-19 05:11:11.535 2025-03-19 05:11:11.535 435006 759 1 0 4712 2025-03-19 05:12:38.251 2025-03-19 05:12:38.251 435006 2963 1 0 4713 2025-03-19 05:12:38.251 2025-03-19 05:12:38.251 435006 19403 9 0 4714 2025-03-19 13:50:53.077 2025-03-19 13:50:53.077 435007 1515 2 0 4715 2025-03-19 13:50:53.077 2025-03-19 13:50:53.077 435007 2016 19 0 4716 2025-03-19 13:53:29.818 2025-03-19 13:53:29.818 435007 4776 19 0 4717 2025-03-19 05:11:29.185 2025-03-19 05:11:29.185 435007 10094 10 0 4718 2025-03-19 13:53:29.818 2025-03-19 13:53:29.818 435007 16660 2 0 4719 2025-03-19 05:12:18.744 2025-03-19 05:12:18.744 435008 5195 1 0 4720 2025-03-19 06:00:27.492 2025-03-19 06:00:27.492 435009 630 1 0 4721 2025-03-19 06:00:27.155 2025-03-19 06:00:27.155 435009 2206 10 0 4722 2025-03-19 06:00:27.362 2025-03-19 06:00:27.362 435009 5487 10 0 4723 2025-03-19 06:00:27.155 2025-03-19 06:00:27.155 435009 5779 1 0 4724 2025-03-19 06:00:27.492 2025-03-19 06:00:27.492 435009 19996 10 0 4725 2025-03-19 06:00:27.362 2025-03-19 06:00:27.362 435009 20222 1 0 4726 2025-03-19 05:12:52.224 2025-03-19 05:12:52.224 435009 21405 1 0 4727 2025-03-19 07:03:25.262 2025-03-19 07:03:25.262 435010 18525 19 0 4728 2025-03-19 05:13:17.509 2025-03-19 05:13:17.509 435010 20646 100 0 4729 2025-03-19 07:03:25.262 2025-03-19 07:03:25.262 435010 21320 2 0 4730 2025-03-19 05:15:13.826 2025-03-19 05:15:13.826 435011 20980 1 0 4731 2025-03-19 05:15:42.998 2025-03-19 05:15:42.998 435012 1428 1 0 4732 2025-03-19 05:22:21.893 2025-03-19 05:22:21.893 435012 2367 3 0 4733 2025-03-19 05:22:21.893 2025-03-19 05:22:21.893 435012 14472 29 0 4734 2025-03-19 06:00:48.663 2025-03-19 06:00:48.663 435013 775 1 0 4735 2025-03-19 06:00:48.816 2025-03-19 06:00:48.816 435013 5590 1 0 4736 2025-03-19 05:15:57.188 2025-03-19 05:15:57.188 435013 12169 1 0 4737 2025-03-19 06:00:48.816 2025-03-19 06:00:48.816 435013 12959 10 0 4738 2025-03-19 06:00:48.984 2025-03-19 06:00:48.984 435013 13348 1 0 4739 2025-03-19 06:00:48.663 2025-03-19 06:00:48.663 435013 17209 10 0 4740 2025-03-19 06:00:48.984 2025-03-19 06:00:48.984 435013 21805 10 0 4741 2025-03-19 07:20:19.485 2025-03-19 07:20:19.485 435014 1175 30 0 4742 2025-03-19 05:17:16.409 2025-03-19 05:17:16.409 435014 1389 100 0 4743 2025-03-19 07:38:33.607 2025-03-19 07:38:33.607 435014 10693 19 0 4744 2025-03-19 07:20:19.485 2025-03-19 07:20:19.485 435014 13759 270 0 4745 2025-03-19 07:38:33.607 2025-03-19 07:38:33.607 435014 16598 2 0 4746 2025-03-19 05:18:14.214 2025-03-19 05:18:14.214 435015 19484 1 0 4747 2025-03-19 05:18:19.716 2025-03-19 05:18:19.716 435016 18731 1 0 4748 2025-03-19 05:28:48.563 2025-03-19 05:28:48.563 435017 675 0 0 4749 2025-03-19 05:26:37.726 2025-03-19 05:26:37.726 435017 775 0 0 4750 2025-03-19 05:20:24.199 2025-03-19 05:20:24.199 435017 1584 100 0 4751 2025-03-19 05:21:02.865 2025-03-19 05:21:02.865 435017 3504 0 0 4752 2025-03-19 05:27:43.118 2025-03-19 05:27:43.118 435017 9992 0 0 4753 2025-03-19 05:22:55.972 2025-03-19 05:22:55.972 435017 10608 0 0 4754 2025-03-19 05:22:29.323 2025-03-19 05:22:29.323 435017 11450 0 0 4755 2025-03-19 05:24:30.553 2025-03-19 05:24:30.553 435017 19531 0 0 4756 2025-03-19 07:52:50.677 2025-03-19 07:52:50.677 435018 685 7 0 4757 2025-03-19 05:34:52.417 2025-03-19 05:34:52.417 435018 837 36 0 4758 2025-03-19 05:28:56.776 2025-03-19 05:28:56.776 435018 1094 8 0 4759 2025-03-19 07:30:00.636 2025-03-19 07:30:00.636 435018 1175 9 0 4760 2025-03-19 05:51:04.169 2025-03-19 05:51:04.169 435018 1326 19 0 4761 2025-03-19 06:45:09.498 2025-03-19 06:45:09.498 435018 1411 1 0 4762 2025-03-19 06:42:44.39 2025-03-19 06:42:44.39 435018 1652 19 0 4763 2025-03-19 10:10:41.138 2025-03-19 10:10:41.138 435018 2196 450 0 4764 2025-03-19 08:53:55.973 2025-03-19 08:53:55.973 435018 2328 19 0 4765 2025-03-19 06:45:09.498 2025-03-19 06:45:09.498 435018 2609 9 0 4766 2025-03-19 08:00:59.005 2025-03-19 08:00:59.005 435018 3360 1 0 4767 2025-03-19 08:28:50.095 2025-03-19 08:28:50.095 435018 3417 7 0 4768 2025-03-19 08:28:50.095 2025-03-19 08:28:50.095 435018 5637 1 0 4769 2025-03-19 05:28:56.624 2025-03-19 05:28:56.624 435018 5806 0 0 4770 2025-03-19 06:01:42.007 2025-03-19 06:01:42.007 435018 8954 10 0 4771 2025-03-19 08:00:58.625 2025-03-19 08:00:58.625 435018 9418 9 0 4772 2025-03-19 08:00:58.625 2025-03-19 08:00:58.625 435018 11716 1 0 4773 2025-03-19 06:42:44.39 2025-03-19 06:42:44.39 435018 12921 2 0 4774 2025-03-19 05:34:52.417 2025-03-19 05:34:52.417 435018 14651 4 0 4775 2025-03-19 06:01:42.007 2025-03-19 06:01:42.007 435018 15409 1 0 4776 2025-03-19 08:33:07.09 2025-03-19 08:33:07.09 435018 16259 1 0 4777 2025-03-19 07:30:00.636 2025-03-19 07:30:00.636 435018 16276 1 0 4778 2025-03-19 05:51:04.169 2025-03-19 05:51:04.169 435018 16809 2 0 4779 2025-03-19 07:52:50.677 2025-03-19 07:52:50.677 435018 17673 64 0 4780 2025-03-19 07:23:45.691 2025-03-19 07:23:45.691 435018 17817 9 0 4781 2025-03-19 05:28:56.624 2025-03-19 10:10:41.138 435018 18271 51 0 4782 2025-03-19 05:21:06.691 2025-03-19 05:21:06.691 435018 18673 10 0 4783 2025-03-20 00:21:45.907 2025-03-20 00:21:45.907 435018 19071 9 0 4784 2025-03-19 05:28:56.776 2025-03-19 05:28:56.776 435018 19531 1 0 4785 2025-03-19 07:32:26.737 2025-03-19 07:32:26.737 435018 19535 75 0 4786 2025-03-19 07:32:26.737 2025-03-19 07:32:26.737 435018 20185 8 0 4787 2025-03-19 08:00:59.005 2025-03-19 08:00:59.005 435018 20990 9 0 4788 2025-03-19 07:23:45.691 2025-03-19 07:23:45.691 435018 21012 81 0 4789 2025-03-20 00:21:45.907 2025-03-20 00:21:45.907 435018 21262 1 0 4790 2025-03-19 08:33:07.09 2025-03-19 08:33:07.09 435018 21521 9 0 4791 2025-03-19 08:53:55.973 2025-03-19 08:53:55.973 435018 21803 2 0 4792 2025-03-19 07:38:44.717 2025-03-19 07:38:44.717 435019 658 19 0 4793 2025-03-19 07:33:24.713 2025-03-19 07:33:24.713 435019 680 9 0 4794 2025-03-19 07:33:37.007 2025-03-19 07:33:37.007 435019 762 1 0 4795 2025-03-19 05:31:41.459 2025-03-19 05:31:41.459 435019 919 24 0 4796 2025-03-19 05:31:41.641 2025-03-19 05:31:41.641 435019 985 3 0 4797 2025-03-19 06:11:14.229 2025-03-19 06:11:14.229 435019 1003 9 0 4798 2025-03-19 07:33:26.805 2025-03-19 07:33:26.805 435019 2039 9 0 4799 2025-03-19 05:31:41.459 2025-03-19 05:31:41.459 435019 3544 3 0 4800 2025-03-19 07:33:26.126 2025-03-19 07:33:26.126 435019 4084 9 0 4801 2025-03-19 07:33:35.951 2025-03-19 07:33:35.951 435019 4388 9 0 4802 2025-03-19 08:54:06.866 2025-03-19 08:54:06.866 435019 6030 2 0 4803 2025-03-19 05:55:16.834 2025-03-19 05:55:16.834 435019 6717 10 0 4804 2025-03-19 05:21:09.587 2025-03-19 05:21:09.587 435019 8796 97 0 4805 2025-03-19 07:33:35.951 2025-03-19 07:33:35.951 435019 9351 1 0 4806 2025-03-19 08:54:06.866 2025-03-19 08:54:06.866 435019 10112 19 0 4807 2025-03-19 05:55:16.834 2025-03-19 05:55:16.834 435019 12102 90 0 4808 2025-03-19 05:31:41.84 2025-03-19 05:31:41.84 435019 13575 24 0 4809 2025-03-19 07:33:26.805 2025-03-19 07:33:26.805 435019 15409 1 0 4810 2025-03-19 07:33:37.007 2025-03-19 07:33:37.007 435019 16912 9 0 4811 2025-03-19 05:31:41.84 2025-03-19 05:31:41.84 435019 17291 3 0 4812 2025-03-19 06:11:14.229 2025-03-19 06:11:14.229 435019 17522 1 0 4813 2025-03-19 07:33:24.713 2025-03-19 07:33:24.713 435019 18265 1 0 4814 2025-03-19 05:31:43.129 2025-03-19 05:31:43.129 435019 18615 3 0 4815 2025-03-19 07:33:25.404 2025-03-19 07:33:25.404 435019 19637 9 0 4816 2025-03-19 07:33:25.404 2025-03-19 07:33:25.404 435019 20201 1 0 4817 2025-03-19 07:38:44.717 2025-03-19 07:38:44.717 435019 20912 2 0 4818 2025-03-19 05:31:41.641 2025-03-19 05:31:41.641 435019 21139 24 0 4819 2025-03-19 08:11:25.278 2025-03-19 08:11:25.278 435019 21320 36 0 4820 2025-03-19 08:11:25.278 2025-03-19 08:11:25.278 435019 21338 4 0 4821 2025-03-19 05:31:43.129 2025-03-19 05:31:43.129 435019 21666 24 0 4822 2025-03-19 05:21:36.355 2025-03-19 05:21:36.355 435020 21172 1 0 4823 2025-03-19 05:23:03.377 2025-03-19 05:23:03.377 435021 698 1 0 4824 2025-03-19 05:22:12.134 2025-03-19 05:22:12.134 435021 1003 1 0 4825 2025-03-19 05:23:00.156 2025-03-19 05:23:00.156 435021 1585 1 0 4826 2025-03-19 05:57:13.917 2025-03-19 05:57:13.917 435021 5306 1 0 4827 2025-03-19 05:23:02.695 2025-03-19 05:23:02.695 435021 17519 1 0 4828 2025-03-19 05:23:02.695 2025-03-19 05:23:02.695 435021 18219 9 0 4829 2025-03-19 05:23:03.377 2025-03-19 05:23:03.377 435021 19189 9 0 4830 2025-03-19 05:23:00.156 2025-03-19 05:23:00.156 435021 20180 9 0 4831 2025-03-19 05:57:13.917 2025-03-19 05:57:13.917 435021 21547 0 0 4832 2025-03-19 05:22:38.431 2025-03-19 05:22:38.431 435022 2596 1 0 4833 2025-03-19 05:31:48.747 2025-03-19 05:31:48.747 435023 2719 15 0 4834 2025-03-19 05:47:36.681 2025-03-19 05:47:36.681 435023 6030 30 0 4835 2025-03-19 05:31:48.747 2025-03-19 05:31:48.747 435023 16679 2 0 4836 2025-03-19 05:24:18.343 2025-03-19 05:24:18.343 435023 19826 1 0 4837 2025-03-19 05:47:36.681 2025-03-19 05:47:36.681 435023 21383 3 0 4838 2025-03-19 10:06:48.116 2025-03-19 10:06:48.116 435024 628 2 0 4839 2025-03-19 05:25:28.613 2025-03-19 05:25:28.613 435024 685 1 0 4840 2025-03-19 10:06:48.116 2025-03-19 10:06:48.116 435024 17682 19 0 4841 2025-03-19 05:26:34.526 2025-03-19 05:26:34.526 435025 2961 1 0 4842 2025-03-19 09:44:51.702 2025-03-19 09:44:51.702 435026 624 1 0 4843 2025-03-19 09:44:51.811 2025-03-19 09:44:51.811 435026 909 1 0 4844 2025-03-19 05:26:40.158 2025-03-19 05:26:40.158 435026 1135 100 0 4845 2025-03-19 09:44:52.015 2025-03-19 09:44:52.015 435026 1800 10 0 4846 2025-03-19 05:28:48.365 2025-03-19 05:28:48.365 435026 2203 8 0 4847 2025-03-19 09:44:51.811 2025-03-19 09:44:51.811 435026 4177 10 0 4848 2025-03-19 06:59:17.529 2025-03-19 06:59:17.529 435026 8508 1 0 4849 2025-03-19 08:54:13.885 2025-03-19 08:54:13.885 435026 9333 2 0 4850 2025-03-19 07:03:06.572 2025-03-19 07:03:06.572 435026 9426 7 0 4851 2025-03-19 07:03:20.116 2025-03-19 07:03:20.116 435026 11417 19 0 4852 2025-03-19 09:44:52.015 2025-03-19 09:44:52.015 435026 11938 1 0 4853 2025-03-19 08:54:13.885 2025-03-19 08:54:13.885 435026 13547 19 0 4854 2025-03-19 05:52:45.761 2025-03-19 05:52:45.761 435026 13566 19 0 4855 2025-03-19 05:28:49.562 2025-03-19 05:28:49.562 435026 13622 81 0 4856 2025-03-19 06:58:15.742 2025-03-19 06:58:15.742 435026 14688 1 0 4857 2025-03-19 09:44:51.702 2025-03-19 09:44:51.702 435026 16250 10 0 4858 2025-03-19 05:28:48.365 2025-03-19 05:28:48.365 435026 16978 1 0 4859 2025-03-19 06:58:15.742 2025-03-19 06:58:15.742 435026 17212 9 0 4860 2025-03-19 06:59:17.529 2025-03-19 06:59:17.529 435026 17517 5 0 4861 2025-03-19 08:11:29.373 2025-03-19 08:11:29.373 435026 17710 4 0 4862 2025-03-19 07:03:06.572 2025-03-19 07:03:06.572 435026 18430 64 0 4863 2025-03-19 05:28:48.169 2025-03-19 05:28:48.169 435026 20377 1 0 4864 2025-03-19 07:03:20.116 2025-03-19 07:03:20.116 435026 20691 2 0 4865 2025-03-19 08:11:29.373 2025-03-19 08:11:29.373 435026 20826 36 0 4866 2025-03-19 05:52:45.761 2025-03-19 05:52:45.761 435026 20881 2 0 4867 2025-03-19 05:28:48.169 2025-03-19 05:28:48.169 435026 21413 0 0 4868 2025-03-19 05:28:49.562 2025-03-19 05:28:49.562 435026 21804 9 0 4869 2025-03-19 05:27:08.552 2025-03-19 05:27:08.552 435027 19821 1 0 4870 2025-03-19 05:32:09.836 2025-03-19 05:32:09.836 435028 940 0 0 4871 2025-03-19 05:32:09.836 2025-03-19 05:32:09.836 435028 15536 3 0 4872 2025-03-19 05:27:12.427 2025-03-19 05:27:12.427 435028 19463 1 0 4873 2025-03-19 05:29:21.73 2025-03-19 05:29:21.73 435029 12976 0 0 4874 2025-03-19 05:28:09.528 2025-03-19 05:28:09.528 435029 15488 100 0 4875 2025-03-19 07:29:59.879 2025-03-19 07:29:59.879 435029 16876 1 0 4876 2025-03-19 07:29:59.879 2025-03-19 07:29:59.879 435029 21771 9 0 4877 2025-03-19 06:04:31.751 2025-03-19 06:04:31.751 435030 621 14 0 4878 2025-03-19 18:20:16.724 2025-03-19 18:20:16.724 435030 656 5 0 4879 2025-03-19 06:58:55.475 2025-03-19 06:58:55.475 435030 676 9 0 4880 2025-03-19 15:09:26.029 2025-03-19 15:09:26.029 435030 678 10 0 4881 2025-03-19 05:48:16.621 2025-03-19 05:48:16.621 435030 681 1 0 4882 2025-03-19 13:51:50.562 2025-03-19 13:51:50.562 435030 700 2 0 4883 2025-03-19 07:36:55.413 2025-03-19 07:36:55.413 435030 861 8 0 4884 2025-03-19 13:33:21.421 2025-03-19 13:33:21.421 435030 981 9 0 4885 2025-03-19 13:51:52.803 2025-03-19 13:51:52.803 435030 989 2 0 4886 2025-03-19 08:53:28.005 2025-03-19 08:53:28.005 435030 1316 19 0 4887 2025-03-19 07:58:00.797 2025-03-19 07:58:00.797 435030 1438 1 0 4888 2025-03-19 13:51:51.163 2025-03-19 13:51:51.163 435030 1488 2 0 4889 2025-03-19 07:36:56.067 2025-03-19 07:36:56.067 435030 1609 149 0 4890 2025-03-19 07:58:00.797 2025-03-19 07:58:00.797 435030 1737 9 0 4891 2025-03-19 13:51:51.641 2025-03-19 13:51:51.641 435030 1825 19 0 4892 2025-03-19 11:53:13.161 2025-03-19 11:53:13.161 435030 1881 1 0 4893 2025-03-19 18:20:16.724 2025-03-19 18:20:16.724 435030 1983 1 0 4894 2025-03-19 12:46:42.617 2025-03-19 12:46:42.617 435030 2065 1 0 4895 2025-03-19 13:51:52.57 2025-03-19 13:51:52.57 435030 2285 19 0 4896 2025-03-19 13:51:50.562 2025-03-19 13:51:50.562 435030 2342 19 0 4897 2025-03-19 08:02:50.861 2025-03-19 08:02:50.861 435030 2502 1 0 4898 2025-03-19 06:16:45.71 2025-03-19 06:16:45.71 435030 2514 230 0 4899 2025-03-19 07:38:46.417 2025-03-19 07:38:46.417 435030 2639 5 0 4900 2025-03-19 05:48:18.195 2025-03-19 05:48:18.195 435030 2640 81 0 4901 2025-03-19 18:43:13.895 2025-03-19 18:43:13.895 435030 3683 1 0 4902 2025-03-19 06:04:49.98 2025-03-19 06:04:49.98 435030 3729 36 0 4903 2025-03-19 07:29:55.035 2025-03-19 07:29:55.035 435030 4079 27 0 4904 2025-03-19 06:30:36.24 2025-03-19 06:30:36.24 435030 4259 90 0 4905 2025-03-19 05:50:50.721 2025-03-19 05:50:50.721 435030 4395 2 0 4906 2025-03-19 07:29:55.624 2025-03-19 07:29:55.624 435030 5487 27 0 4907 2025-03-19 07:29:55.624 2025-03-19 07:29:55.624 435030 5708 243 0 4908 2025-03-19 13:51:52.334 2025-03-19 13:51:52.334 435030 6058 2 0 4909 2025-03-19 11:53:13.161 2025-03-19 11:53:13.161 435030 6148 10 0 4910 2025-03-19 05:48:18.309 2025-03-19 05:48:18.309 435030 6191 810 0 4911 2025-03-19 05:50:50.721 2025-03-19 05:50:50.721 435030 6360 19 0 4912 2025-03-19 06:57:59.206 2025-03-19 06:57:59.206 435030 6419 9 0 4913 2025-03-19 07:36:55.496 2025-03-19 07:36:55.496 435030 6573 75 0 4914 2025-03-19 06:04:49.98 2025-03-19 06:04:49.98 435030 7558 4 0 4915 2025-03-19 13:51:52.803 2025-03-19 13:51:52.803 435030 7668 19 0 4916 2025-03-19 05:44:03.604 2025-03-19 05:44:03.604 435030 7891 0 0 4917 2025-03-19 07:36:56.067 2025-03-19 07:36:56.067 435030 7913 17 0 4918 2025-03-19 08:53:28.005 2025-03-19 08:53:28.005 435030 8459 2 0 4919 2025-03-19 13:51:51.163 2025-03-19 13:51:51.163 435030 8535 19 0 4920 2025-03-19 07:00:00.898 2025-03-19 07:00:00.898 435030 9084 10 0 4921 2025-03-19 07:38:46.022 2025-03-19 07:38:46.022 435030 9276 1 0 4922 2025-03-19 13:51:51.641 2025-03-19 13:51:51.641 435030 9329 2 0 4923 2025-03-19 05:48:16.78 2025-03-19 05:48:16.78 435030 9346 1 0 4924 2025-03-19 17:26:50.359 2025-03-19 17:26:50.359 435030 9421 19 0 4925 2025-03-19 05:48:18.309 2025-03-19 05:48:18.309 435030 9969 90 0 4926 2025-03-19 12:43:21.665 2025-03-19 12:43:21.665 435030 10007 2 0 4927 2025-03-19 08:47:12.631 2025-03-19 08:47:12.631 435030 10096 19 0 4928 2025-03-19 09:04:26.312 2025-03-19 09:04:26.312 435030 10311 3 0 4929 2025-03-19 09:04:26.312 2025-03-19 09:04:26.312 435030 10433 30 0 4930 2025-03-19 23:19:20.094 2025-03-19 23:19:20.094 435030 10818 0 0 4931 2025-03-19 07:25:55.069 2025-03-19 08:46:10.746 435030 12188 1 0 4932 2025-03-19 12:43:21.665 2025-03-19 12:43:21.665 435030 12368 19 0 4933 2025-03-19 06:58:55.475 2025-03-19 06:58:55.475 435030 12490 1 0 4934 2025-03-19 06:57:59.206 2025-03-19 06:57:59.206 435030 12738 1 0 4935 2025-03-19 13:51:52.57 2025-03-19 13:51:52.57 435030 13133 2 0 4936 2025-03-19 05:28:53.918 2025-03-19 05:28:53.918 435030 13566 100 0 4937 2025-03-19 05:48:16.621 2025-03-19 05:48:16.621 435030 14370 0 0 4938 2025-03-19 06:30:36.24 2025-03-19 06:30:36.24 435030 15282 10 0 4939 2025-03-19 07:29:56.14 2025-03-19 07:29:56.14 435030 15463 1 0 4940 2025-03-19 23:19:20.094 2025-03-19 23:19:20.094 435030 15577 2 0 4941 2025-03-19 10:24:20.6 2025-03-19 10:24:20.6 435030 16289 10 0 4942 2025-03-19 07:36:55.627 2025-03-19 07:36:55.627 435030 16336 75 0 4943 2025-03-19 08:02:50.861 2025-03-19 08:02:50.861 435030 16348 0 0 4944 2025-03-19 07:36:55.627 2025-03-19 07:36:55.627 435030 16447 8 0 4945 2025-03-19 07:44:41.34 2025-03-19 07:44:41.34 435030 17116 10 0 4946 2025-03-19 06:04:31.751 2025-03-19 06:04:31.751 435030 17331 2 0 4947 2025-03-19 07:29:55.035 2025-03-19 07:29:55.035 435030 18270 3 0 4948 2025-03-19 07:38:46.417 2025-03-19 07:38:46.417 435030 18330 1 0 4949 2025-03-19 09:04:25.836 2025-03-19 09:04:25.836 435030 18533 30 0 4950 2025-03-19 07:36:55.496 2025-03-19 07:36:55.496 435030 18557 8 0 4951 2025-03-19 07:25:55.069 2025-03-19 07:25:55.069 435030 18772 10 0 4952 2025-03-19 09:04:25.836 2025-03-19 09:04:25.836 435030 18901 3 0 4953 2025-03-19 18:43:13.895 2025-03-19 18:43:13.895 435030 19117 9 0 4954 2025-03-19 07:44:41.34 2025-03-19 07:44:41.34 435030 19378 90 0 4955 2025-03-19 15:09:26.029 2025-03-19 15:09:26.029 435030 19446 1 0 4956 2025-03-19 08:47:12.631 2025-03-19 08:47:12.631 435030 19689 2 0 4957 2025-03-19 07:36:55.783 2025-03-19 07:36:55.783 435030 19863 8 0 4958 2025-03-19 07:38:46.022 2025-03-19 07:38:46.022 435030 19996 5 0 4959 2025-03-19 07:29:56.14 2025-03-19 07:29:56.14 435030 20646 9 0 4960 2025-03-19 05:48:16.78 2025-03-19 05:48:16.78 435030 20647 8 0 4961 2025-03-19 06:16:45.71 2025-03-19 06:16:45.71 435030 20681 26 0 4962 2025-03-19 07:36:55.783 2025-03-19 07:36:55.783 435030 20755 75 0 4963 2025-03-19 13:51:52.334 2025-03-19 13:51:52.334 435030 20817 19 0 4964 2025-03-19 07:00:00.898 2025-03-19 07:00:00.898 435030 21022 90 0 4965 2025-03-19 13:51:52.101 2025-03-19 13:51:52.101 435030 21064 2 0 4966 2025-03-19 13:51:52.101 2025-03-19 13:51:52.101 435030 21148 19 0 4967 2025-03-19 10:24:20.6 2025-03-19 10:24:20.6 435030 21159 90 0 4968 2025-03-19 05:44:03.604 2025-03-19 05:44:03.604 435030 21281 1 0 4969 2025-03-19 12:46:42.617 2025-03-19 12:46:42.617 435030 21373 0 0 4970 2025-03-19 17:26:50.359 2025-03-19 17:26:50.359 435030 21418 2 0 4971 2025-03-19 05:48:18.195 2025-03-19 05:48:18.195 435030 21451 9 0 4972 2025-03-19 07:36:55.413 2025-03-19 07:36:55.413 435030 21670 75 0 4973 2025-03-19 08:46:10.746 2025-03-19 08:46:10.746 435030 21672 1 0 4974 2025-03-19 13:33:21.421 2025-03-19 13:33:21.421 435030 21734 1 0 4975 2025-03-19 05:32:30.452 2025-03-19 05:32:30.452 435031 5865 6 0 4976 2025-03-19 05:32:30.452 2025-03-19 05:32:30.452 435031 17103 1 0 4977 2025-03-19 05:28:54.22 2025-03-19 05:28:54.22 435031 17519 1 0 4978 2025-03-19 06:00:59.233 2025-03-19 06:00:59.233 435032 633 10 0 4979 2025-03-19 06:00:59.233 2025-03-19 06:00:59.233 435032 1584 1 0 4980 2025-03-19 05:28:57.445 2025-03-19 05:28:57.445 435032 4692 1 0 4981 2025-03-19 06:00:59.378 2025-03-19 06:00:59.378 435032 6653 1 0 4982 2025-03-19 06:00:59.073 2025-03-19 06:00:59.073 435032 8506 1 0 4983 2025-03-19 06:00:59.073 2025-03-19 06:00:59.073 435032 12976 10 0 4984 2025-03-19 06:00:59.378 2025-03-19 06:00:59.378 435032 14910 10 0 4985 2025-03-19 05:29:24.149 2025-03-19 05:29:24.149 435033 21036 1 0 4986 2025-03-19 05:30:50.45 2025-03-19 05:30:50.45 435034 15146 1 0 4987 2025-03-19 05:30:55.304 2025-03-19 05:30:55.304 435035 2309 1 0 4988 2025-03-19 05:32:10.857 2025-03-19 05:32:10.857 435036 12566 10 0 4989 2025-03-20 02:23:57.924 2025-03-20 02:23:57.924 435036 20026 23 0 4990 2025-03-20 02:23:57.924 2025-03-20 02:23:57.924 435036 21242 3 0 4991 2025-03-19 06:08:00.077 2025-03-19 06:08:00.077 435037 3400 9 0 4992 2025-03-19 05:34:42.334 2025-03-19 05:34:42.334 435037 6765 1 0 4993 2025-03-19 06:08:00.077 2025-03-19 06:08:00.077 435037 20768 1 0 4994 2025-03-19 05:36:49.554 2025-03-19 05:36:49.554 435038 1221 1 0 4995 2025-03-19 06:30:53.571 2025-03-19 06:30:53.571 435038 18528 6 0 4996 2025-03-19 06:30:53.571 2025-03-19 06:30:53.571 435038 21521 57 0 4997 2025-03-19 05:36:52.445 2025-03-19 05:36:52.445 435039 20646 1 0 4998 2025-03-19 05:55:24.163 2025-03-19 05:55:24.163 435040 782 75 0 4999 2025-03-19 05:55:22.7 2025-03-19 05:55:22.7 435040 1006 75 0 5000 2025-03-19 06:43:11.093 2025-03-19 06:43:11.093 435040 1741 19 0 5001 2025-03-19 05:38:37.583 2025-03-19 05:38:37.583 435040 4083 1 0 5002 2025-03-19 06:43:11.093 2025-03-19 06:43:11.093 435040 12334 2 0 5003 2025-03-19 05:55:22.7 2025-03-19 05:55:22.7 435040 16653 8 0 5004 2025-03-19 05:55:24.163 2025-03-19 05:55:24.163 435040 20713 8 0 5005 2025-03-19 05:39:59.769 2025-03-19 05:39:59.769 435041 1620 1 0 5006 2025-03-19 05:46:27.229 2025-03-19 05:46:27.229 435042 802 27 0 5007 2025-03-19 05:46:25.054 2025-03-19 05:46:25.054 435042 2347 27 0 5008 2025-03-19 05:46:25.054 2025-03-19 05:46:25.054 435042 6361 3 0 5009 2025-03-19 05:46:27.229 2025-03-19 05:46:27.229 435042 9529 243 0 5010 2025-03-19 05:42:00.975 2025-03-19 05:42:00.975 435042 15662 1 0 5011 2025-03-19 13:10:16.337 2025-03-19 13:10:16.337 435043 688 1 0 5012 2025-03-19 06:01:08.164 2025-03-19 06:01:08.164 435043 1094 10 0 5013 2025-03-19 05:42:16.95 2025-03-19 05:42:16.95 435043 1617 1 0 5014 2025-03-19 06:01:08.303 2025-03-19 06:01:08.303 435043 8541 10 0 5015 2025-03-19 13:10:16.337 2025-03-19 13:10:16.337 435043 13216 9 0 5016 2025-03-19 06:01:08.303 2025-03-19 06:01:08.303 435043 15719 1 0 5017 2025-03-19 06:01:08.164 2025-03-19 06:01:08.164 435043 17522 1 0 5018 2025-03-19 07:58:48.519 2025-03-19 07:58:48.519 435044 964 1 0 5019 2025-03-19 05:43:39.135 2025-03-19 05:43:39.135 435044 5758 1 0 5020 2025-03-19 07:58:48.519 2025-03-19 07:58:48.519 435044 19759 9 0 5021 2025-03-19 05:43:54.768 2025-03-19 05:43:54.768 435045 2224 1 0 5022 2025-03-19 05:45:09.858 2025-03-19 05:45:09.858 435045 17570 1 0 5023 2025-03-19 05:45:09.858 2025-03-19 05:45:09.858 435045 19673 9 0 5024 2025-03-19 13:50:10.034 2025-03-19 13:50:10.034 435046 617 2 0 5025 2025-03-19 12:37:32.841 2025-03-19 18:43:14.798 435046 622 12 0 5026 2025-03-20 03:03:39.254 2025-03-20 03:03:39.254 435046 631 38 0 5027 2025-03-20 04:06:54.822 2025-03-20 04:06:54.822 435046 675 10 0 5028 2025-03-19 07:42:45.446 2025-03-19 07:42:45.446 435046 691 1 0 5029 2025-03-19 06:57:58.496 2025-03-19 06:57:58.496 435046 692 1 0 5030 2025-03-19 07:50:10.468 2025-03-19 07:50:10.468 435046 720 1 0 5031 2025-03-20 04:06:56.352 2025-03-20 04:06:56.352 435046 730 1 0 5032 2025-03-19 05:57:12.927 2025-03-19 05:57:12.927 435046 766 2 0 5033 2025-03-19 05:57:58.096 2025-03-19 05:57:58.096 435046 794 19 0 5034 2025-03-20 04:06:56.547 2025-03-20 04:06:56.547 435046 880 10 0 5035 2025-03-19 08:39:20.638 2025-03-19 08:39:20.638 435046 937 23 0 5036 2025-03-19 18:43:14.798 2025-03-19 18:43:14.798 435046 980 1 0 5037 2025-03-19 08:18:11.51 2025-03-19 08:18:11.51 435046 1002 0 0 5038 2025-03-19 07:08:55.084 2025-03-19 07:08:55.084 435046 1092 0 0 5039 2025-03-19 08:19:55.252 2025-03-19 13:50:10.034 435046 1141 919 0 5040 2025-03-20 04:06:54.961 2025-03-20 04:06:54.961 435046 1236 1 0 5041 2025-03-19 05:50:32.659 2025-03-19 05:50:32.659 435046 1428 1 0 5042 2025-03-19 07:50:09.905 2025-03-19 07:50:09.905 435046 1489 1 0 5043 2025-03-19 07:40:01.876 2025-03-19 07:40:01.876 435046 1515 1 0 5044 2025-03-19 05:57:58.096 2025-03-19 05:57:58.096 435046 1552 2 0 5045 2025-03-19 07:08:55.297 2025-03-19 07:08:55.297 435046 1564 1 0 5046 2025-03-19 13:50:07.806 2025-03-19 13:50:07.806 435046 1618 19 0 5047 2025-03-19 07:42:45.986 2025-03-19 07:42:45.986 435046 1692 9 0 5048 2025-03-19 07:08:55.084 2025-03-19 07:08:55.084 435046 1720 1 0 5049 2025-03-19 09:09:33.465 2025-03-19 09:43:39.042 435046 1800 95 0 5050 2025-03-19 07:36:54.534 2025-03-19 07:36:54.534 435046 2022 8 0 5051 2025-03-19 07:40:02.7 2025-03-19 07:40:02.7 435046 2224 5 0 5052 2025-03-19 13:50:07.333 2025-03-19 13:50:07.333 435046 2232 2 0 5053 2025-03-20 04:06:54.652 2025-03-20 04:06:54.652 435046 2513 20 0 5054 2025-03-19 07:40:03.033 2025-03-19 07:40:03.033 435046 2583 1 0 5055 2025-03-19 13:50:07.138 2025-03-19 13:50:07.138 435046 3342 2 0 5056 2025-03-19 13:50:07.138 2025-03-19 13:50:07.138 435046 3347 19 0 5057 2025-03-19 05:49:56.978 2025-03-19 05:49:56.978 435046 3353 3 0 5058 2025-03-20 04:06:56.352 2025-03-20 04:06:56.352 435046 3411 10 0 5059 2025-03-19 06:23:52.401 2025-03-19 06:23:52.401 435046 4083 31 0 5060 2025-03-19 07:08:55.506 2025-03-19 07:08:55.506 435046 4238 0 0 5061 2025-03-19 08:18:12.174 2025-03-19 08:18:12.174 435046 4287 0 0 5062 2025-03-19 09:09:33.465 2025-03-19 09:09:33.465 435046 4378 1 0 5063 2025-03-19 08:53:27.172 2025-03-19 08:53:27.172 435046 4819 19 0 5064 2025-03-19 07:08:54.901 2025-03-19 07:08:54.901 435046 4973 0 0 5065 2025-03-19 07:50:09.905 2025-03-19 07:50:09.905 435046 5578 9 0 5066 2025-03-19 07:40:03.561 2025-03-19 07:40:03.561 435046 5809 1 0 5067 2025-03-19 08:46:08.416 2025-03-19 08:46:08.416 435046 5829 1 0 5068 2025-03-19 08:53:27.172 2025-03-19 08:53:27.172 435046 6419 2 0 5069 2025-03-19 08:47:10.088 2025-03-19 08:47:10.088 435046 6430 2 0 5070 2025-03-19 07:42:45.446 2025-03-19 07:42:45.446 435046 7125 9 0 5071 2025-03-19 05:59:02.876 2025-03-19 05:59:02.876 435046 7376 90 0 5072 2025-03-19 06:04:24.005 2025-03-19 07:50:10.971 435046 7395 15 0 5073 2025-03-19 07:50:09.284 2025-03-19 07:50:09.284 435046 7682 9 0 5074 2025-03-19 05:58:51.084 2025-03-19 08:47:10.088 435046 7766 19 0 5075 2025-03-19 07:40:02.7 2025-03-19 07:40:02.7 435046 7869 1 0 5076 2025-03-19 07:50:10.971 2025-03-19 07:50:10.971 435046 8045 9 0 5077 2025-03-19 05:50:18.706 2025-03-19 05:50:18.706 435046 8059 36 0 5078 2025-03-20 04:06:56.547 2025-03-20 04:06:56.547 435046 8423 1 0 5079 2025-03-19 06:04:24.005 2025-03-19 06:04:24.005 435046 8648 2 0 5080 2025-03-19 05:50:00.431 2025-03-19 05:50:00.431 435046 9166 100 0 5081 2025-03-19 07:50:09.284 2025-03-19 13:50:07.333 435046 9184 20 0 5082 2025-03-19 09:33:21.8 2025-03-19 09:33:21.8 435046 9346 2 0 5083 2025-03-19 09:33:21.8 2025-03-19 09:33:21.8 435046 9969 19 0 5084 2025-03-19 05:59:02.876 2025-03-20 04:06:54.822 435046 10283 811 0 5085 2025-03-19 07:40:02.099 2025-03-19 07:40:02.099 435046 10731 1 0 5086 2025-03-19 16:29:21.829 2025-03-19 16:29:21.829 435046 10818 1 0 5087 2025-03-19 07:39:01.23 2025-03-19 07:39:01.23 435046 10849 1 0 5088 2025-03-19 08:19:55.252 2025-03-19 08:19:55.252 435046 10934 8100 0 5089 2025-03-19 07:40:01.876 2025-03-19 07:40:01.876 435046 10979 5 0 5090 2025-03-19 06:57:40.338 2025-03-19 06:57:40.338 435046 11145 7 0 5091 2025-03-19 06:23:52.401 2025-03-19 06:23:52.401 435046 11165 3 0 5092 2025-03-19 07:08:54.901 2025-03-19 07:08:54.901 435046 11275 1 0 5093 2025-03-19 05:50:32.659 2025-03-19 05:50:32.659 435046 11298 0 0 5094 2025-03-19 17:26:44.077 2025-03-19 17:26:44.077 435046 11395 19 0 5095 2025-03-19 07:08:55.748 2025-03-19 07:08:55.748 435046 11454 1 0 5096 2025-03-19 07:50:11.542 2025-03-19 07:50:11.542 435046 11750 9 0 5097 2025-03-19 06:57:40.522 2025-03-19 06:57:40.522 435046 11866 7 0 5098 2025-03-19 08:39:17.581 2025-03-19 08:39:17.581 435046 11873 3 0 5099 2025-03-19 18:20:15.266 2025-03-19 18:20:15.266 435046 11967 5 0 5100 2025-03-20 03:03:39.254 2025-03-20 03:03:39.254 435046 11999 4 0 5101 2025-03-19 07:50:11.542 2025-03-19 07:50:11.542 435046 12169 1 0 5102 2025-03-19 09:06:10.709 2025-03-19 09:06:10.709 435046 12277 30 0 5103 2025-03-19 06:43:00.082 2025-03-19 06:43:00.082 435046 13217 5 0 5104 2025-03-19 07:40:03.561 2025-03-19 07:40:03.561 435046 13399 5 0 5105 2025-03-19 08:18:11.51 2025-03-19 08:18:11.51 435046 13553 1 0 5106 2025-03-20 04:06:54.652 2025-03-20 04:06:54.652 435046 14785 2 0 5107 2025-03-19 07:40:02.099 2025-03-19 07:40:02.099 435046 14909 5 0 5108 2025-03-19 06:41:15.985 2025-03-19 13:13:30.825 435046 15336 30 0 5109 2025-03-19 12:46:48.04 2025-03-19 12:46:48.04 435046 15488 0 0 5110 2025-03-19 05:50:00.431 2025-03-19 05:50:00.431 435046 15491 900 0 5111 2025-03-19 07:08:55.748 2025-03-19 07:08:55.748 435046 15521 0 0 5112 2025-03-19 06:32:56.116 2025-03-19 06:32:56.116 435046 15560 3 0 5113 2025-03-19 09:06:11.285 2025-03-19 09:06:11.285 435046 15858 3 0 5114 2025-03-19 08:39:17.581 2025-03-19 08:39:17.581 435046 16126 23 0 5115 2025-03-20 04:06:54.961 2025-03-20 04:06:54.961 435046 16145 10 0 5116 2025-03-19 05:58:51.084 2025-03-19 05:58:51.084 435046 16447 1 0 5117 2025-03-19 05:58:51.276 2025-03-19 05:58:51.276 435046 16754 8 0 5118 2025-03-19 06:57:58.496 2025-03-19 06:57:58.496 435046 16769 9 0 5119 2025-03-19 05:44:37.208 2025-03-19 05:44:37.208 435046 17030 420 0 5120 2025-03-19 09:43:39.042 2025-03-19 09:43:39.042 435046 17116 10 0 5121 2025-03-19 08:18:12.174 2025-03-19 08:18:12.174 435046 17162 1 0 5122 2025-03-19 13:50:07.59 2025-03-19 13:50:07.59 435046 17638 19 0 5123 2025-03-19 16:29:21.829 2025-03-19 16:29:21.829 435046 17710 9 0 5124 2025-03-19 05:58:52.085 2025-03-19 05:58:52.085 435046 17797 9 0 5125 2025-03-19 05:57:12.927 2025-03-19 05:57:12.927 435046 17798 19 0 5126 2025-03-19 08:12:29.508 2025-03-19 08:12:29.508 435046 17944 10 0 5127 2025-03-19 08:46:08.416 2025-03-19 08:46:08.416 435046 17984 0 0 5128 2025-03-19 17:26:44.077 2025-03-19 17:26:44.077 435046 18393 2 0 5129 2025-03-19 07:36:54.672 2025-03-19 07:36:54.672 435046 18601 8 0 5130 2025-03-19 07:36:54.057 2025-03-19 07:36:54.057 435046 18615 75 0 5131 2025-03-19 13:50:07.59 2025-03-19 13:50:07.59 435046 18678 2 0 5132 2025-03-19 05:50:18.706 2025-03-19 05:50:18.706 435046 19121 4 0 5133 2025-03-19 12:37:32.841 2025-03-19 12:37:32.841 435046 19403 23 0 5134 2025-03-19 05:49:56.978 2025-03-19 05:49:56.978 435046 19576 27 0 5135 2025-03-19 07:50:10.468 2025-03-19 07:50:10.468 435046 19655 9 0 5136 2025-03-19 09:06:10.709 2025-03-19 09:06:10.709 435046 19663 3 0 5137 2025-03-19 07:36:54.672 2025-03-19 07:36:54.672 435046 19842 75 0 5138 2025-03-19 12:37:33.245 2025-03-19 12:37:33.245 435046 19906 23 0 5139 2025-03-19 06:32:56.116 2025-03-19 06:32:56.116 435046 19930 31 0 5140 2025-03-19 08:39:20.638 2025-03-19 08:39:20.638 435046 19966 3 0 5141 2025-03-19 18:20:15.266 2025-03-19 18:20:15.266 435046 20198 1 0 5142 2025-03-19 12:37:33.245 2025-03-19 12:37:33.245 435046 20205 3 0 5143 2025-03-19 05:58:51.276 2025-03-19 05:58:51.276 435046 20306 1 0 5144 2025-03-19 07:39:01.23 2025-03-19 07:39:01.23 435046 20523 5 0 5145 2025-03-19 07:42:45.986 2025-03-19 07:42:45.986 435046 20602 81 0 5146 2025-03-19 13:50:07.806 2025-03-19 13:50:07.806 435046 20680 2 0 5147 2025-03-19 06:23:50.885 2025-03-19 06:23:50.885 435046 20757 3 0 5148 2025-03-19 06:41:15.985 2025-03-19 06:41:15.985 435046 20768 3 0 5149 2025-03-19 07:40:03.033 2025-03-19 07:40:03.033 435046 20781 5 0 5150 2025-03-19 12:46:48.04 2025-03-19 12:46:48.04 435046 20802 1 0 5151 2025-03-19 06:57:40.338 2025-03-19 06:57:40.338 435046 20891 1 0 5152 2025-03-19 08:12:29.508 2025-03-19 08:12:29.508 435046 21057 90 0 5153 2025-03-19 07:08:55.297 2025-03-19 07:08:55.297 435046 21061 0 0 5154 2025-03-19 06:57:40.522 2025-03-19 06:57:40.522 435046 21140 1 0 5155 2025-03-19 07:36:54.057 2025-03-19 07:36:54.057 435046 21216 8 0 5156 2025-03-19 06:43:00.082 2025-03-19 06:43:00.082 435046 21281 1 0 5157 2025-03-19 09:06:11.285 2025-03-19 09:06:11.285 435046 21296 30 0 5158 2025-03-19 05:58:52.085 2025-03-19 05:58:52.085 435046 21501 81 0 5159 2025-03-19 13:13:30.825 2025-03-19 13:13:30.825 435046 21577 1 0 5160 2025-03-19 07:36:54.534 2025-03-19 07:36:54.534 435046 21603 75 0 5161 2025-03-19 06:23:50.885 2025-03-19 07:08:55.506 435046 21647 32 0 5162 2025-03-19 05:45:47.36 2025-03-19 05:45:47.36 435047 1620 1 0 5163 2025-03-19 05:49:13.401 2025-03-19 05:49:13.401 435048 5377 1 0 5164 2025-03-19 05:49:24.025 2025-03-19 05:49:24.025 435049 17727 1 0 5165 2025-03-19 05:49:47.764 2025-03-19 05:49:47.764 435049 21522 0 0 5166 2025-03-19 05:50:09.958 2025-03-19 05:50:09.958 435050 1425 1 0 5167 2025-03-19 05:50:38.255 2025-03-19 05:50:38.255 435051 805 10 0 5168 2025-03-19 06:32:39.834 2025-03-19 06:32:39.834 435051 5487 0 0 5169 2025-03-19 06:32:39.834 2025-03-19 06:32:39.834 435051 19378 1 0 5170 2025-03-19 05:50:59.142 2025-03-19 05:50:59.142 435052 732 1 0 5171 2025-03-19 06:06:06.34 2025-03-19 06:06:06.34 435053 2329 0 0 5172 2025-03-19 05:51:04.545 2025-03-19 05:51:04.545 435053 5017 10 0 5173 2025-03-19 06:06:06.34 2025-03-19 06:06:06.34 435053 11153 2 0 5174 2025-03-19 05:57:32 2025-03-19 05:57:32 435054 688 3 0 5175 2025-03-19 05:57:32 2025-03-19 05:57:32 435054 5759 29 0 5176 2025-03-19 05:53:29.466 2025-03-19 05:53:29.466 435054 13574 1 0 5177 2025-03-19 05:54:13.587 2025-03-19 05:54:13.587 435055 620 1 0 5178 2025-03-19 05:54:27.996 2025-03-19 05:54:27.996 435056 2460 50 0 5179 2025-03-19 06:11:08.541 2025-03-19 06:11:08.541 435057 795 1 0 5180 2025-03-19 06:11:08.407 2025-03-19 06:11:08.407 435057 9347 1 0 5181 2025-03-19 05:55:11.264 2025-03-19 05:55:11.264 435057 9537 1 0 5182 2025-03-19 06:11:08.407 2025-03-19 06:11:08.407 435057 14168 0 0 5183 2025-03-19 06:11:08.541 2025-03-19 06:11:08.541 435057 16282 8 0 5184 2025-03-19 06:01:42.226 2025-03-19 06:01:42.226 435057 17064 27 0 5185 2025-03-19 06:01:42.226 2025-03-19 06:01:42.226 435057 20310 3 0 5186 2025-03-19 05:56:11.622 2025-03-19 05:56:11.622 435058 1741 1 0 5187 2025-03-19 07:00:48.435 2025-03-19 07:00:48.435 435059 876 30 0 5188 2025-03-19 10:17:54.291 2025-03-19 10:17:54.291 435059 2347 90 0 5189 2025-03-19 07:00:48.435 2025-03-19 07:00:48.435 435059 2609 3 0 5190 2025-03-19 05:56:23.208 2025-03-19 05:56:23.208 435059 2749 1 0 5191 2025-03-19 05:59:10.328 2025-03-19 05:59:10.328 435059 2757 2 0 5192 2025-03-19 05:59:10.328 2025-03-19 05:59:10.328 435059 6463 19 0 5193 2025-03-19 06:44:41.097 2025-03-19 06:44:41.097 435059 9109 1 0 5194 2025-03-19 06:41:59.142 2025-03-19 06:41:59.142 435059 10821 27 0 5195 2025-03-19 06:41:58.703 2025-03-19 06:41:58.703 435059 12220 27 0 5196 2025-03-19 06:44:41.097 2025-03-19 06:44:41.097 435059 17091 5 0 5197 2025-03-19 06:41:58.703 2025-03-19 06:41:58.703 435059 17116 3 0 5198 2025-03-19 10:17:54.291 2025-03-19 10:17:54.291 435059 21148 10 0 5199 2025-03-19 06:41:59.142 2025-03-19 06:41:59.142 435059 21506 243 0 5200 2025-03-19 05:57:27.429 2025-03-19 05:57:27.429 435060 14669 1 0 5201 2025-03-19 06:02:58.299 2025-03-19 06:02:58.299 435061 5427 3 0 5202 2025-03-19 05:57:29.923 2025-03-19 05:57:29.923 435061 11220 1 0 5203 2025-03-19 06:02:58.299 2025-03-19 06:02:58.299 435061 21383 29 0 5204 2025-03-19 06:59:32.338 2025-03-19 06:59:32.338 435063 718 3 0 5205 2025-03-19 06:41:46.085 2025-03-19 06:41:46.085 435063 976 27 0 5206 2025-03-20 07:01:22.274 2025-03-20 07:01:22.274 435063 1425 1 0 5207 2025-03-19 06:41:45.08 2025-03-19 06:41:45.08 435063 1615 27 0 5208 2025-03-20 07:01:20.195 2025-03-20 07:01:20.195 435063 1801 1 0 5209 2025-03-19 06:41:46.085 2025-03-19 06:41:46.085 435063 7673 243 0 5210 2025-03-19 06:59:32.338 2025-03-19 06:59:32.338 435063 8059 30 0 5211 2025-03-20 07:01:22.274 2025-03-20 07:01:22.274 435063 12356 9 0 5212 2025-03-19 06:43:05.608 2025-03-19 06:43:05.608 435063 14657 5 0 5213 2025-03-19 06:07:41.982 2025-03-19 06:07:41.982 435063 15719 19 0 5214 2025-03-19 06:41:45.08 2025-03-19 06:41:45.08 435063 16598 3 0 5215 2025-03-19 06:43:05.608 2025-03-19 06:43:05.608 435063 19512 1 0 5216 2025-03-19 06:07:41.982 2025-03-19 06:07:41.982 435063 19796 2 0 5217 2025-03-20 07:01:20.195 2025-03-20 07:01:20.195 435063 20353 9 0 5218 2025-03-19 05:58:24.622 2025-03-19 05:58:24.622 435063 21514 1 0 5219 2025-03-19 06:21:36.812 2025-03-19 06:21:36.812 435064 965 10 0 5220 2025-03-19 06:21:36.812 2025-03-19 06:21:36.812 435064 12483 90 0 5221 2025-03-19 05:58:40.035 2025-03-19 05:58:40.035 435064 18412 1 0 5222 2025-03-19 07:29:41.556 2025-03-19 07:29:41.556 435065 686 1 0 5223 2025-03-19 05:58:42.268 2025-03-19 05:58:42.268 435065 1692 10 0 5224 2025-03-19 06:25:52.752 2025-03-19 06:25:52.752 435065 7766 3 0 5225 2025-03-19 06:25:52.752 2025-03-19 06:25:52.752 435065 15052 29 0 5226 2025-03-19 06:43:09.078 2025-03-19 06:43:09.078 435065 15549 9 0 5227 2025-03-19 07:29:41.556 2025-03-19 07:29:41.556 435065 15732 9 0 5228 2025-03-19 06:43:09.078 2025-03-19 06:43:09.078 435065 17953 1 0 5229 2025-03-19 06:02:09.453 2025-03-19 06:02:09.453 435066 756 36 0 5230 2025-03-19 05:59:32.757 2025-03-19 05:59:32.757 435066 2670 1 0 5231 2025-03-19 06:02:09.453 2025-03-19 06:02:09.453 435066 4754 4 0 5232 2025-03-19 06:02:48.762 2025-03-19 06:02:48.762 435066 15624 0 0 5233 2025-03-19 06:03:31.605 2025-03-19 06:03:31.605 435066 20776 0 0 5234 2025-03-19 06:01:36.688 2025-03-19 06:01:36.688 435067 11515 1 0 5235 2025-03-19 06:04:57.37 2025-03-19 06:04:57.37 435067 13076 2 0 5236 2025-03-19 06:04:57.37 2025-03-19 06:04:57.37 435067 18772 19 0 5237 2025-03-19 06:01:36.91 2025-03-19 06:01:36.91 435068 15146 1 0 5238 2025-03-19 06:01:38.056 2025-03-19 06:01:38.056 435069 1658 1 0 5239 2025-03-19 17:04:11.825 2025-03-19 17:04:11.825 435069 21216 2 0 5240 2025-03-19 17:04:11.825 2025-03-19 17:04:11.825 435069 21709 19 0 5241 2025-03-19 10:46:45.935 2025-03-19 10:46:45.935 435070 1611 0 0 5242 2025-03-19 10:46:45.935 2025-03-19 10:46:45.935 435070 2514 1 0 5243 2025-03-19 06:02:13.359 2025-03-19 06:02:13.359 435070 11454 1 0 5244 2025-03-19 06:06:03.013 2025-03-19 06:06:03.013 435071 7869 81 0 5245 2025-03-19 06:06:02.397 2025-03-19 06:06:02.397 435071 11018 8 0 5246 2025-03-19 06:06:02.308 2025-03-19 06:06:02.308 435071 15115 1 0 5247 2025-03-19 06:06:02.397 2025-03-19 06:06:02.397 435071 17639 1 0 5248 2025-03-19 06:06:02.308 2025-03-19 06:06:02.308 435071 19494 0 0 5249 2025-03-19 06:06:03.013 2025-03-19 06:06:03.013 435071 20137 9 0 5250 2025-03-19 06:02:53.127 2025-03-19 06:02:53.127 435071 20504 1 0 5251 2025-03-19 12:37:41.617 2025-03-19 12:37:41.617 435072 663 1 0 5252 2025-03-19 06:03:13.79 2025-03-19 06:03:13.79 435072 698 1 0 5253 2025-03-19 06:47:59.102 2025-03-19 06:47:59.102 435072 13759 2 0 5254 2025-03-19 06:47:59.102 2025-03-19 06:47:59.102 435072 20616 19 0 5255 2025-03-19 12:37:41.617 2025-03-19 12:37:41.617 435072 20840 10 0 5256 2025-03-19 07:39:53.848 2025-03-19 07:39:53.848 435073 678 19 0 5257 2025-03-19 06:34:58.349 2025-03-19 06:34:58.349 435073 2703 19 0 5258 2025-03-20 12:19:56.194 2025-03-20 12:19:56.194 435073 11527 10 0 5259 2025-03-20 12:19:56.194 2025-03-20 12:19:56.194 435073 14705 90 0 5260 2025-03-19 06:19:04.016 2025-03-19 06:19:04.016 435073 15060 14 0 5261 2025-03-19 06:34:58.349 2025-03-19 06:34:58.349 435073 16847 2 0 5262 2025-03-19 06:03:22.553 2025-03-19 06:03:22.553 435073 17275 10 0 5263 2025-03-19 06:19:04.016 2025-03-19 06:19:04.016 435073 20222 2 0 5264 2025-03-19 07:39:53.848 2025-03-19 07:39:53.848 435073 21523 2 0 5265 2025-03-19 06:03:39.453 2025-03-19 06:03:39.453 435074 667 1 0 5266 2025-03-19 06:04:30.898 2025-03-19 06:04:30.898 435075 18232 1 0 5267 2025-03-19 07:09:45.38 2025-03-19 07:09:45.38 435075 19966 19 0 5268 2025-03-19 07:09:45.38 2025-03-19 07:09:45.38 435075 21249 2 0 5269 2025-03-19 06:05:42.293 2025-03-19 06:05:42.293 435076 5776 1 0 5270 2025-03-19 06:09:05.261 2025-03-19 06:09:05.261 435076 20377 19 0 5271 2025-03-19 06:09:05.261 2025-03-19 06:09:05.261 435076 21184 2 0 5272 2025-03-19 06:06:14.928 2025-03-19 06:06:14.928 435077 4973 1 0 5273 2025-03-19 06:10:16.71 2025-03-19 06:10:16.71 435077 9276 1 0 5274 2025-03-19 06:10:16.71 2025-03-19 06:10:16.71 435077 15282 7 0 5275 2025-03-19 06:07:06.76 2025-03-19 06:07:06.76 435078 12768 1 0 5276 2025-03-19 06:07:07.509 2025-03-19 06:07:07.509 435079 21498 1 0 5277 2025-03-19 06:11:12.293 2025-03-19 06:11:12.293 435080 5520 115 0 5278 2025-03-19 06:11:12.293 2025-03-19 06:11:12.293 435080 9537 13 0 5279 2025-03-19 06:07:58.903 2025-03-19 06:07:58.903 435080 13162 1 0 5280 2025-03-19 06:08:02.528 2025-03-19 06:08:02.528 435081 2000 1 0 5281 2025-03-19 06:10:13.179 2025-03-19 06:10:13.179 435081 4570 2 0 5282 2025-03-19 06:10:13.179 2025-03-19 06:10:13.179 435081 11527 14 0 5283 2025-03-19 07:03:24.99 2025-03-19 07:03:24.99 435082 876 2 0 5284 2025-03-19 07:03:24.99 2025-03-19 07:03:24.99 435082 1044 19 0 5285 2025-03-19 06:10:14.496 2025-03-19 06:10:14.496 435082 5500 1 0 5286 2025-03-19 06:14:30.335 2025-03-19 06:14:30.335 435083 5495 10 0 5287 2025-03-19 06:16:08.305 2025-03-19 06:16:08.305 435084 1959 1 0 5288 2025-03-19 06:17:47.778 2025-03-19 06:17:47.778 435085 20669 1 0 5289 2025-03-19 19:03:26.001 2025-03-19 19:03:26.001 435086 649 9 0 5290 2025-03-19 06:18:10.016 2025-03-19 06:18:10.016 435086 688 1 0 5291 2025-03-19 18:22:50.417 2025-03-19 18:22:50.417 435086 713 45 0 5292 2025-03-19 16:58:31.508 2025-03-19 16:58:31.508 435086 716 24 0 5293 2025-03-19 18:40:52.361 2025-03-19 18:40:52.361 435086 1007 1 0 5294 2025-03-19 16:58:30.154 2025-03-19 16:58:30.154 435086 1429 3 0 5295 2025-03-19 16:58:31.008 2025-03-19 16:58:31.008 435086 1647 3 0 5296 2025-03-19 18:34:30.491 2025-03-19 18:34:30.491 435086 1769 5 0 5297 2025-03-19 16:58:30.337 2025-03-19 16:58:30.337 435086 2000 3 0 5298 2025-03-19 18:22:49.808 2025-03-19 18:22:49.808 435086 3304 5 0 5299 2025-03-19 17:12:27.73 2025-03-19 17:12:27.73 435086 5694 8 0 5300 2025-03-19 18:22:50.117 2025-03-19 18:22:50.117 435086 5829 5 0 5301 2025-03-19 07:38:40.087 2025-03-19 07:38:40.087 435086 6164 5 0 5302 2025-03-19 07:32:49.321 2025-03-19 07:32:49.321 435086 6573 243 0 5303 2025-03-19 16:58:31.508 2025-03-19 16:58:31.508 435086 7992 3 0 5304 2025-03-19 17:12:27.73 2025-03-19 17:12:27.73 435086 8269 1 0 5305 2025-03-19 18:34:30.491 2025-03-19 18:34:30.491 435086 10719 1 0 5306 2025-03-19 07:32:45.743 2025-03-19 07:32:45.743 435086 10862 3 0 5307 2025-03-19 18:22:50.117 2025-03-19 18:22:50.117 435086 11450 45 0 5308 2025-03-19 09:10:58.817 2025-03-19 09:10:58.817 435086 11515 3 0 5309 2025-03-19 18:40:52.361 2025-03-19 18:40:52.361 435086 12721 5 0 5310 2025-03-19 18:51:25.652 2025-03-19 18:51:25.652 435086 12744 1 0 5311 2025-03-19 16:58:30.513 2025-03-19 16:58:30.513 435086 12779 3 0 5312 2025-03-19 16:58:30.513 2025-03-19 16:58:30.513 435086 13169 24 0 5313 2025-03-19 16:58:30.337 2025-03-19 16:58:30.337 435086 14705 24 0 5314 2025-03-19 07:38:39.8 2025-03-19 07:38:39.8 435086 15484 1 0 5315 2025-03-19 06:18:27.021 2025-03-19 06:18:27.021 435086 16177 0 0 5316 2025-03-19 19:33:02.937 2025-03-19 19:33:02.937 435086 16424 1 0 5317 2025-03-19 16:58:29.962 2025-03-19 16:58:29.962 435086 16598 24 0 5318 2025-03-19 19:03:26.001 2025-03-19 19:03:26.001 435086 16876 1 0 5319 2025-03-19 18:22:49.808 2025-03-19 18:22:49.808 435086 17331 45 0 5320 2025-03-19 19:33:02.937 2025-03-19 19:33:02.937 435086 17455 9 0 5321 2025-03-19 18:22:50.417 2025-03-19 18:22:50.417 435086 20222 5 0 5322 2025-03-19 07:32:45.743 2025-03-19 07:32:45.743 435086 20381 27 0 5323 2025-03-19 18:51:25.652 2025-03-19 18:51:25.652 435086 20433 9 0 5324 2025-03-19 16:58:31.008 2025-03-19 16:58:31.008 435086 20624 24 0 5325 2025-03-19 07:38:40.087 2025-03-19 07:38:40.087 435086 20782 1 0 5326 2025-03-19 17:12:25.862 2025-03-19 17:12:25.862 435086 20871 1 0 5327 2025-03-19 16:58:30.154 2025-03-19 16:58:30.154 435086 21216 24 0 5328 2025-03-19 17:12:25.862 2025-03-19 17:12:25.862 435086 21233 0 0 5329 2025-03-19 16:58:29.962 2025-03-19 16:58:29.962 435086 21398 3 0 5330 2025-03-19 09:10:58.817 2025-03-19 09:10:58.817 435086 21422 30 0 5331 2025-03-19 07:32:49.321 2025-03-19 07:32:49.321 435086 21514 27 0 5332 2025-03-19 07:38:39.8 2025-03-19 07:38:39.8 435086 21771 5 0 5333 2025-03-19 06:21:57.866 2025-03-19 06:21:57.866 435087 4415 0 0 5334 2025-03-19 06:19:38.941 2025-03-19 06:19:38.941 435087 10821 1 0 5335 2025-03-19 06:21:57.866 2025-03-19 06:21:57.866 435087 14213 1 0 5336 2025-03-19 06:20:27.725 2025-03-19 06:20:27.725 435088 9695 1 0 5337 2025-03-19 06:20:51.801 2025-03-19 06:20:51.801 435089 12169 1 0 5338 2025-03-19 06:42:50.648 2025-03-19 06:42:50.648 435089 15762 2 0 5339 2025-03-19 06:42:50.648 2025-03-19 06:42:50.648 435089 19735 19 0 5340 2025-03-19 06:21:27.339 2025-03-19 06:21:27.339 435090 1090 1 0 5341 2025-03-19 06:29:26.491 2025-03-19 06:29:26.491 435091 6393 2 0 5342 2025-03-19 06:29:26.491 2025-03-19 06:29:26.491 435091 12483 19 0 5343 2025-03-19 06:21:36.294 2025-03-19 06:21:36.294 435091 20687 1 0 5344 2025-03-19 06:43:13.843 2025-03-19 06:43:13.843 435092 2326 2 0 5345 2025-03-19 06:21:40.78 2025-03-19 06:21:40.78 435092 4345 1 0 5346 2025-03-19 06:43:13.843 2025-03-19 06:43:13.843 435092 6717 19 0 5347 2025-03-19 06:26:40.147 2025-03-19 06:26:40.147 435092 9262 4 0 5348 2025-03-19 06:26:40.147 2025-03-19 06:26:40.147 435092 21556 36 0 5349 2025-03-19 06:25:03.306 2025-03-19 06:25:03.306 435093 21555 1 0 5350 2025-03-19 06:25:28.145 2025-03-19 06:25:28.145 435094 16348 1 0 5351 2025-03-19 06:25:40.515 2025-03-19 06:25:40.515 435095 631 1 0 5352 2025-03-19 06:26:38.328 2025-03-19 06:26:38.328 435095 678 23 0 5353 2025-03-19 06:26:38.328 2025-03-19 06:26:38.328 435095 749 3 0 5354 2025-03-19 07:01:58.919 2025-03-19 07:01:58.919 435096 4487 0 0 5355 2025-03-19 06:27:04.804 2025-03-19 06:27:04.804 435096 8080 1 0 5356 2025-03-19 07:01:58.919 2025-03-19 07:01:58.919 435096 11158 3 0 5357 2025-03-19 06:29:13.428 2025-03-19 06:29:13.428 435097 683 2 0 5358 2025-03-19 06:36:24.829 2025-03-19 06:36:24.829 435097 684 1 0 5359 2025-03-19 06:36:25.467 2025-03-19 06:36:25.467 435097 762 9 0 5360 2025-03-19 06:36:25.021 2025-03-19 06:36:25.021 435097 1010 9 0 5361 2025-03-19 06:36:25.22 2025-03-19 06:36:25.22 435097 1244 1 0 5362 2025-03-19 06:36:25.021 2025-03-19 06:36:25.021 435097 9177 1 0 5363 2025-03-19 06:36:24.829 2025-03-19 06:36:24.829 435097 10096 9 0 5364 2025-03-19 06:36:24.653 2025-03-19 06:36:24.653 435097 10280 9 0 5365 2025-03-19 06:29:13.428 2025-03-19 06:29:13.428 435097 14990 14 0 5366 2025-03-19 06:36:25.467 2025-03-19 06:36:25.467 435097 18178 1 0 5367 2025-03-19 06:27:38.515 2025-03-19 06:27:38.515 435097 20554 1 0 5368 2025-03-19 06:36:25.22 2025-03-19 06:36:25.22 435097 20755 9 0 5369 2025-03-19 06:36:24.653 2025-03-19 06:36:24.653 435097 21291 1 0 5370 2025-03-19 06:42:33.148 2025-03-19 06:42:33.148 435098 1611 27 0 5371 2025-03-19 10:23:13.251 2025-03-19 10:23:13.251 435098 3417 0 21 5372 2025-03-19 06:42:33.148 2025-03-19 06:42:33.148 435098 12422 3 0 5373 2025-03-19 06:28:21.957 2025-03-19 06:28:21.957 435098 19812 1 0 5374 2025-03-19 06:28:26.881 2025-03-19 06:28:26.881 435099 7983 1 0 5375 2025-03-19 07:04:18.204 2025-03-19 07:04:18.204 435100 632 9 0 5376 2025-03-19 12:20:49.083 2025-03-19 12:20:49.083 435100 679 19 0 5377 2025-03-19 08:54:09.135 2025-03-19 08:54:09.135 435100 794 19 0 5378 2025-03-19 07:41:09.784 2025-03-19 07:41:09.784 435100 837 1 0 5379 2025-03-19 07:04:17.367 2025-03-19 07:04:17.367 435100 1130 0 0 5380 2025-03-19 07:04:17.554 2025-03-19 07:04:17.554 435100 1454 1 0 5381 2025-03-19 07:41:09.221 2025-03-19 07:41:09.221 435100 1515 1 0 5382 2025-03-19 10:28:50.865 2025-03-19 10:28:50.865 435100 1814 19 0 5383 2025-03-19 12:20:49.083 2025-03-19 12:20:49.083 435100 2176 2 0 5384 2025-03-19 08:11:29.694 2025-03-19 08:11:29.694 435100 3353 36 0 5385 2025-03-19 07:04:17.554 2025-03-19 07:04:17.554 435100 3439 8 0 5386 2025-03-19 07:04:17.367 2025-03-19 07:04:17.367 435100 4754 1 0 5387 2025-03-19 07:41:09.221 2025-03-19 07:41:09.221 435100 6555 9 0 5388 2025-03-19 06:28:52.708 2025-03-19 06:28:52.708 435100 7746 5 0 5389 2025-03-19 07:41:09.784 2025-03-19 07:41:09.784 435100 15192 9 0 5390 2025-03-19 07:04:18.204 2025-03-19 07:04:18.204 435100 16562 81 0 5391 2025-03-19 07:16:01.402 2025-03-19 07:16:01.402 435100 17218 2 0 5392 2025-03-19 08:11:29.694 2025-03-19 08:11:29.694 435100 17714 4 0 5393 2025-03-19 10:28:50.865 2025-03-19 10:28:50.865 435100 17797 2 0 5394 2025-03-19 08:22:08.378 2025-03-19 08:22:08.378 435100 20099 1 0 5395 2025-03-19 07:16:01.402 2025-03-19 07:16:01.402 435100 20450 19 0 5396 2025-03-19 08:22:08.378 2025-03-19 08:22:08.378 435100 20963 10 0 5397 2025-03-19 08:54:09.135 2025-03-19 08:54:09.135 435100 21356 2 0 5398 2025-03-19 06:32:02.515 2025-03-19 06:32:02.515 435101 8400 10 0 5399 2025-03-19 06:35:44.653 2025-03-19 06:35:44.653 435101 14122 0 0 5400 2025-03-19 06:34:56.61 2025-03-19 06:34:56.61 435102 4079 2 0 5401 2025-03-19 06:32:14.878 2025-03-19 06:32:14.878 435102 4225 1 0 5402 2025-03-19 06:34:56.61 2025-03-19 06:34:56.61 435102 8841 19 0 5403 2025-03-19 06:33:38.546 2025-03-19 06:33:38.546 435103 1105 2 0 5404 2025-03-19 06:33:38.546 2025-03-19 06:33:38.546 435103 1124 14 0 5405 2025-03-19 06:32:24.219 2025-03-19 06:32:24.219 435103 16042 1 0 5406 2025-03-19 06:32:32.317 2025-03-19 06:32:32.317 435104 10016 1 0 5407 2025-03-19 06:34:36.762 2025-03-19 06:34:36.762 435105 11450 2 0 5408 2025-03-19 06:33:25.343 2025-03-19 06:33:25.343 435105 17519 1 0 5409 2025-03-19 06:34:36.762 2025-03-19 06:34:36.762 435105 20756 14 0 5410 2025-03-19 06:33:35.956 2025-03-19 06:33:35.956 435106 17091 1 0 5411 2025-03-19 06:34:52.999 2025-03-19 06:34:52.999 435107 16684 1 0 5412 2025-03-19 06:35:33.201 2025-03-19 06:35:33.201 435108 21688 1 0 5413 2025-03-19 06:37:56.363 2025-03-19 06:37:56.363 435109 4225 1 0 5414 2025-03-19 07:12:16.792 2025-03-19 07:12:16.792 435109 8423 2 0 5415 2025-03-19 06:39:48.237 2025-03-19 06:39:48.237 435109 14688 0 0 5416 2025-03-19 06:39:40.838 2025-03-19 06:39:40.838 435109 17541 0 0 5417 2025-03-19 07:12:16.792 2025-03-19 07:12:16.792 435109 20504 19 0 5418 2025-03-19 12:23:55.216 2025-03-19 12:23:55.216 435110 1438 90 0 5419 2025-03-19 06:40:46.211 2025-03-19 06:40:46.211 435110 13467 0 0 5420 2025-03-19 06:39:16.266 2025-03-19 06:39:16.266 435110 15273 1 0 5421 2025-03-19 12:23:55.216 2025-03-19 12:23:55.216 435110 21506 10 0 5422 2025-03-19 07:04:27.551 2025-03-19 07:04:27.551 435111 2203 9 0 5423 2025-03-19 06:43:11.366 2025-03-19 06:43:11.366 435111 14774 10 0 5424 2025-03-19 07:04:27.551 2025-03-19 07:04:27.551 435111 21825 1 0 5425 2025-03-19 06:43:23.206 2025-03-19 06:43:23.206 435112 17976 10 0 5426 2025-03-19 06:43:24.145 2025-03-19 06:43:24.145 435113 11862 1 0 5427 2025-03-19 09:27:59.569 2025-03-19 09:27:59.569 435115 687 3 0 5428 2025-03-19 08:54:08.078 2025-03-19 08:54:08.078 435115 695 2 0 5429 2025-03-19 06:58:54.405 2025-03-19 06:58:54.405 435115 760 2 0 5430 2025-03-19 08:20:55.286 2025-03-19 08:20:55.286 435115 761 1 0 5431 2025-03-19 09:47:47.019 2025-03-19 09:47:47.019 435115 798 58 0 5432 2025-03-19 07:58:07.81 2025-03-19 07:58:07.81 435115 965 243 0 5433 2025-03-19 09:05:05.371 2025-03-19 09:05:05.371 435115 976 3 0 5434 2025-03-19 08:54:08.078 2025-03-19 08:54:08.078 435115 1213 19 0 5435 2025-03-19 09:05:06.165 2025-03-19 09:05:06.165 435115 1495 3 0 5436 2025-03-19 06:58:54.405 2025-03-19 06:58:54.405 435115 1584 14 0 5437 2025-03-19 07:58:06.211 2025-03-19 07:58:06.211 435115 2459 27 0 5438 2025-03-19 07:58:06.211 2025-03-19 07:58:06.211 435115 3642 3 0 5439 2025-03-19 06:50:04.945 2025-03-19 06:50:04.945 435115 3729 36 0 5440 2025-03-19 09:05:00.289 2025-03-19 09:05:00.289 435115 4313 30 0 5441 2025-03-19 08:01:08.18 2025-03-19 08:01:08.18 435115 5758 18 0 5442 2025-03-19 08:20:55.286 2025-03-19 08:20:55.286 435115 8508 0 0 5443 2025-03-19 06:50:04.945 2025-03-19 06:50:04.945 435115 8926 4 0 5444 2025-03-19 07:29:38.788 2025-03-19 07:29:38.788 435115 8998 9 0 5445 2025-03-19 09:27:59.569 2025-03-19 09:27:59.569 435115 9820 23 0 5446 2025-03-19 06:54:00.587 2025-03-19 06:54:00.587 435115 10094 3 0 5447 2025-03-19 08:01:08.18 2025-03-19 08:01:08.18 435115 11298 2 0 5448 2025-03-19 06:54:00.587 2025-03-19 06:54:00.587 435115 12935 0 0 5449 2025-03-19 09:05:06.165 2025-03-19 09:05:06.165 435115 13327 30 0 5450 2025-03-19 06:43:28.83 2025-03-19 06:43:28.83 435115 14015 100 0 5451 2025-03-19 07:29:38.788 2025-03-19 07:29:38.788 435115 16747 1 0 5452 2025-03-19 09:47:47.019 2025-03-19 09:47:47.019 435115 20370 6 0 5453 2025-03-19 07:58:07.81 2025-03-19 07:58:07.81 435115 20680 27 0 5454 2025-03-19 09:05:00.289 2025-03-19 09:05:00.289 435115 21136 3 0 5455 2025-03-19 09:05:05.371 2025-03-19 09:05:05.371 435115 21514 30 0 5456 2025-03-19 06:57:06.663 2025-03-19 06:57:06.663 435116 5597 75 0 5457 2025-03-19 06:57:06.663 2025-03-19 06:57:06.663 435116 17030 8 0 5458 2025-03-19 06:45:06.167 2025-03-19 06:45:06.167 435116 17727 1 0 5459 2025-03-19 06:57:05.418 2025-03-19 06:57:05.418 435116 20220 75 0 5460 2025-03-19 06:57:05.418 2025-03-19 06:57:05.418 435116 20891 8 0 5461 2025-03-19 06:47:04.232 2025-03-19 06:47:04.232 435117 8416 1 0 5462 2025-03-19 06:47:16.682 2025-03-19 06:47:16.682 435118 21501 1 0 5463 2025-03-19 06:58:26.933 2025-03-19 06:58:26.933 435119 1319 3 0 5464 2025-03-19 06:58:27.247 2025-03-19 06:58:27.247 435119 4314 27 0 5465 2025-03-19 06:58:26.933 2025-03-19 06:58:26.933 435119 5752 27 0 5466 2025-03-19 06:58:27.247 2025-03-19 06:58:27.247 435119 16638 243 0 5467 2025-03-19 06:47:50.089 2025-03-19 06:47:50.089 435119 20504 1 0 5468 2025-03-19 08:26:42.275 2025-03-19 08:26:42.275 435120 711 81 0 5469 2025-03-19 09:23:42.947 2025-03-19 09:23:42.947 435120 725 1 0 5470 2025-03-19 09:23:42.947 2025-03-19 09:23:42.947 435120 825 9 0 5471 2025-03-19 09:16:38.193 2025-03-19 09:16:38.193 435120 897 2 0 5472 2025-03-19 07:38:12.723 2025-03-19 07:38:12.723 435120 965 75 0 5473 2025-03-19 09:38:49 2025-03-19 09:38:49 435120 1092 19 0 5474 2025-03-19 08:11:32.182 2025-03-19 08:11:32.182 435120 1713 4 0 5475 2025-03-19 09:16:38.193 2025-03-19 09:16:38.193 435120 1769 19 0 5476 2025-03-19 08:26:28.73 2025-03-19 08:26:28.73 435120 2640 1 0 5477 2025-03-19 06:48:03.831 2025-03-19 06:48:03.831 435120 2724 10 0 5478 2025-03-19 07:38:12.723 2025-03-19 07:38:12.723 435120 2734 8 0 5479 2025-03-19 08:44:46.069 2025-03-19 08:44:46.069 435120 4118 9 0 5480 2025-03-19 07:39:13.915 2025-03-19 07:39:13.915 435120 4167 2 0 5481 2025-03-19 08:11:32.182 2025-03-19 08:11:32.182 435120 4378 36 0 5482 2025-03-19 09:06:26.753 2025-03-19 09:06:26.753 435120 7818 30 0 5483 2025-03-19 07:39:13.915 2025-03-19 07:39:13.915 435120 9655 19 0 5484 2025-03-19 08:45:04.884 2025-03-19 08:45:04.884 435120 10821 18 0 5485 2025-03-19 08:53:51.691 2025-03-19 08:53:51.691 435120 10986 2 0 5486 2025-03-19 09:06:26.908 2025-03-19 09:06:26.908 435120 12057 30 0 5487 2025-03-19 09:38:49 2025-03-19 09:38:49 435120 13767 2 0 5488 2025-03-19 09:06:26.753 2025-03-19 09:06:26.753 435120 14607 3 0 5489 2025-03-20 00:21:49.572 2025-03-20 00:21:49.572 435120 15336 1 0 5490 2025-03-19 08:44:46.069 2025-03-19 08:44:46.069 435120 15703 1 0 5491 2025-03-20 00:21:49.572 2025-03-20 00:21:49.572 435120 16432 9 0 5492 2025-03-19 09:06:26.908 2025-03-19 09:06:26.908 435120 17162 3 0 5493 2025-03-19 08:45:04.884 2025-03-19 08:45:04.884 435120 18330 2 0 5494 2025-03-19 08:26:42.275 2025-03-19 08:26:42.275 435120 20802 9 0 5495 2025-03-19 08:26:28.518 2025-03-19 08:26:28.518 435120 21048 0 0 5496 2025-03-19 08:53:51.691 2025-03-19 08:53:51.691 435120 21262 19 0 5497 2025-03-19 08:26:28.73 2025-03-19 08:26:28.73 435120 21501 8 0 5498 2025-03-19 08:26:28.518 2025-03-19 08:26:28.518 435120 21832 1 0 5499 2025-03-19 09:42:39.353 2025-03-19 09:42:39.353 435121 1970 2 0 5500 2025-03-19 06:48:22.329 2025-03-19 06:48:22.329 435121 11298 1 0 5501 2025-03-19 09:42:39.353 2025-03-19 09:42:39.353 435121 21103 19 0 5502 2025-03-19 06:54:56.62 2025-03-19 06:54:56.62 435122 1751 27 0 5503 2025-03-19 06:54:55.235 2025-03-19 06:54:55.235 435122 8469 27 0 5504 2025-03-19 06:54:56.62 2025-03-19 06:54:56.62 435122 12490 243 0 5505 2025-03-19 06:51:29.529 2025-03-19 06:51:29.529 435122 14857 0 0 5506 2025-03-19 06:54:55.235 2025-03-19 06:54:55.235 435122 19292 3 0 5507 2025-03-19 06:50:38.677 2025-03-19 06:50:38.677 435122 21180 1 0 5508 2025-03-19 06:53:52.174 2025-03-19 06:53:52.174 435123 822 1 0 5509 2025-03-19 06:55:46.041 2025-03-19 06:55:46.041 435123 5377 2 0 5510 2025-03-19 06:55:46.041 2025-03-19 06:55:46.041 435123 11523 19 0 5511 2025-03-19 17:11:55.757 2025-03-19 17:11:55.757 435124 9 196 0 5512 2025-03-19 06:54:27.08 2025-03-19 06:54:27.08 435124 1549 1 0 5513 2025-03-19 17:11:55.757 2025-03-19 17:11:55.757 435124 4083 22 0 5514 2025-03-19 07:00:25.938 2025-03-19 07:00:25.938 435124 11454 36 0 5515 2025-03-19 07:00:25.938 2025-03-19 07:00:25.938 435124 13378 4 0 5516 2025-03-19 07:07:44.982 2025-03-19 07:07:44.982 435125 3686 2 0 5517 2025-03-19 22:48:57.212 2025-03-19 22:48:57.212 435125 9833 115 0 5518 2025-03-19 22:48:57.212 2025-03-19 22:48:57.212 435125 15100 13 0 5519 2025-03-19 07:07:44.982 2025-03-19 07:07:44.982 435125 16145 14 0 5520 2025-03-19 06:55:01.361 2025-03-19 06:55:01.361 435125 19375 100 0 5521 2025-03-19 06:55:25.415 2025-03-19 06:55:25.415 435126 21242 1 0 5522 2025-03-19 07:04:59.696 2025-03-19 07:04:59.696 435127 985 3 0 5523 2025-03-19 07:04:59.696 2025-03-19 07:04:59.696 435127 8726 27 0 5524 2025-03-19 12:31:34.412 2025-03-19 12:31:34.412 435127 18265 1 0 5525 2025-03-19 06:55:34.537 2025-03-19 06:55:34.537 435127 19777 1 0 5526 2025-03-19 10:22:57.553 2025-03-19 10:22:57.553 435127 19952 0 21 5527 2025-03-19 12:31:34.412 2025-03-19 12:31:34.412 435127 21766 10 0 5528 2025-03-19 06:56:40.963 2025-03-19 06:56:40.963 435128 12490 10 0 5529 2025-03-19 12:20:42.183 2025-03-19 12:20:42.183 435129 9845 30 0 5530 2025-03-19 12:20:42.183 2025-03-19 12:20:42.183 435129 20599 3 0 5531 2025-03-19 06:56:48.408 2025-03-19 06:56:48.408 435129 21647 1 0 5532 2025-03-19 06:56:55.374 2025-03-19 06:56:55.374 435130 6765 1 0 5533 2025-03-19 12:29:39.635 2025-03-19 12:29:39.635 435131 4395 45 0 5534 2025-03-19 12:29:39.635 2025-03-19 12:29:39.635 435131 21184 5 0 5535 2025-03-19 06:57:36.476 2025-03-19 06:57:36.476 435131 21810 1 0 5536 2025-03-19 07:07:11.04 2025-03-19 07:07:11.04 435132 736 27 0 5537 2025-03-19 07:07:11.04 2025-03-19 07:07:11.04 435132 4084 3 0 5538 2025-03-19 10:37:16.631 2025-03-19 10:37:16.631 435132 5293 0 0 5539 2025-03-19 06:57:43.344 2025-03-19 06:57:43.344 435132 6382 1 0 5540 2025-03-19 07:07:11.869 2025-03-19 07:07:11.869 435132 7389 243 0 5541 2025-03-19 10:37:16.631 2025-03-19 10:37:16.631 435132 9366 1 0 5542 2025-03-19 07:07:11.869 2025-03-19 07:07:11.869 435132 21033 27 0 5543 2025-03-19 14:35:06.371 2025-03-19 14:35:06.371 435133 632 8 0 5544 2025-03-19 14:35:06.109 2025-03-19 14:35:06.109 435133 882 8 0 5545 2025-03-19 07:09:32.881 2025-03-19 07:09:32.881 435133 9378 2 0 5546 2025-03-19 14:35:05.968 2025-03-19 14:35:05.968 435133 14381 75 0 5547 2025-03-19 07:09:32.881 2025-03-19 07:09:32.881 435133 17552 19 0 5548 2025-03-19 14:35:06.371 2025-03-19 14:35:06.371 435133 19217 75 0 5549 2025-03-19 14:35:06.109 2025-03-19 14:35:06.109 435133 19655 75 0 5550 2025-03-19 06:58:49.947 2025-03-19 06:58:49.947 435133 19735 1 0 5551 2025-03-19 14:35:05.968 2025-03-19 14:35:05.968 435133 20551 8 0 5552 2025-03-19 06:59:13.242 2025-03-19 06:59:13.242 435134 20409 1 0 5553 2025-03-19 14:27:38.726 2025-03-19 14:27:38.726 435135 3347 2430 0 5554 2025-03-19 07:53:51.221 2025-03-19 07:53:51.221 435135 3409 19 0 5555 2025-03-19 14:26:59.888 2025-03-19 14:26:59.888 435135 5057 10 0 5556 2025-03-19 07:10:14.752 2025-03-19 07:10:14.752 435135 5173 243 0 5557 2025-03-20 03:04:00.858 2025-03-20 03:04:00.858 435135 9845 38 0 5558 2025-03-19 07:10:14.194 2025-03-19 07:10:14.194 435135 11491 27 0 5559 2025-03-19 14:27:38.726 2025-03-19 14:27:38.726 435135 13767 270 0 5560 2025-03-19 14:26:59.888 2025-03-19 14:26:59.888 435135 15491 90 0 5561 2025-03-20 03:04:00.858 2025-03-20 03:04:00.858 435135 17517 4 0 5562 2025-03-19 07:10:14.752 2025-03-19 07:10:14.752 435135 17535 27 0 5563 2025-03-19 07:00:05.386 2025-03-19 07:00:05.386 435135 17696 0 0 5564 2025-03-19 06:59:18.917 2025-03-19 06:59:18.917 435135 18321 1 0 5565 2025-03-19 07:53:51.221 2025-03-19 07:53:51.221 435135 20433 2 0 5566 2025-03-19 07:10:14.194 2025-03-19 07:10:14.194 435135 21391 3 0 5567 2025-03-19 07:21:13.877 2025-03-19 07:21:13.877 435136 626 2 0 5568 2025-03-19 08:01:09.296 2025-03-19 08:01:09.296 435136 726 1 0 5569 2025-03-19 07:51:13.045 2025-03-19 07:51:13.045 435136 909 2 0 5570 2025-03-19 07:06:51.337 2025-03-19 07:06:51.337 435136 1094 0 0 5571 2025-03-19 09:18:55.597 2025-03-19 09:18:55.597 435136 1411 30 0 5572 2025-03-19 07:51:13.045 2025-03-19 07:51:13.045 435136 1438 19 0 5573 2025-03-19 10:20:04.42 2025-03-19 10:20:04.42 435136 1465 27 0 5574 2025-03-19 09:04:35.204 2025-03-19 09:04:35.204 435136 1519 30 0 5575 2025-03-19 10:38:04.201 2025-03-19 10:38:04.201 435136 1585 10 0 5576 2025-03-19 07:06:51.337 2025-03-19 07:06:51.337 435136 2577 1 0 5577 2025-03-19 08:11:24.496 2025-03-19 08:11:24.496 435136 4345 36 0 5578 2025-03-19 10:28:39.367 2025-03-19 10:28:39.367 435136 4570 2 0 5579 2025-03-19 09:04:33.496 2025-03-19 09:04:33.496 435136 4624 30 0 5580 2025-03-19 10:20:04.89 2025-03-19 10:20:04.89 435136 6777 243 0 5581 2025-03-19 09:04:35.204 2025-03-19 09:04:35.204 435136 12738 3 0 5582 2025-03-19 08:01:09.563 2025-03-19 08:01:09.563 435136 13198 1 0 5583 2025-03-19 07:21:04.102 2025-03-19 07:21:04.102 435136 13566 180 0 5584 2025-03-19 09:04:33.496 2025-03-19 09:04:33.496 435136 14015 3 0 5585 2025-03-19 08:53:57.475 2025-03-19 08:53:57.475 435136 15526 2 0 5586 2025-03-19 08:11:24.496 2025-03-19 08:11:24.496 435136 16301 4 0 5587 2025-03-19 10:38:04.201 2025-03-19 10:38:04.201 435136 16571 1 0 5588 2025-03-19 07:21:13.877 2025-03-19 07:21:13.877 435136 17517 21 0 5589 2025-03-19 10:20:04.42 2025-03-19 10:20:04.42 435136 18557 3 0 5590 2025-03-19 08:03:23.594 2025-03-19 08:03:23.594 435136 18615 3 0 5591 2025-03-19 09:38:56.367 2025-03-19 09:38:56.367 435136 19087 19 0 5592 2025-03-19 07:01:04.331 2025-03-19 07:01:04.331 435136 20220 210 0 5593 2025-03-19 08:01:09.563 2025-03-19 08:01:09.563 435136 20412 9 0 5594 2025-03-19 09:18:55.597 2025-03-19 09:18:55.597 435136 20613 3 0 5595 2025-03-19 07:19:39.085 2025-03-19 07:19:39.085 435136 20619 2 0 5596 2025-03-19 07:06:51.532 2025-03-19 07:06:51.532 435136 20710 8 0 5597 2025-03-19 08:01:09.296 2025-03-19 08:01:09.296 435136 20812 9 0 5598 2025-03-19 08:03:23.594 2025-03-19 08:03:23.594 435136 20826 27 0 5599 2025-03-19 08:53:57.475 2025-03-19 08:53:57.475 435136 20913 19 0 5600 2025-03-19 07:06:51.532 2025-03-19 07:06:51.532 435136 20980 1 0 5601 2025-03-19 07:21:04.102 2025-03-19 07:21:04.102 435136 21184 20 0 5602 2025-03-19 10:28:39.367 2025-03-19 10:28:39.367 435136 21207 19 0 5603 2025-03-19 09:38:56.367 2025-03-19 10:20:04.89 435136 21296 29 0 5604 2025-03-19 07:19:39.085 2025-03-19 07:19:39.085 435136 21803 14 0 5605 2025-03-19 18:25:57.958 2025-03-19 18:25:57.958 435137 18225 19 0 5606 2025-03-19 18:25:57.958 2025-03-19 18:25:57.958 435137 18930 2 0 5607 2025-03-19 07:01:25.701 2025-03-19 07:01:25.701 435137 20646 1 0 5608 2025-03-19 07:01:58.611 2025-03-19 07:01:58.611 435138 12821 1 0 5609 2025-03-19 10:09:48.442 2025-03-19 10:09:48.442 435138 12946 0 0 5610 2025-03-19 10:09:48.442 2025-03-19 10:09:48.442 435138 20481 1 0 5611 2025-03-19 07:02:07.756 2025-03-19 07:02:07.756 435139 657 1 0 5612 2025-03-19 21:24:43.064 2025-03-19 21:24:43.064 435139 19005 36 0 5613 2025-03-19 21:24:43.064 2025-03-19 21:24:43.064 435139 20117 4 0 5614 2025-03-19 21:24:43.449 2025-03-19 21:24:43.449 435139 20205 324 0 5615 2025-03-19 21:24:43.449 2025-03-19 21:24:43.449 435139 21585 36 0 5616 2025-03-19 07:06:21.526 2025-03-19 07:06:21.526 435140 2329 1 0 5617 2025-03-19 07:02:39.414 2025-03-19 07:02:39.414 435140 9906 100 0 5618 2025-03-19 07:06:21.526 2025-03-19 07:06:21.526 435140 20906 9 0 5619 2025-03-19 16:49:19.825 2025-03-19 16:49:19.825 435141 1723 196 0 5620 2025-03-19 11:53:45.457 2025-03-19 11:53:45.457 435141 2010 23 0 5621 2025-03-19 07:03:30.939 2025-03-19 07:03:30.939 435141 10493 1 0 5622 2025-03-19 11:53:45.457 2025-03-19 11:53:45.457 435141 20906 3 0 5623 2025-03-19 16:49:19.825 2025-03-19 16:49:19.825 435141 21222 22 0 5624 2025-03-19 07:08:10.59 2025-03-19 07:08:10.59 435142 688 1 0 5625 2025-03-19 07:37:32.797 2025-03-19 07:37:32.797 435142 730 0 83 5626 2025-03-19 07:20:39.541 2025-03-19 07:20:39.541 435142 937 1 0 5627 2025-03-19 07:08:10.59 2025-03-19 07:08:10.59 435142 998 0 0 5628 2025-03-19 07:20:39.541 2025-03-19 07:20:39.541 435142 12277 7 0 5629 2025-03-19 07:06:32.16 2025-03-19 07:06:32.16 435142 17106 8 0 5630 2025-03-19 07:06:32.16 2025-03-19 07:06:32.16 435142 17212 1 0 5631 2025-03-19 07:06:31.982 2025-03-19 07:06:31.982 435142 20099 1 0 5632 2025-03-19 07:06:31.982 2025-03-19 07:06:31.982 435142 21233 0 0 5633 2025-03-19 07:03:43.349 2025-03-19 07:03:43.349 435143 1130 1 0 5634 2025-03-19 07:04:21.772 2025-03-19 07:04:21.772 435144 3729 10 0 5635 2025-03-19 07:06:59.503 2025-03-19 07:06:59.503 435145 7772 1 0 5636 2025-03-19 07:15:13.067 2025-03-19 07:15:13.067 435146 1114 0 0 5637 2025-03-19 07:15:14.814 2025-03-19 07:15:14.814 435146 1173 4 0 5638 2025-03-19 07:07:40.247 2025-03-19 07:07:40.247 435146 1411 1 0 5639 2025-03-19 07:15:13.577 2025-03-19 07:15:13.577 435146 1836 4 0 5640 2025-03-19 07:15:14.814 2025-03-19 07:15:14.814 435146 7674 0 0 5641 2025-03-19 07:15:13.067 2025-03-19 07:15:13.067 435146 9026 4 0 5642 2025-03-19 07:15:13.898 2025-03-19 07:15:13.898 435146 10007 0 0 5643 2025-03-19 07:15:20.727 2025-03-19 07:15:20.727 435146 13575 0 0 5644 2025-03-19 07:15:13.577 2025-03-19 07:15:13.577 435146 14857 0 0 5645 2025-03-19 07:15:13.736 2025-03-19 07:15:13.736 435146 15843 0 0 5646 2025-03-19 07:15:20.727 2025-03-19 07:15:20.727 435146 16970 4 0 5647 2025-03-19 07:15:13.736 2025-03-19 07:15:13.736 435146 20157 4 0 5648 2025-03-19 07:15:13.898 2025-03-19 07:15:13.898 435146 20586 4 0 5649 2025-03-19 07:08:11.17 2025-03-19 07:08:11.17 435147 1726 1 0 5650 2025-03-19 07:16:07.804 2025-03-19 07:16:07.804 435147 2232 19 0 5651 2025-03-19 07:16:07.804 2025-03-19 07:16:07.804 435147 2329 2 0 5652 2025-03-19 08:35:46.537 2025-03-19 08:35:46.537 435147 10536 3 0 5653 2025-03-19 08:35:46.537 2025-03-19 08:35:46.537 435147 19952 27 0 5654 2025-03-19 07:08:55.826 2025-03-19 07:08:55.826 435148 7772 1 0 5655 2025-03-19 07:13:57.285 2025-03-19 07:13:57.285 435148 11443 29 0 5656 2025-03-19 07:13:57.285 2025-03-19 07:13:57.285 435148 16440 3 0 5657 2025-03-19 07:09:52.442 2025-03-19 07:09:52.442 435149 17991 1 0 5658 2025-03-19 07:27:21.923 2025-03-19 07:27:21.923 435149 18402 3 0 5659 2025-03-19 07:27:21.923 2025-03-19 07:27:21.923 435149 20871 31 0 5660 2025-03-19 07:14:17.376 2025-03-19 07:14:17.376 435150 9 64 0 5661 2025-03-19 07:12:03.157 2025-03-19 07:12:03.157 435150 2748 1 0 5662 2025-03-19 07:14:17.376 2025-03-19 07:14:17.376 435150 18178 7 0 5663 2025-03-19 07:24:34.21 2025-03-19 07:24:34.21 435151 649 81 0 5664 2025-03-19 07:18:37.278 2025-03-19 07:18:37.278 435151 696 4 0 5665 2025-03-19 07:56:22.446 2025-03-19 07:56:22.446 435151 698 30 0 5666 2025-03-19 18:08:28.293 2025-03-19 18:08:28.293 435151 836 90 0 5667 2025-03-19 07:24:33.443 2025-03-19 07:24:33.443 435151 1469 8 0 5668 2025-03-19 07:28:44.332 2025-03-19 07:28:44.332 435151 1519 8 0 5669 2025-03-19 12:19:12.905 2025-03-19 12:19:12.905 435151 1737 2 0 5670 2025-03-19 07:18:37.278 2025-03-19 07:18:37.278 435151 2347 36 0 5671 2025-03-19 07:14:13.954 2025-03-19 07:14:13.954 435151 2514 0 0 5672 2025-03-19 07:12:19.884 2025-03-19 07:12:19.884 435151 3417 1 0 5673 2025-03-19 18:08:28.293 2025-03-19 18:08:28.293 435151 4048 10 0 5674 2025-03-19 07:24:34.21 2025-03-19 07:24:34.21 435151 5578 9 0 5675 2025-03-19 07:24:33.443 2025-03-19 07:24:33.443 435151 5752 1 0 5676 2025-03-19 07:14:13.954 2025-03-19 07:14:13.954 435151 6260 1 0 5677 2025-03-19 07:56:22.446 2025-03-19 07:56:22.446 435151 9332 270 0 5678 2025-03-19 07:24:33.285 2025-03-19 07:24:33.285 435151 11999 1 0 5679 2025-03-19 07:21:39.369 2025-03-19 07:24:33.285 435151 13217 1 0 5680 2025-03-19 07:28:44.332 2025-03-19 07:28:44.332 435151 16351 75 0 5681 2025-03-19 12:19:12.905 2025-03-19 12:19:12.905 435151 16724 19 0 5682 2025-03-19 07:21:39.369 2025-03-19 07:21:39.369 435151 21804 7 0 5683 2025-03-19 07:24:57.401 2025-03-19 07:24:57.401 435152 1478 27 0 5684 2025-03-19 07:25:31.243 2025-03-19 07:25:31.243 435152 4177 27 0 5685 2025-03-19 07:24:57.401 2025-03-19 07:24:57.401 435152 7395 3 0 5686 2025-03-19 07:25:31.243 2025-03-19 07:25:31.243 435152 13566 243 0 5687 2025-03-19 07:12:28.758 2025-03-19 07:12:28.758 435152 21184 1 0 5688 2025-03-19 07:12:45.744 2025-03-19 07:12:45.744 435153 20577 1 0 5689 2025-03-19 13:48:05.909 2025-03-19 13:48:05.909 435154 644 2 0 5690 2025-03-19 07:28:10.745 2025-03-19 09:16:56.877 435154 704 27 0 5691 2025-03-19 07:54:51.076 2025-03-19 07:54:51.076 435154 1046 27 0 5692 2025-03-19 07:29:37.627 2025-03-19 07:29:37.627 435154 1426 1 0 5693 2025-03-19 13:48:04.345 2025-03-19 13:48:04.345 435154 1761 2 0 5694 2025-03-19 13:48:04.345 2025-03-19 13:48:04.345 435154 1772 19 0 5695 2025-03-19 08:33:17.181 2025-03-19 08:33:17.181 435154 2774 1 0 5696 2025-03-19 13:48:04.959 2025-03-19 13:48:04.959 435154 3544 19 0 5697 2025-03-19 07:28:10.595 2025-03-19 07:28:10.595 435154 5112 1 0 5698 2025-03-19 08:33:17.181 2025-03-19 08:33:17.181 435154 5557 9 0 5699 2025-03-19 07:38:49.407 2025-03-19 07:38:49.407 435154 6765 2 0 5700 2025-03-20 03:31:38.265 2025-03-20 03:31:38.265 435154 7746 19 0 5701 2025-03-19 09:16:56.877 2025-03-19 09:16:56.877 435154 9366 2 0 5702 2025-03-19 07:54:53.241 2025-03-19 07:54:53.241 435154 9450 243 0 5703 2025-03-19 15:56:42.343 2025-03-19 15:56:42.343 435154 10283 10 0 5704 2025-03-19 13:48:04.959 2025-03-19 13:48:04.959 435154 10519 2 0 5705 2025-03-19 08:53:59.368 2025-03-19 08:53:59.368 435154 10661 2 0 5706 2025-03-19 13:48:05.909 2025-03-19 13:48:05.909 435154 11220 19 0 5707 2025-03-19 07:28:10.595 2025-03-19 07:28:10.595 435154 11328 0 0 5708 2025-03-19 08:53:59.368 2025-03-19 08:53:59.368 435154 11609 19 0 5709 2025-03-19 08:11:23.175 2025-03-19 08:11:23.175 435154 14909 4 0 5710 2025-03-19 07:54:51.076 2025-03-19 07:54:51.076 435154 15119 3 0 5711 2025-03-19 07:29:37.627 2025-03-19 07:29:37.627 435154 15556 9 0 5712 2025-03-19 15:56:42.343 2025-03-19 15:56:42.343 435154 16942 1 0 5713 2025-03-19 08:01:11.076 2025-03-19 08:01:11.076 435154 17064 1 0 5714 2025-03-19 08:01:10.814 2025-03-19 08:01:10.814 435154 17147 9 0 5715 2025-03-19 07:54:53.241 2025-03-19 07:54:53.241 435154 17517 27 0 5716 2025-03-20 03:31:38.265 2025-03-20 03:31:38.265 435154 18011 2 0 5717 2025-03-19 08:11:23.175 2025-03-19 08:11:23.175 435154 19924 36 0 5718 2025-03-19 07:38:49.407 2025-03-19 07:38:49.407 435154 20073 19 0 5719 2025-03-19 08:01:10.814 2025-03-19 08:01:10.814 435154 20623 1 0 5720 2025-03-19 07:28:10.745 2025-03-19 07:28:10.745 435154 20778 1 0 5721 2025-03-19 07:13:57.23 2025-03-19 07:13:57.23 435154 21249 100 0 5722 2025-03-19 08:01:11.076 2025-03-19 08:01:11.076 435154 21526 9 0 5723 2025-03-19 07:21:03.448 2025-03-19 07:21:03.448 435155 9496 27 0 5724 2025-03-19 07:21:03.448 2025-03-19 07:21:03.448 435155 14258 3 0 5725 2025-03-19 07:14:43.283 2025-03-19 07:14:43.283 435155 19494 1 0 5726 2025-03-19 07:15:11.43 2025-03-19 07:15:11.43 435156 10409 1 0 5727 2025-03-19 07:18:19.937 2025-03-19 07:18:19.937 435157 21207 1 0 5728 2025-03-19 07:18:46.978 2025-03-19 07:18:46.978 435158 756 1 0 5729 2025-03-19 07:24:36.484 2025-03-19 07:24:36.484 435158 10818 1 0 5730 2025-03-19 07:24:36.484 2025-03-19 07:24:36.484 435158 17316 9 0 5731 2025-03-19 11:51:26.39 2025-03-19 11:51:26.39 435159 714 1 0 5732 2025-03-19 12:36:21.04 2025-03-19 12:36:21.04 435159 894 9 0 5733 2025-03-19 11:51:26.39 2025-03-19 11:51:26.39 435159 13547 10 0 5734 2025-03-19 07:19:15.511 2025-03-19 07:19:15.511 435159 17455 1 0 5735 2025-03-19 12:36:21.04 2025-03-19 12:36:21.04 435159 20023 1 0 5736 2025-03-19 07:19:24.05 2025-03-19 07:19:24.05 435160 2342 1 0 5737 2025-03-19 07:19:31.41 2025-03-19 07:19:31.41 435161 12959 1 0 5738 2025-03-19 07:43:14.014 2025-03-19 07:43:14.014 435162 10352 30 0 5739 2025-03-19 07:19:41.427 2025-03-19 07:19:41.427 435162 14910 1 0 5740 2025-03-19 07:43:14.014 2025-03-19 07:43:14.014 435162 15662 3 0 5741 2025-03-19 07:21:11.1 2025-03-19 07:21:11.1 435163 1881 0 0 5742 2025-03-19 07:36:02.485 2025-03-19 07:36:02.485 435163 2502 7 0 5743 2025-03-19 07:20:28.625 2025-03-19 07:20:28.625 435163 21413 1 0 5744 2025-03-19 07:36:02.485 2025-03-19 07:36:02.485 435163 21555 64 0 5745 2025-03-19 07:20:32.413 2025-03-19 07:20:32.413 435164 9438 1 0 5746 2025-03-19 07:20:46.26 2025-03-19 07:20:46.26 435165 16276 100 0 5747 2025-03-19 07:21:10.516 2025-03-19 07:21:10.516 435166 14260 1 0 5748 2025-03-19 08:32:20.514 2025-03-19 08:32:20.514 435167 704 1 0 5749 2025-03-19 07:21:24.957 2025-03-19 07:21:24.957 435167 4250 100 0 5750 2025-03-19 12:49:59.28 2025-03-19 12:49:59.28 435167 18468 9 0 5751 2025-03-19 08:32:20.514 2025-03-19 08:32:20.514 435167 20613 9 0 5752 2025-03-19 12:49:59.28 2025-03-19 12:49:59.28 435167 21794 1 0 5753 2025-03-19 07:21:34.073 2025-03-19 07:21:34.073 435168 1624 1 0 5754 2025-03-19 07:24:35.476 2025-03-19 07:24:35.476 435168 2583 0 0 5755 2025-03-19 07:24:35.612 2025-03-19 07:24:35.612 435168 3686 8 0 5756 2025-03-19 07:24:35.612 2025-03-19 07:24:35.612 435168 5794 1 0 5757 2025-03-19 07:24:35.476 2025-03-19 07:24:35.476 435168 11897 1 0 5758 2025-03-19 07:22:29.596 2025-03-19 07:22:29.596 435169 4768 1 0 5759 2025-03-19 08:10:28.238 2025-03-19 08:10:28.238 435169 12562 0 0 5760 2025-03-19 08:10:28.238 2025-03-19 08:10:28.238 435169 20757 1 0 5761 2025-03-19 07:23:18.061 2025-03-19 07:23:18.061 435170 5500 1 0 5762 2025-03-19 08:32:45.898 2025-03-19 08:32:45.898 435170 9695 1 0 5763 2025-03-19 08:32:45.898 2025-03-19 08:32:45.898 435170 21116 9 0 5764 2025-03-19 09:05:49.24 2025-03-19 09:05:49.24 435171 718 30 0 5765 2025-03-19 08:29:21.197 2025-03-19 08:29:21.197 435171 844 14 0 5766 2025-03-19 08:29:21.197 2025-03-19 08:29:21.197 435171 2492 2 0 5767 2025-03-19 07:23:23.295 2025-03-19 07:23:23.295 435171 4415 1 0 5768 2025-03-19 09:05:52.297 2025-03-19 09:05:52.297 435171 5794 2 0 5769 2025-03-19 18:20:57.973 2025-03-19 18:20:57.973 435171 9366 19 0 5770 2025-03-19 09:05:49.24 2025-03-19 09:05:49.24 435171 10060 3 0 5771 2025-03-19 09:05:48.668 2025-03-19 09:05:48.668 435171 11454 3 0 5772 2025-03-19 18:20:57.973 2025-03-19 18:20:57.973 435171 17541 2 0 5773 2025-03-19 09:05:52.297 2025-03-19 09:05:52.297 435171 17991 15 0 5774 2025-03-19 09:05:48.668 2025-03-19 09:05:48.668 435171 20624 30 0 5775 2025-03-19 07:23:49.96 2025-03-19 07:23:49.96 435172 1044 1 0 5776 2025-03-19 07:24:04.131 2025-03-19 07:24:04.131 435173 20563 1 0 5777 2025-03-19 07:24:06.606 2025-03-19 07:24:06.606 435174 618 1 0 5778 2025-03-19 07:27:51.16 2025-03-19 07:27:51.16 435174 2330 2 0 5779 2025-03-19 07:25:00.598 2025-03-19 07:25:00.598 435174 14731 3 0 5780 2025-03-19 07:25:00.598 2025-03-19 07:25:00.598 435174 16353 0 0 5781 2025-03-19 07:27:51.16 2025-03-19 07:27:51.16 435174 20717 15 0 5782 2025-03-19 07:25:25.176 2025-03-19 07:25:25.176 435176 17148 1 0 5783 2025-03-20 00:21:51.955 2025-03-20 00:21:51.955 435177 634 9 0 5784 2025-03-19 12:28:39.105 2025-03-19 12:28:39.105 435177 794 9 0 5785 2025-03-20 00:21:51.955 2025-03-20 00:21:51.955 435177 976 1 0 5786 2025-03-19 07:25:38.511 2025-03-19 07:25:38.511 435177 2335 1 0 5787 2025-03-19 12:28:39.105 2025-03-19 12:28:39.105 435177 18368 1 0 5788 2025-03-19 10:03:58.503 2025-03-19 10:03:58.503 435177 18734 10 0 5789 2025-03-19 10:03:58.503 2025-03-19 10:03:58.503 435177 21710 1 0 5790 2025-03-19 17:11:28.691 2025-03-19 17:11:28.691 435178 27 1 0 5791 2025-03-20 08:00:14.125 2025-03-20 08:00:14.125 435178 750 1 0 5792 2025-03-19 13:22:57.351 2025-03-19 13:22:57.351 435178 1438 9 0 5793 2025-03-19 17:11:28.691 2025-03-19 17:11:28.691 435178 1585 8 0 5794 2025-03-19 07:25:48.314 2025-03-19 07:25:48.314 435178 2748 1 0 5795 2025-03-19 13:22:57.351 2025-03-19 13:22:57.351 435178 4776 1 0 5796 2025-03-20 08:00:14.125 2025-03-20 08:00:14.125 435178 6555 0 0 5797 2025-03-19 17:11:28.471 2025-03-19 17:11:28.471 435178 16912 1 0 5798 2025-03-19 17:11:28.471 2025-03-19 17:11:28.471 435178 19446 0 0 5799 2025-03-19 07:26:17.632 2025-03-19 07:26:17.632 435179 14195 1 0 5800 2025-03-19 10:36:53.98 2025-03-19 10:36:53.98 435180 679 1 0 5801 2025-03-19 10:36:49.74 2025-03-19 10:36:49.74 435180 712 0 0 5802 2025-03-19 10:36:54.147 2025-03-19 10:36:54.147 435180 987 1 0 5803 2025-03-19 10:36:55.111 2025-03-19 10:36:55.111 435180 2123 1 0 5804 2025-03-19 10:36:54.523 2025-03-19 10:36:54.523 435180 2327 0 0 5805 2025-03-19 10:36:54.335 2025-03-19 10:36:54.335 435180 4862 1 0 5806 2025-03-19 10:36:54.704 2025-03-19 10:36:54.704 435180 7978 1 0 5807 2025-03-19 10:36:54.523 2025-03-19 10:36:54.523 435180 9171 1 0 5808 2025-03-19 10:36:54.883 2025-03-19 10:36:54.883 435180 10493 1 0 5809 2025-03-19 10:36:53.771 2025-03-19 10:36:53.771 435180 11144 1 0 5810 2025-03-19 10:36:54.147 2025-03-19 10:36:54.147 435180 13143 0 0 5811 2025-03-19 07:27:18.798 2025-03-19 07:27:18.798 435180 14255 1 0 5812 2025-03-19 10:36:54.883 2025-03-19 10:36:54.883 435180 16513 0 0 5813 2025-03-19 10:36:53.576 2025-03-19 10:36:53.576 435180 17226 1 0 5814 2025-03-19 10:36:49.74 2025-03-19 10:36:49.74 435180 20102 1 0 5815 2025-03-19 10:36:53.576 2025-03-19 10:36:53.576 435180 20381 0 0 5816 2025-03-19 10:36:55.111 2025-03-19 10:36:55.111 435180 20433 0 0 5817 2025-03-19 10:36:54.704 2025-03-19 10:36:54.704 435180 20599 0 0 5818 2025-03-19 10:36:53.98 2025-03-19 10:36:53.98 435180 20788 0 0 5819 2025-03-19 10:36:54.335 2025-03-19 10:36:54.335 435180 20812 0 0 5820 2025-03-19 10:36:53.771 2025-03-19 10:36:53.771 435180 21804 0 0 5821 2025-03-19 16:57:07.953 2025-03-19 16:57:07.953 435181 720 24 0 5822 2025-03-19 16:57:07.606 2025-03-19 16:57:07.606 435181 1051 24 0 5823 2025-03-19 16:57:07.818 2025-03-19 16:57:07.818 435181 2639 24 0 5824 2025-03-19 16:57:07.953 2025-03-19 16:57:07.953 435181 8059 3 0 5825 2025-03-19 16:57:07.442 2025-03-19 16:57:07.442 435181 9758 24 0 5826 2025-03-19 16:57:07.818 2025-03-19 16:57:07.818 435181 14295 3 0 5827 2025-03-19 16:57:07.442 2025-03-19 16:57:07.442 435181 16769 3 0 5828 2025-03-19 16:57:07.606 2025-03-19 16:57:07.606 435181 18017 3 0 5829 2025-03-19 07:28:09.082 2025-03-19 07:28:09.082 435182 1632 1 0 5830 2025-03-19 07:33:01.741 2025-03-19 07:33:01.741 435183 1769 3 0 5831 2025-03-19 07:28:09.101 2025-03-19 07:28:09.101 435183 3990 1 0 5832 2025-03-19 10:32:35.228 2025-03-19 10:32:35.228 435183 16097 1 0 5833 2025-03-19 07:55:04.748 2025-03-19 07:55:04.748 435183 16847 27 0 5834 2025-03-19 07:55:04.748 2025-03-19 07:55:04.748 435183 20802 3 0 5835 2025-03-19 08:33:25.583 2025-03-19 08:33:25.583 435183 20841 9 0 5836 2025-03-19 07:33:01.741 2025-03-19 07:33:01.741 435183 20904 30 0 5837 2025-03-19 10:32:35.228 2025-03-19 10:32:35.228 435183 20998 0 0 5838 2025-03-19 08:33:25.583 2025-03-19 08:33:25.583 435183 21514 1 0 5839 2025-03-19 08:44:35.377 2025-03-19 08:44:35.377 435184 705 18 0 5840 2025-03-19 08:44:35.377 2025-03-19 08:44:35.377 435184 4314 2 0 5841 2025-03-19 07:29:33.779 2025-03-19 07:29:33.779 435184 16289 100 0 5842 2025-03-19 07:30:02.954 2025-03-19 07:30:02.954 435185 16594 1 0 5843 2025-03-19 07:31:51.198 2025-03-19 07:31:51.198 435186 11417 1 0 5844 2025-03-19 07:32:00.003 2025-03-19 07:32:00.003 435187 21825 1 0 5845 2025-03-19 07:32:25.023 2025-03-19 07:32:25.023 435188 638 1 0 5846 2025-03-19 09:18:07.731 2025-03-19 09:18:07.731 435188 16296 2 0 5847 2025-03-19 09:18:07.731 2025-03-19 09:18:07.731 435188 21406 19 0 5848 2025-03-19 10:42:19.156 2025-03-19 10:42:19.156 435189 642 1 0 5849 2025-03-19 10:42:19.408 2025-03-19 10:42:19.408 435189 656 0 0 5850 2025-03-19 07:38:44.819 2025-03-19 07:38:44.819 435189 761 3 0 5851 2025-03-19 10:42:19.655 2025-03-19 10:42:19.655 435189 794 1 0 5852 2025-03-19 10:42:20.149 2025-03-19 10:42:20.149 435189 859 0 0 5853 2025-03-19 10:42:19.408 2025-03-19 10:42:19.408 435189 902 1 0 5854 2025-03-19 17:22:30.022 2025-03-19 17:22:30.022 435189 1261 22 0 5855 2025-03-19 10:42:20.836 2025-03-19 10:42:20.836 435189 1394 1 0 5856 2025-03-19 10:42:19.908 2025-03-19 10:42:19.908 435189 1567 1 0 5857 2025-03-19 10:42:18.639 2025-03-19 10:42:18.639 435189 5522 1 0 5858 2025-03-19 10:42:19.156 2025-03-19 10:42:19.156 435189 7847 0 0 5859 2025-03-19 10:42:19.908 2025-03-19 10:42:19.908 435189 8472 0 0 5860 2025-03-19 10:42:20.959 2025-03-19 10:42:20.959 435189 8954 0 0 5861 2025-03-19 10:42:20.411 2025-03-19 10:42:20.411 435189 9347 1 0 5862 2025-03-19 10:42:18.639 2025-03-19 10:42:18.639 435189 10979 0 0 5863 2025-03-19 10:42:20.149 2025-03-19 10:42:20.149 435189 11523 1 0 5864 2025-03-19 07:32:44.503 2025-03-19 07:32:44.503 435189 11992 1 0 5865 2025-03-19 07:38:48.889 2025-03-19 07:38:48.889 435189 13249 243 0 5866 2025-03-19 10:42:20.411 2025-03-19 10:42:20.411 435189 15474 0 0 5867 2025-03-19 17:22:30.022 2025-03-19 17:22:30.022 435189 16966 196 0 5868 2025-03-19 10:42:20.836 2025-03-19 10:42:20.836 435189 17392 0 0 5869 2025-03-19 10:42:18.904 2025-03-19 10:42:18.904 435189 17638 1 0 5870 2025-03-19 10:42:19.655 2025-03-19 10:42:19.655 435189 17639 0 0 5871 2025-03-19 07:38:48.889 2025-03-19 07:38:48.889 435189 18274 27 0 5872 2025-03-19 10:42:18.904 2025-03-19 10:42:18.904 435189 20439 0 0 5873 2025-03-19 10:42:20.959 2025-03-19 10:42:20.959 435189 21402 1 0 5874 2025-03-19 07:38:44.819 2025-03-19 07:38:44.819 435189 21424 27 0 5875 2025-03-19 10:32:58.734 2025-03-19 10:32:58.734 435190 1490 0 0 5876 2025-03-19 08:33:36.385 2025-03-19 08:33:36.385 435190 2952 1 0 5877 2025-03-19 07:32:46.748 2025-03-19 07:32:46.748 435190 6229 1 0 5878 2025-03-19 08:33:36.385 2025-03-19 08:33:36.385 435190 16259 9 0 5879 2025-03-19 07:32:59.115 2025-03-19 07:32:59.115 435190 20059 0 0 5880 2025-03-19 10:32:58.734 2025-03-19 10:32:58.734 435190 20481 1 0 5881 2025-03-19 07:32:50.535 2025-03-19 07:32:50.535 435191 9418 1 0 5882 2025-03-19 07:38:31.999 2025-03-19 07:38:31.999 435192 1761 243 0 5883 2025-03-19 07:32:56.008 2025-03-19 07:32:56.008 435192 9695 1 0 5884 2025-03-19 07:38:29.367 2025-03-19 07:38:29.367 435192 11829 27 0 5885 2025-03-19 07:38:31.999 2025-03-19 07:38:31.999 435192 12769 27 0 5886 2025-03-19 07:38:29.367 2025-03-19 07:38:29.367 435192 20606 3 0 5887 2025-03-19 07:40:08.763 2025-03-19 07:40:08.763 435193 6555 2 0 5888 2025-03-19 07:33:45.016 2025-03-19 07:33:45.016 435193 8045 1 0 5889 2025-03-19 07:40:08.465 2025-03-19 07:40:08.465 435193 9184 2 0 5890 2025-03-19 07:40:08.465 2025-03-19 07:40:08.465 435193 16356 21 0 5891 2025-03-19 07:40:08.763 2025-03-19 07:40:08.763 435193 17519 21 0 5892 2025-03-19 07:40:08.614 2025-03-19 07:40:08.614 435193 17673 21 0 5893 2025-03-19 07:40:08.861 2025-03-19 07:40:08.861 435193 20799 2 0 5894 2025-03-19 07:40:08.614 2025-03-19 07:40:08.614 435193 21060 2 0 5895 2025-03-19 07:40:08.861 2025-03-19 07:40:08.861 435193 21482 21 0 5896 2025-03-19 07:35:02.489 2025-03-19 07:35:02.489 435194 9356 1 0 5897 2025-03-19 08:33:45.753 2025-03-19 08:33:45.753 435195 1801 9 0 5898 2025-03-19 07:35:15.731 2025-03-19 07:35:15.731 435195 2942 1 0 5899 2025-03-19 07:42:14.042 2025-03-19 07:42:14.042 435195 19569 30 0 5900 2025-03-19 08:33:45.753 2025-03-19 08:33:45.753 435195 19796 1 0 5901 2025-03-19 07:42:14.042 2025-03-19 07:42:14.042 435195 20647 3 0 5902 2025-03-19 17:12:33.21 2025-03-19 17:12:33.21 435196 1030 1 0 5903 2025-03-19 09:11:44.054 2025-03-19 09:11:44.054 435196 1272 30 0 5904 2025-03-19 07:35:44.837 2025-03-19 07:35:44.837 435196 2065 1 0 5905 2025-03-19 07:36:28.47 2025-03-19 07:36:28.47 435196 2718 36 0 5906 2025-03-19 19:36:31.771 2025-03-19 19:36:31.771 435196 8729 9 0 5907 2025-03-19 07:36:28.809 2025-03-19 07:36:28.809 435196 9450 36 0 5908 2025-03-19 07:36:29.048 2025-03-19 07:36:29.048 435196 10007 36 0 5909 2025-03-19 07:36:28.809 2025-03-19 07:36:28.809 435196 15521 4 0 5910 2025-03-19 07:36:28.47 2025-03-19 07:36:28.47 435196 17030 4 0 5911 2025-03-19 07:36:29.048 2025-03-19 07:36:29.048 435196 20073 4 0 5912 2025-03-19 09:11:44.054 2025-03-19 09:11:44.054 435196 20811 3 0 5913 2025-03-19 17:12:33.21 2025-03-19 17:12:33.21 435196 21482 9 0 5914 2025-03-19 19:36:31.771 2025-03-19 19:36:31.771 435196 21734 1 0 5915 2025-03-19 07:36:16.263 2025-03-19 07:36:16.263 435197 1519 1 0 5916 2025-03-19 16:57:22.318 2025-03-19 16:57:22.318 435198 1469 3 0 5917 2025-03-19 16:57:21.619 2025-03-19 16:57:21.619 435198 1478 24 0 5918 2025-03-19 07:38:17.57 2025-03-19 07:38:17.57 435198 4035 1 0 5919 2025-03-19 16:57:21.619 2025-03-19 16:57:21.619 435198 16387 3 0 5920 2025-03-19 16:57:21.442 2025-03-19 16:57:21.442 435198 18351 24 0 5921 2025-03-19 16:57:21.991 2025-03-19 16:57:21.991 435198 18608 3 0 5922 2025-03-19 16:57:21.442 2025-03-19 16:57:21.442 435198 19668 3 0 5923 2025-03-19 16:57:22.318 2025-03-19 16:57:22.318 435198 20754 24 0 5924 2025-03-19 16:57:21.991 2025-03-19 16:57:21.991 435198 21033 24 0 5925 2025-03-19 07:43:36.967 2025-03-19 07:43:36.967 435199 3504 1 0 5926 2025-03-19 12:22:45.401 2025-03-19 12:22:45.401 435199 11819 10 0 5927 2025-03-19 07:43:36.967 2025-03-19 07:43:36.967 435199 13467 9 0 5928 2025-03-19 07:43:36.911 2025-03-19 07:43:36.911 435199 15115 9 0 5929 2025-03-19 07:38:42.614 2025-03-19 07:38:42.614 435199 21041 100 0 5930 2025-03-19 07:43:36.911 2025-03-19 07:43:36.911 435199 21239 1 0 5931 2025-03-19 12:22:45.401 2025-03-19 12:22:45.401 435199 21585 90 0 5932 2025-03-19 07:41:43.408 2025-03-19 07:41:43.408 435200 617 27 0 5933 2025-03-19 12:35:55.904 2025-03-19 12:35:55.904 435200 8380 23 0 5934 2025-03-19 07:42:20.097 2025-03-19 07:42:20.097 435200 13878 2 0 5935 2025-03-19 07:41:42.584 2025-03-19 07:41:42.584 435200 16267 3 0 5936 2025-03-19 07:41:42.584 2025-03-19 07:41:42.584 435200 16447 27 0 5937 2025-03-19 07:41:43.408 2025-03-19 07:41:43.408 435200 19537 243 0 5938 2025-03-19 12:35:55.904 2025-03-19 12:35:55.904 435200 20495 3 0 5939 2025-03-19 07:42:20.097 2025-03-19 07:42:20.097 435200 20597 19 0 5940 2025-03-19 07:39:47.912 2025-03-19 07:39:47.912 435200 20939 1 0 5941 2025-03-19 08:25:17.165 2025-03-19 08:25:17.165 435201 2674 0 100 5942 2025-03-19 07:40:09.265 2025-03-19 07:40:09.265 435201 19689 10 0 5943 2025-03-19 07:40:33.305 2025-03-19 07:40:33.305 435202 5175 1 0 5944 2025-03-19 07:40:57.686 2025-03-19 07:40:57.686 435203 20222 1 0 5945 2025-03-19 07:41:36.127 2025-03-19 07:41:36.127 435204 16301 1 0 5946 2025-03-19 07:41:46.524 2025-03-19 07:41:46.524 435205 13753 10 0 5947 2025-03-19 08:03:12.463 2025-03-19 08:03:12.463 435206 986 4 0 5948 2025-03-19 08:03:12.463 2025-03-19 08:03:12.463 435206 4487 36 0 5949 2025-03-19 08:33:47.637 2025-03-19 08:33:47.637 435206 9820 9 0 5950 2025-03-19 08:33:47.637 2025-03-19 08:33:47.637 435206 15196 1 0 5951 2025-03-19 07:42:12.011 2025-03-19 07:42:12.011 435206 15526 0 0 5952 2025-03-19 07:41:56.329 2025-03-19 07:41:56.329 435206 21734 1 0 5953 2025-03-19 07:42:05.721 2025-03-19 07:42:05.721 435207 622 100 0 5954 2025-03-19 07:44:09.422 2025-03-19 07:44:09.422 435207 20745 0 0 5955 2025-03-19 07:43:08.26 2025-03-19 07:43:08.26 435208 14295 1 0 5956 2025-03-19 11:46:56.426 2025-03-19 11:46:56.426 435209 6149 9 0 5957 2025-03-19 07:49:35.471 2025-03-19 07:49:35.471 435209 10398 27 0 5958 2025-03-19 07:49:36.761 2025-03-19 07:49:36.761 435209 10611 243 0 5959 2025-03-19 07:49:35.471 2025-03-19 07:49:35.471 435209 15544 3 0 5960 2025-03-19 11:46:56.426 2025-03-19 11:46:56.426 435209 19854 1 0 5961 2025-03-19 07:45:13.96 2025-03-19 07:45:13.96 435209 21042 1 0 5962 2025-03-19 07:49:36.761 2025-03-19 07:49:36.761 435209 21442 27 0 5963 2025-03-19 12:20:36.012 2025-03-19 12:20:36.012 435210 636 3 0 5964 2025-03-19 12:20:36.012 2025-03-19 12:20:36.012 435210 2722 30 0 5965 2025-03-19 07:46:51.872 2025-03-19 07:46:51.872 435210 4378 1 0 5966 2025-03-19 07:48:11.842 2025-03-19 07:48:11.842 435211 21014 1 0 5967 2025-03-19 07:48:42.436 2025-03-19 07:48:42.436 435212 6578 1 0 5968 2025-03-19 10:21:36.44 2025-03-19 10:21:36.44 435213 1092 19 0 5969 2025-03-19 11:46:48.167 2025-03-19 11:46:48.167 435213 2789 1 0 5970 2025-03-19 07:50:39.513 2025-03-19 07:50:39.513 435213 3686 27 0 5971 2025-03-19 07:50:38.813 2025-03-19 07:50:38.813 435213 5519 3 0 5972 2025-03-19 10:21:36.44 2025-03-19 10:21:36.44 435213 8289 2 0 5973 2025-03-19 07:50:38.813 2025-03-19 07:50:38.813 435213 10096 27 0 5974 2025-03-19 07:50:39.513 2025-03-19 07:50:39.513 435213 11314 243 0 5975 2025-03-19 11:46:48.167 2025-03-19 11:46:48.167 435213 16513 9 0 5976 2025-03-19 07:49:05.636 2025-03-19 07:49:05.636 435213 20811 1 0 5977 2025-03-19 07:53:08.927 2025-03-19 07:53:08.927 435214 697 27 0 5978 2025-03-19 09:44:23.465 2025-03-19 09:44:23.465 435214 10283 19 0 5979 2025-03-19 07:53:08.927 2025-03-19 07:53:08.927 435214 12097 3 0 5980 2025-03-19 09:44:23.465 2025-03-19 09:44:23.465 435214 17082 2 0 5981 2025-03-19 07:49:36.468 2025-03-19 07:49:36.468 435214 20225 1 0 5982 2025-03-19 07:49:58.78 2025-03-19 07:49:58.78 435215 3745 1 0 5983 2025-03-19 07:51:25.946 2025-03-19 07:51:25.946 435216 622 1 0 5984 2025-03-19 08:51:46.623 2025-03-19 08:51:46.623 435217 629 81 0 5985 2025-03-19 21:07:54.983 2025-03-19 21:07:54.983 435217 679 0 0 5986 2025-03-19 10:30:16.357 2025-03-19 10:30:16.357 435217 700 1 0 5987 2025-03-19 09:02:49.828 2025-03-19 09:02:49.828 435217 746 30 0 5988 2025-03-19 13:14:53.353 2025-03-19 13:14:53.353 435217 749 27 0 5989 2025-03-19 18:24:46.867 2025-03-19 18:24:46.867 435217 787 45 0 5990 2025-03-19 09:02:49.657 2025-03-19 09:02:49.657 435217 822 3 0 5991 2025-03-20 00:20:59.329 2025-03-20 00:20:59.329 435217 989 1 0 5992 2025-03-19 14:49:08.635 2025-03-19 14:49:08.635 435217 1038 3 0 5993 2025-03-19 12:44:48.158 2025-03-19 12:44:48.158 435217 1051 3 0 5994 2025-03-19 19:03:06.053 2025-03-19 19:03:06.053 435217 1438 1 0 5995 2025-03-19 11:38:47.831 2025-03-19 11:38:47.831 435217 1469 7 0 5996 2025-03-19 08:51:45.929 2025-03-19 08:51:45.929 435217 1705 8 0 5997 2025-03-19 21:07:54.983 2025-03-19 21:07:54.983 435217 1959 1 0 5998 2025-03-19 21:07:54.973 2025-03-19 21:07:54.973 435217 2013 0 0 5999 2025-03-19 09:37:43.057 2025-03-19 09:37:43.057 435217 2361 8 0 6000 2025-03-19 14:49:08.66 2025-03-19 14:49:08.66 435217 2741 31 0 6001 2025-03-20 00:20:46.282 2025-03-20 00:20:46.282 435217 2773 1 0 6002 2025-03-19 09:48:32.133 2025-03-19 09:48:32.133 435217 3400 2 0 6003 2025-03-20 08:58:21.862 2025-03-20 08:58:21.862 435217 4035 90 0 6004 2025-03-19 08:51:45.712 2025-03-19 08:51:45.712 435217 5017 0 0 6005 2025-03-19 07:52:00.157 2025-03-19 07:52:00.157 435217 5129 210 0 6006 2025-03-19 18:34:54.494 2025-03-19 18:34:54.494 435217 5757 1 0 6007 2025-03-19 08:29:08.943 2025-03-19 08:29:08.943 435217 5852 1 0 6008 2025-03-19 07:57:08.685 2025-03-19 07:57:08.685 435217 6030 0 0 6009 2025-03-19 07:57:31.483 2025-03-19 07:57:31.483 435217 6202 0 0 6010 2025-03-19 08:54:38.553 2025-03-19 08:54:38.553 435217 6471 19 0 6011 2025-03-19 14:49:08.66 2025-03-19 14:49:08.66 435217 6537 3 0 6012 2025-03-19 13:14:50.587 2025-03-19 13:14:50.587 435217 6578 3 0 6013 2025-03-19 13:14:53.353 2025-03-19 13:14:53.353 435217 6602 243 0 6014 2025-03-19 08:51:46.623 2025-03-19 08:51:46.623 435217 6741 9 0 6015 2025-03-19 13:51:47.461 2025-03-19 13:51:47.461 435217 7583 19 0 6016 2025-03-19 19:30:07.283 2025-03-19 19:30:07.283 435217 7667 9 0 6017 2025-03-19 11:37:20.761 2025-03-19 11:37:20.761 435217 7809 1 0 6018 2025-03-19 10:37:09.71 2025-03-19 10:37:09.71 435217 7869 90 0 6019 2025-03-19 10:30:16.357 2025-03-19 10:30:16.357 435217 7891 0 0 6020 2025-03-19 10:11:30.43 2025-03-19 10:11:30.43 435217 8037 1 0 6021 2025-03-19 09:59:49.72 2025-03-19 09:59:49.72 435217 8059 10 0 6022 2025-03-19 07:55:08.457 2025-03-19 07:55:08.457 435217 8176 2 0 6023 2025-03-19 10:24:35.999 2025-03-19 10:24:35.999 435217 8287 2 0 6024 2025-03-19 10:37:09.71 2025-03-19 10:37:09.71 435217 9356 810 0 6025 2025-03-19 12:44:48.158 2025-03-19 12:44:48.158 435217 9655 30 0 6026 2025-03-19 17:26:49.634 2025-03-19 17:26:49.634 435217 9843 2 0 6027 2025-03-19 21:07:53.609 2025-03-19 21:07:53.609 435217 9863 0 0 6028 2025-03-19 19:03:06.053 2025-03-19 19:03:06.053 435217 10102 9 0 6029 2025-03-19 08:03:44.559 2025-03-19 08:03:44.559 435217 10280 0 0 6030 2025-03-19 21:08:00.061 2025-03-19 21:08:00.061 435217 10291 1 0 6031 2025-03-19 09:48:32.133 2025-03-19 09:48:32.133 435217 10554 19 0 6032 2025-03-19 11:37:20.761 2025-03-19 11:37:20.761 435217 10981 9 0 6033 2025-03-19 14:49:08.635 2025-03-19 14:49:08.635 435217 11153 31 0 6034 2025-03-19 09:37:41.899 2025-03-19 09:37:41.899 435217 11454 8 0 6035 2025-03-19 21:07:54.973 2025-03-19 21:07:54.973 435217 11561 1 0 6036 2025-03-19 21:07:54.901 2025-03-19 21:07:54.901 435217 11609 1 0 6037 2025-03-19 22:16:04.447 2025-03-19 22:16:04.447 435217 11670 2 0 6038 2025-03-19 08:51:45.712 2025-03-19 08:51:45.712 435217 12356 1 0 6039 2025-03-19 11:38:47.831 2025-03-19 11:38:47.831 435217 12656 1 0 6040 2025-03-19 10:24:35.999 2025-03-19 10:24:35.999 435217 12911 19 0 6041 2025-03-19 09:02:50.037 2025-03-19 09:37:43.057 435217 13575 104 0 6042 2025-03-19 09:02:49.828 2025-03-19 10:32:46.802 435217 14260 6 0 6043 2025-03-19 10:43:54.776 2025-03-19 10:43:54.776 435217 14404 9 0 6044 2025-03-19 21:07:57.868 2025-03-19 21:07:57.868 435217 14705 1 0 6045 2025-03-19 08:54:38.553 2025-03-19 08:54:38.553 435217 14857 2 0 6046 2025-03-19 10:11:30.43 2025-03-19 10:11:30.43 435217 15367 9 0 6047 2025-03-19 21:07:54.921 2025-03-19 21:07:54.921 435217 15409 0 0 6048 2025-03-19 18:24:47.657 2025-03-19 18:24:47.657 435217 16176 45 0 6049 2025-03-19 09:37:41.899 2025-03-19 09:37:41.899 435217 16193 75 0 6050 2025-03-19 19:30:07.283 2025-03-19 19:30:07.283 435217 16556 1 0 6051 2025-03-19 18:50:41.938 2025-03-19 18:50:41.938 435217 16670 1 0 6052 2025-03-19 09:59:49.72 2025-03-19 09:59:49.72 435217 16679 1 0 6053 2025-03-19 21:07:53.609 2025-03-19 21:07:53.609 435217 16842 1 0 6054 2025-03-19 09:02:50.037 2025-03-19 09:02:50.037 435217 16876 3 0 6055 2025-03-19 21:07:54.901 2025-03-19 21:07:54.901 435217 17064 0 0 6056 2025-03-19 14:49:07.279 2025-03-19 14:49:07.279 435217 17157 3 0 6057 2025-03-19 08:29:08.943 2025-03-19 08:29:08.943 435217 17171 9 0 6058 2025-03-19 14:49:07.279 2025-03-19 14:49:07.279 435217 17209 31 0 6059 2025-03-19 21:07:57.868 2025-03-19 21:07:57.868 435217 17713 0 0 6060 2025-03-19 13:14:50.587 2025-03-19 13:14:50.587 435217 17838 27 0 6061 2025-03-19 09:02:49.657 2025-03-19 09:02:49.657 435217 18005 30 0 6062 2025-03-19 12:56:08.122 2025-03-19 12:56:08.122 435217 18673 2 0 6063 2025-03-19 18:34:54.494 2025-03-19 18:34:54.494 435217 19735 5 0 6064 2025-03-19 18:24:47.657 2025-03-19 18:24:47.657 435217 19863 5 0 6065 2025-03-19 07:55:08.457 2025-03-19 07:55:08.457 435217 20409 19 0 6066 2025-03-19 22:16:04.447 2025-03-19 22:16:04.447 435217 20412 19 0 6067 2025-03-19 18:50:41.938 2025-03-19 18:50:41.938 435217 20450 9 0 6068 2025-03-19 08:03:44.559 2025-03-19 08:03:44.559 435217 20562 1 0 6069 2025-03-20 00:20:59.329 2025-03-20 00:20:59.329 435217 20597 9 0 6070 2025-03-19 10:47:28.767 2025-03-19 10:47:28.767 435217 20775 36 0 6071 2025-03-19 18:24:46.867 2025-03-19 18:24:46.867 435217 20799 5 0 6072 2025-03-19 21:08:00.061 2025-03-19 21:08:00.061 435217 20812 0 0 6073 2025-03-20 08:58:21.862 2025-03-20 08:58:21.862 435217 20904 10 0 6074 2025-03-19 10:43:54.776 2025-03-19 10:43:54.776 435217 20906 1 0 6075 2025-03-19 07:52:57.29 2025-03-19 07:52:57.29 435217 20993 0 0 6076 2025-03-19 17:26:49.634 2025-03-19 17:26:49.634 435217 21238 19 0 6077 2025-03-19 21:07:54.921 2025-03-19 21:07:54.921 435217 21263 1 0 6078 2025-03-19 12:56:08.122 2025-03-19 12:56:08.122 435217 21296 19 0 6079 2025-03-19 13:51:47.461 2025-03-19 13:51:47.461 435217 21356 2 0 6080 2025-03-19 08:51:45.929 2025-03-20 00:20:46.282 435217 21412 10 0 6081 2025-03-19 10:47:28.767 2025-03-19 10:47:28.767 435217 21522 4 0 6082 2025-03-19 10:32:46.802 2025-03-19 10:32:46.802 435217 21547 27 0 6083 2025-03-19 07:52:04.601 2025-03-19 07:52:04.601 435218 21412 1 0 6084 2025-03-19 07:52:33.434 2025-03-19 07:52:33.434 435219 13216 1 0 6085 2025-03-19 08:03:42.226 2025-03-19 08:03:42.226 435220 687 2 0 6086 2025-03-19 07:53:40.942 2025-03-19 07:53:40.942 435220 780 1 0 6087 2025-03-19 08:00:44.688 2025-03-19 08:00:44.688 435220 985 135 0 6088 2025-03-19 07:54:22.562 2025-03-19 07:54:22.562 435220 1615 243 0 6089 2025-03-19 07:54:22.112 2025-03-19 07:54:22.112 435220 1697 27 0 6090 2025-03-19 08:03:42.226 2025-03-19 08:03:42.226 435220 2492 19 0 6091 2025-03-19 09:44:31.728 2025-03-19 09:44:31.728 435220 4602 2 0 6092 2025-03-19 07:54:22.112 2025-03-19 07:54:22.112 435220 12368 3 0 6093 2025-03-19 09:44:31.728 2025-03-19 09:44:31.728 435220 14271 19 0 6094 2025-03-19 07:54:22.562 2025-03-19 07:54:22.562 435220 15146 27 0 6095 2025-03-19 08:00:44.688 2025-03-19 08:00:44.688 435220 16513 15 0 6096 2025-03-19 08:00:15.363 2025-03-19 08:00:15.363 435221 882 9 0 6097 2025-03-19 08:00:15.059 2025-03-19 08:00:15.059 435221 4378 1 0 6098 2025-03-19 08:00:14.763 2025-03-19 08:00:14.763 435221 10311 1 0 6099 2025-03-19 08:00:14.08 2025-03-19 08:00:14.08 435221 12049 9 0 6100 2025-03-19 08:00:15.363 2025-03-19 08:00:15.363 435221 14385 1 0 6101 2025-03-19 07:54:03.85 2025-03-19 07:54:03.85 435221 19459 1 0 6102 2025-03-19 08:00:14.08 2025-03-19 08:00:14.08 435221 19524 1 0 6103 2025-03-19 08:00:13.386 2025-03-19 08:00:13.386 435221 20495 1 0 6104 2025-03-19 08:00:13.386 2025-03-19 08:00:13.386 435221 20892 9 0 6105 2025-03-19 08:00:15.059 2025-03-19 08:00:15.059 435221 20987 9 0 6106 2025-03-19 08:00:14.763 2025-03-19 08:00:14.763 435221 21287 9 0 6107 2025-03-19 07:55:35.845 2025-03-19 07:55:35.845 435222 20897 1 0 6108 2025-03-19 07:55:46.375 2025-03-19 07:55:46.375 435223 976 1 0 6109 2025-03-19 18:08:15.558 2025-03-19 18:08:15.558 435224 854 10 0 6110 2025-03-19 08:52:08.716 2025-03-19 08:52:08.716 435224 1261 0 0 6111 2025-03-19 18:08:15.558 2025-03-19 18:08:15.558 435224 2088 90 0 6112 2025-03-19 08:52:08.943 2025-03-19 08:52:08.943 435224 2232 1 0 6113 2025-03-19 08:52:08.943 2025-03-19 08:52:08.943 435224 2309 8 0 6114 2025-03-19 08:01:31.765 2025-03-19 08:01:31.765 435224 2492 1 0 6115 2025-03-19 08:01:31.765 2025-03-19 08:01:31.765 435224 3544 7 0 6116 2025-03-19 08:52:08.716 2025-03-19 08:52:08.716 435224 5036 1 0 6117 2025-03-19 10:03:15.185 2025-03-19 10:03:15.185 435224 9339 2 0 6118 2025-03-19 08:27:30.407 2025-03-19 08:27:30.407 435224 11819 1 0 6119 2025-03-19 10:03:15.185 2025-03-19 10:03:15.185 435224 19375 19 0 6120 2025-03-19 08:27:30.407 2025-03-19 08:27:30.407 435224 20891 9 0 6121 2025-03-19 08:41:09.896 2025-03-19 08:41:09.896 435224 20979 0 0 6122 2025-03-19 07:57:06.169 2025-03-19 07:57:06.169 435225 14385 1 0 6123 2025-03-19 08:55:20.989 2025-03-19 08:55:20.989 435226 1652 2 0 6124 2025-03-19 11:42:04.499 2025-03-19 11:42:04.499 435226 2022 0 0 6125 2025-03-19 13:52:17.631 2025-03-19 13:52:17.631 435226 2724 23 0 6126 2025-03-19 07:57:21.811 2025-03-19 07:57:21.811 435226 8870 21 0 6127 2025-03-19 10:02:14.164 2025-03-19 10:02:14.164 435226 9246 3 0 6128 2025-03-19 08:55:20.989 2025-03-19 08:55:20.989 435226 14669 19 0 6129 2025-03-19 13:52:13.553 2025-03-19 13:52:13.553 435226 16387 23 0 6130 2025-03-19 11:42:04.499 2025-03-19 11:42:04.499 435226 16406 3 0 6131 2025-03-19 13:52:13.553 2025-03-19 13:52:13.553 435226 16667 3 0 6132 2025-03-19 10:02:14.164 2025-03-19 10:02:14.164 435226 17095 23 0 6133 2025-03-19 13:52:17.631 2025-03-19 13:52:17.631 435226 19826 3 0 6134 2025-03-19 07:57:39.964 2025-03-19 07:57:39.964 435227 5497 10 0 6135 2025-03-19 07:58:10.752 2025-03-19 07:58:10.752 435228 7960 1 0 6136 2025-03-19 10:16:48.723 2025-03-19 10:16:48.723 435229 5171 3 0 6137 2025-03-19 08:55:27.776 2025-03-19 08:55:27.776 435229 10280 2 0 6138 2025-03-19 07:59:06.165 2025-03-19 07:59:06.165 435229 11263 1 0 6139 2025-03-19 08:55:27.776 2025-03-19 08:55:27.776 435229 13753 19 0 6140 2025-03-19 10:16:48.723 2025-03-19 10:16:48.723 435229 20434 23 0 6141 2025-03-19 07:59:10.707 2025-03-19 07:59:10.707 435230 9329 1 0 6142 2025-03-19 08:09:29.88 2025-03-19 08:09:29.88 435230 14465 27 0 6143 2025-03-19 08:09:28.347 2025-03-19 08:09:28.347 435230 20751 27 0 6144 2025-03-19 08:09:29.88 2025-03-19 08:09:29.88 435230 20956 243 0 6145 2025-03-19 08:09:28.347 2025-03-19 08:09:28.347 435230 21455 3 0 6146 2025-03-19 08:21:18.159 2025-03-19 08:21:18.159 435231 617 21 0 6147 2025-03-19 08:21:24.169 2025-03-19 08:21:24.169 435231 618 2 0 6148 2025-03-19 08:21:25.978 2025-03-19 08:21:28.64 435231 647 23 0 6149 2025-03-19 08:21:22.732 2025-03-19 08:21:22.732 435231 672 2 0 6150 2025-03-19 08:21:28.324 2025-03-19 08:21:28.324 435231 686 2 0 6151 2025-03-19 08:33:14.418 2025-03-19 09:10:11.07 435231 714 25 0 6152 2025-03-19 09:10:10.478 2025-03-19 09:10:10.478 435231 720 75 0 6153 2025-03-19 08:21:18.159 2025-03-19 08:21:18.159 435231 725 2 0 6154 2025-03-19 09:10:10.448 2025-03-19 09:10:10.448 435231 746 75 0 6155 2025-03-19 08:21:26.639 2025-03-19 08:21:26.639 435231 756 21 0 6156 2025-03-19 09:10:11.169 2025-03-19 09:10:11.169 435231 760 75 0 6157 2025-03-19 08:21:18.724 2025-03-19 08:21:18.724 435231 770 2 0 6158 2025-03-19 08:21:23.674 2025-03-19 08:21:23.674 435231 776 2 0 6159 2025-03-19 08:33:12.665 2025-03-19 08:33:12.665 435231 782 75 0 6160 2025-03-19 08:21:16.237 2025-03-19 08:21:16.237 435231 807 21 0 6161 2025-03-19 12:46:59.312 2025-03-19 12:46:59.312 435231 831 1 0 6162 2025-03-19 08:21:26.993 2025-03-19 08:21:26.993 435231 866 2 0 6163 2025-03-19 08:21:17.917 2025-03-19 08:21:17.917 435231 902 2 0 6164 2025-03-19 09:03:29.809 2025-03-19 09:03:29.809 435231 940 8 0 6165 2025-03-19 09:03:29.936 2025-03-19 09:03:29.936 435231 965 8 0 6166 2025-03-19 09:03:30.066 2025-03-19 09:03:30.066 435231 974 8 0 6167 2025-03-19 08:21:26.827 2025-03-19 08:21:26.827 435231 986 21 0 6168 2025-03-19 08:21:16.976 2025-03-19 08:21:16.976 435231 993 2 0 6169 2025-03-19 08:21:28.495 2025-03-19 08:21:28.495 435231 1039 21 0 6170 2025-03-19 08:21:19.083 2025-03-19 08:21:19.083 435231 1044 2 0 6171 2025-03-19 08:21:26.132 2025-03-19 08:21:26.132 435231 1046 21 0 6172 2025-03-19 09:45:46.119 2025-03-19 09:45:46.119 435231 1092 1 0 6173 2025-03-19 08:21:24.169 2025-03-19 08:21:24.169 435231 1141 21 0 6174 2025-03-19 08:21:28.495 2025-03-19 08:21:28.495 435231 1244 2 0 6175 2025-03-19 08:21:25.134 2025-03-19 09:45:31.951 435231 1273 22 0 6176 2025-03-19 09:10:11.169 2025-03-19 09:10:11.169 435231 1310 8 0 6177 2025-03-19 09:51:21.063 2025-03-19 09:51:21.063 435231 1401 9 0 6178 2025-03-19 08:21:24.027 2025-03-19 08:21:24.027 435231 1447 2 0 6179 2025-03-19 08:26:07.568 2025-03-19 08:26:07.568 435231 1468 0 0 6180 2025-03-19 10:47:27.731 2025-03-19 10:47:27.731 435231 1480 4 0 6181 2025-03-19 08:21:23.878 2025-03-19 08:21:23.878 435231 1611 21 0 6182 2025-03-19 09:51:21.711 2025-03-19 09:51:21.711 435231 1626 1 0 6183 2025-03-19 09:03:30.066 2025-03-19 09:03:30.066 435231 1673 75 0 6184 2025-03-19 08:10:53.641 2025-03-19 08:10:53.641 435231 1712 90 0 6185 2025-03-19 08:21:27.314 2025-03-19 08:21:27.314 435231 1741 2 0 6186 2025-03-19 09:03:30.319 2025-03-19 09:03:30.319 435231 1745 75 0 6187 2025-03-19 08:21:22.587 2025-03-19 08:21:22.587 435231 1761 2 0 6188 2025-03-19 08:21:18.943 2025-03-19 08:21:18.943 435231 1814 2 0 6189 2025-03-19 08:21:22.898 2025-03-19 08:21:22.898 435231 2056 21 0 6190 2025-03-19 08:21:22.609 2025-03-19 08:21:22.609 435231 2206 21 0 6191 2025-03-19 09:45:22.427 2025-03-19 09:45:22.427 435231 2224 9 0 6192 2025-03-19 08:21:26.993 2025-03-19 08:21:26.993 435231 2326 21 0 6193 2025-03-19 09:10:10.623 2025-03-19 09:10:10.623 435231 2330 8 0 6194 2025-03-19 11:17:35.086 2025-03-19 11:17:35.086 435231 2719 1 0 6195 2025-03-19 09:51:21.285 2025-03-19 09:51:21.285 435231 2735 1 0 6196 2025-03-19 08:33:13.168 2025-03-19 08:33:13.168 435231 2776 17 0 6197 2025-03-19 08:21:25.64 2025-03-19 08:21:25.64 435231 2844 2 0 6198 2025-03-19 09:03:30.319 2025-03-19 09:03:30.319 435231 3342 8 0 6199 2025-03-19 09:39:30.823 2025-03-19 09:39:30.823 435231 3417 90 0 6200 2025-03-19 11:17:33.808 2025-03-19 11:17:33.808 435231 3478 10 0 6201 2025-03-19 08:21:17.588 2025-03-19 08:21:17.588 435231 3504 21 0 6202 2025-03-19 08:29:08.071 2025-03-19 08:29:08.071 435231 3506 14 0 6203 2025-03-19 09:03:29.517 2025-03-19 09:03:29.517 435231 3656 75 0 6204 2025-03-19 11:17:35.086 2025-03-19 11:17:35.086 435231 4048 10 0 6205 2025-03-19 08:21:26.476 2025-03-19 08:21:26.476 435231 4323 2 0 6206 2025-03-19 08:33:14.18 2025-03-19 08:33:14.18 435231 4502 75 0 6207 2025-03-19 08:21:23.144 2025-03-19 08:21:23.144 435231 4654 21 0 6208 2025-03-19 08:21:24.027 2025-03-19 08:21:24.027 435231 4768 21 0 6209 2025-03-19 08:33:12.914 2025-03-19 08:33:12.914 435231 5017 75 0 6210 2025-03-19 09:45:33.352 2025-03-19 09:45:33.352 435231 5129 9 0 6211 2025-03-19 08:26:07.717 2025-03-19 08:26:07.717 435231 5497 1 0 6212 2025-03-19 08:21:24.491 2025-03-19 08:21:24.491 435231 5637 5 0 6213 2025-03-19 08:33:12.796 2025-03-19 08:33:12.796 435231 5776 75 0 6214 2025-03-19 09:45:45.75 2025-03-19 09:45:45.75 435231 5779 9 0 6215 2025-03-19 08:21:16.237 2025-03-19 08:21:16.237 435231 6149 2 0 6216 2025-03-19 09:51:21.349 2025-03-19 09:51:21.349 435231 6360 9 0 6217 2025-03-19 09:45:31.951 2025-03-19 09:45:31.951 435231 6382 9 0 6218 2025-03-19 09:16:12.486 2025-03-19 09:16:12.486 435231 6555 2 0 6219 2025-03-19 09:10:10.623 2025-03-19 09:10:10.623 435231 8037 75 0 6220 2025-03-19 08:21:18.065 2025-03-19 08:21:18.065 435231 8045 2 0 6221 2025-03-19 08:33:14.18 2025-03-19 08:33:14.18 435231 8269 8 0 6222 2025-03-19 08:21:22.587 2025-03-19 08:21:22.587 435231 8469 21 0 6223 2025-03-19 08:21:28.152 2025-03-19 08:21:28.152 435231 8870 2 0 6224 2025-03-19 08:33:12.665 2025-03-19 08:33:12.665 435231 9330 8 0 6225 2025-03-19 08:21:25.978 2025-03-19 08:21:25.978 435231 9333 21 0 6226 2025-03-19 08:21:18.943 2025-03-19 08:21:18.943 435231 9351 21 0 6227 2025-03-19 08:21:17.588 2025-03-19 08:21:17.588 435231 9355 2 0 6228 2025-03-19 08:21:18.827 2025-03-19 08:21:18.827 435231 9363 21 0 6229 2025-03-19 08:21:26.305 2025-03-19 08:21:26.305 435231 9367 21 0 6230 2025-03-19 09:03:29.649 2025-03-19 09:03:29.649 435231 9517 75 0 6231 2025-03-19 12:34:38.168 2025-03-19 12:34:38.168 435231 9529 1 0 6232 2025-03-19 08:26:16.369 2025-03-19 08:26:16.369 435231 9695 81 0 6233 2025-03-19 08:10:53.641 2025-03-19 08:10:53.641 435231 9758 10 0 6234 2025-03-19 08:21:25.64 2025-03-19 08:21:25.64 435231 10016 21 0 6235 2025-03-19 08:21:25.811 2025-03-19 08:21:25.811 435231 10096 2 0 6236 2025-03-19 08:21:24.491 2025-03-19 08:21:24.491 435231 10270 41 0 6237 2025-03-19 08:33:12.914 2025-03-19 08:33:12.914 435231 10280 8 0 6238 2025-03-19 17:26:45.954 2025-03-19 17:26:45.954 435231 10608 2 0 6239 2025-03-19 08:44:55.867 2025-03-19 08:44:55.867 435231 11018 18 0 6240 2025-03-19 08:33:12.796 2025-03-19 08:33:12.796 435231 11263 8 0 6241 2025-03-19 09:10:10.478 2025-03-19 09:10:10.478 435231 11760 8 0 6242 2025-03-19 09:10:11.07 2025-03-19 09:10:11.07 435231 11819 75 0 6243 2025-03-19 08:21:16.507 2025-03-19 08:21:16.507 435231 11942 5 0 6244 2025-03-19 09:51:21.063 2025-03-19 09:51:21.063 435231 12291 1 0 6245 2025-03-19 09:03:30.183 2025-03-19 09:03:30.183 435231 12483 75 0 6246 2025-03-19 09:03:29.517 2025-03-19 09:03:29.517 435231 12779 8 0 6247 2025-03-19 08:21:23.353 2025-03-19 08:21:23.353 435231 13038 21 0 6248 2025-03-19 08:21:19.083 2025-03-19 08:21:19.083 435231 13174 21 0 6249 2025-03-19 08:21:22.732 2025-03-19 08:21:22.732 435231 13365 21 0 6250 2025-03-19 08:53:28.859 2025-03-19 09:45:44.49 435231 13467 28 0 6251 2025-03-19 08:21:18.065 2025-03-19 08:21:18.065 435231 13759 21 0 6252 2025-03-19 09:45:45.75 2025-03-19 09:45:45.75 435231 14122 1 0 6253 2025-03-19 08:21:25.314 2025-03-19 08:21:25.314 435231 14357 21 0 6254 2025-03-19 08:21:23.878 2025-03-19 08:21:23.878 435231 14688 2 0 6255 2025-03-19 08:21:28.64 2025-03-19 08:21:28.64 435231 15139 2 0 6256 2025-03-19 08:21:26.305 2025-03-19 08:21:26.305 435231 15148 2 0 6257 2025-03-19 08:21:27.151 2025-03-19 08:21:27.151 435231 15160 2 0 6258 2025-03-19 08:33:12.469 2025-03-19 08:33:12.469 435231 15180 8 0 6259 2025-03-19 08:21:17.2 2025-03-19 08:21:17.2 435231 15226 21 0 6260 2025-03-19 11:17:33.808 2025-03-19 11:17:33.808 435231 15336 1 0 6261 2025-03-19 09:45:33.352 2025-03-19 09:45:33.352 435231 15544 1 0 6262 2025-03-19 08:21:25.127 2025-03-19 08:21:25.127 435231 15617 21 0 6263 2025-03-19 09:45:46.119 2025-03-19 09:45:46.119 435231 15624 9 0 6264 2025-03-19 08:21:23.21 2025-03-19 12:18:00.325 435231 15719 22 0 6265 2025-03-19 09:45:44.49 2025-03-19 09:45:44.49 435231 15978 1 0 6266 2025-03-19 08:21:23.144 2025-03-19 08:21:23.144 435231 16347 2 0 6267 2025-03-19 08:21:28.152 2025-03-19 08:21:28.152 435231 16350 21 0 6268 2025-03-19 08:47:14.659 2025-03-19 08:47:14.659 435231 16351 19 0 6269 2025-03-19 19:03:02.987 2025-03-19 19:03:02.987 435231 16410 1 0 6270 2025-03-19 08:21:17.749 2025-03-19 08:21:17.749 435231 16432 21 0 6271 2025-03-19 08:21:23.695 2025-03-19 08:21:23.695 435231 16562 2 0 6272 2025-03-19 08:33:12.469 2025-03-19 08:33:12.469 435231 16747 75 0 6273 2025-03-19 08:21:17.917 2025-03-19 08:21:17.917 435231 16842 21 0 6274 2025-03-19 09:03:29.936 2025-03-19 09:03:29.936 435231 17014 75 0 6275 2025-03-19 08:21:26.476 2025-03-19 08:21:26.476 435231 17106 21 0 6276 2025-03-19 08:47:14.659 2025-03-19 08:47:14.659 435231 17184 2 0 6277 2025-03-19 09:03:29.809 2025-03-19 09:03:29.809 435231 17209 75 0 6278 2025-03-19 08:21:23.353 2025-03-19 08:21:23.353 435231 17331 2 0 6279 2025-03-19 09:51:21.528 2025-03-19 09:51:21.528 435231 17392 9 0 6280 2025-03-19 12:46:59.312 2025-03-19 12:46:59.312 435231 17517 0 0 6281 2025-03-19 08:21:17.2 2025-03-19 08:21:17.2 435231 17722 2 0 6282 2025-03-20 11:12:01.27 2025-03-20 11:12:01.27 435231 18005 90 0 6283 2025-03-19 08:21:26.639 2025-03-19 08:21:26.639 435231 18011 2 0 6284 2025-03-19 17:26:45.954 2025-03-19 17:26:45.954 435231 18174 19 0 6285 2025-03-19 08:21:16.507 2025-03-19 08:21:16.507 435231 18265 41 0 6286 2025-03-20 11:12:01.27 2025-03-20 11:12:01.27 435231 18274 810 0 6287 2025-03-19 08:21:26.827 2025-03-19 08:21:26.827 435231 18321 2 0 6288 2025-03-19 09:03:29.649 2025-03-19 09:03:29.649 435231 18449 8 0 6289 2025-03-19 08:26:07.717 2025-03-19 08:26:07.717 435231 18528 8 0 6290 2025-03-19 08:21:18.827 2025-03-19 08:21:18.827 435231 18529 2 0 6291 2025-03-19 08:21:25.811 2025-03-19 08:21:25.811 435231 18735 21 0 6292 2025-03-19 08:33:13.168 2025-03-19 08:33:13.168 435231 18829 149 0 6293 2025-03-19 08:21:28.791 2025-03-19 08:21:28.791 435231 19378 2 0 6294 2025-03-19 08:21:23.695 2025-03-19 08:21:23.695 435231 19488 21 0 6295 2025-03-19 09:39:30.823 2025-03-19 09:39:30.823 435231 19735 10 0 6296 2025-03-19 09:03:30.183 2025-03-19 09:03:30.183 435231 19857 8 0 6297 2025-03-19 08:21:28.324 2025-03-19 08:21:28.324 435231 19952 21 0 6298 2025-03-19 08:21:27.151 2025-03-19 08:21:27.151 435231 20026 21 0 6299 2025-03-19 09:51:21.285 2025-03-19 09:51:21.285 435231 20062 9 0 6300 2025-03-19 09:10:10.448 2025-03-19 09:10:10.448 435231 20152 8 0 6301 2025-03-19 18:43:15.766 2025-03-19 18:43:15.766 435231 20294 9 0 6302 2025-03-19 08:21:23.21 2025-03-19 08:44:55.867 435231 20454 4 0 6303 2025-03-19 08:21:17.749 2025-03-19 08:21:17.749 435231 20490 2 0 6304 2025-03-19 10:47:27.731 2025-03-19 10:47:27.731 435231 20577 36 0 6305 2025-03-19 12:34:38.168 2025-03-19 12:34:38.168 435231 20669 5 0 6306 2025-03-19 09:45:22.427 2025-03-19 09:45:22.427 435231 20687 1 0 6307 2025-03-19 08:29:08.071 2025-03-19 09:10:10.264 435231 20701 76 0 6308 2025-03-19 08:21:23.674 2025-03-19 08:21:23.674 435231 20717 21 0 6309 2025-03-19 07:59:19.041 2025-03-19 12:18:00.325 435231 20755 109 0 6310 2025-03-19 08:21:18.724 2025-03-19 08:21:18.724 435231 20756 21 0 6311 2025-03-19 08:21:27.314 2025-03-19 08:21:27.314 435231 20812 21 0 6312 2025-03-19 08:21:25.501 2025-03-19 08:21:25.501 435231 20904 21 0 6313 2025-03-19 19:03:02.987 2025-03-19 19:03:02.987 435231 20922 9 0 6314 2025-03-19 09:10:10.264 2025-03-19 09:10:10.264 435231 20969 8 0 6315 2025-03-19 09:16:12.486 2025-03-19 09:16:12.486 435231 21012 19 0 6316 2025-03-19 08:26:16.369 2025-03-19 08:26:16.369 435231 21022 9 0 6317 2025-03-19 08:26:07.568 2025-03-19 08:26:07.568 435231 21037 1 0 6318 2025-03-19 08:21:26.132 2025-03-19 08:21:26.132 435231 21062 2 0 6319 2025-03-19 18:20:19.144 2025-03-19 18:20:19.144 435231 21064 1 0 6320 2025-03-19 08:53:28.859 2025-03-19 08:53:28.859 435231 21114 2 0 6321 2025-03-19 09:51:21.528 2025-03-19 09:51:21.528 435231 21140 1 0 6322 2025-03-19 09:45:45.185 2025-03-19 09:45:45.185 435231 21172 9 0 6323 2025-03-19 08:33:14.418 2025-03-19 08:33:14.418 435231 21269 149 0 6324 2025-03-19 08:21:25.314 2025-03-19 08:21:25.314 435231 21320 2 0 6325 2025-03-19 08:21:22.609 2025-03-19 08:21:22.609 435231 21379 2 0 6326 2025-03-19 08:21:16.976 2025-03-19 08:21:16.976 435231 21383 21 0 6327 2025-03-19 08:21:22.898 2025-03-19 08:21:22.898 435231 21442 2 0 6328 2025-03-19 09:51:21.711 2025-03-19 09:51:21.711 435231 21451 9 0 6329 2025-03-19 08:21:25.134 2025-03-19 08:21:25.134 435231 21455 2 0 6330 2025-03-19 18:43:15.766 2025-03-19 18:43:15.766 435231 21600 1 0 6331 2025-03-19 08:21:28.791 2025-03-19 08:21:28.791 435231 21670 21 0 6332 2025-03-19 09:45:45.185 2025-03-19 09:45:45.185 435231 21709 1 0 6333 2025-03-19 08:21:25.501 2025-03-19 08:21:25.501 435231 21734 2 0 6334 2025-03-19 09:51:21.349 2025-03-19 09:51:21.349 435231 21771 1 0 6335 2025-03-19 18:20:19.144 2025-03-19 18:20:19.144 435231 21803 5 0 6336 2025-03-19 08:21:25.127 2025-03-19 08:21:25.127 435231 21829 2 0 6337 2025-03-19 08:00:17.987 2025-03-19 08:00:17.987 435232 618 9 0 6338 2025-03-19 08:09:43.403 2025-03-19 08:09:43.403 435232 5112 27 0 6339 2025-03-19 08:00:17.289 2025-03-19 08:00:17.289 435232 5775 9 0 6340 2025-03-19 08:00:18.689 2025-03-19 08:00:18.689 435232 6160 1 0 6341 2025-03-19 08:00:19.045 2025-03-19 08:00:19.045 435232 7389 1 0 6342 2025-03-19 07:59:34.453 2025-03-19 07:59:34.453 435232 7659 1 0 6343 2025-03-19 08:00:19.729 2025-03-19 08:00:19.729 435232 7668 9 0 6344 2025-03-19 08:00:17.289 2025-03-19 08:00:17.289 435232 9421 1 0 6345 2025-03-19 08:00:19.729 2025-03-19 08:00:19.729 435232 10013 1 0 6346 2025-03-19 08:00:19.045 2025-03-19 08:00:19.045 435232 18678 9 0 6347 2025-03-19 08:00:17.987 2025-03-19 08:00:17.987 435232 20059 1 0 6348 2025-03-19 08:00:18.689 2025-03-19 08:00:18.689 435232 20606 9 0 6349 2025-03-19 08:09:43.403 2025-03-19 08:09:43.403 435232 20655 3 0 6350 2025-03-19 08:00:10.488 2025-03-19 08:00:10.488 435233 2327 1 0 6351 2025-03-19 08:09:44.166 2025-03-19 08:09:44.166 435233 2640 27 0 6352 2025-03-19 08:09:44.166 2025-03-19 08:09:44.166 435233 4538 3 0 6353 2025-03-19 08:33:33.88 2025-03-19 08:33:33.88 435234 2367 9 0 6354 2025-03-19 08:33:33.88 2025-03-19 08:33:33.88 435234 9496 1 0 6355 2025-03-19 08:09:55.945 2025-03-19 08:09:55.945 435234 17116 3 0 6356 2025-03-19 08:09:55.945 2025-03-19 08:09:55.945 435234 19292 27 0 6357 2025-03-19 08:00:27.848 2025-03-19 08:00:27.848 435234 21279 1 0 6358 2025-03-19 09:44:32.577 2025-03-19 09:44:32.577 435235 1090 2 0 6359 2025-03-19 08:09:41.857 2025-03-19 08:09:41.857 435235 2514 3 0 6360 2025-03-19 08:00:39.808 2025-03-19 08:00:39.808 435235 4225 1 0 6361 2025-03-19 08:09:41.857 2025-03-19 08:09:41.857 435235 8423 27 0 6362 2025-03-19 09:44:32.577 2025-03-19 09:44:32.577 435235 20190 19 0 6363 2025-03-19 08:52:06.594 2025-03-19 08:52:06.594 435236 3353 0 0 6364 2025-03-19 08:52:06.594 2025-03-19 08:52:06.594 435236 7966 1 0 6365 2025-03-19 08:52:06.761 2025-03-19 08:52:06.761 435236 11158 8 0 6366 2025-03-19 08:27:42.866 2025-03-19 08:27:42.866 435236 18368 1 0 6367 2025-03-19 08:52:06.761 2025-03-19 08:52:06.761 435236 19537 1 0 6368 2025-03-19 08:27:42.866 2025-03-19 08:27:42.866 435236 21020 9 0 6369 2025-03-19 08:01:26.118 2025-03-19 08:01:26.118 435236 21815 1 0 6370 2025-03-19 08:05:54.685 2025-03-19 08:05:54.685 435237 720 7 0 6371 2025-03-19 09:19:16.104 2025-03-19 09:19:16.104 435237 8059 1 0 6372 2025-03-19 08:03:19.372 2025-03-19 08:03:19.372 435237 15239 1 0 6373 2025-03-19 08:05:54.685 2025-03-19 08:05:54.685 435237 19531 64 0 6374 2025-03-19 09:19:16.104 2025-03-19 09:19:16.104 435237 21523 9 0 6375 2025-03-19 08:10:09.209 2025-03-19 08:10:09.209 435238 692 27 0 6376 2025-03-19 08:16:15.924 2025-03-19 08:16:15.924 435238 989 1 0 6377 2025-03-19 08:16:15.562 2025-03-19 08:16:15.562 435238 4313 1 0 6378 2025-03-19 08:16:15.924 2025-03-19 08:16:15.924 435238 11527 9 0 6379 2025-03-19 08:16:16.641 2025-03-19 08:16:16.641 435238 12291 1 0 6380 2025-03-19 08:16:16.285 2025-03-19 08:16:16.285 435238 18430 1 0 6381 2025-03-19 08:16:14.968 2025-03-19 08:16:14.968 435238 18630 9 0 6382 2025-03-19 08:16:16.641 2025-03-19 08:16:16.641 435238 19829 9 0 6383 2025-03-19 08:10:09.209 2025-03-19 08:10:09.209 435238 20225 3 0 6384 2025-03-19 08:16:15.562 2025-03-19 08:16:15.562 435238 20660 9 0 6385 2025-03-19 08:16:16.285 2025-03-19 08:16:16.285 435238 20663 9 0 6386 2025-03-19 08:03:23.463 2025-03-19 08:03:23.463 435238 20858 1 0 6387 2025-03-19 08:16:14.968 2025-03-19 08:16:14.968 435238 21412 1 0 6388 2025-03-19 08:03:25.763 2025-03-19 08:03:25.763 435239 19502 1 0 6389 2025-03-19 08:04:19.959 2025-03-19 08:04:19.959 435240 749 0 0 6390 2025-03-19 08:03:41.63 2025-03-19 08:03:41.63 435240 894 1 0 6391 2025-03-19 08:29:55.649 2025-03-19 08:29:55.649 435240 8985 9 0 6392 2025-03-19 10:43:41.935 2025-03-19 10:43:41.935 435240 9705 9 0 6393 2025-03-19 10:43:41.935 2025-03-19 10:43:41.935 435240 19826 1 0 6394 2025-03-19 08:29:55.649 2025-03-19 08:29:55.649 435240 20891 1 0 6395 2025-03-19 08:32:23.159 2025-03-19 08:32:23.159 435241 652 21 0 6396 2025-03-19 08:32:24.302 2025-03-19 08:32:24.302 435241 663 21 0 6397 2025-03-19 08:17:26.692 2025-03-19 08:17:26.692 435241 667 21 0 6398 2025-03-19 08:32:24.485 2025-03-19 08:32:24.485 435241 770 21 0 6399 2025-03-19 08:17:26.567 2025-03-19 08:17:26.567 435241 811 2 0 6400 2025-03-19 08:32:24.989 2025-03-19 08:32:24.989 435241 1003 21 0 6401 2025-03-19 08:32:23.159 2025-03-19 08:32:23.159 435241 1044 2 0 6402 2025-03-19 08:17:27.379 2025-03-19 08:17:27.379 435241 1474 2 0 6403 2025-03-19 08:17:25.636 2025-03-19 08:17:25.636 435241 1515 21 0 6404 2025-03-19 08:17:50.151 2025-03-19 08:17:50.151 435241 1825 19 0 6405 2025-03-19 08:17:27.086 2025-03-19 08:17:27.086 435241 2335 21 0 6406 2025-03-19 08:17:27.496 2025-03-19 08:17:27.496 435241 2529 21 0 6407 2025-03-19 08:17:27.777 2025-03-19 08:17:27.777 435241 2609 2 0 6408 2025-03-19 08:32:22.679 2025-03-19 08:32:22.679 435241 2942 2 0 6409 2025-03-19 08:32:23.589 2025-03-19 08:32:23.589 435241 3360 21 0 6410 2025-03-19 08:32:24.485 2025-03-19 08:32:24.485 435241 3371 2 0 6411 2025-03-19 08:32:24.524 2025-03-19 08:32:24.524 435241 3439 21 0 6412 2025-03-19 08:17:27.631 2025-03-19 08:17:27.631 435241 3686 21 0 6413 2025-03-20 00:20:56.17 2025-03-20 00:20:56.17 435241 3990 1 0 6414 2025-03-19 11:43:28.418 2025-03-19 11:43:28.418 435241 4225 1 0 6415 2025-03-19 08:17:52.404 2025-03-19 08:17:52.404 435241 5003 2 0 6416 2025-03-19 11:43:28.418 2025-03-19 11:43:28.418 435241 5036 7 0 6417 2025-03-19 08:32:24.47 2025-03-19 08:32:24.47 435241 5425 2 0 6418 2025-03-19 08:32:24.524 2025-03-19 08:32:24.524 435241 5444 2 0 6419 2025-03-19 08:17:26.567 2025-03-19 08:17:26.567 435241 6030 21 0 6420 2025-03-19 08:17:27.777 2025-03-19 08:17:27.777 435241 6573 21 0 6421 2025-03-19 08:17:27.086 2025-03-19 08:17:27.086 435241 6717 2 0 6422 2025-03-19 08:32:23.822 2025-03-19 08:32:23.822 435241 7119 5 0 6423 2025-03-19 08:32:23.371 2025-03-19 08:32:23.371 435241 7418 21 0 6424 2025-03-19 08:17:25.505 2025-03-19 08:17:25.505 435241 7899 21 0 6425 2025-03-19 08:32:24.707 2025-03-19 08:32:24.707 435241 8664 5 0 6426 2025-03-19 08:32:22.679 2025-03-19 08:32:22.679 435241 9758 21 0 6427 2025-03-19 08:17:26.82 2025-03-19 08:17:26.82 435241 10352 21 0 6428 2025-03-19 08:17:25.373 2025-03-19 08:17:25.373 435241 10608 2 0 6429 2025-03-19 08:32:25.393 2025-03-19 08:32:25.393 435241 10638 21 0 6430 2025-03-19 08:17:25.878 2025-03-19 08:17:25.878 435241 11314 2 0 6431 2025-03-19 08:17:25.505 2025-03-19 08:17:25.505 435241 12169 2 0 6432 2025-03-19 08:32:24.47 2025-03-19 08:32:24.47 435241 13566 21 0 6433 2025-03-19 08:32:23.051 2025-03-19 08:32:23.051 435241 13878 21 0 6434 2025-03-19 08:32:25.126 2025-03-19 08:32:25.126 435241 14015 2 0 6435 2025-03-19 08:17:51.279 2025-03-19 08:17:51.279 435241 14225 2 0 6436 2025-03-19 08:04:11.317 2025-03-19 08:04:11.317 435241 14255 1 0 6437 2025-03-19 08:17:26.443 2025-03-19 08:17:26.443 435241 14785 21 0 6438 2025-03-19 08:32:25.126 2025-03-19 08:32:25.126 435241 15100 21 0 6439 2025-03-19 08:32:23.371 2025-03-19 08:32:23.371 435241 15243 2 0 6440 2025-03-19 08:17:25.878 2025-03-19 08:17:25.878 435241 15941 21 0 6441 2025-03-20 00:20:56.17 2025-03-20 00:20:56.17 435241 16276 9 0 6442 2025-03-19 08:17:26.692 2025-03-19 08:17:26.692 435241 16284 2 0 6443 2025-03-19 08:32:25.537 2025-03-19 08:32:25.537 435241 16679 2 0 6444 2025-03-19 08:17:27.238 2025-03-19 08:17:27.238 435241 16747 21 0 6445 2025-03-19 08:17:51.279 2025-03-19 08:17:51.279 435241 16830 19 0 6446 2025-03-19 08:17:50.151 2025-03-19 08:17:50.151 435241 17064 2 0 6447 2025-03-19 08:17:52.404 2025-03-19 08:17:52.404 435241 17124 19 0 6448 2025-03-19 08:32:23.279 2025-03-19 08:32:23.279 435241 18368 21 0 6449 2025-03-19 08:32:25.242 2025-03-19 08:32:25.242 435241 19018 2 0 6450 2025-03-19 08:32:23.051 2025-03-19 08:32:23.051 435241 19378 2 0 6451 2025-03-19 08:32:23.589 2025-03-19 08:32:23.589 435241 19527 2 0 6452 2025-03-19 08:32:25.537 2025-03-19 08:32:25.537 435241 19535 21 0 6453 2025-03-19 08:17:26.443 2025-03-19 08:17:26.443 435241 19570 2 0 6454 2025-03-19 08:29:31.763 2025-03-19 08:29:31.763 435241 19668 9 0 6455 2025-03-19 08:17:27.631 2025-03-19 08:17:27.631 435241 19842 2 0 6456 2025-03-19 08:32:24.302 2025-03-19 08:32:24.302 435241 19854 2 0 6457 2025-03-19 08:32:25.242 2025-03-19 08:32:25.242 435241 19863 21 0 6458 2025-03-19 08:17:26.962 2025-03-19 08:17:26.962 435241 19966 21 0 6459 2025-03-19 08:17:27.496 2025-03-19 08:17:27.496 435241 20133 2 0 6460 2025-03-19 08:17:26.962 2025-03-19 08:17:26.962 435241 20137 2 0 6461 2025-03-19 08:29:31.763 2025-03-19 08:29:31.763 435241 20280 1 0 6462 2025-03-19 08:17:27.379 2025-03-19 08:17:27.379 435241 20436 21 0 6463 2025-03-19 08:32:25.393 2025-03-19 08:32:25.393 435241 20588 2 0 6464 2025-03-19 08:32:23.279 2025-03-19 08:32:23.279 435241 21037 2 0 6465 2025-03-19 08:32:24.989 2025-03-19 08:32:24.989 435241 21067 2 0 6466 2025-03-19 08:17:27.238 2025-03-19 08:17:27.238 435241 21070 2 0 6467 2025-03-19 08:17:25.373 2025-03-19 08:17:25.373 435241 21172 21 0 6468 2025-03-19 08:32:24.707 2025-03-19 08:32:24.707 435241 21406 41 0 6469 2025-03-19 08:32:23.822 2025-03-19 08:32:23.822 435241 21631 41 0 6470 2025-03-19 08:17:26.82 2025-03-19 08:17:26.82 435241 21666 2 0 6471 2025-03-19 08:17:25.636 2025-03-19 08:17:25.636 435241 21771 2 0 6472 2025-03-19 08:34:25.813 2025-03-19 08:34:25.813 435242 623 8 0 6473 2025-03-19 08:34:27.968 2025-03-19 08:34:27.968 435242 624 75 0 6474 2025-03-19 08:34:25.051 2025-03-19 08:34:25.051 435242 628 8 0 6475 2025-03-19 08:46:17.998 2025-03-19 08:46:17.998 435242 647 19 0 6476 2025-03-19 11:30:10.908 2025-03-19 11:30:10.908 435242 674 10 0 6477 2025-03-19 08:21:11.972 2025-03-19 08:21:11.972 435242 685 2 0 6478 2025-03-19 22:30:11.19 2025-03-19 22:30:11.19 435242 700 1 0 6479 2025-03-19 08:21:11.461 2025-03-19 08:21:11.461 435242 711 2 0 6480 2025-03-19 08:34:26.262 2025-03-19 08:34:26.262 435242 714 75 0 6481 2025-03-19 08:34:27.853 2025-03-19 08:34:27.853 435242 716 75 0 6482 2025-03-19 08:34:26.729 2025-03-19 08:34:26.729 435242 732 8 0 6483 2025-03-19 22:30:10.71 2025-03-19 22:30:10.71 435242 760 0 0 6484 2025-03-19 20:37:11.956 2025-03-19 20:37:11.956 435242 769 1 0 6485 2025-03-19 08:21:12.093 2025-03-19 08:21:12.093 435242 777 2 0 6486 2025-03-19 08:21:12.308 2025-03-19 08:21:12.308 435242 827 21 0 6487 2025-03-19 08:21:12.778 2025-03-19 08:21:12.778 435242 886 21 0 6488 2025-03-19 08:34:25.754 2025-03-19 08:34:25.754 435242 894 8 0 6489 2025-03-19 22:30:12.285 2025-03-19 22:30:12.285 435242 897 1 0 6490 2025-03-19 08:34:28.422 2025-03-19 08:34:28.422 435242 956 75 0 6491 2025-03-19 08:34:25.929 2025-03-19 08:34:25.929 435242 976 8 0 6492 2025-03-19 08:34:26.845 2025-03-19 08:34:26.845 435242 981 8 0 6493 2025-03-19 08:18:42.317 2025-03-19 08:18:42.317 435242 1237 90 0 6494 2025-03-19 19:00:34.195 2025-03-19 19:00:34.195 435242 1549 4 0 6495 2025-03-19 08:53:32.726 2025-03-19 08:53:32.726 435242 1603 19 0 6496 2025-03-19 08:34:25.929 2025-03-19 08:34:25.929 435242 1718 75 0 6497 2025-03-19 18:50:40.451 2025-03-19 18:50:40.451 435242 1802 9 0 6498 2025-03-19 14:50:24.695 2025-03-19 14:50:24.695 435242 1814 0 0 6499 2025-03-19 08:34:26.729 2025-03-19 08:34:26.729 435242 1985 75 0 6500 2025-03-19 08:09:41.792 2025-03-19 08:09:41.792 435242 2016 0 0 6501 2025-03-19 17:26:47.25 2025-03-19 17:26:47.25 435242 2056 2 0 6502 2025-03-19 22:30:10.399 2025-03-19 22:30:10.399 435242 2326 0 0 6503 2025-03-19 22:30:11.834 2025-03-19 22:30:11.834 435242 2437 0 0 6504 2025-03-19 08:34:27.597 2025-03-19 08:34:27.597 435242 2543 75 0 6505 2025-03-19 08:34:27.597 2025-03-19 08:34:27.597 435242 2709 8 0 6506 2025-03-19 08:21:12.639 2025-03-19 10:07:20.027 435242 2724 31 0 6507 2025-03-19 08:21:11.461 2025-03-19 08:21:11.461 435242 2741 21 0 6508 2025-03-19 08:34:28.422 2025-03-19 08:34:28.422 435242 2844 8 0 6509 2025-03-19 08:21:12.931 2025-03-19 08:21:12.931 435242 3417 21 0 6510 2025-03-19 18:20:26.871 2025-03-19 18:20:26.871 435242 3478 5 0 6511 2025-03-19 13:33:29.229 2025-03-19 13:33:29.229 435242 3729 1 0 6512 2025-03-19 10:47:42.349 2025-03-19 10:47:42.349 435242 4238 4 0 6513 2025-03-19 09:59:20.449 2025-03-19 09:59:20.449 435242 4250 10 0 6514 2025-03-19 08:34:28.528 2025-03-19 08:34:28.528 435242 4314 8 0 6515 2025-03-19 11:52:57.778 2025-03-19 11:52:57.778 435242 4395 105 0 6516 2025-03-20 03:10:22.474 2025-03-20 03:10:22.474 435242 4415 9 0 6517 2025-03-19 22:30:10.981 2025-03-19 22:30:10.981 435242 4538 0 0 6518 2025-03-19 08:18:42.317 2025-03-19 08:18:42.317 435242 4570 10 0 6519 2025-03-19 11:30:10.908 2025-03-19 11:30:10.908 435242 4692 90 0 6520 2025-03-19 22:30:12.524 2025-03-19 22:30:12.524 435242 4754 0 0 6521 2025-03-20 03:10:22.474 2025-03-20 03:10:22.474 435242 4802 1 0 6522 2025-03-19 21:18:21.33 2025-03-19 21:18:21.33 435242 5173 1 0 6523 2025-03-19 08:21:12.778 2025-03-19 08:21:12.778 435242 5308 2 0 6524 2025-03-19 21:04:46.109 2025-03-19 21:04:46.109 435242 5359 1 0 6525 2025-03-19 18:50:40.451 2025-03-19 18:50:40.451 435242 5708 1 0 6526 2025-03-19 08:34:26.162 2025-03-19 08:34:26.162 435242 5794 75 0 6527 2025-03-19 08:34:26.968 2025-03-19 08:34:26.968 435242 6688 75 0 6528 2025-03-19 08:21:12.639 2025-03-19 08:21:12.639 435242 6741 2 0 6529 2025-03-19 08:34:28.654 2025-03-19 08:34:28.654 435242 7119 8 0 6530 2025-03-19 19:03:03.829 2025-03-19 19:03:03.829 435242 7667 1 0 6531 2025-03-19 08:34:26.501 2025-03-19 08:34:26.501 435242 7827 75 0 6532 2025-03-19 10:23:06.991 2025-03-19 10:23:06.991 435242 8423 0 100 6533 2025-03-19 22:30:11.433 2025-03-19 22:30:11.433 435242 8448 1 0 6534 2025-03-19 08:34:27.968 2025-03-19 08:34:27.968 435242 8570 8 0 6535 2025-03-19 08:34:26.386 2025-03-19 08:34:26.386 435242 8713 75 0 6536 2025-03-19 21:04:45.512 2025-03-19 21:04:45.512 435242 8729 0 0 6537 2025-03-19 08:34:25.754 2025-03-19 08:34:25.754 435242 9099 75 0 6538 2025-03-19 10:29:46.322 2025-03-19 10:29:46.322 435242 9169 1 0 6539 2025-03-19 08:21:11.972 2025-03-19 23:19:07.287 435242 9184 21 0 6540 2025-03-19 16:16:42.046 2025-03-19 16:16:42.046 435242 9246 100 0 6541 2025-03-19 08:34:26.609 2025-03-19 08:34:26.968 435242 9307 83 0 6542 2025-03-19 22:30:11.433 2025-03-19 22:30:11.433 435242 9339 0 0 6543 2025-03-19 21:04:45.985 2025-03-19 21:04:45.985 435242 9348 0 0 6544 2025-03-19 08:34:26.054 2025-03-19 08:34:26.054 435242 9350 75 0 6545 2025-03-19 22:30:12.023 2025-03-19 22:30:12.023 435242 9476 1 0 6546 2025-03-19 10:11:29.504 2025-03-19 10:11:29.504 435242 9916 9 0 6547 2025-03-19 08:34:28.31 2025-03-19 08:34:28.31 435242 9921 8 0 6548 2025-03-19 22:30:10.981 2025-03-19 22:30:10.981 435242 10311 1 0 6549 2025-03-19 08:34:26.609 2025-03-19 08:34:26.609 435242 10549 8 0 6550 2025-03-19 19:30:03.082 2025-03-19 19:30:03.082 435242 10818 1 0 6551 2025-03-19 08:34:28.528 2025-03-19 08:34:28.528 435242 11491 75 0 6552 2025-03-19 09:17:30.962 2025-03-19 22:30:11.834 435242 11515 31 0 6553 2025-03-19 08:34:25.813 2025-03-19 08:34:25.813 435242 11621 75 0 6554 2025-03-19 16:16:42.046 2025-03-19 16:16:42.046 435242 12346 900 0 6555 2025-03-19 08:34:26.162 2025-03-19 08:34:26.162 435242 12561 8 0 6556 2025-03-19 08:34:25.379 2025-03-19 08:34:25.379 435242 12656 75 0 6557 2025-03-19 08:34:27.853 2025-03-19 08:34:27.853 435242 13042 8 0 6558 2025-03-19 08:21:11.32 2025-03-19 08:21:11.32 435242 13177 21 0 6559 2025-03-19 12:47:44.016 2025-03-19 12:47:44.016 435242 13249 1 0 6560 2025-03-19 09:17:30.962 2025-03-19 09:17:30.962 435242 13547 3 0 6561 2025-03-19 10:11:29.504 2025-03-19 10:11:29.504 435242 13763 1 0 6562 2025-03-19 08:34:28.078 2025-03-19 08:34:28.078 435242 13878 75 0 6563 2025-03-19 08:34:28.751 2025-03-19 08:34:28.751 435242 14015 8 0 6564 2025-03-19 08:34:25.26 2025-03-19 08:34:25.26 435242 14939 75 0 6565 2025-03-19 22:30:12.285 2025-03-19 22:30:12.285 435242 15139 0 0 6566 2025-03-19 11:52:57.778 2025-03-19 11:52:57.778 435242 15160 12 0 6567 2025-03-19 21:04:45.917 2025-03-19 21:04:45.917 435242 15336 1 0 6568 2025-03-19 08:34:26.386 2025-03-19 08:34:26.386 435242 15409 8 0 6569 2025-03-19 08:46:17.998 2025-03-19 08:46:17.998 435242 15521 2 0 6570 2025-03-19 10:47:42.349 2025-03-19 10:47:42.349 435242 15662 36 0 6571 2025-03-19 08:34:26.262 2025-03-19 08:34:26.501 435242 15690 17 0 6572 2025-03-19 08:34:26.845 2025-03-19 08:34:26.845 435242 16329 75 0 6573 2025-03-19 21:04:45.985 2025-03-19 21:04:45.985 435242 16350 1 0 6574 2025-03-19 09:16:28.208 2025-03-19 09:16:28.208 435242 16513 19 0 6575 2025-03-19 22:30:12.524 2025-03-19 22:30:12.524 435242 16543 1 0 6576 2025-03-19 08:05:24.219 2025-03-19 08:05:24.219 435242 16562 100 0 6577 2025-03-19 08:34:25.379 2025-03-19 08:34:25.379 435242 16670 8 0 6578 2025-03-19 22:30:11.19 2025-03-19 22:30:11.19 435242 16912 0 0 6579 2025-03-19 08:34:28.654 2025-03-19 08:34:28.654 435242 16929 75 0 6580 2025-03-19 08:34:25.69 2025-03-19 08:34:25.69 435242 17064 75 0 6581 2025-03-19 09:16:28.208 2025-03-19 09:16:28.208 435242 17095 2 0 6582 2025-03-19 08:34:28.751 2025-03-19 08:34:28.751 435242 17226 75 0 6583 2025-03-19 08:34:28.194 2025-03-19 08:34:28.194 435242 17331 75 0 6584 2025-03-19 08:34:28.194 2025-03-19 08:34:28.194 435242 17526 8 0 6585 2025-03-19 08:47:17.878 2025-03-19 08:47:17.878 435242 17570 2 0 6586 2025-03-19 08:21:11.32 2025-03-19 08:21:11.32 435242 17710 2 0 6587 2025-03-19 23:19:07.287 2025-03-19 23:19:07.287 435242 17838 2 0 6588 2025-03-19 08:34:25.26 2025-03-19 08:34:25.26 435242 17891 8 0 6589 2025-03-20 04:16:12.114 2025-03-20 04:16:12.114 435242 17991 1 0 6590 2025-03-19 08:21:12.308 2025-03-19 08:21:12.308 435242 18219 2 0 6591 2025-03-19 19:48:07.401 2025-03-19 19:48:07.401 435242 18393 9 0 6592 2025-03-19 22:30:10.71 2025-03-19 22:30:10.71 435242 18402 1 0 6593 2025-03-19 18:20:26.871 2025-03-19 18:20:26.871 435242 18441 1 0 6594 2025-03-19 08:21:11.682 2025-03-19 08:21:11.682 435242 18525 21 0 6595 2025-03-19 08:34:24.566 2025-03-19 08:34:24.566 435242 18529 8 0 6596 2025-03-19 12:47:44.016 2025-03-19 12:47:44.016 435242 18678 0 0 6597 2025-03-19 10:07:20.027 2025-03-19 10:07:20.027 435242 18717 91 0 6598 2025-03-19 08:21:11.682 2025-03-19 08:21:11.682 435242 18865 2 0 6599 2025-03-19 19:48:07.401 2025-03-19 19:48:07.401 435242 18923 1 0 6600 2025-03-19 08:46:10.111 2025-03-19 08:46:10.111 435242 19117 2 0 6601 2025-03-19 19:00:34.195 2025-03-19 22:30:10.399 435242 19217 39 0 6602 2025-03-19 13:00:56.413 2025-03-19 13:00:56.413 435242 19263 19 0 6603 2025-03-19 21:04:46.109 2025-03-19 21:04:46.109 435242 19378 0 0 6604 2025-03-19 21:04:45.705 2025-03-19 21:04:45.705 435242 19417 1 0 6605 2025-03-19 10:39:10.718 2025-03-19 10:39:10.718 435242 19512 2 0 6606 2025-03-19 08:34:25.523 2025-03-19 08:34:25.523 435242 19813 75 0 6607 2025-03-19 17:26:47.25 2025-03-19 17:26:47.25 435242 19906 19 0 6608 2025-03-19 21:04:45.512 2025-03-19 21:04:45.512 435242 19980 1 0 6609 2025-03-19 13:33:29.229 2025-03-19 13:33:29.229 435242 20243 9 0 6610 2025-03-19 08:34:27.743 2025-03-19 08:34:27.743 435242 20254 75 0 6611 2025-03-19 08:34:25.523 2025-03-19 14:50:24.695 435242 20310 9 0 6612 2025-03-19 20:37:11.956 2025-03-19 20:37:11.956 435242 20381 9 0 6613 2025-03-19 21:04:45.917 2025-03-19 21:04:45.917 435242 20680 0 0 6614 2025-03-19 08:34:27.743 2025-03-19 08:34:27.743 435242 20681 8 0 6615 2025-03-19 12:32:20.559 2025-03-19 12:32:20.559 435242 20713 10 0 6616 2025-03-19 08:47:17.878 2025-03-19 08:47:17.878 435242 20715 19 0 6617 2025-03-19 10:29:46.322 2025-03-19 10:29:46.322 435242 20745 0 0 6618 2025-03-19 08:21:12.931 2025-03-19 08:21:12.931 435242 20901 2 0 6619 2025-03-19 08:34:28.31 2025-03-19 08:34:28.31 435242 20972 75 0 6620 2025-03-20 04:16:12.114 2025-03-20 04:16:12.114 435242 21019 5 0 6621 2025-03-19 19:03:03.829 2025-03-19 19:03:03.829 435242 21136 9 0 6622 2025-03-19 08:46:10.111 2025-03-19 08:46:10.111 435242 21159 14 0 6623 2025-03-19 08:34:25.051 2025-03-19 08:34:25.051 435242 21208 75 0 6624 2025-03-19 08:21:12.093 2025-03-19 08:21:12.093 435242 21222 21 0 6625 2025-03-19 13:00:56.413 2025-03-19 13:00:56.413 435242 21233 2 0 6626 2025-03-19 19:30:03.082 2025-03-19 19:30:03.082 435242 21271 9 0 6627 2025-03-19 08:34:25.69 2025-03-19 08:34:25.69 435242 21334 8 0 6628 2025-03-19 08:34:24.566 2025-03-19 08:34:24.566 435242 21339 75 0 6629 2025-03-19 08:53:32.726 2025-03-19 08:53:32.726 435242 21373 2 0 6630 2025-03-19 10:39:10.718 2025-03-19 10:39:10.718 435242 21427 19 0 6631 2025-03-19 08:34:28.078 2025-03-19 08:34:28.078 435242 21444 8 0 6632 2025-03-19 22:30:12.023 2025-03-19 22:30:12.023 435242 21518 0 0 6633 2025-03-19 08:34:26.054 2025-03-19 08:34:26.054 435242 21577 8 0 6634 2025-03-19 21:04:45.705 2025-03-19 21:04:45.705 435242 21620 0 0 6635 2025-03-19 08:09:41.792 2025-03-19 08:09:41.792 435242 21647 1 0 6636 2025-03-19 12:32:20.559 2025-03-19 12:32:20.559 435242 21794 90 0 6637 2025-03-19 09:59:20.449 2025-03-19 09:59:20.449 435242 21829 1 0 6638 2025-03-19 08:07:15.623 2025-03-19 08:07:15.623 435243 18829 36 0 6639 2025-03-19 08:05:26.997 2025-03-19 08:05:26.997 435243 19581 100 0 6640 2025-03-19 08:07:15.623 2025-03-19 08:07:15.623 435243 20613 4 0 6641 2025-03-19 08:10:41.343 2025-03-19 08:10:41.343 435244 681 2 0 6642 2025-03-19 08:10:41.343 2025-03-19 08:10:41.343 435244 1425 14 0 6643 2025-03-19 08:07:07.415 2025-03-19 08:07:07.415 435244 1773 1 0 6644 2025-03-19 08:07:54.103 2025-03-19 08:07:54.103 435245 14357 1 0 6645 2025-03-19 08:10:02.457 2025-03-19 08:10:02.457 435246 644 0 0 6646 2025-03-19 08:10:41.162 2025-03-19 08:10:41.162 435246 652 3 0 6647 2025-03-19 20:52:49.91 2025-03-19 20:52:49.91 435246 770 1 0 6648 2025-03-19 20:52:49.151 2025-03-19 20:52:49.151 435246 894 9 0 6649 2025-03-19 20:52:47.072 2025-03-19 20:52:48.4 435246 965 18 0 6650 2025-03-19 20:52:45.958 2025-03-19 20:52:45.958 435246 1044 1 0 6651 2025-03-19 08:10:42.382 2025-03-19 08:10:42.382 435246 1447 243 0 6652 2025-03-19 20:52:49.151 2025-03-19 20:52:49.151 435246 1620 1 0 6653 2025-03-20 07:01:28.451 2025-03-20 07:01:28.451 435246 2342 1 0 6654 2025-03-19 08:17:55.664 2025-03-19 08:17:55.664 435246 3377 2 0 6655 2025-03-19 08:07:59.489 2025-03-19 08:07:59.489 435246 6136 1 0 6656 2025-03-20 07:01:28.13 2025-03-20 07:01:28.13 435246 6555 1 0 6657 2025-03-19 09:45:16.711 2025-03-19 09:45:16.711 435246 6573 10 0 6658 2025-03-19 08:10:41.162 2025-03-19 08:10:41.162 435246 9329 27 0 6659 2025-03-19 08:10:42.382 2025-03-19 08:10:42.382 435246 10096 27 0 6660 2025-03-19 20:52:49.91 2025-03-19 20:52:49.91 435246 10698 9 0 6661 2025-03-19 20:52:47.072 2025-03-19 20:52:47.072 435246 14663 1 0 6662 2025-03-20 07:01:28.13 2025-03-20 07:01:28.13 435246 16126 9 0 6663 2025-03-19 08:17:55.664 2025-03-19 08:17:55.664 435246 16704 19 0 6664 2025-03-19 20:52:47.759 2025-03-19 20:52:47.759 435246 20137 1 0 6665 2025-03-19 20:52:48.4 2025-03-19 20:52:48.4 435246 20190 1 0 6666 2025-03-20 07:01:28.451 2025-03-20 07:01:28.451 435246 20577 9 0 6667 2025-03-19 09:45:16.711 2025-03-19 09:45:16.711 435246 20837 90 0 6668 2025-03-19 20:52:45.958 2025-03-19 20:52:45.958 435246 20858 9 0 6669 2025-03-19 20:52:47.759 2025-03-19 20:52:47.759 435246 21710 9 0 6670 2025-03-19 08:27:43.588 2025-03-19 08:27:43.588 435247 4754 1 0 6671 2025-03-19 08:09:21.933 2025-03-19 08:09:21.933 435247 18526 1 0 6672 2025-03-19 08:27:43.588 2025-03-19 08:27:43.588 435247 21389 9 0 6673 2025-03-19 08:24:59.22 2025-03-19 08:24:59.22 435248 6430 0 100 6674 2025-03-19 08:15:35.22 2025-03-19 08:15:35.22 435249 658 2 0 6675 2025-03-19 08:10:39.555 2025-03-19 08:10:39.555 435249 12749 1 0 6676 2025-03-19 08:15:35.22 2025-03-19 08:15:35.22 435249 16154 19 0 6677 2025-03-19 08:14:47.627 2025-03-19 08:14:47.627 435250 20911 0 75 6678 2025-03-19 08:40:10.243 2025-03-19 08:40:10.243 435251 1209 19 0 6679 2025-03-19 08:40:10.243 2025-03-19 08:40:10.243 435251 12049 2 0 6680 2025-03-19 08:15:29.536 2025-03-19 08:15:29.536 435251 19537 1 0 6681 2025-03-19 08:18:42.984 2025-03-19 08:18:42.984 435252 685 9 0 6682 2025-03-19 08:15:30.872 2025-03-19 08:15:30.872 435252 1773 1 0 6683 2025-03-19 08:19:00.646 2025-03-19 08:19:00.646 435252 7983 2 0 6684 2025-03-19 08:18:42.487 2025-03-19 08:18:42.487 435252 9537 8 0 6685 2025-03-19 08:18:42.283 2025-03-19 08:18:42.283 435252 12102 0 0 6686 2025-03-19 08:18:42.487 2025-03-19 08:18:42.487 435252 15326 1 0 6687 2025-03-19 08:18:42.984 2025-03-19 08:18:42.984 435252 17050 81 0 6688 2025-03-19 08:18:42.283 2025-03-19 08:18:42.283 435252 20778 1 0 6689 2025-03-19 08:19:00.646 2025-03-19 08:19:00.646 435252 21365 19 0 6690 2025-03-19 08:28:15.326 2025-03-19 08:28:15.326 435253 1090 3 0 6691 2025-03-19 08:15:31.171 2025-03-19 08:15:31.171 435253 1483 1 0 6692 2025-03-19 08:28:15.326 2025-03-19 08:28:15.326 435253 16456 29 0 6693 2025-03-19 08:16:18.539 2025-03-19 08:16:18.539 435254 803 1 0 6694 2025-03-19 08:29:29.734 2025-03-19 08:29:29.734 435254 7992 3 0 6695 2025-03-19 08:16:19.711 2025-03-19 08:16:19.711 435254 8926 9 0 6696 2025-03-19 08:16:18.539 2025-03-19 08:16:18.539 435254 9337 9 0 6697 2025-03-19 08:30:46.827 2025-03-19 08:30:46.827 435254 9378 3 0 6698 2025-03-19 08:16:19.352 2025-03-19 08:16:19.352 435254 10493 9 0 6699 2025-03-19 08:30:46.827 2025-03-19 08:30:46.827 435254 11240 27 0 6700 2025-03-19 08:16:19.711 2025-03-19 08:16:19.711 435254 11450 1 0 6701 2025-03-19 08:15:48.221 2025-03-19 08:15:48.221 435254 11522 1 0 6702 2025-03-19 08:16:18.885 2025-03-19 08:16:18.885 435254 13097 1 0 6703 2025-03-19 08:16:19.971 2025-03-19 08:16:19.971 435254 18011 9 0 6704 2025-03-19 08:16:19.971 2025-03-19 08:16:19.971 435254 20225 1 0 6705 2025-03-19 08:16:18.885 2025-03-19 08:16:18.885 435254 21044 9 0 6706 2025-03-19 08:16:19.352 2025-03-19 08:16:19.352 435254 21374 1 0 6707 2025-03-19 08:29:29.734 2025-03-19 08:29:29.734 435254 21416 30 0 6708 2025-03-19 08:15:59.389 2025-03-19 08:15:59.389 435255 712 1 0 6709 2025-03-19 08:20:32.384 2025-03-19 08:20:32.384 435255 19570 0 0 6710 2025-03-19 08:29:40.062 2025-03-19 08:29:40.062 435256 1439 30 0 6711 2025-03-19 08:17:08.929 2025-03-19 08:17:08.929 435256 1673 1 0 6712 2025-03-19 08:29:40.062 2025-03-19 08:29:40.062 435256 2735 3 0 6713 2025-03-19 08:30:47.616 2025-03-19 08:30:47.616 435256 18309 27 0 6714 2025-03-19 08:30:47.616 2025-03-19 08:30:47.616 435256 19777 3 0 6715 2025-03-19 08:29:32.636 2025-03-19 08:29:32.636 435257 642 9 0 6716 2025-03-19 08:29:32.636 2025-03-19 08:29:32.636 435257 1173 1 0 6717 2025-03-19 17:15:30.381 2025-03-19 17:15:30.381 435257 1970 45 0 6718 2025-03-19 08:20:37.756 2025-03-19 08:20:37.756 435257 5017 2 0 6719 2025-03-19 08:20:37.756 2025-03-19 08:20:37.756 435257 16259 21 0 6720 2025-03-19 09:56:08.529 2025-03-19 09:56:08.529 435257 16998 2 0 6721 2025-03-19 09:56:08.529 2025-03-19 09:56:08.529 435257 20646 21 0 6722 2025-03-19 17:15:30.381 2025-03-19 17:15:30.381 435257 21063 5 0 6723 2025-03-19 08:17:29.36 2025-03-19 08:17:29.36 435257 21421 1 0 6724 2025-03-19 08:50:25.262 2025-03-19 08:50:25.262 435258 1213 1 0 6725 2025-03-19 08:50:25.262 2025-03-19 08:50:25.262 435258 1738 9 0 6726 2025-03-19 08:17:39.225 2025-03-19 08:17:39.225 435258 4250 1 0 6727 2025-03-19 08:18:42.735 2025-03-19 08:18:42.735 435259 19842 1 0 6728 2025-03-19 18:24:37.404 2025-03-19 18:24:37.404 435260 910 45 0 6729 2025-03-19 08:29:46.858 2025-03-19 08:29:46.858 435260 1596 9 0 6730 2025-03-19 08:29:46.858 2025-03-19 08:29:46.858 435260 16667 1 0 6731 2025-03-19 18:24:37.404 2025-03-19 18:24:37.404 435260 21349 5 0 6732 2025-03-19 08:20:31.856 2025-03-19 08:20:31.856 435260 21683 1 0 6733 2025-03-19 08:45:01.396 2025-03-19 08:45:01.396 435261 617 2 0 6734 2025-03-19 08:36:58.135 2025-03-19 08:36:58.135 435261 623 75 0 6735 2025-03-19 09:50:24.729 2025-03-19 09:50:24.729 435261 672 10 0 6736 2025-03-19 08:53:50.889 2025-03-19 08:53:50.889 435261 701 2 0 6737 2025-03-20 00:20:09.718 2025-03-20 00:20:09.718 435261 760 9 0 6738 2025-03-20 00:20:09.718 2025-03-20 00:20:09.718 435261 776 1 0 6739 2025-03-19 09:42:09.355 2025-03-19 09:42:09.355 435261 802 1 0 6740 2025-03-19 08:51:12.505 2025-03-19 08:51:12.505 435261 814 1 0 6741 2025-03-19 08:36:29.133 2025-03-19 08:36:29.133 435261 848 2 0 6742 2025-03-19 08:36:26.991 2025-03-19 08:47:20.337 435261 998 23 0 6743 2025-03-19 10:30:23.307 2025-03-19 10:30:23.307 435261 1000 90 0 6744 2025-03-19 08:36:56.859 2025-03-19 08:36:56.859 435261 1030 8 0 6745 2025-03-19 09:16:24.071 2025-03-19 09:16:24.071 435261 1145 19 0 6746 2025-03-19 09:16:24.071 2025-03-19 09:16:24.071 435261 1411 2 0 6747 2025-03-19 08:51:13.914 2025-03-19 08:51:13.914 435261 1469 81 0 6748 2025-03-19 09:48:55.584 2025-03-19 09:48:55.584 435261 1505 8 0 6749 2025-03-19 08:36:59.093 2025-03-19 09:45:21.487 435261 1769 9 0 6750 2025-03-19 18:36:58.31 2025-03-19 18:36:58.31 435261 1833 5 0 6751 2025-03-19 08:36:27.888 2025-03-19 08:36:27.888 435261 2022 2 0 6752 2025-03-19 08:21:42.046 2025-03-19 08:21:42.046 435261 2065 100 0 6753 2025-03-19 08:36:28.035 2025-03-19 08:36:28.035 435261 2088 21 0 6754 2025-03-19 08:53:50.889 2025-03-19 08:53:50.889 435261 2347 19 0 6755 2025-03-19 13:48:18.931 2025-03-19 13:48:18.931 435261 2844 810 0 6756 2025-03-19 08:51:12.697 2025-03-19 08:51:12.697 435261 2963 8 0 6757 2025-03-19 08:36:28.822 2025-03-19 08:36:28.822 435261 3213 2 0 6758 2025-03-19 11:17:34.769 2025-03-19 11:17:34.769 435261 3461 1 0 6759 2025-03-19 08:30:13.688 2025-03-19 08:30:13.688 435261 3990 0 0 6760 2025-03-19 17:26:43.739 2025-03-19 17:26:43.739 435261 4043 19 0 6761 2025-03-19 18:20:17.462 2025-03-19 18:20:17.462 435261 4074 1 0 6762 2025-03-19 08:36:28.035 2025-03-19 08:36:28.035 435261 4079 2 0 6763 2025-03-19 08:36:27.105 2025-03-19 08:36:27.105 435261 4128 2 0 6764 2025-03-19 08:38:43.131 2025-03-19 08:38:43.131 435261 4166 36 0 6765 2025-03-19 08:36:29.133 2025-03-19 18:50:38.389 435261 4177 30 0 6766 2025-03-19 08:36:28.968 2025-03-19 08:36:28.968 435261 4633 2 0 6767 2025-03-19 08:36:26.744 2025-03-19 08:36:26.744 435261 4692 21 0 6768 2025-03-19 09:48:55.584 2025-03-19 09:48:55.584 435261 4763 69 0 6769 2025-03-19 09:23:38.615 2025-03-19 09:23:38.615 435261 5069 9 0 6770 2025-03-19 09:42:09.355 2025-03-19 09:42:09.355 435261 5085 10 0 6771 2025-03-19 08:36:27.105 2025-03-19 08:36:27.105 435261 5128 21 0 6772 2025-03-19 08:36:58.229 2025-03-19 08:36:58.229 435261 5865 8 0 6773 2025-03-19 10:03:50.542 2025-03-19 10:03:50.542 435261 6202 2 0 6774 2025-03-20 06:19:58.826 2025-03-20 06:19:58.826 435261 6260 19 0 6775 2025-03-19 13:43:40.607 2025-03-19 13:43:40.607 435261 6360 1 0 6776 2025-03-19 08:47:20.337 2025-03-19 08:47:20.337 435261 6471 19 0 6777 2025-03-19 11:17:34.374 2025-03-19 11:17:34.374 435261 7659 1 0 6778 2025-03-19 11:17:34.505 2025-03-19 11:17:34.505 435261 7667 10 0 6779 2025-03-19 08:36:27.225 2025-03-19 08:36:27.225 435261 7674 21 0 6780 2025-03-19 10:42:08.003 2025-03-19 10:42:08.003 435261 8508 9 0 6781 2025-03-19 10:03:50.542 2025-03-19 10:03:50.542 435261 8870 19 0 6782 2025-03-19 08:51:13.914 2025-03-19 08:51:13.914 435261 9167 9 0 6783 2025-03-19 10:30:23.307 2025-03-19 10:30:23.307 435261 9335 10 0 6784 2025-03-19 08:36:57.111 2025-03-19 08:36:57.111 435261 9341 8 0 6785 2025-03-19 08:36:59.351 2025-03-19 08:36:59.351 435261 9350 8 0 6786 2025-03-19 11:17:34.769 2025-03-19 11:17:34.769 435261 9874 10 0 6787 2025-03-19 08:36:57.31 2025-03-19 08:36:57.31 435261 10398 75 0 6788 2025-03-19 18:50:38.389 2025-03-19 18:50:38.389 435261 10661 1 0 6789 2025-03-19 08:36:56.982 2025-03-19 08:36:56.982 435261 10690 75 0 6790 2025-03-19 08:46:22.964 2025-03-19 08:46:22.964 435261 10862 2 0 6791 2025-03-19 08:36:58.135 2025-03-19 08:36:58.135 435261 11263 8 0 6792 2025-03-19 08:45:01.396 2025-03-19 08:45:01.396 435261 11378 18 0 6793 2025-03-19 13:48:18.931 2025-03-19 13:48:18.931 435261 12169 90 0 6794 2025-03-19 08:36:27.225 2025-03-19 08:36:27.225 435261 12272 2 0 6795 2025-03-19 08:36:56.982 2025-03-19 08:36:56.982 435261 12356 8 0 6796 2025-03-19 09:17:22.708 2025-03-19 09:17:22.708 435261 12507 3 0 6797 2025-03-19 09:17:22.708 2025-03-19 09:17:22.708 435261 13055 30 0 6798 2025-03-19 11:17:34.913 2025-03-19 11:17:34.913 435261 13398 1 0 6799 2025-03-19 08:36:57.889 2025-03-19 08:36:57.889 435261 13587 75 0 6800 2025-03-19 12:46:55.815 2025-03-19 12:46:55.815 435261 14657 1 0 6801 2025-03-19 08:36:57.212 2025-03-19 08:36:57.212 435261 15119 8 0 6802 2025-03-19 08:36:57.889 2025-03-19 08:36:57.889 435261 15147 8 0 6803 2025-03-19 08:36:57.212 2025-03-19 08:36:57.212 435261 16424 75 0 6804 2025-03-19 08:36:56.859 2025-03-19 08:36:56.859 435261 16442 75 0 6805 2025-03-19 08:36:59.351 2025-03-19 08:36:59.351 435261 16598 75 0 6806 2025-03-19 08:36:57.111 2025-03-19 08:36:57.111 435261 16816 75 0 6807 2025-03-19 09:23:38.615 2025-03-19 09:23:38.615 435261 16876 1 0 6808 2025-03-19 13:43:40.607 2025-03-19 13:43:40.607 435261 16988 9 0 6809 2025-03-19 08:51:12.505 2025-03-19 08:51:12.505 435261 17001 0 0 6810 2025-03-19 08:36:58.229 2025-03-19 08:36:58.229 435261 17064 75 0 6811 2025-03-19 18:20:17.462 2025-03-19 18:20:17.462 435261 17494 5 0 6812 2025-03-19 17:26:43.739 2025-03-19 18:36:58.31 435261 17638 3 0 6813 2025-03-19 08:36:28.968 2025-03-19 08:36:28.968 435261 18393 21 0 6814 2025-03-20 06:19:58.826 2025-03-20 06:19:58.826 435261 18426 2 0 6815 2025-03-19 08:36:58.072 2025-03-19 08:36:58.072 435261 18601 8 0 6816 2025-03-19 08:36:59.093 2025-03-19 08:36:59.093 435261 18615 75 0 6817 2025-03-19 08:38:43.131 2025-03-19 08:38:43.131 435261 18618 4 0 6818 2025-03-19 08:51:12.697 2025-03-19 08:51:12.697 435261 18637 1 0 6819 2025-03-19 12:46:55.815 2025-03-19 12:46:55.815 435261 19346 0 0 6820 2025-03-19 11:17:35.038 2025-03-19 11:17:35.038 435261 19394 10 0 6821 2025-03-19 08:36:59.202 2025-03-19 08:36:59.202 435261 19417 75 0 6822 2025-03-19 09:43:15.315 2025-03-19 09:43:15.315 435261 19735 19 0 6823 2025-03-19 09:43:15.315 2025-03-19 09:43:15.315 435261 19992 2 0 6824 2025-03-19 10:11:44.64 2025-03-19 10:11:44.64 435261 20019 27 0 6825 2025-03-19 11:38:05.398 2025-03-19 11:38:05.398 435261 20190 2 0 6826 2025-03-19 11:38:05.398 2025-03-19 11:38:05.398 435261 20370 19 0 6827 2025-03-19 08:36:59.202 2025-03-19 08:36:59.202 435261 20409 8 0 6828 2025-03-19 08:30:13.688 2025-03-19 08:30:13.688 435261 20603 1 0 6829 2025-03-19 08:46:22.964 2025-03-19 08:46:22.964 435261 20619 14 0 6830 2025-03-19 09:50:24.729 2025-03-19 09:50:24.729 435261 20663 91 0 6831 2025-03-19 11:17:34.505 2025-03-19 11:17:34.505 435261 20674 1 0 6832 2025-03-19 11:17:34.374 2025-03-19 11:17:34.374 435261 20734 10 0 6833 2025-03-19 08:36:58.072 2025-03-19 08:36:58.072 435261 20912 75 0 6834 2025-03-19 08:36:26.894 2025-03-19 08:36:26.894 435261 20998 21 0 6835 2025-03-19 08:36:26.744 2025-03-19 08:36:26.744 435261 21003 2 0 6836 2025-03-19 11:17:35.038 2025-03-19 11:17:35.038 435261 21064 1 0 6837 2025-03-19 10:11:44.64 2025-03-19 10:11:44.64 435261 21072 3 0 6838 2025-03-19 09:45:21.487 2025-03-19 09:45:21.487 435261 21233 9 0 6839 2025-03-19 08:36:26.991 2025-03-19 08:36:26.991 435261 21238 2 0 6840 2025-03-19 11:17:34.913 2025-03-19 11:17:34.913 435261 21526 10 0 6841 2025-03-19 08:36:26.894 2025-03-19 08:36:26.894 435261 21556 2 0 6842 2025-03-19 10:42:08.003 2025-03-19 10:42:08.003 435261 21670 1 0 6843 2025-03-19 08:36:27.888 2025-03-19 08:36:27.888 435261 21713 21 0 6844 2025-03-19 08:36:28.822 2025-03-19 08:36:28.822 435261 21791 21 0 6845 2025-03-19 08:36:57.31 2025-03-19 08:36:57.31 435261 21832 8 0 6846 2025-03-19 08:23:05.59 2025-03-19 08:23:05.59 435262 1469 97 0 6847 2025-03-19 08:52:22.386 2025-03-19 08:52:22.386 435263 617 8 0 6848 2025-03-19 09:08:35.42 2025-03-19 09:08:35.42 435263 667 1 0 6849 2025-03-19 09:08:35.594 2025-03-19 09:08:35.594 435263 713 9 0 6850 2025-03-19 11:12:08.017 2025-03-19 11:12:08.017 435263 900 2 0 6851 2025-03-19 10:47:47.654 2025-03-19 10:47:47.654 435263 1003 4 0 6852 2025-03-19 11:12:08.017 2025-03-19 11:12:08.017 435263 1564 19 0 6853 2025-03-19 12:35:15.283 2025-03-19 12:35:15.283 435263 1615 1 0 6854 2025-03-19 08:52:22.386 2025-03-19 08:52:22.386 435263 1620 1 0 6855 2025-03-19 09:08:35.758 2025-03-19 09:08:35.758 435263 2718 9 0 6856 2025-03-19 08:44:01.222 2025-03-19 08:44:01.222 435263 2774 2 0 6857 2025-03-19 08:44:01.222 2025-03-19 08:44:01.222 435263 3371 18 0 6858 2025-03-19 08:36:31.81 2025-03-19 08:36:31.81 435263 5175 21 0 6859 2025-03-19 09:16:42.086 2025-03-19 09:16:42.086 435263 6191 19 0 6860 2025-03-19 09:08:35.933 2025-03-19 09:08:35.933 435263 9438 1 0 6861 2025-03-19 08:36:32.173 2025-03-19 08:36:32.173 435263 10849 2 0 6862 2025-03-19 08:52:22.827 2025-03-19 08:52:22.827 435263 10979 81 0 6863 2025-03-19 09:08:35.758 2025-03-19 09:08:35.758 435263 10986 1 0 6864 2025-03-19 09:08:35.933 2025-03-19 09:08:35.933 435263 11522 9 0 6865 2025-03-19 08:36:32.173 2025-03-19 08:36:32.173 435263 12291 21 0 6866 2025-03-19 08:36:31.81 2025-03-19 08:36:31.81 435263 12736 2 0 6867 2025-03-19 08:52:22.827 2025-03-19 08:52:22.827 435263 17552 9 0 6868 2025-03-19 08:36:31.68 2025-03-19 08:36:31.68 435263 18500 2 0 6869 2025-03-19 08:52:22.2 2025-03-19 08:52:22.2 435263 19668 0 0 6870 2025-03-19 08:36:31.68 2025-03-19 08:36:31.68 435263 20205 21 0 6871 2025-03-19 08:52:22.2 2025-03-19 08:52:22.2 435263 20381 1 0 6872 2025-03-19 10:47:47.654 2025-03-19 10:47:47.654 435263 20616 36 0 6873 2025-03-19 12:35:15.283 2025-03-19 12:35:15.283 435263 20998 5 0 6874 2025-03-19 09:16:42.086 2025-03-19 09:16:42.086 435263 21379 2 0 6875 2025-03-19 09:08:35.42 2025-03-19 09:08:35.42 435263 21556 9 0 6876 2025-03-19 09:08:35.594 2025-03-19 09:08:35.594 435263 21815 1 0 6877 2025-03-19 08:23:32.665 2025-03-19 08:23:32.665 435263 21832 100 0 6878 2025-03-19 08:24:26.094 2025-03-19 08:24:26.094 435264 14080 2 0 6879 2025-03-19 08:23:48.823 2025-03-19 08:23:48.823 435264 19813 1 0 6880 2025-03-20 00:20:35.152 2025-03-20 00:20:35.152 435264 19857 1 0 6881 2025-03-20 00:20:35.152 2025-03-20 00:20:35.152 435264 20433 9 0 6882 2025-03-19 08:24:26.094 2025-03-19 08:24:26.094 435264 20892 0 0 6883 2025-03-19 08:23:55.173 2025-03-19 08:23:55.173 435265 15556 1 0 6884 2025-03-19 08:25:04.879 2025-03-19 08:25:04.879 435266 18011 1 0 6885 2025-03-19 08:26:19.911 2025-03-19 08:26:19.911 435267 1094 1 0 6886 2025-03-19 08:39:56.092 2025-03-19 08:39:56.092 435268 19813 9 0 6887 2025-03-19 08:26:49.398 2025-03-19 08:26:49.398 435268 19829 1 0 6888 2025-03-19 08:39:56.092 2025-03-19 08:39:56.092 435268 21202 1 0 6889 2025-03-19 08:28:10.618 2025-03-19 08:28:10.618 435269 649 1 0 6890 2025-03-19 08:33:40.973 2025-03-19 08:33:40.973 435269 5779 2 0 6891 2025-03-19 08:33:40.973 2025-03-19 08:33:40.973 435269 14731 19 0 6892 2025-03-19 09:03:56.504 2025-03-19 09:03:56.504 435270 1092 8 0 6893 2025-03-19 08:54:35.148 2025-03-19 08:54:35.148 435270 6430 2 0 6894 2025-03-19 08:54:35.148 2025-03-19 08:54:35.148 435270 12821 19 0 6895 2025-03-19 09:03:56.504 2025-03-19 09:03:56.504 435270 18500 75 0 6896 2025-03-19 08:28:13.415 2025-03-19 08:28:13.415 435270 20596 1 0 6897 2025-03-19 08:33:35.297 2025-03-19 08:33:35.297 435271 691 1 0 6898 2025-03-19 08:28:48.031 2025-03-19 08:28:48.031 435271 1454 1 0 6899 2025-03-19 08:52:05.392 2025-03-19 08:52:05.392 435271 13143 9 0 6900 2025-03-19 08:33:35.297 2025-03-19 08:33:35.297 435271 17226 5 0 6901 2025-03-19 08:52:05.392 2025-03-19 08:52:05.392 435271 20852 1 0 6902 2025-03-19 12:57:44.116 2025-03-19 12:57:44.116 435272 636 1 0 6903 2025-03-20 00:20:28.63 2025-03-20 00:20:28.63 435272 666 1 0 6904 2025-03-19 10:33:08.215 2025-03-19 10:33:08.215 435272 827 10 0 6905 2025-03-19 08:32:09.642 2025-03-19 08:32:09.642 435272 937 1 0 6906 2025-03-20 00:20:28.63 2025-03-20 00:20:28.63 435272 4292 9 0 6907 2025-03-19 08:32:09.642 2025-03-19 08:32:09.642 435272 5978 6 0 6908 2025-03-19 08:30:39.742 2025-03-19 08:30:39.742 435272 12169 0 0 6909 2025-03-19 08:29:45.807 2025-03-19 08:29:45.807 435272 13759 1 0 6910 2025-03-19 12:57:44.116 2025-03-19 12:57:44.116 435272 13865 8 0 6911 2025-03-19 12:57:43.901 2025-03-19 12:57:43.901 435272 15624 1 0 6912 2025-03-19 09:42:32.226 2025-03-19 09:42:32.226 435272 16956 1 0 6913 2025-03-19 08:30:39.742 2025-03-19 08:30:39.742 435272 17392 2 0 6914 2025-03-19 10:33:08.215 2025-03-19 10:33:08.215 435272 18673 90 0 6915 2025-03-19 09:42:32.226 2025-03-19 09:42:32.226 435272 18772 10 0 6916 2025-03-19 12:57:43.901 2025-03-19 12:57:43.901 435272 21014 0 0 6917 2025-03-19 08:29:52.301 2025-03-19 08:29:52.301 435273 18402 1 0 6918 2025-03-19 08:41:45.48 2025-03-19 08:41:45.48 435274 623 69 0 6919 2025-03-19 09:05:39.977 2025-03-19 09:05:39.977 435274 717 30 0 6920 2025-03-19 09:22:26.964 2025-03-19 09:22:26.964 435274 960 1 0 6921 2025-03-19 18:18:13.455 2025-03-19 18:18:13.455 435274 1737 5 0 6922 2025-03-19 09:22:26.964 2025-03-19 09:22:26.964 435274 2322 0 0 6923 2025-03-19 09:22:27.141 2025-03-19 09:22:27.141 435274 5057 1 0 6924 2025-03-19 16:55:32.038 2025-03-19 16:55:32.038 435274 5519 19 0 6925 2025-03-19 09:22:30.648 2025-03-19 09:22:30.648 435274 5865 81 0 6926 2025-03-19 18:18:13.455 2025-03-19 18:18:13.455 435274 6777 45 0 6927 2025-03-19 09:22:30.648 2025-03-19 09:22:30.648 435274 7558 9 0 6928 2025-03-19 18:18:12.886 2025-03-19 18:18:12.886 435274 9307 45 0 6929 2025-03-19 11:46:10.33 2025-03-19 11:46:10.33 435274 9366 14 0 6930 2025-03-19 09:05:43.145 2025-03-19 09:05:43.145 435274 14515 21 0 6931 2025-03-19 09:05:39.977 2025-03-19 09:05:39.977 435274 14650 3 0 6932 2025-03-19 18:20:44.592 2025-03-19 18:20:44.592 435274 16154 2 0 6933 2025-03-19 18:20:44.592 2025-03-19 18:20:44.592 435274 16410 19 0 6934 2025-03-19 09:05:43.145 2025-03-19 09:05:43.145 435274 16571 2 0 6935 2025-03-19 18:18:12.886 2025-03-19 18:18:12.886 435274 16808 5 0 6936 2025-03-19 09:05:25.061 2025-03-19 09:05:25.061 435274 17533 30 0 6937 2025-03-19 09:05:24.536 2025-03-19 09:05:24.536 435274 20133 3 0 6938 2025-03-19 11:46:10.33 2025-03-19 11:46:10.33 435274 20198 2 0 6939 2025-03-19 09:05:25.061 2025-03-19 09:05:25.061 435274 20614 3 0 6940 2025-03-19 09:05:24.536 2025-03-19 09:05:24.536 435274 20655 30 0 6941 2025-03-19 08:30:06.943 2025-03-19 08:30:06.943 435274 20717 1 0 6942 2025-03-19 08:41:45.48 2025-03-19 08:41:45.48 435274 21088 8 0 6943 2025-03-19 09:22:27.141 2025-03-19 09:22:27.141 435274 21148 8 0 6944 2025-03-19 16:55:32.038 2025-03-19 16:55:32.038 435274 21575 2 0 6945 2025-03-19 09:03:25.449 2025-03-19 09:03:25.449 435275 910 30 0 6946 2025-03-19 09:43:43.702 2025-03-19 09:43:43.702 435275 1620 18 0 6947 2025-03-19 09:03:25.544 2025-03-19 09:03:25.544 435275 1729 30 0 6948 2025-03-19 08:30:46.96 2025-03-19 08:30:46.96 435275 1733 1 0 6949 2025-03-19 09:03:25.58 2025-03-19 09:03:25.58 435275 2735 3 0 6950 2025-03-19 09:56:13.912 2025-03-19 09:56:13.912 435275 10944 21 0 6951 2025-03-19 09:03:25.544 2025-03-19 09:03:25.544 435275 11164 3 0 6952 2025-03-19 09:43:43.702 2025-03-19 09:43:43.702 435275 11527 2 0 6953 2025-03-19 09:56:13.912 2025-03-19 09:56:13.912 435275 16556 2 0 6954 2025-03-19 09:03:25.449 2025-03-19 09:03:25.449 435275 20840 3 0 6955 2025-03-19 09:03:25.58 2025-03-19 09:03:25.58 435275 21131 30 0 6956 2025-03-19 09:16:59.653 2025-03-19 09:16:59.653 435276 917 0 10 6957 2025-03-19 08:30:49.936 2025-03-19 08:30:49.936 435276 6268 100 0 6958 2025-03-19 08:42:34.634 2025-03-19 08:42:34.634 435276 20504 9 0 6959 2025-03-19 08:42:34.634 2025-03-19 08:42:34.634 435276 20861 1 0 6960 2025-03-19 09:03:34.681 2025-03-19 09:03:34.681 435277 777 80 0 6961 2025-03-19 08:32:11.906 2025-03-19 08:32:11.906 435277 1082 1 0 6962 2025-03-19 09:03:34.681 2025-03-19 09:03:34.681 435277 1647 9 0 6963 2025-03-19 08:37:25.526 2025-03-19 08:37:25.526 435277 4802 9 0 6964 2025-03-19 08:37:25.526 2025-03-19 08:37:25.526 435277 5578 1 0 6965 2025-03-19 08:40:11.313 2025-03-19 08:40:11.313 435278 11158 2 0 6966 2025-03-19 08:32:19.18 2025-03-19 08:32:19.18 435278 20970 1 0 6967 2025-03-19 08:40:11.313 2025-03-19 08:40:11.313 435278 21547 19 0 6968 2025-03-19 08:32:43.698 2025-03-19 08:32:43.698 435279 7587 1 0 6969 2025-03-19 08:33:25.224 2025-03-19 08:33:25.224 435280 1120 1 0 6970 2025-03-19 08:37:45.424 2025-03-19 08:37:45.424 435280 6260 8 0 6971 2025-03-19 08:37:45.239 2025-03-19 08:37:45.239 435280 17014 1 0 6972 2025-03-19 08:37:45.424 2025-03-19 08:37:45.424 435280 17817 1 0 6973 2025-03-19 08:37:45.239 2025-03-19 08:37:45.239 435280 20646 0 0 6974 2025-03-19 08:51:00.243 2025-03-19 08:51:00.243 435281 1638 3 0 6975 2025-03-19 08:33:40.994 2025-03-19 08:33:40.994 435281 10484 1 0 6976 2025-03-19 08:51:00.243 2025-03-19 08:51:00.243 435281 10731 29 0 6977 2025-03-19 08:40:46.463 2025-03-19 08:40:46.463 435282 2640 1 0 6978 2025-03-19 08:40:46.463 2025-03-19 08:40:46.463 435282 4173 9 0 6979 2025-03-19 08:35:08.29 2025-03-19 08:35:08.29 435282 12566 1 0 6980 2025-03-19 08:51:31.367 2025-03-19 08:51:31.367 435283 7960 1 0 6981 2025-03-19 08:35:08.673 2025-03-19 08:35:08.673 435283 11819 1 0 6982 2025-03-19 08:51:31.367 2025-03-19 08:51:31.367 435283 16513 7 0 6983 2025-03-19 08:39:45.102 2025-03-19 09:28:34.044 435284 650 76 0 6984 2025-03-19 08:54:16.589 2025-03-19 08:54:16.589 435284 760 19 0 6985 2025-03-20 08:32:15.171 2025-03-20 08:32:15.171 435284 954 2 0 6986 2025-03-20 08:32:15.171 2025-03-20 08:32:15.171 435284 1401 14 0 6987 2025-03-19 12:18:26.499 2025-03-19 12:18:26.499 435284 1823 19 0 6988 2025-03-19 09:28:34.651 2025-03-19 09:28:34.651 435284 2513 9 0 6989 2025-03-19 08:37:39.612 2025-03-19 08:37:39.612 435284 4345 1 0 6990 2025-03-19 09:28:34.651 2025-03-19 09:28:34.651 435284 7674 1 0 6991 2025-03-20 02:26:51.212 2025-03-20 02:26:51.212 435284 8376 45 0 6992 2025-03-19 08:37:41.11 2025-03-19 08:37:41.11 435284 9843 9 0 6993 2025-03-19 09:16:46.409 2025-03-19 09:16:46.409 435284 9874 2 0 6994 2025-03-19 08:35:15.102 2025-03-19 08:35:15.102 435284 10821 5 0 6995 2025-03-19 08:37:41.11 2025-03-19 08:37:41.11 435284 11298 81 0 6996 2025-03-19 10:47:54.265 2025-03-19 10:47:54.265 435284 11609 4 0 6997 2025-03-19 08:37:39.422 2025-03-19 08:37:39.422 435284 11967 1 0 6998 2025-03-20 02:26:51.212 2025-03-20 02:26:51.212 435284 12097 5 0 6999 2025-03-19 09:16:46.409 2025-03-19 09:16:46.409 435284 12769 19 0 7000 2025-03-19 10:47:54.265 2025-03-19 10:47:54.265 435284 14669 36 0 7001 2025-03-19 09:28:34.044 2025-03-19 12:18:26.499 435284 16942 11 0 7002 2025-03-19 08:37:39.422 2025-03-19 08:37:39.422 435284 18618 0 0 7003 2025-03-19 08:37:39.612 2025-03-19 08:37:39.612 435284 18772 8 0 7004 2025-03-19 08:39:45.102 2025-03-19 08:39:45.102 435284 20710 8 0 7005 2025-03-19 08:54:16.589 2025-03-19 08:54:16.589 435284 21405 2 0 7006 2025-03-19 09:16:54.826 2025-03-19 09:16:54.826 435285 664 1 0 7007 2025-03-19 08:36:01.561 2025-03-19 08:36:01.561 435285 21058 1 0 7008 2025-03-19 09:16:54.631 2025-03-19 09:16:54.631 435285 21159 1 0 7009 2025-03-19 09:16:54.631 2025-03-19 09:16:54.631 435285 21281 0 0 7010 2025-03-19 09:16:54.826 2025-03-19 09:16:54.826 435285 21521 8 0 7011 2025-03-19 08:36:14.539 2025-03-19 08:36:14.539 435286 894 1 0 7012 2025-03-20 00:20:29.803 2025-03-20 00:20:29.803 435286 3417 1 0 7013 2025-03-20 00:20:29.803 2025-03-20 00:20:29.803 435286 13174 9 0 7014 2025-03-19 08:40:38.523 2025-03-19 08:40:38.523 435286 13399 1 0 7015 2025-03-19 08:40:38.523 2025-03-19 08:40:38.523 435286 17050 5 0 7016 2025-03-19 08:44:22.056 2025-03-19 08:44:22.056 435287 17046 3 0 7017 2025-03-19 08:36:38.754 2025-03-19 08:36:38.754 435287 18441 1 0 7018 2025-03-19 08:44:22.056 2025-03-19 08:44:22.056 435287 21402 30 0 7019 2025-03-19 22:45:32.642 2025-03-19 22:45:32.642 435288 937 2 0 7020 2025-03-19 08:47:15.426 2025-03-19 08:47:15.426 435288 6463 9 0 7021 2025-03-19 13:49:52.219 2025-03-19 13:49:52.219 435288 8508 3 0 7022 2025-03-19 08:47:15.426 2025-03-19 08:47:15.426 435288 12278 1 0 7023 2025-03-19 08:36:52.467 2025-03-19 08:36:52.467 435288 15060 1 0 7024 2025-03-19 13:49:52.219 2025-03-19 13:49:52.219 435288 16816 30 0 7025 2025-03-19 22:45:32.642 2025-03-19 22:45:32.642 435288 19980 19 0 7026 2025-03-19 08:36:59.377 2025-03-19 08:36:59.377 435290 700 1 0 7027 2025-03-19 08:58:20.077 2025-03-19 08:58:20.077 435290 1890 3 0 7028 2025-03-19 08:58:20.077 2025-03-19 08:58:20.077 435290 21683 29 0 7029 2025-03-19 08:45:11.41 2025-03-19 08:45:11.41 435291 1447 9 0 7030 2025-03-19 08:45:12.721 2025-03-19 08:45:12.721 435291 1960 9 0 7031 2025-03-19 08:45:12.721 2025-03-19 08:45:12.721 435291 2748 1 0 7032 2025-03-19 08:37:49.088 2025-03-19 08:37:49.088 435291 5427 10 0 7033 2025-03-19 08:50:54.674 2025-03-19 08:50:54.674 435291 6202 2 0 7034 2025-03-19 08:45:11.41 2025-03-19 08:45:11.41 435291 9166 1 0 7035 2025-03-19 08:45:12.401 2025-03-19 08:45:12.401 435291 11648 1 0 7036 2025-03-19 08:45:11.843 2025-03-19 08:45:11.843 435291 12049 1 0 7037 2025-03-19 08:45:10.911 2025-03-19 08:45:10.911 435291 12245 1 0 7038 2025-03-19 08:45:10.911 2025-03-19 08:45:10.911 435291 17838 9 0 7039 2025-03-19 08:45:11.843 2025-03-19 08:45:11.843 435291 18402 9 0 7040 2025-03-19 08:50:54.674 2025-03-19 08:50:54.674 435291 21599 19 0 7041 2025-03-19 08:45:12.401 2025-03-19 08:45:12.401 435291 21814 9 0 7042 2025-03-19 18:51:35.042 2025-03-19 18:51:35.042 435292 626 9 0 7043 2025-03-19 08:38:56.895 2025-03-19 08:38:56.895 435292 828 0 0 7044 2025-03-19 11:42:16.192 2025-03-19 11:42:16.192 435292 959 3 0 7045 2025-03-19 08:39:46.754 2025-03-19 08:39:46.754 435292 4259 27 0 7046 2025-03-19 08:43:31.603 2025-03-19 08:43:31.603 435292 5359 30 0 7047 2025-03-19 18:41:00.521 2025-03-19 18:41:00.521 435292 7978 1 0 7048 2025-03-19 08:39:46.754 2025-03-19 08:39:46.754 435292 8472 243 0 7049 2025-03-19 19:03:45.897 2025-03-19 19:03:45.897 435292 9261 1 0 7050 2025-03-19 18:51:35.042 2025-03-19 18:51:35.042 435292 11561 1 0 7051 2025-03-19 19:36:53.077 2025-03-19 19:36:53.077 435292 12169 9 0 7052 2025-03-19 11:42:16.192 2025-03-19 11:42:16.192 435292 14370 23 0 7053 2025-03-19 19:33:15.268 2025-03-19 19:33:15.268 435292 15719 1 0 7054 2025-03-19 08:43:31.603 2025-03-19 08:43:31.603 435292 16126 3 0 7055 2025-03-19 08:39:46.388 2025-03-19 08:39:46.388 435292 17148 3 0 7056 2025-03-19 19:36:53.077 2025-03-19 19:36:53.077 435292 20220 1 0 7057 2025-03-19 18:34:03.43 2025-03-19 18:34:03.43 435292 20225 1 0 7058 2025-03-19 18:34:03.43 2025-03-19 18:34:03.43 435292 20837 5 0 7059 2025-03-19 19:03:45.897 2025-03-19 19:03:45.897 435292 21041 9 0 7060 2025-03-19 18:41:00.521 2025-03-19 18:41:00.521 435292 21139 5 0 7061 2025-03-19 08:39:46.388 2025-03-19 08:39:46.388 435292 21164 27 0 7062 2025-03-19 19:33:15.268 2025-03-19 19:33:15.268 435292 21540 9 0 7063 2025-03-19 08:48:27.268 2025-03-19 08:48:27.268 435293 13327 0 0 7064 2025-03-19 08:38:22.897 2025-03-19 08:38:22.897 435293 13903 1 0 7065 2025-03-20 00:20:30.535 2025-03-20 00:20:30.535 435293 17148 1 0 7066 2025-03-19 08:48:27.268 2025-03-19 08:48:27.268 435293 18956 2 0 7067 2025-03-20 00:20:30.535 2025-03-20 00:20:30.535 435293 20185 9 0 7068 2025-03-19 08:44:26.577 2025-03-19 08:44:26.577 435294 854 1 0 7069 2025-03-19 15:58:27.068 2025-03-19 15:58:27.068 435294 880 0 0 7070 2025-03-19 08:44:26.122 2025-03-19 08:44:26.122 435294 1326 9 0 7071 2025-03-19 08:44:26.122 2025-03-19 08:44:26.122 435294 2206 1 0 7072 2025-03-19 08:44:27.543 2025-03-19 08:44:27.543 435294 2537 9 0 7073 2025-03-19 08:38:29.409 2025-03-19 08:38:29.409 435294 3353 1 0 7074 2025-03-19 08:44:27.257 2025-03-19 08:44:27.257 435294 7966 1 0 7075 2025-03-19 08:44:27.257 2025-03-19 08:44:27.257 435294 8376 9 0 7076 2025-03-19 08:44:26.577 2025-03-19 08:44:26.577 435294 9262 9 0 7077 2025-03-19 08:44:27.543 2025-03-19 08:44:27.543 435294 10096 1 0 7078 2025-03-19 08:44:28.817 2025-03-19 08:44:28.817 435294 13143 1 0 7079 2025-03-19 08:44:28.817 2025-03-19 08:44:28.817 435294 16858 9 0 7080 2025-03-19 15:58:27.068 2025-03-19 15:58:27.068 435294 18330 2 0 7081 2025-03-19 08:56:07.793 2025-03-19 08:56:07.793 435295 770 2 0 7082 2025-03-19 08:40:19.603 2025-03-19 08:40:19.603 435295 1801 1 0 7083 2025-03-19 11:06:42.916 2025-03-19 11:06:42.916 435295 3392 9 0 7084 2025-03-19 08:56:07.793 2025-03-19 08:56:07.793 435295 9346 21 0 7085 2025-03-19 09:17:03.425 2025-03-19 09:17:03.425 435295 9350 19 0 7086 2025-03-19 09:17:03.425 2025-03-19 09:17:03.425 435295 11716 2 0 7087 2025-03-19 10:27:41.682 2025-03-19 10:27:41.682 435295 14669 3 0 7088 2025-03-19 10:27:41.682 2025-03-19 10:27:41.682 435295 17519 23 0 7089 2025-03-19 11:06:42.916 2025-03-19 11:06:42.916 435295 19512 1 0 7090 2025-03-19 08:40:26.727 2025-03-19 08:40:26.727 435296 16834 1 0 7091 2025-03-19 08:44:24.995 2025-03-19 08:44:24.995 435297 4459 30 0 7092 2025-03-19 08:44:24.995 2025-03-19 08:44:24.995 435297 7847 3 0 7093 2025-03-19 08:40:27.188 2025-03-19 08:40:27.188 435297 16353 1 0 7094 2025-03-19 08:57:51.64 2025-03-19 08:57:51.64 435297 19829 3 0 7095 2025-03-19 08:57:51.64 2025-03-19 08:57:51.64 435297 21281 23 0 7096 2025-03-19 08:47:22.627 2025-03-19 08:47:22.627 435298 1145 1 0 7097 2025-03-19 08:47:22.627 2025-03-19 08:47:22.627 435298 13038 9 0 7098 2025-03-19 08:41:20.739 2025-03-19 08:41:20.739 435298 14220 1 0 7099 2025-03-19 08:54:52.981 2025-03-19 08:54:52.981 435299 711 2 0 7100 2025-03-19 18:18:28.573 2025-03-19 18:18:28.573 435299 4323 45 0 7101 2025-03-19 08:41:22.71 2025-03-19 08:41:22.71 435299 4776 1 0 7102 2025-03-19 08:54:52.981 2025-03-19 08:54:52.981 435299 11776 21 0 7103 2025-03-19 18:18:28.573 2025-03-19 18:18:28.573 435299 21020 5 0 7104 2025-03-19 12:44:06.253 2025-03-19 12:44:06.253 435300 12356 9 0 7105 2025-03-19 12:44:06.253 2025-03-19 12:44:06.253 435300 15100 1 0 7106 2025-03-19 08:42:26.133 2025-03-19 08:42:26.133 435300 16842 1 0 7107 2025-03-19 08:47:05.995 2025-03-19 08:47:05.995 435301 11491 1 0 7108 2025-03-19 08:43:04.824 2025-03-19 08:43:04.824 435301 16724 1 0 7109 2025-03-19 08:47:05.995 2025-03-19 08:47:05.995 435301 21442 9 0 7110 2025-03-19 08:44:38.015 2025-03-19 08:44:38.015 435302 2711 4 0 7111 2025-03-19 08:44:38.015 2025-03-19 08:44:38.015 435302 14791 0 0 7112 2025-03-19 08:43:24.556 2025-03-19 08:43:24.556 435302 21408 1 0 7113 2025-03-19 08:44:05.194 2025-03-19 08:44:05.194 435303 1425 1 0 7114 2025-03-19 08:57:48.807 2025-03-19 08:57:48.807 435303 4378 23 0 7115 2025-03-19 08:46:04.477 2025-03-19 08:46:04.477 435303 17064 27 0 7116 2025-03-19 08:46:04.477 2025-03-19 08:46:04.477 435303 17201 3 0 7117 2025-03-19 08:57:48.807 2025-03-19 08:57:48.807 435303 21114 3 0 7118 2025-03-19 08:44:22.175 2025-03-19 08:44:22.175 435304 712 1 0 7119 2025-03-19 08:47:41.693 2025-03-19 08:47:41.693 435304 10934 27 0 7120 2025-03-19 08:47:41.693 2025-03-19 08:47:41.693 435304 21526 3 0 7121 2025-03-19 08:44:38.473 2025-03-19 08:44:38.473 435305 1836 1 0 7122 2025-03-19 08:46:07.275 2025-03-19 08:46:07.275 435305 8726 27 0 7123 2025-03-19 08:46:07.275 2025-03-19 08:46:07.275 435305 17095 3 0 7124 2025-03-19 08:48:40.151 2025-03-19 08:48:40.151 435306 2233 0 0 7125 2025-03-19 08:48:07.922 2025-03-19 08:48:07.922 435306 19403 1 0 7126 2025-03-19 08:48:46.481 2025-03-19 08:48:46.481 435307 17291 1 0 7127 2025-03-19 08:54:56.836 2025-03-19 08:54:56.836 435308 700 21 0 7128 2025-03-19 08:54:57.767 2025-03-19 08:54:57.767 435308 713 2 0 7129 2025-03-19 08:54:56.7 2025-03-19 08:54:56.7 435308 763 21 0 7130 2025-03-19 08:54:57.867 2025-03-19 08:54:57.867 435308 876 21 0 7131 2025-03-19 08:54:57.767 2025-03-19 08:54:57.767 435308 1010 21 0 7132 2025-03-19 08:54:56.7 2025-03-19 08:54:56.7 435308 2327 2 0 7133 2025-03-19 08:54:57.98 2025-03-19 08:54:57.98 435308 5825 21 0 7134 2025-03-19 08:54:57.051 2025-03-19 08:54:57.051 435308 7818 2 0 7135 2025-03-19 08:54:56.95 2025-03-19 08:54:56.95 435308 12188 2 0 7136 2025-03-19 08:54:56.836 2025-03-19 08:54:56.836 435308 12921 2 0 7137 2025-03-19 08:54:57.867 2025-03-19 08:54:57.867 435308 14688 2 0 7138 2025-03-19 08:54:57.98 2025-03-19 08:54:57.98 435308 15544 2 0 7139 2025-03-19 08:49:11.482 2025-03-19 08:49:11.482 435308 17568 0 0 7140 2025-03-19 08:54:57.051 2025-03-19 08:54:57.051 435308 18618 21 0 7141 2025-03-19 08:54:56.95 2025-03-19 08:54:56.95 435308 20781 21 0 7142 2025-03-19 08:49:03.45 2025-03-19 08:49:03.45 435308 21131 1 0 7143 2025-03-19 08:49:55.722 2025-03-19 08:49:55.722 435309 798 1 0 7144 2025-03-19 09:14:54.827 2025-03-19 09:14:54.827 435309 15226 10 0 7145 2025-03-19 09:14:54.827 2025-03-19 09:14:54.827 435309 15536 1 0 7146 2025-03-19 08:50:32.304 2025-03-19 08:50:32.304 435310 756 1 0 7147 2025-03-19 08:58:56.438 2025-03-19 08:58:56.438 435310 940 3 0 7148 2025-03-19 10:20:05.129 2025-03-19 10:20:05.129 435310 2724 19 0 7149 2025-03-19 17:17:01.904 2025-03-19 17:17:01.904 435310 2757 196 0 7150 2025-03-19 17:17:01.904 2025-03-19 17:17:01.904 435310 7558 22 0 7151 2025-03-20 07:01:18.411 2025-03-20 07:01:18.411 435310 9036 2 0 7152 2025-03-19 08:58:56.438 2025-03-19 08:58:56.438 435310 9969 27 0 7153 2025-03-19 08:58:56.935 2025-03-19 08:58:56.935 435310 15119 27 0 7154 2025-03-19 08:58:56.935 2025-03-19 08:58:56.935 435310 15196 243 0 7155 2025-03-19 10:20:05.129 2025-03-19 10:20:05.129 435310 20599 2 0 7156 2025-03-20 07:01:18.411 2025-03-20 07:01:18.411 435310 21159 18 0 7157 2025-03-19 08:52:11.874 2025-03-19 08:52:11.874 435311 9167 9 0 7158 2025-03-19 08:50:38.273 2025-03-19 08:50:38.273 435311 19531 1 0 7159 2025-03-19 08:52:11.874 2025-03-19 08:52:11.874 435311 21522 1 0 7160 2025-03-19 08:50:54.588 2025-03-19 08:50:54.588 435312 2176 1 0 7161 2025-03-19 08:54:56.743 2025-03-19 08:54:56.743 435312 9906 3 0 7162 2025-03-19 08:54:57.396 2025-03-19 08:54:57.396 435312 15806 243 0 7163 2025-03-19 08:54:57.396 2025-03-19 08:54:57.396 435312 18241 27 0 7164 2025-03-19 08:54:56.743 2025-03-19 08:54:56.743 435312 20525 27 0 7165 2025-03-19 11:52:15.005 2025-03-19 11:52:15.005 435313 5500 9 0 7166 2025-03-19 11:52:15.005 2025-03-19 11:52:15.005 435313 5779 1 0 7167 2025-03-19 11:52:15.629 2025-03-19 11:52:15.629 435313 6191 1 0 7168 2025-03-19 11:52:15.178 2025-03-19 11:52:15.178 435313 7185 9 0 7169 2025-03-19 11:52:15.349 2025-03-19 11:52:15.349 435313 9354 9 0 7170 2025-03-19 11:52:15.178 2025-03-19 11:52:15.178 435313 14651 1 0 7171 2025-03-19 11:52:15.629 2025-03-19 11:52:15.629 435313 15488 9 0 7172 2025-03-19 11:52:15.746 2025-03-19 11:52:15.746 435313 16154 1 0 7173 2025-03-19 11:52:15.746 2025-03-19 11:52:15.746 435313 18494 9 0 7174 2025-03-19 08:51:31.954 2025-03-19 08:51:31.954 435313 20965 1 0 7175 2025-03-19 11:52:15.349 2025-03-19 11:52:15.349 435313 21506 1 0 7176 2025-03-19 11:58:02.719 2025-03-19 11:58:02.719 435314 794 0 0 7177 2025-03-19 13:14:48.969 2025-03-19 13:14:48.969 435314 866 1 0 7178 2025-03-19 09:09:20.108 2025-03-19 09:09:20.108 435314 992 8 0 7179 2025-03-19 09:10:05.915 2025-03-19 09:10:05.915 435314 1124 1 0 7180 2025-03-19 11:58:04.213 2025-03-19 11:58:04.213 435314 1647 1 0 7181 2025-03-20 00:21:23.163 2025-03-20 00:21:23.163 435314 1817 1 0 7182 2025-03-19 11:58:03.393 2025-03-19 11:58:03.393 435314 1960 1 0 7183 2025-03-19 09:09:26.937 2025-03-19 09:09:26.937 435314 2195 8 0 7184 2025-03-19 13:19:35.817 2025-03-19 13:19:35.817 435314 2329 3 0 7185 2025-03-19 09:10:05.463 2025-03-19 09:10:05.463 435314 4474 9 0 7186 2025-03-19 13:32:10.771 2025-03-19 13:32:10.771 435314 5377 1 0 7187 2025-03-19 11:58:04.213 2025-03-19 11:58:04.213 435314 5637 0 0 7188 2025-03-19 13:19:35.817 2025-03-19 13:19:35.817 435314 6268 30 0 7189 2025-03-19 11:58:02.719 2025-03-19 11:58:02.719 435314 7580 1 0 7190 2025-03-19 09:17:00.142 2025-03-19 09:17:00.142 435314 9246 19 0 7191 2025-03-19 09:17:00.142 2025-03-19 09:17:00.142 435314 9276 2 0 7192 2025-03-19 09:10:06.574 2025-03-19 09:10:06.574 435314 9339 1 0 7193 2025-03-20 00:21:23.163 2025-03-20 00:21:23.163 435314 9494 9 0 7194 2025-03-19 11:58:03.393 2025-03-19 11:58:03.393 435314 10554 0 0 7195 2025-03-19 11:58:03.092 2025-03-19 11:58:03.092 435314 11164 1 0 7196 2025-03-19 09:10:05.263 2025-03-19 09:10:05.263 435314 13133 1 0 7197 2025-03-19 09:10:05.463 2025-03-19 09:10:05.463 435314 15100 1 0 7198 2025-03-19 09:10:05.621 2025-03-19 09:10:05.621 435314 15160 1 0 7199 2025-03-19 13:14:47.974 2025-03-19 13:14:47.974 435314 15806 0 0 7200 2025-03-19 13:14:48.969 2025-03-19 13:14:48.969 435314 16059 8 0 7201 2025-03-19 09:10:05.915 2025-03-19 09:10:05.915 435314 16259 9 0 7202 2025-03-19 09:10:06.574 2025-03-19 09:10:06.574 435314 16276 9 0 7203 2025-03-19 08:54:03.59 2025-03-19 08:54:03.59 435314 16336 0 0 7204 2025-03-19 09:10:05.263 2025-03-19 09:10:05.263 435314 16769 9 0 7205 2025-03-19 10:37:11.379 2025-03-19 10:37:11.379 435314 19531 2 0 7206 2025-03-19 13:32:10.771 2025-03-19 13:32:10.771 435314 19796 5 0 7207 2025-03-19 08:54:03.59 2025-03-19 08:54:03.59 435314 19826 1 0 7208 2025-03-19 09:09:20.108 2025-03-19 09:09:20.108 435314 20306 75 0 7209 2025-03-19 11:58:04.381 2025-03-19 11:58:04.381 435314 20434 1 0 7210 2025-03-19 09:10:05.621 2025-03-19 09:10:05.621 435314 20562 9 0 7211 2025-03-19 13:14:47.974 2025-03-19 13:14:47.974 435314 20826 1 0 7212 2025-03-19 10:51:33.927 2025-03-19 10:51:33.927 435314 21159 14 0 7213 2025-03-19 10:37:11.379 2025-03-19 10:37:11.379 435314 21178 19 0 7214 2025-03-19 08:51:58.704 2025-03-19 08:51:58.704 435314 21275 100 0 7215 2025-03-19 10:51:33.927 2025-03-19 10:51:33.927 435314 21314 2 0 7216 2025-03-19 11:58:04.381 2025-03-19 11:58:04.381 435314 21506 0 0 7217 2025-03-19 11:58:03.092 2025-03-19 11:58:03.092 435314 21794 0 0 7218 2025-03-19 08:52:12.578 2025-03-19 08:52:12.578 435315 1471 1 0 7219 2025-03-19 09:01:37.683 2025-03-19 09:01:37.683 435315 7558 1 0 7220 2025-03-19 09:01:37.683 2025-03-19 09:01:37.683 435315 15049 7 0 7221 2025-03-19 08:52:39.241 2025-03-19 08:52:39.241 435316 18313 1 0 7222 2025-03-19 08:52:41.866 2025-03-19 08:52:41.866 435317 8505 1 0 7223 2025-03-19 08:53:10.763 2025-03-19 08:53:10.763 435317 15386 0 0 7224 2025-03-19 09:05:46.563 2025-03-19 09:05:46.563 435318 1244 30 0 7225 2025-03-19 09:05:46.363 2025-03-19 09:05:46.363 435318 2088 30 0 7226 2025-03-19 09:05:46.757 2025-03-19 09:05:46.757 435318 4768 30 0 7227 2025-03-19 08:54:49.176 2025-03-19 08:54:49.176 435318 7659 1 0 7228 2025-03-19 09:05:46.757 2025-03-19 09:05:46.757 435318 11164 3 0 7229 2025-03-19 09:05:46.363 2025-03-19 09:05:46.363 435318 16667 3 0 7230 2025-03-19 09:05:46.563 2025-03-19 09:05:46.563 435318 21520 3 0 7231 2025-03-19 08:57:52.481 2025-03-19 08:57:52.481 435319 2596 1 0 7232 2025-03-19 08:57:52.481 2025-03-19 08:57:52.481 435319 11609 9 0 7233 2025-03-19 08:55:36.543 2025-03-19 08:55:36.543 435319 16543 1 0 7234 2025-03-19 08:55:57.208 2025-03-19 08:55:57.208 435320 21398 1 0 7235 2025-03-19 08:56:05.835 2025-03-19 08:56:05.835 435321 998 1 0 7236 2025-03-19 09:01:04.635 2025-03-19 09:01:04.635 435321 9246 9 0 7237 2025-03-19 09:01:04.635 2025-03-19 09:01:04.635 435321 9335 1 0 7238 2025-03-19 08:57:27.343 2025-03-19 08:57:27.343 435322 714 1 0 7239 2025-03-19 08:59:09.689 2025-03-19 08:59:09.689 435322 16769 0 0 7240 2025-03-19 08:58:55.923 2025-03-19 08:58:55.923 435322 20606 0 0 7241 2025-03-19 08:58:46.791 2025-03-19 08:58:46.791 435322 20754 0 0 7242 2025-03-19 09:00:50.276 2025-03-19 09:00:50.276 435323 844 81 0 7243 2025-03-19 09:00:49.642 2025-03-19 09:00:49.642 435323 3342 1 0 7244 2025-03-19 09:00:49.525 2025-03-19 09:00:49.525 435323 7847 1 0 7245 2025-03-19 08:57:38.292 2025-03-19 08:57:38.292 435323 10469 1 0 7246 2025-03-19 09:00:49.642 2025-03-19 09:00:49.642 435323 10549 8 0 7247 2025-03-19 09:00:49.525 2025-03-19 09:00:49.525 435323 18930 0 0 7248 2025-03-19 09:00:50.276 2025-03-19 09:00:50.276 435323 19459 9 0 7249 2025-03-19 08:59:19.24 2025-03-19 08:59:19.24 435324 644 27 0 7250 2025-03-19 08:59:18.643 2025-03-19 08:59:18.643 435324 782 3 0 7251 2025-03-19 08:57:50.508 2025-03-19 08:57:50.508 435324 1401 1 0 7252 2025-03-19 10:18:48.901 2025-03-19 10:18:48.901 435324 13177 2 0 7253 2025-03-19 08:59:18.643 2025-03-19 08:59:18.643 435324 17094 27 0 7254 2025-03-19 10:18:48.901 2025-03-19 10:18:48.901 435324 19005 19 0 7255 2025-03-19 08:59:19.24 2025-03-19 08:59:19.24 435324 19980 243 0 7256 2025-03-19 08:58:15.823 2025-03-19 08:58:15.823 435325 1394 1 0 7257 2025-03-19 09:28:44.14 2025-03-19 09:28:44.14 435326 656 9 0 7258 2025-03-19 09:28:45.41 2025-03-19 09:28:45.41 435326 4776 1 0 7259 2025-03-19 09:28:45.41 2025-03-19 09:28:45.41 435326 5112 9 0 7260 2025-03-19 09:28:44.14 2025-03-19 09:28:44.14 435326 10311 1 0 7261 2025-03-19 09:28:44.839 2025-03-19 09:28:44.839 435326 11298 1 0 7262 2025-03-19 09:28:44.48 2025-03-19 09:28:44.48 435326 12656 9 0 7263 2025-03-19 09:28:44.48 2025-03-19 09:28:44.48 435326 16542 1 0 7264 2025-03-19 09:28:45.166 2025-03-19 09:28:45.166 435326 16571 1 0 7265 2025-03-19 09:28:44.839 2025-03-19 09:28:44.839 435326 18270 9 0 7266 2025-03-19 08:58:20.042 2025-03-19 08:58:20.042 435326 20479 1 0 7267 2025-03-19 09:28:45.166 2025-03-19 09:28:45.166 435326 20596 9 0 7268 2025-03-19 10:15:53.976 2025-03-19 10:15:53.976 435327 696 14 0 7269 2025-03-19 13:51:43.261 2025-03-19 13:51:43.261 435327 714 2 0 7270 2025-03-19 09:45:40.325 2025-03-19 09:45:40.325 435327 739 9 0 7271 2025-03-19 10:28:32.742 2025-03-19 10:28:32.742 435327 828 2 0 7272 2025-03-19 09:45:40.69 2025-03-19 09:45:40.69 435327 859 9 0 7273 2025-03-19 09:10:01.96 2025-03-19 09:10:01.96 435327 866 1 0 7274 2025-03-19 09:16:35.759 2025-03-19 09:16:35.759 435327 899 2 0 7275 2025-03-19 13:51:43.261 2025-03-19 13:51:43.261 435327 909 19 0 7276 2025-03-19 18:22:09.013 2025-03-19 18:22:09.013 435327 910 45 0 7277 2025-03-19 13:51:42.249 2025-03-19 13:51:42.249 435327 974 19 0 7278 2025-03-19 09:02:09.211 2025-03-19 09:02:09.211 435327 1060 69 0 7279 2025-03-19 09:08:59.289 2025-03-19 09:08:59.289 435327 1298 75 0 7280 2025-03-19 09:45:40.325 2025-03-19 09:45:40.325 435327 1326 1 0 7281 2025-03-19 09:45:38.96 2025-03-19 09:45:38.96 435327 1472 9 0 7282 2025-03-20 02:08:13.419 2025-03-20 02:08:13.419 435327 1585 2 0 7283 2025-03-19 09:45:39.838 2025-03-19 09:45:39.838 435327 2151 1 0 7284 2025-03-19 18:34:55.402 2025-03-19 18:34:55.402 435327 2459 1 0 7285 2025-03-19 09:08:58.841 2025-03-19 09:08:58.841 435327 2529 75 0 7286 2025-03-19 09:08:58.7 2025-03-19 09:08:58.7 435327 2748 75 0 7287 2025-03-20 02:08:13.419 2025-03-20 02:08:13.419 435327 2749 19 0 7288 2025-03-19 13:51:44.509 2025-03-19 13:51:44.509 435327 3371 2 0 7289 2025-03-19 14:17:48.507 2025-03-19 14:17:48.507 435327 3729 5 0 7290 2025-03-19 10:11:28.497 2025-03-19 10:11:28.497 435327 4074 1 0 7291 2025-03-19 09:02:09.211 2025-03-19 09:02:09.211 435327 4415 8 0 7292 2025-03-19 09:27:24.644 2025-03-19 09:27:24.644 435327 5293 100 0 7293 2025-03-19 09:08:57.807 2025-03-19 09:08:57.807 435327 5495 75 0 7294 2025-03-19 09:27:24.644 2025-03-19 09:27:24.644 435327 5520 11 0 7295 2025-03-19 13:51:43.789 2025-03-19 13:51:43.789 435327 5828 19 0 7296 2025-03-19 13:51:42.758 2025-03-19 13:51:42.758 435327 6136 2 0 7297 2025-03-19 09:08:58.367 2025-03-19 09:08:58.367 435327 6555 8 0 7298 2025-03-19 13:51:44.509 2025-03-19 13:51:44.509 435327 6602 19 0 7299 2025-03-19 09:08:59.404 2025-03-19 09:08:59.404 435327 6765 8 0 7300 2025-03-19 13:51:44.322 2025-03-19 13:51:44.322 435327 7891 2 0 7301 2025-03-19 13:51:43.01 2025-03-19 13:51:43.01 435327 8269 19 0 7302 2025-03-19 10:01:08.533 2025-03-19 10:01:08.533 435327 8469 900 0 7303 2025-03-19 13:51:44.061 2025-03-19 13:51:44.061 435327 8726 19 0 7304 2025-03-19 10:01:08.533 2025-03-19 10:01:08.533 435327 9262 100 0 7305 2025-03-19 13:51:42.758 2025-03-19 13:51:42.758 435327 9337 19 0 7306 2025-03-19 09:08:58.019 2025-03-19 09:08:58.019 435327 9350 8 0 7307 2025-03-19 09:45:39.838 2025-03-19 09:45:39.838 435327 9352 9 0 7308 2025-03-19 10:15:53.976 2025-03-19 10:15:53.976 435327 9366 2 0 7309 2025-03-19 10:47:28.167 2025-03-19 10:47:28.167 435327 9426 4 0 7310 2025-03-19 09:08:58.488 2025-03-19 09:08:58.488 435327 10549 8 0 7311 2025-03-19 18:22:09.013 2025-03-19 18:22:09.013 435327 10586 5 0 7312 2025-03-19 12:47:03.264 2025-03-19 12:47:03.264 435327 11192 0 0 7313 2025-03-19 10:47:28.167 2025-03-19 10:47:28.167 435327 11443 36 0 7314 2025-03-19 13:51:43.789 2025-03-19 13:51:43.789 435327 11498 2 0 7315 2025-03-19 09:59:24.313 2025-03-19 09:59:24.313 435327 11590 1 0 7316 2025-03-20 11:12:24.263 2025-03-20 11:12:24.263 435327 11678 90 0 7317 2025-03-19 09:08:57.807 2025-03-19 09:08:57.807 435327 11942 8 0 7318 2025-03-19 10:28:32.742 2025-03-19 10:28:32.742 435327 12562 19 0 7319 2025-03-19 09:08:58.841 2025-03-19 09:08:58.841 435327 12779 8 0 7320 2025-03-19 09:08:59.404 2025-03-19 09:08:59.404 435327 13361 75 0 7321 2025-03-19 13:51:44.322 2025-03-19 13:51:44.322 435327 13763 19 0 7322 2025-03-19 13:51:42.249 2025-03-19 13:51:42.249 435327 14260 2 0 7323 2025-03-19 13:51:42.533 2025-03-19 13:51:42.533 435327 14278 2 0 7324 2025-03-19 09:08:58.367 2025-03-19 09:08:58.954 435327 14295 149 0 7325 2025-03-19 09:10:02.902 2025-03-19 09:10:02.902 435327 14503 81 0 7326 2025-03-19 09:45:39.433 2025-03-19 09:45:39.433 435327 14910 9 0 7327 2025-03-19 09:08:59.518 2025-03-19 09:08:59.518 435327 14941 8 0 7328 2025-03-19 13:51:43.01 2025-03-19 13:51:43.01 435327 15282 2 0 7329 2025-03-19 12:47:03.264 2025-03-19 12:47:03.264 435327 15367 1 0 7330 2025-03-19 09:08:58.019 2025-03-19 09:08:58.019 435327 15544 75 0 7331 2025-03-19 08:59:20.362 2025-03-19 08:59:20.362 435327 15719 100 0 7332 2025-03-19 09:08:58.275 2025-03-19 09:08:58.275 435327 16309 75 0 7333 2025-03-19 09:08:58.203 2025-03-19 09:08:58.203 435327 16354 8 0 7334 2025-03-20 11:12:24.263 2025-03-20 11:12:24.263 435327 16660 810 0 7335 2025-03-19 09:08:59.169 2025-03-19 09:08:59.169 435327 16788 8 0 7336 2025-03-19 09:08:59.289 2025-03-19 09:08:59.289 435327 17291 8 0 7337 2025-03-19 09:10:02.158 2025-03-19 09:10:02.158 435327 17455 1 0 7338 2025-03-19 09:08:58.488 2025-03-19 09:08:58.488 435327 17696 75 0 7339 2025-03-19 09:45:40.69 2025-03-19 09:45:40.69 435327 17710 1 0 7340 2025-03-19 13:51:42.533 2025-03-19 13:51:42.533 435327 18011 19 0 7341 2025-03-19 09:08:59.062 2025-03-19 09:08:59.062 435327 18865 75 0 7342 2025-03-19 09:08:59.518 2025-03-19 09:08:59.518 435327 19494 75 0 7343 2025-03-19 09:10:02.902 2025-03-19 09:10:02.902 435327 19581 9 0 7344 2025-03-19 09:45:38.96 2025-03-19 09:45:38.96 435327 19812 1 0 7345 2025-03-19 18:34:55.402 2025-03-19 18:34:55.402 435327 19863 5 0 7346 2025-03-19 09:10:01.96 2025-03-19 09:10:01.96 435327 19905 0 0 7347 2025-03-19 09:10:02.158 2025-03-19 09:10:02.158 435327 20479 8 0 7348 2025-03-19 13:51:44.061 2025-03-19 13:51:44.061 435327 20555 2 0 7349 2025-03-19 10:11:28.497 2025-03-19 10:11:28.497 435327 20660 9 0 7350 2025-03-19 09:08:58.203 2025-03-19 09:08:58.203 435327 20788 75 0 7351 2025-03-19 09:45:39.433 2025-03-19 09:45:39.433 435327 20858 1 0 7352 2025-03-19 14:17:48.507 2025-03-19 14:17:48.507 435327 20891 1 0 7353 2025-03-19 09:08:59.062 2025-03-19 09:08:59.062 435327 21026 8 0 7354 2025-03-19 09:59:24.313 2025-03-19 09:59:24.313 435327 21139 10 0 7355 2025-03-19 09:08:58.275 2025-03-19 09:16:35.759 435327 21249 27 0 7356 2025-03-19 09:08:59.169 2025-03-19 09:08:59.169 435327 21279 75 0 7357 2025-03-19 09:08:58.954 2025-03-19 09:08:58.954 435327 21281 8 0 7358 2025-03-19 09:08:58.7 2025-03-19 09:08:58.7 435327 21413 8 0 7359 2025-03-19 09:14:35.872 2025-03-19 09:14:35.872 435328 27 2 0 7360 2025-03-19 22:15:59.509 2025-03-19 22:15:59.509 435328 636 19 0 7361 2025-03-19 09:51:02.159 2025-03-19 09:51:02.159 435328 657 19 0 7362 2025-03-19 09:45:35.265 2025-03-19 09:45:35.265 435328 675 90 0 7363 2025-03-19 08:59:52.84 2025-03-19 08:59:52.84 435328 676 45 0 7364 2025-03-19 21:43:38.077 2025-03-19 21:43:38.077 435328 679 7 0 7365 2025-03-19 13:47:40.276 2025-03-19 13:47:40.276 435328 681 19 0 7366 2025-03-19 13:53:10.906 2025-03-19 13:53:10.906 435328 683 19 0 7367 2025-03-19 21:43:38.337 2025-03-19 21:43:38.337 435328 691 1 0 7368 2025-03-19 21:43:36.482 2025-03-19 21:43:36.482 435328 694 1 0 7369 2025-03-19 10:42:17.139 2025-03-19 10:42:17.139 435328 715 0 0 7370 2025-03-19 21:05:47.321 2025-03-19 21:05:47.321 435328 716 1 0 7371 2025-03-19 21:43:38.337 2025-03-19 21:43:38.337 435328 787 7 0 7372 2025-03-19 09:29:00.137 2025-03-19 09:29:00.137 435328 859 9 0 7373 2025-03-19 09:37:50.686 2025-03-19 09:37:50.686 435328 882 8 0 7374 2025-03-19 11:56:11.668 2025-03-19 11:56:11.668 435328 919 1 0 7375 2025-03-19 16:59:36.33 2025-03-19 16:59:36.33 435328 940 1 0 7376 2025-03-19 09:09:56.853 2025-03-19 09:09:56.853 435328 946 1 0 7377 2025-03-19 16:59:39.763 2025-03-19 16:59:39.763 435328 956 27 0 7378 2025-03-19 10:21:00.116 2025-03-19 10:21:00.116 435328 959 90 0 7379 2025-03-19 09:14:36.031 2025-03-19 09:14:36.031 435328 987 19 0 7380 2025-03-19 10:47:27.218 2025-03-19 10:47:27.218 435328 989 36 0 7381 2025-03-19 10:05:48.349 2025-03-19 10:05:48.349 435328 992 10 0 7382 2025-03-19 16:59:36.964 2025-03-19 16:59:36.964 435328 998 9 0 7383 2025-03-19 13:47:41.227 2025-03-19 13:47:41.227 435328 1007 19 0 7384 2025-03-19 08:59:57.874 2025-03-19 08:59:57.874 435328 1010 9 0 7385 2025-03-19 13:47:40.908 2025-03-19 13:47:40.908 435328 1122 2 0 7386 2025-03-19 16:59:38.354 2025-03-19 16:59:38.354 435328 1141 1 0 7387 2025-03-19 21:43:38.077 2025-03-19 21:43:38.077 435328 1145 1 0 7388 2025-03-19 16:59:39.065 2025-03-19 16:59:39.065 435328 1237 9 0 7389 2025-03-19 08:59:57.874 2025-03-19 08:59:57.874 435328 1244 81 0 7390 2025-03-19 18:36:53.024 2025-03-19 18:36:53.024 435328 1286 1 0 7391 2025-03-19 16:59:38.496 2025-03-19 16:59:38.496 435328 1316 1 0 7392 2025-03-19 13:49:48.268 2025-03-19 13:49:48.268 435328 1326 23 0 7393 2025-03-19 13:40:20.314 2025-03-19 13:40:20.314 435328 1424 90 0 7394 2025-03-19 12:34:27.71 2025-03-19 12:34:27.71 435328 1433 1 0 7395 2025-03-19 12:47:18.341 2025-03-19 12:47:18.341 435328 1469 90 0 7396 2025-03-19 16:59:38.866 2025-03-19 16:59:38.866 435328 1480 1 0 7397 2025-03-19 13:40:20.314 2025-03-19 13:40:20.314 435328 1490 10 0 7398 2025-03-19 13:32:57.277 2025-03-19 16:59:40.986 435328 1505 2 0 7399 2025-03-19 08:59:29.694 2025-03-19 08:59:29.694 435328 1564 100 0 7400 2025-03-19 10:29:26.802 2025-03-19 10:29:26.802 435328 1567 0 0 7401 2025-03-19 16:59:40.496 2025-03-19 16:59:40.496 435328 1571 1 0 7402 2025-03-19 16:59:36.056 2025-03-19 16:59:36.056 435328 1626 9 0 7403 2025-03-19 21:43:34.357 2025-03-19 21:43:34.357 435328 1652 7 0 7404 2025-03-19 11:17:35.587 2025-03-19 11:17:35.587 435328 1720 10 0 7405 2025-03-19 16:59:39.763 2025-03-19 16:59:39.763 435328 1814 3 0 7406 2025-03-19 16:59:36.533 2025-03-19 16:59:36.533 435328 1817 1 0 7407 2025-03-19 21:43:37.261 2025-03-19 21:43:37.261 435328 1960 7 0 7408 2025-03-19 23:13:07.575 2025-03-19 23:13:07.575 435328 2123 19 0 7409 2025-03-19 16:59:40.496 2025-03-19 16:59:40.496 435328 2151 9 0 7410 2025-03-19 10:09:52.756 2025-03-19 10:09:52.756 435328 2176 10 0 7411 2025-03-19 08:59:53.994 2025-03-19 08:59:53.994 435328 2309 5 0 7412 2025-03-19 08:59:54.381 2025-03-19 08:59:54.381 435328 2342 5 0 7413 2025-03-19 10:25:43.87 2025-03-19 10:25:43.87 435328 2670 10 0 7414 2025-03-19 13:47:40.525 2025-03-19 13:47:40.525 435328 3347 2 0 7415 2025-03-20 04:18:39.694 2025-03-20 04:18:39.694 435328 3377 2 0 7416 2025-03-19 13:13:36.91 2025-03-19 13:13:36.91 435328 3461 90 0 7417 2025-03-19 11:56:11.54 2025-03-19 11:56:11.54 435328 4083 9 0 7418 2025-03-19 09:27:10.36 2025-03-19 09:27:10.36 435328 4166 19 0 7419 2025-03-19 21:43:37.261 2025-03-19 21:43:37.261 435328 4167 1 0 7420 2025-03-19 21:43:38.526 2025-03-19 21:43:38.526 435328 4287 7 0 7421 2025-03-19 09:37:50.501 2025-03-19 09:37:50.501 435328 4474 75 0 7422 2025-03-19 16:59:38.618 2025-03-19 16:59:38.618 435328 4538 9 0 7423 2025-03-19 09:29:00.137 2025-03-19 09:29:00.137 435328 4754 1 0 7424 2025-03-19 16:59:39.174 2025-03-19 16:59:39.174 435328 5057 1 0 7425 2025-03-19 21:43:36.298 2025-03-19 21:43:36.298 435328 5085 7 0 7426 2025-03-19 08:59:54.381 2025-03-19 08:59:54.381 435328 5129 45 0 7427 2025-03-19 13:53:10.906 2025-03-19 13:53:10.906 435328 5306 2 0 7428 2025-03-19 09:16:51.181 2025-03-19 09:16:51.181 435328 5425 2 0 7429 2025-03-19 08:59:53.407 2025-03-19 08:59:53.407 435328 5865 5 0 7430 2025-03-19 10:11:27.417 2025-03-19 10:11:27.417 435328 6058 9 0 7431 2025-03-19 09:09:56.12 2025-03-19 09:09:56.12 435328 6202 2 0 7432 2025-03-19 10:42:17.139 2025-03-19 10:42:17.139 435328 6268 1 0 7433 2025-03-19 13:47:41.639 2025-03-20 04:45:26.93 435328 6526 47 0 7434 2025-03-19 16:59:36.747 2025-03-19 16:59:36.747 435328 6616 9 0 7435 2025-03-19 16:59:38.618 2025-03-19 16:59:38.618 435328 6741 1 0 7436 2025-03-19 10:42:17.35 2025-03-19 10:42:17.35 435328 7583 1 0 7437 2025-03-19 09:27:15.535 2025-03-19 09:27:15.535 435328 7654 9 0 7438 2025-03-19 16:59:40.815 2025-03-19 16:59:40.815 435328 7916 9 0 7439 2025-03-19 18:36:53.024 2025-03-19 18:36:53.024 435328 8004 5 0 7440 2025-03-19 11:17:36.103 2025-03-19 11:17:36.103 435328 8176 10 0 7441 2025-03-19 09:29:00.526 2025-03-19 09:29:00.526 435328 8245 9 0 7442 2025-03-19 08:59:55.492 2025-03-19 08:59:55.492 435328 8544 5 0 7443 2025-03-19 10:29:26.802 2025-03-19 10:29:26.802 435328 8648 1 0 7444 2025-03-19 09:37:51.532 2025-03-19 09:37:51.532 435328 8664 8 0 7445 2025-03-19 13:13:36.91 2025-03-19 19:35:09.281 435328 8729 19 0 7446 2025-03-19 16:59:37.535 2025-03-19 16:59:37.535 435328 8954 1 0 7447 2025-03-19 21:43:36.987 2025-03-19 21:43:36.987 435328 9026 1 0 7448 2025-03-19 21:43:34.516 2025-03-19 21:43:34.516 435328 9036 7 0 7449 2025-03-19 13:47:40.525 2025-03-19 21:43:34.876 435328 9084 26 0 7450 2025-03-19 14:46:14.518 2025-03-19 14:46:14.518 435328 9159 1 0 7451 2025-03-19 09:09:56.708 2025-03-19 09:09:56.708 435328 9169 9 0 7452 2025-03-19 10:42:17.35 2025-03-19 10:42:17.35 435328 9331 0 0 7453 2025-03-19 09:29:01.13 2025-03-19 16:59:40.645 435328 9332 2 0 7454 2025-03-19 21:43:34.693 2025-03-19 21:43:34.693 435328 9363 1 0 7455 2025-03-19 09:16:51.181 2025-03-19 09:16:51.181 435328 9364 19 0 7456 2025-03-19 09:09:56.708 2025-03-19 09:09:56.708 435328 9366 1 0 7457 2025-03-19 21:43:34.876 2025-03-19 21:43:34.876 435328 9450 1 0 7458 2025-03-19 18:43:12.993 2025-03-19 18:43:12.993 435328 9529 1 0 7459 2025-03-19 13:47:40.716 2025-03-19 13:47:40.716 435328 9551 19 0 7460 2025-03-19 10:42:16.513 2025-03-19 10:42:16.513 435328 9796 1 0 7461 2025-03-19 14:46:14.603 2025-03-19 14:46:14.603 435328 9833 0 0 7462 2025-03-19 09:09:56.853 2025-03-19 09:09:56.853 435328 9845 9 0 7463 2025-03-19 08:59:53.053 2025-03-19 08:59:53.053 435328 9985 45 0 7464 2025-03-19 10:42:16.513 2025-03-19 10:42:16.513 435328 9992 0 0 7465 2025-03-19 16:59:37.167 2025-03-19 16:59:37.167 435328 10007 1 0 7466 2025-03-19 22:15:59.509 2025-03-19 22:15:59.509 435328 10016 2 0 7467 2025-03-19 09:27:15.535 2025-03-19 09:27:15.535 435328 10291 81 0 7468 2025-03-19 13:47:40.716 2025-03-19 13:47:40.716 435328 10302 2 0 7469 2025-03-19 19:47:12.033 2025-03-19 19:47:12.033 435328 10393 1 0 7470 2025-03-19 09:51:00.644 2025-03-19 09:51:00.644 435328 10549 19 0 7471 2025-03-19 16:59:36.964 2025-03-19 16:59:36.964 435328 10821 1 0 7472 2025-03-19 16:59:38.496 2025-03-19 16:59:38.496 435328 10849 9 0 7473 2025-03-19 13:43:31.247 2025-03-19 13:43:31.247 435328 10934 1 0 7474 2025-03-19 11:52:20.858 2025-03-19 11:52:20.858 435328 10981 1 0 7475 2025-03-19 16:59:36.056 2025-03-19 16:59:36.056 435328 11192 1 0 7476 2025-03-19 13:47:41.639 2025-03-19 16:59:41.483 435328 11314 20 0 7477 2025-03-19 21:43:36.482 2025-03-19 21:43:36.482 435328 11590 7 0 7478 2025-03-19 10:47:27.218 2025-03-19 16:59:39.174 435328 12277 22 0 7479 2025-03-19 09:45:35.265 2025-03-19 09:45:35.265 435328 12334 10 0 7480 2025-03-19 09:37:51.532 2025-03-19 09:37:51.532 435328 12490 75 0 7481 2025-03-19 08:59:56.922 2025-03-19 08:59:56.922 435328 12507 0 0 7482 2025-03-19 21:05:47.321 2025-03-19 21:05:47.321 435328 12516 0 0 7483 2025-03-19 21:43:34.693 2025-03-19 21:43:34.693 435328 12561 7 0 7484 2025-03-19 08:59:57.117 2025-03-19 13:49:48.268 435328 12749 11 0 7485 2025-03-19 09:32:44.951 2025-03-19 09:32:44.951 435328 12921 10 0 7486 2025-03-19 16:59:41.299 2025-03-19 16:59:41.299 435328 13169 9 0 7487 2025-03-19 13:40:21.209 2025-03-19 13:40:21.209 435328 13198 10 0 7488 2025-03-19 21:43:36.987 2025-03-19 21:43:39.84 435328 13249 14 0 7489 2025-03-19 09:44:36.277 2025-03-19 09:44:36.277 435328 13361 10 0 7490 2025-03-19 09:51:00.644 2025-03-19 09:51:00.644 435328 13599 2 0 7491 2025-03-20 08:09:37.265 2025-03-20 08:09:37.265 435328 13753 2 0 7492 2025-03-19 09:37:51.666 2025-03-19 09:37:51.666 435328 13843 8 0 7493 2025-03-19 13:40:21.657 2025-03-19 13:40:21.657 435328 13878 90 0 7494 2025-03-19 13:40:21.657 2025-03-19 13:40:21.657 435328 14152 10 0 7495 2025-03-19 09:14:36.375 2025-03-19 09:14:36.375 435328 14195 2 0 7496 2025-03-19 09:37:51.666 2025-03-19 09:37:51.666 435328 14376 75 0 7497 2025-03-20 04:18:39.694 2025-03-20 04:18:39.694 435328 14381 19 0 7498 2025-03-19 09:37:50.501 2025-03-19 09:37:50.501 435328 14452 8 0 7499 2025-03-19 16:59:37.969 2025-03-19 16:59:37.969 435328 14552 1 0 7500 2025-03-19 08:59:52.84 2025-03-19 08:59:52.84 435328 15075 5 0 7501 2025-03-19 21:43:40.375 2025-03-19 21:43:40.375 435328 15091 7 0 7502 2025-03-19 19:30:00.336 2025-03-19 19:30:00.336 435328 15119 9 0 7503 2025-03-19 09:09:56.513 2025-03-19 09:09:56.513 435328 15160 1 0 7504 2025-03-19 09:37:50.742 2025-03-19 09:37:50.742 435328 15336 8 0 7505 2025-03-19 10:05:48.349 2025-03-19 10:05:48.349 435328 15367 90 0 7506 2025-03-19 09:32:44.951 2025-03-19 09:32:44.951 435328 15409 90 0 7507 2025-03-19 14:46:14.603 2025-03-19 14:46:14.603 435328 15544 1 0 7508 2025-03-19 16:59:41.632 2025-03-19 16:59:41.632 435328 15556 9 0 7509 2025-03-19 08:59:56.922 2025-03-19 08:59:56.922 435328 15624 1 0 7510 2025-03-19 09:37:50.742 2025-03-19 09:37:50.742 435328 15762 75 0 7511 2025-03-19 21:43:38.526 2025-03-19 21:43:38.526 435328 16126 1 0 7512 2025-03-19 09:51:02.159 2025-03-19 09:51:02.159 435328 16347 2 0 7513 2025-03-19 14:46:14.518 2025-03-19 14:46:14.518 435328 16406 0 0 7514 2025-03-19 12:46:43.409 2025-03-19 12:46:43.409 435328 16536 0 0 7515 2025-03-19 13:43:31.247 2025-03-19 13:43:31.247 435328 16638 9 0 7516 2025-03-19 10:42:17.931 2025-03-19 10:42:17.931 435328 16695 0 0 7517 2025-03-19 09:28:59.781 2025-03-19 09:28:59.781 435328 16769 1 0 7518 2025-03-19 08:59:53.407 2025-03-19 08:59:53.407 435328 16830 45 0 7519 2025-03-19 16:59:41.483 2025-03-19 16:59:41.483 435328 16876 9 0 7520 2025-03-19 16:59:37.315 2025-03-19 16:59:37.315 435328 16966 1 0 7521 2025-03-19 08:59:55.492 2025-03-19 08:59:55.492 435328 16978 45 0 7522 2025-03-19 17:26:40.683 2025-03-19 21:43:36.725 435328 17042 3 0 7523 2025-03-19 08:59:53.053 2025-03-19 12:47:18.341 435328 17046 15 0 7524 2025-03-19 10:09:52.756 2025-03-19 10:09:52.756 435328 17124 91 0 7525 2025-03-19 09:27:10.36 2025-03-19 09:27:10.36 435328 17157 2 0 7526 2025-03-19 16:59:40.645 2025-03-19 16:59:40.645 435328 17209 9 0 7527 2025-03-19 11:37:44.834 2025-03-19 21:43:39.84 435328 17221 7 0 7528 2025-03-19 09:29:00.824 2025-03-19 09:29:00.824 435328 17237 9 0 7529 2025-03-19 10:11:27.417 2025-03-19 10:11:27.417 435328 17533 1 0 7530 2025-03-19 11:17:36.103 2025-03-19 11:17:36.103 435328 17696 1 0 7531 2025-03-19 09:14:35.872 2025-03-19 09:14:35.872 435328 17713 19 0 7532 2025-03-19 21:43:40.375 2025-03-19 21:43:40.375 435328 17727 1 0 7533 2025-03-19 09:44:36.277 2025-03-19 09:44:36.277 435328 17817 90 0 7534 2025-03-19 21:43:34.516 2025-03-19 21:43:34.516 435328 17838 1 0 7535 2025-03-19 16:59:38.041 2025-03-19 16:59:38.041 435328 18069 1 0 7536 2025-03-19 09:09:56.513 2025-03-19 09:09:56.513 435328 18174 9 0 7537 2025-03-19 16:59:38.041 2025-03-19 16:59:38.041 435328 18177 9 0 7538 2025-03-19 09:00:00.486 2025-03-19 09:00:00.486 435328 18265 810 0 7539 2025-03-19 16:59:41.299 2025-03-19 16:59:41.299 435328 18274 1 0 7540 2025-03-19 16:59:38.354 2025-03-19 16:59:38.354 435328 18313 9 0 7541 2025-03-19 16:59:36.747 2025-03-19 16:59:36.747 435328 18314 1 0 7542 2025-03-19 17:26:40.683 2025-03-19 17:26:40.683 435328 18717 19 0 7543 2025-03-19 09:14:36.031 2025-03-19 09:14:36.031 435328 18743 2 0 7544 2025-03-19 10:42:16.792 2025-03-19 10:42:16.792 435328 19005 1 0 7545 2025-03-19 10:50:58.677 2025-03-19 10:50:58.677 435328 19138 2 0 7546 2025-03-19 09:29:00.824 2025-03-19 09:29:00.824 435328 19189 1 0 7547 2025-03-19 09:29:01.13 2025-03-19 09:29:01.13 435328 19333 9 0 7548 2025-03-19 21:43:35.091 2025-03-19 21:43:35.091 435328 19471 1 0 7549 2025-03-19 10:21:00.116 2025-03-19 10:21:00.116 435328 19524 10 0 7550 2025-03-19 16:59:38.866 2025-03-19 16:59:38.866 435328 19527 9 0 7551 2025-03-19 16:59:40.986 2025-03-19 16:59:40.986 435328 19655 9 0 7552 2025-03-19 10:25:43.87 2025-03-19 10:25:43.87 435328 19796 90 0 7553 2025-03-19 11:17:35.587 2025-03-19 11:17:35.587 435328 19812 1 0 7554 2025-03-19 19:47:12.033 2025-03-19 19:47:12.033 435328 19857 9 0 7555 2025-03-19 16:59:37.167 2025-03-19 16:59:37.167 435328 19863 9 0 7556 2025-03-19 09:29:00.526 2025-03-19 18:20:14.374 435328 19888 6 0 7557 2025-03-19 16:59:37.535 2025-03-19 16:59:37.535 435328 19930 9 0 7558 2025-03-19 13:47:40.276 2025-03-20 04:45:26.93 435328 19943 7 0 7559 2025-03-19 16:59:37.78 2025-03-19 16:59:37.78 435328 20023 1 0 7560 2025-03-19 21:05:48.829 2025-03-19 21:05:48.829 435328 20094 0 0 7561 2025-03-19 08:59:57.117 2025-03-19 11:56:11.668 435328 20201 10 0 7562 2025-03-19 19:30:00.336 2025-03-19 19:30:00.336 435328 20245 1 0 7563 2025-03-19 16:59:37.78 2025-03-19 16:59:37.78 435328 20291 9 0 7564 2025-03-19 08:59:53.994 2025-03-19 08:59:53.994 435328 20337 45 0 7565 2025-03-19 09:14:36.375 2025-03-19 10:42:17.931 435328 20412 20 0 7566 2025-03-19 11:52:20.858 2025-03-19 11:52:20.858 435328 20481 9 0 7567 2025-03-19 16:59:37.969 2025-03-19 16:59:37.969 435328 20612 9 0 7568 2025-03-19 21:05:48.829 2025-03-19 21:05:48.829 435328 20623 4 0 7569 2025-03-20 08:09:37.265 2025-03-20 08:09:37.265 435328 20683 19 0 7570 2025-03-19 19:35:09.281 2025-03-19 19:35:09.281 435328 20829 1 0 7571 2025-03-19 10:42:16.792 2025-03-19 16:59:39.065 435328 20841 1 0 7572 2025-03-19 13:32:57.277 2025-03-19 13:32:57.277 435328 20973 9 0 7573 2025-03-19 09:09:56.12 2025-03-19 09:09:56.12 435328 21019 18 0 7574 2025-03-19 18:20:14.374 2025-03-19 18:20:14.374 435328 21020 1 0 7575 2025-03-19 09:28:59.781 2025-03-19 09:37:50.686 435328 21040 84 0 7576 2025-03-19 11:56:11.54 2025-03-19 11:56:11.54 435328 21083 1 0 7577 2025-03-19 21:43:36.298 2025-03-19 21:43:36.298 435328 21103 1 0 7578 2025-03-19 09:14:36.186 2025-03-19 09:14:36.186 435328 21114 19 0 7579 2025-03-19 11:37:44.834 2025-03-19 11:37:44.834 435328 21145 58 0 7580 2025-03-19 09:00:00.486 2025-03-19 09:00:00.486 435328 21208 90 0 7581 2025-03-19 10:50:58.677 2025-03-19 10:50:58.677 435328 21222 14 0 7582 2025-03-19 21:43:36.725 2025-03-19 21:43:36.725 435328 21242 7 0 7583 2025-03-19 13:47:40.908 2025-03-19 13:47:40.908 435328 21269 19 0 7584 2025-03-19 09:14:36.186 2025-03-19 09:14:36.186 435328 21398 2 0 7585 2025-03-19 21:43:35.091 2025-03-19 21:43:35.091 435328 21406 7 0 7586 2025-03-19 16:59:40.815 2025-03-19 16:59:40.815 435328 21408 1 0 7587 2025-03-19 16:59:36.33 2025-03-19 16:59:36.33 435328 21416 9 0 7588 2025-03-19 16:59:41.632 2025-03-19 16:59:41.632 435328 21424 1 0 7589 2025-03-19 23:13:07.575 2025-03-19 23:13:07.575 435328 21485 2 0 7590 2025-03-19 21:43:34.357 2025-03-19 21:43:34.357 435328 21498 1 0 7591 2025-03-19 12:34:27.71 2025-03-19 12:34:27.71 435328 21501 5 0 7592 2025-03-19 21:43:39.099 2025-03-19 21:43:39.099 435328 21514 1 0 7593 2025-03-19 16:59:36.533 2025-03-19 16:59:36.533 435328 21599 9 0 7594 2025-03-19 13:40:21.209 2025-03-19 13:40:21.209 435328 21683 90 0 7595 2025-03-19 12:46:43.409 2025-03-19 12:46:43.409 435328 21712 1 0 7596 2025-03-19 18:43:12.993 2025-03-19 18:43:12.993 435328 21734 9 0 7597 2025-03-19 13:47:41.227 2025-03-19 13:47:41.227 435328 21768 2 0 7598 2025-03-19 21:43:39.099 2025-03-19 21:43:39.099 435328 21791 7 0 7599 2025-03-19 09:33:01.255 2025-03-19 09:33:01.255 435329 1800 4 0 7600 2025-03-20 00:20:35.678 2025-03-20 00:20:35.678 435329 2459 9 0 7601 2025-03-19 09:00:02.099 2025-03-19 09:00:02.099 435329 18313 1 0 7602 2025-03-20 00:20:35.678 2025-03-20 00:20:35.678 435329 19863 1 0 7603 2025-03-19 09:33:01.255 2025-03-19 09:33:01.255 435329 20624 0 0 7604 2025-03-19 09:01:03.512 2025-03-19 09:01:03.512 435330 1114 0 0 7605 2025-03-19 09:00:49.257 2025-03-19 09:00:49.257 435330 1213 1 0 7606 2025-03-19 09:02:02.377 2025-03-19 09:02:02.377 435331 647 5 0 7607 2025-03-19 09:02:02.377 2025-03-19 09:02:02.377 435331 6268 1 0 7608 2025-03-19 09:00:59.458 2025-03-19 09:00:59.458 435331 12072 1 0 7609 2025-03-19 09:01:15.097 2025-03-19 09:01:15.097 435332 20755 1 0 7610 2025-03-19 09:01:34.259 2025-03-19 09:01:34.259 435333 9843 1 0 7611 2025-03-19 09:01:39.591 2025-03-19 09:01:39.591 435334 16149 1 0 7612 2025-03-19 09:02:22.529 2025-03-19 09:02:22.529 435335 2204 0 0 7613 2025-03-19 09:11:11.836 2025-03-19 09:11:11.836 435335 8380 45 0 7614 2025-03-19 09:01:51.153 2025-03-19 09:01:51.153 435335 9329 1 0 7615 2025-03-19 09:11:11.836 2025-03-19 09:11:11.836 435335 18069 5 0 7616 2025-03-19 09:02:14.203 2025-03-19 09:02:14.203 435336 14515 1 0 7617 2025-03-19 09:03:27.587 2025-03-19 09:03:27.587 435337 4074 1 0 7618 2025-03-19 09:03:44.425 2025-03-19 09:03:44.425 435338 5852 1 0 7619 2025-03-19 09:09:52.358 2025-03-19 09:09:52.358 435338 12097 3 0 7620 2025-03-19 10:34:09.72 2025-03-19 10:34:09.72 435338 16571 1 0 7621 2025-03-19 10:34:09.72 2025-03-19 10:34:09.72 435338 16594 0 0 7622 2025-03-19 09:09:52.358 2025-03-19 09:09:52.358 435338 20799 30 0 7623 2025-03-19 09:04:06.793 2025-03-19 09:04:06.793 435339 10862 1 0 7624 2025-03-19 09:04:20.428 2025-03-19 09:04:20.428 435339 15556 0 0 7625 2025-03-19 10:30:36.935 2025-03-19 10:30:36.935 435340 672 10 0 7626 2025-03-19 09:59:25.574 2025-03-19 09:59:25.574 435340 1713 1 0 7627 2025-03-19 10:30:36.935 2025-03-19 10:30:36.935 435340 7899 1 0 7628 2025-03-19 09:59:25.574 2025-03-19 09:59:25.574 435340 16562 8 0 7629 2025-03-19 09:04:15.226 2025-03-19 09:04:15.226 435340 16747 100 0 7630 2025-03-19 09:59:25.397 2025-03-19 09:59:25.397 435340 16809 1 0 7631 2025-03-19 09:59:25.397 2025-03-19 09:59:25.397 435340 18601 0 0 7632 2025-03-19 09:04:16.088 2025-03-19 09:04:16.088 435341 20713 1 0 7633 2025-03-19 09:05:16.861 2025-03-19 09:05:16.861 435342 733 1 0 7634 2025-03-19 09:15:21.812 2025-03-19 09:15:21.812 435342 4118 19 0 7635 2025-03-19 09:05:16.861 2025-03-19 09:05:16.861 435342 5487 9 0 7636 2025-03-19 18:41:27.241 2025-03-19 18:41:27.241 435342 8416 5 0 7637 2025-03-19 18:44:22.501 2025-03-19 18:44:22.501 435342 13921 1 0 7638 2025-03-19 18:41:28.17 2025-03-19 18:41:28.17 435342 14357 5 0 7639 2025-03-19 18:44:22.501 2025-03-19 18:44:22.501 435342 14990 9 0 7640 2025-03-19 13:01:07.601 2025-03-19 13:01:07.601 435342 15367 2 0 7641 2025-03-19 18:41:27.241 2025-03-19 18:41:27.241 435342 15521 1 0 7642 2025-03-19 09:04:19.658 2025-03-19 09:04:19.658 435342 19346 1 0 7643 2025-03-19 18:41:28.17 2025-03-19 18:41:28.17 435342 20619 1 0 7644 2025-03-19 09:15:21.812 2025-03-19 09:15:21.812 435342 20892 2 0 7645 2025-03-19 13:01:07.601 2025-03-19 13:01:07.601 435342 21771 19 0 7646 2025-03-19 09:45:33.368 2025-03-19 09:45:33.368 435343 686 1 0 7647 2025-03-19 09:06:02.746 2025-03-19 09:06:02.746 435343 2328 2 0 7648 2025-03-19 09:45:35.781 2025-03-19 09:45:35.781 435343 6160 1 0 7649 2025-03-19 09:45:33.933 2025-03-19 09:45:33.933 435343 9332 1 0 7650 2025-03-19 09:45:35.781 2025-03-19 09:45:35.781 435343 9529 9 0 7651 2025-03-19 09:45:33.933 2025-03-19 09:45:33.933 435343 9655 9 0 7652 2025-03-19 09:45:34.557 2025-03-19 09:45:34.557 435343 15282 1 0 7653 2025-03-19 09:45:35.205 2025-03-19 09:45:35.205 435343 16282 1 0 7654 2025-03-19 09:05:19.117 2025-03-19 09:05:19.117 435343 17082 21 0 7655 2025-03-19 09:45:35.205 2025-03-19 09:45:35.205 435343 19346 9 0 7656 2025-03-19 09:45:34.557 2025-03-19 09:45:34.557 435343 19812 9 0 7657 2025-03-19 09:45:33.368 2025-03-19 09:45:33.368 435343 21119 9 0 7658 2025-03-19 09:06:02.746 2025-03-19 09:06:02.746 435343 21405 19 0 7659 2025-03-19 09:05:22.628 2025-03-19 09:05:22.628 435344 18270 1 0 7660 2025-03-19 13:01:12.366 2025-03-19 13:01:12.366 435345 1213 19 0 7661 2025-03-19 10:37:40.254 2025-03-19 10:37:40.254 435345 1515 1 0 7662 2025-03-19 13:01:12.366 2025-03-19 13:01:12.366 435345 6537 2 0 7663 2025-03-20 00:55:46.819 2025-03-20 00:55:46.819 435345 12946 1 0 7664 2025-03-19 09:05:29.339 2025-03-19 09:05:29.339 435345 15326 1 0 7665 2025-03-20 02:51:22.465 2025-03-20 02:51:22.465 435345 16289 9 0 7666 2025-03-20 00:55:46.819 2025-03-20 00:55:46.819 435345 19806 9 0 7667 2025-03-19 10:37:40.254 2025-03-19 10:37:40.254 435345 20434 9 0 7668 2025-03-20 02:51:22.465 2025-03-20 02:51:22.465 435345 20788 1 0 7669 2025-03-19 09:24:33.311 2025-03-19 09:24:33.311 435346 632 21 0 7670 2025-03-19 09:56:05.065 2025-03-19 09:56:05.065 435346 777 21 0 7671 2025-03-19 09:24:33.311 2025-03-19 09:24:33.311 435346 2176 2 0 7672 2025-03-19 09:56:05.065 2025-03-19 09:56:05.065 435346 2681 2 0 7673 2025-03-19 09:24:32.173 2025-03-19 09:24:32.173 435346 3213 21 0 7674 2025-03-20 08:33:02.337 2025-03-20 08:33:02.337 435346 3353 1 0 7675 2025-03-19 09:24:32.173 2025-03-19 09:24:32.173 435346 4084 2 0 7676 2025-03-19 17:15:23.331 2025-03-19 17:15:23.331 435346 5129 5 0 7677 2025-03-20 00:20:57.337 2025-03-20 00:20:57.337 435346 6653 1 0 7678 2025-03-19 09:24:32.325 2025-03-19 09:24:32.325 435346 8176 21 0 7679 2025-03-19 09:05:53.359 2025-03-19 09:05:53.359 435346 8326 1 0 7680 2025-03-19 09:24:32.325 2025-03-19 09:24:32.325 435346 12744 2 0 7681 2025-03-20 08:33:02.337 2025-03-20 08:33:02.337 435346 16276 7 0 7682 2025-03-19 09:24:31.996 2025-03-19 09:24:31.996 435346 16808 21 0 7683 2025-03-19 09:24:32.454 2025-03-19 09:24:32.454 435346 17184 2 0 7684 2025-03-19 09:24:31.996 2025-03-19 09:24:31.996 435346 18241 2 0 7685 2025-03-19 17:15:23.331 2025-03-19 17:15:23.331 435346 20799 45 0 7686 2025-03-19 09:24:32.454 2025-03-19 09:24:32.454 435346 21042 21 0 7687 2025-03-20 00:20:57.337 2025-03-20 00:20:57.337 435346 21271 9 0 7688 2025-03-19 09:13:11.87 2025-03-19 09:13:11.87 435347 8289 27 0 7689 2025-03-19 09:13:11.87 2025-03-19 09:13:11.87 435347 12072 3 0 7690 2025-03-19 09:08:52.186 2025-03-19 09:08:52.186 435347 13399 1 0 7691 2025-03-19 09:09:16.04 2025-03-19 09:09:16.04 435348 4079 1 0 7692 2025-03-19 10:30:11.916 2025-03-19 10:30:11.916 435348 10986 6 0 7693 2025-03-19 10:30:11.916 2025-03-19 10:30:11.916 435348 21131 58 0 7694 2025-03-19 09:15:12.351 2025-03-19 09:15:12.351 435349 657 0 0 7695 2025-03-19 09:12:53.607 2025-03-19 09:12:53.607 435349 14941 1 0 7696 2025-03-19 09:15:13.08 2025-03-19 09:15:13.08 435349 19821 9 0 7697 2025-03-19 09:15:13.08 2025-03-19 09:15:13.08 435349 20185 81 0 7698 2025-03-19 09:15:12.549 2025-03-19 09:15:12.549 435349 20969 8 0 7699 2025-03-19 09:15:12.549 2025-03-19 09:15:12.549 435349 21233 1 0 7700 2025-03-19 09:15:12.351 2025-03-19 09:15:12.351 435349 21810 1 0 7701 2025-03-19 09:16:56.931 2025-03-19 09:16:56.931 435350 1006 0 0 7702 2025-03-19 09:15:08.725 2025-03-19 09:15:08.725 435350 21685 1 0 7703 2025-03-19 09:15:10.497 2025-03-19 09:15:10.497 435351 2640 10 0 7704 2025-03-19 09:16:36.675 2025-03-19 09:16:36.675 435351 6777 27 0 7705 2025-03-19 09:16:36.675 2025-03-19 09:16:36.675 435351 17541 3 0 7706 2025-03-19 09:25:57.862 2025-03-19 09:25:57.862 435352 624 21 0 7707 2025-03-19 09:16:04.953 2025-03-19 09:16:04.953 435352 654 1 0 7708 2025-03-19 09:25:57.862 2025-03-19 09:25:57.862 435352 805 2 0 7709 2025-03-19 09:25:58.07 2025-03-19 09:25:58.07 435352 882 2 0 7710 2025-03-19 09:25:58.412 2025-03-19 09:25:58.412 435352 1047 21 0 7711 2025-03-19 09:25:58.07 2025-03-19 09:25:58.07 435352 1425 21 0 7712 2025-03-19 09:25:57.728 2025-03-19 09:25:57.728 435352 9276 2 0 7713 2025-03-19 09:25:58.178 2025-03-19 09:25:58.178 435352 20450 2 0 7714 2025-03-19 09:25:58.412 2025-03-19 09:25:58.412 435352 20596 2 0 7715 2025-03-19 09:25:57.728 2025-03-19 09:25:57.728 435352 21041 21 0 7716 2025-03-19 09:25:58.178 2025-03-19 09:25:58.178 435352 21136 21 0 7717 2025-03-19 09:19:06.815 2025-03-19 09:19:06.815 435353 5775 1 0 7718 2025-03-19 10:27:37.112 2025-03-19 10:27:37.112 435353 16789 3 0 7719 2025-03-19 10:27:37.112 2025-03-19 10:27:37.112 435353 19138 23 0 7720 2025-03-19 12:47:23.774 2025-03-19 12:47:23.774 435353 19863 1 0 7721 2025-03-19 12:47:23.774 2025-03-19 12:47:23.774 435353 20433 9 0 7722 2025-03-19 09:36:42.729 2025-03-19 09:36:42.729 435354 5003 1 0 7723 2025-03-19 09:36:50.034 2025-03-19 09:36:50.034 435354 6578 1 0 7724 2025-03-19 09:36:42.729 2025-03-19 09:36:42.729 435354 15510 5 0 7725 2025-03-19 09:21:04.013 2025-03-19 09:21:04.013 435354 20998 1 0 7726 2025-03-19 09:36:50.034 2025-03-19 09:36:50.034 435354 21019 9 0 7727 2025-03-19 11:53:42.918 2025-03-19 11:53:42.918 435355 690 3 0 7728 2025-03-19 09:58:44.497 2025-03-19 09:58:44.497 435355 1145 0 0 7729 2025-03-19 09:58:44.497 2025-03-19 09:58:44.497 435355 4345 1 0 7730 2025-03-19 09:21:17.004 2025-03-19 09:21:17.004 435355 5306 1 0 7731 2025-03-19 11:53:42.918 2025-03-19 11:53:42.918 435355 15367 23 0 7732 2025-03-20 00:21:24.859 2025-03-20 00:21:24.859 435355 20102 9 0 7733 2025-03-20 00:21:24.859 2025-03-20 00:21:24.859 435355 20412 1 0 7734 2025-03-19 12:00:51.125 2025-03-19 12:00:51.125 435355 20864 27 0 7735 2025-03-19 12:00:51.125 2025-03-19 12:00:51.125 435355 21547 3 0 7736 2025-03-19 09:25:30.814 2025-03-19 09:25:30.814 435356 20412 1 0 7737 2025-03-19 09:37:55.689 2025-03-19 09:37:55.689 435357 987 8 0 7738 2025-03-19 09:37:56.52 2025-03-19 09:37:56.52 435357 1051 75 0 7739 2025-03-19 14:32:21.925 2025-03-19 14:32:21.925 435357 2335 23 0 7740 2025-03-19 10:02:15.415 2025-03-19 10:02:15.415 435357 2460 36 0 7741 2025-03-19 12:32:14.17 2025-03-19 12:32:14.17 435357 2963 90 0 7742 2025-03-19 09:37:55.689 2025-03-19 09:37:55.689 435357 5708 75 0 7743 2025-03-19 09:38:23.176 2025-03-19 09:38:23.176 435357 6419 1 0 7744 2025-03-19 09:38:28.42 2025-03-19 09:38:28.42 435357 7877 10 0 7745 2025-03-19 09:42:57.358 2025-03-19 09:42:57.358 435357 8376 90 0 7746 2025-03-19 09:29:41.133 2025-03-19 09:29:41.133 435357 8380 30 0 7747 2025-03-19 12:23:07.485 2025-03-19 12:23:07.485 435357 9346 2 0 7748 2025-03-19 10:02:15.415 2025-03-19 10:02:15.415 435357 11328 4 0 7749 2025-03-19 10:11:22.274 2025-03-19 10:11:22.274 435357 11417 1 0 7750 2025-03-19 14:32:21.925 2025-03-19 14:32:21.925 435357 13767 3 0 7751 2025-03-19 09:29:40.885 2025-03-19 09:29:40.885 435357 14939 270 0 7752 2025-03-19 12:32:14.17 2025-03-19 12:32:14.17 435357 15060 10 0 7753 2025-03-19 09:26:09.488 2025-03-19 09:26:09.488 435357 15463 100 0 7754 2025-03-19 10:22:58.522 2025-03-19 10:22:58.522 435357 15526 0 100 7755 2025-03-19 09:38:28.42 2025-03-19 09:38:28.42 435357 16267 90 0 7756 2025-03-19 09:42:57.358 2025-03-19 09:42:57.358 435357 18188 10 0 7757 2025-03-19 09:37:56.52 2025-03-19 09:37:56.52 435357 19292 8 0 7758 2025-03-19 09:29:41.133 2025-03-19 09:29:41.133 435357 19403 270 0 7759 2025-03-19 12:23:07.485 2025-03-19 12:23:07.485 435357 20509 19 0 7760 2025-03-19 09:38:23.176 2025-03-19 09:38:23.176 435357 20555 9 0 7761 2025-03-19 09:29:40.885 2025-03-19 09:29:40.885 435357 20701 30 0 7762 2025-03-19 09:37:55.249 2025-03-19 09:37:55.249 435357 20706 75 0 7763 2025-03-19 10:11:22.274 2025-03-19 10:11:22.274 435357 20891 9 0 7764 2025-03-19 09:37:55.249 2025-03-19 09:37:55.249 435357 21455 8 0 7765 2025-03-19 09:26:19.619 2025-03-19 09:26:19.619 435358 20901 1 0 7766 2025-03-19 09:32:59.875 2025-03-19 09:32:59.875 435359 658 1 0 7767 2025-03-19 11:01:16.733 2025-03-19 11:01:16.733 435359 739 2 0 7768 2025-03-19 09:34:51.653 2025-03-19 09:34:51.653 435359 763 19 0 7769 2025-03-19 09:32:54.841 2025-03-19 09:32:54.841 435359 775 9 0 7770 2025-03-19 09:27:54.236 2025-03-19 09:27:54.236 435359 822 21 0 7771 2025-03-19 09:37:55.003 2025-03-19 09:37:55.003 435359 827 9 0 7772 2025-03-19 09:38:57.662 2025-03-19 09:38:57.662 435359 925 1 0 7773 2025-03-19 09:32:58.518 2025-03-19 09:32:58.518 435359 956 9 0 7774 2025-03-19 09:35:03.956 2025-03-19 09:35:03.956 435359 959 36 0 7775 2025-03-19 09:32:56.702 2025-03-19 09:32:56.702 435359 964 1 0 7776 2025-03-19 09:38:20.33 2025-03-19 09:38:20.33 435359 1000 75 0 7777 2025-03-19 09:38:55.723 2025-03-19 09:38:55.723 435359 1136 1 0 7778 2025-03-19 09:34:51.653 2025-03-19 09:34:51.653 435359 1273 2 0 7779 2025-03-19 09:32:54.841 2025-03-19 09:32:54.841 435359 1465 1 0 7780 2025-03-19 09:32:58.518 2025-03-19 09:32:58.518 435359 1720 1 0 7781 2025-03-19 09:37:52.58 2025-03-19 09:37:52.58 435359 1738 9 0 7782 2025-03-19 09:37:54.108 2025-03-19 09:37:54.108 435359 2151 1 0 7783 2025-03-19 09:38:55.723 2025-03-19 09:38:55.723 435359 2367 9 0 7784 2025-03-19 09:38:56.64 2025-03-19 09:38:56.64 435359 2402 9 0 7785 2025-03-19 09:37:16.878 2025-03-19 09:37:16.878 435359 2437 2 0 7786 2025-03-19 09:38:19.99 2025-03-19 09:38:19.99 435359 2775 8 0 7787 2025-03-19 09:31:24.07 2025-03-19 09:31:24.07 435359 2780 27 0 7788 2025-03-19 09:38:21.064 2025-03-19 09:38:21.064 435359 4602 75 0 7789 2025-03-19 14:00:48.609 2025-03-19 14:00:48.609 435359 5427 9 0 7790 2025-03-19 09:32:58.007 2025-03-19 09:32:58.007 435359 6421 1 0 7791 2025-03-19 09:38:56.64 2025-03-19 09:38:56.64 435359 7903 1 0 7792 2025-03-19 09:32:58.007 2025-03-19 09:32:58.007 435359 8684 9 0 7793 2025-03-19 09:38:59.278 2025-03-19 09:38:59.278 435359 9169 1 0 7794 2025-03-19 09:38:59.278 2025-03-19 09:38:59.278 435359 9329 9 0 7795 2025-03-19 09:31:24.07 2025-03-19 09:31:24.07 435359 9332 3 0 7796 2025-03-19 11:01:16.733 2025-03-19 11:01:16.733 435359 9421 19 0 7797 2025-03-19 09:38:57.662 2025-03-19 09:38:57.662 435359 9669 9 0 7798 2025-03-19 09:37:55.846 2025-03-19 09:37:55.846 435359 9695 9 0 7799 2025-03-19 09:38:19.99 2025-03-19 09:38:19.99 435359 10102 75 0 7800 2025-03-19 09:37:16.878 2025-03-19 09:37:16.878 435359 10493 0 0 7801 2025-03-19 09:38:20.212 2025-03-19 09:38:20.212 435359 10821 8 0 7802 2025-03-19 09:32:55.438 2025-03-19 09:32:55.438 435359 11192 1 0 7803 2025-03-19 09:38:19.79 2025-03-19 09:38:19.79 435359 11423 75 0 7804 2025-03-19 09:32:56.011 2025-03-19 09:32:56.011 435359 11996 9 0 7805 2025-03-19 10:23:55.377 2025-03-19 10:23:55.377 435359 12220 10 0 7806 2025-03-19 09:37:54.108 2025-03-19 09:37:54.108 435359 12768 9 0 7807 2025-03-19 09:38:54.923 2025-03-19 09:38:54.923 435359 13547 1 0 7808 2025-03-19 09:48:24.947 2025-03-19 09:48:24.947 435359 13798 2 0 7809 2025-03-19 09:38:21.064 2025-03-19 09:38:21.064 435359 15326 8 0 7810 2025-03-19 09:31:24.686 2025-03-19 09:31:24.686 435359 16347 243 0 7811 2025-03-19 09:31:24.686 2025-03-19 09:31:24.686 435359 16432 27 0 7812 2025-03-19 09:37:55.846 2025-03-19 09:37:55.846 435359 16638 1 0 7813 2025-03-19 09:32:55.438 2025-03-19 09:32:55.438 435359 16704 9 0 7814 2025-03-19 09:35:03.956 2025-03-19 09:35:03.956 435359 17291 4 0 7815 2025-03-19 09:37:53.212 2025-03-19 09:37:53.212 435359 17494 1 0 7816 2025-03-19 09:32:57.379 2025-03-19 09:32:57.379 435359 17526 1 0 7817 2025-03-19 09:37:52.58 2025-03-19 09:37:52.58 435359 17592 1 0 7818 2025-03-19 09:32:59.189 2025-03-19 09:32:59.189 435359 17953 9 0 7819 2025-03-19 09:38:54.923 2025-03-19 09:38:54.923 435359 18274 9 0 7820 2025-03-19 09:32:59.189 2025-03-19 09:32:59.189 435359 18412 1 0 7821 2025-03-19 09:37:55.003 2025-03-19 09:37:55.003 435359 18557 1 0 7822 2025-03-19 09:32:57.379 2025-03-19 09:32:57.379 435359 18717 9 0 7823 2025-03-19 09:37:53.212 2025-03-19 09:37:53.212 435359 19094 9 0 7824 2025-03-19 09:32:56.702 2025-03-19 09:32:56.702 435359 20059 9 0 7825 2025-03-19 09:48:24.947 2025-03-19 09:48:24.947 435359 20409 19 0 7826 2025-03-19 09:38:19.79 2025-03-19 09:38:19.79 435359 20450 8 0 7827 2025-03-19 10:23:55.377 2025-03-19 10:23:55.377 435359 20647 90 0 7828 2025-03-19 09:32:56.011 2025-03-19 09:32:56.011 435359 20811 1 0 7829 2025-03-19 14:00:48.609 2025-03-19 14:00:48.609 435359 21131 1 0 7830 2025-03-19 09:38:20.33 2025-03-19 09:38:20.33 435359 21222 8 0 7831 2025-03-19 09:32:59.875 2025-03-19 09:32:59.875 435359 21242 9 0 7832 2025-03-19 09:38:20.212 2025-03-19 09:38:20.212 435359 21413 75 0 7833 2025-03-19 09:27:56.223 2025-03-19 09:27:56.223 435360 7119 1 0 7834 2025-03-19 09:30:03.523 2025-03-19 09:30:03.523 435361 8926 9 0 7835 2025-03-19 09:29:38.4 2025-03-19 09:29:38.4 435361 13042 1 0 7836 2025-03-19 09:30:03.523 2025-03-19 09:30:03.523 435361 17109 1 0 7837 2025-03-19 09:30:04.909 2025-03-19 09:30:04.909 435361 20481 1 0 7838 2025-03-19 09:30:04.909 2025-03-19 09:30:04.909 435361 21020 9 0 7839 2025-03-19 09:30:13.495 2025-03-19 09:30:13.495 435362 8648 1 0 7840 2025-03-19 09:30:22.506 2025-03-19 09:30:22.506 435363 4323 1 0 7841 2025-03-19 09:59:04.533 2025-03-19 09:59:04.533 435364 909 0 0 7842 2025-03-19 09:59:04.533 2025-03-19 09:59:04.533 435364 9169 1 0 7843 2025-03-19 09:32:09.869 2025-03-19 09:32:09.869 435364 12261 1 0 7844 2025-03-20 00:21:40.415 2025-03-20 00:21:40.415 435364 17212 9 0 7845 2025-03-20 00:21:40.415 2025-03-20 00:21:40.415 435364 21058 1 0 7846 2025-03-19 09:36:14.799 2025-03-19 09:36:14.799 435365 712 3 0 7847 2025-03-19 17:13:41.452 2025-03-19 17:13:41.452 435365 998 24 0 7848 2025-03-19 09:36:14.799 2025-03-19 09:36:14.799 435365 1472 27 0 7849 2025-03-19 09:33:19.657 2025-03-19 09:33:19.657 435365 2013 1 0 7850 2025-03-19 17:13:41.299 2025-03-19 17:13:41.299 435365 2514 3 0 7851 2025-03-19 09:36:16.034 2025-03-19 09:36:16.034 435365 3717 243 0 7852 2025-03-19 17:13:41.982 2025-03-19 17:13:41.982 435365 5195 3 0 7853 2025-03-19 09:36:16.034 2025-03-19 09:36:16.034 435365 8726 27 0 7854 2025-03-19 17:13:41.982 2025-03-19 17:13:41.982 435365 13177 24 0 7855 2025-03-19 17:13:41.452 2025-03-19 17:13:41.452 435365 14785 3 0 7856 2025-03-19 17:13:41.628 2025-03-19 17:13:41.628 435365 14941 3 0 7857 2025-03-19 17:13:41.299 2025-03-19 17:13:41.299 435365 15243 24 0 7858 2025-03-19 17:13:41.788 2025-03-19 17:13:41.788 435365 17316 3 0 7859 2025-03-19 17:13:41.788 2025-03-19 17:13:41.788 435365 20922 24 0 7860 2025-03-19 17:13:41.628 2025-03-19 17:13:41.628 435365 21041 24 0 7861 2025-03-19 09:33:44.415 2025-03-19 09:33:44.415 435366 652 1 0 7862 2025-03-19 09:33:44.415 2025-03-19 09:33:44.415 435366 697 9 0 7863 2025-03-19 09:33:43.946 2025-03-19 09:33:43.946 435366 1145 1 0 7864 2025-03-19 09:33:44.901 2025-03-19 09:33:44.901 435366 2176 9 0 7865 2025-03-19 09:33:45.341 2025-03-19 09:33:45.341 435366 2757 9 0 7866 2025-03-19 09:33:45.341 2025-03-19 09:33:45.341 435366 2775 1 0 7867 2025-03-19 09:33:43.507 2025-03-19 09:33:43.507 435366 4062 9 0 7868 2025-03-19 11:02:41.157 2025-03-19 11:02:41.157 435366 12222 2 0 7869 2025-03-19 09:33:25.468 2025-03-19 09:33:25.468 435366 12819 1 0 7870 2025-03-19 09:33:43.946 2025-03-19 09:33:43.946 435366 14260 9 0 7871 2025-03-19 09:33:43.507 2025-03-19 09:33:43.507 435366 14731 1 0 7872 2025-03-19 09:33:44.901 2025-03-19 09:33:44.901 435366 16594 1 0 7873 2025-03-19 11:02:41.157 2025-03-19 11:02:41.157 435366 21042 19 0 7874 2025-03-19 09:34:44.498 2025-03-19 09:34:44.498 435367 1773 1 0 7875 2025-03-20 00:21:42.424 2025-03-20 00:21:42.424 435367 6555 1 0 7876 2025-03-20 00:21:42.424 2025-03-20 00:21:42.424 435367 21398 9 0 7877 2025-03-19 09:40:49.153 2025-03-19 09:40:49.153 435368 998 9 0 7878 2025-03-19 09:40:49.534 2025-03-19 09:40:49.534 435368 1007 9 0 7879 2025-03-19 09:40:48.45 2025-03-19 09:40:48.45 435368 1761 1 0 7880 2025-03-19 09:40:47.484 2025-03-19 09:40:47.484 435368 4802 1 0 7881 2025-03-19 09:40:48.001 2025-03-19 09:40:48.001 435368 11220 9 0 7882 2025-03-19 09:40:47.484 2025-03-19 09:40:47.484 435368 15119 9 0 7883 2025-03-19 09:37:20.219 2025-03-19 09:37:20.219 435368 15139 1 0 7884 2025-03-19 09:40:49.153 2025-03-19 09:40:49.153 435368 15491 1 0 7885 2025-03-19 09:40:48.001 2025-03-19 09:40:48.001 435368 16309 1 0 7886 2025-03-19 09:40:48.45 2025-03-19 09:40:48.45 435368 20970 9 0 7887 2025-03-19 09:40:49.534 2025-03-19 09:40:49.534 435368 21164 1 0 7888 2025-03-19 10:24:59.347 2025-03-19 10:24:59.347 435369 2776 19 0 7889 2025-03-19 09:38:41.243 2025-03-19 09:38:41.243 435369 4474 100 0 7890 2025-03-19 10:24:59.347 2025-03-19 10:24:59.347 435369 20891 2 0 7891 2025-03-19 09:53:43.84 2025-03-19 09:53:43.84 435370 805 2 0 7892 2025-03-19 09:38:46.095 2025-03-19 09:38:46.095 435370 1985 1 0 7893 2025-03-19 09:53:43.84 2025-03-19 09:53:43.84 435370 19527 19 0 7894 2025-03-19 09:39:59.504 2025-03-19 09:39:59.504 435371 14169 27 0 7895 2025-03-19 09:39:59.504 2025-03-19 09:39:59.504 435371 19863 3 0 7896 2025-03-19 09:39:02.652 2025-03-19 09:39:02.652 435371 21498 1 0 7897 2025-03-19 09:42:27.715 2025-03-19 09:42:27.715 435372 698 1 0 7898 2025-03-19 09:43:35.888 2025-03-19 09:43:35.888 435372 11091 27 0 7899 2025-03-19 09:43:35.888 2025-03-19 09:43:35.888 435372 19512 3 0 7900 2025-03-19 09:43:03.184 2025-03-19 09:43:03.184 435373 4173 1 0 7901 2025-03-19 09:53:39.2 2025-03-19 09:53:39.2 435373 11789 4 0 7902 2025-03-19 09:53:39.2 2025-03-19 09:53:39.2 435373 21600 36 0 7903 2025-03-19 09:47:43.968 2025-03-19 09:47:43.968 435374 15521 0 83 7904 2025-03-19 09:44:34.005 2025-03-19 09:44:34.005 435374 20306 10 0 7905 2025-03-19 09:45:00.534 2025-03-19 09:45:00.534 435375 622 1 0 7906 2025-03-19 18:07:59.78 2025-03-19 18:07:59.78 435375 678 1 0 7907 2025-03-19 09:45:00.797 2025-03-19 09:45:00.797 435375 679 9 0 7908 2025-03-19 10:13:37.993 2025-03-19 10:13:37.993 435375 680 83 0 7909 2025-03-19 10:19:25.881 2025-03-19 10:19:25.881 435375 756 8 0 7910 2025-03-19 09:45:00.797 2025-03-19 09:45:00.797 435375 769 1 0 7911 2025-03-19 10:13:37.993 2025-03-19 10:13:37.993 435375 811 9 0 7912 2025-03-19 09:45:00.534 2025-03-19 09:45:00.534 435375 2042 9 0 7913 2025-03-19 12:20:53.194 2025-03-19 12:20:53.194 435375 4238 19 0 7914 2025-03-19 10:13:14.025 2025-03-19 10:13:14.025 435375 5057 1 0 7915 2025-03-19 18:07:59.78 2025-03-19 18:07:59.78 435375 7913 9 0 7916 2025-03-19 09:45:01.183 2025-03-19 09:45:01.183 435375 9330 9 0 7917 2025-03-19 10:19:25.648 2025-03-19 10:19:25.648 435375 9906 1 0 7918 2025-03-19 18:07:59.108 2025-03-19 18:07:59.108 435375 14122 1 0 7919 2025-03-19 12:20:53.194 2025-03-19 12:20:53.194 435375 14280 2 0 7920 2025-03-19 10:13:14.025 2025-03-19 10:13:14.025 435375 15049 7 0 7921 2025-03-19 09:45:01.183 2025-03-19 09:45:01.183 435375 16753 1 0 7922 2025-03-19 18:07:59.108 2025-03-19 18:07:59.108 435375 18225 9 0 7923 2025-03-19 10:19:25.881 2025-03-19 10:19:25.881 435375 18409 1 0 7924 2025-03-19 09:45:00.99 2025-03-19 09:45:00.99 435375 18930 1 0 7925 2025-03-19 09:45:00.99 2025-03-19 09:45:00.99 435375 20597 9 0 7926 2025-03-19 10:19:25.648 2025-03-19 10:19:25.648 435375 21824 0 0 7927 2025-03-19 10:19:23.429 2025-03-19 10:19:23.429 435376 718 0 0 7928 2025-03-19 10:19:23.559 2025-03-19 10:19:23.559 435376 1173 8 0 7929 2025-03-19 10:19:23.559 2025-03-19 10:19:23.559 435376 5069 1 0 7930 2025-03-19 10:19:23.429 2025-03-19 10:19:23.429 435376 7583 1 0 7931 2025-03-19 09:44:59.18 2025-03-19 09:44:59.18 435376 9332 1 0 7932 2025-03-19 09:55:08.157 2025-03-19 09:55:08.157 435377 676 21 0 7933 2025-03-19 11:05:35.37 2025-03-19 11:05:35.37 435377 681 1 0 7934 2025-03-19 09:55:13.432 2025-03-19 09:55:13.432 435377 794 21 0 7935 2025-03-19 11:40:47.987 2025-03-19 11:40:47.987 435377 896 7 0 7936 2025-03-19 09:55:58.594 2025-03-19 09:55:58.594 435377 1426 21 0 7937 2025-03-19 18:44:32.787 2025-03-19 18:44:32.787 435377 1469 1 0 7938 2025-03-19 10:49:02.263 2025-03-19 10:49:02.263 435377 1474 1 0 7939 2025-03-19 09:55:14.053 2025-03-19 09:55:14.053 435377 1478 21 0 7940 2025-03-19 09:55:13.64 2025-03-19 09:55:13.64 435377 1800 21 0 7941 2025-03-19 09:55:13.64 2025-03-19 09:55:13.64 435377 1983 2 0 7942 2025-03-19 09:55:14.747 2025-03-19 09:55:14.747 435377 2039 2 0 7943 2025-03-19 09:54:33.802 2025-03-19 09:54:33.802 435377 2322 8 0 7944 2025-03-19 09:54:33.802 2025-03-19 09:54:33.802 435377 5520 75 0 7945 2025-03-19 09:55:08.905 2025-03-19 09:55:08.905 435377 5725 2 0 7946 2025-03-19 18:41:41.981 2025-03-19 18:41:41.981 435377 5761 5 0 7947 2025-03-19 09:55:07.38 2025-03-19 09:55:07.38 435377 5775 21 0 7948 2025-03-19 11:05:35.37 2025-03-19 11:05:35.37 435377 5794 9 0 7949 2025-03-19 18:41:41.495 2025-03-19 18:41:41.495 435377 5852 1 0 7950 2025-03-19 09:55:58.019 2025-03-19 09:55:58.019 435377 7580 2 0 7951 2025-03-19 09:55:14.192 2025-03-19 09:55:14.192 435377 9177 21 0 7952 2025-03-19 09:55:13.79 2025-03-19 09:55:13.79 435377 9332 21 0 7953 2025-03-19 12:48:22.081 2025-03-19 12:48:22.081 435377 9339 9 0 7954 2025-03-19 09:55:14.747 2025-03-19 09:55:14.747 435377 10393 21 0 7955 2025-03-19 09:55:14.053 2025-03-19 09:55:14.053 435377 10493 2 0 7956 2025-03-19 09:55:58.019 2025-03-19 09:55:58.019 435377 10611 21 0 7957 2025-03-19 09:55:13.256 2025-03-19 09:55:13.256 435377 10719 21 0 7958 2025-03-19 09:55:13.79 2025-03-19 09:55:13.79 435377 13217 2 0 7959 2025-03-20 00:20:50.128 2025-03-20 00:20:50.128 435377 14552 1 0 7960 2025-03-19 09:55:13.256 2025-03-19 09:55:13.256 435377 14785 2 0 7961 2025-03-19 18:41:41.981 2025-03-19 18:41:41.981 435377 14941 1 0 7962 2025-03-19 09:55:08.905 2025-03-19 09:55:08.905 435377 15049 21 0 7963 2025-03-19 09:47:32.302 2025-03-19 09:47:32.302 435377 15408 1 0 7964 2025-03-19 09:55:08.157 2025-03-19 09:55:08.157 435377 16351 2 0 7965 2025-03-19 18:41:41.495 2025-03-19 18:41:41.495 435377 16978 5 0 7966 2025-03-19 18:44:32.787 2025-03-19 18:44:32.787 435377 17147 9 0 7967 2025-03-19 12:48:22.081 2025-03-19 12:48:22.081 435377 17201 1 0 7968 2025-03-19 09:55:58.594 2025-03-19 09:55:58.594 435377 18306 2 0 7969 2025-03-20 00:20:50.128 2025-03-20 00:20:50.128 435377 20120 9 0 7970 2025-03-19 09:55:14.192 2025-03-19 09:55:14.192 435377 20201 2 0 7971 2025-03-19 09:55:07.38 2025-03-19 09:55:07.38 435377 20275 2 0 7972 2025-03-19 09:55:13.432 2025-03-19 09:55:13.432 435377 20294 2 0 7973 2025-03-19 10:49:02.263 2025-03-19 10:49:02.263 435377 21314 9 0 7974 2025-03-19 11:40:47.987 2025-03-19 11:40:47.987 435377 21356 1 0 7975 2025-03-19 09:49:13.748 2025-03-19 09:49:13.748 435378 738 0 0 7976 2025-03-19 19:33:08.543 2025-03-19 19:33:08.543 435378 822 1 0 7977 2025-03-19 12:57:37.246 2025-03-19 12:57:37.246 435378 1046 1 0 7978 2025-03-19 19:36:46.341 2025-03-19 19:36:46.341 435378 1512 1 0 7979 2025-03-19 19:36:46.341 2025-03-19 19:36:46.341 435378 2543 9 0 7980 2025-03-19 19:03:36.934 2025-03-19 19:03:36.934 435378 2681 9 0 7981 2025-03-19 19:03:36.934 2025-03-19 19:03:36.934 435378 4173 1 0 7982 2025-03-19 12:57:38.981 2025-03-19 12:57:38.981 435378 7847 81 0 7983 2025-03-19 12:57:37.246 2025-03-19 12:57:37.246 435378 7891 8 0 7984 2025-03-19 13:51:35.518 2025-03-19 13:51:35.518 435378 8541 2 0 7985 2025-03-19 18:34:44.514 2025-03-19 18:34:44.514 435378 9833 1 0 7986 2025-03-19 19:33:08.543 2025-03-19 19:33:08.543 435378 12738 9 0 7987 2025-03-19 18:34:44.514 2025-03-19 18:34:44.514 435378 13378 5 0 7988 2025-03-20 00:20:18.327 2025-03-20 00:20:18.327 435378 14271 1 0 7989 2025-03-19 09:49:57.294 2025-03-19 09:49:57.294 435378 14385 0 0 7990 2025-03-20 00:20:18.327 2025-03-20 00:20:18.327 435378 15139 9 0 7991 2025-03-19 09:50:33.909 2025-03-19 09:50:33.909 435378 15180 0 0 7992 2025-03-19 09:50:31.229 2025-03-19 09:50:31.229 435378 16230 0 0 7993 2025-03-19 12:57:38.981 2025-03-19 12:57:38.981 435378 17050 9 0 7994 2025-03-19 18:44:05.225 2025-03-19 18:44:05.225 435378 18601 1 0 7995 2025-03-19 12:57:36.917 2025-03-19 12:57:36.917 435378 18615 0 0 7996 2025-03-19 18:44:05.225 2025-03-19 18:44:05.225 435378 20715 9 0 7997 2025-03-19 09:52:38.511 2025-03-19 09:52:38.511 435378 21033 0 0 7998 2025-03-19 13:51:35.518 2025-03-19 13:51:35.518 435378 21042 14 0 7999 2025-03-19 09:48:48.996 2025-03-19 09:48:48.996 435378 21178 1 0 8000 2025-03-19 09:50:31.229 2025-03-19 09:50:31.229 435378 21338 2 0 8001 2025-03-19 09:54:05.996 2025-03-19 09:54:05.996 435378 21421 0 0 8002 2025-03-19 09:51:44.83 2025-03-19 09:51:44.83 435378 21444 0 0 8003 2025-03-19 12:57:36.917 2025-03-19 12:57:36.917 435378 21815 1 0 8004 2025-03-19 09:57:55.512 2025-03-19 09:57:55.512 435379 989 0 0 8005 2025-03-19 10:00:44.508 2025-03-19 10:00:44.508 435379 8541 19 0 8006 2025-03-19 09:48:55.37 2025-03-19 09:48:55.37 435379 9352 20 0 8007 2025-03-19 09:57:55.512 2025-03-19 09:57:55.512 435379 13622 1 0 8008 2025-03-19 10:00:44.508 2025-03-19 10:00:44.508 435379 21485 2 0 8009 2025-03-19 09:55:36.968 2025-03-19 09:55:36.968 435380 1474 3 0 8010 2025-03-19 10:33:20.77 2025-03-19 10:33:20.77 435380 5495 0 0 8011 2025-03-19 09:55:36.968 2025-03-19 09:55:36.968 435380 17331 30 0 8012 2025-03-19 10:33:20.77 2025-03-19 10:33:20.77 435380 20657 1 0 8013 2025-03-19 09:51:14.996 2025-03-19 09:51:14.996 435380 21131 0 0 8014 2025-03-19 09:50:41.896 2025-03-19 09:50:41.896 435380 21506 1 0 8015 2025-03-19 09:52:38.745 2025-03-19 09:52:38.745 435381 633 1 0 8016 2025-03-19 09:52:38.745 2025-03-19 09:52:38.745 435381 5794 9 0 8017 2025-03-19 09:51:35.302 2025-03-19 09:51:35.302 435381 21506 1 0 8018 2025-03-19 12:57:33.47 2025-03-19 12:57:33.47 435382 2000 9 0 8019 2025-03-19 12:57:30.579 2025-03-19 12:57:30.579 435382 2577 0 0 8020 2025-03-19 12:57:30.808 2025-03-19 12:57:30.808 435382 2620 1 0 8021 2025-03-19 18:34:49.794 2025-03-19 18:34:49.794 435382 3304 5 0 8022 2025-03-19 10:09:50.537 2025-03-19 10:09:50.537 435382 4798 2 0 8023 2025-03-20 00:20:16.905 2025-03-20 00:20:16.905 435382 5497 9 0 8024 2025-03-19 12:57:33.47 2025-03-19 12:57:33.47 435382 6717 81 0 8025 2025-03-20 00:20:16.905 2025-03-20 00:20:16.905 435382 7891 1 0 8026 2025-03-19 12:57:30.808 2025-03-19 12:57:30.808 435382 9166 8 0 8027 2025-03-19 09:51:38.515 2025-03-19 09:51:38.515 435382 9341 1 0 8028 2025-03-19 11:04:34.299 2025-03-19 11:04:34.299 435382 12779 9 0 8029 2025-03-19 11:04:34.299 2025-03-19 11:04:34.299 435382 14381 1 0 8030 2025-03-19 09:51:57.628 2025-03-19 09:51:57.628 435382 17109 0 0 8031 2025-03-19 10:09:50.537 2025-03-19 10:09:50.537 435382 18114 0 0 8032 2025-03-19 18:34:49.794 2025-03-19 18:34:49.794 435382 20647 1 0 8033 2025-03-19 12:57:30.579 2025-03-19 12:57:30.579 435382 21539 1 0 8034 2025-03-19 18:59:04.535 2025-03-19 18:59:04.535 435383 836 4 0 8035 2025-03-19 18:59:04.535 2025-03-19 18:59:04.535 435383 12334 38 0 8036 2025-03-19 09:53:05.163 2025-03-19 09:53:05.163 435383 20901 1 0 8037 2025-03-19 18:41:20.261 2025-03-19 18:41:20.261 435384 730 5 0 8038 2025-03-19 18:51:46.383 2025-03-19 18:51:46.383 435384 1785 1 0 8039 2025-03-19 18:41:17.26 2025-03-19 18:41:17.26 435384 2361 5 0 8040 2025-03-19 10:06:03.752 2025-03-19 10:06:03.752 435384 5775 75 0 8041 2025-03-19 19:33:27.691 2025-03-19 19:33:27.691 435384 5961 1 0 8042 2025-03-19 18:51:46.383 2025-03-19 18:51:46.383 435384 7097 9 0 8043 2025-03-19 12:27:22.909 2025-03-19 12:27:22.909 435384 7877 1 0 8044 2025-03-19 18:41:20.261 2025-03-19 18:41:20.261 435384 8472 1 0 8045 2025-03-19 12:27:22.296 2025-03-19 12:27:22.296 435384 10862 1 0 8046 2025-03-19 16:56:21.373 2025-03-19 16:56:21.373 435384 16042 0 0 8047 2025-03-19 10:06:03.752 2025-03-19 10:06:03.752 435384 16562 8 0 8048 2025-03-19 09:53:37.672 2025-03-19 09:53:37.672 435384 16633 1 0 8049 2025-03-19 12:27:22.909 2025-03-19 12:27:22.909 435384 17218 9 0 8050 2025-03-19 18:41:17.26 2025-03-19 18:41:17.26 435384 19952 1 0 8051 2025-03-19 12:27:22.296 2025-03-19 12:27:22.296 435384 20120 9 0 8052 2025-03-19 19:33:27.691 2025-03-19 19:33:27.691 435384 20509 9 0 8053 2025-03-19 16:56:21.373 2025-03-19 16:56:21.373 435384 21019 1 0 8054 2025-03-19 09:53:41.199 2025-03-19 09:53:41.199 435385 3439 1 0 8055 2025-03-19 09:55:14.453 2025-03-19 09:55:14.453 435386 739 1 0 8056 2025-03-19 09:55:12.304 2025-03-19 09:55:12.304 435386 1124 1 0 8057 2025-03-19 09:55:14.453 2025-03-19 09:55:14.453 435386 8448 9 0 8058 2025-03-19 09:55:13.216 2025-03-19 09:55:13.216 435386 9200 1 0 8059 2025-03-19 09:54:05.623 2025-03-19 09:54:05.623 435386 13566 1 0 8060 2025-03-19 09:55:13.216 2025-03-19 09:55:13.216 435386 13843 9 0 8061 2025-03-19 09:55:15.594 2025-03-19 09:55:15.594 435386 17365 1 0 8062 2025-03-19 09:55:12.304 2025-03-19 09:55:12.304 435386 18402 9 0 8063 2025-03-19 09:55:16.004 2025-03-19 09:55:16.004 435386 19138 9 0 8064 2025-03-19 09:55:15.594 2025-03-19 09:55:15.594 435386 20660 9 0 8065 2025-03-19 09:55:16.004 2025-03-19 09:55:16.004 435386 20691 1 0 8066 2025-03-19 09:54:30.614 2025-03-19 09:54:30.614 435387 822 1 0 8067 2025-03-19 09:54:59.523 2025-03-19 09:54:59.523 435388 666 1 0 8068 2025-03-19 09:55:38.318 2025-03-19 09:55:38.318 435389 16965 100 0 8069 2025-03-19 12:07:15.973 2025-03-19 12:07:15.973 435390 4798 3 0 8070 2025-03-19 15:49:07.117 2025-03-19 15:49:07.117 435390 7818 27 0 8071 2025-03-19 09:58:20.529 2025-03-19 09:58:20.529 435390 7899 7 0 8072 2025-03-19 15:49:07.117 2025-03-19 15:49:07.117 435390 13327 3 0 8073 2025-03-19 12:07:15.973 2025-03-19 12:07:15.973 435390 16193 24 0 8074 2025-03-19 11:07:00.33 2025-03-19 11:07:00.33 435391 652 1 0 8075 2025-03-19 11:07:00.33 2025-03-19 11:07:00.33 435391 11018 9 0 8076 2025-03-19 09:58:21.002 2025-03-19 09:58:21.002 435391 19966 1 0 8077 2025-03-19 09:58:40.329 2025-03-19 09:58:40.329 435392 1584 210 0 8078 2025-03-19 09:59:49.794 2025-03-19 09:59:49.794 435392 8664 2 0 8079 2025-03-19 09:59:49.794 2025-03-19 09:59:49.794 435392 10693 21 0 8080 2025-03-20 00:21:39.865 2025-03-20 00:21:39.865 435393 2609 1 0 8081 2025-03-20 00:21:39.865 2025-03-20 00:21:39.865 435393 12102 9 0 8082 2025-03-19 09:58:46.924 2025-03-19 09:58:46.924 435393 15045 1 0 8083 2025-03-19 09:59:00.941 2025-03-19 09:59:00.941 435394 2342 1 0 8084 2025-03-19 10:01:34.018 2025-03-19 10:01:34.018 435394 3990 2 0 8085 2025-03-19 10:01:34.018 2025-03-19 10:01:34.018 435394 15408 19 0 8086 2025-03-19 10:00:54.587 2025-03-19 10:00:54.587 435394 21555 0 0 8087 2025-03-19 10:01:46.651 2025-03-19 10:01:46.651 435395 1673 0 0 8088 2025-03-19 09:59:39.652 2025-03-19 09:59:39.652 435395 3411 1 0 8089 2025-03-19 12:57:26.646 2025-03-19 12:57:26.646 435396 720 0 0 8090 2025-03-19 10:13:32.392 2025-03-19 10:13:32.392 435396 1576 0 0 8091 2025-03-20 00:20:21.813 2025-03-20 00:20:21.813 435396 2749 9 0 8092 2025-03-19 12:57:26.902 2025-03-19 12:57:26.902 435396 5961 8 0 8093 2025-03-19 10:13:32.392 2025-03-19 10:13:32.392 435396 8926 2 0 8094 2025-03-19 09:59:42.938 2025-03-19 09:59:42.938 435396 14278 1 0 8095 2025-03-19 12:57:26.902 2025-03-19 12:57:26.902 435396 15045 1 0 8096 2025-03-19 12:57:26.646 2025-03-19 12:57:26.646 435396 15160 1 0 8097 2025-03-20 00:20:21.813 2025-03-20 00:20:21.813 435396 19524 1 0 8098 2025-03-19 10:00:49.645 2025-03-19 10:00:49.645 435397 5757 1 0 8099 2025-03-20 00:21:43.06 2025-03-20 00:21:43.06 435398 623 1 0 8100 2025-03-19 10:03:01.974 2025-03-19 10:03:01.974 435398 4084 0 0 8101 2025-03-19 10:02:43.29 2025-03-19 10:02:43.29 435398 9290 1 0 8102 2025-03-20 00:21:43.06 2025-03-20 00:21:43.06 435398 16097 9 0 8103 2025-03-19 10:03:22.575 2025-03-19 10:03:22.575 435399 666 2 0 8104 2025-03-19 10:03:18.488 2025-03-19 10:03:18.488 435399 686 21 0 8105 2025-03-19 10:03:21.078 2025-03-19 10:03:21.078 435399 708 21 0 8106 2025-03-19 10:03:22.451 2025-03-19 10:03:22.451 435399 725 2 0 8107 2025-03-19 10:02:44.323 2025-03-19 10:02:44.323 435399 859 1 0 8108 2025-03-19 10:03:18.747 2025-03-19 10:03:18.747 435399 1030 2 0 8109 2025-03-19 10:03:22.699 2025-03-19 10:03:22.699 435399 1512 21 0 8110 2025-03-19 10:03:20.809 2025-03-19 10:03:20.809 435399 1564 2 0 8111 2025-03-19 10:03:37.871 2025-03-19 10:03:37.871 435399 1631 41 0 8112 2025-03-19 10:03:18.876 2025-03-19 10:03:18.876 435399 2361 2 0 8113 2025-03-19 10:03:20.696 2025-03-19 10:03:20.696 435399 3213 2 0 8114 2025-03-19 10:03:36.534 2025-03-19 10:03:36.534 435399 3439 21 0 8115 2025-03-19 10:03:20.45 2025-03-19 10:03:20.45 435399 4084 2 0 8116 2025-03-19 10:03:36.892 2025-03-19 10:03:36.892 435399 4314 41 0 8117 2025-03-19 10:03:21.078 2025-03-19 10:03:21.514 435399 4570 23 0 8118 2025-03-19 10:03:19.231 2025-03-19 10:03:19.231 435399 4624 21 0 8119 2025-03-19 10:03:17.946 2025-03-19 10:03:17.946 435399 4989 21 0 8120 2025-03-19 10:03:20.6 2025-03-19 10:03:20.6 435399 5129 21 0 8121 2025-03-19 10:03:19.231 2025-03-19 10:03:19.231 435399 5425 2 0 8122 2025-03-19 10:03:36.644 2025-03-19 10:03:36.644 435399 5961 21 0 8123 2025-03-19 10:03:20.6 2025-03-19 10:03:20.6 435399 6164 2 0 8124 2025-03-19 10:03:36.892 2025-03-19 10:03:36.892 435399 6260 5 0 8125 2025-03-19 10:03:22.451 2025-03-19 10:03:22.451 435399 6471 21 0 8126 2025-03-19 10:03:20.45 2025-03-19 10:03:20.45 435399 7847 21 0 8127 2025-03-19 10:03:19.001 2025-03-19 10:03:19.001 435399 8059 21 0 8128 2025-03-19 10:03:17.946 2025-03-19 10:03:17.946 435399 9341 2 0 8129 2025-03-19 10:03:37.485 2025-03-19 10:03:37.485 435399 9378 21 0 8130 2025-03-19 10:03:17.888 2025-03-19 10:03:17.888 435399 11018 5 0 8131 2025-03-19 10:03:17.888 2025-03-19 10:03:17.888 435399 11153 41 0 8132 2025-03-19 10:03:21.632 2025-03-19 10:03:21.632 435399 11942 2 0 8133 2025-03-19 10:03:22.575 2025-03-19 10:03:22.575 435399 12277 21 0 8134 2025-03-19 10:03:37.485 2025-03-19 10:03:37.485 435399 12951 2 0 8135 2025-03-19 10:03:19.612 2025-03-19 10:03:19.612 435399 13038 21 0 8136 2025-03-19 10:03:18.488 2025-03-19 10:03:18.488 435399 13599 2 0 8137 2025-03-19 10:03:18.876 2025-03-19 10:03:18.876 435399 13843 21 0 8138 2025-03-19 10:03:21.514 2025-03-19 10:03:22.699 435399 14168 5 0 8139 2025-03-19 10:03:21.366 2025-03-19 10:03:21.366 435399 14271 2 0 8140 2025-03-19 10:03:21.218 2025-03-19 10:03:21.218 435399 15196 2 0 8141 2025-03-19 10:03:18.747 2025-03-19 10:03:19.386 435399 16059 41 0 8142 2025-03-19 10:03:21.632 2025-03-19 10:03:21.632 435399 17673 21 0 8143 2025-03-19 10:03:20.299 2025-03-19 10:03:20.299 435399 17696 2 0 8144 2025-03-19 10:03:19.506 2025-03-19 10:03:19.506 435399 17944 21 0 8145 2025-03-19 10:03:19.001 2025-03-19 10:03:19.001 435399 18225 2 0 8146 2025-03-19 10:03:19.612 2025-03-19 10:03:19.612 435399 18618 2 0 8147 2025-03-19 10:03:19.506 2025-03-19 10:03:19.506 435399 18637 2 0 8148 2025-03-19 10:03:21.366 2025-03-19 10:03:21.366 435399 19333 21 0 8149 2025-03-19 10:03:20.809 2025-03-19 10:03:20.809 435399 19842 21 0 8150 2025-03-19 10:03:20.696 2025-03-19 10:03:20.696 435399 20180 21 0 8151 2025-03-19 10:03:36.644 2025-03-19 10:03:36.644 435399 20182 2 0 8152 2025-03-19 10:03:20.299 2025-03-19 10:03:20.299 435399 20603 21 0 8153 2025-03-19 10:03:20.947 2025-03-19 10:03:20.947 435399 20683 2 0 8154 2025-03-19 10:03:21.218 2025-03-19 10:03:21.218 435399 20979 21 0 8155 2025-03-19 10:03:36.534 2025-03-19 10:03:36.534 435399 21042 2 0 8156 2025-03-19 10:03:19.386 2025-03-19 10:03:19.386 435399 21067 2 0 8157 2025-03-19 10:03:37.871 2025-03-19 10:03:37.871 435399 21159 5 0 8158 2025-03-19 10:03:20.947 2025-03-19 10:03:20.947 435399 21356 21 0 8159 2025-03-19 10:03:34.953 2025-03-19 10:03:34.953 435400 680 1 0 8160 2025-03-19 10:17:00.079 2025-03-19 10:17:00.079 435400 2537 11 0 8161 2025-03-19 10:17:00.079 2025-03-19 10:17:00.079 435400 16059 100 0 8162 2025-03-19 10:13:37.673 2025-03-19 10:13:37.673 435401 759 2 0 8163 2025-03-19 12:57:21.903 2025-03-19 12:57:21.903 435401 805 8 0 8164 2025-03-19 12:57:21.903 2025-03-19 12:57:21.903 435401 1720 1 0 8165 2025-03-19 12:57:21.677 2025-03-19 12:57:21.677 435401 2061 1 0 8166 2025-03-19 12:57:21.677 2025-03-19 12:57:21.677 435401 9341 0 0 8167 2025-03-20 00:20:19.161 2025-03-20 00:20:19.161 435401 11897 9 0 8168 2025-03-20 00:20:19.161 2025-03-20 00:20:19.161 435401 13378 1 0 8169 2025-03-19 10:13:37.673 2025-03-19 10:13:37.673 435401 20254 0 0 8170 2025-03-19 10:03:46.074 2025-03-19 10:03:46.074 435401 21136 1 0 8171 2025-03-19 10:18:56.721 2025-03-19 10:18:56.721 435402 718 0 0 8172 2025-03-19 23:43:07.037 2025-03-19 23:43:07.037 435402 1039 10 0 8173 2025-03-19 13:48:09.599 2025-03-19 13:48:09.599 435402 1354 4 0 8174 2025-03-19 13:48:09.978 2025-03-19 13:48:09.978 435402 1571 19 0 8175 2025-03-19 10:19:01.57 2025-03-19 10:19:01.57 435402 1785 81 0 8176 2025-03-19 10:28:55.316 2025-03-19 10:28:55.316 435402 1802 2 0 8177 2025-03-19 13:48:10.505 2025-03-19 13:48:10.505 435402 4313 2 0 8178 2025-03-19 13:48:09.599 2025-03-19 13:48:09.599 435402 4633 38 0 8179 2025-03-19 13:48:10.505 2025-03-19 13:48:10.505 435402 6430 19 0 8180 2025-03-19 10:04:15.828 2025-03-19 10:04:15.828 435402 7580 100 0 8181 2025-03-19 11:38:51.755 2025-03-19 13:48:08.851 435402 8544 8 0 8182 2025-03-19 13:48:09.978 2025-03-19 13:48:09.978 435402 10096 2 0 8183 2025-03-19 13:48:08.851 2025-03-19 13:48:08.851 435402 13100 38 0 8184 2025-03-19 14:16:14.961 2025-03-19 14:16:14.961 435402 15146 1 0 8185 2025-03-19 11:38:51.755 2025-03-19 11:38:51.755 435402 15160 36 0 8186 2025-03-19 10:18:56.921 2025-03-19 10:18:56.921 435402 15386 1 0 8187 2025-03-19 12:18:45.681 2025-03-19 12:18:45.681 435402 16296 19 0 8188 2025-03-19 10:19:01.57 2025-03-19 10:19:01.57 435402 16747 9 0 8189 2025-03-19 10:28:55.316 2025-03-19 10:28:55.316 435402 17201 19 0 8190 2025-03-19 12:18:45.681 2025-03-19 12:18:45.681 435402 18423 2 0 8191 2025-03-19 10:18:56.921 2025-03-19 10:18:56.921 435402 18743 8 0 8192 2025-03-19 14:16:14.961 2025-03-19 14:16:14.961 435402 20751 5 0 8193 2025-03-19 23:43:07.037 2025-03-19 23:43:07.037 435402 21338 90 0 8194 2025-03-19 10:18:56.721 2025-03-19 10:18:56.721 435402 21357 1 0 8195 2025-03-19 10:04:16.404 2025-03-19 10:04:16.404 435403 9426 1 0 8196 2025-03-20 00:21:39.319 2025-03-20 00:21:39.319 435404 1717 1 0 8197 2025-03-19 10:04:24.695 2025-03-19 10:04:24.695 435404 2639 1 0 8198 2025-03-20 00:21:39.319 2025-03-20 00:21:39.319 435404 19524 9 0 8199 2025-03-19 10:06:08.556 2025-03-19 10:06:08.556 435405 20157 1 0 8200 2025-03-20 00:21:38.705 2025-03-20 00:21:38.705 435405 20987 1 0 8201 2025-03-20 00:21:38.705 2025-03-20 00:21:38.705 435405 21424 9 0 8202 2025-03-19 10:13:12.986 2025-03-19 10:13:12.986 435406 807 9 0 8203 2025-03-20 01:05:34.685 2025-03-20 01:05:34.685 435406 11515 90 0 8204 2025-03-19 10:13:12.986 2025-03-19 10:13:12.986 435406 15273 1 0 8205 2025-03-19 10:07:36.832 2025-03-19 10:07:36.832 435406 17184 1 0 8206 2025-03-20 01:05:34.685 2025-03-20 01:05:34.685 435406 20190 10 0 8207 2025-03-19 10:09:46.635 2025-03-19 10:09:46.635 435407 20190 1 0 8208 2025-03-20 00:20:17.881 2025-03-20 00:20:17.881 435408 760 9 0 8209 2025-03-20 00:20:17.881 2025-03-20 00:20:17.881 435408 5487 1 0 8210 2025-03-19 10:10:42.769 2025-03-19 10:10:42.769 435408 8176 1 0 8211 2025-03-19 10:11:45.496 2025-03-19 10:11:45.496 435409 11873 1 0 8212 2025-03-20 00:20:20.55 2025-03-20 00:20:20.55 435409 11996 9 0 8213 2025-03-19 10:11:53.213 2025-03-19 10:11:53.213 435409 16956 0 0 8214 2025-03-20 00:20:20.55 2025-03-20 00:20:20.55 435409 19842 1 0 8215 2025-03-19 10:12:03.843 2025-03-19 10:12:03.843 435409 20799 0 0 8216 2025-03-19 11:03:44.518 2025-03-19 11:03:44.518 435410 1319 9 0 8217 2025-03-19 18:05:33.934 2025-03-19 18:05:33.934 435410 1429 1 0 8218 2025-03-19 19:11:27.246 2025-03-19 19:11:27.246 435410 1717 4 0 8219 2025-03-19 11:03:44.518 2025-03-19 11:03:44.518 435410 2111 1 0 8220 2025-03-19 20:53:28.747 2025-03-19 20:53:28.747 435410 7979 0 0 8221 2025-03-19 19:11:27.246 2025-03-19 19:11:27.246 435410 9276 38 0 8222 2025-03-19 18:05:33.934 2025-03-19 18:05:33.934 435410 9354 9 0 8223 2025-03-19 10:29:51.763 2025-03-19 10:29:51.763 435410 9906 2 0 8224 2025-03-19 10:29:51.763 2025-03-19 10:29:51.763 435410 14465 19 0 8225 2025-03-19 10:16:52.322 2025-03-19 10:16:52.322 435410 15588 2 0 8226 2025-03-20 00:20:22.948 2025-03-20 00:20:22.948 435410 15762 1 0 8227 2025-03-19 10:11:54.09 2025-03-19 10:11:54.09 435410 17095 100 0 8228 2025-03-19 20:53:28.747 2025-03-19 20:53:28.747 435410 17838 4 0 8229 2025-03-19 15:25:24.21 2025-03-19 15:25:24.21 435410 18618 1350 0 8230 2025-03-19 15:25:24.21 2025-03-19 15:25:24.21 435410 20837 150 0 8231 2025-03-19 10:16:52.322 2025-03-19 10:16:52.322 435410 21058 0 0 8232 2025-03-20 00:20:22.948 2025-03-20 00:20:22.948 435410 21287 9 0 8233 2025-03-19 10:19:04.309 2025-03-19 10:19:04.309 435411 1000 1 0 8234 2025-03-19 10:19:03.172 2025-03-19 10:19:03.172 435411 16177 1 0 8235 2025-03-19 10:19:03.769 2025-03-19 10:19:03.769 435411 19199 1 0 8236 2025-03-19 10:12:20.211 2025-03-19 10:12:20.211 435411 19333 10 0 8237 2025-03-19 10:19:03.172 2025-03-19 10:19:03.172 435411 20596 10 0 8238 2025-03-19 10:19:03.769 2025-03-19 10:19:03.769 435411 20642 10 0 8239 2025-03-19 10:19:04.309 2025-03-19 10:19:04.309 435411 20854 10 0 8240 2025-03-19 10:18:43.225 2025-03-19 10:18:43.225 435412 1038 8 0 8241 2025-03-19 10:18:43.225 2025-03-19 10:18:43.225 435412 1740 1 0 8242 2025-03-19 11:17:35.602 2025-03-19 11:17:35.602 435412 8045 90 0 8243 2025-03-19 11:11:38.797 2025-03-19 11:11:38.797 435412 8459 105 0 8244 2025-03-19 11:11:38.797 2025-03-19 11:11:38.797 435412 13921 12 0 8245 2025-03-19 11:17:35.602 2025-03-19 11:17:35.602 435412 16177 10 0 8246 2025-03-19 10:18:43.036 2025-03-19 10:18:43.036 435412 16948 0 0 8247 2025-03-19 10:12:30.176 2025-03-19 10:12:30.176 435412 17710 10 0 8248 2025-03-19 10:18:43.036 2025-03-19 10:18:43.036 435412 21578 1 0 8249 2025-03-19 10:12:59.167 2025-03-19 10:12:59.167 435413 687 1 0 8250 2025-03-19 12:21:02.566 2025-03-19 12:21:02.566 435413 9537 19 0 8251 2025-03-19 10:19:24.507 2025-03-19 10:19:24.507 435413 11678 9 0 8252 2025-03-19 12:21:02.566 2025-03-19 12:21:02.566 435413 18393 2 0 8253 2025-03-19 10:19:24.507 2025-03-19 10:19:24.507 435413 20782 1 0 8254 2025-03-19 10:15:32.33 2025-03-19 10:15:32.33 435414 10342 0 83 8255 2025-03-19 10:18:15.247 2025-03-19 10:18:15.247 435414 11621 0 100 8256 2025-03-19 10:13:10.68 2025-03-19 10:13:10.68 435415 2519 1 0 8257 2025-03-19 10:13:30.681 2025-03-19 10:13:30.681 435416 1105 1 0 8258 2025-03-19 10:28:24.09 2025-03-19 10:28:24.09 435416 16556 1 0 8259 2025-03-19 10:28:24.09 2025-03-19 10:28:24.09 435416 19263 0 0 8260 2025-03-19 10:19:20.272 2025-03-19 10:19:20.272 435417 690 0 0 8261 2025-03-19 12:51:12.356 2025-03-19 12:51:12.356 435417 13177 1 0 8262 2025-03-19 10:15:17.709 2025-03-19 10:15:17.709 435417 17541 1 0 8263 2025-03-19 12:51:12.356 2025-03-19 12:51:12.356 435417 21296 9 0 8264 2025-03-19 10:18:28.023 2025-03-19 10:18:28.023 435418 7877 1 0 8265 2025-03-19 10:18:45.67 2025-03-19 10:18:45.67 435419 1720 1 0 8266 2025-03-19 16:06:44.43 2025-03-19 16:06:44.43 435420 656 1 0 8267 2025-03-20 00:20:25.065 2025-03-20 00:20:25.065 435420 714 9 0 8268 2025-03-19 16:06:43.104 2025-03-19 16:06:43.104 435420 4692 5 0 8269 2025-03-19 16:06:43.104 2025-03-19 16:06:43.104 435420 6149 1 0 8270 2025-03-19 11:04:03.685 2025-03-19 11:04:03.685 435420 10007 9 0 8271 2025-03-19 10:19:18.128 2025-03-19 10:19:18.128 435420 11220 1 0 8272 2025-03-20 00:20:25.065 2025-03-20 00:20:25.065 435420 12736 1 0 8273 2025-03-19 11:04:03.685 2025-03-19 11:04:03.685 435420 20500 1 0 8274 2025-03-19 16:06:44.43 2025-03-19 16:06:44.43 435420 21019 5 0 8275 2025-03-20 00:21:38.12 2025-03-20 00:21:38.12 435421 1488 1 0 8276 2025-03-19 10:19:21.855 2025-03-19 10:19:21.855 435421 17984 1 0 8277 2025-03-20 00:21:38.12 2025-03-20 00:21:38.12 435421 18630 9 0 8278 2025-03-19 10:19:27.904 2025-03-19 10:19:27.904 435422 19930 1 0 8279 2025-03-19 10:22:06.765 2025-03-19 10:22:06.765 435423 5377 1 0 8280 2025-03-19 10:22:31.464 2025-03-19 10:22:31.464 435424 2674 1 0 8281 2025-03-19 12:42:18.021 2025-03-19 12:42:18.021 435425 629 1 0 8282 2025-03-19 10:26:45.507 2025-03-19 10:26:45.507 435425 1046 75 0 8283 2025-03-19 10:26:44.892 2025-03-19 10:26:44.892 435425 1468 8 0 8284 2025-03-19 12:42:18.021 2025-03-19 12:42:18.021 435425 15045 9 0 8285 2025-03-19 10:26:45.507 2025-03-19 10:26:45.507 435425 16289 8 0 8286 2025-03-19 10:26:43.683 2025-03-19 10:26:43.683 435425 16788 75 0 8287 2025-03-19 10:26:43.683 2025-03-19 10:26:43.683 435425 17046 8 0 8288 2025-03-19 10:24:57.107 2025-03-19 10:24:57.107 435425 19524 1 0 8289 2025-03-19 10:26:44.892 2025-03-19 10:26:44.892 435425 20674 75 0 8290 2025-03-19 10:30:50.648 2025-03-19 10:30:50.648 435426 3377 0 0 8291 2025-03-19 10:25:03.796 2025-03-19 10:25:03.796 435426 10270 100 0 8292 2025-03-19 10:30:50.648 2025-03-19 10:30:50.648 435426 17171 2 0 8293 2025-03-19 10:25:05.703 2025-03-19 10:25:05.703 435427 1135 1 0 8294 2025-03-19 11:47:01.813 2025-03-19 11:47:01.813 435427 1692 9 0 8295 2025-03-19 10:27:37.75 2025-03-19 10:27:37.75 435427 13365 243 0 8296 2025-03-19 11:47:01.813 2025-03-19 11:47:01.813 435427 19292 1 0 8297 2025-03-19 10:27:36.076 2025-03-19 10:27:36.076 435427 20152 3 0 8298 2025-03-19 10:27:37.75 2025-03-19 10:27:37.75 435427 21247 27 0 8299 2025-03-19 10:27:36.076 2025-03-19 10:27:36.076 435427 21356 27 0 8300 2025-03-19 10:25:16.647 2025-03-19 10:25:16.647 435428 750 1 0 8301 2025-03-19 10:25:31.671 2025-03-19 10:25:31.671 435429 21033 1 0 8302 2025-03-19 10:26:52.326 2025-03-19 10:26:52.326 435430 722 100 0 8303 2025-03-19 10:31:00.739 2025-03-19 10:31:00.739 435430 861 0 0 8304 2025-03-20 00:20:25.821 2025-03-20 00:20:25.821 435430 6741 1 0 8305 2025-03-20 00:20:25.821 2025-03-20 00:20:25.821 435430 18441 9 0 8306 2025-03-19 10:31:00.739 2025-03-19 10:31:00.739 435430 20616 2 0 8307 2025-03-19 10:27:30.101 2025-03-19 10:27:30.101 435431 1761 1 0 8308 2025-03-19 13:21:16.917 2025-03-19 13:21:16.917 435431 18528 3 0 8309 2025-03-19 13:21:16.917 2025-03-19 13:21:16.917 435431 20669 27 0 8310 2025-03-19 10:28:18.325 2025-03-19 10:28:18.325 435432 15732 1 0 8311 2025-03-19 10:28:38.121 2025-03-19 10:28:38.121 435433 10493 10 0 8312 2025-03-19 10:31:41.9 2025-03-19 10:31:41.9 435434 7674 1 0 8313 2025-03-19 10:32:05.174 2025-03-19 10:32:05.174 435435 718 1 0 8314 2025-03-19 12:51:47.173 2025-03-19 12:51:47.173 435436 16598 9 0 8315 2025-03-19 12:51:47.173 2025-03-19 12:51:47.173 435436 20588 1 0 8316 2025-03-19 10:32:15.906 2025-03-19 10:32:15.906 435436 21701 1 0 8317 2025-03-19 10:37:42.479 2025-03-19 10:37:42.479 435437 3717 19 0 8318 2025-03-19 10:37:42.479 2025-03-19 10:37:42.479 435437 9350 2 0 8319 2025-03-19 10:49:09.345 2025-03-19 10:49:09.345 435437 15409 1 0 8320 2025-03-19 10:49:09.345 2025-03-19 10:49:09.345 435437 21166 10 0 8321 2025-03-19 10:32:24.346 2025-03-19 10:32:24.346 435437 21829 100 0 8322 2025-03-20 08:33:18.082 2025-03-20 08:33:18.082 435438 5746 1 0 8323 2025-03-19 10:43:08.2 2025-03-19 10:43:08.2 435438 9695 8 0 8324 2025-03-19 10:43:07.482 2025-03-19 10:43:07.482 435438 16126 75 0 8325 2025-03-19 10:43:08.2 2025-03-19 10:43:08.2 435438 16747 75 0 8326 2025-03-19 12:45:24.587 2025-03-19 12:45:24.587 435438 18270 9 0 8327 2025-03-19 10:43:07.482 2025-03-19 10:43:07.482 435438 19531 8 0 8328 2025-03-20 08:33:18.082 2025-03-20 08:33:18.082 435438 20563 7 0 8329 2025-03-19 10:32:29.004 2025-03-19 10:32:29.004 435438 21184 1 0 8330 2025-03-19 12:45:24.587 2025-03-19 12:45:24.587 435438 21214 1 0 8331 2025-03-19 10:35:07.724 2025-03-19 10:35:07.724 435439 6419 1 0 8332 2025-03-19 10:39:09.099 2025-03-19 10:39:09.099 435439 10934 9 0 8333 2025-03-20 00:20:23.494 2025-03-20 00:20:23.494 435439 16858 1 0 8334 2025-03-19 10:39:09.099 2025-03-19 10:39:09.099 435439 20412 1 0 8335 2025-03-20 00:20:23.494 2025-03-20 00:20:23.494 435439 20922 9 0 8336 2025-03-19 10:38:18.909 2025-03-19 10:38:18.909 435440 992 14 0 8337 2025-03-19 10:36:48.367 2025-03-19 10:36:48.367 435440 1814 1 0 8338 2025-03-19 10:38:18.909 2025-03-19 10:38:18.909 435440 9339 2 0 8339 2025-03-19 10:38:33.116 2025-03-19 10:38:33.116 435440 12946 5 0 8340 2025-03-19 10:38:33.116 2025-03-19 10:38:33.116 435440 13467 1 0 8341 2025-03-19 10:37:05.971 2025-03-19 10:37:05.971 435441 762 21 0 8342 2025-03-20 00:21:43.486 2025-03-20 00:21:43.486 435442 1751 9 0 8343 2025-03-19 10:37:05.975 2025-03-19 10:37:05.975 435442 2719 1 0 8344 2025-03-20 00:21:43.486 2025-03-20 00:21:43.486 435442 21402 1 0 8345 2025-03-19 10:37:08.709 2025-03-19 10:37:08.709 435443 10981 1 0 8346 2025-03-19 10:45:51.775 2025-03-19 10:45:51.775 435443 14785 36 0 8347 2025-03-19 10:45:51.775 2025-03-19 10:45:51.775 435443 19303 4 0 8348 2025-03-19 10:37:36.583 2025-03-19 10:37:36.583 435444 1603 1 0 8349 2025-03-19 10:38:21.489 2025-03-19 10:38:21.489 435444 9026 1 0 8350 2025-03-19 10:38:21.489 2025-03-19 10:38:21.489 435444 15843 10 0 8351 2025-03-19 10:41:25.77 2025-03-19 10:41:25.77 435445 3506 1 0 8352 2025-03-19 10:43:14.667 2025-03-19 10:43:14.667 435445 4079 27 0 8353 2025-03-19 10:43:14.667 2025-03-19 10:43:14.667 435445 13547 3 0 8354 2025-03-20 00:20:32.796 2025-03-20 00:20:32.796 435446 11073 1 0 8355 2025-03-20 00:20:32.796 2025-03-20 00:20:32.796 435446 17041 9 0 8356 2025-03-19 10:43:01.231 2025-03-19 10:43:01.231 435446 17638 2 0 8357 2025-03-19 10:43:01.231 2025-03-19 10:43:01.231 435446 20998 0 0 8358 2025-03-19 10:42:05.64 2025-03-19 10:42:05.64 435446 21797 1 0 8359 2025-03-20 07:01:22.238 2025-03-20 07:01:22.238 435447 649 1 0 8360 2025-03-20 07:01:21.923 2025-03-20 07:01:21.923 435447 704 9 0 8361 2025-03-19 10:45:53.09 2025-03-19 10:45:53.09 435447 713 4 0 8362 2025-03-19 10:43:30.658 2025-03-19 10:43:30.658 435447 854 1 0 8363 2025-03-19 10:45:53.09 2025-03-19 10:45:53.09 435447 2961 36 0 8364 2025-03-20 07:01:22.238 2025-03-20 07:01:22.238 435447 16354 9 0 8365 2025-03-19 10:50:44.304 2025-03-19 10:50:44.304 435447 17365 3 0 8366 2025-03-20 07:01:21.923 2025-03-20 07:01:21.923 435447 21506 1 0 8367 2025-03-19 10:50:44.304 2025-03-19 10:50:44.304 435447 21670 27 0 8368 2025-03-19 10:44:40.678 2025-03-19 10:44:40.678 435448 658 1 0 8369 2025-03-19 10:44:40.929 2025-03-19 10:44:40.929 435448 705 1 0 8370 2025-03-19 10:44:40.929 2025-03-19 10:44:40.929 435448 1577 0 0 8371 2025-03-19 10:44:41.244 2025-03-19 10:44:41.244 435448 11145 0 0 8372 2025-03-19 10:44:40.504 2025-03-19 10:44:40.504 435448 11165 1 0 8373 2025-03-19 10:44:41.106 2025-03-19 10:44:41.106 435448 14449 1 0 8374 2025-03-19 10:44:41.106 2025-03-19 10:44:41.106 435448 14909 0 0 8375 2025-03-19 10:43:38.838 2025-03-19 10:43:38.838 435448 15367 1 0 8376 2025-03-19 10:44:41.244 2025-03-19 10:44:41.244 435448 16456 1 0 8377 2025-03-19 10:44:40.504 2025-03-19 10:44:40.504 435448 16876 0 0 8378 2025-03-19 10:44:40.678 2025-03-19 10:44:40.678 435448 21274 0 0 8379 2025-03-19 11:03:50.402 2025-03-19 11:03:50.402 435449 1726 1 0 8380 2025-03-19 11:56:01.365 2025-03-19 11:56:01.365 435449 1729 1 0 8381 2025-03-19 11:03:50.239 2025-03-19 11:03:50.239 435449 1823 1 0 8382 2025-03-19 11:56:01.512 2025-03-19 11:56:01.512 435449 1836 9 0 8383 2025-03-19 11:56:01.512 2025-03-19 11:56:01.512 435449 7891 1 0 8384 2025-03-19 11:03:50.402 2025-03-19 11:03:50.402 435449 7903 8 0 8385 2025-03-19 10:45:42.693 2025-03-19 10:45:42.693 435449 9969 5 0 8386 2025-03-19 11:03:50.239 2025-03-19 11:03:50.239 435449 13398 0 0 8387 2025-03-19 11:56:01.365 2025-03-19 11:56:01.365 435449 21041 9 0 8388 2025-03-19 10:45:49.415 2025-03-19 10:45:49.415 435450 641 1 0 8389 2025-03-19 10:58:59.305 2025-03-19 10:58:59.305 435450 2151 4 0 8390 2025-03-19 10:58:59.305 2025-03-19 10:58:59.305 435450 4292 0 0 8391 2025-03-19 10:48:01.281 2025-03-19 10:48:01.281 435452 20881 21 0 8392 2025-03-19 10:52:11.386 2025-03-19 10:52:11.386 435453 777 21 0 8393 2025-03-19 10:52:11.534 2025-03-19 10:52:11.534 435453 1611 21 0 8394 2025-03-19 11:09:33.505 2025-03-19 11:09:33.505 435453 1733 8 0 8395 2025-03-19 10:52:11.701 2025-03-19 10:52:11.701 435453 1737 2 0 8396 2025-03-19 11:41:19.938 2025-03-19 11:41:19.938 435453 2016 7 0 8397 2025-03-19 13:49:30.68 2025-03-19 13:49:30.68 435453 2361 9 0 8398 2025-03-19 11:09:33.505 2025-03-19 11:09:33.505 435453 2639 75 0 8399 2025-03-19 15:10:16.715 2025-03-19 15:10:16.715 435453 4084 1 0 8400 2025-03-19 10:52:11.534 2025-03-19 10:52:11.534 435453 7766 2 0 8401 2025-03-19 15:10:16.113 2025-03-19 15:10:16.113 435453 8380 9 0 8402 2025-03-19 15:10:17.266 2025-03-19 15:10:17.266 435453 9346 1 0 8403 2025-03-20 00:20:55.341 2025-03-20 00:20:55.341 435453 12490 1 0 8404 2025-03-19 15:10:16.113 2025-03-19 15:10:16.113 435453 12768 1 0 8405 2025-03-19 15:10:17.266 2025-03-19 15:10:17.266 435453 14465 9 0 8406 2025-03-20 10:14:58.218 2025-03-20 10:14:58.218 435453 15843 1 0 8407 2025-03-20 10:14:58.218 2025-03-20 10:14:58.218 435453 15858 10 0 8408 2025-03-20 00:20:55.341 2025-03-20 00:20:55.341 435453 16126 9 0 8409 2025-03-19 10:52:11.386 2025-03-19 10:52:11.386 435453 17690 2 0 8410 2025-03-19 11:06:14.144 2025-03-19 11:06:14.144 435453 17798 1 0 8411 2025-03-19 11:41:19.938 2025-03-19 11:41:19.938 435453 18525 1 0 8412 2025-03-19 15:10:16.715 2025-03-19 15:10:16.715 435453 19417 9 0 8413 2025-03-19 13:49:30.68 2025-03-19 13:49:30.68 435453 19488 1 0 8414 2025-03-19 11:06:14.144 2025-03-19 11:06:14.144 435453 20198 9 0 8415 2025-03-19 10:48:50.145 2025-03-19 10:48:50.145 435453 20970 1 0 8416 2025-03-19 10:52:11.701 2025-03-19 10:52:11.701 435453 21374 21 0 8417 2025-03-19 10:58:14.164 2025-03-19 10:58:14.164 435454 12609 5 0 8418 2025-03-19 10:58:14.164 2025-03-19 10:58:14.164 435454 13865 1 0 8419 2025-03-19 10:48:59.07 2025-03-19 10:48:59.07 435454 20179 1 0 8420 2025-03-19 10:49:28.462 2025-03-19 10:49:28.462 435455 7667 100 0 8421 2025-03-19 10:52:42.423 2025-03-19 10:52:42.423 435455 9107 0 23 8422 2025-03-19 10:51:10.669 2025-03-19 10:51:10.669 435456 712 1 0 8423 2025-03-20 07:01:26.976 2025-03-20 07:01:26.976 435456 2342 1 0 8424 2025-03-20 07:01:26.768 2025-03-20 07:01:26.768 435456 9346 1 0 8425 2025-03-20 07:01:26.768 2025-03-20 07:01:26.768 435456 20377 9 0 8426 2025-03-19 12:42:02.531 2025-03-19 12:42:02.531 435456 20775 1 0 8427 2025-03-20 07:01:26.976 2025-03-20 07:01:26.976 435456 21418 9 0 8428 2025-03-19 12:42:02.531 2025-03-19 12:42:02.531 435456 21577 0 0 8429 2025-03-19 13:14:34.787 2025-03-19 13:14:34.787 435457 629 4 0 8430 2025-03-19 13:49:58.773 2025-03-19 13:49:58.773 435457 630 2 0 8431 2025-03-19 13:49:59.748 2025-03-19 13:49:59.748 435457 640 19 0 8432 2025-03-19 15:04:12.681 2025-03-19 15:04:12.681 435457 646 0 0 8433 2025-03-19 15:04:13.163 2025-03-19 15:04:13.163 435457 678 0 0 8434 2025-03-19 14:09:00.397 2025-03-19 14:09:00.397 435457 680 19 0 8435 2025-03-19 15:04:12.681 2025-03-19 15:04:12.681 435457 703 3 0 8436 2025-03-19 15:04:16.163 2025-03-19 15:04:16.163 435457 736 0 0 8437 2025-03-19 15:04:14.42 2025-03-19 15:04:14.42 435457 746 0 0 8438 2025-03-19 15:04:16.675 2025-03-19 15:04:16.675 435457 951 0 0 8439 2025-03-19 10:52:30.728 2025-03-19 10:52:30.728 435457 960 21 0 8440 2025-03-19 15:04:16.675 2025-03-19 15:04:16.675 435457 1044 3 0 8441 2025-03-20 03:10:10.356 2025-03-20 03:10:10.356 435457 1195 1 0 8442 2025-03-19 15:04:13.163 2025-03-19 15:04:13.163 435457 1273 3 0 8443 2025-03-19 11:57:46.082 2025-03-19 11:57:46.082 435457 1465 0 0 8444 2025-03-19 15:04:15.927 2025-03-19 15:04:15.927 435457 1495 3 0 8445 2025-03-19 15:04:15.411 2025-03-19 15:04:15.411 435457 1602 3 0 8446 2025-03-19 14:48:23.813 2025-03-19 14:48:23.813 435457 1615 0 0 8447 2025-03-19 15:04:16.163 2025-03-19 15:04:16.163 435457 1692 3 0 8448 2025-03-19 15:04:17.133 2025-03-19 15:04:17.133 435457 2196 3 0 8449 2025-03-19 18:21:23.287 2025-03-19 18:21:23.287 435457 2459 45 0 8450 2025-03-19 18:21:24.991 2025-03-19 18:21:24.991 435457 2513 45 0 8451 2025-03-19 14:09:00.397 2025-03-19 14:09:00.397 435457 2528 2 0 8452 2025-03-19 18:21:22.726 2025-03-19 18:21:22.726 435457 2735 45 0 8453 2025-03-19 13:49:59.238 2025-03-19 13:49:59.238 435457 2741 19 0 8454 2025-03-19 15:04:12.424 2025-03-19 15:04:12.424 435457 2757 3 0 8455 2025-03-19 15:04:15.185 2025-03-19 15:04:15.185 435457 2789 3 0 8456 2025-03-19 13:20:15.7 2025-03-19 13:20:15.7 435457 2942 75 0 8457 2025-03-19 15:04:14.982 2025-03-19 15:04:14.982 435457 3396 3 0 8458 2025-03-19 15:04:17.133 2025-03-19 15:04:17.133 435457 3717 0 0 8459 2025-03-19 15:04:12.911 2025-03-19 15:04:12.911 435457 4128 3 0 8460 2025-03-19 15:39:16.918 2025-03-19 15:39:16.918 435457 5175 2 0 8461 2025-03-19 15:04:16.416 2025-03-19 15:04:16.416 435457 5359 3 0 8462 2025-03-19 15:04:15.67 2025-03-19 15:04:15.67 435457 5794 0 0 8463 2025-03-19 15:04:16.937 2025-03-19 15:04:16.937 435457 5961 0 0 8464 2025-03-19 15:04:15.67 2025-03-19 15:04:15.67 435457 6260 3 0 8465 2025-03-19 15:04:16.937 2025-03-19 15:04:16.937 435457 6537 3 0 8466 2025-03-19 18:21:24.991 2025-03-19 18:21:24.991 435457 7097 5 0 8467 2025-03-19 18:21:23.455 2025-03-19 18:21:23.455 435457 7773 5 0 8468 2025-03-19 18:21:22.078 2025-03-19 18:21:22.078 435457 8289 45 0 8469 2025-03-19 14:48:23.813 2025-03-19 14:48:23.813 435457 8376 1 0 8470 2025-03-20 04:17:31.318 2025-03-20 04:17:31.318 435457 8416 1 0 8471 2025-03-19 18:21:23.455 2025-03-19 18:21:23.455 435457 8459 45 0 8472 2025-03-19 10:52:29.828 2025-03-19 10:52:29.828 435457 8469 21 0 8473 2025-03-19 15:04:13.942 2025-03-19 15:04:13.942 435457 8535 3 0 8474 2025-03-19 10:52:50.135 2025-03-19 10:52:50.135 435457 9276 0 0 8475 2025-03-19 10:52:31.374 2025-03-19 10:52:31.374 435457 9529 2 0 8476 2025-03-19 13:36:49.101 2025-03-19 13:36:49.101 435457 10549 5 0 8477 2025-03-19 17:26:45.576 2025-03-19 17:26:45.576 435457 10608 2 0 8478 2025-03-19 15:04:13.661 2025-03-19 15:04:13.661 435457 10638 3 0 8479 2025-03-19 14:48:23.364 2025-03-19 14:48:23.364 435457 10661 0 0 8480 2025-03-19 11:57:46.082 2025-03-19 11:57:46.082 435457 10693 1 0 8481 2025-03-19 10:52:29.828 2025-03-19 10:52:29.828 435457 10944 2 0 8482 2025-03-19 15:04:17.419 2025-03-19 15:04:17.419 435457 11192 0 0 8483 2025-03-19 15:04:14.19 2025-03-19 15:04:14.19 435457 11298 0 0 8484 2025-03-19 13:49:59.748 2025-03-19 13:49:59.748 435457 12139 2 0 8485 2025-03-19 13:20:14.723 2025-03-19 13:20:14.723 435457 12222 8 0 8486 2025-03-19 13:14:34.787 2025-03-19 13:14:34.787 435457 12291 36 0 8487 2025-03-19 18:21:23.287 2025-03-19 18:21:23.287 435457 12346 5 0 8488 2025-03-19 15:04:14.42 2025-03-19 15:04:14.42 435457 12368 3 0 8489 2025-03-19 10:52:30.728 2025-03-19 10:52:30.728 435457 12870 2 0 8490 2025-03-19 13:36:49.101 2025-03-19 13:36:49.101 435457 12965 45 0 8491 2025-03-19 18:21:22.726 2025-03-19 18:21:22.726 435457 13599 5 0 8492 2025-03-19 14:48:23.364 2025-03-19 14:48:23.364 435457 13854 1 0 8493 2025-03-19 18:21:22.646 2025-03-19 18:21:22.646 435457 14271 45 0 8494 2025-03-19 18:21:25.751 2025-03-19 18:21:25.751 435457 14381 5 0 8495 2025-03-19 13:20:14.723 2025-03-19 13:20:14.723 435457 14705 75 0 8496 2025-03-19 13:49:59.238 2025-03-19 13:49:59.238 435457 14731 2 0 8497 2025-03-19 15:04:14.677 2025-03-20 04:17:30.92 435457 14990 3 0 8498 2025-03-19 13:50:00.612 2025-03-19 13:50:00.612 435457 15060 19 0 8499 2025-03-20 04:17:31.318 2025-03-20 04:17:31.318 435457 15690 5 0 8500 2025-03-19 15:04:12.911 2025-03-19 15:04:12.911 435457 15978 0 0 8501 2025-03-19 15:04:13.661 2025-03-19 15:04:13.661 435457 16177 0 0 8502 2025-03-19 14:04:42.595 2025-03-19 14:04:42.595 435457 16329 19 0 8503 2025-03-19 18:21:22.646 2025-03-19 18:21:22.646 435457 16347 5 0 8504 2025-03-19 13:43:38.179 2025-03-19 13:43:38.179 435457 17050 9 0 8505 2025-03-19 14:22:29.987 2025-03-19 14:22:29.987 435457 17157 7 0 8506 2025-03-19 13:20:17.251 2025-03-19 13:20:17.251 435457 17541 8 0 8507 2025-03-19 11:57:46.337 2025-03-19 11:57:46.337 435457 17638 1 0 8508 2025-03-19 13:50:00.612 2025-03-19 13:50:00.612 435457 17682 2 0 8509 2025-03-19 10:52:31.374 2025-03-19 10:52:31.374 435457 17714 21 0 8510 2025-03-19 15:04:15.411 2025-03-19 15:04:15.411 435457 17722 0 0 8511 2025-03-19 18:21:22.078 2025-03-19 18:21:22.078 435457 18174 5 0 8512 2025-03-19 13:43:38.179 2025-03-19 13:43:38.179 435457 18409 1 0 8513 2025-03-20 03:10:10.356 2025-03-20 03:10:10.356 435457 18441 5 0 8514 2025-03-19 13:49:58.773 2025-03-19 13:49:58.773 435457 18533 19 0 8515 2025-03-19 13:20:17.251 2025-03-19 13:20:17.251 435457 19263 75 0 8516 2025-03-19 15:04:12.176 2025-03-19 15:04:12.176 435457 19469 3 0 8517 2025-03-19 15:04:14.677 2025-03-19 15:04:14.677 435457 19537 0 0 8518 2025-03-19 15:04:14.19 2025-03-19 15:04:14.19 435457 19806 3 0 8519 2025-03-19 10:51:24.628 2025-03-19 10:51:24.628 435457 20073 100 0 8520 2025-03-19 15:04:12.176 2025-03-19 15:04:12.176 435457 20306 0 0 8521 2025-03-20 04:17:30.92 2025-03-20 04:17:30.92 435457 20353 5 0 8522 2025-03-19 18:21:25.751 2025-03-19 18:21:25.751 435457 20450 45 0 8523 2025-03-19 15:04:15.927 2025-03-19 15:04:15.927 435457 20603 0 0 8524 2025-03-19 15:04:13.401 2025-03-19 15:04:13.401 435457 20663 3 0 8525 2025-03-19 15:04:16.416 2025-03-19 15:04:16.416 435457 20710 0 0 8526 2025-03-19 13:20:15.7 2025-03-19 13:20:15.7 435457 20782 8 0 8527 2025-03-19 15:39:16.918 2025-03-19 15:39:16.918 435457 20812 19 0 8528 2025-03-19 14:04:42.595 2025-03-19 14:04:42.595 435457 20825 2 0 8529 2025-03-19 17:26:45.576 2025-03-19 17:26:45.576 435457 20826 19 0 8530 2025-03-19 15:04:12.424 2025-03-19 15:04:12.424 435457 20897 0 0 8531 2025-03-19 15:04:17.419 2025-03-19 15:04:17.419 435457 20924 3 0 8532 2025-03-19 13:33:08.752 2025-03-19 13:33:08.752 435457 20981 9 0 8533 2025-03-19 15:04:13.401 2025-03-19 15:04:13.401 435457 21047 0 0 8534 2025-03-19 14:22:29.987 2025-03-19 14:22:29.987 435457 21114 1 0 8535 2025-03-19 15:04:14.982 2025-03-19 15:04:14.982 435457 21136 0 0 8536 2025-03-19 11:57:46.337 2025-03-19 11:57:46.337 435457 21334 8 0 8537 2025-03-19 15:04:15.185 2025-03-19 15:04:15.185 435457 21424 0 0 8538 2025-03-19 15:04:13.942 2025-03-19 15:04:13.942 435457 21518 0 0 8539 2025-03-19 13:33:08.752 2025-03-19 13:33:08.752 435457 21666 1 0 8540 2025-03-19 11:01:29.066 2025-03-19 11:01:29.066 435458 620 2 0 8541 2025-03-20 04:22:19.64 2025-03-20 04:22:19.64 435458 685 5 0 8542 2025-03-19 13:52:43.395 2025-03-19 13:52:43.395 435458 691 30 0 8543 2025-03-19 11:01:29.066 2025-03-19 11:01:29.066 435458 713 19 0 8544 2025-03-20 04:22:19.187 2025-03-20 04:22:19.187 435458 929 5 0 8545 2025-03-19 11:04:58.195 2025-03-19 11:04:58.195 435458 1425 8 0 8546 2025-03-19 13:52:43.778 2025-03-19 13:52:43.778 435458 1615 3 0 8547 2025-03-19 10:54:12.638 2025-03-19 10:54:12.638 435458 1626 9 0 8548 2025-03-19 12:22:30.825 2025-03-19 12:22:30.825 435458 1726 14 0 8549 2025-03-19 11:04:57.955 2025-03-19 11:04:57.955 435458 1983 1 0 8550 2025-03-19 13:47:56.548 2025-03-19 13:47:56.548 435458 2098 2 0 8551 2025-03-19 14:17:32.52 2025-03-19 14:17:32.52 435458 2111 2 0 8552 2025-03-19 10:52:00.044 2025-03-19 10:52:00.044 435458 2329 210 0 8553 2025-03-19 11:04:57.955 2025-03-19 11:04:57.955 435458 2703 0 0 8554 2025-03-19 11:59:33.955 2025-03-19 11:59:33.955 435458 2748 9 0 8555 2025-03-19 13:47:56.014 2025-03-19 13:47:56.014 435458 2774 2 0 8556 2025-03-19 13:47:56.548 2025-03-19 13:47:56.548 435458 3342 19 0 8557 2025-03-19 13:14:38.345 2025-03-19 13:14:38.345 435458 3686 36 0 8558 2025-03-19 13:47:55.65 2025-03-19 13:47:55.65 435458 4027 2 0 8559 2025-03-19 11:47:42.063 2025-03-19 11:47:42.063 435458 4313 1 0 8560 2025-03-19 13:52:44.665 2025-03-19 13:52:44.665 435458 6136 3 0 8561 2025-03-19 11:06:04.591 2025-03-20 04:22:19.187 435458 9184 10 0 8562 2025-03-19 10:54:12.638 2025-03-19 10:54:12.638 435458 9242 1 0 8563 2025-03-19 13:52:44.665 2025-03-19 13:52:44.665 435458 9418 30 0 8564 2025-03-19 12:22:30.825 2025-03-19 12:22:30.825 435458 9537 2 0 8565 2025-03-19 13:14:38.345 2025-03-19 13:14:38.345 435458 9921 4 0 8566 2025-03-19 11:47:42.063 2025-03-19 11:47:42.063 435458 10352 9 0 8567 2025-03-19 13:52:43.778 2025-03-19 13:52:43.778 435458 12245 30 0 8568 2025-03-19 13:47:57.114 2025-03-19 13:47:57.114 435458 13249 2 0 8569 2025-03-19 13:52:43.395 2025-03-19 13:52:43.395 435458 13348 3 0 8570 2025-03-20 04:22:19.64 2025-03-20 04:22:19.64 435458 13759 1 0 8571 2025-03-19 13:47:57.959 2025-03-19 13:47:57.959 435458 14385 19 0 8572 2025-03-19 14:17:33.342 2025-03-19 14:17:33.342 435458 14503 2 0 8573 2025-03-19 13:47:54.894 2025-03-19 13:47:54.894 435458 15146 19 0 8574 2025-03-19 12:31:41.264 2025-03-19 12:31:41.264 435458 15978 2 0 8575 2025-03-19 11:06:04.591 2025-03-19 13:47:54.894 435458 16679 3 0 8576 2025-03-19 11:59:33.955 2025-03-19 11:59:33.955 435458 18177 81 0 8577 2025-03-19 14:17:32.52 2025-03-19 14:17:32.52 435458 19403 19 0 8578 2025-03-19 13:47:57.114 2025-03-19 13:47:57.114 435458 19488 19 0 8579 2025-03-19 12:31:41.264 2025-03-19 12:31:41.264 435458 20646 19 0 8580 2025-03-19 13:47:55.421 2025-03-19 13:47:55.421 435458 20669 2 0 8581 2025-03-19 13:47:55.65 2025-03-19 13:47:55.65 435458 20775 19 0 8582 2025-03-19 13:47:56.014 2025-03-19 13:47:56.014 435458 20993 19 0 8583 2025-03-19 14:17:33.342 2025-03-19 14:17:33.342 435458 21061 19 0 8584 2025-03-19 13:47:55.421 2025-03-19 13:47:55.421 435458 21159 19 0 8585 2025-03-19 11:04:58.195 2025-03-19 11:04:58.195 435458 21239 1 0 8586 2025-03-19 13:47:57.959 2025-03-19 13:47:57.959 435458 21365 2 0 8587 2025-03-19 10:52:10.354 2025-03-19 10:52:10.354 435459 1801 1 0 8588 2025-03-19 13:16:30.7 2025-03-19 13:16:30.7 435460 1352 23 0 8589 2025-03-19 13:16:30.7 2025-03-19 13:16:30.7 435460 17592 3 0 8590 2025-03-20 00:17:07.477 2025-03-20 00:17:07.477 435460 20778 2 0 8591 2025-03-19 10:53:00.037 2025-03-19 10:53:00.037 435460 20826 1 0 8592 2025-03-20 00:17:07.477 2025-03-20 00:17:07.477 435460 21164 0 0 8593 2025-03-19 10:53:18.276 2025-03-19 10:53:18.276 435461 14939 1 0 8594 2025-03-19 10:55:25.154 2025-03-19 10:55:25.154 435462 5557 1 0 8595 2025-03-19 10:55:57.597 2025-03-19 10:55:57.597 435463 5728 1 0 8596 2025-03-19 14:01:59.462 2025-03-19 14:01:59.462 435463 17157 7 0 8597 2025-03-19 14:01:59.462 2025-03-19 14:01:59.462 435463 20450 64 0 8598 2025-03-19 10:58:44.668 2025-03-19 10:58:44.668 435464 13198 1 0 8599 2025-03-19 14:17:37.562 2025-03-19 14:17:37.562 435465 696 2 0 8600 2025-03-19 11:48:05.818 2025-03-19 11:48:05.818 435465 738 1 0 8601 2025-03-19 11:47:10.939 2025-03-19 11:47:10.939 435465 1051 1 0 8602 2025-03-19 14:17:37.741 2025-03-19 14:17:37.741 435465 1713 19 0 8603 2025-03-19 14:17:37.381 2025-03-19 14:17:37.381 435465 1785 19 0 8604 2025-03-19 11:01:55.337 2025-03-19 11:01:55.337 435465 2537 1 0 8605 2025-03-19 14:17:37.741 2025-03-19 14:17:37.741 435465 5003 2 0 8606 2025-03-19 14:17:37.562 2025-03-19 14:17:37.562 435465 6419 19 0 8607 2025-03-19 11:48:05.818 2025-03-19 11:48:05.818 435465 12561 9 0 8608 2025-03-19 14:17:37.027 2025-03-19 14:17:37.027 435465 12921 19 0 8609 2025-03-19 11:47:10.939 2025-03-19 11:47:10.939 435465 16229 9 0 8610 2025-03-19 14:17:37.027 2025-03-19 14:17:37.027 435465 17411 2 0 8611 2025-03-19 14:17:37.381 2025-03-19 14:17:37.381 435465 20495 2 0 8612 2025-03-20 08:59:43.16 2025-03-20 08:59:43.16 435466 956 1 0 8613 2025-03-19 11:02:39.906 2025-03-19 11:02:39.906 435466 3656 1 0 8614 2025-03-20 08:59:43.16 2025-03-20 08:59:43.16 435466 4314 9 0 8615 2025-03-20 06:58:45.825 2025-03-20 06:58:45.825 435466 12736 9 0 8616 2025-03-20 06:58:46.172 2025-03-20 06:58:46.172 435466 14939 9 0 8617 2025-03-20 06:58:45.825 2025-03-20 06:58:45.825 435466 18717 1 0 8618 2025-03-20 06:58:46.172 2025-03-20 06:58:46.172 435466 18829 1 0 8619 2025-03-20 08:12:51.285 2025-03-20 08:12:51.285 435467 679 19 0 8620 2025-03-20 08:12:51.285 2025-03-20 08:12:51.285 435467 680 2 0 8621 2025-03-19 11:04:14.803 2025-03-19 11:04:14.803 435467 1620 100 0 8622 2025-03-19 12:22:54.274 2025-03-19 12:22:54.274 435467 1836 29 0 8623 2025-03-19 11:59:32.66 2025-03-19 11:59:32.66 435467 3400 81 0 8624 2025-03-19 11:59:14.873 2025-03-19 11:59:14.873 435467 4292 0 0 8625 2025-03-19 11:59:15.175 2025-03-19 11:59:15.175 435467 5171 8 0 8626 2025-03-19 11:59:15.175 2025-03-19 11:59:15.175 435467 11158 1 0 8627 2025-03-19 11:59:32.66 2025-03-19 11:59:32.66 435467 12139 9 0 8628 2025-03-19 11:59:14.873 2025-03-19 11:59:14.873 435467 16353 1 0 8629 2025-03-19 12:22:54.274 2025-03-19 12:22:54.274 435467 21532 3 0 8630 2025-03-19 11:05:09.029 2025-03-19 11:05:09.029 435468 683 1 0 8631 2025-03-19 13:54:20.846 2025-03-19 13:54:20.846 435468 4415 30 0 8632 2025-03-19 14:17:44.589 2025-03-19 14:17:44.589 435468 5829 2 0 8633 2025-03-19 13:54:16.582 2025-03-19 13:54:16.582 435468 6136 3 0 8634 2025-03-19 13:54:16.582 2025-03-19 13:54:16.582 435468 9367 30 0 8635 2025-03-19 13:54:21.016 2025-03-19 13:54:21.016 435468 14552 30 0 8636 2025-03-19 14:17:44.589 2025-03-19 14:17:44.589 435468 18005 19 0 8637 2025-03-19 13:54:21.016 2025-03-19 13:54:21.016 435468 19459 3 0 8638 2025-03-19 13:54:20.846 2025-03-19 13:54:20.846 435468 21003 3 0 8639 2025-03-19 11:07:18.364 2025-03-19 11:07:18.364 435469 1638 10 0 8640 2025-03-19 11:07:49.76 2025-03-19 11:07:49.76 435470 8168 1 0 8641 2025-03-19 11:53:09.827 2025-03-19 11:53:09.827 435470 14774 9 0 8642 2025-03-19 11:53:09.827 2025-03-19 11:53:09.827 435470 17727 1 0 8643 2025-03-20 00:20:33.381 2025-03-20 00:20:33.381 435470 17797 1 0 8644 2025-03-20 00:20:33.381 2025-03-20 00:20:33.381 435470 21804 9 0 8645 2025-03-19 11:08:53.256 2025-03-19 11:08:53.256 435471 636 1 0 8646 2025-03-19 11:10:04.75 2025-03-19 11:10:04.75 435472 697 1 0 8647 2025-03-19 11:46:18.382 2025-03-19 11:46:18.382 435473 699 1 0 8648 2025-03-19 11:11:28.341 2025-03-19 11:11:28.341 435473 10063 1 0 8649 2025-03-19 11:46:18.382 2025-03-19 11:46:18.382 435473 18500 9 0 8650 2025-03-19 11:15:29.091 2025-03-19 11:15:29.091 435474 798 1 0 8651 2025-03-19 11:52:40.649 2025-03-19 11:52:40.649 435474 5752 1 0 8652 2025-03-19 15:58:41.186 2025-03-19 15:58:41.186 435474 9107 10 0 8653 2025-03-19 11:52:41.688 2025-03-19 11:52:41.688 435474 16329 9 0 8654 2025-03-19 11:52:41.688 2025-03-19 11:52:41.688 435474 17722 1 0 8655 2025-03-19 11:52:33.389 2025-03-19 11:52:33.389 435474 18177 2 0 8656 2025-03-19 11:52:33.389 2025-03-19 11:52:33.389 435474 18241 18 0 8657 2025-03-19 15:58:41.186 2025-03-19 15:58:41.186 435474 20713 1 0 8658 2025-03-19 11:52:40.649 2025-03-19 11:52:40.649 435474 20897 9 0 8659 2025-03-19 11:52:33.807 2025-03-19 11:52:33.807 435474 21058 1 0 8660 2025-03-19 11:52:33.807 2025-03-19 11:52:33.807 435474 21482 9 0 8661 2025-03-19 11:52:39.637 2025-03-19 11:52:39.637 435475 630 9 0 8662 2025-03-19 11:52:41.232 2025-03-19 11:52:41.232 435475 989 1 0 8663 2025-03-19 11:52:39.137 2025-03-19 11:52:39.137 435475 1571 9 0 8664 2025-03-19 15:58:47.989 2025-03-19 15:58:47.989 435475 1620 1 0 8665 2025-03-19 11:52:39.137 2025-03-19 11:52:39.137 435475 2710 1 0 8666 2025-03-19 11:52:39.637 2025-03-19 11:52:39.637 435475 3342 1 0 8667 2025-03-19 15:58:47.989 2025-03-19 15:58:47.989 435475 4378 10 0 8668 2025-03-19 11:52:39.31 2025-03-19 11:52:39.31 435475 5725 1 0 8669 2025-03-19 11:52:39.474 2025-03-19 11:52:39.474 435475 7869 9 0 8670 2025-03-19 11:52:39.474 2025-03-19 11:52:39.474 435475 11423 1 0 8671 2025-03-19 11:52:41.232 2025-03-19 11:52:41.232 435475 17991 9 0 8672 2025-03-19 11:17:05.476 2025-03-19 11:17:05.476 435475 20602 10 0 8673 2025-03-19 11:52:39.31 2025-03-19 11:52:39.31 435475 21421 9 0 8674 2025-03-19 11:17:21.999 2025-03-19 11:17:21.999 435476 11498 1 0 8675 2025-03-19 11:17:33.812 2025-03-19 11:17:33.812 435477 9276 1 0 8676 2025-03-19 11:46:12.667 2025-03-19 11:46:12.667 435477 16988 21 0 8677 2025-03-19 11:46:12.667 2025-03-19 11:46:12.667 435477 20353 2 0 8678 2025-03-19 11:18:01.898 2025-03-19 11:18:01.898 435478 8469 10 0 8679 2025-03-19 11:18:08.57 2025-03-19 11:18:08.57 435479 10102 100 0 8680 2025-03-19 11:26:34.516 2025-03-19 11:26:34.516 435480 638 9 0 8681 2025-03-19 11:26:32.902 2025-03-19 11:26:32.902 435480 642 1 0 8682 2025-03-19 11:58:52.724 2025-03-19 11:58:52.724 435480 1046 1 0 8683 2025-03-19 11:26:33.083 2025-03-19 11:26:33.083 435480 1122 9 0 8684 2025-03-19 11:30:45.873 2025-03-19 11:30:45.873 435480 1673 36 0 8685 2025-03-19 11:26:32.902 2025-03-19 11:26:32.902 435480 1761 9 0 8686 2025-03-19 11:26:34.302 2025-03-19 11:26:34.302 435480 2206 1 0 8687 2025-03-19 11:26:33.29 2025-03-19 11:26:33.29 435480 2670 1 0 8688 2025-03-19 11:26:33.083 2025-03-19 11:26:33.083 435480 2961 1 0 8689 2025-03-19 11:26:34.302 2025-03-19 11:26:34.302 435480 3304 9 0 8690 2025-03-19 11:26:35.504 2025-03-19 11:26:35.504 435480 4062 1 0 8691 2025-03-19 11:26:29.997 2025-03-19 11:26:29.997 435480 4692 1 0 8692 2025-03-19 11:26:29.997 2025-03-19 11:26:29.997 435480 4973 9 0 8693 2025-03-19 11:26:29.797 2025-03-19 11:26:29.797 435480 14280 1 0 8694 2025-03-19 11:26:30.159 2025-03-19 11:26:30.159 435480 16680 9 0 8695 2025-03-19 11:26:29.63 2025-03-19 11:26:29.63 435480 16956 1 0 8696 2025-03-19 11:26:35.504 2025-03-19 11:26:35.504 435480 17030 9 0 8697 2025-03-19 11:26:29.797 2025-03-19 11:26:29.797 435480 17237 9 0 8698 2025-03-19 11:58:52.724 2025-03-19 11:58:52.724 435480 18727 0 0 8699 2025-03-19 11:26:34.516 2025-03-19 11:26:34.516 435480 19403 1 0 8700 2025-03-19 11:26:30.334 2025-03-19 11:26:30.334 435480 20509 9 0 8701 2025-03-19 12:40:50.866 2025-03-19 12:40:50.866 435480 20990 2 0 8702 2025-03-19 11:26:29.63 2025-03-19 11:26:29.63 435480 21136 9 0 8703 2025-03-19 11:26:33.29 2025-03-19 11:26:33.29 435480 21212 9 0 8704 2025-03-19 11:30:45.873 2025-03-19 11:30:45.873 435480 21303 4 0 8705 2025-03-19 12:40:50.866 2025-03-19 12:40:50.866 435480 21374 19 0 8706 2025-03-19 11:26:18.11 2025-03-19 11:26:18.11 435480 21501 10 0 8707 2025-03-19 11:26:30.159 2025-03-19 11:26:30.159 435480 21709 1 0 8708 2025-03-19 11:26:30.334 2025-03-19 11:26:30.334 435480 21766 1 0 8709 2025-03-19 11:28:44.192 2025-03-19 11:28:44.192 435481 21391 1 0 8710 2025-03-19 11:29:27.242 2025-03-19 11:29:27.242 435482 20904 100 0 8711 2025-03-19 11:31:09.571 2025-03-19 11:31:09.571 435483 20439 1 0 8712 2025-03-19 11:36:41.697 2025-03-19 11:36:41.697 435485 697 1 0 8713 2025-03-19 11:36:44.716 2025-03-19 11:36:44.716 435486 2176 100 0 8714 2025-03-19 12:48:12.108 2025-03-19 12:48:12.108 435486 21178 5 0 8715 2025-03-19 12:48:12.108 2025-03-19 12:48:12.108 435486 21202 45 0 8716 2025-03-19 18:33:33.933 2025-03-19 18:33:33.933 435487 2338 5 0 8717 2025-03-19 18:33:33.933 2025-03-19 18:33:33.933 435487 20490 1 0 8718 2025-03-19 11:37:29.345 2025-03-19 11:37:29.345 435487 21214 1 0 8719 2025-03-19 11:39:55.606 2025-03-19 11:39:55.606 435488 644 21 0 8720 2025-03-19 22:16:03.457 2025-03-19 22:16:03.457 435488 654 19 0 8721 2025-03-19 14:25:12.438 2025-03-19 14:25:12.438 435488 661 75 0 8722 2025-03-19 15:24:54.855 2025-03-19 15:24:54.855 435488 679 14 0 8723 2025-03-19 19:29:56.299 2025-03-19 19:29:56.299 435488 686 9 0 8724 2025-03-19 11:58:38.056 2025-03-19 11:58:38.056 435488 722 0 0 8725 2025-03-19 14:25:12.675 2025-03-19 14:25:12.675 435488 782 75 0 8726 2025-03-19 14:25:10.592 2025-03-20 08:56:26.412 435488 831 79 0 8727 2025-03-19 14:25:12.598 2025-03-19 14:25:12.598 435488 909 8 0 8728 2025-03-19 14:25:10.475 2025-03-19 14:25:10.475 435488 919 8 0 8729 2025-03-20 10:06:48.107 2025-03-20 10:06:48.107 435488 1009 10 0 8730 2025-03-19 14:25:31.051 2025-03-19 14:25:31.051 435488 1122 8 0 8731 2025-03-19 15:31:56.761 2025-03-19 15:31:56.761 435488 1130 21 0 8732 2025-03-19 13:54:47.424 2025-03-19 13:54:47.424 435488 1162 810 0 8733 2025-03-19 14:25:30.05 2025-03-19 14:25:30.05 435488 1195 75 0 8734 2025-03-19 14:25:30.169 2025-03-19 14:25:30.169 435488 1320 75 0 8735 2025-03-19 14:25:30.169 2025-03-19 14:25:30.169 435488 1401 8 0 8736 2025-03-19 14:25:14.081 2025-03-19 14:25:14.081 435488 1428 75 0 8737 2025-03-19 15:31:56.925 2025-03-19 15:31:56.925 435488 1439 2 0 8738 2025-03-19 18:36:47.343 2025-03-19 18:36:47.343 435488 1465 5 0 8739 2025-03-20 11:35:43.657 2025-03-20 11:35:43.657 435488 1469 1 0 8740 2025-03-19 14:25:11.41 2025-03-19 14:25:11.41 435488 1472 8 0 8741 2025-03-19 14:25:11.88 2025-03-19 14:25:11.88 435488 1571 8 0 8742 2025-03-19 15:31:57.065 2025-03-19 15:31:57.065 435488 1577 21 0 8743 2025-03-19 14:25:30.05 2025-03-19 14:25:30.05 435488 1617 8 0 8744 2025-03-19 14:25:13.649 2025-03-19 14:25:13.649 435488 1673 8 0 8745 2025-03-19 19:35:10.545 2025-03-19 19:35:10.545 435488 1692 1 0 8746 2025-03-19 14:05:02.415 2025-03-19 14:05:02.415 435488 1737 36 0 8747 2025-03-19 15:01:56.698 2025-03-19 15:01:56.698 435488 1745 10 0 8748 2025-03-19 14:25:12.932 2025-03-19 14:25:12.932 435488 1785 75 0 8749 2025-03-19 15:41:50.997 2025-03-19 15:41:50.997 435488 2013 1 0 8750 2025-03-19 14:03:17.19 2025-03-19 14:03:17.19 435488 2056 19 0 8751 2025-03-19 11:58:40.088 2025-03-19 11:58:40.088 435488 2329 81 0 8752 2025-03-19 15:31:57.281 2025-03-19 15:31:57.281 435488 2431 2 0 8753 2025-03-19 14:25:31.238 2025-03-19 14:25:31.238 435488 2640 75 0 8754 2025-03-19 14:25:11.558 2025-03-19 14:25:11.558 435488 2703 75 0 8755 2025-03-19 14:05:02.415 2025-03-19 14:05:02.415 435488 2709 4 0 8756 2025-03-19 14:25:13.035 2025-03-19 14:25:13.035 435488 2734 75 0 8757 2025-03-19 11:58:40.088 2025-03-19 19:29:56.299 435488 3439 10 0 8758 2025-03-19 11:58:38.396 2025-03-19 11:58:38.396 435488 4035 1 0 8759 2025-03-19 20:49:28.138 2025-03-19 20:49:28.138 435488 4062 0 0 8760 2025-03-19 14:25:09.541 2025-03-19 14:25:09.541 435488 4238 75 0 8761 2025-03-19 14:25:11.796 2025-03-19 14:25:11.796 435488 4692 75 0 8762 2025-03-19 14:25:10.599 2025-03-19 14:25:10.599 435488 4958 75 0 8763 2025-03-19 14:25:29.953 2025-03-19 14:25:29.953 435488 5425 8 0 8764 2025-03-19 14:25:11.982 2025-03-19 14:25:11.982 435488 5779 8 0 8765 2025-03-19 17:26:38.226 2025-03-19 17:26:38.226 435488 5852 2 0 8766 2025-03-19 14:25:14.081 2025-03-19 14:25:14.081 435488 5942 8 0 8767 2025-03-19 14:25:10.475 2025-03-19 14:25:13.649 435488 5978 149 0 8768 2025-03-19 14:25:12.675 2025-03-19 14:25:12.675 435488 6471 8 0 8769 2025-03-19 14:25:31.349 2025-03-20 08:56:25.303 435488 6578 94 0 8770 2025-03-19 18:36:47.343 2025-03-19 18:36:47.343 435488 6602 1 0 8771 2025-03-19 14:25:13.744 2025-03-19 14:25:13.744 435488 7389 75 0 8772 2025-03-19 14:25:11.306 2025-03-19 14:25:11.306 435488 7395 75 0 8773 2025-03-19 14:25:09.968 2025-03-19 14:25:09.968 435488 7667 149 0 8774 2025-03-20 04:50:08.838 2025-03-20 04:50:08.838 435488 7966 0 0 8775 2025-03-19 18:50:37.715 2025-03-19 18:50:37.715 435488 8004 1 0 8776 2025-03-19 15:41:51.218 2025-03-19 15:41:51.218 435488 8045 1 0 8777 2025-03-19 14:25:30.279 2025-03-19 14:25:30.279 435488 8059 8 0 8778 2025-03-19 11:58:38.056 2025-03-19 11:58:38.056 435488 8416 1 0 8779 2025-03-19 14:25:13.853 2025-03-19 14:25:13.853 435488 8535 75 0 8780 2025-03-19 15:18:38.309 2025-03-19 15:18:38.309 435488 8648 21 0 8781 2025-03-19 14:25:13.853 2025-03-19 14:25:13.853 435488 9026 8 0 8782 2025-03-19 14:03:17.19 2025-03-19 14:03:17.19 435488 9099 2 0 8783 2025-03-19 14:25:10.214 2025-03-19 14:25:10.214 435488 9171 149 0 8784 2025-03-19 14:25:12.791 2025-03-19 14:25:12.791 435488 9184 75 0 8785 2025-03-19 14:25:10.214 2025-03-19 14:25:10.214 435488 9348 17 0 8786 2025-03-19 14:25:31.167 2025-03-19 14:25:31.167 435488 9366 75 0 8787 2025-03-19 14:25:09.968 2025-03-19 14:25:09.968 435488 9611 17 0 8788 2025-03-19 14:25:30.571 2025-03-19 14:25:30.571 435488 9916 75 0 8789 2025-03-19 15:18:38.309 2025-03-19 15:18:38.309 435488 9969 190 0 8790 2025-03-19 15:41:51.371 2025-03-19 15:41:51.371 435488 10102 10 0 8791 2025-03-19 17:33:21.066 2025-03-19 17:33:21.066 435488 10112 1 0 8792 2025-03-19 18:20:15.991 2025-03-19 18:20:15.991 435488 10270 5 0 8793 2025-03-19 14:49:43.692 2025-03-19 14:49:43.692 435488 10591 2 0 8794 2025-03-20 11:35:43.657 2025-03-20 11:35:43.657 435488 11443 9 0 8795 2025-03-19 14:25:31.349 2025-03-19 14:25:31.349 435488 11454 8 0 8796 2025-03-20 00:18:51.17 2025-03-20 00:18:51.17 435488 11829 1 0 8797 2025-03-19 14:25:12.438 2025-03-19 14:25:12.438 435488 12139 8 0 8798 2025-03-19 14:09:41.785 2025-03-19 14:09:41.785 435488 12272 19 0 8799 2025-03-19 15:31:57.065 2025-03-19 15:31:57.065 435488 12736 2 0 8800 2025-03-19 14:25:13.482 2025-03-19 14:25:13.482 435488 12935 8 0 8801 2025-03-19 14:25:13.138 2025-03-19 14:25:13.138 435488 13042 75 0 8802 2025-03-19 14:25:13.279 2025-03-20 04:50:08.838 435488 13100 9 0 8803 2025-03-19 21:23:12.247 2025-03-19 21:23:12.247 435488 13198 2 0 8804 2025-03-19 14:25:11.982 2025-03-19 14:25:11.982 435488 13217 75 0 8805 2025-03-19 14:25:11.88 2025-03-19 14:25:11.88 435488 13327 75 0 8806 2025-03-19 14:25:30.924 2025-03-19 14:25:30.924 435488 13622 8 0 8807 2025-03-19 14:25:13.98 2025-03-19 14:25:13.98 435488 14370 75 0 8808 2025-03-19 15:31:56.761 2025-03-19 15:31:56.761 435488 14688 2 0 8809 2025-03-19 14:25:29.735 2025-03-19 14:25:29.735 435488 14705 8 0 8810 2025-03-19 14:25:30.425 2025-03-19 14:25:30.425 435488 14905 75 0 8811 2025-03-19 14:25:29.953 2025-03-19 14:25:29.953 435488 15147 75 0 8812 2025-03-19 14:25:12.932 2025-03-19 14:25:12.932 435488 15180 8 0 8813 2025-03-19 15:31:56.925 2025-03-19 15:31:56.925 435488 15273 21 0 8814 2025-03-20 00:18:51.17 2025-03-20 00:18:51.17 435488 15282 0 0 8815 2025-03-19 20:49:28.138 2025-03-19 20:49:28.138 435488 15560 1 0 8816 2025-03-19 22:40:25.437 2025-03-19 22:40:25.437 435488 16097 19 0 8817 2025-03-19 11:58:38.396 2025-03-19 11:58:38.396 435488 16154 8 0 8818 2025-03-19 14:25:12.224 2025-03-19 14:25:12.224 435488 16212 75 0 8819 2025-03-20 00:15:03.669 2025-03-20 00:15:03.669 435488 16336 1 0 8820 2025-03-19 15:24:54.656 2025-03-19 15:24:54.656 435488 16348 9 0 8821 2025-03-19 14:25:09.815 2025-03-19 14:25:09.815 435488 16704 8 0 8822 2025-03-19 15:31:56.57 2025-03-19 15:31:56.57 435488 16948 2 0 8823 2025-03-19 17:33:21.066 2025-03-19 17:33:21.066 435488 16988 9 0 8824 2025-03-19 18:50:37.715 2025-03-19 18:50:37.715 435488 16998 9 0 8825 2025-03-19 15:41:51.218 2025-03-19 15:41:51.218 435488 17011 10 0 8826 2025-03-19 14:25:13.98 2025-03-19 14:25:13.98 435488 17237 8 0 8827 2025-03-19 14:25:09.815 2025-03-19 14:25:09.815 435488 17291 75 0 8828 2025-03-19 14:25:31.051 2025-03-19 14:25:31.051 435488 17316 75 0 8829 2025-03-19 21:23:12.247 2025-03-19 21:23:12.247 435488 17411 14 0 8830 2025-03-19 18:20:15.991 2025-03-19 18:20:15.991 435488 17494 1 0 8831 2025-03-19 14:25:11.41 2025-03-19 14:25:11.41 435488 17639 75 0 8832 2025-03-19 15:31:57.281 2025-03-19 15:31:57.281 435488 18069 21 0 8833 2025-03-19 14:25:30.425 2025-03-19 14:25:30.425 435488 18231 8 0 8834 2025-03-20 00:15:03.669 2025-03-20 00:15:03.669 435488 18601 9 0 8835 2025-03-19 14:25:10.599 2025-03-19 14:25:10.599 435488 18923 8 0 8836 2025-03-19 14:25:13.138 2025-03-19 14:25:13.138 435488 19018 8 0 8837 2025-03-19 14:49:43.692 2025-03-19 14:49:43.692 435488 19071 19 0 8838 2025-03-19 14:25:12.106 2025-03-19 14:25:12.106 435488 19189 75 0 8839 2025-03-19 14:25:11.187 2025-03-19 14:25:11.187 435488 19193 75 0 8840 2025-03-19 22:40:25.437 2025-03-19 22:40:25.437 435488 19332 2 0 8841 2025-03-19 14:25:12.106 2025-03-19 15:41:51.371 435488 19394 9 0 8842 2025-03-20 08:56:25.303 2025-03-20 08:56:25.303 435488 19673 2 0 8843 2025-03-19 14:25:30.279 2025-03-19 14:25:30.279 435488 19777 75 0 8844 2025-03-19 14:25:11.796 2025-03-19 14:25:11.796 435488 20059 8 0 8845 2025-03-19 14:25:13.744 2025-03-19 14:25:13.744 435488 20133 8 0 8846 2025-03-19 14:25:11.187 2025-03-19 14:25:11.187 435488 20245 8 0 8847 2025-03-19 14:25:31.238 2025-03-19 14:25:31.238 435488 20306 8 0 8848 2025-03-19 17:26:38.226 2025-03-19 17:26:38.226 435488 20381 19 0 8849 2025-03-19 22:16:03.457 2025-03-19 22:16:03.457 435488 20523 2 0 8850 2025-03-19 14:09:41.785 2025-03-19 14:25:13.279 435488 20554 77 0 8851 2025-03-19 14:25:30.571 2025-03-19 14:25:30.571 435488 20683 8 0 8852 2025-03-19 14:25:11.306 2025-03-19 14:25:11.306 435488 20706 8 0 8853 2025-03-19 15:01:56.698 2025-03-19 15:01:56.698 435488 20755 1 0 8854 2025-03-19 15:24:54.656 2025-03-19 15:24:54.656 435488 20757 1 0 8855 2025-03-19 15:31:56.57 2025-03-19 15:31:56.57 435488 20852 21 0 8856 2025-03-19 14:25:29.735 2025-03-19 14:25:29.735 435488 20891 75 0 8857 2025-03-20 10:06:48.107 2025-03-20 10:06:48.107 435488 20906 1 0 8858 2025-03-19 14:25:13.482 2025-03-19 14:25:13.482 435488 20973 75 0 8859 2025-03-19 14:25:30.924 2025-03-19 14:25:30.924 435488 21003 75 0 8860 2025-03-19 14:25:31.167 2025-03-19 14:25:31.167 435488 21012 8 0 8861 2025-03-19 14:25:12.224 2025-03-19 14:25:12.224 435488 21021 8 0 8862 2025-03-19 14:25:12.598 2025-03-19 14:25:12.598 435488 21037 75 0 8863 2025-03-19 13:54:47.424 2025-03-19 13:54:47.424 435488 21051 90 0 8864 2025-03-19 14:25:11.558 2025-03-19 14:25:11.558 435488 21104 8 0 8865 2025-03-19 15:24:54.855 2025-03-19 15:24:54.855 435488 21114 2 0 8866 2025-03-20 08:56:26.412 2025-03-20 08:56:26.412 435488 21254 38 0 8867 2025-03-19 14:25:12.791 2025-03-19 14:25:12.791 435488 21332 8 0 8868 2025-03-19 14:25:12.431 2025-03-19 14:25:12.431 435488 21398 8 0 8869 2025-03-19 14:25:10.592 2025-03-19 14:25:10.592 435488 21405 8 0 8870 2025-03-19 15:41:50.997 2025-03-19 15:41:50.997 435488 21416 10 0 8871 2025-03-19 14:25:13.035 2025-03-19 14:25:13.035 435488 21520 8 0 8872 2025-03-19 14:25:09.541 2025-03-19 14:25:09.541 435488 21556 8 0 8873 2025-03-19 19:35:10.545 2025-03-19 19:35:10.545 435488 21631 9 0 8874 2025-03-19 14:25:12.431 2025-03-19 14:25:12.431 435488 21829 75 0 8875 2025-03-19 13:49:29.222 2025-03-19 13:49:29.222 435489 6030 23 0 8876 2025-03-19 22:16:29.702 2025-03-19 22:16:29.702 435489 6149 19 0 8877 2025-03-19 13:51:00.974 2025-03-19 13:51:00.974 435489 11621 3 0 8878 2025-03-19 13:51:01.512 2025-03-19 13:51:01.512 435489 13198 3 0 8879 2025-03-19 13:51:00.974 2025-03-19 13:51:00.974 435489 13361 23 0 8880 2025-03-19 13:49:30.588 2025-03-19 13:49:30.588 435489 16679 25 0 8881 2025-03-19 11:41:43.838 2025-03-19 11:41:43.838 435489 19842 21 0 8882 2025-03-19 13:49:29.222 2025-03-19 13:51:01.512 435489 21091 25 0 8883 2025-03-19 22:16:29.702 2025-03-19 22:16:29.702 435489 21540 2 0 8884 2025-03-19 11:42:10.536 2025-03-19 11:42:10.536 435490 12609 1 0 8885 2025-03-19 12:59:19.748 2025-03-19 12:59:19.748 435491 1120 3 0 8886 2025-03-19 12:59:19.748 2025-03-19 12:59:19.748 435491 10862 27 0 8887 2025-03-19 11:42:34.295 2025-03-19 11:42:34.295 435491 12422 1 0 8888 2025-03-20 00:21:53.969 2025-03-20 00:21:53.969 435492 3461 9 0 8889 2025-03-19 15:21:02.112 2025-03-19 15:21:02.112 435492 9107 90 0 8890 2025-03-20 00:21:53.969 2025-03-20 00:21:53.969 435492 9982 1 0 8891 2025-03-19 15:21:02.112 2025-03-19 15:21:02.112 435492 10469 10 0 8892 2025-03-19 11:42:36.545 2025-03-19 11:42:36.545 435492 13987 1 0 8893 2025-03-19 12:46:27.2 2025-03-19 12:46:27.2 435493 2773 19 0 8894 2025-03-19 11:43:24.515 2025-03-19 11:43:24.515 435493 10283 1 0 8895 2025-03-19 12:46:27.2 2025-03-19 12:46:27.2 435493 14910 2 0 8896 2025-03-19 11:44:10.67 2025-03-19 11:44:10.67 435494 13038 10 0 8897 2025-03-19 12:00:08.898 2025-03-19 12:00:08.898 435495 634 1 0 8898 2025-03-19 12:00:12.258 2025-03-19 12:00:12.258 435495 960 8 0 8899 2025-03-19 12:00:12.258 2025-03-19 12:00:12.258 435495 1603 1 0 8900 2025-03-19 15:10:23.26 2025-03-19 15:10:23.26 435495 1745 1 0 8901 2025-03-19 12:00:20.033 2025-03-19 12:00:20.033 435495 2206 81 0 8902 2025-03-19 15:10:23.26 2025-03-19 15:10:23.26 435495 4062 10 0 8903 2025-03-19 12:23:30.817 2025-03-19 12:23:30.817 435495 9333 19 0 8904 2025-03-19 11:45:36.769 2025-03-19 11:45:36.769 435495 11165 36 0 8905 2025-03-19 11:45:36.769 2025-03-19 11:45:36.769 435495 14465 4 0 8906 2025-03-19 11:44:24.716 2025-03-19 11:44:24.716 435495 17106 10 0 8907 2025-03-19 12:23:30.817 2025-03-19 12:23:30.817 435495 17321 2 0 8908 2025-03-19 12:00:08.898 2025-03-19 12:00:08.898 435495 18423 0 0 8909 2025-03-19 12:00:20.033 2025-03-19 12:00:20.033 435495 20102 9 0 8910 2025-03-19 12:40:17.236 2025-03-19 12:40:17.236 435496 6160 2 0 8911 2025-03-19 11:46:03.429 2025-03-19 11:46:03.429 435496 7659 0 0 8912 2025-03-19 12:22:13.341 2025-03-19 12:22:13.341 435496 7869 0 0 8913 2025-03-19 12:22:13.341 2025-03-19 12:22:13.341 435496 8037 1 0 8914 2025-03-19 11:44:40.082 2025-03-19 11:44:40.082 435496 15409 100 0 8915 2025-03-19 12:40:17.236 2025-03-19 12:40:17.236 435496 15728 19 0 8916 2025-03-19 11:46:03.429 2025-03-19 11:46:03.429 435496 17042 2 0 8917 2025-03-19 12:59:53.054 2025-03-19 12:59:53.054 435497 621 2 0 8918 2025-03-19 11:45:46.551 2025-03-19 11:45:46.551 435497 623 2 0 8919 2025-03-19 11:53:05.876 2025-03-19 11:53:05.876 435497 624 1 0 8920 2025-03-19 11:45:35.922 2025-03-19 11:45:35.922 435497 640 2 0 8921 2025-03-19 12:59:47.891 2025-03-19 12:59:47.891 435497 652 2 0 8922 2025-03-19 12:59:55.398 2025-03-19 12:59:55.398 435497 656 21 0 8923 2025-03-19 11:45:53.56 2025-03-19 11:45:53.56 435497 666 21 0 8924 2025-03-19 12:59:54.707 2025-03-19 12:59:54.707 435497 667 21 0 8925 2025-03-19 12:23:17.925 2025-03-19 12:23:17.925 435497 681 19 0 8926 2025-03-19 11:45:36.353 2025-03-19 11:45:36.353 435497 684 2 0 8927 2025-03-19 11:45:53.01 2025-03-19 11:45:53.01 435497 694 21 0 8928 2025-03-19 11:45:55.69 2025-03-19 12:59:57.708 435497 715 5 0 8929 2025-03-19 12:59:52.753 2025-03-19 12:59:52.753 435497 759 21 0 8930 2025-03-19 12:59:49.828 2025-03-19 12:59:49.828 435497 760 21 0 8931 2025-03-19 11:45:55.287 2025-03-19 11:45:55.287 435497 762 2 0 8932 2025-03-19 12:58:56.574 2025-03-19 12:58:56.574 435497 777 8 0 8933 2025-03-19 11:45:49.094 2025-03-19 11:45:49.094 435497 803 2 0 8934 2025-03-19 11:45:53.721 2025-03-19 11:45:53.721 435497 814 21 0 8935 2025-03-19 12:59:52.198 2025-03-19 12:59:52.198 435497 822 2 0 8936 2025-03-19 12:59:56.888 2025-03-19 12:59:56.888 435497 836 2 0 8937 2025-03-19 12:59:48.041 2025-03-19 12:59:48.041 435497 896 2 0 8938 2025-03-19 12:59:47.414 2025-03-19 12:59:47.414 435497 959 2 0 8939 2025-03-19 11:45:54.782 2025-03-19 11:45:54.782 435497 976 21 0 8940 2025-03-19 12:59:56.693 2025-03-19 12:59:56.693 435497 979 21 0 8941 2025-03-19 12:59:49.475 2025-03-19 12:59:49.475 435497 989 2 0 8942 2025-03-19 11:45:34.025 2025-03-19 11:45:34.025 435497 1046 2 0 8943 2025-03-19 11:45:47.903 2025-03-19 11:45:47.903 435497 1051 62 0 8944 2025-03-19 12:59:54.343 2025-03-19 12:59:54.343 435497 1120 21 0 8945 2025-03-19 12:59:51.385 2025-03-19 12:59:51.385 435497 1145 21 0 8946 2025-03-19 12:59:56.03 2025-03-19 12:59:56.03 435497 1389 2 0 8947 2025-03-19 12:59:55.572 2025-03-19 12:59:55.572 435497 1425 2 0 8948 2025-03-19 11:45:35.768 2025-03-19 11:45:35.768 435497 1433 21 0 8949 2025-03-19 11:45:53.23 2025-03-19 11:45:53.23 435497 1465 2 0 8950 2025-03-19 12:59:50.648 2025-03-19 12:59:50.648 435497 1534 2 0 8951 2025-03-19 11:45:52.75 2025-03-19 11:45:52.75 435497 1564 21 0 8952 2025-03-19 11:45:55.57 2025-03-19 11:45:55.57 435497 1602 2 0 8953 2025-03-19 12:59:53.983 2025-03-19 12:59:53.983 435497 1609 2 0 8954 2025-03-19 11:53:04.986 2025-03-19 11:53:04.986 435497 1673 1 0 8955 2025-03-19 15:41:55.166 2025-03-19 15:41:55.166 435497 1723 10 0 8956 2025-03-19 11:45:47.903 2025-03-19 11:45:47.903 435497 1772 7 0 8957 2025-03-19 12:59:55.227 2025-03-19 12:59:55.227 435497 1803 2 0 8958 2025-03-19 11:45:36.353 2025-03-19 11:45:36.353 435497 1806 21 0 8959 2025-03-19 11:45:53.14 2025-03-19 11:45:53.14 435497 1833 2 0 8960 2025-03-19 11:45:09.94 2025-03-19 11:45:09.94 435497 1959 210 0 8961 2025-03-19 12:59:52.387 2025-03-19 12:59:52.387 435497 1960 2 0 8962 2025-03-19 11:57:34.244 2025-03-19 11:57:34.244 435497 2056 9 0 8963 2025-03-19 12:59:55.572 2025-03-19 12:59:55.572 435497 2111 21 0 8964 2025-03-19 11:45:35.922 2025-03-19 11:45:35.922 435497 2204 21 0 8965 2025-03-19 11:45:48.873 2025-03-19 11:45:48.873 435497 2519 2 0 8966 2025-03-19 12:59:54.869 2025-03-19 12:59:54.869 435497 2537 2 0 8967 2025-03-19 12:59:55.398 2025-03-19 12:59:55.398 435497 2543 2 0 8968 2025-03-19 12:59:51.241 2025-03-19 12:59:51.241 435497 2583 21 0 8969 2025-03-19 11:45:35.152 2025-03-19 11:45:35.152 435497 2703 21 0 8970 2025-03-19 11:45:51.392 2025-03-19 11:45:51.392 435497 2718 2 0 8971 2025-03-19 11:45:53.23 2025-03-19 11:45:53.23 435497 2775 21 0 8972 2025-03-19 11:45:52.307 2025-03-19 11:45:52.307 435497 2776 2 0 8973 2025-03-19 12:59:53.227 2025-03-19 12:59:53.227 435497 2789 21 0 8974 2025-03-19 11:45:52.307 2025-03-19 11:45:52.307 435497 3213 21 0 8975 2025-03-19 12:59:47.891 2025-03-19 12:59:47.891 435497 3377 21 0 8976 2025-03-19 12:59:55.049 2025-03-19 12:59:55.049 435497 3392 21 0 8977 2025-03-19 11:45:34.025 2025-03-19 11:45:34.025 435497 3400 21 0 8978 2025-03-19 11:53:04.322 2025-03-19 11:53:04.322 435497 3683 0 0 8979 2025-03-19 12:59:56.193 2025-03-19 12:59:56.193 435497 3990 21 0 8980 2025-03-19 12:19:15.031 2025-03-19 14:54:57.071 435497 4225 5 0 8981 2025-03-19 14:49:40.609 2025-03-19 14:49:40.609 435497 4259 19 0 8982 2025-03-19 13:14:25.917 2025-03-19 13:14:25.917 435497 4388 36 0 8983 2025-03-19 12:23:17.925 2025-03-19 12:23:17.925 435497 4415 2 0 8984 2025-03-19 15:41:55.047 2025-03-19 15:41:55.047 435497 5057 10 0 8985 2025-03-19 11:45:55.201 2025-03-19 11:45:55.201 435497 5069 21 0 8986 2025-03-19 12:59:56.888 2025-03-19 12:59:56.888 435497 5112 21 0 8987 2025-03-19 11:45:55.69 2025-03-19 11:45:55.69 435497 5171 21 0 8988 2025-03-19 12:59:51.848 2025-03-19 12:59:51.848 435497 5173 7 0 8989 2025-03-19 12:59:48.705 2025-03-19 12:59:48.705 435497 5590 9 0 8990 2025-03-19 12:59:52.387 2025-03-19 12:59:52.387 435497 5694 21 0 8991 2025-03-19 12:59:49.108 2025-03-19 12:59:49.108 435497 5728 21 0 8992 2025-03-19 12:59:51.241 2025-03-19 12:59:51.241 435497 5761 2 0 8993 2025-03-19 12:59:49.927 2025-03-19 12:59:49.927 435497 5809 2 0 8994 2025-03-19 12:59:53.78 2025-03-19 12:59:53.78 435497 5961 2 0 8995 2025-03-19 11:45:47.78 2025-03-19 11:45:47.78 435497 6360 5 0 8996 2025-03-19 12:59:52.753 2025-03-19 12:59:52.753 435497 6537 2 0 8997 2025-03-19 12:59:57.055 2025-03-19 12:59:57.055 435497 6602 21 0 8998 2025-03-19 12:59:49.927 2025-03-19 12:59:49.927 435497 7587 21 0 8999 2025-03-19 12:59:51.082 2025-03-19 12:59:51.082 435497 7659 21 0 9000 2025-03-19 13:33:03.518 2025-03-19 23:18:12.49 435497 7682 91 0 9001 2025-03-19 11:45:48.873 2025-03-19 11:45:48.873 435497 7966 21 0 9002 2025-03-19 11:45:52.032 2025-03-19 11:45:52.032 435497 8004 21 0 9003 2025-03-19 11:45:55.039 2025-03-19 12:59:56.506 435497 8926 41 0 9004 2025-03-19 12:59:51.082 2025-03-19 12:59:51.082 435497 8989 2 0 9005 2025-03-19 14:54:56.799 2025-03-19 14:54:56.799 435497 9261 3 0 9006 2025-03-19 12:59:49.624 2025-03-19 12:59:49.624 435497 9346 2 0 9007 2025-03-19 11:45:55.287 2025-03-19 11:45:55.287 435497 9352 21 0 9008 2025-03-19 12:59:54.869 2025-03-19 12:59:54.869 435497 9418 21 0 9009 2025-03-19 11:45:33.911 2025-03-19 11:45:33.911 435497 9496 2 0 9010 2025-03-19 11:45:52.612 2025-03-19 11:45:52.612 435497 9921 21 0 9011 2025-03-19 11:45:51.392 2025-03-19 11:45:51.392 435497 9969 21 0 9012 2025-03-19 12:59:48.705 2025-03-19 12:59:48.705 435497 10016 83 0 9013 2025-03-19 12:59:51.385 2025-03-19 12:59:56.693 435497 10493 5 0 9014 2025-03-19 15:41:55.047 2025-03-19 15:41:55.047 435497 10661 1 0 9015 2025-03-19 11:45:52.75 2025-03-19 11:45:52.75 435497 10934 2 0 9016 2025-03-19 11:45:48.929 2025-03-19 11:45:48.929 435497 10944 21 0 9017 2025-03-19 11:45:35.152 2025-03-19 11:45:35.152 435497 10981 2 0 9018 2025-03-19 12:59:55.049 2025-03-19 12:59:55.049 435497 11164 2 0 9019 2025-03-19 11:53:05.096 2025-03-19 11:53:05.096 435497 11263 1 0 9020 2025-03-19 12:59:49.475 2025-03-19 12:59:49.475 435497 11454 21 0 9021 2025-03-19 11:45:54.64 2025-03-19 12:59:47.414 435497 11516 23 0 9022 2025-03-19 12:59:57.708 2025-03-19 12:59:57.708 435497 11789 21 0 9023 2025-03-19 15:42:01.368 2025-03-19 15:42:01.368 435497 11829 0 1 9024 2025-03-19 11:45:46.764 2025-03-19 11:45:46.764 435497 12566 2 0 9025 2025-03-19 11:45:53.01 2025-03-19 11:45:53.01 435497 13055 2 0 9026 2025-03-19 11:45:46.551 2025-03-19 11:45:46.551 435497 13759 21 0 9027 2025-03-19 11:45:49.094 2025-03-19 11:45:49.094 435497 13843 21 0 9028 2025-03-19 11:53:05.651 2025-03-19 11:53:05.651 435497 13987 1 0 9029 2025-03-19 12:59:54.147 2025-03-19 12:59:54.147 435497 14122 21 0 9030 2025-03-19 11:45:51.921 2025-03-19 11:45:51.921 435497 14195 21 0 9031 2025-03-19 11:45:34.224 2025-03-19 14:49:40.609 435497 14278 4 0 9032 2025-03-19 11:45:51.534 2025-03-19 11:45:51.534 435497 14280 2 0 9033 2025-03-19 12:59:53.399 2025-03-19 12:59:53.399 435497 14357 2 0 9034 2025-03-19 11:45:51.767 2025-03-19 12:59:52.198 435497 14465 23 0 9035 2025-03-19 11:45:55.57 2025-03-19 12:59:50.069 435497 14472 23 0 9036 2025-03-19 13:14:25.917 2025-03-19 17:26:41.897 435497 14503 23 0 9037 2025-03-19 12:59:49.108 2025-03-19 12:59:49.108 435497 14910 2 0 9038 2025-03-19 12:38:49.197 2025-03-19 12:38:49.197 435497 14941 2 0 9039 2025-03-19 11:45:51.534 2025-03-19 11:45:51.534 435497 15060 21 0 9040 2025-03-19 11:45:35.768 2025-03-19 11:45:35.768 435497 15119 2 0 9041 2025-03-19 11:45:52.032 2025-03-19 11:45:52.032 435497 15147 2 0 9042 2025-03-19 12:38:49.197 2025-03-19 12:38:49.197 435497 15337 19 0 9043 2025-03-19 12:59:52.552 2025-03-19 12:59:52.552 435497 15409 2 0 9044 2025-03-19 11:45:34.691 2025-03-19 11:45:34.691 435497 15549 2 0 9045 2025-03-19 12:59:48.041 2025-03-19 12:59:48.041 435497 15556 21 0 9046 2025-03-19 18:36:57.272 2025-03-19 18:36:57.272 435497 16212 1 0 9047 2025-03-19 12:58:56.574 2025-03-19 12:58:56.574 435497 16347 75 0 9048 2025-03-19 12:59:49.624 2025-03-19 12:59:49.624 435497 16410 21 0 9049 2025-03-19 12:59:54.501 2025-03-19 12:59:54.501 435497 16424 21 0 9050 2025-03-19 12:59:49.828 2025-03-19 12:59:49.828 435497 16695 2 0 9051 2025-03-19 11:45:36.785 2025-03-19 11:45:36.785 435497 16830 21 0 9052 2025-03-19 11:45:47.78 2025-03-19 11:45:47.78 435497 16839 41 0 9053 2025-03-19 11:53:05.096 2025-03-19 11:53:05.096 435497 16942 0 0 9054 2025-03-19 12:59:53.227 2025-03-19 12:59:53.227 435497 16954 2 0 9055 2025-03-19 11:45:53.14 2025-03-19 11:45:53.14 435497 16988 21 0 9056 2025-03-19 11:53:05.651 2025-03-19 11:53:05.651 435497 17011 0 0 9057 2025-03-19 12:59:52.552 2025-03-19 12:59:52.552 435497 17124 21 0 9058 2025-03-19 12:59:55.227 2025-03-19 12:59:55.227 435497 17184 21 0 9059 2025-03-19 11:53:05.876 2025-03-19 11:53:05.876 435497 17316 0 0 9060 2025-03-19 11:45:48.929 2025-03-19 11:45:48.929 435497 17455 2 0 9061 2025-03-19 11:45:53.56 2025-03-19 11:45:53.56 435497 17714 2 0 9062 2025-03-19 12:59:56.03 2025-03-19 12:59:56.03 435497 17798 21 0 9063 2025-03-19 14:54:56.799 2025-03-19 14:54:56.799 435497 18309 30 0 9064 2025-03-19 12:59:50.318 2025-03-19 12:59:50.318 435497 18314 2 0 9065 2025-03-19 12:59:53.983 2025-03-19 12:59:53.983 435497 18321 21 0 9066 2025-03-19 12:59:49.318 2025-03-19 12:59:49.318 435497 18330 2 0 9067 2025-03-19 11:45:55.44 2025-03-19 11:45:55.44 435497 18426 2 0 9068 2025-03-19 11:45:54.895 2025-03-19 11:45:54.895 435497 18441 2 0 9069 2025-03-19 12:59:54.707 2025-03-19 12:59:54.707 435497 18525 2 0 9070 2025-03-19 12:59:54.501 2025-03-19 12:59:54.501 435497 18601 2 0 9071 2025-03-19 15:41:55.166 2025-03-19 15:41:55.166 435497 19394 1 0 9072 2025-03-19 14:54:57.071 2025-03-19 14:54:57.071 435497 19502 30 0 9073 2025-03-19 11:45:55.201 2025-03-19 11:45:55.201 435497 19570 2 0 9074 2025-03-19 12:59:54.147 2025-03-19 12:59:54.147 435497 19663 2 0 9075 2025-03-19 11:45:36.785 2025-03-19 11:45:36.785 435497 19689 2 0 9076 2025-03-19 11:53:04.986 2025-03-19 11:53:04.986 435497 19821 0 0 9077 2025-03-19 12:59:53.78 2025-03-19 12:59:53.78 435497 19906 21 0 9078 2025-03-19 17:26:41.897 2025-03-19 17:26:41.897 435497 19930 2 0 9079 2025-03-19 11:45:54.64 2025-03-19 12:19:15.031 435497 19992 35 0 9080 2025-03-19 23:18:12.49 2025-03-19 23:18:12.49 435497 20058 10 0 9081 2025-03-19 11:45:52.151 2025-03-19 11:45:52.151 435497 20094 21 0 9082 2025-03-19 11:57:34.244 2025-03-19 11:57:34.244 435497 20245 1 0 9083 2025-03-19 12:59:52.934 2025-03-19 12:59:52.934 435497 20337 2 0 9084 2025-03-19 11:45:34.489 2025-03-19 11:45:34.489 435497 20377 21 0 9085 2025-03-19 11:45:51.767 2025-03-19 11:45:51.767 435497 20602 21 0 9086 2025-03-19 11:45:55.039 2025-03-19 11:45:55.039 435497 20683 2 0 9087 2025-03-19 11:45:34.691 2025-03-19 11:45:34.691 435497 20701 21 0 9088 2025-03-19 12:59:50.069 2025-03-19 12:59:50.069 435497 20706 21 0 9089 2025-03-19 12:59:56.193 2025-03-19 12:59:56.193 435497 20715 2 0 9090 2025-03-19 12:59:53.399 2025-03-19 12:59:53.399 435497 20734 21 0 9091 2025-03-19 22:16:07.641 2025-03-19 22:16:07.641 435497 20817 2 0 9092 2025-03-19 18:36:57.272 2025-03-19 18:36:57.272 435497 21062 5 0 9093 2025-03-19 12:59:53.054 2025-03-19 12:59:53.054 435497 21063 21 0 9094 2025-03-19 11:45:34.224 2025-03-19 11:45:34.224 435497 21088 21 0 9095 2025-03-19 12:59:50.318 2025-03-19 12:59:50.318 435497 21116 21 0 9096 2025-03-19 12:59:50.648 2025-03-19 12:59:50.648 435497 21145 21 0 9097 2025-03-19 12:59:56.506 2025-03-19 12:59:56.506 435497 21148 2 0 9098 2025-03-19 11:45:33.911 2025-03-19 11:45:33.911 435497 21159 21 0 9099 2025-03-19 13:33:03.518 2025-03-19 13:33:03.518 435497 21164 9 0 9100 2025-03-19 11:45:46.764 2025-03-19 11:45:46.764 435497 21216 21 0 9101 2025-03-19 12:59:54.343 2025-03-19 12:59:54.343 435497 21248 2 0 9102 2025-03-19 12:59:57.055 2025-03-19 12:59:57.055 435497 21271 2 0 9103 2025-03-19 12:59:51.848 2025-03-19 12:59:51.848 435497 21303 62 0 9104 2025-03-19 11:45:54.782 2025-03-19 11:45:54.782 435497 21379 2 0 9105 2025-03-19 22:16:07.641 2025-03-19 22:16:07.641 435497 21398 19 0 9106 2025-03-19 11:45:34.489 2025-03-19 11:45:52.612 435497 21518 7 0 9107 2025-03-19 11:45:54.895 2025-03-19 11:45:54.895 435497 21547 21 0 9108 2025-03-19 12:59:52.934 2025-03-19 12:59:52.934 435497 21578 21 0 9109 2025-03-19 11:53:04.322 2025-03-19 11:53:04.322 435497 21620 1 0 9110 2025-03-19 11:45:51.921 2025-03-19 11:45:51.921 435497 21666 2 0 9111 2025-03-19 11:45:55.44 2025-03-19 11:45:55.44 435497 21683 21 0 9112 2025-03-19 11:45:53.721 2025-03-19 11:45:53.721 435497 21709 2 0 9113 2025-03-19 12:59:49.318 2025-03-19 12:59:49.318 435497 21797 21 0 9114 2025-03-19 11:45:10.507 2025-03-19 11:45:10.507 435498 21520 1 0 9115 2025-03-19 11:47:34.478 2025-03-19 11:47:34.478 435499 649 9 0 9116 2025-03-19 14:17:49.328 2025-03-19 14:17:49.328 435499 844 19 0 9117 2025-03-19 11:45:12.789 2025-03-19 11:45:12.789 435499 16145 1 0 9118 2025-03-19 14:17:49.328 2025-03-19 14:17:49.328 435499 18618 2 0 9119 2025-03-19 11:47:34.478 2025-03-19 11:47:34.478 435499 20599 1 0 9120 2025-03-19 11:52:13.089 2025-03-19 11:52:13.089 435500 980 1 0 9121 2025-03-19 11:52:13.593 2025-03-19 11:52:13.593 435500 1505 1 0 9122 2025-03-19 11:52:13.427 2025-03-19 11:52:13.427 435500 1626 9 0 9123 2025-03-19 11:52:13.19 2025-03-19 11:52:13.19 435500 5069 9 0 9124 2025-03-19 11:52:13.786 2025-03-19 11:52:13.786 435500 8269 9 0 9125 2025-03-20 04:21:14.057 2025-03-20 04:21:14.057 435500 8726 1 0 9126 2025-03-19 11:45:24.369 2025-03-19 11:45:24.369 435500 12774 1 0 9127 2025-03-19 11:52:13.593 2025-03-19 11:52:13.593 435500 15484 9 0 9128 2025-03-19 11:52:13.19 2025-03-19 11:52:13.19 435500 18393 1 0 9129 2025-03-19 11:52:13.786 2025-03-19 11:52:13.786 435500 19524 1 0 9130 2025-03-19 11:52:13.427 2025-03-19 11:52:13.427 435500 20782 1 0 9131 2025-03-19 11:52:13.089 2025-03-19 11:52:13.089 435500 21060 9 0 9132 2025-03-20 04:21:14.057 2025-03-20 04:21:14.057 435500 21238 5 0 9133 2025-03-19 12:38:19.909 2025-03-19 12:38:19.909 435501 635 90 0 9134 2025-03-19 12:40:22.602 2025-03-19 12:40:22.602 435501 750 2 0 9135 2025-03-19 11:50:01.529 2025-03-19 11:50:01.529 435501 876 2 0 9136 2025-03-19 11:50:01.529 2025-03-19 11:50:01.529 435501 1051 0 0 9137 2025-03-19 12:40:30.942 2025-03-19 12:40:30.942 435501 1319 19 0 9138 2025-03-19 12:40:22.602 2025-03-19 12:40:22.602 435501 8469 19 0 9139 2025-03-19 12:40:30.942 2025-03-19 12:40:30.942 435501 9329 2 0 9140 2025-03-19 12:38:19.909 2025-03-19 12:38:19.909 435501 9366 10 0 9141 2025-03-19 11:46:58.874 2025-03-19 11:46:58.874 435501 10433 1 0 9142 2025-03-19 13:06:40.167 2025-03-19 13:06:40.167 435502 1008 27 0 9143 2025-03-19 11:47:29.78 2025-03-19 11:47:29.78 435502 8176 1 0 9144 2025-03-19 13:06:40.167 2025-03-19 13:06:40.167 435502 21202 3 0 9145 2025-03-19 11:48:08.924 2025-03-19 11:48:08.924 435503 2327 1 0 9146 2025-03-19 12:32:25.233 2025-03-19 12:32:25.233 435504 762 23 0 9147 2025-03-19 13:09:11.423 2025-03-19 13:09:11.423 435504 902 27 0 9148 2025-03-19 12:13:46.76 2025-03-19 12:13:46.76 435504 1006 3 0 9149 2025-03-19 11:48:43.247 2025-03-19 11:48:43.247 435504 2735 1 0 9150 2025-03-19 13:09:08.039 2025-03-19 13:09:08.039 435504 9166 27 0 9151 2025-03-19 13:09:11.423 2025-03-19 13:09:11.423 435504 15282 243 0 9152 2025-03-19 13:09:08.039 2025-03-19 13:09:08.039 435504 16695 3 0 9153 2025-03-19 12:13:46.76 2025-03-19 12:13:46.76 435504 19138 30 0 9154 2025-03-19 12:32:25.233 2025-03-19 12:32:25.233 435504 20023 3 0 9155 2025-03-19 11:53:10.525 2025-03-19 11:53:10.525 435505 627 1 0 9156 2025-03-19 14:55:41.837 2025-03-19 14:55:41.837 435505 658 2 0 9157 2025-03-19 11:53:10.344 2025-03-19 11:53:10.344 435505 794 0 0 9158 2025-03-19 11:53:10.17 2025-03-19 11:53:10.17 435505 882 2 0 9159 2025-03-19 14:55:41.837 2025-03-19 14:55:41.837 435505 954 19 0 9160 2025-03-19 11:53:10.525 2025-03-19 11:53:10.525 435505 1047 0 0 9161 2025-03-19 11:53:10.344 2025-03-19 11:53:10.344 435505 1425 1 0 9162 2025-03-19 11:53:10.205 2025-03-19 11:53:10.205 435505 1480 1 0 9163 2025-03-19 14:55:37.628 2025-03-19 14:55:37.628 435505 1515 2 0 9164 2025-03-19 11:50:38.022 2025-03-19 11:50:38.022 435505 2156 1 0 9165 2025-03-19 11:53:10.205 2025-03-19 11:53:10.205 435505 5069 0 0 9166 2025-03-19 14:55:31.684 2025-03-19 14:55:31.684 435505 8498 3 0 9167 2025-03-19 11:50:37.995 2025-03-19 11:50:37.995 435505 9655 0 0 9168 2025-03-19 14:55:34.444 2025-03-19 14:55:34.444 435505 10280 3 0 9169 2025-03-19 14:55:37.628 2025-03-19 14:55:37.628 435505 10352 0 0 9170 2025-03-19 11:50:37.995 2025-03-19 11:50:37.995 435505 11443 1 0 9171 2025-03-19 11:50:38.407 2025-03-19 11:50:38.407 435505 12721 0 0 9172 2025-03-19 11:53:10.17 2025-03-19 11:53:10.17 435505 13753 0 0 9173 2025-03-19 14:55:31.684 2025-03-19 14:55:31.684 435505 16387 30 0 9174 2025-03-19 11:50:38.407 2025-03-19 11:50:38.407 435505 17116 2 0 9175 2025-03-19 14:55:34.444 2025-03-19 14:55:34.444 435505 17162 30 0 9176 2025-03-19 11:50:38.022 2025-03-19 11:50:38.022 435505 20023 0 0 9177 2025-03-19 11:49:09.522 2025-03-19 11:49:09.522 435505 20655 1 0 9178 2025-03-19 11:51:00.631 2025-03-19 11:51:00.631 435505 20864 0 0 9179 2025-03-19 16:17:51.317 2025-03-19 16:17:51.317 435505 20901 1 0 9180 2025-03-19 16:17:51.317 2025-03-19 16:17:51.317 435505 21451 9 0 9181 2025-03-19 11:51:00.631 2025-03-19 11:51:00.631 435505 21803 1 0 9182 2025-03-19 11:52:11.377 2025-03-19 11:52:11.377 435506 2596 1 0 9183 2025-03-19 11:55:46.517 2025-03-19 11:55:46.517 435507 8926 9 0 9184 2025-03-19 11:55:46.517 2025-03-19 11:55:46.517 435507 20450 1 0 9185 2025-03-19 11:52:33.124 2025-03-19 11:52:33.124 435507 21498 100 0 9186 2025-03-19 11:53:06.994 2025-03-19 11:53:06.994 435507 21672 0 0 9187 2025-03-19 11:52:54.636 2025-03-19 11:52:54.636 435508 9167 1 0 9188 2025-03-19 12:36:28.674 2025-03-19 12:36:28.674 435508 18270 1 0 9189 2025-03-19 12:36:31.156 2025-03-19 12:36:31.156 435508 18306 9 0 9190 2025-03-19 12:36:31.156 2025-03-19 12:36:31.156 435508 21541 1 0 9191 2025-03-19 12:36:28.674 2025-03-19 12:36:28.674 435508 21791 9 0 9192 2025-03-19 11:57:34.588 2025-03-19 11:57:34.588 435509 658 1 0 9193 2025-03-20 02:51:28.84 2025-03-20 02:51:28.84 435509 659 1 0 9194 2025-03-19 11:57:34.753 2025-03-19 11:57:34.753 435509 1307 9 0 9195 2025-03-19 11:57:34.415 2025-03-19 11:57:34.415 435509 2347 9 0 9196 2025-03-19 11:57:34.753 2025-03-19 11:57:34.753 435509 3417 1 0 9197 2025-03-19 18:41:31.941 2025-03-19 18:41:31.941 435509 5520 5 0 9198 2025-03-19 11:52:58.528 2025-03-19 11:52:58.528 435509 10112 1 0 9199 2025-03-19 11:57:34.31 2025-03-19 11:57:34.31 435509 12738 9 0 9200 2025-03-19 11:57:34.415 2025-03-19 11:57:34.415 435509 13622 1 0 9201 2025-03-19 11:57:35.133 2025-03-19 11:57:35.133 435509 14370 9 0 9202 2025-03-19 11:57:34.588 2025-03-19 11:57:34.588 435509 17944 9 0 9203 2025-03-19 18:41:31.941 2025-03-19 18:41:31.941 435509 20479 1 0 9204 2025-03-20 02:51:28.84 2025-03-20 02:51:28.84 435509 21044 9 0 9205 2025-03-19 11:57:34.31 2025-03-19 11:57:34.31 435509 21159 1 0 9206 2025-03-19 11:57:35.133 2025-03-19 11:57:35.133 435509 21810 1 0 9207 2025-03-19 12:01:53.837 2025-03-19 12:01:53.837 435510 1401 8 0 9208 2025-03-19 12:01:53.837 2025-03-19 12:01:53.837 435510 1825 1 0 9209 2025-03-19 11:56:52.793 2025-03-19 11:56:52.793 435510 2952 10 0 9210 2025-03-19 12:01:52.278 2025-03-19 12:01:52.278 435510 12749 1 0 9211 2025-03-19 12:01:52.278 2025-03-19 12:01:52.278 435510 21060 0 0 9212 2025-03-20 00:21:40.953 2025-03-20 00:21:40.953 435511 675 1 0 9213 2025-03-19 12:00:38.167 2025-03-19 12:00:38.167 435511 895 3 0 9214 2025-03-19 12:00:38.167 2025-03-19 12:00:38.167 435511 1468 27 0 9215 2025-03-19 11:57:50.7 2025-03-19 11:57:50.7 435511 4166 1 0 9216 2025-03-20 00:21:40.953 2025-03-20 00:21:40.953 435511 21444 9 0 9217 2025-03-19 11:57:53.021 2025-03-19 11:57:53.021 435512 769 1 0 9218 2025-03-19 11:58:41.669 2025-03-19 11:58:41.669 435512 1741 105 0 9219 2025-03-19 11:58:41.669 2025-03-19 11:58:41.669 435512 14905 12 0 9220 2025-03-19 12:39:02.045 2025-03-19 12:39:02.045 435513 1030 19 0 9221 2025-03-19 12:37:52.805 2025-03-19 12:37:52.805 435513 2327 19 0 9222 2025-03-19 12:37:12.067 2025-03-19 12:37:12.067 435513 4287 10 0 9223 2025-03-19 11:58:38.897 2025-03-19 11:58:38.897 435513 11144 100 0 9224 2025-03-19 12:39:02.045 2025-03-19 12:39:02.045 435513 15119 2 0 9225 2025-03-19 12:37:12.067 2025-03-19 12:37:12.067 435513 18673 90 0 9226 2025-03-19 12:37:52.805 2025-03-19 12:37:52.805 435513 20551 2 0 9227 2025-03-19 12:03:17.254 2025-03-19 12:03:17.254 435514 7425 2 0 9228 2025-03-19 12:03:17.254 2025-03-19 12:03:17.254 435514 12222 0 0 9229 2025-03-19 12:00:34.962 2025-03-19 12:00:34.962 435514 14705 1 0 9230 2025-03-20 00:20:21.132 2025-03-20 00:20:21.132 435514 15326 1 0 9231 2025-03-20 00:20:21.132 2025-03-20 00:20:21.132 435514 19668 9 0 9232 2025-03-19 12:13:01.533 2025-03-19 12:13:01.533 435515 5069 90 0 9233 2025-03-19 12:01:18.527 2025-03-19 12:01:18.527 435515 5708 1 0 9234 2025-03-19 12:13:01.533 2025-03-19 12:13:01.533 435515 20837 10 0 9235 2025-03-19 12:01:34.928 2025-03-19 12:01:34.928 435516 696 100 0 9236 2025-03-19 12:26:37.948 2025-03-19 12:26:37.948 435516 882 8 0 9237 2025-03-19 12:26:37.757 2025-03-19 12:26:37.757 435516 1094 0 0 9238 2025-03-19 12:57:17.485 2025-03-19 12:57:17.485 435516 1626 1 0 9239 2025-03-19 16:18:04.637 2025-03-19 16:18:04.637 435516 1650 9 0 9240 2025-03-19 16:18:04.935 2025-03-19 16:18:04.935 435516 1733 9 0 9241 2025-03-19 16:18:04.935 2025-03-19 16:18:04.935 435516 1806 1 0 9242 2025-03-19 16:18:04.637 2025-03-19 16:18:04.637 435516 2460 1 0 9243 2025-03-19 16:18:04.418 2025-03-19 16:18:04.418 435516 10490 1 0 9244 2025-03-19 16:18:04.418 2025-03-19 16:18:04.418 435516 10719 9 0 9245 2025-03-19 12:57:17.485 2025-03-19 12:57:17.485 435516 14404 9 0 9246 2025-03-19 12:57:18.004 2025-03-19 12:57:18.004 435516 14657 1 0 9247 2025-03-19 12:57:17.891 2025-03-19 12:57:17.891 435516 15337 9 0 9248 2025-03-19 12:26:37.948 2025-03-19 12:26:37.948 435516 17696 1 0 9249 2025-03-19 12:57:21.778 2025-03-19 12:57:21.778 435516 18114 9 0 9250 2025-03-19 12:57:18.004 2025-03-19 12:57:18.004 435516 20337 9 0 9251 2025-03-19 12:26:37.757 2025-03-19 12:26:37.757 435516 21048 1 0 9252 2025-03-19 12:57:17.891 2025-03-19 12:57:17.891 435516 21091 1 0 9253 2025-03-19 12:57:21.778 2025-03-19 12:57:21.778 435516 21249 1 0 9254 2025-03-19 22:21:07.779 2025-03-19 22:21:07.779 435517 4259 0 0 9255 2025-03-19 22:21:07.779 2025-03-19 22:21:07.779 435517 6382 1 0 9256 2025-03-19 12:01:38.158 2025-03-19 12:01:38.158 435517 14941 1 0 9257 2025-03-19 12:12:00.9 2025-03-19 12:12:00.9 435518 16250 1 0 9258 2025-03-19 12:04:55.018 2025-03-19 12:04:55.018 435518 16542 100 0 9259 2025-03-19 12:12:00.9 2025-03-19 12:12:00.9 435518 20754 9 0 9260 2025-03-19 12:07:31.497 2025-03-19 12:07:31.497 435519 12819 10 0 9261 2025-03-19 12:57:12.572 2025-03-19 12:57:12.572 435520 795 1 0 9262 2025-03-19 12:09:50.327 2025-03-19 12:09:50.327 435520 897 0 0 9263 2025-03-19 12:14:28.264 2025-03-19 12:14:28.264 435520 1012 2 0 9264 2025-03-19 12:57:13.387 2025-03-19 12:57:13.387 435520 1244 9 0 9265 2025-03-19 12:11:21.627 2025-03-19 12:11:21.627 435520 2514 0 0 9266 2025-03-19 12:12:38.71 2025-03-19 12:12:38.71 435520 5752 0 0 9267 2025-03-19 12:09:38.215 2025-03-19 12:09:38.215 435520 9337 0 0 9268 2025-03-19 12:57:12.572 2025-03-19 12:57:12.572 435520 10484 0 0 9269 2025-03-19 12:08:47.023 2025-03-19 12:08:47.023 435520 16177 1 0 9270 2025-03-19 12:15:35.736 2025-03-19 12:15:35.736 435520 17064 0 0 9271 2025-03-19 12:57:13.387 2025-03-19 12:57:13.387 435520 18069 81 0 9272 2025-03-19 12:57:12.621 2025-03-19 12:57:12.621 435520 19199 1 0 9273 2025-03-19 12:14:28.264 2025-03-19 12:14:28.264 435520 19735 0 0 9274 2025-03-19 12:57:12.621 2025-03-19 12:57:12.621 435520 20816 8 0 9275 2025-03-20 00:20:13.937 2025-03-20 00:20:13.937 435520 20825 9 0 9276 2025-03-19 12:10:59.274 2025-03-19 12:10:59.274 435520 21334 0 0 9277 2025-03-20 00:20:13.937 2025-03-20 00:20:13.937 435520 21405 1 0 9278 2025-03-19 12:09:28.195 2025-03-19 12:09:28.195 435521 1389 100 0 9279 2025-03-19 13:05:44.376 2025-03-19 13:05:44.376 435521 1394 90 0 9280 2025-03-19 12:11:59.699 2025-03-19 12:11:59.699 435521 3353 1 0 9281 2025-03-19 12:11:59.699 2025-03-19 12:11:59.699 435521 17526 9 0 9282 2025-03-19 13:05:44.376 2025-03-19 13:05:44.376 435521 18717 10 0 9283 2025-03-19 12:39:53.892 2025-03-19 12:39:53.892 435522 678 45 0 9284 2025-03-19 12:39:53.892 2025-03-19 12:39:53.892 435522 2640 5 0 9285 2025-03-19 12:11:56.539 2025-03-19 12:11:56.539 435522 12261 0 0 9286 2025-03-19 12:10:45.169 2025-03-19 12:10:45.169 435522 16410 10 0 9287 2025-03-19 12:12:49.414 2025-03-19 12:12:49.414 435523 6602 1 0 9288 2025-03-20 00:21:35.464 2025-03-20 00:21:35.464 435523 7760 1 0 9289 2025-03-20 00:21:35.464 2025-03-20 00:21:35.464 435523 20133 9 0 9290 2025-03-19 14:50:13.484 2025-03-19 14:50:13.484 435524 646 1 0 9291 2025-03-19 14:50:14.36 2025-03-19 14:50:14.36 435524 2293 10 0 9292 2025-03-19 14:50:08.671 2025-03-19 14:50:08.671 435524 6202 1 0 9293 2025-03-19 14:50:08.671 2025-03-19 14:50:08.671 435524 7583 10 0 9294 2025-03-19 14:50:14.36 2025-03-19 14:50:14.36 435524 9353 1 0 9295 2025-03-19 14:50:13.484 2025-03-19 14:50:13.484 435524 12656 10 0 9296 2025-03-19 12:13:35.914 2025-03-19 12:13:35.914 435524 20612 1 0 9297 2025-03-19 12:17:47.826 2025-03-19 12:17:47.826 435525 696 0 0 9298 2025-03-19 12:17:46.992 2025-03-19 12:17:46.992 435525 963 1 0 9299 2025-03-19 12:17:48.655 2025-03-19 12:17:48.655 435525 2022 2 0 9300 2025-03-19 12:17:48.655 2025-03-19 12:17:48.655 435525 2537 0 0 9301 2025-03-19 12:17:47.421 2025-03-19 12:17:47.421 435525 2748 0 0 9302 2025-03-19 12:17:47.826 2025-03-19 12:17:47.826 435525 5852 1 0 9303 2025-03-19 12:17:47.202 2025-03-19 12:17:47.202 435525 7766 1 0 9304 2025-03-19 12:14:04.904 2025-03-19 12:14:04.904 435525 21060 1 0 9305 2025-03-19 12:17:47.202 2025-03-19 12:17:47.202 435525 21202 0 0 9306 2025-03-19 12:17:46.992 2025-03-19 12:17:46.992 435525 21422 0 0 9307 2025-03-19 12:17:47.421 2025-03-19 12:17:47.421 435525 21571 1 0 9308 2025-03-19 12:14:30.805 2025-03-19 12:14:30.805 435526 7580 1 0 9309 2025-03-19 13:09:14.106 2025-03-19 13:09:14.106 435526 10270 3 0 9310 2025-03-19 13:09:14.106 2025-03-19 13:09:14.106 435526 21555 27 0 9311 2025-03-19 17:44:03.895 2025-03-19 17:44:03.895 435527 5195 27 0 9312 2025-03-19 12:15:31.524 2025-03-19 12:15:31.524 435527 10016 1 0 9313 2025-03-19 17:44:03.895 2025-03-19 17:44:03.895 435527 14169 3 0 9314 2025-03-19 12:16:56.018 2025-03-19 12:16:56.018 435528 721 10 0 9315 2025-03-19 12:26:45.971 2025-03-19 12:26:45.971 435528 726 8 0 9316 2025-03-19 12:27:09.902 2025-03-19 12:27:09.902 435528 1801 4 0 9317 2025-03-19 12:26:45.971 2025-03-19 12:26:45.971 435528 10611 1 0 9318 2025-03-19 12:26:45.776 2025-03-19 12:26:45.776 435528 17682 1 0 9319 2025-03-19 12:27:09.902 2025-03-19 12:27:09.902 435528 17976 36 0 9320 2025-03-19 12:26:45.776 2025-03-19 12:26:45.776 435528 20911 0 0 9321 2025-03-19 12:17:44.465 2025-03-19 12:17:44.465 435529 19777 1 0 9322 2025-03-19 12:17:46.46 2025-03-19 12:17:46.46 435530 10013 10 0 9323 2025-03-19 12:35:58.035 2025-03-19 12:35:58.035 435530 18630 2 0 9324 2025-03-19 12:35:58.035 2025-03-19 12:35:58.035 435530 20059 19 0 9325 2025-03-19 16:53:59.341 2025-03-19 16:53:59.341 435531 627 24 0 9326 2025-03-19 18:34:33.53 2025-03-19 18:34:33.53 435531 1173 1 0 9327 2025-03-19 18:34:33.53 2025-03-19 18:34:33.53 435531 1713 5 0 9328 2025-03-19 12:17:58.554 2025-03-19 12:17:58.554 435531 2206 1 0 9329 2025-03-19 16:54:00.24 2025-03-19 16:54:00.24 435531 5775 3 0 9330 2025-03-19 16:53:59.514 2025-03-19 16:53:59.514 435531 8926 24 0 9331 2025-03-19 16:53:59.741 2025-03-19 16:53:59.741 435531 11454 3 0 9332 2025-03-19 17:12:19.672 2025-03-19 17:12:19.672 435531 14037 9 0 9333 2025-03-19 17:12:19.672 2025-03-19 17:12:19.672 435531 15536 1 0 9334 2025-03-19 16:53:59.514 2025-03-19 16:53:59.514 435531 17095 3 0 9335 2025-03-19 16:54:00.24 2025-03-19 16:54:00.24 435531 19576 24 0 9336 2025-03-19 16:53:59.741 2025-03-19 16:53:59.741 435531 20987 24 0 9337 2025-03-19 16:53:59.341 2025-03-19 16:53:59.341 435531 21020 3 0 9338 2025-03-19 12:19:17.271 2025-03-19 12:19:17.271 435532 913 1 0 9339 2025-03-19 13:52:39.603 2025-03-19 13:52:39.603 435532 2492 30 0 9340 2025-03-19 13:52:40.198 2025-03-19 13:52:40.198 435532 5775 3 0 9341 2025-03-19 13:52:40.198 2025-03-19 13:52:40.198 435532 7903 30 0 9342 2025-03-19 13:52:39.252 2025-03-19 13:52:39.252 435532 14225 30 0 9343 2025-03-19 13:52:39.603 2025-03-19 13:52:39.603 435532 14818 3 0 9344 2025-03-19 13:52:39.252 2025-03-19 13:52:39.252 435532 15115 3 0 9345 2025-03-19 12:19:28.491 2025-03-19 12:19:28.491 435533 20198 1 0 9346 2025-03-19 12:22:58.376 2025-03-19 12:22:58.376 435534 2347 21 0 9347 2025-03-19 12:19:38.161 2025-03-19 12:19:38.161 435534 18956 1 0 9348 2025-03-19 12:22:58.376 2025-03-19 12:22:58.376 435534 19735 2 0 9349 2025-03-19 12:20:01.076 2025-03-19 12:20:01.076 435535 21575 1 0 9350 2025-03-19 14:48:23.389 2025-03-19 14:48:23.389 435536 4754 2 0 9351 2025-03-19 14:48:23.389 2025-03-19 14:48:23.389 435536 7668 19 0 9352 2025-03-19 12:20:28.538 2025-03-19 12:20:28.538 435536 18068 1 0 9353 2025-03-19 12:20:58.56 2025-03-19 12:20:58.56 435537 8416 1 0 9354 2025-03-19 12:21:00.801 2025-03-19 12:21:00.801 435538 4225 1 0 9355 2025-03-19 12:23:53.19 2025-03-19 12:23:53.19 435539 14791 1 0 9356 2025-03-19 22:18:12.272 2025-03-19 22:18:12.272 435540 1549 19 0 9357 2025-03-19 12:24:48.809 2025-03-19 12:24:48.809 435540 9336 1 0 9358 2025-03-19 22:18:12.272 2025-03-19 22:18:12.272 435540 21238 2 0 9359 2025-03-19 13:20:45.398 2025-03-19 13:20:45.398 435541 917 27 0 9360 2025-03-19 13:20:45.398 2025-03-19 13:20:45.398 435541 10112 3 0 9361 2025-03-19 12:25:29.59 2025-03-19 12:25:29.59 435541 14080 1 0 9362 2025-03-19 13:20:24.408 2025-03-19 13:20:24.408 435542 694 27 0 9363 2025-03-19 15:03:04.567 2025-03-19 15:03:04.567 435542 2681 3 0 9364 2025-03-19 13:20:25.325 2025-03-19 13:20:25.325 435542 2780 27 0 9365 2025-03-19 15:03:04.567 2025-03-19 15:03:04.567 435542 11523 31 0 9366 2025-03-19 13:20:24.408 2025-03-19 13:20:24.408 435542 13348 3 0 9367 2025-03-19 12:27:10.316 2025-03-19 12:27:10.316 435542 17046 10 0 9368 2025-03-19 13:20:25.325 2025-03-19 13:20:25.325 435542 20137 243 0 9369 2025-03-19 12:31:23.109 2025-03-19 12:31:23.109 435543 2431 1 0 9370 2025-03-19 13:52:16.932 2025-03-19 13:52:16.932 435544 721 19 0 9371 2025-03-19 13:52:11.241 2025-03-19 13:52:11.241 435544 889 19 0 9372 2025-03-19 13:52:10.991 2025-03-19 13:52:10.991 435544 980 2 0 9373 2025-03-19 13:52:10.757 2025-03-19 13:52:10.757 435544 1010 19 0 9374 2025-03-19 13:52:10.486 2025-03-19 13:52:10.486 435544 1141 19 0 9375 2025-03-19 13:52:10.486 2025-03-19 13:52:10.486 435544 1319 2 0 9376 2025-03-19 12:58:08.556 2025-03-19 12:58:08.556 435544 1519 1 0 9377 2025-03-19 13:52:16.735 2025-03-19 13:52:16.735 435544 2593 2 0 9378 2025-03-19 12:35:41.888 2025-03-19 12:35:41.888 435544 2776 19 0 9379 2025-03-19 13:52:11.645 2025-03-19 13:52:11.645 435544 3729 2 0 9380 2025-03-19 12:58:08.349 2025-03-19 12:58:08.349 435544 4048 1 0 9381 2025-03-19 12:58:08.556 2025-03-19 18:16:13.079 435544 6268 9 0 9382 2025-03-19 13:52:10.271 2025-03-19 13:52:10.271 435544 6537 19 0 9383 2025-03-19 12:58:08.349 2025-03-19 12:58:08.349 435544 6653 0 0 9384 2025-03-19 18:16:13.079 2025-03-19 18:16:13.079 435544 6765 0 0 9385 2025-03-19 12:34:44.686 2025-03-19 12:34:44.686 435544 7675 90 0 9386 2025-03-19 13:52:11.98 2025-03-19 13:52:11.98 435544 7746 2 0 9387 2025-03-19 13:52:11.241 2025-03-19 13:52:11.241 435544 7827 2 0 9388 2025-03-19 13:52:10.271 2025-03-19 13:52:10.271 435544 7913 2 0 9389 2025-03-19 13:52:15.937 2025-03-19 13:52:15.937 435544 8498 19 0 9390 2025-03-19 13:52:16.538 2025-03-19 13:52:16.538 435544 9339 19 0 9391 2025-03-19 13:52:11.98 2025-03-19 13:52:11.98 435544 9364 19 0 9392 2025-03-19 13:52:16.13 2025-03-19 13:52:16.13 435544 10283 2 0 9393 2025-03-19 13:52:11.645 2025-03-19 13:52:11.645 435544 10611 19 0 9394 2025-03-19 13:52:09.827 2025-03-19 13:52:09.827 435544 10849 2 0 9395 2025-03-19 13:52:10.991 2025-03-19 13:52:10.991 435544 13038 19 0 9396 2025-03-19 13:52:11.404 2025-03-19 13:52:11.404 435544 13843 19 0 9397 2025-03-19 13:52:17.146 2025-03-19 13:52:17.146 435544 13921 2 0 9398 2025-03-19 13:52:17.821 2025-03-19 13:52:17.821 435544 14552 38 0 9399 2025-03-19 13:52:16.932 2025-03-19 13:52:16.932 435544 15337 2 0 9400 2025-03-19 13:52:17.821 2025-03-19 13:52:17.821 435544 15409 4 0 9401 2025-03-19 12:33:25.293 2025-03-19 12:33:25.293 435544 15728 100 0 9402 2025-03-19 13:52:16.735 2025-03-19 13:52:16.735 435544 15925 19 0 9403 2025-03-19 12:35:41.888 2025-03-19 12:35:41.888 435544 16284 2 0 9404 2025-03-19 13:52:17.146 2025-03-19 13:52:17.146 435544 17552 19 0 9405 2025-03-19 12:34:44.686 2025-03-19 12:34:44.686 435544 18005 10 0 9406 2025-03-19 13:52:16.344 2025-03-19 13:52:16.344 435544 18068 19 0 9407 2025-03-19 13:52:16.13 2025-03-19 13:52:16.13 435544 18412 19 0 9408 2025-03-19 13:52:15.937 2025-03-19 13:52:15.937 435544 18494 2 0 9409 2025-03-19 13:52:10.757 2025-03-19 13:52:10.757 435544 18500 2 0 9410 2025-03-19 13:52:10.053 2025-03-19 13:52:10.053 435544 19570 2 0 9411 2025-03-19 13:52:17.372 2025-03-19 13:52:17.372 435544 20094 2 0 9412 2025-03-19 13:52:16.344 2025-03-19 13:52:16.344 435544 20294 2 0 9413 2025-03-19 13:52:16.538 2025-03-19 13:52:16.538 435544 20642 2 0 9414 2025-03-19 13:52:11.404 2025-03-19 13:52:11.404 435544 20713 2 0 9415 2025-03-19 13:52:10.053 2025-03-19 13:52:10.053 435544 20799 19 0 9416 2025-03-19 13:52:17.372 2025-03-19 13:52:17.372 435544 20861 19 0 9417 2025-03-19 13:52:09.827 2025-03-19 13:52:09.827 435544 21279 19 0 9418 2025-03-19 13:09:31.03 2025-03-19 13:09:31.03 435545 21233 27 0 9419 2025-03-19 13:09:31.03 2025-03-19 13:09:31.03 435545 21374 3 0 9420 2025-03-19 12:33:41.541 2025-03-19 12:33:41.541 435546 1244 1 0 9421 2025-03-20 00:21:37.919 2025-03-20 00:21:37.919 435546 13097 1 0 9422 2025-03-19 12:36:21.329 2025-03-19 12:36:21.329 435546 17638 27 0 9423 2025-03-19 12:36:21.329 2025-03-19 12:36:21.329 435546 21412 3 0 9424 2025-03-19 13:09:35.816 2025-03-19 13:09:35.816 435547 623 27 0 9425 2025-03-19 12:43:44.539 2025-03-19 12:43:44.539 435547 2963 3 0 9426 2025-03-19 12:35:39.964 2025-03-19 12:35:39.964 435547 4378 1 0 9427 2025-03-19 12:43:44.539 2025-03-19 12:43:44.539 435547 9916 23 0 9428 2025-03-19 13:09:35.816 2025-03-19 13:09:35.816 435547 11423 3 0 9429 2025-03-19 13:21:47.338 2025-03-19 13:21:47.338 435548 631 27 0 9430 2025-03-19 13:21:47.338 2025-03-19 13:21:47.338 435548 859 3 0 9431 2025-03-19 12:36:29.84 2025-03-19 12:36:29.84 435548 21405 1 0 9432 2025-03-19 12:41:26.542 2025-03-19 12:41:26.542 435549 1173 0 0 9433 2025-03-19 22:19:48.566 2025-03-19 22:19:48.566 435549 4079 0 0 9434 2025-03-19 12:40:37.056 2025-03-19 12:40:37.056 435549 16270 1 0 9435 2025-03-19 22:19:48.566 2025-03-19 22:19:48.566 435549 16667 1 0 9436 2025-03-19 12:40:57.593 2025-03-19 12:40:57.593 435549 18426 0 0 9437 2025-03-20 00:20:17.311 2025-03-20 00:20:17.311 435550 692 1 0 9438 2025-03-20 04:55:37.819 2025-03-20 04:55:37.819 435550 929 2 0 9439 2025-03-19 12:42:13.379 2025-03-19 12:42:13.379 435550 2710 1 0 9440 2025-03-20 04:55:37.819 2025-03-20 04:55:37.819 435550 11621 19 0 9441 2025-03-20 00:20:17.311 2025-03-20 00:20:17.311 435550 14657 9 0 9442 2025-03-19 12:59:52.556 2025-03-19 12:59:52.556 435551 617 2 0 9443 2025-03-19 13:52:20.776 2025-03-19 13:52:20.776 435551 632 3 0 9444 2025-03-19 13:47:34.39 2025-03-19 13:47:34.39 435551 644 2 0 9445 2025-03-19 13:47:36.394 2025-03-19 13:47:36.394 435551 654 19 0 9446 2025-03-19 13:47:36.021 2025-03-19 13:47:36.021 435551 656 19 0 9447 2025-03-19 13:52:25.346 2025-03-19 13:52:25.346 435551 687 26 0 9448 2025-03-19 14:09:03.931 2025-03-19 14:09:03.931 435551 691 2 0 9449 2025-03-19 13:00:05.119 2025-03-19 13:00:05.119 435551 750 2 0 9450 2025-03-19 21:23:39.285 2025-03-19 21:23:39.285 435551 848 1 0 9451 2025-03-19 21:23:39.285 2025-03-19 21:23:39.285 435551 866 9 0 9452 2025-03-19 22:16:03.394 2025-03-19 22:16:03.394 435551 894 19 0 9453 2025-03-19 13:43:35.966 2025-03-19 13:43:35.966 435551 963 9 0 9454 2025-03-19 13:16:24.085 2025-03-19 13:16:24.085 435551 1010 8 0 9455 2025-03-19 13:47:34.39 2025-03-19 13:47:34.39 435551 1038 19 0 9456 2025-03-19 13:16:24.197 2025-03-19 13:16:24.197 435551 1046 8 0 9457 2025-03-19 13:00:05.934 2025-03-19 13:00:05.934 435551 1505 2 0 9458 2025-03-19 14:09:03.931 2025-03-19 14:09:03.931 435551 1632 19 0 9459 2025-03-19 15:31:04.882 2025-03-19 15:31:04.882 435551 1761 1 0 9460 2025-03-19 19:35:09.152 2025-03-19 19:35:09.152 435551 1814 1 0 9461 2025-03-19 13:47:34.881 2025-03-19 13:47:34.881 435551 2016 19 0 9462 2025-03-19 15:41:52.078 2025-03-19 15:41:52.078 435551 2335 1 0 9463 2025-03-19 13:18:17.909 2025-03-19 13:18:17.909 435551 4118 90 0 9464 2025-03-19 15:41:52.239 2025-03-19 15:41:52.239 435551 4378 1 0 9465 2025-03-19 12:58:12.679 2025-03-19 12:58:12.679 435551 5175 10 0 9466 2025-03-19 18:20:29.34 2025-03-19 18:20:29.34 435551 5519 5 0 9467 2025-03-19 13:52:21.398 2025-03-19 13:52:21.398 435551 5775 3 0 9468 2025-03-19 12:44:30.425 2025-03-19 12:44:30.425 435551 5809 4 0 9469 2025-03-19 18:36:48.139 2025-03-19 18:36:48.139 435551 6160 1 0 9470 2025-03-19 14:22:12.399 2025-03-19 14:22:12.399 435551 6602 13 0 9471 2025-03-19 13:33:07.739 2025-03-19 13:33:07.739 435551 8985 1 0 9472 2025-03-19 13:16:24.308 2025-03-19 13:16:24.308 435551 9551 75 0 9473 2025-03-19 13:00:06.894 2025-03-19 13:00:06.894 435551 10016 2 0 9474 2025-03-19 13:16:24.197 2025-03-19 13:16:24.197 435551 10398 75 0 9475 2025-03-19 12:44:30.425 2025-03-19 12:44:30.425 435551 11240 36 0 9476 2025-03-19 13:52:25.346 2025-03-19 13:52:25.346 435551 11314 3 0 9477 2025-03-19 14:16:37.286 2025-03-19 14:16:37.286 435551 11515 19 0 9478 2025-03-19 13:00:05.119 2025-03-19 13:00:05.119 435551 11798 21 0 9479 2025-03-19 17:26:39.207 2025-03-19 17:26:39.207 435551 12738 2 0 9480 2025-03-19 15:41:52.37 2025-03-19 15:41:52.37 435551 13599 10 0 9481 2025-03-19 13:16:23.866 2025-03-19 13:16:23.866 435551 14258 75 0 9482 2025-03-19 12:58:12.679 2025-03-19 12:58:12.679 435551 15103 90 0 9483 2025-03-19 13:52:20.776 2025-03-19 13:52:20.776 435551 15890 30 0 9484 2025-03-19 15:41:52.239 2025-03-19 15:41:52.239 435551 16354 10 0 9485 2025-03-19 12:45:31.777 2025-03-19 12:45:31.777 435551 16747 1 0 9486 2025-03-19 13:47:36.394 2025-03-19 13:47:36.394 435551 17291 2 0 9487 2025-03-19 13:33:07.739 2025-03-19 13:33:07.739 435551 17392 9 0 9488 2025-03-19 17:26:39.207 2025-03-19 17:26:39.207 435551 17535 19 0 9489 2025-03-19 13:43:35.966 2025-03-19 13:43:35.966 435551 18265 1 0 9490 2025-03-20 10:07:40.567 2025-03-20 10:07:40.567 435551 18321 2 0 9491 2025-03-19 13:16:24.085 2025-03-19 13:16:24.085 435551 18533 75 0 9492 2025-03-19 18:36:48.139 2025-03-19 18:36:48.139 435551 19217 5 0 9493 2025-03-19 15:41:52.078 2025-03-19 15:41:52.078 435551 19346 10 0 9494 2025-03-19 15:41:52.37 2025-03-19 15:41:52.37 435551 19759 1 0 9495 2025-03-19 13:52:21.398 2025-03-19 13:52:21.398 435551 19924 30 0 9496 2025-03-19 13:16:24.308 2025-03-19 13:16:24.308 435551 19952 8 0 9497 2025-03-19 13:47:34.881 2025-03-19 13:47:34.881 435551 20523 2 0 9498 2025-03-19 13:52:20.283 2025-03-19 13:52:20.283 435551 20596 3 0 9499 2025-03-19 12:42:28.838 2025-03-19 12:42:28.838 435551 20775 100 0 9500 2025-03-19 18:20:29.34 2025-03-19 18:20:29.34 435551 20825 1 0 9501 2025-03-19 15:31:04.882 2025-03-19 15:31:04.882 435551 20864 9 0 9502 2025-03-19 13:00:05.934 2025-03-19 13:00:05.934 435551 20922 21 0 9503 2025-03-19 22:16:03.394 2025-03-19 22:16:03.394 435551 20956 2 0 9504 2025-03-19 13:00:06.894 2025-03-19 13:00:06.894 435551 21061 21 0 9505 2025-03-19 14:22:12.399 2025-03-19 14:22:12.399 435551 21070 115 0 9506 2025-03-20 10:07:40.567 2025-03-20 10:07:40.567 435551 21365 19 0 9507 2025-03-19 13:16:23.866 2025-03-19 13:16:23.866 435551 21379 8 0 9508 2025-03-19 19:35:09.152 2025-03-19 19:35:09.152 435551 21422 9 0 9509 2025-03-19 14:16:37.286 2025-03-19 14:16:37.286 435551 21424 2 0 9510 2025-03-19 13:47:36.021 2025-03-19 13:47:36.021 435551 21578 2 0 9511 2025-03-19 12:45:31.777 2025-03-19 12:45:31.777 435551 21803 9 0 9512 2025-03-19 13:18:17.909 2025-03-19 13:18:17.909 435551 21804 10 0 9513 2025-03-19 13:52:20.283 2025-03-19 13:52:20.283 435551 21829 30 0 9514 2025-03-19 16:41:44.45 2025-03-19 16:41:44.45 435552 776 3 0 9515 2025-03-19 16:41:44.969 2025-03-19 16:41:44.969 435552 780 3 0 9516 2025-03-19 16:41:44.631 2025-03-19 16:41:44.631 435552 822 3 0 9517 2025-03-19 16:41:44.794 2025-03-19 16:41:44.794 435552 1141 3 0 9518 2025-03-19 12:46:23.182 2025-03-19 12:46:23.182 435552 1236 19 0 9519 2025-03-19 16:41:30.014 2025-03-19 16:41:30.014 435552 1881 3 0 9520 2025-03-19 16:41:45.137 2025-03-19 16:41:45.137 435552 1985 3 0 9521 2025-03-19 16:41:30.176 2025-03-19 16:41:30.176 435552 2151 24 0 9522 2025-03-19 16:41:29.801 2025-03-19 16:41:29.801 435552 2734 3 0 9523 2025-03-19 16:41:44.794 2025-03-19 16:41:44.794 435552 5129 24 0 9524 2025-03-19 16:41:44.631 2025-03-19 16:41:44.631 435552 13100 24 0 9525 2025-03-19 16:41:30.176 2025-03-19 16:41:30.176 435552 13177 3 0 9526 2025-03-19 18:34:34.253 2025-03-19 18:34:34.253 435552 13361 5 0 9527 2025-03-19 16:41:44.283 2025-03-19 16:41:44.283 435552 13865 3 0 9528 2025-03-19 16:41:44.45 2025-03-19 16:41:44.45 435552 15091 24 0 9529 2025-03-19 16:41:30.014 2025-03-19 16:41:30.014 435552 15408 24 0 9530 2025-03-19 16:41:45.137 2025-03-19 16:41:45.137 435552 16059 24 0 9531 2025-03-19 12:46:23.182 2025-03-19 12:46:23.182 435552 16747 2 0 9532 2025-03-19 16:41:29.801 2025-03-19 16:41:29.801 435552 16834 24 0 9533 2025-03-19 16:41:30.484 2025-03-19 16:41:30.484 435552 18069 24 0 9534 2025-03-19 12:43:13.345 2025-03-19 12:43:13.345 435552 18271 1 0 9535 2025-03-19 16:41:29.62 2025-03-19 16:41:29.62 435552 19126 3 0 9536 2025-03-19 16:41:46.275 2025-03-19 16:41:46.275 435552 19924 24 0 9537 2025-03-19 16:41:30.484 2025-03-19 16:41:30.484 435552 20849 3 0 9538 2025-03-19 16:41:29.62 2025-03-19 16:41:29.62 435552 20864 24 0 9539 2025-03-19 16:41:44.969 2025-03-19 16:41:44.969 435552 21222 24 0 9540 2025-03-19 16:41:46.275 2025-03-19 16:41:46.275 435552 21262 3 0 9541 2025-03-19 16:41:44.283 2025-03-19 16:41:44.283 435552 21349 24 0 9542 2025-03-19 18:34:34.253 2025-03-19 18:34:34.253 435552 21547 1 0 9543 2025-03-19 13:09:39.631 2025-03-19 13:09:39.631 435553 2514 3 0 9544 2025-03-19 12:44:08.578 2025-03-19 12:44:08.578 435553 8245 30 0 9545 2025-03-19 13:09:39.631 2025-03-19 13:09:39.631 435553 10280 27 0 9546 2025-03-19 12:44:08.578 2025-03-19 12:44:08.578 435553 12951 3 0 9547 2025-03-19 12:43:52.659 2025-03-19 12:43:52.659 435554 5499 1 0 9548 2025-03-19 13:09:41.092 2025-03-19 13:09:41.092 435555 929 27 0 9549 2025-03-19 12:44:33.199 2025-03-19 12:44:33.199 435555 1195 1 0 9550 2025-03-19 13:09:41.092 2025-03-19 13:09:41.092 435555 19759 3 0 9551 2025-03-19 12:45:04.159 2025-03-19 12:45:04.159 435556 15806 1 0 9552 2025-03-19 12:46:30.585 2025-03-19 12:46:30.585 435557 694 100 0 9553 2025-03-19 20:54:46.635 2025-03-19 20:54:46.635 435557 7809 4 0 9554 2025-03-20 00:20:27.047 2025-03-20 00:20:27.047 435557 11395 1 0 9555 2025-03-20 00:20:27.047 2025-03-20 00:20:27.047 435557 18630 9 0 9556 2025-03-20 03:36:45.435 2025-03-20 03:36:45.435 435557 19992 2 0 9557 2025-03-20 03:36:45.435 2025-03-20 03:36:45.435 435557 20157 0 0 9558 2025-03-19 20:54:46.635 2025-03-19 20:54:46.635 435557 21389 0 0 9559 2025-03-19 13:12:13.252 2025-03-19 13:12:13.252 435558 621 0 0 9560 2025-03-19 12:47:16 2025-03-19 12:47:16 435558 680 1 0 9561 2025-03-19 13:12:12.035 2025-03-19 13:12:12.035 435558 1784 1 0 9562 2025-03-19 13:12:13.252 2025-03-19 13:12:13.252 435558 2952 1 0 9563 2025-03-19 13:12:12.035 2025-03-19 13:12:12.035 435558 3411 0 0 9564 2025-03-19 13:12:11.101 2025-03-19 13:12:11.101 435558 9669 0 0 9565 2025-03-19 13:12:09.76 2025-03-19 13:12:09.76 435558 16177 0 0 9566 2025-03-19 13:12:10.439 2025-03-19 13:12:10.439 435558 16830 1 0 9567 2025-03-19 13:12:11.101 2025-03-19 13:12:11.101 435558 20275 1 0 9568 2025-03-19 13:12:09.76 2025-03-19 13:12:09.76 435558 20602 1 0 9569 2025-03-19 13:12:10.439 2025-03-19 13:12:10.439 435558 21036 0 0 9570 2025-03-19 12:52:58.798 2025-03-19 12:52:58.798 435559 1472 1 0 9571 2025-03-19 12:48:28.206 2025-03-19 12:48:28.206 435559 7766 1 0 9572 2025-03-19 12:52:58.798 2025-03-19 12:52:58.798 435559 13843 9 0 9573 2025-03-20 06:59:13.575 2025-03-20 06:59:13.575 435560 928 1 0 9574 2025-03-20 06:59:14.67 2025-03-20 06:59:14.67 435560 1007 9 0 9575 2025-03-20 06:59:13.575 2025-03-20 06:59:13.575 435560 2775 9 0 9576 2025-03-20 06:59:14.344 2025-03-20 06:59:14.344 435560 5112 9 0 9577 2025-03-19 18:38:34.06 2025-03-19 18:38:34.06 435560 9159 27 0 9578 2025-03-20 06:59:13.957 2025-03-20 06:59:13.957 435560 9290 1 0 9579 2025-03-20 06:59:14.67 2025-03-20 06:59:14.67 435560 10731 1 0 9580 2025-03-20 06:59:13.215 2025-03-20 06:59:13.215 435560 11314 9 0 9581 2025-03-20 06:59:13.957 2025-03-20 06:59:13.957 435560 11996 9 0 9582 2025-03-20 06:59:14.344 2025-03-20 06:59:14.344 435560 18351 1 0 9583 2025-03-19 18:38:34.06 2025-03-19 18:38:34.06 435560 21373 3 0 9584 2025-03-19 12:49:27.023 2025-03-19 12:49:27.023 435560 21577 1 0 9585 2025-03-20 06:59:13.215 2025-03-20 06:59:13.215 435560 21714 1 0 9586 2025-03-20 00:20:51.078 2025-03-20 00:20:51.078 435561 1237 9 0 9587 2025-03-19 18:23:53.587 2025-03-19 18:23:53.587 435561 2593 5 0 9588 2025-03-19 12:51:05.814 2025-03-19 12:51:05.814 435561 8998 18 0 9589 2025-03-19 12:50:44.077 2025-03-19 12:50:44.077 435561 9184 1 0 9590 2025-03-20 00:20:51.078 2025-03-20 00:20:51.078 435561 15337 1 0 9591 2025-03-19 12:51:02.866 2025-03-19 12:51:02.866 435561 16351 2 0 9592 2025-03-19 12:51:05.814 2025-03-19 12:51:05.814 435561 17103 2 0 9593 2025-03-19 12:51:00.277 2025-03-19 12:51:00.277 435561 20479 2 0 9594 2025-03-19 18:23:53.587 2025-03-19 18:23:53.587 435561 21228 45 0 9595 2025-03-19 12:51:00.277 2025-03-19 12:51:00.277 435561 21522 18 0 9596 2025-03-19 12:51:02.866 2025-03-19 12:51:02.866 435561 21670 18 0 9597 2025-03-19 12:51:30.263 2025-03-19 12:51:30.263 435562 620 1 0 9598 2025-03-19 13:38:34.534 2025-03-19 13:38:34.534 435562 5017 3 0 9599 2025-03-19 13:38:34.534 2025-03-19 13:38:34.534 435562 7899 23 0 9600 2025-03-19 12:52:25.549 2025-03-19 12:52:25.549 435563 15484 1 0 9601 2025-03-19 13:21:11.179 2025-03-19 13:21:11.179 435564 647 10 0 9602 2025-03-19 12:54:54.715 2025-03-19 12:54:54.715 435564 661 1 0 9603 2025-03-20 08:12:53.66 2025-03-20 08:12:53.66 435564 7125 19 0 9604 2025-03-19 12:54:54.715 2025-03-19 12:54:54.715 435564 9275 9 0 9605 2025-03-19 12:54:28.289 2025-03-19 12:54:28.289 435564 17690 100 0 9606 2025-03-19 13:21:11.179 2025-03-19 13:21:11.179 435564 21279 90 0 9607 2025-03-20 08:12:53.66 2025-03-20 08:12:53.66 435564 21442 2 0 9608 2025-03-19 12:56:27.34 2025-03-19 12:56:27.34 435565 726 1 0 9609 2025-03-19 13:12:22.48 2025-03-19 13:12:22.48 435565 6578 2 0 9610 2025-03-19 13:12:21.866 2025-03-19 13:12:21.866 435565 7877 0 0 9611 2025-03-19 12:56:27.34 2025-03-19 12:56:27.34 435565 11395 9 0 9612 2025-03-19 13:12:22.48 2025-03-19 13:12:22.48 435565 18473 0 0 9613 2025-03-19 12:54:44.267 2025-03-19 12:54:44.267 435565 21683 1 0 9614 2025-03-19 13:12:21.866 2025-03-19 13:12:21.866 435565 21709 1 0 9615 2025-03-19 13:25:51.939 2025-03-19 13:25:51.939 435566 1426 27 0 9616 2025-03-19 12:55:16.908 2025-03-19 12:55:16.908 435566 9167 1 0 9617 2025-03-19 13:25:51.939 2025-03-19 13:25:51.939 435566 11298 3 0 9618 2025-03-19 12:55:38.857 2025-03-19 12:55:38.857 435567 15510 10 0 9619 2025-03-19 12:55:52.645 2025-03-19 12:55:52.645 435568 18901 1 0 9620 2025-03-19 13:20:06.41 2025-03-19 13:20:06.41 435569 633 3 0 9621 2025-03-19 13:00:28.523 2025-03-19 13:00:28.523 435569 2326 2 0 9622 2025-03-19 15:02:25.48 2025-03-19 15:02:25.48 435569 2670 3 0 9623 2025-03-19 13:20:06.41 2025-03-19 13:20:06.41 435569 8472 27 0 9624 2025-03-19 12:56:00.818 2025-03-19 12:56:00.818 435569 15075 1 0 9625 2025-03-19 13:00:28.523 2025-03-19 13:00:28.523 435569 17064 19 0 9626 2025-03-19 15:02:25.48 2025-03-19 15:02:25.48 435569 17116 31 0 9627 2025-03-19 12:56:44.076 2025-03-19 12:56:44.076 435570 680 1 0 9628 2025-03-19 13:21:57.328 2025-03-19 13:21:57.328 435571 2022 8 0 9629 2025-03-19 12:57:02.948 2025-03-19 12:57:02.948 435571 7992 1 0 9630 2025-03-19 13:21:57.328 2025-03-19 13:21:57.328 435571 9332 1 0 9631 2025-03-19 14:17:23.363 2025-03-19 14:17:23.363 435571 13177 1 0 9632 2025-03-19 14:17:23.363 2025-03-19 14:17:23.363 435571 13878 5 0 9633 2025-03-19 13:21:57.7 2025-03-19 13:21:57.7 435571 14489 81 0 9634 2025-03-19 18:41:49.731 2025-03-19 18:41:49.731 435571 15075 5 0 9635 2025-03-19 13:21:57.137 2025-03-19 13:21:57.137 435571 15103 0 0 9636 2025-03-19 13:21:57.7 2025-03-19 13:21:57.7 435571 20782 9 0 9637 2025-03-19 18:41:49.731 2025-03-19 18:41:49.731 435571 21274 1 0 9638 2025-03-19 13:21:57.137 2025-03-19 13:21:57.137 435571 21540 1 0 9639 2025-03-19 13:11:22.779 2025-03-19 13:11:22.779 435572 1447 1 0 9640 2025-03-19 13:11:22.779 2025-03-19 13:11:22.779 435572 12272 9 0 9641 2025-03-19 12:58:55.053 2025-03-19 12:58:55.053 435572 21202 1 0 9642 2025-03-19 16:14:29.791 2025-03-19 16:14:29.791 435573 1490 23 0 9643 2025-03-19 13:13:03.872 2025-03-19 13:13:03.872 435573 4166 1 0 9644 2025-03-19 16:14:29.791 2025-03-19 16:14:29.791 435573 4819 3 0 9645 2025-03-19 13:00:16.528 2025-03-19 13:00:16.528 435573 9669 1 0 9646 2025-03-19 13:13:03.872 2025-03-19 13:13:03.872 435573 15732 9 0 9647 2025-03-19 13:08:30.732 2025-03-19 13:08:30.732 435574 636 9 0 9648 2025-03-19 13:02:21.7 2025-03-19 13:02:21.7 435574 1803 1 0 9649 2025-03-19 15:31:49.34 2025-03-19 15:31:49.34 435574 2342 1 0 9650 2025-03-19 21:24:58.509 2025-03-19 21:24:58.509 435574 3353 9 0 9651 2025-03-19 13:08:28.746 2025-03-19 13:08:28.746 435574 4958 0 0 9652 2025-03-19 13:08:28.939 2025-03-19 13:08:28.939 435574 6777 8 0 9653 2025-03-19 15:31:49.34 2025-03-19 15:31:49.34 435574 8289 9 0 9654 2025-03-20 03:31:23.58 2025-03-20 03:31:23.58 435574 9695 9 0 9655 2025-03-20 03:31:23.58 2025-03-20 03:31:23.58 435574 11670 1 0 9656 2025-03-19 13:08:28.939 2025-03-19 13:08:28.939 435574 15060 1 0 9657 2025-03-19 13:08:28.746 2025-03-19 13:08:28.746 435574 15488 1 0 9658 2025-03-19 21:24:58.509 2025-03-19 21:24:58.509 435574 21494 1 0 9659 2025-03-19 13:08:30.732 2025-03-19 13:08:30.732 435574 21501 81 0 9660 2025-03-19 13:11:09.284 2025-03-19 13:11:09.284 435575 626 0 0 9661 2025-03-19 13:03:04.306 2025-03-19 13:03:04.306 435575 2123 1 0 9662 2025-03-19 13:11:09.062 2025-03-19 13:11:09.062 435575 3506 0 0 9663 2025-03-19 13:11:09.868 2025-03-19 13:11:09.868 435575 8796 1 0 9664 2025-03-19 13:11:08.252 2025-03-19 13:11:08.252 435575 18351 1 0 9665 2025-03-19 13:11:08.252 2025-03-19 13:11:08.252 435575 18409 0 0 9666 2025-03-19 13:11:09.062 2025-03-19 13:11:09.062 435575 20179 1 0 9667 2025-03-19 13:11:08.834 2025-03-19 13:11:08.834 435575 20782 0 0 9668 2025-03-19 13:11:09.284 2025-03-19 13:11:09.284 435575 21180 1 0 9669 2025-03-19 13:11:08.834 2025-03-19 13:11:08.834 435575 21202 1 0 9670 2025-03-19 13:11:09.868 2025-03-19 13:11:09.868 435575 21424 0 0 9671 2025-03-19 19:43:43.777 2025-03-19 19:43:43.777 435576 761 90 0 9672 2025-03-19 13:04:18.292 2025-03-19 13:04:18.292 435576 15978 7 0 9673 2025-03-20 05:14:43.939 2025-03-20 05:14:43.939 435576 20490 90 0 9674 2025-03-19 19:43:43.777 2025-03-19 19:43:43.777 435576 20755 10 0 9675 2025-03-20 05:14:43.939 2025-03-20 05:14:43.939 435576 21303 10 0 9676 2025-03-19 13:12:23.441 2025-03-19 13:12:23.441 435577 687 81 0 9677 2025-03-19 17:26:49.916 2025-03-19 17:26:49.916 435577 721 2 0 9678 2025-03-19 13:16:02.24 2025-03-19 13:16:02.24 435577 760 2 0 9679 2025-03-19 15:36:46.642 2025-03-19 15:36:46.642 435577 1209 1 0 9680 2025-03-19 15:36:46.642 2025-03-19 15:36:46.642 435577 2361 9 0 9681 2025-03-19 13:12:19.364 2025-03-19 13:12:19.364 435577 5129 1 0 9682 2025-03-19 14:24:25.858 2025-03-19 14:24:25.858 435577 6191 2 0 9683 2025-03-19 13:12:19.173 2025-03-19 13:12:19.173 435577 11609 1 0 9684 2025-03-19 19:02:24.208 2025-03-19 19:02:24.208 435577 13038 4 0 9685 2025-03-19 13:16:19.818 2025-03-19 13:16:19.818 435577 13843 14 0 9686 2025-03-19 13:12:19.173 2025-03-19 14:24:25.858 435577 14260 19 0 9687 2025-03-19 17:26:49.916 2025-03-19 17:26:49.916 435577 15890 19 0 9688 2025-03-19 13:18:20.478 2025-03-19 13:18:20.478 435577 16059 90 0 9689 2025-03-19 13:12:23.441 2025-03-19 13:12:23.441 435577 17001 9 0 9690 2025-03-19 13:16:02.24 2025-03-19 19:02:24.208 435577 17519 57 0 9691 2025-03-19 13:04:38.349 2025-03-19 13:04:38.349 435577 17535 10 0 9692 2025-03-19 13:18:20.478 2025-03-19 13:18:20.478 435577 18473 10 0 9693 2025-03-19 15:20:06.835 2025-03-19 15:20:06.835 435577 20102 36 0 9694 2025-03-19 15:20:06.835 2025-03-19 15:20:06.835 435577 20412 4 0 9695 2025-03-19 13:12:19.364 2025-03-19 13:12:19.364 435577 20646 8 0 9696 2025-03-19 13:16:19.818 2025-03-19 13:16:19.818 435577 20939 2 0 9697 2025-03-19 13:21:46.195 2025-03-19 13:21:46.195 435578 959 1 0 9698 2025-03-19 13:21:47.21 2025-03-19 13:21:47.21 435578 1198 2 0 9699 2025-03-19 13:21:44.487 2025-03-19 13:21:44.487 435578 1236 0 0 9700 2025-03-19 13:21:44.99 2025-03-19 13:21:44.99 435578 6149 0 0 9701 2025-03-19 13:21:45.623 2025-03-19 13:21:45.623 435578 9290 1 0 9702 2025-03-19 13:21:44.99 2025-03-19 13:21:44.99 435578 9295 1 0 9703 2025-03-19 13:21:45.202 2025-03-19 13:21:45.202 435578 11145 1 0 9704 2025-03-19 13:21:46.709 2025-03-19 13:21:46.709 435578 11798 1 0 9705 2025-03-19 13:21:47.21 2025-03-19 13:21:47.21 435578 12738 0 0 9706 2025-03-19 13:21:46.195 2025-03-19 13:21:46.195 435578 12951 0 0 9707 2025-03-19 13:21:44.487 2025-03-19 13:21:44.487 435578 16660 1 0 9708 2025-03-19 13:21:45.852 2025-03-19 13:21:45.852 435578 16939 1 0 9709 2025-03-19 13:05:38.015 2025-03-19 13:05:38.015 435578 17713 1 0 9710 2025-03-19 13:21:45.623 2025-03-19 13:21:45.623 435578 19071 0 0 9711 2025-03-19 13:21:46.709 2025-03-19 13:21:46.709 435578 20291 0 0 9712 2025-03-19 13:21:45.852 2025-03-19 13:21:45.852 435578 21202 0 0 9713 2025-03-19 13:21:45.202 2025-03-19 13:21:45.202 435578 21274 0 0 9714 2025-03-19 13:16:13.972 2025-03-19 13:16:13.972 435579 9 8 0 9715 2025-03-19 17:26:42.341 2025-03-19 17:26:42.341 435579 27 19 0 9716 2025-03-19 13:52:15.099 2025-03-19 13:52:15.099 435579 628 9 0 9717 2025-03-19 13:16:13.046 2025-03-19 13:16:13.046 435579 663 8 0 9718 2025-03-19 13:07:21.741 2025-03-19 13:07:21.741 435579 686 125 0 9719 2025-03-19 14:05:04.713 2025-03-19 14:05:04.713 435579 690 4 0 9720 2025-03-19 13:16:13.139 2025-03-19 13:16:13.139 435579 787 75 0 9721 2025-03-19 13:52:15.099 2025-03-19 13:52:15.099 435579 917 1 0 9722 2025-03-19 17:56:31.95 2025-03-19 17:56:31.95 435579 1425 1 0 9723 2025-03-19 13:52:15.433 2025-03-19 13:52:15.433 435579 1438 9 0 9724 2025-03-19 15:09:10.741 2025-03-19 15:09:10.741 435579 1650 10 0 9725 2025-03-19 17:56:31.95 2025-03-19 17:56:31.95 435579 1705 9 0 9726 2025-03-19 13:52:15.58 2025-03-19 13:52:15.58 435579 1741 1 0 9727 2025-03-20 03:31:35.673 2025-03-20 03:31:35.673 435579 1970 2 0 9728 2025-03-19 13:16:13.75 2025-03-19 13:16:13.75 435579 2010 75 0 9729 2025-03-19 19:54:43.998 2025-03-19 19:54:43.998 435579 2711 7 0 9730 2025-03-19 13:52:15.271 2025-03-19 13:52:15.271 435579 3347 9 0 9731 2025-03-19 13:16:13.972 2025-03-19 13:16:13.972 435579 4048 75 0 9732 2025-03-19 14:09:45.31 2025-03-19 14:09:45.31 435579 4128 19 0 9733 2025-03-19 13:52:14.762 2025-03-19 13:52:14.762 435579 4250 1 0 9734 2025-03-19 17:26:42.341 2025-03-19 17:26:42.341 435579 4802 2 0 9735 2025-03-20 04:06:45.958 2025-03-20 04:06:45.958 435579 5487 1 0 9736 2025-03-19 13:49:38.964 2025-03-19 13:49:38.964 435579 6526 30 0 9737 2025-03-19 14:23:41.853 2025-03-19 14:23:41.853 435579 7125 23 0 9738 2025-03-20 04:06:45.605 2025-03-20 04:06:45.605 435579 7583 10 0 9739 2025-03-19 13:52:14.921 2025-03-19 13:52:14.921 435579 7960 1 0 9740 2025-03-19 16:30:31.379 2025-03-19 16:30:31.379 435579 9159 1 0 9741 2025-03-19 14:09:45.31 2025-03-19 14:09:45.31 435579 9307 2 0 9742 2025-03-19 14:23:41.853 2025-03-19 14:23:41.853 435579 9329 3 0 9743 2025-03-19 13:16:13.046 2025-03-19 13:16:13.046 435579 9669 75 0 9744 2025-03-19 13:52:14.921 2025-03-19 13:52:14.921 435579 10638 9 0 9745 2025-03-19 13:16:13.75 2025-03-19 13:16:13.75 435579 10986 8 0 9746 2025-03-19 14:05:04.713 2025-03-19 14:05:04.713 435579 11192 36 0 9747 2025-03-19 13:52:15.58 2025-03-19 13:52:15.58 435579 12507 9 0 9748 2025-03-19 15:06:49.696 2025-03-19 15:06:49.696 435579 13587 1 0 9749 2025-03-20 04:06:45.958 2025-03-20 04:06:45.958 435579 13843 10 0 9750 2025-03-19 16:30:31.379 2025-03-19 16:30:31.379 435579 14959 0 0 9751 2025-03-19 15:06:49.696 2025-03-20 04:06:45.605 435579 15544 1 0 9752 2025-03-20 08:32:10.651 2025-03-20 08:32:10.651 435579 15690 14 0 9753 2025-03-19 13:52:15.433 2025-03-19 13:52:15.433 435579 16788 1 0 9754 2025-03-19 13:16:13.139 2025-03-19 13:16:13.139 435579 17817 8 0 9755 2025-03-19 13:52:15.271 2025-03-19 13:52:15.271 435579 18393 1 0 9756 2025-03-20 08:32:10.651 2025-03-20 08:32:10.651 435579 19217 2 0 9757 2025-03-19 13:49:38.964 2025-03-19 13:49:38.964 435579 19673 3 0 9758 2025-03-19 15:09:10.741 2025-03-19 15:09:10.741 435579 19863 1 0 9759 2025-03-20 04:06:45.779 2025-03-20 04:06:45.779 435579 20554 1 0 9760 2025-03-19 19:54:43.998 2025-03-19 19:54:43.998 435579 20691 62 0 9761 2025-03-20 04:06:45.779 2025-03-20 04:06:45.779 435579 20911 10 0 9762 2025-03-19 13:52:14.762 2025-03-19 13:52:14.762 435579 20963 9 0 9763 2025-03-20 03:31:35.673 2025-03-20 03:31:35.673 435579 21014 19 0 9764 2025-03-19 15:06:49.862 2025-03-19 15:06:49.862 435579 21058 8 0 9765 2025-03-19 15:06:49.862 2025-03-19 15:06:49.862 435579 21824 1 0 9766 2025-03-19 13:48:51.107 2025-03-19 13:48:51.107 435580 9 0 0 9767 2025-03-19 15:16:29.219 2025-03-19 15:16:29.219 435580 623 1 0 9768 2025-03-19 15:16:28.725 2025-03-19 15:16:28.725 435580 633 1 0 9769 2025-03-20 00:19:09.291 2025-03-20 00:19:09.291 435580 684 1 0 9770 2025-03-20 04:14:20.008 2025-03-20 04:14:20.008 435580 686 5 0 9771 2025-03-19 13:48:51.702 2025-03-19 13:48:51.702 435580 690 9 0 9772 2025-03-20 08:56:31.379 2025-03-20 08:56:31.379 435580 803 2 0 9773 2025-03-19 18:34:21.52 2025-03-19 18:34:21.52 435580 929 5 0 9774 2025-03-19 13:48:51.702 2025-03-19 13:48:51.702 435580 963 81 0 9775 2025-03-20 04:14:19.816 2025-03-20 04:14:19.816 435580 1438 5 0 9776 2025-03-19 15:16:29.219 2025-03-19 15:16:29.219 435580 1576 0 0 9777 2025-03-19 18:34:20.801 2025-03-19 18:34:20.801 435580 1673 5 0 9778 2025-03-19 15:16:27.946 2025-03-19 15:16:27.946 435580 1712 1 0 9779 2025-03-20 04:15:04.274 2025-03-20 04:15:04.274 435580 2016 5 0 9780 2025-03-20 08:32:58.537 2025-03-20 08:32:58.537 435580 2459 7 0 9781 2025-03-19 19:03:19.906 2025-03-19 19:03:19.906 435580 2775 1 0 9782 2025-03-20 00:15:05.351 2025-03-20 00:15:05.351 435580 4654 9 0 9783 2025-03-19 13:48:51.159 2025-03-19 13:48:51.159 435580 5557 8 0 9784 2025-03-19 18:43:42.254 2025-03-19 18:43:42.254 435580 6777 1 0 9785 2025-03-20 04:15:04.185 2025-03-20 04:15:04.185 435580 7992 1 0 9786 2025-03-20 04:15:04.388 2025-03-20 04:15:04.388 435580 8664 5 0 9787 2025-03-19 23:56:07.828 2025-03-19 23:56:07.828 435580 8841 9 0 9788 2025-03-19 15:16:28.113 2025-03-19 15:16:28.113 435580 9167 1 0 9789 2025-03-19 16:16:23.617 2025-03-19 16:16:23.617 435580 9183 1 0 9790 2025-03-20 08:32:58.537 2025-03-20 08:32:58.537 435580 9334 1 0 9791 2025-03-20 04:15:04.647 2025-03-20 04:15:04.647 435580 10112 1 0 9792 2025-03-20 04:15:04.388 2025-03-20 04:15:04.388 435580 11220 1 0 9793 2025-03-19 18:34:20.801 2025-03-19 18:34:20.801 435580 11328 1 0 9794 2025-03-19 18:34:21.52 2025-03-19 18:34:21.52 435580 11523 1 0 9795 2025-03-19 23:56:07.828 2025-03-19 23:56:07.828 435580 11621 1 0 9796 2025-03-20 00:19:09.291 2025-03-20 00:19:09.291 435580 12072 0 0 9797 2025-03-19 15:16:28.288 2025-03-19 15:16:28.288 435580 12334 1 0 9798 2025-03-19 15:16:27.782 2025-03-19 15:16:27.782 435580 12368 1 0 9799 2025-03-19 15:16:28.725 2025-03-19 19:03:19.906 435580 12609 9 0 9800 2025-03-19 18:43:42.254 2025-03-19 18:43:42.254 435580 12821 9 0 9801 2025-03-20 04:15:04.647 2025-03-20 04:15:04.647 435580 13042 5 0 9802 2025-03-20 08:56:31.077 2025-03-20 08:56:31.077 435580 15200 19 0 9803 2025-03-19 15:16:27.658 2025-03-19 15:16:27.658 435580 15556 1 0 9804 2025-03-19 16:16:23.617 2025-03-19 16:16:23.617 435580 15588 9 0 9805 2025-03-19 13:48:51.159 2025-03-19 13:48:51.159 435580 16387 1 0 9806 2025-03-19 15:16:28.441 2025-03-19 15:16:28.441 435580 16406 1 0 9807 2025-03-19 15:16:28.288 2025-03-19 15:16:28.288 435580 16633 0 0 9808 2025-03-19 15:16:28.441 2025-03-19 15:16:28.441 435580 16789 0 0 9809 2025-03-20 08:56:31.229 2025-03-20 08:56:31.229 435580 16808 19 0 9810 2025-03-19 13:08:55.177 2025-03-19 13:08:55.177 435580 17030 0 0 9811 2025-03-20 08:56:31.077 2025-03-20 08:56:31.077 435580 17106 2 0 9812 2025-03-19 13:07:24.358 2025-03-19 13:07:24.358 435580 17411 1 0 9813 2025-03-20 08:56:31.229 2025-03-20 08:56:31.229 435580 18368 2 0 9814 2025-03-19 15:16:28.113 2025-03-19 15:16:28.113 435580 19292 0 0 9815 2025-03-19 13:48:51.107 2025-03-19 13:48:51.107 435580 19303 1 0 9816 2025-03-20 04:14:20.008 2025-03-20 04:14:20.008 435580 19378 1 0 9817 2025-03-19 15:16:27.782 2025-03-19 15:16:27.782 435580 19966 0 0 9818 2025-03-20 00:15:05.351 2025-03-20 00:15:05.351 435580 20409 1 0 9819 2025-03-20 04:14:19.816 2025-03-20 04:14:19.816 435580 20710 1 0 9820 2025-03-20 04:15:04.274 2025-03-20 04:15:04.274 435580 20817 1 0 9821 2025-03-20 04:15:04.185 2025-03-20 04:15:04.185 435580 21022 5 0 9822 2025-03-19 15:16:27.946 2025-03-19 15:16:27.946 435580 21119 0 0 9823 2025-03-20 08:56:31.539 2025-03-20 08:56:31.539 435580 21233 19 0 9824 2025-03-20 08:56:31.539 2025-03-20 08:56:31.539 435580 21320 2 0 9825 2025-03-20 08:56:31.379 2025-03-20 08:56:31.379 435580 21401 19 0 9826 2025-03-19 15:16:27.658 2025-03-19 15:16:27.658 435580 21585 0 0 9827 2025-03-19 13:10:56.997 2025-03-19 13:10:56.997 435581 9332 1 0 9828 2025-03-19 13:26:03.223 2025-03-19 13:26:03.223 435582 896 1 0 9829 2025-03-19 13:26:06.003 2025-03-19 13:26:06.003 435582 981 1 0 9830 2025-03-19 13:26:05.206 2025-03-19 13:26:05.206 435582 989 0 0 9831 2025-03-19 13:26:03.011 2025-03-19 13:26:03.011 435582 1130 1 0 9832 2025-03-19 13:26:02.492 2025-03-19 13:26:02.492 435582 1652 1 0 9833 2025-03-19 13:26:06.032 2025-03-19 13:26:06.032 435582 1718 0 0 9834 2025-03-19 13:26:06.032 2025-03-19 13:26:06.032 435582 6616 1 0 9835 2025-03-19 13:26:05.206 2025-03-19 13:26:05.206 435582 7877 1 0 9836 2025-03-19 13:26:04.805 2025-03-19 13:26:04.805 435582 11018 0 0 9837 2025-03-19 13:26:02.74 2025-03-19 13:26:02.74 435582 12368 0 0 9838 2025-03-19 13:26:05.013 2025-03-19 13:26:05.013 435582 13177 1 0 9839 2025-03-19 13:12:03.555 2025-03-19 13:12:03.555 435582 14452 1 0 9840 2025-03-19 13:26:02.74 2025-03-19 13:26:02.74 435582 14669 1 0 9841 2025-03-19 21:25:17.539 2025-03-19 21:25:17.539 435582 16432 9 0 9842 2025-03-19 13:26:03.011 2025-03-19 13:26:03.011 435582 16950 0 0 9843 2025-03-19 13:26:03.223 2025-03-19 13:26:03.223 435582 18525 0 0 9844 2025-03-19 13:26:05.013 2025-03-19 13:26:05.013 435582 19126 0 0 9845 2025-03-19 13:26:02.492 2025-03-19 13:26:02.492 435582 19471 0 0 9846 2025-03-19 13:26:05.676 2025-03-19 13:26:05.676 435582 19735 1 0 9847 2025-03-19 13:26:06.003 2025-03-19 13:26:06.003 435582 19906 0 0 9848 2025-03-19 21:25:17.539 2025-03-19 21:25:17.539 435582 21180 1 0 9849 2025-03-19 13:26:04.805 2025-03-19 13:26:04.805 435582 21585 1 0 9850 2025-03-19 13:51:03.315 2025-03-19 13:51:03.315 435583 657 1 0 9851 2025-03-19 13:51:03.315 2025-03-19 13:51:03.315 435583 8796 9 0 9852 2025-03-19 14:04:06.708 2025-03-19 14:04:06.708 435583 17638 90 0 9853 2025-03-19 14:04:06.708 2025-03-19 14:04:06.708 435583 20701 10 0 9854 2025-03-19 13:12:10.737 2025-03-19 13:12:10.737 435583 21791 1 0 9855 2025-03-19 13:12:37.145 2025-03-19 13:12:37.145 435584 20026 1 0 9856 2025-03-19 15:18:22.555 2025-03-19 15:18:22.555 435585 749 0 0 9857 2025-03-19 15:18:22.892 2025-03-19 15:18:22.892 435585 902 0 0 9858 2025-03-19 15:18:23.719 2025-03-19 15:18:23.719 435585 3360 3 0 9859 2025-03-19 15:18:23.065 2025-03-19 15:18:23.065 435585 3518 3 0 9860 2025-03-19 14:56:53.869 2025-03-19 14:56:53.869 435585 6360 1 0 9861 2025-03-19 15:18:22.555 2025-03-19 15:18:22.555 435585 6419 3 0 9862 2025-03-19 14:56:53.869 2025-03-19 14:56:53.869 435585 8380 9 0 9863 2025-03-20 08:31:55.427 2025-03-20 08:31:55.427 435585 9611 19 0 9864 2025-03-19 15:18:22.892 2025-03-19 15:18:22.892 435585 10821 3 0 9865 2025-03-19 15:18:22.726 2025-03-19 15:18:22.726 435585 11477 3 0 9866 2025-03-19 15:18:23.719 2025-03-19 15:18:23.719 435585 15703 0 0 9867 2025-03-19 15:18:22.37 2025-03-19 15:18:22.37 435585 16282 0 0 9868 2025-03-19 15:18:22.37 2025-03-19 15:18:22.37 435585 16351 3 0 9869 2025-03-19 13:12:43.523 2025-03-19 13:12:43.523 435585 17237 1 0 9870 2025-03-20 08:31:55.427 2025-03-20 08:31:55.427 435585 17331 2 0 9871 2025-03-19 15:18:23.065 2025-03-19 15:18:23.065 435585 17570 0 0 9872 2025-03-19 15:18:23.238 2025-03-19 15:18:23.238 435585 18734 3 0 9873 2025-03-19 15:18:22.726 2025-03-19 15:18:22.726 435585 20647 0 0 9874 2025-03-19 15:18:23.238 2025-03-19 15:18:23.238 435585 20669 0 0 9875 2025-03-19 13:27:20.093 2025-03-19 13:27:20.093 435586 10013 0 0 9876 2025-03-19 13:27:20.093 2025-03-19 13:27:20.093 435586 18269 4 0 9877 2025-03-19 13:13:12.6 2025-03-19 13:13:12.6 435586 21212 1 0 9878 2025-03-19 13:13:45.571 2025-03-19 13:13:45.571 435587 16059 1 0 9879 2025-03-19 13:14:28.225 2025-03-19 13:14:28.225 435588 761 1 0 9880 2025-03-19 22:18:08.345 2025-03-19 22:18:08.345 435588 1745 19 0 9881 2025-03-19 22:18:08.345 2025-03-19 22:18:08.345 435588 21413 2 0 9882 2025-03-19 13:15:20.502 2025-03-19 13:15:20.502 435589 660 1 0 9883 2025-03-19 13:21:38.232 2025-03-19 13:21:38.232 435589 8985 27 0 9884 2025-03-19 13:21:38.232 2025-03-19 13:21:38.232 435589 17696 3 0 9885 2025-03-19 13:15:53.512 2025-03-19 13:15:53.512 435589 20683 0 0 9886 2025-03-19 13:15:59.657 2025-03-19 13:15:59.657 435591 699 1 0 9887 2025-03-19 13:27:20.82 2025-03-19 13:27:20.82 435591 15526 0 0 9888 2025-03-19 13:27:20.82 2025-03-19 13:27:20.82 435591 16695 4 0 9889 2025-03-19 13:18:25.951 2025-03-19 13:18:25.951 435592 979 0 0 9890 2025-03-19 13:17:57.584 2025-03-19 13:17:57.584 435592 11314 1 0 9891 2025-03-19 13:27:21.438 2025-03-19 13:27:21.438 435592 11714 0 0 9892 2025-03-19 13:27:21.438 2025-03-19 13:27:21.438 435592 18101 4 0 9893 2025-03-19 13:18:13.633 2025-03-19 13:18:13.633 435593 17824 1 0 9894 2025-03-19 13:21:06.343 2025-03-19 13:21:06.343 435594 889 0 0 9895 2025-03-19 13:21:14.116 2025-03-19 13:21:14.116 435594 2232 0 0 9896 2025-03-19 13:19:23.273 2025-03-19 13:19:23.273 435594 11144 1 0 9897 2025-03-19 13:21:06.343 2025-03-19 13:21:06.343 435594 15239 1 0 9898 2025-03-19 13:21:14.116 2025-03-19 13:21:14.116 435594 17103 1 0 9899 2025-03-19 13:21:07.266 2025-03-19 13:21:07.266 435594 20058 0 0 9900 2025-03-19 13:21:07.266 2025-03-19 13:21:07.266 435594 20205 1 0 9901 2025-03-19 13:19:34.159 2025-03-19 13:19:34.159 435595 1717 1 0 9902 2025-03-20 00:21:36.085 2025-03-20 00:21:36.085 435595 13406 1 0 9903 2025-03-19 13:20:19.545 2025-03-19 13:20:19.545 435595 18430 0 0 9904 2025-03-20 00:21:36.085 2025-03-20 00:21:36.085 435595 20812 9 0 9905 2025-03-19 22:16:09.307 2025-03-19 22:16:09.307 435596 627 2 0 9906 2025-03-20 11:12:53.259 2025-03-20 11:12:53.259 435596 641 81 0 9907 2025-03-20 11:12:58.61 2025-03-20 11:12:58.61 435596 701 90 0 9908 2025-03-19 19:35:06.566 2025-03-19 19:35:06.566 435596 826 9 0 9909 2025-03-19 13:19:58.343 2025-03-19 13:19:58.343 435596 1064 75 0 9910 2025-03-19 13:19:58.343 2025-03-19 13:19:58.343 435596 1411 8 0 9911 2025-03-19 14:09:37.841 2025-03-19 14:09:37.841 435596 1577 19 0 9912 2025-03-19 13:19:45.186 2025-03-19 13:19:45.186 435596 1772 10 0 9913 2025-03-20 08:32:05.392 2025-03-20 08:32:05.392 435596 1785 14 0 9914 2025-03-19 22:16:09.307 2025-03-19 22:16:09.307 435596 2437 19 0 9915 2025-03-20 01:45:06.471 2025-03-20 01:45:06.471 435596 2757 2 0 9916 2025-03-19 16:29:44.819 2025-03-19 16:29:44.819 435596 3304 21 0 9917 2025-03-19 13:48:39.32 2025-03-19 13:48:39.32 435596 3717 0 0 9918 2025-03-20 11:12:58.61 2025-03-20 11:12:58.61 435596 4395 810 0 9919 2025-03-19 13:19:59.413 2025-03-19 13:19:59.413 435596 4570 8 0 9920 2025-03-19 17:26:40.13 2025-03-19 17:26:40.13 435596 5293 2 0 9921 2025-03-20 02:17:23.042 2025-03-20 02:17:23.042 435596 5590 23 0 9922 2025-03-19 16:29:44.646 2025-03-19 16:29:44.646 435596 5646 21 0 9923 2025-03-19 18:36:54.704 2025-03-19 18:36:54.704 435596 5776 1 0 9924 2025-03-20 08:09:56.866 2025-03-20 08:09:56.866 435596 6653 19 0 9925 2025-03-20 08:32:05.392 2025-03-20 08:32:05.392 435596 7673 2 0 9926 2025-03-19 15:06:02.317 2025-03-19 15:06:02.317 435596 9906 10 0 9927 2025-03-20 01:45:06.471 2025-03-20 01:45:06.471 435596 10469 0 0 9928 2025-03-19 14:04:59.615 2025-03-19 14:04:59.615 435596 10536 4 0 9929 2025-03-19 18:33:55.629 2025-03-19 18:33:55.629 435596 10611 1 0 9930 2025-03-19 16:29:44.964 2025-03-19 16:29:44.964 435596 11240 21 0 9931 2025-03-20 08:09:56.866 2025-03-20 08:09:56.866 435596 11491 2 0 9932 2025-03-19 18:33:55.629 2025-03-19 18:33:55.629 435596 11621 9 0 9933 2025-03-19 14:04:59.615 2025-03-19 14:04:59.615 435596 12738 36 0 9934 2025-03-20 04:06:44.75 2025-03-20 04:06:44.75 435596 14015 1 0 9935 2025-03-20 11:12:53.259 2025-03-20 11:12:53.259 435596 14225 9 0 9936 2025-03-19 16:29:44.462 2025-03-19 16:29:44.462 435596 14939 21 0 9937 2025-03-20 04:06:44.617 2025-03-20 04:06:44.617 435596 15386 1 0 9938 2025-03-20 04:06:44.75 2025-03-20 04:06:44.75 435596 16259 10 0 9939 2025-03-19 19:35:06.566 2025-03-19 19:35:06.566 435596 16270 1 0 9940 2025-03-19 14:09:37.841 2025-03-19 14:09:37.841 435596 16912 2 0 9941 2025-03-20 04:06:44.617 2025-03-20 04:06:44.617 435596 17041 10 0 9942 2025-03-19 13:48:39.32 2025-03-19 16:29:44.964 435596 17091 3 0 9943 2025-03-20 02:17:23.042 2025-03-20 02:17:23.042 435596 18174 3 0 9944 2025-03-19 13:19:59.413 2025-03-19 13:19:59.413 435596 18313 75 0 9945 2025-03-19 13:48:39.533 2025-03-19 13:48:39.533 435596 19570 8 0 9946 2025-03-19 13:19:58.216 2025-03-19 13:19:58.216 435596 19581 75 0 9947 2025-03-19 15:06:02.317 2025-03-19 15:06:02.317 435596 19689 1 0 9948 2025-03-19 13:19:58.216 2025-03-19 13:19:58.216 435596 19905 8 0 9949 2025-03-20 04:06:44.89 2025-03-20 04:06:44.89 435596 20187 1 0 9950 2025-03-19 18:36:54.704 2025-03-19 18:36:54.704 435596 20222 5 0 9951 2025-03-19 17:26:40.13 2025-03-19 17:26:40.13 435596 20511 19 0 9952 2025-03-19 16:29:44.646 2025-03-19 16:29:44.646 435596 20619 2 0 9953 2025-03-19 13:48:39.533 2025-03-19 13:48:39.533 435596 20646 1 0 9954 2025-03-19 16:29:44.819 2025-03-19 16:29:44.819 435596 21269 2 0 9955 2025-03-20 04:06:44.89 2025-03-20 04:06:44.89 435596 21374 10 0 9956 2025-03-19 16:29:44.462 2025-03-19 16:29:44.462 435596 21771 2 0 9957 2025-03-20 00:20:34.813 2025-03-20 00:20:34.813 435597 706 9 0 9958 2025-03-20 00:20:34.813 2025-03-20 00:20:34.813 435597 2460 1 0 9959 2025-03-20 00:16:59.192 2025-03-20 00:16:59.192 435597 13177 0 0 9960 2025-03-19 13:19:53.087 2025-03-19 13:19:53.087 435597 16562 100 0 9961 2025-03-20 00:16:59.192 2025-03-20 00:16:59.192 435597 20525 2 0 9962 2025-03-19 13:20:40.043 2025-03-19 13:20:40.043 435598 18494 1 0 9963 2025-03-19 13:31:27.125 2025-03-19 13:31:27.125 435599 1823 1 0 9964 2025-03-19 13:31:27.125 2025-03-19 13:31:27.125 435599 1825 9 0 9965 2025-03-19 13:21:49.403 2025-03-19 13:21:49.403 435599 4079 1 0 9966 2025-03-19 13:26:23.082 2025-03-19 13:26:23.082 435600 12516 27 0 9967 2025-03-19 13:22:08.832 2025-03-19 13:22:08.832 435600 13798 1 0 9968 2025-03-19 13:26:23.082 2025-03-19 13:26:23.082 435600 14255 3 0 9969 2025-03-19 13:22:23.58 2025-03-19 13:22:23.58 435601 618 1 0 9970 2025-03-19 14:32:26.02 2025-03-19 14:32:26.02 435601 12049 5 0 9971 2025-03-19 14:32:26.02 2025-03-19 14:32:26.02 435601 21670 1 0 9972 2025-03-19 13:22:51.271 2025-03-19 13:22:51.271 435602 16176 42 0 9973 2025-03-19 13:22:57.933 2025-03-19 13:22:57.933 435603 1082 1 0 9974 2025-03-19 13:25:03.236 2025-03-19 13:25:03.236 435604 9916 1 0 9975 2025-03-19 13:33:16.238 2025-03-19 13:33:16.238 435605 2710 13 0 9976 2025-03-19 13:25:55.703 2025-03-19 13:25:55.703 435605 4474 0 0 9977 2025-03-19 13:25:50.473 2025-03-19 13:25:50.473 435605 9669 1 0 9978 2025-03-19 13:26:23.749 2025-03-19 13:26:23.749 435605 14669 0 0 9979 2025-03-19 13:33:16.238 2025-03-19 13:33:16.238 435605 15978 115 0 9980 2025-03-19 13:26:08.094 2025-03-19 13:26:08.094 435605 17568 0 0 9981 2025-03-19 13:26:32.622 2025-03-19 13:26:32.622 435606 20660 1 0 9982 2025-03-19 13:27:05.038 2025-03-19 13:27:05.038 435607 20059 1 0 9983 2025-03-19 15:31:15.198 2025-03-19 15:31:15.198 435608 666 1 0 9984 2025-03-19 13:38:50.775 2025-03-19 13:38:50.775 435608 1354 8 0 9985 2025-03-19 13:38:50.552 2025-03-19 13:38:50.552 435608 5794 0 0 9986 2025-03-19 13:28:30.297 2025-03-19 13:28:30.297 435608 8448 1 0 9987 2025-03-19 15:31:15.198 2025-03-19 15:31:15.198 435608 8472 9 0 9988 2025-03-19 13:38:54.25 2025-03-19 13:38:54.25 435608 9906 81 0 9989 2025-03-19 21:23:40.3 2025-03-19 21:23:40.3 435608 13406 9 0 9990 2025-03-19 13:38:50.552 2025-03-19 13:38:50.552 435608 14220 1 0 9991 2025-03-19 13:38:54.25 2025-03-19 13:38:54.25 435608 16950 9 0 9992 2025-03-19 13:38:50.775 2025-03-19 13:38:50.775 435608 21421 1 0 9993 2025-03-19 21:23:40.3 2025-03-19 21:23:40.3 435608 21526 1 0 9994 2025-03-19 13:30:25.713 2025-03-19 13:30:25.713 435609 12656 1 0 9995 2025-03-19 18:36:47.316 2025-03-19 18:36:47.316 435610 650 1 0 9996 2025-03-19 16:29:36.129 2025-03-19 16:29:36.129 435610 671 21 0 9997 2025-03-20 08:34:02.831 2025-03-20 08:34:02.831 435610 674 30 0 9998 2025-03-19 16:14:53.118 2025-03-19 16:14:53.118 435610 675 9 0 9999 2025-03-19 17:26:38.563 2025-03-19 17:26:38.563 435610 684 2 0 10000 2025-03-19 16:01:37.218 2025-03-19 16:01:37.218 435610 704 1 0 10001 2025-03-19 22:16:01.11 2025-03-19 22:16:01.11 435610 713 19 0 10002 2025-03-19 19:35:36.131 2025-03-19 19:35:36.131 435610 716 2 0 10003 2025-03-19 19:35:35.129 2025-03-19 19:35:35.129 435610 762 19 0 10004 2025-03-19 16:01:37.387 2025-03-19 16:01:37.387 435610 822 1 0 10005 2025-03-19 14:28:15.707 2025-03-19 14:28:15.707 435610 925 75 0 10006 2025-03-19 18:36:47.316 2025-03-19 18:36:47.316 435610 937 5 0 10007 2025-03-20 02:53:14.305 2025-03-20 02:53:14.305 435610 998 5 0 10008 2025-03-20 03:23:11.24 2025-03-20 03:23:11.24 435610 1009 9 0 10009 2025-03-19 19:11:55.714 2025-03-19 19:11:55.714 435610 1122 69 0 10010 2025-03-19 19:18:01.421 2025-03-19 19:18:01.421 435610 1433 91 0 10011 2025-03-19 13:35:27.189 2025-03-19 13:35:27.189 435610 1549 0 0 10012 2025-03-19 14:56:11.784 2025-03-19 14:56:11.784 435610 1800 0 0 10013 2025-03-19 16:14:53.118 2025-03-19 16:14:53.118 435610 1803 1 0 10014 2025-03-19 16:32:15.243 2025-03-19 16:32:15.243 435610 2460 2 0 10015 2025-03-20 08:34:03.752 2025-03-20 08:34:03.752 435610 2513 7 0 10016 2025-03-19 23:13:16.315 2025-03-19 23:13:16.315 435610 2528 2 0 10017 2025-03-19 19:35:35.129 2025-03-19 19:35:35.129 435610 2741 2 0 10018 2025-03-19 16:01:37.387 2025-03-19 16:01:37.387 435610 2776 8 0 10019 2025-03-19 19:35:35.649 2025-03-19 19:35:35.649 435610 3506 2 0 10020 2025-03-19 19:35:09.512 2025-03-19 19:35:09.512 435610 3745 9 0 10021 2025-03-19 18:45:58.03 2025-03-19 18:45:58.03 435610 4083 4 0 10022 2025-03-19 13:42:00.478 2025-03-19 13:42:00.478 435610 4798 19 0 10023 2025-03-19 13:42:00.478 2025-03-19 13:42:00.478 435610 5852 2 0 10024 2025-03-19 16:29:36.571 2025-03-19 16:29:36.571 435610 6537 2 0 10025 2025-03-19 16:58:35.417 2025-03-19 16:58:35.417 435610 8448 10 0 10026 2025-03-20 10:07:22.771 2025-03-20 10:07:22.771 435610 9107 10 0 10027 2025-03-19 19:11:55.714 2025-03-19 19:11:55.714 435610 9307 8 0 10028 2025-03-19 14:28:15.707 2025-03-19 14:28:15.707 435610 9330 8 0 10029 2025-03-19 15:20:03.723 2025-03-19 15:20:03.723 435610 9333 36 0 10030 2025-03-20 02:53:14.305 2025-03-20 02:53:14.305 435610 9418 1 0 10031 2025-03-19 14:56:10.424 2025-03-19 14:56:10.424 435610 9517 1 0 10032 2025-03-19 19:35:35.649 2025-03-19 19:35:35.649 435610 10352 19 0 10033 2025-03-20 10:07:22.771 2025-03-20 10:07:22.771 435610 10638 1 0 10034 2025-03-19 15:12:54.208 2025-03-19 15:12:54.208 435610 11450 19 0 10035 2025-03-19 13:32:23.31 2025-03-19 13:32:23.31 435610 11609 0 0 10036 2025-03-20 08:34:02.831 2025-03-20 08:34:02.831 435610 13544 3 0 10037 2025-03-19 19:18:01.421 2025-03-19 19:18:01.421 435610 13587 10 0 10038 2025-03-19 14:56:10.424 2025-03-19 14:56:10.424 435610 14260 0 0 10039 2025-03-19 16:29:36.571 2025-03-19 16:29:36.571 435610 14381 21 0 10040 2025-03-19 15:12:54.208 2025-03-19 15:12:54.208 435610 15386 2 0 10041 2025-03-19 15:20:03.723 2025-03-19 15:20:03.723 435610 15624 4 0 10042 2025-03-19 13:54:57.385 2025-03-19 13:54:57.385 435610 15858 2 0 10043 2025-03-19 14:28:16.315 2025-03-19 14:28:16.315 435610 16353 75 0 10044 2025-03-19 13:37:14.148 2025-03-19 13:37:14.148 435610 16357 0 0 10045 2025-03-19 16:58:35.417 2025-03-19 16:58:35.417 435610 16410 90 0 10046 2025-03-20 08:34:03.752 2025-03-20 08:34:03.752 435610 16440 59 0 10047 2025-03-19 16:01:39.278 2025-03-19 16:01:39.278 435610 17095 9 0 10048 2025-03-19 19:35:36.518 2025-03-19 19:35:36.518 435610 18068 19 0 10049 2025-03-19 19:35:34.505 2025-03-19 19:35:34.505 435610 18269 2 0 10050 2025-03-19 13:31:14.835 2025-03-19 13:31:14.835 435610 18423 100 0 10051 2025-03-19 19:29:41.47 2025-03-19 19:29:41.47 435610 18430 30 0 10052 2025-03-19 16:29:36.129 2025-03-19 16:29:36.129 435610 19581 2 0 10053 2025-03-19 17:26:38.563 2025-03-19 17:26:38.563 435610 19663 19 0 10054 2025-03-19 23:13:16.315 2025-03-19 23:13:16.315 435610 19759 19 0 10055 2025-03-19 16:01:37.218 2025-03-19 16:01:37.218 435610 19813 0 0 10056 2025-03-19 16:29:37.032 2025-03-19 16:29:37.032 435610 19854 21 0 10057 2025-03-19 19:29:41.47 2025-03-19 19:29:41.47 435610 20245 3 0 10058 2025-03-19 19:35:36.131 2025-03-19 19:35:36.131 435610 20280 19 0 10059 2025-03-19 14:28:16.315 2025-03-19 14:28:16.315 435610 20381 8 0 10060 2025-03-19 18:45:58.03 2025-03-19 18:45:58.03 435610 20562 38 0 10061 2025-03-19 13:54:57.385 2025-03-19 13:54:57.385 435610 20606 14 0 10062 2025-03-19 16:01:39.278 2025-03-19 16:01:39.278 435610 20680 81 0 10063 2025-03-19 16:32:15.243 2025-03-19 16:32:15.243 435610 20963 19 0 10064 2025-03-19 14:56:11.784 2025-03-19 14:56:11.784 435610 20973 1 0 10065 2025-03-19 22:16:01.11 2025-03-19 22:16:01.11 435610 21036 2 0 10066 2025-03-20 03:23:11.24 2025-03-20 03:23:11.24 435610 21222 1 0 10067 2025-03-19 19:35:09.512 2025-03-19 19:35:09.512 435610 21518 1 0 10068 2025-03-19 19:35:36.518 2025-03-19 19:35:36.518 435610 21710 2 0 10069 2025-03-19 16:29:37.032 2025-03-19 16:29:37.032 435610 21814 2 0 10070 2025-03-19 19:35:34.505 2025-03-19 19:35:34.505 435610 21833 19 0 10071 2025-03-19 13:32:10.471 2025-03-19 13:32:10.471 435611 21518 1 0 10072 2025-03-19 13:32:58.715 2025-03-19 13:32:58.715 435612 13217 1 0 10073 2025-03-19 13:32:58.971 2025-03-19 13:32:58.971 435613 1447 1 0 10074 2025-03-19 13:37:57.124 2025-03-19 13:37:57.124 435613 9109 45 0 10075 2025-03-19 13:37:57.307 2025-03-19 13:37:57.307 435613 10586 45 0 10076 2025-03-19 13:37:57.124 2025-03-19 13:37:57.124 435613 14255 5 0 10077 2025-03-19 13:37:57.307 2025-03-19 13:37:57.307 435613 19576 5 0 10078 2025-03-19 18:22:05.551 2025-03-19 18:22:05.551 435614 684 45 0 10079 2025-03-19 13:37:29.205 2025-03-19 13:37:29.205 435614 1245 1 0 10080 2025-03-19 14:18:31.632 2025-03-19 14:18:31.632 435614 1836 1 0 10081 2025-03-19 18:41:50.906 2025-03-19 18:41:50.906 435614 4768 1 0 10082 2025-03-19 14:18:31.632 2025-03-19 14:18:31.632 435614 10102 5 0 10083 2025-03-19 13:38:20.346 2025-03-19 13:38:20.346 435614 11716 0 0 10084 2025-03-19 18:22:06.238 2025-03-19 18:22:06.238 435614 16145 45 0 10085 2025-03-19 18:41:50.906 2025-03-19 18:41:50.906 435614 16667 5 0 10086 2025-03-19 18:22:05.551 2025-03-19 18:22:05.551 435614 16788 5 0 10087 2025-03-19 18:22:06.238 2025-03-19 18:22:06.238 435614 21287 5 0 10088 2025-03-19 18:25:38.259 2025-03-19 18:25:38.259 435615 1316 5 0 10089 2025-03-19 13:39:36.063 2025-03-19 13:39:36.063 435615 1723 1 0 10090 2025-03-19 13:57:16.957 2025-03-19 13:57:16.957 435615 12911 3 0 10091 2025-03-19 13:57:16.957 2025-03-19 13:57:16.957 435615 13361 23 0 10092 2025-03-19 21:23:47.405 2025-03-19 21:23:47.405 435615 16354 1 0 10093 2025-03-19 18:25:38.259 2025-03-19 18:25:38.259 435615 18219 45 0 10094 2025-03-19 21:23:47.405 2025-03-19 21:23:47.405 435615 21791 9 0 10095 2025-03-19 13:41:38.444 2025-03-19 13:41:38.444 435616 8059 1 0 10096 2025-03-19 15:17:14.606 2025-03-19 15:17:14.606 435616 17365 21 0 10097 2025-03-19 15:17:14.606 2025-03-19 15:17:14.606 435616 20715 190 0 10098 2025-03-19 13:42:05.93 2025-03-19 13:42:05.93 435617 18306 1 0 10099 2025-03-19 18:33:32.217 2025-03-19 18:33:32.217 435618 1959 1 0 10100 2025-03-19 18:51:12.588 2025-03-19 18:51:12.588 435618 9356 9 0 10101 2025-03-19 19:03:13.769 2025-03-19 19:03:13.769 435618 10270 1 0 10102 2025-03-19 19:03:13.769 2025-03-19 19:03:13.769 435618 10611 9 0 10103 2025-03-19 18:33:32.217 2025-03-19 18:33:32.217 435618 13566 5 0 10104 2025-03-19 13:42:32.634 2025-03-19 13:42:32.634 435618 15662 1 0 10105 2025-03-19 18:51:12.588 2025-03-19 18:51:12.588 435618 21833 1 0 10106 2025-03-19 17:45:06.581 2025-03-19 17:45:06.581 435619 616 9 0 10107 2025-03-19 13:44:38.362 2025-03-19 13:44:38.362 435619 631 0 0 10108 2025-03-19 13:48:16.265 2025-03-19 13:48:16.265 435619 761 13 0 10109 2025-03-19 13:48:39.207 2025-03-19 13:48:39.207 435619 889 0 0 10110 2025-03-19 13:48:15.327 2025-03-19 13:48:15.327 435619 963 0 0 10111 2025-03-19 13:47:01.867 2025-03-19 13:47:01.867 435619 1577 0 0 10112 2025-03-19 17:45:06.258 2025-03-19 17:45:06.258 435619 2719 9 0 10113 2025-03-19 13:44:08.839 2025-03-19 13:44:08.839 435619 2963 1 0 10114 2025-03-19 13:53:15.01 2025-03-19 13:53:15.01 435619 5069 0 0 10115 2025-03-19 17:45:06.581 2025-03-19 17:45:06.581 435619 5759 1 0 10116 2025-03-19 13:49:21.434 2025-03-19 13:49:21.434 435619 6191 0 0 10117 2025-03-19 17:45:06.258 2025-03-19 17:45:06.258 435619 6594 1 0 10118 2025-03-19 13:47:52.116 2025-03-19 13:47:52.116 435619 6777 1 0 10119 2025-03-19 17:45:05.517 2025-03-19 17:45:05.517 435619 7395 9 0 10120 2025-03-20 10:14:44.951 2025-03-20 10:14:44.951 435619 8289 19 0 10121 2025-03-20 06:03:14.65 2025-03-20 06:03:14.65 435619 8400 230 0 10122 2025-03-19 17:45:06.059 2025-03-19 17:45:06.059 435619 8469 1 0 10123 2025-03-19 13:47:52.116 2025-03-19 13:47:52.116 435619 9200 8 0 10124 2025-03-19 13:50:49.826 2025-03-19 13:50:49.826 435619 9334 0 0 10125 2025-03-19 13:44:20.446 2025-03-19 13:44:20.446 435619 9418 0 0 10126 2025-03-19 17:45:05.963 2025-03-19 17:45:05.963 435619 9552 1 0 10127 2025-03-19 13:48:30.894 2025-03-19 13:48:30.894 435619 11523 0 0 10128 2025-03-19 13:44:48.764 2025-03-19 13:44:48.764 435619 12072 0 0 10129 2025-03-19 13:50:24.372 2025-03-19 13:50:24.372 435619 12368 0 0 10130 2025-03-19 13:47:54.288 2025-03-19 13:47:54.288 435619 12749 81 0 10131 2025-03-19 13:48:16.265 2025-03-19 13:48:16.265 435619 14195 115 0 10132 2025-03-19 13:47:51.951 2025-03-19 13:47:51.951 435619 14452 0 0 10133 2025-03-19 17:45:05.963 2025-03-19 17:45:05.963 435619 14503 9 0 10134 2025-03-19 17:45:06.423 2025-03-19 17:45:06.423 435619 14607 1 0 10135 2025-03-19 17:45:06.423 2025-03-19 17:45:06.423 435619 14818 9 0 10136 2025-03-19 17:45:05.517 2025-03-19 17:45:05.517 435619 15510 1 0 10137 2025-03-19 17:45:06.059 2025-03-19 17:45:06.059 435619 16809 9 0 10138 2025-03-20 06:03:14.65 2025-03-20 06:03:14.65 435619 17275 26 0 10139 2025-03-19 13:47:51.951 2025-03-19 13:47:51.951 435619 18116 1 0 10140 2025-03-19 17:45:05.691 2025-03-19 17:45:05.691 435619 18423 1 0 10141 2025-03-19 13:47:39.278 2025-03-19 13:47:39.278 435619 18829 0 0 10142 2025-03-19 17:45:05.691 2025-03-19 17:45:05.691 435619 19071 9 0 10143 2025-03-20 10:14:44.951 2025-03-20 10:14:44.951 435619 19087 2 0 10144 2025-03-19 13:47:54.288 2025-03-19 13:47:54.288 435619 19263 9 0 10145 2025-03-19 13:51:13.876 2025-03-19 13:51:13.876 435619 20117 0 0 10146 2025-03-19 13:52:56.5 2025-03-19 13:52:56.5 435619 20715 0 0 10147 2025-03-19 13:46:38.974 2025-03-19 13:46:38.974 435619 21768 0 0 10148 2025-03-19 14:04:37.06 2025-03-19 14:04:37.06 435620 2620 4 0 10149 2025-03-19 13:47:32.325 2025-03-19 13:47:32.325 435620 9916 10 0 10150 2025-03-19 14:04:37.06 2025-03-19 14:04:37.06 435620 17042 36 0 10151 2025-03-19 13:54:29.728 2025-03-19 13:54:29.728 435621 14503 1 0 10152 2025-03-19 13:54:29.728 2025-03-19 13:54:29.728 435621 20523 0 0 10153 2025-03-19 13:48:05.322 2025-03-19 13:48:05.322 435621 20854 1 0 10154 2025-03-19 13:50:15.446 2025-03-19 13:50:15.446 435622 775 1 0 10155 2025-03-19 13:51:57.963 2025-03-19 13:51:57.963 435622 1198 0 0 10156 2025-03-19 13:51:57.804 2025-03-19 13:51:57.804 435622 7877 0 0 10157 2025-03-19 13:51:58.153 2025-03-19 13:51:58.153 435622 17535 3 0 10158 2025-03-19 13:51:57.804 2025-03-19 13:51:57.804 435622 18330 3 0 10159 2025-03-19 13:51:57.963 2025-03-19 13:51:57.963 435622 18735 3 0 10160 2025-03-19 13:51:58.153 2025-03-19 13:51:58.153 435622 20616 0 0 10161 2025-03-19 13:51:56.286 2025-03-19 13:51:56.286 435623 18393 1 0 10162 2025-03-19 16:10:14.332 2025-03-19 16:10:14.332 435624 965 9 0 10163 2025-03-19 13:52:06.245 2025-03-19 13:52:06.245 435624 3706 1 0 10164 2025-03-19 16:17:46.374 2025-03-19 16:17:46.374 435624 11829 1 0 10165 2025-03-19 16:17:46.374 2025-03-19 16:17:46.374 435624 19813 9 0 10166 2025-03-19 16:10:14.332 2025-03-19 16:10:14.332 435624 21083 1 0 10167 2025-03-19 13:52:08.992 2025-03-19 13:52:08.992 435625 684 1 0 10168 2025-03-19 14:03:27.237 2025-03-19 14:03:27.237 435626 1002 36 0 10169 2025-03-19 14:03:27.237 2025-03-19 14:03:27.237 435626 5776 4 0 10170 2025-03-19 13:53:15.68 2025-03-19 13:53:15.68 435626 7891 1 0 10171 2025-03-19 13:53:40.26 2025-03-19 13:53:40.26 435627 15560 1 0 10172 2025-03-19 13:54:59.946 2025-03-19 13:54:59.946 435628 848 1 0 10173 2025-03-19 13:54:59.946 2025-03-19 13:54:59.946 435628 1136 0 0 10174 2025-03-19 21:24:06.247 2025-03-19 21:24:06.247 435628 1237 9 0 10175 2025-03-19 15:31:29.606 2025-03-19 15:31:29.606 435628 4692 9 0 10176 2025-03-19 13:55:00.187 2025-03-19 13:55:00.187 435628 5069 8 0 10177 2025-03-19 13:54:11.319 2025-03-19 13:54:11.319 435628 5794 1 0 10178 2025-03-19 13:55:00.187 2025-03-19 13:55:00.187 435628 9695 1 0 10179 2025-03-19 21:24:06.247 2025-03-19 21:24:06.247 435628 12261 1 0 10180 2025-03-19 13:55:00.726 2025-03-19 13:55:00.726 435628 17106 81 0 10181 2025-03-19 15:31:29.606 2025-03-19 15:31:29.606 435628 20409 1 0 10182 2025-03-19 13:55:00.726 2025-03-19 13:55:00.726 435628 21631 9 0 10183 2025-03-19 13:54:44.989 2025-03-19 13:54:44.989 435629 631 1 0 10184 2025-03-19 15:16:45.266 2025-03-19 15:16:45.266 435629 1039 0 0 10185 2025-03-19 15:16:45.57 2025-03-19 15:16:45.57 435629 2367 0 0 10186 2025-03-19 15:16:45.096 2025-03-19 15:16:45.096 435629 7659 0 0 10187 2025-03-20 04:50:05.789 2025-03-20 04:50:05.789 435629 10493 1 0 10188 2025-03-19 15:16:45.096 2025-03-19 15:16:45.096 435629 13348 1 0 10189 2025-03-19 15:16:45.501 2025-03-19 15:16:45.501 435629 14857 0 0 10190 2025-03-20 00:15:12.782 2025-03-20 00:15:12.782 435629 15526 9 0 10191 2025-03-19 15:16:46.184 2025-03-19 15:16:46.184 435629 17201 0 0 10192 2025-03-19 15:16:45.93 2025-03-19 15:16:45.93 435629 17991 0 0 10193 2025-03-19 15:16:45.93 2025-03-19 15:16:45.93 435629 18829 1 0 10194 2025-03-19 15:16:45.266 2025-03-19 15:16:45.266 435629 19668 1 0 10195 2025-03-19 15:16:46.184 2025-03-19 15:16:46.184 435629 20439 1 0 10196 2025-03-19 15:16:45.57 2025-03-19 15:16:45.57 435629 20577 1 0 10197 2025-03-20 04:50:05.789 2025-03-20 04:50:05.789 435629 20812 0 0 10198 2025-03-19 15:16:45.501 2025-03-19 15:16:45.501 435629 21714 1 0 10199 2025-03-20 00:15:12.782 2025-03-20 00:15:12.782 435629 21833 1 0 10200 2025-03-19 15:06:29.991 2025-03-19 15:06:29.991 435630 837 8 0 10201 2025-03-19 15:06:29.991 2025-03-19 15:06:29.991 435630 848 1 0 10202 2025-03-19 18:19:59.462 2025-03-19 18:19:59.462 435630 989 45 0 10203 2025-03-19 16:59:10.185 2025-03-19 16:59:10.185 435630 4238 9 0 10204 2025-03-20 10:15:04.983 2025-03-20 10:15:04.983 435630 4487 10 0 10205 2025-03-19 15:06:29.787 2025-03-19 15:06:29.787 435630 5519 0 0 10206 2025-03-20 10:15:04.983 2025-03-20 10:15:04.983 435630 5708 1 0 10207 2025-03-19 14:21:12.595 2025-03-19 14:21:12.595 435630 7966 23 0 10208 2025-03-19 19:14:15.357 2025-03-19 19:14:15.357 435630 10016 10 0 10209 2025-03-19 15:06:32.507 2025-03-19 15:06:32.507 435630 12976 81 0 10210 2025-03-19 15:06:32.507 2025-03-19 15:06:32.507 435630 13399 9 0 10211 2025-03-19 19:14:15.357 2025-03-19 19:14:15.357 435630 14650 90 0 10212 2025-03-19 15:06:29.787 2025-03-19 15:06:29.787 435630 18423 1 0 10213 2025-03-19 13:56:17.744 2025-03-19 13:56:17.744 435630 19512 1 0 10214 2025-03-19 18:19:59.462 2025-03-19 18:19:59.462 435630 20073 5 0 10215 2025-03-20 08:32:38.031 2025-03-20 08:32:38.031 435630 20586 1 0 10216 2025-03-19 16:59:10.185 2025-03-19 16:59:10.185 435630 21014 1 0 10217 2025-03-19 14:21:12.595 2025-03-19 14:21:12.595 435630 21383 3 0 10218 2025-03-20 08:32:38.031 2025-03-20 08:32:38.031 435630 21421 7 0 10219 2025-03-19 16:15:16.26 2025-03-19 16:15:16.26 435631 876 9 0 10220 2025-03-20 08:35:00.196 2025-03-20 08:35:00.196 435631 1638 30 0 10221 2025-03-20 08:35:00.196 2025-03-20 08:35:00.196 435631 2402 3 0 10222 2025-03-19 14:24:06.818 2025-03-19 14:24:06.818 435631 2460 2 0 10223 2025-03-19 16:15:16.26 2025-03-19 16:15:16.26 435631 6687 1 0 10224 2025-03-19 13:58:51.312 2025-03-19 13:58:51.312 435631 9476 1 0 10225 2025-03-19 14:24:06.818 2025-03-19 14:24:06.818 435631 20956 19 0 10226 2025-03-19 13:59:25.599 2025-03-19 13:59:25.599 435632 1039 1 0 10227 2025-03-19 14:00:25.118 2025-03-19 14:00:25.118 435633 16842 1 0 10228 2025-03-19 15:18:11.246 2025-03-19 15:18:11.246 435634 4225 8 0 10229 2025-03-19 15:18:11.062 2025-03-19 15:18:11.062 435634 5942 1 0 10230 2025-03-19 15:18:11.246 2025-03-19 15:18:11.246 435634 11609 1 0 10231 2025-03-19 14:00:51.748 2025-03-19 14:00:51.748 435634 12965 10 0 10232 2025-03-19 15:18:11.062 2025-03-19 15:18:11.062 435634 21184 0 0 10233 2025-03-20 07:01:51.189 2025-03-20 07:01:51.189 435635 1596 1 0 10234 2025-03-19 14:00:56.916 2025-03-19 14:00:56.916 435635 7668 1 0 10235 2025-03-20 07:01:51.189 2025-03-20 07:01:51.189 435635 8037 9 0 10236 2025-03-20 07:01:51.653 2025-03-20 07:01:51.653 435635 20511 1 0 10237 2025-03-20 07:01:51.653 2025-03-20 07:01:51.653 435635 21771 9 0 10238 2025-03-19 14:02:18.534 2025-03-19 14:02:18.534 435636 16354 1 0 10239 2025-03-19 18:20:36.501 2025-03-19 18:20:36.501 435637 1673 2 0 10240 2025-03-19 14:02:34.523 2025-03-19 14:02:34.523 435637 5728 1 0 10241 2025-03-19 18:20:36.501 2025-03-19 18:20:36.501 435637 16212 19 0 10242 2025-03-19 14:57:26.711 2025-03-19 14:57:26.711 435638 3371 9 0 10243 2025-03-19 14:05:31.434 2025-03-19 14:05:31.434 435638 5806 1 0 10244 2025-03-19 14:57:26.711 2025-03-19 14:57:26.711 435638 20754 1 0 10245 2025-03-19 16:29:47.536 2025-03-19 16:29:47.536 435639 739 2 0 10246 2025-03-19 20:51:26.993 2025-03-19 20:51:26.993 435639 896 0 0 10247 2025-03-20 11:12:37.61 2025-03-20 11:12:37.61 435639 1012 9 0 10248 2025-03-19 20:51:27.256 2025-03-19 20:51:27.256 435639 1195 1 0 10249 2025-03-19 14:24:40.198 2025-03-19 14:24:40.198 435639 1198 75 0 10250 2025-03-19 14:12:26.829 2025-03-19 14:12:26.829 435639 1389 2 0 10251 2025-03-20 03:30:18.988 2025-03-20 03:30:18.988 435639 1985 19 0 10252 2025-03-19 20:51:26.993 2025-03-19 20:51:26.993 435639 2022 1 0 10253 2025-03-19 15:18:12.616 2025-03-19 15:18:12.616 435639 4768 0 0 10254 2025-03-19 22:57:57.67 2025-03-19 22:57:57.67 435639 5495 1 0 10255 2025-03-20 11:12:37.61 2025-03-20 11:12:37.61 435639 5646 81 0 10256 2025-03-19 16:29:47.704 2025-03-19 16:29:47.704 435639 5825 2 0 10257 2025-03-19 14:24:40.198 2025-03-19 14:24:40.198 435639 9246 8 0 10258 2025-03-19 18:36:48.608 2025-03-19 18:36:48.608 435639 9262 5 0 10259 2025-03-19 17:26:39.757 2025-03-19 17:26:39.757 435639 10291 2 0 10260 2025-03-19 22:57:57.67 2025-03-19 22:57:57.67 435639 10398 0 0 10261 2025-03-20 03:30:18.988 2025-03-20 03:30:18.988 435639 10698 2 0 10262 2025-03-19 20:51:27.256 2025-03-19 20:51:27.256 435639 10986 0 0 10263 2025-03-19 18:20:18.955 2025-03-19 18:20:18.955 435639 11164 2 0 10264 2025-03-20 00:20:42.267 2025-03-20 00:20:42.267 435639 11561 9 0 10265 2025-03-19 18:33:54.053 2025-03-19 18:33:54.053 435639 11760 9 0 10266 2025-03-20 02:07:13.38 2025-03-20 02:07:13.38 435639 11942 4 0 10267 2025-03-19 17:26:39.757 2025-03-19 17:26:39.757 435639 12368 19 0 10268 2025-03-19 21:31:35.462 2025-03-19 21:31:35.462 435639 12821 1 0 10269 2025-03-19 15:18:12.616 2025-03-19 15:18:12.616 435639 12946 1 0 10270 2025-03-19 21:31:35.462 2025-03-19 21:31:35.462 435639 13365 0 0 10271 2025-03-19 15:18:13.669 2025-03-19 15:18:13.669 435639 13544 1 0 10272 2025-03-19 16:29:47.704 2025-03-19 16:29:47.704 435639 14271 21 0 10273 2025-03-19 22:57:57.333 2025-03-19 22:57:57.333 435639 14465 1 0 10274 2025-03-19 22:57:57.939 2025-03-19 22:57:57.939 435639 15100 1 0 10275 2025-03-19 16:29:47.851 2025-03-19 16:29:47.851 435639 15491 21 0 10276 2025-03-19 22:16:08.66 2025-03-19 22:16:08.66 435639 15588 19 0 10277 2025-03-19 14:24:40.608 2025-03-19 14:24:40.608 435639 15662 17 0 10278 2025-03-19 22:57:57.333 2025-03-19 22:57:57.333 435639 16284 0 0 10279 2025-03-19 22:16:08.66 2025-03-19 22:16:08.66 435639 16970 2 0 10280 2025-03-19 19:35:09.35 2025-03-19 19:35:09.35 435639 17046 9 0 10281 2025-03-19 17:33:21.831 2025-03-19 17:33:21.831 435639 17148 1 0 10282 2025-03-20 04:17:00.431 2025-03-20 04:17:00.431 435639 17212 5 0 10283 2025-03-19 18:33:54.053 2025-03-19 18:33:54.053 435639 17592 1 0 10284 2025-03-19 17:33:21.831 2025-03-19 17:33:21.831 435639 17798 9 0 10285 2025-03-19 14:06:30.859 2025-03-19 14:06:30.859 435639 18449 100 0 10286 2025-03-19 15:18:13.669 2025-03-19 15:18:13.669 435639 18615 8 0 10287 2025-03-19 18:36:48.608 2025-03-19 18:36:48.608 435639 19121 1 0 10288 2025-03-19 14:24:40.608 2025-03-19 14:24:40.608 435639 19378 149 0 10289 2025-03-19 20:51:27.461 2025-03-19 20:51:27.461 435639 19826 1 0 10290 2025-03-19 20:51:27.461 2025-03-19 20:51:27.461 435639 19888 0 0 10291 2025-03-19 18:20:18.955 2025-03-19 18:20:18.955 435639 20275 19 0 10292 2025-03-19 15:30:08.634 2025-03-19 16:29:47.536 435639 20603 23 0 10293 2025-03-19 14:12:26.829 2025-03-19 14:12:26.829 435639 20660 14 0 10294 2025-03-19 16:29:47.851 2025-03-19 16:29:47.851 435639 20939 2 0 10295 2025-03-20 04:17:00.431 2025-03-20 04:17:00.431 435639 20956 1 0 10296 2025-03-19 22:57:57.939 2025-03-19 22:57:57.939 435639 21044 0 0 10297 2025-03-20 02:07:13.38 2025-03-20 02:07:13.38 435639 21136 36 0 10298 2025-03-19 19:35:09.35 2025-03-19 19:35:09.35 435639 21216 1 0 10299 2025-03-19 15:30:08.634 2025-03-19 15:30:08.634 435639 21332 18 0 10300 2025-03-20 00:20:42.267 2025-03-20 00:20:42.267 435639 21803 1 0 10301 2025-03-19 16:15:25.495 2025-03-19 16:15:25.495 435640 2670 1 0 10302 2025-03-19 14:11:55.622 2025-03-19 14:11:55.622 435640 7772 0 0 10303 2025-03-19 14:12:41.868 2025-03-19 14:12:41.868 435640 9348 0 0 10304 2025-03-19 14:17:47.607 2025-03-19 14:17:47.607 435640 12774 58 0 10305 2025-03-19 14:17:47.607 2025-03-19 14:17:47.607 435640 14657 6 0 10306 2025-03-19 16:15:25.495 2025-03-19 16:15:25.495 435640 20182 9 0 10307 2025-03-19 14:07:55.658 2025-03-19 14:07:55.658 435640 21159 1 0 10308 2025-03-19 14:12:03.584 2025-03-19 14:12:03.584 435641 3417 100 0 10309 2025-03-19 22:46:47.26 2025-03-19 22:46:47.26 435641 9758 1 0 10310 2025-03-19 22:46:47.62 2025-03-19 22:46:47.62 435641 10519 0 0 10311 2025-03-19 14:55:48.968 2025-03-19 14:55:48.968 435641 17984 30 0 10312 2025-03-19 22:46:47.62 2025-03-19 22:46:47.62 435641 18309 1 0 10313 2025-03-19 14:55:48.147 2025-03-19 14:55:48.147 435641 18368 30 0 10314 2025-03-19 14:55:48.854 2025-03-19 14:55:48.854 435641 19570 3 0 10315 2025-03-19 14:55:48.968 2025-03-19 14:55:48.968 435641 20019 3 0 10316 2025-03-19 14:55:48.854 2025-03-19 14:55:48.854 435641 20291 30 0 10317 2025-03-19 14:55:48.147 2025-03-19 14:55:48.147 435641 21279 3 0 10318 2025-03-19 22:46:47.26 2025-03-19 22:46:47.26 435641 21803 0 0 10319 2025-03-19 14:12:45.389 2025-03-19 14:12:45.389 435642 3686 21 0 10320 2025-03-20 06:33:41.383 2025-03-20 06:33:41.383 435643 644 1 0 10321 2025-03-20 06:33:41.383 2025-03-20 06:33:41.383 435643 5308 9 0 10322 2025-03-19 14:14:31.017 2025-03-19 14:14:31.017 435643 6741 5 0 10323 2025-03-20 06:33:41.231 2025-03-20 06:33:41.231 435643 8004 9 0 10324 2025-03-20 06:33:41.542 2025-03-20 06:33:41.542 435643 18956 9 0 10325 2025-03-20 06:33:41.231 2025-03-20 06:33:41.231 435643 21571 1 0 10326 2025-03-20 06:33:41.542 2025-03-20 06:33:41.542 435643 21639 1 0 10327 2025-03-20 08:31:51.696 2025-03-20 08:31:51.696 435644 739 19 0 10328 2025-03-19 14:14:37.103 2025-03-19 14:14:37.103 435644 782 1 0 10329 2025-03-19 14:55:40.714 2025-03-19 14:55:40.714 435644 17741 9 0 10330 2025-03-20 08:31:51.696 2025-03-20 08:31:51.696 435644 18735 2 0 10331 2025-03-19 14:55:40.714 2025-03-19 14:55:40.714 435644 20756 1 0 10332 2025-03-19 14:15:08.455 2025-03-19 14:15:08.455 435645 859 1 0 10333 2025-03-19 14:15:44.637 2025-03-19 14:15:44.637 435646 21555 1 0 10334 2025-03-19 14:17:46.413 2025-03-19 14:17:46.413 435647 618 100 0 10335 2025-03-19 16:30:12.542 2025-03-19 16:30:12.542 435647 2437 0 0 10336 2025-03-19 16:31:28.252 2025-03-19 16:31:28.252 435647 10719 23 0 10337 2025-03-19 16:30:12.542 2025-03-19 16:30:12.542 435647 11561 1 0 10338 2025-03-19 16:31:28.252 2025-03-19 16:31:28.252 435647 12291 3 0 10339 2025-03-19 14:22:49.057 2025-03-19 14:22:49.057 435648 2583 100 0 10340 2025-03-19 19:43:08.58 2025-03-19 19:43:08.58 435648 7668 9 0 10341 2025-03-19 19:43:08.58 2025-03-19 19:43:08.58 435648 21216 1 0 10342 2025-03-19 14:27:04.285 2025-03-19 14:27:04.285 435649 987 3 0 10343 2025-03-20 07:00:04.9 2025-03-20 07:00:04.9 435649 1245 1 0 10344 2025-03-20 07:00:04.9 2025-03-20 07:00:04.9 435649 3377 9 0 10345 2025-03-19 15:07:12.588 2025-03-19 15:07:12.588 435649 5557 90 0 10346 2025-03-19 14:24:45.752 2025-03-19 14:24:45.752 435649 10490 1 0 10347 2025-03-19 14:27:05.778 2025-03-19 14:27:05.778 435649 11999 27 0 10348 2025-03-19 14:27:04.285 2025-03-19 14:27:04.285 435649 13544 27 0 10349 2025-03-20 07:00:05.303 2025-03-20 07:00:05.303 435649 14515 1 0 10350 2025-03-19 14:26:05.825 2025-03-19 14:26:05.825 435649 20596 0 0 10351 2025-03-19 14:27:05.778 2025-03-19 14:27:05.778 435649 20657 243 0 10352 2025-03-20 07:00:05.303 2025-03-20 07:00:05.303 435649 20710 9 0 10353 2025-03-19 14:25:30.079 2025-03-19 14:25:30.079 435649 21416 0 0 10354 2025-03-19 15:07:12.588 2025-03-19 15:07:12.588 435649 21768 10 0 10355 2025-03-19 14:25:28.994 2025-03-19 14:25:28.994 435650 854 1 0 10356 2025-03-19 14:26:45.445 2025-03-19 14:26:45.445 435651 1495 1 0 10357 2025-03-20 00:17:15.235 2025-03-20 00:17:15.235 435651 2674 2 0 10358 2025-03-20 00:17:15.235 2025-03-20 00:17:15.235 435651 15521 0 0 10359 2025-03-20 07:00:20.163 2025-03-20 07:00:20.163 435652 9982 1 0 10360 2025-03-20 07:00:20.163 2025-03-20 07:00:20.163 435652 15491 9 0 10361 2025-03-19 14:28:01.973 2025-03-19 14:28:01.973 435652 20198 1 0 10362 2025-03-19 15:29:16.775 2025-03-19 15:29:16.775 435653 650 1 0 10363 2025-03-19 14:28:50.081 2025-03-19 14:28:50.081 435653 708 100 0 10364 2025-03-19 15:29:16.775 2025-03-19 15:29:16.775 435653 1038 10 0 10365 2025-03-19 15:29:16.186 2025-03-19 15:29:16.186 435653 1585 1 0 10366 2025-03-19 15:29:19.177 2025-03-19 15:29:19.177 435653 2156 10 0 10367 2025-03-19 15:29:19.177 2025-03-19 15:29:19.177 435653 12946 1 0 10368 2025-03-19 15:29:16.186 2025-03-19 15:29:16.186 435653 19930 10 0 10369 2025-03-19 15:03:14.627 2025-03-19 15:03:14.627 435654 3461 3 0 10370 2025-03-20 07:00:22.454 2025-03-20 07:00:22.454 435654 6268 1 0 10371 2025-03-19 14:29:26.652 2025-03-19 14:29:26.652 435654 9354 0 0 10372 2025-03-19 15:03:14.627 2025-03-19 15:03:14.627 435654 9364 27 0 10373 2025-03-20 07:00:22.454 2025-03-20 07:00:22.454 435654 16229 9 0 10374 2025-03-19 14:29:20.464 2025-03-19 14:29:20.464 435654 20597 1 0 10375 2025-03-19 14:30:55.127 2025-03-19 14:30:55.127 435655 2098 0 0 10376 2025-03-19 19:12:33.641 2025-03-19 19:12:33.641 435655 5703 2 0 10377 2025-03-19 19:12:33.641 2025-03-19 19:12:33.641 435655 8989 19 0 10378 2025-03-19 14:29:31.839 2025-03-19 14:29:31.839 435655 9329 10 0 10379 2025-03-19 21:01:30.216 2025-03-19 21:01:30.216 435656 1611 19 0 10380 2025-03-19 14:30:19.267 2025-03-19 14:30:19.267 435656 12721 1 0 10381 2025-03-19 21:01:30.216 2025-03-19 21:01:30.216 435656 20190 2 0 10382 2025-03-19 18:36:47.234 2025-03-19 18:36:47.234 435657 636 5 0 10383 2025-03-19 14:34:18.333 2025-03-19 14:34:18.333 435657 670 8 0 10384 2025-03-19 19:29:55.051 2025-03-19 19:29:55.051 435657 705 9 0 10385 2025-03-19 15:58:37.048 2025-03-19 15:58:37.048 435657 712 27 0 10386 2025-03-19 14:34:16.565 2025-03-19 14:34:16.565 435657 718 75 0 10387 2025-03-19 14:34:18.686 2025-03-19 14:34:18.686 435657 756 8 0 10388 2025-03-19 15:30:56.976 2025-03-19 15:30:56.976 435657 886 2 0 10389 2025-03-20 02:43:40.462 2025-03-20 02:43:40.462 435657 960 38 0 10390 2025-03-19 14:31:51.202 2025-03-19 14:31:51.202 435657 987 10 0 10391 2025-03-19 15:30:57.602 2025-03-19 15:30:57.602 435657 1030 2 0 10392 2025-03-19 15:41:53.287 2025-03-19 15:41:53.287 435657 1094 10 0 10393 2025-03-19 14:34:17.92 2025-03-19 14:34:17.92 435657 1173 8 0 10394 2025-03-20 04:25:18.558 2025-03-20 04:25:18.558 435657 1489 90 0 10395 2025-03-19 15:31:50.179 2025-03-19 15:31:50.179 435657 1534 2 0 10396 2025-03-19 14:34:16.006 2025-03-19 14:34:16.006 435657 1567 75 0 10397 2025-03-19 16:32:08.842 2025-03-19 16:32:08.842 435657 1596 2 0 10398 2025-03-19 19:53:52.823 2025-03-19 19:53:52.823 435657 1602 3 0 10399 2025-03-19 15:30:57.446 2025-03-19 15:30:57.446 435657 1609 21 0 10400 2025-03-19 15:58:38.627 2025-03-19 15:58:38.627 435657 1761 243 0 10401 2025-03-19 15:20:00.878 2025-03-19 15:20:00.878 435657 1769 36 0 10402 2025-03-19 15:08:34.258 2025-03-19 15:08:34.258 435657 1784 12 0 10403 2025-03-19 15:18:18.367 2025-03-19 15:18:18.367 435657 1802 8 0 10404 2025-03-19 15:31:49.973 2025-03-19 19:03:05.865 435657 1890 30 0 10405 2025-03-19 15:08:35.004 2025-03-19 15:08:35.004 435657 2156 12 0 10406 2025-03-19 14:34:16.159 2025-03-19 14:34:16.159 435657 2674 8 0 10407 2025-03-19 14:34:16.159 2025-03-19 14:34:16.159 435657 2776 75 0 10408 2025-03-19 15:30:58.349 2025-03-19 15:30:58.349 435657 4177 21 0 10409 2025-03-19 15:31:49.71 2025-03-19 15:31:49.71 435657 4259 2 0 10410 2025-03-19 14:34:16.421 2025-03-19 14:34:16.421 435657 4633 8 0 10411 2025-03-19 14:50:33.765 2025-03-19 14:50:33.765 435657 5495 2 0 10412 2025-03-19 15:31:50.05 2025-03-19 15:31:50.05 435657 6149 2 0 10413 2025-03-20 04:25:18.558 2025-03-20 04:25:18.558 435657 6202 10 0 10414 2025-03-19 17:26:37.839 2025-03-19 17:26:37.839 435657 6268 19 0 10415 2025-03-19 14:34:16.006 2025-03-19 14:34:16.006 435657 6602 8 0 10416 2025-03-19 15:31:50.05 2025-03-19 15:31:50.05 435657 7580 21 0 10417 2025-03-19 18:20:28.528 2025-03-19 18:20:28.528 435657 7583 5 0 10418 2025-03-19 14:34:16.293 2025-03-19 15:30:57.098 435657 7869 11 0 10419 2025-03-19 15:18:18.367 2025-03-19 15:18:18.367 435657 7877 1 0 10420 2025-03-19 19:35:10.609 2025-03-19 19:35:10.609 435657 7891 1 0 10421 2025-03-19 15:09:29.431 2025-03-19 15:09:29.431 435657 8242 10 0 10422 2025-03-19 15:31:49.71 2025-03-19 15:31:49.71 435657 8287 21 0 10423 2025-03-19 15:41:52.992 2025-03-19 15:41:52.992 435657 8423 1 0 10424 2025-03-19 18:43:16.973 2025-03-19 18:43:16.973 435657 9183 1 0 10425 2025-03-19 15:31:49.869 2025-03-19 15:31:49.869 435657 9276 2 0 10426 2025-03-19 15:20:00.878 2025-03-19 15:20:00.878 435657 9330 4 0 10427 2025-03-19 15:41:53.287 2025-03-19 15:41:53.287 435657 9352 1 0 10428 2025-03-19 16:36:08.718 2025-03-19 16:36:08.718 435657 9364 9 0 10429 2025-03-19 15:30:53.405 2025-03-19 15:30:53.405 435657 9669 7 0 10430 2025-03-19 15:30:57.098 2025-03-19 15:30:58.512 435657 9758 23 0 10431 2025-03-19 17:26:37.839 2025-03-19 17:26:37.839 435657 10311 2 0 10432 2025-03-19 19:03:05.865 2025-03-19 19:03:05.865 435657 10818 1 0 10433 2025-03-19 14:34:16.293 2025-03-19 14:34:16.293 435657 11158 75 0 10434 2025-03-19 15:30:58.024 2025-03-19 15:30:58.024 435657 11263 21 0 10435 2025-03-19 15:18:18.168 2025-03-19 15:18:18.168 435657 11328 0 0 10436 2025-03-19 15:30:58.512 2025-03-19 22:40:50.526 435657 11450 34 0 10437 2025-03-19 14:34:18.686 2025-03-19 14:34:18.686 435657 11714 75 0 10438 2025-03-19 15:30:57.602 2025-03-19 15:30:57.602 435657 11798 21 0 10439 2025-03-19 15:30:57.446 2025-03-19 15:30:57.446 435657 11866 2 0 10440 2025-03-19 15:18:18.168 2025-03-19 15:30:56.976 435657 11938 22 0 10441 2025-03-19 15:41:53.142 2025-03-19 15:41:53.142 435657 12057 1 0 10442 2025-03-19 23:55:39.075 2025-03-19 23:55:39.075 435657 12245 1 0 10443 2025-03-19 14:50:33.765 2025-03-19 14:50:33.765 435657 12935 19 0 10444 2025-03-19 15:32:17.449 2025-03-19 15:32:17.449 435657 12946 1 0 10445 2025-03-19 17:11:38.87 2025-03-19 17:11:38.87 435657 13133 2 0 10446 2025-03-19 14:34:20.231 2025-03-19 14:34:20.231 435657 13143 75 0 10447 2025-03-19 23:55:39.075 2025-03-19 23:55:39.075 435657 13399 5 0 10448 2025-03-19 14:34:17.392 2025-03-19 15:09:29.431 435657 13622 76 0 10449 2025-03-20 05:02:12.265 2025-03-20 05:02:12.265 435657 14260 9 0 10450 2025-03-19 16:32:08.842 2025-03-19 16:32:08.842 435657 14607 19 0 10451 2025-03-20 02:43:40.462 2025-03-20 02:43:40.462 435657 15052 4 0 10452 2025-03-19 22:15:58.958 2025-03-19 22:15:58.958 435657 15192 2 0 10453 2025-03-19 15:31:49.973 2025-03-19 15:31:49.973 435657 15196 2 0 10454 2025-03-19 22:40:50.526 2025-03-19 22:40:50.526 435657 15273 115 0 10455 2025-03-19 19:29:55.051 2025-03-19 19:29:55.051 435657 15549 1 0 10456 2025-03-20 05:02:12.265 2025-03-20 05:02:12.265 435657 15925 1 0 10457 2025-03-19 14:34:17.206 2025-03-19 14:34:17.724 435657 16289 149 0 10458 2025-03-19 14:34:16.928 2025-03-19 14:34:16.928 435657 16347 8 0 10459 2025-03-19 14:34:16.421 2025-03-19 14:34:16.421 435657 16424 75 0 10460 2025-03-19 15:30:57.263 2025-03-19 15:30:57.263 435657 16556 21 0 10461 2025-03-19 15:30:58.165 2025-03-19 15:30:58.165 435657 16667 21 0 10462 2025-03-19 18:36:47.234 2025-03-19 18:36:47.234 435657 16724 1 0 10463 2025-03-19 14:34:17.591 2025-03-19 18:43:16.973 435657 16754 17 0 10464 2025-03-19 15:08:34.258 2025-03-19 15:08:34.258 435657 17212 1 0 10465 2025-03-19 15:31:50.179 2025-03-19 15:31:50.179 435657 17526 21 0 10466 2025-03-19 16:36:08.718 2025-03-19 16:36:08.718 435657 17673 1 0 10467 2025-03-19 14:34:16.565 2025-03-19 14:34:16.565 435657 17824 8 0 10468 2025-03-19 14:34:18.333 2025-03-19 14:34:18.333 435657 18232 75 0 10469 2025-03-19 15:30:57.263 2025-03-19 15:30:57.263 435657 18309 2 0 10470 2025-03-19 15:31:49.869 2025-03-19 15:31:49.869 435657 18321 21 0 10471 2025-03-19 18:20:28.528 2025-03-19 18:20:28.528 435657 18494 1 0 10472 2025-03-19 15:30:58.349 2025-03-19 15:30:58.349 435657 18533 2 0 10473 2025-03-19 14:34:18.968 2025-03-19 14:34:18.968 435657 18608 8 0 10474 2025-03-19 14:34:17.591 2025-03-19 14:34:17.591 435657 18615 75 0 10475 2025-03-19 15:30:53.405 2025-03-19 15:30:53.405 435657 18930 1 0 10476 2025-03-19 15:08:35.004 2025-03-19 15:08:35.004 435657 19821 1 0 10477 2025-03-19 14:34:17.724 2025-03-19 14:34:17.724 435657 19930 8 0 10478 2025-03-19 15:41:52.992 2025-03-19 15:41:52.992 435657 20280 10 0 10479 2025-03-19 15:41:53.142 2025-03-19 15:41:53.142 435657 20381 10 0 10480 2025-03-19 14:34:18.968 2025-03-19 14:34:18.968 435657 20434 75 0 10481 2025-03-19 22:15:58.958 2025-03-19 22:15:58.958 435657 20450 19 0 10482 2025-03-19 15:58:38.627 2025-03-19 15:58:38.627 435657 20636 27 0 10483 2025-03-19 14:34:17.92 2025-03-19 14:34:17.92 435657 20674 75 0 10484 2025-03-19 14:34:16.928 2025-03-19 14:34:16.928 435657 20680 75 0 10485 2025-03-19 14:34:20.231 2025-03-19 14:34:20.231 435657 20706 8 0 10486 2025-03-19 15:32:17.449 2025-03-19 15:32:17.449 435657 20734 9 0 10487 2025-03-19 15:58:37.048 2025-03-19 15:58:37.048 435657 20778 3 0 10488 2025-03-19 14:34:18.909 2025-03-19 14:34:18.909 435657 20825 75 0 10489 2025-03-19 19:35:10.609 2025-03-19 19:35:10.609 435657 20864 9 0 10490 2025-03-19 14:34:18.909 2025-03-19 14:34:18.909 435657 21090 8 0 10491 2025-03-19 15:30:58.165 2025-03-19 15:30:58.165 435657 21184 2 0 10492 2025-03-19 15:30:58.024 2025-03-19 15:30:58.024 435657 21296 2 0 10493 2025-03-19 17:11:38.87 2025-03-19 17:11:38.87 435657 21413 19 0 10494 2025-03-19 14:34:17.206 2025-03-19 14:34:17.206 435657 21501 8 0 10495 2025-03-19 19:53:52.823 2025-03-19 19:53:52.823 435657 21571 30 0 10496 2025-03-19 14:34:17.392 2025-03-19 14:34:17.392 435657 21639 8 0 10497 2025-03-19 14:33:10.158 2025-03-19 14:33:10.158 435658 1046 1 0 10498 2025-03-19 14:32:20.496 2025-03-19 14:32:20.496 435658 4287 1 0 10499 2025-03-19 14:33:09.697 2025-03-19 14:33:09.697 435658 13162 9 0 10500 2025-03-19 14:33:09.697 2025-03-19 14:33:09.697 435658 14080 1 0 10501 2025-03-19 14:33:09.997 2025-03-19 14:33:09.997 435658 15762 1 0 10502 2025-03-19 14:33:10.158 2025-03-19 14:33:10.158 435658 16270 9 0 10503 2025-03-19 14:33:09.997 2025-03-19 14:33:09.997 435658 18557 9 0 10504 2025-03-19 14:32:57.725 2025-03-19 14:32:57.725 435659 4776 10 0 10505 2025-03-19 14:33:20.051 2025-03-19 14:33:20.051 435660 1469 1 0 10506 2025-03-19 14:35:02.218 2025-03-19 14:35:02.218 435661 6555 1 0 10507 2025-03-19 17:07:15.681 2025-03-19 17:07:15.681 435661 8380 19 0 10508 2025-03-19 17:07:15.681 2025-03-19 17:07:15.681 435661 16950 2 0 10509 2025-03-19 14:35:18.195 2025-03-19 14:35:18.195 435662 1817 1 0 10510 2025-03-19 14:37:49.913 2025-03-19 14:37:49.913 435662 5870 18 0 10511 2025-03-19 14:37:49.913 2025-03-19 14:37:49.913 435662 17592 2 0 10512 2025-03-20 04:27:23.896 2025-03-20 04:27:23.896 435663 960 3 0 10513 2025-03-19 18:45:52.182 2025-03-19 18:45:52.182 435663 987 38 0 10514 2025-03-19 14:57:51.86 2025-03-19 14:57:51.86 435663 1493 23 0 10515 2025-03-19 16:15:10.174 2025-03-19 16:15:10.174 435663 1519 9 0 10516 2025-03-19 19:16:50.214 2025-03-19 19:16:50.214 435663 2347 10 0 10517 2025-03-20 04:27:22.228 2025-03-20 04:27:22.228 435663 2735 24 0 10518 2025-03-20 04:27:22.992 2025-03-20 04:27:22.992 435663 4250 3 0 10519 2025-03-19 23:43:03.826 2025-03-19 23:43:03.826 435663 4602 1 0 10520 2025-03-20 04:27:23.896 2025-03-20 04:27:23.896 435663 5195 24 0 10521 2025-03-19 14:36:06.395 2025-03-19 22:10:25.5 435663 5597 2 0 10522 2025-03-20 04:27:23.747 2025-03-20 04:27:23.747 435663 5852 24 0 10523 2025-03-20 04:27:22.803 2025-03-20 04:27:22.803 435663 6717 24 0 10524 2025-03-20 04:27:23.542 2025-03-20 04:27:23.542 435663 7425 3 0 10525 2025-03-19 19:08:10.254 2025-03-19 19:08:10.254 435663 7682 9 0 10526 2025-03-20 04:27:22.608 2025-03-20 04:27:22.608 435663 8469 3 0 10527 2025-03-20 04:27:22.992 2025-03-20 04:27:22.992 435663 9261 24 0 10528 2025-03-20 04:27:22.608 2025-03-20 04:27:22.608 435663 9845 24 0 10529 2025-03-19 16:15:10.174 2025-03-19 16:15:10.174 435663 12946 1 0 10530 2025-03-20 04:27:23.747 2025-03-20 04:27:23.747 435663 13132 3 0 10531 2025-03-20 04:27:23.167 2025-03-20 04:27:23.167 435663 14552 3 0 10532 2025-03-19 14:57:51.86 2025-03-19 14:57:51.86 435663 14688 3 0 10533 2025-03-19 18:45:52.182 2025-03-19 18:45:52.182 435663 15192 4 0 10534 2025-03-19 22:43:13.892 2025-03-19 22:43:13.892 435663 15408 2 0 10535 2025-03-19 19:08:10.254 2025-03-19 19:08:10.254 435663 15662 1 0 10536 2025-03-19 22:10:25.5 2025-03-19 22:10:25.5 435663 16348 0 0 10537 2025-03-20 04:27:22.803 2025-03-20 04:27:22.803 435663 17708 3 0 10538 2025-03-19 19:16:50.214 2025-03-19 19:16:50.214 435663 17976 91 0 10539 2025-03-20 04:27:23.375 2025-03-20 04:27:23.375 435663 18526 3 0 10540 2025-03-20 04:27:23.167 2025-03-20 04:27:23.167 435663 19016 24 0 10541 2025-03-20 04:27:23.375 2025-03-20 04:27:23.375 435663 19759 24 0 10542 2025-03-19 23:43:03.826 2025-03-19 23:43:03.826 435663 19943 9 0 10543 2025-03-20 04:27:22.048 2025-03-20 04:27:22.048 435663 20133 3 0 10544 2025-03-20 04:27:22.422 2025-03-20 04:27:22.422 435663 20222 24 0 10545 2025-03-20 04:27:23.542 2025-03-20 04:27:23.542 435663 20826 24 0 10546 2025-03-20 04:27:22.422 2025-03-20 04:27:22.422 435663 21480 3 0 10547 2025-03-19 22:43:13.892 2025-03-19 22:43:13.892 435663 21494 19 0 10548 2025-03-20 04:27:22.228 2025-03-20 04:27:22.228 435663 21522 3 0 10549 2025-03-20 04:27:22.048 2025-03-20 04:27:22.048 435663 21532 24 0 10550 2025-03-19 14:56:44.751 2025-03-19 14:56:44.751 435664 10849 1 0 10551 2025-03-19 14:38:06.267 2025-03-19 14:38:06.267 435664 20603 1 0 10552 2025-03-19 14:56:44.751 2025-03-19 14:56:44.751 435664 20701 9 0 10553 2025-03-19 14:41:37.448 2025-03-19 14:41:37.448 435665 2741 100 0 10554 2025-03-19 16:25:38.665 2025-03-19 16:25:38.665 435665 9796 0 0 10555 2025-03-19 16:31:24.569 2025-03-19 16:31:24.569 435665 12222 3 0 10556 2025-03-19 16:25:38.665 2025-03-19 16:25:38.665 435665 13566 1 0 10557 2025-03-19 14:43:32.756 2025-03-19 14:43:32.756 435665 14376 3 0 10558 2025-03-19 14:43:32.756 2025-03-19 14:43:32.756 435665 14663 23 0 10559 2025-03-19 16:31:24.569 2025-03-19 16:31:24.569 435665 18241 23 0 10560 2025-03-19 14:41:47.929 2025-03-19 14:41:47.929 435666 1718 1 0 10561 2025-03-20 00:21:52.709 2025-03-20 00:21:52.709 435666 5427 9 0 10562 2025-03-19 15:21:00.787 2025-03-19 15:21:00.787 435666 10291 90 0 10563 2025-03-19 15:21:00.787 2025-03-19 15:21:00.787 435666 12422 10 0 10564 2025-03-20 00:21:52.709 2025-03-20 00:21:52.709 435666 20275 1 0 10565 2025-03-19 14:46:20.515 2025-03-19 14:46:20.515 435667 2508 21 0 10566 2025-03-19 22:16:25.231 2025-03-19 22:16:25.231 435667 2710 2 0 10567 2025-03-19 19:42:21.579 2025-03-19 19:42:21.579 435667 2963 9 0 10568 2025-03-19 19:18:16.415 2025-03-19 19:18:16.415 435667 5761 2 0 10569 2025-03-19 19:12:39.079 2025-03-19 19:12:39.079 435667 16965 19 0 10570 2025-03-19 19:42:21.579 2025-03-19 19:42:21.579 435667 17091 1 0 10571 2025-03-19 22:16:25.231 2025-03-19 22:16:25.231 435667 17411 19 0 10572 2025-03-19 19:18:16.415 2025-03-19 19:18:16.415 435667 17570 19 0 10573 2025-03-19 19:12:39.079 2025-03-19 19:12:39.079 435667 19198 2 0 10574 2025-03-19 22:17:56.603 2025-03-19 22:17:56.603 435668 2963 19 0 10575 2025-03-19 14:54:37.224 2025-03-19 14:54:37.224 435668 9337 1 0 10576 2025-03-19 22:17:56.603 2025-03-19 22:17:56.603 435668 20555 2 0 10577 2025-03-19 19:00:43.396 2025-03-19 19:00:43.396 435669 986 90 0 10578 2025-03-19 19:00:43.396 2025-03-19 19:00:43.396 435669 5171 10 0 10579 2025-03-19 21:09:43.264 2025-03-19 21:09:43.264 435669 7869 180 0 10580 2025-03-20 08:04:28.819 2025-03-20 08:04:28.819 435669 8954 1 0 10581 2025-03-19 14:59:22.245 2025-03-19 14:59:22.245 435669 14688 0 0 10582 2025-03-19 14:58:53.423 2025-03-19 14:58:53.423 435669 19417 0 0 10583 2025-03-20 08:04:28.819 2025-03-20 08:04:28.819 435669 20778 0 0 10584 2025-03-19 14:55:23.008 2025-03-19 14:55:23.008 435669 21532 1 0 10585 2025-03-19 21:09:43.264 2025-03-19 21:09:43.264 435669 21685 20 0 10586 2025-03-19 14:58:42.061 2025-03-19 14:58:42.061 435670 8472 0 0 10587 2025-03-19 14:56:18.462 2025-03-19 14:56:18.462 435670 16684 1 0 10588 2025-03-19 14:56:41.29 2025-03-19 14:56:41.29 435671 9552 21 0 10589 2025-03-19 22:16:23.263 2025-03-19 22:16:23.263 435671 17535 19 0 10590 2025-03-19 22:16:23.263 2025-03-19 22:16:23.263 435671 20840 2 0 10591 2025-03-19 14:56:44.919 2025-03-19 14:56:44.919 435672 21442 1 0 10592 2025-03-19 15:00:57.257 2025-03-19 15:00:57.257 435673 16351 0 0 10593 2025-03-19 14:58:56.625 2025-03-19 14:58:56.625 435673 19463 100 0 10594 2025-03-19 19:42:37.7 2025-03-19 19:42:37.7 435674 1784 1 0 10595 2025-03-19 19:18:12.823 2025-03-19 19:18:12.823 435674 10056 2 0 10596 2025-03-19 14:59:22.897 2025-03-19 14:59:22.897 435674 18269 1 0 10597 2025-03-19 19:42:37.7 2025-03-19 19:42:37.7 435674 20881 9 0 10598 2025-03-19 19:18:12.823 2025-03-19 19:18:12.823 435674 21577 19 0 10599 2025-03-19 15:00:11.296 2025-03-19 15:00:11.296 435675 940 10 0 10600 2025-03-20 08:17:37.315 2025-03-20 08:17:37.315 435675 2328 2 0 10601 2025-03-20 08:17:37.315 2025-03-20 08:17:37.315 435675 16356 19 0 10602 2025-03-19 15:03:20.243 2025-03-19 15:03:20.243 435676 964 0 0 10603 2025-03-19 17:12:08.824 2025-03-19 17:12:08.824 435676 6382 0 0 10604 2025-03-19 17:12:09.045 2025-03-19 17:12:09.045 435676 10311 8 0 10605 2025-03-19 15:02:45.357 2025-03-19 15:02:45.357 435676 16816 1 0 10606 2025-03-19 17:12:08.824 2025-03-19 17:12:08.824 435676 21062 1 0 10607 2025-03-19 17:12:09.045 2025-03-19 17:12:09.045 435676 21391 1 0 10608 2025-03-19 15:17:58.086 2025-03-19 15:17:58.086 435677 666 0 0 10609 2025-03-19 15:17:58.735 2025-03-19 15:17:58.735 435677 797 3 0 10610 2025-03-19 15:17:57.911 2025-03-19 15:17:57.911 435677 798 0 0 10611 2025-03-19 15:17:58.258 2025-03-19 15:17:58.258 435677 803 3 0 10612 2025-03-19 15:17:58.887 2025-03-19 15:17:58.887 435677 1638 0 0 10613 2025-03-19 15:33:14.963 2025-03-19 15:33:14.963 435677 1673 9 0 10614 2025-03-19 15:17:57.911 2025-03-19 15:17:57.911 435677 1802 3 0 10615 2025-03-19 15:33:14.963 2025-03-19 15:33:14.963 435677 3478 1 0 10616 2025-03-19 15:17:58.417 2025-03-19 15:17:58.417 435677 3504 0 0 10617 2025-03-19 15:17:58.258 2025-03-19 15:17:58.258 435677 9758 0 0 10618 2025-03-19 15:17:58.887 2025-03-19 15:17:58.887 435677 10291 3 0 10619 2025-03-19 15:17:58.417 2025-03-19 15:17:58.417 435677 13398 3 0 10620 2025-03-19 15:17:58.086 2025-03-19 15:17:58.086 435677 15858 3 0 10621 2025-03-19 15:17:58.564 2025-03-19 15:17:58.564 435677 17541 3 0 10622 2025-03-19 15:17:58.735 2025-03-19 15:17:58.735 435677 19193 0 0 10623 2025-03-19 15:17:58.564 2025-03-19 15:17:58.564 435677 20436 0 0 10624 2025-03-19 15:03:20.537 2025-03-19 15:03:20.537 435677 20616 1 0 10625 2025-03-19 15:17:57.809 2025-03-19 15:17:57.809 435677 21287 3 0 10626 2025-03-19 15:17:57.809 2025-03-19 15:17:57.809 435677 21373 0 0 10627 2025-03-20 07:01:58.824 2025-03-20 07:01:58.824 435678 684 1 0 10628 2025-03-20 07:01:58.824 2025-03-20 07:01:58.824 435678 1620 9 0 10629 2025-03-19 15:24:39.411 2025-03-19 15:24:39.411 435678 6136 1 0 10630 2025-03-20 00:50:37.1 2025-03-20 00:50:37.1 435678 8080 45 0 10631 2025-03-20 00:50:37.1 2025-03-20 00:50:37.1 435678 9084 5 0 10632 2025-03-19 15:03:39.294 2025-03-19 15:03:39.294 435678 16097 1 0 10633 2025-03-20 07:01:58.598 2025-03-20 07:01:58.598 435678 20182 1 0 10634 2025-03-19 15:24:39.411 2025-03-19 15:24:39.411 435678 20409 0 0 10635 2025-03-20 07:01:58.598 2025-03-20 07:01:58.598 435678 21338 9 0 10636 2025-03-19 15:36:09.82 2025-03-19 15:36:09.82 435679 787 2 0 10637 2025-03-19 19:12:23.523 2025-03-19 19:12:23.523 435679 1012 19 0 10638 2025-03-19 18:12:18.256 2025-03-19 18:12:18.256 435679 1236 2 0 10639 2025-03-19 15:11:01.463 2025-03-19 15:11:01.463 435679 2176 27 0 10640 2025-03-19 17:46:22.695 2025-03-19 17:46:22.695 435679 2780 30 0 10641 2025-03-19 18:12:18.256 2025-03-19 18:12:18.256 435679 3706 18 0 10642 2025-03-19 17:46:23.15 2025-03-19 17:46:23.15 435679 4083 3 0 10643 2025-03-19 16:32:25.886 2025-03-19 16:32:25.886 435679 6393 19 0 10644 2025-03-19 16:32:25.886 2025-03-19 16:32:25.886 435679 7185 2 0 10645 2025-03-19 15:03:42.154 2025-03-19 15:03:42.154 435679 7659 100 0 10646 2025-03-19 18:12:21.966 2025-03-19 18:12:21.966 435679 10484 18 0 10647 2025-03-19 17:46:22.695 2025-03-19 17:46:22.695 435679 10554 3 0 10648 2025-03-19 18:12:20.076 2025-03-19 18:12:20.076 435679 12490 2 0 10649 2025-03-19 18:12:21.966 2025-03-19 18:12:21.966 435679 12561 2 0 10650 2025-03-19 19:33:56.032 2025-03-19 19:33:56.032 435679 13076 10 0 10651 2025-03-19 19:12:23.523 2025-03-19 19:12:23.523 435679 13544 2 0 10652 2025-03-19 15:18:29.884 2025-03-19 15:18:29.884 435679 13921 8 0 10653 2025-03-19 17:46:23.15 2025-03-19 17:46:23.15 435679 14376 30 0 10654 2025-03-19 15:18:29.719 2025-03-19 15:18:29.719 435679 14774 0 0 10655 2025-03-19 17:26:47.995 2025-03-19 17:26:47.995 435679 15045 2 0 10656 2025-03-19 17:46:23.82 2025-03-19 17:46:23.82 435679 15180 30 0 10657 2025-03-19 15:10:59.823 2025-03-19 15:10:59.823 435679 15488 3 0 10658 2025-03-19 15:17:46.611 2025-03-19 15:17:46.611 435679 15588 4 0 10659 2025-03-19 18:14:15.435 2025-03-19 18:14:15.435 435679 16347 19 0 10660 2025-03-19 15:10:59.823 2025-03-19 15:10:59.823 435679 16543 27 0 10661 2025-03-19 22:16:12.162 2025-03-19 22:16:12.162 435679 18271 19 0 10662 2025-03-19 19:33:56.032 2025-03-19 19:33:56.032 435679 18528 90 0 10663 2025-03-19 18:12:20.076 2025-03-19 18:12:20.076 435679 19637 18 0 10664 2025-03-19 15:11:01.463 2025-03-19 15:11:01.463 435679 19813 243 0 10665 2025-03-19 17:26:47.995 2025-03-19 17:26:47.995 435679 20133 19 0 10666 2025-03-19 17:46:23.82 2025-03-19 17:46:23.82 435679 20745 3 0 10667 2025-03-19 15:36:09.82 2025-03-19 15:36:09.82 435679 20788 14 0 10668 2025-03-19 15:18:29.719 2025-03-19 15:18:29.719 435679 21048 1 0 10669 2025-03-19 18:14:15.435 2025-03-19 18:14:15.435 435679 21275 2 0 10670 2025-03-19 15:18:29.884 2025-03-19 15:18:29.884 435679 21287 1 0 10671 2025-03-19 22:16:12.162 2025-03-19 22:16:12.162 435679 21427 2 0 10672 2025-03-19 15:17:46.611 2025-03-19 15:17:46.611 435679 21523 36 0 10673 2025-03-19 15:42:00.825 2025-03-19 15:42:00.825 435680 11798 10 0 10674 2025-03-19 15:04:50.77 2025-03-19 15:04:50.77 435680 11992 1 0 10675 2025-03-20 00:15:08.146 2025-03-20 00:15:08.146 435680 12870 9 0 10676 2025-03-20 00:15:08.146 2025-03-20 00:15:08.146 435680 16717 1 0 10677 2025-03-19 15:42:00.825 2025-03-19 15:42:00.825 435680 20858 90 0 10678 2025-03-19 15:38:25.207 2025-03-19 15:38:25.207 435681 2061 18 0 10679 2025-03-19 15:05:50.367 2025-03-19 15:05:50.367 435681 9438 1 0 10680 2025-03-19 15:38:25.207 2025-03-19 15:38:25.207 435681 17741 2 0 10681 2025-03-20 08:41:12.11 2025-03-20 08:41:12.11 435682 2609 9 0 10682 2025-03-20 08:41:11.293 2025-03-20 08:41:11.293 435682 5597 9 0 10683 2025-03-20 08:41:12.11 2025-03-20 08:41:12.11 435682 8469 1 0 10684 2025-03-20 08:41:11.293 2025-03-20 08:41:11.293 435682 16754 1 0 10685 2025-03-19 15:05:58.437 2025-03-19 15:05:58.437 435682 21714 10 0 10686 2025-03-19 15:06:56.867 2025-03-19 15:06:56.867 435683 16406 1 0 10687 2025-03-20 07:00:18.861 2025-03-20 07:00:18.861 435684 739 9 0 10688 2025-03-19 15:10:35.271 2025-03-19 15:10:35.271 435684 5694 3 0 10689 2025-03-19 15:07:22.404 2025-03-19 15:07:22.404 435684 13843 1 0 10690 2025-03-19 15:10:35.271 2025-03-19 15:10:35.271 435684 17727 27 0 10691 2025-03-20 07:00:18.861 2025-03-20 07:00:18.861 435684 20310 1 0 10692 2025-03-19 15:08:47.983 2025-03-19 15:08:47.983 435685 17064 10 0 10693 2025-03-19 15:09:26.489 2025-03-19 15:09:26.489 435685 21391 0 0 10694 2025-03-19 15:09:11.512 2025-03-19 15:09:11.512 435686 11873 1 0 10695 2025-03-20 00:20:43.003 2025-03-20 00:20:43.003 435687 1120 9 0 10696 2025-03-19 18:17:03.862 2025-03-19 18:17:03.862 435687 1478 5 0 10697 2025-03-20 00:20:43.003 2025-03-20 00:20:43.003 435687 2098 1 0 10698 2025-03-19 18:17:03.862 2025-03-19 18:17:03.862 435687 9351 45 0 10699 2025-03-19 15:54:55.646 2025-03-19 15:54:55.646 435687 10270 1 0 10700 2025-03-19 15:15:38.219 2025-03-19 15:15:38.219 435687 16042 1 0 10701 2025-03-19 17:46:47.332 2025-03-19 17:46:47.332 435687 16270 178 0 10702 2025-03-19 17:46:47.332 2025-03-19 17:46:47.332 435687 18321 20 0 10703 2025-03-19 15:16:56.309 2025-03-19 15:16:56.309 435687 21444 0 0 10704 2025-03-19 15:54:55.646 2025-03-19 15:54:55.646 435687 21571 0 0 10705 2025-03-20 00:15:05.8 2025-03-20 00:15:05.8 435688 5806 1 0 10706 2025-03-20 00:15:05.8 2025-03-20 00:15:05.8 435688 14959 9 0 10707 2025-03-19 15:16:36.263 2025-03-19 15:16:36.263 435688 21119 1 0 10708 2025-03-19 15:17:32.083 2025-03-19 15:17:32.083 435689 782 1 0 10709 2025-03-19 18:36:56.284 2025-03-19 18:36:56.284 435690 651 5 0 10710 2025-03-19 17:31:32.374 2025-03-19 17:31:32.374 435690 674 2 0 10711 2025-03-19 15:18:10.449 2025-03-19 15:18:10.449 435690 777 0 0 10712 2025-03-19 15:23:40.833 2025-03-19 15:23:40.833 435690 895 1 0 10713 2025-03-19 15:23:40.833 2025-03-19 15:23:40.833 435690 1009 9 0 10714 2025-03-19 19:10:48.797 2025-03-19 19:10:48.797 435690 1198 7 0 10715 2025-03-19 15:28:54.611 2025-03-19 15:28:54.611 435690 1261 10 0 10716 2025-03-19 15:17:57.387 2025-03-19 15:17:57.387 435690 1272 1 0 10717 2025-03-19 18:36:56.284 2025-03-19 18:36:56.284 435690 1474 1 0 10718 2025-03-19 15:17:57.212 2025-03-19 15:17:57.212 435690 1960 1 0 10719 2025-03-19 16:32:19.479 2025-03-19 16:32:19.479 435690 1983 19 0 10720 2025-03-19 19:10:48.797 2025-03-19 19:10:48.797 435690 3371 64 0 10721 2025-03-19 15:17:36.417 2025-03-19 15:17:36.417 435690 4259 100 0 10722 2025-03-19 17:31:35.379 2025-03-19 17:31:35.379 435690 5306 2 0 10723 2025-03-19 16:45:25.92 2025-03-19 16:45:25.92 435690 5759 1 0 10724 2025-03-19 16:32:19.479 2025-03-19 16:32:19.479 435690 5779 2 0 10725 2025-03-19 17:31:32.374 2025-03-19 17:31:32.374 435690 6573 19 0 10726 2025-03-19 17:26:44.72 2025-03-19 17:26:44.72 435690 6653 19 0 10727 2025-03-19 17:26:44.72 2025-03-19 17:26:44.72 435690 7913 2 0 10728 2025-03-20 08:12:48.758 2025-03-20 08:12:48.758 435690 9758 19 0 10729 2025-03-19 15:17:57.387 2025-03-19 15:17:57.387 435690 9969 8 0 10730 2025-03-19 15:19:42.668 2025-03-19 15:19:42.668 435690 11897 4 0 10731 2025-03-19 15:17:57.212 2025-03-19 15:17:57.212 435690 12220 0 0 10732 2025-03-19 16:45:25.92 2025-03-19 16:45:25.92 435690 16336 0 0 10733 2025-03-20 08:12:48.758 2025-03-20 08:12:48.758 435690 17522 2 0 10734 2025-03-19 17:31:35.379 2025-03-19 17:31:35.379 435690 20152 19 0 10735 2025-03-19 19:38:35.346 2025-03-19 19:38:35.346 435690 20481 9 0 10736 2025-03-19 15:28:54.611 2025-03-19 15:28:54.611 435690 20911 1 0 10737 2025-03-19 19:38:35.346 2025-03-19 19:38:35.346 435690 21062 1 0 10738 2025-03-19 15:17:58.024 2025-03-19 15:17:58.024 435690 21140 9 0 10739 2025-03-19 15:19:42.668 2025-03-19 15:19:42.668 435690 21228 36 0 10740 2025-03-19 15:17:58.024 2025-03-19 15:17:58.024 435690 21501 81 0 10741 2025-03-19 15:22:20.591 2025-03-19 15:22:20.591 435691 1493 115 0 10742 2025-03-19 15:22:20.591 2025-03-19 15:22:20.591 435691 9332 13 0 10743 2025-03-19 15:17:59.042 2025-03-19 15:17:59.042 435691 21526 1 0 10744 2025-03-19 15:18:44.964 2025-03-19 15:18:44.964 435692 828 0 0 10745 2025-03-19 15:18:07.951 2025-03-19 15:18:07.951 435692 8004 1 0 10746 2025-03-19 15:29:08.696 2025-03-19 15:29:08.696 435692 17209 10 0 10747 2025-03-19 15:29:08.696 2025-03-19 15:29:08.696 435692 18402 1 0 10748 2025-03-20 03:52:52.935 2025-03-20 03:52:52.935 435693 678 2 0 10749 2025-03-20 03:52:52.935 2025-03-20 03:52:52.935 435693 1733 19 0 10750 2025-03-19 15:21:56.924 2025-03-19 15:21:56.924 435693 9552 1 0 10751 2025-03-19 15:22:40.163 2025-03-19 15:22:40.163 435694 1833 1 0 10752 2025-03-19 15:39:36.198 2025-03-19 15:39:36.198 435694 14278 27 0 10753 2025-03-19 15:39:36.198 2025-03-19 15:39:36.198 435694 16456 3 0 10754 2025-03-19 19:34:16.683 2025-03-19 19:34:16.683 435695 713 4 0 10755 2025-03-19 19:34:24.841 2025-03-19 19:34:24.841 435695 746 36 0 10756 2025-03-19 15:22:58.082 2025-03-19 15:22:58.082 435695 7827 21 0 10757 2025-03-19 19:42:10.622 2025-03-19 19:42:10.622 435695 11450 1 0 10758 2025-03-19 22:16:22.251 2025-03-19 22:16:22.251 435695 19333 19 0 10759 2025-03-19 22:16:22.251 2025-03-19 22:16:22.251 435695 19512 2 0 10760 2025-03-19 19:34:16.683 2025-03-19 19:34:16.683 435695 20019 36 0 10761 2025-03-19 19:34:24.841 2025-03-19 19:34:24.841 435695 20755 324 0 10762 2025-03-19 19:42:10.622 2025-03-19 19:42:10.622 435695 21248 9 0 10763 2025-03-19 15:26:21.985 2025-03-19 15:26:21.985 435696 14015 10 0 10764 2025-03-19 19:12:14.784 2025-03-19 19:12:14.784 435697 998 19 0 10765 2025-03-19 17:59:41.583 2025-03-19 17:59:41.583 435697 1713 10 0 10766 2025-03-19 23:44:35.574 2025-03-19 23:44:35.574 435697 1823 19 0 10767 2025-03-19 23:44:35.574 2025-03-19 23:44:35.574 435697 5759 2 0 10768 2025-03-19 17:59:41.583 2025-03-19 17:59:41.583 435697 5809 90 0 10769 2025-03-19 19:12:14.784 2025-03-19 19:12:14.784 435697 6030 2 0 10770 2025-03-19 16:02:41.791 2025-03-19 16:02:41.791 435697 6765 9 0 10771 2025-03-19 16:02:41.791 2025-03-19 16:02:41.791 435697 7772 1 0 10772 2025-03-19 15:27:49.758 2025-03-19 15:27:49.758 435697 9992 21 0 10773 2025-03-19 15:30:25.218 2025-03-19 15:30:25.218 435698 660 1 0 10774 2025-03-19 15:30:25.395 2025-03-19 15:30:25.395 435698 2670 9 0 10775 2025-03-19 15:30:25.218 2025-03-19 15:30:25.218 435698 8287 9 0 10776 2025-03-19 15:30:25.023 2025-03-19 15:30:25.023 435698 16276 9 0 10777 2025-03-19 15:28:51.323 2025-03-19 15:28:51.323 435698 16695 1 0 10778 2025-03-19 15:30:25.555 2025-03-19 15:30:25.555 435698 18068 1 0 10779 2025-03-19 15:30:25.395 2025-03-19 15:30:25.395 435698 21248 1 0 10780 2025-03-19 15:30:25.555 2025-03-19 15:30:25.555 435698 21320 9 0 10781 2025-03-19 15:30:25.023 2025-03-19 15:30:25.023 435698 21670 1 0 10782 2025-03-20 00:20:52.119 2025-03-20 00:20:52.119 435699 861 9 0 10783 2025-03-20 00:20:52.119 2025-03-20 00:20:52.119 435699 4128 1 0 10784 2025-03-19 15:28:58.597 2025-03-19 15:28:58.597 435699 20624 1 0 10785 2025-03-19 15:29:52.54 2025-03-19 15:29:52.54 435700 9183 0 0 10786 2025-03-19 15:29:28.059 2025-03-19 15:29:28.059 435700 9529 1 0 10787 2025-03-19 15:36:15.543 2025-03-19 15:36:15.543 435701 4459 2 0 10788 2025-03-19 15:36:15.543 2025-03-19 15:36:15.543 435701 10608 19 0 10789 2025-03-19 15:29:44.102 2025-03-19 15:29:44.102 435701 20291 1 0 10790 2025-03-19 15:30:26.382 2025-03-19 15:30:26.382 435702 2329 1 0 10791 2025-03-19 15:30:41.059 2025-03-19 15:30:41.059 435703 15690 1 0 10792 2025-03-19 15:31:46.284 2025-03-19 15:31:46.284 435704 1162 0 0 10793 2025-03-19 16:59:57.504 2025-03-19 16:59:57.504 435704 2000 0 0 10794 2025-03-19 16:59:57.718 2025-03-19 16:59:57.718 435704 2514 8 0 10795 2025-03-19 16:59:57.718 2025-03-19 16:59:57.718 435704 3371 1 0 10796 2025-03-19 16:59:58.517 2025-03-19 16:59:58.517 435704 4238 9 0 10797 2025-03-19 18:38:17.255 2025-03-19 18:38:17.255 435704 4250 19 0 10798 2025-03-19 16:59:57.504 2025-03-19 16:59:57.504 435704 4459 1 0 10799 2025-03-19 16:59:58.517 2025-03-19 16:59:58.517 435704 11716 81 0 10800 2025-03-19 18:38:17.255 2025-03-19 18:38:17.255 435704 17953 2 0 10801 2025-03-19 15:31:33.223 2025-03-19 15:31:33.223 435704 21349 1 0 10802 2025-03-19 15:33:10.333 2025-03-19 15:33:10.333 435705 7992 1 0 10803 2025-03-19 15:35:21.442 2025-03-19 15:35:21.442 435706 13055 1 0 10804 2025-03-19 15:35:21.442 2025-03-19 15:35:21.442 435706 20137 9 0 10805 2025-03-19 15:34:23.898 2025-03-19 15:34:23.898 435706 21079 1 0 10806 2025-03-19 15:34:31.043 2025-03-19 15:34:31.043 435707 794 1 0 10807 2025-03-19 18:17:08.937 2025-03-19 18:17:08.937 435707 20563 5 0 10808 2025-03-19 18:17:08.937 2025-03-19 18:17:08.937 435707 21334 45 0 10809 2025-03-19 18:17:09.716 2025-03-19 18:17:09.716 435707 21338 5 0 10810 2025-03-19 18:17:09.716 2025-03-19 18:17:09.716 435707 21805 45 0 10811 2025-03-19 16:19:00.54 2025-03-19 16:19:00.54 435708 7966 4 0 10812 2025-03-19 16:45:58.604 2025-03-19 16:45:58.604 435708 9347 0 0 10813 2025-03-19 16:19:00.54 2025-03-19 16:19:00.54 435708 17526 0 0 10814 2025-03-19 16:45:58.604 2025-03-19 16:45:58.604 435708 19857 1 0 10815 2025-03-19 15:36:44.3 2025-03-19 15:36:44.3 435708 21798 1 0 10816 2025-03-19 15:39:36.882 2025-03-19 15:39:36.882 435709 5036 0 0 10817 2025-03-19 22:44:59.927 2025-03-19 22:44:59.927 435709 5557 13 0 10818 2025-03-19 15:39:29.519 2025-03-19 15:39:29.519 435709 16447 1 0 10819 2025-03-19 22:44:59.927 2025-03-19 22:44:59.927 435709 20434 115 0 10820 2025-03-19 15:40:56.817 2025-03-19 15:40:56.817 435710 7983 1 0 10821 2025-03-19 15:41:13.297 2025-03-19 15:41:13.297 435710 8870 0 0 10822 2025-03-20 10:14:20.17 2025-03-20 10:14:20.17 435711 663 2 0 10823 2025-03-19 19:12:47.728 2025-03-19 19:12:47.728 435711 686 90 0 10824 2025-03-19 16:59:51.034 2025-03-19 16:59:51.034 435711 716 1 0 10825 2025-03-19 18:38:18.517 2025-03-19 18:38:18.517 435711 900 2 0 10826 2025-03-19 16:29:28.182 2025-03-19 16:29:28.182 435711 1236 21 0 10827 2025-03-20 08:32:32.483 2025-03-20 08:32:32.483 435711 2757 7 0 10828 2025-03-19 20:58:56.979 2025-03-19 20:58:56.979 435711 4287 2 0 10829 2025-03-19 19:12:47.728 2025-03-19 19:12:47.728 435711 5017 10 0 10830 2025-03-19 16:29:29.497 2025-03-19 16:29:29.497 435711 6160 2 0 10831 2025-03-19 16:29:29.497 2025-03-19 16:29:29.497 435711 10981 21 0 10832 2025-03-19 16:59:50.827 2025-03-19 16:59:50.827 435711 13327 1 0 10833 2025-03-20 10:14:20.17 2025-03-20 10:14:20.17 435711 14080 19 0 10834 2025-03-19 18:38:18.517 2025-03-19 18:38:18.517 435711 15925 19 0 10835 2025-03-19 16:59:55.973 2025-03-19 16:59:55.973 435711 16753 81 0 10836 2025-03-19 20:58:56.979 2025-03-19 20:58:56.979 435711 17172 19 0 10837 2025-03-19 16:59:55.973 2025-03-19 16:59:55.973 435711 17552 9 0 10838 2025-03-19 16:29:28.358 2025-03-19 16:29:28.358 435711 18174 21 0 10839 2025-03-19 16:59:51.034 2025-03-19 16:59:51.034 435711 20756 8 0 10840 2025-03-19 15:41:12.705 2025-03-19 15:41:12.705 435711 20781 1 0 10841 2025-03-20 08:32:32.483 2025-03-20 08:32:32.483 435711 21064 1 0 10842 2025-03-19 16:59:50.827 2025-03-19 16:59:50.827 435711 21172 0 0 10843 2025-03-19 16:29:28.182 2025-03-19 16:29:28.182 435711 21339 2 0 10844 2025-03-19 16:29:28.358 2025-03-19 16:29:28.358 435711 21480 2 0 10845 2025-03-19 15:41:53.174 2025-03-19 15:41:53.174 435712 6688 1 0 10846 2025-03-19 15:50:14.564 2025-03-19 15:50:14.564 435713 678 0 0 10847 2025-03-19 15:43:56.913 2025-03-19 15:43:56.913 435713 15273 1 0 10848 2025-03-20 03:40:09.653 2025-03-20 03:40:09.653 435714 672 2 0 10849 2025-03-20 03:40:09.653 2025-03-20 03:40:09.653 435714 18630 15 0 10850 2025-03-19 15:48:14.707 2025-03-19 15:48:14.707 435714 21222 7 0 10851 2025-03-19 15:49:08.426 2025-03-19 15:49:08.426 435715 5728 1 0 10852 2025-03-19 15:51:59.547 2025-03-19 15:51:59.547 435715 12609 3 0 10853 2025-03-19 15:51:59.868 2025-03-19 15:51:59.868 435715 15239 0 0 10854 2025-03-19 15:51:59.868 2025-03-19 15:51:59.868 435715 16633 3 0 10855 2025-03-19 15:51:59.714 2025-03-19 15:51:59.714 435715 17592 0 0 10856 2025-03-19 15:51:59.547 2025-03-19 15:51:59.547 435715 20439 0 0 10857 2025-03-19 15:51:59.714 2025-03-19 15:51:59.714 435715 21713 3 0 10858 2025-03-19 15:50:32.604 2025-03-19 15:50:32.604 435716 2519 1 0 10859 2025-03-19 15:51:51.19 2025-03-19 15:51:51.19 435717 11897 1 0 10860 2025-03-20 00:19:13.836 2025-03-20 00:19:13.836 435718 2010 1 0 10861 2025-03-19 15:52:15.7 2025-03-19 15:52:15.7 435718 2703 1 0 10862 2025-03-19 23:16:04.344 2025-03-19 23:16:04.344 435718 2724 2 0 10863 2025-03-19 23:16:04.344 2025-03-19 23:16:04.344 435718 8380 19 0 10864 2025-03-20 00:15:06.348 2025-03-20 00:15:06.348 435718 14688 1 0 10865 2025-03-19 16:59:20.303 2025-03-19 16:59:20.303 435718 19018 8 0 10866 2025-03-20 00:19:13.836 2025-03-20 00:19:13.836 435718 20817 0 0 10867 2025-03-20 00:15:06.348 2025-03-20 00:15:06.348 435718 21356 9 0 10868 2025-03-19 16:59:20.117 2025-03-19 16:59:20.117 435718 21571 1 0 10869 2025-03-19 16:59:20.303 2025-03-19 16:59:20.303 435718 21603 1 0 10870 2025-03-19 16:59:20.117 2025-03-19 16:59:20.117 435718 21766 0 0 10871 2025-03-19 21:31:50.047 2025-03-19 21:31:50.047 435719 1272 0 0 10872 2025-03-19 15:53:51.395 2025-03-19 15:53:51.395 435719 1803 10 0 10873 2025-03-19 17:43:37.879 2025-03-19 17:43:37.879 435719 2593 3 0 10874 2025-03-19 17:43:37.879 2025-03-19 17:43:37.879 435719 6765 0 0 10875 2025-03-20 08:58:40.018 2025-03-20 08:58:40.018 435719 7773 23 0 10876 2025-03-20 08:58:40.018 2025-03-20 08:58:40.018 435719 12139 3 0 10877 2025-03-19 15:53:26.629 2025-03-19 15:53:26.629 435719 15243 1 0 10878 2025-03-20 00:20:43.785 2025-03-20 00:20:43.785 435719 15577 1 0 10879 2025-03-20 00:20:43.785 2025-03-20 00:20:43.785 435719 16988 9 0 10880 2025-03-19 21:31:50.047 2025-03-19 21:31:50.047 435719 17392 1 0 10881 2025-03-19 15:53:51.395 2025-03-19 15:53:51.395 435719 20179 1 0 10882 2025-03-19 15:54:20.683 2025-03-19 15:54:20.683 435720 1424 0 0 10883 2025-03-19 15:54:20.979 2025-03-19 15:54:20.979 435720 1733 0 0 10884 2025-03-19 15:54:20.556 2025-03-19 15:54:20.556 435720 5057 0 0 10885 2025-03-19 15:54:20.556 2025-03-19 15:54:20.556 435720 9863 3 0 10886 2025-03-19 15:54:03.65 2025-03-19 15:54:03.65 435720 15549 1 0 10887 2025-03-19 15:54:20.854 2025-03-19 15:54:20.854 435720 17741 0 0 10888 2025-03-19 15:54:20.979 2025-03-19 15:54:20.979 435720 18393 3 0 10889 2025-03-19 15:54:20.854 2025-03-19 15:54:20.854 435720 21494 3 0 10890 2025-03-19 15:54:20.683 2025-03-19 15:54:20.683 435720 21829 3 0 10891 2025-03-20 03:42:10.467 2025-03-20 03:42:10.467 435721 787 0 0 10892 2025-03-19 17:36:01.919 2025-03-19 17:36:01.919 435721 802 21 0 10893 2025-03-19 17:36:00.822 2025-03-19 17:36:00.822 435721 1237 21 0 10894 2025-03-19 19:49:36.965 2025-03-19 19:49:36.965 435721 1493 1 0 10895 2025-03-19 18:32:09.796 2025-03-19 18:32:09.796 435721 2213 9 0 10896 2025-03-19 18:32:09.796 2025-03-19 18:32:09.796 435721 9295 1 0 10897 2025-03-19 19:33:54.935 2025-03-19 19:33:54.935 435721 11873 90 0 10898 2025-03-19 17:36:02.266 2025-03-19 17:36:02.266 435721 14385 21 0 10899 2025-03-19 17:36:00.822 2025-03-19 17:36:00.822 435721 14650 2 0 10900 2025-03-19 19:33:54.935 2025-03-19 19:33:54.935 435721 17106 10 0 10901 2025-03-19 19:49:36.965 2025-03-19 19:49:36.965 435721 18330 9 0 10902 2025-03-19 19:33:51.343 2025-03-19 19:33:51.343 435721 18923 90 0 10903 2025-03-20 03:42:10.467 2025-03-20 03:42:10.467 435721 19966 3 0 10904 2025-03-19 17:36:02.266 2025-03-19 17:36:02.266 435721 20102 2 0 10905 2025-03-19 19:33:51.343 2025-03-19 19:33:51.343 435721 20187 10 0 10906 2025-03-19 15:55:55.291 2025-03-19 15:55:55.291 435721 21482 70 0 10907 2025-03-19 17:36:01.919 2025-03-19 17:36:01.919 435721 21600 2 0 10908 2025-03-19 15:56:36.048 2025-03-19 15:56:36.048 435722 5129 10 0 10909 2025-03-19 15:56:51.556 2025-03-19 15:56:51.556 435723 20201 1 0 10910 2025-03-19 15:57:06.016 2025-03-19 15:57:06.016 435724 12220 1 0 10911 2025-03-19 15:57:41.89 2025-03-19 15:57:41.89 435725 4768 1 0 10912 2025-03-19 16:00:02.55 2025-03-19 16:00:02.55 435726 1245 1 0 10913 2025-03-19 16:01:32.573 2025-03-19 16:01:32.573 435727 5752 1 0 10914 2025-03-19 19:12:31.897 2025-03-19 19:12:31.897 435728 805 10 0 10915 2025-03-19 22:44:07.604 2025-03-19 22:44:07.604 435728 811 115 0 10916 2025-03-19 23:03:25.369 2025-03-19 23:03:25.369 435728 831 5 0 10917 2025-03-19 16:59:45.231 2025-03-19 16:59:45.231 435728 844 8 0 10918 2025-03-19 23:03:25.369 2025-03-19 23:03:25.369 435728 997 45 0 10919 2025-03-20 08:32:28.535 2025-03-20 08:32:28.535 435728 1286 1 0 10920 2025-03-19 16:59:45.072 2025-03-19 16:59:45.072 435728 1611 0 0 10921 2025-03-19 18:33:14.67 2025-03-19 18:33:14.67 435728 1723 19 0 10922 2025-03-20 14:46:05.577 2025-03-20 14:46:05.577 435728 1740 5 0 10923 2025-03-19 16:29:20.69 2025-03-19 16:29:20.69 435728 2056 21 0 10924 2025-03-19 16:29:20.547 2025-03-19 16:29:20.547 435728 2832 2 0 10925 2025-03-19 16:59:45.231 2025-03-19 16:59:45.231 435728 3353 1 0 10926 2025-03-19 18:33:14.67 2025-03-19 18:33:14.67 435728 4313 2 0 10927 2025-03-20 14:46:05.577 2025-03-20 14:46:05.577 435728 4388 1 0 10928 2025-03-19 22:44:07.604 2025-03-19 22:44:07.604 435728 7558 13 0 10929 2025-03-19 16:03:10.954 2025-03-19 16:03:10.954 435728 7966 1 0 10930 2025-03-20 08:32:28.535 2025-03-20 08:32:28.535 435728 10007 7 0 10931 2025-03-19 16:29:20.69 2025-03-19 16:29:20.69 435728 12334 2 0 10932 2025-03-19 16:59:46.208 2025-03-19 16:59:46.208 435728 12749 81 0 10933 2025-03-19 16:29:20.547 2025-03-19 16:29:20.547 435728 14169 21 0 10934 2025-03-20 10:14:13.074 2025-03-20 10:14:13.074 435728 14650 10 0 10935 2025-03-19 16:59:46.208 2025-03-19 16:59:46.208 435728 16789 9 0 10936 2025-03-20 10:14:13.074 2025-03-20 10:14:13.074 435728 17275 1 0 10937 2025-03-20 02:43:34.758 2025-03-20 02:43:34.758 435728 19502 4 0 10938 2025-03-19 18:51:56.758 2025-03-19 18:51:56.758 435728 20062 9 0 10939 2025-03-20 02:43:34.758 2025-03-20 02:43:34.758 435728 20137 38 0 10940 2025-03-19 19:12:31.897 2025-03-19 19:12:31.897 435728 20187 90 0 10941 2025-03-19 18:51:56.758 2025-03-19 18:51:56.758 435728 20647 1 0 10942 2025-03-19 16:29:20.824 2025-03-19 16:29:20.824 435728 21238 2 0 10943 2025-03-19 16:29:20.824 2025-03-19 16:29:20.824 435728 21369 21 0 10944 2025-03-19 16:59:45.072 2025-03-19 16:59:45.072 435728 21523 1 0 10945 2025-03-19 16:18:17.047 2025-03-19 16:18:17.047 435729 1495 9 0 10946 2025-03-19 16:18:17.047 2025-03-19 16:18:17.047 435729 7913 1 0 10947 2025-03-19 16:03:59.805 2025-03-19 16:03:59.805 435729 18735 1 0 10948 2025-03-19 16:04:32.1 2025-03-19 16:04:32.1 435730 7891 10 0 10949 2025-03-19 16:05:37.889 2025-03-19 16:05:37.889 435731 674 1 0 10950 2025-03-19 16:05:46.451 2025-03-19 16:05:46.451 435732 1145 10 0 10951 2025-03-20 08:17:30.152 2025-03-20 08:17:30.152 435732 5590 2 0 10952 2025-03-20 08:17:30.152 2025-03-20 08:17:30.152 435732 18241 19 0 10953 2025-03-19 16:06:15.451 2025-03-19 16:06:15.451 435733 725 10 0 10954 2025-03-19 16:08:12.409 2025-03-19 16:08:12.409 435734 848 10 0 10955 2025-03-19 16:08:51.467 2025-03-19 16:08:51.467 435735 5828 1 0 10956 2025-03-19 16:09:05.968 2025-03-19 16:09:05.968 435736 1650 1 0 10957 2025-03-19 16:11:53.886 2025-03-19 16:11:53.886 435737 15624 10 0 10958 2025-03-19 16:14:01.088 2025-03-19 16:14:01.088 435738 9200 17 0 10959 2025-03-19 16:14:42.179 2025-03-19 16:14:42.179 435739 8729 1 0 10960 2025-03-19 23:15:22.077 2025-03-19 23:15:22.077 435740 12821 2 0 10961 2025-03-19 16:15:06.491 2025-03-19 16:15:06.491 435740 19494 1 0 10962 2025-03-19 23:15:22.077 2025-03-19 23:15:22.077 435740 21556 19 0 10963 2025-03-19 18:34:23.494 2025-03-19 18:34:23.494 435741 621 1 0 10964 2025-03-19 18:55:39.434 2025-03-19 18:55:39.434 435741 666 0 0 10965 2025-03-19 16:59:24.892 2025-03-19 16:59:24.892 435741 703 1 0 10966 2025-03-19 16:59:30.566 2025-03-19 16:59:30.566 435741 1741 81 0 10967 2025-03-19 16:59:24.698 2025-03-19 16:59:24.698 435741 1833 0 0 10968 2025-03-19 18:34:23.494 2025-03-19 18:34:23.494 435741 4763 5 0 10969 2025-03-19 16:23:03.76 2025-03-19 16:23:03.76 435741 6058 0 0 10970 2025-03-19 16:59:30.566 2025-03-19 16:59:30.566 435741 7772 9 0 10971 2025-03-20 01:02:19.753 2025-03-20 01:02:19.753 435741 10690 10 0 10972 2025-03-20 00:15:04.032 2025-03-20 00:15:04.032 435741 14295 9 0 10973 2025-03-19 18:55:39.434 2025-03-19 18:55:39.434 435741 19531 1 0 10974 2025-03-20 01:02:19.753 2025-03-20 01:02:19.753 435741 19570 90 0 10975 2025-03-19 16:22:33.032 2025-03-19 16:22:33.032 435741 20019 1 0 10976 2025-03-19 16:59:24.892 2025-03-19 16:59:24.892 435741 20370 8 0 10977 2025-03-19 16:59:24.698 2025-03-19 16:59:24.698 435741 20481 1 0 10978 2025-03-20 00:15:04.032 2025-03-20 00:15:04.032 435741 21444 1 0 10979 2025-03-19 16:45:15.529 2025-03-19 16:45:15.529 435742 1505 19 0 10980 2025-03-19 16:45:15.529 2025-03-19 16:45:15.529 435742 16309 2 0 10981 2025-03-19 16:26:05.147 2025-03-19 16:26:05.147 435742 20157 0 0 10982 2025-03-19 16:22:35.167 2025-03-19 16:22:35.167 435742 20554 1 0 10983 2025-03-19 16:24:34.38 2025-03-19 16:24:34.38 435743 1237 1 0 10984 2025-03-19 16:29:37.632 2025-03-19 16:29:37.632 435743 3656 36 0 10985 2025-03-19 16:29:37.632 2025-03-19 16:29:37.632 435743 5487 4 0 10986 2025-03-19 16:29:04.613 2025-03-19 16:29:04.613 435744 18673 1 0 10987 2025-03-20 03:28:05.239 2025-03-20 03:28:05.239 435746 667 19 0 10988 2025-03-19 16:56:36.311 2025-03-19 16:56:36.311 435746 715 4 0 10989 2025-03-19 18:25:08.441 2025-03-19 18:25:08.441 435746 899 5 0 10990 2025-03-19 21:38:15.565 2025-03-19 21:38:15.565 435746 977 81 0 10991 2025-03-19 21:38:05.062 2025-03-19 21:38:05.062 435746 1650 0 0 10992 2025-03-20 02:08:12.381 2025-03-20 02:08:12.381 435746 4776 19 0 10993 2025-03-19 21:38:05.258 2025-03-19 21:38:05.258 435746 5069 1 0 10994 2025-03-20 08:32:12.583 2025-03-20 08:32:12.583 435746 6191 14 0 10995 2025-03-19 22:16:05.04 2025-03-19 22:16:05.04 435746 9107 19 0 10996 2025-03-19 16:56:36.311 2025-03-19 16:56:36.311 435746 9920 36 0 10997 2025-03-20 11:13:02.451 2025-03-20 11:13:02.451 435746 11516 90 0 10998 2025-03-19 16:35:23.232 2025-03-19 16:35:23.232 435746 11648 10 0 10999 2025-03-20 02:08:12.381 2025-03-20 02:08:12.381 435746 11678 2 0 11000 2025-03-19 19:33:56.942 2025-03-19 19:33:56.942 435746 12566 4 0 11001 2025-03-19 16:35:51.143 2025-03-19 16:35:51.143 435746 14225 0 0 11002 2025-03-19 18:06:33.345 2025-03-19 18:06:33.345 435746 15213 90 0 11003 2025-03-19 21:38:05.062 2025-03-19 21:38:05.062 435746 16670 1 0 11004 2025-03-20 08:32:12.583 2025-03-20 08:32:12.583 435746 17109 2 0 11005 2025-03-19 19:33:56.942 2025-03-19 19:33:56.942 435746 17713 36 0 11006 2025-03-19 18:25:08.441 2025-03-19 18:25:08.441 435746 17798 45 0 11007 2025-03-20 11:13:02.451 2025-03-20 11:13:02.451 435746 17944 810 0 11008 2025-03-19 22:16:05.04 2025-03-19 22:16:05.04 435746 19087 2 0 11009 2025-03-19 21:38:15.565 2025-03-19 21:38:15.565 435746 20687 9 0 11010 2025-03-20 03:28:05.239 2025-03-20 03:28:05.239 435746 20840 2 0 11011 2025-03-19 18:06:33.345 2025-03-19 18:06:33.345 435746 21214 10 0 11012 2025-03-19 21:38:05.258 2025-03-19 21:38:05.258 435746 21281 8 0 11013 2025-03-19 22:43:15.344 2025-03-19 22:43:15.344 435747 13055 1 0 11014 2025-03-19 16:41:58.674 2025-03-19 16:41:58.674 435747 18449 1 0 11015 2025-03-19 22:43:15.344 2025-03-19 22:43:15.344 435747 21247 9 0 11016 2025-03-19 16:42:56.971 2025-03-19 16:42:56.971 435748 21600 1 0 11017 2025-03-19 16:49:10.421 2025-03-19 16:49:10.421 435749 12334 1 0 11018 2025-03-19 16:57:05.629 2025-03-19 16:57:05.629 435750 8400 1 0 11019 2025-03-20 08:24:50.86 2025-03-20 08:24:50.86 435751 766 0 0 11020 2025-03-20 08:24:49.61 2025-03-20 08:24:49.61 435751 1468 1 0 11021 2025-03-20 08:24:49.176 2025-03-20 08:24:49.176 435751 2326 1 0 11022 2025-03-20 08:24:47.635 2025-03-20 08:24:49.176 435751 2596 1 0 11023 2025-03-20 08:24:52.649 2025-03-20 08:24:52.649 435751 3656 1 0 11024 2025-03-20 08:24:47.777 2025-03-20 08:24:47.777 435751 8168 0 0 11025 2025-03-20 08:24:47.777 2025-03-20 08:24:47.777 435751 9354 1 0 11026 2025-03-20 08:24:50.86 2025-03-20 08:24:50.86 435751 11450 2 0 11027 2025-03-20 08:24:47.347 2025-03-20 08:24:47.347 435751 13361 0 0 11028 2025-03-19 16:58:20.927 2025-03-19 16:58:20.927 435751 16406 1 0 11029 2025-03-20 08:24:47.347 2025-03-20 08:24:47.347 435751 18500 1 0 11030 2025-03-20 08:24:47.635 2025-03-20 08:24:47.635 435751 19018 0 0 11031 2025-03-20 08:24:52.649 2025-03-20 08:24:52.649 435751 19663 0 0 11032 2025-03-20 08:24:49.902 2025-03-20 08:24:49.902 435751 19826 0 0 11033 2025-03-20 08:24:47.488 2025-03-20 08:24:47.488 435751 20201 1 0 11034 2025-03-20 08:24:48.606 2025-03-20 08:24:48.606 435751 20225 1 0 11035 2025-03-20 08:24:48.606 2025-03-20 08:24:48.606 435751 21063 0 0 11036 2025-03-20 08:24:49.902 2025-03-20 08:24:49.902 435751 21291 1 0 11037 2025-03-20 08:24:47.488 2025-03-20 08:24:47.488 435751 21303 0 0 11038 2025-03-20 08:24:49.61 2025-03-20 08:24:49.61 435751 21701 0 0 11039 2025-03-19 17:00:48.545 2025-03-19 17:00:48.545 435752 979 0 0 11040 2025-03-19 17:00:35.357 2025-03-19 17:00:35.357 435752 4502 0 0 11041 2025-03-19 16:59:05.261 2025-03-19 16:59:05.261 435752 10638 0 0 11042 2025-03-19 16:58:40.904 2025-03-19 16:58:40.904 435752 14357 1 0 11043 2025-03-19 17:00:15.859 2025-03-19 17:00:15.859 435753 4064 1 0 11044 2025-03-19 17:11:59.66 2025-03-19 17:11:59.66 435753 8380 1 0 11045 2025-03-19 17:00:59.996 2025-03-19 17:00:59.996 435753 10280 0 0 11046 2025-03-19 17:00:40.504 2025-03-19 17:00:40.504 435753 11288 0 0 11047 2025-03-19 17:11:59.66 2025-03-19 17:11:59.66 435753 18526 9 0 11048 2025-03-19 17:00:35.019 2025-03-19 17:00:35.019 435754 6268 1 0 11049 2025-03-19 22:46:47.517 2025-03-19 22:46:47.517 435755 681 9 0 11050 2025-03-19 17:01:12.527 2025-03-19 17:01:12.527 435755 925 1 0 11051 2025-03-19 22:46:46.559 2025-03-19 22:46:46.559 435755 937 1 0 11052 2025-03-19 22:46:45.087 2025-03-19 22:46:45.087 435755 1009 2 0 11053 2025-03-19 22:46:46.384 2025-03-19 22:46:46.384 435755 1141 9 0 11054 2025-03-19 22:46:46.384 2025-03-19 22:46:46.384 435755 2437 1 0 11055 2025-03-19 22:46:46.559 2025-03-19 22:46:46.559 435755 3506 9 0 11056 2025-03-19 22:46:47.281 2025-03-19 22:46:47.281 435755 5661 1 0 11057 2025-03-19 17:13:02.995 2025-03-19 17:13:02.995 435755 7913 1 0 11058 2025-03-19 21:24:36.353 2025-03-19 21:24:36.353 435755 10283 1 0 11059 2025-03-19 22:46:46.039 2025-03-19 22:46:46.039 435755 12346 9 0 11060 2025-03-19 22:46:44.164 2025-03-19 22:46:44.164 435755 12490 1 0 11061 2025-03-19 22:46:45.087 2025-03-19 22:46:45.087 435755 13987 18 0 11062 2025-03-19 22:46:46.039 2025-03-19 22:46:46.039 435755 14449 1 0 11063 2025-03-19 17:13:03.103 2025-03-19 17:13:03.103 435755 17710 1 0 11064 2025-03-19 21:24:36.353 2025-03-19 21:24:36.353 435755 18068 9 0 11065 2025-03-19 22:46:47.281 2025-03-19 22:46:47.281 435755 18601 9 0 11066 2025-03-19 22:46:47.517 2025-03-19 22:46:47.517 435755 19332 1 0 11067 2025-03-19 22:46:46.707 2025-03-19 22:46:46.707 435755 19952 9 0 11068 2025-03-19 17:13:03.103 2025-03-19 17:13:03.103 435755 20502 8 0 11069 2025-03-19 22:46:46.707 2025-03-19 22:46:46.707 435755 20956 1 0 11070 2025-03-19 22:46:44.164 2025-03-19 22:46:44.164 435755 21022 9 0 11071 2025-03-19 17:13:02.995 2025-03-19 17:13:02.995 435755 21083 0 0 11072 2025-03-20 07:02:07.211 2025-03-20 07:02:07.211 435756 2724 27 0 11073 2025-03-19 17:05:01.353 2025-03-19 17:05:01.353 435756 9330 1 0 11074 2025-03-20 07:02:07.211 2025-03-20 07:02:07.211 435756 21522 3 0 11075 2025-03-19 17:10:56.338 2025-03-19 17:10:56.338 435757 9362 1 0 11076 2025-03-19 17:11:15.632 2025-03-19 17:11:15.632 435758 10094 10 0 11077 2025-03-19 17:35:38.058 2025-03-19 17:35:38.058 435759 882 243 0 11078 2025-03-19 17:11:50.329 2025-03-19 17:11:50.329 435759 2338 1 0 11079 2025-03-19 17:35:38.058 2025-03-19 17:35:38.058 435759 3683 27 0 11080 2025-03-19 17:35:36.796 2025-03-19 17:35:36.796 435759 3729 3 0 11081 2025-03-19 17:35:36.796 2025-03-19 17:35:36.796 435759 20073 27 0 11082 2025-03-19 23:28:19.566 2025-03-19 23:28:19.566 435760 624 2 0 11083 2025-03-19 17:13:07.995 2025-03-19 17:13:07.995 435760 6616 1 0 11084 2025-03-19 17:40:28.357 2025-03-19 17:40:28.357 435760 11862 30 0 11085 2025-03-19 17:40:28.357 2025-03-19 17:40:28.357 435760 12483 3 0 11086 2025-03-19 23:28:19.566 2025-03-19 23:28:19.566 435760 19217 19 0 11087 2025-03-19 17:14:42.6 2025-03-19 17:14:42.6 435761 717 1 0 11088 2025-03-19 17:43:41.568 2025-03-19 17:43:41.568 435761 5852 30 0 11089 2025-03-19 17:43:41.568 2025-03-19 17:43:41.568 435761 21603 3 0 11090 2025-03-19 17:14:55.903 2025-03-19 17:14:55.903 435762 1307 1 0 11091 2025-03-19 21:03:03.546 2025-03-19 21:03:03.546 435762 5590 9 0 11092 2025-03-19 21:03:03.546 2025-03-19 21:03:03.546 435762 21501 1 0 11093 2025-03-19 17:41:21.818 2025-03-19 17:41:21.818 435763 1010 27 0 11094 2025-03-20 04:32:21.465 2025-03-20 04:32:21.465 435763 4043 3 0 11095 2025-03-19 17:22:24.878 2025-03-19 17:22:24.878 435763 9337 1 0 11096 2025-03-20 04:32:21.465 2025-03-20 04:32:21.465 435763 13327 31 0 11097 2025-03-19 17:41:21.818 2025-03-19 17:41:21.818 435763 21734 3 0 11098 2025-03-20 02:24:55.92 2025-03-20 02:24:55.92 435764 913 90 0 11099 2025-03-20 02:24:55.92 2025-03-20 02:24:55.92 435764 16717 10 0 11100 2025-03-19 21:59:41.186 2025-03-19 21:59:41.186 435765 979 5 0 11101 2025-03-19 21:59:42.205 2025-03-19 21:59:42.205 435765 1272 5 0 11102 2025-03-19 21:59:40.935 2025-03-19 21:59:40.935 435765 2361 45 0 11103 2025-03-19 21:59:41.186 2025-03-19 21:59:41.186 435765 2577 45 0 11104 2025-03-19 17:31:49.53 2025-03-19 17:31:49.53 435765 14909 1 0 11105 2025-03-19 21:59:42.205 2025-03-19 21:59:42.205 435765 16543 45 0 11106 2025-03-19 21:59:40.73 2025-03-19 21:59:40.73 435765 17535 5 0 11107 2025-03-19 21:59:40.935 2025-03-19 21:59:40.935 435765 20751 5 0 11108 2025-03-19 21:59:40.73 2025-03-19 21:59:40.73 435765 20912 45 0 11109 2025-03-19 21:59:37.379 2025-03-19 21:59:37.379 435765 21014 5 0 11110 2025-03-19 21:59:37.379 2025-03-19 21:59:37.379 435765 21228 45 0 11111 2025-03-19 17:34:25.518 2025-03-19 17:34:25.518 435766 14774 1 0 11112 2025-03-20 06:54:24.023 2025-03-20 06:54:24.023 435767 10484 1 0 11113 2025-03-20 08:34:43.933 2025-03-20 08:34:43.933 435767 11670 30 0 11114 2025-03-20 08:34:43.933 2025-03-20 08:34:43.933 435767 15049 3 0 11115 2025-03-20 06:54:24.023 2025-03-20 06:54:24.023 435767 18274 9 0 11116 2025-03-19 17:39:58.009 2025-03-19 17:39:58.009 435767 21202 1 0 11117 2025-03-19 17:40:28.998 2025-03-19 17:40:28.998 435768 1617 1 0 11118 2025-03-19 19:11:35.618 2025-03-19 19:11:35.618 435768 11992 3 0 11119 2025-03-19 19:11:35.618 2025-03-19 19:11:35.618 435768 20642 24 0 11120 2025-03-20 01:43:49.411 2025-03-20 01:43:49.411 435769 1478 23 0 11121 2025-03-19 21:38:52.027 2025-03-19 21:38:52.027 435769 5978 0 0 11122 2025-03-19 21:38:52.189 2025-03-19 21:38:52.189 435769 10102 1 0 11123 2025-03-19 21:51:57.69 2025-03-19 21:51:57.69 435769 11038 19 0 11124 2025-03-20 01:43:49.411 2025-03-20 01:43:49.411 435769 17201 3 0 11125 2025-03-19 17:41:06.011 2025-03-19 17:41:06.011 435769 17824 10 0 11126 2025-03-20 01:43:50.922 2025-03-20 01:43:50.922 435769 18232 23 0 11127 2025-03-19 21:35:37.933 2025-03-19 21:35:37.933 435769 19576 2 0 11128 2025-03-19 21:38:52.027 2025-03-19 21:38:52.027 435769 19581 1 0 11129 2025-03-19 21:51:57.69 2025-03-19 21:51:57.69 435769 19829 2 0 11130 2025-03-19 21:38:52.189 2025-03-19 21:38:52.189 435769 21501 8 0 11131 2025-03-19 21:35:37.933 2025-03-19 21:35:37.933 435769 21585 19 0 11132 2025-03-20 01:43:50.922 2025-03-20 01:43:50.922 435769 21666 3 0 11133 2025-03-20 00:15:09.298 2025-03-20 00:15:09.298 435770 9 9 0 11134 2025-03-19 17:43:04.181 2025-03-19 17:43:04.181 435770 8506 1 0 11135 2025-03-20 00:15:09.298 2025-03-20 00:15:09.298 435770 8535 1 0 11136 2025-03-20 03:50:38.648 2025-03-20 03:50:38.648 435770 13544 1 0 11137 2025-03-19 20:30:37.405 2025-03-19 20:30:37.405 435770 16809 450 0 11138 2025-03-19 23:17:06.209 2025-03-19 23:17:06.209 435770 17147 2 0 11139 2025-03-19 23:17:06.209 2025-03-19 23:17:06.209 435770 18101 19 0 11140 2025-03-19 20:30:37.405 2025-03-19 20:30:37.405 435770 20965 50 0 11141 2025-03-19 17:58:55.554 2025-03-19 17:58:55.554 435770 21262 1 0 11142 2025-03-20 03:50:38.648 2025-03-20 03:50:38.648 435770 21334 9 0 11143 2025-03-19 17:58:55.554 2025-03-19 17:58:55.554 435770 21357 9 0 11144 2025-03-19 23:51:56.561 2025-03-19 23:51:56.561 435771 6191 29 0 11145 2025-03-19 17:44:34.086 2025-03-19 17:44:34.086 435771 6749 1 0 11146 2025-03-19 23:51:56.561 2025-03-19 23:51:56.561 435771 13042 3 0 11147 2025-03-19 17:44:38.436 2025-03-19 17:44:38.436 435772 8326 1 0 11148 2025-03-19 17:46:20.887 2025-03-19 17:46:20.887 435773 1733 1 0 11149 2025-03-19 17:57:25.794 2025-03-19 17:57:25.794 435774 16442 1 0 11150 2025-03-19 17:58:16.017 2025-03-19 17:58:16.017 435775 1478 1 0 11151 2025-03-19 20:22:10.365 2025-03-19 20:22:10.365 435776 718 1 0 11152 2025-03-19 20:22:11.547 2025-03-19 20:22:11.547 435776 814 0 0 11153 2025-03-19 20:22:10.053 2025-03-19 20:22:10.053 435776 866 1 0 11154 2025-03-19 20:22:10.365 2025-03-19 20:22:10.365 435776 977 0 0 11155 2025-03-19 20:22:11.507 2025-03-19 20:22:11.507 435776 1209 1 0 11156 2025-03-19 20:22:11.507 2025-03-19 20:22:11.507 435776 1424 0 0 11157 2025-03-19 20:22:12.305 2025-03-19 20:22:12.305 435776 2710 1 0 11158 2025-03-19 20:22:11.547 2025-03-19 20:22:11.547 435776 3504 1 0 11159 2025-03-20 00:15:10.003 2025-03-20 00:15:10.003 435776 7376 9 0 11160 2025-03-19 20:22:12.305 2025-03-19 20:22:12.305 435776 7395 0 0 11161 2025-03-19 20:22:09.856 2025-03-19 20:22:09.856 435776 7668 0 0 11162 2025-03-19 20:22:10.626 2025-03-19 20:22:10.626 435776 7913 0 0 11163 2025-03-19 20:22:10.626 2025-03-19 20:22:10.626 435776 11670 1 0 11164 2025-03-19 20:22:09.683 2025-03-19 20:22:09.683 435776 12490 0 0 11165 2025-03-19 20:22:10.053 2025-03-19 20:22:10.053 435776 13921 0 0 11166 2025-03-19 20:22:11.842 2025-03-19 20:22:11.842 435776 14260 0 0 11167 2025-03-19 20:22:09.856 2025-03-19 20:22:09.856 435776 16276 1 0 11168 2025-03-19 20:22:09.683 2025-03-19 20:22:09.683 435776 16347 1 0 11169 2025-03-19 20:22:10.7 2025-03-19 20:22:10.7 435776 18270 0 0 11170 2025-03-20 00:15:10.003 2025-03-20 00:15:10.003 435776 19655 1 0 11171 2025-03-19 20:22:10.7 2025-03-19 20:22:10.7 435776 21072 1 0 11172 2025-03-19 18:06:36.992 2025-03-19 18:06:36.992 435776 21334 1 0 11173 2025-03-19 20:22:11.842 2025-03-19 20:22:11.842 435776 21506 1 0 11174 2025-03-19 18:07:56.087 2025-03-19 18:07:56.087 435777 12609 1 0 11175 2025-03-19 18:08:08.491 2025-03-19 18:08:08.491 435778 805 1 0 11176 2025-03-19 18:08:24.468 2025-03-19 18:08:24.468 435779 16754 1 0 11177 2025-03-19 18:08:32.685 2025-03-19 18:08:32.685 435780 4819 1 0 11178 2025-03-20 03:40:22.268 2025-03-20 03:40:22.268 435780 6537 9 0 11179 2025-03-20 03:40:22.268 2025-03-20 03:40:22.268 435780 21406 1 0 11180 2025-03-19 18:08:36.472 2025-03-19 18:08:36.472 435781 15843 1 0 11181 2025-03-19 18:08:45.993 2025-03-19 18:08:45.993 435782 787 10 0 11182 2025-03-19 18:11:13.285 2025-03-19 18:11:13.285 435783 902 4 0 11183 2025-03-19 18:09:05.068 2025-03-19 18:09:05.068 435783 18426 1 0 11184 2025-03-19 18:11:13.285 2025-03-19 18:11:13.285 435783 20058 36 0 11185 2025-03-19 18:15:28.41 2025-03-19 18:15:28.41 435784 21048 1 0 11186 2025-03-19 18:15:32.657 2025-03-19 18:15:32.657 435785 9537 1 0 11187 2025-03-20 07:02:51.073 2025-03-20 07:02:51.073 435786 701 9 0 11188 2025-03-19 18:16:21.469 2025-03-19 18:16:21.469 435786 794 1 0 11189 2025-03-20 07:02:51.376 2025-03-20 07:02:51.376 435786 1474 1 0 11190 2025-03-20 07:02:50.769 2025-03-20 07:02:50.769 435786 2195 1 0 11191 2025-03-20 07:02:50.492 2025-03-20 07:02:50.492 435786 2402 1 0 11192 2025-03-20 07:02:49.469 2025-03-20 07:02:49.469 435786 12072 1 0 11193 2025-03-20 07:02:50.769 2025-03-20 07:02:50.769 435786 14404 9 0 11194 2025-03-20 07:02:49.469 2025-03-20 07:02:49.469 435786 16966 9 0 11195 2025-03-20 07:02:51.376 2025-03-20 07:02:51.376 435786 19417 9 0 11196 2025-03-20 07:02:50.492 2025-03-20 07:02:50.492 435786 20504 9 0 11197 2025-03-20 07:02:51.073 2025-03-20 07:02:51.073 435786 21166 1 0 11198 2025-03-19 18:17:12.347 2025-03-19 18:17:12.347 435787 20562 1 0 11199 2025-03-19 18:18:24.154 2025-03-19 18:18:24.154 435788 12821 1 0 11200 2025-03-19 21:41:49.708 2025-03-19 21:41:49.708 435788 20734 0 0 11201 2025-03-19 21:41:49.708 2025-03-19 21:41:49.708 435788 21455 4 0 11202 2025-03-19 18:18:50.936 2025-03-19 18:18:50.936 435789 21620 1 0 11203 2025-03-19 21:59:40.207 2025-03-19 21:59:40.207 435790 4079 5 0 11204 2025-03-19 18:19:08.56 2025-03-19 18:19:08.56 435790 9346 1 0 11205 2025-03-19 21:59:40.207 2025-03-19 21:59:40.207 435790 15386 45 0 11206 2025-03-20 03:10:49.484 2025-03-20 03:10:49.484 435791 1480 1 0 11207 2025-03-20 03:10:49.484 2025-03-20 03:10:49.484 435791 11516 9 0 11208 2025-03-19 18:19:41.525 2025-03-19 18:19:41.525 435791 21451 1 0 11209 2025-03-20 04:17:40.272 2025-03-20 04:17:40.272 435792 1120 1 0 11210 2025-03-20 04:17:40.272 2025-03-20 04:17:40.272 435792 1145 5 0 11211 2025-03-19 18:21:15.301 2025-03-19 18:21:15.301 435792 20073 1 0 11212 2025-03-19 18:23:10.402 2025-03-19 18:23:10.402 435793 12245 1 0 11213 2025-03-19 18:25:06.113 2025-03-19 18:25:06.113 435794 8269 1 0 11214 2025-03-19 19:56:42.619 2025-03-19 19:56:42.619 435795 3392 1 0 11215 2025-03-19 18:27:10.986 2025-03-19 18:27:10.986 435795 11164 1 0 11216 2025-03-19 19:56:42.619 2025-03-19 19:56:42.619 435795 21539 9 0 11217 2025-03-19 18:35:02.649 2025-03-19 18:35:02.649 435797 652 27 0 11218 2025-03-19 18:34:44.278 2025-03-19 18:34:44.278 435797 716 1 0 11219 2025-03-19 18:35:02.649 2025-03-19 18:35:02.649 435797 14472 3 0 11220 2025-03-19 18:34:45.411 2025-03-19 18:34:45.411 435798 20026 100 0 11221 2025-03-19 19:01:35.531 2025-03-19 19:01:35.531 435798 20280 1 0 11222 2025-03-19 19:01:35.531 2025-03-19 19:01:35.531 435798 20681 0 0 11223 2025-03-19 21:40:17.235 2025-03-19 21:40:17.235 435799 1047 7 0 11224 2025-03-19 21:41:48.021 2025-03-19 21:41:48.021 435799 4027 0 0 11225 2025-03-19 21:40:17.235 2025-03-19 21:40:17.235 435799 7376 64 0 11226 2025-03-19 21:41:48.021 2025-03-19 21:41:48.021 435799 15806 4 0 11227 2025-03-19 18:37:43.754 2025-03-19 18:37:43.754 435799 18494 1 0 11228 2025-03-19 18:37:47.767 2025-03-19 18:37:47.767 435800 2749 1 0 11229 2025-03-19 19:47:13.011 2025-03-19 19:47:13.011 435800 8448 2 0 11230 2025-03-19 19:47:13.011 2025-03-19 19:47:13.011 435800 14376 19 0 11231 2025-03-19 22:50:50.636 2025-03-19 22:50:50.636 435801 7425 18 0 11232 2025-03-19 22:50:50.636 2025-03-19 22:50:50.636 435801 16948 2 0 11233 2025-03-19 18:38:09.435 2025-03-19 18:38:09.435 435801 18412 1 0 11234 2025-03-19 18:38:15.563 2025-03-19 18:38:15.563 435802 16858 1 0 11235 2025-03-19 18:39:03.741 2025-03-19 18:39:03.741 435803 696 1 0 11236 2025-03-19 20:59:20.472 2025-03-19 20:59:20.472 435803 8469 19 0 11237 2025-03-19 20:59:20.472 2025-03-19 20:59:20.472 435803 21424 2 0 11238 2025-03-19 18:44:05.652 2025-03-19 18:44:05.652 435804 759 100 0 11239 2025-03-19 18:56:05.184 2025-03-19 18:56:05.184 435804 1060 9 0 11240 2025-03-19 18:56:05.184 2025-03-19 18:56:05.184 435804 10393 1 0 11241 2025-03-20 02:50:02.95 2025-03-20 02:50:02.95 435805 1221 2 0 11242 2025-03-20 02:50:02.95 2025-03-20 02:50:02.95 435805 1705 14 0 11243 2025-03-19 19:33:01.296 2025-03-19 19:33:01.296 435805 1836 4 0 11244 2025-03-19 22:18:25.797 2025-03-19 22:18:25.797 435805 5519 19 0 11245 2025-03-19 21:39:12.27 2025-03-19 21:39:12.27 435805 7960 0 0 11246 2025-03-19 21:39:12.949 2025-03-19 21:39:12.949 435805 9200 10 0 11247 2025-03-19 21:39:12.27 2025-03-19 21:39:12.27 435805 9290 1 0 11248 2025-03-19 18:56:14.634 2025-03-19 18:56:14.634 435805 11477 90 0 11249 2025-03-20 00:21:11.375 2025-03-20 00:21:11.375 435805 12139 1 0 11250 2025-03-19 22:18:25.797 2025-03-19 22:18:25.797 435805 12609 2 0 11251 2025-03-20 03:28:24.406 2025-03-20 03:28:24.406 435805 12768 2 0 11252 2025-03-19 18:49:20.432 2025-03-19 18:49:20.432 435805 15409 100 0 11253 2025-03-19 19:33:01.296 2025-03-19 19:33:01.296 435805 16442 36 0 11254 2025-03-19 21:39:12.949 2025-03-19 21:39:12.949 435805 17094 89 0 11255 2025-03-19 18:52:51.318 2025-03-19 18:52:51.318 435805 17291 9 0 11256 2025-03-19 18:52:51.318 2025-03-19 18:52:51.318 435805 17797 1 0 11257 2025-03-19 22:16:07.004 2025-03-19 22:16:07.004 435805 18005 2 0 11258 2025-03-19 18:56:14.634 2025-03-19 18:56:14.634 435805 19199 10 0 11259 2025-03-20 03:28:24.406 2025-03-20 03:28:24.406 435805 19375 19 0 11260 2025-03-19 22:16:07.004 2025-03-19 22:16:07.004 435805 19842 19 0 11261 2025-03-20 00:21:11.375 2025-03-20 00:21:11.375 435805 20612 9 0 11262 2025-03-19 18:52:26.943 2025-03-19 18:52:26.943 435806 4763 10 0 11263 2025-03-19 19:36:43.03 2025-03-19 19:36:43.03 435806 9655 8 0 11264 2025-03-19 19:36:43.03 2025-03-19 19:36:43.03 435806 21701 69 0 11265 2025-03-19 19:08:02.668 2025-03-19 19:08:02.668 435807 673 18 0 11266 2025-03-19 18:54:48.332 2025-03-19 18:54:48.332 435807 16282 1 0 11267 2025-03-19 19:08:02.668 2025-03-19 19:08:02.668 435807 21402 2 0 11268 2025-03-19 18:55:45.045 2025-03-19 18:55:45.045 435808 1717 1 0 11269 2025-03-20 00:21:15.34 2025-03-20 00:21:15.34 435808 6137 1 0 11270 2025-03-19 22:52:28.546 2025-03-19 22:52:28.546 435808 8037 1 0 11271 2025-03-19 22:52:28.546 2025-03-19 22:52:28.546 435808 8045 9 0 11272 2025-03-20 00:21:14.264 2025-03-20 00:21:14.264 435808 9276 9 0 11273 2025-03-20 00:21:14.264 2025-03-20 00:21:14.264 435808 15484 1 0 11274 2025-03-19 19:08:02.042 2025-03-19 19:08:02.042 435808 15577 2 0 11275 2025-03-19 19:08:02.042 2025-03-19 19:08:02.042 435808 17148 18 0 11276 2025-03-19 21:46:11.673 2025-03-19 21:46:11.673 435808 20479 1 0 11277 2025-03-19 21:46:11.673 2025-03-19 21:46:11.673 435808 21498 7 0 11278 2025-03-20 00:21:15.34 2025-03-20 00:21:15.34 435808 21810 9 0 11279 2025-03-19 18:56:07.524 2025-03-19 18:56:07.524 435809 1584 1 0 11280 2025-03-19 18:58:25.099 2025-03-19 18:58:25.099 435810 2639 1 0 11281 2025-03-20 00:57:16.339 2025-03-20 00:57:16.339 435810 11443 1 0 11282 2025-03-20 00:57:16.339 2025-03-20 00:57:16.339 435810 16839 9 0 11283 2025-03-19 18:58:36.523 2025-03-19 18:58:36.523 435811 15386 1 0 11284 2025-03-19 19:14:24.925 2025-03-19 19:14:24.925 435812 27 1 0 11285 2025-03-19 19:32:55.019 2025-03-19 19:32:55.019 435812 620 4 0 11286 2025-03-19 22:41:43.619 2025-03-19 22:41:43.619 435812 627 9 0 11287 2025-03-19 19:00:10.72 2025-03-19 19:00:10.72 435812 631 100 0 11288 2025-03-19 22:16:00.218 2025-03-19 22:16:00.218 435812 634 19 0 11289 2025-03-19 21:38:29.868 2025-03-19 21:38:29.868 435812 641 8 0 11290 2025-03-19 22:41:42.856 2025-03-19 22:41:42.856 435812 695 1 0 11291 2025-03-19 22:17:21.986 2025-03-19 22:17:21.986 435812 837 19 0 11292 2025-03-19 22:41:42.856 2025-03-19 22:41:42.856 435812 985 9 0 11293 2025-03-20 02:58:50.506 2025-03-20 02:58:50.506 435812 1130 1 0 11294 2025-03-19 22:41:43.437 2025-03-19 22:41:43.437 435812 1273 1 0 11295 2025-03-19 21:45:03.496 2025-03-19 21:45:03.496 435812 1469 2 0 11296 2025-03-20 11:12:45.052 2025-03-20 11:12:45.052 435812 1806 90 0 11297 2025-03-20 01:42:13.274 2025-03-20 01:42:13.274 435812 1814 0 0 11298 2025-03-19 22:16:00.218 2025-03-19 22:16:00.218 435812 2123 2 0 11299 2025-03-19 21:38:29.678 2025-03-19 21:38:29.678 435812 2711 1 0 11300 2025-03-19 20:05:28.527 2025-03-19 20:05:28.527 435812 5519 23 0 11301 2025-03-19 22:49:16.969 2025-03-19 22:49:16.969 435812 5703 19 0 11302 2025-03-19 21:38:29.868 2025-03-19 21:38:29.868 435812 5942 1 0 11303 2025-03-19 19:11:40.8 2025-03-19 19:11:40.8 435812 6463 2 0 11304 2025-03-20 02:07:09.985 2025-03-20 02:07:09.985 435812 7983 4 0 11305 2025-03-19 21:44:09.733 2025-03-19 21:44:09.733 435812 8796 10 0 11306 2025-03-20 02:08:09.934 2025-03-20 02:08:09.934 435812 9084 2 0 11307 2025-03-20 03:07:23.084 2025-03-20 03:07:23.084 435812 10280 4 0 11308 2025-03-20 11:47:30.437 2025-03-20 11:47:30.437 435812 10608 9 0 11309 2025-03-19 19:11:40.8 2025-03-19 19:11:40.8 435812 11862 19 0 11310 2025-03-19 22:41:43.272 2025-03-19 22:41:43.272 435812 12072 9 0 11311 2025-03-19 19:11:16.35 2025-03-19 19:11:16.35 435812 12965 2 0 11312 2025-03-19 19:32:55.019 2025-03-19 19:32:55.019 435812 13162 36 0 11313 2025-03-19 22:17:21.986 2025-03-19 22:17:21.986 435812 13865 2 0 11314 2025-03-19 22:41:43.859 2025-03-19 22:41:43.859 435812 14225 1 0 11315 2025-03-20 11:12:45.052 2025-03-20 11:12:45.052 435812 14939 810 0 11316 2025-03-19 23:43:02.813 2025-03-19 23:43:02.813 435812 15488 9 0 11317 2025-03-19 22:41:43.437 2025-03-19 22:41:43.437 435812 15521 9 0 11318 2025-03-19 22:07:38.955 2025-03-19 22:07:38.955 435812 15588 1 0 11319 2025-03-19 20:05:28.527 2025-03-19 20:05:28.527 435812 16282 3 0 11320 2025-03-19 22:41:43.272 2025-03-19 22:41:43.272 435812 16747 1 0 11321 2025-03-20 02:58:50.506 2025-03-20 02:58:50.506 435812 16769 7 0 11322 2025-03-19 21:44:09.733 2025-03-19 21:44:09.733 435812 16950 90 0 11323 2025-03-19 21:38:33.493 2025-03-19 21:38:33.493 435812 16988 9 0 11324 2025-03-20 02:09:15.24 2025-03-20 02:09:15.24 435812 17041 90 0 11325 2025-03-19 22:41:43.859 2025-03-19 22:41:43.859 435812 19332 9 0 11326 2025-03-20 11:47:30.437 2025-03-20 11:47:30.437 435812 19378 1 0 11327 2025-03-19 19:14:24.925 2025-03-19 19:14:24.925 435812 19735 0 0 11328 2025-03-20 02:08:09.934 2025-03-20 02:08:09.934 435812 20187 19 0 11329 2025-03-19 22:41:43.619 2025-03-19 22:41:43.619 435812 20377 1 0 11330 2025-03-19 22:07:38.955 2025-03-19 22:07:38.955 435812 20479 0 0 11331 2025-03-19 21:45:03.496 2025-03-19 21:45:03.496 435812 20881 18 0 11332 2025-03-19 23:43:02.813 2025-03-19 23:43:02.813 435812 21063 1 0 11333 2025-03-20 02:09:15.24 2025-03-20 02:09:15.24 435812 21116 10 0 11334 2025-03-20 02:07:09.985 2025-03-20 02:07:09.985 435812 21172 36 0 11335 2025-03-19 19:11:16.35 2025-03-19 19:11:16.35 435812 21275 19 0 11336 2025-03-20 01:42:13.274 2025-03-20 01:42:13.274 435812 21303 2 0 11337 2025-03-19 21:38:33.493 2025-03-19 21:38:33.493 435812 21320 81 0 11338 2025-03-19 22:49:16.969 2025-03-19 22:49:16.969 435812 21412 2 0 11339 2025-03-19 21:38:29.678 2025-03-19 21:38:29.678 435812 21526 0 0 11340 2025-03-20 03:07:23.084 2025-03-20 03:07:23.084 435812 21647 38 0 11341 2025-03-19 21:41:46.883 2025-03-19 21:41:46.883 435813 9084 4 0 11342 2025-03-19 21:41:46.883 2025-03-19 21:41:46.883 435813 19668 0 0 11343 2025-03-19 19:01:26.168 2025-03-19 19:01:26.168 435813 19905 1 0 11344 2025-03-19 19:01:37.57 2025-03-19 19:01:37.57 435814 1273 1 0 11345 2025-03-19 19:04:18.144 2025-03-19 19:04:18.144 435814 4166 23 0 11346 2025-03-19 19:04:18.144 2025-03-19 19:04:18.144 435814 12819 3 0 11347 2025-03-20 08:44:11.662 2025-03-20 08:44:11.662 435815 762 10 0 11348 2025-03-20 08:44:11.662 2025-03-20 08:44:11.662 435815 993 90 0 11349 2025-03-19 19:04:33.138 2025-03-19 19:04:33.138 435815 10094 1 0 11350 2025-03-19 19:04:45.641 2025-03-19 19:04:45.641 435815 16769 0 0 11351 2025-03-19 19:05:07.49 2025-03-19 19:05:07.49 435815 20660 0 0 11352 2025-03-19 19:08:04.36 2025-03-19 19:08:04.36 435816 19673 1 0 11353 2025-03-19 19:09:35.363 2025-03-19 19:09:35.363 435817 10311 1 0 11354 2025-03-19 19:10:55.898 2025-03-19 19:10:55.898 435818 895 1 0 11355 2025-03-19 19:12:16.608 2025-03-19 19:12:16.608 435819 5308 1 0 11356 2025-03-19 22:52:37.592 2025-03-19 22:52:37.592 435820 671 1 0 11357 2025-03-19 19:12:24.324 2025-03-19 19:12:24.324 435820 2773 1 0 11358 2025-03-19 19:12:39.993 2025-03-19 19:12:39.993 435820 11018 0 0 11359 2025-03-19 20:00:02.084 2025-03-19 20:00:02.084 435820 15192 18 0 11360 2025-03-20 10:42:02.526 2025-03-20 10:42:02.526 435820 16289 1 0 11361 2025-03-19 20:00:02.084 2025-03-19 20:00:02.084 435820 18011 2 0 11362 2025-03-20 10:42:02.526 2025-03-20 10:42:02.526 435820 18449 9 0 11363 2025-03-19 22:52:37.592 2025-03-19 22:52:37.592 435820 20778 9 0 11364 2025-03-19 19:33:00.299 2025-03-19 19:33:00.299 435821 5825 3 0 11365 2025-03-19 19:12:35.003 2025-03-19 19:12:35.003 435821 9036 1 0 11366 2025-03-19 19:33:00.299 2025-03-19 19:33:00.299 435821 19463 27 0 11367 2025-03-19 19:12:55.257 2025-03-19 19:12:55.257 435822 20577 1 0 11368 2025-03-19 22:45:26.533 2025-03-19 22:45:26.533 435823 951 13 0 11369 2025-03-19 19:16:49.4 2025-03-19 19:16:49.4 435823 1959 1 0 11370 2025-03-19 22:45:26.533 2025-03-19 22:45:26.533 435823 21060 115 0 11371 2025-03-19 19:42:38.716 2025-03-19 19:42:38.716 435824 623 1 0 11372 2025-03-19 19:42:38.716 2025-03-19 19:42:38.716 435824 15890 9 0 11373 2025-03-19 23:53:36.89 2025-03-19 23:53:36.89 435824 20657 14 0 11374 2025-03-19 23:53:36.89 2025-03-19 23:53:36.89 435824 20892 2 0 11375 2025-03-19 19:18:10.562 2025-03-19 19:18:10.562 435824 21064 1 0 11376 2025-03-19 19:19:41.602 2025-03-19 19:19:41.602 435825 18011 1 0 11377 2025-03-19 19:20:03.16 2025-03-19 19:20:03.16 435826 2338 100 0 11378 2025-03-19 21:39:39.612 2025-03-19 21:39:39.612 435826 7418 8 0 11379 2025-03-20 02:58:57.57 2025-03-20 02:58:57.57 435826 7766 19 0 11380 2025-03-19 21:39:40.287 2025-03-19 21:39:40.287 435826 7877 81 0 11381 2025-03-19 21:39:40.287 2025-03-19 21:39:40.287 435826 10536 9 0 11382 2025-03-19 21:39:39.428 2025-03-19 21:39:39.428 435826 10611 0 0 11383 2025-03-20 02:58:57.57 2025-03-20 02:58:57.57 435826 12483 2 0 11384 2025-03-19 19:44:03.978 2025-03-19 19:44:03.978 435826 17696 9 0 11385 2025-03-19 21:39:39.428 2025-03-19 21:39:39.428 435826 17708 1 0 11386 2025-03-19 19:44:03.978 2025-03-19 19:44:03.978 435826 19346 1 0 11387 2025-03-19 22:16:08.135 2025-03-19 22:16:08.135 435826 19842 19 0 11388 2025-03-19 21:39:39.612 2025-03-19 21:39:39.612 435826 20254 1 0 11389 2025-03-19 22:16:08.135 2025-03-19 22:16:08.135 435826 21832 2 0 11390 2025-03-19 19:21:54.827 2025-03-19 19:21:54.827 435827 4862 1 0 11391 2025-03-19 21:25:27.663 2025-03-19 21:25:27.663 435828 7654 9 0 11392 2025-03-19 19:22:21.322 2025-03-19 19:22:21.322 435828 9200 1 0 11393 2025-03-19 21:25:27.663 2025-03-19 21:25:27.663 435828 18727 1 0 11394 2025-03-19 19:35:51.219 2025-03-19 19:35:51.219 435829 13574 1 0 11395 2025-03-19 20:26:57.866 2025-03-19 20:26:57.866 435830 4984 10 0 11396 2025-03-19 20:26:57.866 2025-03-19 20:26:57.866 435830 6430 1 0 11397 2025-03-19 19:37:51.892 2025-03-19 19:37:51.892 435830 21061 1 0 11398 2025-03-19 23:53:44.141 2025-03-19 23:53:44.141 435831 7558 1 0 11399 2025-03-19 23:53:44.141 2025-03-19 23:53:44.141 435831 9529 7 0 11400 2025-03-19 19:42:50.071 2025-03-19 19:42:50.071 435831 20588 1 0 11401 2025-03-20 03:39:18.447 2025-03-20 03:39:18.447 435832 14122 6 0 11402 2025-03-19 19:47:27.035 2025-03-19 19:47:27.035 435832 18313 1 0 11403 2025-03-20 03:39:18.447 2025-03-20 03:39:18.447 435832 21287 1 0 11404 2025-03-19 19:52:00.267 2025-03-19 19:52:00.267 435833 19943 100 0 11405 2025-03-20 04:24:38.936 2025-03-20 04:24:38.936 435834 622 3 0 11406 2025-03-19 21:39:55.661 2025-03-19 21:39:55.661 435834 746 8 0 11407 2025-03-20 04:24:38.386 2025-03-20 04:24:38.386 435834 5112 24 0 11408 2025-03-20 04:24:38.75 2025-03-20 04:24:38.75 435834 6058 24 0 11409 2025-03-20 04:24:38.386 2025-03-20 04:24:38.386 435834 9796 3 0 11410 2025-03-20 04:24:38.576 2025-03-20 04:24:38.576 435834 16250 3 0 11411 2025-03-19 21:39:55.661 2025-03-19 21:39:55.661 435834 16789 1 0 11412 2025-03-20 04:24:38.576 2025-03-20 04:24:38.576 435834 18865 24 0 11413 2025-03-19 20:24:35.349 2025-03-19 20:24:35.349 435834 19980 19 0 11414 2025-03-20 04:24:38.936 2025-03-20 04:24:38.936 435834 20706 24 0 11415 2025-03-19 19:55:31.273 2025-03-19 19:55:31.273 435834 21166 10 0 11416 2025-03-19 20:24:35.349 2025-03-19 20:24:35.349 435834 21501 2 0 11417 2025-03-19 21:39:55.42 2025-03-19 21:39:55.42 435834 21647 1 0 11418 2025-03-20 04:24:38.75 2025-03-20 04:24:38.75 435834 21797 3 0 11419 2025-03-19 21:39:55.42 2025-03-19 21:39:55.42 435834 21798 0 0 11420 2025-03-19 19:55:37.485 2025-03-19 19:55:37.485 435835 1474 100 0 11421 2025-03-19 19:55:37.893 2025-03-19 19:55:37.893 435836 1136 1 0 11422 2025-03-19 21:05:23.317 2025-03-19 21:05:23.317 435837 994 3 0 11423 2025-03-19 19:56:20.308 2025-03-19 19:56:20.308 435837 1064 1 0 11424 2025-03-19 21:05:23.317 2025-03-19 21:05:23.317 435837 5112 0 0 11425 2025-03-19 21:05:22.306 2025-03-19 21:05:22.306 435837 7903 0 0 11426 2025-03-19 21:05:23.145 2025-03-19 21:05:23.145 435837 11523 0 0 11427 2025-03-19 21:05:22.306 2025-03-19 21:05:22.306 435837 13177 3 0 11428 2025-03-19 21:05:25.11 2025-03-19 21:05:25.11 435837 17291 0 0 11429 2025-03-19 21:05:25.11 2025-03-19 21:05:25.11 435837 18116 3 0 11430 2025-03-19 21:05:23.145 2025-03-19 21:05:23.145 435837 21498 3 0 11431 2025-03-19 20:00:30.121 2025-03-19 20:00:30.121 435838 21578 100 0 11432 2025-03-19 20:02:39.143 2025-03-19 20:02:39.143 435839 20586 1 0 11433 2025-03-19 20:04:14.919 2025-03-19 20:04:14.919 435840 7125 10 0 11434 2025-03-19 22:40:55.443 2025-03-19 22:40:55.443 435841 3642 1 0 11435 2025-03-19 22:40:55.443 2025-03-19 22:40:55.443 435841 13903 9 0 11436 2025-03-19 20:04:23.257 2025-03-19 20:04:23.257 435841 14705 1 0 11437 2025-03-19 20:06:02.506 2025-03-19 20:06:02.506 435842 10270 1 0 11438 2025-03-19 20:10:03.494 2025-03-19 20:10:03.494 435843 12222 1 0 11439 2025-03-19 21:05:35.702 2025-03-19 21:05:35.702 435844 1552 3 0 11440 2025-03-19 21:05:36.117 2025-03-19 21:05:36.117 435844 6741 0 0 11441 2025-03-19 21:05:34.926 2025-03-19 21:05:34.926 435844 11714 0 0 11442 2025-03-19 21:05:35.225 2025-03-19 21:05:35.225 435844 13767 0 0 11443 2025-03-19 20:11:27.828 2025-03-19 20:11:27.828 435844 14213 100 0 11444 2025-03-19 21:05:36.117 2025-03-19 21:05:36.117 435844 14657 3 0 11445 2025-03-19 21:05:35.702 2025-03-19 21:05:35.702 435844 14688 0 0 11446 2025-03-19 21:05:35.073 2025-03-19 21:05:35.073 435844 17064 0 0 11447 2025-03-19 21:05:35.225 2025-03-19 21:05:35.225 435844 17570 3 0 11448 2025-03-19 21:05:35.073 2025-03-19 21:05:35.073 435844 19138 3 0 11449 2025-03-19 21:05:34.926 2025-03-19 21:05:34.926 435844 20099 3 0 11450 2025-03-19 20:13:15.483 2025-03-19 20:13:15.483 435845 10979 1 0 11451 2025-03-20 02:06:15.026 2025-03-20 02:06:15.026 435846 675 4 0 11452 2025-03-20 02:06:15.026 2025-03-20 02:06:15.026 435846 19193 36 0 11453 2025-03-19 20:13:39.577 2025-03-19 20:13:39.577 435846 20710 1 0 11454 2025-03-20 01:04:56.216 2025-03-20 01:04:56.216 435847 617 10 0 11455 2025-03-20 05:32:18.317 2025-03-20 05:32:18.317 435847 618 75 0 11456 2025-03-20 04:06:48.927 2025-03-20 04:06:48.927 435847 626 10 0 11457 2025-03-20 05:32:14.906 2025-03-20 05:32:14.906 435847 627 75 0 11458 2025-03-20 08:36:12.675 2025-03-20 08:36:12.675 435847 629 2 0 11459 2025-03-20 08:17:06.689 2025-03-20 08:17:06.689 435847 630 10 0 11460 2025-03-19 22:03:02.092 2025-03-19 22:03:02.092 435847 660 19 0 11461 2025-03-20 08:14:31.945 2025-03-20 08:14:31.945 435847 675 2 0 11462 2025-03-20 05:32:17.26 2025-03-20 05:32:17.26 435847 683 75 0 11463 2025-03-20 03:58:09.754 2025-03-20 03:58:09.754 435847 688 9 0 11464 2025-03-20 05:32:19.263 2025-03-20 05:32:19.263 435847 696 8 0 11465 2025-03-20 05:32:16.118 2025-03-20 05:32:16.118 435847 700 149 0 11466 2025-03-20 03:54:19.385 2025-03-20 03:54:19.385 435847 714 21 0 11467 2025-03-20 04:06:49.243 2025-03-20 04:06:49.243 435847 730 1 0 11468 2025-03-19 22:03:01.636 2025-03-19 22:03:01.636 435847 733 19 0 11469 2025-03-20 03:54:18.686 2025-03-20 03:54:18.686 435847 761 2 0 11470 2025-03-19 21:40:13.178 2025-03-19 21:40:13.178 435847 770 8 0 11471 2025-03-20 05:32:20.13 2025-03-20 05:32:20.13 435847 827 75 0 11472 2025-03-20 05:32:18.16 2025-03-20 05:32:18.16 435847 861 8 0 11473 2025-03-20 03:54:20.649 2025-03-20 03:54:20.649 435847 928 2 0 11474 2025-03-20 03:54:25.323 2025-03-20 03:54:25.323 435847 946 2 0 11475 2025-03-20 03:58:09.754 2025-03-20 03:58:09.754 435847 974 1 0 11476 2025-03-20 03:54:18.861 2025-03-20 03:54:18.861 435847 981 2 0 11477 2025-03-20 05:32:17.172 2025-03-20 05:32:17.172 435847 992 8 0 11478 2025-03-20 03:58:09.596 2025-03-20 03:58:09.596 435847 1008 9 0 11479 2025-03-20 05:32:20.13 2025-03-20 05:32:20.13 435847 1012 8 0 11480 2025-03-20 03:54:18.288 2025-03-20 03:54:18.288 435847 1120 41 0 11481 2025-03-19 22:16:05.497 2025-03-19 22:16:05.497 435847 1124 2 0 11482 2025-03-20 05:32:15.159 2025-03-20 05:32:15.159 435847 1307 75 0 11483 2025-03-20 05:32:17.172 2025-03-20 05:32:17.172 435847 1316 75 0 11484 2025-03-20 08:14:31.538 2025-03-20 08:14:31.538 435847 1469 2 0 11485 2025-03-20 03:54:21.014 2025-03-20 03:54:21.014 435847 1495 21 0 11486 2025-03-20 11:10:58.803 2025-03-20 11:10:58.803 435847 1602 810 0 11487 2025-03-20 01:04:56.216 2025-03-20 01:04:56.216 435847 1617 90 0 11488 2025-03-20 05:32:15.828 2025-03-20 05:32:15.828 435847 1650 8 0 11489 2025-03-19 20:41:03.867 2025-03-19 20:41:03.867 435847 1697 91 0 11490 2025-03-20 05:32:18.223 2025-03-20 05:32:18.223 435847 1802 8 0 11491 2025-03-20 03:54:25.179 2025-03-20 03:54:25.179 435847 1960 21 0 11492 2025-03-20 00:51:13.976 2025-03-20 00:51:13.976 435847 1983 19 0 11493 2025-03-20 03:54:24.627 2025-03-20 03:54:24.627 435847 2061 2 0 11494 2025-03-20 08:14:31.945 2025-03-20 08:14:31.945 435847 2156 19 0 11495 2025-03-20 03:54:24.018 2025-03-20 03:54:24.018 435847 2293 21 0 11496 2025-03-20 08:36:12.845 2025-03-20 08:36:12.845 435847 2329 2 0 11497 2025-03-20 03:54:23.533 2025-03-20 03:54:23.533 435847 2335 2 0 11498 2025-03-20 05:32:15.596 2025-03-20 05:32:15.596 435847 2437 17 0 11499 2025-03-20 03:54:25.742 2025-03-20 03:54:25.742 435847 2596 21 0 11500 2025-03-20 03:54:23.736 2025-03-20 03:54:23.736 435847 2670 2 0 11501 2025-03-20 03:54:18.861 2025-03-20 06:06:10.781 435847 3304 111 0 11502 2025-03-20 03:54:19.56 2025-03-20 03:54:19.56 435847 4043 2 0 11503 2025-03-20 01:04:55.999 2025-03-20 01:04:55.999 435847 4115 90 0 11504 2025-03-20 05:32:17.413 2025-03-20 05:32:17.413 435847 4166 8 0 11505 2025-03-20 05:32:16.546 2025-03-20 05:32:16.546 435847 4292 149 0 11506 2025-03-20 05:18:18.339 2025-03-20 05:18:18.339 435847 4388 2 0 11507 2025-03-20 03:54:21.786 2025-03-20 03:54:21.786 435847 4415 2 0 11508 2025-03-20 03:54:22.193 2025-03-20 03:54:22.193 435847 4650 2 0 11509 2025-03-20 03:54:22.339 2025-03-20 03:54:22.339 435847 4754 2 0 11510 2025-03-20 03:58:09.898 2025-03-20 03:58:09.898 435847 4763 1 0 11511 2025-03-20 03:54:18.288 2025-03-20 03:54:18.288 435847 4831 5 0 11512 2025-03-20 03:54:21.604 2025-03-20 03:54:21.604 435847 4862 2 0 11513 2025-03-20 05:32:18.464 2025-03-20 05:32:18.464 435847 5293 8 0 11514 2025-03-20 05:32:18.762 2025-03-20 05:32:18.762 435847 5829 8 0 11515 2025-03-20 11:10:58.803 2025-03-20 11:10:58.803 435847 5961 90 0 11516 2025-03-20 03:54:24.994 2025-03-20 03:54:24.994 435847 6164 2 0 11517 2025-03-20 03:58:09.898 2025-03-20 03:58:09.898 435847 6360 9 0 11518 2025-03-20 03:54:21.226 2025-03-20 03:54:21.226 435847 6430 2 0 11519 2025-03-20 03:54:18.686 2025-03-20 03:54:18.686 435847 7119 21 0 11520 2025-03-20 03:54:20.391 2025-03-20 03:54:20.391 435847 7667 2 0 11521 2025-03-20 03:54:21.226 2025-03-20 03:54:21.226 435847 7772 21 0 11522 2025-03-19 22:17:30.657 2025-03-19 22:17:30.657 435847 7827 2 0 11523 2025-03-20 03:58:09.596 2025-03-20 03:58:09.596 435847 8037 1 0 11524 2025-03-19 21:40:13.709 2025-03-19 21:40:13.709 435847 8045 81 0 11525 2025-03-20 06:06:10.491 2025-03-20 06:06:10.491 435847 8506 90 0 11526 2025-03-20 03:54:22.708 2025-03-20 03:54:22.708 435847 8544 2 0 11527 2025-03-20 05:32:19.343 2025-03-20 05:32:19.343 435847 9084 8 0 11528 2025-03-20 08:14:31.269 2025-03-20 08:14:31.269 435847 9159 2 0 11529 2025-03-20 03:54:21.42 2025-03-20 03:54:21.42 435847 9183 2 0 11530 2025-03-20 03:54:19.959 2025-03-20 03:54:19.959 435847 9496 21 0 11531 2025-03-20 05:32:18.317 2025-03-20 05:32:18.317 435847 9758 8 0 11532 2025-03-20 03:58:09.008 2025-03-20 03:58:09.008 435847 9833 1 0 11533 2025-03-20 05:32:15.695 2025-03-20 05:32:15.695 435847 9843 75 0 11534 2025-03-20 03:54:21.968 2025-03-20 03:54:21.968 435847 9916 21 0 11535 2025-03-19 20:41:03.867 2025-03-19 20:41:03.867 435847 9920 10 0 11536 2025-03-20 05:32:19.515 2025-03-20 05:32:19.515 435847 9982 75 0 11537 2025-03-20 03:54:24.627 2025-03-20 03:54:24.627 435847 10007 21 0 11538 2025-03-20 03:54:23.329 2025-03-20 03:54:23.329 435847 10273 21 0 11539 2025-03-20 02:08:09.446 2025-03-20 02:08:09.446 435847 10493 19 0 11540 2025-03-20 00:05:59.375 2025-03-20 00:05:59.375 435847 10549 14 0 11541 2025-03-20 03:54:19.959 2025-03-20 03:54:19.959 435847 10608 2 0 11542 2025-03-20 05:32:15.159 2025-03-20 05:32:15.159 435847 10849 8 0 11543 2025-03-19 21:55:07.528 2025-03-19 21:55:07.528 435847 11144 10 0 11544 2025-03-20 05:32:18.16 2025-03-20 05:32:18.16 435847 11522 75 0 11545 2025-03-20 04:06:49.08 2025-03-20 04:06:49.08 435847 11527 1 0 11546 2025-03-20 05:32:17.26 2025-03-20 05:32:17.26 435847 11621 8 0 11547 2025-03-19 23:13:19.174 2025-03-19 23:13:19.174 435847 11670 19 0 11548 2025-03-20 03:54:20.84 2025-03-20 03:54:20.84 435847 11678 2 0 11549 2025-03-20 03:54:19.56 2025-03-20 03:54:19.56 435847 11760 21 0 11550 2025-03-20 08:36:12.845 2025-03-20 08:36:12.845 435847 12188 19 0 11551 2025-03-20 08:36:12.675 2025-03-20 08:36:12.675 435847 12222 19 0 11552 2025-03-20 05:32:15.296 2025-03-20 05:32:15.296 435847 12356 8 0 11553 2025-03-20 01:04:56.544 2025-03-20 01:04:56.544 435847 12490 10 0 11554 2025-03-20 03:54:20.538 2025-03-20 03:54:20.538 435847 12562 2 0 11555 2025-03-20 05:32:18.617 2025-03-20 05:32:18.617 435847 12609 8 0 11556 2025-03-19 21:55:09.767 2025-03-19 21:55:09.767 435847 12808 10 0 11557 2025-03-20 05:32:18.932 2025-03-20 05:32:18.932 435847 12976 8 0 11558 2025-03-20 05:32:16.118 2025-03-20 05:32:16.118 435847 13132 17 0 11559 2025-03-20 03:54:20.391 2025-03-20 03:54:20.391 435847 13133 21 0 11560 2025-03-20 02:07:08.527 2025-03-20 02:07:08.527 435847 13399 4 0 11561 2025-03-20 03:54:20.649 2025-03-20 03:54:20.649 435847 13406 21 0 11562 2025-03-20 03:54:23.329 2025-03-20 03:54:23.329 435847 13798 2 0 11563 2025-03-20 03:54:22.193 2025-03-20 03:54:22.193 435847 14168 21 0 11564 2025-03-20 05:32:18.932 2025-03-20 05:32:18.932 435847 14607 75 0 11565 2025-03-20 00:05:59.375 2025-03-20 00:05:59.375 435847 14663 2 0 11566 2025-03-19 21:46:23.538 2025-03-19 21:46:23.538 435847 14688 10 0 11567 2025-03-20 03:54:24.994 2025-03-20 03:54:24.994 435847 14731 21 0 11568 2025-03-20 10:05:15.768 2025-03-20 10:05:15.768 435847 15045 2 0 11569 2025-03-20 08:17:06.689 2025-03-20 08:17:06.689 435847 15103 1 0 11570 2025-03-20 08:14:30.859 2025-03-20 08:14:30.859 435847 15148 2 0 11571 2025-03-20 05:32:19.98 2025-03-20 05:32:19.98 435847 15243 75 0 11572 2025-03-20 03:54:25.179 2025-03-20 03:54:25.179 435847 15273 2 0 11573 2025-03-20 03:58:09.008 2025-03-20 03:58:09.008 435847 15386 9 0 11574 2025-03-20 05:32:19.343 2025-03-20 05:32:19.343 435847 15536 75 0 11575 2025-03-20 05:32:19.045 2025-03-20 05:32:19.045 435847 15544 8 0 11576 2025-03-20 08:14:30.901 2025-03-20 08:14:30.901 435847 15690 19 0 11577 2025-03-19 22:17:30.657 2025-03-19 22:17:30.657 435847 15978 19 0 11578 2025-03-20 05:32:15.596 2025-03-20 05:32:15.596 435847 16097 149 0 11579 2025-03-20 03:54:22.528 2025-03-20 03:54:22.528 435847 16356 2 0 11580 2025-03-20 05:32:15.071 2025-03-20 05:32:15.071 435847 16513 75 0 11581 2025-03-20 05:32:15.071 2025-03-20 05:32:15.071 435847 16542 8 0 11582 2025-03-20 01:04:55.999 2025-03-20 01:04:55.999 435847 16667 10 0 11583 2025-03-19 20:15:51.489 2025-03-19 20:15:51.489 435847 16695 100 0 11584 2025-03-20 03:54:19.032 2025-03-20 03:54:19.032 435847 16704 21 0 11585 2025-03-20 03:54:25.323 2025-03-20 03:54:25.323 435847 16753 21 0 11586 2025-03-20 08:14:31.538 2025-03-20 08:14:31.538 435847 16809 19 0 11587 2025-03-19 23:13:19.174 2025-03-19 23:13:19.174 435847 16965 2 0 11588 2025-03-20 03:54:24.809 2025-03-20 03:54:24.809 435847 17030 21 0 11589 2025-03-20 05:32:19.045 2025-03-20 05:32:19.045 435847 17147 75 0 11590 2025-03-20 03:54:23.836 2025-03-20 03:54:23.836 435847 17157 21 0 11591 2025-03-20 03:54:21.42 2025-03-20 03:54:21.42 435847 17221 21 0 11592 2025-03-20 00:51:13.976 2025-03-20 00:51:13.976 435847 17984 2 0 11593 2025-03-20 02:07:08.527 2025-03-20 02:07:08.527 435847 17991 36 0 11594 2025-03-20 11:11:00.609 2025-03-20 11:11:00.609 435847 18011 900 0 11595 2025-03-20 03:54:20.84 2025-03-20 03:54:20.84 435847 18271 21 0 11596 2025-03-20 03:54:19.242 2025-03-20 03:54:19.242 435847 18306 21 0 11597 2025-03-20 03:54:23.736 2025-03-20 03:54:23.736 435847 18309 21 0 11598 2025-03-20 03:54:22.339 2025-03-20 03:54:22.339 435847 18473 21 0 11599 2025-03-20 05:32:19.817 2025-03-20 05:32:19.817 435847 18525 8 0 11600 2025-03-20 01:04:56.79 2025-03-20 01:04:56.79 435847 18630 10 0 11601 2025-03-19 21:40:13.178 2025-03-19 21:40:13.178 435847 18637 1 0 11602 2025-03-20 03:54:25.742 2025-03-20 03:54:25.742 435847 18678 2 0 11603 2025-03-20 05:32:15.695 2025-03-20 05:32:15.695 435847 18865 8 0 11604 2025-03-20 03:54:24.809 2025-03-20 03:54:24.809 435847 18901 2 0 11605 2025-03-20 06:06:10.638 2025-03-20 06:06:10.638 435847 18923 10 0 11606 2025-03-20 06:06:10.933 2025-03-20 06:06:10.933 435847 19005 10 0 11607 2025-03-20 03:54:21.604 2025-03-20 03:54:21.604 435847 19292 21 0 11608 2025-03-19 21:40:12.974 2025-03-19 21:40:12.974 435847 19303 1 0 11609 2025-03-20 06:06:10.491 2025-03-20 06:06:10.491 435847 19375 10 0 11610 2025-03-20 05:59:19.738 2025-03-20 05:59:19.738 435847 19417 1 0 11611 2025-03-19 21:40:13.709 2025-03-19 21:40:13.709 435847 19488 9 0 11612 2025-03-20 05:32:17.413 2025-03-20 05:32:17.413 435847 19502 75 0 11613 2025-03-20 10:05:15.768 2025-03-20 10:05:15.768 435847 19512 19 0 11614 2025-03-20 04:06:49.08 2025-03-20 04:06:49.08 435847 19668 10 0 11615 2025-03-20 06:06:10.933 2025-03-20 06:06:10.933 435847 19735 90 0 11616 2025-03-20 08:14:31.269 2025-03-20 08:14:31.269 435847 19777 19 0 11617 2025-03-20 03:54:21.786 2025-03-20 05:32:19.263 435847 19796 95 0 11618 2025-03-20 03:54:25.93 2025-03-20 03:54:25.93 435847 19952 2 0 11619 2025-03-20 05:18:18.339 2025-03-20 05:18:18.339 435847 19980 19 0 11620 2025-03-20 03:54:20.137 2025-03-20 03:54:20.137 435847 19996 2 0 11621 2025-03-20 01:04:56.79 2025-03-20 01:04:56.79 435847 20023 90 0 11622 2025-03-19 22:16:05.497 2025-03-19 22:16:05.497 435847 20254 19 0 11623 2025-03-19 21:55:07.528 2025-03-19 21:55:07.528 435847 20337 90 0 11624 2025-03-20 08:14:31.028 2025-03-20 08:14:31.028 435847 20377 19 0 11625 2025-03-20 05:32:19.515 2025-03-20 05:32:19.515 435847 20412 8 0 11626 2025-03-20 11:11:00.609 2025-03-20 11:11:00.609 435847 20433 8100 0 11627 2025-03-20 03:54:22.528 2025-03-20 03:54:22.528 435847 20599 21 0 11628 2025-03-19 21:46:23.538 2025-03-19 21:46:23.538 435847 20663 90 0 11629 2025-03-20 08:14:30.859 2025-03-20 08:14:30.859 435847 20669 19 0 11630 2025-03-20 03:54:24.018 2025-03-20 03:54:24.018 435847 20691 2 0 11631 2025-03-20 03:54:21.014 2025-03-20 03:54:21.014 435847 20745 2 0 11632 2025-03-19 21:55:09.767 2025-03-19 21:55:09.767 435847 20756 90 0 11633 2025-03-20 04:06:48.927 2025-03-20 08:14:31.028 435847 20757 3 0 11634 2025-03-20 03:54:23.533 2025-03-20 03:54:23.533 435847 20841 21 0 11635 2025-03-20 05:32:19.668 2025-03-20 05:32:19.668 435847 20871 8 0 11636 2025-03-20 05:32:18.238 2025-03-20 05:32:18.238 435847 20911 75 0 11637 2025-03-19 21:40:12.974 2025-03-19 21:40:12.974 435847 20922 0 0 11638 2025-03-20 05:32:18.762 2025-03-20 05:32:18.762 435847 20981 75 0 11639 2025-03-20 05:32:19.668 2025-03-20 05:32:19.668 435847 20987 75 0 11640 2025-03-20 02:08:09.446 2025-03-20 02:08:09.446 435847 21114 2 0 11641 2025-03-20 03:54:19.385 2025-03-20 03:54:19.385 435847 21136 2 0 11642 2025-03-20 05:32:18.238 2025-03-20 05:32:18.238 435847 21248 8 0 11643 2025-03-20 05:59:19.738 2025-03-20 05:59:19.738 435847 21281 0 0 11644 2025-03-20 03:54:25.93 2025-03-20 03:54:25.93 435847 21320 21 0 11645 2025-03-20 03:54:23.836 2025-03-20 03:54:23.836 435847 21332 2 0 11646 2025-03-20 03:54:19.242 2025-03-20 03:54:19.242 435847 21339 2 0 11647 2025-03-20 03:54:19.032 2025-03-20 03:54:19.032 435847 21349 2 0 11648 2025-03-20 05:32:18.617 2025-03-20 05:32:18.617 435847 21401 75 0 11649 2025-03-20 01:04:56.544 2025-03-20 01:04:56.544 435847 21405 90 0 11650 2025-03-19 21:55:08.951 2025-03-19 21:55:08.951 435847 21406 10 0 11651 2025-03-20 03:54:21.968 2025-03-20 03:54:21.968 435847 21412 2 0 11652 2025-03-20 05:32:19.817 2025-03-20 05:32:19.817 435847 21416 75 0 11653 2025-03-20 05:32:16.546 2025-03-20 05:32:16.546 435847 21424 17 0 11654 2025-03-20 05:32:18.223 2025-03-20 05:32:18.223 435847 21427 75 0 11655 2025-03-19 22:03:01.636 2025-03-19 22:03:01.636 435847 21482 2 0 11656 2025-03-20 04:06:49.243 2025-03-20 04:06:49.243 435847 21485 10 0 11657 2025-03-20 03:54:20.538 2025-03-20 03:54:20.538 435847 21518 21 0 11658 2025-03-20 05:32:19.98 2025-03-20 05:32:19.98 435847 21520 8 0 11659 2025-03-19 21:55:08.951 2025-03-20 06:06:10.781 435847 21547 100 0 11660 2025-03-20 05:32:18.464 2025-03-20 05:32:18.464 435847 21577 75 0 11661 2025-03-20 03:54:20.137 2025-03-20 03:54:20.137 435847 21600 21 0 11662 2025-03-20 05:32:15.296 2025-03-20 05:32:15.296 435847 21603 75 0 11663 2025-03-20 05:32:15.828 2025-03-20 05:32:15.828 435847 21620 75 0 11664 2025-03-20 06:06:10.638 2025-03-20 06:06:10.638 435847 21766 90 0 11665 2025-03-20 05:32:14.906 2025-03-20 05:32:14.906 435847 21791 8 0 11666 2025-03-20 03:54:22.708 2025-03-20 03:54:22.708 435847 21810 21 0 11667 2025-03-20 08:14:30.901 2025-03-20 08:14:30.901 435847 21814 2 0 11668 2025-03-19 22:03:02.092 2025-03-19 22:03:02.092 435847 21824 2 0 11669 2025-03-20 00:15:06.932 2025-03-20 00:15:06.932 435848 5597 9 0 11670 2025-03-20 00:15:06.932 2025-03-20 00:15:06.932 435848 18368 1 0 11671 2025-03-19 20:21:21.9 2025-03-19 20:21:21.9 435848 18615 1 0 11672 2025-03-19 20:21:40.25 2025-03-19 20:21:40.25 435849 9450 1 0 11673 2025-03-20 00:15:08.699 2025-03-20 00:15:08.699 435849 11328 9 0 11674 2025-03-20 00:15:08.699 2025-03-20 00:15:08.699 435849 20970 1 0 11675 2025-03-19 22:04:02.581 2025-03-19 22:04:02.581 435850 2347 1 0 11676 2025-03-20 00:15:10.625 2025-03-20 00:15:10.625 435850 9334 9 0 11677 2025-03-19 20:23:04.715 2025-03-19 20:23:04.715 435850 15052 1 0 11678 2025-03-19 22:04:02.581 2025-03-19 22:04:02.581 435850 15386 0 0 11679 2025-03-20 00:15:10.625 2025-03-20 00:15:10.625 435850 20058 1 0 11680 2025-03-19 20:24:34.505 2025-03-19 20:24:34.505 435851 756 1 0 11681 2025-03-20 02:06:13.311 2025-03-20 02:06:13.311 435851 929 36 0 11682 2025-03-20 02:06:13.311 2025-03-20 02:06:13.311 435851 5794 4 0 11683 2025-03-19 22:03:30.698 2025-03-19 22:03:30.698 435852 831 1 0 11684 2025-03-19 20:27:46.846 2025-03-19 20:27:46.846 435852 5519 1 0 11685 2025-03-19 22:03:30.698 2025-03-19 22:03:30.698 435852 13042 9 0 11686 2025-03-19 20:28:58.388 2025-03-19 20:28:58.388 435853 20969 1 0 11687 2025-03-19 20:29:07.62 2025-03-19 20:29:07.62 435854 9341 1 0 11688 2025-03-19 20:29:44.543 2025-03-19 20:29:44.543 435855 3342 1 0 11689 2025-03-20 04:28:27.722 2025-03-20 04:28:27.722 435856 1737 3 0 11690 2025-03-20 04:28:27.722 2025-03-20 04:28:27.722 435856 2342 24 0 11691 2025-03-20 09:13:33.823 2025-03-20 09:13:33.823 435856 6526 2 0 11692 2025-03-20 09:13:33.823 2025-03-20 09:13:33.823 435856 9242 19 0 11693 2025-03-20 04:28:27.328 2025-03-20 04:28:27.328 435856 11670 24 0 11694 2025-03-20 04:28:27.537 2025-03-20 04:28:27.537 435856 17944 3 0 11695 2025-03-20 04:28:28.271 2025-03-20 04:28:28.271 435856 19576 24 0 11696 2025-03-20 04:28:28.271 2025-03-20 04:28:28.271 435856 19854 3 0 11697 2025-03-20 04:28:27.328 2025-03-20 04:28:27.328 435856 20969 3 0 11698 2025-03-20 04:28:27.537 2025-03-20 04:28:27.537 435856 21019 24 0 11699 2025-03-19 20:32:17.776 2025-03-19 20:32:17.776 435856 21578 1 0 11700 2025-03-19 20:36:59.9 2025-03-19 20:36:59.9 435857 11873 1 0 11701 2025-03-20 03:58:15.553 2025-03-20 03:58:15.553 435857 17183 1 0 11702 2025-03-20 03:58:15.553 2025-03-20 03:58:15.553 435857 17218 9 0 11703 2025-03-20 02:06:10.731 2025-03-20 02:06:10.731 435858 4862 4 0 11704 2025-03-19 20:38:26.038 2025-03-19 20:38:26.038 435858 7809 1 0 11705 2025-03-20 02:06:10.731 2025-03-20 02:06:10.731 435858 20606 36 0 11706 2025-03-19 20:38:44.747 2025-03-19 20:38:44.747 435859 9 1 0 11707 2025-03-19 22:46:06.522 2025-03-19 22:46:06.522 435859 822 115 0 11708 2025-03-19 22:46:06.522 2025-03-19 22:46:06.522 435859 1769 13 0 11709 2025-03-19 21:40:07.948 2025-03-19 21:40:07.948 435860 617 8 0 11710 2025-03-19 20:46:39.132 2025-03-19 20:46:39.132 435860 981 0 0 11711 2025-03-19 21:40:07.74 2025-03-19 21:40:07.74 435860 2748 0 0 11712 2025-03-19 21:40:09.246 2025-03-19 21:40:09.246 435860 4768 81 0 11713 2025-03-19 21:40:07.948 2025-03-19 21:40:07.948 435860 9200 1 0 11714 2025-03-19 21:40:07.74 2025-03-19 21:40:07.74 435860 17212 1 0 11715 2025-03-19 21:40:09.246 2025-03-19 21:40:09.246 435860 21216 9 0 11716 2025-03-19 20:40:58.364 2025-03-19 20:40:58.364 435860 21577 1 0 11717 2025-03-20 03:29:20.711 2025-03-20 03:29:20.711 435861 2774 1 0 11718 2025-03-20 05:48:27.462 2025-03-20 05:48:27.462 435861 2832 19 0 11719 2025-03-20 03:29:20.711 2025-03-20 03:29:20.711 435861 4313 9 0 11720 2025-03-20 03:29:20.056 2025-03-20 03:29:20.056 435861 14370 1 0 11721 2025-03-20 03:29:20.056 2025-03-20 03:29:20.056 435861 16193 9 0 11722 2025-03-19 20:41:36.086 2025-03-19 20:41:36.086 435861 17221 1 0 11723 2025-03-20 05:48:27.462 2025-03-20 05:48:27.462 435861 20222 2 0 11724 2025-03-19 20:43:39.159 2025-03-19 20:43:39.159 435862 4064 100 0 11725 2025-03-19 20:45:28.672 2025-03-19 20:45:28.672 435863 1823 1 0 11726 2025-03-19 22:16:21.571 2025-03-19 22:16:21.571 435864 9276 2 0 11727 2025-03-19 22:16:21.571 2025-03-19 22:16:21.571 435864 16145 19 0 11728 2025-03-19 20:46:35.462 2025-03-19 20:46:35.462 435864 18114 21 0 11729 2025-03-19 20:51:25.302 2025-03-19 20:51:25.302 435865 17693 1 0 11730 2025-03-20 00:20:28.333 2025-03-20 00:20:28.333 435866 993 9 0 11731 2025-03-20 03:36:48.497 2025-03-20 03:36:48.497 435866 4259 2 0 11732 2025-03-19 20:53:07.383 2025-03-19 20:53:07.383 435866 14271 1 0 11733 2025-03-20 00:20:28.333 2025-03-20 00:20:28.333 435866 14705 1 0 11734 2025-03-20 03:36:48.497 2025-03-20 03:36:48.497 435866 16214 0 0 11735 2025-03-20 03:36:42.704 2025-03-20 03:36:42.704 435867 2326 2 0 11736 2025-03-19 20:55:45.746 2025-03-19 20:55:45.746 435867 3439 1 0 11737 2025-03-20 03:36:42.704 2025-03-20 03:36:42.704 435867 8376 0 0 11738 2025-03-20 00:20:27.523 2025-03-20 00:20:27.523 435867 13599 1 0 11739 2025-03-20 00:20:27.523 2025-03-20 00:20:27.523 435867 21091 9 0 11740 2025-03-19 20:58:48.719 2025-03-19 20:58:48.719 435868 6555 1 0 11741 2025-03-20 11:41:31.93 2025-03-20 11:41:31.93 435869 733 1 0 11742 2025-03-19 21:06:58.105 2025-03-19 21:06:58.105 435869 2335 2 0 11743 2025-03-19 21:03:45.705 2025-03-19 21:03:45.705 435869 5003 0 0 11744 2025-03-20 11:41:31.93 2025-03-20 11:41:31.93 435869 9705 9 0 11745 2025-03-19 21:06:58.105 2025-03-19 21:06:58.105 435869 18219 19 0 11746 2025-03-19 21:00:42.117 2025-03-19 21:00:42.117 435869 21249 1 0 11747 2025-03-19 21:02:25.353 2025-03-19 21:02:25.353 435869 21547 0 0 11748 2025-03-19 22:50:49.642 2025-03-19 22:50:49.642 435870 659 2 0 11749 2025-03-19 21:00:45.795 2025-03-19 21:00:45.795 435870 5775 1 0 11750 2025-03-19 22:50:49.642 2025-03-19 22:50:49.642 435870 21104 18 0 11751 2025-03-19 22:53:12.783 2025-03-19 22:53:12.783 435871 1429 9 0 11752 2025-03-19 21:41:41.223 2025-03-19 21:41:41.223 435871 2942 4 0 11753 2025-03-19 21:41:41.223 2025-03-19 21:41:41.223 435871 8269 0 0 11754 2025-03-19 22:53:12.783 2025-03-19 22:53:12.783 435871 16847 1 0 11755 2025-03-19 21:01:57.014 2025-03-19 21:01:57.014 435871 19673 1 0 11756 2025-03-19 21:02:45.286 2025-03-19 21:02:45.286 435872 1007 1 0 11757 2025-03-20 04:04:36.093 2025-03-20 04:04:36.093 435872 12272 3 0 11758 2025-03-20 04:04:36.093 2025-03-20 04:04:36.093 435872 19292 27 0 11759 2025-03-20 10:42:33.116 2025-03-20 10:42:33.116 435873 954 9 0 11760 2025-03-20 10:42:33.116 2025-03-20 10:42:33.116 435873 1124 1 0 11761 2025-03-20 00:28:39.253 2025-03-20 00:28:39.253 435873 7960 18 0 11762 2025-03-20 00:28:39.253 2025-03-20 00:28:39.253 435873 19930 2 0 11763 2025-03-19 21:03:57.623 2025-03-19 21:03:57.623 435873 21036 1 0 11764 2025-03-19 23:10:12.5 2025-03-19 23:10:12.5 435874 651 2 0 11765 2025-03-19 21:07:02.081 2025-03-19 21:07:02.081 435874 2583 1 0 11766 2025-03-19 23:10:12.5 2025-03-19 23:10:12.5 435874 12291 19 0 11767 2025-03-19 21:09:54.444 2025-03-19 21:09:54.444 435876 1650 1 0 11768 2025-03-20 12:31:01.805 2025-03-20 12:31:01.805 435876 8684 3 0 11769 2025-03-20 12:31:01.805 2025-03-20 12:31:01.805 435876 20502 0 0 11770 2025-03-20 02:25:31.785 2025-03-20 02:25:31.785 435877 1142 3 0 11771 2025-03-20 02:25:31.785 2025-03-20 02:25:31.785 435877 4225 23 0 11772 2025-03-19 21:16:07.783 2025-03-19 21:16:07.783 435877 9348 10 0 11773 2025-03-19 21:17:29.646 2025-03-19 21:17:29.646 435878 7992 1 0 11774 2025-03-20 02:05:42.943 2025-03-20 02:05:42.943 435878 15091 36 0 11775 2025-03-20 02:05:42.943 2025-03-20 02:05:42.943 435878 17838 4 0 11776 2025-03-19 21:18:24.836 2025-03-19 21:18:24.836 435879 10469 1 0 11777 2025-03-19 21:19:09.067 2025-03-19 21:19:09.067 435880 10393 1 0 11778 2025-03-20 02:05:34.674 2025-03-20 02:05:34.674 435881 795 36 0 11779 2025-03-20 02:05:34.674 2025-03-20 02:05:34.674 435881 1401 4 0 11780 2025-03-19 21:29:02.321 2025-03-19 21:29:02.321 435881 11158 1 0 11781 2025-03-19 21:30:55.554 2025-03-19 21:30:55.554 435881 15521 0 0 11782 2025-03-20 07:04:09.632 2025-03-20 07:04:09.632 435882 636 9 0 11783 2025-03-20 07:04:54.521 2025-03-20 07:04:54.521 435882 659 9 0 11784 2025-03-20 07:04:14.94 2025-03-20 07:04:14.94 435882 725 9 0 11785 2025-03-20 07:04:09.245 2025-03-20 07:04:09.245 435882 736 9 0 11786 2025-03-20 07:04:09.245 2025-03-20 07:04:09.245 435882 746 1 0 11787 2025-03-20 07:04:54.069 2025-03-20 07:04:54.069 435882 775 1 0 11788 2025-03-20 07:04:52.581 2025-03-20 07:04:52.581 435882 976 9 0 11789 2025-03-20 07:04:15.697 2025-03-20 07:04:15.697 435882 1307 1 0 11790 2025-03-20 07:04:54.069 2025-03-20 07:04:54.069 435882 2111 9 0 11791 2025-03-20 07:04:15.329 2025-03-20 07:04:15.329 435882 3478 9 0 11792 2025-03-20 07:04:14.551 2025-03-20 07:04:14.551 435882 8173 9 0 11793 2025-03-20 07:04:15.329 2025-03-20 07:04:15.329 435882 9335 1 0 11794 2025-03-20 07:04:53.193 2025-03-20 07:04:53.193 435882 9366 1 0 11795 2025-03-20 02:58:46.975 2025-03-20 02:58:46.975 435882 9758 2 0 11796 2025-03-20 11:35:34.129 2025-03-20 11:35:34.129 435882 10060 19 0 11797 2025-03-20 07:04:53.193 2025-03-20 07:04:53.193 435882 12220 9 0 11798 2025-03-20 07:04:14.278 2025-03-20 07:04:14.278 435882 12965 9 0 11799 2025-03-20 07:04:10.118 2025-03-20 07:04:10.118 435882 13162 1 0 11800 2025-03-20 07:04:14.551 2025-03-20 07:04:14.551 435882 14857 1 0 11801 2025-03-20 07:04:08.902 2025-03-20 07:04:08.902 435882 14941 9 0 11802 2025-03-20 11:35:34.129 2025-03-20 11:35:34.129 435882 15624 2 0 11803 2025-03-20 07:04:09.632 2025-03-20 07:04:09.632 435882 16259 1 0 11804 2025-03-20 07:04:52.084 2025-03-20 07:04:52.084 435882 16406 1 0 11805 2025-03-20 07:04:10.118 2025-03-20 07:04:10.118 435882 16410 9 0 11806 2025-03-20 07:04:53.605 2025-03-20 07:04:53.605 435882 16684 1 0 11807 2025-03-20 07:04:10.338 2025-03-20 07:04:10.338 435882 17014 1 0 11808 2025-03-20 07:04:55.081 2025-03-20 07:04:55.081 435882 17030 1 0 11809 2025-03-20 07:04:13.957 2025-03-20 07:04:13.957 435882 18225 9 0 11810 2025-03-20 09:50:14.064 2025-03-20 09:50:14.064 435882 18772 1 0 11811 2025-03-20 07:04:52.084 2025-03-20 07:04:52.084 435882 18956 9 0 11812 2025-03-20 07:04:54.521 2025-03-20 07:04:54.521 435882 19016 1 0 11813 2025-03-19 21:29:56.603 2025-03-19 21:29:56.603 435882 19569 21 0 11814 2025-03-20 07:04:52.581 2025-03-20 07:04:52.581 435882 20133 1 0 11815 2025-03-20 02:58:46.975 2025-03-20 02:58:46.975 435882 20201 19 0 11816 2025-03-20 07:04:53.605 2025-03-20 07:04:53.605 435882 20275 9 0 11817 2025-03-20 07:04:55.081 2025-03-20 07:04:55.081 435882 21349 9 0 11818 2025-03-20 07:04:08.902 2025-03-20 07:04:08.902 435882 21520 1 0 11819 2025-03-20 07:04:14.278 2025-03-20 09:50:14.064 435882 21577 10 0 11820 2025-03-20 07:04:14.94 2025-03-20 07:04:14.94 435882 21709 1 0 11821 2025-03-20 07:04:15.697 2025-03-20 07:04:15.697 435882 21712 9 0 11822 2025-03-20 07:04:13.957 2025-03-20 07:04:13.957 435882 21791 1 0 11823 2025-03-20 07:04:10.338 2025-03-20 07:04:10.338 435882 21833 9 0 11824 2025-03-20 02:41:12.563 2025-03-20 02:41:12.563 435883 726 3 0 11825 2025-03-20 02:58:14.165 2025-03-20 02:58:14.165 435883 1495 2 0 11826 2025-03-20 02:50:27.216 2025-03-20 02:50:27.216 435883 2213 1 0 11827 2025-03-20 02:41:12.563 2025-03-20 02:41:12.563 435883 15521 27 0 11828 2025-03-20 02:58:14.165 2025-03-20 02:58:14.165 435883 20500 19 0 11829 2025-03-20 02:50:27.216 2025-03-20 02:50:27.216 435883 21408 7 0 11830 2025-03-19 21:41:29.74 2025-03-19 21:41:29.74 435884 9367 0 100 11831 2025-03-19 21:51:59.167 2025-03-19 21:51:59.167 435885 12821 19 0 11832 2025-03-19 21:51:59.167 2025-03-19 21:51:59.167 435885 15100 2 0 11833 2025-03-19 21:36:46.462 2025-03-19 21:36:46.462 435885 20596 1 0 11834 2025-03-19 21:41:19.616 2025-03-19 21:41:19.616 435886 12261 1 0 11835 2025-03-19 21:42:25.773 2025-03-19 21:42:25.773 435887 21393 1 0 11836 2025-03-19 21:43:38.43 2025-03-19 21:43:38.43 435888 651 1 0 11837 2025-03-19 22:40:55.877 2025-03-19 22:40:55.877 435889 2042 9 0 11838 2025-03-19 21:44:53.733 2025-03-19 21:44:53.733 435889 2620 1 0 11839 2025-03-19 22:40:55.877 2025-03-19 22:40:55.877 435889 14080 1 0 11840 2025-03-19 21:46:04.811 2025-03-19 21:46:04.811 435890 917 1 0 11841 2025-03-20 00:15:27.403 2025-03-20 00:15:27.403 435890 2224 2 0 11842 2025-03-20 00:15:27.403 2025-03-20 00:15:27.403 435890 15160 19 0 11843 2025-03-19 21:46:42.451 2025-03-19 21:46:42.451 435891 880 7 0 11844 2025-03-20 04:12:48.67 2025-03-20 04:12:48.67 435891 1596 1 0 11845 2025-03-20 04:12:48.095 2025-03-20 04:12:48.095 435891 9366 1 0 11846 2025-03-20 03:40:00.572 2025-03-20 03:40:00.572 435891 16354 15 0 11847 2025-03-20 03:40:00.572 2025-03-20 03:40:00.572 435891 16704 2 0 11848 2025-03-20 04:12:48.67 2025-03-20 04:12:48.67 435891 16747 8 0 11849 2025-03-20 04:12:48.095 2025-03-20 04:12:48.095 435891 17116 0 0 11850 2025-03-20 00:51:40.749 2025-03-20 00:51:40.749 435892 690 19 0 11851 2025-03-20 03:58:12.415 2025-03-20 03:58:12.415 435892 1959 9 0 11852 2025-03-20 03:58:12.415 2025-03-20 03:58:12.415 435892 19488 1 0 11853 2025-03-20 00:51:40.749 2025-03-20 00:51:40.749 435892 19570 2 0 11854 2025-03-19 21:46:42.615 2025-03-19 21:46:42.615 435892 21555 1 0 11855 2025-03-19 21:49:22.955 2025-03-19 21:49:22.955 435893 15703 1 0 11856 2025-03-19 21:53:34.447 2025-03-19 21:53:34.447 435894 5779 10 0 11857 2025-03-20 04:23:04.713 2025-03-20 04:23:04.713 435895 10981 5 0 11858 2025-03-20 04:23:03.057 2025-03-20 04:23:03.057 435895 14818 5 0 11859 2025-03-20 04:23:04.713 2025-03-20 04:23:04.713 435895 15521 1 0 11860 2025-03-20 04:23:03.057 2025-03-20 04:23:03.057 435895 16347 1 0 11861 2025-03-19 21:53:38.536 2025-03-19 21:53:38.536 435895 20555 1 0 11862 2025-03-19 21:53:52.469 2025-03-19 21:53:52.469 435896 19813 1 0 11863 2025-03-19 21:57:28.892 2025-03-19 21:57:28.892 435897 19463 1 0 11864 2025-03-19 21:57:56.556 2025-03-19 21:57:56.556 435898 12245 1 0 11865 2025-03-19 21:58:39.969 2025-03-19 21:58:39.969 435899 1142 1 0 11866 2025-03-19 23:46:29.897 2025-03-19 23:46:29.897 435900 14941 14 0 11867 2025-03-19 23:46:29.897 2025-03-19 23:46:29.897 435900 20412 2 0 11868 2025-03-19 22:00:36.919 2025-03-19 22:00:36.919 435900 21506 1 0 11869 2025-03-19 22:01:05.976 2025-03-19 22:01:05.976 435901 12368 1 0 11870 2025-03-19 22:17:53.057 2025-03-19 22:17:53.057 435902 660 0 0 11871 2025-03-19 22:17:51.7 2025-03-19 22:17:51.7 435902 670 1 0 11872 2025-03-19 22:17:51.902 2025-03-19 22:17:51.902 435902 683 1 0 11873 2025-03-19 22:17:51.022 2025-03-19 22:17:51.022 435902 3461 0 0 11874 2025-03-19 22:17:51.7 2025-03-19 22:17:51.7 435902 5017 0 0 11875 2025-03-19 22:17:51.902 2025-03-19 22:17:51.902 435902 7746 0 0 11876 2025-03-19 22:04:30.446 2025-03-19 22:04:30.446 435902 11192 1 0 11877 2025-03-19 22:17:52.72 2025-03-19 22:17:52.72 435902 12779 1 0 11878 2025-03-19 22:17:50.87 2025-03-19 22:17:50.87 435902 13553 0 0 11879 2025-03-20 00:15:11.397 2025-03-20 00:15:11.397 435902 15052 1 0 11880 2025-03-19 22:17:51.19 2025-03-19 22:17:51.19 435902 15408 0 0 11881 2025-03-19 22:17:53.057 2025-03-19 22:17:53.057 435902 16954 1 0 11882 2025-03-19 22:17:50.87 2025-03-19 22:17:50.87 435902 18717 1 0 11883 2025-03-19 22:17:51.35 2025-03-19 22:17:51.35 435902 19502 1 0 11884 2025-03-19 22:17:52.72 2025-03-19 22:17:52.72 435902 20225 0 0 11885 2025-03-19 22:17:51.533 2025-03-19 22:17:51.533 435902 20602 0 0 11886 2025-03-19 22:17:51.35 2025-03-19 22:17:51.35 435902 20613 0 0 11887 2025-03-19 22:17:51.533 2025-03-19 22:17:51.533 435902 20642 1 0 11888 2025-03-19 22:17:51.022 2025-03-19 22:17:51.022 435902 20788 1 0 11889 2025-03-19 22:17:51.19 2025-03-19 22:17:51.19 435902 20841 1 0 11890 2025-03-19 22:17:52.391 2025-03-19 22:17:52.391 435902 21412 0 0 11891 2025-03-19 22:17:52.391 2025-03-19 22:17:52.391 435902 21688 1 0 11892 2025-03-20 00:15:11.397 2025-03-20 00:15:11.397 435902 21710 9 0 11893 2025-03-19 22:08:00.759 2025-03-19 22:08:00.759 435903 1745 10 0 11894 2025-03-19 23:58:17.556 2025-03-19 23:58:17.556 435904 669 1 0 11895 2025-03-20 04:08:37.515 2025-03-20 04:08:37.515 435904 2681 1 0 11896 2025-03-20 04:08:38.089 2025-03-20 04:08:38.089 435904 2710 1 0 11897 2025-03-19 23:58:17.429 2025-03-19 23:58:17.429 435904 3990 7 0 11898 2025-03-20 04:08:38.089 2025-03-20 04:08:38.089 435904 6202 8 0 11899 2025-03-20 04:08:37.515 2025-03-20 04:08:37.515 435904 7766 0 0 11900 2025-03-19 23:03:56.412 2025-03-19 23:03:56.412 435904 9159 2 0 11901 2025-03-19 22:12:34.733 2025-03-19 22:12:34.733 435904 16284 0 0 11902 2025-03-20 04:08:38.842 2025-03-20 04:08:38.842 435904 19829 9 0 11903 2025-03-20 04:08:38.842 2025-03-20 04:08:38.842 435904 21022 81 0 11904 2025-03-19 23:58:17.556 2025-03-19 23:58:17.556 435904 21026 7 0 11905 2025-03-19 23:03:56.412 2025-03-19 23:03:56.412 435904 21063 19 0 11906 2025-03-19 23:58:17.429 2025-03-19 23:58:17.429 435904 21518 1 0 11907 2025-03-19 22:09:56.967 2025-03-19 22:09:56.967 435904 21526 1 0 11908 2025-03-20 05:02:15.126 2025-03-20 05:02:15.126 435905 680 9 0 11909 2025-03-20 05:02:15.126 2025-03-20 05:02:15.126 435905 756 1 0 11910 2025-03-20 04:13:53.228 2025-03-20 04:13:53.228 435905 1488 810 0 11911 2025-03-20 03:28:11.773 2025-03-20 03:28:11.773 435905 1801 2 0 11912 2025-03-19 22:58:12.372 2025-03-19 22:58:12.372 435905 2232 19 0 11913 2025-03-20 05:40:38.784 2025-03-20 05:40:38.784 435905 3683 149 0 11914 2025-03-20 05:49:26.377 2025-03-20 05:49:26.377 435905 4238 2 0 11915 2025-03-20 04:13:44.688 2025-03-20 04:13:44.688 435905 4313 8 0 11916 2025-03-20 04:13:44.365 2025-03-20 04:13:44.365 435905 5003 0 0 11917 2025-03-20 08:05:16.25 2025-03-20 08:05:16.25 435905 5359 3 0 11918 2025-03-20 08:51:27.216 2025-03-20 08:51:27.216 435905 5455 19 0 11919 2025-03-20 05:40:37.984 2025-03-20 05:40:37.984 435905 6765 8 0 11920 2025-03-20 08:05:18.333 2025-03-20 08:05:18.333 435905 7418 30 0 11921 2025-03-20 05:35:51.895 2025-03-20 05:35:51.895 435905 8796 36 0 11922 2025-03-20 04:13:44.365 2025-03-20 04:13:44.365 435905 9363 1 0 11923 2025-03-20 05:40:37.706 2025-03-20 05:40:37.706 435905 9438 8 0 11924 2025-03-20 05:35:51.895 2025-03-20 05:35:51.895 435905 10519 4 0 11925 2025-03-20 05:40:38.784 2025-03-20 05:40:38.784 435905 10549 17 0 11926 2025-03-20 00:18:00.346 2025-03-20 00:18:00.346 435905 10586 1 0 11927 2025-03-19 22:20:51.341 2025-03-19 22:20:51.341 435905 11450 10 0 11928 2025-03-20 08:05:15.653 2025-03-20 08:05:15.653 435905 11477 3 0 11929 2025-03-20 08:51:27.216 2025-03-20 08:51:27.216 435905 11621 2 0 11930 2025-03-20 05:40:37.984 2025-03-20 05:40:37.984 435905 12768 75 0 11931 2025-03-20 00:18:00.346 2025-03-20 00:18:00.346 435905 13217 10 0 11932 2025-03-20 05:40:36.922 2025-03-20 05:40:36.922 435905 13843 8 0 11933 2025-03-20 05:40:38.414 2025-03-20 05:40:38.414 435905 14376 8 0 11934 2025-03-20 05:40:36.922 2025-03-20 05:40:36.922 435905 15103 75 0 11935 2025-03-20 05:40:37.884 2025-03-20 05:40:37.884 435905 15119 8 0 11936 2025-03-19 22:20:51.341 2025-03-19 22:20:51.341 435905 15282 90 0 11937 2025-03-20 08:05:18.333 2025-03-20 08:05:18.333 435905 16097 3 0 11938 2025-03-20 05:57:48.665 2025-03-20 05:57:48.665 435905 16351 2 0 11939 2025-03-20 08:00:20.964 2025-03-20 08:00:20.964 435905 16679 190 0 11940 2025-03-20 08:05:16.25 2025-03-20 08:05:16.25 435905 17494 30 0 11941 2025-03-20 08:05:15.653 2025-03-20 08:05:15.653 435905 18468 30 0 11942 2025-03-20 05:49:26.377 2025-03-20 05:49:26.377 435905 18528 19 0 11943 2025-03-20 05:40:38.921 2025-03-20 05:40:38.921 435905 18734 8 0 11944 2025-03-20 04:13:45.413 2025-03-20 04:13:45.413 435905 19193 81 0 11945 2025-03-20 04:13:53.228 2025-03-20 04:13:53.228 435905 19812 90 0 11946 2025-03-20 08:05:16.081 2025-03-20 08:05:16.081 435905 20198 3 0 11947 2025-03-20 05:40:37.884 2025-03-20 05:40:37.884 435905 20481 75 0 11948 2025-03-20 05:57:48.665 2025-03-20 05:57:48.665 435905 20602 18 0 11949 2025-03-20 04:13:44.688 2025-03-20 04:13:44.688 435905 20642 1 0 11950 2025-03-20 08:00:20.964 2025-03-20 08:00:20.964 435905 20776 21 0 11951 2025-03-19 22:14:31.175 2025-03-19 22:14:31.175 435905 20825 10 0 11952 2025-03-20 04:13:45.413 2025-03-20 04:13:45.413 435905 20981 9 0 11953 2025-03-20 02:52:06.14 2025-03-20 02:52:06.14 435905 21042 2 0 11954 2025-03-20 05:40:37.706 2025-03-20 05:40:37.706 435905 21070 75 0 11955 2025-03-20 08:05:16.081 2025-03-20 08:05:16.081 435905 21166 30 0 11956 2025-03-19 22:58:12.372 2025-03-19 22:58:12.372 435905 21374 2 0 11957 2025-03-20 05:40:38.921 2025-03-20 05:40:38.921 435905 21577 75 0 11958 2025-03-20 05:40:38.414 2025-03-20 05:40:38.414 435905 21672 75 0 11959 2025-03-20 03:28:11.773 2025-03-20 03:28:11.773 435905 21771 19 0 11960 2025-03-20 02:52:06.14 2025-03-20 02:52:06.14 435905 21791 14 0 11961 2025-03-20 07:05:42.434 2025-03-20 07:05:42.434 435906 739 15 0 11962 2025-03-19 22:14:43.601 2025-03-19 22:14:43.601 435906 3353 21 0 11963 2025-03-20 08:41:33.058 2025-03-20 08:41:33.058 435906 4487 3 0 11964 2025-03-20 08:41:33.677 2025-03-20 08:41:33.677 435906 6148 243 0 11965 2025-03-20 08:41:33.058 2025-03-20 08:41:33.058 435906 9261 27 0 11966 2025-03-20 09:50:13.141 2025-03-20 09:50:13.141 435906 9982 9 0 11967 2025-03-20 09:50:13.141 2025-03-20 09:50:13.141 435906 21062 1 0 11968 2025-03-20 07:05:42.434 2025-03-20 07:05:42.434 435906 21418 135 0 11969 2025-03-20 08:41:33.677 2025-03-20 08:41:33.677 435906 21501 27 0 11970 2025-03-19 22:58:01.46 2025-03-19 22:58:01.46 435907 634 19 0 11971 2025-03-20 07:25:12.853 2025-03-20 07:25:12.853 435907 717 9 0 11972 2025-03-20 01:34:33.971 2025-03-20 01:34:33.971 435907 770 0 0 11973 2025-03-20 07:25:14.969 2025-03-20 07:25:14.969 435907 776 9 0 11974 2025-03-20 02:23:16.593 2025-03-20 02:23:16.593 435907 937 2 0 11975 2025-03-19 22:21:10.774 2025-03-19 22:21:10.774 435907 1173 21 0 11976 2025-03-20 07:25:14.218 2025-03-20 07:25:14.218 435907 1424 9 0 11977 2025-03-20 07:25:15.18 2025-03-20 07:25:15.18 435907 1806 1 0 11978 2025-03-20 01:34:35.129 2025-03-20 01:34:35.129 435907 2013 1 0 11979 2025-03-20 02:41:10.529 2025-03-20 02:41:10.529 435907 2543 27 0 11980 2025-03-20 07:25:14.218 2025-03-20 07:25:14.218 435907 2722 1 0 11981 2025-03-20 07:25:12.917 2025-03-20 07:25:12.917 435907 3518 1 0 11982 2025-03-20 07:25:12.853 2025-03-20 07:25:12.853 435907 4048 1 0 11983 2025-03-20 02:41:10.529 2025-03-20 02:41:10.529 435907 4115 3 0 11984 2025-03-20 07:25:15.899 2025-03-20 07:25:15.899 435907 4768 9 0 11985 2025-03-20 07:25:15.694 2025-03-20 07:25:15.694 435907 6616 1 0 11986 2025-03-20 01:34:34.706 2025-03-20 01:34:34.706 435907 7668 0 0 11987 2025-03-20 01:34:35.669 2025-03-20 01:34:35.669 435907 7809 0 0 11988 2025-03-20 07:25:14.969 2025-03-20 07:25:14.969 435907 7983 1 0 11989 2025-03-20 07:25:14.953 2025-03-20 07:25:14.953 435907 8376 9 0 11990 2025-03-20 01:34:35.129 2025-03-20 01:34:35.129 435907 8544 0 0 11991 2025-03-20 07:25:15.694 2025-03-20 07:25:15.694 435907 9171 9 0 11992 2025-03-20 01:33:09.895 2025-03-20 01:33:09.895 435907 9242 23 0 11993 2025-03-20 02:23:16.593 2025-03-20 02:23:16.593 435907 9820 14 0 11994 2025-03-20 01:34:33.971 2025-03-20 01:34:33.971 435907 9833 1 0 11995 2025-03-20 07:25:15.18 2025-03-20 07:25:15.18 435907 11789 9 0 11996 2025-03-20 01:53:35.234 2025-03-20 01:53:35.234 435907 11798 1 0 11997 2025-03-20 01:34:34.321 2025-03-20 01:34:34.321 435907 11873 0 0 11998 2025-03-20 07:25:13.351 2025-03-20 07:25:13.351 435907 13987 9 0 11999 2025-03-20 01:34:35.669 2025-03-20 07:25:15.899 435907 15624 2 0 12000 2025-03-20 01:34:34.321 2025-03-20 01:34:34.321 435907 16660 1 0 12001 2025-03-20 07:25:11.386 2025-03-20 07:25:11.386 435907 16939 1 0 12002 2025-03-20 01:53:35.234 2025-03-20 01:53:35.234 435907 17331 10 0 12003 2025-03-20 01:34:34.706 2025-03-20 01:34:34.706 435907 18368 1 0 12004 2025-03-20 07:25:10.992 2025-03-20 07:25:10.992 435907 18829 2 0 12005 2025-03-20 07:25:13.167 2025-03-20 07:25:13.167 435907 18901 9 0 12006 2025-03-20 07:25:14.953 2025-03-20 07:25:14.953 435907 19333 1 0 12007 2025-03-19 22:58:01.46 2025-03-19 22:58:01.46 435907 19826 2 0 12008 2025-03-20 07:25:13.167 2025-03-20 07:25:13.167 435907 20577 1 0 12009 2025-03-20 07:25:12.917 2025-03-20 07:25:12.917 435907 20642 9 0 12010 2025-03-20 07:25:10.992 2025-03-20 07:25:10.992 435907 20812 18 0 12011 2025-03-20 07:25:13.633 2025-03-20 07:25:13.633 435907 20993 1 0 12012 2025-03-20 07:25:13.633 2025-03-20 07:25:13.633 435907 21048 9 0 12013 2025-03-20 07:25:12.365 2025-03-20 07:25:12.365 435907 21164 9 0 12014 2025-03-20 07:25:13.351 2025-03-20 07:25:13.351 435907 21239 1 0 12015 2025-03-20 07:25:12.365 2025-03-20 07:25:12.365 435907 21263 1 0 12016 2025-03-20 07:25:11.386 2025-03-20 07:25:11.386 435907 21271 9 0 12017 2025-03-20 01:33:09.895 2025-03-20 01:33:09.895 435907 21421 3 0 12018 2025-03-19 22:58:00.646 2025-03-19 22:58:00.646 435908 652 19 0 12019 2025-03-20 07:04:01.702 2025-03-20 07:04:01.702 435908 1162 9 0 12020 2025-03-20 01:34:30.501 2025-03-20 01:34:30.501 435908 1286 1 0 12021 2025-03-20 03:44:22.477 2025-03-20 03:44:22.477 435908 1738 0 0 12022 2025-03-20 00:38:44.06 2025-03-20 00:38:44.06 435908 2326 23 0 12023 2025-03-20 01:34:30.123 2025-03-20 01:34:30.123 435908 5597 1 0 12024 2025-03-20 07:10:32.665 2025-03-20 07:10:32.665 435908 6149 3 0 12025 2025-03-20 00:38:44.06 2025-03-20 00:38:44.06 435908 11897 3 0 12026 2025-03-19 22:58:00.646 2025-03-19 22:58:00.646 435908 12245 2 0 12027 2025-03-20 01:34:30.739 2025-03-20 01:34:30.739 435908 12291 0 0 12028 2025-03-19 22:23:24.451 2025-03-19 22:23:24.451 435908 13378 210 0 12029 2025-03-20 07:04:01.275 2025-03-20 07:04:01.275 435908 13398 1 0 12030 2025-03-20 01:34:31.648 2025-03-20 01:34:31.648 435908 14255 1 0 12031 2025-03-20 07:04:01.702 2025-03-20 07:04:01.702 435908 15139 1 0 12032 2025-03-20 07:04:02.451 2025-03-20 07:04:02.451 435908 16834 9 0 12033 2025-03-20 07:04:02.451 2025-03-20 07:04:02.451 435908 17011 1 0 12034 2025-03-20 01:34:30.501 2025-03-20 01:34:30.501 435908 17592 0 0 12035 2025-03-20 01:34:31.648 2025-03-20 01:34:31.648 435908 19570 0 0 12036 2025-03-20 01:34:31.191 2025-03-20 01:34:31.191 435908 20436 1 0 12037 2025-03-20 02:23:15.889 2025-03-20 02:23:15.889 435908 20776 14 0 12038 2025-03-20 07:04:01.275 2025-03-20 07:04:01.275 435908 20864 9 0 12039 2025-03-20 01:34:30.123 2025-03-20 01:34:30.123 435908 20881 0 0 12040 2025-03-20 07:10:32.665 2025-03-20 07:10:32.665 435908 20990 0 0 12041 2025-03-20 01:34:30.739 2025-03-20 01:34:30.739 435908 21026 1 0 12042 2025-03-20 01:34:31.191 2025-03-20 01:34:31.191 435908 21114 0 0 12043 2025-03-20 02:23:15.889 2025-03-20 02:23:15.889 435908 21140 2 0 12044 2025-03-20 03:44:22.477 2025-03-20 03:44:22.477 435908 21556 3 0 12045 2025-03-20 00:39:06.052 2025-03-20 00:39:06.052 435909 795 1 0 12046 2025-03-19 22:23:50.638 2025-03-19 22:23:50.638 435909 11454 1 0 12047 2025-03-20 00:39:06.052 2025-03-20 00:39:06.052 435909 18177 9 0 12048 2025-03-19 22:23:54.433 2025-03-19 22:23:54.433 435910 628 100 0 12049 2025-03-19 22:54:04.943 2025-03-19 22:54:04.943 435910 1881 19 0 12050 2025-03-20 02:58:08.979 2025-03-20 02:58:08.979 435910 2502 2 0 12051 2025-03-20 02:53:17.508 2025-03-20 02:53:17.508 435910 5828 1 0 12052 2025-03-19 22:54:04.943 2025-03-19 22:54:04.943 435910 12870 2 0 12053 2025-03-20 02:53:17.508 2025-03-20 02:53:17.508 435910 21248 7 0 12054 2025-03-20 02:58:08.979 2025-03-20 02:58:08.979 435910 21832 19 0 12055 2025-03-19 22:25:49.4 2025-03-19 22:25:49.4 435911 837 1 0 12056 2025-03-19 23:03:20.653 2025-03-19 23:03:20.653 435911 7097 19 0 12057 2025-03-19 23:03:20.653 2025-03-19 23:03:20.653 435911 20681 2 0 12058 2025-03-20 11:38:03.71 2025-03-20 11:38:03.71 435912 895 9 0 12059 2025-03-20 02:53:55.21 2025-03-20 02:53:55.21 435912 1124 2 0 12060 2025-03-19 22:53:16.73 2025-03-19 22:53:16.73 435912 1236 19 0 12061 2025-03-20 00:26:46.781 2025-03-20 00:26:46.781 435912 1326 19 0 12062 2025-03-20 11:38:01.588 2025-03-20 11:38:01.588 435912 1534 1 0 12063 2025-03-19 22:26:46.597 2025-03-19 22:26:46.597 435912 2088 100 0 12064 2025-03-20 11:38:01.588 2025-03-20 11:38:01.588 435912 4538 9 0 12065 2025-03-19 22:56:11.239 2025-03-19 22:56:11.239 435912 5746 19 0 12066 2025-03-20 03:28:08.663 2025-03-20 03:28:08.663 435912 7675 19 0 12067 2025-03-20 11:38:03.71 2025-03-20 11:38:03.71 435912 8870 1 0 12068 2025-03-20 04:14:21.695 2025-03-20 04:14:21.695 435912 9796 8 0 12069 2025-03-20 04:14:21.695 2025-03-20 04:14:21.695 435912 10013 1 0 12070 2025-03-20 04:14:20.466 2025-03-20 04:14:20.466 435912 10608 0 0 12071 2025-03-20 11:38:04.583 2025-03-20 11:38:04.583 435912 12959 1 0 12072 2025-03-20 04:40:17.439 2025-03-20 04:40:17.439 435912 14449 1 0 12073 2025-03-19 22:53:16.73 2025-03-19 22:53:16.73 435912 15386 2 0 12074 2025-03-19 22:56:11.239 2025-03-19 22:56:11.239 435912 16301 2 0 12075 2025-03-20 03:28:08.663 2025-03-20 03:28:08.663 435912 17541 2 0 12076 2025-03-20 00:26:46.781 2025-03-20 00:26:46.781 435912 17838 2 0 12077 2025-03-19 22:41:31.596 2025-03-19 22:41:31.596 435912 18673 9 0 12078 2025-03-19 22:41:31.596 2025-03-19 22:41:31.596 435912 20381 1 0 12079 2025-03-20 02:53:55.21 2025-03-20 02:53:55.21 435912 20511 14 0 12080 2025-03-20 04:14:20.466 2025-03-20 04:14:20.466 435912 20981 1 0 12081 2025-03-20 04:40:17.439 2025-03-20 04:40:17.439 435912 21357 0 0 12082 2025-03-20 11:38:04.583 2025-03-20 11:38:04.583 435912 21798 9 0 12083 2025-03-19 22:28:14.303 2025-03-19 22:28:14.303 435913 13348 1 0 12084 2025-03-20 03:57:25.053 2025-03-20 03:57:25.053 435914 1495 0 0 12085 2025-03-19 22:30:02.405 2025-03-19 22:30:02.405 435914 2330 100 0 12086 2025-03-20 02:54:25.917 2025-03-20 02:54:25.917 435914 2748 7 0 12087 2025-03-19 22:52:45.962 2025-03-19 22:52:45.962 435914 5759 19 0 12088 2025-03-19 22:52:45.962 2025-03-19 22:52:45.962 435914 7097 2 0 12089 2025-03-19 22:37:39.653 2025-03-19 22:37:39.653 435914 7389 13 0 12090 2025-03-20 03:57:25.053 2025-03-20 03:57:25.053 435914 7773 3 0 12091 2025-03-19 22:57:55.102 2025-03-19 22:57:55.102 435914 8469 19 0 12092 2025-03-20 02:54:25.917 2025-03-20 02:54:25.917 435914 11443 1 0 12093 2025-03-19 22:57:55.102 2025-03-19 22:57:55.102 435914 15491 2 0 12094 2025-03-19 22:37:39.653 2025-03-19 22:37:39.653 435914 21383 115 0 12095 2025-03-19 22:52:48.934 2025-03-19 22:52:48.934 435915 1000 2 0 12096 2025-03-19 22:52:48.934 2025-03-19 22:52:48.934 435915 6537 19 0 12097 2025-03-19 22:38:38.798 2025-03-19 22:38:38.798 435915 12139 1 0 12098 2025-03-19 22:41:41.393 2025-03-19 22:41:41.393 435916 736 10 0 12099 2025-03-19 22:42:55.206 2025-03-19 22:42:55.206 435917 17014 1 0 12100 2025-03-19 22:43:59.421 2025-03-19 22:43:59.421 435918 674 1 0 12101 2025-03-19 23:32:42.671 2025-03-19 23:32:42.671 435919 11609 19 0 12102 2025-03-19 22:44:16.04 2025-03-19 22:44:16.04 435919 16789 1 0 12103 2025-03-19 23:32:42.671 2025-03-19 23:32:42.671 435919 20245 2 0 12104 2025-03-20 04:05:48.422 2025-03-20 04:05:48.422 435920 3717 27 0 12105 2025-03-19 22:46:48.626 2025-03-19 22:46:48.626 435920 7869 2 0 12106 2025-03-19 22:46:48.626 2025-03-19 22:46:48.626 435920 14122 19 0 12107 2025-03-19 22:44:26.758 2025-03-19 22:44:26.758 435920 17011 1 0 12108 2025-03-20 04:05:48.422 2025-03-20 04:05:48.422 435920 19471 3 0 12109 2025-03-19 23:57:23.116 2025-03-19 23:57:23.116 435921 2528 115 0 12110 2025-03-19 23:57:23.116 2025-03-19 23:57:23.116 435921 11590 13 0 12111 2025-03-19 22:45:21.827 2025-03-19 22:45:21.827 435921 21406 1 0 12112 2025-03-20 08:05:23.473 2025-03-20 08:05:23.473 435922 651 19 0 12113 2025-03-20 00:14:51.102 2025-03-20 00:14:51.102 435922 1320 1 0 12114 2025-03-20 08:05:23.473 2025-03-20 08:05:23.473 435922 5708 2 0 12115 2025-03-20 00:14:51.102 2025-03-20 00:14:51.102 435922 9242 10 0 12116 2025-03-20 02:24:15.006 2025-03-20 02:24:15.006 435922 9496 9 0 12117 2025-03-19 22:54:23.705 2025-03-19 22:54:23.705 435922 9845 19 0 12118 2025-03-19 22:45:36.179 2025-03-19 22:45:36.179 435922 13076 21 0 12119 2025-03-19 22:54:23.705 2025-03-19 22:54:23.705 435922 20816 2 0 12120 2025-03-20 02:24:15.006 2025-03-20 02:24:15.006 435922 21262 1 0 12121 2025-03-19 22:46:00.238 2025-03-19 22:46:00.238 435923 18321 1 0 12122 2025-03-20 00:14:05.231 2025-03-20 00:14:05.231 435924 641 10 0 12123 2025-03-20 02:22:41.113 2025-03-20 02:22:41.113 435924 1175 1 0 12124 2025-03-20 02:22:41.113 2025-03-20 02:22:41.113 435924 1705 7 0 12125 2025-03-19 22:50:08.506 2025-03-19 22:50:08.506 435924 2774 2 0 12126 2025-03-20 06:31:39.246 2025-03-20 06:31:39.246 435924 6573 5 0 12127 2025-03-19 22:57:26.309 2025-03-19 22:57:26.309 435924 8985 10 0 12128 2025-03-20 04:15:26.984 2025-03-20 04:15:26.984 435924 9169 9 0 12129 2025-03-19 23:18:44.81 2025-03-19 23:18:44.81 435924 10586 0 0 12130 2025-03-20 04:15:26.984 2025-03-20 04:15:26.984 435924 10849 81 0 12131 2025-03-20 08:09:58.826 2025-03-20 08:09:58.826 435924 13327 19 0 12132 2025-03-20 04:15:16.954 2025-03-20 04:15:16.954 435924 15488 1 0 12133 2025-03-20 06:31:39.246 2025-03-20 06:31:39.246 435924 16193 45 0 12134 2025-03-19 22:50:08.506 2025-03-19 22:50:08.506 435924 16704 19 0 12135 2025-03-19 23:18:44.81 2025-03-19 23:18:44.81 435924 16948 2 0 12136 2025-03-20 00:14:05.231 2025-03-20 00:14:05.231 435924 17064 1 0 12137 2025-03-20 04:15:17.713 2025-03-20 04:15:17.713 435924 17095 8 0 12138 2025-03-19 22:57:26.309 2025-03-19 22:57:26.309 435924 18231 90 0 12139 2025-03-20 08:09:58.826 2025-03-20 08:09:58.826 435924 19777 2 0 12140 2025-03-20 04:15:17.713 2025-03-20 04:15:17.713 435924 20710 1 0 12141 2025-03-19 22:46:18.021 2025-03-19 22:46:18.021 435924 21164 210 0 12142 2025-03-20 04:15:16.954 2025-03-20 04:15:16.954 435924 21356 0 0 12143 2025-03-19 22:48:20.551 2025-03-19 22:48:20.551 435925 803 1 0 12144 2025-03-20 03:54:36.514 2025-03-20 03:54:36.514 435925 1652 19 0 12145 2025-03-20 03:54:36.514 2025-03-20 03:54:36.514 435925 1761 2 0 12146 2025-03-20 04:15:11.474 2025-03-20 04:15:11.474 435925 7097 3 0 12147 2025-03-20 04:15:11.474 2025-03-20 04:15:11.474 435925 16176 27 0 12148 2025-03-20 02:58:01.105 2025-03-20 02:58:01.105 435926 635 19 0 12149 2025-03-20 04:15:49.527 2025-03-20 04:15:49.527 435926 670 1 0 12150 2025-03-20 04:15:49.322 2025-03-20 04:15:49.322 435926 2508 1 0 12151 2025-03-19 22:48:56.45 2025-03-19 22:48:56.45 435926 4395 21 0 12152 2025-03-20 04:15:49.527 2025-03-20 04:15:49.527 435926 5495 8 0 12153 2025-03-20 04:15:49.322 2025-03-20 04:15:49.322 435926 12738 0 0 12154 2025-03-19 22:55:05.353 2025-03-19 22:55:05.353 435926 15139 0 0 12155 2025-03-20 02:58:01.105 2025-03-20 02:58:01.105 435926 20182 2 0 12156 2025-03-19 22:50:22.136 2025-03-19 22:50:22.136 435927 10944 1 0 12157 2025-03-20 02:05:12.391 2025-03-20 02:05:12.391 435927 11153 4 0 12158 2025-03-20 02:05:12.391 2025-03-20 02:05:12.391 435927 20434 36 0 12159 2025-03-20 03:53:16.28 2025-03-20 03:53:16.28 435928 651 2 0 12160 2025-03-20 03:53:21.335 2025-03-20 03:53:21.335 435928 654 2 0 12161 2025-03-20 03:53:09.795 2025-03-20 03:53:09.795 435928 674 21 0 12162 2025-03-20 03:53:35.512 2025-03-20 03:53:35.512 435928 679 21 0 12163 2025-03-20 03:53:15.638 2025-03-20 03:53:15.638 435928 690 21 0 12164 2025-03-20 03:53:12.181 2025-03-20 03:53:12.181 435928 717 21 0 12165 2025-03-20 03:53:07.818 2025-03-20 03:53:07.818 435928 721 2 0 12166 2025-03-20 03:53:33.149 2025-03-20 03:53:33.149 435928 733 21 0 12167 2025-03-20 03:53:27.823 2025-03-20 03:53:27.823 435928 762 21 0 12168 2025-03-20 03:53:21.172 2025-03-20 03:53:21.172 435928 827 21 0 12169 2025-03-20 03:53:12.704 2025-03-20 03:53:12.704 435928 831 2 0 12170 2025-03-20 03:53:35.009 2025-03-20 03:53:35.009 435928 848 21 0 12171 2025-03-20 03:53:34.854 2025-03-20 03:53:34.854 435928 896 2 0 12172 2025-03-20 03:53:11.407 2025-03-20 03:53:11.407 435928 937 21 0 12173 2025-03-20 03:53:08.965 2025-03-20 03:53:18.233 435928 994 41 0 12174 2025-03-20 03:53:19.597 2025-03-20 03:53:19.597 435928 997 2 0 12175 2025-03-20 03:53:12.181 2025-03-20 03:53:12.181 435928 1006 2 0 12176 2025-03-20 03:53:31.635 2025-03-20 03:53:31.635 435928 1064 2 0 12177 2025-03-20 03:53:10.54 2025-03-20 03:53:12.007 435928 1105 5 0 12178 2025-03-20 03:53:27.659 2025-03-20 03:53:27.659 435928 1124 21 0 12179 2025-03-20 03:53:19.298 2025-03-20 03:53:19.298 435928 1145 2 0 12180 2025-03-20 03:53:18.763 2025-03-20 03:53:18.763 435928 1213 2 0 12181 2025-03-20 03:53:17.218 2025-03-20 03:53:17.218 435928 1221 2 0 12182 2025-03-20 03:53:11.182 2025-03-20 03:53:11.182 435928 1261 21 0 12183 2025-03-20 03:53:16.89 2025-03-20 03:53:16.89 435928 1286 21 0 12184 2025-03-20 03:53:33.788 2025-03-20 03:53:33.788 435928 1354 2 0 12185 2025-03-20 03:53:34.324 2025-03-20 03:53:34.324 435928 1519 21 0 12186 2025-03-20 03:53:31.26 2025-03-20 03:53:31.26 435928 1603 21 0 12187 2025-03-20 03:53:32.813 2025-03-20 03:53:32.813 435928 1729 21 0 12188 2025-03-20 03:53:28.15 2025-03-20 03:53:28.15 435928 1745 21 0 12189 2025-03-20 03:53:14.797 2025-03-20 03:53:28.15 435928 1784 7 0 12190 2025-03-20 03:53:09.644 2025-03-20 03:53:09.644 435928 1817 2 0 12191 2025-03-20 03:53:33.149 2025-03-20 03:53:33.149 435928 1881 2 0 12192 2025-03-20 03:53:08.298 2025-03-20 03:53:08.298 435928 2022 2 0 12193 2025-03-20 03:53:33.714 2025-03-20 03:53:33.714 435928 2056 2 0 12194 2025-03-20 03:53:34.155 2025-03-20 03:53:34.155 435928 2061 21 0 12195 2025-03-20 03:53:20.617 2025-03-20 03:53:20.617 435928 2111 2 0 12196 2025-03-20 03:53:27.98 2025-03-20 03:53:27.98 435928 2213 21 0 12197 2025-03-20 03:53:16.416 2025-03-20 03:53:30.891 435928 2367 5 0 12198 2025-03-20 03:53:20.617 2025-03-20 03:53:20.617 435928 2437 21 0 12199 2025-03-20 03:53:17.068 2025-03-20 03:53:17.068 435928 2652 21 0 12200 2025-03-20 03:53:28.322 2025-03-20 03:53:28.322 435928 2718 21 0 12201 2025-03-20 03:53:19.298 2025-03-20 03:53:19.298 435928 2724 21 0 12202 2025-03-20 03:53:18.426 2025-03-20 03:53:18.426 435928 2749 2 0 12203 2025-03-20 03:53:33.978 2025-03-20 03:53:33.978 435928 3213 21 0 12204 2025-03-19 22:50:56.835 2025-03-19 22:50:56.835 435928 3347 1 0 12205 2025-03-20 03:53:11.407 2025-03-20 03:53:11.407 435928 3717 2 0 12206 2025-03-20 03:53:11.836 2025-03-20 03:53:11.836 435928 4292 21 0 12207 2025-03-20 03:53:35.512 2025-03-20 03:53:35.512 435928 4345 2 0 12208 2025-03-20 03:53:16.713 2025-03-20 03:53:16.713 435928 4459 21 0 12209 2025-03-20 03:53:08.419 2025-03-20 03:53:08.419 435928 4763 21 0 12210 2025-03-20 03:53:11.182 2025-03-20 03:53:11.182 435928 4989 2 0 12211 2025-03-20 03:53:35.338 2025-03-20 03:53:35.338 435928 5129 2 0 12212 2025-03-20 03:53:12.349 2025-03-20 03:53:12.349 435928 5519 2 0 12213 2025-03-20 03:53:09.489 2025-03-20 03:53:09.489 435928 5703 2 0 12214 2025-03-20 03:53:12.704 2025-03-20 03:53:12.704 435928 5775 21 0 12215 2025-03-20 03:53:16.713 2025-03-20 03:53:16.713 435928 5828 2 0 12216 2025-03-20 03:53:16.518 2025-03-20 03:53:16.518 435928 5942 21 0 12217 2025-03-20 03:53:13.234 2025-03-20 03:53:13.234 435928 6382 2 0 12218 2025-03-20 03:53:30.891 2025-03-20 03:53:30.891 435928 6578 21 0 12219 2025-03-20 03:53:32.635 2025-03-20 03:53:32.635 435928 6687 21 0 12220 2025-03-20 03:53:27.823 2025-03-20 03:53:27.823 435928 7119 2 0 12221 2025-03-20 03:53:09.128 2025-03-20 03:53:13.234 435928 7675 23 0 12222 2025-03-20 03:53:09.489 2025-03-20 03:53:09.489 435928 7760 21 0 12223 2025-03-20 03:53:32.635 2025-03-20 03:53:32.635 435928 7891 2 0 12224 2025-03-20 03:53:31.946 2025-03-20 03:53:31.946 435928 7983 2 0 12225 2025-03-20 03:53:20.767 2025-03-20 03:53:20.767 435928 7992 21 0 12226 2025-03-20 03:53:12.536 2025-03-20 03:53:12.536 435928 8423 2 0 12227 2025-03-20 03:53:19.46 2025-03-20 03:53:19.46 435928 8648 21 0 12228 2025-03-20 03:53:28.992 2025-03-20 03:53:28.992 435928 9166 41 0 12229 2025-03-20 03:53:28.492 2025-03-20 03:53:28.492 435928 9355 2 0 12230 2025-03-20 03:53:31.603 2025-03-20 03:53:31.603 435928 9378 21 0 12231 2025-03-20 03:53:18.606 2025-03-20 03:53:18.606 435928 9418 21 0 12232 2025-03-20 03:53:09.128 2025-03-20 03:53:09.128 435928 9833 21 0 12233 2025-03-20 03:53:18.073 2025-03-20 03:53:18.073 435928 9845 2 0 12234 2025-03-20 03:53:09.644 2025-03-20 03:53:09.644 435928 10273 21 0 12235 2025-03-20 03:53:13.066 2025-03-20 03:53:13.066 435928 10291 21 0 12236 2025-03-20 03:53:08.298 2025-03-20 03:53:08.298 435928 10342 21 0 12237 2025-03-20 03:53:35.655 2025-03-20 08:32:43.976 435928 10409 3 0 12238 2025-03-20 03:53:07.818 2025-03-20 03:53:07.818 435928 10586 21 0 12239 2025-03-20 03:53:08.232 2025-03-20 03:53:10.847 435928 10591 5 0 12240 2025-03-20 03:53:31.774 2025-03-20 03:53:31.774 435928 10731 2 0 12241 2025-03-20 03:53:31.077 2025-03-20 03:53:31.077 435928 11038 2 0 12242 2025-03-20 03:53:31.603 2025-03-20 03:53:31.603 435928 11240 2 0 12243 2025-03-20 03:53:16.416 2025-03-20 03:53:16.416 435928 11378 21 0 12244 2025-03-20 03:53:35.009 2025-03-20 03:53:35.009 435928 11527 2 0 12245 2025-03-20 03:53:18.426 2025-03-20 03:53:18.426 435928 11590 21 0 12246 2025-03-20 03:53:21.515 2025-03-20 03:53:21.515 435928 11750 21 0 12247 2025-03-20 03:53:10.164 2025-03-20 03:53:10.164 435928 12049 2 0 12248 2025-03-20 03:53:11.836 2025-03-20 03:53:11.836 435928 12507 2 0 12249 2025-03-20 03:53:12.536 2025-03-20 03:53:12.536 435928 12744 21 0 12250 2025-03-20 03:53:19.138 2025-03-20 03:53:19.138 435928 12769 21 0 12251 2025-03-20 03:53:15.828 2025-03-20 03:53:19.015 435928 12821 41 0 12252 2025-03-20 03:53:33.978 2025-03-20 03:53:33.978 435928 12870 2 0 12253 2025-03-20 03:53:16.28 2025-03-20 03:53:16.28 435928 13038 21 0 12254 2025-03-20 03:53:18.233 2025-03-20 03:53:18.233 435928 13132 2 0 12255 2025-03-20 03:53:16.001 2025-03-20 03:53:16.001 435928 13216 2 0 12256 2025-03-20 03:53:18.606 2025-03-20 03:53:18.606 435928 13361 2 0 12257 2025-03-20 03:53:08.965 2025-03-20 03:53:08.965 435928 13398 2 0 12258 2025-03-20 03:53:10.164 2025-03-20 03:53:10.164 435928 13517 21 0 12259 2025-03-20 03:53:32.261 2025-03-20 03:53:32.261 435928 13622 21 0 12260 2025-03-20 03:53:16.89 2025-03-20 03:53:16.89 435928 14168 2 0 12261 2025-03-20 03:53:31.774 2025-03-20 03:53:31.774 435928 14472 21 0 12262 2025-03-20 03:53:33.788 2025-03-20 03:53:33.788 435928 14705 21 0 12263 2025-03-20 03:53:11.027 2025-03-20 03:53:11.027 435928 15160 21 0 12264 2025-03-20 03:53:12.007 2025-03-20 03:53:12.007 435928 15408 21 0 12265 2025-03-20 03:53:18.763 2025-03-20 03:53:18.763 435928 16250 21 0 12266 2025-03-20 03:53:10.691 2025-03-20 03:53:10.691 435928 16387 21 0 12267 2025-03-20 03:53:16.001 2025-03-20 03:53:16.001 435928 16424 21 0 12268 2025-03-20 03:53:12.925 2025-03-20 03:53:12.925 435928 16513 21 0 12269 2025-03-20 03:53:10.355 2025-03-20 03:53:10.355 435928 16556 21 0 12270 2025-03-20 03:53:09.946 2025-03-20 03:53:09.946 435928 16571 2 0 12271 2025-03-20 03:53:10.691 2025-03-20 03:53:10.691 435928 16747 2 0 12272 2025-03-20 03:53:30.267 2025-03-20 03:53:30.267 435928 16808 21 0 12273 2025-03-20 03:53:07.957 2025-03-20 03:53:07.957 435928 16834 2 0 12274 2025-03-20 03:53:31.077 2025-03-20 03:53:31.077 435928 16858 21 0 12275 2025-03-20 03:53:09.341 2025-03-20 03:53:09.341 435928 16970 2 0 12276 2025-03-20 03:53:20.767 2025-03-20 03:53:20.767 435928 17001 2 0 12277 2025-03-20 03:53:07.957 2025-03-20 03:53:07.957 435928 17064 21 0 12278 2025-03-20 03:53:10.355 2025-03-20 03:53:10.355 435928 17082 2 0 12279 2025-03-20 03:53:17.403 2025-03-20 03:53:17.403 435928 17218 2 0 12280 2025-03-20 03:53:15.638 2025-03-20 03:53:15.638 435928 17331 2 0 12281 2025-03-20 03:53:09.946 2025-03-20 03:53:09.946 435928 17411 21 0 12282 2025-03-20 03:53:08.419 2025-03-20 03:53:08.419 435928 17673 2 0 12283 2025-03-20 03:53:16.518 2025-03-20 03:53:16.518 435928 17708 2 0 12284 2025-03-20 03:53:09.795 2025-03-20 03:53:09.795 435928 18225 2 0 12285 2025-03-20 03:53:10.847 2025-03-20 03:53:10.847 435928 18271 21 0 12286 2025-03-20 03:53:32.989 2025-03-20 03:53:32.989 435928 18601 2 0 12287 2025-03-20 03:53:30.115 2025-03-20 03:53:30.115 435928 18673 2 0 12288 2025-03-20 03:53:15.828 2025-03-20 03:53:15.828 435928 19121 2 0 12289 2025-03-20 03:53:34.854 2025-03-20 03:53:34.854 435928 19126 21 0 12290 2025-03-20 03:53:32.989 2025-03-20 03:53:32.989 435928 19375 21 0 12291 2025-03-20 03:53:12.925 2025-03-20 03:53:32.813 435928 19471 5 0 12292 2025-03-20 03:53:13.066 2025-03-20 03:53:13.066 435928 19488 2 0 12293 2025-03-20 08:32:43.976 2025-03-20 08:32:43.976 435928 19655 7 0 12294 2025-03-20 03:53:32.472 2025-03-20 03:53:32.472 435928 19826 21 0 12295 2025-03-20 03:53:27.659 2025-03-20 03:53:27.659 435928 19930 2 0 12296 2025-03-20 03:53:28.492 2025-03-20 03:53:28.492 435928 20062 21 0 12297 2025-03-20 03:53:19.597 2025-03-20 03:53:19.597 435928 20117 21 0 12298 2025-03-20 03:53:19.138 2025-03-20 03:53:19.138 435928 20187 2 0 12299 2025-03-20 03:53:30.267 2025-03-20 03:53:30.267 435928 20205 2 0 12300 2025-03-20 03:53:17.403 2025-03-20 03:53:17.403 435928 20222 21 0 12301 2025-03-20 03:53:32.261 2025-03-20 03:53:32.261 435928 20275 2 0 12302 2025-03-20 03:53:13.636 2025-03-20 03:53:13.636 435928 20280 41 0 12303 2025-03-20 03:53:14.797 2025-03-20 03:53:14.797 435928 20310 41 0 12304 2025-03-20 03:53:32.472 2025-03-20 03:53:32.472 435928 20454 2 0 12305 2025-03-20 03:53:32.105 2025-03-20 03:53:32.105 435928 20500 21 0 12306 2025-03-20 03:53:13.636 2025-03-20 03:53:13.636 435928 20602 5 0 12307 2025-03-20 03:53:10.54 2025-03-20 03:53:10.54 435928 20613 21 0 12308 2025-03-20 03:53:33.714 2025-03-20 03:53:33.714 435928 20619 21 0 12309 2025-03-20 03:53:19.015 2025-03-20 03:53:19.015 435928 20713 2 0 12310 2025-03-20 03:53:11.027 2025-03-20 03:53:11.027 435928 20768 2 0 12311 2025-03-20 03:53:35.191 2025-03-20 03:53:35.191 435928 20778 2 0 12312 2025-03-20 03:53:21.515 2025-03-20 03:53:21.515 435928 20781 2 0 12313 2025-03-20 03:53:12.349 2025-03-20 03:53:12.349 435928 20817 21 0 12314 2025-03-20 03:53:32.105 2025-03-20 03:53:32.105 435928 20901 2 0 12315 2025-03-20 03:53:28.992 2025-03-20 03:53:28.992 435928 20939 5 0 12316 2025-03-20 03:53:17.218 2025-03-20 03:53:21.335 435928 21022 41 0 12317 2025-03-20 03:53:31.635 2025-03-20 03:53:31.635 435928 21026 21 0 12318 2025-03-20 03:53:17.068 2025-03-20 03:53:17.068 435928 21040 2 0 12319 2025-03-20 03:53:35.191 2025-03-20 03:53:35.191 435928 21047 21 0 12320 2025-03-20 03:53:21.172 2025-03-20 03:53:21.172 435928 21140 2 0 12321 2025-03-20 03:53:09.341 2025-03-20 03:53:09.341 435928 21148 21 0 12322 2025-03-20 03:53:31.946 2025-03-20 03:53:31.946 435928 21172 21 0 12323 2025-03-20 03:53:28.653 2025-03-20 03:53:28.653 435928 21208 2 0 12324 2025-03-20 03:53:18.073 2025-03-20 03:53:18.073 435928 21248 21 0 12325 2025-03-20 03:53:19.46 2025-03-20 03:53:19.46 435928 21303 2 0 12326 2025-03-20 03:53:35.655 2025-03-20 03:53:35.655 435928 21501 21 0 12327 2025-03-20 03:53:34.155 2025-03-20 03:53:34.155 435928 21506 2 0 12328 2025-03-20 03:53:20.978 2025-03-20 03:53:20.978 435928 21520 2 0 12329 2025-03-20 03:53:08.232 2025-03-20 03:53:08.232 435928 21522 21 0 12330 2025-03-20 03:53:30.115 2025-03-20 03:53:30.115 435928 21585 21 0 12331 2025-03-20 03:53:35.338 2025-03-20 03:53:35.338 435928 21639 21 0 12332 2025-03-20 03:53:31.26 2025-03-20 03:53:31.26 435928 21685 2 0 12333 2025-03-20 03:53:34.324 2025-03-20 03:53:34.324 435928 21701 2 0 12334 2025-03-20 03:53:27.98 2025-03-20 03:53:27.98 435928 21766 2 0 12335 2025-03-20 03:53:28.653 2025-03-20 03:53:28.653 435928 21814 21 0 12336 2025-03-20 03:53:20.978 2025-03-20 03:53:20.978 435928 21825 21 0 12337 2025-03-20 03:53:28.322 2025-03-20 03:53:28.322 435928 21829 2 0 12338 2025-03-20 05:51:00.836 2025-03-20 05:51:00.836 435929 1411 1 0 12339 2025-03-20 05:51:00.944 2025-03-20 05:51:00.944 435929 1712 1 0 12340 2025-03-20 05:51:00.664 2025-03-20 05:51:00.664 435929 2329 9 0 12341 2025-03-20 05:51:00.944 2025-03-20 05:51:00.944 435929 2596 9 0 12342 2025-03-19 22:51:02.975 2025-03-19 22:51:02.975 435929 11798 1 0 12343 2025-03-20 05:51:00.664 2025-03-20 05:51:00.664 435929 13599 1 0 12344 2025-03-20 05:51:00.836 2025-03-20 05:51:00.836 435929 18368 9 0 12345 2025-03-19 22:53:08.616 2025-03-19 22:53:08.616 435930 21090 1 0 12346 2025-03-19 22:53:59.683 2025-03-19 22:53:59.683 435931 16950 1 0 12347 2025-03-19 22:55:02.51 2025-03-19 22:55:02.51 435932 3506 1 0 12348 2025-03-19 22:55:52.905 2025-03-19 22:55:52.905 435932 20837 0 0 12349 2025-03-19 22:55:22.022 2025-03-19 22:55:22.022 435933 2703 1 0 12350 2025-03-20 04:48:08.129 2025-03-20 04:48:08.129 435934 1772 10 0 12351 2025-03-20 04:48:08.129 2025-03-20 04:48:08.129 435934 17638 90 0 12352 2025-03-19 22:58:39.129 2025-03-19 22:58:39.129 435934 20852 1 0 12353 2025-03-20 02:54:44.263 2025-03-20 02:54:44.263 435935 979 14 0 12354 2025-03-19 23:19:22.811 2025-03-19 23:19:22.811 435935 1124 19 0 12355 2025-03-19 23:07:28.483 2025-03-19 23:07:28.483 435935 2123 90 0 12356 2025-03-20 00:11:07.086 2025-03-20 00:11:07.086 435935 2942 2 0 12357 2025-03-19 23:44:04.269 2025-03-19 23:44:04.269 435935 7978 2 0 12358 2025-03-20 02:23:57.299 2025-03-20 02:23:57.299 435935 9295 1 0 12359 2025-03-20 02:54:44.263 2025-03-20 02:54:44.263 435935 10112 2 0 12360 2025-03-20 03:27:55.015 2025-03-20 03:27:55.015 435935 14271 2 0 12361 2025-03-19 22:59:40.212 2025-03-19 22:59:40.212 435935 16966 10 0 12362 2025-03-20 00:11:07.086 2025-03-20 00:11:07.086 435935 18232 19 0 12363 2025-03-19 23:44:04.269 2025-03-19 23:44:04.269 435935 18269 19 0 12364 2025-03-20 02:23:57.299 2025-03-20 02:23:57.299 435935 18901 9 0 12365 2025-03-20 03:27:55.015 2025-03-20 03:27:55.015 435935 20377 19 0 12366 2025-03-19 23:19:22.811 2025-03-19 23:19:22.811 435935 21014 2 0 12367 2025-03-19 23:07:28.483 2025-03-19 23:07:28.483 435935 21485 10 0 12368 2025-03-20 03:04:51.123 2025-03-20 03:04:51.123 435936 5703 2 0 12369 2025-03-20 03:04:46.395 2025-03-20 03:04:46.395 435936 6149 1 0 12370 2025-03-19 23:01:24.052 2025-03-19 23:01:24.052 435936 9551 1 0 12371 2025-03-20 03:04:46.395 2025-03-20 03:04:46.395 435936 10979 0 0 12372 2025-03-20 03:04:43.753 2025-03-20 03:04:43.753 435936 17727 0 0 12373 2025-03-20 03:04:43.753 2025-03-20 03:04:43.753 435936 19527 1 0 12374 2025-03-20 03:04:51.123 2025-03-20 03:04:51.123 435936 21048 17 0 12375 2025-03-19 23:09:18.345 2025-03-19 23:09:18.345 435937 14278 1 0 12376 2025-03-19 23:09:41.854 2025-03-19 23:09:41.854 435937 19924 0 0 12377 2025-03-20 02:04:45.761 2025-03-20 02:04:45.761 435938 1261 36 0 12378 2025-03-19 23:15:13.761 2025-03-19 23:15:13.761 435938 5746 120 0 12379 2025-03-20 02:04:45.761 2025-03-20 02:04:45.761 435938 19217 4 0 12380 2025-03-20 07:04:04.343 2025-03-20 07:04:04.343 435939 5195 69 0 12381 2025-03-19 23:15:17.785 2025-03-19 23:15:17.785 435939 7960 1 0 12382 2025-03-20 07:04:04.343 2025-03-20 07:04:04.343 435939 15890 8 0 12383 2025-03-19 23:17:25.715 2025-03-19 23:17:25.715 435940 647 0 0 12384 2025-03-19 23:17:04.914 2025-03-19 23:17:04.914 435940 10549 1 0 12385 2025-03-19 23:20:19.678 2025-03-19 23:20:19.678 435941 3683 1 0 12386 2025-03-20 00:06:11.051 2025-03-20 00:06:11.051 435944 633 91 0 12387 2025-03-20 04:55:25.383 2025-03-20 04:55:25.383 435944 657 8 0 12388 2025-03-19 23:59:02.889 2025-03-19 23:59:02.889 435944 805 29 0 12389 2025-03-20 04:07:20.62 2025-03-20 04:07:20.62 435944 827 10 0 12390 2025-03-20 04:28:13.843 2025-03-20 04:28:13.843 435944 900 9 0 12391 2025-03-20 04:07:21.021 2025-03-20 04:07:21.021 435944 910 10 0 12392 2025-03-20 04:13:42.193 2025-03-20 04:13:42.193 435944 989 1 0 12393 2025-03-20 11:10:29.772 2025-03-20 11:10:29.772 435944 993 0 0 12394 2025-03-19 23:33:54.3 2025-03-19 23:33:54.3 435944 1009 1000 0 12395 2025-03-20 03:54:50.301 2025-03-20 03:54:50.301 435944 1047 2 0 12396 2025-03-20 11:10:30.616 2025-03-20 11:10:30.616 435944 1060 81 0 12397 2025-03-20 02:57:42.995 2025-03-20 02:57:42.995 435944 1145 9 0 12398 2025-03-20 04:13:41.857 2025-03-20 04:13:41.857 435944 1198 5 0 12399 2025-03-20 02:07:05.8 2025-03-20 02:07:05.8 435944 1261 36 0 12400 2025-03-19 23:32:21.169 2025-03-19 23:32:21.169 435944 1438 1000 0 12401 2025-03-20 04:07:21.179 2025-03-20 04:55:25.383 435944 1567 85 0 12402 2025-03-20 04:07:20.62 2025-03-20 04:07:20.62 435944 1617 1 0 12403 2025-03-20 02:08:05.624 2025-03-20 02:08:05.624 435944 1631 19 0 12404 2025-03-20 00:53:53.737 2025-03-20 00:53:53.737 435944 1740 1 0 12405 2025-03-20 04:07:21.021 2025-03-20 08:03:54.791 435944 2098 4 0 12406 2025-03-20 06:09:48.177 2025-03-20 06:09:48.177 435944 2151 1 0 12407 2025-03-20 03:59:08.719 2025-03-20 03:59:08.719 435944 2367 0 0 12408 2025-03-20 03:54:50.772 2025-03-20 03:54:50.772 435944 2402 21 0 12409 2025-03-20 03:54:50.944 2025-03-20 03:54:50.944 435944 2639 21 0 12410 2025-03-20 04:12:52.575 2025-03-20 04:12:52.575 435944 2748 1 0 12411 2025-03-20 02:57:11.765 2025-03-20 02:57:11.765 435944 2942 90 0 12412 2025-03-19 23:32:21.169 2025-03-19 23:32:21.169 435944 2952 9000 0 12413 2025-03-20 03:54:48.955 2025-03-20 03:54:48.955 435944 3213 2 0 12414 2025-03-20 04:12:55.556 2025-03-20 04:12:55.556 435944 3360 5 0 12415 2025-03-20 11:10:29.772 2025-03-20 11:10:29.772 435944 3392 1 0 12416 2025-03-20 00:58:29.438 2025-03-20 00:58:29.438 435944 3717 19 0 12417 2025-03-20 03:54:49.356 2025-03-20 03:54:49.356 435944 4074 2 0 12418 2025-03-20 03:15:30.357 2025-03-20 03:15:30.357 435944 4083 19 0 12419 2025-03-20 04:07:21.318 2025-03-20 04:07:21.318 435944 5069 10 0 12420 2025-03-20 02:57:42.995 2025-03-20 02:57:42.995 435944 5175 1 0 12421 2025-03-20 03:54:50.114 2025-03-20 03:54:50.114 435944 5377 2 0 12422 2025-03-20 01:35:02.335 2025-03-20 01:35:02.335 435944 5703 1000 0 12423 2025-03-20 04:07:21.179 2025-03-20 04:07:21.179 435944 5806 1 0 12424 2025-03-20 03:54:49.204 2025-03-20 03:54:49.204 435944 6335 21 0 12425 2025-03-20 00:14:52.767 2025-03-20 05:56:30.632 435944 6578 2 0 12426 2025-03-19 23:33:54.3 2025-03-19 23:33:54.3 435944 7654 9000 0 12427 2025-03-20 03:54:50.301 2025-03-20 03:54:50.301 435944 7760 21 0 12428 2025-03-20 00:14:52.6 2025-03-20 00:58:29.438 435944 7916 11 0 12429 2025-03-20 03:14:11.316 2025-03-20 03:14:11.316 435944 8506 0 0 12430 2025-03-20 03:54:48.383 2025-03-20 03:54:48.383 435944 8985 21 0 12431 2025-03-20 04:21:45.871 2025-03-20 04:21:45.871 435944 9171 0 0 12432 2025-03-20 04:07:20.92 2025-03-20 04:07:20.92 435944 9329 1 0 12433 2025-03-20 03:54:48.51 2025-03-20 03:54:48.51 435944 9337 21 0 12434 2025-03-20 06:09:48.177 2025-03-20 06:09:48.177 435944 9363 9 0 12435 2025-03-20 01:01:34.29 2025-03-20 01:01:34.29 435944 9494 90 0 12436 2025-03-20 04:55:25.21 2025-03-20 04:55:25.21 435944 9758 8 0 12437 2025-03-20 03:54:49.744 2025-03-20 03:54:49.744 435944 9906 2 0 12438 2025-03-19 23:33:24.716 2025-03-19 23:33:24.716 435944 10291 27 0 12439 2025-03-20 05:21:05.114 2025-03-20 05:21:05.114 435944 10352 9 0 12440 2025-03-20 03:54:49.548 2025-03-20 03:54:49.548 435944 10549 2 0 12441 2025-03-20 10:02:54.663 2025-03-20 10:02:54.663 435944 10944 19 0 12442 2025-03-20 00:25:58.913 2025-03-20 05:56:30.632 435944 11018 95 0 12443 2025-03-20 00:14:52.434 2025-03-20 00:14:52.434 435944 11144 1 0 12444 2025-03-20 00:47:53.411 2025-03-20 00:47:53.411 435944 11153 45 0 12445 2025-03-19 23:59:28.028 2025-03-19 23:59:28.028 435944 11192 19 0 12446 2025-03-20 01:12:12.128 2025-03-20 01:12:12.128 435944 11288 1 0 12447 2025-03-20 08:04:38.546 2025-03-20 08:04:38.546 435944 11298 2 0 12448 2025-03-20 03:54:49.946 2025-03-20 03:54:49.946 435944 11417 21 0 12449 2025-03-20 00:14:52.434 2025-03-20 00:14:52.434 435944 12139 9 0 12450 2025-03-20 00:42:38.578 2025-03-20 00:42:38.578 435944 12188 9 0 12451 2025-03-20 08:51:11.864 2025-03-20 08:51:11.864 435944 12222 19 0 12452 2025-03-20 00:42:38.578 2025-03-20 00:42:38.578 435944 12261 1 0 12453 2025-03-20 03:54:48.51 2025-03-20 03:54:48.51 435944 12561 2 0 12454 2025-03-20 00:14:52.767 2025-03-20 00:14:52.767 435944 12721 9 0 12455 2025-03-20 08:04:38.546 2025-03-20 08:04:38.546 435944 12774 19 0 12456 2025-03-20 00:14:52.6 2025-03-20 00:14:52.6 435944 12821 1 0 12457 2025-03-20 04:55:25.565 2025-03-20 04:55:25.565 435944 12911 75 0 12458 2025-03-20 08:18:38.376 2025-03-20 08:18:38.376 435944 13327 2 0 12459 2025-03-20 03:54:48.955 2025-03-20 04:28:13.843 435944 13854 22 0 12460 2025-03-20 03:54:48.775 2025-03-20 03:54:48.775 435944 14278 2 0 12461 2025-03-20 04:55:25.565 2025-03-20 04:55:25.803 435944 14489 83 0 12462 2025-03-20 03:54:51.085 2025-03-20 03:54:51.085 435944 14607 21 0 12463 2025-03-20 03:54:51.085 2025-03-20 03:54:51.085 435944 14731 2 0 12464 2025-03-20 03:59:08.719 2025-03-20 03:59:08.719 435944 14774 1 0 12465 2025-03-20 04:55:25.21 2025-03-20 09:28:08.987 435944 14939 165 0 12466 2025-03-19 23:59:02.889 2025-03-19 23:59:02.889 435944 15103 3 0 12467 2025-03-20 04:07:21.318 2025-03-20 04:07:21.318 435944 15139 1 0 12468 2025-03-20 00:25:58.913 2025-03-20 00:25:58.913 435944 15213 10 0 12469 2025-03-20 03:54:49.744 2025-03-20 03:54:49.744 435944 15491 21 0 12470 2025-03-20 03:54:49.356 2025-03-20 03:54:49.356 435944 15719 21 0 12471 2025-03-20 10:02:54.663 2025-03-20 10:02:54.663 435944 15762 2 0 12472 2025-03-19 23:33:24.716 2025-03-19 23:33:24.716 435944 15941 3 0 12473 2025-03-20 11:10:30.009 2025-03-20 11:10:30.009 435944 16329 8 0 12474 2025-03-20 08:51:11.864 2025-03-20 08:51:11.864 435944 16387 2 0 12475 2025-03-20 03:54:47.965 2025-03-20 03:54:47.965 435944 16754 2 0 12476 2025-03-20 08:03:54.791 2025-03-20 08:03:54.791 435944 16834 30 0 12477 2025-03-20 03:54:49.204 2025-03-20 03:54:49.204 435944 16876 2 0 12478 2025-03-20 00:06:11.051 2025-03-20 00:06:11.051 435944 16939 10 0 12479 2025-03-20 05:21:05.114 2025-03-20 05:21:05.114 435944 16950 1 0 12480 2025-03-20 03:54:47.965 2025-03-20 11:10:30.616 435944 17001 30 0 12481 2025-03-20 02:57:11.765 2025-03-20 02:57:11.765 435944 17082 10 0 12482 2025-03-20 03:54:48.156 2025-03-20 03:54:48.156 435944 17095 21 0 12483 2025-03-20 04:07:21.486 2025-03-20 04:07:21.486 435944 17124 1 0 12484 2025-03-20 01:35:02.335 2025-03-20 01:35:02.335 435944 17221 9000 0 12485 2025-03-20 09:28:08.987 2025-03-20 09:28:08.987 435944 17673 10 0 12486 2025-03-20 03:59:09.958 2025-03-20 03:59:09.958 435944 17682 0 0 12487 2025-03-20 03:54:49.946 2025-03-20 03:54:49.946 435944 18528 2 0 12488 2025-03-20 04:21:45.871 2025-03-20 04:21:45.871 435944 18630 1 0 12489 2025-03-20 03:54:48.156 2025-03-20 03:54:48.156 435944 19446 2 0 12490 2025-03-20 02:08:05.624 2025-03-20 08:18:38.376 435944 19488 21 0 12491 2025-03-20 03:14:11.316 2025-03-20 03:14:11.316 435944 19637 1 0 12492 2025-03-20 02:07:05.8 2025-03-20 02:07:05.8 435944 19943 4 0 12493 2025-03-20 11:10:30.009 2025-03-20 11:10:30.009 435944 20019 1 0 12494 2025-03-20 04:12:55.556 2025-03-20 04:12:55.556 435944 20182 1 0 12495 2025-03-20 03:54:50.772 2025-03-20 03:54:50.772 435944 20291 2 0 12496 2025-03-20 00:53:53.737 2025-03-20 00:53:53.737 435944 20306 9 0 12497 2025-03-20 04:55:25.803 2025-03-20 04:55:25.803 435944 20636 8 0 12498 2025-03-20 04:13:42.193 2025-03-20 04:13:42.193 435944 20680 5 0 12499 2025-03-20 03:22:03.584 2025-03-20 03:54:50.944 435944 20811 102 0 12500 2025-03-20 01:01:34.29 2025-03-20 01:01:34.29 435944 20817 10 0 12501 2025-03-20 03:54:50.114 2025-03-20 03:54:50.114 435944 20911 21 0 12502 2025-03-20 03:54:49.548 2025-03-20 03:54:49.548 435944 20979 21 0 12503 2025-03-20 04:13:41.857 2025-03-20 04:13:41.857 435944 21012 1 0 12504 2025-03-20 04:07:20.92 2025-03-20 04:07:20.92 435944 21164 10 0 12505 2025-03-20 00:47:53.411 2025-03-20 00:47:53.411 435944 21262 5 0 12506 2025-03-19 23:59:28.028 2025-03-19 23:59:28.028 435944 21314 2 0 12507 2025-03-20 03:22:03.584 2025-03-20 03:22:03.584 435944 21442 900 0 12508 2025-03-20 04:12:52.575 2025-03-20 04:12:52.575 435944 21485 5 0 12509 2025-03-19 23:29:46.94 2025-03-19 23:29:46.94 435944 21498 21 0 12510 2025-03-20 01:12:12.128 2025-03-20 01:12:12.128 435944 21540 10 0 12511 2025-03-20 03:15:30.357 2025-03-20 03:15:30.357 435944 21585 2 0 12512 2025-03-20 03:54:48.775 2025-03-20 03:54:48.775 435944 21639 21 0 12513 2025-03-20 03:54:48.383 2025-03-20 03:54:48.383 435944 21714 2 0 12514 2025-03-20 03:59:09.958 2025-03-20 03:59:09.958 435944 21810 1 0 12515 2025-03-20 00:16:54.256 2025-03-20 00:16:54.256 435945 2776 2 0 12516 2025-03-19 23:30:45.317 2025-03-19 23:30:45.317 435945 5522 1 0 12517 2025-03-20 00:20:36.199 2025-03-20 00:20:36.199 435945 15544 9 0 12518 2025-03-20 00:16:54.256 2025-03-20 00:16:54.256 435945 16230 0 0 12519 2025-03-20 00:20:36.199 2025-03-20 00:20:36.199 435945 18351 1 0 12520 2025-03-20 03:54:23.079 2025-03-20 03:54:23.079 435946 6688 19 0 12521 2025-03-20 03:54:23.079 2025-03-20 03:54:23.079 435946 20993 2 0 12522 2025-03-19 23:31:05.158 2025-03-19 23:31:05.158 435946 21166 1 0 12523 2025-03-20 06:32:44.237 2025-03-20 06:32:44.237 435947 621 1 0 12524 2025-03-20 06:32:44.397 2025-03-20 06:32:44.397 435947 946 1 0 12525 2025-03-20 04:16:06.435 2025-03-20 04:16:06.435 435947 985 81 0 12526 2025-03-20 04:16:04.375 2025-03-20 04:16:04.375 435947 1136 0 0 12527 2025-03-20 04:16:04.375 2025-03-20 04:16:04.375 435947 1705 1 0 12528 2025-03-20 04:16:04.499 2025-03-20 04:16:04.499 435947 1983 8 0 12529 2025-03-19 23:34:18.46 2025-03-19 23:34:18.46 435947 4973 0 0 12530 2025-03-20 04:16:06.435 2025-03-20 04:16:06.435 435947 8045 9 0 12531 2025-03-19 23:31:23.806 2025-03-19 23:31:23.806 435947 11192 1000 0 12532 2025-03-20 06:32:44.397 2025-03-20 06:32:44.397 435947 12609 9 0 12533 2025-03-20 06:32:44.577 2025-03-20 06:32:44.577 435947 12946 1 0 12534 2025-03-19 23:32:37.432 2025-03-19 23:32:37.432 435947 15488 0 0 12535 2025-03-20 06:32:44.237 2025-03-20 06:32:44.237 435947 15762 9 0 12536 2025-03-20 04:16:04.499 2025-03-20 04:16:04.499 435947 17944 1 0 12537 2025-03-20 06:32:44.577 2025-03-20 06:32:44.577 435947 21815 9 0 12538 2025-03-20 04:02:23.585 2025-03-20 04:02:23.585 435948 658 10 0 12539 2025-03-20 04:02:24.033 2025-03-20 04:02:24.033 435948 831 90 0 12540 2025-03-19 23:33:20.544 2025-03-19 23:33:20.544 435948 861 1 0 12541 2025-03-20 04:02:24.033 2025-03-20 04:02:24.033 435948 1713 10 0 12542 2025-03-20 04:02:23.585 2025-03-20 04:02:23.585 435948 21067 90 0 12543 2025-03-19 23:35:28.922 2025-03-19 23:35:28.922 435949 713 1 0 12544 2025-03-20 00:17:42.698 2025-03-20 00:17:42.698 435949 12951 2 0 12545 2025-03-20 00:17:42.698 2025-03-20 00:17:42.698 435949 17722 19 0 12546 2025-03-20 08:04:52.848 2025-03-20 08:04:52.848 435950 712 2 0 12547 2025-03-19 23:41:13.918 2025-03-19 23:41:13.918 435950 6526 1 0 12548 2025-03-20 00:12:29.706 2025-03-20 00:12:29.706 435950 10591 19 0 12549 2025-03-20 00:12:29.706 2025-03-20 00:12:29.706 435950 15925 2 0 12550 2025-03-20 00:39:31.86 2025-03-20 00:39:31.86 435950 16847 90 0 12551 2025-03-20 00:39:31.86 2025-03-20 00:39:31.86 435950 16950 10 0 12552 2025-03-20 08:04:52.848 2025-03-20 08:04:52.848 435950 20897 19 0 12553 2025-03-19 23:41:56.434 2025-03-19 23:41:56.434 435951 1817 10 0 12554 2025-03-20 00:39:34.853 2025-03-20 00:39:34.853 435951 9517 10 0 12555 2025-03-20 08:04:53.431 2025-03-20 08:04:53.431 435951 16229 2 0 12556 2025-03-20 00:39:34.853 2025-03-20 00:39:34.853 435951 16284 90 0 12557 2025-03-20 08:04:53.431 2025-03-20 08:04:53.431 435951 21791 19 0 12558 2025-03-19 23:45:21.939 2025-03-19 23:45:21.939 435952 7903 1 0 12559 2025-03-19 23:45:31.657 2025-03-19 23:45:31.657 435953 18177 1 0 12560 2025-03-20 08:15:09.68 2025-03-20 08:15:09.68 435954 1245 4 0 12561 2025-03-20 08:15:08.576 2025-03-20 08:15:08.576 435954 1472 2 0 12562 2025-03-20 08:15:08.576 2025-03-20 08:15:08.576 435954 3417 19 0 12563 2025-03-20 08:15:11.316 2025-03-20 08:15:11.316 435954 9863 2 0 12564 2025-03-20 08:15:07.501 2025-03-20 08:15:07.501 435954 10469 19 0 12565 2025-03-20 08:15:09.68 2025-03-20 08:15:09.68 435954 16753 38 0 12566 2025-03-20 08:15:11.316 2025-03-20 08:15:11.316 435954 18351 19 0 12567 2025-03-19 23:47:20.84 2025-03-19 23:47:20.84 435954 20294 10 0 12568 2025-03-20 08:15:07.501 2025-03-20 08:15:07.501 435954 20504 2 0 12569 2025-03-20 03:16:15.77 2025-03-20 03:16:15.77 435955 1985 2 0 12570 2025-03-20 03:16:15.77 2025-03-20 03:16:15.77 435955 17568 19 0 12571 2025-03-19 23:50:22.535 2025-03-19 23:50:22.535 435955 20987 21 0 12572 2025-03-20 00:27:10.93 2025-03-20 00:27:10.93 435956 6148 19 0 12573 2025-03-19 23:56:35.826 2025-03-19 23:56:35.826 435956 12744 1 0 12574 2025-03-20 00:27:10.93 2025-03-20 00:27:10.93 435956 21291 2 0 12575 2025-03-20 00:00:11.997 2025-03-20 00:00:11.997 435957 20973 1 0 12576 2025-03-20 01:22:46.054 2025-03-20 01:22:46.054 435958 811 9 0 12577 2025-03-20 00:00:24.218 2025-03-20 00:00:24.218 435958 1009 21 0 12578 2025-03-20 01:22:46.054 2025-03-20 01:22:46.054 435958 2111 1 0 12579 2025-03-20 00:15:13.862 2025-03-20 00:15:13.862 435959 8870 9 0 12580 2025-03-20 00:03:18.121 2025-03-20 00:03:18.121 435959 9026 1 0 12581 2025-03-20 00:15:13.862 2025-03-20 00:15:13.862 435959 20776 1 0 12582 2025-03-20 00:05:33.993 2025-03-20 00:05:33.993 435960 638 1 0 12583 2025-03-20 00:05:48.081 2025-03-20 00:05:48.081 435961 659 1 0 12584 2025-03-20 08:06:10.368 2025-03-20 08:06:10.368 435962 1114 2 0 12585 2025-03-20 02:24:13.052 2025-03-20 02:24:13.052 435962 5779 9 0 12586 2025-03-20 00:14:48.958 2025-03-20 00:14:48.958 435962 16638 1 0 12587 2025-03-20 02:24:13.052 2025-03-20 02:24:13.052 435962 17817 1 0 12588 2025-03-20 08:06:10.368 2025-03-20 08:06:10.368 435962 19333 19 0 12589 2025-03-20 02:24:12.406 2025-03-20 02:24:12.406 435963 1424 1 0 12590 2025-03-20 00:27:49.518 2025-03-20 00:27:49.518 435963 6030 1 0 12591 2025-03-20 08:06:12.098 2025-03-20 08:06:12.098 435963 9655 2 0 12592 2025-03-20 08:06:12.098 2025-03-20 08:06:12.098 435963 9833 19 0 12593 2025-03-20 02:24:12.406 2025-03-20 02:24:12.406 435963 12959 9 0 12594 2025-03-20 00:15:14.21 2025-03-20 00:15:14.21 435963 14152 1 0 12595 2025-03-20 00:27:49.518 2025-03-20 00:27:49.518 435963 21825 10 0 12596 2025-03-20 00:22:51.481 2025-03-20 00:22:51.481 435964 1773 1 0 12597 2025-03-20 00:22:52.675 2025-03-20 00:22:52.675 435965 21518 1 0 12598 2025-03-20 00:26:35.149 2025-03-20 00:26:35.149 435966 994 1 0 12599 2025-03-20 00:26:52.877 2025-03-20 00:26:52.877 435966 2620 0 0 12600 2025-03-20 03:54:42.576 2025-03-20 03:54:42.576 435966 7913 2 0 12601 2025-03-20 03:54:42.576 2025-03-20 03:54:42.576 435966 9529 19 0 12602 2025-03-20 00:39:33.002 2025-03-20 00:39:33.002 435967 861 90 0 12603 2025-03-20 00:26:44.784 2025-03-20 00:26:44.784 435967 6537 1 0 12604 2025-03-20 00:54:39.472 2025-03-20 00:54:39.472 435967 12749 9 0 12605 2025-03-20 00:39:33.002 2025-03-20 00:39:33.002 435967 14080 10 0 12606 2025-03-20 00:54:39.472 2025-03-20 00:54:39.472 435967 18734 1 0 12607 2025-03-20 00:32:01.077 2025-03-20 00:32:01.077 435968 12188 50 0 12608 2025-03-20 04:16:31.943 2025-03-20 04:16:31.943 435968 17331 1 0 12609 2025-03-20 04:16:31.605 2025-03-20 04:16:31.605 435968 20525 0 0 12610 2025-03-20 04:16:31.943 2025-03-20 04:16:31.943 435968 20849 8 0 12611 2025-03-20 04:16:31.605 2025-03-20 04:16:31.605 435968 21338 1 0 12612 2025-03-20 00:33:23.009 2025-03-20 00:33:23.009 435969 1286 1 0 12613 2025-03-20 02:57:43.448 2025-03-20 02:57:43.448 435970 861 19 0 12614 2025-03-20 01:37:48.439 2025-03-20 01:37:48.439 435970 2010 2 0 12615 2025-03-20 01:37:48.439 2025-03-20 01:37:48.439 435970 4754 0 0 12616 2025-03-20 02:57:43.448 2025-03-20 02:57:43.448 435970 5519 2 0 12617 2025-03-20 04:18:12.655 2025-03-20 04:18:12.655 435970 5809 0 0 12618 2025-03-20 04:18:12.655 2025-03-20 04:18:12.655 435970 18225 3 0 12619 2025-03-20 00:35:20.893 2025-03-20 00:35:20.893 435970 20841 10 0 12620 2025-03-20 01:11:42.998 2025-03-20 01:11:42.998 435971 1603 1 0 12621 2025-03-20 06:18:28.909 2025-03-20 06:18:28.909 435971 2514 91 0 12622 2025-03-20 01:11:42.998 2025-03-20 01:11:42.998 435971 2674 10 0 12623 2025-03-20 06:18:28.909 2025-03-20 06:18:28.909 435971 8954 10 0 12624 2025-03-20 00:39:27.323 2025-03-20 00:39:27.323 435971 9177 1 0 12625 2025-03-20 00:41:35.633 2025-03-20 00:41:35.633 435972 4323 1 0 12626 2025-03-20 04:02:22.525 2025-03-20 04:02:22.525 435973 897 90 0 12627 2025-03-20 04:02:22.525 2025-03-20 04:02:22.525 435973 1433 10 0 12628 2025-03-20 00:42:40.141 2025-03-20 00:42:40.141 435973 21303 1 0 12629 2025-03-20 02:23:08.663 2025-03-20 02:23:08.663 435974 6137 2 0 12630 2025-03-20 02:23:08.663 2025-03-20 02:23:08.663 435974 11967 19 0 12631 2025-03-20 00:45:32.212 2025-03-20 00:45:32.212 435974 16289 1 0 12632 2025-03-20 00:46:05.929 2025-03-20 00:46:05.929 435974 20509 0 0 12633 2025-03-20 00:45:58.614 2025-03-20 00:45:58.614 435975 21418 1 0 12634 2025-03-20 00:47:33.332 2025-03-20 00:47:33.332 435976 11165 1 0 12635 2025-03-20 00:48:12.959 2025-03-20 00:48:12.959 435977 10063 1 0 12636 2025-03-20 00:48:51.079 2025-03-20 00:48:51.079 435978 9982 1 0 12637 2025-03-20 01:38:52.011 2025-03-20 01:38:52.011 435979 5779 10 0 12638 2025-03-20 01:38:52.011 2025-03-20 01:38:52.011 435979 8242 90 0 12639 2025-03-20 01:08:09.017 2025-03-20 01:08:09.017 435979 8954 90 0 12640 2025-03-20 00:53:18.501 2025-03-20 00:53:18.501 435979 15588 0 0 12641 2025-03-20 00:51:07.598 2025-03-20 00:51:07.598 435979 16124 1 0 12642 2025-03-20 00:52:49.288 2025-03-20 00:52:49.288 435979 17321 0 0 12643 2025-03-20 01:08:09.017 2025-03-20 01:08:09.017 435979 17696 10 0 12644 2025-03-20 00:53:06.044 2025-03-20 00:53:06.044 435980 13566 1 0 12645 2025-03-20 00:53:34.067 2025-03-20 00:53:34.067 435980 20663 0 0 12646 2025-03-20 01:37:47.21 2025-03-20 01:37:47.21 435981 1584 0 0 12647 2025-03-20 01:37:47.21 2025-03-20 01:37:47.21 435981 2013 2 0 12648 2025-03-20 00:55:46.955 2025-03-20 00:55:46.955 435981 6229 10 0 12649 2025-03-20 02:57:38.675 2025-03-20 02:57:38.675 435981 11885 2 0 12650 2025-03-20 02:57:38.675 2025-03-20 02:57:38.675 435981 16704 19 0 12651 2025-03-20 00:57:23.165 2025-03-20 00:57:23.165 435982 616 15 0 12652 2025-03-20 00:59:37.325 2025-03-20 00:59:37.325 435983 16670 1 0 12653 2025-03-20 01:00:46.841 2025-03-20 01:00:46.841 435984 19930 1 0 12654 2025-03-20 04:17:09.379 2025-03-20 04:17:09.379 435985 2327 8 0 12655 2025-03-20 04:17:08.379 2025-03-20 04:17:08.379 435985 5779 1 0 12656 2025-03-20 04:17:09.379 2025-03-20 04:17:09.379 435985 6687 1 0 12657 2025-03-20 01:01:44.928 2025-03-20 01:01:44.928 435985 17570 125 0 12658 2025-03-20 04:17:08.379 2025-03-20 04:17:08.379 435985 21712 0 0 12659 2025-03-20 06:32:49.599 2025-03-20 06:32:49.599 435986 27 9 0 12660 2025-03-20 06:32:49.929 2025-03-20 06:32:49.929 435986 621 9 0 12661 2025-03-20 03:02:30.467 2025-03-20 03:02:30.467 435986 811 1 0 12662 2025-03-20 02:21:17.726 2025-03-20 02:21:17.726 435986 1354 1 0 12663 2025-03-20 02:21:17.726 2025-03-20 02:21:17.726 435986 2056 10 0 12664 2025-03-20 03:02:30.467 2025-03-20 03:02:30.467 435986 5865 0 0 12665 2025-03-20 06:32:49.781 2025-03-20 06:32:49.781 435986 7668 9 0 12666 2025-03-20 02:57:34.807 2025-03-20 02:57:34.807 435986 8004 19 0 12667 2025-03-20 02:57:34.807 2025-03-20 02:57:34.807 435986 11395 2 0 12668 2025-03-20 01:03:01.871 2025-03-20 01:03:01.871 435986 16354 5 0 12669 2025-03-20 06:32:49.599 2025-03-20 06:32:49.599 435986 20751 1 0 12670 2025-03-20 06:32:49.929 2025-03-20 06:32:49.929 435986 21369 1 0 12671 2025-03-20 06:32:49.781 2025-03-20 06:32:49.781 435986 21398 1 0 12672 2025-03-20 05:57:12.536 2025-03-20 05:57:12.536 435987 651 3 0 12673 2025-03-20 04:16:56.283 2025-03-20 04:16:56.283 435987 861 0 0 12674 2025-03-20 14:30:22.22 2025-03-20 14:30:22.22 435987 2016 1 0 12675 2025-03-20 01:03:52.821 2025-03-20 01:03:52.821 435987 5694 100 0 12676 2025-03-20 02:04:33.139 2025-03-20 02:04:33.139 435987 9307 4 0 12677 2025-03-20 04:16:56.31 2025-03-20 04:16:56.31 435987 9347 8 0 12678 2025-03-20 14:30:22.22 2025-03-20 14:30:22.22 435987 15521 9 0 12679 2025-03-20 04:16:56.283 2025-03-20 04:16:56.283 435987 18735 1 0 12680 2025-03-20 04:16:56.31 2025-03-20 04:16:56.31 435987 20781 1 0 12681 2025-03-20 05:57:12.536 2025-03-20 05:57:12.536 435987 20998 31 0 12682 2025-03-20 02:04:33.139 2025-03-20 02:04:33.139 435987 21810 36 0 12683 2025-03-20 02:56:23.627 2025-03-20 02:56:23.627 435988 802 19 0 12684 2025-03-20 02:21:10.077 2025-03-20 02:21:10.077 435988 899 1 0 12685 2025-03-20 02:21:10.077 2025-03-20 02:21:10.077 435988 2774 10 0 12686 2025-03-20 02:56:17.374 2025-03-20 02:56:17.374 435988 4167 19 0 12687 2025-03-20 01:03:59.622 2025-03-20 01:03:59.622 435988 7185 150 0 12688 2025-03-20 02:56:17.374 2025-03-20 02:56:17.374 435988 8508 2 0 12689 2025-03-20 02:56:23.627 2025-03-20 02:56:23.627 435988 11378 2 0 12690 2025-03-20 02:56:22.937 2025-03-20 02:56:22.937 435988 16212 19 0 12691 2025-03-20 02:56:22.937 2025-03-20 02:56:22.937 435988 18557 2 0 12692 2025-03-20 01:05:05.345 2025-03-20 01:05:05.345 435989 12490 1 0 12693 2025-03-20 01:05:36.145 2025-03-20 01:05:36.145 435990 5500 1 0 12694 2025-03-20 01:06:13.176 2025-03-20 01:06:13.176 435991 1549 10 0 12695 2025-03-20 01:06:35.016 2025-03-20 01:06:35.016 435992 2734 1 0 12696 2025-03-20 01:10:04.574 2025-03-20 01:10:04.574 435992 9982 58 0 12697 2025-03-20 01:10:04.574 2025-03-20 01:10:04.574 435992 10698 6 0 12698 2025-03-20 01:08:36.771 2025-03-20 01:08:36.771 435993 621 1 0 12699 2025-03-20 04:16:55.851 2025-03-20 04:16:55.851 435993 776 5 0 12700 2025-03-20 02:39:20.166 2025-03-20 02:39:20.166 435993 8380 1 0 12701 2025-03-20 04:16:55.851 2025-03-20 04:16:55.851 435993 9261 1 0 12702 2025-03-20 03:30:29.23 2025-03-20 03:30:29.23 435993 11561 19 0 12703 2025-03-20 01:08:44.29 2025-03-20 01:08:44.29 435993 20490 0 0 12704 2025-03-20 02:39:20.166 2025-03-20 02:39:20.166 435993 20972 9 0 12705 2025-03-20 03:30:29.23 2025-03-20 03:30:29.23 435993 21083 2 0 12706 2025-03-20 01:09:07.472 2025-03-20 01:09:07.472 435994 12656 1 0 12707 2025-03-20 01:09:57.372 2025-03-20 01:09:57.372 435995 21401 1 0 12708 2025-03-20 01:10:59.588 2025-03-20 01:10:59.588 435996 11018 1 0 12709 2025-03-20 04:02:38.809 2025-03-20 04:02:38.809 435997 827 90 0 12710 2025-03-20 01:37:30.683 2025-03-20 01:37:30.683 435997 2577 10 0 12711 2025-03-20 01:37:30.683 2025-03-20 01:37:30.683 435997 5171 90 0 12712 2025-03-20 01:12:00.616 2025-03-20 01:12:00.616 435997 14258 1 0 12713 2025-03-20 04:02:38.809 2025-03-20 04:02:38.809 435997 21022 10 0 12714 2025-03-20 01:39:13.847 2025-03-20 01:39:13.847 435998 1426 90 0 12715 2025-03-20 01:39:13.847 2025-03-20 01:39:13.847 435998 9262 10 0 12716 2025-03-20 01:12:22.04 2025-03-20 01:12:22.04 435998 9529 1 0 12717 2025-03-20 03:01:45.119 2025-03-20 03:01:45.119 435999 1740 1 0 12718 2025-03-20 03:01:45.119 2025-03-20 03:01:45.119 435999 10554 0 0 12719 2025-03-20 01:14:42.611 2025-03-20 01:14:42.611 435999 13921 15 0 12720 2025-03-20 01:15:54.181 2025-03-20 01:15:54.181 436000 1273 1 0 12721 2025-03-20 01:40:09.655 2025-03-20 01:40:09.655 436000 5961 90 0 12722 2025-03-20 01:40:09.655 2025-03-20 01:40:09.655 436000 13143 10 0 12723 2025-03-20 01:20:22.248 2025-03-20 01:20:22.248 436001 629 0 0 12724 2025-03-20 01:31:50.352 2025-03-20 01:31:50.352 436001 684 7 0 12725 2025-03-20 01:31:49.973 2025-03-20 01:31:49.973 436001 891 7 0 12726 2025-03-20 01:31:50.142 2025-03-20 01:31:50.142 436001 1712 1 0 12727 2025-03-20 01:18:02.992 2025-03-20 01:18:02.992 436001 2330 1 0 12728 2025-03-20 01:20:49.002 2025-03-20 01:20:49.002 436001 3213 0 0 12729 2025-03-20 04:09:04.678 2025-03-20 04:09:04.678 436001 7119 9 0 12730 2025-03-20 04:09:04.678 2025-03-20 04:09:04.678 436001 7766 81 0 12731 2025-03-20 04:09:03.722 2025-03-20 04:09:03.722 436001 7891 1 0 12732 2025-03-20 01:31:50.514 2025-03-20 01:31:50.514 436001 8037 1 0 12733 2025-03-20 01:31:50.142 2025-03-20 01:31:50.142 436001 9820 7 0 12734 2025-03-20 01:31:50.352 2025-03-20 01:31:50.352 436001 11091 1 0 12735 2025-03-20 04:09:03.722 2025-03-20 04:09:03.722 436001 12261 0 0 12736 2025-03-20 04:09:03.975 2025-03-20 04:09:03.975 436001 16769 8 0 12737 2025-03-20 04:09:03.975 2025-03-20 04:09:03.975 436001 18901 1 0 12738 2025-03-20 01:31:49.973 2025-03-20 01:31:49.973 436001 21207 1 0 12739 2025-03-20 01:31:50.514 2025-03-20 01:31:50.514 436001 21405 7 0 12740 2025-03-20 01:37:46.307 2025-03-20 01:37:46.307 436002 1236 0 0 12741 2025-03-20 01:37:46.307 2025-03-20 01:37:46.307 436002 16250 2 0 12742 2025-03-20 01:21:12.771 2025-03-20 01:21:12.771 436002 18500 10 0 12743 2025-03-20 01:22:09.911 2025-03-20 01:22:09.911 436003 701 1 0 12744 2025-03-20 01:38:51.21 2025-03-20 01:38:51.21 436003 2722 10 0 12745 2025-03-20 01:38:51.21 2025-03-20 01:38:51.21 436003 6191 90 0 12746 2025-03-20 01:22:32.612 2025-03-20 01:22:32.612 436004 19378 1 0 12747 2025-03-20 05:22:53.318 2025-03-20 05:22:53.318 436004 20182 2 0 12748 2025-03-20 05:22:53.318 2025-03-20 05:22:53.318 436004 21037 19 0 12749 2025-03-20 01:23:50.709 2025-03-20 01:23:50.709 436005 680 10 0 12750 2025-03-20 07:16:45.1 2025-03-20 07:16:45.1 436005 1433 2 0 12751 2025-03-20 02:56:01.939 2025-03-20 02:56:01.939 436005 1802 19 0 12752 2025-03-20 07:16:45.1 2025-03-20 07:16:45.1 436005 18174 19 0 12753 2025-03-20 02:22:33.063 2025-03-20 02:22:33.063 436005 18309 10 0 12754 2025-03-20 02:56:01.939 2025-03-20 02:56:01.939 436005 21021 2 0 12755 2025-03-20 02:22:33.063 2025-03-20 02:22:33.063 436005 21712 90 0 12756 2025-03-20 01:23:58.394 2025-03-20 01:23:58.394 436006 11648 100 0 12757 2025-03-20 02:20:20.734 2025-03-20 02:20:20.734 436007 635 10 0 12758 2025-03-20 02:56:00.299 2025-03-20 02:56:00.299 436007 822 19 0 12759 2025-03-20 02:20:20.734 2025-03-20 02:20:20.734 436007 14774 1 0 12760 2025-03-20 01:25:43.132 2025-03-20 01:25:43.132 436007 20337 21 0 12761 2025-03-20 02:56:00.299 2025-03-20 02:56:00.299 436007 21600 2 0 12762 2025-03-20 01:31:35.307 2025-03-20 01:31:35.307 436008 17976 10 0 12763 2025-03-20 01:37:45.579 2025-03-20 01:37:45.579 436008 19980 0 0 12764 2025-03-20 01:37:45.579 2025-03-20 01:37:45.579 436008 21422 2 0 12765 2025-03-20 01:32:26.817 2025-03-20 01:32:26.817 436009 750 10 0 12766 2025-03-20 02:56:02.742 2025-03-20 02:56:02.742 436009 760 0 0 12767 2025-03-20 03:01:03.537 2025-03-20 03:01:03.537 436009 15192 1 0 12768 2025-03-20 03:01:03.537 2025-03-20 03:01:03.537 436009 16296 0 0 12769 2025-03-20 02:56:02.742 2025-03-20 02:56:02.742 436009 16653 2 0 12770 2025-03-20 01:52:52.977 2025-03-20 01:52:52.977 436010 951 10 0 12771 2025-03-20 01:44:59.983 2025-03-20 01:44:59.983 436010 1552 1 0 12772 2025-03-20 01:37:14.254 2025-03-20 01:37:14.254 436010 1800 1 0 12773 2025-03-20 01:44:59.983 2025-03-20 01:44:59.983 436010 9330 0 0 12774 2025-03-20 02:22:54.754 2025-03-20 02:22:54.754 436010 13575 2 0 12775 2025-03-20 01:45:00.412 2025-03-20 01:45:00.412 436010 16970 0 0 12776 2025-03-20 01:52:52.977 2025-03-20 01:52:52.977 436010 17690 1 0 12777 2025-03-20 02:22:54.754 2025-03-20 02:22:54.754 436010 20479 19 0 12778 2025-03-20 01:45:00.412 2025-03-20 01:45:00.412 436010 21131 1 0 12779 2025-03-20 01:38:08.564 2025-03-20 01:38:08.564 436011 20646 1 0 12780 2025-03-20 01:38:48.568 2025-03-20 01:38:48.568 436012 8326 1 0 12781 2025-03-20 01:46:36.607 2025-03-20 01:46:36.607 436012 14489 5 0 12782 2025-03-20 01:46:36.607 2025-03-20 01:46:36.607 436012 16440 45 0 12783 2025-03-20 01:39:02.053 2025-03-20 01:39:02.053 436013 14465 1 0 12784 2025-03-20 01:53:49.932 2025-03-20 01:53:49.932 436014 730 2 0 12785 2025-03-20 01:58:34.411 2025-03-20 01:58:34.411 436014 1039 1 0 12786 2025-03-20 02:22:51.329 2025-03-20 02:22:51.329 436014 7992 19 0 12787 2025-03-20 01:39:25.751 2025-03-20 01:39:25.751 436014 12072 1 0 12788 2025-03-20 01:44:54.994 2025-03-20 01:44:54.994 436014 16447 0 0 12789 2025-03-20 02:22:51.329 2025-03-20 02:22:51.329 436014 18351 2 0 12790 2025-03-20 01:58:34.411 2025-03-20 01:58:34.411 436014 19806 9 0 12791 2025-03-20 01:53:49.932 2025-03-20 01:53:49.932 436014 21494 0 0 12792 2025-03-20 02:51:46.207 2025-03-20 02:51:46.207 436015 620 9 0 12793 2025-03-20 04:18:18.019 2025-03-20 04:18:18.019 436015 647 9 0 12794 2025-03-20 05:02:08.328 2025-03-20 05:02:08.328 436015 1489 1 0 12795 2025-03-20 05:17:54.946 2025-03-20 05:17:54.946 436015 1624 7 0 12796 2025-03-20 02:56:03.961 2025-03-20 02:56:03.961 436015 1890 2 0 12797 2025-03-26 05:02:27.367 2025-03-26 05:02:27.367 436015 2233 90 0 12798 2025-03-20 04:18:17.327 2025-03-20 04:18:17.327 436015 2961 8 0 12799 2025-03-26 05:02:27.367 2025-03-26 05:02:27.367 436015 5557 10 0 12800 2025-03-20 04:18:16.993 2025-03-20 04:18:16.993 436015 7583 1 0 12801 2025-03-20 05:02:08.328 2025-03-20 05:02:08.328 436015 14651 9 0 12802 2025-03-20 04:18:18.019 2025-03-20 04:18:18.019 436015 16214 81 0 12803 2025-03-20 05:17:54.946 2025-03-20 05:17:54.946 436015 16816 1 0 12804 2025-03-20 02:51:46.207 2025-03-20 02:51:46.207 436015 17690 1 0 12805 2025-03-20 02:56:03.961 2025-03-20 02:56:03.961 436015 19471 19 0 12806 2025-03-20 04:18:16.993 2025-03-20 04:18:16.993 436015 20495 0 0 12807 2025-03-20 02:59:45.939 2025-03-20 02:59:45.939 436015 20745 1 0 12808 2025-03-20 04:18:17.327 2025-03-20 04:18:17.327 436015 20970 1 0 12809 2025-03-20 02:59:45.939 2025-03-20 02:59:45.939 436015 21041 0 0 12810 2025-03-20 01:40:26.499 2025-03-20 01:40:26.499 436015 21631 15 0 12811 2025-03-20 01:45:46.451 2025-03-20 01:45:46.451 436016 718 0 0 12812 2025-03-20 02:22:42.299 2025-03-20 02:22:42.299 436016 1512 19 0 12813 2025-03-20 01:42:28.528 2025-03-20 01:42:28.528 436016 2502 10 0 12814 2025-03-20 01:53:30.719 2025-03-20 01:53:30.719 436016 6741 9 0 12815 2025-03-20 01:53:30.719 2025-03-20 01:53:30.719 436016 8544 1 0 12816 2025-03-20 02:22:42.299 2025-03-20 02:22:42.299 436016 11018 2 0 12817 2025-03-20 01:49:35.843 2025-03-20 01:49:35.843 436016 13547 0 0 12818 2025-03-20 02:55:45.286 2025-03-20 02:55:45.286 436017 676 2 0 12819 2025-03-20 01:45:16.692 2025-03-20 01:45:16.692 436017 1825 10 0 12820 2025-03-20 02:55:45.286 2025-03-20 02:55:45.286 436017 13903 19 0 12821 2025-03-20 04:17:57.967 2025-03-20 04:17:57.967 436017 20555 0 10 12822 2025-03-20 01:46:25.769 2025-03-20 01:46:25.769 436018 8508 1 0 12823 2025-03-20 04:06:09.805 2025-03-20 04:06:09.805 436018 21263 10 0 12824 2025-03-20 04:06:09.805 2025-03-20 04:06:09.805 436018 21829 90 0 12825 2025-03-20 02:22:37.976 2025-03-20 02:22:37.976 436019 3504 19 0 12826 2025-03-20 01:49:33.414 2025-03-20 01:49:33.414 436019 5708 0 0 12827 2025-03-20 01:46:54.86 2025-03-20 01:46:54.86 436019 11648 1 0 12828 2025-03-20 02:22:37.976 2025-03-20 02:22:37.976 436019 21374 2 0 12829 2025-03-20 01:49:07.346 2025-03-20 01:49:07.346 436020 18005 1 0 12830 2025-03-20 04:09:19.562 2025-03-20 04:09:19.562 436021 674 9 0 12831 2025-03-20 04:09:13.597 2025-03-20 04:09:13.597 436021 937 1 0 12832 2025-03-20 02:00:08.616 2025-03-20 02:00:08.616 436021 1751 0 0 12833 2025-03-20 04:09:13.597 2025-03-20 04:09:13.597 436021 2710 0 0 12834 2025-03-20 04:09:13.857 2025-03-20 04:09:13.857 436021 2735 1 0 12835 2025-03-20 01:54:31.679 2025-03-20 01:54:31.679 436021 6578 0 0 12836 2025-03-20 01:59:05.365 2025-03-20 01:59:05.365 436021 7847 0 0 12837 2025-03-20 06:12:56.896 2025-03-20 06:12:56.896 436021 10944 7 0 12838 2025-03-20 01:53:05.059 2025-03-20 01:53:05.059 436021 12261 1 0 12839 2025-03-20 02:02:59.219 2025-03-20 02:02:59.219 436021 12507 0 0 12840 2025-03-20 01:59:33.792 2025-03-20 01:59:33.792 436021 13055 0 0 12841 2025-03-20 06:12:56.896 2025-03-20 06:12:56.896 436021 15941 1 0 12842 2025-03-20 02:02:13.402 2025-03-20 02:02:13.402 436021 17817 0 0 12843 2025-03-20 06:12:56.697 2025-03-20 06:12:56.697 436021 18557 1 0 12844 2025-03-20 06:12:56.697 2025-03-20 06:12:56.697 436021 20509 7 0 12845 2025-03-20 04:09:19.562 2025-03-20 04:09:19.562 436021 20776 81 0 12846 2025-03-20 01:57:47.303 2025-03-20 01:57:47.303 436021 20788 0 0 12847 2025-03-20 01:58:10.951 2025-03-20 01:58:10.951 436021 21526 0 0 12848 2025-03-20 04:09:13.857 2025-03-20 04:09:13.857 436021 21647 8 0 12849 2025-03-20 01:53:21.813 2025-03-20 01:53:21.813 436021 21791 0 0 12850 2025-03-20 01:55:14.317 2025-03-20 01:55:14.317 436022 4083 0 0 12851 2025-03-20 02:22:28.403 2025-03-20 02:22:28.403 436022 5978 19 0 12852 2025-03-20 01:55:01.311 2025-03-20 01:55:01.311 436022 14357 1 0 12853 2025-03-20 02:22:28.403 2025-03-20 02:22:28.403 436022 20969 2 0 12854 2025-03-20 02:55:37.246 2025-03-20 02:55:37.246 436023 1009 19 0 12855 2025-03-20 02:20:02.072 2025-03-20 02:20:02.072 436023 2832 3 0 12856 2025-03-20 02:20:02.072 2025-03-20 02:20:02.072 436023 14280 23 0 12857 2025-03-20 01:55:40.353 2025-03-20 01:55:40.353 436023 17147 10 0 12858 2025-03-20 02:55:37.246 2025-03-20 02:55:37.246 436023 18271 2 0 12859 2025-03-20 03:58:45.747 2025-03-20 03:58:45.747 436023 19777 90 0 12860 2025-03-20 03:58:45.747 2025-03-20 03:58:45.747 436023 21281 10 0 12861 2025-03-20 07:10:53.562 2025-03-20 07:10:53.562 436024 14169 1 0 12862 2025-03-20 02:28:00.207 2025-03-20 02:28:00.207 436024 17494 19 0 12863 2025-03-20 01:58:31.802 2025-03-20 01:58:31.802 436024 20881 1 0 12864 2025-03-20 07:10:53.562 2025-03-20 07:10:53.562 436024 21815 5 0 12865 2025-03-20 02:28:00.207 2025-03-20 02:28:00.207 436024 21824 2 0 12866 2025-03-20 02:21:50.434 2025-03-20 02:21:50.434 436025 997 9 0 12867 2025-03-20 03:56:38.657 2025-03-20 03:56:38.657 436025 1425 1 0 12868 2025-03-20 02:21:50.434 2025-03-20 02:21:50.434 436025 2639 1 0 12869 2025-03-20 04:22:20.476 2025-03-20 04:22:20.476 436025 4287 0 0 12870 2025-03-20 01:59:27.092 2025-03-20 01:59:27.092 436025 5527 100 0 12871 2025-03-20 02:59:23.437 2025-03-20 02:59:23.437 436025 9920 1 0 12872 2025-03-20 02:58:31.162 2025-03-20 02:58:31.162 436025 12169 2 0 12873 2025-03-20 03:56:38.657 2025-03-20 03:56:38.657 436025 13042 6 0 12874 2025-03-20 02:58:31.162 2025-03-20 02:58:31.162 436025 14791 0 0 12875 2025-03-20 04:22:20.476 2025-03-20 04:22:20.476 436025 18901 1 0 12876 2025-03-20 02:59:23.437 2025-03-20 02:59:23.437 436025 19673 0 0 12877 2025-03-20 02:01:32.387 2025-03-20 02:01:32.387 436026 14663 1 0 12878 2025-03-20 04:53:38.014 2025-03-20 04:53:38.014 436026 17042 1 0 12879 2025-03-20 04:53:38.014 2025-03-20 04:53:38.014 436026 18188 9 0 12880 2025-03-20 10:16:01.779 2025-03-20 10:16:01.779 436029 718 10 0 12881 2025-03-20 03:27:43.094 2025-03-20 03:27:43.094 436029 802 13 0 12882 2025-03-20 02:21:24.37 2025-03-20 02:21:24.37 436029 831 9 0 12883 2025-03-20 02:21:24.37 2025-03-20 02:21:24.37 436029 1162 1 0 12884 2025-03-20 02:08:24.152 2025-03-20 02:08:24.152 436029 2718 3 0 12885 2025-03-20 02:04:36.096 2025-03-20 02:04:36.096 436029 7395 1 0 12886 2025-03-20 02:56:08.245 2025-03-20 02:56:08.245 436029 13174 45 0 12887 2025-03-20 02:05:21.615 2025-03-20 02:05:21.615 436029 13544 0 0 12888 2025-03-20 02:56:08.245 2025-03-20 02:56:08.245 436029 15147 5 0 12889 2025-03-20 02:53:03.938 2025-03-20 02:53:03.938 436029 16387 2 0 12890 2025-03-20 02:53:03.938 2025-03-20 02:53:03.938 436029 16633 19 0 12891 2025-03-20 02:07:01.175 2025-03-20 02:07:01.175 436029 17103 0 0 12892 2025-03-20 10:16:01.779 2025-03-20 10:16:01.779 436029 20841 1 0 12893 2025-03-20 03:27:43.094 2025-03-20 03:27:43.094 436029 20858 115 0 12894 2025-03-20 02:08:24.152 2025-03-20 02:08:24.152 436029 21262 29 0 12895 2025-03-20 05:53:43.48 2025-03-20 05:53:43.48 436029 21389 2 0 12896 2025-03-20 05:53:43.48 2025-03-20 05:53:43.48 436029 21797 19 0 12897 2025-03-20 02:49:21.058 2025-03-20 02:49:21.058 436030 828 1 0 12898 2025-03-20 02:50:21.863 2025-03-20 02:50:21.863 436030 1051 1 0 12899 2025-03-20 02:49:20.773 2025-03-20 02:49:20.773 436030 1784 0 0 12900 2025-03-20 02:49:21.058 2025-03-20 02:49:21.058 436030 2459 0 0 12901 2025-03-20 02:52:56.182 2025-03-20 02:52:56.182 436030 2596 2 0 12902 2025-03-20 02:49:18.952 2025-03-20 02:49:18.952 436030 2640 0 0 12903 2025-03-20 02:49:20.312 2025-03-20 02:49:20.312 436030 3409 1 0 12904 2025-03-20 02:52:56.182 2025-03-20 02:52:56.182 436030 3417 19 0 12905 2025-03-20 02:49:18.725 2025-03-20 02:49:18.725 436030 3717 0 0 12906 2025-03-20 02:21:15.036 2025-03-20 02:21:15.036 436030 4225 9 0 12907 2025-03-20 02:49:19.837 2025-03-20 02:49:19.837 436030 4388 0 0 12908 2025-03-20 02:49:20.312 2025-03-20 02:49:20.312 436030 4831 0 0 12909 2025-03-20 02:50:21.863 2025-03-20 02:50:21.863 436030 5128 0 0 12910 2025-03-20 02:49:20.519 2025-03-20 02:49:20.519 436030 5171 1 0 12911 2025-03-20 02:49:19.354 2025-03-20 02:49:19.354 436030 5500 1 0 12912 2025-03-20 02:50:22.501 2025-03-20 02:50:22.501 436030 5578 1 0 12913 2025-03-20 05:53:39.225 2025-03-20 05:53:39.225 436030 6191 19 0 12914 2025-03-20 02:21:15.036 2025-03-20 02:21:15.036 436030 7960 1 0 12915 2025-03-20 02:49:20.519 2025-03-20 02:49:20.519 436030 9336 0 0 12916 2025-03-20 02:49:18.952 2025-03-20 02:49:18.952 436030 9529 1 0 12917 2025-03-20 02:50:22.501 2025-03-20 02:50:22.501 436030 11491 0 0 12918 2025-03-20 02:50:22.184 2025-03-20 02:50:22.184 436030 11885 1 0 12919 2025-03-20 05:53:39.225 2025-03-20 05:53:39.225 436030 12261 2 0 12920 2025-03-20 02:50:21.493 2025-03-20 02:50:21.493 436030 14168 0 0 12921 2025-03-20 02:49:20.145 2025-03-20 02:49:20.145 436030 14381 0 0 12922 2025-03-20 02:49:19.634 2025-03-20 02:49:19.634 436030 14663 1 0 12923 2025-03-20 02:49:19.837 2025-03-20 02:49:19.837 436030 15463 1 0 12924 2025-03-20 02:50:22.838 2025-03-20 02:50:22.838 436030 16229 0 0 12925 2025-03-20 02:49:19.354 2025-03-20 02:49:19.354 436030 16598 0 0 12926 2025-03-20 02:49:20.145 2025-03-20 02:49:20.145 436030 18426 1 0 12927 2025-03-20 02:49:19.634 2025-03-20 02:49:19.634 436030 20439 0 0 12928 2025-03-20 02:49:18.725 2025-03-20 02:49:18.725 436030 20599 1 0 12929 2025-03-20 02:50:22.184 2025-03-20 02:50:22.184 436030 20681 0 0 12930 2025-03-20 02:49:20.773 2025-03-20 02:49:20.773 436030 21067 1 0 12931 2025-03-20 02:06:00.984 2025-03-20 02:06:00.984 436030 21184 1 0 12932 2025-03-20 02:50:21.493 2025-03-20 02:50:21.493 436030 21600 1 0 12933 2025-03-20 02:50:22.838 2025-03-20 02:50:22.838 436030 21810 1 0 12934 2025-03-20 02:12:09.299 2025-03-20 02:12:09.299 436031 2829 0 0 12935 2025-03-20 02:12:02.641 2025-03-20 02:12:02.641 436031 4624 0 0 12936 2025-03-20 02:53:09.777 2025-03-20 02:53:09.777 436031 5293 19 0 12937 2025-03-20 02:08:10.488 2025-03-20 02:08:10.488 436031 5499 0 0 12938 2025-03-20 02:11:56.297 2025-03-20 02:11:56.297 436031 9669 0 0 12939 2025-03-20 02:21:29.236 2025-03-20 02:21:29.236 436031 11423 9 0 12940 2025-03-20 02:53:09.777 2025-03-20 02:53:09.777 436031 12356 2 0 12941 2025-03-20 02:07:28.957 2025-03-20 02:07:28.957 436031 15732 10 0 12942 2025-03-20 02:08:26.902 2025-03-20 02:08:26.902 436031 20655 0 0 12943 2025-03-20 02:21:29.236 2025-03-20 02:21:29.236 436031 21506 1 0 12944 2025-03-20 02:17:59.614 2025-03-20 02:17:59.614 436032 676 10 0 12945 2025-03-20 02:08:39.179 2025-03-20 02:08:39.179 436032 1745 21 0 12946 2025-03-20 02:55:35.752 2025-03-20 02:55:35.752 436032 4043 19 0 12947 2025-03-20 02:55:35.752 2025-03-20 02:55:35.752 436032 4166 2 0 12948 2025-03-20 02:20:52.662 2025-03-20 02:20:52.662 436032 9611 2 0 12949 2025-03-20 07:01:26.603 2025-03-20 07:01:26.603 436032 10549 3 0 12950 2025-03-20 07:01:26.603 2025-03-20 07:01:26.603 436032 12188 0 0 12951 2025-03-20 03:44:20.592 2025-03-20 03:44:20.592 436032 15484 3 0 12952 2025-03-20 03:44:20.592 2025-03-20 03:44:20.592 436032 15617 0 0 12953 2025-03-20 02:20:52.662 2025-03-20 02:20:52.662 436032 16042 18 0 12954 2025-03-20 02:22:10.414 2025-03-20 02:22:10.414 436032 18219 19 0 12955 2025-03-20 02:22:10.414 2025-03-20 02:22:10.414 436032 20980 2 0 12956 2025-03-20 02:17:59.614 2025-03-20 02:17:59.614 436032 21520 90 0 12957 2025-03-20 10:02:16.951 2025-03-20 10:02:16.951 436033 1471 2 0 12958 2025-03-20 02:21:07.31 2025-03-20 02:21:07.31 436033 1632 1 0 12959 2025-03-20 02:41:42.855 2025-03-20 02:41:42.855 436033 2328 0 0 12960 2025-03-20 02:41:42.855 2025-03-20 02:41:42.855 436033 9355 1 0 12961 2025-03-20 02:09:22.227 2025-03-20 02:09:22.227 436033 14607 1 0 12962 2025-03-20 10:02:16.951 2025-03-20 10:02:16.951 436033 16858 19 0 12963 2025-03-20 02:21:07.31 2025-03-20 02:21:07.31 436033 19087 9 0 12964 2025-03-20 02:24:38.58 2025-03-20 02:24:38.58 436033 20102 36 0 12965 2025-03-20 02:24:38.58 2025-03-20 02:24:38.58 436033 21599 4 0 12966 2025-03-20 02:09:49.211 2025-03-20 02:09:49.211 436034 17944 1 0 12967 2025-03-20 02:17:20.34 2025-03-20 02:17:20.34 436035 5904 1 0 12968 2025-03-20 02:54:12.781 2025-03-20 02:54:12.781 436036 797 1 0 12969 2025-03-20 04:11:40.827 2025-03-20 04:11:40.827 436036 844 9 0 12970 2025-03-20 04:11:42.13 2025-03-20 04:11:42.13 436036 876 1 0 12971 2025-03-20 02:18:07.468 2025-03-20 02:18:07.468 436036 977 100 0 12972 2025-03-20 04:11:41.566 2025-03-20 04:11:41.566 436036 3392 1 0 12973 2025-03-20 04:11:41.089 2025-03-20 04:11:41.089 436036 4819 9 0 12974 2025-03-20 04:11:41.566 2025-03-20 04:11:41.566 436036 5173 9 0 12975 2025-03-20 03:29:09.62 2025-03-20 03:29:09.62 436036 6202 2 0 12976 2025-03-20 04:11:41.089 2025-03-20 04:11:41.089 436036 9669 1 0 12977 2025-03-20 03:29:09.62 2025-03-20 03:29:09.62 436036 11443 19 0 12978 2025-03-20 04:09:32.689 2025-03-20 04:09:32.689 436036 14791 18 0 12979 2025-03-20 02:54:12.781 2025-03-20 02:54:12.781 436036 15200 0 0 12980 2025-03-20 04:11:41.365 2025-03-20 04:11:41.365 436036 16680 1 0 12981 2025-03-20 04:19:04.71 2025-03-20 04:19:04.71 436036 17275 0 100 12982 2025-03-20 04:11:40.827 2025-03-20 04:11:40.827 436036 19888 1 0 12983 2025-03-20 04:11:42.13 2025-03-20 04:11:42.13 436036 21159 9 0 12984 2025-03-20 04:09:32.689 2025-03-20 04:09:32.689 436036 21228 2 0 12985 2025-03-20 04:11:41.365 2025-03-20 04:11:41.365 436036 21712 9 0 12986 2025-03-20 03:43:11.042 2025-03-20 03:43:11.042 436037 1044 25 0 12987 2025-03-20 02:24:34.553 2025-03-20 02:24:34.553 436037 8505 4 0 12988 2025-03-20 05:53:12.971 2025-03-20 05:53:12.971 436037 9366 2 0 12989 2025-03-20 02:24:34.553 2025-03-20 02:24:34.553 436037 10102 36 0 12990 2025-03-20 03:43:11.042 2025-03-20 03:43:11.042 436037 12356 3 0 12991 2025-03-20 05:53:12.971 2025-03-20 05:53:12.971 436037 16839 19 0 12992 2025-03-20 02:23:08.464 2025-03-20 02:23:08.464 436037 20657 1 0 12993 2025-03-20 04:57:05.247 2025-03-20 04:57:05.247 436038 730 9 0 12994 2025-03-20 04:57:05.247 2025-03-20 04:57:05.247 436038 4115 1 0 12995 2025-03-20 02:24:05.571 2025-03-20 02:24:05.571 436038 21398 1 0 12996 2025-03-20 02:24:38.392 2025-03-20 02:24:38.392 436039 8176 1 0 12997 2025-03-20 07:30:21.193 2025-03-20 07:30:21.193 436040 1718 1 0 12998 2025-03-20 07:12:08.892 2025-03-20 07:12:08.892 436040 12808 10 0 12999 2025-03-20 07:12:08.892 2025-03-20 07:12:08.892 436040 14657 1 0 13000 2025-03-20 07:30:21.193 2025-03-20 07:30:21.193 436040 15925 9 0 13001 2025-03-20 02:25:31 2025-03-20 02:25:31 436040 19829 1 0 13002 2025-03-20 04:48:09.064 2025-03-20 04:48:09.064 436041 6030 1 0 13003 2025-03-20 04:48:09.064 2025-03-20 04:48:09.064 436041 14990 9 0 13004 2025-03-20 02:26:57.97 2025-03-20 02:26:57.97 436041 15488 1 0 13005 2025-03-20 02:27:29.604 2025-03-20 02:27:29.604 436042 12566 1 0 13006 2025-03-20 02:52:52.79 2025-03-20 02:52:52.79 436042 13763 2 0 13007 2025-03-20 02:52:52.79 2025-03-20 02:52:52.79 436042 18901 19 0 13008 2025-03-20 04:53:29.975 2025-03-20 04:53:29.975 436043 1244 9 0 13009 2025-03-20 04:53:29.975 2025-03-20 04:53:29.975 436043 15925 1 0 13010 2025-03-20 02:27:55.714 2025-03-20 02:27:55.714 436043 17984 1 0 13011 2025-03-20 04:53:51.663 2025-03-20 04:53:51.663 436044 7978 1 0 13012 2025-03-20 04:53:51.663 2025-03-20 04:53:51.663 436044 17316 9 0 13013 2025-03-20 02:28:21.47 2025-03-20 02:28:21.47 436044 21019 1 0 13014 2025-03-20 02:53:07.793 2025-03-20 02:53:07.793 436045 1505 19 0 13015 2025-03-20 05:53:49.036 2025-03-20 05:53:49.036 436045 1773 19 0 13016 2025-03-20 02:53:07.793 2025-03-20 02:53:07.793 436045 1985 2 0 13017 2025-03-20 02:37:20.378 2025-03-20 02:37:20.378 436045 2176 8 0 13018 2025-03-20 05:53:49.036 2025-03-20 05:53:49.036 436045 5825 2 0 13019 2025-03-20 02:28:55.65 2025-03-20 02:28:55.65 436045 11750 1 0 13020 2025-03-20 02:37:20.378 2025-03-20 02:37:20.378 436045 20504 69 0 13021 2025-03-20 04:47:15.193 2025-03-20 04:47:15.193 436046 713 9 0 13022 2025-03-20 02:29:14.821 2025-03-20 02:29:14.821 436046 19094 1 0 13023 2025-03-20 04:47:15.193 2025-03-20 04:47:15.193 436046 21012 1 0 13024 2025-03-20 02:30:18.431 2025-03-20 02:30:18.431 436047 671 36 0 13025 2025-03-20 03:28:21.289 2025-03-20 03:28:21.289 436047 1549 2 0 13026 2025-03-20 02:29:31.022 2025-03-20 02:29:31.022 436047 2674 10 0 13027 2025-03-20 05:49:53.106 2025-03-20 05:49:53.106 436047 3504 2 0 13028 2025-03-20 05:49:53.106 2025-03-20 05:49:53.106 436047 3518 19 0 13029 2025-03-20 04:53:46.331 2025-03-20 04:53:46.331 436047 4064 27 0 13030 2025-03-20 08:04:23.398 2025-03-20 08:04:23.398 436047 8380 3 0 13031 2025-03-20 03:00:29.266 2025-03-20 03:00:29.266 436047 9169 2 0 13032 2025-03-20 05:50:10.998 2025-03-20 05:50:10.998 436047 9295 3 0 13033 2025-03-20 03:28:21.289 2025-03-20 03:28:21.289 436047 10096 19 0 13034 2025-03-20 04:53:46.963 2025-03-20 04:53:46.963 436047 10112 27 0 13035 2025-03-20 04:53:46.331 2025-03-20 04:53:46.331 436047 19217 3 0 13036 2025-03-20 05:50:10.998 2025-03-20 05:50:10.998 436047 20596 31 0 13037 2025-03-20 08:04:23.398 2025-03-20 08:04:23.398 436047 21057 30 0 13038 2025-03-20 04:53:46.963 2025-03-20 04:53:46.963 436047 21184 243 0 13039 2025-03-20 03:00:29.266 2025-03-20 03:00:29.266 436047 21416 14 0 13040 2025-03-20 02:30:18.431 2025-03-20 02:30:18.431 436047 21541 4 0 13041 2025-03-20 04:09:20.629 2025-03-20 04:09:20.629 436048 1124 18 0 13042 2025-03-20 02:51:08.818 2025-03-20 02:51:08.818 436048 9611 1 0 13043 2025-03-20 02:55:32.06 2025-03-20 02:55:32.06 436048 9992 2 0 13044 2025-03-20 02:29:42.321 2025-03-20 02:29:42.321 436048 12721 10 0 13045 2025-03-20 02:51:08.818 2025-03-20 02:51:08.818 436048 15049 0 0 13046 2025-03-20 02:55:32.06 2025-03-20 02:55:32.06 436048 16950 19 0 13047 2025-03-20 04:09:20.629 2025-03-20 04:09:20.629 436048 17226 2 0 13048 2025-03-20 02:52:20.961 2025-03-20 02:52:20.961 436049 672 2 0 13049 2025-03-20 04:19:37.475 2025-03-20 04:19:37.475 436049 889 19 0 13050 2025-03-20 02:31:39.896 2025-03-20 02:31:39.896 436049 1611 1 0 13051 2025-03-20 04:19:37.475 2025-03-20 04:19:37.475 436049 10493 2 0 13052 2025-03-20 02:52:20.961 2025-03-20 02:52:20.961 436049 12277 19 0 13053 2025-03-20 02:31:39.896 2025-03-20 02:31:39.896 436049 19071 10 0 13054 2025-03-20 02:30:20.173 2025-03-20 02:30:20.173 436049 20904 21 0 13055 2025-03-20 02:31:51.705 2025-03-20 02:31:51.705 436050 12566 1 0 13056 2025-03-20 03:29:06.554 2025-03-20 03:29:06.554 436051 777 2 0 13057 2025-03-20 04:09:09.027 2025-03-20 04:09:09.027 436051 13798 2 0 13058 2025-03-20 02:36:57.843 2025-03-20 02:36:57.843 436051 14122 10 0 13059 2025-03-20 03:39:19.83 2025-03-20 03:39:19.83 436051 14295 2 0 13060 2025-03-20 03:29:06.554 2025-03-20 03:29:06.554 436051 19888 19 0 13061 2025-03-20 03:39:19.83 2025-03-20 03:39:19.83 436051 20751 19 0 13062 2025-03-20 04:09:09.027 2025-03-20 04:09:09.027 436051 21320 18 0 13063 2025-03-20 02:38:22.866 2025-03-20 02:38:22.866 436052 1801 0 0 13064 2025-03-20 02:38:32.188 2025-03-20 02:38:32.188 436052 2492 0 0 13065 2025-03-20 02:37:13.195 2025-03-20 02:37:13.195 436052 3706 1 0 13066 2025-03-20 02:39:04.969 2025-03-20 02:39:04.969 436052 9348 0 0 13067 2025-03-20 02:40:06.452 2025-03-20 02:40:06.452 436052 9367 0 0 13068 2025-03-20 02:37:58.937 2025-03-20 02:37:58.937 436052 9982 0 0 13069 2025-03-20 02:39:26.134 2025-03-20 02:39:26.134 436052 13399 4 0 13070 2025-03-20 02:37:35.541 2025-03-20 02:37:35.541 436052 13987 0 0 13071 2025-03-20 02:39:26.134 2025-03-20 02:39:26.134 436052 19576 36 0 13072 2025-03-20 02:40:28.473 2025-03-20 02:40:28.473 436052 21400 0 0 13073 2025-03-20 02:39:33.774 2025-03-20 02:39:33.774 436052 21406 0 0 13074 2025-03-20 05:52:54.281 2025-03-20 05:52:54.281 436053 928 2 0 13075 2025-03-20 02:52:51.147 2025-03-20 02:52:51.147 436053 1519 19 0 13076 2025-03-20 03:55:20.003 2025-03-20 03:55:20.003 436053 1959 4 0 13077 2025-03-20 02:38:13.733 2025-03-20 02:38:13.733 436053 5425 1 0 13078 2025-03-20 03:42:28.231 2025-03-20 03:42:28.231 436053 5497 25 0 13079 2025-03-20 03:55:20.486 2025-03-20 03:55:20.486 436053 7583 4 0 13080 2025-03-20 05:52:54.281 2025-03-20 05:52:54.281 436053 8400 19 0 13081 2025-03-20 03:55:19.395 2025-03-20 03:55:19.395 436053 14225 4 0 13082 2025-03-20 03:55:20.486 2025-03-20 03:55:20.486 436053 15549 36 0 13083 2025-03-20 03:55:19.395 2025-03-20 03:55:19.395 436053 16289 36 0 13084 2025-03-20 02:52:51.147 2025-03-20 02:52:51.147 436053 18011 2 0 13085 2025-03-20 03:55:20.802 2025-03-20 03:55:20.802 436053 18114 4 0 13086 2025-03-20 03:55:20.802 2025-03-20 03:55:20.802 436053 18930 36 0 13087 2025-03-20 03:42:28.231 2025-03-20 03:42:28.231 436053 20734 3 0 13088 2025-03-20 03:55:20.003 2025-03-20 03:55:20.003 436053 20970 36 0 13089 2025-03-20 02:38:47.411 2025-03-20 02:38:47.411 436054 12921 1 0 13090 2025-03-20 02:39:36.459 2025-03-20 02:39:36.459 436055 10519 1 0 13091 2025-03-20 02:40:59.799 2025-03-20 02:40:59.799 436056 21249 1 0 13092 2025-03-20 02:52:20.036 2025-03-20 02:52:20.036 436057 1478 19 0 13093 2025-03-20 02:51:01.32 2025-03-20 02:51:01.32 436057 14663 0 0 13094 2025-03-20 02:41:25.577 2025-03-20 02:41:25.577 436057 19581 21 0 13095 2025-03-20 02:52:20.036 2025-03-20 02:52:20.036 436057 20179 2 0 13096 2025-03-20 02:51:01.32 2025-03-20 02:51:01.32 436057 21088 1 0 13097 2025-03-20 02:42:17.086 2025-03-20 02:42:17.086 436058 6202 1 0 13098 2025-03-20 02:42:29.652 2025-03-20 02:42:29.652 436059 651 1 0 13099 2025-03-20 02:47:47.03 2025-03-20 02:47:47.03 436060 1261 1 0 13100 2025-03-20 02:47:47.03 2025-03-20 02:47:47.03 436060 1652 10 0 13101 2025-03-20 02:43:16.319 2025-03-20 02:43:16.319 436060 12562 1 0 13102 2025-03-20 03:33:37.331 2025-03-20 03:33:37.331 436061 640 10 0 13103 2025-03-20 04:14:06.338 2025-03-20 04:14:06.338 436061 700 0 0 13104 2025-03-20 02:45:47.364 2025-03-20 02:45:47.364 436061 721 1 0 13105 2025-03-20 02:52:47.63 2025-03-20 02:52:47.63 436061 1469 2 0 13106 2025-03-20 04:14:06.338 2025-03-20 04:14:06.338 436061 1534 3 0 13107 2025-03-20 06:44:11.685 2025-03-20 06:44:11.685 436061 2775 2 0 13108 2025-03-20 02:52:47.63 2025-03-20 02:52:47.63 436061 3304 19 0 13109 2025-03-20 03:33:37.331 2025-03-20 03:33:37.331 436061 11885 90 0 13110 2025-03-20 05:52:50.317 2025-03-20 05:52:50.317 436061 14552 2 0 13111 2025-03-20 06:44:11.685 2025-03-20 06:44:11.685 436061 17103 19 0 13112 2025-03-20 05:52:50.317 2025-03-20 05:52:50.317 436061 17331 19 0 13113 2025-03-20 08:04:10.101 2025-03-20 08:04:10.101 436062 717 30 0 13114 2025-03-20 08:04:11.07 2025-03-20 08:04:11.07 436062 718 30 0 13115 2025-03-20 04:55:25.343 2025-03-20 04:55:25.343 436062 929 3 0 13116 2025-03-20 03:02:24.35 2025-03-20 03:02:24.35 436062 940 4 0 13117 2025-03-20 02:51:45.087 2025-03-20 02:51:45.087 436062 985 9 0 13118 2025-03-20 02:51:45.087 2025-03-20 02:51:45.087 436062 1092 1 0 13119 2025-03-20 04:55:25.955 2025-03-20 04:55:25.955 436062 2342 27 0 13120 2025-03-20 05:37:36.141 2025-03-20 05:37:36.141 436062 2367 3 0 13121 2025-03-20 05:02:09.878 2025-03-20 05:02:09.878 436062 3409 1 0 13122 2025-03-20 04:55:25.343 2025-03-20 04:55:25.343 436062 4287 27 0 13123 2025-03-20 05:17:46.737 2025-03-20 05:17:46.737 436062 6382 2 0 13124 2025-03-20 04:20:15.408 2025-03-20 04:20:15.408 436062 7376 0 0 13125 2025-03-20 03:46:05.473 2025-03-20 03:46:05.473 436062 7760 9 0 13126 2025-03-20 08:04:10.101 2025-03-20 08:04:10.101 436062 10981 3 0 13127 2025-03-20 06:06:20.389 2025-03-20 06:06:20.389 436062 12774 20 0 13128 2025-03-20 04:20:15.408 2025-03-20 04:20:15.408 436062 14357 1 0 13129 2025-03-20 03:46:05.473 2025-03-20 03:46:05.473 436062 14650 1 0 13130 2025-03-20 06:06:20.389 2025-03-20 06:06:20.389 436062 15941 2 0 13131 2025-03-20 05:37:36.141 2025-03-20 05:37:36.141 436062 16336 31 0 13132 2025-03-20 02:46:01.51 2025-03-20 02:46:01.51 436062 17291 10 0 13133 2025-03-20 05:02:09.878 2025-03-20 05:02:09.878 436062 17838 9 0 13134 2025-03-20 04:55:25.955 2025-03-20 04:55:25.955 436062 19138 243 0 13135 2025-03-20 08:04:11.07 2025-03-20 08:04:11.07 436062 19854 3 0 13136 2025-03-20 03:02:24.35 2025-03-20 03:02:24.35 436062 20222 36 0 13137 2025-03-20 05:17:46.737 2025-03-20 05:17:46.737 436062 20717 14 0 13138 2025-03-20 03:28:03.297 2025-03-20 03:28:03.297 436062 21631 19 0 13139 2025-03-20 03:28:03.297 2025-03-20 03:28:03.297 436062 21815 2 0 13140 2025-03-20 07:54:17.008 2025-03-20 07:54:17.008 436063 763 1 0 13141 2025-03-20 02:46:32.271 2025-03-20 02:46:32.271 436063 10013 1 0 13142 2025-03-20 07:54:17.008 2025-03-20 07:54:17.008 436063 11938 5 0 13143 2025-03-20 04:09:00.011 2025-03-20 04:09:00.011 436063 14990 9 0 13144 2025-03-20 02:53:25.555 2025-03-20 02:53:25.555 436063 19087 1 0 13145 2025-03-20 02:53:25.555 2025-03-20 02:53:25.555 436063 20799 0 0 13146 2025-03-20 04:09:00.011 2025-03-20 04:09:00.011 436063 21547 1 0 13147 2025-03-20 02:46:39.369 2025-03-20 02:46:39.369 436064 5171 1 0 13148 2025-03-20 02:58:15.972 2025-03-20 02:58:15.972 436064 11862 4 0 13149 2025-03-20 02:51:53.827 2025-03-20 02:51:53.827 436064 19826 0 0 13150 2025-03-20 02:58:15.972 2025-03-20 02:58:15.972 436064 20220 36 0 13151 2025-03-20 02:51:42.089 2025-03-20 02:51:42.089 436064 21067 0 0 13152 2025-03-20 08:32:53.604 2025-03-20 08:32:53.604 436065 1823 1 0 13153 2025-03-20 02:54:13.309 2025-03-20 02:54:13.309 436065 2196 0 0 13154 2025-03-20 03:27:38.949 2025-03-20 03:27:38.949 436065 2832 90 0 13155 2025-03-20 08:32:53.604 2025-03-20 08:32:53.604 436065 6160 7 0 13156 2025-03-20 02:58:05.733 2025-03-20 02:58:05.733 436065 10311 4 0 13157 2025-03-20 03:27:38.949 2025-03-20 03:27:38.949 436065 10944 10 0 13158 2025-03-20 02:58:05.733 2025-03-20 02:58:05.733 436065 16230 36 0 13159 2025-03-20 02:54:21.607 2025-03-20 02:54:21.607 436065 16267 0 0 13160 2025-03-20 02:54:32.854 2025-03-20 02:54:32.854 436065 17237 0 0 13161 2025-03-20 02:48:04.387 2025-03-20 02:48:04.387 436065 18351 1 0 13162 2025-03-20 02:48:12.591 2025-03-20 02:48:12.591 436065 20059 0 0 13163 2025-03-20 03:29:04.39 2025-03-20 03:29:04.39 436066 2749 19 0 13164 2025-03-20 02:49:51.819 2025-03-20 02:49:51.819 436066 5036 10 0 13165 2025-03-20 03:16:52.459 2025-03-20 03:16:52.459 436066 9669 10 0 13166 2025-03-20 03:29:04.39 2025-03-20 03:29:04.39 436066 11938 2 0 13167 2025-03-20 03:16:52.459 2025-03-20 03:16:52.459 436066 18174 1 0 13168 2025-03-20 02:50:15.083 2025-03-20 02:50:15.083 436067 9551 1 0 13169 2025-03-20 04:11:59.815 2025-03-20 04:11:59.815 436068 14657 0 0 13170 2025-03-20 04:11:59.815 2025-03-20 04:11:59.815 436068 16149 1 0 13171 2025-03-20 04:12:00.001 2025-03-20 04:12:00.001 436068 17714 1 0 13172 2025-03-20 02:50:23.288 2025-03-20 02:50:23.288 436068 19488 1 0 13173 2025-03-20 04:12:00.001 2025-03-20 04:12:00.001 436068 21482 8 0 13174 2025-03-20 03:16:01.62 2025-03-20 03:16:01.62 436069 2832 2 0 13175 2025-03-20 02:52:30.807 2025-03-20 02:52:30.807 436069 10638 1 0 13176 2025-03-20 04:47:31.914 2025-03-20 04:47:31.914 436069 20481 1 0 13177 2025-03-20 04:47:31.914 2025-03-20 04:47:31.914 436069 21172 9 0 13178 2025-03-20 03:16:01.62 2025-03-20 03:16:01.62 436069 21416 19 0 13179 2025-03-20 02:53:08.665 2025-03-20 02:53:08.665 436070 616 1 0 13180 2025-03-20 02:55:55.706 2025-03-20 02:55:55.706 436071 634 19 0 13181 2025-03-20 02:55:55.706 2025-03-20 02:55:55.706 436071 670 2 0 13182 2025-03-20 02:53:53.605 2025-03-20 02:53:53.605 436071 16149 1 0 13183 2025-03-20 03:32:46.943 2025-03-20 03:32:46.943 436072 705 29 0 13184 2025-03-20 02:55:18.988 2025-03-20 02:55:18.988 436072 859 1 0 13185 2025-03-20 05:52:46.347 2025-03-20 05:52:46.347 436072 896 2 0 13186 2025-03-20 03:32:46.943 2025-03-20 03:32:46.943 436072 1130 3 0 13187 2025-03-20 03:52:56.806 2025-03-20 03:52:56.806 436072 2710 36 0 13188 2025-03-20 03:52:56.806 2025-03-20 03:52:56.806 436072 17046 4 0 13189 2025-03-20 05:52:46.347 2025-03-20 05:52:46.347 436072 21810 19 0 13190 2025-03-20 02:56:41.045 2025-03-20 02:56:41.045 436073 2514 1 0 13191 2025-03-20 02:57:16.023 2025-03-20 02:57:16.023 436074 8459 1 0 13192 2025-03-20 02:58:24.516 2025-03-20 02:58:24.516 436075 4776 1 0 13193 2025-03-20 04:11:58.711 2025-03-20 04:11:58.711 436075 5904 8 0 13194 2025-03-20 04:11:58.525 2025-03-20 04:11:58.525 436075 14258 1 0 13195 2025-03-20 04:11:58.525 2025-03-20 04:11:58.525 436075 14271 0 0 13196 2025-03-20 04:11:58.711 2025-03-20 04:11:58.711 436075 16769 1 0 13197 2025-03-20 03:03:57.684 2025-03-20 03:03:57.684 436076 646 2 0 13198 2025-03-20 03:14:41.893 2025-03-20 03:14:41.893 436076 760 19 0 13199 2025-03-20 03:27:58.151 2025-03-20 03:27:58.151 436076 1833 2 0 13200 2025-03-20 03:00:16.183 2025-03-20 03:00:16.183 436076 4378 100 0 13201 2025-03-20 03:14:41.893 2025-03-20 03:14:41.893 436076 4474 2 0 13202 2025-03-20 03:03:57.684 2025-03-20 03:03:57.684 436076 5557 0 0 13203 2025-03-20 03:06:57.966 2025-03-20 03:06:57.966 436076 9705 36 0 13204 2025-03-20 03:06:57.966 2025-03-20 03:06:57.966 436076 10096 4 0 13205 2025-03-20 03:01:01.229 2025-03-20 03:01:01.229 436076 12346 14 0 13206 2025-03-20 07:57:35.049 2025-03-20 07:57:35.049 436076 16301 19 0 13207 2025-03-20 03:27:58.151 2025-03-20 03:27:58.151 436076 18232 19 0 13208 2025-03-20 07:57:35.049 2025-03-20 07:57:35.049 436076 20969 2 0 13209 2025-03-20 03:01:01.229 2025-03-20 03:01:01.229 436076 21242 2 0 13210 2025-03-20 03:00:56.992 2025-03-20 03:00:56.992 436077 2609 1 0 13211 2025-03-20 03:01:30.738 2025-03-20 03:01:30.738 436078 11314 1 0 13212 2025-03-20 03:02:49.546 2025-03-20 03:02:49.546 436079 9349 9 0 13213 2025-03-20 03:29:20.265 2025-03-20 03:29:20.265 436079 10063 2 0 13214 2025-03-20 03:29:20.265 2025-03-20 03:29:20.265 436079 16177 0 0 13215 2025-03-20 03:01:30.902 2025-03-20 03:01:30.902 436079 17091 1 0 13216 2025-03-20 03:15:18.142 2025-03-20 03:15:18.142 436079 20454 2 0 13217 2025-03-20 03:02:49.546 2025-03-20 03:02:49.546 436079 20624 1 0 13218 2025-03-20 03:15:18.142 2025-03-20 03:15:18.142 436079 21178 19 0 13219 2025-03-20 03:03:27.833 2025-03-20 03:03:27.833 436080 1008 1 0 13220 2025-03-20 03:04:27.764 2025-03-20 03:04:27.764 436081 667 100 0 13221 2025-03-20 03:29:05.22 2025-03-20 03:29:05.22 436081 1697 19 0 13222 2025-03-20 03:29:06.788 2025-03-20 03:29:06.788 436081 11897 2 0 13223 2025-03-20 03:29:05.22 2025-03-20 03:29:05.22 436081 17124 2 0 13224 2025-03-20 04:06:29.914 2025-03-20 04:06:29.914 436081 19459 0 0 13225 2025-03-20 03:29:06.788 2025-03-20 03:29:06.788 436081 19930 0 0 13226 2025-03-20 04:06:29.914 2025-03-20 04:06:29.914 436081 21501 3 0 13227 2025-03-20 03:09:10.597 2025-03-20 03:09:10.597 436082 746 2 0 13228 2025-03-20 04:08:56.532 2025-03-20 04:08:56.532 436082 1136 2 0 13229 2025-03-20 03:25:38.795 2025-03-20 03:25:38.795 436082 3990 0 0 13230 2025-03-20 04:08:56.532 2025-03-20 04:08:56.532 436082 4128 18 0 13231 2025-03-20 04:08:55.59 2025-03-20 04:08:55.59 436082 9334 18 0 13232 2025-03-20 03:29:01.573 2025-03-20 03:29:01.573 436082 11450 2 0 13233 2025-03-20 03:25:38.795 2025-03-20 03:25:38.795 436082 17091 1 0 13234 2025-03-20 03:29:01.573 2025-03-20 03:29:01.573 436082 17696 19 0 13235 2025-03-20 03:09:10.597 2025-03-20 03:09:10.597 436082 18231 14 0 13236 2025-03-20 04:08:55.59 2025-03-20 04:08:55.59 436082 20924 2 0 13237 2025-03-20 03:05:51.869 2025-03-20 03:05:51.869 436082 21271 100 0 13238 2025-03-20 03:08:54.064 2025-03-20 03:08:54.064 436083 21060 1 0 13239 2025-03-20 03:16:05.328 2025-03-20 03:16:05.328 436084 13132 1 0 13240 2025-03-20 03:16:49.662 2025-03-20 03:16:49.662 436085 960 1 0 13241 2025-03-20 03:24:43.839 2025-03-20 03:24:43.839 436085 2776 0 0 13242 2025-03-20 03:24:43.839 2025-03-20 03:24:43.839 436085 14472 1 0 13243 2025-03-20 03:17:52.47 2025-03-20 03:17:52.47 436086 21061 1 0 13244 2025-03-20 04:02:38.277 2025-03-20 04:02:38.277 436087 654 10 0 13245 2025-03-20 04:02:30.799 2025-03-20 04:02:30.799 436087 7869 90 0 13246 2025-03-20 03:17:59.351 2025-03-20 03:17:59.351 436087 8989 1 0 13247 2025-03-20 04:02:30.799 2025-03-20 04:02:30.799 436087 9969 10 0 13248 2025-03-20 04:02:38.277 2025-03-20 04:02:38.277 436087 15521 90 0 13249 2025-03-20 03:18:41.792 2025-03-20 03:18:41.792 436088 1585 1 0 13250 2025-03-20 03:21:18.596 2025-03-20 03:21:18.596 436089 7891 10 0 13251 2025-03-20 04:02:17.818 2025-03-20 04:02:17.818 436090 1124 90 0 13252 2025-03-20 03:56:52.715 2025-03-20 03:56:52.715 436090 7674 10 0 13253 2025-03-20 04:02:17.818 2025-03-20 04:02:17.818 436090 9026 10 0 13254 2025-03-20 03:56:52.715 2025-03-20 03:56:52.715 436090 20490 90 0 13255 2025-03-20 03:21:54.702 2025-03-20 03:21:54.702 436090 20969 1 0 13256 2025-03-20 03:27:33.3 2025-03-20 03:27:33.3 436091 1567 1 0 13257 2025-03-20 05:54:34.402 2025-03-20 05:54:34.402 436091 7659 19 0 13258 2025-03-20 03:40:33.163 2025-03-20 03:40:33.163 436091 8376 2 0 13259 2025-03-20 05:54:34.402 2025-03-20 05:54:34.402 436091 20816 2 0 13260 2025-03-20 03:40:33.163 2025-03-20 03:40:33.163 436091 21424 0 0 13261 2025-03-20 03:29:51.876 2025-03-20 03:29:51.876 436092 6749 1 0 13262 2025-03-20 04:44:51.435 2025-03-20 04:44:51.435 436093 630 10 0 13263 2025-03-20 04:06:50.652 2025-03-20 04:06:50.652 436093 656 1 0 13264 2025-03-20 06:59:31.276 2025-03-20 06:59:31.276 436093 825 4 0 13265 2025-03-20 03:44:31.689 2025-03-20 03:44:31.689 436093 861 90 0 13266 2025-03-20 06:21:43.603 2025-03-20 06:21:43.603 436093 900 10 0 13267 2025-03-20 04:06:50.49 2025-03-20 04:06:50.49 436093 959 1 0 13268 2025-03-20 10:00:00.21 2025-03-20 10:00:00.21 436093 1006 19 0 13269 2025-03-20 06:14:40.186 2025-03-20 06:14:40.186 436093 1064 1 0 13270 2025-03-20 04:20:10.188 2025-03-20 04:20:10.188 436093 1298 810 0 13271 2025-03-20 05:02:05.288 2025-03-20 05:02:05.288 436093 1394 9 0 13272 2025-03-20 04:06:50.814 2025-03-20 04:06:50.814 436093 1439 10 0 13273 2025-03-20 06:59:31.276 2025-03-20 06:59:31.276 436093 1585 36 0 13274 2025-03-20 05:58:56.829 2025-03-20 05:58:56.829 436093 1647 18 0 13275 2025-03-20 09:30:04.214 2025-03-20 09:30:04.214 436093 1723 1 0 13276 2025-03-20 04:55:27.301 2025-03-20 04:55:27.301 436093 1817 75 0 13277 2025-03-20 10:59:19.38 2025-03-20 10:59:19.38 436093 2402 19 0 13278 2025-03-20 05:58:56.829 2025-03-20 05:58:56.829 436093 2640 2 0 13279 2025-03-20 03:31:01.767 2025-03-20 03:31:01.767 436093 3400 125 0 13280 2025-03-20 08:50:01.447 2025-03-20 08:50:01.447 436093 4768 19 0 13281 2025-03-20 09:30:04.214 2025-03-20 09:30:04.214 436093 4973 9 0 13282 2025-03-20 07:02:31.006 2025-03-20 07:02:31.006 436093 5308 3 0 13283 2025-03-20 06:21:43.603 2025-03-20 06:21:43.603 436093 5487 91 0 13284 2025-03-20 10:00:00.21 2025-03-20 10:00:00.21 436093 6030 2 0 13285 2025-03-20 08:50:01.447 2025-03-20 08:50:01.447 436093 6137 2 0 13286 2025-03-20 06:24:05.992 2025-03-20 06:24:05.992 436093 6602 8 0 13287 2025-03-20 04:55:27.301 2025-03-20 04:55:27.301 436093 7580 8 0 13288 2025-03-20 06:14:40.186 2025-03-20 06:14:40.186 436093 8045 7 0 13289 2025-03-20 04:06:50.49 2025-03-20 04:06:50.49 436093 8173 10 0 13290 2025-03-20 03:54:40.646 2025-03-20 03:54:40.646 436093 9333 14 0 13291 2025-03-20 03:40:16.861 2025-03-20 03:40:16.861 436093 9349 2 0 13292 2025-03-20 06:14:40.385 2025-03-20 06:14:40.385 436093 9985 7 0 13293 2025-03-20 06:06:10.114 2025-03-20 06:06:10.114 436093 10056 190 0 13294 2025-03-20 04:55:27.504 2025-03-20 04:55:27.504 436093 10280 8 0 13295 2025-03-20 04:19:42.692 2025-03-20 04:19:42.692 436093 10433 1 0 13296 2025-03-20 04:19:43.127 2025-03-20 04:19:43.127 436093 11144 8 0 13297 2025-03-20 04:06:50.652 2025-03-20 04:06:50.652 436093 11158 10 0 13298 2025-03-20 06:14:40.385 2025-03-20 06:14:40.385 436093 12261 1 0 13299 2025-03-20 04:20:10.188 2025-03-20 04:20:10.188 436093 12738 90 0 13300 2025-03-20 04:19:43.453 2025-03-20 04:19:43.453 436093 14169 9 0 13301 2025-03-20 04:19:43.453 2025-03-20 04:19:43.453 436093 15049 81 0 13302 2025-03-20 04:55:27.384 2025-03-20 04:55:27.384 436093 15556 8 0 13303 2025-03-20 05:49:10.215 2025-03-20 05:49:10.215 436093 15560 2 0 13304 2025-03-20 04:15:26.19 2025-03-20 04:15:26.19 436093 16357 9 0 13305 2025-03-20 04:06:50.814 2025-03-20 04:06:50.814 436093 16542 1 0 13306 2025-03-20 04:19:43.127 2025-03-20 04:19:43.127 436093 16754 1 0 13307 2025-03-20 06:24:05.992 2025-03-20 06:24:05.992 436093 16978 69 0 13308 2025-03-20 06:39:35.307 2025-03-20 06:39:35.307 436093 17201 19 0 13309 2025-03-20 03:40:16.861 2025-03-20 03:40:16.861 436093 17727 0 0 13310 2025-03-20 05:02:05.288 2025-03-20 05:02:05.288 436093 18473 1 0 13311 2025-03-20 06:06:10.114 2025-03-20 06:06:10.114 436093 18717 21 0 13312 2025-03-20 04:44:51.435 2025-03-20 04:44:51.435 436093 19806 90 0 13313 2025-03-20 03:54:40.646 2025-03-20 03:54:40.646 436093 20220 2 0 13314 2025-03-20 04:15:26.19 2025-03-20 04:15:26.19 436093 20436 1 0 13315 2025-03-20 04:55:27.504 2025-03-20 04:55:27.504 436093 20597 75 0 13316 2025-03-20 04:55:27.384 2025-03-20 04:55:27.384 436093 20623 75 0 13317 2025-03-20 03:44:31.689 2025-03-20 03:44:31.689 436093 20734 10 0 13318 2025-03-20 04:19:42.692 2025-03-20 04:19:42.692 436093 20972 0 0 13319 2025-03-20 10:59:19.38 2025-03-20 10:59:19.38 436093 21057 2 0 13320 2025-03-20 05:49:10.215 2025-03-20 05:49:10.215 436093 21242 19 0 13321 2025-03-20 06:39:35.307 2025-03-20 06:39:35.307 436093 21338 2 0 13322 2025-03-20 07:02:31.006 2025-03-20 07:02:31.006 436093 21805 30 0 13323 2025-03-20 03:38:37.794 2025-03-20 03:38:37.794 436094 12278 1 0 13324 2025-03-20 04:09:31.763 2025-03-20 04:09:31.763 436094 16145 1 0 13325 2025-03-20 04:09:30.349 2025-03-20 04:09:30.349 436094 20180 0 0 13326 2025-03-20 03:31:02.799 2025-03-20 03:31:02.799 436094 21022 1 0 13327 2025-03-20 04:09:31.763 2025-03-20 04:09:31.763 436094 21048 8 0 13328 2025-03-20 03:38:37.794 2025-03-20 03:38:37.794 436094 21339 9 0 13329 2025-03-20 04:09:30.349 2025-03-20 04:09:30.349 436094 21805 1 0 13330 2025-03-20 03:31:17.378 2025-03-20 03:31:17.378 436095 14552 1 0 13331 2025-03-20 03:31:49.058 2025-03-20 03:31:49.058 436096 769 1 0 13332 2025-03-20 03:43:31 2025-03-20 03:43:31 436097 770 25 0 13333 2025-03-20 03:52:40.996 2025-03-20 03:52:40.996 436097 10352 36 0 13334 2025-03-20 03:31:56.427 2025-03-20 03:31:56.427 436097 20619 1 0 13335 2025-03-20 03:52:40.996 2025-03-20 03:52:40.996 436097 20970 4 0 13336 2025-03-20 03:43:31 2025-03-20 03:43:31 436097 21455 3 0 13337 2025-03-20 03:32:16.873 2025-03-20 03:32:16.873 436098 20881 1 0 13338 2025-03-20 08:05:15.51 2025-03-20 08:05:15.51 436099 7654 19 0 13339 2025-03-20 08:05:15.51 2025-03-20 08:05:15.51 436099 9109 2 0 13340 2025-03-20 03:32:42.7 2025-03-20 03:32:42.7 436099 9159 1 0 13341 2025-03-20 05:52:27.849 2025-03-20 05:52:27.849 436100 844 2 0 13342 2025-03-20 03:39:25.294 2025-03-20 03:39:25.294 436100 902 21 0 13343 2025-03-20 03:51:53.391 2025-03-20 03:51:53.391 436100 976 4 0 13344 2025-03-20 10:01:53.317 2025-03-20 10:01:53.317 436100 1051 19 0 13345 2025-03-20 03:39:25.294 2025-03-20 03:39:25.294 436100 1478 189 0 13346 2025-03-20 08:33:10.745 2025-03-20 08:33:10.745 436100 1817 7 0 13347 2025-03-20 03:39:27.585 2025-03-20 03:39:27.585 436100 2829 90 0 13348 2025-03-20 05:52:27.849 2025-03-20 05:52:27.849 436100 3979 19 0 13349 2025-03-20 03:33:12.588 2025-03-20 03:33:12.588 436100 10016 1 0 13350 2025-03-20 03:33:33.854 2025-03-20 03:33:33.854 436100 11298 0 0 13351 2025-03-20 03:34:26.717 2025-03-20 03:34:26.717 436100 11450 0 0 13352 2025-03-20 10:01:53.317 2025-03-20 10:01:53.317 436100 16193 2 0 13353 2025-03-20 08:33:10.745 2025-03-20 08:33:10.745 436100 18017 1 0 13354 2025-03-20 03:43:51.8 2025-03-20 03:43:51.8 436100 19292 3 0 13355 2025-03-20 03:51:53.391 2025-03-20 03:51:53.391 436100 20245 36 0 13356 2025-03-20 03:39:27.585 2025-03-20 03:39:27.585 436100 20377 10 0 13357 2025-03-20 03:43:51.8 2025-03-20 03:43:51.8 436100 21228 25 0 13358 2025-03-20 05:53:10.532 2025-03-20 05:53:10.532 436101 866 9 0 13359 2025-03-20 05:53:10.835 2025-03-20 05:53:10.835 436101 6137 1 0 13360 2025-03-20 05:53:10.404 2025-03-20 05:53:10.404 436101 8289 1 0 13361 2025-03-20 05:53:10.667 2025-03-20 05:53:10.667 436101 8713 1 0 13362 2025-03-20 05:53:10.835 2025-03-20 05:53:10.835 436101 13042 9 0 13363 2025-03-20 05:53:10.532 2025-03-20 05:53:10.532 436101 15239 1 0 13364 2025-03-20 05:53:10.404 2025-03-20 05:53:10.404 436101 17091 9 0 13365 2025-03-20 05:53:10.667 2025-03-20 05:53:10.667 436101 17713 9 0 13366 2025-03-20 03:33:57.051 2025-03-20 03:33:57.051 436101 19863 1 0 13367 2025-03-20 03:35:04.759 2025-03-20 03:35:04.759 436102 20906 1 0 13368 2025-03-20 06:17:47.896 2025-03-20 06:17:47.896 436103 4064 3 0 13369 2025-03-20 06:17:47.896 2025-03-20 06:17:47.896 436103 20706 30 0 13370 2025-03-20 03:39:19.454 2025-03-20 03:39:19.454 436104 14381 1 0 13371 2025-03-20 05:35:24.68 2025-03-20 05:35:24.68 436106 760 9 0 13372 2025-03-20 05:39:35.732 2025-03-20 05:39:35.732 436106 3411 4 0 13373 2025-03-20 05:38:19.049 2025-03-20 05:38:19.049 436106 7097 9 0 13374 2025-03-20 05:38:19.049 2025-03-20 05:38:19.049 436106 9695 1 0 13375 2025-03-20 05:39:35.732 2025-03-20 05:39:35.732 436106 10409 36 0 13376 2025-03-20 05:35:24.151 2025-03-20 05:35:24.151 436106 11829 9 0 13377 2025-03-20 05:35:24.68 2025-03-20 05:35:24.68 436106 16876 1 0 13378 2025-03-20 03:42:42.152 2025-03-20 03:42:42.152 436106 17218 1 0 13379 2025-03-20 05:35:24.151 2025-03-20 05:35:24.151 436106 19403 1 0 13380 2025-03-20 03:43:20.725 2025-03-20 03:43:20.725 436107 17517 1 0 13381 2025-03-20 03:43:48.547 2025-03-20 03:43:48.547 436108 12566 1 0 13382 2025-03-20 03:44:33.998 2025-03-20 03:44:33.998 436109 19446 1 0 13383 2025-03-20 03:44:42.684 2025-03-20 03:44:42.684 436110 10270 100 0 13384 2025-03-20 03:49:26.84 2025-03-20 03:49:26.84 436111 16513 0 0 13385 2025-03-20 03:44:56.424 2025-03-20 03:44:56.424 436111 16808 1 0 13386 2025-03-20 03:45:07.997 2025-03-20 03:45:07.997 436112 8954 1 0 13387 2025-03-20 09:31:00.981 2025-03-20 09:31:00.981 436113 9362 9 0 13388 2025-03-20 03:45:45.899 2025-03-20 03:45:45.899 436113 13575 0 0 13389 2025-03-20 09:31:00.981 2025-03-20 09:31:00.981 436113 16336 1 0 13390 2025-03-20 03:45:36.822 2025-03-20 03:45:36.822 436113 17494 1 0 13391 2025-03-20 03:47:56.975 2025-03-20 03:47:56.975 436114 1596 3 0 13392 2025-03-20 03:46:13.623 2025-03-20 03:46:13.623 436114 5775 1 0 13393 2025-03-20 03:47:56.975 2025-03-20 03:47:56.975 436114 20023 25 0 13394 2025-03-20 08:07:29.477 2025-03-20 08:07:29.477 436115 3642 7 0 13395 2025-03-20 05:52:24.847 2025-03-20 05:52:24.847 436115 6382 19 0 13396 2025-03-20 04:13:41.373 2025-03-20 04:13:41.373 436115 9036 3 0 13397 2025-03-20 07:35:37.704 2025-03-20 07:35:37.704 436115 11561 27 0 13398 2025-03-20 03:51:01.767 2025-03-20 03:51:01.767 436115 12356 36 0 13399 2025-03-20 03:51:01.767 2025-03-20 03:51:01.767 436115 17710 4 0 13400 2025-03-20 05:52:24.847 2025-03-20 05:52:24.847 436115 17817 2 0 13401 2025-03-20 03:47:17.576 2025-03-20 03:47:17.576 436115 18494 1 0 13402 2025-03-20 08:07:29.477 2025-03-20 08:07:29.477 436115 19018 59 0 13403 2025-03-20 04:13:41.373 2025-03-20 04:13:41.373 436115 20717 0 0 13404 2025-03-20 07:35:37.704 2025-03-20 07:35:37.704 436115 20892 3 0 13405 2025-03-20 03:48:38.491 2025-03-20 03:48:38.491 436117 1142 1 0 13406 2025-03-20 03:49:17.162 2025-03-20 03:49:17.162 436118 672 1 0 13407 2025-03-20 03:55:05.172 2025-03-20 03:55:05.172 436118 13042 9 0 13408 2025-03-20 03:55:05.172 2025-03-20 03:55:05.172 436118 13467 1 0 13409 2025-03-20 03:53:33.275 2025-03-20 03:53:33.275 436119 5173 0 0 13410 2025-03-20 03:54:09.861 2025-03-20 03:54:09.861 436119 10536 0 0 13411 2025-03-20 03:52:39.303 2025-03-20 03:52:39.303 436119 20058 0 0 13412 2025-03-20 03:50:27.518 2025-03-20 03:50:27.518 436119 21139 1 0 13413 2025-03-20 03:51:32.804 2025-03-20 03:51:32.804 436120 678 1 0 13414 2025-03-20 03:53:24.581 2025-03-20 03:53:24.581 436120 19193 0 0 13415 2025-03-20 03:53:32.113 2025-03-20 03:53:32.113 436120 20198 0 0 13416 2025-03-20 03:51:47.915 2025-03-20 03:51:47.915 436121 11298 1 0 13417 2025-03-20 03:53:14.939 2025-03-20 03:53:14.939 436122 19463 1 0 13418 2025-03-20 04:31:40.988 2025-03-20 04:31:40.988 436123 622 1 0 13419 2025-03-20 04:31:41.061 2025-03-20 04:31:41.061 436123 782 0 0 13420 2025-03-20 04:31:42.147 2025-03-20 04:31:42.147 436123 2061 0 0 13421 2025-03-20 03:53:46.736 2025-03-20 03:53:46.736 436123 2088 1 0 13422 2025-03-20 04:31:41.513 2025-03-20 04:31:41.513 436123 3745 0 0 13423 2025-03-20 04:31:41.27 2025-03-20 04:31:41.27 436123 9863 1 0 13424 2025-03-20 04:31:40.988 2025-03-20 04:31:40.988 436123 10060 0 0 13425 2025-03-20 04:31:41.513 2025-03-20 04:31:41.513 436123 15526 1 0 13426 2025-03-20 04:31:41.27 2025-03-20 04:31:41.27 436123 21180 0 0 13427 2025-03-20 04:31:42.147 2025-03-20 04:31:42.147 436123 21379 1 0 13428 2025-03-20 04:31:41.061 2025-03-20 04:31:41.061 436123 21666 1 0 13429 2025-03-20 03:53:56.98 2025-03-20 03:53:56.98 436124 12261 1 0 13430 2025-03-20 05:34:53.931 2025-03-20 05:34:53.931 436125 2327 2 0 13431 2025-03-20 05:34:53.931 2025-03-20 05:34:53.931 436125 8535 18 0 13432 2025-03-20 03:54:22.399 2025-03-20 03:54:22.399 436125 16410 1 0 13433 2025-03-20 05:38:18.512 2025-03-20 05:38:18.512 436125 20433 1 0 13434 2025-03-20 05:38:18.512 2025-03-20 05:38:18.512 436125 20757 9 0 13435 2025-03-20 03:55:55.746 2025-03-20 03:55:55.746 436126 2609 0 0 13436 2025-03-20 03:54:54.056 2025-03-20 03:54:54.056 436126 3717 1 0 13437 2025-03-20 03:55:26.389 2025-03-20 03:55:26.389 436126 18630 0 0 13438 2025-03-20 03:55:49.559 2025-03-20 03:55:49.559 436126 19198 0 0 13439 2025-03-20 04:18:12.842 2025-03-20 04:18:12.842 436126 20597 100 0 13440 2025-03-20 04:18:12.842 2025-03-20 04:18:12.842 436126 20812 11 0 13441 2025-03-20 03:57:01.725 2025-03-20 03:57:01.725 436127 16754 1 0 13442 2025-03-20 05:34:13.188 2025-03-20 05:34:13.188 436128 3417 1 0 13443 2025-03-20 05:34:13.95 2025-03-20 05:34:13.95 436128 11498 1 0 13444 2025-03-20 04:04:58.264 2025-03-20 04:04:58.264 436128 13406 3 0 13445 2025-03-20 05:38:13.705 2025-03-20 05:38:13.705 436128 15273 1 0 13446 2025-03-20 05:34:13.188 2025-03-20 05:34:13.188 436128 16276 9 0 13447 2025-03-20 05:38:13.705 2025-03-20 05:38:13.705 436128 16842 9 0 13448 2025-03-20 05:34:13.95 2025-03-20 05:34:13.95 436128 18313 9 0 13449 2025-03-20 04:04:58.264 2025-03-20 04:04:58.264 436128 20353 25 0 13450 2025-03-20 03:59:02.527 2025-03-20 03:59:02.527 436128 20757 1 0 13451 2025-03-20 03:59:03.665 2025-03-20 03:59:03.665 436129 831 1 0 13452 2025-03-20 10:41:43.48 2025-03-20 10:41:43.48 436129 1733 19 0 13453 2025-03-20 10:41:43.48 2025-03-20 10:41:43.48 436129 9307 2 0 13454 2025-03-20 07:07:37.906 2025-03-20 07:07:37.906 436129 11678 2 0 13455 2025-03-20 03:59:36.909 2025-03-20 03:59:36.909 436129 12779 0 0 13456 2025-03-20 07:07:37.906 2025-03-20 07:07:37.906 436129 17690 18 0 13457 2025-03-20 04:00:02.943 2025-03-20 04:00:02.943 436130 2734 1 0 13458 2025-03-20 06:58:22.881 2025-03-20 06:58:22.881 436130 8989 23 0 13459 2025-03-20 06:58:22.881 2025-03-20 06:58:22.881 436130 10661 3 0 13460 2025-03-20 04:00:30.392 2025-03-20 04:00:30.392 436131 3213 1 0 13461 2025-03-20 04:00:43.552 2025-03-20 04:00:43.552 436132 19759 1 0 13462 2025-03-20 04:02:05.85 2025-03-20 04:02:05.85 436133 866 1 0 13463 2025-03-20 04:55:11.195 2025-03-20 04:55:11.195 436133 2508 1 0 13464 2025-03-20 04:55:11.195 2025-03-20 04:55:11.195 436133 20525 9 0 13465 2025-03-20 04:02:56.37 2025-03-20 04:02:56.37 436134 10862 1 0 13466 2025-03-20 04:03:34.273 2025-03-20 04:03:34.273 436135 673 1 0 13467 2025-03-20 06:09:36.387 2025-03-20 06:09:36.387 436135 9109 2 0 13468 2025-03-20 06:09:36.387 2025-03-20 06:09:36.387 436135 21710 19 0 13469 2025-03-20 05:01:01.482 2025-03-20 05:01:01.482 436136 621 2 0 13470 2025-03-20 06:06:15.998 2025-03-20 06:06:15.998 436136 635 10 0 13471 2025-03-20 05:01:01.257 2025-03-20 05:01:07.29 436136 675 23 0 13472 2025-03-20 05:01:02.166 2025-03-20 05:01:02.166 436136 680 2 0 13473 2025-03-20 05:01:04.179 2025-03-20 05:01:04.179 436136 711 2 0 13474 2025-03-20 05:01:06.951 2025-03-20 05:01:06.951 436136 714 2 0 13475 2025-03-20 05:01:12.728 2025-03-20 05:01:12.728 436136 769 2 0 13476 2025-03-20 05:01:04.625 2025-03-20 05:01:04.625 436136 775 2 0 13477 2025-03-20 05:01:03.501 2025-03-20 05:01:03.501 436136 798 21 0 13478 2025-03-20 05:01:10.142 2025-03-20 05:01:10.142 436136 814 21 0 13479 2025-03-20 05:01:02.862 2025-03-20 05:01:02.862 436136 822 2 0 13480 2025-03-20 10:59:25.624 2025-03-20 10:59:25.624 436136 859 2 0 13481 2025-03-20 06:06:16.191 2025-03-20 06:06:16.191 436136 917 10 0 13482 2025-03-20 05:01:03.203 2025-03-20 05:01:03.203 436136 960 21 0 13483 2025-03-20 05:01:02.166 2025-03-20 05:01:02.166 436136 980 21 0 13484 2025-03-20 04:03:50.182 2025-03-20 04:03:50.182 436136 985 210 0 13485 2025-03-20 05:01:11.269 2025-03-20 05:01:11.269 436136 994 2 0 13486 2025-03-20 08:03:57.282 2025-03-20 08:03:57.282 436136 1010 30 0 13487 2025-03-20 05:01:04.488 2025-03-20 05:01:04.488 436136 1209 2 0 13488 2025-03-20 05:01:03.994 2025-03-20 05:01:03.994 436136 1480 2 0 13489 2025-03-20 10:04:08.983 2025-03-20 10:04:08.983 436136 1617 2 0 13490 2025-03-20 05:01:08.113 2025-03-20 05:01:08.113 436136 1618 2 0 13491 2025-03-20 05:01:06.678 2025-03-20 05:01:06.678 436136 1712 21 0 13492 2025-03-20 05:01:10.328 2025-03-20 05:01:10.328 436136 1772 21 0 13493 2025-03-20 08:09:14.931 2025-03-20 08:09:14.931 436136 1785 2 0 13494 2025-03-20 05:01:08.662 2025-03-20 05:01:08.662 436136 1833 2 0 13495 2025-03-20 05:01:09.579 2025-03-20 05:01:09.579 436136 2502 2 0 13496 2025-03-20 05:01:12.113 2025-03-20 05:01:12.113 436136 2722 2 0 13497 2025-03-20 05:01:12.856 2025-03-20 05:01:12.856 436136 3409 2 0 13498 2025-03-20 05:01:08.471 2025-03-20 05:01:08.471 436136 3417 2 0 13499 2025-03-20 05:01:02.465 2025-03-20 05:01:02.465 436136 3642 21 0 13500 2025-03-20 05:01:12.549 2025-03-20 05:01:12.549 436136 4079 21 0 13501 2025-03-20 05:01:11.619 2025-03-20 05:01:11.619 436136 4314 21 0 13502 2025-03-20 05:01:01.482 2025-03-20 05:01:01.482 436136 4345 21 0 13503 2025-03-20 05:01:11.948 2025-03-20 05:01:11.948 436136 4388 2 0 13504 2025-03-20 05:01:03.501 2025-03-20 05:01:03.501 436136 4768 2 0 13505 2025-03-20 05:01:10.067 2025-03-20 05:01:10.067 436136 4989 2 0 13506 2025-03-20 05:01:01.776 2025-03-20 05:01:01.776 436136 5085 2 0 13507 2025-03-20 05:01:06.451 2025-03-20 05:01:06.451 436136 5728 2 0 13508 2025-03-20 08:03:55.545 2025-03-20 08:03:55.545 436136 6202 3 0 13509 2025-03-20 05:01:04.625 2025-03-20 05:01:04.625 436136 6268 21 0 13510 2025-03-20 05:01:11.269 2025-03-20 05:01:11.269 436136 6335 21 0 13511 2025-03-20 10:04:08.983 2025-03-20 10:04:08.983 436136 6749 19 0 13512 2025-03-20 05:01:11.077 2025-03-20 05:01:11.077 436136 7580 21 0 13513 2025-03-20 05:01:06.951 2025-03-20 05:01:06.951 436136 7668 21 0 13514 2025-03-20 05:01:04.705 2025-03-20 05:01:04.705 436136 7760 2 0 13515 2025-03-20 05:01:08.662 2025-03-20 05:01:08.662 436136 7773 21 0 13516 2025-03-20 05:01:02.008 2025-03-20 05:01:02.008 436136 7891 21 0 13517 2025-03-20 05:01:12.113 2025-03-20 05:01:12.113 436136 7978 21 0 13518 2025-03-20 05:01:10.88 2025-03-20 05:01:10.88 436136 8448 2 0 13519 2025-03-20 05:40:12.937 2025-03-20 05:40:12.937 436136 8570 8 0 13520 2025-03-20 06:59:32.834 2025-03-20 06:59:32.834 436136 8713 4 0 13521 2025-03-20 05:01:09.021 2025-03-20 05:01:09.021 436136 8729 21 0 13522 2025-03-20 05:01:10.142 2025-03-20 05:01:10.142 436136 9171 2 0 13523 2025-03-20 05:01:06.08 2025-03-20 05:01:06.08 436136 9246 21 0 13524 2025-03-20 05:01:08.113 2025-03-20 05:01:08.113 436136 9916 21 0 13525 2025-03-20 05:01:08.299 2025-03-20 05:01:08.299 436136 10013 2 0 13526 2025-03-20 05:01:05.748 2025-03-20 05:01:05.748 436136 10273 2 0 13527 2025-03-20 05:01:09.76 2025-03-20 05:01:09.76 436136 10283 2 0 13528 2025-03-20 05:01:04.179 2025-03-20 05:01:04.179 436136 10302 21 0 13529 2025-03-20 05:01:01.257 2025-03-20 05:01:01.257 436136 10591 2 0 13530 2025-03-20 05:01:03.203 2025-03-20 05:01:03.203 436136 10719 2 0 13531 2025-03-20 05:01:02.008 2025-03-20 05:01:02.008 436136 10849 2 0 13532 2025-03-20 06:06:15.998 2025-03-20 06:06:15.998 436136 11018 1 0 13533 2025-03-20 05:01:05.911 2025-03-20 05:01:05.911 436136 11091 21 0 13534 2025-03-20 06:19:10.182 2025-03-20 06:19:10.182 436136 11220 19 0 13535 2025-03-20 05:01:07.496 2025-03-20 05:01:07.496 436136 11527 21 0 13536 2025-03-20 05:49:13.368 2025-03-20 05:49:13.368 436136 11789 2 0 13537 2025-03-20 05:01:09.246 2025-03-20 05:01:09.246 436136 12261 2 0 13538 2025-03-20 05:01:07.715 2025-03-20 05:01:07.715 436136 12368 2 0 13539 2025-03-20 05:01:08.471 2025-03-20 05:01:08.471 436136 12656 21 0 13540 2025-03-20 05:01:12.856 2025-03-20 05:01:12.856 436136 12721 21 0 13541 2025-03-20 05:01:08.82 2025-03-20 05:01:08.82 436136 12736 2 0 13542 2025-03-20 05:01:02.673 2025-03-20 05:01:02.673 436136 12921 21 0 13543 2025-03-20 05:01:04.888 2025-03-20 05:01:04.888 436136 13100 21 0 13544 2025-03-20 05:01:09.76 2025-03-20 05:01:09.76 436136 13348 21 0 13545 2025-03-20 05:01:06.678 2025-03-20 05:01:06.678 436136 13921 2 0 13546 2025-03-20 05:01:01.596 2025-03-20 05:01:01.596 436136 14152 2 0 13547 2025-03-20 05:01:11.438 2025-03-20 05:01:11.438 436136 14651 2 0 13548 2025-03-20 05:01:07.127 2025-03-20 05:01:07.127 436136 14909 2 0 13549 2025-03-20 05:01:03.342 2025-03-20 05:01:03.342 436136 15052 2 0 13550 2025-03-20 05:01:07.496 2025-03-20 05:01:07.496 436136 15521 2 0 13551 2025-03-20 05:01:07.893 2025-03-20 05:01:07.893 436136 15732 21 0 13552 2025-03-20 05:01:04.705 2025-03-20 05:01:04.705 436136 16214 21 0 13553 2025-03-20 05:01:06.281 2025-03-20 05:01:06.281 436136 16282 21 0 13554 2025-03-20 05:01:11.619 2025-03-20 05:01:11.619 436136 16357 2 0 13555 2025-03-20 05:01:04.888 2025-03-20 05:01:04.888 436136 16387 2 0 13556 2025-03-20 05:01:10.067 2025-03-20 05:01:10.067 436136 16594 21 0 13557 2025-03-20 05:01:01.776 2025-03-20 05:01:01.776 436136 16679 21 0 13558 2025-03-20 05:01:03.061 2025-03-20 05:01:03.061 436136 16747 21 0 13559 2025-03-20 05:01:07.893 2025-03-20 05:01:07.893 436136 16912 2 0 13560 2025-03-20 05:01:11.879 2025-03-20 05:01:11.879 436136 17817 2 0 13561 2025-03-20 05:01:02.673 2025-03-20 05:01:02.673 436136 17976 2 0 13562 2025-03-20 05:01:03.061 2025-03-20 05:01:03.061 436136 18232 2 0 13563 2025-03-20 06:19:10.182 2025-03-20 06:19:10.182 436136 18271 2 0 13564 2025-03-20 05:01:02.326 2025-03-20 05:01:02.326 436136 18313 21 0 13565 2025-03-20 05:01:07.29 2025-03-20 05:01:11.438 436136 18500 41 0 13566 2025-03-20 05:01:12.728 2025-03-20 05:01:12.728 436136 18525 21 0 13567 2025-03-20 05:01:03.342 2025-03-20 05:01:03.342 436136 18637 21 0 13568 2025-03-20 05:01:06.451 2025-03-20 05:01:06.451 436136 18743 21 0 13569 2025-03-20 05:01:11.077 2025-03-20 05:01:11.077 436136 19005 2 0 13570 2025-03-20 10:59:25.624 2025-03-20 10:59:25.624 436136 19018 19 0 13571 2025-03-20 05:01:09.415 2025-03-20 05:01:09.415 436136 19199 21 0 13572 2025-03-20 05:01:01.596 2025-03-20 05:01:01.596 436136 19375 21 0 13573 2025-03-20 08:03:55.545 2025-03-20 08:03:55.545 436136 19463 30 0 13574 2025-03-20 05:40:12.937 2025-03-20 05:40:12.937 436136 19484 75 0 13575 2025-03-20 05:01:08.299 2025-03-20 05:01:08.299 436136 19673 21 0 13576 2025-03-20 05:01:09.246 2025-03-20 05:01:09.246 436136 20137 21 0 13577 2025-03-20 05:01:10.88 2025-03-20 05:01:10.88 436136 20220 21 0 13578 2025-03-20 05:01:04.488 2025-03-20 05:01:04.488 436136 20275 21 0 13579 2025-03-20 05:01:12.549 2025-03-20 05:01:12.549 436136 20370 2 0 13580 2025-03-20 05:01:11.948 2025-03-20 05:01:11.948 436136 20377 21 0 13581 2025-03-20 05:01:06.281 2025-03-20 05:01:06.281 436136 20436 2 0 13582 2025-03-20 05:01:07.127 2025-03-20 05:01:08.82 436136 20509 41 0 13583 2025-03-20 05:01:07.715 2025-03-20 05:01:07.715 436136 20523 21 0 13584 2025-03-20 05:01:02.465 2025-03-20 05:01:02.465 436136 20603 2 0 13585 2025-03-20 05:01:09.021 2025-03-20 05:01:09.021 436136 20706 2 0 13586 2025-03-20 05:01:05.911 2025-03-20 05:01:05.911 436136 20717 2 0 13587 2025-03-20 08:09:14.931 2025-03-20 08:09:14.931 436136 20755 19 0 13588 2025-03-20 05:01:06.08 2025-03-20 05:01:06.08 436136 20979 2 0 13589 2025-03-20 08:03:57.282 2025-03-20 08:03:57.282 436136 20987 3 0 13590 2025-03-20 05:01:10.328 2025-03-20 05:01:10.328 436136 21036 2 0 13591 2025-03-20 05:01:11.879 2025-03-20 05:01:11.879 436136 21090 21 0 13592 2025-03-20 06:06:16.191 2025-03-20 06:06:16.191 436136 21166 1 0 13593 2025-03-20 05:01:05.748 2025-03-20 05:01:05.748 436136 21238 21 0 13594 2025-03-20 05:01:03.994 2025-03-20 05:01:03.994 436136 21248 21 0 13595 2025-03-20 06:59:32.834 2025-03-20 06:59:32.834 436136 21444 36 0 13596 2025-03-20 05:01:09.415 2025-03-20 05:01:09.415 436136 21485 2 0 13597 2025-03-20 05:01:02.862 2025-03-20 05:01:02.862 436136 21506 21 0 13598 2025-03-20 05:49:13.368 2025-03-20 05:49:13.368 436136 21521 19 0 13599 2025-03-20 05:01:09.579 2025-03-20 05:01:09.579 436136 21578 21 0 13600 2025-03-20 05:01:02.326 2025-03-20 05:01:02.326 436136 21683 2 0 13601 2025-03-20 04:04:51.058 2025-03-20 04:04:51.058 436137 8416 1 0 13602 2025-03-20 04:17:05.529 2025-03-20 04:17:05.529 436137 15662 9 0 13603 2025-03-20 04:17:05.529 2025-03-20 04:17:05.529 436137 21670 1 0 13604 2025-03-20 05:34:08.873 2025-03-20 05:34:08.873 436138 686 1 0 13605 2025-03-20 04:07:28.117 2025-03-20 04:07:28.117 436138 8245 36 0 13606 2025-03-20 04:05:32.229 2025-03-20 04:05:32.229 436138 9418 1 0 13607 2025-03-20 05:34:08.301 2025-03-20 05:34:08.301 436138 14225 1 0 13608 2025-03-20 05:34:08.873 2025-03-20 05:34:08.873 436138 19217 9 0 13609 2025-03-20 05:38:10.954 2025-03-20 05:38:10.954 436138 20523 9 0 13610 2025-03-20 05:38:10.954 2025-03-20 05:38:10.954 436138 21247 1 0 13611 2025-03-20 05:34:08.301 2025-03-20 05:34:08.301 436138 21389 9 0 13612 2025-03-20 04:07:28.117 2025-03-20 04:07:28.117 436138 21620 4 0 13613 2025-03-20 04:06:06.369 2025-03-20 04:06:06.369 436139 10352 1 0 13614 2025-03-20 04:06:18.603 2025-03-20 04:06:18.603 436140 1802 1 0 13615 2025-03-20 04:07:30.316 2025-03-20 04:07:30.316 436141 3392 1 0 13616 2025-03-20 07:12:23.404 2025-03-20 07:12:23.404 436142 4973 3 0 13617 2025-03-20 04:07:49.867 2025-03-20 04:07:49.867 436142 20655 1 0 13618 2025-03-20 07:12:23.404 2025-03-20 07:12:23.404 436142 21320 30 0 13619 2025-03-20 04:09:26.088 2025-03-20 04:09:26.088 436143 1740 0 0 13620 2025-03-20 04:20:28.528 2025-03-20 04:20:28.528 436143 2065 0 0 13621 2025-03-20 04:09:21.078 2025-03-20 04:09:21.078 436143 3396 1 0 13622 2025-03-20 04:20:28.528 2025-03-20 04:20:28.528 436143 5852 1 0 13623 2025-03-20 04:17:09.411 2025-03-20 04:17:09.411 436143 14905 0 0 13624 2025-03-20 04:16:52.49 2025-03-20 04:16:52.49 436143 18529 0 0 13625 2025-03-20 04:11:07.251 2025-03-20 04:11:07.251 436144 627 0 100 13626 2025-03-20 08:07:11.295 2025-03-20 08:07:11.295 436145 1003 30 0 13627 2025-03-20 08:07:11.295 2025-03-20 08:07:11.295 436145 3686 3 0 13628 2025-03-20 04:09:43.02 2025-03-20 04:09:43.02 436145 6360 1 0 13629 2025-03-20 04:09:43.7 2025-03-20 04:09:43.7 436146 12821 1 0 13630 2025-03-20 08:09:00.827 2025-03-20 08:09:00.827 436147 1609 19 0 13631 2025-03-20 04:20:39.438 2025-03-20 04:20:39.438 436147 3729 8 0 13632 2025-03-20 04:20:38.975 2025-03-20 04:20:38.975 436147 4624 0 0 13633 2025-03-20 04:26:19.208 2025-03-20 04:26:19.208 436147 7668 7 0 13634 2025-03-20 04:26:19.208 2025-03-20 04:26:19.208 436147 11477 1 0 13635 2025-03-20 04:20:39.438 2025-03-20 04:20:39.438 436147 15213 1 0 13636 2025-03-20 04:20:38.975 2025-03-20 04:20:38.975 436147 17011 1 0 13637 2025-03-20 04:10:53.839 2025-03-20 04:10:53.839 436147 19863 1 0 13638 2025-03-20 08:09:00.827 2025-03-20 08:09:00.827 436147 20802 2 0 13639 2025-03-20 04:30:11.599 2025-03-20 04:30:11.599 436148 5759 10 0 13640 2025-03-20 04:30:11.599 2025-03-20 04:30:11.599 436148 8570 90 0 13641 2025-03-20 04:14:23.445 2025-03-20 04:14:23.445 436148 15147 0 0 13642 2025-03-20 04:11:44.578 2025-03-20 04:11:44.578 436148 18772 1 0 13643 2025-03-20 04:11:49.605 2025-03-20 04:11:49.605 436149 2065 10 0 13644 2025-03-20 04:12:29.837 2025-03-20 04:12:29.837 436150 1638 1 0 13645 2025-03-20 04:13:09.559 2025-03-20 04:13:09.559 436150 1985 0 0 13646 2025-03-20 04:12:56.516 2025-03-20 04:12:56.516 436151 9364 10 0 13647 2025-03-20 04:18:55.074 2025-03-20 04:18:55.074 436152 6653 0 0 13648 2025-03-20 07:52:44.277 2025-03-20 07:52:44.277 436152 14785 9 0 13649 2025-03-20 04:18:08.644 2025-03-20 04:18:08.644 436152 15843 0 0 13650 2025-03-20 04:15:36.753 2025-03-20 04:15:36.753 436152 19527 0 0 13651 2025-03-20 07:52:44.277 2025-03-20 07:52:44.277 436152 20157 1 0 13652 2025-03-20 04:13:55.345 2025-03-20 04:13:55.345 436152 20755 1 0 13653 2025-03-20 05:27:07.5 2025-03-20 05:27:07.5 436153 1411 2 0 13654 2025-03-20 04:32:33.081 2025-03-20 04:32:33.081 436153 2367 25 0 13655 2025-03-20 04:20:52.909 2025-03-20 04:20:52.909 436153 3656 0 0 13656 2025-03-20 04:14:06.354 2025-03-20 04:14:06.354 436153 7916 100 0 13657 2025-03-20 04:20:52.909 2025-03-20 04:20:52.909 436153 8985 1 0 13658 2025-03-20 04:23:42.452 2025-03-20 04:23:42.452 436153 9107 19 0 13659 2025-03-20 04:23:42.452 2025-03-20 04:23:42.452 436153 10638 2 0 13660 2025-03-20 04:32:33.081 2025-03-20 04:32:33.081 436153 11328 3 0 13661 2025-03-20 05:27:07.5 2025-03-20 05:27:07.5 436153 14472 0 0 13662 2025-03-20 04:14:11.925 2025-03-20 04:14:11.925 436154 10849 1 0 13663 2025-03-20 05:40:46.739 2025-03-20 05:40:46.739 436155 891 18 0 13664 2025-03-20 05:40:46.739 2025-03-20 05:40:46.739 436155 4768 2 0 13665 2025-03-20 04:14:48.242 2025-03-20 04:14:48.242 436155 14941 1 0 13666 2025-03-20 08:07:06.932 2025-03-20 08:07:06.932 436156 680 3 0 13667 2025-03-20 08:07:06.932 2025-03-20 08:07:06.932 436156 1008 30 0 13668 2025-03-20 04:15:20.467 2025-03-20 04:15:20.467 436156 9921 1 0 13669 2025-03-20 04:15:22.363 2025-03-20 04:15:22.363 436157 3518 1 0 13670 2025-03-20 05:49:20.992 2025-03-20 05:49:20.992 436158 708 2 0 13671 2025-03-20 04:18:50.886 2025-03-20 04:18:50.886 436158 746 10 0 13672 2025-03-20 06:06:18.815 2025-03-20 06:06:18.815 436158 831 10 0 13673 2025-03-20 04:28:48.967 2025-03-20 04:28:48.967 436158 854 1 0 13674 2025-03-20 05:35:36.871 2025-03-20 05:35:36.871 436158 1060 4 0 13675 2025-03-20 06:06:18.413 2025-03-20 06:06:18.413 436158 1141 10 0 13676 2025-03-20 04:25:04.468 2025-03-20 04:25:04.468 436158 1298 14 0 13677 2025-03-20 11:11:27.477 2025-03-20 11:11:27.477 436158 2335 810 0 13678 2025-03-20 04:20:44.973 2025-03-20 04:20:44.973 436158 2437 1 0 13679 2025-03-20 05:02:06.417 2025-03-20 05:02:06.417 436158 2577 1 0 13680 2025-03-20 05:49:20.992 2025-03-20 05:49:20.992 436158 3990 19 0 13681 2025-03-20 08:09:29.674 2025-03-20 08:09:29.674 436158 4474 2 0 13682 2025-03-20 04:20:45.054 2025-03-20 04:20:45.054 436158 4487 1 0 13683 2025-03-20 04:20:47.672 2025-03-20 04:20:47.672 436158 8326 9 0 13684 2025-03-20 04:20:44.973 2025-03-20 04:20:44.973 436158 12222 0 0 13685 2025-03-20 04:20:47.672 2025-03-20 04:20:47.672 436158 12245 81 0 13686 2025-03-20 04:23:03.813 2025-03-20 04:23:03.813 436158 12291 4 0 13687 2025-03-20 11:11:27.477 2025-03-20 11:11:27.477 436158 15484 90 0 13688 2025-03-20 04:25:04.468 2025-03-20 04:25:04.468 436158 16329 2 0 13689 2025-03-20 05:02:06.417 2025-03-20 05:02:06.417 436158 16336 9 0 13690 2025-03-20 04:20:45.054 2025-03-20 04:20:45.054 436158 17095 8 0 13691 2025-03-20 05:35:36.871 2025-03-20 05:35:36.871 436158 17535 38 0 13692 2025-03-20 06:06:18.413 2025-03-20 06:06:18.413 436158 17693 1 0 13693 2025-03-20 06:06:18.815 2025-03-20 06:06:18.815 436158 18412 1 0 13694 2025-03-20 08:09:29.674 2025-03-20 08:09:29.674 436158 20669 19 0 13695 2025-03-20 04:23:03.813 2025-03-20 04:23:03.813 436158 21271 36 0 13696 2025-03-20 04:28:48.967 2025-03-20 04:28:48.967 436158 21482 9 0 13697 2025-03-20 04:22:26.417 2025-03-20 04:22:26.417 436159 1319 0 0 13698 2025-03-20 04:19:44.876 2025-03-20 04:19:44.876 436159 19488 1 0 13699 2025-03-20 04:22:26.417 2025-03-20 04:22:26.417 436159 21803 1 0 13700 2025-03-20 04:54:25.234 2025-03-20 04:54:25.234 436160 10342 10 0 13701 2025-03-20 04:54:25.234 2025-03-20 04:54:25.234 436160 15978 1 0 13702 2025-03-20 04:20:17.727 2025-03-20 04:20:17.727 436160 21051 1 0 13703 2025-03-20 04:20:46.004 2025-03-20 04:20:46.004 436161 2961 0 0 13704 2025-03-20 04:20:22.754 2025-03-20 04:20:22.754 436161 11275 1 0 13705 2025-03-20 04:28:09.014 2025-03-20 04:28:09.014 436162 9036 1 0 13706 2025-03-20 04:28:09.014 2025-03-20 04:28:09.014 436162 9333 0 0 13707 2025-03-20 04:21:48.904 2025-03-20 04:21:48.904 436162 17535 1 0 13708 2025-03-20 05:02:21.728 2025-03-20 05:02:21.728 436163 663 1 0 13709 2025-03-20 08:16:01.459 2025-03-20 08:16:01.459 436163 1424 2 0 13710 2025-03-20 08:16:01.459 2025-03-20 08:16:01.459 436163 5829 19 0 13711 2025-03-20 04:24:33.048 2025-03-20 04:24:33.048 436163 11395 100 0 13712 2025-03-20 05:02:21.728 2025-03-20 05:02:21.728 436163 13169 9 0 13713 2025-03-20 04:25:57.414 2025-03-20 04:25:57.414 436164 15273 1 0 13714 2025-03-20 08:09:08.643 2025-03-20 08:09:08.643 436165 6765 2 0 13715 2025-03-20 04:26:14.746 2025-03-20 04:26:14.746 436165 14791 1 0 13716 2025-03-20 08:09:08.643 2025-03-20 08:09:08.643 436165 18393 19 0 13717 2025-03-20 04:26:30.321 2025-03-20 04:26:30.321 436166 705 10 0 13718 2025-03-20 05:02:22.11 2025-03-20 05:02:22.11 436166 1571 1 0 13719 2025-03-20 05:02:22.11 2025-03-20 05:02:22.11 436166 20198 9 0 13720 2025-03-20 04:27:16.5 2025-03-20 04:27:16.5 436167 12422 0 0 13721 2025-03-20 04:27:12.745 2025-03-20 04:27:12.745 436168 2735 1 0 13722 2025-03-20 04:28:42.812 2025-03-20 04:28:42.812 436168 20185 0 0 13723 2025-03-20 04:28:05.542 2025-03-20 04:28:05.542 436169 1114 1 0 13724 2025-03-20 04:30:42.644 2025-03-20 04:30:42.644 436169 18956 10 0 13725 2025-03-20 04:30:42.644 2025-03-20 04:30:42.644 436169 20854 90 0 13726 2025-03-20 04:29:10.603 2025-03-20 04:29:10.603 436170 15474 1 0 13727 2025-03-20 04:30:30.826 2025-03-20 04:30:30.826 436171 1389 0 0 13728 2025-03-20 04:32:02.657 2025-03-20 04:32:02.657 436171 5306 0 0 13729 2025-03-20 04:29:59.03 2025-03-20 04:29:59.03 436171 7675 1 0 13730 2025-03-20 04:30:21.097 2025-03-20 04:30:21.097 436171 21734 0 0 13731 2025-03-20 04:30:00.133 2025-03-20 04:30:00.133 436172 6687 1 0 13732 2025-03-20 04:30:38.328 2025-03-20 04:30:38.328 436173 16309 1 0 13733 2025-03-20 06:16:34.469 2025-03-20 06:16:34.469 436174 675 10 0 13734 2025-03-20 08:09:33 2025-03-20 08:09:33 436174 691 19 0 13735 2025-03-20 05:02:22.511 2025-03-20 05:02:22.511 436174 768 1 0 13736 2025-03-20 05:50:08.7 2025-03-20 05:50:08.7 436174 897 19 0 13737 2025-03-20 06:04:12.42 2025-03-20 06:04:12.42 436174 1002 38 0 13738 2025-03-20 05:50:08.7 2025-03-20 05:50:08.7 436174 1505 2 0 13739 2025-03-20 05:02:22.511 2025-03-20 05:02:22.511 436174 1552 9 0 13740 2025-03-20 06:19:48.917 2025-03-20 06:19:48.917 436174 2529 2 0 13741 2025-03-20 06:04:12.42 2025-03-20 06:04:12.42 436174 2844 4 0 13742 2025-03-20 06:59:34.897 2025-03-20 06:59:34.897 436174 3456 36 0 13743 2025-03-20 05:08:18.284 2025-03-20 05:08:18.284 436174 4035 90 0 13744 2025-03-20 04:34:02.771 2025-03-20 04:34:02.771 436174 6136 1 0 13745 2025-03-20 05:31:30.624 2025-03-20 05:31:30.624 436174 9537 90 0 13746 2025-03-20 08:03:47.763 2025-03-20 08:03:47.763 436174 10493 3 0 13747 2025-03-20 06:43:34.808 2025-03-20 06:43:34.808 436174 10719 19 0 13748 2025-03-20 06:16:34.469 2025-03-20 06:16:34.469 436174 12291 90 0 13749 2025-03-20 08:03:47.763 2025-03-20 08:03:47.763 436174 12356 30 0 13750 2025-03-20 05:31:30.624 2025-03-20 05:31:30.624 436174 12819 10 0 13751 2025-03-20 06:19:48.917 2025-03-20 06:19:48.917 436174 12870 19 0 13752 2025-03-20 08:09:33 2025-03-20 08:09:33 436174 13217 2 0 13753 2025-03-20 04:30:53.366 2025-03-20 04:30:53.366 436174 18608 100 0 13754 2025-03-20 04:34:02.771 2025-03-20 04:34:02.771 436174 20588 9 0 13755 2025-03-20 05:08:18.284 2025-03-20 05:08:18.284 436174 20612 10 0 13756 2025-03-20 06:43:34.808 2025-03-20 06:43:34.808 436174 21079 2 0 13757 2025-03-20 06:59:34.897 2025-03-20 06:59:34.897 436174 21356 4 0 13758 2025-03-20 10:59:27.059 2025-03-20 10:59:27.059 436174 21514 19 0 13759 2025-03-20 10:59:27.059 2025-03-20 10:59:27.059 436174 21709 2 0 13760 2025-03-20 04:39:12.438 2025-03-20 04:39:12.438 436175 1801 29 0 13761 2025-03-20 11:39:57.863 2025-03-20 11:39:57.863 436175 3642 9 0 13762 2025-03-20 05:29:46.287 2025-03-20 05:29:46.287 436175 11153 1 0 13763 2025-03-20 04:31:14.698 2025-03-20 04:31:14.698 436175 11165 1 0 13764 2025-03-20 11:39:57.863 2025-03-20 11:39:57.863 436175 12278 1 0 13765 2025-03-20 05:29:46.287 2025-03-20 05:29:46.287 436175 14651 9 0 13766 2025-03-20 04:39:12.438 2025-03-20 04:39:12.438 436175 21103 3 0 13767 2025-03-20 07:07:14.753 2025-03-20 07:07:14.753 436176 2749 10 0 13768 2025-03-20 04:31:37.957 2025-03-20 04:31:37.957 436176 8926 1 0 13769 2025-03-20 06:17:11.216 2025-03-20 06:17:11.216 436176 10719 30 0 13770 2025-03-20 06:17:11.216 2025-03-20 06:17:11.216 436176 11678 3 0 13771 2025-03-20 07:07:14.753 2025-03-20 07:07:14.753 436176 20481 90 0 13772 2025-03-20 09:11:44.475 2025-03-20 09:11:44.475 436178 646 0 0 13773 2025-03-20 09:11:44.475 2025-03-20 09:11:44.475 436178 15690 1 0 13774 2025-03-20 04:31:51.94 2025-03-20 04:31:51.94 436178 17415 1 0 13775 2025-03-20 04:32:44.413 2025-03-20 04:32:44.413 436179 9517 1 0 13776 2025-03-20 06:58:24.157 2025-03-20 06:58:24.157 436180 1051 1 0 13777 2025-03-20 06:58:22.99 2025-03-20 06:58:22.99 436180 1319 9 0 13778 2025-03-20 06:58:24.157 2025-03-20 06:58:24.157 436180 2022 9 0 13779 2025-03-20 06:58:22.541 2025-03-20 06:58:22.541 436180 6382 1 0 13780 2025-03-20 06:58:22.99 2025-03-20 06:58:22.99 436180 8287 1 0 13781 2025-03-20 06:58:23.411 2025-03-20 06:58:23.411 436180 17838 1 0 13782 2025-03-20 06:58:23.411 2025-03-20 06:58:23.411 436180 18678 9 0 13783 2025-03-20 06:58:23.827 2025-03-20 06:58:23.827 436180 19018 9 0 13784 2025-03-20 06:58:23.827 2025-03-20 06:58:23.827 436180 20691 1 0 13785 2025-03-20 04:34:40.785 2025-03-20 04:34:40.785 436180 21014 1 0 13786 2025-03-20 06:58:22.541 2025-03-20 06:58:22.541 436180 21064 9 0 13787 2025-03-20 08:15:53.046 2025-03-20 08:15:53.046 436181 733 2 0 13788 2025-03-20 08:15:57.8 2025-03-20 08:15:57.8 436181 1454 0 0 13789 2025-03-20 05:02:22.917 2025-03-20 05:02:22.917 436181 18069 1 0 13790 2025-03-20 05:02:22.917 2025-03-20 05:02:22.917 436181 18865 9 0 13791 2025-03-20 04:34:47.467 2025-03-20 04:34:47.467 436181 19524 10 0 13792 2025-03-20 08:15:53.046 2025-03-20 08:15:53.046 436181 20094 19 0 13793 2025-03-20 08:15:57.8 2025-03-20 08:15:57.8 436181 21408 1 0 13794 2025-03-20 04:36:01.9 2025-03-20 04:36:01.9 436182 954 21 0 13795 2025-03-20 05:02:23.324 2025-03-20 05:02:23.324 436182 17014 1 0 13796 2025-03-20 05:02:23.324 2025-03-20 05:02:23.324 436182 18423 9 0 13797 2025-03-20 04:37:28.299 2025-03-20 04:37:28.299 436183 11516 1 0 13798 2025-03-20 04:38:23.78 2025-03-20 04:38:23.78 436184 1585 1 0 13799 2025-03-20 04:39:07.814 2025-03-20 04:39:07.814 436185 18772 1 0 13800 2025-03-20 11:40:33.678 2025-03-20 11:40:33.678 436186 711 9 0 13801 2025-03-20 04:39:42.059 2025-03-20 04:39:42.059 436186 2829 4 0 13802 2025-03-20 04:39:09.319 2025-03-20 04:39:09.319 436186 3642 1 0 13803 2025-03-20 04:39:42.059 2025-03-20 04:39:42.059 436186 19829 36 0 13804 2025-03-20 11:40:33.678 2025-03-20 11:40:33.678 436186 21022 1 0 13805 2025-03-20 04:40:45.249 2025-03-20 04:40:45.249 436187 11038 1 0 13806 2025-03-20 04:42:07.853 2025-03-20 04:42:07.853 436188 620 14 0 13807 2025-03-20 04:40:56.646 2025-03-20 04:40:56.646 436188 14663 1 0 13808 2025-03-20 04:42:07.853 2025-03-20 04:42:07.853 436188 15060 2 0 13809 2025-03-20 05:02:23.747 2025-03-20 05:02:23.747 436189 965 1 0 13810 2025-03-20 06:30:57.019 2025-03-20 06:30:57.019 436189 5306 7 0 13811 2025-03-20 06:30:57.019 2025-03-20 06:30:57.019 436189 10690 64 0 13812 2025-03-20 04:50:39.909 2025-03-20 04:50:39.909 436189 16956 0 0 13813 2025-03-20 05:02:23.747 2025-03-20 05:02:23.747 436189 18637 9 0 13814 2025-03-20 04:50:39.909 2025-03-20 04:50:39.909 436189 20646 1 0 13815 2025-03-20 04:41:24.381 2025-03-20 04:41:24.381 436189 21501 100 0 13816 2025-03-20 04:42:12.361 2025-03-20 04:42:12.361 436190 21145 1 0 13817 2025-03-20 05:02:18.8 2025-03-20 05:02:18.8 436191 642 1 0 13818 2025-03-20 05:02:18.8 2025-03-20 05:02:18.8 436191 11776 9 0 13819 2025-03-20 04:47:15.254 2025-03-20 04:47:15.254 436191 17095 0 0 13820 2025-03-20 08:15:43.347 2025-03-20 08:15:43.347 436191 19906 19 0 13821 2025-03-20 08:15:43.347 2025-03-20 08:15:43.347 436191 20377 2 0 13822 2025-03-20 04:57:08.274 2025-03-20 04:57:08.274 436191 20602 1 0 13823 2025-03-20 04:57:08.274 2025-03-20 04:57:08.274 436191 21012 0 0 13824 2025-03-20 04:45:32.879 2025-03-20 04:45:32.879 436191 21248 100 0 13825 2025-03-20 04:46:00.116 2025-03-20 04:46:00.116 436192 19403 1 0 13826 2025-03-20 04:46:54.402 2025-03-20 04:46:54.402 436193 20965 1 0 13827 2025-03-20 04:54:31.217 2025-03-20 04:54:31.217 436194 925 36 0 13828 2025-03-20 05:29:49.823 2025-03-20 05:29:49.823 436194 10484 9 0 13829 2025-03-20 04:47:21.372 2025-03-20 04:47:21.372 436194 16842 1 0 13830 2025-03-20 05:29:49.823 2025-03-20 05:29:49.823 436194 20980 1 0 13831 2025-03-20 04:54:31.217 2025-03-20 04:54:31.217 436194 21599 4 0 13832 2025-03-20 05:02:18.812 2025-03-20 05:02:18.812 436195 685 1 0 13833 2025-03-20 05:31:52.919 2025-03-20 05:31:52.919 436195 708 19 0 13834 2025-03-20 05:31:52.919 2025-03-20 05:31:52.919 436195 787 2 0 13835 2025-03-20 05:02:18.812 2025-03-20 05:02:18.812 436195 1472 9 0 13836 2025-03-20 04:47:26.77 2025-03-20 04:47:26.77 436195 8544 21 0 13837 2025-03-20 04:48:00.492 2025-03-20 04:48:00.492 436196 7667 1 0 13838 2025-03-20 04:50:36.769 2025-03-20 04:50:36.769 436196 17331 0 0 13839 2025-03-20 08:58:12.209 2025-03-20 08:58:12.209 436197 623 5 0 13840 2025-03-20 06:33:00.793 2025-03-20 06:33:00.793 436197 650 1 0 13841 2025-03-20 07:13:06.009 2025-03-20 07:13:06.009 436197 656 3 0 13842 2025-03-20 11:10:25.296 2025-03-20 11:10:25.296 436197 688 9 0 13843 2025-03-20 06:33:02.413 2025-03-20 06:33:02.413 436197 714 1 0 13844 2025-03-20 11:10:25.296 2025-03-20 11:10:25.296 436197 1090 81 0 13845 2025-03-20 08:50:39.522 2025-03-20 08:50:39.522 436197 1145 2 0 13846 2025-03-20 06:33:00.793 2025-03-20 06:33:00.793 436197 1605 9 0 13847 2025-03-20 05:46:12.35 2025-03-20 05:46:12.35 436197 1624 1 0 13848 2025-03-20 10:59:17.968 2025-03-20 10:59:17.968 436197 1632 2 0 13849 2025-03-20 06:06:14.652 2025-03-20 06:06:14.652 436197 2010 1 0 13850 2025-03-20 06:19:38.302 2025-03-20 06:19:38.302 436197 2213 19 0 13851 2025-03-20 06:33:02.542 2025-03-20 06:33:02.542 436197 2711 1 0 13852 2025-03-20 06:06:15.718 2025-03-20 06:06:15.718 436197 3456 1 0 13853 2025-03-20 06:06:14.62 2025-03-20 06:06:14.62 436197 4313 10 0 13854 2025-03-20 04:55:29.635 2025-03-20 04:55:29.635 436197 4395 8 0 13855 2025-03-20 08:16:50.299 2025-03-20 08:16:50.299 436197 5728 2 0 13856 2025-03-20 04:52:41.689 2025-03-20 04:52:41.689 436197 6137 14 0 13857 2025-03-20 08:58:10.061 2025-03-20 08:58:10.061 436197 7818 5 0 13858 2025-03-20 08:16:49.812 2025-03-20 08:16:49.812 436197 7992 19 0 13859 2025-03-20 05:44:06.035 2025-03-20 05:44:06.035 436197 8448 5 0 13860 2025-03-20 06:06:14.652 2025-03-20 06:06:14.652 436197 8841 10 0 13861 2025-03-20 06:59:31.702 2025-03-20 06:59:31.702 436197 9184 4 0 13862 2025-03-20 04:55:30.506 2025-03-20 04:55:30.506 436197 10979 8 0 13863 2025-03-20 06:33:02.542 2025-03-20 09:59:13.176 436197 11999 19 0 13864 2025-03-20 08:16:51.146 2025-03-20 08:16:51.146 436197 12245 19 0 13865 2025-03-20 05:16:54.437 2025-03-20 05:16:54.437 436197 12368 90 0 13866 2025-03-20 04:55:30.506 2025-03-20 04:55:30.506 436197 12779 75 0 13867 2025-03-20 08:16:50.299 2025-03-20 08:16:50.299 436197 13162 19 0 13868 2025-03-20 08:16:51.146 2025-03-20 08:16:51.146 436197 13553 2 0 13869 2025-03-20 05:02:19.195 2025-03-20 05:02:19.195 436197 13753 9 0 13870 2025-03-20 04:55:29.924 2025-03-20 04:55:29.924 436197 14357 8 0 13871 2025-03-20 08:09:23.071 2025-03-20 08:09:23.071 436197 14370 19 0 13872 2025-03-20 05:44:06.035 2025-03-20 05:44:06.035 436197 14404 1 0 13873 2025-03-20 04:48:32.476 2025-03-20 04:48:32.476 436197 14705 1000 0 13874 2025-03-20 06:19:38.302 2025-03-20 06:19:38.302 436197 14910 2 0 13875 2025-03-20 04:55:29.924 2025-03-20 04:55:29.924 436197 15103 75 0 13876 2025-03-20 05:46:12.173 2025-03-20 05:46:12.173 436197 15386 0 0 13877 2025-03-20 05:49:08.005 2025-03-20 05:49:08.005 436197 15474 2 0 13878 2025-03-20 08:03:40.709 2025-03-20 08:03:40.709 436197 15806 3 0 13879 2025-03-20 08:50:39.522 2025-03-20 08:50:39.522 436197 16267 19 0 13880 2025-03-20 08:16:50.692 2025-03-20 08:16:50.692 436197 16598 2 0 13881 2025-03-20 05:49:08.005 2025-03-20 05:49:08.005 436197 16842 19 0 13882 2025-03-20 06:59:31.702 2025-03-20 06:59:31.702 436197 17522 36 0 13883 2025-03-20 08:09:23.071 2025-03-20 08:09:23.071 436197 17638 2 0 13884 2025-03-20 04:52:41.689 2025-03-20 04:52:41.689 436197 17713 2 0 13885 2025-03-20 05:46:12.173 2025-03-20 05:46:12.173 436197 18468 1 0 13886 2025-03-20 07:13:06.009 2025-03-20 07:13:06.009 436197 18529 23 0 13887 2025-03-20 04:52:31.099 2025-03-20 04:52:31.099 436197 18735 14 0 13888 2025-03-20 05:46:12.35 2025-03-20 05:46:12.35 436197 19016 8 0 13889 2025-03-20 08:16:49.812 2025-03-20 08:16:49.812 436197 19018 2 0 13890 2025-03-20 05:02:19.195 2025-03-20 05:02:19.195 436197 19198 1 0 13891 2025-03-20 04:55:30.45 2025-03-20 04:55:30.45 436197 19469 75 0 13892 2025-03-20 09:59:13.176 2025-03-20 09:59:13.176 436197 19569 1 0 13893 2025-03-20 08:58:10.061 2025-03-20 08:58:10.061 436197 19777 45 0 13894 2025-03-20 08:16:51.933 2025-03-20 08:16:51.933 436197 19826 19 0 13895 2025-03-20 06:33:02.413 2025-03-20 06:33:02.413 436197 19857 9 0 13896 2025-03-20 04:52:31.099 2025-03-20 04:52:31.099 436197 19924 2 0 13897 2025-03-20 06:06:14.62 2025-03-20 06:06:14.62 436197 20306 1 0 13898 2025-03-20 08:58:12.209 2025-03-20 08:58:12.209 436197 20861 45 0 13899 2025-03-20 08:16:50.692 2025-03-20 08:16:50.692 436197 20864 19 0 13900 2025-03-20 04:55:30.219 2025-03-20 04:55:30.219 436197 20906 75 0 13901 2025-03-20 08:16:51.933 2025-03-20 08:16:51.933 436197 20939 2 0 13902 2025-03-20 10:59:17.968 2025-03-20 10:59:17.968 436197 20979 19 0 13903 2025-03-20 06:06:15.718 2025-03-20 06:06:15.718 436197 21058 10 0 13904 2025-03-20 05:16:54.437 2025-03-20 05:16:54.437 436197 21079 10 0 13905 2025-03-20 08:03:40.709 2025-03-20 08:03:40.709 436197 21148 30 0 13906 2025-03-20 06:06:15.744 2025-03-20 06:06:15.744 436197 21216 1 0 13907 2025-03-20 04:55:30.219 2025-03-20 04:55:30.219 436197 21269 8 0 13908 2025-03-20 04:55:30.45 2025-03-20 04:55:30.45 436197 21501 8 0 13909 2025-03-20 06:06:15.744 2025-03-20 06:06:15.744 436197 21670 10 0 13910 2025-03-20 04:55:29.635 2025-03-20 04:55:29.635 436197 21814 75 0 13911 2025-03-20 08:09:08.085 2025-03-20 08:09:08.085 436198 7818 19 0 13912 2025-03-20 08:09:08.085 2025-03-20 08:09:08.085 436198 8289 2 0 13913 2025-03-20 04:49:46.661 2025-03-20 04:49:46.661 436198 14785 1 0 13914 2025-03-20 04:50:39.552 2025-03-20 04:50:39.552 436199 8713 1 0 13915 2025-03-20 04:53:06.923 2025-03-20 04:53:06.923 436199 9551 0 0 13916 2025-03-20 04:51:37.188 2025-03-20 04:51:37.188 436201 636 10 0 13917 2025-03-20 05:02:19.758 2025-03-20 05:02:19.758 436201 1454 1 0 13918 2025-03-20 05:02:19.758 2025-03-20 05:02:19.758 436201 2703 9 0 13919 2025-03-20 10:44:36.314 2025-03-20 10:44:36.314 436202 1447 2 0 13920 2025-03-20 04:52:23.562 2025-03-20 04:52:23.562 436202 13547 1 0 13921 2025-03-20 10:44:36.314 2025-03-20 10:44:36.314 436202 20745 19 0 13922 2025-03-20 04:52:52.048 2025-03-20 04:52:52.048 436203 4633 1 0 13923 2025-03-20 08:16:37.641 2025-03-20 08:16:37.641 436203 21061 1 0 13924 2025-03-20 08:16:37.641 2025-03-20 08:16:37.641 436203 21383 0 0 13925 2025-03-20 04:54:23.467 2025-03-20 04:54:23.467 436205 19126 1 0 13926 2025-03-20 04:54:32.078 2025-03-20 04:54:32.078 436206 19842 1 0 13927 2025-03-20 04:54:41.927 2025-03-20 04:54:41.927 436207 946 100 0 13928 2025-03-20 04:59:03.238 2025-03-20 04:59:03.238 436207 1472 0 0 13929 2025-03-20 08:12:30.98 2025-03-20 08:12:30.98 436207 1624 2 0 13930 2025-03-20 05:02:20.011 2025-03-20 05:02:20.011 436207 9378 9 0 13931 2025-03-20 04:59:03.238 2025-03-20 04:59:03.238 436207 13921 1 0 13932 2025-03-20 05:02:20.011 2025-03-20 05:02:20.011 436207 15192 1 0 13933 2025-03-20 05:44:08.249 2025-03-20 05:44:08.249 436207 16214 58 0 13934 2025-03-20 08:12:30.98 2025-03-20 08:12:30.98 436207 18901 19 0 13935 2025-03-20 05:44:08.249 2025-03-20 05:44:08.249 436207 21485 6 0 13936 2025-03-20 05:49:25.46 2025-03-20 05:49:25.46 436208 681 1 0 13937 2025-03-20 05:49:27.028 2025-03-20 05:49:27.028 436208 706 18 0 13938 2025-03-20 06:28:50.065 2025-03-20 06:28:50.065 436208 1173 5 0 13939 2025-03-20 05:49:29.057 2025-03-20 05:49:29.057 436208 1236 1 0 13940 2025-03-20 05:49:26.602 2025-03-20 05:49:26.602 436208 1552 2 0 13941 2025-03-20 05:49:26.247 2025-03-20 05:49:26.247 436208 2402 9 0 13942 2025-03-20 04:54:56.838 2025-03-20 04:54:56.838 436208 5759 1 0 13943 2025-03-20 05:49:29.057 2025-03-20 05:49:29.057 436208 6526 9 0 13944 2025-03-20 05:49:27.028 2025-03-20 05:49:27.028 436208 6537 2 0 13945 2025-03-20 05:49:26.247 2025-03-20 05:49:26.247 436208 9333 1 0 13946 2025-03-20 05:49:25.973 2025-03-20 05:49:25.973 436208 13767 18 0 13947 2025-03-20 06:28:50.065 2025-03-20 06:28:50.065 436208 14663 1 0 13948 2025-03-20 05:49:25.973 2025-03-20 05:49:25.973 436208 17291 2 0 13949 2025-03-20 05:49:29.242 2025-03-20 05:49:29.242 436208 19471 1 0 13950 2025-03-20 05:49:26.602 2025-03-20 05:49:26.602 436208 20479 18 0 13951 2025-03-20 06:10:44.779 2025-03-20 06:10:44.779 436208 20680 19 0 13952 2025-03-20 05:49:29.242 2025-03-20 05:49:29.242 436208 21172 9 0 13953 2025-03-20 06:10:44.779 2025-03-20 06:10:44.779 436208 21526 2 0 13954 2025-03-20 05:49:25.46 2025-03-20 05:49:25.46 436208 21688 9 0 13955 2025-03-20 08:42:10.646 2025-03-20 08:42:10.646 436210 704 2 0 13956 2025-03-20 08:42:10.646 2025-03-20 08:42:10.646 436210 1245 19 0 13957 2025-03-20 05:30:10.431 2025-03-20 05:30:10.431 436210 11714 10 0 13958 2025-03-20 04:55:49.163 2025-03-20 04:55:49.163 436210 16353 1 0 13959 2025-03-20 04:56:51.675 2025-03-20 04:56:51.675 436210 20973 0 0 13960 2025-03-20 05:30:10.431 2025-03-20 05:30:10.431 436210 21556 90 0 13961 2025-03-20 06:10:39.805 2025-03-20 06:10:39.805 436211 1478 19 0 13962 2025-03-20 06:10:39.805 2025-03-20 06:10:39.805 436211 2176 2 0 13963 2025-03-20 04:56:37.639 2025-03-20 04:56:37.639 436211 6555 1 0 13964 2025-03-20 04:57:53.402 2025-03-20 04:57:53.402 436212 5308 21 0 13965 2025-03-20 05:02:20.425 2025-03-20 05:02:20.425 436212 16724 1 0 13966 2025-03-20 05:02:20.425 2025-03-20 05:02:20.425 436212 16942 9 0 13967 2025-03-20 06:59:39.345 2025-03-20 06:59:39.345 436213 701 36 0 13968 2025-03-20 05:09:20.657 2025-03-20 05:09:20.657 436213 739 90 0 13969 2025-03-20 05:25:26.33 2025-03-20 05:25:26.33 436213 1105 3 0 13970 2025-03-20 05:51:28.405 2025-03-20 05:51:28.405 436213 1298 19 0 13971 2025-03-20 08:09:34.543 2025-03-20 08:09:34.543 436213 5794 2 0 13972 2025-03-20 05:51:28.405 2025-03-20 05:51:28.405 436213 16336 2 0 13973 2025-03-20 05:25:26.33 2025-03-20 05:25:26.33 436213 17095 29 0 13974 2025-03-20 05:09:20.657 2025-03-20 05:09:20.657 436213 19668 10 0 13975 2025-03-20 08:09:34.543 2025-03-20 08:09:34.543 436213 21212 19 0 13976 2025-03-20 06:59:39.345 2025-03-20 06:59:39.345 436213 21666 4 0 13977 2025-03-20 04:59:10.499 2025-03-20 04:59:10.499 436214 21044 1 0 13978 2025-03-20 10:41:34.429 2025-03-20 10:41:34.429 436215 1094 2 0 13979 2025-03-20 05:06:01.79 2025-03-20 05:06:01.79 436215 11776 0 0 13980 2025-03-20 10:41:34.429 2025-03-20 10:41:34.429 436215 15226 19 0 13981 2025-03-20 04:59:10.889 2025-03-20 04:59:10.889 436215 15408 1 0 13982 2025-03-20 05:05:28.125 2025-03-20 05:05:28.125 436215 20190 0 0 13983 2025-03-20 05:07:26.253 2025-03-20 05:07:26.253 436216 13348 90 0 13984 2025-03-20 05:07:26.253 2025-03-20 05:07:26.253 436216 21339 10 0 13985 2025-03-20 05:02:35.395 2025-03-20 05:02:35.395 436217 1039 1 0 13986 2025-03-20 08:08:53.894 2025-03-20 08:08:53.894 436218 987 2 0 13987 2025-03-20 06:43:31.261 2025-03-20 06:43:31.261 436218 1564 64 0 13988 2025-03-20 11:00:35.206 2025-03-20 11:00:35.206 436218 1817 19 0 13989 2025-03-20 08:08:53.894 2025-03-20 08:08:53.894 436218 3304 19 0 13990 2025-03-20 05:02:41.396 2025-03-20 05:02:41.396 436218 10719 10 0 13991 2025-03-20 11:00:35.206 2025-03-20 11:00:35.206 436218 10818 2 0 13992 2025-03-20 11:29:26.447 2025-03-20 11:29:26.447 436218 11523 30 0 13993 2025-03-20 11:29:26.447 2025-03-20 11:29:26.447 436218 13903 3 0 13994 2025-03-20 05:11:01.083 2025-03-20 05:11:01.083 436218 15273 0 0 13995 2025-03-20 06:43:31.261 2025-03-20 06:43:31.261 436218 20201 7 0 13996 2025-03-20 05:13:30.129 2025-03-20 05:13:30.129 436219 3409 0 2 13997 2025-03-20 05:04:51.667 2025-03-20 05:04:51.667 436220 5128 1 0 13998 2025-03-20 05:14:10.191 2025-03-20 05:14:10.191 436221 894 0 0 13999 2025-03-20 05:13:18.896 2025-03-20 05:13:18.896 436221 15941 5 0 14000 2025-03-20 05:05:59.7 2025-03-20 05:05:59.7 436221 17570 1 0 14001 2025-03-20 05:13:18.896 2025-03-20 05:13:18.896 436221 18409 1 0 14002 2025-03-20 09:03:01.932 2025-03-20 09:03:01.932 436222 3411 1 0 14003 2025-03-20 09:03:01.932 2025-03-20 09:03:01.932 436222 8080 0 0 14004 2025-03-20 05:07:23.418 2025-03-20 05:07:23.418 436222 11760 1 0 14005 2025-03-20 09:03:04.14 2025-03-20 09:03:04.14 436222 15386 9 0 14006 2025-03-20 09:03:02.138 2025-03-20 09:03:02.138 436222 16633 1 0 14007 2025-03-20 09:03:04.14 2025-03-20 09:03:04.14 436222 18829 81 0 14008 2025-03-20 09:03:02.138 2025-03-20 09:03:02.138 436222 19924 8 0 14009 2025-03-20 07:18:04.902 2025-03-20 07:18:04.902 436223 675 24 0 14010 2025-03-20 07:18:05.578 2025-03-20 07:18:05.578 436223 1003 3 0 14011 2025-03-20 07:18:04.716 2025-03-20 07:18:04.716 436223 1468 24 0 14012 2025-03-20 08:08:09.7 2025-03-20 08:08:09.7 436223 1959 1 0 14013 2025-03-20 07:18:04.902 2025-03-20 07:18:04.902 436223 5444 3 0 14014 2025-03-20 05:08:03.109 2025-03-20 05:08:03.109 436223 9171 1 0 14015 2025-03-20 07:18:05.578 2025-03-20 07:18:05.578 436223 9921 24 0 14016 2025-03-20 08:08:09.7 2025-03-20 08:08:09.7 436223 21303 0 0 14017 2025-03-20 07:18:04.716 2025-03-20 07:18:04.716 436223 21585 3 0 14018 2025-03-20 06:58:16.002 2025-03-20 06:58:16.002 436224 703 1 0 14019 2025-03-20 06:58:16.002 2025-03-20 06:58:16.002 436224 986 6 0 14020 2025-03-20 05:08:29.689 2025-03-20 05:08:29.689 436224 1626 11 0 14021 2025-03-20 05:16:10.197 2025-03-20 05:16:10.197 436224 1970 1 0 14022 2025-03-20 05:22:40.304 2025-03-20 05:22:40.304 436224 12911 45 0 14023 2025-03-20 05:22:40.304 2025-03-20 05:22:40.304 436224 18232 5 0 14024 2025-03-20 05:16:10.197 2025-03-20 05:16:10.197 436224 21422 9 0 14025 2025-03-20 05:08:48.654 2025-03-20 05:08:48.654 436225 1605 1 0 14026 2025-03-20 05:08:55.924 2025-03-20 05:08:55.924 436226 5557 10 0 14027 2025-03-20 07:36:47.384 2025-03-20 07:36:47.384 436227 718 3 0 14028 2025-03-20 05:28:02.337 2025-03-20 05:28:02.337 436227 1438 1 0 14029 2025-03-20 07:36:47.384 2025-03-20 07:36:47.384 436227 1602 0 0 14030 2025-03-20 05:09:11.287 2025-03-20 05:09:11.287 436227 7418 10 0 14031 2025-03-20 05:28:02.337 2025-03-20 05:28:02.337 436227 20979 9 0 14032 2025-03-20 05:16:21.76 2025-03-20 05:16:21.76 436228 897 11 0 14033 2025-03-20 06:58:55.212 2025-03-20 06:58:55.212 436228 17275 1 0 14034 2025-03-20 06:58:55.212 2025-03-20 06:58:55.212 436228 21014 6 0 14035 2025-03-20 06:24:59.387 2025-03-20 06:24:59.387 436228 21062 9 0 14036 2025-03-20 06:24:59.387 2025-03-20 06:24:59.387 436228 21131 1 0 14037 2025-03-20 05:18:08.69 2025-03-20 05:18:08.69 436229 1814 1 0 14038 2025-03-20 05:27:21.748 2025-03-20 05:27:21.748 436230 1030 3 0 14039 2025-03-20 05:27:26.149 2025-03-20 05:27:26.149 436230 3990 29 0 14040 2025-03-20 05:27:21.748 2025-03-20 05:27:21.748 436230 6463 23 0 14041 2025-03-20 05:20:56.676 2025-03-20 05:20:56.676 436230 17535 1 0 14042 2025-03-20 05:27:26.149 2025-03-20 05:27:26.149 436230 21521 3 0 14043 2025-03-20 05:51:16.068 2025-03-20 05:51:16.068 436231 1425 19 0 14044 2025-03-20 05:27:52.006 2025-03-20 05:27:52.006 436231 2775 36 0 14045 2025-03-20 08:08:41.977 2025-03-20 08:08:41.977 436231 3990 19 0 14046 2025-03-20 05:51:16.068 2025-03-20 05:51:16.068 436231 5597 2 0 14047 2025-03-20 05:29:06.381 2025-03-20 05:29:06.381 436231 6741 7 0 14048 2025-03-20 08:08:41.977 2025-03-20 08:08:41.977 436231 9331 2 0 14049 2025-03-20 05:29:06.381 2025-03-20 05:29:06.381 436231 17824 1 0 14050 2025-03-20 05:23:33.262 2025-03-20 05:23:33.262 436231 18225 18 0 14051 2025-03-20 05:27:52.006 2025-03-20 05:27:52.006 436231 20613 4 0 14052 2025-03-20 05:23:33.262 2025-03-20 05:23:33.262 436231 21631 2 0 14053 2025-03-20 05:21:40.803 2025-03-20 05:21:40.803 436232 14909 1 0 14054 2025-03-20 05:26:53.771 2025-03-20 05:26:53.771 436232 20481 0 0 14055 2025-03-20 05:24:40.072 2025-03-20 05:24:40.072 436232 21521 0 0 14056 2025-03-20 05:21:46.222 2025-03-20 05:21:46.222 436233 27 21 0 14057 2025-03-20 05:49:15.797 2025-03-20 05:49:15.797 436233 676 19 0 14058 2025-03-20 05:31:16.493 2025-03-20 05:31:16.493 436233 1814 8 0 14059 2025-03-20 05:31:49.427 2025-03-20 05:31:49.427 436233 2519 2 0 14060 2025-03-20 05:31:49.667 2025-03-20 05:31:49.667 436233 4754 2 0 14061 2025-03-20 05:31:16.12 2025-03-20 05:31:16.12 436233 5173 75 0 14062 2025-03-20 08:09:31.454 2025-03-20 08:09:31.454 436233 5557 2 0 14063 2025-03-20 05:33:02.185 2025-03-20 05:33:02.185 436233 9109 36 0 14064 2025-03-20 05:54:59.496 2025-03-20 05:54:59.496 436233 9537 14 0 14065 2025-03-20 05:31:49.218 2025-03-20 05:31:49.218 436233 11220 2 0 14066 2025-03-20 05:49:15.797 2025-03-20 05:49:15.797 436233 11443 2 0 14067 2025-03-20 05:31:16.459 2025-03-20 05:31:16.459 436233 13348 8 0 14068 2025-03-20 05:31:49.427 2025-03-20 05:31:49.427 436233 14489 19 0 14069 2025-03-20 05:31:16.459 2025-03-20 05:31:16.459 436233 17091 75 0 14070 2025-03-20 05:33:02.185 2025-03-20 05:33:02.185 436233 17690 4 0 14071 2025-03-20 05:44:36.567 2025-03-20 05:44:36.567 436233 19826 0 10 14072 2025-03-20 05:22:18.083 2025-03-20 05:22:18.083 436233 19924 0 0 14073 2025-03-20 05:31:49.218 2025-03-20 05:31:49.218 436233 20306 19 0 14074 2025-03-20 05:31:49.667 2025-03-20 05:31:49.667 436233 20502 19 0 14075 2025-03-20 05:31:16.354 2025-03-20 05:31:16.354 436233 20776 8 0 14076 2025-03-20 05:54:59.496 2025-03-20 05:54:59.496 436233 20781 2 0 14077 2025-03-20 05:31:16.12 2025-03-20 05:31:16.12 436233 20911 8 0 14078 2025-03-20 08:09:31.454 2025-03-20 08:09:31.454 436233 21062 19 0 14079 2025-03-20 05:31:16.354 2025-03-20 05:31:16.354 436233 21518 75 0 14080 2025-03-20 05:31:16.493 2025-03-20 05:31:16.493 436233 21798 75 0 14081 2025-03-20 05:22:31.421 2025-03-20 05:22:31.421 436234 3360 1 0 14082 2025-03-20 05:26:18.303 2025-03-20 05:26:18.303 436234 17541 3 0 14083 2025-03-20 05:26:18.303 2025-03-20 05:26:18.303 436234 19663 29 0 14084 2025-03-20 05:23:30.997 2025-03-20 05:23:30.997 436235 848 1 0 14085 2025-03-20 05:45:43.443 2025-03-20 05:45:43.443 436235 12821 0 0 14086 2025-03-20 05:45:44.31 2025-03-20 05:45:44.31 436235 15239 8 0 14087 2025-03-20 05:45:44.31 2025-03-20 05:45:44.31 436235 16296 1 0 14088 2025-03-20 05:45:43.443 2025-03-20 05:45:43.443 436235 19217 1 0 14089 2025-03-20 05:25:18.533 2025-03-20 05:25:18.533 436236 10986 1 0 14090 2025-03-20 05:45:44.978 2025-03-20 05:45:44.978 436237 2652 8 0 14091 2025-03-20 05:45:44.811 2025-03-20 05:45:44.811 436237 7587 1 0 14092 2025-03-20 05:45:44.978 2025-03-20 05:45:44.978 436237 12749 1 0 14093 2025-03-20 05:45:44.811 2025-03-20 05:45:44.811 436237 12768 0 0 14094 2025-03-20 05:28:13.761 2025-03-20 05:28:13.761 436237 13517 1 0 14095 2025-03-20 05:28:21.97 2025-03-20 05:28:21.97 436238 21269 1 0 14096 2025-03-20 05:45:45.593 2025-03-20 05:45:45.593 436239 3409 1 0 14097 2025-03-20 05:45:45.63 2025-03-20 05:45:45.63 436239 4048 1 0 14098 2025-03-20 05:45:45.63 2025-03-20 05:45:45.63 436239 7558 8 0 14099 2025-03-20 05:45:45.593 2025-03-20 05:45:45.593 436239 7966 0 0 14100 2025-03-20 05:29:02.297 2025-03-20 05:29:02.297 436239 9183 1 0 14101 2025-03-20 08:16:26.342 2025-03-20 08:16:26.342 436240 805 12 0 14102 2025-03-20 08:16:26.342 2025-03-20 08:16:26.342 436240 8498 109 0 14103 2025-03-20 05:30:30.669 2025-03-20 05:30:30.669 436240 16965 10 0 14104 2025-03-20 05:32:53.333 2025-03-20 05:32:53.333 436241 631 1 0 14105 2025-03-20 08:09:26.076 2025-03-20 08:09:26.076 436241 632 2 0 14106 2025-03-20 05:32:54.519 2025-03-20 05:32:54.519 436241 703 36 0 14107 2025-03-20 08:21:37.136 2025-03-20 08:21:37.136 436241 928 27 0 14108 2025-03-20 07:38:29.865 2025-03-20 07:38:29.865 436241 1009 3 0 14109 2025-03-20 05:32:53.333 2025-03-20 05:32:53.333 436241 1261 5 0 14110 2025-03-20 05:31:29.386 2025-03-20 05:31:29.386 436241 1310 3 0 14111 2025-03-20 05:44:51.009 2025-03-20 05:44:51.009 436241 1438 8 0 14112 2025-03-20 06:27:10.859 2025-03-20 06:27:10.859 436241 1650 21 0 14113 2025-03-20 06:27:10.333 2025-03-20 06:27:10.333 436241 1713 21 0 14114 2025-03-20 05:31:17.214 2025-03-20 05:31:17.214 436241 1825 9 0 14115 2025-03-20 06:27:10.859 2025-03-20 06:27:10.859 436241 2010 2 0 14116 2025-03-20 06:06:17.269 2025-03-20 06:06:17.269 436241 2285 1 0 14117 2025-03-20 08:03:45.355 2025-03-20 08:03:45.355 436241 2326 30 0 14118 2025-03-20 05:49:45.464 2025-03-20 05:49:45.464 436241 2367 2 0 14119 2025-03-20 05:55:27.388 2025-03-20 05:55:27.388 436241 2513 3 0 14120 2025-03-20 06:27:11.291 2025-03-20 06:27:11.291 436241 2749 2 0 14121 2025-03-20 05:32:50.868 2025-03-20 05:32:50.868 436241 2952 1 0 14122 2025-03-20 08:21:39.771 2025-03-20 08:21:39.771 436241 3478 27 0 14123 2025-03-20 05:55:27.388 2025-03-20 05:55:27.388 436241 3506 25 0 14124 2025-03-20 06:27:10.464 2025-03-20 06:27:10.464 436241 4177 21 0 14125 2025-03-20 05:32:54.519 2025-03-20 05:32:54.519 436241 4292 4 0 14126 2025-03-20 05:32:51.076 2025-03-20 05:32:51.076 436241 4862 1 0 14127 2025-03-20 11:10:20.605 2025-03-20 11:10:20.605 436241 5557 810 0 14128 2025-03-20 06:27:10.967 2025-03-20 06:27:10.967 436241 5806 2 0 14129 2025-03-20 06:06:18.11 2025-03-20 06:06:18.11 436241 6555 30 0 14130 2025-03-20 08:15:26.484 2025-03-20 08:49:46.073 436241 6653 38 0 14131 2025-03-20 05:44:51.009 2025-03-20 05:44:51.009 436241 7425 1 0 14132 2025-03-20 05:31:50.177 2025-03-20 05:31:50.177 436241 7510 1 0 14133 2025-03-20 06:06:17.24 2025-03-20 06:06:17.24 436241 8541 1 0 14134 2025-03-20 07:09:06.203 2025-03-20 07:09:06.203 436241 8726 1 0 14135 2025-03-20 05:31:29.386 2025-03-20 05:31:29.386 436241 8954 29 0 14136 2025-03-20 05:30:40.742 2025-03-20 05:30:40.742 436241 9329 100 0 14137 2025-03-20 06:27:10.967 2025-03-20 06:27:10.967 436241 9347 21 0 14138 2025-03-20 08:49:46.073 2025-03-20 08:49:46.073 436241 9352 2 0 14139 2025-03-20 09:55:27.318 2025-03-20 09:55:27.318 436241 9421 19 0 14140 2025-03-20 06:06:17.24 2025-03-20 06:06:17.24 436241 9820 10 0 14141 2025-03-20 10:59:16.106 2025-03-20 10:59:16.106 436241 10393 19 0 14142 2025-03-20 07:20:38.968 2025-03-20 07:20:38.968 436241 10719 19 0 14143 2025-03-20 06:24:37.432 2025-03-20 06:24:37.432 436241 11527 19 0 14144 2025-03-20 05:44:51.466 2025-03-20 05:44:51.466 436241 12566 81 0 14145 2025-03-20 06:19:26.47 2025-03-20 06:19:26.47 436241 13055 2 0 14146 2025-03-20 05:44:50.981 2025-03-20 05:44:50.981 436241 13622 1 0 14147 2025-03-20 08:15:26.484 2025-03-20 08:15:26.484 436241 14489 2 0 14148 2025-03-20 07:20:38.968 2025-03-20 07:20:38.968 436241 14791 2 0 14149 2025-03-20 05:32:51.076 2025-03-20 05:32:51.076 436241 15409 5 0 14150 2025-03-20 06:27:10.613 2025-03-20 06:27:10.613 436241 15617 2 0 14151 2025-03-20 06:19:26.47 2025-03-20 06:19:26.47 436241 15719 19 0 14152 2025-03-20 06:27:10.613 2025-03-20 06:27:10.613 436241 16212 21 0 14153 2025-03-20 05:31:50.177 2025-03-20 05:31:50.177 436241 16406 10 0 14154 2025-03-20 05:44:51.466 2025-03-20 05:44:51.466 436241 16667 9 0 14155 2025-03-20 05:59:10.488 2025-03-20 05:59:10.488 436241 16680 1 0 14156 2025-03-20 08:03:43.605 2025-03-20 08:03:43.605 436241 16839 30 0 14157 2025-03-20 05:44:50.981 2025-03-20 05:44:50.981 436241 17103 0 0 14158 2025-03-20 05:31:07.946 2025-03-20 05:31:07.946 436241 17321 10 0 14159 2025-03-20 09:21:34.17 2025-03-20 09:21:34.17 436241 17552 3 0 14160 2025-03-20 07:38:29.865 2025-03-20 07:38:29.865 436241 17682 0 0 14161 2025-03-20 06:24:37.432 2025-03-20 06:24:37.432 436241 17693 2 0 14162 2025-03-20 05:31:07.946 2025-03-20 05:31:07.946 436241 18068 90 0 14163 2025-03-20 05:49:45.464 2025-03-20 05:49:45.464 436241 18219 19 0 14164 2025-03-20 08:03:43.605 2025-03-20 08:03:43.605 436241 18269 3 0 14165 2025-03-20 11:10:20.605 2025-03-20 11:10:20.605 436241 18402 90 0 14166 2025-03-20 09:55:27.318 2025-03-20 09:55:27.318 436241 18525 2 0 14167 2025-03-20 07:09:06.203 2025-03-20 07:09:06.203 436241 18731 10 0 14168 2025-03-20 06:27:10.464 2025-03-20 06:27:10.464 436241 18829 2 0 14169 2025-03-20 09:21:34.17 2025-03-20 09:21:34.17 436241 19199 27 0 14170 2025-03-20 06:47:44.067 2025-03-20 06:47:44.067 436241 20220 0 0 14171 2025-03-20 05:59:10.488 2025-03-20 08:09:26.076 436241 20310 19 0 14172 2025-03-20 10:59:16.106 2025-03-20 10:59:16.106 436241 20509 2 0 14173 2025-03-20 05:32:50.868 2025-03-20 05:32:50.868 436241 20555 5 0 14174 2025-03-20 05:31:17.214 2025-03-20 05:31:17.214 436241 20577 1 0 14175 2025-03-20 08:03:45.355 2025-03-20 08:03:45.355 436241 20755 3 0 14176 2025-03-20 06:06:17.269 2025-03-20 06:06:17.269 436241 20826 10 0 14177 2025-03-20 06:27:10.333 2025-03-20 06:27:10.333 436241 20998 2 0 14178 2025-03-20 06:47:44.067 2025-03-20 06:47:44.067 436241 21079 1 0 14179 2025-03-20 06:06:18.11 2025-03-20 06:06:18.11 436241 21379 3 0 14180 2025-03-20 08:21:39.771 2025-03-20 08:21:39.771 436241 21600 243 0 14181 2025-03-20 08:21:37.136 2025-03-20 08:21:37.136 436241 21672 3 0 14182 2025-03-20 06:27:11.291 2025-03-20 06:27:11.291 436241 21805 21 0 14183 2025-03-20 08:15:23.656 2025-03-20 08:15:23.656 436242 9341 0 0 14184 2025-03-20 08:15:23.656 2025-03-20 08:15:23.656 436242 17095 1 0 14185 2025-03-20 05:30:44.607 2025-03-20 05:30:44.607 436242 21338 1 0 14186 2025-03-20 05:36:25.905 2025-03-20 05:36:25.905 436243 684 9 0 14187 2025-03-20 07:54:53.556 2025-03-20 07:54:53.556 436243 730 3 0 14188 2025-03-20 05:37:07.218 2025-03-20 05:37:07.218 436243 805 0 0 14189 2025-03-20 08:51:49.78 2025-03-20 08:51:49.78 436243 822 10 0 14190 2025-03-20 07:54:53.556 2025-03-20 07:54:53.556 436243 1090 0 0 14191 2025-03-20 09:06:16.176 2025-03-20 09:06:16.176 436243 1298 1 0 14192 2025-03-20 07:57:35.361 2025-03-20 07:57:35.361 436243 1596 5 0 14193 2025-03-20 06:23:55.854 2025-03-20 06:23:55.854 436243 1959 19 0 14194 2025-03-20 12:13:20.343 2025-03-20 12:13:20.343 436243 2681 2 0 14195 2025-03-20 08:24:20.649 2025-03-20 08:24:20.649 436243 2776 1 0 14196 2025-03-20 05:31:36.155 2025-03-20 05:31:36.155 436243 4173 1 0 14197 2025-03-20 06:01:28.826 2025-03-20 06:01:28.826 436243 6777 18 0 14198 2025-03-20 08:11:44.126 2025-03-20 08:11:44.126 436243 7510 1 0 14199 2025-03-20 09:56:59.119 2025-03-20 09:56:59.119 436243 7847 2 0 14200 2025-03-20 05:32:05.841 2025-03-20 05:32:05.841 436243 9551 0 0 14201 2025-03-20 09:56:59.119 2025-03-20 09:56:59.119 436243 9985 19 0 14202 2025-03-20 07:23:02.17 2025-03-20 07:23:02.17 436243 11423 2 0 14203 2025-03-20 07:23:34.614 2025-03-20 07:23:34.614 436243 13198 5 0 14204 2025-03-20 06:23:55.854 2025-03-20 06:23:55.854 436243 14657 2 0 14205 2025-03-20 08:11:44.126 2025-03-20 08:11:44.126 436243 15049 0 0 14206 2025-03-20 12:13:20.343 2025-03-20 12:13:20.343 436243 15226 19 0 14207 2025-03-20 09:06:16.176 2025-03-20 09:06:16.176 436243 15282 10 0 14208 2025-03-20 05:31:59.598 2025-03-20 05:31:59.598 436243 15588 75 0 14209 2025-03-20 07:23:34.614 2025-03-20 07:23:34.614 436243 17519 45 0 14210 2025-03-20 05:32:50.676 2025-03-20 05:32:50.676 436243 17708 10 0 14211 2025-03-20 08:51:49.78 2025-03-20 08:51:49.78 436243 18011 90 0 14212 2025-03-20 05:31:59.598 2025-03-20 05:31:59.598 436243 18557 8 0 14213 2025-03-20 05:32:50.676 2025-03-20 05:32:50.676 436243 19905 1 0 14214 2025-03-20 06:01:28.826 2025-03-20 06:01:28.826 436243 20099 2 0 14215 2025-03-20 05:36:25.905 2025-03-20 05:36:25.905 436243 20636 80 0 14216 2025-03-20 08:24:20.649 2025-03-20 08:24:20.649 436243 20799 9 0 14217 2025-03-20 05:36:52.344 2025-03-20 05:36:52.344 436243 21079 0 0 14218 2025-03-20 07:57:35.361 2025-03-20 07:57:35.361 436243 21228 1 0 14219 2025-03-20 05:41:30.634 2025-03-20 05:41:30.634 436243 21239 0 0 14220 2025-03-20 07:23:02.17 2025-03-20 07:23:02.17 436243 21804 19 0 14221 2025-03-20 05:31:49.557 2025-03-20 05:31:49.557 436244 1198 1 0 14222 2025-03-20 08:28:09.754 2025-03-20 08:28:09.754 436244 1320 9 0 14223 2025-03-20 12:14:14.215 2025-03-20 12:14:14.215 436244 1733 2 0 14224 2025-03-20 08:28:09.754 2025-03-20 08:28:09.754 436244 4250 1 0 14225 2025-03-20 09:57:29.662 2025-03-20 09:57:29.662 436244 4754 19 0 14226 2025-03-20 05:32:52.823 2025-03-20 05:32:52.823 436244 8989 75 0 14227 2025-03-20 08:11:13.528 2025-03-20 08:11:13.528 436244 11873 0 0 14228 2025-03-20 12:14:14.215 2025-03-20 12:14:14.215 436244 15806 19 0 14229 2025-03-20 08:11:13.528 2025-03-20 08:11:13.528 436244 16410 1 0 14230 2025-03-20 05:32:52.823 2025-03-20 05:32:52.823 436244 18412 8 0 14231 2025-03-20 09:57:29.662 2025-03-20 09:57:29.662 436244 18930 2 0 14232 2025-03-20 07:00:43.563 2025-03-20 07:00:43.563 436245 1726 6 0 14233 2025-03-20 05:31:56.168 2025-03-20 05:31:56.168 436245 4819 7 0 14234 2025-03-20 07:00:43.563 2025-03-20 07:00:43.563 436245 15147 1 0 14235 2025-03-20 09:30:54.889 2025-03-20 09:30:54.889 436246 726 5 0 14236 2025-03-20 09:30:54.889 2025-03-20 09:30:54.889 436246 1468 1 0 14237 2025-03-20 07:25:06.356 2025-03-20 07:25:06.356 436246 2056 2 0 14238 2025-03-20 05:34:16.833 2025-03-20 05:34:16.833 436246 2285 0 0 14239 2025-03-20 07:25:06.356 2025-03-20 07:25:06.356 436246 2330 19 0 14240 2025-03-20 05:32:29.712 2025-03-20 05:32:29.712 436246 5725 1 0 14241 2025-03-20 05:32:29.712 2025-03-20 05:32:29.712 436246 7580 9 0 14242 2025-03-20 06:53:56.546 2025-03-20 06:53:56.546 436246 7659 8 0 14243 2025-03-20 08:27:30.653 2025-03-20 08:27:30.653 436246 7966 1 0 14244 2025-03-20 08:10:12.472 2025-03-20 08:10:12.472 436246 9921 0 0 14245 2025-03-20 05:42:38.916 2025-03-20 05:42:38.916 436246 11091 5 0 14246 2025-03-20 05:42:38.916 2025-03-20 05:42:38.916 436246 12965 1 0 14247 2025-03-20 05:34:47.197 2025-03-20 05:34:47.197 436246 13177 0 0 14248 2025-03-20 05:32:52.6 2025-03-20 05:32:52.6 436246 14255 1 0 14249 2025-03-20 05:38:15.482 2025-03-20 05:38:15.482 436246 14376 6 0 14250 2025-03-20 05:32:05.708 2025-03-20 05:32:05.708 436246 14465 1 0 14251 2025-03-20 08:10:12.472 2025-03-20 08:10:12.472 436246 16754 1 0 14252 2025-03-20 08:27:30.653 2025-03-20 08:27:30.653 436246 17722 9 0 14253 2025-03-20 05:32:54.317 2025-03-20 05:32:54.317 436246 19005 0 0 14254 2025-03-20 05:35:49.411 2025-03-20 05:35:49.411 436246 19303 0 0 14255 2025-03-20 05:38:15.482 2025-03-20 05:38:15.482 436246 19524 58 0 14256 2025-03-20 06:53:56.546 2025-03-20 06:53:56.546 436246 20412 75 0 14257 2025-03-20 05:32:52.6 2025-03-20 05:32:52.6 436246 20881 10 0 14258 2025-03-20 05:42:37.388 2025-03-20 05:42:37.388 436246 21026 1 0 14259 2025-03-20 05:42:37.388 2025-03-20 05:42:37.388 436246 21666 5 0 14260 2025-03-20 05:32:29.642 2025-03-20 05:32:29.642 436247 20829 1 0 14261 2025-03-20 05:32:49.056 2025-03-20 05:32:49.056 436248 715 21 0 14262 2025-03-20 08:15:33.571 2025-03-20 08:15:33.571 436248 837 19 0 14263 2025-03-20 06:06:07.771 2025-03-20 06:06:07.771 436248 1046 10 0 14264 2025-03-20 08:05:11.805 2025-03-20 08:05:11.805 436248 5495 19 0 14265 2025-03-20 08:15:33.571 2025-03-20 08:15:33.571 436248 7389 2 0 14266 2025-03-20 05:33:08.552 2025-03-20 05:33:08.552 436248 8423 8 0 14267 2025-03-20 06:06:07.771 2025-03-20 06:06:07.771 436248 8870 90 0 14268 2025-03-20 06:59:39.287 2025-03-20 06:59:39.287 436248 12959 4 0 14269 2025-03-20 08:05:11.805 2025-03-20 08:05:11.805 436248 16042 2 0 14270 2025-03-20 06:59:39.287 2025-03-20 06:59:39.287 436248 16126 36 0 14271 2025-03-20 05:33:08.552 2025-03-20 05:33:08.552 436248 18368 75 0 14272 2025-03-20 05:49:40.254 2025-03-20 05:49:40.254 436248 19996 2 0 14273 2025-03-20 05:49:40.254 2025-03-20 05:49:40.254 436248 20717 19 0 14274 2025-03-20 05:53:24.011 2025-03-20 05:53:24.011 436249 3360 14 0 14275 2025-03-20 05:32:50.333 2025-03-20 05:32:50.333 436249 3729 42 0 14276 2025-03-20 05:53:24.011 2025-03-20 05:53:24.011 436249 21631 2 0 14277 2025-03-20 05:34:06.764 2025-03-20 05:34:06.764 436250 21518 1 0 14278 2025-03-20 05:35:01.138 2025-03-20 05:35:01.138 436251 711 1 0 14279 2025-03-20 05:39:37.333 2025-03-20 05:39:37.333 436252 620 4 0 14280 2025-03-20 05:39:38.649 2025-03-20 05:39:38.649 436252 678 4 0 14281 2025-03-20 05:39:39.37 2025-03-20 05:39:39.37 436252 704 4 0 14282 2025-03-20 05:39:38.649 2025-03-20 05:39:38.649 436252 10698 36 0 14283 2025-03-20 05:39:37.333 2025-03-20 05:39:37.333 436252 12736 36 0 14284 2025-03-20 05:39:39.37 2025-03-20 05:39:39.37 436252 14607 36 0 14285 2025-03-20 05:35:22.784 2025-03-20 05:35:22.784 436252 15662 1 0 14286 2025-03-20 08:08:16.262 2025-03-20 08:08:16.262 436253 1493 19 0 14287 2025-03-20 08:15:22.339 2025-03-20 08:15:22.339 436253 4984 19 0 14288 2025-03-20 05:36:18.64 2025-03-20 05:36:18.64 436253 19303 10 0 14289 2025-03-20 08:08:16.262 2025-03-20 08:08:16.262 436253 20811 2 0 14290 2025-03-20 08:15:22.339 2025-03-20 08:15:22.339 436253 20998 2 0 14291 2025-03-20 05:49:29.561 2025-03-20 05:49:29.561 436254 1394 19 0 14292 2025-03-20 08:33:28.477 2025-03-20 08:33:28.477 436254 5597 9 0 14293 2025-03-20 05:36:49.693 2025-03-20 05:36:49.693 436254 16834 1 0 14294 2025-03-20 08:33:28.477 2025-03-20 08:33:28.477 436254 16950 1 0 14295 2025-03-20 05:49:29.561 2025-03-20 05:49:29.561 436254 21620 2 0 14296 2025-03-20 05:37:01.747 2025-03-20 05:37:01.747 436255 827 50 0 14297 2025-03-20 05:54:19.54 2025-03-20 05:54:19.54 436255 963 7 0 14298 2025-03-20 08:15:18.055 2025-03-20 08:15:18.055 436255 1124 2 0 14299 2025-03-20 08:15:18.055 2025-03-20 08:15:18.055 436255 1483 19 0 14300 2025-03-20 05:54:19.54 2025-03-20 05:54:19.54 436255 14452 1 0 14301 2025-03-20 05:40:21.621 2025-03-20 05:40:21.621 436256 738 8 0 14302 2025-03-20 05:37:06.707 2025-03-20 05:37:06.707 436256 895 1 0 14303 2025-03-20 05:40:21.621 2025-03-20 05:40:21.621 436256 5646 75 0 14304 2025-03-20 05:42:33.921 2025-03-20 05:42:33.921 436256 6463 1 0 14305 2025-03-20 05:42:33.921 2025-03-20 05:42:33.921 436256 14503 5 0 14306 2025-03-20 06:16:25.012 2025-03-20 06:16:25.012 436256 16724 2 0 14307 2025-03-20 06:16:25.012 2025-03-20 06:16:25.012 436256 19668 0 0 14308 2025-03-20 05:38:50.111 2025-03-20 05:38:50.111 436257 1801 36 0 14309 2025-03-20 05:38:49.926 2025-03-20 05:38:49.926 436257 2741 4 0 14310 2025-03-20 05:38:49.573 2025-03-20 05:38:49.573 436257 5578 4 0 14311 2025-03-20 05:38:49.573 2025-03-20 05:38:49.573 436257 8472 36 0 14312 2025-03-20 05:37:44.749 2025-03-20 05:37:44.749 436257 14015 1 0 14313 2025-03-20 05:38:50.111 2025-03-20 05:38:50.111 436257 20377 4 0 14314 2025-03-20 05:38:49.926 2025-03-20 05:38:49.926 436257 20495 36 0 14315 2025-03-20 11:58:46.181 2025-03-20 11:58:46.181 436258 647 1 0 14316 2025-03-20 08:16:52.292 2025-03-20 08:16:52.292 436258 836 10 0 14317 2025-03-20 11:10:53.154 2025-03-20 11:10:53.154 436258 896 9 0 14318 2025-03-20 11:10:54.735 2025-03-20 11:10:54.735 436258 900 90 0 14319 2025-03-20 06:59:34.469 2025-03-20 06:59:34.469 436258 1817 4 0 14320 2025-03-20 10:59:27.915 2025-03-20 10:59:27.915 436258 2010 2 0 14321 2025-03-20 11:10:53.154 2025-03-20 11:10:53.154 436258 3400 81 0 14322 2025-03-20 11:58:46.181 2025-03-20 11:58:46.181 436258 4043 8 0 14323 2025-03-20 06:04:09.177 2025-03-20 06:04:09.177 436258 4768 38 0 14324 2025-03-20 06:32:05.439 2025-03-20 06:32:05.439 436258 5003 1 0 14325 2025-03-20 06:32:05.439 2025-03-20 06:32:05.439 436258 5128 0 0 14326 2025-03-20 13:32:41.101 2025-03-20 13:32:41.101 436258 6463 9 0 14327 2025-03-20 06:32:05.664 2025-03-20 06:32:05.664 436258 9339 1 0 14328 2025-03-20 05:47:33.841 2025-03-20 05:47:33.841 436258 9354 75 0 14329 2025-03-20 05:40:17.776 2025-03-20 05:40:17.776 436258 9695 10 0 14330 2025-03-20 08:04:02.154 2025-03-20 08:04:02.154 436258 9843 30 0 14331 2025-03-20 10:59:27.915 2025-03-20 10:59:27.915 436258 10433 19 0 14332 2025-03-20 08:04:02.154 2025-03-20 08:04:02.154 436258 10469 3 0 14333 2025-03-20 05:47:33.841 2025-03-20 05:47:33.841 436258 14449 8 0 14334 2025-03-20 11:10:54.735 2025-03-20 11:10:54.735 436258 15326 810 0 14335 2025-03-20 08:16:52.292 2025-03-20 08:16:52.292 436258 15367 1 0 14336 2025-03-20 13:32:41.101 2025-03-20 13:32:41.101 436258 15560 1 0 14337 2025-03-20 06:32:05.664 2025-03-20 06:32:05.664 436258 16348 8 0 14338 2025-03-20 05:50:50.947 2025-03-20 05:50:50.947 436258 16948 2 0 14339 2025-03-20 05:50:50.947 2025-03-20 05:50:50.947 436258 17221 19 0 14340 2025-03-20 06:59:34.469 2025-03-20 06:59:34.469 436258 18017 36 0 14341 2025-03-20 06:04:09.177 2025-03-20 06:04:09.177 436258 21710 4 0 14342 2025-03-20 05:45:39.886 2025-03-20 05:45:39.886 436259 986 9 0 14343 2025-03-20 05:45:39.886 2025-03-20 05:45:39.886 436259 4776 1 0 14344 2025-03-20 05:40:22.414 2025-03-20 05:40:22.414 436259 11240 1 0 14345 2025-03-20 05:45:39.85 2025-03-20 05:45:39.85 436259 12744 9 0 14346 2025-03-20 05:45:39.85 2025-03-20 05:45:39.85 436259 21685 1 0 14347 2025-03-20 05:40:49.887 2025-03-20 05:40:49.887 436260 12744 10 0 14348 2025-03-20 05:52:26.686 2025-03-20 05:52:26.686 436261 679 3 0 14349 2025-03-20 08:29:08.207 2025-03-20 08:29:08.207 436261 685 1 0 14350 2025-03-20 08:29:08.207 2025-03-20 08:29:08.207 436261 700 9 0 14351 2025-03-20 08:18:43.33 2025-03-20 08:18:43.33 436261 880 3 0 14352 2025-03-20 05:49:32.1 2025-03-20 05:49:32.1 436261 891 19 0 14353 2025-03-20 05:52:26.686 2025-03-20 05:52:26.686 436261 6202 25 0 14354 2025-03-20 08:18:43.33 2025-03-20 08:18:43.33 436261 10056 27 0 14355 2025-03-20 05:49:32.1 2025-03-20 05:49:32.1 436261 11328 2 0 14356 2025-03-20 05:42:22.211 2025-03-20 05:42:22.211 436261 19821 1 0 14357 2025-03-20 05:43:23.447 2025-03-20 05:43:23.447 436262 9695 1 0 14358 2025-03-20 05:47:33.138 2025-03-20 05:47:33.138 436263 896 0 0 14359 2025-03-20 05:49:59.16 2025-03-20 05:49:59.16 436263 15526 36 0 14360 2025-03-20 05:45:39.751 2025-03-20 05:45:39.751 436263 16704 1 0 14361 2025-03-20 05:49:59.16 2025-03-20 05:49:59.16 436263 16998 4 0 14362 2025-03-20 06:28:36.039 2025-03-20 06:28:36.039 436264 827 2 0 14363 2025-03-20 06:28:36.039 2025-03-20 06:28:36.039 436264 9611 19 0 14364 2025-03-20 05:46:23.015 2025-03-20 05:46:23.015 436264 20963 42 0 14365 2025-03-20 05:54:47.071 2025-03-20 05:54:47.071 436265 11192 19 0 14366 2025-03-20 05:54:47.071 2025-03-20 05:54:47.071 436265 19303 2 0 14367 2025-03-20 05:47:47.704 2025-03-20 05:47:47.704 436265 19537 1 0 14368 2025-03-20 05:48:42.98 2025-03-20 05:48:42.98 436266 6777 1 0 14369 2025-03-20 05:50:21.12 2025-03-20 05:50:21.12 436268 659 1 0 14370 2025-03-20 09:31:01.453 2025-03-20 09:31:01.453 436269 4692 9 0 14371 2025-03-20 05:51:34.239 2025-03-20 05:51:34.239 436269 11220 1 0 14372 2025-03-20 09:31:01.453 2025-03-20 09:31:01.453 436269 14909 1 0 14373 2025-03-20 07:49:16.422 2025-03-20 07:49:16.422 436269 17275 90 0 14374 2025-03-20 07:49:16.422 2025-03-20 07:49:16.422 436269 20669 10 0 14375 2025-03-20 05:52:16.492 2025-03-20 05:52:16.492 436270 1697 1 0 14376 2025-03-20 06:18:18.852 2025-03-20 06:18:18.852 436270 1823 9 0 14377 2025-03-20 06:18:19.222 2025-03-20 06:18:19.222 436270 14195 1 0 14378 2025-03-20 06:18:18.852 2025-03-20 06:18:18.852 436270 18017 1 0 14379 2025-03-20 06:18:19.222 2025-03-20 06:18:19.222 436270 20691 9 0 14380 2025-03-20 05:53:08.097 2025-03-20 05:53:08.097 436271 4166 1 0 14381 2025-03-20 05:54:15.35 2025-03-20 05:54:15.35 436271 20436 0 0 14382 2025-03-20 08:29:11.544 2025-03-20 08:29:11.544 436272 974 1 0 14383 2025-03-20 05:54:57.583 2025-03-20 05:54:57.583 436272 6393 1 0 14384 2025-03-20 08:29:11.544 2025-03-20 08:29:11.544 436272 15577 9 0 14385 2025-03-20 06:29:45.793 2025-03-20 06:29:45.793 436273 624 4 0 14386 2025-03-20 06:29:33.338 2025-03-20 06:29:33.338 436273 650 36 0 14387 2025-03-20 07:40:13.139 2025-03-20 07:40:13.139 436273 691 1 0 14388 2025-03-20 07:40:13.139 2025-03-20 07:40:13.139 436273 886 9 0 14389 2025-03-20 07:40:12.73 2025-03-20 07:40:12.73 436273 956 1 0 14390 2025-03-20 07:40:12.334 2025-03-20 07:40:12.334 436273 1090 9 0 14391 2025-03-20 06:52:42.966 2025-03-20 06:52:42.966 436273 1320 14 0 14392 2025-03-20 06:29:46.228 2025-03-20 06:29:46.228 436273 1424 4 0 14393 2025-03-20 06:29:46.228 2025-03-20 06:29:46.228 436273 2593 36 0 14394 2025-03-20 07:40:13.434 2025-03-20 07:40:13.434 436273 2640 1 0 14395 2025-03-20 08:37:58.482 2025-03-20 08:37:58.482 436273 2773 3 0 14396 2025-03-20 08:20:22.149 2025-03-20 08:20:22.149 436273 3642 1 0 14397 2025-03-20 08:09:35.878 2025-03-20 08:09:35.878 436273 3683 2 0 14398 2025-03-20 08:37:58.776 2025-03-20 08:37:58.776 436273 6749 30 0 14399 2025-03-20 08:37:58.482 2025-03-20 08:37:58.482 436273 7772 30 0 14400 2025-03-20 07:40:12.334 2025-03-20 07:40:12.334 436273 9177 1 0 14401 2025-03-20 06:29:45.793 2025-03-20 06:29:45.793 436273 13055 36 0 14402 2025-03-20 07:40:11.906 2025-03-20 07:40:11.906 436273 14376 1 0 14403 2025-03-20 07:40:11.906 2025-03-20 07:40:11.906 436273 15703 9 0 14404 2025-03-20 06:29:33.338 2025-03-20 06:29:33.338 436273 16571 4 0 14405 2025-03-20 05:56:03.473 2025-03-20 05:56:03.473 436273 17046 10 0 14406 2025-03-20 07:40:12.73 2025-03-20 07:40:12.73 436273 18473 9 0 14407 2025-03-20 08:09:35.878 2025-03-20 08:09:35.878 436273 20205 19 0 14408 2025-03-20 06:52:42.966 2025-03-20 06:52:42.966 436273 20701 2 0 14409 2025-03-20 07:40:13.434 2025-03-20 07:40:13.434 436273 21202 9 0 14410 2025-03-20 08:37:58.776 2025-03-20 08:37:58.776 436273 21303 3 0 14411 2025-03-20 08:20:22.149 2025-03-20 08:20:22.149 436273 21803 10 0 14412 2025-03-20 08:33:41.67 2025-03-20 08:33:41.67 436274 1394 9 0 14413 2025-03-20 08:33:41.67 2025-03-20 08:33:41.67 436274 14657 1 0 14414 2025-03-20 06:12:28.009 2025-03-20 06:12:28.009 436274 17064 0 0 14415 2025-03-20 06:12:28.009 2025-03-20 06:12:28.009 436274 20381 2 0 14416 2025-03-20 05:56:26.247 2025-03-20 05:56:26.247 436274 21688 1 0 14417 2025-03-20 09:32:57.597 2025-03-20 09:32:57.597 436275 2514 1 0 14418 2025-03-20 07:34:49.84 2025-03-20 07:34:49.84 436275 2789 27 0 14419 2025-03-20 09:32:57.597 2025-03-20 09:32:57.597 436275 13327 9 0 14420 2025-03-20 07:43:26.014 2025-03-20 07:43:26.014 436275 15367 1 0 14421 2025-03-20 07:43:25.753 2025-03-20 07:43:25.753 436275 15703 1 0 14422 2025-03-20 07:43:26.014 2025-03-20 07:43:26.014 436275 17944 9 0 14423 2025-03-20 05:56:53.89 2025-03-20 05:56:53.89 436275 21088 1 0 14424 2025-03-20 07:34:49.84 2025-03-20 07:34:49.84 436275 21393 3 0 14425 2025-03-20 07:43:25.753 2025-03-20 07:43:25.753 436275 21578 9 0 14426 2025-03-20 07:57:35.393 2025-03-20 07:57:35.393 436276 3213 90 0 14427 2025-03-20 06:10:35.698 2025-03-20 06:10:35.698 436276 7746 19 0 14428 2025-03-20 07:57:35.393 2025-03-20 07:57:35.393 436276 9655 10 0 14429 2025-03-20 05:57:22.557 2025-03-20 05:57:22.557 436276 18923 1 0 14430 2025-03-20 06:10:35.698 2025-03-20 06:10:35.698 436276 20280 2 0 14431 2025-03-20 05:58:51.9 2025-03-20 05:58:51.9 436277 10112 1 0 14432 2025-03-20 05:59:22.102 2025-03-20 05:59:22.102 436277 16329 0 0 14433 2025-03-20 05:59:43.692 2025-03-20 05:59:43.692 436277 16633 0 0 14434 2025-03-20 05:59:10.85 2025-03-20 05:59:10.85 436278 822 1 0 14435 2025-03-20 09:31:00.528 2025-03-20 09:31:00.528 436278 15588 9 0 14436 2025-03-20 09:31:00.528 2025-03-20 09:31:00.528 436278 21815 1 0 14437 2025-03-20 06:05:06.385 2025-03-20 06:05:06.385 436279 20781 1 0 14438 2025-03-20 06:05:43.682 2025-03-20 06:05:43.682 436280 7960 1 0 14439 2025-03-20 09:56:51.506 2025-03-20 09:56:51.506 436281 780 19 0 14440 2025-03-20 09:56:51.506 2025-03-20 09:56:51.506 436281 946 2 0 14441 2025-03-20 07:58:17.441 2025-03-20 07:58:17.441 436281 951 1 0 14442 2025-03-20 07:48:38.944 2025-03-20 07:48:38.944 436281 1483 12 0 14443 2025-03-20 06:25:19.999 2025-03-20 06:25:19.999 436281 2710 19 0 14444 2025-03-20 06:07:06.341 2025-03-20 06:07:06.341 436281 6555 1 0 14445 2025-03-20 06:11:00.034 2025-03-20 06:11:00.034 436281 7425 75 0 14446 2025-03-20 06:54:07.164 2025-03-20 06:54:07.164 436281 9820 75 0 14447 2025-03-20 08:23:28.411 2025-03-20 08:23:28.411 436281 9833 9 0 14448 2025-03-20 06:11:00.034 2025-03-20 06:11:00.034 436281 12819 8 0 14449 2025-03-20 06:11:46.299 2025-03-20 06:11:46.299 436281 14080 1 0 14450 2025-03-20 06:25:19.999 2025-03-20 06:25:19.999 436281 14552 2 0 14451 2025-03-20 07:48:38.944 2025-03-20 08:23:28.411 436281 16424 106 0 14452 2025-03-20 07:23:01.087 2025-03-20 07:23:01.087 436281 20799 2 0 14453 2025-03-20 06:54:07.164 2025-03-20 06:54:07.164 436281 21202 8 0 14454 2025-03-20 07:23:01.087 2025-03-20 07:23:01.087 436281 21571 19 0 14455 2025-03-20 06:11:46.299 2025-03-20 06:11:46.299 436281 21639 5 0 14456 2025-03-20 07:58:17.441 2025-03-20 07:58:17.441 436281 21791 5 0 14457 2025-03-20 06:07:08.849 2025-03-20 06:07:08.849 436282 21391 1 0 14458 2025-03-20 06:07:13.724 2025-03-20 06:07:13.724 436283 21532 1 0 14459 2025-03-20 06:10:33.971 2025-03-20 06:10:33.971 436284 11395 1 0 14460 2025-03-20 09:31:00.109 2025-03-20 09:31:00.109 436285 1549 1 0 14461 2025-03-20 06:11:21.085 2025-03-20 06:11:21.085 436285 9295 1 0 14462 2025-03-20 09:31:00.109 2025-03-20 09:31:00.109 436285 17638 9 0 14463 2025-03-20 06:57:04.536 2025-03-20 06:57:04.536 436286 844 2 0 14464 2025-03-20 06:11:39.58 2025-03-20 06:11:39.58 436286 2639 1 0 14465 2025-03-20 06:57:04.536 2025-03-20 06:57:04.536 436286 21577 15 0 14466 2025-03-20 06:45:51.881 2025-03-20 06:45:51.881 436287 1505 1 0 14467 2025-03-20 06:45:52.505 2025-03-20 06:45:52.505 436287 4323 0 0 14468 2025-03-20 06:45:53.312 2025-03-20 06:45:53.312 436287 4973 2 0 14469 2025-03-20 06:45:53.312 2025-03-20 06:45:53.312 436287 5746 0 0 14470 2025-03-20 06:14:02.324 2025-03-20 06:14:02.324 436287 6537 1 0 14471 2025-03-20 06:45:52.819 2025-03-20 06:45:52.819 436287 9307 1 0 14472 2025-03-20 06:45:52.819 2025-03-20 06:45:52.819 436287 16876 0 0 14473 2025-03-20 06:45:51.881 2025-03-20 06:45:51.881 436287 21088 0 0 14474 2025-03-20 06:45:52.505 2025-03-20 06:45:52.505 436287 21291 1 0 14475 2025-03-20 06:24:43.608 2025-03-20 06:24:43.608 436288 1122 27 0 14476 2025-03-20 06:24:43.608 2025-03-20 06:24:43.608 436288 1552 3 0 14477 2025-03-20 06:14:47.239 2025-03-20 06:14:47.239 436288 14650 1 0 14478 2025-03-20 06:15:02.075 2025-03-20 06:15:02.075 436289 17116 10 0 14479 2025-03-20 06:26:59.856 2025-03-20 06:26:59.856 436290 697 81 0 14480 2025-03-20 06:26:40.385 2025-03-20 06:26:40.385 436290 1000 1 0 14481 2025-03-20 11:11:20.193 2025-03-20 11:11:20.193 436290 1626 90 0 14482 2025-03-20 06:26:59.856 2025-03-20 06:26:59.856 436290 1652 9 0 14483 2025-03-20 06:29:58.849 2025-03-20 06:29:58.849 436290 2232 4 0 14484 2025-03-20 06:21:07.897 2025-03-20 06:21:07.897 436290 4173 2 0 14485 2025-03-20 06:26:40.385 2025-03-20 06:26:40.385 436290 5308 0 0 14486 2025-03-20 06:29:58.849 2025-03-20 06:29:58.849 436290 6393 36 0 14487 2025-03-20 07:17:09.039 2025-03-20 07:17:09.039 436290 6602 19 0 14488 2025-03-20 06:53:43.414 2025-03-20 06:53:43.414 436290 8287 14 0 14489 2025-03-20 06:53:43.414 2025-03-20 06:53:43.414 436290 9438 2 0 14490 2025-03-20 07:17:09.039 2025-03-20 07:17:09.039 436290 11144 2 0 14491 2025-03-20 06:16:24.026 2025-03-20 06:16:24.026 436290 11516 10 0 14492 2025-03-20 11:11:20.193 2025-03-20 11:11:20.193 436290 15180 810 0 14493 2025-03-20 08:08:03.926 2025-03-20 08:08:03.926 436290 15326 2 0 14494 2025-03-20 06:21:07.897 2025-03-20 06:21:07.897 436290 16212 19 0 14495 2025-03-20 06:15:13.132 2025-03-20 06:15:13.132 436290 16695 10 0 14496 2025-03-20 06:16:24.026 2025-03-20 06:16:24.026 436290 16998 90 0 14497 2025-03-20 06:26:40.758 2025-03-20 06:26:40.758 436290 17568 8 0 14498 2025-03-20 08:08:03.926 2025-03-20 08:08:03.926 436290 20881 19 0 14499 2025-03-20 06:26:40.758 2025-03-20 06:26:40.758 436290 21412 1 0 14500 2025-03-20 06:20:13.306 2025-03-20 06:20:13.306 436291 2492 4 0 14501 2025-03-20 06:15:21.816 2025-03-20 06:15:21.816 436291 12272 1 0 14502 2025-03-20 06:20:13.306 2025-03-20 06:20:13.306 436291 18930 36 0 14503 2025-03-20 09:30:54.653 2025-03-20 09:30:54.653 436292 8469 1 0 14504 2025-03-20 06:15:29.713 2025-03-20 06:15:29.713 436292 10979 1 0 14505 2025-03-20 09:30:54.653 2025-03-20 09:30:54.653 436292 17526 9 0 14506 2025-03-20 07:02:08.392 2025-03-20 07:02:08.392 436293 886 2 0 14507 2025-03-20 07:02:08.392 2025-03-20 07:02:08.392 436293 2328 18 0 14508 2025-03-20 06:15:48.332 2025-03-20 06:15:48.332 436293 3371 1 0 14509 2025-03-20 06:16:28.326 2025-03-20 06:16:28.326 436294 763 1 0 14510 2025-03-20 09:20:00.177 2025-03-20 09:20:00.177 436294 1673 2 0 14511 2025-03-20 09:20:00.177 2025-03-20 09:20:00.177 436294 16816 19 0 14512 2025-03-20 09:31:02.101 2025-03-20 09:31:02.101 436295 16965 9 0 14513 2025-03-20 09:31:02.101 2025-03-20 09:31:02.101 436295 17727 1 0 14514 2025-03-20 06:16:50.046 2025-03-20 06:16:50.046 436295 21514 1 0 14515 2025-03-20 06:17:06.221 2025-03-20 06:17:06.221 436296 17291 1 0 14516 2025-03-20 06:20:09.363 2025-03-20 06:20:09.363 436297 1060 4 0 14517 2025-03-20 06:18:16.997 2025-03-20 06:18:16.997 436297 6148 1 0 14518 2025-03-20 06:20:12.656 2025-03-20 06:20:12.656 436297 9669 4 0 14519 2025-03-20 06:20:09.363 2025-03-20 06:20:09.363 436297 13798 36 0 14520 2025-03-20 06:20:12.656 2025-03-20 06:20:12.656 436297 21814 36 0 14521 2025-03-20 08:42:49.233 2025-03-20 08:42:49.233 436298 696 1 0 14522 2025-03-20 08:42:49.233 2025-03-20 08:42:49.233 436298 9349 9 0 14523 2025-03-20 06:18:31.911 2025-03-20 06:18:31.911 436298 19463 1 0 14524 2025-03-20 06:18:38.281 2025-03-20 06:18:38.281 436299 18011 1 0 14525 2025-03-20 06:19:13.951 2025-03-20 06:19:13.951 436300 5173 1 0 14526 2025-03-20 06:22:40.274 2025-03-20 06:22:40.274 436300 13399 0 0 14527 2025-03-20 09:30:55.334 2025-03-20 09:30:55.334 436301 899 9 0 14528 2025-03-20 06:20:23.71 2025-03-20 06:20:23.71 436301 20117 10 0 14529 2025-03-20 09:30:55.334 2025-03-20 09:30:55.334 436301 20734 1 0 14530 2025-03-20 08:09:39.927 2025-03-20 08:09:39.927 436302 1729 1 0 14531 2025-03-20 06:21:08.232 2025-03-20 06:21:08.232 436302 4692 1 0 14532 2025-03-20 08:38:42.869 2025-03-20 08:38:42.869 436302 16830 9 0 14533 2025-03-20 08:09:39.927 2025-03-20 08:09:39.927 436302 21064 0 0 14534 2025-03-20 08:38:42.869 2025-03-20 08:38:42.869 436302 21814 1 0 14535 2025-03-20 06:22:51.637 2025-03-20 06:22:51.637 436303 4624 1 0 14536 2025-03-20 09:30:15.902 2025-03-20 09:30:15.902 436303 4984 9 0 14537 2025-03-20 06:48:18.902 2025-03-20 06:48:18.902 436303 7674 2 0 14538 2025-03-20 06:48:18.902 2025-03-20 06:48:18.902 436303 11450 18 0 14539 2025-03-20 09:30:15.902 2025-03-20 09:30:15.902 436303 13406 1 0 14540 2025-03-20 06:23:58.164 2025-03-20 06:23:58.164 436303 16834 0 0 14541 2025-03-20 08:25:04.62 2025-03-20 08:25:04.62 436304 633 9 0 14542 2025-03-20 07:10:42.196 2025-03-20 07:10:42.196 436304 705 5 0 14543 2025-03-20 07:10:42.196 2025-03-20 07:10:42.196 436304 831 1 0 14544 2025-03-20 06:23:29.395 2025-03-20 06:23:29.395 436304 5978 0 0 14545 2025-03-20 08:25:04.62 2025-03-20 08:25:04.62 436304 14037 1 0 14546 2025-03-20 06:23:21.63 2025-03-20 06:23:21.63 436304 14465 1 0 14547 2025-03-20 08:52:51.871 2025-03-20 08:52:51.871 436304 16808 2 0 14548 2025-03-20 08:52:51.871 2025-03-20 08:52:51.871 436304 18772 0 0 14549 2025-03-20 08:38:22.712 2025-03-20 08:38:22.712 436305 16598 9 0 14550 2025-03-20 08:38:22.712 2025-03-20 08:38:22.712 436305 19796 1 0 14551 2025-03-20 08:09:22.735 2025-03-20 08:09:22.735 436305 20619 0 0 14552 2025-03-20 08:09:22.735 2025-03-20 08:09:22.735 436305 20717 1 0 14553 2025-03-20 06:23:57.815 2025-03-20 06:23:57.815 436305 20973 1 0 14554 2025-03-20 06:27:28.092 2025-03-20 06:27:28.092 436306 981 243 0 14555 2025-03-20 06:27:28.092 2025-03-20 06:27:28.092 436306 1632 27 0 14556 2025-03-20 06:27:27.146 2025-03-20 06:27:27.146 436306 2326 27 0 14557 2025-03-20 06:25:27.308 2025-03-20 06:25:27.308 436306 16353 19 0 14558 2025-03-20 06:24:21.497 2025-03-20 06:24:21.497 436306 17212 1 0 14559 2025-03-20 06:25:27.308 2025-03-20 06:25:27.308 436306 18529 2 0 14560 2025-03-20 06:27:27.146 2025-03-20 06:27:27.146 436306 21379 3 0 14561 2025-03-20 06:32:48.648 2025-03-20 06:32:48.648 436307 2952 3 0 14562 2025-03-20 10:05:10.162 2025-03-20 10:05:10.162 436307 16301 19 0 14563 2025-03-20 06:25:16.909 2025-03-20 06:25:16.909 436307 19906 1 0 14564 2025-03-20 06:32:48.648 2025-03-20 06:32:48.648 436307 21037 27 0 14565 2025-03-20 10:05:10.162 2025-03-20 10:05:10.162 436307 21444 2 0 14566 2025-03-20 08:27:17.71 2025-03-20 08:27:17.71 436308 5293 1 0 14567 2025-03-20 08:12:12.751 2025-03-20 08:12:12.751 436308 5728 0 0 14568 2025-03-20 06:25:26.65 2025-03-20 06:25:26.65 436308 9337 1 0 14569 2025-03-20 08:27:17.71 2025-03-20 08:27:17.71 436308 11378 9 0 14570 2025-03-20 08:12:12.751 2025-03-20 08:12:12.751 436308 17519 1 0 14571 2025-03-20 06:25:54.591 2025-03-20 06:25:54.591 436309 7185 1 0 14572 2025-03-20 06:26:44.027 2025-03-20 06:26:44.027 436310 2774 1 0 14573 2025-03-20 06:28:04.299 2025-03-20 06:28:04.299 436310 10719 4 0 14574 2025-03-20 06:28:04.299 2025-03-20 06:28:04.299 436310 16042 36 0 14575 2025-03-20 06:27:46.839 2025-03-20 06:27:46.839 436311 703 1 0 14576 2025-03-20 06:29:55.182 2025-03-20 06:29:55.182 436312 1261 3 0 14577 2025-03-20 06:29:55.182 2025-03-20 06:29:55.182 436312 9496 27 0 14578 2025-03-20 06:29:18 2025-03-20 06:29:18 436312 20509 1 0 14579 2025-03-20 06:29:25.051 2025-03-20 06:29:25.051 436313 7960 1 0 14580 2025-03-20 06:36:12.275 2025-03-20 06:36:12.275 436313 20892 19 0 14581 2025-03-20 06:36:12.275 2025-03-20 06:36:12.275 436313 21334 2 0 14582 2025-03-20 06:32:20.236 2025-03-20 06:32:20.236 436314 1002 36 0 14583 2025-03-20 06:32:16.911 2025-03-20 06:32:16.911 436314 10484 4 0 14584 2025-03-20 06:32:18.72 2025-03-20 06:32:18.72 436314 11829 4 0 14585 2025-03-20 06:30:35.56 2025-03-20 06:30:35.56 436314 11897 1 0 14586 2025-03-20 06:32:18.72 2025-03-20 06:32:18.72 436314 17095 36 0 14587 2025-03-20 06:32:16.911 2025-03-20 06:32:16.911 436314 20190 36 0 14588 2025-03-20 06:32:20.236 2025-03-20 06:32:20.236 436314 21798 4 0 14589 2025-03-20 06:42:34.538 2025-03-20 06:42:34.538 436315 2724 19 0 14590 2025-03-20 06:42:34.538 2025-03-20 06:42:34.538 436315 13587 2 0 14591 2025-03-20 06:32:42.297 2025-03-20 06:32:42.297 436315 21303 1 0 14592 2025-03-20 06:32:45.695 2025-03-20 06:32:45.695 436316 2056 100 0 14593 2025-03-20 08:15:06.757 2025-03-20 08:15:06.757 436316 5746 2 0 14594 2025-03-20 08:15:06.757 2025-03-20 08:15:06.757 436316 5761 19 0 14595 2025-03-20 07:06:45.537 2025-03-20 07:06:45.537 436317 706 0 0 14596 2025-03-20 07:06:46.953 2025-03-20 07:06:46.953 436317 1429 1 0 14597 2025-03-20 07:06:45.537 2025-03-20 07:06:45.537 436317 5497 1 0 14598 2025-03-20 07:06:46.953 2025-03-20 07:06:46.953 436317 6393 8 0 14599 2025-03-20 06:33:44.506 2025-03-20 06:33:44.506 436317 10291 100 0 14600 2025-03-20 07:23:35.929 2025-03-20 07:23:35.929 436318 886 9 0 14601 2025-03-20 06:39:07.337 2025-03-20 06:39:07.337 436318 1245 1 0 14602 2025-03-20 07:23:35.513 2025-03-20 07:23:35.513 436318 2844 9 0 14603 2025-03-20 07:23:35.734 2025-03-20 07:23:35.734 436318 5128 1 0 14604 2025-03-20 07:23:35.734 2025-03-20 07:23:35.734 436318 5708 9 0 14605 2025-03-20 07:23:36.124 2025-03-20 07:23:36.124 436318 5779 1 0 14606 2025-03-20 08:12:28.973 2025-03-20 08:12:28.973 436318 5809 2 0 14607 2025-03-20 06:33:45.278 2025-03-20 06:33:45.278 436318 7827 100 0 14608 2025-03-20 07:23:35.338 2025-03-20 07:23:35.338 436318 9833 1 0 14609 2025-03-20 07:23:35.929 2025-03-20 07:23:35.929 436318 11275 1 0 14610 2025-03-20 06:44:28.136 2025-03-20 06:44:28.136 436318 11395 64 0 14611 2025-03-20 06:44:28.136 2025-03-20 06:44:28.136 436318 12102 7 0 14612 2025-03-20 07:23:36.124 2025-03-20 07:23:36.124 436318 16267 9 0 14613 2025-03-20 08:12:28.973 2025-03-20 08:12:28.973 436318 16695 19 0 14614 2025-03-20 07:23:35.338 2025-03-20 07:23:35.338 436318 16789 9 0 14615 2025-03-20 06:39:07.337 2025-03-20 06:39:07.337 436318 17291 0 0 14616 2025-03-20 07:23:35.513 2025-03-20 07:23:35.513 436318 21401 1 0 14617 2025-03-20 06:35:15.079 2025-03-20 06:35:15.079 436319 9036 21 0 14618 2025-03-20 07:04:53.611 2025-03-20 07:04:53.611 436319 9356 0 100 14619 2025-03-20 09:39:15.643 2025-03-20 09:39:15.643 436320 17690 2 0 14620 2025-03-20 06:36:23.894 2025-03-20 06:36:23.894 436320 19663 1 0 14621 2025-03-20 09:39:15.643 2025-03-20 09:39:15.643 436320 20310 19 0 14622 2025-03-20 07:10:40.618 2025-03-20 07:10:40.618 436321 807 1 0 14623 2025-03-20 06:38:36.166 2025-03-20 06:38:36.166 436321 4378 1 0 14624 2025-03-20 07:10:40.618 2025-03-20 07:10:40.618 436321 6360 5 0 14625 2025-03-20 08:12:05.515 2025-03-20 08:12:05.515 436321 7847 1 0 14626 2025-03-20 08:12:05.515 2025-03-20 08:12:05.515 436321 16176 0 0 14627 2025-03-20 08:24:57.758 2025-03-20 08:24:57.758 436321 19952 1 0 14628 2025-03-20 08:24:57.758 2025-03-20 08:24:57.758 436321 21501 9 0 14629 2025-03-20 06:54:30.85 2025-03-20 06:54:30.85 436322 2330 14 0 14630 2025-03-20 08:14:55.01 2025-03-20 08:14:55.01 436322 6148 19 0 14631 2025-03-20 08:14:55.01 2025-03-20 08:14:55.01 436322 6382 2 0 14632 2025-03-20 06:54:30.85 2025-03-20 06:54:30.85 436322 8416 2 0 14633 2025-03-20 08:21:03.101 2025-03-20 08:21:03.101 436322 14278 10 0 14634 2025-03-20 08:22:36.868 2025-03-20 08:22:36.868 436322 16684 9 0 14635 2025-03-20 08:12:27.638 2025-03-20 08:12:27.638 436322 17218 2 0 14636 2025-03-20 08:12:27.638 2025-03-20 08:12:27.638 436322 18101 19 0 14637 2025-03-20 06:52:23.537 2025-03-20 06:52:23.537 436322 20222 19 0 14638 2025-03-20 06:52:23.537 2025-03-20 06:52:23.537 436322 21083 2 0 14639 2025-03-20 08:22:36.868 2025-03-20 08:22:36.868 436322 21222 1 0 14640 2025-03-20 06:38:45.319 2025-03-20 06:38:45.319 436322 21494 100 0 14641 2025-03-20 08:21:03.101 2025-03-20 08:21:03.101 436322 21805 1 0 14642 2025-03-20 08:05:59.531 2025-03-20 08:05:59.531 436323 617 3 0 14643 2025-03-20 08:50:43.972 2025-03-20 08:50:43.972 436323 663 10 0 14644 2025-03-20 08:50:47.776 2025-03-20 08:50:47.776 436323 673 10 0 14645 2025-03-20 11:10:45.138 2025-03-20 11:10:45.138 436323 686 90 0 14646 2025-03-20 08:15:52.521 2025-03-20 08:15:52.521 436323 807 90 0 14647 2025-03-20 08:08:05.018 2025-03-20 08:08:05.018 436323 848 19 0 14648 2025-03-20 10:59:23.485 2025-03-20 10:59:23.485 436323 889 19 0 14649 2025-03-20 08:27:53.987 2025-03-20 08:27:53.987 436323 1092 36 0 14650 2025-03-20 08:50:47.086 2025-03-20 08:50:47.086 436323 1564 1 0 14651 2025-03-20 08:50:47.855 2025-03-20 08:50:47.855 436323 1729 1 0 14652 2025-03-20 06:49:39.681 2025-03-20 06:49:39.681 436323 1740 1 0 14653 2025-03-20 06:49:41.397 2025-03-20 06:49:41.397 436323 1761 9 0 14654 2025-03-20 08:00:15.233 2025-03-20 08:00:15.233 436323 1801 81 0 14655 2025-03-20 08:50:47.776 2025-03-20 08:50:47.776 436323 1823 1 0 14656 2025-03-20 08:39:23.968 2025-03-20 08:39:23.968 436323 2674 9 0 14657 2025-03-20 08:50:48.018 2025-03-20 08:50:48.018 436323 2749 10 0 14658 2025-03-20 11:10:45.138 2025-03-20 11:10:45.138 436323 4388 810 0 14659 2025-03-20 11:23:47.096 2025-03-20 11:23:47.096 436323 4624 9 0 14660 2025-03-20 06:49:40.36 2025-03-20 06:49:40.36 436323 5519 1 0 14661 2025-03-20 08:39:23.968 2025-03-20 08:39:23.968 436323 5557 1 0 14662 2025-03-20 08:50:48.484 2025-03-20 08:50:48.484 436323 5694 1 0 14663 2025-03-20 06:49:41.397 2025-03-20 06:49:41.397 436323 5759 1 0 14664 2025-03-20 08:50:48.018 2025-03-20 08:50:48.018 436323 7510 1 0 14665 2025-03-20 08:50:43.972 2025-03-20 08:50:43.972 436323 7587 1 0 14666 2025-03-20 09:47:48.81 2025-03-20 09:47:48.81 436323 7992 2 0 14667 2025-03-20 08:50:48.484 2025-03-20 08:50:48.484 436323 8284 10 0 14668 2025-03-20 08:00:05.943 2025-03-20 08:00:05.943 436323 8648 8 0 14669 2025-03-20 08:50:48.185 2025-03-20 08:50:48.185 436323 9349 10 0 14670 2025-03-20 06:49:40.36 2025-03-20 06:49:40.36 436323 9833 9 0 14671 2025-03-20 06:49:41.225 2025-03-20 06:49:41.225 436323 11298 1 0 14672 2025-03-20 06:49:41.014 2025-03-20 06:49:41.014 436323 11999 9 0 14673 2025-03-20 08:50:47.577 2025-03-20 08:50:47.577 436323 13216 10 0 14674 2025-03-20 06:49:41.619 2025-03-20 06:49:41.619 436323 13399 1 0 14675 2025-03-20 08:27:53.987 2025-03-20 08:27:53.987 436323 14195 4 0 14676 2025-03-20 06:49:39.681 2025-03-20 06:49:39.681 436323 14376 9 0 14677 2025-03-20 08:08:05.018 2025-03-20 08:08:05.018 436323 14449 2 0 14678 2025-03-20 08:00:05.753 2025-03-20 08:00:05.753 436323 14657 0 0 14679 2025-03-20 06:49:41.619 2025-03-20 06:49:41.619 436323 14910 9 0 14680 2025-03-20 08:50:48.185 2025-03-20 08:50:48.185 436323 15213 1 0 14681 2025-03-20 11:23:47.096 2025-03-20 11:23:47.096 436323 15624 1 0 14682 2025-03-20 06:49:40.652 2025-03-20 06:49:40.652 436323 16753 9 0 14683 2025-03-20 06:49:41.014 2025-03-20 06:49:41.014 436323 16965 1 0 14684 2025-03-20 09:47:48.81 2025-03-20 09:47:48.81 436323 17106 19 0 14685 2025-03-20 06:49:40.652 2025-03-20 06:49:40.652 436323 17109 1 0 14686 2025-03-20 08:50:47.256 2025-03-20 08:50:47.256 436323 17533 1 0 14687 2025-03-20 06:49:41.225 2025-03-20 06:49:41.225 436323 18068 9 0 14688 2025-03-20 08:50:48.326 2025-03-20 08:50:48.326 436323 18241 10 0 14689 2025-03-20 11:46:42.451 2025-03-20 11:46:42.451 436323 18956 2 0 14690 2025-03-20 08:50:48.326 2025-03-20 08:50:48.326 436323 19117 1 0 14691 2025-03-20 08:50:47.577 2025-03-20 08:50:47.577 436323 19446 1 0 14692 2025-03-20 10:59:23.485 2025-03-20 10:59:23.485 436323 19463 2 0 14693 2025-03-20 08:00:05.943 2025-03-20 08:00:05.943 436323 19863 1 0 14694 2025-03-20 08:05:59.531 2025-03-20 08:05:59.531 436323 19888 30 0 14695 2025-03-20 08:15:52.521 2025-03-20 08:15:52.521 436323 19980 10 0 14696 2025-03-20 11:46:42.451 2025-03-20 11:46:42.451 436323 20019 19 0 14697 2025-03-20 08:50:47.855 2025-03-20 08:50:47.855 436323 20434 10 0 14698 2025-03-20 08:50:47.415 2025-03-20 08:50:47.415 436323 20775 1 0 14699 2025-03-20 08:50:47.256 2025-03-20 08:50:47.256 436323 21033 10 0 14700 2025-03-20 08:50:47.086 2025-03-20 08:50:47.086 436323 21036 10 0 14701 2025-03-20 08:00:05.753 2025-03-20 08:00:05.753 436323 21067 1 0 14702 2025-03-20 08:50:49.008 2025-03-20 08:50:49.008 436323 21103 10 0 14703 2025-03-20 06:39:11.189 2025-03-20 06:39:11.189 436323 21212 10 0 14704 2025-03-20 08:50:47.415 2025-03-20 08:50:47.415 436323 21274 10 0 14705 2025-03-20 08:00:15.233 2025-03-20 08:00:15.233 436323 21532 9 0 14706 2025-03-20 08:50:49.008 2025-03-20 08:50:49.008 436323 21712 1 0 14707 2025-03-20 06:39:36.78 2025-03-20 06:39:36.78 436324 3979 1 0 14708 2025-03-20 09:30:42.439 2025-03-20 09:30:42.439 436324 5500 1 0 14709 2025-03-20 09:30:42.439 2025-03-20 09:30:42.439 436324 14357 9 0 14710 2025-03-20 08:28:52.728 2025-03-20 08:28:52.728 436325 1120 9 0 14711 2025-03-20 06:54:22.207 2025-03-20 06:54:22.207 436325 1712 0 0 14712 2025-03-20 08:28:52.728 2025-03-20 08:28:52.728 436325 1802 1 0 14713 2025-03-20 06:44:44.617 2025-03-20 06:44:44.617 436325 12072 1 0 14714 2025-03-20 06:54:00.875 2025-03-20 06:54:00.875 436325 16808 8 0 14715 2025-03-20 06:54:00.875 2025-03-20 06:54:00.875 436325 18901 75 0 14716 2025-03-20 11:09:18.88 2025-03-20 11:09:18.88 436326 624 9 0 14717 2025-03-20 11:11:03.061 2025-03-20 11:11:03.061 436326 633 1 0 14718 2025-03-20 11:11:07.696 2025-03-20 11:11:07.696 436326 670 9 0 14719 2025-03-20 06:53:46.043 2025-03-20 06:53:46.043 436326 673 9 0 14720 2025-03-20 11:11:11.15 2025-03-20 11:11:11.15 436326 675 1 0 14721 2025-03-20 11:09:20.473 2025-03-20 11:09:20.473 436326 713 9 0 14722 2025-03-20 11:11:08.831 2025-03-20 11:11:08.831 436326 717 9 0 14723 2025-03-20 11:10:54.021 2025-03-20 11:10:54.021 436326 720 9 0 14724 2025-03-20 08:16:38.644 2025-03-20 08:16:38.644 436326 722 2 0 14725 2025-03-20 10:47:51.223 2025-03-20 10:47:51.223 436326 736 9 0 14726 2025-03-20 11:10:58.078 2025-03-20 11:10:58.078 436326 738 1 0 14727 2025-03-20 08:16:36.3 2025-03-20 08:16:36.3 436326 750 2 0 14728 2025-03-20 06:53:46.043 2025-03-20 06:53:46.043 436326 797 1 0 14729 2025-03-20 11:09:14.114 2025-03-20 11:09:14.114 436326 805 9 0 14730 2025-03-20 11:11:12.393 2025-03-20 11:11:12.393 436326 814 9 0 14731 2025-03-20 11:11:07.946 2025-03-20 11:11:07.946 436326 825 1 0 14732 2025-03-20 11:10:57.792 2025-03-20 11:10:57.792 436326 831 1 0 14733 2025-03-20 11:10:53.775 2025-03-20 11:10:53.775 436326 836 9 0 14734 2025-03-20 08:16:33.752 2025-03-20 11:09:09.967 436326 882 30 0 14735 2025-03-20 11:11:08.244 2025-03-20 11:11:08.244 436326 896 9 0 14736 2025-03-20 11:09:19.352 2025-03-20 11:09:19.352 436326 917 1 0 14737 2025-03-20 06:54:54.017 2025-03-20 06:54:54.017 436326 928 8 0 14738 2025-03-20 06:53:46.526 2025-03-20 11:11:02.35 436326 985 2 0 14739 2025-03-20 11:09:13.054 2025-03-20 11:09:13.054 436326 987 1 0 14740 2025-03-20 06:53:44.279 2025-03-20 06:53:44.279 436326 994 1 0 14741 2025-03-20 11:09:14.34 2025-03-20 11:09:14.34 436326 998 9 0 14742 2025-03-20 06:53:45.591 2025-03-20 06:53:45.591 436326 999 9 0 14743 2025-03-20 06:54:53.825 2025-03-20 06:54:53.825 436326 1000 75 0 14744 2025-03-20 11:10:53.775 2025-03-20 11:10:53.775 436326 1006 1 0 14745 2025-03-20 11:09:19.09 2025-03-20 11:09:19.09 436326 1114 1 0 14746 2025-03-20 10:59:22.139 2025-03-20 10:59:22.139 436326 1135 2 0 14747 2025-03-20 11:09:20.739 2025-03-20 11:09:20.739 436326 1273 9 0 14748 2025-03-20 08:16:34.473 2025-03-20 08:16:34.473 436326 1298 2 0 14749 2025-03-20 11:09:14.34 2025-03-20 11:09:14.34 436326 1319 1 0 14750 2025-03-20 08:31:04.121 2025-03-20 08:31:04.121 436326 1428 90 0 14751 2025-03-20 11:11:00.204 2025-03-20 11:11:01.829 436326 1433 10 0 14752 2025-03-20 11:09:20.473 2025-03-20 11:09:20.473 436326 1447 1 0 14753 2025-03-20 11:11:09.974 2025-03-20 11:11:09.974 436326 1488 9 0 14754 2025-03-20 11:11:10.364 2025-03-20 11:11:10.364 436326 1495 9 0 14755 2025-03-20 06:55:39.989 2025-03-20 06:55:39.989 436326 1602 14 0 14756 2025-03-20 11:10:56.914 2025-03-20 11:10:56.914 436326 1615 1 0 14757 2025-03-20 11:09:12.674 2025-03-20 11:09:12.674 436326 1624 1 0 14758 2025-03-20 11:09:19.544 2025-03-20 11:09:19.544 436326 1647 1 0 14759 2025-03-20 11:09:18.825 2025-03-20 11:09:18.825 436326 1652 1 0 14760 2025-03-20 08:14:03.78 2025-03-20 08:14:03.78 436326 1741 2 0 14761 2025-03-20 11:11:03.68 2025-03-20 11:11:03.68 436326 1784 1 0 14762 2025-03-20 11:09:19.544 2025-03-20 11:09:19.544 436326 1814 9 0 14763 2025-03-20 11:09:12.674 2025-03-20 11:09:12.674 436326 1817 9 0 14764 2025-03-20 06:53:43.708 2025-03-20 06:53:43.708 436326 1825 9 0 14765 2025-03-20 11:11:01.608 2025-03-20 11:11:01.608 436326 1970 1 0 14766 2025-03-20 06:53:45.417 2025-03-20 06:53:45.417 436326 2016 9 0 14767 2025-03-20 11:09:06.811 2025-03-20 11:09:06.811 436326 2061 9 0 14768 2025-03-20 11:10:58.488 2025-03-20 11:10:58.488 436326 2088 9 0 14769 2025-03-20 08:16:35.03 2025-03-20 08:16:35.03 436326 2151 2 0 14770 2025-03-20 11:09:19.09 2025-03-20 11:09:19.09 436326 2176 9 0 14771 2025-03-20 11:11:09.974 2025-03-20 11:11:09.974 436326 2196 1 0 14772 2025-03-20 11:09:20.228 2025-03-20 11:09:20.228 436326 2203 9 0 14773 2025-03-20 11:10:58.191 2025-03-20 11:10:58.191 436326 2206 1 0 14774 2025-03-20 11:11:00.042 2025-03-20 11:11:00.042 436326 2224 1 0 14775 2025-03-20 08:56:12.083 2025-03-20 08:56:12.083 436326 2233 19 0 14776 2025-03-20 11:10:58.969 2025-03-20 11:10:58.969 436326 2329 9 0 14777 2025-03-20 11:10:57.609 2025-03-20 11:10:57.609 436326 2335 9 0 14778 2025-03-20 11:10:49.787 2025-03-20 11:10:49.787 436326 2508 1 0 14779 2025-03-20 11:09:07.474 2025-03-20 11:09:07.474 436326 2596 1 0 14780 2025-03-20 11:09:13.054 2025-03-20 11:09:13.054 436326 2639 9 0 14781 2025-03-20 11:09:06.979 2025-03-20 11:09:06.979 436326 2674 1 0 14782 2025-03-20 11:10:58.542 2025-03-20 11:10:58.542 436326 2749 9 0 14783 2025-03-20 11:10:58.717 2025-03-20 11:10:58.717 436326 2789 9 0 14784 2025-03-20 11:11:02.35 2025-03-20 11:11:02.35 436326 3409 9 0 14785 2025-03-20 11:09:09.967 2025-03-20 11:09:09.967 436326 3461 1 0 14786 2025-03-20 11:11:01.705 2025-03-20 11:11:01.705 436326 4043 1 0 14787 2025-03-20 06:54:53.886 2025-03-20 06:54:53.886 436326 4062 75 0 14788 2025-03-20 08:14:03.78 2025-03-20 08:14:03.78 436326 4064 19 0 14789 2025-03-20 11:10:59.492 2025-03-20 11:10:59.492 436326 4173 9 0 14790 2025-03-20 06:53:47.135 2025-03-20 11:11:08.548 436326 4314 18 0 14791 2025-03-20 11:11:14.506 2025-03-20 11:11:14.506 436326 4345 9 0 14792 2025-03-20 11:11:12.393 2025-03-20 11:11:12.393 436326 4570 1 0 14793 2025-03-20 11:11:02.437 2025-03-20 11:11:02.437 436326 4692 1 0 14794 2025-03-20 11:11:01.981 2025-03-20 11:11:01.981 436326 4984 1 0 14795 2025-03-20 11:11:08.548 2025-03-20 11:11:08.548 436326 5085 1 0 14796 2025-03-20 11:10:56.914 2025-03-20 11:10:56.914 436326 5112 9 0 14797 2025-03-20 06:53:45.176 2025-03-20 06:53:45.176 436326 5455 9 0 14798 2025-03-20 06:53:45.018 2025-03-20 06:53:45.018 436326 5499 1 0 14799 2025-03-20 11:11:09.298 2025-03-20 11:11:09.298 436326 5578 1 0 14800 2025-03-20 06:49:58.041 2025-03-20 06:49:58.041 436326 5597 1000 0 14801 2025-03-20 11:10:59.233 2025-03-20 11:10:59.233 436326 5757 18 0 14802 2025-03-20 08:56:12.599 2025-03-20 08:56:12.599 436326 5759 19 0 14803 2025-03-20 11:11:09.298 2025-03-20 11:11:09.298 436326 5809 9 0 14804 2025-03-20 11:11:10.208 2025-03-20 11:11:10.208 436326 5825 9 0 14805 2025-03-20 11:11:07.696 2025-03-20 11:11:07.696 436326 6335 1 0 14806 2025-03-20 06:53:43.885 2025-03-20 06:53:43.885 436326 6360 1 0 14807 2025-03-20 08:08:06.132 2025-03-20 08:08:06.132 436326 6361 19 0 14808 2025-03-20 06:53:44.759 2025-03-20 06:53:44.759 436326 6578 1 0 14809 2025-03-20 11:10:59.892 2025-03-20 11:10:59.892 436326 6602 1 0 14810 2025-03-20 11:11:08.444 2025-03-20 11:11:08.444 436326 6777 1 0 14811 2025-03-20 11:11:02.757 2025-03-20 11:11:02.757 436326 7097 9 0 14812 2025-03-20 11:11:01.234 2025-03-20 11:11:01.234 436326 7389 1 0 14813 2025-03-20 11:10:56.866 2025-03-20 11:10:56.866 436326 7418 1 0 14814 2025-03-20 11:09:19.352 2025-03-20 11:09:19.352 436326 7580 9 0 14815 2025-03-20 11:11:02.757 2025-03-20 11:11:02.757 436326 7583 1 0 14816 2025-03-20 06:53:48.588 2025-03-20 06:53:48.588 436326 7766 9 0 14817 2025-03-20 11:11:02.132 2025-03-20 11:11:02.132 436326 7809 1 0 14818 2025-03-20 11:10:59.573 2025-03-20 11:10:59.573 436326 7818 1 0 14819 2025-03-20 11:11:10.836 2025-03-20 11:11:10.836 436326 7847 9 0 14820 2025-03-20 11:11:03.207 2025-03-20 11:11:03.207 436326 7978 1 0 14821 2025-03-20 08:06:19.455 2025-03-20 08:06:19.455 436326 8505 3 0 14822 2025-03-20 10:47:44.652 2025-03-20 10:47:44.652 436326 8506 9 0 14823 2025-03-20 06:53:45.176 2025-03-20 06:53:45.176 436326 8535 1 0 14824 2025-03-20 11:10:59.892 2025-03-20 11:11:08.69 436326 8684 27 0 14825 2025-03-20 06:54:54.148 2025-03-20 11:11:10.52 436326 8945 17 0 14826 2025-03-20 06:55:39.989 2025-03-20 06:55:39.989 436326 8985 2 0 14827 2025-03-20 08:08:06.132 2025-03-20 08:08:06.132 436326 9177 2 0 14828 2025-03-20 11:10:50.276 2025-03-20 11:10:50.276 436326 9183 9 0 14829 2025-03-20 11:11:00.353 2025-03-20 11:11:00.353 436326 9262 9 0 14830 2025-03-20 11:10:49.934 2025-03-20 11:10:49.934 436326 9307 1 0 14831 2025-03-20 11:11:00.042 2025-03-20 11:11:00.042 436326 9334 9 0 14832 2025-03-20 11:11:11.291 2025-03-20 11:11:11.291 436326 9336 9 0 14833 2025-03-20 11:09:07.323 2025-03-20 11:11:10.836 436326 9339 2 0 14834 2025-03-20 11:11:11.023 2025-03-20 11:11:11.023 436326 9350 1 0 14835 2025-03-20 11:10:53.555 2025-03-20 11:10:53.555 436326 9362 1 0 14836 2025-03-20 07:46:40.934 2025-03-20 11:11:01.439 436326 9363 2 0 14837 2025-03-20 11:09:18.825 2025-03-20 11:09:18.825 436326 9450 9 0 14838 2025-03-20 08:16:35.03 2025-03-20 08:16:35.03 436326 9494 19 0 14839 2025-03-20 11:10:53.393 2025-03-20 11:10:53.393 436326 9982 9 0 14840 2025-03-20 11:10:59.73 2025-03-20 11:10:59.73 436326 10016 9 0 14841 2025-03-20 08:16:37.862 2025-03-20 08:16:37.862 436326 10291 19 0 14842 2025-03-20 06:54:53.825 2025-03-20 06:54:53.825 436326 10311 8 0 14843 2025-03-20 11:11:10.52 2025-03-20 11:11:10.52 436326 10409 1 0 14844 2025-03-20 11:11:11.917 2025-03-20 11:11:11.917 436326 10484 1 0 14845 2025-03-20 11:10:54.097 2025-03-20 11:10:54.097 436326 10549 1 0 14846 2025-03-20 11:10:59.573 2025-03-20 11:10:59.573 436326 10719 9 0 14847 2025-03-20 11:11:09.75 2025-03-20 11:11:09.75 436326 10862 1 0 14848 2025-03-20 11:09:19.771 2025-03-20 11:09:19.771 436326 10979 9 0 14849 2025-03-20 11:11:00.945 2025-03-20 11:11:01.608 436326 11073 18 0 14850 2025-03-20 08:16:33.752 2025-03-20 08:16:33.752 436326 11298 19 0 14851 2025-03-20 11:11:01.829 2025-03-20 11:11:01.829 436326 11527 1 0 14852 2025-03-20 11:11:08.69 2025-03-20 11:11:08.69 436326 11716 1 0 14853 2025-03-20 11:10:53.393 2025-03-20 11:10:53.393 436326 11819 1 0 14854 2025-03-20 11:10:50.105 2025-03-20 11:10:50.105 436326 12139 9 0 14855 2025-03-20 11:11:01.092 2025-03-20 11:11:01.092 436326 12291 1 0 14856 2025-03-20 11:09:13.242 2025-03-20 11:09:13.242 436326 12566 1 0 14857 2025-03-20 11:09:13.59 2025-03-20 11:09:13.59 436326 12738 9 0 14858 2025-03-20 08:16:35.282 2025-03-20 08:16:35.282 436326 12769 2 0 14859 2025-03-20 10:59:22.139 2025-03-20 10:59:22.139 436326 12819 19 0 14860 2025-03-20 11:11:02.638 2025-03-20 11:11:02.638 436326 12976 9 0 14861 2025-03-20 11:11:01.234 2025-03-20 11:11:01.234 436326 13038 9 0 14862 2025-03-20 11:10:58.542 2025-03-20 11:10:58.542 436326 13042 1 0 14863 2025-03-20 11:11:00.537 2025-03-20 11:11:00.537 436326 13162 9 0 14864 2025-03-20 11:11:02.437 2025-03-20 11:11:02.437 436326 13174 9 0 14865 2025-03-20 11:09:13.821 2025-03-20 11:09:13.821 436326 13217 9 0 14866 2025-03-20 11:09:06.979 2025-03-20 11:09:06.979 436326 13327 9 0 14867 2025-03-20 06:53:46.791 2025-03-20 06:53:46.791 436326 13398 9 0 14868 2025-03-20 07:27:56.543 2025-03-20 07:27:56.543 436326 13574 4 0 14869 2025-03-20 11:10:58.717 2025-03-20 11:11:13.934 436326 13753 10 0 14870 2025-03-20 06:53:44.073 2025-03-20 08:31:04.121 436326 13878 11 0 14871 2025-03-20 06:53:43.885 2025-03-20 06:53:43.885 436326 14015 9 0 14872 2025-03-20 11:09:12.117 2025-03-20 11:09:12.117 436326 14080 9 0 14873 2025-03-20 06:53:46.791 2025-03-20 06:53:46.791 436326 14385 1 0 14874 2025-03-20 07:27:56.543 2025-03-20 07:27:56.543 436326 14404 36 0 14875 2025-03-20 11:11:10.208 2025-03-20 11:11:10.208 436326 14449 1 0 14876 2025-03-20 11:10:59.492 2025-03-20 11:10:59.492 436326 14552 1 0 14877 2025-03-20 11:09:07.139 2025-03-20 11:09:07.139 436326 14607 1 0 14878 2025-03-20 11:11:00.353 2025-03-20 11:11:00.353 436326 14688 1 0 14879 2025-03-20 11:11:13.934 2025-03-20 11:11:13.934 436326 14774 1 0 14880 2025-03-20 11:11:00.804 2025-03-20 11:11:00.804 436326 14905 9 0 14881 2025-03-20 06:54:54.017 2025-03-20 06:54:54.017 436326 15091 75 0 14882 2025-03-20 11:11:10.364 2025-03-20 11:11:10.364 436326 15484 1 0 14883 2025-03-20 11:11:00.204 2025-03-20 11:11:00.204 436326 15556 9 0 14884 2025-03-20 08:56:12.083 2025-03-20 08:56:12.083 436326 15732 2 0 14885 2025-03-20 06:53:44.523 2025-03-20 06:53:44.523 436326 15941 1 0 14886 2025-03-20 11:11:03.061 2025-03-20 11:11:03.061 436326 16097 9 0 14887 2025-03-20 08:16:36.3 2025-03-20 08:16:36.3 436326 16124 19 0 14888 2025-03-20 11:11:00.537 2025-03-20 11:11:00.537 436326 16176 1 0 14889 2025-03-20 11:11:09.141 2025-03-20 11:11:09.141 436326 16212 9 0 14890 2025-03-20 11:10:54.021 2025-03-20 11:10:54.021 436326 16250 1 0 14891 2025-03-20 11:10:50.421 2025-03-20 11:10:50.421 436326 16301 9 0 14892 2025-03-20 11:09:13.242 2025-03-20 11:09:13.242 436326 16347 9 0 14893 2025-03-20 08:16:34.255 2025-03-20 08:16:34.255 436326 16357 2 0 14894 2025-03-20 11:11:07.871 2025-03-20 11:11:07.871 436326 16432 1 0 14895 2025-03-20 11:11:11.023 2025-03-20 11:11:11.023 436326 16513 9 0 14896 2025-03-20 11:09:07.139 2025-03-20 11:09:07.139 436326 16542 9 0 14897 2025-03-20 08:56:12.599 2025-03-20 08:56:12.599 436326 16562 2 0 14898 2025-03-20 06:54:54.148 2025-03-20 06:54:54.148 436326 16653 75 0 14899 2025-03-20 11:11:09.608 2025-03-20 11:11:09.608 436326 16680 9 0 14900 2025-03-20 06:53:44.523 2025-03-20 06:53:44.523 436326 16747 9 0 14901 2025-03-20 11:11:09.141 2025-03-20 11:11:09.141 436326 16753 1 0 14902 2025-03-20 11:10:57.393 2025-03-20 11:10:57.393 436326 16754 1 0 14903 2025-03-20 11:09:18.88 2025-03-20 11:09:18.88 436326 16929 1 0 14904 2025-03-20 06:54:53.886 2025-03-20 06:54:53.886 436326 16942 8 0 14905 2025-03-20 06:53:45.018 2025-03-20 06:53:45.018 436326 16978 9 0 14906 2025-03-20 11:11:00.945 2025-03-20 11:11:00.945 436326 17046 1 0 14907 2025-03-20 06:53:44.073 2025-03-20 06:53:44.073 436326 17109 9 0 14908 2025-03-20 11:10:57.609 2025-03-20 11:10:57.609 436326 17183 1 0 14909 2025-03-20 11:09:13.59 2025-03-20 11:09:13.59 436326 17184 1 0 14910 2025-03-20 07:17:15.409 2025-03-20 07:17:15.409 436326 17331 2 0 14911 2025-03-20 11:09:12.117 2025-03-20 11:09:12.117 436326 17365 1 0 14912 2025-03-20 11:11:03.68 2025-03-20 11:11:03.68 436326 17415 9 0 14913 2025-03-20 11:09:06.811 2025-03-20 11:09:06.811 436326 17519 1 0 14914 2025-03-20 11:10:57.393 2025-03-20 11:10:57.393 436326 17552 9 0 14915 2025-03-20 11:09:07.474 2025-03-20 11:09:07.474 436326 17817 9 0 14916 2025-03-20 11:10:50.105 2025-03-20 11:10:50.105 436326 18178 1 0 14917 2025-03-20 11:10:58.488 2025-03-20 11:10:58.488 436326 18219 1 0 14918 2025-03-20 08:06:19.455 2025-03-20 08:06:19.455 436326 18231 30 0 14919 2025-03-20 11:10:56.866 2025-03-20 11:10:56.866 436326 18269 9 0 14920 2025-03-20 11:11:10.676 2025-03-20 11:11:10.676 436326 18306 9 0 14921 2025-03-20 11:11:11.917 2025-03-20 11:11:11.917 436326 18409 9 0 14922 2025-03-20 11:09:20.009 2025-03-20 11:09:20.009 436326 18423 1 0 14923 2025-03-20 06:53:47.135 2025-03-20 08:16:38.644 436326 18441 20 0 14924 2025-03-20 08:16:34.255 2025-03-20 08:16:34.255 436326 18449 19 0 14925 2025-03-20 11:09:14.114 2025-03-20 11:09:14.114 436326 18473 1 0 14926 2025-03-20 06:53:44.279 2025-03-20 06:53:44.279 436326 18500 9 0 14927 2025-03-20 11:10:49.787 2025-03-20 11:11:01.092 436326 18525 18 0 14928 2025-03-20 10:47:44.652 2025-03-20 11:09:12.395 436326 18529 10 0 14929 2025-03-20 11:11:08.99 2025-03-20 11:11:08.99 436326 18601 9 0 14930 2025-03-20 11:11:01.439 2025-03-20 11:11:01.439 436326 18637 9 0 14931 2025-03-20 11:10:57.151 2025-03-20 11:10:57.151 436326 18734 1 0 14932 2025-03-20 08:16:34.676 2025-03-20 11:11:13.247 436326 18829 3 0 14933 2025-03-20 11:11:01.981 2025-03-20 11:11:01.981 436326 18901 9 0 14934 2025-03-20 06:53:43.708 2025-03-20 06:53:43.708 436326 19018 1 0 14935 2025-03-20 11:11:11.15 2025-03-20 11:11:11.15 436326 19126 9 0 14936 2025-03-20 10:47:51.223 2025-03-20 11:11:02.907 436326 19138 10 0 14937 2025-03-20 11:11:08.99 2025-03-20 11:11:08.99 436326 19292 1 0 14938 2025-03-20 11:10:53.555 2025-03-20 11:10:53.555 436326 19375 9 0 14939 2025-03-20 06:53:45.591 2025-03-20 06:53:45.591 436326 19417 1 0 14940 2025-03-20 11:11:14.506 2025-03-20 11:11:14.506 436326 19494 1 0 14941 2025-03-20 06:53:45.789 2025-03-20 06:53:45.789 436326 19537 9 0 14942 2025-03-20 07:46:40.934 2025-03-20 07:46:40.934 436326 19813 9 0 14943 2025-03-20 08:16:34.061 2025-03-20 08:16:34.061 436326 19930 2 0 14944 2025-03-20 11:09:11.829 2025-03-20 11:09:11.829 436326 19966 1 0 14945 2025-03-20 08:16:34.473 2025-03-20 08:16:34.473 436326 19992 19 0 14946 2025-03-20 11:11:07.871 2025-03-20 11:11:07.871 436326 20058 9 0 14947 2025-03-20 11:09:20.739 2025-03-20 11:11:03.207 436326 20073 11 0 14948 2025-03-20 11:09:12.395 2025-03-20 11:09:12.395 436326 20099 1 0 14949 2025-03-20 07:17:15.409 2025-03-20 11:11:08.244 436326 20133 20 0 14950 2025-03-20 11:10:54.097 2025-03-20 11:10:54.097 436326 20222 9 0 14951 2025-03-20 11:10:50.276 2025-03-20 11:10:50.276 436326 20243 1 0 14952 2025-03-20 11:11:01.705 2025-03-20 11:11:01.705 436326 20245 9 0 14953 2025-03-20 06:53:45.789 2025-03-20 06:53:45.789 436326 20337 1 0 14954 2025-03-20 08:16:37.862 2025-03-20 08:16:37.862 436326 20436 2 0 14955 2025-03-20 11:11:09.451 2025-03-20 11:11:09.451 436326 20502 9 0 14956 2025-03-20 11:09:20.009 2025-03-20 11:09:20.009 436326 20511 9 0 14957 2025-03-20 11:11:08.831 2025-03-20 11:11:08.831 436326 20562 1 0 14958 2025-03-20 11:11:08.444 2025-03-20 11:11:08.444 436326 20624 9 0 14959 2025-03-20 11:09:07.323 2025-03-20 11:09:07.323 436326 20647 9 0 14960 2025-03-20 11:10:59.233 2025-03-20 11:11:00.804 436326 20655 3 0 14961 2025-03-20 11:11:00.695 2025-03-20 11:11:00.695 436326 20663 1 0 14962 2025-03-20 11:09:11.829 2025-03-20 11:10:58.969 436326 20825 10 0 14963 2025-03-20 11:11:08.087 2025-03-20 11:11:08.087 436326 20854 1 0 14964 2025-03-20 11:11:07.946 2025-03-20 11:11:07.946 436326 20891 9 0 14965 2025-03-20 06:53:45.417 2025-03-20 06:53:45.417 436326 20901 1 0 14966 2025-03-20 11:11:09.451 2025-03-20 11:11:09.451 436326 20963 1 0 14967 2025-03-20 11:10:58.191 2025-03-20 11:10:58.191 436326 20972 9 0 14968 2025-03-20 11:10:57.792 2025-03-20 11:10:57.792 436326 20987 9 0 14969 2025-03-20 11:10:58.078 2025-03-20 11:10:58.078 436326 21014 9 0 14970 2025-03-20 11:11:02.638 2025-03-20 11:11:09.608 436326 21051 2 0 14971 2025-03-20 11:11:00.695 2025-03-20 11:11:00.695 436326 21079 9 0 14972 2025-03-20 06:53:48.588 2025-03-20 06:53:48.588 436326 21249 1 0 14973 2025-03-20 11:09:13.821 2025-03-20 11:09:13.821 436326 21349 1 0 14974 2025-03-20 08:16:34.676 2025-03-20 08:16:34.676 436326 21424 19 0 14975 2025-03-20 11:11:08.087 2025-03-20 11:11:08.087 436326 21455 9 0 14976 2025-03-20 11:10:49.934 2025-03-20 11:10:49.934 436326 21480 9 0 14977 2025-03-20 08:16:34.061 2025-03-20 08:16:34.061 436326 21518 19 0 14978 2025-03-20 11:11:02.907 2025-03-20 11:11:02.907 436326 21521 1 0 14979 2025-03-20 11:11:09.75 2025-03-20 11:11:09.75 436326 21555 9 0 14980 2025-03-20 11:09:19.771 2025-03-20 11:09:19.771 436326 21600 1 0 14981 2025-03-20 11:11:11.291 2025-03-20 11:11:11.291 436326 21603 1 0 14982 2025-03-20 06:53:46.526 2025-03-20 11:10:57.151 436326 21620 18 0 14983 2025-03-20 11:10:59.73 2025-03-20 11:10:59.73 436326 21712 1 0 14984 2025-03-20 11:11:13.247 2025-03-20 11:11:13.247 436326 21714 9 0 14985 2025-03-20 11:11:10.676 2025-03-20 11:11:10.676 436326 21791 1 0 14986 2025-03-20 06:53:44.759 2025-03-20 06:53:44.759 436326 21804 9 0 14987 2025-03-20 11:09:20.228 2025-03-20 11:09:20.228 436326 21832 1 0 14988 2025-03-20 06:51:03.16 2025-03-20 06:51:03.16 436327 1761 1 0 14989 2025-03-20 09:30:32.234 2025-03-20 09:30:32.234 436327 5036 1 0 14990 2025-03-20 09:30:32.234 2025-03-20 09:30:32.234 436327 17091 9 0 14991 2025-03-20 07:26:24.065 2025-03-20 07:26:24.065 436328 6777 9 0 14992 2025-03-20 06:52:09.926 2025-03-20 06:52:09.926 436328 9336 1 0 14993 2025-03-20 06:56:31.814 2025-03-20 06:56:31.814 436328 19403 19 0 14994 2025-03-20 07:26:24.065 2025-03-20 07:26:24.065 436328 20963 1 0 14995 2025-03-20 06:56:31.814 2025-03-20 06:56:31.814 436328 21803 2 0 14996 2025-03-20 06:52:40.692 2025-03-20 06:52:40.692 436329 2670 1 0 14997 2025-03-20 06:55:59.347 2025-03-20 06:55:59.347 436329 18402 27 0 14998 2025-03-20 06:55:59.347 2025-03-20 06:55:59.347 436329 21832 3 0 14999 2025-03-20 07:54:24.408 2025-03-20 07:54:24.408 436330 666 1 0 15000 2025-03-20 11:53:28.245 2025-03-20 11:53:28.245 436330 4064 5 0 15001 2025-03-20 06:53:00.804 2025-03-20 06:53:00.804 436330 6749 1 0 15002 2025-03-20 08:14:45.314 2025-03-20 08:14:45.314 436330 11999 5 0 15003 2025-03-20 08:14:45.314 2025-03-20 08:14:45.314 436330 15052 1 0 15004 2025-03-20 07:54:24.408 2025-03-20 07:54:24.408 436330 15526 9 0 15005 2025-03-20 13:32:55.603 2025-03-20 13:32:55.603 436330 18225 9 0 15006 2025-03-20 11:53:28.245 2025-03-20 11:53:28.245 436330 18231 1 0 15007 2025-03-20 09:22:09.368 2025-03-20 09:22:09.368 436330 20509 10 0 15008 2025-03-20 09:22:09.368 2025-03-20 09:22:09.368 436330 20754 90 0 15009 2025-03-20 13:32:55.603 2025-03-20 13:32:55.603 436330 21523 1 0 15010 2025-03-20 06:53:31.545 2025-03-20 06:53:31.545 436331 1652 100 0 15011 2025-03-20 07:01:31.407 2025-03-20 07:01:31.407 436331 2000 0 0 15012 2025-03-20 08:50:55.702 2025-03-20 08:50:55.702 436332 2620 3 0 15013 2025-03-20 06:54:32.556 2025-03-20 06:54:32.556 436332 8080 2 0 15014 2025-03-20 06:53:36.967 2025-03-20 06:53:36.967 436332 15703 1 0 15015 2025-03-20 08:50:55.702 2025-03-20 08:50:55.702 436332 15719 27 0 15016 2025-03-20 06:54:32.556 2025-03-20 06:54:32.556 436332 21180 14 0 15017 2025-03-20 06:56:07.836 2025-03-20 06:56:07.836 436333 717 1 0 15018 2025-03-20 08:08:58.82 2025-03-20 08:08:58.82 436333 1609 1 0 15019 2025-03-20 08:38:18.052 2025-03-20 08:38:18.052 436333 2776 1 0 15020 2025-03-20 08:08:58.82 2025-03-20 08:08:58.82 436333 14909 0 0 15021 2025-03-20 08:38:18.052 2025-03-20 08:38:18.052 436333 17162 9 0 15022 2025-03-20 07:17:33.145 2025-03-20 07:17:33.145 436334 14910 3 0 15023 2025-03-20 07:17:33.145 2025-03-20 07:17:33.145 436334 15488 29 0 15024 2025-03-20 06:56:36.505 2025-03-20 06:56:36.505 436334 21063 1 0 15025 2025-03-20 08:41:35.507 2025-03-20 08:41:35.507 436335 1007 9 0 15026 2025-03-20 06:57:08.27 2025-03-20 06:57:08.27 436335 16667 1 0 15027 2025-03-20 08:41:35.507 2025-03-20 08:41:35.507 436335 16942 1 0 15028 2025-03-20 08:19:30.599 2025-03-20 08:19:30.599 436336 826 27 0 15029 2025-03-20 08:33:15.477 2025-03-20 08:33:15.477 436336 1082 1 0 15030 2025-03-20 10:22:57.575 2025-03-20 10:22:57.575 436336 6471 38 0 15031 2025-03-20 10:22:57.575 2025-03-20 10:22:57.575 436336 11776 4 0 15032 2025-03-20 06:57:12.086 2025-03-20 06:57:12.086 436336 15408 10 0 15033 2025-03-20 08:33:15.477 2025-03-20 08:33:15.477 436336 15762 9 0 15034 2025-03-20 08:19:30.599 2025-03-20 08:19:30.599 436336 20660 3 0 15035 2025-03-20 08:34:46.269 2025-03-20 08:34:46.269 436337 9969 3 0 15036 2025-03-20 08:34:46.269 2025-03-20 08:34:46.269 436337 12097 30 0 15037 2025-03-20 09:13:12.786 2025-03-20 09:13:12.786 436337 14452 2 0 15038 2025-03-20 07:40:18.751 2025-03-20 07:40:18.751 436337 16950 1 0 15039 2025-03-20 07:40:18.751 2025-03-20 07:40:18.751 436337 17696 9 0 15040 2025-03-20 09:13:12.786 2025-03-20 09:13:12.786 436337 19668 19 0 15041 2025-03-20 06:57:19.241 2025-03-20 06:57:19.241 436337 21424 1 0 15042 2025-03-20 07:07:04.124 2025-03-20 07:07:04.124 436338 5637 2 0 15043 2025-03-20 06:57:49.565 2025-03-20 06:57:49.565 436338 14857 1 0 15044 2025-03-20 07:07:04.124 2025-03-20 07:07:04.124 436338 16816 19 0 15045 2025-03-20 06:57:56.724 2025-03-20 06:57:56.724 436339 21501 1 0 15046 2025-03-20 08:25:19.02 2025-03-20 08:25:19.02 436341 1114 9 0 15047 2025-03-20 06:58:21.05 2025-03-20 06:58:21.05 436341 11999 1 0 15048 2025-03-20 08:25:18.832 2025-03-20 08:25:18.832 436341 19812 1 0 15049 2025-03-20 08:25:19.02 2025-03-20 08:25:19.02 436341 20434 1 0 15050 2025-03-20 08:25:18.832 2025-03-20 08:25:18.832 436341 20681 9 0 15051 2025-03-20 08:08:01.273 2025-03-20 08:08:01.273 436342 780 19 0 15052 2025-03-20 06:58:53.253 2025-03-20 06:58:53.253 436342 1713 10 0 15053 2025-03-20 08:08:01.273 2025-03-20 08:08:01.273 436342 15100 2 0 15054 2025-03-20 08:07:00.426 2025-03-20 08:07:00.426 436343 997 30 0 15055 2025-03-20 09:32:46.687 2025-03-20 09:32:46.687 436343 1060 1 0 15056 2025-03-20 07:34:46.908 2025-03-20 07:34:46.908 436343 1429 27 0 15057 2025-03-20 07:30:02.975 2025-03-20 07:30:02.975 436343 1733 3 0 15058 2025-03-20 08:06:57.908 2025-03-20 08:06:57.908 436343 1738 30 0 15059 2025-03-20 07:42:59.199 2025-03-20 07:42:59.199 436343 1802 1 0 15060 2025-03-20 07:42:58.708 2025-03-20 07:42:58.708 436343 2195 9 0 15061 2025-03-20 07:17:29.712 2025-03-20 07:17:29.712 436343 5942 2 0 15062 2025-03-20 08:06:57.908 2025-03-20 08:06:57.908 436343 7979 3 0 15063 2025-03-20 06:59:07.412 2025-03-20 06:59:07.412 436343 8726 1 0 15064 2025-03-20 07:34:46.908 2025-03-20 07:34:46.908 436343 10007 3 0 15065 2025-03-20 07:17:29.712 2025-03-20 07:17:29.712 436343 12965 19 0 15066 2025-03-20 07:42:59.199 2025-03-20 07:42:59.199 436343 14037 9 0 15067 2025-03-20 07:42:58.708 2025-03-20 07:42:58.708 436343 16970 1 0 15068 2025-03-20 08:07:00.426 2025-03-20 08:07:00.426 436343 20099 3 0 15069 2025-03-20 09:32:46.687 2025-03-20 09:32:46.687 436343 21021 9 0 15070 2025-03-20 07:30:02.975 2025-03-20 07:30:02.975 436343 21281 29 0 15071 2025-03-20 06:59:56.572 2025-03-20 06:59:56.572 436344 1120 4 0 15072 2025-03-20 10:12:16.974 2025-03-20 10:12:16.974 436344 1712 9 0 15073 2025-03-20 10:10:58.115 2025-03-20 10:10:58.115 436344 1800 1 0 15074 2025-03-20 07:14:41.463 2025-03-20 07:14:41.463 436344 8045 1 0 15075 2025-03-20 06:59:56.572 2025-03-20 06:59:56.572 436344 12561 36 0 15076 2025-03-20 10:12:16.974 2025-03-20 10:12:16.974 436344 12736 1 0 15077 2025-03-20 08:07:37.843 2025-03-20 08:07:37.843 436344 12946 2 0 15078 2025-03-20 07:14:41.463 2025-03-20 07:14:41.463 436344 16145 8 0 15079 2025-03-20 08:07:37.843 2025-03-20 08:07:37.843 436344 19494 19 0 15080 2025-03-20 10:10:58.115 2025-03-20 10:10:58.115 436344 21430 9 0 15081 2025-03-20 07:05:58.861 2025-03-20 07:05:58.861 436345 1577 8 0 15082 2025-03-20 08:07:50.064 2025-03-20 08:07:50.064 436345 13169 19 0 15083 2025-03-20 07:05:58.861 2025-03-20 07:05:58.861 436345 14280 1 0 15084 2025-03-20 06:59:57.891 2025-03-20 06:59:57.891 436345 19193 1 0 15085 2025-03-20 08:07:50.064 2025-03-20 08:07:50.064 436345 19581 2 0 15086 2025-03-20 07:05:58.685 2025-03-20 07:05:58.685 436345 20099 0 0 15087 2025-03-20 07:05:58.685 2025-03-20 07:05:58.685 436345 21233 1 0 15088 2025-03-20 07:00:16.082 2025-03-20 07:00:16.082 436346 21666 1 0 15089 2025-03-20 07:02:24.201 2025-03-20 07:02:24.201 436347 3745 1 0 15090 2025-03-20 09:30:38.883 2025-03-20 09:30:38.883 436347 17710 1 0 15091 2025-03-20 09:30:38.883 2025-03-20 09:30:38.883 436347 18426 9 0 15092 2025-03-20 07:06:14.077 2025-03-20 07:06:14.077 436348 750 0 100 15093 2025-03-20 07:02:33.495 2025-03-20 07:02:33.495 436349 651 1 0 15094 2025-03-20 07:02:47.255 2025-03-20 07:02:47.255 436350 3506 1 0 15095 2025-03-20 07:03:45.056 2025-03-20 07:03:45.056 436351 1354 1 0 15096 2025-03-20 12:39:20.194 2025-03-20 12:39:20.194 436351 8729 19 0 15097 2025-03-20 12:39:20.194 2025-03-20 12:39:20.194 436351 9339 2 0 15098 2025-03-20 07:16:01.892 2025-03-20 07:16:01.892 436352 4654 0 0 15099 2025-03-20 07:16:01.892 2025-03-20 07:16:01.892 436352 6058 3 0 15100 2025-03-20 07:04:49.889 2025-03-20 07:04:49.889 436352 6382 1 0 15101 2025-03-20 07:07:42.648 2025-03-20 07:07:42.648 436353 1092 3 0 15102 2025-03-20 07:20:47.181 2025-03-20 07:20:47.181 436353 1652 4 0 15103 2025-03-20 07:07:47.248 2025-03-20 07:07:47.248 436353 1717 243 0 15104 2025-03-20 07:07:47.248 2025-03-20 07:07:47.248 436353 5597 27 0 15105 2025-03-20 07:20:47.181 2025-03-20 07:20:47.181 436353 11897 36 0 15106 2025-03-20 07:05:00.888 2025-03-20 07:05:00.888 436353 16556 1 0 15107 2025-03-20 07:07:42.648 2025-03-20 07:07:42.648 436353 21131 27 0 15108 2025-03-20 07:07:03.818 2025-03-20 07:07:03.818 436354 10818 1 0 15109 2025-03-20 09:50:12.079 2025-03-20 09:50:12.079 436355 651 9 0 15110 2025-03-20 11:35:30.854 2025-03-20 11:35:30.854 436355 695 2 0 15111 2025-03-20 11:35:30.854 2025-03-20 11:35:30.854 436355 1142 19 0 15112 2025-03-20 07:32:33.438 2025-03-20 07:32:33.438 436355 9242 2 0 15113 2025-03-20 07:13:55.901 2025-03-20 07:13:55.901 436355 11498 15 0 15114 2025-03-20 07:07:18.025 2025-03-20 07:07:18.025 436355 13854 21 0 15115 2025-03-20 07:13:55.901 2025-03-20 07:13:55.901 436355 18069 135 0 15116 2025-03-20 07:32:33.438 2025-03-20 07:32:33.438 436355 18351 19 0 15117 2025-03-20 09:50:12.079 2025-03-20 09:50:12.079 436355 20117 1 0 15118 2025-03-20 07:17:20.597 2025-03-20 07:17:21.85 436356 782 10 0 15119 2025-03-20 07:17:21.54 2025-03-20 07:17:21.54 436356 1726 1 0 15120 2025-03-20 07:17:21.85 2025-03-20 07:17:21.85 436356 2844 9 0 15121 2025-03-20 07:17:21.279 2025-03-20 07:17:21.279 436356 10342 9 0 15122 2025-03-20 07:17:21.168 2025-03-20 07:17:21.168 436356 12102 1 0 15123 2025-03-20 07:07:38.24 2025-03-20 07:07:38.24 436356 14657 1 0 15124 2025-03-20 07:17:20.597 2025-03-20 07:17:20.597 436356 16704 1 0 15125 2025-03-20 07:17:21.54 2025-03-20 07:17:21.54 436356 18368 9 0 15126 2025-03-20 07:17:21.168 2025-03-20 07:17:21.168 436356 19806 9 0 15127 2025-03-20 07:17:21.279 2025-03-20 07:17:21.279 436356 20023 1 0 15128 2025-03-20 10:59:26.201 2025-03-20 10:59:26.201 436357 11298 0 0 15129 2025-03-20 10:59:26.201 2025-03-20 10:59:26.201 436357 15091 1 0 15130 2025-03-20 07:07:47.659 2025-03-20 07:07:47.659 436357 21672 1 0 15131 2025-03-20 10:41:39.72 2025-03-20 10:41:39.72 436358 5455 2 0 15132 2025-03-20 07:09:14.668 2025-03-20 07:09:14.668 436358 9476 3 0 15133 2025-03-20 10:41:39.72 2025-03-20 10:41:39.72 436358 11999 19 0 15134 2025-03-20 07:08:27.906 2025-03-20 07:08:27.906 436358 12072 1 0 15135 2025-03-20 07:09:14.668 2025-03-20 07:09:14.668 436358 18449 0 0 15136 2025-03-20 07:12:39.148 2025-03-20 07:12:39.148 436359 782 1 0 15137 2025-03-20 07:12:38.95 2025-03-20 07:12:38.95 436359 1162 0 0 15138 2025-03-20 07:12:39.148 2025-03-20 07:12:39.148 436359 1352 0 0 15139 2025-03-20 07:12:38.95 2025-03-20 07:12:38.95 436359 1512 1 0 15140 2025-03-20 07:12:35.613 2025-03-20 07:12:35.613 436359 1603 0 0 15141 2025-03-20 07:12:37.361 2025-03-20 07:12:37.361 436359 1658 1 0 15142 2025-03-20 07:12:38.768 2025-03-20 07:12:38.768 436359 1718 0 0 15143 2025-03-20 07:12:35.825 2025-03-20 07:12:35.825 436359 2056 0 0 15144 2025-03-20 07:12:36.531 2025-03-20 07:12:36.531 436359 2513 1 0 15145 2025-03-20 07:12:36.756 2025-03-20 07:12:36.756 436359 5085 0 0 15146 2025-03-20 07:12:27.14 2025-03-20 07:12:27.14 436359 5637 0 0 15147 2025-03-20 07:12:37.636 2025-03-20 07:12:37.636 436359 5757 0 0 15148 2025-03-20 07:12:37.159 2025-03-20 07:12:37.159 436359 6148 0 0 15149 2025-03-20 07:12:35.322 2025-03-20 07:12:35.322 436359 6653 0 0 15150 2025-03-20 07:12:38.768 2025-03-20 07:12:38.768 436359 7119 1 0 15151 2025-03-20 07:12:36.019 2025-03-20 07:12:36.019 436359 7583 0 0 15152 2025-03-20 07:12:26.696 2025-03-20 07:12:26.696 436359 7818 1 0 15153 2025-03-20 07:12:26.696 2025-03-20 07:12:26.696 436359 9330 0 0 15154 2025-03-20 07:12:35.613 2025-03-20 07:12:35.613 436359 9331 1 0 15155 2025-03-20 07:12:35.825 2025-03-20 07:12:35.825 436359 9337 1 0 15156 2025-03-20 07:12:36.312 2025-03-20 07:12:36.312 436359 9349 1 0 15157 2025-03-20 07:12:35.433 2025-03-20 07:12:35.433 436359 9921 0 0 15158 2025-03-20 07:12:36.312 2025-03-20 07:12:36.312 436359 11648 0 0 15159 2025-03-20 07:12:34.908 2025-03-20 07:12:34.908 436359 13097 1 0 15160 2025-03-20 07:12:37.159 2025-03-20 07:12:37.159 436359 15510 1 0 15161 2025-03-20 07:12:35.089 2025-03-20 07:12:35.089 436359 16354 1 0 15162 2025-03-20 07:12:37.636 2025-03-20 07:12:37.636 436359 16684 1 0 15163 2025-03-20 07:12:26.299 2025-03-20 07:12:26.299 436359 16769 1 0 15164 2025-03-20 07:12:27.14 2025-03-20 07:12:27.14 436359 16970 1 0 15165 2025-03-20 07:12:26.911 2025-03-20 07:12:26.911 436359 17095 1 0 15166 2025-03-20 07:12:35.089 2025-03-20 07:12:35.089 436359 17103 0 0 15167 2025-03-20 07:12:37.361 2025-03-20 07:12:37.361 436359 17201 0 0 15168 2025-03-20 07:12:36.756 2025-03-20 07:12:36.756 436359 17275 1 0 15169 2025-03-20 07:12:35.433 2025-03-20 07:12:35.433 436359 17316 1 0 15170 2025-03-20 07:12:36.019 2025-03-20 07:12:36.019 436359 18772 1 0 15171 2025-03-20 07:12:26.299 2025-03-20 07:12:26.299 436359 20616 0 0 15172 2025-03-20 07:12:26.911 2025-03-20 07:12:26.911 436359 20646 0 0 15173 2025-03-20 07:12:36.531 2025-03-20 07:12:36.531 436359 21067 0 0 15174 2025-03-20 07:12:34.908 2025-03-20 07:12:34.908 436359 21116 0 0 15175 2025-03-20 07:09:22.323 2025-03-20 07:09:22.323 436359 21296 1 0 15176 2025-03-20 07:12:35.322 2025-03-20 07:12:35.322 436359 21555 1 0 15177 2025-03-20 07:12:19.796 2025-03-20 07:12:19.796 436360 9537 1 0 15178 2025-03-20 08:43:03.084 2025-03-20 08:43:03.084 436361 1320 27 0 15179 2025-03-20 08:43:03.084 2025-03-20 08:43:03.084 436361 2773 3 0 15180 2025-03-20 07:12:25.486 2025-03-20 07:12:25.486 436361 6393 1 0 15181 2025-03-20 11:23:29.314 2025-03-20 11:23:29.314 436361 13566 2 0 15182 2025-03-20 11:23:29.314 2025-03-20 11:23:29.314 436361 16966 19 0 15183 2025-03-20 07:17:48.562 2025-03-20 07:17:48.562 436362 1209 9 0 15184 2025-03-20 07:17:50.096 2025-03-20 07:17:50.096 436362 1310 9 0 15185 2025-03-20 07:23:19.836 2025-03-20 07:23:19.836 436362 1596 1 0 15186 2025-03-20 07:12:51.325 2025-03-20 07:12:51.325 436362 2593 9 0 15187 2025-03-20 07:23:18.167 2025-03-20 07:23:18.167 436362 2776 1 0 15188 2025-03-20 07:17:49.409 2025-03-20 07:17:49.409 436362 2952 9 0 15189 2025-03-20 07:23:18.483 2025-03-20 07:23:18.483 436362 7903 1 0 15190 2025-03-20 07:17:50.096 2025-03-20 07:17:50.096 436362 8448 1 0 15191 2025-03-20 07:12:39.33 2025-03-20 07:12:39.33 436362 12749 100 0 15192 2025-03-20 07:23:19.962 2025-03-20 07:23:19.962 436362 15336 1 0 15193 2025-03-20 07:17:48.85 2025-03-20 07:17:48.85 436362 15762 1 0 15194 2025-03-20 07:17:48.85 2025-03-20 07:17:48.85 436362 17541 9 0 15195 2025-03-20 07:23:18.796 2025-03-20 07:23:18.796 436362 18101 1 0 15196 2025-03-20 07:23:18.167 2025-03-20 07:23:18.167 436362 18231 9 0 15197 2025-03-20 07:17:48.562 2025-03-20 07:17:48.562 436362 19796 1 0 15198 2025-03-20 07:23:18.483 2025-03-20 07:23:18.483 436362 20019 9 0 15199 2025-03-20 07:17:49.409 2025-03-20 07:17:49.409 436362 20755 1 0 15200 2025-03-20 07:23:18.796 2025-03-20 07:23:18.796 436362 21091 9 0 15201 2025-03-20 07:12:51.325 2025-03-20 07:12:51.325 436362 21408 1 0 15202 2025-03-20 07:23:19.962 2025-03-20 07:23:19.962 436362 21442 9 0 15203 2025-03-20 07:23:19.836 2025-03-20 07:23:19.836 436362 21797 9 0 15204 2025-03-20 07:23:21.478 2025-03-20 07:23:21.478 436363 805 2 0 15205 2025-03-20 08:14:48.175 2025-03-20 08:14:48.175 436363 4250 2 0 15206 2025-03-20 08:14:48.175 2025-03-20 08:14:48.175 436363 12921 19 0 15207 2025-03-20 07:12:53.132 2025-03-20 07:12:53.132 436363 20059 10 0 15208 2025-03-20 07:23:21.478 2025-03-20 07:23:21.478 436363 20864 0 0 15209 2025-03-20 08:49:11.435 2025-03-20 08:49:11.435 436364 673 1 0 15210 2025-03-20 07:18:45.228 2025-03-20 07:18:45.228 436364 678 2 0 15211 2025-03-20 08:14:42.974 2025-03-20 08:14:42.974 436364 803 2 0 15212 2025-03-20 07:38:13.34 2025-03-20 07:38:13.34 436364 882 1 0 15213 2025-03-20 08:14:42.974 2025-03-20 08:14:42.974 436364 5646 19 0 15214 2025-03-20 08:07:35.125 2025-03-20 08:07:35.125 436364 8376 2 0 15215 2025-03-20 08:49:11.435 2025-03-20 08:49:11.435 436364 11145 9 0 15216 2025-03-20 08:07:35.125 2025-03-20 08:07:35.125 436364 15367 19 0 15217 2025-03-20 07:38:13.34 2025-03-20 07:38:13.34 436364 16788 6 0 15218 2025-03-20 07:18:45.228 2025-03-20 07:18:45.228 436364 17082 19 0 15219 2025-03-20 07:14:02.413 2025-03-20 07:14:02.413 436364 17106 10 0 15220 2025-03-20 07:16:31.101 2025-03-20 07:16:31.101 436365 15463 3 0 15221 2025-03-20 07:14:05.151 2025-03-20 07:14:05.151 436365 17552 1 0 15222 2025-03-20 07:16:31.101 2025-03-20 07:16:31.101 436365 18116 0 0 15223 2025-03-20 08:07:49.695 2025-03-20 08:07:49.695 436366 1825 19 0 15224 2025-03-20 08:07:49.695 2025-03-20 08:07:49.695 436366 2123 2 0 15225 2025-03-20 07:14:35.538 2025-03-20 07:14:35.538 436366 16998 1 0 15226 2025-03-20 07:14:50.8 2025-03-20 07:14:50.8 436367 6268 1 0 15227 2025-03-20 08:25:10.267 2025-03-20 08:25:10.267 436367 8841 1 0 15228 2025-03-20 08:25:10.267 2025-03-20 08:25:10.267 436367 16830 9 0 15229 2025-03-20 07:15:49.796 2025-03-20 07:15:49.796 436368 5497 1 0 15230 2025-03-20 08:40:52.108 2025-03-20 08:40:52.108 436368 6160 9 0 15231 2025-03-20 08:40:52.108 2025-03-20 08:40:52.108 436368 7583 1 0 15232 2025-03-20 07:24:20.061 2025-03-20 07:24:20.061 436369 2431 9 0 15233 2025-03-20 07:24:20.061 2025-03-20 07:24:20.061 436369 7185 1 0 15234 2025-03-20 08:02:09.245 2025-03-20 08:02:09.245 436369 9916 8 0 15235 2025-03-20 07:24:19.865 2025-03-20 07:24:19.865 436369 14449 1 0 15236 2025-03-20 07:17:11.204 2025-03-20 07:17:11.204 436369 14489 1 0 15237 2025-03-20 08:02:09.245 2025-03-20 08:02:09.245 436369 18630 1 0 15238 2025-03-20 08:02:09.052 2025-03-20 08:02:09.052 436369 19332 0 0 15239 2025-03-20 08:02:09.052 2025-03-20 08:02:09.052 436369 20871 1 0 15240 2025-03-20 07:24:19.865 2025-03-20 07:24:19.865 436369 21501 9 0 15241 2025-03-20 07:18:02.52 2025-03-20 07:18:02.52 436370 15160 1 0 15242 2025-03-20 07:18:58.51 2025-03-20 07:18:58.51 436371 805 1 0 15243 2025-03-20 07:19:03.404 2025-03-20 07:19:03.404 436372 5359 1 0 15244 2025-03-20 08:35:40.054 2025-03-20 08:35:40.054 436372 5870 9 0 15245 2025-03-20 08:35:40.054 2025-03-20 08:35:40.054 436372 16965 1 0 15246 2025-03-20 08:08:20.076 2025-03-20 08:08:20.076 436372 19943 1 0 15247 2025-03-20 08:08:20.076 2025-03-20 08:08:20.076 436372 20655 0 0 15248 2025-03-20 07:23:24.812 2025-03-20 07:23:24.812 436373 700 243 0 15249 2025-03-20 07:21:20.906 2025-03-20 07:21:20.906 436373 716 1 0 15250 2025-03-20 07:23:24.209 2025-03-20 07:23:24.209 436373 919 3 0 15251 2025-03-20 07:23:24.209 2025-03-20 07:23:24.209 436373 14449 27 0 15252 2025-03-20 07:23:24.812 2025-03-20 07:23:24.812 436373 16695 27 0 15253 2025-03-20 07:22:20.745 2025-03-20 07:22:20.745 436374 1489 1 0 15254 2025-03-20 08:27:15.423 2025-03-20 08:27:15.423 436374 11750 1 0 15255 2025-03-20 07:22:45.314 2025-03-20 07:22:45.314 436374 21212 0 0 15256 2025-03-20 08:27:15.423 2025-03-20 08:27:15.423 436374 21522 9 0 15257 2025-03-20 07:25:36.872 2025-03-20 07:25:36.872 436375 15491 9 0 15258 2025-03-20 07:25:36.872 2025-03-20 07:25:36.872 436375 16348 1 0 15259 2025-03-20 07:23:16.417 2025-03-20 07:23:16.417 436375 20616 1 0 15260 2025-03-20 07:34:35.026 2025-03-20 07:34:35.026 436376 10352 19 0 15261 2025-03-20 07:23:38.229 2025-03-20 07:23:38.229 436376 11609 1 0 15262 2025-03-20 07:34:35.026 2025-03-20 07:34:35.026 436376 14905 2 0 15263 2025-03-20 08:23:32.338 2025-03-20 08:23:32.338 436376 17082 9 0 15264 2025-03-20 08:23:32.338 2025-03-20 08:23:32.338 436376 18468 1 0 15265 2025-03-20 09:33:50.257 2025-03-20 09:33:50.257 436377 667 36 0 15266 2025-03-20 08:01:59.964 2025-03-20 08:01:59.964 436377 1092 1 0 15267 2025-03-20 08:01:59.721 2025-03-20 08:01:59.721 436377 2519 1 0 15268 2025-03-20 08:01:59.721 2025-03-20 08:01:59.721 436377 5128 0 0 15269 2025-03-20 08:01:59.964 2025-03-20 08:01:59.964 436377 6578 8 0 15270 2025-03-20 07:24:16.671 2025-03-20 07:24:16.671 436377 16230 1 0 15271 2025-03-20 09:33:50.257 2025-03-20 09:33:50.257 436377 16830 4 0 15272 2025-03-20 07:24:40.341 2025-03-20 07:24:40.341 436378 10013 10 0 15273 2025-03-20 10:40:36.237 2025-03-20 10:40:36.237 436379 1008 19 0 15274 2025-03-20 07:25:50.231 2025-03-20 07:25:50.231 436379 13198 1 0 15275 2025-03-20 10:40:36.237 2025-03-20 10:40:36.237 436379 21048 2 0 15276 2025-03-20 09:56:13.21 2025-03-20 09:56:13.21 436380 5578 23 0 15277 2025-03-20 07:25:56.278 2025-03-20 07:25:56.278 436380 7760 1 0 15278 2025-03-20 09:56:13.21 2025-03-20 09:56:13.21 436380 20840 3 0 15279 2025-03-20 07:31:35.797 2025-03-20 07:31:35.797 436381 27 9 0 15280 2025-03-20 07:31:35.797 2025-03-20 07:31:35.797 436381 11938 1 0 15281 2025-03-20 07:26:02.623 2025-03-20 07:26:02.623 436381 12911 1 0 15282 2025-03-20 07:31:35.05 2025-03-20 07:31:35.05 436381 16347 1 0 15283 2025-03-20 07:31:35.05 2025-03-20 07:31:35.05 436381 21332 9 0 15284 2025-03-20 08:12:23.714 2025-03-20 08:12:23.714 436382 27 19 0 15285 2025-03-20 09:44:34.266 2025-03-20 09:44:34.266 436382 6361 19 0 15286 2025-03-20 08:12:23.714 2025-03-20 08:12:23.714 436382 6777 2 0 15287 2025-03-20 09:44:34.266 2025-03-20 09:44:34.266 436382 18351 2 0 15288 2025-03-20 07:28:06.284 2025-03-20 07:28:06.284 436382 19992 100 0 15289 2025-03-20 10:42:50.961 2025-03-20 10:42:50.961 436383 1552 19 0 15290 2025-03-20 10:42:50.961 2025-03-20 10:42:50.961 436383 11829 2 0 15291 2025-03-20 07:30:19.238 2025-03-20 07:30:19.238 436383 11885 1 0 15292 2025-03-20 10:19:59.317 2025-03-20 10:19:59.317 436384 994 90 0 15293 2025-03-20 08:08:06.383 2025-03-20 08:08:06.383 436384 7916 1 0 15294 2025-03-20 07:30:20.458 2025-03-20 07:30:20.458 436384 9669 1 0 15295 2025-03-20 08:35:01.934 2025-03-20 08:35:01.934 436384 17316 1 0 15296 2025-03-20 08:35:01.934 2025-03-20 08:35:01.934 436384 17798 9 0 15297 2025-03-20 10:19:59.317 2025-03-20 10:19:59.317 436384 20674 10 0 15298 2025-03-20 08:08:06.383 2025-03-20 08:08:06.383 436384 21214 0 0 15299 2025-03-20 07:32:10.556 2025-03-20 07:32:10.556 436385 2640 0 0 15300 2025-03-20 07:31:12.245 2025-03-20 07:31:12.245 436385 4238 21 0 15301 2025-03-20 08:48:41.903 2025-03-20 08:48:41.903 436385 12368 9 0 15302 2025-03-20 08:10:48.327 2025-03-20 08:10:48.327 436385 12490 2 0 15303 2025-03-20 08:10:48.327 2025-03-20 08:10:48.327 436385 20409 19 0 15304 2025-03-20 08:48:41.903 2025-03-20 08:48:41.903 436385 21088 1 0 15305 2025-03-20 07:34:16.704 2025-03-20 07:34:16.704 436386 621 1 0 15306 2025-03-20 07:31:32.888 2025-03-20 07:31:32.888 436386 17824 1 0 15307 2025-03-20 07:34:16.704 2025-03-20 07:34:16.704 436386 20058 9 0 15308 2025-03-20 07:36:22.196 2025-03-20 07:36:22.196 436388 5870 1 0 15309 2025-03-20 07:37:43.323 2025-03-20 07:37:43.323 436389 8713 1 0 15310 2025-03-20 07:39:38.358 2025-03-20 07:39:38.358 436390 16858 98 0 15311 2025-03-20 07:42:10.322 2025-03-20 07:42:10.322 436391 1130 27 0 15312 2025-03-20 08:38:07.692 2025-03-20 08:38:07.692 436391 11648 30 0 15313 2025-03-20 07:42:10.322 2025-03-20 07:42:10.322 436391 13177 3 0 15314 2025-03-20 08:38:07.692 2025-03-20 08:38:07.692 436391 21600 3 0 15315 2025-03-20 07:39:58.083 2025-03-20 07:39:58.083 436391 21710 1 0 15316 2025-03-20 09:32:39.62 2025-03-20 09:32:39.62 436392 11515 9 0 15317 2025-03-20 09:48:04.275 2025-03-20 09:48:04.275 436392 15526 19 0 15318 2025-03-20 07:41:01.23 2025-03-20 07:41:01.23 436392 18231 1 0 15319 2025-03-20 09:32:39.62 2025-03-20 09:32:39.62 436392 21218 1 0 15320 2025-03-20 09:48:04.275 2025-03-20 09:48:04.275 436392 21412 2 0 15321 2025-03-20 08:02:04.493 2025-03-20 08:02:04.493 436393 1039 0 0 15322 2025-03-20 08:02:04.493 2025-03-20 08:02:04.493 436393 2322 1 0 15323 2025-03-20 07:41:55.497 2025-03-20 07:41:55.497 436393 9496 1 0 15324 2025-03-20 08:02:04.679 2025-03-20 08:02:04.679 436393 9845 1 0 15325 2025-03-20 08:02:04.679 2025-03-20 08:02:04.679 436393 15115 8 0 15326 2025-03-20 11:23:49.592 2025-03-20 11:23:49.592 436394 680 2 0 15327 2025-03-20 08:50:44.324 2025-03-20 08:50:44.324 436394 986 1 0 15328 2025-03-20 11:23:48.972 2025-03-20 11:23:48.972 436394 1298 2 0 15329 2025-03-20 08:50:44.359 2025-03-20 08:50:44.359 436394 1352 8 0 15330 2025-03-20 11:23:49.364 2025-03-20 11:23:49.364 436394 1881 19 0 15331 2025-03-20 08:50:44.359 2025-03-20 08:50:44.359 436394 3396 1 0 15332 2025-03-20 08:50:45.208 2025-03-20 08:50:45.208 436394 4115 9 0 15333 2025-03-20 08:15:47.017 2025-03-20 08:15:47.017 436394 7891 12 0 15334 2025-03-20 11:23:48.749 2025-03-20 11:23:48.749 436394 11897 2 0 15335 2025-03-20 08:50:45.208 2025-03-20 08:50:45.208 436394 11938 81 0 15336 2025-03-20 08:50:44.324 2025-03-20 08:50:44.324 436394 14225 0 0 15337 2025-03-20 11:23:49.592 2025-03-20 11:23:49.592 436394 14404 19 0 15338 2025-03-20 11:23:48.972 2025-03-20 11:23:48.972 436394 15148 19 0 15339 2025-03-20 07:42:17.785 2025-03-20 07:42:17.785 436394 15662 10 0 15340 2025-03-20 11:23:49.205 2025-03-20 11:23:49.205 436394 15690 19 0 15341 2025-03-20 08:15:47.017 2025-03-20 08:15:47.017 436394 16948 109 0 15342 2025-03-20 11:23:49.205 2025-03-20 11:23:49.205 436394 21079 2 0 15343 2025-03-20 11:23:49.364 2025-03-20 11:23:49.364 436394 21275 2 0 15344 2025-03-20 11:23:48.749 2025-03-20 11:23:48.749 436394 21577 19 0 15345 2025-03-20 11:40:41.833 2025-03-20 11:40:41.833 436395 635 19 0 15346 2025-03-20 07:42:52.497 2025-03-20 07:42:52.497 436395 5522 1 0 15347 2025-03-20 11:40:41.833 2025-03-20 11:40:41.833 436395 9332 2 0 15348 2025-03-20 09:32:09.238 2025-03-20 09:32:09.238 436395 19980 1 0 15349 2025-03-20 07:51:43.007 2025-03-20 07:51:43.007 436395 21238 27 0 15350 2025-03-20 07:51:43.007 2025-03-20 07:51:43.007 436395 21369 3 0 15351 2025-03-20 09:32:09.238 2025-03-20 09:32:09.238 436395 21430 9 0 15352 2025-03-20 08:24:00.213 2025-03-20 08:24:00.213 436396 666 2 0 15353 2025-03-20 08:24:00.213 2025-03-20 08:24:00.213 436396 1195 21 0 15354 2025-03-20 08:24:00.093 2025-03-20 08:24:00.093 436396 15662 41 0 15355 2025-03-20 08:24:00.093 2025-03-20 08:24:00.093 436396 17103 5 0 15356 2025-03-20 09:32:49.097 2025-03-20 09:32:49.097 436396 17331 1 0 15357 2025-03-20 09:32:49.097 2025-03-20 09:32:49.097 436396 20094 9 0 15358 2025-03-20 07:43:17.271 2025-03-20 07:43:17.271 436396 21427 1 0 15359 2025-03-20 07:43:22.773 2025-03-20 07:43:22.773 436397 1825 100 0 15360 2025-03-20 09:05:13.729 2025-03-20 09:05:13.729 436397 4118 0 0 15361 2025-03-20 07:48:11.502 2025-03-20 07:48:11.502 436397 7760 0 0 15362 2025-03-20 09:05:13.729 2025-03-20 09:05:13.729 436397 10821 1 0 15363 2025-03-20 09:05:14.594 2025-03-20 09:05:14.594 436397 12245 9 0 15364 2025-03-20 09:05:13.983 2025-03-20 09:05:13.983 436397 12911 1 0 15365 2025-03-20 09:05:14.594 2025-03-20 09:05:14.594 436397 15728 81 0 15366 2025-03-20 09:05:13.983 2025-03-20 09:05:13.983 436397 21218 8 0 15367 2025-03-20 07:48:54.323 2025-03-20 07:48:54.323 436398 1740 9 0 15368 2025-03-20 07:48:53.895 2025-03-20 07:48:53.895 436398 2437 9 0 15369 2025-03-20 07:48:55.466 2025-03-20 07:48:55.466 436398 3456 1 0 15370 2025-03-20 07:48:55.09 2025-03-20 07:48:55.09 436398 9611 1 0 15371 2025-03-20 07:48:54.323 2025-03-20 07:48:54.323 436398 13217 1 0 15372 2025-03-20 07:48:54.703 2025-03-20 07:48:54.703 436398 15200 9 0 15373 2025-03-20 07:48:55.09 2025-03-20 07:48:55.09 436398 16284 9 0 15374 2025-03-20 07:43:47.977 2025-03-20 07:43:47.977 436398 16769 1 0 15375 2025-03-20 07:48:55.466 2025-03-20 07:48:55.466 436398 19199 9 0 15376 2025-03-20 07:48:54.703 2025-03-20 07:48:54.703 436398 20254 1 0 15377 2025-03-20 07:48:53.895 2025-03-20 07:48:53.895 436398 20756 1 0 15378 2025-03-20 07:45:39.032 2025-03-20 07:45:39.032 436399 1173 1 0 15379 2025-03-20 07:48:55.481 2025-03-20 07:48:55.481 436399 9184 2 0 15380 2025-03-20 07:48:55.481 2025-03-20 07:48:55.481 436399 11477 19 0 15381 2025-03-20 08:10:41.837 2025-03-20 08:10:41.837 436400 794 4 0 15382 2025-03-20 08:10:41.837 2025-03-20 08:10:41.837 436400 16432 36 0 15383 2025-03-20 07:46:21.808 2025-03-20 07:46:21.808 436400 20504 100 0 15384 2025-03-20 07:49:07.735 2025-03-20 07:49:07.735 436401 5775 3 0 15385 2025-03-20 07:48:25.357 2025-03-20 07:48:25.357 436401 9695 1 0 15386 2025-03-20 07:49:07.735 2025-03-20 07:49:07.735 436401 11776 27 0 15387 2025-03-20 09:47:57.02 2025-03-20 09:47:57.02 436402 12346 2 0 15388 2025-03-20 07:48:57.413 2025-03-20 07:48:57.413 436402 15521 1 0 15389 2025-03-20 09:47:57.02 2025-03-20 09:47:57.02 436402 16562 19 0 15390 2025-03-20 07:48:57.63 2025-03-20 07:48:57.63 436403 21042 1 0 15391 2025-03-20 07:51:29.534 2025-03-20 07:51:29.534 436404 10060 5 0 15392 2025-03-20 07:51:29.534 2025-03-20 07:51:29.534 436404 18829 45 0 15393 2025-03-20 07:50:11.77 2025-03-20 07:50:11.77 436404 19394 1 0 15394 2025-03-20 07:50:12.474 2025-03-20 07:50:12.474 436405 21832 5 0 15395 2025-03-20 08:07:30.949 2025-03-20 08:07:30.949 436406 2829 2 0 15396 2025-03-20 07:51:15.89 2025-03-20 07:51:15.89 436406 8506 10 0 15397 2025-03-20 08:07:30.949 2025-03-20 08:07:30.949 436406 15588 19 0 15398 2025-03-20 07:52:23.92 2025-03-20 07:52:23.92 436407 739 1 0 15399 2025-03-20 10:24:11.542 2025-03-20 10:24:11.542 436407 16638 1 0 15400 2025-03-20 10:24:11.542 2025-03-20 10:24:11.542 436407 19930 9 0 15401 2025-03-20 07:54:07.654 2025-03-20 07:54:07.654 436408 17148 1 0 15402 2025-03-20 08:14:40.238 2025-03-20 08:14:40.238 436409 4166 5 0 15403 2025-03-20 07:54:39.207 2025-03-20 07:54:39.207 436409 15536 1 0 15404 2025-03-20 08:14:40.238 2025-03-20 08:14:40.238 436409 20901 1 0 15405 2025-03-20 08:40:22.87 2025-03-20 08:40:22.87 436410 837 1 0 15406 2025-03-20 08:40:22.87 2025-03-20 08:40:22.87 436410 5708 9 0 15407 2025-03-20 07:54:47.155 2025-03-20 07:54:47.155 436410 6191 1 0 15408 2025-03-20 07:57:53.487 2025-03-20 07:57:53.487 436411 2670 3 0 15409 2025-03-20 07:57:53.487 2025-03-20 07:57:53.487 436411 12609 27 0 15410 2025-03-20 07:56:48.464 2025-03-20 07:56:48.464 436411 14959 1 0 15411 2025-03-20 07:57:16.066 2025-03-20 07:57:16.066 436411 19198 0 0 15412 2025-03-20 08:48:55.978 2025-03-20 08:48:55.978 436412 802 9 0 15413 2025-03-20 08:11:50.879 2025-03-20 08:11:50.879 436412 999 0 0 15414 2025-03-20 08:25:14.368 2025-03-20 08:25:14.368 436412 1389 9 0 15415 2025-03-20 08:52:22.984 2025-03-20 08:52:22.984 436412 1411 1 0 15416 2025-03-20 09:58:25.423 2025-03-20 09:58:25.423 436412 4862 2 0 15417 2025-03-20 08:52:22.984 2025-03-20 08:52:22.984 436412 6526 5 0 15418 2025-03-20 09:58:25.423 2025-03-20 09:58:25.423 436412 16042 19 0 15419 2025-03-20 07:57:23.029 2025-03-20 07:57:23.029 436412 16753 1 0 15420 2025-03-20 08:49:51.675 2025-03-20 08:49:51.675 436412 20120 1 0 15421 2025-03-20 08:48:55.978 2025-03-20 08:48:55.978 436412 20439 1 0 15422 2025-03-20 08:25:14.368 2025-03-20 08:25:14.368 436412 21400 1 0 15423 2025-03-20 08:49:51.675 2025-03-20 08:49:51.675 436412 21480 5 0 15424 2025-03-20 08:11:50.879 2025-03-20 08:11:50.879 436412 21578 1 0 15425 2025-03-20 08:27:58.319 2025-03-20 08:27:58.319 436413 697 4 0 15426 2025-03-20 08:51:02.821 2025-03-20 08:51:02.821 436413 763 1 0 15427 2025-03-20 09:47:41 2025-03-20 09:47:41 436413 1298 2 0 15428 2025-03-20 08:06:40.511 2025-03-20 08:06:40.511 436413 1474 0 0 15429 2025-03-20 08:36:53.795 2025-03-20 08:36:53.795 436413 1490 3 0 15430 2025-03-20 08:36:54.009 2025-03-20 08:36:54.009 436413 1602 3 0 15431 2025-03-20 08:01:40.624 2025-03-20 08:01:40.624 436413 1814 10 0 15432 2025-03-20 08:51:02.593 2025-03-20 08:51:02.593 436413 2016 1 0 15433 2025-03-20 08:12:34.114 2025-03-20 08:12:34.114 436413 2156 8 0 15434 2025-03-20 08:14:24.044 2025-03-20 08:14:24.044 436413 2719 2 0 15435 2025-03-20 08:06:25.998 2025-03-20 08:06:25.998 436413 9906 19 0 15436 2025-03-20 08:06:25.998 2025-03-20 08:06:25.998 436413 11328 2 0 15437 2025-03-20 08:51:02.821 2025-03-20 08:51:02.821 436413 11443 8 0 15438 2025-03-20 08:36:53.795 2025-03-20 08:36:53.795 436413 11621 30 0 15439 2025-03-20 08:27:58.319 2025-03-20 08:27:58.319 436413 12368 36 0 15440 2025-03-20 08:14:24.044 2025-03-20 08:14:24.044 436413 13987 19 0 15441 2025-03-20 10:59:18.78 2025-03-20 10:59:18.78 436413 14650 2 0 15442 2025-03-20 08:51:02.593 2025-03-20 08:51:02.593 436413 15491 0 0 15443 2025-03-20 09:47:41 2025-03-20 09:47:41 436413 17221 19 0 15444 2025-03-20 07:59:38.664 2025-03-20 07:59:38.664 436413 18441 210 0 15445 2025-03-20 08:12:34.114 2025-03-20 08:12:34.114 436413 18901 75 0 15446 2025-03-20 08:01:40.624 2025-03-20 08:01:40.624 436413 19471 1 0 15447 2025-03-20 11:13:16.625 2025-03-20 11:13:16.625 436413 19842 9 0 15448 2025-03-20 08:36:54.009 2025-03-20 08:36:54.009 436413 21247 30 0 15449 2025-03-20 10:59:18.78 2025-03-20 10:59:18.78 436413 21639 19 0 15450 2025-03-20 11:13:16.625 2025-03-20 11:13:16.625 436413 21670 81 0 15451 2025-03-20 08:01:55.496 2025-03-20 08:01:55.496 436414 7674 1 0 15452 2025-03-20 08:05:33.749 2025-03-20 08:05:33.749 436415 959 1 0 15453 2025-03-20 08:09:09.265 2025-03-20 08:09:09.265 436415 17411 2 0 15454 2025-03-20 08:09:09.265 2025-03-20 08:09:09.265 436415 18188 19 0 15455 2025-03-20 08:06:02.8 2025-03-20 08:06:02.8 436416 746 1 0 15456 2025-03-20 08:13:22.244 2025-03-20 08:13:22.244 436417 659 75 0 15457 2025-03-20 10:08:01.387 2025-03-20 10:08:01.387 436417 1438 9 0 15458 2025-03-20 08:13:22.582 2025-03-20 08:13:22.582 436417 2609 17 0 15459 2025-03-20 08:13:22.244 2025-03-20 08:13:22.244 436417 2749 8 0 15460 2025-03-20 08:13:22.392 2025-03-20 08:13:22.392 436417 4292 8 0 15461 2025-03-20 08:33:06.301 2025-03-20 08:33:06.301 436417 11144 7 0 15462 2025-03-20 09:05:28.346 2025-03-20 09:05:28.346 436417 11716 1 0 15463 2025-03-20 09:05:28.558 2025-03-20 09:05:28.558 436417 12334 1 0 15464 2025-03-20 08:33:06.301 2025-03-20 08:33:06.301 436417 16660 1 0 15465 2025-03-20 09:05:28.346 2025-03-20 09:05:28.346 436417 19531 0 0 15466 2025-03-20 10:08:01.387 2025-03-20 10:08:01.387 436417 20577 1 0 15467 2025-03-20 09:05:28.558 2025-03-20 09:05:28.558 436417 21271 8 0 15468 2025-03-20 08:13:22.392 2025-03-20 08:13:22.582 436417 21523 224 0 15469 2025-03-20 08:07:46.908 2025-03-20 08:07:46.908 436418 21291 1 0 15470 2025-03-20 08:10:25.981 2025-03-20 08:10:25.981 436419 1439 2 0 15471 2025-03-20 08:10:25.981 2025-03-20 08:10:25.981 436419 1960 19 0 15472 2025-03-20 08:08:07.564 2025-03-20 08:08:07.564 436419 16387 1 0 15473 2025-03-20 08:10:26.52 2025-03-20 08:10:26.52 436420 4378 2 0 15474 2025-03-20 08:10:26.52 2025-03-20 08:10:26.52 436420 13767 19 0 15475 2025-03-20 08:08:17.726 2025-03-20 08:08:17.726 436420 21532 21 0 15476 2025-03-20 08:08:37.971 2025-03-20 08:08:37.971 436421 19813 1 0 15477 2025-03-20 08:08:48.828 2025-03-20 08:08:48.828 436422 20254 1 0 15478 2025-03-20 08:09:06.261 2025-03-20 08:09:06.261 436423 16680 1 0 15479 2025-03-20 08:35:15.003 2025-03-20 08:35:15.003 436424 10719 3 0 15480 2025-03-20 08:35:14.757 2025-03-20 08:35:14.757 436424 12774 30 0 15481 2025-03-20 08:35:15.186 2025-03-20 08:35:15.186 436424 13217 3 0 15482 2025-03-20 08:35:14.757 2025-03-20 08:35:14.757 436424 14452 3 0 15483 2025-03-20 08:35:15.186 2025-03-20 08:35:15.186 436424 17041 30 0 15484 2025-03-20 08:09:49.201 2025-03-20 08:09:49.201 436424 21019 1 0 15485 2025-03-20 08:35:15.003 2025-03-20 08:35:15.003 436424 21710 30 0 15486 2025-03-20 08:28:32.904 2025-03-20 08:28:32.904 436425 956 1 0 15487 2025-03-20 08:11:36.185 2025-03-20 08:11:36.185 436425 17533 75 0 15488 2025-03-20 08:11:36.185 2025-03-20 08:11:36.185 436425 20680 8 0 15489 2025-03-20 08:10:01.396 2025-03-20 08:10:01.396 436425 20751 1 0 15490 2025-03-20 08:28:32.904 2025-03-20 08:28:32.904 436425 21014 9 0 15491 2025-03-20 09:26:51.43 2025-03-20 09:26:51.43 436426 959 1 0 15492 2025-03-20 08:27:32.434 2025-03-20 08:27:32.434 436426 2326 9 0 15493 2025-03-20 08:27:32.434 2025-03-20 08:27:32.434 436426 9364 1 0 15494 2025-03-20 09:26:51.43 2025-03-20 09:26:51.43 436426 12222 9 0 15495 2025-03-20 08:10:27.637 2025-03-20 08:10:27.637 436426 20817 1 0 15496 2025-03-20 08:11:29.242 2025-03-20 08:11:29.242 436427 20655 1 0 15497 2025-03-20 08:11:56.385 2025-03-20 08:11:56.385 436428 5495 1 0 15498 2025-03-20 08:12:17.226 2025-03-20 08:12:17.226 436429 1772 100 0 15499 2025-03-20 08:26:13.521 2025-03-20 08:26:13.521 436430 2537 2 0 15500 2025-03-20 08:12:20.032 2025-03-20 08:12:20.032 436430 18731 1 0 15501 2025-03-20 08:26:13.521 2025-03-20 08:26:13.521 436430 21180 19 0 15502 2025-03-20 08:13:43.917 2025-03-20 08:13:43.917 436431 8287 10 0 15503 2025-03-20 08:14:24.846 2025-03-20 08:14:24.846 436432 9084 1 0 15504 2025-03-20 09:25:58.354 2025-03-20 09:25:58.354 436433 1985 0 0 15505 2025-03-20 09:25:57.613 2025-03-20 09:25:57.613 436433 2206 1 0 15506 2025-03-20 09:25:58.354 2025-03-20 09:25:58.354 436433 2326 1 0 15507 2025-03-20 09:25:57.045 2025-03-20 09:25:57.045 436433 9669 0 0 15508 2025-03-20 09:25:57.045 2025-03-20 09:25:57.045 436433 11158 1 0 15509 2025-03-20 09:25:57.613 2025-03-20 09:25:57.613 436433 18351 0 0 15510 2025-03-20 09:25:56.482 2025-03-20 09:25:56.482 436433 20775 0 0 15511 2025-03-20 08:14:33.518 2025-03-20 08:14:33.518 436433 21048 1 0 15512 2025-03-20 09:25:56.482 2025-03-20 09:25:56.482 436433 21242 1 0 15513 2025-03-20 09:25:57.242 2025-03-20 09:25:57.242 436433 21734 1 0 15514 2025-03-20 09:25:57.242 2025-03-20 09:25:57.242 436433 21829 0 0 15515 2025-03-20 11:23:57.5 2025-03-20 11:23:57.5 436434 2039 1 0 15516 2025-03-20 11:23:57.5 2025-03-20 11:23:57.5 436434 17316 9 0 15517 2025-03-20 08:15:41.909 2025-03-20 08:15:41.909 436434 18269 1 0 15518 2025-03-20 09:23:44.735 2025-03-20 09:23:44.735 436435 627 4 0 15519 2025-03-20 08:43:03.079 2025-03-20 08:43:03.079 436435 4313 1 0 15520 2025-03-20 08:15:47.566 2025-03-20 08:15:47.566 436435 11275 1 0 15521 2025-03-20 09:23:44.735 2025-03-20 09:23:44.735 436435 12911 38 0 15522 2025-03-20 08:43:03.079 2025-03-20 08:43:03.079 436435 17638 6 0 15523 2025-03-20 08:16:08.368 2025-03-20 08:16:08.368 436436 17533 1 0 15524 2025-03-20 08:20:19.827 2025-03-20 08:20:19.827 436437 616 2 0 15525 2025-03-20 08:20:15.944 2025-03-20 08:20:15.944 436437 644 21 0 15526 2025-03-20 08:20:22.006 2025-03-20 08:20:22.006 436437 652 2 0 15527 2025-03-20 08:20:22.006 2025-03-20 08:20:22.006 436437 659 21 0 15528 2025-03-20 08:22:53.233 2025-03-20 08:22:53.233 436437 680 41 0 15529 2025-03-20 08:20:14.024 2025-03-20 08:20:14.024 436437 692 2 0 15530 2025-03-20 08:20:21.471 2025-03-20 08:20:21.471 436437 725 2 0 15531 2025-03-20 08:20:14.024 2025-03-20 08:22:57.05 436437 770 23 0 15532 2025-03-20 08:20:16.498 2025-03-20 08:22:54.952 436437 794 41 0 15533 2025-03-20 08:22:56.917 2025-03-20 08:22:56.917 436437 861 21 0 15534 2025-03-20 08:22:54.707 2025-03-20 08:22:54.707 436437 876 21 0 15535 2025-03-20 08:22:56.484 2025-03-20 08:22:56.484 436437 897 2 0 15536 2025-03-20 08:20:20.38 2025-03-20 08:20:20.38 436437 902 21 0 15537 2025-03-20 08:20:16.085 2025-03-20 08:20:16.085 436437 929 2 0 15538 2025-03-20 08:20:21.851 2025-03-20 08:20:21.851 436437 1003 2 0 15539 2025-03-20 08:20:18.143 2025-03-20 08:20:18.143 436437 1044 2 0 15540 2025-03-20 08:22:53.618 2025-03-20 08:22:53.618 436437 1124 2 0 15541 2025-03-20 08:20:17.2 2025-03-20 08:22:56.201 436437 1198 41 0 15542 2025-03-20 08:20:19.957 2025-03-20 08:20:19.957 436437 1209 2 0 15543 2025-03-20 08:20:15.806 2025-03-20 08:20:15.806 436437 1236 2 0 15544 2025-03-20 08:22:57.217 2025-03-20 08:22:57.217 436437 1245 2 0 15545 2025-03-20 08:20:17.966 2025-03-20 08:20:17.966 436437 1426 21 0 15546 2025-03-20 08:20:22.325 2025-03-20 08:20:22.325 436437 1483 21 0 15547 2025-03-20 08:20:20.38 2025-03-20 08:20:20.38 436437 1576 2 0 15548 2025-03-20 08:20:21.573 2025-03-20 08:20:21.573 436437 1577 2 0 15549 2025-03-20 08:20:16.915 2025-03-20 08:20:16.915 436437 1618 21 0 15550 2025-03-20 08:20:20.513 2025-03-20 08:20:20.513 436437 1647 21 0 15551 2025-03-20 08:20:16.915 2025-03-20 08:20:16.915 436437 1718 2 0 15552 2025-03-20 08:22:55.9 2025-03-20 08:22:55.9 436437 1720 21 0 15553 2025-03-20 08:20:21.155 2025-03-20 08:20:21.155 436437 1802 2 0 15554 2025-03-20 08:20:17.314 2025-03-20 08:20:17.314 436437 1881 21 0 15555 2025-03-20 08:22:53.618 2025-03-20 08:22:53.618 436437 1959 21 0 15556 2025-03-20 08:20:22.476 2025-03-20 08:20:22.476 436437 1970 2 0 15557 2025-03-20 08:20:16.221 2025-03-20 08:20:16.221 436437 2111 21 0 15558 2025-03-20 08:20:14.306 2025-03-20 08:20:14.306 436437 2151 62 0 15559 2025-03-20 08:20:21.292 2025-03-20 08:20:21.292 436437 2213 2 0 15560 2025-03-20 08:22:55.9 2025-03-20 08:22:55.9 436437 2326 2 0 15561 2025-03-20 08:22:53.751 2025-03-20 08:22:53.751 436437 2327 2 0 15562 2025-03-20 08:22:55.082 2025-03-20 08:22:55.082 436437 2537 2 0 15563 2025-03-20 08:20:13.415 2025-03-20 08:20:17.615 436437 2543 23 0 15564 2025-03-20 08:20:17.615 2025-03-20 08:20:17.615 436437 2722 21 0 15565 2025-03-20 08:20:15.944 2025-03-20 08:20:15.944 436437 4378 2 0 15566 2025-03-20 08:22:55.635 2025-03-20 08:22:55.635 436437 4819 21 0 15567 2025-03-20 08:20:18.948 2025-03-20 08:20:18.948 436437 5293 21 0 15568 2025-03-20 08:20:19.538 2025-03-20 08:20:19.538 436437 5495 21 0 15569 2025-03-20 08:20:18.287 2025-03-20 08:20:18.287 436437 5794 21 0 15570 2025-03-20 08:22:53.997 2025-03-20 08:22:53.997 436437 5870 2 0 15571 2025-03-20 08:20:16.221 2025-03-20 08:20:16.221 436437 6058 2 0 15572 2025-03-20 08:20:22.476 2025-03-20 08:20:22.476 436437 6555 21 0 15573 2025-03-20 08:22:56.917 2025-03-20 08:22:56.917 436437 6602 2 0 15574 2025-03-20 08:22:55.366 2025-03-20 08:22:55.366 436437 7125 2 0 15575 2025-03-20 08:22:55.635 2025-03-20 08:22:55.635 436437 7418 2 0 15576 2025-03-20 08:22:54.268 2025-03-20 08:22:54.268 436437 7673 2 0 15577 2025-03-20 08:20:13.629 2025-03-20 08:20:13.629 436437 7682 21 0 15578 2025-03-20 08:22:57.217 2025-03-20 08:22:57.217 436437 7760 21 0 15579 2025-03-20 08:22:55.482 2025-03-20 08:22:55.482 436437 7827 21 0 15580 2025-03-20 08:20:22.174 2025-03-20 08:20:22.174 436437 7992 2 0 15581 2025-03-20 08:20:19.706 2025-03-20 08:20:19.706 436437 8423 21 0 15582 2025-03-20 08:22:54.797 2025-03-20 08:22:54.797 436437 8459 2 0 15583 2025-03-20 08:20:19.706 2025-03-20 08:22:54.122 436437 8505 5 0 15584 2025-03-20 08:22:56.336 2025-03-20 08:22:56.336 436437 8841 21 0 15585 2025-03-20 08:32:48.305 2025-03-20 08:32:48.305 436437 8926 7 0 15586 2025-03-20 08:20:17.966 2025-03-20 08:20:17.966 436437 8998 2 0 15587 2025-03-20 08:22:57.05 2025-03-20 08:22:57.05 436437 9036 21 0 15588 2025-03-20 08:20:19.073 2025-03-20 08:20:19.073 436437 9307 2 0 15589 2025-03-20 08:22:54.268 2025-03-20 08:22:54.268 436437 9364 21 0 15590 2025-03-20 08:20:16.659 2025-03-20 08:20:16.659 436437 9611 2 0 15591 2025-03-20 08:22:54.952 2025-03-20 08:22:54.952 436437 10342 2 0 15592 2025-03-20 08:20:21.155 2025-03-20 08:20:21.155 436437 10849 21 0 15593 2025-03-20 08:20:17.774 2025-03-20 08:20:17.774 436437 10934 21 0 15594 2025-03-20 08:20:16.659 2025-03-20 08:20:16.659 436437 10944 21 0 15595 2025-03-20 08:20:19.374 2025-03-20 08:20:19.374 436437 10981 21 0 15596 2025-03-20 08:22:53.899 2025-03-20 08:22:53.899 436437 11164 21 0 15597 2025-03-20 08:20:22.616 2025-03-20 08:20:22.616 436437 11240 21 0 15598 2025-03-20 08:20:20.239 2025-03-20 08:20:20.239 436437 11288 2 0 15599 2025-03-20 08:22:56.336 2025-03-20 08:22:56.336 436437 11561 2 0 15600 2025-03-20 08:22:56.201 2025-03-20 08:22:56.201 436437 11760 2 0 15601 2025-03-20 08:20:13.762 2025-03-20 08:20:13.762 436437 11829 2 0 15602 2025-03-20 08:20:21.471 2025-03-20 08:20:21.471 436437 12507 21 0 15603 2025-03-20 08:20:13.565 2025-03-20 08:20:13.565 436437 12738 21 0 15604 2025-03-20 08:22:55.482 2025-03-20 08:22:55.482 436437 12779 2 0 15605 2025-03-20 08:22:53.751 2025-03-20 08:22:53.751 436437 13038 21 0 15606 2025-03-20 08:20:20.095 2025-03-20 08:20:20.095 436437 13566 21 0 15607 2025-03-20 08:20:17.064 2025-03-20 08:20:17.064 436437 13574 2 0 15608 2025-03-20 08:20:16.367 2025-03-20 08:20:16.367 436437 14015 21 0 15609 2025-03-20 08:20:15.806 2025-03-20 08:20:15.806 436437 14168 21 0 15610 2025-03-20 08:20:18.287 2025-03-20 08:20:18.287 436437 14169 2 0 15611 2025-03-20 08:22:56.645 2025-03-20 08:22:56.645 436437 14258 21 0 15612 2025-03-20 08:20:16.498 2025-03-20 08:20:16.498 436437 14278 2 0 15613 2025-03-20 08:20:20.513 2025-03-20 08:20:20.513 436437 14280 2 0 15614 2025-03-20 08:20:13.565 2025-03-20 08:20:13.565 436437 15049 2 0 15615 2025-03-20 08:20:21.725 2025-03-20 08:20:21.725 436437 15103 21 0 15616 2025-03-20 08:20:20.095 2025-03-20 08:20:20.095 436437 15243 2 0 15617 2025-03-20 08:20:22.735 2025-03-20 08:20:22.735 436437 15386 21 0 15618 2025-03-20 08:20:16.788 2025-03-20 08:20:16.788 436437 15463 21 0 15619 2025-03-20 08:20:17.314 2025-03-20 08:20:17.314 436437 15536 2 0 15620 2025-03-20 08:22:56.767 2025-03-20 08:22:56.767 436437 15549 21 0 15621 2025-03-20 08:19:48.557 2025-03-20 08:19:48.557 436437 15806 1 0 15622 2025-03-20 08:20:14.306 2025-03-20 08:20:14.306 436437 16176 7 0 15623 2025-03-20 08:20:19.22 2025-03-20 08:20:19.22 436437 16289 21 0 15624 2025-03-20 08:20:21.725 2025-03-20 08:20:21.725 436437 16357 2 0 15625 2025-03-20 08:20:13.629 2025-03-20 08:20:17.483 436437 16447 5 0 15626 2025-03-20 08:22:55.767 2025-03-20 08:22:55.767 436437 16834 21 0 15627 2025-03-20 08:20:14.683 2025-03-20 08:22:54.535 436437 17124 5 0 15628 2025-03-20 08:20:22.174 2025-03-20 08:20:22.174 436437 17519 21 0 15629 2025-03-20 08:22:54.707 2025-03-20 08:22:54.707 436437 17526 2 0 15630 2025-03-20 10:15:30.607 2025-03-20 10:15:30.607 436437 17541 10 0 15631 2025-03-20 08:22:56.645 2025-03-20 08:22:56.645 436437 17741 2 0 15632 2025-03-20 08:22:53.997 2025-03-20 08:22:53.997 436437 18005 21 0 15633 2025-03-20 08:20:20.239 2025-03-20 08:20:20.239 436437 18231 21 0 15634 2025-03-20 08:22:53.498 2025-03-20 08:22:53.498 436437 18232 21 0 15635 2025-03-20 08:22:54.535 2025-03-20 08:22:54.535 436437 18269 21 0 15636 2025-03-20 08:22:54.384 2025-03-20 08:22:55.082 436437 18526 23 0 15637 2025-03-20 08:20:17.774 2025-03-20 08:20:17.774 436437 18557 2 0 15638 2025-03-20 08:20:22.735 2025-03-20 08:20:22.735 436437 18930 2 0 15639 2025-03-20 08:20:19.374 2025-03-20 08:20:19.374 436437 19117 2 0 15640 2025-03-20 08:20:13.415 2025-03-20 08:20:13.415 436437 19198 2 0 15641 2025-03-20 08:22:53.233 2025-03-20 08:22:53.233 436437 19469 5 0 15642 2025-03-20 08:22:56.767 2025-03-20 08:22:56.767 436437 19569 2 0 15643 2025-03-20 08:20:14.683 2025-03-20 08:20:14.683 436437 19576 21 0 15644 2025-03-20 08:22:54.122 2025-03-20 08:22:54.122 436437 19663 21 0 15645 2025-03-20 08:20:16.367 2025-03-20 08:20:16.367 436437 19992 2 0 15646 2025-03-20 08:20:16.788 2025-03-20 08:20:16.788 436437 20023 2 0 15647 2025-03-20 08:20:13.323 2025-03-20 08:20:13.323 436437 20120 2 0 15648 2025-03-20 08:22:54.384 2025-03-20 08:22:54.384 436437 20179 21 0 15649 2025-03-20 08:20:21.851 2025-03-20 08:20:21.851 436437 20190 21 0 15650 2025-03-20 08:20:21.573 2025-03-20 08:20:21.573 436437 20220 21 0 15651 2025-03-20 08:20:19.073 2025-03-20 08:20:19.073 436437 20225 21 0 15652 2025-03-20 08:22:53.498 2025-03-20 08:22:53.498 436437 20243 2 0 15653 2025-03-20 08:20:19.957 2025-03-20 08:20:19.957 436437 20490 21 0 15654 2025-03-20 08:20:19.22 2025-03-20 08:20:19.22 436437 20525 2 0 15655 2025-03-20 08:20:19.827 2025-03-20 08:20:19.827 436437 20613 21 0 15656 2025-03-20 08:20:13.323 2025-03-20 08:20:13.323 436437 20655 21 0 15657 2025-03-20 08:22:56.05 2025-03-20 08:22:56.05 436437 20706 21 0 15658 2025-03-20 08:20:21.292 2025-03-20 08:20:21.292 436437 20734 21 0 15659 2025-03-20 08:20:17.2 2025-03-20 08:22:55.216 436437 20757 5 0 15660 2025-03-20 08:22:55.767 2025-03-20 08:22:55.767 436437 20788 2 0 15661 2025-03-20 08:20:19.538 2025-03-20 08:20:19.538 436437 20861 2 0 15662 2025-03-20 08:22:55.216 2025-03-20 08:22:55.216 436437 20901 21 0 15663 2025-03-20 08:20:16.085 2025-03-20 08:20:16.085 436437 20965 21 0 15664 2025-03-20 08:22:54.797 2025-03-20 08:22:54.797 436437 21003 21 0 15665 2025-03-20 08:32:48.305 2025-03-20 08:32:48.305 436437 21014 1 0 15666 2025-03-20 08:20:18.143 2025-03-20 08:20:18.143 436437 21064 21 0 15667 2025-03-20 10:15:30.607 2025-03-20 10:15:30.607 436437 21083 1 0 15668 2025-03-20 08:22:55.366 2025-03-20 08:22:55.366 436437 21145 21 0 15669 2025-03-20 08:20:18.948 2025-03-20 08:20:18.948 436437 21314 2 0 15670 2025-03-20 08:22:56.484 2025-03-20 08:22:56.484 436437 21398 21 0 15671 2025-03-20 08:20:13.762 2025-03-20 08:20:13.762 436437 21427 21 0 15672 2025-03-20 08:20:17.483 2025-03-20 08:20:17.483 436437 21501 21 0 15673 2025-03-20 08:22:56.05 2025-03-20 08:22:56.05 436437 21514 2 0 15674 2025-03-20 08:20:22.616 2025-03-20 08:20:22.616 436437 21670 2 0 15675 2025-03-20 08:22:53.899 2025-03-20 08:22:53.899 436437 21815 2 0 15676 2025-03-20 08:20:17.064 2025-03-20 08:20:17.064 436437 21825 21 0 15677 2025-03-20 08:20:22.325 2025-03-20 08:20:22.325 436437 21833 2 0 15678 2025-03-20 08:36:52.071 2025-03-20 08:36:52.071 436438 1175 3 0 15679 2025-03-20 08:36:52.071 2025-03-20 08:36:52.071 436438 17046 30 0 15680 2025-03-20 08:19:56.784 2025-03-20 08:19:56.784 436438 21044 1 0 15681 2025-03-20 08:38:02.92 2025-03-20 08:38:02.92 436439 902 30 0 15682 2025-03-20 08:24:41.262 2025-03-20 08:24:41.262 436439 2722 27 0 15683 2025-03-20 08:20:04.297 2025-03-20 08:20:04.297 436439 6749 1 0 15684 2025-03-20 08:38:02.92 2025-03-20 08:38:02.92 436439 10280 3 0 15685 2025-03-20 08:24:41.262 2025-03-20 08:24:41.262 436439 20897 3 0 15686 2025-03-20 09:04:42.92 2025-03-20 09:04:42.92 436440 699 0 0 15687 2025-03-20 09:04:43.196 2025-03-20 09:04:43.196 436440 775 8 0 15688 2025-03-20 09:04:42.92 2025-03-20 09:04:42.92 436440 1489 1 0 15689 2025-03-20 09:04:43.196 2025-03-20 09:04:43.196 436440 2670 1 0 15690 2025-03-20 10:59:24.176 2025-03-20 10:59:24.176 436440 2681 2 0 15691 2025-03-20 08:20:22.848 2025-03-20 08:20:22.848 436440 2774 21 0 15692 2025-03-20 08:25:15.898 2025-03-20 08:25:15.898 436440 15139 1 0 15693 2025-03-20 08:25:15.898 2025-03-20 08:25:15.898 436440 15409 9 0 15694 2025-03-20 09:04:47.157 2025-03-20 09:04:47.157 436440 18430 81 0 15695 2025-03-20 10:59:24.176 2025-03-20 10:59:24.176 436440 20891 19 0 15696 2025-03-20 09:04:47.157 2025-03-20 09:04:47.157 436440 21051 9 0 15697 2025-03-20 08:20:27.529 2025-03-20 08:20:27.529 436441 3461 1 0 15698 2025-03-20 08:24:35.003 2025-03-20 08:24:35.003 436442 4602 14 0 15699 2025-03-20 08:24:35.003 2025-03-20 08:24:35.003 436442 8945 2 0 15700 2025-03-20 08:21:01.326 2025-03-20 08:21:01.326 436442 20225 1 0 15701 2025-03-20 08:21:34.724 2025-03-20 08:21:34.724 436443 7983 1 0 15702 2025-03-20 08:22:51.893 2025-03-20 08:22:51.893 436443 20133 1 0 15703 2025-03-20 08:22:51.893 2025-03-20 08:22:51.893 436443 21442 9 0 15704 2025-03-20 11:33:51.857 2025-03-20 11:33:51.857 436444 27 9 0 15705 2025-03-20 08:24:42.876 2025-03-20 08:24:42.876 436444 633 2 0 15706 2025-03-20 08:22:09.424 2025-03-20 08:22:09.424 436444 854 21 0 15707 2025-03-20 09:15:05.591 2025-03-20 09:15:05.591 436444 925 2 0 15708 2025-03-20 08:25:47.922 2025-03-20 08:25:47.922 436444 1519 0 0 15709 2025-03-20 11:33:51.857 2025-03-20 11:33:51.857 436444 1617 1 0 15710 2025-03-20 08:25:48.177 2025-03-20 08:25:48.177 436444 2203 0 0 15711 2025-03-20 09:15:05.048 2025-03-20 09:15:05.048 436444 9026 19 0 15712 2025-03-20 09:15:05.344 2025-03-20 09:15:05.344 436444 9349 19 0 15713 2025-03-20 09:15:05.591 2025-03-20 09:15:05.591 436444 10016 19 0 15714 2025-03-20 08:24:43.276 2025-03-20 08:24:43.276 436444 10352 2 0 15715 2025-03-20 08:25:49.388 2025-03-20 08:25:49.388 436444 12808 2 0 15716 2025-03-20 08:24:43.276 2025-03-20 08:24:43.276 436444 16212 19 0 15717 2025-03-20 08:25:49.388 2025-03-20 08:25:49.388 436444 17592 0 0 15718 2025-03-20 09:15:05.344 2025-03-20 09:15:05.344 436444 19796 2 0 15719 2025-03-20 08:25:48.177 2025-03-20 08:25:48.177 436444 20306 2 0 15720 2025-03-20 09:15:05.048 2025-03-20 09:15:05.048 436444 20756 2 0 15721 2025-03-20 08:24:42.876 2025-03-20 08:24:42.876 436444 20969 19 0 15722 2025-03-20 08:25:47.922 2025-03-20 08:25:47.922 436444 21539 2 0 15723 2025-03-20 08:24:56.038 2025-03-20 08:24:56.038 436445 726 21 0 15724 2025-03-20 08:24:56.176 2025-03-20 08:24:56.176 436445 1705 21 0 15725 2025-03-20 08:24:55.987 2025-03-20 08:24:55.987 436445 8059 2 0 15726 2025-03-20 08:39:36.337 2025-03-20 08:39:36.337 436445 9378 1 0 15727 2025-03-20 08:39:36.337 2025-03-20 08:39:36.337 436445 9985 9 0 15728 2025-03-20 08:22:15.51 2025-03-20 08:22:15.51 436445 19535 10 0 15729 2025-03-20 08:24:56.176 2025-03-20 08:24:56.176 436445 19980 2 0 15730 2025-03-20 08:24:56.038 2025-03-20 08:24:56.038 436445 21413 2 0 15731 2025-03-20 08:24:55.987 2025-03-20 08:24:55.987 436445 21585 21 0 15732 2025-03-20 08:22:48.849 2025-03-20 08:22:48.849 436446 2748 1 0 15733 2025-03-20 08:23:38.26 2025-03-20 08:23:38.26 436447 20854 1 0 15734 2025-03-20 08:24:55.686 2025-03-20 08:24:55.686 436448 766 2 0 15735 2025-03-20 08:24:55.686 2025-03-20 08:24:55.686 436448 2402 19 0 15736 2025-03-20 08:23:49.422 2025-03-20 08:23:49.422 436448 21212 1 0 15737 2025-03-20 10:00:32.971 2025-03-20 10:00:32.971 436449 642 10 0 15738 2025-03-20 08:24:05.978 2025-03-20 08:24:05.978 436449 659 1 0 15739 2025-03-20 08:27:36.819 2025-03-20 08:27:36.819 436449 977 2 0 15740 2025-03-20 08:27:18.05 2025-03-20 08:27:18.05 436449 1881 21 0 15741 2025-03-20 08:35:23.282 2025-03-20 08:35:23.282 436449 4459 3 0 15742 2025-03-20 08:27:18.05 2025-03-20 08:27:18.05 436449 4819 2 0 15743 2025-03-20 08:53:18.855 2025-03-20 08:53:18.855 436449 5112 9 0 15744 2025-03-20 08:27:36.819 2025-03-20 08:27:36.819 436449 5942 21 0 15745 2025-03-20 09:31:24.495 2025-03-20 09:31:24.495 436449 8423 9 0 15746 2025-03-20 09:47:54.039 2025-03-20 09:47:54.039 436449 8985 2 0 15747 2025-03-20 09:31:24.495 2025-03-20 09:31:24.495 436449 9363 1 0 15748 2025-03-20 08:27:18.755 2025-03-20 08:27:18.755 436449 10536 2 0 15749 2025-03-20 08:53:18.855 2025-03-20 08:53:18.855 436449 11866 1 0 15750 2025-03-20 08:27:18.755 2025-03-20 08:27:18.755 436449 19759 21 0 15751 2025-03-20 10:00:32.971 2025-03-20 10:00:32.971 436449 20481 1 0 15752 2025-03-20 08:35:23.282 2025-03-20 08:35:23.282 436449 20509 30 0 15753 2025-03-20 09:47:54.039 2025-03-20 09:47:54.039 436449 21442 19 0 15754 2025-03-20 08:40:35.452 2025-03-20 08:40:35.452 436450 657 0 0 15755 2025-03-20 08:41:08.269 2025-03-20 08:41:08.269 436450 1469 89 0 15756 2025-03-20 08:41:08.269 2025-03-20 08:41:08.269 436450 2961 10 0 15757 2025-03-20 08:40:35.452 2025-03-20 08:40:35.452 436450 6137 1 0 15758 2025-03-20 08:24:34.762 2025-03-20 08:24:34.762 436450 14278 1 0 15759 2025-03-20 08:24:46.164 2025-03-20 08:24:46.164 436451 674 1 0 15760 2025-03-20 08:35:32.412 2025-03-20 08:35:32.412 436451 2056 30 0 15761 2025-03-20 08:35:33.044 2025-03-20 08:35:33.044 436451 2735 30 0 15762 2025-03-20 08:35:32.412 2025-03-20 08:35:32.412 436451 2774 3 0 15763 2025-03-20 08:39:15.066 2025-03-20 08:39:15.066 436451 7389 9 0 15764 2025-03-20 08:35:32.603 2025-03-20 08:35:32.603 436451 9611 30 0 15765 2025-03-20 08:35:33.044 2025-03-20 08:35:33.044 436451 14910 3 0 15766 2025-03-20 08:39:14.803 2025-03-20 08:39:14.803 436451 16350 1 0 15767 2025-03-20 08:39:15.066 2025-03-20 08:39:15.066 436451 17095 1 0 15768 2025-03-20 08:35:32.603 2025-03-20 08:35:32.603 436451 20825 3 0 15769 2025-03-20 08:39:14.803 2025-03-20 08:39:14.803 436451 21239 9 0 15770 2025-03-20 08:25:17.494 2025-03-20 08:25:17.494 436452 16177 1 0 15771 2025-03-20 08:25:43.263 2025-03-20 08:25:43.263 436453 16410 1 0 15772 2025-03-20 08:27:11.63 2025-03-20 08:27:11.63 436454 5527 1 0 15773 2025-03-20 09:03:37.969 2025-03-20 09:03:37.969 436455 749 5 0 15774 2025-03-20 09:03:37.969 2025-03-20 09:03:37.969 436455 1584 45 0 15775 2025-03-20 08:27:31.503 2025-03-20 08:27:31.503 436455 9339 1 0 15776 2025-03-20 09:03:50.115 2025-03-20 09:03:50.115 436455 14376 26 0 15777 2025-03-20 09:31:29.477 2025-03-20 09:31:29.477 436455 20291 1 0 15778 2025-03-20 09:31:29.477 2025-03-20 09:31:29.477 436455 20370 9 0 15779 2025-03-20 09:03:50.115 2025-03-20 09:03:50.115 436455 20849 238 0 15780 2025-03-20 08:28:23.493 2025-03-20 08:28:23.493 436456 16670 1 0 15781 2025-03-20 08:28:41.355 2025-03-20 08:28:41.355 436457 1082 1 0 15782 2025-03-20 09:15:55.58 2025-03-20 09:15:55.58 436457 2537 2 0 15783 2025-03-20 09:15:55.58 2025-03-20 09:15:55.58 436457 8289 19 0 15784 2025-03-20 08:28:58.563 2025-03-20 08:28:58.563 436458 1626 1 0 15785 2025-03-20 09:17:54.856 2025-03-20 09:17:54.856 436459 621 30 0 15786 2025-03-20 08:44:26.85 2025-03-20 08:44:26.85 436459 699 1 0 15787 2025-03-20 12:34:17.561 2025-03-20 12:34:17.561 436459 762 1 0 15788 2025-03-20 08:36:00.933 2025-03-20 08:36:00.933 436459 775 75 0 15789 2025-03-20 08:36:01.434 2025-03-20 08:36:01.434 436459 777 75 0 15790 2025-03-20 08:36:00.368 2025-03-20 08:36:00.368 436459 811 75 0 15791 2025-03-20 08:36:01.153 2025-03-20 08:36:01.153 436459 826 75 0 15792 2025-03-20 08:36:00.732 2025-03-20 08:36:00.732 436459 896 17 0 15793 2025-03-20 09:47:36.746 2025-03-20 09:47:36.746 436459 910 19 0 15794 2025-03-20 08:35:59.333 2025-03-20 08:35:59.333 436459 960 8 0 15795 2025-03-20 08:35:59.685 2025-03-20 08:35:59.685 436459 965 8 0 15796 2025-03-20 09:47:36.746 2025-03-20 09:47:36.746 436459 1003 2 0 15797 2025-03-20 10:59:17.407 2025-03-20 10:59:17.407 436459 1044 2 0 15798 2025-03-20 09:47:50.065 2025-03-20 09:47:50.065 436459 1468 19 0 15799 2025-03-20 10:59:17.407 2025-03-20 10:59:17.407 436459 1785 19 0 15800 2025-03-20 09:17:54.647 2025-03-20 09:17:54.647 436459 2195 30 0 15801 2025-03-20 12:08:39.826 2025-03-20 12:08:39.826 436459 2327 4 0 15802 2025-03-20 08:31:55.247 2025-03-20 08:31:55.247 436459 2529 100 0 15803 2025-03-20 09:14:32.126 2025-03-20 09:14:32.126 436459 2620 19 0 15804 2025-03-20 08:35:59.201 2025-03-20 08:35:59.201 436459 3353 8 0 15805 2025-03-20 08:35:59.201 2025-03-20 08:35:59.201 436459 3409 75 0 15806 2025-03-20 09:17:54.856 2025-03-20 09:17:54.856 436459 4474 270 0 15807 2025-03-20 09:17:54.242 2025-03-20 09:17:54.242 436459 5757 270 0 15808 2025-03-20 08:36:02.037 2025-03-20 08:36:02.037 436459 5825 75 0 15809 2025-03-20 08:44:26.479 2025-03-20 08:44:26.479 436459 6430 1 0 15810 2025-03-20 09:14:32.126 2025-03-20 09:14:32.126 436459 8176 2 0 15811 2025-03-20 08:36:00.933 2025-03-20 08:36:00.933 436459 9171 8 0 15812 2025-03-20 08:36:00.841 2025-03-20 08:36:00.841 436459 9262 75 0 15813 2025-03-20 08:44:26.85 2025-03-20 08:44:26.85 436459 9364 9 0 15814 2025-03-20 08:35:59.433 2025-03-20 08:35:59.433 436459 9611 75 0 15815 2025-03-20 08:35:59.433 2025-03-20 08:35:59.433 436459 10112 8 0 15816 2025-03-20 08:44:26.67 2025-03-20 08:44:26.67 436459 10944 9 0 15817 2025-03-20 08:36:01.153 2025-03-20 08:36:01.153 436459 10979 8 0 15818 2025-03-20 08:36:01.434 2025-03-20 08:36:01.434 436459 11417 8 0 15819 2025-03-20 08:36:02.037 2025-03-20 08:36:02.037 436459 11450 8 0 15820 2025-03-20 09:55:02.146 2025-03-20 09:55:02.146 436459 11942 10 0 15821 2025-03-20 08:36:01.906 2025-03-20 08:36:01.906 436459 12821 8 0 15822 2025-03-20 08:44:26.67 2025-03-20 08:44:26.67 436459 13763 1 0 15823 2025-03-20 12:15:32.789 2025-03-20 12:15:32.789 436459 14909 90 0 15824 2025-03-20 09:20:47.053 2025-03-20 09:20:47.053 436459 15386 2 0 15825 2025-03-20 08:36:00.841 2025-03-20 08:36:00.841 436459 15491 8 0 15826 2025-03-20 12:08:39.826 2025-03-20 12:08:39.826 436459 15858 36 0 15827 2025-03-20 08:36:00.368 2025-03-20 08:36:00.368 436459 16351 8 0 15828 2025-03-20 09:55:02.146 2025-03-20 09:55:02.146 436459 17218 1 0 15829 2025-03-20 08:36:01.906 2025-03-20 08:36:01.906 436459 17237 75 0 15830 2025-03-20 12:15:32.789 2025-03-20 12:15:32.789 436459 17673 10 0 15831 2025-03-20 09:20:47.053 2025-03-20 09:20:47.053 436459 17710 19 0 15832 2025-03-20 08:36:01.266 2025-03-20 08:36:01.266 436459 17714 8 0 15833 2025-03-20 09:17:54.647 2025-03-20 09:17:54.647 436459 18271 270 0 15834 2025-03-20 08:36:01.266 2025-03-20 08:36:01.266 436459 18409 75 0 15835 2025-03-20 08:36:00.732 2025-03-20 08:36:00.732 436459 19446 149 0 15836 2025-03-20 12:34:17.561 2025-03-20 12:34:17.561 436459 20502 9 0 15837 2025-03-20 08:35:59.685 2025-03-20 08:35:59.685 436459 20563 75 0 15838 2025-03-20 08:35:59.333 2025-03-20 08:35:59.333 436459 20612 75 0 15839 2025-03-20 08:44:26.479 2025-03-20 08:44:26.479 436459 20674 9 0 15840 2025-03-20 09:47:50.065 2025-03-20 09:47:50.065 436459 21019 2 0 15841 2025-03-20 09:17:54.242 2025-03-20 09:17:54.242 436459 21047 30 0 15842 2025-03-20 11:21:40.738 2025-03-20 11:21:40.738 436459 21833 0 100 15843 2025-03-20 09:46:29.072 2025-03-20 09:46:29.072 436460 2670 1 0 15844 2025-03-20 08:42:43.448 2025-03-20 08:42:43.448 436460 5495 1 0 15845 2025-03-20 08:33:16.194 2025-03-20 08:33:16.194 436460 8269 10 0 15846 2025-03-20 08:42:43.448 2025-03-20 08:42:43.448 436460 9355 9 0 15847 2025-03-20 08:45:53.44 2025-03-20 08:45:53.44 436460 16406 9 0 15848 2025-03-20 09:46:29.072 2025-03-20 09:46:29.072 436460 19668 0 0 15849 2025-03-20 08:45:53.44 2025-03-20 08:45:53.44 436460 20254 1 0 15850 2025-03-20 08:34:38.46 2025-03-20 08:34:38.46 436461 14280 1 0 15851 2025-03-20 08:34:40.018 2025-03-20 08:34:40.018 436462 889 10 0 15852 2025-03-20 08:34:53.6 2025-03-20 08:34:53.6 436462 20596 0 0 15853 2025-03-20 09:24:01.556 2025-03-20 09:24:01.556 436463 2000 4 0 15854 2025-03-20 08:43:00.051 2025-03-20 08:43:00.051 436463 2735 3 0 15855 2025-03-20 08:43:00.051 2025-03-20 08:43:00.051 436463 4624 0 0 15856 2025-03-20 09:24:01.556 2025-03-20 09:24:01.556 436463 11527 38 0 15857 2025-03-20 08:35:22.611 2025-03-20 08:35:22.611 436463 19463 1 0 15858 2025-03-20 13:58:25.621 2025-03-20 13:58:25.621 436464 8998 1 0 15859 2025-03-20 08:35:42.348 2025-03-20 08:35:42.348 436464 14255 1 0 15860 2025-03-20 13:58:25.621 2025-03-20 13:58:25.621 436464 19394 12 0 15861 2025-03-20 08:37:49.572 2025-03-20 08:37:49.572 436465 18468 1 0 15862 2025-03-20 08:40:04.752 2025-03-20 08:40:04.752 436465 18901 10 0 15863 2025-03-20 08:40:04.752 2025-03-20 08:40:04.752 436465 20220 1 0 15864 2025-03-20 09:50:08.38 2025-03-20 09:50:08.38 436466 633 1 0 15865 2025-03-20 10:40:30.281 2025-03-20 10:40:30.281 436466 646 2 0 15866 2025-03-20 08:37:58.37 2025-03-20 08:37:58.37 436466 671 21 0 15867 2025-03-20 08:50:09.262 2025-03-20 08:50:09.262 436466 672 27 0 15868 2025-03-20 09:00:37.299 2025-03-20 09:00:37.299 436466 676 9 0 15869 2025-03-20 10:59:23.848 2025-03-20 10:59:23.848 436466 688 19 0 15870 2025-03-20 09:50:09.238 2025-03-20 09:50:09.238 436466 787 1 0 15871 2025-03-20 09:00:38.757 2025-03-20 09:00:38.757 436466 827 1 0 15872 2025-03-20 09:00:34.579 2025-03-20 09:50:07.341 436466 1002 2 0 15873 2025-03-20 09:00:33.877 2025-03-20 09:00:33.877 436466 1286 1 0 15874 2025-03-20 10:40:30.281 2025-03-20 10:40:30.281 436466 1515 19 0 15875 2025-03-20 09:19:40.15 2025-03-20 09:19:40.15 436466 2098 90 0 15876 2025-03-20 08:50:09.262 2025-03-20 08:50:09.262 436466 2431 3 0 15877 2025-03-20 09:50:06.621 2025-03-20 09:50:06.621 436466 2508 1 0 15878 2025-03-20 09:51:01.096 2025-03-20 09:51:01.096 436466 4388 9 0 15879 2025-03-20 08:38:10.57 2025-03-20 08:38:10.57 436466 5500 4 0 15880 2025-03-20 09:00:33.877 2025-03-20 09:00:33.877 436466 5761 9 0 15881 2025-03-20 09:00:37.299 2025-03-20 09:00:37.299 436466 6471 1 0 15882 2025-03-20 09:51:00.507 2025-03-20 09:51:00.507 436466 7903 9 0 15883 2025-03-20 09:50:09.238 2025-03-20 09:50:09.238 436466 9367 9 0 15884 2025-03-20 09:00:31.689 2025-03-20 09:00:31.689 436466 9496 1 0 15885 2025-03-20 09:00:38.757 2025-03-20 09:00:38.757 436466 9537 9 0 15886 2025-03-20 09:51:01.096 2025-03-20 09:51:01.096 436466 11454 1 0 15887 2025-03-20 09:51:00.507 2025-03-20 09:51:00.507 436466 11515 1 0 15888 2025-03-20 08:41:09.724 2025-03-20 08:41:09.724 436466 12139 27 0 15889 2025-03-20 08:41:09.724 2025-03-20 08:41:09.724 436466 12245 3 0 15890 2025-03-20 09:00:35.547 2025-03-20 09:00:35.547 436466 13143 1 0 15891 2025-03-20 09:50:10.118 2025-03-20 09:50:10.118 436466 13399 9 0 15892 2025-03-20 10:59:23.848 2025-03-20 10:59:23.848 436466 13759 2 0 15893 2025-03-20 09:00:34.579 2025-03-20 09:00:34.579 436466 14489 9 0 15894 2025-03-20 09:50:10.118 2025-03-20 09:50:10.118 436466 14607 1 0 15895 2025-03-20 08:38:10.57 2025-03-20 08:38:10.57 436466 14705 36 0 15896 2025-03-20 08:41:10.363 2025-03-20 08:41:10.363 436466 15978 27 0 15897 2025-03-20 09:00:30.907 2025-03-20 09:00:30.907 436466 16562 9 0 15898 2025-03-20 09:00:35.547 2025-03-20 09:00:35.547 436466 17727 9 0 15899 2025-03-20 11:35:31.691 2025-03-20 11:35:31.691 436466 20102 19 0 15900 2025-03-20 09:50:08.38 2025-03-20 09:50:08.38 436466 20190 9 0 15901 2025-03-20 09:50:07.341 2025-03-20 09:50:07.341 436466 20500 9 0 15902 2025-03-20 11:35:31.691 2025-03-20 11:35:31.691 436466 20897 2 0 15903 2025-03-20 09:00:31.689 2025-03-20 09:00:31.689 436466 21116 9 0 15904 2025-03-20 09:00:32.621 2025-03-20 09:00:32.621 436466 21212 9 0 15905 2025-03-20 08:41:10.363 2025-03-20 08:41:10.363 436466 21338 243 0 15906 2025-03-20 09:50:06.621 2025-03-20 09:50:06.621 436466 21398 9 0 15907 2025-03-20 09:00:30.907 2025-03-20 09:00:30.907 436466 21797 1 0 15908 2025-03-20 09:19:40.15 2025-03-20 09:19:40.15 436466 21829 10 0 15909 2025-03-20 09:56:14.829 2025-03-20 09:56:14.829 436467 642 23 0 15910 2025-03-20 08:39:23.852 2025-03-20 08:39:23.852 436467 1237 27 0 15911 2025-03-20 09:56:14.829 2025-03-20 09:56:14.829 436467 11091 3 0 15912 2025-03-20 08:39:23.852 2025-03-20 08:39:23.852 436467 21279 3 0 15913 2025-03-20 08:38:01.12 2025-03-20 08:38:01.12 436467 21421 1 0 15914 2025-03-20 08:38:10.184 2025-03-20 08:38:10.184 436468 5829 1 0 15915 2025-03-20 08:38:57.41 2025-03-20 08:38:57.41 436469 16684 1 0 15916 2025-03-20 08:39:12.039 2025-03-20 08:39:12.039 436470 7877 1 0 15917 2025-03-20 08:40:13.103 2025-03-20 08:40:13.103 436470 14785 10 0 15918 2025-03-20 08:40:13.103 2025-03-20 08:40:13.103 436470 19087 1 0 15919 2025-03-20 08:39:50.804 2025-03-20 08:39:50.804 436471 633 21 0 15920 2025-03-20 08:39:50.96 2025-03-20 08:39:50.96 436471 714 21 0 15921 2025-03-20 08:39:12.251 2025-03-20 08:39:12.251 436471 14990 1 0 15922 2025-03-20 08:39:51.107 2025-03-20 08:39:51.107 436471 16942 21 0 15923 2025-03-20 08:39:51.107 2025-03-20 08:39:51.107 436471 18269 2 0 15924 2025-03-20 08:39:50.804 2025-03-20 08:39:50.804 436471 20768 2 0 15925 2025-03-20 08:39:50.96 2025-03-20 08:39:50.96 436471 21369 2 0 15926 2025-03-20 08:39:12.651 2025-03-20 08:39:12.651 436472 16059 1 0 15927 2025-03-20 08:40:02.046 2025-03-20 08:40:02.046 436473 9355 1 0 15928 2025-03-20 10:55:47.587 2025-03-20 10:55:47.587 436474 917 0 0 15929 2025-03-20 10:55:47.587 2025-03-20 10:55:47.587 436474 12561 3 0 15930 2025-03-20 08:40:39.026 2025-03-20 08:40:39.026 436474 21520 1 0 15931 2025-03-20 08:41:08.214 2025-03-20 08:41:08.214 436475 659 1 0 15932 2025-03-20 08:41:30.942 2025-03-20 08:41:30.942 436475 715 9 0 15933 2025-03-20 08:41:28.585 2025-03-20 08:41:28.585 436475 730 1 0 15934 2025-03-20 08:41:30.483 2025-03-20 08:41:30.483 436475 2583 9 0 15935 2025-03-20 08:41:30.056 2025-03-20 08:41:30.056 436475 2780 1 0 15936 2025-03-20 08:41:27.558 2025-03-20 08:41:27.558 436475 3686 1 0 15937 2025-03-20 08:41:29.756 2025-03-20 08:41:29.756 436475 4958 1 0 15938 2025-03-20 08:41:29.198 2025-03-20 08:41:29.198 436475 5809 1 0 15939 2025-03-20 08:41:28.231 2025-03-20 08:41:28.231 436475 8284 2 0 15940 2025-03-20 08:41:29.198 2025-03-20 08:41:29.198 436475 14015 9 0 15941 2025-03-20 08:41:30.056 2025-03-20 08:41:30.056 436475 15243 9 0 15942 2025-03-20 08:41:30.942 2025-03-20 08:41:30.942 436475 16571 1 0 15943 2025-03-20 08:41:28.904 2025-03-20 08:41:28.904 436475 18901 9 0 15944 2025-03-20 11:35:50.574 2025-03-20 11:35:50.574 436475 19303 2 0 15945 2025-03-20 08:41:28.904 2025-03-20 08:41:28.904 436475 19826 1 0 15946 2025-03-20 08:41:27.558 2025-03-20 08:41:27.558 436475 20619 9 0 15947 2025-03-20 11:35:50.574 2025-03-20 11:35:50.574 436475 20655 19 0 15948 2025-03-20 08:41:28.231 2025-03-20 08:41:28.231 436475 20683 18 0 15949 2025-03-20 08:41:30.483 2025-03-20 08:41:30.483 436475 21020 1 0 15950 2025-03-20 08:41:28.585 2025-03-20 08:41:28.585 436475 21620 9 0 15951 2025-03-20 08:41:29.756 2025-03-20 08:41:29.756 436475 21685 9 0 15952 2025-03-20 08:41:08.992 2025-03-20 08:41:08.992 436476 19673 1 0 15953 2025-03-20 09:09:20.463 2025-03-20 09:09:20.463 436477 1474 19 0 15954 2025-03-20 08:54:45.26 2025-03-20 08:54:45.26 436477 5128 18 0 15955 2025-03-20 09:09:20.463 2025-03-20 09:09:20.463 436477 6260 2 0 15956 2025-03-20 08:41:18.656 2025-03-20 08:41:18.656 436477 9339 1 0 15957 2025-03-20 08:41:31.875 2025-03-20 08:41:31.875 436477 9378 0 0 15958 2025-03-20 08:54:45.26 2025-03-20 08:54:45.26 436477 10409 2 0 15959 2025-03-20 08:41:39.544 2025-03-20 08:41:39.544 436477 11288 0 0 15960 2025-03-20 12:28:01.201 2025-03-20 12:28:01.201 436478 1141 3 0 15961 2025-03-20 08:41:22.273 2025-03-20 08:41:22.273 436478 12222 1 0 15962 2025-03-20 12:28:01.201 2025-03-20 12:28:01.201 436478 19952 0 0 15963 2025-03-20 08:41:46.305 2025-03-20 08:41:46.305 436479 986 1 0 15964 2025-03-20 08:42:55.114 2025-03-20 08:42:55.114 436479 1010 0 0 15965 2025-03-20 08:43:44.081 2025-03-20 08:43:44.081 436479 10986 0 0 15966 2025-03-20 08:42:20.621 2025-03-20 08:42:20.621 436480 1638 1 0 15967 2025-03-20 08:48:55.88 2025-03-20 08:48:55.88 436480 7668 0 0 15968 2025-03-20 10:24:10.665 2025-03-20 10:24:10.665 436480 9366 9 0 15969 2025-03-20 10:24:10.665 2025-03-20 10:24:10.665 436480 21019 1 0 15970 2025-03-20 08:42:26.352 2025-03-20 08:42:26.352 436481 2942 1 0 15971 2025-03-20 11:39:45.689 2025-03-20 11:39:45.689 436481 4624 2 0 15972 2025-03-20 11:39:45.689 2025-03-20 11:39:45.689 436481 13547 19 0 15973 2025-03-20 08:44:33.576 2025-03-20 08:44:33.576 436481 13587 27 0 15974 2025-03-20 08:44:33.576 2025-03-20 08:44:33.576 436481 19394 3 0 15975 2025-03-20 08:42:39.422 2025-03-20 08:42:39.422 436482 1712 1 0 15976 2025-03-20 08:43:53.802 2025-03-20 08:43:53.802 436483 18069 1 0 15977 2025-03-20 08:44:04.447 2025-03-20 08:44:04.447 436483 20137 0 0 15978 2025-03-20 08:44:53.523 2025-03-20 08:44:53.523 436484 977 1 0 15979 2025-03-20 10:05:28.565 2025-03-20 10:05:28.565 436484 1009 1 0 15980 2025-03-20 10:05:28.565 2025-03-20 10:05:28.565 436484 6268 9 0 15981 2025-03-20 08:45:30.629 2025-03-20 08:45:30.629 436485 10280 1 0 15982 2025-03-20 08:54:04.149 2025-03-20 08:54:04.149 436486 1564 9 0 15983 2025-03-20 08:54:04.272 2025-03-20 08:54:04.272 436486 3979 9 0 15984 2025-03-20 08:54:04.149 2025-03-20 08:54:04.149 436486 8004 1 0 15985 2025-03-20 08:54:04.272 2025-03-20 08:54:04.272 436486 19502 1 0 15986 2025-03-20 08:45:35.566 2025-03-20 08:45:35.566 436486 20436 1 0 15987 2025-03-20 09:04:24.504 2025-03-20 09:04:24.504 436487 2844 0 0 15988 2025-03-20 09:04:25.478 2025-03-20 09:04:25.478 436487 7654 9 0 15989 2025-03-20 09:04:24.785 2025-03-20 09:04:24.785 436487 13553 8 0 15990 2025-03-20 09:04:24.504 2025-03-20 09:04:24.504 436487 14607 1 0 15991 2025-03-20 09:04:24.785 2025-03-20 09:04:24.785 436487 17798 1 0 15992 2025-03-20 08:45:47.84 2025-03-20 08:45:47.84 436487 18678 10 0 15993 2025-03-20 10:59:27.491 2025-03-20 10:59:27.491 436487 20454 19 0 15994 2025-03-20 10:59:27.491 2025-03-20 10:59:27.491 436487 21090 2 0 15995 2025-03-20 09:04:25.478 2025-03-20 09:04:25.478 436487 21520 81 0 15996 2025-03-20 08:47:56.69 2025-03-20 08:47:56.69 436488 998 19 0 15997 2025-03-20 08:47:56.69 2025-03-20 08:47:56.69 436488 7960 2 0 15998 2025-03-20 08:46:19.642 2025-03-20 08:46:19.642 436488 9335 1 0 15999 2025-03-20 09:46:58.97 2025-03-20 09:46:58.97 436488 9796 1 0 16000 2025-03-20 09:46:58.97 2025-03-20 09:46:58.97 436488 21803 0 0 16001 2025-03-20 08:55:24.484 2025-03-20 08:55:24.484 436489 640 1 0 16002 2025-03-20 08:55:23.08 2025-03-20 08:55:23.08 436489 681 9 0 16003 2025-03-20 08:55:23.08 2025-03-20 08:55:23.08 436489 746 1 0 16004 2025-03-20 08:55:23.531 2025-03-20 08:55:23.531 436489 749 9 0 16005 2025-03-20 08:47:01.551 2025-03-20 08:47:01.551 436489 1426 1 0 16006 2025-03-20 11:39:46.648 2025-03-20 11:39:46.648 436489 2718 2 0 16007 2025-03-20 08:55:23.531 2025-03-20 08:55:23.531 436489 5522 1 0 16008 2025-03-20 08:55:24.974 2025-03-20 08:55:24.974 436489 5661 9 0 16009 2025-03-20 11:39:46.648 2025-03-20 11:39:46.648 436489 9418 19 0 16010 2025-03-20 08:55:24.484 2025-03-20 08:55:24.484 436489 11158 9 0 16011 2025-03-20 08:55:24.071 2025-03-20 08:55:24.071 436489 15119 9 0 16012 2025-03-20 08:55:24.974 2025-03-20 08:55:24.974 436489 18678 1 0 16013 2025-03-20 08:55:24.071 2025-03-20 08:55:24.071 436489 20778 1 0 16014 2025-03-20 08:49:51.808 2025-03-20 08:49:51.808 436490 726 1 0 16015 2025-03-20 08:56:17.68 2025-03-20 08:56:17.68 436490 1469 0 0 16016 2025-03-20 09:47:03.121 2025-03-20 09:47:03.121 436490 4776 0 0 16017 2025-03-20 09:47:03.121 2025-03-20 09:47:03.121 436490 15843 1 0 16018 2025-03-20 08:49:51.808 2025-03-20 08:49:51.808 436490 18017 9 0 16019 2025-03-20 08:47:52.063 2025-03-20 08:47:52.063 436490 21556 1 0 16020 2025-03-20 08:58:02.705 2025-03-20 08:58:02.705 436491 1705 9 0 16021 2025-03-20 08:58:02.528 2025-03-20 08:58:02.528 436491 5828 1 0 16022 2025-03-20 08:58:02.315 2025-03-20 08:58:02.315 436491 8380 1 0 16023 2025-03-20 14:28:57.271 2025-03-20 14:28:57.271 436491 9354 9 0 16024 2025-03-20 11:50:56.057 2025-03-20 11:50:56.057 436491 9355 2 0 16025 2025-03-20 09:10:38.131 2025-03-20 09:10:38.131 436491 10352 19 0 16026 2025-03-20 08:51:11.539 2025-03-20 08:51:11.539 436491 10821 4 0 16027 2025-03-20 08:50:30.448 2025-03-20 08:50:30.448 436491 12072 3 0 16028 2025-03-20 08:58:02.528 2025-03-20 08:58:02.528 436491 14255 9 0 16029 2025-03-20 08:58:02.315 2025-03-20 08:58:02.315 436491 15180 9 0 16030 2025-03-20 11:50:56.057 2025-03-20 11:50:56.057 436491 16042 14 0 16031 2025-03-20 08:50:30.448 2025-03-20 08:50:30.448 436491 16684 27 0 16032 2025-03-20 14:28:57.732 2025-03-20 14:28:57.732 436491 18069 1 0 16033 2025-03-20 14:28:57.732 2025-03-20 14:28:57.732 436491 18426 9 0 16034 2025-03-20 09:10:38.131 2025-03-20 09:10:38.131 436491 18557 2 0 16035 2025-03-20 14:28:57.271 2025-03-20 14:28:57.271 436491 20500 1 0 16036 2025-03-20 08:48:47.769 2025-03-20 08:48:47.769 436491 20710 10 0 16037 2025-03-20 08:58:02.876 2025-03-20 08:58:02.876 436491 21091 9 0 16038 2025-03-20 08:51:11.539 2025-03-20 08:51:11.539 436491 21145 36 0 16039 2025-03-20 08:58:02.705 2025-03-20 08:58:02.705 436491 21555 1 0 16040 2025-03-20 08:58:02.876 2025-03-20 08:58:02.876 436491 21797 1 0 16041 2025-03-20 08:54:36.977 2025-03-20 08:54:36.977 436492 647 27 0 16042 2025-03-20 09:25:40.665 2025-03-20 09:25:40.665 436492 775 1 0 16043 2025-03-20 09:25:40.955 2025-03-20 09:25:40.955 436492 897 0 0 16044 2025-03-20 09:25:40.121 2025-03-20 09:25:40.121 436492 965 1 0 16045 2025-03-20 09:25:41.766 2025-03-20 09:25:41.766 436492 2000 2 0 16046 2025-03-20 09:25:40.121 2025-03-20 09:25:40.121 436492 5293 0 0 16047 2025-03-20 09:25:41.181 2025-03-20 09:25:41.181 436492 11144 1 0 16048 2025-03-20 09:25:40.955 2025-03-20 09:25:40.955 436492 12097 1 0 16049 2025-03-20 09:56:19.002 2025-03-20 09:56:19.002 436492 12139 3 0 16050 2025-03-20 09:25:40.665 2025-03-20 09:25:40.665 436492 15200 0 0 16051 2025-03-20 08:54:36.977 2025-03-20 08:54:36.977 436492 15367 3 0 16052 2025-03-20 08:54:37.558 2025-03-20 08:54:37.558 436492 15624 27 0 16053 2025-03-20 09:25:41.766 2025-03-20 09:25:41.766 436492 16177 0 0 16054 2025-03-20 08:49:17.609 2025-03-20 08:49:17.609 436492 17824 1 0 16055 2025-03-20 08:54:37.558 2025-03-20 08:54:37.558 436492 18274 243 0 16056 2025-03-20 09:25:41.181 2025-03-20 09:25:41.181 436492 19484 0 0 16057 2025-03-20 08:49:57.09 2025-03-20 08:49:57.09 436492 20059 0 0 16058 2025-03-20 09:56:19.002 2025-03-20 09:56:19.002 436492 21296 23 0 16059 2025-03-20 09:07:04.07 2025-03-20 09:07:04.07 436493 27 2 0 16060 2025-03-20 09:07:39.729 2025-03-20 09:07:39.729 436493 618 21 0 16061 2025-03-20 09:07:04.816 2025-03-20 09:07:04.816 436493 638 21 0 16062 2025-03-20 09:07:01.246 2025-03-20 09:07:33.544 436493 666 23 0 16063 2025-03-20 09:28:16.347 2025-03-20 09:28:16.347 436493 686 1 0 16064 2025-03-20 09:28:15.314 2025-03-20 09:28:15.314 436493 690 1 0 16065 2025-03-20 09:07:38.53 2025-03-20 09:07:38.53 436493 692 2 0 16066 2025-03-20 09:07:44.732 2025-03-20 09:07:44.732 436493 698 21 0 16067 2025-03-20 09:54:26.519 2025-03-20 09:54:26.519 436493 701 2 0 16068 2025-03-20 09:07:36.128 2025-03-20 09:07:36.128 436493 708 2 0 16069 2025-03-20 09:07:43.6 2025-03-20 09:07:43.6 436493 725 2 0 16070 2025-03-20 09:07:38.169 2025-03-20 09:07:38.169 436493 902 2 0 16071 2025-03-20 09:07:04.07 2025-03-20 09:07:04.07 436493 925 21 0 16072 2025-03-20 09:07:44.235 2025-03-20 09:07:44.235 436493 937 21 0 16073 2025-03-20 09:07:03.191 2025-03-20 09:07:03.191 436493 956 2 0 16074 2025-03-20 09:07:43.378 2025-03-20 09:07:43.378 436493 977 21 0 16075 2025-03-20 09:28:15.721 2025-03-20 09:28:15.721 436493 994 0 0 16076 2025-03-20 09:07:03.025 2025-03-20 09:07:03.025 436493 1012 2 0 16077 2025-03-20 09:07:35.306 2025-03-20 11:45:17.961 436493 1038 14 0 16078 2025-03-20 09:07:40.753 2025-03-20 09:07:43.882 436493 1039 23 0 16079 2025-03-20 09:47:33.184 2025-03-20 09:47:33.184 436493 1044 2 0 16080 2025-03-20 09:07:34.793 2025-03-20 09:07:34.793 436493 1120 2 0 16081 2025-03-20 09:07:05.154 2025-03-20 09:07:37.332 436493 1130 23 0 16082 2025-03-20 09:07:36.995 2025-03-20 09:07:36.995 436493 1307 21 0 16083 2025-03-20 09:07:42.467 2025-03-20 09:07:42.467 436493 1316 2 0 16084 2025-03-20 11:21:23.811 2025-03-20 11:21:23.811 436493 1352 1 0 16085 2025-03-20 09:07:05.334 2025-03-20 09:07:05.334 436493 1389 2 0 16086 2025-03-20 11:21:24.1 2025-03-20 11:21:24.1 436493 1433 8 0 16087 2025-03-20 09:28:17.253 2025-03-20 09:28:17.253 436493 1471 1 0 16088 2025-03-20 09:07:04.45 2025-03-20 09:07:04.45 436493 1505 21 0 16089 2025-03-20 09:07:44.388 2025-03-20 09:07:44.388 436493 1549 2 0 16090 2025-03-20 09:07:04.237 2025-03-20 09:07:04.237 436493 1571 2 0 16091 2025-03-20 09:07:42.13 2025-03-20 09:07:42.13 436493 1596 21 0 16092 2025-03-20 09:07:43.716 2025-03-20 09:07:43.716 436493 1647 2 0 16093 2025-03-20 09:07:34.193 2025-03-20 09:07:34.193 436493 1697 2 0 16094 2025-03-20 09:07:03.547 2025-03-20 09:07:03.547 436493 1729 21 0 16095 2025-03-20 11:45:17.977 2025-03-20 11:45:17.977 436493 1751 19 0 16096 2025-03-20 09:07:33.674 2025-03-20 09:07:33.674 436493 1806 21 0 16097 2025-03-20 09:47:44.999 2025-03-20 09:47:44.999 436493 1983 19 0 16098 2025-03-20 09:07:35.793 2025-03-20 09:07:40.586 436493 1985 23 0 16099 2025-03-20 10:35:03.747 2025-03-20 10:35:03.747 436493 2022 1 0 16100 2025-03-20 11:45:17.961 2025-03-20 11:45:17.961 436493 2088 19 0 16101 2025-03-20 09:36:47.745 2025-03-20 09:36:47.745 436493 2156 30 0 16102 2025-03-20 09:28:15.11 2025-03-20 09:28:15.11 436493 2204 0 0 16103 2025-03-20 09:07:45.149 2025-03-20 09:07:45.149 436493 2330 2 0 16104 2025-03-20 09:07:44.071 2025-03-20 09:28:15.314 436493 2338 21 0 16105 2025-03-20 09:07:36.296 2025-03-20 09:07:36.296 436493 2347 2 0 16106 2025-03-20 09:07:41.812 2025-03-20 09:07:41.812 436493 2528 2 0 16107 2025-03-20 09:28:16.831 2025-03-20 09:28:16.831 436493 2593 1 0 16108 2025-03-20 10:59:15.642 2025-03-20 10:59:15.642 436493 2711 2 0 16109 2025-03-20 09:07:42.296 2025-03-20 09:07:42.296 436493 2722 21 0 16110 2025-03-20 09:07:03.025 2025-03-20 09:07:03.025 436493 2963 21 0 16111 2025-03-20 09:07:00.279 2025-03-20 09:07:00.279 436493 3353 7 0 16112 2025-03-20 09:07:41.097 2025-03-20 09:07:44.071 436493 3392 7 0 16113 2025-03-20 09:07:43.6 2025-03-20 09:07:43.6 436493 3396 21 0 16114 2025-03-20 09:47:33.184 2025-03-20 09:47:33.184 436493 3686 19 0 16115 2025-03-20 10:46:34.653 2025-03-20 10:46:34.653 436493 4043 1 0 16116 2025-03-20 09:07:37.332 2025-03-20 09:07:37.332 436493 4074 21 0 16117 2025-03-20 09:07:41.964 2025-03-20 09:07:41.964 436493 4167 21 0 16118 2025-03-20 09:20:31.159 2025-03-20 09:20:31.159 436493 4292 90 0 16119 2025-03-20 09:07:33.074 2025-03-20 09:07:33.074 436493 5036 5 0 16120 2025-03-20 09:28:15.531 2025-03-20 09:28:15.531 436493 5306 0 0 16121 2025-03-20 09:28:14.872 2025-03-20 09:28:14.872 436493 5359 1 0 16122 2025-03-20 09:07:00.696 2025-03-20 09:07:00.696 436493 5444 2 0 16123 2025-03-20 12:08:30.018 2025-03-20 12:08:30.018 436493 5495 4 0 16124 2025-03-20 09:07:44.953 2025-03-20 09:07:44.953 436493 6136 21 0 16125 2025-03-20 09:07:32.829 2025-03-20 09:07:32.829 436493 6382 21 0 16126 2025-03-20 09:07:03.766 2025-03-20 09:07:03.766 436493 7674 2 0 16127 2025-03-20 09:07:34.193 2025-03-20 09:07:43.716 436493 7682 41 0 16128 2025-03-20 09:52:59.018 2025-03-20 09:52:59.018 436493 7903 19 0 16129 2025-03-20 09:07:34.595 2025-03-20 09:07:36.995 436493 7966 5 0 16130 2025-03-20 13:32:23.115 2025-03-20 13:32:23.115 436493 8037 1 0 16131 2025-03-20 09:07:36.835 2025-03-20 09:07:36.835 436493 8245 21 0 16132 2025-03-20 10:46:34.874 2025-03-20 10:46:34.874 436493 8954 1 0 16133 2025-03-20 09:07:37.163 2025-03-20 09:07:44.567 436493 9169 23 0 16134 2025-03-20 09:07:39.908 2025-03-20 09:52:59.018 436493 9171 4 0 16135 2025-03-20 09:07:36.447 2025-03-20 09:07:36.447 436493 9275 2 0 16136 2025-03-20 09:07:03.191 2025-03-20 09:07:42.296 436493 9295 23 0 16137 2025-03-20 09:07:04.237 2025-03-20 09:07:04.237 436493 9329 21 0 16138 2025-03-20 09:28:16.347 2025-03-20 09:28:16.347 436493 9335 0 0 16139 2025-03-20 09:47:44.999 2025-03-20 09:47:44.999 436493 9366 2 0 16140 2025-03-20 09:28:16.032 2025-03-20 09:28:16.032 436493 9476 1 0 16141 2025-03-20 09:07:33.074 2025-03-20 09:07:33.074 436493 9906 41 0 16142 2025-03-20 09:07:42.946 2025-03-20 09:07:42.946 436493 9969 21 0 16143 2025-03-20 11:21:23.811 2025-03-20 11:21:23.811 436493 10016 0 0 16144 2025-03-20 09:07:02.013 2025-03-20 09:07:02.013 436493 10060 7 0 16145 2025-03-20 09:28:15.11 2025-03-20 09:28:15.11 436493 10393 1 0 16146 2025-03-20 09:07:35.63 2025-03-20 09:07:35.63 436493 10934 2 0 16147 2025-03-20 09:07:04.816 2025-03-20 09:07:04.816 436493 11423 2 0 16148 2025-03-20 09:07:01.246 2025-03-20 09:07:01.246 436493 11450 21 0 16149 2025-03-20 09:07:34.025 2025-03-20 09:07:34.025 436493 11523 2 0 16150 2025-03-20 09:28:14.291 2025-03-20 09:28:14.291 436493 11609 0 0 16151 2025-03-20 09:28:15.531 2025-03-20 09:28:15.531 436493 11678 1 0 16152 2025-03-20 09:28:16.032 2025-03-20 09:28:16.032 436493 11798 0 0 16153 2025-03-20 09:07:41.733 2025-03-20 09:07:41.733 436493 12072 21 0 16154 2025-03-20 09:54:26.519 2025-03-20 09:54:26.519 436493 12102 19 0 16155 2025-03-20 09:28:15.721 2025-03-20 09:28:15.721 436493 12483 1 0 16156 2025-03-20 09:07:36.447 2025-03-20 09:07:36.447 436493 12561 21 0 16157 2025-03-20 09:07:03.359 2025-03-20 09:07:03.359 436493 12562 2 0 16158 2025-03-20 09:07:38.169 2025-03-20 09:07:38.169 436493 12819 21 0 16159 2025-03-20 09:07:41.812 2025-03-20 09:07:41.812 436493 13100 21 0 16160 2025-03-20 09:07:43.378 2025-03-20 09:07:43.378 436493 13169 2 0 16161 2025-03-20 09:28:14.872 2025-03-20 09:28:14.872 436493 13843 0 0 16162 2025-03-20 09:28:16.148 2025-03-20 09:28:16.148 436493 14657 1 0 16163 2025-03-20 09:07:44.388 2025-03-20 09:07:44.388 436493 14909 21 0 16164 2025-03-20 13:32:23.115 2025-03-20 13:32:23.115 436493 15200 9 0 16165 2025-03-20 09:07:42.13 2025-03-20 09:07:42.13 436493 15549 2 0 16166 2025-03-20 09:07:42.946 2025-03-20 09:07:42.946 436493 15617 2 0 16167 2025-03-20 09:07:33.866 2025-03-20 09:07:33.866 436493 15662 2 0 16168 2025-03-20 09:07:00.279 2025-03-20 09:07:00.279 436493 16230 62 0 16169 2025-03-20 09:07:40.236 2025-03-20 09:07:40.236 436493 16301 2 0 16170 2025-03-20 09:07:34.595 2025-03-20 09:07:34.595 436493 16354 21 0 16171 2025-03-20 09:07:05.154 2025-03-20 09:07:05.154 436493 16387 2 0 16172 2025-03-20 12:08:30.018 2025-03-20 12:08:30.018 436493 16594 36 0 16173 2025-03-20 09:07:03.359 2025-03-20 09:07:03.359 436493 16653 21 0 16174 2025-03-20 09:07:43.882 2025-03-20 09:07:43.882 436493 16660 2 0 16175 2025-03-20 09:28:17.018 2025-03-20 09:28:17.018 436493 16680 0 0 16176 2025-03-20 09:07:44.567 2025-03-20 09:07:44.567 436493 16816 21 0 16177 2025-03-20 09:07:45.149 2025-03-20 09:07:45.149 436493 16912 21 0 16178 2025-03-20 09:07:39.584 2025-03-20 09:07:39.584 436493 16956 2 0 16179 2025-03-20 09:07:05.334 2025-03-20 09:07:05.334 436493 16988 21 0 16180 2025-03-20 09:07:02.132 2025-03-20 09:07:02.132 436493 17050 41 0 16181 2025-03-20 09:07:40.067 2025-03-20 09:07:40.067 436493 17095 21 0 16182 2025-03-20 09:07:41.964 2025-03-20 09:07:41.964 436493 17201 2 0 16183 2025-03-20 09:07:33.866 2025-03-20 09:07:33.866 436493 17209 21 0 16184 2025-03-20 08:49:24.956 2025-03-20 08:49:24.956 436493 17218 210 0 16185 2025-03-20 10:46:34.653 2025-03-20 10:46:34.653 436493 17321 10 0 16186 2025-03-20 09:07:43.078 2025-03-20 09:07:43.078 436493 17392 2 0 16187 2025-03-20 09:07:34.793 2025-03-20 09:07:34.793 436493 17517 21 0 16188 2025-03-20 09:07:44.953 2025-03-20 09:07:44.953 436493 17526 2 0 16189 2025-03-20 09:07:35.963 2025-03-20 09:07:35.963 436493 17638 21 0 16190 2025-03-20 09:07:35.963 2025-03-20 09:07:35.963 436493 17693 2 0 16191 2025-03-20 09:07:37.809 2025-03-20 09:07:37.809 436493 17710 7 0 16192 2025-03-20 09:07:04.631 2025-03-20 09:07:04.631 436493 17944 21 0 16193 2025-03-20 09:28:16.148 2025-03-20 09:28:16.148 436493 18069 0 0 16194 2025-03-20 09:28:17.018 2025-03-20 09:28:17.018 436493 18177 1 0 16195 2025-03-20 09:07:43.248 2025-03-20 09:07:43.248 436493 18330 2 0 16196 2025-03-20 09:07:02.132 2025-03-20 09:07:02.132 436493 18409 5 0 16197 2025-03-20 09:07:02.013 2025-03-20 09:07:02.013 436493 18426 62 0 16198 2025-03-20 09:07:41.733 2025-03-20 09:07:41.733 436493 18430 2 0 16199 2025-03-20 09:07:03.547 2025-03-20 09:07:03.547 436493 18673 2 0 16200 2025-03-20 09:07:34.361 2025-03-20 09:07:34.361 436493 18865 21 0 16201 2025-03-20 09:07:36.835 2025-03-20 09:07:36.835 436493 19263 2 0 16202 2025-03-20 09:07:39.908 2025-03-20 09:07:39.908 436493 19346 21 0 16203 2025-03-20 09:07:35.63 2025-03-20 09:07:35.63 436493 19378 21 0 16204 2025-03-20 09:07:35.793 2025-03-20 09:07:35.793 436493 19537 2 0 16205 2025-03-20 10:59:15.642 2025-03-20 11:21:24.1 436493 19576 20 0 16206 2025-03-20 09:28:14.69 2025-03-20 09:28:14.69 436493 19806 1 0 16207 2025-03-20 09:07:37.163 2025-03-20 09:07:37.163 436493 19812 2 0 16208 2025-03-20 09:06:22.028 2025-03-20 09:06:22.028 436493 19863 19 0 16209 2025-03-20 09:25:51.884 2025-03-20 09:25:51.884 436493 19888 8 0 16210 2025-03-20 09:07:35.306 2025-03-20 10:35:03.747 436493 19966 21 0 16211 2025-03-20 09:07:04.45 2025-03-20 09:07:04.45 436493 19980 2 0 16212 2025-03-20 09:07:40.236 2025-03-20 09:07:40.236 436493 20073 21 0 16213 2025-03-20 09:28:14.291 2025-03-20 09:28:14.291 436493 20137 3 0 16214 2025-03-20 09:07:44.235 2025-03-20 09:07:44.235 436493 20185 2 0 16215 2025-03-20 09:28:16.831 2025-03-20 09:28:16.831 436493 20310 0 0 16216 2025-03-20 09:07:32.829 2025-03-20 09:07:32.829 436493 20450 2 0 16217 2025-03-20 09:20:31.159 2025-03-20 09:20:31.159 436493 20454 10 0 16218 2025-03-20 09:07:35.464 2025-03-20 09:07:41.097 436493 20511 44 0 16219 2025-03-20 11:45:17.977 2025-03-20 11:45:17.977 436493 20613 2 0 16220 2025-03-20 09:52:58.863 2025-03-20 09:52:58.863 436493 20619 2 0 16221 2025-03-20 09:25:51.884 2025-03-20 09:25:51.884 436493 20680 75 0 16222 2025-03-20 09:07:34.361 2025-03-20 09:07:40.753 436493 20715 23 0 16223 2025-03-20 09:07:38.53 2025-03-20 09:07:38.53 436493 20717 21 0 16224 2025-03-20 09:07:42.467 2025-03-20 09:07:42.467 436493 20778 21 0 16225 2025-03-20 09:07:35.464 2025-03-20 09:07:35.464 436493 20841 21 0 16226 2025-03-20 09:07:40.067 2025-03-20 09:07:40.067 436493 20904 2 0 16227 2025-03-20 09:07:36.128 2025-03-20 09:07:36.128 436493 20924 21 0 16228 2025-03-20 09:07:43.078 2025-03-20 09:07:43.078 436493 20956 21 0 16229 2025-03-20 09:36:47.745 2025-03-20 09:36:47.745 436493 21088 3 0 16230 2025-03-20 09:07:33.674 2025-03-20 09:07:33.674 436493 21090 2 0 16231 2025-03-20 09:07:39.729 2025-03-20 09:07:39.729 436493 21145 2 0 16232 2025-03-20 09:06:22.028 2025-03-20 09:06:22.028 436493 21159 2 0 16233 2025-03-20 09:28:17.253 2025-03-20 09:28:17.253 436493 21202 0 0 16234 2025-03-20 09:07:04.631 2025-03-20 09:07:04.631 436493 21207 2 0 16235 2025-03-20 09:07:40.398 2025-03-20 09:07:40.398 436493 21208 21 0 16236 2025-03-20 09:07:39.584 2025-03-20 09:07:39.584 436493 21212 21 0 16237 2025-03-20 09:07:33.544 2025-03-20 09:07:33.544 436493 21238 2 0 16238 2025-03-20 09:07:44.732 2025-03-20 09:07:44.732 436493 21247 2 0 16239 2025-03-20 09:07:34.025 2025-03-20 09:07:34.025 436493 21275 21 0 16240 2025-03-20 09:52:58.863 2025-03-20 09:52:58.863 436493 21296 19 0 16241 2025-03-20 09:07:03.766 2025-03-20 09:07:03.766 436493 21320 21 0 16242 2025-03-20 09:07:36.296 2025-03-20 09:07:36.296 436493 21389 21 0 16243 2025-03-20 09:07:40.398 2025-03-20 09:07:40.398 436493 21393 2 0 16244 2025-03-20 09:07:37.809 2025-03-20 09:07:37.809 436493 21416 62 0 16245 2025-03-20 09:07:00.696 2025-03-20 09:07:00.696 436493 21571 21 0 16246 2025-03-20 09:28:14.69 2025-03-20 09:28:14.69 436493 21683 0 0 16247 2025-03-20 09:07:40.586 2025-03-20 09:07:40.586 436493 21709 21 0 16248 2025-03-20 09:07:43.248 2025-03-20 09:07:43.248 436493 21814 21 0 16249 2025-03-20 08:51:29.926 2025-03-20 08:51:29.926 436494 620 3 0 16250 2025-03-20 08:50:39.93 2025-03-20 08:50:39.93 436494 686 1 0 16251 2025-03-20 08:50:55.279 2025-03-20 08:50:55.279 436494 882 10 0 16252 2025-03-20 08:50:40.713 2025-03-20 08:50:40.713 436494 895 10 0 16253 2025-03-20 09:08:51.883 2025-03-20 09:08:51.883 436494 1620 2 0 16254 2025-03-20 08:50:55.279 2025-03-20 08:50:55.279 436494 1718 90 0 16255 2025-03-20 09:08:51.883 2025-03-20 09:08:51.883 436494 2000 19 0 16256 2025-03-20 08:51:29.926 2025-03-20 08:51:29.926 436494 2232 30 0 16257 2025-03-20 08:50:39.93 2025-03-20 08:50:39.93 436494 2293 10 0 16258 2025-03-20 08:54:14.037 2025-03-20 08:54:14.037 436494 2329 1 0 16259 2025-03-20 08:50:40.544 2025-03-20 08:50:40.544 436494 7913 10 0 16260 2025-03-20 08:54:14.037 2025-03-20 08:54:14.037 436494 11798 9 0 16261 2025-03-20 08:49:38.414 2025-03-20 08:49:38.414 436494 11999 100 0 16262 2025-03-20 10:59:25.908 2025-03-20 10:59:25.908 436494 13406 19 0 16263 2025-03-20 10:59:25.908 2025-03-20 10:59:25.908 436494 16536 2 0 16264 2025-03-20 08:50:40.544 2025-03-20 08:50:40.544 436494 17991 1 0 16265 2025-03-20 08:50:40.713 2025-03-20 08:50:40.713 436494 20757 1 0 16266 2025-03-20 09:08:44.296 2025-03-20 09:08:44.296 436494 21037 0 0 16267 2025-03-20 08:54:45.806 2025-03-20 08:54:45.806 436494 21057 0 0 16268 2025-03-20 09:08:44.296 2025-03-20 09:08:44.296 436494 21373 1 0 16269 2025-03-20 09:47:11.142 2025-03-20 09:47:11.142 436495 1352 1 0 16270 2025-03-20 09:31:32.242 2025-03-20 09:31:32.242 436495 7992 19 0 16271 2025-03-20 09:31:32.242 2025-03-20 09:31:32.242 436495 19966 2 0 16272 2025-03-20 08:51:14.164 2025-03-20 08:51:14.164 436495 20904 1 0 16273 2025-03-20 09:47:11.142 2025-03-20 09:47:11.142 436495 21791 0 0 16274 2025-03-20 08:52:26.207 2025-03-20 08:52:26.207 436496 717 8 0 16275 2025-03-20 08:52:26.207 2025-03-20 08:52:26.207 436496 8535 1 0 16276 2025-03-20 08:52:26.036 2025-03-20 08:52:26.036 436496 17201 0 0 16277 2025-03-20 08:52:26.036 2025-03-20 08:52:26.036 436496 19193 1 0 16278 2025-03-20 08:51:44.866 2025-03-20 08:51:44.866 436496 20710 1 0 16279 2025-03-20 08:52:03.726 2025-03-20 08:52:03.726 436497 2639 1 0 16280 2025-03-20 09:03:57.991 2025-03-20 09:03:57.991 436498 13162 283 0 16281 2025-03-20 09:31:28.894 2025-03-20 09:31:28.894 436498 13169 9 0 16282 2025-03-20 09:03:57.991 2025-03-20 09:03:57.991 436498 16259 31 0 16283 2025-03-20 08:53:17.248 2025-03-20 08:53:17.248 436498 17533 1 0 16284 2025-03-20 09:31:28.894 2025-03-20 09:31:28.894 436498 21274 1 0 16285 2025-03-20 10:09:31.432 2025-03-20 10:09:31.432 436499 627 75 0 16286 2025-03-20 10:09:31.432 2025-03-20 10:09:31.432 436499 657 8 0 16287 2025-03-20 10:08:32.825 2025-03-20 10:08:32.825 436499 680 21 0 16288 2025-03-20 10:08:33.462 2025-03-20 10:08:33.462 436499 716 2 0 16289 2025-03-20 10:09:30.606 2025-03-20 10:09:30.606 436499 928 17 0 16290 2025-03-20 11:40:22.056 2025-03-20 11:40:22.056 436499 987 75 0 16291 2025-03-20 11:40:22.056 2025-03-20 11:40:22.056 436499 993 8 0 16292 2025-03-20 10:09:30.428 2025-03-20 10:09:30.428 436499 1012 8 0 16293 2025-03-20 10:09:30.606 2025-03-20 10:09:30.606 436499 1471 149 0 16294 2025-03-20 10:08:33.102 2025-03-20 10:08:33.102 436499 1495 21 0 16295 2025-03-20 10:08:32.971 2025-03-20 10:08:32.971 436499 1615 21 0 16296 2025-03-20 10:08:32.657 2025-03-20 10:08:32.657 436499 1890 21 0 16297 2025-03-20 11:40:21.366 2025-03-20 11:40:21.366 436499 2016 75 0 16298 2025-03-20 09:42:37.06 2025-03-20 09:42:37.06 436499 2309 0 21 16299 2025-03-20 11:40:21.366 2025-03-20 11:40:21.366 436499 2577 8 0 16300 2025-03-20 11:40:22.871 2025-03-20 11:40:22.871 436499 4079 149 0 16301 2025-03-20 11:40:22.221 2025-03-20 11:40:22.221 436499 5746 8 0 16302 2025-03-20 11:13:33.169 2025-03-20 11:13:33.169 436499 5761 0 10 16303 2025-03-20 11:40:05.181 2025-03-20 11:40:05.181 436499 6616 2 0 16304 2025-03-20 10:08:32.657 2025-03-20 10:08:32.657 436499 7682 2 0 16305 2025-03-20 08:53:44.177 2025-03-20 08:53:44.177 436499 7916 100 0 16306 2025-03-20 10:08:33.195 2025-03-20 10:08:33.195 436499 8287 21 0 16307 2025-03-20 11:40:22.026 2025-03-20 11:40:22.026 436499 8505 8 0 16308 2025-03-20 11:40:21.157 2025-03-20 11:40:21.157 436499 9346 75 0 16309 2025-03-20 10:08:32.825 2025-03-20 10:08:32.825 436499 9353 2 0 16310 2025-03-20 11:56:19.209 2025-03-20 11:56:19.209 436499 9820 0 0 16311 2025-03-20 10:09:30.143 2025-03-20 10:09:30.143 436499 10698 8 0 16312 2025-03-20 11:40:21.835 2025-03-20 11:40:21.835 436499 10981 75 0 16313 2025-03-20 10:09:30.143 2025-03-20 10:09:30.143 436499 12072 75 0 16314 2025-03-20 11:40:21.711 2025-03-20 11:40:21.711 436499 14381 75 0 16315 2025-03-20 10:08:33.601 2025-03-20 10:08:33.601 436499 14990 2 0 16316 2025-03-20 11:40:22.026 2025-03-20 11:40:22.026 436499 15226 75 0 16317 2025-03-20 11:40:22.289 2025-03-20 11:40:22.289 436499 15367 8 0 16318 2025-03-20 10:09:32.712 2025-03-20 10:09:32.712 436499 16788 149 0 16319 2025-03-20 11:40:22.221 2025-03-20 11:40:22.221 436499 16834 75 0 16320 2025-03-20 13:32:30.027 2025-03-20 13:32:30.027 436499 16847 9 0 16321 2025-03-20 10:08:33.462 2025-03-20 10:08:33.462 436499 16876 21 0 16322 2025-03-20 11:40:21.835 2025-03-20 11:40:21.835 436499 17124 8 0 16323 2025-03-20 10:08:33.102 2025-03-20 10:08:33.102 436499 18068 2 0 16324 2025-03-20 11:40:21.711 2025-03-20 11:40:21.711 436499 18101 8 0 16325 2025-03-20 10:08:33.195 2025-03-20 10:08:33.195 436499 18615 2 0 16326 2025-03-20 10:08:33.319 2025-03-20 10:08:33.319 436499 19117 2 0 16327 2025-03-20 11:40:21.157 2025-03-20 11:40:21.157 436499 19217 8 0 16328 2025-03-20 10:08:32.971 2025-03-20 10:08:32.971 436499 19459 2 0 16329 2025-03-20 10:08:32.511 2025-03-20 10:08:32.511 436499 19535 21 0 16330 2025-03-20 10:09:32.712 2025-03-20 10:09:32.712 436499 19668 17 0 16331 2025-03-20 10:59:16.743 2025-03-20 10:59:16.743 436499 20094 19 0 16332 2025-03-20 10:09:30.428 2025-03-20 10:09:30.428 436499 20099 75 0 16333 2025-03-20 11:40:22.289 2025-03-20 11:40:22.289 436499 20180 75 0 16334 2025-03-20 10:08:33.601 2025-03-20 10:08:33.601 436499 20509 21 0 16335 2025-03-20 11:40:21.371 2025-03-20 11:40:21.371 436499 20616 8 0 16336 2025-03-20 10:08:33.319 2025-03-20 10:08:33.319 436499 20812 21 0 16337 2025-03-20 10:08:32.511 2025-03-20 10:08:32.511 436499 20892 2 0 16338 2025-03-20 11:40:05.181 2025-03-20 11:40:05.181 436499 21218 19 0 16339 2025-03-20 11:56:19.209 2025-03-20 11:56:19.209 436499 21444 1 0 16340 2025-03-20 13:32:30.027 2025-03-20 13:32:30.027 436499 21506 1 0 16341 2025-03-20 11:40:21.371 2025-03-20 11:40:21.371 436499 21547 75 0 16342 2025-03-20 10:59:16.743 2025-03-20 10:59:16.743 436499 21670 2 0 16343 2025-03-20 11:40:22.871 2025-03-20 11:40:22.871 436499 21798 17 0 16344 2025-03-20 08:53:51.216 2025-03-20 08:53:51.216 436500 19332 1 0 16345 2025-03-20 09:26:23.145 2025-03-20 09:26:23.145 436501 1352 1 0 16346 2025-03-20 09:26:23.145 2025-03-20 09:26:23.145 436501 12072 9 0 16347 2025-03-20 08:56:09.73 2025-03-20 08:56:09.73 436501 16410 1 0 16348 2025-03-20 08:56:49.462 2025-03-20 08:56:49.462 436502 11395 1 0 16349 2025-03-20 11:39:47.238 2025-03-20 11:39:47.238 436503 925 19 0 16350 2025-03-20 11:39:47.238 2025-03-20 11:39:47.238 436503 928 2 0 16351 2025-03-20 08:57:21.826 2025-03-20 08:57:21.826 436503 12356 1 0 16352 2025-03-20 08:59:28.632 2025-03-20 08:59:28.632 436503 12821 27 0 16353 2025-03-20 08:59:28.632 2025-03-20 08:59:28.632 436503 21814 3 0 16354 2025-03-20 09:20:55.512 2025-03-20 09:20:55.512 436504 666 1 0 16355 2025-03-20 09:20:57.386 2025-03-20 09:20:57.386 436504 1136 1 0 16356 2025-03-20 09:20:55.512 2025-03-20 09:20:55.512 436504 1298 9 0 16357 2025-03-20 09:20:54.482 2025-03-20 09:20:54.482 436504 1352 9 0 16358 2025-03-20 09:20:58.401 2025-03-20 09:20:58.401 436504 1611 9 0 16359 2025-03-20 09:20:58.295 2025-03-20 09:20:58.295 436504 1720 1 0 16360 2025-03-20 09:20:56.587 2025-03-20 09:20:56.587 436504 1833 1 0 16361 2025-03-20 09:20:58.064 2025-03-20 09:20:58.064 436504 1983 1 0 16362 2025-03-20 09:20:54.649 2025-03-20 09:20:54.649 436504 4167 1 0 16363 2025-03-20 09:20:56.67 2025-03-20 09:20:56.67 436504 4345 9 0 16364 2025-03-20 09:20:56.67 2025-03-20 09:20:56.67 436504 5455 1 0 16365 2025-03-20 09:20:58.862 2025-03-20 09:20:58.862 436504 5746 1 0 16366 2025-03-20 09:20:57.892 2025-03-20 09:20:57.892 436504 5757 9 0 16367 2025-03-20 09:20:58.064 2025-03-20 09:20:58.064 436504 5759 9 0 16368 2025-03-20 09:20:59.118 2025-03-20 09:20:59.118 436504 5904 1 0 16369 2025-03-20 09:20:56.886 2025-03-20 09:20:56.886 436504 7818 1 0 16370 2025-03-20 09:20:56.886 2025-03-20 09:20:56.886 436504 7903 9 0 16371 2025-03-20 08:58:06.289 2025-03-20 08:58:06.289 436504 8245 1 0 16372 2025-03-20 09:20:54.649 2025-03-20 09:20:54.649 436504 9261 9 0 16373 2025-03-20 09:20:58.401 2025-03-20 09:20:58.401 436504 9334 1 0 16374 2025-03-20 09:20:57.547 2025-03-20 09:20:57.547 436504 9426 9 0 16375 2025-03-20 09:20:57.724 2025-03-20 09:20:57.724 436504 10944 9 0 16376 2025-03-20 09:20:57.213 2025-03-20 09:20:57.213 436504 11275 9 0 16377 2025-03-20 09:20:56.148 2025-03-20 09:20:56.148 436504 11423 1 0 16378 2025-03-20 09:20:57.386 2025-03-20 09:20:57.386 436504 12768 9 0 16379 2025-03-20 09:20:58.862 2025-03-20 09:20:58.862 436504 13133 9 0 16380 2025-03-20 09:20:57.724 2025-03-20 09:20:57.724 436504 14381 1 0 16381 2025-03-20 09:20:56.32 2025-03-20 09:20:56.32 436504 14404 1 0 16382 2025-03-20 09:20:58.295 2025-03-20 09:20:58.295 436504 15052 9 0 16383 2025-03-20 09:20:56.148 2025-03-20 09:20:56.148 436504 16684 9 0 16384 2025-03-20 09:20:56.32 2025-03-20 09:20:56.32 436504 17064 9 0 16385 2025-03-20 09:20:54.96 2025-03-20 09:20:54.96 436504 18116 2 0 16386 2025-03-20 09:20:54.96 2025-03-20 09:20:54.96 436504 18735 18 0 16387 2025-03-20 09:20:56.587 2025-03-20 09:20:56.587 436504 19459 9 0 16388 2025-03-20 09:20:57.547 2025-03-20 09:20:57.547 436504 20623 1 0 16389 2025-03-20 09:20:54.482 2025-03-20 09:20:54.482 436504 20674 1 0 16390 2025-03-20 09:20:57.213 2025-03-20 09:20:57.213 436504 21090 1 0 16391 2025-03-20 09:20:59.118 2025-03-20 09:20:59.118 436504 21166 9 0 16392 2025-03-20 09:20:55.974 2025-03-20 09:20:55.974 436504 21555 1 0 16393 2025-03-20 09:20:57.892 2025-03-20 09:20:57.892 436504 21768 1 0 16394 2025-03-20 09:20:55.974 2025-03-20 09:20:55.974 436504 21794 9 0 16395 2025-03-20 09:05:24.21 2025-03-20 09:05:24.21 436505 993 21 0 16396 2025-03-20 09:05:23.247 2025-03-20 09:05:23.247 436505 1008 21 0 16397 2025-03-20 09:05:24.21 2025-03-20 09:05:24.21 436505 1038 2 0 16398 2025-03-20 09:05:23.711 2025-03-20 09:05:23.711 436505 3213 21 0 16399 2025-03-20 09:05:23.417 2025-03-20 09:05:23.417 436505 6393 21 0 16400 2025-03-20 08:59:24.242 2025-03-20 08:59:24.242 436505 9169 1 0 16401 2025-03-20 09:05:23.855 2025-03-20 09:05:23.855 436505 13547 2 0 16402 2025-03-20 09:05:23.559 2025-03-20 09:05:23.559 436505 14255 21 0 16403 2025-03-20 09:05:24.378 2025-03-20 09:05:24.378 436505 14657 21 0 16404 2025-03-20 09:05:24.378 2025-03-20 09:05:24.378 436505 18901 2 0 16405 2025-03-20 09:05:24.07 2025-03-20 09:05:24.07 436505 19469 21 0 16406 2025-03-20 09:05:23.711 2025-03-20 09:05:23.711 436505 20059 2 0 16407 2025-03-20 09:05:23.559 2025-03-20 09:05:23.559 436505 20745 2 0 16408 2025-03-20 09:05:23.247 2025-03-20 09:05:23.417 436505 20891 5 0 16409 2025-03-20 09:05:24.545 2025-03-20 09:05:24.545 436505 20922 21 0 16410 2025-03-20 09:05:24.545 2025-03-20 09:05:24.545 436505 21670 2 0 16411 2025-03-20 09:05:24.07 2025-03-20 09:05:24.07 436505 21734 2 0 16412 2025-03-20 09:05:23.855 2025-03-20 09:05:23.855 436505 21791 21 0 16413 2025-03-20 09:13:10.787 2025-03-20 09:13:10.787 436506 7978 19 0 16414 2025-03-20 09:13:10.787 2025-03-20 09:13:10.787 436506 11942 2 0 16415 2025-03-20 08:59:27.467 2025-03-20 08:59:27.467 436506 21523 1 0 16416 2025-03-20 09:00:20.587 2025-03-20 09:00:20.587 436507 671 1 0 16417 2025-03-20 09:02:05.009 2025-03-20 09:02:05.009 436507 15139 1 0 16418 2025-03-20 10:46:37.316 2025-03-20 10:46:37.316 436507 16653 2 0 16419 2025-03-20 10:46:37.316 2025-03-20 10:46:37.316 436507 17592 19 0 16420 2025-03-20 09:02:05.009 2025-03-20 09:02:05.009 436507 18188 9 0 16421 2025-03-20 11:22:01.042 2025-03-20 11:22:01.042 436508 633 19 0 16422 2025-03-20 09:07:13.005 2025-03-20 09:07:13.005 436508 636 2 0 16423 2025-03-20 09:05:51.055 2025-03-20 09:05:51.055 436508 641 0 0 16424 2025-03-20 09:07:08.648 2025-03-20 09:07:08.648 436508 644 2 0 16425 2025-03-20 11:21:59.313 2025-03-20 11:21:59.313 436508 649 2 0 16426 2025-03-20 11:22:00.175 2025-03-20 11:22:00.175 436508 661 19 0 16427 2025-03-20 09:54:45.488 2025-03-20 09:54:45.488 436508 732 2 0 16428 2025-03-20 09:17:10.157 2025-03-20 09:17:10.157 436508 768 2 0 16429 2025-03-20 09:54:46.134 2025-03-20 09:54:46.134 436508 797 2 0 16430 2025-03-20 09:07:47.931 2025-03-20 09:07:47.931 436508 811 189 0 16431 2025-03-20 11:21:59.565 2025-03-20 12:05:12.649 436508 889 10 0 16432 2025-03-20 11:21:59.313 2025-03-20 11:21:59.313 436508 998 19 0 16433 2025-03-20 11:22:00.351 2025-03-20 11:22:00.351 436508 1009 19 0 16434 2025-03-20 09:07:09.681 2025-03-20 09:07:09.681 436508 1092 19 0 16435 2025-03-20 11:21:59.719 2025-03-20 11:21:59.719 436508 1094 19 0 16436 2025-03-20 10:59:21.752 2025-03-20 10:59:21.752 436508 1105 2 0 16437 2025-03-20 09:06:11.897 2025-03-20 09:06:11.897 436508 1286 4 0 16438 2025-03-20 11:11:41.772 2025-03-20 11:11:41.772 436508 1389 9 0 16439 2025-03-20 09:07:09.774 2025-03-20 09:07:09.774 436508 1465 19 0 16440 2025-03-20 11:58:46.223 2025-03-20 11:58:46.223 436508 1615 1 0 16441 2025-03-20 12:05:12.202 2025-03-20 12:05:12.202 436508 1647 8 0 16442 2025-03-20 09:13:05.732 2025-03-20 09:13:05.732 436508 1650 1 0 16443 2025-03-20 11:22:00.536 2025-03-20 11:22:00.536 436508 1729 19 0 16444 2025-03-20 09:13:04.442 2025-03-20 09:13:04.442 436508 1836 1 0 16445 2025-03-20 11:21:59.719 2025-03-20 12:05:12.854 436508 1970 10 0 16446 2025-03-20 09:04:11.301 2025-03-20 09:04:11.301 436508 2016 0 0 16447 2025-03-20 09:54:45.752 2025-03-20 09:54:45.752 436508 2098 19 0 16448 2025-03-20 09:54:45.752 2025-03-20 09:54:45.752 436508 2123 2 0 16449 2025-03-20 09:54:46.134 2025-03-20 09:54:46.134 436508 2232 19 0 16450 2025-03-20 11:11:40.289 2025-03-20 11:11:40.289 436508 2330 0 0 16451 2025-03-20 09:07:09.642 2025-03-20 09:07:09.642 436508 2338 19 0 16452 2025-03-20 09:13:05.83 2025-03-20 09:13:05.83 436508 2514 1 0 16453 2025-03-20 10:59:21.752 2025-03-20 10:59:21.752 436508 2674 19 0 16454 2025-03-20 09:30:43.249 2025-03-20 09:30:43.249 436508 2952 8 0 16455 2025-03-20 09:13:04.075 2025-03-20 09:13:04.075 436508 3642 9 0 16456 2025-03-20 11:22:00.351 2025-03-20 11:22:00.351 436508 4225 2 0 16457 2025-03-20 11:58:48.77 2025-03-20 11:58:48.77 436508 4323 1 0 16458 2025-03-20 09:07:09.65 2025-03-20 09:07:09.65 436508 4378 19 0 16459 2025-03-20 11:21:59.95 2025-03-20 11:21:59.95 436508 4487 2 0 16460 2025-03-20 09:04:11.548 2025-03-20 09:04:11.548 436508 4973 2 0 16461 2025-03-20 11:58:49.656 2025-03-20 11:58:49.656 436508 5085 1 0 16462 2025-03-20 09:13:04.442 2025-03-20 09:13:04.442 436508 5112 9 0 16463 2025-03-20 09:07:09.774 2025-03-20 09:07:09.774 436508 5128 2 0 16464 2025-03-20 12:05:12.818 2025-03-20 12:05:12.818 436508 5173 8 0 16465 2025-03-20 12:04:09.793 2025-03-20 12:04:09.793 436508 5359 7 0 16466 2025-03-20 09:13:05.732 2025-03-20 09:13:05.732 436508 5497 9 0 16467 2025-03-20 12:08:33.274 2025-03-20 12:08:33.274 436508 6360 36 0 16468 2025-03-20 09:13:05.528 2025-03-20 09:13:05.528 436508 6526 1 0 16469 2025-03-20 11:58:49.656 2025-03-20 11:58:49.656 436508 6749 7 0 16470 2025-03-20 11:40:15.762 2025-03-20 11:40:15.762 436508 8059 2 0 16471 2025-03-20 09:07:09.642 2025-03-20 09:07:09.642 436508 8459 2 0 16472 2025-03-20 11:11:40.289 2025-03-20 11:11:40.289 436508 8544 1 0 16473 2025-03-20 09:54:45.93 2025-03-20 09:54:45.93 436508 8926 19 0 16474 2025-03-20 12:05:12.854 2025-03-20 12:05:12.854 436508 8989 75 0 16475 2025-03-20 11:43:26.888 2025-03-20 11:43:26.888 436508 9107 210 0 16476 2025-03-20 09:13:08.031 2025-03-20 09:13:08.031 436508 9261 18 0 16477 2025-03-20 09:04:11.676 2025-03-20 09:04:11.676 436508 9295 2 0 16478 2025-03-20 09:04:11.548 2025-03-20 09:04:11.548 436508 9331 0 0 16479 2025-03-20 12:05:12.202 2025-03-20 12:05:12.202 436508 9355 75 0 16480 2025-03-20 09:07:13.005 2025-03-20 09:07:13.005 436508 9695 19 0 16481 2025-03-20 09:04:11.676 2025-03-20 09:04:11.676 436508 9921 0 0 16482 2025-03-20 11:11:40.566 2025-03-20 11:11:40.566 436508 10398 1 0 16483 2025-03-20 11:58:47.763 2025-03-20 11:58:47.763 436508 10469 1 0 16484 2025-03-20 12:05:12.559 2025-03-20 12:05:12.559 436508 10698 8 0 16485 2025-03-20 09:04:11.301 2025-03-20 09:04:11.301 436508 10731 2 0 16486 2025-03-20 12:05:12.3 2025-03-20 12:05:12.3 436508 11038 75 0 16487 2025-03-20 09:07:09.65 2025-03-20 11:58:47.763 436508 11220 9 0 16488 2025-03-20 09:13:03.816 2025-03-20 09:13:03.816 436508 11263 1 0 16489 2025-03-20 12:08:33.274 2025-03-20 12:08:33.274 436508 11443 4 0 16490 2025-03-20 09:07:09.681 2025-03-20 09:07:09.681 436508 11999 2 0 16491 2025-03-20 11:58:46.664 2025-03-20 11:58:46.664 436508 12346 1 0 16492 2025-03-20 11:22:00.175 2025-03-20 11:22:00.175 436508 13042 2 0 16493 2025-03-20 09:06:11.897 2025-03-20 09:06:11.897 436508 13100 38 0 16494 2025-03-20 11:22:00.536 2025-03-20 11:22:00.536 436508 13903 2 0 16495 2025-03-20 10:12:56.828 2025-03-20 10:12:56.828 436508 14663 19 0 16496 2025-03-20 09:13:04.158 2025-03-20 11:11:40.566 436508 15052 9 0 16497 2025-03-20 10:12:56.828 2025-03-20 10:12:56.828 436508 15103 2 0 16498 2025-03-20 11:58:47.243 2025-03-20 11:58:47.243 436508 15147 1 0 16499 2025-03-20 09:30:43.249 2025-03-20 09:30:43.249 436508 15326 69 0 16500 2025-03-20 09:13:05.528 2025-03-20 09:13:05.528 436508 16543 9 0 16501 2025-03-20 12:04:09.793 2025-03-20 12:04:09.793 436508 16724 1 0 16502 2025-03-20 11:22:01.505 2025-03-20 11:22:01.505 436508 16950 2 0 16503 2025-03-20 11:21:59.565 2025-03-20 11:21:59.565 436508 17095 19 0 16504 2025-03-20 11:11:41.772 2025-03-20 11:11:41.772 436508 17316 81 0 16505 2025-03-20 09:04:12.124 2025-03-20 09:04:12.124 436508 17321 0 0 16506 2025-03-20 11:21:59.95 2025-03-20 11:21:59.95 436508 18309 19 0 16507 2025-03-20 11:40:15.762 2025-03-20 11:40:15.762 436508 18321 19 0 16508 2025-03-20 09:54:45.93 2025-03-20 09:54:45.93 436508 18528 2 0 16509 2025-03-20 09:13:03.816 2025-03-20 09:13:03.816 436508 18608 9 0 16510 2025-03-20 09:13:04.158 2025-03-20 09:13:04.158 436508 18731 9 0 16511 2025-03-20 09:13:07.762 2025-03-20 09:13:07.762 436508 19796 9 0 16512 2025-03-20 09:13:07.453 2025-03-20 09:13:07.453 436508 19906 9 0 16513 2025-03-20 09:07:47.931 2025-03-20 09:07:47.931 436508 20094 21 0 16514 2025-03-20 09:04:12.124 2025-03-20 09:04:12.124 436508 20099 4 0 16515 2025-03-20 11:22:01.505 2025-03-20 11:22:01.505 436508 20222 19 0 16516 2025-03-20 11:58:47.243 2025-03-20 11:58:47.243 436508 20310 7 0 16517 2025-03-20 11:58:48.77 2025-03-20 11:58:48.77 436508 20433 7 0 16518 2025-03-20 11:58:46.664 2025-03-20 11:58:46.664 436508 20454 7 0 16519 2025-03-20 09:13:05.83 2025-03-20 09:13:05.83 436508 20577 9 0 16520 2025-03-20 12:05:12.3 2025-03-20 12:05:12.3 436508 20713 8 0 16521 2025-03-20 11:58:46.223 2025-03-20 11:58:46.223 436508 20717 7 0 16522 2025-03-20 11:22:01.042 2025-03-20 11:22:01.042 436508 20778 2 0 16523 2025-03-20 11:43:26.888 2025-03-20 11:43:26.888 436508 21014 1890 0 16524 2025-03-20 12:05:12.649 2025-03-20 12:05:12.649 436508 21044 75 0 16525 2025-03-20 09:13:07.762 2025-03-20 09:13:07.762 436508 21067 1 0 16526 2025-03-20 09:13:08.031 2025-03-20 09:13:08.031 436508 21349 2 0 16527 2025-03-20 09:17:10.157 2025-03-20 09:17:10.157 436508 21398 19 0 16528 2025-03-20 09:01:47.874 2025-03-20 09:01:47.874 436508 21401 100 0 16529 2025-03-20 12:05:12.818 2025-03-20 12:05:12.818 436508 21406 75 0 16530 2025-03-20 09:13:07.453 2025-03-20 09:13:07.453 436508 21408 1 0 16531 2025-03-20 09:07:08.648 2025-03-20 09:07:08.648 436508 21520 19 0 16532 2025-03-20 09:54:45.488 2025-03-20 09:54:45.488 436508 21603 19 0 16533 2025-03-20 12:05:12.559 2025-03-20 12:05:12.559 436508 21620 75 0 16534 2025-03-20 09:13:04.075 2025-03-20 09:13:04.075 436508 21683 1 0 16535 2025-03-20 09:30:58.334 2025-03-20 09:30:58.334 436509 632 10 0 16536 2025-03-20 09:34:11.318 2025-03-20 09:34:11.318 436509 2039 3 0 16537 2025-03-20 09:34:11.318 2025-03-20 09:34:11.318 436509 2437 30 0 16538 2025-03-20 09:34:10.766 2025-03-20 09:34:10.766 436509 4166 30 0 16539 2025-03-20 09:02:27.772 2025-03-20 09:02:27.772 436509 8469 1 0 16540 2025-03-20 09:34:10.766 2025-03-20 09:34:10.766 436509 16193 3 0 16541 2025-03-20 09:34:10.489 2025-03-20 09:34:10.489 436509 16513 3 0 16542 2025-03-20 09:30:58.334 2025-03-20 09:30:58.334 436509 18673 1 0 16543 2025-03-20 09:34:10.489 2025-03-20 09:34:10.489 436509 20852 30 0 16544 2025-03-20 09:03:55.859 2025-03-20 09:03:55.859 436510 12139 11 0 16545 2025-03-20 10:33:42.975 2025-03-20 10:33:42.975 436511 640 9 0 16546 2025-03-20 10:33:43.553 2025-03-20 10:33:43.553 436511 891 9 0 16547 2025-03-20 10:33:42.739 2025-03-20 10:33:42.739 436511 6137 1 0 16548 2025-03-20 10:33:42.739 2025-03-20 10:33:42.739 436511 9183 9 0 16549 2025-03-20 09:05:30.68 2025-03-20 09:05:30.68 436511 13553 100 0 16550 2025-03-20 10:33:42.975 2025-03-20 10:33:42.975 436511 19375 1 0 16551 2025-03-20 10:33:43.202 2025-03-20 10:33:43.202 436511 20019 9 0 16552 2025-03-20 10:33:43.553 2025-03-20 10:33:43.553 436511 20624 1 0 16553 2025-03-20 10:33:43.202 2025-03-20 10:33:43.202 436511 21044 1 0 16554 2025-03-20 09:25:06.307 2025-03-20 09:25:06.307 436512 679 1 0 16555 2025-03-20 09:25:04.743 2025-03-20 09:25:04.743 436512 1319 0 0 16556 2025-03-20 09:25:05.976 2025-03-20 09:25:05.976 436512 1438 1 0 16557 2025-03-20 09:25:03.811 2025-03-20 09:25:03.811 436512 1737 0 0 16558 2025-03-20 09:25:06.911 2025-03-20 09:25:06.911 436512 4173 0 0 16559 2025-03-20 09:25:06.307 2025-03-20 09:25:06.307 436512 11144 0 0 16560 2025-03-20 09:25:04.743 2025-03-20 09:25:04.743 436512 15890 1 0 16561 2025-03-20 09:07:23.006 2025-03-20 09:07:23.006 436512 16296 1 0 16562 2025-03-20 09:25:03.811 2025-03-20 09:25:03.811 436512 17082 1 0 16563 2025-03-20 09:25:05.976 2025-03-20 09:25:05.976 436512 18557 0 0 16564 2025-03-20 09:25:06.911 2025-03-20 09:25:06.911 436512 20614 1 0 16565 2025-03-20 09:07:57.312 2025-03-20 09:07:57.312 436513 1571 5 0 16566 2025-03-20 13:10:19.549 2025-03-20 13:10:19.549 436513 6335 9 0 16567 2025-03-20 13:10:19.549 2025-03-20 13:10:19.549 436513 8713 1 0 16568 2025-03-20 09:11:08.259 2025-03-20 09:11:08.259 436514 654 7 0 16569 2025-03-20 09:11:06.648 2025-03-20 09:11:06.648 436514 663 2 0 16570 2025-03-20 10:59:25.315 2025-03-20 10:59:25.315 436514 704 2 0 16571 2025-03-20 09:11:04.819 2025-03-20 09:11:04.819 436514 708 21 0 16572 2025-03-20 09:08:46.775 2025-03-20 09:08:46.775 436514 720 210 0 16573 2025-03-20 09:11:05.887 2025-03-20 09:11:05.887 436514 1352 21 0 16574 2025-03-20 09:11:06.505 2025-03-20 09:11:06.505 436514 1611 21 0 16575 2025-03-20 10:59:25.315 2025-03-20 10:59:25.315 436514 1890 19 0 16576 2025-03-20 09:11:04.653 2025-03-20 09:11:04.653 436514 4064 2 0 16577 2025-03-20 09:11:04.819 2025-03-20 09:11:04.819 436514 5175 2 0 16578 2025-03-20 09:11:05.73 2025-03-20 09:11:05.73 436514 5661 21 0 16579 2025-03-20 09:11:07.848 2025-03-20 09:11:07.848 436514 7389 2 0 16580 2025-03-20 09:46:27.9 2025-03-20 09:46:27.9 436514 7395 1 0 16581 2025-03-20 12:08:41.174 2025-03-20 12:08:41.174 436514 7674 4 0 16582 2025-03-20 09:46:27.9 2025-03-20 09:46:27.9 436514 7847 9 0 16583 2025-03-20 09:11:08.259 2025-03-20 09:11:08.259 436514 9177 62 0 16584 2025-03-20 09:11:06.79 2025-03-20 09:11:06.79 436514 9347 2 0 16585 2025-03-20 09:46:28.553 2025-03-20 09:46:28.553 436514 9537 1 0 16586 2025-03-20 09:46:28.383 2025-03-20 09:46:28.383 436514 9843 9 0 16587 2025-03-20 09:11:06.79 2025-03-20 09:11:06.79 436514 10981 21 0 16588 2025-03-20 09:11:05.73 2025-03-20 09:11:05.73 436514 14357 2 0 16589 2025-03-20 09:11:07.848 2025-03-20 09:11:07.848 436514 16424 21 0 16590 2025-03-20 09:11:05.595 2025-03-20 09:11:05.595 436514 17392 21 0 16591 2025-03-20 09:46:28.383 2025-03-20 09:46:28.383 436514 18430 1 0 16592 2025-03-20 09:46:28.553 2025-03-20 09:46:28.553 436514 18735 9 0 16593 2025-03-20 12:08:41.174 2025-03-20 12:08:41.174 436514 19263 36 0 16594 2025-03-20 09:11:06.648 2025-03-20 09:11:06.648 436514 19952 21 0 16595 2025-03-20 09:11:05.595 2025-03-20 09:11:05.595 436514 20781 2 0 16596 2025-03-20 09:11:06.505 2025-03-20 09:11:06.505 436514 20970 2 0 16597 2025-03-20 09:11:05.887 2025-03-20 09:11:05.887 436514 21048 2 0 16598 2025-03-20 09:11:04.653 2025-03-20 09:11:04.653 436514 21709 21 0 16599 2025-03-20 09:14:50.44 2025-03-20 09:14:50.44 436515 1806 0 0 16600 2025-03-20 09:10:01.482 2025-03-20 09:10:01.482 436515 2022 1 0 16601 2025-03-20 09:11:02.816 2025-03-20 09:11:02.816 436515 15728 2 0 16602 2025-03-20 09:14:50.44 2025-03-20 09:14:50.44 436515 18772 4 0 16603 2025-03-20 09:11:02.816 2025-03-20 09:11:02.816 436515 20981 19 0 16604 2025-03-20 09:10:54.6 2025-03-20 09:10:54.6 436516 18314 7 0 16605 2025-03-20 09:12:20.993 2025-03-20 09:12:20.993 436517 17722 1 0 16606 2025-03-20 09:12:39.249 2025-03-20 09:12:39.249 436518 638 1 0 16607 2025-03-20 09:30:44.52 2025-03-20 09:30:44.52 436518 722 1 0 16608 2025-03-20 09:30:44.52 2025-03-20 09:30:44.52 436518 762 5 0 16609 2025-03-20 09:30:42.989 2025-03-20 09:30:42.989 436518 1890 1 0 16610 2025-03-20 09:30:42.989 2025-03-20 09:30:42.989 436518 11862 5 0 16611 2025-03-20 09:30:42.51 2025-03-20 09:30:42.51 436518 11873 1 0 16612 2025-03-20 09:30:42.51 2025-03-20 09:30:42.51 436518 13249 5 0 16613 2025-03-20 09:30:25.065 2025-03-20 09:30:25.065 436519 917 9 0 16614 2025-03-20 09:14:26.816 2025-03-20 09:14:26.816 436519 9276 0 0 16615 2025-03-20 09:17:01.768 2025-03-20 09:17:01.768 436519 16354 0 0 16616 2025-03-20 09:30:25.065 2025-03-20 09:30:25.065 436519 17953 1 0 16617 2025-03-20 09:13:20.078 2025-03-20 09:13:20.078 436519 18731 0 0 16618 2025-03-20 09:13:07.69 2025-03-20 09:13:07.69 436519 20973 1 0 16619 2025-03-20 09:14:59.212 2025-03-20 09:14:59.212 436520 1173 100 0 16620 2025-03-20 12:06:11.935 2025-03-20 12:06:11.935 436521 2347 2 0 16621 2025-03-20 09:19:39.358 2025-03-20 09:19:39.358 436521 15139 1 0 16622 2025-03-20 12:06:11.935 2025-03-20 12:06:11.935 436521 17714 19 0 16623 2025-03-20 09:19:42.476 2025-03-20 09:19:42.476 436522 12821 1 0 16624 2025-03-20 10:02:47.136 2025-03-20 10:02:47.136 436522 19016 1 0 16625 2025-03-20 10:02:47.136 2025-03-20 10:02:47.136 436522 21575 9 0 16626 2025-03-20 11:06:57.918 2025-03-20 11:06:57.918 436523 1175 8 0 16627 2025-03-20 13:04:55.151 2025-03-20 13:04:55.151 436523 1326 1 0 16628 2025-03-20 11:06:57.571 2025-03-20 11:06:57.571 436523 1647 1 0 16629 2025-03-20 09:37:10.605 2025-03-20 09:37:10.605 436523 1658 19 0 16630 2025-03-20 11:40:05.723 2025-03-20 11:40:05.723 436523 1726 2 0 16631 2025-03-20 11:06:58.804 2025-03-20 11:06:58.804 436523 1741 90 0 16632 2025-03-20 09:19:51.473 2025-03-20 09:19:51.473 436523 1960 10 0 16633 2025-03-20 09:37:10.605 2025-03-20 09:37:10.605 436523 2537 2 0 16634 2025-03-20 13:04:55.151 2025-03-20 13:04:55.151 436523 2583 9 0 16635 2025-03-20 10:00:16.705 2025-03-20 10:00:16.705 436523 4083 2 0 16636 2025-03-20 11:50:51.003 2025-03-20 11:50:51.003 436523 4831 1 0 16637 2025-03-20 13:04:54.156 2025-03-20 13:04:54.156 436523 5728 9 0 16638 2025-03-20 11:40:05.723 2025-03-20 11:40:05.723 436523 7659 19 0 16639 2025-03-20 13:04:35.577 2025-03-20 13:04:35.577 436523 7979 18 0 16640 2025-03-20 09:27:10.797 2025-03-20 09:27:10.797 436523 10007 36 0 16641 2025-03-20 11:06:57.918 2025-03-20 11:06:57.918 436523 10638 1 0 16642 2025-03-20 13:04:35.248 2025-03-20 13:04:35.248 436523 10661 1 0 16643 2025-03-20 13:04:55.247 2025-03-20 13:04:55.247 436523 11164 1 0 16644 2025-03-20 13:04:35.577 2025-03-20 13:04:35.577 436523 14225 2 0 16645 2025-03-20 11:06:57.571 2025-03-20 11:06:57.571 436523 15119 0 0 16646 2025-03-20 09:27:10.797 2025-03-20 09:27:10.797 436523 15617 4 0 16647 2025-03-20 12:10:54.899 2025-03-20 12:10:54.899 436523 16660 2 0 16648 2025-03-20 13:04:54.326 2025-03-20 13:04:54.326 436523 18177 1 0 16649 2025-03-20 13:04:55.247 2025-03-20 13:04:55.247 436523 18473 9 0 16650 2025-03-20 13:04:35.248 2025-03-20 13:04:35.248 436523 18743 9 0 16651 2025-03-20 12:10:54.899 2025-03-20 12:10:54.899 436523 19531 19 0 16652 2025-03-20 13:04:54.156 2025-03-20 13:04:54.156 436523 19663 1 0 16653 2025-03-20 11:50:51.003 2025-03-20 11:50:51.003 436523 19821 10 0 16654 2025-03-20 10:00:16.705 2025-03-20 10:00:16.705 436523 21033 18 0 16655 2025-03-20 09:20:55.68 2025-03-20 09:20:55.68 436524 7097 1 0 16656 2025-03-20 09:23:55.332 2025-03-20 09:23:55.332 436525 2832 1 0 16657 2025-03-20 12:06:11.41 2025-03-20 12:06:11.41 436525 16633 2 0 16658 2025-03-20 12:06:11.41 2025-03-20 12:06:11.41 436525 21079 19 0 16659 2025-03-20 09:24:49.983 2025-03-20 09:24:49.983 436526 21398 1 0 16660 2025-03-20 09:42:07.992 2025-03-20 09:42:07.992 436527 1008 19 0 16661 2025-03-20 10:27:19.379 2025-03-20 10:27:19.379 436527 1567 19 0 16662 2025-03-20 09:42:07.992 2025-03-20 09:42:07.992 436527 3304 2 0 16663 2025-03-20 10:23:13.23 2025-03-20 10:23:13.23 436527 15703 45 0 16664 2025-03-20 10:23:13.23 2025-03-20 10:23:13.23 436527 18188 5 0 16665 2025-03-20 09:25:38.554 2025-03-20 09:25:38.554 436527 18673 1 0 16666 2025-03-20 10:27:19.379 2025-03-20 10:27:19.379 436527 21048 2 0 16667 2025-03-20 09:28:10.98 2025-03-20 09:28:10.98 436528 1124 1 0 16668 2025-03-20 10:03:04.48 2025-03-20 10:03:04.48 436529 650 1 0 16669 2025-03-20 09:30:42.084 2025-03-20 09:30:42.084 436529 1060 1 0 16670 2025-03-20 11:33:24.403 2025-03-20 11:33:24.403 436529 1401 0 0 16671 2025-03-20 09:28:42.597 2025-03-20 09:28:42.597 436529 2204 1 0 16672 2025-03-20 11:33:24.692 2025-03-20 11:33:24.692 436529 2710 1 0 16673 2025-03-20 09:30:42.084 2025-03-20 09:30:42.084 436529 2773 9 0 16674 2025-03-20 11:33:24.692 2025-03-20 11:33:24.692 436529 5758 8 0 16675 2025-03-20 10:03:04.48 2025-03-20 10:03:04.48 436529 7668 9 0 16676 2025-03-20 09:30:42.234 2025-03-20 09:30:42.234 436529 13903 1 0 16677 2025-03-20 11:33:24.403 2025-03-20 11:33:24.403 436529 16442 1 0 16678 2025-03-20 09:30:42.234 2025-03-20 09:30:42.234 436529 17727 9 0 16679 2025-03-20 09:30:36.646 2025-03-20 09:30:36.646 436530 5069 10 0 16680 2025-03-20 09:39:20.417 2025-03-20 09:39:20.417 436530 9363 19 0 16681 2025-03-20 09:39:20.417 2025-03-20 09:39:20.417 436530 12656 2 0 16682 2025-03-20 09:30:39.089 2025-03-20 09:30:39.089 436531 2347 1 0 16683 2025-03-20 09:34:20.177 2025-03-20 09:34:20.177 436531 5069 0 0 16684 2025-03-20 09:35:04.214 2025-03-20 09:35:04.214 436531 5978 0 0 16685 2025-03-20 09:30:52.421 2025-03-20 09:30:52.421 436532 20275 10 0 16686 2025-03-20 09:32:13.911 2025-03-20 09:32:13.911 436533 3518 1 0 16687 2025-03-20 09:32:25.892 2025-03-20 09:32:25.892 436534 650 1 0 16688 2025-03-20 09:39:48.188 2025-03-20 09:39:48.188 436534 769 9 0 16689 2025-03-20 09:39:47.352 2025-03-20 09:39:47.352 436534 2326 9 0 16690 2025-03-20 09:39:48.188 2025-03-20 09:39:48.188 436534 4388 1 0 16691 2025-03-20 09:39:47.352 2025-03-20 09:39:47.352 436534 17710 1 0 16692 2025-03-20 09:33:48.436 2025-03-20 09:33:48.436 436535 7916 1 0 16693 2025-03-20 12:06:08.999 2025-03-20 12:06:08.999 436536 3342 19 0 16694 2025-03-20 11:25:27.985 2025-03-20 11:25:27.985 436536 5427 5 0 16695 2025-03-20 13:43:35.345 2025-03-20 13:43:35.345 436536 7766 10 0 16696 2025-03-20 09:33:49.217 2025-03-20 11:25:27.985 436536 9183 2 0 16697 2025-03-20 13:43:35.345 2025-03-20 13:43:35.345 436536 15139 90 0 16698 2025-03-20 12:06:08.999 2025-03-20 12:06:08.999 436536 15243 2 0 16699 2025-03-20 10:07:33.298 2025-03-20 10:07:33.298 436537 641 21 0 16700 2025-03-20 10:07:33.298 2025-03-20 10:07:33.298 436537 4989 2 0 16701 2025-03-20 10:07:33.061 2025-03-20 10:07:33.061 436537 10690 21 0 16702 2025-03-20 10:07:33.215 2025-03-20 10:07:33.215 436537 11395 21 0 16703 2025-03-20 10:07:33.551 2025-03-20 10:07:33.551 436537 11491 41 0 16704 2025-03-20 10:44:04.353 2025-03-20 10:44:04.353 436537 12976 45 0 16705 2025-03-20 10:07:33.551 2025-03-20 10:07:33.551 436537 14650 5 0 16706 2025-03-20 10:44:04.353 2025-03-20 10:44:04.353 436537 14959 5 0 16707 2025-03-20 10:07:33.061 2025-03-20 10:07:33.061 436537 15762 2 0 16708 2025-03-20 09:34:07.694 2025-03-20 09:34:07.694 436537 18731 1 0 16709 2025-03-20 10:07:33.215 2025-03-20 10:07:33.215 436537 21262 2 0 16710 2025-03-20 09:34:47.657 2025-03-20 09:34:47.657 436538 11378 1 0 16711 2025-03-20 12:06:07.736 2025-03-20 12:06:07.736 436539 10608 19 0 16712 2025-03-20 12:06:07.736 2025-03-20 12:06:07.736 436539 12921 2 0 16713 2025-03-20 09:34:58.596 2025-03-20 09:34:58.596 436539 16753 1 0 16714 2025-03-20 09:41:31.708 2025-03-20 09:41:31.708 436540 15474 0 0 16715 2025-03-20 09:35:13.32 2025-03-20 09:35:13.32 436540 19126 100 0 16716 2025-03-20 09:36:15.656 2025-03-20 09:36:15.656 436541 17727 1 0 16717 2025-03-20 09:36:36.377 2025-03-20 09:36:36.377 436542 21547 1 0 16718 2025-03-20 09:38:50.836 2025-03-20 09:38:50.836 436543 895 0 0 16719 2025-03-20 09:37:40.513 2025-03-20 09:37:40.513 436543 20891 1 0 16720 2025-03-20 09:38:25.833 2025-03-20 09:38:25.833 436543 21214 0 0 16721 2025-03-20 10:02:20.076 2025-03-20 10:02:20.076 436544 1817 3 0 16722 2025-03-20 10:02:20.076 2025-03-20 10:02:20.076 436544 5776 27 0 16723 2025-03-20 09:37:58.443 2025-03-20 09:37:58.443 436544 21539 1 0 16724 2025-03-20 09:39:53.864 2025-03-20 09:39:53.864 436545 1426 0 0 16725 2025-03-20 09:39:22.006 2025-03-20 09:39:22.006 436545 2543 0 0 16726 2025-03-20 09:39:38.273 2025-03-20 09:39:38.273 436545 12422 0 0 16727 2025-03-20 09:38:59.458 2025-03-20 09:38:59.458 436545 18265 1 0 16728 2025-03-20 12:06:07.799 2025-03-20 12:06:07.799 436546 700 2 0 16729 2025-03-20 09:39:14.629 2025-03-20 09:39:14.629 436546 1959 1 0 16730 2025-03-20 12:06:07.799 2025-03-20 12:06:07.799 436546 6555 19 0 16731 2025-03-20 09:40:23.13 2025-03-20 09:40:23.13 436546 9350 3 0 16732 2025-03-20 09:40:23.13 2025-03-20 09:40:23.13 436546 17638 27 0 16733 2025-03-20 09:39:19.242 2025-03-20 09:39:19.242 436547 1012 1 0 16734 2025-03-20 09:45:39.601 2025-03-20 09:45:39.601 436548 617 5 0 16735 2025-03-20 09:45:39.995 2025-03-20 09:45:39.995 436548 5036 1 0 16736 2025-03-20 09:45:39.995 2025-03-20 09:45:39.995 436548 7682 5 0 16737 2025-03-20 09:45:40.097 2025-03-20 09:45:40.097 436548 9183 5 0 16738 2025-03-20 09:45:40.097 2025-03-20 09:45:40.097 436548 12169 1 0 16739 2025-03-20 09:45:39.19 2025-03-20 09:45:39.19 436548 12976 5 0 16740 2025-03-20 09:40:22.778 2025-03-20 09:40:22.778 436548 16724 1 0 16741 2025-03-20 09:45:39.19 2025-03-20 09:45:39.19 436548 20756 1 0 16742 2025-03-20 09:45:39.601 2025-03-20 09:45:39.601 436548 21247 1 0 16743 2025-03-20 09:41:31.333 2025-03-20 09:41:31.333 436549 616 9 0 16744 2025-03-20 09:41:31.724 2025-03-20 09:41:31.724 436549 999 1 0 16745 2025-03-20 09:41:30.895 2025-03-20 09:41:30.895 436549 1632 1 0 16746 2025-03-20 12:17:29.026 2025-03-20 12:17:29.026 436549 1638 7 0 16747 2025-03-20 12:17:25.519 2025-03-20 12:17:25.519 436549 1801 2 0 16748 2025-03-20 09:41:32.492 2025-03-20 09:41:32.492 436549 5590 9 0 16749 2025-03-20 09:41:32.134 2025-03-20 09:41:32.134 436549 9364 9 0 16750 2025-03-20 09:41:32.134 2025-03-20 09:41:32.134 436549 11670 1 0 16751 2025-03-20 09:41:32.492 2025-03-20 09:41:32.492 436549 11999 1 0 16752 2025-03-20 12:17:25.519 2025-03-20 12:17:25.519 436549 14489 19 0 16753 2025-03-20 12:17:29.026 2025-03-20 12:17:29.026 436549 15336 64 0 16754 2025-03-20 09:41:30.895 2025-03-20 09:41:30.895 436549 20280 9 0 16755 2025-03-20 09:41:31.724 2025-03-20 09:41:31.724 436549 20525 9 0 16756 2025-03-20 09:40:56.171 2025-03-20 09:40:56.171 436549 20717 97 0 16757 2025-03-20 09:41:31.333 2025-03-20 09:41:31.333 436549 20911 1 0 16758 2025-03-20 11:09:10.902 2025-03-20 11:09:10.902 436550 726 0 0 16759 2025-03-20 09:40:58.374 2025-03-20 09:40:58.374 436550 886 10 0 16760 2025-03-20 11:09:11.145 2025-03-20 11:09:11.145 436550 994 1 0 16761 2025-03-20 11:09:10.902 2025-03-20 11:09:10.902 436550 18526 1 0 16762 2025-03-20 11:09:20.133 2025-03-20 11:09:20.133 436550 18956 81 0 16763 2025-03-20 11:09:11.145 2025-03-20 11:09:11.145 436550 20754 8 0 16764 2025-03-20 11:09:20.133 2025-03-20 11:09:20.133 436550 21766 9 0 16765 2025-03-20 09:45:29.676 2025-03-20 09:45:29.676 436551 16948 1 0 16766 2025-03-20 10:02:24.625 2025-03-20 10:02:24.625 436552 1495 9 0 16767 2025-03-20 09:46:10.438 2025-03-20 09:46:10.438 436552 20825 1 0 16768 2025-03-20 10:02:24.625 2025-03-20 10:02:24.625 436552 20972 1 0 16769 2025-03-20 10:02:46.062 2025-03-20 10:02:46.062 436553 1012 36 0 16770 2025-03-20 11:22:37.372 2025-03-20 11:22:37.372 436553 2776 2 0 16771 2025-03-20 11:22:37.814 2025-03-20 11:22:37.814 436553 4650 2 0 16772 2025-03-20 11:12:21.439 2025-03-20 11:12:21.439 436553 5520 9 0 16773 2025-03-20 11:22:37.372 2025-03-20 11:22:37.372 436553 7899 19 0 16774 2025-03-20 11:12:08.87 2025-03-20 11:12:08.87 436553 10094 1 0 16775 2025-03-20 11:12:09.227 2025-03-20 11:12:09.227 436553 10393 8 0 16776 2025-03-20 11:22:38.099 2025-03-20 11:22:38.099 436553 10519 19 0 16777 2025-03-20 11:12:08.87 2025-03-20 11:12:08.87 436553 11670 0 0 16778 2025-03-20 11:22:37.814 2025-03-20 11:22:37.814 436553 13378 19 0 16779 2025-03-20 10:02:46.062 2025-03-20 10:02:46.062 436553 18313 4 0 16780 2025-03-20 11:12:21.439 2025-03-20 11:12:21.439 436553 19263 81 0 16781 2025-03-20 11:22:38.099 2025-03-20 11:22:38.099 436553 19303 2 0 16782 2025-03-20 09:47:16.918 2025-03-20 09:47:16.918 436553 19378 10 0 16783 2025-03-20 11:12:09.227 2025-03-20 11:12:09.227 436553 20243 1 0 16784 2025-03-20 09:51:09.757 2025-03-20 09:51:09.757 436554 11862 1 0 16785 2025-03-20 09:53:54.746 2025-03-20 09:53:54.746 436555 651 9 0 16786 2025-03-20 09:53:54.746 2025-03-20 09:53:54.746 436555 1692 1 0 16787 2025-03-20 09:53:54.247 2025-03-20 09:53:54.247 436555 1729 2 0 16788 2025-03-20 10:02:52.226 2025-03-20 10:02:52.226 436555 5003 4 0 16789 2025-03-20 10:02:52.226 2025-03-20 10:02:52.226 436555 5175 36 0 16790 2025-03-20 09:53:55.118 2025-03-20 09:53:55.118 436555 5779 1 0 16791 2025-03-20 09:53:54.247 2025-03-20 09:53:54.247 436555 6616 18 0 16792 2025-03-20 09:53:53.276 2025-03-20 09:53:53.276 436555 10719 1 0 16793 2025-03-20 09:51:31.937 2025-03-20 09:51:31.937 436555 12072 10 0 16794 2025-03-20 09:53:55.118 2025-03-20 09:53:55.118 436555 16284 9 0 16795 2025-03-20 09:53:53.276 2025-03-20 09:53:53.276 436555 20924 9 0 16796 2025-03-20 13:26:47.324 2025-03-20 13:26:47.324 436556 9 1 0 16797 2025-03-20 11:44:30.348 2025-03-20 11:44:30.348 436556 900 9 0 16798 2025-03-20 11:45:02.207 2025-03-20 11:45:02.207 436556 964 19 0 16799 2025-03-20 10:07:43.947 2025-03-20 10:07:43.947 436556 1051 2 0 16800 2025-03-20 11:09:28.843 2025-03-20 11:09:28.843 436556 1092 90 0 16801 2025-03-20 11:09:28.843 2025-03-20 11:09:28.843 436556 1105 810 0 16802 2025-03-20 12:08:35.902 2025-03-20 12:08:35.902 436556 1120 4 0 16803 2025-03-20 11:18:56.274 2025-03-20 11:18:56.274 436556 1245 2 0 16804 2025-03-20 11:40:11.973 2025-03-20 11:40:11.973 436556 1424 2 0 16805 2025-03-20 11:37:09.154 2025-03-20 11:37:09.154 436556 1552 1 0 16806 2025-03-20 13:26:47.324 2025-03-20 13:26:47.324 436556 2042 0 0 16807 2025-03-20 11:44:30.348 2025-03-20 11:44:30.348 436556 2151 1 0 16808 2025-03-20 11:07:36.482 2025-03-20 11:07:36.482 436556 2492 1 0 16809 2025-03-20 13:26:47.551 2025-03-20 13:26:47.551 436556 2749 0 0 16810 2025-03-20 11:40:11.973 2025-03-20 11:40:11.973 436556 3656 19 0 16811 2025-03-20 11:20:57.542 2025-03-20 11:20:57.542 436556 4502 2 0 16812 2025-03-20 11:20:57.542 2025-03-20 11:20:57.542 436556 5069 19 0 16813 2025-03-20 11:07:36.482 2025-03-20 11:07:36.482 436556 5961 0 0 16814 2025-03-20 11:18:56.274 2025-03-20 11:18:56.274 436556 6058 19 0 16815 2025-03-20 13:26:47.551 2025-03-20 13:26:47.551 436556 6361 1 0 16816 2025-03-20 11:45:02.521 2025-03-20 11:45:02.521 436556 8242 2 0 16817 2025-03-20 12:08:35.902 2025-03-20 12:08:35.902 436556 8269 36 0 16818 2025-03-20 11:44:30.8 2025-03-20 11:44:30.8 436556 8841 1 0 16819 2025-03-20 11:07:37.089 2025-03-20 11:07:37.089 436556 9348 1 0 16820 2025-03-20 11:07:37.937 2025-03-20 11:07:37.937 436556 9529 9 0 16821 2025-03-20 12:01:57.082 2025-03-20 12:01:57.082 436556 10490 64 0 16822 2025-03-20 10:09:32.733 2025-03-20 10:09:32.733 436556 11153 5 0 16823 2025-03-20 10:09:32.733 2025-03-20 10:09:32.733 436556 12334 45 0 16824 2025-03-20 11:44:30.506 2025-03-20 11:44:30.506 436556 12721 1 0 16825 2025-03-20 11:07:37.937 2025-03-20 11:07:37.937 436556 15196 81 0 16826 2025-03-20 11:45:02.596 2025-03-20 11:45:02.596 436556 16348 2 0 16827 2025-03-20 11:25:49.742 2025-03-20 11:25:49.742 436556 16456 2 0 16828 2025-03-20 11:53:20.238 2025-03-20 11:53:20.238 436556 16704 0 0 16829 2025-03-20 11:53:20.238 2025-03-20 11:53:20.238 436556 17693 1 0 16830 2025-03-20 10:07:43.947 2025-03-20 10:07:43.947 436556 17891 19 0 16831 2025-03-20 12:01:57.082 2025-03-20 12:01:57.082 436556 18231 7 0 16832 2025-03-20 11:44:30.8 2025-03-20 11:44:30.8 436556 19829 9 0 16833 2025-03-20 09:52:53.436 2025-03-20 09:52:53.436 436556 19857 21 0 16834 2025-03-20 11:37:09.154 2025-03-20 11:37:09.154 436556 19906 0 0 16835 2025-03-20 11:45:02.207 2025-03-20 11:45:02.207 436556 20636 2 0 16836 2025-03-20 11:45:02.596 2025-03-20 11:45:02.596 436556 20829 19 0 16837 2025-03-20 11:45:02.521 2025-03-20 11:45:02.521 436556 21178 19 0 16838 2025-03-20 11:25:49.742 2025-03-20 11:25:49.742 436556 21216 19 0 16839 2025-03-20 11:44:30.506 2025-03-20 11:44:30.506 436556 21442 9 0 16840 2025-03-20 11:07:37.089 2025-03-20 11:07:37.089 436556 21571 8 0 16841 2025-03-20 09:53:27.239 2025-03-20 09:53:27.239 436557 5779 1 0 16842 2025-03-20 12:06:03.403 2025-03-20 12:06:03.403 436558 19663 19 0 16843 2025-03-20 09:55:31.837 2025-03-20 09:55:31.837 436558 20563 1 0 16844 2025-03-20 12:06:03.403 2025-03-20 12:06:03.403 436558 21514 2 0 16845 2025-03-20 11:45:18.669 2025-03-20 11:45:18.669 436559 866 9 0 16846 2025-03-20 11:47:51.514 2025-03-20 11:47:51.514 436559 2437 9 0 16847 2025-03-20 11:47:51.91 2025-03-20 11:47:51.91 436559 9166 1 0 16848 2025-03-20 10:03:05.576 2025-03-20 10:03:05.576 436559 9362 1 0 16849 2025-03-20 09:59:19.206 2025-03-20 09:59:19.206 436559 10536 1 0 16850 2025-03-20 11:45:18.669 2025-03-20 11:45:18.669 436559 14385 1 0 16851 2025-03-20 10:03:05.576 2025-03-20 10:03:05.576 436559 15052 9 0 16852 2025-03-20 11:47:51.697 2025-03-20 11:47:51.697 436559 16149 9 0 16853 2025-03-20 11:47:51.514 2025-03-20 11:47:51.514 436559 16267 1 0 16854 2025-03-20 11:47:51.697 2025-03-20 11:47:51.697 436559 16684 1 0 16855 2025-03-20 11:47:51.91 2025-03-20 11:47:51.91 436559 20657 9 0 16856 2025-03-20 11:21:42.825 2025-03-20 11:21:43.688 436560 649 149 0 16857 2025-03-20 10:08:45.039 2025-03-20 10:08:45.039 436560 666 2 0 16858 2025-03-20 11:04:24.592 2025-03-20 11:04:24.592 436560 713 1 0 16859 2025-03-20 11:42:01.783 2025-03-20 11:42:01.783 436560 725 19 0 16860 2025-03-20 11:44:57.623 2025-03-20 11:44:57.623 436560 844 2 0 16861 2025-03-20 11:21:43.943 2025-03-20 11:21:43.943 436560 910 8 0 16862 2025-03-20 11:44:18.122 2025-03-20 11:44:18.122 436560 1319 1 0 16863 2025-03-20 10:10:43.4 2025-03-20 10:10:43.4 436560 1426 1 0 16864 2025-03-20 14:02:25.456 2025-03-20 14:02:25.456 436560 1465 5 0 16865 2025-03-20 11:42:02.014 2025-03-20 11:42:02.014 436560 1718 19 0 16866 2025-03-20 11:44:17.697 2025-03-20 11:44:17.697 436560 1825 1 0 16867 2025-03-20 14:29:21.441 2025-03-20 14:29:21.441 436560 2000 45 0 16868 2025-03-20 11:21:42.662 2025-03-20 11:21:42.662 436560 2329 8 0 16869 2025-03-20 14:02:25.456 2025-03-20 14:02:25.456 436560 2459 1 0 16870 2025-03-20 10:10:44.373 2025-03-20 10:10:44.373 436560 2537 9 0 16871 2025-03-20 09:59:55.905 2025-03-20 09:59:55.905 436560 2719 100 0 16872 2025-03-20 10:45:12.012 2025-03-20 10:45:12.012 436560 2724 3 0 16873 2025-03-20 11:21:43.712 2025-03-20 11:21:43.712 436560 2734 75 0 16874 2025-03-20 10:10:44.082 2025-03-20 10:10:44.082 436560 3409 1 0 16875 2025-03-20 11:21:42.825 2025-03-20 11:21:42.825 436560 4474 8 0 16876 2025-03-20 11:04:24.592 2025-03-20 11:04:24.592 436560 5069 0 0 16877 2025-03-20 11:39:56.056 2025-03-20 11:39:56.056 436560 6149 19 0 16878 2025-03-20 11:21:43.712 2025-03-20 11:21:43.712 436560 6602 8 0 16879 2025-03-20 11:21:42.706 2025-03-20 11:21:42.706 436560 7395 8 0 16880 2025-03-20 11:44:58.163 2025-03-20 11:44:58.163 436560 8059 2 0 16881 2025-03-20 11:21:20.35 2025-03-20 11:21:20.35 436560 8648 19 0 16882 2025-03-20 11:21:42.934 2025-03-20 11:21:42.934 436560 8954 8 0 16883 2025-03-20 14:29:21.441 2025-03-20 14:29:21.441 436560 8989 5 0 16884 2025-03-20 12:08:30.829 2025-03-20 12:08:30.829 436560 9183 36 0 16885 2025-03-20 11:21:44.024 2025-03-20 11:21:44.024 436560 9354 8 0 16886 2025-03-20 11:21:43.186 2025-03-20 11:21:43.186 436560 9537 8 0 16887 2025-03-20 10:15:36.534 2025-03-20 10:15:36.534 436560 9611 38 0 16888 2025-03-20 11:21:43.943 2025-03-20 11:21:43.943 436560 9758 75 0 16889 2025-03-20 10:03:20.816 2025-03-20 10:03:20.816 436560 9796 190 0 16890 2025-03-20 10:10:44.082 2025-03-20 10:10:44.082 436560 9820 9 0 16891 2025-03-20 11:44:57.842 2025-03-20 11:44:57.842 436560 10060 2 0 16892 2025-03-20 11:21:42.371 2025-03-20 11:21:42.371 436560 10112 8 0 16893 2025-03-20 12:08:30.829 2025-03-20 12:08:30.829 436560 10311 4 0 16894 2025-03-20 11:21:43.186 2025-03-20 11:21:43.186 436560 10519 75 0 16895 2025-03-20 10:59:20.978 2025-03-20 10:59:20.978 436560 10934 19 0 16896 2025-03-20 10:10:43.4 2025-03-20 10:10:43.4 436560 11164 9 0 16897 2025-03-20 11:44:57.623 2025-03-20 11:44:57.623 436560 12097 19 0 16898 2025-03-20 11:21:42.934 2025-03-20 11:21:42.934 436560 12507 75 0 16899 2025-03-20 10:59:20.978 2025-03-20 10:59:20.978 436560 12976 2 0 16900 2025-03-20 11:44:57.842 2025-03-20 11:44:57.842 436560 13132 19 0 16901 2025-03-20 11:44:57.363 2025-03-20 11:44:57.363 436560 13854 2 0 16902 2025-03-20 11:42:01.783 2025-03-20 11:42:01.783 436560 13878 2 0 16903 2025-03-20 11:39:56.056 2025-03-20 11:39:56.056 436560 14278 2 0 16904 2025-03-20 11:21:20.35 2025-03-20 11:21:20.35 436560 14376 2 0 16905 2025-03-20 11:21:42.662 2025-03-20 11:21:42.662 436560 15408 75 0 16906 2025-03-20 10:33:36.317 2025-03-20 10:33:36.317 436560 15728 3 0 16907 2025-03-20 10:08:45.039 2025-03-20 10:08:45.039 436560 16594 19 0 16908 2025-03-20 11:44:17.989 2025-03-20 11:44:58.163 436560 17106 28 0 16909 2025-03-20 11:44:57.363 2025-03-20 11:44:57.363 436560 18321 19 0 16910 2025-03-20 11:44:17.697 2025-03-20 11:44:17.697 436560 18526 9 0 16911 2025-03-20 11:21:42.371 2025-03-20 11:21:42.371 436560 18678 75 0 16912 2025-03-20 11:44:18.122 2025-03-20 11:44:18.122 436560 19663 9 0 16913 2025-03-20 11:21:43.688 2025-03-20 11:21:43.688 436560 20562 8 0 16914 2025-03-20 10:10:44.373 2025-03-20 10:10:44.373 436560 20623 1 0 16915 2025-03-20 10:33:36.317 2025-03-20 10:33:36.317 436560 20825 27 0 16916 2025-03-20 11:21:42.706 2025-03-20 11:21:42.706 436560 20901 75 0 16917 2025-03-20 10:15:36.534 2025-03-20 10:15:36.534 436560 20922 4 0 16918 2025-03-20 10:03:20.816 2025-03-20 10:03:20.816 436560 21044 21 0 16919 2025-03-20 11:21:44.024 2025-03-20 11:21:44.024 436560 21338 75 0 16920 2025-03-20 10:45:12.012 2025-03-20 10:45:12.012 436560 21418 30 0 16921 2025-03-20 11:44:17.989 2025-03-20 11:44:17.989 436560 21442 1 0 16922 2025-03-20 11:42:02.014 2025-03-20 11:42:02.014 436560 21571 2 0 16923 2025-03-20 11:33:20.22 2025-03-20 11:33:20.22 436561 713 1 0 16924 2025-03-20 11:33:20.05 2025-03-20 11:33:20.05 436561 854 0 0 16925 2025-03-20 10:14:16.032 2025-03-20 10:14:16.032 436561 999 9 0 16926 2025-03-20 10:14:16.235 2025-03-20 10:14:16.235 436561 2789 1 0 16927 2025-03-20 10:14:16.235 2025-03-20 10:14:16.235 436561 3518 9 0 16928 2025-03-20 10:14:15.644 2025-03-20 10:14:15.644 436561 6382 9 0 16929 2025-03-20 10:14:16.032 2025-03-20 10:14:16.032 436561 17568 1 0 16930 2025-03-20 10:14:15.795 2025-03-20 10:14:15.795 436561 18930 1 0 16931 2025-03-20 10:14:15.795 2025-03-20 10:14:15.795 436561 19952 9 0 16932 2025-03-20 11:33:20.22 2025-03-20 11:33:20.22 436561 20243 8 0 16933 2025-03-20 10:14:15.644 2025-03-20 10:14:15.644 436561 20811 1 0 16934 2025-03-20 11:33:20.05 2025-03-20 11:33:20.05 436561 21688 1 0 16935 2025-03-20 10:00:13.555 2025-03-20 10:00:13.555 436561 21766 1 0 16936 2025-03-20 11:09:37.336 2025-03-20 11:09:37.336 436562 1454 9 0 16937 2025-03-20 11:56:39.177 2025-03-20 11:56:39.177 436562 1483 0 0 16938 2025-03-20 11:09:36.148 2025-03-20 11:09:36.148 436562 2176 1 0 16939 2025-03-20 10:10:37.586 2025-03-20 10:10:37.586 436562 4768 1 0 16940 2025-03-20 11:09:35.921 2025-03-20 11:09:35.921 436562 6430 0 0 16941 2025-03-20 11:09:36.148 2025-03-20 11:09:36.148 436562 7809 8 0 16942 2025-03-20 10:10:36.583 2025-03-20 10:10:36.583 436562 8985 1 0 16943 2025-03-20 10:10:36.583 2025-03-20 10:10:36.583 436562 9275 9 0 16944 2025-03-20 11:56:39.177 2025-03-20 11:56:39.177 436562 10981 1 0 16945 2025-03-20 10:10:37.586 2025-03-20 10:10:37.586 436562 11443 9 0 16946 2025-03-20 11:09:37.336 2025-03-20 11:09:37.336 436562 16097 81 0 16947 2025-03-20 10:00:18.502 2025-03-20 10:00:18.502 436562 17415 100 0 16948 2025-03-20 10:10:36.285 2025-03-20 10:10:36.285 436562 17592 1 0 16949 2025-03-20 12:08:41.52 2025-03-20 12:08:41.52 436562 20157 4 0 16950 2025-03-20 12:08:41.52 2025-03-20 12:08:41.52 436562 20706 36 0 16951 2025-03-20 10:10:36.285 2025-03-20 10:10:36.285 436562 21520 9 0 16952 2025-03-20 11:09:35.921 2025-03-20 11:09:35.921 436562 21712 1 0 16953 2025-03-20 10:02:43.354 2025-03-20 10:02:43.354 436563 739 1 0 16954 2025-03-20 10:17:02.495 2025-03-20 10:17:02.495 436564 4074 2 0 16955 2025-03-20 10:03:00.739 2025-03-20 10:03:00.739 436564 5306 1 0 16956 2025-03-20 10:17:03.596 2025-03-20 10:17:03.596 436564 5487 2 0 16957 2025-03-20 10:17:02.597 2025-03-20 10:17:02.597 436564 14080 2 0 16958 2025-03-20 10:17:02.495 2025-03-20 10:17:02.495 436564 18529 21 0 16959 2025-03-20 10:17:03.596 2025-03-20 10:17:03.596 436564 19689 21 0 16960 2025-03-20 10:17:02.597 2025-03-20 10:17:02.597 436564 20023 21 0 16961 2025-03-20 10:03:33.783 2025-03-20 10:03:33.783 436565 831 1 0 16962 2025-03-20 11:04:29.08 2025-03-20 11:04:29.08 436566 654 1 0 16963 2025-03-20 11:56:57.413 2025-03-20 11:56:57.413 436566 666 5 0 16964 2025-03-20 13:01:11.412 2025-03-20 13:01:11.412 436566 738 1 0 16965 2025-03-20 10:04:21.171 2025-03-20 10:04:21.171 436566 894 10 0 16966 2025-03-20 11:49:37.391 2025-03-20 11:49:37.391 436566 896 9 0 16967 2025-03-20 10:09:54.507 2025-03-20 10:09:54.507 436566 977 8 0 16968 2025-03-20 11:44:11.708 2025-03-20 11:44:11.708 436566 998 9 0 16969 2025-03-20 13:30:05.013 2025-03-20 13:30:05.013 436566 1003 30 0 16970 2025-03-20 11:39:53.462 2025-03-20 11:39:53.462 436566 1038 2 0 16971 2025-03-20 11:44:11.708 2025-03-20 11:44:11.708 436566 1044 1 0 16972 2025-03-20 10:09:56.073 2025-03-20 10:09:56.073 436566 1060 75 0 16973 2025-03-20 10:09:56.073 2025-03-20 10:09:56.073 436566 1519 8 0 16974 2025-03-20 10:09:55.338 2025-03-20 10:09:55.338 436566 1552 8 0 16975 2025-03-20 11:39:53.462 2025-03-20 11:39:53.462 436566 1615 19 0 16976 2025-03-20 10:09:55.829 2025-03-20 10:09:55.829 436566 1772 75 0 16977 2025-03-20 11:23:52.008 2025-03-20 11:23:52.008 436566 1800 19 0 16978 2025-03-20 10:09:55.247 2025-03-20 10:09:55.247 436566 1983 75 0 16979 2025-03-20 10:09:55.907 2025-03-20 10:09:55.907 436566 2013 75 0 16980 2025-03-20 11:04:29.08 2025-03-20 11:04:29.08 436566 2213 8 0 16981 2025-03-20 11:49:37.391 2025-03-20 11:49:37.391 436566 2338 1 0 16982 2025-03-20 10:09:55.108 2025-03-20 10:09:55.108 436566 2508 8 0 16983 2025-03-20 13:30:05.013 2025-03-20 13:30:05.013 436566 2609 3 0 16984 2025-03-20 10:09:54.507 2025-03-20 10:09:54.507 436566 2710 75 0 16985 2025-03-20 13:01:11.871 2025-03-20 13:01:11.871 436566 2722 0 0 16986 2025-03-20 11:04:30.38 2025-03-20 11:04:30.38 436566 3417 81 0 16987 2025-03-20 10:09:55.645 2025-03-20 10:09:55.645 436566 3729 8 0 16988 2025-03-20 11:27:28.979 2025-03-20 11:27:28.979 436566 4173 1 0 16989 2025-03-20 12:36:35.176 2025-03-20 12:36:35.176 436566 4238 0 0 16990 2025-03-20 10:09:55.247 2025-03-20 10:09:55.247 436566 4250 8 0 16991 2025-03-20 10:09:55.907 2025-03-20 10:09:55.907 436566 5057 8 0 16992 2025-03-20 10:09:54.701 2025-03-20 10:09:54.701 436566 5444 75 0 16993 2025-03-20 10:09:55.753 2025-03-20 10:09:55.753 436566 5557 75 0 16994 2025-03-20 11:04:28.836 2025-03-20 11:04:28.836 436566 5806 1 0 16995 2025-03-20 10:09:54.546 2025-03-20 10:09:54.546 436566 5904 75 0 16996 2025-03-20 10:09:55.031 2025-03-20 10:09:55.031 436566 9159 8 0 16997 2025-03-20 11:27:28.979 2025-03-20 11:27:28.979 436566 9333 9 0 16998 2025-03-20 11:58:39.61 2025-03-20 11:58:39.61 436566 9496 1 0 16999 2025-03-20 10:09:55.031 2025-03-20 10:09:55.031 436566 9669 75 0 17000 2025-03-20 11:49:37.158 2025-03-20 11:49:37.158 436566 9796 9 0 17001 2025-03-20 10:09:54.701 2025-03-20 10:09:54.701 436566 9863 8 0 17002 2025-03-20 11:09:31.679 2025-03-20 11:09:31.679 436566 10302 810 0 17003 2025-03-20 11:56:57.413 2025-03-20 11:56:57.413 436566 10409 45 0 17004 2025-03-20 11:44:20.399 2025-03-20 13:01:12.314 436566 11220 1 0 17005 2025-03-20 11:45:00.072 2025-03-20 11:45:00.072 436566 11515 4 0 17006 2025-03-20 13:01:10.891 2025-03-20 13:01:10.891 436566 11516 0 0 17007 2025-03-20 11:09:31.679 2025-03-20 11:09:31.679 436566 11819 90 0 17008 2025-03-20 10:09:56.791 2025-03-20 10:09:56.791 436566 11938 75 0 17009 2025-03-20 10:59:21.282 2025-03-20 10:59:21.282 436566 12220 2 0 17010 2025-03-20 10:09:56.618 2025-03-20 10:09:56.618 436566 12278 8 0 17011 2025-03-20 10:09:55.645 2025-03-20 10:09:55.645 436566 12959 75 0 17012 2025-03-20 11:58:39.61 2025-03-20 11:58:39.61 436566 13198 11 0 17013 2025-03-20 10:09:56.791 2025-03-20 10:09:56.791 436566 13365 8 0 17014 2025-03-20 11:49:37.158 2025-03-20 11:49:37.158 436566 13566 1 0 17015 2025-03-20 13:01:11.871 2025-03-20 13:01:11.871 436566 14465 1 0 17016 2025-03-20 10:09:54.885 2025-03-20 10:09:54.885 436566 14651 75 0 17017 2025-03-20 10:09:54.885 2025-03-20 10:09:54.885 436566 14939 8 0 17018 2025-03-20 10:59:21.282 2025-03-20 10:59:21.282 436566 15239 19 0 17019 2025-03-20 10:09:55.829 2025-03-20 10:09:55.829 436566 15549 8 0 17020 2025-03-20 10:42:48.84 2025-03-20 10:42:48.84 436566 15732 2 0 17021 2025-03-20 10:09:54.367 2025-03-20 10:09:54.367 436566 16276 75 0 17022 2025-03-20 12:14:35.636 2025-03-20 12:14:35.636 436566 16747 9 0 17023 2025-03-20 11:04:28.836 2025-03-20 11:04:28.836 436566 16912 0 0 17024 2025-03-20 10:09:56.618 2025-03-20 10:09:56.618 436566 16942 75 0 17025 2025-03-20 12:08:24.779 2025-03-20 12:08:24.779 436566 17014 36 0 17026 2025-03-20 11:16:07.634 2025-03-20 11:16:07.634 436566 17275 19 0 17027 2025-03-20 10:09:54.752 2025-03-20 10:09:54.752 436566 17713 8 0 17028 2025-03-20 11:44:12.131 2025-03-20 11:44:12.131 436566 17797 1 0 17029 2025-03-20 11:45:00.072 2025-03-20 11:45:00.072 436566 18637 38 0 17030 2025-03-20 10:09:55.338 2025-03-20 10:09:55.338 436566 19527 75 0 17031 2025-03-20 10:09:54.752 2025-03-20 10:09:54.752 436566 19581 75 0 17032 2025-03-20 10:09:54.367 2025-03-20 10:09:54.367 436566 20254 8 0 17033 2025-03-20 10:09:55.108 2025-03-20 10:09:55.108 436566 20490 75 0 17034 2025-03-20 12:36:35.176 2025-03-20 12:36:35.176 436566 20602 4 0 17035 2025-03-20 13:01:11.412 2025-03-20 13:01:11.412 436566 20757 0 0 17036 2025-03-20 10:09:55.753 2025-03-20 10:09:55.753 436566 20799 8 0 17037 2025-03-20 11:16:07.634 2025-03-20 11:16:07.634 436566 20892 2 0 17038 2025-03-20 10:09:54.546 2025-03-20 10:09:54.546 436566 21014 8 0 17039 2025-03-20 11:44:12.131 2025-03-20 12:14:35.636 436566 21041 10 0 17040 2025-03-20 12:08:24.779 2025-03-20 12:08:24.779 436566 21145 4 0 17041 2025-03-20 11:04:30.38 2025-03-20 11:04:30.38 436566 21263 9 0 17042 2025-03-20 11:23:52.008 2025-03-20 11:23:52.008 436566 21412 2 0 17043 2025-03-20 13:01:12.314 2025-03-20 13:01:12.314 436566 21416 1 0 17044 2025-03-20 10:42:48.84 2025-03-20 10:42:48.84 436566 21709 19 0 17045 2025-03-20 11:44:20.399 2025-03-20 11:44:20.399 436566 21794 9 0 17046 2025-03-20 13:01:10.891 2025-03-20 13:01:10.891 436566 21814 1 0 17047 2025-03-20 12:05:51.415 2025-03-20 12:05:51.415 436567 1009 2 0 17048 2025-03-20 10:05:08.23 2025-03-20 10:05:08.23 436567 16789 1 0 17049 2025-03-20 10:07:57.506 2025-03-20 10:07:57.506 436567 19663 3 0 17050 2025-03-20 12:05:51.415 2025-03-20 12:05:51.415 436567 20606 19 0 17051 2025-03-20 10:07:57.506 2025-03-20 10:07:57.506 436567 21421 27 0 17052 2025-03-20 10:07:09.988 2025-03-20 10:07:09.988 436568 1658 1 0 17053 2025-03-20 10:28:56.854 2025-03-20 10:28:56.854 436568 1741 1 0 17054 2025-03-20 10:28:56.854 2025-03-20 10:28:56.854 436568 4225 10 0 17055 2025-03-20 11:48:31.399 2025-03-20 11:48:31.399 436568 9356 9 0 17056 2025-03-20 11:48:31.399 2025-03-20 11:48:31.399 436568 9969 81 0 17057 2025-03-20 11:48:30.848 2025-03-20 11:48:30.848 436568 13097 1 0 17058 2025-03-20 11:48:30.671 2025-03-20 11:48:30.671 436568 13217 1 0 17059 2025-03-20 11:48:30.848 2025-03-20 11:48:30.848 436568 20481 8 0 17060 2025-03-20 11:48:30.671 2025-03-20 11:48:30.671 436568 21248 0 0 17061 2025-03-20 10:09:14.34 2025-03-20 10:09:14.34 436569 9026 1 0 17062 2025-03-20 12:05:48.148 2025-03-20 12:05:48.148 436570 1823 2 0 17063 2025-03-20 10:19:06.982 2025-03-20 10:19:06.982 436570 5725 2 0 17064 2025-03-20 12:05:48.148 2025-03-20 12:05:48.148 436570 8459 19 0 17065 2025-03-20 10:19:06.982 2025-03-20 10:19:06.982 436570 15103 19 0 17066 2025-03-20 10:09:25.468 2025-03-20 10:09:25.468 436570 21062 1 0 17067 2025-03-20 10:10:45.172 2025-03-20 10:10:45.172 436571 1105 1 0 17068 2025-03-20 10:31:59.796 2025-03-20 10:31:59.796 436572 985 1 0 17069 2025-03-20 11:05:07.155 2025-03-20 11:05:07.155 436572 1162 8 0 17070 2025-03-20 11:05:06.875 2025-03-20 11:05:06.875 436572 5497 0 0 17071 2025-03-20 10:31:59.585 2025-03-20 10:31:59.585 436572 11395 9 0 17072 2025-03-20 10:28:50.355 2025-03-20 10:28:50.355 436572 12976 10 0 17073 2025-03-20 10:28:50.355 2025-03-20 10:28:50.355 436572 14669 1 0 17074 2025-03-20 11:05:08.737 2025-03-20 11:05:08.737 436572 15200 9 0 17075 2025-03-20 10:10:50.346 2025-03-20 10:10:50.346 436572 15588 1 0 17076 2025-03-20 11:05:08.737 2025-03-20 11:05:08.737 436572 16276 81 0 17077 2025-03-20 11:05:07.155 2025-03-20 11:05:07.155 436572 17106 1 0 17078 2025-03-20 11:05:06.875 2025-03-20 11:05:06.875 436572 20500 1 0 17079 2025-03-20 10:31:59.796 2025-03-20 10:31:59.796 436572 21212 9 0 17080 2025-03-20 10:31:59.585 2025-03-20 10:31:59.585 436572 21798 1 0 17081 2025-03-20 10:12:15.693 2025-03-20 10:12:15.693 436573 1310 1 0 17082 2025-03-20 10:12:28.116 2025-03-20 10:12:28.116 436574 2748 100 0 17083 2025-03-20 10:12:50.363 2025-03-20 10:12:50.363 436575 3342 1 0 17084 2025-03-20 10:15:53.482 2025-03-20 10:15:53.482 436576 12911 1 0 17085 2025-03-20 10:16:55.234 2025-03-20 10:16:55.234 436577 638 1 0 17086 2025-03-20 10:18:16.707 2025-03-20 10:18:16.707 436577 20597 27 0 17087 2025-03-20 10:18:16.707 2025-03-20 10:18:16.707 436577 21713 3 0 17088 2025-03-20 10:18:54.083 2025-03-20 10:18:54.083 436578 954 1 0 17089 2025-03-20 10:21:22.195 2025-03-20 10:21:22.195 436579 11862 1 0 17090 2025-03-20 10:23:17.062 2025-03-20 10:23:17.062 436580 21249 1 0 17091 2025-03-20 11:36:40.448 2025-03-20 11:36:40.448 436581 4074 1 0 17092 2025-03-20 10:23:45.338 2025-03-20 10:23:45.338 436581 18630 1 0 17093 2025-03-20 11:36:40.448 2025-03-20 11:36:40.448 436581 21771 9 0 17094 2025-03-20 11:12:06.873 2025-03-20 11:12:06.873 436582 628 91 0 17095 2025-03-20 11:12:06.873 2025-03-20 11:12:06.873 436582 2338 10 0 17096 2025-03-20 10:27:33.938 2025-03-20 10:27:33.938 436582 17221 1 0 17097 2025-03-20 10:40:51.439 2025-03-20 10:40:51.439 436583 13544 3 0 17098 2025-03-20 10:28:13.805 2025-03-20 10:28:13.805 436583 18865 1 0 17099 2025-03-20 10:40:51.439 2025-03-20 10:40:51.439 436583 21391 27 0 17100 2025-03-20 11:07:27.244 2025-03-20 11:07:27.244 436584 4802 1 0 17101 2025-03-20 11:07:28.141 2025-03-20 11:07:28.141 436584 11153 1 0 17102 2025-03-20 11:07:28.141 2025-03-20 11:07:28.141 436584 18101 8 0 17103 2025-03-20 11:07:27.244 2025-03-20 11:07:27.244 436584 21303 0 0 17104 2025-03-20 10:38:22.702 2025-03-20 10:38:22.702 436584 21405 10 0 17105 2025-03-20 11:09:48.275 2025-03-20 11:09:48.275 436585 634 1 0 17106 2025-03-20 11:09:47.824 2025-03-20 11:09:47.824 436585 3377 0 0 17107 2025-03-20 10:51:10.583 2025-03-20 10:51:10.583 436585 4570 0 0 17108 2025-03-20 10:41:53.25 2025-03-20 10:41:53.25 436585 10536 19 0 17109 2025-03-20 10:39:23.079 2025-03-20 10:39:23.079 436585 11091 0 0 17110 2025-03-20 11:09:47.824 2025-03-20 11:09:47.824 436585 11417 1 0 17111 2025-03-20 10:51:53.449 2025-03-20 10:51:53.449 436585 13759 0 0 17112 2025-03-20 11:09:48.275 2025-03-20 11:09:48.275 436585 20776 8 0 17113 2025-03-20 10:41:53.25 2025-03-20 10:41:53.25 436585 21701 2 0 17114 2025-03-20 10:39:28.718 2025-03-20 10:39:28.718 436585 21833 0 0 17115 2025-03-20 10:41:30.962 2025-03-20 10:41:30.962 436586 7659 1 0 17116 2025-03-20 11:04:44.03 2025-03-20 11:04:44.03 436586 19094 9 0 17117 2025-03-20 11:04:44.03 2025-03-20 11:04:44.03 436586 20310 1 0 17118 2025-03-20 11:10:07.328 2025-03-20 11:10:07.328 436587 999 9 0 17119 2025-03-20 10:42:14.812 2025-03-20 10:42:14.812 436587 1960 11 0 17120 2025-03-20 12:05:41.264 2025-03-20 12:05:41.264 436587 2123 19 0 17121 2025-03-20 12:05:41.264 2025-03-20 12:05:41.264 436587 2529 2 0 17122 2025-03-20 11:10:00.504 2025-03-20 11:10:00.504 436587 4084 8 0 17123 2025-03-20 11:10:00.173 2025-03-20 11:10:00.173 436587 4768 1 0 17124 2025-03-20 11:10:07.328 2025-03-20 11:10:07.328 436587 6260 81 0 17125 2025-03-20 11:10:00.173 2025-03-20 11:10:00.173 436587 9529 0 0 17126 2025-03-20 12:35:49.398 2025-03-20 12:35:49.398 436587 14168 3 0 17127 2025-03-20 11:10:00.504 2025-03-20 11:10:00.504 436587 15192 1 0 17128 2025-03-20 12:35:49.398 2025-03-20 12:35:49.398 436587 21048 0 0 17129 2025-03-20 11:09:50.597 2025-03-20 11:09:50.597 436588 738 0 0 17130 2025-03-20 11:09:50.798 2025-03-20 11:09:50.798 436588 989 8 0 17131 2025-03-20 10:42:21.908 2025-03-20 10:42:21.908 436588 2459 1 0 17132 2025-03-20 11:09:50.597 2025-03-20 11:09:50.597 436588 9348 1 0 17133 2025-03-20 11:09:50.798 2025-03-20 11:09:50.798 436588 14280 1 0 17134 2025-03-20 10:59:47.508 2025-03-20 10:59:47.508 436589 726 0 0 17135 2025-03-20 10:59:47.508 2025-03-20 10:59:47.508 436589 16653 3 0 17136 2025-03-20 10:42:23.78 2025-03-20 10:42:23.78 436589 20854 1 0 17137 2025-03-20 11:09:49.768 2025-03-20 11:09:49.768 436590 1740 0 0 17138 2025-03-20 11:09:50.069 2025-03-20 11:09:50.069 436590 8037 1 0 17139 2025-03-20 11:09:49.768 2025-03-20 11:09:49.768 436590 10849 1 0 17140 2025-03-20 11:09:50.069 2025-03-20 11:09:50.069 436590 14357 8 0 17141 2025-03-20 10:42:28.047 2025-03-20 10:42:28.047 436590 18114 1 0 17142 2025-03-20 10:43:37.101 2025-03-20 10:43:37.101 436591 20502 1 0 17143 2025-03-20 12:04:24.114 2025-03-20 12:04:24.114 436592 19930 9 0 17144 2025-03-20 12:04:24.114 2025-03-20 12:04:24.114 436592 20990 1 0 17145 2025-03-20 10:45:36.612 2025-03-20 10:45:36.612 436592 21577 1 0 17146 2025-03-20 10:55:39.863 2025-03-20 10:55:39.863 436593 687 2 0 17147 2025-03-20 10:55:40.258 2025-03-20 10:55:40.258 436593 701 21 0 17148 2025-03-20 10:55:41.335 2025-03-20 10:55:41.335 436593 705 2 0 17149 2025-03-20 10:55:41.335 2025-03-20 10:55:41.335 436593 782 21 0 17150 2025-03-20 10:55:39.976 2025-03-20 10:55:39.976 436593 1009 21 0 17151 2025-03-20 10:55:40.503 2025-03-20 10:55:40.503 436593 1213 2 0 17152 2025-03-20 10:55:39.976 2025-03-20 10:55:39.976 436593 1609 2 0 17153 2025-03-20 12:08:33.469 2025-03-20 12:08:33.469 436593 1833 4 0 17154 2025-03-20 11:10:37.453 2025-03-20 11:10:37.453 436593 2010 1 0 17155 2025-03-20 10:55:41.443 2025-03-20 10:55:41.443 436593 2151 21 0 17156 2025-03-20 10:55:40.356 2025-03-20 10:55:40.356 436593 2195 21 0 17157 2025-03-20 10:46:34.118 2025-03-20 10:46:34.118 436593 2327 210 0 17158 2025-03-20 10:55:40.147 2025-03-20 10:55:40.147 436593 2609 21 0 17159 2025-03-20 10:55:42.317 2025-03-20 10:55:42.317 436593 2639 2 0 17160 2025-03-20 10:55:39.638 2025-03-20 10:55:39.638 436593 7425 2 0 17161 2025-03-20 11:40:02.213 2025-03-20 11:40:02.213 436593 7580 19 0 17162 2025-03-20 12:08:33.469 2025-03-20 12:08:33.469 436593 7674 36 0 17163 2025-03-20 10:55:39.638 2025-03-20 10:55:39.638 436593 9167 21 0 17164 2025-03-20 10:55:42.317 2025-03-20 10:55:42.317 436593 9200 21 0 17165 2025-03-20 11:13:25.61 2025-03-20 11:13:25.61 436593 9242 3 0 17166 2025-03-20 10:55:40.356 2025-03-20 10:55:40.356 436593 9874 2 0 17167 2025-03-20 11:13:25.61 2025-03-20 11:13:25.61 436593 10311 27 0 17168 2025-03-20 10:55:40.258 2025-03-20 10:55:40.258 436593 11819 2 0 17169 2025-03-20 12:20:30.74 2025-03-20 12:20:30.74 436593 13553 1 0 17170 2025-03-20 11:40:02.213 2025-03-20 11:40:02.213 436593 15510 2 0 17171 2025-03-20 11:10:37.037 2025-03-20 11:10:37.037 436593 16289 0 0 17172 2025-03-20 11:10:38.217 2025-03-20 11:10:38.217 436593 16562 9 0 17173 2025-03-20 11:10:37.453 2025-03-20 11:10:37.453 436593 16633 8 0 17174 2025-03-20 10:55:40.147 2025-03-20 10:55:40.147 436593 17568 2 0 17175 2025-03-20 11:13:26.013 2025-03-20 11:13:26.013 436593 17727 243 0 17176 2025-03-20 11:10:38.217 2025-03-20 11:10:38.217 436593 17797 81 0 17177 2025-03-20 10:55:41.189 2025-03-20 10:55:41.189 436593 17984 21 0 17178 2025-03-20 10:55:42.183 2025-03-20 10:55:42.183 436593 18321 2 0 17179 2025-03-20 11:10:37.037 2025-03-20 11:10:37.037 436593 18731 1 0 17180 2025-03-20 10:55:39.863 2025-03-20 10:55:39.863 436593 19735 21 0 17181 2025-03-20 10:55:41.443 2025-03-20 10:55:41.443 436593 19863 2 0 17182 2025-03-20 11:13:26.013 2025-03-20 11:13:26.013 436593 20306 27 0 17183 2025-03-20 10:55:41.189 2025-03-20 10:55:41.189 436593 20502 2 0 17184 2025-03-20 10:55:41.559 2025-03-20 10:55:41.559 436593 20745 21 0 17185 2025-03-20 10:55:42.183 2025-03-20 10:55:42.183 436593 21047 21 0 17186 2025-03-20 10:55:40.503 2025-03-20 10:55:40.503 436593 21057 21 0 17187 2025-03-20 10:55:41.559 2025-03-20 10:55:41.559 436593 21214 2 0 17188 2025-03-20 12:20:30.74 2025-03-20 12:20:30.74 436593 21405 9 0 17189 2025-03-20 10:48:09.804 2025-03-20 10:48:09.804 436594 1092 1 0 17190 2025-03-20 10:50:15.404 2025-03-20 10:50:15.404 436595 7983 1 0 17191 2025-03-20 11:01:25.748 2025-03-20 11:01:25.748 436596 7425 0 0 17192 2025-03-20 10:50:26.498 2025-03-20 10:50:26.498 436596 18630 97 0 17193 2025-03-20 11:01:25.748 2025-03-20 11:01:25.748 436596 20642 3 0 17194 2025-03-20 10:55:12.542 2025-03-20 10:55:12.542 436597 10060 1 0 17195 2025-03-20 11:00:55.356 2025-03-20 11:00:55.356 436597 10490 3 0 17196 2025-03-20 11:00:55.356 2025-03-20 11:00:55.356 436597 11609 27 0 17197 2025-03-20 10:55:12.79 2025-03-20 10:55:12.79 436598 10102 1 0 17198 2025-03-20 11:06:22.015 2025-03-20 11:06:22.015 436599 1488 6 0 17199 2025-03-20 10:56:54.862 2025-03-20 10:56:54.862 436599 1605 1 0 17200 2025-03-20 11:06:22.015 2025-03-20 11:06:22.015 436599 10979 50 0 17201 2025-03-20 11:29:49.055 2025-03-20 11:29:49.055 436600 6160 3 0 17202 2025-03-20 11:29:51.429 2025-03-20 11:29:51.429 436600 14774 30 0 17203 2025-03-20 11:29:49.055 2025-03-20 11:29:49.055 436600 20059 30 0 17204 2025-03-20 11:29:51.429 2025-03-20 11:29:51.429 436600 20502 3 0 17205 2025-03-20 11:01:11.992 2025-03-20 11:01:11.992 436600 20713 1 0 17206 2025-03-20 11:55:07.563 2025-03-20 11:55:07.563 436601 994 9 0 17207 2025-03-20 11:02:13.177 2025-03-20 11:02:13.177 436601 1135 1 0 17208 2025-03-20 11:40:30.431 2025-03-20 11:40:30.431 436601 1495 2 0 17209 2025-03-20 11:55:07.563 2025-03-20 11:55:07.563 436601 3717 1 0 17210 2025-03-20 11:40:30.431 2025-03-20 11:40:30.431 436601 4259 19 0 17211 2025-03-20 12:17:23.298 2025-03-20 12:17:23.298 436601 9367 7 0 17212 2025-03-20 12:17:23.298 2025-03-20 12:17:23.298 436601 10352 64 0 17213 2025-03-20 11:03:59.393 2025-03-20 11:03:59.393 436602 7654 1 0 17214 2025-03-20 12:05:39.026 2025-03-20 12:05:39.026 436602 10342 19 0 17215 2025-03-20 12:05:39.026 2025-03-20 12:05:39.026 436602 21114 2 0 17216 2025-03-20 11:22:13.379 2025-03-20 11:22:13.379 436603 9863 19 0 17217 2025-03-20 11:22:13.379 2025-03-20 11:22:13.379 436603 20657 2 0 17218 2025-03-20 11:04:04.168 2025-03-20 11:04:04.168 436603 21212 1 0 17219 2025-03-20 11:09:04.285 2025-03-20 11:09:04.285 436605 27 2 0 17220 2025-03-20 11:09:07.631 2025-03-20 11:09:07.631 436605 669 2 0 17221 2025-03-20 11:09:02.359 2025-03-20 11:09:02.359 436605 706 21 0 17222 2025-03-20 11:13:21.645 2025-03-20 11:13:21.645 436605 981 27 0 17223 2025-03-20 11:09:03.746 2025-03-20 11:09:03.746 436605 1352 2 0 17224 2025-03-20 11:09:02.359 2025-03-20 11:09:02.359 436605 1823 2 0 17225 2025-03-20 11:09:08.108 2025-03-20 11:09:08.108 436605 1970 2 0 17226 2025-03-20 11:09:07.49 2025-03-20 11:09:07.49 436605 2016 21 0 17227 2025-03-20 11:09:02.698 2025-03-20 11:09:02.698 436605 2196 21 0 17228 2025-03-20 11:09:04.285 2025-03-20 11:09:04.285 436605 2674 21 0 17229 2025-03-20 11:09:05.703 2025-03-20 11:09:05.703 436605 3656 21 0 17230 2025-03-20 11:09:07.631 2025-03-20 11:09:07.631 436605 4048 21 0 17231 2025-03-20 11:09:02.552 2025-03-20 11:09:02.552 436605 4798 21 0 17232 2025-03-20 11:09:05.886 2025-03-20 11:09:05.886 436605 5112 2 0 17233 2025-03-20 11:09:01.452 2025-03-20 11:09:01.452 436605 5708 21 0 17234 2025-03-20 11:13:21.645 2025-03-20 11:13:21.645 436605 5961 3 0 17235 2025-03-20 13:09:52.956 2025-03-20 13:09:52.956 436605 6058 75 0 17236 2025-03-20 11:09:06.762 2025-03-20 11:09:06.762 436605 7418 21 0 17237 2025-03-20 11:09:01.452 2025-03-20 11:09:01.452 436605 8004 2 0 17238 2025-03-20 11:09:06.456 2025-03-20 11:09:06.456 436605 8080 2 0 17239 2025-03-20 11:09:04.097 2025-03-20 11:09:04.097 436605 8506 2 0 17240 2025-03-20 11:09:04.857 2025-03-20 11:09:04.857 436605 8535 21 0 17241 2025-03-20 11:09:07.344 2025-03-20 11:09:07.344 436605 9863 2 0 17242 2025-03-20 11:09:03.018 2025-03-20 11:09:03.018 436605 10016 2 0 17243 2025-03-20 11:09:06.456 2025-03-20 11:09:06.456 436605 10056 21 0 17244 2025-03-20 11:09:08.243 2025-03-20 11:09:08.243 436605 10283 2 0 17245 2025-03-20 11:09:06.047 2025-03-20 11:09:06.047 436605 10433 21 0 17246 2025-03-20 11:09:01.608 2025-03-20 11:09:01.608 436605 10611 21 0 17247 2025-03-20 11:09:04.097 2025-03-20 11:09:04.097 436605 10944 21 0 17248 2025-03-20 11:09:07.176 2025-03-20 11:09:08.108 436605 11515 41 0 17249 2025-03-20 11:09:05.072 2025-03-20 11:09:05.072 436605 12222 2 0 17250 2025-03-20 11:09:03.587 2025-03-20 11:09:03.587 436605 12334 21 0 17251 2025-03-20 11:09:04.857 2025-03-20 11:09:04.857 436605 12744 2 0 17252 2025-03-20 11:05:03.537 2025-03-20 11:05:03.537 436605 13759 1 0 17253 2025-03-20 11:09:02.102 2025-03-20 11:09:02.102 436605 14122 21 0 17254 2025-03-20 12:26:32.453 2025-03-20 12:26:32.453 436605 14258 38 0 17255 2025-03-20 11:09:02.552 2025-03-20 11:09:02.552 436605 14657 2 0 17256 2025-03-20 11:09:05.886 2025-03-20 11:09:05.886 436605 15491 21 0 17257 2025-03-20 11:09:01.794 2025-03-20 11:09:01.794 436605 16296 21 0 17258 2025-03-20 11:09:03.587 2025-03-20 11:09:03.587 436605 16513 2 0 17259 2025-03-20 11:09:06.762 2025-03-20 11:09:06.762 436605 16542 2 0 17260 2025-03-20 11:09:03.746 2025-03-20 11:09:03.746 436605 16954 21 0 17261 2025-03-20 11:09:06.047 2025-03-20 11:09:06.047 436605 17201 2 0 17262 2025-03-20 11:09:03.018 2025-03-20 11:09:03.018 436605 17710 21 0 17263 2025-03-20 11:09:05.262 2025-03-20 11:09:05.262 436605 18011 21 0 17264 2025-03-20 11:09:01.794 2025-03-20 11:09:01.794 436605 18402 2 0 17265 2025-03-20 11:05:24.927 2025-03-20 11:05:24.927 436605 18441 0 0 17266 2025-03-20 11:09:02.848 2025-03-20 11:09:02.848 436605 18615 2 0 17267 2025-03-20 12:26:32.453 2025-03-20 12:26:32.453 436605 19087 4 0 17268 2025-03-20 11:09:08.243 2025-03-20 11:09:08.243 436605 19189 21 0 17269 2025-03-20 11:09:01.608 2025-03-20 11:09:01.608 436605 19888 2 0 17270 2025-03-20 11:09:03.916 2025-03-20 11:09:03.916 436605 19980 21 0 17271 2025-03-20 11:09:02.102 2025-03-20 11:09:02.102 436605 20117 2 0 17272 2025-03-20 11:09:06.615 2025-03-20 11:09:06.615 436605 20225 2 0 17273 2025-03-20 13:09:52.956 2025-03-20 13:09:52.956 436605 20495 8 0 17274 2025-03-20 11:09:05.703 2025-03-20 11:09:05.703 436605 20613 2 0 17275 2025-03-20 11:09:03.916 2025-03-20 11:09:03.916 436605 20778 2 0 17276 2025-03-20 11:09:07.49 2025-03-20 11:09:07.49 436605 20852 2 0 17277 2025-03-20 11:09:05.262 2025-03-20 11:09:05.262 436605 20956 2 0 17278 2025-03-20 11:09:02.848 2025-03-20 11:09:02.848 436605 21048 21 0 17279 2025-03-20 11:09:06.615 2025-03-20 11:09:06.615 436605 21164 21 0 17280 2025-03-20 11:09:05.072 2025-03-20 11:09:05.072 436605 21413 21 0 17281 2025-03-20 11:09:02.698 2025-03-20 11:09:02.698 436605 21416 2 0 17282 2025-03-20 11:09:07.344 2025-03-20 11:09:07.344 436605 21494 21 0 17283 2025-03-20 11:09:07.176 2025-03-20 11:09:07.176 436605 21578 2 0 17284 2025-03-20 11:09:19.736 2025-03-20 11:09:19.736 436606 2703 21 0 17285 2025-03-20 11:05:59.438 2025-03-20 11:05:59.438 436606 13398 1 0 17286 2025-03-20 11:09:19.736 2025-03-20 11:09:19.736 436606 20993 2 0 17287 2025-03-20 11:10:27.105 2025-03-20 11:10:27.105 436607 18772 0 0 17288 2025-03-20 11:09:08.322 2025-03-20 11:09:08.322 436607 19668 1 0 17289 2025-03-20 11:10:29.259 2025-03-20 11:10:29.259 436608 775 4 0 17290 2025-03-20 11:09:52.854 2025-03-20 11:09:52.854 436608 1833 10 0 17291 2025-03-20 12:06:53.055 2025-03-20 12:06:53.055 436608 8498 1 0 17292 2025-03-20 11:10:29.259 2025-03-20 11:10:29.259 436608 16808 36 0 17293 2025-03-20 12:06:53.055 2025-03-20 12:06:53.055 436608 21373 9 0 17294 2025-03-20 11:12:03.785 2025-03-20 11:12:03.785 436609 21214 1 0 17295 2025-03-20 12:49:14.076 2025-03-20 12:49:14.076 436609 21338 2 0 17296 2025-03-20 12:49:14.076 2025-03-20 12:49:14.076 436609 21603 19 0 17297 2025-03-20 11:13:08.293 2025-03-20 11:13:08.293 436610 18865 1 0 17298 2025-03-20 12:13:11.856 2025-03-20 12:13:11.856 436611 1136 9 0 17299 2025-03-20 12:13:10.917 2025-03-20 12:13:10.917 436611 1712 1 0 17300 2025-03-20 14:20:17.831 2025-03-20 14:20:17.831 436611 6741 90 0 17301 2025-03-20 12:13:11.11 2025-03-20 12:13:11.11 436611 6777 1 0 17302 2025-03-20 11:14:38.425 2025-03-20 11:14:38.425 436611 13174 21 0 17303 2025-03-20 14:20:17.831 2025-03-20 14:20:17.831 436611 18241 10 0 17304 2025-03-20 12:13:10.917 2025-03-20 12:13:10.917 436611 20133 0 0 17305 2025-03-20 12:13:11.11 2025-03-20 12:13:11.11 436611 20990 8 0 17306 2025-03-20 12:13:11.856 2025-03-20 12:13:11.856 436611 21222 81 0 17307 2025-03-20 12:04:00.125 2025-03-20 12:04:00.125 436611 21768 0 21 17308 2025-03-20 12:05:34.14 2025-03-20 12:05:34.14 436612 1733 19 0 17309 2025-03-20 14:29:58.783 2025-03-20 14:29:58.783 436612 7818 21 0 17310 2025-03-20 12:05:34.14 2025-03-20 12:05:34.14 436612 7891 2 0 17311 2025-03-20 14:29:58.401 2025-03-20 14:29:58.401 436612 8954 2 0 17312 2025-03-20 11:19:16.364 2025-03-20 12:12:14.045 436612 9341 11 0 17313 2025-03-20 12:12:14.045 2025-03-20 12:12:14.045 436612 9843 0 0 17314 2025-03-20 11:26:37 2025-03-20 11:26:37 436612 9920 36 0 17315 2025-03-20 12:12:15.379 2025-03-20 12:12:15.379 436612 13217 81 0 17316 2025-03-20 12:12:15.379 2025-03-20 12:12:15.379 436612 13987 9 0 17317 2025-03-20 11:26:37 2025-03-20 11:26:37 436612 15941 4 0 17318 2025-03-20 14:29:58.783 2025-03-20 14:29:58.783 436612 19394 2 0 17319 2025-03-20 12:12:14.25 2025-03-20 12:12:14.25 436612 19924 8 0 17320 2025-03-20 14:29:58.401 2025-03-20 14:29:58.401 436612 20245 21 0 17321 2025-03-20 12:12:14.25 2025-03-20 12:12:14.25 436612 21379 1 0 17322 2025-03-20 11:33:03.387 2025-03-20 11:33:03.387 436613 900 2 0 17323 2025-03-20 11:26:25.608 2025-03-20 11:26:25.608 436613 5519 36 0 17324 2025-03-20 11:33:03.387 2025-03-20 11:33:03.387 436613 8037 0 0 17325 2025-03-20 11:21:46.212 2025-03-20 11:21:46.212 436613 8284 10 0 17326 2025-03-20 11:26:25.608 2025-03-20 11:26:25.608 436613 15858 4 0 17327 2025-03-20 11:22:08.007 2025-03-20 11:22:08.007 436614 15703 1 0 17328 2025-03-20 11:43:46.589 2025-03-20 11:43:46.589 436614 20563 0 0 17329 2025-03-20 11:43:46.589 2025-03-20 11:43:46.589 436614 21279 1 0 17330 2025-03-20 14:29:19.026 2025-03-20 14:29:19.026 436614 21314 5 0 17331 2025-03-20 14:29:19.026 2025-03-20 14:29:19.026 436614 21701 45 0 17332 2025-03-20 11:22:38.102 2025-03-20 11:22:38.102 436615 2213 1 0 17333 2025-03-20 11:32:06.742 2025-03-20 11:32:06.742 436615 18101 0 0 17334 2025-03-20 11:23:59.743 2025-03-20 11:23:59.743 436616 9339 1 0 17335 2025-03-20 11:24:23.087 2025-03-20 11:24:23.087 436617 666 1 0 17336 2025-03-20 11:25:00.185 2025-03-20 11:25:00.185 436618 706 100 0 17337 2025-03-20 11:53:18.711 2025-03-20 11:53:18.711 436619 861 0 0 17338 2025-03-20 11:53:18.307 2025-03-20 11:53:18.307 436619 946 1 0 17339 2025-03-20 11:53:18.307 2025-03-20 11:53:18.307 436619 1447 0 0 17340 2025-03-20 12:41:01.275 2025-03-20 12:41:01.275 436619 1802 4 0 17341 2025-03-20 11:53:18.711 2025-03-20 11:53:18.711 436619 4802 1 0 17342 2025-03-20 12:41:01.275 2025-03-20 12:41:01.275 436619 11716 0 0 17343 2025-03-20 11:53:18.482 2025-03-20 11:53:18.482 436619 12821 1 0 17344 2025-03-20 11:25:36.237 2025-03-20 11:25:36.237 436619 18101 1 0 17345 2025-03-20 11:53:18.482 2025-03-20 11:53:18.482 436619 18225 0 0 17346 2025-03-20 11:26:27.625 2025-03-20 11:26:27.625 436620 21713 1 0 17347 2025-03-20 11:42:24.222 2025-03-20 11:42:24.222 436621 1092 1 0 17348 2025-03-20 11:48:29.609 2025-03-20 11:48:29.609 436621 4474 1 0 17349 2025-03-20 11:57:38.034 2025-03-20 11:57:38.034 436621 5828 2 0 17350 2025-03-20 11:48:29.814 2025-03-20 11:48:29.814 436621 7772 1 0 17351 2025-03-20 11:48:29.814 2025-03-20 11:48:29.814 436621 9348 8 0 17352 2025-03-20 11:57:38.034 2025-03-20 11:57:38.034 436621 10409 0 0 17353 2025-03-20 11:42:24.222 2025-03-20 11:42:24.222 436621 16270 10 0 17354 2025-03-20 11:26:57.994 2025-03-20 11:26:57.994 436621 16954 1 0 17355 2025-03-20 11:48:29.609 2025-03-20 11:48:29.609 436621 21291 0 0 17356 2025-03-20 11:48:26.643 2025-03-20 11:48:26.643 436622 716 1 0 17357 2025-03-20 11:48:26.799 2025-03-20 11:48:26.799 436622 2056 8 0 17358 2025-03-20 11:48:26.799 2025-03-20 11:48:26.799 436622 4763 1 0 17359 2025-03-20 12:05:26.256 2025-03-20 12:05:26.256 436622 5661 19 0 17360 2025-03-20 12:05:26.256 2025-03-20 12:05:26.256 436622 9363 2 0 17361 2025-03-20 11:42:34.663 2025-03-20 11:42:34.663 436622 10056 10 0 17362 2025-03-20 11:48:26.643 2025-03-20 11:48:26.643 436622 16145 0 0 17363 2025-03-20 11:27:30.086 2025-03-20 11:27:30.086 436622 16284 1 0 17364 2025-03-20 11:42:34.663 2025-03-20 11:42:34.663 436622 20624 1 0 17365 2025-03-20 11:29:23.107 2025-03-20 11:29:23.107 436623 20613 1 0 17366 2025-03-20 11:31:02.08 2025-03-20 11:31:02.08 436624 647 1 0 17367 2025-03-20 11:31:38.232 2025-03-20 11:31:38.232 436625 4259 1 0 17368 2025-03-20 12:03:54.112 2025-03-20 12:03:54.112 436625 18309 19 0 17369 2025-03-20 12:03:54.112 2025-03-20 12:03:54.112 436625 21254 2 0 17370 2025-03-20 11:48:19.437 2025-03-20 11:48:19.437 436626 650 9 0 17371 2025-03-20 11:48:17.882 2025-03-20 11:48:17.882 436626 3396 0 0 17372 2025-03-20 11:48:19.437 2025-03-20 11:48:19.437 436626 6136 81 0 17373 2025-03-20 11:48:18.2 2025-03-20 11:48:18.2 436626 9529 8 0 17374 2025-03-20 11:48:17.882 2025-03-20 11:48:17.882 436626 10719 1 0 17375 2025-03-20 11:42:45.532 2025-03-20 11:42:45.532 436626 17727 1 0 17376 2025-03-20 11:32:02.932 2025-03-20 11:32:02.932 436626 18423 1 0 17377 2025-03-20 11:48:18.2 2025-03-20 11:48:18.2 436626 21061 1 0 17378 2025-03-20 11:42:45.532 2025-03-20 11:42:45.532 436626 21713 10 0 17379 2025-03-20 11:32:18.114 2025-03-20 11:32:18.114 436627 17727 10 0 17380 2025-03-20 11:34:34.64 2025-03-20 11:34:34.64 436628 9 2 0 17381 2025-03-20 11:34:36.225 2025-03-20 11:34:36.225 436628 651 1 0 17382 2025-03-20 11:34:37.216 2025-03-20 11:34:37.216 436628 711 1 0 17383 2025-03-20 11:34:32.602 2025-03-20 11:34:32.602 436628 762 9 0 17384 2025-03-20 11:34:33.49 2025-03-20 11:34:33.49 436628 960 1 0 17385 2025-03-20 11:34:32.602 2025-03-20 11:34:32.602 436628 1051 1 0 17386 2025-03-20 11:34:33.875 2025-03-20 11:34:33.875 436628 1173 1 0 17387 2025-03-20 11:34:37.461 2025-03-20 11:34:37.461 436628 1493 1 0 17388 2025-03-20 11:34:35.372 2025-03-20 11:34:35.372 436628 1712 9 0 17389 2025-03-20 11:34:32.465 2025-03-20 11:34:32.465 436628 2196 1 0 17390 2025-03-20 11:34:31.641 2025-03-20 11:34:31.641 436628 4802 9 0 17391 2025-03-20 11:34:35.171 2025-03-20 11:34:35.171 436628 5036 1 0 17392 2025-03-20 11:34:36.053 2025-03-20 11:34:36.053 436628 5085 9 0 17393 2025-03-20 11:34:33.875 2025-03-20 11:34:33.875 436628 5444 9 0 17394 2025-03-20 11:34:31.813 2025-03-20 11:34:31.813 436628 8926 9 0 17395 2025-03-20 11:34:35.886 2025-03-20 11:34:35.886 436628 9276 1 0 17396 2025-03-20 11:34:36.225 2025-03-20 11:34:36.225 436628 9365 9 0 17397 2025-03-20 11:34:37.461 2025-03-20 11:34:37.461 436628 10280 9 0 17398 2025-03-20 11:34:36.397 2025-03-20 11:34:36.397 436628 10591 9 0 17399 2025-03-20 11:34:33.49 2025-03-20 11:34:33.49 436628 10731 9 0 17400 2025-03-20 11:34:35.54 2025-03-20 11:34:35.54 436628 12821 9 0 17401 2025-03-20 11:33:04.637 2025-03-20 11:33:04.637 436628 13174 1 0 17402 2025-03-20 11:34:36.76 2025-03-20 11:34:36.76 436628 14195 1 0 17403 2025-03-20 11:34:35.886 2025-03-20 11:34:35.886 436628 14472 9 0 17404 2025-03-20 11:34:34.64 2025-03-20 11:34:34.64 436628 14990 18 0 17405 2025-03-20 11:34:33.296 2025-03-20 11:34:33.296 436628 15119 9 0 17406 2025-03-20 11:34:31.641 2025-03-20 11:34:31.641 436628 15160 1 0 17407 2025-03-20 11:34:36.053 2025-03-20 11:34:36.053 436628 16406 1 0 17408 2025-03-20 11:34:36.577 2025-03-20 11:34:36.577 436628 17365 9 0 17409 2025-03-20 11:34:34.31 2025-03-20 11:34:34.31 436628 18393 1 0 17410 2025-03-20 11:34:35.372 2025-03-20 11:34:35.372 436628 18601 1 0 17411 2025-03-20 11:34:35.171 2025-03-20 11:34:35.171 436628 19071 9 0 17412 2025-03-20 11:34:35.54 2025-03-20 11:34:35.54 436628 19117 1 0 17413 2025-03-20 11:34:37.216 2025-03-20 11:34:37.216 436628 19471 9 0 17414 2025-03-20 11:34:34.31 2025-03-20 11:34:34.31 436628 20094 9 0 17415 2025-03-20 11:34:31.813 2025-03-20 11:34:31.813 436628 20562 1 0 17416 2025-03-20 11:34:36.577 2025-03-20 11:34:36.577 436628 20602 1 0 17417 2025-03-20 11:34:36.76 2025-03-20 11:34:36.76 436628 20939 9 0 17418 2025-03-20 11:34:33.296 2025-03-20 11:34:33.296 436628 21026 1 0 17419 2025-03-20 11:34:36.397 2025-03-20 11:34:36.397 436628 21287 1 0 17420 2025-03-20 11:34:32.465 2025-03-20 11:34:32.465 436628 21714 9 0 17421 2025-03-20 11:33:24.992 2025-03-20 11:33:24.992 436629 15326 1 0 17422 2025-03-20 11:34:01.281 2025-03-20 11:34:01.281 436630 1136 10 0 17423 2025-03-20 11:35:16.575 2025-03-20 11:35:16.575 436631 11621 1 0 17424 2025-03-20 12:05:26.847 2025-03-20 12:05:26.847 436632 674 1 0 17425 2025-03-20 12:05:26.847 2025-03-20 12:05:26.847 436632 16842 9 0 17426 2025-03-20 11:48:20.073 2025-03-20 11:48:20.073 436632 17109 4 0 17427 2025-03-20 11:48:20.073 2025-03-20 11:48:20.073 436632 17162 36 0 17428 2025-03-20 11:37:40.089 2025-03-20 11:37:40.089 436632 19512 100 0 17429 2025-03-20 11:38:55.545 2025-03-20 11:38:55.545 436632 20906 0 100 17430 2025-03-20 11:55:04.855 2025-03-20 11:55:04.855 436633 15243 3 0 17431 2025-03-20 11:39:35.7 2025-03-20 11:39:35.7 436633 20205 1 0 17432 2025-03-20 11:55:04.855 2025-03-20 11:55:04.855 436633 21369 27 0 17433 2025-03-20 11:41:19.927 2025-03-20 11:41:19.927 436634 1814 10 0 17434 2025-03-20 12:00:20.099 2025-03-20 12:00:20.099 436635 1552 1 0 17435 2025-03-20 12:00:20.099 2025-03-20 12:00:20.099 436635 3706 9 0 17436 2025-03-20 11:42:21.038 2025-03-20 11:42:21.038 436635 16354 1 0 17437 2025-03-20 12:00:20.544 2025-03-20 12:00:20.544 436635 16695 9 0 17438 2025-03-20 12:00:20.544 2025-03-20 12:00:20.544 436635 21383 1 0 17439 2025-03-20 11:47:45.189 2025-03-20 11:47:45.189 436636 770 1 0 17440 2025-03-20 11:44:44.412 2025-03-20 11:44:44.412 436636 5171 1 0 17441 2025-03-20 11:47:44.805 2025-03-20 11:47:44.805 436636 5806 9 0 17442 2025-03-20 11:47:45.189 2025-03-20 11:47:45.189 436636 5828 9 0 17443 2025-03-20 11:47:44.805 2025-03-20 11:47:44.805 436636 7891 1 0 17444 2025-03-20 11:45:24.238 2025-03-20 11:45:24.238 436637 766 1 0 17445 2025-03-20 12:05:25.286 2025-03-20 12:05:25.286 436638 11395 19 0 17446 2025-03-20 12:05:25.286 2025-03-20 12:05:25.286 436638 16513 2 0 17447 2025-03-20 11:46:39.167 2025-03-20 11:46:39.167 436638 21214 1 0 17448 2025-03-20 11:52:46.235 2025-03-20 11:52:46.235 436639 803 2 0 17449 2025-03-20 11:52:31.927 2025-03-20 11:52:31.927 436639 1141 10 0 17450 2025-03-20 11:52:45.714 2025-03-20 11:52:45.714 436639 1175 21 0 17451 2025-03-20 11:52:46.235 2025-03-20 11:52:46.235 436639 1244 21 0 17452 2025-03-20 11:50:21.25 2025-03-20 11:50:21.25 436639 1970 1 0 17453 2025-03-20 13:30:19.521 2025-03-20 13:30:19.521 436639 13133 3 0 17454 2025-03-20 11:52:45.714 2025-03-20 11:52:45.714 436639 19094 2 0 17455 2025-03-20 13:30:19.521 2025-03-20 13:30:19.521 436639 21421 29 0 17456 2025-03-20 11:52:31.927 2025-03-20 11:52:31.927 436639 21798 1 0 17457 2025-03-20 12:19:36.842 2025-03-20 12:19:36.842 436640 937 36 0 17458 2025-03-20 11:50:42.651 2025-03-20 11:50:42.651 436640 10311 10 0 17459 2025-03-20 12:19:36.842 2025-03-20 12:19:36.842 436640 12959 4 0 17460 2025-03-20 12:05:24.356 2025-03-20 12:05:24.356 436641 7916 19 0 17461 2025-03-20 12:05:24.356 2025-03-20 12:05:24.356 436641 20811 2 0 17462 2025-03-20 11:50:50.3 2025-03-20 11:50:50.3 436641 21019 1 0 17463 2025-03-20 11:56:58.295 2025-03-20 11:56:58.295 436642 1605 0 0 17464 2025-03-20 11:56:56.878 2025-03-20 11:56:56.878 436642 2757 1 0 17465 2025-03-20 11:56:57.491 2025-03-20 11:56:57.491 436642 5175 1 0 17466 2025-03-20 11:54:01.668 2025-03-20 11:54:01.668 436642 9177 1 0 17467 2025-03-20 11:56:58.736 2025-03-20 11:56:58.736 436642 10393 1 0 17468 2025-03-20 11:56:56.878 2025-03-20 11:56:56.878 436642 11776 0 0 17469 2025-03-20 11:56:57.491 2025-03-20 11:56:57.491 436642 12819 0 0 17470 2025-03-20 11:56:58.295 2025-03-20 11:56:58.295 436642 13361 1 0 17471 2025-03-20 11:56:58.521 2025-03-20 11:56:58.521 436642 17275 0 0 17472 2025-03-20 11:56:58.736 2025-03-20 11:56:58.736 436642 17316 0 0 17473 2025-03-20 11:56:58.521 2025-03-20 11:56:58.521 436642 21430 1 0 17474 2025-03-20 11:54:11.281 2025-03-20 11:54:11.281 436643 11621 10 0 17475 2025-03-20 12:06:53.031 2025-03-20 12:06:53.031 436643 12935 1 0 17476 2025-03-20 12:07:06.517 2025-03-20 12:07:06.517 436643 14651 0 0 17477 2025-03-20 12:06:53.031 2025-03-20 12:06:53.031 436643 14909 10 0 17478 2025-03-20 12:07:06.517 2025-03-20 12:07:06.517 436643 18772 2 0 17479 2025-03-20 11:56:16.081 2025-03-20 11:56:16.081 436644 1825 1 0 17480 2025-03-20 12:06:30.274 2025-03-20 12:06:30.274 436644 8664 2 0 17481 2025-03-20 12:06:30.274 2025-03-20 12:06:30.274 436644 21514 19 0 17482 2025-03-20 11:56:19.976 2025-03-20 11:56:19.976 436645 20825 1 0 17483 2025-03-20 11:57:39.986 2025-03-20 11:57:39.986 436646 15703 1 0 17484 2025-03-20 11:57:43.735 2025-03-20 11:57:43.735 436647 15978 100 0 17485 2025-03-20 11:58:25.556 2025-03-20 11:58:25.556 436648 9335 1 0 17486 2025-03-20 12:02:57.645 2025-03-20 12:02:57.645 436648 17592 1 0 17487 2025-03-20 12:02:57.645 2025-03-20 12:02:57.645 436648 18011 10 0 17488 2025-03-20 14:07:50.577 2025-03-20 14:07:50.577 436649 5036 9 0 17489 2025-03-20 14:07:51.81 2025-03-20 14:07:51.81 436649 12072 1 0 17490 2025-03-20 14:07:55.964 2025-03-20 14:07:55.964 436649 13038 1 0 17491 2025-03-20 12:00:16.467 2025-03-20 12:00:16.467 436649 16229 1 0 17492 2025-03-20 14:07:50.577 2025-03-20 14:07:50.577 436649 16680 1 0 17493 2025-03-20 14:07:55.964 2025-03-20 14:07:55.964 436649 18368 9 0 17494 2025-03-20 14:07:51.81 2025-03-20 14:07:51.81 436649 21287 9 0 17495 2025-03-20 12:03:16.548 2025-03-20 12:03:16.548 436650 2042 1 0 17496 2025-03-20 12:20:21.11 2025-03-20 12:20:21.11 436650 17226 90 0 17497 2025-03-20 12:20:21.11 2025-03-20 12:20:21.11 436650 19576 10 0 17498 2025-03-20 12:08:34.102 2025-03-20 12:08:34.102 436651 671 10 0 17499 2025-03-20 12:12:59.286 2025-03-20 12:12:59.286 436651 10862 0 100 17500 2025-03-20 12:10:23.911 2025-03-20 12:10:23.911 436652 10549 1 0 17501 2025-03-20 12:12:04.804 2025-03-20 12:12:04.804 436653 2681 0 0 17502 2025-03-20 12:11:38.024 2025-03-20 12:11:38.024 436653 7389 0 0 17503 2025-03-20 12:10:29.059 2025-03-20 12:10:29.059 436653 15408 1 0 17504 2025-03-20 12:12:19.538 2025-03-20 12:12:19.538 436654 673 8 0 17505 2025-03-20 12:19:29.663 2025-03-20 12:19:29.663 436654 1082 4 0 17506 2025-03-20 12:12:19.538 2025-03-20 12:12:19.538 436654 12609 1 0 17507 2025-03-20 12:19:29.663 2025-03-20 12:19:29.663 436654 18500 36 0 17508 2025-03-20 12:12:19.301 2025-03-20 12:12:19.301 436654 20198 0 0 17509 2025-03-20 12:11:56.841 2025-03-20 12:11:56.841 436654 20768 10 0 17510 2025-03-20 12:12:19.301 2025-03-20 12:12:19.301 436654 20963 1 0 17511 2025-03-20 12:12:49.156 2025-03-20 12:12:49.156 436655 5112 1 0 17512 2025-03-20 12:17:00.75 2025-03-20 12:17:00.75 436656 866 100 0 17513 2025-03-20 12:17:09.629 2025-03-20 12:17:09.629 436657 20768 1000 0 17514 2025-03-20 12:21:52.47 2025-03-20 12:21:52.47 436658 1046 27 0 17515 2025-03-20 12:27:46.576 2025-03-20 12:27:46.576 436658 1120 19 0 17516 2025-03-20 12:21:49.559 2025-03-20 12:21:49.559 436658 1237 3 0 17517 2025-03-20 12:21:52.47 2025-03-20 12:21:52.47 436658 4819 243 0 17518 2025-03-20 12:27:46.576 2025-03-20 12:27:46.576 436658 11938 2 0 17519 2025-03-20 12:17:23.33 2025-03-20 12:17:23.33 436658 20892 1 0 17520 2025-03-20 12:21:49.559 2025-03-20 12:21:49.559 436658 20980 27 0 17521 2025-03-20 12:22:56.024 2025-03-20 12:22:56.024 436659 686 19 0 17522 2025-03-20 12:19:44.402 2025-03-20 12:19:44.402 436659 2609 10 0 17523 2025-03-20 12:23:49.903 2025-03-20 12:23:49.903 436659 7869 4 0 17524 2025-03-20 12:23:49.903 2025-03-20 12:23:49.903 436659 19537 36 0 17525 2025-03-20 12:22:56.024 2025-03-20 12:22:56.024 436659 21275 2 0 17526 2025-03-20 12:24:58.547 2025-03-20 12:24:58.547 436660 7899 1 0 17527 2025-03-20 12:25:21.691 2025-03-20 12:25:21.691 436661 657 1 0 17528 2025-03-20 12:32:02.932 2025-03-20 12:32:02.932 436661 10944 5 0 17529 2025-03-20 12:32:02.932 2025-03-20 12:32:02.932 436661 20965 45 0 17530 2025-03-20 12:28:01.235 2025-03-20 12:28:01.235 436663 770 10 0 17531 2025-03-20 12:28:33.586 2025-03-20 12:28:33.586 436664 708 1 0 17532 2025-03-20 13:25:14.174 2025-03-20 13:25:14.174 436664 9329 36 0 17533 2025-03-20 13:25:14.174 2025-03-20 13:25:14.174 436664 9863 4 0 17534 2025-03-20 12:48:30.175 2025-03-20 12:48:30.175 436665 827 18 0 17535 2025-03-20 12:29:27.841 2025-03-20 12:29:27.841 436665 1006 1 0 17536 2025-03-20 12:43:58.367 2025-03-20 12:43:58.367 436665 17552 36 0 17537 2025-03-20 12:48:30.175 2025-03-20 12:48:30.175 436665 20864 2 0 17538 2025-03-20 12:43:58.367 2025-03-20 12:43:58.367 436665 21172 4 0 17539 2025-03-20 12:31:29.811 2025-03-20 12:31:29.811 436666 2233 1 0 17540 2025-03-20 13:09:42.928 2025-03-20 13:09:42.928 436666 9307 8 0 17541 2025-03-20 13:09:42.928 2025-03-20 13:09:42.928 436666 10270 75 0 17542 2025-03-20 13:09:42.593 2025-03-20 13:09:42.593 436666 12769 75 0 17543 2025-03-20 13:09:42.593 2025-03-20 13:09:42.593 436666 20647 8 0 17544 2025-03-20 12:31:32.667 2025-03-20 12:31:32.667 436667 12819 1 0 17545 2025-03-20 12:32:57.499 2025-03-20 12:32:57.499 436668 1429 1 0 17546 2025-03-20 13:27:22.677 2025-03-20 13:27:22.677 436669 621 75 0 17547 2025-03-20 13:27:21.874 2025-03-20 13:27:21.874 436669 633 75 0 17548 2025-03-20 12:35:10.727 2025-03-20 12:35:10.727 436669 635 1 0 17549 2025-03-20 12:35:02.36 2025-03-20 12:35:02.36 436669 642 9 0 17550 2025-03-20 13:07:44.305 2025-03-20 13:07:44.305 436669 675 2 0 17551 2025-03-20 12:37:14.759 2025-03-20 12:37:14.759 436669 698 810 0 17552 2025-03-20 13:07:43.407 2025-03-20 13:07:43.407 436669 730 2 0 17553 2025-03-20 12:35:11.86 2025-03-20 12:35:11.86 436669 738 1 0 17554 2025-03-20 12:35:21.918 2025-03-20 12:35:21.918 436669 759 9 0 17555 2025-03-20 13:27:22.041 2025-03-20 13:27:22.041 436669 769 75 0 17556 2025-03-20 13:07:44.305 2025-03-20 13:07:44.305 436669 798 21 0 17557 2025-03-20 12:35:03.401 2025-03-20 12:35:03.401 436669 882 9 0 17558 2025-03-20 12:35:17.85 2025-03-20 12:35:17.85 436669 1173 9 0 17559 2025-03-20 12:35:04.356 2025-03-20 12:35:04.356 436669 1272 1 0 17560 2025-03-20 13:07:44.44 2025-03-20 13:07:44.44 436669 1447 21 0 17561 2025-03-20 13:27:22.677 2025-03-20 13:27:22.677 436669 1806 8 0 17562 2025-03-20 13:27:22.041 2025-03-20 13:27:22.041 436669 1970 8 0 17563 2025-03-20 12:35:02.788 2025-03-20 12:35:02.788 436669 2232 9 0 17564 2025-03-20 12:35:04.945 2025-03-20 12:35:04.945 436669 2674 9 0 17565 2025-03-20 12:35:03.768 2025-03-20 12:35:03.768 436669 2719 1 0 17566 2025-03-20 12:35:20.994 2025-03-20 12:35:20.994 436669 2749 9 0 17567 2025-03-20 12:35:22.82 2025-03-20 12:35:22.82 436669 2844 1 0 17568 2025-03-20 12:35:14.689 2025-03-20 12:35:14.689 436669 3400 9 0 17569 2025-03-20 13:27:22.902 2025-03-20 13:27:22.902 436669 3504 8 0 17570 2025-03-20 12:35:03.588 2025-03-20 12:35:03.588 436669 3544 9 0 17571 2025-03-20 12:34:11.036 2025-03-20 12:34:11.036 436669 4378 1 0 17572 2025-03-20 12:35:15.403 2025-03-20 12:35:15.403 436669 4692 1 0 17573 2025-03-20 12:35:05.965 2025-03-20 12:35:05.965 436669 4754 1 0 17574 2025-03-20 12:35:19.739 2025-03-20 12:35:19.739 436669 4798 1 0 17575 2025-03-20 12:35:02.618 2025-03-20 12:35:02.618 436669 4831 9 0 17576 2025-03-20 12:35:02.423 2025-03-20 12:35:11.86 436669 5455 10 0 17577 2025-03-20 12:35:02.788 2025-03-20 12:35:02.788 436669 5590 1 0 17578 2025-03-20 12:35:04.171 2025-03-20 12:35:04.171 436669 5776 1 0 17579 2025-03-20 12:35:27.165 2025-03-20 12:35:27.165 436669 6229 1 0 17580 2025-03-20 12:35:02.36 2025-03-20 12:35:02.36 436669 6573 1 0 17581 2025-03-20 12:35:27.165 2025-03-20 12:35:27.165 436669 7659 9 0 17582 2025-03-20 12:37:06.539 2025-03-20 12:37:06.539 436669 8400 9 0 17583 2025-03-20 12:35:03.401 2025-03-20 12:35:03.401 436669 8570 1 0 17584 2025-03-20 13:31:55.687 2025-03-20 13:31:55.687 436669 9167 1 0 17585 2025-03-20 12:35:21.918 2025-03-20 12:35:21.918 436669 9332 1 0 17586 2025-03-20 12:35:01.554 2025-03-20 12:35:01.554 436669 9378 9 0 17587 2025-03-20 12:35:03.588 2025-03-20 12:35:03.588 436669 9421 1 0 17588 2025-03-20 12:37:02.35 2025-03-20 12:37:02.35 436669 9833 0 0 17589 2025-03-20 12:35:02.996 2025-03-20 12:35:02.996 436669 10007 1 0 17590 2025-03-20 12:35:15.172 2025-03-20 12:35:15.172 436669 10283 9 0 17591 2025-03-20 13:07:44.108 2025-03-20 13:07:44.108 436669 10698 2 0 17592 2025-03-20 12:35:14.946 2025-03-20 12:35:14.946 436669 10821 9 0 17593 2025-03-20 12:37:02.549 2025-03-20 12:37:02.549 436669 11018 8 0 17594 2025-03-20 12:35:15.172 2025-03-20 12:35:15.172 436669 11498 1 0 17595 2025-03-20 12:35:02.043 2025-03-20 12:35:02.043 436669 11992 9 0 17596 2025-03-20 12:35:03.186 2025-03-20 12:35:03.186 436669 11999 9 0 17597 2025-03-20 14:28:23.126 2025-03-20 14:28:23.126 436669 12562 5 0 17598 2025-03-20 12:35:04.57 2025-03-20 12:35:04.57 436669 12911 9 0 17599 2025-03-20 13:07:43.051 2025-03-20 13:07:43.051 436669 13544 21 0 17600 2025-03-20 13:27:22.667 2025-03-20 13:27:22.667 436669 13767 75 0 17601 2025-03-20 12:35:04.749 2025-03-20 12:35:04.749 436669 14213 9 0 17602 2025-03-20 12:35:15.403 2025-03-20 12:35:15.403 436669 14220 9 0 17603 2025-03-20 12:35:01.554 2025-03-20 12:35:01.554 436669 14385 1 0 17604 2025-03-20 12:35:02.618 2025-03-20 13:31:55.687 436669 14657 10 0 17605 2025-03-20 12:35:14.946 2025-03-20 12:35:14.946 436669 15148 1 0 17606 2025-03-20 13:27:24.706 2025-03-20 13:27:24.706 436669 15762 75 0 17607 2025-03-20 12:35:17.85 2025-03-20 12:35:17.85 436669 16176 1 0 17608 2025-03-20 12:34:11.036 2025-03-20 12:34:11.036 436669 16633 9 0 17609 2025-03-20 12:35:04.356 2025-03-20 12:35:04.356 436669 16653 9 0 17610 2025-03-20 12:35:04.171 2025-03-20 12:35:04.171 436669 16717 9 0 17611 2025-03-20 14:28:23.126 2025-03-20 14:28:23.126 436669 16839 45 0 17612 2025-03-20 12:35:11.42 2025-03-20 12:35:11.42 436669 16842 1 0 17613 2025-03-20 12:35:11.42 2025-03-20 12:37:02.874 436669 16876 18 0 17614 2025-03-20 13:07:44.44 2025-03-20 13:07:44.44 436669 16970 2 0 17615 2025-03-20 12:35:19.739 2025-03-20 12:35:19.739 436669 17106 9 0 17616 2025-03-20 13:07:42.902 2025-03-20 13:07:42.902 436669 17275 21 0 17617 2025-03-20 12:34:58.491 2025-03-20 12:34:58.491 436669 17535 9 0 17618 2025-03-20 13:07:43.623 2025-03-20 13:07:43.623 436669 17722 21 0 17619 2025-03-20 12:35:02.996 2025-03-20 12:35:02.996 436669 17976 9 0 17620 2025-03-20 12:37:02.35 2025-03-20 12:37:02.35 436669 18309 1 0 17621 2025-03-20 12:33:58.79 2025-03-20 12:33:58.79 436669 18402 100 0 17622 2025-03-20 12:37:14.759 2025-03-20 12:37:14.759 436669 18423 90 0 17623 2025-03-20 13:07:43.407 2025-03-20 13:07:43.407 436669 18727 21 0 17624 2025-03-20 13:07:43.623 2025-03-20 13:07:43.623 436669 19117 2 0 17625 2025-03-20 13:07:44.108 2025-03-20 13:07:44.108 436669 19292 21 0 17626 2025-03-20 12:35:22.82 2025-03-20 12:35:22.82 436669 19378 9 0 17627 2025-03-20 12:35:01.851 2025-03-20 12:35:01.851 436669 19735 1 0 17628 2025-03-20 12:35:01.677 2025-03-20 12:35:01.677 436669 19857 9 0 17629 2025-03-20 12:35:04.749 2025-03-20 12:35:04.749 436669 19888 1 0 17630 2025-03-20 12:35:26.966 2025-03-20 12:35:26.966 436669 20198 1 0 17631 2025-03-20 12:35:01.851 2025-03-20 12:35:01.851 436669 20490 9 0 17632 2025-03-20 12:35:10.727 2025-03-20 12:35:10.727 436669 20655 9 0 17633 2025-03-20 13:27:21.874 2025-03-20 13:27:21.874 436669 20756 8 0 17634 2025-03-20 12:34:58.491 2025-03-20 12:34:58.491 436669 20775 1 0 17635 2025-03-20 12:37:02.874 2025-03-20 12:37:02.874 436669 20892 1 0 17636 2025-03-20 12:35:01.677 2025-03-20 12:35:04.945 436669 21036 2 0 17637 2025-03-20 12:34:59.197 2025-03-20 12:35:26.966 436669 21103 18 0 17638 2025-03-20 12:37:06.539 2025-03-20 12:37:06.539 436669 21139 1 0 17639 2025-03-20 12:34:59.197 2025-03-20 12:34:59.197 436669 21275 1 0 17640 2025-03-20 12:37:02.549 2025-03-20 12:37:02.549 436669 21287 1 0 17641 2025-03-20 13:27:24.706 2025-03-20 13:27:24.706 436669 21320 8 0 17642 2025-03-20 12:35:05.965 2025-03-20 12:35:05.965 436669 21332 9 0 17643 2025-03-20 13:07:42.902 2025-03-20 13:07:42.902 436669 21391 2 0 17644 2025-03-20 12:35:03.186 2025-03-20 12:35:03.186 436669 21413 1 0 17645 2025-03-20 12:35:20.994 2025-03-20 12:35:20.994 436669 21418 1 0 17646 2025-03-20 12:35:14.689 2025-03-20 12:35:14.689 436669 21526 1 0 17647 2025-03-20 13:27:22.902 2025-03-20 13:27:22.902 436669 21631 75 0 17648 2025-03-20 13:27:22.667 2025-03-20 13:27:22.667 436669 21647 8 0 17649 2025-03-20 12:35:02.043 2025-03-20 12:35:02.043 436669 21712 1 0 17650 2025-03-20 12:35:04.57 2025-03-20 12:35:04.57 436669 21734 1 0 17651 2025-03-20 12:35:02.423 2025-03-20 12:35:02.423 436669 21766 9 0 17652 2025-03-20 13:07:43.051 2025-03-20 13:07:43.051 436669 21805 2 0 17653 2025-03-20 12:34:44.514 2025-03-20 12:34:44.514 436670 2593 1 0 17654 2025-03-20 12:47:28.58 2025-03-20 12:47:28.58 436671 910 2 0 17655 2025-03-20 12:47:28.58 2025-03-20 12:47:28.58 436671 1611 19 0 17656 2025-03-20 12:36:32.502 2025-03-20 12:36:32.502 436671 10934 1 0 17657 2025-03-20 12:36:33.068 2025-03-20 12:36:33.068 436672 20756 1 0 17658 2025-03-20 13:07:41.288 2025-03-20 13:07:41.288 436673 688 9 0 17659 2025-03-20 12:37:30.916 2025-03-20 12:37:30.916 436673 13042 1 0 17660 2025-03-20 13:07:41.288 2025-03-20 13:07:41.288 436673 13327 1 0 17661 2025-03-20 12:50:19.013 2025-03-20 12:50:19.013 436674 2204 27 0 17662 2025-03-20 12:38:50.903 2025-03-20 12:38:50.903 436674 8289 1 0 17663 2025-03-20 12:50:19.013 2025-03-20 12:50:19.013 436674 21391 243 0 17664 2025-03-20 13:11:43.093 2025-03-20 13:11:43.093 436675 667 75 0 17665 2025-03-20 12:39:29.043 2025-03-20 12:39:29.043 436675 11491 210 0 17666 2025-03-20 13:11:43.093 2025-03-20 13:11:43.093 436675 19637 8 0 17667 2025-03-20 12:40:59.898 2025-03-20 12:40:59.898 436676 17552 1 0 17668 2025-03-20 12:43:59.192 2025-03-20 12:43:59.192 436677 1092 1 0 17669 2025-03-20 12:43:59.478 2025-03-20 12:43:59.478 436678 646 1 0 17670 2025-03-20 12:48:13.929 2025-03-20 12:48:13.929 436679 16348 1 0 17671 2025-03-20 12:48:27.792 2025-03-20 12:48:27.792 436680 21824 1 0 17672 2025-03-20 12:50:00.916 2025-03-20 12:50:00.916 436681 21798 0 0 17673 2025-03-20 12:50:00.86 2025-03-20 12:50:00.86 436682 17106 1 0 17674 2025-03-20 12:54:32.488 2025-03-20 12:54:32.488 436683 641 1 0 17675 2025-03-20 12:58:03.601 2025-03-20 12:58:03.601 436683 928 9 0 17676 2025-03-20 12:54:07.658 2025-03-20 12:54:07.658 436683 1618 1 0 17677 2025-03-20 13:21:13.591 2025-03-20 13:21:13.591 436683 2703 23 0 17678 2025-03-20 12:54:32.835 2025-03-20 12:54:32.835 436683 2789 9 0 17679 2025-03-20 12:58:08.052 2025-03-20 12:58:08.052 436683 4238 450 0 17680 2025-03-20 12:54:08.044 2025-03-20 12:58:03.601 436683 4654 2 0 17681 2025-03-20 12:50:56.13 2025-03-20 12:50:56.13 436683 4798 9 0 17682 2025-03-20 12:54:32.835 2025-03-20 12:54:32.835 436683 5112 1 0 17683 2025-03-20 12:58:03.281 2025-03-20 12:58:03.281 436683 5520 9 0 17684 2025-03-20 12:58:04.405 2025-03-20 12:58:04.405 436683 7583 1 0 17685 2025-03-20 12:58:04.405 2025-03-20 12:58:04.405 436683 7682 9 0 17686 2025-03-20 12:58:03.281 2025-03-20 12:58:03.281 436683 9364 1 0 17687 2025-03-20 12:58:03.923 2025-03-20 12:58:03.923 436683 9366 1 0 17688 2025-03-20 12:58:04.095 2025-03-20 12:58:04.095 436683 12049 1 0 17689 2025-03-20 12:54:32.488 2025-03-20 12:54:32.488 436683 12965 9 0 17690 2025-03-20 12:58:04.572 2025-03-20 12:58:04.572 436683 14195 1 0 17691 2025-03-20 12:58:02.99 2025-03-20 12:58:02.99 436683 15119 1 0 17692 2025-03-20 13:21:13.591 2025-03-20 13:21:13.591 436683 15213 3 0 17693 2025-03-20 13:41:39.533 2025-03-20 13:41:39.533 436683 15367 2 0 17694 2025-03-20 12:58:04.095 2025-03-20 12:58:04.095 436683 16177 9 0 17695 2025-03-20 12:58:08.052 2025-03-20 12:58:08.052 436683 16753 50 0 17696 2025-03-20 12:54:07.658 2025-03-20 12:54:07.658 436683 16965 9 0 17697 2025-03-20 12:58:02.99 2025-03-20 12:58:02.99 436683 18114 9 0 17698 2025-03-20 12:58:03.923 2025-03-20 12:58:03.923 436683 18412 9 0 17699 2025-03-20 12:54:08.044 2025-03-20 12:54:08.044 436683 18717 9 0 17700 2025-03-20 13:41:39.533 2025-03-20 13:41:39.533 436683 19535 19 0 17701 2025-03-20 12:54:07.478 2025-03-20 12:54:07.478 436683 20099 1 0 17702 2025-03-20 12:58:04.572 2025-03-20 12:58:04.572 436683 20811 9 0 17703 2025-03-20 12:54:07.478 2025-03-20 12:54:07.478 436683 20871 9 0 17704 2025-03-20 12:50:56.13 2025-03-20 12:50:56.13 436683 21412 1 0 17705 2025-03-20 12:50:45.105 2025-03-20 12:50:45.105 436684 3686 1 0 17706 2025-03-20 12:53:41.211 2025-03-20 12:53:41.211 436685 14404 0 0 17707 2025-03-20 12:53:46.071 2025-03-20 12:53:46.071 436686 669 18 0 17708 2025-03-20 12:53:45.324 2025-03-20 12:53:45.324 436686 1221 9 0 17709 2025-03-20 12:53:46.17 2025-03-20 12:53:46.17 436686 2016 1 0 17710 2025-03-20 12:53:44.593 2025-03-20 12:53:44.593 436686 4079 9 0 17711 2025-03-20 12:53:45.191 2025-03-20 12:53:45.191 436686 6537 1 0 17712 2025-03-20 12:53:46.17 2025-03-20 12:53:46.17 436686 10690 9 0 17713 2025-03-20 12:53:45.324 2025-03-20 12:53:45.324 436686 12188 1 0 17714 2025-03-20 12:53:44.593 2025-03-20 12:53:44.593 436686 12774 1 0 17715 2025-03-20 12:53:45.191 2025-03-20 12:53:45.191 436686 13553 9 0 17716 2025-03-20 13:09:58.052 2025-03-20 13:09:58.052 436686 14376 1 0 17717 2025-03-20 12:53:44.749 2025-03-20 12:53:44.749 436686 16948 1 0 17718 2025-03-20 12:53:44.877 2025-03-20 12:53:44.877 436686 18528 9 0 17719 2025-03-20 12:53:46.071 2025-03-20 12:53:46.071 436686 20817 2 0 17720 2025-03-20 13:09:58.052 2025-03-20 13:09:58.052 436686 21061 9 0 17721 2025-03-20 12:53:44.749 2025-03-20 12:53:44.749 436686 21091 9 0 17722 2025-03-20 12:53:44.877 2025-03-20 12:53:44.877 436686 21405 1 0 17723 2025-03-20 12:56:00.802 2025-03-20 12:56:00.802 436688 5978 1 0 17724 2025-03-20 13:01:10.162 2025-03-20 13:01:10.162 436688 12097 10 0 17725 2025-03-20 13:01:10.162 2025-03-20 13:01:10.162 436688 17046 90 0 17726 2025-03-20 12:58:16.774 2025-03-20 12:58:16.774 436689 12561 1 0 17727 2025-03-20 13:00:39.858 2025-03-20 13:00:39.858 436692 3990 1 0 17728 2025-03-20 13:01:58.698 2025-03-20 13:01:58.698 436692 12368 0 0 17729 2025-03-20 13:01:21.476 2025-03-20 13:01:21.476 436693 17522 1 0 17730 2025-03-20 13:01:52.559 2025-03-20 13:01:52.559 436694 1236 1 0 17731 2025-03-20 14:47:20.327 2025-03-20 14:47:20.327 436694 16704 5 0 17732 2025-03-20 14:47:20.327 2025-03-20 14:47:20.327 436694 20663 1 0 17733 2025-03-20 14:39:09.226 2025-03-20 14:39:09.226 436695 1577 3 0 17734 2025-03-20 13:03:21.994 2025-03-20 13:03:21.994 436695 2224 1 0 17735 2025-03-20 13:03:21.994 2025-03-20 13:03:21.994 436695 4345 9 0 17736 2025-03-20 14:39:12.282 2025-03-20 14:39:12.282 436695 8284 3 0 17737 2025-03-20 13:02:20.261 2025-03-20 13:02:20.261 436695 9426 1 0 17738 2025-03-20 14:39:12.282 2025-03-20 14:39:12.282 436695 10490 30 0 17739 2025-03-20 14:39:09.226 2025-03-20 14:39:09.226 436695 13217 30 0 17740 2025-03-20 13:03:21.884 2025-03-20 13:03:21.884 436695 16212 9 0 17741 2025-03-20 13:03:21.884 2025-03-20 13:03:21.884 436695 17710 1 0 17742 2025-03-20 13:04:19.331 2025-03-20 13:04:19.331 436696 1519 1 0 17743 2025-03-20 14:36:35.898 2025-03-20 14:36:35.898 436696 4378 19 0 17744 2025-03-20 14:36:35.898 2025-03-20 14:36:35.898 436696 10013 2 0 17745 2025-03-20 13:06:12.72 2025-03-20 13:06:12.72 436697 20891 0 0 17746 2025-03-20 13:06:43.381 2025-03-20 13:06:43.381 436698 20525 1 0 17747 2025-03-20 13:33:49.033 2025-03-20 13:33:49.033 436699 1030 1 0 17748 2025-03-20 13:07:04.299 2025-03-20 13:07:04.299 436699 9476 210 0 17749 2025-03-20 14:03:54.823 2025-03-20 14:03:54.823 436699 17708 2 0 17750 2025-03-20 14:03:54.823 2025-03-20 14:03:54.823 436699 19121 19 0 17751 2025-03-20 13:33:49.033 2025-03-20 13:33:49.033 436699 20811 9 0 17752 2025-03-20 13:07:34.982 2025-03-20 13:07:34.982 436700 9476 1 0 17753 2025-03-20 13:07:36.063 2025-03-20 13:07:36.063 436701 20745 1 0 17754 2025-03-20 13:14:11.076 2025-03-20 13:14:11.076 436702 15549 1 0 17755 2025-03-20 14:48:38.675 2025-03-20 14:48:38.675 436702 19471 3 0 17756 2025-03-20 14:48:38.675 2025-03-20 14:48:38.675 436702 20198 27 0 17757 2025-03-20 13:19:05.037 2025-03-20 13:19:05.037 436705 1244 1 0 17758 2025-03-20 13:26:40.227 2025-03-20 13:26:40.227 436707 9421 1 0 17759 2025-03-20 14:16:46.302 2025-03-20 14:16:46.302 436709 10063 1 0 17760 2025-03-20 14:16:46.06 2025-03-20 14:16:46.06 436709 15336 9 0 17761 2025-03-20 14:16:46.06 2025-03-20 14:16:46.06 436709 17212 1 0 17762 2025-03-20 14:16:46.302 2025-03-20 14:16:46.302 436709 20998 9 0 17763 2025-03-20 14:31:24.312 2025-03-20 14:31:24.312 436710 628 5 0 17764 2025-03-20 14:31:23.804 2025-03-20 14:31:23.804 436710 19581 45 0 17765 2025-03-20 14:31:23.804 2025-03-20 14:31:23.804 436710 21116 5 0 17766 2025-03-20 13:46:38.9 2025-03-20 13:46:38.9 436712 21406 1 0 17767 2025-03-20 13:59:32.814 2025-03-20 13:59:32.814 436713 626 0 0 17768 2025-03-20 13:58:39.495 2025-03-20 13:58:39.495 436715 16270 1 0 17769 2025-03-20 14:03:53.313 2025-03-20 14:03:53.313 436716 11789 1 0 17770 2025-03-20 14:24:52.761 2025-03-20 14:24:52.761 436720 699 1 0 17771 2025-03-20 14:24:54.927 2025-03-20 14:24:54.927 436720 763 0 0 17772 2025-03-20 14:24:54.927 2025-03-20 14:24:54.927 436720 1567 1 0 17773 2025-03-20 14:24:53.289 2025-03-20 14:24:53.289 436720 6382 1 0 17774 2025-03-20 14:24:52.761 2025-03-20 14:24:52.761 436720 9496 0 0 17775 2025-03-20 14:30:42.312 2025-03-20 14:30:42.312 436720 10342 2 0 17776 2025-03-20 14:24:53.89 2025-03-20 14:24:53.89 436720 11328 1 0 17777 2025-03-20 14:24:57.695 2025-03-20 14:24:57.695 436720 13759 0 0 17778 2025-03-20 14:24:53.89 2025-03-20 14:24:53.89 436720 19484 0 0 17779 2025-03-20 14:24:57.695 2025-03-20 14:24:57.695 436720 19502 1 0 17780 2025-03-20 14:24:56.326 2025-03-20 14:24:56.326 436720 20751 0 0 17781 2025-03-20 14:30:42.312 2025-03-20 14:30:42.312 436720 20906 21 0 17782 2025-03-20 14:24:56.326 2025-03-20 14:24:56.326 436720 21356 1 0 17783 2025-03-20 14:24:53.289 2025-03-20 14:24:53.289 436720 21647 0 0 17784 2025-03-20 14:24:43.086 2025-03-20 14:24:43.086 436724 19777 1 0 17785 2025-03-20 14:38:03.823 2025-03-20 14:38:03.823 436729 2596 8 0 17786 2025-03-20 14:37:59.456 2025-03-20 14:37:59.456 436729 9290 75 0 17787 2025-03-20 14:38:03.165 2025-03-20 14:38:03.165 436729 13132 8 0 17788 2025-03-20 14:38:04.437 2025-03-20 14:38:04.437 436729 15226 75 0 17789 2025-03-20 14:38:03.823 2025-03-20 14:38:03.823 436729 16097 75 0 17790 2025-03-20 14:37:59.456 2025-03-20 14:38:03.165 436729 17570 83 0 17791 2025-03-20 14:38:04.437 2025-03-20 14:38:04.437 436729 19531 8 0 17792 2025-03-20 14:34:40.339 2025-03-20 14:34:40.339 436732 11561 1 0 17793 2025-03-20 14:44:32.313 2025-03-20 14:44:32.313 436736 2780 0 0 17794 2025-03-20 14:44:32.501 2025-03-20 14:44:32.501 436736 11454 1 0 17795 2025-03-20 14:44:32.501 2025-03-20 14:44:32.501 436736 15890 8 0 17796 2025-03-20 14:44:32.313 2025-03-20 14:44:32.313 436736 19527 1 0 17797 2025-03-26 05:23:03.131 2025-03-26 05:23:03.131 437845 11648 1 0 17798 2025-03-26 05:23:03.131 2025-03-26 05:23:03.131 437845 12220 9 0 17799 2025-03-26 05:20:51.594 2025-03-26 05:20:51.594 438108 7818 710 0 17800 2025-03-26 05:20:51.594 2025-03-26 05:20:51.594 438108 17082 6390 0 17801 2025-03-26 05:47:25.86 2025-03-26 05:47:25.86 438678 2437 3 0 17802 2025-03-26 05:47:25.589 2025-03-26 05:47:25.589 438678 2749 3 0 17803 2025-03-26 05:47:25.402 2025-03-26 05:47:25.402 438678 4115 24 0 17804 2025-03-26 05:47:26.669 2025-03-26 05:47:26.669 438678 8954 24 0 17805 2025-03-26 05:47:25.86 2025-03-26 05:47:25.86 438678 16154 24 0 17806 2025-03-26 05:47:25.402 2025-03-26 05:47:25.402 438678 19375 3 0 17807 2025-03-26 05:47:26.669 2025-03-26 05:47:26.669 438678 21202 3 0 17808 2025-03-26 05:47:25.589 2025-03-26 05:47:25.589 438678 21228 24 0 17809 2025-03-26 06:23:56.69 2025-03-26 06:23:56.69 439834 2203 19 0 17810 2025-03-26 06:23:56.69 2025-03-26 06:23:56.69 439834 17517 2 0 17811 2025-03-26 04:31:22.895 2025-03-26 04:31:22.895 440692 642 9 0 17812 2025-03-26 04:31:21.864 2025-03-26 04:31:21.864 440692 687 1 0 17813 2025-03-26 04:31:20.403 2025-03-26 04:31:20.403 440692 2016 1 0 17814 2025-03-26 04:31:22.537 2025-03-26 04:31:22.537 440692 2596 1 0 17815 2025-03-26 04:31:22.169 2025-03-26 04:31:22.169 440692 3683 1 0 17816 2025-03-26 04:31:21.317 2025-03-26 04:31:21.317 440692 5173 9 0 17817 2025-03-26 04:31:21.317 2025-03-26 04:31:21.317 440692 6268 1 0 17818 2025-03-26 04:31:22.361 2025-03-26 04:31:22.361 440692 6616 1 0 17819 2025-03-26 04:31:22.361 2025-03-26 04:31:22.361 440692 9200 9 0 17820 2025-03-26 04:31:22.717 2025-03-26 04:31:22.717 440692 14220 9 0 17821 2025-03-26 04:31:22.537 2025-03-26 04:31:22.537 440692 15180 9 0 17822 2025-03-26 04:31:21.864 2025-03-26 04:31:21.864 440692 16212 9 0 17823 2025-03-26 04:31:22.895 2025-03-26 04:31:22.895 440692 16357 1 0 17824 2025-03-26 04:31:19.941 2025-03-26 04:31:19.941 440692 18231 1 0 17825 2025-03-26 04:31:20.403 2025-03-26 04:31:20.403 440692 18525 9 0 17826 2025-03-26 04:31:19.941 2025-03-26 04:31:19.941 440692 19446 9 0 17827 2025-03-26 04:31:22.717 2025-03-26 04:31:22.717 440692 20864 1 0 17828 2025-03-26 04:31:22.169 2025-03-26 04:31:22.169 440692 20993 9 0 17829 2025-03-29 20:59:21.754 2025-03-29 20:59:21.754 441259 9334 3 0 17830 2025-03-29 20:59:21.754 2025-03-29 20:59:21.754 441259 21212 27 0 17831 2025-03-26 06:30:25.441 2025-03-26 06:30:25.441 441629 13216 2 0 17832 2025-03-26 06:30:25.441 2025-03-26 06:30:25.441 441629 16542 19 0 17833 2025-03-26 05:48:12.831 2025-03-26 05:48:12.831 441807 5527 3 0 17834 2025-03-26 05:48:12.831 2025-03-26 05:48:12.831 441807 21060 0 0 17835 2025-03-26 05:02:35.194 2025-03-26 05:02:35.194 442023 631 28 0 17836 2025-03-26 05:02:34.776 2025-03-26 05:02:34.776 442023 11760 3 0 17837 2025-03-26 05:02:34.776 2025-03-26 05:02:34.776 442023 19863 28 0 17838 2025-03-26 05:02:35.194 2025-03-26 05:02:35.194 442023 20306 251 0 17839 2025-03-26 04:59:43.825 2025-03-26 04:59:43.825 442084 630 1 0 17840 2025-03-26 04:59:43.825 2025-03-26 04:59:43.825 442084 20433 5 0 17841 2025-03-26 06:30:23.754 2025-03-26 06:30:23.754 442245 7818 19 0 17842 2025-03-26 06:30:23.754 2025-03-26 06:30:23.754 442245 18557 2 0 17843 2025-03-26 04:59:55.239 2025-03-26 04:59:55.239 442298 4259 1 0 17844 2025-03-26 04:39:24.491 2025-03-26 04:39:24.491 442298 8376 81 0 17845 2025-03-26 04:59:55.239 2025-03-26 04:59:55.239 442298 20182 5 0 17846 2025-03-26 04:39:24.491 2025-03-26 04:39:24.491 442298 20198 9 0 17847 2025-03-28 11:46:37.797 2025-03-28 11:46:37.797 442313 825 10 0 17848 2025-03-26 04:28:48.044 2025-03-26 04:28:48.044 442313 909 9 0 17849 2025-03-26 02:46:20.296 2025-03-26 02:46:20.296 442313 2652 45 0 17850 2025-03-26 04:28:49.264 2025-03-26 04:28:49.264 442313 5728 1 0 17851 2025-03-28 11:46:37.797 2025-03-28 11:46:37.797 442313 6335 90 0 17852 2025-03-26 04:39:54.066 2025-03-26 04:39:54.066 442313 6537 0 0 17853 2025-03-26 04:28:48.044 2025-03-26 04:28:48.044 442313 8570 1 0 17854 2025-03-26 02:46:20.296 2025-03-26 02:46:20.296 442313 10342 5 0 17855 2025-03-26 04:28:49.264 2025-03-26 04:28:49.264 442313 14959 9 0 17856 2025-03-26 04:28:48.797 2025-03-26 04:28:48.797 442313 15239 1 0 17857 2025-03-26 04:28:48.797 2025-03-26 04:28:48.797 442313 18101 9 0 17858 2025-03-26 04:39:54.066 2025-03-26 04:39:54.066 442313 21523 1 0 17859 2025-03-26 03:48:56.971 2025-03-26 03:48:56.971 442514 8729 90 0 17860 2025-03-26 03:48:56.971 2025-03-26 03:48:56.971 442514 18557 10 0 17861 2025-03-26 06:30:23.02 2025-03-26 06:30:23.02 442527 9242 19 0 17862 2025-03-26 06:30:23.02 2025-03-26 06:30:23.02 442527 19394 2 0 17863 2025-03-26 04:33:04.859 2025-03-26 04:33:04.859 442551 4238 9 0 17864 2025-03-26 04:59:58.966 2025-03-26 04:59:58.966 442551 13517 9 0 17865 2025-03-26 04:59:58.966 2025-03-26 04:59:58.966 442551 13921 1 0 17866 2025-03-26 04:33:04.566 2025-03-26 04:33:04.566 442551 14169 9 0 17867 2025-03-26 04:33:04.859 2025-03-26 04:33:04.859 442551 20854 1 0 17868 2025-03-26 04:33:04.566 2025-03-26 04:33:04.566 442551 21148 1 0 17869 2025-03-26 02:54:26.148 2025-03-26 02:54:26.148 442556 673 5 0 17870 2025-03-26 02:54:26.148 2025-03-26 02:54:26.148 442556 21416 1 0 17871 2025-03-26 03:39:18.691 2025-03-26 03:39:18.691 442608 1424 19 0 17872 2025-03-26 03:39:17.846 2025-03-26 03:39:17.846 442608 2577 2 0 17873 2025-03-26 03:39:18.691 2025-03-26 03:39:18.691 442608 5112 2 0 17874 2025-03-26 03:39:17.846 2025-03-26 03:39:17.846 442608 7674 19 0 17875 2025-03-26 03:39:22.333 2025-03-26 03:39:22.333 442608 8684 900 0 17876 2025-03-26 03:39:22.333 2025-03-26 03:39:22.333 442608 12951 100 0 17877 2025-03-26 03:39:17.719 2025-03-26 03:39:17.719 442608 15213 2 0 17878 2025-03-26 03:39:17.719 2025-03-26 03:39:17.719 442608 18274 19 0 17879 2025-03-26 02:55:41.404 2025-03-26 02:55:41.404 442627 713 1 0 17880 2025-03-26 02:55:41.404 2025-03-26 02:55:41.404 442627 14404 0 0 17881 2025-03-26 06:51:35.503 2025-03-26 06:51:35.503 442710 1237 9 0 17882 2025-03-26 02:57:01.733 2025-03-26 02:57:01.733 442710 10056 0 0 17883 2025-03-26 06:51:35.503 2025-03-26 06:51:35.503 442710 17455 1 0 17884 2025-03-26 02:57:01.733 2025-03-26 02:57:01.733 442710 19346 1 0 17885 2025-03-26 05:50:51.446 2025-03-26 05:50:51.446 442718 1626 0 0 17886 2025-03-26 05:50:51.446 2025-03-26 05:50:51.446 442718 19094 3 0 17887 2025-03-26 02:27:32.964 2025-03-26 02:27:32.964 442729 16270 1 0 17888 2025-03-26 04:59:48.267 2025-03-26 04:59:48.267 442751 1468 5 0 17889 2025-03-26 04:59:48.267 2025-03-26 04:59:48.267 442751 18637 1 0 17890 2025-03-26 02:55:34.034 2025-03-26 02:55:34.034 442820 3544 1 0 17891 2025-03-26 02:55:34.034 2025-03-26 02:55:34.034 442820 3656 0 0 17892 2025-03-26 04:09:45.692 2025-03-26 04:09:45.692 442859 20502 0 7 17893 2025-03-26 02:47:26.863 2025-03-26 02:47:26.863 442861 1564 9 0 17894 2025-03-26 02:47:26.863 2025-03-26 02:47:26.863 442861 15148 1 0 17895 2025-03-26 03:02:41.192 2025-03-26 03:02:41.192 442888 2620 1 0 17896 2025-03-26 03:02:41.192 2025-03-26 03:02:41.192 442888 5809 9 0 17897 2025-03-26 02:55:46.05 2025-03-26 02:55:46.05 442894 654 1 0 17898 2025-03-26 02:55:46.05 2025-03-26 02:55:46.05 442894 5752 0 0 17899 2025-03-26 04:45:30.037 2025-03-26 04:45:30.037 442904 628 9 0 17900 2025-03-26 04:45:46.689 2025-03-26 04:45:46.689 442904 633 1 0 17901 2025-03-26 04:45:47.281 2025-03-26 04:45:47.281 442904 642 9 0 17902 2025-03-26 04:45:44.266 2025-03-26 04:45:44.266 442904 686 9 0 17903 2025-03-26 05:46:13.206 2025-03-26 05:46:13.206 442904 687 3 0 17904 2025-03-26 05:46:14.286 2025-03-26 05:46:14.286 442904 696 0 0 17905 2025-03-26 04:45:48.915 2025-03-26 04:45:48.915 442904 712 2 0 17906 2025-03-26 04:45:45.121 2025-03-26 04:45:45.121 442904 730 1 0 17907 2025-03-26 05:46:12.495 2025-03-26 05:46:12.495 442904 738 3 0 17908 2025-03-26 04:45:40.632 2025-03-26 04:45:40.632 442904 760 9 0 17909 2025-03-26 04:45:44.078 2025-03-26 04:45:44.078 442904 762 9 0 17910 2025-03-26 05:46:14.286 2025-03-26 05:46:14.286 442904 826 3 0 17911 2025-03-26 04:45:47.889 2025-03-26 04:45:47.889 442904 844 9 0 17912 2025-03-26 04:45:33.358 2025-03-26 04:45:33.358 442904 859 9 0 17913 2025-03-26 04:45:46.404 2025-03-26 04:45:46.404 442904 897 1 0 17914 2025-03-26 04:45:29.824 2025-03-26 04:45:29.824 442904 977 9 0 17915 2025-03-26 04:45:32.423 2025-03-26 04:45:32.423 442904 1003 9 0 17916 2025-03-26 04:45:42.477 2025-03-26 04:45:42.477 442904 1044 9 0 17917 2025-03-26 04:45:47.725 2025-03-26 04:45:47.725 442904 1135 1 0 17918 2025-03-26 04:45:40.229 2025-03-26 04:45:40.229 442904 1162 9 0 17919 2025-03-26 04:45:34.181 2025-03-26 04:45:34.181 442904 1175 2 0 17920 2025-03-26 04:45:40.814 2025-03-26 04:45:40.814 442904 1221 1 0 17921 2025-03-26 04:45:30.198 2025-03-26 04:45:30.198 442904 1428 9 0 17922 2025-03-26 04:45:32.178 2025-03-26 04:45:32.178 442904 1483 1 0 17923 2025-03-26 04:45:31.869 2025-03-26 04:45:31.869 442904 1495 9 0 17924 2025-03-26 04:45:29.635 2025-03-26 04:45:29.635 442904 1632 1 0 17925 2025-03-26 04:45:43.375 2025-03-26 04:45:43.375 442904 1802 9 0 17926 2025-03-26 04:45:35.718 2025-03-26 04:45:35.718 442904 1817 9 0 17927 2025-03-26 04:45:32.964 2025-03-26 04:45:32.964 442904 1960 1 0 17928 2025-03-26 04:45:50.975 2025-03-26 04:45:50.975 442904 2016 9 0 17929 2025-03-26 04:45:42.477 2025-03-26 04:45:42.477 442904 2156 1 0 17930 2025-03-26 04:45:44.266 2025-03-26 04:45:44.266 442904 2195 1 0 17931 2025-03-26 04:45:46.413 2025-03-26 04:45:46.413 442904 2196 18 0 17932 2025-03-26 04:45:48.112 2025-03-26 04:45:48.112 442904 2322 1 0 17933 2025-03-26 04:45:48.489 2025-03-26 04:45:48.489 442904 2513 9 0 17934 2025-03-26 04:45:34.181 2025-03-26 04:45:34.181 442904 2577 18 0 17935 2025-03-26 06:43:58.029 2025-03-26 06:43:58.029 442904 2640 1 0 17936 2025-03-26 05:46:14.108 2025-03-26 05:46:14.108 442904 2681 0 0 17937 2025-03-26 04:45:31.214 2025-03-26 04:45:31.214 442904 2710 1 0 17938 2025-03-26 06:45:11.923 2025-03-26 06:45:11.923 442904 2722 3 0 17939 2025-03-26 04:45:41.029 2025-03-26 04:45:41.029 442904 2734 9 0 17940 2025-03-26 04:45:40.632 2025-03-26 04:45:40.632 442904 2741 1 0 17941 2025-03-26 04:45:45.296 2025-03-26 04:45:45.296 442904 2748 1 0 17942 2025-03-26 04:45:46.409 2025-03-26 04:45:46.409 442904 2749 2 0 17943 2025-03-26 04:45:29.478 2025-03-26 04:45:29.478 442904 3377 9 0 17944 2025-03-26 04:45:41.029 2025-03-26 04:45:41.029 442904 3392 1 0 17945 2025-03-26 04:45:44.078 2025-03-26 04:45:44.078 442904 3506 1 0 17946 2025-03-26 03:07:19.264 2025-03-26 03:07:19.264 442904 4062 1 0 17947 2025-03-26 04:45:29.824 2025-03-26 04:45:29.824 442904 4083 1 0 17948 2025-03-26 04:45:31.605 2025-03-26 04:45:31.605 442904 4415 2 0 17949 2025-03-26 04:45:39.411 2025-03-26 04:45:39.411 442904 4602 1 0 17950 2025-03-26 04:45:48.112 2025-03-26 04:45:48.112 442904 4819 9 0 17951 2025-03-26 04:45:31.214 2025-03-26 04:45:31.214 442904 5017 9 0 17952 2025-03-26 04:45:42.8 2025-03-26 04:45:42.8 442904 5129 9 0 17953 2025-03-26 04:45:33.189 2025-03-26 04:45:33.189 442904 5425 1 0 17954 2025-03-26 05:46:13.406 2025-03-26 05:46:13.406 442904 5487 0 0 17955 2025-03-26 04:45:46.404 2025-03-26 04:45:46.404 442904 5825 9 0 17956 2025-03-26 05:46:13.622 2025-03-26 05:46:13.622 442904 6361 0 0 17957 2025-03-26 04:45:30.889 2025-03-26 04:45:30.889 442904 6463 9 0 17958 2025-03-26 04:45:40.407 2025-03-26 04:45:40.407 442904 6777 1 0 17959 2025-03-26 04:45:46.547 2025-03-26 04:45:46.547 442904 7668 1 0 17960 2025-03-26 04:45:39.411 2025-03-26 04:45:39.411 442904 8713 9 0 17961 2025-03-26 04:45:46.87 2025-03-26 04:45:46.87 442904 8989 1 0 17962 2025-03-26 04:45:31.043 2025-03-26 04:45:31.043 442904 9109 9 0 17963 2025-03-26 04:45:30.819 2025-03-26 04:45:30.819 442904 9171 9 0 17964 2025-03-26 05:46:12.076 2025-03-26 05:46:12.076 442904 9262 3 0 17965 2025-03-26 04:45:30.863 2025-03-26 04:45:30.863 442904 9295 9 0 17966 2025-03-26 04:45:31.869 2025-03-26 04:45:31.869 442904 9355 1 0 17967 2025-03-26 04:45:35.976 2025-03-26 04:45:35.976 442904 9529 1 0 17968 2025-03-26 04:45:36.326 2025-03-26 04:45:36.326 442904 9611 1 0 17969 2025-03-26 04:45:47.528 2025-03-26 04:45:47.528 442904 9820 1 0 17970 2025-03-26 04:45:45.296 2025-03-26 04:45:45.296 442904 9845 9 0 17971 2025-03-26 04:45:44.497 2025-03-26 04:45:44.497 442904 9982 9 0 17972 2025-03-26 04:45:32.613 2025-03-26 04:45:32.613 442904 10311 9 0 17973 2025-03-26 04:45:32.423 2025-03-26 04:45:32.423 442904 10536 1 0 17974 2025-03-26 05:46:14.108 2025-03-26 05:46:14.108 442904 10549 3 0 17975 2025-03-26 04:45:47.528 2025-03-26 04:45:47.528 442904 10944 9 0 17976 2025-03-26 04:45:30.551 2025-03-26 04:45:30.551 442904 11038 9 0 17977 2025-03-26 04:45:29.635 2025-03-26 04:45:29.635 442904 11144 9 0 17978 2025-03-26 04:45:46.409 2025-03-26 04:45:46.409 442904 11240 18 0 17979 2025-03-26 06:45:11.923 2025-03-26 06:45:11.923 442904 11477 30 0 17980 2025-03-26 02:55:15.006 2025-03-26 02:55:15.006 442904 11491 1 0 17981 2025-03-26 04:45:40.814 2025-03-26 04:45:40.814 442904 11621 9 0 17982 2025-03-26 04:45:48.915 2025-03-26 04:45:48.915 442904 11866 18 0 17983 2025-03-26 04:45:46.413 2025-03-26 04:45:46.413 442904 12278 2 0 17984 2025-03-26 04:45:43.597 2025-03-26 04:45:43.597 442904 12935 1 0 17985 2025-03-26 04:45:30.889 2025-03-26 04:45:30.889 442904 13055 1 0 17986 2025-03-26 05:46:13.622 2025-03-26 05:46:13.622 442904 13100 3 0 17987 2025-03-26 04:45:32.613 2025-03-26 04:45:33.358 442904 13132 2 0 17988 2025-03-26 04:45:44.497 2025-03-26 04:45:44.497 442904 13162 1 0 17989 2025-03-26 04:45:47.118 2025-03-26 04:45:47.118 442904 13174 9 0 17990 2025-03-26 05:46:12.756 2025-03-26 05:46:12.756 442904 13249 0 0 17991 2025-03-26 04:45:43.814 2025-03-26 04:45:43.814 442904 13467 1 0 17992 2025-03-26 04:45:50.975 2025-03-26 04:45:50.975 442904 13553 1 0 17993 2025-03-26 04:45:32.178 2025-03-26 04:45:32.178 442904 13566 9 0 17994 2025-03-26 04:45:48.275 2025-03-26 04:45:48.275 442904 14357 1 0 17995 2025-03-26 05:46:11.822 2025-03-26 05:46:11.822 442904 14688 0 0 17996 2025-03-26 04:45:31.605 2025-03-26 04:45:31.605 442904 14905 18 0 17997 2025-03-26 05:46:13.851 2025-03-26 05:46:13.851 442904 15045 3 0 17998 2025-03-26 04:45:39.994 2025-03-26 04:45:39.994 442904 15060 9 0 17999 2025-03-26 04:45:42.603 2025-03-26 04:45:42.603 442904 15100 9 0 18000 2025-03-26 04:45:44.916 2025-03-26 04:45:44.916 442904 15160 1 0 18001 2025-03-26 04:45:36.134 2025-03-26 04:45:36.134 442904 15337 9 0 18002 2025-03-26 04:45:42.8 2025-03-26 04:45:42.8 442904 15408 1 0 18003 2025-03-26 05:46:12.495 2025-03-26 05:46:12.495 442904 15409 0 0 18004 2025-03-26 05:46:12.293 2025-03-26 05:46:12.293 442904 15549 0 0 18005 2025-03-26 04:45:40.229 2025-03-26 04:45:40.229 442904 15556 1 0 18006 2025-03-26 04:45:44.916 2025-03-26 04:45:44.916 442904 15588 9 0 18007 2025-03-26 04:45:42.603 2025-03-26 04:45:42.603 442904 15890 1 0 18008 2025-03-26 04:45:35.718 2025-03-26 04:45:35.718 442904 15978 1 0 18009 2025-03-26 04:45:34.123 2025-03-26 04:45:34.123 442904 16097 1 0 18010 2025-03-26 04:45:42.403 2025-03-26 04:45:42.403 442904 16176 4 0 18011 2025-03-26 04:45:46.87 2025-03-26 04:45:46.87 442904 16267 9 0 18012 2025-03-26 04:45:41.228 2025-03-26 04:45:41.228 442904 16276 1 0 18013 2025-03-26 04:45:50.51 2025-03-26 04:45:50.51 442904 16456 1 0 18014 2025-03-26 05:46:13.206 2025-03-26 05:46:13.206 442904 16684 0 0 18015 2025-03-26 04:45:46.547 2025-03-26 04:45:46.547 442904 16753 9 0 18016 2025-03-26 04:45:39.753 2025-03-26 04:45:39.753 442904 17001 1 0 18017 2025-03-26 04:45:43.441 2025-03-26 04:45:43.441 442904 17124 9 0 18018 2025-03-26 04:45:39.753 2025-03-26 04:45:39.753 442904 17455 9 0 18019 2025-03-26 04:45:43.441 2025-03-26 04:45:43.441 442904 17817 1 0 18020 2025-03-26 05:46:11.822 2025-03-26 05:46:11.822 442904 17891 3 0 18021 2025-03-26 04:45:47.725 2025-03-26 04:45:47.725 442904 17953 9 0 18022 2025-03-26 04:45:30.819 2025-03-26 04:45:30.819 442904 18068 1 0 18023 2025-03-26 06:18:13.341 2025-03-26 06:18:13.341 442904 18219 1 0 18024 2025-03-26 06:43:58.029 2025-03-26 06:43:58.029 442904 18309 0 0 18025 2025-03-26 04:45:31.043 2025-03-26 04:45:31.043 442904 18368 1 0 18026 2025-03-26 04:45:50.44 2025-03-26 04:45:50.44 442904 18473 9 0 18027 2025-03-26 04:45:31.999 2025-03-26 04:45:31.999 442904 18529 1 0 18028 2025-03-26 04:45:46.689 2025-03-26 04:45:46.689 442904 18637 9 0 18029 2025-03-26 04:45:47.889 2025-03-26 04:45:47.889 442904 18734 1 0 18030 2025-03-26 04:45:32.964 2025-03-26 04:45:32.964 442904 18735 9 0 18031 2025-03-26 04:45:42.43 2025-03-26 04:45:42.43 442904 18956 9 0 18032 2025-03-26 04:45:34.123 2025-03-26 04:45:34.123 442904 19126 9 0 18033 2025-03-26 05:46:12.076 2025-03-26 05:46:12.076 442904 19292 0 0 18034 2025-03-26 06:18:13.341 2025-03-26 06:18:13.341 442904 19346 9 0 18035 2025-03-26 04:45:35.976 2025-03-26 04:45:35.976 442904 19471 9 0 18036 2025-03-26 04:45:44.76 2025-03-26 04:45:44.76 442904 19980 1 0 18037 2025-03-26 04:45:32.751 2025-03-26 04:45:32.751 442904 19992 9 0 18038 2025-03-26 04:45:30.863 2025-03-26 04:45:30.863 442904 20058 1 0 18039 2025-03-26 04:45:39.57 2025-03-26 04:45:39.57 442904 20062 9 0 18040 2025-03-26 05:46:12.756 2025-03-26 05:46:12.756 442904 20117 3 0 18041 2025-03-26 04:45:30.198 2025-03-26 04:45:30.198 442904 20198 1 0 18042 2025-03-26 04:45:29.478 2025-03-26 04:45:29.478 442904 20310 1 0 18043 2025-03-26 04:45:43.814 2025-03-26 04:45:43.814 442904 20353 9 0 18044 2025-03-26 04:45:50.44 2025-03-26 04:45:50.44 442904 20409 1 0 18045 2025-03-26 04:45:48.489 2025-03-26 04:45:48.489 442904 20433 1 0 18046 2025-03-26 04:45:47.281 2025-03-26 04:45:47.281 442904 20479 1 0 18047 2025-03-26 02:55:15.006 2025-03-26 02:55:15.006 442904 20554 0 0 18048 2025-03-26 04:45:40.407 2025-03-26 04:45:40.407 442904 20562 9 0 18049 2025-03-26 04:58:59.201 2025-03-26 04:58:59.201 442904 20563 1 0 18050 2025-03-26 04:45:42.403 2025-03-26 04:45:42.403 442904 20778 36 0 18051 2025-03-26 04:45:32.751 2025-03-26 04:45:32.751 442904 20969 1 0 18052 2025-03-26 04:58:59.201 2025-03-26 04:58:59.201 442904 20972 5 0 18053 2025-03-26 04:45:43.049 2025-03-26 04:45:43.049 442904 21020 9 0 18054 2025-03-26 04:45:30.551 2025-03-26 04:45:30.551 442904 21063 1 0 18055 2025-03-26 04:45:43.597 2025-03-26 04:45:43.597 442904 21079 9 0 18056 2025-03-26 04:45:33.189 2025-03-26 04:45:33.189 442904 21119 9 0 18057 2025-03-26 04:45:42.43 2025-03-26 04:45:42.43 442904 21145 1 0 18058 2025-03-26 04:45:39.994 2025-03-26 04:45:39.994 442904 21202 1 0 18059 2025-03-26 04:45:41.228 2025-03-26 04:45:41.228 442904 21216 9 0 18060 2025-03-26 05:46:12.961 2025-03-26 05:46:12.961 442904 21248 3 0 18061 2025-03-26 05:46:13.406 2025-03-26 05:46:13.406 442904 21254 3 0 18062 2025-03-26 04:45:47.118 2025-03-26 04:45:47.118 442904 21263 1 0 18063 2025-03-26 05:46:13.851 2025-03-26 05:46:13.851 442904 21320 0 0 18064 2025-03-26 05:46:12.293 2025-03-26 05:46:12.293 442904 21391 3 0 18065 2025-03-26 04:45:48.275 2025-03-26 04:45:48.275 442904 21398 9 0 18066 2025-03-26 04:45:30.037 2025-03-26 04:45:30.037 442904 21494 1 0 18067 2025-03-26 04:45:31.999 2025-03-26 04:45:31.999 442904 21498 9 0 18068 2025-03-26 04:45:36.326 2025-03-26 04:45:36.326 442904 21520 9 0 18069 2025-03-26 04:45:36.134 2025-03-26 04:45:36.134 442904 21521 1 0 18070 2025-03-26 04:45:39.57 2025-03-26 04:45:39.57 442904 21522 1 0 18071 2025-03-26 04:45:45.121 2025-03-26 04:45:45.121 442904 21556 9 0 18072 2025-03-26 04:45:44.76 2025-03-26 04:45:44.76 442904 21577 9 0 18073 2025-03-26 04:45:43.375 2025-03-26 05:46:12.961 442904 21672 1 0 18074 2025-03-26 04:45:50.51 2025-03-26 04:45:50.51 442904 21701 9 0 18075 2025-03-26 03:07:19.264 2025-03-26 03:07:19.264 442904 21712 5 0 18076 2025-03-26 04:45:43.049 2025-03-26 04:45:43.049 442904 21768 1 0 18077 2025-03-26 04:59:13.091 2025-03-26 04:59:13.091 442931 621 1 0 18078 2025-03-26 04:01:14.798 2025-03-26 04:01:14.798 442931 1286 27 0 18079 2025-03-26 04:01:14.798 2025-03-26 04:01:14.798 442931 19189 3 0 18080 2025-03-26 04:59:13.091 2025-03-26 04:59:13.091 442931 21026 5 0 18081 2025-03-26 06:30:19.616 2025-03-26 06:30:19.616 442978 654 19 0 18082 2025-03-26 06:30:19.616 2025-03-26 06:30:19.616 442978 7185 2 0 18083 2025-03-26 04:10:02.911 2025-03-26 04:10:02.911 442985 2111 6 0 18084 2025-03-26 04:10:02.911 2025-03-26 04:10:02.911 442985 2774 1 0 18085 2025-03-26 04:27:09.499 2025-03-26 04:27:09.499 442997 2039 1 0 18086 2025-03-26 04:27:09.499 2025-03-26 04:27:09.499 442997 11866 0 0 18087 2025-03-26 04:00:06.501 2025-03-26 04:00:06.501 443011 11498 90 0 18088 2025-03-26 04:00:06.501 2025-03-26 04:00:06.501 443011 20291 10 0 18089 2025-03-26 03:10:12.832 2025-03-26 03:10:12.832 443014 826 19 0 18090 2025-03-26 03:10:12.832 2025-03-26 03:10:12.832 443014 1726 2 0 18091 2025-03-26 02:53:25.904 2025-03-26 02:53:25.904 443031 10981 23 0 18092 2025-03-26 02:53:25.904 2025-03-26 02:53:25.904 443031 20157 3 0 18093 2025-03-26 04:16:38.542 2025-03-26 04:16:38.542 443038 732 90 0 18094 2025-03-26 04:52:26.911 2025-03-26 04:52:26.911 443038 9843 50 0 18095 2025-03-26 04:53:38.073 2025-03-26 04:53:38.073 443038 12291 50 0 18096 2025-03-26 04:52:26.911 2025-03-26 04:52:26.911 443038 13599 450 0 18097 2025-03-26 04:53:38.073 2025-03-26 04:53:38.073 443038 15147 450 0 18098 2025-03-26 04:16:38.542 2025-03-26 04:16:38.542 443038 21620 10 0 18099 2025-03-26 06:00:14.281 2025-03-26 06:00:14.281 443048 14791 4 0 18100 2025-03-26 06:00:14.432 2025-03-26 06:00:14.432 443048 17673 0 0 18101 2025-03-26 06:00:14.432 2025-03-26 06:00:14.432 443048 18017 4 0 18102 2025-03-26 06:00:14.281 2025-03-26 06:00:14.281 443048 19673 0 0 18103 2025-03-26 04:23:25.36 2025-03-26 04:23:25.36 443058 654 0 0 18104 2025-03-26 04:23:25.36 2025-03-26 04:23:25.36 443058 844 1 0 18105 2025-03-26 04:25:10.967 2025-03-26 04:25:10.967 443059 1817 19 0 18106 2025-03-26 04:25:10.967 2025-03-26 04:25:10.967 443059 15732 2 0 18107 2025-03-26 04:23:50.241 2025-03-26 04:23:50.241 443069 985 0 0 18108 2025-03-26 04:23:50.241 2025-03-26 04:23:50.241 443069 20811 1 0 18109 2025-03-26 04:25:20.891 2025-03-26 04:25:20.891 443083 9833 0 0 18110 2025-03-26 04:25:20.891 2025-03-26 04:25:20.891 443083 16513 1 0 18111 2025-03-26 04:24:47.916 2025-03-26 04:24:47.916 443091 8289 0 0 18112 2025-03-26 04:24:47.916 2025-03-26 04:24:47.916 443091 20781 1 0 18113 2025-03-26 04:18:36.385 2025-03-26 04:18:36.385 443093 1082 7 0 18114 2025-03-26 04:18:36.385 2025-03-26 04:18:36.385 443093 1705 62 0 18115 2025-03-26 04:51:21.787 2025-03-26 04:51:21.787 443096 17533 15 0 18116 2025-03-26 04:51:21.787 2025-03-26 04:51:21.787 443096 18449 2 0 18117 2025-03-26 04:51:21.945 2025-03-26 04:51:21.945 443096 21442 2 0 18118 2025-03-26 04:51:21.945 2025-03-26 04:51:21.945 443096 21639 15 0 18119 2025-03-26 05:48:47.838 2025-03-26 05:48:47.838 443099 663 3 0 18120 2025-03-26 02:54:43.841 2025-03-26 02:54:43.841 443099 822 5 0 18121 2025-03-26 05:48:47.838 2025-03-26 05:48:47.838 443099 4768 0 0 18122 2025-03-26 02:54:43.841 2025-03-26 02:54:43.841 443099 14357 1 0 18123 2025-03-26 06:00:02.062 2025-03-26 06:00:02.062 443100 1064 10 0 18124 2025-03-26 06:00:02.062 2025-03-26 06:00:02.062 443100 1806 1 0 18125 2025-03-26 05:48:48.836 2025-03-26 05:48:48.836 443105 628 0 0 18126 2025-03-26 05:48:48.836 2025-03-26 05:48:48.836 443105 9330 3 0 18127 2025-03-26 02:54:41.398 2025-03-26 02:54:41.398 443105 18423 5 0 18128 2025-03-26 02:54:41.398 2025-03-26 02:54:41.398 443105 21540 1 0 18129 2025-03-26 04:15:45.443 2025-03-26 04:15:45.443 443107 8945 810 0 18130 2025-03-26 04:15:16.644 2025-03-26 04:15:16.644 443107 11443 0 0 18131 2025-03-26 04:15:20.481 2025-03-26 04:15:20.481 443107 13143 81 0 18132 2025-03-26 06:30:19.287 2025-03-26 06:30:19.287 443107 14452 19 0 18133 2025-03-26 04:15:16.644 2025-03-26 04:15:16.644 443107 15192 1 0 18134 2025-03-26 04:15:17.909 2025-03-26 04:15:17.909 443107 17693 1 0 18135 2025-03-26 04:15:45.443 2025-03-26 04:15:45.443 443107 19138 90 0 18136 2025-03-26 06:30:19.287 2025-03-26 06:30:19.287 443107 19217 2 0 18137 2025-03-26 04:15:17.909 2025-03-26 04:15:17.909 443107 20619 8 0 18138 2025-03-26 04:15:20.481 2025-03-26 04:15:20.481 443107 21523 9 0 18139 2025-03-26 04:13:47.452 2025-03-26 04:13:47.452 443108 697 81 0 18140 2025-03-26 04:13:47.452 2025-03-26 04:13:47.452 443108 1326 9 0 18141 2025-03-26 04:13:45.961 2025-03-26 04:13:45.961 443108 9655 1 0 18142 2025-03-26 04:13:52.375 2025-03-26 04:13:52.375 443108 10270 810 0 18143 2025-03-26 04:13:45.373 2025-03-26 04:13:45.373 443108 16842 1 0 18144 2025-03-26 04:13:45.961 2025-03-26 04:13:45.961 443108 17639 8 0 18145 2025-03-26 04:13:52.375 2025-03-26 04:13:52.375 443108 18188 90 0 18146 2025-03-26 04:13:45.373 2025-03-26 04:13:45.373 443108 18225 0 0 18147 2025-03-26 06:03:35.628 2025-03-26 06:03:35.628 443116 7809 9 0 18148 2025-03-26 05:53:40.515 2025-03-26 05:53:40.515 443116 11862 3 0 18149 2025-03-26 06:03:35.628 2025-03-26 06:03:35.628 443116 20094 1 0 18150 2025-03-26 05:53:40.515 2025-03-26 05:53:40.515 443116 20370 23 0 18151 2025-03-26 04:13:26.068 2025-03-26 04:13:26.068 443122 4027 81 0 18152 2025-03-26 04:13:26.068 2025-03-26 04:13:26.068 443122 4048 9 0 18153 2025-03-26 05:46:57.166 2025-03-26 05:46:57.166 443122 4474 1 0 18154 2025-03-26 04:13:27.875 2025-03-26 04:13:27.875 443122 5522 810 0 18155 2025-03-26 04:13:23.792 2025-03-26 04:13:23.792 443122 9356 8 0 18156 2025-03-26 04:13:23.792 2025-03-26 04:13:23.792 443122 10698 1 0 18157 2025-03-26 04:13:23.302 2025-03-26 04:13:23.302 443122 20683 1 0 18158 2025-03-26 05:46:57.166 2025-03-26 05:46:57.166 443122 21026 5 0 18159 2025-03-26 04:13:23.302 2025-03-26 04:13:23.302 443122 21400 0 0 18160 2025-03-26 04:13:27.875 2025-03-26 04:13:27.875 443122 21825 90 0 18161 2025-03-26 05:46:59.326 2025-03-26 05:46:59.326 443123 1047 1 0 18162 2025-03-26 05:46:59.326 2025-03-26 05:46:59.326 443123 2347 5 0 18163 2025-03-26 02:55:44.076 2025-03-26 02:55:44.076 443129 18274 1 0 18164 2025-03-26 02:55:44.076 2025-03-26 02:55:44.076 443129 21281 0 0 18165 2025-03-26 04:56:25.73 2025-03-26 04:56:25.73 443142 697 15 0 18166 2025-03-26 04:56:25.908 2025-03-26 04:56:25.908 443142 763 2 0 18167 2025-03-26 04:56:25.73 2025-03-26 04:56:25.73 443142 19303 2 0 18168 2025-03-26 04:56:25.908 2025-03-26 04:56:25.908 443142 21603 15 0 18169 2025-03-26 03:42:08.798 2025-03-26 03:42:08.798 443146 16212 2 0 18170 2025-03-26 03:42:08.798 2025-03-26 03:42:08.798 443146 16638 19 0 18171 2025-03-26 04:47:42.266 2025-03-26 04:47:42.266 443152 641 2 0 18172 2025-03-26 04:47:41.2 2025-03-26 04:47:41.2 443152 10484 2 0 18173 2025-03-26 04:47:41.2 2025-03-26 04:47:41.2 443152 13398 15 0 18174 2025-03-26 04:47:40.912 2025-03-26 04:47:40.912 443152 15703 15 0 18175 2025-03-26 04:47:42.266 2025-03-26 04:47:42.266 443152 18225 15 0 18176 2025-03-26 04:47:40.912 2025-03-26 04:47:40.912 443152 18265 2 0 18177 2025-03-26 02:53:12.53 2025-03-26 02:53:12.53 443158 685 3 0 18178 2025-03-26 02:53:12.53 2025-03-26 02:53:12.53 443158 21159 23 0 18179 2025-03-26 06:30:17.888 2025-03-26 06:30:17.888 443160 680 19 0 18180 2025-03-26 04:16:16.357 2025-03-26 04:16:16.357 443160 951 0 0 18181 2025-03-26 04:16:19.285 2025-03-26 04:16:19.285 443160 2293 8 0 18182 2025-03-26 04:16:16.357 2025-03-26 04:16:16.357 443160 9366 1 0 18183 2025-03-26 06:30:17.888 2025-03-26 06:30:17.888 443160 10490 2 0 18184 2025-03-26 04:16:19.285 2025-03-26 04:16:19.285 443160 20657 1 0 18185 2025-03-26 04:14:28.899 2025-03-26 04:14:28.899 443164 2722 10 0 18186 2025-03-26 04:14:28.899 2025-03-26 04:14:28.899 443164 18321 90 0 18187 2025-03-26 02:46:33.12 2025-03-26 02:46:33.12 443169 4763 9 0 18188 2025-03-26 02:46:33.12 2025-03-26 02:46:33.12 443169 17221 1 0 18189 2025-03-26 04:09:56.898 2025-03-26 04:09:56.898 443178 1124 45 0 18190 2025-03-26 04:09:56.898 2025-03-26 04:09:56.898 443178 4083 5 0 18191 2025-03-26 04:59:27.024 2025-03-26 04:59:27.024 443178 5752 1 0 18192 2025-03-26 04:59:27.024 2025-03-26 04:59:27.024 443178 5825 5 0 18193 2025-03-26 05:39:31.025 2025-03-26 05:39:31.025 443179 680 8 0 18194 2025-03-26 05:39:30.363 2025-03-26 05:39:30.363 443179 697 8 0 18195 2025-03-26 05:39:30.531 2025-03-26 05:39:30.531 443179 1213 8 0 18196 2025-03-26 05:39:30.067 2025-03-26 05:39:30.067 443179 2042 69 0 18197 2025-03-26 05:39:30.275 2025-03-26 05:39:30.275 443179 4989 8 0 18198 2025-03-26 05:39:30.275 2025-03-26 05:39:30.275 443179 5904 69 0 18199 2025-03-26 05:39:30.681 2025-03-26 05:39:30.681 443179 6148 69 0 18200 2025-03-26 05:39:30.885 2025-03-26 05:39:30.885 443179 7185 8 0 18201 2025-03-26 05:39:30.681 2025-03-26 05:39:30.681 443179 9177 8 0 18202 2025-03-26 05:39:31.331 2025-03-26 05:39:31.331 443179 10493 15 0 18203 2025-03-26 05:39:31.331 2025-03-26 05:39:31.331 443179 10591 139 0 18204 2025-03-26 05:39:30.067 2025-03-26 05:39:30.067 443179 11776 8 0 18205 2025-03-26 03:44:13.405 2025-03-26 03:44:13.405 443179 15337 19 0 18206 2025-03-26 05:39:31.025 2025-03-26 05:39:31.025 443179 15843 69 0 18207 2025-03-26 05:39:30.531 2025-03-26 05:39:30.531 443179 18116 69 0 18208 2025-03-26 05:39:30.363 2025-03-26 05:39:30.363 443179 19502 69 0 18209 2025-03-26 05:39:30.885 2025-03-26 05:39:30.885 443179 20811 69 0 18210 2025-03-26 03:44:13.405 2025-03-26 03:44:13.405 443179 21829 2 0 18211 2025-03-26 06:19:09.754 2025-03-26 06:19:09.754 443183 713 9 0 18212 2025-03-26 06:19:10.395 2025-03-26 06:19:10.395 443183 7674 9 0 18213 2025-03-26 06:19:11.041 2025-03-26 06:19:11.041 443183 9476 1 0 18214 2025-03-26 06:19:10.395 2025-03-26 06:19:10.395 443183 12736 1 0 18215 2025-03-26 06:19:09.754 2025-03-26 06:19:09.754 443183 16653 1 0 18216 2025-03-26 06:19:11.041 2025-03-26 06:19:11.041 443183 17291 9 0 18217 2025-03-26 05:43:20.391 2025-03-26 05:43:20.391 443192 629 2 0 18218 2025-03-26 05:43:20.391 2025-03-26 05:43:20.391 443192 17535 19 0 18219 2025-03-26 04:21:54.993 2025-03-26 04:21:54.993 443197 814 19 0 18220 2025-03-26 04:12:24.295 2025-03-26 04:12:24.295 443197 1439 8 0 18221 2025-03-26 04:35:28.274 2025-03-26 04:35:28.274 443197 1602 6 0 18222 2025-03-26 04:12:25.794 2025-03-26 04:12:25.794 443197 1615 9 0 18223 2025-03-26 04:59:21.545 2025-03-26 04:59:21.545 443197 1814 1 0 18224 2025-03-26 05:08:11.92 2025-03-26 05:08:11.92 443197 2151 3 0 18225 2025-03-26 05:38:19.142 2025-03-26 05:38:19.142 443197 3683 2 0 18226 2025-03-26 04:12:24.295 2025-03-26 04:12:24.295 443197 4048 1 0 18227 2025-03-26 04:39:44.8 2025-03-26 04:39:44.8 443197 7119 90 0 18228 2025-03-26 06:06:15.361 2025-03-26 06:06:15.361 443197 9183 6 0 18229 2025-03-26 04:35:28.274 2025-03-26 04:35:28.274 443197 10821 51 0 18230 2025-03-26 04:12:23.565 2025-03-26 04:12:23.565 443197 11220 1 0 18231 2025-03-26 05:08:11.92 2025-03-26 05:08:11.92 443197 11515 31 0 18232 2025-03-26 04:39:44.8 2025-03-26 04:39:44.8 443197 11527 810 0 18233 2025-03-26 04:21:54.993 2025-03-26 04:21:54.993 443197 11648 2 0 18234 2025-03-26 05:08:11.591 2025-03-26 05:08:11.591 443197 15858 31 0 18235 2025-03-26 04:12:23.565 2025-03-26 04:12:23.565 443197 16097 0 0 18236 2025-03-26 05:38:19.142 2025-03-26 05:38:19.142 443197 18225 19 0 18237 2025-03-26 05:08:11.436 2025-03-26 05:08:11.436 443197 19488 3 0 18238 2025-03-26 05:08:11.436 2025-03-26 05:08:11.436 443197 19943 31 0 18239 2025-03-26 06:06:15.361 2025-03-26 06:06:15.361 443197 20182 57 0 18240 2025-03-26 04:59:21.545 2025-03-26 04:59:21.545 443197 21180 5 0 18241 2025-03-26 05:08:11.591 2025-03-26 05:08:11.591 443197 21248 3 0 18242 2025-03-26 04:12:25.794 2025-03-26 04:12:25.794 443197 21391 81 0 18243 2025-03-26 04:42:08.551 2025-03-26 04:42:08.551 443221 1245 2 0 18244 2025-03-26 04:42:08.551 2025-03-26 04:42:08.551 443221 4487 15 0 18245 2025-03-26 04:42:08.714 2025-03-26 04:42:08.714 443221 15160 15 0 18246 2025-03-26 04:42:08.714 2025-03-26 04:42:08.714 443221 20911 2 0 18247 2025-03-26 03:12:26.704 2025-03-26 03:12:26.704 443225 13042 5 0 18248 2025-03-26 03:12:26.704 2025-03-26 03:12:26.704 443225 14168 45 0 18249 2025-03-26 04:41:34.549 2025-03-26 04:41:34.549 443228 713 0 0 18250 2025-03-26 04:41:34.549 2025-03-26 04:41:34.549 443228 1881 1 0 18251 2025-03-26 04:41:35.459 2025-03-26 04:41:35.459 443228 2402 1 0 18252 2025-03-26 04:41:35.459 2025-03-26 04:41:35.459 443228 5978 0 0 18253 2025-03-26 05:13:25.806 2025-03-26 05:13:25.806 443228 9418 19 0 18254 2025-03-26 05:13:25.806 2025-03-26 05:13:25.806 443228 17162 2 0 18255 2025-03-26 04:40:24.385 2025-03-26 04:40:24.385 443231 715 2 0 18256 2025-03-26 04:40:24.224 2025-03-26 04:40:24.224 443231 837 15 0 18257 2025-03-26 04:40:24.385 2025-03-26 04:40:24.385 443231 2780 15 0 18258 2025-03-26 04:40:24.224 2025-03-26 04:40:25.39 443231 6749 17 0 18259 2025-03-26 04:40:25.39 2025-03-26 04:40:25.39 443231 19842 2 0 18260 2025-03-26 04:17:08.292 2025-03-26 04:17:08.292 443233 15491 9 0 18261 2025-03-26 04:17:08.292 2025-03-26 04:17:08.292 443233 20642 1 0 18262 2025-03-26 04:19:58.197 2025-03-26 04:19:58.197 443246 18601 90 0 18263 2025-03-26 04:19:58.197 2025-03-26 04:19:58.197 443246 20782 10 0 18264 2025-03-26 06:20:51.663 2025-03-26 06:20:51.663 443247 9 1 0 18265 2025-03-26 06:20:54.305 2025-03-26 06:20:54.305 443247 805 1 0 18266 2025-03-26 06:20:55.581 2025-03-26 06:20:55.581 443247 1038 0 0 18267 2025-03-26 06:20:53.719 2025-03-26 06:20:53.719 443247 1806 0 0 18268 2025-03-26 06:20:54.729 2025-03-26 06:20:54.729 443247 2722 1 0 18269 2025-03-26 06:20:53.719 2025-03-26 06:20:53.719 443247 3504 1 0 18270 2025-03-26 06:20:55.341 2025-03-26 06:20:55.341 443247 3686 0 0 18271 2025-03-26 06:20:53.859 2025-03-26 06:20:53.859 443247 5173 1 0 18272 2025-03-26 06:20:54.729 2025-03-26 06:20:54.729 443247 5597 0 0 18273 2025-03-26 06:20:54.305 2025-03-26 06:20:54.305 443247 5828 0 0 18274 2025-03-26 06:20:42.094 2025-03-26 06:20:42.094 443247 9845 0 0 18275 2025-03-26 06:20:55.341 2025-03-26 06:20:55.341 443247 14015 1 0 18276 2025-03-26 06:20:42.094 2025-03-26 06:20:42.094 443247 15491 1 0 18277 2025-03-26 06:20:53.002 2025-03-26 06:20:53.002 443247 15728 1 0 18278 2025-03-26 06:20:53.859 2025-03-26 06:20:53.859 443247 16571 0 0 18279 2025-03-26 06:20:55.581 2025-03-26 06:20:55.581 443247 16830 1 0 18280 2025-03-26 06:20:52.457 2025-03-26 06:20:52.457 443247 21103 1 0 18281 2025-03-26 06:20:53.002 2025-03-26 06:20:53.002 443247 21180 0 0 18282 2025-03-26 06:20:52.457 2025-03-26 06:20:52.457 443247 21413 0 0 18283 2025-03-26 06:20:51.663 2025-03-26 06:20:51.663 443247 21639 0 0 18284 2025-03-26 03:13:01.605 2025-03-26 03:13:01.605 443253 20674 2 0 18285 2025-03-26 03:13:01.605 2025-03-26 03:13:01.605 443253 21271 19 0 18286 2025-03-26 04:41:29.712 2025-03-26 04:41:29.712 443262 1784 19 0 18287 2025-03-26 04:41:29.712 2025-03-26 04:41:29.712 443262 19924 2 0 18288 2025-03-26 04:18:12.259 2025-03-26 04:18:12.259 443265 3377 62 0 18289 2025-03-26 04:18:12.259 2025-03-26 04:18:12.259 443265 10493 7 0 18290 2025-03-26 05:29:36.623 2025-03-26 05:29:36.623 443266 1718 2 0 18291 2025-03-26 02:59:32.552 2025-03-26 02:59:32.552 443266 2335 51 0 18292 2025-03-26 04:38:43.852 2025-03-26 04:38:43.852 443266 13162 5 0 18293 2025-03-26 06:30:16.975 2025-03-26 06:30:16.975 443266 16284 19 0 18294 2025-03-26 05:29:36.623 2025-03-26 05:29:36.623 443266 17109 19 0 18295 2025-03-26 02:59:32.552 2025-03-26 02:59:32.552 443266 17533 6 0 18296 2025-03-26 04:38:43.852 2025-03-26 04:38:43.852 443266 20133 1 0 18297 2025-03-26 06:30:16.975 2025-03-26 06:30:16.975 443266 21670 2 0 18298 2025-03-26 05:48:49.87 2025-03-26 05:48:49.87 443268 5128 3 0 18299 2025-03-26 05:48:49.87 2025-03-26 05:48:49.87 443268 21291 0 0 18300 2025-03-26 05:47:16.708 2025-03-26 05:47:16.708 443272 618 2 0 18301 2025-03-26 05:45:57.782 2025-03-26 05:45:57.782 443272 641 8 0 18302 2025-03-26 05:54:54.421 2025-03-26 05:54:54.421 443272 667 9 0 18303 2025-03-26 05:42:37.446 2025-03-26 05:42:37.446 443272 684 7 0 18304 2025-03-26 05:30:47.791 2025-03-26 05:30:47.791 443272 722 3 0 18305 2025-03-26 04:21:58.954 2025-03-26 04:21:58.954 443272 777 19 0 18306 2025-03-26 05:45:57.235 2025-03-26 05:45:57.235 443272 925 69 0 18307 2025-03-26 04:11:07.241 2025-03-26 04:11:07.241 443272 1124 9 0 18308 2025-03-26 05:45:57.109 2025-03-26 05:45:57.109 443272 1273 69 0 18309 2025-03-26 05:42:38.425 2025-03-26 05:42:38.425 443272 1326 62 0 18310 2025-03-26 05:42:37.127 2025-03-26 05:42:37.127 443272 1465 62 0 18311 2025-03-26 06:11:53.413 2025-03-26 06:11:53.413 443272 1617 8 0 18312 2025-03-26 04:11:05.641 2025-03-26 04:11:05.641 443272 2065 1 0 18313 2025-03-26 05:42:36.795 2025-03-26 05:42:36.795 443272 2156 7 0 18314 2025-03-26 05:54:54.421 2025-03-26 05:54:54.421 443272 2330 1 0 18315 2025-03-26 05:42:37.127 2025-03-26 05:42:37.127 443272 2519 7 0 18316 2025-03-26 05:45:57.109 2025-03-26 05:45:57.109 443272 3304 8 0 18317 2025-03-26 05:45:57.731 2025-03-26 05:45:57.731 443272 3347 8 0 18318 2025-03-26 05:45:57.925 2025-03-26 05:45:57.925 443272 3360 69 0 18319 2025-03-26 04:11:05.9 2025-03-26 04:11:05.9 443272 3377 8 0 18320 2025-03-26 06:11:53.986 2025-03-26 06:11:53.986 443272 3456 69 0 18321 2025-03-26 04:59:08.653 2025-03-26 04:59:08.653 443272 3745 5 0 18322 2025-03-26 04:35:26.613 2025-03-26 04:35:26.613 443272 4225 51 0 18323 2025-03-26 05:45:57.464 2025-03-26 05:45:57.464 443272 4624 69 0 18324 2025-03-26 05:30:49.448 2025-03-26 05:30:49.448 443272 4958 28 0 18325 2025-03-26 07:28:49.591 2025-03-26 07:28:49.591 443272 5306 19 0 18326 2025-03-26 05:42:37.314 2025-03-26 05:42:37.314 443272 5444 7 0 18327 2025-03-26 05:45:57.464 2025-03-26 05:45:57.464 443272 5703 8 0 18328 2025-03-26 07:28:49.591 2025-03-26 07:28:49.591 443272 6361 2 0 18329 2025-03-26 04:59:08.653 2025-03-26 04:59:08.653 443272 7667 1 0 18330 2025-03-26 04:35:26.613 2025-03-26 04:35:26.613 443272 9337 6 0 18331 2025-03-26 05:45:57.925 2025-03-26 05:45:57.925 443272 9341 8 0 18332 2025-03-26 05:45:57.666 2025-03-26 06:11:53.061 443272 9796 77 0 18333 2025-03-26 06:11:53.502 2025-03-26 06:11:53.502 443272 9863 15 0 18334 2025-03-26 05:42:36.884 2025-03-26 05:42:36.884 443272 10112 14 0 18335 2025-03-26 05:30:49.448 2025-03-26 05:30:49.448 443272 11417 251 0 18336 2025-03-26 05:45:57.235 2025-03-26 05:45:57.235 443272 11678 8 0 18337 2025-03-26 05:47:16.708 2025-03-26 05:47:16.708 443272 13143 19 0 18338 2025-03-26 05:45:57.731 2025-03-26 05:45:57.731 443272 13249 69 0 18339 2025-03-26 05:42:37.314 2025-03-26 05:42:37.314 443272 13348 62 0 18340 2025-03-26 06:11:53.061 2025-03-26 06:11:53.061 443272 14280 69 0 18341 2025-03-26 06:17:25.727 2025-03-26 06:17:25.727 443272 14385 9 0 18342 2025-03-26 05:37:51.253 2025-03-26 05:37:51.253 443272 16042 19 0 18343 2025-03-26 06:11:53.413 2025-03-26 06:11:53.413 443272 16356 69 0 18344 2025-03-26 06:11:53.871 2025-03-26 06:11:53.871 443272 16562 69 0 18345 2025-03-26 06:11:53.502 2025-03-26 06:11:53.502 443272 16598 139 0 18346 2025-03-26 05:42:36.795 2025-03-26 05:42:36.795 443272 16876 62 0 18347 2025-03-26 05:42:36.433 2025-03-26 05:42:36.433 443272 17103 7 0 18348 2025-03-26 05:42:37.446 2025-03-26 05:42:37.446 443272 17944 62 0 18349 2025-03-26 05:42:38.425 2025-03-26 05:42:38.425 443272 17991 7 0 18350 2025-03-26 05:37:51.253 2025-03-26 05:37:51.253 443272 18101 2 0 18351 2025-03-26 05:30:47.791 2025-03-26 05:30:47.791 443272 18306 28 0 18352 2025-03-26 05:42:36.433 2025-03-26 05:42:36.433 443272 18526 62 0 18353 2025-03-26 06:17:25.727 2025-03-26 06:17:25.727 443272 19263 1 0 18354 2025-03-26 05:42:36.884 2025-03-26 05:42:36.884 443272 19524 124 0 18355 2025-03-26 04:11:05.9 2025-03-26 04:11:05.9 443272 20409 1 0 18356 2025-03-26 04:11:07.241 2025-03-26 04:11:07.241 443272 20502 81 0 18357 2025-03-26 04:11:05.641 2025-03-26 04:11:05.641 443272 20554 0 0 18358 2025-03-26 05:39:04.174 2025-03-26 05:39:04.174 443272 20597 1 0 18359 2025-03-26 06:11:53.871 2025-03-26 06:11:53.871 443272 20613 8 0 18360 2025-03-26 05:45:57.782 2025-03-26 05:45:57.782 443272 20956 69 0 18361 2025-03-26 04:21:58.954 2025-03-26 04:21:58.954 443272 20979 2 0 18362 2025-03-26 05:39:04.174 2025-03-26 05:39:04.174 443272 21060 5 0 18363 2025-03-26 05:45:57.666 2025-03-26 05:45:57.666 443272 21338 8 0 18364 2025-03-26 06:11:53.986 2025-03-26 06:11:53.986 443272 21540 8 0 18365 2025-03-26 05:39:14.809 2025-03-26 05:39:14.809 443274 644 69 0 18366 2025-03-26 05:39:17.884 2025-03-26 05:39:17.884 443274 670 8 0 18367 2025-03-26 07:09:12.191 2025-03-26 07:09:12.191 443274 725 19 0 18368 2025-03-26 04:11:52.644 2025-03-26 04:11:52.644 443274 981 9 0 18369 2025-03-26 03:46:59.893 2025-03-26 03:46:59.893 443274 1092 1 0 18370 2025-03-26 04:58:55.847 2025-03-26 04:58:55.847 443274 1122 5 0 18371 2025-03-26 05:39:14.552 2025-03-26 05:39:14.552 443274 1428 8 0 18372 2025-03-26 05:39:14.214 2025-03-26 05:39:14.214 443274 1480 8 0 18373 2025-03-26 05:47:06.672 2025-03-26 05:47:06.672 443274 1692 19 0 18374 2025-03-26 03:46:59.199 2025-03-26 03:46:59.199 443274 1718 1 0 18375 2025-03-26 05:25:04.745 2025-03-26 05:25:04.745 443274 1720 2 0 18376 2025-03-26 04:11:52.644 2025-03-26 04:11:52.644 443274 1729 81 0 18377 2025-03-26 05:39:15.083 2025-03-26 05:39:15.083 443274 2061 69 0 18378 2025-03-26 05:45:56.16 2025-03-26 05:45:56.16 443274 2111 69 0 18379 2025-03-26 04:58:55.847 2025-03-26 04:58:55.847 443274 2329 1 0 18380 2025-03-26 04:11:41.776 2025-03-26 04:11:41.776 443274 2347 1 0 18381 2025-03-26 05:39:14.622 2025-03-26 05:39:14.622 443274 2402 8 0 18382 2025-03-26 03:46:59.024 2025-03-26 03:46:59.024 443274 3417 5 0 18383 2025-03-26 04:11:42.289 2025-03-26 04:11:42.289 443274 4474 1 0 18384 2025-03-26 05:47:06.672 2025-03-26 05:47:06.672 443274 7654 2 0 18385 2025-03-26 05:45:55.824 2025-03-26 05:45:55.824 443274 7659 8 0 18386 2025-03-26 04:11:41.776 2025-03-26 04:11:41.776 443274 7772 0 0 18387 2025-03-26 05:45:56.16 2025-03-26 05:45:56.16 443274 8326 8 0 18388 2025-03-26 05:39:16.754 2025-03-26 05:39:16.754 443274 8729 15 0 18389 2025-03-26 03:46:59.199 2025-03-26 03:46:59.199 443274 9184 5 0 18390 2025-03-26 03:36:59.418 2025-03-26 03:36:59.418 443274 9906 20 0 18391 2025-03-26 05:45:55.824 2025-03-26 05:45:55.824 443274 10302 69 0 18392 2025-03-26 05:39:16.832 2025-03-26 05:39:16.832 443274 11314 8 0 18393 2025-03-26 05:39:15.083 2025-03-26 05:39:15.083 443274 12976 8 0 18394 2025-03-26 05:45:55.944 2025-03-26 05:45:55.944 443274 14449 69 0 18395 2025-03-26 05:39:14.214 2025-03-26 05:39:14.214 443274 16259 69 0 18396 2025-03-26 05:39:14.386 2025-03-26 05:39:14.386 443274 16598 8 0 18397 2025-03-26 05:37:48.184 2025-03-26 05:37:48.184 443274 17568 2 0 18398 2025-03-26 05:25:21.575 2025-03-26 05:25:21.575 443274 17713 196 0 18399 2025-03-26 05:37:48.184 2025-03-26 05:37:48.184 443274 17824 19 0 18400 2025-03-26 03:36:59.418 2025-03-26 03:36:59.418 443274 18219 180 0 18401 2025-03-26 03:46:58.651 2025-03-26 03:46:58.651 443274 18500 1 0 18402 2025-03-26 03:46:59.893 2025-03-26 03:46:59.893 443274 19199 9 0 18403 2025-03-26 03:46:58.651 2025-03-26 03:46:58.651 443274 19378 5 0 18404 2025-03-26 05:39:14.386 2025-03-26 05:39:14.386 443274 19394 69 0 18405 2025-03-26 05:25:04.745 2025-03-26 05:25:04.745 443274 19570 19 0 18406 2025-03-26 05:39:16.832 2025-03-26 05:39:16.832 443274 19821 69 0 18407 2025-03-26 07:09:12.191 2025-03-26 07:09:12.191 443274 20073 2 0 18408 2025-03-26 05:39:14.809 2025-03-26 05:39:14.809 443274 20481 8 0 18409 2025-03-26 05:39:14.552 2025-03-26 05:39:14.552 443274 20647 69 0 18410 2025-03-26 04:46:46.27 2025-03-26 04:46:46.27 443274 20901 19 0 18411 2025-03-26 04:46:46.27 2025-03-26 04:46:46.27 443274 20912 2 0 18412 2025-03-26 05:39:16.754 2025-03-26 05:39:16.754 443274 20963 139 0 18413 2025-03-26 07:09:12.522 2025-03-26 07:09:12.522 443274 20972 19 0 18414 2025-03-26 04:11:42.289 2025-03-26 04:11:42.289 443274 21047 8 0 18415 2025-03-26 03:46:59.024 2025-03-26 03:46:59.024 443274 21051 1 0 18416 2025-03-26 05:25:21.575 2025-03-26 05:25:21.575 443274 21091 22 0 18417 2025-03-26 07:09:12.522 2025-03-26 07:09:12.522 443274 21212 2 0 18418 2025-03-26 05:39:17.884 2025-03-26 05:45:55.944 443274 21291 77 0 18419 2025-03-26 05:39:14.622 2025-03-26 05:39:14.622 443274 21555 69 0 18420 2025-03-26 05:40:21.312 2025-03-26 05:40:21.312 443276 16970 1 0 18421 2025-03-26 05:40:21.312 2025-03-26 05:40:21.312 443276 20190 5 0 18422 2025-03-26 05:31:47.002 2025-03-26 05:31:47.002 443287 5661 270 0 18423 2025-03-26 05:31:47.002 2025-03-26 05:31:47.002 443287 17082 30 0 18424 2025-03-26 06:56:30.443 2025-03-26 06:56:30.443 443288 750 8 0 18425 2025-03-26 03:07:35.621 2025-03-26 03:07:35.621 443288 766 2 0 18426 2025-03-26 06:56:30.81 2025-03-26 06:56:30.81 443288 2056 8 0 18427 2025-03-26 04:15:26.055 2025-03-26 04:15:26.055 443288 4166 1 0 18428 2025-03-26 06:56:30.628 2025-03-26 06:56:30.628 443288 6421 8 0 18429 2025-03-26 06:56:29.796 2025-03-26 06:56:29.796 443288 6526 69 0 18430 2025-03-26 06:56:30.01 2025-03-26 06:56:30.01 443288 7587 69 0 18431 2025-03-26 06:56:30.628 2025-03-26 06:56:30.628 443288 7966 69 0 18432 2025-03-26 06:56:29.796 2025-03-26 06:56:29.796 443288 8045 8 0 18433 2025-03-26 04:15:26.055 2025-03-26 04:15:26.055 443288 12072 9 0 18434 2025-03-26 06:56:30.01 2025-03-26 06:56:30.01 443288 16270 8 0 18435 2025-03-26 06:56:30.47 2025-03-26 06:56:30.47 443288 18011 8 0 18436 2025-03-26 03:07:35.621 2025-03-26 03:07:35.621 443288 20854 19 0 18437 2025-03-26 06:56:30.47 2025-03-26 06:56:30.47 443288 21401 69 0 18438 2025-03-26 03:09:08.108 2025-03-26 03:09:08.108 443294 775 19 0 18439 2025-03-26 03:09:08.108 2025-03-26 03:09:08.108 443294 1490 2 0 18440 2025-03-26 06:37:32.802 2025-03-26 06:37:32.802 443296 698 2 0 18441 2025-03-26 06:37:32.802 2025-03-26 06:37:32.802 443296 7983 19 0 18442 2025-03-26 05:41:26.334 2025-03-26 05:41:26.334 443296 13177 2 0 18443 2025-03-26 04:26:53.349 2025-03-26 04:26:53.349 443296 15115 9 0 18444 2025-03-26 04:26:53.349 2025-03-26 04:26:53.349 443296 17275 1 0 18445 2025-03-26 05:41:26.334 2025-03-26 05:41:26.334 443296 21768 19 0 18446 2025-03-26 05:41:19.864 2025-03-26 05:41:19.864 443297 837 19 0 18447 2025-03-26 02:44:12.432 2025-03-26 02:44:12.432 443297 1723 1 0 18448 2025-03-26 05:41:19.864 2025-03-26 05:41:19.864 443297 4654 2 0 18449 2025-03-26 06:33:55.378 2025-03-26 06:33:55.378 443297 16357 2 0 18450 2025-03-26 02:44:12.432 2025-03-26 02:44:12.432 443297 16447 9 0 18451 2025-03-26 06:33:55.378 2025-03-26 06:33:55.378 443297 16660 19 0 18452 2025-03-26 06:17:19.027 2025-03-26 06:17:19.027 443298 692 9 0 18453 2025-03-26 05:40:26.463 2025-03-26 05:40:26.463 443298 9378 5 0 18454 2025-03-26 06:17:19.027 2025-03-26 06:17:19.027 443298 20554 1 0 18455 2025-03-26 05:40:26.463 2025-03-26 05:40:26.463 443298 21506 1 0 18456 2025-03-26 03:07:45.124 2025-03-26 03:07:45.124 443299 1802 9 0 18457 2025-03-26 03:07:45.124 2025-03-26 03:07:45.124 443299 20647 1 0 18458 2025-03-26 06:37:27.152 2025-03-26 06:37:27.152 443301 15160 19 0 18459 2025-03-26 06:37:27.152 2025-03-26 06:37:27.152 443301 20612 2 0 18460 2025-03-26 06:37:34.957 2025-03-26 06:37:34.957 443302 794 2 0 18461 2025-03-26 06:37:34.957 2025-03-26 06:37:34.957 443302 1631 19 0 18462 2025-03-26 05:38:36.646 2025-03-26 05:38:36.646 443304 2309 2 0 18463 2025-03-26 05:31:45.506 2025-03-26 05:31:45.506 443304 4474 30 0 18464 2025-03-26 05:38:36.646 2025-03-26 05:38:36.646 443304 18393 19 0 18465 2025-03-26 05:31:45.506 2025-03-26 05:31:45.506 443304 21421 270 0 18466 2025-03-26 06:33:53.939 2025-03-26 06:33:53.939 443305 16598 2 0 18467 2025-03-26 06:33:53.939 2025-03-26 06:33:53.939 443305 16950 19 0 18468 2025-03-26 06:17:20.149 2025-03-26 06:17:20.149 443307 5306 9 0 18469 2025-03-26 06:17:20.149 2025-03-26 06:17:20.149 443307 21710 1 0 18470 2025-03-26 06:37:27.698 2025-03-26 06:37:27.698 443308 992 2 0 18471 2025-03-26 06:37:27.698 2025-03-26 06:37:27.698 443308 16097 19 0 18472 2025-03-26 05:05:29.097 2025-03-26 05:05:29.097 443309 1576 3 0 18473 2025-03-26 06:37:35.24 2025-03-26 06:37:35.24 443309 6777 2 0 18474 2025-03-26 06:37:35.24 2025-03-26 06:37:35.24 443309 14774 19 0 18475 2025-03-26 05:05:29.097 2025-03-26 05:05:29.097 443309 18231 30 0 18476 2025-03-26 06:37:29.593 2025-03-26 06:37:29.593 443311 1737 2 0 18477 2025-03-26 06:37:29.593 2025-03-26 06:37:29.593 443311 17172 19 0 18478 2025-03-26 06:33:59.453 2025-03-26 06:33:59.453 443312 844 2 0 18479 2025-03-26 04:25:11.441 2025-03-26 04:25:11.441 443312 1720 1 0 18480 2025-03-26 04:25:28.074 2025-03-26 04:25:28.074 443312 2724 9 0 18481 2025-03-26 04:25:28.074 2025-03-26 04:25:28.074 443312 15139 1 0 18482 2025-03-26 05:41:03.678 2025-03-26 05:41:03.678 443312 15806 19 0 18483 2025-03-26 04:25:27.492 2025-03-26 04:25:27.492 443312 19821 9 0 18484 2025-03-26 04:25:11.441 2025-03-26 04:25:11.441 443312 20596 9 0 18485 2025-03-26 05:41:03.678 2025-03-26 05:41:03.678 443312 20599 2 0 18486 2025-03-26 06:33:59.453 2025-03-26 06:33:59.453 443312 21233 19 0 18487 2025-03-26 04:25:27.492 2025-03-26 04:25:27.492 443312 21393 1 0 18488 2025-03-26 04:38:36.264 2025-03-26 04:38:36.264 443313 706 2 0 18489 2025-03-26 04:38:36.406 2025-03-26 04:38:36.406 443313 956 2 0 18490 2025-03-26 04:38:36.406 2025-03-26 04:38:36.406 443313 10554 15 0 18491 2025-03-26 04:38:36.264 2025-03-26 04:38:36.264 443313 15624 15 0 18492 2025-03-26 02:42:40.418 2025-03-26 02:42:40.418 443314 8037 9 0 18493 2025-03-26 06:34:00.046 2025-03-26 06:34:00.046 443314 8380 2 0 18494 2025-03-26 02:42:40.418 2025-03-26 02:42:40.418 443314 14037 1 0 18495 2025-03-26 06:34:00.046 2025-03-26 06:34:00.046 443314 16406 19 0 18496 2025-03-26 06:37:30.676 2025-03-26 06:37:30.676 443315 14213 19 0 18497 2025-03-26 03:34:30.832 2025-03-26 03:34:30.832 443315 14552 9 0 18498 2025-03-26 03:34:30.832 2025-03-26 03:34:30.832 443315 19333 1 0 18499 2025-03-26 06:37:30.676 2025-03-26 06:37:30.676 443315 21805 2 0 18500 2025-03-26 03:06:39.065 2025-03-26 03:06:39.065 443316 750 2 0 18501 2025-03-26 03:06:39.065 2025-03-26 03:06:39.065 443316 1094 19 0 18502 2025-03-26 05:40:58.848 2025-03-26 05:40:58.848 443316 1425 2 0 18503 2025-03-26 06:37:14.524 2025-03-26 06:37:14.524 443316 9084 2 0 18504 2025-03-26 06:37:14.524 2025-03-26 06:37:14.524 443316 15577 19 0 18505 2025-03-26 05:40:58.848 2025-03-26 05:40:58.848 443316 21413 19 0 18506 2025-03-26 02:50:29.351 2025-03-26 02:50:29.351 443319 630 1 0 18507 2025-03-26 02:50:28.938 2025-03-26 02:50:28.938 443319 671 1 0 18508 2025-03-26 05:59:11.465 2025-03-26 05:59:11.465 443319 732 3 0 18509 2025-03-26 02:50:26.163 2025-03-26 02:50:26.163 443319 739 12 0 18510 2025-03-26 04:27:24.955 2025-03-26 04:27:24.955 443319 763 10 0 18511 2025-03-26 04:44:45.994 2025-03-26 04:44:45.994 443319 822 2 0 18512 2025-03-26 04:27:24.955 2025-03-26 04:27:24.955 443319 827 90 0 18513 2025-03-26 04:59:04.574 2025-03-26 04:59:04.574 443319 1286 5 0 18514 2025-03-26 02:50:28.938 2025-03-26 02:50:28.938 443319 1411 12 0 18515 2025-03-26 03:46:22.271 2025-03-26 03:46:22.271 443319 1603 4 0 18516 2025-03-26 03:46:22.271 2025-03-26 03:46:22.271 443319 1825 38 0 18517 2025-03-26 05:50:01.52 2025-03-26 05:50:01.52 443319 1881 3 0 18518 2025-03-26 02:50:28.566 2025-03-26 02:50:28.566 443319 2329 1 0 18519 2025-03-26 02:50:28.566 2025-03-26 02:50:28.566 443319 2674 12 0 18520 2025-03-26 05:50:01.319 2025-03-26 05:50:01.319 443319 2735 3 0 18521 2025-03-26 05:37:57.576 2025-03-26 05:37:57.576 443319 3353 19 0 18522 2025-03-26 02:50:28.47 2025-03-26 02:50:28.47 443319 4079 1 0 18523 2025-03-26 02:50:24.257 2025-03-26 02:50:24.257 443319 4650 12 0 18524 2025-03-26 02:50:30.553 2025-03-26 02:50:30.553 443319 4754 12 0 18525 2025-03-26 02:50:27.439 2025-03-26 02:50:27.439 443319 5520 1 0 18526 2025-03-26 04:38:25.085 2025-03-26 04:38:25.085 443319 7916 10 0 18527 2025-03-26 05:37:57.576 2025-03-26 05:37:57.576 443319 7960 2 0 18528 2025-03-26 04:21:50.253 2025-03-26 04:38:57.936 443319 8173 19 10 18529 2025-03-26 02:50:27.439 2025-03-26 02:50:27.439 443319 8954 12 0 18530 2025-03-26 04:44:45.994 2025-03-26 04:44:45.994 443319 9099 19 0 18531 2025-03-26 05:50:02.15 2025-03-26 05:50:02.15 443319 9335 3 0 18532 2025-03-26 02:50:26.788 2025-03-26 02:50:26.788 443319 9353 1 0 18533 2025-03-26 05:50:01.718 2025-03-26 05:50:01.718 443319 9906 24 0 18534 2025-03-26 05:50:02.15 2025-03-26 05:50:02.15 443319 10056 24 0 18535 2025-03-26 03:25:23.792 2025-03-26 03:25:23.792 443319 10096 2 0 18536 2025-03-26 02:50:29.819 2025-03-26 02:50:29.819 443319 11144 1 0 18537 2025-03-26 02:50:26.498 2025-03-26 02:50:26.498 443319 11527 12 0 18538 2025-03-26 02:50:24.158 2025-03-26 02:50:24.158 443319 11714 1 0 18539 2025-03-26 05:51:31.149 2025-03-26 05:51:31.149 443319 11798 196 0 18540 2025-03-26 02:50:26.498 2025-03-26 02:50:26.498 443319 12220 1 0 18541 2025-03-26 03:08:57.158 2025-03-26 03:08:57.158 443319 12368 9 0 18542 2025-03-26 02:50:29.351 2025-03-26 02:50:29.351 443319 13162 12 0 18543 2025-03-26 02:50:30.743 2025-03-26 02:50:30.743 443319 14260 12 0 18544 2025-03-26 04:59:04.574 2025-03-26 04:59:04.574 443319 14280 1 0 18545 2025-03-26 02:50:29.819 2025-03-26 02:50:29.819 443319 14791 12 0 18546 2025-03-26 05:59:11.465 2025-03-26 05:59:11.465 443319 14910 23 0 18547 2025-03-26 05:50:01.319 2025-03-26 05:50:01.319 443319 15890 24 0 18548 2025-03-26 02:50:28.796 2025-03-26 02:50:28.796 443319 16126 12 0 18549 2025-03-26 05:50:01.718 2025-03-26 05:50:01.718 443319 16145 3 0 18550 2025-03-26 05:51:31.149 2025-03-26 05:51:31.149 443319 16176 22 0 18551 2025-03-26 02:50:28.796 2025-03-26 02:50:28.796 443319 16301 1 0 18552 2025-03-26 05:50:01.52 2025-03-26 05:50:01.52 443319 16356 24 0 18553 2025-03-26 02:50:30.553 2025-03-26 02:50:30.553 443319 17103 1 0 18554 2025-03-26 02:50:28.322 2025-03-26 02:50:28.322 443319 17321 12 0 18555 2025-03-26 02:50:26.788 2025-03-26 02:50:26.788 443319 18225 12 0 18556 2025-03-26 02:50:31.239 2025-03-26 02:50:31.239 443319 18265 12 0 18557 2025-03-26 03:08:57.158 2025-03-26 03:08:57.158 443319 18923 1 0 18558 2025-03-26 02:50:28.322 2025-03-26 02:50:28.322 443319 19198 1 0 18559 2025-03-26 05:50:01.917 2025-03-26 05:50:01.917 443319 19332 24 0 18560 2025-03-26 03:25:23.792 2025-03-26 03:25:23.792 443319 19512 19 0 18561 2025-03-26 06:05:03.722 2025-03-26 06:05:03.722 443319 19668 0 0 18562 2025-03-26 04:21:50.253 2025-03-26 04:21:50.253 443319 20094 2 0 18563 2025-03-26 02:50:30.743 2025-03-26 02:50:30.743 443319 20187 1 0 18564 2025-03-26 02:50:30.339 2025-03-26 02:50:30.339 443319 20370 12 0 18565 2025-03-26 06:05:03.722 2025-03-26 06:05:03.722 443319 20433 1 0 18566 2025-03-26 02:50:28.47 2025-03-26 02:50:28.47 443319 20841 12 0 18567 2025-03-26 02:50:26.163 2025-03-26 02:50:26.163 443319 20913 1 0 18568 2025-03-26 02:50:24.257 2025-03-26 02:50:24.257 443319 21037 1 0 18569 2025-03-26 04:38:25.085 2025-03-26 04:38:25.085 443319 21044 90 0 18570 2025-03-26 02:50:31.239 2025-03-26 02:50:31.239 443319 21166 1 0 18571 2025-03-26 05:50:01.917 2025-03-26 05:50:01.917 443319 21172 3 0 18572 2025-03-26 02:50:24.158 2025-03-26 02:50:24.158 443319 21339 12 0 18573 2025-03-26 06:37:14.03 2025-03-26 06:37:14.03 443320 5069 19 0 18574 2025-03-26 06:37:14.03 2025-03-26 06:37:14.03 443320 18930 2 0 18575 2025-03-26 04:25:21.767 2025-03-26 04:25:21.767 443322 2010 9 0 18576 2025-03-26 04:25:21.767 2025-03-26 04:25:21.767 443322 9275 1 0 18577 2025-03-26 06:33:55.894 2025-03-26 06:33:55.894 443322 21033 19 0 18578 2025-03-26 06:33:55.894 2025-03-26 06:33:55.894 443322 21571 2 0 18579 2025-03-26 03:36:04.447 2025-03-26 03:36:04.447 443325 10719 9 0 18580 2025-03-26 03:36:04.447 2025-03-26 03:36:04.447 443325 13406 1 0 18581 2025-03-26 06:37:20.966 2025-03-26 06:37:20.966 443327 1959 2 0 18582 2025-03-26 06:37:20.966 2025-03-26 06:37:20.966 443327 20778 19 0 18583 2025-03-26 06:37:25.726 2025-03-26 06:37:25.726 443328 9982 19 0 18584 2025-03-26 06:37:25.726 2025-03-26 06:37:25.726 443328 18678 2 0 18585 2025-03-26 05:40:50.559 2025-03-26 05:40:50.559 443329 659 2 0 18586 2025-03-26 06:34:09.052 2025-03-26 06:34:09.052 443329 981 1 0 18587 2025-03-26 06:37:13.407 2025-03-26 06:37:13.407 443329 1603 2 0 18588 2025-03-26 02:42:10.938 2025-03-26 02:42:10.938 443329 4958 9 0 18589 2025-03-26 06:37:13.407 2025-03-26 06:37:13.407 443329 10433 19 0 18590 2025-03-26 05:36:01.789 2025-03-26 05:36:01.789 443329 16230 28 0 18591 2025-03-26 05:40:50.559 2025-03-26 05:40:50.559 443329 17568 19 0 18592 2025-03-26 05:36:01.789 2025-03-26 05:36:01.789 443329 19094 3 0 18593 2025-03-26 06:34:09.052 2025-03-26 06:34:09.052 443329 21522 0 0 18594 2025-03-26 06:37:26.236 2025-03-26 06:37:26.236 443330 640 2 0 18595 2025-03-26 04:19:10.474 2025-03-26 04:19:10.474 443330 6687 9 0 18596 2025-03-26 04:19:10.474 2025-03-26 04:19:10.474 443330 19888 1 0 18597 2025-03-26 06:37:26.236 2025-03-26 06:37:26.236 443330 21522 19 0 18598 2025-03-26 02:29:29.661 2025-03-26 02:29:29.661 443331 17106 0 0 18599 2025-03-26 05:40:32.352 2025-03-26 05:40:32.352 443332 1720 19 0 18600 2025-03-26 06:33:20.744 2025-03-26 06:33:20.744 443332 4624 19 0 18601 2025-03-26 03:10:23.507 2025-03-26 03:10:23.507 443332 13327 5 0 18602 2025-03-26 06:33:20.744 2025-03-26 06:33:20.744 443332 13365 2 0 18603 2025-03-26 02:33:37.399 2025-03-26 02:33:37.399 443332 16988 7 0 18604 2025-03-26 02:33:37.399 2025-03-26 02:33:37.399 443332 17157 1 0 18605 2025-03-26 05:40:32.352 2025-03-26 05:40:32.352 443332 17171 2 0 18606 2025-03-26 03:10:23.507 2025-03-26 03:10:23.507 443332 20979 1 0 18607 2025-03-26 06:37:26.661 2025-03-26 06:37:26.661 443333 861 2 0 18608 2025-03-26 06:37:26.661 2025-03-26 06:37:26.661 443333 18409 19 0 18609 2025-03-26 04:41:21.948 2025-03-26 04:41:21.948 443334 8570 2 0 18610 2025-03-26 04:41:21.948 2025-03-26 04:41:21.948 443334 20436 19 0 18611 2025-03-26 05:40:14.051 2025-03-26 05:40:14.051 443336 654 2 0 18612 2025-03-26 05:58:10.469 2025-03-26 05:58:10.469 443336 828 51 0 18613 2025-03-26 03:26:13.789 2025-03-26 03:26:13.789 443336 8498 18 0 18614 2025-03-26 03:26:12.441 2025-03-26 03:26:12.441 443336 12102 9 0 18615 2025-03-26 03:26:13.789 2025-03-26 03:26:13.789 443336 16097 2 0 18616 2025-03-26 05:58:10.469 2025-03-26 05:58:10.469 443336 16124 6 0 18617 2025-03-26 03:26:12.441 2025-03-26 03:26:12.441 443336 16988 1 0 18618 2025-03-26 06:33:16.81 2025-03-26 06:33:16.81 443336 19394 2 0 18619 2025-03-26 05:40:14.051 2025-03-26 05:40:14.051 443336 20817 19 0 18620 2025-03-26 03:26:12.952 2025-03-26 03:26:12.952 443336 21079 9 0 18621 2025-03-26 06:33:16.81 2025-03-26 06:33:16.81 443336 21287 19 0 18622 2025-03-26 04:22:25.078 2025-03-26 04:22:25.078 443336 21332 2 0 18623 2025-03-26 04:22:25.078 2025-03-26 04:22:25.078 443336 21401 19 0 18624 2025-03-26 03:26:12.952 2025-03-26 03:26:12.952 443336 21639 1 0 18625 2025-03-26 03:16:44.051 2025-03-26 03:16:44.051 443337 4802 9 0 18626 2025-03-26 03:16:44.051 2025-03-26 03:16:44.051 443337 7587 1 0 18627 2025-03-26 06:33:54.519 2025-03-26 06:33:54.519 443337 16754 2 0 18628 2025-03-26 06:34:20.967 2025-03-26 06:34:20.967 443337 17184 1 0 18629 2025-03-26 06:33:54.519 2025-03-26 06:33:54.519 443337 17226 19 0 18630 2025-03-26 06:34:20.967 2025-03-26 06:34:20.967 443337 20599 0 0 18631 2025-03-26 03:27:41.899 2025-03-26 03:27:41.899 443338 965 9 0 18632 2025-03-26 04:12:05.064 2025-03-26 04:12:05.064 443338 993 45 0 18633 2025-03-26 04:12:05.064 2025-03-26 04:12:05.064 443338 20381 5 0 18634 2025-03-26 05:39:59.491 2025-03-26 05:39:59.491 443339 718 8 0 18635 2025-03-26 05:47:47.057 2025-03-26 05:47:47.057 443339 994 7 0 18636 2025-03-26 05:12:30.757 2025-03-26 05:12:30.757 443339 1145 2 0 18637 2025-03-26 04:59:33.588 2025-03-26 04:59:33.588 443339 1478 28 0 18638 2025-03-26 04:59:39.943 2025-03-26 04:59:39.943 443339 1603 28 0 18639 2025-03-26 02:44:36.337 2025-03-26 02:44:36.337 443339 1833 1 0 18640 2025-03-26 05:39:58.62 2025-03-26 05:39:58.62 443339 2039 15 0 18641 2025-03-26 02:44:36.337 2025-03-26 02:44:36.337 443339 2773 9 0 18642 2025-03-26 02:34:07.365 2025-03-26 02:34:07.365 443339 3461 10 0 18643 2025-03-26 05:39:58.194 2025-03-26 05:39:58.194 443339 4035 8 0 18644 2025-03-26 02:50:39.888 2025-03-26 02:50:39.888 443339 5427 6 0 18645 2025-03-26 05:39:58.194 2025-03-26 05:39:58.194 443339 7983 69 0 18646 2025-03-26 02:35:06.193 2025-03-26 02:35:06.193 443339 9349 1 0 18647 2025-03-26 04:59:39.943 2025-03-26 04:59:39.943 443339 9353 251 0 18648 2025-03-26 05:47:47.057 2025-03-26 05:47:47.057 443339 11395 1 0 18649 2025-03-26 06:28:21.949 2025-03-26 06:28:21.949 443339 13587 31 0 18650 2025-03-26 05:39:59.491 2025-03-26 05:39:59.491 443339 14607 69 0 18651 2025-03-26 05:12:30.757 2025-03-26 05:12:30.757 443339 14669 19 0 18652 2025-03-26 02:35:06.193 2025-03-26 02:35:06.193 443339 14731 0 0 18653 2025-03-26 02:50:39.888 2025-03-26 02:50:39.888 443339 16929 51 0 18654 2025-03-26 06:28:21.949 2025-03-26 06:28:21.949 443339 19576 3 0 18655 2025-03-26 04:59:33.588 2025-03-26 04:59:33.588 443339 20922 3 0 18656 2025-03-26 05:39:58.62 2025-03-26 05:39:58.62 443339 21019 139 0 18657 2025-03-26 05:03:07.646 2025-03-26 05:03:07.646 443340 9329 2 0 18658 2025-03-26 05:03:07.646 2025-03-26 05:03:07.646 443340 18306 19 0 18659 2025-03-26 06:37:11.539 2025-03-26 06:37:11.539 443344 902 19 0 18660 2025-03-26 06:37:11.539 2025-03-26 06:37:11.539 443344 21401 2 0 18661 2025-03-26 02:44:44.211 2025-03-26 02:44:44.211 443345 16680 1 0 18662 2025-03-26 04:15:18.156 2025-03-26 04:15:18.156 443349 679 19 0 18663 2025-03-26 04:15:18.156 2025-03-26 04:15:18.156 443349 20602 2 0 18664 2025-03-26 04:10:01.197 2025-03-26 04:10:01.197 443351 5497 9 0 18665 2025-03-26 04:10:01.197 2025-03-26 04:10:01.197 443351 11999 1 0 18666 2025-03-26 02:48:41.033 2025-03-26 02:48:41.033 443351 12261 1 0 18667 2025-03-26 04:07:32.292 2025-03-26 04:07:32.292 443353 2204 1 0 18668 2025-03-26 04:07:32.292 2025-03-26 04:07:32.292 443353 9169 8 0 18669 2025-03-26 03:47:24.77 2025-03-26 03:47:24.77 443353 11523 45 0 18670 2025-03-26 04:07:30.408 2025-03-26 04:07:30.408 443353 13365 1 0 18671 2025-03-26 03:47:24.77 2025-03-26 03:47:24.77 443353 20755 5 0 18672 2025-03-26 04:07:30.408 2025-03-26 04:07:30.408 443353 20979 0 0 18673 2025-03-26 02:50:49.837 2025-03-26 02:50:49.837 443354 656 1 0 18674 2025-03-26 02:51:59.449 2025-03-26 02:51:59.449 443356 1012 1 0 18675 2025-03-26 04:26:45.243 2025-03-26 04:26:45.243 443357 2735 1 0 18676 2025-03-26 04:26:45.243 2025-03-26 04:26:45.243 443357 5961 0 0 18677 2025-03-26 03:55:11.011 2025-03-26 03:55:11.011 443358 18743 19 0 18678 2025-03-26 03:55:11.011 2025-03-26 03:55:11.011 443358 21424 2 0 18679 2025-03-26 02:59:22.974 2025-03-26 02:59:22.974 443361 10493 1 0 18680 2025-03-26 03:17:55.732 2025-03-26 03:17:55.732 443362 654 6 0 18681 2025-03-26 03:17:55.732 2025-03-26 03:17:55.732 443362 19471 51 0 18682 2025-03-26 03:07:14.612 2025-03-26 03:07:14.612 443363 17714 2 0 18683 2025-03-26 03:07:14.612 2025-03-26 03:07:14.612 443363 18601 0 0 18684 2025-03-26 03:03:57.288 2025-03-26 03:03:57.288 443363 20614 10 0 18685 2025-03-26 03:04:15.803 2025-03-26 03:04:15.803 443364 7916 100 0 18686 2025-03-26 04:38:38.226 2025-03-26 04:38:38.226 443364 9992 1 0 18687 2025-03-26 04:38:38.226 2025-03-26 04:38:38.226 443364 13097 0 0 18688 2025-03-26 04:38:38.526 2025-03-26 04:38:38.526 443364 20680 0 0 18689 2025-03-26 04:38:38.526 2025-03-26 04:38:38.526 443364 21523 1 0 18690 2025-03-26 03:12:33.548 2025-03-26 03:12:33.548 443365 2232 9 0 18691 2025-03-26 03:12:33.548 2025-03-26 03:12:33.548 443365 15045 1 0 18692 2025-03-26 03:07:16.575 2025-03-26 03:07:16.575 443366 8080 1 0 18693 2025-03-26 03:10:30.396 2025-03-26 03:10:30.396 443367 1495 210 0 18694 2025-03-26 04:02:01.557 2025-03-26 04:02:01.557 443367 18351 2 0 18695 2025-03-26 04:02:01.557 2025-03-26 04:02:01.557 443367 21518 19 0 18696 2025-03-26 03:12:15.429 2025-03-26 03:12:15.429 443368 1145 1 0 18697 2025-03-26 03:12:15.429 2025-03-26 03:12:15.429 443368 20245 0 0 18698 2025-03-26 03:12:56.487 2025-03-26 03:12:56.487 443370 2709 1 0 18699 2025-03-26 03:14:44.616 2025-03-26 03:14:44.616 443371 636 1 0 18700 2025-03-26 03:16:09.421 2025-03-26 03:16:09.421 443371 1007 2 0 18701 2025-03-26 03:15:01.781 2025-03-26 03:15:01.781 443371 4259 0 0 18702 2025-03-26 03:16:09.421 2025-03-26 03:16:09.421 443371 16912 19 0 18703 2025-03-26 06:33:23.028 2025-03-26 06:33:23.028 443371 17082 19 0 18704 2025-03-26 06:33:23.028 2025-03-26 06:33:23.028 443371 21631 2 0 18705 2025-03-26 05:39:25.256 2025-03-26 05:39:25.828 443372 681 139 0 18706 2025-03-26 06:04:57.12 2025-03-26 06:04:57.12 443372 739 9 0 18707 2025-03-26 04:21:51.625 2025-03-26 04:21:51.625 443372 768 2 0 18708 2025-03-26 03:34:05.14 2025-03-26 03:34:05.14 443372 811 19 0 18709 2025-03-26 06:41:36.69 2025-03-26 06:41:36.69 443372 880 19 0 18710 2025-03-26 03:14:50.604 2025-03-26 03:14:50.604 443372 963 100 0 18711 2025-03-26 05:39:26.63 2025-03-26 05:39:26.63 443372 1006 8 0 18712 2025-03-26 05:39:26.411 2025-03-26 05:39:26.411 443372 1120 8 0 18713 2025-03-26 05:39:26.312 2025-03-26 05:39:26.312 443372 1471 69 0 18714 2025-03-26 05:39:25.379 2025-03-26 05:39:25.379 443372 1472 69 0 18715 2025-03-26 05:39:25.03 2025-03-26 05:39:25.03 443372 1729 15 0 18716 2025-03-26 05:39:26.798 2025-03-26 05:39:26.798 443372 2010 8 0 18717 2025-03-26 05:39:25.03 2025-03-26 05:39:25.03 443372 2016 139 0 18718 2025-03-26 05:39:25.124 2025-03-26 05:39:25.124 443372 2065 8 0 18719 2025-03-26 03:16:54.111 2025-03-26 03:16:54.111 443372 2640 29 0 18720 2025-03-26 06:04:56.273 2025-03-26 06:04:56.273 443372 2724 1 0 18721 2025-03-26 03:16:54.111 2025-03-26 03:16:54.111 443372 2832 3 0 18722 2025-03-26 03:34:05.14 2025-03-26 03:34:05.14 443372 3686 2 0 18723 2025-03-26 05:39:25.583 2025-03-26 05:39:25.583 443372 4173 8 0 18724 2025-03-26 05:39:26.798 2025-03-26 05:39:26.798 443372 4225 69 0 18725 2025-03-26 05:39:25.583 2025-03-26 05:39:25.583 443372 4259 69 0 18726 2025-03-26 03:20:18.904 2025-03-26 03:20:18.904 443372 4313 9 0 18727 2025-03-26 03:20:18.904 2025-03-26 03:20:18.904 443372 4633 1 0 18728 2025-03-26 05:39:25.748 2025-03-26 05:39:25.748 443372 4958 69 0 18729 2025-03-26 06:43:25.134 2025-03-26 06:43:25.134 443372 5293 13 0 18730 2025-03-26 05:39:26.63 2025-03-26 05:39:26.63 443372 6191 69 0 18731 2025-03-26 04:09:53.975 2025-03-26 04:09:53.975 443372 7746 19 0 18732 2025-03-26 05:39:25.748 2025-03-26 05:39:25.748 443372 8506 8 0 18733 2025-03-26 05:39:24.684 2025-03-26 05:39:24.684 443372 9332 8 0 18734 2025-03-26 05:39:25.457 2025-03-26 05:39:25.457 443372 9906 69 0 18735 2025-03-26 05:39:25.929 2025-03-26 05:39:25.929 443372 9921 8 0 18736 2025-03-26 05:39:24.809 2025-03-26 05:39:24.809 443372 11073 8 0 18737 2025-03-26 05:39:26.411 2025-03-26 05:39:26.411 443372 11515 69 0 18738 2025-03-26 05:39:24.684 2025-03-26 05:39:24.684 443372 13076 69 0 18739 2025-03-26 06:43:25.134 2025-03-26 06:43:25.134 443372 13217 1 0 18740 2025-03-26 05:39:25.124 2025-03-26 05:39:25.124 443372 15890 69 0 18741 2025-03-26 06:15:49.578 2025-03-26 06:15:49.578 443372 16670 30 0 18742 2025-03-26 06:04:55.155 2025-03-26 06:04:55.155 443372 16717 0 0 18743 2025-03-26 06:04:57.12 2025-03-26 06:04:57.12 443372 16724 81 0 18744 2025-03-26 05:38:08.172 2025-03-26 05:38:08.172 443372 16808 19 0 18745 2025-03-26 05:39:25.457 2025-03-26 05:39:25.457 443372 17183 8 0 18746 2025-03-26 05:39:24.809 2025-03-26 05:39:24.809 443372 17638 69 0 18747 2025-03-26 05:39:26.312 2025-03-26 05:39:26.312 443372 18393 8 0 18748 2025-03-26 06:04:56.273 2025-03-26 06:04:56.273 443372 18731 8 0 18749 2025-03-26 04:09:53.975 2025-03-26 04:09:53.975 443372 19581 2 0 18750 2025-03-26 05:39:25.828 2025-03-26 05:39:25.828 443372 19813 8 0 18751 2025-03-26 05:39:26.512 2025-03-26 05:39:26.512 443372 19821 69 0 18752 2025-03-26 05:39:25.379 2025-03-26 05:39:25.379 443372 20023 8 0 18753 2025-03-26 05:38:08.172 2025-03-26 06:15:49.578 443372 20433 13 0 18754 2025-03-26 05:39:25.256 2025-03-26 05:39:25.256 443372 20599 8 0 18755 2025-03-26 05:39:26.245 2025-03-26 05:39:26.245 443372 20768 69 0 18756 2025-03-26 05:39:25.929 2025-03-26 05:39:25.929 443372 20799 69 0 18757 2025-03-26 06:04:55.155 2025-03-26 06:04:55.155 443372 20972 1 0 18758 2025-03-26 04:21:51.625 2025-03-26 04:21:51.625 443372 20973 19 0 18759 2025-03-26 05:39:26.512 2025-03-26 05:39:26.512 443372 21036 8 0 18760 2025-03-26 06:41:36.69 2025-03-26 06:41:36.69 443372 21639 2 0 18761 2025-03-26 03:19:49.94 2025-03-26 03:19:49.94 443373 1261 1 0 18762 2025-03-26 03:19:49.94 2025-03-26 03:19:49.94 443373 14381 0 0 18763 2025-03-26 06:33:58.217 2025-03-26 06:33:58.217 443374 2722 2 0 18764 2025-03-26 06:33:58.217 2025-03-26 06:33:58.217 443374 10283 19 0 18765 2025-03-26 03:28:44.517 2025-03-26 03:28:44.517 443374 12819 1 0 18766 2025-03-26 03:28:44.517 2025-03-26 03:28:44.517 443374 16193 9 0 18767 2025-03-26 03:21:42.9 2025-03-26 03:21:42.9 443376 13076 5 0 18768 2025-03-26 03:54:22.576 2025-03-26 03:54:22.576 443378 10352 2 0 18769 2025-03-26 03:54:22.576 2025-03-26 03:54:22.576 443378 12422 19 0 18770 2025-03-26 05:44:33.189 2025-03-26 05:44:33.189 443379 699 3 0 18771 2025-03-26 05:44:33.189 2025-03-26 05:44:33.189 443379 13365 23 0 18772 2025-03-26 04:13:34.97 2025-03-26 04:13:34.97 443379 18269 19 0 18773 2025-03-26 04:13:34.97 2025-03-26 04:13:34.97 443379 20254 2 0 18774 2025-03-26 06:33:18.79 2025-03-26 06:33:18.79 443380 2735 2 0 18775 2025-03-26 05:58:14.621 2025-03-26 05:58:14.621 443380 4064 6 0 18776 2025-03-26 06:33:18.79 2025-03-26 06:33:18.79 443380 9920 19 0 18777 2025-03-26 05:40:27.819 2025-03-26 05:40:27.819 443380 11164 19 0 18778 2025-03-26 03:28:29.271 2025-03-26 03:28:29.271 443380 12097 5 0 18779 2025-03-26 05:40:27.819 2025-03-26 05:40:27.819 443380 15544 2 0 18780 2025-03-26 03:26:11.504 2025-03-26 03:26:11.504 443380 19980 1 0 18781 2025-03-26 05:58:14.621 2025-03-26 05:58:14.621 443380 20939 51 0 18782 2025-03-26 03:28:29.271 2025-03-26 03:28:29.271 443380 21296 45 0 18783 2025-03-26 03:28:30.305 2025-03-26 03:28:30.305 443381 4654 5 0 18784 2025-03-26 04:22:17.137 2025-03-26 04:22:17.137 443381 8945 14 0 18785 2025-03-26 04:22:17.137 2025-03-26 04:22:17.137 443381 9347 2 0 18786 2025-03-26 06:33:21.36 2025-03-26 06:33:21.36 443381 10849 19 0 18787 2025-03-26 06:33:21.36 2025-03-26 06:33:21.36 443381 17984 2 0 18788 2025-03-26 03:27:31.309 2025-03-26 03:27:31.309 443381 20102 1 0 18789 2025-03-26 03:28:30.305 2025-03-26 03:28:30.305 443381 20904 45 0 18790 2025-03-26 05:04:07.13 2025-03-26 05:04:07.13 443382 2224 23 0 18791 2025-03-26 03:27:37.626 2025-03-26 03:27:37.626 443382 9921 1 0 18792 2025-03-26 05:04:07.13 2025-03-26 05:04:07.13 443382 20381 3 0 18793 2025-03-26 03:28:41.299 2025-03-26 03:28:41.299 443383 12049 1 0 18794 2025-03-26 03:34:13.885 2025-03-26 03:34:13.885 443384 19378 0 0 18795 2025-03-26 03:30:44.316 2025-03-26 03:30:44.316 443384 21369 0 0 18796 2025-03-26 03:30:43.995 2025-03-26 03:30:43.995 443385 6602 90 0 18797 2025-03-26 03:32:43.255 2025-03-26 03:32:43.255 443385 12245 0 0 18798 2025-03-26 03:30:43.995 2025-03-26 03:30:43.995 443385 15544 10 0 18799 2025-03-26 03:32:29.367 2025-03-26 03:32:29.367 443385 17592 0 0 18800 2025-03-26 03:30:44.363 2025-03-26 03:30:44.363 443386 1825 1 0 18801 2025-03-26 03:33:02.868 2025-03-26 03:33:02.868 443386 15139 6 0 18802 2025-03-26 03:33:02.868 2025-03-26 03:33:02.868 443386 18528 51 0 18803 2025-03-26 03:39:49.043 2025-03-26 03:39:49.043 443386 21555 0 0 18804 2025-03-26 03:38:32.297 2025-03-26 03:38:32.297 443387 859 1 0 18805 2025-03-26 03:31:27.59 2025-03-26 03:31:27.59 443387 2402 1 0 18806 2025-03-26 06:37:11.098 2025-03-26 06:37:11.098 443387 6382 19 0 18807 2025-03-26 03:38:32.297 2025-03-26 03:38:32.297 443387 9705 10 0 18808 2025-03-26 06:37:11.098 2025-03-26 06:37:11.098 443387 20099 2 0 18809 2025-03-26 04:36:35.798 2025-03-26 04:36:35.798 443388 951 1 0 18810 2025-03-26 04:36:35.798 2025-03-26 04:36:35.798 443388 13903 6 0 18811 2025-03-26 03:31:36.639 2025-03-26 03:31:36.639 443388 21803 7 0 18812 2025-03-26 03:31:55.191 2025-03-26 03:31:55.191 443389 9355 1 0 18813 2025-03-26 06:41:53.894 2025-03-26 06:41:53.894 443390 622 2 0 18814 2025-03-26 03:33:58.113 2025-03-26 03:33:58.113 443390 641 0 0 18815 2025-03-26 03:38:28.675 2025-03-26 03:38:28.675 443390 831 51 0 18816 2025-03-26 03:38:28.675 2025-03-26 03:38:28.675 443390 10016 6 0 18817 2025-03-26 06:41:53.894 2025-03-26 06:41:53.894 443390 11527 19 0 18818 2025-03-26 06:12:29.41 2025-03-26 06:12:29.41 443390 14260 8 0 18819 2025-03-26 06:12:29.41 2025-03-26 06:12:29.41 443390 18731 69 0 18820 2025-03-26 03:34:28.594 2025-03-26 03:34:28.594 443392 5728 1 0 18821 2025-03-26 04:34:23.96 2025-03-26 04:34:23.96 443393 826 51 0 18822 2025-03-26 04:30:56.988 2025-03-26 04:30:56.988 443393 828 9 0 18823 2025-03-26 03:34:37.515 2025-03-26 03:34:37.515 443393 2652 10 0 18824 2025-03-26 04:30:56.988 2025-03-26 04:30:56.988 443393 2952 1 0 18825 2025-03-26 04:34:23.96 2025-03-26 04:34:23.96 443393 6419 6 0 18826 2025-03-26 04:06:25.131 2025-03-26 04:06:25.131 443395 1881 6 0 18827 2025-03-26 04:06:25.131 2025-03-26 04:06:25.131 443395 14791 51 0 18828 2025-03-26 03:37:40.884 2025-03-26 03:37:40.884 443395 16830 1 0 18829 2025-03-26 03:38:30.534 2025-03-26 03:38:30.534 443396 721 1 0 18830 2025-03-26 03:38:30.534 2025-03-26 03:38:30.534 443396 1469 9 0 18831 2025-03-26 05:04:29.765 2025-03-26 05:04:29.765 443396 2577 3 0 18832 2025-03-26 05:36:02.882 2025-03-26 05:36:02.882 443396 5520 90 0 18833 2025-03-26 06:27:50.934 2025-03-26 06:27:50.934 443396 9307 31 0 18834 2025-03-26 03:38:14.368 2025-03-26 03:38:14.368 443396 9347 10 0 18835 2025-03-26 05:57:08.03 2025-03-26 05:57:08.03 443396 9820 5 0 18836 2025-03-26 05:04:30.391 2025-03-26 05:04:30.391 443396 11288 251 0 18837 2025-03-26 05:36:02.882 2025-03-26 05:36:02.882 443396 12779 10 0 18838 2025-03-26 05:04:29.765 2025-03-26 05:04:29.765 443396 13566 28 0 18839 2025-03-26 06:27:50.934 2025-03-26 06:27:50.934 443396 15662 3 0 18840 2025-03-26 05:57:08.03 2025-03-26 05:57:08.03 443396 18494 45 0 18841 2025-03-26 06:01:04.271 2025-03-26 06:01:04.271 443396 19016 19 0 18842 2025-03-26 06:01:04.271 2025-03-26 06:01:04.271 443396 19637 2 0 18843 2025-03-26 05:04:30.391 2025-03-26 05:04:30.391 443396 21398 28 0 18844 2025-03-26 03:38:54.84 2025-03-26 03:38:54.84 443397 925 2 0 18845 2025-03-26 03:38:54.84 2025-03-26 03:38:54.84 443397 8269 19 0 18846 2025-03-26 03:38:22.399 2025-03-26 03:38:22.399 443397 17522 1 0 18847 2025-03-26 03:40:43.553 2025-03-26 03:40:43.553 443398 725 0 0 18848 2025-03-26 06:37:09.096 2025-03-26 06:37:09.096 443398 2293 2 0 18849 2025-03-26 03:40:20.368 2025-03-26 03:40:20.368 443398 7847 19 0 18850 2025-03-26 06:37:09.096 2025-03-26 06:37:09.096 443398 8242 19 0 18851 2025-03-26 03:40:20.368 2025-03-26 03:40:20.368 443398 19930 2 0 18852 2025-03-26 03:40:04.64 2025-03-26 03:40:04.64 443398 20841 0 0 18853 2025-03-26 03:38:24.936 2025-03-26 03:38:24.936 443398 21506 1 0 18854 2025-03-26 04:14:58.39 2025-03-26 04:14:58.39 443399 634 1 0 18855 2025-03-26 05:28:49.231 2025-03-26 05:28:49.231 443399 642 2 0 18856 2025-03-26 04:20:32.155 2025-03-26 04:20:32.155 443399 712 1 0 18857 2025-03-26 05:06:07.805 2025-03-26 05:06:07.805 443399 760 3 0 18858 2025-03-26 04:20:32.155 2025-03-26 04:20:32.155 443399 761 7 0 18859 2025-03-26 03:46:19.822 2025-03-26 03:46:19.822 443399 999 51 0 18860 2025-03-26 04:00:20.15 2025-03-26 04:00:20.15 443399 1092 90 0 18861 2025-03-26 05:54:56.004 2025-03-26 05:54:56.004 443399 1631 9 0 18862 2025-03-26 05:38:05.295 2025-03-26 05:38:05.295 443399 1705 2 0 18863 2025-03-26 03:46:19.822 2025-03-26 03:46:19.822 443399 1720 6 0 18864 2025-03-26 05:38:05.295 2025-03-26 05:38:05.295 443399 2620 19 0 18865 2025-03-26 04:07:17.521 2025-03-26 04:07:17.521 443399 6148 45 0 18866 2025-03-26 05:06:08.684 2025-03-26 05:06:08.684 443399 7587 28 0 18867 2025-03-26 03:51:16.016 2025-03-26 03:51:16.016 443399 7992 10 0 18868 2025-03-26 04:00:20.15 2025-03-26 04:00:20.15 443399 9833 10 0 18869 2025-03-26 05:06:07.805 2025-03-26 05:06:07.805 443399 10433 28 0 18870 2025-03-26 03:51:16.016 2025-03-26 03:51:16.016 443399 10493 90 0 18871 2025-03-26 05:54:56.004 2025-03-26 05:54:56.004 443399 12821 1 0 18872 2025-03-26 04:14:58.39 2025-03-26 04:14:58.39 443399 14271 9 0 18873 2025-03-26 05:28:49.231 2025-03-26 05:28:49.231 443399 16789 19 0 18874 2025-03-26 05:06:08.684 2025-03-26 05:06:08.684 443399 17148 251 0 18875 2025-03-26 05:12:22.408 2025-03-26 05:12:22.408 443399 19303 19 0 18876 2025-03-26 04:07:17.521 2025-03-26 04:07:17.521 443399 21159 5 0 18877 2025-03-26 05:12:22.408 2025-03-26 05:12:22.408 443399 21794 2 0 18878 2025-03-26 04:06:27.513 2025-03-26 04:06:27.513 443400 9183 51 0 18879 2025-03-26 04:06:27.513 2025-03-26 04:06:27.513 443400 10934 6 0 18880 2025-03-26 03:39:24.161 2025-03-26 03:39:24.161 443400 21603 1 0 18881 2025-03-26 03:41:40.554 2025-03-26 03:41:40.554 443401 15474 1 0 18882 2025-03-26 03:46:16.755 2025-03-26 03:46:16.755 443403 4973 1 0 18883 2025-03-26 05:50:41.384 2025-03-26 05:50:41.384 443404 13622 0 0 18884 2025-03-26 05:50:41.384 2025-03-26 05:50:41.384 443404 21014 3 0 18885 2025-03-26 03:48:24.363 2025-03-26 03:48:24.363 443405 15488 1 0 18886 2025-03-26 03:48:41.672 2025-03-26 03:48:41.672 443406 1638 1 0 18887 2025-03-26 03:50:56.688 2025-03-26 03:50:56.688 443406 11776 9 0 18888 2025-03-26 03:50:56.688 2025-03-26 03:50:56.688 443406 14169 1 0 18889 2025-03-26 03:49:11.032 2025-03-26 03:49:11.032 443407 1298 1 0 18890 2025-03-26 03:50:10.884 2025-03-26 03:50:10.884 443408 18017 10 0 18891 2025-03-26 03:51:55.15 2025-03-26 03:51:55.15 443409 1705 1 0 18892 2025-03-26 04:09:16.312 2025-03-26 04:09:16.312 443410 2722 9 0 18893 2025-03-26 04:09:16.312 2025-03-26 04:09:16.312 443410 11992 1 0 18894 2025-03-26 03:53:17.013 2025-03-26 03:53:17.013 443410 16847 1 0 18895 2025-03-26 03:55:08.267 2025-03-26 03:55:08.267 443411 2232 0 0 18896 2025-03-26 03:54:47.585 2025-03-26 03:54:47.585 443412 7682 21 0 18897 2025-03-26 03:57:58.423 2025-03-26 03:57:58.423 443412 8245 14 0 18898 2025-03-26 03:57:58.423 2025-03-26 03:57:58.423 443412 16769 2 0 18899 2025-03-26 04:08:30.825 2025-03-26 04:08:30.825 443413 4167 1 0 18900 2025-03-26 04:08:30.825 2025-03-26 04:08:30.825 443413 18528 9 0 18901 2025-03-26 04:08:27.84 2025-03-26 04:08:27.84 443414 16177 9 0 18902 2025-03-26 04:08:27.84 2025-03-26 04:08:27.84 443414 19637 1 0 18903 2025-03-26 03:56:50.536 2025-03-26 03:56:50.536 443415 20602 1 0 18904 2025-03-26 03:58:15.346 2025-03-26 03:58:15.346 443416 19857 1 0 18905 2025-03-26 03:58:40.753 2025-03-26 03:58:40.753 443417 1833 1 0 18906 2025-03-26 03:59:54.602 2025-03-26 03:59:54.602 443418 18321 1 0 18907 2025-03-26 04:12:49.278 2025-03-26 04:12:49.278 443419 2593 14 0 18908 2025-03-26 04:01:56.836 2025-03-26 04:01:56.836 443419 9307 1 0 18909 2025-03-26 04:12:49.278 2025-03-26 04:12:49.278 443419 19292 2 0 18910 2025-03-26 04:02:09.678 2025-03-26 04:02:09.678 443420 8985 1 0 18911 2025-03-26 04:03:33.414 2025-03-26 04:03:33.414 443421 2233 1 0 18912 2025-03-26 05:16:53.273 2025-03-26 05:16:53.273 443422 795 9 0 18913 2025-03-26 04:21:56.868 2025-03-26 04:21:56.868 443422 4602 1 0 18914 2025-03-26 04:03:41.51 2025-03-26 04:03:41.51 443422 7395 1 0 18915 2025-03-26 04:21:56.868 2025-03-26 04:21:56.868 443422 13763 0 0 18916 2025-03-26 05:16:53.273 2025-03-26 05:16:53.273 443422 16353 1 0 18917 2025-03-26 05:46:12.531 2025-03-26 05:46:12.531 443423 769 1 0 18918 2025-03-26 04:18:43.856 2025-03-26 04:18:43.856 443423 19992 19 0 18919 2025-03-26 04:18:43.856 2025-03-26 04:18:43.856 443423 20646 2 0 18920 2025-03-26 05:46:12.531 2025-03-26 05:46:12.531 443423 21418 10 0 18921 2025-03-26 04:06:30.164 2025-03-26 04:06:30.164 443424 21526 1 0 18922 2025-03-26 05:17:08.794 2025-03-26 05:17:08.794 443425 1881 1 0 18923 2025-03-26 05:17:08.794 2025-03-26 05:17:08.794 443425 9920 0 0 18924 2025-03-26 04:07:14.504 2025-03-26 04:07:14.504 443425 17226 1 0 18925 2025-03-26 04:07:21.9 2025-03-26 04:07:21.9 443426 959 1 0 18926 2025-03-26 06:12:36.335 2025-03-26 06:12:36.335 443427 714 69 0 18927 2025-03-26 06:41:59.006 2025-03-26 06:41:59.006 443427 974 2 0 18928 2025-03-26 04:13:29.577 2025-03-26 04:13:29.577 443427 2111 9 0 18929 2025-03-26 04:07:59.325 2025-03-26 04:07:59.325 443427 2204 19 0 18930 2025-03-26 04:13:29.577 2025-03-26 04:13:29.577 443427 2639 1 0 18931 2025-03-26 06:41:59.006 2025-03-26 06:41:59.006 443427 6717 19 0 18932 2025-03-26 04:07:59.325 2025-03-26 04:07:59.325 443427 10433 2 0 18933 2025-03-26 06:12:36.335 2025-03-26 06:12:36.335 443427 19417 8 0 18934 2025-03-26 04:07:35.033 2025-03-26 04:07:35.033 443427 20433 1 0 18935 2025-03-26 04:08:16.416 2025-03-26 04:08:16.416 443428 21036 1 0 18936 2025-03-26 04:08:25.701 2025-03-26 04:08:25.701 443429 673 1 0 18937 2025-03-26 06:41:59.767 2025-03-26 06:41:59.767 443429 8080 19 0 18938 2025-03-26 04:09:23.406 2025-03-26 04:09:23.406 443429 9336 6 0 18939 2025-03-26 06:41:59.767 2025-03-26 06:41:59.767 443429 11498 2 0 18940 2025-03-26 04:09:23.406 2025-03-26 04:09:23.406 443429 13133 51 0 18941 2025-03-26 04:10:48.171 2025-03-26 04:10:48.171 443430 16230 19 0 18942 2025-03-26 04:10:48.171 2025-03-26 04:10:48.171 443430 17690 2 0 18943 2025-03-26 04:09:47.144 2025-03-26 04:09:47.144 443430 21522 1 0 18944 2025-03-26 04:10:18.321 2025-03-26 04:10:18.321 443431 768 100 0 18945 2025-03-26 06:38:24.752 2025-03-26 06:38:24.752 443431 2361 19 0 18946 2025-03-26 04:20:07.869 2025-03-26 04:20:07.869 443431 2437 1 0 18947 2025-03-26 04:30:07.068 2025-03-26 04:30:07.068 443431 4763 9 0 18948 2025-03-26 04:20:07.869 2025-03-26 04:20:07.869 443431 9262 7 0 18949 2025-03-26 04:30:07.068 2025-03-26 04:30:07.068 443431 14376 1 0 18950 2025-03-26 04:29:22.505 2025-03-26 04:29:22.505 443431 17221 1 0 18951 2025-03-26 06:38:24.752 2025-03-26 06:38:24.752 443431 17533 2 0 18952 2025-03-26 04:29:22.505 2025-03-26 04:29:22.505 443431 18232 9 0 18953 2025-03-26 04:11:27.677 2025-03-26 04:11:27.677 443432 658 0 0 18954 2025-03-26 04:12:53.842 2025-03-26 04:12:53.842 443432 687 0 0 18955 2025-03-26 04:10:31.721 2025-03-26 04:10:31.721 443432 721 1 0 18956 2025-03-26 05:45:38.808 2025-03-26 05:45:38.808 443432 746 1 0 18957 2025-03-26 05:45:38.808 2025-03-26 05:45:38.808 443432 6471 10 0 18958 2025-03-26 04:12:00.285 2025-03-26 04:12:00.285 443432 20973 2 0 18959 2025-03-26 04:12:00.285 2025-03-26 04:12:00.285 443432 21131 19 0 18960 2025-03-26 04:11:25.574 2025-03-26 04:11:25.574 443433 14370 1 0 18961 2025-03-26 06:42:08.78 2025-03-26 06:42:08.78 443434 2013 19 0 18962 2025-03-26 06:42:08.78 2025-03-26 06:42:08.78 443434 3518 2 0 18963 2025-03-26 04:13:28.482 2025-03-26 04:13:28.482 443434 11516 9 0 18964 2025-03-26 04:13:12 2025-03-26 04:13:12 443434 12769 2 0 18965 2025-03-26 04:13:12 2025-03-26 04:13:12 443434 16424 19 0 18966 2025-03-26 04:12:31.873 2025-03-26 04:12:31.873 443434 16447 1 0 18967 2025-03-26 04:13:28.482 2025-03-26 04:13:28.482 443434 18673 1 0 18968 2025-03-26 04:12:41.601 2025-03-26 04:12:41.601 443435 15526 1 0 18969 2025-03-26 04:13:16.19 2025-03-26 04:13:16.19 443436 630 1 0 18970 2025-03-26 05:29:25.279 2025-03-26 05:29:25.279 443436 660 1 0 18971 2025-03-26 05:45:47.265 2025-03-26 05:45:47.265 443436 16406 1 0 18972 2025-03-26 05:29:25.279 2025-03-26 05:29:25.279 443436 19117 9 0 18973 2025-03-26 05:45:47.265 2025-03-26 05:45:47.265 443436 20881 10 0 18974 2025-03-26 04:13:34.904 2025-03-26 04:13:34.904 443437 16808 1 0 18975 2025-03-26 05:37:27.839 2025-03-26 05:37:27.839 443438 679 19 0 18976 2025-03-26 04:14:47.714 2025-03-26 04:14:47.714 443438 1718 15 0 18977 2025-03-26 04:17:55.258 2025-03-26 04:17:55.258 443438 17116 2 0 18978 2025-03-26 04:17:55.258 2025-03-26 04:17:55.258 443438 20734 14 0 18979 2025-03-26 05:37:27.839 2025-03-26 05:37:27.839 443438 21271 2 0 18980 2025-03-26 04:15:14.993 2025-03-26 04:15:14.993 443439 21263 1 0 18981 2025-03-26 04:17:27.193 2025-03-26 04:17:27.193 443440 9992 51 0 18982 2025-03-26 06:10:25.863 2025-03-26 06:10:25.863 443440 14818 3 0 18983 2025-03-26 06:10:25.863 2025-03-26 06:10:25.863 443440 16250 30 0 18984 2025-03-26 04:17:27.193 2025-03-26 04:17:27.193 443440 17172 6 0 18985 2025-03-26 04:16:29.197 2025-03-26 04:16:29.197 443440 21058 1 0 18986 2025-03-26 04:16:55.489 2025-03-26 04:16:55.489 443441 21406 1 0 18987 2025-03-26 04:17:44.202 2025-03-26 04:17:44.202 443442 14651 1 0 18988 2025-03-26 04:17:44.946 2025-03-26 04:17:44.946 443443 8544 1 0 18989 2025-03-26 04:18:50.583 2025-03-26 04:18:50.583 443444 20891 1 0 18990 2025-03-26 04:24:47.06 2025-03-26 04:24:47.06 443445 681 0 0 18991 2025-03-26 04:19:15.887 2025-03-26 04:19:15.887 443445 19484 1 0 18992 2025-03-26 04:20:14.439 2025-03-26 04:20:14.439 443446 2206 1 0 18993 2025-03-26 04:20:15.988 2025-03-26 04:20:15.988 443447 644 1 0 18994 2025-03-26 04:20:29.725 2025-03-26 04:20:29.725 443448 10934 1 0 18995 2025-03-26 04:20:54.192 2025-03-26 04:20:54.192 443449 8570 1 0 18996 2025-03-26 04:21:36.2 2025-03-26 04:21:36.2 443450 10934 10 0 18997 2025-03-26 05:58:12.788 2025-03-26 05:58:12.788 443451 11395 51 0 18998 2025-03-26 05:58:12.788 2025-03-26 05:58:12.788 443451 18231 6 0 18999 2025-03-26 06:16:44.456 2025-03-26 06:16:44.456 443451 19484 5 0 19000 2025-03-26 04:22:29.283 2025-03-26 04:22:29.283 443451 20963 1 0 19001 2025-03-26 06:16:44.456 2025-03-26 06:16:44.456 443451 21540 45 0 19002 2025-03-26 06:33:21.633 2025-03-26 06:33:21.633 443452 1272 2 0 19003 2025-03-26 04:32:39.526 2025-03-26 04:32:39.526 443452 5661 9 0 19004 2025-03-26 06:33:21.633 2025-03-26 06:33:21.633 443452 7376 19 0 19005 2025-03-26 04:32:39.526 2025-03-26 04:32:39.526 443452 9351 1 0 19006 2025-03-26 06:16:44.736 2025-03-26 06:16:44.736 443452 16387 5 0 19007 2025-03-26 06:16:44.736 2025-03-26 06:16:44.736 443452 16753 45 0 19008 2025-03-26 04:32:39.861 2025-03-26 04:32:39.861 443452 16834 1 0 19009 2025-03-26 04:23:08.727 2025-03-26 04:23:08.727 443452 17171 1 0 19010 2025-03-26 04:32:39.861 2025-03-26 04:32:39.861 443452 21248 9 0 19011 2025-03-26 06:32:59.173 2025-03-26 06:32:59.173 443453 673 9 0 19012 2025-03-26 06:32:59.702 2025-03-26 06:32:59.702 443453 8173 1 0 19013 2025-03-26 06:33:00.679 2025-03-26 06:33:00.679 443453 9262 9 0 19014 2025-03-26 06:32:59.702 2025-03-26 06:32:59.702 443453 9329 9 0 19015 2025-03-26 06:33:00.679 2025-03-26 06:33:00.679 443453 11590 1 0 19016 2025-03-26 06:32:59.173 2025-03-26 06:32:59.173 443453 13038 1 0 19017 2025-03-26 04:24:17.143 2025-03-26 04:24:17.143 443453 17535 10 0 19018 2025-03-26 06:33:00.157 2025-03-26 06:33:00.157 443453 19292 1 0 19019 2025-03-26 06:33:00.157 2025-03-26 06:33:00.157 443453 21494 9 0 19020 2025-03-26 05:22:50.016 2025-03-26 05:22:50.016 443454 2335 1 0 19021 2025-03-26 05:23:40.574 2025-03-26 05:23:40.574 443454 7979 0 10 19022 2025-03-26 04:24:34.252 2025-03-26 04:24:34.252 443454 20563 1 0 19023 2025-03-26 05:22:50.016 2025-03-26 05:22:50.016 443454 21485 9 0 19024 2025-03-26 04:24:34.746 2025-03-26 04:24:34.746 443455 11328 1 0 19025 2025-03-26 04:28:54.906 2025-03-26 04:28:54.906 443455 17710 10 0 19026 2025-03-26 04:29:07.843 2025-03-26 04:29:07.843 443455 18423 0 0 19027 2025-03-26 04:28:54.906 2025-03-26 04:28:54.906 443455 21202 90 0 19028 2025-03-26 04:25:22.648 2025-03-26 04:25:22.648 443456 1615 1 0 19029 2025-03-26 04:53:04.476 2025-03-26 04:53:04.476 443457 1298 19 0 19030 2025-03-26 04:27:19.91 2025-03-26 04:27:19.91 443457 20310 1 0 19031 2025-03-26 04:53:04.476 2025-03-26 04:53:04.476 443457 20674 2 0 19032 2025-03-26 04:28:19.998 2025-03-26 04:28:19.998 443458 11263 1 0 19033 2025-03-26 04:40:45.185 2025-03-26 04:40:45.185 443458 11829 2 0 19034 2025-03-26 04:40:45.185 2025-03-26 04:40:45.185 443458 14705 19 0 19035 2025-03-26 05:16:33.901 2025-03-26 05:16:33.901 443459 1286 9 0 19036 2025-03-26 04:30:25.996 2025-03-26 04:30:25.996 443459 18473 1 0 19037 2025-03-26 05:16:33.901 2025-03-26 05:16:33.901 443459 20713 1 0 19038 2025-03-26 06:16:45.003 2025-03-26 06:16:45.003 443460 797 5 0 19039 2025-03-26 04:43:28.166 2025-03-26 04:43:28.166 443460 1564 3 0 19040 2025-03-26 06:16:45.003 2025-03-26 06:16:45.003 443460 5806 45 0 19041 2025-03-26 04:32:37.297 2025-03-26 04:32:37.297 443460 17710 1 0 19042 2025-03-26 04:43:28.166 2025-03-26 04:43:28.166 443460 21683 29 0 19043 2025-03-26 04:33:22.967 2025-03-26 04:33:22.967 443461 1620 1 0 19044 2025-03-26 04:34:38.785 2025-03-26 04:34:38.785 443461 14280 51 0 19045 2025-03-26 04:34:38.785 2025-03-26 04:34:38.785 443461 15337 6 0 19046 2025-03-26 04:35:30.763 2025-03-26 04:35:30.763 443462 12870 9 0 19047 2025-03-26 04:44:16.558 2025-03-26 04:44:16.558 443463 12566 51 0 19048 2025-03-26 05:37:39.856 2025-03-26 05:37:39.856 443463 16177 2 0 19049 2025-03-26 05:37:39.856 2025-03-26 05:37:39.856 443463 18225 19 0 19050 2025-03-26 04:35:38.425 2025-03-26 04:35:38.425 443463 20799 10 0 19051 2025-03-26 04:44:16.558 2025-03-26 04:44:16.558 443463 21334 6 0 19052 2025-03-26 04:36:37.967 2025-03-26 04:36:37.967 443464 19531 1 0 19053 2025-03-26 04:37:41.185 2025-03-26 04:37:41.185 443465 11220 1 0 19054 2025-03-26 05:47:08.481 2025-03-26 05:47:08.481 443465 15588 19 0 19055 2025-03-26 05:47:08.481 2025-03-26 05:47:08.481 443465 16842 2 0 19056 2025-03-26 04:37:43.72 2025-03-26 04:37:43.72 443466 695 1 0 19057 2025-03-26 04:44:12.571 2025-03-26 04:44:12.571 443467 1044 51 0 19058 2025-03-26 05:37:12.536 2025-03-26 05:37:12.536 443467 1429 2 0 19059 2025-03-26 04:44:12.571 2025-03-26 04:44:12.571 443467 1611 6 0 19060 2025-03-26 06:16:45.879 2025-03-26 06:16:45.879 443467 2942 9 0 19061 2025-03-26 04:43:40.756 2025-03-26 04:43:40.756 443467 7659 90 0 19062 2025-03-26 05:46:17.849 2025-03-26 05:46:17.849 443467 7899 69 0 19063 2025-03-26 06:16:48.149 2025-03-26 06:16:48.149 443467 8713 1 0 19064 2025-03-26 06:32:58.63 2025-03-26 06:32:58.63 443467 9537 19 0 19065 2025-03-26 04:45:30.934 2025-03-26 04:45:30.934 443467 10270 2 0 19066 2025-03-26 06:16:47.065 2025-03-26 06:16:47.065 443467 10719 2 0 19067 2025-03-26 04:45:30.934 2025-03-26 04:45:30.934 443467 11423 19 0 19068 2025-03-26 05:46:17.849 2025-03-26 05:46:17.849 443467 12738 8 0 19069 2025-03-26 05:46:16.962 2025-03-26 05:46:16.962 443467 14909 8 0 19070 2025-03-26 04:37:55.648 2025-03-26 04:37:55.648 443467 15617 100 0 19071 2025-03-26 06:18:30.175 2025-03-26 06:18:30.175 443467 15806 2 0 19072 2025-03-26 06:32:58.63 2025-03-26 06:32:58.63 443467 15925 2 0 19073 2025-03-26 05:16:09.069 2025-03-26 05:16:09.069 443467 16424 9 0 19074 2025-03-26 06:16:48.149 2025-03-26 06:16:48.149 443467 16594 9 0 19075 2025-03-26 06:18:30.175 2025-03-26 06:18:30.175 443467 17014 19 0 19076 2025-03-26 05:37:12.536 2025-03-26 05:37:12.536 443467 17321 19 0 19077 2025-03-26 05:16:09.069 2025-03-26 05:16:09.069 443467 20614 1 0 19078 2025-03-26 06:16:45.879 2025-03-26 06:16:45.879 443467 20717 1 0 19079 2025-03-26 05:46:16.962 2025-03-26 05:46:16.962 443467 20826 69 0 19080 2025-03-26 04:43:40.756 2025-03-26 04:43:40.756 443467 21402 10 0 19081 2025-03-26 06:16:47.065 2025-03-26 06:16:47.065 443467 21603 18 0 19082 2025-03-26 04:38:04.973 2025-03-26 04:38:04.973 443468 10016 1 0 19083 2025-03-26 04:38:33.131 2025-03-26 04:38:33.131 443469 13759 1 0 19084 2025-03-26 04:49:21.968 2025-03-26 04:49:21.968 443470 1890 62 0 19085 2025-03-26 04:40:22.755 2025-03-26 04:40:22.755 443470 10433 1 0 19086 2025-03-26 04:49:21.968 2025-03-26 04:49:21.968 443470 21578 7 0 19087 2025-03-26 04:42:06.781 2025-03-26 04:42:06.781 443471 9833 1 0 19088 2025-03-26 04:42:08.447 2025-03-26 04:42:08.447 443472 21349 1 0 19089 2025-03-26 05:10:43.404 2025-03-26 05:10:43.404 443473 3642 3 0 19090 2025-03-26 04:44:41.132 2025-03-26 04:44:41.132 443473 8176 100 0 19091 2025-03-26 04:44:41.132 2025-03-26 04:44:41.132 443473 9476 900 0 19092 2025-03-26 05:58:44.835 2025-03-26 05:58:44.835 443473 9705 57 0 19093 2025-03-26 05:58:44.835 2025-03-26 05:58:44.835 443473 15146 6 0 19094 2025-03-26 05:29:32.789 2025-03-26 05:29:32.789 443473 15521 10 0 19095 2025-03-26 04:42:12.515 2025-03-26 04:42:12.515 443473 16562 1 0 19096 2025-03-26 05:29:32.789 2025-03-26 05:29:32.789 443473 17519 90 0 19097 2025-03-26 05:10:43.404 2025-03-26 05:10:43.404 443473 18528 31 0 19098 2025-03-26 04:45:17.539 2025-03-26 04:45:17.539 443474 20970 1 0 19099 2025-03-26 04:46:25.725 2025-03-26 04:46:25.725 443475 19930 1 0 19100 2025-03-26 04:47:38.282 2025-03-26 04:47:38.282 443476 9200 1 0 19101 2025-03-26 04:52:26.154 2025-03-26 04:52:26.154 443477 678 90 0 19102 2025-03-26 04:47:58.331 2025-03-26 04:47:58.331 443477 6419 1 0 19103 2025-03-26 04:52:38.893 2025-03-26 04:52:38.893 443477 9426 90 0 19104 2025-03-26 04:52:26.154 2025-03-26 04:52:26.154 443477 20479 10 0 19105 2025-03-26 04:52:38.893 2025-03-26 04:52:38.893 443477 21042 10 0 19106 2025-03-26 04:48:25.399 2025-03-26 04:48:25.399 443478 19689 1 0 19107 2025-03-26 04:49:14.293 2025-03-26 04:49:14.293 443479 667 1 0 19108 2025-03-26 04:49:25.1 2025-03-26 04:49:25.1 443480 14959 1 0 19109 2025-03-26 04:50:17.499 2025-03-26 04:50:17.499 443481 19217 1 0 19110 2025-03-26 06:32:10.315 2025-03-26 06:32:10.315 443482 1039 10 0 19111 2025-03-26 04:51:19.323 2025-03-26 04:51:19.323 443482 1567 1 0 19112 2025-03-26 06:32:10.315 2025-03-26 06:32:10.315 443482 2711 90 0 19113 2025-03-26 06:32:08.347 2025-03-26 06:32:08.347 443482 15049 10 0 19114 2025-03-26 06:32:09.721 2025-03-26 06:32:09.721 443482 16336 90 0 19115 2025-03-26 06:32:09.721 2025-03-26 06:32:09.721 443482 19812 10 0 19116 2025-03-26 06:32:08.347 2025-03-26 06:32:08.347 443482 21631 90 0 19117 2025-03-26 06:33:14.397 2025-03-26 06:33:14.397 443483 1082 19 0 19118 2025-03-26 04:51:23.898 2025-03-26 04:51:23.898 443483 1489 1 0 19119 2025-03-26 05:40:04.928 2025-03-26 05:40:04.928 443483 15146 2 0 19120 2025-03-26 06:33:14.397 2025-03-26 06:33:14.397 443483 15337 2 0 19121 2025-03-26 05:40:04.928 2025-03-26 05:40:04.928 443483 16059 19 0 19122 2025-03-26 06:28:05.67 2025-03-26 06:28:05.67 443484 712 9 0 19123 2025-03-26 06:28:07.676 2025-03-26 06:28:07.676 443484 1012 9 0 19124 2025-03-26 06:28:06.276 2025-03-26 06:28:06.276 443484 1286 9 0 19125 2025-03-26 06:28:05.374 2025-03-26 06:28:05.374 443484 1825 9 0 19126 2025-03-26 06:28:08.423 2025-03-26 06:28:08.423 443484 1833 9 0 19127 2025-03-26 06:28:06.644 2025-03-26 06:28:06.644 443484 2492 9 0 19128 2025-03-26 06:28:06.644 2025-03-26 06:28:06.644 443484 2652 1 0 19129 2025-03-26 06:28:06.476 2025-03-26 06:28:06.476 443484 2749 9 0 19130 2025-03-26 06:28:05.67 2025-03-26 06:28:05.67 443484 3979 1 0 19131 2025-03-26 06:28:05.86 2025-03-26 06:28:05.86 443484 8498 1 0 19132 2025-03-26 04:52:11.637 2025-03-26 04:52:11.637 443484 9200 1 0 19133 2025-03-26 06:28:05.86 2025-03-26 06:28:05.86 443484 9418 9 0 19134 2025-03-26 06:28:06.276 2025-03-26 06:28:06.276 443484 9920 1 0 19135 2025-03-26 06:28:05.374 2025-03-26 06:28:05.374 443484 12057 1 0 19136 2025-03-26 06:28:07.676 2025-03-26 06:28:07.676 443484 14370 1 0 19137 2025-03-26 06:28:06.073 2025-03-26 06:28:06.073 443484 16124 9 0 19138 2025-03-26 06:28:06.846 2025-03-26 06:28:06.846 443484 18314 1 0 19139 2025-03-26 06:28:06.073 2025-03-26 06:28:06.073 443484 20291 1 0 19140 2025-03-26 06:28:06.846 2025-03-26 06:28:06.846 443484 20525 9 0 19141 2025-03-26 06:28:08.423 2025-03-26 06:28:08.423 443484 20775 1 0 19142 2025-03-26 06:28:06.476 2025-03-26 06:28:06.476 443484 20906 1 0 19143 2025-03-26 04:53:01.54 2025-03-26 04:53:01.54 443485 5870 1 0 19144 2025-03-26 04:57:52.041 2025-03-26 04:57:52.041 443486 16747 10 0 19145 2025-03-26 04:57:52.041 2025-03-26 04:57:52.041 443486 17526 90 0 19146 2025-03-26 04:53:05.07 2025-03-26 04:53:05.07 443486 21212 10 0 19147 2025-03-26 06:22:09.753 2025-03-26 06:22:09.753 443487 622 9 0 19148 2025-03-26 04:56:47.103 2025-03-26 04:56:47.103 443487 1209 6 0 19149 2025-03-26 06:22:07.878 2025-03-26 06:22:07.878 443487 2098 9 0 19150 2025-03-26 04:56:46.723 2025-03-26 04:56:46.723 443487 2285 7 0 19151 2025-03-26 04:56:44.372 2025-03-26 04:56:44.372 443487 2322 1 0 19152 2025-03-26 06:22:07.19 2025-03-26 06:22:07.19 443487 3342 9 0 19153 2025-03-26 06:22:09.753 2025-03-26 06:22:09.753 443487 3377 1 0 19154 2025-03-26 06:22:08.569 2025-03-26 06:22:08.569 443487 3717 9 0 19155 2025-03-26 05:31:05.735 2025-03-26 05:31:05.735 443487 4487 0 0 19156 2025-03-26 05:31:05.735 2025-03-26 05:31:05.735 443487 10818 3 0 19157 2025-03-26 04:56:44.372 2025-03-26 04:56:44.372 443487 11996 6 0 19158 2025-03-26 06:22:07.19 2025-03-26 06:22:07.19 443487 15463 1 0 19159 2025-03-26 04:56:47.103 2025-03-26 04:56:47.103 443487 16356 1 0 19160 2025-03-26 06:22:08.569 2025-03-26 06:22:08.569 443487 17976 1 0 19161 2025-03-26 05:41:48.39 2025-03-26 05:41:48.39 443487 19796 9 0 19162 2025-03-26 06:22:07.878 2025-03-26 06:22:07.878 443487 20152 1 0 19163 2025-03-26 05:41:48.39 2025-03-26 05:41:48.39 443487 20596 1 0 19164 2025-03-26 04:56:07.571 2025-03-26 04:56:07.571 443487 21379 11 0 19165 2025-03-26 04:56:24.075 2025-03-26 04:56:24.075 443488 7185 1 0 19166 2025-03-26 06:30:14.459 2025-03-26 06:30:14.459 443489 2640 2 0 19167 2025-03-26 04:56:32.958 2025-03-26 04:56:32.958 443489 4287 21 0 19168 2025-03-26 05:44:31.792 2025-03-26 05:44:31.792 443489 16124 19 0 19169 2025-03-26 05:44:31.792 2025-03-26 05:44:31.792 443489 19333 2 0 19170 2025-03-26 06:30:14.459 2025-03-26 06:30:14.459 443489 21541 19 0 19171 2025-03-26 04:56:46.621 2025-03-26 04:56:46.621 443490 861 100 0 19172 2025-03-26 05:00:03.416 2025-03-26 05:00:03.416 443490 1145 2 0 19173 2025-03-26 05:03:52.09 2025-03-26 05:03:52.09 443490 2232 0 0 19174 2025-03-26 05:38:22.003 2025-03-26 05:38:22.003 443490 3656 19 0 19175 2025-03-26 05:03:37.238 2025-03-26 05:03:37.238 443490 6335 0 0 19176 2025-03-26 04:57:35.688 2025-03-26 04:57:35.688 443490 11477 0 0 19177 2025-03-26 05:38:22.003 2025-03-26 05:38:22.003 443490 12245 2 0 19178 2025-03-26 05:00:03.416 2025-03-26 05:00:03.416 443490 17162 14 0 19179 2025-03-26 05:23:09.882 2025-03-26 05:23:09.882 443491 1772 1 0 19180 2025-03-26 04:57:27.976 2025-03-26 04:57:27.976 443491 2832 0 0 19181 2025-03-26 05:23:09.882 2025-03-26 05:23:09.882 443491 13599 9 0 19182 2025-03-26 04:57:06.138 2025-03-26 04:57:06.138 443491 21041 1 0 19183 2025-03-26 05:23:26.02 2025-03-26 05:23:26.02 443492 642 0 0 19184 2025-03-26 05:23:26.02 2025-03-26 05:23:26.02 443492 1803 1 0 19185 2025-03-26 05:23:26.307 2025-03-26 05:23:26.307 443492 2749 1 0 19186 2025-03-26 05:40:58.62 2025-03-26 05:40:58.62 443492 4862 24 0 19187 2025-03-26 04:57:09.363 2025-03-26 04:57:09.363 443492 5637 1 0 19188 2025-03-26 05:40:58.62 2025-03-26 05:40:58.62 443492 21254 3 0 19189 2025-03-26 05:23:26.307 2025-03-26 05:23:26.307 443492 21798 8 0 19190 2025-03-26 04:58:05.722 2025-03-26 04:58:05.722 443493 13878 1 0 19191 2025-03-26 04:58:07.901 2025-03-26 04:58:07.901 443494 19570 1 0 19192 2025-03-26 05:00:56.262 2025-03-26 05:00:56.262 443495 891 7 0 19193 2025-03-26 05:00:54.362 2025-03-26 05:00:54.362 443495 1618 51 0 19194 2025-03-26 05:04:18.49 2025-03-26 05:04:18.49 443495 4177 15 0 19195 2025-03-26 05:00:56.262 2025-03-26 05:00:56.262 443495 7903 1 0 19196 2025-03-26 06:21:38.205 2025-03-26 06:21:38.205 443495 9167 9 0 19197 2025-03-26 05:13:43.069 2025-03-26 05:13:43.069 443495 9551 9 0 19198 2025-03-26 06:21:38.205 2025-03-26 06:21:38.205 443495 9705 1 0 19199 2025-03-26 04:58:24.792 2025-03-26 04:58:24.792 443495 14015 1 0 19200 2025-03-26 06:04:28.861 2025-03-26 06:04:28.861 443495 16124 0 0 19201 2025-03-26 06:20:11.451 2025-03-26 06:20:11.451 443495 18630 0 0 19202 2025-03-26 05:04:18.49 2025-03-26 05:04:18.49 443495 19502 2 0 19203 2025-03-26 06:20:11.451 2025-03-26 06:20:11.451 443495 20734 2 0 19204 2025-03-26 05:13:43.069 2025-03-26 05:13:43.069 443495 20911 1 0 19205 2025-03-26 06:04:28.861 2025-03-26 06:04:28.861 443495 20956 1 0 19206 2025-03-26 05:00:54.362 2025-03-26 05:00:54.362 443495 21314 6 0 19207 2025-03-26 05:23:28.125 2025-03-26 05:23:28.125 443496 14785 5 0 19208 2025-03-26 05:23:28.125 2025-03-26 05:23:28.125 443496 16296 43 0 19209 2025-03-26 04:58:38.697 2025-03-26 04:58:38.697 443496 17991 10 0 19210 2025-03-26 04:59:55.301 2025-03-26 04:59:55.301 443497 20479 1 0 19211 2025-03-26 05:00:00.903 2025-03-26 05:00:00.903 443498 9099 1 0 19212 2025-03-26 05:00:47.296 2025-03-26 05:00:47.296 443499 15273 1 0 19213 2025-03-26 05:02:50.649 2025-03-26 05:02:50.649 443500 1039 0 0 19214 2025-03-26 06:04:25.1 2025-03-26 06:04:25.1 443500 1647 1 0 19215 2025-03-26 05:00:55.825 2025-03-26 05:00:55.825 443500 14941 21 0 19216 2025-03-26 06:04:25.1 2025-03-26 06:04:25.1 443500 20597 0 0 19217 2025-03-26 05:09:19.415 2025-03-26 05:09:19.415 443501 1769 19 0 19218 2025-03-26 05:09:19.415 2025-03-26 05:09:19.415 443501 15337 2 0 19219 2025-03-26 05:01:01.121 2025-03-26 05:01:01.121 443501 16126 1 0 19220 2025-03-26 05:01:03.088 2025-03-26 05:01:03.088 443502 17568 1 0 19221 2025-03-26 05:01:54.416 2025-03-26 05:01:54.416 443503 3504 1 0 19222 2025-03-26 05:02:18.053 2025-03-26 05:02:18.053 443504 20911 1 0 19223 2025-03-26 06:33:13.595 2025-03-26 06:33:13.595 443505 1720 19 0 19224 2025-03-26 05:40:00.274 2025-03-26 05:40:00.274 443505 9242 19 0 19225 2025-03-26 05:02:44.813 2025-03-26 05:02:44.813 443505 18923 1 0 19226 2025-03-26 06:33:13.595 2025-03-26 06:33:13.595 443505 19198 2 0 19227 2025-03-26 05:03:38.548 2025-03-26 05:03:38.548 443505 20687 0 0 19228 2025-03-26 05:40:00.274 2025-03-26 05:40:00.274 443505 21709 2 0 19229 2025-03-26 06:04:23.431 2025-03-26 06:04:23.431 443506 695 0 0 19230 2025-03-26 05:07:05.662 2025-03-26 05:07:05.662 443506 1044 2 0 19231 2025-03-26 05:07:05.662 2025-03-26 05:07:05.662 443506 1320 15 0 19232 2025-03-26 05:06:29.222 2025-03-26 05:06:29.222 443506 6191 6 0 19233 2025-03-26 06:04:23.431 2025-03-26 06:04:23.431 443506 8004 1 0 19234 2025-03-26 05:07:05.486 2025-03-26 05:07:05.486 443506 9339 2 0 19235 2025-03-26 06:21:37.151 2025-03-26 06:21:37.151 443506 13587 9 0 19236 2025-03-26 05:06:29.222 2025-03-26 05:06:29.222 443506 13599 1 0 19237 2025-03-26 05:07:05.486 2025-03-26 05:07:05.486 443506 17316 15 0 19238 2025-03-26 06:21:37.151 2025-03-26 06:21:37.151 443506 21287 1 0 19239 2025-03-26 05:10:21.531 2025-03-26 05:10:21.531 443507 954 0 0 19240 2025-03-26 05:04:11.998 2025-03-26 05:04:11.998 443507 14255 1 0 19241 2025-03-26 05:04:16.948 2025-03-26 05:04:16.948 443508 12749 1 0 19242 2025-03-26 05:04:36.108 2025-03-26 05:04:36.108 443509 10493 1 0 19243 2025-03-26 05:06:17.16 2025-03-26 05:06:17.16 443511 15336 1 0 19244 2025-03-26 05:06:39.477 2025-03-26 05:06:39.477 443512 1596 1 0 19245 2025-03-26 05:07:04.803 2025-03-26 05:07:04.803 443513 654 1 0 19246 2025-03-26 05:40:11.168 2025-03-26 05:40:11.168 443514 5499 69 0 19247 2025-03-26 05:40:11.168 2025-03-26 05:40:11.168 443514 12072 8 0 19248 2025-03-26 05:39:13.764 2025-03-26 05:39:13.764 443514 16956 1 0 19249 2025-03-26 05:07:20.181 2025-03-26 05:07:20.181 443514 17365 1 0 19250 2025-03-26 05:40:10.865 2025-03-26 05:40:10.865 443514 20059 69 0 19251 2025-03-26 05:39:13.764 2025-03-26 05:39:13.764 443514 21166 5 0 19252 2025-03-26 05:40:10.865 2025-03-26 05:40:10.865 443514 21365 8 0 19253 2025-03-26 05:46:13.458 2025-03-26 05:46:13.458 443515 794 8 0 19254 2025-03-26 05:46:13.458 2025-03-26 05:46:13.458 443515 837 69 0 19255 2025-03-26 05:49:20.792 2025-03-26 05:49:20.792 443515 1615 8 0 19256 2025-03-26 05:49:20.792 2025-03-26 05:49:20.792 443515 2829 69 0 19257 2025-03-26 05:16:17.737 2025-03-26 05:16:17.737 443515 7682 9 0 19258 2025-03-26 05:08:22.519 2025-03-26 05:08:22.519 443515 14404 1 0 19259 2025-03-26 05:16:17.737 2025-03-26 05:16:17.737 443515 18274 1 0 19260 2025-03-26 05:16:24.91 2025-03-26 05:16:24.91 443516 13378 1 0 19261 2025-03-26 05:08:36.389 2025-03-26 05:08:36.389 443516 13575 1 0 19262 2025-03-26 05:16:24.91 2025-03-26 05:16:24.91 443516 18731 9 0 19263 2025-03-26 06:33:11.476 2025-03-26 06:33:11.476 443517 776 2 0 19264 2025-03-26 05:39:45.513 2025-03-26 05:39:45.513 443517 1549 19 0 19265 2025-03-26 05:35:22.372 2025-03-26 05:35:22.372 443517 2123 3 0 19266 2025-03-26 06:33:11.476 2025-03-26 06:33:11.476 443517 2942 19 0 19267 2025-03-26 05:09:41.605 2025-03-26 05:09:41.605 443517 16842 1 0 19268 2025-03-26 05:35:22.372 2025-03-26 05:35:22.372 443517 20912 28 0 19269 2025-03-26 05:39:45.513 2025-03-26 05:39:45.513 443517 21406 2 0 19270 2025-03-26 05:11:36.281 2025-03-26 05:11:36.281 443518 1549 9 0 19271 2025-03-26 05:11:36.281 2025-03-26 05:11:36.281 443518 12656 1 0 19272 2025-03-26 05:10:18.558 2025-03-26 05:10:18.558 443518 20782 1 0 19273 2025-03-26 05:12:11.405 2025-03-26 05:12:11.405 443519 3686 9 0 19274 2025-03-26 05:12:11.405 2025-03-26 05:12:11.405 443519 19471 1 0 19275 2025-03-26 05:11:48.361 2025-03-26 05:11:48.361 443519 20099 1 0 19276 2025-03-26 05:12:45.407 2025-03-26 05:12:45.407 443520 5703 1 0 19277 2025-03-26 05:13:20.351 2025-03-26 05:13:20.351 443521 2773 0 0 19278 2025-03-26 05:14:42.106 2025-03-26 05:14:42.106 443521 20310 0 0 19279 2025-03-26 05:12:54.748 2025-03-26 05:12:54.748 443521 21040 1 0 19280 2025-03-26 05:13:41.473 2025-03-26 05:13:41.473 443522 2609 1 0 19281 2025-03-26 05:14:01.185 2025-03-26 05:14:01.185 443523 10690 1 0 19282 2025-03-26 06:04:21.76 2025-03-26 06:04:21.76 443524 998 1 0 19283 2025-03-26 05:15:32.629 2025-03-26 05:15:32.629 443524 13097 21 0 19284 2025-03-26 05:16:15.061 2025-03-26 05:16:15.061 443524 17014 0 0 19285 2025-03-26 06:04:21.76 2025-03-26 06:04:21.76 443524 18923 0 0 19286 2025-03-26 05:15:58.816 2025-03-26 05:15:58.816 443525 2528 1 0 19287 2025-03-26 05:16:48.163 2025-03-26 05:16:48.163 443525 5775 28 0 19288 2025-03-26 05:16:48.163 2025-03-26 05:16:48.163 443525 8713 3 0 19289 2025-03-26 05:46:17.124 2025-03-26 05:46:17.124 443525 9552 8 0 19290 2025-03-26 05:46:17.124 2025-03-26 05:46:17.124 443525 21444 69 0 19291 2025-03-26 05:24:01.986 2025-03-26 05:24:01.986 443526 2513 0 0 19292 2025-03-26 05:19:30.179 2025-03-26 05:19:30.179 443526 11967 0 0 19293 2025-03-26 05:23:07.806 2025-03-26 05:23:07.806 443526 12808 0 0 19294 2025-03-26 05:21:24.317 2025-03-26 05:21:24.317 443526 17714 0 0 19295 2025-03-26 05:16:37.807 2025-03-26 05:16:37.807 443526 17991 1 0 19296 2025-03-26 06:31:42.682 2025-03-26 06:31:42.682 443527 5306 0 21 19297 2025-03-26 05:17:56.604 2025-03-26 05:17:56.604 443527 13132 1 0 19298 2025-03-26 06:13:21.217 2025-03-26 06:13:21.217 443528 762 6 0 19299 2025-03-26 06:01:03.153 2025-03-26 06:01:03.153 443528 1162 19 0 19300 2025-03-26 05:29:22.757 2025-03-26 05:29:22.757 443528 1652 2 0 19301 2025-03-26 06:01:03.153 2025-03-26 06:01:03.153 443528 1712 2 0 19302 2025-03-26 06:04:19.748 2025-03-26 06:04:19.748 443528 1737 1 0 19303 2025-03-26 06:13:21.217 2025-03-26 06:13:21.217 443528 2367 51 0 19304 2025-03-26 05:29:22.55 2025-03-26 05:29:22.55 443528 2741 2 0 19305 2025-03-26 05:36:49.391 2025-03-26 05:36:49.391 443528 4415 2 0 19306 2025-03-26 06:04:19.748 2025-03-26 06:04:19.748 443528 5646 0 0 19307 2025-03-26 05:29:33.048 2025-03-26 05:29:33.048 443528 6260 5 0 19308 2025-03-26 05:29:22.757 2025-03-26 05:29:22.757 443528 13169 15 0 19309 2025-03-26 05:36:49.391 2025-03-26 05:36:49.391 443528 13767 19 0 19310 2025-03-26 06:32:45.354 2025-03-26 06:32:45.354 443528 14404 1 0 19311 2025-03-26 05:29:33.048 2025-03-26 05:29:33.048 443528 15091 1 0 19312 2025-03-26 05:40:23.755 2025-03-26 05:40:23.755 443528 17147 180 0 19313 2025-03-26 05:29:22.55 2025-03-26 05:29:22.55 443528 18368 15 0 19314 2025-03-26 05:40:23.755 2025-03-26 05:40:23.755 443528 18441 20 0 19315 2025-03-26 06:32:45.354 2025-03-26 06:32:45.354 443528 19924 9 0 19316 2025-03-26 05:19:05.687 2025-03-26 05:19:05.687 443528 20062 256 0 19317 2025-03-26 05:19:14.217 2025-03-26 05:19:14.217 443529 6537 1 0 19318 2025-03-26 05:19:32.366 2025-03-26 05:19:32.366 443530 11328 1 0 19319 2025-03-26 06:38:21.698 2025-03-26 06:38:21.698 443531 616 2 0 19320 2025-03-26 06:38:21.698 2025-03-26 06:38:21.698 443531 837 19 0 19321 2025-03-26 05:22:40.754 2025-03-26 05:22:40.754 443531 4487 51 0 19322 2025-03-26 05:28:31.532 2025-03-26 05:28:31.532 443531 5520 1 0 19323 2025-03-26 05:20:47.653 2025-03-26 05:20:47.653 443531 12291 0 0 19324 2025-03-26 05:36:35.229 2025-03-26 05:36:35.229 443531 15075 2 0 19325 2025-03-26 05:36:35.229 2025-03-26 05:36:35.229 443531 17103 19 0 19326 2025-03-26 05:22:40.754 2025-03-26 05:22:40.754 443531 19446 6 0 19327 2025-03-26 05:20:02.227 2025-03-26 05:20:02.227 443531 20291 100 0 19328 2025-03-26 05:28:31.532 2025-03-26 05:28:31.532 443531 20717 5 0 19329 2025-03-26 06:04:16.746 2025-03-26 06:04:16.746 443531 21131 0 0 19330 2025-03-26 06:04:16.746 2025-03-26 06:04:16.746 443531 21585 1 0 19331 2025-03-26 05:53:29.398 2025-03-26 05:53:29.398 443532 954 0 0 19332 2025-03-26 05:20:26.612 2025-03-26 05:20:26.612 443532 2596 97 0 19333 2025-03-26 05:53:29.398 2025-03-26 05:53:29.398 443532 7418 3 0 19334 2025-03-26 05:36:40.641 2025-03-26 05:36:40.641 443532 10013 2 0 19335 2025-03-26 05:26:58.738 2025-03-26 05:26:58.738 443532 15337 10 0 19336 2025-03-26 05:26:58.738 2025-03-26 05:26:58.738 443532 21131 1 0 19337 2025-03-26 05:36:40.641 2025-03-26 05:36:40.641 443532 21254 19 0 19338 2025-03-26 05:21:10.705 2025-03-26 05:21:10.705 443533 1534 1 0 19339 2025-03-26 05:22:18.256 2025-03-26 05:22:18.256 443533 9331 3 0 19340 2025-03-26 05:22:18.256 2025-03-26 05:22:18.256 443533 19292 25 0 19341 2025-03-26 05:21:14.544 2025-03-26 05:21:14.544 443534 6717 1 0 19342 2025-03-26 05:21:49.124 2025-03-26 05:21:49.124 443535 9275 0 0 19343 2025-03-26 05:21:39.271 2025-03-26 05:21:39.271 443535 20683 1 0 19344 2025-03-26 05:22:30.809 2025-03-26 05:22:30.809 443536 11378 1 0 19345 2025-03-26 05:23:45.278 2025-03-26 05:23:45.278 443537 1705 1 0 19346 2025-03-26 05:33:50.065 2025-03-26 05:33:50.065 443538 2010 9 0 19347 2025-03-26 05:28:48.817 2025-03-26 05:28:48.817 443538 2734 1 0 19348 2025-03-26 05:33:50.065 2025-03-26 05:33:50.065 443538 9335 1 0 19349 2025-03-26 05:28:48.817 2025-03-26 05:28:48.817 443538 17064 5 0 19350 2025-03-26 05:25:18.848 2025-03-26 05:25:18.848 443538 20245 1 0 19351 2025-03-26 05:25:21.926 2025-03-26 05:25:21.926 443539 694 1 0 19352 2025-03-26 05:32:14.167 2025-03-26 05:32:14.167 443539 8004 90 0 19353 2025-03-26 05:32:14.167 2025-03-26 05:32:14.167 443539 20225 10 0 19354 2025-03-26 05:25:53.497 2025-03-26 05:25:53.497 443540 20710 1 0 19355 2025-03-26 05:29:21.96 2025-03-26 05:29:21.96 443541 811 0 0 19356 2025-03-26 06:04:09.991 2025-03-26 06:04:09.991 443541 1162 0 0 19357 2025-03-26 05:29:21.96 2025-03-26 05:29:21.96 443541 9366 1 0 19358 2025-03-26 05:26:53.788 2025-03-26 05:26:53.788 443541 17209 100 0 19359 2025-03-26 06:04:09.991 2025-03-26 06:04:09.991 443541 20198 1 0 19360 2025-03-26 05:27:18.57 2025-03-26 05:27:18.57 443542 11073 1 0 19361 2025-03-26 05:34:49.979 2025-03-26 05:34:49.979 443543 3683 42 0 19362 2025-03-26 05:55:14.509 2025-03-26 05:55:14.509 443543 12483 30 0 19363 2025-03-26 05:27:18.923 2025-03-26 05:27:18.923 443543 12921 1 0 19364 2025-03-26 05:55:14.509 2025-03-26 05:55:14.509 443543 13599 3 0 19365 2025-03-26 05:34:49.979 2025-03-26 05:34:49.979 443543 16212 378 0 19366 2025-03-26 05:28:18.753 2025-03-26 05:28:18.753 443544 1652 1 0 19367 2025-03-26 05:51:06.784 2025-03-26 05:51:06.784 443545 635 1 0 19368 2025-03-26 06:17:59.194 2025-03-26 06:17:59.194 443545 638 7 0 19369 2025-03-26 06:10:37.749 2025-03-26 06:10:37.749 443545 651 49 0 19370 2025-03-26 05:46:10.448 2025-03-26 05:46:10.448 443545 673 0 0 19371 2025-03-26 05:59:26.277 2025-03-26 05:59:26.277 443545 708 0 0 19372 2025-03-26 05:44:22.129 2025-03-26 05:44:22.129 443545 712 2 0 19373 2025-03-26 06:17:58.984 2025-03-26 06:17:58.984 443545 746 7 0 19374 2025-03-26 05:46:11.123 2025-03-26 05:46:11.123 443545 964 0 0 19375 2025-03-26 07:12:59.862 2025-03-26 07:12:59.862 443545 989 2 0 19376 2025-03-26 06:10:37.749 2025-03-26 06:10:37.749 443545 997 5 0 19377 2025-03-26 05:46:09.572 2025-03-26 05:46:09.572 443545 1008 3 0 19378 2025-03-26 06:10:40.097 2025-03-26 06:10:40.097 443545 1044 24 0 19379 2025-03-26 05:46:07.501 2025-03-26 05:46:07.501 443545 1135 0 0 19380 2025-03-26 05:46:10.203 2025-03-26 05:46:10.203 443545 1244 3 0 19381 2025-03-26 05:46:10.203 2025-03-26 05:46:10.203 443545 1272 0 0 19382 2025-03-26 06:17:59.194 2025-03-26 06:17:59.194 443545 1411 62 0 19383 2025-03-26 05:46:10.448 2025-03-26 05:46:10.448 443545 1489 3 0 19384 2025-03-26 05:53:09.271 2025-03-26 05:59:26.524 443545 1493 7 0 19385 2025-03-26 05:39:40.904 2025-03-26 05:39:40.904 443545 1576 69 0 19386 2025-03-26 06:10:39.929 2025-03-26 06:10:39.929 443545 1817 3 0 19387 2025-03-26 06:10:40.097 2025-03-26 06:10:40.097 443545 1983 3 0 19388 2025-03-26 05:59:26.524 2025-03-26 05:59:26.524 443545 1985 8 0 19389 2025-03-26 05:44:22.129 2025-03-26 05:44:22.129 443545 2061 19 0 19390 2025-03-26 06:10:39.978 2025-03-26 06:10:39.978 443545 2203 3 0 19391 2025-03-26 05:36:24.442 2025-03-26 05:36:24.442 443545 2583 19 0 19392 2025-03-26 05:46:10.873 2025-03-26 05:46:10.873 443545 2829 0 0 19393 2025-03-26 06:10:37.137 2025-03-26 06:10:37.137 443545 3411 3 0 19394 2025-03-26 05:46:10.635 2025-03-26 05:46:10.635 443545 3461 0 0 19395 2025-03-26 05:39:40.48 2025-03-26 05:39:40.48 443545 3642 8 0 19396 2025-03-26 06:17:58.984 2025-03-26 06:17:58.984 443545 3979 62 0 19397 2025-03-26 06:10:39.175 2025-03-26 06:10:39.175 443545 4084 24 0 19398 2025-03-26 05:46:08.549 2025-03-26 05:46:08.549 443545 4474 3 0 19399 2025-03-26 05:40:48.138 2025-03-26 05:40:48.138 443545 4973 90 0 19400 2025-03-26 05:39:41.289 2025-03-26 05:39:41.289 443545 5694 8 0 19401 2025-03-26 05:46:11.294 2025-03-26 06:17:59.314 443545 5746 62 0 19402 2025-03-26 06:10:37.335 2025-03-26 06:10:37.335 443545 5942 3 0 19403 2025-03-26 05:46:09.704 2025-03-26 05:46:09.704 443545 6058 0 0 19404 2025-03-26 05:36:24.442 2025-03-26 05:36:24.442 443545 6191 2 0 19405 2025-03-26 05:46:09.572 2025-03-26 05:46:09.572 443545 6653 0 0 19406 2025-03-26 05:53:09.271 2025-03-26 05:53:09.271 443545 7818 57 0 19407 2025-03-26 05:39:40.904 2025-03-26 05:39:40.904 443545 8459 8 0 19408 2025-03-26 06:00:56.03 2025-03-26 06:00:56.03 443545 9494 19 0 19409 2025-03-26 05:46:11.294 2025-03-26 05:46:11.294 443545 10409 3 0 19410 2025-03-26 06:10:39.901 2025-03-26 06:10:39.901 443545 10490 3 0 19411 2025-03-26 05:46:09.95 2025-03-26 05:46:09.95 443545 10986 3 0 19412 2025-03-26 06:10:37.137 2025-03-26 06:10:37.137 443545 11073 24 0 19413 2025-03-26 05:46:09.506 2025-03-26 05:46:09.506 443545 11144 0 0 19414 2025-03-26 06:01:12.828 2025-03-26 06:01:12.828 443545 11165 51 0 19415 2025-03-26 06:10:37.335 2025-03-26 06:10:37.335 443545 11609 24 0 19416 2025-03-26 05:42:25.421 2025-03-26 05:42:25.421 443545 11897 2 0 19417 2025-03-26 05:46:09 2025-03-26 05:46:09 443545 12566 0 0 19418 2025-03-26 05:39:49.148 2025-03-26 05:39:49.148 443545 12808 8 0 19419 2025-03-26 05:46:08.313 2025-03-26 05:46:08.313 443545 12946 0 0 19420 2025-03-26 05:46:09 2025-03-26 05:46:09 443545 13327 3 0 19421 2025-03-26 06:17:59.717 2025-03-26 06:17:59.717 443545 13365 7 0 19422 2025-03-26 05:39:41.135 2025-03-26 05:39:41.135 443545 13517 8 0 19423 2025-03-26 05:46:07.501 2025-03-26 05:46:07.501 443545 13878 3 0 19424 2025-03-26 05:51:06.784 2025-03-26 05:51:06.784 443545 14258 9 0 19425 2025-03-26 05:46:08.313 2025-03-26 05:46:08.313 443545 14959 3 0 19426 2025-03-26 05:46:08.798 2025-03-26 05:46:08.798 443545 15139 3 0 19427 2025-03-26 07:12:59.862 2025-03-26 07:12:59.862 443545 15336 19 0 19428 2025-03-26 05:34:11.164 2025-03-26 05:34:11.164 443545 15577 2 0 19429 2025-03-26 05:46:08.798 2025-03-26 05:46:08.798 443545 16354 0 0 19430 2025-03-26 05:39:41.049 2025-03-26 05:39:41.049 443545 16410 69 0 19431 2025-03-26 06:10:39.929 2025-03-26 06:10:39.929 443545 16834 24 0 19432 2025-03-26 05:46:09.704 2025-03-26 05:46:09.704 443545 16912 3 0 19433 2025-03-26 06:10:39.175 2025-03-26 06:10:39.175 443545 17157 3 0 19434 2025-03-26 06:17:59.717 2025-03-26 06:17:59.717 443545 17221 62 0 19435 2025-03-26 06:00:56.03 2025-03-26 06:00:56.03 443545 17570 2 0 19436 2025-03-26 06:17:59.314 2025-03-26 06:17:59.314 443545 17639 7 0 19437 2025-03-26 05:39:41.049 2025-03-26 05:39:41.049 443545 17953 8 0 19438 2025-03-26 05:46:09.506 2025-03-26 05:46:09.506 443545 19094 3 0 19439 2025-03-26 05:46:08.549 2025-03-26 05:46:08.549 443545 19394 0 0 19440 2025-03-26 05:39:41.135 2025-03-26 05:39:41.135 443545 19777 69 0 19441 2025-03-26 05:46:09.95 2025-03-26 05:46:09.95 443545 19806 0 0 19442 2025-03-26 06:01:12.828 2025-03-26 06:01:12.828 443545 19863 6 0 19443 2025-03-26 05:34:11.164 2025-03-26 05:34:11.164 443545 19888 14 0 19444 2025-03-26 05:28:56.649 2025-03-26 05:28:56.649 443545 20137 420 0 19445 2025-03-26 05:46:10.635 2025-03-26 05:46:10.635 443545 20201 3 0 19446 2025-03-26 05:40:48.138 2025-03-26 05:40:48.138 443545 20254 10 0 19447 2025-03-26 06:10:39.978 2025-03-26 06:10:39.978 443545 20816 24 0 19448 2025-03-26 05:39:40.48 2025-03-26 05:39:40.48 443545 20924 69 0 19449 2025-03-26 06:10:39.901 2025-03-26 06:10:39.901 443545 20970 24 0 19450 2025-03-26 05:46:11.123 2025-03-26 05:46:11.123 443545 21020 3 0 19451 2025-03-26 05:39:49.26 2025-03-26 05:39:49.26 443545 21091 69 0 19452 2025-03-26 05:39:49.148 2025-03-26 05:39:49.148 443545 21136 69 0 19453 2025-03-26 05:39:49.26 2025-03-26 05:39:49.26 443545 21145 8 0 19454 2025-03-26 05:42:25.421 2025-03-26 05:42:25.421 443545 21172 19 0 19455 2025-03-26 05:39:41.289 2025-03-26 05:39:41.289 443545 21357 69 0 19456 2025-03-26 05:59:26.277 2025-03-26 05:59:26.277 443545 21365 1 0 19457 2025-03-26 05:46:10.873 2025-03-26 05:46:10.873 443545 21639 3 0 19458 2025-03-26 05:29:17.826 2025-03-26 05:29:17.826 443546 1803 1 0 19459 2025-03-26 05:29:24.245 2025-03-26 05:29:24.245 443547 2204 1 0 19460 2025-03-26 05:39:14.201 2025-03-26 05:39:14.201 443548 716 2 0 19461 2025-03-26 06:33:07.675 2025-03-26 06:33:07.675 443548 11165 19 0 19462 2025-03-26 06:33:07.675 2025-03-26 06:33:07.675 443548 12422 2 0 19463 2025-03-26 05:30:03.879 2025-03-26 05:30:03.879 443548 14910 1 0 19464 2025-03-26 05:39:14.201 2025-03-26 05:39:14.201 443548 17291 19 0 19465 2025-03-26 05:30:28.667 2025-03-26 05:30:28.667 443549 19292 1 0 19466 2025-03-26 05:31:11.33 2025-03-26 05:31:11.33 443550 17570 21 0 19467 2025-03-26 05:31:26.492 2025-03-26 05:31:26.492 443551 713 1 0 19468 2025-03-26 05:31:36.984 2025-03-26 05:31:36.984 443551 763 0 0 19469 2025-03-26 05:31:46.17 2025-03-26 05:31:46.17 443552 21249 1 0 19470 2025-03-26 05:41:31.626 2025-03-26 05:41:31.626 443553 891 1 0 19471 2025-03-26 05:31:47.957 2025-03-26 05:31:47.957 443553 913 1 0 19472 2025-03-26 05:41:31.626 2025-03-26 05:41:31.626 443553 16948 5 0 19473 2025-03-26 06:03:27.709 2025-03-26 06:03:27.709 443554 1626 0 0 19474 2025-03-26 06:38:20.4 2025-03-26 06:38:20.4 443554 2718 19 0 19475 2025-03-26 06:38:20.4 2025-03-26 06:38:20.4 443554 2749 2 0 19476 2025-03-26 06:23:37.51 2025-03-26 06:23:37.51 443554 5870 9 0 19477 2025-03-26 05:54:35.644 2025-03-26 05:54:35.644 443554 7899 2 0 19478 2025-03-26 05:54:35.644 2025-03-26 05:54:35.644 443554 9438 19 0 19479 2025-03-26 06:03:27.709 2025-03-26 06:03:27.709 443554 9695 1 0 19480 2025-03-26 06:23:37.51 2025-03-26 06:23:37.51 443554 11220 1 0 19481 2025-03-26 05:43:02.537 2025-03-26 05:43:02.537 443554 20490 3 0 19482 2025-03-26 05:43:02.537 2025-03-26 05:43:02.537 443554 21184 0 0 19483 2025-03-26 05:31:52.107 2025-03-26 05:31:52.107 443554 21208 100 0 19484 2025-03-26 05:33:10.728 2025-03-26 05:33:10.728 443555 641 10 0 19485 2025-03-26 05:32:10.002 2025-03-26 05:32:10.002 443555 4043 1 0 19486 2025-03-26 05:33:10.728 2025-03-26 05:33:10.728 443555 17237 90 0 19487 2025-03-26 05:32:43.723 2025-03-26 05:32:43.723 443556 20481 1 0 19488 2025-03-26 05:33:59.091 2025-03-26 05:33:59.091 443557 9863 28 0 19489 2025-03-26 06:33:11.146 2025-03-26 06:33:11.146 443557 20479 19 0 19490 2025-03-26 06:33:11.146 2025-03-26 06:33:11.146 443557 20990 2 0 19491 2025-03-26 05:33:59.091 2025-03-26 05:33:59.091 443557 21062 3 0 19492 2025-03-26 05:33:47.029 2025-03-26 05:33:47.029 443558 19346 1 0 19493 2025-03-26 05:34:02.372 2025-03-26 05:34:02.372 443559 814 1 0 19494 2025-03-26 05:48:12.108 2025-03-26 05:48:12.108 443559 6594 15 0 19495 2025-03-26 05:48:11.635 2025-03-26 05:48:11.635 443559 7916 2 0 19496 2025-03-26 05:48:12.108 2025-03-26 05:48:12.108 443559 9906 2 0 19497 2025-03-26 05:48:11.635 2025-03-26 05:48:11.635 443559 11829 15 0 19498 2025-03-26 06:33:11.05 2025-03-26 06:33:11.05 443560 652 2 0 19499 2025-03-26 05:36:51.559 2025-03-26 05:36:51.559 443560 2757 28 0 19500 2025-03-26 06:33:11.05 2025-03-26 06:33:11.05 443560 18314 19 0 19501 2025-03-26 05:36:51.559 2025-03-26 05:36:51.559 443560 19189 3 0 19502 2025-03-26 05:34:39.05 2025-03-26 05:34:39.05 443560 21248 1 0 19503 2025-03-26 05:34:55.831 2025-03-26 05:34:55.831 443561 623 1 0 19504 2025-03-26 05:46:44.599 2025-03-26 05:46:44.599 443561 640 90 0 19505 2025-03-26 05:37:43.878 2025-03-26 05:37:43.878 443561 1785 0 0 19506 2025-03-26 05:46:44.599 2025-03-26 05:46:44.599 443561 15941 10 0 19507 2025-03-26 05:36:56.72 2025-03-26 05:36:56.72 443561 21521 0 0 19508 2025-03-26 05:35:15.407 2025-03-26 05:35:15.407 443562 20912 1 0 19509 2025-03-26 05:35:54.573 2025-03-26 05:35:54.573 443563 16978 26 0 19510 2025-03-26 05:35:27.506 2025-03-26 05:35:27.506 443563 17798 1 0 19511 2025-03-26 05:35:54.573 2025-03-26 05:35:54.573 443563 19417 230 0 19512 2025-03-26 05:35:31.978 2025-03-26 05:35:31.978 443564 18011 1 0 19513 2025-03-26 05:35:39.6 2025-03-26 05:35:39.6 443565 18011 1 0 19514 2025-03-26 05:35:57.937 2025-03-26 05:35:57.937 443566 15226 1 0 19515 2025-03-26 05:36:09.776 2025-03-26 05:36:09.776 443567 20409 1 0 19516 2025-03-26 05:53:58.025 2025-03-26 05:53:58.025 443568 1605 4 0 19517 2025-03-26 05:53:58.025 2025-03-26 05:53:58.025 443568 14489 0 0 19518 2025-03-26 05:37:08.331 2025-03-26 05:37:08.331 443568 19569 1 0 19519 2025-03-26 05:37:10.42 2025-03-26 05:37:10.42 443569 15890 1 0 19520 2025-03-26 06:09:04.179 2025-03-26 06:09:04.179 443569 16440 19 0 19521 2025-03-26 06:09:04.179 2025-03-26 06:09:04.179 443569 16965 2 0 19522 2025-03-26 05:37:12.1 2025-03-26 05:37:12.1 443570 9476 1 0 19523 2025-03-26 05:40:11.885 2025-03-26 05:40:11.885 443571 946 69 0 19524 2025-03-26 05:40:11.885 2025-03-26 05:40:11.885 443571 989 8 0 19525 2025-03-26 05:37:34.255 2025-03-26 05:37:34.255 443571 8059 1 0 19526 2025-03-26 05:38:33.675 2025-03-26 05:38:33.675 443572 1173 3 0 19527 2025-03-26 05:38:33.675 2025-03-26 05:38:33.675 443572 4763 27 0 19528 2025-03-26 05:37:57.682 2025-03-26 05:37:57.682 443572 21523 1 0 19529 2025-03-26 05:38:38.096 2025-03-26 05:38:38.096 443573 2293 1 0 19530 2025-03-26 05:49:59.483 2025-03-26 05:49:59.483 443573 2961 9 0 19531 2025-03-26 05:49:59.483 2025-03-26 05:49:59.483 443573 18241 1 0 19532 2025-03-26 05:38:41.117 2025-03-26 05:38:41.117 443574 16556 1 0 19533 2025-03-26 05:39:10.581 2025-03-26 05:39:10.581 443575 17106 1 0 19534 2025-03-26 05:40:36.313 2025-03-26 05:40:36.313 443576 21701 1 0 19535 2025-03-26 05:55:03.154 2025-03-26 05:55:03.154 443577 667 8 0 19536 2025-03-26 05:55:03.269 2025-03-26 05:55:03.269 443577 716 8 0 19537 2025-03-26 05:53:17.799 2025-03-26 05:53:17.799 443577 925 10 0 19538 2025-03-26 06:01:02.185 2025-03-26 06:01:02.185 443577 1082 19 0 19539 2025-03-26 06:01:02.185 2025-03-26 06:01:02.185 443577 1136 2 0 19540 2025-03-26 06:03:23.843 2025-03-26 06:03:23.843 443577 4459 0 0 19541 2025-03-26 05:55:03.269 2025-03-26 05:55:03.269 443577 5036 69 0 19542 2025-03-26 07:00:58.165 2025-03-26 07:00:58.165 443577 8448 1 0 19543 2025-03-26 05:54:58.202 2025-03-26 05:54:58.202 443577 8498 69 0 19544 2025-03-26 05:54:58.202 2025-03-26 05:54:58.202 443577 9421 8 0 19545 2025-03-26 06:32:29.429 2025-03-26 06:32:29.429 443577 13361 1 0 19546 2025-03-26 06:14:07.231 2025-03-26 06:14:07.231 443577 14260 19 0 19547 2025-03-26 05:53:17.799 2025-03-26 05:53:17.799 443577 14731 90 0 19548 2025-03-26 05:56:47.212 2025-03-26 05:56:47.212 443577 15703 19 0 19549 2025-03-26 05:55:03.187 2025-03-26 05:55:03.187 443577 16284 8 0 19550 2025-03-26 06:32:29.429 2025-03-26 06:32:29.429 443577 16809 9 0 19551 2025-03-26 05:56:47.212 2025-03-26 05:56:47.212 443577 17109 2 0 19552 2025-03-26 05:55:04.882 2025-03-26 05:55:04.882 443577 19403 69 0 19553 2025-03-26 05:55:03.154 2025-03-26 05:55:03.154 443577 20852 69 0 19554 2025-03-26 06:03:23.843 2025-03-26 06:03:23.843 443577 21119 1 0 19555 2025-03-26 05:55:04.882 2025-03-26 05:55:04.882 443577 21164 8 0 19556 2025-03-26 06:14:07.231 2025-03-26 06:14:07.231 443577 21172 2 0 19557 2025-03-26 05:55:03.187 2025-03-26 07:00:58.165 443577 21275 74 0 19558 2025-03-26 05:50:27.023 2025-03-26 05:50:27.023 443578 3353 1 0 19559 2025-03-26 06:03:19.66 2025-03-26 06:03:19.66 443578 9494 1 0 19560 2025-03-26 05:41:12.571 2025-03-26 05:41:12.571 443578 16282 15 0 19561 2025-03-26 05:51:05.974 2025-03-26 05:51:05.974 443578 16858 1 0 19562 2025-03-26 05:51:05.974 2025-03-26 05:51:05.974 443578 17741 9 0 19563 2025-03-26 05:50:27.023 2025-03-26 05:50:27.023 443578 18306 7 0 19564 2025-03-26 06:03:19.66 2025-03-26 06:03:19.66 443578 19531 0 0 19565 2025-03-26 05:55:21.768 2025-03-26 05:55:21.768 443579 663 19 0 19566 2025-03-26 05:55:21.768 2025-03-26 05:55:21.768 443579 2609 2 0 19567 2025-03-26 06:03:16.896 2025-03-26 06:03:16.896 443579 8544 0 0 19568 2025-03-26 06:03:16.896 2025-03-26 06:03:16.896 443579 9290 1 0 19569 2025-03-26 05:41:20.666 2025-03-26 05:41:20.666 443579 20511 10 0 19570 2025-03-26 05:42:25.448 2025-03-26 05:42:25.448 443580 1003 1 0 19571 2025-03-26 05:46:17.624 2025-03-26 05:46:17.624 443581 4250 3 0 19572 2025-03-26 05:43:39.038 2025-03-26 05:43:39.038 443581 4602 1 0 19573 2025-03-26 05:46:17.624 2025-03-26 05:46:17.624 443581 13544 28 0 19574 2025-03-26 05:43:49.31 2025-03-26 05:43:49.31 443582 1447 1 0 19575 2025-03-26 05:44:42.327 2025-03-26 05:44:42.327 443582 1738 9 0 19576 2025-03-26 05:44:42.327 2025-03-26 05:44:42.327 443582 17693 1 0 19577 2025-03-26 05:54:11.458 2025-03-26 05:54:11.458 443583 646 1 0 19578 2025-03-26 06:00:54.34 2025-03-26 06:00:54.34 443583 652 2 0 19579 2025-03-26 06:37:15.27 2025-03-26 06:37:15.27 443583 661 10 0 19580 2025-03-26 05:57:35.929 2025-03-26 05:57:35.929 443583 837 3 0 19581 2025-03-26 05:59:34.683 2025-03-26 05:59:34.683 443583 910 28 0 19582 2025-03-26 06:59:05.258 2025-03-26 06:59:05.258 443583 917 1 0 19583 2025-03-26 05:50:48.204 2025-03-26 05:50:48.204 443583 1044 2 0 19584 2025-03-26 05:59:34.683 2025-03-26 05:59:34.683 443583 1130 3 0 19585 2025-03-26 05:54:05.453 2025-03-26 05:54:05.453 443583 1429 10 0 19586 2025-03-26 06:09:43.231 2025-03-26 06:09:43.231 443583 1692 13 0 19587 2025-03-26 05:54:12.638 2025-03-26 05:54:12.638 443583 2213 81 0 19588 2025-03-26 05:57:35.929 2025-03-26 05:57:35.929 443583 4754 30 0 19589 2025-03-26 05:54:05.453 2025-03-26 05:54:05.453 443583 4763 90 0 19590 2025-03-26 06:39:32.404 2025-03-26 06:39:32.404 443583 5293 2 0 19591 2025-03-26 05:47:35.115 2025-03-26 05:47:35.115 443583 7583 2 0 19592 2025-03-26 05:54:11.204 2025-03-26 05:54:11.204 443583 8168 1 0 19593 2025-03-26 05:49:24.174 2025-03-26 05:49:24.174 443583 9476 45 0 19594 2025-03-26 05:59:35.704 2025-03-26 05:59:35.704 443583 9820 28 0 19595 2025-03-26 05:54:11.204 2025-03-26 05:54:11.204 443583 13865 0 0 19596 2025-03-26 06:13:47.35 2025-03-26 06:13:47.35 443583 13903 19 0 19597 2025-03-26 05:50:48.204 2025-03-26 05:50:48.204 443583 15337 14 0 19598 2025-03-26 05:54:13.544 2025-03-26 05:54:13.544 443583 16284 90 0 19599 2025-03-26 06:00:54.34 2025-03-26 06:00:54.34 443583 16353 19 0 19600 2025-03-26 05:54:11.458 2025-03-26 05:54:11.458 443583 16406 8 0 19601 2025-03-26 05:47:35.115 2025-03-26 05:47:35.115 443583 16424 19 0 19602 2025-03-26 06:37:15.27 2025-03-26 06:37:15.27 443583 17095 90 0 19603 2025-03-26 06:39:32.404 2025-03-26 06:39:32.404 443583 17291 19 0 19604 2025-03-26 06:13:47.35 2025-03-26 06:13:47.35 443583 17944 2 0 19605 2025-03-26 05:49:24.174 2025-03-26 05:49:24.174 443583 18368 5 0 19606 2025-03-26 05:45:51.06 2025-03-26 05:45:51.06 443583 19924 100 0 19607 2025-03-26 05:59:35.704 2025-03-26 05:59:35.704 443583 19952 251 0 19608 2025-03-26 05:54:13.544 2025-03-26 05:54:13.544 443583 20019 810 0 19609 2025-03-26 06:59:05.258 2025-03-26 06:59:05.258 443583 20245 5 0 19610 2025-03-26 05:51:04.934 2025-03-26 05:51:04.934 443583 20500 9 0 19611 2025-03-26 06:17:49.407 2025-03-26 06:17:49.407 443583 20691 1 0 19612 2025-03-26 05:51:04.934 2025-03-26 05:51:04.934 443583 20972 1 0 19613 2025-03-26 06:17:49.407 2025-03-26 06:17:49.407 443583 21040 5 0 19614 2025-03-26 05:54:12.638 2025-03-26 05:54:12.638 443583 21159 9 0 19615 2025-03-26 05:48:40.657 2025-03-26 05:48:40.657 443583 21518 6 0 19616 2025-03-26 05:48:40.657 2025-03-26 05:48:40.657 443583 21585 51 0 19617 2025-03-26 06:09:43.231 2025-03-26 06:09:43.231 443583 21825 113 0 19618 2025-03-26 05:46:24.136 2025-03-26 05:46:24.136 443584 18637 1 0 19619 2025-03-26 05:46:44.561 2025-03-26 05:46:44.561 443585 7827 1 0 19620 2025-03-26 05:50:22.479 2025-03-26 05:50:22.479 443586 714 1 0 19621 2025-03-26 05:50:22.479 2025-03-26 05:50:22.479 443586 9669 9 0 19622 2025-03-26 05:47:01.945 2025-03-26 05:47:01.945 443586 19488 1 0 19623 2025-03-26 06:14:02.802 2025-03-26 06:14:02.802 443587 701 62 0 19624 2025-03-26 05:47:44.398 2025-03-26 05:47:44.398 443587 15806 1 0 19625 2025-03-26 06:14:02.802 2025-03-26 06:14:02.802 443587 20922 7 0 19626 2025-03-26 05:47:59.412 2025-03-26 05:47:59.412 443588 19576 1 0 19627 2025-03-26 05:48:32.758 2025-03-26 05:48:32.758 443588 20180 6 0 19628 2025-03-26 05:48:32.758 2025-03-26 05:48:32.758 443588 20185 51 0 19629 2025-03-26 05:52:32.728 2025-03-26 05:52:32.728 443589 5942 14 0 19630 2025-03-26 05:52:32.728 2025-03-26 05:52:32.728 443589 8713 2 0 19631 2025-03-26 06:03:09.528 2025-03-26 06:03:09.528 443589 10490 1 0 19632 2025-03-26 05:49:03.778 2025-03-26 05:49:03.778 443589 20094 21 0 19633 2025-03-26 06:03:09.528 2025-03-26 06:03:09.528 443589 20683 0 0 19634 2025-03-26 05:49:11.278 2025-03-26 05:49:11.278 443590 837 1 0 19635 2025-03-26 05:49:16.818 2025-03-26 05:49:16.818 443591 1244 1 0 19636 2025-03-26 06:01:54.6 2025-03-26 06:01:54.6 443592 2741 3 0 19637 2025-03-26 05:50:13.274 2025-03-26 05:50:13.274 443592 11996 1 0 19638 2025-03-26 05:55:15.923 2025-03-26 05:55:15.923 443592 17291 1 0 19639 2025-03-26 05:55:15.923 2025-03-26 05:55:15.923 443592 20636 0 0 19640 2025-03-26 06:01:54.6 2025-03-26 06:01:54.6 443592 21422 28 0 19641 2025-03-26 06:35:50.379 2025-03-26 06:35:50.379 443593 706 10 0 19642 2025-03-26 06:34:23.641 2025-03-26 06:34:23.641 443593 836 81 0 19643 2025-03-26 06:35:50.921 2025-03-26 06:35:50.921 443593 1307 90 0 19644 2025-03-26 06:35:50.757 2025-03-26 06:35:50.757 443593 1729 90 0 19645 2025-03-26 05:50:55.801 2025-03-26 05:50:55.801 443593 2039 21 0 19646 2025-03-26 06:35:50.566 2025-03-26 06:35:50.566 443593 2203 10 0 19647 2025-03-26 06:32:50.639 2025-03-26 06:32:50.639 443593 3686 9 0 19648 2025-03-26 06:35:50.216 2025-03-26 06:35:50.216 443593 4395 90 0 19649 2025-03-26 05:54:45.964 2025-03-26 05:54:45.964 443593 5017 19 0 19650 2025-03-26 06:35:50.379 2025-03-26 06:35:50.379 443593 5904 90 0 19651 2025-03-26 06:34:23.641 2025-03-26 06:34:23.641 443593 7772 9 0 19652 2025-03-26 06:03:07.064 2025-03-26 06:03:07.064 443593 7966 1 0 19653 2025-03-26 05:55:59.554 2025-03-26 05:55:59.554 443593 8989 14 0 19654 2025-03-26 06:03:07.064 2025-03-26 06:03:07.064 443593 9969 0 0 19655 2025-03-26 06:35:50.216 2025-03-26 06:35:50.216 443593 10013 10 0 19656 2025-03-26 06:32:50.639 2025-03-26 06:32:50.639 443593 13547 1 0 19657 2025-03-26 07:03:55.338 2025-03-26 07:03:55.338 443593 16670 51 0 19658 2025-03-26 07:03:55.338 2025-03-26 07:03:55.338 443593 19126 6 0 19659 2025-03-26 06:30:12.437 2025-03-26 06:30:12.437 443593 20337 19 0 19660 2025-03-26 06:35:50.921 2025-03-26 06:35:50.921 443593 20614 10 0 19661 2025-03-26 06:35:50.566 2025-03-26 06:35:50.566 443593 20660 90 0 19662 2025-03-26 06:35:50.757 2025-03-26 06:35:50.757 443593 20924 10 0 19663 2025-03-26 05:55:59.554 2025-03-26 05:55:59.554 443593 20998 2 0 19664 2025-03-26 05:53:20.393 2025-03-26 05:53:20.393 443593 21058 27 0 19665 2025-03-26 06:30:12.437 2025-03-26 06:30:12.437 443593 21139 2 0 19666 2025-03-26 05:53:20.393 2025-03-26 05:53:20.393 443593 21334 3 0 19667 2025-03-26 05:54:45.964 2025-03-26 05:54:45.964 443593 21683 2 0 19668 2025-03-26 05:51:05.357 2025-03-26 05:51:05.357 443594 9496 1 0 19669 2025-03-26 05:51:39.379 2025-03-26 05:51:39.379 443595 1650 1 0 19670 2025-03-26 05:51:42.666 2025-03-26 05:51:42.666 443596 16214 1 0 19671 2025-03-26 05:52:19.92 2025-03-26 05:52:19.92 443597 854 1 0 19672 2025-03-26 05:53:17.629 2025-03-26 05:53:17.629 443598 15337 1 0 19673 2025-03-26 05:57:59.238 2025-03-26 05:57:59.238 443599 1617 51 0 19674 2025-03-26 06:33:57.849 2025-03-26 06:33:57.849 443599 7580 19 0 19675 2025-03-26 05:53:18.535 2025-03-26 05:53:18.535 443599 10311 1 0 19676 2025-03-26 06:33:57.849 2025-03-26 06:33:57.849 443599 20745 2 0 19677 2025-03-26 05:57:59.238 2025-03-26 05:57:59.238 443599 20788 6 0 19678 2025-03-26 05:53:31.883 2025-03-26 05:53:31.883 443600 18727 1 0 19679 2025-03-26 06:02:17.651 2025-03-26 06:02:17.651 443601 928 5 0 19680 2025-03-26 06:02:33.648 2025-03-26 06:02:33.648 443601 1705 14 0 19681 2025-03-26 06:02:17.651 2025-03-26 06:02:17.651 443601 5646 1 0 19682 2025-03-26 06:02:33.648 2025-03-26 06:02:33.648 443601 11145 2 0 19683 2025-03-26 05:54:17.985 2025-03-26 05:54:17.985 443601 21070 1 0 19684 2025-03-26 05:55:07.715 2025-03-26 05:55:07.715 443602 678 2 0 19685 2025-03-26 05:58:11.748 2025-03-26 05:58:11.748 443602 1785 0 0 19686 2025-03-26 06:03:02.862 2025-03-26 06:03:02.862 443602 1800 1 0 19687 2025-03-26 05:56:05.213 2025-03-26 05:56:05.213 443602 3213 2 0 19688 2025-03-26 06:38:19.168 2025-03-26 06:38:19.168 443602 5852 2 0 19689 2025-03-26 05:54:48.439 2025-03-26 05:54:48.439 443602 9339 100 0 19690 2025-03-26 06:03:02.862 2025-03-26 06:03:02.862 443602 9450 0 0 19691 2025-03-26 05:57:24.983 2025-03-26 05:57:24.983 443602 9843 5 0 19692 2025-03-26 06:38:19.168 2025-03-26 06:38:19.168 443602 12049 19 0 19693 2025-03-26 05:56:15.505 2025-03-26 05:56:15.505 443602 12222 0 0 19694 2025-03-26 05:57:24.983 2025-03-26 05:57:24.983 443602 16348 45 0 19695 2025-03-26 05:55:07.715 2025-03-26 05:55:07.715 443602 21339 19 0 19696 2025-03-26 05:56:05.213 2025-03-26 05:56:05.213 443602 21666 19 0 19697 2025-03-26 05:54:59.379 2025-03-26 05:54:59.379 443603 716 1 0 19698 2025-03-26 05:55:16.2 2025-03-26 05:55:16.2 443603 9084 57 0 19699 2025-03-26 06:02:05.759 2025-03-26 06:02:05.759 443603 11516 3 0 19700 2025-03-26 05:55:16.2 2025-03-26 05:55:16.2 443603 20059 6 0 19701 2025-03-26 06:02:05.759 2025-03-26 06:02:05.759 443603 21334 28 0 19702 2025-03-26 06:00:13.371 2025-03-26 06:00:13.371 443604 4313 0 0 19703 2025-03-26 05:55:10.787 2025-03-26 05:55:10.787 443604 17714 1 0 19704 2025-03-26 06:00:13.201 2025-03-26 06:00:13.201 443604 20981 0 0 19705 2025-03-26 06:00:13.201 2025-03-26 06:00:13.201 443604 21262 4 0 19706 2025-03-26 06:00:13.371 2025-03-26 06:00:13.371 443604 21279 4 0 19707 2025-03-26 06:14:52.544 2025-03-26 06:14:52.544 443605 2367 2 0 19708 2025-03-26 06:14:52.544 2025-03-26 06:14:52.544 443605 6594 19 0 19709 2025-03-26 05:55:33.685 2025-03-26 05:55:33.685 443605 20706 1 0 19710 2025-03-26 05:55:34.304 2025-03-26 05:55:34.304 443606 7877 1 0 19711 2025-03-26 05:56:17.617 2025-03-26 05:56:17.617 443608 895 1 0 19712 2025-03-26 05:56:39.175 2025-03-26 05:56:39.175 443608 965 0 0 19713 2025-03-26 05:57:16.897 2025-03-26 05:57:16.897 443608 20577 0 0 19714 2025-03-26 05:58:05.427 2025-03-26 05:58:05.427 443609 999 0 0 19715 2025-03-26 05:58:16.454 2025-03-26 05:58:16.454 443609 1803 0 0 19716 2025-03-26 05:59:16.064 2025-03-26 05:59:16.064 443609 12057 0 0 19717 2025-03-26 05:56:40.859 2025-03-26 05:56:40.859 443609 15091 1 0 19718 2025-03-26 06:02:25.459 2025-03-26 06:02:25.459 443610 4654 2 0 19719 2025-03-26 06:02:25.459 2025-03-26 06:02:25.459 443610 9920 15 0 19720 2025-03-26 06:02:25.296 2025-03-26 06:02:25.296 443610 11491 2 0 19721 2025-03-26 06:02:25.296 2025-03-26 06:02:25.296 443610 12049 15 0 19722 2025-03-26 05:57:36.498 2025-03-26 05:57:36.498 443610 19842 1 0 19723 2025-03-26 06:05:38.429 2025-03-26 06:05:38.429 443611 670 90 0 19724 2025-03-26 06:10:25.401 2025-03-26 06:10:25.401 443611 5129 22 0 19725 2025-03-26 06:13:55.504 2025-03-26 06:13:55.504 443611 7746 19 0 19726 2025-03-26 06:05:38.429 2025-03-26 06:05:38.429 443611 9352 10 0 19727 2025-03-26 06:17:58.538 2025-03-26 06:17:58.538 443611 12808 5 0 19728 2025-03-26 05:57:46.212 2025-03-26 05:57:46.212 443611 15147 1 0 19729 2025-03-26 06:12:31.581 2025-03-26 06:12:31.581 443611 17741 57 0 19730 2025-03-26 06:00:24.387 2025-03-26 06:00:24.387 443611 18731 0 0 19731 2025-03-26 06:17:58.538 2025-03-26 06:17:58.538 443611 20306 1 0 19732 2025-03-26 06:13:55.504 2025-03-26 06:13:55.504 443611 21026 2 0 19733 2025-03-26 06:12:31.581 2025-03-26 06:12:31.581 443611 21247 6 0 19734 2025-03-26 06:10:25.401 2025-03-26 06:10:25.401 443611 21391 196 0 19735 2025-03-26 05:58:09.457 2025-03-26 05:58:09.457 443612 10007 1 0 19736 2025-03-26 06:04:12.361 2025-03-26 06:04:12.361 443613 690 0 0 19737 2025-03-26 06:05:33.255 2025-03-26 06:05:33.255 443613 697 8 0 19738 2025-03-26 06:04:10.801 2025-03-26 06:04:10.801 443613 797 3 0 19739 2025-03-26 06:04:11.058 2025-03-26 06:04:11.058 443613 1008 3 0 19740 2025-03-26 06:18:04.622 2025-03-26 06:18:04.622 443613 1135 1 0 19741 2025-03-26 06:28:58.011 2025-03-26 06:28:58.011 443613 1489 1 0 19742 2025-03-26 06:04:11.724 2025-03-26 06:04:11.724 443613 2123 0 0 19743 2025-03-26 06:04:11.907 2025-03-26 06:04:11.907 443613 4177 3 0 19744 2025-03-26 06:04:11.907 2025-03-26 06:04:11.907 443613 8926 0 0 19745 2025-03-26 06:04:12.361 2025-03-26 06:04:12.361 443613 9036 3 0 19746 2025-03-26 06:04:11.562 2025-03-26 06:04:11.562 443613 9349 0 0 19747 2025-03-26 06:04:11.339 2025-03-26 06:04:11.339 443613 9364 3 0 19748 2025-03-26 06:05:33.052 2025-03-26 06:05:33.052 443613 9695 1 0 19749 2025-03-26 06:04:10.801 2025-03-26 06:04:10.801 443613 10398 0 0 19750 2025-03-26 06:04:11.339 2025-03-26 06:04:11.339 443613 11527 0 0 19751 2025-03-26 06:04:11.724 2025-03-26 06:04:11.724 443613 11670 3 0 19752 2025-03-26 06:18:04.622 2025-03-26 06:18:04.622 443613 12921 9 0 19753 2025-03-26 06:18:03.827 2025-03-26 06:18:03.827 443613 13216 9 0 19754 2025-03-26 06:20:01.139 2025-03-26 06:20:01.139 443613 13575 9 0 19755 2025-03-26 06:04:11.058 2025-03-26 06:04:11.058 443613 16929 0 0 19756 2025-03-26 06:05:33.255 2025-03-26 06:05:33.255 443613 17148 1 0 19757 2025-03-26 05:58:42.91 2025-03-26 05:58:42.91 443613 17891 1 0 19758 2025-03-26 06:18:05.554 2025-03-26 06:18:05.554 443613 18174 1 0 19759 2025-03-26 06:04:11.562 2025-03-26 06:04:11.562 443613 18615 3 0 19760 2025-03-26 06:18:05.554 2025-03-26 06:18:05.554 443613 19512 9 0 19761 2025-03-26 06:05:33.052 2025-03-26 06:05:33.052 443613 20603 0 0 19762 2025-03-26 06:28:58.011 2025-03-26 06:28:58.011 443613 21083 0 0 19763 2025-03-26 06:18:03.827 2025-03-26 06:18:03.827 443613 21391 1 0 19764 2025-03-26 06:20:01.139 2025-03-26 06:20:01.139 443613 21422 1 0 19765 2025-03-26 05:58:44.579 2025-03-26 05:58:44.579 443614 770 1 0 19766 2025-03-26 05:58:49.58 2025-03-26 05:58:49.58 443615 20577 1 0 19767 2025-03-26 06:03:44.162 2025-03-26 06:03:44.162 443616 1618 2 0 19768 2025-03-26 06:02:11.629 2025-03-26 06:02:11.629 443616 2111 2 0 19769 2025-03-26 06:02:06.149 2025-03-26 06:02:06.149 443616 2196 2 0 19770 2025-03-26 06:02:06.35 2025-03-26 06:02:06.35 443616 6058 2 0 19771 2025-03-26 07:25:21.117 2025-03-26 07:25:21.117 443616 8535 19 0 19772 2025-03-26 05:59:20.935 2025-03-26 05:59:20.935 443616 9349 1 0 19773 2025-03-26 07:25:21.117 2025-03-26 07:25:21.117 443616 9421 2 0 19774 2025-03-26 06:03:44.162 2025-03-26 06:03:44.162 443616 13467 15 0 19775 2025-03-26 06:02:06.149 2025-03-26 06:02:06.149 443616 14255 15 0 19776 2025-03-26 06:02:11.813 2025-03-26 06:02:11.813 443616 14731 2 0 19777 2025-03-26 06:02:11.813 2025-03-26 06:02:11.813 443616 14939 15 0 19778 2025-03-26 06:03:43.81 2025-03-26 06:03:43.81 443616 16950 2 0 19779 2025-03-26 06:02:06.35 2025-03-26 06:02:06.35 443616 17552 15 0 19780 2025-03-26 06:03:43.81 2025-03-26 06:03:43.81 443616 18923 15 0 19781 2025-03-26 06:02:11.629 2025-03-26 06:02:11.629 443616 20117 15 0 19782 2025-03-26 06:14:22.893 2025-03-26 06:14:22.893 443617 27 9 0 19783 2025-03-26 06:01:36.057 2025-03-26 06:01:36.057 443617 630 10 0 19784 2025-03-26 06:01:18.647 2025-03-26 06:01:18.647 443617 679 69 0 19785 2025-03-26 06:14:24.363 2025-03-26 06:14:24.363 443617 716 9 0 19786 2025-03-26 06:01:20.42 2025-03-26 06:01:20.42 443617 736 8 0 19787 2025-03-26 06:01:19.306 2025-03-26 06:01:19.306 443617 766 69 0 19788 2025-03-26 06:01:18.815 2025-03-26 06:01:18.815 443617 1000 8 0 19789 2025-03-26 06:01:20.653 2025-03-26 06:01:20.653 443617 1549 8 0 19790 2025-03-26 06:01:18.626 2025-03-26 06:01:18.626 443617 1738 69 0 19791 2025-03-26 06:00:41.368 2025-03-26 06:00:41.368 443617 1740 6 0 19792 2025-03-26 06:29:14.672 2025-03-26 06:29:14.672 443617 1890 1 0 19793 2025-03-26 06:01:18.285 2025-03-26 06:14:23.656 443617 1983 17 0 19794 2025-03-26 06:01:21.097 2025-03-26 06:01:21.097 443617 2718 8 0 19795 2025-03-26 06:01:19 2025-03-26 06:01:19 443617 2844 8 0 19796 2025-03-26 06:01:18.285 2025-03-26 06:01:18.285 443617 3400 69 0 19797 2025-03-26 06:01:19.306 2025-03-26 06:01:19.306 443617 5003 8 0 19798 2025-03-26 06:01:20.653 2025-03-26 06:01:20.653 443617 5499 69 0 19799 2025-03-26 06:02:56.758 2025-03-26 06:02:56.758 443617 6137 1 0 19800 2025-03-26 06:01:20.033 2025-03-26 06:01:20.033 443617 6393 8 0 19801 2025-03-26 05:59:42.364 2025-03-26 05:59:42.364 443617 7667 100 0 19802 2025-03-26 06:01:20.033 2025-03-26 06:01:20.033 443617 7746 69 0 19803 2025-03-26 06:05:29.814 2025-03-26 06:05:29.814 443617 8269 31 0 19804 2025-03-26 06:14:03.123 2025-03-26 06:14:03.123 443617 9450 19 0 19805 2025-03-26 06:05:29.814 2025-03-26 06:05:29.814 443617 10013 3 0 19806 2025-03-26 06:01:21.097 2025-03-26 06:01:21.097 443617 11220 69 0 19807 2025-03-26 06:14:22.893 2025-03-26 06:14:22.893 443617 12222 1 0 19808 2025-03-26 06:14:03.123 2025-03-26 06:14:03.123 443617 12245 2 0 19809 2025-03-26 06:01:20.769 2025-03-26 06:01:20.769 443617 12609 8 0 19810 2025-03-26 06:01:19 2025-03-26 06:01:19 443617 13174 69 0 19811 2025-03-26 06:04:22.242 2025-03-26 06:04:22.242 443617 13177 2 0 19812 2025-03-26 06:02:56.758 2025-03-26 06:02:56.758 443617 13574 0 0 19813 2025-03-26 06:01:20.071 2025-03-26 06:01:20.071 443617 15119 8 0 19814 2025-03-26 06:14:24.363 2025-03-26 06:14:24.363 443617 16282 1 0 19815 2025-03-26 06:12:40.537 2025-03-26 06:12:40.537 443617 17124 2 0 19816 2025-03-26 06:14:23.656 2025-03-26 06:14:23.656 443617 17714 1 0 19817 2025-03-26 06:01:18.113 2025-03-26 06:01:18.113 443617 18901 69 0 19818 2025-03-26 06:01:18.113 2025-03-26 06:01:18.113 443617 19094 8 0 19819 2025-03-26 06:01:20.769 2025-03-26 06:01:20.769 443617 19854 69 0 19820 2025-03-26 06:01:19.336 2025-03-26 06:01:19.336 443617 19980 8 0 19821 2025-03-26 06:01:20.071 2025-03-26 06:01:20.071 443617 19996 69 0 19822 2025-03-26 06:01:18.647 2025-03-26 06:01:18.647 443617 20182 8 0 19823 2025-03-26 06:01:20.42 2025-03-26 06:01:20.42 443617 20562 69 0 19824 2025-03-26 06:12:40.537 2025-03-26 06:12:40.537 443617 20683 14 0 19825 2025-03-26 06:01:36.057 2025-03-26 06:29:14.672 443617 20826 99 0 19826 2025-03-26 06:01:19.336 2025-03-26 06:01:19.336 443617 21208 69 0 19827 2025-03-26 06:01:18.626 2025-03-26 06:01:18.626 443617 21254 8 0 19828 2025-03-26 06:00:41.368 2025-03-26 06:00:41.368 443617 21296 51 0 19829 2025-03-26 06:04:22.242 2025-03-26 06:04:22.242 443617 21365 19 0 19830 2025-03-26 06:01:18.815 2025-03-26 06:01:18.815 443617 21482 69 0 19831 2025-03-26 06:13:53.119 2025-03-26 06:13:53.119 443618 11648 0 0 19832 2025-03-26 06:00:11.699 2025-03-26 06:00:11.699 443618 20434 1 0 19833 2025-03-26 06:13:53.119 2025-03-26 06:13:53.119 443618 20841 4 0 19834 2025-03-26 06:00:35.275 2025-03-26 06:00:35.275 443620 1534 1 0 19835 2025-03-26 06:15:05.918 2025-03-26 06:15:05.918 443620 5425 2 0 19836 2025-03-26 06:15:05.918 2025-03-26 06:15:05.918 443620 13566 19 0 19837 2025-03-26 06:02:10.68 2025-03-26 06:02:10.68 443622 18306 1 0 19838 2025-03-26 06:03:08.849 2025-03-26 06:03:08.849 443623 900 2 0 19839 2025-03-26 06:03:08.849 2025-03-26 06:03:08.849 443623 910 19 0 19840 2025-03-26 06:02:20.339 2025-03-26 06:02:20.339 443623 18618 1 0 19841 2025-03-26 06:13:54.006 2025-03-26 06:13:54.006 443624 627 2 0 19842 2025-03-26 06:09:41.319 2025-03-26 06:09:41.319 443624 882 3 0 19843 2025-03-26 06:09:39.992 2025-03-26 06:09:39.992 443624 897 24 0 19844 2025-03-26 06:09:40.148 2025-03-26 06:09:40.148 443624 1298 24 0 19845 2025-03-26 06:09:39.992 2025-03-26 06:09:39.992 443624 1552 3 0 19846 2025-03-26 06:09:39.603 2025-03-26 06:09:39.603 443624 3717 24 0 19847 2025-03-26 06:18:42.571 2025-03-26 06:18:42.571 443624 4128 5 0 19848 2025-03-26 06:09:40.322 2025-03-26 06:09:40.322 443624 7674 3 0 19849 2025-03-26 06:40:06.199 2025-03-26 06:40:06.199 443624 9330 2 0 19850 2025-03-26 06:09:40.322 2025-03-26 06:09:40.322 443624 13042 24 0 19851 2025-03-26 06:09:40.839 2025-03-26 06:09:40.839 443624 15075 27 0 19852 2025-03-26 06:18:42.571 2025-03-26 06:18:42.571 443624 15703 1 0 19853 2025-03-26 06:09:40.148 2025-03-26 06:09:40.148 443624 16309 3 0 19854 2025-03-26 06:09:39.603 2025-03-26 06:09:39.603 443624 16704 3 0 19855 2025-03-26 06:09:40.515 2025-03-26 06:09:40.515 443624 17392 3 0 19856 2025-03-26 06:09:41.319 2025-03-26 06:09:41.319 443624 19488 24 0 19857 2025-03-26 06:09:39.791 2025-03-26 06:09:39.791 443624 19759 3 0 19858 2025-03-26 06:09:39.791 2025-03-26 06:09:39.791 443624 20479 24 0 19859 2025-03-26 06:13:54.006 2025-03-26 06:13:54.006 443624 20939 19 0 19860 2025-03-26 06:09:40.515 2025-03-26 06:09:40.515 443624 20993 24 0 19861 2025-03-26 06:40:06.199 2025-03-26 06:40:06.199 443624 21275 19 0 19862 2025-03-26 06:02:21.908 2025-03-26 06:02:21.908 443624 21287 1 0 19863 2025-03-26 06:02:24.346 2025-03-26 06:02:24.346 443625 20225 1 0 19864 2025-03-26 06:03:09.391 2025-03-26 06:03:09.391 443626 1044 346 0 19865 2025-03-26 06:02:51.657 2025-03-26 06:02:51.657 443626 15103 1 0 19866 2025-03-26 06:03:09.391 2025-03-26 06:03:09.391 443626 21026 38 0 19867 2025-03-26 06:03:05.769 2025-03-26 06:03:05.769 443627 13249 1 0 19868 2025-03-26 06:03:40.795 2025-03-26 06:03:40.795 443627 20687 0 0 19869 2025-03-26 06:03:13.797 2025-03-26 06:03:13.797 443628 1692 1 0 19870 2025-03-26 06:13:54.492 2025-03-26 06:13:54.492 443628 2203 4 0 19871 2025-03-26 06:13:54.492 2025-03-26 06:13:54.492 443628 16942 0 0 19872 2025-03-26 06:03:57.743 2025-03-26 06:03:57.743 443629 686 15 0 19873 2025-03-26 06:03:16.912 2025-03-26 06:03:16.912 443629 2952 10 0 19874 2025-03-26 06:03:57.915 2025-03-26 06:03:57.915 443629 12422 2 0 19875 2025-03-26 06:04:45.548 2025-03-26 06:04:45.548 443629 12516 0 0 19876 2025-03-26 06:04:45.548 2025-03-26 06:04:45.548 443629 16970 1 0 19877 2025-03-26 06:03:57.743 2025-03-26 06:03:57.743 443629 18409 2 0 19878 2025-03-26 06:03:57.915 2025-03-26 06:03:57.915 443629 21585 15 0 19879 2025-03-26 06:03:21.918 2025-03-26 06:03:21.918 443630 6602 1 0 19880 2025-03-26 06:03:24.931 2025-03-26 06:03:24.931 443631 1433 1 0 19881 2025-03-26 06:03:41.646 2025-03-26 06:03:41.646 443632 21418 1 0 19882 2025-03-26 06:33:05.638 2025-03-26 06:33:05.638 443633 9476 19 0 19883 2025-03-26 06:03:49.424 2025-03-26 06:03:49.424 443633 10311 1 0 19884 2025-03-26 06:33:05.638 2025-03-26 06:33:05.638 443633 20596 2 0 19885 2025-03-26 06:03:54.363 2025-03-26 06:03:54.363 443634 761 1 0 19886 2025-03-26 06:08:32.551 2025-03-26 06:08:32.551 443635 730 10 0 19887 2025-03-26 06:08:32.551 2025-03-26 06:08:32.551 443635 2735 1 0 19888 2025-03-26 06:03:58.185 2025-03-26 06:03:58.185 443635 20841 1 0 19889 2025-03-26 06:04:05.601 2025-03-26 06:04:05.601 443636 21400 1 0 19890 2025-03-26 06:04:18.948 2025-03-26 06:04:18.948 443637 2710 1 0 19891 2025-03-26 06:04:30.034 2025-03-26 06:04:30.034 443638 21480 1 0 19892 2025-03-26 06:04:38.424 2025-03-26 06:04:38.424 443639 16594 1 0 19893 2025-03-26 06:04:40.688 2025-03-26 06:04:40.688 443640 13574 1 0 19894 2025-03-26 06:04:42.072 2025-03-26 06:04:42.072 443641 998 10 0 19895 2025-03-26 06:05:03.073 2025-03-26 06:05:03.073 443641 11716 90 0 19896 2025-03-26 06:05:03.073 2025-03-26 06:05:03.073 443641 16410 10 0 19897 2025-03-26 06:05:26.981 2025-03-26 06:05:26.981 443641 20511 19 0 19898 2025-03-26 06:05:26.981 2025-03-26 06:05:26.981 443641 21274 2 0 19899 2025-03-26 06:04:55.876 2025-03-26 06:04:55.876 443642 15326 1 0 19900 2025-03-26 06:05:12.588 2025-03-26 06:05:12.588 443643 16284 1 0 19901 2025-03-26 06:05:31.557 2025-03-26 06:05:31.557 443644 15160 1 0 19902 2025-03-26 06:07:35.511 2025-03-26 06:07:35.511 443644 21083 0 0 19903 2025-03-26 06:40:04.869 2025-03-26 06:40:04.869 443645 732 2 0 19904 2025-03-26 06:09:32.857 2025-03-26 06:09:32.857 443645 836 24 0 19905 2025-03-26 06:13:50.114 2025-03-26 06:13:50.114 443645 979 19 0 19906 2025-03-26 06:09:33.679 2025-03-26 06:09:33.679 443645 1438 3 0 19907 2025-03-26 06:18:10.803 2025-03-26 06:18:10.803 443645 1447 1 0 19908 2025-03-26 06:09:35.837 2025-03-26 06:09:35.837 443645 1712 24 0 19909 2025-03-26 06:09:33.122 2025-03-26 06:09:33.122 443645 1726 3 0 19910 2025-03-26 06:09:36.439 2025-03-26 06:09:36.439 443645 2232 24 0 19911 2025-03-26 06:40:04.869 2025-03-26 06:40:04.869 443645 2519 19 0 19912 2025-03-26 06:09:32.674 2025-03-26 06:09:32.674 443645 8289 24 0 19913 2025-03-26 06:18:10.803 2025-03-26 06:18:10.803 443645 9329 5 0 19914 2025-03-26 06:09:34.821 2025-03-26 06:09:34.821 443645 9331 49 0 19915 2025-03-26 06:13:50.114 2025-03-26 06:13:50.114 443645 9341 2 0 19916 2025-03-26 06:09:34.821 2025-03-26 06:09:34.821 443645 16177 5 0 19917 2025-03-26 06:09:36.439 2025-03-26 06:09:36.439 443645 16536 3 0 19918 2025-03-26 06:09:35.837 2025-03-26 06:09:35.837 443645 16638 3 0 19919 2025-03-26 06:09:32.674 2025-03-26 06:09:32.674 443645 16704 3 0 19920 2025-03-26 06:05:32.844 2025-03-26 06:05:32.844 443645 16753 1 0 19921 2025-03-26 06:09:33.679 2025-03-26 06:09:33.679 443645 17226 24 0 19922 2025-03-26 06:09:33.122 2025-03-26 06:09:33.122 443645 17494 24 0 19923 2025-03-26 06:09:32.857 2025-03-26 06:09:32.857 443645 21228 3 0 19924 2025-03-26 06:07:49.903 2025-03-26 06:07:49.903 443646 630 25 0 19925 2025-03-26 06:07:49.903 2025-03-26 06:07:49.903 443646 739 3 0 19926 2025-03-26 06:07:01.914 2025-03-26 06:07:01.914 443646 6741 0 0 19927 2025-03-26 06:06:09.447 2025-03-26 06:06:09.447 443646 21585 1 0 19928 2025-03-26 06:06:27.2 2025-03-26 06:06:27.2 443647 9969 1 0 19929 2025-03-26 06:13:38.13 2025-03-26 06:13:38.13 443647 10273 55 0 19930 2025-03-26 06:13:38.13 2025-03-26 06:13:38.13 443647 20245 6 0 19931 2025-03-26 06:10:55.982 2025-03-26 06:10:55.982 443649 859 0 0 19932 2025-03-26 06:10:25.769 2025-03-26 06:10:25.769 443649 1401 0 0 19933 2025-03-26 06:07:35.319 2025-03-26 06:07:35.319 443649 10693 1 0 19934 2025-03-26 06:07:48.07 2025-03-26 06:07:48.07 443649 18528 0 0 19935 2025-03-26 06:08:12.51 2025-03-26 06:08:12.51 443650 18525 1 0 19936 2025-03-26 06:08:21.842 2025-03-26 06:08:21.842 443651 2151 1 0 19937 2025-03-26 06:29:17.806 2025-03-26 06:29:17.806 443651 6202 1 0 19938 2025-03-26 06:46:44.207 2025-03-26 06:46:44.207 443651 14657 1 0 19939 2025-03-26 06:46:44.207 2025-03-26 06:46:44.207 443651 15049 0 0 19940 2025-03-26 06:29:17.806 2025-03-26 06:29:17.806 443651 15662 0 0 19941 2025-03-26 06:19:36.617 2025-03-26 06:19:36.617 443651 21262 1 0 19942 2025-03-26 06:19:36.617 2025-03-26 06:19:36.617 443651 21506 9 0 19943 2025-03-26 06:09:59.024 2025-03-26 06:09:59.024 443652 826 51 0 19944 2025-03-26 06:09:10.019 2025-03-26 06:09:10.019 443652 1454 1 0 19945 2025-03-26 06:09:59.024 2025-03-26 06:09:59.024 443652 5942 6 0 19946 2025-03-26 06:10:31.045 2025-03-26 06:10:31.045 443653 7960 1 0 19947 2025-03-26 06:10:58.739 2025-03-26 06:10:58.739 443654 1751 1 0 19948 2025-03-26 06:41:25.295 2025-03-26 06:41:25.295 443655 937 2 0 19949 2025-03-26 06:11:02.651 2025-03-26 06:11:02.651 443655 9992 100 0 19950 2025-03-26 06:41:25.295 2025-03-26 06:41:25.295 443655 11609 19 0 19951 2025-03-26 06:11:08.633 2025-03-26 06:11:08.633 443656 4062 1 0 19952 2025-03-26 06:19:13.953 2025-03-26 06:19:13.953 443656 5758 1 0 19953 2025-03-26 06:19:13.953 2025-03-26 06:19:13.953 443656 21178 10 0 19954 2025-03-26 06:11:11.332 2025-03-26 06:11:11.332 443657 1605 1 0 19955 2025-03-26 06:11:41.837 2025-03-26 06:11:41.837 443658 10979 1 0 19956 2025-03-26 06:18:51.02 2025-03-26 06:18:51.02 443658 18734 1 0 19957 2025-03-26 06:18:51.02 2025-03-26 06:18:51.02 443658 20680 5 0 19958 2025-03-26 06:12:55.412 2025-03-26 06:12:55.412 443659 993 9 0 19959 2025-03-26 06:11:55.544 2025-03-26 06:11:55.544 443659 1658 1 0 19960 2025-03-26 06:12:55.412 2025-03-26 06:12:55.412 443659 9366 81 0 19961 2025-03-26 06:12:54.5 2025-03-26 06:12:54.5 443659 11144 0 0 19962 2025-03-26 06:24:52.961 2025-03-26 06:24:52.961 443659 11153 2 0 19963 2025-03-26 06:12:54.704 2025-03-26 06:12:54.704 443659 11992 8 0 19964 2025-03-26 06:24:54.987 2025-03-26 06:24:54.987 443659 18313 15 0 19965 2025-03-26 06:24:52.961 2025-03-26 06:24:52.961 443659 20381 15 0 19966 2025-03-26 06:24:54.987 2025-03-26 06:24:54.987 443659 20751 2 0 19967 2025-03-26 06:12:54.704 2025-03-26 06:12:54.704 443659 20802 1 0 19968 2025-03-26 06:12:54.5 2025-03-26 06:12:54.5 443659 20980 1 0 19969 2025-03-26 06:12:28.06 2025-03-26 06:12:28.06 443660 5776 1 0 19970 2025-03-26 06:14:50.171 2025-03-26 06:14:50.171 443661 766 1 0 19971 2025-03-26 06:18:15.009 2025-03-26 06:18:15.009 443662 2111 6 0 19972 2025-03-26 06:15:53.503 2025-03-26 06:15:53.503 443662 4624 1 0 19973 2025-03-26 06:18:15.009 2025-03-26 06:18:15.009 443662 18743 51 0 19974 2025-03-26 06:20:20.037 2025-03-26 06:20:20.037 443663 9 1 0 19975 2025-03-26 06:20:20.037 2025-03-26 06:20:20.037 443663 6260 9 0 19976 2025-03-26 06:29:07.866 2025-03-26 06:29:07.866 443663 9367 1 0 19977 2025-03-26 06:29:07.866 2025-03-26 06:29:07.866 443663 16424 0 0 19978 2025-03-26 06:15:55.001 2025-03-26 06:15:55.001 443663 21218 1 0 19979 2025-03-26 06:33:03.645 2025-03-26 06:33:03.645 443664 1745 2 0 19980 2025-03-26 06:16:04.607 2025-03-26 06:16:04.607 443664 20597 1 0 19981 2025-03-26 06:33:03.645 2025-03-26 06:33:03.645 443664 21037 19 0 19982 2025-03-26 06:16:07.402 2025-03-26 06:16:07.402 443665 20655 1 0 19983 2025-03-26 06:25:03.506 2025-03-26 06:25:03.506 443667 954 15 0 19984 2025-03-26 06:25:03.277 2025-03-26 06:25:03.277 443667 1609 2 0 19985 2025-03-26 06:25:03.642 2025-03-26 06:25:03.642 443667 6777 2 0 19986 2025-03-26 07:03:56.193 2025-03-26 07:03:56.193 443667 15115 6 0 19987 2025-03-26 06:21:47.794 2025-03-26 06:21:47.794 443667 15526 9 0 19988 2025-03-26 06:25:03.506 2025-03-26 06:25:03.506 443667 15690 2 0 19989 2025-03-26 06:19:52.376 2025-03-26 06:19:52.376 443667 16948 210 0 19990 2025-03-26 06:25:03.277 2025-03-26 06:25:03.277 443667 17209 15 0 19991 2025-03-26 07:03:56.193 2025-03-26 07:03:56.193 443667 19484 51 0 19992 2025-03-26 06:21:47.794 2025-03-26 06:21:47.794 443667 20337 1 0 19993 2025-03-26 06:25:03.642 2025-03-26 06:25:03.642 443667 21373 15 0 19994 2025-03-26 06:26:08.321 2025-03-26 06:26:08.321 443667 21393 0 0 19995 2025-03-26 06:20:13.573 2025-03-26 06:20:13.573 443668 2459 0 0 19996 2025-03-26 06:20:00.954 2025-03-26 06:20:00.954 443668 15510 1 0 19997 2025-03-26 06:28:50.887 2025-03-26 06:28:50.887 443669 1209 1 0 19998 2025-03-26 06:28:50.887 2025-03-26 06:28:50.887 443669 15386 0 0 19999 2025-03-26 06:21:36.672 2025-03-26 06:21:36.672 443669 21114 1 0 20000 2025-03-26 06:21:51.083 2025-03-26 06:21:51.083 443670 16270 1 0 20001 2025-03-26 06:28:29.781 2025-03-26 06:28:29.781 443671 896 0 0 20002 2025-03-26 06:24:48.566 2025-03-26 06:24:48.566 443671 986 1 0 20003 2025-03-26 06:28:29.781 2025-03-26 06:28:29.781 443671 12609 1 0 20004 2025-03-26 06:29:12.067 2025-03-26 06:29:12.067 443672 4292 0 0 20005 2025-03-26 06:29:12.067 2025-03-26 06:29:12.067 443672 17316 1 0 20006 2025-03-26 06:25:30.494 2025-03-26 06:25:30.494 443672 20687 1 0 20007 2025-03-26 06:25:50.052 2025-03-26 06:25:50.052 443673 12721 1 0 20008 2025-03-26 06:26:12.842 2025-03-26 06:26:12.842 443674 17041 1 0 20009 2025-03-26 06:27:22.378 2025-03-26 06:27:22.378 443675 21373 1 0 20010 2025-03-26 06:28:42.938 2025-03-26 06:28:42.938 443676 621 1 0 20011 2025-03-26 06:28:42.938 2025-03-26 06:28:42.938 443676 5942 0 0 20012 2025-03-26 06:30:09.52 2025-03-26 06:30:09.52 443676 16336 1 0 20013 2025-03-26 06:27:58.043 2025-03-26 06:27:58.043 443676 21042 1 0 20014 2025-03-26 06:30:09.52 2025-03-26 06:30:09.52 443676 21829 9 0 20015 2025-03-26 06:28:03.944 2025-03-26 06:28:03.944 443677 16536 1 0 20016 2025-03-26 06:29:00.044 2025-03-26 06:29:00.044 443678 11967 1 0 20017 2025-03-26 06:29:00.044 2025-03-26 06:29:00.044 443678 13042 9 0 20018 2025-03-26 06:30:10.885 2025-03-26 06:30:10.885 443678 14015 19 0 20019 2025-03-26 06:28:48.251 2025-03-26 06:28:48.251 443678 17891 210 0 20020 2025-03-26 06:30:10.885 2025-03-26 06:30:10.885 443678 18330 2 0 20021 2025-03-26 06:31:05.318 2025-03-26 06:31:05.318 443679 622 62 0 20022 2025-03-26 06:31:04.236 2025-03-26 06:31:04.236 443679 678 62 0 20023 2025-03-26 06:30:37.003 2025-03-26 06:30:37.003 443679 694 7 0 20024 2025-03-26 06:30:37.616 2025-03-26 06:30:37.616 443679 733 62 0 20025 2025-03-26 06:30:24.549 2025-03-26 06:30:24.549 443679 1429 62 0 20026 2025-03-26 06:30:37.219 2025-03-26 06:30:37.219 443679 1469 14 0 20027 2025-03-26 06:30:24.317 2025-03-26 06:30:24.317 443679 1772 62 0 20028 2025-03-26 06:31:04.236 2025-03-26 06:31:04.236 443679 1836 7 0 20029 2025-03-26 06:31:05.318 2025-03-26 06:31:05.318 443679 5036 7 0 20030 2025-03-26 06:30:36.807 2025-03-26 06:30:36.807 443679 5865 7 0 20031 2025-03-26 06:30:24.317 2025-03-26 06:30:24.317 443679 6360 7 0 20032 2025-03-26 06:30:25.961 2025-03-26 06:30:25.961 443679 6382 7 0 20033 2025-03-26 06:31:05.174 2025-03-26 06:31:05.174 443679 7960 7 0 20034 2025-03-26 06:30:37.003 2025-03-26 06:30:37.003 443679 9833 62 0 20035 2025-03-26 06:31:05.174 2025-03-26 06:31:05.174 443679 12821 62 0 20036 2025-03-26 06:30:37.219 2025-03-26 06:30:37.219 443679 14225 124 0 20037 2025-03-26 06:29:25.695 2025-03-26 06:29:25.695 443679 15719 1 0 20038 2025-03-26 06:30:37.616 2025-03-26 06:30:37.616 443679 17147 7 0 20039 2025-03-26 06:30:24.549 2025-03-26 06:30:24.549 443679 18265 7 0 20040 2025-03-26 06:30:24.211 2025-03-26 06:30:24.211 443679 20881 14 0 20041 2025-03-26 06:30:24.211 2025-03-26 06:30:24.211 443679 21214 124 0 20042 2025-03-26 06:30:36.807 2025-03-26 06:30:36.807 443679 21356 62 0 20043 2025-03-26 06:30:19.451 2025-03-26 06:30:19.451 443680 9307 1 0 20044 2025-03-26 06:30:35.603 2025-03-26 06:30:35.603 443680 21242 3 0 20045 2025-03-26 06:30:35.603 2025-03-26 06:30:35.603 443680 21281 27 0 20046 2025-03-26 06:31:37.695 2025-03-26 06:31:37.695 443681 8505 5 0 20047 2025-03-26 06:34:07.954 2025-03-26 06:34:07.954 443681 12946 1 0 20048 2025-03-26 06:30:42.935 2025-03-26 06:30:42.935 443681 16296 1 0 20049 2025-03-26 06:34:07.954 2025-03-26 06:34:07.954 443681 20026 0 0 20050 2025-03-26 06:31:37.695 2025-03-26 06:31:37.695 443681 21670 1 0 20051 2025-03-26 06:30:45.782 2025-03-26 06:30:45.782 443682 20490 1 0 20052 2025-03-26 06:41:16.195 2025-03-26 06:41:16.195 443683 1505 100 0 20053 2025-03-26 06:59:13.826 2025-03-26 06:59:13.826 443683 2528 81 0 20054 2025-03-26 06:59:13.826 2025-03-26 06:59:13.826 443683 4313 9 0 20055 2025-03-26 07:03:50.754 2025-03-26 07:03:50.754 443683 8508 90 0 20056 2025-03-26 06:31:45.461 2025-03-26 06:31:45.461 443683 12911 1 0 20057 2025-03-26 06:31:34.771 2025-03-26 06:31:34.771 443683 18393 420 0 20058 2025-03-26 07:03:50.754 2025-03-26 07:03:50.754 443683 18468 810 0 20059 2025-03-26 06:31:45.461 2025-03-26 06:31:45.461 443683 19126 9 0 20060 2025-03-26 06:41:16.195 2025-03-26 06:41:16.195 443683 20751 11 0 20061 2025-03-26 06:32:58.478 2025-03-26 06:32:58.478 443684 656 51 0 20062 2025-03-26 06:32:12.271 2025-03-26 06:32:12.271 443684 899 1 0 20063 2025-03-26 06:32:58.478 2025-03-26 06:32:58.478 443684 18727 6 0 20064 2025-03-26 06:54:56.382 2025-03-26 06:54:56.382 443685 633 6 0 20065 2025-03-26 06:33:31.379 2025-03-26 06:33:31.379 443685 1424 10 0 20066 2025-03-26 06:54:56.382 2025-03-26 06:54:56.382 443685 16660 51 0 20067 2025-03-26 06:37:29.736 2025-03-26 06:37:29.736 443685 17316 1 0 20068 2025-03-26 06:37:29.736 2025-03-26 06:37:29.736 443685 21514 9 0 20069 2025-03-26 06:33:36.692 2025-03-26 06:33:36.692 443686 13076 1 0 20070 2025-03-26 06:33:49.353 2025-03-26 06:33:49.353 443687 17106 1 0 20071 2025-03-26 06:35:02.204 2025-03-26 06:35:02.204 443687 19217 9 0 20072 2025-03-26 06:35:02.204 2025-03-26 06:35:02.204 443687 21571 1 0 20073 2025-03-26 06:34:41.721 2025-03-26 06:34:41.721 443688 17568 1 0 20074 2025-03-26 06:34:45.285 2025-03-26 06:34:45.285 443689 1836 1 0 20075 2025-03-26 06:35:48.592 2025-03-26 06:35:48.592 443689 9655 1 0 20076 2025-03-26 06:35:48.592 2025-03-26 06:35:48.592 443689 15045 9 0 20077 2025-03-26 06:35:45.813 2025-03-26 06:35:45.813 443689 19303 1 0 20078 2025-03-26 06:35:45.813 2025-03-26 06:35:45.813 443689 20854 0 0 20079 2025-03-26 06:35:47.931 2025-03-26 06:35:47.931 443690 17392 1 0 20080 2025-03-26 06:35:51.041 2025-03-26 06:35:51.041 443691 20370 1 0 20081 2025-03-26 06:36:11.115 2025-03-26 06:36:11.115 443691 21647 0 0 20082 2025-03-26 06:35:57.249 2025-03-26 06:35:57.249 443692 9426 1 0 20083 2025-03-26 06:36:14.058 2025-03-26 06:36:14.058 443693 1429 1 0 20084 2025-03-26 06:36:38.204 2025-03-26 06:36:38.204 443693 20157 0 0 20085 2025-03-26 06:36:14.393 2025-03-26 06:36:14.393 443694 12808 1 0 20086 2025-03-26 06:36:45.328 2025-03-26 06:36:45.328 443695 21140 1 0 20087 2025-03-26 06:38:18.893 2025-03-26 06:38:18.893 443697 11523 69 0 20088 2025-03-26 06:58:30.851 2025-03-26 06:58:30.851 443698 1571 1 0 20089 2025-03-26 06:58:30.851 2025-03-26 06:58:30.851 443698 2437 7 0 20090 2025-03-26 06:43:17.508 2025-03-26 06:43:17.508 443699 822 2 0 20091 2025-03-26 06:39:56.276 2025-03-26 06:39:56.276 443699 2206 9 0 20092 2025-03-26 06:38:40.561 2025-03-26 06:38:40.561 443699 13249 1 0 20093 2025-03-26 06:39:56.276 2025-03-26 06:39:56.276 443699 13327 1 0 20094 2025-03-26 06:43:17.508 2025-03-26 06:43:17.508 443699 16406 15 0 20095 2025-03-26 06:39:55.042 2025-03-26 06:39:55.042 443700 1717 1 0 20096 2025-03-26 06:40:21.259 2025-03-26 06:40:21.259 443701 994 1 0 20097 2025-03-26 06:40:58.42 2025-03-26 06:40:58.42 443701 9833 1 0 20098 2025-03-26 06:40:58.42 2025-03-26 06:40:58.42 443701 13055 9 0 20099 2025-03-26 06:43:16.587 2025-03-26 06:43:16.587 443702 7818 2 0 20100 2025-03-26 06:40:55.157 2025-03-26 06:40:55.157 443702 13169 1 0 20101 2025-03-26 06:43:16.587 2025-03-26 06:43:16.587 443702 19806 15 0 20102 2025-03-26 06:41:08.069 2025-03-26 06:41:08.069 443703 4062 1 0 20103 2025-03-26 06:41:30.067 2025-03-26 06:41:30.067 443704 1213 10 0 20104 2025-03-26 06:42:14.938 2025-03-26 06:42:14.938 443705 18068 0 0 20105 2025-03-26 06:41:35.086 2025-03-26 06:41:35.086 443705 21810 1 0 20106 2025-03-26 06:41:53.082 2025-03-26 06:41:53.082 443706 9262 1 0 20107 2025-03-26 06:42:50.442 2025-03-26 06:42:50.442 443707 12721 1 0 20108 2025-03-26 06:43:26.666 2025-03-26 06:43:26.666 443709 705 1 0 20109 2025-03-26 07:02:01.69 2025-03-26 07:02:01.69 443711 1008 8 0 20110 2025-03-26 06:47:18.92 2025-03-26 06:47:18.92 443711 5761 1 0 20111 2025-03-26 07:02:01.69 2025-03-26 07:02:01.69 443711 8400 1 0 20112 2025-03-26 06:46:42.193 2025-03-26 06:46:42.193 443711 12507 0 0 20113 2025-03-26 06:47:18.92 2025-03-26 06:47:18.92 443711 13878 9 0 20114 2025-03-26 06:46:19.538 2025-03-26 06:46:19.538 443711 17109 1 0 20115 2025-03-26 07:24:58.989 2025-03-26 07:24:58.989 443712 738 1 0 20116 2025-03-26 07:06:04.371 2025-03-26 07:06:04.371 443712 9353 15 0 20117 2025-03-26 07:24:58.989 2025-03-26 07:24:58.989 443712 14280 0 0 20118 2025-03-26 07:06:04.371 2025-03-26 07:06:04.371 443712 15147 2 0 20119 2025-03-26 06:49:34.291 2025-03-26 06:49:34.291 443713 11454 0 0 20120 2025-03-26 06:51:31.163 2025-03-26 06:51:31.163 443713 11942 51 0 20121 2025-03-26 06:48:53.653 2025-03-26 06:48:53.653 443713 14271 0 0 20122 2025-03-26 06:51:31.163 2025-03-26 06:51:31.163 443713 16440 6 0 20123 2025-03-26 06:52:10.355 2025-03-26 06:52:10.355 443716 2514 1 0 20124 2025-03-26 06:52:10.355 2025-03-26 06:52:10.355 443716 15075 9 0 20125 2025-03-26 07:20:31.843 2025-03-26 07:20:31.843 443717 715 2 0 20126 2025-03-26 07:20:31.843 2025-03-26 07:20:31.843 443717 12169 19 0 20127 2025-03-26 06:52:26.014 2025-03-26 06:52:26.014 443718 9335 1 0 20128 2025-03-26 06:52:42.906 2025-03-26 06:52:42.906 443718 16653 1 0 20129 2025-03-26 06:52:42.906 2025-03-26 06:52:42.906 443718 21003 9 0 20130 2025-03-26 06:55:05.684 2025-03-26 06:55:05.684 443720 7587 9 0 20131 2025-03-26 06:55:05.684 2025-03-26 06:55:05.684 443720 19655 1 0 20132 2025-03-26 06:54:31.01 2025-03-26 06:54:31.01 443721 12738 1 0 20133 2025-03-26 06:58:12.136 2025-03-26 06:58:12.136 443723 654 0 0 20134 2025-03-26 06:55:15.199 2025-03-26 06:55:15.199 443723 6360 1 0 20135 2025-03-26 06:55:55.564 2025-03-26 06:55:55.564 443723 15510 0 0 20136 2025-03-26 06:57:14.898 2025-03-26 06:57:14.898 443723 21482 0 0 20137 2025-03-26 06:55:51.905 2025-03-26 06:55:51.905 443724 5752 2 0 20138 2025-03-26 06:55:51.905 2025-03-26 06:55:51.905 443724 20816 18 0 20139 2025-03-26 06:55:17.206 2025-03-26 06:55:17.206 443724 21815 1 0 20140 2025-03-26 06:55:50.96 2025-03-26 06:55:50.96 443725 21805 1 0 20141 2025-03-26 07:05:14.766 2025-03-26 07:05:14.766 443726 708 19 0 20142 2025-03-26 07:05:14.766 2025-03-26 07:05:14.766 443726 1468 2 0 20143 2025-03-26 06:56:21.627 2025-03-26 06:56:21.627 443726 11477 1 0 20144 2025-03-26 07:05:24.604 2025-03-26 07:05:24.604 443729 14213 1 0 20145 2025-03-26 07:05:24.604 2025-03-26 07:05:24.604 443729 17218 5 0 20146 2025-03-26 07:05:08.999 2025-03-26 07:05:08.999 443730 6463 0 0 20147 2025-03-26 07:04:14.965 2025-03-26 07:04:14.965 443736 17392 100 0 20148 2025-03-26 07:05:16.218 2025-03-26 07:05:16.218 443738 7654 1 0 20149 2025-03-26 07:05:21.531 2025-03-26 07:05:21.531 443739 20599 1 0 20150 2025-03-26 07:22:20.451 2025-03-26 07:22:20.451 443743 12346 1 0 20151 2025-03-26 07:22:20.451 2025-03-26 07:22:20.451 443743 21060 7 0 20152 2025-03-26 07:12:53.444 2025-03-26 07:12:53.444 443747 9334 0 0 20153 2025-03-26 07:12:53.444 2025-03-26 07:12:53.444 443747 20614 1 0 20154 2025-03-26 07:18:34.3 2025-03-26 07:18:34.3 443750 2681 0 0 20155 2025-03-26 07:12:34.118 2025-03-26 07:12:34.118 443750 17147 1 0 20156 2025-03-26 07:18:34.3 2025-03-26 07:18:34.3 443750 20981 1 0 20157 2025-03-26 07:15:00.864 2025-03-26 07:15:00.864 443754 3656 1 0 20158 2025-03-26 07:31:07.589 2025-03-26 07:31:07.589 443758 7674 2 0 20159 2025-03-26 07:18:41.175 2025-03-26 07:18:41.175 443759 16562 1 0 20160 2025-03-26 07:18:41.175 2025-03-26 07:18:41.175 443759 17696 9 0 20161 2025-03-26 07:21:38.956 2025-03-26 07:21:38.956 443762 4079 0 0 20162 2025-03-26 07:22:49.334 2025-03-26 07:22:49.334 443762 20490 0 0 20163 2025-03-26 07:29:27.079 2025-03-26 07:29:27.079 443768 1673 15 0 20164 2025-03-26 07:29:27.079 2025-03-26 07:29:27.079 443768 5829 2 0 20165 2025-03-26 07:29:44.979 2025-03-26 07:29:44.979 443771 658 1 0 20166 2025-03-26 07:22:54.301 2025-03-26 07:22:54.301 443771 5978 1 0 20167 2025-03-26 07:29:44.979 2025-03-26 07:29:44.979 443771 11522 9 0 20168 2025-03-26 07:24:44.928 2025-03-26 07:24:44.928 443775 14015 100 0 20169 2025-03-29 08:43:46.366 2025-03-29 08:43:46.366 444755 736 19 0 20170 2025-03-29 08:43:46.366 2025-03-29 08:43:46.366 444755 14255 2 0 20171 2025-03-29 08:44:38.5 2025-03-29 08:44:38.5 444764 9476 19 0 20172 2025-03-29 08:44:38.5 2025-03-29 08:44:38.5 444764 20660 2 0 20173 2025-03-29 08:44:45.097 2025-03-29 08:44:45.097 444806 9107 19 0 20174 2025-03-29 08:44:45.097 2025-03-29 08:44:45.097 444806 21803 2 0 20175 2025-03-29 08:44:22.2 2025-03-29 08:44:22.2 444842 2088 19 0 20176 2025-03-29 08:44:22.2 2025-03-29 08:44:22.2 444842 10311 2 0 20177 2025-03-29 08:44:45.802 2025-03-29 08:44:45.802 444866 19198 19 0 20178 2025-03-29 08:44:45.802 2025-03-29 08:44:45.802 444866 19796 2 0 20179 2025-03-29 08:44:24.502 2025-03-29 08:44:24.502 444916 1114 19 0 20180 2025-03-29 08:44:24.502 2025-03-29 08:44:24.502 444916 2156 2 0 20181 2025-03-29 08:44:37.595 2025-03-29 08:44:37.595 445222 16356 19 0 20182 2025-03-29 08:44:37.595 2025-03-29 08:44:37.595 445222 19829 2 0 20183 2025-03-28 12:29:23.54 2025-03-28 12:29:23.54 445505 1319 2 0 20184 2025-03-28 12:29:23.54 2025-03-28 12:29:23.54 445505 10102 19 0 20185 2025-03-29 08:44:44.736 2025-03-29 08:44:44.736 445589 1512 2 0 20186 2025-03-29 08:44:44.736 2025-03-29 08:44:44.736 445589 2583 19 0 20187 2025-03-29 08:44:27.489 2025-03-29 08:44:27.489 446169 1310 2 0 20188 2025-03-29 08:44:27.489 2025-03-29 08:44:27.489 446169 19537 19 0 20189 2025-03-29 08:44:38.044 2025-03-29 08:44:38.044 446210 8284 19 0 20190 2025-03-29 08:44:38.044 2025-03-29 08:44:38.044 446210 20922 2 0 20191 2025-03-28 12:23:33.506 2025-03-28 12:23:33.506 446301 993 2 0 20192 2025-03-28 12:23:34.036 2025-03-28 12:23:34.036 446301 6717 2 0 20193 2025-03-28 12:23:34.036 2025-03-28 12:23:34.036 446301 9332 19 0 20194 2025-03-28 12:23:33.129 2025-03-28 12:23:33.129 446301 18526 2 0 20195 2025-03-28 12:23:33.506 2025-03-28 12:23:33.506 446301 20201 19 0 20196 2025-03-28 12:23:33.129 2025-03-28 12:23:33.129 446301 20691 19 0 20197 2025-03-28 10:09:44.025 2025-03-28 10:09:44.025 446358 4345 62 0 20198 2025-03-28 10:09:44.936 2025-03-28 10:09:44.936 446358 18188 7 0 20199 2025-03-28 10:09:44.936 2025-03-28 10:09:44.936 446358 18727 62 0 20200 2025-03-28 10:09:44.025 2025-03-28 10:09:44.025 446358 19494 7 0 20201 2025-03-28 10:52:18.177 2025-03-28 10:52:18.177 446393 1439 2 0 20202 2025-03-28 10:52:18.177 2025-03-28 10:52:18.177 446393 9705 19 0 20203 2025-03-28 11:12:43.645 2025-03-28 11:12:43.645 446406 15367 450 0 20204 2025-03-28 11:12:43.645 2025-03-28 11:12:43.645 446406 21485 50 0 20205 2025-03-29 09:21:22.97 2025-03-29 09:21:22.97 446430 673 19 0 20206 2025-03-29 09:21:22.97 2025-03-29 09:21:22.97 446430 1738 2 0 20207 2025-03-29 08:44:35.501 2025-03-29 08:44:35.501 446434 21208 19 0 20208 2025-03-29 08:44:35.501 2025-03-29 08:44:35.501 446434 21520 2 0 20209 2025-03-28 12:16:24.766 2025-03-28 12:16:24.766 446440 16456 9 0 20210 2025-03-28 12:16:24.766 2025-03-28 12:16:24.766 446440 20291 1 0 20211 2025-03-28 12:39:56.763 2025-03-28 12:39:56.763 446452 8508 3 0 20212 2025-03-28 12:39:56.763 2025-03-28 12:39:56.763 446452 8870 0 0 20213 2025-03-28 11:27:01.723 2025-03-28 11:27:01.723 446464 2583 10 0 20214 2025-03-28 11:27:01.723 2025-03-28 11:27:01.723 446464 18601 1 0 20215 2025-03-28 11:27:02.491 2025-03-28 11:27:02.491 446465 768 1 0 20216 2025-03-28 11:27:02.491 2025-03-28 11:27:02.491 446465 20606 10 0 20217 2025-03-28 10:55:54.055 2025-03-28 10:55:54.055 446486 18306 5 0 20218 2025-03-28 10:55:54.055 2025-03-28 10:55:54.055 446486 20826 45 0 20219 2025-03-28 12:35:35.8 2025-03-28 12:35:35.8 446526 9350 1 0 20220 2025-03-28 10:03:22.513 2025-03-28 10:03:22.513 446547 1713 0 0 20221 2025-03-28 10:03:22.513 2025-03-28 10:03:22.513 446547 20657 1 0 20222 2025-03-28 10:19:10.967 2025-03-28 10:19:10.967 446575 14489 10 0 20223 2025-03-28 10:19:10.967 2025-03-28 10:19:10.967 446575 16353 90 0 20224 2025-03-28 12:24:31.816 2025-03-28 12:24:31.816 446602 7185 2 0 20225 2025-03-28 11:50:54.254 2025-03-28 11:50:54.254 446602 18608 19 0 20226 2025-03-28 12:24:31.816 2025-03-28 12:24:31.816 446602 21064 19 0 20227 2025-03-28 11:50:54.254 2025-03-28 11:50:54.254 446602 21771 2 0 20228 2025-03-28 11:50:53.241 2025-03-28 11:50:53.241 446603 1130 19 0 20229 2025-03-28 11:50:52.345 2025-03-28 11:50:52.345 446603 13076 19 0 20230 2025-03-28 11:50:53.241 2025-03-28 11:50:53.241 446603 15192 2 0 20231 2025-03-28 11:50:52.345 2025-03-28 11:50:52.345 446603 21701 2 0 20232 2025-03-28 12:13:05.627 2025-03-28 12:13:05.627 446609 1697 2 0 20233 2025-03-28 12:13:05.627 2025-03-28 12:13:05.627 446609 16250 19 0 20234 2025-03-28 11:24:53.915 2025-03-28 11:24:53.915 446623 7903 9 0 20235 2025-03-28 11:24:53.915 2025-03-28 11:24:53.915 446623 13378 1 0 20236 2025-03-28 11:50:49.542 2025-03-28 11:50:49.542 446628 640 19 0 20237 2025-03-28 12:27:15.48 2025-03-28 12:27:15.48 446628 1114 2 0 20238 2025-03-28 12:27:16.687 2025-03-28 12:27:16.687 446628 1272 2 0 20239 2025-03-28 10:14:49.022 2025-03-28 10:14:49.022 446628 2459 91 0 20240 2025-03-28 10:14:49.022 2025-03-28 10:14:49.022 446628 7580 10 0 20241 2025-03-28 12:27:16.687 2025-03-28 12:27:16.687 446628 10611 19 0 20242 2025-03-28 12:27:15.48 2025-03-28 12:27:15.48 446628 19126 19 0 20243 2025-03-28 11:50:49.542 2025-03-28 11:50:49.542 446628 21159 2 0 20244 2025-03-28 10:55:46.795 2025-03-28 10:55:46.795 446657 16970 45 0 20245 2025-03-28 10:55:46.795 2025-03-28 10:55:46.795 446657 17798 5 0 20246 2025-03-28 11:50:50.272 2025-03-28 11:50:50.272 446659 1173 19 0 20247 2025-03-28 11:50:50.272 2025-03-28 11:50:50.272 446659 1468 2 0 20248 2025-03-28 10:33:36.237 2025-03-28 10:33:36.237 446662 10731 0 0 20249 2025-03-28 10:33:36.429 2025-03-28 10:33:36.429 446662 20979 8 0 20250 2025-03-28 10:33:36.429 2025-03-28 10:33:36.429 446662 20980 1 0 20251 2025-03-28 10:33:36.237 2025-03-28 10:33:36.237 446662 21178 1 0 20252 2025-03-28 10:33:33.502 2025-03-28 10:33:33.502 446683 1960 0 0 20253 2025-03-28 10:33:33.681 2025-03-28 10:33:33.681 446683 15045 1 0 20254 2025-03-28 10:33:33.502 2025-03-28 10:33:33.502 446683 17953 1 0 20255 2025-03-28 10:33:33.681 2025-03-28 10:33:33.681 446683 21578 8 0 20256 2025-03-28 09:53:30.141 2025-03-28 09:53:30.141 446688 15273 68 0 20257 2025-03-28 09:53:30.141 2025-03-28 09:53:30.141 446688 20969 8 0 20258 2025-03-28 12:26:52.434 2025-03-28 12:26:52.434 446697 4388 19 0 20259 2025-03-28 12:26:52.118 2025-03-28 12:26:52.118 446697 6136 19 0 20260 2025-03-28 12:26:52.768 2025-03-28 12:26:52.768 446697 7510 19 0 20261 2025-03-28 12:26:51.921 2025-03-28 12:26:51.921 446697 9290 19 0 20262 2025-03-28 12:26:52.768 2025-03-28 12:26:52.768 446697 14663 2 0 20263 2025-03-28 12:26:52.434 2025-03-28 12:26:52.434 446697 16942 2 0 20264 2025-03-28 12:26:52.118 2025-03-28 12:26:52.118 446697 17212 2 0 20265 2025-03-28 12:26:51.921 2025-03-28 12:26:51.921 446697 21041 2 0 20266 2025-03-28 10:19:00.528 2025-03-28 10:19:00.528 446714 1244 10 0 20267 2025-03-28 10:19:00.528 2025-03-28 10:19:00.528 446714 2519 90 0 20268 2025-03-28 11:50:43.54 2025-03-28 11:50:43.54 446719 17106 19 0 20269 2025-03-28 11:50:43.54 2025-03-28 11:50:43.54 446719 20613 2 0 20270 2025-03-28 11:38:15.531 2025-03-28 11:38:15.531 446724 14959 1 0 20271 2025-03-28 11:38:15.531 2025-03-28 11:38:15.531 446724 21518 9 0 20272 2025-03-28 11:25:56.492 2025-03-28 11:25:56.492 446728 714 10 0 20273 2025-03-28 11:25:56.492 2025-03-28 11:25:56.492 446728 10352 1 0 20274 2025-03-28 11:50:39.813 2025-03-28 11:50:39.813 446736 985 2 0 20275 2025-03-28 11:50:39.813 2025-03-28 11:50:39.813 446736 4819 19 0 20276 2025-03-28 11:50:40.54 2025-03-28 11:50:40.54 446742 12561 19 0 20277 2025-03-28 11:50:40.54 2025-03-28 11:50:40.54 446742 21383 2 0 20278 2025-03-28 10:10:59.36 2025-03-28 10:10:59.36 446774 6777 810 0 20279 2025-03-28 12:24:52.584 2025-03-28 12:24:52.584 446774 16354 19 0 20280 2025-03-28 10:10:59.36 2025-03-28 10:10:59.36 446774 17710 90 0 20281 2025-03-28 12:24:52.584 2025-03-28 12:24:52.584 446774 18829 2 0 20282 2025-03-28 11:50:35.755 2025-03-28 11:50:35.755 446780 1726 19 0 20283 2025-03-28 11:50:35.755 2025-03-28 11:50:35.755 446780 16351 2 0 20284 2025-03-28 10:46:43.623 2025-03-28 10:46:43.623 446798 2543 1 0 20285 2025-03-28 11:50:34.074 2025-03-28 11:50:34.074 446798 17046 19 0 20286 2025-03-28 11:50:34.074 2025-03-28 11:50:34.074 446798 20597 2 0 20287 2025-03-28 10:46:43.623 2025-03-28 10:46:43.623 446798 20993 9 0 20288 2025-03-28 11:47:58.703 2025-03-28 11:47:58.703 446814 635 1 0 20289 2025-03-28 11:47:58.703 2025-03-28 11:47:58.703 446814 21332 10 0 20290 2025-03-28 10:49:47.344 2025-03-28 10:49:47.344 446864 8498 1 0 20291 2025-03-28 10:49:47.344 2025-03-28 10:49:47.344 446864 15075 9 0 20292 2025-03-28 11:17:33.525 2025-03-28 11:17:33.525 446880 1567 2 0 20293 2025-03-28 11:17:33.525 2025-03-28 11:17:33.525 446880 12561 15 0 20294 2025-03-28 11:51:59.523 2025-03-28 11:51:59.523 446880 20120 3 0 20295 2025-03-28 11:51:59.523 2025-03-28 11:51:59.523 446880 21532 30 0 20296 2025-03-28 10:50:00.053 2025-03-28 10:50:00.053 446900 6471 1 0 20297 2025-03-28 10:50:00.053 2025-03-28 10:50:00.053 446900 20243 0 0 20298 2025-03-28 10:49:57.767 2025-03-28 10:49:57.767 446901 13378 1 0 20299 2025-03-28 10:49:57.767 2025-03-28 10:49:57.767 446901 19346 0 0 20300 2025-03-28 11:50:18.674 2025-03-28 11:50:18.674 446904 1584 19 0 20301 2025-03-28 11:50:18.674 2025-03-28 11:50:18.674 446904 2330 2 0 20302 2025-03-28 10:33:29.843 2025-03-28 10:33:29.843 446907 4819 0 0 20303 2025-03-28 10:33:29.843 2025-03-28 10:33:29.843 446907 16250 1 0 20304 2025-03-28 11:07:43.952 2025-03-28 11:07:43.952 446937 638 90 0 20305 2025-03-28 11:44:14.054 2025-03-28 11:44:14.054 446937 805 1 0 20306 2025-03-28 12:22:41.76 2025-03-28 12:22:41.76 446937 985 19 0 20307 2025-03-28 11:04:40.451 2025-03-28 11:04:40.451 446937 1046 21 0 20308 2025-03-28 11:45:06.102 2025-03-28 11:45:06.102 446937 1769 3 0 20309 2025-03-28 10:33:04.047 2025-03-28 10:33:04.047 446937 2459 5 0 20310 2025-03-28 11:02:11.859 2025-03-28 11:02:11.859 446937 4259 90 0 20311 2025-03-28 12:25:02.68 2025-03-28 12:25:02.68 446937 4973 1 0 20312 2025-03-28 12:25:02.461 2025-03-28 12:25:02.461 446937 5725 9 0 20313 2025-03-28 12:25:02.68 2025-03-28 12:25:02.68 446937 8168 9 0 20314 2025-03-28 11:45:06.102 2025-03-28 11:45:06.102 446937 10302 30 0 20315 2025-03-28 12:25:01.003 2025-03-28 12:25:01.003 446937 10554 1 0 20316 2025-03-28 12:22:41.76 2025-03-28 12:22:41.76 446937 11789 2 0 20317 2025-03-28 12:25:01.352 2025-03-28 12:25:01.352 446937 13042 1 0 20318 2025-03-28 11:44:14.054 2025-03-28 11:44:14.054 446937 14295 5 0 20319 2025-03-28 12:25:01.352 2025-03-28 12:25:01.352 446937 15282 9 0 20320 2025-03-28 10:28:39.603 2025-03-28 10:28:39.603 446937 15510 1 0 20321 2025-03-28 11:38:05.754 2025-03-28 11:38:05.754 446937 16212 5 0 20322 2025-03-28 12:25:02.461 2025-03-28 12:25:02.461 446937 18269 1 0 20323 2025-03-28 12:03:01.076 2025-03-28 12:03:01.076 446937 18314 1 0 20324 2025-03-28 11:38:05.754 2025-03-28 11:38:05.754 446937 18717 1 0 20325 2025-03-28 09:46:13.994 2025-03-28 09:46:13.994 446937 18930 1 0 20326 2025-03-28 10:28:39.603 2025-03-28 10:28:39.603 446937 19930 9 0 20327 2025-03-28 10:10:39.276 2025-03-28 10:10:39.276 446937 20117 91 0 20328 2025-03-28 12:03:01.076 2025-03-28 12:03:01.076 446937 20788 9 0 20329 2025-03-28 09:46:13.994 2025-03-28 09:46:13.994 446937 20825 9 0 20330 2025-03-28 11:04:40.451 2025-03-28 11:04:40.451 446937 20858 190 0 20331 2025-03-28 11:07:43.952 2025-03-28 11:07:43.952 446937 20963 10 0 20332 2025-03-28 10:10:39.276 2025-03-28 10:10:39.276 446937 21036 10 0 20333 2025-03-28 11:02:11.859 2025-03-28 11:02:11.859 446937 21666 10 0 20334 2025-03-28 12:25:01.003 2025-03-28 12:25:01.003 446937 21768 9 0 20335 2025-03-29 15:46:10.059 2025-03-29 15:46:10.059 446942 13216 19 0 20336 2025-03-28 10:46:26.902 2025-03-28 10:46:26.902 446942 17727 9 0 20337 2025-03-28 11:29:39.976 2025-03-28 11:29:39.976 446942 18529 1 0 20338 2025-03-28 11:02:52.5 2025-03-28 11:02:52.5 446942 19655 8 0 20339 2025-03-28 10:39:44.619 2025-03-28 10:39:44.619 446942 19906 19 0 20340 2025-03-28 10:39:44.619 2025-03-28 10:39:44.619 446942 20683 2 0 20341 2025-03-28 11:29:39.976 2025-03-28 11:29:39.976 446942 20881 9 0 20342 2025-03-29 15:46:10.059 2025-03-29 15:46:10.059 446942 21207 2 0 20343 2025-03-28 10:46:26.902 2025-03-28 10:46:26.902 446942 21400 1 0 20344 2025-03-28 11:02:52.5 2025-03-28 11:02:52.5 446942 21666 68 0 20345 2025-03-28 11:29:45.699 2025-03-28 11:29:45.699 446945 8269 1 0 20346 2025-03-28 10:46:28.305 2025-03-28 10:46:28.305 446945 14705 1 0 20347 2025-03-28 11:02:53.657 2025-03-28 11:02:53.657 446945 15075 68 0 20348 2025-03-28 11:02:53.657 2025-03-28 11:02:53.657 446945 17291 8 0 20349 2025-03-28 11:29:45.699 2025-03-28 11:29:45.699 446945 20562 9 0 20350 2025-03-28 10:46:28.305 2025-03-28 10:46:28.305 446945 20655 9 0 20351 2025-03-28 10:09:58.961 2025-03-28 10:09:58.961 446954 623 7 0 20352 2025-03-28 10:28:36.157 2025-03-28 10:28:36.157 446954 16387 1 0 20353 2025-03-28 10:09:59.475 2025-03-28 10:09:59.475 446954 17011 62 0 20354 2025-03-28 10:09:59.475 2025-03-28 10:09:59.475 446954 17411 7 0 20355 2025-03-28 10:28:36.157 2025-03-28 10:28:36.157 446954 19446 9 0 20356 2025-03-28 11:07:06.363 2025-03-28 11:07:06.363 446954 21114 9 0 20357 2025-03-28 11:07:06.363 2025-03-28 11:07:06.363 446954 21356 1 0 20358 2025-03-28 10:09:58.961 2025-03-28 10:09:58.961 446954 21547 62 0 20359 2025-03-28 10:22:29.461 2025-03-28 10:22:29.461 446962 683 1 0 20360 2025-03-28 10:22:29.461 2025-03-28 10:22:29.461 446962 11714 9 0 20361 2025-03-28 11:49:58.507 2025-03-28 11:49:58.507 446963 1411 19 0 20362 2025-03-28 11:49:58.507 2025-03-28 11:49:58.507 446963 19193 2 0 20363 2025-03-28 10:54:02.311 2025-03-28 10:54:02.311 446964 5308 45 0 20364 2025-03-28 10:54:02.311 2025-03-28 10:54:02.311 446964 5825 5 0 20365 2025-03-28 10:54:01.956 2025-03-28 10:54:01.956 446964 6687 5 0 20366 2025-03-28 10:54:01.956 2025-03-28 10:54:01.956 446964 14278 45 0 20367 2025-03-28 09:55:38.39 2025-03-28 09:55:38.39 446965 802 0 0 20368 2025-03-28 09:55:38.632 2025-03-28 09:55:38.632 446965 1773 3 0 20369 2025-03-28 09:55:38.39 2025-03-28 09:55:38.39 446965 5776 3 0 20370 2025-03-28 09:55:36.375 2025-03-28 09:55:36.375 446965 9332 3 0 20371 2025-03-28 09:55:36.169 2025-03-28 09:55:36.169 446965 11164 3 0 20372 2025-03-28 09:55:35.489 2025-03-28 09:55:35.489 446965 13467 0 0 20373 2025-03-28 09:55:36.837 2025-03-28 09:55:36.837 446965 16259 0 0 20374 2025-03-28 09:55:36.375 2025-03-28 09:55:36.375 446965 18011 0 0 20375 2025-03-28 09:55:38.632 2025-03-28 09:55:38.632 446965 20691 0 0 20376 2025-03-28 09:55:35.489 2025-03-28 09:55:35.489 446965 21033 3 0 20377 2025-03-28 09:55:36.169 2025-03-28 09:55:36.169 446965 21369 0 0 20378 2025-03-28 09:55:36.837 2025-03-28 09:55:36.837 446965 21485 3 0 20379 2025-03-28 10:30:03.796 2025-03-28 10:30:03.796 446971 7510 1 0 20380 2025-03-28 10:30:03.796 2025-03-28 10:30:03.796 446971 21522 7 0 20381 2025-03-28 11:51:55.183 2025-03-28 11:51:55.183 446983 1825 1 0 20382 2025-03-28 11:51:55.183 2025-03-28 11:51:55.183 446983 21083 9 0 20383 2025-03-28 10:34:03.641 2025-03-28 10:34:03.641 447013 699 0 0 20384 2025-03-28 10:34:04.776 2025-03-28 10:34:04.776 447013 1729 9 0 20385 2025-03-28 10:34:03.894 2025-03-28 10:34:03.894 447013 8506 8 0 20386 2025-03-28 10:34:03.894 2025-03-28 10:34:03.894 447013 17673 1 0 20387 2025-03-28 10:34:04.776 2025-03-28 10:34:04.776 447013 18601 81 0 20388 2025-03-28 10:34:03.641 2025-03-28 10:34:03.641 447013 21825 1 0 20389 2025-03-28 09:46:52.427 2025-03-28 09:46:52.427 447034 10490 1 0 20390 2025-03-28 09:46:52.427 2025-03-28 09:46:52.427 447034 20799 9 0 20391 2025-03-28 09:44:58.323 2025-03-28 09:44:58.323 447036 951 9 0 20392 2025-03-28 09:44:58.323 2025-03-28 09:44:58.323 447036 17147 1 0 20393 2025-03-28 10:30:29.467 2025-03-28 10:30:29.467 447049 21541 0 21 20394 2025-03-28 11:27:03.865 2025-03-28 11:27:03.865 447065 11938 1 0 20395 2025-03-28 11:27:03.865 2025-03-28 11:27:03.865 447065 14225 10 0 20396 2025-03-28 10:13:49.412 2025-03-28 10:13:49.412 447073 976 9 0 20397 2025-03-28 10:13:50.802 2025-03-28 10:13:50.802 447073 1354 1 0 20398 2025-03-28 10:13:49.412 2025-03-28 10:13:49.412 447073 8289 1 0 20399 2025-03-28 10:13:50.802 2025-03-28 10:13:50.802 447073 11164 9 0 20400 2025-03-28 10:13:49.783 2025-03-28 10:13:49.783 447073 13878 1 0 20401 2025-03-28 10:13:49.783 2025-03-28 10:13:49.783 447073 21063 9 0 20402 2025-03-28 11:20:27.601 2025-03-28 11:20:27.601 447079 1439 1 0 20403 2025-03-28 10:54:27.36 2025-03-28 10:54:27.36 447079 9874 1 0 20404 2025-03-28 10:54:27.36 2025-03-28 10:54:27.36 447079 15978 10 0 20405 2025-03-28 11:20:27.601 2025-03-28 11:20:27.601 447079 19581 9 0 20406 2025-03-28 10:29:22.48 2025-03-28 10:29:22.48 447081 2196 10 0 20407 2025-03-28 11:00:47.989 2025-03-28 11:00:47.989 447081 11561 5 0 20408 2025-03-28 11:00:47.989 2025-03-28 11:00:47.989 447081 18241 45 0 20409 2025-03-29 08:34:36.44 2025-03-29 08:34:36.44 447081 19663 7 0 20410 2025-03-29 08:34:36.44 2025-03-29 08:34:36.44 447081 21631 1 0 20411 2025-03-28 10:29:22.48 2025-03-28 10:29:22.48 447081 21833 1 0 20412 2025-03-28 12:00:13.355 2025-03-28 12:00:13.355 447085 7766 19 0 20413 2025-03-28 12:00:13.355 2025-03-28 12:00:13.355 447085 20990 2 0 20414 2025-03-28 09:49:07.606 2025-03-28 09:49:07.606 447087 17494 19 0 20415 2025-03-28 09:49:07.606 2025-03-28 09:49:07.606 447087 18923 2 0 20416 2025-03-28 10:47:52.75 2025-03-28 10:47:52.75 447094 11450 9 0 20417 2025-03-28 10:56:33.044 2025-03-28 10:56:33.044 447100 20606 5 0 20418 2025-03-28 10:56:33.044 2025-03-28 10:56:33.044 447100 20614 1 0 20419 2025-03-28 10:33:55.859 2025-03-28 10:33:55.859 447105 8242 0 0 20420 2025-03-28 10:33:55.859 2025-03-28 10:33:55.859 447105 16447 1 0 20421 2025-03-28 11:09:06.406 2025-03-28 11:09:06.406 447106 2338 27 0 20422 2025-03-28 11:09:06.406 2025-03-28 11:09:06.406 447106 20019 3 0 20423 2025-03-28 10:47:55.045 2025-03-28 10:47:55.045 447107 2327 1 0 20424 2025-03-28 11:26:50.649 2025-03-28 11:26:50.649 447107 11750 0 0 20425 2025-03-28 10:47:55.045 2025-03-28 10:47:55.045 447107 15045 9 0 20426 2025-03-28 11:26:50.649 2025-03-28 11:26:50.649 447107 16513 3 0 20427 2025-03-28 09:49:00.567 2025-03-28 09:49:00.567 447108 11967 2 0 20428 2025-03-28 10:14:46.724 2025-03-28 10:14:46.724 447108 16432 0 10 20429 2025-03-28 09:49:00.567 2025-03-28 09:49:00.567 447108 19812 19 0 20430 2025-03-28 10:55:13.42 2025-03-28 10:55:13.42 447109 17522 5 0 20431 2025-03-28 10:55:13.42 2025-03-28 10:55:13.42 447109 20674 45 0 20432 2025-03-28 11:03:30.704 2025-03-28 11:03:30.704 447111 4225 1 0 20433 2025-03-28 11:03:30.704 2025-03-28 11:03:30.704 447111 8045 10 0 20434 2025-03-28 10:10:18.13 2025-03-28 10:10:18.13 447115 989 7 0 20435 2025-03-28 10:10:18.13 2025-03-28 10:10:18.13 447115 2176 62 0 20436 2025-03-28 11:12:27.482 2025-03-28 11:12:27.482 447118 12965 27 0 20437 2025-03-28 11:12:27.482 2025-03-28 11:12:27.482 447118 18069 3 0 20438 2025-03-28 10:00:53.253 2025-03-28 10:00:53.253 447119 16124 0 0 20439 2025-03-28 10:00:52.63 2025-03-28 10:00:52.63 447119 17713 0 0 20440 2025-03-28 10:00:52.63 2025-03-28 10:00:52.63 447119 20490 1 0 20441 2025-03-28 10:00:53.253 2025-03-28 10:00:53.253 447119 21389 1 0 20442 2025-03-28 12:13:08.932 2025-03-28 12:13:08.932 447120 726 1 0 20443 2025-03-28 12:13:07.514 2025-03-28 12:13:07.514 447120 10554 1 0 20444 2025-03-28 12:13:07.514 2025-03-28 12:13:07.514 447120 17103 9 0 20445 2025-03-28 12:13:08.932 2025-03-28 12:13:08.932 447120 18734 9 0 20446 2025-03-28 11:07:29.082 2025-03-28 11:07:29.082 447121 630 1 0 20447 2025-03-28 11:07:29.302 2025-03-28 11:07:29.302 447121 696 1 0 20448 2025-03-28 11:07:30.9 2025-03-28 11:07:30.9 447121 859 9 0 20449 2025-03-28 11:07:31.712 2025-03-28 11:07:31.712 447121 894 9 0 20450 2025-03-28 11:07:28.531 2025-03-28 11:07:28.531 447121 951 9 0 20451 2025-03-28 11:07:28.531 2025-03-28 11:07:28.531 447121 954 1 0 20452 2025-03-28 11:07:29.302 2025-03-28 11:07:29.302 447121 1221 9 0 20453 2025-03-28 11:07:30.389 2025-03-28 11:07:30.389 447121 1428 1 0 20454 2025-03-28 11:07:30.389 2025-03-28 11:07:30.389 447121 3706 9 0 20455 2025-03-28 11:07:31.3 2025-03-28 11:07:31.3 447121 5129 9 0 20456 2025-03-28 11:11:13.486 2025-03-28 11:11:13.486 447121 8168 19 0 20457 2025-03-28 11:07:28.036 2025-03-28 11:07:28.036 447121 10060 1 0 20458 2025-03-28 11:07:29.673 2025-03-28 11:07:29.673 447121 10469 9 0 20459 2025-03-28 09:48:54.503 2025-03-28 09:48:54.503 447121 10493 5 0 20460 2025-03-28 11:11:13.486 2025-03-28 11:11:13.486 447121 10608 2 0 20461 2025-03-28 11:07:30.9 2025-03-28 11:07:30.9 447121 14213 1 0 20462 2025-03-28 12:11:12.048 2025-03-28 12:11:12.048 447121 16250 30 0 20463 2025-03-28 09:48:54.503 2025-03-28 09:48:54.503 447121 16839 1 0 20464 2025-03-28 11:07:29.673 2025-03-28 11:07:29.673 447121 17184 1 0 20465 2025-03-28 12:11:12.048 2025-03-28 12:11:12.048 447121 17891 3 0 20466 2025-03-28 11:07:28.036 2025-03-28 11:07:28.036 447121 17976 9 0 20467 2025-03-28 11:07:31.3 2025-03-28 11:07:31.3 447121 20781 1 0 20468 2025-03-28 11:07:29.082 2025-03-28 11:07:29.082 447121 21014 9 0 20469 2025-03-28 11:07:31.712 2025-03-28 11:07:31.712 447121 21164 1 0 20470 2025-03-28 11:07:30.485 2025-03-28 11:07:30.485 447121 21400 9 0 20471 2025-03-28 11:07:30.485 2025-03-28 11:07:30.485 447121 21683 1 0 20472 2025-03-28 11:13:05.659 2025-03-28 11:13:05.659 447123 1741 27 0 20473 2025-03-28 09:46:36.881 2025-03-28 09:46:36.881 447123 2652 1 0 20474 2025-03-28 11:13:05.659 2025-03-28 11:13:05.659 447123 11165 3 0 20475 2025-03-28 09:46:36.322 2025-03-28 09:46:36.322 447123 11515 1 0 20476 2025-03-28 09:46:36.881 2025-03-28 09:46:36.881 447123 16354 9 0 20477 2025-03-28 09:46:36.322 2025-03-28 09:46:36.322 447123 20562 9 0 20478 2025-03-28 11:06:47.373 2025-03-28 11:06:47.373 447125 15526 1 0 20479 2025-03-28 11:06:47.373 2025-03-28 11:06:47.373 447125 20782 10 0 20480 2025-03-28 09:44:08.094 2025-03-28 09:44:08.094 447128 3979 9 0 20481 2025-03-28 09:44:10.86 2025-03-28 09:44:10.86 447128 16284 9 0 20482 2025-03-28 09:44:10.86 2025-03-28 09:44:10.86 447128 21269 1 0 20483 2025-03-28 12:33:30.986 2025-03-28 12:33:30.986 447132 1130 19 0 20484 2025-03-28 11:51:16.362 2025-03-28 11:51:16.362 447132 2402 10 0 20485 2025-03-28 11:51:16.362 2025-03-28 11:51:16.362 447132 13169 90 0 20486 2025-03-28 12:33:30.986 2025-03-28 12:33:30.986 447132 21685 2 0 20487 2025-03-28 10:54:59.218 2025-03-28 10:54:59.218 447133 5775 10 0 20488 2025-03-28 09:44:22.132 2025-03-28 09:44:22.132 447133 6421 14 0 20489 2025-03-28 09:44:22.132 2025-03-28 09:44:22.132 447133 13574 2 0 20490 2025-03-28 10:54:59.218 2025-03-28 10:54:59.218 447133 21523 1 0 20491 2025-03-28 09:53:45.409 2025-03-28 09:53:45.409 447134 5806 2 0 20492 2025-03-28 09:53:45.409 2025-03-28 09:53:45.409 447134 21647 19 0 20493 2025-03-28 11:13:34.653 2025-03-28 11:13:34.653 447136 9796 27 0 20494 2025-03-28 11:13:34.653 2025-03-28 11:13:34.653 447136 20502 3 0 20495 2025-03-28 09:46:30.518 2025-03-28 09:46:30.518 447136 20687 1 0 20496 2025-03-28 11:06:48.934 2025-03-28 11:06:48.934 447138 8416 1 0 20497 2025-03-28 11:06:48.934 2025-03-28 11:06:48.934 447138 18017 10 0 20498 2025-03-28 09:50:47.302 2025-03-28 09:50:47.302 447139 1236 1 0 20499 2025-03-28 09:50:47.302 2025-03-28 09:50:47.302 447139 16680 9 0 20500 2025-03-28 09:49:15.078 2025-03-28 09:49:15.078 447140 1615 1 0 20501 2025-03-28 09:51:15.886 2025-03-28 09:51:15.886 447142 5809 19 0 20502 2025-03-28 09:51:15.886 2025-03-28 09:51:15.886 447142 17976 2 0 20503 2025-03-28 10:19:18.971 2025-03-28 10:19:18.971 447143 695 9 0 20504 2025-03-28 12:08:50.192 2025-03-28 12:08:50.192 447143 763 8 0 20505 2025-03-28 10:19:18.971 2025-03-28 10:19:18.971 447143 964 1 0 20506 2025-03-28 10:03:13.03 2025-03-28 10:03:13.03 447143 2709 2 0 20507 2025-03-28 12:02:03.313 2025-03-28 12:02:03.313 447143 4958 90 0 20508 2025-03-28 12:08:50.192 2025-03-28 12:08:50.192 447143 9200 68 0 20509 2025-03-28 12:02:03.313 2025-03-28 12:02:03.313 447143 10016 10 0 20510 2025-03-28 10:27:32.744 2025-03-28 10:27:32.744 447143 10302 62 0 20511 2025-03-28 11:49:43.298 2025-03-28 11:49:43.298 447143 11164 19 0 20512 2025-03-28 10:27:32.744 2025-03-28 10:27:32.744 447143 11192 7 0 20513 2025-03-28 11:49:43.298 2025-03-28 11:49:43.298 447143 16724 2 0 20514 2025-03-28 10:27:06.107 2025-03-28 10:27:06.107 447143 17218 19 0 20515 2025-03-28 10:27:06.107 2025-03-28 10:27:06.107 447143 19655 2 0 20516 2025-03-28 12:24:38.66 2025-03-28 12:24:38.66 447143 20555 19 0 20517 2025-03-28 12:24:38.66 2025-03-28 12:24:38.66 447143 21119 2 0 20518 2025-03-28 10:03:13.03 2025-03-28 10:03:13.03 447143 21212 0 0 20519 2025-03-28 12:14:32.075 2025-03-28 12:14:32.075 447143 21442 1 0 20520 2025-03-28 12:14:32.075 2025-03-28 12:14:32.075 447143 21713 9 0 20521 2025-03-28 11:06:45.742 2025-03-28 11:06:45.742 447147 1605 10 0 20522 2025-03-28 11:06:45.742 2025-03-28 11:06:45.742 447147 6430 1 0 20523 2025-03-28 09:54:41.033 2025-03-28 09:54:41.033 447147 9354 2 0 20524 2025-03-28 09:54:41.033 2025-03-28 09:54:41.033 447147 17226 19 0 20525 2025-03-28 10:37:05.802 2025-03-28 10:37:05.802 447148 3456 2 0 20526 2025-03-28 11:14:15.66 2025-03-28 11:14:15.66 447148 4167 27 0 20527 2025-03-28 11:14:18.892 2025-03-28 11:14:18.892 447148 6471 243 0 20528 2025-03-28 09:52:52.356 2025-03-28 09:52:52.356 447148 9695 21 0 20529 2025-03-28 10:37:05.802 2025-03-28 10:37:05.802 447148 9820 19 0 20530 2025-03-28 12:09:05.775 2025-03-28 12:09:05.775 447148 16229 90 0 20531 2025-03-28 11:14:15.66 2025-03-28 11:14:15.66 447148 17693 3 0 20532 2025-03-28 11:14:18.892 2025-03-28 11:14:18.892 447148 20187 27 0 20533 2025-03-28 12:09:05.775 2025-03-28 12:09:05.775 447148 20913 10 0 20534 2025-03-28 11:27:42.557 2025-03-28 11:27:42.557 447149 9184 10 0 20535 2025-03-28 11:27:42.557 2025-03-28 11:27:42.557 447149 20647 1 0 20536 2025-03-28 11:01:22.106 2025-03-28 11:01:22.106 447151 12721 10 0 20537 2025-03-28 11:01:22.106 2025-03-28 11:01:22.106 447151 21672 1 0 20538 2025-03-28 12:13:42.321 2025-03-28 12:13:42.321 447152 9276 9 0 20539 2025-03-28 12:13:42.321 2025-03-28 12:13:42.321 447152 14910 1 0 20540 2025-03-28 11:06:45.075 2025-03-28 11:06:45.075 447153 6030 10 0 20541 2025-03-28 09:57:09.969 2025-03-28 09:57:09.969 447153 13216 23 0 20542 2025-03-28 11:06:45.075 2025-03-28 11:06:45.075 447153 20481 1 0 20543 2025-03-28 09:55:40.175 2025-03-28 09:55:40.175 447153 20509 1 0 20544 2025-03-28 09:57:09.969 2025-03-28 09:57:09.969 447153 21810 3 0 20545 2025-03-28 10:36:40.896 2025-03-28 10:36:40.896 447154 11897 19 0 20546 2025-03-28 11:08:09.598 2025-03-28 11:08:09.598 447154 17696 1 0 20547 2025-03-28 09:56:22.679 2025-03-28 09:56:22.679 447154 18529 1 0 20548 2025-03-28 10:36:40.896 2025-03-28 10:36:40.896 447154 21430 2 0 20549 2025-03-28 11:08:09.598 2025-03-28 11:08:09.598 447154 21666 9 0 20550 2025-03-28 11:16:10.458 2025-03-28 11:16:10.458 447156 1825 4 0 20551 2025-03-28 11:16:10.458 2025-03-28 11:16:10.458 447156 9332 36 0 20552 2025-03-28 10:01:11.677 2025-03-28 10:01:11.677 447159 7983 9 0 20553 2025-03-28 11:13:53.191 2025-03-28 11:13:53.191 447159 9347 27 0 20554 2025-03-28 10:01:11.677 2025-03-28 10:01:11.677 447159 13399 1 0 20555 2025-03-28 10:01:09.923 2025-03-28 10:01:09.923 447159 17147 9 0 20556 2025-03-28 10:01:09.923 2025-03-28 10:01:09.923 447159 17533 1 0 20557 2025-03-28 11:13:53.191 2025-03-28 11:13:53.191 447159 18241 3 0 20558 2025-03-29 15:10:58.508 2025-03-29 15:10:58.508 447160 1298 19 0 20559 2025-03-28 11:49:49.44 2025-03-28 11:49:49.44 447160 16354 19 0 20560 2025-03-29 15:10:58.508 2025-03-29 15:10:58.508 447160 16939 2 0 20561 2025-03-28 11:49:49.44 2025-03-28 11:49:49.44 447160 19094 2 0 20562 2025-03-28 12:07:40.388 2025-03-28 12:07:40.388 447160 21083 2 0 20563 2025-03-28 10:13:05.21 2025-03-28 10:13:05.21 447161 1650 23 0 20564 2025-03-28 10:04:14.86 2025-03-28 10:04:14.86 447162 7558 100 0 20565 2025-03-28 11:49:49.025 2025-03-28 11:49:49.025 447162 10112 19 0 20566 2025-03-28 11:49:49.025 2025-03-28 11:49:49.025 447162 20523 2 0 20567 2025-03-28 11:29:28.817 2025-03-28 11:29:28.817 447163 628 9 0 20568 2025-03-28 11:29:28.817 2025-03-28 11:29:28.817 447163 1638 1 0 20569 2025-03-28 10:04:16.224 2025-03-28 10:04:16.224 447163 12609 1 0 20570 2025-03-28 10:04:24.976 2025-03-28 10:04:24.976 447163 15045 1 0 20571 2025-03-28 10:04:24.976 2025-03-28 10:04:24.976 447163 15337 9 0 20572 2025-03-28 10:34:34.311 2025-03-28 10:34:34.311 447164 624 1 0 20573 2025-03-28 10:06:26.445 2025-03-28 10:06:26.445 447164 675 9 0 20574 2025-03-28 10:06:06.953 2025-03-28 10:06:06.953 447164 714 9 0 20575 2025-03-28 10:06:26.445 2025-03-28 10:06:26.445 447164 761 1 0 20576 2025-03-28 10:05:32.751 2025-03-28 10:05:32.751 447164 2196 1 0 20577 2025-03-28 11:02:16.585 2025-03-28 11:02:16.585 447164 3990 19 0 20578 2025-03-28 10:34:34.311 2025-03-28 10:34:34.311 447164 4459 7 0 20579 2025-03-28 11:01:27.809 2025-03-28 11:01:27.809 447164 7673 8 0 20580 2025-03-28 10:08:57.417 2025-03-28 10:08:57.417 447164 13566 62 0 20581 2025-03-28 10:08:57.417 2025-03-28 10:08:57.417 447164 15577 7 0 20582 2025-03-28 10:06:04.548 2025-03-28 10:06:04.548 447164 17183 1 0 20583 2025-03-28 10:06:06.953 2025-03-28 10:06:06.953 447164 18526 1 0 20584 2025-03-28 11:02:16.585 2025-03-28 11:02:16.585 447164 21070 2 0 20585 2025-03-28 10:06:04.548 2025-03-28 10:06:04.548 447164 21379 9 0 20586 2025-03-28 11:01:27.809 2025-03-28 11:01:27.809 447164 21532 68 0 20587 2025-03-28 10:33:32.795 2025-03-28 10:33:32.795 447165 672 8 0 20588 2025-03-28 10:33:32.795 2025-03-28 10:33:32.795 447165 1474 1 0 20589 2025-03-28 10:33:32.595 2025-03-28 10:33:32.595 447165 11561 1 0 20590 2025-03-28 10:33:32.595 2025-03-28 10:33:32.595 447165 13100 0 0 20591 2025-03-28 11:01:23.178 2025-03-28 11:01:23.178 447167 621 1 0 20592 2025-03-28 11:01:23.178 2025-03-28 11:01:23.178 447167 1624 10 0 20593 2025-03-28 10:08:34.784 2025-03-28 10:08:34.784 447168 15624 1 0 20594 2025-03-28 10:18:40.136 2025-03-28 10:18:40.136 447169 20597 1 0 20595 2025-03-28 10:18:40.136 2025-03-28 10:18:40.136 447169 21455 9 0 20596 2025-03-28 12:02:05.521 2025-03-28 12:02:05.521 447173 13365 9 0 20597 2025-03-28 12:02:05.521 2025-03-28 12:02:05.521 447173 17838 1 0 20598 2025-03-28 10:26:27.659 2025-03-28 10:26:27.659 447175 623 7 0 20599 2025-03-28 10:26:27.659 2025-03-28 10:26:27.659 447175 21389 62 0 20600 2025-03-28 10:17:51.307 2025-03-28 10:17:51.307 447176 8037 1 0 20601 2025-03-28 10:32:19.549 2025-03-28 10:32:19.549 447177 965 10 0 20602 2025-03-28 10:18:37.752 2025-03-28 10:18:37.752 447177 1490 1 0 20603 2025-03-28 10:32:19.549 2025-03-28 10:32:19.549 447177 15180 1 0 20604 2025-03-28 10:20:09.433 2025-03-28 10:20:09.433 447178 782 1 0 20605 2025-03-28 10:22:04.788 2025-03-28 10:22:04.788 447179 634 8 0 20606 2025-03-28 10:22:04.788 2025-03-28 10:22:04.788 447179 3706 69 0 20607 2025-03-28 10:20:59.399 2025-03-28 10:20:59.399 447179 21228 1 0 20608 2025-03-28 10:21:47.397 2025-03-28 10:21:47.397 447180 16724 1 0 20609 2025-03-28 10:22:43.608 2025-03-28 10:22:43.608 447181 9331 1 0 20610 2025-03-28 10:22:45.607 2025-03-28 10:22:45.607 447182 18423 1 0 20611 2025-03-28 10:37:09.693 2025-03-28 10:37:09.693 447184 4395 1 0 20612 2025-03-28 10:37:04.301 2025-03-28 10:37:04.301 447184 9183 19 0 20613 2025-03-28 10:37:09.693 2025-03-28 10:37:09.693 447184 13132 0 0 20614 2025-03-28 11:02:59.66 2025-03-28 11:02:59.66 447184 15536 19 0 20615 2025-03-28 11:02:59.66 2025-03-28 11:02:59.66 447184 20864 2 0 20616 2025-03-28 10:37:04.301 2025-03-28 10:37:04.301 447184 21275 2 0 20617 2025-03-28 10:30:22.56 2025-03-28 10:30:22.56 447185 15491 0 21 20618 2025-03-28 10:29:34.346 2025-03-28 10:29:34.346 447186 7960 0 0 20619 2025-03-28 10:28:52.025 2025-03-28 10:28:52.025 447186 15115 1 0 20620 2025-03-28 10:29:09.788 2025-03-28 10:29:09.788 447187 21012 1 0 20621 2025-03-28 12:22:22.686 2025-03-28 12:22:22.686 447189 1806 1 0 20622 2025-03-28 12:22:22.965 2025-03-28 12:22:22.965 447189 3371 1 0 20623 2025-03-28 12:22:22.455 2025-03-28 12:22:22.455 447189 9336 1 0 20624 2025-03-28 12:22:22.965 2025-03-28 12:22:22.965 447189 10393 0 0 20625 2025-03-28 12:22:22.455 2025-03-28 12:22:22.455 447189 11220 0 0 20626 2025-03-28 12:22:22.686 2025-03-28 12:22:22.686 447189 17541 0 0 20627 2025-03-28 10:29:41.982 2025-03-28 10:29:41.982 447189 20757 1 0 20628 2025-03-28 10:31:44.054 2025-03-28 10:31:44.054 447191 951 1 0 20629 2025-03-28 10:34:33.357 2025-03-28 10:34:33.357 447192 725 0 0 20630 2025-03-28 10:44:47.447 2025-03-28 10:44:47.447 447192 1319 0 0 20631 2025-03-28 10:34:33.569 2025-03-28 10:34:33.569 447192 4388 8 0 20632 2025-03-28 10:44:47.447 2025-03-28 10:44:47.447 447192 5759 3 0 20633 2025-03-28 10:34:33.569 2025-03-28 10:34:33.569 447192 19005 1 0 20634 2025-03-28 10:34:33.357 2025-03-28 10:34:33.357 447192 19198 1 0 20635 2025-03-28 10:33:17.144 2025-03-28 10:33:17.144 447193 20624 1 0 20636 2025-03-28 11:12:11.362 2025-03-28 11:12:11.362 447194 902 1 0 20637 2025-03-28 11:12:13.278 2025-03-28 11:12:13.278 447194 2431 9 0 20638 2025-03-28 10:34:10.224 2025-03-28 10:34:10.224 447194 10013 1 0 20639 2025-03-28 11:12:13.278 2025-03-28 11:12:13.278 447194 16939 1 0 20640 2025-03-28 11:12:11.362 2025-03-28 11:12:11.362 447194 20891 9 0 20641 2025-03-28 10:36:02.587 2025-03-28 10:36:02.587 447195 17050 1 0 20642 2025-03-28 10:36:22.747 2025-03-28 10:36:22.747 447196 8380 1 0 20643 2025-03-28 11:02:50.019 2025-03-28 11:02:50.019 447197 900 19 0 20644 2025-03-28 11:02:50.019 2025-03-28 11:02:50.019 447197 1585 2 0 20645 2025-03-28 10:41:50.421 2025-03-28 10:41:50.421 447197 1615 0 0 20646 2025-03-28 11:01:58.189 2025-03-28 11:01:58.189 447197 1970 68 0 20647 2025-03-28 11:01:58.189 2025-03-28 11:01:58.189 447197 8870 8 0 20648 2025-03-28 10:41:50.421 2025-03-28 10:41:50.421 447197 14818 1 0 20649 2025-03-28 10:38:33.45 2025-03-28 10:38:33.45 447198 726 1 0 20650 2025-03-28 11:47:14.662 2025-03-28 11:47:14.662 447199 27 69 0 20651 2025-03-28 10:59:41.111 2025-03-28 10:59:41.111 447199 626 1 0 20652 2025-03-28 10:59:40.42 2025-03-28 10:59:40.42 447199 811 1 0 20653 2025-03-28 11:47:14.662 2025-03-28 11:47:14.662 447199 2347 8 0 20654 2025-03-28 10:59:40.703 2025-03-28 10:59:40.703 447199 5519 9 0 20655 2025-03-28 10:59:41.535 2025-03-28 10:59:41.535 447199 5703 9 0 20656 2025-03-28 12:09:17.703 2025-03-28 12:09:17.703 447199 8535 68 0 20657 2025-03-28 10:39:31.247 2025-03-28 10:39:31.247 447199 13143 1 0 20658 2025-03-28 10:59:41.759 2025-03-28 10:59:41.759 447199 13365 9 0 20659 2025-03-28 10:59:40.42 2025-03-28 10:59:40.42 447199 18426 9 0 20660 2025-03-28 10:59:40.703 2025-03-28 10:59:40.703 447199 20636 1 0 20661 2025-03-28 10:59:41.111 2025-03-28 10:59:41.111 447199 20768 9 0 20662 2025-03-28 12:09:17.703 2025-03-28 12:09:17.703 447199 20864 8 0 20663 2025-03-28 10:59:41.759 2025-03-28 10:59:41.759 447199 21798 1 0 20664 2025-03-28 10:59:41.535 2025-03-28 10:59:41.535 447199 21810 1 0 20665 2025-03-28 11:47:11.887 2025-03-28 11:47:11.887 447200 2328 8 0 20666 2025-03-28 10:43:21.86 2025-03-28 10:43:21.86 447200 4027 0 0 20667 2025-03-29 09:21:16.657 2025-03-29 09:21:16.657 447200 4062 19 0 20668 2025-03-28 10:39:53.518 2025-03-28 10:39:53.518 447200 4287 1 0 20669 2025-03-28 11:47:11.887 2025-03-28 11:47:11.887 447200 6430 69 0 20670 2025-03-29 09:21:16.657 2025-03-29 09:21:16.657 447200 7673 2 0 20671 2025-03-28 10:39:58.013 2025-03-28 10:39:58.013 447201 5865 1 0 20672 2025-03-28 10:41:18.007 2025-03-28 10:41:18.007 447202 15703 1 0 20673 2025-03-28 11:48:20.048 2025-03-28 11:48:20.048 447203 16970 19 0 20674 2025-03-28 11:48:20.048 2025-03-28 11:48:20.048 447203 19673 2 0 20675 2025-03-28 10:44:45.633 2025-03-28 10:44:45.633 447204 18241 3 0 20676 2025-03-28 10:44:45.633 2025-03-28 10:44:45.633 447204 19193 0 0 20677 2025-03-28 10:41:42.396 2025-03-28 10:41:42.396 447204 20454 1 0 20678 2025-03-28 10:42:47.274 2025-03-28 10:42:47.274 447205 695 1 0 20679 2025-03-28 10:44:08.314 2025-03-28 10:44:08.314 447206 5746 1 0 20680 2025-03-28 10:44:41.68 2025-03-28 10:44:41.68 447207 20969 1 0 20681 2025-03-28 11:24:27.6 2025-03-28 11:24:27.6 447208 632 2 0 20682 2025-03-28 11:26:45.078 2025-03-28 11:26:45.078 447208 1493 0 0 20683 2025-03-28 11:24:27.6 2025-03-28 11:24:27.6 447208 12768 19 0 20684 2025-03-28 10:49:01.1 2025-03-28 10:49:01.1 447208 19637 1 0 20685 2025-03-28 11:26:45.078 2025-03-28 11:26:45.078 447208 21824 3 0 20686 2025-03-28 10:55:29.137 2025-03-28 10:55:29.137 447209 701 3 0 20687 2025-03-28 10:55:29.137 2025-03-28 10:55:29.137 447209 2285 0 0 20688 2025-03-28 10:49:15.133 2025-03-28 10:49:15.133 447209 21248 1 0 20689 2025-03-28 11:45:43.528 2025-03-28 11:45:43.528 447210 8242 2 0 20690 2025-03-28 10:49:45.501 2025-03-28 10:49:45.501 447210 16939 1 0 20691 2025-03-28 11:45:43.528 2025-03-28 11:45:43.528 447210 20981 19 0 20692 2025-03-28 10:53:13.996 2025-03-28 10:53:13.996 447211 18241 1 0 20693 2025-03-28 10:58:26.622 2025-03-28 10:58:26.622 447212 659 1 0 20694 2025-03-28 10:53:58.279 2025-03-28 10:53:58.279 447212 661 1 0 20695 2025-03-28 10:58:26.156 2025-03-28 10:58:26.156 447212 1817 1 0 20696 2025-03-28 10:58:26.622 2025-03-28 10:58:26.622 447212 4167 9 0 20697 2025-03-28 10:58:27.702 2025-03-28 10:58:27.702 447212 8544 1 0 20698 2025-03-28 10:58:28.207 2025-03-28 10:58:28.207 447212 10862 1 0 20699 2025-03-28 10:58:27.154 2025-03-28 10:58:27.154 447212 13406 1 0 20700 2025-03-28 10:58:28.207 2025-03-28 10:58:28.207 447212 16954 9 0 20701 2025-03-28 10:58:27.154 2025-03-28 10:58:27.154 447212 19980 9 0 20702 2025-03-28 10:58:26.156 2025-03-28 10:58:26.156 447212 21164 9 0 20703 2025-03-28 10:58:27.702 2025-03-28 10:58:27.702 447212 21514 9 0 20704 2025-03-28 10:57:49.177 2025-03-28 10:57:49.177 447213 2151 9 0 20705 2025-03-28 10:57:48.661 2025-03-28 10:57:48.661 447213 3478 9 0 20706 2025-03-28 10:57:46.947 2025-03-28 10:57:46.947 447213 4415 9 0 20707 2025-03-28 10:57:48.923 2025-03-28 10:57:48.923 447213 4459 1 0 20708 2025-03-28 10:57:48.923 2025-03-28 10:57:48.923 447213 5527 9 0 20709 2025-03-28 10:57:46.654 2025-03-28 10:57:46.654 447213 7979 1 0 20710 2025-03-28 10:57:48.661 2025-03-28 10:57:48.661 447213 9171 1 0 20711 2025-03-28 10:57:46.654 2025-03-28 10:57:46.654 447213 13216 9 0 20712 2025-03-28 10:57:46.947 2025-03-28 10:57:46.947 447213 17030 1 0 20713 2025-03-28 10:54:45.382 2025-03-28 10:54:45.382 447213 18412 1 0 20714 2025-03-28 10:57:49.177 2025-03-28 10:57:49.177 447213 21119 1 0 20715 2025-03-28 10:55:27.489 2025-03-28 10:55:27.489 447214 634 1 0 20716 2025-03-28 11:23:02.545 2025-03-28 11:23:02.545 447215 1051 45 0 20717 2025-03-28 10:55:57.509 2025-03-28 10:55:57.509 447215 15617 1 0 20718 2025-03-28 11:23:02.545 2025-03-28 11:23:02.545 447215 15662 5 0 20719 2025-03-28 11:23:04.703 2025-03-28 11:23:04.703 447215 20133 45 0 20720 2025-03-28 11:23:04.703 2025-03-28 11:23:04.703 447215 20802 5 0 20721 2025-03-28 10:57:44.654 2025-03-28 10:57:44.654 447216 20613 1 0 20722 2025-03-28 10:58:23.595 2025-03-28 10:58:23.595 447217 13097 1 0 20723 2025-03-28 11:04:35.834 2025-03-28 11:04:35.834 447217 16594 45 0 20724 2025-03-28 11:04:35.834 2025-03-28 11:04:35.834 447217 21104 5 0 20725 2025-03-28 11:02:41.282 2025-03-28 11:02:41.282 447218 980 0 0 20726 2025-03-28 10:59:30.325 2025-03-28 10:59:30.325 447218 1624 0 0 20727 2025-03-28 11:45:03.995 2025-03-28 11:45:03.995 447218 1785 30 0 20728 2025-03-28 11:06:12.33 2025-03-28 11:06:12.33 447218 2203 0 0 20729 2025-03-28 11:01:09.177 2025-03-28 11:01:09.177 447218 8841 0 0 20730 2025-03-28 11:02:03.882 2025-03-28 11:02:03.882 447218 9820 0 0 20731 2025-03-28 11:02:50.558 2025-03-28 11:02:50.558 447218 13361 45 0 20732 2025-03-28 10:58:47.297 2025-03-28 10:58:47.297 447218 14258 1 0 20733 2025-03-28 10:59:19.814 2025-03-28 10:59:19.814 447218 14381 0 0 20734 2025-03-28 11:00:37.057 2025-03-28 11:00:37.057 447218 15336 0 0 20735 2025-03-28 11:02:50.558 2025-03-28 11:02:50.558 447218 15488 5 0 20736 2025-03-28 11:45:03.995 2025-03-28 11:45:03.995 447218 16270 3 0 20737 2025-03-29 08:35:04.237 2025-03-29 08:35:04.237 447218 17221 7 0 20738 2025-03-29 08:35:04.237 2025-03-29 08:35:04.237 447218 20511 1 0 20739 2025-03-28 11:04:19.25 2025-03-28 11:04:19.25 447218 20754 0 0 20740 2025-03-28 11:03:27.074 2025-03-28 11:03:27.074 447218 20802 0 0 20741 2025-03-28 11:04:03.332 2025-03-28 11:04:03.332 447218 21442 0 0 20742 2025-03-28 11:47:26.621 2025-03-28 11:47:26.621 447219 766 8 0 20743 2025-03-28 11:47:26.621 2025-03-28 11:47:26.621 447219 1012 69 0 20744 2025-03-28 10:59:38.016 2025-03-28 10:59:38.016 447219 1307 1 0 20745 2025-03-28 11:01:25.871 2025-03-28 11:01:25.871 447219 10096 2 0 20746 2025-03-28 12:09:19.162 2025-03-28 12:09:19.162 447219 17722 68 0 20747 2025-03-28 11:01:25.871 2025-03-28 11:01:25.871 447219 21233 19 0 20748 2025-03-28 12:09:19.162 2025-03-28 12:09:19.162 447219 21805 8 0 20749 2025-03-28 11:49:25.285 2025-03-28 11:49:25.285 447220 15719 2 0 20750 2025-03-28 11:00:30.701 2025-03-28 11:00:30.701 447220 17673 100 0 20751 2025-03-28 11:49:25.285 2025-03-28 11:49:25.285 447220 21072 19 0 20752 2025-03-28 11:02:06.133 2025-03-28 11:02:06.133 447221 621 8 0 20753 2025-03-28 11:02:34.373 2025-03-28 11:02:34.373 447221 738 90 0 20754 2025-03-28 11:48:23.408 2025-03-28 11:48:23.408 447221 770 19 0 20755 2025-03-28 12:28:27.222 2025-03-28 12:28:27.222 447221 1817 2 0 20756 2025-03-28 11:02:38.212 2025-03-28 11:02:38.212 447221 5828 2 0 20757 2025-03-28 12:28:27.222 2025-03-28 12:28:27.222 447221 11678 19 0 20758 2025-03-28 11:02:34.373 2025-03-28 11:02:34.373 447221 12965 10 0 20759 2025-03-28 11:48:23.408 2025-03-28 11:48:23.408 447221 15119 2 0 20760 2025-03-28 11:00:36.71 2025-03-28 11:00:36.71 447221 16336 21 0 20761 2025-03-28 11:02:06.133 2025-03-28 11:02:06.133 447221 20956 68 0 20762 2025-03-28 11:02:38.212 2025-03-28 11:02:38.212 447221 20970 19 0 20763 2025-03-28 11:47:41.105 2025-03-28 11:47:41.105 447222 886 38 0 20764 2025-03-28 11:01:21.918 2025-03-28 11:01:21.918 447222 17690 1 0 20765 2025-03-28 11:47:41.105 2025-03-28 11:47:41.105 447222 21249 4 0 20766 2025-03-28 11:04:23.981 2025-03-28 11:04:23.981 447223 708 0 0 20767 2025-03-28 11:03:38.962 2025-03-28 11:03:38.962 447223 1717 0 0 20768 2025-03-28 11:03:05.107 2025-03-28 11:03:05.107 447223 14909 1 0 20769 2025-03-28 11:04:50.623 2025-03-28 11:04:50.623 447224 649 1 0 20770 2025-03-28 11:05:44.297 2025-03-28 11:05:44.297 447224 732 1 0 20771 2025-03-28 11:05:44.923 2025-03-28 11:05:44.923 447224 917 1 0 20772 2025-03-28 11:05:43.866 2025-03-28 11:05:43.866 447224 1273 1 0 20773 2025-03-28 11:05:45.19 2025-03-28 11:05:45.19 447224 9346 1 0 20774 2025-03-28 11:05:44.923 2025-03-28 11:05:44.923 447224 11515 9 0 20775 2025-03-28 11:05:44.564 2025-03-28 11:05:44.564 447224 16571 9 0 20776 2025-03-28 11:05:45.19 2025-03-28 11:05:45.19 447224 19668 9 0 20777 2025-03-28 11:05:44.564 2025-03-28 11:05:44.564 447224 19930 1 0 20778 2025-03-28 11:05:43.866 2025-03-28 11:05:43.866 447224 20026 9 0 20779 2025-03-28 11:05:44.297 2025-03-28 11:05:44.297 447224 20555 9 0 20780 2025-03-28 11:05:01.217 2025-03-28 11:05:01.217 447225 627 2 0 20781 2025-03-28 11:04:59.059 2025-03-28 11:04:59.059 447225 798 15 0 20782 2025-03-28 11:04:57.23 2025-03-28 11:04:57.23 447225 946 15 0 20783 2025-03-28 11:07:12.528 2025-03-28 11:07:12.528 447225 951 9 0 20784 2025-03-28 11:04:57.23 2025-03-28 11:07:15.477 447225 959 11 0 20785 2025-03-28 11:48:22.665 2025-03-28 11:48:22.665 447225 998 19 0 20786 2025-03-28 11:05:01.537 2025-03-28 11:05:01.537 447225 1009 9 0 20787 2025-03-28 11:07:15.209 2025-03-28 11:07:15.209 447225 1114 9 0 20788 2025-03-28 11:07:14.667 2025-03-28 11:07:14.667 447225 1120 9 0 20789 2025-03-28 11:42:09.751 2025-03-28 11:42:09.751 447225 1136 2 0 20790 2025-03-28 11:07:12.118 2025-03-28 11:07:12.118 447225 1609 9 0 20791 2025-03-28 11:05:01.537 2025-03-28 11:05:01.537 447225 2088 1 0 20792 2025-03-28 11:05:01.652 2025-03-28 11:05:01.652 447225 2111 15 0 20793 2025-03-28 11:07:12.892 2025-03-28 11:07:12.892 447225 5825 1 0 20794 2025-03-28 11:07:13.996 2025-03-28 11:07:13.996 447225 6160 1 0 20795 2025-03-28 11:12:39.799 2025-03-28 11:12:39.799 447225 8506 19 0 20796 2025-03-28 11:05:01.217 2025-03-28 11:05:01.217 447225 8570 15 0 20797 2025-03-28 11:07:11.668 2025-03-28 11:07:11.668 447225 8945 9 0 20798 2025-03-28 11:07:15.477 2025-03-28 11:07:15.477 447225 9171 1 0 20799 2025-03-28 11:42:09.751 2025-03-28 11:42:09.751 447225 9330 19 0 20800 2025-03-28 11:05:01.652 2025-03-28 11:05:01.652 447225 10549 2 0 20801 2025-03-28 11:07:15.209 2025-03-28 11:07:15.209 447225 11073 1 0 20802 2025-03-28 11:05:00.768 2025-03-28 11:05:00.768 447225 11220 2 0 20803 2025-03-28 11:04:58.782 2025-03-28 11:04:58.782 447225 11263 2 0 20804 2025-03-28 11:07:13.352 2025-03-28 11:07:13.352 447225 12946 1 0 20805 2025-03-28 11:07:14.091 2025-03-28 11:07:14.091 447225 13100 1 0 20806 2025-03-28 11:05:02.078 2025-03-28 11:05:02.078 447225 13903 2 0 20807 2025-03-28 11:07:12.528 2025-03-28 11:07:12.528 447225 14515 1 0 20808 2025-03-28 11:04:52.795 2025-03-28 11:04:52.795 447225 15243 20 0 20809 2025-03-28 11:07:11.668 2025-03-28 11:07:11.668 447225 15556 1 0 20810 2025-03-28 11:04:58.782 2025-03-28 11:04:58.782 447225 17162 15 0 20811 2025-03-28 11:05:00.768 2025-03-28 11:05:00.768 447225 18178 15 0 20812 2025-03-28 11:07:13.352 2025-03-28 11:07:13.352 447225 18219 9 0 20813 2025-03-28 11:12:39.799 2025-03-28 11:12:39.799 447225 18930 2 0 20814 2025-03-28 12:07:35.546 2025-03-28 12:07:35.546 447225 19446 68 0 20815 2025-03-28 11:48:22.665 2025-03-28 11:48:22.665 447225 20504 2 0 20816 2025-03-28 11:07:13.996 2025-03-28 11:07:13.996 447225 20562 9 0 20817 2025-03-28 11:07:12.892 2025-03-28 11:07:12.892 447225 21184 9 0 20818 2025-03-28 11:07:14.667 2025-03-28 11:07:14.667 447225 21339 1 0 20819 2025-03-28 11:07:12.118 2025-03-28 11:07:12.118 447225 21356 1 0 20820 2025-03-28 11:05:02.078 2025-03-28 11:05:02.078 447225 21401 15 0 20821 2025-03-28 11:07:14.091 2025-03-28 11:07:14.091 447225 21402 9 0 20822 2025-03-28 11:04:59.059 2025-03-28 11:04:59.059 447225 21498 2 0 20823 2025-03-28 12:07:35.546 2025-03-28 12:07:35.546 447225 21539 8 0 20824 2025-03-28 11:06:58.494 2025-03-28 11:06:58.494 447226 5637 1 0 20825 2025-03-28 11:05:19.954 2025-03-28 11:05:19.954 447226 6058 1 0 20826 2025-03-28 11:06:57.743 2025-03-28 11:06:57.743 447226 7847 9 0 20827 2025-03-28 11:06:56.798 2025-03-28 11:06:56.798 447226 11873 9 0 20828 2025-03-28 11:06:58.276 2025-03-28 11:06:58.276 447226 11885 1 0 20829 2025-03-28 11:06:57.743 2025-03-28 11:06:57.743 447226 13587 1 0 20830 2025-03-28 11:06:58.051 2025-03-28 11:06:58.051 447226 15463 9 0 20831 2025-03-28 11:06:58.051 2025-03-28 11:06:58.051 447226 15556 1 0 20832 2025-03-28 11:06:58.494 2025-03-28 11:06:58.494 447226 20117 9 0 20833 2025-03-28 11:06:58.276 2025-03-28 11:06:58.276 447226 20619 9 0 20834 2025-03-28 11:06:56.798 2025-03-28 11:06:56.798 447226 21228 1 0 20835 2025-03-28 11:05:28.178 2025-03-28 11:05:28.178 447227 12819 1 0 20836 2025-03-28 11:05:51.186 2025-03-28 11:05:51.186 447228 663 1 0 20837 2025-03-28 11:05:52.949 2025-03-28 11:05:52.949 447229 956 1 0 20838 2025-03-28 11:06:52.513 2025-03-28 11:06:52.513 447230 6419 1 0 20839 2025-03-28 11:07:25.996 2025-03-28 11:07:25.996 447231 21670 1 0 20840 2025-03-28 11:17:08.739 2025-03-28 11:17:08.739 447232 1130 1 0 20841 2025-03-28 11:07:37.186 2025-03-28 11:07:37.186 447232 15213 1 0 20842 2025-03-28 11:17:08.739 2025-03-28 11:17:08.739 447232 21047 9 0 20843 2025-03-28 11:43:24.281 2025-03-28 11:43:24.281 447233 1286 9 0 20844 2025-03-28 11:10:18.451 2025-03-28 11:10:18.451 447233 2309 1 0 20845 2025-03-28 11:43:24.281 2025-03-28 11:43:24.281 447233 2514 1 0 20846 2025-03-28 11:43:25.379 2025-03-28 11:43:25.379 447233 3478 9 0 20847 2025-03-28 11:43:25.379 2025-03-28 11:43:25.379 447233 12277 1 0 20848 2025-03-28 11:20:06.796 2025-03-28 11:20:06.796 447234 2513 9 0 20849 2025-03-28 11:20:06.796 2025-03-28 11:20:06.796 447234 14990 1 0 20850 2025-03-28 11:10:36.243 2025-03-28 11:10:36.243 447234 21672 1 0 20851 2025-03-28 11:10:51.563 2025-03-28 11:10:51.563 447235 1051 1 0 20852 2025-03-28 11:17:18.379 2025-03-28 11:17:18.379 447235 9476 0 100 20853 2025-03-28 11:11:18.44 2025-03-28 11:11:18.44 447235 15728 0 0 20854 2025-03-28 12:28:33.394 2025-03-28 12:28:33.394 447235 18608 1 0 20855 2025-03-28 12:28:33.394 2025-03-28 12:28:33.394 447235 20353 0 0 20856 2025-03-28 11:19:17.559 2025-03-28 11:19:17.559 447236 621 3 0 20857 2025-03-28 11:17:25.843 2025-03-28 11:17:25.843 447236 880 0 0 20858 2025-03-28 11:12:01.031 2025-03-28 11:12:01.031 447236 1626 1 0 20859 2025-03-28 11:19:17.559 2025-03-28 11:19:17.559 447236 1772 23 0 20860 2025-03-28 11:17:40.247 2025-03-28 11:17:40.247 447236 21114 0 0 20861 2025-03-28 11:12:11.14 2025-03-28 11:12:11.14 447237 825 1 0 20862 2025-03-28 11:23:53.026 2025-03-28 11:23:53.026 447237 1433 0 0 20863 2025-03-28 11:23:57.932 2025-03-28 11:23:57.932 447237 1729 2 0 20864 2025-03-28 11:23:57.932 2025-03-28 11:23:57.932 447237 3347 18 0 20865 2025-03-28 11:23:53.026 2025-03-28 11:23:53.026 447237 15719 1 0 20866 2025-03-28 11:12:27.951 2025-03-28 11:12:27.951 447238 20755 1 0 20867 2025-03-28 11:16:31.273 2025-03-28 11:16:31.273 447239 620 9 0 20868 2025-03-28 11:16:30.899 2025-03-28 11:16:30.899 447239 733 9 0 20869 2025-03-28 11:16:31.572 2025-03-28 11:16:31.572 447239 1425 9 0 20870 2025-03-28 12:09:16.188 2025-03-28 12:09:16.188 447239 2098 19 0 20871 2025-03-28 12:09:16.188 2025-03-28 12:09:16.188 447239 2513 2 0 20872 2025-03-28 11:15:09.207 2025-03-28 11:15:09.207 447239 2749 1 0 20873 2025-03-28 11:16:31.273 2025-03-28 11:16:31.273 447239 3392 1 0 20874 2025-03-28 11:16:29.862 2025-03-28 11:16:29.862 447239 6149 9 0 20875 2025-03-28 11:16:30.899 2025-03-28 11:16:30.899 447239 14941 1 0 20876 2025-03-28 11:16:30.374 2025-03-28 11:16:30.374 447239 16536 9 0 20877 2025-03-28 11:16:31.572 2025-03-28 11:16:31.572 447239 20201 1 0 20878 2025-03-28 11:16:30.374 2025-03-28 11:16:30.374 447239 20623 1 0 20879 2025-03-28 11:16:29.862 2025-03-28 11:16:29.862 447239 20745 1 0 20880 2025-03-28 11:15:20.016 2025-03-28 11:15:20.016 447240 21072 1 0 20881 2025-03-28 12:01:19.016 2025-03-28 12:01:19.016 447241 1825 2 0 20882 2025-03-28 11:17:03.412 2025-03-28 11:17:03.412 447241 2151 100 0 20883 2025-03-28 11:17:52.636 2025-03-28 11:17:52.636 447241 5306 1 0 20884 2025-03-28 11:42:11.435 2025-03-28 11:42:11.435 447241 7978 2 0 20885 2025-03-28 11:20:47.203 2025-03-28 11:20:47.203 447241 9337 5 0 20886 2025-03-28 11:17:52.636 2025-03-28 11:17:52.636 447241 9339 9 0 20887 2025-03-28 12:26:46.446 2025-03-28 12:26:46.446 447241 9916 9 0 20888 2025-03-28 11:45:14.347 2025-03-28 11:45:14.347 447241 11515 2 0 20889 2025-03-28 11:30:14.471 2025-03-28 11:30:14.471 447241 14080 12 0 20890 2025-03-28 12:01:19.016 2025-03-28 12:01:19.016 447241 15556 19 0 20891 2025-03-28 11:30:14.471 2025-03-28 11:30:14.471 447241 16124 105 0 20892 2025-03-28 12:26:46.446 2025-03-28 12:26:46.446 447241 16965 1 0 20893 2025-03-28 11:20:47.203 2025-03-28 11:20:47.203 447241 18930 45 0 20894 2025-03-28 11:45:14.347 2025-03-28 11:45:14.347 447241 19570 19 0 20895 2025-03-28 11:42:11.435 2025-03-28 11:42:11.435 447241 21072 19 0 20896 2025-03-28 12:00:05.523 2025-03-28 12:00:05.523 447242 618 27 0 20897 2025-03-28 12:00:05.523 2025-03-28 12:00:05.523 447242 656 3 0 20898 2025-03-28 11:17:21.251 2025-03-28 11:17:21.251 447242 16769 1 0 20899 2025-03-28 12:09:21.73 2025-03-28 12:09:21.73 447242 19637 19 0 20900 2025-03-28 12:09:21.73 2025-03-28 12:09:21.73 447242 20972 2 0 20901 2025-03-28 11:25:53.697 2025-03-28 11:25:53.697 447243 725 91 0 20902 2025-03-28 11:24:04.5 2025-03-28 11:24:04.5 447243 5961 0 0 20903 2025-03-28 11:24:17.079 2025-03-28 11:24:17.079 447243 9084 0 0 20904 2025-03-28 11:25:53.697 2025-03-28 11:25:53.697 447243 19016 10 0 20905 2025-03-28 11:23:43.429 2025-03-28 11:23:43.429 447243 20603 1 0 20906 2025-03-28 11:25:32.494 2025-03-28 11:25:32.494 447244 17162 1 0 20907 2025-03-28 11:25:57.569 2025-03-28 11:25:57.569 447245 9242 1 0 20908 2025-03-28 11:26:44.276 2025-03-28 11:26:44.276 447245 16753 0 0 20909 2025-03-28 11:26:44.276 2025-03-28 11:26:44.276 447245 17316 3 0 20910 2025-03-28 11:26:20.821 2025-03-28 11:26:20.821 447246 1825 1 0 20911 2025-03-28 11:27:19.216 2025-03-28 11:27:19.216 447246 14489 1 0 20912 2025-03-28 11:27:19.216 2025-03-28 11:27:19.216 447246 17183 9 0 20913 2025-03-28 11:27:49.225 2025-03-28 11:27:49.225 447247 20306 1 0 20914 2025-03-28 11:30:03.725 2025-03-28 11:30:03.725 447248 694 1 0 20915 2025-03-28 11:30:15.825 2025-03-28 11:30:15.825 447249 17592 1 0 20916 2025-03-28 11:41:31.161 2025-03-28 11:41:31.161 447250 10311 2 0 20917 2025-03-28 11:41:31.161 2025-03-28 11:41:31.161 447250 15326 19 0 20918 2025-03-28 11:30:48.785 2025-03-28 11:30:48.785 447250 18528 1 0 20919 2025-03-28 12:22:43.841 2025-03-28 12:22:43.841 447251 704 19 0 20920 2025-03-28 11:39:45.728 2025-03-28 11:39:45.728 447251 859 190 0 20921 2025-03-28 11:38:43.952 2025-03-28 11:38:43.952 447251 1428 189 0 20922 2025-03-28 11:40:51.882 2025-03-28 11:40:51.882 447251 1577 225 0 20923 2025-03-28 12:15:03.284 2025-03-28 12:15:03.284 447251 1717 58 0 20924 2025-03-28 11:40:51.882 2025-03-28 11:40:51.882 447251 2000 25 0 20925 2025-03-28 11:31:37.86 2025-03-28 11:31:37.86 447251 2757 105 0 20926 2025-03-28 12:11:06.332 2025-03-28 12:11:06.332 447251 5497 3 0 20927 2025-03-28 11:31:43.159 2025-03-28 11:31:43.159 447251 5661 0 0 20928 2025-03-28 11:41:31.049 2025-03-28 11:41:31.049 447251 6765 90 0 20929 2025-03-28 11:42:14.146 2025-03-28 11:42:14.146 447251 9335 2 0 20930 2025-03-28 11:38:43.952 2025-03-28 11:38:43.952 447251 9352 21 0 20931 2025-03-28 12:22:43.841 2025-03-28 12:22:43.841 447251 10352 2 0 20932 2025-03-28 11:47:43.465 2025-03-28 11:47:43.465 447251 13169 19 0 20933 2025-03-28 11:33:02.43 2025-03-28 11:33:02.43 447251 13987 0 0 20934 2025-03-28 11:38:37.961 2025-03-28 11:38:37.961 447251 14731 1 0 20935 2025-03-28 11:47:43.465 2025-03-28 11:47:43.465 447251 14941 2 0 20936 2025-03-28 11:31:37.86 2025-03-28 11:31:37.86 447251 15196 12 0 20937 2025-03-28 11:39:45.728 2025-03-28 11:39:45.728 447251 16250 21 0 20938 2025-03-28 11:31:23.173 2025-03-28 11:31:23.173 447251 16282 100 0 20939 2025-03-28 12:08:42.459 2025-03-28 12:08:42.459 447251 16351 8 0 20940 2025-03-28 11:42:14.146 2025-03-28 11:42:14.146 447251 16556 19 0 20941 2025-03-28 12:08:42.459 2025-03-28 12:08:42.459 447251 16966 68 0 20942 2025-03-28 11:46:19.86 2025-03-28 11:46:19.86 447251 17991 100 0 20943 2025-03-28 11:38:37.961 2025-03-28 11:38:37.961 447251 18678 0 0 20944 2025-03-28 12:22:43.49 2025-03-28 12:22:43.49 447251 19016 2 0 20945 2025-03-28 12:15:03.284 2025-03-28 12:15:03.284 447251 19813 6 0 20946 2025-03-28 11:46:19.86 2025-03-28 11:46:19.86 447251 20904 900 0 20947 2025-03-28 11:41:31.049 2025-03-28 11:41:31.049 447251 21014 10 0 20948 2025-03-28 12:11:06.332 2025-03-28 12:11:06.332 447251 21406 30 0 20949 2025-03-28 12:22:43.49 2025-03-28 12:22:43.49 447251 21810 19 0 20950 2025-03-28 12:11:29.363 2025-03-28 12:11:29.363 447252 896 9 0 20951 2025-03-28 12:11:29.363 2025-03-28 12:11:29.363 447252 2519 1 0 20952 2025-03-28 11:47:41.821 2025-03-28 11:47:41.821 447252 9611 19 0 20953 2025-03-28 11:31:27.535 2025-03-28 11:31:27.535 447252 9820 10 0 20954 2025-03-28 11:47:41.821 2025-03-28 11:47:41.821 447252 14385 2 0 20955 2025-03-28 11:31:33.243 2025-03-28 11:31:33.243 447253 9275 1 0 20956 2025-03-28 11:32:13.423 2025-03-28 11:32:13.423 447253 20243 0 0 20957 2025-03-28 11:31:49.884 2025-03-28 11:31:49.884 447254 19829 1 0 20958 2025-03-28 11:47:41.179 2025-03-28 11:47:41.179 447255 11165 19 0 20959 2025-03-28 11:33:04.586 2025-03-28 11:33:04.586 447255 17533 10 0 20960 2025-03-28 11:47:41.179 2025-03-28 11:47:41.179 447255 17976 2 0 20961 2025-03-28 11:45:44.578 2025-03-28 11:45:44.578 447256 3400 2 0 20962 2025-03-28 11:35:01.451 2025-03-28 11:35:01.451 447256 21815 1 0 20963 2025-03-28 11:45:44.578 2025-03-28 11:45:44.578 447256 21833 19 0 20964 2025-03-28 11:47:40.502 2025-03-28 11:47:40.502 447257 667 19 0 20965 2025-03-28 11:35:38.007 2025-03-28 11:35:38.007 447257 1658 0 0 20966 2025-03-28 12:08:17.433 2025-03-28 12:08:17.433 447257 7766 2 0 20967 2025-03-28 11:42:18.514 2025-03-28 11:42:18.514 447257 13398 19 0 20968 2025-03-28 11:42:18.514 2025-03-28 11:42:18.514 447257 13843 2 0 20969 2025-03-28 11:47:40.502 2025-03-28 11:47:40.502 447257 16747 2 0 20970 2025-03-28 12:08:17.433 2025-03-28 12:08:17.433 447257 17693 19 0 20971 2025-03-28 11:35:06.078 2025-03-28 11:35:06.078 447257 19655 69 0 20972 2025-03-28 11:35:45.233 2025-03-28 11:35:45.233 447258 763 0 0 20973 2025-03-28 11:36:07.861 2025-03-28 11:36:07.861 447258 3371 0 0 20974 2025-03-28 11:36:14.318 2025-03-28 11:36:14.318 447258 9820 1 0 20975 2025-03-28 11:36:14.318 2025-03-28 11:36:14.318 447258 11862 0 0 20976 2025-03-28 11:36:15.825 2025-03-28 11:36:15.825 447258 11942 9 0 20977 2025-03-28 11:36:25.933 2025-03-28 11:36:25.933 447258 12102 0 0 20978 2025-03-28 11:35:27.885 2025-03-28 11:35:27.885 447258 14472 1 0 20979 2025-03-28 11:36:14.499 2025-03-28 11:36:14.499 447258 16536 8 0 20980 2025-03-28 11:36:15.825 2025-03-28 11:36:15.825 447258 18557 81 0 20981 2025-03-28 11:36:14.499 2025-03-28 11:36:14.499 447258 21494 1 0 20982 2025-03-28 11:37:29.216 2025-03-28 11:37:29.216 447259 669 1 0 20983 2025-03-28 11:47:30.668 2025-03-28 11:47:30.668 447260 9200 69 0 20984 2025-03-28 11:47:30.668 2025-03-28 11:47:30.668 447260 9362 8 0 20985 2025-03-28 11:47:37.841 2025-03-28 11:47:37.841 447260 9364 8 0 20986 2025-03-28 11:37:41.575 2025-03-28 11:37:41.575 447260 9421 1 0 20987 2025-03-28 11:47:37.841 2025-03-28 11:47:37.841 447260 20646 69 0 20988 2025-03-28 11:38:52.049 2025-03-28 11:38:52.049 447261 13406 1 0 20989 2025-03-28 11:42:16.939 2025-03-28 11:42:16.939 447262 11996 1 0 20990 2025-03-28 12:03:12.943 2025-03-28 12:03:12.943 447262 17690 8 0 20991 2025-03-28 12:03:12.943 2025-03-28 12:03:12.943 447262 18270 1 0 20992 2025-03-28 12:12:52.91 2025-03-28 12:12:52.91 447263 1389 2 0 20993 2025-03-28 11:44:12.807 2025-03-28 11:44:12.807 447263 18306 1 0 20994 2025-03-28 12:12:52.91 2025-03-28 12:12:52.91 447263 20243 19 0 20995 2025-03-28 11:44:24.356 2025-03-28 11:44:24.356 447263 20377 0 0 20996 2025-03-28 11:44:40.413 2025-03-28 11:44:40.413 447264 986 9 0 20997 2025-03-28 11:44:29.557 2025-03-28 11:44:29.557 447264 998 10 0 20998 2025-03-28 11:51:08.159 2025-03-28 11:51:08.159 447264 2309 180 0 20999 2025-03-28 12:06:53.892 2025-03-28 12:06:53.892 447264 5728 378 0 21000 2025-03-28 12:22:34.15 2025-03-28 12:22:34.15 447264 8796 38 0 21001 2025-03-28 12:06:53.892 2025-03-28 12:06:53.892 447264 11454 42 0 21002 2025-03-28 12:05:19.396 2025-03-28 12:05:19.396 447264 11967 1 0 21003 2025-03-28 11:51:08.159 2025-03-28 11:51:08.159 447264 12769 20 0 21004 2025-03-28 11:51:19.28 2025-03-28 11:51:19.28 447264 16097 190 0 21005 2025-03-28 11:47:40.03 2025-03-28 11:47:40.03 447264 16154 19 0 21006 2025-03-28 11:44:40.413 2025-03-28 12:05:19.396 447264 20182 10 0 21007 2025-03-28 11:47:40.03 2025-03-28 11:47:40.03 447264 20913 2 0 21008 2025-03-28 11:51:19.28 2025-03-28 11:51:19.28 447264 21012 21 0 21009 2025-03-28 12:22:34.15 2025-03-28 12:22:34.15 447264 21072 4 0 21010 2025-03-28 11:59:40.351 2025-03-28 11:59:40.351 447265 2123 1 0 21011 2025-03-28 11:45:05.544 2025-03-28 11:45:05.544 447265 7818 100 0 21012 2025-03-28 11:59:40.351 2025-03-28 11:59:40.351 447265 9378 9 0 21013 2025-03-28 12:03:07.23 2025-03-28 12:03:07.23 447267 674 1 0 21014 2025-03-28 12:03:07.23 2025-03-28 12:03:07.23 447267 1480 8 0 21015 2025-03-28 12:03:07.806 2025-03-28 12:03:07.806 447267 12911 9 0 21016 2025-03-28 12:03:07.059 2025-03-28 12:03:07.059 447267 13133 1 0 21017 2025-03-28 12:03:07.806 2025-03-28 12:03:07.806 447267 16633 81 0 21018 2025-03-28 11:47:09.975 2025-03-28 11:47:09.975 447267 16754 1 0 21019 2025-03-28 12:03:07.059 2025-03-28 12:03:07.059 447267 18717 0 0 21020 2025-03-28 11:47:28.425 2025-03-28 11:47:28.425 447267 19446 0 0 21021 2025-03-28 11:47:43.58 2025-03-28 11:47:43.58 447267 20562 0 0 21022 2025-03-28 11:47:12.583 2025-03-28 11:47:12.583 447268 4250 1 0 21023 2025-03-28 11:47:15.811 2025-03-28 11:47:15.811 447269 19121 1 0 21024 2025-03-28 11:48:04.959 2025-03-28 11:48:04.959 447270 3396 1 0 21025 2025-03-28 11:48:16.066 2025-03-28 11:48:16.066 447271 780 1 0 21026 2025-03-28 12:03:44.988 2025-03-28 12:03:44.988 447271 9796 45 0 21027 2025-03-28 12:03:44.988 2025-03-28 12:03:44.988 447271 12609 5 0 21028 2025-03-28 11:49:04.349 2025-03-28 11:49:04.349 447272 12057 1 0 21029 2025-03-28 11:49:56.696 2025-03-28 11:49:56.696 447273 8729 1 0 21030 2025-03-28 11:50:11.467 2025-03-28 11:50:11.467 447274 17316 1 0 21031 2025-03-28 11:51:12.949 2025-03-28 11:51:12.949 447275 5003 1 0 21032 2025-03-28 12:02:04.582 2025-03-28 12:02:04.582 447276 2748 9 0 21033 2025-03-28 11:52:19.481 2025-03-28 11:52:19.481 447276 5779 1 0 21034 2025-03-28 12:02:04.582 2025-03-28 12:02:04.582 447276 11609 1 0 21035 2025-03-28 11:54:43.749 2025-03-28 11:54:43.749 447277 1006 9 0 21036 2025-03-28 12:07:14.675 2025-03-28 12:07:14.675 447277 1483 8 0 21037 2025-03-28 11:54:43.749 2025-03-28 11:54:43.749 447277 2437 1 0 21038 2025-03-28 11:54:44.025 2025-03-28 11:54:44.025 447277 11760 1 0 21039 2025-03-28 11:53:32.541 2025-03-28 11:53:32.541 447277 14663 1 0 21040 2025-03-28 11:54:44.025 2025-03-28 11:54:44.025 447277 15577 9 0 21041 2025-03-28 12:07:14.675 2025-03-28 12:07:14.675 447277 20681 68 0 21042 2025-03-28 11:54:29.77 2025-03-28 11:54:29.77 447278 12188 1 0 21043 2025-03-28 11:55:40.708 2025-03-28 11:55:40.708 447279 1394 1 0 21044 2025-03-28 12:10:43.986 2025-03-28 12:10:43.986 447279 9366 30 0 21045 2025-03-28 12:10:43.986 2025-03-28 12:10:43.986 447279 18309 3 0 21046 2025-03-28 12:06:49.185 2025-03-28 12:06:49.185 447280 3392 10 0 21047 2025-03-28 12:07:13.156 2025-03-28 12:07:13.156 447280 6149 68 0 21048 2025-03-28 12:07:13.156 2025-03-28 12:07:13.156 447280 9366 8 0 21049 2025-03-29 08:34:00.797 2025-03-29 08:34:00.797 447280 9418 7 0 21050 2025-03-28 11:56:05.081 2025-03-28 11:56:05.081 447280 13547 1 0 21051 2025-03-28 11:59:27.849 2025-03-28 11:59:27.849 447280 14385 3 0 21052 2025-03-28 11:59:27.849 2025-03-28 11:59:27.849 447280 16858 27 0 21053 2025-03-28 12:06:49.185 2025-03-28 12:06:49.185 447280 18956 90 0 21054 2025-03-29 08:34:00.797 2025-03-29 08:34:00.797 447280 20588 1 0 21055 2025-03-28 12:00:25.746 2025-03-28 12:00:25.746 447282 2111 1 0 21056 2025-03-28 12:02:36.211 2025-03-28 12:02:36.211 447282 12483 9 0 21057 2025-03-28 12:02:36.211 2025-03-28 12:02:36.211 447282 16124 1 0 21058 2025-03-28 12:02:35.359 2025-03-28 12:02:35.359 447282 21401 9 0 21059 2025-03-28 12:02:35.359 2025-03-28 12:02:35.359 447282 21647 1 0 21060 2025-03-28 12:02:01.045 2025-03-28 12:02:01.045 447283 5978 1 0 21061 2025-03-28 12:06:11.262 2025-03-28 12:06:11.262 447284 733 1 0 21062 2025-03-28 12:02:01.761 2025-03-28 12:02:01.761 447284 2347 1 0 21063 2025-03-28 12:06:11.262 2025-03-28 12:06:11.262 447284 13753 9 0 21064 2025-03-28 12:02:33.45 2025-03-28 12:02:33.45 447286 20599 1 0 21065 2025-03-29 09:20:23.772 2025-03-29 09:20:23.772 447287 667 19 0 21066 2025-03-29 09:20:23.772 2025-03-29 09:20:23.772 447287 2213 2 0 21067 2025-03-28 12:11:34.277 2025-03-28 12:11:34.277 447287 2309 90 0 21068 2025-03-28 12:04:33.362 2025-03-28 12:04:33.362 447287 4538 10 0 21069 2025-03-28 12:03:03.803 2025-03-28 12:03:03.803 447287 5865 1 0 21070 2025-03-28 12:04:33.362 2025-03-28 12:04:33.362 447287 16212 90 0 21071 2025-03-28 12:11:34.277 2025-03-28 12:11:34.277 447287 21040 10 0 21072 2025-03-28 12:03:45.518 2025-03-28 12:03:45.518 447288 697 1 0 21073 2025-03-28 12:03:46.035 2025-03-28 12:03:46.035 447288 703 9 0 21074 2025-03-28 12:03:46.708 2025-03-28 12:03:46.708 447288 1135 9 0 21075 2025-03-28 12:03:46.708 2025-03-28 12:03:46.708 447288 2326 1 0 21076 2025-03-28 12:03:46.035 2025-03-28 12:03:46.035 447288 4459 1 0 21077 2025-03-28 12:09:50.341 2025-03-28 12:09:50.341 447288 6471 68 0 21078 2025-03-28 12:09:50.341 2025-03-28 12:09:50.341 447288 11716 8 0 21079 2025-03-28 12:03:46.301 2025-03-28 12:03:46.301 447288 11996 1 0 21080 2025-03-28 12:09:50.032 2025-03-28 12:09:50.032 447288 17172 8 0 21081 2025-03-28 12:09:50.032 2025-03-28 12:09:50.032 447288 20599 68 0 21082 2025-03-28 12:03:45.518 2025-03-28 12:03:45.518 447288 21287 9 0 21083 2025-03-28 12:03:46.301 2025-03-28 12:03:46.301 447288 21485 9 0 21084 2025-03-28 12:04:30.042 2025-03-28 12:04:30.042 447289 2508 2 0 21085 2025-03-28 12:04:30.042 2025-03-28 12:04:30.042 447289 14278 19 0 21086 2025-03-28 12:03:48.342 2025-03-28 12:03:48.342 447289 19996 1 0 21087 2025-03-28 12:04:48.38 2025-03-28 12:04:48.38 447291 1352 1 0 21088 2025-03-28 12:06:08.251 2025-03-28 12:06:08.251 447294 21058 1 0 21089 2025-03-28 12:06:11.817 2025-03-28 12:06:11.817 447295 2620 1 0 21090 2025-03-28 12:07:07.927 2025-03-28 12:07:07.927 447296 12049 1 0 21091 2025-03-28 12:07:17.077 2025-03-28 12:07:17.077 447297 16284 100 0 21092 2025-03-28 12:07:30.279 2025-03-28 12:07:30.279 447298 17212 1 0 21093 2025-03-28 12:28:35.473 2025-03-28 12:28:35.473 447299 1881 0 0 21094 2025-03-28 12:28:35.473 2025-03-28 12:28:35.473 447299 1959 1 0 21095 2025-03-28 12:09:00.472 2025-03-28 12:09:00.472 447299 14688 1 0 21096 2025-03-28 12:10:50.284 2025-03-28 12:10:50.284 447300 660 1 0 21097 2025-03-28 12:16:31.964 2025-03-28 12:16:31.964 447300 749 3 0 21098 2025-03-28 12:20:22.827 2025-03-28 12:20:22.827 447300 3304 9 0 21099 2025-03-28 12:20:22.827 2025-03-28 12:20:22.827 447300 18529 1 0 21100 2025-03-28 12:16:31.964 2025-03-28 12:16:31.964 447300 21166 27 0 21101 2025-03-28 12:15:00.1 2025-03-28 12:15:00.1 447302 2459 0 0 21102 2025-03-28 12:29:35.458 2025-03-28 12:29:35.458 447302 2711 9 0 21103 2025-03-29 08:34:20.644 2025-03-29 08:34:20.644 447302 8498 1 0 21104 2025-03-28 12:12:19.346 2025-03-28 12:12:19.346 447302 11873 0 0 21105 2025-03-28 12:29:35.458 2025-03-28 12:29:35.458 447302 15491 1 0 21106 2025-03-29 08:34:20.644 2025-03-29 08:34:20.644 447302 19524 7 0 21107 2025-03-28 12:14:55.795 2025-03-28 12:14:55.795 447304 20201 100 0 21108 2025-03-28 12:19:21.502 2025-03-28 12:19:21.502 447304 21442 10 0 21109 2025-03-28 12:19:21.502 2025-03-28 12:19:21.502 447304 21631 90 0 21110 2025-03-28 12:21:30.424 2025-03-28 12:21:30.424 447305 721 1 0 21111 2025-03-28 12:21:30.989 2025-03-28 12:21:30.989 447305 964 1 0 21112 2025-03-28 12:21:30.989 2025-03-28 12:21:30.989 447305 4074 9 0 21113 2025-03-28 12:21:30.424 2025-03-28 12:21:30.424 447305 10661 9 0 21114 2025-03-28 12:21:51.865 2025-03-28 12:21:51.865 447308 1985 1 0 21115 2025-03-28 12:35:14.491 2025-03-28 12:35:14.491 447310 2596 3 0 21116 2025-03-28 12:35:15.288 2025-03-28 12:35:15.288 447310 3478 3 0 21117 2025-03-28 12:35:14.491 2025-03-28 12:35:14.491 447310 10586 0 0 21118 2025-03-28 12:24:54.17 2025-03-28 12:24:54.17 447310 12507 1 0 21119 2025-03-28 12:35:15.288 2025-03-28 12:35:15.288 447310 15367 0 0 21120 2025-03-28 12:31:54.379 2025-03-28 12:31:54.379 447311 940 90 0 21121 2025-03-28 12:31:54.379 2025-03-28 12:31:54.379 447311 5597 10 0 21122 2025-03-28 12:32:13.804 2025-03-28 12:32:13.804 447313 18734 1 0 21123 2025-03-28 12:32:13.804 2025-03-28 12:32:13.804 447313 19826 9 0 21124 2025-03-28 12:31:41.872 2025-03-28 12:31:41.872 447314 15588 1 0 21125 2025-03-28 12:37:32.977 2025-03-28 12:37:32.977 447325 9295 0 0 21126 2025-03-28 12:41:37.49 2025-03-28 12:41:37.49 447331 13399 9 0 21127 2025-03-28 12:41:37.49 2025-03-28 12:41:37.49 447331 21233 1 0 21128 2025-03-28 12:42:42.27 2025-03-28 12:42:42.27 447332 1959 1 0 21129 2025-03-28 12:42:42.27 2025-03-28 12:42:42.27 447332 17891 9 0 21130 2025-03-29 09:21:12.086 2025-03-29 09:21:12.086 447442 4084 19 0 21131 2025-03-29 09:21:12.086 2025-03-29 09:21:12.086 447442 21332 2 0 21132 2025-03-29 08:31:13.291 2025-03-29 08:31:13.291 447583 4802 14 0 21133 2025-03-29 08:37:34.099 2025-03-29 08:37:34.099 447583 9418 3 0 21134 2025-03-29 08:37:34.099 2025-03-29 08:37:34.099 447583 21019 23 0 21135 2025-03-29 08:31:13.291 2025-03-29 08:31:13.291 447583 21208 2 0 21136 2025-03-29 08:33:35.974 2025-03-29 08:33:35.974 447585 811 1 0 21137 2025-03-29 08:33:35.974 2025-03-29 08:33:35.974 447585 20623 7 0 21138 2025-03-29 09:38:47.264 2025-03-29 09:38:47.264 447719 759 1 0 21139 2025-03-29 09:38:44.187 2025-03-29 09:38:44.187 447719 6160 18 0 21140 2025-03-29 09:38:43.454 2025-03-29 09:38:43.454 447719 7979 1 0 21141 2025-03-29 09:38:44.187 2025-03-29 09:38:44.187 447719 10352 2 0 21142 2025-03-29 09:38:49.479 2025-03-29 09:38:49.479 447719 11073 1 0 21143 2025-03-29 09:38:47.264 2025-03-29 09:38:47.264 447719 12507 9 0 21144 2025-03-29 09:38:49.479 2025-03-29 09:38:49.479 447719 18412 9 0 21145 2025-03-29 09:38:43.454 2025-03-29 09:38:43.454 447719 20280 9 0 21146 2025-03-29 15:57:58.369 2025-03-29 15:57:58.369 447841 1720 19 0 21147 2025-03-29 19:39:53.954 2025-03-29 19:39:53.954 447841 5128 1 0 21148 2025-03-29 15:56:44.475 2025-03-29 15:56:44.475 447841 6526 2 0 21149 2025-03-29 15:56:44.475 2025-03-29 15:56:44.475 447841 9992 19 0 21150 2025-03-29 15:57:58.369 2025-03-29 15:57:58.369 447841 18717 2 0 21151 2025-03-29 19:39:53.954 2025-03-29 19:39:53.954 447841 20596 5 0 21152 2025-03-29 08:34:53.228 2025-03-29 08:34:53.228 447902 2065 2 0 21153 2025-03-29 08:34:53.228 2025-03-29 08:34:53.228 447902 2098 14 0 21154 2025-03-29 08:28:02.187 2025-03-29 08:28:02.187 447903 7425 14 0 21155 2025-03-29 19:39:57.33 2025-03-29 19:39:57.33 447903 12736 5 0 21156 2025-03-29 19:39:57.33 2025-03-29 19:39:57.33 447903 15273 1 0 21157 2025-03-29 08:28:02.187 2025-03-29 08:28:02.187 447903 15890 2 0 21158 2025-03-29 08:53:23.111 2025-03-29 08:53:23.111 447944 658 5 0 21159 2025-03-29 08:33:20.433 2025-03-29 08:33:20.433 447944 1272 10 0 21160 2025-03-29 09:04:42.234 2025-03-29 09:04:42.234 447944 1468 0 0 21161 2025-03-29 08:33:20.433 2025-03-29 08:33:20.433 447944 4754 91 0 21162 2025-03-29 09:01:44.566 2025-03-29 09:01:44.566 447944 6136 90 0 21163 2025-03-29 09:01:44.566 2025-03-29 09:01:44.566 447944 6421 10 0 21164 2025-03-29 08:53:23.111 2025-03-29 08:53:23.111 447944 7654 1 0 21165 2025-03-29 09:04:42.234 2025-03-29 09:04:42.234 447944 16954 1 0 21166 2025-03-29 08:34:10.988 2025-03-29 08:34:10.988 447956 14705 7 0 21167 2025-03-29 08:34:10.988 2025-03-29 08:34:10.988 447956 20597 1 0 21168 2025-03-29 20:20:51.691 2025-03-29 20:20:51.691 447960 691 3 0 21169 2025-03-29 20:20:51.139 2025-03-29 20:20:51.139 447960 7425 23 0 21170 2025-03-29 20:20:51.691 2025-03-29 20:20:51.691 447960 21233 23 0 21171 2025-03-29 20:20:51.139 2025-03-29 20:20:51.139 447960 21520 3 0 21172 2025-03-29 09:18:48.33 2025-03-29 09:18:48.33 447981 1090 2 0 21173 2025-03-29 09:18:48.33 2025-03-29 09:18:48.33 447981 21418 19 0 21174 2025-03-29 08:33:47.896 2025-03-29 08:33:47.896 447991 6393 1 0 21175 2025-03-29 08:33:47.896 2025-03-29 08:33:47.896 447991 16704 7 0 21176 2025-03-29 09:21:06.941 2025-03-29 09:21:06.941 448011 3717 19 0 21177 2025-03-29 09:21:06.941 2025-03-29 09:21:06.941 448011 9364 2 0 21178 2025-03-29 15:30:18.018 2025-03-29 15:30:18.018 448015 4570 58 0 21179 2025-03-29 15:30:18.018 2025-03-29 15:30:18.018 448015 8416 6 0 21180 2025-03-29 08:32:11.32 2025-03-29 08:32:11.32 448029 6777 14 0 21181 2025-03-29 08:32:11.32 2025-03-29 08:32:11.32 448029 10291 2 0 21182 2025-03-29 08:46:55.466 2025-03-29 08:46:55.466 448029 20710 9 0 21183 2025-03-29 08:46:55.466 2025-03-29 08:46:55.466 448029 21541 1 0 21184 2025-03-29 08:35:31.636 2025-03-29 08:35:31.636 448031 6594 23 0 21185 2025-03-29 08:35:31.636 2025-03-29 08:35:31.636 448031 18717 3 0 21186 2025-03-29 15:14:56.608 2025-03-29 15:14:56.608 448035 705 2 0 21187 2025-03-29 16:06:45.807 2025-03-29 16:06:45.807 448035 1726 90 0 21188 2025-03-29 15:14:56.755 2025-03-29 15:14:56.755 448035 1802 19 0 21189 2025-03-29 15:14:56.755 2025-03-29 15:14:56.755 448035 4064 2 0 21190 2025-03-29 15:21:29.647 2025-03-29 15:21:29.647 448035 7389 3 0 21191 2025-03-29 15:21:28.296 2025-03-29 15:21:28.296 448035 9354 3 0 21192 2025-03-29 16:06:45.807 2025-03-29 16:06:45.807 448035 10112 10 0 21193 2025-03-29 08:32:25.442 2025-03-29 08:32:25.442 448035 10280 7 0 21194 2025-03-29 08:32:25.442 2025-03-29 08:32:25.442 448035 13132 1 0 21195 2025-03-29 15:14:04.329 2025-03-29 15:14:04.329 448035 15526 19 0 21196 2025-03-29 15:14:56.608 2025-03-29 15:14:56.608 448035 18393 19 0 21197 2025-03-29 15:21:29.647 2025-03-29 15:21:29.647 448035 21047 23 0 21198 2025-03-29 15:14:04.329 2025-03-29 15:14:04.329 448035 21555 2 0 21199 2025-03-29 15:21:28.296 2025-03-29 15:21:28.296 448035 21578 23 0 21200 2025-03-29 08:24:50.002 2025-03-29 08:24:50.002 448040 12139 0 0 21201 2025-03-29 08:24:50.002 2025-03-29 08:24:50.002 448040 20811 2 0 21202 2025-03-29 20:21:21.755 2025-03-29 20:21:21.755 448043 7389 23 0 21203 2025-03-29 20:21:21.755 2025-03-29 20:21:21.755 448043 16998 3 0 21204 2025-03-29 08:41:03.56 2025-03-29 08:41:03.56 448049 636 91 0 21205 2025-03-29 08:41:03.56 2025-03-29 08:41:03.56 448049 19777 10 0 21206 2025-03-29 14:59:46.434 2025-03-29 14:59:46.434 448057 2326 8 0 21207 2025-03-29 14:59:46.434 2025-03-29 14:59:46.434 448057 5661 69 0 21208 2025-03-29 08:20:46.295 2025-03-29 08:20:46.295 448059 1261 1 0 21209 2025-03-29 09:18:38.446 2025-03-29 09:18:38.446 448059 5746 1 0 21210 2025-03-29 08:20:46.295 2025-03-29 08:20:46.295 448059 9159 0 0 21211 2025-03-29 09:18:38.446 2025-03-29 09:18:38.446 448059 18265 9 0 21212 2025-03-29 19:13:04.8 2025-03-29 19:13:04.8 448061 4250 64 0 21213 2025-03-29 08:26:32.984 2025-03-29 08:26:32.984 448061 6765 2 0 21214 2025-03-29 08:26:32.984 2025-03-29 08:26:32.984 448061 17221 19 0 21215 2025-03-29 19:13:04.8 2025-03-29 19:13:04.8 448061 18101 7 0 21216 2025-03-29 15:58:03.448 2025-03-29 15:58:03.448 448073 672 19 0 21217 2025-03-29 15:58:04.501 2025-03-29 15:58:04.501 448073 859 2 0 21218 2025-03-29 09:18:30.013 2025-03-29 09:18:30.013 448073 954 1 0 21219 2025-03-29 09:18:30.013 2025-03-29 09:18:30.013 448073 1401 9 0 21220 2025-03-29 15:58:03.448 2025-03-29 15:58:03.448 448073 1602 2 0 21221 2025-03-29 15:58:08.28 2025-03-29 15:58:08.28 448073 9906 2 0 21222 2025-03-29 15:58:04.501 2025-03-29 15:58:04.501 448073 17184 19 0 21223 2025-03-29 15:58:08.28 2025-03-29 15:58:08.28 448073 20509 19 0 21224 2025-03-29 08:32:29.997 2025-03-29 08:32:29.997 448120 13759 2 0 21225 2025-03-29 08:32:29.997 2025-03-29 08:32:29.997 448120 15890 14 0 21226 2025-03-29 08:30:09.795 2025-03-29 08:30:09.795 448141 1038 9 0 21227 2025-03-29 08:30:09.795 2025-03-29 08:30:09.795 448141 17541 1 0 21228 2025-03-29 08:35:12.961 2025-03-29 08:35:12.961 448155 16638 2 0 21229 2025-03-29 08:35:12.961 2025-03-29 08:35:12.961 448155 17535 19 0 21230 2025-03-29 08:28:39.242 2025-03-29 08:28:39.242 448157 6777 19 0 21231 2025-03-29 08:28:39.242 2025-03-29 08:28:39.242 448157 20599 2 0 21232 2025-03-29 08:43:57.47 2025-03-29 08:43:57.47 448158 5128 1 0 21233 2025-03-29 08:43:57.47 2025-03-29 08:43:57.47 448158 17226 9 0 21234 2025-03-29 09:09:33.527 2025-03-29 09:09:33.527 448158 20294 2 0 21235 2025-03-29 09:09:33.527 2025-03-29 09:09:33.527 448158 20849 19 0 21236 2025-03-29 09:09:02.822 2025-03-29 09:09:02.822 448168 8376 2 0 21237 2025-03-29 09:09:02.822 2025-03-29 09:09:02.822 448168 18441 19 0 21238 2025-03-29 09:08:59.812 2025-03-29 09:08:59.812 448181 12821 19 0 21239 2025-03-29 09:08:59.812 2025-03-29 09:08:59.812 448181 18101 2 0 21240 2025-03-29 08:47:31.929 2025-03-29 08:47:31.929 448185 698 10 0 21241 2025-03-29 08:47:31.929 2025-03-29 08:47:31.929 448185 7978 90 0 21242 2025-03-29 08:43:23.7 2025-03-29 08:43:23.7 448191 717 19 0 21243 2025-03-29 08:43:23.7 2025-03-29 08:43:23.7 448191 18314 2 0 21244 2025-03-29 20:21:20.377 2025-03-29 20:21:20.377 448199 20680 3 0 21245 2025-03-29 20:21:20.377 2025-03-29 20:21:20.377 448199 21239 23 0 21246 2025-03-29 09:18:23.18 2025-03-29 09:18:23.18 448200 1245 9 0 21247 2025-03-29 09:18:23.18 2025-03-29 09:18:23.18 448200 18069 1 0 21248 2025-03-29 08:38:51.065 2025-03-29 08:38:51.065 448200 20291 19 0 21249 2025-03-29 08:38:51.065 2025-03-29 08:38:51.065 448200 21393 2 0 21250 2025-03-29 08:30:01.706 2025-03-29 08:30:01.706 448201 657 1 0 21251 2025-03-29 08:38:37.169 2025-03-29 08:38:37.169 448201 736 2 0 21252 2025-03-29 08:30:01.706 2025-03-29 08:30:01.706 448201 5904 9 0 21253 2025-03-29 08:34:53.387 2025-03-29 08:34:53.387 448201 20495 2 0 21254 2025-03-29 08:38:37.169 2025-03-29 08:38:37.169 448201 20500 19 0 21255 2025-03-29 08:34:53.387 2025-03-29 08:34:53.387 448201 20701 19 0 21256 2025-03-29 08:30:01.159 2025-03-29 08:30:01.159 448202 770 9 0 21257 2025-03-29 08:35:14.567 2025-03-29 08:35:14.567 448202 1584 2 0 21258 2025-03-29 08:54:52.773 2025-03-29 08:54:52.773 448202 1773 2 0 21259 2025-03-29 08:54:52.773 2025-03-29 08:54:52.773 448202 11328 14 0 21260 2025-03-29 08:30:01.159 2025-03-29 08:30:01.159 448202 21164 1 0 21261 2025-03-29 08:35:14.567 2025-03-29 08:35:14.567 448202 21805 19 0 21262 2025-03-29 08:39:10.475 2025-03-29 08:39:10.475 448205 2039 2 0 21263 2025-03-29 08:39:10.475 2025-03-29 08:39:10.475 448205 10273 19 0 21264 2025-03-29 08:39:11.956 2025-03-29 08:39:11.956 448207 19576 19 0 21265 2025-03-29 08:39:11.956 2025-03-29 08:39:11.956 448207 21178 2 0 21266 2025-03-29 08:42:21.711 2025-03-29 08:42:21.711 448208 3683 2 0 21267 2025-03-29 08:42:21.711 2025-03-29 08:42:21.711 448208 9796 19 0 21268 2025-03-29 08:42:21.203 2025-03-29 08:42:21.203 448208 10849 19 0 21269 2025-03-29 08:42:18.81 2025-03-29 08:42:18.81 448211 2322 19 0 21270 2025-03-29 08:42:18.81 2025-03-29 08:42:18.81 448211 2757 2 0 21271 2025-03-29 08:42:18.338 2025-03-29 08:42:18.338 448218 1620 19 0 21272 2025-03-29 08:42:18.338 2025-03-29 08:42:18.338 448218 19138 2 0 21273 2025-03-29 09:31:08.497 2025-03-29 09:31:08.497 448220 701 1 0 21274 2025-03-29 09:31:08.497 2025-03-29 09:31:08.497 448220 7891 9 0 21275 2025-03-29 08:35:04.339 2025-03-29 08:35:04.339 448227 2224 2 0 21276 2025-03-29 08:35:04.339 2025-03-29 08:35:04.339 448227 21523 19 0 21277 2025-03-29 08:34:49.61 2025-03-29 08:34:49.61 448228 16571 2 0 21278 2025-03-29 08:34:49.61 2025-03-29 08:34:49.61 448228 19655 19 0 21279 2025-03-29 08:29:59.467 2025-03-29 08:29:59.467 448229 688 1 0 21280 2025-03-29 08:42:54.962 2025-03-29 08:42:54.962 448229 3478 0 0 21281 2025-03-29 08:42:54.962 2025-03-29 08:42:54.962 448229 4035 1 0 21282 2025-03-29 08:29:57.151 2025-03-29 08:29:57.151 448229 7097 9 0 21283 2025-03-29 08:29:59.467 2025-03-29 08:29:59.467 448229 9330 9 0 21284 2025-03-29 08:29:57.151 2025-03-29 08:29:57.151 448229 12562 1 0 21285 2025-03-29 08:39:09.576 2025-03-29 08:39:09.576 448230 722 19 0 21286 2025-03-29 08:39:09.576 2025-03-29 08:39:09.576 448230 964 2 0 21287 2025-03-29 08:39:15.184 2025-03-29 08:39:15.184 448232 18727 19 0 21288 2025-03-29 08:39:15.184 2025-03-29 08:39:15.184 448232 19332 2 0 21289 2025-03-29 08:39:12.845 2025-03-29 08:39:12.845 448234 16788 19 0 21290 2025-03-29 08:39:12.845 2025-03-29 08:39:12.845 448234 19512 2 0 21291 2025-03-29 08:39:19.181 2025-03-29 08:39:19.181 448238 21003 2 0 21292 2025-03-29 08:39:19.181 2025-03-29 08:39:19.181 448238 21012 19 0 21293 2025-03-29 08:39:17.651 2025-03-29 08:39:17.651 448241 14465 2 0 21294 2025-03-29 08:39:17.651 2025-03-29 08:39:17.651 448241 21271 19 0 21295 2025-03-29 08:37:14.13 2025-03-29 08:37:14.13 448244 717 19 0 21296 2025-03-29 09:00:36.921 2025-03-29 09:00:36.921 448244 4259 8 0 21297 2025-03-29 09:23:11.269 2025-03-29 09:23:11.269 448244 7667 9 0 21298 2025-03-29 09:23:11.269 2025-03-29 09:23:11.269 448244 8469 81 0 21299 2025-03-29 08:37:14.13 2025-03-29 08:37:14.13 448244 11999 2 0 21300 2025-03-29 08:54:17.296 2025-03-29 08:54:17.296 448244 12738 7 0 21301 2025-03-29 09:00:36.921 2025-03-29 09:00:36.921 448244 15326 68 0 21302 2025-03-29 08:54:17.296 2025-03-29 08:54:17.296 448244 18174 1 0 21303 2025-03-29 08:47:05.449 2025-03-29 08:47:05.449 448261 825 45 0 21304 2025-03-29 08:47:05.449 2025-03-29 08:47:05.449 448261 14552 5 0 21305 2025-03-29 08:56:03.295 2025-03-29 08:56:03.295 448263 692 1 0 21306 2025-03-29 08:53:08.298 2025-03-29 08:53:08.298 448263 15147 1 0 21307 2025-03-29 08:53:08.298 2025-03-29 08:53:08.298 448263 17494 0 0 21308 2025-03-29 08:56:03.295 2025-03-29 08:56:03.295 448263 21287 7 0 21309 2025-03-29 08:42:16.794 2025-03-29 08:42:16.794 448276 882 2 0 21310 2025-03-29 08:42:16.794 2025-03-29 08:42:16.794 448276 17713 19 0 21311 2025-03-29 08:53:00.042 2025-03-29 08:53:00.042 448283 698 0 0 21312 2025-03-29 08:41:39.637 2025-03-29 08:41:39.637 448283 909 2 0 21313 2025-03-29 08:41:39.637 2025-03-29 08:41:39.637 448283 18116 19 0 21314 2025-03-29 08:53:00.042 2025-03-29 08:53:00.042 448283 18449 1 0 21315 2025-03-29 08:29:39.906 2025-03-29 08:29:39.906 448293 1145 19 0 21316 2025-03-29 09:08:58.265 2025-03-29 09:08:58.265 448293 18321 19 0 21317 2025-03-29 08:29:39.906 2025-03-29 08:29:39.906 448293 21091 2 0 21318 2025-03-29 09:08:58.265 2025-03-29 09:08:58.265 448293 21666 2 0 21319 2025-03-29 09:08:41.919 2025-03-29 09:08:41.919 448301 12911 2 0 21320 2025-03-29 09:08:41.919 2025-03-29 09:08:41.919 448301 16336 19 0 21321 2025-03-29 08:57:21.785 2025-03-29 08:57:21.785 448313 2111 5 0 21322 2025-03-29 08:57:21.785 2025-03-29 08:57:21.785 448313 18005 45 0 21323 2025-03-29 08:42:16.382 2025-03-29 08:42:16.382 448315 10731 2 0 21324 2025-03-29 08:42:16.382 2025-03-29 08:42:16.382 448315 21090 19 0 21325 2025-03-29 08:42:15.043 2025-03-29 08:42:15.043 448320 4989 19 0 21326 2025-03-29 08:42:15.043 2025-03-29 08:42:15.043 448320 14465 2 0 21327 2025-03-29 09:07:55.104 2025-03-29 09:07:55.104 448328 3371 19 0 21328 2025-03-29 09:07:55.104 2025-03-29 09:07:55.104 448328 20751 2 0 21329 2025-03-29 08:40:14.297 2025-03-29 08:40:14.297 448331 876 0 1000 21330 2025-03-29 08:43:17.797 2025-03-29 08:43:17.797 448331 1718 2 0 21331 2025-03-29 08:37:04.855 2025-03-29 08:37:04.855 448331 16176 19 0 21332 2025-03-29 08:43:17.797 2025-03-29 08:43:17.797 448331 16834 19 0 21333 2025-03-29 08:37:04.855 2025-03-29 08:37:04.855 448331 20710 2 0 21334 2025-03-29 08:31:10.696 2025-03-29 08:31:10.696 448334 11798 19 0 21335 2025-03-29 08:31:10.696 2025-03-29 08:31:10.696 448334 19071 2 0 21336 2025-03-29 08:36:40.569 2025-03-29 08:36:40.569 448341 749 2 0 21337 2025-03-29 09:08:38.664 2025-03-29 09:08:38.664 448341 1512 2 0 21338 2025-03-29 08:34:39.706 2025-03-29 08:34:39.706 448341 1801 1 0 21339 2025-03-29 08:34:39.706 2025-03-29 08:34:39.706 448341 9276 9 0 21340 2025-03-29 09:08:38.664 2025-03-29 09:08:38.664 448341 9496 19 0 21341 2025-03-29 08:36:40.569 2025-03-29 08:36:40.569 448341 17050 19 0 21342 2025-03-29 08:37:03.537 2025-03-29 08:37:03.537 448343 1490 19 0 21343 2025-03-29 08:37:03.537 2025-03-29 08:37:03.537 448343 5069 2 0 21344 2025-03-29 20:42:38.174 2025-03-29 20:42:38.174 448349 636 9 0 21345 2025-03-29 08:29:50.099 2025-03-29 08:29:50.099 448349 826 2 0 21346 2025-03-29 08:54:23.878 2025-03-29 08:54:23.878 448349 1652 10 0 21347 2025-03-29 09:10:45.385 2025-03-29 09:10:45.385 448349 5752 9 0 21348 2025-03-29 08:49:10.479 2025-03-29 08:49:10.479 448349 5775 19 0 21349 2025-03-29 15:10:59.08 2025-03-29 15:10:59.08 448349 7097 10 0 21350 2025-03-29 09:10:45.385 2025-03-29 09:10:45.385 448349 7913 1 0 21351 2025-03-29 08:34:49.525 2025-03-29 08:34:49.525 448349 9166 2 0 21352 2025-03-29 16:37:34.25 2025-03-29 16:37:34.25 448349 10986 3 0 21353 2025-03-29 15:16:29.188 2025-03-29 15:16:29.188 448349 11454 1 0 21354 2025-03-29 15:16:29.188 2025-03-29 15:16:29.188 448349 11760 8 0 21355 2025-03-29 09:01:26.318 2025-03-29 09:01:26.318 448349 12057 1 0 21356 2025-03-29 15:16:29.5 2025-03-29 15:16:29.5 448349 12483 1 0 21357 2025-03-29 15:16:29.757 2025-03-29 15:16:29.757 448349 14295 8 0 21358 2025-03-29 15:16:29.5 2025-03-29 15:16:29.5 448349 17519 8 0 21359 2025-03-29 08:38:33.367 2025-03-29 08:38:33.367 448349 19198 10 0 21360 2025-03-29 15:16:29.359 2025-03-29 15:16:29.359 448349 19199 1 0 21361 2025-03-29 08:54:23.878 2025-03-29 08:54:23.878 448349 19471 91 0 21362 2025-03-29 09:01:26.318 2025-03-29 09:01:26.318 448349 19494 9 0 21363 2025-03-29 08:34:49.525 2025-03-29 08:34:49.525 448349 19512 19 0 21364 2025-03-29 20:42:38.174 2025-03-29 20:42:38.174 448349 19655 1 0 21365 2025-03-29 15:16:29.359 2025-03-29 15:16:29.359 448349 20205 8 0 21366 2025-03-29 15:10:59.08 2025-03-29 15:10:59.08 448349 20294 90 0 21367 2025-03-29 08:29:50.099 2025-03-29 08:29:50.099 448349 20586 18 0 21368 2025-03-29 08:38:33.367 2025-03-29 08:38:33.367 448349 21269 90 0 21369 2025-03-29 08:49:10.479 2025-03-29 08:49:10.479 448349 21369 2 0 21370 2025-03-29 16:37:34.25 2025-03-29 16:37:34.25 448349 21578 30 0 21371 2025-03-29 15:16:29.757 2025-03-29 15:16:29.757 448349 21599 1 0 21372 2025-03-29 08:42:14.583 2025-03-29 08:42:14.583 448352 6268 19 0 21373 2025-03-29 08:42:14.583 2025-03-29 08:42:14.583 448352 15146 2 0 21374 2025-03-29 08:43:48.201 2025-03-29 08:43:48.201 448353 656 45 0 21375 2025-03-29 08:43:48.201 2025-03-29 08:43:48.201 448353 16816 5 0 21376 2025-03-29 08:23:40.569 2025-03-29 08:23:40.569 448356 15386 68 0 21377 2025-03-29 08:23:40.569 2025-03-29 08:23:40.569 448356 20603 8 0 21378 2025-03-29 08:27:53.858 2025-03-29 08:27:53.858 448358 11220 62 0 21379 2025-03-29 09:05:03.518 2025-03-29 09:05:03.518 448360 977 90 0 21380 2025-03-29 09:05:03.518 2025-03-29 09:05:03.518 448360 21254 10 0 21381 2025-03-29 08:26:21.202 2025-03-29 08:26:21.202 448361 7673 1 0 21382 2025-03-29 08:30:56.862 2025-03-29 08:30:56.862 448363 5557 0 0 21383 2025-03-29 08:39:15.87 2025-03-29 08:39:15.87 448363 12049 2 0 21384 2025-03-29 08:39:15.87 2025-03-29 08:39:15.87 448363 13547 19 0 21385 2025-03-29 08:28:17.404 2025-03-29 08:28:17.404 448365 4079 1 0 21386 2025-03-29 08:39:14.733 2025-03-29 08:39:14.733 448367 650 2 0 21387 2025-03-29 08:39:14.733 2025-03-29 08:39:14.733 448367 8289 19 0 21388 2025-03-29 08:29:31.135 2025-03-29 08:29:31.135 448367 20495 1 0 21389 2025-03-29 08:31:41.865 2025-03-29 08:31:41.865 448369 664 2 0 21390 2025-03-29 08:39:13.839 2025-03-29 08:39:13.839 448369 797 2 0 21391 2025-03-29 08:39:13.839 2025-03-29 08:39:13.839 448369 3979 15 0 21392 2025-03-29 08:39:14.047 2025-03-29 08:39:14.047 448369 18557 15 0 21393 2025-03-29 08:31:41.865 2025-03-29 08:31:41.865 448369 19502 19 0 21394 2025-03-29 08:39:14.047 2025-03-29 08:39:14.047 448369 21172 2 0 21395 2025-03-29 08:40:35.545 2025-03-29 08:40:35.545 448370 20614 19 0 21396 2025-03-29 08:40:35.545 2025-03-29 08:40:35.545 448370 21148 2 0 21397 2025-03-29 08:46:10.894 2025-03-29 08:46:10.894 448372 673 45 0 21398 2025-03-29 08:46:10.894 2025-03-29 08:46:10.894 448372 20998 5 0 21399 2025-03-29 08:32:20.691 2025-03-29 08:32:20.691 448372 21339 1 0 21400 2025-03-29 08:49:06.26 2025-03-29 08:49:06.26 448373 2330 19 0 21401 2025-03-29 08:39:16.94 2025-03-29 08:39:16.94 448373 5806 19 0 21402 2025-03-29 08:44:37.819 2025-03-29 08:44:37.819 448373 9166 9 0 21403 2025-03-29 08:34:22.755 2025-03-29 08:34:22.755 448373 12490 0 0 21404 2025-03-29 08:49:06.26 2025-03-29 08:49:06.26 448373 15147 2 0 21405 2025-03-29 08:41:16.408 2025-03-29 08:41:16.408 448373 15762 29 0 21406 2025-03-29 08:33:04.976 2025-03-29 08:33:04.976 448373 16653 1 0 21407 2025-03-29 08:39:16.94 2025-03-29 08:39:16.94 448373 19888 2 0 21408 2025-03-29 08:41:16.408 2025-03-29 08:41:16.408 448373 21480 3 0 21409 2025-03-29 08:44:37.819 2025-03-29 08:44:37.819 448373 21540 1 0 21410 2025-03-29 08:43:40.158 2025-03-29 08:43:40.158 448375 2722 2 0 21411 2025-03-29 08:43:40.158 2025-03-29 08:43:40.158 448375 13553 19 0 21412 2025-03-29 15:59:54.758 2025-03-29 15:59:54.758 448375 20614 19 0 21413 2025-03-29 15:59:54.758 2025-03-29 15:59:54.758 448375 21332 2 0 21414 2025-03-29 08:34:47.118 2025-03-29 08:34:47.118 448377 9362 8 0 21415 2025-03-29 08:34:47.118 2025-03-29 08:34:47.118 448377 20201 68 0 21416 2025-03-29 08:33:36.897 2025-03-29 08:33:36.897 448377 20225 1 0 21417 2025-03-29 08:46:11.662 2025-03-29 08:46:11.662 448378 1960 5 0 21418 2025-03-29 08:46:11.662 2025-03-29 08:46:11.662 448378 2367 45 0 21419 2025-03-29 08:34:35.608 2025-03-29 08:34:35.608 448378 20616 1 0 21420 2025-03-29 08:34:56.872 2025-03-29 08:34:56.872 448380 4989 1 0 21421 2025-03-29 08:35:16.393 2025-03-29 08:35:16.393 448381 2196 1 0 21422 2025-03-29 08:39:38.685 2025-03-29 08:39:38.685 448381 2329 1 0 21423 2025-03-29 08:39:38.685 2025-03-29 08:39:38.685 448381 8004 9 0 21424 2025-03-29 08:39:38.206 2025-03-29 08:39:38.206 448381 17218 9 0 21425 2025-03-29 08:39:38.206 2025-03-29 08:39:38.206 448381 21116 1 0 21426 2025-03-29 08:37:36.847 2025-03-29 08:37:36.847 448384 11621 1 0 21427 2025-03-29 09:09:23.763 2025-03-29 09:09:23.763 448385 681 9 0 21428 2025-03-29 08:39:04.929 2025-03-29 08:39:04.929 448385 696 15 0 21429 2025-03-29 08:39:03.949 2025-03-29 08:39:03.949 448385 705 2 0 21430 2025-03-29 08:37:58.581 2025-03-29 08:37:58.581 448385 836 21 0 21431 2025-03-29 09:09:23.763 2025-03-29 09:09:23.763 448385 1038 1 0 21432 2025-03-29 08:43:32.272 2025-03-29 08:43:32.272 448385 1213 2 0 21433 2025-03-29 08:39:04.702 2025-03-29 08:39:04.702 448385 5003 15 0 21434 2025-03-29 09:09:25.579 2025-03-29 09:09:25.579 448385 9275 1 0 21435 2025-03-29 08:39:04.702 2025-03-29 08:39:04.702 448385 10311 2 0 21436 2025-03-29 08:39:40.924 2025-03-29 08:39:40.924 448385 10719 8 0 21437 2025-03-29 09:09:25.579 2025-03-29 09:09:25.579 448385 14213 9 0 21438 2025-03-29 08:39:40.924 2025-03-29 08:39:40.924 448385 14260 68 0 21439 2025-03-29 09:15:03.256 2025-03-29 09:15:03.256 448385 15243 1 0 21440 2025-03-29 08:43:32.272 2025-03-29 08:43:32.272 448385 15326 19 0 21441 2025-03-29 08:39:04.177 2025-03-29 08:39:04.177 448385 16309 2 0 21442 2025-03-29 09:09:22.353 2025-03-29 09:09:22.353 448385 16954 9 0 21443 2025-03-29 08:53:37.716 2025-03-29 08:53:37.716 448385 18116 1 0 21444 2025-03-29 08:39:04.177 2025-03-29 08:39:04.177 448385 18494 15 0 21445 2025-03-29 08:39:03.949 2025-03-29 08:39:03.949 448385 19905 15 0 21446 2025-03-29 08:39:04.929 2025-03-29 08:39:04.929 448385 20479 2 0 21447 2025-03-29 08:53:37.716 2025-03-29 08:53:37.716 448385 21455 7 0 21448 2025-03-29 09:15:03.256 2025-03-29 09:15:03.256 448385 21672 9 0 21449 2025-03-29 09:09:22.353 2025-03-29 09:09:22.353 448385 21714 1 0 21450 2025-03-29 09:08:59.171 2025-03-29 09:08:59.171 448386 2013 2 0 21451 2025-03-29 08:38:32.809 2025-03-29 08:38:32.809 448386 2195 1 0 21452 2025-03-29 09:08:59.171 2025-03-29 09:08:59.171 448386 16633 19 0 21453 2025-03-29 08:50:09.819 2025-03-29 08:50:09.819 448387 1298 1 0 21454 2025-03-29 08:40:07.933 2025-03-29 08:40:07.933 448387 1489 0 0 21455 2025-03-29 08:38:39.998 2025-03-29 08:38:39.998 448387 1564 1 0 21456 2025-03-29 08:50:09.819 2025-03-29 08:50:09.819 448387 5725 9 0 21457 2025-03-29 08:45:45.719 2025-03-29 08:45:45.719 448388 2309 0 0 21458 2025-03-29 08:42:52.986 2025-03-29 08:42:52.986 448389 1105 9 0 21459 2025-03-29 08:42:53.581 2025-03-29 08:42:53.581 448389 1272 1 0 21460 2025-03-29 08:42:53.81 2025-03-29 08:42:53.81 448389 1745 1 0 21461 2025-03-29 08:42:53.581 2025-03-29 08:42:53.581 448389 15560 9 0 21462 2025-03-29 08:42:52.986 2025-03-29 08:42:52.986 448389 18743 1 0 21463 2025-03-29 08:42:53.81 2025-03-29 08:42:53.81 448389 20180 9 0 21464 2025-03-29 09:18:44.657 2025-03-29 09:18:44.657 448391 16543 90 0 21465 2025-03-29 08:40:35.465 2025-03-29 08:40:35.465 448391 17533 1 0 21466 2025-03-29 09:18:44.657 2025-03-29 09:18:44.657 448391 20757 10 0 21467 2025-03-29 08:45:25.224 2025-03-29 08:45:25.224 448392 1564 19 0 21468 2025-03-29 08:44:34.553 2025-03-29 08:44:34.553 448392 2459 9 0 21469 2025-03-29 08:41:01.537 2025-03-29 08:41:01.537 448392 5978 1 0 21470 2025-03-29 08:45:25.224 2025-03-29 08:45:25.224 448392 12291 2 0 21471 2025-03-29 08:44:34.553 2025-03-29 08:44:34.553 448392 15367 1 0 21472 2025-03-29 08:41:04.05 2025-03-29 08:41:04.05 448393 1602 1 0 21473 2025-03-29 09:07:25.199 2025-03-29 09:07:25.199 448394 9969 19 0 21474 2025-03-29 09:07:25.199 2025-03-29 09:07:25.199 448394 13361 2 0 21475 2025-03-29 08:42:17.957 2025-03-29 08:42:17.957 448394 14650 10 0 21476 2025-03-29 08:57:01.459 2025-03-29 08:57:01.459 448395 16424 5 0 21477 2025-03-29 08:42:52.681 2025-03-29 08:42:52.681 448395 21148 1 0 21478 2025-03-29 08:57:01.459 2025-03-29 08:57:01.459 448395 21672 45 0 21479 2025-03-29 08:43:04.68 2025-03-29 08:43:04.68 448396 688 1 0 21480 2025-03-29 08:52:38.599 2025-03-29 08:52:38.599 448396 5377 14 0 21481 2025-03-29 08:52:38.599 2025-03-29 08:52:38.599 448396 19198 2 0 21482 2025-03-29 08:43:14.776 2025-03-29 08:43:14.776 448397 913 1 0 21483 2025-03-29 08:44:14.007 2025-03-29 08:44:14.007 448398 16684 1 0 21484 2025-03-29 08:47:20.421 2025-03-29 08:47:20.421 448399 714 9 0 21485 2025-03-29 08:47:20.421 2025-03-29 08:47:20.421 448399 1213 1 0 21486 2025-03-29 08:47:19.708 2025-03-29 08:47:19.708 448399 1772 1 0 21487 2025-03-29 08:44:19.957 2025-03-29 08:44:19.957 448399 11829 1 0 21488 2025-03-29 08:47:19.708 2025-03-29 08:47:19.708 448399 19126 9 0 21489 2025-03-29 08:44:47.643 2025-03-29 08:44:47.643 448400 13398 1 0 21490 2025-03-29 08:50:04.908 2025-03-29 08:50:04.908 448402 999 0 0 21491 2025-03-29 09:07:23.089 2025-03-29 09:07:23.089 448402 4650 2 0 21492 2025-03-29 08:50:04.908 2025-03-29 08:50:04.908 448402 4819 1 0 21493 2025-03-29 09:07:23.089 2025-03-29 09:07:23.089 448402 5694 19 0 21494 2025-03-29 08:46:36.8 2025-03-29 08:46:36.8 448402 14465 12 0 21495 2025-03-29 08:45:38.706 2025-03-29 08:45:38.706 448402 16939 10 0 21496 2025-03-29 08:46:36.8 2025-03-29 08:46:36.8 448402 21041 109 0 21497 2025-03-29 08:54:12.491 2025-03-29 08:54:12.491 448403 675 9 0 21498 2025-03-29 08:54:14.286 2025-03-29 08:54:14.286 448403 1012 9 0 21499 2025-03-29 08:54:10.095 2025-03-29 08:54:10.095 448403 9246 9 0 21500 2025-03-29 08:54:10.482 2025-03-29 08:54:10.482 448403 10979 9 0 21501 2025-03-29 08:54:12.491 2025-03-29 08:54:12.491 448403 15474 1 0 21502 2025-03-29 08:54:12.227 2025-03-29 08:54:12.227 448403 16809 1 0 21503 2025-03-29 08:54:14.286 2025-03-29 08:54:14.286 448403 19263 1 0 21504 2025-03-29 08:54:10.482 2025-03-29 08:54:10.482 448403 19332 1 0 21505 2025-03-29 08:54:12.227 2025-03-29 08:54:12.227 448403 20603 9 0 21506 2025-03-29 08:54:10.095 2025-03-29 08:54:10.095 448403 21178 1 0 21507 2025-03-29 08:52:41.381 2025-03-29 08:52:41.381 448404 1394 0 0 21508 2025-03-29 08:53:43.757 2025-03-29 08:53:43.757 448404 3347 9 0 21509 2025-03-29 08:52:20.996 2025-03-29 08:52:20.996 448404 4862 0 0 21510 2025-03-29 08:53:43.757 2025-03-29 08:53:43.757 448404 5828 1 0 21511 2025-03-29 08:48:20.467 2025-03-29 08:48:20.467 448404 16954 1 0 21512 2025-03-29 08:49:02.287 2025-03-29 08:49:02.287 448405 656 1 0 21513 2025-03-29 08:50:18.289 2025-03-29 08:50:18.289 448408 4538 1 0 21514 2025-03-29 08:51:13.691 2025-03-29 08:51:13.691 448408 14939 2 0 21515 2025-03-29 08:51:13.691 2025-03-29 08:51:13.691 448408 20597 19 0 21516 2025-03-29 09:16:57.289 2025-03-29 09:16:57.289 448409 2593 9 0 21517 2025-03-29 09:15:16.707 2025-03-29 09:15:16.707 448409 2640 1 0 21518 2025-03-29 09:15:16.707 2025-03-29 09:15:16.707 448409 4259 9 0 21519 2025-03-29 08:51:24.543 2025-03-29 08:51:24.543 448409 6653 21 0 21520 2025-03-29 09:16:57.289 2025-03-29 09:16:57.289 448409 15549 1 0 21521 2025-03-29 09:07:22.288 2025-03-29 09:07:22.288 448409 20683 2 0 21522 2025-03-29 09:07:22.288 2025-03-29 09:07:22.288 448409 20972 19 0 21523 2025-03-29 08:51:29.786 2025-03-29 08:51:29.786 448410 16594 1 0 21524 2025-03-29 09:03:21.693 2025-03-29 09:03:21.693 448411 647 9 0 21525 2025-03-29 09:03:21.693 2025-03-29 09:03:21.693 448411 21314 1 0 21526 2025-03-29 08:53:40.033 2025-03-29 08:53:40.033 448413 9982 1 0 21527 2025-03-29 08:54:53.467 2025-03-29 08:54:53.467 448414 8004 1 0 21528 2025-03-29 09:03:17.251 2025-03-29 09:03:17.251 448415 2583 0 0 21529 2025-03-29 09:09:18.789 2025-03-29 09:09:18.789 448415 16410 1 0 21530 2025-03-29 09:03:17.251 2025-03-29 09:03:17.251 448415 16942 1 0 21531 2025-03-29 08:55:18.165 2025-03-29 08:55:18.165 448415 20614 95 0 21532 2025-03-29 09:09:18.789 2025-03-29 09:09:18.789 448415 20998 9 0 21533 2025-03-29 08:55:24.565 2025-03-29 08:55:24.565 448416 992 1 0 21534 2025-03-29 08:55:28.265 2025-03-29 08:55:28.265 448417 2347 1 0 21535 2025-03-29 08:57:32.043 2025-03-29 08:57:32.043 448420 1195 1 0 21536 2025-03-29 08:57:46.383 2025-03-29 08:57:46.383 448420 20825 0 0 21537 2025-03-29 08:57:57.617 2025-03-29 08:57:57.617 448422 12965 1 0 21538 2025-03-29 08:59:15.908 2025-03-29 08:59:15.908 448423 1007 9 0 21539 2025-03-29 08:59:15.908 2025-03-29 08:59:15.908 448423 19637 1 0 21540 2025-03-29 08:58:50.288 2025-03-29 08:58:50.288 448425 16042 1 0 21541 2025-03-29 09:03:45.999 2025-03-29 09:03:45.999 448426 20911 189 0 21542 2025-03-29 09:03:45.999 2025-03-29 09:03:45.999 448426 21556 21 0 21543 2025-03-29 09:00:39.764 2025-03-29 09:00:39.764 448427 3439 1 0 21544 2025-03-29 09:01:12.719 2025-03-29 09:01:12.719 448429 1105 1 0 21545 2025-03-29 09:07:20.72 2025-03-29 09:07:20.72 448430 1047 2 0 21546 2025-03-29 09:07:20.72 2025-03-29 09:07:20.72 448430 17095 19 0 21547 2025-03-29 09:03:59.621 2025-03-29 09:03:59.621 448430 18393 1 0 21548 2025-03-29 09:03:59.621 2025-03-29 09:03:59.621 448430 20409 0 0 21549 2025-03-29 09:03:21.726 2025-03-29 09:03:21.726 448431 12277 1 0 21550 2025-03-29 09:05:05.103 2025-03-29 09:05:05.103 448432 8459 90 0 21551 2025-03-29 09:05:05.103 2025-03-29 09:05:05.103 448432 16970 10 0 21552 2025-03-29 09:07:21.234 2025-03-29 09:07:21.234 448433 6229 19 0 21553 2025-03-29 09:07:21.234 2025-03-29 09:07:21.234 448433 16282 2 0 21554 2025-03-29 09:04:15.439 2025-03-29 09:04:15.439 448434 649 1 0 21555 2025-03-29 09:04:35.899 2025-03-29 09:04:35.899 448436 726 1 0 21556 2025-03-29 09:07:41.638 2025-03-29 09:07:41.638 448436 1549 90 0 21557 2025-03-29 09:07:41.638 2025-03-29 09:07:41.638 448436 21040 10 0 21558 2025-03-29 09:26:46.846 2025-03-29 09:26:46.846 448437 1733 5 0 21559 2025-03-29 09:04:54.379 2025-03-29 09:04:54.379 448437 2010 1 0 21560 2025-03-29 09:26:46.846 2025-03-29 09:26:46.846 448437 9874 45 0 21561 2025-03-29 09:08:39.986 2025-03-29 09:08:39.986 448437 10693 2 0 21562 2025-03-29 09:08:39.986 2025-03-29 09:08:39.986 448437 20799 19 0 21563 2025-03-29 09:05:12.09 2025-03-29 09:05:12.09 448438 5487 1 0 21564 2025-03-29 09:07:06.24 2025-03-29 09:07:06.24 448438 17570 2 0 21565 2025-03-29 09:07:06.24 2025-03-29 09:07:06.24 448438 21514 19 0 21566 2025-03-29 09:06:39.151 2025-03-29 09:06:39.151 448439 946 0 0 21567 2025-03-29 09:09:02.314 2025-03-29 09:09:02.314 448439 7960 0 0 21568 2025-03-29 09:05:49.935 2025-03-29 09:05:49.935 448439 20117 1 0 21569 2025-03-29 09:06:10.058 2025-03-29 09:06:10.058 448440 20294 1 0 21570 2025-03-29 09:08:59.084 2025-03-29 09:08:59.084 448441 1751 19 0 21571 2025-03-29 09:08:59.084 2025-03-29 09:08:59.084 448441 11866 2 0 21572 2025-03-29 09:07:28.994 2025-03-29 09:07:28.994 448443 16594 1 0 21573 2025-03-29 09:08:03.564 2025-03-29 09:08:03.564 448444 3392 1 0 21574 2025-03-29 09:08:09.837 2025-03-29 09:08:09.837 448445 4173 10 0 21575 2025-03-29 09:08:31.115 2025-03-29 09:08:31.115 448446 5661 1 0 21576 2025-03-29 09:11:02.387 2025-03-29 09:11:02.387 448446 17535 0 0 21577 2025-03-29 09:09:16.642 2025-03-29 09:09:16.642 448449 18426 1 0 21578 2025-03-29 09:09:31.18 2025-03-29 09:09:31.18 448450 15521 1 0 21579 2025-03-29 09:09:49.651 2025-03-29 09:09:49.651 448452 1552 1 0 21580 2025-03-29 09:14:16.966 2025-03-29 09:14:16.966 448456 960 1 0 21581 2025-03-29 09:15:21.391 2025-03-29 09:15:21.391 448457 20782 1 0 21582 2025-03-29 09:17:07.046 2025-03-29 09:17:07.046 448460 2347 1 0 21583 2025-03-29 09:17:16.062 2025-03-29 09:17:16.062 448461 20062 1 0 21584 2025-03-29 09:22:39.479 2025-03-29 09:22:39.479 448466 8684 1 0 21585 2025-03-29 09:22:39.479 2025-03-29 09:22:39.479 448466 21281 8 0 21586 2025-03-29 09:24:10.689 2025-03-29 09:24:10.689 448467 11609 0 0 21587 2025-03-29 09:26:42.873 2025-03-29 09:26:42.873 448470 7097 100 0 21588 2025-03-29 15:59:38.738 2025-03-29 15:59:38.738 448476 659 19 0 21589 2025-03-29 15:59:39.3 2025-03-29 15:59:39.3 448476 805 2 0 21590 2025-03-29 15:59:38.738 2025-03-29 15:59:38.738 448476 9362 2 0 21591 2025-03-29 15:59:39.3 2025-03-29 15:59:39.3 448476 10536 19 0 21592 2025-03-29 09:30:07.85 2025-03-29 09:30:07.85 448478 21444 1 0 21593 2025-03-29 09:32:47.273 2025-03-29 09:32:47.273 448484 2789 1 0 21594 2025-03-29 09:37:59.957 2025-03-29 09:37:59.957 448491 11798 1 0 21595 2025-03-29 09:39:33.216 2025-03-29 09:39:33.216 448492 19689 1 0 21596 2025-03-29 09:39:51.609 2025-03-29 09:39:51.609 448493 4062 1 0 21597 2025-03-29 15:10:55.062 2025-03-29 15:10:55.062 448505 16939 3 0 21598 2025-03-29 15:10:55.062 2025-03-29 15:10:55.062 448505 19375 0 0 21599 2025-03-29 15:05:40.186 2025-03-29 15:05:40.186 448524 1468 0 77 21600 2025-03-29 14:47:57.809 2025-03-29 14:47:57.809 448547 19581 1 0 21601 2025-03-29 14:47:57.809 2025-03-29 14:47:57.809 448547 20901 0 0 21602 2025-03-29 14:51:54.413 2025-03-29 14:51:54.413 448591 690 243 0 21603 2025-03-29 15:09:00.765 2025-03-29 15:09:00.765 448591 811 2 0 21604 2025-03-29 15:09:01.378 2025-03-29 15:09:01.378 448591 9366 2 0 21605 2025-03-29 14:51:54.413 2025-03-29 14:51:54.413 448591 12291 27 0 21606 2025-03-29 15:09:02.194 2025-03-29 15:09:02.194 448591 18630 19 0 21607 2025-03-29 15:09:01.378 2025-03-29 15:09:01.378 448591 19905 19 0 21608 2025-03-29 15:10:50.4 2025-03-29 15:10:50.4 448591 20094 10 0 21609 2025-03-29 15:09:00.765 2025-03-29 15:09:00.765 448591 20972 19 0 21610 2025-03-29 15:09:02.194 2025-03-29 15:09:02.194 448591 20990 2 0 21611 2025-03-29 15:10:50.4 2025-03-29 15:10:50.4 448591 21238 90 0 21612 2025-03-29 19:40:48.005 2025-03-29 19:40:48.005 448598 960 5 0 21613 2025-03-29 19:40:48.005 2025-03-29 19:40:48.005 448598 17124 1 0 21614 2025-03-29 14:49:57.09 2025-03-29 14:49:57.09 448612 7667 69 0 21615 2025-03-29 14:49:57.09 2025-03-29 14:49:57.09 448612 13467 8 0 21616 2025-03-29 14:50:24.084 2025-03-29 14:50:24.084 448617 20701 69 0 21617 2025-03-29 14:50:24.084 2025-03-29 14:50:24.084 448617 21248 8 0 21618 2025-03-29 15:59:00.967 2025-03-29 15:59:00.967 448621 5527 19 0 21619 2025-03-29 15:59:00.967 2025-03-29 15:59:00.967 448621 10731 2 0 21620 2025-03-29 14:47:50.065 2025-03-29 14:47:50.065 448676 5444 9 0 21621 2025-03-29 14:47:49.066 2025-03-29 14:47:49.066 448676 8469 0 0 21622 2025-03-29 14:47:50.065 2025-03-29 14:47:50.065 448676 14657 81 0 21623 2025-03-29 14:47:49.066 2025-03-29 14:47:49.066 448676 15491 1 0 21624 2025-03-29 15:39:10.811 2025-03-29 15:39:10.811 448691 671 69 0 21625 2025-03-29 15:39:11.668 2025-03-29 15:39:11.668 448691 854 69 0 21626 2025-03-29 15:39:10.295 2025-03-29 15:39:10.295 448691 4345 8 0 21627 2025-03-29 15:47:19.821 2025-03-29 15:47:19.821 448691 8648 68 0 21628 2025-03-29 15:09:46.291 2025-03-29 15:09:46.291 448691 8841 7 0 21629 2025-03-29 15:39:11.704 2025-03-29 15:39:11.704 448691 9184 69 0 21630 2025-03-29 15:39:10.295 2025-03-29 15:39:10.295 448691 9329 69 0 21631 2025-03-29 15:39:11.489 2025-03-29 15:39:11.489 448691 12562 8 0 21632 2025-03-29 15:39:11.668 2025-03-29 15:39:11.668 448691 14385 8 0 21633 2025-03-29 15:39:11.489 2025-03-29 15:39:11.489 448691 15544 69 0 21634 2025-03-29 15:39:10.623 2025-03-29 15:39:10.623 448691 17148 8 0 21635 2025-03-29 15:39:10.623 2025-03-29 15:39:10.623 448691 18743 69 0 21636 2025-03-29 14:43:21.535 2025-03-29 14:43:21.535 448691 19842 1 0 21637 2025-03-29 15:39:10.811 2025-03-29 15:39:10.811 448691 20657 8 0 21638 2025-03-29 15:47:19.821 2025-03-29 15:47:19.821 448691 20802 8 0 21639 2025-03-29 15:39:11.704 2025-03-29 15:39:11.704 448691 20987 8 0 21640 2025-03-29 15:09:46.291 2025-03-29 15:09:46.291 448691 21164 1 0 21641 2025-03-29 14:36:31.543 2025-03-29 14:36:31.543 448716 14271 9 0 21642 2025-03-29 15:09:45.085 2025-03-29 15:09:45.085 448722 1471 5 0 21643 2025-03-29 15:09:45.085 2025-03-29 15:09:45.085 448722 21275 1 0 21644 2025-03-29 15:29:53.688 2025-03-29 15:29:53.688 448725 1658 0 0 21645 2025-03-29 15:29:53.688 2025-03-29 15:29:53.688 448725 19906 1 0 21646 2025-03-29 14:44:52.87 2025-03-29 14:44:52.87 448727 2674 1 0 21647 2025-03-29 14:44:52.87 2025-03-29 14:44:52.87 448727 7978 8 0 21648 2025-03-29 14:44:52.689 2025-03-29 14:44:52.689 448727 21079 1 0 21649 2025-03-29 14:44:52.689 2025-03-29 14:44:52.689 448727 21603 0 0 21650 2025-03-29 15:18:52.356 2025-03-29 15:18:52.356 448729 1044 3 0 21651 2025-03-29 15:18:52.356 2025-03-29 15:18:52.356 448729 5069 23 0 21652 2025-03-29 15:18:50.422 2025-03-29 15:18:50.422 448729 10270 23 0 21653 2025-03-29 15:18:50.422 2025-03-29 15:18:50.422 448729 21079 3 0 21654 2025-03-29 14:37:56.253 2025-03-29 14:37:56.253 448730 9307 9 0 21655 2025-03-29 14:37:56.253 2025-03-29 14:37:56.253 448730 9655 1 0 21656 2025-03-29 14:38:15.006 2025-03-29 14:38:15.006 448732 7389 9 0 21657 2025-03-29 14:38:15.006 2025-03-29 14:38:15.006 448732 10591 1 0 21658 2025-03-29 15:58:18.706 2025-03-29 15:58:18.706 448733 9611 19 0 21659 2025-03-29 15:58:18.706 2025-03-29 15:58:18.706 448733 10818 2 0 21660 2025-03-29 15:07:55.526 2025-03-29 15:07:55.526 448740 980 7 0 21661 2025-03-29 15:07:55.526 2025-03-29 15:07:55.526 448740 20911 1 0 21662 2025-03-29 14:58:24.594 2025-03-29 14:58:24.594 448743 3213 9 0 21663 2025-03-29 14:58:24.594 2025-03-29 14:58:24.594 448743 16432 1 0 21664 2025-03-29 14:54:06.377 2025-03-29 14:54:06.377 448746 5703 9 0 21665 2025-03-29 14:53:40.819 2025-03-29 14:53:40.819 448746 16680 3 0 21666 2025-03-29 14:53:40.819 2025-03-29 14:53:40.819 448746 16684 27 0 21667 2025-03-29 14:46:29.543 2025-03-29 14:46:29.543 448748 12738 1 0 21668 2025-03-29 14:46:29.543 2025-03-29 14:46:29.543 448748 16562 8 0 21669 2025-03-29 15:08:39.909 2025-03-29 15:08:39.909 448751 5776 19 0 21670 2025-03-29 15:08:39.909 2025-03-29 15:08:39.909 448751 20778 2 0 21671 2025-03-29 15:05:39.965 2025-03-29 15:05:39.965 448759 5708 1 0 21672 2025-03-29 15:05:39.965 2025-03-29 15:05:39.965 448759 11515 9 0 21673 2025-03-29 15:05:40.19 2025-03-29 15:05:40.19 448759 15662 1 0 21674 2025-03-29 15:05:39.805 2025-03-29 15:05:39.805 448759 16956 9 0 21675 2025-03-29 15:05:39.805 2025-03-29 15:05:39.805 448759 19863 1 0 21676 2025-03-29 15:05:40.19 2025-03-29 15:05:40.19 448759 20094 9 0 21677 2025-03-29 15:25:55.731 2025-03-29 15:25:55.731 448763 6463 22 0 21678 2025-03-29 15:25:55.731 2025-03-29 15:25:55.731 448763 21058 196 0 21679 2025-03-29 15:01:56.566 2025-03-29 15:01:56.566 448765 680 9 0 21680 2025-03-29 15:01:56.844 2025-03-29 15:01:56.844 448765 1389 9 0 21681 2025-03-29 15:01:56.383 2025-03-29 15:01:56.383 448765 1424 1 0 21682 2025-03-29 15:01:56.204 2025-03-29 15:01:56.204 448765 9378 1 0 21683 2025-03-29 14:57:04.992 2025-03-29 14:57:04.992 448765 10731 2 0 21684 2025-03-29 14:57:04.992 2025-03-29 14:57:04.992 448765 16948 19 0 21685 2025-03-29 15:01:56.844 2025-03-29 15:01:56.844 448765 20023 1 0 21686 2025-03-29 15:01:56.204 2025-03-29 15:01:56.204 448765 20179 9 0 21687 2025-03-29 15:01:56.566 2025-03-29 15:01:56.566 448765 21116 1 0 21688 2025-03-29 15:01:56.383 2025-03-29 15:01:56.383 448765 21202 9 0 21689 2025-03-29 15:58:27.624 2025-03-29 15:58:27.624 448769 1195 19 0 21690 2025-03-29 15:58:28.303 2025-03-29 15:58:28.303 448769 1488 2 0 21691 2025-03-29 15:58:27.624 2025-03-29 15:58:27.624 448769 15728 2 0 21692 2025-03-29 14:55:18.523 2025-03-29 14:55:18.523 448769 17014 19 0 21693 2025-03-29 15:58:28.303 2025-03-29 15:58:28.303 448769 18178 19 0 21694 2025-03-29 14:55:18.523 2025-03-29 14:55:18.523 448769 21688 2 0 21695 2025-03-29 14:42:43.847 2025-03-29 14:42:43.847 448773 694 27 0 21696 2025-03-29 14:42:43.847 2025-03-29 14:42:43.847 448773 21555 3 0 21697 2025-03-29 14:44:55.318 2025-03-29 14:44:55.318 448775 1495 1 0 21698 2025-03-29 14:46:53.983 2025-03-29 14:46:53.983 448776 21014 1 0 21699 2025-03-29 15:07:52.07 2025-03-29 15:07:52.07 448778 895 69 0 21700 2025-03-29 15:08:05.045 2025-03-29 15:08:05.045 448778 2206 7 0 21701 2025-03-29 15:26:52.78 2025-03-29 15:26:52.78 448778 3417 19 0 21702 2025-03-29 15:07:52.07 2025-03-29 15:07:52.07 448778 4763 8 0 21703 2025-03-29 15:26:52.78 2025-03-29 15:26:52.78 448778 10719 2 0 21704 2025-03-29 15:58:20.297 2025-03-29 15:58:20.297 448778 15367 19 0 21705 2025-03-29 15:58:20.297 2025-03-29 15:58:20.297 448778 17046 2 0 21706 2025-03-29 15:58:19.653 2025-03-29 15:58:19.653 448778 21136 2 0 21707 2025-03-29 15:08:05.045 2025-03-29 15:08:05.045 448778 21578 62 0 21708 2025-03-29 15:58:19.653 2025-03-29 15:58:19.653 448778 21600 19 0 21709 2025-03-29 15:06:34.13 2025-03-29 15:06:34.13 448779 1394 14 0 21710 2025-03-29 15:06:34.13 2025-03-29 15:06:34.13 448779 5708 2 0 21711 2025-03-29 15:02:38.747 2025-03-29 15:02:38.747 448780 981 2 0 21712 2025-03-29 15:02:38.747 2025-03-29 15:02:38.747 448780 1090 14 0 21713 2025-03-29 14:54:27.364 2025-03-29 14:54:27.364 448780 3353 1 0 21714 2025-03-29 14:56:39.688 2025-03-29 14:56:39.688 448781 766 1 0 21715 2025-03-29 15:07:27.052 2025-03-29 15:07:27.052 448781 7979 62 0 21716 2025-03-29 15:07:27.052 2025-03-29 15:07:27.052 448781 20710 7 0 21717 2025-03-29 14:58:46.217 2025-03-29 14:58:46.217 448782 8541 1 0 21718 2025-03-29 14:57:14.407 2025-03-29 14:57:14.407 448782 9290 1 0 21719 2025-03-29 14:58:46.217 2025-03-29 14:58:46.217 448782 21061 9 0 21720 2025-03-29 14:58:31.83 2025-03-29 14:58:31.83 448783 20409 1 0 21721 2025-03-29 15:36:27.002 2025-03-29 15:36:27.002 448785 9099 0 0 21722 2025-03-29 15:36:27.002 2025-03-29 15:36:27.002 448785 18731 3 0 21723 2025-03-29 14:59:52.339 2025-03-29 14:59:52.339 448785 21178 1 0 21724 2025-03-29 15:02:18.262 2025-03-29 15:02:18.262 448786 2088 1 0 21725 2025-03-29 15:39:37.588 2025-03-29 15:39:37.588 448786 2232 0 0 21726 2025-03-29 15:39:37.588 2025-03-29 15:39:37.588 448786 18618 1 0 21727 2025-03-29 15:02:25.4 2025-03-29 15:02:25.4 448787 7125 1 0 21728 2025-03-29 15:27:25.031 2025-03-29 15:27:25.031 448788 16858 1 0 21729 2025-03-29 15:27:25.031 2025-03-29 15:27:25.031 448788 18717 8 0 21730 2025-03-29 15:05:39.823 2025-03-29 15:05:39.823 448789 3504 9 0 21731 2025-03-29 15:05:39.823 2025-03-29 15:05:39.823 448789 20377 1 0 21732 2025-03-29 15:34:21.207 2025-03-29 15:34:21.207 448790 3656 2 0 21733 2025-03-29 16:38:08.991 2025-03-29 16:38:08.991 448790 10549 19 0 21734 2025-03-29 15:05:03.76 2025-03-29 15:05:03.76 448790 11996 27 0 21735 2025-03-29 15:34:06.454 2025-03-29 15:34:06.454 448790 13174 7 0 21736 2025-03-29 15:34:06.454 2025-03-29 15:34:06.454 448790 13216 1 0 21737 2025-03-29 15:15:36.216 2025-03-29 15:15:36.216 448790 15147 69 0 21738 2025-03-29 15:38:59.882 2025-03-29 15:38:59.882 448790 17798 1 0 21739 2025-03-29 15:38:59.882 2025-03-29 15:38:59.882 448790 19346 9 0 21740 2025-03-29 15:34:21.207 2025-03-29 15:34:21.207 448790 20377 19 0 21741 2025-03-29 15:15:36.216 2025-03-29 15:15:36.216 448790 20655 8 0 21742 2025-03-29 16:38:08.991 2025-03-29 16:38:08.991 448790 21734 2 0 21743 2025-03-29 15:06:01.467 2025-03-29 15:06:01.467 448792 20157 1 0 21744 2025-03-29 15:06:24.307 2025-03-29 15:06:24.307 448793 1433 1 0 21745 2025-03-29 15:07:15.432 2025-03-29 15:07:15.432 448794 21239 1 0 21746 2025-03-29 15:09:15.689 2025-03-29 15:09:15.689 448795 802 8 0 21747 2025-03-29 15:09:15.689 2025-03-29 15:09:15.689 448795 9276 68 0 21748 2025-03-29 15:11:47.058 2025-03-29 15:11:47.058 448796 686 10 0 21749 2025-03-29 15:20:15.471 2025-03-29 15:20:15.471 448796 14910 8 0 21750 2025-03-29 15:20:15.471 2025-03-29 15:20:15.471 448796 21797 1 0 21751 2025-03-29 15:14:49.122 2025-03-29 15:14:49.122 448798 16432 1 0 21752 2025-03-29 15:18:34.789 2025-03-29 15:18:34.789 448799 9261 1 0 21753 2025-03-29 15:34:24.977 2025-03-29 15:34:24.977 448802 928 2 0 21754 2025-03-29 15:54:36.043 2025-03-29 15:54:36.043 448802 1094 2 0 21755 2025-03-29 15:58:26.549 2025-03-29 15:58:26.549 448802 1198 2 0 21756 2025-03-29 15:21:29.69 2025-03-29 15:21:29.69 448802 1411 19 0 21757 2025-03-29 15:21:21.525 2025-03-29 15:21:21.525 448802 1488 21 0 21758 2025-03-29 15:58:26.31 2025-03-29 15:58:26.31 448802 2022 15 0 21759 2025-03-29 17:01:50.722 2025-03-29 17:01:50.722 448802 3342 1 0 21760 2025-03-29 15:34:24.977 2025-03-29 15:34:24.977 448802 3409 14 0 21761 2025-03-29 15:56:58.02 2025-03-29 15:56:58.02 448802 3411 2 0 21762 2025-03-29 15:56:58.674 2025-03-29 15:56:58.674 448802 3417 2 0 21763 2025-03-29 15:57:02.656 2025-03-29 15:57:02.656 448802 4043 19 0 21764 2025-03-29 15:56:58.674 2025-03-29 15:56:58.674 448802 7772 19 0 21765 2025-03-29 16:48:25.108 2025-03-29 16:48:25.108 448802 9335 68 0 21766 2025-03-29 15:56:58.02 2025-03-29 15:56:58.02 448802 9421 19 0 21767 2025-03-29 15:58:26.31 2025-03-29 15:58:26.31 448802 9796 2 0 21768 2025-03-29 15:58:26.711 2025-03-29 15:58:26.711 448802 14213 2 0 21769 2025-03-29 15:38:34.958 2025-03-29 15:38:34.958 448802 16543 9 0 21770 2025-03-29 15:57:02.656 2025-03-29 15:57:02.656 448802 17209 2 0 21771 2025-03-29 15:22:51.4 2025-03-29 15:22:51.4 448802 18265 12 0 21772 2025-03-29 15:58:26.155 2025-03-29 15:58:26.155 448802 20254 15 0 21773 2025-03-29 17:01:50.722 2025-03-29 17:01:50.722 448802 20439 8 0 21774 2025-03-29 15:58:26.155 2025-03-29 15:58:26.155 448802 21020 2 0 21775 2025-03-29 15:58:26.711 2025-03-29 15:58:26.711 448802 21067 15 0 21776 2025-03-29 16:48:25.108 2025-03-29 16:48:25.108 448802 21119 8 0 21777 2025-03-29 15:54:36.043 2025-03-29 15:54:36.043 448802 21136 19 0 21778 2025-03-29 15:38:34.958 2025-03-29 15:38:34.958 448802 21334 81 0 21779 2025-03-29 15:22:51.4 2025-03-29 15:22:51.4 448802 21647 105 0 21780 2025-03-29 15:21:29.69 2025-03-29 15:21:29.69 448802 21814 2 0 21781 2025-03-29 15:28:21.367 2025-03-29 15:28:21.367 448803 15463 4 0 21782 2025-03-29 15:28:21.367 2025-03-29 15:28:21.367 448803 21083 37 0 21783 2025-03-29 15:26:42.755 2025-03-29 15:26:42.755 448804 16598 0 0 21784 2025-03-29 15:26:42.755 2025-03-29 15:26:42.755 448804 21541 3 0 21785 2025-03-29 15:27:02.94 2025-03-29 15:27:02.94 448805 695 9 0 21786 2025-03-29 16:13:28.212 2025-03-29 16:13:28.212 448805 889 190 0 21787 2025-03-29 15:27:02.94 2025-03-29 15:27:02.94 448805 1814 81 0 21788 2025-03-29 15:27:02.214 2025-03-29 15:27:02.214 448805 14552 0 0 21789 2025-03-29 15:27:02.406 2025-03-29 15:27:02.406 448805 15925 8 0 21790 2025-03-29 15:39:02.002 2025-03-29 15:39:02.002 448805 20563 9 0 21791 2025-03-29 15:27:02.214 2025-03-29 15:27:02.214 448805 20660 1 0 21792 2025-03-29 16:13:28.212 2025-03-29 16:13:28.212 448805 21014 21 0 21793 2025-03-29 15:27:02.406 2025-03-29 15:27:02.406 448805 21248 1 0 21794 2025-03-29 15:39:02.002 2025-03-29 15:39:02.002 448805 21416 1 0 21795 2025-03-29 15:27:19.255 2025-03-29 15:27:19.255 448806 654 0 0 21796 2025-03-29 15:27:19.255 2025-03-29 15:27:19.255 448806 16998 3 0 21797 2025-03-29 15:25:20.508 2025-03-29 15:25:20.508 448807 5597 1 0 21798 2025-03-29 15:25:38.757 2025-03-29 15:25:38.757 448808 9758 1 0 21799 2025-03-29 15:36:20.336 2025-03-29 15:36:20.336 448809 9295 1 0 21800 2025-03-29 15:26:43.535 2025-03-29 15:26:43.535 448809 9845 1 0 21801 2025-03-29 15:36:20.336 2025-03-29 15:36:20.336 448809 14818 7 0 21802 2025-03-29 15:29:08.714 2025-03-29 15:29:08.714 448810 929 69 0 21803 2025-03-29 15:29:00.122 2025-03-29 15:29:00.122 448810 1729 3 0 21804 2025-03-29 15:29:00.122 2025-03-29 15:29:00.122 448810 2652 27 0 21805 2025-03-29 15:29:08.714 2025-03-29 15:29:08.714 448810 17696 8 0 21806 2025-03-29 15:27:24.974 2025-03-29 15:27:24.974 448810 21083 1 0 21807 2025-03-29 15:28:39.796 2025-03-29 15:28:39.796 448811 9339 1 0 21808 2025-03-29 15:29:14.407 2025-03-29 15:29:14.407 448812 19673 1 0 21809 2025-03-29 15:35:23.808 2025-03-29 15:35:23.808 448815 17535 1 0 21810 2025-03-29 15:37:23.365 2025-03-29 15:37:23.365 448817 836 220 0 21811 2025-03-29 20:22:08.803 2025-03-29 20:22:08.803 448817 1064 1 0 21812 2025-03-29 19:14:38.189 2025-03-29 19:14:38.189 448817 1652 10 0 21813 2025-03-29 19:14:38.189 2025-03-29 19:14:38.189 448817 1970 91 0 21814 2025-03-29 15:58:11.656 2025-03-29 15:58:11.656 448817 2195 2 0 21815 2025-03-29 20:22:08.803 2025-03-29 20:22:08.803 448817 3371 9 0 21816 2025-03-29 20:54:40.829 2025-03-29 20:54:40.829 448817 4259 3 0 21817 2025-03-29 15:47:09.864 2025-03-29 15:47:09.864 448817 4287 10 0 21818 2025-03-29 15:47:28.581 2025-03-29 15:47:28.581 448817 4973 69 0 21819 2025-03-29 15:40:34.115 2025-03-29 15:40:34.115 448817 5942 2 0 21820 2025-03-29 20:22:48.079 2025-03-29 20:22:48.079 448817 7675 1 0 21821 2025-03-29 15:42:40.071 2025-03-29 15:42:40.071 448817 9099 10 0 21822 2025-03-29 15:43:03.613 2025-03-29 15:43:03.613 448817 9438 21 0 21823 2025-03-29 20:54:40.829 2025-03-29 20:54:40.829 448817 10280 23 0 21824 2025-03-29 20:22:48.079 2025-03-29 20:22:48.079 448817 10554 9 0 21825 2025-03-29 15:38:05.984 2025-03-29 15:38:05.984 448817 10818 10 0 21826 2025-03-29 15:38:05.984 2025-03-29 15:38:05.984 448817 11240 90 0 21827 2025-03-29 15:40:34.115 2025-03-29 15:40:34.115 448817 12738 19 0 21828 2025-03-29 15:43:03.613 2025-03-29 15:43:03.613 448817 14515 190 0 21829 2025-03-29 15:42:40.071 2025-03-29 15:42:40.071 448817 16126 90 0 21830 2025-03-29 15:47:09.864 2025-03-29 15:47:09.864 448817 16704 90 0 21831 2025-03-29 15:47:28.581 2025-03-29 15:47:28.581 448817 18271 8 0 21832 2025-03-29 15:58:11.656 2025-03-29 15:58:11.656 448817 20775 19 0 21833 2025-03-29 15:41:31.812 2025-03-29 15:41:31.812 448818 16126 1 0 21834 2025-03-29 15:50:12.174 2025-03-29 15:50:12.174 448820 1424 17 0 21835 2025-03-29 16:04:18.959 2025-03-29 16:04:18.959 448820 6361 69 0 21836 2025-03-29 16:04:18.959 2025-03-29 16:04:18.959 448820 14657 8 0 21837 2025-03-29 15:50:12.174 2025-03-29 15:50:12.174 448820 19777 2 0 21838 2025-03-29 15:46:46.836 2025-03-29 15:46:46.836 448821 1803 1 0 21839 2025-03-29 15:49:46.14 2025-03-29 15:49:46.14 448822 9421 1 0 21840 2025-03-29 15:49:54.71 2025-03-29 15:49:54.71 448822 10342 0 0 21841 2025-03-29 16:01:41.134 2025-03-29 16:01:41.134 448823 1221 8 0 21842 2025-03-29 16:01:41.134 2025-03-29 16:01:41.134 448823 2039 69 0 21843 2025-03-29 15:49:52.786 2025-03-29 15:49:52.786 448823 6382 1 0 21844 2025-03-29 15:57:43.41 2025-03-29 15:57:43.41 448824 721 19 0 21845 2025-03-29 15:57:43.41 2025-03-29 15:57:43.41 448824 9845 2 0 21846 2025-03-29 15:51:10.362 2025-03-29 15:51:10.362 448826 1652 1 0 21847 2025-03-29 15:52:07.587 2025-03-29 15:52:07.587 448827 1761 1 0 21848 2025-03-29 15:53:08.444 2025-03-29 15:53:08.444 448828 1960 1 0 21849 2025-03-29 15:54:06.722 2025-03-29 15:54:06.722 448829 7659 1 0 21850 2025-03-29 17:02:08.208 2025-03-29 17:02:08.208 448830 1221 0 0 21851 2025-03-29 17:02:08.208 2025-03-29 17:02:08.208 448830 11942 1 0 21852 2025-03-29 15:58:39.188 2025-03-29 15:58:39.188 448832 21269 1 0 21853 2025-03-29 15:58:43.991 2025-03-29 15:58:43.991 448833 5725 1 0 21854 2025-03-29 16:06:38.504 2025-03-29 16:06:38.504 448835 16970 0 0 21855 2025-03-29 16:27:06.476 2025-03-29 16:27:06.476 448837 2327 1 0 21856 2025-03-29 16:27:06.476 2025-03-29 16:27:06.476 448837 10986 9 0 21857 2025-03-29 16:11:02.412 2025-03-29 16:11:02.412 448837 20816 1 0 21858 2025-03-29 16:16:58.418 2025-03-29 16:16:58.418 448838 2013 1 0 21859 2025-03-29 16:38:55.84 2025-03-29 16:38:55.84 448841 2639 2 0 21860 2025-03-29 16:38:55.84 2025-03-29 16:38:55.84 448841 20655 19 0 21861 2025-03-29 16:30:57.789 2025-03-29 16:30:57.789 448843 738 1 0 21862 2025-03-29 16:32:01.052 2025-03-29 16:32:01.052 448844 9166 0 0 21863 2025-03-29 16:35:59.688 2025-03-29 16:35:59.688 448848 2537 0 0 21864 2025-03-29 16:35:44.895 2025-03-29 16:35:44.895 448849 15556 1 0 21865 2025-03-29 16:59:59.694 2025-03-29 16:59:59.694 448851 720 12 0 21866 2025-03-29 16:59:59.694 2025-03-29 16:59:59.694 448851 11454 105 0 21867 2025-03-29 16:43:55.942 2025-03-29 16:43:55.942 448854 15119 1 0 21868 2025-03-29 16:57:49.987 2025-03-29 16:57:49.987 448855 15052 8 0 21869 2025-03-29 16:57:49.987 2025-03-29 16:57:49.987 448855 21701 69 0 21870 2025-03-29 16:57:26.663 2025-03-29 16:57:26.663 448861 1012 69 0 21871 2025-03-29 16:57:26.663 2025-03-29 16:57:26.663 448861 7558 8 0 21872 2025-03-29 16:57:28.203 2025-03-29 16:57:28.203 448861 12738 69 0 21873 2025-03-29 17:07:36.764 2025-03-29 17:07:36.764 448861 17291 0 21 21874 2025-03-29 16:57:28.203 2025-03-29 16:57:28.203 448861 20613 8 0 21875 2025-03-29 16:58:44.857 2025-03-29 16:58:44.857 448863 18271 1 0 21876 2025-03-29 17:05:26.103 2025-03-29 17:05:26.103 448867 21600 1 0 21877 2025-03-29 20:59:12.753 2025-03-29 20:59:12.753 448888 2013 81 0 21878 2025-03-29 20:26:34.419 2025-03-29 20:26:34.419 448888 2213 1 0 21879 2025-03-29 19:57:19.83 2025-03-29 19:57:19.83 448888 3456 2 0 21880 2025-03-29 20:59:11.119 2025-03-29 20:59:11.119 448888 8416 1 0 21881 2025-03-29 19:57:19.83 2025-03-29 19:57:19.83 448888 8989 19 0 21882 2025-03-29 20:59:11.119 2025-03-29 20:59:11.119 448888 9362 8 0 21883 2025-03-29 20:59:12.753 2025-03-29 20:59:12.753 448888 11716 9 0 21884 2025-03-29 20:26:34.419 2025-03-29 20:26:34.419 448888 11776 5 0 21885 2025-03-29 20:59:15.614 2025-03-29 20:59:15.614 448888 12959 90 0 21886 2025-03-29 20:59:10.884 2025-03-29 20:59:10.884 448888 14370 0 0 21887 2025-03-29 20:59:15.614 2025-03-29 20:59:15.614 448888 16145 810 0 21888 2025-03-29 20:59:10.884 2025-03-29 20:59:10.884 448888 20817 1 0 21889 2025-03-29 19:42:22.943 2025-03-29 19:42:22.943 448894 624 19 0 21890 2025-03-29 20:59:23.704 2025-03-29 20:59:23.704 448894 929 1 0 21891 2025-03-29 20:59:25.809 2025-03-29 20:59:25.809 448894 4862 9 0 21892 2025-03-29 19:42:22.943 2025-03-29 19:42:22.943 448894 5487 2 0 21893 2025-03-29 20:59:23.717 2025-03-29 20:59:23.717 448894 9551 8 0 21894 2025-03-29 20:59:23.704 2025-03-29 20:59:23.704 448894 16667 0 0 21895 2025-03-29 20:59:23.717 2025-03-29 20:59:23.717 448894 19569 1 0 21896 2025-03-29 20:59:25.809 2025-03-29 20:59:25.809 448894 21314 81 0 21897 2025-03-29 19:41:54.204 2025-03-29 19:41:54.204 448902 679 5 0 21898 2025-03-29 19:41:54.204 2025-03-29 19:41:54.204 448902 11450 1 0 21899 2025-03-29 20:38:39.526 2025-03-29 20:38:39.526 448904 5427 9 0 21900 2025-03-29 20:38:39.526 2025-03-29 20:38:39.526 448904 18529 1 0 21901 2025-03-29 19:41:46.644 2025-03-29 19:41:46.644 448907 6687 1 0 21902 2025-03-29 19:41:46.644 2025-03-29 19:41:46.644 448907 21639 5 0 21903 2025-03-29 20:58:26.349 2025-03-29 20:58:26.349 448918 8945 0 1000 21904 2025-03-29 19:26:37.423 2025-03-29 19:26:37.423 448921 1120 24 0 21905 2025-03-29 19:26:37.008 2025-03-29 19:26:37.008 448921 10690 24 0 21906 2025-03-29 19:26:37.423 2025-03-29 19:26:37.423 448921 19117 3 0 21907 2025-03-29 19:26:37.008 2025-03-29 19:26:37.008 448921 20642 3 0 21908 2025-03-29 19:41:23.625 2025-03-29 19:41:23.625 448932 1802 5 0 21909 2025-03-29 19:41:23.625 2025-03-29 19:41:23.625 448932 19126 1 0 21910 2025-03-29 19:40:57.919 2025-03-29 19:40:57.919 448935 5487 1 0 21911 2025-03-29 19:40:58.094 2025-03-29 19:40:58.094 448935 5725 1 0 21912 2025-03-29 19:40:58.094 2025-03-29 19:40:58.094 448935 11165 5 0 21913 2025-03-29 19:40:57.919 2025-03-29 19:40:57.919 448935 17415 5 0 21914 2025-03-29 19:31:29.049 2025-03-29 19:31:29.049 448947 827 2 0 21915 2025-03-29 19:31:29.049 2025-03-29 19:31:29.049 448947 1564 19 0 21916 2025-03-29 19:41:12.169 2025-03-29 19:41:12.169 448948 980 5 0 21917 2025-03-29 19:41:12.169 2025-03-29 19:41:12.169 448948 1631 1 0 21918 2025-03-29 19:41:15.843 2025-03-29 19:41:15.843 448948 18717 5 0 21919 2025-03-29 19:41:15.843 2025-03-29 19:41:15.843 448948 19759 1 0 21920 2025-03-29 20:29:04.475 2025-03-29 20:29:04.475 448953 617 109 0 21921 2025-03-29 20:29:04.475 2025-03-29 20:29:04.475 448953 633 12 0 21922 2025-03-29 19:54:37.305 2025-03-29 19:54:37.305 448953 16660 10 0 21923 2025-03-29 19:57:01.042 2025-03-29 19:57:01.042 448954 644 1 0 21924 2025-03-29 20:59:41.857 2025-03-29 20:59:41.857 448962 1428 19 0 21925 2025-03-29 20:59:41.857 2025-03-29 20:59:41.857 448962 1806 2 0 21926 2025-03-29 20:58:49.538 2025-03-29 20:58:49.538 448962 2952 9 0 21927 2025-03-29 20:58:48.424 2025-03-29 20:58:48.424 448962 11378 1 0 21928 2025-03-29 20:58:48.424 2025-03-29 20:58:48.424 448962 12097 0 0 21929 2025-03-29 20:58:49.538 2025-03-29 20:58:49.538 448962 12261 81 0 21930 2025-03-29 20:25:12.758 2025-03-29 20:25:12.758 448966 4064 0 0 21931 2025-03-29 20:32:53.148 2025-03-29 20:32:53.148 448971 700 10 0 21932 2025-03-29 20:48:42.006 2025-03-29 20:48:42.006 448971 15049 2 0 21933 2025-03-29 20:48:42.006 2025-03-29 20:48:42.006 448971 21303 19 0 21934 2025-03-29 20:32:53.148 2025-03-29 20:32:53.148 448971 21713 90 0 21935 2025-03-29 20:50:20.945 2025-03-29 20:50:20.945 448975 9450 1 0 21936 2025-03-29 20:59:11.376 2025-03-29 20:59:11.376 448979 5427 1 0 \. -- -- Data for Name: LnAuth; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."LnAuth" (id, created_at, updated_at, k1, pubkey) FROM stdin; \. -- -- Data for Name: LnWith; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."LnWith" (id, created_at, updated_at, k1, "userId", "withdrawalId") FROM stdin; \. -- -- Data for Name: Log; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Log" (id, created_at, level, name, message, env, context) FROM stdin; \. -- -- Data for Name: Mention; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Mention" (id, created_at, updated_at, "itemId", "userId") FROM stdin; \. -- -- Data for Name: Message; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Message" (id, text, "userId") FROM stdin; \. -- -- Data for Name: Mute; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Mute" ("muterId", "mutedId", created_at, updated_at) FROM stdin; \. -- -- Data for Name: MuteSub; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."MuteSub" (created_at, updated_at, "subName", "userId") FROM stdin; \. -- -- Data for Name: NostrRelay; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."NostrRelay" (addr, created_at, updated_at) FROM stdin; \. -- -- Data for Name: OFAC; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."OFAC" (id, "startIP", "endIP", country, "countryCode") FROM stdin; \. -- -- Data for Name: OneDayReferral; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."OneDayReferral" (id, created_at, updated_at, "referrerId", "refereeId", type, "typeId", landing) FROM stdin; 1 2025-03-29 22:38:41.04 2025-03-29 22:38:41.04 18637 616 POST 458188 f 2 2025-03-29 22:40:09.31 2025-03-29 22:40:09.31 21514 616 POST 458227 f 3 2025-03-29 22:40:48.5 2025-03-29 22:40:48.5 1647 616 POST 458362 f \. -- -- Data for Name: Pin; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Pin" (id, created_at, updated_at, cron, timezone, "position") FROM stdin; \. -- -- Data for Name: PollBlindVote; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."PollBlindVote" (id, created_at, updated_at, "itemId", "userId", "invoiceActionState", "invoiceId") FROM stdin; \. -- -- Data for Name: PollOption; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."PollOption" (id, created_at, updated_at, "itemId", option) FROM stdin; \. -- -- Data for Name: PollVote; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."PollVote" (id, created_at, updated_at, "itemId", "pollOptionId", "invoiceActionState", "invoiceId") FROM stdin; \. -- -- Data for Name: PushSubscription; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."PushSubscription" (id, "userId", endpoint, p256dh, auth, created_at) FROM stdin; \. -- -- Data for Name: ReferralAct; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ReferralAct" (id, created_at, updated_at, "referrerId", "itemActId", msats) FROM stdin; \. -- -- Data for Name: Reminder; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Reminder" (id, created_at, "userId", "itemId", "remindAt") FROM stdin; \. -- -- Data for Name: Reply; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Reply" (id, created_at, updated_at, "ancestorId", "ancestorUserId", "itemId", "userId", level) FROM stdin; 1 2025-02-20 13:23:45.727 2025-02-20 13:23:45.727 410283 5809 410421 6471 1 2 2025-02-20 14:50:21.459 2025-02-20 14:50:21.459 410283 5809 410585 17797 2 3 2025-02-18 14:02:54.389 2025-02-18 14:02:54.389 407963 12277 407983 9476 2 4 2025-02-18 14:30:30.823 2025-02-18 14:30:30.823 407963 12277 408020 20612 3 5 2025-02-18 14:39:44.954 2025-02-18 14:39:44.954 407963 12277 408035 20523 4 6 2025-02-18 14:48:31.867 2025-02-18 14:48:31.867 407963 12277 408053 19527 5 7 2025-02-18 14:58:15.052 2025-02-18 14:58:15.052 407963 12277 408072 4128 6 8 2025-02-18 13:59:42.167 2025-02-18 13:59:42.167 407963 12277 407974 4831 1 9 2025-02-26 00:47:39.744 2025-02-26 00:47:39.744 416983 17533 416984 5637 1 10 2025-02-16 04:47:39.811 2025-02-16 04:47:39.811 404661 13055 404662 11378 1 11 2025-03-14 18:49:35.588 2025-03-14 18:49:35.588 437685 16193 437689 17714 1 12 2025-03-12 03:28:43.443 2025-03-12 03:28:43.443 434578 1833 434580 21021 1 13 2025-02-15 23:57:03.257 2025-02-15 23:57:03.257 404501 656 404516 11776 2 14 2025-02-15 23:41:29.537 2025-02-15 23:41:29.537 404501 656 404510 16145 1 15 2025-03-13 09:23:00.583 2025-03-13 09:23:00.583 435993 18529 436055 876 1 16 2025-03-13 16:55:39.817 2025-03-13 16:55:39.817 436344 21794 436573 7587 1 17 2025-03-13 13:43:22.015 2025-03-13 13:43:22.015 436344 21794 436345 16942 1 18 2025-03-13 13:57:59.662 2025-03-13 13:57:59.662 436344 21794 436366 20306 1 19 2025-03-13 14:51:11.032 2025-03-13 14:51:11.032 436344 21794 436418 8168 1 20 2025-03-13 16:54:09.296 2025-03-13 16:54:09.296 436344 21794 436571 1881 1 21 2025-03-19 12:35:06.79 2025-03-19 12:35:06.79 443534 2233 443596 5175 1 22 2025-03-19 12:41:33.581 2025-03-19 12:41:33.581 443534 2233 443612 16571 2 23 2025-02-14 23:59:46.748 2025-02-14 23:59:46.748 395797 10934 403561 726 5 24 2025-02-11 19:12:58.63 2025-02-11 19:12:58.63 395797 10934 399955 8664 4 25 2025-02-10 03:54:14.268 2025-02-10 03:54:14.268 395797 10934 397438 8648 3 26 2025-02-09 12:33:43.648 2025-02-09 12:33:43.648 395797 10934 396500 20799 2 27 2025-02-09 02:55:26.251 2025-02-09 02:55:26.251 395797 10934 396045 13361 1 28 2025-03-11 03:42:33.047 2025-03-11 03:42:33.047 433359 20614 433397 12870 1 29 2025-03-12 12:45:37.483 2025-03-12 12:45:37.483 433359 20614 435070 12169 2 30 2025-03-12 12:45:02.18 2025-03-12 12:45:02.18 433359 20614 435069 2681 2 31 2025-03-11 03:53:19.628 2025-03-11 03:53:19.628 433359 20614 433405 899 1 32 2024-11-24 22:51:33.008 2024-11-24 22:51:33.008 307005 8400 307301 2224 1 33 2025-02-13 10:20:35.928 2025-02-13 10:20:35.928 401661 4259 401692 13042 2 34 2025-02-13 10:08:50.348 2025-02-13 10:08:50.348 401661 4259 401674 8664 1 35 2025-03-01 18:28:22.933 2025-03-01 18:28:22.933 421269 16387 421546 1717 2 36 2025-03-01 14:48:31.741 2025-03-01 14:48:31.741 421269 16387 421270 19121 1 37 2025-03-12 13:08:52.269 2025-03-12 13:08:52.269 95453 7668 435094 20913 2 38 2025-03-03 20:24:37.327 2025-03-03 20:24:37.327 95453 7668 424089 2774 1 39 2025-03-01 16:46:05.331 2025-03-01 16:46:05.331 421421 2061 421451 913 1 40 2022-09-28 19:18:49.227 2022-09-28 19:18:49.227 1912 768 1922 4819 1 41 2025-02-13 17:53:57.242 2025-02-13 17:53:57.242 402128 641 402383 16816 1 42 2025-03-09 13:54:41.045 2025-03-09 13:54:41.045 430903 11648 430904 17109 1 43 2025-03-03 12:16:01.339 2025-03-03 12:16:01.339 421840 13143 423492 18426 5 44 2025-03-02 05:35:11.68 2025-03-02 05:35:11.68 421840 13143 421936 13878 3 45 2025-03-02 05:14:54.733 2025-03-02 05:14:54.733 421840 13143 421925 14452 2 46 2025-03-02 03:38:58.848 2025-03-02 03:38:58.848 421840 13143 421855 14376 1 47 2025-03-04 02:51:17.72 2025-03-04 02:51:17.72 421840 13143 424363 19537 6 48 2025-03-04 05:14:48.279 2025-03-04 05:14:48.279 421840 13143 424430 17722 8 49 2025-03-04 04:44:44.502 2025-03-04 04:44:44.502 421840 13143 424414 654 7 50 2025-03-03 07:21:08.243 2025-03-03 07:21:08.243 421840 13143 423276 15273 4 51 2025-02-23 13:46:52.674 2025-02-23 13:46:52.674 413826 21734 413840 19333 1 52 2025-02-24 18:26:50.625 2025-02-24 18:26:50.625 414295 14731 415356 1130 1 53 2025-02-26 11:47:40.057 2025-02-26 11:47:40.057 417468 12946 417469 5173 1 54 2025-03-09 15:12:36.918 2025-03-09 15:12:36.918 417574 17212 431058 11275 1 55 2025-03-04 02:58:29.814 2025-03-04 02:58:29.814 424357 14168 424368 21768 1 56 2025-03-19 19:35:53.245 2025-03-19 19:35:53.245 444317 21119 444326 12736 1 57 2025-02-15 20:21:39.945 2025-02-15 20:21:39.945 404356 12951 404375 9183 1 58 2025-03-09 16:02:31.384 2025-03-09 16:02:31.384 404356 12951 431195 17172 1 59 2025-03-09 16:01:18.623 2025-03-09 16:01:18.623 410197 1009 431176 14472 1 60 2025-02-20 14:04:58.387 2025-02-20 14:04:58.387 410197 1009 410496 18727 1 61 2025-02-20 16:41:10.177 2025-02-20 16:41:10.177 410197 1009 410732 12738 1 62 2025-03-09 16:03:44.154 2025-03-09 16:03:44.154 399731 2195 431216 21332 1 63 2025-03-23 06:03:27.498 2025-03-23 06:03:27.498 393176 21402 449049 15213 1 64 2025-02-13 10:44:38.637 2025-02-13 10:44:38.637 401690 9166 401719 21148 1 65 2025-03-13 10:38:18.18 2025-03-13 10:38:18.18 436091 21119 436126 10986 1 66 2025-03-13 10:52:45.202 2025-03-13 10:52:45.202 436091 21119 436143 19829 3 67 2025-03-13 11:05:13.028 2025-03-13 11:05:13.028 436091 21119 436162 21091 3 68 2025-03-13 11:11:29.666 2025-03-13 11:11:29.666 436091 21119 436169 17682 4 69 2025-03-13 11:22:31.938 2025-03-13 11:22:31.938 436091 21119 436185 711 6 70 2025-03-13 10:50:54.44 2025-03-13 10:50:54.44 436091 21119 436141 13406 2 71 2025-03-13 11:13:23.154 2025-03-13 11:13:23.154 436091 21119 436171 20849 5 72 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436091 21119 436196 21389 7 73 2025-03-29 07:47:40.61 2025-03-29 07:47:40.61 458318 964 458319 925 1 74 2025-03-12 12:40:54.047 2025-03-12 12:40:54.047 435000 654 435061 9421 1 75 2025-03-12 12:46:17.251 2025-03-12 12:46:17.251 435000 654 435071 5865 2 76 2025-03-12 14:07:28.255 2025-03-12 14:07:28.255 435164 15843 435173 21709 1 77 2025-03-22 15:51:27.688 2025-03-22 15:51:27.688 448433 20337 448444 866 1 78 2025-03-22 15:47:39.563 2025-03-22 15:47:39.563 448433 20337 448434 17221 1 79 2025-03-02 21:37:39.998 2025-03-02 21:37:39.998 422962 1316 423016 17838 2 80 2025-03-02 20:34:40.451 2025-03-02 20:34:40.451 422962 1316 422980 1213 1 81 2025-03-13 15:22:21.534 2025-03-13 15:22:21.534 436462 16966 436469 20892 1 82 2025-03-13 15:35:27.85 2025-03-13 15:35:27.85 436462 16966 436497 19117 1 83 2025-02-23 08:35:07.431 2025-02-23 08:35:07.431 413322 18528 413475 11165 2 84 2025-02-23 08:34:08.791 2025-02-23 08:34:08.791 413322 18528 413473 4958 1 85 2025-03-12 11:47:40.209 2025-03-12 11:47:40.209 434992 19535 434993 8544 1 86 2025-02-25 23:47:41.445 2025-02-25 23:47:41.445 416944 20433 416945 9346 1 87 2025-03-12 18:00:46.123 2025-03-12 18:00:46.123 435472 20525 435476 16789 1 88 2024-11-25 19:01:57.675 2024-11-25 19:01:57.675 245128 20912 308280 14515 1 89 2025-03-24 13:37:38.063 2025-03-24 13:37:38.063 450971 732 451300 4624 2 90 2025-03-24 10:45:54.835 2025-03-24 10:45:54.835 450971 732 451005 1717 1 91 2025-03-24 13:12:57.193 2025-03-24 13:12:57.193 450971 732 451241 9275 2 92 2025-03-24 13:28:06.705 2025-03-24 13:28:06.705 450971 732 451280 17094 4 93 2025-03-24 12:11:43.541 2025-03-24 12:11:43.541 450971 732 451138 19488 1 94 2025-03-24 14:34:48.493 2025-03-24 14:34:48.493 450971 732 451404 17411 2 95 2025-03-24 14:30:34.95 2025-03-24 14:30:34.95 450971 732 451390 976 2 96 2025-03-24 11:12:39.418 2025-03-24 11:12:39.418 450971 732 451046 12049 1 97 2025-03-24 13:15:56.24 2025-03-24 13:15:56.24 450971 732 451245 2519 3 98 2025-03-24 10:28:08.872 2025-03-24 10:28:08.872 450971 732 450976 2459 1 99 2025-03-01 10:35:56.363 2025-03-01 10:35:56.363 420949 16149 420994 7966 1 100 2025-03-01 15:08:21.741 2025-03-01 15:08:21.741 420949 16149 421297 21455 2 101 2025-02-20 14:00:27.835 2025-02-20 14:00:27.835 410254 663 410488 15510 1 102 2025-03-19 22:18:27.114 2025-03-19 22:18:27.114 444444 5904 444453 1585 1 103 2025-03-19 22:28:13.631 2025-03-19 22:28:13.631 444444 5904 444455 1602 2 104 2025-03-03 22:46:44.535 2025-03-03 22:46:44.535 424227 2789 424228 21365 1 105 2022-09-29 11:35:12.301 2022-09-29 11:35:12.301 1929 7978 1930 5557 1 106 2025-03-03 12:47:07.213 2025-03-03 12:47:07.213 423419 18178 423535 19735 1 107 2025-02-20 15:01:23.341 2025-02-20 15:01:23.341 410574 6526 410599 854 1 108 2025-02-15 21:03:09.441 2025-02-15 21:03:09.441 402962 21412 404405 11750 1 109 2025-03-29 04:50:04.391 2025-03-29 04:50:04.391 458191 21804 458192 14669 1 110 2025-03-29 04:51:11.003 2025-03-29 04:51:11.003 458191 21804 458193 19292 2 111 2025-03-01 23:50:03.187 2025-03-01 23:50:03.187 421735 1738 421738 674 2 112 2025-03-01 23:48:23.237 2025-03-01 23:48:23.237 421735 1738 421737 16309 1 113 2025-03-01 23:55:50.365 2025-03-01 23:55:50.365 421735 1738 421747 1567 4 114 2025-03-01 23:50:41.485 2025-03-01 23:50:41.485 421735 1738 421739 8945 3 115 2025-03-19 21:59:46.158 2025-03-19 21:59:46.158 444417 2652 444442 20596 1 116 2025-03-24 13:26:06.402 2025-03-24 13:26:06.402 451262 6741 451271 20751 1 117 2025-03-09 13:47:39.35 2025-03-09 13:47:39.35 430896 1618 430897 21271 1 118 2025-02-15 20:42:45.789 2025-02-15 20:42:45.789 404383 14122 404386 8326 1 119 2025-03-15 03:28:39.303 2025-03-15 03:28:39.303 437948 17316 437960 12291 1 120 2025-03-09 15:13:22.037 2025-03-09 15:13:22.037 417306 13076 431065 18829 1 121 2025-03-19 22:28:46.5 2025-03-19 22:28:46.5 444419 16978 444456 21734 1 122 2025-03-19 22:56:03.499 2025-03-19 22:56:03.499 444419 16978 444470 13553 2 123 2025-03-19 21:45:53.29 2025-03-19 21:45:53.29 444116 2640 444431 11165 1 124 2025-02-20 14:12:56.287 2025-02-20 14:12:56.287 410504 795 410518 7675 1 125 2025-03-29 06:21:21.651 2025-03-29 06:21:21.651 458211 1352 458249 10311 5 126 2025-03-29 06:07:37.183 2025-03-29 06:07:37.183 458211 1352 458237 20717 1 127 2025-03-29 06:14:59.098 2025-03-29 06:14:59.098 458211 1352 458242 7869 2 128 2025-03-29 06:16:48.232 2025-03-29 06:16:48.232 458211 1352 458243 6335 3 129 2025-03-29 06:18:14.367 2025-03-29 06:18:14.367 458211 1352 458244 666 4 130 2025-03-29 07:53:37.712 2025-03-29 07:53:37.712 458211 1352 458330 14607 3 131 2025-02-26 01:31:34.056 2025-02-26 01:31:34.056 416995 18313 417006 20185 1 132 2025-03-29 08:20:18.758 2025-03-29 08:20:18.758 458351 21804 458359 11885 1 133 2025-03-29 08:44:36.778 2025-03-29 08:44:36.778 458351 21804 458386 725 2 134 2025-03-29 08:24:04.323 2025-03-29 08:24:04.323 458351 21804 458365 1319 2 135 2025-03-19 22:42:52.686 2025-03-19 22:42:52.686 444285 20185 444464 20179 1 136 2025-03-19 23:18:06.251 2025-03-19 23:18:06.251 444482 16954 444483 12222 1 137 2025-03-07 11:31:49.884 2025-03-07 11:31:49.884 428476 628 428528 12721 1 138 2025-03-24 06:56:32.217 2025-03-24 06:56:32.217 450364 21451 450696 21083 2 139 2025-03-24 00:02:46.757 2025-03-24 00:02:46.757 450364 21451 450432 717 1 140 2025-03-09 15:01:39.509 2025-03-09 15:01:39.509 421611 20481 430995 9916 1 141 2025-03-22 15:51:55.239 2025-03-22 15:51:55.239 448422 1617 448446 20180 1 142 2025-02-18 16:59:36.869 2025-02-18 16:59:36.869 408243 20588 408266 12935 1 143 2025-03-23 17:52:58.198 2025-03-23 17:52:58.198 449920 8269 450040 10608 4 144 2025-03-23 17:29:39.175 2025-03-23 17:29:39.175 449920 8269 450010 9339 1 145 2025-03-23 17:51:47.089 2025-03-23 17:51:47.089 449920 8269 450039 17673 3 146 2025-03-23 18:23:55.978 2025-03-23 18:23:55.978 449920 8269 450067 21159 5 147 2025-03-23 17:38:33.489 2025-03-23 17:38:33.489 449920 8269 450014 2620 2 148 2025-03-23 18:58:28.705 2025-03-23 18:58:28.705 449920 8269 450109 675 6 149 2025-03-23 18:58:28.705 2025-03-23 18:58:28.705 450067 21159 450109 675 1 150 2025-02-21 15:54:41.201 2025-02-21 15:54:41.201 411173 8400 411644 8713 1 151 2025-02-16 00:38:07.913 2025-02-16 00:38:07.913 402791 19813 404528 21498 1 152 2025-02-20 16:03:49.073 2025-02-20 16:03:49.073 410624 7809 410690 2342 1 153 2025-03-03 23:22:43.91 2025-03-03 23:22:43.91 421282 20829 424248 1389 1 154 2025-03-04 01:22:47.155 2025-03-04 01:22:47.155 421282 20829 424334 21019 2 155 2025-03-09 15:53:54.853 2025-03-09 15:53:54.853 431156 16571 431168 3642 1 156 2025-03-19 12:10:43.047 2025-03-19 12:10:43.047 443048 19576 443543 3371 1 157 2025-03-19 12:49:51.324 2025-03-19 12:49:51.324 443048 19576 443647 9329 5 158 2025-03-19 12:46:37.921 2025-03-19 12:46:37.921 443048 19576 443628 7675 4 159 2025-03-19 12:38:34.911 2025-03-19 12:38:34.911 443048 19576 443604 1433 2 160 2025-03-19 12:43:35.823 2025-03-19 12:43:35.823 443048 19576 443618 10549 3 161 2025-03-09 15:12:32.353 2025-03-09 15:12:32.353 417756 14941 431056 16684 1 162 2025-03-04 01:22:47.155 2025-03-04 01:22:47.155 424248 1389 424334 21019 1 163 2025-03-09 15:12:39.078 2025-03-09 15:12:39.078 417426 19484 431059 14404 1 164 2025-02-16 00:42:04.606 2025-02-16 00:42:04.606 404541 1617 404543 4345 1 165 2025-02-16 00:44:28.976 2025-02-16 00:44:28.976 404541 1617 404547 21402 2 166 2025-02-20 14:31:45.367 2025-02-20 14:31:45.367 410147 13622 410553 21620 1 167 2025-02-18 04:34:29.885 2025-02-18 04:34:29.885 407466 1245 407483 10393 2 168 2025-02-18 04:07:12.674 2025-02-18 04:07:12.674 407466 1245 407476 5487 1 169 2025-03-14 17:06:39.626 2025-03-14 17:06:39.626 437561 5779 437620 902 1 170 2025-03-03 17:03:53.15 2025-03-03 17:03:53.15 423814 20911 423880 17517 1 171 2025-03-24 14:06:16.394 2025-03-24 14:06:16.394 451330 739 451346 8059 2 172 2025-03-24 14:03:39.057 2025-03-24 14:03:39.057 451330 739 451340 18923 1 173 2025-02-16 00:38:28.74 2025-02-16 00:38:28.74 402271 21498 404531 19537 1 174 2025-03-02 15:15:17.758 2025-03-02 15:15:17.758 422581 1618 422594 15239 2 175 2025-03-02 15:10:40.491 2025-03-02 15:10:40.491 422581 1618 422588 20754 1 176 2025-02-15 11:42:12.94 2025-02-15 11:42:12.94 403934 21222 403937 997 1 177 2025-02-15 11:44:43.466 2025-02-15 11:44:43.466 403934 21222 403941 21356 2 178 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403934 21222 403948 9421 3 179 2025-03-13 11:45:59.519 2025-03-13 11:45:59.519 436209 10352 436217 20713 1 180 2025-03-13 11:48:10.763 2025-03-13 11:48:10.763 436209 10352 436219 1438 2 181 2025-03-13 11:49:23.824 2025-03-13 11:49:23.824 436209 10352 436221 16684 3 182 2025-02-14 14:08:24.169 2025-02-14 14:08:24.169 403151 11498 403172 8544 1 183 2025-02-14 20:09:48.277 2025-02-14 20:09:48.277 403151 11498 403450 12169 2 184 2025-02-23 19:35:48.435 2025-02-23 19:35:48.435 414232 1483 414293 1626 1 185 2025-03-07 19:38:29.297 2025-03-07 19:38:29.297 414232 1483 428997 2367 2 186 2025-02-23 19:00:49.517 2025-02-23 19:00:49.517 414232 1483 414245 11760 1 187 2025-03-06 15:45:26.138 2025-03-06 15:45:26.138 414232 1483 427748 17953 1 188 2025-02-25 08:08:11.563 2025-02-25 08:08:11.563 415629 20799 415883 12490 1 189 2025-02-25 22:56:30.732 2025-02-25 22:56:30.732 416751 20973 416898 713 1 190 2025-02-26 00:21:06.478 2025-02-26 00:21:06.478 416960 16988 416969 21555 1 191 2025-02-26 03:48:11.97 2025-02-26 03:48:11.97 417013 17526 417060 1244 1 192 2025-03-03 20:35:38.484 2025-03-03 20:35:38.484 417013 17526 424107 5806 1 193 2025-03-02 15:10:03.175 2025-03-02 15:10:03.175 422583 20646 422586 681 1 194 2025-03-02 18:56:43.329 2025-03-02 18:56:43.329 422583 20646 422883 5175 3 195 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422583 20646 423001 2326 8 196 2025-03-02 19:25:22.229 2025-03-02 19:25:22.229 422583 20646 422916 5017 6 197 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422583 20646 422933 16939 7 198 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422583 20646 423078 21238 11 199 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422583 20646 422992 1237 7 200 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422583 20646 422934 4798 8 201 2025-03-02 19:26:26.455 2025-03-02 19:26:26.455 422583 20646 422919 12097 6 202 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422583 20646 422941 19303 9 203 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422583 20646 422939 7389 8 204 2025-03-02 19:22:35.068 2025-03-02 19:22:35.068 422583 20646 422908 3347 5 205 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422583 20646 423046 12656 10 206 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422583 20646 423076 695 11 207 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422583 20646 422925 20691 7 208 2025-03-02 19:26:25.897 2025-03-02 19:26:25.897 422583 20646 422918 9307 6 209 2025-03-02 19:22:53.929 2025-03-02 19:22:53.929 422583 20646 422911 20588 5 210 2025-03-02 18:51:00.834 2025-03-02 18:51:00.834 422583 20646 422871 10981 2 211 2025-03-02 19:08:46.501 2025-03-02 19:08:46.501 422583 20646 422895 9969 4 212 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422583 20646 422644 19071 7 213 2025-03-02 15:35:31.161 2025-03-02 15:35:31.161 422583 20646 422640 3706 6 214 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422583 20646 422927 10102 7 215 2025-03-02 15:32:09.644 2025-03-02 15:32:09.644 422583 20646 422633 17221 5 216 2025-03-02 15:27:28.815 2025-03-02 15:27:28.815 422583 20646 422620 5779 4 217 2025-03-02 15:21:19.724 2025-03-02 15:21:19.724 422583 20646 422611 13076 3 218 2025-03-02 15:18:42.06 2025-03-02 15:18:42.06 422583 20646 422604 6777 2 219 2025-03-22 14:39:14.408 2025-03-22 14:39:14.408 448310 20969 448312 20901 1 220 2025-03-23 07:21:07.839 2025-03-23 07:21:07.839 448710 2537 449092 7916 1 221 2025-03-27 12:16:54.793 2025-03-27 12:16:54.793 455889 807 455923 4650 3 222 2025-03-27 13:09:04.485 2025-03-27 13:09:04.485 455889 807 456073 10060 7 223 2025-03-27 12:06:29.751 2025-03-27 12:06:29.751 455889 807 455911 20450 2 224 2025-03-27 12:50:42.898 2025-03-27 12:50:42.898 455889 807 455994 5112 6 225 2025-03-27 13:14:30.283 2025-03-27 13:14:30.283 455889 807 456086 10094 8 226 2025-03-27 12:36:01.878 2025-03-27 12:36:01.878 455889 807 455952 21485 4 227 2025-03-27 12:01:20.522 2025-03-27 12:01:20.522 455889 807 455904 20715 1 228 2025-03-27 12:40:58.213 2025-03-27 12:40:58.213 455889 807 455962 759 5 229 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 455889 807 456804 992 9 230 2025-03-09 14:46:18.768 2025-03-09 14:46:18.768 430912 2583 430978 21666 2 231 2025-03-09 14:06:51.869 2025-03-09 14:06:51.869 430912 2583 430917 5758 1 232 2025-03-26 19:51:54.143 2025-03-26 19:51:54.143 455141 2460 455204 11192 1 233 2025-03-01 13:20:19.622 2025-03-01 13:20:19.622 420794 21228 421175 8664 1 234 2025-03-09 13:56:22.076 2025-03-09 13:56:22.076 428788 17116 430905 16670 1 235 2025-02-26 02:23:45.4 2025-02-26 02:23:45.4 417021 20993 417025 4570 1 236 2025-03-03 20:27:34.86 2025-03-03 20:27:34.86 420782 718 424093 803 2 237 2025-03-03 17:58:10.124 2025-03-03 17:58:10.124 420782 718 423923 18225 1 238 2025-03-03 22:02:03.844 2025-03-03 22:02:03.844 420782 718 424208 9985 3 239 2025-03-28 09:26:09.03 2025-03-28 09:26:09.03 456604 8168 457167 19071 1 240 2025-03-09 15:11:53.967 2025-03-09 15:11:53.967 420116 9611 431044 10862 1 241 2025-03-01 15:08:27.311 2025-03-01 15:08:27.311 421268 20599 421298 19826 1 242 2025-03-01 18:28:22.933 2025-03-01 18:28:22.933 421270 19121 421546 1717 1 243 2025-03-20 03:09:24.665 2025-03-20 03:09:24.665 444183 15103 444576 659 1 244 2025-03-03 04:54:15.124 2025-03-03 04:54:15.124 423190 10862 423194 4314 1 245 2025-03-15 06:20:28.164 2025-03-15 06:20:28.164 437999 1970 438021 9906 1 246 2025-03-01 19:49:30.08 2025-03-01 19:49:30.08 421613 13169 421619 1094 1 247 2025-03-12 04:47:39.648 2025-03-12 04:47:39.648 434632 15843 434633 1105 1 248 2025-03-29 06:26:25.432 2025-03-29 06:26:25.432 458160 18306 458255 7667 1 249 2025-03-02 02:03:45.555 2025-03-02 02:03:45.555 421684 2322 421802 16598 1 250 2025-03-23 01:15:25.392 2025-03-23 01:15:25.392 448911 11263 448922 1638 1 251 2025-02-20 15:12:10.966 2025-02-20 15:12:10.966 410582 7978 410614 4167 1 252 2025-03-07 11:23:49.021 2025-03-07 11:23:49.021 428474 20525 428522 21083 1 253 2025-03-07 10:22:14.749 2025-03-07 10:22:14.749 428469 19821 428474 20525 1 254 2025-03-07 11:23:49.021 2025-03-07 11:23:49.021 428469 19821 428522 21083 2 255 2025-03-12 14:52:46.057 2025-03-12 14:52:46.057 435236 8989 435247 21216 1 256 2025-03-09 15:10:59.955 2025-03-09 15:10:59.955 421641 670 431038 10013 1 257 2025-03-03 22:14:03.75 2025-03-03 22:14:03.75 423571 622 424215 940 1 258 2025-03-03 23:12:17.188 2025-03-03 23:12:17.188 423571 622 424239 17798 2 259 2025-02-15 05:49:44.5 2025-02-15 05:49:44.5 243274 20912 403705 16124 1 260 2025-03-19 10:10:55.433 2025-03-19 10:10:55.433 443336 9084 443381 6164 2 261 2025-03-19 09:16:40.096 2025-03-19 09:16:40.096 443336 9084 443338 1488 1 262 2025-03-19 11:05:53.407 2025-03-19 11:05:53.407 443336 9084 443451 3506 1 263 2025-03-19 11:16:01.421 2025-03-19 11:16:01.421 443336 9084 443460 16847 4 264 2025-03-19 11:06:32.851 2025-03-19 11:06:32.851 443336 9084 443452 21373 3 265 2025-03-19 10:09:35.628 2025-03-19 10:09:35.628 443336 9084 443380 16998 1 266 2025-03-19 21:56:24.517 2025-03-19 21:56:24.517 443336 9084 444438 9339 1 267 2025-03-13 15:43:44.711 2025-03-13 15:43:44.711 435366 15337 436507 11515 2 268 2025-03-13 17:33:39.528 2025-03-13 17:33:39.528 435366 15337 436595 1092 3 269 2025-03-12 17:46:04.03 2025-03-12 17:46:04.03 435366 15337 435466 13878 1 270 2025-03-09 16:09:30.041 2025-03-09 16:09:30.041 387200 5761 431259 21248 1 271 2025-02-18 14:58:15.052 2025-02-18 14:58:15.052 408053 19527 408072 4128 1 272 2025-03-19 18:23:00.679 2025-03-19 18:23:00.679 443368 14785 444231 7097 1 273 2025-03-03 22:02:03.844 2025-03-03 22:02:03.844 424093 803 424208 9985 1 274 2025-03-09 16:24:13.138 2025-03-09 16:24:13.138 376857 20586 431372 2718 1 275 2025-03-09 14:19:14.549 2025-03-09 14:19:14.549 430453 12483 430938 1009 1 276 2025-03-09 15:29:37.192 2025-03-09 15:29:37.192 413011 9438 431113 634 1 277 2025-03-09 15:29:44.291 2025-03-09 15:29:44.291 412359 20980 431116 1092 1 278 2025-03-09 15:29:41.211 2025-03-09 15:29:41.211 412890 19502 431115 7682 1 279 2025-03-09 15:29:46.504 2025-03-09 15:29:46.504 411470 1549 431117 1428 1 280 2025-03-09 15:29:50.719 2025-03-09 15:29:50.719 410993 9261 431119 16660 1 281 2025-03-09 15:34:18.058 2025-03-09 15:34:18.058 431007 15147 431132 7425 1 282 2025-03-13 11:09:38.87 2025-03-13 11:09:38.87 436147 13622 436165 21709 1 283 2025-03-13 14:52:30.385 2025-03-13 14:52:30.385 436147 13622 436423 21412 1 284 2025-03-13 11:33:10.785 2025-03-13 11:33:10.785 436147 13622 436198 17741 1 285 2025-03-19 10:55:55.997 2025-03-19 10:55:55.997 443429 21688 443434 20137 1 286 2025-03-19 10:59:53.321 2025-03-19 10:59:53.321 443429 21688 443440 20555 2 287 2025-03-19 11:03:38.563 2025-03-19 11:03:38.563 443429 21688 443446 1512 3 288 2025-03-18 21:04:37.601 2025-03-18 21:04:37.601 442710 20646 442848 20911 1 289 2025-03-19 00:53:38.304 2025-03-19 00:53:38.304 442710 20646 443031 644 1 290 2025-03-19 05:28:47.305 2025-03-19 05:28:47.305 442710 20646 443158 20245 2 291 2025-03-20 01:59:43.97 2025-03-20 01:59:43.97 442710 20646 444549 1424 1 292 2025-03-19 10:11:01.75 2025-03-19 10:11:01.75 442710 20646 443382 1030 2 293 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416938 11263 416939 7773 1 294 2025-02-20 15:24:18.555 2025-02-20 15:24:18.555 410617 19292 410633 14037 1 295 2025-03-06 12:59:13.258 2025-03-06 12:59:13.258 427500 4984 427516 20577 1 296 2025-03-09 16:24:20.435 2025-03-09 16:24:20.435 377335 8380 431375 16212 1 297 2025-03-13 14:57:48.97 2025-03-13 14:57:48.97 436409 20715 436432 1493 1 298 2025-03-01 18:09:01.181 2025-03-01 18:09:01.181 421148 18068 421514 1008 1 299 2025-02-23 14:10:00.237 2025-02-23 14:10:00.237 413876 998 413882 21798 1 300 2025-02-25 23:18:31.616 2025-02-25 23:18:31.616 416197 14258 416930 12774 1 301 2025-03-06 14:03:47.496 2025-03-06 14:03:47.496 427304 6137 427581 9833 2 302 2025-03-06 13:49:24.023 2025-03-06 13:49:24.023 427304 6137 427567 909 1 303 2025-03-14 18:47:13.518 2025-03-14 18:47:13.518 437583 666 437686 5761 1 304 2025-03-02 20:31:12.456 2025-03-02 20:31:12.456 422965 2537 422976 17316 1 305 2025-03-10 22:11:21.23 2025-03-10 22:11:21.23 433186 12561 433247 6030 1 306 2025-03-10 23:27:29.869 2025-03-10 23:27:29.869 433186 12561 433296 664 2 307 2025-03-09 14:37:08.736 2025-03-09 14:37:08.736 430633 946 430965 16309 1 308 2025-03-14 21:38:20.131 2025-03-14 21:38:20.131 430647 4313 437772 1354 1 309 2025-02-15 23:21:40.267 2025-02-15 23:21:40.267 404477 10862 404497 3360 1 310 2025-03-29 05:27:54.77 2025-03-29 05:27:54.77 457951 16149 458203 13854 2 311 2025-03-29 02:21:50.358 2025-03-29 02:21:50.358 457951 16149 458153 15052 1 312 2025-02-14 17:45:20.584 2025-02-14 17:45:20.584 403325 15337 403333 15484 1 313 2022-09-22 17:41:27.879 2022-09-22 17:41:27.879 1698 19189 1700 5377 1 314 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437513 12609 437593 19094 8 315 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437513 12609 437574 5069 7 316 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437513 12609 437553 10291 5 317 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437513 12609 437552 17722 4 318 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437513 12609 437521 19980 1 319 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437513 12609 437558 7097 6 320 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437513 12609 437598 12277 9 321 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437513 12609 437551 5129 3 322 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437513 12609 437538 7668 2 323 2025-03-07 11:28:24.672 2025-03-07 11:28:24.672 428403 1261 428525 663 1 324 2025-03-03 22:02:31.916 2025-03-03 22:02:31.916 424207 21242 424210 14650 1 325 2025-03-03 23:19:54.711 2025-03-03 23:19:54.711 424207 21242 424246 780 2 326 2025-02-15 20:59:21.818 2025-02-15 20:59:21.818 403115 1236 404399 15367 1 327 2025-03-19 19:54:34.338 2025-03-19 19:54:34.338 444117 18423 444341 2206 2 328 2025-03-19 17:17:13.164 2025-03-19 17:17:13.164 444117 18423 444121 2492 1 329 2025-03-29 06:09:18.722 2025-03-29 06:09:18.722 458229 18188 458239 17050 4 330 2025-03-29 05:56:41.168 2025-03-29 05:56:41.168 458229 18188 458230 681 1 331 2025-03-29 06:03:38.574 2025-03-29 06:03:38.574 458229 18188 458234 1389 2 332 2025-03-29 06:07:30.702 2025-03-29 06:07:30.702 458229 18188 458236 21427 3 333 2025-03-29 05:51:42.88 2025-03-29 05:51:42.88 458223 20734 458229 18188 2 334 2025-03-29 06:09:18.722 2025-03-29 06:09:18.722 458223 20734 458239 17050 6 335 2025-03-29 05:50:27.72 2025-03-29 05:50:27.72 458223 20734 458226 660 1 336 2025-03-29 05:56:41.168 2025-03-29 05:56:41.168 458223 20734 458230 681 3 337 2025-03-29 06:03:38.574 2025-03-29 06:03:38.574 458223 20734 458234 1389 4 338 2025-03-29 06:07:30.702 2025-03-29 06:07:30.702 458223 20734 458236 21427 5 339 2025-03-24 14:35:11.411 2025-03-24 14:35:11.411 451392 6421 451408 14657 1 340 2025-03-24 14:39:53.547 2025-03-24 14:39:53.547 451392 6421 451414 14370 2 341 2025-03-09 15:08:54.84 2025-03-09 15:08:54.84 430700 21033 431007 15147 1 342 2025-03-09 15:34:18.058 2025-03-09 15:34:18.058 430700 21033 431132 7425 2 343 2025-03-09 14:22:28.915 2025-03-09 14:22:28.915 430700 21033 430943 18232 1 344 2025-03-09 14:49:02.642 2025-03-09 14:49:02.642 430700 21033 430982 21798 2 345 2025-03-09 15:35:05.866 2025-03-09 15:35:05.866 430700 21033 431134 11450 2 346 2025-03-19 22:12:21.688 2025-03-19 22:12:21.688 443934 20788 444451 1519 2 347 2025-03-19 22:08:17.795 2025-03-19 22:08:17.795 443934 20788 444448 5522 1 348 2025-03-04 00:56:49.401 2025-03-04 00:56:49.401 424328 21825 424331 4074 1 349 2025-03-09 00:08:23.369 2025-03-09 00:08:23.369 430201 19121 430219 1603 1 350 2025-03-14 13:42:50.173 2025-03-14 13:42:50.173 437337 13217 437392 20717 2 351 2025-03-14 13:07:06.145 2025-03-14 13:07:06.145 437337 13217 437356 1273 1 352 2025-03-14 13:45:52.641 2025-03-14 13:45:52.641 437337 13217 437399 9537 3 353 2025-03-08 23:26:49.765 2025-03-08 23:26:49.765 430199 8376 430201 19121 1 354 2025-03-09 00:08:23.369 2025-03-09 00:08:23.369 430199 8376 430219 1603 2 355 2025-03-14 13:10:37.903 2025-03-14 13:10:37.903 437348 4570 437361 1478 3 356 2025-03-14 13:08:10.37 2025-03-14 13:08:10.37 437348 4570 437360 8544 2 357 2025-03-14 13:05:14.213 2025-03-14 13:05:14.213 437348 4570 437352 20687 1 358 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 424003 20454 424161 2529 7 359 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 424003 20454 424388 5057 7 360 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 424003 20454 424447 16680 7 361 2025-03-03 20:17:39.282 2025-03-03 20:17:39.282 424003 20454 424080 21412 2 362 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 424003 20454 424158 2195 6 363 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 424003 20454 424311 2513 6 364 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 424003 20454 424149 5725 5 365 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 424003 20454 424153 16839 5 366 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 424003 20454 424130 21430 4 367 2025-03-03 19:32:08.352 2025-03-03 19:32:08.352 424003 20454 424024 20912 1 368 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 424003 20454 424123 1433 4 369 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 424003 20454 424323 17411 6 370 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 424003 20454 424386 1173 6 371 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 424003 20454 424413 20939 7 372 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 424003 20454 424186 18608 8 373 2025-03-03 21:09:30.844 2025-03-03 21:09:30.844 424003 20454 424160 14385 3 374 2025-03-03 20:36:29.113 2025-03-03 20:36:29.113 424003 20454 424111 3979 3 375 2025-03-04 05:14:48.279 2025-03-04 05:14:48.279 424363 19537 424430 17722 2 376 2025-03-04 04:44:44.502 2025-03-04 04:44:44.502 424363 19537 424414 654 1 377 2025-03-29 08:39:52.52 2025-03-29 08:39:52.52 458207 14941 458382 21518 2 378 2025-03-29 06:22:30.396 2025-03-29 06:22:30.396 458207 14941 458251 1652 1 379 2025-02-13 10:17:44.274 2025-02-13 10:17:44.274 401566 20660 401685 738 1 380 2025-02-20 14:47:42.649 2025-02-20 14:47:42.649 410579 17708 410580 777 1 381 2025-03-04 03:49:39.296 2025-03-04 03:49:39.296 424317 18068 424393 15588 2 382 2025-03-04 01:22:50.317 2025-03-04 01:22:50.317 424317 18068 424335 7510 1 383 2025-03-19 23:19:37.104 2025-03-19 23:19:37.104 444472 9450 444485 2326 1 384 2025-03-14 13:10:37.903 2025-03-14 13:10:37.903 437360 8544 437361 1478 1 385 2025-03-14 19:32:41.454 2025-03-14 19:32:41.454 437619 11829 437710 15806 2 386 2025-03-14 20:07:50.104 2025-03-14 20:07:50.104 437619 11829 437726 4259 3 387 2025-03-14 19:29:13.69 2025-03-14 19:29:13.69 437619 11829 437707 1647 1 388 2025-03-19 23:47:39.973 2025-03-19 23:47:39.973 444493 19576 444494 10398 1 389 2025-03-13 20:47:17.437 2025-03-13 20:47:17.437 436699 4624 436716 9843 1 390 2025-03-12 10:44:10.913 2025-03-12 10:44:10.913 434925 1195 434926 15213 1 391 2025-03-24 13:27:10.163 2025-03-24 13:27:10.163 451261 678 451275 15703 1 392 2025-03-19 22:12:21.688 2025-03-19 22:12:21.688 444448 5522 444451 1519 1 393 2025-03-09 15:10:45.637 2025-03-09 15:10:45.637 430972 20775 431035 19857 1 394 2025-03-09 14:42:13.139 2025-03-09 14:42:13.139 430906 20849 430972 20775 1 395 2025-03-09 15:10:45.637 2025-03-09 15:10:45.637 430906 20849 431035 19857 2 396 2025-03-21 18:11:13.349 2025-03-21 18:11:13.349 447246 18901 447247 21303 1 397 2025-02-20 13:52:47.949 2025-02-20 13:52:47.949 410444 624 410475 882 1 398 2025-02-20 14:18:26.979 2025-02-20 14:18:26.979 410444 624 410530 21296 2 399 2025-03-29 06:41:22.152 2025-03-29 06:41:22.152 458118 9921 458269 17291 1 400 2025-03-03 21:40:23.982 2025-03-03 21:40:23.982 424185 14168 424188 18468 1 401 2025-03-03 21:48:56.141 2025-03-03 21:48:56.141 424185 14168 424200 11609 2 402 2025-03-14 18:05:29.789 2025-03-14 18:05:29.789 437630 1605 437652 18829 1 403 2025-03-19 07:42:01.245 2025-03-19 07:42:01.245 441742 16536 443238 4763 2 404 2025-03-18 10:17:11.4 2025-03-18 10:17:11.4 441742 16536 441830 1007 1 405 2025-03-18 09:31:26.56 2025-03-18 09:31:26.56 441742 16536 441774 20681 1 406 2025-02-20 14:05:32.145 2025-02-20 14:05:32.145 408230 20254 410501 4250 1 407 2025-02-18 16:40:22.281 2025-02-18 16:40:22.281 408230 20254 408237 10981 1 408 2025-03-09 16:01:47.58 2025-03-09 16:01:47.58 408230 20254 431181 15978 1 409 2025-03-14 16:45:08.29 2025-03-14 16:45:08.29 437516 12609 437596 1488 1 410 2025-03-19 22:48:06.792 2025-03-19 22:48:06.792 444087 18393 444468 21405 1 411 2025-02-20 14:14:57.727 2025-02-20 14:14:57.727 410485 1983 410521 1039 1 412 2025-02-20 14:06:06.708 2025-02-20 14:06:06.708 407278 14705 410502 19759 1 413 2025-03-09 16:01:50.174 2025-03-09 16:01:50.174 407278 14705 431182 10554 1 414 2025-02-13 06:56:44.286 2025-02-13 06:56:44.286 401527 782 401566 20660 1 415 2025-02-13 10:17:44.274 2025-02-13 10:17:44.274 401527 782 401685 738 2 416 2025-03-29 06:21:21.651 2025-03-29 06:21:21.651 458243 6335 458249 10311 2 417 2025-03-29 06:18:14.367 2025-03-29 06:18:14.367 458243 6335 458244 666 1 418 2025-03-29 06:21:21.651 2025-03-29 06:21:21.651 458244 666 458249 10311 1 419 2025-03-13 04:27:02.554 2025-03-13 04:27:02.554 435171 21400 435888 20911 2 420 2025-03-13 01:02:15.06 2025-03-13 01:02:15.06 435171 21400 435789 10398 1 421 2025-02-14 09:13:00.736 2025-02-14 09:13:00.736 402925 8459 402932 9336 1 422 2025-02-15 21:06:39.391 2025-02-15 21:06:39.391 402925 8459 404409 9026 2 423 2025-03-09 16:09:44.518 2025-03-09 16:09:44.518 386668 9863 431262 21501 1 424 2025-03-19 03:36:15.462 2025-03-19 03:36:15.462 442701 6160 443093 20599 2 425 2025-03-18 19:08:58.13 2025-03-18 19:08:58.13 442701 6160 442730 15192 1 426 2025-03-27 04:43:01.81 2025-03-27 04:43:01.81 125253 11263 455502 4395 1 427 2025-03-24 10:20:21.113 2025-03-24 10:20:21.113 448582 7899 450958 770 1 428 2025-03-12 01:09:14.372 2025-03-12 01:09:14.372 434409 20073 434508 7869 1 429 2025-03-09 16:09:40.242 2025-03-09 16:09:40.242 386922 10393 431261 18528 1 430 2025-03-09 16:24:09.67 2025-03-09 16:24:09.67 376753 21058 431371 16309 1 431 2025-03-09 16:11:04.871 2025-03-09 16:11:04.871 381503 795 431289 20563 1 432 2025-03-03 23:56:33.56 2025-03-03 23:56:33.56 424277 663 424283 15049 1 433 2025-03-04 00:37:03.365 2025-03-04 00:37:03.365 424277 663 424312 19016 2 434 2025-03-27 00:40:38.028 2025-03-27 00:40:38.028 455363 814 455367 21688 1 435 2025-03-29 01:56:42.168 2025-03-29 01:56:42.168 457787 17639 458139 9026 1 436 2025-03-29 04:54:38.37 2025-03-29 04:54:38.37 457787 17639 458194 16670 2 437 2025-03-28 18:15:46.42 2025-03-28 18:15:46.42 457787 17639 457815 20588 1 438 2025-03-28 18:58:38.418 2025-03-28 18:58:38.418 457787 17639 457876 12245 2 439 2025-03-29 07:48:23.728 2025-03-29 07:48:23.728 458316 20715 458320 2963 1 440 2025-03-18 10:37:08.701 2025-03-18 10:37:08.701 441849 11523 441855 782 1 441 2025-03-09 16:05:12.115 2025-03-09 16:05:12.115 397082 633 431230 19924 1 442 2025-02-15 22:04:53.67 2025-02-15 22:04:53.67 404422 18494 404450 12278 1 443 2025-02-16 00:34:02.208 2025-02-16 00:34:02.208 404422 18494 404524 1802 1 444 2025-02-20 14:42:46.324 2025-02-20 14:42:46.324 410539 9171 410566 6058 1 445 2025-03-09 16:05:07.811 2025-03-09 16:05:07.811 397280 6137 431228 1983 1 446 2025-02-13 00:14:02.916 2025-02-13 00:14:02.916 401384 825 401392 11498 3 447 2025-02-13 00:10:06.402 2025-02-13 00:10:06.402 401384 825 401390 12368 2 448 2025-02-13 00:07:32.802 2025-02-13 00:07:32.802 401384 825 401385 2431 1 449 2025-03-23 12:11:41.304 2025-03-23 12:11:41.304 449414 16212 449517 1272 1 450 2025-03-23 20:15:55.464 2025-03-23 20:15:55.464 449414 16212 450259 17690 3 451 2025-03-23 12:17:19.257 2025-03-23 12:17:19.257 449414 16212 449524 9363 2 452 2025-03-01 14:23:29.973 2025-03-01 14:23:29.973 420279 21393 421246 646 1 453 2025-02-15 20:58:17.848 2025-02-15 20:58:17.848 404135 17064 404397 18637 1 454 2025-02-17 21:04:51.809 2025-02-17 21:04:51.809 407209 19199 407236 21207 1 455 2025-02-18 07:43:56.88 2025-02-18 07:43:56.88 407209 19199 407551 10283 3 456 2025-02-18 01:03:15.901 2025-02-18 01:03:15.901 407209 19199 407425 5112 2 457 2025-02-18 09:26:56.148 2025-02-18 09:26:56.148 407209 19199 407661 15762 4 458 2025-02-18 07:43:56.88 2025-02-18 07:43:56.88 407425 5112 407551 10283 1 459 2025-02-18 09:26:56.148 2025-02-18 09:26:56.148 407425 5112 407661 15762 2 460 2025-03-19 01:24:40.209 2025-03-19 01:24:40.209 442978 1650 443048 19576 1 461 2025-03-19 12:10:43.047 2025-03-19 12:10:43.047 442978 1650 443543 3371 2 462 2025-03-19 12:49:51.324 2025-03-19 12:49:51.324 442978 1650 443647 9329 6 463 2025-03-19 12:46:37.921 2025-03-19 12:46:37.921 442978 1650 443628 7675 5 464 2025-03-19 12:38:34.911 2025-03-19 12:38:34.911 442978 1650 443604 1433 3 465 2025-03-19 12:43:35.823 2025-03-19 12:43:35.823 442978 1650 443618 10549 4 466 2025-03-29 02:10:49.87 2025-03-29 02:10:49.87 450083 964 458145 10484 1 467 2025-03-23 19:47:06.145 2025-03-23 19:47:06.145 450083 964 450226 19673 1 468 2025-02-25 22:59:52.123 2025-02-25 22:59:52.123 416737 9537 416902 20993 1 469 2025-02-15 07:53:40.609 2025-02-15 07:53:40.609 403742 716 403780 18393 1 470 2025-02-15 20:18:51.067 2025-02-15 20:18:51.067 403742 716 404374 6148 2 471 2025-02-15 20:18:51.067 2025-02-15 20:18:51.067 403780 18393 404374 6148 1 472 2025-02-20 14:10:29.194 2025-02-20 14:10:29.194 410489 2016 410513 21180 1 473 2025-03-29 07:17:39.32 2025-03-29 07:17:39.32 458248 21058 458299 11873 3 474 2025-03-29 06:52:39.729 2025-03-29 06:52:39.729 458248 21058 458276 8080 1 475 2025-03-29 07:42:42.56 2025-03-29 07:42:42.56 458248 21058 458316 20715 5 476 2025-03-29 08:09:42.3 2025-03-29 08:09:42.3 458248 21058 458342 5758 5 477 2025-03-29 07:13:34.021 2025-03-29 07:13:34.021 458248 21058 458294 20137 2 478 2025-03-29 07:41:26.651 2025-03-29 07:41:26.651 458248 21058 458313 11038 4 479 2025-03-29 07:48:23.728 2025-03-29 07:48:23.728 458248 21058 458320 2963 6 480 2025-03-29 08:23:34.864 2025-03-29 08:23:34.864 458248 21058 458363 21383 7 481 2025-03-29 08:19:53.331 2025-03-29 08:19:53.331 458248 21058 458357 3745 6 482 2025-03-29 08:05:30.919 2025-03-29 08:05:30.919 458248 21058 458341 8989 4 483 2025-02-18 10:44:23.7 2025-02-18 10:44:23.7 407495 3377 407737 2326 1 484 2025-02-20 14:11:22.454 2025-02-20 14:11:22.454 407495 3377 410515 7580 2 485 2025-02-18 18:34:03.926 2025-02-18 18:34:03.926 407495 3377 408387 701 1 486 2025-02-18 09:40:48.029 2025-02-18 09:40:48.029 407495 3377 407677 5708 1 487 2025-02-18 14:05:06.355 2025-02-18 14:05:06.355 407495 3377 407988 2327 1 488 2025-03-28 23:09:26.799 2025-03-28 23:09:26.799 457788 16149 458076 4487 1 489 2025-03-06 06:28:17.122 2025-03-06 06:28:17.122 426664 8380 427147 20829 1 490 2025-03-05 22:06:28.719 2025-03-05 22:06:28.719 426664 8380 426896 687 1 491 2025-02-25 23:04:35.316 2025-02-25 23:04:35.316 416457 21212 416909 18351 1 492 2025-02-13 17:00:10.396 2025-02-13 17:00:10.396 401054 21079 402290 20816 1 493 2025-02-25 22:56:23.302 2025-02-25 22:56:23.302 416472 7587 416897 7992 1 494 2025-03-22 20:54:24.427 2025-03-22 20:54:24.427 448469 11609 448751 21202 1 495 2025-03-09 13:54:41.045 2025-03-09 13:54:41.045 430902 19637 430904 17109 2 496 2025-03-09 13:52:57.312 2025-03-09 13:52:57.312 430902 19637 430903 11648 1 497 2025-03-13 07:29:22.738 2025-03-13 07:29:22.738 435972 9183 435975 16847 1 498 2025-03-13 10:44:07.676 2025-03-13 10:44:07.676 435972 9183 436132 4763 2 499 2025-03-18 20:58:44.115 2025-03-18 20:58:44.115 441240 1720 442837 16653 2 500 2025-03-18 15:06:50.747 2025-03-18 15:06:50.747 441240 1720 442453 2431 1 501 2025-03-18 20:58:44.115 2025-03-18 20:58:44.115 442453 2431 442837 16653 1 502 2025-03-10 21:27:43.783 2025-03-10 21:27:43.783 432992 1124 433194 929 4 503 2025-03-10 19:08:57.822 2025-03-10 19:08:57.822 432992 1124 433041 6202 3 504 2025-03-10 18:58:01.069 2025-03-10 18:58:01.069 432992 1124 433032 15521 1 505 2025-03-12 16:37:54.738 2025-03-12 16:37:54.738 432992 1124 435387 5112 5 506 2025-03-13 00:51:56.809 2025-03-13 00:51:56.809 432992 1124 435780 679 6 507 2025-03-10 19:00:29.979 2025-03-10 19:00:29.979 432992 1124 433034 18449 2 508 2022-09-22 04:55:42.945 2022-09-22 04:55:42.945 1656 770 1672 20602 2 509 2022-09-21 17:41:40.837 2022-09-21 17:41:40.837 1656 770 1657 2724 1 510 2022-09-22 11:46:35.134 2022-09-22 11:46:35.134 1656 770 1679 17237 3 511 2022-09-22 12:00:18.235 2022-09-22 12:00:18.235 1656 770 1681 997 2 512 2022-09-22 11:56:37.467 2022-09-22 11:56:37.467 1656 770 1680 9335 1 513 2025-03-22 21:50:39.556 2025-03-22 21:50:39.556 448781 20586 448794 671 1 514 2025-02-17 22:19:41.036 2025-02-17 22:19:41.036 407301 13987 407304 2529 1 515 2025-02-17 22:33:57.285 2025-02-17 22:33:57.285 407301 13987 407312 10060 3 516 2025-02-17 22:29:56.496 2025-02-17 22:29:56.496 407301 13987 407308 733 2 517 2025-02-17 22:43:36.703 2025-02-17 22:43:36.703 407301 13987 407327 6335 4 518 2025-03-29 09:31:04.308 2025-03-29 09:31:04.308 458433 7818 458454 20198 1 519 2025-02-17 22:33:57.285 2025-02-17 22:33:57.285 407304 2529 407312 10060 2 520 2025-02-17 22:29:56.496 2025-02-17 22:29:56.496 407304 2529 407308 733 1 521 2025-02-17 22:43:36.703 2025-02-17 22:43:36.703 407304 2529 407327 6335 3 522 2025-03-03 21:19:15.954 2025-03-03 21:19:15.954 424074 10060 424170 775 1 523 2025-02-25 23:08:59.034 2025-02-25 23:08:59.034 416857 2338 416915 632 1 524 2025-03-02 20:17:42.378 2025-03-02 20:17:42.378 422819 13903 422966 19378 1 525 2025-02-24 15:14:49.582 2025-02-24 15:14:49.582 414936 669 415172 5195 1 526 2025-02-24 15:45:48.365 2025-02-24 15:45:48.365 414936 669 415222 6616 2 527 2025-03-28 18:58:38.418 2025-03-28 18:58:38.418 457815 20588 457876 12245 1 528 2025-02-15 21:01:36.747 2025-02-15 21:01:36.747 403905 7903 404403 14357 1 529 2025-03-17 21:12:01.758 2025-03-17 21:12:01.758 441211 4345 441234 5870 3 530 2025-03-17 21:05:19.867 2025-03-17 21:05:19.867 441211 4345 441226 17316 2 531 2025-03-22 18:38:02.438 2025-03-22 18:38:02.438 441211 4345 448627 21303 5 532 2025-03-17 20:55:26.412 2025-03-17 20:55:26.412 441211 4345 441215 21041 1 533 2025-03-17 21:33:47.419 2025-03-17 21:33:47.419 441211 4345 441254 11760 4 534 2025-03-22 18:38:02.438 2025-03-22 18:38:02.438 441234 5870 448627 21303 2 535 2025-03-17 21:33:47.419 2025-03-17 21:33:47.419 441234 5870 441254 11760 1 536 2025-03-17 21:12:01.758 2025-03-17 21:12:01.758 441130 802 441234 5870 4 537 2025-03-17 21:05:19.867 2025-03-17 21:05:19.867 441130 802 441226 17316 3 538 2025-03-22 18:38:02.438 2025-03-22 18:38:02.438 441130 802 448627 21303 6 539 2025-03-17 20:52:58.177 2025-03-17 20:52:58.177 441130 802 441211 4345 1 540 2025-03-17 20:55:26.412 2025-03-17 20:55:26.412 441130 802 441215 21041 2 541 2025-03-17 21:33:47.419 2025-03-17 21:33:47.419 441130 802 441254 11760 5 542 2025-03-22 18:30:33.218 2025-03-22 18:30:33.218 441130 802 448622 688 1 543 2025-03-17 21:12:01.758 2025-03-17 21:12:01.758 441215 21041 441234 5870 2 544 2025-03-17 21:05:19.867 2025-03-17 21:05:19.867 441215 21041 441226 17316 1 545 2025-03-22 18:38:02.438 2025-03-22 18:38:02.438 441215 21041 448627 21303 4 546 2025-03-17 21:33:47.419 2025-03-17 21:33:47.419 441215 21041 441254 11760 3 547 2025-02-18 15:09:54.107 2025-02-18 15:09:54.107 408049 13753 408109 1411 1 548 2025-03-29 04:54:38.37 2025-03-29 04:54:38.37 458139 9026 458194 16670 1 549 2025-03-01 12:36:55.729 2025-03-01 12:36:55.729 421120 21274 421142 5828 1 550 2025-03-29 04:51:11.003 2025-03-29 04:51:11.003 458192 14669 458193 19292 1 551 2022-09-21 20:24:44.865 2022-09-21 20:24:44.865 1660 20562 1662 14037 1 552 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 424161 2529 424186 18608 1 553 2025-02-20 14:15:46.203 2025-02-20 14:15:46.203 410506 19735 410524 20616 1 554 2025-03-27 02:45:14.478 2025-03-27 02:45:14.478 455433 6419 455445 13753 1 555 2025-03-27 02:54:59.535 2025-03-27 02:54:59.535 455433 6419 455460 8945 1 556 2025-03-24 13:29:17.351 2025-03-24 13:29:17.351 451257 21672 451282 18069 1 557 2025-03-18 13:53:27.376 2025-03-18 13:53:27.376 442258 18743 442279 12334 1 558 2025-03-07 10:56:19.928 2025-03-07 10:56:19.928 428441 1602 428502 20245 3 559 2025-03-09 14:00:13.001 2025-03-09 14:00:13.001 428441 1602 430908 2196 2 560 2025-03-07 10:44:53.601 2025-03-07 10:44:53.601 428441 1602 428491 12821 2 561 2025-03-07 13:48:49.741 2025-03-07 13:48:49.741 428441 1602 428658 1745 1 562 2025-03-07 15:45:15.915 2025-03-07 15:45:15.915 428441 1602 428788 17116 1 563 2025-03-09 13:56:22.076 2025-03-09 13:56:22.076 428441 1602 430905 16670 2 564 2025-03-07 10:32:21.322 2025-03-07 10:32:21.322 428441 1602 428483 8284 1 565 2025-02-14 11:32:03.178 2025-02-14 11:32:03.178 401884 7966 403028 16939 2 566 2025-02-15 21:03:52.941 2025-02-15 21:03:52.941 401884 7966 404407 13216 4 567 2025-02-14 11:36:13.341 2025-02-14 11:36:13.341 401884 7966 403033 21249 3 568 2025-02-14 11:01:24.943 2025-02-14 11:01:24.943 401884 7966 403009 20713 1 569 2025-02-15 21:03:52.941 2025-02-15 21:03:52.941 403028 16939 404407 13216 2 570 2025-02-14 11:36:13.341 2025-02-14 11:36:13.341 403028 16939 403033 21249 1 571 2025-03-24 13:35:49.039 2025-03-24 13:35:49.039 451293 2285 451297 19502 1 572 2025-02-15 21:03:52.941 2025-02-15 21:03:52.941 403033 21249 404407 13216 1 573 2025-03-03 12:53:42.149 2025-03-03 12:53:42.149 423398 7827 423554 979 1 574 2025-03-29 05:35:05.962 2025-03-29 05:35:05.962 456507 627 458209 18772 1 575 2025-03-29 04:04:08.662 2025-03-29 04:04:08.662 458177 4395 458178 909 1 576 2025-03-29 03:55:02.778 2025-03-29 03:55:02.778 458169 21833 458177 4395 1 577 2025-03-29 04:04:08.662 2025-03-29 04:04:08.662 458169 21833 458178 909 2 578 2025-03-28 08:07:54.027 2025-03-28 08:07:54.027 457096 20756 457109 5017 1 579 2025-02-13 18:39:20.946 2025-02-13 18:39:20.946 402062 14857 402467 10549 2 580 2025-02-13 18:36:10.464 2025-02-13 18:36:10.464 402062 14857 402462 21048 1 581 2025-03-01 12:37:43.35 2025-03-01 12:37:43.35 421118 21271 421144 16543 1 582 2025-03-03 05:57:12.909 2025-03-03 05:57:12.909 422943 3347 423214 20254 1 583 2025-03-13 23:20:25.048 2025-03-13 23:20:25.048 436721 15463 436816 1785 1 584 2025-03-15 02:26:16.914 2025-03-15 02:26:16.914 436721 15463 437950 891 2 585 2025-03-19 22:56:03.499 2025-03-19 22:56:03.499 444456 21734 444470 13553 1 586 2025-03-03 22:41:01.798 2025-03-03 22:41:01.798 422616 21805 424226 4287 1 587 2025-03-23 12:50:38.837 2025-03-23 12:50:38.837 449585 2056 449596 13599 1 588 2025-03-23 12:55:37.744 2025-03-23 12:55:37.744 449585 2056 449599 9337 2 589 2025-03-29 06:25:12.782 2025-03-29 06:25:12.782 458232 16988 458253 16789 1 590 2025-02-15 21:34:40.091 2025-02-15 21:34:40.091 404211 16954 404428 14941 1 591 2025-03-18 08:05:10.745 2025-03-18 08:05:10.745 441637 14990 441639 10342 1 592 2025-03-03 23:12:17.188 2025-03-03 23:12:17.188 424215 940 424239 17798 1 593 2025-02-20 14:16:43.717 2025-02-20 14:16:43.717 410497 11590 410528 848 1 594 2025-02-15 21:48:10.215 2025-02-15 21:48:10.215 404009 7395 404436 17171 1 595 2025-02-13 21:46:49.289 2025-02-13 21:46:49.289 402572 628 402639 15200 1 596 2025-02-14 09:08:29.263 2025-02-14 09:08:29.263 402918 21547 402925 8459 1 597 2025-02-14 09:13:00.736 2025-02-14 09:13:00.736 402918 21547 402932 9336 2 598 2025-02-15 21:06:39.391 2025-02-15 21:06:39.391 402918 21547 404409 9026 3 599 2022-09-22 11:46:35.134 2022-09-22 11:46:35.134 1672 20602 1679 17237 1 600 2025-03-29 06:09:18.722 2025-03-29 06:09:18.722 458236 21427 458239 17050 1 601 2025-02-25 10:00:04.083 2025-02-25 10:00:04.083 415833 711 415992 18930 1 602 2025-02-25 11:01:29.891 2025-02-25 11:01:29.891 415833 711 416057 17331 2 603 2025-03-02 11:03:33.481 2025-03-02 11:03:33.481 422172 12261 422287 12808 1 604 2025-03-29 06:09:18.722 2025-03-29 06:09:18.722 458230 681 458239 17050 3 605 2025-03-29 06:03:38.574 2025-03-29 06:03:38.574 458230 681 458234 1389 1 606 2025-03-29 06:07:30.702 2025-03-29 06:07:30.702 458230 681 458236 21427 2 607 2025-03-27 21:02:23.918 2025-03-27 21:02:23.918 455524 12738 456758 993 1 608 2025-03-02 10:47:39.473 2025-03-02 10:47:39.473 422258 18351 422259 20754 1 609 2025-03-24 07:13:13.813 2025-03-24 07:13:13.813 450430 20965 450716 9863 1 610 2025-03-03 23:58:30.43 2025-03-03 23:58:30.43 424270 15103 424284 20254 1 611 2025-02-13 00:14:02.916 2025-02-13 00:14:02.916 401351 7760 401392 11498 5 612 2025-02-13 00:07:12.3 2025-02-13 00:07:12.3 401351 7760 401384 825 2 613 2025-02-13 00:10:06.402 2025-02-13 00:10:06.402 401351 7760 401390 12368 4 614 2025-02-13 00:07:32.802 2025-02-13 00:07:32.802 401351 7760 401385 2431 3 615 2025-02-13 00:05:56.397 2025-02-13 00:05:56.397 401351 7760 401381 21501 1 616 2025-03-29 03:55:02.778 2025-03-29 03:55:02.778 458156 20062 458177 4395 2 617 2025-03-29 03:32:35.473 2025-03-29 03:32:35.473 458156 20062 458169 21833 1 618 2025-03-29 04:04:08.662 2025-03-29 04:04:08.662 458156 20062 458178 909 3 619 2025-02-25 19:11:35.482 2025-02-25 19:11:35.482 416601 12261 416682 2963 1 620 2025-03-14 00:18:22.456 2025-03-14 00:18:22.456 436833 21021 436853 746 1 621 2025-03-14 01:24:28.109 2025-03-14 01:24:28.109 436833 21021 436884 8168 2 622 2025-03-19 18:48:53.206 2025-03-19 18:48:53.206 436833 21021 444285 20185 3 623 2025-03-19 22:42:52.686 2025-03-19 22:42:52.686 436833 21021 444464 20179 4 624 2025-02-18 17:01:36.259 2025-02-18 17:01:36.259 408269 15890 408270 21178 1 625 2025-02-18 17:02:56.454 2025-02-18 17:02:56.454 408269 15890 408273 5495 2 626 2025-02-18 17:03:50.922 2025-02-18 17:03:50.922 408269 15890 408274 8506 1 627 2025-02-13 10:59:53.611 2025-02-13 10:59:53.611 401671 11450 401726 1310 1 628 2025-02-14 06:21:07.752 2025-02-14 06:21:07.752 401671 11450 402847 19569 2 629 2025-02-14 09:15:44.264 2025-02-14 09:15:44.264 401671 11450 402936 644 3 630 2025-02-15 21:06:19.465 2025-02-15 21:06:19.465 401671 11450 404408 837 4 631 2025-02-15 21:15:20.725 2025-02-15 21:15:20.725 401671 11450 404414 20120 5 632 2025-02-15 21:06:19.465 2025-02-15 21:06:19.465 402936 644 404408 837 1 633 2025-02-15 21:15:20.725 2025-02-15 21:15:20.725 402936 644 404414 20120 2 634 2025-02-14 09:15:44.264 2025-02-14 09:15:44.264 402847 19569 402936 644 1 635 2025-02-15 21:06:19.465 2025-02-15 21:06:19.465 402847 19569 404408 837 2 636 2025-02-15 21:15:20.725 2025-02-15 21:15:20.725 402847 19569 404414 20120 3 637 2025-02-15 21:15:20.725 2025-02-15 21:15:20.725 404408 837 404414 20120 1 638 2025-03-14 12:30:53.444 2025-03-14 12:30:53.444 437081 10352 437290 6149 1 639 2025-03-02 10:59:28.866 2025-03-02 10:59:28.866 421801 12516 422279 11298 3 640 2025-03-02 02:47:03.245 2025-03-02 02:47:03.245 421801 12516 421833 4798 2 641 2025-03-02 02:25:43.727 2025-03-02 02:25:43.727 421801 12516 421818 14785 1 642 2025-03-02 10:59:28.866 2025-03-02 10:59:28.866 421818 14785 422279 11298 2 643 2025-03-02 02:47:03.245 2025-03-02 02:47:03.245 421818 14785 421833 4798 1 644 2025-03-14 18:07:36.03 2025-03-14 18:07:36.03 437560 19966 437655 15488 3 645 2025-03-14 16:32:47.325 2025-03-14 16:32:47.325 437560 19966 437586 1261 2 646 2025-03-14 16:49:26.66 2025-03-14 16:49:26.66 437560 19966 437604 9351 3 647 2025-03-14 16:29:11.583 2025-03-14 16:29:11.583 437560 19966 437579 14220 1 648 2025-03-14 16:40:33.426 2025-03-14 16:40:33.426 437560 19966 437591 2233 2 649 2025-03-14 16:51:14.996 2025-03-14 16:51:14.996 437560 19966 437606 10690 4 650 2025-03-14 16:35:03.651 2025-03-14 16:35:03.651 437560 19966 437588 10690 1 651 2025-03-03 23:19:54.711 2025-03-03 23:19:54.711 424210 14650 424246 780 1 652 2025-03-24 06:56:32.217 2025-03-24 06:56:32.217 450432 717 450696 21083 1 653 2025-03-14 22:12:56.946 2025-03-14 22:12:56.946 437789 20799 437791 13177 1 654 2025-03-14 22:19:25.126 2025-03-14 22:19:25.126 437789 20799 437798 17109 2 655 2025-02-20 14:15:56.421 2025-02-20 14:15:56.421 410490 2123 410525 12744 1 656 2025-03-29 06:42:40.875 2025-03-29 06:42:40.875 458132 17976 458270 7809 1 657 2025-02-23 14:28:47.633 2025-02-23 14:28:47.633 413858 2326 413921 902 1 658 2025-02-18 14:24:25.418 2025-02-18 14:24:25.418 407995 6137 408013 20180 1 659 2025-03-24 10:20:21.113 2025-03-24 10:20:21.113 448526 20310 450958 770 3 660 2025-03-22 21:43:16.463 2025-03-22 21:43:16.463 448526 20310 448785 671 1 661 2025-03-22 16:59:34.844 2025-03-22 16:59:34.844 448526 20310 448535 16042 1 662 2025-03-22 17:07:06.202 2025-03-22 17:07:06.202 448526 20310 448544 21639 1 663 2025-03-22 17:45:18.624 2025-03-22 17:45:18.624 448526 20310 448582 7899 2 664 2025-03-24 10:19:48.533 2025-03-24 10:19:48.533 448526 20310 450957 712 2 665 2025-03-24 13:43:23.946 2025-03-24 13:43:23.946 448526 20310 451311 20837 3 666 2025-03-24 13:43:23.946 2025-03-24 13:43:23.946 450957 712 451311 20837 1 667 2025-03-12 15:41:39.947 2025-03-12 15:41:39.947 435204 19292 435325 16939 3 668 2025-03-12 15:44:13.381 2025-03-12 15:44:13.381 435204 19292 435330 1769 4 669 2025-03-12 17:15:06.024 2025-03-12 17:15:06.024 435204 19292 435434 14503 7 670 2025-03-12 14:46:49.887 2025-03-12 14:46:49.887 435204 19292 435239 2529 1 671 2025-03-12 15:20:23.501 2025-03-12 15:20:23.501 435204 19292 435290 21172 2 672 2025-03-12 15:46:51.711 2025-03-12 15:46:51.711 435204 19292 435337 21116 5 673 2025-03-12 15:52:40.164 2025-03-12 15:52:40.164 435204 19292 435348 6191 6 674 2025-03-12 05:20:28.239 2025-03-12 05:20:28.239 433946 17316 434645 11498 3 675 2025-03-11 20:42:47.459 2025-03-11 20:42:47.459 433946 17316 434375 715 2 676 2025-03-11 14:55:04.667 2025-03-11 14:55:04.667 433946 17316 433993 8841 1 677 2025-03-13 00:58:56.781 2025-03-13 00:58:56.781 433946 17316 435785 5522 4 678 2025-02-13 00:12:59.327 2025-02-13 00:12:59.327 401280 18393 401391 21088 3 679 2025-02-12 22:01:47.227 2025-02-12 22:01:47.227 401280 18393 401316 7587 1 680 2025-02-12 23:53:05.332 2025-02-12 23:53:05.332 401280 18393 401371 20979 2 681 2025-02-12 20:52:01.237 2025-02-12 20:52:01.237 401257 4064 401280 18393 2 682 2025-02-13 00:12:59.327 2025-02-13 00:12:59.327 401257 4064 401391 21088 5 683 2025-02-12 22:01:47.227 2025-02-12 22:01:47.227 401257 4064 401316 7587 3 684 2025-02-12 20:41:23.777 2025-02-12 20:41:23.777 401257 4064 401271 15978 1 685 2025-02-12 23:53:05.332 2025-02-12 23:53:05.332 401257 4064 401371 20979 4 686 2022-09-26 14:03:27.913 2022-09-26 14:03:27.913 1823 17209 1825 3686 1 687 2025-03-20 01:13:34.455 2025-03-20 01:13:34.455 444286 4776 444527 21815 1 688 2025-03-03 23:05:59.928 2025-03-03 23:05:59.928 423805 5978 424234 12334 4 689 2025-03-03 19:15:38.281 2025-03-03 19:15:38.281 423805 5978 424004 18557 2 690 2025-03-03 19:09:18.87 2025-03-03 19:09:18.87 423805 5978 423997 21412 1 691 2025-03-03 20:57:16.347 2025-03-03 20:57:16.347 423805 5978 424143 822 3 692 2025-03-24 13:46:23.317 2025-03-24 13:46:23.317 451219 18441 451314 3417 2 693 2025-03-24 13:43:17.525 2025-03-24 13:43:17.525 451219 18441 451310 20222 1 694 2025-03-19 20:59:51.01 2025-03-19 20:59:51.01 444364 14449 444400 1428 1 695 2025-03-24 13:46:23.317 2025-03-24 13:46:23.317 451310 20222 451314 3417 1 696 2025-03-02 08:08:26.967 2025-03-02 08:08:26.967 422023 11164 422031 21303 1 697 2025-03-24 13:57:58.107 2025-03-24 13:57:58.107 451014 910 451328 5646 2 698 2025-03-24 10:54:10.956 2025-03-24 10:54:10.956 451014 910 451017 21539 1 699 2022-09-28 19:30:32.028 2022-09-28 19:30:32.028 1860 20133 1923 16177 1 700 2022-09-27 10:04:12.364 2022-09-27 10:04:12.364 1860 20133 1863 2322 1 701 2022-09-28 14:35:45.133 2022-09-28 14:35:45.133 1903 627 1905 13767 2 702 2022-09-29 11:05:33.546 2022-09-29 11:05:33.546 1903 627 1929 7978 5 703 2022-09-29 11:35:12.301 2022-09-29 11:35:12.301 1903 627 1930 5557 6 704 2022-09-28 14:48:08.205 2022-09-28 14:48:08.205 1903 627 1907 706 4 705 2022-09-28 14:34:31.31 2022-09-28 14:34:31.31 1903 627 1904 965 1 706 2022-09-28 14:36:57.817 2022-09-28 14:36:57.817 1903 627 1906 8004 3 707 2025-03-14 13:42:50.173 2025-03-14 13:42:50.173 437356 1273 437392 20717 1 708 2025-03-14 13:45:52.641 2025-03-14 13:45:52.641 437356 1273 437399 9537 2 709 2025-02-18 14:39:44.954 2025-02-18 14:39:44.954 408020 20612 408035 20523 1 710 2025-02-18 14:48:31.867 2025-02-18 14:48:31.867 408020 20612 408053 19527 2 711 2025-02-18 14:58:15.052 2025-02-18 14:58:15.052 408020 20612 408072 4128 3 712 2025-02-18 15:18:52.448 2025-02-18 15:18:52.448 408111 21713 408121 5776 1 713 2025-03-24 14:06:16.394 2025-03-24 14:06:16.394 451340 18923 451346 8059 1 714 2025-03-14 16:08:31.338 2025-03-14 16:08:31.338 437479 18734 437564 1003 1 715 2025-03-14 16:32:23.171 2025-03-14 16:32:23.171 437479 18734 437585 17162 2 716 2025-03-09 14:00:09.153 2025-03-09 14:00:09.153 430894 20157 430907 732 1 717 2025-03-14 16:32:23.171 2025-03-14 16:32:23.171 437564 1003 437585 17162 1 718 2025-03-29 06:32:25.988 2025-03-29 06:32:25.988 458257 21670 458259 21666 1 719 2025-03-29 06:33:30.647 2025-03-29 06:33:30.647 458077 1814 458260 21620 1 720 2025-02-20 14:19:14.513 2025-02-20 14:19:14.513 410512 20433 410532 14271 1 721 2025-03-14 22:19:14.697 2025-03-14 22:19:14.697 437790 5487 437797 6202 1 722 2025-03-03 23:27:40.668 2025-03-03 23:27:40.668 419514 15556 424257 1603 1 723 2025-03-03 23:30:34.242 2025-03-03 23:30:34.242 419514 15556 424262 10549 1 724 2025-03-24 12:52:27.587 2025-03-24 12:52:27.587 451145 2519 451210 18956 1 725 2025-03-24 13:31:01.764 2025-03-24 13:31:01.764 451145 2519 451286 2757 1 726 2025-03-09 14:22:06.417 2025-03-09 14:22:06.417 430834 11819 430941 13467 1 727 2025-03-06 15:13:45.937 2025-03-06 15:13:45.937 427692 1697 427697 2710 1 728 2025-03-04 00:09:37.695 2025-03-04 00:09:37.695 424219 2013 424293 17091 1 729 2025-03-14 12:35:49.433 2025-03-14 12:35:49.433 437287 7667 437302 960 1 730 2025-03-14 22:12:00.907 2025-03-14 22:12:00.907 437287 7667 437790 5487 2 731 2025-03-14 22:19:14.697 2025-03-14 22:19:14.697 437287 7667 437797 6202 3 732 2025-02-15 22:32:34.654 2025-02-15 22:32:34.654 404468 21062 404469 20381 1 733 2025-02-14 13:42:41.002 2025-02-14 13:42:41.002 402871 1173 403151 11498 2 734 2025-02-14 11:43:39.454 2025-02-14 11:43:39.454 402871 1173 403039 2528 3 735 2025-02-14 10:19:39.871 2025-02-14 10:19:39.871 402871 1173 402980 21269 3 736 2025-02-14 08:28:37.418 2025-02-14 08:28:37.418 402871 1173 402896 2529 1 737 2025-02-14 10:30:26.009 2025-02-14 10:30:26.009 402871 1173 402991 5306 4 738 2025-02-14 11:33:37.303 2025-02-14 11:33:37.303 402871 1173 403030 17147 2 739 2025-02-14 14:08:24.169 2025-02-14 14:08:24.169 402871 1173 403172 8544 3 740 2025-02-14 20:09:48.277 2025-02-14 20:09:48.277 402871 1173 403450 12169 4 741 2025-02-14 14:05:39.881 2025-02-14 14:05:39.881 402871 1173 403171 738 7 742 2025-02-14 15:10:06.651 2025-02-14 15:10:06.651 402871 1173 403232 628 4 743 2025-02-14 15:11:11.578 2025-02-14 15:11:11.578 402871 1173 403233 4958 5 744 2025-02-14 11:17:23.102 2025-02-14 11:17:23.102 402871 1173 403021 1114 1 745 2025-02-14 08:47:24.885 2025-02-14 08:47:24.885 402871 1173 402903 667 2 746 2025-02-14 13:58:21.315 2025-02-14 13:58:21.315 402871 1173 403165 15463 6 747 2025-02-14 13:30:40.953 2025-02-14 13:30:40.953 402871 1173 403137 9109 5 748 2025-03-14 13:56:59.927 2025-03-14 13:56:59.927 437411 5779 437417 19829 1 749 2025-03-14 21:53:44.916 2025-03-14 21:53:44.916 437411 5779 437778 21022 3 750 2025-03-14 14:05:19.842 2025-03-14 14:05:19.842 437411 5779 437427 1611 2 751 2025-03-14 21:53:44.916 2025-03-14 21:53:44.916 437417 19829 437778 21022 2 752 2025-03-14 14:05:19.842 2025-03-14 14:05:19.842 437417 19829 437427 1611 1 753 2025-03-09 15:11:08.235 2025-03-09 15:11:08.235 421367 20755 431040 11862 1 754 2025-03-01 16:27:19.792 2025-03-01 16:27:19.792 421367 20755 421421 2061 1 755 2025-03-01 16:46:05.331 2025-03-01 16:46:05.331 421367 20755 421451 913 2 756 2025-03-09 15:20:15.121 2025-03-09 15:20:15.121 421367 20755 431083 21202 2 757 2025-02-13 16:02:31.835 2025-02-13 16:02:31.835 401702 876 402212 20337 1 758 2025-03-08 23:26:31.134 2025-03-08 23:26:31.134 430038 13921 430200 21518 2 759 2025-03-08 19:34:05.061 2025-03-08 19:34:05.061 430038 13921 430039 769 1 760 2025-03-14 14:17:01.145 2025-03-14 14:17:01.145 437437 19535 437439 20525 1 761 2025-03-14 14:50:48.06 2025-03-14 14:50:48.06 437437 19535 437476 646 4 762 2025-03-14 14:32:45.157 2025-03-14 14:32:45.157 437437 19535 437455 20713 3 763 2025-03-14 14:20:30.278 2025-03-14 14:20:30.278 437437 19535 437443 12346 2 764 2025-03-14 14:50:48.06 2025-03-14 14:50:48.06 437439 20525 437476 646 3 765 2025-03-14 14:32:45.157 2025-03-14 14:32:45.157 437439 20525 437455 20713 2 766 2025-03-14 14:20:30.278 2025-03-14 14:20:30.278 437439 20525 437443 12346 1 767 2025-02-15 22:07:48.109 2025-02-15 22:07:48.109 404445 20377 404452 18174 1 768 2025-02-15 22:13:00.284 2025-02-15 22:13:00.284 404446 1092 404457 9438 1 769 2025-03-19 20:21:15.124 2025-03-19 20:21:15.124 444358 12965 444368 21639 1 770 2025-03-20 01:27:39.258 2025-03-20 01:27:39.258 444532 20990 444536 1010 1 771 2025-03-13 19:39:24.926 2025-03-13 19:39:24.926 436674 21042 436688 12808 1 772 2025-03-13 19:57:35.2 2025-03-13 19:57:35.2 436674 21042 436702 6430 2 773 2025-03-13 19:39:24.926 2025-03-13 19:39:24.926 436661 900 436688 12808 2 774 2025-03-13 19:57:35.2 2025-03-13 19:57:35.2 436661 900 436702 6430 3 775 2025-03-13 19:22:15.027 2025-03-13 19:22:15.027 436661 900 436674 21042 1 776 2025-03-13 19:39:24.926 2025-03-13 19:39:24.926 436549 688 436688 12808 4 777 2025-03-13 19:57:35.2 2025-03-13 19:57:35.2 436549 688 436702 6430 5 778 2025-03-13 19:22:15.027 2025-03-13 19:22:15.027 436549 688 436674 21042 3 779 2025-03-13 19:08:45.815 2025-03-13 19:08:45.815 436549 688 436661 900 2 780 2025-03-13 19:00:47.454 2025-03-13 19:00:47.454 436549 688 436658 15409 1 781 2025-03-13 19:36:02.373 2025-03-13 19:36:02.373 436549 688 436685 19488 1 782 2025-03-01 13:47:41.131 2025-03-01 13:47:41.131 421208 11515 421209 2757 1 783 2025-03-09 14:46:07.744 2025-03-09 14:46:07.744 430851 5359 430977 7979 1 784 2025-03-03 12:40:38.455 2025-03-03 12:40:38.455 423516 13100 423520 14607 1 785 2025-03-03 12:42:26.333 2025-03-03 12:42:26.333 423516 13100 423526 10849 2 786 2025-03-03 12:42:26.333 2025-03-03 12:42:26.333 423520 14607 423526 10849 1 787 2025-03-04 00:01:24.716 2025-03-04 00:01:24.716 424254 9845 424287 17693 1 788 2025-03-13 08:50:53.081 2025-03-13 08:50:53.081 436029 13378 436031 647 1 789 2025-03-13 09:25:53.776 2025-03-13 09:25:53.776 436029 13378 436059 20998 2 790 2025-03-13 10:38:18.18 2025-03-13 10:38:18.18 436029 13378 436126 10986 5 791 2025-03-13 10:52:45.202 2025-03-13 10:52:45.202 436029 13378 436143 19829 7 792 2025-03-13 11:05:13.028 2025-03-13 11:05:13.028 436029 13378 436162 21091 7 793 2025-03-13 11:11:29.666 2025-03-13 11:11:29.666 436029 13378 436169 17682 8 794 2025-03-13 11:22:31.938 2025-03-13 11:22:31.938 436029 13378 436185 711 10 795 2025-03-13 10:10:57.424 2025-03-13 10:10:57.424 436029 13378 436091 21119 4 796 2025-03-13 09:12:19.774 2025-03-13 09:12:19.774 436029 13378 436045 17041 1 797 2025-03-13 09:20:37.319 2025-03-13 09:20:37.319 436029 13378 436052 19826 2 798 2025-03-13 09:24:23.923 2025-03-13 09:24:23.923 436029 13378 436056 8380 3 799 2025-03-13 09:30:03.493 2025-03-13 09:30:03.493 436029 13378 436064 19655 4 800 2025-03-13 09:31:28.511 2025-03-13 09:31:28.511 436029 13378 436065 10352 3 801 2025-03-13 10:50:54.44 2025-03-13 10:50:54.44 436029 13378 436141 13406 6 802 2025-03-13 11:13:23.154 2025-03-13 11:13:23.154 436029 13378 436171 20849 9 803 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436029 13378 436196 21389 11 804 2025-03-13 12:42:16.024 2025-03-13 12:42:16.024 436029 13378 436277 21208 5 805 2025-03-13 12:50:32.973 2025-03-13 12:50:32.973 436029 13378 436282 2327 6 806 2025-03-09 14:46:18.768 2025-03-09 14:46:18.768 430917 5758 430978 21666 1 807 2025-03-03 23:24:02.064 2025-03-03 23:24:02.064 423829 9177 424252 17953 1 808 2025-03-22 15:40:18.179 2025-03-22 15:40:18.179 448416 21083 448419 21413 1 809 2025-03-04 00:02:49.731 2025-03-04 00:02:49.731 424286 6260 424289 21296 1 810 2025-03-03 23:05:59.928 2025-03-03 23:05:59.928 424143 822 424234 12334 1 811 2025-03-08 19:32:09.451 2025-03-08 19:32:09.451 430033 674 430038 13921 1 812 2025-03-08 23:25:12.332 2025-03-08 23:25:12.332 430033 674 430199 8376 1 813 2025-03-08 23:26:49.765 2025-03-08 23:26:49.765 430033 674 430201 19121 2 814 2025-03-09 00:08:23.369 2025-03-09 00:08:23.369 430033 674 430219 1603 3 815 2025-03-08 23:26:31.134 2025-03-08 23:26:31.134 430033 674 430200 21518 3 816 2025-03-08 19:34:05.061 2025-03-08 19:34:05.061 430033 674 430039 769 2 817 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437293 1424 437513 12609 12 818 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437293 1424 437508 8713 11 819 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437293 1424 437593 19094 20 820 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437293 1424 437574 5069 19 821 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 437293 1424 437465 20734 8 822 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437293 1424 437553 10291 17 823 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437293 1424 437552 17722 16 824 2025-03-14 14:11:17.647 2025-03-14 14:11:17.647 437293 1424 437432 660 6 825 2025-03-14 12:46:35.189 2025-03-14 12:46:35.189 437293 1424 437321 1488 5 826 2025-03-14 12:43:43.967 2025-03-14 12:43:43.967 437293 1424 437317 11018 4 827 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437293 1424 437521 19980 13 828 2025-03-14 12:43:02.431 2025-03-14 12:43:02.431 437293 1424 437316 13097 3 829 2025-03-14 12:37:11.691 2025-03-14 12:37:11.691 437293 1424 437308 20523 1 830 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437293 1424 437558 7097 18 831 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437293 1424 437598 12277 21 832 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437293 1424 437506 20816 10 833 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437293 1424 437497 1823 9 834 2025-03-14 14:24:43.157 2025-03-14 14:24:43.157 437293 1424 437447 12278 7 835 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437293 1424 437551 5129 15 836 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437293 1424 437538 7668 14 837 2025-03-14 12:39:26.862 2025-03-14 12:39:26.862 437293 1424 437312 8870 2 838 2025-03-19 21:47:18.587 2025-03-19 21:47:18.587 444378 1620 444432 17184 2 839 2025-03-19 20:44:05.462 2025-03-19 20:44:05.462 444378 1620 444385 880 1 840 2025-03-03 23:19:25.53 2025-03-03 23:19:25.53 424195 10291 424244 770 3 841 2025-03-03 22:06:51.605 2025-03-03 22:06:51.605 424195 10291 424211 21334 1 842 2025-03-03 22:36:36.802 2025-03-03 22:36:36.802 424195 10291 424224 19759 2 843 2025-03-03 23:19:25.53 2025-03-03 23:19:25.53 424211 21334 424244 770 2 844 2025-03-03 22:36:36.802 2025-03-03 22:36:36.802 424211 21334 424224 19759 1 845 2025-03-19 20:02:04.197 2025-03-19 20:02:04.197 442899 21067 444350 20073 1 846 2025-03-24 14:06:16.394 2025-03-24 14:06:16.394 451324 16680 451346 8059 3 847 2025-03-24 13:58:29.486 2025-03-24 13:58:29.486 451324 16680 451330 739 1 848 2025-03-24 14:03:39.057 2025-03-24 14:03:39.057 451324 16680 451340 18923 2 849 2025-03-14 13:10:37.903 2025-03-14 13:10:37.903 437352 20687 437361 1478 2 850 2025-03-14 13:08:10.37 2025-03-14 13:08:10.37 437352 20687 437360 8544 1 851 2025-03-14 13:10:37.903 2025-03-14 13:10:37.903 437319 17148 437361 1478 4 852 2025-03-14 12:59:36.526 2025-03-14 12:59:36.526 437319 17148 437348 4570 1 853 2025-03-14 13:08:10.37 2025-03-14 13:08:10.37 437319 17148 437360 8544 3 854 2025-03-14 13:05:14.213 2025-03-14 13:05:14.213 437319 17148 437352 20687 2 855 2025-03-03 23:19:25.53 2025-03-03 23:19:25.53 424224 19759 424244 770 1 856 2025-02-17 23:03:48.378 2025-02-17 23:03:48.378 407026 20854 407343 20450 1 857 2025-03-14 19:32:41.454 2025-03-14 19:32:41.454 437707 1647 437710 15806 1 858 2025-03-14 20:07:50.104 2025-03-14 20:07:50.104 437707 1647 437726 4259 2 859 2025-03-22 15:48:36.214 2025-03-22 15:48:36.214 448415 21810 448438 4776 1 860 2025-03-15 00:17:46.647 2025-03-15 00:17:46.647 437495 9362 437877 5425 3 861 2025-03-15 00:15:53.656 2025-03-15 00:15:53.656 437495 9362 437874 20788 1 862 2025-03-15 00:17:04.584 2025-03-15 00:17:04.584 437495 9362 437875 18232 2 863 2025-03-14 13:10:37.903 2025-03-14 13:10:37.903 437270 21422 437361 1478 6 864 2025-03-14 12:59:36.526 2025-03-14 12:59:36.526 437270 21422 437348 4570 3 865 2025-03-14 13:08:10.37 2025-03-14 13:08:10.37 437270 21422 437360 8544 5 866 2025-03-14 13:05:14.213 2025-03-14 13:05:14.213 437270 21422 437352 20687 4 867 2025-03-14 12:38:27.438 2025-03-14 12:38:27.438 437270 21422 437311 16834 1 868 2025-03-14 12:45:09.717 2025-03-14 12:45:09.717 437270 21422 437319 17148 2 869 2025-03-14 13:10:37.903 2025-03-14 13:10:37.903 437311 16834 437361 1478 5 870 2025-03-14 12:59:36.526 2025-03-14 12:59:36.526 437311 16834 437348 4570 2 871 2025-03-14 13:08:10.37 2025-03-14 13:08:10.37 437311 16834 437360 8544 4 872 2025-03-14 13:05:14.213 2025-03-14 13:05:14.213 437311 16834 437352 20687 3 873 2025-03-14 12:45:09.717 2025-03-14 12:45:09.717 437311 16834 437319 17148 1 874 2025-03-08 19:32:09.451 2025-03-08 19:32:09.451 430020 11670 430038 13921 2 875 2025-03-08 23:25:12.332 2025-03-08 23:25:12.332 430020 11670 430199 8376 2 876 2025-03-08 23:26:49.765 2025-03-08 23:26:49.765 430020 11670 430201 19121 3 877 2025-03-09 00:08:23.369 2025-03-09 00:08:23.369 430020 11670 430219 1603 4 878 2025-03-08 23:26:31.134 2025-03-08 23:26:31.134 430020 11670 430200 21518 4 879 2025-03-08 19:26:49.486 2025-03-08 19:26:49.486 430020 11670 430033 674 1 880 2025-03-08 19:34:05.061 2025-03-08 19:34:05.061 430020 11670 430039 769 3 881 2025-03-02 07:55:15.911 2025-03-02 07:55:15.911 422022 16354 422023 11164 1 882 2025-03-02 08:08:26.967 2025-03-02 08:08:26.967 422022 16354 422031 21303 2 883 2025-03-08 18:13:32.413 2025-03-08 18:13:32.413 429970 18069 429982 9364 1 884 2025-03-08 19:07:20.156 2025-03-08 19:07:20.156 429970 18069 430020 11670 2 885 2025-03-08 19:32:09.451 2025-03-08 19:32:09.451 429970 18069 430038 13921 4 886 2025-03-08 23:25:12.332 2025-03-08 23:25:12.332 429970 18069 430199 8376 4 887 2025-03-08 23:26:49.765 2025-03-08 23:26:49.765 429970 18069 430201 19121 5 888 2025-03-09 00:08:23.369 2025-03-09 00:08:23.369 429970 18069 430219 1603 6 889 2025-03-08 23:26:31.134 2025-03-08 23:26:31.134 429970 18069 430200 21518 6 890 2025-03-08 19:26:49.486 2025-03-08 19:26:49.486 429970 18069 430033 674 3 891 2025-03-08 19:34:05.061 2025-03-08 19:34:05.061 429970 18069 430039 769 5 892 2025-03-04 00:35:00.868 2025-03-04 00:35:00.868 424280 19494 424308 16769 1 893 2025-02-18 17:54:32.531 2025-02-18 17:54:32.531 408323 20434 408337 21485 1 894 2025-03-09 14:22:44.123 2025-03-09 14:22:44.123 430553 19502 430944 9906 2 895 2025-03-09 10:48:47.412 2025-03-09 10:48:47.412 430553 19502 430590 1515 1 896 2025-03-09 14:22:44.123 2025-03-09 14:22:44.123 430590 1515 430944 9906 1 897 2025-02-15 22:47:39.615 2025-02-15 22:47:39.615 404479 20655 404480 19668 1 898 2025-03-13 18:09:00.361 2025-03-13 18:09:00.361 436556 10611 436619 2789 1 899 2025-03-13 19:24:24.022 2025-03-13 19:24:24.022 436556 10611 436676 9705 2 900 2025-03-13 19:34:09.229 2025-03-13 19:34:09.229 436556 10611 436684 3745 1 901 2025-03-09 14:22:44.123 2025-03-09 14:22:44.123 414068 21062 430944 9906 3 902 2025-03-09 10:48:47.412 2025-03-09 10:48:47.412 414068 21062 430590 1515 2 903 2025-03-09 10:14:16.196 2025-03-09 10:14:16.196 414068 21062 430553 19502 1 904 2025-03-08 19:07:20.156 2025-03-08 19:07:20.156 429982 9364 430020 11670 1 905 2025-03-08 19:32:09.451 2025-03-08 19:32:09.451 429982 9364 430038 13921 3 906 2025-03-08 23:25:12.332 2025-03-08 23:25:12.332 429982 9364 430199 8376 3 907 2025-03-08 23:26:49.765 2025-03-08 23:26:49.765 429982 9364 430201 19121 4 908 2025-03-09 00:08:23.369 2025-03-09 00:08:23.369 429982 9364 430219 1603 5 909 2025-03-08 23:26:31.134 2025-03-08 23:26:31.134 429982 9364 430200 21518 5 910 2025-03-08 19:26:49.486 2025-03-08 19:26:49.486 429982 9364 430033 674 2 911 2025-03-08 19:34:05.061 2025-03-08 19:34:05.061 429982 9364 430039 769 4 912 2025-02-18 14:11:16.267 2025-02-18 14:11:16.267 407975 17275 407995 6137 1 913 2025-02-18 14:24:25.418 2025-02-18 14:24:25.418 407975 17275 408013 20180 2 914 2025-03-23 00:57:12.565 2025-03-23 00:57:12.565 448855 19488 448904 5444 1 915 2025-03-29 04:04:08.824 2025-03-29 04:04:08.824 448855 19488 458179 14818 1 916 2025-03-09 16:05:01.93 2025-03-09 16:05:01.93 397434 5637 431226 8269 1 917 2025-02-15 20:29:58.231 2025-02-15 20:29:58.231 404354 13399 404381 1136 1 918 2025-02-16 00:57:52.175 2025-02-16 00:57:52.175 404354 13399 404561 1985 1 919 2025-02-16 03:04:01.352 2025-02-16 03:04:01.352 404354 13399 404625 19217 2 920 2025-03-02 18:23:07.751 2025-03-02 18:23:07.751 422678 2176 422842 20647 1 921 2025-03-02 23:29:45.868 2025-03-02 23:29:45.868 422678 2176 423066 10638 2 922 2025-03-02 23:30:38.966 2025-03-02 23:30:38.966 422301 1609 423067 11798 1 923 2025-03-27 13:09:04.485 2025-03-27 13:09:04.485 455962 759 456073 10060 2 924 2025-03-27 12:50:42.898 2025-03-27 12:50:42.898 455962 759 455994 5112 1 925 2025-03-27 13:14:30.283 2025-03-27 13:14:30.283 455962 759 456086 10094 3 926 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 455962 759 456804 992 4 927 2025-03-13 06:14:29.282 2025-03-13 06:14:29.282 432547 866 435946 4173 1 928 2025-02-20 15:21:38.536 2025-02-20 15:21:38.536 410529 5757 410629 10016 2 929 2025-02-20 14:27:57.984 2025-02-20 14:27:57.984 410529 5757 410547 13174 1 930 2025-02-20 15:21:38.536 2025-02-20 15:21:38.536 410547 13174 410629 10016 1 931 2025-02-20 14:43:45.535 2025-02-20 14:43:45.535 410561 21797 410570 20852 1 932 2025-02-16 00:47:39.594 2025-02-16 00:47:39.594 404550 695 404551 14731 1 933 2025-03-23 00:50:23.184 2025-03-23 00:50:23.184 448891 5661 448897 16296 1 934 2025-02-16 00:44:28.976 2025-02-16 00:44:28.976 404543 4345 404547 21402 1 935 2025-02-20 14:17:27.276 2025-02-20 14:17:27.276 410484 21501 410529 5757 1 936 2025-02-20 15:21:38.536 2025-02-20 15:21:38.536 410484 21501 410629 10016 3 937 2025-02-20 14:27:57.984 2025-02-20 14:27:57.984 410484 21501 410547 13174 2 938 2025-03-09 15:11:10.979 2025-03-09 15:11:10.979 420698 641 431041 5003 1 939 2025-03-01 14:12:07.132 2025-03-01 14:12:07.132 420404 20603 421239 16809 1 940 2025-03-09 15:11:16.025 2025-03-09 15:11:16.025 420404 20603 431043 17064 1 941 2025-02-20 14:48:07.981 2025-02-20 14:48:07.981 410541 20294 410582 7978 1 942 2025-02-20 15:12:10.966 2025-02-20 15:12:10.966 410541 20294 410614 4167 2 943 2025-03-14 08:42:07.223 2025-03-14 08:42:07.223 436523 13622 437042 6616 1 944 2025-03-13 16:42:43.33 2025-03-13 16:42:43.33 436523 13622 436559 21556 1 945 2025-03-13 16:43:37.679 2025-03-13 16:43:37.679 436523 13622 436561 16950 1 946 2025-03-13 19:11:57.71 2025-03-13 19:11:57.71 436523 13622 436664 17991 1 947 2025-03-13 18:28:08.536 2025-03-13 18:28:08.536 436523 13622 436636 21714 1 948 2025-03-13 18:43:40.591 2025-03-13 18:43:40.591 436523 13622 436649 5129 3 949 2025-03-13 18:56:13.28 2025-03-13 18:56:13.28 436523 13622 436655 9107 1 950 2025-03-13 19:16:21.623 2025-03-13 19:16:21.623 436523 13622 436668 10698 1 951 2025-03-13 16:12:06.721 2025-03-13 16:12:06.721 436523 13622 436529 9551 1 952 2025-03-13 18:09:51.749 2025-03-13 18:09:51.749 436523 13622 436620 14152 1 953 2025-03-13 18:16:28.761 2025-03-13 18:16:28.761 436523 13622 436628 21427 2 954 2025-03-13 18:16:49.116 2025-03-13 18:16:49.116 436523 13622 436629 9378 1 955 2025-03-13 18:25:45.162 2025-03-13 18:25:45.162 436523 13622 436635 15045 2 956 2025-03-05 18:27:03.218 2025-03-05 18:27:03.218 426354 2056 426637 9438 1 957 2025-03-29 07:19:56.046 2025-03-29 07:19:56.046 458295 3729 458301 6421 1 958 2025-03-23 01:04:01.241 2025-03-23 01:04:01.241 448819 7899 448911 11263 1 959 2025-03-23 01:15:25.392 2025-03-23 01:15:25.392 448819 7899 448922 1638 2 960 2025-02-20 15:23:01.122 2025-02-20 15:23:01.122 410531 13622 410631 1429 1 961 2025-03-23 00:43:03.044 2025-03-23 00:43:03.044 448879 1411 448889 10698 2 962 2025-03-23 00:32:52.363 2025-03-23 00:32:52.363 448879 1411 448884 981 1 963 2025-03-24 13:39:16.938 2025-03-24 13:39:16.938 451299 8998 451302 699 1 964 2025-03-23 19:59:00.019 2025-03-23 19:59:00.019 450231 9183 450243 14607 2 965 2025-03-23 19:54:26.029 2025-03-23 19:54:26.029 450231 9183 450237 17519 1 966 2025-03-23 19:59:00.019 2025-03-23 19:59:00.019 450221 18473 450243 14607 3 967 2025-03-23 19:54:26.029 2025-03-23 19:54:26.029 450221 18473 450237 17519 2 968 2025-03-23 19:48:55.729 2025-03-23 19:48:55.729 450221 18473 450231 9183 1 969 2025-02-20 15:26:07.483 2025-02-20 15:26:07.483 410635 6360 410637 10302 1 970 2025-02-20 15:29:21.329 2025-02-20 15:29:21.329 410635 6360 410648 8648 1 971 2025-03-23 19:33:32.871 2025-03-23 19:33:32.871 450186 14370 450210 18468 1 972 2025-03-24 14:06:16.394 2025-03-24 14:06:16.394 432817 1047 451346 8059 4 973 2025-03-24 13:52:30.798 2025-03-24 13:52:30.798 432817 1047 451324 16680 1 974 2025-03-24 13:58:29.486 2025-03-24 13:58:29.486 432817 1047 451330 739 2 975 2025-03-24 14:03:39.057 2025-03-24 14:03:39.057 432817 1047 451340 18923 3 976 2025-02-14 00:27:19.014 2025-02-14 00:27:19.014 402565 20802 402739 21047 2 977 2025-02-13 20:39:02.822 2025-02-13 20:39:02.822 402565 20802 402578 13038 1 978 2025-03-29 06:26:25.432 2025-03-29 06:26:25.432 458150 21494 458255 7667 2 979 2025-03-29 02:46:44.358 2025-03-29 02:46:44.358 458150 21494 458160 18306 1 980 2025-03-29 03:55:02.778 2025-03-29 03:55:02.778 458150 21494 458177 4395 3 981 2025-03-29 02:27:58.288 2025-03-29 02:27:58.288 458150 21494 458156 20062 1 982 2025-03-29 03:32:35.473 2025-03-29 03:32:35.473 458150 21494 458169 21833 2 983 2025-03-29 04:04:08.662 2025-03-29 04:04:08.662 458150 21494 458178 909 4 984 2025-03-15 04:14:19.91 2025-03-15 04:14:19.91 437967 16447 437971 9969 1 985 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416934 17533 416938 11263 2 986 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416934 17533 416939 7773 3 987 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416934 17533 416935 21416 1 988 2025-03-12 16:37:54.738 2025-03-12 16:37:54.738 433194 929 435387 5112 1 989 2025-03-13 00:51:56.809 2025-03-13 00:51:56.809 433194 929 435780 679 2 990 2025-03-19 05:28:47.305 2025-03-19 05:28:47.305 442848 20911 443158 20245 1 991 2025-03-19 10:11:01.75 2025-03-19 10:11:01.75 442848 20911 443382 1030 1 992 2025-03-04 00:09:39.636 2025-03-04 00:09:39.636 424285 19777 424294 5069 1 993 2025-03-04 00:17:25.557 2025-03-04 00:17:25.557 424285 19777 424299 21373 2 994 2025-03-04 00:35:42.2 2025-03-04 00:35:42.2 424285 19777 424310 2013 5 995 2025-03-04 00:32:34.079 2025-03-04 00:32:34.079 424285 19777 424306 2342 4 996 2025-03-04 00:19:31.903 2025-03-04 00:19:31.903 424285 19777 424300 20754 3 997 2025-03-29 06:35:43.892 2025-03-29 06:35:43.892 458073 14489 458261 19943 1 998 2025-03-04 03:18:54.63 2025-03-04 03:18:54.63 424309 5806 424383 12278 1 999 2025-03-04 03:20:02.745 2025-03-04 03:20:02.745 424309 5806 424384 7891 2 1000 2025-03-24 13:35:49.039 2025-03-24 13:35:49.039 451292 13406 451297 19502 2 1001 2025-03-24 13:34:28.113 2025-03-24 13:34:28.113 451292 13406 451293 2285 1 1002 2025-03-24 14:25:48.263 2025-03-24 14:25:48.263 451292 13406 451379 1803 1 1003 2025-03-24 13:46:05.697 2025-03-24 13:46:05.697 451292 13406 451313 12562 1 1004 2025-03-13 10:28:20.548 2025-03-13 10:28:20.548 436110 20479 436111 3347 1 1005 2025-03-24 14:26:21.329 2025-03-24 14:26:21.329 451356 18500 451380 8498 1 1006 2025-03-24 14:09:03.815 2025-03-24 14:09:03.815 450625 9307 451354 18231 1 1007 2025-03-04 00:37:03.365 2025-03-04 00:37:03.365 424283 15049 424312 19016 1 1008 2025-03-24 13:44:32.773 2025-03-24 13:44:32.773 450988 2722 451312 9796 1 1009 2025-03-24 13:44:32.773 2025-03-24 13:44:32.773 448097 5519 451312 9796 2 1010 2025-03-24 10:37:23.257 2025-03-24 10:37:23.257 448097 5519 450988 2722 1 1011 2025-03-24 14:02:14.99 2025-03-24 14:02:14.99 450814 19930 451336 21833 1 1012 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416935 21416 416938 11263 1 1013 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416935 21416 416939 7773 2 1014 2025-03-04 00:38:44.868 2025-03-04 00:38:44.868 424298 20502 424314 19463 1 1015 2025-03-18 10:29:00.924 2025-03-18 10:29:00.924 441837 21688 441849 11523 2 1016 2025-03-18 10:37:08.701 2025-03-18 10:37:08.701 441837 21688 441855 782 3 1017 2025-03-18 10:25:06.303 2025-03-18 10:25:06.303 441837 21688 441841 713 1 1018 2025-03-13 10:27:12.671 2025-03-13 10:27:12.671 436097 19263 436108 18618 1 1019 2025-03-13 10:28:32.121 2025-03-13 10:28:32.121 436097 19263 436112 929 2 1020 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416881 16830 416938 11263 4 1021 2025-02-25 23:30:50.251 2025-02-25 23:30:50.251 416881 16830 416934 17533 2 1022 2025-02-25 23:15:32.556 2025-02-25 23:15:32.556 416881 16830 416929 19821 1 1023 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416881 16830 416939 7773 5 1024 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416881 16830 416935 21416 3 1025 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416929 19821 416938 11263 3 1026 2025-02-25 23:30:50.251 2025-02-25 23:30:50.251 416929 19821 416934 17533 1 1027 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416929 19821 416939 7773 4 1028 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416929 19821 416935 21416 2 1029 2025-02-25 23:46:34.741 2025-02-25 23:46:34.741 416940 897 416942 16704 1 1030 2025-03-17 17:55:53.902 2025-03-17 17:55:53.902 440869 17014 441033 13406 1 1031 2025-03-09 15:09:35.38 2025-03-09 15:09:35.38 425571 21003 431022 19524 1 1032 2025-02-15 23:24:34.563 2025-02-15 23:24:34.563 404498 19512 404499 18637 1 1033 2025-03-29 05:24:29.289 2025-03-29 05:24:29.289 458198 21271 458199 2460 1 1034 2025-03-29 07:01:46.341 2025-03-29 07:01:46.341 458198 21271 458285 16912 1 1035 2025-03-09 15:10:02.485 2025-03-09 15:10:02.485 424855 1092 431024 21051 1 1036 2025-03-09 15:10:05.551 2025-03-09 15:10:05.551 424832 21044 431025 5036 1 1037 2025-03-09 15:10:08.232 2025-03-09 15:10:08.232 424703 13162 431026 5637 1 1038 2025-03-09 15:10:15.24 2025-03-09 15:10:15.24 424448 13042 431029 21254 1 1039 2025-03-09 15:10:17.884 2025-03-09 15:10:17.884 424355 8998 431030 7125 1 1040 2025-03-18 14:27:08.832 2025-03-18 14:27:08.832 442333 17570 442355 622 1 1041 2025-03-22 15:58:59.701 2025-03-22 15:58:59.701 448454 20754 448458 16149 1 1042 2025-03-04 00:51:25.925 2025-03-04 00:51:25.925 424307 2583 424328 21825 2 1043 2025-03-04 00:56:49.401 2025-03-04 00:56:49.401 424307 2583 424331 4074 3 1044 2025-03-04 02:13:03.468 2025-03-04 02:13:03.468 424307 2583 424348 20179 2 1045 2025-03-04 00:41:48.656 2025-03-04 00:41:48.656 424307 2583 424319 21804 1 1046 2025-03-09 15:10:26.104 2025-03-09 15:10:26.104 423909 20479 431033 21672 1 1047 2025-03-09 15:10:11.578 2025-03-09 15:10:11.578 424652 21349 431027 12245 1 1048 2025-03-20 02:07:31.874 2025-03-20 02:07:31.874 444447 1286 444551 8376 1 1049 2025-03-29 05:51:42.88 2025-03-29 05:51:42.88 458210 17682 458229 18188 3 1050 2025-03-29 06:09:18.722 2025-03-29 06:09:18.722 458210 17682 458239 17050 7 1051 2025-03-29 05:50:27.72 2025-03-29 05:50:27.72 458210 17682 458226 660 2 1052 2025-03-29 05:56:41.168 2025-03-29 05:56:41.168 458210 17682 458230 681 4 1053 2025-03-29 06:03:38.574 2025-03-29 06:03:38.574 458210 17682 458234 1389 5 1054 2025-03-29 05:46:40.786 2025-03-29 05:46:40.786 458210 17682 458218 749 1 1055 2025-03-29 05:48:57.704 2025-03-29 05:48:57.704 458210 17682 458223 20734 1 1056 2025-03-29 06:07:30.702 2025-03-29 06:07:30.702 458210 17682 458236 21427 6 1057 2025-03-23 17:42:06.091 2025-03-23 17:42:06.091 450006 21014 450019 18116 2 1058 2025-03-23 19:07:02.124 2025-03-23 19:07:02.124 450006 21014 450117 859 3 1059 2025-03-23 17:29:10.7 2025-03-23 17:29:10.7 450006 21014 450008 14168 1 1060 2025-03-23 19:37:55.871 2025-03-23 19:37:55.871 450006 21014 450217 15336 4 1061 2025-03-29 06:09:18.722 2025-03-29 06:09:18.722 458234 1389 458239 17050 2 1062 2025-03-29 06:07:30.702 2025-03-29 06:07:30.702 458234 1389 458236 21427 1 1063 2025-03-19 19:54:34.338 2025-03-19 19:54:34.338 444121 2492 444341 2206 1 1064 2025-03-29 05:51:42.88 2025-03-29 05:51:42.88 458226 660 458229 18188 1 1065 2025-03-29 06:09:18.722 2025-03-29 06:09:18.722 458226 660 458239 17050 5 1066 2025-03-29 05:56:41.168 2025-03-29 05:56:41.168 458226 660 458230 681 2 1067 2025-03-29 06:03:38.574 2025-03-29 06:03:38.574 458226 660 458234 1389 3 1068 2025-03-29 06:07:30.702 2025-03-29 06:07:30.702 458226 660 458236 21427 4 1069 2025-03-29 05:51:42.88 2025-03-29 05:51:42.88 458188 18637 458229 18188 4 1070 2025-03-29 06:09:18.722 2025-03-29 06:09:18.722 458188 18637 458239 17050 8 1071 2025-03-29 05:50:27.72 2025-03-29 05:50:27.72 458188 18637 458226 660 3 1072 2025-03-29 05:39:24.205 2025-03-29 05:39:24.205 458188 18637 458210 17682 1 1073 2025-03-29 05:56:41.168 2025-03-29 05:56:41.168 458188 18637 458230 681 5 1074 2025-03-29 06:03:38.574 2025-03-29 06:03:38.574 458188 18637 458234 1389 6 1075 2025-03-29 05:46:40.786 2025-03-29 05:46:40.786 458188 18637 458218 749 2 1076 2025-03-29 05:48:57.704 2025-03-29 05:48:57.704 458188 18637 458223 20734 2 1077 2025-03-29 06:07:30.702 2025-03-29 06:07:30.702 458188 18637 458236 21427 7 1078 2025-03-04 00:35:42.2 2025-03-04 00:35:42.2 424306 2342 424310 2013 1 1079 2025-03-04 00:35:42.2 2025-03-04 00:35:42.2 424299 21373 424310 2013 3 1080 2025-03-04 00:32:34.079 2025-03-04 00:32:34.079 424299 21373 424306 2342 2 1081 2025-03-04 00:19:31.903 2025-03-04 00:19:31.903 424299 21373 424300 20754 1 1082 2025-03-04 00:35:42.2 2025-03-04 00:35:42.2 424300 20754 424310 2013 2 1083 2025-03-04 00:32:34.079 2025-03-04 00:32:34.079 424300 20754 424306 2342 1 1084 2025-03-15 04:28:54.278 2025-03-15 04:28:54.278 437855 4378 437975 14370 1 1085 2025-03-19 18:23:00.679 2025-03-19 18:23:00.679 443352 12976 444231 7097 2 1086 2025-03-19 09:54:21.973 2025-03-19 09:54:21.973 443352 12976 443368 14785 1 1087 2025-02-16 00:39:53.202 2025-02-16 00:39:53.202 402191 7818 404537 20381 1 1088 2025-03-04 00:51:25.925 2025-03-04 00:51:25.925 424319 21804 424328 21825 1 1089 2025-03-04 00:56:49.401 2025-03-04 00:56:49.401 424319 21804 424331 4074 2 1090 2025-03-04 02:13:03.468 2025-03-04 02:13:03.468 424319 21804 424348 20179 1 1091 2025-03-29 05:47:41.045 2025-03-29 05:47:41.045 458221 2724 458222 16543 1 1092 2025-03-08 23:26:31.134 2025-03-08 23:26:31.134 430039 769 430200 21518 1 1093 2025-03-04 01:36:27.917 2025-03-04 01:36:27.917 424330 10291 424340 13553 1 1094 2025-03-20 01:47:06.044 2025-03-20 01:47:06.044 444537 8926 444545 13599 1 1095 2025-02-16 00:38:11.791 2025-02-16 00:38:11.791 404398 6361 404529 21805 1 1096 2025-02-16 00:39:36.464 2025-02-16 00:39:36.464 402193 5590 404536 7395 1 1097 2025-02-20 15:14:37.746 2025-02-20 15:14:37.746 410247 21804 410623 746 1 1098 2025-02-25 23:11:16.707 2025-02-25 23:11:16.707 415850 631 416921 661 1 1099 2025-02-14 16:01:20.329 2025-02-14 16:01:20.329 403228 13544 403260 20980 3 1100 2025-02-14 15:18:57.097 2025-02-14 15:18:57.097 403228 13544 403237 1039 1 1101 2025-02-14 15:26:29.929 2025-02-14 15:26:29.929 403228 13544 403240 9496 2 1102 2025-02-14 16:03:33.36 2025-02-14 16:03:33.36 403228 13544 403263 11165 4 1103 2025-03-09 15:12:00.426 2025-03-09 15:12:00.426 419641 12566 431046 20969 1 1104 2025-03-09 15:12:08.187 2025-03-09 15:12:08.187 419062 18423 431048 16679 1 1105 2025-02-15 22:16:11.777 2025-02-15 22:16:11.777 404421 21804 404459 6361 2 1106 2025-02-15 21:46:20.163 2025-02-15 21:46:20.163 404421 21804 404434 21356 1 1107 2025-02-15 22:16:11.777 2025-02-15 22:16:11.777 404192 12744 404459 6361 3 1108 2025-02-15 21:26:29.63 2025-02-15 21:26:29.63 404192 12744 404421 21804 1 1109 2025-02-15 21:46:20.163 2025-02-15 21:46:20.163 404192 12744 404434 21356 2 1110 2025-02-15 22:16:11.777 2025-02-15 22:16:11.777 404189 20377 404459 6361 4 1111 2025-02-15 21:26:29.63 2025-02-15 21:26:29.63 404189 20377 404421 21804 2 1112 2025-02-15 21:46:20.163 2025-02-15 21:46:20.163 404189 20377 404434 21356 3 1113 2025-02-15 16:15:38.842 2025-02-15 16:15:38.842 404189 20377 404192 12744 1 1114 2025-02-14 16:03:33.36 2025-02-14 16:03:33.36 403260 20980 403263 11165 1 1115 2025-02-23 12:28:31.916 2025-02-23 12:28:31.916 413550 4259 413667 2111 1 1116 2025-02-20 15:28:41.412 2025-02-20 15:28:41.412 410645 2233 410646 14037 1 1117 2025-02-20 15:16:45.56 2025-02-20 15:16:45.56 409999 16954 410626 9348 2 1118 2025-02-20 11:30:02.28 2025-02-20 11:30:02.28 409999 16954 410235 18525 1 1119 2025-03-09 15:12:27.683 2025-03-09 15:12:27.683 417971 1567 431054 20280 1 1120 2025-03-29 07:42:42.56 2025-03-29 07:42:42.56 458313 11038 458316 20715 1 1121 2025-03-29 07:48:23.728 2025-03-29 07:48:23.728 458313 11038 458320 2963 2 1122 2025-02-23 08:35:07.431 2025-02-23 08:35:07.431 413473 4958 413475 11165 1 1123 2025-03-01 10:35:56.363 2025-03-01 10:35:56.363 420888 5520 420994 7966 2 1124 2025-03-01 15:06:28.347 2025-03-01 15:06:28.347 420888 5520 421291 13517 1 1125 2025-03-01 09:49:15.124 2025-03-01 09:49:15.124 420888 5520 420949 16149 1 1126 2025-03-01 14:47:57.878 2025-03-01 14:47:57.878 420888 5520 421268 20599 1 1127 2025-03-01 15:08:27.311 2025-03-01 15:08:27.311 420888 5520 421298 19826 2 1128 2025-03-01 15:10:20.68 2025-03-01 15:10:20.68 420888 5520 421303 19863 2 1129 2025-03-01 15:08:21.741 2025-03-01 15:08:21.741 420888 5520 421297 21455 3 1130 2025-03-01 10:05:12.6 2025-03-01 10:05:12.6 420888 5520 420966 1261 1 1131 2025-03-01 15:13:57.081 2025-03-01 15:13:57.081 420888 5520 421308 20646 2 1132 2025-02-13 18:58:07.303 2025-02-13 18:58:07.303 402475 9356 402480 16289 1 1133 2025-03-09 14:24:39.009 2025-03-09 14:24:39.009 430934 9655 430945 17535 1 1134 2025-03-09 15:17:35.322 2025-03-09 15:17:35.322 430934 9655 431073 4115 1 1135 2025-02-13 09:39:54.94 2025-02-13 09:39:54.94 401519 14705 401652 2459 1 1136 2025-03-29 07:11:30.551 2025-03-29 07:11:30.551 458172 19121 458293 9916 1 1137 2025-03-29 07:40:26.461 2025-03-29 07:40:26.461 458172 19121 458312 20062 1 1138 2025-03-09 15:15:40.513 2025-03-09 15:15:40.513 431004 14857 431068 787 1 1139 2025-02-23 15:23:47.029 2025-02-23 15:23:47.029 414002 21810 414023 766 1 1140 2025-02-16 00:49:36.599 2025-02-16 00:49:36.599 404513 6393 404554 1429 1 1141 2025-03-24 14:22:13.873 2025-03-24 14:22:13.873 451365 9655 451373 1221 1 1142 2025-02-20 15:28:06.102 2025-02-20 15:28:06.102 410604 1092 410643 20816 1 1143 2025-03-12 14:08:49.3 2025-03-12 14:08:49.3 434952 14515 435176 9982 1 1144 2025-03-09 15:12:18.025 2025-03-09 15:12:18.025 418438 21805 431050 21058 1 1145 2025-03-20 02:12:43.094 2025-03-20 02:12:43.094 443790 5703 444553 1490 1 1146 2025-03-09 15:12:43.854 2025-03-09 15:12:43.854 417376 1428 431061 21514 1 1147 2025-02-26 10:52:35.984 2025-02-26 10:52:35.984 417376 1428 417389 7913 1 1148 2025-03-09 15:13:20.064 2025-03-09 15:13:20.064 417331 5003 431064 701 1 1149 2025-03-04 02:58:07.575 2025-03-04 02:58:07.575 424362 12291 424366 20152 1 1150 2025-03-15 06:29:23.992 2025-03-15 06:29:23.992 437993 5746 438026 18351 1 1151 2025-03-27 08:35:57.214 2025-03-27 08:35:57.214 455628 20811 455638 11829 2 1152 2025-03-27 08:33:21.069 2025-03-27 08:33:21.069 455628 20811 455632 1433 1 1153 2025-03-27 09:56:02.43 2025-03-27 09:56:02.43 450145 685 455751 708 1 1154 2025-03-29 06:21:21.651 2025-03-29 06:21:21.651 458237 20717 458249 10311 4 1155 2025-03-29 06:14:59.098 2025-03-29 06:14:59.098 458237 20717 458242 7869 1 1156 2025-03-29 06:16:48.232 2025-03-29 06:16:48.232 458237 20717 458243 6335 2 1157 2025-03-29 06:18:14.367 2025-03-29 06:18:14.367 458237 20717 458244 666 3 1158 2025-03-29 07:53:37.712 2025-03-29 07:53:37.712 458237 20717 458330 14607 2 1159 2025-03-29 06:21:21.651 2025-03-29 06:21:21.651 458242 7869 458249 10311 3 1160 2025-03-29 06:16:48.232 2025-03-29 06:16:48.232 458242 7869 458243 6335 1 1161 2025-03-29 06:18:14.367 2025-03-29 06:18:14.367 458242 7869 458244 666 2 1162 2025-03-29 07:53:37.712 2025-03-29 07:53:37.712 458242 7869 458330 14607 1 1163 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 424009 20337 424408 12049 11 1164 2025-03-03 20:31:56.013 2025-03-03 20:31:56.013 424009 20337 424099 15060 6 1165 2025-03-03 19:52:36.539 2025-03-03 19:52:36.539 424009 20337 424049 8245 3 1166 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 424009 20337 424401 14990 8 1167 2025-03-03 19:39:46.836 2025-03-03 19:39:46.836 424009 20337 424037 18901 2 1168 2025-03-03 20:28:10.099 2025-03-03 20:28:10.099 424009 20337 424094 21734 5 1169 2025-03-03 19:24:31.174 2025-03-03 19:24:31.174 424009 20337 424015 1454 1 1170 2025-03-03 20:19:40.617 2025-03-03 20:19:40.617 424009 20337 424082 9337 4 1171 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 424009 20337 424382 18743 7 1172 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 424009 20337 424403 21263 9 1173 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 424009 20337 424405 844 10 1174 2025-03-09 14:00:09.153 2025-03-09 14:00:09.153 430891 6191 430907 732 2 1175 2025-03-09 15:18:29.119 2025-03-09 15:18:29.119 430891 6191 431077 21349 1 1176 2025-03-09 15:20:17.596 2025-03-09 15:20:17.596 430891 6191 431084 678 2 1177 2025-03-09 13:46:49.582 2025-03-09 13:46:49.582 430891 6191 430894 20157 1 1178 2025-03-04 00:08:07.998 2025-03-04 00:08:07.998 424288 19581 424292 19094 1 1179 2025-03-04 02:47:46.905 2025-03-04 02:47:46.905 424288 19581 424360 3642 1 1180 2025-03-27 09:20:47.788 2025-03-27 09:20:47.788 455665 9307 455714 11798 2 1181 2025-03-27 09:03:35.754 2025-03-27 09:03:35.754 455665 9307 455682 7119 1 1182 2025-03-27 09:26:13.367 2025-03-27 09:26:13.367 455665 9307 455720 9494 3 1183 2025-03-27 09:10:00.923 2025-03-27 09:10:00.923 455665 9307 455694 16970 2 1184 2025-03-27 09:35:37.366 2025-03-27 09:35:37.366 455665 9307 455732 5112 4 1185 2025-03-27 09:16:12.762 2025-03-27 09:16:12.762 455665 9307 455706 20117 3 1186 2025-02-20 14:58:35.54 2025-02-20 14:58:35.54 410593 6260 410596 16513 1 1187 2025-03-01 16:29:15.582 2025-03-01 16:29:15.582 421025 21103 421427 14503 1 1188 2025-03-18 19:18:39.347 2025-03-18 19:18:39.347 441502 6717 442748 6555 1 1189 2025-03-01 15:21:40.145 2025-03-01 15:21:40.145 421206 14731 421320 14168 1 1190 2025-03-01 15:55:01.354 2025-03-01 15:55:01.354 421206 14731 421370 19826 2 1191 2025-03-13 13:12:49.175 2025-03-13 13:12:49.175 436306 1745 436313 9356 1 1192 2025-03-27 03:41:37.289 2025-03-27 03:41:37.289 455422 2195 455485 1469 1 1193 2025-03-27 08:38:13.205 2025-03-27 08:38:13.205 455422 2195 455641 20059 1 1194 2025-03-06 22:47:41.486 2025-03-06 22:47:41.486 428166 5293 428167 3342 1 1195 2025-03-04 03:20:02.745 2025-03-04 03:20:02.745 424383 12278 424384 7891 1 1196 2025-03-13 10:43:54.516 2025-03-13 10:43:54.516 436121 902 436131 9339 1 1197 2025-03-09 15:20:15.121 2025-03-09 15:20:15.121 431040 11862 431083 21202 1 1198 2025-03-09 15:27:38.384 2025-03-09 15:27:38.384 415726 713 431096 20434 1 1199 2025-03-29 08:23:34.864 2025-03-29 08:23:34.864 458357 3745 458363 21383 1 1200 2025-03-20 03:10:16.14 2025-03-20 03:10:16.14 444481 12188 444578 17237 1 1201 2025-03-20 01:17:33.607 2025-03-20 01:17:33.607 444526 9026 444530 6594 1 1202 2025-03-20 01:15:30.49 2025-03-20 01:15:30.49 444526 9026 444528 670 1 1203 2025-03-20 01:26:38.976 2025-03-20 01:26:38.976 444526 9026 444535 20858 1 1204 2025-03-13 07:29:22.738 2025-03-13 07:29:22.738 435944 11498 435975 16847 3 1205 2025-03-13 07:10:08.908 2025-03-13 07:10:08.908 435944 11498 435967 16653 1 1206 2025-03-13 10:01:23.475 2025-03-13 10:01:23.475 435944 11498 436087 21048 3 1207 2025-03-13 10:45:29.974 2025-03-13 10:45:29.974 435944 11498 436133 1173 2 1208 2025-03-13 08:22:26.177 2025-03-13 08:22:26.177 435944 11498 436013 15662 2 1209 2025-03-13 07:59:18.305 2025-03-13 07:59:18.305 435944 11498 436000 19570 1 1210 2025-03-13 10:05:18.826 2025-03-13 10:05:18.826 435944 11498 436090 19394 1 1211 2025-03-13 07:26:04.265 2025-03-13 07:26:04.265 435944 11498 435973 15045 1 1212 2025-03-13 07:34:31.722 2025-03-13 07:34:31.722 435944 11498 435979 822 1 1213 2025-03-13 08:22:12.692 2025-03-13 08:22:12.692 435944 11498 436012 7185 2 1214 2025-03-13 08:29:49.893 2025-03-13 08:29:49.893 435944 11498 436018 15243 3 1215 2025-03-13 08:32:31.47 2025-03-13 08:32:31.47 435944 11498 436020 21578 3 1216 2025-03-13 10:18:28.883 2025-03-13 10:18:28.883 435944 11498 436102 738 1 1217 2025-03-13 10:49:30.493 2025-03-13 10:49:30.493 435944 11498 436139 20523 4 1218 2025-03-13 11:12:34.727 2025-03-13 11:12:34.727 435944 11498 436170 5500 3 1219 2025-03-13 19:51:00.187 2025-03-13 19:51:00.187 435944 11498 436701 9351 3 1220 2025-03-13 06:16:44.668 2025-03-13 06:16:44.668 435944 11498 435948 21269 1 1221 2025-03-13 06:24:38.042 2025-03-13 06:24:38.042 435944 11498 435950 1615 1 1222 2025-03-13 06:25:20.558 2025-03-13 06:25:20.558 435944 11498 435951 10490 2 1223 2025-03-13 07:24:59.757 2025-03-13 07:24:59.757 435944 11498 435972 9183 2 1224 2025-03-13 10:44:07.676 2025-03-13 10:44:07.676 435944 11498 436132 4763 4 1225 2025-03-13 07:22:51.447 2025-03-13 07:22:51.447 435944 11498 435971 4259 2 1226 2025-03-13 07:55:24.74 2025-03-13 07:55:24.74 435944 11498 435997 18017 3 1227 2025-03-13 08:05:34.035 2025-03-13 08:05:34.035 435944 11498 436003 16456 2 1228 2025-03-13 07:55:46.164 2025-03-13 07:55:46.164 435944 11498 435998 11862 1 1229 2025-03-13 10:40:25.849 2025-03-13 10:40:25.849 435944 11498 436127 20551 2 1230 2025-03-14 12:23:51.959 2025-03-14 12:23:51.959 435944 11498 437275 14909 1 1231 2025-03-13 10:43:27.067 2025-03-13 10:43:27.067 435944 11498 436130 6268 2 1232 2025-03-13 10:53:07.824 2025-03-13 10:53:07.824 435944 11498 436146 20987 5 1233 2025-03-13 10:55:08.702 2025-03-13 10:55:08.702 435944 11498 436148 736 3 1234 2025-03-13 11:03:09 2025-03-13 11:03:09 435944 11498 436159 16929 1 1235 2025-03-13 11:13:24.257 2025-03-13 11:13:24.257 435944 11498 436172 1617 2 1236 2025-02-25 18:46:31.013 2025-02-25 18:46:31.013 416484 671 416661 14650 1 1237 2025-03-13 10:32:41.286 2025-03-13 10:32:41.286 435832 21408 436118 20337 1 1238 2025-03-13 03:46:09.41 2025-03-13 03:46:09.41 435803 16695 435872 16282 1 1239 2025-03-23 01:18:12.868 2025-03-23 01:18:12.868 448919 676 448923 987 1 1240 2025-03-23 01:19:19.526 2025-03-23 01:19:19.526 448882 897 448926 2776 1 1241 2025-02-20 15:34:42.932 2025-02-20 15:34:42.932 410644 1515 410660 1584 1 1242 2025-03-23 17:52:58.198 2025-03-23 17:52:58.198 449630 726 450040 10608 7 1243 2025-03-23 14:48:32.041 2025-03-23 14:48:32.041 449630 726 449806 15148 1 1244 2025-03-23 17:29:39.175 2025-03-23 17:29:39.175 449630 726 450010 9339 4 1245 2025-03-23 17:12:03.461 2025-03-23 17:12:03.461 449630 726 449998 4654 2 1246 2025-03-23 16:06:01.594 2025-03-23 16:06:01.594 449630 726 449920 8269 3 1247 2025-03-23 18:58:28.705 2025-03-23 18:58:28.705 449630 726 450109 675 9 1248 2025-03-23 16:00:01.073 2025-03-23 16:00:01.073 449630 726 449910 20137 2 1249 2025-03-23 15:40:23.74 2025-03-23 15:40:23.74 449630 726 449881 7891 1 1250 2025-03-23 17:51:47.089 2025-03-23 17:51:47.089 449630 726 450039 17673 6 1251 2025-03-23 18:23:55.978 2025-03-23 18:23:55.978 449630 726 450067 21159 8 1252 2025-03-23 17:38:33.489 2025-03-23 17:38:33.489 449630 726 450014 2620 5 1253 2025-03-27 09:16:12.762 2025-03-27 09:16:12.762 455694 16970 455706 20117 1 1254 2025-03-09 15:27:24.189 2025-03-09 15:27:24.189 417088 21523 431091 19459 1 1255 2025-03-09 15:27:41.356 2025-03-09 15:27:41.356 415445 21202 431097 20117 1 1256 2025-03-26 15:15:21.779 2025-03-26 15:15:21.779 454716 10096 454740 19863 1 1257 2025-03-27 03:45:03.108 2025-03-27 03:45:03.108 455221 13878 455487 17741 1 1258 2025-03-15 06:47:39.637 2025-03-15 06:47:39.637 438034 2088 438035 15491 1 1259 2025-02-20 15:35:28.699 2025-02-20 15:35:28.699 410653 1761 410662 15243 1 1260 2025-02-20 15:20:15.982 2025-02-20 15:20:15.982 410601 10731 410628 2724 1 1261 2025-02-20 15:44:33.76 2025-02-20 15:44:33.76 410601 10731 410675 8726 2 1262 2025-02-20 15:44:33.76 2025-02-20 15:44:33.76 410628 2724 410675 8726 1 1263 2025-02-26 02:31:41.321 2025-02-26 02:31:41.321 417005 20606 417031 7966 1 1264 2025-03-09 15:27:26.909 2025-03-09 15:27:26.909 417005 20606 431092 617 1 1265 2025-02-26 02:33:14.078 2025-02-26 02:33:14.078 416547 17708 417035 19813 1 1266 2025-03-09 15:27:33.996 2025-03-09 15:27:33.996 416547 17708 431094 17103 1 1267 2025-02-16 01:52:42.394 2025-02-16 01:52:42.394 404332 9845 404600 19217 4 1268 2025-02-16 00:43:36.491 2025-02-16 00:43:36.491 404332 9845 404546 16562 3 1269 2025-02-15 19:22:43.418 2025-02-15 19:22:43.418 404332 9845 404334 16059 1 1270 2025-02-15 21:08:46.209 2025-02-15 21:08:46.209 404332 9845 404411 20616 2 1271 2025-02-16 01:52:42.394 2025-02-16 01:52:42.394 404411 20616 404600 19217 2 1272 2025-02-16 00:43:36.491 2025-02-16 00:43:36.491 404411 20616 404546 16562 1 1273 2025-03-09 15:27:51.219 2025-03-09 15:27:51.219 413743 17568 431101 21451 1 1274 2025-02-16 01:52:42.394 2025-02-16 01:52:42.394 404546 16562 404600 19217 1 1275 2025-03-09 15:28:00.078 2025-03-09 15:28:00.078 413462 21349 431105 20881 1 1276 2025-03-29 08:09:42.3 2025-03-29 08:09:42.3 458341 8989 458342 5758 1 1277 2025-03-29 08:23:34.864 2025-03-29 08:23:34.864 458341 8989 458363 21383 3 1278 2025-03-29 08:19:53.331 2025-03-29 08:19:53.331 458341 8989 458357 3745 2 1279 2025-03-13 14:51:31.688 2025-03-13 14:51:31.688 435922 15196 436419 17209 2 1280 2025-03-13 06:58:13.082 2025-03-13 06:58:13.082 435922 15196 435962 12097 1 1281 2025-03-13 14:49:26.924 2025-03-13 14:49:26.924 435922 15196 436416 20073 1 1282 2025-03-13 06:58:38.334 2025-03-13 06:58:38.334 435922 15196 435963 15049 2 1283 2025-02-16 01:58:30.068 2025-02-16 01:58:30.068 404366 21805 404602 21079 1 1284 2025-03-29 08:23:34.864 2025-03-29 08:23:34.864 458342 5758 458363 21383 2 1285 2025-03-29 08:19:53.331 2025-03-29 08:19:53.331 458342 5758 458357 3745 1 1286 2025-03-09 15:28:02.987 2025-03-09 15:28:02.987 413410 15941 431106 21178 1 1287 2025-03-09 15:28:05.596 2025-03-09 15:28:05.596 413332 5175 431107 8472 1 1288 2025-03-09 15:20:17.596 2025-03-09 15:20:17.596 431077 21349 431084 678 1 1289 2025-03-12 07:53:04.805 2025-03-12 07:53:04.805 433833 8544 434746 1064 1 1290 2025-03-20 03:20:07.696 2025-03-20 03:20:07.696 433833 8544 444585 736 1 1291 2025-03-11 15:22:35.906 2025-03-11 15:22:35.906 433833 8544 434048 21063 3 1292 2025-03-12 02:38:27.104 2025-03-12 02:38:27.104 433833 8544 434547 21379 1 1293 2025-03-12 05:39:27.975 2025-03-12 05:39:27.975 433833 8544 434661 712 1 1294 2025-03-12 08:24:53.758 2025-03-12 08:24:53.758 433833 8544 434777 9863 2 1295 2025-03-12 12:37:37.711 2025-03-12 12:37:37.711 433833 8544 435055 8037 1 1296 2025-03-11 15:16:37.353 2025-03-11 15:16:37.353 433833 8544 434039 1585 2 1297 2025-03-11 12:46:26.847 2025-03-11 12:46:26.847 433833 8544 433842 5497 1 1298 2025-03-11 12:57:45.061 2025-03-11 12:57:45.061 433833 8544 433849 1468 1 1299 2025-03-11 17:54:13.367 2025-03-11 17:54:13.367 433833 8544 434261 21555 1 1300 2025-03-12 00:40:32.566 2025-03-12 00:40:32.566 433833 8544 434491 8664 1 1301 2025-03-12 01:02:25.333 2025-03-12 01:02:25.333 433833 8544 434505 21402 1 1302 2025-03-12 08:21:55.063 2025-03-12 08:21:55.063 433833 8544 434771 7667 1 1303 2025-03-12 08:22:54.192 2025-03-12 08:22:54.192 433833 8544 434774 686 1 1304 2025-03-12 14:19:40.387 2025-03-12 14:19:40.387 433833 8544 435197 4798 2 1305 2025-03-11 13:55:39.713 2025-03-11 13:55:39.713 433833 8544 433901 21291 1 1306 2025-02-18 12:20:30.418 2025-02-18 12:20:30.418 407453 12779 407841 2056 1 1307 2025-03-28 22:08:14.287 2025-03-28 22:08:14.287 458032 7675 458036 9363 1 1308 2025-03-09 15:29:54.105 2025-03-09 15:29:54.105 410759 814 431120 5377 1 1309 2025-02-20 17:16:12.803 2025-02-20 17:16:12.803 410759 814 410777 20706 1 1310 2025-02-20 17:01:07.761 2025-02-20 17:01:07.761 410759 814 410761 1060 1 1311 2025-02-20 16:49:24.1 2025-02-20 16:49:24.1 410728 10280 410746 16543 1 1312 2025-03-09 15:29:56.855 2025-03-09 15:29:56.855 410728 10280 431121 9242 1 1313 2025-02-20 16:39:34.948 2025-02-20 16:39:34.948 410728 10280 410730 21766 1 1314 2025-02-20 16:47:14.312 2025-02-20 16:47:14.312 410728 10280 410741 5703 1 1315 2025-03-14 13:50:06.327 2025-03-14 13:50:06.327 437408 18321 437411 5779 1 1316 2025-03-14 13:56:59.927 2025-03-14 13:56:59.927 437408 18321 437417 19829 2 1317 2025-03-14 21:53:44.916 2025-03-14 21:53:44.916 437408 18321 437778 21022 4 1318 2025-03-14 14:05:19.842 2025-03-14 14:05:19.842 437408 18321 437427 1611 3 1319 2025-03-13 10:57:36.049 2025-03-13 10:57:36.049 435923 10944 436154 2577 1 1320 2025-03-29 08:12:23.852 2025-03-29 08:12:23.852 458340 8945 458348 6229 1 1321 2025-03-27 22:02:30.63 2025-03-27 22:02:30.63 456501 17953 456801 2206 1 1322 2025-03-02 21:23:28.903 2025-03-02 21:23:28.903 423005 929 423007 19842 1 1323 2025-03-02 21:25:24.096 2025-03-02 21:25:24.096 423005 929 423009 21401 2 1324 2025-03-15 07:20:29.918 2025-03-15 07:20:29.918 437698 10112 438042 17183 1 1325 2025-03-02 21:37:39.998 2025-03-02 21:37:39.998 422980 1213 423016 17838 1 1326 2025-02-20 15:08:52.131 2025-02-20 15:08:52.131 410583 8400 410608 2528 1 1327 2025-02-20 14:54:29.767 2025-02-20 14:54:29.767 410583 8400 410591 20956 1 1328 2025-03-19 09:04:34.295 2025-03-19 09:04:34.295 443312 13547 443322 20687 1 1329 2025-03-19 09:07:00.318 2025-03-19 09:07:00.318 443312 13547 443327 21063 2 1330 2025-03-19 12:36:42.659 2025-03-19 12:36:42.659 443312 13547 443599 630 1 1331 2025-03-19 12:42:13.704 2025-03-19 12:42:13.704 443312 13547 443615 18114 2 1332 2025-02-18 18:51:42.813 2025-02-18 18:51:42.813 408009 16808 408400 20198 1 1333 2025-03-14 07:24:17.734 2025-03-14 07:24:17.734 436829 1615 437020 17095 4 1334 2025-03-14 07:18:42.785 2025-03-14 07:18:42.785 436829 1615 437013 13398 3 1335 2025-03-14 02:00:29.969 2025-03-14 02:00:29.969 436829 1615 436900 19527 1 1336 2025-03-14 03:36:40.283 2025-03-14 03:36:40.283 436829 1615 436930 20924 2 1337 2025-03-14 22:16:06.584 2025-03-14 22:16:06.584 436829 1615 437794 8726 5 1338 2025-03-29 06:39:40.28 2025-03-29 06:39:40.28 458094 1802 458265 1394 1 1339 2025-03-19 10:51:49.825 2025-03-19 10:51:49.825 443427 6653 443429 21688 1 1340 2025-03-19 10:55:55.997 2025-03-19 10:55:55.997 443427 6653 443434 20137 2 1341 2025-03-19 10:59:53.321 2025-03-19 10:59:53.321 443427 6653 443440 20555 3 1342 2025-03-19 11:03:38.563 2025-03-19 11:03:38.563 443427 6653 443446 1512 4 1343 2025-03-18 13:11:32.035 2025-03-18 13:11:32.035 441712 4292 442157 2722 7 1344 2025-03-18 13:06:57.606 2025-03-18 13:06:57.606 441712 4292 442148 20187 6 1345 2025-03-18 09:19:10.999 2025-03-18 09:19:10.999 441712 4292 441750 20775 1 1346 2025-03-18 13:01:30.787 2025-03-18 13:01:30.787 441712 4292 442141 20254 5 1347 2025-03-18 12:57:46.826 2025-03-18 12:57:46.826 441712 4292 442135 16193 4 1348 2025-03-18 09:59:00.133 2025-03-18 09:59:00.133 441712 4292 441803 5708 3 1349 2025-03-18 09:57:28.221 2025-03-18 09:57:28.221 441712 4292 441801 20799 2 1350 2025-03-27 11:56:27.06 2025-03-27 11:56:27.06 455875 20669 455895 9655 1 1351 2025-03-23 17:52:58.198 2025-03-23 17:52:58.198 449881 7891 450040 10608 6 1352 2025-03-23 17:29:39.175 2025-03-23 17:29:39.175 449881 7891 450010 9339 3 1353 2025-03-23 17:51:47.089 2025-03-23 17:51:47.089 449881 7891 450039 17673 5 1354 2025-03-23 18:23:55.978 2025-03-23 18:23:55.978 449881 7891 450067 21159 7 1355 2025-03-23 17:38:33.489 2025-03-23 17:38:33.489 449881 7891 450014 2620 4 1356 2025-03-23 16:06:01.594 2025-03-23 16:06:01.594 449881 7891 449920 8269 2 1357 2025-03-23 18:58:28.705 2025-03-23 18:58:28.705 449881 7891 450109 675 8 1358 2025-03-23 16:00:01.073 2025-03-23 16:00:01.073 449881 7891 449910 20137 1 1359 2025-03-09 11:37:57.927 2025-03-09 11:37:57.927 429534 18673 430647 4313 1 1360 2025-03-14 21:38:20.131 2025-03-14 21:38:20.131 429534 18673 437772 1354 2 1361 2025-03-29 08:44:36.778 2025-03-29 08:44:36.778 458359 11885 458386 725 1 1362 2025-03-29 08:24:04.323 2025-03-29 08:24:04.323 458359 11885 458365 1319 1 1363 2025-02-25 22:50:36.817 2025-02-25 22:50:36.817 416615 913 416889 19189 1 1364 2025-02-13 10:03:28.853 2025-02-13 10:03:28.853 401649 1135 401670 8326 1 1365 2025-02-14 15:11:11.578 2025-02-14 15:11:11.578 403232 628 403233 4958 1 1366 2025-03-19 08:06:25.977 2025-03-19 08:06:25.977 442325 21540 443265 2232 1 1367 2025-02-25 22:18:10.982 2025-02-25 22:18:10.982 416633 718 416855 17042 1 1368 2025-02-20 16:16:43.405 2025-02-20 16:16:43.405 410698 18608 410704 15536 1 1369 2025-02-13 10:09:57.881 2025-02-13 10:09:57.881 401386 5646 401676 19854 1 1370 2025-02-16 06:02:04.432 2025-02-16 06:02:04.432 403360 2774 404697 672 1 1371 2025-02-16 01:47:39.506 2025-02-16 01:47:39.506 404595 661 404596 10352 1 1372 2025-03-20 02:24:13.216 2025-03-20 02:24:13.216 444538 1038 444556 1584 1 1373 2025-03-03 20:27:34.86 2025-03-03 20:27:34.86 423923 18225 424093 803 1 1374 2025-03-03 22:02:03.844 2025-03-03 22:02:03.844 423923 18225 424208 9985 2 1375 2025-03-02 19:25:22.229 2025-03-02 19:25:22.229 422908 3347 422916 5017 1 1376 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422933 16939 423046 12656 3 1377 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422933 16939 423076 695 4 1378 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422933 16939 423078 21238 4 1379 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422933 16939 422941 19303 2 1380 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422933 16939 422939 7389 1 1381 2025-03-02 17:24:38.1 2025-03-02 17:24:38.1 422764 19263 422770 20980 1 1382 2025-03-02 16:00:51.039 2025-03-02 16:00:51.039 422660 21072 422671 20157 2 1383 2025-03-02 15:54:50.692 2025-03-02 15:54:50.692 422660 21072 422663 16149 1 1384 2025-03-02 22:44:46.366 2025-03-02 22:44:46.366 422660 21072 423048 11395 7 1385 2025-03-02 22:39:41.924 2025-03-02 22:39:41.924 422660 21072 423044 8841 6 1386 2025-03-02 22:57:43.237 2025-03-02 22:57:43.237 422660 21072 423051 3656 9 1387 2025-03-02 20:44:55.705 2025-03-02 20:44:55.705 422660 21072 422986 5173 2 1388 2025-03-02 22:49:43.41 2025-03-02 22:49:43.41 422660 21072 423050 10493 8 1389 2025-03-02 22:33:51.225 2025-03-02 22:33:51.225 422660 21072 423041 692 5 1390 2025-03-02 20:53:37.782 2025-03-02 20:53:37.782 422660 21072 422995 21501 3 1391 2025-03-02 22:24:13.956 2025-03-02 22:24:13.956 422660 21072 423035 2789 4 1392 2025-03-02 16:00:51.039 2025-03-02 16:00:51.039 422663 16149 422671 20157 1 1393 2025-03-02 22:44:46.366 2025-03-02 22:44:46.366 422663 16149 423048 11395 6 1394 2025-03-02 22:39:41.924 2025-03-02 22:39:41.924 422663 16149 423044 8841 5 1395 2025-03-02 22:57:43.237 2025-03-02 22:57:43.237 422663 16149 423051 3656 8 1396 2025-03-02 20:44:55.705 2025-03-02 20:44:55.705 422663 16149 422986 5173 1 1397 2025-03-02 22:49:43.41 2025-03-02 22:49:43.41 422663 16149 423050 10493 7 1398 2025-03-02 22:33:51.225 2025-03-02 22:33:51.225 422663 16149 423041 692 4 1399 2025-03-02 20:53:37.782 2025-03-02 20:53:37.782 422663 16149 422995 21501 2 1400 2025-03-02 22:24:13.956 2025-03-02 22:24:13.956 422663 16149 423035 2789 3 1401 2025-03-23 19:07:02.124 2025-03-23 19:07:02.124 450019 18116 450117 859 1 1402 2025-03-23 19:37:55.871 2025-03-23 19:37:55.871 450019 18116 450217 15336 2 1403 2025-03-19 12:27:03.162 2025-03-19 12:27:03.162 442982 21140 443581 16830 1 1404 2025-03-19 12:58:14.295 2025-03-19 12:58:14.295 442982 21140 443661 15336 3 1405 2025-03-19 12:31:08.522 2025-03-19 12:31:08.522 442982 21140 443587 17519 2 1406 2025-02-15 22:44:17.435 2025-02-15 22:44:17.435 404364 20439 404477 10862 1 1407 2025-02-15 23:21:40.267 2025-02-15 23:21:40.267 404364 20439 404497 3360 2 1408 2025-02-20 15:09:38.201 2025-02-20 15:09:38.201 410538 21418 410609 20454 1 1409 2025-03-27 09:26:13.367 2025-03-27 09:26:13.367 455714 11798 455720 9494 1 1410 2025-03-27 09:35:37.366 2025-03-27 09:35:37.366 455714 11798 455732 5112 2 1411 2025-03-22 17:05:25.894 2025-03-22 17:05:25.894 448470 4395 448542 12566 1 1412 2025-02-26 01:00:16.627 2025-02-26 01:00:16.627 416994 20185 416996 15728 1 1413 2025-02-16 00:37:42.746 2025-02-16 00:37:42.746 403708 1632 404527 669 1 1414 2025-02-16 01:56:49.034 2025-02-16 01:56:49.034 403708 1632 404601 16571 2 1415 2025-02-16 01:56:49.034 2025-02-16 01:56:49.034 404527 669 404601 16571 1 1416 2025-03-02 15:26:14.116 2025-03-02 15:26:14.116 422597 13574 422619 13076 1 1417 2025-03-26 16:42:40.057 2025-03-26 16:42:40.057 454865 3371 454937 9367 2 1418 2025-03-26 16:26:55.666 2025-03-26 16:26:55.666 454865 3371 454905 997 1 1419 2025-02-15 22:17:19.808 2025-02-15 22:17:19.808 404442 13249 404462 15719 1 1420 2025-02-16 01:50:18.224 2025-02-16 01:50:18.224 404442 13249 404598 9796 2 1421 2025-02-16 02:03:14.704 2025-02-16 02:03:14.704 404442 13249 404607 1010 3 1422 2025-02-16 01:50:18.224 2025-02-16 01:50:18.224 404462 15719 404598 9796 1 1423 2025-02-16 02:03:14.704 2025-02-16 02:03:14.704 404462 15719 404607 1010 2 1424 2025-03-24 14:39:53.547 2025-03-24 14:39:53.547 451408 14657 451414 14370 1 1425 2025-02-16 02:03:14.704 2025-02-16 02:03:14.704 404598 9796 404607 1010 1 1426 2025-03-19 19:28:54.514 2025-03-19 19:28:54.514 444305 15762 444317 21119 1 1427 2025-03-19 19:35:53.245 2025-03-19 19:35:53.245 444305 15762 444326 12736 2 1428 2025-03-02 22:44:46.366 2025-03-02 22:44:46.366 422986 5173 423048 11395 5 1429 2025-03-02 22:39:41.924 2025-03-02 22:39:41.924 422986 5173 423044 8841 4 1430 2025-03-02 22:57:43.237 2025-03-02 22:57:43.237 422986 5173 423051 3656 7 1431 2025-03-02 22:49:43.41 2025-03-02 22:49:43.41 422986 5173 423050 10493 6 1432 2025-03-02 22:33:51.225 2025-03-02 22:33:51.225 422986 5173 423041 692 3 1433 2025-03-02 20:53:37.782 2025-03-02 20:53:37.782 422986 5173 422995 21501 1 1434 2025-03-02 22:24:13.956 2025-03-02 22:24:13.956 422986 5173 423035 2789 2 1435 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 423046 12656 423076 695 1 1436 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 423046 12656 423078 21238 1 1437 2025-03-24 14:30:56.525 2025-03-24 14:30:56.525 451382 14650 451392 6421 1 1438 2025-03-24 14:35:11.411 2025-03-24 14:35:11.411 451382 14650 451408 14657 2 1439 2025-03-24 14:39:53.547 2025-03-24 14:39:53.547 451382 14650 451414 14370 3 1440 2025-02-13 04:12:42.176 2025-02-13 04:12:42.176 401452 825 401474 4166 3 1441 2025-02-13 04:07:53.28 2025-02-13 04:07:53.28 401452 825 401472 11999 2 1442 2025-02-13 03:44:14.053 2025-02-13 03:44:14.053 401452 825 401462 2735 1 1443 2025-02-13 04:12:42.176 2025-02-13 04:12:42.176 401462 2735 401474 4166 2 1444 2025-02-13 04:07:53.28 2025-02-13 04:07:53.28 401462 2735 401472 11999 1 1445 2025-03-18 19:17:42.991 2025-03-18 19:17:42.991 442738 11967 442746 21296 1 1446 2025-02-18 15:03:48.509 2025-02-18 15:03:48.509 408056 20157 408093 2775 2 1447 2025-02-18 14:56:12.684 2025-02-18 14:56:12.684 408056 20157 408069 8284 1 1448 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443796 8289 443845 21522 5 1449 2025-03-19 14:34:10.46 2025-03-19 14:34:10.46 443796 8289 443831 670 3 1450 2025-03-19 14:27:58.927 2025-03-19 14:27:58.927 443796 8289 443811 16230 1 1451 2025-03-19 14:36:28.243 2025-03-19 14:36:28.243 443796 8289 443835 21012 4 1452 2025-03-19 14:30:39.44 2025-03-19 14:30:39.44 443796 8289 443819 14357 2 1453 2025-03-20 03:10:16.14 2025-03-20 03:10:16.14 443708 21405 444578 17237 2 1454 2025-03-19 23:14:14.286 2025-03-19 23:14:14.286 443708 21405 444481 12188 1 1455 2025-03-24 12:26:59.021 2025-03-24 12:26:59.021 451159 18449 451164 8168 1 1456 2025-03-24 12:25:21.112 2025-03-24 12:25:21.112 451106 5069 451159 18449 3 1457 2025-03-24 12:26:59.021 2025-03-24 12:26:59.021 451106 5069 451164 8168 4 1458 2025-03-24 12:25:37.417 2025-03-24 12:25:37.417 451106 5069 451163 7913 3 1459 2025-03-24 12:23:24.011 2025-03-24 12:23:24.011 451106 5069 451157 10586 2 1460 2025-03-24 12:21:25.228 2025-03-24 12:21:25.228 451106 5069 451155 21356 1 1461 2025-03-14 22:19:25.126 2025-03-14 22:19:25.126 437791 13177 437798 17109 1 1462 2025-03-14 22:11:24.133 2025-03-14 22:11:24.133 437716 794 437789 20799 3 1463 2025-03-14 22:12:56.946 2025-03-14 22:12:56.946 437716 794 437791 13177 4 1464 2025-03-14 21:57:03.957 2025-03-14 21:57:03.957 437716 794 437779 13169 1 1465 2025-03-14 22:07:48.098 2025-03-14 22:07:48.098 437716 794 437784 21825 2 1466 2025-03-14 22:19:25.126 2025-03-14 22:19:25.126 437716 794 437798 17109 5 1467 2025-02-19 18:17:33.374 2025-02-19 18:17:33.374 409637 11378 409647 21416 1 1468 2025-03-24 11:14:27.921 2025-03-24 11:14:27.921 451045 11516 451047 12049 1 1469 2025-03-02 22:57:43.237 2025-03-02 22:57:43.237 423050 10493 423051 3656 1 1470 2025-03-18 19:13:59.953 2025-03-18 19:13:59.953 442729 19403 442738 11967 1 1471 2025-03-18 19:17:42.991 2025-03-18 19:17:42.991 442729 19403 442746 21296 2 1472 2025-03-02 22:57:43.237 2025-03-02 22:57:43.237 423041 692 423051 3656 4 1473 2025-03-02 22:49:43.41 2025-03-02 22:49:43.41 423041 692 423050 10493 3 1474 2025-03-02 22:44:46.366 2025-03-02 22:44:46.366 423041 692 423048 11395 2 1475 2025-03-02 22:39:41.924 2025-03-02 22:39:41.924 423041 692 423044 8841 1 1476 2025-03-02 22:44:46.366 2025-03-02 22:44:46.366 422995 21501 423048 11395 4 1477 2025-03-02 22:39:41.924 2025-03-02 22:39:41.924 422995 21501 423044 8841 3 1478 2025-03-02 22:57:43.237 2025-03-02 22:57:43.237 422995 21501 423051 3656 6 1479 2025-03-02 22:49:43.41 2025-03-02 22:49:43.41 422995 21501 423050 10493 5 1480 2025-03-02 22:33:51.225 2025-03-02 22:33:51.225 422995 21501 423041 692 2 1481 2025-03-02 22:24:13.956 2025-03-02 22:24:13.956 422995 21501 423035 2789 1 1482 2025-03-19 11:03:38.563 2025-03-19 11:03:38.563 443440 20555 443446 1512 1 1483 2025-03-02 22:57:43.237 2025-03-02 22:57:43.237 423035 2789 423051 3656 5 1484 2025-03-02 22:49:43.41 2025-03-02 22:49:43.41 423035 2789 423050 10493 4 1485 2025-03-02 22:33:51.225 2025-03-02 22:33:51.225 423035 2789 423041 692 1 1486 2025-03-02 22:44:46.366 2025-03-02 22:44:46.366 423035 2789 423048 11395 3 1487 2025-03-02 22:39:41.924 2025-03-02 22:39:41.924 423035 2789 423044 8841 2 1488 2025-03-19 10:59:53.321 2025-03-19 10:59:53.321 443434 20137 443440 20555 1 1489 2025-03-19 11:03:38.563 2025-03-19 11:03:38.563 443434 20137 443446 1512 2 1490 2025-02-20 15:52:56.438 2025-02-20 15:52:56.438 410671 1960 410681 1890 1 1491 2025-02-20 16:16:46.599 2025-02-20 16:16:46.599 410671 1960 410705 4538 2 1492 2025-03-23 17:52:58.198 2025-03-23 17:52:58.198 450039 17673 450040 10608 1 1493 2025-03-23 18:23:55.978 2025-03-23 18:23:55.978 450039 17673 450067 21159 2 1494 2025-03-23 18:58:28.705 2025-03-23 18:58:28.705 450039 17673 450109 675 3 1495 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422992 1237 423001 2326 1 1496 2025-03-02 18:27:17.845 2025-03-02 18:27:17.845 422838 8416 422844 20102 1 1497 2025-02-14 17:43:37.043 2025-02-14 17:43:37.043 403315 19333 403330 11144 1 1498 2025-02-14 17:56:38.049 2025-02-14 17:56:38.049 403315 19333 403346 18423 1 1499 2025-03-23 22:01:34.342 2025-03-23 22:01:34.342 450326 17944 450354 7587 1 1500 2025-03-23 22:11:08.623 2025-03-23 22:11:08.623 450326 17944 450357 21734 2 1501 2025-03-19 15:17:07.717 2025-03-19 15:17:07.717 443886 1617 443902 21522 2 1502 2025-03-19 15:12:01.83 2025-03-19 15:12:01.83 443886 1617 443894 6191 1 1503 2025-03-03 19:54:17.218 2025-03-03 19:54:17.218 423706 8535 424054 2508 2 1504 2025-03-03 16:26:42.591 2025-03-03 16:26:42.591 423706 8535 423838 17209 1 1505 2025-03-23 08:12:48.254 2025-03-23 08:12:48.254 448675 13348 449146 997 1 1506 2025-03-23 21:24:54.466 2025-03-23 21:24:54.466 448675 13348 450321 894 2 1507 2025-03-09 16:02:53.297 2025-03-09 16:02:53.297 403289 3342 431203 20481 1 1508 2025-03-02 15:10:03.175 2025-03-02 15:10:03.175 422207 4035 422586 681 5 1509 2025-03-02 18:56:43.329 2025-03-02 18:56:43.329 422207 4035 422883 5175 7 1510 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422207 4035 423001 2326 12 1511 2025-03-02 19:25:22.229 2025-03-02 19:25:22.229 422207 4035 422916 5017 10 1512 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422207 4035 422933 16939 11 1513 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422207 4035 423078 21238 15 1514 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422207 4035 422992 1237 11 1515 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422207 4035 422934 4798 12 1516 2025-03-02 19:26:26.455 2025-03-02 19:26:26.455 422207 4035 422919 12097 10 1517 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422207 4035 422941 19303 13 1518 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422207 4035 422939 7389 12 1519 2025-03-02 15:06:20.278 2025-03-02 15:06:20.278 422207 4035 422583 20646 4 1520 2025-03-02 19:22:35.068 2025-03-02 19:22:35.068 422207 4035 422908 3347 9 1521 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422207 4035 423046 12656 14 1522 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422207 4035 423076 695 15 1523 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422207 4035 422925 20691 11 1524 2025-03-02 19:26:25.897 2025-03-02 19:26:25.897 422207 4035 422918 9307 10 1525 2025-03-02 19:22:53.929 2025-03-02 19:22:53.929 422207 4035 422911 20588 9 1526 2025-03-02 13:33:31.746 2025-03-02 13:33:31.746 422207 4035 422491 1320 2 1527 2025-03-02 12:40:42.787 2025-03-02 12:40:42.787 422207 4035 422399 2829 1 1528 2025-03-02 18:51:00.834 2025-03-02 18:51:00.834 422207 4035 422871 10981 6 1529 2025-03-02 19:08:46.501 2025-03-02 19:08:46.501 422207 4035 422895 9969 8 1530 2025-03-02 15:00:29.086 2025-03-02 15:00:29.086 422207 4035 422579 674 3 1531 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422207 4035 422644 19071 11 1532 2025-03-02 15:35:31.161 2025-03-02 15:35:31.161 422207 4035 422640 3706 10 1533 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422207 4035 422927 10102 11 1534 2025-03-02 15:32:09.644 2025-03-02 15:32:09.644 422207 4035 422633 17221 9 1535 2025-03-02 15:27:28.815 2025-03-02 15:27:28.815 422207 4035 422620 5779 8 1536 2025-03-02 15:21:19.724 2025-03-02 15:21:19.724 422207 4035 422611 13076 7 1537 2025-03-02 15:18:42.06 2025-03-02 15:18:42.06 422207 4035 422604 6777 6 1538 2025-03-19 17:28:14.79 2025-03-19 17:28:14.79 443953 17046 444139 4624 1 1539 2025-03-19 15:17:07.717 2025-03-19 15:17:07.717 443781 15196 443902 21522 4 1540 2025-03-19 14:26:02.056 2025-03-19 14:26:02.056 443781 15196 443806 20913 1 1541 2025-03-19 15:03:31.361 2025-03-19 15:03:31.361 443781 15196 443886 1617 2 1542 2025-03-19 15:12:01.83 2025-03-19 15:12:01.83 443781 15196 443894 6191 3 1543 2025-03-19 15:09:08.865 2025-03-19 15:09:08.865 443781 15196 443889 641 2 1544 2025-02-15 23:57:03.257 2025-02-15 23:57:03.257 404384 20817 404516 11776 3 1545 2025-02-15 23:41:29.537 2025-02-15 23:41:29.537 404384 20817 404510 16145 2 1546 2025-02-15 23:26:24.399 2025-02-15 23:26:24.399 404384 20817 404501 656 1 1547 2025-03-19 15:17:07.717 2025-03-19 15:17:07.717 443894 6191 443902 21522 1 1548 2025-03-19 11:16:01.421 2025-03-19 11:16:01.421 443452 21373 443460 16847 1 1549 2025-03-12 19:25:37.503 2025-03-12 19:25:37.503 435520 1833 435550 15556 1 1550 2025-03-18 10:29:00.924 2025-03-18 10:29:00.924 441695 21575 441849 11523 4 1551 2025-03-18 10:23:26.459 2025-03-18 10:23:26.459 441695 21575 441837 21688 2 1552 2025-03-18 10:37:08.701 2025-03-18 10:37:08.701 441695 21575 441855 782 5 1553 2025-03-18 10:21:28.631 2025-03-18 10:21:28.631 441695 21575 441835 16858 4 1554 2025-03-18 08:52:15.869 2025-03-18 08:52:15.869 441695 21575 441712 4292 1 1555 2025-03-18 13:11:32.035 2025-03-18 13:11:32.035 441695 21575 442157 2722 8 1556 2025-03-19 12:38:58.428 2025-03-19 12:38:58.428 441695 21575 443606 14650 2 1557 2025-03-19 13:19:15.165 2025-03-19 13:19:15.165 441695 21575 443691 12277 5 1558 2025-03-18 10:14:48.87 2025-03-18 10:14:48.87 441695 21575 441827 20636 2 1559 2025-03-18 14:16:11.631 2025-03-18 14:16:11.631 441695 21575 442330 5444 1 1560 2025-03-18 15:22:34.712 2025-03-18 15:22:34.712 441695 21575 442473 21541 2 1561 2025-03-18 15:05:46.218 2025-03-18 15:05:46.218 441695 21575 442446 20669 1 1562 2025-03-18 14:32:19.309 2025-03-18 14:32:19.309 441695 21575 442364 2492 1 1563 2025-03-18 10:12:49.131 2025-03-18 10:12:49.131 441695 21575 441823 1354 1 1564 2025-03-18 10:20:42.325 2025-03-18 10:20:42.325 441695 21575 441833 5661 3 1565 2025-03-18 13:06:57.606 2025-03-18 13:06:57.606 441695 21575 442148 20187 7 1566 2025-03-18 09:19:10.999 2025-03-18 09:19:10.999 441695 21575 441750 20775 2 1567 2025-03-19 14:02:50.362 2025-03-19 14:02:50.362 441695 21575 443762 12368 7 1568 2025-03-19 13:54:27.282 2025-03-19 13:54:27.282 441695 21575 443746 9333 6 1569 2025-03-18 10:25:06.303 2025-03-18 10:25:06.303 441695 21575 441841 713 3 1570 2025-03-18 13:01:30.787 2025-03-18 13:01:30.787 441695 21575 442141 20254 6 1571 2025-03-19 07:58:29.97 2025-03-19 07:58:29.97 441695 21575 443259 5694 4 1572 2025-03-18 12:57:46.826 2025-03-18 12:57:46.826 441695 21575 442135 16193 5 1573 2025-03-18 10:50:57.112 2025-03-18 10:50:57.112 441695 21575 441878 17041 3 1574 2025-03-18 09:59:00.133 2025-03-18 09:59:00.133 441695 21575 441803 5708 4 1575 2025-03-18 10:41:33.529 2025-03-18 10:41:33.529 441695 21575 441862 18735 2 1576 2025-03-18 09:57:28.221 2025-03-18 09:57:28.221 441695 21575 441801 20799 3 1577 2025-03-18 10:31:08.97 2025-03-18 10:31:08.97 441695 21575 441851 714 1 1578 2025-03-18 15:22:34.712 2025-03-18 15:22:34.712 442446 20669 442473 21541 1 1579 2025-02-20 16:49:56.749 2025-02-20 16:49:56.749 410731 9537 410747 5171 1 1580 2025-03-19 10:12:05.423 2025-03-19 10:12:05.423 443374 16858 443383 4287 1 1581 2025-03-04 00:51:21.092 2025-03-04 00:51:21.092 423856 15336 424326 917 1 1582 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422918 9307 423046 12656 4 1583 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422918 9307 423076 695 5 1584 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422918 9307 422925 20691 1 1585 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422918 9307 422927 10102 1 1586 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422918 9307 422933 16939 1 1587 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422918 9307 423078 21238 5 1588 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422918 9307 422934 4798 2 1589 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422918 9307 422941 19303 3 1590 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422918 9307 422939 7389 2 1591 2025-03-19 10:17:52.718 2025-03-19 10:17:52.718 443315 11220 443392 9920 1 1592 2025-03-19 08:55:25.19 2025-03-19 08:55:25.19 443308 12951 443311 1426 1 1593 2025-03-19 08:57:20.854 2025-03-19 08:57:20.854 443308 12951 443315 11220 2 1594 2025-03-19 10:17:52.718 2025-03-19 10:17:52.718 443308 12951 443392 9920 3 1595 2025-03-19 09:05:32.466 2025-03-19 09:05:32.466 443308 12951 443325 20117 2 1596 2025-03-19 08:52:40.559 2025-03-19 08:52:40.559 443301 2674 443308 12951 1 1597 2025-03-19 08:55:25.19 2025-03-19 08:55:25.19 443301 2674 443311 1426 2 1598 2025-03-19 08:57:20.854 2025-03-19 08:57:20.854 443301 2674 443315 11220 3 1599 2025-03-19 10:17:52.718 2025-03-19 10:17:52.718 443301 2674 443392 9920 4 1600 2025-03-19 09:05:32.466 2025-03-19 09:05:32.466 443301 2674 443325 20117 3 1601 2025-03-19 19:48:21.716 2025-03-19 19:48:21.716 444330 2232 444333 954 1 1602 2025-03-19 19:41:13.243 2025-03-19 19:41:13.243 444218 21485 444330 2232 1 1603 2025-03-19 19:48:21.716 2025-03-19 19:48:21.716 444218 21485 444333 954 2 1604 2025-03-03 21:47:39.977 2025-03-03 21:47:39.977 424197 18174 424198 11515 1 1605 2025-03-01 18:28:22.933 2025-03-01 18:28:22.933 421117 1585 421546 1717 4 1606 2025-03-01 13:37:29.97 2025-03-01 13:37:29.97 421117 1585 421193 14607 1 1607 2025-03-01 14:48:05.817 2025-03-01 14:48:05.817 421117 1585 421269 16387 2 1608 2025-03-01 14:48:31.741 2025-03-01 14:48:31.741 421117 1585 421270 19121 3 1609 2025-03-01 19:40:13.994 2025-03-01 19:40:13.994 421375 20802 421608 8245 1 1610 2025-02-13 10:18:32.216 2025-02-13 10:18:32.216 401557 16230 401688 8416 1 1611 2025-03-19 08:51:36.433 2025-03-19 08:51:36.433 443296 726 443302 989 1 1612 2025-03-19 08:53:30.466 2025-03-19 08:53:30.466 443296 726 443309 782 1 1613 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403941 21356 403948 9421 1 1614 2025-02-15 11:44:43.466 2025-02-15 11:44:43.466 403937 997 403941 21356 1 1615 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403937 997 403948 9421 2 1616 2025-02-20 17:05:42.734 2025-02-20 17:05:42.734 410763 19199 410767 17690 1 1617 2025-02-20 17:12:25.4 2025-02-20 17:12:25.4 410763 19199 410774 20734 2 1618 2025-02-13 10:19:03.472 2025-02-13 10:19:03.472 401560 5961 401689 11938 1 1619 2025-03-24 13:57:58.107 2025-03-24 13:57:58.107 450670 2513 451328 5646 4 1620 2025-03-24 06:37:37.063 2025-03-24 06:37:37.063 450670 2513 450672 1352 1 1621 2025-03-24 10:52:26.057 2025-03-24 10:52:26.057 450670 2513 451014 910 2 1622 2025-03-24 10:54:10.956 2025-03-24 10:54:10.956 450670 2513 451017 21539 3 1623 2025-02-15 11:41:15.703 2025-02-15 11:41:15.703 403927 21400 403934 21222 1 1624 2025-02-15 11:42:12.94 2025-02-15 11:42:12.94 403927 21400 403937 997 2 1625 2025-02-15 11:44:43.466 2025-02-15 11:44:43.466 403927 21400 403941 21356 3 1626 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403927 21400 403948 9421 4 1627 2025-03-02 10:59:28.866 2025-03-02 10:59:28.866 421778 13174 422279 11298 4 1628 2025-03-02 02:47:03.245 2025-03-02 02:47:03.245 421778 13174 421833 4798 3 1629 2025-03-02 07:30:31.754 2025-03-02 07:30:31.754 421778 13174 422010 21202 1 1630 2025-03-03 00:44:06.283 2025-03-03 00:44:06.283 421778 13174 423099 13097 2 1631 2025-03-02 02:03:16.614 2025-03-02 02:03:16.614 421778 13174 421801 12516 1 1632 2025-03-02 02:25:43.727 2025-03-02 02:25:43.727 421778 13174 421818 14785 2 1633 2025-03-03 00:42:58.799 2025-03-03 00:42:58.799 421778 13174 423098 12561 4 1634 2025-03-02 01:40:41.148 2025-03-02 01:40:41.148 421778 13174 421781 10638 1 1635 2025-03-02 12:26:48.272 2025-03-02 12:26:48.272 421778 13174 422384 20972 3 1636 2025-03-02 12:17:46.744 2025-03-02 12:17:46.744 421778 13174 422369 1737 2 1637 2025-03-02 12:12:55.053 2025-03-02 12:12:55.053 421778 13174 422365 7682 1 1638 2025-03-03 01:21:21.413 2025-03-03 01:21:21.413 423040 1495 423119 798 1 1639 2025-02-15 11:35:19.418 2025-02-15 11:35:19.418 403926 640 403927 21400 1 1640 2025-02-15 11:41:15.703 2025-02-15 11:41:15.703 403926 640 403934 21222 2 1641 2025-02-15 11:42:12.94 2025-02-15 11:42:12.94 403926 640 403937 997 3 1642 2025-02-15 11:44:43.466 2025-02-15 11:44:43.466 403926 640 403941 21356 4 1643 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403926 640 403948 9421 5 1644 2025-03-23 12:59:18.11 2025-03-23 12:59:18.11 449570 2519 449615 20663 2 1645 2025-03-23 12:47:51.055 2025-03-23 12:47:51.055 449570 2519 449589 634 1 1646 2025-03-02 10:17:02.024 2025-03-02 10:17:02.024 422203 21398 422207 4035 1 1647 2025-03-02 15:10:03.175 2025-03-02 15:10:03.175 422203 21398 422586 681 6 1648 2025-03-02 18:56:43.329 2025-03-02 18:56:43.329 422203 21398 422883 5175 8 1649 2025-03-02 13:26:29.399 2025-03-02 13:26:29.399 422203 21398 422486 21482 1 1650 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422203 21398 423001 2326 13 1651 2025-03-02 19:25:22.229 2025-03-02 19:25:22.229 422203 21398 422916 5017 11 1652 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422203 21398 422933 16939 12 1653 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422203 21398 423078 21238 16 1654 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422203 21398 422992 1237 12 1655 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422203 21398 422934 4798 13 1656 2025-03-02 19:26:26.455 2025-03-02 19:26:26.455 422203 21398 422919 12097 11 1657 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422203 21398 422941 19303 14 1658 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422203 21398 422939 7389 13 1659 2025-03-02 15:06:20.278 2025-03-02 15:06:20.278 422203 21398 422583 20646 5 1660 2025-03-02 19:22:35.068 2025-03-02 19:22:35.068 422203 21398 422908 3347 10 1661 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422203 21398 423046 12656 15 1662 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422203 21398 423076 695 16 1663 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422203 21398 422925 20691 12 1664 2025-03-02 19:26:25.897 2025-03-02 19:26:25.897 422203 21398 422918 9307 11 1665 2025-03-02 19:22:53.929 2025-03-02 19:22:53.929 422203 21398 422911 20588 10 1666 2025-03-02 13:33:31.746 2025-03-02 13:33:31.746 422203 21398 422491 1320 3 1667 2025-03-02 12:40:42.787 2025-03-02 12:40:42.787 422203 21398 422399 2829 2 1668 2025-03-02 18:51:00.834 2025-03-02 18:51:00.834 422203 21398 422871 10981 7 1669 2025-03-02 19:08:46.501 2025-03-02 19:08:46.501 422203 21398 422895 9969 9 1670 2025-03-02 15:00:29.086 2025-03-02 15:00:29.086 422203 21398 422579 674 4 1671 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422203 21398 422644 19071 12 1672 2025-03-02 15:35:31.161 2025-03-02 15:35:31.161 422203 21398 422640 3706 11 1673 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422203 21398 422927 10102 12 1674 2025-03-02 15:32:09.644 2025-03-02 15:32:09.644 422203 21398 422633 17221 10 1675 2025-03-02 15:27:28.815 2025-03-02 15:27:28.815 422203 21398 422620 5779 9 1676 2025-03-02 15:21:19.724 2025-03-02 15:21:19.724 422203 21398 422611 13076 8 1677 2025-03-02 15:18:42.06 2025-03-02 15:18:42.06 422203 21398 422604 6777 7 1678 2025-03-06 18:23:49.242 2025-03-06 18:23:49.242 427867 19217 427963 3213 1 1679 2025-03-19 12:04:34.829 2025-03-19 12:04:34.829 443477 616 443533 21033 2 1680 2025-03-19 11:45:42.177 2025-03-19 11:45:42.177 443477 616 443504 848 1 1681 2025-03-19 11:31:22.455 2025-03-19 11:31:22.455 443473 2367 443477 616 1 1682 2025-03-19 11:55:12.485 2025-03-19 11:55:12.485 443473 2367 443519 21571 1 1683 2025-03-19 12:04:34.829 2025-03-19 12:04:34.829 443473 2367 443533 21033 3 1684 2025-03-19 11:45:42.177 2025-03-19 11:45:42.177 443473 2367 443504 848 2 1685 2025-02-26 03:29:42.119 2025-02-26 03:29:42.119 416912 15119 417053 5646 1 1686 2025-03-13 11:48:10.763 2025-03-13 11:48:10.763 436217 20713 436219 1438 1 1687 2025-03-13 11:49:23.824 2025-03-13 11:49:23.824 436217 20713 436221 16684 2 1688 2025-03-20 00:04:58.461 2025-03-20 00:04:58.461 444324 19459 444498 21442 2 1689 2025-03-19 23:25:18.395 2025-03-19 23:25:18.395 444324 19459 444489 21042 1 1690 2025-03-20 00:04:58.461 2025-03-20 00:04:58.461 444489 21042 444498 21442 1 1691 2025-03-03 07:37:17.084 2025-03-03 07:37:17.084 423257 1605 423290 7395 2 1692 2025-03-03 07:33:55.465 2025-03-03 07:33:55.465 423257 1605 423288 16440 1 1693 2025-03-03 07:37:17.084 2025-03-03 07:37:17.084 422894 15409 423290 7395 3 1694 2025-03-03 07:02:44.614 2025-03-03 07:02:44.614 422894 15409 423257 1605 1 1695 2025-03-03 07:33:55.465 2025-03-03 07:33:55.465 422894 15409 423288 16440 2 1696 2025-03-02 19:44:39.646 2025-03-02 19:44:39.646 422894 15409 422940 16858 1 1697 2025-03-02 21:29:18.007 2025-03-02 21:29:18.007 422894 15409 423014 20337 2 1698 2025-03-09 16:02:50.726 2025-03-09 16:02:50.726 403388 16442 431202 1389 1 1699 2025-03-09 16:01:53.371 2025-03-09 16:01:53.371 407173 11328 431183 10273 1 1700 2025-02-20 14:06:17.533 2025-02-20 14:06:17.533 407173 11328 410503 9921 1 1701 2025-03-09 16:02:10.046 2025-03-09 16:02:10.046 406671 18441 431186 678 1 1702 2025-03-09 16:02:42.418 2025-03-09 16:02:42.418 403864 10102 431199 16970 1 1703 2025-03-09 16:02:13.448 2025-03-09 16:02:13.448 406483 20179 431188 17415 1 1704 2025-02-16 02:43:21.191 2025-02-16 02:43:21.191 404575 7389 404619 8535 1 1705 2025-02-16 02:44:52.898 2025-02-16 02:44:52.898 404141 18430 404620 5637 1 1706 2025-03-02 21:01:58.137 2025-03-02 21:01:58.137 422958 811 422999 20858 1 1707 2025-03-09 16:02:57.984 2025-03-09 16:02:57.984 402359 13599 431205 19829 1 1708 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422919 12097 423001 2326 2 1709 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422919 12097 422992 1237 1 1710 2025-03-27 18:32:24.184 2025-03-27 18:32:24.184 456650 5085 456657 649 1 1711 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422911 20588 423046 12656 5 1712 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422911 20588 423076 695 6 1713 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422911 20588 422925 20691 2 1714 2025-03-02 19:26:25.897 2025-03-02 19:26:25.897 422911 20588 422918 9307 1 1715 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422911 20588 422927 10102 2 1716 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422911 20588 423001 2326 3 1717 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422911 20588 422933 16939 2 1718 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422911 20588 423078 21238 6 1719 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422911 20588 422992 1237 2 1720 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422911 20588 422934 4798 3 1721 2025-03-02 19:26:26.455 2025-03-02 19:26:26.455 422911 20588 422919 12097 1 1722 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422911 20588 422941 19303 4 1723 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422911 20588 422939 7389 3 1724 2025-02-13 17:05:07.934 2025-02-13 17:05:07.934 402075 759 402300 4487 1 1725 2025-03-09 16:03:00.25 2025-03-09 16:03:00.25 402075 759 431206 12870 1 1726 2025-03-02 15:10:03.175 2025-03-02 15:10:03.175 422491 1320 422586 681 3 1727 2025-03-02 18:56:43.329 2025-03-02 18:56:43.329 422491 1320 422883 5175 5 1728 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422491 1320 423001 2326 10 1729 2025-03-02 19:25:22.229 2025-03-02 19:25:22.229 422491 1320 422916 5017 8 1730 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422491 1320 422933 16939 9 1731 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422491 1320 423078 21238 13 1732 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422491 1320 422992 1237 9 1733 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422491 1320 422934 4798 10 1734 2025-03-02 19:26:26.455 2025-03-02 19:26:26.455 422491 1320 422919 12097 8 1735 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422491 1320 422941 19303 11 1736 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422491 1320 422939 7389 10 1737 2025-03-02 15:06:20.278 2025-03-02 15:06:20.278 422491 1320 422583 20646 2 1738 2025-03-02 19:22:35.068 2025-03-02 19:22:35.068 422491 1320 422908 3347 7 1739 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422491 1320 423046 12656 12 1740 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422491 1320 423076 695 13 1741 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422491 1320 422925 20691 9 1742 2025-03-02 19:26:25.897 2025-03-02 19:26:25.897 422491 1320 422918 9307 8 1743 2025-03-02 19:22:53.929 2025-03-02 19:22:53.929 422491 1320 422911 20588 7 1744 2025-03-02 18:51:00.834 2025-03-02 18:51:00.834 422491 1320 422871 10981 4 1745 2025-03-02 19:08:46.501 2025-03-02 19:08:46.501 422491 1320 422895 9969 6 1746 2025-03-02 15:00:29.086 2025-03-02 15:00:29.086 422491 1320 422579 674 1 1747 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422491 1320 422644 19071 9 1748 2025-03-02 15:35:31.161 2025-03-02 15:35:31.161 422491 1320 422640 3706 8 1749 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422491 1320 422927 10102 9 1750 2025-03-02 15:32:09.644 2025-03-02 15:32:09.644 422491 1320 422633 17221 7 1751 2025-03-02 15:27:28.815 2025-03-02 15:27:28.815 422491 1320 422620 5779 6 1752 2025-03-02 15:21:19.724 2025-03-02 15:21:19.724 422491 1320 422611 13076 5 1753 2025-03-02 15:18:42.06 2025-03-02 15:18:42.06 422491 1320 422604 6777 4 1754 2025-02-16 02:51:45.591 2025-02-16 02:51:45.591 404615 12562 404623 21521 1 1755 2025-03-02 15:10:03.175 2025-03-02 15:10:03.175 422399 2829 422586 681 4 1756 2025-03-02 18:56:43.329 2025-03-02 18:56:43.329 422399 2829 422883 5175 6 1757 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422399 2829 423001 2326 11 1758 2025-03-02 19:25:22.229 2025-03-02 19:25:22.229 422399 2829 422916 5017 9 1759 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422399 2829 422933 16939 10 1760 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422399 2829 423078 21238 14 1761 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422399 2829 422992 1237 10 1762 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422399 2829 422934 4798 11 1763 2025-03-02 19:26:26.455 2025-03-02 19:26:26.455 422399 2829 422919 12097 9 1764 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422399 2829 422941 19303 12 1765 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422399 2829 422939 7389 11 1766 2025-03-02 15:06:20.278 2025-03-02 15:06:20.278 422399 2829 422583 20646 3 1767 2025-03-02 19:22:35.068 2025-03-02 19:22:35.068 422399 2829 422908 3347 8 1768 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422399 2829 423046 12656 13 1769 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422399 2829 423076 695 14 1770 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422399 2829 422925 20691 10 1771 2025-03-02 19:26:25.897 2025-03-02 19:26:25.897 422399 2829 422918 9307 9 1772 2025-03-02 19:22:53.929 2025-03-02 19:22:53.929 422399 2829 422911 20588 8 1773 2025-03-02 13:33:31.746 2025-03-02 13:33:31.746 422399 2829 422491 1320 1 1774 2025-03-02 18:51:00.834 2025-03-02 18:51:00.834 422399 2829 422871 10981 5 1775 2025-03-02 19:08:46.501 2025-03-02 19:08:46.501 422399 2829 422895 9969 7 1776 2025-03-02 15:00:29.086 2025-03-02 15:00:29.086 422399 2829 422579 674 2 1777 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422399 2829 422644 19071 10 1778 2025-03-02 15:35:31.161 2025-03-02 15:35:31.161 422399 2829 422640 3706 9 1779 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422399 2829 422927 10102 10 1780 2025-03-02 15:32:09.644 2025-03-02 15:32:09.644 422399 2829 422633 17221 8 1781 2025-03-02 15:27:28.815 2025-03-02 15:27:28.815 422399 2829 422620 5779 7 1782 2025-03-02 15:21:19.724 2025-03-02 15:21:19.724 422399 2829 422611 13076 6 1783 2025-03-02 15:18:42.06 2025-03-02 15:18:42.06 422399 2829 422604 6777 5 1784 2025-03-02 18:56:43.329 2025-03-02 18:56:43.329 422586 681 422883 5175 2 1785 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422586 681 423001 2326 7 1786 2025-03-02 19:25:22.229 2025-03-02 19:25:22.229 422586 681 422916 5017 5 1787 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422586 681 422933 16939 6 1788 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422586 681 423078 21238 10 1789 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422586 681 422992 1237 6 1790 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422586 681 422934 4798 7 1791 2025-03-02 19:26:26.455 2025-03-02 19:26:26.455 422586 681 422919 12097 5 1792 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422586 681 422941 19303 8 1793 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422586 681 422939 7389 7 1794 2025-03-02 19:22:35.068 2025-03-02 19:22:35.068 422586 681 422908 3347 4 1795 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422586 681 423046 12656 9 1796 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422586 681 423076 695 10 1797 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422586 681 422925 20691 6 1798 2025-03-02 19:26:25.897 2025-03-02 19:26:25.897 422586 681 422918 9307 5 1799 2025-03-02 19:22:53.929 2025-03-02 19:22:53.929 422586 681 422911 20588 4 1800 2025-03-02 18:51:00.834 2025-03-02 18:51:00.834 422586 681 422871 10981 1 1801 2025-03-02 19:08:46.501 2025-03-02 19:08:46.501 422586 681 422895 9969 3 1802 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422586 681 422644 19071 6 1803 2025-03-02 15:35:31.161 2025-03-02 15:35:31.161 422586 681 422640 3706 5 1804 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422586 681 422927 10102 6 1805 2025-03-02 15:32:09.644 2025-03-02 15:32:09.644 422586 681 422633 17221 4 1806 2025-03-02 15:27:28.815 2025-03-02 15:27:28.815 422586 681 422620 5779 3 1807 2025-03-02 15:21:19.724 2025-03-02 15:21:19.724 422586 681 422611 13076 2 1808 2025-03-02 15:18:42.06 2025-03-02 15:18:42.06 422586 681 422604 6777 1 1809 2025-03-02 18:56:43.329 2025-03-02 18:56:43.329 422871 10981 422883 5175 1 1810 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422871 10981 423001 2326 6 1811 2025-03-02 19:25:22.229 2025-03-02 19:25:22.229 422871 10981 422916 5017 4 1812 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422871 10981 422933 16939 5 1813 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422871 10981 423078 21238 9 1814 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422871 10981 422992 1237 5 1815 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422871 10981 422934 4798 6 1816 2025-03-02 19:26:26.455 2025-03-02 19:26:26.455 422871 10981 422919 12097 4 1817 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422871 10981 422941 19303 7 1818 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422871 10981 422939 7389 6 1819 2025-03-02 19:22:35.068 2025-03-02 19:22:35.068 422871 10981 422908 3347 3 1820 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422871 10981 423046 12656 8 1821 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422871 10981 423076 695 9 1822 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422871 10981 422925 20691 5 1823 2025-03-02 19:26:25.897 2025-03-02 19:26:25.897 422871 10981 422918 9307 4 1824 2025-03-02 19:22:53.929 2025-03-02 19:22:53.929 422871 10981 422911 20588 3 1825 2025-03-02 19:08:46.501 2025-03-02 19:08:46.501 422871 10981 422895 9969 2 1826 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422871 10981 422927 10102 5 1827 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422895 9969 423001 2326 4 1828 2025-03-02 19:25:22.229 2025-03-02 19:25:22.229 422895 9969 422916 5017 2 1829 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422895 9969 422933 16939 3 1830 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422895 9969 423078 21238 7 1831 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422895 9969 422992 1237 3 1832 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422895 9969 422934 4798 4 1833 2025-03-02 19:26:26.455 2025-03-02 19:26:26.455 422895 9969 422919 12097 2 1834 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422895 9969 422941 19303 5 1835 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422895 9969 422939 7389 4 1836 2025-03-02 19:22:35.068 2025-03-02 19:22:35.068 422895 9969 422908 3347 1 1837 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422895 9969 423046 12656 6 1838 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422895 9969 423076 695 7 1839 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422895 9969 422925 20691 3 1840 2025-03-02 19:26:25.897 2025-03-02 19:26:25.897 422895 9969 422918 9307 2 1841 2025-03-02 19:22:53.929 2025-03-02 19:22:53.929 422895 9969 422911 20588 1 1842 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422895 9969 422927 10102 3 1843 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422883 5175 423001 2326 5 1844 2025-03-02 19:25:22.229 2025-03-02 19:25:22.229 422883 5175 422916 5017 3 1845 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422883 5175 422933 16939 4 1846 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422883 5175 423078 21238 8 1847 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422883 5175 422992 1237 4 1848 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422883 5175 422934 4798 5 1849 2025-03-02 19:26:26.455 2025-03-02 19:26:26.455 422883 5175 422919 12097 3 1850 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422883 5175 422941 19303 6 1851 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422883 5175 422939 7389 5 1852 2025-03-02 19:22:35.068 2025-03-02 19:22:35.068 422883 5175 422908 3347 2 1853 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422883 5175 423046 12656 7 1854 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422883 5175 423076 695 8 1855 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422883 5175 422925 20691 4 1856 2025-03-02 19:26:25.897 2025-03-02 19:26:25.897 422883 5175 422918 9307 3 1857 2025-03-02 19:22:53.929 2025-03-02 19:22:53.929 422883 5175 422911 20588 2 1858 2025-03-02 19:08:46.501 2025-03-02 19:08:46.501 422883 5175 422895 9969 1 1859 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422883 5175 422927 10102 4 1860 2025-03-02 15:10:03.175 2025-03-02 15:10:03.175 422579 674 422586 681 2 1861 2025-03-02 18:56:43.329 2025-03-02 18:56:43.329 422579 674 422883 5175 4 1862 2025-03-02 21:18:46.254 2025-03-02 21:18:46.254 422579 674 423001 2326 9 1863 2025-03-02 19:25:22.229 2025-03-02 19:25:22.229 422579 674 422916 5017 7 1864 2025-03-02 19:34:51.089 2025-03-02 19:34:51.089 422579 674 422933 16939 8 1865 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422579 674 423078 21238 12 1866 2025-03-02 20:49:32.634 2025-03-02 20:49:32.634 422579 674 422992 1237 8 1867 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422579 674 422934 4798 9 1868 2025-03-02 19:26:26.455 2025-03-02 19:26:26.455 422579 674 422919 12097 7 1869 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422579 674 422941 19303 10 1870 2025-03-02 19:42:20.62 2025-03-02 19:42:20.62 422579 674 422939 7389 9 1871 2025-03-02 15:06:20.278 2025-03-02 15:06:20.278 422579 674 422583 20646 1 1872 2025-03-02 19:22:35.068 2025-03-02 19:22:35.068 422579 674 422908 3347 6 1873 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422579 674 423046 12656 11 1874 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422579 674 423076 695 12 1875 2025-03-02 19:30:11.592 2025-03-02 19:30:11.592 422579 674 422925 20691 8 1876 2025-03-02 19:26:25.897 2025-03-02 19:26:25.897 422579 674 422918 9307 7 1877 2025-03-02 19:22:53.929 2025-03-02 19:22:53.929 422579 674 422911 20588 6 1878 2025-03-02 18:51:00.834 2025-03-02 18:51:00.834 422579 674 422871 10981 3 1879 2025-03-02 19:08:46.501 2025-03-02 19:08:46.501 422579 674 422895 9969 5 1880 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422579 674 422644 19071 8 1881 2025-03-02 15:35:31.161 2025-03-02 15:35:31.161 422579 674 422640 3706 7 1882 2025-03-02 19:30:20.47 2025-03-02 19:30:20.47 422579 674 422927 10102 8 1883 2025-03-02 15:32:09.644 2025-03-02 15:32:09.644 422579 674 422633 17221 6 1884 2025-03-02 15:27:28.815 2025-03-02 15:27:28.815 422579 674 422620 5779 5 1885 2025-03-02 15:21:19.724 2025-03-02 15:21:19.724 422579 674 422611 13076 4 1886 2025-03-02 15:18:42.06 2025-03-02 15:18:42.06 422579 674 422604 6777 3 1887 2025-03-04 00:07:17.314 2025-03-04 00:07:17.314 424268 19842 424291 706 1 1888 2025-02-26 01:53:59.296 2025-02-26 01:53:59.296 416991 9669 417013 17526 1 1889 2025-02-26 03:48:11.97 2025-02-26 03:48:11.97 416991 9669 417060 1244 2 1890 2025-03-03 20:35:38.484 2025-03-03 20:35:38.484 416991 9669 424107 5806 2 1891 2025-02-14 10:07:15.748 2025-02-14 10:07:15.748 401915 2639 402973 663 2 1892 2025-02-14 02:02:45.711 2025-02-14 02:02:45.711 401915 2639 402767 20586 1 1893 2025-03-09 16:03:22.3 2025-03-09 16:03:22.3 401915 2639 431208 11776 1 1894 2025-02-13 17:12:00.087 2025-02-13 17:12:00.087 401865 20734 402317 2829 1 1895 2025-03-09 16:03:24.997 2025-03-09 16:03:24.997 401865 20734 431209 2519 1 1896 2025-03-02 16:00:51.039 2025-03-02 16:00:51.039 422334 2789 422671 20157 3 1897 2025-03-02 15:52:01.474 2025-03-02 15:52:01.474 422334 2789 422660 21072 1 1898 2025-03-02 15:54:50.692 2025-03-02 15:54:50.692 422334 2789 422663 16149 2 1899 2025-03-02 12:51:40.176 2025-03-02 12:51:40.176 422334 2789 422408 10013 2 1900 2025-03-02 12:48:40.247 2025-03-02 12:48:40.247 422334 2789 422406 10060 1 1901 2025-03-03 11:37:02.355 2025-03-03 11:37:02.355 422334 2789 423453 12561 1 1902 2025-03-02 22:44:46.366 2025-03-02 22:44:46.366 422334 2789 423048 11395 8 1903 2025-03-02 22:39:41.924 2025-03-02 22:39:41.924 422334 2789 423044 8841 7 1904 2025-03-02 22:57:43.237 2025-03-02 22:57:43.237 422334 2789 423051 3656 10 1905 2025-03-03 11:39:43.526 2025-03-03 11:39:43.526 422334 2789 423457 5306 2 1906 2025-03-02 20:44:55.705 2025-03-02 20:44:55.705 422334 2789 422986 5173 3 1907 2025-03-03 09:40:07.264 2025-03-03 09:40:07.264 422334 2789 423366 13162 6 1908 2025-03-02 22:49:43.41 2025-03-02 22:49:43.41 422334 2789 423050 10493 9 1909 2025-03-02 22:33:51.225 2025-03-02 22:33:51.225 422334 2789 423041 692 6 1910 2025-03-02 20:53:37.782 2025-03-02 20:53:37.782 422334 2789 422995 21501 4 1911 2025-03-03 02:10:39.857 2025-03-03 02:10:39.857 422334 2789 423130 16830 5 1912 2025-03-02 14:54:57.327 2025-03-02 14:54:57.327 422334 2789 422574 20243 4 1913 2025-03-02 14:49:57.505 2025-03-02 14:49:57.505 422334 2789 422569 769 3 1914 2025-03-09 16:02:24.424 2025-03-09 16:02:24.424 405361 15049 431192 683 1 1915 2025-02-16 01:52:42.394 2025-02-16 01:52:42.394 404334 16059 404600 19217 3 1916 2025-02-16 00:43:36.491 2025-02-16 00:43:36.491 404334 16059 404546 16562 2 1917 2025-02-15 21:08:46.209 2025-02-15 21:08:46.209 404334 16059 404411 20616 1 1918 2025-03-09 16:02:26.941 2025-03-09 16:02:26.941 405321 3506 431193 10698 1 1919 2025-03-02 21:23:18.578 2025-03-02 21:23:18.578 422637 19463 423006 20612 1 1920 2025-03-02 15:58:01.551 2025-03-02 15:58:01.551 422637 19463 422669 5761 1 1921 2025-03-02 15:45:14.705 2025-03-02 15:45:14.705 422637 19463 422655 5495 1 1922 2025-03-19 08:52:40.559 2025-03-19 08:52:40.559 443297 14225 443308 12951 2 1923 2025-03-19 09:10:00.332 2025-03-19 09:10:00.332 443297 14225 443330 16695 2 1924 2025-03-19 09:13:45.432 2025-03-19 09:13:45.432 443297 14225 443333 5578 3 1925 2025-03-19 09:07:41.402 2025-03-19 09:07:41.402 443297 14225 443328 20490 1 1926 2025-03-19 08:51:25.155 2025-03-19 08:51:25.155 443297 14225 443301 2674 1 1927 2025-03-19 08:55:25.19 2025-03-19 08:55:25.19 443297 14225 443311 1426 3 1928 2025-03-19 08:57:20.854 2025-03-19 08:57:20.854 443297 14225 443315 11220 4 1929 2025-03-19 10:17:52.718 2025-03-19 10:17:52.718 443297 14225 443392 9920 5 1930 2025-03-19 09:05:32.466 2025-03-19 09:05:32.466 443297 14225 443325 20117 4 1931 2025-03-15 07:24:56.016 2025-03-15 07:24:56.016 438038 2832 438047 20687 1 1932 2025-02-16 03:04:01.352 2025-02-16 03:04:01.352 404561 1985 404625 19217 1 1933 2025-03-09 15:45:12.101 2025-03-09 15:45:12.101 431131 19581 431149 16282 3 1934 2025-03-09 15:44:32.258 2025-03-09 15:44:32.258 431131 19581 431147 20280 1 1935 2025-03-09 15:42:49.473 2025-03-09 15:42:49.473 431131 19581 431142 18533 2 1936 2025-03-09 15:40:36.923 2025-03-09 15:40:36.923 431131 19581 431140 20871 1 1937 2025-03-19 12:37:42.109 2025-03-19 12:37:42.109 443554 685 443601 16309 1 1938 2025-03-19 12:45:44.463 2025-03-19 12:45:44.463 443554 685 443623 11454 2 1939 2025-03-19 12:45:34.804 2025-03-19 12:45:34.804 443554 685 443622 998 1 1940 2025-03-19 12:47:22.309 2025-03-19 12:47:22.309 443554 685 443635 2232 2 1941 2025-03-18 14:35:38.185 2025-03-18 14:35:38.185 442367 21829 442368 631 1 1942 2025-03-02 20:17:01.724 2025-03-02 20:17:01.724 422960 4043 422965 2537 1 1943 2025-03-02 21:37:39.998 2025-03-02 21:37:39.998 422960 4043 423016 17838 3 1944 2025-03-02 20:12:06.837 2025-03-02 20:12:06.837 422960 4043 422962 1316 1 1945 2025-03-02 20:34:40.451 2025-03-02 20:34:40.451 422960 4043 422980 1213 2 1946 2025-03-02 20:31:12.456 2025-03-02 20:31:12.456 422960 4043 422976 17316 2 1947 2025-03-02 22:13:26.773 2025-03-02 22:13:26.773 422960 4043 423032 8287 1 1948 2025-03-02 22:17:08.37 2025-03-02 22:17:08.37 422960 4043 423034 16965 1 1949 2025-03-15 07:23:48.35 2025-03-15 07:23:48.35 437886 19417 438046 6471 1 1950 2025-02-16 02:30:21.935 2025-02-16 02:30:21.935 404614 19735 404617 13767 1 1951 2025-02-16 03:09:37.118 2025-02-16 03:09:37.118 404614 19735 404628 3400 2 1952 2025-02-16 02:49:18.083 2025-02-16 02:49:18.083 404614 19735 404621 1603 2 1953 2025-02-16 03:09:37.118 2025-02-16 03:09:37.118 404617 13767 404628 3400 1 1954 2025-02-16 02:49:18.083 2025-02-16 02:49:18.083 404617 13767 404621 1603 1 1955 2025-02-16 03:15:08.194 2025-02-16 03:15:08.194 404570 17710 404630 21455 2 1956 2025-02-16 02:00:21.834 2025-02-16 02:00:21.834 404570 17710 404605 12935 2 1957 2025-02-16 01:39:58.738 2025-02-16 01:39:58.738 404570 17710 404590 11158 1 1958 2025-02-16 03:15:08.194 2025-02-16 03:15:08.194 404590 11158 404630 21455 1 1959 2025-02-16 02:00:21.834 2025-02-16 02:00:21.834 404590 11158 404605 12935 1 1960 2025-03-15 06:55:37.039 2025-03-15 06:55:37.039 437955 5495 438038 2832 1 1961 2025-03-15 02:47:39.641 2025-03-15 02:47:39.641 437955 5495 437956 2775 1 1962 2025-03-15 07:24:56.016 2025-03-15 07:24:56.016 437955 5495 438047 20687 2 1963 2025-03-03 10:30:51.403 2025-03-03 10:30:51.403 423373 9329 423391 19930 1 1964 2025-02-23 18:30:34.973 2025-02-23 18:30:34.973 413869 20897 414219 17411 2 1965 2025-03-04 05:22:39.359 2025-03-04 05:22:39.359 413869 20897 424435 2176 2 1966 2025-02-23 20:11:20.953 2025-02-23 20:11:20.953 413869 20897 414341 13177 1 1967 2025-02-23 17:25:53.355 2025-02-23 17:25:53.355 413869 20897 414157 16270 1 1968 2025-02-24 18:54:58.52 2025-02-24 18:54:58.52 415285 1009 415382 15226 1 1969 2025-02-20 13:06:05.627 2025-02-20 13:06:05.627 410080 21369 410379 10056 1 1970 2025-02-20 13:50:21.243 2025-02-20 13:50:21.243 410080 21369 410472 699 2 1971 2025-03-04 05:22:39.359 2025-03-04 05:22:39.359 414341 13177 424435 2176 1 1972 2025-03-01 15:09:24.705 2025-03-01 15:09:24.705 386199 919 421301 11417 1 1973 2025-03-19 12:16:32.944 2025-03-19 12:16:32.944 443548 20990 443557 21798 1 1974 2025-03-19 12:18:39.531 2025-03-19 12:18:39.531 443548 20990 443562 15326 2 1975 2025-03-19 12:20:32.455 2025-03-19 12:20:32.455 443548 20990 443568 15119 2 1976 2025-03-19 12:18:03.174 2025-03-19 12:18:03.174 443548 20990 443560 11648 1 1977 2025-03-09 16:05:40.359 2025-03-09 16:05:40.359 394884 13076 431240 5779 1 1978 2025-02-25 09:00:59.368 2025-02-25 09:00:59.368 415892 8459 415933 17014 1 1979 2025-03-13 23:50:09.093 2025-03-13 23:50:09.093 436683 2640 436833 21021 1 1980 2025-03-13 21:18:04.463 2025-03-13 21:18:04.463 436683 2640 436732 12490 1 1981 2025-03-14 00:18:22.456 2025-03-14 00:18:22.456 436683 2640 436853 746 2 1982 2025-03-13 19:42:44.687 2025-03-13 19:42:44.687 436683 2640 436690 7746 1 1983 2025-03-13 19:45:44.385 2025-03-13 19:45:44.385 436683 2640 436695 20133 2 1984 2025-03-13 19:47:43.455 2025-03-13 19:47:43.455 436683 2640 436696 8284 3 1985 2025-03-13 19:50:07.505 2025-03-13 19:50:07.505 436683 2640 436698 1142 4 1986 2025-03-13 19:49:02.154 2025-03-13 19:49:02.154 436683 2640 436697 13378 1 1987 2025-03-14 01:24:28.109 2025-03-14 01:24:28.109 436683 2640 436884 8168 3 1988 2025-03-19 18:48:53.206 2025-03-19 18:48:53.206 436683 2640 444285 20185 4 1989 2025-03-19 22:42:52.686 2025-03-19 22:42:52.686 436683 2640 444464 20179 5 1990 2025-02-25 23:53:39.456 2025-02-25 23:53:39.456 416310 5761 416951 19829 1 1991 2025-02-26 03:42:06.371 2025-02-26 03:42:06.371 416310 5761 417058 17082 1 1992 2025-03-12 12:10:36.551 2025-03-12 12:10:36.551 434987 989 435028 1389 1 1993 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 424403 21263 424408 12049 2 1994 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 424403 21263 424405 844 1 1995 2025-02-20 16:47:40.465 2025-02-20 16:47:40.465 410743 15052 410744 20871 1 1996 2025-02-23 14:23:23.244 2025-02-23 14:23:23.244 413892 12139 413904 18412 1 1997 2025-02-23 14:37:17.613 2025-02-23 14:37:17.613 413892 12139 413942 5112 1 1998 2025-03-04 04:18:28.842 2025-03-04 04:18:28.842 424212 20691 424404 21271 1 1999 2025-02-25 08:13:24.355 2025-02-25 08:13:24.355 406927 21136 415892 8459 1 2000 2025-02-25 09:00:59.368 2025-02-25 09:00:59.368 406927 21136 415933 17014 2 2001 2025-03-14 08:02:50.156 2025-03-14 08:02:50.156 437018 21401 437029 9843 1 2002 2025-02-15 23:57:03.257 2025-02-15 23:57:03.257 404510 16145 404516 11776 1 2003 2025-03-09 15:45:12.101 2025-03-09 15:45:12.101 431142 18533 431149 16282 1 2004 2025-03-19 15:38:16.943 2025-03-19 15:38:16.943 443940 18011 443958 9335 1 2005 2025-03-19 15:54:22.783 2025-03-19 15:54:22.783 443940 18011 443982 19537 2 2006 2025-03-12 14:56:12.389 2025-03-12 14:56:12.389 349 12562 435250 1237 1 2007 2025-03-13 04:19:34.832 2025-03-13 04:19:34.832 349 12562 435884 3213 1 2008 2025-02-18 11:29:42.319 2025-02-18 11:29:42.319 407786 14152 407788 993 1 2009 2025-03-09 15:45:12.101 2025-03-09 15:45:12.101 431140 20871 431149 16282 2 2010 2025-03-09 15:42:49.473 2025-03-09 15:42:49.473 431140 20871 431142 18533 1 2011 2025-02-15 16:07:57.295 2025-02-15 16:07:57.295 404107 4238 404183 826 3 2012 2025-02-15 15:17:02.374 2025-02-15 15:17:02.374 404107 4238 404130 21338 2 2013 2025-02-15 15:15:17.391 2025-02-15 15:15:17.391 404107 4238 404126 2734 1 2014 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 424099 15060 424408 12049 5 2015 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 424099 15060 424401 14990 2 2016 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 424099 15060 424382 18743 1 2017 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 424099 15060 424403 21263 3 2018 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 424099 15060 424405 844 4 2019 2025-02-13 12:01:49.492 2025-02-13 12:01:49.492 401758 2347 401801 716 1 2020 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 424382 18743 424408 12049 4 2021 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 424382 18743 424401 14990 1 2022 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 424382 18743 424403 21263 2 2023 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 424382 18743 424405 844 3 2024 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 424049 8245 424408 12049 8 2025 2025-03-03 20:31:56.013 2025-03-03 20:31:56.013 424049 8245 424099 15060 3 2026 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 424049 8245 424401 14990 5 2027 2025-03-03 20:28:10.099 2025-03-03 20:28:10.099 424049 8245 424094 21734 2 2028 2025-03-03 20:19:40.617 2025-03-03 20:19:40.617 424049 8245 424082 9337 1 2029 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 424049 8245 424382 18743 4 2030 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 424049 8245 424403 21263 6 2031 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 424049 8245 424405 844 7 2032 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 424401 14990 424408 12049 3 2033 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 424401 14990 424403 21263 1 2034 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 424401 14990 424405 844 2 2035 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 424405 844 424408 12049 1 2036 2025-02-15 19:59:11.925 2025-02-15 19:59:11.925 404331 16724 404363 11789 1 2037 2025-02-25 23:07:09.299 2025-02-25 23:07:09.299 416325 687 416912 15119 1 2038 2025-02-26 03:29:42.119 2025-02-26 03:29:42.119 416325 687 417053 5646 2 2039 2025-02-26 01:53:59.296 2025-02-26 01:53:59.296 416382 18412 417013 17526 2 2040 2025-02-26 00:52:07.325 2025-02-26 00:52:07.325 416382 18412 416991 9669 1 2041 2025-02-26 03:48:11.97 2025-02-26 03:48:11.97 416382 18412 417060 1244 3 2042 2025-03-03 20:35:38.484 2025-03-03 20:35:38.484 416382 18412 424107 5806 3 2043 2025-02-25 22:44:47.449 2025-02-25 22:44:47.449 416660 5175 416886 711 1 2044 2025-03-12 11:26:36.151 2025-03-12 11:26:36.151 434227 20861 434970 17209 1 2045 2025-03-19 21:00:14.153 2025-03-19 21:00:14.153 444206 3213 444402 12220 1 2046 2025-03-14 00:06:29.625 2025-03-14 00:06:29.625 436832 21647 436846 9863 1 2047 2025-03-19 20:03:08.232 2025-03-19 20:03:08.232 444340 16633 444351 2233 2 2048 2025-03-19 20:00:02.534 2025-03-19 20:00:02.534 444340 16633 444348 19535 1 2049 2025-03-19 22:28:13.631 2025-03-19 22:28:13.631 444453 1585 444455 1602 1 2050 2025-02-20 15:14:23.495 2025-02-20 15:14:23.495 410573 13038 410620 6360 1 2051 2025-03-19 22:18:27.114 2025-03-19 22:18:27.114 444436 5293 444453 1585 2 2052 2025-03-19 22:04:01.03 2025-03-19 22:04:01.03 444436 5293 444444 5904 1 2053 2025-03-19 22:28:13.631 2025-03-19 22:28:13.631 444436 5293 444455 1602 3 2054 2025-03-13 06:28:55.781 2025-03-13 06:28:55.781 435914 1761 435953 14258 1 2055 2025-03-13 05:22:02.922 2025-03-13 05:22:02.922 435914 1761 435915 20681 1 2056 2025-03-07 13:51:48.615 2025-03-07 13:51:48.615 428526 10611 428665 2327 1 2057 2025-03-19 19:53:47.877 2025-03-19 19:53:47.877 444332 5809 444340 16633 1 2058 2025-03-19 20:03:08.232 2025-03-19 20:03:08.232 444332 5809 444351 2233 3 2059 2025-03-19 20:00:02.534 2025-03-19 20:00:02.534 444332 5809 444348 19535 2 2060 2025-03-04 05:15:47.423 2025-03-04 05:15:47.423 419794 2724 424431 5752 1 2061 2025-03-19 19:53:47.877 2025-03-19 19:53:47.877 444289 3506 444340 16633 2 2062 2025-03-19 20:03:08.232 2025-03-19 20:03:08.232 444289 3506 444351 2233 4 2063 2025-03-19 19:47:12.523 2025-03-19 19:47:12.523 444289 3506 444332 5809 1 2064 2025-03-19 20:00:02.534 2025-03-19 20:00:02.534 444289 3506 444348 19535 3 2065 2025-03-19 19:53:47.877 2025-03-19 19:53:47.877 444277 9184 444340 16633 3 2066 2025-03-19 20:03:08.232 2025-03-19 20:03:08.232 444277 9184 444351 2233 5 2067 2025-03-19 19:47:12.523 2025-03-19 19:47:12.523 444277 9184 444332 5809 2 2068 2025-03-19 18:50:54.18 2025-03-19 18:50:54.18 444277 9184 444289 3506 1 2069 2025-03-19 20:00:02.534 2025-03-19 20:00:02.534 444277 9184 444348 19535 4 2070 2025-03-04 00:51:25.925 2025-03-04 00:51:25.925 423968 13143 424328 21825 4 2071 2025-03-04 00:56:49.401 2025-03-04 00:56:49.401 423968 13143 424331 4074 5 2072 2025-03-04 02:13:03.468 2025-03-04 02:13:03.468 423968 13143 424348 20179 4 2073 2025-03-04 02:15:24.016 2025-03-04 02:15:24.016 423968 13143 424350 14939 2 2074 2025-03-04 00:32:59.19 2025-03-04 00:32:59.19 423968 13143 424307 2583 2 2075 2025-03-04 00:41:48.656 2025-03-04 00:41:48.656 423968 13143 424319 21804 3 2076 2025-03-03 21:43:16.681 2025-03-03 21:43:16.681 423968 13143 424192 2832 1 2077 2025-03-19 19:53:47.877 2025-03-19 19:53:47.877 444207 1620 444340 16633 5 2078 2025-03-19 20:03:08.232 2025-03-19 20:03:08.232 444207 1620 444351 2233 7 2079 2025-03-19 19:47:12.523 2025-03-19 19:47:12.523 444207 1620 444332 5809 4 2080 2025-03-19 18:50:54.18 2025-03-19 18:50:54.18 444207 1620 444289 3506 3 2081 2025-03-19 18:46:10.174 2025-03-19 18:46:10.174 444207 1620 444277 9184 2 2082 2025-03-19 18:13:37.246 2025-03-19 18:13:37.246 444207 1620 444213 2088 1 2083 2025-03-19 20:00:02.534 2025-03-19 20:00:02.534 444207 1620 444348 19535 6 2084 2025-03-19 19:53:47.877 2025-03-19 19:53:47.877 444132 16284 444340 16633 8 2085 2025-03-19 20:03:08.232 2025-03-19 20:03:08.232 444132 16284 444351 2233 10 2086 2025-03-19 19:47:12.523 2025-03-19 19:47:12.523 444132 16284 444332 5809 7 2087 2025-03-19 18:50:54.18 2025-03-19 18:50:54.18 444132 16284 444289 3506 6 2088 2025-03-19 18:46:10.174 2025-03-19 18:46:10.174 444132 16284 444277 9184 5 2089 2025-03-19 18:11:16.996 2025-03-19 18:11:16.996 444132 16284 444207 1620 3 2090 2025-03-19 17:33:23.532 2025-03-19 17:33:23.532 444132 16284 444150 20674 2 2091 2025-03-19 18:13:37.246 2025-03-19 18:13:37.246 444132 16284 444213 2088 4 2092 2025-03-19 17:30:18.716 2025-03-19 17:30:18.716 444132 16284 444143 937 1 2093 2025-03-19 20:00:02.534 2025-03-19 20:00:02.534 444132 16284 444348 19535 9 2094 2025-03-19 19:53:47.877 2025-03-19 19:53:47.877 444150 20674 444340 16633 6 2095 2025-03-19 20:03:08.232 2025-03-19 20:03:08.232 444150 20674 444351 2233 8 2096 2025-03-19 19:47:12.523 2025-03-19 19:47:12.523 444150 20674 444332 5809 5 2097 2025-03-19 18:50:54.18 2025-03-19 18:50:54.18 444150 20674 444289 3506 4 2098 2025-03-19 18:46:10.174 2025-03-19 18:46:10.174 444150 20674 444277 9184 3 2099 2025-03-19 18:11:16.996 2025-03-19 18:11:16.996 444150 20674 444207 1620 1 2100 2025-03-19 18:13:37.246 2025-03-19 18:13:37.246 444150 20674 444213 2088 2 2101 2025-03-19 20:00:02.534 2025-03-19 20:00:02.534 444150 20674 444348 19535 7 2102 2025-03-19 19:53:47.877 2025-03-19 19:53:47.877 444213 2088 444340 16633 4 2103 2025-03-19 20:03:08.232 2025-03-19 20:03:08.232 444213 2088 444351 2233 6 2104 2025-03-19 19:47:12.523 2025-03-19 19:47:12.523 444213 2088 444332 5809 3 2105 2025-03-19 18:50:54.18 2025-03-19 18:50:54.18 444213 2088 444289 3506 2 2106 2025-03-19 18:46:10.174 2025-03-19 18:46:10.174 444213 2088 444277 9184 1 2107 2025-03-19 20:00:02.534 2025-03-19 20:00:02.534 444213 2088 444348 19535 5 2108 2025-03-04 05:14:48.279 2025-03-04 05:14:48.279 424414 654 424430 17722 1 2109 2025-03-09 16:05:37.442 2025-03-09 16:05:37.442 394953 20717 431239 9354 1 2110 2025-02-25 13:46:54.177 2025-02-25 13:46:54.177 416220 15624 416232 21064 2 2111 2025-02-25 13:43:38.61 2025-02-25 13:43:38.61 416220 15624 416229 831 1 2112 2025-03-13 10:46:20.494 2025-03-13 10:46:20.494 436120 880 436134 17183 1 2113 2025-03-15 04:52:18.044 2025-03-15 04:52:18.044 437828 17690 437988 18330 1 2114 2025-03-19 03:40:34.863 2025-03-19 03:40:34.863 442751 10719 443096 3706 1 2115 2025-03-18 21:13:43.817 2025-03-18 21:13:43.817 442751 10719 442861 21228 2 2116 2025-03-19 04:54:52.897 2025-03-19 04:54:52.897 442751 10719 443142 21825 1 2117 2025-03-19 05:19:21.401 2025-03-19 05:19:21.401 442751 10719 443152 701 1 2118 2025-03-19 07:18:12.848 2025-03-19 07:18:12.848 442751 10719 443221 10661 1 2119 2025-03-19 07:37:22.768 2025-03-19 07:37:22.768 442751 10719 443231 21274 1 2120 2025-03-19 11:21:57.255 2025-03-19 11:21:57.255 442751 10719 443469 20756 2 2121 2025-03-19 11:10:44.034 2025-03-19 11:10:44.034 442751 10719 443457 10409 2 2122 2025-03-19 11:23:46.879 2025-03-19 11:23:46.879 442751 10719 443470 628 2 2123 2025-03-18 21:08:58.113 2025-03-18 21:08:58.113 442751 10719 442854 7966 1 2124 2025-03-18 21:16:13.235 2025-03-18 21:16:13.235 442751 10719 442867 20588 2 2125 2025-03-18 20:47:28.624 2025-03-18 20:47:28.624 442751 10719 442815 19459 1 2126 2025-03-19 00:52:27.179 2025-03-19 00:52:27.179 442751 10719 443029 900 1 2127 2025-03-18 21:53:32.33 2025-03-18 21:53:32.33 442751 10719 442907 9438 1 2128 2025-03-18 21:10:48.071 2025-03-18 21:10:48.071 442751 10719 442856 11158 1 2129 2025-03-19 08:56:26.683 2025-03-19 08:56:26.683 442751 10719 443313 8570 1 2130 2025-03-19 11:36:25.664 2025-03-19 11:36:25.664 442751 10719 443485 21713 3 2131 2025-03-19 11:25:30.905 2025-03-19 11:25:30.905 442751 10719 443471 7558 2 2132 2025-03-19 11:31:02.406 2025-03-19 11:31:02.406 442751 10719 443476 7580 2 2133 2025-03-19 11:32:38.417 2025-03-19 11:32:38.417 442751 10719 443479 19463 3 2134 2025-03-19 11:34:43.447 2025-03-19 11:34:43.447 442751 10719 443482 20817 2 2135 2025-03-19 11:39:48.199 2025-03-19 11:39:48.199 442751 10719 443488 16667 2 2136 2025-03-18 16:49:05.438 2025-03-18 16:49:05.438 442551 9332 442571 3990 1 2137 2025-02-24 18:52:28.498 2025-02-24 18:52:28.498 415027 21296 415376 3409 1 2138 2025-03-04 00:51:25.925 2025-03-04 00:51:25.925 423925 18241 424328 21825 5 2139 2025-03-04 00:56:49.401 2025-03-04 00:56:49.401 423925 18241 424331 4074 6 2140 2025-03-04 02:13:03.468 2025-03-04 02:13:03.468 423925 18241 424348 20179 5 2141 2025-03-04 02:15:24.016 2025-03-04 02:15:24.016 423925 18241 424350 14939 3 2142 2025-03-03 18:40:35.573 2025-03-03 18:40:35.573 423925 18241 423968 13143 1 2143 2025-03-04 00:32:59.19 2025-03-04 00:32:59.19 423925 18241 424307 2583 3 2144 2025-03-04 00:41:48.656 2025-03-04 00:41:48.656 423925 18241 424319 21804 4 2145 2025-03-03 21:43:16.681 2025-03-03 21:43:16.681 423925 18241 424192 2832 2 2146 2025-03-04 00:51:25.925 2025-03-04 00:51:25.925 424192 2832 424328 21825 3 2147 2025-03-04 00:56:49.401 2025-03-04 00:56:49.401 424192 2832 424331 4074 4 2148 2025-03-04 02:13:03.468 2025-03-04 02:13:03.468 424192 2832 424348 20179 3 2149 2025-03-04 02:15:24.016 2025-03-04 02:15:24.016 424192 2832 424350 14939 1 2150 2025-03-04 00:32:59.19 2025-03-04 00:32:59.19 424192 2832 424307 2583 1 2151 2025-03-04 00:41:48.656 2025-03-04 00:41:48.656 424192 2832 424319 21804 2 2152 2025-03-18 14:33:47.15 2025-03-18 14:33:47.15 442229 644 442366 16214 3 2153 2025-03-18 14:27:36.119 2025-03-18 14:27:36.119 442229 644 442356 11443 2 2154 2025-03-18 14:23:57.719 2025-03-18 14:23:57.719 442229 644 442350 9 1 2155 2025-03-19 10:31:48.487 2025-03-19 10:31:48.487 442820 20636 443405 12870 5 2156 2025-03-18 22:46:52.979 2025-03-18 22:46:52.979 442820 20636 442948 20243 3 2157 2025-03-18 21:23:58.998 2025-03-18 21:23:58.998 442820 20636 442876 1567 1 2158 2025-03-18 21:14:34.63 2025-03-18 21:14:34.63 442820 20636 442863 9261 1 2159 2025-03-19 20:53:47.081 2025-03-19 20:53:47.081 442820 20636 444396 16387 2 2160 2025-03-19 19:23:08.112 2025-03-19 19:23:08.112 442820 20636 444314 19303 1 2161 2025-03-19 09:33:15.74 2025-03-19 09:33:15.74 442820 20636 443353 18306 4 2162 2025-03-18 21:26:23.283 2025-03-18 21:26:23.283 442820 20636 442880 11866 2 2163 2025-03-26 19:48:52.196 2025-03-26 19:48:52.196 455198 16929 455201 13038 1 2164 2025-03-07 14:42:06.008 2025-03-07 14:42:06.008 428697 1489 428719 1307 1 2165 2025-03-04 04:13:20.918 2025-03-04 04:13:20.918 424336 12516 424402 666 1 2166 2025-02-18 14:45:36.378 2025-02-18 14:45:36.378 408019 16998 408045 656 1 2167 2025-03-19 11:31:22.455 2025-03-19 11:31:22.455 443197 16965 443477 616 2 2168 2025-03-19 11:25:36.639 2025-03-19 11:25:36.639 443197 16965 443473 2367 1 2169 2025-03-19 11:55:12.485 2025-03-19 11:55:12.485 443197 16965 443519 21571 2 2170 2025-03-19 12:04:34.829 2025-03-19 12:04:34.829 443197 16965 443533 21033 4 2171 2025-03-19 23:45:02.562 2025-03-19 23:45:02.562 443197 16965 444492 10393 1 2172 2025-03-20 01:17:16.345 2025-03-20 01:17:16.345 443197 16965 444529 1726 1 2173 2025-03-20 02:39:06.797 2025-03-20 02:39:06.797 443197 16965 444563 9367 1 2174 2025-03-19 11:45:42.177 2025-03-19 11:45:42.177 443197 16965 443504 848 3 2175 2025-03-19 12:08:46.05 2025-03-19 12:08:46.05 443197 16965 443539 14385 1 2176 2025-03-19 12:49:33.571 2025-03-19 12:49:33.571 443197 16965 443646 11240 1 2177 2025-03-03 23:22:56.362 2025-03-03 23:22:56.362 424242 8423 424249 1745 1 2178 2025-03-02 15:36:38.005 2025-03-02 15:36:38.005 422618 21051 422643 20642 2 2179 2025-03-02 15:34:27.097 2025-03-02 15:34:27.097 422618 21051 422635 1726 1 2180 2025-03-18 14:33:47.15 2025-03-18 14:33:47.15 442356 11443 442366 16214 1 2181 2025-03-03 21:39:51.623 2025-03-03 21:39:51.623 423739 21051 424187 21238 1 2182 2025-03-03 21:12:44.54 2025-03-03 21:12:44.54 423739 21051 424163 4538 2 2183 2025-03-03 15:42:15.47 2025-03-03 15:42:15.47 423739 21051 423784 15484 1 2184 2025-03-18 14:33:47.15 2025-03-18 14:33:47.15 442350 9 442366 16214 2 2185 2025-03-18 14:27:36.119 2025-03-18 14:27:36.119 442350 9 442356 11443 1 2186 2025-03-09 15:16:35.515 2025-03-09 15:16:35.515 431009 1352 431070 1429 1 2187 2025-03-20 01:36:49.854 2025-03-20 01:36:49.854 1620 17519 444538 1038 1 2188 2025-03-20 02:24:13.216 2025-03-20 02:24:13.216 1620 17519 444556 1584 2 2189 2023-09-07 11:04:10.958 2023-09-07 11:04:10.958 1620 17519 60799 9363 1 2190 2025-03-12 03:04:53.507 2025-03-12 03:04:53.507 1620 17519 434568 17030 2 2191 2025-03-27 21:30:33.2 2025-03-27 21:30:33.2 4177 627 456781 21555 1 2192 2025-03-02 15:36:38.005 2025-03-02 15:36:38.005 422635 1726 422643 20642 1 2193 2025-02-18 14:50:56.809 2025-02-18 14:50:56.809 408025 1726 408061 7913 1 2194 2025-03-12 20:23:00.187 2025-03-12 20:23:00.187 435608 1469 435615 895 1 2195 2025-03-13 10:14:26.923 2025-03-13 10:14:26.923 435608 1469 436094 16336 3 2196 2025-03-12 20:37:35.443 2025-03-12 20:37:35.443 435608 1469 435628 854 2 2197 2025-02-20 16:16:46.599 2025-02-20 16:16:46.599 410681 1890 410705 4538 1 2198 2025-03-18 21:02:52.25 2025-03-18 21:02:52.25 442628 2703 442843 1712 9 2199 2025-03-18 20:56:44.844 2025-03-18 20:56:44.844 442628 2703 442834 880 8 2200 2025-03-18 18:21:39.626 2025-03-18 18:21:39.626 442628 2703 442670 4487 5 2201 2025-03-19 13:45:12.934 2025-03-19 13:45:12.934 442628 2703 443730 1198 1 2202 2025-03-18 20:54:02.509 2025-03-18 20:54:02.509 442628 2703 442828 695 7 2203 2025-03-18 20:51:12.059 2025-03-18 20:51:12.059 442628 2703 442824 4064 6 2204 2025-03-18 18:09:57.293 2025-03-18 18:09:57.293 442628 2703 442650 2775 4 2205 2025-03-18 18:07:50.174 2025-03-18 18:07:50.174 442628 2703 442648 21254 3 2206 2025-03-18 18:05:42.756 2025-03-18 18:05:42.756 442628 2703 442646 10102 2 2207 2025-03-18 18:02:31.223 2025-03-18 18:02:31.223 442628 2703 442639 11516 1 2208 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403809 8416 403813 11073 1 2209 2025-03-19 13:14:09.906 2025-03-19 13:14:09.906 443667 1488 443682 8037 3 2210 2025-03-19 13:05:15.207 2025-03-19 13:05:15.207 443667 1488 443670 679 1 2211 2025-03-19 13:12:49.819 2025-03-19 13:12:49.819 443667 1488 443679 14220 2 2212 2025-03-19 09:34:13.961 2025-03-19 09:34:13.961 443319 8535 443354 5500 1 2213 2025-03-19 10:29:40.879 2025-03-19 10:29:40.879 443319 8535 443403 672 1 2214 2025-03-19 11:21:29.097 2025-03-19 11:21:29.097 443319 8535 443468 10981 1 2215 2025-03-19 13:25:17.206 2025-03-19 13:25:17.206 443319 8535 443706 14168 1 2216 2025-03-19 04:26:07.235 2025-03-19 04:26:07.235 443122 895 443123 16282 1 2217 2025-03-04 04:54:07.672 2025-03-04 04:54:07.672 424378 21427 424418 20904 1 2218 2025-03-04 02:50:20.247 2025-03-04 02:50:20.247 60694 16513 424361 5377 1 2219 2025-02-19 19:45:13.64 2025-02-19 19:45:13.64 409694 8284 409716 836 1 2220 2025-02-15 06:03:30.277 2025-02-15 06:03:30.277 65472 2329 403719 4378 1 2221 2025-03-09 16:05:35.28 2025-03-09 16:05:35.28 395087 9183 431238 666 1 2222 2025-02-15 05:37:44.328 2025-02-15 05:37:44.328 21747 963 403692 19333 1 2223 2025-03-09 16:05:33.274 2025-03-09 16:05:33.274 395180 19777 431237 11417 1 2224 2024-06-20 10:05:46.599 2024-06-20 10:05:46.599 187132 21060 187267 19992 1 2225 2025-03-23 04:30:52.13 2025-03-23 04:30:52.13 233538 21070 448996 16950 1 2226 2025-03-03 22:19:58.99 2025-03-03 22:19:58.99 239180 21012 424216 17030 1 2227 2025-02-15 05:59:43.043 2025-02-15 05:59:43.043 243284 19488 403711 20636 1 2228 2025-03-27 09:56:02.43 2025-03-27 09:56:02.43 24587 925 455751 708 2 2229 2025-03-23 19:14:47.695 2025-03-23 19:14:47.695 24587 925 450145 685 1 2230 2025-03-23 19:18:13.005 2025-03-23 19:18:13.005 5159 1046 450172 14381 1 2231 2025-02-15 05:28:32.271 2025-02-15 05:28:32.271 39793 20596 403684 14552 1 2232 2025-03-23 19:14:56.862 2025-03-23 19:14:56.862 86513 13348 450146 1611 1 2233 2025-03-24 14:08:37.584 2025-03-24 14:08:37.584 92367 20701 451351 21647 1 2234 2025-03-23 19:17:54.181 2025-03-23 19:17:54.181 92423 14669 450170 9985 1 2235 2025-02-15 06:01:17.29 2025-02-15 06:01:17.29 106095 733 403713 18114 1 2236 2025-03-19 20:03:35.128 2025-03-19 20:03:35.128 240894 21091 444352 1603 1 2237 2025-02-15 06:03:19.558 2025-02-15 06:03:19.558 111278 16839 403718 19378 1 2238 2025-03-23 19:16:30.097 2025-03-23 19:16:30.097 113700 3304 450160 21413 1 2239 2025-03-27 21:32:53.4 2025-03-27 21:32:53.4 136580 8269 456786 18772 1 2240 2025-02-15 06:01:40.882 2025-02-15 06:01:40.882 153228 20504 403714 21349 1 2241 2025-03-12 14:11:33.206 2025-03-12 14:11:33.206 153228 20504 435182 1094 1 2242 2025-02-15 06:00:17.277 2025-02-15 06:00:17.277 155481 2156 403712 844 1 2243 2025-03-23 19:15:27.38 2025-03-23 19:15:27.38 173664 17116 450150 21051 1 2244 2025-03-04 00:11:12.145 2025-03-04 00:11:12.145 174107 17321 424295 15544 1 2245 2025-03-09 16:08:14.528 2025-03-09 16:08:14.528 392589 2338 431253 16149 1 2246 2025-03-09 16:08:12.146 2025-03-09 16:08:12.146 392661 6653 431252 1620 1 2247 2025-02-24 17:59:48.45 2025-02-24 17:59:48.45 191467 18673 415336 13097 1 2248 2025-02-26 00:16:56.214 2025-02-26 00:16:56.214 201110 5776 416968 4313 1 2249 2025-03-20 03:05:07.497 2025-03-20 03:05:07.497 214296 15119 444574 5308 1 2250 2025-03-19 21:56:36.651 2025-03-19 21:56:36.651 231006 889 444439 3213 1 2251 2025-02-13 17:32:01.494 2025-02-13 17:32:01.494 402342 1817 402345 20701 1 2252 2025-02-15 05:50:47.437 2025-02-15 05:50:47.437 261758 1012 403707 20987 1 2253 2025-03-23 01:05:27.045 2025-03-23 01:05:27.045 264122 9796 448913 2724 1 2254 2025-02-15 05:49:16.479 2025-02-15 05:49:16.479 269421 20377 403704 10661 1 2255 2025-02-14 05:15:20.374 2025-02-14 05:15:20.374 271272 8176 402814 686 1 2256 2025-02-15 22:01:32.666 2025-02-15 22:01:32.666 333299 1726 404447 21159 1 2257 2025-03-28 00:05:08.826 2025-03-28 00:05:08.826 287984 7899 456877 11678 1 2258 2025-03-23 01:00:13.131 2025-03-23 01:00:13.131 287984 7899 448908 1320 1 2259 2025-03-15 06:00:31.669 2025-03-15 06:00:31.669 392677 2492 438009 18473 1 2260 2025-03-12 11:33:24.278 2025-03-12 11:33:24.278 392677 2492 434979 11516 1 2261 2025-03-09 16:08:09.851 2025-03-09 16:08:09.851 392804 20596 431251 18468 1 2262 2025-02-16 00:17:08.558 2025-02-16 00:17:08.558 392837 18727 404520 3990 1 2263 2025-03-09 16:08:02.037 2025-03-09 16:08:02.037 393285 822 431248 10611 1 2264 2025-02-15 06:04:05.509 2025-02-15 06:04:05.509 297508 21771 403720 21402 1 2265 2025-03-27 21:34:22.945 2025-03-27 21:34:22.945 298804 12562 456787 624 1 2266 2025-02-15 05:50:17.096 2025-02-15 05:50:17.096 301817 16816 403706 10554 1 2267 2025-02-15 22:39:16.913 2025-02-15 22:39:16.913 306390 21631 404474 5175 1 2268 2025-03-02 07:08:07.47 2025-03-02 07:08:07.47 349072 20511 422003 718 1 2269 2025-02-15 18:26:37.045 2025-02-15 18:26:37.045 364153 9421 404280 15806 1 2270 2025-03-01 14:02:55.726 2025-03-01 14:02:55.726 367235 811 421225 16562 1 2271 2025-03-09 16:08:06.486 2025-03-09 16:08:06.486 392928 9275 431250 17218 1 2272 2025-03-09 16:07:59.024 2025-03-09 16:07:59.024 393475 2513 431247 19138 1 2273 2025-02-20 10:10:03.157 2025-02-20 10:10:03.157 367392 21026 410166 2537 1 2274 2025-03-09 16:09:54.153 2025-03-09 16:09:54.153 385880 11263 431265 5728 1 2275 2025-03-15 00:42:24.906 2025-03-15 00:42:24.906 368174 21218 437892 18306 1 2276 2025-03-09 16:23:13.101 2025-03-09 16:23:13.101 371743 9166 431352 9438 1 2277 2025-03-09 16:23:54.248 2025-03-09 16:23:54.248 375680 691 431366 20606 1 2278 2025-03-09 16:23:56.617 2025-03-09 16:23:56.617 375687 7682 431367 1046 1 2279 2025-02-14 05:22:25.332 2025-02-14 05:22:25.332 383440 6335 402818 8541 1 2280 2025-03-09 16:09:58.125 2025-03-09 16:09:58.125 385622 897 431266 20993 1 2281 2025-03-09 16:11:00.988 2025-03-09 16:11:00.988 381604 8380 431288 9354 1 2282 2025-03-09 16:10:50.351 2025-03-09 16:10:50.351 382751 17891 431284 8059 1 2283 2025-03-09 16:10:30.58 2025-03-09 16:10:30.58 383400 21709 431277 638 1 2284 2025-02-20 17:21:47.439 2025-02-20 17:21:47.439 387267 644 410788 15858 1 2285 2025-03-09 16:20:57.538 2025-03-09 16:20:57.538 389769 21067 431323 14941 1 2286 2025-03-09 16:21:03.079 2025-03-09 16:21:03.079 390147 9276 431325 9352 1 2287 2025-03-09 14:51:55.453 2025-03-09 14:51:55.453 392178 14168 430988 13553 1 2288 2025-03-09 16:08:26.053 2025-03-09 16:08:26.053 392210 11938 431258 4314 1 2289 2025-03-09 16:08:23.709 2025-03-09 16:08:23.709 392336 20825 431257 1785 1 2290 2025-03-09 16:08:21.614 2025-03-09 16:08:21.614 392338 18526 431256 16126 1 2291 2025-03-09 16:08:19.582 2025-03-09 16:08:19.582 392405 9833 431255 4035 1 2292 2025-03-09 16:08:16.811 2025-03-09 16:08:16.811 392573 21239 431254 749 1 2293 2025-03-09 16:08:04.379 2025-03-09 16:08:04.379 393114 15463 431249 17095 1 2294 2025-03-09 16:07:56.214 2025-03-09 16:07:56.214 394145 5175 431246 5708 1 2295 2025-02-13 12:42:15.452 2025-02-13 12:42:15.452 401603 21424 401888 1564 1 2296 2025-03-03 23:27:07.683 2025-03-03 23:27:07.683 394203 12656 424256 20778 7 2297 2025-03-03 23:28:45.232 2025-03-03 23:28:45.232 394203 12656 424259 8726 2 2298 2025-03-03 23:37:24.735 2025-03-03 23:37:24.735 394203 12656 424270 15103 1 2299 2025-03-03 23:58:30.43 2025-03-03 23:58:30.43 394203 12656 424284 20254 2 2300 2025-03-03 23:08:46.891 2025-03-03 23:08:46.891 394203 12656 424236 15488 6 2301 2025-03-03 23:04:17.804 2025-03-03 23:04:17.804 394203 12656 424233 18468 5 2302 2025-03-03 22:10:48.293 2025-03-03 22:10:48.293 394203 12656 424214 15588 4 2303 2025-02-06 21:40:35.799 2025-02-06 21:40:35.799 394203 12656 394251 17321 1 2304 2025-03-03 23:18:46.062 2025-03-03 23:18:46.062 394203 12656 424243 12277 7 2305 2025-03-03 20:49:19.703 2025-03-03 20:49:19.703 394203 12656 424131 8570 3 2306 2025-02-11 23:15:25.112 2025-02-11 23:15:25.112 394203 12656 400201 5597 2 2307 2025-03-03 20:46:40.447 2025-03-03 20:46:40.447 394203 12656 424127 3392 1 2308 2025-02-10 12:45:46.161 2025-02-10 12:45:46.161 394203 12656 397996 9921 1 2309 2025-03-09 16:07:53.399 2025-03-09 16:07:53.399 394457 19488 431245 1221 1 2310 2025-03-09 16:07:50.187 2025-03-09 16:07:50.187 394739 1718 431244 1609 1 2311 2025-02-16 09:08:46.406 2025-02-16 09:08:46.406 395356 980 404845 7675 1 2312 2025-02-15 20:15:40.004 2025-02-15 20:15:40.004 395841 21356 404371 18011 1 2313 2025-02-16 00:05:49.268 2025-02-16 00:05:49.268 395918 989 404517 11609 1 2314 2025-03-09 16:05:28.165 2025-03-09 16:05:28.165 396048 15052 431235 9347 1 2315 2025-03-09 16:05:23.37 2025-03-09 16:05:23.37 396141 4313 431234 2757 1 2316 2025-03-09 16:04:56.94 2025-03-09 16:04:56.94 397694 1354 431224 20826 1 2317 2025-02-15 18:47:32.161 2025-02-15 18:47:32.161 404237 4035 404301 21140 1 2318 2025-03-09 16:05:20.801 2025-03-09 16:05:20.801 396413 9364 431233 2774 1 2319 2025-03-09 16:05:17.793 2025-03-09 16:05:17.793 396641 19576 431232 18225 1 2320 2025-02-15 23:13:58.978 2025-02-15 23:13:58.978 400300 7674 404494 2195 1 2321 2025-02-15 23:13:21.122 2025-02-15 23:13:21.122 400350 20681 404493 15239 1 2322 2025-02-13 12:40:10.717 2025-02-13 12:40:10.717 401824 5455 401884 7966 1 2323 2025-02-14 11:32:03.178 2025-02-14 11:32:03.178 401824 5455 403028 16939 3 2324 2025-02-15 21:03:52.941 2025-02-15 21:03:52.941 401824 5455 404407 13216 5 2325 2025-02-13 14:45:11.582 2025-02-13 14:45:11.582 401824 5455 402083 11192 1 2326 2025-02-14 11:36:13.341 2025-02-14 11:36:13.341 401824 5455 403033 21249 4 2327 2025-02-14 11:01:24.943 2025-02-14 11:01:24.943 401824 5455 403009 20713 2 2328 2025-03-09 16:05:15.031 2025-03-09 16:05:15.031 396692 19403 431231 9796 1 2329 2025-02-13 21:28:24.48 2025-02-13 21:28:24.48 402590 11621 402626 3656 1 2330 2025-03-09 16:04:59.764 2025-03-09 16:04:59.764 397467 21498 431225 1030 1 2331 2025-03-09 16:04:00.007 2025-03-09 16:04:00.007 397861 16124 431222 876 1 2332 2025-02-14 23:59:46.748 2025-02-14 23:59:46.748 399955 8664 403561 726 1 2333 2025-03-03 23:28:45.232 2025-03-03 23:28:45.232 397996 9921 424259 8726 1 2334 2025-02-13 09:59:15.512 2025-02-13 09:59:15.512 398220 1114 401663 7587 1 2335 2025-02-14 09:15:10.019 2025-02-14 09:15:10.019 398392 676 402935 20563 1 2336 2025-03-09 16:03:57.411 2025-03-09 16:03:57.411 398470 1802 431221 11378 1 2337 2025-03-18 19:14:38.922 2025-03-18 19:14:38.922 398753 19463 442739 21090 1 2338 2025-02-15 15:56:27.193 2025-02-15 15:56:27.193 399223 18956 404171 4115 1 2339 2025-03-09 14:17:39.625 2025-03-09 14:17:39.625 399223 18956 430935 3439 1 2340 2025-02-21 12:21:06.363 2025-02-21 12:21:06.363 399223 18956 411435 794 1 2341 2025-03-09 16:03:51.789 2025-03-09 16:03:51.789 399308 5175 431219 11038 1 2342 2025-02-16 03:18:51.17 2025-02-16 03:18:51.17 404624 21249 404633 739 1 2343 2025-03-09 16:03:41.985 2025-03-09 16:03:41.985 400120 21485 431215 11590 1 2344 2025-03-09 16:03:39.847 2025-03-09 16:03:39.847 400296 14651 431214 13174 1 2345 2025-02-15 23:14:40.941 2025-02-15 23:14:40.941 400395 13547 404495 2204 1 2346 2025-02-18 15:03:48.509 2025-02-18 15:03:48.509 408039 21451 408093 2775 3 2347 2025-02-18 14:49:16.244 2025-02-18 14:49:16.244 408039 21451 408056 20157 1 2348 2025-02-18 14:56:12.684 2025-02-18 14:56:12.684 408039 21451 408069 8284 2 2349 2025-02-12 22:51:05.106 2025-02-12 22:51:05.106 400588 2640 401335 4570 1 2350 2025-03-09 16:03:36.435 2025-03-09 16:03:36.435 400697 21383 431213 21688 1 2351 2025-02-13 11:57:59.755 2025-02-13 11:57:59.755 400711 12821 401795 19980 1 2352 2025-02-13 00:07:45.172 2025-02-13 00:07:45.172 400739 1122 401386 5646 1 2353 2025-02-13 10:09:57.881 2025-02-13 10:09:57.881 400739 1122 401676 19854 2 2354 2025-02-13 07:25:21.701 2025-02-13 07:25:21.701 400739 1122 401578 16347 1 2355 2025-02-12 20:08:01.902 2025-02-12 20:08:01.902 400844 21518 401236 17517 1 2356 2025-02-13 17:29:45.673 2025-02-13 17:29:45.673 401714 15858 402341 2402 1 2357 2025-02-13 13:16:29.06 2025-02-13 13:16:29.06 401714 15858 401947 2734 1 2358 2025-02-13 10:52:40.417 2025-02-13 10:52:40.417 401716 1618 401724 732 1 2359 2025-02-14 06:21:07.752 2025-02-14 06:21:07.752 401726 1310 402847 19569 1 2360 2025-02-14 09:15:44.264 2025-02-14 09:15:44.264 401726 1310 402936 644 2 2361 2025-02-15 21:06:19.465 2025-02-15 21:06:19.465 401726 1310 404408 837 3 2362 2025-02-15 21:15:20.725 2025-02-15 21:15:20.725 401726 1310 404414 20120 4 2363 2025-02-13 17:36:09.026 2025-02-13 17:36:09.026 401773 2123 402351 20906 1 2364 2025-03-09 16:03:27.193 2025-03-09 16:03:27.193 401806 1471 431210 20157 1 2365 2025-02-13 15:12:55.956 2025-02-13 15:12:55.956 401818 2774 402138 1213 1 2366 2025-02-15 12:14:04.642 2025-02-15 12:14:04.642 401818 2774 403968 16336 1 2367 2025-03-09 16:03:02.199 2025-03-09 16:03:02.199 402056 14255 431207 658 1 2368 2025-02-13 19:16:08.024 2025-02-13 19:16:08.024 402438 1352 402503 19263 1 2369 2025-02-12 17:08:09.575 2025-02-12 17:08:09.575 400855 17798 401038 11522 1 2370 2025-03-09 16:03:31.884 2025-03-09 16:03:31.884 400872 20681 431212 987 1 2371 2025-02-13 06:28:52.877 2025-02-13 06:28:52.877 400918 1136 401547 3213 2 2372 2025-02-12 19:20:26.635 2025-02-12 19:20:26.635 400918 1136 401187 19417 1 2373 2025-02-12 21:05:36.988 2025-02-12 21:05:36.988 400918 1136 401286 4074 1 2374 2025-02-12 16:28:14.002 2025-02-12 16:28:14.002 400918 1136 400972 18901 1 2375 2025-02-13 12:01:49.492 2025-02-13 12:01:49.492 400967 777 401801 716 2 2376 2025-02-13 11:23:09.883 2025-02-13 11:23:09.883 400967 777 401758 2347 1 2377 2025-02-13 10:02:43.737 2025-02-13 10:02:43.737 401611 8570 401669 1814 2 2378 2025-02-13 18:08:19.268 2025-02-13 18:08:19.268 401611 8570 402412 20788 1 2379 2025-02-13 09:26:05.049 2025-02-13 09:26:05.049 401611 8570 401643 618 1 2380 2025-02-13 10:03:40.362 2025-02-13 10:03:40.362 401611 8570 401671 11450 1 2381 2025-02-14 06:21:07.752 2025-02-14 06:21:07.752 401611 8570 402847 19569 3 2382 2025-02-14 09:15:44.264 2025-02-14 09:15:44.264 401611 8570 402936 644 4 2383 2025-02-15 21:06:19.465 2025-02-15 21:06:19.465 401611 8570 404408 837 5 2384 2025-02-13 10:17:05.18 2025-02-13 10:17:05.18 401611 8570 401684 12490 1 2385 2025-02-13 10:03:28.853 2025-02-13 10:03:28.853 401611 8570 401670 8326 2 2386 2025-02-13 10:00:57.691 2025-02-13 10:00:57.691 401611 8570 401666 18241 1 2387 2025-02-15 21:15:20.725 2025-02-15 21:15:20.725 401611 8570 404414 20120 6 2388 2025-02-13 19:19:28.656 2025-02-13 19:19:28.656 401611 8570 402507 8985 2 2389 2025-02-13 19:05:17.237 2025-02-13 19:05:17.237 401611 8570 402490 21814 1 2390 2025-02-13 09:58:43.992 2025-02-13 09:58:43.992 401611 8570 401662 6137 1 2391 2025-02-13 09:35:29.422 2025-02-13 09:35:29.422 401611 8570 401649 1135 1 2392 2025-02-13 11:53:22.914 2025-02-13 11:53:22.914 401611 8570 401787 10944 1 2393 2025-02-13 10:59:53.611 2025-02-13 10:59:53.611 401611 8570 401726 1310 2 2394 2025-02-13 06:28:52.877 2025-02-13 06:28:52.877 400972 18901 401547 3213 1 2395 2025-02-12 17:14:06.248 2025-02-12 17:14:06.248 400994 631 401054 21079 1 2396 2025-02-13 17:00:10.396 2025-02-13 17:00:10.396 400994 631 402290 20816 2 2397 2025-02-13 12:05:22.244 2025-02-13 12:05:22.244 401783 999 401807 1576 1 2398 2025-02-13 15:58:01.679 2025-02-13 15:58:01.679 401783 999 402201 718 1 2399 2025-02-13 16:53:14.821 2025-02-13 16:53:14.821 401783 999 402277 19826 2 2400 2025-02-13 20:12:56.869 2025-02-13 20:12:56.869 401783 999 402559 13143 2 2401 2025-02-13 15:12:55.956 2025-02-13 15:12:55.956 401783 999 402138 1213 2 2402 2025-02-13 12:10:37.378 2025-02-13 12:10:37.378 401783 999 401819 8506 1 2403 2025-02-15 12:14:04.642 2025-02-15 12:14:04.642 401783 999 403968 16336 2 2404 2025-02-13 12:09:30.545 2025-02-13 12:09:30.545 401783 999 401818 2774 1 2405 2025-02-12 17:47:13.92 2025-02-12 17:47:13.92 401078 652 401099 13599 1 2406 2025-02-12 21:59:16.229 2025-02-12 21:59:16.229 401292 10986 401312 15139 1 2407 2025-02-13 09:55:08.544 2025-02-13 09:55:08.544 401113 9099 401658 21349 1 2408 2025-02-12 18:25:40.654 2025-02-12 18:25:40.654 401113 9099 401131 9366 2 2409 2025-02-12 21:07:41.479 2025-02-12 21:07:41.479 401113 9099 401288 9036 3 2410 2025-02-12 18:23:34.825 2025-02-12 18:23:34.825 401113 9099 401127 19535 1 2411 2025-02-17 23:35:32.471 2025-02-17 23:35:32.471 406012 15103 407381 20205 1 2412 2025-02-12 21:07:41.479 2025-02-12 21:07:41.479 401131 9366 401288 9036 1 2413 2025-02-12 19:24:21.841 2025-02-12 19:24:21.841 401151 4802 401197 20291 1 2414 2025-03-12 15:27:46.299 2025-03-12 15:27:46.299 435294 1836 435304 20220 1 2415 2025-02-13 17:30:04.148 2025-02-13 17:30:04.148 402316 20523 402342 1817 1 2416 2025-02-13 17:32:01.494 2025-02-13 17:32:01.494 402316 20523 402345 20701 2 2417 2025-02-13 18:08:53.251 2025-02-13 18:08:53.251 402316 20523 402414 14278 1 2418 2025-02-14 09:22:50.948 2025-02-14 09:22:50.948 402316 20523 402940 10273 1 2419 2025-02-12 20:27:28.642 2025-02-12 20:27:28.642 401198 18265 401257 4064 1 2420 2025-02-12 20:52:01.237 2025-02-12 20:52:01.237 401198 18265 401280 18393 3 2421 2025-02-13 00:12:59.327 2025-02-13 00:12:59.327 401198 18265 401391 21088 6 2422 2025-02-13 00:01:19.234 2025-02-13 00:01:19.234 401198 18265 401377 2123 1 2423 2025-02-12 22:01:47.227 2025-02-12 22:01:47.227 401198 18265 401316 7587 4 2424 2025-02-12 23:59:59.227 2025-02-12 23:59:59.227 401198 18265 401375 4776 1 2425 2025-02-13 09:32:26.224 2025-02-13 09:32:26.224 401198 18265 401648 2065 1 2426 2025-02-12 20:41:23.777 2025-02-12 20:41:23.777 401198 18265 401271 15978 2 2427 2025-02-12 23:53:05.332 2025-02-12 23:53:05.332 401198 18265 401371 20979 5 2428 2025-02-12 21:08:14.398 2025-02-12 21:08:14.398 401207 701 401289 18528 1 2429 2025-02-12 20:52:01.237 2025-02-12 20:52:01.237 401271 15978 401280 18393 1 2430 2025-02-13 00:12:59.327 2025-02-13 00:12:59.327 401271 15978 401391 21088 4 2431 2025-02-12 22:01:47.227 2025-02-12 22:01:47.227 401271 15978 401316 7587 2 2432 2025-02-12 23:53:05.332 2025-02-12 23:53:05.332 401271 15978 401371 20979 3 2433 2025-02-13 16:53:14.821 2025-02-13 16:53:14.821 401819 8506 402277 19826 1 2434 2025-03-09 16:02:29.159 2025-03-09 16:02:29.159 405202 21814 431194 19292 1 2435 2025-02-13 10:20:35.928 2025-02-13 10:20:35.928 401674 8664 401692 13042 1 2436 2025-02-12 21:29:02.05 2025-02-12 21:29:02.05 401283 691 401295 2061 1 2437 2025-02-15 21:27:58.743 2025-02-15 21:27:58.743 401283 691 404423 732 9 2438 2025-02-13 14:42:25.101 2025-02-13 14:42:25.101 401283 691 402078 14195 5 2439 2025-02-13 14:32:55.199 2025-02-13 14:32:55.199 401283 691 402058 21060 4 2440 2025-02-13 05:25:56.141 2025-02-13 05:25:56.141 401283 691 401520 618 3 2441 2025-02-12 23:05:38.01 2025-02-12 23:05:38.01 401283 691 401346 5646 1 2442 2025-02-14 01:34:22.491 2025-02-14 01:34:22.491 401283 691 402754 11522 7 2443 2025-02-14 00:08:24.289 2025-02-14 00:08:24.289 401283 691 402727 7746 6 2444 2025-02-15 21:07:23.285 2025-02-15 21:07:23.285 401283 691 404410 20599 8 2445 2025-02-13 00:46:27.413 2025-02-13 00:46:27.413 401283 691 401403 2829 2 2446 2025-02-13 05:19:07.197 2025-02-13 05:19:07.197 401317 20841 401517 1038 1 2447 2025-02-17 07:06:14.888 2025-02-17 07:06:14.888 406114 2042 406199 11873 1 2448 2025-02-13 10:26:32.587 2025-02-13 10:26:32.587 401333 15703 401697 7983 1 2449 2025-02-13 00:12:59.327 2025-02-13 00:12:59.327 401371 20979 401391 21088 1 2450 2025-02-13 00:14:02.916 2025-02-13 00:14:02.916 401390 12368 401392 11498 1 2451 2025-02-13 04:12:42.176 2025-02-13 04:12:42.176 401472 11999 401474 4166 1 2452 2025-02-14 01:43:15.165 2025-02-14 01:43:15.165 402676 17011 402758 21455 1 2453 2025-02-13 10:20:35.928 2025-02-13 10:20:35.928 401496 14489 401692 13042 4 2454 2025-02-13 10:08:50.348 2025-02-13 10:08:50.348 401496 14489 401674 8664 3 2455 2025-02-13 09:58:22.112 2025-02-13 09:58:22.112 401496 14489 401661 4259 2 2456 2025-02-13 10:11:40.253 2025-02-13 10:11:40.253 401496 14489 401677 20245 1 2457 2025-02-13 09:46:57.096 2025-02-13 09:46:57.096 401496 14489 401654 16998 1 2458 2025-02-13 15:09:54.782 2025-02-13 15:09:54.782 401734 6030 402128 641 1 2459 2025-02-13 11:16:39.258 2025-02-13 11:16:39.258 401734 6030 401746 21734 1 2460 2025-02-13 11:16:34.421 2025-02-13 11:16:34.421 401734 6030 401745 10611 1 2461 2025-02-13 12:08:25.458 2025-02-13 12:08:25.458 401734 6030 401813 4314 1 2462 2025-02-13 17:53:57.242 2025-02-13 17:53:57.242 401734 6030 402383 16816 2 2463 2025-02-13 14:33:40.539 2025-02-13 14:33:40.539 402039 5752 402062 14857 1 2464 2025-02-13 18:39:20.946 2025-02-13 18:39:20.946 402039 5752 402467 10549 3 2465 2025-02-13 18:36:10.464 2025-02-13 18:36:10.464 402039 5752 402462 21048 2 2466 2025-02-13 10:04:17.638 2025-02-13 10:04:17.638 401636 19524 401672 16149 1 2467 2025-03-09 16:03:29.823 2025-03-09 16:03:29.823 401763 876 431211 7587 1 2468 2025-02-13 10:02:43.737 2025-02-13 10:02:43.737 401643 618 401669 1814 1 2469 2024-01-02 11:47:31.036 2024-01-02 11:47:31.036 106903 15213 106912 13365 1 2470 2025-02-13 20:12:56.869 2025-02-13 20:12:56.869 402201 718 402559 13143 1 2471 2025-02-13 17:53:32.583 2025-02-13 17:53:32.583 402233 6164 402382 11450 1 2472 2025-02-13 16:34:06.868 2025-02-13 16:34:06.868 402246 21019 402251 1495 1 2473 2025-02-13 16:54:35.337 2025-02-13 16:54:35.337 402261 2776 402281 19193 1 2474 2025-03-12 17:08:55.795 2025-03-12 17:08:55.795 435216 20799 435429 15326 1 2475 2025-03-12 15:39:21.332 2025-03-12 15:39:21.332 435314 716 435320 13544 1 2476 2025-03-12 15:45:15.277 2025-03-12 15:45:15.277 435314 716 435335 1454 2 2477 2025-03-12 16:04:41.128 2025-03-12 16:04:41.128 435314 716 435355 16353 1 2478 2025-03-12 16:15:33.993 2025-03-12 16:15:33.993 435314 716 435364 12951 2 2479 2025-03-12 16:47:48.819 2025-03-12 16:47:48.819 435314 716 435404 1823 2 2480 2025-03-12 16:49:32.68 2025-03-12 16:49:32.68 435314 716 435405 699 3 2481 2025-03-12 18:57:29.028 2025-03-12 18:57:29.028 435314 716 435525 13327 4 2482 2025-03-12 19:01:08.589 2025-03-12 19:01:08.589 435314 716 435529 6765 5 2483 2025-03-12 22:01:32.075 2025-03-12 22:01:32.075 435314 716 435692 21398 4 2484 2025-03-12 17:21:00.707 2025-03-12 17:21:00.707 435314 716 435444 9246 2 2485 2025-03-12 17:20:30.099 2025-03-12 17:20:30.099 435314 716 435442 11829 1 2486 2025-03-12 18:56:13.538 2025-03-12 18:56:13.538 435314 716 435523 14258 1 2487 2025-03-12 17:02:45.979 2025-03-12 17:02:45.979 435314 716 435421 7818 4 2488 2025-03-12 18:41:14.824 2025-03-12 18:41:14.824 435314 716 435511 2741 2 2489 2025-03-12 16:18:08.622 2025-03-12 16:18:08.622 435314 716 435367 19378 1 2490 2025-03-12 16:46:07.414 2025-03-12 16:46:07.414 435314 716 435398 621 1 2491 2025-03-12 19:17:05.665 2025-03-12 19:17:05.665 435314 716 435546 17944 1 2492 2025-03-12 20:02:58.283 2025-03-12 20:02:58.283 435314 716 435595 10393 1 2493 2025-03-12 18:44:42.651 2025-03-12 18:44:42.651 435314 716 435515 9552 3 2494 2025-03-12 16:42:11.048 2025-03-12 16:42:11.048 435314 716 435393 18101 3 2495 2025-02-13 17:10:19.497 2025-02-13 17:10:19.497 401942 19524 402313 5961 1 2496 2025-02-14 10:53:55.561 2025-02-14 10:53:55.561 401944 18068 403006 19303 1 2497 2025-02-13 14:33:40.539 2025-02-13 14:33:40.539 402000 9346 402062 14857 3 2498 2025-02-13 18:39:20.946 2025-02-13 18:39:20.946 402000 9346 402467 10549 5 2499 2025-02-14 10:28:07.362 2025-02-14 10:28:07.362 402000 9346 402990 6430 1 2500 2025-02-13 14:22:23.092 2025-02-13 14:22:23.092 402000 9346 402039 5752 2 2501 2025-02-13 18:36:10.464 2025-02-13 18:36:10.464 402000 9346 402462 21048 4 2502 2025-02-13 14:13:56.6 2025-02-13 14:13:56.6 402000 9346 402031 683 1 2503 2025-02-14 04:43:32.527 2025-02-14 04:43:32.527 402000 9346 402804 680 1 2504 2025-02-13 21:11:24.617 2025-02-13 21:11:24.617 402003 16978 402613 10638 1 2505 2025-02-14 06:45:20.235 2025-02-14 06:45:20.235 402003 16978 402859 15549 1 2506 2025-02-14 08:18:17.793 2025-02-14 08:18:17.793 402003 16978 402892 21578 1 2507 2025-02-13 21:43:09.83 2025-02-13 21:43:09.83 402003 16978 402634 1474 1 2508 2025-02-13 19:47:34.364 2025-02-13 19:47:34.364 402003 16978 402534 848 1 2509 2025-02-14 08:26:36.578 2025-02-14 08:26:36.578 402003 16978 402894 18271 1 2510 2025-02-14 07:19:25.253 2025-02-14 07:19:25.253 402003 16978 402866 2460 3 2511 2025-02-13 23:42:35.235 2025-02-13 23:42:35.235 402003 16978 402699 780 1 2512 2025-02-13 22:52:28.777 2025-02-13 22:52:28.777 402003 16978 402682 14774 1 2513 2025-02-14 00:55:01.516 2025-02-14 00:55:01.516 402003 16978 402751 705 2 2514 2025-02-13 18:09:16.661 2025-02-13 18:09:16.661 402408 7960 402415 20614 1 2515 2025-02-13 14:37:46.943 2025-02-13 14:37:46.943 402034 1705 402069 9349 1 2516 2025-02-13 16:13:41.622 2025-02-13 16:13:41.622 402091 21406 402233 6164 2 2517 2025-02-13 17:47:02.19 2025-02-13 17:47:02.19 402091 21406 402369 960 3 2518 2025-02-13 17:04:33.68 2025-02-13 17:04:33.68 402091 21406 402299 2460 1 2519 2025-02-15 20:29:10.804 2025-02-15 20:29:10.804 402091 21406 404380 18114 1 2520 2025-02-13 17:15:47.054 2025-02-13 17:15:47.054 402091 21406 402326 687 2 2521 2025-02-13 17:53:32.583 2025-02-13 17:53:32.583 402091 21406 402382 11450 3 2522 2025-02-13 17:49:47.607 2025-02-13 17:49:47.607 402091 21406 402374 16097 4 2523 2025-02-13 17:52:54.127 2025-02-13 17:52:54.127 402091 21406 402380 19117 6 2524 2025-02-13 17:51:11.575 2025-02-13 17:51:11.575 402091 21406 402378 9171 5 2525 2025-02-13 15:12:25.606 2025-02-13 15:12:25.606 402091 21406 402134 775 1 2526 2025-02-13 17:50:11.951 2025-02-13 17:50:11.951 402105 19303 402375 16571 2 2527 2025-02-14 09:14:53.538 2025-02-14 09:14:53.538 402105 19303 402934 1114 3 2528 2025-02-13 19:07:06.834 2025-02-13 19:07:06.834 402105 19303 402493 10934 1 2529 2025-02-14 07:22:36.036 2025-02-14 07:22:36.036 402105 19303 402869 21815 1 2530 2025-02-13 17:42:53.982 2025-02-13 17:42:53.982 402105 19303 402364 21136 1 2531 2025-02-14 09:09:15.104 2025-02-14 09:09:15.104 402105 19303 402927 20198 2 2532 2025-02-13 20:54:34.101 2025-02-13 20:54:34.101 402105 19303 402594 20681 1 2533 2025-02-15 15:16:34.323 2025-02-15 15:16:34.323 402168 17541 404128 5661 1 2534 2025-02-13 18:13:45.125 2025-02-13 18:13:45.125 402171 882 402426 2039 1 2535 2025-02-13 19:16:08.024 2025-02-13 19:16:08.024 402171 882 402503 19263 2 2536 2025-02-13 17:06:05.436 2025-02-13 17:06:05.436 402171 882 402303 19524 1 2537 2025-02-13 21:46:49.289 2025-02-13 21:46:49.289 402171 882 402639 15200 4 2538 2025-02-13 18:17:02.081 2025-02-13 18:17:02.081 402171 882 402438 1352 1 2539 2025-02-13 19:07:43.887 2025-02-13 19:07:43.887 402171 882 402494 21248 2 2540 2025-02-13 20:29:08.553 2025-02-13 20:29:08.553 402171 882 402572 628 3 2541 2025-02-16 00:39:53.202 2025-02-16 00:39:53.202 402188 14465 404537 20381 2 2542 2025-02-16 00:40:44.865 2025-02-16 00:40:44.865 402188 14465 404541 1617 2 2543 2025-02-13 15:45:44.65 2025-02-13 15:45:44.65 402188 14465 402191 7818 1 2544 2025-02-13 15:56:35.641 2025-02-13 15:56:35.641 402188 14465 402197 21287 1 2545 2025-02-13 16:50:50.992 2025-02-13 16:50:50.992 402188 14465 402271 21498 1 2546 2025-02-16 00:44:28.976 2025-02-16 00:44:28.976 402188 14465 404547 21402 4 2547 2025-02-16 01:56:49.034 2025-02-16 01:56:49.034 402188 14465 404601 16571 3 2548 2025-02-16 00:42:04.606 2025-02-16 00:42:04.606 402188 14465 404543 4345 3 2549 2025-02-15 05:52:40.859 2025-02-15 05:52:40.859 402188 14465 403708 1632 1 2550 2025-02-13 15:49:50.527 2025-02-13 15:49:50.527 402188 14465 402193 5590 1 2551 2025-02-13 16:24:26.66 2025-02-13 16:24:26.66 402188 14465 402242 20523 2 2552 2025-02-16 00:38:28.74 2025-02-16 00:38:28.74 402188 14465 404531 19537 2 2553 2025-02-16 00:40:24.993 2025-02-16 00:40:24.993 402188 14465 404539 889 2 2554 2025-02-14 03:10:33.805 2025-02-14 03:10:33.805 402188 14465 402791 19813 1 2555 2025-02-16 00:38:07.913 2025-02-16 00:38:07.913 402188 14465 404528 21498 2 2556 2025-02-15 21:16:12.417 2025-02-15 21:16:12.417 402188 14465 404415 18368 1 2557 2025-02-16 00:39:36.464 2025-02-16 00:39:36.464 402188 14465 404536 7395 2 2558 2025-02-16 00:37:42.746 2025-02-16 00:37:42.746 402188 14465 404527 669 2 2559 2025-02-13 15:54:26.082 2025-02-13 15:54:26.082 402188 14465 402196 5708 1 2560 2025-02-14 02:56:32.52 2025-02-14 02:56:32.52 402188 14465 402784 21514 1 2561 2025-02-13 16:24:26.66 2025-02-13 16:24:26.66 402196 5708 402242 20523 1 2562 2025-02-16 00:40:44.865 2025-02-16 00:40:44.865 402197 21287 404541 1617 1 2563 2025-02-16 00:42:04.606 2025-02-16 00:42:04.606 402197 21287 404543 4345 2 2564 2025-02-16 00:44:28.976 2025-02-16 00:44:28.976 402197 21287 404547 21402 3 2565 2025-02-13 17:37:36.888 2025-02-13 17:37:36.888 402355 18731 402357 17171 1 2566 2025-03-09 16:02:55.784 2025-03-09 16:02:55.784 402363 9084 431204 15091 1 2567 2025-02-13 17:50:11.951 2025-02-13 17:50:11.951 402364 21136 402375 16571 1 2568 2025-02-13 17:52:54.127 2025-02-13 17:52:54.127 402378 9171 402380 19117 1 2569 2025-02-13 18:11:22.067 2025-02-13 18:11:22.067 402381 7119 402420 712 1 2570 2025-02-13 19:19:28.656 2025-02-13 19:19:28.656 402412 20788 402507 8985 1 2571 2025-02-13 18:39:20.946 2025-02-13 18:39:20.946 402462 21048 402467 10549 1 2572 2025-02-13 18:47:04.763 2025-02-13 18:47:04.763 402466 1273 402472 638 1 2573 2025-02-14 05:01:39.598 2025-02-14 05:01:39.598 402481 21207 402808 3456 1 2574 2025-02-13 22:04:32.016 2025-02-13 22:04:32.016 402482 12774 402650 14905 1 2575 2025-02-13 21:46:49.289 2025-02-13 21:46:49.289 402494 21248 402639 15200 2 2576 2025-02-13 20:29:08.553 2025-02-13 20:29:08.553 402494 21248 402572 628 1 2577 2025-02-13 20:21:06.961 2025-02-13 20:21:06.961 402556 3683 402565 20802 1 2578 2025-02-14 00:27:19.014 2025-02-14 00:27:19.014 402556 3683 402739 21047 3 2579 2025-02-14 10:19:19.994 2025-02-14 10:19:19.994 402556 3683 402979 11378 1 2580 2025-02-13 20:39:02.822 2025-02-13 20:39:02.822 402556 3683 402578 13038 2 2581 2025-02-14 00:27:19.014 2025-02-14 00:27:19.014 402578 13038 402739 21047 1 2582 2025-03-12 00:09:56.079 2025-03-12 00:09:56.079 434440 1468 434482 18178 1 2583 2025-03-12 11:15:56.467 2025-03-12 11:15:56.467 434440 1468 434956 20754 1 2584 2025-03-12 11:43:31.685 2025-03-12 11:43:31.685 434440 1468 434989 10112 1 2585 2025-03-12 02:29:36.82 2025-03-12 02:29:36.82 434440 1468 434545 21208 3 2586 2025-03-12 04:02:49.638 2025-03-12 04:02:49.638 434440 1468 434605 9353 1 2587 2025-03-12 07:33:06.724 2025-03-12 07:33:06.724 434440 1468 434723 20788 1 2588 2025-03-12 15:15:43.304 2025-03-12 15:15:43.304 434440 1468 435278 20655 3 2589 2025-03-12 00:30:22.787 2025-03-12 00:30:22.787 434440 1468 434487 805 2 2590 2025-03-12 05:10:03.985 2025-03-12 05:10:03.985 434440 1468 434640 7654 1 2591 2025-03-12 11:27:27.405 2025-03-12 11:27:27.405 434440 1468 434971 16387 2 2592 2025-03-12 11:50:30.39 2025-03-12 11:50:30.39 434440 1468 434996 9200 3 2593 2025-03-12 08:07:15.042 2025-03-12 08:07:15.042 434440 1468 434754 2844 1 2594 2025-03-12 12:29:11.484 2025-03-12 12:29:11.484 434440 1468 435047 9992 3 2595 2025-03-12 14:58:53.66 2025-03-12 14:58:53.66 434440 1468 435251 21357 1 2596 2025-03-12 22:05:21.048 2025-03-12 22:05:21.048 434440 1468 435693 14255 1 2597 2025-03-13 15:12:22.687 2025-03-13 15:12:22.687 434440 1468 436458 5578 1 2598 2025-03-12 12:06:02.555 2025-03-12 12:06:02.555 434440 1468 435022 17184 1 2599 2025-03-12 12:27:18.892 2025-03-12 12:27:18.892 434440 1468 435045 12965 2 2600 2025-02-14 07:00:19.172 2025-02-14 07:00:19.172 402684 18956 402864 17519 1 2601 2025-02-14 07:19:25.253 2025-02-14 07:19:25.253 402751 705 402866 2460 1 2602 2025-02-14 10:07:15.748 2025-02-14 10:07:15.748 402767 20586 402973 663 1 2603 2025-02-14 09:20:53.4 2025-02-14 09:20:53.4 402889 6602 402937 7983 1 2604 2025-02-14 05:11:39.41 2025-02-14 05:11:39.41 402772 10981 402812 12561 1 2605 2025-02-14 05:52:41.429 2025-02-14 05:52:41.429 402772 10981 402832 16556 1 2606 2025-02-16 00:40:24.993 2025-02-16 00:40:24.993 402784 21514 404539 889 1 2607 2025-02-15 21:03:09.441 2025-02-15 21:03:09.441 402931 21332 404405 11750 2 2608 2025-02-14 09:45:55.906 2025-02-14 09:45:55.906 402931 21332 402962 21412 1 2609 2025-02-15 21:06:39.391 2025-02-15 21:06:39.391 402932 9336 404409 9026 1 2610 2025-03-09 16:02:21.895 2025-03-09 16:02:21.895 405427 6555 431191 1122 1 2611 2025-02-14 09:35:00.541 2025-02-14 09:35:00.541 402933 19689 402956 4754 1 2612 2025-02-14 12:18:48.233 2025-02-14 12:18:48.233 403067 10302 403070 17541 1 2613 2025-02-14 14:47:50.868 2025-02-14 14:47:50.868 403121 7119 403214 7667 1 2614 2025-02-14 20:00:53.539 2025-02-14 20:00:53.539 403121 7119 403444 20826 1 2615 2025-02-14 13:50:20.378 2025-02-14 13:50:20.378 403121 7119 403162 10981 1 2616 2025-02-14 14:19:59.149 2025-02-14 14:19:59.149 403121 7119 403192 18177 1 2617 2025-02-14 04:06:45.062 2025-02-14 04:06:45.062 402797 11523 402800 21416 1 2618 2025-02-14 06:12:58.956 2025-02-14 06:12:58.956 402797 11523 402845 21083 1 2619 2025-02-14 04:47:39.972 2025-02-14 04:47:39.972 402805 15115 402806 16978 1 2620 2025-02-14 09:11:44.358 2025-02-14 09:11:44.358 402822 7827 402930 9982 1 2621 2025-02-14 06:19:16.125 2025-02-14 06:19:16.125 402826 16259 402846 17316 1 2622 2025-02-14 05:55:31.271 2025-02-14 05:55:31.271 402830 684 402836 2013 1 2623 2025-02-16 00:38:11.791 2025-02-16 00:38:11.791 403974 965 404529 21805 2 2624 2025-02-15 20:58:41.655 2025-02-15 20:58:41.655 403974 965 404398 6361 1 2625 2025-02-14 17:32:19.447 2025-02-14 17:32:19.447 403219 13467 403322 19138 1 2626 2025-02-14 15:25:43.388 2025-02-14 15:25:43.388 403222 9364 403239 7185 1 2627 2025-02-14 08:38:43.453 2025-02-14 08:38:43.453 402899 19217 402901 1717 1 2628 2025-02-27 21:24:39.637 2025-02-27 21:24:39.637 402899 19217 419511 21768 1 2629 2025-02-14 08:38:34.616 2025-02-14 08:38:34.616 402899 19217 402900 4225 1 2630 2025-02-14 09:04:38.288 2025-02-14 09:04:38.288 402904 11938 402918 21547 1 2631 2025-02-15 21:03:09.441 2025-02-15 21:03:09.441 402904 11938 404405 11750 3 2632 2025-02-14 17:37:39.838 2025-02-14 17:37:39.838 402904 11938 403325 15337 2 2633 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 402904 11938 403788 19576 13 2634 2025-02-15 07:50:34.771 2025-02-15 07:50:34.771 402904 11938 403773 7966 9 2635 2025-02-15 07:10:48.731 2025-02-15 07:10:48.731 402904 11938 403754 20956 3 2636 2025-02-14 09:08:29.263 2025-02-14 09:08:29.263 402904 11938 402925 8459 2 2637 2025-02-14 09:13:00.736 2025-02-14 09:13:00.736 402904 11938 402932 9336 3 2638 2025-02-14 11:52:45.377 2025-02-14 11:52:45.377 402904 11938 403047 10981 2 2639 2025-02-14 11:56:50.393 2025-02-14 11:56:50.393 402904 11938 403050 6717 1 2640 2025-02-14 14:56:50.27 2025-02-14 14:56:50.27 402904 11938 403222 9364 1 2641 2025-02-14 15:25:43.388 2025-02-14 15:25:43.388 402904 11938 403239 7185 2 2642 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 402904 11938 403809 8416 17 2643 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 402904 11938 403779 1092 12 2644 2025-02-15 07:25:43.357 2025-02-15 07:25:43.357 402904 11938 403762 782 5 2645 2025-02-15 05:39:22.53 2025-02-15 05:39:22.53 402904 11938 403694 11192 1 2646 2025-02-14 09:12:48.87 2025-02-14 09:12:48.87 402904 11938 402931 21332 1 2647 2025-02-14 10:23:38.217 2025-02-14 10:23:38.217 402904 11938 402986 20756 1 2648 2025-02-14 11:57:00.019 2025-02-14 11:57:00.019 402904 11938 403051 17592 3 2649 2025-02-14 17:25:44.275 2025-02-14 17:25:44.275 402904 11938 403317 21332 1 2650 2025-02-15 07:09:04.387 2025-02-15 07:09:04.387 402904 11938 403750 21405 2 2651 2025-02-15 07:11:20.34 2025-02-15 07:11:20.34 402904 11938 403755 9350 4 2652 2025-02-15 07:34:24.554 2025-02-15 07:34:24.554 402904 11938 403765 17226 6 2653 2025-02-15 07:46:48.479 2025-02-15 07:46:48.479 402904 11938 403772 19446 8 2654 2025-02-15 07:52:12.57 2025-02-15 07:52:12.57 402904 11938 403776 20280 10 2655 2025-02-15 07:52:29.84 2025-02-15 07:52:29.84 402904 11938 403778 683 11 2656 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 402904 11938 403798 20062 14 2657 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 402904 11938 403806 18274 15 2658 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 402904 11938 403808 10690 16 2659 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 402904 11938 403813 11073 18 2660 2025-02-14 09:45:55.906 2025-02-14 09:45:55.906 402904 11938 402962 21412 2 2661 2025-02-15 21:06:39.391 2025-02-15 21:06:39.391 402904 11938 404409 9026 4 2662 2025-02-14 17:45:20.584 2025-02-14 17:45:20.584 402904 11938 403333 15484 3 2663 2025-02-15 07:45:45.501 2025-02-15 07:45:45.501 402904 11938 403771 17218 7 2664 2025-02-14 09:43:28.609 2025-02-14 09:43:28.609 402917 12049 402957 17001 1 2665 2025-02-14 12:30:13.216 2025-02-14 12:30:13.216 402917 12049 403078 11515 1 2666 2025-02-15 22:59:33.151 2025-02-15 22:59:33.151 402917 12049 404484 1469 1 2667 2025-02-14 09:14:53.538 2025-02-14 09:14:53.538 402927 20198 402934 1114 1 2668 2025-02-15 08:14:54.444 2025-02-15 08:14:54.444 402938 4115 403796 6537 1 2669 2025-02-14 09:54:15.077 2025-02-14 09:54:15.077 402967 8004 402969 15474 1 2670 2025-02-14 18:03:38.63 2025-02-14 18:03:38.63 403323 12946 403352 9 2 2671 2025-02-14 20:34:14.184 2025-02-14 20:34:14.184 403323 12946 403458 20892 1 2672 2025-02-15 21:25:39.576 2025-02-15 21:25:39.576 403323 12946 404420 18321 1 2673 2025-02-14 17:46:58.283 2025-02-14 17:46:58.283 403323 12946 403336 738 1 2674 2025-02-14 18:10:25.713 2025-02-14 18:10:25.713 403323 12946 403360 2774 1 2675 2025-02-16 06:02:04.432 2025-02-16 06:02:04.432 403323 12946 404697 672 2 2676 2025-02-14 20:55:21.541 2025-02-14 20:55:21.541 403323 12946 403474 21794 1 2677 2025-02-14 17:18:28.946 2025-02-14 17:18:28.946 402974 15526 403310 19417 1 2678 2025-02-14 10:23:34.581 2025-02-14 10:23:34.581 402984 1515 402985 20956 1 2679 2025-02-14 13:01:22.816 2025-02-14 13:01:22.816 402992 11516 403115 1236 1 2680 2025-02-15 20:59:21.818 2025-02-15 20:59:21.818 402992 11516 404399 15367 2 2681 2025-02-14 11:32:03.178 2025-02-14 11:32:03.178 403009 20713 403028 16939 1 2682 2025-02-15 21:03:52.941 2025-02-15 21:03:52.941 403009 20713 404407 13216 3 2683 2025-02-14 11:36:13.341 2025-02-14 11:36:13.341 403009 20713 403033 21249 2 2684 2025-02-14 13:42:41.002 2025-02-14 13:42:41.002 403021 1114 403151 11498 1 2685 2025-02-14 11:43:39.454 2025-02-14 11:43:39.454 403021 1114 403039 2528 2 2686 2025-02-14 15:10:06.651 2025-02-14 15:10:06.651 403021 1114 403232 628 3 2687 2025-02-14 15:11:11.578 2025-02-14 15:11:11.578 403021 1114 403233 4958 4 2688 2025-02-14 11:33:37.303 2025-02-14 11:33:37.303 403021 1114 403030 17147 1 2689 2025-02-14 14:08:24.169 2025-02-14 14:08:24.169 403021 1114 403172 8544 2 2690 2025-02-14 20:09:48.277 2025-02-14 20:09:48.277 403021 1114 403450 12169 3 2691 2025-02-25 08:13:24.355 2025-02-25 08:13:24.355 403036 2233 415892 8459 4 2692 2025-02-15 05:39:46.534 2025-02-15 05:39:46.534 403036 2233 403695 16816 1 2693 2025-02-25 08:20:54.923 2025-02-25 08:20:54.923 403036 2233 415898 7583 1 2694 2025-03-22 15:38:17.591 2025-03-22 15:38:17.591 403036 2233 448414 4802 1 2695 2025-02-17 16:27:41.318 2025-02-17 16:27:41.318 403036 2233 406927 21136 3 2696 2025-02-25 09:00:59.368 2025-02-25 09:00:59.368 403036 2233 415933 17014 5 2697 2025-02-15 09:20:27.865 2025-02-15 09:20:27.865 403036 2233 403851 21287 2 2698 2025-02-14 15:10:06.651 2025-02-14 15:10:06.651 403039 2528 403232 628 1 2699 2025-02-14 15:11:11.578 2025-02-14 15:11:11.578 403039 2528 403233 4958 2 2700 2025-02-14 11:57:00.019 2025-02-14 11:57:00.019 403047 10981 403051 17592 1 2701 2025-02-14 14:05:39.881 2025-02-14 14:05:39.881 403165 15463 403171 738 1 2702 2025-02-14 20:09:48.277 2025-02-14 20:09:48.277 403172 8544 403450 12169 1 2703 2025-02-18 18:14:55.206 2025-02-18 18:14:55.206 403198 13365 408365 20606 1 2704 2025-02-14 15:01:43.096 2025-02-14 15:01:43.096 403213 11038 403228 13544 1 2705 2025-02-14 16:01:20.329 2025-02-14 16:01:20.329 403213 11038 403260 20980 4 2706 2025-02-14 15:18:57.097 2025-02-14 15:18:57.097 403213 11038 403237 1039 2 2707 2025-02-14 15:26:29.929 2025-02-14 15:26:29.929 403213 11038 403240 9496 3 2708 2025-02-14 16:03:33.36 2025-02-14 16:03:33.36 403213 11038 403263 11165 5 2709 2025-02-14 15:06:15.769 2025-02-14 15:06:15.769 403218 10818 403231 16876 1 2710 2025-02-14 15:36:06.665 2025-02-14 15:36:06.665 403238 9450 403247 1142 1 2711 2025-02-16 02:37:41.413 2025-02-16 02:37:41.413 403238 9450 404618 9916 1 2712 2025-02-14 16:01:20.329 2025-02-14 16:01:20.329 403240 9496 403260 20980 1 2713 2025-02-14 16:03:33.36 2025-02-14 16:03:33.36 403240 9496 403263 11165 2 2714 2025-02-14 17:23:26.683 2025-02-14 17:23:26.683 403267 20713 403315 19333 1 2715 2025-02-14 17:43:37.043 2025-02-14 17:43:37.043 403267 20713 403330 11144 2 2716 2025-02-14 17:56:38.049 2025-02-14 17:56:38.049 403267 20713 403346 18423 2 2717 2025-02-14 23:52:24.194 2025-02-14 23:52:24.194 403274 2431 403558 18225 1 2718 2025-02-14 17:48:18.065 2025-02-14 17:48:18.065 403274 2431 403339 1833 1 2719 2025-02-14 20:41:10.848 2025-02-14 20:41:10.848 403274 2431 403467 9354 1 2720 2025-02-14 19:44:14.083 2025-02-14 19:44:14.083 403304 13398 403436 16440 1 2721 2025-02-14 17:37:39.838 2025-02-14 17:37:39.838 403317 21332 403325 15337 1 2722 2025-02-14 17:45:20.584 2025-02-14 17:45:20.584 403317 21332 403333 15484 2 2723 2025-02-14 18:03:38.63 2025-02-14 18:03:38.63 403336 738 403352 9 1 2724 2025-02-14 19:46:29.763 2025-02-14 19:46:29.763 403355 12976 403437 6136 1 2725 2025-02-15 11:11:18.206 2025-02-15 11:11:18.206 403355 12976 403912 736 1 2726 2025-02-15 21:00:09.39 2025-02-15 21:00:09.39 403365 10280 404401 16176 1 2727 2025-03-09 16:02:48.001 2025-03-09 16:02:48.001 403427 9365 431201 992 1 2728 2025-03-12 15:44:58.383 2025-03-12 15:44:58.383 435315 20179 435333 11288 1 2729 2025-03-12 15:48:46.752 2025-03-12 15:48:46.752 435315 20179 435344 21639 2 2730 2025-03-12 17:11:42.449 2025-03-12 17:11:42.449 435315 20179 435432 16296 3 2731 2025-03-12 17:20:12.491 2025-03-12 17:20:12.491 435315 20179 435440 5017 4 2732 2025-02-15 04:13:06.592 2025-02-15 04:13:06.592 403594 16214 403661 20439 1 2733 2025-02-15 10:59:04.733 2025-02-15 10:59:04.733 403595 5775 403905 7903 1 2734 2025-02-15 21:01:36.747 2025-02-15 21:01:36.747 403595 5775 404403 14357 2 2735 2025-02-25 08:13:24.355 2025-02-25 08:13:24.355 403851 21287 415892 8459 2 2736 2025-02-17 16:27:41.318 2025-02-17 16:27:41.318 403851 21287 406927 21136 1 2737 2025-02-25 09:00:59.368 2025-02-25 09:00:59.368 403851 21287 415933 17014 3 2738 2025-02-15 01:52:59.645 2025-02-15 01:52:59.645 403609 13365 403619 21482 1 2739 2025-02-15 19:13:58.428 2025-02-15 19:13:58.428 403662 6471 404325 7760 2 2740 2025-02-15 18:57:34.936 2025-02-15 18:57:34.936 403662 6471 404313 811 1 2741 2025-02-16 05:47:42.152 2025-02-16 05:47:42.152 403662 6471 404693 3683 1 2742 2025-02-15 06:39:12.622 2025-02-15 06:39:12.622 403724 651 403733 20019 1 2743 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403808 10690 403809 8416 1 2744 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403808 10690 403813 11073 2 2745 2025-02-15 15:21:24.854 2025-02-15 15:21:24.854 403817 8168 404135 17064 1 2746 2025-02-15 20:58:17.848 2025-02-15 20:58:17.848 403817 8168 404397 18637 2 2747 2025-02-15 21:02:19.071 2025-02-15 21:02:19.071 403824 10342 404404 11153 4 2748 2025-02-15 08:52:39.061 2025-02-15 08:52:39.061 403824 10342 403830 1564 1 2749 2025-02-15 16:40:48.426 2025-02-15 16:40:48.426 403824 10342 404217 9346 3 2750 2025-02-15 16:22:09.414 2025-02-15 16:22:09.414 403824 10342 404197 17727 2 2751 2025-02-15 09:49:53.592 2025-02-15 09:49:53.592 403824 10342 403868 11091 2 2752 2025-02-15 08:59:25.305 2025-02-15 08:59:25.305 403824 10342 403833 1114 3 2753 2025-02-15 11:30:02.261 2025-02-15 11:30:02.261 403824 10342 403922 19018 6 2754 2025-02-15 11:33:00.453 2025-02-15 11:33:00.453 403824 10342 403926 640 7 2755 2025-02-15 11:35:19.418 2025-02-15 11:35:19.418 403824 10342 403927 21400 8 2756 2025-02-15 11:41:15.703 2025-02-15 11:41:15.703 403824 10342 403934 21222 9 2757 2025-02-15 11:42:12.94 2025-02-15 11:42:12.94 403824 10342 403937 997 10 2758 2025-02-15 11:44:43.466 2025-02-15 11:44:43.466 403824 10342 403941 21356 11 2759 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403824 10342 403948 9421 12 2760 2025-02-15 10:56:35.036 2025-02-15 10:56:35.036 403824 10342 403903 11942 1 2761 2025-02-15 20:58:13.34 2025-02-15 20:58:13.34 403824 10342 404396 14271 4 2762 2025-02-15 21:24:28.437 2025-02-15 21:24:28.437 403824 10342 404418 9833 1 2763 2025-02-15 08:55:51.467 2025-02-15 08:55:51.467 403824 10342 403831 17291 2 2764 2025-02-15 11:27:56.25 2025-02-15 11:27:56.25 403824 10342 403918 18865 4 2765 2025-02-15 09:50:53.47 2025-02-15 09:50:53.47 403824 10342 403869 2056 3 2766 2025-02-15 08:47:41.569 2025-02-15 08:47:41.569 403824 10342 403825 8289 1 2767 2025-02-15 09:28:16.36 2025-02-15 09:28:16.36 403824 10342 403857 4474 1 2768 2025-02-15 11:29:01.526 2025-02-15 11:29:01.526 403824 10342 403919 13763 5 2769 2025-02-15 15:45:24.67 2025-02-15 15:45:24.67 403824 10342 404157 1490 1 2770 2025-02-15 23:27:56.782 2025-02-15 23:27:56.782 403824 10342 404503 9334 2 2771 2025-02-15 19:43:03.945 2025-02-15 19:43:03.945 403824 10342 404344 900 1 2772 2025-02-15 21:02:19.071 2025-02-15 21:02:19.071 403833 1114 404404 11153 1 2773 2025-03-09 16:02:00.123 2025-03-09 16:02:00.123 406783 11798 431185 10484 1 2774 2025-02-20 02:37:15.994 2025-02-20 02:37:15.994 403893 21815 409954 20647 2 2775 2025-02-15 18:42:02.344 2025-02-15 18:42:02.344 403893 21815 404294 2098 1 2776 2025-02-15 20:11:31.587 2025-02-15 20:11:31.587 403893 21815 404369 17147 1 2777 2025-02-20 21:19:23.333 2025-02-20 21:19:23.333 403893 21815 410985 6717 3 2778 2025-02-15 13:17:05.291 2025-02-15 13:17:05.291 403897 20826 404021 1761 1 2779 2025-03-09 16:02:39.882 2025-03-09 16:02:39.882 403898 2718 431198 5359 1 2780 2025-02-16 00:56:09.359 2025-02-16 00:56:09.359 403915 3642 404558 750 1 2781 2025-02-15 11:33:00.453 2025-02-15 11:33:00.453 403922 19018 403926 640 1 2782 2025-02-15 11:35:19.418 2025-02-15 11:35:19.418 403922 19018 403927 21400 2 2783 2025-02-15 11:41:15.703 2025-02-15 11:41:15.703 403922 19018 403934 21222 3 2784 2025-02-15 11:42:12.94 2025-02-15 11:42:12.94 403922 19018 403937 997 4 2785 2025-02-15 11:44:43.466 2025-02-15 11:44:43.466 403922 19018 403941 21356 5 2786 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403922 19018 403948 9421 6 2787 2025-02-15 21:00:39.964 2025-02-15 21:00:39.964 403929 1044 404402 11760 1 2788 2025-02-15 20:58:13.34 2025-02-15 20:58:13.34 404217 9346 404396 14271 1 2789 2025-02-15 12:03:38.795 2025-02-15 12:03:38.795 403947 5036 403957 11158 1 2790 2025-02-15 12:46:51.972 2025-02-15 12:46:51.972 403947 5036 403997 688 1 2791 2025-02-15 13:23:13.3 2025-02-15 13:23:13.3 403947 5036 404031 4292 1 2792 2025-02-16 01:18:29.139 2025-02-16 01:18:29.139 403947 5036 404578 19217 1 2793 2025-02-16 00:33:18.885 2025-02-16 00:33:18.885 403947 5036 404522 5427 1 2794 2025-02-15 22:09:21.618 2025-02-15 22:09:21.618 403947 5036 404454 14990 1 2795 2025-02-15 13:08:55.61 2025-02-15 13:08:55.61 403996 814 404011 2098 2 2796 2025-02-15 12:47:59.951 2025-02-15 12:47:59.951 403996 814 404000 2326 1 2797 2025-02-15 15:25:52.603 2025-02-15 15:25:52.603 403996 814 404140 2111 1 2798 2025-02-15 13:13:50.641 2025-02-15 13:13:50.641 403996 814 404019 5694 2 2799 2025-02-15 19:59:11.925 2025-02-15 19:59:11.925 403996 814 404363 11789 4 2800 2025-02-15 20:55:05.111 2025-02-15 20:55:05.111 403996 814 404395 9026 1 2801 2025-02-15 14:56:40.506 2025-02-15 14:56:40.506 403996 814 404107 4238 2 2802 2025-02-15 16:07:57.295 2025-02-15 16:07:57.295 403996 814 404183 826 5 2803 2025-02-15 19:18:53.025 2025-02-15 19:18:53.025 403996 814 404331 16724 3 2804 2025-02-15 16:09:44.757 2025-02-15 16:09:44.757 403996 814 404187 8037 2 2805 2025-02-15 15:07:04.192 2025-02-15 15:07:04.192 403996 814 404117 1697 2 2806 2025-02-15 15:17:02.374 2025-02-15 15:17:02.374 403996 814 404130 21338 4 2807 2025-02-15 13:37:45.92 2025-02-15 13:37:45.92 403996 814 404051 9036 1 2808 2025-02-15 15:15:17.391 2025-02-15 15:15:17.391 403996 814 404126 2734 3 2809 2025-02-16 02:43:21.191 2025-02-16 02:43:21.191 403999 17690 404619 8535 2 2810 2025-02-15 23:02:35.301 2025-02-15 23:02:35.301 403999 17690 404486 1090 1 2811 2025-02-16 02:44:52.898 2025-02-16 02:44:52.898 403999 17690 404620 5637 2 2812 2025-02-16 05:12:14.289 2025-02-16 05:12:14.289 403999 17690 404675 10591 1 2813 2025-02-16 01:13:23.336 2025-02-16 01:13:23.336 403999 17690 404575 7389 1 2814 2025-02-15 15:26:21.692 2025-02-15 15:26:21.692 403999 17690 404141 18430 1 2815 2025-02-15 13:08:55.61 2025-02-15 13:08:55.61 404000 2326 404011 2098 1 2816 2025-02-15 13:13:50.641 2025-02-15 13:13:50.641 404000 2326 404019 5694 1 2817 2025-02-15 14:56:40.506 2025-02-15 14:56:40.506 404000 2326 404107 4238 1 2818 2025-02-15 16:07:57.295 2025-02-15 16:07:57.295 404000 2326 404183 826 4 2819 2025-02-15 15:17:02.374 2025-02-15 15:17:02.374 404000 2326 404130 21338 3 2820 2025-02-15 15:15:17.391 2025-02-15 15:15:17.391 404000 2326 404126 2734 2 2821 2025-02-15 16:34:40.312 2025-02-15 16:34:40.312 404014 14152 404211 16954 1 2822 2025-02-15 21:33:01.067 2025-02-15 21:33:01.067 404014 14152 404427 1571 2 2823 2025-02-15 18:47:30.033 2025-02-15 18:47:30.033 404014 14152 404300 18930 1 2824 2025-02-15 21:34:40.091 2025-02-15 21:34:40.091 404014 14152 404428 14941 2 2825 2025-02-15 22:16:11.777 2025-02-15 22:16:11.777 404150 19531 404459 6361 5 2826 2025-02-15 19:46:28.491 2025-02-15 19:46:28.491 404150 19531 404350 18330 1 2827 2025-02-15 21:26:29.63 2025-02-15 21:26:29.63 404150 19531 404421 21804 3 2828 2025-02-15 16:12:06.28 2025-02-15 16:12:06.28 404150 19531 404189 20377 1 2829 2025-02-15 21:46:20.163 2025-02-15 21:46:20.163 404150 19531 404434 21356 4 2830 2025-02-15 16:15:38.842 2025-02-15 16:15:38.842 404150 19531 404192 12744 2 2831 2025-02-15 16:05:12.114 2025-02-15 16:05:12.114 404042 15192 404175 624 1 2832 2025-02-15 22:16:11.777 2025-02-15 22:16:11.777 404042 15192 404459 6361 6 2833 2025-02-15 19:46:28.491 2025-02-15 19:46:28.491 404042 15192 404350 18330 2 2834 2025-02-15 21:26:29.63 2025-02-15 21:26:29.63 404042 15192 404421 21804 4 2835 2025-02-15 16:12:06.28 2025-02-15 16:12:06.28 404042 15192 404189 20377 2 2836 2025-02-15 15:38:28.715 2025-02-15 15:38:28.715 404042 15192 404150 19531 1 2837 2025-02-15 15:29:13.709 2025-02-15 15:29:13.709 404042 15192 404145 15521 1 2838 2025-02-15 21:46:20.163 2025-02-15 21:46:20.163 404042 15192 404434 21356 5 2839 2025-02-15 16:31:37.95 2025-02-15 16:31:37.95 404042 15192 404205 21061 1 2840 2025-02-15 16:15:38.842 2025-02-15 16:15:38.842 404042 15192 404192 12744 3 2841 2025-02-15 16:07:53.096 2025-02-15 16:07:53.096 404042 15192 404182 633 2 2842 2025-02-16 01:43:01.684 2025-02-16 01:43:01.684 404219 10586 404592 2056 1 2843 2025-02-15 22:11:19.492 2025-02-15 22:11:19.492 404046 2233 404455 18930 1 2844 2025-02-15 21:46:19.509 2025-02-15 21:46:19.509 404046 2233 404433 4754 1 2845 2025-02-15 21:58:28.939 2025-02-15 21:58:28.939 404049 628 404442 13249 1 2846 2025-02-15 22:17:19.808 2025-02-15 22:17:19.808 404049 628 404462 15719 2 2847 2025-02-16 01:50:18.224 2025-02-16 01:50:18.224 404049 628 404598 9796 3 2848 2025-02-16 02:03:14.704 2025-02-16 02:03:14.704 404049 628 404607 1010 4 2849 2025-02-15 14:42:05.962 2025-02-15 14:42:05.962 404068 7847 404099 2620 1 2850 2025-02-22 22:03:04.296 2025-02-22 22:03:04.296 404068 7847 413128 1803 1 2851 2025-02-16 01:27:07.244 2025-02-16 01:27:07.244 404074 14152 404583 19842 1 2852 2025-02-15 21:33:01.067 2025-02-15 21:33:01.067 404300 18930 404427 1571 1 2853 2025-02-18 21:41:16.763 2025-02-18 21:41:16.763 408542 6526 408545 10549 1 2854 2025-02-15 19:22:27.968 2025-02-15 19:22:27.968 404279 19198 404333 9351 1 2855 2025-02-15 15:10:12.007 2025-02-15 15:10:12.007 404086 16556 404119 16149 1 2856 2025-02-15 22:39:54.926 2025-02-15 22:39:54.926 404095 20841 404475 14385 4 2857 2025-02-15 18:34:59.24 2025-02-15 18:34:59.24 404095 20841 404288 20897 1 2858 2025-02-15 16:09:35.066 2025-02-15 16:09:35.066 404095 20841 404186 12736 1 2859 2025-02-15 15:17:45.501 2025-02-15 15:17:45.501 404095 20841 404131 9355 1 2860 2025-02-15 14:52:36.45 2025-02-15 14:52:36.45 404095 20841 404104 21794 1 2861 2025-02-15 23:26:45.268 2025-02-15 23:26:45.268 404095 20841 404502 4166 1 2862 2025-02-15 17:13:46.392 2025-02-15 17:13:46.392 404095 20841 404237 4035 2 2863 2025-02-15 23:57:03.257 2025-02-15 23:57:03.257 404095 20841 404516 11776 4 2864 2025-02-15 22:03:28.269 2025-02-15 22:03:28.269 404095 20841 404449 10493 1 2865 2025-02-15 23:41:29.537 2025-02-15 23:41:29.537 404095 20841 404510 16145 3 2866 2025-02-16 02:29:52.001 2025-02-16 02:29:52.001 404095 20841 404616 16230 1 2867 2025-02-15 15:26:52.878 2025-02-15 15:26:52.878 404095 20841 404142 4345 3 2868 2025-02-15 15:23:17.249 2025-02-15 15:23:17.249 404095 20841 404139 1833 2 2869 2025-02-15 23:26:24.399 2025-02-15 23:26:24.399 404095 20841 404501 656 2 2870 2025-02-15 20:37:19.145 2025-02-15 20:37:19.145 404095 20841 404384 20817 1 2871 2025-02-16 03:06:57.621 2025-02-16 03:06:57.621 404095 20841 404627 12272 1 2872 2025-02-15 18:47:32.161 2025-02-15 18:47:32.161 404095 20841 404301 21140 3 2873 2025-02-15 19:59:11.925 2025-02-15 19:59:11.925 404117 1697 404363 11789 2 2874 2025-02-15 19:18:53.025 2025-02-15 19:18:53.025 404117 1697 404331 16724 1 2875 2025-02-15 16:07:57.295 2025-02-15 16:07:57.295 404130 21338 404183 826 1 2876 2025-02-15 16:09:44.757 2025-02-15 16:09:44.757 404140 2111 404187 8037 1 2877 2025-02-15 22:39:54.926 2025-02-15 22:39:54.926 404142 4345 404475 14385 1 2878 2025-02-15 16:07:53.096 2025-02-15 16:07:53.096 404145 15521 404182 633 1 2879 2025-03-09 16:02:37.121 2025-03-09 16:02:37.121 404172 20554 431197 4538 1 2880 2025-02-16 01:52:42.394 2025-02-16 01:52:42.394 404242 21442 404600 19217 5 2881 2025-02-16 00:43:36.491 2025-02-16 00:43:36.491 404242 21442 404546 16562 4 2882 2025-02-15 19:20:37.58 2025-02-15 19:20:37.58 404242 21442 404332 9845 1 2883 2025-02-15 19:22:43.418 2025-02-15 19:22:43.418 404242 21442 404334 16059 2 2884 2025-02-15 21:08:46.209 2025-02-15 21:08:46.209 404242 21442 404411 20616 3 2885 2025-03-09 16:02:34.037 2025-03-09 16:02:34.037 404249 1751 431196 13566 1 2886 2025-02-15 21:11:09.597 2025-02-15 21:11:09.597 404270 2670 404412 1483 1 2887 2025-02-15 22:44:17.435 2025-02-15 22:44:17.435 404270 2670 404477 10862 2 2888 2025-02-15 22:02:47.702 2025-02-15 22:02:47.702 404270 2670 404448 15100 1 2889 2025-02-15 20:04:16.077 2025-02-15 20:04:16.077 404270 2670 404364 20439 1 2890 2025-02-15 21:50:04.202 2025-02-15 21:50:04.202 404270 2670 404437 21547 1 2891 2025-02-15 20:53:01.94 2025-02-15 20:53:01.94 404270 2670 404394 7583 1 2892 2025-02-15 20:28:37.696 2025-02-15 20:28:37.696 404270 2670 404379 20922 1 2893 2025-02-15 23:21:40.267 2025-02-15 23:21:40.267 404270 2670 404497 3360 3 2894 2025-02-15 19:43:33.202 2025-02-15 19:43:33.202 404270 2670 404346 11938 1 2895 2025-02-15 20:44:49.673 2025-02-15 20:44:49.673 404270 2670 404387 4474 1 2896 2025-02-15 23:15:32.536 2025-02-15 23:15:32.536 404270 2670 404496 15386 1 2897 2025-02-15 19:57:30.715 2025-02-15 19:57:30.715 404287 21427 404362 8985 1 2898 2025-02-18 14:04:00.101 2025-02-18 14:04:00.101 407959 14910 407986 1307 1 2899 2025-02-15 19:13:58.428 2025-02-15 19:13:58.428 404313 811 404325 7760 1 2900 2025-02-15 22:16:12.797 2025-02-15 22:16:12.797 404341 18409 404460 5527 1 2901 2025-02-15 23:55:33.542 2025-02-15 23:55:33.542 404341 18409 404515 20849 1 2902 2025-02-15 23:27:56.782 2025-02-15 23:27:56.782 404344 900 404503 9334 1 2903 2025-02-18 07:43:56.88 2025-02-18 07:43:56.88 407236 21207 407551 10283 2 2904 2025-02-18 01:03:15.901 2025-02-18 01:03:15.901 407236 21207 407425 5112 1 2905 2025-02-18 09:26:56.148 2025-02-18 09:26:56.148 407236 21207 407661 15762 3 2906 2025-02-15 21:59:53.323 2025-02-15 21:59:53.323 404368 886 404445 20377 1 2907 2025-02-15 22:07:48.109 2025-02-15 22:07:48.109 404368 886 404452 18174 2 2908 2025-02-15 20:47:39.666 2025-02-15 20:47:39.666 404390 17798 404391 3642 1 2909 2025-02-15 21:27:58.743 2025-02-15 21:27:58.743 404410 20599 404423 732 1 2910 2025-02-17 08:17:23.544 2025-02-17 08:17:23.544 406236 21271 406274 803 1 2911 2025-02-15 21:30:34.638 2025-02-15 21:30:34.638 404424 7960 404425 16214 1 2912 2025-02-17 23:03:48.378 2025-02-17 23:03:48.378 406576 10270 407343 20450 2 2913 2025-02-17 18:02:49.684 2025-02-17 18:02:49.684 406576 10270 407026 20854 1 2914 2025-02-15 21:46:34.957 2025-02-15 21:46:34.957 404432 15192 404435 688 1 2915 2025-02-15 22:16:11.777 2025-02-15 22:16:11.777 404434 21356 404459 6361 1 2916 2025-02-16 16:47:23.16 2025-02-16 16:47:23.16 405496 13878 405529 2328 1 2917 2025-02-16 02:28:23.564 2025-02-16 02:28:23.564 404523 2361 404615 12562 1 2918 2025-02-16 02:51:45.591 2025-02-16 02:51:45.591 404523 2361 404623 21521 2 2919 2025-02-16 01:21:36.491 2025-02-16 01:21:36.491 404548 21815 404580 13399 1 2920 2025-02-16 02:28:11.932 2025-02-16 02:28:11.932 404606 1428 404614 19735 1 2921 2025-02-16 02:30:21.935 2025-02-16 02:30:21.935 404606 1428 404617 13767 2 2922 2025-02-16 03:09:37.118 2025-02-16 03:09:37.118 404606 1428 404628 3400 3 2923 2025-02-16 02:49:18.083 2025-02-16 02:49:18.083 404606 1428 404621 1603 3 2924 2025-02-18 10:38:15.814 2025-02-18 10:38:15.814 406297 1012 407731 18601 5 2925 2025-02-18 07:50:49.591 2025-02-18 07:50:49.591 406297 1012 407561 21430 4 2926 2025-02-17 13:03:59.06 2025-02-17 13:03:59.06 406297 1012 406620 1881 1 2927 2025-02-17 23:02:50.536 2025-02-17 23:02:50.536 406297 1012 407341 2330 1 2928 2025-02-17 21:47:14.605 2025-02-17 21:47:14.605 406297 1012 407283 1726 3 2929 2025-02-18 12:11:01.034 2025-02-18 12:11:01.034 406297 1012 407826 10944 2 2930 2025-02-17 12:32:54.243 2025-02-17 12:32:54.243 406297 1012 406548 16270 1 2931 2025-02-17 21:24:34.358 2025-02-17 21:24:34.358 406297 1012 407259 21291 2 2932 2025-02-18 09:48:01.925 2025-02-18 09:48:01.925 406446 1638 407685 15624 1 2933 2025-02-17 23:12:05.506 2025-02-17 23:12:05.506 406452 9354 407356 20826 1 2934 2025-02-18 12:11:01.034 2025-02-18 12:11:01.034 406548 16270 407826 10944 1 2935 2025-02-17 23:20:07.046 2025-02-17 23:20:07.046 406569 18678 407367 21060 1 2936 2025-02-18 02:44:12.464 2025-02-18 02:44:12.464 406903 992 407453 12779 1 2937 2025-02-18 12:20:30.418 2025-02-18 12:20:30.418 406903 992 407841 2056 2 2938 2025-02-20 14:06:25.339 2025-02-20 14:06:25.339 406917 13406 410505 16939 1 2939 2025-02-18 14:28:29.254 2025-02-18 14:28:29.254 406917 13406 408017 2529 1 2940 2025-02-18 09:55:50.123 2025-02-18 09:55:50.123 407018 629 407702 4633 10 2941 2025-02-18 09:38:48.437 2025-02-18 09:38:48.437 407018 629 407671 8570 7 2942 2025-02-18 08:06:03.999 2025-02-18 08:06:03.999 407018 629 407586 4345 4 2943 2025-02-18 08:04:16.213 2025-02-18 08:04:16.213 407018 629 407583 2322 3 2944 2025-02-17 18:38:52.63 2025-02-17 18:38:52.63 407018 629 407063 9200 1 2945 2025-02-18 09:42:09.408 2025-02-18 09:42:09.408 407018 629 407678 11165 9 2946 2025-02-18 09:33:20.657 2025-02-18 09:33:20.657 407018 629 407668 21430 6 2947 2025-02-18 09:39:29.886 2025-02-18 09:39:29.886 407018 629 407673 6594 8 2948 2025-02-18 09:27:19.343 2025-02-18 09:27:19.343 407018 629 407663 5377 5 2949 2025-02-17 18:10:18.862 2025-02-17 18:10:18.862 407018 629 407035 14271 1 2950 2025-02-18 08:01:42.933 2025-02-18 08:01:42.933 407018 629 407581 1007 2 2951 2025-02-18 06:31:14.3 2025-02-18 06:31:14.3 407083 20606 407522 16834 1 2952 2025-02-17 21:04:51.809 2025-02-17 21:04:51.809 407198 3409 407236 21207 2 2953 2025-02-17 20:39:45.55 2025-02-17 20:39:45.55 407198 3409 407209 19199 1 2954 2025-02-18 07:43:56.88 2025-02-18 07:43:56.88 407198 3409 407551 10283 4 2955 2025-02-18 01:03:15.901 2025-02-18 01:03:15.901 407198 3409 407425 5112 3 2956 2025-02-18 09:26:56.148 2025-02-18 09:26:56.148 407198 3409 407661 15762 5 2957 2025-02-18 07:52:11.838 2025-02-18 07:52:11.838 407218 18956 407563 18219 1 2958 2025-02-18 11:53:14.202 2025-02-18 11:53:14.202 407669 21019 407800 21208 1 2959 2025-02-17 22:19:41.036 2025-02-17 22:19:41.036 407290 14271 407304 2529 2 2960 2025-02-17 22:17:24.284 2025-02-17 22:17:24.284 407290 14271 407301 13987 1 2961 2025-02-17 22:33:57.285 2025-02-17 22:33:57.285 407290 14271 407312 10060 4 2962 2025-02-17 22:29:56.496 2025-02-17 22:29:56.496 407290 14271 407308 733 3 2963 2025-02-18 10:55:53.812 2025-02-18 10:55:53.812 407290 14271 407745 11776 1 2964 2025-02-17 22:43:36.703 2025-02-17 22:43:36.703 407290 14271 407327 6335 5 2965 2025-03-13 02:56:39.607 2025-03-13 02:56:39.607 435836 827 435845 10698 2 2966 2025-03-13 09:22:11.535 2025-03-13 09:22:11.535 435836 827 436054 20825 3 2967 2025-03-13 02:53:27.618 2025-03-13 02:53:27.618 435836 827 435843 6191 1 2968 2025-03-13 09:44:54.862 2025-03-13 09:44:54.862 435836 827 436078 5694 4 2969 2025-02-17 22:43:36.703 2025-02-17 22:43:36.703 407312 10060 407327 6335 1 2970 2025-02-17 23:18:13.623 2025-02-17 23:18:13.623 407355 10608 407362 20906 1 2971 2025-02-18 03:31:13.872 2025-02-18 03:31:13.872 407400 993 407466 1245 1 2972 2025-02-18 04:34:29.885 2025-02-18 04:34:29.885 407400 993 407483 10393 3 2973 2025-02-18 11:53:14.202 2025-02-18 11:53:14.202 407400 993 407800 21208 3 2974 2025-02-18 09:34:55.173 2025-02-18 09:34:55.173 407400 993 407669 21019 2 2975 2025-02-18 04:07:12.674 2025-02-18 04:07:12.674 407400 993 407476 5487 2 2976 2025-02-18 03:22:38.205 2025-02-18 03:22:38.205 407400 993 407461 16653 1 2977 2025-02-18 09:51:51.225 2025-02-18 09:51:51.225 407427 18601 407693 9969 1 2978 2025-02-18 09:12:11.635 2025-02-18 09:12:11.635 407427 18601 407644 2529 1 2979 2025-02-18 04:34:29.885 2025-02-18 04:34:29.885 407476 5487 407483 10393 1 2980 2025-03-09 15:29:48.617 2025-03-09 15:29:48.617 411140 739 431118 19193 1 2981 2025-02-18 16:10:05.651 2025-02-18 16:10:05.651 407477 17316 408186 13174 1 2982 2025-02-18 06:12:43.879 2025-02-18 06:12:43.879 407490 776 407517 8287 1 2983 2025-02-18 05:18:40.874 2025-02-18 05:18:40.874 407506 1584 407507 2342 1 2984 2025-02-18 09:55:50.123 2025-02-18 09:55:50.123 407678 11165 407702 4633 1 2985 2025-02-18 10:29:36.025 2025-02-18 10:29:36.025 407513 2013 407723 716 1 2986 2025-02-18 09:26:56.148 2025-02-18 09:26:56.148 407551 10283 407661 15762 1 2987 2025-02-18 10:38:15.814 2025-02-18 10:38:15.814 407561 21430 407731 18601 1 2988 2025-02-18 15:21:01.8 2025-02-18 15:21:01.8 407795 9335 408130 7877 1 2989 2025-02-18 17:14:32.141 2025-02-18 17:14:32.141 407795 9335 408286 12139 1 2990 2025-02-18 18:30:33.058 2025-02-18 18:30:33.058 407961 20663 408380 20280 1 2991 2025-02-18 14:03:50.239 2025-02-18 14:03:50.239 407964 1039 407985 636 1 2992 2025-03-23 07:31:56.187 2025-03-23 07:31:56.187 449079 7119 449103 19777 1 2993 2025-02-18 14:58:56.704 2025-02-18 14:58:56.704 407607 15890 408075 2437 1 2994 2025-02-18 11:26:53.014 2025-02-18 11:26:53.014 407607 15890 407787 9362 2 2995 2025-02-18 14:31:00.999 2025-02-18 14:31:00.999 407607 15890 408021 629 1 2996 2025-02-18 14:34:12 2025-02-18 14:34:12 407607 15890 408024 18309 1 2997 2025-02-18 11:57:29.139 2025-02-18 11:57:29.139 407607 15890 407805 21063 2 2998 2025-02-18 10:46:57.091 2025-02-18 10:46:57.091 407607 15890 407739 17001 1 2999 2025-02-23 20:50:20.752 2025-02-23 20:50:20.752 407607 15890 414373 5455 2 3000 2025-02-18 09:18:04.154 2025-02-18 09:18:04.154 407619 3360 407652 21114 2 3001 2025-02-18 11:05:36.927 2025-02-18 11:05:36.927 407619 3360 407760 17365 3 3002 2025-02-18 13:50:05.863 2025-02-18 13:50:05.863 407619 3360 407959 14910 1 3003 2025-02-18 10:58:58.861 2025-02-18 10:58:58.861 407619 3360 407750 4043 2 3004 2025-02-18 08:48:19.163 2025-02-18 08:48:19.163 407619 3360 407620 11491 1 3005 2025-02-18 14:04:00.101 2025-02-18 14:04:00.101 407619 3360 407986 1307 2 3006 2025-02-18 16:20:47.187 2025-02-18 16:20:47.187 407619 3360 408213 20551 1 3007 2025-02-18 14:37:43.52 2025-02-18 14:37:43.52 407619 3360 408032 1352 1 3008 2025-02-18 16:30:26.793 2025-02-18 16:30:26.793 407619 3360 408219 15243 1 3009 2025-02-18 09:48:30.76 2025-02-18 09:48:30.76 407619 3360 407686 11220 3 3010 2025-02-18 09:50:33.044 2025-02-18 09:50:33.044 407619 3360 407690 17727 2 3011 2025-02-18 09:03:03.377 2025-02-18 09:03:03.377 407619 3360 407629 9426 1 3012 2025-02-18 09:21:42.934 2025-02-18 09:21:42.934 407619 3360 407654 17226 1 3013 2025-02-18 09:40:20.843 2025-02-18 09:40:20.843 407619 3360 407675 17091 2 3014 2025-02-18 08:58:16.203 2025-02-18 08:58:16.203 407619 3360 407625 19484 1 3015 2025-02-18 12:07:09.109 2025-02-18 12:07:09.109 407619 3360 407819 17212 1 3016 2025-02-18 17:52:43.415 2025-02-18 17:52:43.415 407621 5870 408334 6741 1 3017 2025-02-18 09:18:04.154 2025-02-18 09:18:04.154 407629 9426 407652 21114 1 3018 2025-02-18 10:19:57.539 2025-02-18 10:19:57.539 407646 21555 407718 4035 1 3019 2025-02-18 09:50:33.044 2025-02-18 09:50:33.044 407654 17226 407690 17727 1 3020 2025-02-18 09:48:30.76 2025-02-18 09:48:30.76 407675 17091 407686 11220 1 3021 2025-02-20 14:11:22.454 2025-02-20 14:11:22.454 407677 5708 410515 7580 1 3022 2025-02-18 16:39:22.503 2025-02-18 16:39:22.503 408227 20939 408234 16356 1 3023 2025-02-18 17:02:29.721 2025-02-18 17:02:29.721 408212 1060 408272 16970 1 3024 2025-02-18 16:12:38.894 2025-02-18 16:12:38.894 407679 1244 408192 2773 1 3025 2025-02-18 14:59:58.272 2025-02-18 14:59:58.272 407864 2065 408081 16847 1 3026 2025-02-18 10:18:20.092 2025-02-18 10:18:20.092 407713 3360 407715 633 1 3027 2025-02-20 14:05:08.292 2025-02-20 14:05:08.292 408713 21116 410498 5825 1 3028 2025-03-09 16:01:36.989 2025-03-09 16:01:36.989 408713 21116 431178 3417 1 3029 2025-02-18 12:07:28.764 2025-02-18 12:07:28.764 407714 20439 407821 7916 1 3030 2025-02-18 12:35:50.553 2025-02-18 12:35:50.553 407735 2652 407860 21734 1 3031 2025-02-18 16:44:31.975 2025-02-18 16:44:31.975 408233 1471 408245 2327 1 3032 2025-02-18 11:26:53.014 2025-02-18 11:26:53.014 407739 17001 407787 9362 1 3033 2025-02-18 11:57:29.139 2025-02-18 11:57:29.139 407739 17001 407805 21063 1 3034 2025-02-18 11:08:03.055 2025-02-18 11:08:03.055 407748 20852 407765 14080 1 3035 2025-02-18 18:58:26.396 2025-02-18 18:58:26.396 408159 11314 408406 1173 1 3036 2025-02-20 11:53:15.31 2025-02-20 11:53:15.31 410135 670 410256 634 1 3037 2025-02-20 14:23:54.052 2025-02-20 14:23:54.052 410135 670 410538 21418 1 3038 2025-02-20 15:09:38.201 2025-02-20 15:09:38.201 410135 670 410609 20454 2 3039 2025-02-20 15:14:20.57 2025-02-20 15:14:20.57 410135 670 410618 15075 2 3040 2025-02-20 11:45:42.903 2025-02-20 11:45:42.903 410135 670 410247 21804 1 3041 2025-02-20 15:14:37.746 2025-02-20 15:14:37.746 410135 670 410623 746 2 3042 2025-02-20 16:53:42.321 2025-02-20 16:53:42.321 410135 670 410752 21228 1 3043 2025-02-18 17:20:26.912 2025-02-18 17:20:26.912 408190 4118 408292 672 1 3044 2025-02-18 16:20:20.425 2025-02-18 16:20:20.425 408195 18865 408211 21416 1 3045 2025-02-18 11:05:36.927 2025-02-18 11:05:36.927 407750 4043 407760 17365 1 3046 2025-02-18 11:42:17.835 2025-02-18 11:42:17.835 407793 21444 407794 21383 1 3047 2025-02-18 12:05:34.929 2025-02-18 12:05:34.929 407803 807 407816 698 1 3048 2025-02-18 12:00:35.205 2025-02-18 12:00:35.205 407811 9354 407812 11144 1 3049 2025-02-18 14:01:49.882 2025-02-18 14:01:49.882 407836 18313 407980 2709 1 3050 2025-02-18 15:57:39.804 2025-02-18 15:57:39.804 407836 18313 408169 17690 1 3051 2025-02-18 14:53:41.986 2025-02-18 14:53:41.986 407838 21281 408067 15858 1 3052 2025-02-21 16:49:27.637 2025-02-21 16:49:27.637 411086 17082 411732 16193 1 3053 2025-02-18 13:10:49.921 2025-02-18 13:10:49.921 407870 2460 407917 2309 2 3054 2025-02-18 14:49:19.041 2025-02-18 14:49:19.041 407870 2460 408057 4862 1 3055 2025-02-18 12:59:36.238 2025-02-18 12:59:36.238 407870 2460 407902 811 1 3056 2025-02-18 14:30:30.823 2025-02-18 14:30:30.823 407983 9476 408020 20612 1 3057 2025-02-18 14:39:44.954 2025-02-18 14:39:44.954 407983 9476 408035 20523 2 3058 2025-02-18 14:48:31.867 2025-02-18 14:48:31.867 407983 9476 408053 19527 3 3059 2025-02-18 14:58:15.052 2025-02-18 14:58:15.052 407983 9476 408072 4128 4 3060 2025-02-18 15:02:37.335 2025-02-18 15:02:37.335 407879 15577 408088 7760 1 3061 2025-02-18 13:06:03.501 2025-02-18 13:06:03.501 407898 20370 407911 6526 1 3062 2025-02-18 14:23:10.809 2025-02-18 14:23:10.809 407898 20370 408010 21116 1 3063 2025-02-18 14:28:45.586 2025-02-18 14:28:45.586 407898 20370 408018 1658 1 3064 2025-02-18 13:10:49.921 2025-02-18 13:10:49.921 407902 811 407917 2309 1 3065 2025-02-18 15:03:48.509 2025-02-18 15:03:48.509 408026 17797 408093 2775 4 3066 2025-02-18 14:41:31.153 2025-02-18 14:41:31.153 408026 17797 408039 21451 1 3067 2025-02-18 14:49:16.244 2025-02-18 14:49:16.244 408026 17797 408056 20157 2 3068 2025-02-18 14:56:12.684 2025-02-18 14:56:12.684 408026 17797 408069 8284 3 3069 2025-02-18 14:52:29.135 2025-02-18 14:52:29.135 408026 17797 408064 10821 1 3070 2025-02-18 15:03:48.509 2025-02-18 15:03:48.509 407903 21494 408093 2775 8 3071 2025-02-18 14:41:31.153 2025-02-18 14:41:31.153 407903 21494 408039 21451 5 3072 2025-02-18 14:34:41.255 2025-02-18 14:34:41.255 407903 21494 408026 17797 4 3073 2025-02-18 14:02:54.389 2025-02-18 14:02:54.389 407903 21494 407983 9476 3 3074 2025-02-18 14:30:30.823 2025-02-18 14:30:30.823 407903 21494 408020 20612 4 3075 2025-02-18 16:19:05.005 2025-02-18 16:19:05.005 407903 21494 408208 10433 1 3076 2025-02-18 16:44:00.532 2025-02-18 16:44:00.532 407903 21494 408243 20588 1 3077 2025-02-18 16:08:35.504 2025-02-18 16:08:35.504 407903 21494 408184 7913 1 3078 2025-02-18 14:28:19.384 2025-02-18 14:28:19.384 407903 21494 408016 15728 3 3079 2025-02-18 14:00:23.899 2025-02-18 14:00:23.899 407903 21494 407976 7097 2 3080 2025-02-18 14:48:31.867 2025-02-18 14:48:31.867 407903 21494 408053 19527 6 3081 2025-02-18 16:35:30.315 2025-02-18 16:35:30.315 407903 21494 408228 8472 2 3082 2025-02-18 21:41:16.763 2025-02-18 21:41:16.763 407903 21494 408545 10549 2 3083 2025-02-18 16:20:32.356 2025-02-18 16:20:32.356 407903 21494 408212 1060 1 3084 2025-02-18 13:52:35.347 2025-02-18 13:52:35.347 407903 21494 407963 12277 1 3085 2025-02-18 14:03:50.239 2025-02-18 14:03:50.239 407903 21494 407985 636 2 3086 2025-02-18 16:14:16.561 2025-02-18 16:14:16.561 407903 21494 408195 18865 2 3087 2025-02-18 14:39:44.954 2025-02-18 14:39:44.954 407903 21494 408035 20523 5 3088 2025-02-18 13:19:31.045 2025-02-18 13:19:31.045 407903 21494 407928 21116 1 3089 2025-02-18 17:01:07.78 2025-02-18 17:01:07.78 407903 21494 408269 15890 1 3090 2025-02-18 14:49:16.244 2025-02-18 14:49:16.244 407903 21494 408056 20157 6 3091 2025-02-18 14:56:12.684 2025-02-18 14:56:12.684 407903 21494 408069 8284 7 3092 2025-02-18 14:52:29.135 2025-02-18 14:52:29.135 407903 21494 408064 10821 5 3093 2025-02-18 14:58:15.052 2025-02-18 14:58:15.052 407903 21494 408072 4128 7 3094 2025-02-18 13:53:55.915 2025-02-18 13:53:55.915 407903 21494 407964 1039 1 3095 2025-02-18 14:58:08.488 2025-02-18 14:58:08.488 407903 21494 408071 5112 1 3096 2025-02-18 15:04:45.152 2025-02-18 15:04:45.152 407903 21494 408096 20812 2 3097 2025-02-18 15:01:42.614 2025-02-18 15:01:42.614 407903 21494 408084 17124 1 3098 2025-02-18 15:09:46.479 2025-02-18 15:09:46.479 407903 21494 408107 663 2 3099 2025-02-18 16:20:20.425 2025-02-18 16:20:20.425 407903 21494 408211 21416 3 3100 2025-02-18 17:02:29.721 2025-02-18 17:02:29.721 407903 21494 408272 16970 2 3101 2025-02-18 16:38:41.867 2025-02-18 16:38:41.867 407903 21494 408233 1471 2 3102 2025-02-18 16:44:31.975 2025-02-18 16:44:31.975 407903 21494 408245 2327 3 3103 2025-02-18 16:59:36.869 2025-02-18 16:59:36.869 407903 21494 408266 12935 2 3104 2025-02-18 17:01:36.259 2025-02-18 17:01:36.259 407903 21494 408270 21178 2 3105 2025-02-18 17:02:56.454 2025-02-18 17:02:56.454 407903 21494 408273 5495 3 3106 2025-02-18 17:03:50.922 2025-02-18 17:03:50.922 407903 21494 408274 8506 2 3107 2025-02-18 17:43:25.768 2025-02-18 17:43:25.768 407903 21494 408323 20434 1 3108 2025-02-18 17:54:32.531 2025-02-18 17:54:32.531 407903 21494 408337 21485 2 3109 2025-02-18 21:39:19.615 2025-02-18 21:39:19.615 407903 21494 408542 6526 1 3110 2025-02-18 16:27:40.306 2025-02-18 16:27:40.306 407903 21494 408216 21103 1 3111 2025-02-18 13:59:42.167 2025-02-18 13:59:42.167 407903 21494 407974 4831 2 3112 2025-02-18 17:04:15.53 2025-02-18 17:04:15.53 408262 11527 408275 15146 1 3113 2025-02-23 19:08:25.971 2025-02-23 19:08:25.971 413545 9450 414253 1631 1 3114 2025-02-18 17:06:57.822 2025-02-18 17:06:57.822 407918 19655 408279 7773 1 3115 2025-02-18 14:48:04.313 2025-02-18 14:48:04.313 407918 19655 408052 1717 1 3116 2025-02-18 15:16:17.314 2025-02-18 15:16:17.314 407918 19655 408117 20657 1 3117 2025-02-19 01:23:26.244 2025-02-19 01:23:26.244 407918 19655 408658 21416 1 3118 2025-02-18 16:40:20.932 2025-02-18 16:40:20.932 407918 19655 408236 20439 1 3119 2025-02-18 16:35:30.315 2025-02-18 16:35:30.315 408208 10433 408228 8472 1 3120 2025-02-18 14:00:15.716 2025-02-18 14:00:15.716 407930 11862 407975 17275 1 3121 2025-02-18 14:11:16.267 2025-02-18 14:11:16.267 407930 11862 407995 6137 2 3122 2025-02-18 14:24:25.418 2025-02-18 14:24:25.418 407930 11862 408013 20180 3 3123 2025-02-18 18:51:42.813 2025-02-18 18:51:42.813 408003 17157 408400 20198 2 3124 2025-02-18 14:22:59.949 2025-02-18 14:22:59.949 408003 17157 408009 16808 1 3125 2025-02-18 15:00:20.839 2025-02-18 15:00:20.839 408066 899 408082 21803 1 3126 2025-02-18 15:10:42.02 2025-02-18 15:10:42.02 408068 16876 408111 21713 1 3127 2025-02-18 15:18:52.448 2025-02-18 15:18:52.448 408068 16876 408121 5776 2 3128 2025-02-18 15:51:15.486 2025-02-18 15:51:15.486 408068 16876 408164 635 1 3129 2025-02-18 15:03:48.509 2025-02-18 15:03:48.509 408069 8284 408093 2775 1 3130 2025-02-18 15:04:45.152 2025-02-18 15:04:45.152 408071 5112 408096 20812 1 3131 2025-02-23 20:50:20.752 2025-02-23 20:50:20.752 408075 2437 414373 5455 1 3132 2025-02-18 15:02:19.454 2025-02-18 15:02:19.454 408076 16177 408087 1465 1 3133 2025-02-18 15:09:46.479 2025-02-18 15:09:46.479 408084 17124 408107 663 1 3134 2025-02-18 17:21:59.549 2025-02-18 17:21:59.549 408149 4958 408295 20683 1 3135 2025-02-18 17:19:39.703 2025-02-18 17:19:39.703 408265 937 408291 20849 1 3136 2025-02-18 18:02:21.371 2025-02-18 18:02:21.371 408265 937 408349 4763 1 3137 2025-02-18 17:02:56.454 2025-02-18 17:02:56.454 408270 21178 408273 5495 1 3138 2025-02-20 14:35:48.365 2025-02-20 14:35:48.365 410337 5112 410558 14990 1 3139 2025-02-20 15:28:06.322 2025-02-20 15:28:06.322 410237 20616 410644 1515 1 3140 2025-02-20 13:35:13.307 2025-02-20 13:35:13.307 410237 20616 410441 21379 1 3141 2025-02-20 14:09:59.681 2025-02-20 14:09:59.681 410237 20616 410512 20433 1 3142 2025-02-20 14:19:14.513 2025-02-20 14:19:14.513 410237 20616 410532 14271 2 3143 2025-02-20 14:16:14.723 2025-02-20 14:16:14.723 410237 20616 410526 6382 2 3144 2025-02-20 13:56:24.976 2025-02-20 13:56:24.976 410237 20616 410480 2722 1 3145 2025-02-20 14:11:13.44 2025-02-20 14:11:13.44 410237 20616 410514 4776 2 3146 2025-02-20 13:58:07.648 2025-02-20 13:58:07.648 410237 20616 410484 21501 1 3147 2025-02-20 14:17:27.276 2025-02-20 14:17:27.276 410237 20616 410529 5757 2 3148 2025-02-20 15:21:38.536 2025-02-20 15:21:38.536 410237 20616 410629 10016 4 3149 2025-02-20 15:20:15.982 2025-02-20 15:20:15.982 410237 20616 410628 2724 2 3150 2025-02-20 15:44:33.76 2025-02-20 15:44:33.76 410237 20616 410675 8726 3 3151 2025-02-20 15:34:42.932 2025-02-20 15:34:42.932 410237 20616 410660 1584 2 3152 2025-02-20 14:27:57.984 2025-02-20 14:27:57.984 410237 20616 410547 13174 3 3153 2025-02-20 15:04:57.996 2025-02-20 15:04:57.996 410237 20616 410601 10731 1 3154 2025-02-18 19:03:13.659 2025-02-18 19:03:13.659 408408 1505 408413 20201 1 3155 2025-02-19 00:59:00.112 2025-02-19 00:59:00.112 408619 7668 408650 20993 1 3156 2025-02-19 01:21:44.02 2025-02-19 01:21:44.02 408655 18526 408657 1122 1 3157 2025-03-09 16:01:40.011 2025-03-09 16:01:40.011 408691 18309 431179 20434 1 3158 2025-02-20 14:05:16.478 2025-02-20 14:05:16.478 408691 18309 410499 20912 1 3159 2025-02-20 12:14:00.736 2025-02-20 12:14:00.736 410279 4314 410280 11897 1 3160 2025-03-09 15:27:21.299 2025-03-09 15:27:21.299 417257 21599 431090 8472 1 3161 2025-02-19 18:59:05.531 2025-02-19 18:59:05.531 409383 16347 409694 8284 1 3162 2025-02-19 19:45:13.64 2025-02-19 19:45:13.64 409383 16347 409716 836 2 3163 2025-02-20 09:43:13.769 2025-02-20 09:43:13.769 409591 1454 410147 13622 1 3164 2025-02-20 14:31:45.367 2025-02-20 14:31:45.367 409591 1454 410553 21620 2 3165 2025-02-20 15:10:41.559 2025-02-20 15:10:41.559 410449 17455 410612 18402 1 3166 2025-02-20 17:12:25.4 2025-02-20 17:12:25.4 410767 17690 410774 20734 1 3167 2025-02-20 14:23:14.756 2025-02-20 14:23:14.756 410477 2593 410535 12220 1 3168 2025-02-20 10:17:24.948 2025-02-20 10:17:24.948 409610 2577 410176 21444 1 3169 2025-02-20 10:40:16.478 2025-02-20 10:40:16.478 409729 17030 410191 17148 1 3170 2025-02-20 16:13:05.749 2025-02-20 16:13:05.749 409787 21365 410698 18608 1 3171 2025-02-20 16:16:43.405 2025-02-20 16:16:43.405 409787 21365 410704 15536 2 3172 2025-02-20 10:08:30.166 2025-02-20 10:08:30.166 409812 634 410165 14774 1 3173 2025-02-20 15:16:45.56 2025-02-20 15:16:45.56 409910 2016 410626 9348 3 3174 2025-02-20 11:30:02.28 2025-02-20 11:30:02.28 409910 2016 410235 18525 2 3175 2025-02-20 05:50:29.397 2025-02-20 05:50:29.397 409910 2016 409999 16954 1 3176 2025-02-24 19:00:43.204 2025-02-24 19:00:43.204 409934 6382 415391 4802 2 3177 2025-02-24 17:44:00.213 2025-02-24 17:44:00.213 409934 6382 415321 14791 1 3178 2025-02-24 19:24:15.21 2025-02-24 19:24:15.21 409934 6382 415413 11328 4 3179 2025-02-20 13:49:37.539 2025-02-20 13:49:37.539 409934 6382 410470 17162 1 3180 2025-02-24 19:22:28.812 2025-02-24 19:22:28.812 409934 6382 415410 700 3 3181 2025-02-20 14:24:16.616 2025-02-20 14:24:16.616 409969 11992 410540 3642 1 3182 2025-02-20 15:39:39.542 2025-02-20 15:39:39.542 410657 20409 410669 19857 1 3183 2025-02-23 14:09:14.716 2025-02-23 14:09:14.716 409994 15075 413880 646 1 3184 2025-02-20 16:37:30.191 2025-02-20 16:37:30.191 410018 1603 410726 13143 2 3185 2025-02-20 08:11:12.333 2025-02-20 08:11:12.333 410018 1603 410065 14791 1 3186 2025-02-20 13:06:05.627 2025-02-20 13:06:05.627 410018 1603 410379 10056 2 3187 2025-02-20 13:10:18.245 2025-02-20 13:10:18.245 410018 1603 410386 20623 2 3188 2025-02-20 13:12:01.912 2025-02-20 13:12:01.912 410018 1603 410393 663 2 3189 2025-02-20 08:14:24.582 2025-02-20 08:14:24.582 410018 1603 410068 14213 1 3190 2025-02-20 13:14:21.143 2025-02-20 13:14:21.143 410018 1603 410404 15690 3 3191 2025-02-20 13:54:55.86 2025-02-20 13:54:55.86 410018 1603 410479 21768 3 3192 2025-02-20 08:26:27.628 2025-02-20 08:26:27.628 410018 1603 410080 21369 1 3193 2025-02-20 07:51:10.593 2025-02-20 07:51:10.593 410018 1603 410054 21540 1 3194 2025-02-20 13:50:21.243 2025-02-20 13:50:21.243 410018 1603 410472 699 3 3195 2025-02-20 16:37:30.191 2025-02-20 16:37:30.191 410054 21540 410726 13143 1 3196 2025-02-20 11:22:00.408 2025-02-20 11:22:00.408 410094 703 410229 12561 1 3197 2025-02-20 11:00:37.893 2025-02-20 11:00:37.893 410094 703 410217 11670 1 3198 2025-02-20 14:00:27.835 2025-02-20 14:00:27.835 410094 703 410488 15510 3 3199 2025-02-20 13:14:20.174 2025-02-20 13:14:20.174 410094 703 410403 17494 2 3200 2025-02-20 12:18:21.743 2025-02-20 12:18:21.743 410094 703 410293 822 1 3201 2025-02-20 11:51:57.468 2025-02-20 11:51:57.468 410094 703 410254 663 2 3202 2025-02-20 16:45:03.931 2025-02-20 16:45:03.931 410108 10342 410737 12769 2 3203 2025-02-20 14:29:56.985 2025-02-20 14:29:56.985 410108 10342 410550 20681 1 3204 2025-02-20 13:10:14.983 2025-02-20 13:10:14.983 410108 10342 410385 2203 1 3205 2025-02-20 15:10:24.021 2025-02-20 15:10:24.021 410108 10342 410611 844 1 3206 2025-02-20 17:16:23.935 2025-02-20 17:16:23.935 410108 10342 410778 15243 1 3207 2025-03-12 08:58:04.653 2025-03-12 08:58:04.653 314277 7558 434815 1010 1 3208 2025-02-20 09:44:06.045 2025-02-20 09:44:06.045 410143 17209 410148 13055 1 3209 2025-02-20 14:11:13.44 2025-02-20 14:11:13.44 410480 2722 410514 4776 1 3210 2025-02-20 16:15:39.018 2025-02-20 16:15:39.018 410178 17291 410702 1737 1 3211 2025-02-20 14:43:45.535 2025-02-20 14:43:45.535 410223 16808 410570 20852 2 3212 2025-02-20 14:31:27.1 2025-02-20 14:31:27.1 410223 16808 410552 15690 1 3213 2025-02-20 14:39:41.623 2025-02-20 14:39:41.623 410223 16808 410561 21797 1 3214 2025-02-20 14:00:27.835 2025-02-20 14:00:27.835 410229 12561 410488 15510 2 3215 2025-02-20 11:51:57.468 2025-02-20 11:51:57.468 410229 12561 410254 663 1 3216 2025-02-20 14:15:19.872 2025-02-20 14:15:19.872 410230 5085 410523 9347 1 3217 2025-02-20 14:14:59.118 2025-02-20 14:14:59.118 410232 19829 410522 9184 1 3218 2025-02-20 15:16:45.56 2025-02-20 15:16:45.56 410235 18525 410626 9348 1 3219 2025-02-20 14:16:43.717 2025-02-20 14:16:43.717 410249 12356 410528 848 2 3220 2025-02-20 15:52:56.438 2025-02-20 15:52:56.438 410249 12356 410681 1890 2 3221 2025-02-20 14:05:02.024 2025-02-20 14:05:02.024 410249 12356 410497 11590 1 3222 2025-02-20 14:18:57.594 2025-02-20 14:18:57.594 410249 12356 410531 13622 1 3223 2025-02-20 15:23:01.122 2025-02-20 15:23:01.122 410249 12356 410631 1429 2 3224 2025-02-20 15:14:08.619 2025-02-20 15:14:08.619 410249 12356 410617 19292 1 3225 2025-02-20 15:41:44.888 2025-02-20 15:41:44.888 410249 12356 410671 1960 1 3226 2025-02-20 16:16:46.599 2025-02-20 16:16:46.599 410249 12356 410705 4538 3 3227 2025-02-20 15:24:18.555 2025-02-20 15:24:18.555 410249 12356 410633 14037 2 3228 2025-02-20 15:14:20.57 2025-02-20 15:14:20.57 410256 634 410618 15075 1 3229 2025-02-20 13:23:45.727 2025-02-20 13:23:45.727 410269 21042 410421 6471 2 3230 2025-02-20 14:44:49.843 2025-02-20 14:44:49.843 410269 21042 410574 6526 2 3231 2025-02-20 15:46:24.43 2025-02-20 15:46:24.43 410269 21042 410676 761 1 3232 2025-02-20 13:54:07.924 2025-02-20 13:54:07.924 410269 21042 410477 2593 1 3233 2025-02-20 13:49:54.087 2025-02-20 13:49:54.087 410269 21042 410471 15843 1 3234 2025-02-20 13:47:02.291 2025-02-20 13:47:02.291 410269 21042 410464 10490 3 3235 2025-02-20 15:31:19.1 2025-02-20 15:31:19.1 410269 21042 410654 1090 2 3236 2025-02-20 16:45:55.313 2025-02-20 16:45:55.313 410269 21042 410739 8242 1 3237 2025-02-20 15:38:43.827 2025-02-20 15:38:43.827 410269 21042 410668 828 3 3238 2025-02-20 16:32:18.968 2025-02-20 16:32:18.968 410269 21042 410717 18178 4 3239 2025-02-20 14:23:37.873 2025-02-20 14:23:37.873 410269 21042 410536 10112 2 3240 2025-02-20 14:23:14.756 2025-02-20 14:23:14.756 410269 21042 410535 12220 2 3241 2025-02-20 15:01:23.341 2025-02-20 15:01:23.341 410269 21042 410599 854 3 3242 2025-02-20 12:13:27.441 2025-02-20 12:13:27.441 410269 21042 410279 4314 1 3243 2025-02-20 14:44:14.31 2025-02-20 14:44:14.31 410269 21042 410572 21480 1 3244 2025-02-20 13:41:15.781 2025-02-20 13:41:15.781 410269 21042 410452 12769 2 3245 2025-02-20 13:36:08.249 2025-02-20 13:36:08.249 410269 21042 410445 5128 1 3246 2025-02-20 12:13:01.459 2025-02-20 12:13:01.459 410269 21042 410275 18393 1 3247 2025-02-20 12:14:00.736 2025-02-20 12:14:00.736 410269 21042 410280 11897 2 3248 2025-02-20 12:14:25.164 2025-02-20 12:14:25.164 410269 21042 410283 5809 1 3249 2025-02-20 14:50:21.459 2025-02-20 14:50:21.459 410269 21042 410585 17797 3 3250 2025-02-20 14:04:00.328 2025-02-20 14:04:00.328 410269 21042 410494 2775 1 3251 2025-02-20 14:54:48.747 2025-02-20 14:54:48.747 410269 21042 410592 19193 1 3252 2025-02-20 15:16:10.61 2025-02-20 15:16:10.61 410269 21042 410624 7809 1 3253 2025-02-20 16:03:49.073 2025-02-20 16:03:49.073 410269 21042 410690 2342 2 3254 2025-02-20 15:40:06.941 2025-02-20 15:40:06.941 410269 21042 410670 3411 4 3255 2025-02-20 15:28:59.806 2025-02-20 15:28:59.806 410269 21042 410647 5779 1 3256 2025-03-09 15:29:30.374 2025-03-09 15:29:30.374 413184 17042 431111 20751 1 3257 2025-03-09 15:12:46.765 2025-03-09 15:12:46.765 417338 21814 431062 802 1 3258 2025-02-20 12:23:55.527 2025-02-20 12:23:55.527 410284 5069 410301 10519 1 3259 2025-02-20 13:14:20.174 2025-02-20 13:14:20.174 410293 822 410403 17494 1 3260 2025-02-20 12:31:04.974 2025-02-20 12:31:04.974 410307 11897 410310 900 1 3261 2025-02-20 14:23:37.873 2025-02-20 14:23:37.873 410471 15843 410536 10112 1 3262 2025-02-20 13:24:08.732 2025-02-20 13:24:08.732 410311 5578 410422 11885 3 3263 2025-02-20 13:02:24.202 2025-02-20 13:02:24.202 410311 5578 410368 9107 2 3264 2025-02-20 13:32:27.446 2025-02-20 13:32:27.446 410311 5578 410435 7960 1 3265 2025-02-20 14:35:48.365 2025-02-20 14:35:48.365 410311 5578 410558 14990 2 3266 2025-02-20 15:21:53.583 2025-02-20 15:21:53.583 410311 5578 410630 708 4 3267 2025-02-20 13:37:46.345 2025-02-20 13:37:46.345 410311 5578 410449 17455 2 3268 2025-02-20 15:10:41.559 2025-02-20 15:10:41.559 410311 5578 410612 18402 3 3269 2025-02-20 14:07:56.728 2025-02-20 14:07:56.728 410311 5578 410508 21521 1 3270 2025-02-20 14:35:44.419 2025-02-20 14:35:44.419 410311 5578 410557 21136 1 3271 2025-02-20 17:26:25.994 2025-02-20 17:26:25.994 410311 5578 410790 21291 1 3272 2025-02-20 12:45:46.975 2025-02-20 12:45:46.975 410311 5578 410337 5112 1 3273 2025-02-20 12:55:43.531 2025-02-20 12:55:43.531 410311 5578 410355 20613 1 3274 2025-02-20 13:59:10.516 2025-02-20 13:59:10.516 410481 19199 410485 1983 1 3275 2025-02-20 14:14:57.727 2025-02-20 14:14:57.727 410481 19199 410521 1039 2 3276 2025-02-20 14:40:27.273 2025-02-20 14:40:27.273 410358 21494 410562 811 2 3277 2025-02-20 14:28:49.281 2025-02-20 14:28:49.281 410358 21494 410549 21044 1 3278 2025-02-20 16:53:15.815 2025-02-20 16:53:15.815 410358 21494 410751 5829 1 3279 2025-02-20 15:49:52.168 2025-02-20 15:49:52.168 410358 21494 410678 1162 2 3280 2025-02-20 15:50:38.519 2025-02-20 15:50:38.519 410358 21494 410679 20073 3 3281 2025-02-20 13:33:54.642 2025-02-20 13:33:54.642 410358 21494 410439 6430 4 3282 2025-02-20 13:09:23.233 2025-02-20 13:09:23.233 410358 21494 410384 674 1 3283 2025-02-20 14:27:17.921 2025-02-20 14:27:17.921 410358 21494 410544 6471 6 3284 2025-02-20 13:30:12.59 2025-02-20 13:30:12.59 410358 21494 410429 9348 3 3285 2025-02-20 13:11:39.647 2025-02-20 13:11:39.647 410358 21494 410392 12102 2 3286 2025-02-20 15:24:41.587 2025-02-20 15:24:41.587 410358 21494 410634 4166 1 3287 2025-02-20 13:43:23.67 2025-02-20 13:43:23.67 410358 21494 410456 3544 5 3288 2025-02-20 14:11:37.85 2025-02-20 14:11:37.85 410358 21494 410516 3478 1 3289 2025-02-20 15:32:28.329 2025-02-20 15:32:28.329 410358 21494 410655 706 1 3290 2025-02-20 13:50:21.243 2025-02-20 13:50:21.243 410379 10056 410472 699 1 3291 2025-02-20 14:27:17.921 2025-02-20 14:27:17.921 410456 3544 410544 6471 1 3292 2025-02-20 14:18:26.979 2025-02-20 14:18:26.979 410475 882 410530 21296 1 3293 2025-02-20 16:45:03.931 2025-02-20 16:45:03.931 410385 2203 410737 12769 1 3294 2025-02-20 13:54:55.86 2025-02-20 13:54:55.86 410386 20623 410479 21768 1 3295 2025-02-20 14:04:46.335 2025-02-20 14:04:46.335 410391 1650 410495 760 1 3296 2025-02-20 13:14:21.143 2025-02-20 13:14:21.143 410393 663 410404 15690 1 3297 2025-02-20 14:14:49.107 2025-02-20 14:14:49.107 410397 8459 410520 617 1 3298 2025-02-20 16:23:41.353 2025-02-20 16:23:41.353 410399 17713 410708 1833 1 3299 2025-02-20 16:32:18.968 2025-02-20 16:32:18.968 410464 10490 410717 18178 1 3300 2025-02-20 16:49:56.749 2025-02-20 16:49:56.749 410706 15732 410747 5171 2 3301 2025-02-20 16:40:34.341 2025-02-20 16:40:34.341 410706 15732 410731 9537 1 3302 2025-02-23 17:54:32.233 2025-02-23 17:54:32.233 413395 631 414194 20225 1 3303 2025-02-20 13:51:19.911 2025-02-20 13:51:19.911 410409 1038 410474 20187 3 3304 2025-02-20 14:42:46.324 2025-02-20 14:42:46.324 410409 1038 410566 6058 2 3305 2025-02-20 15:35:28.699 2025-02-20 15:35:28.699 410409 1038 410662 15243 2 3306 2025-02-20 15:31:11.55 2025-02-20 15:31:11.55 410409 1038 410653 1761 1 3307 2025-02-21 00:14:44.151 2025-02-21 00:14:44.151 410409 1038 411086 17082 1 3308 2025-02-20 13:27:50.065 2025-02-20 13:27:50.065 410409 1038 410428 17321 1 3309 2025-02-20 13:59:10.516 2025-02-20 13:59:10.516 410409 1038 410485 1983 5 3310 2025-02-20 14:14:57.727 2025-02-20 14:14:57.727 410409 1038 410521 1039 6 3311 2025-02-20 14:02:52.593 2025-02-20 14:02:52.593 410409 1038 410490 2123 1 3312 2025-02-20 14:15:56.421 2025-02-20 14:15:56.421 410409 1038 410525 12744 2 3313 2025-02-20 14:15:46.203 2025-02-20 14:15:46.203 410409 1038 410524 20616 2 3314 2025-02-20 14:24:07.284 2025-02-20 14:24:07.284 410409 1038 410539 9171 1 3315 2025-02-20 13:32:06.842 2025-02-20 13:32:06.842 410409 1038 410434 16229 2 3316 2025-02-21 16:49:27.637 2025-02-21 16:49:27.637 410409 1038 411732 16193 2 3317 2025-02-20 14:06:32.831 2025-02-20 14:06:32.831 410409 1038 410506 19735 1 3318 2025-02-20 13:57:19.061 2025-02-20 13:57:19.061 410409 1038 410481 19199 4 3319 2025-02-20 14:12:56.287 2025-02-20 14:12:56.287 410420 17209 410518 7675 2 3320 2025-02-20 14:06:22.933 2025-02-20 14:06:22.933 410420 17209 410504 795 1 3321 2025-02-20 14:03:44.804 2025-02-20 14:03:44.804 410420 17209 410493 2342 1 3322 2025-02-20 14:50:21.459 2025-02-20 14:50:21.459 410421 6471 410585 17797 1 3323 2025-02-20 15:21:53.583 2025-02-20 15:21:53.583 410422 11885 410630 708 1 3324 2025-02-20 14:16:14.723 2025-02-20 14:16:14.723 410441 21379 410526 6382 1 3325 2025-02-24 00:21:35.596 2025-02-24 00:21:35.596 414385 15588 414474 886 1 3326 2025-02-24 14:59:11.741 2025-02-24 14:59:11.741 414385 15588 415149 17714 2 3327 2025-02-24 14:59:57.075 2025-02-24 14:59:57.075 414385 15588 415150 15239 2 3328 2025-02-23 22:57:27.115 2025-02-23 22:57:27.115 414385 15588 414444 2460 1 3329 2025-02-23 22:37:57.761 2025-02-23 22:37:57.761 414385 15588 414436 795 1 3330 2025-02-20 14:10:29.194 2025-02-20 14:10:29.194 410486 5036 410513 21180 2 3331 2025-02-20 14:43:24.171 2025-02-20 14:43:24.171 410486 5036 410569 20450 1 3332 2025-02-20 14:01:28.381 2025-02-20 14:01:28.381 410486 5036 410489 2016 1 3333 2025-02-20 15:28:41.412 2025-02-20 15:28:41.412 410486 5036 410646 14037 4 3334 2025-02-20 15:26:13.049 2025-02-20 15:26:13.049 410486 5036 410638 19863 2 3335 2025-02-20 15:28:17.42 2025-02-20 15:28:17.42 410486 5036 410645 2233 3 3336 2025-02-20 14:40:27.273 2025-02-20 14:40:27.273 410516 3478 410562 811 1 3337 2025-02-20 14:24:58.994 2025-02-20 14:24:58.994 410534 4035 410541 20294 1 3338 2025-02-20 14:53:59.012 2025-02-20 14:53:59.012 410534 4035 410590 2039 3 3339 2025-02-20 14:48:25.788 2025-02-20 14:48:25.788 410534 4035 410584 21824 2 3340 2025-02-20 14:25:10.539 2025-02-20 14:25:10.539 410534 4035 410543 2596 1 3341 2025-02-20 14:48:07.981 2025-02-20 14:48:07.981 410534 4035 410582 7978 2 3342 2025-02-20 15:12:10.966 2025-02-20 15:12:10.966 410534 4035 410614 4167 3 3343 2025-02-24 12:33:19.544 2025-02-24 12:33:19.544 413480 20775 414956 20409 2 3344 2025-02-23 14:32:58.012 2025-02-23 14:32:58.012 413480 20775 413933 21248 1 3345 2025-02-23 12:37:37.302 2025-02-23 12:37:37.302 413480 20775 413699 10013 1 3346 2025-02-20 16:30:28.93 2025-02-20 16:30:28.93 410691 12422 410715 21672 3 3347 2025-02-20 16:33:37.97 2025-02-20 16:33:37.97 410691 12422 410719 2674 1 3348 2025-02-20 16:59:23.64 2025-02-20 16:59:23.64 410691 12422 410757 19689 1 3349 2025-02-20 16:29:29.422 2025-02-20 16:29:29.422 410691 12422 410713 14515 2 3350 2025-02-20 16:07:29.243 2025-02-20 16:07:29.243 410691 12422 410695 1039 1 3351 2025-02-20 17:14:16.105 2025-02-20 17:14:16.105 410697 5775 410776 17722 1 3352 2025-02-20 16:36:29.227 2025-02-20 16:36:29.227 410700 15200 410725 16633 1 3353 2025-02-20 14:28:34.634 2025-02-20 14:28:34.634 410545 1236 410548 17011 1 3354 2025-02-20 15:01:23.341 2025-02-20 15:01:23.341 410572 21480 410599 854 2 3355 2025-02-20 14:44:49.843 2025-02-20 14:44:49.843 410572 21480 410574 6526 1 3356 2025-02-20 14:53:59.012 2025-02-20 14:53:59.012 410584 21824 410590 2039 1 3357 2025-02-24 18:26:50.625 2025-02-24 18:26:50.625 413854 2724 415356 1130 3 3358 2025-02-23 14:02:59.682 2025-02-23 14:02:59.682 413854 2724 413869 20897 1 3359 2025-02-23 18:30:34.973 2025-02-23 18:30:34.973 413854 2724 414219 17411 3 3360 2025-03-04 05:22:39.359 2025-03-04 05:22:39.359 413854 2724 424435 2176 3 3361 2025-02-23 19:36:35.683 2025-02-23 19:36:35.683 413854 2724 414295 14731 2 3362 2025-02-23 14:04:41.428 2025-02-23 14:04:41.428 413854 2724 413874 15536 1 3363 2025-02-23 14:06:05.704 2025-02-23 14:06:05.704 413854 2724 413876 998 2 3364 2025-02-23 14:47:07.993 2025-02-23 14:47:07.993 413854 2724 413959 19821 2 3365 2025-02-23 14:03:43.877 2025-02-23 14:03:43.877 413854 2724 413872 20754 1 3366 2025-02-23 15:38:38.942 2025-02-23 15:38:38.942 413854 2724 414044 16177 3 3367 2025-02-23 14:10:00.237 2025-02-23 14:10:00.237 413854 2724 413882 21798 3 3368 2025-02-23 20:11:20.953 2025-02-23 20:11:20.953 413854 2724 414341 13177 2 3369 2025-02-23 14:06:26.991 2025-02-23 14:06:26.991 413854 2724 413877 8998 2 3370 2025-02-23 17:25:53.355 2025-02-23 17:25:53.355 413854 2724 414157 16270 2 3371 2025-02-23 15:56:30.811 2025-02-23 15:56:30.811 413854 2724 414058 959 1 3372 2025-02-20 15:14:35.804 2025-02-20 15:14:35.804 410589 21825 410621 20495 1 3373 2025-02-20 15:14:21.579 2025-02-20 15:14:21.579 410589 21825 410619 9874 1 3374 2025-02-20 15:34:18.067 2025-02-20 15:34:18.067 410589 21825 410659 1483 1 3375 2025-02-20 15:28:06.102 2025-02-20 15:28:06.102 410595 18270 410643 20816 2 3376 2025-02-20 15:06:08.518 2025-02-20 15:06:08.518 410595 18270 410604 1092 1 3377 2025-02-20 15:28:41.412 2025-02-20 15:28:41.412 410638 19863 410646 14037 2 3378 2025-02-20 15:28:17.42 2025-02-20 15:28:17.42 410638 19863 410645 2233 1 3379 2025-02-22 07:46:21.494 2025-02-22 07:46:21.494 412098 2528 412258 20802 1 3380 2025-02-20 15:35:53.062 2025-02-20 15:35:53.062 410650 16301 410663 2196 1 3381 2025-02-20 15:40:06.941 2025-02-20 15:40:06.941 410668 828 410670 3411 1 3382 2025-02-23 04:22:44.806 2025-02-23 04:22:44.806 410672 20939 413324 9496 1 3383 2025-02-20 15:50:38.519 2025-02-20 15:50:38.519 410678 1162 410679 20073 1 3384 2025-02-20 16:30:28.93 2025-02-20 16:30:28.93 410713 14515 410715 21672 1 3385 2025-02-20 17:29:16.372 2025-02-20 17:29:16.372 410721 14939 410793 13763 1 3386 2025-02-20 17:05:42.734 2025-02-20 17:05:42.734 410756 16447 410767 17690 2 3387 2025-02-20 17:02:38.888 2025-02-20 17:02:38.888 410756 16447 410763 19199 1 3388 2025-02-20 17:12:25.4 2025-02-20 17:12:25.4 410756 16447 410774 20734 3 3389 2025-02-23 15:38:38.942 2025-02-23 15:38:38.942 413877 8998 414044 16177 1 3390 2025-02-23 14:28:09.073 2025-02-23 14:28:09.073 413902 17494 413919 21042 1 3391 2025-02-24 09:55:12.219 2025-02-24 09:55:12.219 414784 10283 414786 9985 1 3392 2025-02-23 11:59:27.859 2025-02-23 11:59:27.859 413618 880 413623 8472 1 3393 2025-02-22 11:28:35.102 2025-02-22 11:28:35.102 412381 2652 412408 21401 1 3394 2025-02-24 18:57:39.324 2025-02-24 18:57:39.324 415385 762 415388 11498 1 3395 2025-02-23 13:45:40.228 2025-02-23 13:45:40.228 412395 2431 413838 13622 1 3396 2025-02-27 07:00:57.197 2025-02-27 07:00:57.197 412443 11999 418512 20864 1 3397 2025-03-13 11:29:24.24 2025-03-13 11:29:24.24 412443 11999 436192 929 2 3398 2025-03-05 23:54:57.67 2025-03-05 23:54:57.67 412443 11999 426959 15408 1 3399 2025-02-23 12:06:14.757 2025-02-23 12:06:14.757 412631 20182 413632 2088 1 3400 2025-02-23 14:53:34.258 2025-02-23 14:53:34.258 412631 20182 413971 21791 1 3401 2025-03-09 15:29:39.259 2025-03-09 15:29:39.259 412978 2056 431114 1141 1 3402 2025-02-25 23:11:44.618 2025-02-25 23:11:44.618 415647 7913 416923 21214 1 3403 2025-02-25 23:11:29.453 2025-02-25 23:11:29.453 415647 7913 416922 20852 2 3404 2025-02-25 20:49:29.792 2025-02-25 20:49:29.792 415647 7913 416778 17082 1 3405 2025-02-24 14:02:28.986 2025-02-24 14:02:28.986 413002 2776 415069 11714 1 3406 2025-02-23 10:26:31.936 2025-02-23 10:26:31.936 413007 20701 413552 5809 3 3407 2025-02-23 09:52:11.298 2025-02-23 09:52:11.298 413007 20701 413529 12561 2 3408 2025-02-23 04:19:51.249 2025-02-23 04:19:51.249 413007 20701 413322 18528 2 3409 2025-02-23 08:35:07.431 2025-02-23 08:35:07.431 413007 20701 413475 11165 4 3410 2025-03-09 14:41:51.176 2025-03-09 14:41:51.176 413007 20701 430971 8242 3 3411 2025-02-23 12:28:31.916 2025-02-23 12:28:31.916 413007 20701 413667 2111 3 3412 2025-02-23 10:25:13.868 2025-02-23 10:25:13.868 413007 20701 413550 4259 2 3413 2025-02-23 08:34:08.791 2025-02-23 08:34:08.791 413007 20701 413473 4958 3 3414 2025-02-23 09:50:14.113 2025-02-23 09:50:14.113 413007 20701 413527 1433 1 3415 2025-02-22 20:52:52.933 2025-02-22 20:52:52.933 413007 20701 413076 7675 1 3416 2025-03-08 22:32:04.783 2025-03-08 22:32:04.783 413007 20701 430173 20745 1 3417 2025-03-09 11:06:40.612 2025-03-09 11:06:40.612 413007 20701 430605 9421 2 3418 2025-02-24 11:16:15.631 2025-02-24 11:16:15.631 413007 20701 414880 913 1 3419 2025-02-23 14:28:47.633 2025-02-23 14:28:47.633 413085 9551 413921 902 2 3420 2025-02-23 13:58:32.948 2025-02-23 13:58:32.948 413085 9551 413858 2326 1 3421 2025-02-22 22:44:20.098 2025-02-22 22:44:20.098 413145 718 413152 19417 1 3422 2025-02-23 14:33:27.94 2025-02-23 14:33:27.94 413908 9356 413934 18608 1 3423 2025-02-23 15:13:14.836 2025-02-23 15:13:14.836 413352 9331 414005 18269 1 3424 2025-02-23 14:47:07.993 2025-02-23 14:47:07.993 413874 15536 413959 19821 1 3425 2025-02-24 16:48:59.552 2025-02-24 16:48:59.552 413357 20979 415281 20019 1 3426 2025-02-23 07:52:46.682 2025-02-23 07:52:46.682 413357 20979 413436 16059 1 3427 2025-02-24 10:41:45.907 2025-02-24 10:41:45.907 413361 15732 414840 21247 1 3428 2025-02-23 10:26:31.936 2025-02-23 10:26:31.936 413527 1433 413552 5809 2 3429 2025-02-23 09:52:11.298 2025-02-23 09:52:11.298 413527 1433 413529 12561 1 3430 2025-02-23 12:28:31.916 2025-02-23 12:28:31.916 413527 1433 413667 2111 2 3431 2025-02-23 10:25:13.868 2025-02-23 10:25:13.868 413527 1433 413550 4259 1 3432 2025-02-23 10:26:31.936 2025-02-23 10:26:31.936 413529 12561 413552 5809 1 3433 2025-02-23 14:15:58.234 2025-02-23 14:15:58.234 413650 756 413890 929 1 3434 2025-02-24 12:33:19.544 2025-02-24 12:33:19.544 413699 10013 414956 20409 1 3435 2025-02-23 12:52:15.525 2025-02-23 12:52:15.525 413720 13599 413738 21427 1 3436 2025-02-23 13:44:52.737 2025-02-23 13:44:52.737 413815 20205 413833 5129 1 3437 2025-02-23 14:36:10.055 2025-02-23 14:36:10.055 413935 3979 413938 1429 1 3438 2025-02-23 15:04:42.891 2025-02-23 15:04:42.891 413943 18426 413991 994 3 3439 2025-02-23 14:58:38.987 2025-02-23 14:58:38.987 413943 18426 413980 20225 2 3440 2025-02-23 14:46:15.599 2025-02-23 14:46:15.599 413943 18426 413957 7185 1 3441 2025-02-23 14:42:29.438 2025-02-23 14:42:29.438 413943 18426 413949 2151 1 3442 2025-02-23 14:43:36.522 2025-02-23 14:43:36.522 413948 13198 413951 2734 1 3443 2025-02-24 13:20:15.484 2025-02-24 13:20:15.484 415011 9350 415014 20691 1 3444 2025-02-24 19:48:16.361 2025-02-24 19:48:16.361 415418 14552 415451 20623 1 3445 2025-03-09 15:12:41.685 2025-03-09 15:12:41.685 417399 12245 431060 9290 1 3446 2025-02-23 15:04:42.891 2025-02-23 15:04:42.891 413980 20225 413991 994 1 3447 2025-02-23 16:57:39.454 2025-02-23 16:57:39.454 414127 9353 414138 19292 1 3448 2025-02-23 20:14:51.403 2025-02-23 20:14:51.403 414319 6136 414344 1647 1 3449 2025-02-25 00:59:30.584 2025-02-25 00:59:30.584 415670 16543 415685 13132 1 3450 2025-02-23 18:30:34.973 2025-02-23 18:30:34.973 414157 16270 414219 17411 1 3451 2025-02-25 23:13:02.408 2025-02-25 23:13:02.408 415781 21521 416926 10433 1 3452 2025-03-01 13:09:39.998 2025-03-01 13:09:39.998 420137 2326 421162 11789 1 3453 2025-02-23 19:15:55.541 2025-02-23 19:15:55.541 414226 21540 414264 13878 1 3454 2025-02-23 18:56:59.195 2025-02-23 18:56:59.195 414233 638 414241 17183 1 3455 2025-02-24 18:58:50.658 2025-02-24 18:58:50.658 415384 2963 415389 1094 1 3456 2025-02-24 10:01:43.029 2025-02-24 10:01:43.029 414258 1092 414796 928 1 3457 2025-03-09 15:27:48.968 2025-03-09 15:27:48.968 414271 21247 431100 7675 1 3458 2025-02-24 15:04:30.688 2025-02-24 15:04:30.688 414271 21247 415158 17147 1 3459 2025-03-02 10:26:27.084 2025-03-02 10:26:27.084 414274 762 422227 1626 1 3460 2025-02-24 14:13:33.957 2025-02-24 14:13:33.957 414396 8004 415093 6741 1 3461 2025-02-25 23:13:05.946 2025-02-25 23:13:05.946 415766 21506 416927 1564 1 3462 2025-03-09 15:27:36.063 2025-03-09 15:27:36.063 415776 21042 431095 7510 1 3463 2025-02-24 14:59:57.075 2025-02-24 14:59:57.075 414436 795 415150 15239 1 3464 2025-02-24 14:59:11.741 2025-02-24 14:59:11.741 414474 886 415149 17714 1 3465 2025-02-24 07:08:18.113 2025-02-24 07:08:18.113 414625 9874 414663 20495 1 3466 2025-02-24 05:37:58.148 2025-02-24 05:37:58.148 414625 9874 414626 750 1 3467 2025-02-24 06:28:04.786 2025-02-24 06:28:04.786 414625 9874 414644 17411 2 3468 2025-02-24 09:22:07.925 2025-02-24 09:22:07.925 414625 9874 414752 21033 3 3469 2025-02-24 06:24:35.775 2025-02-24 06:24:35.775 414625 9874 414643 9261 1 3470 2025-02-24 09:30:54.1 2025-02-24 09:30:54.1 414625 9874 414760 4984 2 3471 2025-02-24 09:30:54.1 2025-02-24 09:30:54.1 414643 9261 414760 4984 1 3472 2025-02-24 09:22:07.925 2025-02-24 09:22:07.925 414644 17411 414752 21033 1 3473 2025-03-09 15:27:46.615 2025-03-09 15:27:46.615 414654 20294 431099 13903 1 3474 2025-02-24 09:01:59.271 2025-02-24 09:01:59.271 414676 9109 414728 4862 1 3475 2025-02-24 19:24:15.21 2025-02-24 19:24:15.21 415410 700 415413 11328 1 3476 2025-03-03 03:30:26.558 2025-03-03 03:30:26.558 417552 4819 423153 13174 1 3477 2025-02-24 15:14:49.582 2025-02-24 15:14:49.582 414678 1618 415172 5195 2 3478 2025-02-24 12:12:56.089 2025-02-24 12:12:56.089 414678 1618 414936 669 1 3479 2025-02-24 15:45:48.365 2025-02-24 15:45:48.365 414678 1618 415222 6616 3 3480 2025-02-24 15:16:41.221 2025-02-24 15:16:41.221 414678 1618 415175 21713 1 3481 2025-02-25 04:32:26.383 2025-02-25 04:32:26.383 414699 21482 415775 20597 1 3482 2025-02-24 18:52:28.498 2025-02-24 18:52:28.498 414711 641 415376 3409 2 3483 2025-02-24 17:07:05.451 2025-02-24 17:07:05.451 414711 641 415297 21012 1 3484 2025-02-24 09:03:27.459 2025-02-24 09:03:27.459 414711 641 414729 20310 2 3485 2025-02-24 09:21:30.914 2025-02-24 09:21:30.914 414711 641 414751 3213 3 3486 2025-02-24 12:15:39.908 2025-02-24 12:15:39.908 414711 641 414939 15577 5 3487 2025-02-24 17:31:38.005 2025-02-24 17:31:38.005 414711 641 415315 2338 2 3488 2025-02-24 17:15:42.008 2025-02-24 17:15:42.008 414711 641 415299 10291 1 3489 2025-02-24 19:22:13.839 2025-02-24 19:22:13.839 414711 641 415408 14688 1 3490 2025-02-24 13:33:31.931 2025-02-24 13:33:31.931 414711 641 415027 21296 1 3491 2025-02-24 09:31:52.404 2025-02-24 09:31:52.404 414711 641 414762 16424 4 3492 2025-02-24 08:54:53.827 2025-02-24 08:54:53.827 414711 641 414722 15060 1 3493 2025-02-24 09:20:43.255 2025-02-24 09:20:43.255 414726 20062 414750 11967 1 3494 2025-02-24 12:15:39.908 2025-02-24 12:15:39.908 414762 16424 414939 15577 1 3495 2025-02-24 17:44:26.48 2025-02-24 17:44:26.48 414861 1320 415322 21521 1 3496 2025-02-24 15:19:51.391 2025-02-24 15:19:51.391 414872 6361 415179 17148 1 3497 2025-02-24 11:53:03.345 2025-02-24 11:53:03.345 414908 21166 414917 1717 1 3498 2025-02-26 05:19:19.878 2025-02-26 05:19:19.878 417096 1237 417098 21391 1 3499 2025-02-24 13:22:34.621 2025-02-24 13:22:34.621 415015 11527 415017 2709 1 3500 2025-02-24 18:12:14.96 2025-02-24 18:12:14.96 415047 16680 415347 9365 1 3501 2025-02-24 15:08:58.01 2025-02-24 15:08:58.01 415162 16154 415166 21672 1 3502 2025-02-24 15:45:48.365 2025-02-24 15:45:48.365 415172 5195 415222 6616 1 3503 2025-02-25 14:36:18.266 2025-02-25 14:36:18.266 415913 21418 416309 9084 1 3504 2025-02-25 22:35:52.904 2025-02-25 22:35:52.904 415913 21418 416873 17148 1 3505 2025-02-28 14:38:16.019 2025-02-28 14:38:16.019 420181 6149 420189 20563 1 3506 2025-02-25 23:12:57.508 2025-02-25 23:12:57.508 416073 1489 416925 974 1 3507 2025-02-26 03:15:16.782 2025-02-26 03:15:16.782 416109 1609 417048 654 1 3508 2025-02-24 17:56:24.397 2025-02-24 17:56:24.397 415262 18232 415334 21339 1 3509 2025-02-24 17:43:23.329 2025-02-24 17:43:23.329 415276 14503 415319 17148 1 3510 2025-02-24 17:31:38.005 2025-02-24 17:31:38.005 415297 21012 415315 2338 1 3511 2025-02-25 15:33:19.205 2025-02-25 15:33:19.205 416148 1064 416414 18529 1 3512 2025-02-25 22:59:09.807 2025-02-25 22:59:09.807 416148 1064 416901 20864 1 3513 2025-02-24 18:30:48.338 2025-02-24 18:30:48.338 415302 769 415358 688 1 3514 2025-02-24 19:52:34.568 2025-02-24 19:52:34.568 415433 7097 415459 18430 1 3515 2025-02-25 13:37:01.311 2025-02-25 13:37:01.311 415567 721 416217 21603 1 3516 2025-02-25 23:11:44.618 2025-02-25 23:11:44.618 415637 9611 416923 21214 2 3517 2025-02-25 23:11:16.707 2025-02-25 23:11:16.707 415637 9611 416921 661 2 3518 2025-02-25 23:11:29.453 2025-02-25 23:11:29.453 415637 9611 416922 20852 3 3519 2025-02-25 23:13:02.408 2025-02-25 23:13:02.408 415637 9611 416926 10433 2 3520 2025-02-25 23:12:57.508 2025-02-25 23:12:57.508 415637 9611 416925 974 2 3521 2025-02-25 00:08:03.427 2025-02-25 00:08:03.427 415637 9611 415647 7913 1 3522 2025-02-25 04:11:35.4 2025-02-25 04:11:35.4 415637 9611 415766 21506 1 3523 2025-02-25 11:19:27.929 2025-02-25 11:19:27.929 415637 9611 416073 1489 1 3524 2025-02-25 20:49:29.792 2025-02-25 20:49:29.792 415637 9611 416778 17082 2 3525 2025-02-25 23:13:32.968 2025-02-25 23:13:32.968 415637 9611 416928 18557 2 3526 2025-02-25 23:13:05.946 2025-02-25 23:13:05.946 415637 9611 416927 1564 2 3527 2025-02-25 07:35:27.825 2025-02-25 07:35:27.825 415637 9611 415850 631 1 3528 2025-02-25 04:50:43.353 2025-02-25 04:50:43.353 415637 9611 415781 21521 1 3529 2025-02-25 10:51:10.743 2025-02-25 10:51:10.743 415637 9611 416043 19459 1 3530 2025-02-25 21:10:51.113 2025-02-25 21:10:51.113 415928 9438 416799 21003 1 3531 2025-02-25 11:01:29.891 2025-02-25 11:01:29.891 415992 18930 416057 17331 1 3532 2025-02-25 23:13:32.968 2025-02-25 23:13:32.968 416043 19459 416928 18557 1 3533 2025-02-26 00:35:55.867 2025-02-26 00:35:55.867 416070 21159 416978 17147 1 3534 2025-02-25 14:27:55.435 2025-02-25 14:27:55.435 416127 20852 416297 9421 1 3535 2025-02-25 19:13:59.662 2025-02-25 19:13:59.662 416127 20852 416688 19199 1 3536 2025-02-26 02:27:30.674 2025-02-26 02:27:30.674 416127 20852 417028 15075 1 3537 2025-02-25 14:42:17.315 2025-02-25 14:42:17.315 416142 1130 416324 20275 1 3538 2025-02-26 03:32:27.899 2025-02-26 03:32:27.899 417052 6537 417054 10979 1 3539 2025-02-25 13:24:22.159 2025-02-25 13:24:22.159 416158 4238 416197 14258 1 3540 2025-02-25 18:19:43.329 2025-02-25 18:19:43.329 416158 4238 416632 18174 7 3541 2025-02-25 17:19:22.447 2025-02-25 17:19:22.447 416158 4238 416551 10398 4 3542 2025-02-25 19:11:35.482 2025-02-25 19:11:35.482 416158 4238 416682 2963 2 3543 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416158 4238 416938 11263 13 3544 2025-02-25 15:56:46.433 2025-02-25 15:56:46.433 416158 4238 416457 21212 1 3545 2025-02-25 23:30:50.251 2025-02-25 23:30:50.251 416158 4238 416934 17533 11 3546 2025-02-25 13:46:54.177 2025-02-25 13:46:54.177 416158 4238 416232 21064 4 3547 2025-02-25 13:43:38.61 2025-02-25 13:43:38.61 416158 4238 416229 831 3 3548 2025-02-25 14:11:55.976 2025-02-25 14:11:55.976 416158 4238 416267 9982 1 3549 2025-02-25 18:01:47.076 2025-02-25 18:01:47.076 416158 4238 416605 8173 6 3550 2025-02-25 22:50:36.817 2025-02-25 22:50:36.817 416158 4238 416889 19189 2 3551 2025-02-25 22:48:44.15 2025-02-25 22:48:44.15 416158 4238 416888 2151 2 3552 2025-02-25 22:43:09.863 2025-02-25 22:43:09.863 416158 4238 416883 787 2 3553 2025-02-25 22:56:06.255 2025-02-25 22:56:06.255 416158 4238 416896 1493 2 3554 2025-02-25 23:02:39.964 2025-02-25 23:02:39.964 416158 4238 416906 12220 2 3555 2025-02-25 22:46:50.892 2025-02-25 22:46:50.892 416158 4238 416887 16724 3 3556 2025-02-25 23:02:20.795 2025-02-25 23:02:20.795 416158 4238 416905 2039 2 3557 2025-02-25 18:20:53.303 2025-02-25 18:20:53.303 416158 4238 416633 718 1 3558 2025-02-25 19:35:00.994 2025-02-25 19:35:00.994 416158 4238 416710 17838 1 3559 2025-02-25 20:20:39.999 2025-02-25 20:20:39.999 416158 4238 416754 21060 1 3560 2025-02-25 22:06:08.076 2025-02-25 22:06:08.076 416158 4238 416843 15091 1 3561 2025-02-25 23:00:22.965 2025-02-25 23:00:22.965 416158 4238 416903 11498 2 3562 2025-02-25 21:35:08.294 2025-02-25 21:35:08.294 416158 4238 416823 1650 1 3563 2025-02-25 20:09:31.597 2025-02-25 20:09:31.597 416158 4238 416745 20840 1 3564 2025-02-25 20:56:09.832 2025-02-25 20:56:09.832 416158 4238 416784 20433 1 3565 2025-02-25 22:41:01.112 2025-02-25 22:41:01.112 416158 4238 416879 5500 2 3566 2025-02-26 00:07:32.589 2025-02-26 00:07:32.589 416158 4238 416959 5036 1 3567 2025-02-25 21:59:40.226 2025-02-25 21:59:40.226 416158 4238 416839 9366 1 3568 2025-02-25 20:02:09.203 2025-02-25 20:02:09.203 416158 4238 416737 9537 1 3569 2025-02-25 20:18:49.07 2025-02-25 20:18:49.07 416158 4238 416751 20973 1 3570 2025-02-25 22:56:30.732 2025-02-25 22:56:30.732 416158 4238 416898 713 2 3571 2025-02-25 22:43:19.891 2025-02-25 22:43:19.891 416158 4238 416884 917 2 3572 2025-02-25 18:04:33.726 2025-02-25 18:04:33.726 416158 4238 416615 913 1 3573 2025-02-25 20:44:22.627 2025-02-25 20:44:22.627 416158 4238 416775 6602 1 3574 2025-02-25 23:18:31.616 2025-02-25 23:18:31.616 416158 4238 416930 12774 2 3575 2025-02-25 22:18:21.782 2025-02-25 22:18:21.782 416158 4238 416857 2338 3 3576 2025-02-25 23:08:59.034 2025-02-25 23:08:59.034 416158 4238 416915 632 4 3577 2025-02-25 22:41:34.224 2025-02-25 22:41:34.224 416158 4238 416881 16830 9 3578 2025-02-25 23:15:32.556 2025-02-25 23:15:32.556 416158 4238 416929 19821 10 3579 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416158 4238 416939 7773 14 3580 2025-02-25 16:05:34.398 2025-02-25 16:05:34.398 416158 4238 416472 7587 1 3581 2025-02-25 17:59:59.673 2025-02-25 17:59:59.673 416158 4238 416601 12261 1 3582 2025-02-25 23:07:09.299 2025-02-25 23:07:09.299 416158 4238 416912 15119 3 3583 2025-02-26 03:29:42.119 2025-02-26 03:29:42.119 416158 4238 417053 5646 4 3584 2025-02-25 14:42:43.438 2025-02-25 14:42:43.438 416158 4238 416325 687 2 3585 2025-02-25 13:38:12.443 2025-02-25 13:38:12.443 416158 4238 416220 15624 2 3586 2025-02-25 22:14:47.361 2025-02-25 22:14:47.361 416158 4238 416850 695 2 3587 2025-02-25 22:30:12.229 2025-02-25 22:30:12.229 416158 4238 416869 2151 8 3588 2025-02-25 17:43:40.876 2025-02-25 17:43:40.876 416158 4238 416578 811 5 3589 2025-02-25 14:22:17.81 2025-02-25 14:22:17.81 416158 4238 416288 15941 3 3590 2025-02-25 14:06:28.337 2025-02-25 14:06:28.337 416158 4238 416253 795 2 3591 2025-02-25 13:39:59.129 2025-02-25 13:39:59.129 416158 4238 416221 2000 1 3592 2025-02-25 23:04:35.316 2025-02-25 23:04:35.316 416158 4238 416909 18351 2 3593 2025-02-25 22:56:23.302 2025-02-25 22:56:23.302 416158 4238 416897 7992 2 3594 2025-02-25 22:18:10.982 2025-02-25 22:18:10.982 416158 4238 416855 17042 2 3595 2025-02-25 22:59:52.123 2025-02-25 22:59:52.123 416158 4238 416902 20993 2 3596 2025-02-26 00:27:38.144 2025-02-26 00:27:38.144 416158 4238 416973 16059 2 3597 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416158 4238 416935 21416 12 3598 2025-02-25 13:33:30.26 2025-02-25 13:33:30.26 416158 4238 416209 21119 1 3599 2025-02-25 13:25:15.341 2025-02-25 13:25:15.341 416158 4238 416199 8289 1 3600 2025-02-25 13:46:54.177 2025-02-25 13:46:54.177 416209 21119 416232 21064 3 3601 2025-02-25 13:43:38.61 2025-02-25 13:43:38.61 416209 21119 416229 831 2 3602 2025-02-25 13:38:12.443 2025-02-25 13:38:12.443 416209 21119 416220 15624 1 3603 2025-02-25 13:46:54.177 2025-02-25 13:46:54.177 416229 831 416232 21064 1 3604 2025-02-26 00:44:33.23 2025-02-26 00:44:33.23 416971 696 416980 21421 1 3605 2025-02-26 00:48:50.213 2025-02-26 00:48:50.213 416982 16193 416986 7760 1 3606 2025-02-26 02:36:00.862 2025-02-26 02:36:00.862 417003 14213 417036 708 1 3607 2025-02-26 02:37:15.934 2025-02-26 02:37:15.934 416806 21379 417037 21369 1 3608 2025-02-26 00:03:08.412 2025-02-26 00:03:08.412 416806 21379 416957 13767 2 3609 2025-02-25 22:03:53.891 2025-02-25 22:03:53.891 416806 21379 416841 769 1 3610 2025-02-25 23:02:39.964 2025-02-25 23:02:39.964 416823 1650 416906 12220 1 3611 2025-02-26 02:10:29.492 2025-02-26 02:10:29.492 416827 4459 417018 4035 1 3612 2025-02-26 02:49:42.107 2025-02-26 02:49:42.107 416827 4459 417041 16929 1 3613 2025-02-26 03:37:36.743 2025-02-26 03:37:36.743 416837 21332 417056 6471 1 3614 2025-02-25 19:48:08.145 2025-02-25 19:48:08.145 416644 714 416726 620 1 3615 2025-02-25 22:48:44.15 2025-02-25 22:48:44.15 416710 17838 416888 2151 1 3616 2025-02-26 00:49:34.752 2025-02-26 00:49:34.752 416722 6136 416988 20913 1 3617 2025-02-26 01:16:18.045 2025-02-26 01:16:18.045 416722 6136 417001 8989 1 3618 2025-02-26 00:24:19.415 2025-02-26 00:24:19.415 416722 6136 416971 696 1 3619 2025-02-26 00:44:33.23 2025-02-26 00:44:33.23 416722 6136 416980 21421 2 3620 2025-02-26 01:01:28.889 2025-02-26 01:01:28.889 416730 7395 416997 618 1 3621 2025-02-25 23:00:22.965 2025-02-25 23:00:22.965 416745 20840 416903 11498 1 3622 2025-02-25 22:43:09.863 2025-02-25 22:43:09.863 416754 21060 416883 787 1 3623 2025-03-01 14:53:10.444 2025-03-01 14:53:10.444 416765 6430 421277 4035 1 3624 2025-02-25 22:56:06.255 2025-02-25 22:56:06.255 416775 6602 416896 1493 1 3625 2025-02-25 23:11:29.453 2025-02-25 23:11:29.453 416778 17082 416922 20852 1 3626 2025-02-25 22:43:19.891 2025-02-25 22:43:19.891 416784 20433 416884 917 1 3627 2025-02-25 21:01:49.858 2025-02-25 21:01:49.858 416786 11145 416793 1120 1 3628 2025-02-26 02:32:34.017 2025-02-26 02:32:34.017 416798 17455 417034 21271 1 3629 2025-03-09 15:27:30.279 2025-03-09 15:27:30.279 416798 17455 431093 17331 1 3630 2025-02-26 00:03:08.412 2025-02-26 00:03:08.412 416841 769 416957 13767 1 3631 2025-02-25 23:02:20.795 2025-02-25 23:02:20.795 416843 15091 416905 2039 1 3632 2025-02-25 22:18:21.782 2025-02-25 22:18:21.782 416850 695 416857 2338 1 3633 2025-02-25 23:08:59.034 2025-02-25 23:08:59.034 416850 695 416915 632 2 3634 2025-02-25 22:21:38.824 2025-02-25 22:21:38.824 416858 1000 416860 14607 1 3635 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416869 2151 416938 11263 5 3636 2025-02-25 23:30:50.251 2025-02-25 23:30:50.251 416869 2151 416934 17533 3 3637 2025-02-25 22:41:34.224 2025-02-25 22:41:34.224 416869 2151 416881 16830 1 3638 2025-02-25 23:15:32.556 2025-02-25 23:15:32.556 416869 2151 416929 19821 2 3639 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416869 2151 416939 7773 6 3640 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416869 2151 416935 21416 4 3641 2025-02-25 22:46:50.892 2025-02-25 22:46:50.892 416879 5500 416887 16724 1 3642 2025-02-26 00:11:51.862 2025-02-26 00:11:51.862 416918 11417 416964 21136 1 3643 2025-02-26 01:31:34.056 2025-02-26 01:31:34.056 416918 11417 417006 20185 2 3644 2025-02-26 04:06:53.742 2025-02-26 04:06:53.742 416918 11417 417065 659 1 3645 2025-02-26 00:58:32.161 2025-02-26 00:58:32.161 416918 11417 416995 18313 1 3646 2025-02-25 23:53:37.29 2025-02-25 23:53:37.29 416924 9109 416950 1817 1 3647 2025-02-26 00:27:38.144 2025-02-26 00:27:38.144 416959 5036 416973 16059 1 3648 2025-02-26 00:32:09.57 2025-02-26 00:32:09.57 416961 4048 416976 3371 1 3649 2025-03-09 15:12:34.801 2025-03-09 15:12:34.801 417685 11395 431057 4048 1 3650 2025-03-03 23:56:33.56 2025-03-03 23:56:33.56 417848 2232 424283 15049 3 3651 2025-03-03 15:09:04.297 2025-03-03 15:09:04.297 417848 2232 423740 21275 1 3652 2025-03-04 00:37:03.365 2025-03-04 00:37:03.365 417848 2232 424312 19016 4 3653 2025-03-04 00:14:51.452 2025-03-04 00:14:51.452 417848 2232 424298 20502 1 3654 2025-03-03 23:46:12.04 2025-03-03 23:46:12.04 417848 2232 424277 663 2 3655 2025-03-04 00:38:44.868 2025-03-04 00:38:44.868 417848 2232 424314 19463 2 3656 2025-02-26 18:14:33.146 2025-02-26 18:14:33.146 417941 15577 417966 16598 1 3657 2025-03-28 15:10:27.789 2025-03-28 15:10:27.789 457528 12272 457562 21207 1 3658 2025-02-26 21:25:54.008 2025-02-26 21:25:54.008 417970 14037 418206 9362 1 3659 2025-03-09 15:12:25.556 2025-03-09 15:12:25.556 417974 16556 431053 1881 1 3660 2025-02-27 07:58:40.882 2025-02-27 07:58:40.882 418312 20892 418575 2460 1 3661 2025-03-09 15:12:23.614 2025-03-09 15:12:23.614 418364 20973 431052 18178 1 3662 2025-03-09 15:12:20.788 2025-03-09 15:12:20.788 418410 16660 431051 21067 1 3663 2025-03-02 10:18:59.88 2025-03-02 10:18:59.88 419498 11145 422213 738 1 3664 2025-03-01 19:31:38.433 2025-03-01 19:31:38.433 419668 20310 421604 21287 1 3665 2025-03-04 05:15:47.423 2025-03-04 05:15:47.423 419775 10094 424431 5752 2 3666 2025-02-28 07:39:46.17 2025-02-28 07:39:46.17 419775 10094 419794 2724 1 3667 2025-03-03 11:39:43.526 2025-03-03 11:39:43.526 423453 12561 423457 5306 1 3668 2025-03-01 20:12:00.286 2025-03-01 20:12:00.286 419958 16406 421631 21228 1 3669 2025-03-09 15:11:57.067 2025-03-09 15:11:57.067 420059 7869 431045 11885 1 3670 2025-03-01 23:35:23.239 2025-03-01 23:35:23.239 420186 17953 421728 9177 1 3671 2025-03-01 01:49:26.25 2025-03-01 01:49:26.25 420466 17041 420739 976 1 3672 2025-03-01 14:11:47.253 2025-03-01 14:11:47.253 420483 10342 421238 617 1 3673 2025-03-09 15:11:13.436 2025-03-09 15:11:13.436 420483 10342 431042 16653 1 3674 2025-03-01 14:07:20.677 2025-03-01 14:07:20.677 420503 14280 421234 5495 1 3675 2025-03-01 14:05:14.863 2025-03-01 14:05:14.863 421030 12049 421231 954 1 3676 2025-03-01 11:38:33.967 2025-03-01 11:38:33.967 421036 1609 421085 17392 1 3677 2025-03-03 20:50:44.685 2025-03-03 20:50:44.685 423037 10060 424134 21019 1 3678 2025-03-09 15:10:55.618 2025-03-09 15:10:55.618 421786 14910 431037 20280 1 3679 2025-03-01 13:18:47.215 2025-03-01 13:18:47.215 420527 985 421173 9863 1 3680 2025-02-28 22:02:43.546 2025-02-28 22:02:43.546 420571 12749 420637 11523 1 3681 2025-02-28 20:50:03.633 2025-02-28 20:50:03.633 420585 1814 420605 20454 1 3682 2025-03-01 12:12:47.949 2025-03-01 12:12:47.949 420620 17415 421120 21274 3 3683 2025-03-01 12:37:43.35 2025-03-01 12:37:43.35 420620 17415 421144 16543 4 3684 2025-03-01 12:37:45.816 2025-03-01 12:37:45.816 420620 17415 421145 19992 2 3685 2025-03-01 01:49:20.404 2025-03-01 01:49:20.404 420620 17415 420738 17891 1 3686 2025-03-01 11:36:45.128 2025-03-01 11:36:45.128 420620 17415 421080 7580 2 3687 2025-03-01 12:11:23.525 2025-03-01 12:11:23.525 420620 17415 421118 21271 3 3688 2025-03-01 12:36:55.729 2025-03-01 12:36:55.729 420620 17415 421142 5828 4 3689 2025-03-01 02:37:38.461 2025-03-01 02:37:38.461 420620 17415 420757 16942 1 3690 2025-03-01 12:36:33.521 2025-03-01 12:36:33.521 420620 17415 421140 19138 1 3691 2025-03-01 13:02:13.853 2025-03-01 13:02:13.853 420620 17415 421156 910 1 3692 2025-03-01 14:04:25.205 2025-03-01 14:04:25.205 420620 17415 421227 3347 1 3693 2025-03-01 01:31:58.525 2025-03-01 01:31:58.525 420620 17415 420734 900 1 3694 2025-03-01 02:29:41.479 2025-03-01 02:29:41.479 420620 17415 420753 9276 1 3695 2025-03-01 09:45:43.739 2025-03-01 09:45:43.739 420620 17415 420944 21712 2 3696 2025-03-01 13:46:07.085 2025-03-01 13:46:07.085 421122 7827 421206 14731 2 3697 2025-03-01 13:43:02.895 2025-03-01 13:43:02.895 421122 7827 421199 1472 1 3698 2025-03-01 15:21:40.145 2025-03-01 15:21:40.145 421122 7827 421320 14168 3 3699 2025-03-01 13:54:21.533 2025-03-01 13:54:21.533 421122 7827 421220 15728 1 3700 2025-03-01 15:55:01.354 2025-03-01 15:55:01.354 421122 7827 421370 19826 4 3701 2025-03-02 14:25:45.542 2025-03-02 14:25:45.542 422363 21398 422541 642 1 3702 2025-03-03 23:31:58.371 2025-03-03 23:31:58.371 420666 17714 424263 21391 1 3703 2025-03-03 21:43:20.454 2025-03-03 21:43:20.454 420666 17714 424193 11220 2 3704 2025-03-03 10:57:35.316 2025-03-03 10:57:35.316 420666 17714 423413 6687 1 3705 2025-03-01 11:36:45.128 2025-03-01 11:36:45.128 420738 17891 421080 7580 1 3706 2025-03-01 12:12:47.949 2025-03-01 12:12:47.949 420753 9276 421120 21274 2 3707 2025-03-01 12:37:43.35 2025-03-01 12:37:43.35 420753 9276 421144 16543 3 3708 2025-03-01 12:37:45.816 2025-03-01 12:37:45.816 420753 9276 421145 19992 1 3709 2025-03-01 09:45:43.739 2025-03-01 09:45:43.739 420753 9276 420944 21712 1 3710 2025-03-01 12:11:23.525 2025-03-01 12:11:23.525 420753 9276 421118 21271 2 3711 2025-03-01 12:36:55.729 2025-03-01 12:36:55.729 420753 9276 421142 5828 3 3712 2025-03-02 08:38:10.807 2025-03-02 08:38:10.807 420816 1647 422053 14489 2 3713 2025-03-01 12:58:10.612 2025-03-01 12:58:10.612 420816 1647 421153 12935 1 3714 2025-03-02 12:03:23.185 2025-03-02 12:03:23.185 420816 1647 422355 1785 2 3715 2025-03-01 10:26:25.325 2025-03-01 10:26:25.325 420816 1647 420988 16177 1 3716 2025-03-01 13:56:50.543 2025-03-01 13:56:50.543 420816 1647 421222 7510 1 3717 2025-03-01 12:28:55.168 2025-03-01 12:28:55.168 421033 19494 421129 16296 1 3718 2025-03-12 07:41:49.276 2025-03-12 07:41:49.276 434708 15213 434733 16097 1 3719 2025-03-01 08:07:25.34 2025-03-01 08:07:25.34 420847 9476 420877 15556 1 3720 2025-03-01 14:30:43.421 2025-03-01 14:30:43.421 420884 725 421251 1802 1 3721 2025-03-01 14:30:51.237 2025-03-01 14:30:51.237 420884 725 421252 20858 1 3722 2025-03-01 11:19:08.736 2025-03-01 11:19:08.736 420895 21688 421036 1609 3 3723 2025-03-01 10:02:09.5 2025-03-01 10:02:09.5 420895 21688 420959 762 1 3724 2025-03-01 09:16:29.814 2025-03-01 09:16:29.814 420895 21688 420921 780 1 3725 2025-03-01 10:22:12.116 2025-03-01 10:22:12.116 420895 21688 420986 1741 2 3726 2025-03-01 11:38:33.967 2025-03-01 11:38:33.967 420895 21688 421085 17392 4 3727 2025-03-01 09:51:52.482 2025-03-01 09:51:52.482 420895 21688 420951 20157 1 3728 2025-03-01 12:28:55.168 2025-03-01 12:28:55.168 420895 21688 421129 16296 4 3729 2025-03-01 16:29:15.582 2025-03-01 16:29:15.582 420895 21688 421427 14503 2 3730 2025-03-01 18:24:02.93 2025-03-01 18:24:02.93 420895 21688 421542 5377 2 3731 2025-03-01 11:18:17.292 2025-03-01 11:18:17.292 420895 21688 421033 19494 3 3732 2025-03-01 13:09:39.814 2025-03-01 13:09:39.814 420895 21688 421161 9611 1 3733 2025-03-01 11:01:59.453 2025-03-01 11:01:59.453 420895 21688 421020 6030 1 3734 2025-03-02 12:11:52.196 2025-03-02 12:11:52.196 420895 21688 422364 15510 2 3735 2025-03-01 13:46:48.807 2025-03-01 13:46:48.807 420895 21688 421207 9705 2 3736 2025-03-01 10:32:29.788 2025-03-01 10:32:29.788 420895 21688 420993 7966 1 3737 2025-03-01 13:48:34.149 2025-03-01 13:48:34.149 420895 21688 421211 10469 2 3738 2025-03-01 18:22:30.078 2025-03-01 18:22:30.078 420895 21688 421540 21103 1 3739 2025-03-01 11:10:41.247 2025-03-01 11:10:41.247 420895 21688 421028 4754 2 3740 2025-03-01 11:04:44.838 2025-03-01 11:04:44.838 420895 21688 421024 2293 2 3741 2025-03-01 14:04:40.333 2025-03-01 14:04:40.333 420895 21688 421229 16424 3 3742 2025-03-01 11:03:28.724 2025-03-01 11:03:28.724 420895 21688 421022 21829 2 3743 2025-03-01 11:15:41.135 2025-03-01 11:15:41.135 420895 21688 421030 12049 3 3744 2025-03-01 14:05:14.863 2025-03-01 14:05:14.863 420895 21688 421231 954 4 3745 2025-03-01 11:09:03.949 2025-03-01 11:09:03.949 420895 21688 421025 21103 1 3746 2025-03-01 14:58:00.305 2025-03-01 14:58:00.305 420895 21688 421281 844 1 3747 2025-03-02 12:03:23.185 2025-03-02 12:03:23.185 421222 7510 422355 1785 1 3748 2025-03-02 09:59:37.571 2025-03-02 09:59:37.571 422161 10549 422172 12261 1 3749 2025-03-02 11:03:33.481 2025-03-02 11:03:33.481 422161 10549 422287 12808 2 3750 2025-03-02 10:20:40.661 2025-03-02 10:20:40.661 420918 654 422222 6191 1 3751 2025-03-01 12:34:24.717 2025-03-01 12:34:24.717 420918 654 421137 1173 1 3752 2025-03-01 14:27:01.275 2025-03-01 14:27:01.275 420918 654 421248 15337 2 3753 2025-03-01 13:04:24.07 2025-03-01 13:04:24.07 420918 654 421158 14688 1 3754 2025-03-02 12:30:04.187 2025-03-02 12:30:04.187 420918 654 422390 9337 3 3755 2025-03-01 10:03:52.986 2025-03-01 10:03:52.986 420918 654 420963 1495 1 3756 2025-03-02 11:25:46.184 2025-03-02 11:25:46.184 420918 654 422309 15521 2 3757 2025-03-01 12:01:43.157 2025-03-01 12:01:43.157 420918 654 421110 2013 1 3758 2025-03-01 12:12:47.949 2025-03-01 12:12:47.949 420944 21712 421120 21274 1 3759 2025-03-01 12:37:43.35 2025-03-01 12:37:43.35 420944 21712 421144 16543 2 3760 2025-03-01 12:11:23.525 2025-03-01 12:11:23.525 420944 21712 421118 21271 1 3761 2025-03-01 12:36:55.729 2025-03-01 12:36:55.729 420944 21712 421142 5828 2 3762 2025-03-01 11:19:08.736 2025-03-01 11:19:08.736 420951 20157 421036 1609 2 3763 2025-03-01 11:04:44.838 2025-03-01 11:04:44.838 420951 20157 421024 2293 1 3764 2025-03-01 11:03:28.724 2025-03-01 11:03:28.724 420951 20157 421022 21829 1 3765 2025-03-01 11:38:33.967 2025-03-01 11:38:33.967 420951 20157 421085 17392 3 3766 2025-03-01 10:22:12.116 2025-03-01 10:22:12.116 420959 762 420986 1741 1 3767 2025-03-01 13:46:48.807 2025-03-01 13:46:48.807 420959 762 421207 9705 1 3768 2025-03-01 11:15:41.135 2025-03-01 11:15:41.135 420959 762 421030 12049 2 3769 2025-03-01 14:05:14.863 2025-03-01 14:05:14.863 420959 762 421231 954 3 3770 2025-03-01 14:27:01.275 2025-03-01 14:27:01.275 420963 1495 421248 15337 1 3771 2025-03-01 15:10:20.68 2025-03-01 15:10:20.68 420966 1261 421303 19863 1 3772 2025-03-03 05:35:58.933 2025-03-03 05:35:58.933 423036 9494 423211 17517 1 3773 2025-03-03 00:19:54.573 2025-03-03 00:19:54.573 423036 9494 423085 21274 1 3774 2025-03-02 08:38:10.807 2025-03-02 08:38:10.807 420988 16177 422053 14489 1 3775 2025-03-01 15:08:21.741 2025-03-01 15:08:21.741 420994 7966 421297 21455 1 3776 2025-03-01 13:33:36.686 2025-03-01 13:33:36.686 421029 17976 421188 6471 1 3777 2025-03-01 14:08:40.702 2025-03-01 14:08:40.702 421092 902 421236 1833 1 3778 2025-03-01 18:09:01.181 2025-03-01 18:09:01.181 421116 673 421514 1008 2 3779 2025-03-01 12:46:32.283 2025-03-01 12:46:32.283 421116 673 421148 18068 1 3780 2025-03-02 12:11:52.196 2025-03-02 12:11:52.196 421161 9611 422364 15510 1 3781 2025-03-01 13:27:42.041 2025-03-01 13:27:42.041 421176 21139 421180 18772 1 3782 2025-03-01 21:12:44.217 2025-03-01 21:12:44.217 421191 929 421661 16942 1 3783 2025-03-02 11:19:26.517 2025-03-02 11:19:26.517 421194 7809 422301 1609 1 3784 2025-03-02 23:30:38.966 2025-03-02 23:30:38.966 421194 7809 423067 11798 2 3785 2025-03-01 13:46:07.085 2025-03-01 13:46:07.085 421199 1472 421206 14731 1 3786 2025-03-01 15:21:40.145 2025-03-01 15:21:40.145 421199 1472 421320 14168 2 3787 2025-03-01 15:55:01.354 2025-03-01 15:55:01.354 421199 1472 421370 19826 3 3788 2025-03-01 14:04:40.333 2025-03-01 14:04:40.333 421211 10469 421229 16424 1 3789 2025-03-01 22:48:24.019 2025-03-01 22:48:24.019 421260 7185 421718 18901 1 3790 2025-03-01 15:02:28.502 2025-03-01 15:02:28.502 421266 12911 421285 20602 1 3791 2025-03-01 15:07:03.41 2025-03-01 15:07:03.41 421284 827 421293 12821 1 3792 2025-03-01 15:28:21.751 2025-03-01 15:28:21.751 421287 5427 421334 19005 1 3793 2025-03-01 15:13:57.081 2025-03-01 15:13:57.081 421291 13517 421308 20646 1 3794 2025-03-01 15:30:35.269 2025-03-01 15:30:35.269 421316 21281 421338 1596 1 3795 2025-03-01 15:55:01.354 2025-03-01 15:55:01.354 421320 14168 421370 19826 1 3796 2025-03-09 15:11:05.555 2025-03-09 15:11:05.555 421499 14295 431039 13763 1 3797 2025-03-01 18:24:02.93 2025-03-01 18:24:02.93 421540 21103 421542 5377 1 3798 2025-03-01 22:06:07.798 2025-03-01 22:06:07.798 421561 2088 421692 21451 1 3799 2025-03-01 19:42:08.374 2025-03-01 19:42:08.374 421567 1438 421611 20481 2 3800 2025-03-09 15:01:39.509 2025-03-09 15:01:39.509 421567 1438 430995 9916 3 3801 2025-03-01 21:36:53.805 2025-03-01 21:36:53.805 421567 1438 421677 11515 3 3802 2025-03-01 21:05:40.864 2025-03-01 21:05:40.864 421567 1438 421655 4487 2 3803 2025-03-01 23:55:50.365 2025-03-01 23:55:50.365 421567 1438 421747 1567 8 3804 2025-03-01 23:50:41.485 2025-03-01 23:50:41.485 421567 1438 421739 8945 7 3805 2025-03-12 09:22:04.298 2025-03-12 09:22:04.298 421567 1438 434840 6749 1 3806 2025-03-01 19:04:21.027 2025-03-01 19:04:21.027 421567 1438 421586 1401 1 3807 2025-03-01 23:46:22.089 2025-03-01 23:46:22.089 421567 1438 421735 1738 4 3808 2025-03-01 21:51:04.497 2025-03-01 21:51:04.497 421567 1438 421684 2322 4 3809 2025-03-02 03:38:25.244 2025-03-02 03:38:25.244 421567 1438 421852 10611 3 3810 2025-03-02 11:06:05.586 2025-03-02 11:06:05.586 421567 1438 422290 2776 1 3811 2025-03-02 02:03:45.555 2025-03-02 02:03:45.555 421567 1438 421802 16598 5 3812 2025-03-09 15:08:40.027 2025-03-09 15:08:40.027 421567 1438 431005 21412 1 3813 2025-03-01 21:01:10.29 2025-03-01 21:01:10.29 421567 1438 421654 1472 2 3814 2025-03-01 19:04:11.227 2025-03-01 19:04:11.227 421567 1438 421585 19906 1 3815 2025-03-01 19:28:54.337 2025-03-01 19:28:54.337 421567 1438 421603 1729 1 3816 2025-03-01 23:44:41.047 2025-03-01 23:44:41.047 421567 1438 421733 21401 3 3817 2025-03-02 03:30:55.78 2025-03-02 03:30:55.78 421567 1438 421847 21214 2 3818 2025-03-01 23:09:49.521 2025-03-01 23:09:49.521 421567 1438 421722 21798 1 3819 2025-03-01 23:41:47.811 2025-03-01 23:41:47.811 421567 1438 421731 21254 2 3820 2025-03-01 23:50:03.187 2025-03-01 23:50:03.187 421567 1438 421738 674 6 3821 2025-03-01 23:48:23.237 2025-03-01 23:48:23.237 421567 1438 421737 16309 5 3822 2025-03-02 10:03:41.297 2025-03-02 10:03:41.297 422150 20970 422176 21401 1 3823 2025-03-03 04:49:39.528 2025-03-03 04:49:39.528 422745 18430 423193 8459 1 3824 2025-03-01 19:42:08.374 2025-03-01 19:42:08.374 421585 19906 421611 20481 1 3825 2025-03-09 15:01:39.509 2025-03-09 15:01:39.509 421585 19906 430995 9916 2 3826 2025-03-01 21:36:53.805 2025-03-01 21:36:53.805 421585 19906 421677 11515 2 3827 2025-03-01 21:05:40.864 2025-03-01 21:05:40.864 421585 19906 421655 4487 1 3828 2025-03-01 21:51:04.497 2025-03-01 21:51:04.497 421585 19906 421684 2322 3 3829 2025-03-02 02:03:45.555 2025-03-02 02:03:45.555 421585 19906 421802 16598 4 3830 2025-03-01 21:42:23.478 2025-03-01 21:42:23.478 421587 1352 421680 11091 1 3831 2025-03-01 19:14:55.699 2025-03-01 19:14:55.699 421588 14503 421592 2039 1 3832 2025-03-01 19:18:08.811 2025-03-01 19:18:08.811 421593 9352 421594 10102 1 3833 2025-03-01 21:01:10.29 2025-03-01 21:01:10.29 421603 1729 421654 1472 1 3834 2025-03-01 21:51:04.497 2025-03-01 21:51:04.497 421677 11515 421684 2322 1 3835 2025-03-02 02:03:45.555 2025-03-02 02:03:45.555 421677 11515 421802 16598 2 3836 2025-03-01 23:46:22.089 2025-03-01 23:46:22.089 421733 21401 421735 1738 1 3837 2025-03-01 23:50:03.187 2025-03-01 23:50:03.187 421733 21401 421738 674 3 3838 2025-03-01 23:48:23.237 2025-03-01 23:48:23.237 421733 21401 421737 16309 2 3839 2025-03-01 23:55:50.365 2025-03-01 23:55:50.365 421733 21401 421747 1567 5 3840 2025-03-01 23:50:41.485 2025-03-01 23:50:41.485 421733 21401 421739 8945 4 3841 2025-03-01 23:55:50.365 2025-03-01 23:55:50.365 421739 8945 421747 1567 1 3842 2025-03-28 18:37:25.928 2025-03-28 18:37:25.928 457605 21332 457835 20647 1 3843 2025-03-09 15:10:51.125 2025-03-09 15:10:51.125 422191 803 431036 18930 1 3844 2025-03-02 10:42:58.348 2025-03-02 10:42:58.348 422211 17291 422255 20117 1 3845 2025-03-02 05:27:49.858 2025-03-02 05:27:49.858 421805 2010 421927 1120 1 3846 2025-03-02 10:59:28.866 2025-03-02 10:59:28.866 421833 4798 422279 11298 1 3847 2025-03-02 03:38:25.244 2025-03-02 03:38:25.244 421847 21214 421852 10611 1 3848 2025-03-04 00:45:17.146 2025-03-04 00:45:17.146 424316 21079 424321 11648 1 3849 2025-03-03 00:44:06.283 2025-03-03 00:44:06.283 422010 21202 423099 13097 1 3850 2025-03-02 07:55:15.911 2025-03-02 07:55:15.911 422014 13177 422023 11164 2 3851 2025-03-02 08:08:26.967 2025-03-02 08:08:26.967 422014 13177 422031 21303 3 3852 2025-03-02 10:42:58.348 2025-03-02 10:42:58.348 422014 13177 422255 20117 2 3853 2025-03-02 10:18:24.843 2025-03-02 10:18:24.843 422014 13177 422211 17291 1 3854 2025-03-02 07:53:39.686 2025-03-02 07:53:39.686 422014 13177 422022 16354 1 3855 2025-03-09 14:55:41.376 2025-03-09 14:55:41.376 422025 1751 430991 5522 1 3856 2025-03-02 08:56:32.471 2025-03-02 08:56:32.471 422056 10016 422068 15091 2 3857 2025-03-02 10:52:43.218 2025-03-02 10:52:43.218 422056 10016 422269 19668 3 3858 2025-03-02 08:58:21.257 2025-03-02 08:58:21.257 422056 10016 422069 5794 1 3859 2025-03-02 14:15:27.88 2025-03-02 14:15:27.88 422056 10016 422526 1611 2 3860 2025-03-02 14:25:45.542 2025-03-02 14:25:45.542 422056 10016 422541 642 2 3861 2025-03-02 08:55:24.16 2025-03-02 08:55:24.16 422056 10016 422066 5904 1 3862 2025-03-02 15:04:42.847 2025-03-02 15:04:42.847 422056 10016 422582 3656 6 3863 2025-03-02 15:26:14.116 2025-03-02 15:26:14.116 422056 10016 422619 13076 3 3864 2025-03-02 12:11:52.03 2025-03-02 12:11:52.03 422056 10016 422363 21398 1 3865 2025-03-02 14:22:47.315 2025-03-02 14:22:47.315 422056 10016 422532 6058 1 3866 2025-03-02 14:25:00.514 2025-03-02 14:25:00.514 422056 10016 422537 13763 5 3867 2025-03-03 06:57:07.807 2025-03-03 06:57:07.807 422056 10016 423254 1352 2 3868 2025-03-02 13:44:14.423 2025-03-02 13:44:14.423 422056 10016 422499 11165 3 3869 2025-03-02 13:42:33.242 2025-03-02 13:42:33.242 422056 10016 422497 678 2 3870 2025-03-03 07:14:39.927 2025-03-03 07:14:39.927 422056 10016 423267 17109 1 3871 2025-03-02 10:28:30.11 2025-03-02 10:28:30.11 422056 10016 422229 19535 7 3872 2025-03-02 11:16:28.594 2025-03-02 11:16:28.594 422056 10016 422297 21383 1 3873 2025-03-03 12:10:19.037 2025-03-03 12:10:19.037 422056 10016 423487 2963 3 3874 2025-03-02 09:38:59.223 2025-03-02 09:38:59.223 422056 10016 422125 4118 1 3875 2025-03-02 15:09:35.448 2025-03-02 15:09:35.448 422056 10016 422585 13143 2 3876 2025-03-02 15:16:31.651 2025-03-02 15:16:31.651 422056 10016 422597 13574 2 3877 2025-03-02 09:34:20.43 2025-03-02 09:34:20.43 422056 10016 422111 1483 6 3878 2025-03-02 10:48:58.791 2025-03-02 10:48:58.791 422056 10016 422261 6260 2 3879 2025-03-02 14:08:01.586 2025-03-02 14:08:01.586 422056 10016 422521 1483 1 3880 2025-03-02 08:47:43.95 2025-03-02 08:47:43.95 422056 10016 422057 12368 1 3881 2025-03-02 09:29:22.651 2025-03-02 09:29:22.651 422056 10016 422098 1198 5 3882 2025-03-02 14:23:55.616 2025-03-02 14:23:55.616 422056 10016 422535 11523 4 3883 2025-03-03 06:48:17.338 2025-03-03 06:48:17.338 422056 10016 423240 696 1 3884 2025-03-02 09:20:08.692 2025-03-02 09:20:08.692 422056 10016 422087 17708 4 3885 2025-03-02 09:08:28.388 2025-03-02 09:08:28.388 422056 10016 422076 9438 3 3886 2025-03-02 13:12:18.668 2025-03-02 13:12:18.668 422056 10016 422470 2593 1 3887 2025-03-02 23:15:48.473 2025-03-02 23:15:48.473 422587 10302 423061 16177 2 3888 2025-03-02 16:07:12.761 2025-03-02 16:07:12.761 422587 10302 422678 2176 1 3889 2025-03-02 18:23:07.751 2025-03-02 18:23:07.751 422587 10302 422842 20647 2 3890 2025-03-02 23:29:45.868 2025-03-02 23:29:45.868 422587 10302 423066 10638 3 3891 2025-03-02 17:03:05.653 2025-03-02 17:03:05.653 422587 10302 422740 3979 1 3892 2025-03-02 23:34:59.448 2025-03-02 23:34:59.448 422587 10302 423068 18500 2 3893 2025-03-02 23:06:48.555 2025-03-02 23:06:48.555 422587 10302 423057 20922 1 3894 2025-03-04 02:50:32.043 2025-03-04 02:50:32.043 422587 10302 424362 12291 1 3895 2025-03-04 02:58:07.575 2025-03-04 02:58:07.575 422587 10302 424366 20152 2 3896 2025-03-02 15:16:01.695 2025-03-02 15:16:01.695 422587 10302 422596 20454 1 3897 2025-03-02 18:43:21.634 2025-03-02 18:43:21.634 422587 10302 422862 18678 1 3898 2025-03-02 15:31:36.762 2025-03-02 15:31:36.762 422060 21710 422627 16353 1 3899 2025-03-02 10:28:30.11 2025-03-02 10:28:30.11 422111 1483 422229 19535 1 3900 2025-03-02 10:32:24.112 2025-03-02 10:32:24.112 422234 4167 422235 21233 1 3901 2025-03-02 10:52:43.218 2025-03-02 10:52:43.218 422261 6260 422269 19668 1 3902 2025-03-02 12:30:04.187 2025-03-02 12:30:04.187 422309 15521 422390 9337 1 3903 2025-03-03 04:43:07.443 2025-03-03 04:43:07.443 422361 15409 423189 12139 1 3904 2025-03-06 13:43:01.937 2025-03-06 13:43:01.937 427548 1261 427554 4989 1 3905 2025-03-03 00:42:58.799 2025-03-03 00:42:58.799 422384 20972 423098 12561 1 3906 2025-03-02 15:03:44.615 2025-03-02 15:03:44.615 422481 21540 422581 1618 1 3907 2025-03-02 15:15:17.758 2025-03-02 15:15:17.758 422481 21540 422594 15239 3 3908 2025-03-02 15:10:40.491 2025-03-02 15:10:40.491 422481 21540 422588 20754 2 3909 2025-03-13 03:53:18.568 2025-03-13 03:53:18.568 435837 18829 435876 18116 1 3910 2025-03-02 23:29:45.868 2025-03-02 23:29:45.868 422842 20647 423066 10638 1 3911 2025-03-02 18:38:34.601 2025-03-02 18:38:34.601 422856 17237 422857 21047 1 3912 2025-03-03 01:20:07.266 2025-03-03 01:20:07.266 422856 17237 423117 14503 2 3913 2025-03-02 22:40:03.098 2025-03-02 22:40:03.098 422856 17237 423045 1602 1 3914 2025-03-03 01:20:07.266 2025-03-03 01:20:07.266 422857 21047 423117 14503 1 3915 2025-03-07 16:47:04.786 2025-03-07 16:47:04.786 425972 698 428851 21494 1 3916 2025-03-02 22:27:07.971 2025-03-02 22:27:07.971 422483 20636 423037 10060 3 3917 2025-03-03 20:50:44.685 2025-03-03 20:50:44.685 422483 20636 424134 21019 4 3918 2025-03-03 04:49:39.528 2025-03-03 04:49:39.528 422483 20636 423193 8459 3 3919 2025-03-03 04:44:07.358 2025-03-03 04:44:07.358 422483 20636 423190 10862 3 3920 2025-03-03 04:54:15.124 2025-03-03 04:54:15.124 422483 20636 423194 4314 4 3921 2025-03-03 04:32:58.399 2025-03-03 04:32:58.399 422483 20636 423181 10302 1 3922 2025-03-02 13:43:00.256 2025-03-02 13:43:00.256 422483 20636 422498 21060 1 3923 2025-03-02 14:39:42.248 2025-03-02 14:39:42.248 422483 20636 422554 12976 1 3924 2025-03-02 16:35:02.785 2025-03-02 16:35:02.785 422483 20636 422714 5904 1 3925 2025-03-02 20:08:49.747 2025-03-02 20:08:49.747 422483 20636 422961 17082 2 3926 2025-03-02 21:47:55.792 2025-03-02 21:47:55.792 422483 20636 423018 14080 2 3927 2025-03-03 04:39:40.329 2025-03-03 04:39:40.329 422483 20636 423185 7580 2 3928 2025-03-02 17:06:17.931 2025-03-02 17:06:17.931 422483 20636 422745 18430 2 3929 2025-03-03 04:31:07.445 2025-03-03 04:31:07.445 422483 20636 423179 17944 2 3930 2025-03-02 22:27:07.971 2025-03-02 22:27:07.971 422498 21060 423037 10060 2 3931 2025-03-03 20:50:44.685 2025-03-03 20:50:44.685 422498 21060 424134 21019 3 3932 2025-03-02 20:08:49.747 2025-03-02 20:08:49.747 422498 21060 422961 17082 1 3933 2025-03-03 04:39:40.329 2025-03-03 04:39:40.329 422498 21060 423185 7580 1 3934 2025-03-02 13:57:11.752 2025-03-02 13:57:11.752 422505 16356 422509 696 1 3935 2025-03-02 15:09:35.448 2025-03-02 15:09:35.448 422521 1483 422585 13143 1 3936 2025-03-02 14:15:27.88 2025-03-02 14:15:27.88 422521 1483 422526 1611 1 3937 2025-03-02 15:16:31.651 2025-03-02 15:16:31.651 422532 6058 422597 13574 1 3938 2025-03-02 15:26:14.116 2025-03-02 15:26:14.116 422532 6058 422619 13076 2 3939 2025-03-02 15:04:42.847 2025-03-02 15:04:42.847 422537 13763 422582 3656 1 3940 2025-03-02 15:25:06.472 2025-03-02 15:25:06.472 422548 12562 422618 21051 1 3941 2025-03-02 16:57:08.339 2025-03-02 16:57:08.339 422548 12562 422729 4238 1 3942 2025-03-02 16:58:59.289 2025-03-02 16:58:59.289 422548 12562 422733 3683 1 3943 2025-03-02 21:26:30.222 2025-03-02 21:26:30.222 422548 12562 423011 749 1 3944 2025-03-02 17:02:12.942 2025-03-02 17:02:12.942 422548 12562 422737 20597 1 3945 2025-03-03 00:36:24.345 2025-03-03 00:36:24.345 422548 12562 423092 13566 1 3946 2025-03-02 15:36:38.005 2025-03-02 15:36:38.005 422548 12562 422643 20642 3 3947 2025-03-02 15:34:27.097 2025-03-02 15:34:27.097 422548 12562 422635 1726 2 3948 2025-03-02 21:47:55.792 2025-03-02 21:47:55.792 422554 12976 423018 14080 1 3949 2025-03-02 17:24:38.1 2025-03-02 17:24:38.1 422756 18829 422770 20980 2 3950 2025-03-02 17:19:33.793 2025-03-02 17:19:33.793 422756 18829 422764 19263 1 3951 2025-03-02 19:47:29.999 2025-03-02 19:47:29.999 422779 17696 422943 3347 1 3952 2025-03-03 05:57:12.909 2025-03-03 05:57:12.909 422779 17696 423214 20254 2 3953 2025-03-02 14:47:53.798 2025-03-02 14:47:53.798 422557 21048 422564 13097 1 3954 2025-03-02 23:34:59.448 2025-03-02 23:34:59.448 422862 18678 423068 18500 1 3955 2025-03-04 00:50:06.722 2025-03-04 00:50:06.722 423314 20897 424325 1596 2 3956 2025-03-04 04:18:28.842 2025-03-04 04:18:28.842 423314 20897 424404 21271 3 3957 2025-03-03 22:07:55.157 2025-03-03 22:07:55.157 423314 20897 424212 20691 2 3958 2025-03-03 09:23:25.416 2025-03-03 09:23:25.416 423314 20897 423352 21430 2 3959 2025-03-03 14:45:39.838 2025-03-03 14:45:39.838 423314 20897 423701 5003 2 3960 2025-03-03 21:27:08.473 2025-03-03 21:27:08.473 423314 20897 424175 1316 3 3961 2025-03-03 21:27:29.347 2025-03-03 21:27:29.347 423314 20897 424176 19735 3 3962 2025-03-03 09:36:56.486 2025-03-03 09:36:56.486 423314 20897 423364 16357 1 3963 2025-03-03 10:18:18.914 2025-03-03 10:18:18.914 423314 20897 423386 15806 1 3964 2025-03-03 08:51:08.713 2025-03-03 08:51:08.713 423314 20897 423321 7979 1 3965 2025-03-02 15:14:55.74 2025-03-02 15:14:55.74 422577 14258 422593 3642 1 3966 2025-03-02 15:15:17.758 2025-03-02 15:15:17.758 422588 20754 422594 15239 1 3967 2025-03-02 23:15:48.473 2025-03-02 23:15:48.473 422596 20454 423061 16177 1 3968 2025-03-02 15:21:24.56 2025-03-02 15:21:24.56 422600 14195 422613 11670 1 3969 2025-03-02 15:34:34.949 2025-03-02 15:34:34.949 422614 21012 422636 11515 1 3970 2025-03-03 07:29:53.365 2025-03-03 07:29:53.365 422628 8796 423287 13921 3 3971 2025-03-03 01:22:46.861 2025-03-03 01:22:46.861 422628 8796 423120 21418 2 3972 2025-03-02 22:31:49.14 2025-03-02 22:31:49.14 422628 8796 423040 1495 1 3973 2025-03-02 15:57:54.653 2025-03-02 15:57:54.653 422628 8796 422668 1046 1 3974 2025-03-02 21:28:28.793 2025-03-02 21:28:28.793 422628 8796 423013 10409 1 3975 2025-03-03 01:20:47.662 2025-03-03 01:20:47.662 422628 8796 423118 623 2 3976 2025-03-03 01:21:21.413 2025-03-03 01:21:21.413 422628 8796 423119 798 2 3977 2025-03-03 01:18:26.75 2025-03-03 01:18:26.75 422628 8796 423115 2961 2 3978 2025-03-02 15:53:05.763 2025-03-02 15:53:05.763 422628 8796 422661 2514 1 3979 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422640 3706 422644 19071 1 3980 2025-03-03 01:18:26.75 2025-03-03 01:18:26.75 422668 1046 423115 2961 1 3981 2025-03-02 17:41:44.621 2025-03-02 17:41:44.621 422673 12188 422798 17365 2 3982 2025-03-02 17:39:10.713 2025-03-02 17:39:10.713 422673 12188 422792 7654 1 3983 2025-03-02 17:16:01.726 2025-03-02 17:16:01.726 422717 19854 422756 18829 2 3984 2025-03-02 17:24:38.1 2025-03-02 17:24:38.1 422717 19854 422770 20980 4 3985 2025-03-02 21:23:28.903 2025-03-02 21:23:28.903 422717 19854 423007 19842 2 3986 2025-03-02 17:01:16.887 2025-03-02 17:01:16.887 422717 19854 422735 18269 1 3987 2025-03-02 21:25:24.096 2025-03-02 21:25:24.096 422717 19854 423009 21401 3 3988 2025-03-02 16:56:58.283 2025-03-02 16:56:58.283 422717 19854 422728 9705 1 3989 2025-03-03 13:57:20.578 2025-03-03 13:57:20.578 422717 19854 423640 11670 1 3990 2025-03-02 21:21:25.098 2025-03-02 21:21:25.098 422717 19854 423005 929 1 3991 2025-03-02 17:19:33.793 2025-03-02 17:19:33.793 422717 19854 422764 19263 3 3992 2025-03-04 00:50:06.722 2025-03-04 00:50:06.722 423386 15806 424325 1596 1 3993 2025-03-04 04:18:28.842 2025-03-04 04:18:28.842 423386 15806 424404 21271 2 3994 2025-03-03 22:07:55.157 2025-03-03 22:07:55.157 423386 15806 424212 20691 1 3995 2025-03-03 04:01:33.426 2025-03-03 04:01:33.426 422788 9262 423168 21422 1 3996 2025-03-02 17:41:44.621 2025-03-02 17:41:44.621 422792 7654 422798 17365 1 3997 2025-03-02 18:07:50.018 2025-03-02 18:07:50.018 422808 638 422819 13903 1 3998 2025-03-02 20:17:42.378 2025-03-02 20:17:42.378 422808 638 422966 19378 2 3999 2025-03-02 18:27:17.845 2025-03-02 18:27:17.845 422829 18309 422844 20102 2 4000 2025-03-02 18:18:29.35 2025-03-02 18:18:29.35 422829 18309 422838 8416 1 4001 2025-03-03 01:22:46.861 2025-03-03 01:22:46.861 423013 10409 423120 21418 1 4002 2025-03-03 07:54:55.2 2025-03-03 07:54:55.2 422863 11678 423296 20310 3 4003 2025-03-03 04:57:36.875 2025-03-03 04:57:36.875 422863 11678 423196 919 1 4004 2025-03-02 19:30:12.034 2025-03-02 19:30:12.034 422863 11678 422926 2156 2 4005 2025-03-03 07:21:34.347 2025-03-03 07:21:34.347 422863 11678 423277 1245 1 4006 2025-03-02 18:55:34.339 2025-03-02 18:55:34.339 422863 11678 422881 20904 1 4007 2025-03-02 20:27:47.182 2025-03-02 20:27:47.182 422863 11678 422974 11714 3 4008 2025-03-02 20:31:33.728 2025-03-02 20:31:33.728 422863 11678 422977 18734 4 4009 2025-03-02 20:25:59.417 2025-03-02 20:25:59.417 422863 11678 422973 6136 1 4010 2025-03-02 23:12:17.224 2025-03-02 23:12:17.224 422863 11678 423060 20646 1 4011 2025-03-03 00:30:49.577 2025-03-03 00:30:49.577 422863 11678 423087 18402 1 4012 2025-03-03 07:49:59.963 2025-03-03 07:49:59.963 422863 11678 423295 4602 2 4013 2025-03-09 15:10:22.955 2025-03-09 15:10:22.955 422869 21164 431032 19198 1 4014 2025-03-12 15:33:19.846 2025-03-12 15:33:19.846 434896 21180 435309 20243 1 4015 2025-03-02 19:35:40.661 2025-03-02 19:35:40.661 422927 10102 422934 4798 1 4016 2025-03-02 21:29:18.007 2025-03-02 21:29:18.007 422940 16858 423014 20337 1 4017 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422941 19303 423046 12656 1 4018 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422941 19303 423076 695 2 4019 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422941 19303 423078 21238 2 4020 2025-03-02 20:03:13.063 2025-03-02 20:03:13.063 422953 15484 422958 811 1 4021 2025-03-02 21:01:58.137 2025-03-02 21:01:58.137 422953 15484 422999 20858 2 4022 2025-03-02 20:57:55.597 2025-03-02 20:57:55.597 422957 4989 422997 1823 1 4023 2025-03-02 20:31:33.728 2025-03-02 20:31:33.728 422974 11714 422977 18734 1 4024 2025-03-03 13:53:42.18 2025-03-03 13:53:42.18 423149 1122 423627 11395 1 4025 2025-03-03 11:40:44.383 2025-03-03 11:40:44.383 423316 21020 423459 16717 1 4026 2025-03-03 20:09:44.243 2025-03-03 20:09:44.243 422981 2347 424074 10060 1 4027 2025-03-03 21:19:15.954 2025-03-03 21:19:15.954 422981 2347 424170 775 2 4028 2025-03-02 21:25:24.096 2025-03-02 21:25:24.096 423007 19842 423009 21401 1 4029 2025-03-02 22:57:43.237 2025-03-02 22:57:43.237 423048 11395 423051 3656 2 4030 2025-03-02 22:49:43.41 2025-03-02 22:49:43.41 423048 11395 423050 10493 1 4031 2025-03-03 03:29:05.779 2025-03-03 03:29:05.779 423071 20924 423151 16695 1 4032 2025-03-03 22:40:08.6 2025-03-03 22:40:08.6 423111 11395 424225 1142 1 4033 2022-11-09 19:19:02.101 2022-11-09 19:19:02.101 3762 6616 3767 8037 1 4034 2025-03-03 07:29:53.365 2025-03-03 07:29:53.365 423118 623 423287 13921 1 4035 2025-03-03 04:22:07.7 2025-03-03 04:22:07.7 423122 21374 423175 16329 1 4036 2025-03-03 11:02:08.267 2025-03-03 11:02:08.267 423124 19126 423419 18178 1 4037 2025-03-04 01:36:27.917 2025-03-04 01:36:27.917 423124 19126 424340 13553 2 4038 2025-03-03 13:53:42.18 2025-03-03 13:53:42.18 423124 19126 423627 11395 2 4039 2025-03-03 10:37:27.493 2025-03-03 10:37:27.493 423124 19126 423398 7827 1 4040 2025-03-04 00:49:25.353 2025-03-04 00:49:25.353 423124 19126 424324 7772 1 4041 2025-03-04 02:42:06.241 2025-03-04 02:42:06.241 423124 19126 424359 16809 1 4042 2025-03-03 21:12:44.371 2025-03-03 21:12:44.371 423124 19126 424162 11450 1 4043 2025-03-03 12:47:07.213 2025-03-03 12:47:07.213 423124 19126 423535 19735 2 4044 2025-03-03 12:53:42.149 2025-03-03 12:53:42.149 423124 19126 423554 979 2 4045 2025-03-04 00:54:53.844 2025-03-04 00:54:53.844 423124 19126 424330 10291 1 4046 2025-03-03 03:23:35.366 2025-03-03 03:23:35.366 423124 19126 423149 1122 1 4047 2025-03-03 09:40:07.264 2025-03-03 09:40:07.264 423130 16830 423366 13162 1 4048 2025-03-03 04:14:15.754 2025-03-03 04:14:15.754 423166 10016 423173 20680 1 4049 2025-03-03 04:32:33.406 2025-03-03 04:32:33.406 423166 10016 423180 3396 1 4050 2025-03-03 21:27:08.473 2025-03-03 21:27:08.473 423352 21430 424175 1316 1 4051 2025-03-07 15:41:16.996 2025-03-07 15:41:16.996 428774 11996 428779 4624 1 4052 2025-03-03 20:56:28.838 2025-03-03 20:56:28.838 423195 5752 424142 9758 1 4053 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 423601 21373 424408 12049 12 4054 2025-03-03 20:31:56.013 2025-03-03 20:31:56.013 423601 21373 424099 15060 7 4055 2025-03-03 19:52:36.539 2025-03-03 19:52:36.539 423601 21373 424049 8245 4 4056 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 423601 21373 424401 14990 9 4057 2025-03-03 19:39:46.836 2025-03-03 19:39:46.836 423601 21373 424037 18901 3 4058 2025-03-03 20:28:10.099 2025-03-03 20:28:10.099 423601 21373 424094 21734 6 4059 2025-03-03 19:24:31.174 2025-03-03 19:24:31.174 423601 21373 424015 1454 2 4060 2025-03-03 20:19:40.617 2025-03-03 20:19:40.617 423601 21373 424082 9337 5 4061 2025-03-03 19:18:02.353 2025-03-03 19:18:02.353 423601 21373 424009 20337 1 4062 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 423601 21373 424382 18743 8 4063 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 423601 21373 424403 21263 10 4064 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 423601 21373 424405 844 11 4065 2025-03-03 13:32:39.529 2025-03-03 13:32:39.529 423602 6229 423604 21026 1 4066 2025-03-03 23:23:06.93 2025-03-03 23:23:06.93 423614 12368 424250 1740 1 4067 2025-03-03 17:40:39.339 2025-03-03 17:40:39.339 423225 1245 423906 20687 1 4068 2025-03-03 06:56:31.329 2025-03-03 06:56:31.329 423234 15588 423253 18430 1 4069 2025-03-09 15:10:20.468 2025-03-09 15:10:20.468 423252 12951 431031 9611 1 4070 2025-03-03 12:10:19.037 2025-03-03 12:10:19.037 423254 1352 423487 2963 1 4071 2025-03-03 07:28:46.938 2025-03-03 07:28:46.938 423284 676 423286 6578 1 4072 2025-03-03 21:43:20.454 2025-03-03 21:43:20.454 423413 6687 424193 11220 1 4073 2025-03-03 07:37:17.084 2025-03-03 07:37:17.084 423288 16440 423290 7395 1 4074 2025-03-03 07:54:55.2 2025-03-03 07:54:55.2 423295 4602 423296 20310 1 4075 2025-03-03 10:55:00.045 2025-03-03 10:55:00.045 423312 21373 423410 696 1 4076 2025-03-03 13:53:03.37 2025-03-03 13:53:03.37 423615 928 423626 10484 1 4077 2025-03-03 16:10:27.399 2025-03-03 16:10:27.399 423797 14169 423812 14271 1 4078 2025-03-03 19:54:17.218 2025-03-03 19:54:17.218 423362 20912 424054 2508 3 4079 2025-03-03 16:26:42.591 2025-03-03 16:26:42.591 423362 20912 423838 17209 2 4080 2025-03-03 11:22:09.602 2025-03-03 11:22:09.602 423362 20912 423437 19446 1 4081 2025-03-03 21:23:11.802 2025-03-03 21:23:11.802 423362 20912 424173 9184 3 4082 2025-03-04 01:33:30.388 2025-03-04 01:33:30.388 423362 20912 424338 18772 1 4083 2025-03-03 14:49:23.879 2025-03-03 14:49:23.879 423362 20912 423706 8535 1 4084 2025-03-03 14:50:11.543 2025-03-03 14:50:11.543 423362 20912 423709 17824 2 4085 2025-03-03 18:19:11.124 2025-03-03 18:19:11.124 423378 20717 423942 21532 1 4086 2025-03-03 23:22:56.362 2025-03-03 23:22:56.362 423378 20717 424249 1745 2 4087 2025-03-03 23:18:37.936 2025-03-03 23:18:37.936 423378 20717 424242 8423 1 4088 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 423384 21555 424408 12049 16 4089 2025-03-03 20:31:56.013 2025-03-03 20:31:56.013 423384 21555 424099 15060 11 4090 2025-03-03 19:52:36.539 2025-03-03 19:52:36.539 423384 21555 424049 8245 8 4091 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 423384 21555 424401 14990 13 4092 2025-03-03 13:31:32.464 2025-03-03 13:31:32.464 423384 21555 423601 21373 4 4093 2025-03-03 19:39:46.836 2025-03-03 19:39:46.836 423384 21555 424037 18901 7 4094 2025-03-03 20:28:10.099 2025-03-03 20:28:10.099 423384 21555 424094 21734 10 4095 2025-03-03 19:24:31.174 2025-03-03 19:24:31.174 423384 21555 424015 1454 6 4096 2025-03-03 20:19:40.617 2025-03-03 20:19:40.617 423384 21555 424082 9337 9 4097 2025-03-03 13:26:57.077 2025-03-03 13:26:57.077 423384 21555 423593 19759 2 4098 2025-03-03 13:28:33.21 2025-03-03 13:28:33.21 423384 21555 423595 15119 3 4099 2025-03-03 19:18:02.353 2025-03-03 19:18:02.353 423384 21555 424009 20337 5 4100 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 423384 21555 424382 18743 12 4101 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 423384 21555 424403 21263 14 4102 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 423384 21555 424405 844 15 4103 2025-03-03 13:51:45.621 2025-03-03 13:51:45.621 423384 21555 423625 4862 1 4104 2025-03-03 13:25:11.455 2025-03-03 13:25:11.455 423384 21555 423591 14650 1 4105 2025-03-03 13:53:03.37 2025-03-03 13:53:03.37 423468 16270 423626 10484 3 4106 2025-03-03 12:21:13.952 2025-03-03 12:21:13.952 423468 16270 423499 18274 1 4107 2025-03-03 13:42:06.816 2025-03-03 13:42:06.816 423468 16270 423614 12368 1 4108 2025-03-03 12:27:41.812 2025-03-03 12:27:41.812 423468 16270 423504 17541 1 4109 2025-03-03 12:05:12.184 2025-03-03 12:05:12.184 423468 16270 423485 7978 1 4110 2025-03-03 13:44:50.118 2025-03-03 13:44:50.118 423468 16270 423616 6393 2 4111 2025-03-03 13:42:54.828 2025-03-03 13:42:54.828 423468 16270 423615 928 2 4112 2025-03-03 23:23:06.93 2025-03-03 23:23:06.93 423468 16270 424250 1740 2 4113 2025-03-12 01:03:53.785 2025-03-12 01:03:53.785 423475 16353 434506 4388 1 4114 2025-03-12 01:05:41.019 2025-03-12 01:05:41.019 423475 16353 434507 1609 2 4115 2025-03-12 03:04:14.874 2025-03-12 03:04:14.874 423475 16353 434567 15732 2 4116 2025-03-03 13:22:44.135 2025-03-03 13:22:44.135 423475 16353 423587 4314 1 4117 2025-03-03 14:56:06.444 2025-03-03 14:56:06.444 423475 16353 423720 6717 1 4118 2025-03-03 13:44:50.118 2025-03-03 13:44:50.118 423485 7978 423616 6393 1 4119 2025-03-04 02:51:17.72 2025-03-04 02:51:17.72 423492 18426 424363 19537 1 4120 2025-03-04 05:14:48.279 2025-03-04 05:14:48.279 423492 18426 424430 17722 3 4121 2025-03-04 04:44:44.502 2025-03-04 04:44:44.502 423492 18426 424414 654 2 4122 2025-03-03 22:02:28.777 2025-03-03 22:02:28.777 423505 4250 424209 21803 1 4123 2025-03-03 12:41:05.97 2025-03-03 12:41:05.97 423512 20479 423522 4754 1 4124 2025-03-03 12:47:28.94 2025-03-03 12:47:28.94 423512 20479 423536 6419 1 4125 2025-03-03 13:58:07.477 2025-03-03 13:58:07.477 423620 1124 423641 8648 1 4126 2025-03-03 23:19:25.53 2025-03-03 23:19:25.53 423663 11523 424244 770 4 4127 2025-03-03 22:06:51.605 2025-03-03 22:06:51.605 423663 11523 424211 21334 2 4128 2025-03-03 21:46:19.811 2025-03-03 21:46:19.811 423663 11523 424195 10291 1 4129 2025-03-03 22:36:36.802 2025-03-03 22:36:36.802 423663 11523 424224 19759 3 4130 2025-03-04 00:51:25.925 2025-03-04 00:51:25.925 423667 5497 424328 21825 9 4131 2025-03-04 00:56:49.401 2025-03-04 00:56:49.401 423667 5497 424331 4074 10 4132 2025-03-03 20:05:39.144 2025-03-03 20:05:39.144 423667 5497 424070 21539 4 4133 2025-03-04 02:13:03.468 2025-03-04 02:13:03.468 423667 5497 424348 20179 9 4134 2025-03-04 02:15:24.016 2025-03-04 02:15:24.016 423667 5497 424350 14939 7 4135 2025-03-03 18:40:35.573 2025-03-03 18:40:35.573 423667 5497 423968 13143 5 4136 2025-03-03 18:00:02.023 2025-03-03 18:00:02.023 423667 5497 423925 18241 4 4137 2025-03-03 15:06:16.798 2025-03-03 15:06:16.798 423667 5497 423736 6573 3 4138 2025-03-03 17:17:10.079 2025-03-03 17:17:10.079 423667 5497 423895 4062 3 4139 2025-03-03 14:47:33.067 2025-03-03 14:47:33.067 423667 5497 423704 6393 2 4140 2025-03-03 14:39:11.996 2025-03-03 14:39:11.996 423667 5497 423687 16250 1 4141 2025-03-03 18:34:19.846 2025-03-03 18:34:19.846 423667 5497 423958 21833 4 4142 2025-03-03 17:24:42.258 2025-03-03 17:24:42.258 423667 5497 423899 14774 2 4143 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 423667 5497 424161 2529 15 4144 2025-03-03 21:39:51.623 2025-03-03 21:39:51.623 423667 5497 424187 21238 2 4145 2025-03-04 00:32:59.19 2025-03-04 00:32:59.19 423667 5497 424307 2583 7 4146 2025-03-04 00:41:48.656 2025-03-04 00:41:48.656 423667 5497 424319 21804 8 4147 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 423667 5497 424388 5057 15 4148 2025-03-03 21:43:16.681 2025-03-03 21:43:16.681 423667 5497 424192 2832 6 4149 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 423667 5497 424447 16680 15 4150 2025-03-03 21:12:44.54 2025-03-03 21:12:44.54 423667 5497 424163 4538 3 4151 2025-03-03 15:07:57.537 2025-03-03 15:07:57.537 423667 5497 423739 21051 1 4152 2025-03-03 15:42:15.47 2025-03-03 15:42:15.47 423667 5497 423784 15484 2 4153 2025-03-03 20:17:39.282 2025-03-03 20:17:39.282 423667 5497 424080 21412 10 4154 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 423667 5497 424158 2195 14 4155 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 423667 5497 424311 2513 14 4156 2025-03-03 18:49:58.514 2025-03-03 18:49:58.514 423667 5497 423977 5359 6 4157 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 423667 5497 424149 5725 13 4158 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 423667 5497 424153 16839 13 4159 2025-03-03 15:13:47.946 2025-03-03 15:13:47.946 423667 5497 423747 21412 1 4160 2025-03-03 18:42:45.855 2025-03-03 18:42:45.855 423667 5497 423971 16747 5 4161 2025-03-03 19:18:19.929 2025-03-03 19:18:19.929 423667 5497 424011 21044 4 4162 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 423667 5497 424130 21430 12 4163 2025-03-03 18:30:18.078 2025-03-03 18:30:18.078 423667 5497 423956 21418 3 4164 2025-03-03 14:40:07.065 2025-03-03 14:40:07.065 423667 5497 423689 19829 1 4165 2025-03-03 16:02:48.674 2025-03-03 16:02:48.674 423667 5497 423804 14650 3 4166 2025-03-03 19:38:54.083 2025-03-03 19:38:54.083 423667 5497 424036 10638 5 4167 2025-03-03 20:33:05.582 2025-03-03 20:33:05.582 423667 5497 424101 20603 6 4168 2025-03-03 18:16:00.397 2025-03-03 18:16:00.397 423667 5497 423938 11328 2 4169 2025-03-03 19:52:45.905 2025-03-03 19:52:45.905 423667 5497 424050 17064 4 4170 2025-03-03 21:05:21.159 2025-03-03 21:05:21.159 423667 5497 424157 20381 5 4171 2025-03-03 21:00:55.404 2025-03-03 21:00:55.404 423667 5497 424151 21825 2 4172 2025-03-03 17:15:58.478 2025-03-03 17:15:58.478 423667 5497 423891 8376 1 4173 2025-03-03 21:14:48.248 2025-03-03 21:14:48.248 423667 5497 424165 21620 1 4174 2025-03-03 21:42:01.979 2025-03-03 21:42:01.979 423667 5497 424190 16270 1 4175 2025-03-03 15:38:43.72 2025-03-03 15:38:43.72 423667 5497 423777 16214 2 4176 2025-03-04 01:26:39.917 2025-03-04 01:26:39.917 423667 5497 424336 12516 1 4177 2025-03-03 19:05:05.634 2025-03-03 19:05:05.634 423667 5497 423990 11073 7 4178 2025-03-03 19:15:36.194 2025-03-03 19:15:36.194 423667 5497 424003 20454 8 4179 2025-03-03 19:32:08.352 2025-03-03 19:32:08.352 423667 5497 424024 20912 9 4180 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 423667 5497 424123 1433 12 4181 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 423667 5497 424323 17411 14 4182 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 423667 5497 424386 1173 14 4183 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 423667 5497 424413 20939 15 4184 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 423667 5497 424186 18608 16 4185 2025-03-03 21:09:30.844 2025-03-03 21:09:30.844 423667 5497 424160 14385 11 4186 2025-03-03 20:36:29.113 2025-03-03 20:36:29.113 423667 5497 424111 3979 11 4187 2025-03-04 04:13:20.918 2025-03-04 04:13:20.918 423667 5497 424402 666 2 4188 2025-03-03 21:16:51.213 2025-03-03 21:16:51.213 423667 5497 424166 761 1 4189 2025-03-03 22:56:30.679 2025-03-03 22:56:30.679 423667 5497 424231 12774 7 4190 2025-03-03 16:21:24.52 2025-03-03 16:21:24.52 423667 5497 423831 11038 1 4191 2025-03-03 19:38:38.529 2025-03-03 19:38:38.529 423667 5497 424035 1552 3 4192 2025-03-03 19:38:38.529 2025-03-03 19:38:38.529 423831 11038 424035 1552 2 4193 2025-03-03 18:16:00.397 2025-03-03 18:16:00.397 423831 11038 423938 11328 1 4194 2025-03-03 19:52:45.905 2025-03-03 19:52:45.905 423831 11038 424050 17064 3 4195 2025-03-03 21:05:21.159 2025-03-03 21:05:21.159 423831 11038 424157 20381 4 4196 2025-03-03 21:00:55.404 2025-03-03 21:00:55.404 423831 11038 424151 21825 1 4197 2025-03-03 23:05:59.928 2025-03-03 23:05:59.928 423681 16747 424234 12334 6 4198 2025-03-03 15:46:03.095 2025-03-03 15:46:03.095 423681 16747 423788 16638 1 4199 2025-03-03 19:15:38.281 2025-03-03 19:15:38.281 423681 16747 424004 18557 4 4200 2025-03-03 19:09:18.87 2025-03-03 19:09:18.87 423681 16747 423997 21412 3 4201 2025-03-03 17:03:53.15 2025-03-03 17:03:53.15 423681 16747 423880 17517 2 4202 2025-03-03 16:12:11.411 2025-03-03 16:12:11.411 423681 16747 423814 20911 1 4203 2025-03-03 16:04:41.296 2025-03-03 16:04:41.296 423681 16747 423805 5978 2 4204 2025-03-03 20:57:16.347 2025-03-03 20:57:16.347 423681 16747 424143 822 5 4205 2025-03-03 17:21:28.912 2025-03-03 17:21:28.912 423682 1044 423898 12356 1 4206 2025-03-03 21:27:29.347 2025-03-03 21:27:29.347 423701 5003 424176 19735 1 4207 2025-03-03 21:23:11.802 2025-03-03 21:23:11.802 423709 17824 424173 9184 1 4208 2025-03-09 12:12:28.609 2025-03-09 12:12:28.609 430726 6687 430748 17275 3 4209 2025-03-09 14:24:40.146 2025-03-09 14:24:40.146 430726 6687 430946 21577 1 4210 2025-03-09 12:07:28.356 2025-03-09 12:07:28.356 430726 6687 430732 989 2 4211 2025-03-09 13:14:05.37 2025-03-09 13:14:05.37 430726 6687 430853 9347 4 4212 2025-03-09 12:05:45.799 2025-03-09 12:05:45.799 430726 6687 430729 1425 1 4213 2025-03-09 13:13:13.784 2025-03-09 13:13:13.784 430726 6687 430851 5359 4 4214 2025-03-09 14:46:07.744 2025-03-09 14:46:07.744 430726 6687 430977 7979 5 4215 2025-03-09 13:16:39.062 2025-03-09 13:16:39.062 430726 6687 430857 866 5 4216 2025-03-09 14:25:20.942 2025-03-09 14:25:20.942 430726 6687 430947 11789 6 4217 2025-03-03 21:12:44.54 2025-03-03 21:12:44.54 423784 15484 424163 4538 1 4218 2025-03-03 23:05:59.928 2025-03-03 23:05:59.928 423788 16638 424234 12334 5 4219 2025-03-03 19:15:38.281 2025-03-03 19:15:38.281 423788 16638 424004 18557 3 4220 2025-03-03 19:09:18.87 2025-03-03 19:09:18.87 423788 16638 423997 21412 2 4221 2025-03-03 16:04:41.296 2025-03-03 16:04:41.296 423788 16638 423805 5978 1 4222 2025-03-03 20:57:16.347 2025-03-03 20:57:16.347 423788 16638 424143 822 4 4223 2025-03-03 23:24:02.064 2025-03-03 23:24:02.064 423789 685 424252 17953 2 4224 2025-03-03 15:59:43.148 2025-03-03 15:59:43.148 423789 685 423801 15160 1 4225 2025-03-03 16:05:01.783 2025-03-03 16:05:01.783 423789 685 423807 651 2 4226 2025-03-04 04:58:23.892 2025-03-04 04:58:23.892 423789 685 424423 7899 3 4227 2025-03-03 16:20:55.999 2025-03-03 16:20:55.999 423789 685 423829 9177 1 4228 2025-03-03 21:12:51.126 2025-03-03 21:12:51.126 423712 19189 424164 19346 1 4229 2025-03-04 02:04:37.856 2025-03-04 02:04:37.856 423712 19189 424346 17639 2 4230 2025-03-03 16:54:29.382 2025-03-03 16:54:29.382 423712 19189 423872 8448 1 4231 2025-03-13 06:00:29.038 2025-03-13 06:00:29.038 435924 20681 435940 20102 1 4232 2025-03-13 07:30:57.456 2025-03-13 07:30:57.456 435924 20681 435976 21494 1 4233 2025-03-13 09:52:18.188 2025-03-13 09:52:18.188 435924 20681 436083 4602 1 4234 2025-03-13 05:34:20.959 2025-03-13 05:34:20.959 435924 20681 435928 9655 1 4235 2025-03-13 05:52:42.469 2025-03-13 05:52:42.469 435924 20681 435937 929 2 4236 2025-03-13 06:48:58.117 2025-03-13 06:48:58.117 435924 20681 435960 775 3 4237 2025-03-13 10:37:10.86 2025-03-13 10:37:10.86 435924 20681 436123 19905 2 4238 2025-03-13 13:07:45.621 2025-03-13 13:07:45.621 435925 21803 436306 1745 2 4239 2025-03-13 13:12:49.175 2025-03-13 13:12:49.175 435925 21803 436313 9356 3 4240 2025-03-13 10:58:46.487 2025-03-13 10:58:46.487 435925 21803 436157 20019 1 4241 2025-03-03 19:54:17.218 2025-03-03 19:54:17.218 423838 17209 424054 2508 1 4242 2025-03-15 04:16:01.904 2025-03-15 04:16:01.904 437893 16126 437972 14015 1 4243 2025-03-03 20:05:39.144 2025-03-03 20:05:39.144 423736 6573 424070 21539 1 4244 2025-03-03 23:56:33.56 2025-03-03 23:56:33.56 423740 21275 424283 15049 2 4245 2025-03-03 23:46:12.04 2025-03-03 23:46:12.04 423740 21275 424277 663 1 4246 2025-03-04 00:37:03.365 2025-03-04 00:37:03.365 423740 21275 424312 19016 3 4247 2025-03-03 21:36:55.006 2025-03-03 21:36:55.006 423917 16154 424184 1745 3 4248 2025-03-04 00:35:00.868 2025-03-04 00:35:00.868 423917 16154 424308 16769 2 4249 2025-03-03 19:33:43.398 2025-03-03 19:33:43.398 423917 16154 424025 20187 1 4250 2025-03-03 23:48:47.95 2025-03-03 23:48:47.95 423917 16154 424280 19494 1 4251 2025-03-03 19:35:43.059 2025-03-03 19:35:43.059 423917 16154 424030 16660 2 4252 2025-03-03 20:36:16.273 2025-03-03 20:36:16.273 423917 16154 424110 20683 3 4253 2025-03-03 21:37:33.345 2025-03-03 21:37:33.345 423928 2437 424185 14168 7 4254 2025-03-03 21:34:53.243 2025-03-03 21:34:53.243 423928 2437 424183 20026 6 4255 2025-03-03 19:10:25.018 2025-03-03 19:10:25.018 423928 2437 423999 12808 4 4256 2025-03-03 19:07:09.822 2025-03-03 19:07:09.822 423928 2437 423993 20768 3 4257 2025-03-03 21:32:51.066 2025-03-03 21:32:51.066 423928 2437 424182 1985 5 4258 2025-03-03 18:38:29.576 2025-03-03 18:38:29.576 423928 2437 423962 18529 2 4259 2025-03-03 20:34:19.634 2025-03-03 20:34:19.634 423928 2437 424104 9426 3 4260 2025-03-03 20:44:50.034 2025-03-03 20:44:50.034 423928 2437 424124 9363 1 4261 2025-03-04 00:02:49.731 2025-03-04 00:02:49.731 423928 2437 424289 21296 4 4262 2025-03-04 00:01:23.219 2025-03-04 00:01:23.219 423928 2437 424286 6260 3 4263 2025-03-04 01:35:53.954 2025-03-04 01:35:53.954 423928 2437 424339 761 3 4264 2025-03-04 00:35:42.2 2025-03-04 00:35:42.2 423928 2437 424310 2013 9 4265 2025-03-04 00:32:34.079 2025-03-04 00:32:34.079 423928 2437 424306 2342 8 4266 2025-03-04 00:19:31.903 2025-03-04 00:19:31.903 423928 2437 424300 20754 7 4267 2025-03-07 14:42:06.008 2025-03-07 14:42:06.008 423928 2437 428719 1307 4 4268 2025-03-07 14:15:30.622 2025-03-07 14:15:30.622 423928 2437 428697 1489 3 4269 2025-03-04 01:22:50.317 2025-03-04 01:22:50.317 423928 2437 424335 7510 2 4270 2025-03-04 16:39:53.691 2025-03-04 16:39:53.691 423928 2437 425235 20674 2 4271 2025-03-04 16:33:51.357 2025-03-04 16:33:51.357 423928 2437 425225 13921 1 4272 2025-03-03 22:53:32.187 2025-03-03 22:53:32.187 423928 2437 424229 902 5 4273 2025-03-03 21:40:23.982 2025-03-03 21:40:23.982 423928 2437 424188 18468 8 4274 2025-03-03 21:48:56.141 2025-03-03 21:48:56.141 423928 2437 424200 11609 9 4275 2025-03-03 18:49:50.529 2025-03-03 18:49:50.529 423928 2437 423976 15075 2 4276 2025-03-03 23:34:18.294 2025-03-03 23:34:18.294 423928 2437 424266 10493 2 4277 2025-03-03 23:55:05.787 2025-03-03 23:55:05.787 423928 2437 424282 12774 3 4278 2025-03-04 00:00:33.572 2025-03-04 00:00:33.572 423928 2437 424285 19777 4 4279 2025-03-04 00:09:39.636 2025-03-04 00:09:39.636 423928 2437 424294 5069 5 4280 2025-03-04 00:17:25.557 2025-03-04 00:17:25.557 423928 2437 424299 21373 6 4281 2025-03-04 00:40:28.815 2025-03-04 00:40:28.815 423928 2437 424317 18068 1 4282 2025-03-04 03:49:39.296 2025-03-04 03:49:39.296 423928 2437 424393 15588 3 4283 2025-03-03 18:46:50.844 2025-03-03 18:46:50.844 423928 2437 423974 17817 1 4284 2025-03-03 23:28:58.797 2025-03-03 23:28:58.797 423928 2437 424260 2789 1 4285 2025-03-03 20:41:42.6 2025-03-03 20:41:42.6 423928 2437 424121 13547 4 4286 2025-03-03 18:26:37.463 2025-03-03 18:26:37.463 423928 2437 423951 18330 1 4287 2025-03-04 03:57:47.499 2025-03-04 03:57:47.499 423954 616 424396 17535 1 4288 2025-03-04 02:57:22.732 2025-03-04 02:57:22.732 423954 616 424365 20811 1 4289 2025-03-03 21:18:04.744 2025-03-03 21:18:04.744 423954 616 424168 2514 1 4290 2025-03-04 02:33:59.277 2025-03-04 02:33:59.277 423954 616 424356 2724 1 4291 2025-03-07 10:36:40.744 2025-03-07 10:36:40.744 426030 9169 428487 4287 1 4292 2025-03-03 23:30:04.372 2025-03-03 23:30:04.372 423743 9107 424261 12870 1 4293 2025-03-03 16:41:45.543 2025-03-03 16:41:45.543 423743 9107 423856 15336 1 4294 2025-03-04 00:02:56.105 2025-03-04 00:02:56.105 423743 9107 424290 15624 1 4295 2025-03-04 03:08:33.267 2025-03-04 03:08:33.267 423743 9107 424377 15858 1 4296 2025-03-04 00:51:45.746 2025-03-04 00:51:45.746 423743 9107 424329 16747 1 4297 2025-03-04 00:51:21.092 2025-03-04 00:51:21.092 423743 9107 424326 917 2 4298 2025-03-03 22:01:32.657 2025-03-03 22:01:32.657 423750 17535 424207 21242 3 4299 2025-03-03 23:24:02.064 2025-03-03 23:24:02.064 423750 17535 424252 17953 3 4300 2025-03-03 23:25:22.515 2025-03-03 23:25:22.515 423750 17535 424254 9845 2 4301 2025-03-04 04:54:07.672 2025-03-04 04:54:07.672 423750 17535 424418 20904 2 4302 2025-03-04 03:09:26.456 2025-03-04 03:09:26.456 423750 17535 424378 21427 1 4303 2025-03-03 15:46:14.097 2025-03-03 15:46:14.097 423750 17535 423789 685 1 4304 2025-03-03 17:39:34.295 2025-03-03 17:39:34.295 423750 17535 423905 3478 1 4305 2025-03-03 15:59:43.148 2025-03-03 15:59:43.148 423750 17535 423801 15160 2 4306 2025-03-03 16:09:30.1 2025-03-03 16:09:30.1 423750 17535 423811 9242 1 4307 2025-03-03 16:05:01.783 2025-03-03 16:05:01.783 423750 17535 423807 651 3 4308 2025-03-04 04:58:23.892 2025-03-04 04:58:23.892 423750 17535 424423 7899 4 4309 2025-03-03 16:20:55.999 2025-03-03 16:20:55.999 423750 17535 423829 9177 2 4310 2025-03-03 16:14:28.132 2025-03-03 16:14:28.132 423750 17535 423819 6393 2 4311 2025-03-03 22:02:31.916 2025-03-03 22:02:31.916 423750 17535 424210 14650 4 4312 2025-03-03 23:19:54.711 2025-03-03 23:19:54.711 423750 17535 424246 780 5 4313 2025-03-04 00:01:24.716 2025-03-04 00:01:24.716 423750 17535 424287 17693 3 4314 2025-03-07 03:40:43.145 2025-03-07 03:40:43.145 428284 6602 428285 9275 1 4315 2025-03-07 03:41:33.241 2025-03-07 03:41:33.241 428284 6602 428286 4238 1 4316 2025-03-07 08:21:59.655 2025-03-07 08:21:59.655 428284 6602 428395 20993 2 4317 2025-03-04 04:58:23.892 2025-03-04 04:58:23.892 423807 651 424423 7899 1 4318 2025-03-03 16:23:14.306 2025-03-03 16:23:14.306 423818 16259 423835 16842 1 4319 2025-03-03 22:01:32.657 2025-03-03 22:01:32.657 423819 6393 424207 21242 1 4320 2025-03-03 22:02:31.916 2025-03-03 22:02:31.916 423819 6393 424210 14650 2 4321 2025-03-03 23:19:54.711 2025-03-03 23:19:54.711 423819 6393 424246 780 3 4322 2025-03-03 18:41:41.951 2025-03-03 18:41:41.951 423823 11153 423970 21058 1 4323 2025-03-04 02:04:37.856 2025-03-04 02:04:37.856 424164 19346 424346 17639 1 4324 2025-03-03 17:49:14.318 2025-03-03 17:49:14.318 423874 19484 423912 15119 1 4325 2025-03-04 00:51:25.925 2025-03-04 00:51:25.925 423895 4062 424328 21825 6 4326 2025-03-04 00:56:49.401 2025-03-04 00:56:49.401 423895 4062 424331 4074 7 4327 2025-03-04 02:13:03.468 2025-03-04 02:13:03.468 423895 4062 424348 20179 6 4328 2025-03-04 02:15:24.016 2025-03-04 02:15:24.016 423895 4062 424350 14939 4 4329 2025-03-03 18:40:35.573 2025-03-03 18:40:35.573 423895 4062 423968 13143 2 4330 2025-03-03 18:00:02.023 2025-03-03 18:00:02.023 423895 4062 423925 18241 1 4331 2025-03-04 00:32:59.19 2025-03-04 00:32:59.19 423895 4062 424307 2583 4 4332 2025-03-04 00:41:48.656 2025-03-04 00:41:48.656 423895 4062 424319 21804 5 4333 2025-03-03 21:43:16.681 2025-03-03 21:43:16.681 423895 4062 424192 2832 3 4334 2025-03-03 23:25:22.515 2025-03-03 23:25:22.515 423905 3478 424254 9845 1 4335 2025-03-04 00:01:24.716 2025-03-04 00:01:24.716 423905 3478 424287 17693 2 4336 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 424080 21412 424161 2529 5 4337 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 424080 21412 424388 5057 5 4338 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 424080 21412 424447 16680 5 4339 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 424080 21412 424158 2195 4 4340 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 424080 21412 424311 2513 4 4341 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 424080 21412 424149 5725 3 4342 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 424080 21412 424153 16839 3 4343 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 424080 21412 424130 21430 2 4344 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 424080 21412 424123 1433 2 4345 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 424080 21412 424323 17411 4 4346 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 424080 21412 424386 1173 4 4347 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 424080 21412 424413 20939 5 4348 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 424080 21412 424186 18608 6 4349 2025-03-03 21:09:30.844 2025-03-03 21:09:30.844 424080 21412 424160 14385 1 4350 2025-03-03 20:36:29.113 2025-03-03 20:36:29.113 424080 21412 424111 3979 1 4351 2025-03-06 16:21:49.407 2025-03-06 16:21:49.407 427311 8400 427780 1723 1 4352 2025-03-04 02:59:26.448 2025-03-04 02:59:26.448 423955 6148 424369 15180 2 4353 2025-03-03 19:58:36.125 2025-03-03 19:58:36.125 423955 6148 424059 19484 1 4354 2025-03-03 23:55:03.909 2025-03-03 23:55:03.909 423955 6148 424281 20588 2 4355 2025-03-03 23:48:08.991 2025-03-03 23:48:08.991 423955 6148 424279 2195 1 4356 2025-03-04 02:18:55.413 2025-03-04 02:18:55.413 423955 6148 424351 11866 1 4357 2025-03-04 01:35:53.954 2025-03-04 01:35:53.954 423976 15075 424339 761 1 4358 2025-03-03 23:25:19.231 2025-03-03 23:25:19.231 423986 13038 424253 8173 1 4359 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 424158 2195 424161 2529 1 4360 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 424158 2195 424186 18608 2 4361 2025-03-03 21:37:33.345 2025-03-03 21:37:33.345 424183 20026 424185 14168 1 4362 2025-03-03 21:40:23.982 2025-03-03 21:40:23.982 424183 20026 424188 18468 2 4363 2025-03-03 21:48:56.141 2025-03-03 21:48:56.141 424183 20026 424200 11609 3 4364 2025-03-15 04:39:14.799 2025-03-15 04:39:14.799 437958 9494 437980 20826 1 4365 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 423990 11073 424161 2529 8 4366 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 423990 11073 424388 5057 8 4367 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 423990 11073 424447 16680 8 4368 2025-03-03 20:17:39.282 2025-03-03 20:17:39.282 423990 11073 424080 21412 3 4369 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 423990 11073 424158 2195 7 4370 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 423990 11073 424311 2513 7 4371 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 423990 11073 424149 5725 6 4372 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 423990 11073 424153 16839 6 4373 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 423990 11073 424130 21430 5 4374 2025-03-03 19:15:36.194 2025-03-03 19:15:36.194 423990 11073 424003 20454 1 4375 2025-03-03 19:32:08.352 2025-03-03 19:32:08.352 423990 11073 424024 20912 2 4376 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 423990 11073 424123 1433 5 4377 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 423990 11073 424323 17411 7 4378 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 423990 11073 424386 1173 7 4379 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 423990 11073 424413 20939 8 4380 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 423990 11073 424186 18608 9 4381 2025-03-03 21:09:30.844 2025-03-03 21:09:30.844 423990 11073 424160 14385 4 4382 2025-03-03 20:36:29.113 2025-03-03 20:36:29.113 423990 11073 424111 3979 4 4383 2025-03-03 22:53:32.187 2025-03-03 22:53:32.187 423999 12808 424229 902 1 4384 2025-03-03 23:05:59.928 2025-03-03 23:05:59.928 424004 18557 424234 12334 2 4385 2025-03-03 20:57:16.347 2025-03-03 20:57:16.347 424004 18557 424143 822 1 4386 2025-03-03 21:36:55.006 2025-03-03 21:36:55.006 424030 16660 424184 1745 1 4387 2025-03-03 20:36:16.273 2025-03-03 20:36:16.273 424030 16660 424110 20683 1 4388 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 424037 18901 424408 12049 9 4389 2025-03-03 20:31:56.013 2025-03-03 20:31:56.013 424037 18901 424099 15060 4 4390 2025-03-03 19:52:36.539 2025-03-03 19:52:36.539 424037 18901 424049 8245 1 4391 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 424037 18901 424401 14990 6 4392 2025-03-03 20:28:10.099 2025-03-03 20:28:10.099 424037 18901 424094 21734 3 4393 2025-03-03 20:19:40.617 2025-03-03 20:19:40.617 424037 18901 424082 9337 2 4394 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 424037 18901 424382 18743 5 4395 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 424037 18901 424403 21263 7 4396 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 424037 18901 424405 844 8 4397 2025-03-09 15:09:32.682 2025-03-09 15:09:32.682 426555 16747 431021 987 1 4398 2025-03-03 20:01:20.494 2025-03-03 20:01:20.494 424046 20788 424064 19796 1 4399 2025-03-03 21:05:21.159 2025-03-03 21:05:21.159 424050 17064 424157 20381 1 4400 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 424094 21734 424408 12049 6 4401 2025-03-03 20:31:56.013 2025-03-03 20:31:56.013 424094 21734 424099 15060 1 4402 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 424094 21734 424401 14990 3 4403 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 424094 21734 424382 18743 2 4404 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 424094 21734 424403 21263 4 4405 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 424094 21734 424405 844 5 4406 2025-03-03 22:56:30.679 2025-03-03 22:56:30.679 424101 20603 424231 12774 1 4407 2025-03-03 22:44:26.625 2025-03-03 22:44:26.625 424115 1803 424227 2789 1 4408 2025-03-03 22:46:44.535 2025-03-03 22:46:44.535 424115 1803 424228 21365 2 4409 2025-03-03 21:48:56.141 2025-03-03 21:48:56.141 424188 18468 424200 11609 1 4410 2025-03-04 00:51:22.293 2025-03-04 00:51:22.293 424220 11417 424327 21389 1 4411 2025-03-04 03:54:58.157 2025-03-04 03:54:58.157 424220 11417 424395 7772 1 4412 2025-03-04 00:07:17.314 2025-03-04 00:07:17.314 424220 11417 424291 706 2 4413 2025-03-03 23:35:39.06 2025-03-03 23:35:39.06 424220 11417 424268 19842 1 4414 2025-03-04 03:04:30.049 2025-03-04 03:04:30.049 424230 21791 424373 10821 1 4415 2025-03-12 05:23:18.1 2025-03-12 05:23:18.1 424230 21791 434649 19796 1 4416 2025-03-04 09:50:47.823 2025-03-04 09:50:47.823 424591 16789 424666 3400 1 4417 2025-03-04 09:14:54.173 2025-03-04 09:14:54.173 424591 16789 424619 1428 2 4418 2025-03-04 09:16:48.016 2025-03-04 09:16:48.016 424591 16789 424625 21422 3 4419 2025-03-04 08:55:39.022 2025-03-04 08:55:39.022 424591 16789 424596 2528 1 4420 2025-03-04 02:37:40.552 2025-03-04 02:37:40.552 424235 20840 424357 14168 1 4421 2025-03-04 02:58:29.814 2025-03-04 02:58:29.814 424235 20840 424368 21768 2 4422 2025-03-04 00:41:10.692 2025-03-04 00:41:10.692 424235 20840 424318 642 1 4423 2025-03-04 04:29:41.639 2025-03-04 04:29:41.639 424235 20840 424407 3377 1 4424 2025-03-06 22:39:49.817 2025-03-06 22:39:49.817 427318 10342 428157 17838 1 4425 2025-03-19 19:53:47.877 2025-03-19 19:53:47.877 444143 937 444340 16633 7 4426 2025-03-19 20:03:08.232 2025-03-19 20:03:08.232 444143 937 444351 2233 9 4427 2025-03-19 19:47:12.523 2025-03-19 19:47:12.523 444143 937 444332 5809 6 4428 2025-03-19 18:50:54.18 2025-03-19 18:50:54.18 444143 937 444289 3506 5 4429 2025-03-19 18:46:10.174 2025-03-19 18:46:10.174 444143 937 444277 9184 4 4430 2025-03-19 18:11:16.996 2025-03-19 18:11:16.996 444143 937 444207 1620 2 4431 2025-03-19 17:33:23.532 2025-03-19 17:33:23.532 444143 937 444150 20674 1 4432 2025-03-19 18:13:37.246 2025-03-19 18:13:37.246 444143 937 444213 2088 3 4433 2025-03-19 20:00:02.534 2025-03-19 20:00:02.534 444143 937 444348 19535 8 4434 2022-09-11 18:26:53.62 2022-09-11 18:26:53.62 1322 13198 1323 5761 1 4435 2025-03-03 23:27:07.683 2025-03-03 23:27:07.683 424236 15488 424256 20778 1 4436 2025-03-03 23:18:46.062 2025-03-03 23:18:46.062 424236 15488 424243 12277 1 4437 2025-03-03 23:55:05.787 2025-03-03 23:55:05.787 424266 10493 424282 12774 1 4438 2025-03-04 00:00:33.572 2025-03-04 00:00:33.572 424266 10493 424285 19777 2 4439 2025-03-04 00:09:39.636 2025-03-04 00:09:39.636 424266 10493 424294 5069 3 4440 2025-03-04 00:17:25.557 2025-03-04 00:17:25.557 424266 10493 424299 21373 4 4441 2025-03-04 00:02:49.731 2025-03-04 00:02:49.731 424266 10493 424289 21296 2 4442 2025-03-04 00:01:23.219 2025-03-04 00:01:23.219 424266 10493 424286 6260 1 4443 2025-03-04 00:35:42.2 2025-03-04 00:35:42.2 424266 10493 424310 2013 7 4444 2025-03-04 00:32:34.079 2025-03-04 00:32:34.079 424266 10493 424306 2342 6 4445 2025-03-04 00:19:31.903 2025-03-04 00:19:31.903 424266 10493 424300 20754 5 4446 2025-03-03 23:55:03.909 2025-03-03 23:55:03.909 424279 2195 424281 20588 1 4447 2025-03-04 00:00:33.572 2025-03-04 00:00:33.572 424282 12774 424285 19777 1 4448 2025-03-04 00:09:39.636 2025-03-04 00:09:39.636 424282 12774 424294 5069 2 4449 2025-03-04 00:17:25.557 2025-03-04 00:17:25.557 424282 12774 424299 21373 3 4450 2025-03-04 00:35:42.2 2025-03-04 00:35:42.2 424282 12774 424310 2013 6 4451 2025-03-04 00:32:34.079 2025-03-04 00:32:34.079 424282 12774 424306 2342 5 4452 2025-03-04 00:19:31.903 2025-03-04 00:19:31.903 424282 12774 424300 20754 4 4453 2025-03-04 00:17:25.557 2025-03-04 00:17:25.557 424294 5069 424299 21373 1 4454 2025-03-04 00:35:42.2 2025-03-04 00:35:42.2 424294 5069 424310 2013 4 4455 2025-03-04 00:32:34.079 2025-03-04 00:32:34.079 424294 5069 424306 2342 3 4456 2025-03-04 00:19:31.903 2025-03-04 00:19:31.903 424294 5069 424300 20754 2 4457 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 424311 2513 424447 16680 1 4458 2025-03-04 09:16:48.016 2025-03-04 09:16:48.016 424619 1428 424625 21422 1 4459 2022-09-13 14:11:59.104 2022-09-13 14:11:59.104 1357 2942 1380 8870 2 4460 2022-09-13 19:20:52.66 2022-09-13 19:20:52.66 1357 2942 1404 4831 1 4461 2022-09-14 13:30:05.663 2022-09-14 13:30:05.663 1357 2942 1430 16301 2 4462 2022-09-13 15:40:06.354 2022-09-13 15:40:06.354 1357 2942 1389 690 1 4463 2022-09-18 11:06:29.888 2022-09-18 11:06:29.888 1357 2942 1520 7869 1 4464 2022-09-13 13:45:33.621 2022-09-13 13:45:33.621 1357 2942 1375 1624 1 4465 2022-09-13 19:43:15.457 2022-09-13 19:43:15.457 1357 2942 1406 15282 2 4466 2022-09-13 19:51:23.469 2022-09-13 19:51:23.469 1357 2942 1408 16954 2 4467 2022-09-14 08:49:39.127 2022-09-14 08:49:39.127 1357 2942 1421 837 1 4468 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 424323 17411 424388 5057 1 4469 2025-03-04 03:49:39.296 2025-03-04 03:49:39.296 424335 7510 424393 15588 1 4470 2025-03-04 02:59:26.448 2025-03-04 02:59:26.448 424351 11866 424369 15180 1 4471 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 424386 1173 424413 20939 1 4472 2025-03-04 13:30:17.531 2025-03-04 13:30:17.531 424671 1433 424911 20495 1 4473 2025-03-06 22:42:48.871 2025-03-06 22:42:48.871 427448 685 428159 1564 1 4474 2025-03-24 10:28:36.031 2025-03-24 10:28:36.031 450946 1620 450977 8289 1 4475 2025-03-24 14:37:09.499 2025-03-24 14:37:09.499 450946 1620 451411 9843 2 4476 2025-03-05 09:37:48.007 2025-03-05 09:37:48.007 424725 21421 425928 7899 1 4477 2025-03-04 14:07:44.334 2025-03-04 14:07:44.334 424754 7510 424965 21620 1 4478 2025-03-06 16:53:12.071 2025-03-06 16:53:12.071 427555 14385 427818 1751 1 4479 2025-03-06 14:03:47.496 2025-03-06 14:03:47.496 427567 909 427581 9833 1 4480 2025-03-04 14:04:07.52 2025-03-04 14:04:07.52 424890 6594 424958 1825 1 4481 2025-03-07 14:42:06.008 2025-03-07 14:42:06.008 425235 20674 428719 1307 2 4482 2025-03-07 14:15:30.622 2025-03-07 14:15:30.622 425235 20674 428697 1489 1 4483 2025-03-06 06:28:17.122 2025-03-06 06:28:17.122 425873 2327 427147 20829 2 4484 2025-03-05 18:48:22.012 2025-03-05 18:48:22.012 425873 2327 426664 8380 1 4485 2025-03-05 22:06:28.719 2025-03-05 22:06:28.719 425873 2327 426896 687 2 4486 2025-03-07 08:21:59.655 2025-03-07 08:21:59.655 428286 4238 428395 20993 1 4487 2025-03-06 15:13:45.937 2025-03-06 15:13:45.937 427652 716 427697 2710 2 4488 2025-03-06 15:09:23.896 2025-03-06 15:09:23.896 427652 716 427692 1697 1 4489 2025-03-11 20:27:00.093 2025-03-11 20:27:00.093 426587 980 434363 14705 1 4490 2025-03-07 08:02:48.242 2025-03-07 08:02:48.242 426587 980 428385 11144 1 4491 2025-03-11 21:46:55.618 2025-03-11 21:46:55.618 426587 980 434423 2776 2 4492 2025-03-09 15:09:30.23 2025-03-09 15:09:30.23 426736 900 431020 20892 1 4493 2025-03-06 12:06:47.63 2025-03-06 12:06:47.63 427456 20864 427468 11378 1 4494 2025-03-06 18:13:04.077 2025-03-06 18:13:04.077 427833 7773 427945 7960 1 4495 2025-03-10 21:27:43.783 2025-03-10 21:27:43.783 432920 21166 433194 929 6 4496 2025-03-10 19:08:57.822 2025-03-10 19:08:57.822 432920 21166 433041 6202 5 4497 2025-03-10 18:58:01.069 2025-03-10 18:58:01.069 432920 21166 433032 15521 3 4498 2025-03-10 18:12:17.266 2025-03-10 18:12:17.266 432920 21166 432992 1124 2 4499 2025-03-10 22:04:38.222 2025-03-10 22:04:38.222 432920 21166 433240 9992 2 4500 2025-03-10 22:11:21.23 2025-03-10 22:11:21.23 432920 21166 433247 6030 2 4501 2025-03-12 16:37:54.738 2025-03-12 16:37:54.738 432920 21166 435387 5112 7 4502 2025-03-13 00:51:56.809 2025-03-13 00:51:56.809 432920 21166 435780 679 8 4503 2025-03-10 19:00:29.979 2025-03-10 19:00:29.979 432920 21166 433034 18449 4 4504 2025-03-10 19:10:09.947 2025-03-10 19:10:09.947 432920 21166 433042 7674 1 4505 2025-03-10 20:51:24.967 2025-03-10 20:51:24.967 432920 21166 433160 21803 1 4506 2025-03-10 18:04:04.382 2025-03-10 18:04:04.382 432920 21166 432980 669 1 4507 2025-03-11 05:06:46.259 2025-03-11 05:06:46.259 432920 21166 433437 19488 3 4508 2025-03-10 20:08:48.635 2025-03-10 20:08:48.635 432920 21166 433123 4177 1 4509 2025-03-10 21:59:21.691 2025-03-10 21:59:21.691 432920 21166 433232 2528 2 4510 2025-03-12 07:17:35.835 2025-03-12 07:17:35.835 432920 21166 434705 20619 3 4511 2025-03-10 21:31:14.971 2025-03-10 21:31:14.971 432920 21166 433198 9242 2 4512 2025-03-10 21:18:02.141 2025-03-10 21:18:02.141 432920 21166 433186 12561 1 4513 2025-03-10 21:44:15.527 2025-03-10 21:44:15.527 432920 21166 433206 14280 1 4514 2025-03-12 05:04:54.922 2025-03-12 05:04:54.922 432920 21166 434638 9341 1 4515 2025-03-13 23:20:25.048 2025-03-13 23:20:25.048 432920 21166 436816 1785 2 4516 2025-03-15 02:26:16.914 2025-03-15 02:26:16.914 432920 21166 437950 891 3 4517 2025-03-13 21:04:00.627 2025-03-13 21:04:00.627 432920 21166 436721 15463 1 4518 2025-03-10 23:27:29.869 2025-03-10 23:27:29.869 432920 21166 433296 664 3 4519 2025-03-11 00:01:17.369 2025-03-11 00:01:17.369 432920 21166 433311 1632 2 4520 2025-03-10 21:46:39.688 2025-03-10 21:46:39.688 432920 21166 433212 19992 2 4521 2025-03-13 19:19:56.626 2025-03-13 19:19:56.626 432920 21166 436671 16097 1 4522 2025-03-10 23:39:57.789 2025-03-10 23:39:57.789 432920 21166 433299 19980 1 4523 2025-03-07 10:33:14.6 2025-03-07 10:33:14.6 427568 7966 428484 1060 1 4524 2025-03-09 15:09:16.714 2025-03-09 15:09:16.714 428276 673 431015 21091 1 4525 2025-03-15 01:26:16.879 2025-03-15 01:26:16.879 435919 21014 437924 7913 1 4526 2025-03-06 08:16:20.351 2025-03-06 08:16:20.351 426811 21520 427228 1162 1 4527 2022-09-13 12:01:41.323 2022-09-13 12:01:41.323 1360 16912 1366 2492 1 4528 2022-09-13 17:48:58.652 2022-09-13 17:48:58.652 1360 16912 1398 11018 2 4529 2022-09-13 14:11:59.104 2022-09-13 14:11:59.104 1375 1624 1380 8870 1 4530 2025-03-09 15:09:27.208 2025-03-09 15:09:27.208 426814 1890 431019 1705 1 4531 2025-03-13 11:10:36.869 2025-03-13 11:10:36.869 426954 4115 436168 1638 1 4532 2025-03-06 00:07:08.306 2025-03-06 00:07:08.306 426954 4115 426964 1424 1 4533 2025-03-09 15:35:13.883 2025-03-09 15:35:13.883 427054 8416 431135 940 1 4534 2025-03-09 15:09:22.331 2025-03-09 15:09:22.331 427771 8376 431017 20858 1 4535 2025-03-06 17:28:42.031 2025-03-06 17:28:42.031 427109 9262 427867 19217 1 4536 2025-03-06 18:23:49.242 2025-03-06 18:23:49.242 427109 9262 427963 3213 2 4537 2025-03-06 11:53:08.166 2025-03-06 11:53:08.166 427246 17157 427448 685 1 4538 2025-03-06 22:39:49.817 2025-03-06 22:39:49.817 427246 17157 428157 17838 2 4539 2025-03-06 22:42:48.871 2025-03-06 22:42:48.871 427246 17157 428159 1564 2 4540 2025-03-06 09:29:22.585 2025-03-06 09:29:22.585 427246 17157 427284 5809 1 4541 2025-03-06 10:14:45.729 2025-03-06 10:14:45.729 427246 17157 427318 10342 1 4542 2025-03-06 10:00:36.779 2025-03-06 10:00:36.779 427253 10291 427304 6137 1 4543 2025-03-06 14:03:47.496 2025-03-06 14:03:47.496 427253 10291 427581 9833 3 4544 2025-03-06 13:51:26.457 2025-03-06 13:51:26.457 427253 10291 427569 2342 1 4545 2025-03-06 13:49:24.023 2025-03-06 13:49:24.023 427253 10291 427567 909 2 4546 2025-03-06 16:48:50.305 2025-03-06 16:48:50.305 427306 11038 427814 15925 1 4547 2025-03-09 15:09:24.974 2025-03-09 15:09:24.974 427379 4415 431018 13574 1 4548 2025-03-06 19:34:57.583 2025-03-06 19:34:57.583 427389 10690 428036 20180 1 4549 2025-03-07 05:14:58.828 2025-03-07 05:14:58.828 427515 21398 428319 20623 1 4550 2025-03-06 14:47:18.195 2025-03-06 14:47:18.195 427636 1596 427647 21042 1 4551 2022-09-30 20:47:50.367 2022-09-30 20:47:50.367 1970 4570 1997 797 1 4552 2025-03-06 18:47:55.027 2025-03-06 18:47:55.027 427739 11417 427983 12736 1 4553 2025-03-19 20:04:42.879 2025-03-19 20:04:42.879 444137 18901 444353 10698 1 4554 2025-03-06 22:56:05.012 2025-03-06 22:56:05.012 427775 672 428171 17522 1 4555 2025-03-06 20:33:46.694 2025-03-06 20:33:46.694 427775 672 428074 886 1 4556 2025-03-09 15:09:19.576 2025-03-09 15:09:19.576 427795 2577 431016 1495 1 4557 2025-03-06 21:51:35.685 2025-03-06 21:51:35.685 427798 21379 428129 15091 2 4558 2025-03-06 18:08:47.433 2025-03-06 18:08:47.433 427798 21379 427937 16387 1 4559 2025-03-06 20:39:42.657 2025-03-06 20:39:42.657 427798 21379 428077 1008 1 4560 2025-03-06 21:29:11.13 2025-03-06 21:29:11.13 427806 1723 428116 10096 1 4561 2025-03-06 21:40:23.952 2025-03-06 21:40:23.952 427820 21131 428125 20979 1 4562 2022-10-01 15:28:50.693 2022-10-01 15:28:50.693 2011 3504 2019 20523 1 4563 2025-03-09 15:12:06.128 2025-03-09 15:12:06.128 427912 20353 431047 20939 1 4564 2025-03-07 10:47:38.221 2025-03-07 10:47:38.221 427934 19263 428493 14122 3 4565 2025-03-06 19:42:34.011 2025-03-06 19:42:34.011 427934 19263 428041 805 2 4566 2025-03-06 18:26:25.432 2025-03-06 18:26:25.432 427934 19263 427966 11153 1 4567 2025-03-06 22:58:43.601 2025-03-06 22:58:43.601 427934 19263 428174 861 1 4568 2025-03-06 23:34:00.634 2025-03-06 23:34:00.634 427934 19263 428189 4862 1 4569 2025-03-06 23:39:41.988 2025-03-06 23:39:41.988 427934 19263 428194 9438 2 4570 2025-03-06 22:35:57.97 2025-03-06 22:35:57.97 427934 19263 428154 13174 1 4571 2025-03-07 10:49:15.864 2025-03-07 10:49:15.864 427934 19263 428494 866 3 4572 2025-03-07 10:47:18.089 2025-03-07 10:47:18.089 427934 19263 428492 759 1 4573 2025-03-07 11:35:03.604 2025-03-07 11:35:03.604 428123 17722 428531 1717 1 4574 2025-03-07 10:49:15.864 2025-03-07 10:49:15.864 428194 9438 428494 866 1 4575 2025-03-06 18:47:43.476 2025-03-06 18:47:43.476 427960 641 427982 17682 1 4576 2025-03-06 18:51:53.898 2025-03-06 18:51:53.898 427960 641 427988 19138 1 4577 2025-03-06 19:01:38.763 2025-03-06 19:01:38.763 427960 641 428002 7818 2 4578 2025-03-09 15:17:57.909 2025-03-09 15:17:57.909 427972 20023 431075 897 1 4579 2025-03-06 19:01:38.763 2025-03-06 19:01:38.763 427988 19138 428002 7818 1 4580 2022-10-02 17:12:29.416 2022-10-02 17:12:29.416 2080 7675 2096 16176 1 4581 2022-10-07 01:52:55.621 2022-10-07 01:52:55.621 2186 15806 2258 18101 1 4582 2022-10-05 11:53:09.439 2022-10-05 11:53:09.439 2186 15806 2194 8080 3 4583 2022-10-05 12:09:50.987 2022-10-05 12:09:50.987 2186 15806 2195 20683 2 4584 2022-10-05 11:38:14.169 2022-10-05 11:38:14.169 2186 15806 2193 7654 2 4585 2022-10-05 10:50:06.071 2022-10-05 10:50:06.071 2186 15806 2188 14465 1 4586 2025-03-12 19:02:41.395 2025-03-12 19:02:41.395 435339 7772 435532 17095 1 4587 2025-03-06 22:28:34.537 2025-03-06 22:28:34.537 428025 1761 428150 7587 1 4588 2025-03-06 22:43:39.145 2025-03-06 22:43:39.145 428037 661 428160 11897 1 4589 2025-03-07 10:47:38.221 2025-03-07 10:47:38.221 428041 805 428493 14122 1 4590 2025-03-06 22:50:18.882 2025-03-06 22:50:18.882 428052 1469 428169 3213 1 4591 2025-03-06 21:48:28.665 2025-03-06 21:48:28.665 428054 15103 428128 8729 1 4592 2025-03-06 23:09:34.346 2025-03-06 23:09:34.346 428054 15103 428181 11018 1 4593 2025-03-07 10:23:52.116 2025-03-07 10:23:52.116 428473 3506 428476 628 1 4594 2025-03-07 11:31:49.884 2025-03-07 11:31:49.884 428473 3506 428528 12721 2 4595 2025-03-06 21:51:35.685 2025-03-06 21:51:35.685 428077 1008 428129 15091 1 4596 2025-03-07 04:38:31.7 2025-03-07 04:38:31.7 428241 8326 428302 18865 1 4597 2025-03-07 03:56:04.09 2025-03-07 03:56:04.09 428274 19806 428294 17976 1 4598 2022-10-23 15:45:37.052 2022-10-23 15:45:37.052 3017 780 3020 8242 1 4599 2025-03-07 15:26:02.783 2025-03-07 15:26:02.783 428308 1881 428764 13798 3 4600 2025-03-07 14:43:57.856 2025-03-07 14:43:57.856 428308 1881 428722 15100 1 4601 2025-03-07 14:47:34.05 2025-03-07 14:47:34.05 428308 1881 428724 1705 2 4602 2025-03-07 11:32:10.734 2025-03-07 11:32:10.734 428308 1881 428529 663 1 4603 2025-03-07 10:38:19.558 2025-03-07 10:38:19.558 428340 2016 428488 7668 1 4604 2025-03-09 15:09:14.142 2025-03-09 15:09:14.142 428348 21485 431014 11491 1 4605 2025-03-07 09:59:35.918 2025-03-07 09:59:35.918 428368 17064 428458 711 1 4606 2025-03-07 17:37:21.274 2025-03-07 17:37:21.274 428368 17064 428889 9341 1 4607 2025-03-07 15:18:26.158 2025-03-07 15:18:26.158 428742 8289 428761 7654 1 4608 2025-03-07 11:28:24.672 2025-03-07 11:28:24.672 428371 16970 428525 663 2 4609 2025-03-07 08:38:35.366 2025-03-07 08:38:35.366 428371 16970 428403 1261 1 4610 2025-03-07 10:19:08.291 2025-03-07 10:19:08.291 428422 4173 428473 3506 1 4611 2025-03-07 11:31:49.884 2025-03-07 11:31:49.884 428422 4173 428528 12721 3 4612 2025-03-07 10:24:32.283 2025-03-07 10:24:32.283 428422 4173 428477 5306 1 4613 2025-03-07 10:23:52.116 2025-03-07 10:23:52.116 428422 4173 428476 628 2 4614 2025-03-07 10:22:14.749 2025-03-07 10:22:14.749 428426 1692 428474 20525 2 4615 2025-03-07 10:11:50.73 2025-03-07 10:11:50.73 428426 1692 428469 19821 1 4616 2025-03-07 11:23:49.021 2025-03-07 11:23:49.021 428426 1692 428522 21083 3 4617 2025-03-14 14:53:29.588 2025-03-14 14:53:29.588 437371 16684 437479 18734 1 4618 2025-03-14 16:08:31.338 2025-03-14 16:08:31.338 437371 16684 437564 1003 2 4619 2025-03-14 16:32:23.171 2025-03-14 16:32:23.171 437371 16684 437585 17162 3 4620 2025-03-07 11:40:52.873 2025-03-07 11:40:52.873 428481 13566 428536 12736 1 4621 2025-03-07 10:56:19.928 2025-03-07 10:56:19.928 428491 12821 428502 20245 1 4622 2025-03-07 11:28:55.52 2025-03-07 11:28:55.52 428498 20669 428526 10611 1 4623 2025-03-07 13:51:48.615 2025-03-07 13:51:48.615 428498 20669 428665 2327 2 4624 2025-03-07 15:54:30.826 2025-03-07 15:54:30.826 428521 2010 428800 1584 1 4625 2025-03-09 15:09:06.596 2025-03-09 15:09:06.596 428609 20906 431012 11450 1 4626 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 428644 672 428687 11395 1 4627 2025-03-09 14:00:13.001 2025-03-09 14:00:13.001 428658 1745 430908 2196 1 4628 2025-03-07 14:31:33.56 2025-03-07 14:31:33.56 428662 14688 428714 17050 1 4629 2025-03-09 15:47:40.548 2025-03-09 15:47:40.548 431152 9355 431153 656 1 4630 2025-03-07 15:18:14.311 2025-03-07 15:18:14.311 428684 917 428759 8570 1 4631 2025-03-11 16:27:17.757 2025-03-11 16:27:17.757 428684 917 434163 20481 1 4632 2025-03-07 15:26:02.783 2025-03-07 15:26:02.783 428724 1705 428764 13798 1 4633 2025-03-07 14:47:39.507 2025-03-07 14:47:39.507 428725 1740 428726 21501 1 4634 2025-03-07 15:49:25.083 2025-03-07 15:49:25.083 428739 12277 428793 21393 1 4635 2022-10-23 18:53:17.563 2022-10-23 18:53:17.563 3035 16988 3037 725 1 4636 2022-10-24 12:28:40.627 2022-10-24 12:28:40.627 3035 16988 3068 8289 5 4637 2022-10-24 06:55:22.723 2022-10-24 06:55:22.723 3035 16988 3060 21349 4 4638 2022-10-23 19:10:34.094 2022-10-23 19:10:34.094 3035 16988 3039 19826 2 4639 2022-10-23 20:00:31.066 2022-10-23 20:00:31.066 3035 16988 3042 1617 3 4640 2025-03-07 17:02:57.113 2025-03-07 17:02:57.113 428818 16406 428866 21485 1 4641 2025-03-07 17:54:22.174 2025-03-07 17:54:22.174 428888 19668 428911 1740 1 4642 2025-03-09 15:16:35.515 2025-03-09 15:16:35.515 429199 12483 431070 1429 2 4643 2025-03-09 15:08:59.145 2025-03-09 15:08:59.145 429199 12483 431009 1352 1 4644 2025-03-09 15:31:48.07 2025-03-09 15:31:48.07 430337 714 431126 16598 1 4645 2025-03-08 20:52:39.2 2025-03-08 20:52:39.2 429517 8648 430127 951 1 4646 2025-03-09 12:27:05.781 2025-03-09 12:27:05.781 429517 8648 430787 20220 1 4647 2025-03-09 15:19:09.519 2025-03-09 15:19:09.519 429559 18219 431078 19570 1 4648 2025-03-09 15:08:55.185 2025-03-09 15:08:55.185 429570 20642 431008 21603 1 4649 2025-03-09 14:52:14.706 2025-03-09 14:52:14.706 429764 20775 430989 20019 1 4650 2025-03-08 19:53:26.969 2025-03-08 19:53:26.969 429764 20775 430059 1245 2 4651 2025-03-08 17:34:55.753 2025-03-08 17:34:55.753 429764 20775 429924 13132 1 4652 2025-03-09 14:37:11.294 2025-03-09 14:37:11.294 429764 20775 430966 14452 3 4653 2025-03-09 14:39:31.23 2025-03-09 14:39:31.23 429764 20775 430969 13177 2 4654 2025-03-09 15:05:39.291 2025-03-09 15:05:39.291 429764 20775 430999 20781 1 4655 2025-03-09 06:48:29.032 2025-03-09 06:48:29.032 429764 20775 430417 9036 1 4656 2025-03-08 18:13:32.413 2025-03-08 18:13:32.413 429958 17109 429982 9364 2 4657 2025-03-08 19:07:20.156 2025-03-08 19:07:20.156 429958 17109 430020 11670 3 4658 2025-03-08 19:32:09.451 2025-03-08 19:32:09.451 429958 17109 430038 13921 5 4659 2025-03-08 23:25:12.332 2025-03-08 23:25:12.332 429958 17109 430199 8376 5 4660 2025-03-08 23:26:49.765 2025-03-08 23:26:49.765 429958 17109 430201 19121 6 4661 2025-03-09 00:08:23.369 2025-03-09 00:08:23.369 429958 17109 430219 1603 7 4662 2025-03-08 23:26:31.134 2025-03-08 23:26:31.134 429958 17109 430200 21518 7 4663 2025-03-08 19:26:49.486 2025-03-08 19:26:49.486 429958 17109 430033 674 4 4664 2025-03-08 18:08:00.116 2025-03-08 18:08:00.116 429958 17109 429970 18069 1 4665 2025-03-08 19:34:05.061 2025-03-08 19:34:05.061 429958 17109 430039 769 6 4666 2025-03-09 14:37:11.294 2025-03-09 14:37:11.294 430059 1245 430966 14452 1 4667 2025-03-09 01:57:32.661 2025-03-09 01:57:32.661 430236 12976 430263 9334 1 4668 2025-03-09 07:11:33.064 2025-03-09 07:11:33.064 430258 2537 430439 11819 1 4669 2025-03-09 15:16:22.26 2025-03-09 15:16:22.26 430258 2537 431069 4650 1 4670 2025-03-09 14:41:51.176 2025-03-09 14:41:51.176 430605 9421 430971 8242 1 4671 2025-03-14 14:14:28.438 2025-03-14 14:14:28.438 437238 8269 437435 20555 1 4672 2025-03-14 15:59:40.874 2025-03-14 15:59:40.874 437238 8269 437562 9167 2 4673 2025-03-14 13:59:45.048 2025-03-14 13:59:45.048 437238 8269 437419 12821 1 4674 2025-03-15 02:40:28.846 2025-03-15 02:40:28.846 437238 8269 437954 8469 3 4675 2025-03-09 11:34:00.87 2025-03-09 11:34:00.87 430626 6687 430633 946 1 4676 2025-03-09 11:40:20.552 2025-03-09 11:40:20.552 430626 6687 430653 910 1 4677 2025-03-09 12:18:08.668 2025-03-09 12:18:08.668 430626 6687 430766 634 1 4678 2025-03-09 13:36:05.918 2025-03-09 13:36:05.918 430626 6687 430881 720 1 4679 2025-03-09 14:03:08.145 2025-03-09 14:03:08.145 430626 6687 430910 5017 1 4680 2025-03-09 14:37:08.736 2025-03-09 14:37:08.736 430626 6687 430965 16309 2 4681 2025-03-09 11:40:34.988 2025-03-09 11:40:34.988 430626 6687 430655 1823 1 4682 2025-03-09 14:34:54.74 2025-03-09 14:34:54.74 430626 6687 430961 18321 1 4683 2025-03-09 14:47:40.824 2025-03-09 14:47:40.824 430626 6687 430980 13467 1 4684 2025-03-09 14:10:45.443 2025-03-09 14:10:45.443 430916 20788 430925 9418 1 4685 2025-03-18 08:36:43.591 2025-03-18 08:36:43.591 441259 680 441677 18829 1 4686 2025-03-09 14:37:51.007 2025-03-09 14:37:51.007 430321 2492 430968 11716 1 4687 2025-03-09 14:25:37.025 2025-03-09 14:25:37.025 430331 1326 430948 21539 2 4688 2025-03-09 15:15:40.513 2025-03-09 15:15:40.513 430331 1326 431068 787 2 4689 2025-03-09 15:08:36.185 2025-03-09 15:08:36.185 430331 1326 431004 14857 1 4690 2025-03-09 12:07:04.025 2025-03-09 12:07:04.025 430331 1326 430731 3360 1 4691 2025-03-09 14:39:31.23 2025-03-09 14:39:31.23 430417 9036 430969 13177 1 4692 2025-03-09 15:50:48.664 2025-03-09 15:50:48.664 430488 20190 431164 13599 1 4693 2025-03-09 15:52:13.544 2025-03-09 15:52:13.544 431158 9337 431166 19569 1 4694 2025-03-09 15:35:20.648 2025-03-09 15:35:20.648 430530 4692 431136 1092 1 4695 2025-03-09 13:00:03.073 2025-03-09 13:00:03.073 430567 20599 430834 11819 1 4696 2025-03-09 14:22:06.417 2025-03-09 14:22:06.417 430567 20599 430941 13467 2 4697 2025-03-09 12:56:47.605 2025-03-09 12:56:47.605 430599 10270 430826 19332 1 4698 2025-03-09 14:46:31.291 2025-03-09 14:46:31.291 430607 20660 430979 3544 3 4699 2025-03-11 05:33:44.323 2025-03-11 05:33:44.323 430607 20660 433457 21427 7 4700 2025-03-09 13:20:23.381 2025-03-09 13:20:23.381 430607 20660 430863 14791 6 4701 2025-03-09 14:37:03.972 2025-03-09 14:37:03.972 430607 20660 430964 21400 1 4702 2025-03-09 11:46:43.909 2025-03-09 11:46:43.909 430607 20660 430674 20291 4 4703 2025-03-09 11:35:44.978 2025-03-09 11:35:44.978 430607 20660 430641 19375 2 4704 2025-03-09 11:25:01.582 2025-03-09 11:25:01.582 430607 20660 430617 16177 1 4705 2025-03-09 15:34:29.716 2025-03-09 15:34:29.716 430607 20660 431133 4633 1 4706 2025-03-09 14:39:43.869 2025-03-09 14:39:43.869 430607 20660 430970 20912 2 4707 2025-03-09 13:01:09.772 2025-03-09 13:01:09.772 430607 20660 430836 16842 5 4708 2025-03-09 11:44:51.024 2025-03-09 11:44:51.024 430607 20660 430670 4084 3 4709 2025-03-09 14:06:28.31 2025-03-09 14:06:28.31 430608 802 430915 2347 1 4710 2025-03-09 13:11:55.109 2025-03-09 13:11:55.109 430840 9351 430849 13753 1 4711 2025-03-09 14:25:37.025 2025-03-09 14:25:37.025 430731 3360 430948 21539 1 4712 2025-03-09 13:14:05.37 2025-03-09 13:14:05.37 430748 17275 430853 9347 1 4713 2025-03-09 13:13:13.784 2025-03-09 13:13:13.784 430748 17275 430851 5359 1 4714 2025-03-09 14:46:07.744 2025-03-09 14:46:07.744 430748 17275 430977 7979 2 4715 2025-03-09 13:16:39.062 2025-03-09 13:16:39.062 430748 17275 430857 866 2 4716 2025-03-09 14:25:20.942 2025-03-09 14:25:20.942 430748 17275 430947 11789 3 4717 2025-03-10 11:01:34.87 2025-03-10 11:01:34.87 432444 9109 432455 3342 1 4718 2025-03-13 07:29:22.738 2025-03-13 07:29:22.738 435950 1615 435975 16847 2 4719 2025-03-13 06:25:20.558 2025-03-13 06:25:20.558 435950 1615 435951 10490 1 4720 2025-03-13 07:24:59.757 2025-03-13 07:24:59.757 435950 1615 435972 9183 1 4721 2025-03-13 10:44:07.676 2025-03-13 10:44:07.676 435950 1615 436132 4763 3 4722 2025-03-09 14:51:11.674 2025-03-09 14:51:11.674 430771 21810 430987 11996 1 4723 2025-03-09 14:46:18.768 2025-03-09 14:46:18.768 430781 721 430978 21666 3 4724 2025-03-09 14:05:48.984 2025-03-09 14:05:48.984 430781 721 430912 2583 1 4725 2025-03-09 14:06:51.869 2025-03-09 14:06:51.869 430781 721 430917 5758 2 4726 2025-03-09 13:56:54.057 2025-03-09 13:56:54.057 430794 13399 430906 20849 1 4727 2025-03-09 14:42:13.139 2025-03-09 14:42:13.139 430794 13399 430972 20775 2 4728 2025-03-09 15:10:45.637 2025-03-09 15:10:45.637 430794 13399 431035 19857 3 4729 2025-03-09 14:06:03.674 2025-03-09 14:06:03.674 430824 20185 430914 866 1 4730 2025-03-09 15:05:17.386 2025-03-09 15:05:17.386 430824 20185 430998 4062 1 4731 2025-03-09 15:48:30.419 2025-03-09 15:48:30.419 430825 21332 431157 9426 1 4732 2025-03-09 15:24:42.614 2025-03-09 15:24:42.614 430928 18673 431089 5500 1 4733 2025-03-09 14:25:20.942 2025-03-09 14:25:20.942 430857 866 430947 11789 1 4734 2025-03-09 14:18:14.203 2025-03-09 14:18:14.203 430865 5308 430936 8664 1 4735 2025-03-09 15:09:40.366 2025-03-09 15:09:40.366 430867 4128 431023 9333 1 4736 2025-03-09 13:54:41.045 2025-03-09 13:54:41.045 430898 17082 430904 17109 3 4737 2025-03-09 13:51:36.305 2025-03-09 13:51:36.305 430898 17082 430902 19637 1 4738 2025-03-09 13:52:57.312 2025-03-09 13:52:57.312 430898 17082 430903 11648 2 4739 2025-03-10 21:27:43.783 2025-03-10 21:27:43.783 433041 6202 433194 929 1 4740 2025-03-12 16:37:54.738 2025-03-12 16:37:54.738 433041 6202 435387 5112 2 4741 2025-03-13 00:51:56.809 2025-03-13 00:51:56.809 433041 6202 435780 679 3 4742 2025-03-14 13:45:52.641 2025-03-14 13:45:52.641 437392 20717 437399 9537 1 4743 2025-03-11 18:35:36.174 2025-03-11 18:35:36.174 433816 17116 434279 5708 1 4744 2025-03-11 17:09:28.018 2025-03-11 17:09:28.018 434124 20734 434219 19952 1 4745 2025-03-12 16:39:02.442 2025-03-12 16:39:02.442 434124 20734 435389 992 1 4746 2025-03-09 14:09:34.617 2025-03-09 14:09:34.617 430919 15577 430921 20198 1 4747 2025-03-09 14:37:35.36 2025-03-09 14:37:35.36 430920 16769 430967 21734 1 4748 2025-03-13 09:08:02.516 2025-03-13 09:08:02.516 436022 14465 436039 21042 1 4749 2025-03-13 10:22:43.578 2025-03-13 10:22:43.578 436028 3456 436104 16594 2 4750 2025-03-13 10:15:20.551 2025-03-13 10:15:20.551 436028 3456 436097 19263 1 4751 2025-03-13 10:46:20.494 2025-03-13 10:46:20.494 436028 3456 436134 17183 6 4752 2025-03-13 10:34:56.928 2025-03-13 10:34:56.928 436028 3456 436120 880 5 4753 2025-03-13 14:24:25.354 2025-03-13 14:24:25.354 436028 3456 436392 4035 1 4754 2025-03-13 09:29:11.488 2025-03-13 09:29:11.488 436028 3456 436061 686 1 4755 2025-03-13 10:26:06.276 2025-03-13 10:26:06.276 436028 3456 436106 20852 2 4756 2025-03-13 10:27:12.671 2025-03-13 10:27:12.671 436028 3456 436108 18618 2 4757 2025-03-13 10:37:46.523 2025-03-13 10:37:46.523 436028 3456 436125 782 2 4758 2025-03-13 10:53:07.144 2025-03-13 10:53:07.144 436028 3456 436145 20603 1 4759 2025-03-13 10:55:53.961 2025-03-13 10:55:53.961 436028 3456 436150 6419 1 4760 2025-03-13 10:58:44.591 2025-03-13 10:58:44.591 436028 3456 436156 8541 1 4761 2025-03-13 12:18:46.908 2025-03-13 12:18:46.908 436028 3456 436252 18673 3 4762 2025-03-13 12:35:40.616 2025-03-13 12:35:40.616 436028 3456 436270 2596 6 4763 2025-03-13 12:40:18.014 2025-03-13 12:40:18.014 436028 3456 436275 9333 1 4764 2025-03-13 13:01:41.121 2025-03-13 13:01:41.121 436028 3456 436297 3213 7 4765 2025-03-13 14:19:46.32 2025-03-13 14:19:46.32 436028 3456 436388 20687 2 4766 2025-03-13 14:32:21.537 2025-03-13 14:32:21.537 436028 3456 436402 19117 1 4767 2025-03-13 15:27:17.926 2025-03-13 15:27:17.926 436028 3456 436483 691 6 4768 2025-03-13 15:07:30.102 2025-03-13 15:07:30.102 436028 3456 436449 1236 1 4769 2025-03-13 15:22:36.375 2025-03-13 15:22:36.375 436028 3456 436471 21222 4 4770 2025-03-13 16:15:50.016 2025-03-13 16:15:50.016 436028 3456 436534 9920 2 4771 2025-03-13 08:48:00.22 2025-03-13 08:48:00.22 436028 3456 436029 13378 1 4772 2025-03-13 08:50:53.081 2025-03-13 08:50:53.081 436028 3456 436031 647 2 4773 2025-03-13 09:25:53.776 2025-03-13 09:25:53.776 436028 3456 436059 20998 3 4774 2025-03-13 10:38:18.18 2025-03-13 10:38:18.18 436028 3456 436126 10986 6 4775 2025-03-13 10:52:45.202 2025-03-13 10:52:45.202 436028 3456 436143 19829 8 4776 2025-03-13 11:05:13.028 2025-03-13 11:05:13.028 436028 3456 436162 21091 8 4777 2025-03-13 11:11:29.666 2025-03-13 11:11:29.666 436028 3456 436169 17682 9 4778 2025-03-13 11:22:31.938 2025-03-13 11:22:31.938 436028 3456 436185 711 11 4779 2025-03-13 10:10:57.424 2025-03-13 10:10:57.424 436028 3456 436091 21119 5 4780 2025-03-13 09:12:19.774 2025-03-13 09:12:19.774 436028 3456 436045 17041 2 4781 2025-03-13 08:49:25.108 2025-03-13 08:49:25.108 436028 3456 436030 16177 1 4782 2025-03-13 09:20:37.319 2025-03-13 09:20:37.319 436028 3456 436052 19826 3 4783 2025-03-13 09:24:23.923 2025-03-13 09:24:23.923 436028 3456 436056 8380 4 4784 2025-03-13 09:30:03.493 2025-03-13 09:30:03.493 436028 3456 436064 19655 5 4785 2025-03-13 09:31:28.511 2025-03-13 09:31:28.511 436028 3456 436065 10352 4 4786 2025-03-13 10:26:44.849 2025-03-13 10:26:44.849 436028 3456 436107 21412 2 4787 2025-03-13 10:50:54.44 2025-03-13 10:50:54.44 436028 3456 436141 13406 7 4788 2025-03-13 11:13:23.154 2025-03-13 11:13:23.154 436028 3456 436171 20849 10 4789 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436028 3456 436196 21389 12 4790 2025-03-13 12:42:16.024 2025-03-13 12:42:16.024 436028 3456 436277 21208 6 4791 2025-03-13 09:33:39.207 2025-03-13 09:33:39.207 436028 3456 436067 10102 2 4792 2025-03-13 09:10:53.728 2025-03-13 09:10:53.728 436028 3456 436042 6430 1 4793 2025-03-13 10:16:36.712 2025-03-13 10:16:36.712 436028 3456 436100 7668 1 4794 2025-03-13 10:32:02.615 2025-03-13 10:32:02.615 436028 3456 436117 10536 4 4795 2025-03-13 09:06:32.588 2025-03-13 09:06:32.588 436028 3456 436037 17209 1 4796 2025-03-13 12:23:46.538 2025-03-13 12:23:46.538 436028 3456 436259 1620 4 4797 2025-03-13 08:52:46.351 2025-03-13 08:52:46.351 436028 3456 436033 5487 1 4798 2025-03-13 09:21:37.857 2025-03-13 09:21:37.857 436028 3456 436053 21647 1 4799 2025-03-13 09:38:43.112 2025-03-13 09:38:43.112 436028 3456 436072 3745 1 4800 2025-03-13 10:16:06.824 2025-03-13 10:16:06.824 436028 3456 436099 14731 2 4801 2025-03-13 10:27:58.122 2025-03-13 10:27:58.122 436028 3456 436109 21805 2 4802 2025-03-13 10:28:32.121 2025-03-13 10:28:32.121 436028 3456 436112 929 3 4803 2025-03-13 10:29:37.747 2025-03-13 10:29:37.747 436028 3456 436114 803 3 4804 2025-03-13 10:30:41.7 2025-03-13 10:30:41.7 436028 3456 436115 19303 1 4805 2025-03-13 12:29:03.875 2025-03-13 12:29:03.875 436028 3456 436263 717 5 4806 2025-03-13 12:24:14.011 2025-03-13 12:24:14.011 436028 3456 436260 4388 4 4807 2025-03-13 12:21:08.873 2025-03-13 12:21:08.873 436028 3456 436257 1697 3 4808 2025-03-13 12:31:11.828 2025-03-13 12:31:11.828 436028 3456 436265 19446 1 4809 2025-03-13 12:50:32.973 2025-03-13 12:50:32.973 436028 3456 436282 2327 7 4810 2025-03-13 13:42:31.536 2025-03-13 13:42:31.536 436028 3456 436343 20563 1 4811 2025-03-13 14:26:16.621 2025-03-13 14:26:16.621 436028 3456 436395 20225 1 4812 2025-03-13 14:26:41.395 2025-03-13 14:26:41.395 436028 3456 436396 20892 2 4813 2025-03-13 15:08:10.288 2025-03-13 15:08:10.288 436028 3456 436451 20713 3 4814 2025-03-13 15:10:55.627 2025-03-13 15:10:55.627 436028 3456 436455 1236 2 4815 2025-03-13 15:24:42.78 2025-03-13 15:24:42.78 436028 3456 436477 21072 5 4816 2025-03-13 15:36:41.372 2025-03-13 15:36:41.372 436028 3456 436498 687 2 4817 2025-03-13 16:17:31.818 2025-03-13 16:17:31.818 436028 3456 436537 1175 3 4818 2025-03-13 17:45:37.301 2025-03-13 17:45:37.301 436028 3456 436601 1047 1 4819 2025-03-13 18:07:47.211 2025-03-13 18:07:47.211 436028 3456 436617 13587 1 4820 2025-03-09 15:06:19.18 2025-03-09 15:06:19.18 430923 10818 431000 1483 1 4821 2025-03-09 14:49:02.642 2025-03-09 14:49:02.642 430943 18232 430982 21798 1 4822 2025-03-09 15:35:05.866 2025-03-09 15:35:05.866 430943 18232 431134 11450 1 4823 2025-03-09 14:28:54.207 2025-03-09 14:28:54.207 430949 9261 430955 5752 1 4824 2025-03-09 14:46:31.291 2025-03-09 14:46:31.291 430970 20912 430979 3544 1 4825 2025-03-09 15:16:43.527 2025-03-09 15:16:43.527 431028 12516 431071 21713 1 4826 2025-03-09 15:45:12.101 2025-03-09 15:45:12.101 431124 13249 431149 16282 4 4827 2025-03-09 15:44:32.258 2025-03-09 15:44:32.258 431124 13249 431147 20280 2 4828 2025-03-09 15:34:11.669 2025-03-09 15:34:11.669 431124 13249 431131 19581 1 4829 2025-03-09 15:42:49.473 2025-03-09 15:42:49.473 431124 13249 431142 18533 3 4830 2025-03-09 15:40:36.923 2025-03-09 15:40:36.923 431124 13249 431140 20871 2 4831 2025-03-09 15:48:28.236 2025-03-09 15:48:28.236 431138 21712 431156 16571 1 4832 2025-03-09 15:53:54.853 2025-03-09 15:53:54.853 431138 21712 431168 3642 2 4833 2025-03-12 11:54:33.41 2025-03-12 11:54:33.41 434652 21577 435005 9529 1 4834 2025-03-12 08:14:44.267 2025-03-12 08:14:44.267 434652 21577 434764 4754 1 4835 2025-03-12 10:56:31.403 2025-03-12 10:56:31.403 434676 9356 434938 21242 1 4836 2025-03-09 15:48:03.027 2025-03-09 15:48:03.027 431139 2156 431154 21631 1 4837 2025-03-09 16:01:15.786 2025-03-09 16:01:15.786 431150 15463 431175 4602 1 4838 2025-03-12 00:39:20.386 2025-03-12 00:39:20.386 434441 1959 434490 1488 1 4839 2025-03-12 04:07:08.403 2025-03-12 04:07:08.403 434441 1959 434607 6137 2 4840 2025-03-12 00:50:08.155 2025-03-12 00:50:08.155 434441 1959 434501 7916 1 4841 2025-03-13 10:33:51.642 2025-03-13 10:33:51.642 434441 1959 436119 5497 1 4842 2025-03-12 05:31:33.837 2025-03-12 05:31:33.837 434441 1959 434656 16695 1 4843 2025-03-13 09:33:39.207 2025-03-13 09:33:39.207 436030 16177 436067 10102 1 4844 2025-03-14 15:16:11.308 2025-03-14 15:16:11.308 437269 17183 437516 12609 1 4845 2025-03-15 09:22:45.241 2025-03-15 09:22:45.241 437269 17183 438127 20778 1 4846 2025-03-14 16:45:08.29 2025-03-14 16:45:08.29 437269 17183 437596 1488 2 4847 2025-03-12 14:59:23.513 2025-03-12 14:59:23.513 364096 981 435255 21413 1 4848 2025-03-12 11:21:57.617 2025-03-12 11:21:57.617 434498 18069 434966 9349 1 4849 2025-03-12 04:26:47.382 2025-03-12 04:26:47.382 434498 18069 434617 2492 1 4850 2025-03-12 07:31:58.876 2025-03-12 07:31:58.876 434498 18069 434720 959 1 4851 2025-03-12 12:32:37.525 2025-03-12 12:32:37.525 434498 18069 435048 20892 1 4852 2025-03-12 18:20:05.821 2025-03-12 18:20:05.821 434498 18069 435485 17552 2 4853 2025-03-12 02:51:17.525 2025-03-12 02:51:17.525 434498 18069 434557 16858 1 4854 2025-03-12 11:41:38.674 2025-03-12 11:41:38.674 434498 18069 434985 13753 2 4855 2025-03-12 12:01:38.338 2025-03-12 12:01:38.338 434498 18069 435015 20198 2 4856 2025-03-12 02:46:07.744 2025-03-12 02:46:07.744 434498 18069 434553 19857 1 4857 2025-03-12 04:42:06.796 2025-03-12 04:42:06.796 434610 17041 434628 19394 1 4858 2025-03-12 13:04:15.925 2025-03-12 13:04:15.925 434610 17041 435089 12222 2 4859 2025-03-12 11:28:10.328 2025-03-12 11:28:10.328 434610 17041 434972 14791 1 4860 2025-03-12 11:40:12.989 2025-03-12 11:40:12.989 434636 11522 434983 894 1 4861 2025-03-12 05:17:30.581 2025-03-12 05:17:30.581 434642 733 434643 11750 1 4862 2025-03-12 06:36:16.799 2025-03-12 06:36:16.799 434642 733 434682 7809 2 4863 2025-03-12 06:51:37.259 2025-03-12 06:51:37.259 434642 733 434691 641 1 4864 2025-03-12 08:07:43.611 2025-03-12 08:07:43.611 434642 733 434755 2016 3 4865 2025-03-12 08:08:21.647 2025-03-12 08:08:21.647 434642 733 434756 19524 4 4866 2025-03-12 10:16:36.37 2025-03-12 10:16:36.37 434642 733 434893 13854 3 4867 2025-03-12 09:23:51.816 2025-03-12 09:23:51.816 434642 733 434844 10862 6 4868 2025-03-12 08:45:45.059 2025-03-12 08:45:45.059 434642 733 434793 2342 5 4869 2025-03-12 09:52:12.592 2025-03-12 09:52:12.592 434642 733 434868 14688 2 4870 2025-03-12 12:10:36.551 2025-03-12 12:10:36.551 434642 733 435028 1389 2 4871 2025-03-12 11:42:20.781 2025-03-12 11:42:20.781 434642 733 434987 989 1 4872 2025-03-12 08:09:31.258 2025-03-12 08:09:31.258 434642 733 434758 654 2 4873 2025-03-12 08:38:55.005 2025-03-12 08:38:55.005 434642 733 434787 9705 1 4874 2025-03-12 10:16:03.402 2025-03-12 10:16:03.402 434642 733 434892 656 2 4875 2025-03-12 14:42:30.289 2025-03-12 14:42:30.289 434642 733 435229 21408 1 4876 2025-03-12 15:41:44.166 2025-03-12 15:41:44.166 434642 733 435326 20965 2 4877 2025-03-12 11:08:22.86 2025-03-12 11:08:22.86 434728 14037 434949 3745 1 4878 2025-03-13 10:32:41.286 2025-03-13 10:32:41.286 435576 686 436118 20337 2 4879 2025-03-13 02:30:51.159 2025-03-13 02:30:51.159 435576 686 435832 21408 1 4880 2025-03-12 11:32:25.823 2025-03-12 11:32:25.823 434807 720 434976 21514 1 4881 2025-03-12 10:13:50.272 2025-03-12 10:13:50.272 434807 720 434890 2361 1 4882 2025-03-12 08:55:02.683 2025-03-12 08:55:02.683 434807 720 434809 1549 1 4883 2025-03-13 10:35:12.039 2025-03-13 10:35:12.039 435646 20906 436121 902 1 4884 2025-03-13 10:43:54.516 2025-03-13 10:43:54.516 435646 20906 436131 9339 2 4885 2025-03-12 22:17:55.167 2025-03-12 22:17:55.167 435646 20906 435707 20788 1 4886 2025-03-13 01:00:36.471 2025-03-13 01:00:36.471 435646 20906 435787 909 2 4887 2025-03-12 15:15:43.304 2025-03-12 15:15:43.304 434971 16387 435278 20655 1 4888 2025-03-12 11:50:30.39 2025-03-12 11:50:30.39 434971 16387 434996 9200 1 4889 2025-03-13 10:44:07.676 2025-03-13 10:44:07.676 435975 16847 436132 4763 1 4890 2025-03-14 22:16:06.584 2025-03-14 22:16:06.584 437020 17095 437794 8726 1 4891 2025-03-14 18:07:36.03 2025-03-14 18:07:36.03 437044 12656 437655 15488 4 4892 2025-03-14 13:42:50.173 2025-03-14 13:42:50.173 437044 12656 437392 20717 3 4893 2025-03-14 16:32:47.325 2025-03-14 16:32:47.325 437044 12656 437586 1261 3 4894 2025-03-14 16:49:26.66 2025-03-14 16:49:26.66 437044 12656 437604 9351 4 4895 2025-03-14 16:29:11.583 2025-03-14 16:29:11.583 437044 12656 437579 14220 2 4896 2025-03-14 16:40:33.426 2025-03-14 16:40:33.426 437044 12656 437591 2233 3 4897 2025-03-14 09:59:03.538 2025-03-14 09:59:03.538 437044 12656 437078 19668 1 4898 2025-03-14 12:35:29.766 2025-03-14 12:35:29.766 437044 12656 437300 15488 1 4899 2025-03-14 15:35:35.912 2025-03-14 15:35:35.912 437044 12656 437542 1571 2 4900 2025-03-14 12:54:09.535 2025-03-14 12:54:09.535 437044 12656 437337 13217 1 4901 2025-03-14 13:07:06.145 2025-03-14 13:07:06.145 437044 12656 437356 1273 2 4902 2025-03-14 13:45:52.641 2025-03-14 13:45:52.641 437044 12656 437399 9537 4 4903 2025-03-14 15:57:54.565 2025-03-14 15:57:54.565 437044 12656 437560 19966 1 4904 2025-03-14 16:51:14.996 2025-03-14 16:51:14.996 437044 12656 437606 10690 5 4905 2025-03-14 16:35:03.651 2025-03-14 16:35:03.651 437044 12656 437588 10690 2 4906 2025-03-12 12:41:48.746 2025-03-12 12:41:48.746 435046 20681 435063 17411 1 4907 2025-03-12 12:46:37.914 2025-03-12 12:46:37.914 435046 20681 435072 11819 1 4908 2025-03-12 13:11:46.081 2025-03-12 13:11:46.081 435046 20681 435098 21239 1 4909 2025-03-12 13:34:02.801 2025-03-12 13:34:02.801 435046 20681 435122 18441 1 4910 2025-03-12 13:38:58.661 2025-03-12 13:38:58.661 435046 20681 435127 21042 1 4911 2025-03-12 13:41:07.468 2025-03-12 13:41:07.468 435046 20681 435132 12334 1 4912 2025-03-12 13:50:23.627 2025-03-12 13:50:23.627 435046 20681 435145 1469 2 4913 2025-03-12 13:53:16.566 2025-03-12 13:53:16.566 435046 20681 435149 4166 2 4914 2025-03-12 14:16:08.627 2025-03-12 14:16:08.627 435046 20681 435189 18068 3 4915 2025-03-12 14:23:12.036 2025-03-12 14:23:12.036 435046 20681 435200 760 3 4916 2025-03-12 14:32:06.56 2025-03-12 14:32:06.56 435046 20681 435212 1044 4 4917 2025-03-12 14:33:00.592 2025-03-12 14:33:00.592 435046 20681 435214 9985 3 4918 2025-03-12 14:42:34.831 2025-03-12 14:42:34.831 435046 20681 435230 15526 5 4919 2025-03-12 14:44:03.932 2025-03-12 14:44:03.932 435046 20681 435235 20817 5 4920 2025-03-12 14:46:47.587 2025-03-12 14:46:47.587 435046 20681 435238 11450 6 4921 2025-03-12 14:59:12.345 2025-03-12 14:59:12.345 435046 20681 435254 21647 6 4922 2025-03-12 16:25:51.839 2025-03-12 16:25:51.839 435046 20681 435372 18231 3 4923 2025-03-12 17:24:49.894 2025-03-12 17:24:49.894 435046 20681 435445 681 2 4924 2025-03-12 17:34:34.793 2025-03-12 17:34:34.793 435046 20681 435456 17673 3 4925 2025-03-12 19:38:41.032 2025-03-12 19:38:41.032 435046 20681 435566 3656 3 4926 2025-03-12 21:11:26.097 2025-03-12 21:11:26.097 435046 20681 435652 2961 7 4927 2025-03-12 21:12:44.588 2025-03-12 21:12:44.588 435046 20681 435654 19117 8 4928 2025-03-13 00:05:49.002 2025-03-13 00:05:49.002 435046 20681 435763 19980 4 4929 2025-03-13 02:54:51.952 2025-03-13 02:54:51.952 435046 20681 435844 13249 2 4930 2025-03-12 12:39:47.332 2025-03-12 12:39:47.332 435046 20681 435059 20980 1 4931 2025-03-12 13:31:14.213 2025-03-12 13:31:14.213 435046 20681 435119 6030 1 4932 2025-03-12 13:37:51.204 2025-03-12 13:37:51.204 435046 20681 435124 8505 2 4933 2025-03-12 13:44:49.825 2025-03-12 13:44:49.825 435046 20681 435137 2203 2 4934 2025-03-12 17:26:54.782 2025-03-12 17:26:54.782 435046 20681 435447 20969 2 4935 2025-03-12 23:55:14.453 2025-03-12 23:55:14.453 435046 20681 435759 17221 3 4936 2025-03-13 00:23:53.122 2025-03-13 00:23:53.122 435046 20681 435768 20691 4 4937 2025-03-13 01:55:59.127 2025-03-13 01:55:59.127 435046 20681 435821 2342 5 4938 2025-03-12 16:04:28.137 2025-03-12 16:04:28.137 435046 20681 435354 876 4 4939 2025-03-12 16:16:43.781 2025-03-12 16:16:43.781 435046 20681 435365 15544 1 4940 2025-03-12 19:58:44.626 2025-03-12 19:58:44.626 435046 20681 435589 9183 1 4941 2025-03-12 15:44:23.582 2025-03-12 15:44:23.582 435046 20681 435331 1316 2 4942 2025-03-12 15:52:16.31 2025-03-12 15:52:16.31 435046 20681 435347 4984 3 4943 2025-03-12 16:22:26.776 2025-03-12 16:22:26.776 435046 20681 435371 9184 5 4944 2025-03-12 16:22:10.219 2025-03-12 16:22:10.219 435046 20681 435370 20291 2 4945 2025-03-12 16:37:05.323 2025-03-12 16:37:05.323 435046 20681 435385 937 3 4946 2025-03-12 18:25:58.419 2025-03-12 18:25:58.419 435046 20681 435491 17535 1 4947 2025-03-12 15:27:29.318 2025-03-12 15:27:29.318 435046 20681 435303 760 3 4948 2025-03-13 02:43:54.245 2025-03-13 02:43:54.245 435046 20681 435838 638 6 4949 2025-03-12 14:10:42.922 2025-03-12 14:10:42.922 435046 20681 435180 16839 2 4950 2025-03-12 17:08:29.827 2025-03-12 17:08:29.827 435046 20681 435427 18727 3 4951 2025-03-14 16:22:35.104 2025-03-14 16:22:35.104 435046 20681 437569 1584 5 4952 2025-03-14 16:28:28.355 2025-03-14 16:28:28.355 435046 20681 437577 17838 6 4953 2025-03-12 14:35:57.558 2025-03-12 14:35:57.558 435046 20681 435219 1549 2 4954 2025-03-12 14:51:23.613 2025-03-12 14:51:23.613 435046 20681 435246 17722 1 4955 2025-03-12 14:58:54.996 2025-03-12 14:58:54.996 435046 20681 435252 11866 2 4956 2025-03-12 15:16:49.348 2025-03-12 15:16:49.348 435046 20681 435280 6526 2 4957 2025-03-12 15:33:56.428 2025-03-12 15:33:56.428 435046 20681 435310 20454 1 4958 2025-03-12 15:41:14.632 2025-03-12 15:41:14.632 435046 20681 435324 20776 1 4959 2025-03-12 15:58:34.621 2025-03-12 15:58:34.621 435046 20681 435351 15336 3 4960 2025-03-12 18:32:07.371 2025-03-12 18:32:07.371 435046 20681 435504 21547 3 4961 2025-03-12 19:19:04.088 2025-03-12 19:19:04.088 435046 20681 435547 4079 5 4962 2025-03-12 19:26:42.536 2025-03-12 19:26:42.536 435046 20681 435553 993 6 4963 2025-03-13 13:45:57.619 2025-03-13 13:45:57.619 435046 20681 436349 18269 5 4964 2025-03-12 14:42:58.577 2025-03-12 14:42:58.577 435046 20681 435232 6191 5 4965 2025-03-12 14:43:34.612 2025-03-12 14:43:34.612 435046 20681 435233 16309 5 4966 2025-03-12 15:23:51.312 2025-03-12 15:23:51.312 435046 20681 435297 21710 3 4967 2025-03-12 15:28:02.597 2025-03-12 15:28:02.597 435046 20681 435305 17533 4 4968 2025-03-12 13:55:52.882 2025-03-12 13:55:52.882 435046 20681 435152 688 1 4969 2025-03-12 14:28:38.084 2025-03-12 14:28:38.084 435046 20681 435209 9845 1 4970 2025-03-12 14:33:22.904 2025-03-12 14:33:22.904 435046 20681 435215 1039 2 4971 2025-03-12 14:32:29.76 2025-03-12 14:32:29.76 435046 20681 435213 16042 1 4972 2025-03-12 15:34:18.712 2025-03-12 15:34:18.712 435046 20681 435312 10112 3 4973 2025-03-12 15:41:02.416 2025-03-12 15:41:02.416 435046 20681 435323 11298 4 4974 2025-03-12 18:30:53.904 2025-03-12 18:30:53.904 435046 20681 435502 10016 4 4975 2025-03-12 18:57:54.929 2025-03-12 18:57:54.929 435046 20681 435526 13038 4 4976 2025-03-12 19:16:52.042 2025-03-12 19:16:52.042 435046 20681 435545 17519 4 4977 2025-03-12 19:27:57.323 2025-03-12 19:27:57.323 435046 20681 435555 20734 7 4978 2025-03-12 23:48:25.477 2025-03-12 23:48:25.477 435046 20681 435756 725 4 4979 2025-03-13 14:04:45.03 2025-03-13 14:04:45.03 435046 20681 436373 16830 6 4980 2025-03-13 14:09:20.402 2025-03-13 14:09:20.402 435046 20681 436380 4287 7 4981 2025-03-13 15:21:25.244 2025-03-13 15:21:25.244 435046 20681 436467 7760 7 4982 2025-03-13 15:32:41.733 2025-03-13 15:32:41.733 435046 20681 436492 899 7 4983 2025-03-12 13:41:00.6 2025-03-12 13:41:00.6 435046 20681 435131 10007 2 4984 2025-03-12 13:42:37.366 2025-03-12 13:42:37.366 435046 20681 435134 660 1 4985 2025-03-12 13:42:43.041 2025-03-12 13:42:43.041 435046 20681 435135 9183 1 4986 2025-03-12 14:03:05.551 2025-03-12 14:03:05.551 435046 20681 435162 15139 2 4987 2025-03-12 14:37:05.066 2025-03-12 14:37:05.066 435046 20681 435220 9426 4 4988 2025-03-12 15:00:33.053 2025-03-12 15:00:33.053 435046 20681 435256 977 7 4989 2025-03-12 14:37:27.974 2025-03-12 14:37:27.974 435046 20681 435221 21148 4 4990 2025-03-12 15:21:34.22 2025-03-12 15:21:34.22 435046 20681 435292 9517 2 4991 2025-03-12 17:27:02.962 2025-03-12 17:27:02.962 435046 20681 435448 10591 3 4992 2025-03-12 19:19:53.964 2025-03-12 19:19:53.964 435046 20681 435548 16948 2 4993 2025-03-12 19:39:02.981 2025-03-12 19:39:02.981 435046 20681 435567 16970 4 4994 2025-03-12 20:08:27.36 2025-03-12 20:08:27.36 435046 20681 435604 2285 3 4995 2025-03-12 21:08:09.876 2025-03-12 21:08:09.876 435046 20681 435649 1803 6 4996 2025-03-12 21:47:03.418 2025-03-12 21:47:03.418 435046 20681 435678 8289 9 4997 2025-03-12 21:50:46.528 2025-03-12 21:50:46.528 435046 20681 435684 7979 7 4998 2025-03-13 13:43:40.206 2025-03-13 13:43:40.206 435046 20681 436346 5725 7 4999 2025-03-15 04:03:03.258 2025-03-15 04:03:03.258 435201 9906 437969 18901 1 5000 2025-03-12 14:39:10.499 2025-03-12 14:39:10.499 435201 9906 435223 1000 1 5001 2025-03-12 16:54:06.893 2025-03-12 16:54:06.893 435261 6741 435408 10060 2 5002 2025-03-12 15:07:12.947 2025-03-12 15:07:12.947 435261 6741 435264 4345 1 5003 2025-03-12 15:13:09.931 2025-03-12 15:13:09.931 435261 6741 435272 21067 1 5004 2025-03-12 16:32:13.12 2025-03-12 16:32:13.12 435261 6741 435378 1817 1 5005 2025-03-12 15:43:26.223 2025-03-12 15:43:26.223 435261 6741 435329 11158 2 5006 2025-03-12 16:47:10.198 2025-03-12 16:47:10.198 435261 6741 435401 10291 1 5007 2025-03-12 16:55:09.62 2025-03-12 16:55:09.62 435261 6741 435409 2111 2 5008 2025-03-12 18:43:59.086 2025-03-12 18:43:59.086 435261 6741 435514 5828 3 5009 2025-03-12 21:10:09.569 2025-03-12 21:10:09.569 435261 6741 435651 17392 4 5010 2025-03-12 16:55:18.214 2025-03-12 16:55:18.214 435261 6741 435410 11298 1 5011 2025-03-12 17:02:42.252 2025-03-12 17:02:42.252 435261 6741 435420 21180 2 5012 2025-03-12 17:10:16.45 2025-03-12 17:10:16.45 435261 6741 435430 5359 3 5013 2025-03-12 19:29:54.709 2025-03-12 19:29:54.709 435261 6741 435557 1723 3 5014 2025-03-12 17:18:31.848 2025-03-12 17:18:31.848 435261 6741 435439 4079 2 5015 2025-03-12 17:25:29.764 2025-03-12 17:25:29.764 435261 6741 435446 21145 1 5016 2025-03-12 17:51:13.884 2025-03-12 17:51:13.884 435261 6741 435470 956 2 5017 2025-03-12 20:03:17.211 2025-03-12 20:03:17.211 435261 6741 435597 19469 2 5018 2025-03-12 18:52:11.147 2025-03-12 18:52:11.147 435261 6741 435520 1833 1 5019 2025-03-12 19:25:37.503 2025-03-12 19:25:37.503 435261 6741 435550 15556 2 5020 2025-03-13 03:36:31.507 2025-03-13 03:36:31.507 435261 6741 435866 6653 3 5021 2025-03-13 06:14:09.441 2025-03-13 06:14:09.441 435261 6741 435945 1198 1 5022 2025-03-12 15:21:47.021 2025-03-12 15:21:47.021 435261 6741 435293 1213 3 5023 2025-03-12 15:19:38.663 2025-03-12 15:19:38.663 435261 6741 435286 21063 2 5024 2025-03-12 17:08:27.92 2025-03-12 17:08:27.92 435261 6741 435426 4650 3 5025 2025-03-12 16:35:02.639 2025-03-12 16:35:02.639 435261 6741 435382 9695 1 5026 2025-03-12 16:43:07.062 2025-03-12 16:43:07.062 435261 6741 435396 19854 1 5027 2025-03-12 16:56:54.805 2025-03-12 16:56:54.805 435261 6741 435416 667 2 5028 2025-03-12 17:36:24.161 2025-03-12 17:36:24.161 435261 6741 435460 9109 4 5029 2025-03-13 03:39:09.87 2025-03-13 03:39:09.87 435261 6741 435867 8245 4 5030 2025-03-19 18:16:23.009 2025-03-19 18:16:23.009 436981 17741 444219 979 1 5031 2025-03-15 04:14:19.91 2025-03-15 04:14:19.91 437580 18829 437971 9969 2 5032 2025-03-15 03:55:32.189 2025-03-15 03:55:32.189 437580 18829 437967 16447 1 5033 2025-03-12 19:45:45.824 2025-03-12 19:45:45.824 435551 9418 435574 20434 1 5034 2025-03-12 19:55:27.679 2025-03-12 19:55:27.679 435551 9418 435582 5500 2 5035 2025-03-12 20:11:54.421 2025-03-12 20:11:54.421 435551 9418 435608 1469 1 5036 2025-03-12 20:23:00.187 2025-03-12 20:23:00.187 435551 9418 435615 895 2 5037 2025-03-12 23:44:36.651 2025-03-12 23:44:36.651 435551 9418 435755 20715 1 5038 2025-03-13 10:31:22.299 2025-03-13 10:31:22.299 435551 9418 436116 17041 2 5039 2025-03-13 02:05:45.446 2025-03-13 02:05:45.446 435551 9418 435828 4259 1 5040 2025-03-13 10:14:26.923 2025-03-13 10:14:26.923 435551 9418 436094 16336 4 5041 2025-03-12 20:37:35.443 2025-03-12 20:37:35.443 435551 9418 435628 854 3 5042 2025-03-13 10:15:13.182 2025-03-13 10:15:13.182 435551 9418 436096 2724 2 5043 2025-03-13 01:22:27.865 2025-03-13 01:22:27.865 435560 10469 435803 16695 1 5044 2025-03-13 03:46:09.41 2025-03-13 03:46:09.41 435560 10469 435872 16282 2 5045 2025-03-13 10:31:22.299 2025-03-13 10:31:22.299 435755 20715 436116 17041 1 5046 2025-03-13 04:37:02.66 2025-03-13 04:37:02.66 435891 985 435895 621 2 5047 2025-03-13 10:36:39.063 2025-03-13 10:36:39.063 435891 985 436122 2437 1 5048 2025-03-13 04:32:47.079 2025-03-13 04:32:47.079 435891 985 435893 1090 1 5049 2025-03-13 09:36:32.789 2025-03-13 09:36:32.789 436036 2224 436070 16939 1 5050 2025-03-13 09:37:17.729 2025-03-13 09:37:17.729 436036 2224 436071 17568 2 5051 2025-03-13 10:02:05.916 2025-03-13 10:02:05.916 436036 2224 436088 17148 1 5052 2025-03-13 10:57:19.469 2025-03-13 10:57:19.469 436036 2224 436152 20713 1 5053 2025-03-13 14:37:31.778 2025-03-13 14:37:31.778 436036 2224 436408 889 2 5054 2025-03-13 09:29:56.395 2025-03-13 09:29:56.395 436036 2224 436063 13097 1 5055 2025-03-13 09:26:40.443 2025-03-13 09:26:40.443 436050 17494 436060 1624 1 5056 2025-03-14 12:13:25.43 2025-03-14 12:13:25.43 436909 16594 437259 20275 1 5057 2025-03-13 09:25:41.21 2025-03-13 09:25:41.21 436051 20655 436058 4819 1 5058 2025-03-13 09:59:29.452 2025-03-13 09:59:29.452 436051 20655 436084 16950 1 5059 2025-03-13 13:11:10.963 2025-03-13 13:11:10.963 436051 20655 436311 21145 2 5060 2025-03-13 11:30:18.526 2025-03-13 11:30:18.526 436167 11275 436193 19333 1 5061 2025-03-13 11:37:47.591 2025-03-13 11:37:47.591 436189 7125 436205 3377 1 5062 2025-03-13 11:37:56.202 2025-03-13 11:37:56.202 436189 7125 436206 20058 1 5063 2025-03-13 11:48:15.791 2025-03-13 11:48:15.791 436189 7125 436220 21685 2 5064 2025-03-13 11:39:06.526 2025-03-13 11:39:06.526 436189 7125 436209 10352 1 5065 2025-03-13 11:45:59.519 2025-03-13 11:45:59.519 436189 7125 436217 20713 2 5066 2025-03-13 11:48:10.763 2025-03-13 11:48:10.763 436189 7125 436219 1438 3 5067 2025-03-13 11:49:23.824 2025-03-13 11:49:23.824 436189 7125 436221 16684 4 5068 2025-03-13 10:15:40.997 2025-03-13 10:15:40.997 436081 13097 436098 696 1 5069 2025-03-13 10:49:42.727 2025-03-13 10:49:42.727 436081 13097 436140 6741 1 5070 2025-03-15 06:03:19.539 2025-03-15 06:03:19.539 437932 21825 438011 20511 1 5071 2025-03-13 10:22:43.578 2025-03-13 10:22:43.578 436100 7668 436104 16594 1 5072 2025-03-13 10:46:20.494 2025-03-13 10:46:20.494 436100 7668 436134 17183 5 5073 2025-03-13 10:34:56.928 2025-03-13 10:34:56.928 436100 7668 436120 880 4 5074 2025-03-13 10:32:02.615 2025-03-13 10:32:02.615 436100 7668 436117 10536 3 5075 2025-03-13 10:27:58.122 2025-03-13 10:27:58.122 436100 7668 436109 21805 1 5076 2025-03-13 10:29:37.747 2025-03-13 10:29:37.747 436100 7668 436114 803 2 5077 2025-03-13 10:46:20.494 2025-03-13 10:46:20.494 436117 10536 436134 17183 2 5078 2025-03-13 10:34:56.928 2025-03-13 10:34:56.928 436117 10536 436120 880 1 5079 2025-03-13 11:16:08.537 2025-03-13 11:16:08.537 436153 5173 436179 13055 1 5080 2025-03-13 13:07:45.621 2025-03-13 13:07:45.621 436157 20019 436306 1745 1 5081 2025-03-13 13:12:49.175 2025-03-13 13:12:49.175 436157 20019 436313 9356 2 5082 2025-03-14 12:27:36.861 2025-03-14 12:27:36.861 437218 16289 437280 17042 1 5083 2025-03-14 12:30:02.234 2025-03-14 12:30:02.234 437218 16289 437287 7667 1 5084 2025-03-14 14:14:59.601 2025-03-14 14:14:59.601 437218 16289 437437 19535 1 5085 2025-03-14 14:17:01.145 2025-03-14 14:17:01.145 437218 16289 437439 20525 2 5086 2025-03-14 14:50:48.06 2025-03-14 14:50:48.06 437218 16289 437476 646 5 5087 2025-03-14 12:35:49.433 2025-03-14 12:35:49.433 437218 16289 437302 960 2 5088 2025-03-14 22:12:00.907 2025-03-14 22:12:00.907 437218 16289 437790 5487 3 5089 2025-03-14 22:19:14.697 2025-03-14 22:19:14.697 437218 16289 437797 6202 4 5090 2025-03-14 14:32:45.157 2025-03-14 14:32:45.157 437218 16289 437455 20713 4 5091 2025-03-14 14:20:30.278 2025-03-14 14:20:30.278 437218 16289 437443 12346 3 5092 2025-03-14 13:10:37.903 2025-03-14 13:10:37.903 437233 2022 437361 1478 7 5093 2025-03-14 12:59:36.526 2025-03-14 12:59:36.526 437233 2022 437348 4570 4 5094 2025-03-14 13:08:10.37 2025-03-14 13:08:10.37 437233 2022 437360 8544 6 5095 2025-03-14 17:06:16.376 2025-03-14 17:06:16.376 437233 2022 437619 11829 2 5096 2025-03-15 00:17:46.647 2025-03-15 00:17:46.647 437233 2022 437877 5425 4 5097 2025-03-14 13:12:07.294 2025-03-14 13:12:07.294 437233 2022 437363 647 1 5098 2025-03-14 13:05:14.213 2025-03-14 13:05:14.213 437233 2022 437352 20687 5 5099 2025-03-14 12:38:27.438 2025-03-14 12:38:27.438 437233 2022 437311 16834 2 5100 2025-03-14 19:32:41.454 2025-03-14 19:32:41.454 437233 2022 437710 15806 4 5101 2025-03-14 15:12:21.107 2025-03-14 15:12:21.107 437233 2022 437512 7668 1 5102 2025-03-15 00:15:53.656 2025-03-15 00:15:53.656 437233 2022 437874 20788 2 5103 2025-03-14 20:07:50.104 2025-03-14 20:07:50.104 437233 2022 437726 4259 5 5104 2025-03-14 15:59:18.871 2025-03-14 15:59:18.871 437233 2022 437561 5779 1 5105 2025-03-14 17:06:39.626 2025-03-14 17:06:39.626 437233 2022 437620 902 2 5106 2025-03-14 19:29:13.69 2025-03-14 19:29:13.69 437233 2022 437707 1647 3 5107 2025-03-14 15:02:44.704 2025-03-14 15:02:44.704 437233 2022 437495 9362 1 5108 2025-03-15 00:17:04.584 2025-03-15 00:17:04.584 437233 2022 437875 18232 3 5109 2025-03-14 12:07:21.487 2025-03-14 12:07:21.487 437233 2022 437239 1611 1 5110 2025-03-14 12:45:09.717 2025-03-14 12:45:09.717 437233 2022 437319 17148 3 5111 2025-03-14 12:21:34.854 2025-03-14 12:21:34.854 437233 2022 437270 21422 1 5112 2025-03-14 12:41:18.746 2025-03-14 12:41:18.746 437281 5377 437314 11091 1 5113 2025-03-13 14:35:48.044 2025-03-13 14:35:48.044 436326 21012 436407 866 1 5114 2025-03-13 17:06:41.186 2025-03-13 17:06:41.186 436326 21012 436580 667 2 5115 2025-03-13 15:25:44.745 2025-03-13 15:25:44.745 436326 21012 436480 2329 1 5116 2025-03-15 07:25:17.619 2025-03-15 07:25:17.619 436326 21012 438048 1090 1 5117 2025-03-13 17:07:09.462 2025-03-13 17:07:09.462 436326 21012 436581 7983 2 5118 2025-03-15 06:46:30.983 2025-03-15 06:46:30.983 436566 9494 438033 21242 1 5119 2025-03-13 16:54:14.47 2025-03-13 16:54:14.47 436566 9494 436572 21036 1 5120 2025-03-13 18:10:22.118 2025-03-13 18:10:22.118 436566 9494 436621 876 1 5121 2025-03-13 18:15:27.056 2025-03-13 18:15:27.056 436566 9494 436626 19581 1 5122 2025-03-13 18:41:49.68 2025-03-13 18:41:49.68 436566 9494 436648 9705 1 5123 2025-03-13 19:19:57.192 2025-03-13 19:19:57.192 436566 9494 436672 12951 1 5124 2025-03-13 16:50:34.112 2025-03-13 16:50:34.112 436566 9494 436568 12959 1 5125 2025-03-13 18:10:54.21 2025-03-13 18:10:54.21 436566 9494 436622 2776 1 5126 2025-03-13 18:33:45.374 2025-03-13 18:33:45.374 436566 9494 436639 18177 2 5127 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437292 616 437513 12609 13 5128 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437292 616 437508 8713 12 5129 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437292 616 437593 19094 21 5130 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437292 616 437574 5069 20 5131 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 437292 616 437465 20734 9 5132 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437292 616 437553 10291 18 5133 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437292 616 437552 17722 17 5134 2025-03-14 14:11:17.647 2025-03-14 14:11:17.647 437292 616 437432 660 7 5135 2025-03-14 12:46:35.189 2025-03-14 12:46:35.189 437292 616 437321 1488 6 5136 2025-03-14 12:43:43.967 2025-03-14 12:43:43.967 437292 616 437317 11018 5 5137 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437292 616 437521 19980 14 5138 2025-03-14 12:43:02.431 2025-03-14 12:43:02.431 437292 616 437316 13097 4 5139 2025-03-14 12:37:11.691 2025-03-14 12:37:11.691 437292 616 437308 20523 2 5140 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437292 616 437558 7097 19 5141 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437292 616 437598 12277 22 5142 2025-03-14 12:32:08.487 2025-03-14 12:32:08.487 437292 616 437293 1424 1 5143 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437292 616 437506 20816 11 5144 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437292 616 437497 1823 10 5145 2025-03-14 14:24:43.157 2025-03-14 14:24:43.157 437292 616 437447 12278 8 5146 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437292 616 437551 5129 16 5147 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437292 616 437538 7668 15 5148 2025-03-14 12:39:26.862 2025-03-14 12:39:26.862 437292 616 437312 8870 3 5149 2025-03-14 19:33:18.111 2025-03-14 19:33:18.111 437403 6136 437711 15719 1 5150 2025-03-15 02:24:22.945 2025-03-15 02:24:22.945 436935 7675 437949 21012 1 5151 2025-03-14 23:22:35.944 2025-03-14 23:22:35.944 436935 7675 437837 13216 1 5152 2025-03-14 07:35:52.818 2025-03-14 07:35:52.818 436935 7675 437024 17147 1 5153 2025-03-14 03:50:25.564 2025-03-14 03:50:25.564 436935 7675 436939 647 1 5154 2025-03-13 19:39:24.926 2025-03-13 19:39:24.926 436658 15409 436688 12808 3 5155 2025-03-13 19:57:35.2 2025-03-13 19:57:35.2 436658 15409 436702 6430 4 5156 2025-03-13 19:22:15.027 2025-03-13 19:22:15.027 436658 15409 436674 21042 2 5157 2025-03-13 19:08:45.815 2025-03-13 19:08:45.815 436658 15409 436661 900 1 5158 2025-03-13 19:57:35.2 2025-03-13 19:57:35.2 436688 12808 436702 6430 1 5159 2025-03-19 23:10:51.496 2025-03-19 23:10:51.496 444415 15337 444477 647 1 5160 2025-03-14 00:14:46.834 2025-03-14 00:14:46.834 436694 1114 436850 20768 1 5161 2025-03-14 10:08:39.85 2025-03-14 10:08:39.85 436752 690 437081 10352 1 5162 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 436752 690 437513 12609 16 5163 2025-03-14 12:31:38.133 2025-03-14 12:31:38.133 436752 690 437292 616 3 5164 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 436752 690 437508 8713 15 5165 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 436752 690 437593 19094 24 5166 2025-03-14 18:40:01.291 2025-03-14 18:40:01.291 436752 690 437678 7773 2 5167 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 436752 690 437574 5069 23 5168 2025-03-14 17:24:04.881 2025-03-14 17:24:04.881 436752 690 437635 10554 1 5169 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 436752 690 437465 20734 12 5170 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 436752 690 437553 10291 21 5171 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 436752 690 437552 17722 20 5172 2025-03-14 14:11:17.647 2025-03-14 14:11:17.647 436752 690 437432 660 10 5173 2025-03-14 12:46:35.189 2025-03-14 12:46:35.189 436752 690 437321 1488 9 5174 2025-03-14 12:43:43.967 2025-03-14 12:43:43.967 436752 690 437317 11018 8 5175 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 436752 690 437521 19980 17 5176 2025-03-14 12:43:02.431 2025-03-14 12:43:02.431 436752 690 437316 13097 7 5177 2025-03-14 12:37:11.691 2025-03-14 12:37:11.691 436752 690 437308 20523 5 5178 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 436752 690 437558 7097 22 5179 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 436752 690 437598 12277 25 5180 2025-03-14 19:03:21.763 2025-03-14 19:03:21.763 436752 690 437698 10112 3 5181 2025-03-15 07:20:29.918 2025-03-15 07:20:29.918 436752 690 438042 17183 4 5182 2025-03-13 22:07:09.254 2025-03-13 22:07:09.254 436752 690 436773 15052 1 5183 2025-03-13 22:07:59.828 2025-03-13 22:07:59.828 436752 690 436774 659 2 5184 2025-03-14 12:30:53.444 2025-03-14 12:30:53.444 436752 690 437290 6149 2 5185 2025-03-14 12:22:18.76 2025-03-14 12:22:18.76 436752 690 437271 4862 2 5186 2025-03-14 12:32:08.487 2025-03-14 12:32:08.487 436752 690 437293 1424 4 5187 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 436752 690 437506 20816 14 5188 2025-03-14 11:24:28.775 2025-03-14 11:24:28.775 436752 690 437184 13587 1 5189 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 436752 690 437497 1823 13 5190 2025-03-14 14:24:43.157 2025-03-14 14:24:43.157 436752 690 437447 12278 11 5191 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 436752 690 437551 5129 19 5192 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 436752 690 437538 7668 18 5193 2025-03-14 12:39:26.862 2025-03-14 12:39:26.862 436752 690 437312 8870 6 5194 2025-03-20 04:10:14.634 2025-03-20 04:10:14.634 444606 761 444613 1272 1 5195 2025-03-13 22:07:59.828 2025-03-13 22:07:59.828 436773 15052 436774 659 1 5196 2025-03-14 00:06:29.625 2025-03-14 00:06:29.625 436782 5708 436846 9863 2 5197 2025-03-13 23:47:24.38 2025-03-13 23:47:24.38 436782 5708 436832 21647 1 5198 2025-03-15 02:26:16.914 2025-03-15 02:26:16.914 436816 1785 437950 891 1 5199 2025-03-14 07:24:17.734 2025-03-14 07:24:17.734 436823 21262 437020 17095 5 5200 2025-03-14 07:18:42.785 2025-03-14 07:18:42.785 436823 21262 437013 13398 4 5201 2025-03-14 02:00:29.969 2025-03-14 02:00:29.969 436823 21262 436900 19527 2 5202 2025-03-13 23:43:45.457 2025-03-13 23:43:45.457 436823 21262 436829 1615 1 5203 2025-03-14 03:36:40.283 2025-03-14 03:36:40.283 436823 21262 436930 20924 3 5204 2025-03-14 22:16:06.584 2025-03-14 22:16:06.584 436823 21262 437794 8726 6 5205 2025-03-19 18:48:53.206 2025-03-19 18:48:53.206 436884 8168 444285 20185 1 5206 2025-03-19 22:42:52.686 2025-03-19 22:42:52.686 436884 8168 444464 20179 2 5207 2025-03-14 04:29:14.549 2025-03-14 04:29:14.549 436937 4173 436946 2309 1 5208 2025-03-15 06:35:12.293 2025-03-15 06:35:12.293 436961 21412 438029 16543 1 5209 2025-03-14 08:02:50.156 2025-03-14 08:02:50.156 436967 16653 437029 9843 2 5210 2025-03-14 07:22:17.947 2025-03-14 07:22:17.947 436967 16653 437018 21401 1 5211 2025-03-14 15:35:35.912 2025-03-14 15:35:35.912 437300 15488 437542 1571 1 5212 2025-03-14 22:12:00.907 2025-03-14 22:12:00.907 437302 960 437790 5487 1 5213 2025-03-14 22:19:14.697 2025-03-14 22:19:14.697 437302 960 437797 6202 2 5214 2025-03-14 21:53:44.916 2025-03-14 21:53:44.916 437427 1611 437778 21022 1 5215 2025-03-14 14:50:48.06 2025-03-14 14:50:48.06 437455 20713 437476 646 1 5216 2025-03-14 15:11:40.381 2025-03-14 15:11:40.381 437463 1638 437511 954 1 5217 2025-03-15 00:49:18.403 2025-03-15 00:49:18.403 437502 15703 437900 3656 3 5218 2025-03-14 19:04:45.8 2025-03-14 19:04:45.8 437502 15703 437700 19943 1 5219 2025-03-15 03:28:39.303 2025-03-15 03:28:39.303 437502 15703 437960 12291 2 5220 2025-03-15 02:24:18.456 2025-03-15 02:24:18.456 437502 15703 437948 17316 1 5221 2025-03-14 23:00:01.712 2025-03-14 23:00:01.712 437502 15703 437827 15239 2 5222 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437508 8713 437513 12609 1 5223 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437508 8713 437593 19094 9 5224 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437508 8713 437574 5069 8 5225 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437508 8713 437553 10291 6 5226 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437508 8713 437552 17722 5 5227 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437508 8713 437521 19980 2 5228 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437508 8713 437558 7097 7 5229 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437508 8713 437598 12277 10 5230 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437508 8713 437551 5129 4 5231 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437508 8713 437538 7668 3 5232 2025-03-15 08:42:16.871 2025-03-15 08:42:16.871 437714 8570 438090 1489 1 5233 2025-03-14 22:11:24.133 2025-03-14 22:11:24.133 437714 8570 437789 20799 4 5234 2025-03-14 22:12:56.946 2025-03-14 22:12:56.946 437714 8570 437791 13177 5 5235 2025-03-14 21:42:28.022 2025-03-14 21:42:28.022 437714 8570 437774 10719 1 5236 2025-03-14 19:40:04.613 2025-03-14 19:40:04.613 437714 8570 437716 794 1 5237 2025-03-14 21:57:03.957 2025-03-14 21:57:03.957 437714 8570 437779 13169 2 5238 2025-03-14 22:07:48.098 2025-03-14 22:07:48.098 437714 8570 437784 21825 3 5239 2025-03-14 22:19:25.126 2025-03-14 22:19:25.126 437714 8570 437798 17109 6 5240 2025-03-14 22:08:49.684 2025-03-14 22:08:49.684 437714 8570 437786 699 2 5241 2025-03-15 02:23:20.093 2025-03-15 02:23:20.093 437946 17817 437947 9337 1 5242 2025-03-15 07:56:14.714 2025-03-15 07:56:14.714 437946 17817 438059 15806 1 5243 2025-03-15 04:36:43.957 2025-03-15 04:36:43.957 437539 691 437979 21672 1 5244 2025-03-15 02:40:28.846 2025-03-15 02:40:28.846 437562 9167 437954 8469 1 5245 2025-03-17 14:47:50.124 2025-03-17 14:47:50.124 440779 8242 440810 20715 1 5246 2025-03-14 16:28:28.355 2025-03-14 16:28:28.355 437569 1584 437577 17838 1 5247 2025-03-14 18:07:36.03 2025-03-14 18:07:36.03 437586 1261 437655 15488 1 5248 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437593 19094 437598 12277 1 5249 2025-03-14 16:51:14.996 2025-03-14 16:51:14.996 437604 9351 437606 10690 1 5250 2025-03-14 18:45:56.258 2025-03-14 18:45:56.258 437611 21271 437683 633 1 5251 2025-03-15 07:21:25.828 2025-03-15 07:21:25.828 437611 21271 438043 21442 1 5252 2025-03-15 06:20:12.255 2025-03-15 06:20:12.255 437642 1567 438020 18231 2 5253 2025-03-14 23:05:44.22 2025-03-14 23:05:44.22 437642 1567 437830 20912 1 5254 2025-03-14 23:32:24.608 2025-03-14 23:32:24.608 437642 1567 437844 20913 1 5255 2025-03-14 19:22:59.704 2025-03-14 19:22:59.704 437673 5017 437704 16289 1 5256 2025-03-14 19:03:21.763 2025-03-14 19:03:21.763 437678 7773 437698 10112 1 5257 2025-03-15 07:20:29.918 2025-03-15 07:20:29.918 437678 7773 438042 17183 2 5258 2025-03-14 20:07:50.104 2025-03-14 20:07:50.104 437710 15806 437726 4259 1 5259 2025-03-14 19:57:21.961 2025-03-14 19:57:21.961 437713 946 437722 12139 1 5260 2025-03-15 01:26:42.397 2025-03-15 01:26:42.397 437723 16259 437925 10661 2 5261 2025-03-15 06:09:49.216 2025-03-15 06:09:49.216 437723 16259 438013 15858 4 5262 2025-03-14 22:56:27.722 2025-03-14 22:56:27.722 437723 16259 437826 12738 2 5263 2025-03-14 22:44:44.379 2025-03-14 22:44:44.379 437723 16259 437816 21178 2 5264 2025-03-15 01:45:55.271 2025-03-15 01:45:55.271 437723 16259 437932 21825 1 5265 2025-03-14 23:50:52.392 2025-03-14 23:50:52.392 437723 16259 437861 20687 2 5266 2025-03-14 21:14:02.899 2025-03-14 21:14:02.899 437723 16259 437762 11527 1 5267 2025-03-14 22:27:39.932 2025-03-14 22:27:39.932 437723 16259 437801 2757 1 5268 2025-03-14 22:46:54.872 2025-03-14 22:46:54.872 437723 16259 437819 3656 1 5269 2025-03-14 23:40:22.517 2025-03-14 23:40:22.517 437723 16259 437854 16357 1 5270 2025-03-15 04:34:01.815 2025-03-15 04:34:01.815 437723 16259 437977 641 3 5271 2025-03-15 06:03:19.539 2025-03-15 06:03:19.539 437723 16259 438011 20511 2 5272 2025-03-14 21:50:38.405 2025-03-14 21:50:38.405 437725 16753 437776 13249 1 5273 2025-03-14 23:34:36.792 2025-03-14 23:34:36.792 437727 17221 437847 16929 1 5274 2025-03-20 03:04:34.684 2025-03-20 03:04:34.684 437727 17221 444573 21541 1 5275 2025-03-18 09:21:29.123 2025-03-18 09:21:29.123 441753 646 441757 21398 1 5276 2025-03-15 04:28:54.278 2025-03-15 04:28:54.278 437731 2056 437975 14370 2 5277 2025-03-14 23:42:10.848 2025-03-14 23:42:10.848 437731 2056 437855 4378 1 5278 2025-03-14 21:57:26.301 2025-03-14 21:57:26.301 437737 667 437781 1002 1 5279 2025-03-14 22:56:27.722 2025-03-14 22:56:27.722 437762 11527 437826 12738 1 5280 2025-03-14 22:33:29.852 2025-03-14 22:33:29.852 437769 10698 437807 21688 1 5281 2025-03-15 04:36:23.451 2025-03-15 04:36:23.451 437769 10698 437978 12736 2 5282 2025-03-15 05:41:23.23 2025-03-15 05:41:23.23 437769 10698 438000 10013 1 5283 2025-03-15 03:04:25.435 2025-03-15 03:04:25.435 437769 10698 437958 9494 1 5284 2025-03-15 00:11:21.513 2025-03-15 00:11:21.513 437769 10698 437872 2367 1 5285 2025-03-15 04:39:14.799 2025-03-15 04:39:14.799 437769 10698 437980 20826 2 5286 2025-03-13 10:40:25.849 2025-03-13 10:40:25.849 436090 19394 436127 20551 1 5287 2025-03-14 22:08:49.684 2025-03-14 22:08:49.684 437774 10719 437786 699 1 5288 2025-03-15 06:16:45.558 2025-03-15 06:16:45.558 437775 8505 438019 17321 1 5289 2025-03-15 05:14:09.863 2025-03-15 05:14:09.863 437775 8505 437998 18068 1 5290 2025-03-15 07:38:53.832 2025-03-15 07:38:53.832 437775 8505 438052 1720 3 5291 2025-03-15 00:35:01.518 2025-03-15 00:35:01.518 437775 8505 437886 19417 1 5292 2025-03-14 22:31:09.956 2025-03-14 22:31:09.956 437775 8505 437805 656 2 5293 2025-03-14 22:24:27.345 2025-03-14 22:24:27.345 437775 8505 437800 7916 1 5294 2025-03-14 23:11:33.613 2025-03-14 23:11:33.613 437775 8505 437832 10934 1 5295 2025-03-15 07:23:48.35 2025-03-15 07:23:48.35 437775 8505 438046 6471 2 5296 2025-03-15 02:37:27.814 2025-03-15 02:37:27.814 437775 8505 437952 5495 1 5297 2025-03-15 03:42:10.135 2025-03-15 03:42:10.135 437775 8505 437962 12057 1 5298 2025-03-15 04:55:14.868 2025-03-15 04:55:14.868 437775 8505 437991 16513 1 5299 2025-03-15 07:25:31.101 2025-03-15 07:25:31.101 437775 8505 438049 6268 1 5300 2025-03-14 22:11:24.133 2025-03-14 22:11:24.133 437784 21825 437789 20799 1 5301 2025-03-14 22:12:56.946 2025-03-14 22:12:56.946 437784 21825 437791 13177 2 5302 2025-03-14 22:19:25.126 2025-03-14 22:19:25.126 437784 21825 437798 17109 3 5303 2025-03-15 01:26:42.397 2025-03-15 01:26:42.397 437801 2757 437925 10661 1 5304 2025-03-14 22:44:44.379 2025-03-14 22:44:44.379 437801 2757 437816 21178 1 5305 2025-03-15 07:38:53.832 2025-03-15 07:38:53.832 437805 656 438052 1720 1 5306 2025-03-15 00:49:18.403 2025-03-15 00:49:18.403 437827 15239 437900 3656 1 5307 2025-03-15 06:20:12.255 2025-03-15 06:20:12.255 437830 20912 438020 18231 1 5308 2025-03-15 04:36:23.451 2025-03-15 04:36:23.451 437872 2367 437978 12736 1 5309 2025-03-15 00:17:46.647 2025-03-15 00:17:46.647 437875 18232 437877 5425 1 5310 2025-03-15 08:42:04.609 2025-03-15 08:42:04.609 437963 17331 438089 16126 1 5311 2025-03-15 03:51:21.204 2025-03-15 03:51:21.204 437963 17331 437964 12774 1 5312 2025-03-17 17:55:53.902 2025-03-17 17:55:53.902 440764 10554 441033 13406 2 5313 2025-03-17 15:40:05.405 2025-03-17 15:40:05.405 440764 10554 440869 17014 1 5314 2025-03-18 10:28:39.372 2025-03-18 10:28:39.372 441761 21501 441848 6030 1 5315 2025-03-15 05:27:03.809 2025-03-15 05:27:03.809 437966 21044 437999 1970 1 5316 2025-03-15 06:20:28.164 2025-03-15 06:20:28.164 437966 21044 438021 9906 2 5317 2025-03-15 19:28:15.133 2025-03-15 19:28:15.133 437966 21044 438678 21391 4 5318 2025-03-15 17:55:20.008 2025-03-15 17:55:20.008 437966 21044 438612 6260 3 5319 2025-03-15 04:20:33.748 2025-03-15 04:20:33.748 437966 21044 437973 2065 2 5320 2025-03-15 04:04:06.327 2025-03-15 04:04:06.327 437966 21044 437970 997 1 5321 2025-03-15 06:09:49.216 2025-03-15 06:09:49.216 437977 641 438013 15858 1 5322 2025-03-15 04:47:39.412 2025-03-15 04:47:39.412 437984 1733 437985 21685 1 5323 2025-03-15 06:21:24.635 2025-03-15 06:21:24.635 437986 20495 438022 12609 1 5324 2025-03-15 05:47:39.43 2025-03-15 05:47:39.43 438002 891 438003 20922 1 5325 2025-03-15 07:47:39.272 2025-03-15 07:47:39.272 438057 11523 438058 10342 1 5326 2025-03-15 09:03:16.311 2025-03-15 09:03:16.311 438077 1272 438105 2293 1 5327 2025-03-15 08:43:33.502 2025-03-15 08:43:33.502 438088 15719 438091 13878 1 5328 2025-03-15 15:33:38.857 2025-03-15 15:33:38.857 438486 1389 438492 20706 1 5329 2025-03-19 21:00:14.153 2025-03-19 21:00:14.153 438795 11716 444402 12220 2 5330 2025-03-19 18:11:08.075 2025-03-19 18:11:08.075 438795 11716 444206 3213 1 5331 2025-03-18 20:58:44.115 2025-03-18 20:58:44.115 440313 10818 442837 16653 3 5332 2025-03-17 21:14:48.343 2025-03-17 21:14:48.343 440313 10818 441240 1720 1 5333 2025-03-18 15:06:50.747 2025-03-18 15:06:50.747 440313 10818 442453 2431 2 5334 2025-03-17 11:39:53.512 2025-03-17 11:39:53.512 440548 717 440562 15049 1 5335 2025-03-17 21:12:01.758 2025-03-17 21:12:01.758 441226 17316 441234 5870 1 5336 2025-03-22 18:38:02.438 2025-03-22 18:38:02.438 441226 17316 448627 21303 3 5337 2025-03-17 21:33:47.419 2025-03-17 21:33:47.419 441226 17316 441254 11760 2 5338 2025-03-22 14:40:51.034 2025-03-22 14:40:51.034 448313 866 448316 21506 1 5339 2025-03-18 05:17:42.182 2025-03-18 05:17:42.182 440797 2537 441527 11477 1 5340 2025-03-17 17:51:40.51 2025-03-17 17:51:40.51 440902 4395 441021 1534 1 5341 2025-03-17 17:48:24.417 2025-03-17 17:48:24.417 441003 891 441013 18402 1 5342 2025-03-17 21:12:01.758 2025-03-17 21:12:01.758 441011 6268 441234 5870 5 5343 2025-03-17 19:24:37.981 2025-03-17 19:24:37.981 441011 6268 441130 802 1 5344 2025-03-17 21:05:19.867 2025-03-17 21:05:19.867 441011 6268 441226 17316 4 5345 2025-03-22 18:38:02.438 2025-03-22 18:38:02.438 441011 6268 448627 21303 7 5346 2025-03-17 20:52:58.177 2025-03-17 20:52:58.177 441011 6268 441211 4345 2 5347 2025-03-17 20:55:26.412 2025-03-17 20:55:26.412 441011 6268 441215 21041 3 5348 2025-03-17 21:33:47.419 2025-03-17 21:33:47.419 441011 6268 441254 11760 6 5349 2025-03-22 18:30:33.218 2025-03-22 18:30:33.218 441011 6268 448622 688 2 5350 2025-03-17 18:20:55.539 2025-03-17 18:20:55.539 441047 11885 441061 913 1 5351 2025-03-18 18:57:23.338 2025-03-18 18:57:23.338 441057 9295 442711 18473 1 5352 2025-03-17 21:30:37.837 2025-03-17 21:30:37.837 441087 1488 441250 18525 3 5353 2025-03-18 08:44:08.042 2025-03-18 08:44:08.042 441087 1488 441684 20817 2 5354 2025-03-17 21:47:27.906 2025-03-17 21:47:27.906 441087 1488 441260 7818 1 5355 2025-03-17 19:20:43.449 2025-03-17 19:20:43.449 441087 1488 441121 1051 1 5356 2025-03-17 18:49:47.055 2025-03-17 18:49:47.055 441087 1488 441091 7389 1 5357 2025-03-17 20:01:02.508 2025-03-17 20:01:02.508 441087 1488 441156 8985 2 5358 2025-03-18 08:44:08.042 2025-03-18 08:44:08.042 441121 1051 441684 20817 1 5359 2025-03-17 21:30:37.837 2025-03-17 21:30:37.837 441156 8985 441250 18525 1 5360 2025-03-18 04:03:22.847 2025-03-18 04:03:22.847 441238 20891 441502 6717 2 5361 2025-03-18 19:18:39.347 2025-03-18 19:18:39.347 441238 20891 442748 6555 3 5362 2025-03-18 19:13:59.953 2025-03-18 19:13:59.953 441238 20891 442738 11967 2 5363 2025-03-18 19:08:38.588 2025-03-18 19:08:38.588 441238 20891 442729 19403 1 5364 2025-03-18 03:37:32.242 2025-03-18 03:37:32.242 441238 20891 441496 827 1 5365 2025-03-18 19:17:42.991 2025-03-18 19:17:42.991 441238 20891 442746 21296 3 5366 2025-03-21 17:49:17.073 2025-03-21 17:49:17.073 441238 20891 447229 9552 1 5367 2025-03-21 18:18:52.009 2025-03-21 18:18:52.009 441238 20891 447258 20663 2 5368 2025-03-17 22:24:49.668 2025-03-17 22:24:49.668 441247 21338 441295 959 1 5369 2025-03-18 20:55:02.319 2025-03-18 20:55:02.319 441247 21338 442830 675 2 5370 2025-03-17 22:41:35.523 2025-03-17 22:41:35.523 441247 21338 441312 15213 1 5371 2025-03-18 08:36:43.591 2025-03-18 08:36:43.591 441247 21338 441677 18829 2 5372 2025-03-17 21:46:59.767 2025-03-17 21:46:59.767 441247 21338 441259 680 1 5373 2025-03-19 10:51:40.54 2025-03-19 10:51:40.54 441247 21338 443428 4819 3 5374 2025-03-22 18:38:02.438 2025-03-22 18:38:02.438 441254 11760 448627 21303 1 5375 2025-03-18 18:38:13.668 2025-03-18 18:38:13.668 441285 1136 442695 19581 1 5376 2025-03-18 02:45:59.057 2025-03-18 02:45:59.057 441436 15560 441470 20757 1 5377 2025-03-18 04:03:22.847 2025-03-18 04:03:22.847 441496 827 441502 6717 1 5378 2025-03-18 19:18:39.347 2025-03-18 19:18:39.347 441496 827 442748 6555 2 5379 2025-03-18 13:33:50.942 2025-03-18 13:33:50.942 441553 2293 442229 644 1 5380 2025-03-18 14:33:47.15 2025-03-18 14:33:47.15 441553 2293 442366 16214 4 5381 2025-03-18 14:27:36.119 2025-03-18 14:27:36.119 441553 2293 442356 11443 3 5382 2025-03-18 14:23:57.719 2025-03-18 14:23:57.719 441553 2293 442350 9 2 5383 2025-03-18 09:24:22.926 2025-03-18 09:24:22.926 441560 10291 441764 5171 1 5384 2025-03-18 22:43:11.365 2025-03-18 22:43:11.365 441560 10291 442943 21815 1 5385 2025-03-18 08:32:49.763 2025-03-18 08:32:49.763 441667 15890 441670 20500 1 5386 2025-03-18 08:47:39.381 2025-03-18 08:47:39.381 441696 16357 441697 12490 1 5387 2025-03-18 10:55:49.526 2025-03-18 10:55:49.526 441875 4250 441888 3544 1 5388 2025-03-18 10:51:46.264 2025-03-18 10:51:46.264 441875 4250 441881 3717 1 5389 2025-03-19 07:56:12.059 2025-03-19 07:56:12.059 442215 2361 443258 651 1 5390 2025-03-18 20:42:15.073 2025-03-18 20:42:15.073 441752 20606 442811 3417 1 5391 2025-03-22 14:47:39.483 2025-03-22 14:47:39.483 448322 671 448323 2039 1 5392 2025-03-19 07:42:01.245 2025-03-19 07:42:01.245 441774 20681 443238 4763 1 5393 2025-03-19 05:41:17.346 2025-03-19 05:41:17.346 442835 6688 443167 14941 1 5394 2025-03-18 10:29:00.924 2025-03-18 10:29:00.924 441823 1354 441849 11523 3 5395 2025-03-18 10:23:26.459 2025-03-18 10:23:26.459 441823 1354 441837 21688 1 5396 2025-03-18 10:37:08.701 2025-03-18 10:37:08.701 441823 1354 441855 782 4 5397 2025-03-18 10:21:28.631 2025-03-18 10:21:28.631 441823 1354 441835 16858 3 5398 2025-03-18 10:14:48.87 2025-03-18 10:14:48.87 441823 1354 441827 20636 1 5399 2025-03-18 10:20:42.325 2025-03-18 10:20:42.325 441823 1354 441833 5661 2 5400 2025-03-18 10:25:06.303 2025-03-18 10:25:06.303 441823 1354 441841 713 2 5401 2025-03-18 10:21:28.631 2025-03-18 10:21:28.631 441833 5661 441835 16858 1 5402 2025-03-18 10:50:40.127 2025-03-18 10:50:40.127 441854 7891 441877 20554 1 5403 2025-03-18 10:51:14.547 2025-03-18 10:51:14.547 441859 4819 441880 13878 1 5404 2025-03-18 10:46:34.829 2025-03-18 10:46:34.829 441868 9276 441870 6578 1 5405 2025-03-18 10:47:40.039 2025-03-18 10:47:40.039 441872 9705 441873 749 1 5406 2025-03-18 11:07:35.496 2025-03-18 11:07:35.496 441895 21571 441899 9985 1 5407 2025-03-18 11:33:07.739 2025-03-18 11:33:07.739 441918 9307 441939 722 1 5408 2025-03-18 15:01:18.184 2025-03-18 15:01:18.184 442339 19655 442436 18734 1 5409 2025-03-18 14:31:52.169 2025-03-18 14:31:52.169 442339 19655 442363 15491 1 5410 2025-03-18 18:33:19.986 2025-03-18 18:33:19.986 442529 1244 442688 7960 1 5411 2025-03-18 15:28:38.201 2025-03-18 15:28:38.201 442023 11477 442482 19759 2 5412 2025-03-18 15:21:42.832 2025-03-18 15:21:42.832 442023 11477 442469 21349 1 5413 2025-03-19 11:04:18.316 2025-03-19 11:04:18.316 442023 11477 443449 13574 2 5414 2025-03-18 21:09:57.156 2025-03-18 21:09:57.156 442023 11477 442855 18727 1 5415 2025-03-18 19:15:34.068 2025-03-18 19:15:34.068 442023 11477 442740 17221 1 5416 2025-03-18 22:19:57.462 2025-03-18 22:19:57.462 442023 11477 442926 21202 1 5417 2025-03-20 03:02:51.322 2025-03-20 03:02:51.322 444144 18306 444571 11288 1 5418 2025-03-19 05:26:29.678 2025-03-19 05:26:29.678 443129 4027 443157 13865 1 5419 2025-03-19 09:28:08.335 2025-03-19 09:28:08.335 443129 4027 443345 11829 1 5420 2025-03-19 11:48:00.232 2025-03-19 11:48:00.232 443129 4027 443509 18525 1 5421 2025-03-18 14:51:16.228 2025-03-18 14:51:16.228 442084 756 442417 15890 2 5422 2025-03-18 13:44:18.442 2025-03-18 13:44:18.442 442084 756 442252 836 4 5423 2025-03-18 15:22:10 2025-03-18 15:22:10 442084 756 442470 9 2 5424 2025-03-18 12:58:26.559 2025-03-18 12:58:26.559 442084 756 442138 4259 3 5425 2025-03-18 14:45:43.028 2025-03-18 14:45:43.028 442084 756 442398 18270 1 5426 2025-03-18 14:50:35.789 2025-03-18 14:50:35.789 442084 756 442414 21631 1 5427 2025-03-18 16:16:24.466 2025-03-18 16:16:24.466 442084 756 442541 11378 1 5428 2025-03-19 11:02:40.011 2025-03-19 11:02:40.011 442084 756 443445 5728 3 5429 2025-03-19 12:51:36.634 2025-03-19 12:51:36.634 442084 756 443650 5036 1 5430 2025-03-19 00:13:59.209 2025-03-19 00:13:59.209 442084 756 443006 683 1 5431 2025-03-18 12:50:11.312 2025-03-18 12:50:11.312 442084 756 442109 20864 1 5432 2025-03-18 17:21:02.741 2025-03-18 17:21:02.741 442084 756 442600 4768 1 5433 2025-03-18 18:54:54.682 2025-03-18 18:54:54.682 442084 756 442707 16966 2 5434 2025-03-18 13:53:27.376 2025-03-18 13:53:27.376 442084 756 442279 12334 5 5435 2025-03-18 13:45:40.741 2025-03-18 13:45:40.741 442084 756 442258 18743 4 5436 2025-03-19 10:35:19.274 2025-03-19 10:35:19.274 442084 756 443409 15119 1 5437 2025-03-18 14:57:19.477 2025-03-18 14:57:19.477 442084 756 442427 725 2 5438 2025-03-18 13:40:21.597 2025-03-18 13:40:21.597 442084 756 442243 7913 3 5439 2025-03-18 14:47:37.151 2025-03-18 14:47:37.151 442084 756 442405 688 1 5440 2025-03-19 07:29:53.75 2025-03-19 07:29:53.75 442084 756 443225 14607 1 5441 2025-03-19 12:15:10.294 2025-03-19 12:15:10.294 442084 756 443552 7847 1 5442 2025-03-19 12:18:56.102 2025-03-19 12:18:56.102 442084 756 443564 17953 4 5443 2025-03-19 12:19:22.061 2025-03-19 12:19:22.061 442084 756 443566 21631 2 5444 2025-03-19 12:20:36.224 2025-03-19 12:20:36.224 442084 756 443570 3686 2 5445 2025-03-18 12:54:46.86 2025-03-18 12:54:46.86 442084 756 442124 7827 2 5446 2025-03-19 07:41:11.136 2025-03-19 07:41:11.136 442084 756 443235 2776 2 5447 2025-03-18 13:53:27.376 2025-03-18 13:53:27.376 442138 4259 442279 12334 2 5448 2025-03-18 13:45:40.741 2025-03-18 13:45:40.741 442138 4259 442258 18743 1 5449 2025-03-18 13:11:32.035 2025-03-18 13:11:32.035 442148 20187 442157 2722 1 5450 2025-03-19 07:56:12.059 2025-03-19 07:56:12.059 442191 16513 443258 651 2 5451 2025-03-19 09:56:20.611 2025-03-19 09:56:20.611 442191 16513 443370 14959 3 5452 2025-03-18 14:38:26.799 2025-03-18 14:38:26.799 442191 16513 442374 20963 1 5453 2025-03-18 16:38:55.686 2025-03-18 16:38:55.686 442191 16513 442561 17710 1 5454 2025-03-19 22:06:23.506 2025-03-19 22:06:23.506 442191 16513 444445 5175 1 5455 2025-03-18 13:29:24.78 2025-03-18 13:29:24.78 442191 16513 442215 2361 1 5456 2025-03-19 07:53:35.519 2025-03-19 07:53:35.519 442191 16513 443253 929 2 5457 2025-03-19 07:50:43.84 2025-03-19 07:50:43.84 442191 16513 443246 11423 2 5458 2025-03-18 14:16:55.452 2025-03-18 14:16:55.452 442195 14489 442333 17570 1 5459 2025-03-18 14:27:08.832 2025-03-18 14:27:08.832 442195 14489 442355 622 2 5460 2025-03-18 13:44:18.442 2025-03-18 13:44:18.442 442243 7913 442252 836 1 5461 2025-03-18 14:05:51.19 2025-03-18 14:05:51.19 442281 20715 442309 6149 1 5462 2025-03-18 21:41:14.687 2025-03-18 21:41:14.687 442851 17824 442900 4074 1 5463 2025-03-18 21:15:24.152 2025-03-18 21:15:24.152 442853 13399 442865 5003 1 5464 2025-03-19 23:16:42.763 2025-03-19 23:16:42.763 443652 20755 444482 16954 1 5465 2025-03-19 23:18:06.251 2025-03-19 23:18:06.251 443652 20755 444483 12222 2 5466 2025-03-19 21:33:35.403 2025-03-19 21:33:35.403 443712 15806 444419 16978 2 5467 2025-03-19 22:28:46.5 2025-03-19 22:28:46.5 443712 15806 444456 21734 3 5468 2025-03-20 01:00:58.534 2025-03-20 01:00:58.534 443712 15806 444520 15662 1 5469 2025-03-19 18:47:39.239 2025-03-19 18:47:39.239 443712 15806 444281 19394 1 5470 2025-03-19 16:04:38.006 2025-03-19 16:04:38.006 443712 15806 444011 20370 1 5471 2025-03-20 00:04:58.461 2025-03-20 00:04:58.461 443712 15806 444498 21442 4 5472 2025-03-19 19:35:14.174 2025-03-19 19:35:14.174 443712 15806 444324 19459 2 5473 2025-03-19 23:25:18.395 2025-03-19 23:25:18.395 443712 15806 444489 21042 3 5474 2025-03-19 22:18:27.114 2025-03-19 22:18:27.114 443712 15806 444453 1585 6 5475 2025-03-19 18:51:36.762 2025-03-19 18:51:36.762 443712 15806 444290 18309 1 5476 2025-03-19 14:36:08.837 2025-03-19 14:36:08.837 443712 15806 443834 5427 1 5477 2025-03-19 22:04:01.03 2025-03-19 22:04:01.03 443712 15806 444444 5904 5 5478 2025-03-19 22:28:13.631 2025-03-19 22:28:13.631 443712 15806 444455 1602 7 5479 2025-03-19 17:58:44.017 2025-03-19 17:58:44.017 443712 15806 444179 14169 1 5480 2025-03-19 22:56:03.499 2025-03-19 22:56:03.499 443712 15806 444470 13553 4 5481 2025-03-19 21:23:57.846 2025-03-19 21:23:57.846 443712 15806 444416 1769 3 5482 2025-03-19 21:55:08.252 2025-03-19 21:55:08.252 443712 15806 444436 5293 4 5483 2025-03-19 21:15:28.226 2025-03-19 21:15:28.226 443712 15806 444412 3686 2 5484 2025-03-18 20:34:13.924 2025-03-18 20:34:13.924 442298 20019 442807 1723 1 5485 2025-03-19 17:39:35.03 2025-03-19 17:39:35.03 444138 1712 444156 9364 1 5486 2025-03-18 18:54:50.71 2025-03-18 18:54:50.71 442313 18426 442706 14122 1 5487 2025-03-18 16:36:45.483 2025-03-18 16:36:45.483 442313 18426 442556 14651 1 5488 2025-03-19 04:59:26.212 2025-03-19 04:59:26.212 442313 18426 443146 21683 1 5489 2025-03-18 17:41:38.784 2025-03-18 17:41:38.784 442313 18426 442613 12368 1 5490 2025-03-19 01:10:20.353 2025-03-19 01:10:20.353 442313 18426 443038 3642 1 5491 2025-03-19 11:40:33.487 2025-03-19 11:40:33.487 442313 18426 443492 2722 2 5492 2025-03-19 22:46:23.487 2025-03-19 22:46:23.487 442508 2322 444466 11423 2 5493 2025-03-18 18:48:01.217 2025-03-18 18:48:01.217 442508 2322 442701 6160 1 5494 2025-03-19 03:36:15.462 2025-03-19 03:36:15.462 442508 2322 443093 20599 3 5495 2025-03-18 18:26:48.141 2025-03-18 18:26:48.141 442508 2322 442677 14213 1 5496 2025-03-18 19:08:58.13 2025-03-18 19:08:58.13 442508 2322 442730 15192 2 5497 2025-03-18 21:12:48.953 2025-03-18 21:12:48.953 442371 10719 442858 2293 1 5498 2025-03-18 14:51:16.228 2025-03-18 14:51:16.228 442398 18270 442417 15890 1 5499 2025-03-18 18:00:51.266 2025-03-18 18:00:51.266 442634 18177 442637 16126 1 5500 2025-03-28 23:07:28.239 2025-03-28 23:07:28.239 458011 21518 458073 14489 1 5501 2025-03-29 06:39:40.28 2025-03-29 06:39:40.28 458011 21518 458265 1394 2 5502 2025-03-28 23:48:25.947 2025-03-28 23:48:25.947 458011 21518 458111 10393 1 5503 2025-03-29 06:33:30.647 2025-03-29 06:33:30.647 458011 21518 458260 21620 2 5504 2025-03-28 23:16:47.373 2025-03-28 23:16:47.373 458011 21518 458094 1802 1 5505 2025-03-29 06:35:43.892 2025-03-29 06:35:43.892 458011 21518 458261 19943 2 5506 2025-03-29 06:40:20.036 2025-03-29 06:40:20.036 458011 21518 458267 16556 2 5507 2025-03-29 00:20:29.312 2025-03-29 00:20:29.312 458011 21518 458118 9921 1 5508 2025-03-28 23:09:31.127 2025-03-28 23:09:31.127 458011 21518 458077 1814 1 5509 2025-03-29 06:41:22.152 2025-03-29 06:41:22.152 458011 21518 458269 17291 2 5510 2025-03-29 01:29:34.801 2025-03-29 01:29:34.801 458011 21518 458132 17976 1 5511 2025-03-29 06:42:40.875 2025-03-29 06:42:40.875 458011 21518 458270 7809 2 5512 2025-03-29 08:29:09.352 2025-03-29 08:29:09.352 458011 21518 458372 5520 1 5513 2025-03-18 14:57:19.477 2025-03-18 14:57:19.477 442405 688 442427 725 1 5514 2025-03-18 21:16:13.235 2025-03-18 21:16:13.235 442856 11158 442867 20588 1 5515 2025-03-18 14:52:12.556 2025-03-18 14:52:12.556 442411 12951 442419 10862 1 5516 2025-03-18 15:22:10 2025-03-18 15:22:10 442414 21631 442470 9 1 5517 2025-03-18 15:28:38.201 2025-03-18 15:28:38.201 442469 21349 442482 19759 1 5518 2025-03-19 05:38:25.931 2025-03-19 05:38:25.931 443160 21521 443165 16410 1 5519 2025-03-19 12:46:15.781 2025-03-19 12:46:15.781 443160 21521 443626 704 1 5520 2025-03-18 18:54:54.682 2025-03-18 18:54:54.682 442541 11378 442707 16966 1 5521 2025-03-18 18:16:29.632 2025-03-18 18:16:29.632 442653 636 442658 17535 1 5522 2025-03-19 22:46:23.487 2025-03-19 22:46:23.487 442677 14213 444466 11423 1 5523 2025-03-19 03:36:15.462 2025-03-19 03:36:15.462 442730 15192 443093 20599 1 5524 2025-03-18 20:47:39.754 2025-03-18 20:47:39.754 442817 16276 442819 21247 1 5525 2025-03-18 21:02:52.25 2025-03-18 21:02:52.25 442834 880 442843 1712 1 5526 2025-03-20 00:14:13.292 2025-03-20 00:14:13.292 443598 2609 444501 3656 1 5527 2025-03-19 12:46:29.893 2025-03-19 12:46:29.893 443625 21184 443627 19796 1 5528 2025-03-22 15:32:26.411 2025-03-22 15:32:26.411 448347 694 448405 15662 1 5529 2025-03-19 20:02:04.197 2025-03-19 20:02:04.197 442859 1428 444350 20073 2 5530 2025-03-18 21:41:13.86 2025-03-18 21:41:13.86 442859 1428 442899 21067 1 5531 2025-03-19 08:16:47.058 2025-03-19 08:16:47.058 442904 13042 443269 19673 1 5532 2025-03-19 09:32:26.474 2025-03-19 09:32:26.474 442904 13042 443352 12976 1 5533 2025-03-19 18:23:00.679 2025-03-19 18:23:00.679 442904 13042 444231 7097 3 5534 2025-03-19 00:36:17.722 2025-03-19 00:36:17.722 442904 13042 443014 21577 1 5535 2025-03-19 12:30:08.685 2025-03-19 12:30:08.685 442904 13042 443585 20058 1 5536 2025-03-19 03:22:30.033 2025-03-19 03:22:30.033 442904 13042 443092 4083 1 5537 2025-03-19 09:54:21.973 2025-03-19 09:54:21.973 442904 13042 443368 14785 2 5538 2025-03-19 09:58:29.43 2025-03-19 09:58:29.43 442904 13042 443373 14857 2 5539 2025-03-19 07:09:37.598 2025-03-19 07:09:37.598 443169 2309 443217 7418 1 5540 2025-03-19 07:32:11.107 2025-03-19 07:32:11.107 443178 4043 443227 5590 1 5541 2025-03-19 08:48:33.02 2025-03-19 08:48:33.02 443178 4043 443299 4083 1 5542 2025-03-19 06:32:11.265 2025-03-19 06:32:11.265 443178 4043 443192 9242 1 5543 2025-03-19 07:38:33.802 2025-03-19 07:38:33.802 443178 4043 443233 750 2 5544 2025-03-19 07:37:23.409 2025-03-19 07:37:23.409 443178 4043 443232 4292 1 5545 2025-03-19 14:37:32.184 2025-03-19 14:37:32.184 443268 20657 443837 18630 1 5546 2025-03-19 20:28:21.563 2025-03-19 20:28:21.563 443268 20657 444373 21421 1 5547 2025-03-20 00:18:46.347 2025-03-20 00:18:46.347 443268 20657 444505 5942 2 5548 2025-03-23 19:12:36.806 2025-03-23 19:12:36.806 450087 19992 450129 6360 1 5549 2025-03-19 12:01:20.728 2025-03-19 12:01:20.728 443272 10063 443527 18829 1 5550 2025-03-19 08:24:16.435 2025-03-19 08:24:16.435 443272 10063 443276 21249 1 5551 2025-03-19 08:48:17.677 2025-03-19 08:48:17.677 443272 10063 443298 1505 2 5552 2025-03-19 08:51:57.228 2025-03-19 08:51:57.228 443272 10063 443307 21709 3 5553 2025-03-19 12:15:12.081 2025-03-19 12:15:12.081 443272 10063 443553 11648 1 5554 2025-03-19 12:20:58.379 2025-03-19 12:20:58.379 443272 10063 443571 18330 1 5555 2025-03-19 13:09:14.176 2025-03-19 13:09:14.176 443272 10063 443673 12245 1 5556 2025-03-19 08:35:02.198 2025-03-19 08:35:02.198 443272 10063 443283 16145 1 5557 2025-03-19 22:07:43.563 2025-03-19 22:07:43.563 443272 10063 444446 4177 2 5558 2025-03-19 12:25:49.572 2025-03-19 12:25:49.572 443272 10063 443580 708 1 5559 2025-03-19 11:50:44.305 2025-03-19 11:50:44.305 443272 10063 443514 17064 1 5560 2025-03-19 12:35:03.503 2025-03-19 12:35:03.503 443272 10063 443595 4314 1 5561 2025-03-19 13:18:05.845 2025-03-19 13:18:05.845 443593 20717 443688 21349 1 5562 2025-03-20 00:12:57.292 2025-03-20 00:12:57.292 443593 20717 444499 20525 1 5563 2025-03-20 00:22:09.582 2025-03-20 00:22:09.582 443593 20717 444507 9341 5 5564 2025-03-19 14:27:52.477 2025-03-19 14:27:52.477 443593 20717 443810 16667 1 5565 2025-03-19 14:14:17.274 2025-03-19 14:14:17.274 443593 20717 443787 17011 3 5566 2025-03-19 12:36:41.753 2025-03-19 12:36:41.753 443593 20717 443598 2609 1 5567 2025-03-20 00:14:13.292 2025-03-20 00:14:13.292 443593 20717 444501 3656 2 5568 2025-03-19 16:44:39.385 2025-03-19 16:44:39.385 443593 20717 444071 5794 4 5569 2025-03-19 17:31:11.437 2025-03-19 17:31:11.437 443593 20717 444144 18306 5 5570 2025-03-20 03:02:51.322 2025-03-20 03:02:51.322 443593 20717 444571 11288 6 5571 2025-03-20 00:17:18.202 2025-03-20 00:17:18.202 443593 20717 444503 15336 2 5572 2025-03-19 12:42:08.703 2025-03-19 12:42:08.703 443593 20717 443614 628 1 5573 2025-03-19 14:07:35.394 2025-03-19 14:07:35.394 443593 20717 443774 21401 2 5574 2025-03-20 01:18:57.824 2025-03-20 01:18:57.824 443274 14472 444531 20525 1 5575 2025-03-19 10:32:05.796 2025-03-19 10:32:05.796 443274 14472 443406 895 1 5576 2025-03-19 10:33:35.008 2025-03-19 10:33:35.008 443274 14472 443408 7510 1 5577 2025-03-19 11:01:08.326 2025-03-19 11:01:08.326 443274 14472 443442 2039 3 5578 2025-03-19 08:40:43.161 2025-03-19 08:40:43.161 443274 14472 443292 20901 2 5579 2025-03-19 08:38:49.393 2025-03-19 08:38:49.393 443274 14472 443290 762 1 5580 2025-03-19 08:27:35.077 2025-03-19 08:27:35.077 443274 14472 443279 20756 1 5581 2025-03-19 10:53:11.268 2025-03-19 10:53:11.268 443274 14472 443430 18368 1 5582 2025-03-19 12:22:02.22 2025-03-19 12:22:02.22 443274 14472 443573 1439 1 5583 2025-03-19 13:23:45.383 2025-03-19 13:23:45.383 443274 14472 443701 1008 1 5584 2025-03-19 09:14:38.268 2025-03-19 09:14:38.268 443295 7674 443336 9084 1 5585 2025-03-19 15:17:07.717 2025-03-19 15:17:07.717 443295 7674 443902 21522 5 5586 2025-03-19 14:11:56.307 2025-03-19 14:11:56.307 443295 7674 443781 15196 1 5587 2025-03-19 15:30:52.908 2025-03-19 15:30:52.908 443295 7674 443940 18011 1 5588 2025-03-19 10:10:55.433 2025-03-19 10:10:55.433 443295 7674 443381 6164 3 5589 2025-03-19 14:26:02.056 2025-03-19 14:26:02.056 443295 7674 443806 20913 2 5590 2025-03-19 09:16:40.096 2025-03-19 09:16:40.096 443295 7674 443338 1488 2 5591 2025-03-19 11:05:53.407 2025-03-19 11:05:53.407 443295 7674 443451 3506 2 5592 2025-03-19 11:16:01.421 2025-03-19 11:16:01.421 443295 7674 443460 16847 5 5593 2025-03-19 12:16:32.944 2025-03-19 12:16:32.944 443295 7674 443557 21798 2 5594 2025-03-19 11:46:08.937 2025-03-19 11:46:08.937 443295 7674 443505 1802 1 5595 2025-03-19 12:18:39.531 2025-03-19 12:18:39.531 443295 7674 443562 15326 3 5596 2025-03-19 12:20:32.455 2025-03-19 12:20:32.455 443295 7674 443568 15119 3 5597 2025-03-19 12:35:44.044 2025-03-19 12:35:44.044 443295 7674 443597 964 2 5598 2025-03-19 12:38:57.809 2025-03-19 12:38:57.809 443295 7674 443605 17727 1 5599 2025-03-19 12:47:13.548 2025-03-19 12:47:13.548 443295 7674 443633 18441 1 5600 2025-03-19 12:59:28.731 2025-03-19 12:59:28.731 443295 7674 443664 19138 1 5601 2025-03-19 13:19:12.055 2025-03-19 13:19:12.055 443295 7674 443690 9494 3 5602 2025-03-19 13:23:19.166 2025-03-19 13:23:19.166 443295 7674 443700 6149 4 5603 2025-03-19 11:53:05.729 2025-03-19 11:53:05.729 443295 7674 443517 9365 1 5604 2025-03-19 12:13:28.003 2025-03-19 12:13:28.003 443295 7674 443548 20990 1 5605 2025-03-19 15:03:31.361 2025-03-19 15:03:31.361 443295 7674 443886 1617 3 5606 2025-03-19 15:12:01.83 2025-03-19 15:12:01.83 443295 7674 443894 6191 4 5607 2025-03-19 15:09:08.865 2025-03-19 15:09:08.865 443295 7674 443889 641 3 5608 2025-03-19 15:38:16.943 2025-03-19 15:38:16.943 443295 7674 443958 9335 2 5609 2025-03-19 15:54:22.783 2025-03-19 15:54:22.783 443295 7674 443982 19537 3 5610 2025-03-19 23:02:50.312 2025-03-19 23:02:50.312 443295 7674 444473 17109 1 5611 2025-03-19 12:18:03.174 2025-03-19 12:18:03.174 443295 7674 443560 11648 2 5612 2025-03-19 12:43:59.399 2025-03-19 12:43:59.399 443295 7674 443620 11018 1 5613 2025-03-19 13:19:38.182 2025-03-19 13:19:38.182 443295 7674 443693 13365 1 5614 2025-03-19 08:51:51.55 2025-03-19 08:51:51.55 443295 7674 443305 20680 1 5615 2025-03-19 09:15:25.676 2025-03-19 09:15:25.676 443295 7674 443337 895 2 5616 2025-03-19 10:12:05.423 2025-03-19 10:12:05.423 443295 7674 443383 4287 3 5617 2025-03-19 09:07:00.318 2025-03-19 09:07:00.318 443295 7674 443327 21063 3 5618 2025-03-19 08:56:41.424 2025-03-19 08:56:41.424 443295 7674 443314 641 1 5619 2025-03-19 09:08:49.542 2025-03-19 09:08:49.542 443295 7674 443329 937 1 5620 2025-03-19 09:13:36.342 2025-03-19 09:13:36.342 443295 7674 443332 21709 1 5621 2025-03-19 10:14:51.714 2025-03-19 10:14:51.714 443295 7674 443387 8945 4 5622 2025-03-19 10:21:49.06 2025-03-19 10:21:49.06 443295 7674 443398 20291 5 5623 2025-03-19 11:33:41.623 2025-03-19 11:33:41.623 443295 7674 443481 18529 6 5624 2025-03-19 11:06:32.851 2025-03-19 11:06:32.851 443295 7674 443452 21373 4 5625 2025-03-19 10:09:35.628 2025-03-19 10:09:35.628 443295 7674 443380 16998 2 5626 2025-03-19 21:56:24.517 2025-03-19 21:56:24.517 443295 7674 444438 9339 2 5627 2025-03-19 10:41:39.47 2025-03-19 10:41:39.47 443295 7674 443416 20924 1 5628 2025-03-19 10:56:59.028 2025-03-19 10:56:59.028 443295 7674 443437 9378 1 5629 2025-03-19 11:34:48.022 2025-03-19 11:34:48.022 443295 7674 443483 21070 1 5630 2025-03-19 12:36:42.659 2025-03-19 12:36:42.659 443295 7674 443599 630 2 5631 2025-03-19 12:42:13.704 2025-03-19 12:42:13.704 443295 7674 443615 18114 3 5632 2025-03-19 13:17:13.477 2025-03-19 13:17:13.477 443295 7674 443687 20734 2 5633 2025-03-19 08:58:58.395 2025-03-19 08:58:58.395 443295 7674 443316 21416 1 5634 2025-03-19 08:55:39.77 2025-03-19 08:55:39.77 443295 7674 443312 13547 1 5635 2025-03-19 09:59:18.097 2025-03-19 09:59:18.097 443295 7674 443374 16858 2 5636 2025-03-19 08:52:40.559 2025-03-19 08:52:40.559 443295 7674 443308 12951 3 5637 2025-03-19 08:47:43.3 2025-03-19 08:47:43.3 443295 7674 443296 726 1 5638 2025-03-19 08:48:02.372 2025-03-19 08:48:02.372 443295 7674 443297 14225 1 5639 2025-03-19 09:10:00.332 2025-03-19 09:10:00.332 443295 7674 443330 16695 3 5640 2025-03-19 09:13:45.432 2025-03-19 09:13:45.432 443295 7674 443333 5578 4 5641 2025-03-19 09:03:15.363 2025-03-19 09:03:15.363 443295 7674 443320 20094 1 5642 2025-03-19 09:04:34.295 2025-03-19 09:04:34.295 443295 7674 443322 20687 2 5643 2025-03-19 09:07:41.402 2025-03-19 09:07:41.402 443295 7674 443328 20490 2 5644 2025-03-19 09:25:25.539 2025-03-19 09:25:25.539 443295 7674 443344 12779 2 5645 2025-03-19 09:58:08.74 2025-03-19 09:58:08.74 443295 7674 443371 11298 2 5646 2025-03-19 10:13:27.763 2025-03-19 10:13:27.763 443295 7674 443385 21238 3 5647 2025-03-19 08:51:36.433 2025-03-19 08:51:36.433 443295 7674 443302 989 2 5648 2025-03-19 08:53:30.466 2025-03-19 08:53:30.466 443295 7674 443309 782 2 5649 2025-03-19 08:51:25.155 2025-03-19 08:51:25.155 443295 7674 443301 2674 2 5650 2025-03-19 08:55:25.19 2025-03-19 08:55:25.19 443295 7674 443311 1426 4 5651 2025-03-19 08:57:20.854 2025-03-19 08:57:20.854 443295 7674 443315 11220 5 5652 2025-03-19 10:17:52.718 2025-03-19 10:17:52.718 443295 7674 443392 9920 6 5653 2025-03-19 09:05:32.466 2025-03-19 09:05:32.466 443295 7674 443325 20117 5 5654 2025-03-19 09:59:18.097 2025-03-19 09:59:18.097 443305 20680 443374 16858 1 5655 2025-03-19 09:15:25.676 2025-03-19 09:15:25.676 443305 20680 443337 895 1 5656 2025-03-19 10:12:05.423 2025-03-19 10:12:05.423 443305 20680 443383 4287 2 5657 2025-03-19 08:57:20.854 2025-03-19 08:57:20.854 443311 1426 443315 11220 1 5658 2025-03-19 10:17:52.718 2025-03-19 10:17:52.718 443311 1426 443392 9920 2 5659 2025-03-19 09:05:32.466 2025-03-19 09:05:32.466 443311 1426 443325 20117 1 5660 2025-03-19 10:14:08.487 2025-03-19 10:14:08.487 443372 15703 443386 11967 1 5661 2025-03-19 11:35:35.761 2025-03-19 11:35:35.761 443372 15703 443484 12946 3 5662 2025-03-19 13:11:28.068 2025-03-19 13:11:28.068 443372 15703 443677 20291 4 5663 2025-03-19 10:18:01.639 2025-03-19 10:18:01.639 443372 15703 443393 1471 2 5664 2025-03-19 10:16:57.465 2025-03-19 10:16:57.465 443372 15703 443390 21485 1 5665 2025-03-19 10:50:46.024 2025-03-19 10:50:46.024 443372 15703 443426 17690 4 5666 2025-03-19 10:51:49.825 2025-03-19 10:51:49.825 443372 15703 443429 21688 3 5667 2025-03-19 10:55:55.997 2025-03-19 10:55:55.997 443372 15703 443434 20137 4 5668 2025-03-19 10:59:53.321 2025-03-19 10:59:53.321 443372 15703 443440 20555 5 5669 2025-03-19 11:03:38.563 2025-03-19 11:03:38.563 443372 15703 443446 1512 6 5670 2025-03-19 23:18:06.251 2025-03-19 23:18:06.251 443372 15703 444483 12222 3 5671 2025-03-19 17:40:02.912 2025-03-19 17:40:02.912 443372 15703 444158 9438 1 5672 2025-03-19 23:12:20.605 2025-03-19 23:12:20.605 443372 15703 444480 5865 2 5673 2025-03-19 11:16:47.091 2025-03-19 11:16:47.091 443372 15703 443461 17797 1 5674 2025-03-19 11:31:49.523 2025-03-19 11:31:49.523 443372 15703 443478 10981 2 5675 2025-03-19 12:54:35.456 2025-03-19 12:54:35.456 443372 15703 443657 16808 2 5676 2025-03-19 13:15:36.395 2025-03-19 13:15:36.395 443372 15703 443684 20655 1 5677 2025-03-19 23:16:42.763 2025-03-19 23:16:42.763 443372 15703 444482 16954 2 5678 2025-03-20 03:10:16.14 2025-03-20 03:10:16.14 443372 15703 444578 17237 3 5679 2025-03-19 23:14:14.286 2025-03-19 23:14:14.286 443372 15703 444481 12188 2 5680 2025-03-19 10:50:59.157 2025-03-19 10:50:59.157 443372 15703 443427 6653 2 5681 2025-03-19 13:26:19.187 2025-03-19 13:26:19.187 443372 15703 443708 21405 1 5682 2025-03-19 12:52:34.143 2025-03-19 12:52:34.143 443372 15703 443652 20755 1 5683 2025-03-19 10:21:05.008 2025-03-19 10:21:05.008 443372 15703 443395 9529 2 5684 2025-03-19 10:22:48.285 2025-03-19 10:22:48.285 443372 15703 443400 763 3 5685 2025-03-19 12:31:23.536 2025-03-19 12:31:23.536 443372 15703 443588 9355 1 5686 2025-03-19 11:16:01.421 2025-03-19 11:16:01.421 443381 6164 443460 16847 2 5687 2025-03-19 11:06:32.851 2025-03-19 11:06:32.851 443381 6164 443452 21373 1 5688 2025-03-19 10:50:46.024 2025-03-19 10:50:46.024 443390 21485 443426 17690 3 5689 2025-03-19 10:51:49.825 2025-03-19 10:51:49.825 443390 21485 443429 21688 2 5690 2025-03-19 10:55:55.997 2025-03-19 10:55:55.997 443390 21485 443434 20137 3 5691 2025-03-19 10:59:53.321 2025-03-19 10:59:53.321 443390 21485 443440 20555 4 5692 2025-03-19 11:03:38.563 2025-03-19 11:03:38.563 443390 21485 443446 1512 5 5693 2025-03-19 10:50:59.157 2025-03-19 10:50:59.157 443390 21485 443427 6653 1 5694 2025-03-19 10:21:05.008 2025-03-19 10:21:05.008 443390 21485 443395 9529 1 5695 2025-03-19 10:22:48.285 2025-03-19 10:22:48.285 443390 21485 443400 763 2 5696 2025-03-19 11:44:27.212 2025-03-19 11:44:27.212 443495 21140 443502 9796 1 5697 2025-03-19 11:44:11.42 2025-03-19 11:44:11.42 443495 21140 443499 5455 1 5698 2025-03-19 11:47:41.072 2025-03-19 11:47:41.072 443495 21140 443508 19668 1 5699 2025-03-19 11:57:05.597 2025-03-19 11:57:05.597 443495 21140 443522 16653 1 5700 2025-03-19 22:07:43.563 2025-03-19 22:07:43.563 443527 18829 444446 4177 1 5701 2025-03-21 17:23:17.642 2025-03-21 17:23:17.642 447143 683 447200 5017 1 5702 2025-03-21 17:04:23.523 2025-03-21 17:04:23.523 447143 683 447179 1064 1 5703 2025-03-21 17:19:26.711 2025-03-21 17:19:26.711 447143 683 447195 16456 1 5704 2025-03-21 17:22:55.371 2025-03-21 17:22:55.371 447143 683 447199 2328 2 5705 2025-03-21 17:43:02.14 2025-03-21 17:43:02.14 447143 683 447219 21051 3 5706 2025-03-21 20:42:06.775 2025-03-21 20:42:06.775 447143 683 447442 4459 2 5707 2025-03-22 10:45:30.511 2025-03-22 10:45:30.511 447143 683 448011 17727 1 5708 2025-03-22 18:27:53.058 2025-03-22 18:27:53.058 447143 683 448617 4984 1 5709 2025-03-22 18:25:49.199 2025-03-22 18:25:49.199 447143 683 448612 15536 3 5710 2025-03-21 19:30:59.459 2025-03-21 19:30:59.459 447251 19005 447348 9109 3 5711 2025-03-21 18:30:34.099 2025-03-21 18:30:34.099 447251 19005 447267 15091 1 5712 2025-03-22 16:04:19.012 2025-03-22 16:04:19.012 447251 19005 448466 9275 1 5713 2025-03-21 18:25:41.063 2025-03-21 18:25:41.063 447251 19005 447262 21578 1 5714 2025-03-21 20:47:11.231 2025-03-21 20:47:11.231 447251 19005 447455 910 4 5715 2025-03-21 18:46:27.927 2025-03-21 18:46:27.927 447251 19005 447287 19966 2 5716 2025-03-19 12:24:00.437 2025-03-19 12:24:00.437 443528 12566 443576 16808 1 5717 2025-03-19 12:18:19.955 2025-03-19 12:18:19.955 443528 12566 443561 21599 1 5718 2025-03-19 23:09:53.626 2025-03-19 23:09:53.626 443528 12566 444476 1741 1 5719 2025-03-20 01:44:45.411 2025-03-20 01:44:45.411 443545 13348 444542 1389 1 5720 2025-03-19 12:17:26.496 2025-03-19 12:17:26.496 443545 13348 443559 14939 1 5721 2025-03-19 12:41:00.622 2025-03-19 12:41:00.622 443545 13348 443610 2724 1 5722 2025-03-19 12:46:46.042 2025-03-19 12:46:46.042 443545 13348 443630 15588 2 5723 2025-03-19 13:39:15.084 2025-03-19 13:39:15.084 443545 13348 443725 10094 1 5724 2025-03-19 12:42:45.059 2025-03-19 12:42:45.059 443545 13348 443616 1729 1 5725 2025-03-19 12:55:19.668 2025-03-19 12:55:19.668 443545 13348 443659 7425 1 5726 2025-03-19 13:10:46.502 2025-03-19 13:10:46.502 443545 13348 443675 4768 2 5727 2025-03-19 13:59:51.015 2025-03-19 13:59:51.015 443545 13348 443758 11561 3 5728 2025-03-19 13:22:04.685 2025-03-19 13:22:04.685 443545 13348 443699 20019 1 5729 2025-03-19 13:24:19.281 2025-03-19 13:24:19.281 443545 13348 443702 1008 1 5730 2025-03-19 14:05:16.678 2025-03-19 14:05:16.678 443545 13348 443768 3456 1 5731 2025-03-19 12:42:07.034 2025-03-19 12:42:07.034 443577 2013 443613 6191 1 5732 2025-03-19 14:06:45.206 2025-03-19 14:06:45.206 443577 2013 443772 919 6 5733 2025-03-19 14:18:38.409 2025-03-19 14:18:38.409 443577 2013 443796 8289 7 5734 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443577 2013 443845 21522 12 5735 2025-03-19 12:51:45.966 2025-03-19 12:51:45.966 443577 2013 443651 722 1 5736 2025-03-19 13:29:43.662 2025-03-19 13:29:43.662 443577 2013 443711 2640 2 5737 2025-03-19 13:14:07.059 2025-03-19 13:14:07.059 443577 2013 443681 21427 5 5738 2025-03-19 14:06:18.425 2025-03-19 14:06:18.425 443577 2013 443771 21482 4 5739 2025-03-19 13:35:50.138 2025-03-19 13:35:50.138 443577 2013 443718 11999 3 5740 2025-03-19 13:37:53.055 2025-03-19 13:37:53.055 443577 2013 443720 12049 3 5741 2025-03-19 13:38:41.33 2025-03-19 13:38:41.33 443577 2013 443724 13759 4 5742 2025-03-19 13:44:12.672 2025-03-19 13:44:12.672 443577 2013 443729 16177 1 5743 2025-03-19 13:55:58.242 2025-03-19 13:55:58.242 443577 2013 443750 19888 1 5744 2025-03-19 14:04:07.509 2025-03-19 14:04:07.509 443577 2013 443764 15196 3 5745 2025-03-19 14:34:10.46 2025-03-19 14:34:10.46 443577 2013 443831 670 10 5746 2025-03-19 14:27:58.927 2025-03-19 14:27:58.927 443577 2013 443811 16230 8 5747 2025-03-19 14:36:28.243 2025-03-19 14:36:28.243 443577 2013 443835 21012 11 5748 2025-03-19 12:59:19.125 2025-03-19 12:59:19.125 443577 2013 443663 782 1 5749 2025-03-19 13:08:54.618 2025-03-19 13:08:54.618 443577 2013 443672 18528 2 5750 2025-03-19 13:18:09.409 2025-03-19 13:18:09.409 443577 2013 443689 7869 1 5751 2025-03-19 13:26:50.79 2025-03-19 13:26:50.79 443577 2013 443709 1602 2 5752 2025-03-19 13:31:48.133 2025-03-19 13:31:48.133 443577 2013 443714 894 1 5753 2025-03-19 13:34:48.938 2025-03-19 13:34:48.938 443577 2013 443716 12921 2 5754 2025-03-19 14:00:46.126 2025-03-19 14:00:46.126 443577 2013 443759 20198 2 5755 2025-03-20 02:29:53.288 2025-03-20 02:29:53.288 443577 2013 444558 19924 1 5756 2025-03-20 03:50:19.813 2025-03-20 03:50:19.813 443577 2013 444598 1740 2 5757 2025-03-20 02:47:18.464 2025-03-20 02:47:18.464 443577 2013 444569 21620 1 5758 2025-03-19 14:30:39.44 2025-03-19 14:30:39.44 443577 2013 443819 14357 9 5759 2025-03-19 13:05:00.796 2025-03-19 13:05:00.796 443577 2013 443669 20841 2 5760 2025-03-19 13:11:22.167 2025-03-19 13:11:22.167 443577 2013 443676 17708 3 5761 2025-03-19 13:13:43.575 2025-03-19 13:13:43.575 443577 2013 443680 2010 4 5762 2025-03-19 13:17:00.816 2025-03-19 13:17:00.816 443577 2013 443686 19087 6 5763 2025-03-19 13:08:12.69 2025-03-19 13:08:12.69 443577 2013 443671 20778 2 5764 2025-03-19 13:59:40.572 2025-03-19 13:59:40.572 443577 2013 443757 1814 5 5765 2025-03-19 13:45:14.733 2025-03-19 13:45:14.733 443577 2013 443731 1319 4 5766 2025-03-19 13:32:15.265 2025-03-19 13:32:15.265 443577 2013 443715 632 3 5767 2025-03-19 15:10:24.501 2025-03-19 15:10:24.501 443888 4177 443891 9261 1 5768 2025-03-19 21:42:39.293 2025-03-19 21:42:39.293 443583 20577 444427 12261 1 5769 2025-03-19 12:45:46.032 2025-03-19 12:45:46.032 443583 20577 443624 8506 1 5770 2025-03-19 12:48:56.968 2025-03-19 12:48:56.968 443583 20577 443645 1044 1 5771 2025-03-19 12:54:32.757 2025-03-19 12:54:32.757 443583 20577 443656 16834 1 5772 2025-03-19 13:38:39.323 2025-03-19 13:38:39.323 443583 20577 443723 1064 1 5773 2025-03-19 12:41:10.336 2025-03-19 12:41:10.336 443583 20577 443611 21114 1 5774 2025-03-19 12:55:52.184 2025-03-19 12:55:52.184 443583 20577 443660 13878 2 5775 2025-03-19 12:55:05.961 2025-03-19 12:55:05.961 443583 20577 443658 664 1 5776 2025-03-19 13:24:32.193 2025-03-19 13:24:32.193 443583 20577 443703 16176 1 5777 2025-03-19 13:37:55.134 2025-03-19 13:37:55.134 443583 20577 443721 20829 1 5778 2025-03-19 18:01:52.341 2025-03-19 18:01:52.341 443743 7978 444183 15103 1 5779 2025-03-20 03:09:24.665 2025-03-20 03:09:24.665 443743 7978 444576 659 2 5780 2025-03-19 13:55:06.884 2025-03-19 13:55:06.884 443743 7978 443747 15060 1 5781 2025-03-24 14:20:04.949 2025-03-24 14:20:04.949 443755 726 451368 11776 1 5782 2025-03-19 14:18:38.409 2025-03-19 14:18:38.409 443772 919 443796 8289 1 5783 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443772 919 443845 21522 6 5784 2025-03-19 14:34:10.46 2025-03-19 14:34:10.46 443772 919 443831 670 4 5785 2025-03-19 14:27:58.927 2025-03-19 14:27:58.927 443772 919 443811 16230 2 5786 2025-03-19 14:36:28.243 2025-03-19 14:36:28.243 443772 919 443835 21012 5 5787 2025-03-19 14:30:39.44 2025-03-19 14:30:39.44 443772 919 443819 14357 3 5788 2025-03-19 14:39:31.761 2025-03-19 14:39:31.761 443799 19821 443839 21247 2 5789 2025-03-19 19:58:20.819 2025-03-19 19:58:20.819 443799 19821 444347 711 1 5790 2025-03-19 14:34:01.032 2025-03-19 14:34:01.032 443799 19821 443830 20603 1 5791 2025-03-20 08:52:32.285 2025-03-20 08:52:32.285 443799 19821 444786 4474 2 5792 2025-03-21 18:14:57.367 2025-03-21 18:14:57.367 443799 19821 447253 16447 6 5793 2025-03-21 13:54:17.272 2025-03-21 13:54:17.272 443799 19821 446840 3411 5 5794 2025-03-21 13:15:26.694 2025-03-21 13:15:26.694 443799 19821 446786 750 4 5795 2025-03-20 16:03:03.505 2025-03-20 16:03:03.505 443799 19821 445531 658 3 5796 2025-03-19 14:48:48.979 2025-03-19 14:48:48.979 443799 19821 443861 14774 1 5797 2025-03-19 15:17:07.717 2025-03-19 15:17:07.717 443806 20913 443902 21522 3 5798 2025-03-19 15:03:31.361 2025-03-19 15:03:31.361 443806 20913 443886 1617 1 5799 2025-03-19 15:12:01.83 2025-03-19 15:12:01.83 443806 20913 443894 6191 2 5800 2025-03-19 15:09:08.865 2025-03-19 15:09:08.865 443806 20913 443889 641 1 5801 2025-03-20 00:17:18.202 2025-03-20 00:17:18.202 443810 16667 444503 15336 1 5802 2025-03-19 14:39:31.761 2025-03-19 14:39:31.761 443830 20603 443839 21247 1 5803 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443835 21012 443845 21522 1 5804 2025-03-19 22:12:21.688 2025-03-19 22:12:21.688 443836 910 444451 1519 3 5805 2025-03-19 21:45:53.29 2025-03-19 21:45:53.29 443836 910 444431 11165 2 5806 2025-03-19 21:45:00.252 2025-03-19 21:45:00.252 443836 910 444430 14651 2 5807 2025-03-19 22:08:17.795 2025-03-19 22:08:17.795 443836 910 444448 5522 2 5808 2025-03-20 02:04:08.37 2025-03-20 02:04:08.37 443836 910 444550 1650 1 5809 2025-03-19 15:29:05.517 2025-03-19 15:29:05.517 443836 910 443934 20788 1 5810 2025-03-19 17:14:43.188 2025-03-19 17:14:43.188 443836 910 444116 2640 1 5811 2025-03-19 19:05:08.139 2025-03-19 19:05:08.139 443836 910 444306 5779 1 5812 2025-03-19 20:37:53.905 2025-03-19 20:37:53.905 443836 910 444378 1620 2 5813 2025-03-19 21:47:18.587 2025-03-19 21:47:18.587 443836 910 444432 17184 4 5814 2025-03-20 01:47:03.688 2025-03-20 01:47:03.688 443836 910 444544 20990 1 5815 2025-03-19 19:57:52.797 2025-03-19 19:57:52.797 443836 910 444346 7992 1 5816 2025-03-19 20:41:13.614 2025-03-19 20:41:13.614 443836 910 444382 19663 1 5817 2025-03-19 20:44:05.462 2025-03-19 20:44:05.462 443836 910 444385 880 3 5818 2025-03-20 00:18:46.347 2025-03-20 00:18:46.347 443837 18630 444505 5942 1 5819 2025-03-19 19:54:34.338 2025-03-19 19:54:34.338 443867 21019 444341 2206 3 5820 2025-03-19 17:17:13.164 2025-03-19 17:17:13.164 443867 21019 444121 2492 2 5821 2025-03-19 17:15:58.993 2025-03-19 17:15:58.993 443867 21019 444117 18423 1 5822 2025-03-19 23:12:20.605 2025-03-19 23:12:20.605 444158 9438 444480 5865 1 5823 2025-03-19 15:51:18.308 2025-03-19 15:51:18.308 443919 9921 443973 2537 1 5824 2025-03-19 15:35:21.624 2025-03-19 15:35:21.624 443919 9921 443953 17046 1 5825 2025-03-19 17:28:14.79 2025-03-19 17:28:14.79 443919 9921 444139 4624 2 5826 2025-03-19 19:55:25.036 2025-03-19 19:55:25.036 443919 9921 444343 20788 2 5827 2025-03-19 15:54:22.783 2025-03-19 15:54:22.783 443958 9335 443982 19537 1 5828 2025-03-19 19:55:25.036 2025-03-19 19:55:25.036 443973 2537 444343 20788 1 5829 2025-03-19 18:20:00.541 2025-03-19 18:20:00.541 444015 21051 444227 2361 2 5830 2025-03-19 20:07:11.504 2025-03-19 20:07:11.504 444015 21051 444355 20858 1 5831 2025-03-19 18:03:12.373 2025-03-19 18:03:12.373 444015 21051 444188 15148 1 5832 2025-03-20 00:22:09.582 2025-03-20 00:22:09.582 444071 5794 444507 9341 1 5833 2025-03-19 17:31:11.437 2025-03-19 17:31:11.437 444071 5794 444144 18306 1 5834 2025-03-20 03:02:51.322 2025-03-20 03:02:51.322 444071 5794 444571 11288 2 5835 2025-03-19 17:26:55.112 2025-03-19 17:26:55.112 444097 20990 444136 9349 1 5836 2025-03-19 18:16:11.816 2025-03-19 18:16:11.816 444097 20990 444218 21485 1 5837 2025-03-19 19:41:13.243 2025-03-19 19:41:13.243 444097 20990 444330 2232 2 5838 2025-03-19 19:48:21.716 2025-03-19 19:48:21.716 444097 20990 444333 954 3 5839 2025-03-19 20:15:30.296 2025-03-19 20:15:30.296 444102 11491 444367 21047 1 5840 2025-03-21 20:47:11.231 2025-03-21 20:47:11.231 447348 9109 447455 910 1 5841 2025-03-19 19:53:47.877 2025-03-19 19:53:47.877 444114 18637 444340 16633 9 5842 2025-03-19 20:03:08.232 2025-03-19 20:03:08.232 444114 18637 444351 2233 11 5843 2025-03-19 19:47:12.523 2025-03-19 19:47:12.523 444114 18637 444332 5809 8 5844 2025-03-19 18:50:54.18 2025-03-19 18:50:54.18 444114 18637 444289 3506 7 5845 2025-03-19 18:46:10.174 2025-03-19 18:46:10.174 444114 18637 444277 9184 6 5846 2025-03-19 18:11:16.996 2025-03-19 18:11:16.996 444114 18637 444207 1620 4 5847 2025-03-19 17:25:44.974 2025-03-19 17:25:44.974 444114 18637 444132 16284 1 5848 2025-03-19 17:33:23.532 2025-03-19 17:33:23.532 444114 18637 444150 20674 3 5849 2025-03-19 18:13:37.246 2025-03-19 18:13:37.246 444114 18637 444213 2088 5 5850 2025-03-19 17:30:18.716 2025-03-19 17:30:18.716 444114 18637 444143 937 2 5851 2025-03-19 20:00:02.534 2025-03-19 20:00:02.534 444114 18637 444348 19535 10 5852 2025-03-23 21:24:54.466 2025-03-23 21:24:54.466 449146 997 450321 894 1 5853 2025-03-20 00:04:58.461 2025-03-20 00:04:58.461 444179 14169 444498 21442 3 5854 2025-03-19 19:35:14.174 2025-03-19 19:35:14.174 444179 14169 444324 19459 1 5855 2025-03-19 23:25:18.395 2025-03-19 23:25:18.395 444179 14169 444489 21042 2 5856 2025-03-19 19:28:54.514 2025-03-19 19:28:54.514 444168 5865 444317 21119 2 5857 2025-03-19 19:03:33.45 2025-03-19 19:03:33.45 444168 5865 444303 15386 1 5858 2025-03-19 21:39:20.536 2025-03-19 21:39:20.536 444168 5865 444421 7119 1 5859 2025-03-19 23:44:26.866 2025-03-19 23:44:26.866 444168 5865 444491 11073 1 5860 2025-03-20 03:14:05.878 2025-03-20 03:14:05.878 444168 5865 444579 17526 1 5861 2025-03-19 23:23:29.328 2025-03-19 23:23:29.328 444168 5865 444488 1549 1 5862 2025-03-20 00:23:16.32 2025-03-20 00:23:16.32 444168 5865 444508 21140 1 5863 2025-03-19 19:35:49.723 2025-03-19 19:35:49.723 444168 5865 444325 2459 2 5864 2025-03-20 01:01:10.65 2025-03-20 01:01:10.65 444168 5865 444521 11789 1 5865 2025-03-20 00:39:45.903 2025-03-20 00:39:45.903 444168 5865 444512 17741 1 5866 2025-03-19 21:34:52.634 2025-03-19 21:34:52.634 444168 5865 444420 6602 1 5867 2025-03-19 20:58:49.235 2025-03-19 20:58:49.235 444168 5865 444398 1733 2 5868 2025-03-19 19:35:53.245 2025-03-19 19:35:53.245 444168 5865 444326 12736 3 5869 2025-03-19 19:05:05.165 2025-03-19 19:05:05.165 444168 5865 444305 15762 1 5870 2025-03-19 19:30:26.368 2025-03-19 19:30:26.368 444168 5865 444320 17321 1 5871 2025-03-19 18:19:10.885 2025-03-19 18:19:10.885 444168 5865 444222 13378 2 5872 2025-03-19 18:19:16.887 2025-03-19 18:19:16.887 444168 5865 444223 20812 2 5873 2025-03-20 02:44:07.335 2025-03-20 02:44:07.335 444168 5865 444565 1751 2 5874 2025-03-19 17:53:47.126 2025-03-19 17:53:47.126 444168 5865 444176 7913 1 5875 2025-03-19 18:17:55.072 2025-03-19 18:17:55.072 444168 5865 444220 2326 1 5876 2025-03-19 18:31:26.782 2025-03-19 18:31:26.782 444168 5865 444247 13169 1 5877 2025-03-19 18:36:14.416 2025-03-19 18:36:14.416 444168 5865 444255 11522 1 5878 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 456086 10094 456804 992 1 5879 2025-03-19 23:23:25.654 2025-03-19 23:23:25.654 444173 3990 444487 16988 1 5880 2025-03-20 02:30:33.514 2025-03-20 02:30:33.514 444173 3990 444559 15160 1 5881 2025-03-19 18:19:10.885 2025-03-19 18:19:10.885 444176 7913 444222 13378 1 5882 2025-03-19 18:20:00.541 2025-03-19 18:20:00.541 444188 15148 444227 2361 1 5883 2025-03-19 18:19:16.887 2025-03-19 18:19:16.887 444220 2326 444223 20812 1 5884 2025-03-20 00:38:25.229 2025-03-20 00:38:25.229 444467 19905 444510 2703 1 5885 2025-03-19 20:59:51.01 2025-03-19 20:59:51.01 444236 8841 444400 1428 2 5886 2025-03-19 18:26:34.605 2025-03-19 18:26:34.605 444236 8841 444237 18449 1 5887 2025-03-19 20:13:51.152 2025-03-19 20:13:51.152 444236 8841 444364 14449 1 5888 2025-03-20 02:44:07.335 2025-03-20 02:44:07.335 444247 13169 444565 1751 1 5889 2025-03-19 20:58:49.235 2025-03-19 20:58:49.235 444255 11522 444398 1733 1 5890 2025-03-19 21:33:35.403 2025-03-19 21:33:35.403 444290 18309 444419 16978 1 5891 2025-03-19 22:28:46.5 2025-03-19 22:28:46.5 444290 18309 444456 21734 2 5892 2025-03-19 22:56:03.499 2025-03-19 22:56:03.499 444290 18309 444470 13553 3 5893 2025-03-27 16:58:54.125 2025-03-27 16:58:54.125 456088 21480 456554 21159 1 5894 2025-03-19 21:40:50.877 2025-03-19 21:40:50.877 444292 13987 444424 15544 1 5895 2025-03-19 20:53:47.081 2025-03-19 20:53:47.081 444314 19303 444396 16387 1 5896 2025-03-19 19:35:49.723 2025-03-19 19:35:49.723 444320 17321 444325 2459 1 5897 2025-03-19 20:37:53.905 2025-03-19 20:37:53.905 444346 7992 444378 1620 1 5898 2025-03-19 21:47:18.587 2025-03-19 21:47:18.587 444346 7992 444432 17184 3 5899 2025-03-19 20:44:05.462 2025-03-19 20:44:05.462 444346 7992 444385 880 2 5900 2025-03-19 20:03:08.232 2025-03-19 20:03:08.232 444348 19535 444351 2233 1 5901 2025-03-22 16:07:06.189 2025-03-22 16:07:06.189 446430 4474 448467 21424 1 5902 2025-03-21 12:38:00.332 2025-03-21 12:38:00.332 446513 4166 446714 20562 1 5903 2025-03-21 15:30:19.261 2025-03-21 15:30:19.261 446513 4166 447049 2022 1 5904 2025-03-21 13:46:17.185 2025-03-21 13:46:17.185 446513 4166 446820 16695 1 5905 2025-03-21 17:11:46.858 2025-03-21 17:11:46.858 446513 4166 447185 21116 3 5906 2025-03-21 17:12:16.149 2025-03-21 17:12:16.149 446513 4166 447186 16747 3 5907 2025-03-22 15:58:59.701 2025-03-22 15:58:59.701 446513 4166 448458 16149 11 5908 2025-03-22 18:05:26.992 2025-03-22 18:05:26.992 446513 4166 448588 16747 1 5909 2025-03-21 15:35:30.454 2025-03-21 15:35:30.454 446513 4166 447058 21262 2 5910 2025-03-21 15:52:04.957 2025-03-21 15:52:04.957 446513 4166 447084 1012 2 5911 2025-03-22 02:41:22.8 2025-03-22 02:41:22.8 446513 4166 447685 8168 5 5912 2025-03-22 01:58:52.372 2025-03-22 01:58:52.372 446513 4166 447661 777 4 5913 2025-03-22 15:55:58.017 2025-03-22 15:55:58.017 446513 4166 448454 20754 10 5914 2025-03-22 06:18:48.437 2025-03-22 06:18:48.437 446513 4166 447782 9347 9 5915 2025-03-22 05:59:28.635 2025-03-22 05:59:28.635 446513 4166 447772 17116 8 5916 2025-03-22 05:50:55.745 2025-03-22 05:50:55.745 446513 4166 447765 2670 7 5917 2025-03-22 05:35:38.746 2025-03-22 05:35:38.746 446513 4166 447757 9367 6 5918 2025-03-22 15:34:53.91 2025-03-22 15:34:53.91 446689 21349 448410 15200 1 5919 2025-03-21 17:03:33.557 2025-03-21 17:03:33.557 446689 21349 447178 4768 1 5920 2025-03-21 19:05:15.989 2025-03-21 19:05:15.989 446689 21349 447308 5942 1 5921 2025-03-22 15:56:19.994 2025-03-22 15:56:19.994 447432 3360 448455 10934 1 5922 2025-03-19 23:02:45.585 2025-03-19 23:02:45.585 444365 7558 444472 9450 1 5923 2025-03-19 22:34:20.141 2025-03-19 22:34:20.141 444365 7558 444460 5195 1 5924 2025-03-19 23:19:37.104 2025-03-19 23:19:37.104 444365 7558 444485 2326 2 5925 2025-03-20 01:46:17.483 2025-03-20 01:46:17.483 444365 7558 444543 1658 1 5926 2025-03-19 23:10:51.496 2025-03-19 23:10:51.496 444365 7558 444477 647 2 5927 2025-03-19 22:41:19.685 2025-03-19 22:41:19.685 444365 7558 444463 21430 1 5928 2025-03-20 02:46:48.459 2025-03-20 02:46:48.459 444365 7558 444568 1090 1 5929 2025-03-19 21:23:55.898 2025-03-19 21:23:55.898 444365 7558 444415 15337 1 5930 2025-03-19 21:45:00.252 2025-03-19 21:45:00.252 444382 19663 444430 14651 1 5931 2025-03-20 03:24:05.586 2025-03-20 03:24:05.586 444384 1802 444588 21832 1 5932 2025-03-19 21:47:18.587 2025-03-19 21:47:18.587 444385 880 444432 17184 1 5933 2025-03-19 21:55:40.79 2025-03-19 21:55:40.79 444387 20706 444437 20680 1 5934 2025-03-19 23:03:27.481 2025-03-19 23:03:27.481 444397 15521 444474 18743 1 5935 2025-03-20 00:40:06.982 2025-03-20 00:40:06.982 444403 882 444513 15200 1 5936 2025-03-19 21:27:15.688 2025-03-19 21:27:15.688 444408 4776 444417 2652 1 5937 2025-03-20 02:07:31.874 2025-03-20 02:07:31.874 444408 4776 444551 8376 2 5938 2025-03-19 21:59:46.158 2025-03-19 21:59:46.158 444408 4776 444442 20596 2 5939 2025-03-19 22:08:15.406 2025-03-19 22:08:15.406 444408 4776 444447 1286 1 5940 2025-03-20 00:48:12.652 2025-03-20 00:48:12.652 444414 10484 444517 7746 1 5941 2025-03-19 22:18:27.114 2025-03-19 22:18:27.114 444416 1769 444453 1585 3 5942 2025-03-19 22:04:01.03 2025-03-19 22:04:01.03 444416 1769 444444 5904 2 5943 2025-03-19 22:28:13.631 2025-03-19 22:28:13.631 444416 1769 444455 1602 4 5944 2025-03-19 21:55:08.252 2025-03-19 21:55:08.252 444416 1769 444436 5293 1 5945 2025-03-20 00:39:31.379 2025-03-20 00:39:31.379 444449 7587 444511 21148 1 5946 2025-03-20 00:43:15.086 2025-03-20 00:43:15.086 444450 4459 444515 626 1 5947 2025-03-20 00:18:11.119 2025-03-20 00:18:11.119 444471 4819 444504 1567 1 5948 2025-03-19 23:19:02.221 2025-03-19 23:19:02.221 444471 4819 444484 18923 1 5949 2025-03-20 00:16:13.117 2025-03-20 00:16:13.117 444471 4819 444502 17568 1 5950 2025-03-20 03:17:59.856 2025-03-20 03:17:59.856 444580 13216 444582 954 1 5951 2025-03-24 12:31:26.847 2025-03-24 12:31:26.847 450956 1141 451173 20504 1 5952 2025-03-24 13:26:52.526 2025-03-24 13:26:52.526 450956 1141 451274 2065 1 5953 2025-03-20 01:27:39.258 2025-03-20 01:27:39.258 444506 986 444536 1010 2 5954 2025-03-20 01:20:54.249 2025-03-20 01:20:54.249 444506 986 444532 20990 1 5955 2025-03-22 11:58:10.54 2025-03-22 11:58:10.54 447683 16809 448090 17041 1 5956 2025-03-23 17:28:03.793 2025-03-23 17:28:03.793 449922 5455 450006 21014 1 5957 2025-03-23 17:42:06.091 2025-03-23 17:42:06.091 449922 5455 450019 18116 3 5958 2025-03-23 19:07:02.124 2025-03-23 19:07:02.124 449922 5455 450117 859 4 5959 2025-03-23 17:29:10.7 2025-03-23 17:29:10.7 449922 5455 450008 14168 2 5960 2025-03-23 19:37:55.871 2025-03-23 19:37:55.871 449922 5455 450217 15336 5 5961 2025-03-27 16:57:15.002 2025-03-27 16:57:15.002 456142 21578 456549 7766 1 5962 2025-03-20 02:22:16.942 2025-03-20 02:22:16.942 444522 1060 444555 21571 2 5963 2025-03-20 03:23:52.381 2025-03-20 03:23:52.381 444522 1060 444587 8541 1 5964 2025-03-20 03:36:58.642 2025-03-20 03:36:58.642 444522 1060 444596 2460 1 5965 2025-03-20 02:10:48.109 2025-03-20 02:10:48.109 444522 1060 444552 3371 1 5966 2025-03-20 03:25:55.484 2025-03-20 03:25:55.484 444541 17708 444589 21228 1 5967 2025-03-20 01:57:42.906 2025-03-20 01:57:42.906 444541 17708 444547 20433 1 5968 2025-03-20 02:22:16.942 2025-03-20 02:22:16.942 444552 3371 444555 21571 1 5969 2025-03-20 03:50:19.813 2025-03-20 03:50:19.813 444558 19924 444598 1740 1 5970 2025-03-20 02:39:09.444 2025-03-20 02:39:09.444 444561 8870 444564 20555 1 5971 2025-03-22 14:10:40.819 2025-03-22 14:10:40.819 445953 16336 448257 11491 1 5972 2025-03-22 14:18:19.868 2025-03-22 14:18:19.868 445953 16336 448279 21214 5 5973 2025-03-20 23:04:32.083 2025-03-20 23:04:32.083 445953 16336 446086 688 3 5974 2025-03-20 22:19:45.01 2025-03-20 22:19:45.01 445953 16336 446055 7913 2 5975 2025-03-20 20:18:44.116 2025-03-20 20:18:44.116 445953 16336 445964 1261 1 5976 2025-03-22 14:47:52.395 2025-03-22 14:47:52.395 445953 16336 448325 697 1 5977 2025-03-22 21:51:23.47 2025-03-22 21:51:23.47 445953 16336 448795 678 6 5978 2025-03-22 14:16:39.064 2025-03-22 14:16:39.064 445953 16336 448274 9496 4 5979 2025-03-23 08:16:26.019 2025-03-23 08:16:26.019 446298 1354 449154 20412 1 5980 2025-03-22 11:53:56.786 2025-03-22 11:53:56.786 447451 12819 448085 21383 1 5981 2025-03-21 21:01:42.44 2025-03-21 21:01:42.44 447458 891 447470 1286 1 5982 2025-03-22 10:33:04.717 2025-03-22 10:33:04.717 447626 9758 447994 15728 1 5983 2025-03-22 23:15:04.443 2025-03-22 23:15:04.443 447630 763 448845 761 1 5984 2025-03-23 05:05:23.633 2025-03-23 05:05:23.633 448341 4624 449019 20646 1 5985 2025-03-22 15:17:59.732 2025-03-22 15:17:59.732 448341 4624 448378 9921 1 5986 2025-03-22 15:48:18.503 2025-03-22 15:48:18.503 448341 4624 448437 1985 1 5987 2025-03-23 05:29:54.183 2025-03-23 05:29:54.183 447764 18494 449031 15408 1 5988 2025-03-22 15:55:58.017 2025-03-22 15:55:58.017 447782 9347 448454 20754 1 5989 2025-03-22 15:58:59.701 2025-03-22 15:58:59.701 447782 9347 448458 16149 2 5990 2025-03-23 11:59:51.719 2025-03-23 11:59:51.719 447818 21714 449494 20788 3 5991 2025-03-22 15:09:45.326 2025-03-22 15:09:45.326 447818 21714 448361 2514 3 5992 2025-03-23 01:41:05.899 2025-03-23 01:41:05.899 447818 21714 448935 6537 1 5993 2025-03-23 00:46:22.78 2025-03-23 00:46:22.78 447818 21714 448892 14168 1 5994 2025-03-23 05:45:21.735 2025-03-23 05:45:21.735 447818 21714 449038 6335 2 5995 2025-03-22 11:00:20.634 2025-03-22 11:00:20.634 447818 21714 448026 15806 1 5996 2025-03-22 12:28:48.003 2025-03-22 12:28:48.003 447818 21714 448131 739 2 5997 2025-03-22 14:18:16.54 2025-03-22 14:18:16.54 447841 15806 448278 20825 1 5998 2025-03-22 14:58:34.928 2025-03-22 14:58:34.928 448343 20911 448345 6137 1 5999 2025-03-23 03:50:52.042 2025-03-23 03:50:52.042 448981 17103 448984 17570 1 6000 2025-03-23 04:59:52.418 2025-03-23 04:59:52.418 449003 21540 449017 5497 1 6001 2025-03-24 13:57:58.107 2025-03-24 13:57:58.107 450672 1352 451328 5646 3 6002 2025-03-24 10:52:26.057 2025-03-24 10:52:26.057 450672 1352 451014 910 1 6003 2025-03-24 10:54:10.956 2025-03-24 10:54:10.956 450672 1352 451017 21539 2 6004 2025-03-22 14:52:37.222 2025-03-22 14:52:37.222 447854 9992 448333 738 1 6005 2025-03-22 15:53:12.558 2025-03-22 15:53:12.558 447896 8541 448451 21248 1 6006 2025-03-22 09:57:18.703 2025-03-22 09:57:18.703 447944 16432 447956 16598 1 6007 2025-03-22 10:20:27.906 2025-03-22 10:20:27.906 447944 16432 447981 4415 2 6008 2025-03-22 15:02:06.209 2025-03-22 15:02:06.209 447944 16432 448353 2832 1 6009 2025-03-22 15:44:36.843 2025-03-22 15:44:36.843 447944 16432 448429 11527 2 6010 2025-03-22 15:47:48.558 2025-03-22 15:47:48.558 447944 16432 448435 21412 3 6011 2025-03-22 16:00:40.186 2025-03-22 16:00:40.186 447944 16432 448461 5499 4 6012 2025-03-22 15:51:33.961 2025-03-22 15:51:33.961 447944 16432 448445 9084 1 6013 2025-03-22 21:01:39.078 2025-03-22 21:01:39.078 447944 16432 448759 1741 1 6014 2025-03-22 14:49:46.169 2025-03-22 14:49:46.169 447944 16432 448330 20871 2 6015 2025-03-22 16:02:57.994 2025-03-22 16:02:57.994 447944 16432 448464 16353 1 6016 2025-03-22 11:17:36.571 2025-03-22 11:17:36.571 447944 16432 448051 11714 1 6017 2025-03-22 10:36:53.754 2025-03-22 10:36:53.754 447944 16432 447999 17331 1 6018 2025-03-22 16:12:32.299 2025-03-22 16:12:32.299 447944 16432 448476 17797 1 6019 2025-03-22 10:30:27.464 2025-03-22 10:30:27.464 447944 16432 447991 695 1 6020 2025-03-22 13:09:31.794 2025-03-22 13:09:31.794 447944 16432 448185 6260 1 6021 2025-03-22 14:12:43.032 2025-03-22 14:12:43.032 447944 16432 448261 18865 1 6022 2025-03-22 15:16:39.784 2025-03-22 15:16:39.784 447944 16432 448375 9332 1 6023 2025-03-22 15:48:00.023 2025-03-22 15:48:00.023 447944 16432 448436 15484 1 6024 2025-03-22 18:29:56.109 2025-03-22 18:29:56.109 447944 16432 448621 21506 1 6025 2025-03-22 09:52:53.728 2025-03-22 09:52:53.728 447944 16432 447950 644 1 6026 2025-03-22 14:49:46.169 2025-03-22 14:49:46.169 447999 17331 448330 20871 1 6027 2025-03-23 22:50:03.06 2025-03-23 22:50:03.06 448010 10291 450382 1465 1 6028 2025-03-22 16:16:11.397 2025-03-22 16:16:11.397 448349 20852 448484 769 2 6029 2025-03-22 21:40:38.531 2025-03-22 21:40:38.531 448349 20852 448782 1773 1 6030 2025-03-23 05:23:15.088 2025-03-23 05:23:15.088 448349 20852 449029 1620 1 6031 2025-03-22 15:16:29.1 2025-03-22 15:16:29.1 448349 20852 448373 12819 1 6032 2025-03-22 15:53:13.775 2025-03-22 15:53:13.775 448349 20852 448452 4973 1 6033 2025-03-22 15:24:25.661 2025-03-22 15:24:25.661 448349 20852 448392 16847 2 6034 2025-03-22 15:35:37.973 2025-03-22 15:35:37.973 448349 20852 448411 1631 1 6035 2025-03-22 15:40:56.167 2025-03-22 15:40:56.167 448349 20852 448420 20481 1 6036 2025-03-22 18:12:52.389 2025-03-22 18:12:52.389 448349 20852 448598 2519 1 6037 2025-03-22 21:47:17.929 2025-03-22 21:47:17.929 448349 20852 448789 1729 3 6038 2025-03-22 21:49:25.591 2025-03-22 21:49:25.591 448349 20852 448792 19378 4 6039 2025-03-22 22:01:58.913 2025-03-22 22:01:58.913 448349 20852 448799 630 1 6040 2025-03-23 03:33:45.069 2025-03-23 03:33:45.069 448349 20852 448975 684 1 6041 2025-03-22 15:26:28.804 2025-03-22 15:26:28.804 448349 20852 448396 20799 2 6042 2025-03-22 15:23:59.589 2025-03-22 15:23:59.589 448349 20852 448391 19193 1 6043 2025-03-22 15:28:11.767 2025-03-22 15:28:11.767 448349 20852 448400 19071 2 6044 2025-03-22 15:35:57.669 2025-03-22 15:35:57.669 448349 20852 448412 998 1 6045 2025-03-22 15:41:43.111 2025-03-22 15:41:43.111 448349 20852 448423 717 1 6046 2025-03-22 15:42:14.412 2025-03-22 15:42:14.412 448349 20852 448425 763 1 6047 2025-03-22 15:50:53.118 2025-03-22 15:50:53.118 448349 20852 448443 1051 1 6048 2025-03-22 16:37:23.552 2025-03-22 16:37:23.552 448349 20852 448505 1720 1 6049 2025-03-22 21:55:18.194 2025-03-22 21:55:18.194 448349 20852 448797 2710 1 6050 2025-03-22 19:20:20.962 2025-03-22 19:20:20.962 448349 20852 448676 2681 1 6051 2025-03-22 20:40:03.16 2025-03-22 20:40:03.16 448349 20852 448743 1960 1 6052 2025-03-22 15:41:20.133 2025-03-22 15:41:20.133 448349 20852 448421 5173 1 6053 2025-03-22 18:52:45.84 2025-03-22 18:52:45.84 448349 20852 448643 19943 2 6054 2025-03-22 15:23:35.243 2025-03-22 15:23:35.243 448349 20852 448389 10283 1 6055 2025-03-22 15:11:41.528 2025-03-22 15:11:41.528 448359 20201 448365 2639 1 6056 2025-03-22 15:18:40.517 2025-03-22 15:18:40.517 448359 20201 448381 10291 3 6057 2025-03-22 15:14:03.834 2025-03-22 15:14:03.834 448359 20201 448371 16406 1 6058 2025-03-22 15:17:01.021 2025-03-22 15:17:01.021 448359 20201 448377 21041 2 6059 2025-03-22 15:22:05.42 2025-03-22 15:22:05.42 448359 20201 448388 1825 1 6060 2025-03-22 15:24:28.174 2025-03-22 15:24:28.174 448359 20201 448393 12245 1 6061 2025-03-22 22:08:44.632 2025-03-22 22:08:44.632 448029 11523 448807 9352 2 6062 2025-03-22 22:08:02.764 2025-03-22 22:08:02.764 448029 11523 448806 17365 1 6063 2025-03-22 23:27:20.066 2025-03-22 23:27:20.066 448029 11523 448854 21539 2 6064 2025-03-22 11:05:26.384 2025-03-22 11:05:26.384 448029 11523 448035 14650 1 6065 2025-03-22 21:58:13.246 2025-03-22 21:58:13.246 448029 11523 448798 11714 2 6066 2025-03-22 12:21:38.907 2025-03-22 12:21:38.907 448029 11523 448120 16543 1 6067 2025-03-22 22:04:26.914 2025-03-22 22:04:26.914 448029 11523 448801 1652 1 6068 2025-03-22 16:12:54.49 2025-03-22 16:12:54.49 448029 11523 448477 20280 1 6069 2025-03-22 12:58:24.924 2025-03-22 12:58:24.924 448092 11145 448171 2224 1 6070 2025-03-22 13:15:41.86 2025-03-22 13:15:41.86 448092 11145 448192 16193 1 6071 2025-03-22 13:54:30.409 2025-03-22 13:54:30.409 448092 11145 448235 13921 2 6072 2025-03-22 16:09:44.61 2025-03-22 16:09:44.61 448092 11145 448469 11609 1 6073 2025-03-22 20:54:24.427 2025-03-22 20:54:24.427 448092 11145 448751 21202 2 6074 2025-03-22 16:10:30.432 2025-03-22 16:10:30.432 448092 11145 448471 13921 2 6075 2025-03-22 15:03:03.955 2025-03-22 15:03:03.955 448092 11145 448356 4115 1 6076 2025-03-22 16:13:31.974 2025-03-22 16:13:31.974 448092 11145 448478 17714 3 6077 2025-03-22 13:33:33.954 2025-03-22 13:33:33.954 448092 11145 448203 9341 1 6078 2025-03-22 12:49:00.067 2025-03-22 12:49:00.067 448121 6164 448158 11527 1 6079 2025-03-22 15:52:55.304 2025-03-22 15:52:55.304 448121 6164 448450 3304 1 6080 2025-03-22 13:54:30.409 2025-03-22 13:54:30.409 448192 16193 448235 13921 1 6081 2025-03-22 15:23:38.514 2025-03-22 15:23:38.514 448200 13100 448390 929 1 6082 2025-03-22 15:11:23.986 2025-03-22 15:11:23.986 448200 13100 448363 18225 2 6083 2025-03-22 13:51:54.825 2025-03-22 13:51:54.825 448200 13100 448230 20220 1 6084 2025-03-22 13:53:10.498 2025-03-22 13:53:10.498 448200 13100 448232 1534 1 6085 2025-03-22 13:54:23.517 2025-03-22 13:54:23.517 448200 13100 448234 20756 2 6086 2025-03-22 13:58:12.38 2025-03-22 13:58:12.38 448200 13100 448238 2961 3 6087 2025-03-22 22:12:03.92 2025-03-22 22:12:03.92 448200 13100 448811 16876 2 6088 2025-03-22 23:19:09.019 2025-03-22 23:19:09.019 448200 13100 448849 20647 4 6089 2025-03-22 13:35:04.687 2025-03-22 13:35:04.687 448200 13100 448205 21012 1 6090 2025-03-22 13:36:10.606 2025-03-22 13:36:10.606 448200 13100 448207 19980 2 6091 2025-03-22 13:55:04.044 2025-03-22 13:55:04.044 448200 13100 448236 16336 2 6092 2025-03-22 13:59:21.761 2025-03-22 13:59:21.761 448200 13100 448241 10934 2 6093 2025-03-22 15:15:44.815 2025-03-22 15:15:44.815 448200 13100 448372 18270 3 6094 2025-03-22 15:12:55.259 2025-03-22 15:12:55.259 448200 13100 448367 725 1 6095 2025-03-22 23:09:10.086 2025-03-22 23:09:10.086 448200 13100 448840 1064 3 6096 2025-03-22 15:07:23.812 2025-03-22 15:07:23.812 448244 837 448358 2639 1 6097 2025-03-22 15:40:18.179 2025-03-22 15:40:18.179 448283 9874 448419 21413 2 6098 2025-03-22 14:39:14.408 2025-03-22 14:39:14.408 448283 9874 448312 20901 2 6099 2025-03-22 14:39:32.777 2025-03-22 14:39:32.777 448283 9874 448313 866 1 6100 2025-03-22 14:40:51.034 2025-03-22 14:40:51.034 448283 9874 448316 21506 2 6101 2025-03-22 14:59:20.011 2025-03-22 14:59:20.011 448283 9874 448347 694 1 6102 2025-03-22 15:32:26.411 2025-03-22 15:32:26.411 448283 9874 448405 15662 2 6103 2025-03-22 15:26:16.805 2025-03-22 15:26:16.805 448283 9874 448395 9261 1 6104 2025-03-22 15:33:42.413 2025-03-22 15:33:42.413 448283 9874 448408 5809 2 6105 2025-03-22 15:38:48.689 2025-03-22 15:38:48.689 448283 9874 448416 21083 1 6106 2025-03-22 14:38:41.135 2025-03-22 14:38:41.135 448283 9874 448310 20969 1 6107 2025-03-22 15:41:21.741 2025-03-22 15:41:21.741 448369 17517 448422 1617 1 6108 2025-03-22 15:51:55.239 2025-03-22 15:51:55.239 448369 17517 448446 20180 2 6109 2025-03-22 15:26:28.804 2025-03-22 15:26:28.804 448389 10283 448396 20799 1 6110 2025-03-22 15:33:42.413 2025-03-22 15:33:42.413 448395 9261 448408 5809 1 6111 2025-03-22 16:00:31.17 2025-03-22 16:00:31.17 448457 15052 448460 7668 1 6112 2025-03-22 21:40:03.812 2025-03-22 21:40:03.812 448518 2748 448781 20586 1 6113 2025-03-22 21:50:39.556 2025-03-22 21:50:39.556 448518 2748 448794 671 2 6114 2025-03-24 10:19:48.533 2025-03-24 10:19:48.533 448535 16042 450957 712 1 6115 2025-03-24 13:43:23.946 2025-03-24 13:43:23.946 448535 16042 451311 20837 2 6116 2025-03-24 10:20:21.113 2025-03-24 10:20:21.113 448544 21639 450958 770 2 6117 2025-03-22 17:45:18.624 2025-03-22 17:45:18.624 448544 21639 448582 7899 1 6118 2025-03-22 17:57:27.093 2025-03-22 17:57:27.093 448578 21214 448587 1454 1 6119 2025-03-22 18:19:44.106 2025-03-22 18:19:44.106 448589 21520 448604 2233 1 6120 2025-03-22 19:19:50.521 2025-03-22 19:19:50.521 448671 20280 448675 13348 1 6121 2025-03-23 08:12:48.254 2025-03-23 08:12:48.254 448671 20280 449146 997 2 6122 2025-03-23 21:24:54.466 2025-03-23 21:24:54.466 448671 20280 450321 894 3 6123 2025-03-23 22:15:25.838 2025-03-23 22:15:25.838 448671 20280 450363 14195 1 6124 2025-03-22 21:45:42.386 2025-03-22 21:45:42.386 448765 647 448786 21620 1 6125 2025-03-22 22:13:45.135 2025-03-22 22:13:45.135 448765 647 448813 4259 1 6126 2025-03-23 19:33:32.871 2025-03-23 19:33:32.871 449186 1602 450210 18468 3 6127 2025-03-23 19:20:07.685 2025-03-23 19:20:07.685 449186 1602 450186 14370 2 6128 2025-03-23 16:56:00.368 2025-03-23 16:56:00.368 449186 1602 449984 11760 1 6129 2025-03-23 12:44:35.026 2025-03-23 12:44:35.026 449186 1602 449577 624 1 6130 2025-03-23 12:55:44.002 2025-03-23 12:55:44.002 449186 1602 449600 21079 2 6131 2025-03-23 16:50:01.496 2025-03-23 16:50:01.496 449186 1602 449979 880 1 6132 2025-03-24 14:00:49.598 2025-03-24 14:00:49.598 450939 18265 451334 21514 1 6133 2025-03-23 01:18:39.1 2025-03-23 01:18:39.1 448802 5779 448924 20614 1 6134 2025-03-24 14:54:34.149 2025-03-24 14:54:34.149 448802 5779 451450 17237 2 6135 2025-03-23 01:04:37.659 2025-03-23 01:04:37.659 448802 5779 448912 14489 1 6136 2025-03-24 14:57:12.722 2025-03-24 14:57:12.722 448802 5779 451453 14705 3 6137 2025-03-22 22:09:02.881 2025-03-22 22:09:02.881 448804 19527 448808 9364 1 6138 2025-03-22 22:08:44.632 2025-03-22 22:08:44.632 448806 17365 448807 9352 1 6139 2025-03-22 22:19:28.34 2025-03-22 22:19:28.34 448809 5455 448816 21067 1 6140 2025-03-22 22:33:27.938 2025-03-22 22:33:27.938 448820 656 448824 1114 1 6141 2025-03-22 22:41:06.048 2025-03-22 22:41:06.048 448820 656 448830 14122 1 6142 2025-03-22 22:42:08.115 2025-03-22 22:42:08.115 448820 656 448833 21444 1 6143 2025-03-23 07:25:03.962 2025-03-23 07:25:03.962 448820 656 449099 19471 1 6144 2025-03-23 01:18:12.868 2025-03-23 01:18:12.868 448822 4314 448923 987 2 6145 2025-03-22 22:49:18.561 2025-03-22 22:49:18.561 448822 4314 448836 9529 1 6146 2025-03-23 01:11:59.24 2025-03-23 01:11:59.24 448822 4314 448919 676 1 6147 2025-03-22 23:14:21.913 2025-03-22 23:14:21.913 448822 4314 448843 13575 2 6148 2025-03-23 00:22:08.496 2025-03-23 00:22:08.496 448858 4388 448882 897 2 6149 2025-03-23 01:18:53.261 2025-03-23 01:18:53.261 448858 4388 448925 9367 1 6150 2025-03-23 01:19:19.526 2025-03-23 01:19:19.526 448858 4388 448926 2776 3 6151 2025-03-23 00:15:37.844 2025-03-23 00:15:37.844 448858 4388 448880 16250 1 6152 2025-03-23 00:22:08.496 2025-03-23 00:22:08.496 448880 16250 448882 897 1 6153 2025-03-23 01:19:19.526 2025-03-23 01:19:19.526 448880 16250 448926 2776 2 6154 2025-03-23 00:43:03.044 2025-03-23 00:43:03.044 448884 981 448889 10698 1 6155 2025-03-23 00:48:13.095 2025-03-23 00:48:13.095 448888 21427 448895 1038 1 6156 2025-03-23 02:40:25.166 2025-03-23 02:40:25.166 448888 21427 448954 20275 1 6157 2025-03-23 00:46:06.413 2025-03-23 00:46:06.413 448888 21427 448891 5661 1 6158 2025-03-23 00:50:23.184 2025-03-23 00:50:23.184 448888 21427 448897 16296 2 6159 2025-03-24 10:21:11.631 2025-03-24 10:21:11.631 449016 16424 450961 650 2 6160 2025-03-23 07:39:51.135 2025-03-23 07:39:51.135 449016 16424 449108 6717 3 6161 2025-03-23 05:13:20.11 2025-03-23 05:13:20.11 449016 16424 449022 21418 1 6162 2025-03-23 08:00:10.051 2025-03-23 08:00:10.051 449016 16424 449131 21401 5 6163 2025-03-23 09:05:11.877 2025-03-23 09:05:11.877 449016 16424 449210 11038 1 6164 2025-03-23 17:22:58.911 2025-03-23 17:22:58.911 449016 16424 450002 14370 1 6165 2025-03-23 07:20:54.199 2025-03-23 07:20:54.199 449016 16424 449091 13198 2 6166 2025-03-23 13:18:36.989 2025-03-23 13:18:36.989 449016 16424 449650 10007 1 6167 2025-03-23 07:45:13.364 2025-03-23 07:45:13.364 449016 16424 449113 730 4 6168 2025-03-23 11:56:14.803 2025-03-23 11:56:14.803 449027 641 449481 16214 1 6169 2025-03-23 07:01:39.474 2025-03-23 07:01:39.474 449027 641 449075 21369 3 6170 2025-03-23 06:28:38.247 2025-03-23 06:28:38.247 449027 641 449057 9177 2 6171 2025-03-23 06:15:43.815 2025-03-23 06:15:43.815 449027 641 449053 21040 1 6172 2025-03-23 07:07:37.237 2025-03-23 07:07:37.237 449027 641 449079 7119 5 6173 2025-03-23 07:31:56.187 2025-03-23 07:31:56.187 449027 641 449103 19777 6 6174 2025-03-23 07:02:38.382 2025-03-23 07:02:38.382 449027 641 449076 674 4 6175 2025-03-23 05:30:02.784 2025-03-23 05:30:02.784 449028 19992 449032 3392 1 6176 2025-03-23 11:59:51.719 2025-03-23 11:59:51.719 449038 6335 449494 20788 1 6177 2025-03-23 07:12:30.509 2025-03-23 07:12:30.509 449083 917 449084 11996 1 6178 2025-03-23 08:00:10.051 2025-03-23 08:00:10.051 449113 730 449131 21401 1 6179 2025-03-23 17:52:58.198 2025-03-23 17:52:58.198 449910 20137 450040 10608 5 6180 2025-03-23 17:29:39.175 2025-03-23 17:29:39.175 449910 20137 450010 9339 2 6181 2025-03-23 17:51:47.089 2025-03-23 17:51:47.089 449910 20137 450039 17673 4 6182 2025-03-23 18:23:55.978 2025-03-23 18:23:55.978 449910 20137 450067 21159 6 6183 2025-03-23 17:38:33.489 2025-03-23 17:38:33.489 449910 20137 450014 2620 3 6184 2025-03-23 16:06:01.594 2025-03-23 16:06:01.594 449910 20137 449920 8269 1 6185 2025-03-23 18:58:28.705 2025-03-23 18:58:28.705 449910 20137 450109 675 7 6186 2025-03-23 12:11:41.304 2025-03-23 12:11:41.304 449218 4313 449517 1272 2 6187 2025-03-23 20:15:55.464 2025-03-23 20:15:55.464 449218 4313 450259 17690 4 6188 2025-03-23 11:30:58.032 2025-03-23 11:30:58.032 449218 4313 449414 16212 1 6189 2025-03-23 12:17:19.257 2025-03-23 12:17:19.257 449218 4313 449524 9363 3 6190 2025-03-26 19:06:20.719 2025-03-26 19:06:20.719 449292 1705 455141 2460 1 6191 2025-03-26 19:51:54.143 2025-03-26 19:51:54.143 449292 1705 455204 11192 2 6192 2025-03-24 13:47:39.692 2025-03-24 13:47:39.692 451316 1394 451317 7587 1 6193 2025-03-24 14:08:43.951 2025-03-24 14:08:43.951 451316 1394 451352 20099 1 6194 2025-03-23 12:40:22.896 2025-03-23 12:40:22.896 449394 20840 449567 21455 1 6195 2025-03-23 12:05:18.209 2025-03-23 12:05:18.209 449394 20840 449507 15239 1 6196 2025-03-23 13:22:18.641 2025-03-23 13:22:18.641 449394 20840 449662 16929 2 6197 2025-03-23 14:48:14.279 2025-03-23 14:48:14.279 449394 20840 449805 20337 1 6198 2025-03-24 13:42:56.909 2025-03-24 13:42:56.909 449394 20840 451309 19535 3 6199 2025-03-23 18:11:26.036 2025-03-23 18:11:26.036 449513 16562 450060 15728 1 6200 2025-03-23 12:50:38.837 2025-03-23 12:50:38.837 449515 650 449596 13599 2 6201 2025-03-23 12:47:20.47 2025-03-23 12:47:20.47 449515 650 449585 2056 1 6202 2025-03-23 12:55:37.744 2025-03-23 12:55:37.744 449515 650 449599 9337 3 6203 2025-03-23 20:15:55.464 2025-03-23 20:15:55.464 449524 9363 450259 17690 1 6204 2025-03-23 12:55:44.002 2025-03-23 12:55:44.002 449577 624 449600 21079 1 6205 2025-03-23 12:59:18.11 2025-03-23 12:59:18.11 449589 634 449615 20663 1 6206 2025-03-23 12:55:37.744 2025-03-23 12:55:37.744 449596 13599 449599 9337 1 6207 2025-03-24 13:42:56.909 2025-03-24 13:42:56.909 449662 16929 451309 19535 1 6208 2025-03-23 19:59:00.019 2025-03-23 19:59:00.019 449767 2111 450243 14607 4 6209 2025-03-23 19:40:24.018 2025-03-23 19:40:24.018 449767 2111 450221 18473 1 6210 2025-03-23 19:54:26.029 2025-03-23 19:54:26.029 449767 2111 450237 17519 3 6211 2025-03-23 19:48:55.729 2025-03-23 19:48:55.729 449767 2111 450231 9183 2 6212 2025-03-23 18:23:55.978 2025-03-23 18:23:55.978 450040 10608 450067 21159 1 6213 2025-03-23 18:58:28.705 2025-03-23 18:58:28.705 450040 10608 450109 675 2 6214 2025-03-24 14:47:14.422 2025-03-24 14:47:14.422 450701 9200 451432 15273 1 6215 2025-03-23 17:12:03.461 2025-03-23 17:12:03.461 449806 15148 449998 4654 1 6216 2025-03-23 17:41:44.945 2025-03-23 17:41:44.945 449825 814 450018 3504 1 6217 2025-03-23 19:15:41.298 2025-03-23 19:15:41.298 449901 20185 450152 13921 1 6218 2025-03-23 16:48:39.747 2025-03-23 16:48:39.747 449969 20454 449976 695 1 6219 2025-03-23 16:51:37.077 2025-03-23 16:51:37.077 449971 889 449982 15148 1 6220 2025-03-23 19:33:32.871 2025-03-23 19:33:32.871 449984 11760 450210 18468 2 6221 2025-03-23 19:20:07.685 2025-03-23 19:20:07.685 449984 11760 450186 14370 1 6222 2025-03-23 17:23:33.54 2025-03-23 17:23:33.54 449992 20370 450003 7583 1 6223 2025-03-24 10:21:11.631 2025-03-24 10:21:11.631 450002 14370 450961 650 1 6224 2025-03-23 18:55:17.823 2025-03-23 18:55:17.823 450023 16442 450107 10270 1 6225 2025-03-23 19:05:22.989 2025-03-23 19:05:22.989 450108 2734 450114 2710 2 6226 2025-03-23 21:56:41.075 2025-03-23 21:56:41.075 450108 2734 450350 2703 1 6227 2025-03-23 19:02:12.81 2025-03-23 19:02:12.81 450108 2734 450111 15146 1 6228 2025-03-23 19:05:22.989 2025-03-23 19:05:22.989 450111 15146 450114 2710 1 6229 2025-03-23 19:37:55.871 2025-03-23 19:37:55.871 450117 859 450217 15336 1 6230 2025-03-24 14:37:09.499 2025-03-24 14:37:09.499 450977 8289 451411 9843 1 6231 2025-03-24 12:25:21.112 2025-03-24 12:25:21.112 451044 8284 451159 18449 4 6232 2025-03-24 12:26:59.021 2025-03-24 12:26:59.021 451044 8284 451164 8168 5 6233 2025-03-24 11:53:22.344 2025-03-24 11:53:22.344 451044 8284 451106 5069 1 6234 2025-03-24 12:25:37.417 2025-03-24 12:25:37.417 451044 8284 451163 7913 4 6235 2025-03-24 12:23:24.011 2025-03-24 12:23:24.011 451044 8284 451157 10586 3 6236 2025-03-24 12:21:25.228 2025-03-24 12:21:25.228 451044 8284 451155 21356 2 6237 2025-03-27 19:22:51.493 2025-03-27 19:22:51.493 456590 20861 456693 12946 1 6238 2025-03-23 19:47:26.893 2025-03-23 19:47:26.893 450212 16356 450227 902 1 6239 2025-03-23 21:26:17.371 2025-03-23 21:26:17.371 450320 3304 450322 16653 1 6240 2025-03-24 07:13:13.813 2025-03-24 07:13:13.813 450330 21683 450716 9863 2 6241 2025-03-24 00:00:53.048 2025-03-24 00:00:53.048 450330 21683 450430 20965 1 6242 2025-03-23 20:01:17.275 2025-03-23 20:01:17.275 450235 19930 450247 21832 1 6243 2025-03-23 19:59:00.019 2025-03-23 19:59:00.019 450237 17519 450243 14607 1 6244 2025-03-24 14:47:14.422 2025-03-24 14:47:14.422 450240 19198 451432 15273 2 6245 2025-03-23 20:45:20.941 2025-03-23 20:45:20.941 450240 19198 450282 14168 1 6246 2025-03-24 07:01:59.574 2025-03-24 07:01:59.574 450240 19198 450701 9200 1 6247 2025-03-24 14:46:58.938 2025-03-24 14:46:58.938 450240 19198 451431 20906 2 6248 2025-03-24 08:24:34.059 2025-03-24 08:24:34.059 450240 19198 450784 2056 1 6249 2025-03-23 20:08:12.39 2025-03-23 20:08:12.39 450254 6137 450256 2514 1 6250 2025-03-23 20:47:39.705 2025-03-23 20:47:39.705 450287 20059 450288 18426 1 6251 2025-03-23 22:11:08.623 2025-03-23 22:11:08.623 450354 7587 450357 21734 1 6252 2025-03-23 22:13:31.869 2025-03-23 22:13:31.869 450359 1814 450360 12921 1 6253 2025-03-24 08:56:40.48 2025-03-24 08:56:40.48 450618 10291 450814 19930 1 6254 2025-03-24 14:02:14.99 2025-03-24 14:02:14.99 450618 10291 451336 21833 2 6255 2025-03-24 13:15:20.05 2025-03-24 13:15:20.05 450729 21401 451242 17535 1 6256 2025-03-24 14:46:58.938 2025-03-24 14:46:58.938 450784 2056 451431 20906 1 6257 2025-03-24 13:27:27.712 2025-03-24 13:27:27.712 450805 1697 451278 17095 1 6258 2025-03-24 13:19:36.932 2025-03-24 13:19:36.932 450805 1697 451253 19524 2 6259 2025-03-24 11:09:21.364 2025-03-24 11:09:21.364 450805 1697 451044 8284 1 6260 2025-03-24 12:55:35.691 2025-03-24 12:55:35.691 450805 1697 451219 18441 2 6261 2025-03-24 13:46:23.317 2025-03-24 13:46:23.317 450805 1697 451314 3417 4 6262 2025-03-24 13:17:44.385 2025-03-24 13:17:44.385 450805 1697 451248 4388 1 6263 2025-03-24 13:43:17.525 2025-03-24 13:43:17.525 450805 1697 451310 20222 3 6264 2025-03-24 12:25:21.112 2025-03-24 12:25:21.112 450805 1697 451159 18449 5 6265 2025-03-24 12:26:59.021 2025-03-24 12:26:59.021 450805 1697 451164 8168 6 6266 2025-03-24 11:53:22.344 2025-03-24 11:53:22.344 450805 1697 451106 5069 2 6267 2025-03-24 12:25:37.417 2025-03-24 12:25:37.417 450805 1697 451163 7913 5 6268 2025-03-24 10:50:42.936 2025-03-24 10:50:42.936 450805 1697 451012 21145 1 6269 2025-03-24 12:23:24.011 2025-03-24 12:23:24.011 450805 1697 451157 10586 4 6270 2025-03-24 12:29:29.423 2025-03-24 12:29:29.423 450805 1697 451169 10536 1 6271 2025-03-24 12:21:25.228 2025-03-24 12:21:25.228 450805 1697 451155 21356 3 6272 2025-03-27 16:23:36.443 2025-03-27 16:23:36.443 456495 20841 456502 5128 1 6273 2025-03-27 16:51:43.531 2025-03-27 16:51:43.531 456495 20841 456533 18608 1 6274 2025-03-24 13:37:38.063 2025-03-24 13:37:38.063 451005 1717 451300 4624 1 6275 2025-03-24 13:19:36.932 2025-03-24 13:19:36.932 451012 21145 451253 19524 1 6276 2025-03-24 13:57:58.107 2025-03-24 13:57:58.107 451017 21539 451328 5646 1 6277 2025-03-24 11:14:27.921 2025-03-24 11:14:27.921 451018 21254 451047 12049 3 6278 2025-03-24 11:00:46.67 2025-03-24 11:00:46.67 451018 21254 451031 13249 1 6279 2025-03-24 14:19:34.07 2025-03-24 14:19:34.07 451018 21254 451367 7992 1 6280 2025-03-24 11:12:06.187 2025-03-24 11:12:06.187 451018 21254 451045 11516 2 6281 2025-03-24 11:14:27.921 2025-03-24 11:14:27.921 451031 13249 451047 12049 2 6282 2025-03-24 11:12:06.187 2025-03-24 11:12:06.187 451031 13249 451045 11516 1 6283 2025-03-24 14:40:48.095 2025-03-24 14:40:48.095 451034 825 451416 899 1 6284 2025-03-24 13:32:09.714 2025-03-24 13:32:09.714 451039 19570 451289 1751 1 6285 2025-03-24 14:30:34.95 2025-03-24 14:30:34.95 451046 12049 451390 976 1 6286 2025-03-24 14:04:58.584 2025-03-24 14:04:58.584 451071 10283 451344 4502 1 6287 2025-03-24 13:50:28.674 2025-03-24 13:50:28.674 451074 989 451321 3461 1 6288 2025-03-24 14:01:57.514 2025-03-24 14:01:57.514 451074 989 451335 7773 2 6289 2025-03-24 14:17:50.847 2025-03-24 14:17:50.847 451074 989 451365 9655 1 6290 2025-03-24 14:22:13.873 2025-03-24 14:22:13.873 451074 989 451373 1221 2 6291 2025-03-24 14:26:21.329 2025-03-24 14:26:21.329 451074 989 451380 8498 3 6292 2025-03-24 14:10:29.403 2025-03-24 14:10:29.403 451074 989 451356 18500 2 6293 2025-03-24 14:01:57.514 2025-03-24 14:01:57.514 451321 3461 451335 7773 1 6294 2025-03-24 14:26:21.329 2025-03-24 14:26:21.329 451321 3461 451380 8498 2 6295 2025-03-24 14:10:29.403 2025-03-24 14:10:29.403 451321 3461 451356 18500 1 6296 2025-03-27 17:55:25.003 2025-03-27 17:55:25.003 456150 17568 456631 21166 1 6297 2025-03-27 21:01:57.558 2025-03-27 21:01:57.558 456150 17568 456757 2502 1 6298 2025-03-27 19:44:00.762 2025-03-27 19:44:00.762 456150 17568 456716 7983 1 6299 2025-03-27 21:20:25.485 2025-03-27 21:20:25.485 456150 17568 456772 7668 1 6300 2025-03-24 14:34:16.654 2025-03-24 14:34:16.654 451303 21526 451401 18533 1 6301 2025-03-24 13:51:35.092 2025-03-24 13:51:35.092 451303 21526 451322 19980 1 6302 2025-03-27 16:47:12.191 2025-03-27 16:47:12.191 456525 3377 456527 9363 1 6303 2025-03-27 16:51:24.091 2025-03-27 16:51:24.091 456525 3377 456532 1221 1 6304 2025-03-27 16:47:04.469 2025-03-27 16:47:04.469 456525 3377 456526 2056 1 6305 2025-03-27 18:02:27.035 2025-03-27 18:02:27.035 456525 3377 456636 1145 1 6306 2025-03-24 14:30:59.659 2025-03-24 14:30:59.659 451124 8926 451393 20254 1 6307 2025-03-24 14:34:48.493 2025-03-24 14:34:48.493 451138 19488 451404 17411 1 6308 2025-03-24 12:25:21.112 2025-03-24 12:25:21.112 451157 10586 451159 18449 1 6309 2025-03-24 12:26:59.021 2025-03-24 12:26:59.021 451157 10586 451164 8168 2 6310 2025-03-24 12:25:37.417 2025-03-24 12:25:37.417 451157 10586 451163 7913 1 6311 2025-03-24 13:30:55.488 2025-03-24 13:30:55.488 451158 20691 451284 2775 1 6312 2025-03-24 13:22:26.908 2025-03-24 13:22:26.908 451165 17533 451264 12768 1 6313 2025-03-24 12:55:35.691 2025-03-24 12:55:35.691 451169 10536 451219 18441 1 6314 2025-03-24 13:46:23.317 2025-03-24 13:46:23.317 451169 10536 451314 3417 3 6315 2025-03-24 13:43:17.525 2025-03-24 13:43:17.525 451169 10536 451310 20222 2 6316 2025-03-24 13:21:00.616 2025-03-24 13:21:00.616 451177 694 451257 21672 2 6317 2025-03-24 13:29:17.351 2025-03-24 13:29:17.351 451177 694 451282 18069 3 6318 2025-03-24 13:22:12.709 2025-03-24 13:22:12.709 451177 694 451261 678 1 6319 2025-03-24 13:27:10.163 2025-03-24 13:27:10.163 451177 694 451275 15703 2 6320 2025-03-24 13:00:38.288 2025-03-24 13:00:38.288 451177 694 451223 651 1 6321 2025-03-24 13:27:54.059 2025-03-24 13:27:54.059 451194 15273 451279 2724 1 6322 2025-03-29 07:32:41.051 2025-03-29 07:32:41.051 458017 18321 458307 11750 1 6323 2025-03-24 13:18:20.947 2025-03-24 13:18:20.947 451208 1439 451249 674 1 6324 2025-03-24 13:25:28.971 2025-03-24 13:25:28.971 451208 1439 451269 756 3 6325 2025-03-24 13:11:12.141 2025-03-24 13:11:12.141 451208 1439 451239 749 1 6326 2025-03-24 13:35:35.115 2025-03-24 13:35:35.115 451208 1439 451296 19378 4 6327 2025-03-24 13:17:43.808 2025-03-24 13:17:43.808 451208 1439 451247 12222 1 6328 2025-03-24 13:24:54.162 2025-03-24 13:24:54.162 451208 1439 451268 902 1 6329 2025-03-24 13:18:21.421 2025-03-24 13:18:21.421 451208 1439 451250 16296 2 6330 2025-03-27 02:48:21.523 2025-03-27 02:48:21.523 455409 21810 455451 16704 1 6331 2025-03-27 10:29:23.159 2025-03-27 10:29:23.159 455413 21480 455784 7667 2 6332 2025-03-27 04:51:02.621 2025-03-27 04:51:02.621 455413 21480 455506 16289 2 6333 2025-03-27 08:40:01.881 2025-03-27 08:40:01.881 455413 21480 455643 11328 1 6334 2025-03-27 05:23:35.898 2025-03-27 05:23:35.898 455413 21480 455523 17221 1 6335 2025-03-27 08:18:35.628 2025-03-27 08:18:35.628 455413 21480 455619 20062 1 6336 2025-03-27 06:24:13.015 2025-03-27 06:24:13.015 455413 21480 455568 2206 1 6337 2025-03-27 04:45:42.461 2025-03-27 04:45:42.461 455413 21480 455505 1286 1 6338 2025-03-27 02:30:02.923 2025-03-27 02:30:02.923 455413 21480 455432 16347 1 6339 2025-03-27 04:52:35.961 2025-03-27 04:52:35.961 455413 21480 455510 5128 2 6340 2025-03-27 02:47:39.007 2025-03-27 02:47:39.007 455413 21480 455448 10638 1 6341 2025-03-27 03:34:06.08 2025-03-27 03:34:06.08 455413 21480 455481 20023 1 6342 2025-03-27 02:33:31.039 2025-03-27 02:33:31.039 455413 21480 455434 2773 1 6343 2025-03-24 14:34:46.453 2025-03-24 14:34:46.453 451246 10731 451403 7425 1 6344 2025-03-24 12:58:19.668 2025-03-24 12:58:19.668 451216 21020 451221 21178 1 6345 2025-03-24 12:58:51.363 2025-03-24 12:58:51.363 451216 21020 451222 10469 1 6346 2025-03-24 13:26:50.499 2025-03-24 13:26:50.499 451216 21020 451273 9355 1 6347 2025-03-24 13:21:00.616 2025-03-24 13:21:00.616 451223 651 451257 21672 1 6348 2025-03-24 13:29:17.351 2025-03-24 13:29:17.351 451223 651 451282 18069 2 6349 2025-03-24 13:19:51.843 2025-03-24 13:19:51.843 451236 16912 451254 20710 1 6350 2025-03-24 13:29:35.838 2025-03-24 13:29:35.838 451244 1718 451283 21600 2 6351 2025-03-24 13:20:53.434 2025-03-24 13:20:53.434 451244 1718 451256 15728 1 6352 2025-03-24 13:22:17.718 2025-03-24 13:22:17.718 451244 1718 451262 6741 2 6353 2025-03-24 13:26:06.402 2025-03-24 13:26:06.402 451244 1718 451271 20751 3 6354 2025-03-24 13:26:29.598 2025-03-24 13:26:29.598 451244 1718 451272 16259 2 6355 2025-03-24 13:41:07.547 2025-03-24 13:41:07.547 451244 1718 451306 1960 2 6356 2025-03-24 13:35:09.241 2025-03-24 13:35:09.241 451244 1718 451294 21521 1 6357 2025-03-24 13:21:06.496 2025-03-24 13:21:06.496 451244 1718 451258 14818 1 6358 2025-03-24 13:28:06.705 2025-03-24 13:28:06.705 451245 2519 451280 17094 1 6359 2025-03-24 13:29:35.838 2025-03-24 13:29:35.838 451256 15728 451283 21600 1 6360 2025-03-24 13:22:17.718 2025-03-24 13:22:17.718 451258 14818 451262 6741 1 6361 2025-03-24 13:26:06.402 2025-03-24 13:26:06.402 451258 14818 451271 20751 2 6362 2025-03-24 13:26:29.598 2025-03-24 13:26:29.598 451258 14818 451272 16259 1 6363 2025-03-24 13:41:07.547 2025-03-24 13:41:07.547 451258 14818 451306 1960 1 6364 2025-03-28 09:54:34.335 2025-03-28 09:54:34.335 457180 1626 457194 891 1 6365 2025-03-24 13:35:35.115 2025-03-24 13:35:35.115 451269 756 451296 19378 1 6366 2025-03-24 14:30:56.525 2025-03-24 14:30:56.525 451276 19943 451392 6421 2 6367 2025-03-24 14:35:11.411 2025-03-24 14:35:11.411 451276 19943 451408 14657 3 6368 2025-03-24 14:27:37.746 2025-03-24 14:27:37.746 451276 19943 451382 14650 1 6369 2025-03-24 14:39:53.547 2025-03-24 14:39:53.547 451276 19943 451414 14370 4 6370 2025-03-24 13:42:29.711 2025-03-24 13:42:29.711 451290 19812 451308 20490 1 6371 2025-03-29 04:22:20.03 2025-03-29 04:22:20.03 457436 16747 458185 17091 1 6372 2025-03-24 13:58:34.592 2025-03-24 13:58:34.592 451329 17824 451331 13406 1 6373 2025-03-24 14:04:42.177 2025-03-24 14:04:42.177 451329 17824 451343 20817 1 6374 2025-03-24 14:04:09.765 2025-03-24 14:04:09.765 451333 20811 451341 16956 1 6375 2025-03-24 14:07:34.59 2025-03-24 14:07:34.59 451348 20616 451349 5057 1 6376 2025-03-24 14:20:54.654 2025-03-24 14:20:54.654 451363 14688 451371 19005 1 6377 2025-03-24 14:33:02.666 2025-03-24 14:33:02.666 451374 9183 451397 20102 1 6378 2025-03-24 14:51:27.526 2025-03-24 14:51:27.526 451374 9183 451445 7389 1 6379 2025-03-26 12:10:25.606 2025-03-26 12:10:25.606 454427 1737 454435 21222 1 6380 2025-03-24 14:36:07.337 2025-03-24 14:36:07.337 451395 14449 451410 9655 1 6381 2025-03-24 14:52:54.704 2025-03-24 14:52:54.704 451395 14449 451446 8469 4 6382 2025-03-24 14:44:08.726 2025-03-24 14:44:08.726 451395 14449 451422 1354 3 6383 2025-03-24 14:41:17.509 2025-03-24 14:41:17.509 451395 14449 451418 10554 2 6384 2025-03-24 14:34:46.331 2025-03-24 14:34:46.331 451395 14449 451402 1737 1 6385 2025-03-24 14:52:54.704 2025-03-24 14:52:54.704 451422 1354 451446 8469 1 6386 2025-03-24 14:57:12.722 2025-03-24 14:57:12.722 451450 17237 451453 14705 1 6387 2025-03-27 18:28:54.319 2025-03-27 18:28:54.319 456562 20490 456654 16571 1 6388 2025-03-27 02:52:47.423 2025-03-27 02:52:47.423 455428 3717 455458 19535 1 6389 2025-03-27 02:28:12.055 2025-03-27 02:28:12.055 455429 15160 455431 19537 1 6390 2025-03-29 11:00:45.434 2025-03-29 11:00:45.434 451793 17226 458545 16543 1 6391 2025-03-27 08:46:05.239 2025-03-27 08:46:05.239 451967 706 455648 16834 1 6392 2025-03-27 20:35:36.002 2025-03-27 20:35:36.002 452151 6573 456736 21222 1 6393 2025-03-29 09:21:24.121 2025-03-29 09:21:24.121 452688 2748 458448 21051 1 6394 2025-03-29 00:48:26.612 2025-03-29 00:48:26.612 452688 2748 458119 13467 1 6395 2025-03-25 13:28:28.195 2025-03-25 13:28:28.195 452746 4633 452802 701 1 6396 2025-03-25 15:27:31.009 2025-03-25 15:27:31.009 452770 8448 452974 15556 1 6397 2025-03-27 03:17:22.509 2025-03-27 03:17:22.509 454036 6653 455472 1712 1 6398 2025-03-27 04:51:02.621 2025-03-27 04:51:02.621 455432 16347 455506 16289 1 6399 2025-03-26 14:52:48.656 2025-03-26 14:52:48.656 454517 21797 454676 716 1 6400 2025-03-27 04:52:35.961 2025-03-27 04:52:35.961 455434 2773 455510 5128 1 6401 2025-03-27 16:52:06.565 2025-03-27 16:52:06.565 456528 15282 456536 1472 1 6402 2025-03-26 19:41:37.803 2025-03-26 19:41:37.803 454615 882 455194 1471 1 6403 2025-03-26 15:05:14.319 2025-03-26 15:05:14.319 454701 13162 454716 10096 1 6404 2025-03-26 15:08:00.941 2025-03-26 15:08:00.941 454701 13162 454722 5497 2 6405 2025-03-26 15:21:56.157 2025-03-26 15:21:56.157 454701 13162 454763 4083 1 6406 2025-03-26 16:42:40.057 2025-03-26 16:42:40.057 454701 13162 454937 9367 4 6407 2025-03-27 04:19:09.969 2025-03-27 04:19:09.969 454701 13162 455493 18525 1 6408 2025-03-26 16:26:55.666 2025-03-26 16:26:55.666 454701 13162 454905 997 3 6409 2025-03-26 15:04:11.828 2025-03-26 15:04:11.828 454701 13162 454713 21064 1 6410 2025-03-26 15:10:32.995 2025-03-26 15:10:32.995 454701 13162 454728 17722 3 6411 2025-03-26 15:15:21.779 2025-03-26 15:15:21.779 454701 13162 454740 19863 2 6412 2025-03-26 15:56:25.395 2025-03-26 15:56:25.395 454701 13162 454857 14959 2 6413 2025-03-26 15:59:49.789 2025-03-26 15:59:49.789 454701 13162 454865 3371 2 6414 2025-03-26 15:32:36.565 2025-03-26 15:32:36.565 454701 13162 454794 16387 1 6415 2025-03-26 15:10:32.995 2025-03-26 15:10:32.995 454722 5497 454728 17722 1 6416 2025-03-26 15:56:25.395 2025-03-26 15:56:25.395 454763 4083 454857 14959 1 6417 2025-03-26 19:01:37.309 2025-03-26 19:01:37.309 454793 16214 455134 19005 1 6418 2025-03-26 16:42:40.057 2025-03-26 16:42:40.057 454794 16387 454937 9367 3 6419 2025-03-26 16:26:55.666 2025-03-26 16:26:55.666 454794 16387 454905 997 2 6420 2025-03-26 15:59:49.789 2025-03-26 15:59:49.789 454794 16387 454865 3371 1 6421 2025-03-26 18:13:45.05 2025-03-26 18:13:45.05 454895 17991 455067 4083 2 6422 2025-03-26 18:08:48.598 2025-03-26 18:08:48.598 454895 17991 455055 16193 1 6423 2025-03-26 18:14:53.461 2025-03-26 18:14:53.461 454895 17991 455070 17046 2 6424 2025-03-26 16:38:38.091 2025-03-26 16:38:38.091 454895 17991 454926 21208 1 6425 2025-03-26 16:21:27.234 2025-03-26 16:21:27.234 454895 17991 454901 12356 1 6426 2025-03-28 23:37:15.299 2025-03-28 23:37:15.299 458047 4624 458106 15148 1 6427 2025-03-26 18:14:53.461 2025-03-26 18:14:53.461 454901 12356 455070 17046 1 6428 2025-03-26 16:42:40.057 2025-03-26 16:42:40.057 454905 997 454937 9367 1 6429 2025-03-26 18:13:45.05 2025-03-26 18:13:45.05 455055 16193 455067 4083 1 6430 2025-03-27 02:49:58.162 2025-03-27 02:49:58.162 455079 9336 455454 8985 1 6431 2025-03-26 22:24:03.151 2025-03-26 22:24:03.151 455080 9758 455292 21683 1 6432 2025-03-27 00:55:08.014 2025-03-27 00:55:08.014 455080 9758 455376 20757 1 6433 2025-03-26 18:32:28.299 2025-03-26 18:32:28.299 455080 9758 455088 18313 1 6434 2025-03-27 13:09:04.485 2025-03-27 13:09:04.485 455952 21485 456073 10060 3 6435 2025-03-27 12:50:42.898 2025-03-27 12:50:42.898 455952 21485 455994 5112 2 6436 2025-03-27 13:14:30.283 2025-03-27 13:14:30.283 455952 21485 456086 10094 4 6437 2025-03-27 12:40:58.213 2025-03-27 12:40:58.213 455952 21485 455962 759 1 6438 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 455952 21485 456804 992 5 6439 2025-03-27 23:01:28.954 2025-03-27 23:01:28.954 455980 1534 456850 12561 1 6440 2025-03-26 19:46:02.115 2025-03-26 19:46:02.115 455117 21520 455199 18678 1 6441 2025-03-26 19:41:59.218 2025-03-26 19:41:59.218 455120 7674 455196 7766 1 6442 2025-03-26 19:21:09.67 2025-03-26 19:21:09.67 455125 19016 455177 17365 1 6443 2025-03-26 19:44:28.271 2025-03-26 19:44:28.271 455159 2309 455198 16929 1 6444 2025-03-26 19:48:52.196 2025-03-26 19:48:52.196 455159 2309 455201 13038 2 6445 2025-03-27 08:33:13.03 2025-03-27 08:33:13.03 455231 17103 455631 11263 1 6446 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 455286 11678 455302 20511 1 6447 2025-03-27 07:01:00.981 2025-03-27 07:01:00.981 455324 16966 455589 21794 1 6448 2025-03-27 02:56:17.727 2025-03-27 02:56:17.727 455338 20972 455462 5725 1 6449 2025-03-27 00:40:38.028 2025-03-27 00:40:38.028 455362 13132 455367 21688 2 6450 2025-03-27 00:38:13.855 2025-03-27 00:38:13.855 455362 13132 455363 814 1 6451 2025-03-27 12:08:27.134 2025-03-27 12:08:27.134 455651 17162 455915 20597 1 6452 2025-03-27 01:50:04.631 2025-03-27 01:50:04.631 455374 7978 455403 8423 1 6453 2025-03-27 09:59:08.188 2025-03-27 09:59:08.188 455374 7978 455754 21072 1 6454 2025-03-27 02:53:15.658 2025-03-27 02:53:15.658 455396 21398 455459 19502 1 6455 2025-03-27 03:08:56.236 2025-03-27 03:08:56.236 455396 21398 455467 6687 1 6456 2025-03-27 06:22:51.288 2025-03-27 06:22:51.288 455401 15925 455565 13574 1 6457 2025-03-27 21:02:23.918 2025-03-27 21:02:23.918 455486 17212 456758 993 2 6458 2025-03-27 04:14:30.568 2025-03-27 04:14:30.568 455486 17212 455491 2537 1 6459 2025-03-27 05:24:37.844 2025-03-27 05:24:37.844 455486 17212 455524 12738 1 6460 2025-03-27 11:45:44.201 2025-03-27 11:45:44.201 455498 15728 455875 20669 1 6461 2025-03-27 11:56:27.06 2025-03-27 11:56:27.06 455498 15728 455895 9655 2 6462 2025-03-27 10:29:23.159 2025-03-27 10:29:23.159 455523 17221 455784 7667 1 6463 2025-03-27 08:35:57.214 2025-03-27 08:35:57.214 455525 7877 455638 11829 4 6464 2025-03-27 08:33:21.069 2025-03-27 08:33:21.069 455525 7877 455632 1433 3 6465 2025-03-27 05:48:29.559 2025-03-27 05:48:29.559 455525 7877 455531 21600 1 6466 2025-03-27 08:31:15.534 2025-03-27 08:31:15.534 455525 7877 455628 20811 2 6467 2025-03-27 16:23:25.27 2025-03-27 16:23:25.27 455525 7877 456501 17953 1 6468 2025-03-27 22:02:30.63 2025-03-27 22:02:30.63 455525 7877 456801 2206 2 6469 2025-03-27 05:56:55.182 2025-03-27 05:56:55.182 455527 17030 455539 21631 1 6470 2025-03-27 06:44:09.779 2025-03-27 06:44:09.779 455564 16594 455578 19813 1 6471 2025-03-29 08:13:02.274 2025-03-29 08:13:02.274 455601 7659 458349 1433 1 6472 2025-03-27 08:35:57.214 2025-03-27 08:35:57.214 455632 1433 455638 11829 1 6473 2025-03-27 19:22:51.493 2025-03-27 19:22:51.493 455649 21639 456693 12946 3 6474 2025-03-27 09:20:47.788 2025-03-27 09:20:47.788 455649 21639 455714 11798 4 6475 2025-03-27 09:03:35.754 2025-03-27 09:03:35.754 455649 21639 455682 7119 3 6476 2025-03-27 09:26:13.367 2025-03-27 09:26:13.367 455649 21639 455720 9494 5 6477 2025-03-27 08:48:27.631 2025-03-27 08:48:27.631 455649 21639 455650 5128 1 6478 2025-03-27 09:10:00.923 2025-03-27 09:10:00.923 455649 21639 455694 16970 4 6479 2025-03-27 09:35:37.366 2025-03-27 09:35:37.366 455649 21639 455732 5112 6 6480 2025-03-27 12:08:27.134 2025-03-27 12:08:27.134 455649 21639 455915 20597 2 6481 2025-03-27 10:13:30.343 2025-03-27 10:13:30.343 455649 21639 455761 680 1 6482 2025-03-27 18:53:18.427 2025-03-27 18:53:18.427 455649 21639 456670 20987 1 6483 2025-03-27 09:16:12.762 2025-03-27 09:16:12.762 455649 21639 455706 20117 5 6484 2025-03-27 08:55:27.26 2025-03-27 08:55:27.26 455649 21639 455665 9307 2 6485 2025-03-27 12:26:04.334 2025-03-27 12:26:04.334 455649 21639 455936 12779 1 6486 2025-03-27 17:32:00.228 2025-03-27 17:32:00.228 455649 21639 456590 20861 2 6487 2025-03-27 08:48:44.757 2025-03-27 08:48:44.757 455649 21639 455651 17162 1 6488 2025-03-27 13:57:19.708 2025-03-27 13:57:19.708 455649 21639 456239 20751 1 6489 2025-03-27 09:20:47.788 2025-03-27 09:20:47.788 455682 7119 455714 11798 1 6490 2025-03-27 09:26:13.367 2025-03-27 09:26:13.367 455682 7119 455720 9494 2 6491 2025-03-27 09:10:00.923 2025-03-27 09:10:00.923 455682 7119 455694 16970 1 6492 2025-03-27 09:35:37.366 2025-03-27 09:35:37.366 455682 7119 455732 5112 3 6493 2025-03-27 09:16:12.762 2025-03-27 09:16:12.762 455682 7119 455706 20117 2 6494 2025-03-27 10:51:25.618 2025-03-27 10:51:25.618 455689 18678 455817 18068 1 6495 2025-03-27 09:35:37.366 2025-03-27 09:35:37.366 455720 9494 455732 5112 1 6496 2025-03-27 11:54:30.042 2025-03-27 11:54:30.042 455824 15147 455889 807 1 6497 2025-03-27 12:16:54.793 2025-03-27 12:16:54.793 455824 15147 455923 4650 4 6498 2025-03-27 13:09:04.485 2025-03-27 13:09:04.485 455824 15147 456073 10060 8 6499 2025-03-27 12:06:29.751 2025-03-27 12:06:29.751 455824 15147 455911 20450 3 6500 2025-03-27 12:50:42.898 2025-03-27 12:50:42.898 455824 15147 455994 5112 7 6501 2025-03-27 13:14:30.283 2025-03-27 13:14:30.283 455824 15147 456086 10094 9 6502 2025-03-27 12:36:01.878 2025-03-27 12:36:01.878 455824 15147 455952 21485 5 6503 2025-03-27 12:01:20.522 2025-03-27 12:01:20.522 455824 15147 455904 20715 2 6504 2025-03-27 12:40:58.213 2025-03-27 12:40:58.213 455824 15147 455962 759 6 6505 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 455824 15147 456804 992 10 6506 2025-03-27 19:38:32.441 2025-03-27 19:38:32.441 456419 19655 456708 629 1 6507 2025-03-29 03:40:43.871 2025-03-29 03:40:43.871 457468 9330 458171 4166 1 6508 2025-03-27 17:48:57.584 2025-03-27 17:48:57.584 456607 21485 456621 15806 1 6509 2025-03-27 23:30:45.12 2025-03-27 23:30:45.12 456613 21114 456862 9169 1 6510 2025-03-27 18:42:50.705 2025-03-27 18:42:50.705 456633 21320 456664 7916 1 6511 2025-03-28 03:33:26.801 2025-03-28 03:33:26.801 456668 2709 456994 12334 1 6512 2025-03-27 19:28:35.553 2025-03-27 19:28:35.553 456698 7960 456699 16966 1 6513 2025-03-28 01:45:35.166 2025-03-28 01:45:35.166 456935 1221 456941 3683 1 6514 2025-03-28 07:26:25.695 2025-03-28 07:26:25.695 457009 10016 457086 8535 1 6515 2025-03-28 17:31:43.333 2025-03-28 17:31:43.333 457256 15690 457783 20586 1 6516 2025-03-28 22:55:06.461 2025-03-28 22:55:06.461 457267 18351 458067 1769 2 6517 2025-03-29 06:22:28.032 2025-03-29 06:22:28.032 457267 18351 458250 1836 1 6518 2025-03-28 19:07:47.678 2025-03-28 19:07:47.678 457267 18351 457892 21003 1 6519 2025-03-27 19:58:42.679 2025-03-27 19:58:42.679 456724 8168 456726 17237 1 6520 2025-03-28 22:01:08.54 2025-03-28 22:01:08.54 457430 4027 458032 7675 1 6521 2025-03-28 22:08:14.287 2025-03-28 22:08:14.287 457430 4027 458036 9363 2 6522 2025-03-28 08:07:43.335 2025-03-28 08:07:43.335 456728 21079 457106 20596 1 6523 2025-03-27 20:29:34.618 2025-03-27 20:29:34.618 456732 5377 456733 5597 1 6524 2025-03-28 07:41:20.924 2025-03-28 07:41:20.924 456745 650 457096 20756 1 6525 2025-03-28 08:07:54.027 2025-03-28 08:07:54.027 456745 650 457109 5017 2 6526 2025-03-27 22:41:43.787 2025-03-27 22:41:43.787 456815 1002 456831 4084 1 6527 2025-03-27 23:28:51.41 2025-03-27 23:28:51.41 456858 10608 456861 20669 1 6528 2025-03-29 05:43:04.521 2025-03-29 05:43:04.521 457041 17030 458214 20222 1 6529 2025-03-28 18:13:57.609 2025-03-28 18:13:57.609 457709 21247 457812 17519 1 6530 2025-03-29 07:00:17.994 2025-03-29 07:00:17.994 457760 13759 458280 18409 1 6531 2025-03-28 09:42:52.217 2025-03-28 09:42:52.217 457097 4313 457179 13132 1 6532 2025-03-28 09:44:36.899 2025-03-28 09:44:36.899 457105 1626 457183 13399 1 6533 2025-03-29 06:26:25.432 2025-03-29 06:26:25.432 457126 10986 458255 7667 3 6534 2025-03-29 02:46:44.358 2025-03-29 02:46:44.358 457126 10986 458160 18306 2 6535 2025-03-28 20:09:33.211 2025-03-28 20:09:33.211 457126 10986 457951 16149 2 6536 2025-03-28 13:01:34.829 2025-03-28 13:01:34.829 457126 10986 457378 1008 3 6537 2025-03-28 10:20:19.726 2025-03-28 10:20:19.726 457126 10986 457221 11750 2 6538 2025-03-28 10:08:15.092 2025-03-28 10:08:15.092 457126 10986 457211 2529 2 6539 2025-03-29 03:55:02.778 2025-03-29 03:55:02.778 457126 10986 458177 4395 4 6540 2025-03-29 02:27:58.288 2025-03-29 02:27:58.288 457126 10986 458156 20062 2 6541 2025-03-29 06:27:43.392 2025-03-29 06:27:43.392 457126 10986 458257 21670 1 6542 2025-03-29 06:32:25.988 2025-03-29 06:32:25.988 457126 10986 458259 21666 2 6543 2025-03-28 08:52:25.598 2025-03-28 08:52:25.598 457126 10986 457131 12169 1 6544 2025-03-28 12:57:13.439 2025-03-28 12:57:13.439 457126 10986 457372 20829 2 6545 2025-03-28 19:35:57.461 2025-03-28 19:35:57.461 457126 10986 457921 14909 1 6546 2025-03-29 03:32:35.473 2025-03-29 03:32:35.473 457126 10986 458169 21833 3 6547 2025-03-29 02:20:23.047 2025-03-29 02:20:23.047 457126 10986 458150 21494 1 6548 2025-03-28 09:00:43.175 2025-03-28 09:00:43.175 457126 10986 457137 19469 1 6549 2025-03-29 04:04:08.662 2025-03-29 04:04:08.662 457126 10986 458178 909 5 6550 2025-03-29 07:11:03.869 2025-03-29 07:11:03.869 457126 10986 458292 6419 1 6551 2025-03-29 05:27:54.77 2025-03-29 05:27:54.77 457126 10986 458203 13854 4 6552 2025-03-29 02:21:50.358 2025-03-29 02:21:50.358 457126 10986 458153 15052 3 6553 2025-03-28 11:26:50.333 2025-03-28 11:26:50.333 457126 10986 457280 20551 1 6554 2025-03-28 10:20:19.726 2025-03-28 10:20:19.726 457131 12169 457221 11750 1 6555 2025-03-28 10:08:15.092 2025-03-28 10:08:15.092 457137 19469 457211 2529 1 6556 2025-03-28 09:37:11.763 2025-03-28 09:37:11.763 457162 18321 457173 21585 1 6557 2025-03-29 02:37:51.136 2025-03-29 02:37:51.136 457269 17798 458158 695 1 6558 2025-03-28 13:01:34.829 2025-03-28 13:01:34.829 457372 20829 457378 1008 1 6559 2025-03-28 14:46:53.27 2025-03-28 14:46:53.27 457389 2293 457504 6741 1 6560 2025-03-28 19:35:50.674 2025-03-28 19:35:50.674 457413 19138 457919 5444 1 6561 2025-03-28 13:57:35.09 2025-03-28 13:57:35.09 457413 19138 457436 16747 1 6562 2025-03-29 04:22:20.03 2025-03-29 04:22:20.03 457413 19138 458185 17091 2 6563 2025-03-29 07:00:17.994 2025-03-29 07:00:17.994 457413 19138 458280 18409 2 6564 2025-03-29 07:00:42.63 2025-03-29 07:00:42.63 457413 19138 458282 21539 2 6565 2025-03-29 04:23:00.88 2025-03-29 04:23:00.88 457413 19138 458186 993 1 6566 2025-03-29 07:19:03.853 2025-03-29 07:19:03.853 457413 19138 458300 20616 1 6567 2025-03-28 17:09:45.098 2025-03-28 17:09:45.098 457413 19138 457760 13759 1 6568 2025-03-28 18:04:29.739 2025-03-28 18:04:29.739 457796 3506 457806 20674 1 6569 2025-03-28 19:57:27.019 2025-03-28 19:57:27.019 457796 3506 457938 900 1 6570 2025-03-29 06:18:46.602 2025-03-29 06:18:46.602 457801 10302 458245 10112 1 6571 2025-03-28 22:50:52.777 2025-03-28 22:50:52.777 457818 6749 458065 2437 1 6572 2025-03-29 03:36:38.24 2025-03-29 03:36:38.24 457838 14472 458170 21374 1 6573 2025-03-28 18:48:51.256 2025-03-28 18:48:51.256 457851 17116 457857 20754 1 6574 2025-03-28 22:55:06.461 2025-03-28 22:55:06.461 457892 21003 458067 1769 1 6575 2025-03-28 22:10:48.522 2025-03-28 22:10:48.522 457918 19378 458041 21131 1 6576 2025-03-29 07:00:42.63 2025-03-29 07:00:42.63 457919 5444 458282 21539 1 6577 2025-03-28 20:09:33.211 2025-03-28 20:09:33.211 457921 14909 457951 16149 1 6578 2025-03-29 05:27:54.77 2025-03-29 05:27:54.77 457921 14909 458203 13854 3 6579 2025-03-29 02:21:50.358 2025-03-29 02:21:50.358 457921 14909 458153 15052 2 6580 2025-03-29 05:34:22.685 2025-03-29 05:34:22.685 458028 7773 458208 1549 1 6581 2025-03-28 19:55:29.503 2025-03-28 19:55:29.503 457936 1515 457937 1806 1 6582 2025-03-28 20:30:45.359 2025-03-28 20:30:45.359 457957 20275 457980 652 1 6583 2025-03-28 21:24:35.687 2025-03-28 21:24:35.687 457988 5775 458013 14260 1 6584 2025-03-28 23:35:51.454 2025-03-28 23:35:51.454 457996 21523 458105 19813 1 6585 2025-03-28 22:32:38.535 2025-03-28 22:32:38.535 458053 10013 458059 12139 1 6586 2025-03-29 07:19:56.445 2025-03-29 07:19:56.445 458058 15115 458302 8664 1 6587 2025-03-29 05:46:08.317 2025-03-29 05:46:08.317 458058 15115 458217 18402 1 6588 2025-03-29 06:27:02.504 2025-03-29 06:27:02.504 458058 15115 458256 1658 1 6589 2025-03-29 07:01:40.258 2025-03-29 07:01:40.258 458092 16717 458284 2088 1 6590 2025-03-29 06:40:20.036 2025-03-29 06:40:20.036 458111 10393 458267 16556 1 6591 2025-03-29 08:58:19.755 2025-03-29 08:58:19.755 458122 11866 458414 20990 1 6592 2025-03-29 06:21:21.651 2025-03-29 06:21:21.651 458122 11866 458249 10311 7 6593 2025-03-29 01:42:19.498 2025-03-29 01:42:19.498 458122 11866 458134 651 1 6594 2025-03-29 02:57:27.653 2025-03-29 02:57:27.653 458122 11866 458162 16348 1 6595 2025-03-29 06:14:59.098 2025-03-29 06:14:59.098 458122 11866 458242 7869 4 6596 2025-03-29 06:16:48.232 2025-03-29 06:16:48.232 458122 11866 458243 6335 5 6597 2025-03-29 06:18:14.367 2025-03-29 06:18:14.367 458122 11866 458244 666 6 6598 2025-03-29 07:53:37.712 2025-03-29 07:53:37.712 458122 11866 458330 14607 5 6599 2025-03-29 05:42:08.757 2025-03-29 05:42:08.757 458122 11866 458212 1823 2 6600 2025-03-29 06:20:12.865 2025-03-29 06:20:12.865 458122 11866 458247 16788 1 6601 2025-03-29 06:25:23.27 2025-03-29 06:25:23.27 458122 11866 458254 9378 1 6602 2025-03-29 06:40:34.93 2025-03-29 06:40:34.93 458122 11866 458268 695 1 6603 2025-03-29 07:15:19.189 2025-03-29 07:15:19.189 458122 11866 458298 5017 1 6604 2025-03-29 08:11:53.355 2025-03-29 08:11:53.355 458122 11866 458344 762 1 6605 2025-03-29 05:41:54.35 2025-03-29 05:41:54.35 458122 11866 458211 1352 2 6606 2025-03-29 06:07:37.183 2025-03-29 06:07:37.183 458122 11866 458237 20717 3 6607 2025-03-29 07:51:47.131 2025-03-29 07:51:47.131 458122 11866 458323 7903 2 6608 2025-03-29 03:54:43.319 2025-03-29 03:54:43.319 458122 11866 458176 14452 1 6609 2025-03-29 06:21:21.651 2025-03-29 06:21:21.651 458134 651 458249 10311 6 6610 2025-03-29 05:41:54.35 2025-03-29 05:41:54.35 458134 651 458211 1352 1 6611 2025-03-29 06:07:37.183 2025-03-29 06:07:37.183 458134 651 458237 20717 2 6612 2025-03-29 07:51:47.131 2025-03-29 07:51:47.131 458134 651 458323 7903 1 6613 2025-03-29 06:14:59.098 2025-03-29 06:14:59.098 458134 651 458242 7869 3 6614 2025-03-29 06:16:48.232 2025-03-29 06:16:48.232 458134 651 458243 6335 4 6615 2025-03-29 06:18:14.367 2025-03-29 06:18:14.367 458134 651 458244 666 5 6616 2025-03-29 07:53:37.712 2025-03-29 07:53:37.712 458134 651 458330 14607 4 6617 2025-03-29 04:42:27.479 2025-03-29 04:42:27.479 458149 9337 458191 21804 2 6618 2025-03-29 04:50:04.391 2025-03-29 04:50:04.391 458149 9337 458192 14669 3 6619 2025-03-29 04:51:11.003 2025-03-29 04:51:11.003 458149 9337 458193 19292 4 6620 2025-03-29 08:05:08.034 2025-03-29 08:05:08.034 458149 9337 458340 8945 1 6621 2025-03-29 08:12:23.852 2025-03-29 08:12:23.852 458149 9337 458348 6229 2 6622 2025-03-29 04:25:47.124 2025-03-29 04:25:47.124 458149 9337 458189 992 1 6623 2025-03-29 04:57:59.915 2025-03-29 04:57:59.915 458151 2335 458195 15200 1 6624 2025-03-29 05:27:54.77 2025-03-29 05:27:54.77 458153 15052 458203 13854 1 6625 2025-03-29 05:42:08.757 2025-03-29 05:42:08.757 458162 16348 458212 1823 1 6626 2025-03-29 03:47:40.134 2025-03-29 03:47:40.134 458173 8326 458174 4802 1 6627 2025-03-29 05:45:11.491 2025-03-29 05:45:11.491 458173 8326 458216 15336 1 6628 2025-03-29 04:42:27.479 2025-03-29 04:42:27.479 458189 992 458191 21804 1 6629 2025-03-29 04:50:04.391 2025-03-29 04:50:04.391 458189 992 458192 14669 2 6630 2025-03-29 04:51:11.003 2025-03-29 04:51:11.003 458189 992 458193 19292 3 6631 2025-03-29 07:09:07.699 2025-03-29 07:09:07.699 458215 1740 458291 5752 1 6632 2025-03-29 08:30:10.899 2025-03-29 08:30:10.899 458227 21514 458374 16842 1 6633 2025-03-29 06:08:13.048 2025-03-29 06:08:13.048 458227 21514 458238 6749 1 6634 2025-03-29 06:25:00.806 2025-03-29 06:25:00.806 458227 21514 458252 20788 2 6635 2025-03-29 07:17:39.32 2025-03-29 07:17:39.32 458227 21514 458299 11873 5 6636 2025-03-29 06:52:39.729 2025-03-29 06:52:39.729 458227 21514 458276 8080 3 6637 2025-03-29 07:42:42.56 2025-03-29 07:42:42.56 458227 21514 458316 20715 7 6638 2025-03-29 06:39:40.806 2025-03-29 06:39:40.806 458227 21514 458266 1162 2 6639 2025-03-29 08:09:42.3 2025-03-29 08:09:42.3 458227 21514 458342 5758 7 6640 2025-03-29 06:14:22.466 2025-03-29 06:14:22.466 458227 21514 458241 1010 1 6641 2025-03-29 07:13:34.021 2025-03-29 07:13:34.021 458227 21514 458294 20137 4 6642 2025-03-29 06:25:12.782 2025-03-29 06:25:12.782 458227 21514 458253 16789 2 6643 2025-03-29 06:39:14.548 2025-03-29 06:39:14.548 458227 21514 458264 1490 3 6644 2025-03-29 06:19:45.574 2025-03-29 06:19:45.574 458227 21514 458246 17984 2 6645 2025-03-29 07:14:25.856 2025-03-29 07:14:25.856 458227 21514 458296 19484 1 6646 2025-03-29 06:01:46.6 2025-03-29 06:01:46.6 458227 21514 458232 16988 1 6647 2025-03-29 06:20:37.341 2025-03-29 06:20:37.341 458227 21514 458248 21058 2 6648 2025-03-29 07:41:26.651 2025-03-29 07:41:26.651 458227 21514 458313 11038 6 6649 2025-03-29 07:48:23.728 2025-03-29 07:48:23.728 458227 21514 458320 2963 8 6650 2025-03-29 08:23:34.864 2025-03-29 08:23:34.864 458227 21514 458363 21383 9 6651 2025-03-29 07:53:12.042 2025-03-29 07:53:12.042 458227 21514 458327 1426 1 6652 2025-03-29 08:19:53.331 2025-03-29 08:19:53.331 458227 21514 458357 3745 8 6653 2025-03-29 08:05:30.919 2025-03-29 08:05:30.919 458227 21514 458341 8989 6 6654 2025-03-29 06:25:00.806 2025-03-29 06:25:00.806 458238 6749 458252 20788 1 6655 2025-03-29 06:39:40.806 2025-03-29 06:39:40.806 458238 6749 458266 1162 1 6656 2025-03-29 06:39:14.548 2025-03-29 06:39:14.548 458238 6749 458264 1490 2 6657 2025-03-12 15:47:40.212 2025-03-12 15:47:40.212 435340 2961 435341 20577 1 6658 2025-03-29 07:17:39.32 2025-03-29 07:17:39.32 458241 1010 458299 11873 4 6659 2025-03-29 06:52:39.729 2025-03-29 06:52:39.729 458241 1010 458276 8080 2 6660 2025-03-29 07:42:42.56 2025-03-29 07:42:42.56 458241 1010 458316 20715 6 6661 2025-03-29 08:09:42.3 2025-03-29 08:09:42.3 458241 1010 458342 5758 6 6662 2025-03-29 07:13:34.021 2025-03-29 07:13:34.021 458241 1010 458294 20137 3 6663 2025-03-29 06:19:45.574 2025-03-29 06:19:45.574 458241 1010 458246 17984 1 6664 2025-03-29 06:20:37.341 2025-03-29 06:20:37.341 458241 1010 458248 21058 1 6665 2025-03-29 07:41:26.651 2025-03-29 07:41:26.651 458241 1010 458313 11038 5 6666 2025-03-29 07:48:23.728 2025-03-29 07:48:23.728 458241 1010 458320 2963 7 6667 2025-03-29 08:23:34.864 2025-03-29 08:23:34.864 458241 1010 458363 21383 8 6668 2025-03-29 08:19:53.331 2025-03-29 08:19:53.331 458241 1010 458357 3745 7 6669 2025-03-29 08:05:30.919 2025-03-29 08:05:30.919 458241 1010 458341 8989 5 6670 2025-03-29 08:39:52.52 2025-03-29 08:39:52.52 458251 1652 458382 21518 1 6671 2025-03-29 06:39:14.548 2025-03-29 06:39:14.548 458252 20788 458264 1490 1 6672 2025-03-29 07:03:28.102 2025-03-29 07:03:28.102 458271 16653 458287 11144 1 6673 2025-03-29 07:32:58.713 2025-03-29 07:32:58.713 458271 16653 458308 21184 1 6674 2025-03-29 06:53:11.14 2025-03-29 06:53:11.14 458272 9262 458277 2593 1 6675 2025-03-29 08:02:52.14 2025-03-29 08:02:52.14 458272 9262 458338 11454 1 6676 2025-03-29 08:48:30.611 2025-03-29 08:48:30.611 458272 9262 458393 13921 1 6677 2025-03-29 07:38:35.399 2025-03-29 07:38:35.399 458286 16939 458309 18402 1 6678 2025-03-29 07:19:56.046 2025-03-29 07:19:56.046 458289 21768 458301 6421 2 6679 2025-03-29 07:06:52.065 2025-03-29 07:06:52.065 458289 21768 458290 19488 1 6680 2025-03-29 07:13:35.25 2025-03-29 07:13:35.25 458289 21768 458295 3729 1 6681 2025-03-29 07:42:42.56 2025-03-29 07:42:42.56 458299 11873 458316 20715 2 6682 2025-03-29 08:09:42.3 2025-03-29 08:09:42.3 458299 11873 458342 5758 2 6683 2025-03-29 07:41:26.651 2025-03-29 07:41:26.651 458299 11873 458313 11038 1 6684 2025-03-29 07:48:23.728 2025-03-29 07:48:23.728 458299 11873 458320 2963 3 6685 2025-03-29 08:23:34.864 2025-03-29 08:23:34.864 458299 11873 458363 21383 4 6686 2025-03-29 08:19:53.331 2025-03-29 08:19:53.331 458299 11873 458357 3745 3 6687 2025-03-29 08:05:30.919 2025-03-29 08:05:30.919 458299 11873 458341 8989 1 6688 2025-03-29 08:19:01.75 2025-03-29 08:19:01.75 458325 16876 458355 19346 1 6689 2025-03-29 08:21:39.195 2025-03-29 08:21:39.195 458345 1650 458361 827 1 6690 2025-03-29 08:20:18.758 2025-03-29 08:20:18.758 458347 1632 458359 11885 2 6691 2025-03-29 08:44:36.778 2025-03-29 08:44:36.778 458347 1632 458386 725 3 6692 2025-03-29 08:24:04.323 2025-03-29 08:24:04.323 458347 1632 458365 1319 3 6693 2025-03-29 08:14:44.394 2025-03-29 08:14:44.394 458347 1632 458351 21804 1 6694 2025-03-29 08:37:18.233 2025-03-29 08:37:18.233 458347 1632 458381 1713 1 6695 2025-03-29 08:19:45.573 2025-03-29 08:19:45.573 458347 1632 458356 5703 1 6696 2025-03-29 08:57:43.239 2025-03-29 08:57:43.239 458377 3717 458413 8664 1 6697 2025-03-29 08:47:39.477 2025-03-29 08:47:39.477 458388 10094 458389 21242 1 6698 2025-03-29 09:03:52.837 2025-03-29 09:03:52.837 458416 15474 458420 12346 1 6699 2025-03-12 14:44:50.242 2025-03-12 14:44:50.242 435224 2342 435236 8989 1 6700 2025-03-12 15:18:32.414 2025-03-12 15:18:32.414 435224 2342 435282 12744 2 6701 2025-03-13 00:51:32.615 2025-03-13 00:51:32.615 435224 2342 435778 15521 1 6702 2025-03-12 14:52:46.057 2025-03-12 14:52:46.057 435224 2342 435247 21216 2 6703 2025-03-12 15:12:12.155 2025-03-12 15:12:12.155 435224 2342 435271 721 1 6704 2025-03-12 03:04:53.507 2025-03-12 03:04:53.507 60799 9363 434568 17030 1 6705 2025-03-11 23:56:21.209 2025-03-11 23:56:21.209 79125 8380 434478 17184 1 6706 2025-03-12 14:15:15.322 2025-03-12 14:15:15.322 192644 20509 435186 1817 1 6707 2025-03-13 11:18:04.909 2025-03-13 11:18:04.909 238583 669 436180 20990 1 6708 2025-03-13 13:41:20.848 2025-03-13 13:41:20.848 238583 669 436339 9551 2 6709 2025-03-13 02:03:05.726 2025-03-13 02:03:05.726 259258 16387 435825 18430 1 6710 2025-03-11 23:21:13.411 2025-03-11 23:21:13.411 265848 3371 434467 9845 2 6711 2024-10-13 12:41:13.343 2024-10-13 12:41:13.343 265848 3371 266131 15060 1 6712 2024-10-14 01:54:31.822 2024-10-14 01:54:31.822 265848 3371 266721 20751 1 6713 2025-03-11 23:21:13.411 2025-03-11 23:21:13.411 266721 20751 434467 9845 1 6714 2025-03-09 17:27:56.285 2025-03-09 17:27:56.285 298001 10611 431714 21393 1 6715 2024-11-29 01:19:33.842 2024-11-29 01:19:33.842 312024 994 312067 21166 1 6716 2025-03-12 12:12:48.273 2025-03-12 12:12:48.273 312024 994 435033 1175 2 6717 2025-03-12 12:14:14.574 2025-03-12 12:14:14.574 312024 994 435034 1761 1 6718 2025-03-12 12:12:48.273 2025-03-12 12:12:48.273 312067 21166 435033 1175 1 6719 2024-12-22 18:19:55.084 2024-12-22 18:19:55.084 337715 4538 338461 13921 2 6720 2025-03-21 18:20:53.34 2025-03-21 18:20:53.34 337715 4538 447259 21072 3 6721 2024-12-22 13:32:34.483 2024-12-22 13:32:34.483 337715 4538 338168 12738 1 6722 2025-03-06 03:22:38.467 2025-03-06 03:22:38.467 383302 20965 427054 8416 2 6723 2025-03-09 15:35:13.883 2025-03-09 15:35:13.883 383302 20965 431135 940 3 6724 2025-03-01 22:16:58.936 2025-03-01 22:16:58.936 383302 20965 421704 11992 1 6725 2025-03-15 06:00:31.669 2025-03-15 06:00:31.669 392486 17552 438009 18473 2 6726 2025-02-05 13:14:52.468 2025-02-05 13:14:52.468 392486 17552 392677 2492 1 6727 2025-03-12 11:33:24.278 2025-03-12 11:33:24.278 392486 17552 434979 11516 2 6728 2025-02-14 09:21:37.901 2025-02-14 09:21:37.901 397192 21794 402938 4115 2 6729 2025-02-14 03:58:36.215 2025-02-14 03:58:36.215 397192 21794 402799 4166 1 6730 2025-02-15 08:14:54.444 2025-02-15 08:14:54.444 397192 21794 403796 6537 3 6731 2025-02-10 14:16:25.888 2025-02-10 14:16:25.888 397842 16543 398184 16816 1 6732 2025-02-10 16:11:25.511 2025-02-10 16:11:25.511 397842 16543 398382 19806 2 6733 2025-02-10 16:20:14.763 2025-02-10 16:20:14.763 397842 16543 398392 676 3 6734 2025-02-14 09:15:10.019 2025-02-14 09:15:10.019 397842 16543 402935 20563 4 6735 2025-03-12 17:21:00.707 2025-03-12 17:21:00.707 435398 621 435444 9246 1 6736 2025-03-12 04:30:20.377 2025-03-12 04:30:20.377 419731 20198 434618 894 1 6737 2025-03-12 01:05:41.019 2025-03-12 01:05:41.019 423720 6717 434507 1609 1 6738 2025-03-11 23:48:09.759 2025-03-11 23:48:09.759 433345 2039 434474 2529 1 6739 2025-03-12 00:43:59.908 2025-03-12 00:43:59.908 433345 2039 434495 13216 2 6740 2025-03-11 17:05:06.336 2025-03-11 17:05:06.336 430498 4062 434212 1401 1 6741 2025-03-12 07:23:04.153 2025-03-12 07:23:04.153 430498 4062 434713 21482 1 6742 2025-03-11 19:40:10.16 2025-03-11 19:40:10.16 433669 5129 434323 14688 1 6743 2025-03-09 13:54:41.045 2025-03-09 13:54:41.045 430892 15491 430904 17109 5 6744 2025-03-09 13:48:14.563 2025-03-09 13:48:14.563 430892 15491 430898 17082 2 6745 2025-03-09 13:47:30.454 2025-03-09 13:47:30.454 430892 15491 430895 2329 1 6746 2025-03-09 13:51:36.305 2025-03-09 13:51:36.305 430892 15491 430902 19637 3 6747 2025-03-09 13:52:57.312 2025-03-09 13:52:57.312 430892 15491 430903 11648 4 6748 2025-03-09 23:12:00.487 2025-03-09 23:12:00.487 430892 15491 432085 10862 1 6749 2025-03-12 02:46:34.589 2025-03-12 02:46:34.589 430892 15491 434554 20495 2 6750 2025-03-12 08:13:53.022 2025-03-12 08:13:53.022 429291 12245 434763 797 1 6751 2025-03-13 02:21:16.016 2025-03-13 02:21:16.016 429291 12245 435830 15213 1 6752 2025-03-09 06:40:15.065 2025-03-09 06:40:15.065 429291 12245 430411 14941 1 6753 2025-03-10 16:19:13.439 2025-03-10 16:19:13.439 429291 12245 432861 17095 1 6754 2025-03-13 16:34:33.881 2025-03-13 16:34:33.881 429739 18393 436554 19198 1 6755 2025-03-12 10:01:00.6 2025-03-12 10:01:00.6 430342 10981 434873 1647 1 6756 2025-03-12 05:54:03.847 2025-03-12 05:54:03.847 434502 5017 434670 9262 1 6757 2025-03-12 07:35:39.181 2025-03-12 07:35:39.181 433695 20998 434725 20525 2 6758 2025-03-12 07:25:33.034 2025-03-12 07:25:33.034 433695 20998 434715 2338 1 6759 2025-03-10 16:01:18.006 2025-03-10 16:01:18.006 431241 14260 432838 20912 1 6760 2025-03-12 05:26:13.542 2025-03-12 05:26:13.542 431241 14260 434654 9354 1 6761 2025-03-12 12:14:19.428 2025-03-12 12:14:19.428 431241 14260 435035 21709 1 6762 2025-03-11 07:52:10.838 2025-03-11 07:52:10.838 431241 14260 433547 11829 1 6763 2025-03-12 14:23:57.429 2025-03-12 14:23:57.429 432713 664 435202 12774 1 6764 2025-03-12 07:51:31.262 2025-03-12 07:51:31.262 433611 11515 434742 11275 1 6765 2025-03-10 20:56:30.112 2025-03-10 20:56:30.112 433066 14370 433167 5527 1 6766 2025-03-11 05:29:19.42 2025-03-11 05:29:19.42 433066 14370 433456 12609 2 6767 2025-03-12 15:45:38.327 2025-03-12 15:45:38.327 433066 14370 435336 1145 7 6768 2025-03-12 17:15:29.298 2025-03-12 17:15:29.298 433066 14370 435435 16847 8 6769 2025-03-10 19:44:41.667 2025-03-10 19:44:41.667 433066 14370 433088 1429 1 6770 2025-03-11 13:48:08.783 2025-03-11 13:48:08.783 433066 14370 433892 9350 5 6771 2025-03-12 15:31:32.046 2025-03-12 15:31:32.046 433066 14370 435306 9655 6 6772 2025-03-11 13:18:51.679 2025-03-11 13:18:51.679 433066 14370 433869 7418 4 6773 2025-03-11 13:58:41.28 2025-03-11 13:58:41.28 433066 14370 433905 21685 5 6774 2025-03-11 08:02:23.924 2025-03-11 08:02:23.924 433066 14370 433557 11144 3 6775 2025-03-11 05:29:19.42 2025-03-11 05:29:19.42 433088 1429 433456 12609 1 6776 2025-03-12 15:45:38.327 2025-03-12 15:45:38.327 433088 1429 435336 1145 6 6777 2025-03-12 17:15:29.298 2025-03-12 17:15:29.298 433088 1429 435435 16847 7 6778 2025-03-11 13:48:08.783 2025-03-11 13:48:08.783 433088 1429 433892 9350 4 6779 2025-03-12 15:31:32.046 2025-03-12 15:31:32.046 433088 1429 435306 9655 5 6780 2025-03-11 13:18:51.679 2025-03-11 13:18:51.679 433088 1429 433869 7418 3 6781 2025-03-11 13:58:41.28 2025-03-11 13:58:41.28 433088 1429 433905 21685 4 6782 2025-03-11 08:02:23.924 2025-03-11 08:02:23.924 433088 1429 433557 11144 2 6783 2025-03-10 21:59:21.691 2025-03-10 21:59:21.691 433123 4177 433232 2528 1 6784 2025-03-12 07:17:35.835 2025-03-12 07:17:35.835 433123 4177 434705 20619 2 6785 2025-03-13 03:12:22.512 2025-03-13 03:12:22.512 433377 21398 435853 5425 2 6786 2025-03-11 03:23:27.098 2025-03-11 03:23:27.098 433377 21398 433379 20691 1 6787 2025-03-11 09:26:57.035 2025-03-11 09:26:57.035 433377 21398 433640 4027 1 6788 2025-03-13 03:12:31.744 2025-03-13 03:12:31.744 433377 21398 435854 19668 2 6789 2025-03-10 21:46:39.688 2025-03-10 21:46:39.688 433206 14280 433212 19992 1 6790 2025-03-12 07:17:35.835 2025-03-12 07:17:35.835 433232 2528 434705 20619 1 6791 2025-03-11 05:06:46.259 2025-03-11 05:06:46.259 433240 9992 433437 19488 1 6792 2025-03-10 23:27:29.869 2025-03-10 23:27:29.869 433247 6030 433296 664 1 6793 2025-03-12 06:31:28.752 2025-03-12 06:31:28.752 434586 3717 434679 998 1 6794 2025-03-11 09:00:48.347 2025-03-11 09:00:48.347 433347 18232 433607 699 2 6795 2025-03-11 09:06:28.085 2025-03-11 09:06:28.085 433347 18232 433613 17237 3 6796 2025-03-11 05:15:26.605 2025-03-11 05:15:26.605 433347 18232 433444 14385 1 6797 2025-03-12 15:45:38.327 2025-03-12 15:45:38.327 433456 12609 435336 1145 5 6798 2025-03-12 17:15:29.298 2025-03-12 17:15:29.298 433456 12609 435435 16847 6 6799 2025-03-11 13:48:08.783 2025-03-11 13:48:08.783 433456 12609 433892 9350 3 6800 2025-03-12 15:31:32.046 2025-03-12 15:31:32.046 433456 12609 435306 9655 4 6801 2025-03-11 13:18:51.679 2025-03-11 13:18:51.679 433456 12609 433869 7418 2 6802 2025-03-11 13:58:41.28 2025-03-11 13:58:41.28 433456 12609 433905 21685 3 6803 2025-03-11 08:02:23.924 2025-03-11 08:02:23.924 433456 12609 433557 11144 1 6804 2025-03-12 07:37:15.364 2025-03-12 07:37:15.364 433555 1038 434728 14037 2 6805 2025-03-14 21:50:38.405 2025-03-14 21:50:38.405 433555 1038 437776 13249 2 6806 2025-03-14 20:06:52.483 2025-03-14 20:06:52.483 433555 1038 437725 16753 1 6807 2025-03-11 09:04:31.251 2025-03-11 09:04:31.251 433555 1038 433611 11515 1 6808 2025-03-11 10:09:36.914 2025-03-11 10:09:36.914 433555 1038 433687 635 1 6809 2025-03-11 10:36:31.302 2025-03-11 10:36:31.302 433555 1038 433712 19637 1 6810 2025-03-11 10:47:07.795 2025-03-11 10:47:07.795 433555 1038 433724 1549 1 6811 2025-03-11 10:58:21.235 2025-03-11 10:58:21.235 433555 1038 433735 20965 1 6812 2025-03-11 11:37:50.293 2025-03-11 11:37:50.293 433555 1038 433772 1480 1 6813 2025-03-11 11:49:20.229 2025-03-11 11:49:20.229 433555 1038 433782 14607 1 6814 2025-03-11 11:55:26.283 2025-03-11 11:55:26.283 433555 1038 433788 21202 1 6815 2025-03-11 12:37:06.064 2025-03-11 12:37:06.064 433555 1038 433835 14169 1 6816 2025-03-12 07:51:31.262 2025-03-12 07:51:31.262 433555 1038 434742 11275 2 6817 2025-03-12 07:30:44.65 2025-03-12 07:30:44.65 433555 1038 434719 7580 2 6818 2025-03-12 07:35:39.181 2025-03-12 07:35:39.181 433555 1038 434725 20525 3 6819 2025-03-12 07:49:17.373 2025-03-12 07:49:17.373 433555 1038 434738 960 2 6820 2025-03-12 08:05:39.456 2025-03-12 08:05:39.456 433555 1038 434753 20205 3 6821 2025-03-12 10:29:03.082 2025-03-12 10:29:03.082 433555 1038 434906 964 3 6822 2025-03-12 07:50:31.5 2025-03-12 07:50:31.5 433555 1038 434740 21575 2 6823 2025-03-12 11:08:22.86 2025-03-12 11:08:22.86 433555 1038 434949 3745 3 6824 2025-03-11 10:17:04.517 2025-03-11 10:17:04.517 433555 1038 433695 20998 1 6825 2025-03-11 15:35:16.073 2025-03-11 15:35:16.073 433555 1038 434072 711 1 6826 2025-03-12 07:24:25.599 2025-03-12 07:24:25.599 433555 1038 434714 16929 2 6827 2025-03-12 07:25:33.034 2025-03-12 07:25:33.034 433555 1038 434715 2338 2 6828 2025-03-12 07:26:57.788 2025-03-12 07:26:57.788 433555 1038 434716 16259 2 6829 2025-03-12 07:52:39.463 2025-03-12 07:52:39.463 433555 1038 434744 4650 2 6830 2025-03-12 07:37:42.526 2025-03-12 07:37:42.526 433555 1038 434729 21263 2 6831 2025-03-12 07:44:42.584 2025-03-12 07:44:42.584 433555 1038 434737 21575 2 6832 2025-03-12 08:05:39.456 2025-03-12 08:05:39.456 433687 635 434753 20205 2 6833 2025-03-12 07:52:39.463 2025-03-12 07:52:39.463 433687 635 434744 4650 1 6834 2025-03-12 07:26:57.788 2025-03-12 07:26:57.788 433712 19637 434716 16259 1 6835 2025-03-12 07:30:44.65 2025-03-12 07:30:44.65 433724 1549 434719 7580 1 6836 2025-03-12 07:49:17.373 2025-03-12 07:49:17.373 433735 20965 434738 960 1 6837 2025-03-12 09:02:00.708 2025-03-12 09:02:00.708 433738 11714 434823 17722 1 6838 2025-03-11 13:32:49.408 2025-03-11 13:32:49.408 433740 16410 433879 11996 1 6839 2025-03-11 21:08:17.472 2025-03-11 21:08:17.472 433740 16410 434392 7667 2 6840 2025-03-11 15:10:31.655 2025-03-11 15:10:31.655 433740 16410 434022 19842 1 6841 2025-03-11 19:18:20.844 2025-03-11 19:18:20.844 433740 16410 434306 12959 2 6842 2025-03-11 23:09:52.671 2025-03-11 23:09:52.671 433740 16410 434464 8472 3 6843 2025-03-12 00:05:25.401 2025-03-12 00:05:25.401 433753 7992 434480 1478 1 6844 2025-03-12 01:22:37.53 2025-03-12 01:22:37.53 433753 7992 434510 14657 2 6845 2025-03-12 10:29:03.082 2025-03-12 10:29:03.082 433772 1480 434906 964 2 6846 2025-03-12 07:44:42.584 2025-03-12 07:44:42.584 433772 1480 434737 21575 1 6847 2025-03-12 07:37:42.526 2025-03-12 07:37:42.526 433782 14607 434729 21263 1 6848 2025-03-12 07:37:15.364 2025-03-12 07:37:15.364 433788 21202 434728 14037 1 6849 2025-03-12 11:08:22.86 2025-03-12 11:08:22.86 433788 21202 434949 3745 2 6850 2025-03-11 12:28:35.935 2025-03-11 12:28:35.935 433799 16406 433829 1624 1 6851 2025-03-11 12:31:40.672 2025-03-11 12:31:40.672 433799 16406 433831 15624 2 6852 2025-03-12 09:09:04.422 2025-03-12 09:09:04.422 433799 16406 434831 17050 3 6853 2025-03-12 10:56:58.668 2025-03-12 10:56:58.668 433799 16406 434940 1136 4 6854 2025-03-12 11:10:53.098 2025-03-12 11:10:53.098 433799 16406 434951 1650 5 6855 2025-03-11 15:12:06.009 2025-03-11 15:12:06.009 433943 1122 434025 669 1 6856 2025-03-11 16:31:07.257 2025-03-11 16:31:07.257 433943 1122 434171 17064 1 6857 2025-03-12 03:28:24.954 2025-03-12 03:28:24.954 433943 1122 434579 11999 1 6858 2025-03-11 13:34:20.566 2025-03-11 13:34:20.566 433851 4654 433881 18177 1 6859 2025-03-11 14:05:04.586 2025-03-11 14:05:04.586 433851 4654 433914 1030 1 6860 2025-03-11 15:41:32.154 2025-03-11 15:41:32.154 433851 4654 434085 9334 1 6861 2025-03-12 02:57:32.31 2025-03-12 02:57:32.31 433860 4292 434562 7119 1 6862 2025-03-11 13:34:20.566 2025-03-11 13:34:20.566 433828 7659 433881 18177 2 6863 2025-03-11 14:05:04.586 2025-03-11 14:05:04.586 433828 7659 433914 1030 2 6864 2025-03-11 14:26:45.981 2025-03-11 14:26:45.981 433828 7659 433945 13921 1 6865 2025-03-11 15:09:56.088 2025-03-11 15:09:56.088 433828 7659 434020 14818 2 6866 2025-03-11 15:16:19.944 2025-03-11 15:16:19.944 433828 7659 434037 1051 1 6867 2025-03-11 16:44:24.9 2025-03-11 16:44:24.9 433828 7659 434183 1488 5 6868 2025-03-11 15:48:17.833 2025-03-11 15:48:17.833 433828 7659 434099 21520 1 6869 2025-03-11 15:57:21.787 2025-03-11 15:57:21.787 433828 7659 434115 17082 1 6870 2025-03-11 16:13:24.616 2025-03-11 16:13:24.616 433828 7659 434147 18271 2 6871 2025-03-11 16:39:35.284 2025-03-11 16:39:35.284 433828 7659 434176 5870 4 6872 2025-03-11 18:28:17.069 2025-03-11 18:28:17.069 433828 7659 434274 9695 1 6873 2025-03-11 19:03:24.004 2025-03-11 19:03:24.004 433828 7659 434292 15536 1 6874 2025-03-11 23:07:30.819 2025-03-11 23:07:30.819 433828 7659 434463 2711 2 6875 2025-03-12 05:20:28.239 2025-03-12 05:20:28.239 433828 7659 434645 11498 4 6876 2025-03-12 05:25:39.705 2025-03-12 05:25:39.705 433828 7659 434653 1047 2 6877 2025-03-12 05:32:20.043 2025-03-12 05:32:20.043 433828 7659 434657 7558 2 6878 2025-03-12 11:23:16.783 2025-03-12 11:23:16.783 433828 7659 434968 7097 7 6879 2025-03-12 11:55:42.868 2025-03-12 11:55:42.868 433828 7659 435008 20781 8 6880 2025-03-11 14:52:14.454 2025-03-11 14:52:14.454 433828 7659 433987 20185 2 6881 2025-03-11 19:16:32.86 2025-03-11 19:16:32.86 433828 7659 434305 16447 6 6882 2025-03-11 20:42:47.459 2025-03-11 20:42:47.459 433828 7659 434375 715 3 6883 2025-03-11 20:47:00.273 2025-03-11 20:47:00.273 433828 7659 434376 21442 1 6884 2025-03-11 20:56:55.982 2025-03-11 20:56:55.982 433828 7659 434381 4763 1 6885 2025-03-11 14:55:04.667 2025-03-11 14:55:04.667 433828 7659 433993 8841 2 6886 2025-03-11 18:57:47.32 2025-03-11 18:57:47.32 433828 7659 434287 902 5 6887 2025-03-11 17:29:00.112 2025-03-11 17:29:00.112 433828 7659 434237 691 4 6888 2025-03-11 15:43:01.435 2025-03-11 15:43:01.435 433828 7659 434091 20969 2 6889 2025-03-11 15:15:10.087 2025-03-11 15:15:10.087 433828 7659 434031 14213 1 6890 2025-03-12 10:56:31.403 2025-03-12 10:56:31.403 433828 7659 434938 21242 3 6891 2025-03-12 07:19:07.04 2025-03-12 07:19:07.04 433828 7659 434708 15213 2 6892 2025-03-11 21:44:01.624 2025-03-11 21:44:01.624 433828 7659 434420 12356 1 6893 2025-03-11 22:06:35.224 2025-03-11 22:06:35.224 433828 7659 434432 2757 2 6894 2025-03-12 00:42:33.528 2025-03-12 00:42:33.528 433828 7659 434493 17708 1 6895 2025-03-12 02:36:37.779 2025-03-12 02:36:37.779 433828 7659 434546 21320 1 6896 2025-03-12 03:09:55.843 2025-03-12 03:09:55.843 433828 7659 434571 16724 1 6897 2025-03-12 05:06:19.492 2025-03-12 05:06:19.492 433828 7659 434639 634 1 6898 2025-03-12 05:52:41.825 2025-03-12 05:52:41.825 433828 7659 434669 16350 2 6899 2025-03-12 05:54:03.847 2025-03-12 05:54:03.847 433828 7659 434670 9262 2 6900 2025-03-12 05:57:05.848 2025-03-12 05:57:05.848 433828 7659 434672 9356 2 6901 2025-03-12 06:51:15.173 2025-03-12 06:51:15.173 433828 7659 434690 854 3 6902 2025-03-12 07:41:49.276 2025-03-12 07:41:49.276 433828 7659 434733 16097 3 6903 2025-03-12 07:55:21.281 2025-03-12 07:55:21.281 433828 7659 434747 21714 3 6904 2025-03-12 08:16:54.927 2025-03-12 08:16:54.927 433828 7659 434766 5519 1 6905 2025-03-12 09:36:41.346 2025-03-12 09:36:41.346 433828 7659 434852 2437 2 6906 2025-03-12 10:01:20.994 2025-03-12 10:01:20.994 433828 7659 434874 20588 2 6907 2025-03-12 10:11:15.686 2025-03-12 10:11:15.686 433828 7659 434885 16830 3 6908 2025-03-12 10:20:35.945 2025-03-12 10:20:35.945 433828 7659 434900 12291 3 6909 2025-03-12 10:37:47.281 2025-03-12 10:37:47.281 433828 7659 434914 2961 4 6910 2025-03-12 12:42:04.159 2025-03-12 12:42:04.159 433828 7659 435064 20019 1 6911 2025-03-12 19:46:28.43 2025-03-12 19:46:28.43 433828 7659 435575 10638 3 6912 2025-03-11 12:59:52.91 2025-03-11 12:59:52.91 433828 7659 433851 4654 1 6913 2025-03-11 15:41:32.154 2025-03-11 15:41:32.154 433828 7659 434085 9334 2 6914 2025-03-11 14:26:03.939 2025-03-11 14:26:03.939 433828 7659 433942 7668 1 6915 2025-03-11 14:55:47.968 2025-03-11 14:55:47.968 433828 7659 433995 18529 2 6916 2025-03-11 15:21:30.232 2025-03-11 15:21:30.232 433828 7659 434046 21815 3 6917 2025-03-11 14:27:11.022 2025-03-11 14:27:11.022 433828 7659 433946 17316 1 6918 2025-03-13 00:58:56.781 2025-03-13 00:58:56.781 433828 7659 435785 5522 5 6919 2025-03-11 14:49:55.382 2025-03-11 14:49:55.382 433828 7659 433981 1489 1 6920 2025-03-11 14:57:25.53 2025-03-11 14:57:25.53 433828 7659 433998 1261 3 6921 2025-03-11 14:57:26.451 2025-03-11 14:57:26.451 433828 7659 433999 15544 1 6922 2025-03-11 15:28:38.659 2025-03-11 15:28:38.659 433828 7659 434057 21079 3 6923 2025-03-11 15:31:58.178 2025-03-11 15:31:58.178 433828 7659 434067 20603 4 6924 2025-03-11 15:30:50.289 2025-03-11 15:30:50.289 433828 7659 434064 712 2 6925 2025-03-11 17:19:29.627 2025-03-11 17:19:29.627 433828 7659 434226 730 3 6926 2025-03-12 00:52:19.384 2025-03-12 00:52:19.384 433828 7659 434502 5017 1 6927 2025-03-12 06:19:54.274 2025-03-12 06:19:54.274 433828 7659 434676 9356 2 6928 2025-03-11 23:48:25.457 2025-03-11 23:48:25.457 433828 7659 434475 2709 1 6929 2025-03-12 05:36:39.215 2025-03-12 05:36:39.215 433828 7659 434659 1705 2 6930 2025-03-12 05:49:38.824 2025-03-12 05:49:38.824 433828 7659 434667 21804 2 6931 2025-03-12 06:04:07.597 2025-03-12 06:04:07.597 433828 7659 434673 20294 1 6932 2025-03-12 08:13:04.286 2025-03-12 08:13:04.286 433828 7659 434761 12102 4 6933 2025-03-12 09:32:56.876 2025-03-12 09:32:56.876 433828 7659 434850 13177 1 6934 2025-03-12 13:04:51.463 2025-03-12 13:04:51.463 433828 7659 435090 11992 2 6935 2025-03-13 04:37:16.593 2025-03-13 04:37:16.593 433828 7659 435896 3717 5 6936 2025-03-12 09:09:04.422 2025-03-12 09:09:04.422 433831 15624 434831 17050 1 6937 2025-03-12 10:56:58.668 2025-03-12 10:56:58.668 433831 15624 434940 1136 2 6938 2025-03-12 11:10:53.098 2025-03-12 11:10:53.098 433831 15624 434951 1650 3 6939 2025-03-12 07:24:25.599 2025-03-12 07:24:25.599 433835 14169 434714 16929 1 6940 2025-03-12 10:27:51.461 2025-03-12 10:27:51.461 433889 5852 434904 5825 4 6941 2025-03-12 21:18:26.342 2025-03-12 21:18:26.342 433889 5852 435661 15367 1 6942 2025-03-13 14:55:44.156 2025-03-13 14:55:44.156 433889 5852 436430 19375 1 6943 2025-03-11 21:25:54.539 2025-03-11 21:25:54.539 433889 5852 434401 739 2 6944 2025-03-11 19:45:09.348 2025-03-11 19:45:09.348 433889 5852 434330 726 1 6945 2025-03-12 05:34:53.183 2025-03-12 05:34:53.183 433889 5852 434658 20454 3 6946 2025-03-13 15:11:47.617 2025-03-13 15:11:47.617 433889 5852 436456 21455 2 6947 2025-03-12 04:07:08.403 2025-03-12 04:07:08.403 434501 7916 434607 6137 1 6948 2025-03-11 16:44:24.9 2025-03-11 16:44:24.9 434020 14818 434183 1488 3 6949 2025-03-11 16:39:35.284 2025-03-11 16:39:35.284 434020 14818 434176 5870 2 6950 2025-03-11 15:28:38.659 2025-03-11 15:28:38.659 434020 14818 434057 21079 1 6951 2025-03-11 15:31:58.178 2025-03-11 15:31:58.178 434020 14818 434067 20603 2 6952 2025-03-11 17:34:48.116 2025-03-11 17:34:48.116 433844 19924 434245 15624 2 6953 2025-03-12 02:09:32.687 2025-03-12 02:09:32.687 433844 19924 434537 1261 1 6954 2025-03-12 02:12:20.704 2025-03-12 02:12:20.704 433844 19924 434538 5759 2 6955 2025-03-12 04:21:04.221 2025-03-12 04:21:04.221 433844 19924 434612 8059 2 6956 2025-03-12 04:21:33.014 2025-03-12 04:21:33.014 433844 19924 434614 2326 1 6957 2025-03-12 16:11:20.347 2025-03-12 16:11:20.347 433844 19924 435360 17095 3 6958 2025-03-11 16:14:04.361 2025-03-11 16:14:04.361 433844 19924 434148 16912 1 6959 2025-03-11 15:13:37.823 2025-03-11 15:13:37.823 433844 19924 434026 21051 1 6960 2025-03-11 16:40:37.381 2025-03-11 16:40:37.381 433844 19924 434177 16230 1 6961 2025-03-11 17:21:58.484 2025-03-11 17:21:58.484 433844 19924 434231 21063 2 6962 2025-03-11 23:40:35.652 2025-03-11 23:40:35.652 433844 19924 434473 20837 2 6963 2025-03-12 17:54:52.465 2025-03-12 17:54:52.465 433844 19924 435473 18529 4 6964 2025-03-11 19:13:04.33 2025-03-11 19:13:04.33 433878 21279 434300 3347 1 6965 2025-03-11 20:18:05.025 2025-03-11 20:18:05.025 433878 21279 434359 730 2 6966 2025-03-11 16:50:14.957 2025-03-11 16:50:14.957 433878 21279 434191 738 1 6967 2025-03-11 19:47:43.007 2025-03-11 19:47:43.007 433878 21279 434336 1483 1 6968 2025-03-12 08:50:22.954 2025-03-12 08:50:22.954 433883 21083 434802 15624 2 6969 2025-03-12 08:08:39.12 2025-03-12 08:08:39.12 433883 21083 434757 11523 1 6970 2025-03-12 11:14:22.453 2025-03-12 11:14:22.453 433883 21083 434955 15510 1 6971 2025-03-12 11:18:09.923 2025-03-12 11:18:09.923 433883 21083 434959 8570 2 6972 2025-03-11 14:05:01.793 2025-03-11 14:05:01.793 433883 21083 433913 6777 1 6973 2025-03-12 09:08:18.909 2025-03-12 09:08:18.909 433883 21083 434830 5829 3 6974 2025-03-12 07:50:31.5 2025-03-12 07:50:31.5 434072 711 434740 21575 1 6975 2025-03-12 03:55:55.63 2025-03-12 03:55:55.63 434077 691 434600 11153 1 6976 2025-03-12 13:31:46.453 2025-03-12 13:31:46.453 434077 691 435121 9295 2 6977 2025-03-12 08:50:22.954 2025-03-12 08:50:22.954 433913 6777 434802 15624 1 6978 2025-03-12 09:08:18.909 2025-03-12 09:08:18.909 433913 6777 434830 5829 2 6979 2025-03-11 19:59:19.21 2025-03-11 19:59:19.21 433934 21365 434347 15526 2 6980 2025-03-11 20:59:59.428 2025-03-11 20:59:59.428 433934 21365 434383 12220 2 6981 2025-03-11 15:15:00.097 2025-03-11 15:15:00.097 433934 21365 434030 4973 1 6982 2025-03-11 21:24:07.935 2025-03-11 21:24:07.935 433934 21365 434399 827 3 6983 2025-03-12 06:33:38.181 2025-03-12 06:33:38.181 433934 21365 434680 21184 1 6984 2025-03-11 18:43:10.339 2025-03-11 18:43:10.339 433934 21365 434280 20998 1 6985 2025-03-12 03:41:25.073 2025-03-12 03:41:25.073 434082 21048 434587 1817 1 6986 2025-03-12 10:33:39.35 2025-03-12 10:33:39.35 433937 732 434910 20642 1 6987 2025-03-11 14:34:44.912 2025-03-11 14:34:44.912 433937 732 433962 8541 1 6988 2025-03-12 02:55:51.722 2025-03-12 02:55:51.722 433975 14731 434559 760 1 6989 2025-03-11 15:09:43.776 2025-03-11 15:09:43.776 433978 21248 434019 13759 1 6990 2025-03-12 08:58:12.339 2025-03-12 08:58:12.339 433978 21248 434816 8176 1 6991 2025-03-12 09:38:20.564 2025-03-12 09:38:20.564 433978 21248 434853 1480 2 6992 2025-03-11 15:09:56.088 2025-03-11 15:09:56.088 433999 15544 434020 14818 1 6993 2025-03-11 16:44:24.9 2025-03-11 16:44:24.9 433999 15544 434183 1488 4 6994 2025-03-11 16:39:35.284 2025-03-11 16:39:35.284 433999 15544 434176 5870 3 6995 2025-03-11 15:28:38.659 2025-03-11 15:28:38.659 433999 15544 434057 21079 2 6996 2025-03-11 15:31:58.178 2025-03-11 15:31:58.178 433999 15544 434067 20603 3 6997 2025-03-12 04:21:04.221 2025-03-12 04:21:04.221 434026 21051 434612 8059 1 6998 2025-03-11 17:21:58.484 2025-03-11 17:21:58.484 434026 21051 434231 21063 1 6999 2025-03-11 20:59:59.428 2025-03-11 20:59:59.428 434030 4973 434383 12220 1 7000 2025-03-11 21:24:07.935 2025-03-11 21:24:07.935 434030 4973 434399 827 2 7001 2025-03-11 15:30:50.289 2025-03-11 15:30:50.289 434037 1051 434064 712 1 7002 2025-03-11 16:13:24.616 2025-03-11 16:13:24.616 434099 21520 434147 18271 1 7003 2025-03-11 23:07:30.819 2025-03-11 23:07:30.819 434099 21520 434463 2711 1 7004 2025-03-11 22:06:35.224 2025-03-11 22:06:35.224 434115 17082 434432 2757 1 7005 2025-03-12 15:56:17.731 2025-03-12 15:56:17.731 434129 19570 435349 15858 1 7006 2025-03-11 17:33:05.463 2025-03-11 17:33:05.463 434160 16956 434242 7760 1 7007 2025-03-11 17:34:48.116 2025-03-11 17:34:48.116 434177 16230 434245 15624 1 7008 2025-03-12 02:12:20.704 2025-03-12 02:12:20.704 434177 16230 434538 5759 1 7009 2025-03-12 16:11:20.347 2025-03-12 16:11:20.347 434177 16230 435360 17095 2 7010 2025-03-12 17:54:52.465 2025-03-12 17:54:52.465 434177 16230 435473 18529 3 7011 2025-03-12 07:10:12.747 2025-03-12 07:10:12.747 434319 4768 434700 16354 2 7012 2025-03-12 07:39:55.684 2025-03-12 07:39:55.684 434319 4768 434730 2963 1 7013 2025-03-12 09:27:12.798 2025-03-12 09:27:12.798 434319 4768 434848 17722 3 7014 2025-03-11 20:25:33.154 2025-03-11 20:25:33.154 434319 4768 434362 20669 1 7015 2025-03-13 14:59:06.033 2025-03-13 14:59:06.033 434197 14607 436434 16356 1 7016 2025-03-13 18:07:23.867 2025-03-13 18:07:23.867 434197 14607 436616 19484 1 7017 2025-03-11 19:11:51.856 2025-03-11 19:11:51.856 434278 9242 434298 15243 1 7018 2025-03-11 22:14:40.647 2025-03-11 22:14:40.647 434278 9242 434435 2711 4 7019 2025-03-11 22:32:34.733 2025-03-11 22:32:34.733 434278 9242 434444 17714 7 7020 2025-03-11 22:44:48.297 2025-03-11 22:44:48.297 434278 9242 434455 1692 9 7021 2025-03-11 19:47:26.393 2025-03-11 19:47:26.393 434278 9242 434335 20624 3 7022 2025-03-11 19:35:50.783 2025-03-11 19:35:50.783 434278 9242 434318 19018 1 7023 2025-03-11 21:39:29.234 2025-03-11 21:39:29.234 434278 9242 434417 15075 2 7024 2025-03-11 20:02:44.399 2025-03-11 20:02:44.399 434278 9242 434349 14404 1 7025 2025-03-11 20:38:44.067 2025-03-11 20:38:44.067 434278 9242 434366 3213 1 7026 2025-03-11 22:17:58.169 2025-03-11 22:17:58.169 434278 9242 434438 10352 2 7027 2025-03-12 01:36:26.672 2025-03-12 01:36:26.672 434278 9242 434515 20717 2 7028 2025-03-12 01:40:08.451 2025-03-12 01:40:08.451 434278 9242 434516 2326 3 7029 2025-03-12 01:41:19.581 2025-03-12 01:41:19.581 434278 9242 434518 3347 6 7030 2025-03-12 01:42:51.549 2025-03-12 01:42:51.549 434278 9242 434519 654 2 7031 2025-03-12 01:44:40.819 2025-03-12 01:44:40.819 434278 9242 434521 9356 2 7032 2025-03-12 01:52:23.739 2025-03-12 01:52:23.739 434278 9242 434526 9339 3 7033 2025-03-12 02:01:40.378 2025-03-12 02:01:40.378 434278 9242 434534 9529 3 7034 2025-03-12 02:44:24.374 2025-03-12 02:44:24.374 434278 9242 434551 19689 4 7035 2025-03-12 03:51:41.448 2025-03-12 03:51:41.448 434278 9242 434592 16353 5 7036 2025-03-12 04:01:16.741 2025-03-12 04:01:16.741 434278 9242 434604 13216 2 7037 2025-03-12 12:01:43.84 2025-03-12 12:01:43.84 434278 9242 435016 18772 3 7038 2025-03-12 23:07:58.504 2025-03-12 23:07:58.504 434278 9242 435743 20026 2 7039 2025-03-13 00:52:29.192 2025-03-13 00:52:29.192 434278 9242 435783 15703 2 7040 2025-03-13 02:49:26.63 2025-03-13 02:49:26.63 434278 9242 435842 18368 2 7041 2025-03-13 02:57:03.701 2025-03-13 02:57:03.701 434278 9242 435846 19303 4 7042 2025-03-13 03:21:50.162 2025-03-13 03:21:50.162 434278 9242 435858 5779 2 7043 2025-03-11 19:19:38.186 2025-03-11 19:19:38.186 434278 9242 434307 16154 2 7044 2025-03-11 19:20:19.654 2025-03-11 19:20:19.654 434278 9242 434309 5173 1 7045 2025-03-11 19:20:22.246 2025-03-11 19:20:22.246 434278 9242 434310 12736 2 7046 2025-03-11 21:35:08.032 2025-03-11 21:35:08.032 434278 9242 434411 6687 3 7047 2025-03-11 22:22:59.607 2025-03-11 22:22:59.607 434278 9242 434442 730 6 7048 2025-03-11 22:55:48.552 2025-03-11 22:55:48.552 434278 9242 434460 19930 10 7049 2025-03-12 01:40:41.591 2025-03-12 01:40:41.591 434278 9242 434517 17392 4 7050 2025-03-12 20:36:39.804 2025-03-12 20:36:39.804 434278 9242 435626 7097 2 7051 2025-03-12 20:37:04.384 2025-03-12 20:37:04.384 434278 9242 435627 5069 3 7052 2025-03-13 00:29:45.011 2025-03-13 00:29:45.011 434278 9242 435773 20979 4 7053 2025-03-13 01:10:35.11 2025-03-13 01:10:35.11 434278 9242 435795 1105 3 7054 2025-03-13 02:46:03.267 2025-03-13 02:46:03.267 434278 9242 435839 1960 4 7055 2025-03-11 19:41:16.992 2025-03-11 19:41:16.992 434278 9242 434326 9036 2 7056 2025-03-11 22:18:02.711 2025-03-11 22:18:02.711 434278 9242 434439 692 5 7057 2025-03-11 22:41:43.682 2025-03-11 22:41:43.682 434278 9242 434451 8287 8 7058 2025-03-12 03:29:29.113 2025-03-12 03:29:29.113 434278 9242 434581 12769 1 7059 2025-03-12 03:52:19.507 2025-03-12 03:52:19.507 434278 9242 434593 16296 1 7060 2025-03-12 04:23:10.616 2025-03-12 04:23:10.616 434278 9242 434616 6653 1 7061 2025-03-12 04:52:41.92 2025-03-12 04:52:41.92 434278 9242 434635 19126 1 7062 2025-03-12 11:34:01.205 2025-03-12 11:34:01.205 434278 9242 434981 20849 1 7063 2025-03-12 20:25:30.054 2025-03-12 20:25:30.054 434278 9242 435617 15560 3 7064 2025-03-12 22:43:26.674 2025-03-12 22:43:26.674 434278 9242 435726 7760 4 7065 2025-03-12 22:44:56.697 2025-03-12 22:44:56.697 434278 9242 435727 1272 2 7066 2025-03-12 22:47:56.224 2025-03-12 22:47:56.224 434278 9242 435730 11314 2 7067 2025-03-12 22:52:30.092 2025-03-12 22:52:30.092 434278 9242 435736 14503 2 7068 2025-03-12 00:57:54.136 2025-03-12 00:57:54.136 434278 9242 434503 21040 1 7069 2025-03-12 01:57:25.02 2025-03-12 01:57:25.02 434278 9242 434531 16556 2 7070 2025-03-12 03:34:25.103 2025-03-12 03:34:25.103 434278 9242 434585 11288 3 7071 2025-03-12 22:58:06.303 2025-03-12 22:58:06.303 434278 9242 435739 8726 10 7072 2025-03-12 22:32:32.55 2025-03-12 22:32:32.55 434278 9242 435715 899 7 7073 2025-03-12 22:33:56.728 2025-03-12 22:33:56.728 434278 9242 435716 2459 7 7074 2025-03-12 22:37:27.774 2025-03-12 22:37:27.774 434278 9242 435720 6463 8 7075 2025-03-12 22:49:39.575 2025-03-12 22:49:39.575 434278 9242 435733 1428 8 7076 2025-03-12 22:52:15.591 2025-03-12 22:52:15.591 434278 9242 435735 12911 9 7077 2025-03-13 00:41:40.141 2025-03-13 00:41:40.141 434278 9242 435775 17533 7 7078 2025-03-12 23:12:28.737 2025-03-12 23:12:28.737 434278 9242 435744 17824 10 7079 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 434278 9242 435758 9276 12 7080 2025-03-13 02:47:39.043 2025-03-13 02:47:39.043 434278 9242 435840 21398 9 7081 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 434278 9242 435766 946 12 7082 2025-03-13 03:53:18.568 2025-03-13 03:53:18.568 434278 9242 435876 18116 10 7083 2025-03-12 03:59:09.062 2025-03-12 03:59:09.062 434278 9242 434603 640 2 7084 2025-03-12 02:51:33.045 2025-03-12 02:51:33.045 434278 9242 434558 13361 1 7085 2025-03-12 22:41:06.014 2025-03-12 22:41:06.014 434278 9242 435725 2741 2 7086 2025-03-12 22:51:36.533 2025-03-12 22:51:36.533 434278 9242 435734 6653 4 7087 2025-03-13 02:39:44.432 2025-03-13 02:39:44.432 434278 9242 435837 18829 9 7088 2025-03-11 21:36:30.969 2025-03-11 21:36:30.969 434278 9242 434412 11789 1 7089 2025-03-11 23:34:10.003 2025-03-11 23:34:10.003 434278 9242 434470 21131 1 7090 2025-03-11 20:15:28.487 2025-03-11 20:15:28.487 434278 9242 434358 909 1 7091 2025-03-11 21:44:37.056 2025-03-11 21:44:37.056 434278 9242 434421 14465 1 7092 2025-03-11 21:26:59.413 2025-03-11 21:26:59.413 434278 9242 434404 651 1 7093 2025-03-12 01:45:03.229 2025-03-12 01:45:03.229 434278 9242 434522 4654 2 7094 2025-03-12 01:43:43.199 2025-03-12 01:43:43.199 434278 9242 434520 1209 2 7095 2025-03-12 01:46:33.216 2025-03-12 01:46:33.216 434278 9242 434524 15147 2 7096 2025-03-12 01:54:51.041 2025-03-12 01:54:51.041 434278 9242 434529 2722 1 7097 2025-03-12 01:56:02.581 2025-03-12 01:56:02.581 434278 9242 434530 738 2 7098 2025-03-12 02:13:26.229 2025-03-12 02:13:26.229 434278 9242 434539 8400 1 7099 2025-03-12 03:53:48.739 2025-03-12 03:53:48.739 434278 9242 434597 10591 3 7100 2025-03-12 03:55:03.329 2025-03-12 03:55:03.329 434278 9242 434598 11314 3 7101 2025-03-12 03:55:38.557 2025-03-12 03:55:38.557 434278 9242 434599 21400 4 7102 2025-03-12 03:58:08.361 2025-03-12 03:58:08.361 434278 9242 434602 21320 4 7103 2025-03-12 20:33:39.57 2025-03-12 20:33:39.57 434278 9242 435622 4345 5 7104 2025-03-12 20:35:20.41 2025-03-12 20:35:20.41 434278 9242 435623 919 6 7105 2025-03-12 22:27:21.037 2025-03-12 22:27:21.037 434278 9242 435713 2431 6 7106 2025-03-12 22:35:15.314 2025-03-12 22:35:15.314 434278 9242 435717 18174 8 7107 2025-03-12 22:40:00.172 2025-03-12 22:40:00.172 434278 9242 435722 20588 8 7108 2025-03-12 23:54:20.462 2025-03-12 23:54:20.462 434278 9242 435757 20717 11 7109 2025-03-13 00:28:02.56 2025-03-13 00:28:02.56 434278 9242 435772 1726 6 7110 2025-03-13 01:42:00.647 2025-03-13 01:42:00.647 434278 9242 435811 20858 8 7111 2025-03-13 03:07:58.629 2025-03-13 03:07:58.629 434278 9242 435851 10270 4 7112 2025-03-13 04:00:53.77 2025-03-13 04:00:53.77 434278 9242 435878 20577 2 7113 2025-03-13 04:12:26.445 2025-03-13 04:12:26.445 434278 9242 435881 16259 2 7114 2025-03-13 05:33:46.26 2025-03-13 05:33:46.26 434278 9242 435927 5522 2 7115 2025-03-12 09:47:54.884 2025-03-12 09:47:54.884 434223 11523 434862 9695 1 7116 2025-03-12 01:30:48.266 2025-03-12 01:30:48.266 434437 21444 434513 16939 1 7117 2025-03-11 22:15:30.998 2025-03-11 22:15:30.998 434243 647 434436 1009 1 7118 2025-03-11 19:49:07.431 2025-03-11 19:49:07.431 434243 647 434338 2000 1 7119 2025-03-12 08:25:01.282 2025-03-12 08:25:01.282 434243 647 434778 5825 2 7120 2025-03-11 20:41:06.808 2025-03-11 20:41:06.808 434243 647 434372 20337 1 7121 2025-03-11 21:46:33.982 2025-03-11 21:46:33.982 434243 647 434422 1658 1 7122 2025-03-12 22:58:30.615 2025-03-12 22:58:30.615 434263 20768 435740 1617 1 7123 2025-03-13 13:47:09.18 2025-03-13 13:47:09.18 434263 20768 436351 2961 3 7124 2025-03-13 05:58:41.909 2025-03-13 05:58:41.909 434263 20768 435939 5759 2 7125 2025-03-11 21:30:42.662 2025-03-11 21:30:42.662 434285 18743 434406 671 2 7126 2025-03-11 23:39:07.254 2025-03-11 23:39:07.254 434285 18743 434472 21248 2 7127 2025-03-12 02:42:33.073 2025-03-12 02:42:33.073 434285 18743 434550 13854 2 7128 2025-03-12 04:45:26.054 2025-03-12 04:45:26.054 434285 18743 434630 21768 1 7129 2025-03-12 08:15:55.444 2025-03-12 08:15:55.444 434285 18743 434765 5746 1 7130 2025-03-11 21:18:33.226 2025-03-11 21:18:33.226 434285 18743 434395 11829 1 7131 2025-03-11 21:30:15.018 2025-03-11 21:30:15.018 434285 18743 434405 4798 1 7132 2025-03-11 22:45:41.923 2025-03-11 22:45:41.923 434285 18743 434456 1389 1 7133 2025-03-12 01:45:33.643 2025-03-12 01:45:33.643 434285 18743 434523 2088 1 7134 2025-03-12 01:27:11.417 2025-03-12 01:27:11.417 434285 18743 434512 12272 1 7135 2025-03-12 02:40:21.993 2025-03-12 02:40:21.993 434285 18743 434549 18368 1 7136 2025-03-12 03:48:39.42 2025-03-12 03:48:39.42 434285 18743 434589 2757 1 7137 2025-03-12 05:24:11.58 2025-03-12 05:24:11.58 434285 18743 434651 2203 1 7138 2025-03-12 06:47:38.001 2025-03-12 06:47:38.001 434285 18743 434686 8400 1 7139 2025-03-11 22:05:14.789 2025-03-11 22:05:14.789 434276 21670 434431 16988 2 7140 2025-03-12 07:32:32.947 2025-03-12 07:32:32.947 434276 21670 434721 13361 1 7141 2025-03-12 13:26:48.269 2025-03-12 13:26:48.269 434276 21670 435113 8173 2 7142 2025-03-11 21:25:19.572 2025-03-11 21:25:19.572 434276 21670 434400 2088 1 7143 2025-03-12 00:25:47.354 2025-03-12 00:25:47.354 434277 848 434486 21647 1 7144 2025-03-12 06:29:17.901 2025-03-12 06:29:17.901 434277 848 434678 718 2 7145 2025-03-12 01:46:33.216 2025-03-12 01:46:33.216 434412 11789 434524 15147 1 7146 2025-03-13 02:39:44.432 2025-03-13 02:39:44.432 434503 21040 435837 18829 8 7147 2025-03-12 01:45:03.229 2025-03-12 01:45:03.229 434503 21040 434522 4654 1 7148 2025-03-12 03:53:48.739 2025-03-12 03:53:48.739 434503 21040 434597 10591 2 7149 2025-03-12 03:55:03.329 2025-03-12 03:55:03.329 434503 21040 434598 11314 2 7150 2025-03-12 03:55:38.557 2025-03-12 03:55:38.557 434503 21040 434599 21400 3 7151 2025-03-12 03:58:08.361 2025-03-12 03:58:08.361 434503 21040 434602 21320 3 7152 2025-03-12 20:33:39.57 2025-03-12 20:33:39.57 434503 21040 435622 4345 4 7153 2025-03-12 20:35:20.41 2025-03-12 20:35:20.41 434503 21040 435623 919 5 7154 2025-03-12 22:27:21.037 2025-03-12 22:27:21.037 434503 21040 435713 2431 5 7155 2025-03-12 22:35:15.314 2025-03-12 22:35:15.314 434503 21040 435717 18174 7 7156 2025-03-12 22:40:00.172 2025-03-12 22:40:00.172 434503 21040 435722 20588 7 7157 2025-03-12 23:54:20.462 2025-03-12 23:54:20.462 434503 21040 435757 20717 10 7158 2025-03-13 00:28:02.56 2025-03-13 00:28:02.56 434503 21040 435772 1726 5 7159 2025-03-13 01:42:00.647 2025-03-13 01:42:00.647 434503 21040 435811 20858 7 7160 2025-03-12 22:41:06.014 2025-03-12 22:41:06.014 434503 21040 435725 2741 1 7161 2025-03-12 22:58:06.303 2025-03-12 22:58:06.303 434503 21040 435739 8726 9 7162 2025-03-12 22:32:32.55 2025-03-12 22:32:32.55 434503 21040 435715 899 6 7163 2025-03-12 22:33:56.728 2025-03-12 22:33:56.728 434503 21040 435716 2459 6 7164 2025-03-12 22:37:27.774 2025-03-12 22:37:27.774 434503 21040 435720 6463 7 7165 2025-03-12 22:49:39.575 2025-03-12 22:49:39.575 434503 21040 435733 1428 7 7166 2025-03-12 22:52:15.591 2025-03-12 22:52:15.591 434503 21040 435735 12911 8 7167 2025-03-13 00:41:40.141 2025-03-13 00:41:40.141 434503 21040 435775 17533 6 7168 2025-03-12 23:12:28.737 2025-03-12 23:12:28.737 434503 21040 435744 17824 9 7169 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 434503 21040 435758 9276 11 7170 2025-03-13 02:47:39.043 2025-03-13 02:47:39.043 434503 21040 435840 21398 8 7171 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 434503 21040 435766 946 11 7172 2025-03-13 03:53:18.568 2025-03-13 03:53:18.568 434503 21040 435876 18116 9 7173 2025-03-11 19:25:33.174 2025-03-11 19:25:33.174 434290 21408 434313 14651 1 7174 2025-03-11 20:41:00.188 2025-03-11 20:41:00.188 434290 21408 434371 19502 1 7175 2025-03-11 22:14:40.647 2025-03-11 22:14:40.647 434298 15243 434435 2711 3 7176 2025-03-11 22:32:34.733 2025-03-11 22:32:34.733 434298 15243 434444 17714 6 7177 2025-03-11 22:44:48.297 2025-03-11 22:44:48.297 434298 15243 434455 1692 8 7178 2025-03-12 01:40:08.451 2025-03-12 01:40:08.451 434298 15243 434516 2326 2 7179 2025-03-12 01:41:19.581 2025-03-12 01:41:19.581 434298 15243 434518 3347 5 7180 2025-03-12 02:01:40.378 2025-03-12 02:01:40.378 434298 15243 434534 9529 2 7181 2025-03-12 02:44:24.374 2025-03-12 02:44:24.374 434298 15243 434551 19689 3 7182 2025-03-12 03:51:41.448 2025-03-12 03:51:41.448 434298 15243 434592 16353 4 7183 2025-03-11 19:19:38.186 2025-03-11 19:19:38.186 434298 15243 434307 16154 1 7184 2025-03-11 19:20:22.246 2025-03-11 19:20:22.246 434298 15243 434310 12736 1 7185 2025-03-11 21:35:08.032 2025-03-11 21:35:08.032 434298 15243 434411 6687 2 7186 2025-03-11 22:22:59.607 2025-03-11 22:22:59.607 434298 15243 434442 730 5 7187 2025-03-11 22:55:48.552 2025-03-11 22:55:48.552 434298 15243 434460 19930 9 7188 2025-03-12 01:40:41.591 2025-03-12 01:40:41.591 434298 15243 434517 17392 3 7189 2025-03-11 22:18:02.711 2025-03-11 22:18:02.711 434298 15243 434439 692 4 7190 2025-03-11 22:41:43.682 2025-03-11 22:41:43.682 434298 15243 434451 8287 7 7191 2025-03-11 19:41:16.992 2025-03-11 19:41:16.992 434309 5173 434326 9036 1 7192 2025-03-11 19:47:26.393 2025-03-11 19:47:26.393 434309 5173 434335 20624 2 7193 2025-03-11 22:17:58.169 2025-03-11 22:17:58.169 434309 5173 434438 10352 1 7194 2025-03-11 22:14:40.647 2025-03-11 22:14:40.647 434310 12736 434435 2711 2 7195 2025-03-11 22:32:34.733 2025-03-11 22:32:34.733 434310 12736 434444 17714 5 7196 2025-03-11 22:44:48.297 2025-03-11 22:44:48.297 434310 12736 434455 1692 7 7197 2025-03-12 01:40:08.451 2025-03-12 01:40:08.451 434310 12736 434516 2326 1 7198 2025-03-12 01:41:19.581 2025-03-12 01:41:19.581 434310 12736 434518 3347 4 7199 2025-03-12 02:01:40.378 2025-03-12 02:01:40.378 434310 12736 434534 9529 1 7200 2025-03-12 02:44:24.374 2025-03-12 02:44:24.374 434310 12736 434551 19689 2 7201 2025-03-12 03:51:41.448 2025-03-12 03:51:41.448 434310 12736 434592 16353 3 7202 2025-03-11 21:35:08.032 2025-03-11 21:35:08.032 434310 12736 434411 6687 1 7203 2025-03-11 22:22:59.607 2025-03-11 22:22:59.607 434310 12736 434442 730 4 7204 2025-03-11 22:55:48.552 2025-03-11 22:55:48.552 434310 12736 434460 19930 8 7205 2025-03-12 01:40:41.591 2025-03-12 01:40:41.591 434310 12736 434517 17392 2 7206 2025-03-11 22:18:02.711 2025-03-11 22:18:02.711 434310 12736 434439 692 3 7207 2025-03-11 22:41:43.682 2025-03-11 22:41:43.682 434310 12736 434451 8287 6 7208 2025-03-12 10:12:54.139 2025-03-12 10:12:54.139 434317 6382 434889 19806 3 7209 2025-03-12 11:13:22.881 2025-03-12 11:13:22.881 434317 6382 434953 20756 3 7210 2025-03-12 06:19:35.65 2025-03-12 06:19:35.65 434317 6382 434675 10056 1 7211 2025-03-12 06:21:00.652 2025-03-12 06:21:00.652 434317 6382 434677 9494 2 7212 2025-03-12 06:50:31.187 2025-03-12 06:50:31.187 434317 6382 434688 9346 1 7213 2025-03-12 06:50:53.023 2025-03-12 06:50:53.023 434317 6382 434689 678 2 7214 2025-03-12 10:11:33.97 2025-03-12 10:11:33.97 434317 6382 434886 21303 2 7215 2025-03-12 10:17:02.109 2025-03-12 10:17:02.109 434317 6382 434895 21172 2 7216 2025-03-12 10:14:42.584 2025-03-12 10:14:42.584 434317 6382 434891 1173 4 7217 2025-03-12 10:20:50.458 2025-03-12 10:20:50.458 434317 6382 434901 15213 5 7218 2025-03-12 12:49:06.417 2025-03-12 12:49:06.417 434317 6382 435076 8985 4 7219 2025-03-11 19:46:27.858 2025-03-11 19:46:27.858 434317 6382 434333 15925 1 7220 2025-03-12 20:36:39.804 2025-03-12 20:36:39.804 434318 19018 435626 7097 1 7221 2025-03-12 20:37:04.384 2025-03-12 20:37:04.384 434318 19018 435627 5069 2 7222 2025-03-13 00:29:45.011 2025-03-13 00:29:45.011 434318 19018 435773 20979 3 7223 2025-03-13 01:10:35.11 2025-03-13 01:10:35.11 434318 19018 435795 1105 2 7224 2025-03-13 02:46:03.267 2025-03-13 02:46:03.267 434318 19018 435839 1960 3 7225 2025-03-13 03:07:58.629 2025-03-13 03:07:58.629 434318 19018 435851 10270 3 7226 2025-03-13 04:00:53.77 2025-03-13 04:00:53.77 434318 19018 435878 20577 1 7227 2025-03-13 04:12:26.445 2025-03-13 04:12:26.445 434318 19018 435881 16259 1 7228 2025-03-13 05:33:46.26 2025-03-13 05:33:46.26 434318 19018 435927 5522 1 7229 2025-03-11 21:39:29.234 2025-03-11 21:39:29.234 434318 19018 434417 15075 1 7230 2025-03-12 01:36:26.672 2025-03-12 01:36:26.672 434318 19018 434515 20717 1 7231 2025-03-12 01:52:23.739 2025-03-12 01:52:23.739 434318 19018 434526 9339 2 7232 2025-03-12 04:01:16.741 2025-03-12 04:01:16.741 434318 19018 434604 13216 1 7233 2025-03-12 23:07:58.504 2025-03-12 23:07:58.504 434318 19018 435743 20026 1 7234 2025-03-13 00:52:29.192 2025-03-13 00:52:29.192 434318 19018 435783 15703 1 7235 2025-03-13 02:49:26.63 2025-03-13 02:49:26.63 434318 19018 435842 18368 1 7236 2025-03-13 02:57:03.701 2025-03-13 02:57:03.701 434318 19018 435846 19303 3 7237 2025-03-13 03:21:50.162 2025-03-13 03:21:50.162 434318 19018 435858 5779 1 7238 2025-03-11 21:00:01.83 2025-03-11 21:00:01.83 434328 20799 434384 12368 1 7239 2025-03-12 00:45:29.019 2025-03-12 00:45:29.019 434332 7913 434496 17030 1 7240 2025-03-12 08:25:01.282 2025-03-12 08:25:01.282 434338 2000 434778 5825 1 7241 2025-03-12 01:52:23.739 2025-03-12 01:52:23.739 434417 15075 434526 9339 1 7242 2025-03-12 06:29:17.901 2025-03-12 06:29:17.901 434486 21647 434678 718 1 7243 2025-03-12 01:09:14.372 2025-03-12 01:09:14.372 434352 20826 434508 7869 2 7244 2025-03-11 21:32:10.526 2025-03-11 21:32:10.526 434352 20826 434409 20073 1 7245 2025-03-12 01:44:40.819 2025-03-12 01:44:40.819 434358 909 434521 9356 1 7246 2025-03-12 12:01:43.84 2025-03-12 12:01:43.84 434358 909 435016 18772 2 7247 2025-03-12 07:19:07.04 2025-03-12 07:19:07.04 434420 12356 434708 15213 1 7248 2025-03-12 07:41:49.276 2025-03-12 07:41:49.276 434420 12356 434733 16097 2 7249 2025-03-12 05:36:39.215 2025-03-12 05:36:39.215 434420 12356 434659 1705 1 7250 2025-03-11 22:44:48.297 2025-03-11 22:44:48.297 434444 17714 434455 1692 2 7251 2025-03-11 22:55:48.552 2025-03-11 22:55:48.552 434444 17714 434460 19930 3 7252 2025-03-11 22:41:43.682 2025-03-11 22:41:43.682 434444 17714 434451 8287 1 7253 2025-03-12 01:43:43.199 2025-03-12 01:43:43.199 434366 3213 434520 1209 1 7254 2025-03-12 03:17:52.737 2025-03-12 03:17:52.737 434367 20434 434574 6148 1 7255 2025-03-11 21:30:42.662 2025-03-11 21:30:42.662 434395 11829 434406 671 1 7256 2025-03-11 23:39:07.254 2025-03-11 23:39:07.254 434395 11829 434472 21248 1 7257 2025-03-11 21:24:07.935 2025-03-11 21:24:07.935 434383 12220 434399 827 1 7258 2025-03-12 02:56:26.593 2025-03-12 02:56:26.593 434385 7760 434561 11789 1 7259 2025-03-12 04:48:07.526 2025-03-12 04:48:07.526 434385 7760 434634 7125 1 7260 2025-03-11 23:23:08.365 2025-03-11 23:23:08.365 434385 7760 434468 19394 1 7261 2025-03-12 02:29:36.82 2025-03-12 02:29:36.82 434482 18178 434545 21208 2 7262 2025-03-12 00:30:22.787 2025-03-12 00:30:22.787 434482 18178 434487 805 1 7263 2025-03-12 00:43:48.574 2025-03-12 00:43:48.574 434483 5519 434494 19527 1 7264 2025-03-12 03:32:12.019 2025-03-12 03:32:12.019 434387 14503 434582 4064 1 7265 2025-03-12 01:57:25.02 2025-03-12 01:57:25.02 434421 14465 434531 16556 1 7266 2025-03-12 03:34:25.103 2025-03-12 03:34:25.103 434421 14465 434585 11288 2 7267 2025-03-12 07:43:22.534 2025-03-12 07:43:22.534 434396 15386 434736 8684 1 7268 2025-03-12 01:57:38.762 2025-03-12 01:57:38.762 434396 15386 434532 616 1 7269 2025-03-12 02:59:15.317 2025-03-12 02:59:15.317 434396 15386 434564 17091 1 7270 2025-03-11 22:41:57.756 2025-03-11 22:41:57.756 434396 15386 434452 805 1 7271 2025-03-11 23:12:21.995 2025-03-11 23:12:21.995 434396 15386 434466 8380 2 7272 2025-03-11 23:52:40.718 2025-03-11 23:52:40.718 434396 15386 434477 20554 1 7273 2025-03-12 09:14:40.028 2025-03-12 09:14:40.028 434396 15386 434834 10944 2 7274 2025-03-11 21:24:01.816 2025-03-11 21:24:01.816 434396 15386 434398 15052 1 7275 2025-03-12 01:42:51.549 2025-03-12 01:42:51.549 434404 651 434519 654 1 7276 2025-03-12 01:56:02.581 2025-03-12 01:56:02.581 434404 651 434530 738 1 7277 2025-03-11 22:16:58.281 2025-03-11 22:16:58.281 434410 11443 434437 21444 1 7278 2025-03-11 23:57:00.102 2025-03-11 23:57:00.102 434410 11443 434479 16301 1 7279 2025-03-12 01:30:48.266 2025-03-12 01:30:48.266 434410 11443 434513 16939 2 7280 2025-03-12 03:10:07.377 2025-03-12 03:10:07.377 434410 11443 434572 6164 1 7281 2025-03-12 14:02:48.174 2025-03-12 14:02:48.174 434410 11443 435160 18219 1 7282 2025-03-11 22:14:40.647 2025-03-11 22:14:40.647 434411 6687 434435 2711 1 7283 2025-03-11 22:32:34.733 2025-03-11 22:32:34.733 434411 6687 434444 17714 4 7284 2025-03-11 22:44:48.297 2025-03-11 22:44:48.297 434411 6687 434455 1692 6 7285 2025-03-12 01:41:19.581 2025-03-12 01:41:19.581 434411 6687 434518 3347 3 7286 2025-03-11 22:22:59.607 2025-03-11 22:22:59.607 434411 6687 434442 730 3 7287 2025-03-11 22:55:48.552 2025-03-11 22:55:48.552 434411 6687 434460 19930 7 7288 2025-03-12 01:40:41.591 2025-03-12 01:40:41.591 434411 6687 434517 17392 1 7289 2025-03-11 22:18:02.711 2025-03-11 22:18:02.711 434411 6687 434439 692 2 7290 2025-03-11 22:41:43.682 2025-03-11 22:41:43.682 434411 6687 434451 8287 5 7291 2025-03-11 23:00:17.436 2025-03-11 23:00:17.436 434424 718 434461 12744 1 7292 2025-03-12 19:34:54.387 2025-03-12 19:34:54.387 434424 718 435562 1493 2 7293 2025-03-12 16:58:41.833 2025-03-12 16:58:41.833 434424 718 435417 11298 1 7294 2025-03-12 07:42:24.434 2025-03-12 07:42:24.434 434434 15488 434734 16542 1 7295 2025-03-11 22:32:34.733 2025-03-11 22:32:34.733 434435 2711 434444 17714 3 7296 2025-03-11 22:44:48.297 2025-03-11 22:44:48.297 434435 2711 434455 1692 5 7297 2025-03-12 01:41:19.581 2025-03-12 01:41:19.581 434435 2711 434518 3347 2 7298 2025-03-11 22:22:59.607 2025-03-11 22:22:59.607 434435 2711 434442 730 2 7299 2025-03-11 22:55:48.552 2025-03-11 22:55:48.552 434435 2711 434460 19930 6 7300 2025-03-11 22:18:02.711 2025-03-11 22:18:02.711 434435 2711 434439 692 1 7301 2025-03-11 22:41:43.682 2025-03-11 22:41:43.682 434435 2711 434451 8287 4 7302 2025-03-11 22:32:34.733 2025-03-11 22:32:34.733 434442 730 434444 17714 1 7303 2025-03-11 22:44:48.297 2025-03-11 22:44:48.297 434442 730 434455 1692 3 7304 2025-03-11 22:55:48.552 2025-03-11 22:55:48.552 434442 730 434460 19930 4 7305 2025-03-11 22:41:43.682 2025-03-11 22:41:43.682 434442 730 434451 8287 2 7306 2025-03-12 00:43:59.908 2025-03-12 00:43:59.908 434474 2529 434495 13216 1 7307 2025-03-12 12:27:03.259 2025-03-12 12:27:03.259 434447 17976 435044 3506 1 7308 2025-03-12 14:51:18.227 2025-03-12 14:51:18.227 434447 17976 435245 6717 2 7309 2025-03-12 03:14:21.086 2025-03-12 03:14:21.086 434457 16424 434573 1729 2 7310 2025-03-12 03:07:55.442 2025-03-12 03:07:55.442 434457 16424 434569 7891 1 7311 2025-03-12 03:00:14.909 2025-03-12 03:00:14.909 434465 19888 434565 17201 2 7312 2025-03-12 01:48:59.498 2025-03-12 01:48:59.498 434465 19888 434525 676 1 7313 2025-03-12 03:48:57.386 2025-03-12 03:48:57.386 434465 19888 434590 17533 1 7314 2025-03-12 09:16:26.029 2025-03-12 09:16:26.029 434465 19888 434839 20337 1 7315 2025-03-12 00:47:44.861 2025-03-12 00:47:44.861 434469 11498 434497 14650 1 7316 2025-03-12 00:48:38.279 2025-03-12 00:48:38.279 434469 11498 434499 8416 2 7317 2025-03-12 01:58:30.701 2025-03-12 01:58:30.701 434469 11498 434533 5293 1 7318 2025-03-12 09:42:11.91 2025-03-12 09:42:11.91 434469 11498 434855 21824 2 7319 2025-03-12 09:42:45.593 2025-03-12 09:42:45.593 434469 11498 434856 21373 2 7320 2025-03-12 10:27:24.208 2025-03-12 10:27:24.208 434469 11498 434903 899 1 7321 2025-03-12 11:39:38.695 2025-03-12 11:39:38.695 434469 11498 434982 20275 3 7322 2025-03-12 19:57:09.695 2025-03-12 19:57:09.695 434469 11498 435587 4602 1 7323 2025-03-12 02:22:08.02 2025-03-12 02:22:08.02 434469 11498 434542 19930 1 7324 2025-03-12 04:21:32.417 2025-03-12 04:21:32.417 434469 11498 434613 16598 1 7325 2025-03-13 15:19:06.472 2025-03-13 15:19:06.472 434469 11498 436464 6717 1 7326 2025-03-13 20:42:03.619 2025-03-13 20:42:03.619 434469 11498 436715 4768 2 7327 2025-03-12 00:12:41.247 2025-03-12 00:12:41.247 434469 11498 434484 27 1 7328 2025-03-12 07:55:21.281 2025-03-12 07:55:21.281 434475 2709 434747 21714 2 7329 2025-03-12 05:49:38.824 2025-03-12 05:49:38.824 434475 2709 434667 21804 1 7330 2025-03-12 08:13:04.286 2025-03-12 08:13:04.286 434475 2709 434761 12102 3 7331 2025-03-13 04:37:16.593 2025-03-13 04:37:16.593 434475 2709 435896 3717 4 7332 2025-03-12 09:14:40.028 2025-03-12 09:14:40.028 434477 20554 434834 10944 1 7333 2025-03-12 01:22:37.53 2025-03-12 01:22:37.53 434480 1478 434510 14657 1 7334 2025-03-12 00:37:39.664 2025-03-12 00:37:39.664 434481 11153 434489 16214 1 7335 2025-03-12 09:42:45.593 2025-03-12 09:42:45.593 434484 27 434856 21373 1 7336 2025-03-12 02:29:36.82 2025-03-12 02:29:36.82 434487 805 434545 21208 1 7337 2025-03-12 04:11:55.058 2025-03-12 04:11:55.058 434488 1567 434609 1438 1 7338 2025-03-12 04:20:35.797 2025-03-12 04:20:35.797 434488 1567 434611 794 2 7339 2025-03-12 13:55:27.281 2025-03-12 13:55:27.281 434488 1567 435150 15196 4 7340 2025-03-12 00:41:55.564 2025-03-12 00:41:55.564 434488 1567 434492 1483 1 7341 2025-03-12 02:56:08.412 2025-03-12 02:56:08.412 434488 1567 434560 910 1 7342 2025-03-12 04:32:44.855 2025-03-12 04:32:44.855 434488 1567 434620 6653 2 7343 2025-03-12 04:33:06.396 2025-03-12 04:33:06.396 434488 1567 434621 7395 2 7344 2025-03-12 04:39:30.599 2025-03-12 04:39:30.599 434488 1567 434624 5961 3 7345 2025-03-12 05:37:37.723 2025-03-12 05:37:37.723 434488 1567 434660 20243 1 7346 2025-03-12 10:32:35.513 2025-03-12 10:32:35.513 434488 1567 434908 21539 2 7347 2025-03-12 10:46:19.198 2025-03-12 10:46:19.198 434488 1567 434927 18930 1 7348 2025-03-12 13:40:19.498 2025-03-12 13:40:19.498 434488 1567 435130 4225 3 7349 2025-03-12 22:51:36.533 2025-03-12 22:51:36.533 434603 640 435734 6653 2 7350 2025-03-12 20:25:30.054 2025-03-12 20:25:30.054 434603 640 435617 15560 1 7351 2025-03-12 22:43:26.674 2025-03-12 22:43:26.674 434603 640 435726 7760 2 7352 2025-03-12 05:52:41.825 2025-03-12 05:52:41.825 434493 17708 434669 16350 1 7353 2025-03-12 00:48:38.279 2025-03-12 00:48:38.279 434497 14650 434499 8416 1 7354 2025-03-12 11:39:38.695 2025-03-12 11:39:38.695 434497 14650 434982 20275 2 7355 2025-03-12 11:39:38.695 2025-03-12 11:39:38.695 434499 8416 434982 20275 1 7356 2025-03-13 02:39:44.432 2025-03-13 02:39:44.432 434522 4654 435837 18829 7 7357 2025-03-12 03:53:48.739 2025-03-12 03:53:48.739 434522 4654 434597 10591 1 7358 2025-03-12 03:55:03.329 2025-03-12 03:55:03.329 434522 4654 434598 11314 1 7359 2025-03-12 03:55:38.557 2025-03-12 03:55:38.557 434522 4654 434599 21400 2 7360 2025-03-12 03:58:08.361 2025-03-12 03:58:08.361 434522 4654 434602 21320 2 7361 2025-03-12 20:33:39.57 2025-03-12 20:33:39.57 434522 4654 435622 4345 3 7362 2025-03-12 20:35:20.41 2025-03-12 20:35:20.41 434522 4654 435623 919 4 7363 2025-03-12 22:27:21.037 2025-03-12 22:27:21.037 434522 4654 435713 2431 4 7364 2025-03-12 22:35:15.314 2025-03-12 22:35:15.314 434522 4654 435717 18174 6 7365 2025-03-12 22:40:00.172 2025-03-12 22:40:00.172 434522 4654 435722 20588 6 7366 2025-03-12 23:54:20.462 2025-03-12 23:54:20.462 434522 4654 435757 20717 9 7367 2025-03-13 00:28:02.56 2025-03-13 00:28:02.56 434522 4654 435772 1726 4 7368 2025-03-13 01:42:00.647 2025-03-13 01:42:00.647 434522 4654 435811 20858 6 7369 2025-03-12 22:58:06.303 2025-03-12 22:58:06.303 434522 4654 435739 8726 8 7370 2025-03-12 22:32:32.55 2025-03-12 22:32:32.55 434522 4654 435715 899 5 7371 2025-03-12 22:33:56.728 2025-03-12 22:33:56.728 434522 4654 435716 2459 5 7372 2025-03-12 22:37:27.774 2025-03-12 22:37:27.774 434522 4654 435720 6463 6 7373 2025-03-12 22:49:39.575 2025-03-12 22:49:39.575 434522 4654 435733 1428 6 7374 2025-03-12 22:52:15.591 2025-03-12 22:52:15.591 434522 4654 435735 12911 7 7375 2025-03-13 00:41:40.141 2025-03-13 00:41:40.141 434522 4654 435775 17533 5 7376 2025-03-12 23:12:28.737 2025-03-12 23:12:28.737 434522 4654 435744 17824 8 7377 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 434522 4654 435758 9276 10 7378 2025-03-13 02:47:39.043 2025-03-13 02:47:39.043 434522 4654 435840 21398 7 7379 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 434522 4654 435766 946 10 7380 2025-03-13 03:53:18.568 2025-03-13 03:53:18.568 434522 4654 435876 18116 8 7381 2025-03-12 01:18:08.198 2025-03-12 01:18:08.198 434500 2952 434509 6191 1 7382 2025-03-12 17:05:55.588 2025-03-12 17:05:55.588 434500 2952 435424 20897 1 7383 2025-03-12 01:24:46.019 2025-03-12 01:24:46.019 434500 2952 434511 19459 2 7384 2025-03-12 03:04:14.874 2025-03-12 03:04:14.874 434506 4388 434567 15732 1 7385 2025-03-12 01:24:46.019 2025-03-12 01:24:46.019 434509 6191 434511 19459 1 7386 2025-03-12 01:53:10.773 2025-03-12 01:53:10.773 434514 17710 434527 2528 1 7387 2025-03-12 01:54:26.812 2025-03-12 01:54:26.812 434514 17710 434528 21444 2 7388 2025-03-12 02:19:34.312 2025-03-12 02:19:34.312 434514 17710 434540 17275 1 7389 2025-03-12 07:11:39.557 2025-03-12 07:11:39.557 434514 17710 434701 21014 1 7390 2025-03-12 19:03:25.2 2025-03-12 19:03:25.2 434514 17710 435535 20683 1 7391 2025-03-12 20:37:04.384 2025-03-12 20:37:04.384 434515 20717 435627 5069 1 7392 2025-03-13 00:29:45.011 2025-03-13 00:29:45.011 434515 20717 435773 20979 2 7393 2025-03-12 02:44:24.374 2025-03-12 02:44:24.374 434516 2326 434551 19689 1 7394 2025-03-12 03:51:41.448 2025-03-12 03:51:41.448 434516 2326 434592 16353 2 7395 2025-03-12 12:01:43.84 2025-03-12 12:01:43.84 434521 9356 435016 18772 1 7396 2025-03-12 03:00:14.909 2025-03-12 03:00:14.909 434525 676 434565 17201 1 7397 2025-03-12 01:54:26.812 2025-03-12 01:54:26.812 434527 2528 434528 21444 1 7398 2025-03-12 03:34:25.103 2025-03-12 03:34:25.103 434531 16556 434585 11288 1 7399 2025-03-12 05:55:24.477 2025-03-12 05:55:24.477 434535 1039 434671 7395 1 7400 2025-03-12 03:27:07.301 2025-03-12 03:27:07.301 434535 1039 434578 1833 1 7401 2025-03-12 02:39:31.872 2025-03-12 02:39:31.872 434535 1039 434548 20353 1 7402 2025-03-12 02:49:07.287 2025-03-12 02:49:07.287 434535 1039 434556 980 1 7403 2025-03-12 04:39:33.286 2025-03-12 04:39:33.286 434535 1039 434625 11423 1 7404 2025-03-12 05:18:58.592 2025-03-12 05:18:58.592 434535 1039 434644 14669 2 7405 2025-03-12 05:21:50.518 2025-03-12 05:21:50.518 434535 1039 434648 21539 2 7406 2025-03-12 03:22:43.084 2025-03-12 03:22:43.084 434535 1039 434575 18637 1 7407 2025-03-12 03:28:43.443 2025-03-12 03:28:43.443 434535 1039 434580 21021 2 7408 2025-03-12 03:58:01.585 2025-03-12 03:58:01.585 434535 1039 434601 19943 1 7409 2025-03-12 04:43:59.625 2025-03-12 04:43:59.625 434535 1039 434629 20717 1 7410 2025-03-12 07:43:12.628 2025-03-12 07:43:12.628 434535 1039 434735 12483 1 7411 2025-03-12 08:35:51.921 2025-03-12 08:35:51.921 434535 1039 434784 1596 1 7412 2025-03-12 11:08:20.137 2025-03-12 11:08:20.137 434535 1039 434948 13544 2 7413 2025-03-12 02:48:04.143 2025-03-12 02:48:04.143 434536 7818 434555 16276 1 7414 2025-03-12 06:37:02.88 2025-03-12 06:37:02.88 434536 7818 434683 15484 1 7415 2025-03-12 16:11:20.347 2025-03-12 16:11:20.347 434538 5759 435360 17095 1 7416 2025-03-12 17:54:52.465 2025-03-12 17:54:52.465 434538 5759 435473 18529 2 7417 2025-03-12 02:46:04.747 2025-03-12 02:46:04.747 434541 21048 434552 21180 1 7418 2025-03-12 03:01:51.827 2025-03-12 03:01:51.827 434541 21048 434566 12965 1 7419 2025-03-12 04:07:48.049 2025-03-12 04:07:48.049 434541 21048 434608 1316 2 7420 2025-03-12 09:42:11.91 2025-03-12 09:42:11.91 434542 19930 434855 21824 1 7421 2025-03-12 04:20:35.797 2025-03-12 04:20:35.797 434560 910 434611 794 1 7422 2025-03-12 13:55:27.281 2025-03-12 13:55:27.281 434560 910 435150 15196 3 7423 2025-03-12 04:32:44.855 2025-03-12 04:32:44.855 434560 910 434620 6653 1 7424 2025-03-12 04:39:30.599 2025-03-12 04:39:30.599 434560 910 434624 5961 2 7425 2025-03-12 10:32:35.513 2025-03-12 10:32:35.513 434560 910 434908 21539 1 7426 2025-03-12 13:40:19.498 2025-03-12 13:40:19.498 434560 910 435130 4225 2 7427 2025-03-12 02:42:33.073 2025-03-12 02:42:33.073 434549 18368 434550 13854 1 7428 2025-03-12 03:51:41.448 2025-03-12 03:51:41.448 434551 19689 434592 16353 1 7429 2025-03-12 04:07:48.049 2025-03-12 04:07:48.049 434552 21180 434608 1316 1 7430 2025-03-12 05:18:58.592 2025-03-12 05:18:58.592 434556 980 434644 14669 1 7431 2025-03-12 03:59:09.062 2025-03-12 03:59:09.062 434558 13361 434603 640 1 7432 2025-03-12 22:51:36.533 2025-03-12 22:51:36.533 434558 13361 435734 6653 3 7433 2025-03-12 20:25:30.054 2025-03-12 20:25:30.054 434558 13361 435617 15560 2 7434 2025-03-12 22:43:26.674 2025-03-12 22:43:26.674 434558 13361 435726 7760 3 7435 2025-03-12 22:44:56.697 2025-03-12 22:44:56.697 434558 13361 435727 1272 1 7436 2025-03-12 22:47:56.224 2025-03-12 22:47:56.224 434558 13361 435730 11314 1 7437 2025-03-12 03:14:21.086 2025-03-12 03:14:21.086 434569 7891 434573 1729 1 7438 2025-03-12 05:49:26.382 2025-03-12 05:49:26.382 434576 701 434666 2056 1 7439 2025-03-12 03:33:36.46 2025-03-12 03:33:36.46 434577 632 434584 15243 1 7440 2025-03-12 04:42:06.796 2025-03-12 04:42:06.796 434577 632 434628 19394 2 7441 2025-03-12 13:04:15.925 2025-03-12 13:04:15.925 434577 632 435089 12222 3 7442 2025-03-12 04:12:43.872 2025-03-12 04:12:43.872 434577 632 434610 17041 1 7443 2025-03-12 11:28:10.328 2025-03-12 11:28:10.328 434577 632 434972 14791 2 7444 2025-03-12 04:38:44.487 2025-03-12 04:38:44.487 434591 11275 434623 1836 1 7445 2025-03-12 05:44:47.14 2025-03-12 05:44:47.14 434591 11275 434664 13038 1 7446 2025-03-12 11:40:12.989 2025-03-12 11:40:12.989 434595 8535 434983 894 2 7447 2025-03-12 04:53:37.082 2025-03-12 04:53:37.082 434595 8535 434636 11522 1 7448 2025-03-13 01:06:34.526 2025-03-13 01:06:34.526 434596 21521 435793 21062 1 7449 2025-03-13 04:29:28.935 2025-03-13 04:29:28.935 434596 21521 435890 21139 2 7450 2025-03-13 06:49:12.205 2025-03-13 06:49:12.205 434596 21521 435961 20409 3 7451 2025-03-13 08:53:13.335 2025-03-13 08:53:13.335 434596 21521 436034 7913 3 7452 2025-03-13 13:09:18.715 2025-03-13 13:09:18.715 434596 21521 436309 9183 4 7453 2025-03-12 03:55:38.557 2025-03-12 03:55:38.557 434597 10591 434599 21400 1 7454 2025-03-13 02:39:44.432 2025-03-13 02:39:44.432 434598 11314 435837 18829 6 7455 2025-03-12 03:58:08.361 2025-03-12 03:58:08.361 434598 11314 434602 21320 1 7456 2025-03-12 20:33:39.57 2025-03-12 20:33:39.57 434598 11314 435622 4345 2 7457 2025-03-12 20:35:20.41 2025-03-12 20:35:20.41 434598 11314 435623 919 3 7458 2025-03-12 22:27:21.037 2025-03-12 22:27:21.037 434598 11314 435713 2431 3 7459 2025-03-12 22:35:15.314 2025-03-12 22:35:15.314 434598 11314 435717 18174 5 7460 2025-03-12 22:40:00.172 2025-03-12 22:40:00.172 434598 11314 435722 20588 5 7461 2025-03-12 23:54:20.462 2025-03-12 23:54:20.462 434598 11314 435757 20717 8 7462 2025-03-13 00:28:02.56 2025-03-13 00:28:02.56 434598 11314 435772 1726 3 7463 2025-03-13 01:42:00.647 2025-03-13 01:42:00.647 434598 11314 435811 20858 5 7464 2025-03-12 22:58:06.303 2025-03-12 22:58:06.303 434598 11314 435739 8726 7 7465 2025-03-12 22:32:32.55 2025-03-12 22:32:32.55 434598 11314 435715 899 4 7466 2025-03-12 22:33:56.728 2025-03-12 22:33:56.728 434598 11314 435716 2459 4 7467 2025-03-12 22:37:27.774 2025-03-12 22:37:27.774 434598 11314 435720 6463 5 7468 2025-03-12 22:49:39.575 2025-03-12 22:49:39.575 434598 11314 435733 1428 5 7469 2025-03-12 22:52:15.591 2025-03-12 22:52:15.591 434598 11314 435735 12911 6 7470 2025-03-13 00:41:40.141 2025-03-13 00:41:40.141 434598 11314 435775 17533 4 7471 2025-03-12 23:12:28.737 2025-03-12 23:12:28.737 434598 11314 435744 17824 7 7472 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 434598 11314 435758 9276 9 7473 2025-03-13 02:47:39.043 2025-03-13 02:47:39.043 434598 11314 435840 21398 6 7474 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 434598 11314 435766 946 9 7475 2025-03-13 03:53:18.568 2025-03-13 03:53:18.568 434598 11314 435876 18116 7 7476 2025-03-12 13:31:46.453 2025-03-12 13:31:46.453 434600 11153 435121 9295 1 7477 2025-03-13 02:39:44.432 2025-03-13 02:39:44.432 434602 21320 435837 18829 5 7478 2025-03-12 20:33:39.57 2025-03-12 20:33:39.57 434602 21320 435622 4345 1 7479 2025-03-12 20:35:20.41 2025-03-12 20:35:20.41 434602 21320 435623 919 2 7480 2025-03-12 22:27:21.037 2025-03-12 22:27:21.037 434602 21320 435713 2431 2 7481 2025-03-12 22:35:15.314 2025-03-12 22:35:15.314 434602 21320 435717 18174 4 7482 2025-03-12 22:40:00.172 2025-03-12 22:40:00.172 434602 21320 435722 20588 4 7483 2025-03-12 23:54:20.462 2025-03-12 23:54:20.462 434602 21320 435757 20717 7 7484 2025-03-13 00:28:02.56 2025-03-13 00:28:02.56 434602 21320 435772 1726 2 7485 2025-03-13 01:42:00.647 2025-03-13 01:42:00.647 434602 21320 435811 20858 4 7486 2025-03-12 22:58:06.303 2025-03-12 22:58:06.303 434602 21320 435739 8726 6 7487 2025-03-12 22:32:32.55 2025-03-12 22:32:32.55 434602 21320 435715 899 3 7488 2025-03-12 22:33:56.728 2025-03-12 22:33:56.728 434602 21320 435716 2459 3 7489 2025-03-12 22:37:27.774 2025-03-12 22:37:27.774 434602 21320 435720 6463 4 7490 2025-03-12 22:49:39.575 2025-03-12 22:49:39.575 434602 21320 435733 1428 4 7491 2025-03-12 22:52:15.591 2025-03-12 22:52:15.591 434602 21320 435735 12911 5 7492 2025-03-13 00:41:40.141 2025-03-13 00:41:40.141 434602 21320 435775 17533 3 7493 2025-03-12 23:12:28.737 2025-03-12 23:12:28.737 434602 21320 435744 17824 6 7494 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 434602 21320 435758 9276 8 7495 2025-03-13 02:47:39.043 2025-03-13 02:47:39.043 434602 21320 435840 21398 5 7496 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 434602 21320 435766 946 8 7497 2025-03-13 03:53:18.568 2025-03-13 03:53:18.568 434602 21320 435876 18116 6 7498 2025-03-12 04:33:06.396 2025-03-12 04:33:06.396 434609 1438 434621 7395 1 7499 2025-03-12 04:39:30.599 2025-03-12 04:39:30.599 434611 794 434624 5961 1 7500 2025-03-12 11:28:58.089 2025-03-12 11:28:58.089 434615 21233 434974 20768 1 7501 2025-03-12 04:35:10.617 2025-03-12 04:35:10.617 434615 21233 434622 16406 1 7502 2025-03-12 05:21:50.518 2025-03-12 05:21:50.518 434625 11423 434648 21539 1 7503 2025-03-12 10:42:03.651 2025-03-12 10:42:03.651 434626 21405 434924 1534 2 7504 2025-03-12 04:47:23.123 2025-03-12 04:47:23.123 434626 21405 434631 10112 1 7505 2025-03-12 05:24:09.728 2025-03-12 05:24:09.728 434627 13517 434650 9356 1 7506 2025-03-12 10:39:14.14 2025-03-12 10:39:14.14 434627 13517 434917 20756 1 7507 2025-03-12 15:36:05.99 2025-03-12 15:36:05.99 434627 13517 435317 8945 2 7508 2025-03-12 15:40:51.467 2025-03-12 15:40:51.467 434627 13517 435322 21222 2 7509 2025-03-12 07:05:24.801 2025-03-12 07:05:24.801 434627 13517 434696 12049 1 7510 2025-03-12 08:31:01.267 2025-03-12 08:31:01.267 434627 13517 434780 7773 1 7511 2025-03-12 11:13:54.105 2025-03-12 11:13:54.105 434627 13517 434954 3409 1 7512 2025-03-12 13:04:15.925 2025-03-12 13:04:15.925 434628 19394 435089 12222 1 7513 2025-03-12 10:42:03.651 2025-03-12 10:42:03.651 434631 10112 434924 1534 1 7514 2025-03-12 07:52:14.454 2025-03-12 07:52:14.454 434697 7580 434743 6360 1 7515 2025-03-12 07:36:21.388 2025-03-12 07:36:21.388 434697 7580 434726 16543 1 7516 2025-03-12 08:01:24.693 2025-03-12 08:01:24.693 434697 7580 434749 21599 2 7517 2025-03-12 08:02:24.276 2025-03-12 08:02:24.276 434697 7580 434750 12483 2 7518 2025-03-12 13:11:02.639 2025-03-12 13:11:02.639 435095 21064 435097 21701 1 7519 2025-03-12 22:52:30.092 2025-03-12 22:52:30.092 434635 19126 435736 14503 1 7520 2025-03-12 06:34:36.918 2025-03-12 06:34:36.918 434637 7587 434681 10484 1 7521 2025-03-12 08:30:11.152 2025-03-12 08:30:11.152 434637 7587 434779 18772 1 7522 2025-03-12 08:31:27.341 2025-03-12 08:31:27.341 434637 7587 434781 10484 2 7523 2025-03-12 05:57:05.848 2025-03-12 05:57:05.848 434639 634 434672 9356 1 7524 2025-03-12 06:51:15.173 2025-03-12 06:51:15.173 434639 634 434690 854 2 7525 2025-03-12 05:44:20.337 2025-03-12 05:44:20.337 434641 992 434663 16965 2 7526 2025-03-12 15:01:03.349 2025-03-12 15:01:03.349 434641 992 435258 1060 2 7527 2025-03-12 05:27:26.25 2025-03-12 05:27:26.25 434641 992 434655 11516 1 7528 2025-03-12 13:58:35.554 2025-03-12 13:58:35.554 434641 992 435156 15484 1 7529 2025-03-12 06:36:16.799 2025-03-12 06:36:16.799 434643 11750 434682 7809 1 7530 2025-03-12 08:07:43.611 2025-03-12 08:07:43.611 434643 11750 434755 2016 2 7531 2025-03-12 08:08:21.647 2025-03-12 08:08:21.647 434643 11750 434756 19524 3 7532 2025-03-12 10:16:36.37 2025-03-12 10:16:36.37 434643 11750 434893 13854 2 7533 2025-03-12 09:23:51.816 2025-03-12 09:23:51.816 434643 11750 434844 10862 5 7534 2025-03-12 08:45:45.059 2025-03-12 08:45:45.059 434643 11750 434793 2342 4 7535 2025-03-12 09:52:12.592 2025-03-12 09:52:12.592 434643 11750 434868 14688 1 7536 2025-03-13 00:58:56.781 2025-03-13 00:58:56.781 434645 11498 435785 5522 1 7537 2025-03-12 14:19:40.387 2025-03-12 14:19:40.387 434661 712 435197 4798 1 7538 2025-03-12 11:54:33.41 2025-03-12 11:54:33.41 434646 17103 435005 9529 2 7539 2025-03-12 05:42:00.695 2025-03-12 05:42:00.695 434646 17103 434662 722 1 7540 2025-03-12 06:38:12.92 2025-03-12 06:38:12.92 434646 17103 434684 1652 1 7541 2025-03-12 06:48:32.459 2025-03-12 06:48:32.459 434646 17103 434687 1039 1 7542 2025-03-12 07:19:41.998 2025-03-12 07:19:41.998 434646 17103 434709 13878 1 7543 2025-03-12 07:29:37.386 2025-03-12 07:29:37.386 434646 17103 434718 20892 1 7544 2025-03-12 08:11:10.604 2025-03-12 08:11:10.604 434646 17103 434759 16212 2 7545 2025-03-12 08:14:44.267 2025-03-12 08:14:44.267 434646 17103 434764 4754 2 7546 2025-03-12 08:16:57.504 2025-03-12 08:16:57.504 434646 17103 434767 16704 2 7547 2025-03-12 08:21:03.093 2025-03-12 08:21:03.093 434646 17103 434769 18441 3 7548 2025-03-12 08:21:24.976 2025-03-12 08:21:24.976 434646 17103 434770 20840 2 7549 2025-03-12 08:24:13.971 2025-03-12 08:24:13.971 434646 17103 434776 762 5 7550 2025-03-12 11:49:58.105 2025-03-12 11:49:58.105 434646 17103 434995 919 4 7551 2025-03-12 12:12:18.344 2025-03-12 12:12:18.344 434646 17103 435031 1173 2 7552 2025-03-12 08:12:25.868 2025-03-12 08:12:25.868 434646 17103 434760 4388 2 7553 2025-03-12 08:13:04.97 2025-03-12 08:13:04.97 434646 17103 434762 12951 2 7554 2025-03-12 08:22:22.331 2025-03-12 08:22:22.331 434646 17103 434772 777 2 7555 2025-03-12 08:22:46.883 2025-03-12 08:22:46.883 434646 17103 434773 6058 2 7556 2025-03-12 08:23:27.299 2025-03-12 08:23:27.299 434646 17103 434775 19952 4 7557 2025-03-12 09:54:46.819 2025-03-12 09:54:46.819 434646 17103 434871 18608 1 7558 2025-03-12 10:04:36.529 2025-03-12 10:04:36.529 434646 17103 434877 20911 1 7559 2025-03-12 10:19:01.687 2025-03-12 10:19:01.687 434646 17103 434898 21332 2 7560 2025-03-12 10:20:23.944 2025-03-12 10:20:23.944 434646 17103 434899 18525 2 7561 2025-03-12 10:35:04.285 2025-03-12 10:35:04.285 434646 17103 434912 18423 3 7562 2025-03-12 10:36:57.061 2025-03-12 10:36:57.061 434646 17103 434913 9418 4 7563 2025-03-12 10:51:41.63 2025-03-12 10:51:41.63 434646 17103 434933 10398 3 7564 2025-03-12 11:52:14.497 2025-03-12 11:52:14.497 434646 17103 434999 956 1 7565 2025-03-12 05:24:42.292 2025-03-12 05:24:42.292 434646 17103 434652 21577 1 7566 2025-03-12 07:17:18.072 2025-03-12 07:17:18.072 434647 2361 434704 15662 1 7567 2025-03-12 07:40:52.588 2025-03-12 07:40:52.588 434647 2361 434731 683 1 7568 2025-03-12 15:40:51.467 2025-03-12 15:40:51.467 434650 9356 435322 21222 1 7569 2025-03-12 08:21:24.976 2025-03-12 08:21:24.976 434662 722 434770 20840 1 7570 2025-03-12 05:44:20.337 2025-03-12 05:44:20.337 434655 11516 434663 16965 1 7571 2025-03-12 10:27:51.461 2025-03-12 10:27:51.461 434658 20454 434904 5825 1 7572 2025-03-12 11:53:14.334 2025-03-12 11:53:14.334 434665 20243 435001 17095 1 7573 2025-03-12 14:24:21.81 2025-03-12 14:24:21.81 434665 20243 435203 9356 1 7574 2025-03-12 06:08:17.254 2025-03-12 06:08:17.254 434665 20243 434674 16229 1 7575 2025-03-12 08:56:51.294 2025-03-12 08:56:51.294 434665 20243 434812 11192 1 7576 2025-03-12 12:09:58.65 2025-03-12 12:09:58.65 434665 20243 435025 21254 1 7577 2025-03-12 13:47:07.473 2025-03-12 13:47:07.473 434665 20243 435143 11164 1 7578 2025-03-12 07:55:21.281 2025-03-12 07:55:21.281 434667 21804 434747 21714 1 7579 2025-03-12 08:13:04.286 2025-03-12 08:13:04.286 434667 21804 434761 12102 2 7580 2025-03-13 04:37:16.593 2025-03-13 04:37:16.593 434667 21804 435896 3717 3 7581 2025-03-12 15:07:19.297 2025-03-12 15:07:19.297 434668 657 435265 683 1 7582 2025-03-12 15:08:29.003 2025-03-12 15:08:29.003 434668 657 435266 946 2 7583 2025-03-12 15:13:16.425 2025-03-12 15:13:16.425 434668 657 435273 21714 2 7584 2025-03-12 17:29:13.539 2025-03-12 17:29:13.539 434668 657 435450 20275 3 7585 2025-03-12 06:51:15.173 2025-03-12 06:51:15.173 434672 9356 434690 854 1 7586 2025-03-12 10:56:31.403 2025-03-12 10:56:31.403 434673 20294 434938 21242 2 7587 2025-03-12 06:19:54.274 2025-03-12 06:19:54.274 434673 20294 434676 9356 1 7588 2025-03-12 10:12:54.139 2025-03-12 10:12:54.139 434675 10056 434889 19806 2 7589 2025-03-12 10:11:33.97 2025-03-12 10:11:33.97 434675 10056 434886 21303 1 7590 2025-03-12 10:14:42.584 2025-03-12 10:14:42.584 434675 10056 434891 1173 3 7591 2025-03-12 10:20:50.458 2025-03-12 10:20:50.458 434675 10056 434901 15213 4 7592 2025-03-12 08:07:43.611 2025-03-12 08:07:43.611 434682 7809 434755 2016 1 7593 2025-03-12 08:08:21.647 2025-03-12 08:08:21.647 434682 7809 434756 19524 2 7594 2025-03-12 09:23:51.816 2025-03-12 09:23:51.816 434682 7809 434844 10862 4 7595 2025-03-12 08:45:45.059 2025-03-12 08:45:45.059 434682 7809 434793 2342 3 7596 2025-03-12 08:13:04.97 2025-03-12 08:13:04.97 434684 1652 434762 12951 1 7597 2025-03-12 08:42:46.691 2025-03-12 08:42:46.691 434685 1307 434788 14857 1 7598 2025-03-12 11:06:14.469 2025-03-12 11:06:14.469 434685 1307 434945 712 2 7599 2025-03-12 11:06:36.998 2025-03-12 11:06:36.998 434685 1307 434946 21540 2 7600 2025-03-12 16:42:25.065 2025-03-12 16:42:25.065 434685 1307 435394 17455 1 7601 2025-03-12 08:43:44.017 2025-03-12 08:43:44.017 434685 1307 434790 16440 1 7602 2025-03-12 11:01:10.25 2025-03-12 11:01:10.25 434685 1307 434943 16357 2 7603 2025-03-12 08:21:03.093 2025-03-12 08:21:03.093 434687 1039 434769 18441 2 7604 2025-03-12 08:24:13.971 2025-03-12 08:24:13.971 434687 1039 434776 762 4 7605 2025-03-12 08:12:25.868 2025-03-12 08:12:25.868 434687 1039 434760 4388 1 7606 2025-03-12 08:23:27.299 2025-03-12 08:23:27.299 434687 1039 434775 19952 3 7607 2025-03-12 11:13:22.881 2025-03-12 11:13:22.881 434688 9346 434953 20756 2 7608 2025-03-12 10:17:02.109 2025-03-12 10:17:02.109 434688 9346 434895 21172 1 7609 2025-03-12 12:49:06.417 2025-03-12 12:49:06.417 434688 9346 435076 8985 3 7610 2025-03-12 08:09:31.258 2025-03-12 08:09:31.258 434691 641 434758 654 1 7611 2025-03-12 07:18:32.797 2025-03-12 07:18:32.797 434693 15091 434706 1438 2 7612 2025-03-12 07:14:22.377 2025-03-12 07:14:22.377 434693 15091 434702 20182 1 7613 2025-03-12 07:58:26.611 2025-03-12 07:58:26.611 434695 20683 434748 2329 1 7614 2025-03-12 09:27:12.798 2025-03-12 09:27:12.798 434700 16354 434848 17722 1 7615 2025-03-12 07:18:32.797 2025-03-12 07:18:32.797 434702 20182 434706 1438 1 7616 2025-03-12 17:42:08.792 2025-03-12 17:42:08.792 434707 4802 435464 20881 1 7617 2025-03-12 08:11:10.604 2025-03-12 08:11:10.604 434709 13878 434759 16212 1 7618 2025-03-12 08:22:46.883 2025-03-12 08:22:46.883 434709 13878 434773 6058 1 7619 2025-03-12 07:35:39.181 2025-03-12 07:35:39.181 434715 2338 434725 20525 1 7620 2025-03-12 07:41:48.369 2025-03-12 07:41:48.369 434717 21541 434732 2719 1 7621 2025-03-12 08:42:48.206 2025-03-12 08:42:48.206 434717 21541 434789 19829 1 7622 2025-03-12 08:47:37.467 2025-03-12 08:47:37.467 434717 21541 434794 5069 2 7623 2025-03-12 08:16:57.504 2025-03-12 08:16:57.504 434718 20892 434767 16704 1 7624 2025-03-12 08:22:22.331 2025-03-12 08:22:22.331 434718 20892 434772 777 1 7625 2025-03-12 18:20:05.821 2025-03-12 18:20:05.821 434720 959 435485 17552 1 7626 2025-03-12 11:41:38.674 2025-03-12 11:41:38.674 434720 959 434985 13753 1 7627 2025-03-12 12:01:38.338 2025-03-12 12:01:38.338 434720 959 435015 20198 1 7628 2025-03-12 13:26:48.269 2025-03-12 13:26:48.269 434721 13361 435113 8173 1 7629 2025-03-12 08:01:24.693 2025-03-12 08:01:24.693 434743 6360 434749 21599 1 7630 2025-03-12 08:05:39.456 2025-03-12 08:05:39.456 434744 4650 434753 20205 1 7631 2025-03-12 15:15:43.304 2025-03-12 15:15:43.304 434723 20788 435278 20655 2 7632 2025-03-12 11:27:27.405 2025-03-12 11:27:27.405 434723 20788 434971 16387 1 7633 2025-03-12 11:50:30.39 2025-03-12 11:50:30.39 434723 20788 434996 9200 2 7634 2025-03-12 08:20:36.3 2025-03-12 08:20:36.3 434724 9026 434768 2508 2 7635 2025-03-12 07:51:13.269 2025-03-12 07:51:13.269 434724 9026 434741 1175 1 7636 2025-03-12 08:02:24.276 2025-03-12 08:02:24.276 434726 16543 434750 12483 1 7637 2025-03-12 07:49:43.499 2025-03-12 07:49:43.499 434727 7992 434739 1006 1 7638 2025-03-12 08:05:18.922 2025-03-12 08:05:18.922 434727 7992 434752 5522 1 7639 2025-03-12 10:29:03.082 2025-03-12 10:29:03.082 434737 21575 434906 964 1 7640 2025-03-12 08:20:36.3 2025-03-12 08:20:36.3 434741 1175 434768 2508 1 7641 2025-03-12 08:13:04.286 2025-03-12 08:13:04.286 434747 21714 434761 12102 1 7642 2025-03-13 04:37:16.593 2025-03-13 04:37:16.593 434747 21714 435896 3717 2 7643 2025-03-12 08:24:13.971 2025-03-12 08:24:13.971 434769 18441 434776 762 2 7644 2025-03-12 08:23:27.299 2025-03-12 08:23:27.299 434769 18441 434775 19952 1 7645 2025-03-12 10:53:20.716 2025-03-12 10:53:20.716 434751 8173 434935 11527 1 7646 2025-03-12 08:08:21.647 2025-03-12 08:08:21.647 434755 2016 434756 19524 1 7647 2025-03-12 09:23:51.816 2025-03-12 09:23:51.816 434755 2016 434844 10862 3 7648 2025-03-12 08:45:45.059 2025-03-12 08:45:45.059 434755 2016 434793 2342 2 7649 2025-03-12 09:23:51.816 2025-03-12 09:23:51.816 434756 19524 434844 10862 2 7650 2025-03-12 08:45:45.059 2025-03-12 08:45:45.059 434756 19524 434793 2342 1 7651 2025-03-12 08:21:03.093 2025-03-12 08:21:03.093 434760 4388 434769 18441 1 7652 2025-03-12 08:24:13.971 2025-03-12 08:24:13.971 434760 4388 434776 762 3 7653 2025-03-12 08:23:27.299 2025-03-12 08:23:27.299 434760 4388 434775 19952 2 7654 2025-03-13 04:37:16.593 2025-03-13 04:37:16.593 434761 12102 435896 3717 1 7655 2025-03-12 08:24:53.758 2025-03-12 08:24:53.758 434774 686 434777 9863 1 7656 2025-03-12 08:24:13.971 2025-03-12 08:24:13.971 434775 19952 434776 762 1 7657 2025-03-12 08:31:27.341 2025-03-12 08:31:27.341 434779 18772 434781 10484 1 7658 2025-03-12 08:34:34.63 2025-03-12 08:34:34.63 434782 13249 434783 14260 1 7659 2025-03-12 12:12:21.569 2025-03-12 12:12:21.569 434782 13249 435032 10056 1 7660 2025-03-12 11:08:20.137 2025-03-12 11:08:20.137 434784 1596 434948 13544 1 7661 2025-03-12 16:46:59.077 2025-03-12 16:46:59.077 435399 14774 435400 21585 1 7662 2025-03-12 10:16:03.402 2025-03-12 10:16:03.402 434787 9705 434892 656 1 7663 2025-03-12 11:06:14.469 2025-03-12 11:06:14.469 434788 14857 434945 712 1 7664 2025-03-12 08:47:37.467 2025-03-12 08:47:37.467 434789 19829 434794 5069 1 7665 2025-03-12 11:06:36.998 2025-03-12 11:06:36.998 434790 16440 434946 21540 1 7666 2025-03-12 11:01:10.25 2025-03-12 11:01:10.25 434790 16440 434943 16357 1 7667 2025-03-12 09:49:11.629 2025-03-12 09:49:11.629 434824 3461 434863 20306 1 7668 2025-03-12 10:08:56.216 2025-03-12 10:08:56.216 434791 14452 434883 6578 3 7669 2025-03-12 11:10:08.613 2025-03-12 11:10:08.613 434791 14452 434950 1803 1 7670 2025-03-12 11:32:59 2025-03-12 11:32:59 434791 14452 434978 20019 1 7671 2025-03-12 12:25:25.099 2025-03-12 12:25:25.099 434791 14452 435042 13327 2 7672 2025-03-12 12:36:53.59 2025-03-12 12:36:53.59 434791 14452 435054 14404 1 7673 2025-03-12 12:40:51.553 2025-03-12 12:40:51.553 434791 14452 435060 10493 2 7674 2025-03-12 13:52:19.95 2025-03-12 13:52:19.95 434791 14452 435148 20683 1 7675 2025-03-12 14:02:39.635 2025-03-12 14:02:39.635 434791 14452 435159 9537 2 7676 2025-03-12 15:44:58.383 2025-03-12 15:44:58.383 434791 14452 435333 11288 2 7677 2025-03-12 18:36:18.76 2025-03-12 18:36:18.76 434791 14452 435508 18005 2 7678 2025-03-12 15:35:36.702 2025-03-12 15:35:36.702 434791 14452 435315 20179 1 7679 2025-03-12 09:49:17.366 2025-03-12 09:49:17.366 434791 14452 434864 2123 1 7680 2025-03-12 09:52:43.672 2025-03-12 09:52:43.672 434791 14452 434870 959 2 7681 2025-03-12 11:21:30.847 2025-03-12 11:21:30.847 434791 14452 434964 21269 2 7682 2025-03-12 12:33:34.082 2025-03-12 12:33:34.082 434791 14452 435050 21131 3 7683 2025-03-12 12:34:23.266 2025-03-12 12:34:23.266 434791 14452 435052 21279 3 7684 2025-03-12 13:38:49.539 2025-03-12 13:38:49.539 434791 14452 435126 10554 1 7685 2025-03-12 15:18:32.797 2025-03-12 15:18:32.797 434791 14452 435283 17116 1 7686 2025-03-12 15:48:46.752 2025-03-12 15:48:46.752 434791 14452 435344 21639 3 7687 2025-03-12 17:11:42.449 2025-03-12 17:11:42.449 434791 14452 435432 16296 4 7688 2025-03-12 17:20:12.491 2025-03-12 17:20:12.491 434791 14452 435440 5017 5 7689 2025-03-12 08:54:34.007 2025-03-12 08:54:34.007 434792 15239 434808 1316 1 7690 2025-03-12 09:23:51.816 2025-03-12 09:23:51.816 434793 2342 434844 10862 1 7691 2025-03-12 09:05:54.069 2025-03-12 09:05:54.069 434796 18423 434829 10818 3 7692 2025-03-12 08:52:00.266 2025-03-12 08:52:00.266 434796 18423 434804 720 1 7693 2025-03-12 08:58:46.947 2025-03-12 08:58:46.947 434796 18423 434818 16858 2 7694 2025-03-12 09:05:51.836 2025-03-12 09:05:51.836 434796 18423 434828 12097 3 7695 2025-03-12 09:23:41.994 2025-03-12 09:23:41.994 434796 18423 434843 13921 3 7696 2025-03-12 09:03:32.91 2025-03-12 09:03:32.91 434796 18423 434825 787 1 7697 2025-03-12 09:14:39.102 2025-03-12 09:14:39.102 434796 18423 434833 6471 2 7698 2025-03-12 09:45:00.006 2025-03-12 09:45:00.006 434796 18423 434858 17157 4 7699 2025-03-12 10:41:48.664 2025-03-12 10:41:48.664 434797 5978 434923 1237 6 7700 2025-03-12 08:53:14.059 2025-03-12 08:53:14.059 434797 5978 434805 769 2 7701 2025-03-12 09:50:07.516 2025-03-12 09:50:07.516 434797 5978 434866 4570 1 7702 2025-03-12 10:05:47.075 2025-03-12 10:05:47.075 434797 5978 434879 9295 3 7703 2025-03-12 10:16:39.234 2025-03-12 10:16:39.234 434797 5978 434894 4487 4 7704 2025-03-12 10:40:46.215 2025-03-12 10:40:46.215 434797 5978 434921 17526 5 7705 2025-03-12 08:50:07.424 2025-03-12 08:50:07.424 434797 5978 434800 1618 1 7706 2025-03-12 08:55:34.65 2025-03-12 08:55:34.65 434797 5978 434811 6777 3 7707 2025-03-12 09:52:13.466 2025-03-12 09:52:13.466 434797 5978 434869 683 2 7708 2025-03-12 12:42:56.881 2025-03-12 12:42:56.881 434797 5978 435066 2709 1 7709 2025-03-12 14:18:26.613 2025-03-12 14:18:26.613 434798 21212 435194 12911 2 7710 2025-03-12 14:09:41.756 2025-03-12 14:09:41.756 434798 21212 435179 640 1 7711 2025-03-12 15:41:39.947 2025-03-12 15:41:39.947 434798 21212 435325 16939 6 7712 2025-03-12 15:44:13.381 2025-03-12 15:44:13.381 434798 21212 435330 1769 7 7713 2025-03-12 17:15:06.024 2025-03-12 17:15:06.024 434798 21212 435434 14503 10 7714 2025-03-12 08:51:01.145 2025-03-12 08:51:01.145 434798 21212 434803 1705 1 7715 2025-03-12 14:25:00.251 2025-03-12 14:25:00.251 434798 21212 435204 19292 3 7716 2025-03-12 08:49:44.935 2025-03-12 08:49:44.935 434798 21212 434799 20220 1 7717 2025-03-12 14:46:49.887 2025-03-12 14:46:49.887 434798 21212 435239 2529 4 7718 2025-03-12 15:20:23.501 2025-03-12 15:20:23.501 434798 21212 435290 21172 5 7719 2025-03-12 15:46:51.711 2025-03-12 15:46:51.711 434798 21212 435337 21116 8 7720 2025-03-12 15:52:40.164 2025-03-12 15:52:40.164 434798 21212 435348 6191 9 7721 2025-03-12 08:53:14.059 2025-03-12 08:53:14.059 434800 1618 434805 769 1 7722 2025-03-12 08:55:34.65 2025-03-12 08:55:34.65 434800 1618 434811 6777 2 7723 2025-03-13 10:48:56.353 2025-03-13 10:48:56.353 434801 1433 436138 4989 2 7724 2025-03-13 12:17:30.888 2025-03-13 12:17:30.888 434801 1433 436250 18829 3 7725 2025-03-12 09:02:16.93 2025-03-12 09:02:16.93 434801 1433 434824 3461 1 7726 2025-03-12 09:00:37.742 2025-03-12 09:00:37.742 434801 1433 434820 5173 1 7727 2025-03-12 09:49:11.629 2025-03-12 09:49:11.629 434801 1433 434863 20306 2 7728 2025-03-13 10:42:26.651 2025-03-13 10:42:26.651 434801 1433 436128 1090 1 7729 2025-03-12 09:08:18.909 2025-03-12 09:08:18.909 434802 15624 434830 5829 1 7730 2025-03-12 09:05:54.069 2025-03-12 09:05:54.069 434804 720 434829 10818 2 7731 2025-03-12 08:58:46.947 2025-03-12 08:58:46.947 434804 720 434818 16858 1 7732 2025-03-12 09:05:51.836 2025-03-12 09:05:51.836 434804 720 434828 12097 2 7733 2025-03-12 09:23:41.994 2025-03-12 09:23:41.994 434804 720 434843 13921 2 7734 2025-03-12 09:45:00.006 2025-03-12 09:45:00.006 434804 720 434858 17157 3 7735 2025-03-12 08:55:34.65 2025-03-12 08:55:34.65 434805 769 434811 6777 1 7736 2025-03-12 08:58:53.494 2025-03-12 08:58:53.494 434806 18241 434819 15226 1 7737 2025-03-12 09:29:11.896 2025-03-12 09:29:11.896 434810 20187 434849 19005 1 7738 2025-03-12 09:01:36.412 2025-03-12 09:01:36.412 434810 20187 434821 629 1 7739 2025-03-12 09:04:46.915 2025-03-12 09:04:46.915 434810 20187 434826 1833 1 7740 2025-03-12 09:10:31.98 2025-03-12 09:10:31.98 434810 20187 434832 11073 1 7741 2025-03-12 09:15:43.58 2025-03-12 09:15:43.58 434810 20187 434838 20554 1 7742 2025-03-12 11:59:21.312 2025-03-12 11:59:21.312 434813 9242 435013 1617 1 7743 2025-03-12 09:26:50.925 2025-03-12 09:26:50.925 434813 9242 434847 15491 1 7744 2025-03-12 09:43:12.046 2025-03-12 09:43:12.046 434813 9242 434857 6777 2 7745 2025-03-12 10:56:58.668 2025-03-12 10:56:58.668 434831 17050 434940 1136 1 7746 2025-03-12 11:10:53.098 2025-03-12 11:10:53.098 434831 17050 434951 1650 2 7747 2025-03-12 10:06:57.516 2025-03-12 10:06:57.516 434865 992 434881 20979 1 7748 2025-03-12 10:17:41.609 2025-03-12 10:17:41.609 434865 992 434896 21180 1 7749 2025-03-12 10:01:24.698 2025-03-12 10:01:24.698 434865 992 434875 6030 1 7750 2025-03-12 10:10:13.208 2025-03-12 10:10:13.208 434865 992 434884 21254 2 7751 2025-03-12 15:33:19.846 2025-03-12 15:33:19.846 434865 992 435309 20243 2 7752 2025-03-12 09:23:16.147 2025-03-12 09:23:16.147 434814 1474 434841 16406 1 7753 2025-03-12 11:58:37.95 2025-03-12 11:58:37.95 434814 1474 435011 12561 1 7754 2025-03-12 21:52:35.636 2025-03-12 21:52:35.636 434814 1474 435686 18930 1 7755 2025-03-12 09:38:20.564 2025-03-12 09:38:20.564 434816 8176 434853 1480 1 7756 2025-03-12 09:05:54.069 2025-03-12 09:05:54.069 434818 16858 434829 10818 1 7757 2025-03-12 09:05:51.836 2025-03-12 09:05:51.836 434818 16858 434828 12097 1 7758 2025-03-12 09:23:41.994 2025-03-12 09:23:41.994 434818 16858 434843 13921 1 7759 2025-03-12 09:45:00.006 2025-03-12 09:45:00.006 434818 16858 434858 17157 2 7760 2025-03-12 12:25:41.074 2025-03-12 12:25:41.074 434837 19016 435043 9758 2 7761 2025-03-12 19:54:21.121 2025-03-12 19:54:21.121 434837 19016 435581 7673 1 7762 2025-03-12 10:05:30.155 2025-03-12 10:05:30.155 434837 19016 434878 20450 1 7763 2025-03-12 10:03:02.911 2025-03-12 10:03:02.911 434822 7746 434876 8945 1 7764 2025-03-12 09:14:39.102 2025-03-12 09:14:39.102 434825 787 434833 6471 1 7765 2025-03-12 09:57:35.401 2025-03-12 09:57:35.401 434827 21104 434872 2065 2 7766 2025-03-12 12:47:55.022 2025-03-12 12:47:55.022 434827 21104 435075 9353 1 7767 2025-03-12 09:52:04.574 2025-03-12 09:52:04.574 434827 21104 434867 2639 1 7768 2025-03-12 09:45:00.006 2025-03-12 09:45:00.006 434829 10818 434858 17157 1 7769 2025-03-12 10:47:47.995 2025-03-12 10:47:47.995 434902 15556 434930 13365 1 7770 2025-03-12 10:38:07.409 2025-03-12 10:38:07.409 434902 15556 434915 18393 1 7771 2025-03-12 10:39:46.784 2025-03-12 10:39:46.784 434902 15556 434919 21263 1 7772 2025-03-13 00:15:13.654 2025-03-13 00:15:13.654 434902 15556 435765 14080 1 7773 2025-03-13 01:02:32.684 2025-03-13 01:02:32.684 434902 15556 435790 10862 1 7774 2025-03-12 09:43:12.046 2025-03-12 09:43:12.046 434847 15491 434857 6777 1 7775 2025-03-12 09:36:41.346 2025-03-12 09:36:41.346 434850 13177 434852 2437 1 7776 2025-03-12 10:20:35.945 2025-03-12 10:20:35.945 434850 13177 434900 12291 2 7777 2025-03-12 10:37:47.281 2025-03-12 10:37:47.281 434850 13177 434914 2961 3 7778 2025-03-12 10:08:56.216 2025-03-12 10:08:56.216 434864 2123 434883 6578 2 7779 2025-03-12 09:52:43.672 2025-03-12 09:52:43.672 434864 2123 434870 959 1 7780 2025-03-12 13:30:40.806 2025-03-12 13:30:40.806 434851 21262 435118 12272 1 7781 2025-03-12 10:20:35.945 2025-03-12 10:20:35.945 434852 2437 434900 12291 1 7782 2025-03-12 10:37:47.281 2025-03-12 10:37:47.281 434852 2437 434914 2961 2 7783 2025-03-12 09:47:39.624 2025-03-12 09:47:39.624 434860 618 434861 17411 1 7784 2025-03-12 10:41:48.664 2025-03-12 10:41:48.664 434866 4570 434923 1237 5 7785 2025-03-12 10:05:47.075 2025-03-12 10:05:47.075 434866 4570 434879 9295 2 7786 2025-03-12 10:16:39.234 2025-03-12 10:16:39.234 434866 4570 434894 4487 3 7787 2025-03-12 10:40:46.215 2025-03-12 10:40:46.215 434866 4570 434921 17526 4 7788 2025-03-12 09:52:13.466 2025-03-12 09:52:13.466 434866 4570 434869 683 1 7789 2025-03-12 09:57:35.401 2025-03-12 09:57:35.401 434867 2639 434872 2065 1 7790 2025-03-12 10:16:36.37 2025-03-12 10:16:36.37 434868 14688 434893 13854 1 7791 2025-03-12 10:41:48.664 2025-03-12 10:41:48.664 434869 683 434923 1237 4 7792 2025-03-12 10:05:47.075 2025-03-12 10:05:47.075 434869 683 434879 9295 1 7793 2025-03-12 10:16:39.234 2025-03-12 10:16:39.234 434869 683 434894 4487 2 7794 2025-03-12 10:40:46.215 2025-03-12 10:40:46.215 434869 683 434921 17526 3 7795 2025-03-12 10:08:56.216 2025-03-12 10:08:56.216 434870 959 434883 6578 1 7796 2025-03-12 10:20:23.944 2025-03-12 10:20:23.944 434871 18608 434899 18525 1 7797 2025-03-12 10:35:04.285 2025-03-12 10:35:04.285 434871 18608 434912 18423 2 7798 2025-03-12 10:36:57.061 2025-03-12 10:36:57.061 434871 18608 434913 9418 3 7799 2025-03-12 10:11:15.686 2025-03-12 10:11:15.686 434874 20588 434885 16830 1 7800 2025-03-12 19:46:28.43 2025-03-12 19:46:28.43 434874 20588 435575 10638 1 7801 2025-03-12 10:10:13.208 2025-03-12 10:10:13.208 434875 6030 434884 21254 1 7802 2025-03-12 11:49:58.105 2025-03-12 11:49:58.105 434877 20911 434995 919 3 7803 2025-03-12 10:19:01.687 2025-03-12 10:19:01.687 434877 20911 434898 21332 1 7804 2025-03-12 10:51:41.63 2025-03-12 10:51:41.63 434877 20911 434933 10398 2 7805 2025-03-12 12:25:41.074 2025-03-12 12:25:41.074 434878 20450 435043 9758 1 7806 2025-03-12 10:41:48.664 2025-03-12 10:41:48.664 434879 9295 434923 1237 3 7807 2025-03-12 10:16:39.234 2025-03-12 10:16:39.234 434879 9295 434894 4487 1 7808 2025-03-12 10:40:46.215 2025-03-12 10:40:46.215 434879 9295 434921 17526 2 7809 2025-03-12 10:12:54.139 2025-03-12 10:12:54.139 434886 21303 434889 19806 1 7810 2025-03-12 10:14:42.584 2025-03-12 10:14:42.584 434886 21303 434891 1173 2 7811 2025-03-12 10:20:50.458 2025-03-12 10:20:50.458 434886 21303 434901 15213 3 7812 2025-03-12 11:13:22.881 2025-03-12 11:13:22.881 434895 21172 434953 20756 1 7813 2025-03-12 12:49:06.417 2025-03-12 12:49:06.417 434895 21172 435076 8985 2 7814 2025-03-12 10:14:42.584 2025-03-12 10:14:42.584 434889 19806 434891 1173 1 7815 2025-03-12 10:20:50.458 2025-03-12 10:20:50.458 434889 19806 434901 15213 2 7816 2025-03-12 10:20:50.458 2025-03-12 10:20:50.458 434891 1173 434901 15213 1 7817 2025-03-12 10:41:48.664 2025-03-12 10:41:48.664 434894 4487 434923 1237 2 7818 2025-03-12 10:40:46.215 2025-03-12 10:40:46.215 434894 4487 434921 17526 1 7819 2025-03-12 11:49:58.105 2025-03-12 11:49:58.105 434898 21332 434995 919 2 7820 2025-03-12 10:51:41.63 2025-03-12 10:51:41.63 434898 21332 434933 10398 1 7821 2025-03-12 10:35:04.285 2025-03-12 10:35:04.285 434899 18525 434912 18423 1 7822 2025-03-12 10:36:57.061 2025-03-12 10:36:57.061 434899 18525 434913 9418 2 7823 2025-03-12 10:37:47.281 2025-03-12 10:37:47.281 434900 12291 434914 2961 1 7824 2025-03-12 11:49:58.105 2025-03-12 11:49:58.105 434933 10398 434995 919 1 7825 2025-03-21 18:45:25.885 2025-03-21 18:45:25.885 447085 21104 447284 17046 1 7826 2025-03-21 18:49:32.375 2025-03-21 18:49:32.375 447085 21104 447294 664 2 7827 2025-03-13 05:36:32.74 2025-03-13 05:36:32.74 434905 780 435930 17209 1 7828 2025-03-12 13:55:27.281 2025-03-12 13:55:27.281 434908 21539 435150 15196 2 7829 2025-03-12 13:40:19.498 2025-03-12 13:40:19.498 434908 21539 435130 4225 1 7830 2025-03-24 12:25:21.112 2025-03-24 12:25:21.112 451155 21356 451159 18449 2 7831 2025-03-24 12:26:59.021 2025-03-24 12:26:59.021 451155 21356 451164 8168 3 7832 2025-03-24 12:25:37.417 2025-03-24 12:25:37.417 451155 21356 451163 7913 2 7833 2025-03-24 12:23:24.011 2025-03-24 12:23:24.011 451155 21356 451157 10586 1 7834 2025-03-12 10:36:57.061 2025-03-12 10:36:57.061 434912 18423 434913 9418 1 7835 2025-03-12 10:51:05.44 2025-03-12 10:51:05.44 434916 20871 434932 21238 1 7836 2025-03-12 11:51:57.636 2025-03-12 11:51:57.636 434916 20871 434998 1959 3 7837 2025-03-12 12:59:32.429 2025-03-12 12:59:32.429 434916 20871 435084 21148 4 7838 2025-03-12 10:43:38.969 2025-03-12 10:43:38.969 434916 20871 434925 1195 1 7839 2025-03-12 10:44:10.913 2025-03-12 10:44:10.913 434916 20871 434926 15213 2 7840 2025-03-12 11:04:06.3 2025-03-12 11:04:06.3 434916 20871 434944 2757 2 7841 2025-03-12 15:02:06.859 2025-03-12 15:02:06.859 434916 20871 435259 16193 1 7842 2025-03-12 11:53:39.635 2025-03-12 11:53:39.635 434920 4487 435003 4692 1 7843 2025-03-12 10:41:48.664 2025-03-12 10:41:48.664 434921 17526 434923 1237 1 7844 2025-03-12 11:33:43.78 2025-03-12 11:33:43.78 434922 2431 434980 1817 1 7845 2025-03-12 11:56:16.348 2025-03-12 11:56:16.348 434922 2431 435009 880 1 7846 2025-03-12 10:47:39.712 2025-03-12 10:47:39.712 434928 19905 434929 13216 1 7847 2025-03-12 10:54:30.668 2025-03-12 10:54:30.668 434931 18528 434937 14278 1 7848 2025-03-12 12:05:00.479 2025-03-12 12:05:00.479 434931 18528 435020 1881 1 7849 2025-03-12 11:51:57.636 2025-03-12 11:51:57.636 434932 21238 434998 1959 2 7850 2025-03-12 12:59:32.429 2025-03-12 12:59:32.429 434932 21238 435084 21148 3 7851 2025-03-12 11:04:06.3 2025-03-12 11:04:06.3 434932 21238 434944 2757 1 7852 2025-03-12 11:18:35.76 2025-03-12 11:18:35.76 434934 12490 434961 5694 1 7853 2025-03-12 18:57:00.038 2025-03-12 18:57:00.038 434934 12490 435524 13547 1 7854 2025-03-12 12:49:06.417 2025-03-12 12:49:06.417 434953 20756 435076 8985 1 7855 2025-03-12 11:18:09.923 2025-03-12 11:18:09.923 434955 15510 434959 8570 1 7856 2025-03-24 13:09:38.484 2025-03-24 13:09:38.484 451229 21427 451236 16912 1 7857 2025-03-24 13:19:51.843 2025-03-24 13:19:51.843 451229 21427 451254 20710 2 7858 2025-03-24 13:28:06.705 2025-03-24 13:28:06.705 451241 9275 451280 17094 2 7859 2025-03-24 13:15:56.24 2025-03-24 13:15:56.24 451241 9275 451245 2519 1 7860 2025-03-12 11:55:42.868 2025-03-12 11:55:42.868 434968 7097 435008 20781 1 7861 2025-03-12 11:10:53.098 2025-03-12 11:10:53.098 434940 1136 434951 1650 1 7862 2025-03-12 11:51:57.636 2025-03-12 11:51:57.636 434944 2757 434998 1959 1 7863 2025-03-12 12:59:32.429 2025-03-12 12:59:32.429 434944 2757 435084 21148 2 7864 2025-03-12 15:36:05.99 2025-03-12 15:36:05.99 434954 3409 435317 8945 1 7865 2025-03-12 11:21:30.847 2025-03-12 11:21:30.847 434950 1803 434964 21269 1 7866 2025-03-12 11:18:10.047 2025-03-12 11:18:10.047 434957 11522 434960 897 1 7867 2025-03-12 13:11:51.005 2025-03-12 13:11:51.005 434957 11522 435099 21798 2 7868 2025-03-12 13:22:40.39 2025-03-12 13:22:40.39 434957 11522 435110 2195 1 7869 2025-03-12 19:07:17.314 2025-03-12 19:07:17.314 434957 11522 435539 21242 2 7870 2025-03-12 13:45:31.88 2025-03-12 13:45:31.88 434957 11522 435139 21797 1 7871 2025-03-12 13:10:28.928 2025-03-12 13:10:28.928 434958 1141 435096 11164 1 7872 2025-03-12 12:07:42.467 2025-03-12 12:07:42.467 434958 1141 435023 1007 1 7873 2025-03-12 13:58:07.407 2025-03-12 13:58:07.407 434958 1141 435155 19576 2 7874 2025-03-12 14:07:30.73 2025-03-12 14:07:30.73 434958 1141 435174 2309 3 7875 2025-03-12 13:11:51.005 2025-03-12 13:11:51.005 434960 897 435099 21798 1 7876 2025-03-12 14:34:50.07 2025-03-12 14:34:50.07 434962 2709 435216 20799 1 7877 2025-03-12 17:08:55.795 2025-03-12 17:08:55.795 434962 2709 435429 15326 2 7878 2025-03-12 12:20:13.678 2025-03-12 12:20:13.678 434962 2709 435038 20802 1 7879 2025-03-12 12:25:25.099 2025-03-12 12:25:25.099 434978 20019 435042 13327 1 7880 2025-03-12 14:02:39.635 2025-03-12 14:02:39.635 434978 20019 435159 9537 1 7881 2025-03-12 18:36:18.76 2025-03-12 18:36:18.76 434978 20019 435508 18005 1 7882 2025-03-12 12:33:34.082 2025-03-12 12:33:34.082 434978 20019 435050 21131 2 7883 2025-03-12 12:34:23.266 2025-03-12 12:34:23.266 434978 20019 435052 21279 2 7884 2025-03-12 12:40:54.047 2025-03-12 12:40:54.047 434990 19537 435061 9421 2 7885 2025-03-12 12:46:17.251 2025-03-12 12:46:17.251 434990 19537 435071 5865 3 7886 2025-03-13 00:52:00.596 2025-03-13 00:52:00.596 434990 19537 435781 21805 1 7887 2025-03-13 00:52:10.117 2025-03-13 00:52:10.117 434990 19537 435782 4345 1 7888 2025-03-12 11:53:04.594 2025-03-12 11:53:04.594 434990 19537 435000 654 1 7889 2025-03-12 11:54:27.503 2025-03-12 11:54:27.503 434990 19537 435004 20059 1 7890 2025-03-12 12:39:35.746 2025-03-12 12:39:35.746 434990 19537 435058 15367 1 7891 2025-03-12 12:18:06.458 2025-03-12 12:18:06.458 434991 1626 435037 1003 1 7892 2025-03-12 12:51:23.027 2025-03-12 12:51:23.027 434991 1626 435080 14465 2 7893 2025-03-12 16:13:46.63 2025-03-12 16:13:46.63 434994 848 435363 14663 1 7894 2025-03-12 14:16:20.132 2025-03-12 14:16:20.132 434997 9275 435192 739 1 7895 2025-03-12 12:59:32.429 2025-03-12 12:59:32.429 434998 1959 435084 21148 1 7896 2025-03-12 12:12:18.344 2025-03-12 12:12:18.344 434999 956 435031 1173 1 7897 2025-03-12 11:54:35.659 2025-03-12 11:54:35.659 435002 1785 435006 762 1 7898 2025-03-12 11:59:07.122 2025-03-12 11:59:07.122 435002 1785 435012 12965 2 7899 2025-03-12 12:05:36.258 2025-03-12 12:05:36.258 435002 1785 435021 17552 3 7900 2025-03-12 11:59:07.122 2025-03-12 11:59:07.122 435006 762 435012 12965 1 7901 2025-03-12 12:05:36.258 2025-03-12 12:05:36.258 435006 762 435021 17552 2 7902 2025-03-12 13:21:20.487 2025-03-12 13:21:20.487 435106 21021 435109 18494 1 7903 2025-03-12 15:41:39.947 2025-03-12 15:41:39.947 435194 12911 435325 16939 4 7904 2025-03-12 15:44:13.381 2025-03-12 15:44:13.381 435194 12911 435330 1769 5 7905 2025-03-12 17:15:06.024 2025-03-12 17:15:06.024 435194 12911 435434 14503 8 7906 2025-03-12 14:25:00.251 2025-03-12 14:25:00.251 435194 12911 435204 19292 1 7907 2025-03-12 14:46:49.887 2025-03-12 14:46:49.887 435194 12911 435239 2529 2 7908 2025-03-12 15:20:23.501 2025-03-12 15:20:23.501 435194 12911 435290 21172 3 7909 2025-03-12 15:46:51.711 2025-03-12 15:46:51.711 435194 12911 435337 21116 6 7910 2025-03-12 15:52:40.164 2025-03-12 15:52:40.164 435194 12911 435348 6191 7 7911 2025-03-12 12:05:36.258 2025-03-12 12:05:36.258 435012 12965 435021 17552 1 7912 2025-03-12 14:05:53.72 2025-03-12 14:05:53.72 435014 5308 435169 20816 1 7913 2025-03-12 12:10:32.676 2025-03-12 12:10:32.676 435017 16214 435027 9969 1 7914 2025-03-12 13:17:00.08 2025-03-12 13:17:00.08 435017 16214 435106 21021 1 7915 2025-03-12 13:21:20.487 2025-03-12 13:21:20.487 435017 16214 435109 18494 2 7916 2025-03-12 14:07:14.084 2025-03-12 14:07:14.084 435017 16214 435172 16684 1 7917 2025-03-12 13:05:04.904 2025-03-12 13:05:04.904 435018 17184 435092 10586 2 7918 2025-03-12 13:28:30.291 2025-03-12 13:28:30.291 435018 17184 435116 2961 1 7919 2025-03-12 12:22:01.707 2025-03-12 12:22:01.707 435018 17184 435040 1585 1 7920 2025-03-12 15:11:37.539 2025-03-12 15:11:37.539 435018 17184 435270 7877 2 7921 2025-03-12 12:38:35.388 2025-03-12 12:38:35.388 435019 15336 435057 2293 1 7922 2025-03-12 12:27:18.892 2025-03-12 12:27:18.892 435022 17184 435045 12965 1 7923 2025-03-12 12:29:11.484 2025-03-12 12:29:11.484 435022 17184 435047 9992 2 7924 2025-03-12 13:58:07.407 2025-03-12 13:58:07.407 435023 1007 435155 19576 1 7925 2025-03-12 14:07:30.73 2025-03-12 14:07:30.73 435023 1007 435174 2309 2 7926 2025-03-12 14:26:32.384 2025-03-12 14:26:32.384 435026 2156 435208 9426 1 7927 2025-03-12 14:09:12.438 2025-03-12 14:09:12.438 435030 13763 435178 8269 1 7928 2025-03-12 14:11:05.561 2025-03-12 14:11:05.561 435030 13763 435181 21067 1 7929 2025-03-12 14:21:41.694 2025-03-12 14:21:41.694 435030 13763 435198 7583 1 7930 2025-03-12 17:20:32.833 2025-03-12 17:20:32.833 435030 13763 435443 803 2 7931 2025-03-12 19:01:22.678 2025-03-12 19:01:22.678 435030 13763 435531 1394 1 7932 2025-03-12 19:03:52.662 2025-03-12 19:03:52.662 435030 13763 435536 6616 2 7933 2025-03-12 19:04:24.925 2025-03-12 19:04:24.925 435030 13763 435538 13517 2 7934 2025-03-12 19:26:37.469 2025-03-12 19:26:37.469 435030 13763 435552 15560 1 7935 2025-03-12 21:38:47.132 2025-03-12 21:38:47.132 435030 13763 435669 626 2 7936 2025-03-12 21:46:09.481 2025-03-12 21:46:09.481 435030 13763 435676 4802 2 7937 2025-03-13 04:42:04.093 2025-03-13 04:42:04.093 435030 13763 435899 4173 3 7938 2025-03-13 14:01:26.644 2025-03-13 14:01:26.644 435030 13763 436370 690 5 7939 2025-03-12 12:32:48.149 2025-03-12 12:32:48.149 435030 13763 435049 18923 1 7940 2025-03-12 13:01:34.14 2025-03-12 13:01:34.14 435030 13763 435086 18393 1 7941 2025-03-12 13:40:12.532 2025-03-12 13:40:12.532 435030 13763 435129 3396 1 7942 2025-03-12 13:46:55.063 2025-03-12 13:46:55.063 435030 13763 435141 6717 1 7943 2025-03-12 14:19:08.961 2025-03-12 14:19:08.961 435030 13763 435196 11220 2 7944 2025-03-12 14:30:15.996 2025-03-12 14:30:15.996 435030 13763 435210 5175 1 7945 2025-03-12 20:13:49.837 2025-03-12 20:13:49.837 435030 13763 435609 21620 1 7946 2025-03-12 23:26:21.095 2025-03-12 23:26:21.095 435030 13763 435748 7978 2 7947 2025-03-12 23:32:34.545 2025-03-12 23:32:34.545 435030 13763 435749 20133 2 7948 2025-03-12 23:40:29.753 2025-03-12 23:40:29.753 435030 13763 435750 12959 2 7949 2025-03-12 23:43:39.983 2025-03-12 23:43:39.983 435030 13763 435753 6717 3 7950 2025-03-13 01:47:57.262 2025-03-13 01:47:57.262 435030 13763 435815 18309 2 7951 2025-03-13 04:41:20.68 2025-03-13 04:41:20.68 435030 13763 435898 3544 3 7952 2025-03-13 11:51:27.233 2025-03-13 11:51:27.233 435030 13763 436223 8729 4 7953 2025-03-13 12:05:04.927 2025-03-13 12:05:04.927 435030 13763 436232 20120 4 7954 2025-03-13 12:50:37.848 2025-03-13 12:50:37.848 435030 13763 436283 11862 5 7955 2025-03-13 15:25:10.429 2025-03-13 15:25:10.429 435030 13763 436479 9348 6 7956 2025-03-12 12:51:23.027 2025-03-12 12:51:23.027 435037 1003 435080 14465 1 7957 2025-03-12 13:05:04.904 2025-03-12 13:05:04.904 435040 1585 435092 10586 1 7958 2025-03-12 12:33:34.082 2025-03-12 12:33:34.082 435042 13327 435050 21131 1 7959 2025-03-12 12:34:23.266 2025-03-12 12:34:23.266 435042 13327 435052 21279 1 7960 2025-03-12 14:51:18.227 2025-03-12 14:51:18.227 435044 3506 435245 6717 1 7961 2025-03-12 12:29:11.484 2025-03-12 12:29:11.484 435045 12965 435047 9992 1 7962 2025-03-12 13:15:56.441 2025-03-12 13:15:56.441 435051 4459 435104 1162 1 7963 2025-03-12 12:51:26.652 2025-03-12 12:51:26.652 435053 11164 435081 18930 1 7964 2025-03-12 12:49:39.052 2025-03-12 12:49:39.052 435053 11164 435077 9159 1 7965 2025-03-12 12:40:51.553 2025-03-12 12:40:51.553 435054 14404 435060 10493 1 7966 2025-03-12 12:46:17.251 2025-03-12 12:46:17.251 435061 9421 435071 5865 1 7967 2025-03-13 14:32:21.754 2025-03-13 14:32:21.754 435067 1729 436403 20577 1 7968 2025-03-12 13:05:00.418 2025-03-12 13:05:00.418 435078 12422 435091 16571 1 7969 2025-03-12 13:16:49.467 2025-03-12 13:16:49.467 435078 12422 435105 18423 2 7970 2025-03-12 13:18:17.123 2025-03-12 13:18:17.123 435078 12422 435107 1051 3 7971 2025-03-12 13:18:57.325 2025-03-12 13:18:57.325 435078 12422 435108 16301 3 7972 2025-03-12 13:03:03.065 2025-03-12 13:03:03.065 435078 12422 435087 5746 1 7973 2025-03-12 13:15:39.002 2025-03-12 13:15:39.002 435078 12422 435102 7654 2 7974 2025-03-12 13:15:48.343 2025-03-12 13:15:48.343 435078 12422 435103 21578 2 7975 2025-03-12 13:37:51.204 2025-03-12 13:37:51.204 435059 20980 435124 8505 1 7976 2025-03-12 23:55:14.453 2025-03-12 23:55:14.453 435059 20980 435759 17221 2 7977 2025-03-13 00:23:53.122 2025-03-13 00:23:53.122 435059 20980 435768 20691 3 7978 2025-03-13 01:55:59.127 2025-03-13 01:55:59.127 435059 20980 435821 2342 4 7979 2025-03-12 17:34:34.793 2025-03-12 17:34:34.793 435063 17411 435456 17673 2 7980 2025-03-12 17:26:54.782 2025-03-12 17:26:54.782 435063 17411 435447 20969 1 7981 2025-03-12 13:04:51.463 2025-03-12 13:04:51.463 435064 20019 435090 11992 1 7982 2025-03-12 13:09:04.639 2025-03-12 13:09:04.639 435065 20023 435095 21064 1 7983 2025-03-12 13:11:02.639 2025-03-12 13:11:02.639 435065 20023 435097 21701 2 7984 2025-03-12 12:50:30.884 2025-03-12 12:50:30.884 435073 15326 435078 12422 1 7985 2025-03-12 13:05:00.418 2025-03-12 13:05:00.418 435073 15326 435091 16571 2 7986 2025-03-12 13:16:49.467 2025-03-12 13:16:49.467 435073 15326 435105 18423 3 7987 2025-03-12 13:18:17.123 2025-03-12 13:18:17.123 435073 15326 435107 1051 4 7988 2025-03-12 13:18:57.325 2025-03-12 13:18:57.325 435073 15326 435108 16301 4 7989 2025-03-12 13:03:03.065 2025-03-12 13:03:03.065 435073 15326 435087 5746 2 7990 2025-03-12 13:15:39.002 2025-03-12 13:15:39.002 435073 15326 435102 7654 3 7991 2025-03-12 13:15:48.343 2025-03-12 13:15:48.343 435073 15326 435103 21578 3 7992 2025-03-12 17:20:32.833 2025-03-12 17:20:32.833 435086 18393 435443 803 1 7993 2025-03-12 14:19:08.961 2025-03-12 14:19:08.961 435086 18393 435196 11220 1 7994 2025-03-12 13:18:17.123 2025-03-12 13:18:17.123 435087 5746 435107 1051 2 7995 2025-03-12 13:15:39.002 2025-03-12 13:15:39.002 435087 5746 435102 7654 1 7996 2025-03-12 13:16:49.467 2025-03-12 13:16:49.467 435091 16571 435105 18423 1 7997 2025-03-12 13:18:57.325 2025-03-12 13:18:57.325 435091 16571 435108 16301 2 7998 2025-03-12 13:15:48.343 2025-03-12 13:15:48.343 435091 16571 435103 21578 1 7999 2025-03-13 02:54:51.952 2025-03-13 02:54:51.952 435098 21239 435844 13249 1 8000 2025-03-12 19:38:41.032 2025-03-12 19:38:41.032 435122 18441 435566 3656 2 8001 2025-03-12 13:41:00.6 2025-03-12 13:41:00.6 435122 18441 435131 10007 1 8002 2025-03-12 19:39:02.981 2025-03-12 19:39:02.981 435122 18441 435567 16970 3 8003 2025-03-12 13:18:17.123 2025-03-12 13:18:17.123 435102 7654 435107 1051 1 8004 2025-03-12 13:18:57.325 2025-03-12 13:18:57.325 435105 18423 435108 16301 1 8005 2025-03-12 19:07:17.314 2025-03-12 19:07:17.314 435110 2195 435539 21242 1 8006 2025-03-12 13:37:16.298 2025-03-12 13:37:16.298 435115 11263 435123 11714 1 8007 2025-03-12 14:54:03.679 2025-03-12 14:54:03.679 435115 11263 435249 628 3 8008 2025-03-12 15:11:34.742 2025-03-12 15:11:34.742 435115 11263 435269 21019 5 8009 2025-03-12 13:42:14.071 2025-03-12 13:42:14.071 435115 11263 435133 20755 1 8010 2025-03-12 14:50:31.539 2025-03-12 14:50:31.539 435115 11263 435244 21021 2 8011 2025-03-12 14:58:55.295 2025-03-12 14:58:55.295 435115 11263 435253 2718 4 8012 2025-03-12 15:17:05.118 2025-03-12 15:17:05.118 435115 11263 435281 15100 6 8013 2025-03-12 15:11:37.539 2025-03-12 15:11:37.539 435116 2961 435270 7877 1 8014 2025-03-12 20:45:42.658 2025-03-12 20:45:42.658 435117 16301 435636 1705 1 8015 2025-03-12 13:44:49.825 2025-03-12 13:44:49.825 435119 6030 435137 2203 1 8016 2025-03-12 14:09:02.635 2025-03-12 14:09:02.635 435120 622 435177 997 1 8017 2025-03-13 05:42:03.253 2025-03-13 05:42:03.253 435120 622 435934 10013 1 8018 2025-03-12 18:26:00.669 2025-03-12 18:26:00.669 435120 622 435492 20655 1 8019 2025-03-12 21:25:12.053 2025-03-12 21:25:12.053 435120 622 435666 6335 1 8020 2025-03-13 11:34:03.676 2025-03-13 11:34:03.676 435120 622 436199 3544 2 8021 2025-03-12 23:55:14.453 2025-03-12 23:55:14.453 435124 8505 435759 17221 1 8022 2025-03-13 00:23:53.122 2025-03-13 00:23:53.122 435124 8505 435768 20691 2 8023 2025-03-13 01:55:59.127 2025-03-13 01:55:59.127 435124 8505 435821 2342 3 8024 2025-03-12 16:26:27.308 2025-03-12 16:26:27.308 435368 993 435373 9352 1 8025 2025-03-12 16:37:29.747 2025-03-12 16:37:29.747 435368 993 435386 12808 2 8026 2025-03-13 05:37:23.807 2025-03-13 05:37:23.807 435125 12959 435931 20586 1 8027 2025-03-12 13:51:04.371 2025-03-12 13:51:04.371 435125 12959 435146 16695 1 8028 2025-03-13 18:28:48.362 2025-03-13 18:28:48.362 436632 6260 436637 3990 1 8029 2025-03-12 13:50:23.627 2025-03-12 13:50:23.627 435127 21042 435145 1469 1 8030 2025-03-12 16:25:51.839 2025-03-12 16:25:51.839 435127 21042 435372 18231 2 8031 2025-03-12 19:19:53.964 2025-03-12 19:19:53.964 435127 21042 435548 16948 1 8032 2025-03-12 20:08:27.36 2025-03-12 20:08:27.36 435127 21042 435604 2285 2 8033 2025-03-12 14:18:26.613 2025-03-12 14:18:26.613 435179 640 435194 12911 1 8034 2025-03-12 15:41:39.947 2025-03-12 15:41:39.947 435179 640 435325 16939 5 8035 2025-03-12 15:44:13.381 2025-03-12 15:44:13.381 435179 640 435330 1769 6 8036 2025-03-12 17:15:06.024 2025-03-12 17:15:06.024 435179 640 435434 14503 9 8037 2025-03-12 14:25:00.251 2025-03-12 14:25:00.251 435179 640 435204 19292 2 8038 2025-03-12 14:46:49.887 2025-03-12 14:46:49.887 435179 640 435239 2529 3 8039 2025-03-12 15:20:23.501 2025-03-12 15:20:23.501 435179 640 435290 21172 4 8040 2025-03-12 15:46:51.711 2025-03-12 15:46:51.711 435179 640 435337 21116 7 8041 2025-03-12 15:52:40.164 2025-03-12 15:52:40.164 435179 640 435348 6191 8 8042 2025-03-12 17:08:40.771 2025-03-12 17:08:40.771 435128 12562 435428 18219 3 8043 2025-03-12 16:53:10.759 2025-03-12 16:53:10.759 435128 12562 435407 16965 2 8044 2025-03-12 13:45:22.735 2025-03-12 13:45:22.735 435128 12562 435138 16788 1 8045 2025-03-12 19:04:24.925 2025-03-12 19:04:24.925 435129 3396 435538 13517 1 8046 2025-03-12 13:55:27.281 2025-03-12 13:55:27.281 435130 4225 435150 15196 1 8047 2025-03-12 19:38:41.032 2025-03-12 19:38:41.032 435131 10007 435566 3656 1 8048 2025-03-12 19:39:02.981 2025-03-12 19:39:02.981 435131 10007 435567 16970 2 8049 2025-03-12 13:53:16.566 2025-03-12 13:53:16.566 435132 12334 435149 4166 1 8050 2025-03-12 14:16:08.627 2025-03-12 14:16:08.627 435132 12334 435189 18068 2 8051 2025-03-12 17:24:49.894 2025-03-12 17:24:49.894 435132 12334 435445 681 1 8052 2025-03-13 00:05:49.002 2025-03-13 00:05:49.002 435132 12334 435763 19980 3 8053 2025-03-12 17:27:02.962 2025-03-12 17:27:02.962 435132 12334 435448 10591 2 8054 2025-03-12 14:54:03.679 2025-03-12 14:54:03.679 435133 20755 435249 628 2 8055 2025-03-12 15:11:34.742 2025-03-12 15:11:34.742 435133 20755 435269 21019 4 8056 2025-03-12 14:50:31.539 2025-03-12 14:50:31.539 435133 20755 435244 21021 1 8057 2025-03-12 14:58:55.295 2025-03-12 14:58:55.295 435133 20755 435253 2718 3 8058 2025-03-12 15:17:05.118 2025-03-12 15:17:05.118 435133 20755 435281 15100 5 8059 2025-03-12 14:23:12.036 2025-03-12 14:23:12.036 435135 9183 435200 760 2 8060 2025-03-12 14:32:06.56 2025-03-12 14:32:06.56 435135 9183 435212 1044 3 8061 2025-03-12 14:33:00.592 2025-03-12 14:33:00.592 435135 9183 435214 9985 2 8062 2025-03-12 14:42:34.831 2025-03-12 14:42:34.831 435135 9183 435230 15526 4 8063 2025-03-12 14:44:03.932 2025-03-12 14:44:03.932 435135 9183 435235 20817 4 8064 2025-03-12 14:46:47.587 2025-03-12 14:46:47.587 435135 9183 435238 11450 5 8065 2025-03-12 14:59:12.345 2025-03-12 14:59:12.345 435135 9183 435254 21647 5 8066 2025-03-12 21:11:26.097 2025-03-12 21:11:26.097 435135 9183 435652 2961 6 8067 2025-03-12 21:12:44.588 2025-03-12 21:12:44.588 435135 9183 435654 19117 7 8068 2025-03-12 14:03:05.551 2025-03-12 14:03:05.551 435135 9183 435162 15139 1 8069 2025-03-12 14:37:05.066 2025-03-12 14:37:05.066 435135 9183 435220 9426 3 8070 2025-03-12 15:00:33.053 2025-03-12 15:00:33.053 435135 9183 435256 977 6 8071 2025-03-12 14:37:27.974 2025-03-12 14:37:27.974 435135 9183 435221 21148 3 8072 2025-03-12 15:21:34.22 2025-03-12 15:21:34.22 435135 9183 435292 9517 1 8073 2025-03-12 21:08:09.876 2025-03-12 21:08:09.876 435135 9183 435649 1803 5 8074 2025-03-12 21:47:03.418 2025-03-12 21:47:03.418 435135 9183 435678 8289 8 8075 2025-03-12 21:50:46.528 2025-03-12 21:50:46.528 435135 9183 435684 7979 6 8076 2025-03-13 13:43:40.206 2025-03-13 13:43:40.206 435135 9183 436346 5725 6 8077 2025-03-12 14:42:58.577 2025-03-12 14:42:58.577 435135 9183 435232 6191 4 8078 2025-03-12 14:43:34.612 2025-03-12 14:43:34.612 435135 9183 435233 16309 4 8079 2025-03-12 15:23:51.312 2025-03-12 15:23:51.312 435135 9183 435297 21710 2 8080 2025-03-12 15:28:02.597 2025-03-12 15:28:02.597 435135 9183 435305 17533 3 8081 2025-03-12 18:57:54.929 2025-03-12 18:57:54.929 435135 9183 435526 13038 3 8082 2025-03-12 19:16:52.042 2025-03-12 19:16:52.042 435135 9183 435545 17519 3 8083 2025-03-12 19:27:57.323 2025-03-12 19:27:57.323 435135 9183 435555 20734 6 8084 2025-03-12 23:48:25.477 2025-03-12 23:48:25.477 435135 9183 435756 725 3 8085 2025-03-13 14:04:45.03 2025-03-13 14:04:45.03 435135 9183 436373 16830 5 8086 2025-03-13 14:09:20.402 2025-03-13 14:09:20.402 435135 9183 436380 4287 6 8087 2025-03-13 15:21:25.244 2025-03-13 15:21:25.244 435135 9183 436467 7760 6 8088 2025-03-13 15:32:41.733 2025-03-13 15:32:41.733 435135 9183 436492 899 6 8089 2025-03-12 15:27:29.318 2025-03-12 15:27:29.318 435135 9183 435303 760 2 8090 2025-03-13 02:43:54.245 2025-03-13 02:43:54.245 435135 9183 435838 638 5 8091 2025-03-12 18:32:07.371 2025-03-12 18:32:07.371 435135 9183 435504 21547 2 8092 2025-03-12 19:19:04.088 2025-03-12 19:19:04.088 435135 9183 435547 4079 4 8093 2025-03-12 19:26:42.536 2025-03-12 19:26:42.536 435135 9183 435553 993 5 8094 2025-03-13 13:45:57.619 2025-03-13 13:45:57.619 435135 9183 436349 18269 4 8095 2025-03-12 14:03:52.749 2025-03-12 14:03:52.749 435136 15556 435163 12819 1 8096 2025-03-12 14:15:49.147 2025-03-12 14:15:49.147 435136 15556 435188 18426 1 8097 2025-03-12 14:16:14.659 2025-03-12 14:16:14.659 435136 15556 435191 848 2 8098 2025-03-12 17:39:21.721 2025-03-12 17:39:21.721 435136 15556 435463 9655 1 8099 2025-03-12 14:46:43.496 2025-03-12 14:46:43.496 435136 15556 435237 10586 1 8100 2025-03-12 17:38:49.278 2025-03-12 17:38:49.278 435136 15556 435462 21514 2 8101 2025-03-12 17:08:40.771 2025-03-12 17:08:40.771 435138 16788 435428 18219 2 8102 2025-03-12 16:53:10.759 2025-03-12 16:53:10.759 435138 16788 435407 16965 1 8103 2025-03-12 16:37:29.747 2025-03-12 16:37:29.747 435373 9352 435386 12808 1 8104 2025-03-12 21:38:47.132 2025-03-12 21:38:47.132 435141 6717 435669 626 1 8105 2025-03-13 04:42:04.093 2025-03-13 04:42:04.093 435141 6717 435899 4173 2 8106 2025-03-13 14:01:26.644 2025-03-13 14:01:26.644 435141 6717 436370 690 4 8107 2025-03-12 23:32:34.545 2025-03-12 23:32:34.545 435141 6717 435749 20133 1 8108 2025-03-13 01:47:57.262 2025-03-13 01:47:57.262 435141 6717 435815 18309 1 8109 2025-03-13 04:41:20.68 2025-03-13 04:41:20.68 435141 6717 435898 3544 2 8110 2025-03-13 11:51:27.233 2025-03-13 11:51:27.233 435141 6717 436223 8729 3 8111 2025-03-13 12:05:04.927 2025-03-13 12:05:04.927 435141 6717 436232 20120 3 8112 2025-03-13 12:50:37.848 2025-03-13 12:50:37.848 435141 6717 436283 11862 4 8113 2025-03-13 15:25:10.429 2025-03-13 15:25:10.429 435141 6717 436479 9348 5 8114 2025-03-12 14:07:28.255 2025-03-12 14:07:28.255 435142 21555 435173 21709 2 8115 2025-03-12 13:56:09.868 2025-03-12 13:56:09.868 435142 21555 435153 986 1 8116 2025-03-12 14:52:54.475 2025-03-12 14:52:54.475 435142 21555 435248 760 1 8117 2025-03-15 04:02:25.853 2025-03-15 04:02:25.853 435142 21555 437968 1596 1 8118 2025-03-12 14:03:56.537 2025-03-12 14:03:56.537 435142 21555 435164 15843 1 8119 2025-03-19 07:51:33.294 2025-03-19 07:51:33.294 435142 21555 443247 18615 2 8120 2025-03-12 16:25:51.839 2025-03-12 16:25:51.839 435145 1469 435372 18231 1 8121 2025-03-12 15:21:53.533 2025-03-12 15:21:53.533 435147 5359 435294 1836 1 8122 2025-03-12 15:27:46.299 2025-03-12 15:27:46.299 435147 5359 435304 20220 2 8123 2025-03-12 14:16:08.627 2025-03-12 14:16:08.627 435149 4166 435189 18068 1 8124 2025-03-13 00:05:49.002 2025-03-13 00:05:49.002 435149 4166 435763 19980 2 8125 2025-03-12 14:02:11.102 2025-03-12 14:02:11.102 435151 21033 435158 16267 1 8126 2025-03-12 14:40:30.293 2025-03-12 14:40:30.293 435151 21033 435225 17984 1 8127 2025-03-12 19:02:52.615 2025-03-12 19:02:52.615 435151 21033 435533 21042 1 8128 2025-03-13 00:51:48.592 2025-03-13 00:51:48.592 435151 21033 435779 940 1 8129 2025-03-12 14:04:58.197 2025-03-12 14:04:58.197 435151 21033 435168 16876 1 8130 2025-03-12 14:10:42.922 2025-03-12 14:10:42.922 435152 688 435180 16839 1 8131 2025-03-12 14:11:33.225 2025-03-12 14:11:33.225 435154 16289 435183 12935 1 8132 2025-03-12 14:15:24.127 2025-03-12 14:15:24.127 435154 16289 435187 11378 1 8133 2025-03-12 14:16:10.872 2025-03-12 14:16:10.872 435154 16289 435190 21332 2 8134 2025-03-12 14:18:39.855 2025-03-12 14:18:39.855 435154 16289 435195 13544 1 8135 2025-03-12 14:25:20.453 2025-03-12 14:25:20.453 435154 16289 435206 17147 2 8136 2025-03-12 14:43:51.972 2025-03-12 14:43:51.972 435154 16289 435234 11165 3 8137 2025-03-12 15:20:02.878 2025-03-12 15:20:02.878 435154 16289 435287 8498 1 8138 2025-03-12 19:35:49.673 2025-03-12 19:35:49.673 435154 16289 435563 9354 3 8139 2025-03-12 22:49:02.013 2025-03-12 22:49:02.013 435154 16289 435731 18116 2 8140 2025-03-13 05:27:40.164 2025-03-13 05:27:40.164 435154 16289 435919 21014 1 8141 2025-03-12 14:38:59.969 2025-03-12 14:38:59.969 435154 16289 435222 17984 2 8142 2025-03-12 15:20:16.591 2025-03-12 15:20:16.591 435154 16289 435288 4502 1 8143 2025-03-12 15:24:44.863 2025-03-12 15:24:44.863 435154 16289 435298 1488 2 8144 2025-03-12 15:26:28.948 2025-03-12 15:26:28.948 435154 16289 435301 11165 2 8145 2025-03-12 15:47:08.549 2025-03-12 15:47:08.549 435154 16289 435338 12346 1 8146 2025-03-12 16:34:06.02 2025-03-12 16:34:06.02 435154 16289 435380 13865 1 8147 2025-03-12 17:15:40.03 2025-03-12 17:15:40.03 435154 16289 435436 20222 2 8148 2025-03-12 22:40:30.14 2025-03-12 22:40:30.14 435154 16289 435724 10311 2 8149 2025-03-15 01:26:16.879 2025-03-15 01:26:16.879 435154 16289 437924 7913 2 8150 2025-03-12 15:32:10.605 2025-03-12 15:32:10.605 435154 16289 435307 4128 3 8151 2025-03-12 14:07:30.73 2025-03-12 14:07:30.73 435155 19576 435174 2309 1 8152 2025-03-12 15:01:03.349 2025-03-12 15:01:03.349 435156 15484 435258 1060 1 8153 2025-03-12 14:23:12.036 2025-03-12 14:23:12.036 435162 15139 435200 760 1 8154 2025-03-12 14:32:06.56 2025-03-12 14:32:06.56 435162 15139 435212 1044 2 8155 2025-03-12 14:33:00.592 2025-03-12 14:33:00.592 435162 15139 435214 9985 1 8156 2025-03-12 14:42:34.831 2025-03-12 14:42:34.831 435162 15139 435230 15526 3 8157 2025-03-12 14:44:03.932 2025-03-12 14:44:03.932 435162 15139 435235 20817 3 8158 2025-03-12 14:46:47.587 2025-03-12 14:46:47.587 435162 15139 435238 11450 4 8159 2025-03-12 14:59:12.345 2025-03-12 14:59:12.345 435162 15139 435254 21647 4 8160 2025-03-12 21:11:26.097 2025-03-12 21:11:26.097 435162 15139 435652 2961 5 8161 2025-03-12 21:12:44.588 2025-03-12 21:12:44.588 435162 15139 435654 19117 6 8162 2025-03-12 14:42:58.577 2025-03-12 14:42:58.577 435162 15139 435232 6191 3 8163 2025-03-12 14:43:34.612 2025-03-12 14:43:34.612 435162 15139 435233 16309 3 8164 2025-03-12 14:37:05.066 2025-03-12 14:37:05.066 435162 15139 435220 9426 2 8165 2025-03-12 15:00:33.053 2025-03-12 15:00:33.053 435162 15139 435256 977 5 8166 2025-03-12 14:37:27.974 2025-03-12 14:37:27.974 435162 15139 435221 21148 2 8167 2025-03-12 21:08:09.876 2025-03-12 21:08:09.876 435162 15139 435649 1803 4 8168 2025-03-12 21:47:03.418 2025-03-12 21:47:03.418 435162 15139 435678 8289 7 8169 2025-03-12 21:50:46.528 2025-03-12 21:50:46.528 435162 15139 435684 7979 5 8170 2025-03-13 13:43:40.206 2025-03-13 13:43:40.206 435162 15139 436346 5725 5 8171 2025-03-12 14:16:14.659 2025-03-12 14:16:14.659 435163 12819 435191 848 1 8172 2025-03-12 14:31:35.966 2025-03-12 14:31:35.966 435165 1454 435211 6594 1 8173 2025-03-12 14:04:34.64 2025-03-12 14:04:34.64 435165 1454 435166 7125 1 8174 2025-03-12 14:06:42.185 2025-03-12 14:06:42.185 435167 21805 435170 13467 1 8175 2025-03-12 15:16:07.822 2025-03-12 15:16:07.822 435167 21805 435279 11328 1 8176 2025-03-12 23:40:29.753 2025-03-12 23:40:29.753 435181 21067 435750 12959 1 8177 2025-03-12 14:16:10.872 2025-03-12 14:16:10.872 435183 12935 435190 21332 1 8178 2025-03-12 14:43:51.972 2025-03-12 14:43:51.972 435183 12935 435234 11165 2 8179 2025-03-12 14:38:59.969 2025-03-12 14:38:59.969 435183 12935 435222 17984 1 8180 2025-03-12 22:49:02.013 2025-03-12 22:49:02.013 435187 11378 435731 18116 1 8181 2025-03-12 22:40:30.14 2025-03-12 22:40:30.14 435187 11378 435724 10311 1 8182 2025-03-13 00:05:49.002 2025-03-13 00:05:49.002 435189 18068 435763 19980 1 8183 2025-03-12 14:25:20.453 2025-03-12 14:25:20.453 435195 13544 435206 17147 1 8184 2025-03-12 14:32:06.56 2025-03-12 14:32:06.56 435200 760 435212 1044 1 8185 2025-03-12 14:42:34.831 2025-03-12 14:42:34.831 435200 760 435230 15526 2 8186 2025-03-12 17:08:29.827 2025-03-12 17:08:29.827 435209 9845 435427 18727 2 8187 2025-03-14 16:22:35.104 2025-03-14 16:22:35.104 435209 9845 437569 1584 4 8188 2025-03-14 16:28:28.355 2025-03-14 16:28:28.355 435209 9845 437577 17838 5 8189 2025-03-12 14:33:22.904 2025-03-12 14:33:22.904 435209 9845 435215 1039 1 8190 2025-03-12 18:30:53.904 2025-03-12 18:30:53.904 435209 9845 435502 10016 3 8191 2025-03-12 19:03:52.662 2025-03-12 19:03:52.662 435210 5175 435536 6616 1 8192 2025-03-12 14:42:34.831 2025-03-12 14:42:34.831 435212 1044 435230 15526 1 8193 2025-03-12 14:35:57.558 2025-03-12 14:35:57.558 435213 16042 435219 1549 1 8194 2025-03-12 14:44:03.932 2025-03-12 14:44:03.932 435214 9985 435235 20817 2 8195 2025-03-12 14:46:47.587 2025-03-12 14:46:47.587 435214 9985 435238 11450 3 8196 2025-03-12 14:59:12.345 2025-03-12 14:59:12.345 435214 9985 435254 21647 3 8197 2025-03-12 21:11:26.097 2025-03-12 21:11:26.097 435214 9985 435652 2961 4 8198 2025-03-12 21:12:44.588 2025-03-12 21:12:44.588 435214 9985 435654 19117 5 8199 2025-03-12 14:42:58.577 2025-03-12 14:42:58.577 435214 9985 435232 6191 2 8200 2025-03-12 14:43:34.612 2025-03-12 14:43:34.612 435214 9985 435233 16309 2 8201 2025-03-12 14:37:05.066 2025-03-12 14:37:05.066 435214 9985 435220 9426 1 8202 2025-03-12 15:00:33.053 2025-03-12 15:00:33.053 435214 9985 435256 977 4 8203 2025-03-12 14:37:27.974 2025-03-12 14:37:27.974 435214 9985 435221 21148 1 8204 2025-03-12 21:08:09.876 2025-03-12 21:08:09.876 435214 9985 435649 1803 3 8205 2025-03-12 21:47:03.418 2025-03-12 21:47:03.418 435214 9985 435678 8289 6 8206 2025-03-12 21:50:46.528 2025-03-12 21:50:46.528 435214 9985 435684 7979 4 8207 2025-03-13 13:43:40.206 2025-03-13 13:43:40.206 435214 9985 436346 5725 4 8208 2025-03-12 17:08:29.827 2025-03-12 17:08:29.827 435215 1039 435427 18727 1 8209 2025-03-14 16:22:35.104 2025-03-14 16:22:35.104 435215 1039 437569 1584 3 8210 2025-03-14 16:28:28.355 2025-03-14 16:28:28.355 435215 1039 437577 17838 4 8211 2025-03-12 18:30:53.904 2025-03-12 18:30:53.904 435215 1039 435502 10016 2 8212 2025-03-12 17:52:17.38 2025-03-12 17:52:17.38 435217 19087 435471 4654 1 8213 2025-03-12 18:00:46.123 2025-03-12 18:00:46.123 435217 19087 435476 16789 3 8214 2025-03-12 18:14:33.695 2025-03-12 18:14:33.695 435217 19087 435483 20433 1 8215 2025-03-12 19:03:02.285 2025-03-12 19:03:02.285 435217 19087 435534 20353 1 8216 2025-03-12 20:01:37.757 2025-03-12 20:01:37.757 435217 19087 435593 21070 1 8217 2025-03-12 20:04:04.167 2025-03-12 20:04:04.167 435217 19087 435598 21518 3 8218 2025-03-13 03:50:26.205 2025-03-13 03:50:26.205 435217 19087 435874 9426 1 8219 2025-03-13 06:03:43.802 2025-03-13 06:03:43.802 435217 19087 435941 5728 1 8220 2025-03-13 14:54:53.366 2025-03-13 14:54:53.366 435217 19087 436427 20871 1 8221 2025-03-13 15:03:12.681 2025-03-13 15:03:12.681 435217 19087 436437 9169 1 8222 2025-03-13 15:06:12.973 2025-03-13 15:06:12.973 435217 19087 436446 5293 2 8223 2025-03-12 14:47:05.754 2025-03-12 14:47:05.754 435217 19087 435240 21014 1 8224 2025-03-12 15:03:55.98 2025-03-12 15:03:55.98 435217 19087 435260 2195 2 8225 2025-03-13 15:42:48.366 2025-03-13 15:42:48.366 435217 19087 436505 1713 3 8226 2025-03-12 14:47:35.441 2025-03-12 14:47:35.441 435217 19087 435241 1713 1 8227 2025-03-12 15:00:53.484 2025-03-12 15:00:53.484 435217 19087 435257 1800 1 8228 2025-03-12 15:23:43.727 2025-03-12 15:23:43.727 435217 19087 435295 660 3 8229 2025-03-12 15:14:11.084 2025-03-12 15:14:11.084 435217 19087 435275 17494 1 8230 2025-03-12 15:39:29.959 2025-03-12 15:39:29.959 435217 19087 435321 717 4 8231 2025-03-12 15:47:30.917 2025-03-12 15:47:30.917 435217 19087 435339 7772 1 8232 2025-03-12 15:49:17.483 2025-03-12 15:49:17.483 435217 19087 435346 3371 1 8233 2025-03-12 16:08:54.938 2025-03-12 16:08:54.938 435217 19087 435356 21814 2 8234 2025-03-12 15:59:29.077 2025-03-12 15:59:29.077 435217 19087 435352 716 3 8235 2025-03-12 16:02:30.939 2025-03-12 16:02:30.939 435217 19087 435353 6594 4 8236 2025-03-12 16:09:43.743 2025-03-12 16:09:43.743 435217 19087 435358 21734 4 8237 2025-03-12 16:30:56.426 2025-03-12 16:30:56.426 435217 19087 435377 1012 1 8238 2025-03-12 17:15:53.128 2025-03-12 17:15:53.128 435217 19087 435438 5293 4 8239 2025-03-12 19:31:52.33 2025-03-12 19:31:52.33 435217 19087 435559 18017 6 8240 2025-03-12 19:02:41.395 2025-03-12 19:02:41.395 435217 19087 435532 17095 2 8241 2025-03-12 19:28:28.283 2025-03-12 19:28:28.283 435217 19087 435556 21405 5 8242 2025-03-12 19:30:40.124 2025-03-12 19:30:40.124 435217 19087 435558 21523 5 8243 2025-03-12 19:38:08.391 2025-03-12 19:38:08.391 435217 19087 435565 19888 5 8244 2025-03-12 19:39:16.769 2025-03-12 19:39:16.769 435217 19087 435568 13987 7 8245 2025-03-12 19:40:08.2 2025-03-12 19:40:08.2 435217 19087 435570 8954 6 8246 2025-03-12 19:42:19.177 2025-03-12 19:42:19.177 435217 19087 435572 11073 8 8247 2025-03-12 19:56:01.269 2025-03-12 19:56:01.269 435217 19087 435584 4538 9 8248 2025-03-12 23:58:20.027 2025-03-12 23:58:20.027 435217 19087 435762 9355 6 8249 2025-03-12 17:53:28.874 2025-03-12 17:53:28.874 435217 19087 435472 20525 2 8250 2025-03-12 15:15:36.03 2025-03-12 15:15:36.03 435217 19087 435277 21166 2 8251 2025-03-12 15:45:03.715 2025-03-12 15:45:03.715 435217 19087 435334 659 5 8252 2025-03-12 15:58:32.849 2025-03-12 15:58:32.849 435217 19087 435350 8059 1 8253 2025-03-12 16:41:45.126 2025-03-12 16:41:45.126 435217 19087 435391 21119 1 8254 2025-03-12 17:08:21.231 2025-03-12 17:08:21.231 435217 19087 435425 919 4 8255 2025-03-12 17:10:54.225 2025-03-12 17:10:54.225 435217 19087 435431 17592 2 8256 2025-03-12 17:32:14.269 2025-03-12 17:32:14.269 435217 19087 435453 10661 1 8257 2025-03-12 18:31:33.048 2025-03-12 18:31:33.048 435217 19087 435503 20669 5 8258 2025-03-12 19:08:53.714 2025-03-12 19:08:53.714 435217 19087 435541 9348 1 8259 2025-03-12 19:10:34.44 2025-03-12 19:10:34.44 435217 19087 435542 9352 2 8260 2025-03-12 19:34:08.201 2025-03-12 19:34:08.201 435217 19087 435561 17030 2 8261 2025-03-12 20:02:47.397 2025-03-12 20:02:47.397 435217 19087 435594 13767 8 8262 2025-03-12 19:39:24.942 2025-03-12 19:39:24.942 435217 19087 435569 16126 1 8263 2025-03-12 19:43:40.652 2025-03-12 19:43:40.652 435217 19087 435573 21136 7 8264 2025-03-12 20:05:32.956 2025-03-12 20:05:32.956 435217 19087 435600 13921 4 8265 2025-03-12 20:06:22.057 2025-03-12 20:06:22.057 435217 19087 435603 17690 1 8266 2025-03-12 20:10:29.162 2025-03-12 20:10:29.162 435217 19087 435607 9166 5 8267 2025-03-12 22:12:22.721 2025-03-12 22:12:22.721 435217 19087 435699 20768 2 8268 2025-03-13 12:32:07.104 2025-03-13 12:32:07.104 435217 19087 436266 15978 1 8269 2025-03-12 14:44:03.932 2025-03-12 14:44:03.932 435220 9426 435235 20817 1 8270 2025-03-12 14:46:47.587 2025-03-12 14:46:47.587 435220 9426 435238 11450 2 8271 2025-03-12 14:59:12.345 2025-03-12 14:59:12.345 435220 9426 435254 21647 2 8272 2025-03-12 21:11:26.097 2025-03-12 21:11:26.097 435220 9426 435652 2961 3 8273 2025-03-12 21:12:44.588 2025-03-12 21:12:44.588 435220 9426 435654 19117 4 8274 2025-03-12 15:00:33.053 2025-03-12 15:00:33.053 435220 9426 435256 977 3 8275 2025-03-12 21:08:09.876 2025-03-12 21:08:09.876 435220 9426 435649 1803 2 8276 2025-03-12 21:47:03.418 2025-03-12 21:47:03.418 435220 9426 435678 8289 5 8277 2025-03-12 21:50:46.528 2025-03-12 21:50:46.528 435220 9426 435684 7979 3 8278 2025-03-13 13:43:40.206 2025-03-13 13:43:40.206 435220 9426 436346 5725 3 8279 2025-03-12 14:42:58.577 2025-03-12 14:42:58.577 435221 21148 435232 6191 1 8280 2025-03-12 14:43:34.612 2025-03-12 14:43:34.612 435221 21148 435233 16309 1 8281 2025-03-12 14:43:51.972 2025-03-12 14:43:51.972 435222 17984 435234 11165 1 8282 2025-03-12 17:38:49.278 2025-03-12 17:38:49.278 435237 10586 435462 21514 1 8283 2025-03-12 15:41:39.947 2025-03-12 15:41:39.947 435239 2529 435325 16939 2 8284 2025-03-12 15:44:13.381 2025-03-12 15:44:13.381 435239 2529 435330 1769 3 8285 2025-03-12 17:15:06.024 2025-03-12 17:15:06.024 435239 2529 435434 14503 6 8286 2025-03-12 15:20:23.501 2025-03-12 15:20:23.501 435239 2529 435290 21172 1 8287 2025-03-12 15:46:51.711 2025-03-12 15:46:51.711 435239 2529 435337 21116 4 8288 2025-03-12 15:52:40.164 2025-03-12 15:52:40.164 435239 2529 435348 6191 5 8289 2025-03-12 14:41:34.876 2025-03-12 14:41:34.876 435226 16542 435228 9335 1 8290 2025-03-12 20:35:33.116 2025-03-12 20:35:33.116 435226 16542 435625 3409 1 8291 2025-03-12 17:35:34.478 2025-03-12 17:35:34.478 435227 19821 435459 671 1 8292 2025-03-12 15:41:44.166 2025-03-12 15:41:44.166 435229 21408 435326 20965 1 8293 2025-03-13 02:39:02.017 2025-03-13 02:39:02.017 435231 9366 435836 827 3 8294 2025-03-12 16:38:23.647 2025-03-12 16:38:23.647 435231 9366 435388 20636 2 8295 2025-03-12 21:08:53.118 2025-03-12 21:08:53.118 435231 9366 435650 11298 1 8296 2025-03-13 02:56:39.607 2025-03-13 02:56:39.607 435231 9366 435845 10698 5 8297 2025-03-13 09:22:11.535 2025-03-13 09:22:11.535 435231 9366 436054 20825 6 8298 2025-03-12 15:09:44.035 2025-03-12 15:09:44.035 435231 9366 435267 13198 1 8299 2025-03-12 16:37:01.796 2025-03-12 16:37:01.796 435231 9366 435384 1609 1 8300 2025-03-12 23:41:45.051 2025-03-12 23:41:45.051 435231 9366 435751 20775 1 8301 2025-03-13 01:45:01.694 2025-03-13 01:45:01.694 435231 9366 435814 7674 2 8302 2025-03-13 02:53:27.618 2025-03-13 02:53:27.618 435231 9366 435843 6191 4 8303 2025-03-13 09:44:54.862 2025-03-13 09:44:54.862 435231 9366 436078 5694 7 8304 2025-03-12 14:46:47.587 2025-03-12 14:46:47.587 435235 20817 435238 11450 1 8305 2025-03-12 14:59:12.345 2025-03-12 14:59:12.345 435235 20817 435254 21647 1 8306 2025-03-12 21:11:26.097 2025-03-12 21:11:26.097 435235 20817 435652 2961 2 8307 2025-03-12 21:12:44.588 2025-03-12 21:12:44.588 435235 20817 435654 19117 3 8308 2025-03-12 15:00:33.053 2025-03-12 15:00:33.053 435235 20817 435256 977 2 8309 2025-03-12 21:08:09.876 2025-03-12 21:08:09.876 435235 20817 435649 1803 1 8310 2025-03-12 21:47:03.418 2025-03-12 21:47:03.418 435235 20817 435678 8289 4 8311 2025-03-12 21:50:46.528 2025-03-12 21:50:46.528 435235 20817 435684 7979 2 8312 2025-03-13 13:43:40.206 2025-03-13 13:43:40.206 435235 20817 436346 5725 2 8313 2025-03-12 15:36:03.365 2025-03-12 15:36:03.365 435242 5377 435316 3461 2 8314 2025-03-12 15:48:53.463 2025-03-12 15:48:53.463 435242 5377 435345 19812 2 8315 2025-03-12 16:34:59.426 2025-03-12 16:34:59.426 435242 5377 435381 11220 1 8316 2025-03-12 16:36:29.287 2025-03-12 16:36:29.287 435242 5377 435383 16347 2 8317 2025-03-12 16:51:00.956 2025-03-12 16:51:00.956 435242 5377 435406 675 1 8318 2025-03-12 15:10:13.522 2025-03-12 15:10:13.522 435242 5377 435268 12951 1 8319 2025-03-12 15:34:02.397 2025-03-12 15:34:02.397 435242 5377 435311 636 1 8320 2025-03-12 15:47:43.782 2025-03-12 15:47:43.782 435242 5377 435342 21521 1 8321 2025-03-12 18:36:22.652 2025-03-12 18:36:22.652 435242 5377 435509 5497 1 8322 2025-03-12 18:41:17.145 2025-03-12 18:41:17.145 435242 5377 435512 986 2 8323 2025-03-13 03:25:00.21 2025-03-13 03:25:00.21 435242 5377 435861 12768 1 8324 2025-03-13 10:13:16 2025-03-13 10:13:16 435242 5377 436092 9378 2 8325 2025-03-12 14:54:03.679 2025-03-12 14:54:03.679 435244 21021 435249 628 1 8326 2025-03-12 15:11:34.742 2025-03-12 15:11:34.742 435244 21021 435269 21019 3 8327 2025-03-12 14:58:55.295 2025-03-12 14:58:55.295 435244 21021 435253 2718 2 8328 2025-03-12 15:17:05.118 2025-03-12 15:17:05.118 435244 21021 435281 15100 4 8329 2025-03-12 14:58:54.996 2025-03-12 14:58:54.996 435246 17722 435252 11866 1 8330 2025-03-12 15:16:49.348 2025-03-12 15:16:49.348 435246 17722 435280 6526 1 8331 2025-03-12 15:34:18.712 2025-03-12 15:34:18.712 435246 17722 435312 10112 2 8332 2025-03-12 15:41:02.416 2025-03-12 15:41:02.416 435246 17722 435323 11298 3 8333 2025-03-12 15:11:34.742 2025-03-12 15:11:34.742 435249 628 435269 21019 2 8334 2025-03-12 14:58:55.295 2025-03-12 14:58:55.295 435249 628 435253 2718 1 8335 2025-03-12 15:17:05.118 2025-03-12 15:17:05.118 435249 628 435281 15100 3 8336 2025-03-12 15:34:18.712 2025-03-12 15:34:18.712 435252 11866 435312 10112 1 8337 2025-03-12 15:41:02.416 2025-03-12 15:41:02.416 435252 11866 435323 11298 2 8338 2025-03-12 15:11:34.742 2025-03-12 15:11:34.742 435253 2718 435269 21019 1 8339 2025-03-12 15:17:05.118 2025-03-12 15:17:05.118 435253 2718 435281 15100 2 8340 2025-03-12 15:00:33.053 2025-03-12 15:00:33.053 435254 21647 435256 977 1 8341 2025-03-12 17:08:27.92 2025-03-12 17:08:27.92 435396 19854 435426 4650 2 8342 2025-03-12 16:56:54.805 2025-03-12 16:56:54.805 435396 19854 435416 667 1 8343 2025-03-12 17:36:24.161 2025-03-12 17:36:24.161 435396 19854 435460 9109 3 8344 2025-03-12 15:59:29.077 2025-03-12 15:59:29.077 435257 1800 435352 716 2 8345 2025-03-12 16:09:43.743 2025-03-12 16:09:43.743 435257 1800 435358 21734 3 8346 2025-03-12 18:31:33.048 2025-03-12 18:31:33.048 435257 1800 435503 20669 4 8347 2025-03-12 15:03:55.98 2025-03-12 15:03:55.98 435257 1800 435260 2195 1 8348 2025-03-12 15:59:29.077 2025-03-12 15:59:29.077 435260 2195 435352 716 1 8349 2025-03-12 16:09:43.743 2025-03-12 16:09:43.743 435260 2195 435358 21734 2 8350 2025-03-12 18:31:33.048 2025-03-12 18:31:33.048 435260 2195 435503 20669 3 8351 2025-03-12 15:23:51.312 2025-03-12 15:23:51.312 435292 9517 435297 21710 1 8352 2025-03-12 15:28:02.597 2025-03-12 15:28:02.597 435292 9517 435305 17533 2 8353 2025-03-12 18:57:54.929 2025-03-12 18:57:54.929 435292 9517 435526 13038 2 8354 2025-03-12 19:16:52.042 2025-03-12 19:16:52.042 435292 9517 435545 17519 2 8355 2025-03-12 19:27:57.323 2025-03-12 19:27:57.323 435292 9517 435555 20734 5 8356 2025-03-12 23:48:25.477 2025-03-12 23:48:25.477 435292 9517 435756 725 2 8357 2025-03-13 14:04:45.03 2025-03-13 14:04:45.03 435292 9517 436373 16830 4 8358 2025-03-13 14:09:20.402 2025-03-13 14:09:20.402 435292 9517 436380 4287 5 8359 2025-03-13 15:21:25.244 2025-03-13 15:21:25.244 435292 9517 436467 7760 5 8360 2025-03-13 15:32:41.733 2025-03-13 15:32:41.733 435292 9517 436492 899 5 8361 2025-03-12 15:27:29.318 2025-03-12 15:27:29.318 435292 9517 435303 760 1 8362 2025-03-13 02:43:54.245 2025-03-13 02:43:54.245 435292 9517 435838 638 4 8363 2025-03-12 18:32:07.371 2025-03-12 18:32:07.371 435292 9517 435504 21547 1 8364 2025-03-12 19:19:04.088 2025-03-12 19:19:04.088 435292 9517 435547 4079 3 8365 2025-03-12 19:26:42.536 2025-03-12 19:26:42.536 435292 9517 435553 993 4 8366 2025-03-13 13:45:57.619 2025-03-13 13:45:57.619 435292 9517 436349 18269 3 8367 2025-03-12 15:39:29.959 2025-03-12 15:39:29.959 435295 660 435321 717 1 8368 2025-03-12 16:02:30.939 2025-03-12 16:02:30.939 435295 660 435353 6594 1 8369 2025-03-12 17:15:53.128 2025-03-12 17:15:53.128 435295 660 435438 5293 1 8370 2025-03-12 19:31:52.33 2025-03-12 19:31:52.33 435295 660 435559 18017 3 8371 2025-03-12 19:28:28.283 2025-03-12 19:28:28.283 435295 660 435556 21405 2 8372 2025-03-12 19:30:40.124 2025-03-12 19:30:40.124 435295 660 435558 21523 2 8373 2025-03-12 19:38:08.391 2025-03-12 19:38:08.391 435295 660 435565 19888 2 8374 2025-03-12 19:39:16.769 2025-03-12 19:39:16.769 435295 660 435568 13987 4 8375 2025-03-12 19:40:08.2 2025-03-12 19:40:08.2 435295 660 435570 8954 3 8376 2025-03-12 19:42:19.177 2025-03-12 19:42:19.177 435295 660 435572 11073 5 8377 2025-03-12 19:56:01.269 2025-03-12 19:56:01.269 435295 660 435584 4538 6 8378 2025-03-12 23:58:20.027 2025-03-12 23:58:20.027 435295 660 435762 9355 3 8379 2025-03-12 15:45:03.715 2025-03-12 15:45:03.715 435295 660 435334 659 2 8380 2025-03-12 17:08:21.231 2025-03-12 17:08:21.231 435295 660 435425 919 1 8381 2025-03-12 20:02:47.397 2025-03-12 20:02:47.397 435295 660 435594 13767 5 8382 2025-03-12 19:43:40.652 2025-03-12 19:43:40.652 435295 660 435573 21136 4 8383 2025-03-12 15:43:26.223 2025-03-12 15:43:26.223 435264 4345 435329 11158 1 8384 2025-03-12 15:08:29.003 2025-03-12 15:08:29.003 435265 683 435266 946 1 8385 2025-03-12 15:13:16.425 2025-03-12 15:13:16.425 435265 683 435273 21714 1 8386 2025-03-12 17:29:13.539 2025-03-12 17:29:13.539 435265 683 435450 20275 2 8387 2025-03-12 15:17:05.118 2025-03-12 15:17:05.118 435269 21019 435281 15100 1 8388 2025-03-12 15:18:32.414 2025-03-12 15:18:32.414 435271 721 435282 12744 1 8389 2025-03-12 15:21:47.021 2025-03-12 15:21:47.021 435272 21067 435293 1213 2 8390 2025-03-12 15:19:38.663 2025-03-12 15:19:38.663 435272 21067 435286 21063 1 8391 2025-03-12 17:29:13.539 2025-03-12 17:29:13.539 435273 21714 435450 20275 1 8392 2025-03-12 15:24:46.834 2025-03-12 15:24:46.834 435274 14255 435299 19189 1 8393 2025-03-12 15:32:27.574 2025-03-12 15:32:27.574 435274 14255 435308 5978 1 8394 2025-03-12 15:38:13.3 2025-03-12 15:38:13.3 435274 14255 435318 5003 2 8395 2025-03-12 18:58:55.648 2025-03-12 18:58:55.648 435274 14255 435527 9916 2 8396 2025-03-13 00:27:58.21 2025-03-13 00:27:58.21 435274 14255 435771 20616 3 8397 2025-03-12 15:23:43.727 2025-03-12 15:23:43.727 435275 17494 435295 660 2 8398 2025-03-12 15:39:29.959 2025-03-12 15:39:29.959 435275 17494 435321 717 3 8399 2025-03-12 16:02:30.939 2025-03-12 16:02:30.939 435275 17494 435353 6594 3 8400 2025-03-12 17:15:53.128 2025-03-12 17:15:53.128 435275 17494 435438 5293 3 8401 2025-03-12 19:31:52.33 2025-03-12 19:31:52.33 435275 17494 435559 18017 5 8402 2025-03-12 19:28:28.283 2025-03-12 19:28:28.283 435275 17494 435556 21405 4 8403 2025-03-12 19:30:40.124 2025-03-12 19:30:40.124 435275 17494 435558 21523 4 8404 2025-03-12 19:38:08.391 2025-03-12 19:38:08.391 435275 17494 435565 19888 4 8405 2025-03-12 19:39:16.769 2025-03-12 19:39:16.769 435275 17494 435568 13987 6 8406 2025-03-12 19:40:08.2 2025-03-12 19:40:08.2 435275 17494 435570 8954 5 8407 2025-03-12 19:42:19.177 2025-03-12 19:42:19.177 435275 17494 435572 11073 7 8408 2025-03-12 19:56:01.269 2025-03-12 19:56:01.269 435275 17494 435584 4538 8 8409 2025-03-12 23:58:20.027 2025-03-12 23:58:20.027 435275 17494 435762 9355 5 8410 2025-03-12 15:15:36.03 2025-03-12 15:15:36.03 435275 17494 435277 21166 1 8411 2025-03-12 15:45:03.715 2025-03-12 15:45:03.715 435275 17494 435334 659 4 8412 2025-03-12 17:08:21.231 2025-03-12 17:08:21.231 435275 17494 435425 919 3 8413 2025-03-12 20:02:47.397 2025-03-12 20:02:47.397 435275 17494 435594 13767 7 8414 2025-03-12 19:43:40.652 2025-03-12 19:43:40.652 435275 17494 435573 21136 6 8415 2025-03-12 15:19:25.685 2025-03-12 15:19:25.685 435276 17690 435285 21021 1 8416 2025-03-12 19:27:16.783 2025-03-12 19:27:16.783 435276 17690 435554 8423 1 8417 2025-03-12 15:23:50.851 2025-03-12 15:23:50.851 435276 17690 435296 1729 1 8418 2025-03-12 15:25:50.257 2025-03-12 15:25:50.257 435276 17690 435300 730 1 8419 2025-03-12 15:23:43.727 2025-03-12 15:23:43.727 435277 21166 435295 660 1 8420 2025-03-12 15:39:29.959 2025-03-12 15:39:29.959 435277 21166 435321 717 2 8421 2025-03-12 16:02:30.939 2025-03-12 16:02:30.939 435277 21166 435353 6594 2 8422 2025-03-12 17:15:53.128 2025-03-12 17:15:53.128 435277 21166 435438 5293 2 8423 2025-03-12 19:31:52.33 2025-03-12 19:31:52.33 435277 21166 435559 18017 4 8424 2025-03-12 19:28:28.283 2025-03-12 19:28:28.283 435277 21166 435556 21405 3 8425 2025-03-12 19:30:40.124 2025-03-12 19:30:40.124 435277 21166 435558 21523 3 8426 2025-03-12 19:38:08.391 2025-03-12 19:38:08.391 435277 21166 435565 19888 3 8427 2025-03-12 19:39:16.769 2025-03-12 19:39:16.769 435277 21166 435568 13987 5 8428 2025-03-12 19:40:08.2 2025-03-12 19:40:08.2 435277 21166 435570 8954 4 8429 2025-03-12 19:42:19.177 2025-03-12 19:42:19.177 435277 21166 435572 11073 6 8430 2025-03-12 19:56:01.269 2025-03-12 19:56:01.269 435277 21166 435584 4538 7 8431 2025-03-12 23:58:20.027 2025-03-12 23:58:20.027 435277 21166 435762 9355 4 8432 2025-03-12 15:45:03.715 2025-03-12 15:45:03.715 435277 21166 435334 659 3 8433 2025-03-12 17:08:21.231 2025-03-12 17:08:21.231 435277 21166 435425 919 2 8434 2025-03-12 20:02:47.397 2025-03-12 20:02:47.397 435277 21166 435594 13767 6 8435 2025-03-12 19:43:40.652 2025-03-12 19:43:40.652 435277 21166 435573 21136 5 8436 2025-03-12 15:38:13.3 2025-03-12 15:38:13.3 435308 5978 435318 5003 1 8437 2025-03-12 18:58:55.648 2025-03-12 18:58:55.648 435308 5978 435527 9916 1 8438 2025-03-13 00:27:58.21 2025-03-13 00:27:58.21 435308 5978 435771 20616 2 8439 2025-03-12 15:34:56.078 2025-03-12 15:34:56.078 435284 739 435313 1237 1 8440 2025-03-12 15:39:00.667 2025-03-12 15:39:00.667 435284 739 435319 16912 2 8441 2025-03-12 18:35:35.501 2025-03-12 18:35:35.501 435284 739 435506 876 2 8442 2025-03-12 18:28:48.493 2025-03-12 18:28:48.493 435284 739 435500 21578 1 8443 2025-03-12 15:21:47.021 2025-03-12 15:21:47.021 435286 21063 435293 1213 1 8444 2025-03-12 19:35:49.673 2025-03-12 19:35:49.673 435287 8498 435563 9354 2 8445 2025-03-12 15:26:28.948 2025-03-12 15:26:28.948 435287 8498 435301 11165 1 8446 2025-03-12 17:15:40.03 2025-03-12 17:15:40.03 435287 8498 435436 20222 1 8447 2025-03-12 15:32:10.605 2025-03-12 15:32:10.605 435288 4502 435307 4128 2 8448 2025-03-12 15:24:44.863 2025-03-12 15:24:44.863 435288 4502 435298 1488 1 8449 2025-03-12 15:41:39.947 2025-03-12 15:41:39.947 435290 21172 435325 16939 1 8450 2025-03-12 15:44:13.381 2025-03-12 15:44:13.381 435290 21172 435330 1769 2 8451 2025-03-12 17:15:06.024 2025-03-12 17:15:06.024 435290 21172 435434 14503 5 8452 2025-03-12 15:46:51.711 2025-03-12 15:46:51.711 435290 21172 435337 21116 3 8453 2025-03-12 15:52:40.164 2025-03-12 15:52:40.164 435290 21172 435348 6191 4 8454 2025-03-12 15:28:02.597 2025-03-12 15:28:02.597 435297 21710 435305 17533 1 8455 2025-03-12 15:32:10.605 2025-03-12 15:32:10.605 435298 1488 435307 4128 1 8456 2025-03-12 15:45:38.327 2025-03-12 15:45:38.327 435306 9655 435336 1145 1 8457 2025-03-12 17:15:29.298 2025-03-12 17:15:29.298 435306 9655 435435 16847 2 8458 2025-03-12 15:36:03.365 2025-03-12 15:36:03.365 435311 636 435316 3461 1 8459 2025-03-12 15:45:15.277 2025-03-12 15:45:15.277 435320 13544 435335 1454 1 8460 2025-03-12 18:57:29.028 2025-03-12 18:57:29.028 435320 13544 435525 13327 3 8461 2025-03-12 19:01:08.589 2025-03-12 19:01:08.589 435320 13544 435529 6765 4 8462 2025-03-12 22:01:32.075 2025-03-12 22:01:32.075 435320 13544 435692 21398 3 8463 2025-03-12 18:44:42.651 2025-03-12 18:44:42.651 435320 13544 435515 9552 2 8464 2025-03-12 15:41:02.416 2025-03-12 15:41:02.416 435312 10112 435323 11298 1 8465 2025-03-12 15:39:00.667 2025-03-12 15:39:00.667 435313 1237 435319 16912 1 8466 2025-03-12 15:45:03.715 2025-03-12 15:45:03.715 435321 717 435334 659 1 8467 2025-03-12 16:04:28.137 2025-03-12 16:04:28.137 435324 20776 435354 876 3 8468 2025-03-12 15:58:34.621 2025-03-12 15:58:34.621 435324 20776 435351 15336 2 8469 2025-03-12 15:44:23.582 2025-03-12 15:44:23.582 435324 20776 435331 1316 1 8470 2025-03-12 15:52:16.31 2025-03-12 15:52:16.31 435324 20776 435347 4984 2 8471 2025-03-12 16:22:26.776 2025-03-12 16:22:26.776 435324 20776 435371 9184 4 8472 2025-03-12 15:44:13.381 2025-03-12 15:44:13.381 435325 16939 435330 1769 1 8473 2025-03-12 17:15:06.024 2025-03-12 17:15:06.024 435325 16939 435434 14503 4 8474 2025-03-12 15:46:51.711 2025-03-12 15:46:51.711 435325 16939 435337 21116 2 8475 2025-03-12 15:52:40.164 2025-03-12 15:52:40.164 435325 16939 435348 6191 3 8476 2025-03-12 19:40:27.072 2025-03-12 19:40:27.072 435327 21207 435571 10490 1 8477 2025-03-12 20:20:53.329 2025-03-12 20:20:53.329 435327 21207 435614 16680 1 8478 2022-09-22 12:00:18.235 2022-09-22 12:00:18.235 1680 9335 1681 997 1 8479 2025-03-12 18:43:59.086 2025-03-12 18:43:59.086 435409 2111 435514 5828 1 8480 2025-03-12 21:10:09.569 2025-03-12 21:10:09.569 435409 2111 435651 17392 2 8481 2025-03-14 16:22:35.104 2025-03-14 16:22:35.104 435427 18727 437569 1584 2 8482 2025-03-14 16:28:28.355 2025-03-14 16:28:28.355 435427 18727 437577 17838 3 8483 2025-03-12 18:30:53.904 2025-03-12 18:30:53.904 435427 18727 435502 10016 1 8484 2025-03-12 15:44:39.221 2025-03-12 15:44:39.221 435328 2431 435332 7389 1 8485 2025-03-13 04:53:21.091 2025-03-13 04:53:21.091 435328 2431 435904 4314 2 8486 2025-03-13 08:01:27.116 2025-03-13 08:01:27.116 435328 2431 436001 1044 4 8487 2025-03-13 08:21:32.688 2025-03-13 08:21:32.688 435328 2431 436011 10433 5 8488 2025-03-13 10:37:21.104 2025-03-13 10:37:21.104 435328 2431 436124 15192 1 8489 2025-03-12 20:16:23.095 2025-03-12 20:16:23.095 435328 2431 435613 8045 2 8490 2025-03-12 18:20:53.469 2025-03-12 18:20:53.469 435328 2431 435487 4831 1 8491 2025-03-12 20:09:14.597 2025-03-12 20:09:14.597 435328 2431 435605 21405 2 8492 2025-03-12 20:16:22.839 2025-03-12 20:16:22.839 435328 2431 435612 19193 3 8493 2025-03-12 20:27:32.963 2025-03-12 20:27:32.963 435328 2431 435619 1465 4 8494 2025-03-12 20:31:29.446 2025-03-12 20:31:29.446 435328 2431 435621 11153 5 8495 2025-03-12 20:25:56.758 2025-03-12 20:25:56.758 435328 2431 435618 17106 1 8496 2025-03-13 01:51:28.484 2025-03-13 01:51:28.484 435328 2431 435816 15049 5 8497 2025-03-13 04:25:49.897 2025-03-13 04:25:49.897 435328 2431 435887 16353 1 8498 2025-03-13 06:43:36.121 2025-03-13 06:43:36.121 435328 2431 435957 9349 3 8499 2025-03-13 08:36:29.183 2025-03-13 08:36:29.183 435328 2431 436021 17050 6 8500 2025-03-13 11:15:16.064 2025-03-13 11:15:16.064 435328 2431 436178 20614 7 8501 2025-03-12 17:15:06.024 2025-03-12 17:15:06.024 435330 1769 435434 14503 3 8502 2025-03-12 15:46:51.711 2025-03-12 15:46:51.711 435330 1769 435337 21116 1 8503 2025-03-12 15:52:40.164 2025-03-12 15:52:40.164 435330 1769 435348 6191 2 8504 2025-03-12 16:04:28.137 2025-03-12 16:04:28.137 435331 1316 435354 876 2 8505 2025-03-12 15:52:16.31 2025-03-12 15:52:16.31 435331 1316 435347 4984 1 8506 2025-03-12 16:22:26.776 2025-03-12 16:22:26.776 435331 1316 435371 9184 3 8507 2025-03-12 15:58:34.621 2025-03-12 15:58:34.621 435331 1316 435351 15336 1 8508 2025-03-12 20:16:23.095 2025-03-12 20:16:23.095 435332 7389 435613 8045 1 8509 2025-03-12 15:48:46.752 2025-03-12 15:48:46.752 435333 11288 435344 21639 1 8510 2025-03-12 17:11:42.449 2025-03-12 17:11:42.449 435333 11288 435432 16296 2 8511 2025-03-12 17:20:12.491 2025-03-12 17:20:12.491 435333 11288 435440 5017 3 8512 2025-03-12 18:57:29.028 2025-03-12 18:57:29.028 435335 1454 435525 13327 2 8513 2025-03-12 19:01:08.589 2025-03-12 19:01:08.589 435335 1454 435529 6765 3 8514 2025-03-12 22:01:32.075 2025-03-12 22:01:32.075 435335 1454 435692 21398 2 8515 2025-03-12 18:44:42.651 2025-03-12 18:44:42.651 435335 1454 435515 9552 1 8516 2025-03-12 17:15:29.298 2025-03-12 17:15:29.298 435336 1145 435435 16847 1 8517 2025-03-12 17:15:06.024 2025-03-12 17:15:06.024 435337 21116 435434 14503 2 8518 2025-03-12 15:52:40.164 2025-03-12 15:52:40.164 435337 21116 435348 6191 1 8519 2025-03-12 15:48:53.463 2025-03-12 15:48:53.463 435342 21521 435345 19812 1 8520 2025-03-12 17:11:42.449 2025-03-12 17:11:42.449 435344 21639 435432 16296 1 8521 2025-03-12 17:20:12.491 2025-03-12 17:20:12.491 435344 21639 435440 5017 2 8522 2025-03-12 16:08:54.938 2025-03-12 16:08:54.938 435346 3371 435356 21814 1 8523 2025-03-12 17:15:06.024 2025-03-12 17:15:06.024 435348 6191 435434 14503 1 8524 2025-03-12 17:10:54.225 2025-03-12 17:10:54.225 435350 8059 435431 17592 1 8525 2025-03-12 16:04:28.137 2025-03-12 16:04:28.137 435351 15336 435354 876 1 8526 2025-03-12 16:22:26.776 2025-03-12 16:22:26.776 435351 15336 435371 9184 2 8527 2025-03-12 16:09:43.743 2025-03-12 16:09:43.743 435352 716 435358 21734 1 8528 2025-03-12 18:31:33.048 2025-03-12 18:31:33.048 435352 716 435503 20669 2 8529 2025-03-12 16:22:26.776 2025-03-12 16:22:26.776 435354 876 435371 9184 1 8530 2025-03-12 16:15:33.993 2025-03-12 16:15:33.993 435355 16353 435364 12951 1 8531 2025-03-12 16:47:48.819 2025-03-12 16:47:48.819 435355 16353 435404 1823 1 8532 2025-03-12 16:49:32.68 2025-03-12 16:49:32.68 435355 16353 435405 699 2 8533 2025-03-12 17:02:45.979 2025-03-12 17:02:45.979 435355 16353 435421 7818 3 8534 2025-03-12 18:41:14.824 2025-03-12 18:41:14.824 435355 16353 435511 2741 1 8535 2025-03-12 16:42:11.048 2025-03-12 16:42:11.048 435355 16353 435393 18101 2 8536 2025-03-12 16:13:02.524 2025-03-12 16:13:02.524 435357 2013 435361 721 1 8537 2025-03-12 21:15:44.62 2025-03-12 21:15:44.62 435357 2013 435658 1245 1 8538 2025-03-12 16:13:37.619 2025-03-12 16:13:37.619 435357 2013 435362 21072 2 8539 2025-03-12 21:16:44.175 2025-03-12 21:16:44.175 435357 2013 435660 7097 2 8540 2025-03-12 18:31:33.048 2025-03-12 18:31:33.048 435358 21734 435503 20669 1 8541 2025-03-12 17:36:24.161 2025-03-12 17:36:24.161 435426 4650 435460 9109 1 8542 2025-03-12 16:16:49.592 2025-03-12 16:16:49.592 435359 13216 435366 15337 1 8543 2025-03-12 16:20:44.343 2025-03-12 16:20:44.343 435359 13216 435368 993 1 8544 2025-03-12 16:26:27.308 2025-03-12 16:26:27.308 435359 13216 435373 9352 2 8545 2025-03-12 16:37:29.747 2025-03-12 16:37:29.747 435359 13216 435386 12808 3 8546 2025-03-12 19:32:51.147 2025-03-12 19:32:51.147 435359 13216 435560 10469 1 8547 2025-03-13 15:43:44.711 2025-03-13 15:43:44.711 435359 13216 436507 11515 3 8548 2025-03-13 17:33:39.528 2025-03-13 17:33:39.528 435359 13216 436595 1092 4 8549 2025-03-13 03:46:09.41 2025-03-13 03:46:09.41 435359 13216 435872 16282 3 8550 2025-03-13 01:22:27.865 2025-03-13 01:22:27.865 435359 13216 435803 16695 2 8551 2025-03-12 20:44:21.04 2025-03-12 20:44:21.04 435359 13216 435635 1006 1 8552 2025-03-13 13:46:11.379 2025-03-13 13:46:11.379 435359 13216 436350 2773 2 8553 2025-03-13 00:59:45.593 2025-03-13 00:59:45.593 435359 13216 435786 1495 1 8554 2025-03-12 17:46:04.03 2025-03-12 17:46:04.03 435359 13216 435466 13878 2 8555 2025-03-12 17:54:52.465 2025-03-12 17:54:52.465 435360 17095 435473 18529 1 8556 2025-03-12 16:13:37.619 2025-03-12 16:13:37.619 435361 721 435362 21072 1 8557 2025-03-12 16:42:11.048 2025-03-12 16:42:11.048 435364 12951 435393 18101 1 8558 2025-03-12 16:22:10.219 2025-03-12 16:22:10.219 435365 15544 435370 20291 1 8559 2025-03-12 16:37:05.323 2025-03-12 16:37:05.323 435365 15544 435385 937 2 8560 2025-03-12 16:37:05.323 2025-03-12 16:37:05.323 435370 20291 435385 937 1 8561 2025-03-10 21:27:43.783 2025-03-10 21:27:43.783 433032 15521 433194 929 3 8562 2025-03-10 19:08:57.822 2025-03-10 19:08:57.822 433032 15521 433041 6202 2 8563 2025-03-12 16:37:54.738 2025-03-12 16:37:54.738 433032 15521 435387 5112 4 8564 2025-03-13 00:51:56.809 2025-03-13 00:51:56.809 433032 15521 435780 679 5 8565 2025-03-10 19:00:29.979 2025-03-10 19:00:29.979 433032 15521 433034 18449 1 8566 2025-03-12 16:28:23.304 2025-03-12 16:28:23.304 435375 21058 435376 7558 1 8567 2025-03-13 04:44:30.1 2025-03-13 04:44:30.1 435375 21058 435901 19812 2 8568 2025-03-12 16:56:23.291 2025-03-12 16:56:23.291 435375 21058 435413 15556 1 8569 2025-03-12 19:04:22.684 2025-03-12 19:04:22.684 435375 21058 435537 1474 1 8570 2025-03-13 00:51:20.211 2025-03-13 00:51:20.211 435375 21058 435777 20854 1 8571 2025-03-13 04:44:01.043 2025-03-13 04:44:01.043 435375 21058 435900 20073 2 8572 2025-03-13 04:44:30.1 2025-03-13 04:44:30.1 435376 7558 435901 19812 1 8573 2025-03-12 19:34:08.201 2025-03-12 19:34:08.201 435377 1012 435561 17030 1 8574 2025-03-12 22:12:22.721 2025-03-12 22:12:22.721 435377 1012 435699 20768 1 8575 2025-03-12 16:36:29.287 2025-03-12 16:36:29.287 435381 11220 435383 16347 1 8576 2025-03-12 16:54:06.893 2025-03-12 16:54:06.893 435382 9695 435408 10060 1 8577 2025-03-12 16:38:23.647 2025-03-12 16:38:23.647 435384 1609 435388 20636 1 8578 2025-03-13 00:51:56.809 2025-03-13 00:51:56.809 435387 5112 435780 679 1 8579 2025-03-13 03:39:09.87 2025-03-13 03:39:09.87 435410 11298 435867 8245 3 8580 2025-03-12 17:02:42.252 2025-03-12 17:02:42.252 435410 11298 435420 21180 1 8581 2025-03-12 17:10:16.45 2025-03-12 17:10:16.45 435410 11298 435430 5359 2 8582 2025-03-12 19:29:54.709 2025-03-12 19:29:54.709 435410 11298 435557 1723 2 8583 2025-03-12 17:18:31.848 2025-03-12 17:18:31.848 435410 11298 435439 4079 1 8584 2025-03-13 03:36:31.507 2025-03-13 03:36:31.507 435410 11298 435866 6653 2 8585 2025-03-12 16:46:59.077 2025-03-12 16:46:59.077 435392 6555 435400 21585 3 8586 2025-03-12 16:44:13.769 2025-03-12 16:44:13.769 435392 6555 435397 4035 1 8587 2025-03-12 22:40:15.68 2025-03-12 22:40:15.68 435392 6555 435723 18734 1 8588 2025-03-12 16:43:03.776 2025-03-12 16:43:03.776 435392 6555 435395 16513 1 8589 2025-03-12 16:46:08.447 2025-03-12 16:46:08.447 435392 6555 435399 14774 2 8590 2025-03-12 16:46:59.077 2025-03-12 16:46:59.077 435395 16513 435400 21585 2 8591 2025-03-12 16:46:08.447 2025-03-12 16:46:08.447 435395 16513 435399 14774 1 8592 2025-03-12 16:55:09.62 2025-03-12 16:55:09.62 435401 10291 435409 2111 1 8593 2025-03-12 18:43:59.086 2025-03-12 18:43:59.086 435401 10291 435514 5828 2 8594 2025-03-12 21:10:09.569 2025-03-12 21:10:09.569 435401 10291 435651 17392 3 8595 2025-03-12 16:47:40.528 2025-03-12 16:47:40.528 435402 19569 435403 2088 1 8596 2025-03-13 06:28:46.063 2025-03-13 06:28:46.063 435402 19569 435952 11670 1 8597 2025-03-12 16:49:32.68 2025-03-12 16:49:32.68 435404 1823 435405 699 1 8598 2025-03-12 17:02:45.979 2025-03-12 17:02:45.979 435404 1823 435421 7818 2 8599 2025-03-12 17:02:45.979 2025-03-12 17:02:45.979 435405 699 435421 7818 1 8600 2025-03-12 17:08:40.771 2025-03-12 17:08:40.771 435407 16965 435428 18219 1 8601 2025-03-12 17:01:52.147 2025-03-12 17:01:52.147 435411 15526 435418 9921 1 8602 2025-03-12 17:02:52.028 2025-03-12 17:02:52.028 435411 15526 435422 17030 2 8603 2025-03-12 17:05:30.889 2025-03-12 17:05:30.889 435411 15526 435423 5825 3 8604 2025-03-12 18:00:57.936 2025-03-12 18:00:57.936 435411 15526 435477 7682 4 8605 2025-03-12 17:02:09.794 2025-03-12 17:02:09.794 435411 15526 435419 13216 1 8606 2025-03-12 16:56:34.804 2025-03-12 16:56:34.804 435412 18068 435415 9920 1 8607 2025-03-12 18:00:29.6 2025-03-12 18:00:29.6 435412 18068 435475 13327 2 8608 2025-03-12 17:58:53.215 2025-03-12 17:58:53.215 435412 18068 435474 14552 1 8609 2025-03-13 04:44:01.043 2025-03-13 04:44:01.043 435413 15556 435900 20073 1 8610 2025-03-12 17:08:27.92 2025-03-12 17:08:27.92 435416 667 435426 4650 1 8611 2025-03-12 17:36:24.161 2025-03-12 17:36:24.161 435416 667 435460 9109 2 8612 2025-03-12 19:34:54.387 2025-03-12 19:34:54.387 435417 11298 435562 1493 1 8613 2025-03-12 17:02:52.028 2025-03-12 17:02:52.028 435418 9921 435422 17030 1 8614 2025-03-12 17:05:30.889 2025-03-12 17:05:30.889 435418 9921 435423 5825 2 8615 2025-03-12 18:00:57.936 2025-03-12 18:00:57.936 435418 9921 435477 7682 3 8616 2025-03-13 03:39:09.87 2025-03-13 03:39:09.87 435420 21180 435867 8245 2 8617 2025-03-12 17:10:16.45 2025-03-12 17:10:16.45 435420 21180 435430 5359 1 8618 2025-03-12 19:29:54.709 2025-03-12 19:29:54.709 435420 21180 435557 1723 1 8619 2025-03-13 03:36:31.507 2025-03-13 03:36:31.507 435420 21180 435866 6653 1 8620 2025-03-12 17:05:30.889 2025-03-12 17:05:30.889 435422 17030 435423 5825 1 8621 2025-03-12 18:00:57.936 2025-03-12 18:00:57.936 435422 17030 435477 7682 2 8622 2025-03-12 18:00:57.936 2025-03-12 18:00:57.936 435423 5825 435477 7682 1 8623 2025-03-12 19:31:52.33 2025-03-12 19:31:52.33 435425 919 435559 18017 2 8624 2025-03-12 19:28:28.283 2025-03-12 19:28:28.283 435425 919 435556 21405 1 8625 2025-03-12 19:39:16.769 2025-03-12 19:39:16.769 435425 919 435568 13987 3 8626 2025-03-12 19:42:19.177 2025-03-12 19:42:19.177 435425 919 435572 11073 4 8627 2025-03-12 19:56:01.269 2025-03-12 19:56:01.269 435425 919 435584 4538 5 8628 2025-03-12 23:58:20.027 2025-03-12 23:58:20.027 435425 919 435762 9355 2 8629 2025-03-12 17:20:12.491 2025-03-12 17:20:12.491 435432 16296 435440 5017 1 8630 2025-03-12 19:35:49.673 2025-03-12 19:35:49.673 435436 20222 435563 9354 1 8631 2025-03-12 17:32:23.194 2025-03-12 17:32:23.194 435437 19812 435454 18271 1 8632 2025-03-12 19:30:40.124 2025-03-12 19:30:40.124 435438 5293 435558 21523 1 8633 2025-03-12 19:38:08.391 2025-03-12 19:38:08.391 435438 5293 435565 19888 1 8634 2025-03-12 19:40:08.2 2025-03-12 19:40:08.2 435438 5293 435570 8954 2 8635 2025-03-12 20:02:47.397 2025-03-12 20:02:47.397 435438 5293 435594 13767 4 8636 2025-03-12 19:43:40.652 2025-03-12 19:43:40.652 435438 5293 435573 21136 3 8637 2025-03-12 17:27:02.962 2025-03-12 17:27:02.962 435445 681 435448 10591 1 8638 2025-03-12 17:51:13.884 2025-03-12 17:51:13.884 435446 21145 435470 956 1 8639 2025-03-12 20:03:17.211 2025-03-12 20:03:17.211 435446 21145 435597 19469 1 8640 2025-03-12 17:34:34.793 2025-03-12 17:34:34.793 435447 20969 435456 17673 1 8641 2025-03-12 18:00:46.123 2025-03-12 18:00:46.123 435471 4654 435476 16789 2 8642 2025-03-12 17:53:28.874 2025-03-12 17:53:28.874 435471 4654 435472 20525 1 8643 2022-10-19 21:11:06.481 2022-10-19 21:11:06.481 2770 9349 2772 1720 1 8644 2025-03-12 17:36:42.4 2025-03-12 17:36:42.4 435455 21670 435461 15049 1 8645 2025-03-12 20:05:47.704 2025-03-12 20:05:47.704 435457 1428 435601 20306 1 8646 2025-03-12 21:49:14.491 2025-03-12 21:49:14.491 435457 1428 435681 658 1 8647 2025-03-13 01:04:39.425 2025-03-13 01:04:39.425 435457 1428 435792 8168 1 8648 2025-03-13 01:41:49.223 2025-03-13 01:41:49.223 435457 1428 435810 9107 1 8649 2025-03-12 21:18:42.319 2025-03-12 21:18:42.319 435457 1428 435662 16653 1 8650 2025-03-13 00:58:52.534 2025-03-13 00:58:52.534 435457 1428 435784 794 1 8651 2025-03-13 03:42:12.843 2025-03-13 03:42:12.843 435457 1428 435868 21522 1 8652 2025-03-12 17:45:19.461 2025-03-12 17:45:19.461 435458 16929 435465 14909 1 8653 2025-03-12 17:48:33.153 2025-03-12 17:48:33.153 435458 16929 435468 1447 2 8654 2025-03-12 18:28:36.913 2025-03-12 18:28:36.913 435458 16929 435499 6360 4 8655 2025-03-12 19:14:47.233 2025-03-12 19:14:47.233 435458 16929 435543 13097 1 8656 2025-03-12 20:42:49.723 2025-03-12 20:42:49.723 435458 16929 435632 21714 1 8657 2025-03-12 18:12:08.316 2025-03-12 18:12:08.316 435458 16929 435481 19663 3 8658 2025-03-12 20:43:49.242 2025-03-12 20:43:49.242 435458 16929 435633 5646 1 8659 2025-03-12 17:48:33.153 2025-03-12 17:48:33.153 435465 14909 435468 1447 1 8660 2025-03-12 18:28:36.913 2025-03-12 18:28:36.913 435465 14909 435499 6360 3 8661 2025-03-12 18:12:08.316 2025-03-12 18:12:08.316 435465 14909 435481 19663 2 8662 2025-03-13 15:43:44.711 2025-03-13 15:43:44.711 435466 13878 436507 11515 1 8663 2025-03-13 17:33:39.528 2025-03-13 17:33:39.528 435466 13878 436595 1092 2 8664 2025-03-12 18:28:36.913 2025-03-12 18:28:36.913 435468 1447 435499 6360 2 8665 2025-03-12 18:12:08.316 2025-03-12 18:12:08.316 435468 1447 435481 19663 1 8666 2025-03-12 18:00:29.6 2025-03-12 18:00:29.6 435474 14552 435475 13327 1 8667 2025-03-12 18:28:36.913 2025-03-12 18:28:36.913 435481 19663 435499 6360 1 8668 2025-03-12 18:35:35.501 2025-03-12 18:35:35.501 435500 21578 435506 876 1 8669 2025-03-14 16:22:35.104 2025-03-14 16:22:35.104 435502 10016 437569 1584 1 8670 2025-03-14 16:28:28.355 2025-03-14 16:28:28.355 435502 10016 437577 17838 2 8671 2025-03-12 20:09:14.597 2025-03-12 20:09:14.597 435487 4831 435605 21405 1 8672 2025-03-12 20:16:22.839 2025-03-12 20:16:22.839 435487 4831 435612 19193 2 8673 2025-03-12 20:27:32.963 2025-03-12 20:27:32.963 435487 4831 435619 1465 3 8674 2025-03-12 20:31:29.446 2025-03-12 20:31:29.446 435487 4831 435621 11153 4 8675 2025-03-13 01:51:28.484 2025-03-13 01:51:28.484 435487 4831 435816 15049 4 8676 2025-03-12 19:50:48.482 2025-03-12 19:50:48.482 435488 13361 435580 699 1 8677 2025-03-12 21:48:14.894 2025-03-12 21:48:14.894 435488 13361 435680 21556 1 8678 2025-03-12 22:35:39.824 2025-03-12 22:35:39.824 435488 13361 435718 3461 1 8679 2025-03-12 23:05:57.156 2025-03-12 23:05:57.156 435488 13361 435741 910 1 8680 2025-03-13 00:50:01.116 2025-03-13 00:50:01.116 435488 13361 435776 17991 1 8681 2025-03-13 03:04:46.024 2025-03-13 03:04:46.024 435488 13361 435848 12744 2 8682 2025-03-13 03:05:04.374 2025-03-13 03:05:04.374 435488 13361 435849 16753 2 8683 2025-03-13 06:46:42.245 2025-03-13 06:46:42.245 435488 13361 435959 14271 1 8684 2025-03-13 17:56:32.417 2025-03-13 17:56:32.417 435488 13361 436610 8726 1 8685 2025-03-12 22:00:00.387 2025-03-12 22:00:00.387 435488 13361 435688 15180 2 8686 2025-03-12 20:38:09.113 2025-03-12 20:38:09.113 435488 13361 435629 730 1 8687 2025-03-13 00:06:34.886 2025-03-13 00:06:34.886 435488 13361 435764 6160 1 8688 2025-03-13 00:26:28.305 2025-03-13 00:26:28.305 435488 13361 435770 20220 1 8689 2025-03-13 03:06:28.839 2025-03-13 03:06:28.839 435488 13361 435850 21145 2 8690 2025-03-13 04:47:54.57 2025-03-13 04:47:54.57 435488 13361 435902 1009 3 8691 2025-03-13 07:06:15.605 2025-03-13 07:06:15.605 435488 13361 435964 20310 1 8692 2025-03-12 18:25:34.66 2025-03-12 18:25:34.66 435489 17638 435490 7746 1 8693 2025-03-12 19:08:12.933 2025-03-12 19:08:12.933 435495 20412 435540 7847 1 8694 2025-03-12 19:57:52.349 2025-03-12 19:57:52.349 435495 20412 435588 1603 1 8695 2025-03-12 21:38:01.348 2025-03-12 21:38:01.348 435495 20412 435668 15732 1 8696 2025-03-12 18:28:34.631 2025-03-12 18:28:34.631 435496 4819 435498 9426 1 8697 2025-03-12 18:30:22.998 2025-03-12 18:30:22.998 435496 4819 435501 5522 1 8698 2025-03-12 18:32:33.646 2025-03-12 18:32:33.646 435497 895 435505 16230 1 8699 2025-03-12 20:55:27.708 2025-03-12 20:55:27.708 435497 895 435641 656 2 8700 2025-03-12 22:24:20.941 2025-03-12 22:24:20.941 435497 895 435710 17727 2 8701 2025-03-13 04:01:48.96 2025-03-13 04:01:48.96 435497 895 435879 21064 1 8702 2025-03-12 22:12:52.183 2025-03-12 22:12:52.183 435497 895 435700 5112 3 8703 2025-03-12 22:47:23.929 2025-03-12 22:47:23.929 435497 895 435729 3990 3 8704 2025-03-12 19:55:34.861 2025-03-12 19:55:34.861 435497 895 435583 19992 1 8705 2025-03-12 20:35:30.369 2025-03-12 20:35:30.369 435497 895 435624 666 2 8706 2025-03-12 22:25:17.298 2025-03-12 22:25:17.298 435497 895 435712 20987 1 8707 2025-03-13 02:43:54.245 2025-03-13 02:43:54.245 435504 21547 435838 638 3 8708 2025-03-12 19:19:04.088 2025-03-12 19:19:04.088 435504 21547 435547 4079 2 8709 2025-03-12 19:26:42.536 2025-03-12 19:26:42.536 435504 21547 435553 993 3 8710 2025-03-13 13:45:57.619 2025-03-13 13:45:57.619 435504 21547 436349 18269 2 8711 2025-03-12 18:57:54.929 2025-03-12 18:57:54.929 435504 21547 435526 13038 1 8712 2025-03-12 19:16:52.042 2025-03-12 19:16:52.042 435504 21547 435545 17519 1 8713 2025-03-12 19:27:57.323 2025-03-12 19:27:57.323 435504 21547 435555 20734 4 8714 2025-03-12 23:48:25.477 2025-03-12 23:48:25.477 435504 21547 435756 725 1 8715 2025-03-13 14:04:45.03 2025-03-13 14:04:45.03 435504 21547 436373 16830 3 8716 2025-03-13 14:09:20.402 2025-03-13 14:09:20.402 435504 21547 436380 4287 4 8717 2025-03-13 15:21:25.244 2025-03-13 15:21:25.244 435504 21547 436467 7760 4 8718 2025-03-13 15:32:41.733 2025-03-13 15:32:41.733 435504 21547 436492 899 4 8719 2025-03-12 20:55:27.708 2025-03-12 20:55:27.708 435505 16230 435641 656 1 8720 2025-03-12 22:24:20.941 2025-03-12 22:24:20.941 435505 16230 435710 17727 1 8721 2025-03-12 22:12:52.183 2025-03-12 22:12:52.183 435505 16230 435700 5112 2 8722 2025-03-12 22:47:23.929 2025-03-12 22:47:23.929 435505 16230 435729 3990 2 8723 2025-03-12 18:41:17.145 2025-03-12 18:41:17.145 435509 5497 435512 986 1 8724 2025-03-12 19:01:08.589 2025-03-12 19:01:08.589 435525 13327 435529 6765 1 8725 2025-03-12 21:10:09.569 2025-03-12 21:10:09.569 435514 5828 435651 17392 1 8726 2025-03-12 18:57:29.028 2025-03-12 18:57:29.028 435515 9552 435525 13327 1 8727 2025-03-12 19:01:08.589 2025-03-12 19:01:08.589 435515 9552 435529 6765 2 8728 2025-03-12 22:01:32.075 2025-03-12 22:01:32.075 435515 9552 435692 21398 1 8729 2025-03-12 19:56:07.647 2025-03-12 19:56:07.647 435516 4395 435585 21427 1 8730 2025-03-12 20:48:55.558 2025-03-12 20:48:55.558 435516 4395 435638 13467 1 8731 2025-03-12 21:46:44.661 2025-03-12 21:46:44.661 435516 4395 435677 20756 2 8732 2025-03-12 22:17:48.022 2025-03-12 22:17:48.022 435516 4395 435706 18528 1 8733 2025-03-12 23:05:59.291 2025-03-12 23:05:59.291 435516 4395 435742 718 1 8734 2025-03-13 10:48:15.182 2025-03-13 10:48:15.182 435516 4395 436137 14260 1 8735 2025-03-12 20:58:01.227 2025-03-12 20:58:01.227 435516 4395 435644 726 1 8736 2025-03-12 21:39:42.586 2025-03-12 21:39:42.586 435516 4395 435670 15560 2 8737 2025-03-12 21:21:30.391 2025-03-12 21:21:30.391 435516 4395 435664 21518 1 8738 2025-03-12 21:40:09.043 2025-03-12 21:40:09.043 435516 4395 435672 21514 2 8739 2025-03-12 22:16:34.457 2025-03-12 22:16:34.457 435516 4395 435705 17494 3 8740 2025-03-12 19:24:01.18 2025-03-12 19:24:01.18 435517 1626 435549 13547 1 8741 2025-03-12 19:49:02.139 2025-03-12 19:49:02.139 435521 18526 435578 20254 1 8742 2025-03-12 19:39:16.769 2025-03-12 19:39:16.769 435559 18017 435568 13987 1 8743 2025-03-12 19:42:19.177 2025-03-12 19:42:19.177 435559 18017 435572 11073 2 8744 2025-03-12 19:56:01.269 2025-03-12 19:56:01.269 435559 18017 435584 4538 3 8745 2025-03-13 00:27:58.21 2025-03-13 00:27:58.21 435527 9916 435771 20616 1 8746 2025-03-12 22:00:56.207 2025-03-12 22:00:56.207 435530 21631 435689 18494 1 8747 2025-03-12 20:04:04.167 2025-03-12 20:04:04.167 435541 9348 435598 21518 2 8748 2025-03-12 19:10:34.44 2025-03-12 19:10:34.44 435541 9348 435542 9352 1 8749 2025-03-12 20:05:32.956 2025-03-12 20:05:32.956 435541 9348 435600 13921 3 8750 2025-03-12 20:10:29.162 2025-03-12 20:10:29.162 435541 9348 435607 9166 4 8751 2025-03-12 20:04:04.167 2025-03-12 20:04:04.167 435542 9352 435598 21518 1 8752 2025-03-12 20:05:32.956 2025-03-12 20:05:32.956 435542 9352 435600 13921 2 8753 2025-03-12 20:10:29.162 2025-03-12 20:10:29.162 435542 9352 435607 9166 3 8754 2025-03-13 01:01:48.278 2025-03-13 01:01:48.278 435544 679 435788 1438 1 8755 2025-03-13 02:43:54.245 2025-03-13 02:43:54.245 435545 17519 435838 638 2 8756 2025-03-12 19:19:04.088 2025-03-12 19:19:04.088 435545 17519 435547 4079 1 8757 2025-03-12 19:26:42.536 2025-03-12 19:26:42.536 435545 17519 435553 993 2 8758 2025-03-12 19:27:57.323 2025-03-12 19:27:57.323 435545 17519 435555 20734 3 8759 2025-03-13 02:43:54.245 2025-03-13 02:43:54.245 435547 4079 435838 638 1 8760 2025-03-12 19:26:42.536 2025-03-12 19:26:42.536 435547 4079 435553 993 1 8761 2025-03-12 19:27:57.323 2025-03-12 19:27:57.323 435547 4079 435555 20734 2 8762 2025-03-12 20:08:27.36 2025-03-12 20:08:27.36 435548 16948 435604 2285 1 8763 2025-03-12 23:26:21.095 2025-03-12 23:26:21.095 435552 15560 435748 7978 1 8764 2025-03-12 19:27:57.323 2025-03-12 19:27:57.323 435553 993 435555 20734 1 8765 2025-03-12 19:31:52.33 2025-03-12 19:31:52.33 435556 21405 435559 18017 1 8766 2025-03-12 19:39:16.769 2025-03-12 19:39:16.769 435556 21405 435568 13987 2 8767 2025-03-12 19:42:19.177 2025-03-12 19:42:19.177 435556 21405 435572 11073 3 8768 2025-03-12 19:56:01.269 2025-03-12 19:56:01.269 435556 21405 435584 4538 4 8769 2025-03-12 23:58:20.027 2025-03-12 23:58:20.027 435556 21405 435762 9355 1 8770 2025-03-13 03:39:09.87 2025-03-13 03:39:09.87 435557 1723 435867 8245 1 8771 2025-03-12 20:05:13.527 2025-03-12 20:05:13.527 435564 17106 435599 5036 1 8772 2025-03-12 19:40:08.2 2025-03-12 19:40:08.2 435565 19888 435570 8954 1 8773 2025-03-12 20:02:47.397 2025-03-12 20:02:47.397 435565 19888 435594 13767 3 8774 2025-03-12 19:43:40.652 2025-03-12 19:43:40.652 435565 19888 435573 21136 2 8775 2025-03-12 19:39:02.981 2025-03-12 19:39:02.981 435566 3656 435567 16970 1 8776 2025-03-12 19:42:19.177 2025-03-12 19:42:19.177 435568 13987 435572 11073 1 8777 2025-03-12 19:56:01.269 2025-03-12 19:56:01.269 435568 13987 435584 4538 2 8778 2025-03-12 20:02:47.397 2025-03-12 20:02:47.397 435570 8954 435594 13767 2 8779 2025-03-12 19:43:40.652 2025-03-12 19:43:40.652 435570 8954 435573 21136 1 8780 2025-03-12 19:56:01.269 2025-03-12 19:56:01.269 435572 11073 435584 4538 1 8781 2025-03-12 20:02:47.397 2025-03-12 20:02:47.397 435573 21136 435594 13767 1 8782 2025-03-12 19:55:27.679 2025-03-12 19:55:27.679 435574 20434 435582 5500 1 8783 2025-03-13 10:15:13.182 2025-03-13 10:15:13.182 435574 20434 436096 2724 1 8784 2025-03-13 13:36:24.928 2025-03-13 13:36:24.928 436258 15336 436330 18309 1 8785 2025-03-13 14:38:03.331 2025-03-13 14:38:03.331 436258 15336 436409 20715 1 8786 2025-03-13 14:57:48.97 2025-03-13 14:57:48.97 436258 15336 436432 1493 2 8787 2025-03-13 14:57:57.642 2025-03-13 14:57:57.642 436258 15336 436433 21249 2 8788 2025-03-13 15:50:47.13 2025-03-13 15:50:47.13 436258 15336 436512 7667 2 8789 2025-03-13 18:37:25.792 2025-03-13 18:37:25.792 436258 15336 436642 8168 2 8790 2025-03-13 18:41:04.11 2025-03-13 18:41:04.11 436258 15336 436646 18271 1 8791 2025-03-12 19:56:36.724 2025-03-12 19:56:36.724 435577 6741 435586 8729 1 8792 2025-03-12 19:59:23.781 2025-03-12 19:59:23.781 435577 6741 435591 2061 1 8793 2025-03-12 20:01:21.708 2025-03-12 20:01:21.708 435577 6741 435592 10398 1 8794 2025-03-12 22:20:08.424 2025-03-12 22:20:08.424 435577 6741 435708 1745 1 8795 2025-03-12 20:39:41.868 2025-03-12 20:39:41.868 435579 3377 435630 16556 1 8796 2025-03-12 21:01:10.537 2025-03-12 21:01:10.537 435579 3377 435647 15978 1 8797 2025-03-13 02:35:24.391 2025-03-13 02:35:24.391 435579 3377 435833 687 2 8798 2025-03-13 02:39:01.609 2025-03-13 02:39:01.609 435579 3377 435835 20998 1 8799 2025-03-12 20:25:02.568 2025-03-12 20:25:02.568 435579 3377 435616 4474 1 8800 2025-03-12 21:25:01.572 2025-03-12 21:25:01.572 435579 3377 435665 20243 1 8801 2025-03-13 00:40:49.918 2025-03-13 00:40:49.918 435579 3377 435774 1213 1 8802 2025-03-12 22:00:00.387 2025-03-12 22:00:00.387 435580 699 435688 15180 1 8803 2025-03-12 20:35:30.369 2025-03-12 20:35:30.369 435583 19992 435624 666 1 8804 2025-03-13 02:39:02.017 2025-03-13 02:39:02.017 435650 11298 435836 827 2 8805 2025-03-13 02:56:39.607 2025-03-13 02:56:39.607 435650 11298 435845 10698 4 8806 2025-03-13 09:22:11.535 2025-03-13 09:22:11.535 435650 11298 436054 20825 5 8807 2025-03-13 01:45:01.694 2025-03-13 01:45:01.694 435650 11298 435814 7674 1 8808 2025-03-13 02:53:27.618 2025-03-13 02:53:27.618 435650 11298 435843 6191 3 8809 2025-03-13 09:44:54.862 2025-03-13 09:44:54.862 435650 11298 436078 5694 6 8810 2025-03-12 21:50:20.991 2025-03-12 21:50:20.991 435596 16356 435683 20205 1 8811 2025-03-13 01:03:05.649 2025-03-13 01:03:05.649 435596 16356 435791 8242 1 8812 2025-03-13 09:00:44.464 2025-03-13 09:00:44.464 435596 16356 436035 3656 1 8813 2025-03-13 02:19:15.343 2025-03-13 02:19:15.343 435596 16356 435829 16754 2 8814 2025-03-12 20:05:32.956 2025-03-12 20:05:32.956 435598 21518 435600 13921 1 8815 2025-03-12 20:10:29.162 2025-03-12 20:10:29.162 435598 21518 435607 9166 2 8816 2025-03-12 20:10:29.162 2025-03-12 20:10:29.162 435600 13921 435607 9166 1 8817 2025-03-12 20:16:22.839 2025-03-12 20:16:22.839 435605 21405 435612 19193 1 8818 2025-03-12 20:27:32.963 2025-03-12 20:27:32.963 435605 21405 435619 1465 2 8819 2025-03-12 20:31:29.446 2025-03-12 20:31:29.446 435605 21405 435621 11153 3 8820 2025-03-13 01:51:28.484 2025-03-13 01:51:28.484 435605 21405 435816 15049 3 8821 2025-03-12 22:12:52.183 2025-03-12 22:12:52.183 435641 656 435700 5112 1 8822 2025-03-12 21:46:09.481 2025-03-12 21:46:09.481 435609 21620 435676 4802 1 8823 2025-03-12 23:43:39.983 2025-03-12 23:43:39.983 435609 21620 435753 6717 2 8824 2025-03-12 20:15:34.595 2025-03-12 20:15:34.595 435610 10554 435611 21672 1 8825 2025-03-12 20:42:15.436 2025-03-12 20:42:15.436 435610 10554 435631 11590 1 8826 2025-03-12 21:19:30.519 2025-03-12 21:19:30.519 435610 10554 435663 21393 1 8827 2025-03-12 23:42:05.028 2025-03-12 23:42:05.028 435610 10554 435752 20972 2 8828 2025-03-13 05:27:23.545 2025-03-13 05:27:23.545 435610 10554 435918 15703 2 8829 2025-03-13 00:23:22.133 2025-03-13 00:23:22.133 435610 10554 435767 15139 1 8830 2025-03-13 05:11:38.427 2025-03-13 05:11:38.427 435610 10554 435913 15213 1 8831 2025-03-13 10:01:16.594 2025-03-13 10:01:16.594 435610 10554 436086 11716 1 8832 2025-03-13 15:42:51.591 2025-03-13 15:42:51.591 435610 10554 436506 891 3 8833 2025-03-12 20:51:19.782 2025-03-12 20:51:19.782 435610 10554 435640 19494 2 8834 2025-03-12 23:25:22.798 2025-03-12 23:25:22.798 435610 10554 435747 13216 1 8835 2025-03-13 03:15:41.9 2025-03-13 03:15:41.9 435610 10554 435856 10979 1 8836 2025-03-13 10:04:42.72 2025-03-13 10:04:42.72 435610 10554 436089 20019 2 8837 2025-03-13 13:40:43.365 2025-03-13 13:40:43.365 435610 10554 436337 13327 2 8838 2025-03-12 20:27:32.963 2025-03-12 20:27:32.963 435612 19193 435619 1465 1 8839 2025-03-12 20:31:29.446 2025-03-12 20:31:29.446 435612 19193 435621 11153 2 8840 2025-03-13 01:51:28.484 2025-03-13 01:51:28.484 435612 19193 435816 15049 2 8841 2025-03-13 10:14:26.923 2025-03-13 10:14:26.923 435615 895 436094 16336 2 8842 2025-03-12 20:37:35.443 2025-03-12 20:37:35.443 435615 895 435628 854 1 8843 2025-03-12 22:51:36.533 2025-03-12 22:51:36.533 435617 15560 435734 6653 1 8844 2025-03-12 22:43:26.674 2025-03-12 22:43:26.674 435617 15560 435726 7760 1 8845 2025-03-12 22:13:08.226 2025-03-12 22:13:08.226 435653 13753 435701 1236 1 8846 2025-03-13 10:35:12.039 2025-03-13 10:35:12.039 435639 2402 436121 902 2 8847 2025-03-13 10:43:54.516 2025-03-13 10:43:54.516 435639 2402 436131 9339 3 8848 2025-03-12 23:43:59.143 2025-03-12 23:43:59.143 435639 2402 435754 844 1 8849 2025-03-13 09:23:00.583 2025-03-13 09:23:00.583 435639 2402 436055 876 2 8850 2025-03-12 22:17:55.167 2025-03-12 22:17:55.167 435639 2402 435707 20788 2 8851 2025-03-13 01:56:19.381 2025-03-13 01:56:19.381 435639 2402 435822 10094 1 8852 2025-03-13 10:14:41.502 2025-03-13 10:14:41.502 435639 2402 436095 3456 1 8853 2025-03-13 03:34:49.426 2025-03-13 03:34:49.426 435639 2402 435865 12490 1 8854 2025-03-13 04:24:43.74 2025-03-13 04:24:43.74 435639 2402 435886 7659 1 8855 2025-03-13 07:52:00.895 2025-03-13 07:52:00.895 435639 2402 435993 18529 1 8856 2025-03-12 20:59:08.761 2025-03-12 20:59:08.761 435639 2402 435646 20906 1 8857 2025-03-13 01:00:36.471 2025-03-13 01:00:36.471 435639 2402 435787 909 3 8858 2025-03-12 21:59:02.343 2025-03-12 21:59:02.343 435639 2402 435687 10102 1 8859 2025-03-12 22:36:50.753 2025-03-12 22:36:50.753 435639 2402 435719 4287 1 8860 2025-03-13 03:28:52.796 2025-03-13 03:28:52.796 435639 2402 435863 20969 1 8861 2025-03-13 15:40:13.586 2025-03-13 15:40:13.586 435639 2402 436502 15577 2 8862 2025-03-12 20:31:29.446 2025-03-12 20:31:29.446 435619 1465 435621 11153 1 8863 2025-03-13 01:51:28.484 2025-03-13 01:51:28.484 435619 1465 435816 15049 1 8864 2025-03-12 21:11:26.097 2025-03-12 21:11:26.097 435649 1803 435652 2961 1 8865 2025-03-12 21:12:44.588 2025-03-12 21:12:44.588 435649 1803 435654 19117 2 8866 2025-03-12 21:47:03.418 2025-03-12 21:47:03.418 435649 1803 435678 8289 3 8867 2025-03-12 21:50:46.528 2025-03-12 21:50:46.528 435649 1803 435684 7979 1 8868 2025-03-13 13:43:40.206 2025-03-13 13:43:40.206 435649 1803 436346 5725 1 8869 2025-03-12 21:12:44.588 2025-03-12 21:12:44.588 435652 2961 435654 19117 1 8870 2025-03-12 21:47:03.418 2025-03-12 21:47:03.418 435652 2961 435678 8289 2 8871 2025-03-13 02:39:44.432 2025-03-13 02:39:44.432 435622 4345 435837 18829 4 8872 2025-03-12 20:35:20.41 2025-03-12 20:35:20.41 435622 4345 435623 919 1 8873 2025-03-12 22:27:21.037 2025-03-12 22:27:21.037 435622 4345 435713 2431 1 8874 2025-03-12 22:35:15.314 2025-03-12 22:35:15.314 435622 4345 435717 18174 3 8875 2025-03-12 22:40:00.172 2025-03-12 22:40:00.172 435622 4345 435722 20588 3 8876 2025-03-12 23:54:20.462 2025-03-12 23:54:20.462 435622 4345 435757 20717 6 8877 2025-03-13 00:28:02.56 2025-03-13 00:28:02.56 435622 4345 435772 1726 1 8878 2025-03-13 01:42:00.647 2025-03-13 01:42:00.647 435622 4345 435811 20858 3 8879 2025-03-12 22:58:06.303 2025-03-12 22:58:06.303 435622 4345 435739 8726 5 8880 2025-03-12 22:32:32.55 2025-03-12 22:32:32.55 435622 4345 435715 899 2 8881 2025-03-12 22:33:56.728 2025-03-12 22:33:56.728 435622 4345 435716 2459 2 8882 2025-03-12 22:37:27.774 2025-03-12 22:37:27.774 435622 4345 435720 6463 3 8883 2025-03-12 22:49:39.575 2025-03-12 22:49:39.575 435622 4345 435733 1428 3 8884 2025-03-12 22:52:15.591 2025-03-12 22:52:15.591 435622 4345 435735 12911 4 8885 2025-03-13 00:41:40.141 2025-03-13 00:41:40.141 435622 4345 435775 17533 2 8886 2025-03-12 23:12:28.737 2025-03-12 23:12:28.737 435622 4345 435744 17824 5 8887 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 435622 4345 435758 9276 7 8888 2025-03-13 02:47:39.043 2025-03-13 02:47:39.043 435622 4345 435840 21398 4 8889 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 435622 4345 435766 946 7 8890 2025-03-13 03:53:18.568 2025-03-13 03:53:18.568 435622 4345 435876 18116 5 8891 2025-03-12 22:35:15.314 2025-03-12 22:35:15.314 435623 919 435717 18174 2 8892 2025-03-12 22:32:32.55 2025-03-12 22:32:32.55 435623 919 435715 899 1 8893 2025-03-13 00:29:45.011 2025-03-13 00:29:45.011 435627 5069 435773 20979 1 8894 2025-03-13 10:14:26.923 2025-03-13 10:14:26.923 435628 854 436094 16336 1 8895 2025-03-12 20:51:19.782 2025-03-12 20:51:19.782 435631 11590 435640 19494 1 8896 2025-03-12 21:39:42.586 2025-03-12 21:39:42.586 435644 726 435670 15560 1 8897 2025-03-12 21:47:03.418 2025-03-12 21:47:03.418 435654 19117 435678 8289 1 8898 2025-03-10 19:40:22.292 2025-03-10 19:40:22.292 433076 1717 433080 21012 1 8899 2025-03-11 00:52:27.073 2025-03-11 00:52:27.073 433076 1717 433333 18557 2 8900 2025-03-13 13:47:09.18 2025-03-13 13:47:09.18 435740 1617 436351 2961 2 8901 2025-03-13 05:58:41.909 2025-03-13 05:58:41.909 435740 1617 435939 5759 1 8902 2025-03-22 15:49:14.059 2025-03-22 15:49:14.059 448386 6526 448439 1833 1 8903 2025-03-12 22:14:57.347 2025-03-12 22:14:57.347 435657 3417 435704 20555 1 8904 2025-03-12 22:46:35.078 2025-03-12 22:46:35.078 435657 3417 435728 19581 1 8905 2025-03-13 13:07:45.621 2025-03-13 13:07:45.621 435657 3417 436306 1745 5 8906 2025-03-13 01:18:08.402 2025-03-13 01:18:08.402 435657 3417 435797 9026 2 8907 2025-03-13 01:21:33.559 2025-03-13 01:21:33.559 435657 3417 435801 5870 2 8908 2025-03-13 01:21:39.687 2025-03-13 01:21:39.687 435657 3417 435802 7580 2 8909 2025-03-13 03:44:09.919 2025-03-13 03:44:09.919 435657 3417 435870 1401 2 8910 2025-03-13 05:26:19.33 2025-03-13 05:26:19.33 435657 3417 435917 11829 1 8911 2025-03-13 05:27:50.882 2025-03-13 05:27:50.882 435657 3417 435920 21091 2 8912 2025-03-13 05:44:48.176 2025-03-13 05:44:48.176 435657 3417 435936 2961 3 8913 2025-03-13 13:12:49.175 2025-03-13 13:12:49.175 435657 3417 436313 9356 6 8914 2025-03-13 15:12:05.479 2025-03-13 15:12:05.479 435657 3417 436457 4819 1 8915 2025-03-12 22:24:36.829 2025-03-12 22:24:36.829 435657 3417 435711 13599 1 8916 2025-03-13 01:21:11.891 2025-03-13 01:21:11.891 435657 3417 435800 11515 3 8917 2025-03-13 05:31:44.675 2025-03-13 05:31:44.675 435657 3417 435925 21803 3 8918 2025-03-13 10:58:46.487 2025-03-13 10:58:46.487 435657 3417 436157 20019 4 8919 2025-03-13 10:58:12.366 2025-03-13 10:58:12.366 435657 3417 436155 929 3 8920 2025-03-13 12:59:52.45 2025-03-13 12:59:52.45 435657 3417 436294 7673 1 8921 2025-03-13 16:03:03.482 2025-03-13 16:03:03.482 435657 3417 436521 21019 2 8922 2025-03-13 16:07:19.456 2025-03-13 16:07:19.456 435657 3417 436525 21522 2 8923 2025-03-12 21:16:44.175 2025-03-12 21:16:44.175 435658 1245 435660 7097 1 8924 2025-03-12 23:42:05.028 2025-03-12 23:42:05.028 435663 21393 435752 20972 1 8925 2025-03-12 21:46:44.661 2025-03-12 21:46:44.661 435664 21518 435677 20756 1 8926 2025-03-12 21:40:09.043 2025-03-12 21:40:09.043 435664 21518 435672 21514 1 8927 2025-03-12 22:16:34.457 2025-03-12 22:16:34.457 435664 21518 435705 17494 2 8928 2025-03-12 22:06:04.287 2025-03-12 22:06:04.287 435679 4167 435694 21249 2 8929 2025-03-13 05:28:45.951 2025-03-13 05:28:45.951 435679 4167 435921 19535 2 8930 2025-03-12 22:22:53.643 2025-03-12 22:22:53.643 435679 4167 435709 19821 1 8931 2025-03-13 02:00:13.524 2025-03-13 02:00:13.524 435679 4167 435823 2942 1 8932 2025-03-13 03:22:08.871 2025-03-13 03:22:08.871 435679 4167 435859 10849 1 8933 2025-03-12 22:01:23.166 2025-03-12 22:01:23.166 435679 4167 435691 21262 1 8934 2025-03-13 05:29:24.362 2025-03-13 05:29:24.362 435679 4167 435923 10944 2 8935 2025-03-13 05:38:46.146 2025-03-13 05:38:46.146 435679 4167 435933 18473 2 8936 2025-03-13 10:57:36.049 2025-03-13 10:57:36.049 435679 4167 436154 2577 3 8937 2025-03-13 02:26:14.195 2025-03-13 02:26:14.195 435667 687 435831 1000 1 8938 2025-03-13 02:01:34.686 2025-03-13 02:01:34.686 435667 687 435824 2593 1 8939 2025-03-12 21:42:47.021 2025-03-12 21:42:47.021 435667 687 435674 861 1 8940 2025-03-13 04:42:04.093 2025-03-13 04:42:04.093 435669 626 435899 4173 1 8941 2025-03-13 14:01:26.644 2025-03-13 14:01:26.644 435669 626 436370 690 3 8942 2025-03-13 11:51:27.233 2025-03-13 11:51:27.233 435669 626 436223 8729 2 8943 2025-03-13 15:25:10.429 2025-03-13 15:25:10.429 435669 626 436479 9348 4 8944 2025-03-12 23:43:39.983 2025-03-12 23:43:39.983 435676 4802 435753 6717 1 8945 2025-03-12 22:16:34.457 2025-03-12 22:16:34.457 435677 20756 435705 17494 1 8946 2025-03-13 05:38:26.634 2025-03-13 05:38:26.634 435682 16970 435932 902 1 8947 2025-03-13 15:24:33.116 2025-03-13 15:24:33.116 435682 16970 436476 2508 1 8948 2025-03-12 22:12:15.447 2025-03-12 22:12:15.447 435690 837 435698 6430 1 8949 2025-03-13 15:08:41.618 2025-03-13 15:08:41.618 435690 837 436452 1618 4 8950 2025-03-13 15:28:59.69 2025-03-13 15:28:59.69 435690 837 436486 780 5 8951 2025-03-12 22:13:50.506 2025-03-12 22:13:50.506 435690 837 435702 15146 2 8952 2025-03-13 05:34:27.099 2025-03-13 05:34:27.099 435690 837 435929 19531 1 8953 2025-03-13 12:36:32.221 2025-03-13 12:36:32.221 435690 837 436271 14220 2 8954 2025-03-13 10:17:21.175 2025-03-13 10:17:21.175 435690 837 436101 2285 1 8955 2025-03-13 13:41:45.174 2025-03-13 13:41:45.174 435690 837 436341 21131 3 8956 2025-03-13 15:37:15.34 2025-03-13 15:37:15.34 435690 837 436500 19569 6 8957 2025-03-12 22:06:04.287 2025-03-12 22:06:04.287 435691 21262 435694 21249 1 8958 2025-03-12 23:54:20.462 2025-03-12 23:54:20.462 435735 12911 435757 20717 2 8959 2025-03-12 22:58:06.303 2025-03-12 22:58:06.303 435735 12911 435739 8726 1 8960 2025-03-12 23:12:28.737 2025-03-12 23:12:28.737 435735 12911 435744 17824 1 8961 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 435735 12911 435758 9276 3 8962 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 435735 12911 435766 946 3 8963 2025-03-13 13:07:45.621 2025-03-13 13:07:45.621 435728 19581 436306 1745 4 8964 2025-03-13 01:18:08.402 2025-03-13 01:18:08.402 435728 19581 435797 9026 1 8965 2025-03-13 05:27:50.882 2025-03-13 05:27:50.882 435728 19581 435920 21091 1 8966 2025-03-13 13:12:49.175 2025-03-13 13:12:49.175 435728 19581 436313 9356 5 8967 2025-03-13 01:21:11.891 2025-03-13 01:21:11.891 435728 19581 435800 11515 2 8968 2025-03-13 05:31:44.675 2025-03-13 05:31:44.675 435728 19581 435925 21803 2 8969 2025-03-13 10:58:46.487 2025-03-13 10:58:46.487 435728 19581 436157 20019 3 8970 2025-03-13 10:58:12.366 2025-03-13 10:58:12.366 435728 19581 436155 929 2 8971 2025-03-12 22:13:50.506 2025-03-12 22:13:50.506 435698 6430 435702 15146 1 8972 2025-03-13 01:21:39.687 2025-03-13 01:21:39.687 435704 20555 435802 7580 1 8973 2025-03-13 01:00:36.471 2025-03-13 01:00:36.471 435707 20788 435787 909 1 8974 2025-03-13 05:28:45.951 2025-03-13 05:28:45.951 435709 19821 435921 19535 1 8975 2025-03-12 22:47:23.929 2025-03-12 22:47:23.929 435710 17727 435729 3990 1 8976 2025-03-13 01:21:33.559 2025-03-13 01:21:33.559 435711 13599 435801 5870 1 8977 2025-03-13 03:44:09.919 2025-03-13 03:44:09.919 435711 13599 435870 1401 1 8978 2025-03-13 05:44:48.176 2025-03-13 05:44:48.176 435711 13599 435936 2961 2 8979 2025-03-12 22:40:00.172 2025-03-12 22:40:00.172 435713 2431 435722 20588 2 8980 2025-03-12 23:54:20.462 2025-03-12 23:54:20.462 435713 2431 435757 20717 5 8981 2025-03-12 22:58:06.303 2025-03-12 22:58:06.303 435713 2431 435739 8726 4 8982 2025-03-12 22:33:56.728 2025-03-12 22:33:56.728 435713 2431 435716 2459 1 8983 2025-03-12 22:37:27.774 2025-03-12 22:37:27.774 435713 2431 435720 6463 2 8984 2025-03-12 22:49:39.575 2025-03-12 22:49:39.575 435713 2431 435733 1428 2 8985 2025-03-12 22:52:15.591 2025-03-12 22:52:15.591 435713 2431 435735 12911 3 8986 2025-03-12 23:12:28.737 2025-03-12 23:12:28.737 435713 2431 435744 17824 4 8987 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 435713 2431 435758 9276 6 8988 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 435713 2431 435766 946 6 8989 2025-03-13 15:42:51.591 2025-03-13 15:42:51.591 435767 15139 436506 891 2 8990 2025-03-13 13:40:43.365 2025-03-13 13:40:43.365 435767 15139 436337 13327 1 8991 2025-03-12 22:35:15.314 2025-03-12 22:35:15.314 435715 899 435717 18174 1 8992 2025-03-12 22:40:00.172 2025-03-12 22:40:00.172 435716 2459 435722 20588 1 8993 2025-03-12 23:54:20.462 2025-03-12 23:54:20.462 435716 2459 435757 20717 4 8994 2025-03-12 22:58:06.303 2025-03-12 22:58:06.303 435716 2459 435739 8726 3 8995 2025-03-12 22:37:27.774 2025-03-12 22:37:27.774 435716 2459 435720 6463 1 8996 2025-03-12 22:49:39.575 2025-03-12 22:49:39.575 435716 2459 435733 1428 1 8997 2025-03-12 22:52:15.591 2025-03-12 22:52:15.591 435716 2459 435735 12911 2 8998 2025-03-12 23:12:28.737 2025-03-12 23:12:28.737 435716 2459 435744 17824 3 8999 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 435716 2459 435758 9276 5 9000 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 435716 2459 435766 946 5 9001 2025-03-13 03:04:46.024 2025-03-13 03:04:46.024 435718 3461 435848 12744 1 9002 2025-03-13 15:40:13.586 2025-03-13 15:40:13.586 435719 4287 436502 15577 1 9003 2025-03-12 23:54:20.462 2025-03-12 23:54:20.462 435722 20588 435757 20717 3 9004 2025-03-12 22:58:06.303 2025-03-12 22:58:06.303 435722 20588 435739 8726 2 9005 2025-03-12 22:52:15.591 2025-03-12 22:52:15.591 435722 20588 435735 12911 1 9006 2025-03-12 23:12:28.737 2025-03-12 23:12:28.737 435722 20588 435744 17824 2 9007 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 435722 20588 435758 9276 4 9008 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 435722 20588 435766 946 4 9009 2025-03-13 02:39:44.432 2025-03-13 02:39:44.432 435775 17533 435837 18829 2 9010 2025-03-13 01:42:00.647 2025-03-13 01:42:00.647 435775 17533 435811 20858 1 9011 2025-03-13 02:47:39.043 2025-03-13 02:47:39.043 435775 17533 435840 21398 2 9012 2025-03-13 03:53:18.568 2025-03-13 03:53:18.568 435775 17533 435876 18116 3 9013 2025-03-12 23:54:20.462 2025-03-12 23:54:20.462 435744 17824 435757 20717 1 9014 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 435744 17824 435758 9276 2 9015 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 435744 17824 435766 946 2 9016 2025-03-12 23:56:32.119 2025-03-12 23:56:32.119 435746 19217 435760 18402 1 9017 2025-03-13 10:21:11.609 2025-03-13 10:21:11.609 435746 19217 436103 18314 1 9018 2025-03-13 13:50:27.942 2025-03-13 13:50:27.942 435746 19217 436354 20812 2 9019 2025-03-12 23:58:06.724 2025-03-12 23:58:06.724 435746 19217 435761 20826 1 9020 2025-03-13 01:08:30.237 2025-03-13 01:08:30.237 435746 19217 435794 21090 1 9021 2025-03-13 10:51:13.991 2025-03-13 10:51:13.991 435746 19217 436142 959 1 9022 2025-03-13 11:15:02.081 2025-03-13 11:15:02.081 435746 19217 436176 19842 1 9023 2025-03-13 13:55:43.92 2025-03-13 13:55:43.92 435746 19217 436360 4027 2 9024 2025-03-13 05:27:23.545 2025-03-13 05:27:23.545 435747 13216 435918 15703 1 9025 2025-03-13 04:41:20.68 2025-03-13 04:41:20.68 435749 20133 435898 3544 1 9026 2025-03-13 12:05:04.927 2025-03-13 12:05:04.927 435749 20133 436232 20120 2 9027 2025-03-13 12:50:37.848 2025-03-13 12:50:37.848 435749 20133 436283 11862 3 9028 2025-03-13 13:45:57.619 2025-03-13 13:45:57.619 435756 725 436349 18269 1 9029 2025-03-13 14:04:45.03 2025-03-13 14:04:45.03 435756 725 436373 16830 2 9030 2025-03-13 14:09:20.402 2025-03-13 14:09:20.402 435756 725 436380 4287 3 9031 2025-03-13 15:21:25.244 2025-03-13 15:21:25.244 435756 725 436467 7760 3 9032 2025-03-13 15:32:41.733 2025-03-13 15:32:41.733 435756 725 436492 899 3 9033 2025-03-12 23:54:39.756 2025-03-12 23:54:39.756 435757 20717 435758 9276 1 9034 2025-03-13 00:17:49.642 2025-03-13 00:17:49.642 435757 20717 435766 946 1 9035 2025-03-13 00:23:53.122 2025-03-13 00:23:53.122 435759 17221 435768 20691 1 9036 2025-03-13 01:55:59.127 2025-03-13 01:55:59.127 435759 17221 435821 2342 2 9037 2025-03-13 01:55:59.127 2025-03-13 01:55:59.127 435768 20691 435821 2342 1 9038 2025-03-13 04:20:10.586 2025-03-13 04:20:10.586 435769 16970 435885 13398 1 9039 2025-03-13 04:40:53.016 2025-03-13 04:40:53.016 435769 16970 435897 9184 1 9040 2025-03-13 03:05:04.374 2025-03-13 03:05:04.374 435770 20220 435849 16753 1 9041 2025-03-13 02:39:44.432 2025-03-13 02:39:44.432 435772 1726 435837 18829 3 9042 2025-03-13 01:42:00.647 2025-03-13 01:42:00.647 435772 1726 435811 20858 2 9043 2025-03-13 00:41:40.141 2025-03-13 00:41:40.141 435772 1726 435775 17533 1 9044 2025-03-13 02:47:39.043 2025-03-13 02:47:39.043 435772 1726 435840 21398 3 9045 2025-03-13 03:53:18.568 2025-03-13 03:53:18.568 435772 1726 435876 18116 4 9046 2025-03-13 02:35:24.391 2025-03-13 02:35:24.391 435774 1213 435833 687 1 9047 2025-03-13 03:06:28.839 2025-03-13 03:06:28.839 435776 17991 435850 21145 1 9048 2025-03-13 04:47:54.57 2025-03-13 04:47:54.57 435776 17991 435902 1009 2 9049 2025-03-13 01:10:35.11 2025-03-13 01:10:35.11 435783 15703 435795 1105 1 9050 2025-03-13 02:46:03.267 2025-03-13 02:46:03.267 435783 15703 435839 1960 2 9051 2025-03-13 03:07:58.629 2025-03-13 03:07:58.629 435783 15703 435851 10270 2 9052 2025-03-13 02:57:03.701 2025-03-13 02:57:03.701 435783 15703 435846 19303 2 9053 2025-03-13 13:46:11.379 2025-03-13 13:46:11.379 435786 1495 436350 2773 1 9054 2025-03-13 04:27:02.554 2025-03-13 04:27:02.554 435789 10398 435888 20911 1 9055 2025-03-13 02:19:15.343 2025-03-13 02:19:15.343 435791 8242 435829 16754 1 9056 2025-03-13 04:29:28.935 2025-03-13 04:29:28.935 435793 21062 435890 21139 1 9057 2025-03-13 06:49:12.205 2025-03-13 06:49:12.205 435793 21062 435961 20409 2 9058 2025-03-13 08:53:13.335 2025-03-13 08:53:13.335 435793 21062 436034 7913 2 9059 2025-03-13 13:09:18.715 2025-03-13 13:09:18.715 435793 21062 436309 9183 3 9060 2025-03-13 02:46:03.267 2025-03-13 02:46:03.267 435795 1105 435839 1960 1 9061 2025-03-13 03:07:58.629 2025-03-13 03:07:58.629 435795 1105 435851 10270 1 9062 2025-03-13 02:57:03.701 2025-03-13 02:57:03.701 435795 1105 435846 19303 1 9063 2025-03-13 01:21:11.891 2025-03-13 01:21:11.891 435797 9026 435800 11515 1 9064 2025-03-13 01:21:07.878 2025-03-13 01:21:07.878 435798 21216 435799 12951 1 9065 2025-03-13 01:44:50.292 2025-03-13 01:44:50.292 435798 21216 435813 7966 1 9066 2025-03-13 03:45:21.138 2025-03-13 03:45:21.138 435798 21216 435871 21734 1 9067 2025-03-13 01:39:31.648 2025-03-13 01:39:31.648 435804 17162 435809 5809 1 9068 2025-03-13 01:54:20.022 2025-03-13 01:54:20.022 435804 17162 435818 763 2 9069 2025-03-13 01:55:48.448 2025-03-13 01:55:48.448 435805 21320 435820 15510 1 9070 2025-03-13 07:52:31.596 2025-03-13 07:52:31.596 435805 21320 435994 14651 1 9071 2025-03-13 03:47:21.747 2025-03-13 03:47:21.747 435805 21320 435873 5293 1 9072 2025-03-13 09:46:51.957 2025-03-13 09:46:51.957 435805 21320 436080 633 1 9073 2025-03-13 11:03:46.878 2025-03-13 11:03:46.878 435805 21320 436161 16442 1 9074 2025-03-13 01:38:12.456 2025-03-13 01:38:12.456 435805 21320 435807 10981 1 9075 2025-03-13 01:39:09.169 2025-03-13 01:39:09.169 435805 21320 435808 17494 1 9076 2025-03-13 13:03:47.834 2025-03-13 13:03:47.834 436292 20577 436301 21485 1 9077 2025-03-13 03:11:10.97 2025-03-13 03:11:10.97 435806 20756 435852 4048 1 9078 2025-03-13 01:54:20.022 2025-03-13 01:54:20.022 435809 5809 435818 763 1 9079 2025-03-13 02:39:44.432 2025-03-13 02:39:44.432 435811 20858 435837 18829 1 9080 2025-03-13 02:47:39.043 2025-03-13 02:47:39.043 435811 20858 435840 21398 1 9081 2025-03-13 03:53:18.568 2025-03-13 03:53:18.568 435811 20858 435876 18116 2 9082 2025-03-13 01:55:40.732 2025-03-13 01:55:40.732 435812 685 435819 21062 1 9083 2025-03-13 02:47:47.381 2025-03-13 02:47:47.381 435812 685 435841 1195 1 9084 2025-03-13 01:52:59.487 2025-03-13 01:52:59.487 435812 685 435817 17713 1 9085 2025-03-13 04:28:17.857 2025-03-13 04:28:17.857 435812 685 435889 14472 1 9086 2025-03-13 02:39:02.017 2025-03-13 02:39:02.017 435814 7674 435836 827 1 9087 2025-03-13 02:56:39.607 2025-03-13 02:56:39.607 435814 7674 435845 10698 3 9088 2025-03-13 09:22:11.535 2025-03-13 09:22:11.535 435814 7674 436054 20825 4 9089 2025-03-13 02:53:27.618 2025-03-13 02:53:27.618 435814 7674 435843 6191 2 9090 2025-03-13 09:44:54.862 2025-03-13 09:44:54.862 435814 7674 436078 5694 5 9091 2025-03-13 05:29:24.362 2025-03-13 05:29:24.362 435823 2942 435923 10944 1 9092 2025-03-13 10:57:36.049 2025-03-13 10:57:36.049 435823 2942 436154 2577 2 9093 2025-03-13 02:05:18.951 2025-03-13 02:05:18.951 435826 19943 435827 21833 1 9094 2025-03-13 02:56:39.607 2025-03-13 02:56:39.607 435843 6191 435845 10698 1 9095 2025-03-13 09:22:11.535 2025-03-13 09:22:11.535 435843 6191 436054 20825 2 9096 2025-03-13 09:44:54.862 2025-03-13 09:44:54.862 435843 6191 436078 5694 3 9097 2025-03-13 09:22:11.535 2025-03-13 09:22:11.535 435845 10698 436054 20825 1 9098 2025-03-13 09:44:54.862 2025-03-13 09:44:54.862 435845 10698 436078 5694 2 9099 2025-03-13 03:44:06.241 2025-03-13 03:44:06.241 435847 5637 435869 10342 2 9100 2025-03-13 03:20:24.024 2025-03-13 03:20:24.024 435847 5637 435857 1983 1 9101 2025-03-13 04:30:06.739 2025-03-13 04:30:06.739 435847 5637 435892 9355 1 9102 2025-03-13 03:24:22.488 2025-03-13 03:24:22.488 435847 5637 435860 20924 1 9103 2025-03-13 04:36:58.571 2025-03-13 04:36:58.571 435847 5637 435894 17526 1 9104 2025-03-13 11:21:47.904 2025-03-13 11:21:47.904 435847 5637 436184 985 1 9105 2025-03-13 05:09:13.524 2025-03-13 05:09:13.524 435847 5637 435911 17172 3 9106 2025-03-13 15:03:51.653 2025-03-13 15:03:51.653 435847 5637 436441 20829 1 9107 2025-03-13 19:41:40.898 2025-03-13 19:41:40.898 435847 5637 436689 19663 1 9108 2025-03-13 04:47:54.57 2025-03-13 04:47:54.57 435850 21145 435902 1009 1 9109 2025-03-13 06:49:12.205 2025-03-13 06:49:12.205 435890 21139 435961 20409 1 9110 2025-03-13 08:53:13.335 2025-03-13 08:53:13.335 435890 21139 436034 7913 1 9111 2025-03-13 13:09:18.715 2025-03-13 13:09:18.715 435890 21139 436309 9183 2 9112 2025-03-13 05:09:13.524 2025-03-13 05:09:13.524 435869 10342 435911 17172 1 9113 2025-03-13 05:44:48.176 2025-03-13 05:44:48.176 435870 1401 435936 2961 1 9114 2025-03-13 09:11:45.594 2025-03-13 09:11:45.594 435907 18528 436044 19992 2 9115 2025-03-13 08:25:52.652 2025-03-13 08:25:52.652 435907 18528 436016 20987 1 9116 2025-03-13 08:20:38.378 2025-03-13 08:20:38.378 435907 18528 436010 21600 1 9117 2025-03-13 08:22:49.875 2025-03-13 08:22:49.875 435907 18528 436014 17011 1 9118 2025-03-13 08:30:18.984 2025-03-13 08:30:18.984 435907 18528 436019 20023 1 9119 2025-03-13 08:41:55.926 2025-03-13 08:41:55.926 435907 18528 436024 15337 2 9120 2025-03-13 09:35:54.931 2025-03-13 09:35:54.931 435907 18528 436069 19735 3 9121 2025-03-13 11:35:47.686 2025-03-13 11:35:47.686 435907 18528 436202 2961 3 9122 2025-03-13 14:09:14.355 2025-03-13 14:09:14.355 435907 18528 436379 19484 1 9123 2025-03-13 14:13:43.362 2025-03-13 14:13:43.362 435907 18528 436383 3377 3 9124 2025-03-13 17:27:01.225 2025-03-13 17:27:01.225 435907 18528 436591 9362 4 9125 2025-03-13 17:29:00.736 2025-03-13 17:29:00.736 435907 18528 436592 632 4 9126 2025-03-13 08:44:56.511 2025-03-13 08:44:56.511 435907 18528 436026 18068 3 9127 2025-03-13 09:11:19.838 2025-03-13 09:11:19.838 435907 18528 436043 21022 3 9128 2025-03-13 09:12:38.945 2025-03-13 09:12:38.945 435907 18528 436046 16176 2 9129 2025-03-13 09:10:22.094 2025-03-13 09:10:22.094 435907 18528 436041 16336 2 9130 2025-03-13 09:08:55.124 2025-03-13 09:08:55.124 435907 18528 436040 18265 2 9131 2025-03-13 05:38:46.146 2025-03-13 05:38:46.146 435859 10849 435933 18473 1 9132 2025-03-13 03:44:06.241 2025-03-13 03:44:06.241 435860 20924 435869 10342 1 9133 2025-03-13 05:09:13.524 2025-03-13 05:09:13.524 435860 20924 435911 17172 2 9134 2025-03-13 10:13:16 2025-03-13 10:13:16 435861 12768 436092 9378 1 9135 2025-03-13 04:37:02.66 2025-03-13 04:37:02.66 435893 1090 435895 621 1 9136 2025-03-13 13:48:14.013 2025-03-13 13:48:14.013 435882 20596 436352 688 1 9137 2025-03-13 13:51:02.364 2025-03-13 13:51:02.364 435882 20596 436356 5852 2 9138 2025-03-13 09:41:48.64 2025-03-13 09:41:48.64 435883 3377 436075 21555 1 9139 2025-03-13 09:33:47.412 2025-03-13 09:33:47.412 435883 3377 436068 4323 1 9140 2025-03-13 04:53:21.091 2025-03-13 04:53:21.091 435887 16353 435904 4314 1 9141 2025-03-13 08:01:27.116 2025-03-13 08:01:27.116 435887 16353 436001 1044 3 9142 2025-03-13 08:21:32.688 2025-03-13 08:21:32.688 435887 16353 436011 10433 4 9143 2025-03-13 06:43:36.121 2025-03-13 06:43:36.121 435887 16353 435957 9349 2 9144 2025-03-13 08:36:29.183 2025-03-13 08:36:29.183 435887 16353 436021 17050 5 9145 2025-03-13 11:15:16.064 2025-03-13 11:15:16.064 435887 16353 436178 20614 6 9146 2025-03-13 12:05:04.927 2025-03-13 12:05:04.927 435898 3544 436232 20120 1 9147 2025-03-13 12:50:37.848 2025-03-13 12:50:37.848 435898 3544 436283 11862 2 9148 2025-03-13 14:01:26.644 2025-03-13 14:01:26.644 435899 4173 436370 690 2 9149 2025-03-13 11:51:27.233 2025-03-13 11:51:27.233 435899 4173 436223 8729 1 9150 2025-03-13 15:25:10.429 2025-03-13 15:25:10.429 435899 4173 436479 9348 3 9151 2025-03-13 08:01:27.116 2025-03-13 08:01:27.116 435904 4314 436001 1044 2 9152 2025-03-13 08:21:32.688 2025-03-13 08:21:32.688 435904 4314 436011 10433 3 9153 2025-03-13 06:43:36.121 2025-03-13 06:43:36.121 435904 4314 435957 9349 1 9154 2025-03-13 08:36:29.183 2025-03-13 08:36:29.183 435904 4314 436021 17050 4 9155 2025-03-13 11:15:16.064 2025-03-13 11:15:16.064 435904 4314 436178 20614 5 9156 2025-03-13 07:09:59.273 2025-03-13 07:09:59.273 435905 2329 435966 4027 1 9157 2025-03-13 13:02:02.405 2025-03-13 13:02:02.405 435905 2329 436299 4602 2 9158 2025-03-13 12:57:26.448 2025-03-13 12:57:26.448 435905 2329 436287 20972 2 9159 2025-03-13 11:40:01.763 2025-03-13 11:40:01.763 435905 2329 436211 1726 1 9160 2025-03-13 12:59:12.456 2025-03-13 12:59:12.456 435905 2329 436293 10821 2 9161 2025-03-13 13:00:30.345 2025-03-13 13:00:30.345 435905 2329 436296 21037 2 9162 2025-03-13 14:48:57.873 2025-03-13 14:48:57.873 435905 2329 436415 10016 1 9163 2025-03-13 14:53:13.325 2025-03-13 14:53:13.325 435905 2329 436424 18529 2 9164 2025-03-13 16:38:55.961 2025-03-13 16:38:55.961 435905 2329 436558 4474 1 9165 2025-03-13 11:38:20.962 2025-03-13 11:38:20.962 435905 2329 436208 9336 1 9166 2025-03-13 12:40:46.681 2025-03-13 12:40:46.681 435905 2329 436276 4395 1 9167 2025-03-13 13:55:49.61 2025-03-13 13:55:49.61 435906 674 436361 9349 1 9168 2025-03-13 18:18:40.699 2025-03-13 18:18:40.699 435906 674 436631 21797 2 9169 2025-03-18 13:11:32.035 2025-03-18 13:11:32.035 441750 20775 442157 2722 6 9170 2025-03-18 13:06:57.606 2025-03-18 13:06:57.606 441750 20775 442148 20187 5 9171 2025-03-18 13:01:30.787 2025-03-18 13:01:30.787 441750 20775 442141 20254 4 9172 2025-03-18 12:57:46.826 2025-03-18 12:57:46.826 441750 20775 442135 16193 3 9173 2025-03-18 09:59:00.133 2025-03-18 09:59:00.133 441750 20775 441803 5708 2 9174 2025-03-18 09:57:28.221 2025-03-18 09:57:28.221 441750 20775 441801 20799 1 9175 2025-03-13 08:38:25.435 2025-03-13 08:38:25.435 435908 17365 436022 14465 1 9176 2025-03-13 05:07:14.762 2025-03-13 05:07:14.762 435908 17365 435909 9364 1 9177 2025-03-13 07:28:56.336 2025-03-13 07:28:56.336 435908 17365 435974 6526 1 9178 2025-03-13 09:07:29.695 2025-03-13 09:07:29.695 435908 17365 436038 21291 2 9179 2025-03-13 11:42:35.013 2025-03-13 11:42:35.013 435908 17365 436215 19494 3 9180 2025-03-13 09:08:02.516 2025-03-13 09:08:02.516 435908 17365 436039 21042 2 9181 2025-03-13 10:42:27.789 2025-03-13 10:42:27.789 435908 17365 436129 4819 1 9182 2025-03-13 13:51:52.03 2025-03-13 13:51:52.03 435908 17365 436358 20852 2 9183 2025-03-13 17:24:55.086 2025-03-13 17:24:55.086 435908 17365 436586 3392 4 9184 2025-03-13 17:25:47.904 2025-03-13 17:25:47.904 435908 17365 436589 6148 2 9185 2025-03-13 15:07:13.546 2025-03-13 15:07:13.546 436442 1823 436448 10016 1 9186 2025-03-13 06:39:59.95 2025-03-13 06:39:59.95 435912 876 435956 19217 1 9187 2025-03-13 13:07:45.621 2025-03-13 13:07:45.621 435920 21091 436306 1745 3 9188 2025-03-13 13:12:49.175 2025-03-13 13:12:49.175 435920 21091 436313 9356 4 9189 2025-03-13 05:31:44.675 2025-03-13 05:31:44.675 435920 21091 435925 21803 1 9190 2025-03-13 10:58:46.487 2025-03-13 10:58:46.487 435920 21091 436157 20019 2 9191 2025-03-13 10:58:12.366 2025-03-13 10:58:12.366 435920 21091 436155 929 1 9192 2025-03-24 13:25:28.971 2025-03-24 13:25:28.971 451250 16296 451269 756 1 9193 2025-03-24 13:35:35.115 2025-03-24 13:35:35.115 451250 16296 451296 19378 2 9194 2025-03-13 05:52:42.469 2025-03-13 05:52:42.469 435928 9655 435937 929 1 9195 2025-03-13 06:48:58.117 2025-03-13 06:48:58.117 435928 9655 435960 775 2 9196 2025-03-13 10:37:10.86 2025-03-13 10:37:10.86 435928 9655 436123 19905 1 9197 2025-03-13 15:08:41.618 2025-03-13 15:08:41.618 435929 19531 436452 1618 3 9198 2025-03-13 15:28:59.69 2025-03-13 15:28:59.69 435929 19531 436486 780 4 9199 2025-03-13 12:36:32.221 2025-03-13 12:36:32.221 435929 19531 436271 14220 1 9200 2025-03-13 13:41:45.174 2025-03-13 13:41:45.174 435929 19531 436341 21131 2 9201 2025-03-13 15:37:15.34 2025-03-13 15:37:15.34 435929 19531 436500 19569 5 9202 2025-03-13 11:34:03.676 2025-03-13 11:34:03.676 435934 10013 436199 3544 1 9203 2025-03-24 14:52:54.704 2025-03-24 14:52:54.704 451418 10554 451446 8469 2 9204 2025-03-24 14:44:08.726 2025-03-24 14:44:08.726 451418 10554 451422 1354 1 9205 2025-03-13 06:48:58.117 2025-03-13 06:48:58.117 435937 929 435960 775 1 9206 2025-03-13 13:47:09.18 2025-03-13 13:47:09.18 435939 5759 436351 2961 1 9207 2025-03-13 14:57:57.642 2025-03-13 14:57:57.642 436330 18309 436433 21249 1 9208 2025-03-13 15:50:47.13 2025-03-13 15:50:47.13 436330 18309 436512 7667 1 9209 2025-03-13 18:37:25.792 2025-03-13 18:37:25.792 436330 18309 436642 8168 1 9210 2025-03-13 08:01:27.116 2025-03-13 08:01:27.116 435957 9349 436001 1044 1 9211 2025-03-13 08:21:32.688 2025-03-13 08:21:32.688 435957 9349 436011 10433 2 9212 2025-03-13 08:36:29.183 2025-03-13 08:36:29.183 435957 9349 436021 17050 3 9213 2025-03-13 11:15:16.064 2025-03-13 11:15:16.064 435957 9349 436178 20614 4 9214 2025-03-13 08:05:56.736 2025-03-13 08:05:56.736 435958 17109 436004 21833 1 9215 2025-03-13 11:14:02.452 2025-03-13 11:14:02.452 435958 17109 436173 9336 2 9216 2025-03-13 06:58:38.334 2025-03-13 06:58:38.334 435962 12097 435963 15049 1 9217 2025-03-13 20:42:03.619 2025-03-13 20:42:03.619 436464 6717 436715 4768 1 9218 2025-03-13 07:44:10.965 2025-03-13 07:44:10.965 435965 21620 435984 5069 4 9219 2025-03-13 07:48:29.469 2025-03-13 07:48:29.469 435965 21620 435989 1173 5 9220 2025-03-13 07:49:59.14 2025-03-13 07:49:59.14 435965 21620 435992 9906 7 9221 2025-03-13 07:54:23.712 2025-03-13 07:54:23.712 435965 21620 435996 5852 9 9222 2025-03-13 07:32:15.203 2025-03-13 07:32:15.203 435965 21620 435978 9494 1 9223 2025-03-13 07:36:30.168 2025-03-13 07:36:30.168 435965 21620 435980 13097 2 9224 2025-03-13 07:43:01.449 2025-03-13 07:43:01.449 435965 21620 435983 16442 3 9225 2025-03-13 07:49:00.269 2025-03-13 07:49:00.269 435965 21620 435990 21734 6 9226 2025-03-13 07:49:37.3 2025-03-13 07:49:37.3 435965 21620 435991 16410 6 9227 2025-03-13 07:53:21.496 2025-03-13 07:53:21.496 435965 21620 435995 17157 8 9228 2025-03-13 11:35:47.686 2025-03-13 11:35:47.686 436016 20987 436202 2961 2 9229 2025-03-13 17:29:00.736 2025-03-13 17:29:00.736 436016 20987 436592 632 3 9230 2025-03-13 09:10:22.094 2025-03-13 09:10:22.094 436016 20987 436041 16336 1 9231 2025-03-13 13:02:02.405 2025-03-13 13:02:02.405 435966 4027 436299 4602 1 9232 2025-03-13 10:01:23.475 2025-03-13 10:01:23.475 435967 16653 436087 21048 2 9233 2025-03-13 07:22:51.447 2025-03-13 07:22:51.447 435967 16653 435971 4259 1 9234 2025-03-13 07:55:24.74 2025-03-13 07:55:24.74 435967 16653 435997 18017 2 9235 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 454254 5725 455286 11678 1 9236 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 454254 5725 455302 20511 2 9237 2025-03-13 09:20:37.319 2025-03-13 09:20:37.319 436045 17041 436052 19826 1 9238 2025-03-13 09:24:23.923 2025-03-13 09:24:23.923 436045 17041 436056 8380 2 9239 2025-03-13 09:30:03.493 2025-03-13 09:30:03.493 436045 17041 436064 19655 3 9240 2025-03-13 12:42:16.024 2025-03-13 12:42:16.024 436045 17041 436277 21208 4 9241 2025-03-13 12:50:32.973 2025-03-13 12:50:32.973 436045 17041 436282 2327 5 9242 2025-03-13 07:31:37.083 2025-03-13 07:31:37.083 435969 21357 435977 10981 1 9243 2025-03-13 11:03:41.851 2025-03-13 11:03:41.851 435970 8168 436160 1605 1 9244 2025-03-13 10:01:23.475 2025-03-13 10:01:23.475 435971 4259 436087 21048 1 9245 2025-03-13 07:55:24.74 2025-03-13 07:55:24.74 435971 4259 435997 18017 1 9246 2025-03-13 10:45:29.974 2025-03-13 10:45:29.974 435973 15045 436133 1173 1 9247 2025-03-13 09:07:29.695 2025-03-13 09:07:29.695 435974 6526 436038 21291 1 9248 2025-03-13 11:42:35.013 2025-03-13 11:42:35.013 435974 6526 436215 19494 2 9249 2025-03-13 17:24:55.086 2025-03-13 17:24:55.086 435974 6526 436586 3392 3 9250 2025-03-13 07:44:10.965 2025-03-13 07:44:10.965 435978 9494 435984 5069 3 9251 2025-03-13 07:48:29.469 2025-03-13 07:48:29.469 435978 9494 435989 1173 4 9252 2025-03-13 07:49:59.14 2025-03-13 07:49:59.14 435978 9494 435992 9906 6 9253 2025-03-13 07:54:23.712 2025-03-13 07:54:23.712 435978 9494 435996 5852 8 9254 2025-03-13 07:36:30.168 2025-03-13 07:36:30.168 435978 9494 435980 13097 1 9255 2025-03-13 07:43:01.449 2025-03-13 07:43:01.449 435978 9494 435983 16442 2 9256 2025-03-13 07:49:00.269 2025-03-13 07:49:00.269 435978 9494 435990 21734 5 9257 2025-03-13 07:49:37.3 2025-03-13 07:49:37.3 435978 9494 435991 16410 5 9258 2025-03-13 07:53:21.496 2025-03-13 07:53:21.496 435978 9494 435995 17157 7 9259 2025-03-13 08:22:26.177 2025-03-13 08:22:26.177 435979 822 436013 15662 1 9260 2025-03-13 08:22:12.692 2025-03-13 08:22:12.692 435979 822 436012 7185 1 9261 2025-03-13 08:29:49.893 2025-03-13 08:29:49.893 435979 822 436018 15243 2 9262 2025-03-13 08:32:31.47 2025-03-13 08:32:31.47 435979 822 436020 21578 2 9263 2025-03-13 10:49:30.493 2025-03-13 10:49:30.493 435979 822 436139 20523 3 9264 2025-03-13 08:05:34.035 2025-03-13 08:05:34.035 435979 822 436003 16456 1 9265 2025-03-13 10:53:07.824 2025-03-13 10:53:07.824 435979 822 436146 20987 4 9266 2025-03-13 07:44:10.965 2025-03-13 07:44:10.965 435980 13097 435984 5069 2 9267 2025-03-13 07:48:29.469 2025-03-13 07:48:29.469 435980 13097 435989 1173 3 9268 2025-03-13 07:49:59.14 2025-03-13 07:49:59.14 435980 13097 435992 9906 5 9269 2025-03-13 07:54:23.712 2025-03-13 07:54:23.712 435980 13097 435996 5852 7 9270 2025-03-13 07:43:01.449 2025-03-13 07:43:01.449 435980 13097 435983 16442 1 9271 2025-03-13 07:49:00.269 2025-03-13 07:49:00.269 435980 13097 435990 21734 4 9272 2025-03-13 07:49:37.3 2025-03-13 07:49:37.3 435980 13097 435991 16410 4 9273 2025-03-13 07:53:21.496 2025-03-13 07:53:21.496 435980 13097 435995 17157 6 9274 2025-03-13 10:26:44.849 2025-03-13 10:26:44.849 436037 17209 436107 21412 1 9275 2025-03-13 12:35:40.616 2025-03-13 12:35:40.616 436259 1620 436270 2596 2 9276 2025-03-13 13:01:41.121 2025-03-13 13:01:41.121 436259 1620 436297 3213 3 9277 2025-03-13 12:29:03.875 2025-03-13 12:29:03.875 436259 1620 436263 717 1 9278 2025-03-26 12:10:25.606 2025-03-26 12:10:25.606 454409 21379 454435 21222 2 9279 2025-03-26 12:05:33.641 2025-03-26 12:05:33.641 454409 21379 454427 1737 1 9280 2025-03-26 15:08:00.941 2025-03-26 15:08:00.941 454713 21064 454722 5497 1 9281 2025-03-26 15:10:32.995 2025-03-26 15:10:32.995 454713 21064 454728 17722 2 9282 2025-03-26 23:07:08.174 2025-03-26 23:07:08.174 455298 12334 455324 16966 1 9283 2025-03-27 07:01:00.981 2025-03-27 07:01:00.981 455298 12334 455589 21794 2 9284 2025-03-27 11:54:30.042 2025-03-27 11:54:30.042 455599 15484 455889 807 2 9285 2025-03-27 12:16:54.793 2025-03-27 12:16:54.793 455599 15484 455923 4650 5 9286 2025-03-27 13:09:04.485 2025-03-27 13:09:04.485 455599 15484 456073 10060 9 9287 2025-03-27 12:06:29.751 2025-03-27 12:06:29.751 455599 15484 455911 20450 4 9288 2025-03-27 12:50:42.898 2025-03-27 12:50:42.898 455599 15484 455994 5112 8 9289 2025-03-27 13:14:30.283 2025-03-27 13:14:30.283 455599 15484 456086 10094 10 9290 2025-03-27 12:36:01.878 2025-03-27 12:36:01.878 455599 15484 455952 21485 6 9291 2025-03-27 10:59:32.714 2025-03-27 10:59:32.714 455599 15484 455824 15147 1 9292 2025-03-27 12:01:20.522 2025-03-27 12:01:20.522 455599 15484 455904 20715 3 9293 2025-03-27 12:40:58.213 2025-03-27 12:40:58.213 455599 15484 455962 759 7 9294 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 455599 15484 456804 992 11 9295 2025-03-13 07:44:10.965 2025-03-13 07:44:10.965 435983 16442 435984 5069 1 9296 2025-03-13 07:48:29.469 2025-03-13 07:48:29.469 435983 16442 435989 1173 2 9297 2025-03-13 07:49:59.14 2025-03-13 07:49:59.14 435983 16442 435992 9906 4 9298 2025-03-13 07:54:23.712 2025-03-13 07:54:23.712 435983 16442 435996 5852 6 9299 2025-03-13 07:49:00.269 2025-03-13 07:49:00.269 435983 16442 435990 21734 3 9300 2025-03-13 07:49:37.3 2025-03-13 07:49:37.3 435983 16442 435991 16410 3 9301 2025-03-13 07:53:21.496 2025-03-13 07:53:21.496 435983 16442 435995 17157 5 9302 2025-03-13 07:48:29.469 2025-03-13 07:48:29.469 435984 5069 435989 1173 1 9303 2025-03-13 07:49:59.14 2025-03-13 07:49:59.14 435984 5069 435992 9906 3 9304 2025-03-13 07:54:23.712 2025-03-13 07:54:23.712 435984 5069 435996 5852 5 9305 2025-03-13 07:49:00.269 2025-03-13 07:49:00.269 435984 5069 435990 21734 2 9306 2025-03-13 07:49:37.3 2025-03-13 07:49:37.3 435984 5069 435991 16410 2 9307 2025-03-13 07:53:21.496 2025-03-13 07:53:21.496 435984 5069 435995 17157 4 9308 2025-03-13 11:42:35.013 2025-03-13 11:42:35.013 436038 21291 436215 19494 1 9309 2025-03-13 17:24:55.086 2025-03-13 17:24:55.086 436038 21291 436586 3392 2 9310 2025-03-13 14:13:43.362 2025-03-13 14:13:43.362 436040 18265 436383 3377 1 9311 2025-03-13 17:27:01.225 2025-03-13 17:27:01.225 436040 18265 436591 9362 2 9312 2025-03-13 09:40:40.147 2025-03-13 09:40:40.147 435988 679 436074 14169 1 9313 2025-03-13 07:49:59.14 2025-03-13 07:49:59.14 435989 1173 435992 9906 2 9314 2025-03-13 07:54:23.712 2025-03-13 07:54:23.712 435989 1173 435996 5852 4 9315 2025-03-13 07:49:00.269 2025-03-13 07:49:00.269 435989 1173 435990 21734 1 9316 2025-03-13 07:49:37.3 2025-03-13 07:49:37.3 435989 1173 435991 16410 1 9317 2025-03-13 07:53:21.496 2025-03-13 07:53:21.496 435989 1173 435995 17157 3 9318 2025-03-13 07:49:59.14 2025-03-13 07:49:59.14 435990 21734 435992 9906 1 9319 2025-03-13 07:54:23.712 2025-03-13 07:54:23.712 435990 21734 435996 5852 3 9320 2025-03-13 07:53:21.496 2025-03-13 07:53:21.496 435990 21734 435995 17157 2 9321 2025-03-13 07:54:23.712 2025-03-13 07:54:23.712 435992 9906 435996 5852 2 9322 2025-03-13 07:53:21.496 2025-03-13 07:53:21.496 435992 9906 435995 17157 1 9323 2025-03-13 07:54:23.712 2025-03-13 07:54:23.712 435995 17157 435996 5852 1 9324 2025-03-13 08:21:32.688 2025-03-13 08:21:32.688 436001 1044 436011 10433 1 9325 2025-03-13 08:36:29.183 2025-03-13 08:36:29.183 436001 1044 436021 17050 2 9326 2025-03-13 11:15:16.064 2025-03-13 11:15:16.064 436001 1044 436178 20614 3 9327 2025-03-13 11:14:02.452 2025-03-13 11:14:02.452 436004 21833 436173 9336 1 9328 2025-03-13 09:11:45.594 2025-03-13 09:11:45.594 436010 21600 436044 19992 1 9329 2025-03-13 11:52:12.778 2025-03-13 11:52:12.778 436005 5703 436225 730 1 9330 2025-03-13 09:40:05.169 2025-03-13 09:40:05.169 436009 21418 436073 18225 1 9331 2025-03-13 09:44:21.116 2025-03-13 09:44:21.116 436009 21418 436077 9845 1 9332 2025-03-13 08:36:29.183 2025-03-13 08:36:29.183 436011 10433 436021 17050 1 9333 2025-03-13 11:15:16.064 2025-03-13 11:15:16.064 436011 10433 436178 20614 2 9334 2025-03-13 08:29:49.893 2025-03-13 08:29:49.893 436012 7185 436018 15243 1 9335 2025-03-13 08:32:31.47 2025-03-13 08:32:31.47 436012 7185 436020 21578 1 9336 2025-03-13 10:49:30.493 2025-03-13 10:49:30.493 436012 7185 436139 20523 2 9337 2025-03-13 10:53:07.824 2025-03-13 10:53:07.824 436012 7185 436146 20987 3 9338 2025-03-13 08:41:55.926 2025-03-13 08:41:55.926 436014 17011 436024 15337 1 9339 2025-03-13 09:35:54.931 2025-03-13 09:35:54.931 436014 17011 436069 19735 2 9340 2025-03-13 08:44:56.511 2025-03-13 08:44:56.511 436014 17011 436026 18068 2 9341 2025-03-13 09:11:19.838 2025-03-13 09:11:19.838 436014 17011 436043 21022 2 9342 2025-03-13 09:12:38.945 2025-03-13 09:12:38.945 436014 17011 436046 16176 1 9343 2025-03-13 14:13:43.362 2025-03-13 14:13:43.362 436019 20023 436383 3377 2 9344 2025-03-13 17:27:01.225 2025-03-13 17:27:01.225 436019 20023 436591 9362 3 9345 2025-03-13 09:08:55.124 2025-03-13 09:08:55.124 436019 20023 436040 18265 1 9346 2025-03-13 10:49:30.493 2025-03-13 10:49:30.493 436020 21578 436139 20523 1 9347 2025-03-13 10:53:07.824 2025-03-13 10:53:07.824 436020 21578 436146 20987 2 9348 2025-03-13 11:15:16.064 2025-03-13 11:15:16.064 436021 17050 436178 20614 1 9349 2025-03-13 10:26:06.276 2025-03-13 10:26:06.276 436053 21647 436106 20852 1 9350 2025-03-13 10:37:46.523 2025-03-13 10:37:46.523 436053 21647 436125 782 1 9351 2025-03-13 12:18:46.908 2025-03-13 12:18:46.908 436053 21647 436252 18673 2 9352 2025-03-13 12:35:40.616 2025-03-13 12:35:40.616 436053 21647 436270 2596 5 9353 2025-03-13 13:01:41.121 2025-03-13 13:01:41.121 436053 21647 436297 3213 6 9354 2025-03-13 12:23:46.538 2025-03-13 12:23:46.538 436053 21647 436259 1620 3 9355 2025-03-13 12:29:03.875 2025-03-13 12:29:03.875 436053 21647 436263 717 4 9356 2025-03-13 12:24:14.011 2025-03-13 12:24:14.011 436053 21647 436260 4388 3 9357 2025-03-13 12:21:08.873 2025-03-13 12:21:08.873 436053 21647 436257 1697 2 9358 2025-03-13 09:44:54.862 2025-03-13 09:44:54.862 436054 20825 436078 5694 1 9359 2025-03-13 09:30:03.493 2025-03-13 09:30:03.493 436056 8380 436064 19655 1 9360 2025-03-13 12:42:16.024 2025-03-13 12:42:16.024 436056 8380 436277 21208 2 9361 2025-03-13 12:50:32.973 2025-03-13 12:50:32.973 436056 8380 436282 2327 3 9362 2025-03-13 08:44:56.511 2025-03-13 08:44:56.511 436024 15337 436026 18068 1 9363 2025-03-13 09:11:19.838 2025-03-13 09:11:19.838 436024 15337 436043 21022 1 9364 2025-03-13 12:18:25.262 2025-03-13 12:18:25.262 436025 18188 436251 8080 1 9365 2025-03-13 14:55:20.509 2025-03-13 14:55:20.509 436025 18188 436428 19121 1 9366 2025-03-13 09:25:53.776 2025-03-13 09:25:53.776 436031 647 436059 20998 1 9367 2025-03-13 10:38:18.18 2025-03-13 10:38:18.18 436031 647 436126 10986 4 9368 2025-03-13 10:52:45.202 2025-03-13 10:52:45.202 436031 647 436143 19829 6 9369 2025-03-13 11:05:13.028 2025-03-13 11:05:13.028 436031 647 436162 21091 6 9370 2025-03-13 11:11:29.666 2025-03-13 11:11:29.666 436031 647 436169 17682 7 9371 2025-03-13 11:22:31.938 2025-03-13 11:22:31.938 436031 647 436185 711 9 9372 2025-03-13 10:10:57.424 2025-03-13 10:10:57.424 436031 647 436091 21119 3 9373 2025-03-13 09:31:28.511 2025-03-13 09:31:28.511 436031 647 436065 10352 2 9374 2025-03-13 10:50:54.44 2025-03-13 10:50:54.44 436031 647 436141 13406 5 9375 2025-03-13 11:13:23.154 2025-03-13 11:13:23.154 436031 647 436171 20849 8 9376 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436031 647 436196 21389 10 9377 2025-03-13 10:46:58.397 2025-03-13 10:46:58.397 436032 20294 436135 994 1 9378 2025-03-13 12:55:03.704 2025-03-13 12:55:03.704 436032 20294 436286 647 2 9379 2025-03-13 11:35:47.686 2025-03-13 11:35:47.686 436041 16336 436202 2961 1 9380 2025-03-13 17:29:00.736 2025-03-13 17:29:00.736 436041 16336 436592 632 2 9381 2025-03-13 13:09:18.715 2025-03-13 13:09:18.715 436034 7913 436309 9183 1 9382 2025-03-13 09:35:54.931 2025-03-13 09:35:54.931 436046 16176 436069 19735 1 9383 2025-03-13 12:33:45.244 2025-03-13 12:33:45.244 436047 15617 436268 1738 1 9384 2025-03-13 09:26:40.443 2025-03-13 09:26:40.443 436049 16177 436060 1624 2 9385 2025-03-13 09:15:15.829 2025-03-13 09:15:15.829 436049 16177 436050 17494 1 9386 2025-03-13 09:24:23.923 2025-03-13 09:24:23.923 436052 19826 436056 8380 1 9387 2025-03-13 09:30:03.493 2025-03-13 09:30:03.493 436052 19826 436064 19655 2 9388 2025-03-13 12:42:16.024 2025-03-13 12:42:16.024 436052 19826 436277 21208 3 9389 2025-03-13 12:50:32.973 2025-03-13 12:50:32.973 436052 19826 436282 2327 4 9390 2025-03-13 10:38:18.18 2025-03-13 10:38:18.18 436059 20998 436126 10986 3 9391 2025-03-13 10:52:45.202 2025-03-13 10:52:45.202 436059 20998 436143 19829 5 9392 2025-03-13 11:05:13.028 2025-03-13 11:05:13.028 436059 20998 436162 21091 5 9393 2025-03-13 11:11:29.666 2025-03-13 11:11:29.666 436059 20998 436169 17682 6 9394 2025-03-13 11:22:31.938 2025-03-13 11:22:31.938 436059 20998 436185 711 8 9395 2025-03-13 10:10:57.424 2025-03-13 10:10:57.424 436059 20998 436091 21119 2 9396 2025-03-13 09:31:28.511 2025-03-13 09:31:28.511 436059 20998 436065 10352 1 9397 2025-03-13 10:50:54.44 2025-03-13 10:50:54.44 436059 20998 436141 13406 4 9398 2025-03-13 11:13:23.154 2025-03-13 11:13:23.154 436059 20998 436171 20849 7 9399 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436059 20998 436196 21389 9 9400 2025-03-13 09:37:17.729 2025-03-13 09:37:17.729 436063 13097 436071 17568 1 9401 2025-03-13 12:42:16.024 2025-03-13 12:42:16.024 436064 19655 436277 21208 1 9402 2025-03-13 12:50:32.973 2025-03-13 12:50:32.973 436064 19655 436282 2327 2 9403 2025-03-13 10:38:18.18 2025-03-13 10:38:18.18 436065 10352 436126 10986 2 9404 2025-03-13 10:52:45.202 2025-03-13 10:52:45.202 436065 10352 436143 19829 4 9405 2025-03-13 11:05:13.028 2025-03-13 11:05:13.028 436065 10352 436162 21091 4 9406 2025-03-13 11:11:29.666 2025-03-13 11:11:29.666 436065 10352 436169 17682 5 9407 2025-03-13 11:22:31.938 2025-03-13 11:22:31.938 436065 10352 436185 711 7 9408 2025-03-13 10:10:57.424 2025-03-13 10:10:57.424 436065 10352 436091 21119 1 9409 2025-03-13 10:50:54.44 2025-03-13 10:50:54.44 436065 10352 436141 13406 3 9410 2025-03-13 11:13:23.154 2025-03-13 11:13:23.154 436065 10352 436171 20849 6 9411 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436065 10352 436196 21389 8 9412 2025-03-13 10:00:13.786 2025-03-13 10:00:13.786 436066 8459 436085 14280 1 9413 2025-03-13 10:16:06.824 2025-03-13 10:16:06.824 436072 3745 436099 14731 1 9414 2025-03-13 09:44:55.026 2025-03-13 09:44:55.026 436076 20713 436079 13216 1 9415 2025-03-13 13:11:10.963 2025-03-13 13:11:10.963 436084 16950 436311 21145 1 9416 2025-03-13 10:04:42.72 2025-03-13 10:04:42.72 436086 11716 436089 20019 1 9417 2025-03-13 12:34:58.363 2025-03-13 12:34:58.363 436093 21022 436269 20768 2 9418 2025-03-13 12:42:34.974 2025-03-13 12:42:34.974 436093 21022 436278 837 1 9419 2025-03-13 13:00:14.17 2025-03-13 13:00:14.17 436093 21022 436295 919 3 9420 2025-03-13 13:34:27.284 2025-03-13 13:34:27.284 436093 21022 436327 10280 2 9421 2025-03-13 16:18:11.781 2025-03-13 16:18:11.781 436093 21022 436538 15336 3 9422 2025-03-13 16:23:46.902 2025-03-13 16:23:46.902 436093 21022 436548 831 3 9423 2025-03-13 16:28:53.8 2025-03-13 16:28:53.8 436093 21022 436551 20613 4 9424 2025-03-13 18:53:53.183 2025-03-13 18:53:53.183 436093 21022 436653 11038 5 9425 2025-03-13 10:29:00.946 2025-03-13 10:29:00.946 436093 21022 436113 9529 1 9426 2025-03-13 12:54:45.209 2025-03-13 12:54:45.209 436093 21022 436285 18923 1 9427 2025-03-13 12:58:53.837 2025-03-13 12:58:53.837 436093 21022 436292 20577 1 9428 2025-03-13 13:03:47.834 2025-03-13 13:03:47.834 436093 21022 436301 21485 2 9429 2025-03-13 13:06:15.761 2025-03-13 13:06:15.761 436093 21022 436303 17209 1 9430 2025-03-13 13:23:00.904 2025-03-13 13:23:00.904 436093 21022 436324 11454 1 9431 2025-03-13 13:45:48.325 2025-03-13 13:45:48.325 436093 21022 436347 937 1 9432 2025-03-13 15:56:31.814 2025-03-13 15:56:31.814 436093 21022 436519 7583 2 9433 2025-03-13 16:22:43.366 2025-03-13 16:22:43.366 436093 21022 436547 7682 2 9434 2025-03-13 16:22:23.582 2025-03-13 16:22:23.582 436093 21022 436545 698 4 9435 2025-03-13 19:51:00.187 2025-03-13 19:51:00.187 436172 1617 436701 9351 1 9436 2025-03-13 11:12:34.727 2025-03-13 11:12:34.727 436102 738 436170 5500 2 9437 2025-03-13 10:43:27.067 2025-03-13 10:43:27.067 436102 738 436130 6268 1 9438 2025-03-13 10:55:08.702 2025-03-13 10:55:08.702 436102 738 436148 736 2 9439 2025-03-13 12:18:46.908 2025-03-13 12:18:46.908 436106 20852 436252 18673 1 9440 2025-03-13 10:28:32.121 2025-03-13 10:28:32.121 436108 18618 436112 929 1 9441 2025-03-13 10:46:20.494 2025-03-13 10:46:20.494 436109 21805 436134 17183 4 9442 2025-03-13 10:34:56.928 2025-03-13 10:34:56.928 436109 21805 436120 880 3 9443 2025-03-13 10:32:02.615 2025-03-13 10:32:02.615 436109 21805 436117 10536 2 9444 2025-03-13 10:29:37.747 2025-03-13 10:29:37.747 436109 21805 436114 803 1 9445 2025-03-13 12:34:58.363 2025-03-13 12:34:58.363 436113 9529 436269 20768 1 9446 2025-03-13 13:00:14.17 2025-03-13 13:00:14.17 436113 9529 436295 919 2 9447 2025-03-13 10:46:20.494 2025-03-13 10:46:20.494 436114 803 436134 17183 3 9448 2025-03-13 10:34:56.928 2025-03-13 10:34:56.928 436114 803 436120 880 2 9449 2025-03-13 10:32:02.615 2025-03-13 10:32:02.615 436114 803 436117 10536 1 9450 2025-03-13 14:19:46.32 2025-03-13 14:19:46.32 436115 19303 436388 20687 1 9451 2025-03-13 10:48:56.353 2025-03-13 10:48:56.353 436128 1090 436138 4989 1 9452 2025-03-13 12:17:30.888 2025-03-13 12:17:30.888 436128 1090 436250 18829 2 9453 2025-03-13 12:35:40.616 2025-03-13 12:35:40.616 436125 782 436270 2596 4 9454 2025-03-13 13:01:41.121 2025-03-13 13:01:41.121 436125 782 436297 3213 5 9455 2025-03-13 12:23:46.538 2025-03-13 12:23:46.538 436125 782 436259 1620 2 9456 2025-03-13 12:29:03.875 2025-03-13 12:29:03.875 436125 782 436263 717 3 9457 2025-03-13 12:24:14.011 2025-03-13 12:24:14.011 436125 782 436260 4388 2 9458 2025-03-13 12:21:08.873 2025-03-13 12:21:08.873 436125 782 436257 1697 1 9459 2025-03-13 10:52:45.202 2025-03-13 10:52:45.202 436126 10986 436143 19829 2 9460 2025-03-13 11:05:13.028 2025-03-13 11:05:13.028 436126 10986 436162 21091 2 9461 2025-03-13 11:11:29.666 2025-03-13 11:11:29.666 436126 10986 436169 17682 3 9462 2025-03-13 11:22:31.938 2025-03-13 11:22:31.938 436126 10986 436185 711 5 9463 2025-03-13 10:50:54.44 2025-03-13 10:50:54.44 436126 10986 436141 13406 1 9464 2025-03-13 11:13:23.154 2025-03-13 11:13:23.154 436126 10986 436171 20849 4 9465 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436126 10986 436196 21389 6 9466 2025-03-13 12:17:30.888 2025-03-13 12:17:30.888 436138 4989 436250 18829 1 9467 2025-03-13 13:51:52.03 2025-03-13 13:51:52.03 436129 4819 436358 20852 1 9468 2025-03-13 17:25:47.904 2025-03-13 17:25:47.904 436129 4819 436589 6148 1 9469 2025-03-13 11:12:34.727 2025-03-13 11:12:34.727 436130 6268 436170 5500 1 9470 2025-03-13 10:55:08.702 2025-03-13 10:55:08.702 436130 6268 436148 736 1 9471 2025-03-13 12:55:03.704 2025-03-13 12:55:03.704 436135 994 436286 647 1 9472 2025-03-13 12:48:30.509 2025-03-13 12:48:30.509 436136 17184 436279 19952 1 9473 2025-03-13 12:53:58.095 2025-03-13 12:53:58.095 436136 17184 436284 19094 2 9474 2025-03-13 10:53:07.824 2025-03-13 10:53:07.824 436139 20523 436146 20987 1 9475 2025-03-13 10:52:45.202 2025-03-13 10:52:45.202 436141 13406 436143 19829 1 9476 2025-03-13 11:05:13.028 2025-03-13 11:05:13.028 436141 13406 436162 21091 1 9477 2025-03-13 11:11:29.666 2025-03-13 11:11:29.666 436141 13406 436169 17682 2 9478 2025-03-13 11:22:31.938 2025-03-13 11:22:31.938 436141 13406 436185 711 4 9479 2025-03-13 11:13:23.154 2025-03-13 11:13:23.154 436141 13406 436171 20849 3 9480 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436141 13406 436196 21389 5 9481 2025-03-13 13:55:43.92 2025-03-13 13:55:43.92 436142 959 436360 4027 1 9482 2025-03-13 11:09:21.538 2025-03-13 11:09:21.538 436144 1468 436164 4115 1 9483 2025-03-13 11:10:13.012 2025-03-13 11:10:13.012 436144 1468 436167 11275 2 9484 2025-03-13 11:30:18.526 2025-03-13 11:30:18.526 436144 1468 436193 19333 3 9485 2025-03-13 12:58:45.94 2025-03-13 12:58:45.94 436151 20062 436291 683 2 9486 2025-03-13 12:15:53.766 2025-03-13 12:15:53.766 436151 20062 436247 1198 1 9487 2025-03-13 14:37:31.778 2025-03-13 14:37:31.778 436152 20713 436408 889 1 9488 2025-03-13 14:02:22.634 2025-03-13 14:02:22.634 436289 21079 436371 4768 1 9489 2025-03-13 19:51:00.187 2025-03-13 19:51:00.187 436159 16929 436701 9351 2 9490 2025-03-13 11:13:24.257 2025-03-13 11:13:24.257 436159 16929 436172 1617 1 9491 2025-03-13 11:11:29.666 2025-03-13 11:11:29.666 436162 21091 436169 17682 1 9492 2025-03-13 11:22:31.938 2025-03-13 11:22:31.938 436162 21091 436185 711 3 9493 2025-03-13 11:13:23.154 2025-03-13 11:13:23.154 436162 21091 436171 20849 2 9494 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436162 21091 436196 21389 4 9495 2025-03-13 11:14:38.822 2025-03-13 11:14:38.822 436163 7913 436175 14818 1 9496 2025-03-13 11:30:45.496 2025-03-13 11:30:45.496 436163 7913 436194 14295 2 9497 2025-03-13 15:28:54.753 2025-03-13 15:28:54.753 436163 7913 436485 10981 1 9498 2025-03-13 11:22:33.443 2025-03-13 11:22:33.443 436163 7913 436186 21523 2 9499 2025-03-13 11:24:20.77 2025-03-13 11:24:20.77 436163 7913 436188 19952 3 9500 2025-03-13 11:10:13.012 2025-03-13 11:10:13.012 436164 4115 436167 11275 1 9501 2025-03-13 11:30:18.526 2025-03-13 11:30:18.526 436164 4115 436193 19333 2 9502 2025-03-13 12:35:40.616 2025-03-13 12:35:40.616 436263 717 436270 2596 1 9503 2025-03-13 13:01:41.121 2025-03-13 13:01:41.121 436263 717 436297 3213 2 9504 2025-03-13 11:22:31.938 2025-03-13 11:22:31.938 436169 17682 436185 711 2 9505 2025-03-13 11:13:23.154 2025-03-13 11:13:23.154 436169 17682 436171 20849 1 9506 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436169 17682 436196 21389 3 9507 2025-03-13 11:22:31.938 2025-03-13 11:22:31.938 436171 20849 436185 711 1 9508 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436171 20849 436196 21389 2 9509 2025-03-13 16:22:38.753 2025-03-13 16:22:38.753 436290 4692 436546 19198 2 9510 2025-03-13 16:48:32.354 2025-03-13 16:48:32.354 436290 4692 436567 17001 2 9511 2025-03-13 13:08:41.033 2025-03-13 13:08:41.033 436290 4692 436307 8498 1 9512 2025-03-13 13:16:06.421 2025-03-13 13:16:06.421 436290 4692 436315 20998 2 9513 2025-03-13 13:19:48.018 2025-03-13 13:19:48.018 436290 4692 436320 20981 1 9514 2025-03-13 16:52:49.592 2025-03-13 16:52:49.592 436290 4692 436570 9611 3 9515 2025-03-13 11:30:45.496 2025-03-13 11:30:45.496 436175 14818 436194 14295 1 9516 2025-03-13 11:22:33.443 2025-03-13 11:22:33.443 436175 14818 436186 21523 1 9517 2025-03-13 11:24:20.77 2025-03-13 11:24:20.77 436175 14818 436188 19952 2 9518 2025-03-13 13:50:27.942 2025-03-13 13:50:27.942 436176 19842 436354 20812 1 9519 2025-03-13 13:41:20.848 2025-03-13 13:41:20.848 436180 20990 436339 9551 1 9520 2025-03-13 11:24:09.373 2025-03-13 11:24:09.373 436183 14258 436187 13575 1 9521 2025-03-13 15:08:41.618 2025-03-13 15:08:41.618 436271 14220 436452 1618 2 9522 2025-03-13 15:28:59.69 2025-03-13 15:28:59.69 436271 14220 436486 780 3 9523 2025-03-13 13:41:45.174 2025-03-13 13:41:45.174 436271 14220 436341 21131 1 9524 2025-03-13 15:37:15.34 2025-03-13 15:37:15.34 436271 14220 436500 19569 4 9525 2025-03-13 11:31:24.616 2025-03-13 11:31:24.616 436185 711 436196 21389 1 9526 2025-03-13 11:24:20.77 2025-03-13 11:24:20.77 436186 21523 436188 19952 1 9527 2025-03-13 11:39:13.287 2025-03-13 11:39:13.287 436191 2492 436210 8544 1 9528 2025-03-13 11:49:23.824 2025-03-13 11:49:23.824 436219 1438 436221 16684 1 9529 2025-03-13 12:01:32.814 2025-03-13 12:01:32.814 436197 13055 436229 9421 1 9530 2025-03-13 12:26:47.571 2025-03-13 12:26:47.571 436197 13055 436262 2789 2 9531 2025-03-13 15:41:30.413 2025-03-13 15:41:30.413 436197 13055 436504 20603 1 9532 2025-03-13 16:56:14.487 2025-03-13 16:56:14.487 436197 13055 436575 19524 1 9533 2025-03-13 12:26:47.571 2025-03-13 12:26:47.571 436229 9421 436262 2789 1 9534 2025-03-13 14:21:07.447 2025-03-13 14:21:07.447 436201 18557 436389 20922 1 9535 2025-03-13 17:29:00.736 2025-03-13 17:29:00.736 436202 2961 436592 632 1 9536 2025-03-13 11:44:07.701 2025-03-13 11:44:07.701 436203 3439 436216 6463 3 9537 2025-03-13 11:37:18.039 2025-03-13 11:37:18.039 436203 3439 436204 16176 1 9538 2025-03-13 11:50:47.542 2025-03-13 11:50:47.542 436203 3439 436222 19375 4 9539 2025-03-13 11:42:34.623 2025-03-13 11:42:34.623 436203 3439 436214 716 2 9540 2025-03-13 11:48:15.791 2025-03-13 11:48:15.791 436206 20058 436220 21685 1 9541 2025-03-13 14:01:26.644 2025-03-13 14:01:26.644 436223 8729 436370 690 1 9542 2025-03-13 15:25:10.429 2025-03-13 15:25:10.429 436223 8729 436479 9348 2 9543 2025-03-13 12:38:21.707 2025-03-13 12:38:21.707 436261 20657 436272 16695 1 9544 2025-03-13 12:11:46.094 2025-03-13 12:11:46.094 436236 17838 436238 4292 1 9545 2025-03-13 12:57:26.448 2025-03-13 12:57:26.448 436208 9336 436287 20972 1 9546 2025-03-13 13:00:30.345 2025-03-13 13:00:30.345 436211 1726 436296 21037 1 9547 2025-03-13 12:08:42.657 2025-03-13 12:08:42.657 436213 16660 436236 17838 1 9548 2025-03-13 12:11:46.094 2025-03-13 12:11:46.094 436213 16660 436238 4292 2 9549 2025-03-13 12:14:08.731 2025-03-13 12:14:08.731 436213 16660 436242 910 1 9550 2025-03-13 12:49:07.806 2025-03-13 12:49:07.806 436213 16660 436280 21291 2 9551 2025-03-13 11:44:07.701 2025-03-13 11:44:07.701 436214 716 436216 6463 1 9552 2025-03-13 11:50:47.542 2025-03-13 11:50:47.542 436214 716 436222 19375 2 9553 2025-03-13 17:24:55.086 2025-03-13 17:24:55.086 436215 19494 436586 3392 1 9554 2025-03-13 11:50:47.542 2025-03-13 11:50:47.542 436216 6463 436222 19375 1 9555 2025-03-13 17:44:36.116 2025-03-13 17:44:36.116 436218 6148 436600 13987 1 9556 2025-03-13 18:12:47.231 2025-03-13 18:12:47.231 436218 6148 436623 20500 1 9557 2025-03-13 18:15:02.356 2025-03-13 18:15:02.356 436218 6148 436625 7418 2 9558 2025-03-13 18:17:25.405 2025-03-13 18:17:25.405 436218 6148 436630 2577 2 9559 2025-03-13 18:24:44.051 2025-03-13 18:24:44.051 436218 6148 436634 5829 3 9560 2025-03-13 18:46:40.672 2025-03-13 18:46:40.672 436218 6148 436650 1983 4 9561 2025-03-13 12:50:37.848 2025-03-13 12:50:37.848 436232 20120 436283 11862 1 9562 2025-03-13 12:04:20.8 2025-03-13 12:04:20.8 436224 760 436230 19905 1 9563 2025-03-13 12:05:55.545 2025-03-13 12:05:55.545 436224 760 436234 18901 1 9564 2025-03-13 12:06:55.121 2025-03-13 12:06:55.121 436231 7760 436235 9494 1 9565 2025-03-13 12:11:37.885 2025-03-13 12:11:37.885 436231 7760 436237 7682 1 9566 2025-03-13 12:12:26.421 2025-03-13 12:12:26.421 436231 7760 436239 664 1 9567 2025-03-13 14:52:12.952 2025-03-13 14:52:12.952 436231 7760 436422 21791 1 9568 2025-03-13 15:24:46.397 2025-03-13 15:24:46.397 436241 4776 436478 711 2 9569 2025-03-13 12:38:21.707 2025-03-13 12:38:21.707 436241 4776 436272 16695 2 9570 2025-03-13 12:39:50.371 2025-03-13 12:39:50.371 436241 4776 436274 12368 1 9571 2025-03-13 12:50:30.465 2025-03-13 12:50:30.465 436241 4776 436281 5557 1 9572 2025-03-13 13:01:56.035 2025-03-13 13:01:56.035 436241 4776 436298 679 1 9573 2025-03-13 13:04:32.356 2025-03-13 13:04:32.356 436241 4776 436302 16176 1 9574 2025-03-13 13:07:21.939 2025-03-13 13:07:21.939 436241 4776 436305 16214 1 9575 2025-03-13 13:28:08.741 2025-03-13 13:28:08.741 436241 4776 436325 15521 1 9576 2025-03-13 13:39:31.96 2025-03-13 13:39:31.96 436241 4776 436333 18314 1 9577 2025-03-13 13:40:32.394 2025-03-13 13:40:32.394 436241 4776 436335 2309 1 9578 2025-03-13 13:40:36.21 2025-03-13 13:40:36.21 436241 4776 436336 1697 1 9579 2025-03-13 14:38:11.279 2025-03-13 14:38:11.279 436241 4776 436410 1354 1 9580 2025-03-13 13:59:13.92 2025-03-13 13:59:13.92 436241 4776 436368 10934 1 9581 2025-03-13 14:02:27.528 2025-03-13 14:02:27.528 436241 4776 436372 713 1 9582 2025-03-13 14:07:02.353 2025-03-13 14:07:02.353 436241 4776 436376 8242 2 9583 2025-03-13 14:13:44.582 2025-03-13 14:13:44.582 436241 4776 436384 782 1 9584 2025-03-13 14:53:25.52 2025-03-13 14:53:25.52 436241 4776 436425 9333 1 9585 2025-03-13 14:59:32.492 2025-03-13 14:59:32.492 436241 4776 436436 2233 1 9586 2025-03-13 15:04:58.848 2025-03-13 15:04:58.848 436241 4776 436443 9336 1 9587 2025-03-13 15:18:02.584 2025-03-13 15:18:02.584 436241 4776 436461 1692 2 9588 2025-03-13 15:21:34.308 2025-03-13 15:21:34.308 436241 4776 436468 666 2 9589 2025-03-13 15:22:36.775 2025-03-13 15:22:36.775 436241 4776 436472 9353 2 9590 2025-03-13 15:24:03.15 2025-03-13 15:24:03.15 436241 4776 436474 21214 2 9591 2025-03-13 16:17:13.341 2025-03-13 16:17:13.341 436241 4776 436536 5590 1 9592 2025-03-13 16:18:22.72 2025-03-13 16:18:22.72 436241 4776 436539 9351 2 9593 2025-03-13 17:47:23.517 2025-03-13 17:47:23.517 436241 4776 436602 1650 2 9594 2025-03-13 18:14:26.204 2025-03-13 18:14:26.204 436241 4776 436624 19966 1 9595 2025-03-13 18:39:44.1 2025-03-13 18:39:44.1 436241 4776 436645 4259 1 9596 2025-03-13 19:44:03.982 2025-03-13 19:44:03.982 436241 4776 436692 16667 1 9597 2025-03-13 12:15:00.279 2025-03-13 12:15:00.279 436241 4776 436243 12976 1 9598 2025-03-13 13:06:45.754 2025-03-13 13:06:45.754 436241 4776 436304 7418 2 9599 2025-03-13 13:08:50.774 2025-03-13 13:08:50.774 436241 4776 436308 15243 2 9600 2025-03-13 12:15:13.681 2025-03-13 12:15:13.681 436241 4776 436244 775 1 9601 2025-03-13 12:15:29.832 2025-03-13 12:15:29.832 436241 4776 436246 21599 1 9602 2025-03-13 12:20:13.817 2025-03-13 12:20:13.817 436241 4776 436254 19527 1 9603 2025-03-13 12:20:30.831 2025-03-13 12:20:30.831 436241 4776 436256 15409 1 9604 2025-03-13 12:25:46.335 2025-03-13 12:25:46.335 436241 4776 436261 20657 1 9605 2025-03-13 13:22:00.29 2025-03-13 13:22:00.29 436241 4776 436321 4287 2 9606 2025-03-13 14:40:47.153 2025-03-13 14:40:47.153 436241 4776 436412 21577 2 9607 2025-03-13 13:58:14.924 2025-03-13 13:58:14.924 436241 4776 436367 4048 3 9608 2025-03-13 14:05:44.869 2025-03-13 14:05:44.869 436241 4776 436374 16978 2 9609 2025-03-13 14:53:51.761 2025-03-13 14:53:51.761 436241 4776 436426 6148 2 9610 2025-03-13 15:10:35.754 2025-03-13 15:10:35.754 436241 4776 436454 21506 3 9611 2025-03-13 15:56:03.373 2025-03-13 15:56:03.373 436241 4776 436518 2022 2 9612 2025-03-13 16:14:03.213 2025-03-13 16:14:03.213 436241 4776 436531 10554 3 9613 2025-03-13 18:06:02.226 2025-03-13 18:06:02.226 436241 4776 436615 15510 4 9614 2025-03-13 12:49:07.806 2025-03-13 12:49:07.806 436242 910 436280 21291 1 9615 2025-03-13 13:06:45.754 2025-03-13 13:06:45.754 436243 12976 436304 7418 1 9616 2025-03-13 13:08:50.774 2025-03-13 13:08:50.774 436243 12976 436308 15243 1 9617 2025-03-13 13:22:00.29 2025-03-13 13:22:00.29 436243 12976 436321 4287 1 9618 2025-03-13 14:40:47.153 2025-03-13 14:40:47.153 436243 12976 436412 21577 1 9619 2025-03-13 13:58:14.924 2025-03-13 13:58:14.924 436243 12976 436367 4048 2 9620 2025-03-13 14:05:44.869 2025-03-13 14:05:44.869 436243 12976 436374 16978 1 9621 2025-03-13 15:10:35.754 2025-03-13 15:10:35.754 436243 12976 436454 21506 2 9622 2025-03-13 15:56:03.373 2025-03-13 15:56:03.373 436243 12976 436518 2022 1 9623 2025-03-13 16:14:03.213 2025-03-13 16:14:03.213 436243 12976 436531 10554 2 9624 2025-03-13 18:06:02.226 2025-03-13 18:06:02.226 436243 12976 436615 15510 3 9625 2025-03-13 12:35:40.616 2025-03-13 12:35:40.616 436257 1697 436270 2596 3 9626 2025-03-13 13:01:41.121 2025-03-13 13:01:41.121 436257 1697 436297 3213 4 9627 2025-03-13 12:23:46.538 2025-03-13 12:23:46.538 436257 1697 436259 1620 1 9628 2025-03-13 12:29:03.875 2025-03-13 12:29:03.875 436257 1697 436263 717 2 9629 2025-03-13 12:24:14.011 2025-03-13 12:24:14.011 436257 1697 436260 4388 1 9630 2025-03-13 14:53:51.761 2025-03-13 14:53:51.761 436246 21599 436426 6148 1 9631 2025-03-13 12:58:45.94 2025-03-13 12:58:45.94 436247 1198 436291 683 1 9632 2025-03-13 14:52:02.095 2025-03-13 14:52:02.095 436253 20669 436421 708 1 9633 2025-03-13 15:22:36.163 2025-03-13 15:22:36.163 436255 1213 436470 805 1 9634 2025-03-13 13:00:14.17 2025-03-13 13:00:14.17 436269 20768 436295 919 1 9635 2025-03-13 13:01:41.121 2025-03-13 13:01:41.121 436270 2596 436297 3213 1 9636 2025-03-13 13:13:59.684 2025-03-13 13:13:59.684 436273 6260 436314 8287 4 9637 2025-03-13 13:36:04.816 2025-03-13 13:36:04.816 436273 6260 436329 776 1 9638 2025-03-13 13:48:25.012 2025-03-13 13:48:25.012 436273 6260 436353 16956 2 9639 2025-03-13 14:23:22.207 2025-03-13 14:23:22.207 436273 6260 436391 20624 1 9640 2025-03-13 14:31:49.481 2025-03-13 14:31:49.481 436273 6260 436401 20137 3 9641 2025-03-13 14:33:35.894 2025-03-13 14:33:35.894 436273 6260 436404 3461 4 9642 2025-03-13 12:58:11.363 2025-03-13 12:58:11.363 436273 6260 436288 1737 1 9643 2025-03-13 13:10:08.151 2025-03-13 13:10:08.151 436273 6260 436310 12721 2 9644 2025-03-13 13:12:42.124 2025-03-13 13:12:42.124 436273 6260 436312 646 3 9645 2025-03-13 13:52:46.447 2025-03-13 13:52:46.447 436273 6260 436359 8508 3 9646 2025-03-13 13:40:00.629 2025-03-13 13:40:00.629 436273 6260 436334 696 2 9647 2025-03-13 14:27:12.101 2025-03-13 14:27:12.101 436273 6260 436398 1890 2 9648 2025-03-13 14:40:12.588 2025-03-13 14:40:12.588 436273 6260 436411 15858 5 9649 2025-03-13 15:03:28.421 2025-03-13 15:03:28.421 436273 6260 436439 9242 1 9650 2025-03-13 15:07:58.886 2025-03-13 15:07:58.886 436273 6260 436450 2322 2 9651 2025-03-13 15:18:02.584 2025-03-13 15:18:02.584 436274 12368 436461 1692 1 9652 2025-03-13 12:59:12.456 2025-03-13 12:59:12.456 436276 4395 436293 10821 1 9653 2025-03-13 12:50:32.973 2025-03-13 12:50:32.973 436277 21208 436282 2327 1 9654 2025-03-13 15:34:38.288 2025-03-13 15:34:38.288 436488 11443 436495 10698 2 9655 2025-03-13 15:31:16.187 2025-03-13 15:31:16.187 436488 11443 436490 7125 1 9656 2025-03-13 15:39:33.854 2025-03-13 15:39:33.854 436488 11443 436501 1970 3 9657 2025-03-13 12:53:58.095 2025-03-13 12:53:58.095 436279 19952 436284 19094 1 9658 2025-03-13 13:41:13.689 2025-03-13 13:41:13.689 436332 777 436338 20691 1 9659 2025-03-13 13:51:11.783 2025-03-13 13:51:11.783 436332 777 436357 10273 2 9660 2025-03-13 14:07:02.353 2025-03-13 14:07:02.353 436281 5557 436376 8242 1 9661 2025-03-13 13:13:59.684 2025-03-13 13:13:59.684 436288 1737 436314 8287 3 9662 2025-03-13 13:48:25.012 2025-03-13 13:48:25.012 436288 1737 436353 16956 1 9663 2025-03-13 13:10:08.151 2025-03-13 13:10:08.151 436288 1737 436310 12721 1 9664 2025-03-13 13:12:42.124 2025-03-13 13:12:42.124 436288 1737 436312 646 2 9665 2025-03-13 13:52:46.447 2025-03-13 13:52:46.447 436288 1737 436359 8508 2 9666 2025-03-13 16:07:19.456 2025-03-13 16:07:19.456 436294 7673 436525 21522 1 9667 2025-03-13 15:22:36.775 2025-03-13 15:22:36.775 436302 16176 436472 9353 1 9668 2025-03-13 13:34:27.284 2025-03-13 13:34:27.284 436303 17209 436327 10280 1 9669 2025-03-13 16:18:11.781 2025-03-13 16:18:11.781 436303 17209 436538 15336 2 9670 2025-03-13 18:53:53.183 2025-03-13 18:53:53.183 436303 17209 436653 11038 4 9671 2025-03-13 15:56:31.814 2025-03-13 15:56:31.814 436303 17209 436519 7583 1 9672 2025-03-13 16:22:23.582 2025-03-13 16:22:23.582 436303 17209 436545 698 3 9673 2025-03-13 13:58:14.924 2025-03-13 13:58:14.924 436304 7418 436367 4048 1 9674 2025-03-13 16:48:32.354 2025-03-13 16:48:32.354 436307 8498 436567 17001 1 9675 2025-03-13 13:16:06.421 2025-03-13 13:16:06.421 436307 8498 436315 20998 1 9676 2025-03-13 16:52:49.592 2025-03-13 16:52:49.592 436307 8498 436570 9611 2 9677 2025-03-13 15:10:35.754 2025-03-13 15:10:35.754 436308 15243 436454 21506 1 9678 2025-03-13 13:13:59.684 2025-03-13 13:13:59.684 436310 12721 436314 8287 2 9679 2025-03-13 13:12:42.124 2025-03-13 13:12:42.124 436310 12721 436312 646 1 9680 2025-03-13 13:13:59.684 2025-03-13 13:13:59.684 436312 646 436314 8287 1 9681 2025-03-13 13:40:00.629 2025-03-13 13:40:00.629 436329 776 436334 696 1 9682 2025-03-13 15:26:03.546 2025-03-13 15:26:03.546 436331 20599 436482 13599 1 9683 2025-03-13 15:09:07.387 2025-03-13 15:09:07.387 436316 20781 436453 16424 1 9684 2025-03-13 13:35:34.05 2025-03-13 13:35:34.05 436318 1617 436328 1745 1 9685 2025-03-13 15:28:17.647 2025-03-13 15:28:17.647 436318 1617 436484 1438 1 9686 2025-03-13 16:22:38.753 2025-03-13 16:22:38.753 436320 20981 436546 19198 1 9687 2025-03-13 13:41:13.689 2025-03-13 13:41:13.689 436322 14731 436338 20691 2 9688 2025-03-13 13:51:11.783 2025-03-13 13:51:11.783 436322 14731 436357 10273 3 9689 2025-03-13 13:37:01.091 2025-03-13 13:37:01.091 436322 14731 436332 777 1 9690 2025-03-13 14:00:35.328 2025-03-13 14:00:35.328 436323 1105 436369 684 1 9691 2025-03-13 14:07:40.795 2025-03-13 14:07:40.795 436323 1105 436377 8726 1 9692 2025-03-13 14:25:19.621 2025-03-13 14:25:19.621 436323 1105 436393 3990 1 9693 2025-03-13 14:45:19.62 2025-03-13 14:45:19.62 436323 1105 436414 1047 1 9694 2025-03-13 18:30:03.291 2025-03-13 18:30:03.291 436323 1105 436638 2593 1 9695 2025-03-13 19:14:56.791 2025-03-13 19:14:56.791 436323 1105 436667 19189 1 9696 2025-03-13 14:59:11.69 2025-03-13 14:59:11.69 436323 1105 436435 6578 1 9697 2025-03-13 15:18:46.735 2025-03-13 15:18:46.735 436323 1105 436463 19193 1 9698 2025-03-13 16:19:39.78 2025-03-13 16:19:39.78 436323 1105 436541 21521 1 9699 2025-03-13 16:17:12.56 2025-03-13 16:17:12.56 436323 1105 436535 20939 2 9700 2025-03-13 16:18:22.72 2025-03-13 16:18:22.72 436325 15521 436539 9351 1 9701 2025-03-13 15:42:51.591 2025-03-13 15:42:51.591 436337 13327 436506 891 1 9702 2025-03-13 13:51:11.783 2025-03-13 13:51:11.783 436338 20691 436357 10273 1 9703 2025-03-13 15:08:41.618 2025-03-13 15:08:41.618 436341 21131 436452 1618 1 9704 2025-03-13 15:28:59.69 2025-03-13 15:28:59.69 436341 21131 436486 780 2 9705 2025-03-13 15:37:15.34 2025-03-13 15:37:15.34 436341 21131 436500 19569 3 9706 2025-03-13 15:27:17.926 2025-03-13 15:27:17.926 436343 20563 436483 691 5 9707 2025-03-13 15:22:36.375 2025-03-13 15:22:36.375 436343 20563 436471 21222 3 9708 2025-03-13 14:26:41.395 2025-03-13 14:26:41.395 436343 20563 436396 20892 1 9709 2025-03-13 15:08:10.288 2025-03-13 15:08:10.288 436343 20563 436451 20713 2 9710 2025-03-13 15:24:42.78 2025-03-13 15:24:42.78 436343 20563 436477 21072 4 9711 2025-03-13 16:23:46.902 2025-03-13 16:23:46.902 436347 937 436548 831 2 9712 2025-03-13 16:28:53.8 2025-03-13 16:28:53.8 436347 937 436551 20613 3 9713 2025-03-13 16:22:43.366 2025-03-13 16:22:43.366 436347 937 436547 7682 1 9714 2025-03-13 14:04:45.03 2025-03-13 14:04:45.03 436349 18269 436373 16830 1 9715 2025-03-13 14:09:20.402 2025-03-13 14:09:20.402 436349 18269 436380 4287 2 9716 2025-03-13 15:21:25.244 2025-03-13 15:21:25.244 436349 18269 436467 7760 2 9717 2025-03-13 15:32:41.733 2025-03-13 15:32:41.733 436349 18269 436492 899 2 9718 2025-03-13 13:51:02.364 2025-03-13 13:51:02.364 436352 688 436356 5852 1 9719 2025-03-13 15:45:51.896 2025-03-13 15:45:51.896 436413 21540 436509 20979 2 9720 2025-03-13 16:20:00.501 2025-03-13 16:20:00.501 436413 21540 436542 775 3 9721 2025-03-13 15:03:20.908 2025-03-13 15:03:20.908 436413 21540 436438 8498 1 9722 2025-03-13 15:21:13.696 2025-03-13 15:21:13.696 436413 21540 436465 6393 1 9723 2025-03-13 16:21:04.637 2025-03-13 16:21:04.637 436413 21540 436543 15409 1 9724 2025-03-13 17:52:32.446 2025-03-13 17:52:32.446 436413 21540 436607 4238 1 9725 2025-03-13 13:52:46.447 2025-03-13 13:52:46.447 436353 16956 436359 8508 1 9726 2025-03-13 13:57:29.275 2025-03-13 13:57:29.275 436355 19813 436365 1173 1 9727 2025-03-13 18:18:40.699 2025-03-13 18:18:40.699 436361 9349 436631 21797 1 9728 2025-03-13 14:06:40.541 2025-03-13 14:06:40.541 436362 6202 436375 10586 1 9729 2025-03-13 14:14:57.012 2025-03-13 14:14:57.012 436362 6202 436386 19826 3 9730 2025-03-13 14:09:26.747 2025-03-13 14:09:26.747 436362 6202 436381 5961 2 9731 2025-03-13 15:07:02.384 2025-03-13 15:07:02.384 436363 15978 436447 20680 1 9732 2025-03-13 15:24:03.15 2025-03-13 15:24:03.15 436410 1354 436474 21214 1 9733 2025-03-13 15:04:25.45 2025-03-13 15:04:25.45 436364 16270 436442 1823 1 9734 2025-03-13 15:07:13.546 2025-03-13 15:07:13.546 436364 16270 436448 10016 2 9735 2025-03-13 15:24:46.397 2025-03-13 15:24:46.397 436368 10934 436478 711 1 9736 2025-03-13 15:25:10.429 2025-03-13 15:25:10.429 436370 690 436479 9348 1 9737 2025-03-13 17:27:01.225 2025-03-13 17:27:01.225 436383 3377 436591 9362 1 9738 2025-03-13 15:21:34.308 2025-03-13 15:21:34.308 436372 713 436468 666 1 9739 2025-03-13 17:47:23.517 2025-03-13 17:47:23.517 436372 713 436602 1650 1 9740 2025-03-13 14:09:20.402 2025-03-13 14:09:20.402 436373 16830 436380 4287 1 9741 2025-03-13 15:21:25.244 2025-03-13 15:21:25.244 436373 16830 436467 7760 1 9742 2025-03-13 15:32:41.733 2025-03-13 15:32:41.733 436373 16830 436492 899 1 9743 2025-03-13 14:14:57.012 2025-03-13 14:14:57.012 436375 10586 436386 19826 2 9744 2025-03-13 14:09:26.747 2025-03-13 14:09:26.747 436375 10586 436381 5961 1 9745 2025-03-13 16:17:12.56 2025-03-13 16:17:12.56 436377 8726 436535 20939 1 9746 2025-03-13 16:04:19.804 2025-03-13 16:04:19.804 436487 4250 436524 18901 1 9747 2025-03-13 14:14:57.012 2025-03-13 14:14:57.012 436381 5961 436386 19826 1 9748 2025-03-13 14:29:03.156 2025-03-13 14:29:03.156 436390 9166 436399 16556 1 9749 2025-03-13 14:31:49.481 2025-03-13 14:31:49.481 436391 20624 436401 20137 2 9750 2025-03-13 14:33:35.894 2025-03-13 14:33:35.894 436391 20624 436404 3461 3 9751 2025-03-13 14:27:12.101 2025-03-13 14:27:12.101 436391 20624 436398 1890 1 9752 2025-03-13 14:40:12.588 2025-03-13 14:40:12.588 436391 20624 436411 15858 4 9753 2025-03-13 16:15:50.016 2025-03-13 16:15:50.016 436395 20225 436534 9920 1 9754 2025-03-13 15:27:17.926 2025-03-13 15:27:17.926 436396 20892 436483 691 4 9755 2025-03-13 15:22:36.375 2025-03-13 15:22:36.375 436396 20892 436471 21222 2 9756 2025-03-13 15:08:10.288 2025-03-13 15:08:10.288 436396 20892 436451 20713 1 9757 2025-03-13 15:24:42.78 2025-03-13 15:24:42.78 436396 20892 436477 21072 3 9758 2025-03-13 14:49:57.337 2025-03-13 14:49:57.337 436397 20500 436417 2203 1 9759 2025-03-13 14:31:49.481 2025-03-13 14:31:49.481 436398 1890 436401 20137 1 9760 2025-03-13 14:33:35.894 2025-03-13 14:33:35.894 436398 1890 436404 3461 2 9761 2025-03-13 14:40:12.588 2025-03-13 14:40:12.588 436398 1890 436411 15858 3 9762 2025-03-13 14:33:35.894 2025-03-13 14:33:35.894 436401 20137 436404 3461 1 9763 2025-03-13 14:40:12.588 2025-03-13 14:40:12.588 436401 20137 436411 15858 2 9764 2025-03-13 14:40:12.588 2025-03-13 14:40:12.588 436404 3461 436411 15858 1 9765 2025-03-13 17:07:09.462 2025-03-13 17:07:09.462 436407 866 436581 7983 1 9766 2025-03-13 14:53:13.325 2025-03-13 14:53:13.325 436415 10016 436424 18529 1 9767 2025-03-13 14:51:31.688 2025-03-13 14:51:31.688 436416 20073 436419 17209 1 9768 2025-03-13 15:06:12.973 2025-03-13 15:06:12.973 436437 9169 436446 5293 1 9769 2025-03-13 15:42:48.366 2025-03-13 15:42:48.366 436437 9169 436505 1713 2 9770 2025-03-13 17:06:41.186 2025-03-13 17:06:41.186 436480 2329 436580 667 1 9771 2025-03-13 15:11:47.617 2025-03-13 15:11:47.617 436430 19375 436456 21455 1 9772 2025-03-13 15:07:58.886 2025-03-13 15:07:58.886 436439 9242 436450 2322 1 9773 2025-03-13 16:08:14.107 2025-03-13 16:08:14.107 436494 17212 436526 4754 1 9774 2025-03-13 15:35:08.99 2025-03-13 15:35:08.99 436494 17212 436496 17218 1 9775 2025-03-13 15:23:26.17 2025-03-13 15:23:26.17 436445 624 436473 616 1 9776 2025-03-13 15:42:48.366 2025-03-13 15:42:48.366 436446 5293 436505 1713 1 9777 2025-03-13 15:36:41.372 2025-03-13 15:36:41.372 436449 1236 436498 687 1 9778 2025-03-13 16:17:31.818 2025-03-13 16:17:31.818 436449 1236 436537 1175 2 9779 2025-03-13 15:27:17.926 2025-03-13 15:27:17.926 436451 20713 436483 691 3 9780 2025-03-13 15:22:36.375 2025-03-13 15:22:36.375 436451 20713 436471 21222 1 9781 2025-03-13 15:24:42.78 2025-03-13 15:24:42.78 436451 20713 436477 21072 2 9782 2025-03-13 15:28:59.69 2025-03-13 15:28:59.69 436452 1618 436486 780 1 9783 2025-03-13 15:37:15.34 2025-03-13 15:37:15.34 436452 1618 436500 19569 2 9784 2025-03-13 16:17:31.818 2025-03-13 16:17:31.818 436455 1236 436537 1175 1 9785 2025-03-13 16:03:03.482 2025-03-13 16:03:03.482 436457 4819 436521 21019 1 9786 2025-03-13 15:39:33.854 2025-03-13 15:39:33.854 436495 10698 436501 1970 1 9787 2025-03-13 16:29:34.562 2025-03-13 16:29:34.562 436459 1737 436552 1401 1 9788 2025-03-13 16:46:07.478 2025-03-13 16:46:07.478 436459 1737 436563 16998 2 9789 2025-03-13 16:03:06.6 2025-03-13 16:03:06.6 436459 1737 436522 1298 1 9790 2025-03-13 16:46:57.907 2025-03-13 16:46:57.907 436459 1737 436565 6777 2 9791 2025-03-13 15:29:43.766 2025-03-13 15:29:43.766 436460 20734 436488 11443 1 9792 2025-03-13 15:34:38.288 2025-03-13 15:34:38.288 436460 20734 436495 10698 3 9793 2025-03-13 15:31:16.187 2025-03-13 15:31:16.187 436460 20734 436490 7125 2 9794 2025-03-13 15:39:33.854 2025-03-13 15:39:33.854 436460 20734 436501 1970 4 9795 2025-03-13 15:45:51.896 2025-03-13 15:45:51.896 436465 6393 436509 20979 1 9796 2025-03-13 16:20:00.501 2025-03-13 16:20:00.501 436465 6393 436542 775 2 9797 2025-03-13 15:30:25.675 2025-03-13 15:30:25.675 436466 5978 436489 18743 3 9798 2025-03-13 18:22:59.824 2025-03-13 18:22:59.824 436466 5978 436633 692 2 9799 2025-03-13 18:39:40.205 2025-03-13 18:39:40.205 436466 5978 436644 4177 3 9800 2025-03-13 15:24:32.338 2025-03-13 15:24:32.338 436466 5978 436475 7983 1 9801 2025-03-13 15:25:50.476 2025-03-13 15:25:50.476 436466 5978 436481 9184 2 9802 2025-03-13 15:40:45.95 2025-03-13 15:40:45.95 436466 5978 436503 910 4 9803 2025-03-13 15:27:17.926 2025-03-13 15:27:17.926 436471 21222 436483 691 2 9804 2025-03-13 15:24:42.78 2025-03-13 15:24:42.78 436471 21222 436477 21072 1 9805 2025-03-13 15:30:25.675 2025-03-13 15:30:25.675 436475 7983 436489 18743 2 9806 2025-03-13 18:22:59.824 2025-03-13 18:22:59.824 436475 7983 436633 692 1 9807 2025-03-13 18:39:40.205 2025-03-13 18:39:40.205 436475 7983 436644 4177 2 9808 2025-03-13 15:25:50.476 2025-03-13 15:25:50.476 436475 7983 436481 9184 1 9809 2025-03-13 15:40:45.95 2025-03-13 15:40:45.95 436475 7983 436503 910 3 9810 2025-03-13 15:27:17.926 2025-03-13 15:27:17.926 436477 21072 436483 691 1 9811 2025-03-13 15:30:25.675 2025-03-13 15:30:25.675 436481 9184 436489 18743 1 9812 2025-03-13 15:40:45.95 2025-03-13 15:40:45.95 436481 9184 436503 910 2 9813 2025-03-13 15:37:15.34 2025-03-13 15:37:15.34 436486 780 436500 19569 1 9814 2025-03-13 15:40:45.95 2025-03-13 15:40:45.95 436489 18743 436503 910 1 9815 2025-03-13 15:34:38.288 2025-03-13 15:34:38.288 436490 7125 436495 10698 1 9816 2025-03-13 15:39:33.854 2025-03-13 15:39:33.854 436490 7125 436501 1970 2 9817 2025-03-13 18:34:14.424 2025-03-13 18:34:14.424 436491 2640 436641 21639 1 9818 2025-03-13 16:11:35.104 2025-03-13 16:11:35.104 436493 21578 436528 1784 2 9819 2025-03-13 16:15:38.035 2025-03-13 16:15:38.035 436493 21578 436533 14941 2 9820 2025-03-13 17:02:18.207 2025-03-13 17:02:18.207 436493 21578 436578 685 3 9821 2025-03-13 17:11:37.929 2025-03-13 17:11:37.929 436493 21578 436583 1136 4 9822 2025-03-13 15:53:25.606 2025-03-13 15:53:25.606 436493 21578 436515 16598 1 9823 2025-03-13 16:21:22.567 2025-03-13 16:21:22.567 436493 21578 436544 1585 1 9824 2025-03-13 16:46:24.863 2025-03-13 16:46:24.863 436493 21578 436564 19829 1 9825 2025-03-13 16:59:17.606 2025-03-13 16:59:17.606 436493 21578 436576 9335 3 9826 2025-03-13 17:00:19.358 2025-03-13 17:00:19.358 436493 21578 436577 9992 2 9827 2025-03-13 16:36:51.363 2025-03-13 16:36:51.363 436514 19777 436557 2775 1 9828 2025-03-13 20:10:04.351 2025-03-13 20:10:04.351 436514 19777 436707 17046 1 9829 2025-03-13 16:11:35.104 2025-03-13 16:11:35.104 436515 16598 436528 1784 1 9830 2025-03-13 16:15:38.035 2025-03-13 16:15:38.035 436515 16598 436533 14941 1 9831 2025-03-13 16:59:17.606 2025-03-13 16:59:17.606 436515 16598 436576 9335 2 9832 2025-03-13 20:26:24.246 2025-03-13 20:26:24.246 436499 10433 436710 20993 1 9833 2025-03-13 16:09:02.678 2025-03-13 16:09:02.678 436499 10433 436527 13100 1 9834 2025-03-13 17:31:33.928 2025-03-13 17:31:33.928 436499 10433 436594 15617 2 9835 2025-03-13 17:38:36.914 2025-03-13 17:38:36.914 436499 10433 436598 14381 3 9836 2025-03-13 17:55:27.909 2025-03-13 17:55:27.909 436499 10433 436609 1236 2 9837 2025-03-13 16:52:38.464 2025-03-13 16:52:38.464 436499 10433 436569 16276 1 9838 2025-03-13 17:10:58.062 2025-03-13 17:10:58.062 436499 10433 436582 14168 1 9839 2025-03-13 20:30:03.024 2025-03-13 20:30:03.024 436499 10433 436712 894 1 9840 2025-03-13 17:33:39.528 2025-03-13 17:33:39.528 436507 11515 436595 1092 1 9841 2025-03-13 15:55:45.117 2025-03-13 15:55:45.117 436508 8380 436517 7827 1 9842 2025-03-13 16:20:00.501 2025-03-13 16:20:00.501 436509 20979 436542 775 1 9843 2025-03-13 16:14:03.213 2025-03-13 16:14:03.213 436518 2022 436531 10554 1 9844 2025-03-13 18:06:02.226 2025-03-13 18:06:02.226 436518 2022 436615 15510 2 9845 2025-03-13 16:18:11.781 2025-03-13 16:18:11.781 436519 7583 436538 15336 1 9846 2025-03-13 18:53:53.183 2025-03-13 18:53:53.183 436519 7583 436653 11038 3 9847 2025-03-13 16:22:23.582 2025-03-13 16:22:23.582 436519 7583 436545 698 2 9848 2025-03-13 16:46:57.907 2025-03-13 16:46:57.907 436522 1298 436565 6777 1 9849 2025-03-13 16:23:46.902 2025-03-13 16:23:46.902 436547 7682 436548 831 1 9850 2025-03-13 16:28:53.8 2025-03-13 16:28:53.8 436547 7682 436551 20613 2 9851 2025-03-13 18:06:02.226 2025-03-13 18:06:02.226 436531 10554 436615 15510 1 9852 2025-03-13 19:47:43.455 2025-03-13 19:47:43.455 436695 20133 436696 8284 1 9853 2025-03-13 19:50:07.505 2025-03-13 19:50:07.505 436695 20133 436698 1142 2 9854 2025-03-13 16:59:17.606 2025-03-13 16:59:17.606 436533 14941 436576 9335 1 9855 2025-03-13 18:53:53.183 2025-03-13 18:53:53.183 436538 15336 436653 11038 2 9856 2025-03-13 16:22:23.582 2025-03-13 16:22:23.582 436538 15336 436545 698 1 9857 2025-03-13 18:53:53.183 2025-03-13 18:53:53.183 436545 698 436653 11038 1 9858 2025-03-13 16:28:53.8 2025-03-13 16:28:53.8 436548 831 436551 20613 1 9859 2025-03-13 19:50:07.505 2025-03-13 19:50:07.505 436696 8284 436698 1142 1 9860 2025-03-19 13:14:07.059 2025-03-19 13:14:07.059 443613 6191 443681 21427 4 9861 2025-03-19 13:05:00.796 2025-03-19 13:05:00.796 443613 6191 443669 20841 1 9862 2025-03-19 13:11:22.167 2025-03-19 13:11:22.167 443613 6191 443676 17708 2 9863 2025-03-19 13:13:43.575 2025-03-19 13:13:43.575 443613 6191 443680 2010 3 9864 2025-03-19 13:17:00.816 2025-03-19 13:17:00.816 443613 6191 443686 19087 5 9865 2025-03-13 16:46:07.478 2025-03-13 16:46:07.478 436552 1401 436563 16998 1 9866 2025-03-13 17:47:28.292 2025-03-13 17:47:28.292 436560 21803 436603 19488 1 9867 2025-03-13 18:05:32.131 2025-03-13 18:05:32.131 436560 21803 436614 963 2 9868 2025-03-13 18:43:40.591 2025-03-13 18:43:40.591 436561 16950 436649 5129 2 9869 2025-03-13 18:25:45.162 2025-03-13 18:25:45.162 436561 16950 436635 15045 1 9870 2025-03-13 17:02:18.207 2025-03-13 17:02:18.207 436564 19829 436578 685 2 9871 2025-03-13 17:11:37.929 2025-03-13 17:11:37.929 436564 19829 436583 1136 3 9872 2025-03-13 17:00:19.358 2025-03-13 17:00:19.358 436564 19829 436577 9992 1 9873 2025-03-19 12:40:04.983 2025-03-19 12:40:04.983 443116 9529 443609 19655 1 9874 2025-03-19 12:50:59.443 2025-03-19 12:50:59.443 443116 9529 443649 7674 1 9875 2025-03-13 16:52:49.592 2025-03-13 16:52:49.592 436567 17001 436570 9611 1 9876 2025-03-13 17:31:33.928 2025-03-13 17:31:33.928 436569 16276 436594 15617 1 9877 2025-03-13 17:38:36.914 2025-03-13 17:38:36.914 436569 16276 436598 14381 2 9878 2025-03-13 18:33:45.374 2025-03-13 18:33:45.374 436572 21036 436639 18177 1 9879 2025-03-13 17:02:18.207 2025-03-13 17:02:18.207 436577 9992 436578 685 1 9880 2025-03-13 17:11:37.929 2025-03-13 17:11:37.929 436577 9992 436583 1136 2 9881 2025-03-13 17:11:37.929 2025-03-13 17:11:37.929 436578 685 436583 1136 1 9882 2025-03-13 17:55:27.909 2025-03-13 17:55:27.909 436582 14168 436609 1236 1 9883 2025-03-13 17:25:46.032 2025-03-13 17:25:46.032 436585 16948 436588 21042 1 9884 2025-03-13 17:25:52.171 2025-03-13 17:25:52.171 436585 16948 436590 21734 1 9885 2025-03-13 18:15:02.356 2025-03-13 18:15:02.356 436600 13987 436625 7418 1 9886 2025-03-13 18:17:25.405 2025-03-13 18:17:25.405 436600 13987 436630 2577 1 9887 2025-03-13 18:24:44.051 2025-03-13 18:24:44.051 436600 13987 436634 5829 2 9888 2025-03-13 18:46:40.672 2025-03-13 18:46:40.672 436600 13987 436650 1983 3 9889 2025-03-13 17:40:18.986 2025-03-13 17:40:18.986 436593 13177 436599 13517 1 9890 2025-03-13 19:14:53.935 2025-03-13 19:14:53.935 436593 13177 436666 1047 1 9891 2025-03-13 19:44:45.6 2025-03-13 19:44:45.6 436593 13177 436693 4973 1 9892 2025-03-13 17:48:27.661 2025-03-13 17:48:27.661 436593 13177 436605 1316 1 9893 2025-03-13 17:49:23.562 2025-03-13 17:49:23.562 436593 13177 436606 17713 2 9894 2025-03-13 17:38:36.914 2025-03-13 17:38:36.914 436594 15617 436598 14381 1 9895 2025-03-13 17:38:36.666 2025-03-13 17:38:36.666 436596 663 436597 756 1 9896 2025-03-13 17:49:23.562 2025-03-13 17:49:23.562 436599 13517 436606 17713 1 9897 2025-03-13 18:05:32.131 2025-03-13 18:05:32.131 436603 19488 436614 963 1 9898 2025-03-13 19:20:55.04 2025-03-13 19:20:55.04 436612 2111 436673 9261 1 9899 2025-03-13 19:50:59.106 2025-03-13 19:50:59.106 436612 2111 436700 21480 1 9900 2025-03-13 20:02:29.161 2025-03-13 20:02:29.161 436612 2111 436705 20993 2 9901 2025-03-13 19:24:24.022 2025-03-13 19:24:24.022 436619 2789 436676 9705 1 9902 2025-03-13 18:16:28.761 2025-03-13 18:16:28.761 436620 14152 436628 21427 1 9903 2025-03-13 18:24:44.051 2025-03-13 18:24:44.051 436630 2577 436634 5829 1 9904 2025-03-13 18:46:40.672 2025-03-13 18:46:40.672 436630 2577 436650 1983 2 9905 2025-03-13 18:39:40.205 2025-03-13 18:39:40.205 436633 692 436644 4177 1 9906 2025-03-13 18:46:40.672 2025-03-13 18:46:40.672 436634 5829 436650 1983 1 9907 2025-03-13 18:43:40.591 2025-03-13 18:43:40.591 436635 15045 436649 5129 1 9908 2025-03-13 18:53:48.035 2025-03-13 18:53:48.035 436651 5175 436652 14225 1 9909 2025-03-13 19:08:22.671 2025-03-13 19:08:22.671 436659 20205 436660 19332 1 9910 2025-03-13 19:27:23.602 2025-03-13 19:27:23.602 436665 1618 436678 14705 1 9911 2025-03-13 19:31:38.053 2025-03-13 19:31:38.053 436665 1618 436679 16442 1 9912 2025-03-13 19:31:51.916 2025-03-13 19:31:51.916 436665 1618 436680 703 1 9913 2025-03-13 19:33:24.984 2025-03-13 19:33:24.984 436665 1618 436682 18177 1 9914 2025-03-13 19:45:16.683 2025-03-13 19:45:16.683 436669 18923 436694 1114 1 9915 2025-03-14 00:14:46.834 2025-03-14 00:14:46.834 436669 18923 436850 20768 2 9916 2025-03-13 22:26:27.003 2025-03-13 22:26:27.003 436669 18923 436782 5708 1 9917 2025-03-13 23:47:24.38 2025-03-13 23:47:24.38 436669 18923 436832 21647 2 9918 2025-03-14 00:06:29.625 2025-03-14 00:06:29.625 436669 18923 436846 9863 3 9919 2025-03-19 10:10:55.433 2025-03-19 10:10:55.433 443338 1488 443381 6164 1 9920 2025-03-19 11:16:01.421 2025-03-19 11:16:01.421 443338 1488 443460 16847 3 9921 2025-03-19 11:06:32.851 2025-03-19 11:06:32.851 443338 1488 443452 21373 2 9922 2025-03-13 20:02:29.161 2025-03-13 20:02:29.161 436700 21480 436705 20993 1 9923 2025-03-13 21:08:07.21 2025-03-13 21:08:07.21 436720 10591 436724 21444 1 9924 2025-03-19 10:39:06.343 2025-03-19 10:39:06.343 443105 1044 443413 9177 5 9925 2025-03-19 10:40:02.404 2025-03-19 10:40:02.404 443105 1044 443414 6268 6 9926 2025-03-19 09:39:37.535 2025-03-19 09:39:37.535 443105 1044 443359 629 5 9927 2025-03-19 09:30:41.705 2025-03-19 09:30:41.705 443105 1044 443350 1298 3 9928 2025-03-19 06:33:37.427 2025-03-19 06:33:37.427 443105 1044 443193 14663 1 9929 2025-03-19 09:12:23.078 2025-03-19 09:12:23.078 443105 1044 443331 2000 2 9930 2025-03-19 09:32:05.157 2025-03-19 09:32:05.157 443105 1044 443351 17494 4 9931 2025-03-19 09:37:04.074 2025-03-19 09:37:04.074 443105 1044 443358 4287 4 9932 2025-03-19 10:36:41.137 2025-03-19 10:36:41.137 443105 1044 443410 17415 3 9933 2025-03-19 10:58:39.117 2025-03-19 10:58:39.117 443105 1044 443439 18441 2 9934 2025-03-19 09:13:58.609 2025-03-19 09:13:58.609 443105 1044 443335 690 3 9935 2025-03-19 08:37:42.844 2025-03-19 08:37:42.844 443105 1044 443286 20370 2 9936 2025-03-19 08:34:52.86 2025-03-19 08:34:52.86 443105 1044 443282 20479 1 9937 2025-03-19 09:30:35.144 2025-03-19 09:30:35.144 443105 1044 443349 4395 1 9938 2025-03-19 10:06:01.851 2025-03-19 10:06:01.851 443105 1044 443379 18423 1 9939 2025-03-19 10:56:40.314 2025-03-19 10:56:40.314 443105 1044 443436 11776 6 9940 2025-03-19 10:53:55.845 2025-03-19 10:53:55.845 443105 1044 443432 618 5 9941 2025-03-19 11:01:09.07 2025-03-19 11:01:09.07 443105 1044 443443 21060 2 9942 2025-03-19 09:21:53.224 2025-03-19 09:21:53.224 443105 1044 443341 2709 2 9943 2025-03-19 08:51:19.026 2025-03-19 08:51:19.026 443105 1044 443300 12261 1 9944 2025-03-19 12:05:03.395 2025-03-19 12:05:03.395 438108 11153 443535 2322 1 9945 2025-03-17 21:12:01.758 2025-03-17 21:12:01.758 440692 9655 441234 5870 6 9946 2025-03-17 19:24:37.981 2025-03-17 19:24:37.981 440692 9655 441130 802 2 9947 2025-03-17 21:05:19.867 2025-03-17 21:05:19.867 440692 9655 441226 17316 5 9948 2025-03-17 17:47:49.84 2025-03-17 17:47:49.84 440692 9655 441011 6268 1 9949 2025-03-22 18:38:02.438 2025-03-22 18:38:02.438 440692 9655 448627 21303 8 9950 2025-03-17 20:52:58.177 2025-03-17 20:52:58.177 440692 9655 441211 4345 3 9951 2025-03-17 20:55:26.412 2025-03-17 20:55:26.412 440692 9655 441215 21041 4 9952 2025-03-17 18:15:58.117 2025-03-17 18:15:58.117 440692 9655 441057 9295 1 9953 2025-03-17 21:33:47.419 2025-03-17 21:33:47.419 440692 9655 441254 11760 7 9954 2025-03-18 17:31:50.932 2025-03-18 17:31:50.932 440692 9655 442608 7583 2 9955 2025-03-18 07:13:31.78 2025-03-18 07:13:31.78 440692 9655 441610 6419 1 9956 2025-03-22 18:30:33.218 2025-03-22 18:30:33.218 440692 9655 448622 688 3 9957 2025-03-18 18:57:23.338 2025-03-18 18:57:23.338 440692 9655 442711 18473 2 9958 2025-03-19 10:32:35.156 2025-03-19 10:32:35.156 442163 20713 443407 14225 4 9959 2025-03-19 00:07:49.719 2025-03-19 00:07:49.719 442163 20713 443001 713 2 9960 2025-03-19 01:37:25.61 2025-03-19 01:37:25.61 442163 20713 443052 1801 3 9961 2025-03-18 13:37:03.586 2025-03-18 13:37:03.586 442163 20713 442234 9450 1 9962 2025-03-19 11:34:43.447 2025-03-19 11:34:43.447 443096 3706 443482 20817 1 9963 2025-03-19 10:05:46.044 2025-03-19 10:05:46.044 443099 1720 443378 18011 2 9964 2025-03-19 10:49:14.772 2025-03-19 10:49:14.772 443099 1720 443423 7668 1 9965 2025-03-19 11:03:40.112 2025-03-19 11:03:40.112 443099 1720 443447 5520 2 9966 2025-03-19 12:40:04.983 2025-03-19 12:40:04.983 443099 1720 443609 19655 2 9967 2025-03-19 13:03:25.078 2025-03-19 13:03:25.078 443099 1720 443668 980 1 9968 2025-03-19 06:03:12.123 2025-03-19 06:03:12.123 443099 1720 443182 17713 2 9969 2025-03-19 04:15:30.025 2025-03-19 04:15:30.025 443099 1720 443116 9529 1 9970 2025-03-19 03:51:04.168 2025-03-19 03:51:04.168 443099 1720 443100 27 1 9971 2025-03-19 10:13:00.104 2025-03-19 10:13:00.104 443099 1720 443384 640 3 9972 2025-03-19 12:50:59.443 2025-03-19 12:50:59.443 443099 1720 443649 7674 2 9973 2025-03-19 10:05:46.044 2025-03-19 10:05:46.044 443100 27 443378 18011 1 9974 2025-03-19 06:03:12.123 2025-03-19 06:03:12.123 443100 27 443182 17713 1 9975 2025-03-19 10:13:00.104 2025-03-19 10:13:00.104 443100 27 443384 640 2 9976 2025-03-19 10:54:49.698 2025-03-19 10:54:49.698 442985 1624 443433 5646 1 9977 2025-03-19 11:40:33.487 2025-03-19 11:40:33.487 443038 3642 443492 2722 1 9978 2025-03-19 02:08:52.229 2025-03-19 02:08:52.229 443058 964 443069 1142 1 9979 2025-03-19 03:22:22.01 2025-03-19 03:22:22.01 443058 964 443091 7125 1 9980 2025-03-19 09:56:20.611 2025-03-19 09:56:20.611 443253 929 443370 14959 1 9981 2025-03-19 11:39:48.199 2025-03-19 11:39:48.199 443142 21825 443488 16667 1 9982 2025-03-19 11:31:02.406 2025-03-19 11:31:02.406 443152 701 443476 7580 1 9983 2025-03-19 06:06:43.225 2025-03-19 06:06:43.225 443179 19005 443183 10016 1 9984 2025-03-19 13:19:38.517 2025-03-19 13:19:38.517 443179 19005 443694 20674 1 9985 2025-03-19 11:25:30.905 2025-03-19 11:25:30.905 443221 10661 443471 7558 1 9986 2025-03-19 11:23:46.879 2025-03-19 11:23:46.879 443231 21274 443470 628 1 9987 2025-03-19 11:32:38.417 2025-03-19 11:32:38.417 443231 21274 443479 19463 2 9988 2025-03-19 11:01:09.07 2025-03-19 11:01:09.07 443349 4395 443443 21060 1 9989 2025-03-19 09:13:45.432 2025-03-19 09:13:45.432 443330 16695 443333 5578 1 9990 2025-03-19 09:25:25.539 2025-03-19 09:25:25.539 443332 21709 443344 12779 1 9991 2025-03-19 09:58:08.74 2025-03-19 09:58:08.74 443332 21709 443371 11298 1 9992 2025-03-19 10:13:27.763 2025-03-19 10:13:27.763 443332 21709 443385 21238 2 9993 2025-03-19 10:14:51.714 2025-03-19 10:14:51.714 443332 21709 443387 8945 3 9994 2025-03-19 10:21:49.06 2025-03-19 10:21:49.06 443332 21709 443398 20291 4 9995 2025-03-19 11:33:41.623 2025-03-19 11:33:41.623 443332 21709 443481 18529 5 9996 2025-03-19 13:17:13.477 2025-03-19 13:17:13.477 443332 21709 443687 20734 1 9997 2025-03-19 08:45:59.602 2025-03-19 08:45:59.602 443288 21412 443294 4633 1 9998 2025-03-19 13:39:45.751 2025-03-19 13:39:45.751 443288 21412 443726 17226 1 9999 2025-03-19 10:21:46.523 2025-03-19 10:21:46.523 443288 21412 443397 15544 1 10000 2025-03-19 12:19:33.9 2025-03-19 12:19:33.9 443288 21412 443567 940 1 10001 2025-03-19 12:46:49.055 2025-03-19 12:46:49.055 443288 21412 443631 21406 1 10002 2025-03-19 08:51:57.228 2025-03-19 08:51:57.228 443298 1505 443307 21709 1 10003 2025-03-19 10:56:40.314 2025-03-19 10:56:40.314 443351 17494 443436 11776 2 10004 2025-03-19 10:53:55.845 2025-03-19 10:53:55.845 443351 17494 443432 618 1 10005 2025-03-19 10:31:48.487 2025-03-19 10:31:48.487 443353 18306 443405 12870 1 10006 2025-03-19 11:21:57.255 2025-03-19 11:21:57.255 443313 8570 443469 20756 1 10007 2025-03-19 09:07:00.318 2025-03-19 09:07:00.318 443322 20687 443327 21063 1 10008 2025-03-19 09:10:00.332 2025-03-19 09:10:00.332 443328 20490 443330 16695 1 10009 2025-03-19 09:13:45.432 2025-03-19 09:13:45.432 443328 20490 443333 5578 2 10010 2025-03-19 10:39:06.343 2025-03-19 10:39:06.343 443331 2000 443413 9177 3 10011 2025-03-19 10:40:02.404 2025-03-19 10:40:02.404 443331 2000 443414 6268 4 10012 2025-03-19 09:39:37.535 2025-03-19 09:39:37.535 443331 2000 443359 629 3 10013 2025-03-19 09:30:41.705 2025-03-19 09:30:41.705 443331 2000 443350 1298 1 10014 2025-03-19 09:37:04.074 2025-03-19 09:37:04.074 443331 2000 443358 4287 2 10015 2025-03-19 11:25:32.571 2025-03-19 11:25:32.571 443334 16289 443472 646 1 10016 2025-03-19 11:29:49.849 2025-03-19 11:29:49.849 443334 16289 443475 13865 2 10017 2025-03-19 15:10:24.501 2025-03-19 15:10:24.501 443339 5519 443891 9261 4 10018 2025-03-19 09:18:07.375 2025-03-19 09:18:07.375 443339 5519 443340 13467 1 10019 2025-03-19 09:35:23.573 2025-03-19 09:35:23.573 443339 5519 443356 1761 1 10020 2025-03-19 10:25:04.678 2025-03-19 10:25:04.678 443339 5519 443401 17696 2 10021 2025-03-19 15:08:23.595 2025-03-19 15:08:23.595 443339 5519 443888 4177 3 10022 2025-03-19 15:10:24.501 2025-03-19 15:10:24.501 443356 1761 443891 9261 3 10023 2025-03-19 10:25:04.678 2025-03-19 10:25:04.678 443356 1761 443401 17696 1 10024 2025-03-19 15:08:23.595 2025-03-19 15:08:23.595 443356 1761 443888 4177 2 10025 2025-03-19 10:39:06.343 2025-03-19 10:39:06.343 443358 4287 443413 9177 1 10026 2025-03-19 10:40:02.404 2025-03-19 10:40:02.404 443358 4287 443414 6268 2 10027 2025-03-19 09:39:37.535 2025-03-19 09:39:37.535 443358 4287 443359 629 1 10028 2025-03-19 10:58:39.117 2025-03-19 10:58:39.117 443379 18423 443439 18441 1 10029 2025-03-19 10:22:48.285 2025-03-19 10:22:48.285 443395 9529 443400 763 1 10030 2025-03-19 10:50:46.024 2025-03-19 10:50:46.024 443395 9529 443426 17690 2 10031 2025-03-19 09:47:40.434 2025-03-19 09:47:40.434 443364 8684 443365 10490 1 10032 2025-03-19 10:56:05.725 2025-03-19 10:56:05.725 443367 15843 443435 1983 2 10033 2025-03-19 10:45:20.96 2025-03-19 10:45:20.96 443367 15843 443419 21506 1 10034 2025-03-19 12:35:44.044 2025-03-19 12:35:44.044 443437 9378 443597 964 1 10035 2025-03-19 13:19:12.055 2025-03-19 13:19:12.055 443437 9378 443690 9494 2 10036 2025-03-19 13:23:19.166 2025-03-19 13:23:19.166 443437 9378 443700 6149 3 10037 2025-03-19 10:13:27.763 2025-03-19 10:13:27.763 443371 11298 443385 21238 1 10038 2025-03-19 10:14:51.714 2025-03-19 10:14:51.714 443371 11298 443387 8945 2 10039 2025-03-19 10:21:49.06 2025-03-19 10:21:49.06 443371 11298 443398 20291 3 10040 2025-03-19 11:33:41.623 2025-03-19 11:33:41.623 443371 11298 443481 18529 4 10041 2025-03-19 10:14:51.714 2025-03-19 10:14:51.714 443385 21238 443387 8945 1 10042 2025-03-19 10:21:49.06 2025-03-19 10:21:49.06 443385 21238 443398 20291 2 10043 2025-03-19 11:33:41.623 2025-03-19 11:33:41.623 443385 21238 443481 18529 3 10044 2025-03-19 11:35:35.761 2025-03-19 11:35:35.761 443386 11967 443484 12946 2 10045 2025-03-19 13:11:28.068 2025-03-19 13:11:28.068 443386 11967 443677 20291 3 10046 2025-03-19 10:18:01.639 2025-03-19 10:18:01.639 443386 11967 443393 1471 1 10047 2025-03-19 11:31:49.523 2025-03-19 11:31:49.523 443386 11967 443478 10981 1 10048 2025-03-19 12:54:35.456 2025-03-19 12:54:35.456 443386 11967 443657 16808 1 10049 2025-03-19 10:21:49.06 2025-03-19 10:21:49.06 443387 8945 443398 20291 1 10050 2025-03-19 11:33:41.623 2025-03-19 11:33:41.623 443387 8945 443481 18529 2 10051 2025-03-19 11:07:58.376 2025-03-19 11:07:58.376 443388 13763 443454 9450 1 10052 2025-03-19 12:12:48.369 2025-03-19 12:12:48.369 443388 13763 443547 623 3 10053 2025-03-19 12:09:17.621 2025-03-19 12:09:17.621 443388 13763 443540 20602 2 10054 2025-03-19 13:19:21.373 2025-03-19 13:19:21.373 443388 13763 443692 21541 5 10055 2025-03-19 11:28:41.663 2025-03-19 11:28:41.663 443388 13763 443474 16042 2 10056 2025-03-19 12:12:41.95 2025-03-19 12:12:41.95 443388 13763 443546 11996 3 10057 2025-03-19 13:09:36.966 2025-03-19 13:09:36.966 443388 13763 443674 1605 4 10058 2025-03-19 12:18:51.63 2025-03-19 12:18:51.63 443396 16543 443563 9275 1 10059 2025-03-19 12:20:34.544 2025-03-19 12:20:34.544 443396 16543 443569 16212 1 10060 2025-03-19 11:33:41.623 2025-03-19 11:33:41.623 443398 20291 443481 18529 1 10061 2025-03-19 11:07:58.87 2025-03-19 11:07:58.87 443422 21320 443455 20854 1 10062 2025-03-19 11:52:00.513 2025-03-19 11:52:00.513 443422 21320 443516 20381 2 10063 2025-03-19 11:57:25.309 2025-03-19 11:57:25.309 443422 21320 443523 16684 3 10064 2025-03-19 11:45:18.54 2025-03-19 11:45:18.54 443422 21320 443503 20776 1 10065 2025-03-19 11:03:40.112 2025-03-19 11:03:40.112 443423 7668 443447 5520 1 10066 2025-03-19 23:03:27.481 2025-03-19 23:03:27.481 443399 12774 444474 18743 2 10067 2025-03-19 20:55:26.919 2025-03-19 20:55:26.919 443399 12774 444397 15521 1 10068 2025-03-19 10:47:05.634 2025-03-19 10:47:05.634 443399 12774 443422 21320 1 10069 2025-03-19 10:50:38.628 2025-03-19 10:50:38.628 443399 12774 443425 894 1 10070 2025-03-19 11:07:58.87 2025-03-19 11:07:58.87 443399 12774 443455 20854 2 10071 2025-03-19 11:13:50.12 2025-03-19 11:13:50.12 443399 12774 443459 18231 1 10072 2025-03-19 11:52:00.513 2025-03-19 11:52:00.513 443399 12774 443516 20381 3 10073 2025-03-19 11:57:25.309 2025-03-19 11:57:25.309 443399 12774 443523 16684 4 10074 2025-03-19 11:59:22.94 2025-03-19 11:59:22.94 443399 12774 443525 13903 2 10075 2025-03-19 12:34:29.481 2025-03-19 12:34:29.481 443399 12774 443594 2519 2 10076 2025-03-19 12:30:26.069 2025-03-19 12:30:26.069 443399 12774 443586 21577 1 10077 2025-03-19 12:48:55.681 2025-03-19 12:48:55.681 443399 12774 443644 20734 1 10078 2025-03-19 11:45:18.54 2025-03-19 11:45:18.54 443399 12774 443503 20776 2 10079 2025-03-19 11:51:46.643 2025-03-19 11:51:46.643 443399 12774 443515 736 1 10080 2025-03-19 11:41:29.846 2025-03-19 11:41:29.846 443399 12774 443493 2195 2 10081 2025-03-19 12:33:37.398 2025-03-19 12:33:37.398 443399 12774 443592 19569 2 10082 2025-03-19 12:38:23.503 2025-03-19 12:38:23.503 443399 12774 443603 18116 3 10083 2025-03-19 10:50:46.024 2025-03-19 10:50:46.024 443400 763 443426 17690 1 10084 2025-03-19 15:10:24.501 2025-03-19 15:10:24.501 443401 17696 443891 9261 2 10085 2025-03-19 15:08:23.595 2025-03-19 15:08:23.595 443401 17696 443888 4177 1 10086 2025-03-19 14:06:18.425 2025-03-19 14:06:18.425 443759 20198 443771 21482 2 10087 2025-03-19 14:04:07.509 2025-03-19 14:04:07.509 443759 20198 443764 15196 1 10088 2025-03-19 10:42:04.877 2025-03-19 10:42:04.877 443412 6058 443417 14990 1 10089 2025-03-19 12:13:52.791 2025-03-19 12:13:52.791 443415 999 443549 18393 1 10090 2025-03-19 10:56:05.725 2025-03-19 10:56:05.725 443419 21506 443435 1983 1 10091 2025-03-19 10:56:40.314 2025-03-19 10:56:40.314 443432 618 443436 11776 1 10092 2025-03-19 12:12:48.369 2025-03-19 12:12:48.369 443454 9450 443547 623 2 10093 2025-03-19 12:09:17.621 2025-03-19 12:09:17.621 443454 9450 443540 20602 1 10094 2025-03-19 13:19:21.373 2025-03-19 13:19:21.373 443454 9450 443692 21541 4 10095 2025-03-19 11:28:41.663 2025-03-19 11:28:41.663 443454 9450 443474 16042 1 10096 2025-03-19 12:12:41.95 2025-03-19 12:12:41.95 443454 9450 443546 11996 2 10097 2025-03-19 13:09:36.966 2025-03-19 13:09:36.966 443454 9450 443674 1605 3 10098 2025-03-19 12:49:51.324 2025-03-19 12:49:51.324 443628 7675 443647 9329 1 10099 2025-03-19 11:02:14.707 2025-03-19 11:02:14.707 443438 3642 443444 21262 1 10100 2025-03-19 11:08:46.772 2025-03-19 11:08:46.772 443441 17713 443456 12102 1 10101 2025-03-19 11:32:49.224 2025-03-19 11:32:49.224 443441 17713 443480 19199 2 10102 2025-03-19 11:20:02.091 2025-03-19 11:20:02.091 443462 15732 443464 6202 1 10103 2025-03-19 11:21:05.309 2025-03-19 11:21:05.309 443462 15732 443465 15488 1 10104 2025-03-19 11:21:07.844 2025-03-19 11:21:07.844 443462 15732 443466 8004 1 10105 2025-03-19 12:32:40.942 2025-03-19 12:32:40.942 443462 15732 443591 8870 2 10106 2025-03-19 12:18:56.102 2025-03-19 12:18:56.102 443445 5728 443564 17953 1 10107 2025-03-19 13:11:28.068 2025-03-19 13:11:28.068 443484 12946 443677 20291 1 10108 2025-03-19 11:40:30.262 2025-03-19 11:40:30.262 443486 7580 443491 10698 1 10109 2025-03-19 11:42:02.821 2025-03-19 11:42:02.821 443486 7580 443496 16456 2 10110 2025-03-19 11:32:49.224 2025-03-19 11:32:49.224 443456 12102 443480 19199 1 10111 2025-03-19 11:36:25.664 2025-03-19 11:36:25.664 443457 10409 443485 21713 1 10112 2025-03-19 11:41:29.846 2025-03-19 11:41:29.846 443459 18231 443493 2195 1 10113 2025-03-19 12:32:40.942 2025-03-19 12:32:40.942 443465 15488 443591 8870 1 10114 2025-03-19 12:22:34.705 2025-03-19 12:22:34.705 443467 617 443575 13038 1 10115 2025-03-19 11:32:38.417 2025-03-19 11:32:38.417 443470 628 443479 19463 1 10116 2025-03-19 11:29:49.849 2025-03-19 11:29:49.849 443472 646 443475 13865 1 10117 2025-03-19 13:19:21.373 2025-03-19 13:19:21.373 443474 16042 443692 21541 3 10118 2025-03-19 12:12:41.95 2025-03-19 12:12:41.95 443474 16042 443546 11996 1 10119 2025-03-19 13:09:36.966 2025-03-19 13:09:36.966 443474 16042 443674 1605 2 10120 2025-03-19 11:35:35.761 2025-03-19 11:35:35.761 443478 10981 443484 12946 1 10121 2025-03-19 13:11:28.068 2025-03-19 13:11:28.068 443478 10981 443677 20291 2 10122 2025-03-19 12:18:39.531 2025-03-19 12:18:39.531 443557 21798 443562 15326 1 10123 2025-03-19 11:44:25.245 2025-03-19 11:44:25.245 443489 782 443501 21254 1 10124 2025-03-19 11:53:42.682 2025-03-19 11:53:42.682 443489 782 443518 2773 2 10125 2025-03-19 11:56:18.872 2025-03-19 11:56:18.872 443489 782 443521 16329 1 10126 2025-03-19 12:10:42.694 2025-03-19 12:10:42.694 443489 782 443542 3456 3 10127 2025-03-19 11:59:22.94 2025-03-19 11:59:22.94 443515 736 443525 13903 1 10128 2025-03-19 12:33:37.398 2025-03-19 12:33:37.398 443515 736 443592 19569 1 10129 2025-03-19 12:38:23.503 2025-03-19 12:38:23.503 443515 736 443603 18116 2 10130 2025-03-21 17:01:15.431 2025-03-21 17:01:15.431 447175 21218 447176 12749 1 10131 2025-03-19 11:50:03.601 2025-03-19 11:50:03.601 443490 20864 443512 15243 1 10132 2025-03-19 11:43:19.425 2025-03-19 11:43:19.425 443490 20864 443497 17714 1 10133 2025-03-19 12:21:21.806 2025-03-19 12:21:21.806 443490 20864 443572 1785 1 10134 2025-03-19 12:22:05.241 2025-03-19 12:22:05.241 443490 20864 443574 7418 2 10135 2025-03-19 12:39:41.741 2025-03-19 12:39:41.741 443490 20864 443608 16939 1 10136 2025-03-19 11:42:02.821 2025-03-19 11:42:02.821 443491 10698 443496 16456 1 10137 2025-03-19 11:53:42.682 2025-03-19 11:53:42.682 443501 21254 443518 2773 1 10138 2025-03-19 12:10:42.694 2025-03-19 12:10:42.694 443501 21254 443542 3456 2 10139 2025-03-19 11:52:00.513 2025-03-19 11:52:00.513 443503 20776 443516 20381 1 10140 2025-03-19 11:57:25.309 2025-03-19 11:57:25.309 443503 20776 443523 16684 2 10141 2025-03-19 12:45:44.463 2025-03-19 12:45:44.463 443601 16309 443623 11454 1 10142 2025-03-19 14:02:50.362 2025-03-19 14:02:50.362 443691 12277 443762 12368 2 10143 2025-03-19 13:54:27.282 2025-03-19 13:54:27.282 443691 12277 443746 9333 1 10144 2025-03-19 12:04:34.829 2025-03-19 12:04:34.829 443504 848 443533 21033 1 10145 2025-03-19 11:49:41.284 2025-03-19 11:49:41.284 443506 12490 443511 10519 1 10146 2025-03-19 11:50:28.927 2025-03-19 11:50:28.927 443506 12490 443513 1428 1 10147 2025-03-19 11:56:09.531 2025-03-19 11:56:09.531 443506 12490 443520 1105 1 10148 2025-03-19 11:57:25.309 2025-03-19 11:57:25.309 443516 20381 443523 16684 1 10149 2025-03-19 12:10:42.694 2025-03-19 12:10:42.694 443518 2773 443542 3456 1 10150 2025-03-19 12:14:50.616 2025-03-19 12:14:50.616 443526 695 443551 19484 1 10151 2025-03-19 12:22:05.241 2025-03-19 12:22:05.241 443572 1785 443574 7418 1 10152 2025-03-19 12:15:34.126 2025-03-19 12:15:34.126 443531 20706 443555 13798 2 10153 2025-03-19 12:08:42.972 2025-03-19 12:08:42.972 443531 20706 443538 713 1 10154 2025-03-19 12:11:42.877 2025-03-19 12:11:42.877 443531 20706 443544 18529 2 10155 2025-03-19 12:17:11.153 2025-03-19 12:17:11.153 443531 20706 443558 1740 3 10156 2025-03-19 12:58:14.295 2025-03-19 12:58:14.295 443581 16830 443661 15336 2 10157 2025-03-19 12:31:08.522 2025-03-19 12:31:08.522 443581 16830 443587 17519 1 10158 2025-03-19 12:11:42.877 2025-03-19 12:11:42.877 443538 713 443544 18529 1 10159 2025-03-19 12:17:11.153 2025-03-19 12:17:11.153 443538 713 443558 1740 2 10160 2025-03-19 12:15:34.126 2025-03-19 12:15:34.126 443538 713 443555 13798 1 10161 2025-03-19 12:12:48.369 2025-03-19 12:12:48.369 443540 20602 443547 623 1 10162 2025-03-19 12:49:51.324 2025-03-19 12:49:51.324 443543 3371 443647 9329 4 10163 2025-03-19 12:46:37.921 2025-03-19 12:46:37.921 443543 3371 443628 7675 3 10164 2025-03-19 12:38:34.911 2025-03-19 12:38:34.911 443543 3371 443604 1433 1 10165 2025-03-19 12:43:35.823 2025-03-19 12:43:35.823 443543 3371 443618 10549 2 10166 2025-03-19 12:17:11.153 2025-03-19 12:17:11.153 443544 18529 443558 1740 1 10167 2025-03-19 13:19:21.373 2025-03-19 13:19:21.373 443546 11996 443692 21541 2 10168 2025-03-19 13:09:36.966 2025-03-19 13:09:36.966 443546 11996 443674 1605 1 10169 2025-03-19 12:48:02.548 2025-03-19 12:48:02.548 443629 20117 443639 861 1 10170 2025-03-19 12:20:36.224 2025-03-19 12:20:36.224 443552 7847 443570 3686 1 10171 2025-03-19 12:20:32.455 2025-03-19 12:20:32.455 443560 11648 443568 15119 1 10172 2025-03-19 13:35:50.138 2025-03-19 13:35:50.138 443709 1602 443718 11999 1 10173 2025-03-19 12:32:35.402 2025-03-19 12:32:35.402 443584 20588 443590 4395 1 10174 2025-03-19 12:34:29.481 2025-03-19 12:34:29.481 443586 21577 443594 2519 1 10175 2025-03-19 12:58:14.295 2025-03-19 12:58:14.295 443587 17519 443661 15336 1 10176 2025-03-19 12:36:56.007 2025-03-19 12:36:56.007 443589 4287 443600 13798 1 10177 2025-03-19 12:38:23.503 2025-03-19 12:38:23.503 443592 19569 443603 18116 1 10178 2025-03-19 12:41:33.581 2025-03-19 12:41:33.581 443596 5175 443612 16571 1 10179 2025-03-19 13:19:12.055 2025-03-19 13:19:12.055 443597 964 443690 9494 1 10180 2025-03-19 13:23:19.166 2025-03-19 13:23:19.166 443597 964 443700 6149 2 10181 2025-03-19 12:42:13.704 2025-03-19 12:42:13.704 443599 630 443615 18114 1 10182 2025-03-19 13:37:53.055 2025-03-19 13:37:53.055 443716 12921 443720 12049 1 10183 2025-03-19 13:38:41.33 2025-03-19 13:38:41.33 443716 12921 443724 13759 2 10184 2025-03-21 16:38:19.959 2025-03-21 16:38:19.959 447087 2335 447152 21494 1 10185 2025-03-19 12:49:51.324 2025-03-19 12:49:51.324 443604 1433 443647 9329 3 10186 2025-03-19 12:46:37.921 2025-03-19 12:46:37.921 443604 1433 443628 7675 2 10187 2025-03-19 12:43:35.823 2025-03-19 12:43:35.823 443604 1433 443618 10549 1 10188 2025-03-19 12:46:46.042 2025-03-19 12:46:46.042 443610 2724 443630 15588 1 10189 2025-03-19 12:55:52.184 2025-03-19 12:55:52.184 443611 21114 443660 13878 1 10190 2025-03-20 00:22:09.582 2025-03-20 00:22:09.582 443614 628 444507 9341 4 10191 2025-03-19 14:14:17.274 2025-03-19 14:14:17.274 443614 628 443787 17011 2 10192 2025-03-19 16:44:39.385 2025-03-19 16:44:39.385 443614 628 444071 5794 3 10193 2025-03-19 17:31:11.437 2025-03-19 17:31:11.437 443614 628 444144 18306 4 10194 2025-03-20 03:02:51.322 2025-03-20 03:02:51.322 443614 628 444571 11288 5 10195 2025-03-19 14:07:35.394 2025-03-19 14:07:35.394 443614 628 443774 21401 1 10196 2025-03-19 12:46:29.893 2025-03-19 12:46:29.893 443617 20586 443627 19796 2 10197 2025-03-19 12:45:48.47 2025-03-19 12:45:48.47 443617 20586 443625 21184 1 10198 2025-03-19 13:58:24.988 2025-03-19 13:58:24.988 443617 20586 443754 20623 1 10199 2025-03-19 12:49:51.324 2025-03-19 12:49:51.324 443618 10549 443647 9329 2 10200 2025-03-19 12:46:37.921 2025-03-19 12:46:37.921 443618 10549 443628 7675 1 10201 2025-03-19 12:47:22.309 2025-03-19 12:47:22.309 443622 998 443635 2232 1 10202 2025-03-19 12:53:55.169 2025-03-19 12:53:55.169 443637 976 443653 6030 1 10203 2025-03-19 13:10:46.502 2025-03-19 13:10:46.502 443659 7425 443675 4768 1 10204 2025-03-19 13:59:51.015 2025-03-19 13:59:51.015 443659 7425 443758 11561 2 10205 2025-03-21 18:09:21.693 2025-03-21 18:09:21.693 447094 5557 447245 20495 3 10206 2025-03-21 16:17:36.361 2025-03-21 16:17:36.361 447094 5557 447107 8729 1 10207 2025-03-21 17:32:25.224 2025-03-21 17:32:25.224 447094 5557 447208 7587 2 10208 2025-03-21 16:36:23.309 2025-03-21 16:36:23.309 446464 19199 447149 18557 5 10209 2025-03-21 16:35:14.779 2025-03-21 16:35:14.779 446464 19199 447146 769 4 10210 2025-03-21 08:57:19.05 2025-03-21 08:57:19.05 446464 19199 446465 16571 1 10211 2025-03-21 12:44:38.485 2025-03-21 12:44:38.485 446464 19199 446728 18306 2 10212 2025-03-21 15:23:01.201 2025-03-21 15:23:01.201 446464 19199 447036 9354 3 10213 2025-03-21 15:39:26.294 2025-03-21 15:39:26.294 446464 19199 447065 8459 2 10214 2025-03-21 16:33:28.581 2025-03-21 16:33:28.581 446464 19199 447142 4314 3 10215 2025-03-19 12:54:22.863 2025-03-19 12:54:22.863 443643 11523 443654 4314 1 10216 2025-03-19 14:06:45.206 2025-03-19 14:06:45.206 443651 722 443772 919 5 10217 2025-03-19 14:18:38.409 2025-03-19 14:18:38.409 443651 722 443796 8289 6 10218 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443651 722 443845 21522 11 10219 2025-03-19 13:29:43.662 2025-03-19 13:29:43.662 443651 722 443711 2640 1 10220 2025-03-19 14:34:10.46 2025-03-19 14:34:10.46 443651 722 443831 670 9 10221 2025-03-19 14:27:58.927 2025-03-19 14:27:58.927 443651 722 443811 16230 7 10222 2025-03-19 14:36:28.243 2025-03-19 14:36:28.243 443651 722 443835 21012 10 10223 2025-03-19 14:30:39.44 2025-03-19 14:30:39.44 443651 722 443819 14357 8 10224 2025-03-19 13:08:12.69 2025-03-19 13:08:12.69 443651 722 443671 20778 1 10225 2025-03-19 13:59:40.572 2025-03-19 13:59:40.572 443651 722 443757 1814 4 10226 2025-03-19 13:45:14.733 2025-03-19 13:45:14.733 443651 722 443731 1319 3 10227 2025-03-19 13:32:15.265 2025-03-19 13:32:15.265 443651 722 443715 632 2 10228 2025-03-19 14:06:45.206 2025-03-19 14:06:45.206 443711 2640 443772 919 4 10229 2025-03-19 14:18:38.409 2025-03-19 14:18:38.409 443711 2640 443796 8289 5 10230 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443711 2640 443845 21522 10 10231 2025-03-19 14:34:10.46 2025-03-19 14:34:10.46 443711 2640 443831 670 8 10232 2025-03-19 14:27:58.927 2025-03-19 14:27:58.927 443711 2640 443811 16230 6 10233 2025-03-19 14:36:28.243 2025-03-19 14:36:28.243 443711 2640 443835 21012 9 10234 2025-03-19 14:30:39.44 2025-03-19 14:30:39.44 443711 2640 443819 14357 7 10235 2025-03-19 13:59:40.572 2025-03-19 13:59:40.572 443711 2640 443757 1814 3 10236 2025-03-19 13:45:14.733 2025-03-19 13:45:14.733 443711 2640 443731 1319 2 10237 2025-03-19 13:32:15.265 2025-03-19 13:32:15.265 443711 2640 443715 632 1 10238 2025-03-19 13:08:54.618 2025-03-19 13:08:54.618 443663 782 443672 18528 1 10239 2025-03-19 13:14:07.059 2025-03-19 13:14:07.059 443669 20841 443681 21427 3 10240 2025-03-19 13:11:22.167 2025-03-19 13:11:22.167 443669 20841 443676 17708 1 10241 2025-03-19 13:13:43.575 2025-03-19 13:13:43.575 443669 20841 443680 2010 2 10242 2025-03-19 13:17:00.816 2025-03-19 13:17:00.816 443669 20841 443686 19087 4 10243 2025-03-19 13:14:09.906 2025-03-19 13:14:09.906 443670 679 443682 8037 2 10244 2025-03-19 13:12:49.819 2025-03-19 13:12:49.819 443670 679 443679 14220 1 10245 2025-03-19 13:19:21.373 2025-03-19 13:19:21.373 443674 1605 443692 21541 1 10246 2025-03-19 13:59:51.015 2025-03-19 13:59:51.015 443675 4768 443758 11561 1 10247 2025-03-19 13:14:07.059 2025-03-19 13:14:07.059 443676 17708 443681 21427 2 10248 2025-03-19 13:13:43.575 2025-03-19 13:13:43.575 443676 17708 443680 2010 1 10249 2025-03-19 13:17:00.816 2025-03-19 13:17:00.816 443676 17708 443686 19087 3 10250 2025-03-19 13:20:09.452 2025-03-19 13:20:09.452 443678 19689 443695 10638 1 10251 2025-03-19 13:14:09.906 2025-03-19 13:14:09.906 443679 14220 443682 8037 1 10252 2025-03-19 13:14:07.059 2025-03-19 13:14:07.059 443680 2010 443681 21427 1 10253 2025-03-19 13:17:00.816 2025-03-19 13:17:00.816 443680 2010 443686 19087 2 10254 2025-03-19 13:17:00.816 2025-03-19 13:17:00.816 443681 21427 443686 19087 1 10255 2025-03-19 13:24:59.21 2025-03-19 13:24:59.21 443683 9529 443705 6393 1 10256 2025-03-19 13:48:45.655 2025-03-19 13:48:45.655 443683 9529 443739 1326 1 10257 2025-03-19 13:35:50.138 2025-03-19 13:35:50.138 443689 7869 443718 11999 2 10258 2025-03-19 13:26:50.79 2025-03-19 13:26:50.79 443689 7869 443709 1602 1 10259 2025-03-19 13:23:19.166 2025-03-19 13:23:19.166 443690 9494 443700 6149 1 10260 2025-03-21 17:48:44.078 2025-03-21 17:48:44.078 447216 16948 447226 4083 1 10261 2025-03-21 17:50:16.637 2025-03-21 17:50:16.637 447216 16948 447230 21022 2 10262 2025-03-19 13:38:41.33 2025-03-19 13:38:41.33 443720 12049 443724 13759 1 10263 2025-03-19 14:06:18.425 2025-03-19 14:06:18.425 443750 19888 443771 21482 3 10264 2025-03-19 14:04:07.509 2025-03-19 14:04:07.509 443750 19888 443764 15196 2 10265 2025-03-19 14:00:46.126 2025-03-19 14:00:46.126 443750 19888 443759 20198 1 10266 2025-03-20 09:21:09.153 2025-03-20 09:21:09.153 444755 10273 444842 10638 1 10267 2025-03-20 10:14:13.127 2025-03-20 10:14:13.127 444755 10273 444916 13361 1 10268 2025-03-21 01:29:54.669 2025-03-21 01:29:54.669 444755 10273 446210 20500 2 10269 2025-03-20 10:00:34.367 2025-03-20 10:00:34.367 444755 10273 444895 16998 1 10270 2025-03-20 08:59:35.702 2025-03-20 08:59:35.702 444755 10273 444806 1039 1 10271 2025-03-20 09:41:59.866 2025-03-20 09:41:59.866 444755 10273 444866 15526 1 10272 2025-03-20 08:41:48.076 2025-03-20 08:41:48.076 444755 10273 444764 21825 1 10273 2025-03-20 14:00:57.392 2025-03-20 14:00:57.392 444755 10273 445222 19735 1 10274 2025-03-20 16:33:35.763 2025-03-20 16:33:35.763 444755 10273 445589 1008 1 10275 2025-03-21 00:45:21.601 2025-03-21 00:45:21.601 444755 10273 446169 1720 2 10276 2025-03-21 07:58:12.903 2025-03-21 07:58:12.903 444755 10273 446434 825 2 10277 2025-03-21 00:45:21.601 2025-03-21 00:45:21.601 444916 13361 446169 1720 1 10278 2025-03-21 01:29:54.669 2025-03-21 01:29:54.669 445222 19735 446210 20500 1 10279 2025-03-21 12:41:36.544 2025-03-21 12:41:36.544 446301 21485 446724 21599 1 10280 2025-03-21 08:02:22.271 2025-03-21 08:02:22.271 446406 20956 446440 7760 2 10281 2025-03-21 07:28:22.252 2025-03-21 07:28:22.252 446406 20956 446416 12921 1 10282 2025-03-21 16:37:07.068 2025-03-21 16:37:07.068 447134 4768 447151 18615 1 10283 2025-03-21 16:50:05.813 2025-03-21 16:50:05.813 447134 4768 447167 20904 3 10284 2025-03-21 16:39:51.47 2025-03-21 16:39:51.47 447134 4768 447155 12721 2 10285 2025-03-21 16:18:43.262 2025-03-21 16:18:43.262 446452 8648 447111 2508 3 10286 2025-03-21 16:24:14.619 2025-03-21 16:24:14.619 446452 8648 447125 21424 4 10287 2025-03-21 16:35:48.327 2025-03-21 16:35:48.327 446452 8648 447147 19446 6 10288 2025-03-21 16:39:04.299 2025-03-21 16:39:04.299 446452 8648 447153 12072 7 10289 2025-03-21 15:38:11.386 2025-03-21 15:38:11.386 446452 8648 447063 19655 1 10290 2025-03-21 08:57:19.05 2025-03-21 08:57:19.05 446452 8648 446465 16571 2 10291 2025-03-21 12:44:38.485 2025-03-21 12:44:38.485 446452 8648 446728 18306 3 10292 2025-03-21 15:23:01.201 2025-03-21 15:23:01.201 446452 8648 447036 9354 4 10293 2025-03-21 15:39:26.294 2025-03-21 15:39:26.294 446452 8648 447065 8459 3 10294 2025-03-21 16:33:28.581 2025-03-21 16:33:28.581 446452 8648 447142 4314 4 10295 2025-03-21 16:30:28.048 2025-03-21 16:30:28.048 446452 8648 447138 21041 5 10296 2025-03-21 17:55:25.155 2025-03-21 17:55:25.155 446452 8648 447236 10493 4 10297 2025-03-21 15:54:44.959 2025-03-21 15:54:44.959 446452 8648 447086 13055 2 10298 2025-03-21 08:53:10.966 2025-03-21 08:53:10.966 446452 8648 446464 19199 1 10299 2025-03-21 16:36:23.309 2025-03-21 16:36:23.309 446452 8648 447149 18557 6 10300 2025-03-21 16:35:14.779 2025-03-21 16:35:14.779 446452 8648 447146 769 5 10301 2025-03-21 16:36:23.309 2025-03-21 16:36:23.309 446465 16571 447149 18557 4 10302 2025-03-21 16:35:14.779 2025-03-21 16:35:14.779 446465 16571 447146 769 3 10303 2025-03-21 12:44:38.485 2025-03-21 12:44:38.485 446465 16571 446728 18306 1 10304 2025-03-21 15:23:01.201 2025-03-21 15:23:01.201 446465 16571 447036 9354 2 10305 2025-03-21 15:39:26.294 2025-03-21 15:39:26.294 446465 16571 447065 8459 1 10306 2025-03-21 16:33:28.581 2025-03-21 16:33:28.581 446465 16571 447142 4314 2 10307 2025-03-21 11:27:19.268 2025-03-21 11:27:19.268 446486 20881 446609 21014 1 10308 2025-03-21 17:39:21.633 2025-03-21 17:39:21.633 446486 20881 447215 1741 1 10309 2025-03-21 17:12:33.912 2025-03-21 17:12:33.912 447081 9159 447187 20525 1 10310 2025-03-21 16:32:39.202 2025-03-21 16:32:39.202 446719 722 447140 21688 2 10311 2025-03-21 13:54:02.275 2025-03-21 13:54:02.275 446719 722 446838 1047 1 10312 2025-03-21 14:21:03.064 2025-03-21 14:21:03.064 446547 6058 446900 17838 1 10313 2025-03-21 14:21:27.528 2025-03-21 14:21:27.528 446547 6058 446901 20577 1 10314 2025-03-21 17:06:07.732 2025-03-21 17:06:07.732 446628 17148 447181 2583 1 10315 2025-03-21 12:18:33.867 2025-03-21 12:18:33.867 446662 11498 446683 2013 1 10316 2025-03-21 16:49:21.61 2025-03-21 16:49:21.61 446662 11498 447165 19996 1 10317 2025-03-21 14:22:59.567 2025-03-21 14:22:59.567 446662 11498 446907 14489 1 10318 2025-03-21 15:23:01.201 2025-03-21 15:23:01.201 446728 18306 447036 9354 1 10319 2025-03-21 14:22:01.075 2025-03-21 14:22:01.075 446774 712 446904 623 1 10320 2025-03-21 17:49:15.31 2025-03-21 17:49:15.31 446774 712 447228 18526 2 10321 2025-03-21 17:55:52.075 2025-03-21 17:55:52.075 446774 712 447238 656 3 10322 2025-03-21 18:13:39.949 2025-03-21 18:13:39.949 446774 712 447249 20555 2 10323 2025-03-21 14:51:43.168 2025-03-21 14:51:43.168 446774 712 446963 9353 1 10324 2025-03-21 14:42:10.001 2025-03-21 14:42:10.001 446774 712 446941 8045 1 10325 2025-03-21 18:33:20.82 2025-03-21 18:33:20.82 446774 712 447273 17162 2 10326 2025-03-21 18:30:36.707 2025-03-21 18:30:36.707 446814 6164 447268 19829 1 10327 2025-03-21 17:51:01.31 2025-03-21 17:51:01.31 446880 3642 447232 20523 1 10328 2025-03-21 18:39:04.832 2025-03-21 18:39:04.832 446880 3642 447279 17696 3 10329 2025-03-21 15:31:31.465 2025-03-21 15:31:31.465 446880 3642 447053 17316 1 10330 2025-03-21 18:36:56.665 2025-03-21 18:36:56.665 446880 3642 447277 2098 2 10331 2025-03-21 14:54:39.173 2025-03-21 14:54:39.173 446937 19576 446971 20495 1 10332 2025-03-21 16:21:25.724 2025-03-21 16:21:25.724 446937 19576 447119 8400 1 10333 2025-03-21 17:15:08.178 2025-03-21 17:15:08.178 446937 19576 447191 21184 1 10334 2025-03-21 18:14:12.909 2025-03-21 18:14:12.909 446937 19576 447250 12656 2 10335 2025-03-21 18:34:37.073 2025-03-21 18:34:37.073 446937 19576 447275 15200 2 10336 2025-03-21 18:50:41.201 2025-03-21 18:50:41.201 446937 19576 447297 20864 3 10337 2025-03-21 17:42:11.421 2025-03-21 17:42:11.421 446937 19576 447218 1970 1 10338 2025-03-21 18:22:16.173 2025-03-21 18:22:16.173 446937 19576 447261 17411 3 10339 2025-03-21 18:31:40.19 2025-03-21 18:31:40.19 446937 19576 447271 5757 1 10340 2025-03-21 18:33:35.591 2025-03-21 18:33:35.591 446937 19576 447274 20019 1 10341 2025-03-21 17:13:06.106 2025-03-21 17:13:06.106 446937 19576 447189 13327 2 10342 2025-03-21 19:08:18.294 2025-03-21 19:08:18.294 446937 19576 447310 876 2 10343 2025-03-21 15:48:17.74 2025-03-21 15:48:17.74 446937 19576 447081 9159 1 10344 2025-03-21 17:12:33.912 2025-03-21 17:12:33.912 446937 19576 447187 20525 2 10345 2025-03-21 16:12:00.58 2025-03-21 16:12:00.58 446942 21320 447100 8289 1 10346 2025-03-21 16:40:06.513 2025-03-21 16:40:06.513 446942 21320 447156 21709 1 10347 2025-03-21 17:50:50.12 2025-03-21 17:50:50.12 446942 21320 447231 17708 1 10348 2025-03-21 18:15:14.008 2025-03-21 18:15:14.008 446942 21320 447254 15662 2 10349 2025-03-21 18:30:39.935 2025-03-21 18:30:39.935 446942 21320 447269 9906 1 10350 2025-03-21 18:50:32.051 2025-03-21 18:50:32.051 446942 21320 447296 6653 2 10351 2025-03-22 22:30:10.96 2025-03-22 22:30:10.96 446942 21320 448821 21402 1 10352 2025-03-21 16:09:15.999 2025-03-21 16:09:15.999 446942 21320 447096 685 1 10353 2025-03-21 18:49:35.941 2025-03-21 18:49:35.941 446942 21320 447295 4474 2 10354 2025-03-21 16:20:44.99 2025-03-21 16:20:44.99 446942 21320 447116 2330 1 10355 2025-03-21 18:45:25.885 2025-03-21 18:45:25.885 446945 20715 447284 17046 2 10356 2025-03-21 18:49:32.375 2025-03-21 18:49:32.375 446945 20715 447294 664 3 10357 2025-03-21 15:53:22.921 2025-03-21 15:53:22.921 446945 20715 447085 21104 1 10358 2025-03-22 11:53:56.786 2025-03-22 11:53:56.786 446954 976 448085 21383 2 10359 2025-03-21 20:45:19.575 2025-03-21 20:45:19.575 446954 976 447451 12819 1 10360 2025-03-21 16:25:46.537 2025-03-21 16:25:46.537 446954 976 447132 2513 1 10361 2025-03-21 14:59:13.855 2025-03-21 14:59:13.855 446954 976 446983 16145 1 10362 2025-03-21 18:37:53.894 2025-03-21 18:37:53.894 446954 976 447278 661 2 10363 2025-03-21 16:07:07.261 2025-03-21 16:07:07.261 446954 976 447095 1209 1 10364 2025-03-21 16:20:40.931 2025-03-21 16:20:40.931 446954 976 447115 20502 2 10365 2025-03-21 17:54:15.687 2025-03-21 17:54:15.687 446954 976 447235 21600 1 10366 2025-03-21 18:52:24.596 2025-03-21 18:52:24.596 446954 976 447299 1490 3 10367 2025-03-21 16:36:23.309 2025-03-21 16:36:23.309 447065 8459 447149 18557 3 10368 2025-03-21 16:35:14.779 2025-03-21 16:35:14.779 447065 8459 447146 769 2 10369 2025-03-21 16:33:28.581 2025-03-21 16:33:28.581 447065 8459 447142 4314 1 10370 2025-03-21 18:08:56.618 2025-03-21 18:08:56.618 447079 14791 447244 1122 1 10371 2025-03-21 16:51:58.908 2025-03-21 16:51:58.908 446962 9346 447168 10283 2 10372 2025-03-21 17:06:09.731 2025-03-21 17:06:09.731 446962 9346 447182 10112 1 10373 2025-03-21 15:17:34.973 2025-03-21 15:17:34.973 446962 9346 447029 732 1 10374 2025-03-21 18:33:20.82 2025-03-21 18:33:20.82 446963 9353 447273 17162 1 10375 2025-03-21 17:37:22.403 2025-03-21 17:37:22.403 446964 5775 447212 11716 1 10376 2025-03-21 17:41:47.719 2025-03-21 17:41:47.719 446964 5775 447217 5646 2 10377 2025-03-21 17:48:14.747 2025-03-21 17:48:14.747 446964 5775 447224 14385 3 10378 2025-03-22 15:56:19.994 2025-03-22 15:56:19.994 447164 18321 448455 10934 3 10379 2025-03-21 17:17:34.348 2025-03-21 17:17:34.348 447164 18321 447194 1465 1 10380 2025-03-21 18:47:12.466 2025-03-21 18:47:12.466 447164 18321 447289 20924 1 10381 2025-03-21 16:52:44.64 2025-03-21 16:52:44.64 447164 18321 447169 12721 1 10382 2025-03-21 20:36:02.049 2025-03-21 20:36:02.049 447164 18321 447432 3360 2 10383 2025-03-21 16:07:06.025 2025-03-21 16:07:06.025 446965 7966 447094 5557 1 10384 2025-03-21 18:09:21.693 2025-03-21 18:09:21.693 446965 7966 447245 20495 4 10385 2025-03-21 17:55:35.264 2025-03-21 17:55:35.264 446965 7966 447237 1135 1 10386 2025-03-21 16:17:36.361 2025-03-21 16:17:36.361 446965 7966 447107 8729 2 10387 2025-03-21 17:32:25.224 2025-03-21 17:32:25.224 446965 7966 447208 7587 3 10388 2025-03-21 17:44:46.042 2025-03-21 17:44:46.042 446965 7966 447222 4083 1 10389 2025-03-21 18:31:29.083 2025-03-21 18:31:29.083 446965 7966 447270 21522 2 10390 2025-03-21 17:13:06.106 2025-03-21 17:13:06.106 446971 20495 447189 13327 1 10391 2025-03-21 19:08:18.294 2025-03-21 19:08:18.294 446971 20495 447310 876 1 10392 2025-03-21 16:18:21.341 2025-03-21 16:18:21.341 447034 669 447109 20612 1 10393 2025-03-21 17:11:46.858 2025-03-21 17:11:46.858 447049 2022 447185 21116 2 10394 2025-03-21 17:12:16.149 2025-03-21 17:12:16.149 447049 2022 447186 16747 2 10395 2025-03-22 15:58:59.701 2025-03-22 15:58:59.701 447049 2022 448458 16149 10 10396 2025-03-21 15:35:30.454 2025-03-21 15:35:30.454 447049 2022 447058 21262 1 10397 2025-03-21 15:52:04.957 2025-03-21 15:52:04.957 447049 2022 447084 1012 1 10398 2025-03-22 02:41:22.8 2025-03-22 02:41:22.8 447049 2022 447685 8168 4 10399 2025-03-22 01:58:52.372 2025-03-22 01:58:52.372 447049 2022 447661 777 3 10400 2025-03-22 15:55:58.017 2025-03-22 15:55:58.017 447049 2022 448454 20754 9 10401 2025-03-22 06:18:48.437 2025-03-22 06:18:48.437 447049 2022 447782 9347 8 10402 2025-03-22 05:59:28.635 2025-03-22 05:59:28.635 447049 2022 447772 17116 7 10403 2025-03-22 05:50:55.745 2025-03-22 05:50:55.745 447049 2022 447765 2670 6 10404 2025-03-22 05:35:38.746 2025-03-22 05:35:38.746 447049 2022 447757 9367 5 10405 2025-03-21 17:53:42.575 2025-03-21 17:53:42.575 447106 15119 447233 14688 1 10406 2025-03-21 17:32:25.224 2025-03-21 17:32:25.224 447107 8729 447208 7587 1 10407 2025-03-21 18:09:21.693 2025-03-21 18:09:21.693 447107 8729 447245 20495 2 10408 2025-03-21 16:35:48.327 2025-03-21 16:35:48.327 447138 21041 447147 19446 1 10409 2025-03-21 16:39:04.299 2025-03-21 16:39:04.299 447138 21041 447153 12072 2 10410 2025-03-21 16:39:46.803 2025-03-21 16:39:46.803 447139 17708 447154 20829 1 10411 2025-03-21 16:24:14.619 2025-03-21 16:24:14.619 447111 2508 447125 21424 1 10412 2025-03-21 16:35:48.327 2025-03-21 16:35:48.327 447111 2508 447147 19446 3 10413 2025-03-21 16:39:04.299 2025-03-21 16:39:04.299 447111 2508 447153 12072 4 10414 2025-03-21 16:30:28.048 2025-03-21 16:30:28.048 447111 2508 447138 21041 2 10415 2025-03-21 17:55:25.155 2025-03-21 17:55:25.155 447111 2508 447236 10493 1 10416 2025-03-21 18:34:37.073 2025-03-21 18:34:37.073 447119 8400 447275 15200 1 10417 2025-03-21 18:50:41.201 2025-03-21 18:50:41.201 447119 8400 447297 20864 2 10418 2025-03-21 18:15:14.008 2025-03-21 18:15:14.008 447156 21709 447254 15662 1 10419 2025-03-21 17:54:00.367 2025-03-21 17:54:00.367 447121 6463 447234 17365 1 10420 2025-03-21 16:31:32.003 2025-03-21 16:31:32.003 447121 6463 447139 17708 1 10421 2025-03-21 16:39:46.803 2025-03-21 16:39:46.803 447121 6463 447154 20829 2 10422 2025-03-21 16:29:54.642 2025-03-21 16:29:54.642 447123 616 447136 14503 1 10423 2025-03-21 16:43:58.131 2025-03-21 16:43:58.131 447123 616 447159 13249 2 10424 2025-03-21 16:35:48.327 2025-03-21 16:35:48.327 447125 21424 447147 19446 2 10425 2025-03-21 16:39:04.299 2025-03-21 16:39:04.299 447125 21424 447153 12072 3 10426 2025-03-21 16:30:28.048 2025-03-21 16:30:28.048 447125 21424 447138 21041 1 10427 2025-03-21 16:37:07.068 2025-03-21 16:37:07.068 447133 3347 447151 18615 2 10428 2025-03-21 16:28:25.832 2025-03-21 16:28:25.832 447133 3347 447134 4768 1 10429 2025-03-21 16:50:05.813 2025-03-21 16:50:05.813 447133 3347 447167 20904 4 10430 2025-03-21 16:39:51.47 2025-03-21 16:39:51.47 447133 3347 447155 12721 3 10431 2025-03-21 16:43:58.131 2025-03-21 16:43:58.131 447136 14503 447159 13249 1 10432 2025-03-21 16:36:23.309 2025-03-21 16:36:23.309 447142 4314 447149 18557 2 10433 2025-03-21 16:35:14.779 2025-03-21 16:35:14.779 447142 4314 447146 769 1 10434 2025-03-21 16:39:04.299 2025-03-21 16:39:04.299 447147 19446 447153 12072 1 10435 2025-03-21 17:48:44.078 2025-03-21 17:48:44.078 447148 21021 447226 4083 3 10436 2025-03-21 17:50:16.637 2025-03-21 17:50:16.637 447148 21021 447230 21022 4 10437 2025-03-21 18:27:36.931 2025-03-21 18:27:36.931 447148 21021 447263 10112 1 10438 2025-03-21 18:45:57.574 2025-03-21 18:45:57.574 447148 21021 447286 21374 4 10439 2025-03-21 18:48:12.504 2025-03-21 18:48:12.504 447148 21021 447291 13042 5 10440 2025-03-21 17:38:09.506 2025-03-21 17:38:09.506 447148 21021 447213 16571 1 10441 2025-03-21 17:41:08.778 2025-03-21 17:41:08.778 447148 21021 447216 16948 2 10442 2025-03-21 17:58:33.331 2025-03-21 17:58:33.331 447148 21021 447239 2537 1 10443 2025-03-21 18:00:45.375 2025-03-21 18:00:45.375 447148 21021 447242 17592 2 10444 2025-03-21 18:43:49.87 2025-03-21 18:43:49.87 447148 21021 447282 1769 3 10445 2025-03-21 18:59:33.099 2025-03-21 18:59:33.099 447148 21021 447305 2111 6 10446 2025-03-21 16:50:05.813 2025-03-21 16:50:05.813 447151 18615 447167 20904 2 10447 2025-03-21 16:39:51.47 2025-03-21 16:39:51.47 447151 18615 447155 12721 1 10448 2025-03-21 17:15:43.035 2025-03-21 17:15:43.035 447184 16301 447192 11328 1 10449 2025-03-21 17:28:05.804 2025-03-21 17:28:05.804 447184 16301 447207 636 4 10450 2025-03-21 17:24:42.131 2025-03-21 17:24:42.131 447184 16301 447202 726 3 10451 2025-03-21 17:25:06.52 2025-03-21 17:25:06.52 447184 16301 447204 12959 3 10452 2025-03-21 17:19:46.871 2025-03-21 17:19:46.871 447184 16301 447196 21833 2 10453 2025-03-21 17:27:32.438 2025-03-21 17:27:32.438 447184 16301 447206 17001 4 10454 2025-03-21 17:32:39.257 2025-03-21 17:32:39.257 447184 16301 447209 3377 5 10455 2025-03-21 17:38:51.613 2025-03-21 17:38:51.613 447184 16301 447214 4027 6 10456 2025-03-21 18:21:05.699 2025-03-21 18:21:05.699 447160 919 447260 20562 1 10457 2025-03-21 18:35:43.605 2025-03-21 18:35:43.605 447161 19394 447276 9353 1 10458 2025-03-21 18:45:25.169 2025-03-21 18:45:25.169 447161 19394 447283 19459 2 10459 2025-03-21 16:47:40.348 2025-03-21 16:47:40.348 447162 2749 447163 18409 1 10460 2025-03-21 17:22:55.371 2025-03-21 17:22:55.371 447179 1064 447199 2328 1 10461 2025-03-21 17:43:02.14 2025-03-21 17:43:02.14 447179 1064 447219 21051 2 10462 2025-03-21 20:42:06.775 2025-03-21 20:42:06.775 447179 1064 447442 4459 1 10463 2025-03-22 18:25:49.199 2025-03-22 18:25:49.199 447179 1064 448612 15536 2 10464 2025-03-22 15:55:58.017 2025-03-22 15:55:58.017 447186 16747 448454 20754 7 10465 2025-03-22 06:18:48.437 2025-03-22 06:18:48.437 447186 16747 447782 9347 6 10466 2025-03-22 05:59:28.635 2025-03-22 05:59:28.635 447186 16747 447772 17116 5 10467 2025-03-22 05:50:55.745 2025-03-22 05:50:55.745 447186 16747 447765 2670 4 10468 2025-03-22 05:35:38.746 2025-03-22 05:35:38.746 447186 16747 447757 9367 3 10469 2025-03-22 15:58:59.701 2025-03-22 15:58:59.701 447186 16747 448458 16149 8 10470 2025-03-22 02:41:22.8 2025-03-22 02:41:22.8 447186 16747 447685 8168 2 10471 2025-03-22 01:58:52.372 2025-03-22 01:58:52.372 447186 16747 447661 777 1 10472 2025-03-21 17:28:05.804 2025-03-21 17:28:05.804 447192 11328 447207 636 3 10473 2025-03-21 17:24:42.131 2025-03-21 17:24:42.131 447192 11328 447202 726 2 10474 2025-03-21 17:25:06.52 2025-03-21 17:25:06.52 447192 11328 447204 12959 2 10475 2025-03-21 17:19:46.871 2025-03-21 17:19:46.871 447192 11328 447196 21833 1 10476 2025-03-21 17:27:32.438 2025-03-21 17:27:32.438 447192 11328 447206 17001 3 10477 2025-03-21 17:32:39.257 2025-03-21 17:32:39.257 447192 11328 447209 3377 4 10478 2025-03-21 17:38:51.613 2025-03-21 17:38:51.613 447192 11328 447214 4027 5 10479 2025-03-21 17:21:57.574 2025-03-21 17:21:57.574 447193 10698 447198 4692 1 10480 2025-03-22 15:56:19.994 2025-03-22 15:56:19.994 447194 1465 448455 10934 2 10481 2025-03-21 20:36:02.049 2025-03-21 20:36:02.049 447194 1465 447432 3360 1 10482 2025-03-21 17:28:05.804 2025-03-21 17:28:05.804 447196 21833 447207 636 2 10483 2025-03-21 17:24:42.131 2025-03-21 17:24:42.131 447196 21833 447202 726 1 10484 2025-03-21 17:25:06.52 2025-03-21 17:25:06.52 447196 21833 447204 12959 1 10485 2025-03-21 17:27:32.438 2025-03-21 17:27:32.438 447196 21833 447206 17001 2 10486 2025-03-21 17:32:39.257 2025-03-21 17:32:39.257 447196 21833 447209 3377 3 10487 2025-03-21 17:38:51.613 2025-03-21 17:38:51.613 447196 21833 447214 4027 4 10488 2025-03-21 17:33:09.625 2025-03-21 17:33:09.625 447197 21672 447210 7869 1 10489 2025-03-21 18:18:25.575 2025-03-21 18:18:25.575 447197 21672 447256 8870 1 10490 2025-03-21 17:43:02.14 2025-03-21 17:43:02.14 447199 2328 447219 21051 1 10491 2025-03-22 18:25:49.199 2025-03-22 18:25:49.199 447199 2328 448612 15536 1 10492 2025-03-21 17:28:05.804 2025-03-21 17:28:05.804 447202 726 447207 636 1 10493 2025-03-21 17:27:32.438 2025-03-21 17:27:32.438 447204 12959 447206 17001 1 10494 2025-03-21 17:32:39.257 2025-03-21 17:32:39.257 447204 12959 447209 3377 2 10495 2025-03-21 17:38:51.613 2025-03-21 17:38:51.613 447204 12959 447214 4027 3 10496 2025-03-21 17:32:39.257 2025-03-21 17:32:39.257 447206 17001 447209 3377 1 10497 2025-03-21 17:38:51.613 2025-03-21 17:38:51.613 447206 17001 447214 4027 2 10498 2025-03-21 18:09:21.693 2025-03-21 18:09:21.693 447208 7587 447245 20495 1 10499 2025-03-21 17:38:51.613 2025-03-21 17:38:51.613 447209 3377 447214 4027 1 10500 2025-03-21 17:41:47.719 2025-03-21 17:41:47.719 447212 11716 447217 5646 1 10501 2025-03-21 17:48:14.747 2025-03-21 17:48:14.747 447212 11716 447224 14385 2 10502 2025-03-21 17:48:44.078 2025-03-21 17:48:44.078 447213 16571 447226 4083 2 10503 2025-03-21 17:50:16.637 2025-03-21 17:50:16.637 447213 16571 447230 21022 3 10504 2025-03-21 17:41:08.778 2025-03-21 17:41:08.778 447213 16571 447216 16948 1 10505 2025-03-21 17:48:14.747 2025-03-21 17:48:14.747 447217 5646 447224 14385 1 10506 2025-03-21 18:14:12.909 2025-03-21 18:14:12.909 447218 1970 447250 12656 1 10507 2025-03-21 18:22:16.173 2025-03-21 18:22:16.173 447218 1970 447261 17411 2 10508 2025-03-21 17:46:29.231 2025-03-21 17:46:29.231 447221 20555 447223 7185 1 10509 2025-03-21 17:48:52.302 2025-03-21 17:48:52.302 447221 20555 447227 20802 1 10510 2025-03-21 17:58:44.14 2025-03-21 17:58:44.14 447221 20555 447240 16126 2 10511 2025-03-21 18:31:29.083 2025-03-21 18:31:29.083 447222 4083 447270 21522 1 10512 2025-03-21 17:58:44.14 2025-03-21 17:58:44.14 447223 7185 447240 16126 1 10513 2025-03-21 17:50:16.637 2025-03-21 17:50:16.637 447226 4083 447230 21022 1 10514 2025-03-21 17:55:52.075 2025-03-21 17:55:52.075 447228 18526 447238 656 1 10515 2025-03-21 18:18:52.009 2025-03-21 18:18:52.009 447229 9552 447258 20663 1 10516 2025-03-21 18:37:53.894 2025-03-21 18:37:53.894 447235 21600 447278 661 1 10517 2025-03-21 18:52:24.596 2025-03-21 18:52:24.596 447235 21600 447299 1490 2 10518 2025-03-21 18:45:57.574 2025-03-21 18:45:57.574 447239 2537 447286 21374 3 10519 2025-03-21 18:48:12.504 2025-03-21 18:48:12.504 447239 2537 447291 13042 4 10520 2025-03-21 18:00:45.375 2025-03-21 18:00:45.375 447239 2537 447242 17592 1 10521 2025-03-21 18:43:49.87 2025-03-21 18:43:49.87 447239 2537 447282 1769 2 10522 2025-03-21 18:59:33.099 2025-03-21 18:59:33.099 447239 2537 447305 2111 5 10523 2025-03-21 18:45:57.574 2025-03-21 18:45:57.574 447242 17592 447286 21374 2 10524 2025-03-21 18:48:12.504 2025-03-21 18:48:12.504 447242 17592 447291 13042 3 10525 2025-03-21 18:43:49.87 2025-03-21 18:43:49.87 447242 17592 447282 1769 1 10526 2025-03-21 18:59:33.099 2025-03-21 18:59:33.099 447242 17592 447305 2111 4 10527 2025-03-21 18:09:44.945 2025-03-21 18:09:44.945 447243 1198 447246 18901 1 10528 2025-03-21 18:11:13.349 2025-03-21 18:11:13.349 447243 1198 447247 21303 2 10529 2025-03-21 18:22:16.173 2025-03-21 18:22:16.173 447250 12656 447261 17411 1 10530 2025-03-21 18:39:29.205 2025-03-21 18:39:29.205 447264 5825 447280 1425 1 10531 2025-03-21 18:46:49.146 2025-03-21 18:46:49.146 447264 5825 447288 629 2 10532 2025-03-21 18:54:14.408 2025-03-21 18:54:14.408 447264 5825 447300 762 3 10533 2025-03-21 19:13:56.371 2025-03-21 19:13:56.371 447264 5825 447313 2640 2 10534 2025-03-21 19:20:43.803 2025-03-21 19:20:43.803 447264 5825 447325 1505 3 10535 2025-03-21 19:23:32.367 2025-03-21 19:23:32.367 447264 5825 447332 20133 3 10536 2025-03-21 18:55:24.899 2025-03-21 18:55:24.899 447264 5825 447302 19857 1 10537 2025-03-21 19:22:24.565 2025-03-21 19:22:24.565 447264 5825 447331 3411 3 10538 2025-03-21 19:17:35.516 2025-03-21 19:17:35.516 447264 5825 447318 21391 2 10539 2025-03-21 19:30:59.459 2025-03-21 19:30:59.459 447267 15091 447348 9109 2 10540 2025-03-21 20:47:11.231 2025-03-21 20:47:11.231 447267 15091 447455 910 3 10541 2025-03-21 18:46:27.927 2025-03-21 18:46:27.927 447267 15091 447287 19966 1 10542 2025-03-21 18:50:41.201 2025-03-21 18:50:41.201 447275 15200 447297 20864 1 10543 2025-03-21 18:45:25.169 2025-03-21 18:45:25.169 447276 9353 447283 19459 1 10544 2025-03-21 18:39:04.832 2025-03-21 18:39:04.832 447277 2098 447279 17696 1 10545 2025-03-21 18:52:24.596 2025-03-21 18:52:24.596 447278 661 447299 1490 1 10546 2025-03-21 18:46:49.146 2025-03-21 18:46:49.146 447280 1425 447288 629 1 10547 2025-03-21 18:54:14.408 2025-03-21 18:54:14.408 447280 1425 447300 762 2 10548 2025-03-21 18:45:57.574 2025-03-21 18:45:57.574 447282 1769 447286 21374 1 10549 2025-03-21 18:48:12.504 2025-03-21 18:48:12.504 447282 1769 447291 13042 2 10550 2025-03-21 18:59:33.099 2025-03-21 18:59:33.099 447282 1769 447305 2111 3 10551 2025-03-21 18:49:32.375 2025-03-21 18:49:32.375 447284 17046 447294 664 1 10552 2025-03-21 18:48:12.504 2025-03-21 18:48:12.504 447286 21374 447291 13042 1 10553 2025-03-21 18:59:33.099 2025-03-21 18:59:33.099 447286 21374 447305 2111 2 10554 2025-03-21 19:30:59.459 2025-03-21 19:30:59.459 447287 19966 447348 9109 1 10555 2025-03-21 20:47:11.231 2025-03-21 20:47:11.231 447287 19966 447455 910 2 10556 2025-03-21 18:54:14.408 2025-03-21 18:54:14.408 447288 629 447300 762 1 10557 2025-03-21 18:59:33.099 2025-03-21 18:59:33.099 447291 13042 447305 2111 1 10558 2025-03-22 13:37:19.67 2025-03-22 13:37:19.67 448208 10060 448211 18321 1 10559 2025-03-22 13:43:38.548 2025-03-22 13:43:38.548 448208 10060 448218 720 2 10560 2025-03-21 19:13:56.371 2025-03-21 19:13:56.371 447302 19857 447313 2640 1 10561 2025-03-21 19:20:43.803 2025-03-21 19:20:43.803 447302 19857 447325 1505 2 10562 2025-03-21 19:23:32.367 2025-03-21 19:23:32.367 447302 19857 447332 20133 2 10563 2025-03-21 19:22:24.565 2025-03-21 19:22:24.565 447302 19857 447331 3411 2 10564 2025-03-21 19:17:35.516 2025-03-21 19:17:35.516 447302 19857 447318 21391 1 10565 2025-03-21 19:20:43.803 2025-03-21 19:20:43.803 447313 2640 447325 1505 1 10566 2025-03-22 13:43:38.548 2025-03-22 13:43:38.548 448211 18321 448218 720 1 10567 2025-03-22 13:36:10.606 2025-03-22 13:36:10.606 448205 21012 448207 19980 1 10568 2025-03-23 22:50:03.06 2025-03-23 22:50:03.06 447903 5057 450382 1465 2 10569 2025-03-22 10:42:11.629 2025-03-22 10:42:11.629 447903 5057 448010 10291 1 10570 2025-03-22 15:18:20.996 2025-03-22 15:18:20.996 448015 21207 448380 9418 4 10571 2025-03-22 22:34:34.486 2025-03-22 22:34:34.486 448015 21207 448826 1425 1 10572 2025-03-22 22:35:31.711 2025-03-22 22:35:31.711 448015 21207 448827 1326 2 10573 2025-03-22 12:21:30.957 2025-03-22 12:21:30.957 448015 21207 448117 11776 1 10574 2025-03-22 11:14:05.625 2025-03-22 11:14:05.625 448015 21207 448047 8841 1 10575 2025-03-22 10:52:46.149 2025-03-22 10:52:46.149 448015 21207 448019 10690 1 10576 2025-03-22 11:02:53.795 2025-03-22 11:02:53.795 448015 21207 448031 14905 2 10577 2025-03-22 12:37:37.955 2025-03-22 12:37:37.955 448015 21207 448145 21057 3 10578 2025-03-23 02:17:55.763 2025-03-23 02:17:55.763 448015 21207 448948 19469 1 10579 2025-03-22 12:32:03.1 2025-03-22 12:32:03.1 448015 21207 448135 20479 2 10580 2025-03-22 21:58:13.246 2025-03-22 21:58:13.246 448035 14650 448798 11714 1 10581 2025-03-22 16:22:57.34 2025-03-22 16:22:57.34 448049 6555 448492 18174 2 10582 2025-03-23 00:56:40.227 2025-03-23 00:56:40.227 448049 6555 448902 18101 1 10583 2025-03-22 15:26:38.9 2025-03-22 15:26:38.9 448049 6555 448397 13249 1 10584 2025-03-22 16:02:48.245 2025-03-22 16:02:48.245 448049 6555 448463 11967 1 10585 2025-03-22 15:18:40.517 2025-03-22 15:18:40.517 448377 21041 448381 10291 1 10586 2025-03-22 15:24:25.661 2025-03-22 15:24:25.661 448373 12819 448392 16847 1 10587 2025-03-22 15:44:36.843 2025-03-22 15:44:36.843 448375 9332 448429 11527 1 10588 2025-03-22 15:47:48.558 2025-03-22 15:47:48.558 448375 9332 448435 21412 2 10589 2025-03-22 16:00:40.186 2025-03-22 16:00:40.186 448375 9332 448461 5499 3 10590 2025-03-22 15:43:56.425 2025-03-22 15:43:56.425 448168 20811 448426 21019 2 10591 2025-03-22 15:47:37.988 2025-03-22 15:47:37.988 448168 20811 448432 19826 3 10592 2025-03-22 14:33:05.864 2025-03-22 14:33:05.864 448168 20811 448299 11038 1 10593 2025-03-22 16:23:15.733 2025-03-22 16:23:15.733 448201 19996 448493 18449 3 10594 2025-03-22 16:09:32.66 2025-03-22 16:09:32.66 448201 19996 448468 17212 2 10595 2025-03-22 13:41:44.526 2025-03-22 13:41:44.526 448201 19996 448216 2329 1 10596 2025-03-22 13:50:10.217 2025-03-22 13:50:10.217 448201 19996 448227 20225 2 10597 2025-03-22 15:19:14.568 2025-03-22 15:19:14.568 448201 19996 448382 1145 1 10598 2025-03-22 15:01:46.248 2025-03-22 15:01:46.248 448202 21672 448352 21832 4 10599 2025-03-22 14:18:08.432 2025-03-22 14:18:08.432 448202 21672 448276 16966 1 10600 2025-03-22 14:40:08.646 2025-03-22 14:40:08.646 448202 21672 448315 18526 2 10601 2025-03-22 14:45:14.355 2025-03-22 14:45:14.355 448202 21672 448320 16387 3 10602 2025-03-22 15:22:04.122 2025-03-22 15:22:04.122 448202 21672 448387 712 5 10603 2025-03-22 15:31:44.591 2025-03-22 15:31:44.591 448202 21672 448404 946 6 10604 2025-03-22 13:36:14.233 2025-03-22 13:36:14.233 448202 21672 448208 10060 1 10605 2025-03-22 13:37:19.67 2025-03-22 13:37:19.67 448202 21672 448211 18321 2 10606 2025-03-22 13:43:38.548 2025-03-22 13:43:38.548 448202 21672 448218 720 3 10607 2025-03-22 15:37:04.157 2025-03-22 15:37:04.157 448202 21672 448413 15091 7 10608 2025-03-22 15:22:04.122 2025-03-22 15:22:04.122 448352 21832 448387 712 1 10609 2025-03-22 15:31:44.591 2025-03-22 15:31:44.591 448352 21832 448404 946 2 10610 2025-03-22 15:37:04.157 2025-03-22 15:37:04.157 448352 21832 448413 15091 3 10611 2025-03-22 15:15:44.815 2025-03-22 15:15:44.815 448363 18225 448372 18270 1 10612 2025-03-22 13:54:23.517 2025-03-22 13:54:23.517 448230 20220 448234 20756 1 10613 2025-03-22 22:12:03.92 2025-03-22 22:12:03.92 448230 20220 448811 16876 1 10614 2025-03-22 23:19:09.019 2025-03-22 23:19:09.019 448230 20220 448849 20647 3 10615 2025-03-22 23:09:10.086 2025-03-22 23:09:10.086 448230 20220 448840 1064 2 10616 2025-03-22 15:11:23.986 2025-03-22 15:11:23.986 448232 1534 448363 18225 1 10617 2025-03-22 13:58:12.38 2025-03-22 13:58:12.38 448232 1534 448238 2961 2 10618 2025-03-22 13:55:04.044 2025-03-22 13:55:04.044 448232 1534 448236 16336 1 10619 2025-03-22 13:59:21.761 2025-03-22 13:59:21.761 448232 1534 448241 10934 1 10620 2025-03-22 15:15:44.815 2025-03-22 15:15:44.815 448232 1534 448372 18270 2 10621 2025-03-22 14:53:05.602 2025-03-22 14:53:05.602 448263 21631 448334 1198 2 10622 2025-03-22 14:39:39.187 2025-03-22 14:39:39.187 448263 21631 448314 1718 1 10623 2025-03-22 15:01:46.248 2025-03-22 15:01:46.248 448276 16966 448352 21832 3 10624 2025-03-22 14:40:08.646 2025-03-22 14:40:08.646 448276 16966 448315 18526 1 10625 2025-03-22 14:45:14.355 2025-03-22 14:45:14.355 448276 16966 448320 16387 2 10626 2025-03-22 15:22:04.122 2025-03-22 15:22:04.122 448276 16966 448387 712 4 10627 2025-03-22 15:31:44.591 2025-03-22 15:31:44.591 448276 16966 448404 946 5 10628 2025-03-22 15:37:04.157 2025-03-22 15:37:04.157 448276 16966 448413 15091 6 10629 2025-03-22 15:21:56.933 2025-03-22 15:21:56.933 448293 21208 448386 6526 1 10630 2025-03-22 15:49:14.059 2025-03-22 15:49:14.059 448293 21208 448439 1833 2 10631 2025-03-22 15:49:47.534 2025-03-22 15:49:47.534 448293 21208 448441 20588 1 10632 2025-03-22 15:52:18.963 2025-03-22 15:52:18.963 448301 21482 448447 2514 1 10633 2025-03-22 16:00:31.17 2025-03-22 16:00:31.17 448301 21482 448460 7668 3 10634 2025-03-22 15:58:45.515 2025-03-22 15:58:45.515 448301 21482 448457 15052 2 10635 2025-03-22 15:01:46.248 2025-03-22 15:01:46.248 448315 18526 448352 21832 2 10636 2025-03-22 14:45:14.355 2025-03-22 14:45:14.355 448315 18526 448320 16387 1 10637 2025-03-22 15:22:04.122 2025-03-22 15:22:04.122 448315 18526 448387 712 3 10638 2025-03-22 15:31:44.591 2025-03-22 15:31:44.591 448315 18526 448404 946 4 10639 2025-03-22 15:37:04.157 2025-03-22 15:37:04.157 448315 18526 448413 15091 5 10640 2025-03-22 15:01:46.248 2025-03-22 15:01:46.248 448320 16387 448352 21832 1 10641 2025-03-22 15:22:04.122 2025-03-22 15:22:04.122 448320 16387 448387 712 2 10642 2025-03-22 15:31:44.591 2025-03-22 15:31:44.591 448320 16387 448404 946 3 10643 2025-03-22 15:37:04.157 2025-03-22 15:37:04.157 448320 16387 448413 15091 4 10644 2025-03-22 15:11:41.528 2025-03-22 15:11:41.528 448331 5444 448365 2639 3 10645 2025-03-22 15:18:40.517 2025-03-22 15:18:40.517 448331 5444 448381 10291 5 10646 2025-03-22 15:14:03.834 2025-03-22 15:14:03.834 448331 5444 448371 16406 3 10647 2025-03-22 15:07:46.914 2025-03-22 15:07:46.914 448331 5444 448359 20201 2 10648 2025-03-22 15:17:01.021 2025-03-22 15:17:01.021 448331 5444 448377 21041 4 10649 2025-03-22 15:22:05.42 2025-03-22 15:22:05.42 448331 5444 448388 1825 3 10650 2025-03-22 15:24:28.174 2025-03-22 15:24:28.174 448331 5444 448393 12245 3 10651 2025-03-22 15:21:00.971 2025-03-22 15:21:00.971 448331 5444 448384 2233 1 10652 2025-03-22 14:56:58.897 2025-03-22 14:56:58.897 448331 5444 448342 1173 1 10653 2025-03-22 15:31:44.591 2025-03-22 15:31:44.591 448387 712 448404 946 1 10654 2025-03-22 15:37:04.157 2025-03-22 15:37:04.157 448387 712 448413 15091 2 10655 2025-03-22 21:47:17.929 2025-03-22 21:47:17.929 448452 4973 448789 1729 2 10656 2025-03-22 21:49:25.591 2025-03-22 21:49:25.591 448452 4973 448792 19378 3 10657 2025-03-22 18:52:45.84 2025-03-22 18:52:45.84 448452 4973 448643 19943 1 10658 2025-03-22 15:28:11.767 2025-03-22 15:28:11.767 448391 19193 448400 19071 1 10659 2025-03-22 15:38:52.389 2025-03-22 15:38:52.389 448403 8985 448417 12935 1 10660 2025-03-22 15:37:04.157 2025-03-22 15:37:04.157 448404 946 448413 15091 1 10661 2025-03-22 15:47:37.988 2025-03-22 15:47:37.988 448426 21019 448432 19826 1 10662 2025-03-22 15:47:48.558 2025-03-22 15:47:48.558 448429 11527 448435 21412 1 10663 2025-03-22 16:00:40.186 2025-03-22 16:00:40.186 448429 11527 448461 5499 2 10664 2025-03-22 22:19:28.34 2025-03-22 22:19:28.34 448746 700 448816 21067 4 10665 2025-03-22 22:10:07.659 2025-03-22 22:10:07.659 448746 700 448809 5455 3 10666 2025-03-22 21:49:48.431 2025-03-22 21:49:48.431 448746 700 448793 9362 2 10667 2025-03-22 21:37:24.208 2025-03-22 21:37:24.208 448746 700 448779 1549 1 10668 2025-03-22 21:37:51.488 2025-03-22 21:37:51.488 448746 700 448780 19581 1 10669 2025-03-22 21:45:49.524 2025-03-22 21:45:49.524 448746 700 448787 2022 2 10670 2025-03-22 22:18:47.932 2025-03-22 22:18:47.932 448805 10016 448815 16754 2 10671 2025-03-22 22:16:30.689 2025-03-22 22:16:30.689 448805 10016 448814 5597 1 10672 2025-03-22 23:18:47.013 2025-03-22 23:18:47.013 448805 10016 448848 10849 1 10673 2025-03-22 22:33:16.91 2025-03-22 22:33:16.91 448591 13467 448823 5293 1 10674 2025-03-23 03:08:01.521 2025-03-23 03:08:01.521 448591 13467 448966 21014 1 10675 2025-03-22 22:12:38.531 2025-03-22 22:12:38.531 448591 13467 448812 21575 3 10676 2025-03-22 21:18:07.541 2025-03-22 21:18:07.541 448591 13467 448769 21320 1 10677 2025-03-22 21:35:39.906 2025-03-22 21:35:39.906 448591 13467 448778 4802 1 10678 2025-03-22 22:10:49.098 2025-03-22 22:10:49.098 448591 13467 448810 7659 2 10679 2025-03-22 23:14:25.796 2025-03-22 23:14:25.796 448691 638 448844 17991 2 10680 2025-03-22 22:54:26.536 2025-03-22 22:54:26.536 448691 638 448837 16212 1 10681 2025-03-23 01:13:35.458 2025-03-23 01:13:35.458 448691 638 448921 16513 3 10682 2025-03-22 22:37:30.846 2025-03-22 22:37:30.846 448691 638 448829 21501 1 10683 2025-03-23 01:31:32.176 2025-03-23 01:31:32.176 448691 638 448932 1298 1 10684 2025-03-22 21:20:48.514 2025-03-22 21:20:48.514 448716 7667 448771 654 1 10685 2025-03-22 21:30:18.107 2025-03-22 21:30:18.107 448716 7667 448776 16638 2 10686 2025-03-22 21:49:25.591 2025-03-22 21:49:25.591 448789 1729 448792 19378 1 10687 2025-03-22 21:22:05.529 2025-03-22 21:22:05.529 448732 10291 448773 21119 1 10688 2025-03-22 21:28:19.442 2025-03-22 21:28:19.442 448732 10291 448775 16858 2 10689 2025-03-22 21:28:19.442 2025-03-22 21:28:19.442 448773 21119 448775 16858 1 10690 2025-03-22 22:12:38.531 2025-03-22 22:12:38.531 448778 4802 448812 21575 2 10691 2025-03-22 22:10:49.098 2025-03-22 22:10:49.098 448778 4802 448810 7659 1 10692 2025-03-22 21:49:48.431 2025-03-22 21:49:48.431 448779 1549 448793 9362 1 10693 2025-03-22 22:19:28.34 2025-03-22 22:19:28.34 448780 19581 448816 21067 3 10694 2025-03-22 22:10:07.659 2025-03-22 22:10:07.659 448780 19581 448809 5455 2 10695 2025-03-22 21:45:49.524 2025-03-22 21:45:49.524 448780 19581 448787 2022 1 10696 2025-03-22 22:19:28.34 2025-03-22 22:19:28.34 448787 2022 448816 21067 2 10697 2025-03-22 22:10:07.659 2025-03-22 22:10:07.659 448787 2022 448809 5455 1 10698 2025-03-22 22:36:32.568 2025-03-22 22:36:32.568 448796 14990 448828 13198 1 10699 2025-03-22 22:12:38.531 2025-03-22 22:12:38.531 448810 7659 448812 21575 1 10700 2025-03-22 23:19:09.019 2025-03-22 23:19:09.019 448811 16876 448849 20647 2 10701 2025-03-22 23:09:10.086 2025-03-22 23:09:10.086 448811 16876 448840 1064 1 10702 2025-03-22 22:45:12.419 2025-03-22 22:45:12.419 448817 1745 448835 14731 1 10703 2025-03-22 23:14:25.796 2025-03-22 23:14:25.796 448837 16212 448844 17991 1 10704 2025-03-23 01:13:35.458 2025-03-23 01:13:35.458 448837 16212 448921 16513 2 10705 2022-09-26 11:56:27.071 2022-09-26 11:56:27.071 700 21104 1813 1959 1 10706 2024-11-24 23:04:35.762 2024-11-24 23:04:35.762 307258 21145 307311 1983 1 10707 2024-11-24 21:55:15.814 2024-11-24 21:55:15.814 307258 21145 307263 14258 1 10708 2024-11-24 22:33:04.133 2024-11-24 22:33:04.133 307258 21145 307286 21026 1 10709 2024-11-24 22:40:00.206 2024-11-24 22:40:00.206 307258 21145 307296 18608 1 10710 2024-11-25 00:04:52.846 2024-11-25 00:04:52.846 307258 21145 307359 848 1 10711 2024-11-25 00:55:41.965 2024-11-25 00:55:41.965 307258 21145 307400 20603 1 10712 2024-11-24 22:29:50.957 2024-11-24 22:29:50.957 307258 21145 307282 6688 2 10713 2024-11-25 08:10:19.189 2024-11-25 08:10:19.189 307258 21145 307582 1624 1 10714 2024-11-24 22:55:17.311 2024-11-24 22:55:17.311 307258 21145 307304 19189 2 10715 2024-11-25 01:15:03.797 2024-11-25 01:15:03.797 307258 21145 307417 1825 1 10716 2024-11-24 21:54:22.355 2024-11-24 21:54:22.355 307258 21145 307262 5942 1 10717 2024-11-24 22:03:14.42 2024-11-24 22:03:14.42 307258 21145 307268 10611 1 10718 2024-11-24 22:19:53.785 2024-11-24 22:19:53.785 307258 21145 307277 21254 1 10719 2024-11-24 22:35:53.523 2024-11-24 22:35:53.523 307258 21145 307291 8173 4 10720 2024-11-24 23:15:57.149 2024-11-24 23:15:57.149 307258 21145 307318 626 1 10721 2024-11-24 23:22:53.341 2024-11-24 23:22:53.341 307258 21145 307329 17824 1 10722 2024-11-24 23:36:52.693 2024-11-24 23:36:52.693 307258 21145 307341 6463 1 10723 2024-11-25 02:13:08.152 2024-11-25 02:13:08.152 307258 21145 307449 16440 1 10724 2024-11-25 02:40:00.124 2024-11-25 02:40:00.124 307258 21145 307452 16282 1 10725 2024-11-25 05:29:32.219 2024-11-25 05:29:32.219 307258 21145 307516 17639 1 10726 2024-11-25 04:00:56.871 2024-11-25 04:00:56.871 307258 21145 307477 19906 1 10727 2024-11-25 04:38:04.845 2024-11-25 04:38:04.845 307258 21145 307495 12749 1 10728 2024-11-25 14:34:47.726 2024-11-25 14:34:47.726 307258 21145 307986 4027 1 10729 2024-11-24 22:32:25.713 2024-11-24 22:32:25.713 307258 21145 307285 19071 3 10730 2024-11-24 22:07:13.411 2024-11-24 22:07:13.411 307258 21145 307270 2652 1 10731 2024-11-24 22:19:00.304 2024-11-24 22:19:00.304 307258 21145 307276 13177 1 10732 2024-11-24 22:29:37.095 2024-11-24 22:29:37.095 307258 21145 307281 21172 1 10733 2024-11-25 01:03:26.01 2024-11-25 01:03:26.01 307258 21145 307407 9 1 10734 2024-11-25 01:02:30.494 2024-11-25 01:02:30.494 307258 21145 307406 1425 1 10735 2024-11-25 05:28:29.566 2024-11-25 05:28:29.566 307258 21145 307515 6229 1 10736 2024-11-25 07:27:28.733 2024-11-25 07:27:28.733 307258 21145 307555 16354 1 10737 2024-11-24 22:26:30.302 2024-11-24 22:26:30.302 307258 21145 307280 16948 1 10738 2024-11-25 00:27:06.413 2024-11-25 00:27:06.413 307032 21825 307376 11144 1 10739 2025-03-23 01:13:35.458 2025-03-23 01:13:35.458 448844 17991 448921 16513 1 10740 2025-03-22 23:42:08.981 2025-03-22 23:42:08.981 448851 5728 448863 675 2 10741 2025-03-22 23:39:11.232 2025-03-22 23:39:11.232 448851 5728 448862 12965 1 10742 2025-03-22 23:48:50.227 2025-03-22 23:48:50.227 448861 20956 448867 20433 1 10743 2025-03-23 04:36:45.302 2025-03-23 04:36:45.302 448953 13987 449003 21540 2 10744 2025-03-23 03:48:03.161 2025-03-23 03:48:03.161 448953 13987 448982 15160 1 10745 2025-03-23 04:59:52.418 2025-03-23 04:59:52.418 448953 13987 449017 5497 3 10746 2025-03-23 03:50:52.042 2025-03-23 03:50:52.042 448962 13198 448984 17570 4 10747 2025-03-23 03:43:54.847 2025-03-23 03:43:54.847 448962 13198 448981 17103 3 10748 2025-03-23 03:42:35.5 2025-03-23 03:42:35.5 448962 13198 448979 21539 2 10749 2025-03-23 03:40:27.53 2025-03-23 03:40:27.53 448962 13198 448977 20612 1 10750 2025-03-13 19:18:08.638 2025-03-13 19:18:08.638 286012 4173 436670 14255 1 10751 2025-03-23 03:50:52.042 2025-03-23 03:50:52.042 448979 21539 448984 17570 2 10752 2025-03-23 03:43:54.847 2025-03-23 03:43:54.847 448979 21539 448981 17103 1 10753 2024-11-24 22:55:17.311 2024-11-24 22:55:17.311 307262 5942 307304 19189 1 10754 2024-11-25 03:42:12.803 2024-11-25 03:42:12.803 307458 12774 307470 775 1 10755 2024-03-07 08:35:58.768 2024-03-07 08:35:58.768 138156 13055 138228 1571 2 10756 2024-03-07 08:24:28.95 2024-03-07 08:24:28.95 138156 13055 138224 7119 1 10757 2025-03-12 12:45:37.483 2025-03-12 12:45:37.483 433397 12870 435070 12169 1 10758 2024-03-07 04:20:31.725 2024-03-07 04:20:31.725 138031 2013 138156 13055 1 10759 2024-03-07 08:35:58.768 2024-03-07 08:35:58.768 138031 2013 138228 1571 3 10760 2024-03-07 08:24:28.95 2024-03-07 08:24:28.95 138031 2013 138224 7119 2 10761 2024-11-25 19:22:02.351 2024-11-25 19:22:02.351 308281 11498 308301 16939 2 10762 2024-11-25 19:05:35.148 2024-11-25 19:05:35.148 308281 11498 308284 19263 1 10763 2024-03-07 21:50:43.616 2024-03-07 21:50:43.616 138518 4064 138731 10063 1 10764 2024-12-06 05:13:24.617 2024-12-06 05:13:24.617 320187 5806 320368 19863 4 10765 2024-12-06 03:43:02.722 2024-12-06 03:43:02.722 320187 5806 320332 2734 2 10766 2024-12-06 01:33:24.294 2024-12-06 01:33:24.294 320187 5806 320300 11678 1 10767 2024-12-06 14:39:50.834 2024-12-06 14:39:50.834 320187 5806 320752 16839 5 10768 2024-12-06 04:15:17.01 2024-12-06 04:15:17.01 320187 5806 320343 21060 3 10769 2023-12-02 15:49:51.41 2023-12-02 15:49:51.41 93434 14607 93519 8726 1 10770 2023-10-23 07:59:23.268 2023-10-23 07:59:23.268 77057 1638 77060 21214 1 10771 2024-07-13 16:35:31.59 2024-07-13 16:35:31.59 199264 21578 199286 13055 1 10772 2024-08-19 23:35:59.962 2024-08-19 23:35:59.962 199264 21578 217413 16571 1 10773 2024-09-08 03:24:57.757 2024-09-08 03:24:57.757 199264 21578 230233 6463 1 10774 2023-12-11 23:03:51.62 2023-12-11 23:03:51.62 97257 7978 97606 17690 4 10775 2023-12-11 19:29:17.774 2023-12-11 19:29:17.774 97257 7978 97526 10731 2 10776 2023-12-11 19:37:00.728 2023-12-11 19:37:00.728 97257 7978 97530 8059 3 10777 2023-12-11 19:27:41.502 2023-12-11 19:27:41.502 97257 7978 97522 19527 1 10778 2025-03-12 13:08:52.269 2025-03-12 13:08:52.269 95306 1534 435094 20913 3 10779 2025-03-03 20:24:37.327 2025-03-03 20:24:37.327 95306 1534 424089 2774 2 10780 2023-12-06 17:38:17.934 2023-12-06 17:38:17.934 95306 1534 95453 7668 1 10781 2024-06-27 14:51:25.406 2024-06-27 14:51:25.406 190541 951 190605 20912 1 10782 2024-06-28 05:52:15.129 2024-06-28 05:52:15.129 190541 951 190861 10549 2 10783 2024-06-27 13:28:46.001 2024-06-27 13:28:46.001 190541 951 190559 21406 1 10784 2024-06-23 21:30:26.792 2024-06-23 21:30:26.792 188308 13921 188673 1658 6 10785 2024-06-23 21:24:41.45 2024-06-23 21:24:41.45 188308 13921 188670 20691 5 10786 2024-06-23 10:54:38.806 2024-06-23 10:54:38.806 188308 13921 188387 18005 2 10787 2024-06-24 00:37:00.985 2024-06-24 00:37:00.985 188308 13921 188714 20434 8 10788 2024-06-23 11:08:54.501 2024-06-23 11:08:54.501 188308 13921 188396 13198 4 10789 2024-06-23 10:47:46.381 2024-06-23 10:47:46.381 188308 13921 188380 9655 1 10790 2024-06-23 21:37:20.3 2024-06-23 21:37:20.3 188308 13921 188675 7966 7 10791 2024-06-23 10:59:38.197 2024-06-23 10:59:38.197 188308 13921 188390 844 3 10792 2025-03-01 21:12:44.217 2025-03-01 21:12:44.217 2483 16456 421661 16942 3 10793 2025-03-01 13:35:49.198 2025-03-01 13:35:49.198 2483 16456 421191 929 2 10794 2025-03-01 03:27:15.532 2025-03-01 03:27:15.532 2483 16456 420776 4768 1 10795 2023-05-10 14:24:07.88 2023-05-10 14:24:07.88 21672 21521 21747 963 3 10796 2023-05-10 13:40:48.196 2023-05-10 13:40:48.196 21672 21521 21729 631 2 10797 2025-02-15 05:37:44.328 2025-02-15 05:37:44.328 21672 21521 403692 19333 4 10798 2023-05-10 13:38:11.061 2023-05-10 13:38:11.061 21672 21521 21728 2681 1 10799 2024-12-06 19:22:25.171 2024-12-06 19:22:25.171 320825 8045 321001 1490 1 10800 2024-12-06 20:13:34.442 2024-12-06 20:13:34.442 320825 8045 321030 20754 3 10801 2024-12-06 19:41:13.629 2024-12-06 19:41:13.629 320825 8045 321012 20817 2 10802 2025-03-09 17:21:36.324 2025-03-09 17:21:36.324 328186 684 431655 640 1 10803 2025-03-04 02:50:20.247 2025-03-04 02:50:20.247 58808 1064 424361 5377 2 10804 2023-09-07 02:59:00.724 2023-09-07 02:59:00.724 58808 1064 60694 16513 1 10805 2023-10-23 06:47:56.49 2023-10-23 06:47:56.49 76869 20439 77038 20980 1 10806 2025-03-22 22:24:55.936 2025-03-22 22:24:55.936 103905 986 448818 16970 3 10807 2023-12-28 08:12:20.887 2023-12-28 08:12:20.887 103905 986 104413 21768 2 10808 2023-12-28 07:52:42.753 2023-12-28 07:52:42.753 103905 986 104402 21422 1 10809 2024-03-06 17:30:48.109 2024-03-06 17:30:48.109 137821 15075 137881 20599 2 10810 2024-03-06 17:42:02.348 2024-03-06 17:42:02.348 137821 15075 137892 5427 3 10811 2024-03-06 18:38:01.339 2024-03-06 18:38:01.339 137821 15075 137922 6229 4 10812 2024-03-06 17:12:54.254 2024-03-06 17:12:54.254 137821 15075 137862 4768 1 10813 2024-03-07 21:27:05.083 2024-03-07 21:27:05.083 138687 21021 138717 9346 1 10814 2024-03-10 15:34:06.215 2024-03-10 15:34:06.215 140609 10591 140625 1425 2 10815 2024-03-10 15:23:19.013 2024-03-10 15:23:19.013 140609 10591 140617 8289 1 10816 2024-03-10 17:01:25.599 2024-03-10 17:01:25.599 140609 10591 140680 2596 3 10817 2024-05-12 20:22:08.934 2024-05-12 20:22:08.934 169274 776 169282 20612 1 10818 2024-05-22 21:32:05.373 2024-05-22 21:32:05.373 173779 16684 174107 17321 1 10819 2025-03-04 00:11:12.145 2025-03-04 00:11:12.145 173779 16684 424295 15544 2 10820 2025-02-24 17:59:48.45 2025-02-24 17:59:48.45 190866 6421 415336 13097 3 10821 2024-06-29 15:43:51.302 2024-06-29 15:43:51.302 190866 6421 191467 18673 2 10822 2024-06-29 06:31:47.918 2024-06-29 06:31:47.918 190866 6421 191309 9026 1 10823 2024-07-17 05:09:47.218 2024-07-17 05:09:47.218 200669 666 201110 5776 2 10824 2024-07-16 12:05:56.968 2024-07-16 12:05:56.968 200669 666 200762 20636 1 10825 2025-02-26 00:16:56.214 2025-02-26 00:16:56.214 200669 666 416968 4313 3 10826 2025-03-20 03:05:07.497 2025-03-20 03:05:07.497 214244 797 444574 5308 2 10827 2024-08-13 12:49:59.199 2024-08-13 12:49:59.199 214244 797 214296 15119 1 10828 2025-03-11 17:20:08.055 2025-03-11 17:20:08.055 215973 11938 434227 20861 5 10829 2024-08-18 09:53:36.753 2024-08-18 09:53:36.753 215973 11938 216481 21044 2 10830 2025-03-12 11:26:36.151 2025-03-12 11:26:36.151 215973 11938 434970 17209 6 10831 2025-03-11 11:14:53.99 2025-03-11 11:14:53.99 215973 11938 433750 20913 4 10832 2024-08-18 11:19:29.879 2024-08-18 11:19:29.879 215973 11938 216553 6653 3 10833 2024-08-17 20:23:54.827 2024-08-17 20:23:54.827 215973 11938 216272 19996 1 10834 2024-09-19 04:33:57.349 2024-09-19 04:33:57.349 239231 16970 240894 21091 3 10835 2024-09-17 12:11:10.823 2024-09-17 12:11:10.823 239231 16970 239328 1411 2 10836 2024-09-17 12:09:34.349 2024-09-17 12:09:34.349 239231 16970 239323 21506 1 10837 2025-03-19 20:03:35.128 2025-03-19 20:03:35.128 239231 16970 444352 1603 4 10838 2024-11-25 19:01:57.675 2024-11-25 19:01:57.675 245118 20864 308280 14515 2 10839 2024-09-23 16:43:48.381 2024-09-23 16:43:48.381 245118 20864 245128 20912 1 10840 2024-09-25 04:40:07.461 2024-09-25 04:40:07.461 246718 18188 246723 1631 1 10841 2025-03-12 14:13:27.078 2025-03-12 14:13:27.078 260961 10611 435185 826 1 10842 2025-03-12 14:35:28.725 2025-03-12 14:35:28.725 292915 19292 435218 19863 1 10843 2025-03-12 15:26:48.68 2025-03-12 15:26:48.68 294868 20987 435302 10291 2 10844 2025-03-09 17:41:38.309 2025-03-09 17:41:38.309 294868 20987 431783 895 1 10845 2024-11-13 08:23:01.545 2024-11-13 08:23:01.545 294909 8168 294981 20062 2 10846 2024-11-13 07:16:58.361 2024-11-13 07:16:58.361 294909 8168 294915 21051 1 10847 2024-11-24 22:51:33.008 2024-11-24 22:51:33.008 306869 18393 307301 2224 2 10848 2024-11-24 16:48:17.009 2024-11-24 16:48:17.009 306869 18393 307005 8400 1 10849 2024-11-25 00:41:31.687 2024-11-25 00:41:31.687 304442 19842 307383 2322 1 10850 2024-11-25 01:17:37.536 2024-11-25 01:17:37.536 306232 8448 307419 1652 1 10851 2024-11-25 08:08:39.463 2024-11-25 08:08:39.463 306232 8448 307580 20636 1 10852 2024-11-25 01:14:43.282 2024-11-25 01:14:43.282 306400 21057 307416 9969 1 10853 2024-11-25 08:12:41.319 2024-11-25 08:12:41.319 306412 2593 307583 1424 1 10854 2024-11-25 09:43:19.356 2024-11-25 09:43:19.356 306412 2593 307682 1173 1 10855 2024-11-24 23:16:28.058 2024-11-24 23:16:28.058 306412 2593 307320 664 1 10856 2024-11-25 01:21:43.048 2024-11-25 01:21:43.048 306412 2593 307422 20220 1 10857 2024-11-25 06:02:23.113 2024-11-25 06:02:23.113 306412 2593 307522 699 1 10858 2024-11-25 09:32:24.988 2024-11-25 09:32:24.988 306412 2593 307670 3544 1 10859 2024-11-25 04:08:44.454 2024-11-25 04:08:44.454 306412 2593 307485 1673 1 10860 2024-11-25 08:19:14.956 2024-11-25 08:19:14.956 306830 827 307592 18306 4 10861 2024-11-25 07:56:01.979 2024-11-25 07:56:01.979 306830 827 307574 17172 2 10862 2024-11-25 07:58:10.624 2024-11-25 07:58:10.624 306830 827 307576 16598 3 10863 2024-11-25 08:27:14.94 2024-11-25 08:27:14.94 306830 827 307598 5527 6 10864 2024-11-25 08:21:47.641 2024-11-25 08:21:47.641 306830 827 307595 19459 5 10865 2024-11-24 14:27:44.933 2024-11-24 14:27:44.933 306830 827 306832 20701 1 10866 2024-11-24 22:36:48.784 2024-11-24 22:36:48.784 306844 5978 307294 20603 1 10867 2024-11-24 22:46:58.819 2024-11-24 22:46:58.819 307271 16789 307299 730 2 10868 2024-11-24 22:15:35.999 2024-11-24 22:15:35.999 307271 16789 307274 1571 1 10869 2024-11-25 03:44:29.367 2024-11-25 03:44:29.367 307315 9107 307471 20019 1 10870 2024-11-25 01:06:27.101 2024-11-25 01:06:27.101 307347 11776 307410 9169 1 10871 2024-11-25 00:46:39.026 2024-11-25 00:46:39.026 307387 725 307390 16456 1 10872 2024-11-25 13:32:41.871 2024-11-25 13:32:41.871 307579 20683 307921 7983 2 10873 2024-11-25 08:16:48.626 2024-11-25 08:16:48.626 307579 20683 307587 5522 1 10874 2025-02-13 09:58:00.367 2025-02-13 09:58:00.367 401651 10849 401660 17172 1 10875 2025-02-13 11:40:52.008 2025-02-13 11:40:52.008 401651 10849 401773 2123 5 10876 2025-02-13 11:21:31.94 2025-02-13 11:21:31.94 401651 10849 401754 16124 4 10877 2025-02-13 10:33:38.033 2025-02-13 10:33:38.033 401651 10849 401703 6537 3 10878 2025-02-13 10:04:49.642 2025-02-13 10:04:49.642 401651 10849 401673 5806 2 10879 2025-02-13 17:36:09.026 2025-02-13 17:36:09.026 401651 10849 402351 20906 6 10880 2025-02-24 18:58:50.658 2025-02-24 18:58:50.658 415381 9336 415389 1094 2 10881 2025-02-24 18:55:41.837 2025-02-24 18:55:41.837 415381 9336 415384 2963 1 10882 2025-02-24 23:32:41.459 2025-02-24 23:32:41.459 415525 21140 415629 20799 1 10883 2025-02-25 08:08:11.563 2025-02-25 08:08:11.563 415525 21140 415883 12490 2 10884 2024-11-25 10:03:20.556 2024-11-25 10:03:20.556 307609 14255 307702 20479 3 10885 2024-11-25 09:43:08.654 2024-11-25 09:43:08.654 307609 14255 307681 17082 2 10886 2024-11-25 09:26:53.09 2024-11-25 09:26:53.09 307609 14255 307658 16948 1 10887 2024-11-25 09:16:41.818 2024-11-25 09:16:41.818 307616 739 307639 11609 1 10888 2024-11-25 14:22:48.558 2024-11-25 14:22:48.558 307616 739 307975 19446 1 10889 2024-11-25 15:43:19.372 2024-11-25 15:43:19.372 307616 739 308086 9084 6 10890 2024-11-25 15:20:14.822 2024-11-25 15:20:14.822 307616 739 308046 4035 3 10891 2024-11-25 11:11:22.303 2024-11-25 11:11:22.303 307616 739 307742 18177 1 10892 2024-11-25 12:02:19.579 2024-11-25 12:02:19.579 307616 739 307813 19469 1 10893 2024-11-25 15:24:12.087 2024-11-25 15:24:12.087 307616 739 308051 21815 5 10894 2024-11-25 09:39:10.894 2024-11-25 09:39:10.894 307616 739 307676 20023 1 10895 2024-11-25 09:05:16.149 2024-11-25 09:05:16.149 307616 739 307626 10611 1 10896 2024-11-25 18:09:31.919 2024-11-25 18:09:31.919 307616 739 308244 19471 1 10897 2024-11-25 15:22:06.845 2024-11-25 15:22:06.845 307616 739 308049 2335 4 10898 2024-11-25 14:00:22.477 2024-11-25 14:00:22.477 307616 739 307953 1438 2 10899 2024-11-25 17:55:18.148 2024-11-25 17:55:18.148 308045 17171 308231 16679 1 10900 2025-03-12 08:58:04.653 2025-03-12 08:58:04.653 314108 20291 434815 1010 2 10901 2024-12-01 10:05:44.372 2024-12-01 10:05:44.372 314108 20291 314277 7558 1 10902 2025-03-09 16:02:45.226 2025-03-09 16:02:45.226 403633 5708 431200 1833 1 10903 2025-03-11 23:51:34.216 2025-03-11 23:51:34.216 403633 5708 434476 11523 2 10904 2024-12-15 11:20:42.942 2024-12-15 11:20:42.942 330427 20861 330574 12139 2 10905 2024-12-15 10:07:40.346 2024-12-15 10:07:40.346 330427 20861 330494 12245 1 10906 2025-02-25 21:10:51.113 2025-02-25 21:10:51.113 415904 21585 416799 21003 4 10907 2025-02-25 08:50:46.538 2025-02-25 08:50:46.538 415904 21585 415918 7992 2 10908 2025-02-25 08:48:41.259 2025-02-25 08:48:41.259 415904 21585 415915 15978 1 10909 2025-02-25 08:58:22.67 2025-02-25 08:58:22.67 415904 21585 415928 9438 3 10910 2025-03-12 03:53:10.711 2025-03-12 03:53:10.711 330698 1003 434596 21521 2 10911 2025-03-13 13:02:38.075 2025-03-13 13:02:38.075 330698 1003 436300 10821 3 10912 2025-03-13 01:06:34.526 2025-03-13 01:06:34.526 330698 1003 435793 21062 3 10913 2025-03-13 04:29:28.935 2025-03-13 04:29:28.935 330698 1003 435890 21139 4 10914 2025-03-13 06:49:12.205 2025-03-13 06:49:12.205 330698 1003 435961 20409 5 10915 2025-03-13 08:53:13.335 2025-03-13 08:53:13.335 330698 1003 436034 7913 5 10916 2025-03-13 13:09:18.715 2025-03-13 13:09:18.715 330698 1003 436309 9183 6 10917 2024-12-15 13:32:03.652 2024-12-15 13:32:03.652 330698 1003 330790 21803 2 10918 2024-12-15 13:15:39.062 2024-12-15 13:15:39.062 330698 1003 330774 4167 1 10919 2024-12-20 16:21:56.941 2024-12-20 16:21:56.941 335484 736 336318 940 8 10920 2024-12-20 04:06:41.133 2024-12-20 04:06:41.133 335484 736 335791 17095 6 10921 2024-12-19 22:38:47.193 2024-12-19 22:38:47.193 335484 736 335690 21734 3 10922 2024-12-19 19:49:15.297 2024-12-19 19:49:15.297 335484 736 335562 1010 1 10923 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 335484 736 455286 11678 15 10924 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 335484 736 454254 5725 14 10925 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 335484 736 453900 9336 12 10926 2025-03-25 14:21:50.545 2025-03-25 14:21:50.545 335484 736 452856 2088 10 10927 2024-12-20 16:27:09.659 2024-12-20 16:27:09.659 335484 736 336322 19668 9 10928 2024-12-20 16:00:42.347 2024-12-20 16:00:42.347 335484 736 336308 20205 7 10929 2024-12-19 23:36:55.366 2024-12-19 23:36:55.366 335484 736 335721 20745 4 10930 2025-03-25 18:58:25.208 2025-03-25 18:58:25.208 335484 736 453420 2293 11 10931 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 335484 736 455302 20511 16 10932 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 335484 736 453968 19332 13 10933 2024-12-20 00:03:02.338 2024-12-20 00:03:02.338 335484 736 335729 2431 5 10934 2024-12-19 20:15:28.241 2024-12-19 20:15:28.241 335484 736 335591 10016 2 10935 2025-03-19 12:32:35.402 2025-03-19 12:32:35.402 337252 20691 443590 4395 2 10936 2025-03-19 12:29:48.26 2025-03-19 12:29:48.26 337252 20691 443584 20588 1 10937 2024-12-26 17:43:02.245 2024-12-26 17:43:02.245 344237 13216 344372 6777 1 10938 2024-12-27 09:52:05.022 2024-12-27 09:52:05.022 344237 13216 345255 14607 1 10939 2025-02-12 12:06:54.781 2025-02-12 12:06:54.781 400447 9307 400645 20981 1 10940 2025-02-13 05:19:07.197 2025-02-13 05:19:07.197 400447 9307 401517 1038 4 10941 2025-02-13 11:57:59.755 2025-02-13 11:57:59.755 400447 9307 401795 19980 2 10942 2025-02-12 13:16:26.592 2025-02-12 13:16:26.592 400447 9307 400711 12821 1 10943 2025-02-12 21:05:08.907 2025-02-12 21:05:08.907 400447 9307 401285 14169 2 10944 2025-02-12 22:03:21.403 2025-02-12 22:03:21.403 400447 9307 401317 20841 3 10945 2025-02-18 11:42:17.835 2025-02-18 11:42:17.835 407790 4650 407794 21383 2 10946 2025-02-18 11:40:48.355 2025-02-18 11:40:48.355 407790 4650 407793 21444 1 10947 2025-01-03 05:50:04.022 2025-01-03 05:50:04.022 353322 10056 354472 1469 2 10948 2025-01-03 05:27:29.18 2025-01-03 05:27:29.18 353322 10056 354465 21051 1 10949 2025-03-12 14:01:44.061 2025-03-12 14:01:44.061 353322 10056 435157 16350 3 10950 2025-03-12 14:02:55.534 2025-03-12 14:02:55.534 354366 634 435161 21585 1 10951 2025-03-09 14:55:41.376 2025-03-09 14:55:41.376 356162 15408 430991 5522 3 10952 2025-03-02 07:58:42.927 2025-03-02 07:58:42.927 356162 15408 422025 1751 2 10953 2025-01-04 21:32:42.071 2025-01-04 21:32:42.071 356162 15408 356269 11516 1 10954 2025-02-20 17:29:16.372 2025-02-20 17:29:16.372 410615 18601 410793 13763 2 10955 2025-02-20 16:34:48.721 2025-02-20 16:34:48.721 410615 18601 410721 14939 1 10956 2025-03-15 00:42:24.906 2025-03-15 00:42:24.906 368115 21442 437892 18306 2 10957 2025-01-14 15:04:05.865 2025-01-14 15:04:05.865 368115 21442 368174 21218 1 10958 2025-01-30 16:39:29.457 2025-01-30 16:39:29.457 385662 17526 386140 11750 4 10959 2025-01-30 16:39:14.125 2025-01-30 16:39:14.125 385662 17526 386138 20864 3 10960 2025-01-30 17:29:20.54 2025-01-30 17:29:20.54 385662 17526 386199 919 5 10961 2025-01-30 16:20:52.157 2025-01-30 16:20:52.157 385662 17526 386121 20776 2 10962 2025-03-01 15:09:24.705 2025-03-01 15:09:24.705 385662 17526 421301 11417 6 10963 2025-01-30 14:12:24.724 2025-01-30 14:12:24.724 385662 17526 385905 2367 1 10964 2025-02-18 07:52:11.838 2025-02-18 07:52:11.838 404393 21402 407563 18219 2 10965 2025-02-17 20:44:07.413 2025-02-17 20:44:07.413 404393 21402 407218 18956 1 10966 2025-03-12 18:26:48.639 2025-03-12 18:26:48.639 429301 18231 435493 9261 1 10967 2025-03-19 11:11:44.122 2025-03-19 11:11:44.122 429301 18231 443458 17535 1 10968 2025-03-13 06:18:53.046 2025-03-13 06:18:53.046 386322 12744 435949 11873 1 10969 2025-02-10 20:47:59.884 2025-02-10 20:47:59.884 395051 20117 398753 19463 1 10970 2025-03-18 19:14:38.922 2025-03-18 19:14:38.922 395051 20117 442739 21090 2 10971 2025-02-08 16:05:29.108 2025-02-08 16:05:29.108 395348 5597 395604 20849 1 10972 2025-02-15 20:15:40.004 2025-02-15 20:15:40.004 395348 5597 404371 18011 3 10973 2025-02-08 20:40:32.843 2025-02-08 20:40:32.843 395348 5597 395841 21356 2 10974 2025-02-16 00:05:49.268 2025-02-16 00:05:49.268 395906 1817 404517 11609 2 10975 2025-02-08 22:06:50.603 2025-02-08 22:06:50.603 395906 1817 395918 989 1 10976 2025-02-15 06:39:12.622 2025-02-15 06:39:12.622 396409 3360 403733 20019 2 10977 2025-02-15 06:17:35.223 2025-02-15 06:17:35.223 396409 3360 403724 651 1 10978 2025-02-15 23:13:21.122 2025-02-15 23:13:21.122 400261 5758 404493 15239 2 10979 2025-02-12 02:09:14.378 2025-02-12 02:09:14.378 400261 5758 400300 7674 1 10980 2025-02-12 07:06:03.144 2025-02-12 07:06:03.144 400261 5758 400395 13547 1 10981 2025-02-15 23:13:58.978 2025-02-15 23:13:58.978 400261 5758 404494 2195 2 10982 2025-02-15 23:14:40.941 2025-02-15 23:14:40.941 400261 5758 404495 2204 2 10983 2025-02-12 04:43:30.149 2025-02-12 04:43:30.149 400261 5758 400350 20681 1 10984 2025-03-19 12:48:20 2025-03-19 12:48:20 432247 11967 443642 1426 1 10985 2025-03-01 13:46:07.085 2025-03-01 13:46:07.085 421121 909 421206 14731 3 10986 2025-03-01 13:43:02.895 2025-03-01 13:43:02.895 421121 909 421199 1472 2 10987 2025-03-01 15:21:40.145 2025-03-01 15:21:40.145 421121 909 421320 14168 4 10988 2025-03-01 13:54:21.533 2025-03-01 13:54:21.533 421121 909 421220 15728 2 10989 2025-03-01 15:55:01.354 2025-03-01 15:55:01.354 421121 909 421370 19826 5 10990 2025-03-01 12:16:15.724 2025-03-01 12:16:15.724 421121 909 421122 7827 1 10991 2025-02-16 01:21:36.491 2025-02-16 01:21:36.491 404521 2022 404580 13399 2 10992 2025-02-16 02:56:50.376 2025-02-16 02:56:50.376 404521 2022 404624 21249 1 10993 2025-02-16 03:18:51.17 2025-02-16 03:18:51.17 404521 2022 404633 739 2 10994 2025-02-16 00:46:31.205 2025-02-16 00:46:31.205 404521 2022 404548 21815 1 10995 2025-02-13 13:16:11.712 2025-02-13 13:16:11.712 401907 16296 401944 18068 1 10996 2025-02-14 10:53:55.561 2025-02-14 10:53:55.561 401907 16296 403006 19303 2 10997 2025-02-12 20:08:01.902 2025-02-12 20:08:01.902 400758 13878 401236 17517 2 10998 2025-02-12 14:46:46.209 2025-02-12 14:46:46.209 400758 13878 400844 21518 1 10999 2025-02-13 14:16:33.119 2025-02-13 14:16:33.119 400908 21212 402034 1705 1 11000 2025-02-13 14:37:46.943 2025-02-13 14:37:46.943 400908 21212 402069 9349 2 11001 2025-02-12 19:17:43.638 2025-02-12 19:17:43.638 400943 19117 401183 20751 1 11002 2025-02-13 22:42:39.676 2025-02-13 22:42:39.676 400943 19117 402676 17011 5 11003 2025-02-13 08:03:12.367 2025-02-13 08:03:12.367 400943 19117 401595 6030 3 11004 2025-02-12 22:00:29.444 2025-02-12 22:00:29.444 400943 19117 401314 19813 2 11005 2025-02-14 01:43:15.165 2025-02-14 01:43:15.165 400943 19117 402758 21455 6 11006 2025-02-13 14:26:10.392 2025-02-13 14:26:10.392 400943 19117 402042 17046 4 11007 2025-02-12 19:43:20.657 2025-02-12 19:43:20.657 401076 20816 401207 701 2 11008 2025-02-12 21:08:14.398 2025-02-12 21:08:14.398 401076 20816 401289 18528 3 11009 2025-02-12 21:59:16.229 2025-02-12 21:59:16.229 401076 20816 401312 15139 3 11010 2025-02-12 21:12:32.095 2025-02-12 21:12:32.095 401076 20816 401292 10986 2 11011 2025-02-12 19:21:49.591 2025-02-12 19:21:49.591 401076 20816 401192 21180 1 11012 2025-02-12 20:43:18.927 2025-02-12 20:43:18.927 401076 20816 401277 925 1 11013 2025-02-12 22:46:16.475 2025-02-12 22:46:16.475 401166 1261 401333 15703 1 11014 2025-02-13 10:26:32.587 2025-02-13 10:26:32.587 401166 1261 401697 7983 2 11015 2025-02-13 04:57:54.855 2025-02-13 04:57:54.855 401458 7960 401500 1307 2 11016 2025-02-13 05:17:47.767 2025-02-13 05:17:47.767 401458 7960 401513 1122 3 11017 2025-02-13 04:48:38.35 2025-02-13 04:48:38.35 401458 7960 401493 691 1 11018 2025-02-13 05:20:07.369 2025-02-13 05:20:07.369 401458 7960 401519 14705 4 11019 2025-02-13 09:39:54.94 2025-02-13 09:39:54.94 401458 7960 401652 2459 5 11020 2025-02-13 10:44:38.637 2025-02-13 10:44:38.637 401516 15463 401719 21148 3 11021 2025-02-13 06:32:51.492 2025-02-13 06:32:51.492 401516 15463 401552 21710 2 11022 2025-02-13 06:19:10.19 2025-02-13 06:19:10.19 401516 15463 401544 1638 1 11023 2025-02-13 06:45:15.53 2025-02-13 06:45:15.53 401516 15463 401560 5961 1 11024 2025-02-13 10:19:03.472 2025-02-13 10:19:03.472 401516 15463 401689 11938 2 11025 2025-02-13 10:18:32.216 2025-02-13 10:18:32.216 401516 15463 401688 8416 4 11026 2025-02-13 06:38:38.441 2025-02-13 06:38:38.441 401516 15463 401557 16230 3 11027 2025-02-13 10:19:16.258 2025-02-13 10:19:16.258 401516 15463 401690 9166 2 11028 2025-02-13 06:50:44.595 2025-02-13 06:50:44.595 401516 15463 401563 1454 1 11029 2025-02-18 05:14:50.683 2025-02-18 05:14:50.683 401553 11477 407506 1584 1 11030 2025-02-18 05:18:40.874 2025-02-18 05:18:40.874 401553 11477 407507 2342 2 11031 2025-02-15 15:16:34.323 2025-02-15 15:16:34.323 402119 17638 404128 5661 2 11032 2025-02-13 15:25:52.988 2025-02-13 15:25:52.988 402119 17638 402168 17541 1 11033 2025-02-13 18:47:04.763 2025-02-13 18:47:04.763 402228 21455 402472 638 2 11034 2025-02-13 18:38:00.721 2025-02-13 18:38:00.721 402228 21455 402466 1273 1 11035 2025-02-13 16:54:35.337 2025-02-13 16:54:35.337 402259 5865 402281 19193 2 11036 2025-02-13 16:40:16.868 2025-02-13 16:40:16.868 402259 5865 402261 2776 1 11037 2025-02-13 18:00:42.109 2025-02-13 18:00:42.109 402389 8326 402399 5708 1 11038 2025-02-13 18:09:16.661 2025-02-13 18:09:16.661 402389 8326 402415 20614 3 11039 2025-02-13 18:05:21.685 2025-02-13 18:05:21.685 402389 8326 402408 7960 2 11040 2025-02-13 19:00:11.298 2025-02-13 19:00:11.298 402457 1272 402482 12774 1 11041 2025-02-13 22:04:32.016 2025-02-13 22:04:32.016 402457 1272 402650 14905 2 11042 2025-02-15 12:16:45.404 2025-02-15 12:16:45.404 403648 20504 403971 14220 1 11043 2025-02-15 13:34:01.634 2025-02-15 13:34:01.634 403648 20504 404049 628 2 11044 2025-02-15 21:58:28.939 2025-02-15 21:58:28.939 403648 20504 404442 13249 3 11045 2025-02-15 22:17:19.808 2025-02-15 22:17:19.808 403648 20504 404462 15719 4 11046 2025-02-16 01:50:18.224 2025-02-16 01:50:18.224 403648 20504 404598 9796 5 11047 2025-02-16 02:03:14.704 2025-02-16 02:03:14.704 403648 20504 404607 1010 6 11048 2025-03-11 14:57:40.939 2025-03-11 14:57:40.939 432344 13753 434000 15243 3 11049 2025-03-10 11:01:34.87 2025-03-10 11:01:34.87 432344 13753 432455 3342 2 11050 2025-03-10 10:51:47.774 2025-03-10 10:51:47.774 432344 13753 432444 9109 1 11051 2025-03-11 03:27:14.158 2025-03-11 03:27:14.158 432344 13753 433381 21803 2 11052 2025-03-10 17:26:00.88 2025-03-10 17:26:00.88 432344 13753 432932 20906 1 11053 2025-02-13 21:28:24.48 2025-02-13 21:28:24.48 402582 15662 402626 3656 2 11054 2025-02-14 09:20:53.4 2025-02-14 09:20:53.4 402582 15662 402937 7983 2 11055 2025-02-14 08:09:39.072 2025-02-14 08:09:39.072 402582 15662 402890 1474 1 11056 2025-02-14 09:11:44.358 2025-02-14 09:11:44.358 402582 15662 402930 9982 2 11057 2025-02-13 20:51:50.704 2025-02-13 20:51:50.704 402582 15662 402590 11621 1 11058 2025-02-14 09:06:54.172 2025-02-14 09:06:54.172 402582 15662 402921 11621 2 11059 2025-02-14 09:35:00.541 2025-02-14 09:35:00.541 402582 15662 402956 4754 4 11060 2025-02-14 08:08:49.606 2025-02-14 08:08:49.606 402582 15662 402889 6602 1 11061 2025-02-14 05:39:08.471 2025-02-14 05:39:08.471 402582 15662 402822 7827 1 11062 2025-02-14 09:14:31.31 2025-02-14 09:14:31.31 402582 15662 402933 19689 3 11063 2025-02-18 17:21:59.549 2025-02-18 17:21:59.549 407777 999 408295 20683 3 11064 2025-02-18 15:14:13.102 2025-02-18 15:14:13.102 407777 999 408116 3456 1 11065 2025-02-18 15:33:49.03 2025-02-18 15:33:49.03 407777 999 408149 4958 2 11066 2025-02-16 00:38:11.791 2025-02-16 00:38:11.791 402674 21048 404529 21805 5 11067 2025-02-15 21:00:09.39 2025-02-15 21:00:09.39 402674 21048 404401 16176 4 11068 2025-02-15 11:37:34.651 2025-02-15 11:37:34.651 402674 21048 403929 1044 1 11069 2025-02-14 10:36:17.745 2025-02-14 10:36:17.745 402674 21048 402995 4624 2 11070 2025-02-14 09:34:33.729 2025-02-14 09:34:33.729 402674 21048 402955 17976 1 11071 2025-02-15 20:58:41.655 2025-02-15 20:58:41.655 402674 21048 404398 6361 4 11072 2025-02-15 15:21:24.854 2025-02-15 15:21:24.854 402674 21048 404135 17064 3 11073 2025-02-14 13:01:22.816 2025-02-14 13:01:22.816 402674 21048 403115 1236 3 11074 2025-02-15 20:59:21.818 2025-02-15 20:59:21.818 402674 21048 404399 15367 4 11075 2025-02-15 08:40:10 2025-02-15 08:40:10 402674 21048 403817 8168 2 11076 2025-02-15 20:58:17.848 2025-02-15 20:58:17.848 402674 21048 404397 18637 4 11077 2025-02-15 21:00:39.964 2025-02-15 21:00:39.964 402674 21048 404402 11760 2 11078 2025-02-15 12:18:03.031 2025-02-15 12:18:03.031 402674 21048 403974 965 3 11079 2025-02-14 10:30:40.131 2025-02-14 10:30:40.131 402674 21048 402992 11516 2 11080 2025-02-14 18:16:39.63 2025-02-14 18:16:39.63 402674 21048 403365 10280 3 11081 2025-02-14 01:53:16.237 2025-02-14 01:53:16.237 402674 21048 402763 18402 1 11082 2025-02-14 01:35:14.897 2025-02-14 01:35:14.897 402674 21048 402755 9331 1 11083 2025-02-15 08:39:33.476 2025-02-15 08:39:33.476 402674 21048 403816 18265 2 11084 2025-02-14 00:47:50.205 2025-02-14 00:47:50.205 402674 21048 402749 20280 1 11085 2025-02-18 16:54:31.317 2025-02-18 16:54:31.317 408255 18409 408257 20816 1 11086 2025-02-18 17:04:15.53 2025-02-18 17:04:15.53 408255 18409 408275 15146 3 11087 2025-02-18 16:58:31.644 2025-02-18 16:58:31.644 408255 18409 408262 11527 2 11088 2025-02-26 01:53:59.296 2025-02-26 01:53:59.296 416056 16354 417013 17526 4 11089 2025-02-26 03:15:16.782 2025-02-26 03:15:16.782 416056 16354 417048 654 2 11090 2025-02-26 00:52:07.325 2025-02-26 00:52:07.325 416056 16354 416991 9669 3 11091 2025-02-25 15:12:26.182 2025-02-25 15:12:26.182 416056 16354 416382 18412 2 11092 2025-02-25 15:05:10.609 2025-02-25 15:05:10.609 416056 16354 416366 20225 1 11093 2025-02-26 03:48:11.97 2025-02-26 03:48:11.97 416056 16354 417060 1244 5 11094 2025-03-03 20:35:38.484 2025-03-03 20:35:38.484 416056 16354 424107 5806 5 11095 2025-02-25 12:12:29.346 2025-02-25 12:12:29.346 416056 16354 416109 1609 1 11096 2025-02-14 05:55:31.271 2025-02-14 05:55:31.271 402807 647 402836 2013 2 11097 2025-02-14 05:51:51.839 2025-02-14 05:51:51.839 402807 647 402830 684 1 11098 2025-02-14 12:17:09.812 2025-02-14 12:17:09.812 403058 2681 403067 10302 1 11099 2025-02-14 12:18:48.233 2025-02-14 12:18:48.233 403058 2681 403070 17541 2 11100 2025-02-14 15:01:43.096 2025-02-14 15:01:43.096 403063 762 403228 13544 2 11101 2025-02-14 16:01:20.329 2025-02-14 16:01:20.329 403063 762 403260 20980 5 11102 2025-02-14 14:46:51.346 2025-02-14 14:46:51.346 403063 762 403213 11038 1 11103 2025-02-14 15:18:57.097 2025-02-14 15:18:57.097 403063 762 403237 1039 3 11104 2025-02-14 15:26:29.929 2025-02-14 15:26:29.929 403063 762 403240 9496 4 11105 2025-02-14 16:03:33.36 2025-02-14 16:03:33.36 403063 762 403263 11165 6 11106 2025-02-14 15:06:15.769 2025-02-14 15:06:15.769 403182 678 403231 16876 2 11107 2025-02-14 14:52:23.361 2025-02-14 14:52:23.361 403182 678 403218 10818 1 11108 2025-02-15 18:34:55.351 2025-02-15 18:34:55.351 403389 8926 404287 21427 1 11109 2025-02-15 19:57:30.715 2025-02-15 19:57:30.715 403389 8926 404362 8985 2 11110 2025-02-15 10:23:22.755 2025-02-15 10:23:22.755 403552 5759 403892 16348 1 11111 2025-03-19 10:46:57.538 2025-03-19 10:46:57.538 442515 16284 443421 16229 1 11112 2025-02-15 21:59:53.323 2025-02-15 21:59:53.323 404114 963 404445 20377 2 11113 2025-02-15 22:07:48.109 2025-02-15 22:07:48.109 404114 963 404452 18174 3 11114 2025-02-15 20:09:02.536 2025-02-15 20:09:02.536 404114 963 404368 886 1 11115 2025-02-26 00:46:44.868 2025-02-26 00:46:44.868 416511 715 416982 16193 2 11116 2025-02-25 23:57:57.595 2025-02-25 23:57:57.595 416511 715 416954 17710 1 11117 2025-02-26 00:48:50.213 2025-02-26 00:48:50.213 416511 715 416986 7760 3 11118 2025-03-11 16:45:09.879 2025-03-11 16:45:09.879 429509 19813 434186 3717 3 11119 2025-03-10 12:44:53.393 2025-03-10 12:44:53.393 429509 19813 432553 21710 2 11120 2025-03-10 09:58:52.813 2025-03-10 09:58:52.813 429509 19813 432405 1002 1 11121 2025-02-16 01:52:42.394 2025-02-16 01:52:42.394 404136 20660 404600 19217 7 11122 2025-02-16 00:43:36.491 2025-02-16 00:43:36.491 404136 20660 404546 16562 6 11123 2025-02-15 19:20:37.58 2025-02-15 19:20:37.58 404136 20660 404332 9845 3 11124 2025-02-15 19:22:43.418 2025-02-15 19:22:43.418 404136 20660 404334 16059 4 11125 2025-02-15 17:18:16.753 2025-02-15 17:18:16.753 404136 20660 404242 21442 2 11126 2025-02-15 21:08:46.209 2025-02-15 21:08:46.209 404136 20660 404411 20616 5 11127 2025-02-15 16:30:23.309 2025-02-15 16:30:23.309 404136 20660 404203 21012 1 11128 2025-03-09 15:21:03.209 2025-03-09 15:21:03.209 430109 21036 431085 18188 2 11129 2025-03-09 06:03:10.782 2025-03-09 06:03:10.782 430109 21036 430351 21494 1 11130 2025-03-12 05:49:26.382 2025-03-12 05:49:26.382 430109 21036 434666 2056 4 11131 2025-03-12 05:50:42.942 2025-03-12 05:50:42.942 430109 21036 434668 657 3 11132 2025-03-12 15:13:16.425 2025-03-12 15:13:16.425 430109 21036 435273 21714 5 11133 2025-03-12 17:29:13.539 2025-03-12 17:29:13.539 430109 21036 435450 20275 6 11134 2025-03-09 15:22:25.586 2025-03-09 15:22:25.586 430109 21036 431086 15408 2 11135 2025-03-12 03:23:43.132 2025-03-12 03:23:43.132 430109 21036 434576 701 3 11136 2025-03-12 15:07:19.297 2025-03-12 15:07:19.297 430109 21036 435265 683 4 11137 2025-03-12 15:08:29.003 2025-03-12 15:08:29.003 430109 21036 435266 946 5 11138 2025-02-17 07:06:14.888 2025-02-17 07:06:14.888 404826 666 406199 11873 2 11139 2025-02-17 05:00:58.727 2025-02-17 05:00:58.727 404826 666 406114 2042 1 11140 2025-02-17 03:01:49.767 2025-02-17 03:01:49.767 405466 897 406078 20198 2 11141 2025-02-16 21:09:35.683 2025-02-16 21:09:35.683 405466 897 405794 19888 1 11142 2025-02-18 09:13:37.874 2025-02-18 09:13:37.874 405466 897 407646 21555 3 11143 2025-02-18 10:19:57.539 2025-02-18 10:19:57.539 405466 897 407718 4035 4 11144 2025-02-17 23:35:32.471 2025-02-17 23:35:32.471 405873 624 407381 20205 2 11145 2025-02-17 01:12:03.489 2025-02-17 01:12:03.489 405873 624 406012 15103 1 11146 2025-02-17 21:04:51.809 2025-02-17 21:04:51.809 406115 21014 407236 21207 3 11147 2025-02-17 20:33:12.22 2025-02-17 20:33:12.22 406115 21014 407198 3409 1 11148 2025-02-17 20:39:45.55 2025-02-17 20:39:45.55 406115 21014 407209 19199 2 11149 2025-02-18 07:43:56.88 2025-02-18 07:43:56.88 406115 21014 407551 10283 5 11150 2025-02-18 01:03:15.901 2025-02-18 01:03:15.901 406115 21014 407425 5112 4 11151 2025-02-18 09:26:56.148 2025-02-18 09:26:56.148 406115 21014 407661 15762 6 11152 2025-02-17 07:45:52.014 2025-02-17 07:45:52.014 406220 5522 406236 21271 1 11153 2025-02-17 08:17:23.544 2025-02-17 08:17:23.544 406220 5522 406274 803 2 11154 2025-02-18 14:01:12.001 2025-02-18 14:01:12.001 406399 626 407979 11866 8 11155 2025-02-18 13:55:19.991 2025-02-18 13:55:19.991 406399 626 407969 660 6 11156 2025-02-17 23:35:03.122 2025-02-17 23:35:03.122 406399 626 407380 17209 1 11157 2025-02-19 01:07:53.931 2025-02-19 01:07:53.931 406399 626 408655 18526 9 11158 2025-02-18 13:49:06.242 2025-02-18 13:49:06.242 406399 626 407957 8985 5 11159 2025-02-18 03:50:48.764 2025-02-18 03:50:48.764 406399 626 407469 20911 2 11160 2025-02-18 13:34:44.748 2025-02-18 13:34:44.748 406399 626 407944 4083 3 11161 2025-02-19 01:21:44.02 2025-02-19 01:21:44.02 406399 626 408657 1122 10 11162 2025-02-18 13:57:26.953 2025-02-18 13:57:26.953 406399 626 407971 21518 7 11163 2025-02-18 13:47:52.065 2025-02-18 13:47:52.065 406399 626 407954 17237 4 11164 2025-02-17 11:33:18.705 2025-02-17 11:33:18.705 406449 10586 406482 20222 1 11165 2025-02-17 23:18:13.623 2025-02-17 23:18:13.623 406449 10586 407362 20906 3 11166 2025-02-17 23:11:22.372 2025-02-17 23:11:22.372 406449 10586 407355 10608 2 11167 2025-03-09 16:02:15.873 2025-03-09 16:02:15.873 406462 1751 431189 2013 1 11168 2025-02-17 23:20:07.046 2025-02-17 23:20:07.046 406540 10549 407367 21060 2 11169 2025-02-17 12:45:57.674 2025-02-17 12:45:57.674 406540 10549 406569 18678 1 11170 2025-02-18 04:10:01.919 2025-02-18 04:10:01.919 407449 21825 407477 17316 1 11171 2025-02-18 16:10:05.651 2025-02-18 16:10:05.651 407449 21825 408186 13174 2 11172 2025-02-18 09:53:22.053 2025-02-18 09:53:22.053 407470 7903 407699 20778 1 11173 2025-02-18 18:30:33.058 2025-02-18 18:30:33.058 407470 7903 408380 20280 3 11174 2025-02-18 13:51:04.486 2025-02-18 13:51:04.486 407470 7903 407961 20663 2 11175 2025-02-18 13:44:48.38 2025-02-18 13:44:48.38 407657 1650 407951 18473 1 11176 2025-02-18 14:45:36.378 2025-02-18 14:45:36.378 407657 1650 408045 656 3 11177 2025-02-18 14:30:13.996 2025-02-18 14:30:13.996 407657 1650 408019 16998 2 11178 2025-02-18 18:51:42.813 2025-02-18 18:51:42.813 407882 7746 408400 20198 3 11179 2025-02-18 14:18:29.705 2025-02-18 14:18:29.705 407882 7746 408003 17157 1 11180 2025-02-18 14:22:59.949 2025-02-18 14:22:59.949 407882 7746 408009 16808 2 11181 2025-02-18 14:59:04.609 2025-02-18 14:59:04.609 407916 1175 408076 16177 1 11182 2025-02-18 15:02:19.454 2025-02-18 15:02:19.454 407916 1175 408087 1465 2 11183 2025-02-18 16:35:01.056 2025-02-18 16:35:01.056 407970 19930 408227 20939 1 11184 2025-02-18 16:39:22.503 2025-02-18 16:39:22.503 407970 19930 408234 16356 2 11185 2025-02-18 18:58:26.396 2025-02-18 18:58:26.396 407970 19930 408406 1173 2 11186 2025-02-18 15:48:12.419 2025-02-18 15:48:12.419 407970 19930 408159 11314 1 11187 2025-03-11 13:07:19.507 2025-03-11 13:07:19.507 433588 6616 433860 4292 1 11188 2025-03-12 00:05:25.401 2025-03-12 00:05:25.401 433588 6616 434480 1478 2 11189 2025-03-12 06:53:57.426 2025-03-12 06:53:57.426 433588 6616 434692 20026 3 11190 2025-03-11 21:04:51.571 2025-03-11 21:04:51.571 433588 6616 434389 16956 2 11191 2025-03-12 12:45:01.034 2025-03-12 12:45:01.034 433588 6616 435068 21422 2 11192 2025-03-11 11:17:16.947 2025-03-11 11:17:16.947 433588 6616 433753 7992 1 11193 2025-03-11 14:42:58.325 2025-03-11 14:42:58.325 433588 6616 433975 14731 1 11194 2025-03-11 18:29:49.275 2025-03-11 18:29:49.275 433588 6616 434276 21670 1 11195 2025-03-11 22:05:14.789 2025-03-11 22:05:14.789 433588 6616 434431 16988 3 11196 2025-03-12 01:22:37.53 2025-03-12 01:22:37.53 433588 6616 434510 14657 3 11197 2025-03-12 02:55:51.722 2025-03-12 02:55:51.722 433588 6616 434559 760 2 11198 2025-03-12 02:57:32.31 2025-03-12 02:57:32.31 433588 6616 434562 7119 2 11199 2025-03-12 07:32:32.947 2025-03-12 07:32:32.947 433588 6616 434721 13361 2 11200 2025-03-12 13:26:48.269 2025-03-12 13:26:48.269 433588 6616 435113 8173 3 11201 2025-03-11 13:20:46.847 2025-03-11 13:20:46.847 433588 6616 433870 1047 1 11202 2025-03-11 21:25:19.572 2025-03-11 21:25:19.572 433588 6616 434400 2088 2 11203 2025-03-11 08:47:45.013 2025-03-11 08:47:45.013 433588 6616 433589 1717 1 11204 2025-02-18 14:34:29.832 2025-02-18 14:34:29.832 408015 2330 408025 1726 1 11205 2025-02-18 14:50:56.809 2025-02-18 14:50:56.809 408015 2330 408061 7913 2 11206 2025-03-09 02:56:28.751 2025-03-09 02:56:28.751 429628 8729 430277 20745 1 11207 2025-03-08 15:05:54.711 2025-03-08 15:05:54.711 429628 8729 429739 18393 1 11208 2025-03-08 23:43:16.12 2025-03-08 23:43:16.12 429628 8729 430208 4238 1 11209 2025-03-09 00:02:24.042 2025-03-09 00:02:24.042 429628 8729 430216 19905 1 11210 2025-03-13 16:34:33.881 2025-03-13 16:34:33.881 429628 8729 436554 19198 2 11211 2025-02-18 23:53:11.516 2025-02-18 23:53:11.516 408520 5520 408619 7668 1 11212 2025-02-19 00:59:00.112 2025-02-19 00:59:00.112 408520 5520 408650 20993 2 11213 2025-02-19 11:53:20.294 2025-02-19 11:53:20.294 408779 18393 409082 836 1 11214 2025-02-20 15:16:45.56 2025-02-20 15:16:45.56 408874 4074 410626 9348 4 11215 2025-02-20 01:02:13.196 2025-02-20 01:02:13.196 408874 4074 409910 2016 1 11216 2025-02-20 11:30:02.28 2025-02-20 11:30:02.28 408874 4074 410235 18525 3 11217 2025-02-20 05:50:29.397 2025-02-20 05:50:29.397 408874 4074 409999 16954 2 11218 2025-02-20 14:24:16.616 2025-02-20 14:24:16.616 409708 20663 410540 3642 3 11219 2025-02-19 20:45:49.342 2025-02-19 20:45:49.342 409708 20663 409760 21349 1 11220 2025-02-20 03:14:09.287 2025-02-20 03:14:09.287 409708 20663 409969 11992 2 11221 2025-02-20 09:44:06.045 2025-02-20 09:44:06.045 410012 10270 410148 13055 3 11222 2025-02-20 09:38:13.286 2025-02-20 09:38:13.286 410012 10270 410143 17209 2 11223 2025-02-20 08:50:08.934 2025-02-20 08:50:08.934 410012 10270 410097 14688 1 11224 2025-02-20 16:36:29.227 2025-02-20 16:36:29.227 410016 11491 410725 16633 2 11225 2025-02-20 16:14:44.623 2025-02-20 16:14:44.623 410016 11491 410700 15200 1 11226 2025-03-11 21:36:53.729 2025-03-11 21:36:53.729 433594 9355 434413 8989 2 11227 2025-03-11 11:11:46.636 2025-03-11 11:11:46.636 433594 9355 433746 16950 1 11228 2025-03-11 19:59:19.21 2025-03-11 19:59:19.21 434280 20998 434347 15526 1 11229 2025-02-20 14:04:46.335 2025-02-20 14:04:46.335 410156 21202 410495 760 2 11230 2025-02-20 13:11:15.674 2025-02-20 13:11:15.674 410156 21202 410391 1650 1 11231 2025-02-20 12:23:55.527 2025-02-20 12:23:55.527 410184 12609 410301 10519 2 11232 2025-02-20 12:14:38.195 2025-02-20 12:14:38.195 410184 12609 410284 5069 1 11233 2025-03-08 20:33:56.046 2025-03-08 20:33:56.046 429642 12169 430104 16542 1 11234 2025-02-20 14:14:49.107 2025-02-20 14:14:49.107 410187 10112 410520 617 2 11235 2025-02-20 13:13:17.907 2025-02-20 13:13:17.907 410187 10112 410397 8459 1 11236 2025-02-20 14:14:59.118 2025-02-20 14:14:59.118 410219 16124 410522 9184 2 11237 2025-02-20 11:24:14.621 2025-02-20 11:24:14.621 410219 16124 410230 5085 1 11238 2025-02-20 11:27:05.404 2025-02-20 11:27:05.404 410219 16124 410232 19829 1 11239 2025-02-20 14:15:19.872 2025-02-20 14:15:19.872 410219 16124 410523 9347 2 11240 2025-02-20 12:26:53.949 2025-02-20 12:26:53.949 410251 18601 410307 11897 1 11241 2025-02-20 12:31:04.974 2025-02-20 12:31:04.974 410251 18601 410310 900 2 11242 2025-02-20 16:49:56.749 2025-02-20 16:49:56.749 410507 7125 410747 5171 6 11243 2025-02-20 16:15:43.158 2025-02-20 16:15:43.158 410507 7125 410703 1428 3 11244 2025-02-20 16:17:43.309 2025-02-20 16:17:43.309 410507 7125 410706 15732 4 11245 2025-02-20 16:08:53.264 2025-02-20 16:08:53.264 410507 7125 410696 21585 1 11246 2025-02-20 16:40:34.341 2025-02-20 16:40:34.341 410507 7125 410731 9537 5 11247 2025-02-20 16:13:54.125 2025-02-20 16:13:54.125 410507 7125 410699 658 2 11248 2025-02-20 15:27:45.334 2025-02-20 15:27:45.334 410559 10554 410641 20133 2 11249 2025-02-20 15:23:29.695 2025-02-20 15:23:29.695 410559 10554 410632 21291 1 11250 2025-02-20 15:39:39.542 2025-02-20 15:39:39.542 410559 10554 410669 19857 5 11251 2025-02-20 15:30:40.18 2025-02-20 15:30:40.18 410559 10554 410651 18468 3 11252 2025-02-20 15:33:08.038 2025-02-20 15:33:08.038 410559 10554 410657 20409 4 11253 2025-03-02 10:26:27.084 2025-03-02 10:26:27.084 410710 2780 422227 1626 2 11254 2025-02-23 19:20:45.994 2025-02-23 19:20:45.994 410710 2780 414274 762 1 11255 2025-03-03 14:35:33.611 2025-03-03 14:35:33.611 423629 16145 423682 1044 2 11256 2025-03-03 14:25:27.508 2025-03-03 14:25:27.508 423629 16145 423670 1596 1 11257 2025-03-03 17:21:28.912 2025-03-03 17:21:28.912 423629 16145 423898 12356 3 11258 2025-02-23 15:13:14.836 2025-02-23 15:13:14.836 413219 17001 414005 18269 2 11259 2025-02-23 05:28:15.006 2025-02-23 05:28:15.006 413219 17001 413352 9331 1 11260 2025-02-23 05:52:33.444 2025-02-23 05:52:33.444 413235 2780 413361 15732 2 11261 2025-02-23 05:30:34.486 2025-02-23 05:30:34.486 413235 2780 413354 21119 1 11262 2025-02-24 10:41:45.907 2025-02-24 10:41:45.907 413235 2780 414840 21247 3 11263 2025-02-23 14:15:50.355 2025-02-23 14:15:50.355 413523 11996 413889 11527 6 11264 2025-03-19 12:59:17.627 2025-03-19 12:59:17.627 413523 11996 443662 19924 8 11265 2025-02-23 14:19:27.294 2025-02-23 14:19:27.294 413523 11996 413897 848 7 11266 2025-02-23 12:17:30.512 2025-02-23 12:17:30.512 413523 11996 413647 981 5 11267 2025-02-23 11:23:26.493 2025-02-23 11:23:26.493 413523 11996 413592 16667 2 11268 2025-02-23 09:58:19.252 2025-02-23 09:58:19.252 413523 11996 413534 11192 1 11269 2025-02-23 12:13:28.052 2025-02-23 12:13:28.052 413523 11996 413640 1030 4 11270 2025-02-23 11:25:43.745 2025-02-23 11:25:43.745 413523 11996 413595 21090 3 11271 2025-02-23 13:44:52.737 2025-02-23 13:44:52.737 413554 8176 413833 5129 2 11272 2025-02-23 13:36:33.138 2025-02-23 13:36:33.138 413554 8176 413815 20205 1 11273 2025-02-23 14:39:05.648 2025-02-23 14:39:05.648 413675 1145 413943 18426 2 11274 2025-02-24 06:39:33.707 2025-02-24 06:39:33.707 413675 1145 414648 736 4 11275 2025-02-24 06:12:53 2025-02-24 06:12:53 413675 1145 414638 20434 3 11276 2025-02-23 19:53:43.531 2025-02-23 19:53:43.531 413675 1145 414319 6136 4 11277 2025-02-23 14:42:29.438 2025-02-23 14:42:29.438 413675 1145 413949 2151 3 11278 2025-02-23 17:33:22.609 2025-02-23 17:33:22.609 413675 1145 414168 1010 2 11279 2025-02-24 09:01:59.271 2025-02-24 09:01:59.271 413675 1145 414728 4862 3 11280 2025-02-23 20:14:51.403 2025-02-23 20:14:51.403 413675 1145 414344 1647 5 11281 2025-02-24 09:20:43.255 2025-02-24 09:20:43.255 413675 1145 414750 11967 6 11282 2025-02-23 15:04:42.891 2025-02-23 15:04:42.891 413675 1145 413991 994 5 11283 2025-02-23 14:36:10.055 2025-02-23 14:36:10.055 413675 1145 413938 1429 3 11284 2025-02-23 14:33:44.859 2025-02-23 14:33:44.859 413675 1145 413935 3979 2 11285 2025-02-23 14:58:38.987 2025-02-23 14:58:38.987 413675 1145 413980 20225 4 11286 2025-02-24 07:30:48.442 2025-02-24 07:30:48.442 413675 1145 414676 9109 2 11287 2025-02-24 08:58:52.015 2025-02-24 08:58:52.015 413675 1145 414726 20062 5 11288 2025-02-23 14:22:52.291 2025-02-23 14:22:52.291 413675 1145 413903 17116 1 11289 2025-02-23 14:46:15.599 2025-02-23 14:46:15.599 413675 1145 413957 7185 3 11290 2025-02-23 17:38:03.45 2025-02-23 17:38:03.45 413675 1145 414177 4128 3 11291 2025-02-24 07:27:12.986 2025-02-24 07:27:12.986 413675 1145 414675 19126 1 11292 2025-02-23 14:11:03.673 2025-02-23 14:11:03.673 413675 1145 413884 8841 1 11293 2025-02-23 20:00:48.237 2025-02-23 20:00:48.237 413675 1145 414328 5776 2 11294 2025-02-23 13:42:40.039 2025-02-23 13:42:40.039 413791 21413 413826 21734 2 11295 2025-02-23 13:46:52.674 2025-02-23 13:46:52.674 413791 21413 413840 19333 3 11296 2025-02-23 13:34:40.79 2025-02-23 13:34:40.79 413791 21413 413811 20687 1 11297 2025-02-23 16:46:08.701 2025-02-23 16:46:08.701 414111 19689 414116 13177 1 11298 2025-02-23 16:53:39.107 2025-02-23 16:53:39.107 414111 19689 414127 9353 2 11299 2025-02-23 16:57:39.454 2025-02-23 16:57:39.454 414111 19689 414138 19292 3 11300 2025-02-24 14:13:33.957 2025-02-24 14:13:33.957 414204 12870 415093 6741 2 11301 2025-02-23 21:42:30.943 2025-02-23 21:42:30.943 414204 12870 414396 8004 1 11302 2025-03-20 23:48:39.833 2025-03-20 23:48:39.833 445941 2749 446117 1802 1 11303 2025-03-21 06:37:19.484 2025-03-21 06:37:19.484 445941 2749 446393 692 2 11304 2025-03-21 10:19:11.705 2025-03-21 10:19:11.705 445941 2749 446526 776 1 11305 2025-02-24 19:39:04.005 2025-02-24 19:39:04.005 415314 15762 415433 7097 1 11306 2025-02-24 19:52:34.568 2025-02-24 19:52:34.568 415314 15762 415459 18430 2 11307 2025-02-24 11:42:12.636 2025-02-24 11:42:12.636 414314 13854 414908 21166 2 11308 2025-02-24 11:53:03.345 2025-02-24 11:53:03.345 414314 13854 414917 1717 3 11309 2025-02-23 19:57:52.948 2025-02-23 19:57:52.948 414314 13854 414324 19198 1 11310 2025-02-25 04:32:26.383 2025-02-25 04:32:26.383 414670 12490 415775 20597 2 11311 2025-02-24 08:21:49.75 2025-02-24 08:21:49.75 414670 12490 414699 21482 1 11312 2025-02-24 15:05:52.833 2025-02-24 15:05:52.833 414755 621 415162 16154 7 11313 2025-02-24 14:22:28.314 2025-02-24 14:22:28.314 414755 621 415104 5646 3 11314 2025-02-24 14:15:52.414 2025-02-24 14:15:52.414 414755 621 415098 21494 2 11315 2025-02-24 19:48:16.361 2025-02-24 19:48:16.361 414755 621 415451 20623 6 11316 2025-02-24 19:28:24.165 2025-02-24 19:28:24.165 414755 621 415418 14552 5 11317 2025-02-24 19:20:59.481 2025-02-24 19:20:59.481 414755 621 415406 17221 4 11318 2025-02-24 19:10:09.643 2025-02-24 19:10:09.643 414755 621 415399 21480 3 11319 2025-02-24 15:08:58.01 2025-02-24 15:08:58.01 414755 621 415166 21672 8 11320 2025-02-24 14:50:10.27 2025-02-24 14:50:10.27 414755 621 415140 18526 6 11321 2025-02-24 14:23:51.978 2025-02-24 14:23:51.978 414755 621 415107 1802 4 11322 2025-02-24 17:51:30.925 2025-02-24 17:51:30.925 414755 621 415331 17535 2 11323 2025-02-24 14:06:39.989 2025-02-24 14:06:39.989 414755 621 415076 21051 1 11324 2025-02-24 14:44:45.046 2025-02-24 14:44:45.046 414755 621 415134 18309 5 11325 2025-02-24 09:52:46.213 2025-02-24 09:52:46.213 414783 16950 414784 10283 1 11326 2025-02-24 09:55:12.219 2025-02-24 09:55:12.219 414783 16950 414786 9985 2 11327 2025-02-24 16:31:15.266 2025-02-24 16:31:15.266 414863 2402 415262 18232 1 11328 2025-02-24 17:56:24.397 2025-02-24 17:56:24.397 414863 2402 415334 21339 2 11329 2025-02-24 13:07:36.202 2025-02-24 13:07:36.202 414984 1060 414997 4027 1 11330 2025-02-24 13:20:15.484 2025-02-24 13:20:15.484 414984 1060 415014 20691 3 11331 2025-02-24 13:17:16.621 2025-02-24 13:17:16.621 414984 1060 415011 9350 2 11332 2025-02-24 21:48:39.465 2025-02-24 21:48:39.465 415012 21520 415567 721 2 11333 2025-02-24 19:32:19.404 2025-02-24 19:32:19.404 415012 21520 415423 15941 1 11334 2025-02-25 13:37:01.311 2025-02-25 13:37:01.311 415012 21520 416217 21603 3 11335 2025-03-12 20:58:32.579 2025-03-12 20:58:32.579 415012 21520 435645 10549 1 11336 2025-02-24 13:26:03.115 2025-02-24 13:26:03.115 415012 21520 415020 9336 1 11337 2025-02-24 21:38:21.421 2025-02-24 21:38:21.421 415012 21520 415559 16229 2 11338 2025-02-24 18:57:39.324 2025-02-24 18:57:39.324 415180 5694 415388 11498 3 11339 2025-02-24 18:55:58.434 2025-02-24 18:55:58.434 415180 5694 415385 762 2 11340 2025-02-24 18:52:56.451 2025-02-24 18:52:56.451 415180 5694 415378 16276 1 11341 2025-02-28 01:46:16.924 2025-02-28 01:46:16.924 419276 16267 419668 20310 1 11342 2025-03-01 19:31:38.433 2025-03-01 19:31:38.433 419276 16267 421604 21287 2 11343 2025-03-14 15:59:40.874 2025-03-14 15:59:40.874 437419 12821 437562 9167 1 11344 2025-03-15 02:40:28.846 2025-03-15 02:40:28.846 437419 12821 437954 8469 2 11345 2025-02-26 02:23:45.4 2025-02-26 02:23:45.4 416536 20655 417025 4570 2 11346 2025-02-25 22:44:47.449 2025-02-25 22:44:47.449 416536 20655 416886 711 3 11347 2025-02-25 18:45:02.915 2025-02-25 18:45:02.915 416536 20655 416660 5175 2 11348 2025-02-25 18:38:53.88 2025-02-25 18:38:53.88 416536 20655 416652 5794 1 11349 2025-02-26 02:11:26.55 2025-02-26 02:11:26.55 416536 20655 417021 20993 1 11350 2025-02-25 21:56:39.692 2025-02-25 21:56:39.692 416590 697 416837 21332 1 11351 2025-02-26 03:37:36.743 2025-02-26 03:37:36.743 416590 697 417056 6471 2 11352 2025-02-26 00:08:03.536 2025-02-26 00:08:03.536 416628 5757 416960 16988 1 11353 2025-02-26 00:21:06.478 2025-02-26 00:21:06.478 416628 5757 416969 21555 2 11354 2025-02-25 19:53:27.765 2025-02-25 19:53:27.765 416648 17797 416730 7395 1 11355 2025-02-26 01:01:28.889 2025-02-26 01:01:28.889 416648 17797 416997 618 2 11356 2022-09-19 21:47:09.385 2022-09-19 21:47:09.385 1588 661 1593 20776 1 11357 2025-02-25 22:21:38.824 2025-02-25 22:21:38.824 416721 9552 416860 14607 3 11358 2025-02-25 20:05:06.806 2025-02-25 20:05:06.806 416721 9552 416740 9758 1 11359 2025-02-25 22:18:58.208 2025-02-25 22:18:58.208 416721 9552 416858 1000 2 11360 2025-03-27 10:51:25.618 2025-03-27 10:51:25.618 426376 8284 455817 18068 2 11361 2025-03-27 09:06:35.593 2025-03-27 09:06:35.593 426376 8284 455689 18678 1 11362 2025-03-21 21:01:42.44 2025-03-21 21:01:42.44 447418 2232 447470 1286 2 11363 2025-03-21 20:48:31.659 2025-03-21 20:48:31.659 447418 2232 447458 891 1 11364 2025-03-22 21:05:06.915 2025-03-22 21:05:06.915 447418 2232 448763 9099 3 11365 2025-03-22 01:34:44.766 2025-03-22 01:34:44.766 447418 2232 447645 19888 2 11366 2025-03-21 23:14:59.116 2025-03-21 23:14:59.116 447418 2232 447565 1602 1 11367 2025-03-03 12:16:01.339 2025-03-03 12:16:01.339 421720 13921 423492 18426 6 11368 2025-03-02 05:35:11.68 2025-03-02 05:35:11.68 421720 13921 421936 13878 4 11369 2025-03-02 05:14:54.733 2025-03-02 05:14:54.733 421720 13921 421925 14452 3 11370 2025-03-02 03:38:58.848 2025-03-02 03:38:58.848 421720 13921 421855 14376 2 11371 2025-03-02 03:04:53.529 2025-03-02 03:04:53.529 421720 13921 421840 13143 1 11372 2025-03-04 02:51:17.72 2025-03-04 02:51:17.72 421720 13921 424363 19537 7 11373 2025-03-04 05:14:48.279 2025-03-04 05:14:48.279 421720 13921 424430 17722 9 11374 2025-03-04 04:44:44.502 2025-03-04 04:44:44.502 421720 13921 424414 654 8 11375 2025-03-03 07:21:08.243 2025-03-03 07:21:08.243 421720 13921 423276 15273 5 11376 2025-02-25 23:53:37.29 2025-02-25 23:53:37.29 416768 6202 416950 1817 2 11377 2025-02-26 00:32:09.57 2025-02-26 00:32:09.57 416768 6202 416976 3371 2 11378 2025-02-26 12:58:06.231 2025-02-26 12:58:06.231 416768 6202 417552 4819 3 11379 2025-02-26 00:08:32.613 2025-02-26 00:08:32.613 416768 6202 416961 4048 1 11380 2025-02-26 02:08:18.169 2025-02-26 02:08:18.169 416768 6202 417016 4062 1 11381 2025-03-03 03:30:26.558 2025-03-03 03:30:26.558 416768 6202 423153 13174 4 11382 2025-02-25 21:01:49.858 2025-02-25 21:01:49.858 416768 6202 416793 1120 3 11383 2025-02-25 20:56:30.188 2025-02-25 20:56:30.188 416768 6202 416786 11145 2 11384 2025-02-25 23:12:31.013 2025-02-25 23:12:31.013 416768 6202 416924 9109 1 11385 2025-02-25 20:53:12.111 2025-02-25 20:53:12.111 416768 6202 416780 17944 1 11386 2025-02-26 03:14:38.114 2025-02-26 03:14:38.114 416768 6202 417047 1784 2 11387 2025-02-26 07:00:29.892 2025-02-26 07:00:29.892 417090 2749 417145 2639 1 11388 2025-03-13 11:20:52.423 2025-03-13 11:20:52.423 417090 2749 436183 14258 2 11389 2025-03-13 11:24:09.373 2025-03-13 11:24:09.373 417090 2749 436187 13575 3 11390 2025-03-01 03:46:19.995 2025-03-01 03:46:19.995 417342 16948 420782 718 3 11391 2025-03-03 20:27:34.86 2025-03-03 20:27:34.86 417342 16948 424093 803 5 11392 2025-03-01 00:32:16.186 2025-03-01 00:32:16.186 417342 16948 420721 17162 1 11393 2025-03-03 17:58:10.124 2025-03-03 17:58:10.124 417342 16948 423923 18225 4 11394 2025-03-03 22:02:03.844 2025-03-03 22:02:03.844 417342 16948 424208 9985 6 11395 2025-03-01 02:27:23.482 2025-03-01 02:27:23.482 417342 16948 420750 5759 2 11396 2025-03-03 04:55:29.904 2025-03-03 04:55:29.904 417471 20660 423195 5752 1 11397 2025-03-03 16:10:27.399 2025-03-03 16:10:27.399 417471 20660 423812 14271 2 11398 2025-03-03 15:52:25.953 2025-03-03 15:52:25.953 417471 20660 423797 14169 1 11399 2025-03-03 20:56:28.838 2025-03-03 20:56:28.838 417471 20660 424142 9758 2 11400 2025-02-26 18:14:33.146 2025-02-26 18:14:33.146 417840 1800 417966 16598 3 11401 2025-02-26 17:15:03.99 2025-02-26 17:15:03.99 417840 1800 417903 5761 1 11402 2025-02-26 17:49:56.397 2025-02-26 17:49:56.397 417840 1800 417941 15577 2 11403 2025-02-27 18:41:50.972 2025-02-27 18:41:50.972 418796 10393 419360 672 1 11404 2025-03-04 05:15:47.423 2025-03-04 05:15:47.423 418796 10393 424431 5752 4 11405 2025-02-28 07:39:46.17 2025-02-28 07:39:46.17 418796 10393 419794 2724 3 11406 2025-02-28 07:01:21.358 2025-02-28 07:01:21.358 418796 10393 419775 10094 2 11407 2025-02-27 20:21:41.71 2025-02-27 20:21:41.71 419296 16684 419475 2709 1 11408 2025-03-01 16:12:07.879 2025-03-01 16:12:07.879 419296 16684 421398 19759 2 11409 2025-03-01 13:09:39.998 2025-03-01 13:09:39.998 419818 20381 421162 11789 2 11410 2025-02-28 14:08:22.311 2025-02-28 14:08:22.311 419818 20381 420137 2326 1 11411 2025-03-03 18:41:41.951 2025-03-03 18:41:41.951 423576 17690 423970 21058 2 11412 2025-03-03 16:18:40.465 2025-03-03 16:18:40.465 423576 17690 423823 11153 1 11413 2025-03-13 17:04:46.319 2025-03-13 17:04:46.319 429078 3304 436579 9921 1 11414 2025-02-28 16:03:53.779 2025-02-28 16:03:53.779 419944 10690 420279 21393 1 11415 2025-03-01 14:23:29.973 2025-03-01 14:23:29.973 419944 10690 421246 646 2 11416 2025-03-01 15:02:18.063 2025-03-01 15:02:18.063 420055 4083 421284 827 2 11417 2025-03-01 18:09:01.181 2025-03-01 18:09:01.181 420055 4083 421514 1008 3 11418 2025-02-28 14:29:41.561 2025-02-28 14:29:41.561 420055 4083 420175 12516 1 11419 2025-03-01 15:07:03.41 2025-03-01 15:07:03.41 420055 4083 421293 12821 3 11420 2025-03-01 12:46:32.283 2025-03-01 12:46:32.283 420055 4083 421148 18068 2 11421 2025-03-01 12:09:10.079 2025-03-01 12:09:10.079 420055 4083 421116 673 1 11422 2025-02-28 14:38:16.019 2025-02-28 14:38:16.019 420178 1039 420189 20563 2 11423 2025-02-28 14:32:58.518 2025-02-28 14:32:58.518 420178 1039 420181 6149 1 11424 2025-03-01 04:35:42.644 2025-03-01 04:35:42.644 420577 721 420794 21228 1 11425 2025-02-28 20:50:03.633 2025-02-28 20:50:03.633 420577 721 420605 20454 2 11426 2025-03-01 13:20:19.622 2025-03-01 13:20:19.622 420577 721 421175 8664 2 11427 2025-02-28 20:11:57.279 2025-02-28 20:11:57.279 420577 721 420585 1814 1 11428 2025-03-03 06:56:31.329 2025-03-03 06:56:31.329 423079 13753 423253 18430 2 11429 2025-03-03 06:45:35.466 2025-03-03 06:45:35.466 423079 13753 423234 15588 1 11430 2025-03-01 13:13:29.613 2025-03-01 13:13:29.613 420635 672 421167 15690 4 11431 2025-03-01 10:25:10.443 2025-03-01 10:25:10.443 420635 672 420987 782 1 11432 2025-03-01 13:27:42.041 2025-03-01 13:27:42.041 420635 672 421180 18772 7 11433 2025-03-01 13:18:41.453 2025-03-01 13:18:41.453 420635 672 421172 19463 5 11434 2025-03-01 13:10:47.677 2025-03-01 13:10:47.677 420635 672 421163 5776 3 11435 2025-03-01 13:22:02.128 2025-03-01 13:22:02.128 420635 672 421176 21139 6 11436 2025-03-01 13:02:25.387 2025-03-01 13:02:25.387 420635 672 421157 9354 2 11437 2025-03-01 11:12:04.064 2025-03-01 11:12:04.064 421018 18177 421029 17976 1 11438 2025-03-01 13:33:36.686 2025-03-01 13:33:36.686 421018 18177 421188 6471 2 11439 2025-03-02 11:19:26.517 2025-03-02 11:19:26.517 421082 1836 422301 1609 2 11440 2025-03-01 15:28:21.751 2025-03-01 15:28:21.751 421082 1836 421334 19005 3 11441 2025-03-01 13:38:00.911 2025-03-01 13:38:00.911 421082 1836 421194 7809 1 11442 2025-03-01 15:05:28.029 2025-03-01 15:05:28.029 421082 1836 421287 5427 2 11443 2025-03-01 13:42:05.691 2025-03-01 13:42:05.691 421082 1836 421198 760 1 11444 2025-03-02 23:30:38.966 2025-03-02 23:30:38.966 421082 1836 423067 11798 3 11445 2025-03-01 19:15:35.72 2025-03-01 19:15:35.72 421123 896 421593 9352 4 11446 2025-03-01 12:30:35.991 2025-03-01 12:30:35.991 421123 896 421130 13042 1 11447 2025-03-01 19:18:08.811 2025-03-01 19:18:08.811 421123 896 421594 10102 5 11448 2025-03-01 14:04:38.555 2025-03-01 14:04:38.555 421123 896 421228 980 3 11449 2025-03-01 13:46:01.803 2025-03-01 13:46:01.803 421123 896 421205 16912 2 11450 2025-03-02 18:27:17.845 2025-03-02 18:27:17.845 422804 652 422844 20102 3 11451 2025-03-02 18:18:29.35 2025-03-02 18:18:29.35 422804 652 422838 8416 2 11452 2025-03-02 18:13:35.796 2025-03-02 18:13:35.796 422804 652 422829 18309 1 11453 2025-03-11 16:00:32.908 2025-03-11 16:00:32.908 433713 4287 434119 21804 1 11454 2025-03-01 19:42:38.25 2025-03-01 19:42:38.25 421549 10273 421613 13169 1 11455 2025-03-01 19:49:30.08 2025-03-01 19:49:30.08 421549 10273 421619 1094 2 11456 2025-03-01 19:14:55.699 2025-03-01 19:14:55.699 421572 7966 421592 2039 2 11457 2025-03-01 19:09:52.452 2025-03-01 19:09:52.452 421572 7966 421588 14503 1 11458 2025-03-02 07:25:04.93 2025-03-02 07:25:04.93 421915 21291 422008 20657 1 11459 2025-03-02 09:59:37.571 2025-03-02 09:59:37.571 421915 21291 422172 12261 3 11460 2025-03-02 11:03:33.481 2025-03-02 11:03:33.481 421915 21291 422287 12808 4 11461 2025-03-02 09:54:12.142 2025-03-02 09:54:12.142 421915 21291 422161 10549 2 11462 2025-03-02 15:17:25.59 2025-03-02 15:17:25.59 422595 18269 422600 14195 1 11463 2025-03-02 15:21:24.56 2025-03-02 15:21:24.56 422595 18269 422613 11670 2 11464 2025-03-02 20:57:55.597 2025-03-02 20:57:55.597 422704 21805 422997 1823 2 11465 2025-03-02 20:02:16.457 2025-03-02 20:02:16.457 422704 21805 422957 4989 1 11466 2025-03-07 16:47:04.786 2025-03-07 16:47:04.786 425959 776 428851 21494 3 11467 2025-03-05 10:21:02.357 2025-03-05 10:21:02.357 425959 776 425972 698 2 11468 2025-03-05 10:16:16.917 2025-03-05 10:16:16.917 425959 776 425966 8713 1 11469 2025-03-03 22:40:08.6 2025-03-03 22:40:08.6 422873 19796 424225 1142 3 11470 2025-03-03 01:09:16.087 2025-03-03 01:09:16.087 422873 19796 423111 11395 2 11471 2025-03-02 19:50:33.035 2025-03-02 19:50:33.035 422873 19796 422949 695 1 11472 2025-03-03 07:28:46.938 2025-03-03 07:28:46.938 423163 5377 423286 6578 3 11473 2025-03-03 07:27:08.655 2025-03-03 07:27:08.655 423163 5377 423284 676 2 11474 2025-03-03 07:23:21.2 2025-03-03 07:23:21.2 423163 5377 423280 17710 1 11475 2025-03-03 11:23:04.222 2025-03-03 11:23:04.222 423438 21164 423439 650 1 11476 2025-03-03 13:09:15.333 2025-03-03 13:09:15.333 423438 21164 423571 622 2 11477 2025-03-03 22:14:03.75 2025-03-03 22:14:03.75 423438 21164 424215 940 3 11478 2025-03-03 23:12:17.188 2025-03-03 23:12:17.188 423438 21164 424239 17798 4 11479 2025-03-03 13:32:39.529 2025-03-03 13:32:39.529 423574 21603 423604 21026 4 11480 2025-03-03 13:29:17.128 2025-03-03 13:29:17.128 423574 21603 423596 1006 2 11481 2025-03-03 13:27:18.411 2025-03-03 13:27:18.411 423574 21603 423594 19906 1 11482 2025-03-03 13:31:34.496 2025-03-03 13:31:34.496 423574 21603 423602 6229 3 11483 2025-03-03 16:23:14.306 2025-03-03 16:23:14.306 423749 795 423835 16842 3 11484 2025-03-03 16:14:27.17 2025-03-03 16:14:27.17 423749 795 423818 16259 2 11485 2025-03-03 15:31:46.93 2025-03-03 15:31:46.93 423749 795 423765 6765 1 11486 2025-03-03 19:03:49.604 2025-03-03 19:03:49.604 423980 17696 423986 13038 1 11487 2025-03-03 23:25:19.231 2025-03-03 23:25:19.231 423980 17696 424253 8173 2 11488 2025-03-04 13:27:36.412 2025-03-04 13:27:36.412 424571 15160 424907 13143 1 11489 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 424571 15160 428687 11395 13 11490 2025-03-04 14:17:08.302 2025-03-04 14:17:08.302 424571 15160 424988 5794 4 11491 2025-03-04 13:40:21.373 2025-03-04 13:40:21.373 424571 15160 424921 21383 2 11492 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 424571 15160 428644 672 12 11493 2025-03-07 13:21:06.213 2025-03-07 13:21:06.213 424571 15160 428619 17011 11 11494 2025-03-07 12:32:36.229 2025-03-07 12:32:36.229 424571 15160 428581 11527 10 11495 2025-03-07 12:08:54.288 2025-03-07 12:08:54.288 424571 15160 428559 8242 9 11496 2025-03-07 09:02:28.716 2025-03-07 09:02:28.716 424571 15160 428417 695 8 11497 2025-03-07 06:59:33.041 2025-03-07 06:59:33.041 424571 15160 428354 802 7 11498 2025-03-07 05:19:58.747 2025-03-07 05:19:58.747 424571 15160 428320 897 6 11499 2025-03-07 05:01:57.371 2025-03-07 05:01:57.371 424571 15160 428312 17991 5 11500 2025-03-04 13:59:29.15 2025-03-04 13:59:29.15 424571 15160 424946 13162 3 11501 2025-03-13 11:25:36.485 2025-03-13 11:25:36.485 425697 21058 436190 17522 1 11502 2025-03-05 04:59:36.559 2025-03-05 04:59:36.559 425699 2204 425712 20965 1 11503 2025-03-19 21:00:14.153 2025-03-19 21:00:14.153 438414 10719 444402 12220 3 11504 2025-03-19 18:11:08.075 2025-03-19 18:11:08.075 438414 10719 444206 3213 2 11505 2025-03-15 22:59:54.04 2025-03-15 22:59:54.04 438414 10719 438795 11716 1 11506 2025-03-06 21:40:23.952 2025-03-06 21:40:23.952 426148 7119 428125 20979 3 11507 2025-03-06 16:53:59.065 2025-03-06 16:53:59.065 426148 7119 427820 21131 2 11508 2025-03-05 16:30:06.856 2025-03-05 16:30:06.856 426148 7119 426472 6430 1 11509 2025-03-13 19:27:23.316 2025-03-13 19:27:23.316 426400 1426 436677 2593 2 11510 2025-03-05 20:32:13.489 2025-03-05 20:32:13.489 426400 1426 426778 20754 1 11511 2025-03-06 13:43:01.937 2025-03-06 13:43:01.937 426635 11760 427554 4989 4 11512 2025-03-06 10:57:34.2 2025-03-06 10:57:34.2 426635 11760 427359 2719 2 11513 2025-03-06 02:52:52.551 2025-03-06 02:52:52.551 426635 11760 427042 19813 1 11514 2025-03-06 13:38:47.865 2025-03-06 13:38:47.865 426635 11760 427548 1261 3 11515 2025-03-06 12:06:47.63 2025-03-06 12:06:47.63 426780 2709 427468 11378 2 11516 2025-03-06 11:58:54.272 2025-03-06 11:58:54.272 426780 2709 427456 20864 1 11517 2025-03-07 05:14:58.828 2025-03-07 05:14:58.828 427039 21166 428319 20623 4 11518 2025-03-06 12:59:07.43 2025-03-06 12:59:07.43 427039 21166 427515 21398 3 11519 2025-03-06 06:34:19.266 2025-03-06 06:34:19.266 427039 21166 427153 1162 2 11520 2025-03-06 04:24:26.783 2025-03-06 04:24:26.783 427039 21166 427074 2309 1 11521 2025-03-19 12:54:22.863 2025-03-19 12:54:22.863 429803 21422 443654 4314 2 11522 2025-03-19 12:48:36.712 2025-03-19 12:48:36.712 429803 21422 443643 11523 1 11523 2025-03-07 14:49:52.32 2025-03-07 14:49:52.32 427718 2508 428728 14278 2 11524 2025-03-07 15:49:25.083 2025-03-07 15:49:25.083 427718 2508 428793 21393 4 11525 2025-03-07 14:56:50.711 2025-03-07 14:56:50.711 427718 2508 428739 12277 3 11526 2025-03-06 21:14:45.993 2025-03-06 21:14:45.993 427718 2508 428104 20924 1 11527 2025-03-12 20:09:56.746 2025-03-12 20:09:56.746 427762 2204 435606 12097 2 11528 2025-03-09 14:21:11.554 2025-03-09 14:21:11.554 427762 2204 430940 14258 1 11529 2025-03-06 17:05:21.059 2025-03-06 17:05:21.059 427091 20829 427833 7773 7 11530 2025-03-06 18:13:04.077 2025-03-06 18:13:04.077 427091 20829 427945 7960 8 11531 2025-03-06 16:27:24.285 2025-03-06 16:27:24.285 427091 20829 427787 695 6 11532 2025-03-06 15:45:34.708 2025-03-06 15:45:34.708 427091 20829 427750 17201 5 11533 2025-03-06 15:24:38.93 2025-03-06 15:24:38.93 427091 20829 427722 1124 4 11534 2025-03-06 13:55:38.125 2025-03-06 13:55:38.125 427091 20829 427574 14357 3 11535 2025-03-06 13:43:52.154 2025-03-06 13:43:52.154 427091 20829 427556 21218 2 11536 2025-03-06 13:32:54.449 2025-03-06 13:32:54.449 427091 20829 427540 4798 1 11537 2025-03-06 11:22:12.166 2025-03-06 11:22:12.166 427112 10591 427389 10690 1 11538 2025-03-06 19:34:57.583 2025-03-06 19:34:57.583 427112 10591 428036 20180 2 11539 2025-03-07 11:35:03.604 2025-03-07 11:35:03.604 427188 775 428531 1717 4 11540 2025-03-06 21:36:12.994 2025-03-06 21:36:12.994 427188 775 428123 17722 3 11541 2025-03-06 18:29:39.457 2025-03-06 18:29:39.457 427188 775 427969 17212 2 11542 2025-03-06 08:01:20.058 2025-03-06 08:01:20.058 427188 775 427211 20120 1 11543 2025-03-06 10:00:36.779 2025-03-06 10:00:36.779 427251 21067 427304 6137 2 11544 2025-03-07 10:33:14.6 2025-03-07 10:33:14.6 427251 21067 428484 1060 2 11545 2025-03-06 16:21:49.407 2025-03-06 16:21:49.407 427251 21067 427780 1723 2 11546 2025-03-06 14:03:47.496 2025-03-06 14:03:47.496 427251 21067 427581 9833 4 11547 2025-03-06 13:51:26.457 2025-03-06 13:51:26.457 427251 21067 427569 2342 2 11548 2025-03-06 13:49:24.023 2025-03-06 13:49:24.023 427251 21067 427567 909 3 11549 2025-03-06 13:51:23.852 2025-03-06 13:51:23.852 427251 21067 427568 7966 1 11550 2025-03-07 06:16:20.218 2025-03-07 06:16:20.218 427251 21067 428340 2016 3 11551 2025-03-06 08:59:35.206 2025-03-06 08:59:35.206 427251 21067 427264 4167 1 11552 2025-03-06 08:50:46.697 2025-03-06 08:50:46.697 427251 21067 427258 2326 2 11553 2025-03-06 08:50:18.694 2025-03-06 08:50:18.694 427251 21067 427257 9307 1 11554 2025-03-07 10:38:19.558 2025-03-07 10:38:19.558 427251 21067 428488 7668 4 11555 2025-03-06 16:48:50.305 2025-03-06 16:48:50.305 427251 21067 427814 15925 4 11556 2025-03-07 04:38:31.7 2025-03-07 04:38:31.7 427251 21067 428302 18865 3 11557 2025-03-06 10:10:09.178 2025-03-06 10:10:09.178 427251 21067 427311 8400 1 11558 2025-03-06 08:48:03.326 2025-03-06 08:48:03.326 427251 21067 427253 10291 1 11559 2025-03-06 10:02:41.783 2025-03-06 10:02:41.783 427251 21067 427306 11038 3 11560 2025-03-07 01:15:29.16 2025-03-07 01:15:29.16 427251 21067 428241 8326 2 11561 2025-03-06 16:45:12.014 2025-03-06 16:45:12.014 427251 21067 427810 9084 2 11562 2025-03-06 15:52:34.044 2025-03-06 15:52:34.044 427251 21067 427760 3504 1 11563 2025-03-06 22:28:34.537 2025-03-06 22:28:34.537 427254 20825 428150 7587 2 11564 2025-03-06 19:24:17.199 2025-03-06 19:24:17.199 427254 20825 428025 1761 1 11565 2025-03-06 14:30:40.737 2025-03-06 14:30:40.737 427401 20913 427607 21119 1 11566 2025-03-11 19:32:58.749 2025-03-11 19:32:58.749 427401 20913 434316 993 2 11567 2025-03-14 23:32:58.673 2025-03-14 23:32:58.673 427527 2583 437845 17976 1 11568 2025-03-15 09:06:06.275 2025-03-15 09:06:06.275 427527 2583 438108 11153 1 11569 2025-03-19 12:05:03.395 2025-03-19 12:05:03.395 427527 2583 443535 2322 2 11570 2025-03-07 15:18:26.158 2025-03-07 15:18:26.158 427552 5057 428761 7654 2 11571 2025-03-07 14:58:36.553 2025-03-07 14:58:36.553 427552 5057 428742 8289 1 11572 2025-03-09 05:37:43.601 2025-03-09 05:37:43.601 430279 4862 430337 714 1 11573 2025-03-09 14:13:59.795 2025-03-09 14:13:59.795 430279 4862 430928 18673 3 11574 2025-03-09 03:17:21.199 2025-03-09 03:17:21.199 430279 4862 430289 2952 1 11575 2025-03-09 15:24:42.614 2025-03-09 15:24:42.614 430279 4862 431089 5500 4 11576 2025-03-09 15:31:48.07 2025-03-09 15:31:48.07 430279 4862 431126 16598 2 11577 2025-03-09 03:18:32.824 2025-03-09 03:18:32.824 430279 4862 430291 896 2 11578 2025-03-21 16:16:01.126 2025-03-21 16:16:01.126 446601 21184 447105 1740 1 11579 2025-03-21 15:11:01.717 2025-03-21 15:11:01.717 446601 21184 447013 11165 1 11580 2025-03-06 15:13:45.937 2025-03-06 15:13:45.937 427628 18178 427697 2710 3 11581 2025-03-06 14:50:16.941 2025-03-06 14:50:16.941 427628 18178 427652 716 1 11582 2025-03-06 15:09:23.896 2025-03-06 15:09:23.896 427628 18178 427692 1697 2 11583 2025-03-06 21:29:11.13 2025-03-06 21:29:11.13 427651 1012 428116 10096 2 11584 2025-03-06 16:42:50.379 2025-03-06 16:42:50.379 427651 1012 427806 1723 1 11585 2025-02-14 23:59:46.748 2025-02-14 23:59:46.748 397438 8648 403561 726 2 11586 2025-02-11 19:12:58.63 2025-02-11 19:12:58.63 397438 8648 399955 8664 1 11587 2025-03-06 22:50:18.882 2025-03-06 22:50:18.882 427777 19637 428169 3213 2 11588 2025-03-06 20:00:48.009 2025-03-06 20:00:48.009 427777 19637 428052 1469 1 11589 2025-03-19 09:13:53.922 2025-03-19 09:13:53.922 428021 4345 443334 16289 1 11590 2025-03-19 11:25:32.571 2025-03-19 11:25:32.571 428021 4345 443472 646 2 11591 2025-03-19 11:29:49.849 2025-03-19 11:29:49.849 428021 4345 443475 13865 3 11592 2025-03-07 03:40:06.54 2025-03-07 03:40:06.54 428205 11477 428284 6602 1 11593 2025-03-07 03:40:43.145 2025-03-07 03:40:43.145 428205 11477 428285 9275 2 11594 2025-03-07 03:41:33.241 2025-03-07 03:41:33.241 428205 11477 428286 4238 2 11595 2025-03-07 08:21:59.655 2025-03-07 08:21:59.655 428205 11477 428395 20993 3 11596 2025-03-09 13:00:03.073 2025-03-09 13:00:03.073 430330 1576 430834 11819 3 11597 2025-03-09 15:16:43.527 2025-03-09 15:16:43.527 430330 1576 431071 21713 2 11598 2025-03-09 10:29:05.911 2025-03-09 10:29:05.911 430330 1576 430567 20599 2 11599 2025-03-09 15:10:13.888 2025-03-09 15:10:13.888 430330 1576 431028 12516 1 11600 2025-03-09 14:22:06.417 2025-03-09 14:22:06.417 430330 1576 430941 13467 4 11601 2025-03-09 14:18:14.203 2025-03-09 14:18:14.203 430330 1576 430936 8664 2 11602 2025-03-09 13:20:48.723 2025-03-09 13:20:48.723 430330 1576 430865 5308 1 11603 2025-03-09 10:19:27.868 2025-03-09 10:19:27.868 430330 1576 430561 2596 1 11604 2025-03-07 02:20:59.27 2025-03-07 02:20:59.27 428236 8459 428274 19806 2 11605 2025-03-07 03:56:04.09 2025-03-07 03:56:04.09 428236 8459 428294 17976 3 11606 2025-03-07 01:10:26.064 2025-03-07 01:10:26.064 428236 8459 428238 8505 1 11607 2025-03-07 07:21:56.158 2025-03-07 07:21:56.158 428292 21422 428368 17064 1 11608 2025-03-07 09:59:35.918 2025-03-07 09:59:35.918 428292 21422 428458 711 2 11609 2025-03-07 09:07:19.666 2025-03-07 09:07:19.666 428292 21422 428422 4173 1 11610 2025-03-07 10:19:08.291 2025-03-07 10:19:08.291 428292 21422 428473 3506 2 11611 2025-03-07 11:31:49.884 2025-03-07 11:31:49.884 428292 21422 428528 12721 4 11612 2025-03-07 10:24:32.283 2025-03-07 10:24:32.283 428292 21422 428477 5306 2 11613 2025-03-07 10:11:50.73 2025-03-07 10:11:50.73 428292 21422 428469 19821 2 11614 2025-03-07 11:23:49.021 2025-03-07 11:23:49.021 428292 21422 428522 21083 4 11615 2025-03-07 13:51:48.615 2025-03-07 13:51:48.615 428292 21422 428665 2327 3 11616 2025-03-07 10:53:25.925 2025-03-07 10:53:25.925 428292 21422 428498 20669 1 11617 2025-03-07 10:23:52.116 2025-03-07 10:23:52.116 428292 21422 428476 628 3 11618 2025-03-07 17:37:21.274 2025-03-07 17:37:21.274 428292 21422 428889 9341 2 11619 2025-03-07 10:22:14.749 2025-03-07 10:22:14.749 428292 21422 428474 20525 3 11620 2025-03-07 11:28:55.52 2025-03-07 11:28:55.52 428292 21422 428526 10611 2 11621 2025-03-07 09:09:09.457 2025-03-07 09:09:09.457 428292 21422 428426 1692 1 11622 2025-03-07 13:55:42.807 2025-03-07 13:55:42.807 428318 17639 428674 19524 2 11623 2025-03-09 00:32:53.818 2025-03-09 00:32:53.818 428318 17639 430236 12976 6 11624 2025-03-09 01:57:32.661 2025-03-09 01:57:32.661 428318 17639 430263 9334 7 11625 2025-03-09 00:09:41.613 2025-03-09 00:09:41.613 428318 17639 430220 19759 5 11626 2025-03-08 14:49:05.509 2025-03-08 14:49:05.509 428318 17639 429725 13406 4 11627 2025-03-08 04:02:26.739 2025-03-08 04:02:26.739 428318 17639 429258 21090 3 11628 2025-03-07 07:59:17.346 2025-03-07 07:59:17.346 428318 17639 428382 746 1 11629 2025-03-07 14:31:33.56 2025-03-07 14:31:33.56 428653 21709 428714 17050 2 11630 2025-03-07 17:54:22.174 2025-03-07 17:54:22.174 428653 21709 428911 1740 2 11631 2025-03-07 13:50:59.973 2025-03-07 13:50:59.973 428653 21709 428662 14688 1 11632 2025-03-07 17:36:38.234 2025-03-07 17:36:38.234 428653 21709 428888 19668 1 11633 2025-03-07 16:09:50.862 2025-03-07 16:09:50.862 428670 19655 428818 16406 2 11634 2025-03-07 14:44:17.354 2025-03-07 14:44:17.354 428670 19655 428723 5129 1 11635 2025-03-07 17:02:57.113 2025-03-07 17:02:57.113 428670 19655 428866 21485 3 11636 2025-03-07 15:34:21.323 2025-03-07 15:34:21.323 428760 5725 428774 11996 3 11637 2025-03-07 15:30:44.39 2025-03-07 15:30:44.39 428760 5725 428769 15526 2 11638 2025-03-07 15:41:16.996 2025-03-07 15:41:16.996 428760 5725 428779 4624 4 11639 2025-03-07 15:26:44.728 2025-03-07 15:26:44.728 428760 5725 428765 14552 1 11640 2025-03-10 10:13:18.809 2025-03-10 10:13:18.809 429644 797 432416 3706 1 11641 2025-03-12 03:08:31.087 2025-03-12 03:08:31.087 429644 797 434570 14552 1 11642 2025-03-10 19:40:22.292 2025-03-10 19:40:22.292 433056 16350 433080 21012 2 11643 2025-03-10 19:37:27.785 2025-03-10 19:37:27.785 433056 16350 433076 1717 1 11644 2025-03-11 00:52:27.073 2025-03-11 00:52:27.073 433056 16350 433333 18557 3 11645 2025-03-09 14:06:51.429 2025-03-09 14:06:51.429 430770 9330 430916 20788 1 11646 2025-03-09 14:10:45.443 2025-03-09 14:10:45.443 430770 9330 430925 9418 2 11647 2025-03-09 15:09:40.366 2025-03-09 15:09:40.366 430489 21334 431023 9333 2 11648 2025-03-09 13:24:01.779 2025-03-09 13:24:01.779 430489 21334 430867 4128 1 11649 2025-03-10 19:39:56.33 2025-03-10 19:39:56.33 430496 9517 433079 18232 3 11650 2025-03-10 00:26:18.986 2025-03-10 00:26:18.986 430496 9517 432114 18901 2 11651 2025-03-09 11:00:44.94 2025-03-09 11:00:44.94 430496 9517 430601 11144 1 11652 2025-03-10 14:46:06.995 2025-03-10 14:46:06.995 430501 16680 432713 664 1 11653 2025-03-12 14:23:57.429 2025-03-12 14:23:57.429 430501 16680 435202 12774 2 11654 2025-03-11 01:39:05.98 2025-03-11 01:39:05.98 432881 16704 433345 2039 2 11655 2025-03-11 23:48:09.759 2025-03-11 23:48:09.759 432881 16704 434474 2529 3 11656 2025-03-12 00:43:59.908 2025-03-12 00:43:59.908 432881 16704 434495 13216 4 11657 2025-03-11 00:31:47.802 2025-03-11 00:31:47.802 432881 16704 433324 19569 1 11658 2025-03-22 21:40:03.812 2025-03-22 21:40:03.812 447453 4118 448781 20586 2 11659 2025-03-22 21:50:39.556 2025-03-22 21:50:39.556 447453 4118 448794 671 3 11660 2025-03-22 16:48:06.739 2025-03-22 16:48:06.739 447453 4118 448518 2748 1 11661 2025-03-09 15:35:20.648 2025-03-09 15:35:20.648 430521 11678 431136 1092 2 11662 2025-03-09 09:47:40.145 2025-03-09 09:47:40.145 430521 11678 430530 4692 1 11663 2025-03-12 12:08:52.737 2025-03-12 12:08:52.737 430532 2519 435024 15103 1 11664 2025-03-09 14:46:18.768 2025-03-09 14:46:18.768 430549 19303 430978 21666 5 11665 2025-03-09 12:25:12.186 2025-03-09 12:25:12.186 430549 19303 430781 721 2 11666 2025-03-09 10:19:17.84 2025-03-09 10:19:17.84 430549 19303 430560 16717 1 11667 2025-03-09 10:29:07.667 2025-03-09 10:29:07.667 430549 19303 430568 19576 1 11668 2025-03-09 14:05:48.984 2025-03-09 14:05:48.984 430549 19303 430912 2583 3 11669 2025-03-09 14:06:51.869 2025-03-09 14:06:51.869 430549 19303 430917 5758 4 11670 2025-03-09 11:10:23.452 2025-03-09 11:10:23.452 430549 19303 430608 802 2 11671 2025-03-09 14:06:28.31 2025-03-09 14:06:28.31 430549 19303 430915 2347 3 11672 2025-03-09 12:32:56.666 2025-03-09 12:32:56.666 430619 19966 430794 13399 1 11673 2025-03-09 13:56:54.057 2025-03-09 13:56:54.057 430619 19966 430906 20849 2 11674 2025-03-09 14:42:13.139 2025-03-09 14:42:13.139 430619 19966 430972 20775 3 11675 2025-03-09 15:10:45.637 2025-03-09 15:10:45.637 430619 19966 431035 19857 4 11676 2025-02-10 16:20:14.763 2025-02-10 16:20:14.763 398382 19806 398392 676 1 11677 2025-02-14 09:15:10.019 2025-02-14 09:15:10.019 398382 19806 402935 20563 2 11678 2025-03-09 12:56:36.18 2025-03-09 12:56:36.18 430795 663 430825 21332 1 11679 2025-03-09 15:48:30.419 2025-03-09 15:48:30.419 430795 663 431157 9426 2 11680 2025-03-13 11:44:07.701 2025-03-13 11:44:07.701 436177 10536 436216 6463 4 11681 2025-03-13 11:37:18.039 2025-03-13 11:37:18.039 436177 10536 436204 16176 2 11682 2025-03-13 11:36:16.172 2025-03-13 11:36:16.172 436177 10536 436203 3439 1 11683 2025-03-13 11:50:47.542 2025-03-13 11:50:47.542 436177 10536 436222 19375 5 11684 2025-03-13 11:42:34.623 2025-03-13 11:42:34.623 436177 10536 436214 716 3 11685 2025-03-13 21:26:21.563 2025-03-13 21:26:21.563 436722 21383 436736 19087 1 11686 2024-12-06 20:13:34.442 2024-12-06 20:13:34.442 321012 20817 321030 20754 1 11687 2025-03-19 12:48:04.812 2025-03-19 12:48:04.812 430854 21577 443640 12102 1 11688 2025-03-10 08:06:16.979 2025-03-10 08:06:16.979 432259 670 432322 19346 1 11689 2025-03-09 15:17:51.435 2025-03-09 15:17:51.435 430993 16432 431074 20901 3 11690 2025-03-09 15:12:17.277 2025-03-09 15:12:17.277 430993 16432 431049 21296 2 11691 2025-03-09 15:20:07.902 2025-03-09 15:20:07.902 430993 16432 431082 18231 4 11692 2025-03-09 15:48:53.15 2025-03-09 15:48:53.15 430993 16432 431158 9337 5 11693 2025-03-09 15:52:13.544 2025-03-09 15:52:13.544 430993 16432 431166 19569 6 11694 2025-03-09 15:07:15.611 2025-03-09 15:07:15.611 430993 16432 431001 20655 1 11695 2025-03-12 12:20:16.569 2025-03-12 12:20:16.569 434013 651 435039 4768 1 11696 2025-03-09 15:48:28.236 2025-03-09 15:48:28.236 431122 13038 431156 16571 2 11697 2025-03-09 15:53:54.853 2025-03-09 15:53:54.853 431122 13038 431168 3642 3 11698 2025-03-09 15:38:17.4 2025-03-09 15:38:17.4 431122 13038 431138 21712 1 11699 2025-03-11 22:52:13.094 2025-03-11 22:52:13.094 432153 692 434459 2519 1 11700 2025-03-10 08:15:52.534 2025-03-10 08:15:52.534 432178 17522 432328 14663 1 11701 2025-03-19 12:53:55.169 2025-03-19 12:53:55.169 439137 11263 443653 6030 2 11702 2025-03-19 12:47:43.072 2025-03-19 12:47:43.072 439137 11263 443637 976 1 11703 2025-03-11 03:19:23.091 2025-03-11 03:19:23.091 432404 714 433376 2775 3 11704 2025-03-10 13:31:41.527 2025-03-10 13:31:41.527 432404 714 432618 21520 1 11705 2025-03-11 00:29:35.931 2025-03-11 00:29:35.931 432404 714 433323 672 2 11706 2025-03-10 17:48:01.675 2025-03-10 17:48:01.675 432884 9166 432966 9921 1 11707 2025-03-12 10:05:56.288 2025-03-12 10:05:56.288 432884 9166 434880 11164 2 11708 2025-03-12 11:21:55.423 2025-03-12 11:21:55.423 432987 18409 434965 20757 1 11709 2025-03-19 13:26:14.566 2025-03-19 13:26:14.566 440663 18232 443707 21131 1 11710 2025-03-11 03:28:02.64 2025-03-11 03:28:02.64 433114 21810 433382 16250 3 11711 2025-03-12 14:17:09.14 2025-03-12 14:17:09.14 433114 21810 435193 726 1 11712 2025-03-11 00:26:40.261 2025-03-11 00:26:40.261 433114 21810 433321 2213 2 11713 2025-03-11 00:21:29.158 2025-03-11 00:21:29.158 433114 21810 433317 21514 1 11714 2025-03-16 17:35:30.514 2025-03-16 17:35:30.514 439139 9833 439834 10302 2 11715 2025-03-19 12:59:31.526 2025-03-19 12:59:31.526 439139 9833 443665 2961 2 11716 2025-03-16 10:05:55.183 2025-03-16 10:05:55.183 439139 9833 439157 805 1 11717 2025-03-18 18:00:51.266 2025-03-18 18:00:51.266 439263 19494 442637 16126 4 11718 2025-03-18 17:59:00.605 2025-03-18 17:59:00.605 439263 19494 442634 18177 3 11719 2025-03-18 16:37:04.989 2025-03-18 16:37:04.989 439263 19494 442558 3461 1 11720 2025-03-18 16:40:20.36 2025-03-18 16:40:20.36 439263 19494 442562 10102 2 11721 2025-03-12 02:59:03.391 2025-03-12 02:59:03.391 433217 6136 434563 10554 1 11722 2025-03-11 09:00:48.347 2025-03-11 09:00:48.347 433217 6136 433607 699 3 11723 2025-03-11 01:40:03.08 2025-03-11 01:40:03.08 433217 6136 433347 18232 1 11724 2025-03-11 09:06:28.085 2025-03-11 09:06:28.085 433217 6136 433613 17237 4 11725 2025-03-11 05:15:26.605 2025-03-11 05:15:26.605 433217 6136 433444 14385 2 11726 2025-03-14 13:18:50.88 2025-03-14 13:18:50.88 437301 10586 437371 16684 1 11727 2025-03-14 14:53:29.588 2025-03-14 14:53:29.588 437301 10586 437479 18734 2 11728 2025-03-14 16:08:31.338 2025-03-14 16:08:31.338 437301 10586 437564 1003 3 11729 2025-03-14 16:32:23.171 2025-03-14 16:32:23.171 437301 10586 437585 17162 4 11730 2025-03-19 12:07:09.402 2025-03-19 12:07:09.402 436792 16753 443537 11516 1 11731 2025-03-11 03:40:10.137 2025-03-11 03:40:10.137 433391 11522 433394 1626 1 11732 2025-03-11 05:23:42.763 2025-03-11 05:23:42.763 433391 11522 433452 4692 1 11733 2025-03-13 04:02:33.191 2025-03-13 04:02:33.191 433391 11522 435880 20094 2 11734 2025-03-11 15:40:01.477 2025-03-11 15:40:01.477 433403 8870 434082 21048 2 11735 2025-03-11 15:48:30.8 2025-03-11 15:48:30.8 433403 8870 434101 5761 3 11736 2025-03-12 03:41:25.073 2025-03-12 03:41:25.073 433403 8870 434587 1817 3 11737 2025-03-11 15:42:06.291 2025-03-11 15:42:06.291 433403 8870 434088 12819 2 11738 2025-03-11 06:17:38.804 2025-03-11 06:17:38.804 433403 8870 433477 1571 1 11739 2025-03-11 04:33:47.684 2025-03-11 04:33:47.684 433403 8870 433421 18865 1 11740 2025-03-11 20:39:29.554 2025-03-11 20:39:29.554 433679 19570 434367 20434 3 11741 2025-03-12 03:17:52.737 2025-03-12 03:17:52.737 433679 19570 434574 6148 4 11742 2025-03-11 14:37:22.633 2025-03-11 14:37:22.633 433679 19570 433967 15213 2 11743 2025-03-11 14:33:29.704 2025-03-11 14:33:29.704 433679 19570 433956 21334 1 11744 2025-03-12 10:29:43.037 2025-03-12 10:29:43.037 433432 21208 434907 19375 1 11745 2025-03-11 20:10:16.444 2025-03-11 20:10:16.444 433435 761 434353 8448 2 11746 2025-03-11 14:30:00.374 2025-03-11 14:30:00.374 433435 761 433950 20481 1 11747 2025-03-11 23:37:03.645 2025-03-11 23:37:03.645 433476 1064 434471 2710 3 11748 2025-03-11 06:28:09.342 2025-03-11 06:28:09.342 433476 1064 433483 2710 1 11749 2025-03-11 06:40:14.309 2025-03-11 06:40:14.309 433476 1064 433487 14909 2 11750 2025-03-11 19:06:30.284 2025-03-11 19:06:30.284 433578 10638 434295 9356 1 11751 2025-03-12 12:47:03.577 2025-03-12 12:47:03.577 433796 976 435074 658 1 11752 2025-03-22 10:33:04.717 2025-03-22 10:33:04.717 447566 980 447994 15728 2 11753 2025-03-21 23:54:28.03 2025-03-21 23:54:28.03 447566 980 447585 20554 1 11754 2025-03-22 22:09:02.881 2025-03-22 22:09:02.881 447566 980 448808 9364 2 11755 2025-03-22 01:03:07.432 2025-03-22 01:03:07.432 447566 980 447626 9758 1 11756 2025-03-22 22:06:50.642 2025-03-22 22:06:50.642 447566 980 448804 19527 1 11757 2025-03-11 12:21:14.638 2025-03-11 12:21:14.638 433805 14258 433821 21218 1 11758 2025-03-11 21:04:35.958 2025-03-11 21:04:35.958 433832 17172 434387 14503 1 11759 2025-03-12 03:32:12.019 2025-03-12 03:32:12.019 433832 17172 434582 4064 2 11760 2025-03-12 21:13:43.391 2025-03-12 21:13:43.391 433886 20099 435656 1647 1 11761 2025-03-12 03:36:38.452 2025-03-12 03:36:38.452 434189 688 434586 3717 1 11762 2025-03-12 06:31:28.752 2025-03-12 06:31:28.752 434189 688 434679 998 2 11763 2025-03-12 10:47:47.995 2025-03-12 10:47:47.995 434795 10661 434930 13365 2 11764 2025-03-12 10:41:48.664 2025-03-12 10:41:48.664 434795 10661 434923 1237 7 11765 2025-03-12 11:12:10.446 2025-03-12 11:12:10.446 434795 10661 434952 14515 1 11766 2025-03-12 09:23:26.867 2025-03-12 09:23:26.867 434795 10661 434842 13767 1 11767 2025-03-12 08:49:00.984 2025-03-12 08:49:00.984 434795 10661 434798 21212 1 11768 2025-03-12 08:50:09.305 2025-03-12 08:50:09.305 434795 10661 434801 1433 1 11769 2025-03-12 08:53:14.059 2025-03-12 08:53:14.059 434795 10661 434805 769 3 11770 2025-03-12 08:58:53.494 2025-03-12 08:58:53.494 434795 10661 434819 15226 2 11771 2025-03-12 09:05:54.069 2025-03-12 09:05:54.069 434795 10661 434829 10818 4 11772 2025-03-12 10:26:36.343 2025-03-12 10:26:36.343 434795 10661 434902 15556 1 11773 2025-03-12 09:50:07.516 2025-03-12 09:50:07.516 434795 10661 434866 4570 2 11774 2025-03-12 10:05:47.075 2025-03-12 10:05:47.075 434795 10661 434879 9295 4 11775 2025-03-12 10:16:39.234 2025-03-12 10:16:39.234 434795 10661 434894 4487 5 11776 2025-03-12 10:38:07.409 2025-03-12 10:38:07.409 434795 10661 434915 18393 2 11777 2025-03-12 10:39:46.784 2025-03-12 10:39:46.784 434795 10661 434919 21263 2 11778 2025-03-12 10:40:46.215 2025-03-12 10:40:46.215 434795 10661 434921 17526 6 11779 2025-03-12 14:18:26.613 2025-03-12 14:18:26.613 434795 10661 435194 12911 3 11780 2025-03-12 12:45:00.812 2025-03-12 12:45:00.812 434795 10661 435067 1729 1 11781 2025-03-12 12:53:38.62 2025-03-12 12:53:38.62 434795 10661 435082 650 1 11782 2025-03-12 14:09:41.756 2025-03-12 14:09:41.756 434795 10661 435179 640 2 11783 2025-03-12 13:51:35.294 2025-03-12 13:51:35.294 434795 10661 435147 5359 1 11784 2025-03-12 15:41:39.947 2025-03-12 15:41:39.947 434795 10661 435325 16939 7 11785 2025-03-12 15:44:13.381 2025-03-12 15:44:13.381 434795 10661 435330 1769 8 11786 2025-03-12 17:15:06.024 2025-03-12 17:15:06.024 434795 10661 435434 14503 11 11787 2025-03-12 20:45:42.658 2025-03-12 20:45:42.658 434795 10661 435636 1705 2 11788 2025-03-13 00:15:13.654 2025-03-13 00:15:13.654 434795 10661 435765 14080 2 11789 2025-03-13 01:02:32.684 2025-03-13 01:02:32.684 434795 10661 435790 10862 2 11790 2025-03-13 10:48:56.353 2025-03-13 10:48:56.353 434795 10661 436138 4989 3 11791 2025-03-13 12:17:30.888 2025-03-13 12:17:30.888 434795 10661 436250 18829 4 11792 2025-03-13 14:32:21.754 2025-03-13 14:32:21.754 434795 10661 436403 20577 2 11793 2025-03-12 14:06:47.419 2025-03-12 14:06:47.419 434795 10661 435171 21400 1 11794 2025-03-12 15:24:46.834 2025-03-12 15:24:46.834 434795 10661 435299 19189 2 11795 2025-03-12 15:32:27.574 2025-03-12 15:32:27.574 434795 10661 435308 5978 2 11796 2025-03-12 15:38:13.3 2025-03-12 15:38:13.3 434795 10661 435318 5003 3 11797 2025-03-12 18:45:02.282 2025-03-12 18:45:02.282 434795 10661 435517 1626 1 11798 2025-03-12 18:58:55.648 2025-03-12 18:58:55.648 434795 10661 435527 9916 3 11799 2025-03-12 19:24:01.18 2025-03-12 19:24:01.18 434795 10661 435549 13547 2 11800 2025-03-12 20:45:58.647 2025-03-12 20:45:58.647 434795 10661 435637 1638 1 11801 2025-03-13 00:27:58.21 2025-03-13 00:27:58.21 434795 10661 435771 20616 4 11802 2025-03-13 04:27:02.554 2025-03-13 04:27:02.554 434795 10661 435888 20911 3 11803 2025-03-13 07:06:16.799 2025-03-13 07:06:16.799 434795 10661 435965 21620 1 11804 2025-03-13 07:31:37.083 2025-03-13 07:31:37.083 434795 10661 435977 10981 2 11805 2025-03-13 07:44:10.965 2025-03-13 07:44:10.965 434795 10661 435984 5069 5 11806 2025-03-13 07:48:29.469 2025-03-13 07:48:29.469 434795 10661 435989 1173 6 11807 2025-03-13 07:49:59.14 2025-03-13 07:49:59.14 434795 10661 435992 9906 8 11808 2025-03-13 07:54:23.712 2025-03-13 07:54:23.712 434795 10661 435996 5852 10 11809 2025-03-12 15:13:31.067 2025-03-12 15:13:31.067 434795 10661 435274 14255 1 11810 2025-03-12 22:14:05.183 2025-03-12 22:14:05.183 434795 10661 435703 15703 1 11811 2025-03-13 07:16:47.133 2025-03-13 07:16:47.133 434795 10661 435969 21357 1 11812 2025-03-13 07:32:15.203 2025-03-13 07:32:15.203 434795 10661 435978 9494 2 11813 2025-03-13 07:36:30.168 2025-03-13 07:36:30.168 434795 10661 435980 13097 3 11814 2025-03-13 07:43:01.449 2025-03-13 07:43:01.449 434795 10661 435983 16442 4 11815 2025-03-13 07:49:00.269 2025-03-13 07:49:00.269 434795 10661 435990 21734 7 11816 2025-03-13 07:49:37.3 2025-03-13 07:49:37.3 434795 10661 435991 16410 7 11817 2025-03-13 07:53:21.496 2025-03-13 07:53:21.496 434795 10661 435995 17157 9 11818 2025-03-12 08:51:01.145 2025-03-12 08:51:01.145 434795 10661 434803 1705 2 11819 2025-03-12 09:23:41.994 2025-03-12 09:23:41.994 434795 10661 434843 13921 4 11820 2025-03-12 09:26:16.949 2025-03-12 09:26:16.949 434795 10661 434845 16653 1 11821 2025-03-12 14:08:49.3 2025-03-12 14:08:49.3 434795 10661 435176 9982 2 11822 2025-03-12 14:25:00.251 2025-03-12 14:25:00.251 434795 10661 435204 19292 4 11823 2025-03-12 15:21:53.533 2025-03-12 15:21:53.533 434795 10661 435294 1836 2 11824 2025-03-12 09:02:16.93 2025-03-12 09:02:16.93 434795 10661 434824 3461 2 11825 2025-03-12 08:48:32.768 2025-03-12 08:48:32.768 434795 10661 434797 5978 1 11826 2025-03-12 08:49:44.935 2025-03-12 08:49:44.935 434795 10661 434799 20220 2 11827 2025-03-12 08:50:07.424 2025-03-12 08:50:07.424 434795 10661 434800 1618 2 11828 2025-03-12 08:53:41.568 2025-03-12 08:53:41.568 434795 10661 434806 18241 1 11829 2025-03-12 08:55:34.65 2025-03-12 08:55:34.65 434795 10661 434811 6777 4 11830 2025-03-12 09:00:37.742 2025-03-12 09:00:37.742 434795 10661 434820 5173 2 11831 2025-03-12 09:03:32.91 2025-03-12 09:03:32.91 434795 10661 434825 787 2 11832 2025-03-12 09:14:39.102 2025-03-12 09:14:39.102 434795 10661 434833 6471 3 11833 2025-03-12 09:45:00.006 2025-03-12 09:45:00.006 434795 10661 434858 17157 5 11834 2025-03-12 09:46:14.498 2025-03-12 09:46:14.498 434795 10661 434859 8416 1 11835 2025-03-12 09:49:11.629 2025-03-12 09:49:11.629 434795 10661 434863 20306 3 11836 2025-03-12 09:52:13.466 2025-03-12 09:52:13.466 434795 10661 434869 683 3 11837 2025-03-12 11:22:52.781 2025-03-12 11:22:52.781 434795 10661 434967 21334 1 11838 2025-03-12 11:40:57.105 2025-03-12 11:40:57.105 434795 10661 434984 15115 1 11839 2025-03-12 12:23:23.893 2025-03-12 12:23:23.893 434795 10661 435041 624 1 11840 2025-03-12 12:42:56.881 2025-03-12 12:42:56.881 434795 10661 435066 2709 2 11841 2025-03-12 12:50:31.633 2025-03-12 12:50:31.633 434795 10661 435079 803 1 11842 2025-03-12 13:03:51.849 2025-03-12 13:03:51.849 434795 10661 435088 15239 1 11843 2025-03-12 13:30:28.356 2025-03-12 13:30:28.356 434795 10661 435117 16301 1 11844 2025-03-12 14:46:49.887 2025-03-12 14:46:49.887 434795 10661 435239 2529 5 11845 2025-03-12 15:20:23.501 2025-03-12 15:20:23.501 434795 10661 435290 21172 6 11846 2025-03-12 15:27:46.299 2025-03-12 15:27:46.299 434795 10661 435304 20220 3 11847 2025-03-12 15:46:51.711 2025-03-12 15:46:51.711 434795 10661 435337 21116 9 11848 2025-03-12 15:52:40.164 2025-03-12 15:52:40.164 434795 10661 435348 6191 10 11849 2025-03-13 01:02:15.06 2025-03-13 01:02:15.06 434795 10661 435789 10398 2 11850 2025-03-13 10:42:26.651 2025-03-13 10:42:26.651 434795 10661 436128 1090 2 11851 2025-03-12 08:47:43.813 2025-03-12 08:47:43.813 434795 10661 434796 18423 1 11852 2025-03-12 08:52:00.266 2025-03-12 08:52:00.266 434795 10661 434804 720 2 11853 2025-03-12 08:58:46.947 2025-03-12 08:58:46.947 434795 10661 434818 16858 3 11854 2025-03-12 09:05:51.836 2025-03-12 09:05:51.836 434795 10661 434828 12097 4 11855 2025-03-18 20:58:44.115 2025-03-18 20:58:44.115 439946 21670 442837 16653 5 11856 2025-03-17 03:06:08.909 2025-03-17 03:06:08.909 439946 21670 440242 18426 1 11857 2025-03-17 21:14:48.343 2025-03-17 21:14:48.343 439946 21670 441240 1720 3 11858 2025-03-18 15:06:50.747 2025-03-18 15:06:50.747 439946 21670 442453 2431 4 11859 2025-03-17 05:45:16.314 2025-03-17 05:45:16.314 439946 21670 440313 10818 2 11860 2025-03-21 14:04:39.754 2025-03-21 14:04:39.754 446822 20734 446864 11522 1 11861 2025-03-21 17:23:22.137 2025-03-21 17:23:22.137 446822 20734 447201 13987 1 11862 2025-03-12 13:01:11.902 2025-03-12 13:01:11.902 435062 15326 435085 20781 1 11863 2025-03-12 13:08:27.43 2025-03-12 13:08:27.43 435062 15326 435093 13217 1 11864 2025-03-14 12:28:08.426 2025-03-14 12:28:08.426 436837 21714 437281 5377 1 11865 2025-03-14 12:41:18.746 2025-03-14 12:41:18.746 436837 21714 437314 11091 2 11866 2025-03-14 03:46:37.819 2025-03-14 03:46:37.819 436934 13587 436937 4173 1 11867 2025-03-14 04:29:14.549 2025-03-14 04:29:14.549 436934 13587 436946 2309 2 11868 2025-03-17 14:37:12.078 2025-03-17 14:37:12.078 440727 13169 440790 959 1 11869 2025-03-19 10:49:54.288 2025-03-19 10:49:54.288 440727 13169 443424 13865 2 11870 2025-03-15 06:21:24.635 2025-03-15 06:21:24.635 437190 889 438022 12609 4 11871 2025-03-14 12:47:03.289 2025-03-14 12:47:03.289 437190 889 437324 20871 2 11872 2025-03-14 12:44:04.086 2025-03-14 12:44:04.086 437190 889 437318 20829 1 11873 2025-03-15 04:50:25.842 2025-03-15 04:50:25.842 437190 889 437986 20495 3 11874 2025-03-19 12:05:54.933 2025-03-19 12:05:54.933 443201 20523 443536 17690 1 11875 2025-03-24 13:09:38.484 2025-03-24 13:09:38.484 450470 998 451236 16912 3 11876 2025-03-24 13:19:51.843 2025-03-24 13:19:51.843 450470 998 451254 20710 4 11877 2025-03-24 13:04:59.613 2025-03-24 13:04:59.613 450470 998 451229 21427 2 11878 2025-03-24 03:59:44.142 2025-03-24 03:59:44.142 450470 998 450576 20495 1 11879 2025-03-14 18:49:35.588 2025-03-14 18:49:35.588 437276 1094 437689 17714 2 11880 2025-03-14 18:46:21.127 2025-03-14 18:46:21.127 437276 1094 437685 16193 1 11881 2025-03-17 18:20:55.539 2025-03-17 18:20:55.539 440422 3456 441061 913 5 11882 2025-03-17 18:02:38.488 2025-03-17 18:02:38.488 440422 3456 441047 11885 4 11883 2025-03-17 11:09:23.002 2025-03-17 11:09:23.002 440422 3456 440538 1195 2 11884 2025-03-17 10:48:56.569 2025-03-17 10:48:56.569 440422 3456 440523 9969 1 11885 2025-03-17 11:38:55.505 2025-03-17 11:38:55.505 440422 3456 440560 20802 3 11886 2025-03-22 15:57:41.09 2025-03-22 15:57:41.09 447618 20871 448456 1577 3 11887 2025-03-22 01:54:32.815 2025-03-22 01:54:32.815 447618 20871 447657 19087 1 11888 2025-03-22 05:53:48.627 2025-03-22 05:53:48.627 447618 20871 447768 654 2 11889 2025-03-15 09:03:16.311 2025-03-15 09:03:16.311 438065 17050 438105 2293 3 11890 2025-03-15 08:13:24.582 2025-03-15 08:13:24.582 438065 17050 438073 1120 1 11891 2025-03-15 08:20:36.844 2025-03-15 08:20:36.844 438065 17050 438077 1272 2 11892 2025-03-17 17:48:24.417 2025-03-17 17:48:24.417 440988 17321 441013 18402 2 11893 2025-03-17 17:44:17.294 2025-03-17 17:44:17.294 440988 17321 441003 891 1 11894 2025-03-15 04:14:19.91 2025-03-15 04:14:19.91 437524 14255 437971 9969 3 11895 2025-03-15 03:55:32.189 2025-03-15 03:55:32.189 437524 14255 437967 16447 2 11896 2025-03-14 16:29:35.022 2025-03-14 16:29:35.022 437524 14255 437580 18829 1 11897 2025-03-21 16:21:06.454 2025-03-21 16:21:06.454 446313 21710 447118 17201 9 11898 2025-03-21 15:00:34.62 2025-03-21 15:00:34.62 446313 21710 446988 6160 5 11899 2025-03-21 14:50:31.825 2025-03-21 14:50:31.825 446313 21710 446961 627 4 11900 2025-03-21 14:20:22.474 2025-03-21 14:20:22.474 446313 21710 446898 20094 2 11901 2025-03-21 15:17:17.086 2025-03-21 15:17:17.086 446313 21710 447027 10016 8 11902 2025-03-21 15:12:02.07 2025-03-21 15:12:02.07 446313 21710 447016 4323 7 11903 2025-03-21 15:07:48.743 2025-03-21 15:07:48.743 446313 21710 447006 1236 6 11904 2025-03-21 14:33:44 2025-03-21 14:33:44 446313 21710 446927 10981 3 11905 2025-03-21 14:16:20.545 2025-03-21 14:16:20.545 446313 21710 446884 21369 1 11906 2025-03-19 12:47:54.158 2025-03-19 12:47:54.158 437631 16695 443638 1823 1 11907 2025-03-14 19:37:08.784 2025-03-14 19:37:08.784 437670 19952 437713 946 1 11908 2025-03-14 19:57:21.961 2025-03-14 19:57:21.961 437670 19952 437722 12139 2 11909 2025-03-14 20:32:48.799 2025-03-14 20:32:48.799 437720 5425 437737 667 1 11910 2025-03-14 21:57:26.301 2025-03-14 21:57:26.301 437720 5425 437781 1002 2 11911 2025-03-19 12:47:29.725 2025-03-19 12:47:29.725 440230 11164 443636 21413 1 11912 2025-03-17 14:47:50.124 2025-03-17 14:47:50.124 440520 2204 440810 20715 2 11913 2025-03-17 14:31:27.666 2025-03-17 14:31:27.666 440520 2204 440779 8242 1 11914 2025-03-19 11:03:53.849 2025-03-19 11:03:53.849 440610 20979 443448 13587 1 11915 2025-03-19 12:47:18.487 2025-03-19 12:47:18.487 440891 20924 443634 7760 1 11916 2025-03-18 18:38:13.668 2025-03-18 18:38:13.668 440984 899 442695 19581 4 11917 2025-03-17 22:11:29.92 2025-03-17 22:11:29.92 440984 899 441285 1136 3 11918 2025-03-17 20:39:32.699 2025-03-17 20:39:32.699 440984 899 441195 14168 2 11919 2025-03-17 18:30:11.552 2025-03-17 18:30:11.552 440984 899 441073 16939 1 11920 2025-02-14 13:01:22.816 2025-02-14 13:01:22.816 402763 18402 403115 1236 2 11921 2025-02-15 20:59:21.818 2025-02-15 20:59:21.818 402763 18402 404399 15367 3 11922 2025-02-14 10:30:40.131 2025-02-14 10:30:40.131 402763 18402 402992 11516 1 11923 2025-03-19 12:47:05.77 2025-03-19 12:47:05.77 441070 634 443632 739 1 11924 2025-03-19 11:00:19.613 2025-03-19 11:00:19.613 441176 1195 443441 17713 3 11925 2025-03-19 11:08:46.772 2025-03-19 11:08:46.772 441176 1195 443456 12102 4 11926 2025-03-19 11:32:49.224 2025-03-19 11:32:49.224 441176 1195 443480 19199 5 11927 2025-03-18 12:48:23.408 2025-03-18 12:48:23.408 441176 1195 442104 14278 1 11928 2025-03-19 06:34:09.414 2025-03-19 06:34:09.414 441176 1195 443194 5942 2 11929 2025-03-22 11:12:08.883 2025-03-22 11:12:08.883 447715 1658 448043 16834 1 11930 2025-03-22 13:29:10.782 2025-03-22 13:29:10.782 447715 1658 448199 831 2 11931 2025-03-22 13:01:15.526 2025-03-22 13:01:15.526 447715 1658 448176 5961 1 11932 2025-03-22 10:02:54.622 2025-03-22 10:02:54.622 447715 1658 447960 18174 1 11933 2025-03-19 12:27:13.434 2025-03-19 12:27:13.434 441472 16594 443582 2224 1 11934 2025-03-18 11:18:55.528 2025-03-18 11:18:55.528 441533 20243 441918 9307 3 11935 2025-03-18 07:28:23.852 2025-03-18 07:28:23.852 441533 20243 441614 14489 1 11936 2025-03-18 11:33:07.739 2025-03-18 11:33:07.739 441533 20243 441939 722 4 11937 2025-03-18 08:35:50.881 2025-03-18 08:35:50.881 441533 20243 441676 690 2 11938 2025-03-18 14:16:55.452 2025-03-18 14:16:55.452 441600 20768 442333 17570 3 11939 2025-03-18 14:27:08.832 2025-03-18 14:27:08.832 441600 20768 442355 622 4 11940 2025-03-18 12:19:58.007 2025-03-18 12:19:58.007 441600 20768 442044 14465 1 11941 2025-03-18 13:23:20.402 2025-03-18 13:23:20.402 441600 20768 442195 14489 2 11942 2025-03-19 10:45:33.802 2025-03-19 10:45:33.802 442319 2335 443420 880 1 11943 2025-03-18 08:31:14.615 2025-03-18 08:31:14.615 441611 680 441667 15890 2 11944 2025-03-18 08:06:56.155 2025-03-18 08:06:56.155 441611 680 441641 21228 1 11945 2025-03-18 08:32:49.763 2025-03-18 08:32:49.763 441611 680 441670 20500 3 11946 2025-02-20 15:38:43.827 2025-02-20 15:38:43.827 410654 1090 410668 828 1 11947 2025-02-20 15:40:06.941 2025-02-20 15:40:06.941 410654 1090 410670 3411 2 11948 2025-03-18 10:39:34.014 2025-03-18 10:39:34.014 441749 13406 441859 4819 1 11949 2025-03-18 10:51:14.547 2025-03-18 10:51:14.547 441749 13406 441880 13878 2 11950 2025-03-19 01:52:10.564 2025-03-19 01:52:10.564 441843 1647 443059 21139 1 11951 2025-03-19 10:15:19.315 2025-03-19 10:15:19.315 441843 1647 443389 16830 1 11952 2025-03-22 15:27:44.081 2025-03-22 15:27:44.081 447761 2204 448399 18618 3 11953 2025-03-22 20:07:19.651 2025-03-22 20:07:19.651 447761 2204 448716 7667 4 11954 2025-03-22 14:43:23.459 2025-03-22 14:43:23.459 447761 2204 448319 825 1 11955 2025-03-22 21:20:48.514 2025-03-22 21:20:48.514 447761 2204 448771 654 5 11956 2025-03-22 07:05:39.607 2025-03-22 07:05:39.607 447761 2204 447816 13903 1 11957 2025-03-22 19:28:02.356 2025-03-22 19:28:02.356 447761 2204 448686 9333 2 11958 2025-03-22 15:30:39.632 2025-03-22 15:30:39.632 447761 2204 448403 8985 2 11959 2025-03-22 15:38:52.389 2025-03-22 15:38:52.389 447761 2204 448417 12935 3 11960 2025-03-22 21:30:18.107 2025-03-22 21:30:18.107 447761 2204 448776 16638 6 11961 2025-03-22 14:39:08.04 2025-03-22 14:39:08.04 447761 2204 448311 8045 2 11962 2025-03-22 19:52:53.023 2025-03-22 19:52:53.023 447761 2204 448707 19488 3 11963 2025-03-22 14:14:36.819 2025-03-22 14:14:36.819 447833 17953 448270 19943 4 11964 2025-03-22 10:45:56.368 2025-03-22 10:45:56.368 447833 17953 448012 21405 1 11965 2025-03-22 16:21:24.081 2025-03-22 16:21:24.081 447833 17953 448491 21184 6 11966 2025-03-22 14:17:54.862 2025-03-22 14:17:54.862 447833 17953 448275 20871 5 11967 2025-03-22 13:26:35.337 2025-03-22 13:26:35.337 447833 17953 448196 17494 3 11968 2025-03-22 13:01:11.051 2025-03-22 13:01:11.051 447833 17953 448175 1549 2 11969 2025-03-03 09:23:25.416 2025-03-03 09:23:25.416 423321 7979 423352 21430 1 11970 2025-03-03 14:45:39.838 2025-03-03 14:45:39.838 423321 7979 423701 5003 1 11971 2025-03-03 21:27:08.473 2025-03-03 21:27:08.473 423321 7979 424175 1316 2 11972 2025-03-03 21:27:29.347 2025-03-03 21:27:29.347 423321 7979 424176 19735 2 11973 2025-03-18 11:07:35.496 2025-03-18 11:07:35.496 441866 16680 441899 9985 2 11974 2025-03-18 11:03:36.51 2025-03-18 11:03:36.51 441866 16680 441895 21571 1 11975 2025-03-18 15:52:15.436 2025-03-18 15:52:15.436 442170 15728 442514 2719 1 11976 2025-03-19 07:59:36.942 2025-03-19 07:59:36.942 442358 992 443262 21709 1 11977 2025-03-18 18:16:29.632 2025-03-18 18:16:29.632 442588 660 442658 17535 3 11978 2025-03-18 18:12:25.909 2025-03-18 18:12:25.909 442588 660 442653 636 2 11979 2025-03-18 17:12:31.807 2025-03-18 17:12:31.807 442588 660 442591 699 1 11980 2025-03-19 05:41:17.346 2025-03-19 05:41:17.346 442704 714 443167 14941 2 11981 2025-03-18 20:57:17.03 2025-03-18 20:57:17.03 442704 714 442835 6688 1 11982 2025-03-18 21:31:43.993 2025-03-18 21:31:43.993 442800 13198 442888 17494 1 11983 2025-03-19 09:50:40.699 2025-03-19 09:50:40.699 442800 13198 443366 1141 1 11984 2025-02-20 15:49:52.168 2025-02-20 15:49:52.168 410655 706 410678 1162 1 11985 2025-02-20 15:50:38.519 2025-02-20 15:50:38.519 410655 706 410679 20073 2 11986 2025-03-19 01:54:41.586 2025-03-19 01:54:41.586 442981 1769 443061 15337 1 11987 2025-03-19 12:02:38.341 2025-03-19 12:02:38.341 442981 1769 443529 18430 2 11988 2025-03-19 12:02:56.49 2025-03-19 12:02:56.49 442981 1769 443530 21139 2 11989 2025-03-19 00:45:47.448 2025-03-19 00:45:47.448 442981 1769 443022 17321 1 11990 2025-03-20 15:15:34.58 2025-03-20 15:15:34.58 445096 663 445420 4035 1 11991 2025-03-21 16:17:00.636 2025-03-21 16:17:00.636 445096 663 447106 15119 2 11992 2025-03-21 17:53:42.575 2025-03-21 17:53:42.575 445096 663 447233 14688 3 11993 2025-03-19 09:42:47.098 2025-03-19 09:42:47.098 443067 998 443361 16680 1 11994 2025-03-19 12:04:38.668 2025-03-19 12:04:38.668 443130 20683 443534 2233 1 11995 2025-03-19 12:35:06.79 2025-03-19 12:35:06.79 443130 20683 443596 5175 2 11996 2025-03-19 12:41:33.581 2025-03-19 12:41:33.581 443130 20683 443612 16571 3 11997 2025-03-21 17:36:38.12 2025-03-21 17:36:38.12 446681 5522 447211 19071 4 11998 2025-03-21 14:03:49.304 2025-03-21 14:03:49.304 446681 5522 446863 13174 1 11999 2025-03-21 16:22:49.994 2025-03-21 16:22:49.994 446681 5522 447122 14705 3 12000 2025-03-21 14:08:58.938 2025-03-21 14:08:58.938 446681 5522 446872 19117 2 12001 2025-03-21 16:18:43.262 2025-03-21 16:18:43.262 446371 1244 447111 2508 4 12002 2025-03-21 16:24:14.619 2025-03-21 16:24:14.619 446371 1244 447125 21424 5 12003 2025-03-21 16:35:48.327 2025-03-21 16:35:48.327 446371 1244 447147 19446 7 12004 2025-03-21 16:37:07.068 2025-03-21 16:37:07.068 446371 1244 447151 18615 5 12005 2025-03-21 16:39:04.299 2025-03-21 16:39:04.299 446371 1244 447153 12072 8 12006 2025-03-21 18:08:56.618 2025-03-21 18:08:56.618 446371 1244 447244 1122 4 12007 2025-03-21 16:19:40.624 2025-03-21 16:19:40.624 446371 1244 447113 11862 2 12008 2025-03-21 15:38:11.386 2025-03-21 15:38:11.386 446371 1244 447063 19655 2 12009 2025-03-21 08:57:19.05 2025-03-21 08:57:19.05 446371 1244 446465 16571 3 12010 2025-03-21 12:44:38.485 2025-03-21 12:44:38.485 446371 1244 446728 18306 4 12011 2025-03-21 15:23:01.201 2025-03-21 15:23:01.201 446371 1244 447036 9354 5 12012 2025-03-21 15:39:26.294 2025-03-21 15:39:26.294 446371 1244 447065 8459 4 12013 2025-03-21 16:33:28.581 2025-03-21 16:33:28.581 446371 1244 447142 4314 5 12014 2025-03-21 16:28:25.832 2025-03-21 16:28:25.832 446371 1244 447134 4768 4 12015 2025-03-21 15:47:07.597 2025-03-21 15:47:07.597 446371 1244 447079 14791 3 12016 2025-03-21 16:30:28.048 2025-03-21 16:30:28.048 446371 1244 447138 21041 6 12017 2025-03-21 16:50:05.813 2025-03-21 16:50:05.813 446371 1244 447167 20904 7 12018 2025-03-21 16:26:06.798 2025-03-21 16:26:06.798 446371 1244 447133 3347 3 12019 2025-03-21 17:55:25.155 2025-03-21 17:55:25.155 446371 1244 447236 10493 5 12020 2025-03-21 16:39:51.47 2025-03-21 16:39:51.47 446371 1244 447155 12721 6 12021 2025-03-21 15:41:38.585 2025-03-21 15:41:38.585 446371 1244 447071 20829 2 12022 2025-03-21 15:54:44.959 2025-03-21 15:54:44.959 446371 1244 447086 13055 3 12023 2025-03-21 12:50:07.967 2025-03-21 12:50:07.967 446371 1244 446745 12057 1 12024 2025-03-21 08:53:10.966 2025-03-21 08:53:10.966 446371 1244 446464 19199 2 12025 2025-03-21 08:33:41.85 2025-03-21 08:33:41.85 446371 1244 446452 8648 1 12026 2025-03-21 16:36:23.309 2025-03-21 16:36:23.309 446371 1244 447149 18557 7 12027 2025-03-21 16:35:14.779 2025-03-21 16:35:14.779 446371 1244 447146 769 6 12028 2025-03-19 11:41:32.025 2025-03-19 11:41:32.025 443187 2123 443494 16301 2 12029 2025-03-19 11:47:36.122 2025-03-19 11:47:36.122 443187 2123 443507 18529 1 12030 2025-03-19 12:00:01.931 2025-03-19 12:00:01.931 443187 2123 443526 695 4 12031 2025-03-19 06:49:05.739 2025-03-19 06:49:05.739 443187 2123 443204 13517 1 12032 2025-03-19 06:41:53.008 2025-03-19 06:41:53.008 443187 2123 443200 14225 2 12033 2025-03-19 10:37:41.788 2025-03-19 10:37:41.788 443187 2123 443411 17526 2 12034 2025-03-19 10:40:14.66 2025-03-19 10:40:14.66 443187 2123 443415 999 1 12035 2025-03-19 11:43:25.027 2025-03-19 11:43:25.027 443187 2123 443498 16839 2 12036 2025-03-19 12:13:52.791 2025-03-19 12:13:52.791 443187 2123 443549 18393 2 12037 2025-03-19 12:16:07.847 2025-03-19 12:16:07.847 443187 2123 443556 2326 1 12038 2025-03-19 12:14:50.616 2025-03-19 12:14:50.616 443187 2123 443551 19484 5 12039 2025-03-19 09:22:27.062 2025-03-19 09:22:27.062 443187 2123 443342 1401 1 12040 2025-03-19 06:51:16.711 2025-03-19 06:51:16.711 443187 2123 443205 16284 3 12041 2025-03-19 07:41:12.958 2025-03-19 07:41:12.958 443187 2123 443236 20439 1 12042 2025-03-19 06:34:36.118 2025-03-19 06:34:36.118 443187 2123 443195 18772 1 12043 2025-03-19 12:19:03.724 2025-03-19 12:19:03.724 443303 14731 443565 2335 1 12044 2025-03-19 09:36:10.785 2025-03-19 09:36:10.785 443326 9339 443357 21810 1 12045 2025-03-19 10:43:18.726 2025-03-19 10:43:18.726 443377 10821 443418 14255 1 12046 2025-03-19 13:48:40.342 2025-03-19 13:48:40.342 443734 21202 443738 21079 1 12047 2025-03-21 18:13:27.849 2025-03-21 18:13:27.849 447172 997 447248 770 1 12048 2025-03-19 17:27:12.094 2025-03-19 17:27:12.094 443794 10280 444138 1712 1 12049 2025-03-19 17:39:35.03 2025-03-19 17:39:35.03 443794 10280 444156 9364 2 12050 2025-03-22 15:56:19.994 2025-03-22 15:56:19.994 446456 17824 448455 10934 4 12051 2025-03-21 16:57:08.55 2025-03-21 16:57:08.55 446456 17824 447173 1038 2 12052 2025-03-21 17:00:15.316 2025-03-21 17:00:15.316 446456 17824 447175 21218 2 12053 2025-03-21 17:02:01.876 2025-03-21 17:02:01.876 446456 17824 447177 20683 2 12054 2025-03-21 09:17:46.911 2025-03-21 09:17:46.911 446456 17824 446486 20881 1 12055 2025-03-21 11:27:19.268 2025-03-21 11:27:19.268 446456 17824 446609 21014 2 12056 2025-03-21 16:48:56.875 2025-03-21 16:48:56.875 446456 17824 447164 18321 1 12057 2025-03-21 15:20:21.208 2025-03-21 15:20:21.208 446456 17824 447034 669 1 12058 2025-03-21 16:18:21.341 2025-03-21 16:18:21.341 446456 17824 447109 20612 2 12059 2025-03-21 17:17:34.348 2025-03-21 17:17:34.348 446456 17824 447194 1465 2 12060 2025-03-21 17:26:11.398 2025-03-21 17:26:11.398 446456 17824 447205 21212 1 12061 2025-03-21 18:47:12.466 2025-03-21 18:47:12.466 446456 17824 447289 20924 2 12062 2025-03-21 18:50:54.403 2025-03-21 18:50:54.403 446456 17824 447298 4292 4 12063 2025-03-21 10:03:05.827 2025-03-21 10:03:05.827 446456 17824 446511 795 2 12064 2025-03-21 12:00:16.323 2025-03-21 12:00:16.323 446456 17824 446650 8726 2 12065 2025-03-21 12:41:38.025 2025-03-21 12:41:38.025 446456 17824 446725 11798 1 12066 2025-03-21 16:23:28.489 2025-03-21 16:23:28.489 446456 17824 447124 21062 1 12067 2025-03-21 16:46:32.095 2025-03-21 16:46:32.095 446456 17824 447161 19394 2 12068 2025-03-21 18:35:43.605 2025-03-21 18:35:43.605 446456 17824 447276 9353 3 12069 2025-03-21 18:45:25.169 2025-03-21 18:45:25.169 446456 17824 447283 19459 4 12070 2025-03-21 16:52:44.64 2025-03-21 16:52:44.64 446456 17824 447169 12721 2 12071 2025-03-21 20:36:02.049 2025-03-21 20:36:02.049 446456 17824 447432 3360 3 12072 2025-03-21 17:01:15.431 2025-03-21 17:01:15.431 446456 17824 447176 12749 3 12073 2025-03-21 12:05:47.899 2025-03-21 12:05:47.899 446456 17824 446657 2711 3 12074 2025-03-21 17:05:11.521 2025-03-21 17:05:11.521 446456 17824 447180 17693 3 12075 2025-03-21 17:39:21.633 2025-03-21 17:39:21.633 446456 17824 447215 1741 2 12076 2025-03-21 11:14:46.679 2025-03-21 11:14:46.679 446456 17824 446591 5455 1 12077 2025-03-21 13:34:53.875 2025-03-21 13:34:53.875 446456 17824 446808 3417 3 12078 2025-03-21 09:13:50.833 2025-03-21 09:13:50.833 446456 17824 446483 2609 1 12079 2025-03-21 11:59:17.007 2025-03-21 11:59:17.007 446456 17824 446649 2361 1 12080 2025-03-22 15:08:11.116 2025-03-22 15:08:11.116 447642 15409 448360 3717 1 12081 2025-03-21 11:45:31.716 2025-03-21 11:45:31.716 446598 19333 446635 20511 1 12082 2025-03-21 12:19:15.802 2025-03-21 12:19:15.802 446598 19333 446686 6361 6 12083 2025-03-21 12:20:35.654 2025-03-21 12:20:35.654 446598 19333 446688 16536 7 12084 2025-03-21 12:17:36.647 2025-03-21 12:17:36.647 446598 19333 446680 1534 5 12085 2025-03-21 12:08:49.144 2025-03-21 12:08:49.144 446598 19333 446661 12245 4 12086 2025-03-21 12:01:39.33 2025-03-21 12:01:39.33 446598 19333 446651 6471 3 12087 2025-03-21 11:49:50.837 2025-03-21 11:49:50.837 446598 19333 446641 9365 2 12088 2025-03-20 00:40:06.982 2025-03-20 00:40:06.982 444065 2204 444513 15200 2 12089 2025-03-19 21:02:23.752 2025-03-19 21:02:23.752 444065 2204 444403 882 1 12090 2025-03-19 17:27:10.902 2025-03-19 17:27:10.902 444112 1326 444137 18901 1 12091 2025-03-19 20:04:42.879 2025-03-19 20:04:42.879 444112 1326 444353 10698 2 12092 2025-03-20 03:17:59.856 2025-03-20 03:17:59.856 444566 21701 444582 954 3 12093 2025-03-20 03:06:43.043 2025-03-20 03:06:43.043 444566 21701 444575 2016 1 12094 2025-03-20 03:14:56.75 2025-03-20 03:14:56.75 444566 21701 444580 13216 2 12095 2025-03-22 23:00:22.542 2025-03-22 23:00:22.542 444911 9295 448838 5171 1 12096 2025-03-21 16:24:46.058 2025-03-21 16:24:46.058 445518 13038 447128 8870 7 12097 2025-03-21 16:23:19.34 2025-03-21 16:23:19.34 445518 13038 447123 616 7 12098 2025-03-21 16:29:54.642 2025-03-21 16:29:54.642 445518 13038 447136 14503 8 12099 2025-03-20 17:32:24.964 2025-03-20 17:32:24.964 445518 13038 445701 21044 2 12100 2025-03-20 17:30:33.873 2025-03-20 17:30:33.873 445518 13038 445696 20811 1 12101 2025-03-21 16:43:58.131 2025-03-21 16:43:58.131 445518 13038 447159 13249 9 12102 2025-03-21 15:36:07.577 2025-03-21 15:36:07.577 445518 13038 447059 11288 6 12103 2025-03-21 16:14:53.349 2025-03-21 16:14:53.349 445518 13038 447102 4323 6 12104 2025-03-21 15:30:20.241 2025-03-21 15:30:20.241 445518 13038 447050 13566 5 12105 2025-03-21 15:05:26.257 2025-03-21 15:05:26.257 445518 13038 447001 11527 4 12106 2025-03-20 17:37:41.818 2025-03-20 17:37:41.818 445518 13038 445709 17148 3 12107 2025-03-23 08:16:26.019 2025-03-23 08:16:26.019 445639 20551 449154 20412 2 12108 2025-03-21 03:49:22.443 2025-03-21 03:49:22.443 445639 20551 446298 1354 1 12109 2025-03-21 18:32:28.473 2025-03-21 18:32:28.473 446016 9335 447272 15624 3 12110 2025-03-21 06:09:48.576 2025-03-21 06:09:48.576 446016 9335 446369 13174 2 12111 2025-03-20 22:29:24.787 2025-03-20 22:29:24.787 446016 9335 446059 14385 1 12112 2025-03-21 12:25:53.742 2025-03-21 12:25:53.742 446631 9517 446697 9329 1 12113 2025-03-21 15:42:40.733 2025-03-21 15:42:40.733 446631 9517 447073 2206 4 12114 2025-03-21 13:20:45.282 2025-03-21 13:20:45.282 446631 9517 446791 16145 1 12115 2025-03-21 15:39:19.49 2025-03-21 15:39:19.49 446631 9517 447064 1135 3 12116 2025-03-21 13:57:36.386 2025-03-21 13:57:36.386 446631 9517 446849 1801 2 12117 2025-03-23 10:25:59.895 2025-03-23 10:25:59.895 449290 18219 449292 1705 1 12118 2025-03-26 19:06:20.719 2025-03-26 19:06:20.719 449290 18219 455141 2460 2 12119 2025-03-26 19:51:54.143 2025-03-26 19:51:54.143 449290 18219 455204 11192 3 12120 2025-03-21 19:15:05.996 2025-03-21 19:15:05.996 446726 20280 447314 13843 1 12121 2025-03-21 18:09:44.945 2025-03-21 18:09:44.945 446819 2195 447246 18901 3 12122 2025-03-21 18:11:13.349 2025-03-21 18:11:13.349 446819 2195 447247 21303 4 12123 2025-03-21 17:16:41.268 2025-03-21 17:16:41.268 446819 2195 447193 10698 2 12124 2025-03-21 17:21:57.574 2025-03-21 17:21:57.574 446819 2195 447198 4692 3 12125 2025-03-21 18:07:07.553 2025-03-21 18:07:07.553 446819 2195 447243 1198 2 12126 2025-03-21 17:13:49.286 2025-03-21 17:13:49.286 446819 2195 447190 18717 1 12127 2025-03-28 20:44:42.735 2025-03-28 20:44:42.735 457966 21248 457996 21523 1 12128 2025-03-28 23:35:51.454 2025-03-28 23:35:51.454 457966 21248 458105 19813 2 12129 2025-03-23 17:28:03.793 2025-03-23 17:28:03.793 447870 10818 450006 21014 2 12130 2025-03-23 17:42:06.091 2025-03-23 17:42:06.091 447870 10818 450019 18116 4 12131 2025-03-23 16:07:29.978 2025-03-23 16:07:29.978 447870 10818 449922 5455 1 12132 2025-03-23 19:07:02.124 2025-03-23 19:07:02.124 447870 10818 450117 859 5 12133 2025-03-23 17:29:10.7 2025-03-23 17:29:10.7 447870 10818 450008 14168 3 12134 2025-03-23 19:37:55.871 2025-03-23 19:37:55.871 447870 10818 450217 15336 6 12135 2025-03-23 05:05:23.633 2025-03-23 05:05:23.633 447892 777 449019 20646 2 12136 2025-03-22 15:52:40.766 2025-03-22 15:52:40.766 447892 777 448449 1237 2 12137 2025-03-23 01:18:12.868 2025-03-23 01:18:12.868 447892 777 448923 987 3 12138 2025-03-22 12:49:00.067 2025-03-22 12:49:00.067 447892 777 448158 11527 2 12139 2025-03-22 22:19:28.34 2025-03-22 22:19:28.34 447892 777 448816 21067 5 12140 2025-03-22 12:22:22.515 2025-03-22 12:22:22.515 447892 777 448121 6164 1 12141 2025-03-22 22:10:07.659 2025-03-22 22:10:07.659 447892 777 448809 5455 4 12142 2025-03-22 22:33:10.264 2025-03-22 22:33:10.264 447892 777 448822 4314 1 12143 2025-03-22 15:21:56.933 2025-03-22 15:21:56.933 447892 777 448386 6526 2 12144 2025-03-22 15:17:59.732 2025-03-22 15:17:59.732 447892 777 448378 9921 2 12145 2025-03-22 14:31:38.838 2025-03-22 14:31:38.838 447892 777 448293 21208 1 12146 2025-03-22 15:43:56.425 2025-03-22 15:43:56.425 447892 777 448426 21019 3 12147 2025-03-22 15:44:03.888 2025-03-22 15:44:03.888 447892 777 448427 12057 1 12148 2025-03-22 15:46:45.85 2025-03-22 15:46:45.85 447892 777 448431 20495 1 12149 2025-03-22 15:47:37.988 2025-03-22 15:47:37.988 447892 777 448432 19826 4 12150 2025-03-22 15:48:18.503 2025-03-22 15:48:18.503 447892 777 448437 1985 2 12151 2025-03-22 15:49:14.059 2025-03-22 15:49:14.059 447892 777 448439 1833 3 12152 2025-03-22 21:49:48.431 2025-03-22 21:49:48.431 447892 777 448793 9362 3 12153 2025-03-22 21:37:24.208 2025-03-22 21:37:24.208 447892 777 448779 1549 2 12154 2025-03-22 14:33:05.864 2025-03-22 14:33:05.864 447892 777 448299 11038 2 12155 2025-03-22 15:52:18.963 2025-03-22 15:52:18.963 447892 777 448447 2514 2 12156 2025-03-22 22:49:18.561 2025-03-22 22:49:18.561 447892 777 448836 9529 2 12157 2025-03-22 15:53:12.558 2025-03-22 15:53:12.558 447892 777 448451 21248 2 12158 2025-03-22 16:00:31.17 2025-03-22 16:00:31.17 447892 777 448460 7668 4 12159 2025-03-23 01:11:59.24 2025-03-23 01:11:59.24 447892 777 448919 676 2 12160 2025-03-22 14:56:13.229 2025-03-22 14:56:13.229 447892 777 448341 4624 1 12161 2025-03-22 08:48:48.822 2025-03-22 08:48:48.822 447892 777 447896 8541 1 12162 2025-03-22 15:58:45.515 2025-03-22 15:58:45.515 447892 777 448457 15052 3 12163 2025-03-22 15:52:55.304 2025-03-22 15:52:55.304 447892 777 448450 3304 2 12164 2025-03-22 08:53:32.353 2025-03-22 08:53:32.353 447892 777 447902 7185 1 12165 2025-03-22 12:57:04.141 2025-03-22 12:57:04.141 447892 777 448168 20811 1 12166 2025-03-22 13:02:20.54 2025-03-22 13:02:20.54 447892 777 448181 13133 1 12167 2025-03-22 14:33:46.325 2025-03-22 14:33:46.325 447892 777 448301 21482 1 12168 2025-03-22 15:49:34.182 2025-03-22 15:49:34.182 447892 777 448440 16808 1 12169 2025-03-22 15:49:47.534 2025-03-22 15:49:47.534 447892 777 448441 20588 2 12170 2025-03-22 21:41:55.954 2025-03-22 21:41:55.954 447892 777 448783 1438 3 12171 2025-03-22 20:48:24.557 2025-03-22 20:48:24.557 447892 777 448746 700 1 12172 2025-03-22 21:37:51.488 2025-03-22 21:37:51.488 447892 777 448780 19581 2 12173 2025-03-22 21:45:49.524 2025-03-22 21:45:49.524 447892 777 448787 2022 3 12174 2025-03-22 23:14:21.913 2025-03-22 23:14:21.913 447892 777 448843 13575 3 12175 2025-03-22 12:37:01.087 2025-03-22 12:37:01.087 447892 777 448142 17392 1 12176 2025-03-22 13:42:19.5 2025-03-22 13:42:19.5 447892 777 448217 15160 2 12177 2025-03-22 08:51:51.096 2025-03-22 08:51:51.096 447892 777 447900 13878 1 12178 2025-03-22 11:09:19.98 2025-03-22 11:09:19.98 447928 10981 448040 20481 1 12179 2025-03-22 15:27:38.131 2025-03-22 15:27:38.131 448054 21599 448398 17201 2 12180 2025-03-22 14:12:40.315 2025-03-22 14:12:40.315 448054 21599 448260 10981 1 12181 2025-03-22 17:57:27.093 2025-03-22 17:57:27.093 448494 1490 448587 1454 2 12182 2025-03-22 17:42:14.409 2025-03-22 17:42:14.409 448494 1490 448578 21214 1 12183 2025-03-22 20:18:05.227 2025-03-22 20:18:05.227 448512 12779 448725 1244 1 12184 2025-03-29 08:11:57.172 2025-03-29 08:11:57.172 458288 10311 458345 1650 2 12185 2025-03-29 07:31:03.452 2025-03-29 07:31:03.452 458288 10311 458305 18430 1 12186 2025-03-29 08:21:39.195 2025-03-29 08:21:39.195 458288 10311 458361 827 3 12187 2025-03-23 12:59:18.11 2025-03-23 12:59:18.11 449559 20157 449615 20663 3 12188 2025-03-23 12:42:11.941 2025-03-23 12:42:11.941 449559 20157 449570 2519 1 12189 2025-03-23 12:47:51.055 2025-03-23 12:47:51.055 449559 20157 449589 634 2 12190 2025-03-22 20:23:53.506 2025-03-22 20:23:53.506 448527 20979 448730 2285 3 12191 2025-03-22 21:22:05.529 2025-03-22 21:22:05.529 448527 20979 448773 21119 4 12192 2025-03-22 21:28:19.442 2025-03-22 21:28:19.442 448527 20979 448775 16858 5 12193 2025-03-22 19:41:49.814 2025-03-22 19:41:49.814 448527 20979 448697 19637 2 12194 2025-03-22 20:26:09.331 2025-03-22 20:26:09.331 448527 20979 448732 10291 3 12195 2025-03-23 00:59:06.633 2025-03-23 00:59:06.633 448527 20979 448907 21400 1 12196 2025-03-22 19:57:55.013 2025-03-22 19:57:55.013 448527 20979 448713 6419 2 12197 2025-03-22 17:13:38.119 2025-03-22 17:13:38.119 448527 20979 448554 19346 1 12198 2025-03-22 19:40:44.395 2025-03-22 19:40:44.395 448527 20979 448695 1650 1 12199 2025-03-22 22:42:03.312 2025-03-22 22:42:03.312 448635 19193 448832 14669 1 12200 2025-03-23 07:21:07.839 2025-03-23 07:21:07.839 448706 8729 449092 7916 2 12201 2025-03-22 19:56:11.641 2025-03-22 19:56:11.641 448706 8729 448710 2537 1 12202 2025-03-07 04:38:31.7 2025-03-07 04:38:31.7 427264 4167 428302 18865 2 12203 2025-03-07 01:15:29.16 2025-03-07 01:15:29.16 427264 4167 428241 8326 1 12204 2025-03-22 20:35:16.271 2025-03-22 20:35:16.271 448720 1803 448740 17183 1 12205 2025-03-23 05:30:02.784 2025-03-23 05:30:02.784 449007 2640 449032 3392 2 12206 2025-03-23 05:21:36.891 2025-03-23 05:21:36.891 449007 2640 449028 19992 1 12207 2025-03-23 06:56:53.668 2025-03-23 06:56:53.668 449067 21274 449072 15049 1 12208 2025-03-23 07:12:30.509 2025-03-23 07:12:30.509 449067 21274 449084 11996 3 12209 2025-03-23 07:10:13.274 2025-03-23 07:10:13.274 449067 21274 449083 917 2 12210 2025-03-26 19:44:28.271 2025-03-26 19:44:28.271 455132 11678 455198 16929 2 12211 2025-03-26 19:48:52.196 2025-03-26 19:48:52.196 455132 11678 455201 13038 3 12212 2025-03-26 19:12:16.889 2025-03-26 19:12:16.889 455132 11678 455159 2309 1 12213 2025-03-23 17:52:58.198 2025-03-23 17:52:58.198 449601 937 450040 10608 8 12214 2025-03-23 14:48:32.041 2025-03-23 14:48:32.041 449601 937 449806 15148 2 12215 2025-03-23 17:29:39.175 2025-03-23 17:29:39.175 449601 937 450010 9339 5 12216 2025-03-23 17:12:03.461 2025-03-23 17:12:03.461 449601 937 449998 4654 3 12217 2025-03-23 16:06:01.594 2025-03-23 16:06:01.594 449601 937 449920 8269 4 12218 2025-03-23 18:58:28.705 2025-03-23 18:58:28.705 449601 937 450109 675 10 12219 2025-03-23 16:00:01.073 2025-03-23 16:00:01.073 449601 937 449910 20137 3 12220 2025-03-23 15:40:23.74 2025-03-23 15:40:23.74 449601 937 449881 7891 2 12221 2025-03-23 17:51:47.089 2025-03-23 17:51:47.089 449601 937 450039 17673 7 12222 2025-03-23 18:23:55.978 2025-03-23 18:23:55.978 449601 937 450067 21159 9 12223 2025-03-23 17:38:33.489 2025-03-23 17:38:33.489 449601 937 450014 2620 6 12224 2025-03-23 13:06:17.64 2025-03-23 13:06:17.64 449601 937 449630 726 1 12225 2025-03-23 17:08:09.139 2025-03-23 17:08:09.139 449779 21498 449992 20370 1 12226 2025-03-23 20:06:25.609 2025-03-23 20:06:25.609 449779 21498 450254 6137 1 12227 2025-03-23 17:23:33.54 2025-03-23 17:23:33.54 449779 21498 450003 7583 2 12228 2025-03-23 20:08:12.39 2025-03-23 20:08:12.39 449779 21498 450256 2514 2 12229 2025-03-23 19:12:36.806 2025-03-23 19:12:36.806 449878 4754 450129 6360 2 12230 2025-03-24 08:56:40.48 2025-03-24 08:56:40.48 449878 4754 450814 19930 2 12231 2025-03-24 14:02:14.99 2025-03-24 14:02:14.99 449878 4754 451336 21833 3 12232 2025-03-24 05:32:19.476 2025-03-24 05:32:19.476 449878 4754 450618 10291 1 12233 2025-03-23 18:41:59.884 2025-03-23 18:41:59.884 449878 4754 450087 19992 1 12234 2025-03-23 21:28:38.102 2025-03-23 21:28:38.102 450263 4027 450326 17944 1 12235 2025-03-23 22:01:34.342 2025-03-23 22:01:34.342 450263 4027 450354 7587 2 12236 2025-03-23 22:11:08.623 2025-03-23 22:11:08.623 450263 4027 450357 21734 3 12237 2025-03-24 13:57:58.107 2025-03-24 13:57:58.107 450649 7827 451328 5646 9 12238 2025-03-24 06:37:37.063 2025-03-24 06:37:37.063 450649 7827 450672 1352 6 12239 2025-03-24 06:27:30.703 2025-03-24 06:27:30.703 450649 7827 450664 618 3 12240 2025-03-24 10:52:26.057 2025-03-24 10:52:26.057 450649 7827 451014 910 7 12241 2025-03-24 06:32:45.136 2025-03-24 06:32:45.136 450649 7827 450670 2513 5 12242 2025-03-24 10:54:10.956 2025-03-24 10:54:10.956 450649 7827 451017 21539 8 12243 2025-03-24 06:29:38.054 2025-03-24 06:29:38.054 450649 7827 450666 13169 4 12244 2025-03-24 06:22:43.394 2025-03-24 06:22:43.394 450649 7827 450659 1801 2 12245 2025-03-24 06:14:58.949 2025-03-24 06:14:58.949 450649 7827 450652 21672 1 12246 2025-03-28 07:41:20.924 2025-03-28 07:41:20.924 455893 6555 457096 20756 2 12247 2025-03-27 20:43:59.925 2025-03-27 20:43:59.925 455893 6555 456745 650 1 12248 2025-03-28 08:07:54.027 2025-03-28 08:07:54.027 455893 6555 457109 5017 3 12249 2025-03-27 16:58:54.125 2025-03-27 16:58:54.125 455920 3342 456554 21159 2 12250 2025-03-27 13:15:24.352 2025-03-27 13:15:24.352 455920 3342 456088 21480 1 12251 2025-03-24 10:11:53.717 2025-03-24 10:11:53.717 450678 617 450946 1620 3 12252 2025-03-24 07:00:20.319 2025-03-24 07:00:20.319 450678 617 450699 3478 2 12253 2025-03-24 06:55:46.718 2025-03-24 06:55:46.718 450678 617 450695 8945 1 12254 2025-03-24 10:28:36.031 2025-03-24 10:28:36.031 450678 617 450977 8289 4 12255 2025-03-24 14:37:09.499 2025-03-24 14:37:09.499 450678 617 451411 9843 5 12256 2025-03-24 12:24:48.562 2025-03-24 12:24:48.562 450766 9084 451158 20691 1 12257 2025-03-24 13:30:55.488 2025-03-24 13:30:55.488 450766 9084 451284 2775 2 12258 2025-03-24 14:30:56.525 2025-03-24 14:30:56.525 451266 726 451392 6421 3 12259 2025-03-24 14:35:11.411 2025-03-24 14:35:11.411 451266 726 451408 14657 4 12260 2025-03-24 14:27:37.746 2025-03-24 14:27:37.746 451266 726 451382 14650 2 12261 2025-03-24 13:27:17.663 2025-03-24 13:27:17.663 451266 726 451276 19943 1 12262 2025-03-24 14:39:53.547 2025-03-24 14:39:53.547 451266 726 451414 14370 5 12263 2025-03-25 01:17:28.726 2025-03-25 01:17:28.726 452063 891 452151 6573 1 12264 2025-03-27 20:35:36.002 2025-03-27 20:35:36.002 452063 891 456736 21222 2 12265 2025-03-25 13:28:28.195 2025-03-25 13:28:28.195 452624 12188 452802 701 2 12266 2025-03-25 13:01:12.881 2025-03-25 13:01:12.881 452624 12188 452746 4633 1 12267 2025-03-27 17:16:48.289 2025-03-27 17:16:48.289 456560 828 456574 21060 2 12268 2025-03-27 17:48:57.584 2025-03-27 17:48:57.584 456560 828 456621 15806 4 12269 2025-03-27 17:14:01.146 2025-03-27 17:14:01.146 456560 828 456570 3683 1 12270 2025-03-27 17:41:24.21 2025-03-27 17:41:24.21 456560 828 456607 21485 3 12271 2025-03-25 15:27:31.009 2025-03-25 15:27:31.009 452625 16329 452974 15556 2 12272 2025-03-25 13:12:19.699 2025-03-25 13:12:19.699 452625 16329 452770 8448 1 12273 2025-03-28 07:26:25.695 2025-03-28 07:26:25.695 457001 18468 457086 8535 2 12274 2025-03-28 04:32:01.94 2025-03-28 04:32:01.94 457001 18468 457009 10016 1 12275 2025-03-26 11:53:58.091 2025-03-26 11:53:58.091 454203 14705 454409 21379 2 12276 2025-03-26 12:10:25.606 2025-03-26 12:10:25.606 454203 14705 454435 21222 4 12277 2025-03-26 12:05:33.641 2025-03-26 12:05:33.641 454203 14705 454427 1737 3 12278 2025-03-26 10:10:59.488 2025-03-26 10:10:59.488 454203 14705 454236 714 1 12279 2025-03-29 08:39:52.52 2025-03-29 08:39:52.52 454221 20409 458382 21518 5 12280 2025-03-28 21:54:24.106 2025-03-28 21:54:24.106 454221 20409 458026 802 2 12281 2025-03-27 13:23:15.331 2025-03-27 13:23:15.331 454221 20409 456113 19581 4 12282 2025-03-27 11:19:50.124 2025-03-27 11:19:50.124 454221 20409 455855 3392 3 12283 2025-03-27 05:18:27.913 2025-03-27 05:18:27.913 454221 20409 455521 641 2 12284 2025-03-26 11:51:01.274 2025-03-26 11:51:01.274 454221 20409 454403 4502 1 12285 2025-03-29 05:33:48.955 2025-03-29 05:33:48.955 454221 20409 458207 14941 3 12286 2025-03-27 22:41:43.787 2025-03-27 22:41:43.787 454221 20409 456831 4084 8 12287 2025-03-27 13:26:04.922 2025-03-27 13:26:04.922 454221 20409 456117 9109 5 12288 2025-03-26 10:10:02.575 2025-03-26 10:10:02.575 454221 20409 454235 12220 1 12289 2025-03-27 22:22:26.982 2025-03-27 22:22:26.982 454221 20409 456815 1002 7 12290 2025-03-29 06:22:30.396 2025-03-29 06:22:30.396 454221 20409 458251 1652 4 12291 2025-03-27 21:37:52.759 2025-03-27 21:37:52.759 454221 20409 456790 1618 6 12292 2025-03-29 09:03:52.837 2025-03-29 09:03:52.837 454525 21044 458420 12346 9 12293 2025-03-29 08:59:48.122 2025-03-29 08:59:48.122 454525 21044 458416 15474 8 12294 2025-03-29 08:50:46.032 2025-03-29 08:50:46.032 454525 21044 458397 14381 6 12295 2025-03-29 08:33:23.598 2025-03-29 08:33:23.598 454525 21044 458378 10016 5 12296 2025-03-26 13:27:18.53 2025-03-26 13:27:18.53 454525 21044 454535 1769 1 12297 2025-03-26 14:48:13.279 2025-03-26 14:48:13.279 454525 21044 454668 16970 2 12298 2025-03-29 08:55:03.355 2025-03-29 08:55:03.355 454525 21044 458408 16788 7 12299 2025-03-29 08:25:37.102 2025-03-29 08:25:37.102 454525 21044 458368 1638 4 12300 2025-03-26 14:58:23.832 2025-03-26 14:58:23.832 454525 21044 454691 1647 3 12301 2025-03-26 15:32:10.328 2025-03-26 15:32:10.328 454731 21119 454793 16214 1 12302 2025-03-26 19:01:37.309 2025-03-26 19:01:37.309 454731 21119 455134 19005 2 12303 2025-03-26 23:07:08.174 2025-03-26 23:07:08.174 454863 7673 455324 16966 4 12304 2025-03-26 22:30:28.038 2025-03-26 22:30:28.038 454863 7673 455298 12334 3 12305 2025-03-26 16:04:55.359 2025-03-26 16:04:55.359 454863 7673 454877 6058 1 12306 2025-03-27 07:01:00.981 2025-03-27 07:01:00.981 454863 7673 455589 21794 5 12307 2025-03-26 22:07:36.814 2025-03-26 22:07:36.814 454863 7673 455274 5775 2 12308 2025-03-27 00:53:46.299 2025-03-27 00:53:46.299 455283 1316 455374 7978 1 12309 2025-03-27 01:50:04.631 2025-03-27 01:50:04.631 455283 1316 455403 8423 2 12310 2025-03-27 09:59:08.188 2025-03-27 09:59:08.188 455283 1316 455754 21072 2 12311 2025-03-27 06:19:14.827 2025-03-27 06:19:14.827 455544 14122 455564 16594 1 12312 2025-03-27 06:44:09.779 2025-03-27 06:44:09.779 455544 14122 455578 19813 2 12313 2025-03-28 17:45:04.578 2025-03-28 17:45:04.578 457766 16970 457796 3506 1 12314 2025-03-28 18:04:29.739 2025-03-28 18:04:29.739 457766 16970 457806 20674 2 12315 2025-03-28 19:57:27.019 2025-03-28 19:57:27.019 457766 16970 457938 900 2 12316 2025-03-28 21:24:35.687 2025-03-28 21:24:35.687 457845 11590 458013 14260 3 12317 2025-03-28 22:16:12.438 2025-03-28 22:16:12.438 457845 11590 458044 14169 1 12318 2025-03-28 19:15:06.984 2025-03-28 19:15:06.984 457845 11590 457897 11716 1 12319 2025-03-28 23:37:15.299 2025-03-28 23:37:15.299 457845 11590 458106 15148 3 12320 2025-03-28 22:19:45.248 2025-03-28 22:19:45.248 457845 11590 458047 4624 2 12321 2025-03-28 20:39:00.623 2025-03-28 20:39:00.623 457845 11590 457988 5775 2 12322 2025-03-27 11:54:30.042 2025-03-27 11:54:30.042 455551 1046 455889 807 3 12323 2025-03-27 07:27:51.193 2025-03-27 07:27:51.193 455551 1046 455599 15484 1 12324 2025-03-27 12:16:54.793 2025-03-27 12:16:54.793 455551 1046 455923 4650 6 12325 2025-03-27 13:09:04.485 2025-03-27 13:09:04.485 455551 1046 456073 10060 10 12326 2025-03-27 12:06:29.751 2025-03-27 12:06:29.751 455551 1046 455911 20450 5 12327 2025-03-27 12:50:42.898 2025-03-27 12:50:42.898 455551 1046 455994 5112 9 12328 2025-03-27 13:14:30.283 2025-03-27 13:14:30.283 455551 1046 456086 10094 11 12329 2025-03-27 12:36:01.878 2025-03-27 12:36:01.878 455551 1046 455952 21485 7 12330 2025-03-27 10:59:32.714 2025-03-27 10:59:32.714 455551 1046 455824 15147 2 12331 2025-03-27 12:01:20.522 2025-03-27 12:01:20.522 455551 1046 455904 20715 4 12332 2025-03-27 12:40:58.213 2025-03-27 12:40:58.213 455551 1046 455962 759 8 12333 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 455551 1046 456804 992 12 12334 2025-03-28 09:44:36.899 2025-03-28 09:44:36.899 457080 20026 457183 13399 2 12335 2025-03-28 08:01:28.729 2025-03-28 08:01:28.729 457080 20026 457105 1626 1 12336 2025-03-28 15:04:11.644 2025-03-28 15:04:11.644 457293 20901 457546 21064 2 12337 2025-03-28 20:12:16.94 2025-03-28 20:12:16.94 457293 20901 457957 20275 3 12338 2025-03-28 13:54:42.705 2025-03-28 13:54:42.705 457293 20901 457432 3506 1 12339 2025-03-28 20:30:45.359 2025-03-28 20:30:45.359 457293 20901 457980 652 4 12340 2025-03-28 14:46:53.27 2025-03-28 14:46:53.27 457310 4754 457504 6741 2 12341 2025-03-28 13:11:51.582 2025-03-28 13:11:51.582 457310 4754 457389 2293 1 12342 2025-03-28 14:21:16.802 2025-03-28 14:21:16.802 457324 18219 457468 9330 1 12343 2025-03-29 03:40:43.871 2025-03-29 03:40:43.871 457324 18219 458171 4166 2 12344 2025-03-28 19:55:05.449 2025-03-28 19:55:05.449 457771 21339 457936 1515 3 12345 2025-03-28 18:23:52.107 2025-03-28 18:23:52.107 457771 21339 457823 21383 1 12346 2025-03-28 18:42:35.833 2025-03-28 18:42:35.833 457771 21339 457842 2780 3 12347 2025-03-28 18:47:07.514 2025-03-28 18:47:07.514 457771 21339 457849 21072 4 12348 2025-03-28 18:24:46.032 2025-03-28 18:24:46.032 457771 21339 457825 759 2 12349 2025-03-28 18:48:51.256 2025-03-28 18:48:51.256 457771 21339 457857 20754 6 12350 2025-03-28 19:55:29.503 2025-03-28 19:55:29.503 457771 21339 457937 1806 4 12351 2025-03-28 18:47:23.833 2025-03-28 18:47:23.833 457771 21339 457851 17116 5 12352 2025-03-28 14:54:35.333 2025-03-28 14:54:35.333 457476 17541 457528 12272 3 12353 2025-03-28 15:41:13.823 2025-03-28 15:41:13.823 457476 17541 457605 21332 2 12354 2025-03-28 14:47:36.888 2025-03-28 14:47:36.888 457476 17541 457508 21070 2 12355 2025-03-28 14:48:59.282 2025-03-28 14:48:59.282 457476 17541 457513 19138 1 12356 2025-03-28 15:10:27.789 2025-03-28 15:10:27.789 457476 17541 457562 21207 4 12357 2025-03-28 14:37:05.913 2025-03-28 14:37:05.913 457476 17541 457495 20185 1 12358 2025-03-28 18:37:25.928 2025-03-28 18:37:25.928 457476 17541 457835 20647 3 12359 2025-03-28 21:33:07.807 2025-03-28 21:33:07.807 457509 11942 458017 18321 3 12360 2025-03-28 15:11:14.307 2025-03-28 15:11:14.307 457509 11942 457565 7903 1 12361 2025-03-28 18:17:10.059 2025-03-28 18:17:10.059 457509 11942 457817 1447 2 12362 2025-03-29 07:32:41.051 2025-03-29 07:32:41.051 457509 11942 458307 11750 4 12363 2025-03-28 22:23:03.626 2025-03-28 22:23:03.626 458015 4989 458053 10013 2 12364 2025-03-28 22:32:38.535 2025-03-28 22:32:38.535 458015 4989 458059 12139 3 12365 2025-03-28 21:52:20.592 2025-03-28 21:52:20.592 458015 4989 458025 16571 1 12366 2025-03-28 21:54:53.218 2025-03-28 21:54:53.218 457655 895 458028 7773 2 12367 2025-03-28 16:40:09.412 2025-03-28 16:40:09.412 457655 895 457709 21247 1 12368 2025-03-28 18:37:44.288 2025-03-28 18:37:44.288 457655 895 457836 7760 1 12369 2025-03-29 05:34:22.685 2025-03-29 05:34:22.685 457655 895 458208 1549 3 12370 2025-03-28 18:13:57.609 2025-03-28 18:13:57.609 457655 895 457812 17519 2 12371 2022-09-06 21:17:52.607 2022-09-06 21:17:52.607 1196 8045 1198 11328 1 12372 2022-09-07 10:59:49.775 2022-09-07 10:59:49.775 1196 8045 1207 705 1 12373 2022-11-16 20:42:42.396 2022-11-16 20:42:42.396 4237 9537 4239 21248 1 12374 2024-06-29 19:55:10.437 2024-06-29 19:55:10.437 191551 18269 191569 18525 1 12375 2022-11-11 03:06:25.89 2022-11-11 03:06:25.89 3864 11621 3865 1465 1 12376 2022-09-17 12:14:36.362 2022-09-17 12:14:36.362 1499 19512 1501 19527 1 12377 2022-11-08 21:08:46.441 2022-11-08 21:08:46.441 3687 13361 3689 20381 1 12378 2022-11-08 21:23:25.395 2022-11-08 21:23:25.395 3687 13361 3693 5852 1 12379 2022-11-12 23:10:02.952 2022-11-12 23:10:02.952 3999 768 4004 650 1 12380 2023-05-10 14:24:07.88 2023-05-10 14:24:07.88 21729 631 21747 963 1 12381 2025-02-15 05:37:44.328 2025-02-15 05:37:44.328 21729 631 403692 19333 2 12382 2022-09-13 17:48:58.652 2022-09-13 17:48:58.652 1366 2492 1398 11018 1 12383 2024-08-28 00:09:17.163 2024-08-28 00:09:17.163 222059 21631 222119 16847 1 12384 2022-09-13 19:43:15.457 2022-09-13 19:43:15.457 1404 4831 1406 15282 1 12385 2022-11-08 21:08:46.441 2022-11-08 21:08:46.441 3683 15103 3689 20381 2 12386 2022-11-08 21:23:25.395 2022-11-08 21:23:25.395 3683 15103 3693 5852 2 12387 2022-11-08 20:55:01.071 2022-11-08 20:55:01.071 3683 15103 3687 13361 1 12388 2022-11-09 11:34:37.498 2022-11-09 11:34:37.498 3721 761 3731 19735 1 12389 2022-11-09 17:57:52.203 2022-11-09 17:57:52.203 3760 1483 3762 6616 1 12390 2022-11-09 19:19:02.101 2022-11-09 19:19:02.101 3760 1483 3767 8037 2 12391 2022-11-11 01:32:14.093 2022-11-11 01:32:14.093 3852 10493 3860 17221 1 12392 2023-12-11 23:03:51.62 2023-12-11 23:03:51.62 97530 8059 97606 17690 1 12393 2022-09-15 15:58:43.913 2022-09-15 15:58:43.913 1481 5308 1482 1195 1 12394 2022-11-09 17:57:52.203 2022-11-09 17:57:52.203 3758 10661 3762 6616 2 12395 2022-11-09 17:53:07.861 2022-11-09 17:53:07.861 3758 10661 3760 1483 1 12396 2022-11-09 19:19:02.101 2022-11-09 19:19:02.101 3758 10661 3767 8037 3 12397 2022-09-28 14:35:45.133 2022-09-28 14:35:45.133 1904 965 1905 13767 1 12398 2022-09-29 11:05:33.546 2022-09-29 11:05:33.546 1904 965 1929 7978 4 12399 2022-09-29 11:35:12.301 2022-09-29 11:35:12.301 1904 965 1930 5557 5 12400 2022-09-28 14:48:08.205 2022-09-28 14:48:08.205 1904 965 1907 706 3 12401 2022-09-28 14:36:57.817 2022-09-28 14:36:57.817 1904 965 1906 8004 2 12402 2022-10-19 22:01:35.321 2022-10-19 22:01:35.321 2771 18526 2777 14370 1 12403 2022-09-06 21:17:52.607 2022-09-06 21:17:52.607 1176 16348 1198 11328 2 12404 2022-09-07 10:59:49.775 2022-09-07 10:59:49.775 1176 16348 1207 705 2 12405 2022-09-06 21:08:13.455 2022-09-06 21:08:13.455 1176 16348 1196 8045 1 12406 2022-09-06 21:29:48.407 2022-09-06 21:29:48.407 1197 14122 1201 21427 1 12407 2022-10-01 14:18:48.451 2022-10-01 14:18:48.451 2004 21482 2005 10693 1 12408 2022-09-26 09:29:53.208 2022-09-26 09:29:53.208 1610 18772 1807 11714 1 12409 2022-09-08 17:58:49.571 2022-09-08 17:58:49.571 1226 18441 1246 20776 1 12410 2022-10-31 18:02:22.46 2022-10-31 18:02:22.46 3400 1738 3401 20691 1 12411 2022-11-06 20:41:32.181 2022-11-06 20:41:32.181 3562 5904 3568 1002 1 12412 2022-10-05 11:53:09.439 2022-10-05 11:53:09.439 2193 7654 2194 8080 1 12413 2022-10-19 21:11:06.481 2022-10-19 21:11:06.481 2751 21334 2772 1720 2 12414 2022-10-19 21:01:45.746 2022-10-19 21:01:45.746 2751 21334 2770 9349 1 12415 2022-10-20 17:08:10.321 2022-10-20 17:08:10.321 2866 2196 2872 16847 1 12416 2022-10-24 12:28:40.627 2022-10-24 12:28:40.627 3037 725 3068 8289 4 12417 2022-10-24 06:55:22.723 2022-10-24 06:55:22.723 3037 725 3060 21349 3 12418 2022-10-23 19:10:34.094 2022-10-23 19:10:34.094 3037 725 3039 19826 1 12419 2022-10-23 20:00:31.066 2022-10-23 20:00:31.066 3037 725 3042 1617 2 12420 2025-03-22 22:24:55.936 2025-03-22 22:24:55.936 104413 21768 448818 16970 1 12421 2022-10-27 09:10:19.768 2022-10-27 09:10:19.768 3191 21180 3231 11716 1 12422 2022-10-27 12:59:54.331 2022-10-27 12:59:54.331 3191 21180 3239 1833 2 12423 2022-09-11 16:02:45.105 2022-09-11 16:02:45.105 1247 1472 1317 1389 3 12424 2022-09-08 18:28:30.666 2022-09-08 18:28:30.666 1247 1472 1250 8664 1 12425 2022-09-11 18:23:41.483 2022-09-11 18:23:41.483 1247 1472 1322 13198 5 12426 2022-09-09 08:21:40.743 2022-09-09 08:21:40.743 1247 1472 1277 2347 1 12427 2022-09-11 18:26:53.62 2022-09-11 18:26:53.62 1247 1472 1323 5761 6 12428 2022-09-11 17:14:14.352 2022-09-11 17:14:14.352 1247 1472 1319 674 4 12429 2022-09-08 18:36:46.401 2022-09-08 18:36:46.401 1247 1472 1253 16351 2 12430 2024-03-06 18:38:01.339 2024-03-06 18:38:01.339 137892 5427 137922 6229 1 12431 2024-03-07 08:35:58.768 2024-03-07 08:35:58.768 138224 7119 138228 1571 1 12432 2024-03-10 17:01:25.599 2024-03-10 17:01:25.599 140625 1425 140680 2596 1 12433 2024-06-21 07:55:30.51 2024-06-21 07:55:30.51 187580 19394 187585 11158 1 12434 2022-09-13 19:51:23.469 2022-09-13 19:51:23.469 1389 690 1408 16954 1 12435 2022-09-15 14:33:38.43 2022-09-15 14:33:38.43 1396 13169 1474 14657 1 12436 2022-09-14 13:30:05.663 2022-09-14 13:30:05.663 1421 837 1430 16301 1 12437 2022-09-14 13:45:46.963 2022-09-14 13:45:46.963 1432 642 1433 16387 1 12438 2022-09-14 19:33:53.098 2022-09-14 19:33:53.098 1452 1244 1453 19812 1 12439 2022-10-05 11:53:09.439 2022-10-05 11:53:09.439 2188 14465 2194 8080 2 12440 2022-10-05 12:09:50.987 2022-10-05 12:09:50.987 2188 14465 2195 20683 1 12441 2022-10-05 11:38:14.169 2022-10-05 11:38:14.169 2188 14465 2193 7654 1 12442 2024-06-24 00:37:00.985 2024-06-24 00:37:00.985 188675 7966 188714 20434 1 12443 2024-06-26 08:39:23.239 2024-06-26 08:39:23.239 189750 21164 189751 20624 1 12444 2024-06-28 05:52:15.129 2024-06-28 05:52:15.129 190605 20912 190861 10549 1 12445 2025-02-24 17:59:48.45 2025-02-24 17:59:48.45 191309 9026 415336 13097 2 12446 2024-06-29 15:43:51.302 2024-06-29 15:43:51.302 191309 9026 191467 18673 1 12447 2022-10-06 19:15:16.74 2022-10-06 19:15:16.74 2235 4768 2238 4259 1 12448 2022-10-12 17:35:54.341 2022-10-12 17:35:54.341 2457 844 2462 895 1 12449 2022-10-14 11:26:09.33 2022-10-14 11:26:09.33 2477 1064 2512 2543 1 12450 2022-10-16 01:16:06.402 2022-10-16 01:16:06.402 2560 18412 2569 20245 1 12451 2022-10-17 21:32:01.744 2022-10-17 21:32:01.744 2612 20956 2646 13574 1 12452 2022-10-19 17:55:54.158 2022-10-19 17:55:54.158 2734 21040 2743 4083 2 12453 2022-10-19 21:08:33.378 2022-10-19 21:08:33.378 2734 21040 2771 18526 1 12454 2022-10-19 16:37:31.848 2022-10-19 16:37:31.848 2734 21040 2739 13921 1 12455 2022-10-19 17:49:03.471 2022-10-19 17:49:03.471 2734 21040 2742 1959 1 12456 2022-10-19 16:40:38.499 2022-10-19 16:40:38.499 2734 21040 2740 20864 2 12457 2022-10-19 22:01:35.321 2022-10-19 22:01:35.321 2734 21040 2777 14370 2 12458 2022-10-19 16:40:38.499 2022-10-19 16:40:38.499 2739 13921 2740 20864 1 12459 2022-10-19 17:55:54.158 2022-10-19 17:55:54.158 2742 1959 2743 4083 1 12460 2024-07-29 13:55:58.551 2024-07-29 13:55:58.551 207349 732 207429 706 1 12461 2022-10-24 12:28:40.627 2022-10-24 12:28:40.627 3060 21349 3068 8289 1 12462 2022-10-25 14:50:20.847 2022-10-25 14:50:20.847 3119 5829 3126 2719 1 12463 2022-10-25 23:09:05.645 2022-10-25 23:09:05.645 3144 802 3145 11938 1 12464 2022-10-26 08:48:39.15 2022-10-26 08:48:39.15 3153 641 3160 6382 1 12465 2022-10-27 12:59:54.331 2022-10-27 12:59:54.331 3231 11716 3239 1833 1 12466 2024-06-30 10:59:52.76 2024-06-30 10:59:52.76 191852 4043 191857 1602 1 12467 2024-07-02 00:54:00.607 2024-07-02 00:54:00.607 192967 16808 192971 886 1 12468 2024-07-04 17:45:16.836 2024-07-04 17:45:16.836 194626 750 194629 3478 1 12469 2024-07-11 15:43:09.395 2024-07-11 15:43:09.395 197687 21279 198471 1319 1 12470 2025-03-13 13:02:38.075 2025-03-13 13:02:38.075 330790 21803 436300 10821 1 12471 2025-03-21 18:20:53.34 2025-03-21 18:20:53.34 338461 13921 447259 21072 1 12472 2024-07-13 01:09:55.409 2024-07-13 01:09:55.409 198720 21275 198982 2710 1 12473 2024-07-17 05:09:47.218 2024-07-17 05:09:47.218 200762 20636 201110 5776 1 12474 2025-02-26 00:16:56.214 2025-02-26 00:16:56.214 200762 20636 416968 4313 2 12475 2024-07-26 23:10:12.286 2024-07-26 23:10:12.286 206112 16695 206113 2514 1 12476 2024-09-19 04:33:57.349 2024-09-19 04:33:57.349 239328 1411 240894 21091 1 12477 2025-03-19 20:03:35.128 2025-03-19 20:03:35.128 239328 1411 444352 1603 2 12478 2024-07-28 14:40:39.506 2024-07-28 14:40:39.506 206938 4238 206958 18930 1 12479 2024-08-18 07:23:24.009 2024-08-18 07:23:24.009 216356 17148 216426 17592 1 12480 2024-08-25 06:05:39.143 2024-08-25 06:05:39.143 220244 844 220375 21216 1 12481 2024-08-28 00:00:30.305 2024-08-28 00:00:30.305 222104 12261 222114 16954 1 12482 2024-11-24 22:46:58.819 2024-11-24 22:46:58.819 307274 1571 307299 730 1 12483 2025-03-12 14:01:44.061 2025-03-12 14:01:44.061 354472 1469 435157 16350 1 12484 2025-03-09 14:55:41.376 2025-03-09 14:55:41.376 356269 11516 430991 5522 2 12485 2025-03-02 07:58:42.927 2025-03-02 07:58:42.927 356269 11516 422025 1751 1 12486 2025-01-30 17:29:20.54 2025-01-30 17:29:20.54 386140 11750 386199 919 1 12487 2025-03-01 15:09:24.705 2025-03-01 15:09:24.705 386140 11750 421301 11417 2 12488 2025-02-15 20:15:40.004 2025-02-15 20:15:40.004 395604 20849 404371 18011 2 12489 2025-02-08 20:40:32.843 2025-02-08 20:40:32.843 395604 20849 395841 21356 1 12490 2024-09-01 18:54:11.684 2024-09-01 18:54:11.684 225266 14280 225332 1761 1 12491 2024-09-05 12:29:22.113 2024-09-05 12:29:22.113 228078 19198 228093 6202 1 12492 2024-09-24 11:13:55.112 2024-09-24 11:13:55.112 245900 5725 245982 2724 1 12493 2024-11-13 08:23:01.545 2024-11-13 08:23:01.545 294915 21051 294981 20062 1 12494 2024-11-24 22:35:53.523 2024-11-24 22:35:53.523 307285 19071 307291 8173 1 12495 2024-11-25 13:32:41.871 2024-11-25 13:32:41.871 307587 5522 307921 7983 1 12496 2024-11-25 08:27:14.94 2024-11-25 08:27:14.94 307595 19459 307598 5527 1 12497 2024-11-25 10:03:20.556 2024-11-25 10:03:20.556 307681 17082 307702 20479 1 12498 2024-11-25 15:43:19.372 2024-11-25 15:43:19.372 308051 21815 308086 9084 1 12499 2024-11-25 19:22:02.351 2024-11-25 19:22:02.351 308284 19263 308301 16939 1 12500 2024-12-06 14:39:50.834 2024-12-06 14:39:50.834 320368 19863 320752 16839 1 12501 2024-12-15 11:20:42.942 2024-12-15 11:20:42.942 330494 12245 330574 12139 1 12502 2025-03-12 03:53:10.711 2025-03-12 03:53:10.711 330774 4167 434596 21521 1 12503 2025-03-13 13:02:38.075 2025-03-13 13:02:38.075 330774 4167 436300 10821 2 12504 2025-03-13 01:06:34.526 2025-03-13 01:06:34.526 330774 4167 435793 21062 2 12505 2025-03-13 04:29:28.935 2025-03-13 04:29:28.935 330774 4167 435890 21139 3 12506 2025-03-13 06:49:12.205 2025-03-13 06:49:12.205 330774 4167 435961 20409 4 12507 2025-03-13 08:53:13.335 2025-03-13 08:53:13.335 330774 4167 436034 7913 4 12508 2025-03-13 13:09:18.715 2025-03-13 13:09:18.715 330774 4167 436309 9183 5 12509 2024-12-15 13:32:03.652 2024-12-15 13:32:03.652 330774 4167 330790 21803 1 12510 2025-02-12 18:25:40.654 2025-02-12 18:25:40.654 401127 19535 401131 9366 1 12511 2025-02-12 21:07:41.479 2025-02-12 21:07:41.479 401127 19535 401288 9036 2 12512 2025-02-12 19:43:20.657 2025-02-12 19:43:20.657 401192 21180 401207 701 1 12513 2025-02-12 21:08:14.398 2025-02-12 21:08:14.398 401192 21180 401289 18528 2 12514 2025-02-12 21:59:16.229 2025-02-12 21:59:16.229 401277 925 401312 15139 2 12515 2025-02-12 21:12:32.095 2025-02-12 21:12:32.095 401277 925 401292 10986 1 12516 2025-02-13 05:19:07.197 2025-02-13 05:19:07.197 401285 14169 401517 1038 2 12517 2025-02-12 22:03:21.403 2025-02-12 22:03:21.403 401285 14169 401317 20841 1 12518 2025-02-13 00:12:59.327 2025-02-13 00:12:59.327 401316 7587 401391 21088 2 12519 2025-02-12 23:53:05.332 2025-02-12 23:53:05.332 401316 7587 401371 20979 1 12520 2025-02-13 00:14:02.916 2025-02-13 00:14:02.916 401385 2431 401392 11498 2 12521 2025-02-13 00:10:06.402 2025-02-13 00:10:06.402 401385 2431 401390 12368 1 12522 2025-02-13 05:20:07.369 2025-02-13 05:20:07.369 401513 1122 401519 14705 1 12523 2025-02-13 09:39:54.94 2025-02-13 09:39:54.94 401513 1122 401652 2459 2 12524 2025-02-13 10:18:32.216 2025-02-13 10:18:32.216 401552 21710 401688 8416 2 12525 2025-02-13 06:38:38.441 2025-02-13 06:38:38.441 401552 21710 401557 16230 1 12526 2025-02-13 10:44:38.637 2025-02-13 10:44:38.637 401563 1454 401719 21148 2 12527 2025-02-13 10:19:16.258 2025-02-13 10:19:16.258 401563 1454 401690 9166 1 12528 2025-02-13 11:40:52.008 2025-02-13 11:40:52.008 401754 16124 401773 2123 1 12529 2025-02-13 17:36:09.026 2025-02-13 17:36:09.026 401754 16124 402351 20906 2 12530 2025-02-13 14:33:40.539 2025-02-13 14:33:40.539 402031 683 402062 14857 2 12531 2025-02-13 18:39:20.946 2025-02-13 18:39:20.946 402031 683 402467 10549 4 12532 2025-02-13 14:22:23.092 2025-02-13 14:22:23.092 402031 683 402039 5752 1 12533 2025-02-13 18:36:10.464 2025-02-13 18:36:10.464 402031 683 402462 21048 3 12534 2025-02-13 22:42:39.676 2025-02-13 22:42:39.676 402042 17046 402676 17011 1 12535 2025-02-14 01:43:15.165 2025-02-14 01:43:15.165 402042 17046 402758 21455 2 12536 2025-02-13 16:13:41.622 2025-02-13 16:13:41.622 402134 775 402233 6164 1 12537 2025-02-13 17:53:32.583 2025-02-13 17:53:32.583 402134 775 402382 11450 2 12538 2025-02-13 21:46:49.289 2025-02-13 21:46:49.289 402303 19524 402639 15200 3 12539 2025-02-13 19:07:43.887 2025-02-13 19:07:43.887 402303 19524 402494 21248 1 12540 2025-02-13 20:29:08.553 2025-02-13 20:29:08.553 402303 19524 402572 628 2 12541 2025-02-13 17:52:54.127 2025-02-13 17:52:54.127 402374 16097 402380 19117 2 12542 2025-02-13 17:51:11.575 2025-02-13 17:51:11.575 402374 16097 402378 9171 1 12543 2025-02-13 18:09:16.661 2025-02-13 18:09:16.661 402399 5708 402415 20614 2 12544 2025-02-13 18:05:21.685 2025-02-13 18:05:21.685 402399 5708 402408 7960 1 12545 2025-02-14 09:14:53.538 2025-02-14 09:14:53.538 402594 20681 402934 1114 2 12546 2025-02-14 09:09:15.104 2025-02-14 09:09:15.104 402594 20681 402927 20198 1 12547 2025-02-14 07:19:25.253 2025-02-14 07:19:25.253 402682 14774 402866 2460 2 12548 2025-02-14 00:55:01.516 2025-02-14 00:55:01.516 402682 14774 402751 705 1 12549 2025-02-15 21:27:58.743 2025-02-15 21:27:58.743 402754 11522 404423 732 2 12550 2025-02-15 21:07:23.285 2025-02-15 21:07:23.285 402754 11522 404410 20599 1 12551 2025-02-15 15:21:24.854 2025-02-15 15:21:24.854 402755 9331 404135 17064 2 12552 2025-02-15 08:40:10 2025-02-15 08:40:10 402755 9331 403817 8168 1 12553 2025-02-15 20:58:17.848 2025-02-15 20:58:17.848 402755 9331 404397 18637 3 12554 2025-02-14 09:21:37.901 2025-02-14 09:21:37.901 402799 4166 402938 4115 1 12555 2025-02-15 08:14:54.444 2025-02-15 08:14:54.444 402799 4166 403796 6537 2 12556 2025-02-14 09:35:00.541 2025-02-14 09:35:00.541 402921 11621 402956 4754 2 12557 2025-02-14 09:14:31.31 2025-02-14 09:14:31.31 402921 11621 402933 19689 1 12558 2025-02-14 11:52:45.377 2025-02-14 11:52:45.377 402986 20756 403047 10981 1 12559 2025-02-14 11:57:00.019 2025-02-14 11:57:00.019 402986 20756 403051 17592 2 12560 2025-02-15 21:00:09.39 2025-02-15 21:00:09.39 402995 4624 404401 16176 2 12561 2025-02-14 18:16:39.63 2025-02-14 18:16:39.63 402995 4624 403365 10280 1 12562 2025-02-18 14:48:31.867 2025-02-18 14:48:31.867 408035 20523 408053 19527 1 12563 2025-02-18 14:58:15.052 2025-02-18 14:58:15.052 408035 20523 408072 4128 2 12564 2025-02-14 11:43:39.454 2025-02-14 11:43:39.454 403030 17147 403039 2528 1 12565 2025-02-14 15:10:06.651 2025-02-14 15:10:06.651 403030 17147 403232 628 2 12566 2025-02-14 15:11:11.578 2025-02-14 15:11:11.578 403030 17147 403233 4958 3 12567 2025-02-14 13:58:21.315 2025-02-14 13:58:21.315 403137 9109 403165 15463 1 12568 2025-02-14 14:05:39.881 2025-02-14 14:05:39.881 403137 9109 403171 738 2 12569 2025-02-14 16:01:20.329 2025-02-14 16:01:20.329 403237 1039 403260 20980 2 12570 2025-02-14 15:26:29.929 2025-02-14 15:26:29.929 403237 1039 403240 9496 1 12571 2025-02-14 16:03:33.36 2025-02-14 16:03:33.36 403237 1039 403263 11165 3 12572 2025-02-25 08:13:24.355 2025-02-25 08:13:24.355 403695 16816 415892 8459 3 12573 2025-02-17 16:27:41.318 2025-02-17 16:27:41.318 403695 16816 406927 21136 2 12574 2025-02-25 09:00:59.368 2025-02-25 09:00:59.368 403695 16816 415933 17014 4 12575 2025-02-15 09:20:27.865 2025-02-15 09:20:27.865 403695 16816 403851 21287 1 12576 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403806 18274 403809 8416 2 12577 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403806 18274 403808 10690 1 12578 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403806 18274 403813 11073 3 12579 2025-02-16 00:38:11.791 2025-02-16 00:38:11.791 403816 18265 404529 21805 3 12580 2025-02-15 20:58:41.655 2025-02-15 20:58:41.655 403816 18265 404398 6361 2 12581 2025-02-15 12:18:03.031 2025-02-15 12:18:03.031 403816 18265 403974 965 1 12582 2025-02-15 21:02:19.071 2025-02-15 21:02:19.071 403831 17291 404404 11153 2 12583 2025-02-15 08:59:25.305 2025-02-15 08:59:25.305 403831 17291 403833 1114 1 12584 2025-02-15 11:30:02.261 2025-02-15 11:30:02.261 403919 13763 403922 19018 1 12585 2025-02-15 11:33:00.453 2025-02-15 11:33:00.453 403919 13763 403926 640 2 12586 2025-02-15 11:35:19.418 2025-02-15 11:35:19.418 403919 13763 403927 21400 3 12587 2025-02-15 11:41:15.703 2025-02-15 11:41:15.703 403919 13763 403934 21222 4 12588 2025-02-15 11:42:12.94 2025-02-15 11:42:12.94 403919 13763 403937 997 5 12589 2025-02-15 11:44:43.466 2025-02-15 11:44:43.466 403919 13763 403941 21356 6 12590 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403919 13763 403948 9421 7 12591 2025-02-15 13:34:01.634 2025-02-15 13:34:01.634 403971 14220 404049 628 1 12592 2025-02-15 21:58:28.939 2025-02-15 21:58:28.939 403971 14220 404442 13249 2 12593 2025-02-15 22:17:19.808 2025-02-15 22:17:19.808 403971 14220 404462 15719 3 12594 2025-02-16 01:50:18.224 2025-02-16 01:50:18.224 403971 14220 404598 9796 4 12595 2025-02-16 02:03:14.704 2025-02-16 02:03:14.704 403971 14220 404607 1010 5 12596 2025-02-15 19:59:11.925 2025-02-15 19:59:11.925 404051 9036 404363 11789 3 12597 2025-02-15 19:18:53.025 2025-02-15 19:18:53.025 404051 9036 404331 16724 2 12598 2025-02-15 15:07:04.192 2025-02-15 15:07:04.192 404051 9036 404117 1697 1 12599 2025-02-15 16:07:57.295 2025-02-15 16:07:57.295 404126 2734 404183 826 2 12600 2025-02-15 15:17:02.374 2025-02-15 15:17:02.374 404126 2734 404130 21338 1 12601 2025-02-15 22:39:54.926 2025-02-15 22:39:54.926 404139 1833 404475 14385 2 12602 2025-02-15 15:26:52.878 2025-02-15 15:26:52.878 404139 1833 404142 4345 1 12603 2025-02-15 17:13:46.392 2025-02-15 17:13:46.392 404186 12736 404237 4035 1 12604 2025-02-15 18:47:32.161 2025-02-15 18:47:32.161 404186 12736 404301 21140 2 12605 2025-02-15 16:40:48.426 2025-02-15 16:40:48.426 404197 17727 404217 9346 1 12606 2025-02-15 20:58:13.34 2025-02-15 20:58:13.34 404197 17727 404396 14271 2 12607 2025-02-18 17:21:59.549 2025-02-18 17:21:59.549 408116 3456 408295 20683 2 12608 2025-02-18 15:33:49.03 2025-02-18 15:33:49.03 408116 3456 408149 4958 1 12609 2025-02-18 16:14:16.561 2025-02-18 16:14:16.561 408184 7913 408195 18865 1 12610 2025-02-18 16:20:20.425 2025-02-18 16:20:20.425 408184 7913 408211 21416 2 12611 2025-02-18 16:38:41.867 2025-02-18 16:38:41.867 408216 21103 408233 1471 1 12612 2025-02-18 16:44:31.975 2025-02-18 16:44:31.975 408216 21103 408245 2327 2 12613 2025-02-18 17:04:15.53 2025-02-18 17:04:15.53 408257 20816 408275 15146 2 12614 2025-02-18 16:58:31.644 2025-02-18 16:58:31.644 408257 20816 408262 11527 1 12615 2025-03-01 03:46:19.995 2025-03-01 03:46:19.995 420750 5759 420782 718 1 12616 2025-03-03 20:27:34.86 2025-03-03 20:27:34.86 420750 5759 424093 803 3 12617 2025-03-03 17:58:10.124 2025-03-03 17:58:10.124 420750 5759 423923 18225 2 12618 2025-03-03 22:02:03.844 2025-03-03 22:02:03.844 420750 5759 424208 9985 4 12619 2025-02-16 01:52:42.394 2025-02-16 01:52:42.394 404203 21012 404600 19217 6 12620 2025-02-16 00:43:36.491 2025-02-16 00:43:36.491 404203 21012 404546 16562 5 12621 2025-02-15 19:20:37.58 2025-02-15 19:20:37.58 404203 21012 404332 9845 2 12622 2025-02-15 19:22:43.418 2025-02-15 19:22:43.418 404203 21012 404334 16059 3 12623 2025-02-15 17:18:16.753 2025-02-15 17:18:16.753 404203 21012 404242 21442 1 12624 2025-02-15 21:08:46.209 2025-02-15 21:08:46.209 404203 21012 404411 20616 4 12625 2025-02-18 09:13:37.874 2025-02-18 09:13:37.874 406078 20198 407646 21555 1 12626 2025-02-18 10:19:57.539 2025-02-18 10:19:57.539 406078 20198 407718 4035 2 12627 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416632 18174 416938 11263 6 12628 2025-02-25 23:30:50.251 2025-02-25 23:30:50.251 416632 18174 416934 17533 4 12629 2025-02-25 22:41:34.224 2025-02-25 22:41:34.224 416632 18174 416881 16830 2 12630 2025-02-25 23:15:32.556 2025-02-25 23:15:32.556 416632 18174 416929 19821 3 12631 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416632 18174 416939 7773 7 12632 2025-02-25 22:30:12.229 2025-02-25 22:30:12.229 416632 18174 416869 2151 1 12633 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416632 18174 416935 21416 5 12634 2025-02-17 23:18:13.623 2025-02-17 23:18:13.623 406482 20222 407362 20906 2 12635 2025-02-17 23:11:22.372 2025-02-17 23:11:22.372 406482 20222 407355 10608 1 12636 2025-02-18 10:38:15.814 2025-02-18 10:38:15.814 407283 1726 407731 18601 2 12637 2025-02-18 07:50:49.591 2025-02-18 07:50:49.591 407283 1726 407561 21430 1 12638 2025-02-17 22:33:57.285 2025-02-17 22:33:57.285 407308 733 407312 10060 1 12639 2025-02-17 22:43:36.703 2025-02-17 22:43:36.703 407308 733 407327 6335 2 12640 2025-02-18 11:53:14.202 2025-02-18 11:53:14.202 407461 16653 407800 21208 2 12641 2025-02-18 09:34:55.173 2025-02-18 09:34:55.173 407461 16653 407669 21019 1 12642 2025-02-18 09:48:30.76 2025-02-18 09:48:30.76 407620 11491 407686 11220 2 12643 2025-02-18 09:40:20.843 2025-02-18 09:40:20.843 407620 11491 407675 17091 1 12644 2025-02-24 09:20:43.255 2025-02-24 09:20:43.255 414648 736 414750 11967 2 12645 2025-02-24 08:58:52.015 2025-02-24 08:58:52.015 414648 736 414726 20062 1 12646 2025-03-01 21:12:44.217 2025-03-01 21:12:44.217 420776 4768 421661 16942 2 12647 2025-03-01 13:35:49.198 2025-03-01 13:35:49.198 420776 4768 421191 929 1 12648 2025-02-18 11:05:36.927 2025-02-18 11:05:36.927 407625 19484 407760 17365 2 12649 2025-02-18 10:58:58.861 2025-02-18 10:58:58.861 407625 19484 407750 4043 1 12650 2025-02-18 09:55:50.123 2025-02-18 09:55:50.123 407673 6594 407702 4633 2 12651 2025-02-18 09:42:09.408 2025-02-18 09:42:09.408 407673 6594 407678 11165 1 12652 2025-02-18 18:30:33.058 2025-02-18 18:30:33.058 407699 20778 408380 20280 2 12653 2025-02-18 13:51:04.486 2025-02-18 13:51:04.486 407699 20778 407961 20663 1 12654 2025-02-18 14:45:36.378 2025-02-18 14:45:36.378 407951 18473 408045 656 2 12655 2025-02-18 14:30:13.996 2025-02-18 14:30:13.996 407951 18473 408019 16998 1 12656 2025-02-18 14:02:54.389 2025-02-18 14:02:54.389 407974 4831 407983 9476 1 12657 2025-02-18 14:30:30.823 2025-02-18 14:30:30.823 407974 4831 408020 20612 2 12658 2025-02-18 14:39:44.954 2025-02-18 14:39:44.954 407974 4831 408035 20523 3 12659 2025-02-18 14:48:31.867 2025-02-18 14:48:31.867 407974 4831 408053 19527 4 12660 2025-02-18 14:58:15.052 2025-02-18 14:58:15.052 407974 4831 408072 4128 5 12661 2025-02-19 01:07:53.931 2025-02-19 01:07:53.931 407979 11866 408655 18526 1 12662 2025-02-19 01:21:44.02 2025-02-19 01:21:44.02 407979 11866 408657 1122 2 12663 2025-02-18 15:03:48.509 2025-02-18 15:03:48.509 408016 15728 408093 2775 5 12664 2025-02-18 14:41:31.153 2025-02-18 14:41:31.153 408016 15728 408039 21451 2 12665 2025-02-18 14:34:41.255 2025-02-18 14:34:41.255 408016 15728 408026 17797 1 12666 2025-02-18 14:49:16.244 2025-02-18 14:49:16.244 408016 15728 408056 20157 3 12667 2025-02-18 14:56:12.684 2025-02-18 14:56:12.684 408016 15728 408069 8284 4 12668 2025-02-18 14:52:29.135 2025-02-18 14:52:29.135 408016 15728 408064 10821 2 12669 2025-02-20 14:24:16.616 2025-02-20 14:24:16.616 409760 21349 410540 3642 2 12670 2025-02-20 03:14:09.287 2025-02-20 03:14:09.287 409760 21349 409969 11992 1 12671 2025-02-20 21:19:23.333 2025-02-20 21:19:23.333 409954 20647 410985 6717 1 12672 2025-02-20 13:12:01.912 2025-02-20 13:12:01.912 410065 14791 410393 663 1 12673 2025-02-20 13:14:21.143 2025-02-20 13:14:21.143 410065 14791 410404 15690 2 12674 2025-02-20 13:54:55.86 2025-02-20 13:54:55.86 410068 14213 410479 21768 2 12675 2025-02-20 13:10:18.245 2025-02-20 13:10:18.245 410068 14213 410386 20623 1 12676 2025-03-03 22:40:08.6 2025-03-03 22:40:08.6 422949 695 424225 1142 2 12677 2025-03-03 01:09:16.087 2025-03-03 01:09:16.087 422949 695 423111 11395 1 12678 2025-02-20 09:44:06.045 2025-02-20 09:44:06.045 410097 14688 410148 13055 2 12679 2025-02-20 09:38:13.286 2025-02-20 09:38:13.286 410097 14688 410143 17209 1 12680 2025-02-20 13:24:08.732 2025-02-20 13:24:08.732 410368 9107 410422 11885 1 12681 2025-02-20 15:21:53.583 2025-02-20 15:21:53.583 410368 9107 410630 708 2 12682 2025-02-20 13:37:46.345 2025-02-20 13:37:46.345 410435 7960 410449 17455 1 12683 2025-02-20 15:10:41.559 2025-02-20 15:10:41.559 410435 7960 410612 18402 2 12684 2025-02-20 14:27:17.921 2025-02-20 14:27:17.921 410439 6430 410544 6471 2 12685 2025-02-20 13:43:23.67 2025-02-20 13:43:23.67 410439 6430 410456 3544 1 12686 2025-02-20 16:32:18.968 2025-02-20 16:32:18.968 410452 12769 410717 18178 2 12687 2025-02-20 13:47:02.291 2025-02-20 13:47:02.291 410452 12769 410464 10490 1 12688 2025-02-20 13:59:10.516 2025-02-20 13:59:10.516 410474 20187 410485 1983 2 12689 2025-02-20 14:14:57.727 2025-02-20 14:14:57.727 410474 20187 410521 1039 3 12690 2025-02-20 13:57:19.061 2025-02-20 13:57:19.061 410474 20187 410481 19199 1 12691 2025-02-20 14:53:59.012 2025-02-20 14:53:59.012 410543 2596 410590 2039 2 12692 2025-02-20 14:48:25.788 2025-02-20 14:48:25.788 410543 2596 410584 21824 1 12693 2025-02-20 15:28:41.412 2025-02-20 15:28:41.412 410569 20450 410646 14037 3 12694 2025-02-20 15:26:13.049 2025-02-20 15:26:13.049 410569 20450 410638 19863 1 12695 2025-02-20 15:28:17.42 2025-02-20 15:28:17.42 410569 20450 410645 2233 2 12696 2025-02-20 15:39:39.542 2025-02-20 15:39:39.542 410651 18468 410669 19857 2 12697 2025-02-20 15:33:08.038 2025-02-20 15:33:08.038 410651 18468 410657 20409 1 12698 2025-02-20 16:30:28.93 2025-02-20 16:30:28.93 410695 1039 410715 21672 2 12699 2025-02-20 16:29:29.422 2025-02-20 16:29:29.422 410695 1039 410713 14515 1 12700 2025-02-20 16:49:56.749 2025-02-20 16:49:56.749 410703 1428 410747 5171 3 12701 2025-02-20 16:17:43.309 2025-02-20 16:17:43.309 410703 1428 410706 15732 1 12702 2025-02-20 16:40:34.341 2025-02-20 16:40:34.341 410703 1428 410731 9537 2 12703 2025-02-23 04:19:51.249 2025-02-23 04:19:51.249 413076 7675 413322 18528 1 12704 2025-02-23 08:35:07.431 2025-02-23 08:35:07.431 413076 7675 413475 11165 3 12705 2025-02-23 08:34:08.791 2025-02-23 08:34:08.791 413076 7675 413473 4958 2 12706 2025-02-23 05:52:33.444 2025-02-23 05:52:33.444 413354 21119 413361 15732 1 12707 2025-02-24 10:41:45.907 2025-02-24 10:41:45.907 413354 21119 414840 21247 2 12708 2025-02-23 13:42:40.039 2025-02-23 13:42:40.039 413811 20687 413826 21734 1 12709 2025-02-23 13:46:52.674 2025-02-23 13:46:52.674 413811 20687 413840 19333 2 12710 2025-02-23 14:06:05.704 2025-02-23 14:06:05.704 413872 20754 413876 998 1 12711 2025-02-23 15:38:38.942 2025-02-23 15:38:38.942 413872 20754 414044 16177 2 12712 2025-02-23 14:10:00.237 2025-02-23 14:10:00.237 413872 20754 413882 21798 2 12713 2025-02-23 14:06:26.991 2025-02-23 14:06:26.991 413872 20754 413877 8998 1 12714 2025-03-19 12:59:17.627 2025-03-19 12:59:17.627 413897 848 443662 19924 1 12715 2025-03-01 12:28:55.168 2025-03-01 12:28:55.168 421028 4754 421129 16296 2 12716 2025-03-01 11:18:17.292 2025-03-01 11:18:17.292 421028 4754 421033 19494 1 12717 2025-02-23 14:39:05.648 2025-02-23 14:39:05.648 413903 17116 413943 18426 1 12718 2025-02-23 15:04:42.891 2025-02-23 15:04:42.891 413903 17116 413991 994 4 12719 2025-02-23 14:36:10.055 2025-02-23 14:36:10.055 413903 17116 413938 1429 2 12720 2025-02-23 14:33:44.859 2025-02-23 14:33:44.859 413903 17116 413935 3979 1 12721 2025-02-23 14:58:38.987 2025-02-23 14:58:38.987 413903 17116 413980 20225 3 12722 2025-02-23 14:46:15.599 2025-02-23 14:46:15.599 413903 17116 413957 7185 2 12723 2025-02-23 14:42:29.438 2025-02-23 14:42:29.438 413903 17116 413949 2151 2 12724 2025-02-23 15:04:42.891 2025-02-23 15:04:42.891 413957 7185 413991 994 2 12725 2025-02-23 14:58:38.987 2025-02-23 14:58:38.987 413957 7185 413980 20225 1 12726 2025-02-24 18:26:50.625 2025-02-24 18:26:50.625 414058 959 415356 1130 2 12727 2025-02-23 19:36:35.683 2025-02-23 19:36:35.683 414058 959 414295 14731 1 12728 2025-02-23 16:53:39.107 2025-02-23 16:53:39.107 414116 13177 414127 9353 1 12729 2025-02-23 16:57:39.454 2025-02-23 16:57:39.454 414116 13177 414138 19292 2 12730 2025-02-23 20:14:51.403 2025-02-23 20:14:51.403 414177 4128 414344 1647 2 12731 2025-02-23 19:53:43.531 2025-02-23 19:53:43.531 414177 4128 414319 6136 1 12732 2025-02-24 11:42:12.636 2025-02-24 11:42:12.636 414324 19198 414908 21166 1 12733 2025-02-24 11:53:03.345 2025-02-24 11:53:03.345 414324 19198 414917 1717 2 12734 2025-02-24 06:28:04.786 2025-02-24 06:28:04.786 414626 750 414644 17411 1 12735 2025-02-24 09:22:07.925 2025-02-24 09:22:07.925 414626 750 414752 21033 2 12736 2025-03-01 13:48:34.149 2025-03-01 13:48:34.149 420921 780 421211 10469 1 12737 2025-03-01 14:04:40.333 2025-03-01 14:04:40.333 420921 780 421229 16424 2 12738 2025-02-24 09:01:59.271 2025-02-24 09:01:59.271 414675 19126 414728 4862 2 12739 2025-02-24 07:30:48.442 2025-02-24 07:30:48.442 414675 19126 414676 9109 1 12740 2025-02-24 12:15:39.908 2025-02-24 12:15:39.908 414751 3213 414939 15577 2 12741 2025-02-24 09:31:52.404 2025-02-24 09:31:52.404 414751 3213 414762 16424 1 12742 2025-02-24 13:20:15.484 2025-02-24 13:20:15.484 414997 4027 415014 20691 2 12743 2025-02-24 13:17:16.621 2025-02-24 13:17:16.621 414997 4027 415011 9350 1 12744 2025-02-24 21:48:39.465 2025-02-24 21:48:39.465 415020 9336 415567 721 1 12745 2025-02-25 13:37:01.311 2025-02-25 13:37:01.311 415020 9336 416217 21603 2 12746 2025-02-24 15:08:58.01 2025-02-24 15:08:58.01 415140 18526 415166 21672 2 12747 2025-02-24 15:05:52.833 2025-02-24 15:05:52.833 415140 18526 415162 16154 1 12748 2025-02-24 18:57:39.324 2025-02-24 18:57:39.324 415378 16276 415388 11498 2 12749 2025-02-24 18:55:58.434 2025-02-24 18:55:58.434 415378 16276 415385 762 1 12750 2025-02-24 19:24:15.21 2025-02-24 19:24:15.21 415391 4802 415413 11328 2 12751 2025-02-24 19:22:28.812 2025-02-24 19:22:28.812 415391 4802 415410 700 1 12752 2025-02-24 19:48:16.361 2025-02-24 19:48:16.361 415406 17221 415451 20623 2 12753 2025-02-24 19:28:24.165 2025-02-24 19:28:24.165 415406 17221 415418 14552 1 12754 2025-02-24 21:38:21.421 2025-02-24 21:38:21.421 415423 15941 415559 16229 1 12755 2025-02-25 21:10:51.113 2025-02-25 21:10:51.113 415918 7992 416799 21003 2 12756 2025-02-25 08:58:22.67 2025-02-25 08:58:22.67 415918 7992 415928 9438 1 12757 2025-02-25 22:18:21.782 2025-02-25 22:18:21.782 416199 8289 416857 2338 2 12758 2025-02-25 23:08:59.034 2025-02-25 23:08:59.034 416199 8289 416915 632 3 12759 2025-02-25 22:14:47.361 2025-02-25 22:14:47.361 416199 8289 416850 695 1 12760 2025-02-25 23:07:09.299 2025-02-25 23:07:09.299 416267 9982 416912 15119 2 12761 2025-02-26 03:29:42.119 2025-02-26 03:29:42.119 416267 9982 417053 5646 3 12762 2025-02-25 14:42:43.438 2025-02-25 14:42:43.438 416267 9982 416325 687 1 12763 2025-02-26 01:53:59.296 2025-02-26 01:53:59.296 416366 20225 417013 17526 3 12764 2025-02-26 00:52:07.325 2025-02-26 00:52:07.325 416366 20225 416991 9669 2 12765 2025-02-25 15:12:26.182 2025-02-25 15:12:26.182 416366 20225 416382 18412 1 12766 2025-02-26 03:48:11.97 2025-02-26 03:48:11.97 416366 20225 417060 1244 4 12767 2025-03-03 20:35:38.484 2025-03-03 20:35:38.484 416366 20225 424107 5806 4 12768 2025-02-25 22:44:47.449 2025-02-25 22:44:47.449 416652 5794 416886 711 2 12769 2025-02-25 18:45:02.915 2025-02-25 18:45:02.915 416652 5794 416660 5175 1 12770 2025-02-25 22:21:38.824 2025-02-25 22:21:38.824 416740 9758 416860 14607 2 12771 2025-02-25 22:18:58.208 2025-02-25 22:18:58.208 416740 9758 416858 1000 1 12772 2025-02-25 21:01:49.858 2025-02-25 21:01:49.858 416780 17944 416793 1120 2 12773 2025-02-25 20:56:30.188 2025-02-25 20:56:30.188 416780 17944 416786 11145 1 12774 2025-02-25 22:46:50.892 2025-02-25 22:46:50.892 416839 9366 416887 16724 2 12775 2025-02-25 22:41:01.112 2025-02-25 22:41:01.112 416839 9366 416879 5500 1 12776 2025-02-26 00:46:44.868 2025-02-26 00:46:44.868 416954 17710 416982 16193 1 12777 2025-02-26 00:48:50.213 2025-02-26 00:48:50.213 416954 17710 416986 7760 2 12778 2025-02-26 12:58:06.231 2025-02-26 12:58:06.231 417047 1784 417552 4819 1 12779 2025-03-03 03:30:26.558 2025-03-03 03:30:26.558 417047 1784 423153 13174 2 12780 2025-03-13 11:20:52.423 2025-03-13 11:20:52.423 417145 2639 436183 14258 1 12781 2025-03-13 11:24:09.373 2025-03-13 11:24:09.373 417145 2639 436187 13575 2 12782 2025-02-26 18:14:33.146 2025-02-26 18:14:33.146 417903 5761 417966 16598 2 12783 2025-02-26 17:49:56.397 2025-02-26 17:49:56.397 417903 5761 417941 15577 1 12784 2025-03-04 05:15:47.423 2025-03-04 05:15:47.423 419360 672 424431 5752 3 12785 2025-02-28 07:39:46.17 2025-02-28 07:39:46.17 419360 672 419794 2724 2 12786 2025-02-28 07:01:21.358 2025-02-28 07:01:21.358 419360 672 419775 10094 1 12787 2025-03-01 16:12:07.879 2025-03-01 16:12:07.879 419475 2709 421398 19759 1 12788 2025-03-01 15:02:18.063 2025-03-01 15:02:18.063 420175 12516 421284 827 1 12789 2025-03-01 15:07:03.41 2025-03-01 15:07:03.41 420175 12516 421293 12821 2 12790 2025-03-01 11:15:41.135 2025-03-01 11:15:41.135 420986 1741 421030 12049 1 12791 2025-03-01 14:05:14.863 2025-03-01 14:05:14.863 420986 1741 421231 954 2 12792 2025-03-01 11:19:08.736 2025-03-01 11:19:08.736 421024 2293 421036 1609 1 12793 2025-03-01 11:38:33.967 2025-03-01 11:38:33.967 421024 2293 421085 17392 2 12794 2025-03-09 12:12:28.609 2025-03-09 12:12:28.609 430732 989 430748 17275 1 12795 2025-03-09 13:14:05.37 2025-03-09 13:14:05.37 430732 989 430853 9347 2 12796 2025-03-09 13:13:13.784 2025-03-09 13:13:13.784 430732 989 430851 5359 2 12797 2025-03-09 14:46:07.744 2025-03-09 14:46:07.744 430732 989 430977 7979 3 12798 2025-03-09 13:16:39.062 2025-03-09 13:16:39.062 430732 989 430857 866 3 12799 2025-03-09 14:25:20.942 2025-03-09 14:25:20.942 430732 989 430947 11789 4 12800 2025-03-01 13:27:42.041 2025-03-01 13:27:42.041 421172 19463 421180 18772 2 12801 2025-03-01 13:22:02.128 2025-03-01 13:22:02.128 421172 19463 421176 21139 1 12802 2025-03-01 15:28:21.751 2025-03-01 15:28:21.751 421198 760 421334 19005 2 12803 2025-03-01 15:05:28.029 2025-03-01 15:05:28.029 421198 760 421287 5427 1 12804 2025-03-01 19:15:35.72 2025-03-01 19:15:35.72 421228 980 421593 9352 1 12805 2025-03-01 19:18:08.811 2025-03-01 19:18:08.811 421228 980 421594 10102 2 12806 2025-03-01 21:36:53.805 2025-03-01 21:36:53.805 421655 4487 421677 11515 1 12807 2025-03-01 21:51:04.497 2025-03-01 21:51:04.497 421655 4487 421684 2322 2 12808 2025-03-02 02:03:45.555 2025-03-02 02:03:45.555 421655 4487 421802 16598 3 12809 2025-03-06 03:22:38.467 2025-03-06 03:22:38.467 421704 11992 427054 8416 1 12810 2025-03-09 15:35:13.883 2025-03-09 15:35:13.883 421704 11992 431135 940 2 12811 2025-03-01 23:46:22.089 2025-03-01 23:46:22.089 421722 21798 421735 1738 3 12812 2025-03-02 03:38:25.244 2025-03-02 03:38:25.244 421722 21798 421852 10611 2 12813 2025-03-01 23:44:41.047 2025-03-01 23:44:41.047 421722 21798 421733 21401 2 12814 2025-03-02 03:30:55.78 2025-03-02 03:30:55.78 421722 21798 421847 21214 1 12815 2025-03-01 23:41:47.811 2025-03-01 23:41:47.811 421722 21798 421731 21254 1 12816 2025-03-01 23:50:03.187 2025-03-01 23:50:03.187 421722 21798 421738 674 5 12817 2025-03-01 23:48:23.237 2025-03-01 23:48:23.237 421722 21798 421737 16309 4 12818 2025-03-01 23:55:50.365 2025-03-01 23:55:50.365 421722 21798 421747 1567 7 12819 2025-03-01 23:50:41.485 2025-03-01 23:50:41.485 421722 21798 421739 8945 6 12820 2025-03-01 23:46:22.089 2025-03-01 23:46:22.089 421731 21254 421735 1738 2 12821 2025-03-01 23:44:41.047 2025-03-01 23:44:41.047 421731 21254 421733 21401 1 12822 2025-03-01 23:50:03.187 2025-03-01 23:50:03.187 421731 21254 421738 674 4 12823 2025-03-01 23:48:23.237 2025-03-01 23:48:23.237 421731 21254 421737 16309 3 12824 2025-03-01 23:55:50.365 2025-03-01 23:55:50.365 421731 21254 421747 1567 6 12825 2025-03-01 23:50:41.485 2025-03-01 23:50:41.485 421731 21254 421739 8945 5 12826 2025-03-01 23:55:50.365 2025-03-01 23:55:50.365 421738 674 421747 1567 2 12827 2025-03-01 23:50:41.485 2025-03-01 23:50:41.485 421738 674 421739 8945 1 12828 2025-03-02 09:59:37.571 2025-03-02 09:59:37.571 422008 20657 422172 12261 2 12829 2025-03-02 11:03:33.481 2025-03-02 11:03:33.481 422008 20657 422287 12808 3 12830 2025-03-02 09:54:12.142 2025-03-02 09:54:12.142 422008 20657 422161 10549 1 12831 2025-03-02 08:56:32.471 2025-03-02 08:56:32.471 422057 12368 422068 15091 1 12832 2025-03-02 10:52:43.218 2025-03-02 10:52:43.218 422057 12368 422269 19668 2 12833 2025-03-02 10:28:30.11 2025-03-02 10:28:30.11 422057 12368 422229 19535 6 12834 2025-03-02 09:34:20.43 2025-03-02 09:34:20.43 422057 12368 422111 1483 5 12835 2025-03-02 10:48:58.791 2025-03-02 10:48:58.791 422057 12368 422261 6260 1 12836 2025-03-02 09:29:22.651 2025-03-02 09:29:22.651 422057 12368 422098 1198 4 12837 2025-03-02 09:20:08.692 2025-03-02 09:20:08.692 422057 12368 422087 17708 3 12838 2025-03-02 09:08:28.388 2025-03-02 09:08:28.388 422057 12368 422076 9438 2 12839 2025-03-02 10:28:30.11 2025-03-02 10:28:30.11 422098 1198 422229 19535 2 12840 2025-03-02 09:34:20.43 2025-03-02 09:34:20.43 422098 1198 422111 1483 1 12841 2025-03-02 12:30:04.187 2025-03-02 12:30:04.187 422222 6191 422390 9337 2 12842 2025-03-02 11:25:46.184 2025-03-02 11:25:46.184 422222 6191 422309 15521 1 12843 2025-03-03 00:42:58.799 2025-03-03 00:42:58.799 422369 1737 423098 12561 2 12844 2025-03-02 12:26:48.272 2025-03-02 12:26:48.272 422369 1737 422384 20972 1 12845 2025-03-02 15:04:42.847 2025-03-02 15:04:42.847 422535 11523 422582 3656 2 12846 2025-03-02 14:25:00.514 2025-03-02 14:25:00.514 422535 11523 422537 13763 1 12847 2025-03-03 09:40:07.264 2025-03-03 09:40:07.264 422574 20243 423366 13162 2 12848 2025-03-03 02:10:39.857 2025-03-03 02:10:39.857 422574 20243 423130 16830 1 12849 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422633 17221 422644 19071 2 12850 2025-03-02 15:35:31.161 2025-03-02 15:35:31.161 422633 17221 422640 3706 1 12851 2025-03-03 07:29:53.365 2025-03-03 07:29:53.365 422661 2514 423287 13921 2 12852 2025-03-03 01:20:47.662 2025-03-03 01:20:47.662 422661 2514 423118 623 1 12853 2025-03-03 04:49:39.528 2025-03-03 04:49:39.528 422714 5904 423193 8459 2 12854 2025-03-03 04:44:07.358 2025-03-03 04:44:07.358 422714 5904 423190 10862 2 12855 2025-03-03 04:54:15.124 2025-03-03 04:54:15.124 422714 5904 423194 4314 3 12856 2025-03-02 17:06:17.931 2025-03-02 17:06:17.931 422714 5904 422745 18430 1 12857 2025-03-03 04:31:07.445 2025-03-03 04:31:07.445 422714 5904 423179 17944 1 12858 2025-03-03 12:16:01.339 2025-03-03 12:16:01.339 421936 13878 423492 18426 2 12859 2025-03-04 02:51:17.72 2025-03-04 02:51:17.72 421936 13878 424363 19537 3 12860 2025-03-04 05:14:48.279 2025-03-04 05:14:48.279 421936 13878 424430 17722 5 12861 2025-03-04 04:44:44.502 2025-03-04 04:44:44.502 421936 13878 424414 654 4 12862 2025-03-03 07:21:08.243 2025-03-03 07:21:08.243 421936 13878 423276 15273 1 12863 2025-03-02 17:16:01.726 2025-03-02 17:16:01.726 422735 18269 422756 18829 1 12864 2025-03-02 17:24:38.1 2025-03-02 17:24:38.1 422735 18269 422770 20980 3 12865 2025-03-02 17:19:33.793 2025-03-02 17:19:33.793 422735 18269 422764 19263 2 12866 2025-03-02 20:27:47.182 2025-03-02 20:27:47.182 422926 2156 422974 11714 1 12867 2025-03-02 20:31:33.728 2025-03-02 20:31:33.728 422926 2156 422977 18734 2 12868 2025-03-02 22:42:31.59 2025-03-02 22:42:31.59 422939 7389 423046 12656 2 12869 2025-03-02 23:49:11.568 2025-03-02 23:49:11.568 422939 7389 423076 695 3 12870 2025-03-02 23:50:25.038 2025-03-02 23:50:25.038 422939 7389 423078 21238 3 12871 2025-03-02 19:45:31.925 2025-03-02 19:45:31.925 422939 7389 422941 19303 1 12872 2025-03-02 22:27:07.971 2025-03-02 22:27:07.971 422961 17082 423037 10060 1 12873 2025-03-03 20:50:44.685 2025-03-03 20:50:44.685 422961 17082 424134 21019 2 12874 2025-03-02 22:57:43.237 2025-03-02 22:57:43.237 423044 8841 423051 3656 3 12875 2025-03-02 22:49:43.41 2025-03-02 22:49:43.41 423044 8841 423050 10493 2 12876 2025-03-02 22:44:46.366 2025-03-02 22:44:46.366 423044 8841 423048 11395 1 12877 2025-03-03 04:44:07.358 2025-03-03 04:44:07.358 423179 17944 423190 10862 1 12878 2025-03-03 04:54:15.124 2025-03-03 04:54:15.124 423179 17944 423194 4314 2 12879 2025-03-03 12:10:19.037 2025-03-03 12:10:19.037 423240 696 423487 2963 2 12880 2025-03-03 06:57:07.807 2025-03-03 06:57:07.807 423240 696 423254 1352 1 12881 2025-03-03 12:16:01.339 2025-03-03 12:16:01.339 423276 15273 423492 18426 1 12882 2025-03-04 02:51:17.72 2025-03-04 02:51:17.72 423276 15273 424363 19537 2 12883 2025-03-04 05:14:48.279 2025-03-04 05:14:48.279 423276 15273 424430 17722 4 12884 2025-03-04 04:44:44.502 2025-03-04 04:44:44.502 423276 15273 424414 654 3 12885 2025-03-03 07:54:55.2 2025-03-03 07:54:55.2 423277 1245 423296 20310 2 12886 2025-03-03 07:49:59.963 2025-03-03 07:49:59.963 423277 1245 423295 4602 1 12887 2025-03-03 07:28:46.938 2025-03-03 07:28:46.938 423280 17710 423286 6578 2 12888 2025-03-03 07:27:08.655 2025-03-03 07:27:08.655 423280 17710 423284 676 1 12889 2025-03-03 21:23:11.802 2025-03-03 21:23:11.802 423437 19446 424173 9184 2 12890 2025-03-03 14:50:11.543 2025-03-03 14:50:11.543 423437 19446 423709 17824 1 12891 2025-03-03 13:09:15.333 2025-03-03 13:09:15.333 423439 650 423571 622 1 12892 2025-03-03 22:14:03.75 2025-03-03 22:14:03.75 423439 650 424215 940 2 12893 2025-03-03 23:12:17.188 2025-03-03 23:12:17.188 423439 650 424239 17798 3 12894 2025-03-03 13:53:03.37 2025-03-03 13:53:03.37 423504 17541 423626 10484 2 12895 2025-03-03 13:42:54.828 2025-03-03 13:42:54.828 423504 17541 423615 928 1 12896 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 423595 15119 424408 12049 13 12897 2025-03-03 20:31:56.013 2025-03-03 20:31:56.013 423595 15119 424099 15060 8 12898 2025-03-03 19:52:36.539 2025-03-03 19:52:36.539 423595 15119 424049 8245 5 12899 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 423595 15119 424401 14990 10 12900 2025-03-03 13:31:32.464 2025-03-03 13:31:32.464 423595 15119 423601 21373 1 12901 2025-03-03 19:39:46.836 2025-03-03 19:39:46.836 423595 15119 424037 18901 4 12902 2025-03-03 20:28:10.099 2025-03-03 20:28:10.099 423595 15119 424094 21734 7 12903 2025-03-03 19:24:31.174 2025-03-03 19:24:31.174 423595 15119 424015 1454 3 12904 2025-03-03 20:19:40.617 2025-03-03 20:19:40.617 423595 15119 424082 9337 6 12905 2025-03-03 19:18:02.353 2025-03-03 19:18:02.353 423595 15119 424009 20337 2 12906 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 423595 15119 424382 18743 9 12907 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 423595 15119 424403 21263 11 12908 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 423595 15119 424405 844 12 12909 2025-03-03 13:32:39.529 2025-03-03 13:32:39.529 423596 1006 423604 21026 2 12910 2025-03-03 13:31:34.496 2025-03-03 13:31:34.496 423596 1006 423602 6229 1 12911 2025-03-03 14:35:33.611 2025-03-03 14:35:33.611 423670 1596 423682 1044 1 12912 2025-03-03 17:21:28.912 2025-03-03 17:21:28.912 423670 1596 423898 12356 2 12913 2025-03-04 00:51:25.925 2025-03-04 00:51:25.925 423704 6393 424328 21825 7 12914 2025-03-04 00:56:49.401 2025-03-04 00:56:49.401 423704 6393 424331 4074 8 12915 2025-03-03 20:05:39.144 2025-03-03 20:05:39.144 423704 6393 424070 21539 2 12916 2025-03-04 02:13:03.468 2025-03-04 02:13:03.468 423704 6393 424348 20179 7 12917 2025-03-04 02:15:24.016 2025-03-04 02:15:24.016 423704 6393 424350 14939 5 12918 2025-03-03 18:40:35.573 2025-03-03 18:40:35.573 423704 6393 423968 13143 3 12919 2025-03-03 18:00:02.023 2025-03-03 18:00:02.023 423704 6393 423925 18241 2 12920 2025-03-03 15:06:16.798 2025-03-03 15:06:16.798 423704 6393 423736 6573 1 12921 2025-03-03 17:17:10.079 2025-03-03 17:17:10.079 423704 6393 423895 4062 1 12922 2025-03-04 00:32:59.19 2025-03-04 00:32:59.19 423704 6393 424307 2583 5 12923 2025-03-04 00:41:48.656 2025-03-04 00:41:48.656 423704 6393 424319 21804 6 12924 2025-03-03 21:43:16.681 2025-03-03 21:43:16.681 423704 6393 424192 2832 4 12925 2025-03-14 14:50:48.06 2025-03-14 14:50:48.06 437443 12346 437476 646 2 12926 2025-03-14 14:32:45.157 2025-03-14 14:32:45.157 437443 12346 437455 20713 1 12927 2025-03-03 16:23:14.306 2025-03-03 16:23:14.306 423765 6765 423835 16842 2 12928 2025-03-03 16:14:27.17 2025-03-03 16:14:27.17 423765 6765 423818 16259 1 12929 2025-03-03 16:05:01.783 2025-03-03 16:05:01.783 423801 15160 423807 651 1 12930 2025-03-04 04:58:23.892 2025-03-04 04:58:23.892 423801 15160 424423 7899 2 12931 2025-03-03 22:01:32.657 2025-03-03 22:01:32.657 423811 9242 424207 21242 2 12932 2025-03-03 16:14:28.132 2025-03-03 16:14:28.132 423811 9242 423819 6393 1 12933 2025-03-03 22:02:31.916 2025-03-03 22:02:31.916 423811 9242 424210 14650 3 12934 2025-03-03 23:19:54.711 2025-03-03 23:19:54.711 423811 9242 424246 780 4 12935 2025-03-03 18:49:50.529 2025-03-03 18:49:50.529 423974 17817 423976 15075 1 12936 2025-03-04 01:35:53.954 2025-03-04 01:35:53.954 423974 17817 424339 761 2 12937 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 423977 5359 424161 2529 9 12938 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 423977 5359 424388 5057 9 12939 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 423977 5359 424447 16680 9 12940 2025-03-03 20:17:39.282 2025-03-03 20:17:39.282 423977 5359 424080 21412 4 12941 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 423977 5359 424158 2195 8 12942 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 423977 5359 424311 2513 8 12943 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 423977 5359 424149 5725 7 12944 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 423977 5359 424153 16839 7 12945 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 423977 5359 424130 21430 6 12946 2025-03-03 19:05:05.634 2025-03-03 19:05:05.634 423977 5359 423990 11073 1 12947 2025-03-03 19:15:36.194 2025-03-03 19:15:36.194 423977 5359 424003 20454 2 12948 2025-03-03 19:32:08.352 2025-03-03 19:32:08.352 423977 5359 424024 20912 3 12949 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 423977 5359 424123 1433 6 12950 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 423977 5359 424323 17411 8 12951 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 423977 5359 424386 1173 8 12952 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 423977 5359 424413 20939 9 12953 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 423977 5359 424186 18608 10 12954 2025-03-03 21:09:30.844 2025-03-03 21:09:30.844 423977 5359 424160 14385 5 12955 2025-03-03 20:36:29.113 2025-03-03 20:36:29.113 423977 5359 424111 3979 5 12956 2025-03-07 11:35:03.604 2025-03-07 11:35:03.604 427969 17212 428531 1717 2 12957 2025-03-06 21:36:12.994 2025-03-06 21:36:12.994 427969 17212 428123 17722 1 12958 2025-03-09 13:16:39.062 2025-03-09 13:16:39.062 430853 9347 430857 866 1 12959 2025-03-09 14:25:20.942 2025-03-09 14:25:20.942 430853 9347 430947 11789 2 12960 2025-03-03 19:10:25.018 2025-03-03 19:10:25.018 423993 20768 423999 12808 1 12961 2025-03-03 22:53:32.187 2025-03-03 22:53:32.187 423993 20768 424229 902 2 12962 2025-03-03 23:05:59.928 2025-03-03 23:05:59.928 423997 21412 424234 12334 3 12963 2025-03-03 19:15:38.281 2025-03-03 19:15:38.281 423997 21412 424004 18557 1 12964 2025-03-03 20:57:16.347 2025-03-03 20:57:16.347 423997 21412 424143 822 2 12965 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 424015 1454 424408 12049 10 12966 2025-03-03 20:31:56.013 2025-03-03 20:31:56.013 424015 1454 424099 15060 5 12967 2025-03-03 19:52:36.539 2025-03-03 19:52:36.539 424015 1454 424049 8245 2 12968 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 424015 1454 424401 14990 7 12969 2025-03-03 19:39:46.836 2025-03-03 19:39:46.836 424015 1454 424037 18901 1 12970 2025-03-03 20:28:10.099 2025-03-03 20:28:10.099 424015 1454 424094 21734 4 12971 2025-03-03 20:19:40.617 2025-03-03 20:19:40.617 424015 1454 424082 9337 3 12972 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 424015 1454 424382 18743 6 12973 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 424015 1454 424403 21263 8 12974 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 424015 1454 424405 844 9 12975 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 424024 20912 424161 2529 6 12976 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 424024 20912 424388 5057 6 12977 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 424024 20912 424447 16680 6 12978 2025-03-03 20:17:39.282 2025-03-03 20:17:39.282 424024 20912 424080 21412 1 12979 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 424024 20912 424158 2195 5 12980 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 424024 20912 424311 2513 5 12981 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 424024 20912 424149 5725 4 12982 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 424024 20912 424153 16839 4 12983 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 424024 20912 424130 21430 3 12984 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 424024 20912 424123 1433 3 12985 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 424024 20912 424323 17411 5 12986 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 424024 20912 424386 1173 5 12987 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 424024 20912 424413 20939 6 12988 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 424024 20912 424186 18608 7 12989 2025-03-03 21:09:30.844 2025-03-03 21:09:30.844 424024 20912 424160 14385 2 12990 2025-03-03 20:36:29.113 2025-03-03 20:36:29.113 424024 20912 424111 3979 2 12991 2025-03-11 23:51:34.216 2025-03-11 23:51:34.216 431200 1833 434476 11523 1 12992 2025-03-03 21:36:55.006 2025-03-03 21:36:55.006 424025 20187 424184 1745 2 12993 2025-03-03 19:35:43.059 2025-03-03 19:35:43.059 424025 20187 424030 16660 1 12994 2025-03-03 20:36:16.273 2025-03-03 20:36:16.273 424025 20187 424110 20683 2 12995 2025-03-03 19:52:45.905 2025-03-03 19:52:45.905 424035 1552 424050 17064 1 12996 2025-03-03 21:05:21.159 2025-03-03 21:05:21.159 424035 1552 424157 20381 2 12997 2025-03-03 22:56:30.679 2025-03-03 22:56:30.679 424036 10638 424231 12774 2 12998 2025-03-03 20:33:05.582 2025-03-03 20:33:05.582 424036 10638 424101 20603 1 12999 2025-03-11 05:33:44.323 2025-03-11 05:33:44.323 430863 14791 433457 21427 1 13000 2025-03-09 13:54:41.045 2025-03-09 13:54:41.045 430895 2329 430904 17109 4 13001 2025-03-09 13:48:14.563 2025-03-09 13:48:14.563 430895 2329 430898 17082 1 13002 2025-03-09 13:51:36.305 2025-03-09 13:51:36.305 430895 2329 430902 19637 2 13003 2025-03-09 13:52:57.312 2025-03-09 13:52:57.312 430895 2329 430903 11648 3 13004 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 424082 9337 424408 12049 7 13005 2025-03-03 20:31:56.013 2025-03-03 20:31:56.013 424082 9337 424099 15060 2 13006 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 424082 9337 424401 14990 4 13007 2025-03-03 20:28:10.099 2025-03-03 20:28:10.099 424082 9337 424094 21734 1 13008 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 424082 9337 424382 18743 3 13009 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 424082 9337 424403 21263 5 13010 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 424082 9337 424405 844 6 13011 2025-03-12 13:08:52.269 2025-03-12 13:08:52.269 424089 2774 435094 20913 1 13012 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 424149 5725 424388 5057 2 13013 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 424149 5725 424323 17411 1 13014 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 424149 5725 424386 1173 1 13015 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 424149 5725 424413 20939 2 13016 2025-03-06 23:39:41.988 2025-03-06 23:39:41.988 428174 861 428194 9438 1 13017 2025-03-07 10:49:15.864 2025-03-07 10:49:15.864 428174 861 428494 866 2 13018 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 424153 16839 424161 2529 2 13019 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 424153 16839 424447 16680 2 13020 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 424153 16839 424158 2195 1 13021 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 424153 16839 424311 2513 1 13022 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 424153 16839 424186 18608 3 13023 2025-03-03 21:37:33.345 2025-03-03 21:37:33.345 424182 1985 424185 14168 2 13024 2025-03-03 21:34:53.243 2025-03-03 21:34:53.243 424182 1985 424183 20026 1 13025 2025-03-03 21:40:23.982 2025-03-03 21:40:23.982 424182 1985 424188 18468 3 13026 2025-03-03 21:48:56.141 2025-03-03 21:48:56.141 424182 1985 424200 11609 4 13027 2025-03-03 23:27:07.683 2025-03-03 23:27:07.683 424233 18468 424256 20778 2 13028 2025-03-03 23:08:46.891 2025-03-03 23:08:46.891 424233 18468 424236 15488 1 13029 2025-03-03 23:18:46.062 2025-03-03 23:18:46.062 424233 18468 424243 12277 2 13030 2025-03-03 23:34:18.294 2025-03-03 23:34:18.294 424260 2789 424266 10493 1 13031 2025-03-03 23:55:05.787 2025-03-03 23:55:05.787 424260 2789 424282 12774 2 13032 2025-03-04 00:00:33.572 2025-03-04 00:00:33.572 424260 2789 424285 19777 3 13033 2025-03-04 00:09:39.636 2025-03-04 00:09:39.636 424260 2789 424294 5069 4 13034 2025-03-04 00:17:25.557 2025-03-04 00:17:25.557 424260 2789 424299 21373 5 13035 2025-03-04 00:02:49.731 2025-03-04 00:02:49.731 424260 2789 424289 21296 3 13036 2025-03-04 00:01:23.219 2025-03-04 00:01:23.219 424260 2789 424286 6260 2 13037 2025-03-04 00:35:42.2 2025-03-04 00:35:42.2 424260 2789 424310 2013 8 13038 2025-03-04 00:32:34.079 2025-03-04 00:32:34.079 424260 2789 424306 2342 7 13039 2025-03-04 00:19:31.903 2025-03-04 00:19:31.903 424260 2789 424300 20754 6 13040 2025-03-04 09:14:54.173 2025-03-04 09:14:54.173 424596 2528 424619 1428 1 13041 2025-03-04 09:16:48.016 2025-03-04 09:16:48.016 424596 2528 424625 21422 2 13042 2025-03-07 14:42:06.008 2025-03-07 14:42:06.008 425225 13921 428719 1307 3 13043 2025-03-07 14:15:30.622 2025-03-07 14:15:30.622 425225 13921 428697 1489 2 13044 2025-03-04 16:39:53.691 2025-03-04 16:39:53.691 425225 13921 425235 20674 1 13045 2025-03-07 16:47:04.786 2025-03-07 16:47:04.786 425966 8713 428851 21494 2 13046 2025-03-05 10:21:02.357 2025-03-05 10:21:02.357 425966 8713 425972 698 1 13047 2025-03-06 21:40:23.952 2025-03-06 21:40:23.952 426472 6430 428125 20979 2 13048 2025-03-06 16:53:59.065 2025-03-06 16:53:59.065 426472 6430 427820 21131 1 13049 2025-03-13 19:27:23.316 2025-03-13 19:27:23.316 426778 20754 436677 2593 1 13050 2025-03-13 11:29:24.24 2025-03-13 11:29:24.24 426959 15408 436192 929 1 13051 2025-03-07 05:14:58.828 2025-03-07 05:14:58.828 427153 1162 428319 20623 2 13052 2025-03-06 12:59:07.43 2025-03-06 12:59:07.43 427153 1162 427515 21398 1 13053 2025-03-06 16:48:50.305 2025-03-06 16:48:50.305 427258 2326 427814 15925 2 13054 2025-03-06 10:02:41.783 2025-03-06 10:02:41.783 427258 2326 427306 11038 1 13055 2025-03-06 13:43:01.937 2025-03-06 13:43:01.937 427359 2719 427554 4989 2 13056 2025-03-06 13:38:47.865 2025-03-06 13:38:47.865 427359 2719 427548 1261 1 13057 2025-03-11 19:32:58.749 2025-03-11 19:32:58.749 427607 21119 434316 993 1 13058 2025-03-07 19:38:29.297 2025-03-07 19:38:29.297 427748 17953 428997 2367 1 13059 2025-03-12 20:09:56.746 2025-03-12 20:09:56.746 430940 14258 435606 12097 1 13060 2025-03-21 19:23:32.367 2025-03-21 19:23:32.367 447318 21391 447332 20133 1 13061 2025-03-21 19:22:24.565 2025-03-21 19:22:24.565 447318 21391 447331 3411 1 13062 2025-03-06 17:05:21.059 2025-03-06 17:05:21.059 427787 695 427833 7773 1 13063 2025-03-06 18:13:04.077 2025-03-06 18:13:04.077 427787 695 427945 7960 2 13064 2025-03-07 06:16:20.218 2025-03-07 06:16:20.218 427810 9084 428340 2016 1 13065 2025-03-07 10:38:19.558 2025-03-07 10:38:19.558 427810 9084 428488 7668 2 13066 2025-03-07 10:47:38.221 2025-03-07 10:47:38.221 427966 11153 428493 14122 2 13067 2025-03-06 19:42:34.011 2025-03-06 19:42:34.011 427966 11153 428041 805 1 13068 2025-03-07 02:20:59.27 2025-03-07 02:20:59.27 428238 8505 428274 19806 1 13069 2025-03-07 03:56:04.09 2025-03-07 03:56:04.09 428238 8505 428294 17976 2 13070 2025-03-07 10:56:19.928 2025-03-07 10:56:19.928 428483 8284 428502 20245 2 13071 2025-03-07 10:44:53.601 2025-03-07 10:44:53.601 428483 8284 428491 12821 1 13072 2025-03-07 15:26:02.783 2025-03-07 15:26:02.783 428529 663 428764 13798 2 13073 2025-03-07 14:47:34.05 2025-03-07 14:47:34.05 428529 663 428724 1705 1 13074 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 428619 17011 428644 672 1 13075 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 428619 17011 428687 11395 2 13076 2025-03-07 16:09:50.862 2025-03-07 16:09:50.862 428723 5129 428818 16406 1 13077 2025-03-07 17:02:57.113 2025-03-07 17:02:57.113 428723 5129 428866 21485 2 13078 2025-03-07 15:49:25.083 2025-03-07 15:49:25.083 428728 14278 428793 21393 2 13079 2025-03-07 14:56:50.711 2025-03-07 14:56:50.711 428728 14278 428739 12277 1 13080 2025-03-07 15:34:21.323 2025-03-07 15:34:21.323 428769 15526 428774 11996 1 13081 2025-03-07 15:41:16.996 2025-03-07 15:41:16.996 428769 15526 428779 4624 2 13082 2025-03-08 19:53:26.969 2025-03-08 19:53:26.969 429924 13132 430059 1245 1 13083 2025-03-09 14:37:11.294 2025-03-09 14:37:11.294 429924 13132 430966 14452 2 13084 2025-03-09 14:41:51.176 2025-03-09 14:41:51.176 430173 20745 430971 8242 2 13085 2025-03-09 11:06:40.612 2025-03-09 11:06:40.612 430173 20745 430605 9421 1 13086 2025-03-09 00:32:53.818 2025-03-09 00:32:53.818 430220 19759 430236 12976 1 13087 2025-03-09 01:57:32.661 2025-03-09 01:57:32.661 430220 19759 430263 9334 2 13088 2025-03-09 14:13:59.795 2025-03-09 14:13:59.795 430291 896 430928 18673 1 13089 2025-03-09 15:24:42.614 2025-03-09 15:24:42.614 430291 896 431089 5500 2 13090 2025-03-09 14:46:18.768 2025-03-09 14:46:18.768 430560 16717 430978 21666 4 13091 2025-03-09 12:25:12.186 2025-03-09 12:25:12.186 430560 16717 430781 721 1 13092 2025-03-09 14:05:48.984 2025-03-09 14:05:48.984 430560 16717 430912 2583 2 13093 2025-03-09 14:06:51.869 2025-03-09 14:06:51.869 430560 16717 430917 5758 3 13094 2025-03-09 13:00:03.073 2025-03-09 13:00:03.073 430561 2596 430834 11819 2 13095 2025-03-09 10:29:05.911 2025-03-09 10:29:05.911 430561 2596 430567 20599 1 13096 2025-03-09 14:22:06.417 2025-03-09 14:22:06.417 430561 2596 430941 13467 3 13097 2025-03-09 11:10:23.452 2025-03-09 11:10:23.452 430568 19576 430608 802 1 13098 2025-03-09 14:06:28.31 2025-03-09 14:06:28.31 430568 19576 430915 2347 2 13099 2025-03-09 14:46:31.291 2025-03-09 14:46:31.291 430964 21400 430979 3544 2 13100 2025-03-09 14:39:43.869 2025-03-09 14:39:43.869 430964 21400 430970 20912 1 13101 2025-03-09 15:48:53.15 2025-03-09 15:48:53.15 431082 18231 431158 9337 1 13102 2025-03-09 15:52:13.544 2025-03-09 15:52:13.544 431082 18231 431166 19569 2 13103 2025-03-12 05:49:26.382 2025-03-12 05:49:26.382 431085 18188 434666 2056 2 13104 2025-03-12 03:23:43.132 2025-03-12 03:23:43.132 431085 18188 434576 701 1 13105 2025-03-12 15:07:19.297 2025-03-12 15:07:19.297 431086 15408 435265 683 2 13106 2025-03-12 15:08:29.003 2025-03-12 15:08:29.003 431086 15408 435266 946 3 13107 2025-03-12 05:50:42.942 2025-03-12 05:50:42.942 431086 15408 434668 657 1 13108 2025-03-12 15:13:16.425 2025-03-12 15:13:16.425 431086 15408 435273 21714 3 13109 2025-03-12 17:29:13.539 2025-03-12 17:29:13.539 431086 15408 435450 20275 4 13110 2025-03-12 15:26:48.68 2025-03-12 15:26:48.68 431783 895 435302 10291 1 13111 2025-03-11 17:20:08.055 2025-03-11 17:20:08.055 433750 20913 434227 20861 1 13112 2025-03-12 11:26:36.151 2025-03-12 11:26:36.151 433750 20913 434970 17209 2 13113 2025-03-12 02:46:34.589 2025-03-12 02:46:34.589 432085 10862 434554 20495 1 13114 2025-03-10 19:39:56.33 2025-03-10 19:39:56.33 432114 18901 433079 18232 1 13115 2025-03-11 16:45:09.879 2025-03-11 16:45:09.879 432553 21710 434186 3717 1 13116 2025-03-12 10:05:56.288 2025-03-12 10:05:56.288 432966 9921 434880 11164 1 13117 2025-03-10 21:27:43.783 2025-03-10 21:27:43.783 433034 18449 433194 929 2 13118 2025-03-10 19:08:57.822 2025-03-10 19:08:57.822 433034 18449 433041 6202 1 13119 2025-03-12 16:37:54.738 2025-03-12 16:37:54.738 433034 18449 435387 5112 3 13120 2025-03-13 00:51:56.809 2025-03-13 00:51:56.809 433034 18449 435780 679 4 13121 2025-03-10 22:04:38.222 2025-03-10 22:04:38.222 433042 7674 433240 9992 1 13122 2025-03-11 05:06:46.259 2025-03-11 05:06:46.259 433042 7674 433437 19488 2 13123 2025-03-11 00:52:27.073 2025-03-11 00:52:27.073 433080 21012 433333 18557 1 13124 2025-03-10 21:31:14.971 2025-03-10 21:31:14.971 433160 21803 433198 9242 1 13125 2025-03-11 00:01:17.369 2025-03-11 00:01:17.369 433299 19980 433311 1632 1 13126 2025-03-11 03:28:02.64 2025-03-11 03:28:02.64 433321 2213 433382 16250 1 13127 2025-03-11 03:19:23.091 2025-03-11 03:19:23.091 433323 672 433376 2775 1 13128 2025-03-11 01:39:05.98 2025-03-11 01:39:05.98 433324 19569 433345 2039 1 13129 2025-03-11 23:48:09.759 2025-03-11 23:48:09.759 433324 19569 434474 2529 2 13130 2025-03-12 00:43:59.908 2025-03-12 00:43:59.908 433324 19569 434495 13216 3 13131 2025-03-13 03:12:31.744 2025-03-13 03:12:31.744 433379 20691 435854 19668 1 13132 2025-03-11 14:57:40.939 2025-03-11 14:57:40.939 433381 21803 434000 15243 1 13133 2025-03-12 12:45:02.18 2025-03-12 12:45:02.18 433405 899 435069 2681 1 13134 2025-03-11 15:40:01.477 2025-03-11 15:40:01.477 433421 18865 434082 21048 1 13135 2025-03-12 03:41:25.073 2025-03-12 03:41:25.073 433421 18865 434587 1817 2 13136 2025-03-13 04:02:33.191 2025-03-13 04:02:33.191 433452 4692 435880 20094 1 13137 2025-03-11 23:37:03.645 2025-03-11 23:37:03.645 433487 14909 434471 2710 1 13138 2025-03-11 09:06:28.085 2025-03-11 09:06:28.085 433607 699 433613 17237 1 13139 2025-03-13 03:12:22.512 2025-03-13 03:12:22.512 433640 4027 435853 5425 1 13140 2025-03-11 21:36:53.729 2025-03-11 21:36:53.729 433746 16950 434413 8989 1 13141 2025-03-23 04:36:45.302 2025-03-23 04:36:45.302 448982 15160 449003 21540 1 13142 2025-03-23 04:59:52.418 2025-03-23 04:59:52.418 448982 15160 449017 5497 2 13143 2025-03-11 12:31:40.672 2025-03-11 12:31:40.672 433829 1624 433831 15624 1 13144 2025-03-12 09:09:04.422 2025-03-12 09:09:04.422 433829 1624 434831 17050 2 13145 2025-03-12 10:56:58.668 2025-03-12 10:56:58.668 433829 1624 434940 1136 3 13146 2025-03-12 11:10:53.098 2025-03-12 11:10:53.098 433829 1624 434951 1650 4 13147 2025-03-12 15:45:38.327 2025-03-12 15:45:38.327 433869 7418 435336 1145 3 13148 2025-03-12 17:15:29.298 2025-03-12 17:15:29.298 433869 7418 435435 16847 4 13149 2025-03-11 13:48:08.783 2025-03-11 13:48:08.783 433869 7418 433892 9350 1 13150 2025-03-12 15:31:32.046 2025-03-12 15:31:32.046 433869 7418 435306 9655 2 13151 2025-03-11 13:58:41.28 2025-03-11 13:58:41.28 433869 7418 433905 21685 1 13152 2025-03-12 12:45:01.034 2025-03-12 12:45:01.034 433870 1047 435068 21422 1 13153 2025-03-11 21:08:17.472 2025-03-11 21:08:17.472 433879 11996 434392 7667 1 13154 2025-03-12 15:45:38.327 2025-03-12 15:45:38.327 433905 21685 435336 1145 2 13155 2025-03-12 17:15:29.298 2025-03-12 17:15:29.298 433905 21685 435435 16847 3 13156 2025-03-12 15:31:32.046 2025-03-12 15:31:32.046 433905 21685 435306 9655 1 13157 2025-03-11 20:10:16.444 2025-03-11 20:10:16.444 433950 20481 434353 8448 1 13158 2025-03-12 10:27:51.461 2025-03-12 10:27:51.461 434401 739 434904 5825 2 13159 2025-03-12 05:34:53.183 2025-03-12 05:34:53.183 434401 739 434658 20454 1 13160 2025-03-19 10:40:02.404 2025-03-19 10:40:02.404 443359 629 443414 6268 1 13161 2025-03-11 20:39:29.554 2025-03-11 20:39:29.554 433967 15213 434367 20434 1 13162 2025-03-12 03:17:52.737 2025-03-12 03:17:52.737 433967 15213 434574 6148 2 13163 2025-03-11 14:57:25.53 2025-03-11 14:57:25.53 433987 20185 433998 1261 1 13164 2025-03-11 15:21:30.232 2025-03-11 15:21:30.232 433995 18529 434046 21815 1 13165 2025-03-11 15:22:35.906 2025-03-11 15:22:35.906 434039 1585 434048 21063 1 13166 2025-03-11 16:44:24.9 2025-03-11 16:44:24.9 434057 21079 434183 1488 2 13167 2025-03-11 16:39:35.284 2025-03-11 16:39:35.284 434057 21079 434176 5870 1 13168 2025-03-11 15:31:58.178 2025-03-11 15:31:58.178 434057 21079 434067 20603 1 13169 2025-03-11 16:44:24.9 2025-03-11 16:44:24.9 434067 20603 434183 1488 1 13170 2025-03-11 15:48:30.8 2025-03-11 15:48:30.8 434088 12819 434101 5761 1 13171 2025-03-11 23:40:35.652 2025-03-11 23:40:35.652 434148 16912 434473 20837 1 13172 2025-03-12 11:23:16.783 2025-03-12 11:23:16.783 434305 16447 434968 7097 1 13173 2025-03-12 11:55:42.868 2025-03-12 11:55:42.868 434305 16447 435008 20781 2 13174 2025-03-11 23:09:52.671 2025-03-11 23:09:52.671 434306 12959 434464 8472 1 13175 2025-03-11 19:47:26.393 2025-03-11 19:47:26.393 434326 9036 434335 20624 1 13176 2025-03-12 06:21:00.652 2025-03-12 06:21:00.652 434333 15925 434677 9494 1 13177 2025-03-12 06:50:53.023 2025-03-12 06:50:53.023 434333 15925 434689 678 1 13178 2025-03-11 20:18:05.025 2025-03-11 20:18:05.025 434336 1483 434359 730 1 13179 2025-03-14 01:24:28.109 2025-03-14 01:24:28.109 436853 746 436884 8168 1 13180 2025-03-19 18:48:53.206 2025-03-19 18:48:53.206 436853 746 444285 20185 2 13181 2025-03-19 22:42:52.686 2025-03-19 22:42:52.686 436853 746 444464 20179 3 13182 2025-03-19 11:00:19.613 2025-03-19 11:00:19.613 443194 5942 443441 17713 1 13183 2025-03-19 11:08:46.772 2025-03-19 11:08:46.772 443194 5942 443456 12102 2 13184 2025-03-19 11:32:49.224 2025-03-19 11:32:49.224 443194 5942 443480 19199 3 13185 2025-03-12 07:10:12.747 2025-03-12 07:10:12.747 434362 20669 434700 16354 1 13186 2025-03-12 09:27:12.798 2025-03-12 09:27:12.798 434362 20669 434848 17722 2 13187 2025-03-11 21:46:55.618 2025-03-11 21:46:55.618 434363 14705 434423 2776 1 13188 2025-03-12 05:20:28.239 2025-03-12 05:20:28.239 434375 715 434645 11498 1 13189 2025-03-13 00:58:56.781 2025-03-13 00:58:56.781 434375 715 435785 5522 2 13190 2025-03-12 05:25:39.705 2025-03-12 05:25:39.705 434376 21442 434653 1047 1 13191 2025-03-12 05:32:20.043 2025-03-12 05:32:20.043 434381 4763 434657 7558 1 13192 2025-03-12 10:01:20.994 2025-03-12 10:01:20.994 434381 4763 434874 20588 1 13193 2025-03-12 10:11:15.686 2025-03-12 10:11:15.686 434381 4763 434885 16830 2 13194 2025-03-12 19:46:28.43 2025-03-12 19:46:28.43 434381 4763 435575 10638 2 13195 2025-03-12 06:53:57.426 2025-03-12 06:53:57.426 434389 16956 434692 20026 1 13196 2025-03-11 23:12:21.995 2025-03-11 23:12:21.995 434398 15052 434466 8380 1 13197 2025-03-11 22:05:14.789 2025-03-11 22:05:14.789 434400 2088 434431 16988 1 13198 2025-03-19 14:02:50.362 2025-03-19 14:02:50.362 443746 9333 443762 12368 1 13199 2025-03-11 22:32:34.733 2025-03-11 22:32:34.733 434439 692 434444 17714 2 13200 2025-03-11 22:44:48.297 2025-03-11 22:44:48.297 434439 692 434455 1692 4 13201 2025-03-12 01:41:19.581 2025-03-12 01:41:19.581 434439 692 434518 3347 1 13202 2025-03-11 22:22:59.607 2025-03-11 22:22:59.607 434439 692 434442 730 1 13203 2025-03-11 22:55:48.552 2025-03-11 22:55:48.552 434439 692 434460 19930 5 13204 2025-03-11 22:41:43.682 2025-03-11 22:41:43.682 434439 692 434451 8287 3 13205 2025-03-11 22:55:48.552 2025-03-11 22:55:48.552 434455 1692 434460 19930 1 13206 2025-03-13 11:44:07.701 2025-03-13 11:44:07.701 436204 16176 436216 6463 2 13207 2025-03-13 11:50:47.542 2025-03-13 11:50:47.542 436204 16176 436222 19375 3 13208 2025-03-13 11:42:34.623 2025-03-13 11:42:34.623 436204 16176 436214 716 1 13209 2025-03-13 19:45:44.385 2025-03-13 19:45:44.385 436690 7746 436695 20133 1 13210 2025-03-13 19:47:43.455 2025-03-13 19:47:43.455 436690 7746 436696 8284 2 13211 2025-03-13 19:50:07.505 2025-03-13 19:50:07.505 436690 7746 436698 1142 3 13212 2025-03-14 07:24:17.734 2025-03-14 07:24:17.734 437013 13398 437020 17095 1 13213 2025-03-14 22:16:06.584 2025-03-14 22:16:06.584 437013 13398 437794 8726 2 13214 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437271 4862 437513 12609 14 13215 2025-03-14 12:31:38.133 2025-03-14 12:31:38.133 437271 4862 437292 616 1 13216 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437271 4862 437508 8713 13 13217 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437271 4862 437593 19094 22 13218 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437271 4862 437574 5069 21 13219 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 437271 4862 437465 20734 10 13220 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437271 4862 437553 10291 19 13221 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437271 4862 437552 17722 18 13222 2025-03-14 14:11:17.647 2025-03-14 14:11:17.647 437271 4862 437432 660 8 13223 2025-03-14 12:46:35.189 2025-03-14 12:46:35.189 437271 4862 437321 1488 7 13224 2025-03-14 12:43:43.967 2025-03-14 12:43:43.967 437271 4862 437317 11018 6 13225 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437271 4862 437521 19980 15 13226 2025-03-14 12:43:02.431 2025-03-14 12:43:02.431 437271 4862 437316 13097 5 13227 2025-03-14 12:37:11.691 2025-03-14 12:37:11.691 437271 4862 437308 20523 3 13228 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437271 4862 437558 7097 20 13229 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437271 4862 437598 12277 23 13230 2025-03-14 12:32:08.487 2025-03-14 12:32:08.487 437271 4862 437293 1424 2 13231 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437271 4862 437506 20816 12 13232 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437271 4862 437497 1823 11 13233 2025-03-14 14:24:43.157 2025-03-14 14:24:43.157 437271 4862 437447 12278 9 13234 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437271 4862 437551 5129 17 13235 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437271 4862 437538 7668 16 13236 2025-03-14 12:39:26.862 2025-03-14 12:39:26.862 437271 4862 437312 8870 4 13237 2025-03-15 06:21:24.635 2025-03-15 06:21:24.635 437324 20871 438022 12609 2 13238 2025-03-15 04:50:25.842 2025-03-15 04:50:25.842 437324 20871 437986 20495 1 13239 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437506 20816 437513 12609 2 13240 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437506 20816 437508 8713 1 13241 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437506 20816 437593 19094 10 13242 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437506 20816 437574 5069 9 13243 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437506 20816 437553 10291 7 13244 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437506 20816 437552 17722 6 13245 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437506 20816 437521 19980 3 13246 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437506 20816 437558 7097 8 13247 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437506 20816 437598 12277 11 13248 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437506 20816 437551 5129 5 13249 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437506 20816 437538 7668 4 13250 2025-03-14 17:06:16.376 2025-03-14 17:06:16.376 437512 7668 437619 11829 1 13251 2025-03-14 19:32:41.454 2025-03-14 19:32:41.454 437512 7668 437710 15806 3 13252 2025-03-14 20:07:50.104 2025-03-14 20:07:50.104 437512 7668 437726 4259 4 13253 2025-03-14 19:29:13.69 2025-03-14 19:29:13.69 437512 7668 437707 1647 2 13254 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437574 5069 437593 19094 1 13255 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437574 5069 437598 12277 2 13256 2025-03-14 18:07:36.03 2025-03-14 18:07:36.03 437579 14220 437655 15488 2 13257 2025-03-14 16:32:47.325 2025-03-14 16:32:47.325 437579 14220 437586 1261 1 13258 2025-03-14 16:49:26.66 2025-03-14 16:49:26.66 437591 2233 437604 9351 1 13259 2025-03-14 16:51:14.996 2025-03-14 16:51:14.996 437591 2233 437606 10690 2 13260 2025-03-14 18:40:01.291 2025-03-14 18:40:01.291 437635 10554 437678 7773 1 13261 2025-03-14 19:03:21.763 2025-03-14 19:03:21.763 437635 10554 437698 10112 2 13262 2025-03-15 07:20:29.918 2025-03-15 07:20:29.918 437635 10554 438042 17183 3 13263 2025-03-15 00:49:18.403 2025-03-15 00:49:18.403 437700 19943 437900 3656 2 13264 2025-03-14 23:00:01.712 2025-03-14 23:00:01.712 437700 19943 437827 15239 1 13265 2025-03-14 22:11:24.133 2025-03-14 22:11:24.133 437779 13169 437789 20799 2 13266 2025-03-14 22:12:56.946 2025-03-14 22:12:56.946 437779 13169 437791 13177 3 13267 2025-03-14 22:07:48.098 2025-03-14 22:07:48.098 437779 13169 437784 21825 1 13268 2025-03-14 22:19:25.126 2025-03-14 22:19:25.126 437779 13169 437798 17109 4 13269 2025-03-15 07:38:53.832 2025-03-15 07:38:53.832 437800 7916 438052 1720 2 13270 2025-03-14 22:31:09.956 2025-03-14 22:31:09.956 437800 7916 437805 656 1 13271 2025-03-03 19:18:19.929 2025-03-03 19:18:19.929 423747 21412 424011 21044 3 13272 2025-03-03 16:02:48.674 2025-03-03 16:02:48.674 423747 21412 423804 14650 2 13273 2025-03-03 19:38:54.083 2025-03-03 19:38:54.083 423747 21412 424036 10638 4 13274 2025-03-03 20:33:05.582 2025-03-03 20:33:05.582 423747 21412 424101 20603 5 13275 2025-03-03 15:38:43.72 2025-03-03 15:38:43.72 423747 21412 423777 16214 1 13276 2025-03-03 22:56:30.679 2025-03-03 22:56:30.679 423747 21412 424231 12774 6 13277 2025-03-15 06:09:49.216 2025-03-15 06:09:49.216 437861 20687 438013 15858 2 13278 2025-03-15 04:34:01.815 2025-03-15 04:34:01.815 437861 20687 437977 641 1 13279 2025-03-15 00:17:46.647 2025-03-15 00:17:46.647 437874 20788 437877 5425 2 13280 2025-03-15 00:17:04.584 2025-03-15 00:17:04.584 437874 20788 437875 18232 1 13281 2025-03-19 07:51:33.294 2025-03-19 07:51:33.294 437968 1596 443247 18615 1 13282 2025-03-15 09:03:16.311 2025-03-15 09:03:16.311 438073 1120 438105 2293 2 13283 2025-03-15 08:20:36.844 2025-03-15 08:20:36.844 438073 1120 438077 1272 1 13284 2025-03-15 19:28:15.133 2025-03-15 19:28:15.133 438612 6260 438678 21391 1 13285 2025-03-16 17:35:30.514 2025-03-16 17:35:30.514 439157 805 439834 10302 1 13286 2025-03-19 12:59:31.526 2025-03-19 12:59:31.526 439157 805 443665 2961 1 13287 2025-03-19 09:56:20.611 2025-03-19 09:56:20.611 442374 20963 443370 14959 2 13288 2025-03-19 07:53:35.519 2025-03-19 07:53:35.519 442374 20963 443253 929 1 13289 2025-03-19 07:50:43.84 2025-03-19 07:50:43.84 442561 17710 443246 11423 1 13290 2025-03-18 18:00:51.266 2025-03-18 18:00:51.266 442562 10102 442637 16126 2 13291 2025-03-18 17:59:00.605 2025-03-18 17:59:00.605 442562 10102 442634 18177 1 13292 2025-03-18 18:16:29.632 2025-03-18 18:16:29.632 442591 699 442658 17535 2 13293 2025-03-18 18:12:25.909 2025-03-18 18:12:25.909 442591 699 442653 636 1 13294 2025-03-19 11:43:25.027 2025-03-19 11:43:25.027 443204 13517 443498 16839 1 13295 2025-03-18 20:58:44.115 2025-03-18 20:58:44.115 440242 18426 442837 16653 4 13296 2025-03-17 21:14:48.343 2025-03-17 21:14:48.343 440242 18426 441240 1720 2 13297 2025-03-18 15:06:50.747 2025-03-18 15:06:50.747 440242 18426 442453 2431 3 13298 2025-03-17 05:45:16.314 2025-03-17 05:45:16.314 440242 18426 440313 10818 1 13299 2025-03-19 09:32:05.157 2025-03-19 09:32:05.157 443335 690 443351 17494 1 13300 2025-03-19 10:56:40.314 2025-03-19 10:56:40.314 443335 690 443436 11776 3 13301 2025-03-19 10:53:55.845 2025-03-19 10:53:55.845 443335 690 443432 618 2 13302 2025-03-17 18:20:55.539 2025-03-17 18:20:55.539 440560 20802 441061 913 2 13303 2025-03-17 18:02:38.488 2025-03-17 18:02:38.488 440560 20802 441047 11885 1 13304 2025-03-19 10:49:54.288 2025-03-19 10:49:54.288 440790 959 443424 13865 1 13305 2025-03-17 21:30:37.837 2025-03-17 21:30:37.837 441091 7389 441250 18525 2 13306 2025-03-17 20:01:02.508 2025-03-17 20:01:02.508 441091 7389 441156 8985 1 13307 2025-03-18 18:38:13.668 2025-03-18 18:38:13.668 441195 14168 442695 19581 2 13308 2025-03-17 22:11:29.92 2025-03-17 22:11:29.92 441195 14168 441285 1136 1 13309 2025-03-18 17:31:50.932 2025-03-18 17:31:50.932 441610 6419 442608 7583 1 13310 2025-03-18 08:31:14.615 2025-03-18 08:31:14.615 441641 21228 441667 15890 1 13311 2025-03-18 08:32:49.763 2025-03-18 08:32:49.763 441641 21228 441670 20500 2 13312 2025-03-18 11:18:55.528 2025-03-18 11:18:55.528 441676 690 441918 9307 1 13313 2025-03-18 11:33:07.739 2025-03-18 11:33:07.739 441676 690 441939 722 2 13314 2025-03-18 10:21:28.631 2025-03-18 10:21:28.631 441827 20636 441835 16858 2 13315 2025-03-18 10:20:42.325 2025-03-18 10:20:42.325 441827 20636 441833 5661 1 13316 2025-03-18 10:29:00.924 2025-03-18 10:29:00.924 441841 713 441849 11523 1 13317 2025-03-18 10:37:08.701 2025-03-18 10:37:08.701 441841 713 441855 782 2 13318 2025-03-18 14:16:55.452 2025-03-18 14:16:55.452 442044 14465 442333 17570 2 13319 2025-03-18 14:27:08.832 2025-03-18 14:27:08.832 442044 14465 442355 622 3 13320 2025-03-18 13:23:20.402 2025-03-18 13:23:20.402 442044 14465 442195 14489 1 13321 2025-03-18 13:44:18.442 2025-03-18 13:44:18.442 442124 7827 442252 836 2 13322 2025-03-18 12:58:26.559 2025-03-18 12:58:26.559 442124 7827 442138 4259 1 13323 2025-03-18 13:53:27.376 2025-03-18 13:53:27.376 442124 7827 442279 12334 3 13324 2025-03-18 13:45:40.741 2025-03-18 13:45:40.741 442124 7827 442258 18743 2 13325 2025-03-18 13:40:21.597 2025-03-18 13:40:21.597 442124 7827 442243 7913 1 13326 2025-03-18 13:11:32.035 2025-03-18 13:11:32.035 442141 20254 442157 2722 2 13327 2025-03-18 13:06:57.606 2025-03-18 13:06:57.606 442141 20254 442148 20187 1 13328 2025-03-19 12:38:58.428 2025-03-19 12:38:58.428 442330 5444 443606 14650 1 13329 2025-03-18 21:02:52.25 2025-03-18 21:02:52.25 442828 695 442843 1712 2 13330 2025-03-18 20:56:44.844 2025-03-18 20:56:44.844 442828 695 442834 880 1 13331 2025-03-19 10:51:40.54 2025-03-19 10:51:40.54 442830 675 443428 4819 1 13332 2025-03-18 21:13:43.817 2025-03-18 21:13:43.817 442854 7966 442861 21228 1 13333 2025-03-19 11:10:44.034 2025-03-19 11:10:44.034 442854 7966 443457 10409 1 13334 2025-03-19 11:36:25.664 2025-03-19 11:36:25.664 442854 7966 443485 21713 2 13335 2025-03-19 11:04:18.316 2025-03-19 11:04:18.316 442855 18727 443449 13574 1 13336 2025-03-19 10:31:48.487 2025-03-19 10:31:48.487 442948 20243 443405 12870 2 13337 2025-03-19 09:33:15.74 2025-03-19 09:33:15.74 442948 20243 443353 18306 1 13338 2025-03-19 12:19:22.061 2025-03-19 12:19:22.061 443006 683 443566 21631 1 13339 2025-03-19 12:02:38.341 2025-03-19 12:02:38.341 443022 17321 443529 18430 1 13340 2025-03-19 10:37:41.788 2025-03-19 10:37:41.788 443342 1401 443411 17526 1 13341 2025-03-19 10:39:06.343 2025-03-19 10:39:06.343 443350 1298 443413 9177 2 13342 2025-03-19 10:40:02.404 2025-03-19 10:40:02.404 443350 1298 443414 6268 3 13343 2025-03-19 09:39:37.535 2025-03-19 09:39:37.535 443350 1298 443359 629 2 13344 2025-03-19 09:37:04.074 2025-03-19 09:37:04.074 443350 1298 443358 4287 1 13345 2025-03-19 13:37:53.055 2025-03-19 13:37:53.055 443714 894 443720 12049 2 13346 2025-03-19 13:38:41.33 2025-03-19 13:38:41.33 443714 894 443724 13759 3 13347 2025-03-19 13:34:48.938 2025-03-19 13:34:48.938 443714 894 443716 12921 1 13348 2025-03-19 10:32:35.156 2025-03-19 10:32:35.156 443052 1801 443407 14225 1 13349 2025-03-19 12:02:56.49 2025-03-19 12:02:56.49 443061 15337 443530 21139 1 13350 2025-03-19 09:58:29.43 2025-03-19 09:58:29.43 443092 4083 443373 14857 1 13351 2025-03-19 10:13:00.104 2025-03-19 10:13:00.104 443182 17713 443384 640 1 13352 2025-03-19 10:39:06.343 2025-03-19 10:39:06.343 443193 14663 443413 9177 4 13353 2025-03-19 10:40:02.404 2025-03-19 10:40:02.404 443193 14663 443414 6268 5 13354 2025-03-19 09:39:37.535 2025-03-19 09:39:37.535 443193 14663 443359 629 4 13355 2025-03-19 09:30:41.705 2025-03-19 09:30:41.705 443193 14663 443350 1298 2 13356 2025-03-19 09:12:23.078 2025-03-19 09:12:23.078 443193 14663 443331 2000 1 13357 2025-03-19 09:37:04.074 2025-03-19 09:37:04.074 443193 14663 443358 4287 3 13358 2025-03-21 17:11:46.858 2025-03-21 17:11:46.858 447058 21262 447185 21116 1 13359 2025-03-19 12:00:01.931 2025-03-19 12:00:01.931 443205 16284 443526 695 1 13360 2025-03-19 12:14:50.616 2025-03-19 12:14:50.616 443205 16284 443551 19484 2 13361 2025-03-19 10:36:41.137 2025-03-19 10:36:41.137 443341 2709 443410 17415 1 13362 2025-03-19 07:38:33.802 2025-03-19 07:38:33.802 443232 4292 443233 750 1 13363 2025-03-19 11:02:40.011 2025-03-19 11:02:40.011 443235 2776 443445 5728 1 13364 2025-03-19 12:18:56.102 2025-03-19 12:18:56.102 443235 2776 443564 17953 2 13365 2025-03-19 11:41:32.025 2025-03-19 11:41:32.025 443236 20439 443494 16301 1 13366 2025-03-19 13:19:15.165 2025-03-19 13:19:15.165 443259 5694 443691 12277 1 13367 2025-03-19 14:02:50.362 2025-03-19 14:02:50.362 443259 5694 443762 12368 3 13368 2025-03-19 13:54:27.282 2025-03-19 13:54:27.282 443259 5694 443746 9333 2 13369 2025-03-19 08:48:17.677 2025-03-19 08:48:17.677 443283 16145 443298 1505 1 13370 2025-03-19 08:51:57.228 2025-03-19 08:51:57.228 443283 16145 443307 21709 2 13371 2025-03-19 11:01:08.326 2025-03-19 11:01:08.326 443292 20901 443442 2039 1 13372 2025-03-19 14:06:45.206 2025-03-19 14:06:45.206 443757 1814 443772 919 1 13373 2025-03-19 14:18:38.409 2025-03-19 14:18:38.409 443757 1814 443796 8289 2 13374 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443757 1814 443845 21522 7 13375 2025-03-19 14:34:10.46 2025-03-19 14:34:10.46 443757 1814 443831 670 5 13376 2025-03-19 14:27:58.927 2025-03-19 14:27:58.927 443757 1814 443811 16230 3 13377 2025-03-19 14:36:28.243 2025-03-19 14:36:28.243 443757 1814 443835 21012 6 13378 2025-03-19 14:30:39.44 2025-03-19 14:30:39.44 443757 1814 443819 14357 4 13379 2025-03-19 14:06:18.425 2025-03-19 14:06:18.425 443764 15196 443771 21482 1 13380 2025-03-20 00:22:09.582 2025-03-20 00:22:09.582 443787 17011 444507 9341 2 13381 2025-03-19 16:44:39.385 2025-03-19 16:44:39.385 443787 17011 444071 5794 1 13382 2025-03-19 17:31:11.437 2025-03-19 17:31:11.437 443787 17011 444144 18306 2 13383 2025-03-20 03:02:51.322 2025-03-20 03:02:51.322 443787 17011 444571 11288 3 13384 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443831 670 443845 21522 2 13385 2025-03-19 14:36:28.243 2025-03-19 14:36:28.243 443831 670 443835 21012 1 13386 2025-03-19 22:18:27.114 2025-03-19 22:18:27.114 444412 3686 444453 1585 4 13387 2025-03-19 22:04:01.03 2025-03-19 22:04:01.03 444412 3686 444444 5904 3 13388 2025-03-19 22:28:13.631 2025-03-19 22:28:13.631 444412 3686 444455 1602 5 13389 2025-03-19 21:23:57.846 2025-03-19 21:23:57.846 444412 3686 444416 1769 1 13390 2025-03-19 21:55:08.252 2025-03-19 21:55:08.252 444412 3686 444436 5293 2 13391 2025-03-20 03:17:59.856 2025-03-20 03:17:59.856 444575 2016 444582 954 2 13392 2025-03-20 03:14:56.75 2025-03-20 03:14:56.75 444575 2016 444580 13216 1 13393 2025-03-21 07:58:12.903 2025-03-21 07:58:12.903 444895 16998 446434 825 1 13394 2025-03-21 17:36:38.12 2025-03-21 17:36:38.12 447122 14705 447211 19071 1 13395 2025-03-21 16:17:00.636 2025-03-21 16:17:00.636 445420 4035 447106 15119 1 13396 2025-03-21 17:53:42.575 2025-03-21 17:53:42.575 445420 4035 447233 14688 2 13397 2025-03-21 06:37:19.484 2025-03-21 06:37:19.484 446117 1802 446393 692 1 13398 2025-03-21 18:32:28.473 2025-03-21 18:32:28.473 446369 13174 447272 15624 1 13399 2025-03-21 08:02:22.271 2025-03-21 08:02:22.271 446416 12921 446440 7760 1 13400 2025-03-21 17:05:11.521 2025-03-21 17:05:11.521 446511 795 447180 17693 1 13401 2025-03-21 17:02:01.876 2025-03-21 17:02:01.876 446591 5455 447177 20683 1 13402 2025-03-21 18:50:54.403 2025-03-21 18:50:54.403 446650 8726 447298 4292 2 13403 2025-03-21 12:05:47.899 2025-03-21 12:05:47.899 446650 8726 446657 2711 1 13404 2025-03-21 13:34:53.875 2025-03-21 13:34:53.875 446650 8726 446808 3417 1 13405 2025-03-21 12:20:35.654 2025-03-21 12:20:35.654 446686 6361 446688 16536 1 13406 2025-03-21 17:00:15.316 2025-03-21 17:00:15.316 446725 11798 447175 21218 1 13407 2025-03-21 17:01:15.431 2025-03-21 17:01:15.431 446725 11798 447176 12749 2 13408 2025-03-21 18:50:54.403 2025-03-21 18:50:54.403 446808 3417 447298 4292 1 13409 2025-03-21 16:32:39.202 2025-03-21 16:32:39.202 446838 1047 447140 21688 1 13410 2025-03-21 18:14:57.367 2025-03-21 18:14:57.367 446840 3411 447253 16447 1 13411 2025-03-21 16:50:05.813 2025-03-21 16:50:05.813 447155 12721 447167 20904 1 13412 2025-03-21 17:49:15.31 2025-03-21 17:49:15.31 446941 8045 447228 18526 1 13413 2025-03-21 17:55:52.075 2025-03-21 17:55:52.075 446941 8045 447238 656 2 13414 2025-03-21 18:13:39.949 2025-03-21 18:13:39.949 446941 8045 447249 20555 1 13415 2025-03-21 16:21:06.454 2025-03-21 16:21:06.454 447027 10016 447118 17201 1 13416 2025-03-21 16:51:58.908 2025-03-21 16:51:58.908 447029 732 447168 10283 1 13417 2025-03-21 18:39:04.832 2025-03-21 18:39:04.832 447053 17316 447279 17696 2 13418 2025-03-21 18:36:56.665 2025-03-21 18:36:56.665 447053 17316 447277 2098 1 13419 2025-03-21 16:24:46.058 2025-03-21 16:24:46.058 447059 11288 447128 8870 1 13420 2025-03-21 15:42:40.733 2025-03-21 15:42:40.733 447064 1135 447073 2206 1 13421 2025-03-21 18:08:56.618 2025-03-21 18:08:56.618 447071 20829 447244 1122 2 13422 2025-03-21 15:47:07.597 2025-03-21 15:47:07.597 447071 20829 447079 14791 1 13423 2025-03-21 16:57:08.55 2025-03-21 16:57:08.55 447124 21062 447173 1038 1 13424 2025-03-21 16:46:32.095 2025-03-21 16:46:32.095 447124 21062 447161 19394 1 13425 2025-03-21 18:35:43.605 2025-03-21 18:35:43.605 447124 21062 447276 9353 2 13426 2025-03-21 18:45:25.169 2025-03-21 18:45:25.169 447124 21062 447283 19459 3 13427 2025-03-22 15:55:58.017 2025-03-22 15:55:58.017 447084 1012 448454 20754 8 13428 2025-03-22 06:18:48.437 2025-03-22 06:18:48.437 447084 1012 447782 9347 7 13429 2025-03-22 05:59:28.635 2025-03-22 05:59:28.635 447084 1012 447772 17116 6 13430 2025-03-22 05:50:55.745 2025-03-22 05:50:55.745 447084 1012 447765 2670 5 13431 2025-03-22 05:35:38.746 2025-03-22 05:35:38.746 447084 1012 447757 9367 4 13432 2025-03-21 17:12:16.149 2025-03-21 17:12:16.149 447084 1012 447186 16747 1 13433 2025-03-22 15:58:59.701 2025-03-22 15:58:59.701 447084 1012 448458 16149 9 13434 2025-03-22 02:41:22.8 2025-03-22 02:41:22.8 447084 1012 447685 8168 3 13435 2025-03-22 01:58:52.372 2025-03-22 01:58:52.372 447084 1012 447661 777 2 13436 2025-03-21 16:18:43.262 2025-03-21 16:18:43.262 447086 13055 447111 2508 1 13437 2025-03-21 16:24:14.619 2025-03-21 16:24:14.619 447086 13055 447125 21424 2 13438 2025-03-21 16:35:48.327 2025-03-21 16:35:48.327 447086 13055 447147 19446 4 13439 2025-03-21 16:39:04.299 2025-03-21 16:39:04.299 447086 13055 447153 12072 5 13440 2025-03-21 16:30:28.048 2025-03-21 16:30:28.048 447086 13055 447138 21041 3 13441 2025-03-21 17:55:25.155 2025-03-21 17:55:25.155 447086 13055 447236 10493 2 13442 2025-03-21 16:20:40.931 2025-03-21 16:20:40.931 447095 1209 447115 20502 1 13443 2025-03-21 18:50:32.051 2025-03-21 18:50:32.051 447096 685 447296 6653 1 13444 2025-03-21 16:23:19.34 2025-03-21 16:23:19.34 447102 4323 447123 616 1 13445 2025-03-21 16:29:54.642 2025-03-21 16:29:54.642 447102 4323 447136 14503 2 13446 2025-03-21 16:43:58.131 2025-03-21 16:43:58.131 447102 4323 447159 13249 3 13447 2025-03-21 16:37:07.068 2025-03-21 16:37:07.068 447113 11862 447151 18615 3 13448 2025-03-21 16:28:25.832 2025-03-21 16:28:25.832 447113 11862 447134 4768 2 13449 2025-03-21 16:50:05.813 2025-03-21 16:50:05.813 447113 11862 447167 20904 5 13450 2025-03-21 16:26:06.798 2025-03-21 16:26:06.798 447113 11862 447133 3347 1 13451 2025-03-21 16:39:51.47 2025-03-21 16:39:51.47 447113 11862 447155 12721 4 13452 2025-03-21 18:49:35.941 2025-03-21 18:49:35.941 447116 2330 447295 4474 1 13453 2025-03-21 16:36:23.309 2025-03-21 16:36:23.309 447146 769 447149 18557 1 13454 2025-03-21 18:09:44.945 2025-03-21 18:09:44.945 447190 18717 447246 18901 2 13455 2025-03-21 18:11:13.349 2025-03-21 18:11:13.349 447190 18717 447247 21303 3 13456 2025-03-21 17:16:41.268 2025-03-21 17:16:41.268 447190 18717 447193 10698 1 13457 2025-03-21 17:21:57.574 2025-03-21 17:21:57.574 447190 18717 447198 4692 2 13458 2025-03-21 18:07:07.553 2025-03-21 18:07:07.553 447190 18717 447243 1198 1 13459 2025-03-22 21:05:06.915 2025-03-22 21:05:06.915 447645 19888 448763 9099 1 13460 2025-03-22 15:57:41.09 2025-03-22 15:57:41.09 447768 654 448456 1577 1 13461 2025-03-22 15:55:58.017 2025-03-22 15:55:58.017 447772 17116 448454 20754 2 13462 2025-03-22 06:18:48.437 2025-03-22 06:18:48.437 447772 17116 447782 9347 1 13463 2025-03-22 15:58:59.701 2025-03-22 15:58:59.701 447772 17116 448458 16149 3 13464 2025-03-22 10:20:27.906 2025-03-22 10:20:27.906 447950 644 447981 4415 1 13465 2025-03-22 11:02:53.795 2025-03-22 11:02:53.795 448019 10690 448031 14905 1 13466 2025-03-23 11:59:51.719 2025-03-23 11:59:51.719 448026 15806 449494 20788 2 13467 2025-03-22 15:09:45.326 2025-03-22 15:09:45.326 448026 15806 448361 2514 2 13468 2025-03-23 05:45:21.735 2025-03-23 05:45:21.735 448026 15806 449038 6335 1 13469 2025-03-22 12:28:48.003 2025-03-22 12:28:48.003 448026 15806 448131 739 1 13470 2025-03-22 22:35:31.711 2025-03-22 22:35:31.711 448117 11776 448827 1326 1 13471 2025-03-22 15:09:45.326 2025-03-22 15:09:45.326 448131 739 448361 2514 1 13472 2025-03-22 15:52:40.766 2025-03-22 15:52:40.766 448142 17392 448449 1237 1 13473 2025-03-22 15:18:20.996 2025-03-22 15:18:20.996 448145 21057 448380 9418 1 13474 2025-03-22 13:29:10.782 2025-03-22 13:29:10.782 448176 5961 448199 831 1 13475 2025-03-22 13:50:10.217 2025-03-22 13:50:10.217 448216 2329 448227 20225 1 13476 2025-03-22 21:41:55.954 2025-03-22 21:41:55.954 448217 15160 448783 1438 1 13477 2025-03-22 13:58:12.38 2025-03-22 13:58:12.38 448236 16336 448238 2961 1 13478 2025-03-22 15:27:38.131 2025-03-22 15:27:38.131 448260 10981 448398 17201 1 13479 2025-03-22 16:21:24.081 2025-03-22 16:21:24.081 448275 20871 448491 21184 1 13480 2025-03-22 21:51:23.47 2025-03-22 21:51:23.47 448279 21214 448795 678 1 13481 2025-03-22 15:43:56.425 2025-03-22 15:43:56.425 448299 11038 448426 21019 1 13482 2025-03-22 15:47:37.988 2025-03-22 15:47:37.988 448299 11038 448432 19826 2 13483 2025-03-22 15:27:44.081 2025-03-22 15:27:44.081 448311 8045 448399 18618 1 13484 2025-03-22 14:53:05.602 2025-03-22 14:53:05.602 448314 1718 448334 1198 1 13485 2025-03-22 20:07:19.651 2025-03-22 20:07:19.651 448319 825 448716 7667 3 13486 2025-03-22 21:20:48.514 2025-03-22 21:20:48.514 448319 825 448771 654 4 13487 2025-03-22 19:28:02.356 2025-03-22 19:28:02.356 448319 825 448686 9333 1 13488 2025-03-22 15:30:39.632 2025-03-22 15:30:39.632 448319 825 448403 8985 1 13489 2025-03-22 15:38:52.389 2025-03-22 15:38:52.389 448319 825 448417 12935 2 13490 2025-03-22 21:30:18.107 2025-03-22 21:30:18.107 448319 825 448776 16638 5 13491 2025-03-22 19:52:53.023 2025-03-22 19:52:53.023 448319 825 448707 19488 2 13492 2025-03-22 15:11:41.528 2025-03-22 15:11:41.528 448342 1173 448365 2639 2 13493 2025-03-22 15:18:40.517 2025-03-22 15:18:40.517 448342 1173 448381 10291 4 13494 2025-03-22 15:14:03.834 2025-03-22 15:14:03.834 448342 1173 448371 16406 2 13495 2025-03-22 15:07:46.914 2025-03-22 15:07:46.914 448342 1173 448359 20201 1 13496 2025-03-22 15:17:01.021 2025-03-22 15:17:01.021 448342 1173 448377 21041 3 13497 2025-03-22 15:22:05.42 2025-03-22 15:22:05.42 448342 1173 448388 1825 2 13498 2025-03-22 15:24:28.174 2025-03-22 15:24:28.174 448342 1173 448393 12245 2 13499 2025-03-22 15:18:40.517 2025-03-22 15:18:40.517 448371 16406 448381 10291 2 13500 2025-03-22 15:17:01.021 2025-03-22 15:17:01.021 448371 16406 448377 21041 1 13501 2025-03-22 16:16:11.397 2025-03-22 16:16:11.397 448421 5173 448484 769 1 13502 2025-03-22 16:00:40.186 2025-03-22 16:00:40.186 448435 21412 448461 5499 1 13503 2025-03-22 16:00:31.17 2025-03-22 16:00:31.17 448447 2514 448460 7668 2 13504 2025-03-22 15:58:45.515 2025-03-22 15:58:45.515 448447 2514 448457 15052 1 13505 2025-03-22 16:22:57.34 2025-03-22 16:22:57.34 448463 11967 448492 18174 1 13506 2025-03-22 16:23:15.733 2025-03-22 16:23:15.733 448468 17212 448493 18449 1 13507 2025-03-22 16:13:31.974 2025-03-22 16:13:31.974 448471 13921 448478 17714 1 13508 2025-03-22 23:27:20.066 2025-03-22 23:27:20.066 448477 20280 448854 21539 1 13509 2025-03-22 21:47:17.929 2025-03-22 21:47:17.929 448643 19943 448789 1729 1 13510 2025-03-22 21:49:25.591 2025-03-22 21:49:25.591 448643 19943 448792 19378 2 13511 2025-03-22 20:23:53.506 2025-03-22 20:23:53.506 448697 19637 448730 2285 1 13512 2025-03-22 20:07:19.651 2025-03-22 20:07:19.651 448707 19488 448716 7667 1 13513 2025-03-22 21:20:48.514 2025-03-22 21:20:48.514 448707 19488 448771 654 2 13514 2025-03-22 21:30:18.107 2025-03-22 21:30:18.107 448707 19488 448776 16638 3 13515 2025-03-22 21:22:05.529 2025-03-22 21:22:05.529 448713 6419 448773 21119 2 13516 2025-03-22 21:28:19.442 2025-03-22 21:28:19.442 448713 6419 448775 16858 3 13517 2025-03-22 20:26:09.331 2025-03-22 20:26:09.331 448713 6419 448732 10291 1 13518 2025-03-22 21:30:18.107 2025-03-22 21:30:18.107 448771 654 448776 16638 1 13519 2025-03-22 22:18:47.932 2025-03-22 22:18:47.932 448814 5597 448815 16754 1 13520 2025-03-22 23:14:21.913 2025-03-22 23:14:21.913 448836 9529 448843 13575 1 13521 2025-03-22 23:19:09.019 2025-03-22 23:19:09.019 448840 1064 448849 20647 1 13522 2025-03-22 23:42:08.981 2025-03-22 23:42:08.981 448862 12965 448863 675 1 13523 2025-03-24 14:54:34.149 2025-03-24 14:54:34.149 448912 14489 451450 17237 1 13524 2025-03-24 14:57:12.722 2025-03-24 14:57:12.722 448912 14489 451453 14705 2 13525 2025-03-23 03:50:52.042 2025-03-23 03:50:52.042 448977 20612 448984 17570 3 13526 2025-03-23 03:43:54.847 2025-03-23 03:43:54.847 448977 20612 448981 17103 2 13527 2025-03-23 03:42:35.5 2025-03-23 03:42:35.5 448977 20612 448979 21539 1 13528 2025-03-23 07:12:30.509 2025-03-23 07:12:30.509 449072 15049 449084 11996 2 13529 2025-03-23 07:10:13.274 2025-03-23 07:10:13.274 449072 15049 449083 917 1 13530 2025-03-23 07:07:37.237 2025-03-23 07:07:37.237 449076 674 449079 7119 1 13531 2025-03-23 07:31:56.187 2025-03-23 07:31:56.187 449076 674 449103 19777 2 13532 2025-03-23 08:00:10.051 2025-03-23 08:00:10.051 449108 6717 449131 21401 2 13533 2025-03-23 07:45:13.364 2025-03-23 07:45:13.364 449108 6717 449113 730 1 13534 2025-03-23 13:22:18.641 2025-03-23 13:22:18.641 449507 15239 449662 16929 1 13535 2025-03-24 13:42:56.909 2025-03-24 13:42:56.909 449507 15239 451309 19535 2 13536 2025-03-23 20:15:55.464 2025-03-23 20:15:55.464 449517 1272 450259 17690 2 13537 2025-03-23 12:17:19.257 2025-03-23 12:17:19.257 449517 1272 449524 9363 1 13538 2025-03-27 13:09:04.485 2025-03-27 13:09:04.485 455923 4650 456073 10060 4 13539 2025-03-27 12:50:42.898 2025-03-27 12:50:42.898 455923 4650 455994 5112 3 13540 2025-03-27 13:14:30.283 2025-03-27 13:14:30.283 455923 4650 456086 10094 5 13541 2025-03-27 12:36:01.878 2025-03-27 12:36:01.878 455923 4650 455952 21485 1 13542 2025-03-27 12:40:58.213 2025-03-27 12:40:58.213 455923 4650 455962 759 2 13543 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 455923 4650 456804 992 6 13544 2025-03-27 13:14:30.283 2025-03-27 13:14:30.283 456073 10060 456086 10094 1 13545 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 456073 10060 456804 992 2 13546 2025-03-27 19:22:51.493 2025-03-27 19:22:51.493 456239 20751 456693 12946 2 13547 2025-03-27 17:32:00.228 2025-03-27 17:32:00.228 456239 20751 456590 20861 1 13548 2025-03-27 17:48:57.584 2025-03-27 17:48:57.584 456574 21060 456621 15806 2 13549 2025-03-27 17:41:24.21 2025-03-27 17:41:24.21 456574 21060 456607 21485 1 13550 2025-03-27 22:41:43.787 2025-03-27 22:41:43.787 456790 1618 456831 4084 2 13551 2025-03-27 22:22:26.982 2025-03-27 22:22:26.982 456790 1618 456815 1002 1 13552 2025-03-28 13:01:34.829 2025-03-28 13:01:34.829 457280 20551 457378 1008 2 13553 2025-03-28 12:57:13.439 2025-03-28 12:57:13.439 457280 20551 457372 20829 1 13554 2025-03-28 14:54:35.333 2025-03-28 14:54:35.333 457508 21070 457528 12272 1 13555 2025-03-28 15:10:27.789 2025-03-28 15:10:27.789 457508 21070 457562 21207 2 13556 2025-03-28 15:41:13.823 2025-03-28 15:41:13.823 457513 19138 457605 21332 1 13557 2025-03-28 18:37:25.928 2025-03-28 18:37:25.928 457513 19138 457835 20647 2 13558 2025-03-28 23:37:15.299 2025-03-28 23:37:15.299 458044 14169 458106 15148 2 13559 2025-03-28 22:19:45.248 2025-03-28 22:19:45.248 458044 14169 458047 4624 1 13560 2025-03-28 20:12:16.94 2025-03-28 20:12:16.94 457546 21064 457957 20275 1 13561 2025-03-28 20:30:45.359 2025-03-28 20:30:45.359 457546 21064 457980 652 2 13562 2025-03-28 21:33:07.807 2025-03-28 21:33:07.807 457817 1447 458017 18321 1 13563 2025-03-29 07:32:41.051 2025-03-29 07:32:41.051 457817 1447 458307 11750 2 13564 2025-03-28 19:55:05.449 2025-03-28 19:55:05.449 457825 759 457936 1515 1 13565 2025-03-28 18:42:35.833 2025-03-28 18:42:35.833 457825 759 457842 2780 1 13566 2025-03-28 18:47:07.514 2025-03-28 18:47:07.514 457825 759 457849 21072 2 13567 2025-03-28 18:48:51.256 2025-03-28 18:48:51.256 457825 759 457857 20754 4 13568 2025-03-28 19:55:29.503 2025-03-28 19:55:29.503 457825 759 457937 1806 2 13569 2025-03-28 18:47:23.833 2025-03-28 18:47:23.833 457825 759 457851 17116 3 13570 2025-03-28 21:54:53.218 2025-03-28 21:54:53.218 457836 7760 458028 7773 1 13571 2025-03-29 05:34:22.685 2025-03-29 05:34:22.685 457836 7760 458208 1549 2 13572 2025-03-28 18:48:51.256 2025-03-28 18:48:51.256 457849 21072 457857 20754 2 13573 2025-03-28 18:47:23.833 2025-03-28 18:47:23.833 457849 21072 457851 17116 1 13574 2025-03-28 21:24:35.687 2025-03-28 21:24:35.687 457897 11716 458013 14260 2 13575 2025-03-28 20:39:00.623 2025-03-28 20:39:00.623 457897 11716 457988 5775 1 13576 2025-03-28 22:23:03.626 2025-03-28 22:23:03.626 458025 16571 458053 10013 1 13577 2025-03-28 22:32:38.535 2025-03-28 22:32:38.535 458025 16571 458059 12139 2 13578 2025-03-29 07:17:39.32 2025-03-29 07:17:39.32 458294 20137 458299 11873 1 13579 2025-03-29 07:42:42.56 2025-03-29 07:42:42.56 458294 20137 458316 20715 3 13580 2025-03-29 08:09:42.3 2025-03-29 08:09:42.3 458294 20137 458342 5758 3 13581 2025-03-29 07:41:26.651 2025-03-29 07:41:26.651 458294 20137 458313 11038 2 13582 2025-03-29 07:48:23.728 2025-03-29 07:48:23.728 458294 20137 458320 2963 4 13583 2025-03-29 08:23:34.864 2025-03-29 08:23:34.864 458294 20137 458363 21383 5 13584 2025-03-29 08:19:53.331 2025-03-29 08:19:53.331 458294 20137 458357 3745 4 13585 2025-03-29 08:05:30.919 2025-03-29 08:05:30.919 458294 20137 458341 8989 2 13586 2025-03-29 08:11:57.172 2025-03-29 08:11:57.172 458305 18430 458345 1650 1 13587 2025-03-29 08:21:39.195 2025-03-29 08:21:39.195 458305 18430 458361 827 2 13588 2025-03-29 09:03:52.837 2025-03-29 09:03:52.837 458408 16788 458420 12346 2 13589 2025-03-29 08:59:48.122 2025-03-29 08:59:48.122 458408 16788 458416 15474 1 13590 2022-10-26 05:46:47.522 2022-10-26 05:46:47.522 3061 9350 3153 641 5 13591 2022-10-26 08:48:39.15 2022-10-26 08:48:39.15 3061 9350 3160 6382 6 13592 2022-10-25 07:30:17.606 2022-10-25 07:30:17.606 3061 9350 3111 617 4 13593 2022-10-25 06:33:59.36 2022-10-25 06:33:59.36 3061 9350 3106 16296 3 13594 2022-10-25 06:04:45.795 2022-10-25 06:04:45.795 3061 9350 3104 17727 2 13595 2022-10-24 11:55:36.187 2022-10-24 11:55:36.187 3061 9350 3066 4862 1 13596 2022-09-26 14:03:27.913 2022-09-26 14:03:27.913 1816 9276 1825 3686 2 13597 2022-09-26 14:02:22.149 2022-09-26 14:02:22.149 1816 9276 1823 17209 1 13598 2022-09-11 18:23:41.483 2022-09-11 18:23:41.483 1319 674 1322 13198 1 13599 2022-09-11 18:26:53.62 2022-09-11 18:26:53.62 1319 674 1323 5761 2 13600 2022-08-20 12:21:29.937 2022-08-20 12:21:29.937 644 16270 700 21104 1 13601 2022-09-26 11:56:27.071 2022-09-26 11:56:27.071 644 16270 1813 1959 2 13602 2022-09-13 12:01:41.323 2022-09-13 12:01:41.323 1359 19332 1366 2492 2 13603 2022-09-13 17:48:58.652 2022-09-13 17:48:58.652 1359 19332 1398 11018 3 13604 2022-09-13 06:43:59.429 2022-09-13 06:43:59.429 1359 19332 1360 16912 1 13605 2022-09-15 14:33:38.43 2022-09-15 14:33:38.43 1392 11873 1474 14657 3 13606 2022-09-13 17:25:21.441 2022-09-13 17:25:21.441 1392 11873 1396 13169 2 13607 2022-09-13 17:08:31.604 2022-09-13 17:08:31.604 1392 11873 1395 16638 1 13608 2022-09-26 09:29:53.208 2022-09-26 09:29:53.208 1565 679 1807 11714 4 13609 2022-09-20 12:03:26.001 2022-09-20 12:03:26.001 1565 679 1610 18772 3 13610 2022-09-20 05:58:21.825 2022-09-20 05:58:21.825 1565 679 1604 15488 2 13611 2022-09-19 12:18:33.688 2022-09-19 12:18:33.688 1565 679 1571 706 1 13612 2022-09-15 14:33:38.43 2022-09-15 14:33:38.43 1395 16638 1474 14657 2 13613 2022-09-13 17:25:21.441 2022-09-13 17:25:21.441 1395 16638 1396 13169 1 13614 2022-10-31 17:40:50.017 2022-10-31 17:40:50.017 3398 18265 3400 1738 1 13615 2022-10-31 18:02:22.46 2022-10-31 18:02:22.46 3398 18265 3401 20691 2 13616 2022-09-29 23:46:18.098 2022-09-29 23:46:18.098 1952 21148 1968 633 2 13617 2022-09-29 22:53:49.635 2022-09-29 22:53:49.635 1952 21148 1965 13361 1 13618 2022-09-30 00:22:59.114 2022-09-30 00:22:59.114 1952 21148 1970 4570 3 13619 2022-09-30 20:47:50.367 2022-09-30 20:47:50.367 1952 21148 1997 797 4 13620 2024-07-28 14:40:39.506 2024-07-28 14:40:39.506 206926 17116 206958 18930 2 13621 2024-07-28 14:15:46.957 2024-07-28 14:15:46.957 206926 17116 206938 4238 1 13622 2025-03-22 22:24:55.936 2025-03-22 22:24:55.936 104402 21422 448818 16970 2 13623 2023-12-28 08:12:20.887 2023-12-28 08:12:20.887 104402 21422 104413 21768 1 13624 2025-02-15 16:40:48.426 2025-02-15 16:40:48.426 404157 1490 404217 9346 2 13625 2025-02-15 16:22:09.414 2025-02-15 16:22:09.414 404157 1490 404197 17727 1 13626 2025-02-15 20:58:13.34 2025-02-15 20:58:13.34 404157 1490 404396 14271 3 13627 2022-10-01 14:48:39.705 2022-10-01 14:48:39.705 2002 19199 2008 16978 1 13628 2022-10-01 15:04:50.551 2022-10-01 15:04:50.551 2002 19199 2011 3504 2 13629 2022-10-01 15:28:50.693 2022-10-01 15:28:50.693 2002 19199 2019 20523 3 13630 2022-10-14 11:26:09.33 2022-10-14 11:26:09.33 2473 21026 2512 2543 2 13631 2022-10-13 16:52:28.442 2022-10-13 16:52:28.442 2473 21026 2477 1064 1 13632 2022-10-16 01:16:06.402 2022-10-16 01:16:06.402 2553 11967 2569 20245 3 13633 2022-10-15 10:35:34.601 2022-10-15 10:35:34.601 2553 11967 2560 18412 2 13634 2022-10-15 02:40:58.046 2022-10-15 02:40:58.046 2553 11967 2554 12959 1 13635 2022-10-20 17:08:10.321 2022-10-20 17:08:10.321 2828 18557 2872 16847 2 13636 2022-10-20 16:51:17.438 2022-10-20 16:51:17.438 2828 18557 2866 2196 1 13637 2022-09-30 00:22:59.114 2022-09-30 00:22:59.114 1968 633 1970 4570 1 13638 2022-09-30 20:47:50.367 2022-09-30 20:47:50.367 1968 633 1997 797 2 13639 2022-10-01 15:04:50.551 2022-10-01 15:04:50.551 2008 16978 2011 3504 1 13640 2022-10-01 15:28:50.693 2022-10-01 15:28:50.693 2008 16978 2019 20523 2 13641 2022-10-23 07:07:01.234 2022-10-23 07:07:01.234 2990 18269 2999 6382 1 13642 2022-10-23 18:53:17.563 2022-10-23 18:53:17.563 2990 18269 3037 725 3 13643 2022-10-24 12:28:40.627 2022-10-24 12:28:40.627 2990 18269 3068 8289 7 13644 2022-10-24 06:55:22.723 2022-10-24 06:55:22.723 2990 18269 3060 21349 6 13645 2022-10-23 19:10:34.094 2022-10-23 19:10:34.094 2990 18269 3039 19826 4 13646 2022-10-23 18:13:53.098 2022-10-23 18:13:53.098 2990 18269 3035 16988 2 13647 2022-10-23 20:00:31.066 2022-10-23 20:00:31.066 2990 18269 3042 1617 5 13648 2022-10-31 16:31:56.83 2022-10-31 16:31:56.83 3397 21072 3398 18265 1 13649 2022-10-31 17:40:50.017 2022-10-31 17:40:50.017 3397 21072 3400 1738 2 13650 2022-10-31 18:02:22.46 2022-10-31 18:02:22.46 3397 21072 3401 20691 3 13651 2022-11-09 11:34:37.498 2022-11-09 11:34:37.498 3490 20963 3731 19735 3 13652 2022-11-09 03:18:52.941 2022-11-09 03:18:52.941 3490 20963 3721 761 2 13653 2022-11-09 01:54:37.002 2022-11-09 01:54:37.002 3490 20963 3718 18734 1 13654 2022-10-26 05:46:47.522 2022-10-26 05:46:47.522 3111 617 3153 641 1 13655 2022-10-26 08:48:39.15 2022-10-26 08:48:39.15 3111 617 3160 6382 2 13656 2022-11-08 20:40:33.98 2022-11-08 20:40:33.98 3674 15367 3682 21057 4 13657 2022-11-08 20:31:11.498 2022-11-08 20:31:11.498 3674 15367 3679 8376 2 13658 2022-11-08 21:08:46.441 2022-11-08 21:08:46.441 3674 15367 3689 20381 7 13659 2022-11-08 21:23:25.395 2022-11-08 21:23:25.395 3674 15367 3693 5852 7 13660 2022-11-08 20:36:43.517 2022-11-08 20:36:43.517 3674 15367 3681 6687 3 13661 2022-11-08 20:55:01.071 2022-11-08 20:55:01.071 3674 15367 3687 13361 6 13662 2022-11-08 20:42:36.892 2022-11-08 20:42:36.892 3674 15367 3683 15103 5 13663 2022-11-08 19:44:40.077 2022-11-08 19:44:40.077 3674 15367 3677 19812 1 13664 2022-11-12 22:09:47.468 2022-11-12 22:09:47.468 3996 18615 3999 768 1 13665 2022-11-12 23:10:02.952 2022-11-12 23:10:02.952 3996 18615 4004 650 2 13666 2024-07-02 00:54:00.607 2024-07-02 00:54:00.607 192964 21020 192971 886 2 13667 2024-07-02 00:13:33.624 2024-07-02 00:13:33.624 192964 21020 192967 16808 1 13668 2024-07-04 17:45:16.836 2024-07-04 17:45:16.836 194621 1505 194629 3478 3 13669 2024-07-04 17:41:25.232 2024-07-04 17:41:25.232 194621 1505 194626 750 2 13670 2024-07-04 17:29:30.379 2024-07-04 17:29:30.379 194621 1505 194622 15806 1 13671 2022-09-26 09:29:53.208 2022-09-26 09:29:53.208 1604 15488 1807 11714 2 13672 2022-09-20 12:03:26.001 2022-09-20 12:03:26.001 1604 15488 1610 18772 1 13673 2022-09-22 04:55:42.945 2022-09-22 04:55:42.945 1657 2724 1672 20602 1 13674 2022-09-22 11:46:35.134 2022-09-22 11:46:35.134 1657 2724 1679 17237 2 13675 2022-09-29 11:05:33.546 2022-09-29 11:05:33.546 1907 706 1929 7978 1 13676 2022-09-29 11:35:12.301 2022-09-29 11:35:12.301 1907 706 1930 5557 2 13677 2022-10-16 01:16:06.402 2022-10-16 01:16:06.402 2554 12959 2569 20245 2 13678 2022-10-15 10:35:34.601 2022-10-15 10:35:34.601 2554 12959 2560 18412 1 13679 2022-10-23 18:53:17.563 2022-10-23 18:53:17.563 2999 6382 3037 725 2 13680 2022-10-24 12:28:40.627 2022-10-24 12:28:40.627 2999 6382 3068 8289 6 13681 2022-10-24 06:55:22.723 2022-10-24 06:55:22.723 2999 6382 3060 21349 5 13682 2022-10-23 19:10:34.094 2022-10-23 19:10:34.094 2999 6382 3039 19826 3 13683 2022-10-23 18:13:53.098 2022-10-23 18:13:53.098 2999 6382 3035 16988 1 13684 2022-10-23 20:00:31.066 2022-10-23 20:00:31.066 2999 6382 3042 1617 4 13685 2022-10-24 12:28:40.627 2022-10-24 12:28:40.627 3042 1617 3068 8289 2 13686 2022-10-24 06:55:22.723 2022-10-24 06:55:22.723 3042 1617 3060 21349 1 13687 2025-03-19 12:59:17.627 2025-03-19 12:59:17.627 413889 11527 443662 19924 2 13688 2025-02-23 14:19:27.294 2025-02-23 14:19:27.294 413889 11527 413897 848 1 13689 2022-11-08 21:08:46.441 2022-11-08 21:08:46.441 3682 21057 3689 20381 3 13690 2022-11-08 21:23:25.395 2022-11-08 21:23:25.395 3682 21057 3693 5852 3 13691 2022-11-08 20:55:01.071 2022-11-08 20:55:01.071 3682 21057 3687 13361 2 13692 2022-11-08 20:42:36.892 2022-11-08 20:42:36.892 3682 21057 3683 15103 1 13693 2022-11-09 11:34:37.498 2022-11-09 11:34:37.498 3718 18734 3731 19735 2 13694 2022-11-09 03:18:52.941 2022-11-09 03:18:52.941 3718 18734 3721 761 1 13695 2023-05-10 14:24:07.88 2023-05-10 14:24:07.88 21728 2681 21747 963 2 13696 2023-05-10 13:40:48.196 2023-05-10 13:40:48.196 21728 2681 21729 631 1 13697 2025-02-15 05:37:44.328 2025-02-15 05:37:44.328 21728 2681 403692 19333 3 13698 2023-12-11 23:03:51.62 2023-12-11 23:03:51.62 97526 10731 97606 17690 2 13699 2023-12-11 19:37:00.728 2023-12-11 19:37:00.728 97526 10731 97530 8059 1 13700 2025-02-20 02:37:15.994 2025-02-20 02:37:15.994 404369 17147 409954 20647 1 13701 2025-02-20 21:19:23.333 2025-02-20 21:19:23.333 404369 17147 410985 6717 2 13702 2024-03-06 17:42:02.348 2024-03-06 17:42:02.348 137881 20599 137892 5427 1 13703 2024-03-06 18:38:01.339 2024-03-06 18:38:01.339 137881 20599 137922 6229 2 13704 2024-03-10 15:34:06.215 2024-03-10 15:34:06.215 140617 8289 140625 1425 1 13705 2024-03-10 17:01:25.599 2024-03-10 17:01:25.599 140617 8289 140680 2596 2 13706 2024-06-24 00:37:00.985 2024-06-24 00:37:00.985 188673 1658 188714 20434 2 13707 2024-06-23 21:37:20.3 2024-06-23 21:37:20.3 188673 1658 188675 7966 1 13708 2024-07-04 17:45:16.836 2024-07-04 17:45:16.836 194622 15806 194629 3478 2 13709 2024-07-04 17:41:25.232 2024-07-04 17:41:25.232 194622 15806 194626 750 1 13710 2025-03-11 17:20:08.055 2025-03-11 17:20:08.055 216553 6653 434227 20861 2 13711 2025-03-12 11:26:36.151 2025-03-12 11:26:36.151 216553 6653 434970 17209 3 13712 2025-03-11 11:14:53.99 2025-03-11 11:14:53.99 216553 6653 433750 20913 1 13713 2024-09-19 04:33:57.349 2024-09-19 04:33:57.349 239323 21506 240894 21091 2 13714 2024-09-17 12:11:10.823 2024-09-17 12:11:10.823 239323 21506 239328 1411 1 13715 2025-03-19 20:03:35.128 2025-03-19 20:03:35.128 239323 21506 444352 1603 3 13716 2024-11-24 22:35:53.523 2024-11-24 22:35:53.523 307282 6688 307291 8173 2 13717 2024-11-24 22:32:25.713 2024-11-24 22:32:25.713 307282 6688 307285 19071 1 13718 2025-03-03 13:32:39.529 2025-03-03 13:32:39.529 423594 19906 423604 21026 3 13719 2025-03-03 13:29:17.128 2025-03-03 13:29:17.128 423594 19906 423596 1006 1 13720 2025-03-03 13:31:34.496 2025-03-03 13:31:34.496 423594 19906 423602 6229 2 13721 2024-11-25 08:27:14.94 2024-11-25 08:27:14.94 307592 18306 307598 5527 2 13722 2024-11-25 08:21:47.641 2024-11-25 08:21:47.641 307592 18306 307595 19459 1 13723 2024-11-25 10:03:20.556 2024-11-25 10:03:20.556 307658 16948 307702 20479 2 13724 2024-11-25 09:43:08.654 2024-11-25 09:43:08.654 307658 16948 307681 17082 1 13725 2024-11-25 15:43:19.372 2024-11-25 15:43:19.372 308049 2335 308086 9084 2 13726 2024-11-25 15:24:12.087 2024-11-25 15:24:12.087 308049 2335 308051 21815 1 13727 2025-02-25 21:10:51.113 2025-02-25 21:10:51.113 415915 15978 416799 21003 3 13728 2025-02-25 08:50:46.538 2025-02-25 08:50:46.538 415915 15978 415918 7992 1 13729 2025-02-25 08:58:22.67 2025-02-25 08:58:22.67 415915 15978 415928 9438 2 13730 2025-03-03 21:37:33.345 2025-03-03 21:37:33.345 424121 13547 424185 14168 3 13731 2025-03-03 21:34:53.243 2025-03-03 21:34:53.243 424121 13547 424183 20026 2 13732 2025-03-03 21:32:51.066 2025-03-03 21:32:51.066 424121 13547 424182 1985 1 13733 2025-03-03 21:40:23.982 2025-03-03 21:40:23.982 424121 13547 424188 18468 4 13734 2025-03-03 21:48:56.141 2025-03-03 21:48:56.141 424121 13547 424200 11609 5 13735 2025-03-01 23:50:03.187 2025-03-01 23:50:03.187 421737 16309 421738 674 1 13736 2025-03-01 23:55:50.365 2025-03-01 23:55:50.365 421737 16309 421747 1567 3 13737 2025-03-01 23:50:41.485 2025-03-01 23:50:41.485 421737 16309 421739 8945 2 13738 2024-12-06 05:13:24.617 2024-12-06 05:13:24.617 320343 21060 320368 19863 1 13739 2024-12-06 14:39:50.834 2024-12-06 14:39:50.834 320343 21060 320752 16839 2 13740 2024-12-06 20:13:34.442 2024-12-06 20:13:34.442 321001 1490 321030 20754 2 13741 2024-12-06 19:41:13.629 2024-12-06 19:41:13.629 321001 1490 321012 20817 1 13742 2024-12-22 18:19:55.084 2024-12-22 18:19:55.084 338168 12738 338461 13921 1 13743 2025-03-21 18:20:53.34 2025-03-21 18:20:53.34 338168 12738 447259 21072 2 13744 2025-01-03 05:50:04.022 2025-01-03 05:50:04.022 354465 21051 354472 1469 1 13745 2025-03-12 14:01:44.061 2025-03-12 14:01:44.061 354465 21051 435157 16350 2 13746 2025-01-30 16:39:29.457 2025-01-30 16:39:29.457 386138 20864 386140 11750 1 13747 2025-01-30 17:29:20.54 2025-01-30 17:29:20.54 386138 20864 386199 919 2 13748 2025-03-01 15:09:24.705 2025-03-01 15:09:24.705 386138 20864 421301 11417 3 13749 2025-02-14 23:59:46.748 2025-02-14 23:59:46.748 396500 20799 403561 726 3 13750 2025-02-11 19:12:58.63 2025-02-11 19:12:58.63 396500 20799 399955 8664 2 13751 2025-02-10 03:54:14.268 2025-02-10 03:54:14.268 396500 20799 397438 8648 1 13752 2025-02-10 16:11:25.511 2025-02-10 16:11:25.511 398184 16816 398382 19806 1 13753 2025-02-10 16:20:14.763 2025-02-10 16:20:14.763 398184 16816 398392 676 2 13754 2025-02-14 09:15:10.019 2025-02-14 09:15:10.019 398184 16816 402935 20563 3 13755 2025-02-13 05:19:07.197 2025-02-13 05:19:07.197 400645 20981 401517 1038 3 13756 2025-02-12 21:05:08.907 2025-02-12 21:05:08.907 400645 20981 401285 14169 1 13757 2025-02-12 22:03:21.403 2025-02-12 22:03:21.403 400645 20981 401317 20841 2 13758 2025-02-13 05:17:47.767 2025-02-13 05:17:47.767 401500 1307 401513 1122 1 13759 2025-02-13 05:20:07.369 2025-02-13 05:20:07.369 401500 1307 401519 14705 2 13760 2025-02-13 09:39:54.94 2025-02-13 09:39:54.94 401500 1307 401652 2459 3 13761 2025-02-13 06:32:51.492 2025-02-13 06:32:51.492 401544 1638 401552 21710 1 13762 2025-02-13 10:18:32.216 2025-02-13 10:18:32.216 401544 1638 401688 8416 3 13763 2025-02-13 06:38:38.441 2025-02-13 06:38:38.441 401544 1638 401557 16230 2 13764 2025-02-13 22:42:39.676 2025-02-13 22:42:39.676 401595 6030 402676 17011 2 13765 2025-02-14 01:43:15.165 2025-02-14 01:43:15.165 401595 6030 402758 21455 3 13766 2025-02-13 14:26:10.392 2025-02-13 14:26:10.392 401595 6030 402042 17046 1 13767 2025-02-13 10:20:35.928 2025-02-13 10:20:35.928 401654 16998 401692 13042 3 13768 2025-02-13 10:08:50.348 2025-02-13 10:08:50.348 401654 16998 401674 8664 2 13769 2025-02-13 09:58:22.112 2025-02-13 09:58:22.112 401654 16998 401661 4259 1 13770 2025-02-13 11:40:52.008 2025-02-13 11:40:52.008 401703 6537 401773 2123 2 13771 2025-02-13 11:21:31.94 2025-02-13 11:21:31.94 401703 6537 401754 16124 1 13772 2025-02-13 17:36:09.026 2025-02-13 17:36:09.026 401703 6537 402351 20906 3 13773 2025-02-13 17:49:47.607 2025-02-13 17:49:47.607 402369 960 402374 16097 1 13774 2025-02-13 17:52:54.127 2025-02-13 17:52:54.127 402369 960 402380 19117 3 13775 2025-02-13 17:51:11.575 2025-02-13 17:51:11.575 402369 960 402378 9171 2 13776 2025-02-15 21:27:58.743 2025-02-15 21:27:58.743 402727 7746 404423 732 3 13777 2025-02-14 01:34:22.491 2025-02-14 01:34:22.491 402727 7746 402754 11522 1 13778 2025-02-15 21:07:23.285 2025-02-15 21:07:23.285 402727 7746 404410 20599 2 13779 2025-02-16 00:38:11.791 2025-02-16 00:38:11.791 402749 20280 404529 21805 4 13780 2025-02-15 20:58:41.655 2025-02-15 20:58:41.655 402749 20280 404398 6361 3 13781 2025-02-15 12:18:03.031 2025-02-15 12:18:03.031 402749 20280 403974 965 2 13782 2025-02-15 08:39:33.476 2025-02-15 08:39:33.476 402749 20280 403816 18265 1 13783 2025-02-14 09:06:54.172 2025-02-14 09:06:54.172 402890 1474 402921 11621 1 13784 2025-02-14 09:35:00.541 2025-02-14 09:35:00.541 402890 1474 402956 4754 3 13785 2025-02-14 09:14:31.31 2025-02-14 09:14:31.31 402890 1474 402933 19689 2 13786 2025-02-15 21:00:09.39 2025-02-15 21:00:09.39 402955 17976 404401 16176 3 13787 2025-02-14 10:36:17.745 2025-02-14 10:36:17.745 402955 17976 402995 4624 1 13788 2025-02-14 18:16:39.63 2025-02-14 18:16:39.63 402955 17976 403365 10280 2 13789 2025-02-14 13:58:21.315 2025-02-14 13:58:21.315 402991 5306 403165 15463 2 13790 2025-02-14 13:30:40.953 2025-02-14 13:30:40.953 402991 5306 403137 9109 1 13791 2025-02-14 14:05:39.881 2025-02-14 14:05:39.881 402991 5306 403171 738 3 13792 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403798 20062 403809 8416 3 13793 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403798 20062 403806 18274 1 13794 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403798 20062 403808 10690 2 13795 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403798 20062 403813 11073 4 13796 2025-02-15 21:02:19.071 2025-02-15 21:02:19.071 403825 8289 404404 11153 3 13797 2025-02-15 08:59:25.305 2025-02-15 08:59:25.305 403825 8289 403833 1114 2 13798 2025-02-15 08:55:51.467 2025-02-15 08:55:51.467 403825 8289 403831 17291 1 13799 2025-02-15 11:30:02.261 2025-02-15 11:30:02.261 403918 18865 403922 19018 2 13800 2025-02-15 11:33:00.453 2025-02-15 11:33:00.453 403918 18865 403926 640 3 13801 2025-02-15 11:35:19.418 2025-02-15 11:35:19.418 403918 18865 403927 21400 4 13802 2025-02-15 11:41:15.703 2025-02-15 11:41:15.703 403918 18865 403934 21222 5 13803 2025-02-15 11:42:12.94 2025-02-15 11:42:12.94 403918 18865 403937 997 6 13804 2025-02-15 11:44:43.466 2025-02-15 11:44:43.466 403918 18865 403941 21356 7 13805 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403918 18865 403948 9421 8 13806 2025-02-15 11:29:01.526 2025-02-15 11:29:01.526 403918 18865 403919 13763 1 13807 2025-02-15 22:39:54.926 2025-02-15 22:39:54.926 404131 9355 404475 14385 3 13808 2025-02-15 15:26:52.878 2025-02-15 15:26:52.878 404131 9355 404142 4345 2 13809 2025-02-15 15:23:17.249 2025-02-15 15:23:17.249 404131 9355 404139 1833 1 13810 2025-02-17 03:01:49.767 2025-02-17 03:01:49.767 405794 19888 406078 20198 1 13811 2025-02-18 09:13:37.874 2025-02-18 09:13:37.874 405794 19888 407646 21555 2 13812 2025-02-18 10:19:57.539 2025-02-18 10:19:57.539 405794 19888 407718 4035 3 13813 2025-02-18 10:38:15.814 2025-02-18 10:38:15.814 407259 21291 407731 18601 3 13814 2025-02-18 07:50:49.591 2025-02-18 07:50:49.591 407259 21291 407561 21430 2 13815 2025-02-17 21:47:14.605 2025-02-17 21:47:14.605 407259 21291 407283 1726 1 13816 2025-02-18 09:55:50.123 2025-02-18 09:55:50.123 407671 8570 407702 4633 3 13817 2025-02-18 09:42:09.408 2025-02-18 09:42:09.408 407671 8570 407678 11165 2 13818 2025-02-18 09:39:29.886 2025-02-18 09:39:29.886 407671 8570 407673 6594 1 13819 2025-02-18 14:01:12.001 2025-02-18 14:01:12.001 407971 21518 407979 11866 1 13820 2025-02-19 01:07:53.931 2025-02-19 01:07:53.931 407971 21518 408655 18526 2 13821 2025-02-19 01:21:44.02 2025-02-19 01:21:44.02 407971 21518 408657 1122 3 13822 2025-02-18 15:03:48.509 2025-02-18 15:03:48.509 407976 7097 408093 2775 6 13823 2025-02-18 14:41:31.153 2025-02-18 14:41:31.153 407976 7097 408039 21451 3 13824 2025-02-18 14:34:41.255 2025-02-18 14:34:41.255 407976 7097 408026 17797 2 13825 2025-02-18 14:28:19.384 2025-02-18 14:28:19.384 407976 7097 408016 15728 1 13826 2025-02-18 14:49:16.244 2025-02-18 14:49:16.244 407976 7097 408056 20157 4 13827 2025-02-18 14:56:12.684 2025-02-18 14:56:12.684 407976 7097 408069 8284 5 13828 2025-02-18 14:52:29.135 2025-02-18 14:52:29.135 407976 7097 408064 10821 3 13829 2025-02-20 13:24:08.732 2025-02-20 13:24:08.732 410355 20613 410422 11885 2 13830 2025-02-20 13:02:24.202 2025-02-20 13:02:24.202 410355 20613 410368 9107 1 13831 2025-02-20 15:21:53.583 2025-02-20 15:21:53.583 410355 20613 410630 708 3 13832 2025-03-04 00:51:25.925 2025-03-04 00:51:25.925 423687 16250 424328 21825 8 13833 2025-03-04 00:56:49.401 2025-03-04 00:56:49.401 423687 16250 424331 4074 9 13834 2025-03-03 20:05:39.144 2025-03-03 20:05:39.144 423687 16250 424070 21539 3 13835 2025-03-04 02:13:03.468 2025-03-04 02:13:03.468 423687 16250 424348 20179 8 13836 2025-03-04 02:15:24.016 2025-03-04 02:15:24.016 423687 16250 424350 14939 6 13837 2025-03-03 18:40:35.573 2025-03-03 18:40:35.573 423687 16250 423968 13143 4 13838 2025-03-03 18:00:02.023 2025-03-03 18:00:02.023 423687 16250 423925 18241 3 13839 2025-03-03 15:06:16.798 2025-03-03 15:06:16.798 423687 16250 423736 6573 2 13840 2025-03-03 17:17:10.079 2025-03-03 17:17:10.079 423687 16250 423895 4062 2 13841 2025-03-03 14:47:33.067 2025-03-03 14:47:33.067 423687 16250 423704 6393 1 13842 2025-03-04 00:32:59.19 2025-03-04 00:32:59.19 423687 16250 424307 2583 6 13843 2025-03-04 00:41:48.656 2025-03-04 00:41:48.656 423687 16250 424319 21804 7 13844 2025-03-03 21:43:16.681 2025-03-03 21:43:16.681 423687 16250 424192 2832 5 13845 2025-02-20 14:27:17.921 2025-02-20 14:27:17.921 410429 9348 410544 6471 3 13846 2025-02-20 13:33:54.642 2025-02-20 13:33:54.642 410429 9348 410439 6430 1 13847 2025-02-20 13:43:23.67 2025-02-20 13:43:23.67 410429 9348 410456 3544 2 13848 2025-02-20 13:59:10.516 2025-02-20 13:59:10.516 410434 16229 410485 1983 3 13849 2025-02-20 14:14:57.727 2025-02-20 14:14:57.727 410434 16229 410521 1039 4 13850 2025-02-20 13:51:19.911 2025-02-20 13:51:19.911 410434 16229 410474 20187 1 13851 2025-02-20 13:57:19.061 2025-02-20 13:57:19.061 410434 16229 410481 19199 2 13852 2025-02-20 16:32:18.968 2025-02-20 16:32:18.968 410445 5128 410717 18178 3 13853 2025-02-20 13:41:15.781 2025-02-20 13:41:15.781 410445 5128 410452 12769 1 13854 2025-02-20 13:47:02.291 2025-02-20 13:47:02.291 410445 5128 410464 10490 2 13855 2025-02-20 15:39:39.542 2025-02-20 15:39:39.542 410641 20133 410669 19857 3 13856 2025-02-20 15:30:40.18 2025-02-20 15:30:40.18 410641 20133 410651 18468 1 13857 2025-02-20 15:33:08.038 2025-02-20 15:33:08.038 410641 20133 410657 20409 2 13858 2025-02-20 15:31:19.1 2025-02-20 15:31:19.1 410647 5779 410654 1090 1 13859 2025-02-20 15:38:43.827 2025-02-20 15:38:43.827 410647 5779 410668 828 2 13860 2025-02-20 15:40:06.941 2025-02-20 15:40:06.941 410647 5779 410670 3411 3 13861 2025-02-20 16:49:56.749 2025-02-20 16:49:56.749 410699 658 410747 5171 4 13862 2025-02-20 16:15:43.158 2025-02-20 16:15:43.158 410699 658 410703 1428 1 13863 2025-02-20 16:17:43.309 2025-02-20 16:17:43.309 410699 658 410706 15732 2 13864 2025-02-20 16:40:34.341 2025-02-20 16:40:34.341 410699 658 410731 9537 3 13865 2025-02-23 20:14:51.403 2025-02-23 20:14:51.403 414168 1010 414344 1647 3 13866 2025-02-23 17:38:03.45 2025-02-23 17:38:03.45 414168 1010 414177 4128 1 13867 2025-02-23 19:53:43.531 2025-02-23 19:53:43.531 414168 1010 414319 6136 2 13868 2025-02-24 06:39:33.707 2025-02-24 06:39:33.707 414638 20434 414648 736 1 13869 2025-02-24 09:20:43.255 2025-02-24 09:20:43.255 414638 20434 414750 11967 3 13870 2025-02-24 08:58:52.015 2025-02-24 08:58:52.015 414638 20434 414726 20062 2 13871 2025-02-24 09:21:30.914 2025-02-24 09:21:30.914 414729 20310 414751 3213 1 13872 2025-02-24 12:15:39.908 2025-02-24 12:15:39.908 414729 20310 414939 15577 3 13873 2025-02-24 09:31:52.404 2025-02-24 09:31:52.404 414729 20310 414762 16424 2 13874 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422620 5779 422644 19071 3 13875 2025-03-02 15:35:31.161 2025-03-02 15:35:31.161 422620 5779 422640 3706 2 13876 2025-03-02 15:32:09.644 2025-03-02 15:32:09.644 422620 5779 422633 17221 1 13877 2025-03-07 11:35:03.604 2025-03-07 11:35:03.604 427211 20120 428531 1717 3 13878 2025-03-06 21:36:12.994 2025-03-06 21:36:12.994 427211 20120 428123 17722 2 13879 2025-03-06 18:29:39.457 2025-03-06 18:29:39.457 427211 20120 427969 17212 1 13880 2025-02-24 15:08:58.01 2025-02-24 15:08:58.01 415134 18309 415166 21672 3 13881 2025-02-24 14:50:10.27 2025-02-24 14:50:10.27 415134 18309 415140 18526 1 13882 2025-02-24 15:05:52.833 2025-02-24 15:05:52.833 415134 18309 415162 16154 2 13883 2025-02-24 19:00:43.204 2025-02-24 19:00:43.204 415321 14791 415391 4802 1 13884 2025-02-24 19:24:15.21 2025-02-24 19:24:15.21 415321 14791 415413 11328 3 13885 2025-02-24 19:22:28.812 2025-02-24 19:22:28.812 415321 14791 415410 700 2 13886 2025-02-24 19:48:16.361 2025-02-24 19:48:16.361 415399 21480 415451 20623 3 13887 2025-02-24 19:28:24.165 2025-02-24 19:28:24.165 415399 21480 415418 14552 2 13888 2025-02-24 19:20:59.481 2025-02-24 19:20:59.481 415399 21480 415406 17221 1 13889 2025-02-25 18:19:43.329 2025-02-25 18:19:43.329 416605 8173 416632 18174 1 13890 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416605 8173 416938 11263 7 13891 2025-02-25 23:30:50.251 2025-02-25 23:30:50.251 416605 8173 416934 17533 5 13892 2025-02-25 22:41:34.224 2025-02-25 22:41:34.224 416605 8173 416881 16830 3 13893 2025-02-25 23:15:32.556 2025-02-25 23:15:32.556 416605 8173 416929 19821 4 13894 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416605 8173 416939 7773 8 13895 2025-02-25 22:30:12.229 2025-02-25 22:30:12.229 416605 8173 416869 2151 2 13896 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416605 8173 416935 21416 6 13897 2025-02-26 12:58:06.231 2025-02-26 12:58:06.231 417016 4062 417552 4819 2 13898 2025-03-03 03:30:26.558 2025-03-03 03:30:26.558 417016 4062 423153 13174 3 13899 2025-02-26 03:14:38.114 2025-02-26 03:14:38.114 417016 4062 417047 1784 1 13900 2025-03-01 03:46:19.995 2025-03-01 03:46:19.995 420721 17162 420782 718 2 13901 2025-03-03 20:27:34.86 2025-03-03 20:27:34.86 420721 17162 424093 803 4 13902 2025-03-03 17:58:10.124 2025-03-03 17:58:10.124 420721 17162 423923 18225 3 13903 2025-03-03 22:02:03.844 2025-03-03 22:02:03.844 420721 17162 424208 9985 5 13904 2025-03-01 02:27:23.482 2025-03-01 02:27:23.482 420721 17162 420750 5759 1 13905 2025-03-01 11:10:41.247 2025-03-01 11:10:41.247 421020 6030 421028 4754 1 13906 2025-03-01 12:28:55.168 2025-03-01 12:28:55.168 421020 6030 421129 16296 3 13907 2025-03-01 11:18:17.292 2025-03-01 11:18:17.292 421020 6030 421033 19494 2 13908 2025-03-01 13:27:42.041 2025-03-01 13:27:42.041 421167 15690 421180 18772 3 13909 2025-03-01 13:18:41.453 2025-03-01 13:18:41.453 421167 15690 421172 19463 1 13910 2025-03-01 13:22:02.128 2025-03-01 13:22:02.128 421167 15690 421176 21139 2 13911 2025-03-01 18:28:22.933 2025-03-01 18:28:22.933 421193 14607 421546 1717 3 13912 2025-03-01 14:48:05.817 2025-03-01 14:48:05.817 421193 14607 421269 16387 1 13913 2025-03-01 14:48:31.741 2025-03-01 14:48:31.741 421193 14607 421270 19121 2 13914 2025-03-01 19:15:35.72 2025-03-01 19:15:35.72 421205 16912 421593 9352 2 13915 2025-03-01 19:18:08.811 2025-03-01 19:18:08.811 421205 16912 421594 10102 3 13916 2025-03-01 14:04:38.555 2025-03-01 14:04:38.555 421205 16912 421228 980 1 13917 2025-03-02 10:28:30.11 2025-03-02 10:28:30.11 422087 17708 422229 19535 3 13918 2025-03-02 09:34:20.43 2025-03-02 09:34:20.43 422087 17708 422111 1483 2 13919 2025-03-02 09:29:22.651 2025-03-02 09:29:22.651 422087 17708 422098 1198 1 13920 2025-03-03 00:42:58.799 2025-03-03 00:42:58.799 422365 7682 423098 12561 3 13921 2025-03-02 12:26:48.272 2025-03-02 12:26:48.272 422365 7682 422384 20972 2 13922 2025-03-02 12:17:46.744 2025-03-02 12:17:46.744 422365 7682 422369 1737 1 13923 2025-03-02 14:23:55.616 2025-03-02 14:23:55.616 422499 11165 422535 11523 1 13924 2025-03-02 15:04:42.847 2025-03-02 15:04:42.847 422499 11165 422582 3656 3 13925 2025-03-02 14:25:00.514 2025-03-02 14:25:00.514 422499 11165 422537 13763 2 13926 2025-03-03 09:40:07.264 2025-03-03 09:40:07.264 422569 769 423366 13162 3 13927 2025-03-03 02:10:39.857 2025-03-03 02:10:39.857 422569 769 423130 16830 2 13928 2025-03-02 14:54:57.327 2025-03-02 14:54:57.327 422569 769 422574 20243 1 13929 2025-03-02 19:30:12.034 2025-03-02 19:30:12.034 422881 20904 422926 2156 1 13930 2025-03-02 20:27:47.182 2025-03-02 20:27:47.182 422881 20904 422974 11714 2 13931 2025-03-02 20:31:33.728 2025-03-02 20:31:33.728 422881 20904 422977 18734 3 13932 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 423593 19759 424408 12049 14 13933 2025-03-03 20:31:56.013 2025-03-03 20:31:56.013 423593 19759 424099 15060 9 13934 2025-03-03 19:52:36.539 2025-03-03 19:52:36.539 423593 19759 424049 8245 6 13935 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 423593 19759 424401 14990 11 13936 2025-03-03 13:31:32.464 2025-03-03 13:31:32.464 423593 19759 423601 21373 2 13937 2025-03-03 19:39:46.836 2025-03-03 19:39:46.836 423593 19759 424037 18901 5 13938 2025-03-03 20:28:10.099 2025-03-03 20:28:10.099 423593 19759 424094 21734 8 13939 2025-03-03 19:24:31.174 2025-03-03 19:24:31.174 423593 19759 424015 1454 4 13940 2025-03-03 20:19:40.617 2025-03-03 20:19:40.617 423593 19759 424082 9337 7 13941 2025-03-03 13:28:33.21 2025-03-03 13:28:33.21 423593 19759 423595 15119 1 13942 2025-03-03 19:18:02.353 2025-03-03 19:18:02.353 423593 19759 424009 20337 3 13943 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 423593 19759 424382 18743 10 13944 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 423593 19759 424403 21263 12 13945 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 423593 19759 424405 844 13 13946 2025-03-03 19:38:38.529 2025-03-03 19:38:38.529 423938 11328 424035 1552 1 13947 2025-03-03 19:52:45.905 2025-03-03 19:52:45.905 423938 11328 424050 17064 2 13948 2025-03-03 21:05:21.159 2025-03-03 21:05:21.159 423938 11328 424157 20381 3 13949 2025-03-03 21:37:33.345 2025-03-03 21:37:33.345 423962 18529 424185 14168 5 13950 2025-03-03 21:34:53.243 2025-03-03 21:34:53.243 423962 18529 424183 20026 4 13951 2025-03-03 19:10:25.018 2025-03-03 19:10:25.018 423962 18529 423999 12808 2 13952 2025-03-03 19:07:09.822 2025-03-03 19:07:09.822 423962 18529 423993 20768 1 13953 2025-03-03 21:32:51.066 2025-03-03 21:32:51.066 423962 18529 424182 1985 3 13954 2025-03-03 20:34:19.634 2025-03-03 20:34:19.634 423962 18529 424104 9426 1 13955 2025-03-03 22:53:32.187 2025-03-03 22:53:32.187 423962 18529 424229 902 3 13956 2025-03-03 21:40:23.982 2025-03-03 21:40:23.982 423962 18529 424188 18468 6 13957 2025-03-03 21:48:56.141 2025-03-03 21:48:56.141 423962 18529 424200 11609 7 13958 2025-03-03 20:41:42.6 2025-03-03 20:41:42.6 423962 18529 424121 13547 2 13959 2025-03-12 06:53:57.426 2025-03-12 06:53:57.426 433589 1717 434692 20026 2 13960 2025-03-11 21:04:51.571 2025-03-11 21:04:51.571 433589 1717 434389 16956 1 13961 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 423971 16747 424161 2529 10 13962 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 423971 16747 424388 5057 10 13963 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 423971 16747 424447 16680 10 13964 2025-03-03 20:17:39.282 2025-03-03 20:17:39.282 423971 16747 424080 21412 5 13965 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 423971 16747 424158 2195 9 13966 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 423971 16747 424311 2513 9 13967 2025-03-03 18:49:58.514 2025-03-03 18:49:58.514 423971 16747 423977 5359 1 13968 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 423971 16747 424149 5725 8 13969 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 423971 16747 424153 16839 8 13970 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 423971 16747 424130 21430 7 13971 2025-03-03 19:05:05.634 2025-03-03 19:05:05.634 423971 16747 423990 11073 2 13972 2025-03-03 19:15:36.194 2025-03-03 19:15:36.194 423971 16747 424003 20454 3 13973 2025-03-03 19:32:08.352 2025-03-03 19:32:08.352 423971 16747 424024 20912 4 13974 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 423971 16747 424123 1433 7 13975 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 423971 16747 424323 17411 9 13976 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 423971 16747 424386 1173 9 13977 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 423971 16747 424413 20939 10 13978 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 423971 16747 424186 18608 11 13979 2025-03-03 21:09:30.844 2025-03-03 21:09:30.844 423971 16747 424160 14385 6 13980 2025-03-03 20:36:29.113 2025-03-03 20:36:29.113 423971 16747 424111 3979 6 13981 2025-03-03 19:38:54.083 2025-03-03 19:38:54.083 424011 21044 424036 10638 1 13982 2025-03-03 20:33:05.582 2025-03-03 20:33:05.582 424011 21044 424101 20603 2 13983 2025-03-03 22:56:30.679 2025-03-03 22:56:30.679 424011 21044 424231 12774 3 13984 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 424123 1433 424388 5057 3 13985 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 424123 1433 424149 5725 1 13986 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 424123 1433 424323 17411 2 13987 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 424123 1433 424386 1173 2 13988 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 424123 1433 424413 20939 3 13989 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 424130 21430 424161 2529 3 13990 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 424130 21430 424447 16680 3 13991 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 424130 21430 424158 2195 2 13992 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 424130 21430 424311 2513 2 13993 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 424130 21430 424153 16839 1 13994 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 424130 21430 424186 18608 4 13995 2025-03-03 23:27:07.683 2025-03-03 23:27:07.683 424214 15588 424256 20778 3 13996 2025-03-03 23:08:46.891 2025-03-03 23:08:46.891 424214 15588 424236 15488 2 13997 2025-03-03 23:04:17.804 2025-03-03 23:04:17.804 424214 15588 424233 18468 1 13998 2025-03-03 23:18:46.062 2025-03-03 23:18:46.062 424214 15588 424243 12277 3 13999 2025-03-06 13:43:01.937 2025-03-06 13:43:01.937 427042 19813 427554 4989 3 14000 2025-03-06 10:57:34.2 2025-03-06 10:57:34.2 427042 19813 427359 2719 1 14001 2025-03-06 13:38:47.865 2025-03-06 13:38:47.865 427042 19813 427548 1261 2 14002 2025-03-07 05:14:58.828 2025-03-07 05:14:58.828 427074 2309 428319 20623 3 14003 2025-03-06 12:59:07.43 2025-03-06 12:59:07.43 427074 2309 427515 21398 2 14004 2025-03-06 06:34:19.266 2025-03-06 06:34:19.266 427074 2309 427153 1162 1 14005 2025-03-11 16:45:09.879 2025-03-11 16:45:09.879 432405 1002 434186 3717 2 14006 2025-03-10 12:44:53.393 2025-03-10 12:44:53.393 432405 1002 432553 21710 1 14007 2025-03-06 08:50:46.697 2025-03-06 08:50:46.697 427257 9307 427258 2326 1 14008 2025-03-06 16:48:50.305 2025-03-06 16:48:50.305 427257 9307 427814 15925 3 14009 2025-03-06 10:02:41.783 2025-03-06 10:02:41.783 427257 9307 427306 11038 2 14010 2025-03-06 17:05:21.059 2025-03-06 17:05:21.059 427750 17201 427833 7773 2 14011 2025-03-06 18:13:04.077 2025-03-06 18:13:04.077 427750 17201 427945 7960 3 14012 2025-03-06 16:27:24.285 2025-03-06 16:27:24.285 427750 17201 427787 695 1 14013 2025-03-07 06:16:20.218 2025-03-07 06:16:20.218 427760 3504 428340 2016 2 14014 2025-03-07 10:38:19.558 2025-03-07 10:38:19.558 427760 3504 428488 7668 3 14015 2025-03-06 16:45:12.014 2025-03-06 16:45:12.014 427760 3504 427810 9084 1 14016 2025-03-07 14:49:52.32 2025-03-07 14:49:52.32 428104 20924 428728 14278 1 14017 2025-03-07 15:49:25.083 2025-03-07 15:49:25.083 428104 20924 428793 21393 3 14018 2025-03-07 14:56:50.711 2025-03-07 14:56:50.711 428104 20924 428739 12277 2 14019 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 428581 11527 428644 672 2 14020 2025-03-07 13:21:06.213 2025-03-07 13:21:06.213 428581 11527 428619 17011 1 14021 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 428581 11527 428687 11395 3 14022 2025-03-07 15:34:21.323 2025-03-07 15:34:21.323 428765 14552 428774 11996 2 14023 2025-03-07 15:30:44.39 2025-03-07 15:30:44.39 428765 14552 428769 15526 1 14024 2025-03-07 15:41:16.996 2025-03-07 15:41:16.996 428765 14552 428779 4624 3 14025 2025-03-09 00:32:53.818 2025-03-09 00:32:53.818 429725 13406 430236 12976 2 14026 2025-03-09 01:57:32.661 2025-03-09 01:57:32.661 429725 13406 430263 9334 3 14027 2025-03-09 00:09:41.613 2025-03-09 00:09:41.613 429725 13406 430220 19759 1 14028 2025-03-09 14:13:59.795 2025-03-09 14:13:59.795 430289 2952 430928 18673 2 14029 2025-03-09 15:24:42.614 2025-03-09 15:24:42.614 430289 2952 431089 5500 3 14030 2025-03-09 03:18:32.824 2025-03-09 03:18:32.824 430289 2952 430291 896 1 14031 2025-03-09 15:21:03.209 2025-03-09 15:21:03.209 430351 21494 431085 18188 1 14032 2025-03-12 05:49:26.382 2025-03-12 05:49:26.382 430351 21494 434666 2056 3 14033 2025-03-12 05:50:42.942 2025-03-12 05:50:42.942 430351 21494 434668 657 2 14034 2025-03-12 15:13:16.425 2025-03-12 15:13:16.425 430351 21494 435273 21714 4 14035 2025-03-12 17:29:13.539 2025-03-12 17:29:13.539 430351 21494 435450 20275 5 14036 2025-03-09 15:22:25.586 2025-03-09 15:22:25.586 430351 21494 431086 15408 1 14037 2025-03-12 03:23:43.132 2025-03-12 03:23:43.132 430351 21494 434576 701 2 14038 2025-03-12 15:07:19.297 2025-03-12 15:07:19.297 430351 21494 435265 683 3 14039 2025-03-12 15:08:29.003 2025-03-12 15:08:29.003 430351 21494 435266 946 4 14040 2025-03-11 22:44:48.297 2025-03-11 22:44:48.297 434451 8287 434455 1692 1 14041 2025-03-11 22:55:48.552 2025-03-11 22:55:48.552 434451 8287 434460 19930 2 14042 2025-03-18 20:55:02.319 2025-03-18 20:55:02.319 441312 15213 442830 675 1 14043 2025-03-19 10:51:40.54 2025-03-19 10:51:40.54 441312 15213 443428 4819 2 14044 2025-03-18 11:18:55.528 2025-03-18 11:18:55.528 441614 14489 441918 9307 2 14045 2025-03-18 11:33:07.739 2025-03-18 11:33:07.739 441614 14489 441939 722 3 14046 2025-03-18 08:35:50.881 2025-03-18 08:35:50.881 441614 14489 441676 690 1 14047 2025-03-10 19:39:56.33 2025-03-10 19:39:56.33 430601 11144 433079 18232 2 14048 2025-03-10 00:26:18.986 2025-03-10 00:26:18.986 430601 11144 432114 18901 1 14049 2025-03-09 12:12:28.609 2025-03-09 12:12:28.609 430729 1425 430748 17275 2 14050 2025-03-09 12:07:28.356 2025-03-09 12:07:28.356 430729 1425 430732 989 1 14051 2025-03-09 13:14:05.37 2025-03-09 13:14:05.37 430729 1425 430853 9347 3 14052 2025-03-09 13:13:13.784 2025-03-09 13:13:13.784 430729 1425 430851 5359 3 14053 2025-03-09 14:46:07.744 2025-03-09 14:46:07.744 430729 1425 430977 7979 4 14054 2025-03-09 13:16:39.062 2025-03-09 13:16:39.062 430729 1425 430857 866 4 14055 2025-03-09 14:25:20.942 2025-03-09 14:25:20.942 430729 1425 430947 11789 5 14056 2025-03-11 05:33:44.323 2025-03-11 05:33:44.323 430836 16842 433457 21427 2 14057 2025-03-09 13:20:23.381 2025-03-09 13:20:23.381 430836 16842 430863 14791 1 14058 2025-03-09 15:20:07.902 2025-03-09 15:20:07.902 431074 20901 431082 18231 1 14059 2025-03-09 15:48:53.15 2025-03-09 15:48:53.15 431074 20901 431158 9337 2 14060 2025-03-09 15:52:13.544 2025-03-09 15:52:13.544 431074 20901 431166 19569 3 14061 2025-03-11 03:19:23.091 2025-03-11 03:19:23.091 432618 21520 433376 2775 2 14062 2025-03-11 00:29:35.931 2025-03-11 00:29:35.931 432618 21520 433323 672 1 14063 2025-03-11 14:57:40.939 2025-03-11 14:57:40.939 432932 20906 434000 15243 2 14064 2025-03-11 03:27:14.158 2025-03-11 03:27:14.158 432932 20906 433381 21803 1 14065 2025-03-11 03:28:02.64 2025-03-11 03:28:02.64 433317 21514 433382 16250 2 14066 2025-03-11 00:26:40.261 2025-03-11 00:26:40.261 433317 21514 433321 2213 1 14067 2025-03-11 09:00:48.347 2025-03-11 09:00:48.347 433444 14385 433607 699 1 14068 2025-03-11 09:06:28.085 2025-03-11 09:06:28.085 433444 14385 433613 17237 2 14069 2025-03-11 15:48:30.8 2025-03-11 15:48:30.8 433477 1571 434101 5761 2 14070 2025-03-11 15:42:06.291 2025-03-11 15:42:06.291 433477 1571 434088 12819 1 14071 2025-03-11 06:40:14.309 2025-03-11 06:40:14.309 433483 2710 433487 14909 1 14072 2025-03-12 15:45:38.327 2025-03-12 15:45:38.327 433557 11144 435336 1145 4 14073 2025-03-12 17:15:29.298 2025-03-12 17:15:29.298 433557 11144 435435 16847 5 14074 2025-03-11 13:48:08.783 2025-03-11 13:48:08.783 433557 11144 433892 9350 2 14075 2025-03-12 15:31:32.046 2025-03-12 15:31:32.046 433557 11144 435306 9655 3 14076 2025-03-11 13:18:51.679 2025-03-11 13:18:51.679 433557 11144 433869 7418 1 14077 2025-03-11 13:58:41.28 2025-03-11 13:58:41.28 433557 11144 433905 21685 2 14078 2025-03-11 15:22:35.906 2025-03-11 15:22:35.906 433901 21291 434048 21063 2 14079 2025-03-11 15:16:37.353 2025-03-11 15:16:37.353 433901 21291 434039 1585 1 14080 2025-03-11 14:55:47.968 2025-03-11 14:55:47.968 433942 7668 433995 18529 1 14081 2025-03-11 15:21:30.232 2025-03-11 15:21:30.232 433942 7668 434046 21815 2 14082 2025-03-11 20:39:29.554 2025-03-11 20:39:29.554 433956 21334 434367 20434 2 14083 2025-03-12 03:17:52.737 2025-03-12 03:17:52.737 433956 21334 434574 6148 3 14084 2025-03-11 14:37:22.633 2025-03-11 14:37:22.633 433956 21334 433967 15213 1 14085 2025-03-11 14:52:14.454 2025-03-11 14:52:14.454 433981 1489 433987 20185 1 14086 2025-03-11 14:57:25.53 2025-03-11 14:57:25.53 433981 1489 433998 1261 2 14087 2025-03-12 05:20:28.239 2025-03-12 05:20:28.239 433993 8841 434645 11498 2 14088 2025-03-11 20:42:47.459 2025-03-11 20:42:47.459 433993 8841 434375 715 1 14089 2025-03-13 00:58:56.781 2025-03-13 00:58:56.781 433993 8841 435785 5522 3 14090 2025-03-11 19:18:20.844 2025-03-11 19:18:20.844 434022 19842 434306 12959 1 14091 2025-03-11 23:09:52.671 2025-03-11 23:09:52.671 434022 19842 434464 8472 2 14092 2025-03-12 11:23:16.783 2025-03-12 11:23:16.783 434287 902 434968 7097 2 14093 2025-03-12 11:55:42.868 2025-03-12 11:55:42.868 434287 902 435008 20781 3 14094 2025-03-11 19:16:32.86 2025-03-11 19:16:32.86 434287 902 434305 16447 1 14095 2025-03-12 10:27:51.461 2025-03-12 10:27:51.461 434330 726 434904 5825 3 14096 2025-03-11 21:25:54.539 2025-03-11 21:25:54.539 434330 726 434401 739 1 14097 2025-03-12 05:34:53.183 2025-03-12 05:34:53.183 434330 726 434658 20454 2 14098 2025-03-14 07:24:17.734 2025-03-14 07:24:17.734 436930 20924 437020 17095 2 14099 2025-03-14 07:18:42.785 2025-03-14 07:18:42.785 436930 20924 437013 13398 1 14100 2025-03-14 22:16:06.584 2025-03-14 22:16:06.584 436930 20924 437794 8726 3 14101 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437184 13587 437513 12609 15 14102 2025-03-14 12:31:38.133 2025-03-14 12:31:38.133 437184 13587 437292 616 2 14103 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437184 13587 437508 8713 14 14104 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437184 13587 437593 19094 23 14105 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437184 13587 437574 5069 22 14106 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 437184 13587 437465 20734 11 14107 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437184 13587 437553 10291 20 14108 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437184 13587 437552 17722 19 14109 2025-03-14 14:11:17.647 2025-03-14 14:11:17.647 437184 13587 437432 660 9 14110 2025-03-14 12:46:35.189 2025-03-14 12:46:35.189 437184 13587 437321 1488 8 14111 2025-03-14 12:43:43.967 2025-03-14 12:43:43.967 437184 13587 437317 11018 7 14112 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437184 13587 437521 19980 16 14113 2025-03-14 12:43:02.431 2025-03-14 12:43:02.431 437184 13587 437316 13097 6 14114 2025-03-14 12:37:11.691 2025-03-14 12:37:11.691 437184 13587 437308 20523 4 14115 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437184 13587 437558 7097 21 14116 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437184 13587 437598 12277 24 14117 2025-03-14 12:22:18.76 2025-03-14 12:22:18.76 437184 13587 437271 4862 1 14118 2025-03-14 12:32:08.487 2025-03-14 12:32:08.487 437184 13587 437293 1424 3 14119 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437184 13587 437506 20816 13 14120 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437184 13587 437497 1823 12 14121 2025-03-14 14:24:43.157 2025-03-14 14:24:43.157 437184 13587 437447 12278 10 14122 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437184 13587 437551 5129 18 14123 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437184 13587 437538 7668 17 14124 2025-03-14 12:39:26.862 2025-03-14 12:39:26.862 437184 13587 437312 8870 5 14125 2025-03-15 06:21:24.635 2025-03-15 06:21:24.635 437318 20829 438022 12609 3 14126 2025-03-14 12:47:03.289 2025-03-14 12:47:03.289 437318 20829 437324 20871 1 14127 2025-03-15 04:50:25.842 2025-03-15 04:50:25.842 437318 20829 437986 20495 2 14128 2025-03-18 18:00:51.266 2025-03-18 18:00:51.266 442558 3461 442637 16126 3 14129 2025-03-18 17:59:00.605 2025-03-18 17:59:00.605 442558 3461 442634 18177 2 14130 2025-03-18 16:40:20.36 2025-03-18 16:40:20.36 442558 3461 442562 10102 1 14131 2022-09-29 11:05:33.546 2022-09-29 11:05:33.546 1906 8004 1929 7978 2 14132 2022-09-29 11:35:12.301 2022-09-29 11:35:12.301 1906 8004 1930 5557 3 14133 2022-09-28 14:48:08.205 2022-09-28 14:48:08.205 1906 8004 1907 706 1 14134 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437497 1823 437513 12609 3 14135 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437497 1823 437508 8713 2 14136 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437497 1823 437593 19094 11 14137 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437497 1823 437574 5069 10 14138 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437497 1823 437553 10291 8 14139 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437497 1823 437552 17722 7 14140 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437497 1823 437521 19980 4 14141 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437497 1823 437558 7097 9 14142 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437497 1823 437598 12277 12 14143 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437497 1823 437506 20816 1 14144 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437497 1823 437551 5129 6 14145 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437497 1823 437538 7668 5 14146 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437558 7097 437593 19094 2 14147 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437558 7097 437574 5069 1 14148 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437558 7097 437598 12277 3 14149 2025-02-18 15:03:48.509 2025-02-18 15:03:48.509 407928 21116 408093 2775 7 14150 2025-02-18 14:41:31.153 2025-02-18 14:41:31.153 407928 21116 408039 21451 4 14151 2025-02-18 14:34:41.255 2025-02-18 14:34:41.255 407928 21116 408026 17797 3 14152 2025-02-18 14:28:19.384 2025-02-18 14:28:19.384 407928 21116 408016 15728 2 14153 2025-02-18 14:00:23.899 2025-02-18 14:00:23.899 407928 21116 407976 7097 1 14154 2025-02-18 14:49:16.244 2025-02-18 14:49:16.244 407928 21116 408056 20157 5 14155 2025-02-18 14:56:12.684 2025-02-18 14:56:12.684 407928 21116 408069 8284 6 14156 2025-02-18 14:52:29.135 2025-02-18 14:52:29.135 407928 21116 408064 10821 4 14157 2025-03-14 16:49:26.66 2025-03-14 16:49:26.66 437588 10690 437604 9351 2 14158 2025-03-14 16:40:33.426 2025-03-14 16:40:33.426 437588 10690 437591 2233 1 14159 2025-03-15 06:09:49.216 2025-03-15 06:09:49.216 437854 16357 438013 15858 3 14160 2025-03-14 23:50:52.392 2025-03-14 23:50:52.392 437854 16357 437861 20687 1 14161 2025-03-15 04:34:01.815 2025-03-15 04:34:01.815 437854 16357 437977 641 2 14162 2025-03-15 19:28:15.133 2025-03-15 19:28:15.133 437973 2065 438678 21391 2 14163 2025-03-15 17:55:20.008 2025-03-15 17:55:20.008 437973 2065 438612 6260 1 14164 2025-03-17 18:20:55.539 2025-03-17 18:20:55.539 440538 1195 441061 913 3 14165 2025-03-17 18:02:38.488 2025-03-17 18:02:38.488 440538 1195 441047 11885 2 14166 2025-03-17 11:38:55.505 2025-03-17 11:38:55.505 440538 1195 440560 20802 1 14167 2025-03-18 13:11:32.035 2025-03-18 13:11:32.035 442135 16193 442157 2722 3 14168 2025-03-18 13:06:57.606 2025-03-18 13:06:57.606 442135 16193 442148 20187 2 14169 2025-03-18 13:01:30.787 2025-03-18 13:01:30.787 442135 16193 442141 20254 1 14170 2025-03-18 18:38:13.668 2025-03-18 18:38:13.668 441073 16939 442695 19581 3 14171 2025-03-17 22:11:29.92 2025-03-17 22:11:29.92 441073 16939 441285 1136 2 14172 2025-03-17 20:39:32.699 2025-03-17 20:39:32.699 441073 16939 441195 14168 1 14173 2025-03-19 13:19:15.165 2025-03-19 13:19:15.165 441878 17041 443691 12277 2 14174 2025-03-19 14:02:50.362 2025-03-19 14:02:50.362 441878 17041 443762 12368 4 14175 2025-03-19 13:54:27.282 2025-03-19 13:54:27.282 441878 17041 443746 9333 3 14176 2025-03-19 07:58:29.97 2025-03-19 07:58:29.97 441878 17041 443259 5694 1 14177 2025-03-19 11:00:19.613 2025-03-19 11:00:19.613 442104 14278 443441 17713 2 14178 2025-03-19 11:08:46.772 2025-03-19 11:08:46.772 442104 14278 443456 12102 3 14179 2025-03-19 11:32:49.224 2025-03-19 11:32:49.224 442104 14278 443480 19199 4 14180 2025-03-19 06:34:09.414 2025-03-19 06:34:09.414 442104 14278 443194 5942 1 14181 2025-03-18 13:44:18.442 2025-03-18 13:44:18.442 442109 20864 442252 836 3 14182 2025-03-18 12:58:26.559 2025-03-18 12:58:26.559 442109 20864 442138 4259 2 14183 2025-03-18 13:53:27.376 2025-03-18 13:53:27.376 442109 20864 442279 12334 4 14184 2025-03-18 13:45:40.741 2025-03-18 13:45:40.741 442109 20864 442258 18743 3 14185 2025-03-18 13:40:21.597 2025-03-18 13:40:21.597 442109 20864 442243 7913 2 14186 2025-03-18 12:54:46.86 2025-03-18 12:54:46.86 442109 20864 442124 7827 1 14187 2025-03-21 17:36:38.12 2025-03-21 17:36:38.12 446872 19117 447211 19071 2 14188 2025-03-21 16:22:49.994 2025-03-21 16:22:49.994 446872 19117 447122 14705 1 14189 2025-03-19 11:02:40.011 2025-03-19 11:02:40.011 442600 4768 443445 5728 2 14190 2025-03-19 12:18:56.102 2025-03-19 12:18:56.102 442600 4768 443564 17953 3 14191 2025-03-19 07:41:11.136 2025-03-19 07:41:11.136 442600 4768 443235 2776 1 14192 2025-03-18 21:02:52.25 2025-03-18 21:02:52.25 442824 4064 442843 1712 3 14193 2025-03-18 20:56:44.844 2025-03-18 20:56:44.844 442824 4064 442834 880 2 14194 2025-03-18 20:54:02.509 2025-03-18 20:54:02.509 442824 4064 442828 695 1 14195 2025-03-19 10:31:48.487 2025-03-19 10:31:48.487 442880 11866 443405 12870 3 14196 2025-03-18 22:46:52.979 2025-03-18 22:46:52.979 442880 11866 442948 20243 1 14197 2025-03-19 09:33:15.74 2025-03-19 09:33:15.74 442880 11866 443353 18306 2 14198 2025-03-19 10:32:35.156 2025-03-19 10:32:35.156 443001 713 443407 14225 2 14199 2025-03-19 01:37:25.61 2025-03-19 01:37:25.61 443001 713 443052 1801 1 14200 2025-03-19 12:00:01.931 2025-03-19 12:00:01.931 443200 14225 443526 695 2 14201 2025-03-19 12:14:50.616 2025-03-19 12:14:50.616 443200 14225 443551 19484 3 14202 2025-03-19 06:51:16.711 2025-03-19 06:51:16.711 443200 14225 443205 16284 1 14203 2025-03-19 09:32:05.157 2025-03-19 09:32:05.157 443286 20370 443351 17494 2 14204 2025-03-19 09:13:58.609 2025-03-19 09:13:58.609 443286 20370 443335 690 1 14205 2025-03-19 10:56:40.314 2025-03-19 10:56:40.314 443286 20370 443436 11776 4 14206 2025-03-19 10:53:55.845 2025-03-19 10:53:55.845 443286 20370 443432 618 3 14207 2025-03-19 11:01:08.326 2025-03-19 11:01:08.326 443290 762 443442 2039 2 14208 2025-03-19 08:40:43.161 2025-03-19 08:40:43.161 443290 762 443292 20901 1 14209 2025-03-19 09:21:53.224 2025-03-19 09:21:53.224 443300 12261 443341 2709 1 14210 2025-03-19 10:36:41.137 2025-03-19 10:36:41.137 443300 12261 443410 17415 2 14211 2025-03-19 14:06:45.206 2025-03-19 14:06:45.206 443731 1319 443772 919 2 14212 2025-03-19 14:18:38.409 2025-03-19 14:18:38.409 443731 1319 443796 8289 3 14213 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443731 1319 443845 21522 8 14214 2025-03-19 14:34:10.46 2025-03-19 14:34:10.46 443731 1319 443831 670 6 14215 2025-03-19 14:27:58.927 2025-03-19 14:27:58.927 443731 1319 443811 16230 4 14216 2025-03-19 14:36:28.243 2025-03-19 14:36:28.243 443731 1319 443835 21012 7 14217 2025-03-19 14:30:39.44 2025-03-19 14:30:39.44 443731 1319 443819 14357 5 14218 2025-03-19 13:59:40.572 2025-03-19 13:59:40.572 443731 1319 443757 1814 1 14219 2025-03-20 00:22:09.582 2025-03-20 00:22:09.582 443774 21401 444507 9341 3 14220 2025-03-19 14:14:17.274 2025-03-19 14:14:17.274 443774 21401 443787 17011 1 14221 2025-03-19 16:44:39.385 2025-03-19 16:44:39.385 443774 21401 444071 5794 2 14222 2025-03-19 17:31:11.437 2025-03-19 17:31:11.437 443774 21401 444144 18306 3 14223 2025-03-20 03:02:51.322 2025-03-20 03:02:51.322 443774 21401 444571 11288 4 14224 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443819 14357 443845 21522 3 14225 2025-03-19 14:34:10.46 2025-03-19 14:34:10.46 443819 14357 443831 670 1 14226 2025-03-19 14:36:28.243 2025-03-19 14:36:28.243 443819 14357 443835 21012 2 14227 2025-03-22 16:13:31.974 2025-03-22 16:13:31.974 448203 9341 448478 17714 2 14228 2025-03-22 16:10:30.432 2025-03-22 16:10:30.432 448203 9341 448471 13921 1 14229 2025-03-19 22:18:27.114 2025-03-19 22:18:27.114 443834 5427 444453 1585 5 14230 2025-03-19 22:04:01.03 2025-03-19 22:04:01.03 443834 5427 444444 5904 4 14231 2025-03-19 22:28:13.631 2025-03-19 22:28:13.631 443834 5427 444455 1602 6 14232 2025-03-19 21:23:57.846 2025-03-19 21:23:57.846 443834 5427 444416 1769 2 14233 2025-03-19 21:55:08.252 2025-03-19 21:55:08.252 443834 5427 444436 5293 3 14234 2025-03-19 21:15:28.226 2025-03-19 21:15:28.226 443834 5427 444412 3686 1 14235 2025-03-21 18:32:28.473 2025-03-21 18:32:28.473 446059 14385 447272 15624 2 14236 2025-03-21 06:09:48.576 2025-03-21 06:09:48.576 446059 14385 446369 13174 1 14237 2025-03-21 10:03:05.827 2025-03-21 10:03:05.827 446483 2609 446511 795 1 14238 2025-03-21 17:05:11.521 2025-03-21 17:05:11.521 446483 2609 447180 17693 2 14239 2025-03-21 18:50:54.403 2025-03-21 18:50:54.403 446649 2361 447298 4292 3 14240 2025-03-21 12:00:16.323 2025-03-21 12:00:16.323 446649 2361 446650 8726 1 14241 2025-03-21 12:05:47.899 2025-03-21 12:05:47.899 446649 2361 446657 2711 2 14242 2025-03-21 13:34:53.875 2025-03-21 13:34:53.875 446649 2361 446808 3417 2 14243 2025-03-21 12:19:15.802 2025-03-21 12:19:15.802 446680 1534 446686 6361 1 14244 2025-03-21 12:20:35.654 2025-03-21 12:20:35.654 446680 1534 446688 16536 2 14245 2025-03-21 16:37:07.068 2025-03-21 16:37:07.068 446745 12057 447151 18615 4 14246 2025-03-21 18:08:56.618 2025-03-21 18:08:56.618 446745 12057 447244 1122 3 14247 2025-03-21 16:19:40.624 2025-03-21 16:19:40.624 446745 12057 447113 11862 1 14248 2025-03-21 16:28:25.832 2025-03-21 16:28:25.832 446745 12057 447134 4768 3 14249 2025-03-21 15:47:07.597 2025-03-21 15:47:07.597 446745 12057 447079 14791 2 14250 2025-03-21 16:50:05.813 2025-03-21 16:50:05.813 446745 12057 447167 20904 6 14251 2025-03-21 16:26:06.798 2025-03-21 16:26:06.798 446745 12057 447133 3347 2 14252 2025-03-21 16:39:51.47 2025-03-21 16:39:51.47 446745 12057 447155 12721 5 14253 2025-03-21 15:41:38.585 2025-03-21 15:41:38.585 446745 12057 447071 20829 1 14254 2025-03-21 18:14:57.367 2025-03-21 18:14:57.367 446786 750 447253 16447 2 14255 2025-03-21 13:54:17.272 2025-03-21 13:54:17.272 446786 750 446840 3411 1 14256 2025-03-21 15:42:40.733 2025-03-21 15:42:40.733 446849 1801 447073 2206 2 14257 2025-03-21 15:39:19.49 2025-03-21 15:39:19.49 446849 1801 447064 1135 1 14258 2025-03-21 16:21:06.454 2025-03-21 16:21:06.454 447016 4323 447118 17201 2 14259 2025-03-21 15:17:17.086 2025-03-21 15:17:17.086 447016 4323 447027 10016 1 14260 2025-03-21 16:24:46.058 2025-03-21 16:24:46.058 447050 13566 447128 8870 2 14261 2025-03-21 16:23:19.34 2025-03-21 16:23:19.34 447050 13566 447123 616 2 14262 2025-03-21 16:29:54.642 2025-03-21 16:29:54.642 447050 13566 447136 14503 3 14263 2025-03-21 16:43:58.131 2025-03-21 16:43:58.131 447050 13566 447159 13249 4 14264 2025-03-21 15:36:07.577 2025-03-21 15:36:07.577 447050 13566 447059 11288 1 14265 2025-03-21 16:14:53.349 2025-03-21 16:14:53.349 447050 13566 447102 4323 1 14266 2025-03-21 16:18:43.262 2025-03-21 16:18:43.262 447063 19655 447111 2508 2 14267 2025-03-21 16:24:14.619 2025-03-21 16:24:14.619 447063 19655 447125 21424 3 14268 2025-03-21 16:35:48.327 2025-03-21 16:35:48.327 447063 19655 447147 19446 5 14269 2025-03-21 16:39:04.299 2025-03-21 16:39:04.299 447063 19655 447153 12072 6 14270 2025-03-21 16:30:28.048 2025-03-21 16:30:28.048 447063 19655 447138 21041 4 14271 2025-03-21 17:55:25.155 2025-03-21 17:55:25.155 447063 19655 447236 10493 3 14272 2025-03-21 15:54:44.959 2025-03-21 15:54:44.959 447063 19655 447086 13055 1 14273 2025-03-22 21:05:06.915 2025-03-22 21:05:06.915 447565 1602 448763 9099 2 14274 2025-03-22 01:34:44.766 2025-03-22 01:34:44.766 447565 1602 447645 19888 1 14275 2025-03-22 15:57:41.09 2025-03-22 15:57:41.09 447657 19087 448456 1577 2 14276 2025-03-22 05:53:48.627 2025-03-22 05:53:48.627 447657 19087 447768 654 1 14277 2025-03-22 15:55:58.017 2025-03-22 15:55:58.017 447765 2670 448454 20754 3 14278 2025-03-22 06:18:48.437 2025-03-22 06:18:48.437 447765 2670 447782 9347 2 14279 2025-03-22 05:59:28.635 2025-03-22 05:59:28.635 447765 2670 447772 17116 1 14280 2025-03-22 15:58:59.701 2025-03-22 15:58:59.701 447765 2670 448458 16149 4 14281 2025-03-22 15:27:44.081 2025-03-22 15:27:44.081 447816 13903 448399 18618 2 14282 2025-03-22 14:39:08.04 2025-03-22 14:39:08.04 447816 13903 448311 8045 1 14283 2025-03-22 21:41:55.954 2025-03-22 21:41:55.954 447900 13878 448783 1438 2 14284 2025-03-22 13:42:19.5 2025-03-22 13:42:19.5 447900 13878 448217 15160 1 14285 2025-03-22 15:18:20.996 2025-03-22 15:18:20.996 448135 20479 448380 9418 2 14286 2025-03-22 12:37:37.955 2025-03-22 12:37:37.955 448135 20479 448145 21057 1 14287 2025-03-26 11:53:58.091 2025-03-26 11:53:58.091 454236 714 454409 21379 1 14288 2025-03-26 12:10:25.606 2025-03-26 12:10:25.606 454236 714 454435 21222 3 14289 2025-03-26 12:05:33.641 2025-03-26 12:05:33.641 454236 714 454427 1737 2 14290 2025-03-22 16:21:24.081 2025-03-22 16:21:24.081 448270 19943 448491 21184 2 14291 2025-03-22 14:17:54.862 2025-03-22 14:17:54.862 448270 19943 448275 20871 1 14292 2025-03-27 08:35:57.214 2025-03-27 08:35:57.214 455531 21600 455638 11829 3 14293 2025-03-27 08:33:21.069 2025-03-27 08:33:21.069 455531 21600 455632 1433 2 14294 2025-03-27 08:31:15.534 2025-03-27 08:31:15.534 455531 21600 455628 20811 1 14295 2025-03-22 14:18:19.868 2025-03-22 14:18:19.868 448274 9496 448279 21214 1 14296 2025-03-22 21:51:23.47 2025-03-22 21:51:23.47 448274 9496 448795 678 2 14297 2025-03-22 16:23:15.733 2025-03-22 16:23:15.733 448382 1145 448493 18449 2 14298 2025-03-22 16:09:32.66 2025-03-22 16:09:32.66 448382 1145 448468 17212 1 14299 2025-03-22 20:23:53.506 2025-03-22 20:23:53.506 448554 19346 448730 2285 2 14300 2025-03-22 19:41:49.814 2025-03-22 19:41:49.814 448554 19346 448697 19637 1 14301 2025-03-22 20:07:19.651 2025-03-22 20:07:19.651 448686 9333 448716 7667 2 14302 2025-03-22 21:20:48.514 2025-03-22 21:20:48.514 448686 9333 448771 654 3 14303 2025-03-22 21:30:18.107 2025-03-22 21:30:18.107 448686 9333 448776 16638 4 14304 2025-03-22 19:52:53.023 2025-03-22 19:52:53.023 448686 9333 448707 19488 1 14305 2025-03-22 21:22:05.529 2025-03-22 21:22:05.529 448695 1650 448773 21119 3 14306 2025-03-22 21:28:19.442 2025-03-22 21:28:19.442 448695 1650 448775 16858 4 14307 2025-03-22 20:26:09.331 2025-03-22 20:26:09.331 448695 1650 448732 10291 2 14308 2025-03-22 19:57:55.013 2025-03-22 19:57:55.013 448695 1650 448713 6419 1 14309 2025-03-23 07:07:37.237 2025-03-23 07:07:37.237 449075 21369 449079 7119 2 14310 2025-03-23 07:31:56.187 2025-03-23 07:31:56.187 449075 21369 449103 19777 3 14311 2025-03-23 07:02:38.382 2025-03-23 07:02:38.382 449075 21369 449076 674 1 14312 2025-03-23 07:39:51.135 2025-03-23 07:39:51.135 449091 13198 449108 6717 1 14313 2025-03-23 08:00:10.051 2025-03-23 08:00:10.051 449091 13198 449131 21401 3 14314 2025-03-23 07:45:13.364 2025-03-23 07:45:13.364 449091 13198 449113 730 2 14315 2025-03-23 17:42:06.091 2025-03-23 17:42:06.091 450008 14168 450019 18116 1 14316 2025-03-23 19:07:02.124 2025-03-23 19:07:02.124 450008 14168 450117 859 2 14317 2025-03-23 19:37:55.871 2025-03-23 19:37:55.871 450008 14168 450217 15336 3 14318 2025-03-23 17:52:58.198 2025-03-23 17:52:58.198 450014 2620 450040 10608 2 14319 2025-03-23 17:51:47.089 2025-03-23 17:51:47.089 450014 2620 450039 17673 1 14320 2025-03-23 18:23:55.978 2025-03-23 18:23:55.978 450014 2620 450067 21159 3 14321 2025-03-23 18:58:28.705 2025-03-23 18:58:28.705 450014 2620 450109 675 4 14322 2025-03-24 13:09:38.484 2025-03-24 13:09:38.484 450576 20495 451236 16912 2 14323 2025-03-24 13:19:51.843 2025-03-24 13:19:51.843 450576 20495 451254 20710 3 14324 2025-03-24 13:04:59.613 2025-03-24 13:04:59.613 450576 20495 451229 21427 1 14325 2025-03-24 13:57:58.107 2025-03-24 13:57:58.107 450666 13169 451328 5646 5 14326 2025-03-24 06:37:37.063 2025-03-24 06:37:37.063 450666 13169 450672 1352 2 14327 2025-03-24 10:52:26.057 2025-03-24 10:52:26.057 450666 13169 451014 910 3 14328 2025-03-24 06:32:45.136 2025-03-24 06:32:45.136 450666 13169 450670 2513 1 14329 2025-03-24 10:54:10.956 2025-03-24 10:54:10.956 450666 13169 451017 21539 4 14330 2025-03-24 10:11:53.717 2025-03-24 10:11:53.717 450699 3478 450946 1620 1 14331 2025-03-24 10:28:36.031 2025-03-24 10:28:36.031 450699 3478 450977 8289 2 14332 2025-03-24 14:37:09.499 2025-03-24 14:37:09.499 450699 3478 451411 9843 3 14333 2025-03-24 13:12:57.193 2025-03-24 13:12:57.193 450976 2459 451241 9275 1 14334 2025-03-24 13:28:06.705 2025-03-24 13:28:06.705 450976 2459 451280 17094 3 14335 2025-03-24 13:15:56.24 2025-03-24 13:15:56.24 450976 2459 451245 2519 2 14336 2025-03-24 13:25:28.971 2025-03-24 13:25:28.971 451239 749 451269 756 2 14337 2025-03-24 13:35:35.115 2025-03-24 13:35:35.115 451239 749 451296 19378 3 14338 2025-03-24 13:18:21.421 2025-03-24 13:18:21.421 451239 749 451250 16296 1 14339 2025-03-24 14:52:54.704 2025-03-24 14:52:54.704 451402 1737 451446 8469 3 14340 2025-03-24 14:44:08.726 2025-03-24 14:44:08.726 451402 1737 451422 1354 2 14341 2025-03-24 14:41:17.509 2025-03-24 14:41:17.509 451402 1737 451418 10554 1 14342 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 453968 19332 455286 11678 2 14343 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 453968 19332 454254 5725 1 14344 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 453968 19332 455302 20511 3 14345 2025-03-26 23:07:08.174 2025-03-26 23:07:08.174 455274 5775 455324 16966 2 14346 2025-03-26 22:30:28.038 2025-03-26 22:30:28.038 455274 5775 455298 12334 1 14347 2025-03-27 07:01:00.981 2025-03-27 07:01:00.981 455274 5775 455589 21794 3 14348 2025-03-27 09:20:47.788 2025-03-27 09:20:47.788 455650 5128 455714 11798 3 14349 2025-03-27 09:03:35.754 2025-03-27 09:03:35.754 455650 5128 455682 7119 2 14350 2025-03-27 09:26:13.367 2025-03-27 09:26:13.367 455650 5128 455720 9494 4 14351 2025-03-27 08:55:27.26 2025-03-27 08:55:27.26 455650 5128 455665 9307 1 14352 2025-03-27 09:10:00.923 2025-03-27 09:10:00.923 455650 5128 455694 16970 3 14353 2025-03-27 09:35:37.366 2025-03-27 09:35:37.366 455650 5128 455732 5112 5 14354 2025-03-27 09:16:12.762 2025-03-27 09:16:12.762 455650 5128 455706 20117 4 14355 2025-03-27 12:16:54.793 2025-03-27 12:16:54.793 455911 20450 455923 4650 1 14356 2025-03-27 13:09:04.485 2025-03-27 13:09:04.485 455911 20450 456073 10060 5 14357 2025-03-27 12:50:42.898 2025-03-27 12:50:42.898 455911 20450 455994 5112 4 14358 2025-03-27 13:14:30.283 2025-03-27 13:14:30.283 455911 20450 456086 10094 6 14359 2025-03-27 12:36:01.878 2025-03-27 12:36:01.878 455911 20450 455952 21485 2 14360 2025-03-27 12:40:58.213 2025-03-27 12:40:58.213 455911 20450 455962 759 3 14361 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 455911 20450 456804 992 7 14362 2025-03-28 21:33:07.807 2025-03-28 21:33:07.807 457565 7903 458017 18321 2 14363 2025-03-28 18:17:10.059 2025-03-28 18:17:10.059 457565 7903 457817 1447 1 14364 2025-03-29 07:32:41.051 2025-03-29 07:32:41.051 457565 7903 458307 11750 3 14365 2025-03-27 13:09:04.485 2025-03-27 13:09:04.485 455994 5112 456073 10060 1 14366 2025-03-27 13:14:30.283 2025-03-27 13:14:30.283 455994 5112 456086 10094 2 14367 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 455994 5112 456804 992 3 14368 2025-03-27 22:41:43.787 2025-03-27 22:41:43.787 456117 9109 456831 4084 3 14369 2025-03-27 22:22:26.982 2025-03-27 22:22:26.982 456117 9109 456815 1002 2 14370 2025-03-27 21:37:52.759 2025-03-27 21:37:52.759 456117 9109 456790 1618 1 14371 2025-03-27 17:16:48.289 2025-03-27 17:16:48.289 456570 3683 456574 21060 1 14372 2025-03-27 17:48:57.584 2025-03-27 17:48:57.584 456570 3683 456621 15806 3 14373 2025-03-27 17:41:24.21 2025-03-27 17:41:24.21 456570 3683 456607 21485 2 14374 2025-03-28 15:04:11.644 2025-03-28 15:04:11.644 457432 3506 457546 21064 1 14375 2025-03-28 20:12:16.94 2025-03-28 20:12:16.94 457432 3506 457957 20275 2 14376 2025-03-28 20:30:45.359 2025-03-28 20:30:45.359 457432 3506 457980 652 3 14377 2025-03-28 14:54:35.333 2025-03-28 14:54:35.333 457495 20185 457528 12272 2 14378 2025-03-28 14:47:36.888 2025-03-28 14:47:36.888 457495 20185 457508 21070 1 14379 2025-03-28 15:10:27.789 2025-03-28 15:10:27.789 457495 20185 457562 21207 3 14380 2025-03-28 19:55:05.449 2025-03-28 19:55:05.449 457823 21383 457936 1515 2 14381 2025-03-28 18:42:35.833 2025-03-28 18:42:35.833 457823 21383 457842 2780 2 14382 2025-03-28 18:47:07.514 2025-03-28 18:47:07.514 457823 21383 457849 21072 3 14383 2025-03-28 18:24:46.032 2025-03-28 18:24:46.032 457823 21383 457825 759 1 14384 2025-03-28 18:48:51.256 2025-03-28 18:48:51.256 457823 21383 457857 20754 5 14385 2025-03-28 19:55:29.503 2025-03-28 19:55:29.503 457823 21383 457937 1806 3 14386 2025-03-28 18:47:23.833 2025-03-28 18:47:23.833 457823 21383 457851 17116 4 14387 2025-03-28 18:47:07.514 2025-03-28 18:47:07.514 457842 2780 457849 21072 1 14388 2025-03-28 18:48:51.256 2025-03-28 18:48:51.256 457842 2780 457857 20754 3 14389 2025-03-28 18:47:23.833 2025-03-28 18:47:23.833 457842 2780 457851 17116 2 14390 2025-03-29 08:39:52.52 2025-03-29 08:39:52.52 458026 802 458382 21518 3 14391 2025-03-29 05:33:48.955 2025-03-29 05:33:48.955 458026 802 458207 14941 1 14392 2025-03-29 06:22:30.396 2025-03-29 06:22:30.396 458026 802 458251 1652 2 14393 2025-03-12 11:23:16.783 2025-03-12 11:23:16.783 434237 691 434968 7097 3 14394 2025-03-12 11:55:42.868 2025-03-12 11:55:42.868 434237 691 435008 20781 4 14395 2025-03-11 19:16:32.86 2025-03-11 19:16:32.86 434237 691 434305 16447 2 14396 2025-03-11 18:57:47.32 2025-03-11 18:57:47.32 434237 691 434287 902 1 14397 2025-03-29 07:17:39.32 2025-03-29 07:17:39.32 458276 8080 458299 11873 2 14398 2025-03-29 07:42:42.56 2025-03-29 07:42:42.56 458276 8080 458316 20715 4 14399 2025-03-29 08:09:42.3 2025-03-29 08:09:42.3 458276 8080 458342 5758 4 14400 2025-03-29 07:13:34.021 2025-03-29 07:13:34.021 458276 8080 458294 20137 1 14401 2025-03-29 07:41:26.651 2025-03-29 07:41:26.651 458276 8080 458313 11038 3 14402 2025-03-29 07:48:23.728 2025-03-29 07:48:23.728 458276 8080 458320 2963 5 14403 2025-03-29 08:23:34.864 2025-03-29 08:23:34.864 458276 8080 458363 21383 6 14404 2025-03-29 08:19:53.331 2025-03-29 08:19:53.331 458276 8080 458357 3745 5 14405 2025-03-29 08:05:30.919 2025-03-29 08:05:30.919 458276 8080 458341 8989 3 14406 2025-03-29 09:03:52.837 2025-03-29 09:03:52.837 458397 14381 458420 12346 3 14407 2025-03-29 08:59:48.122 2025-03-29 08:59:48.122 458397 14381 458416 15474 2 14408 2025-03-29 08:55:03.355 2025-03-29 08:55:03.355 458397 14381 458408 16788 1 14409 2025-01-30 16:39:29.457 2025-01-30 16:39:29.457 386121 20776 386140 11750 2 14410 2025-01-30 16:39:14.125 2025-01-30 16:39:14.125 386121 20776 386138 20864 1 14411 2025-01-30 17:29:20.54 2025-01-30 17:29:20.54 386121 20776 386199 919 3 14412 2025-03-01 15:09:24.705 2025-03-01 15:09:24.705 386121 20776 421301 11417 4 14413 2025-03-23 07:01:39.474 2025-03-23 07:01:39.474 449057 9177 449075 21369 1 14414 2025-03-23 07:07:37.237 2025-03-23 07:07:37.237 449057 9177 449079 7119 3 14415 2025-03-23 07:31:56.187 2025-03-23 07:31:56.187 449057 9177 449103 19777 4 14416 2025-03-23 07:02:38.382 2025-03-23 07:02:38.382 449057 9177 449076 674 2 14417 2022-09-11 18:23:41.483 2022-09-11 18:23:41.483 1317 1389 1322 13198 2 14418 2022-09-11 18:26:53.62 2022-09-11 18:26:53.62 1317 1389 1323 5761 3 14419 2022-09-11 17:14:14.352 2022-09-11 17:14:14.352 1317 1389 1319 674 1 14420 2022-09-26 09:29:53.208 2022-09-26 09:29:53.208 1571 706 1807 11714 3 14421 2022-09-20 12:03:26.001 2022-09-20 12:03:26.001 1571 706 1610 18772 2 14422 2022-09-20 05:58:21.825 2022-09-20 05:58:21.825 1571 706 1604 15488 1 14423 2022-09-29 23:46:18.098 2022-09-29 23:46:18.098 1965 13361 1968 633 1 14424 2022-09-30 00:22:59.114 2022-09-30 00:22:59.114 1965 13361 1970 4570 2 14425 2022-09-30 20:47:50.367 2022-09-30 20:47:50.367 1965 13361 1997 797 3 14426 2022-10-24 12:28:40.627 2022-10-24 12:28:40.627 3039 19826 3068 8289 3 14427 2022-10-24 06:55:22.723 2022-10-24 06:55:22.723 3039 19826 3060 21349 2 14428 2022-10-23 20:00:31.066 2022-10-23 20:00:31.066 3039 19826 3042 1617 1 14429 2022-10-26 05:46:47.522 2022-10-26 05:46:47.522 3106 16296 3153 641 2 14430 2022-10-26 08:48:39.15 2022-10-26 08:48:39.15 3106 16296 3160 6382 3 14431 2022-10-25 07:30:17.606 2022-10-25 07:30:17.606 3106 16296 3111 617 1 14432 2022-11-08 20:40:33.98 2022-11-08 20:40:33.98 3681 6687 3682 21057 1 14433 2022-11-08 21:08:46.441 2022-11-08 21:08:46.441 3681 6687 3689 20381 4 14434 2022-11-08 21:23:25.395 2022-11-08 21:23:25.395 3681 6687 3693 5852 4 14435 2022-11-08 20:55:01.071 2022-11-08 20:55:01.071 3681 6687 3687 13361 3 14436 2022-11-08 20:42:36.892 2022-11-08 20:42:36.892 3681 6687 3683 15103 2 14437 2023-12-11 23:03:51.62 2023-12-11 23:03:51.62 97522 19527 97606 17690 3 14438 2023-12-11 19:29:17.774 2023-12-11 19:29:17.774 97522 19527 97526 10731 1 14439 2023-12-11 19:37:00.728 2023-12-11 19:37:00.728 97522 19527 97530 8059 2 14440 2024-03-06 17:30:48.109 2024-03-06 17:30:48.109 137862 4768 137881 20599 1 14441 2024-03-06 17:42:02.348 2024-03-06 17:42:02.348 137862 4768 137892 5427 2 14442 2024-03-06 18:38:01.339 2024-03-06 18:38:01.339 137862 4768 137922 6229 3 14443 2024-06-23 21:30:26.792 2024-06-23 21:30:26.792 188670 20691 188673 1658 1 14444 2024-06-24 00:37:00.985 2024-06-24 00:37:00.985 188670 20691 188714 20434 3 14445 2024-06-23 21:37:20.3 2024-06-23 21:37:20.3 188670 20691 188675 7966 2 14446 2025-02-13 22:42:39.676 2025-02-13 22:42:39.676 401314 19813 402676 17011 3 14447 2025-02-13 08:03:12.367 2025-02-13 08:03:12.367 401314 19813 401595 6030 1 14448 2025-02-14 01:43:15.165 2025-02-14 01:43:15.165 401314 19813 402758 21455 4 14449 2025-02-13 14:26:10.392 2025-02-13 14:26:10.392 401314 19813 402042 17046 2 14450 2025-03-11 17:20:08.055 2025-03-11 17:20:08.055 216481 21044 434227 20861 3 14451 2025-03-12 11:26:36.151 2025-03-12 11:26:36.151 216481 21044 434970 17209 4 14452 2025-03-11 11:14:53.99 2025-03-11 11:14:53.99 216481 21044 433750 20913 2 14453 2024-08-18 11:19:29.879 2024-08-18 11:19:29.879 216481 21044 216553 6653 1 14454 2024-11-24 22:29:50.957 2024-11-24 22:29:50.957 307280 16948 307282 6688 1 14455 2024-11-24 22:35:53.523 2024-11-24 22:35:53.523 307280 16948 307291 8173 3 14456 2024-11-24 22:32:25.713 2024-11-24 22:32:25.713 307280 16948 307285 19071 2 14457 2024-11-25 08:19:14.956 2024-11-25 08:19:14.956 307576 16598 307592 18306 1 14458 2024-11-25 08:27:14.94 2024-11-25 08:27:14.94 307576 16598 307598 5527 3 14459 2024-11-25 08:21:47.641 2024-11-25 08:21:47.641 307576 16598 307595 19459 2 14460 2024-11-25 15:43:19.372 2024-11-25 15:43:19.372 308046 4035 308086 9084 3 14461 2024-11-25 15:24:12.087 2024-11-25 15:24:12.087 308046 4035 308051 21815 2 14462 2024-11-25 15:22:06.845 2024-11-25 15:22:06.845 308046 4035 308049 2335 1 14463 2024-12-06 05:13:24.617 2024-12-06 05:13:24.617 320332 2734 320368 19863 2 14464 2024-12-06 14:39:50.834 2024-12-06 14:39:50.834 320332 2734 320752 16839 3 14465 2024-12-06 04:15:17.01 2024-12-06 04:15:17.01 320332 2734 320343 21060 1 14466 2025-02-14 23:59:46.748 2025-02-14 23:59:46.748 396045 13361 403561 726 4 14467 2025-02-11 19:12:58.63 2025-02-11 19:12:58.63 396045 13361 399955 8664 3 14468 2025-02-10 03:54:14.268 2025-02-10 03:54:14.268 396045 13361 397438 8648 2 14469 2025-02-09 12:33:43.648 2025-02-09 12:33:43.648 396045 13361 396500 20799 1 14470 2025-02-13 00:14:02.916 2025-02-13 00:14:02.916 401381 21501 401392 11498 4 14471 2025-02-13 00:07:12.3 2025-02-13 00:07:12.3 401381 21501 401384 825 1 14472 2025-02-13 00:10:06.402 2025-02-13 00:10:06.402 401381 21501 401390 12368 3 14473 2025-02-13 00:07:32.802 2025-02-13 00:07:32.802 401381 21501 401385 2431 2 14474 2025-02-13 04:57:54.855 2025-02-13 04:57:54.855 401493 691 401500 1307 1 14475 2025-02-13 05:17:47.767 2025-02-13 05:17:47.767 401493 691 401513 1122 2 14476 2025-02-13 05:20:07.369 2025-02-13 05:20:07.369 401493 691 401519 14705 3 14477 2025-02-13 09:39:54.94 2025-02-13 09:39:54.94 401493 691 401652 2459 4 14478 2025-02-13 11:40:52.008 2025-02-13 11:40:52.008 401673 5806 401773 2123 3 14479 2025-02-13 11:21:31.94 2025-02-13 11:21:31.94 401673 5806 401754 16124 2 14480 2025-02-13 10:33:38.033 2025-02-13 10:33:38.033 401673 5806 401703 6537 1 14481 2025-02-13 17:36:09.026 2025-02-13 17:36:09.026 401673 5806 402351 20906 4 14482 2025-02-15 21:27:58.743 2025-02-15 21:27:58.743 402078 14195 404423 732 4 14483 2025-02-14 01:34:22.491 2025-02-14 01:34:22.491 402078 14195 402754 11522 2 14484 2025-02-14 00:08:24.289 2025-02-14 00:08:24.289 402078 14195 402727 7746 1 14485 2025-02-15 21:07:23.285 2025-02-15 21:07:23.285 402078 14195 404410 20599 3 14486 2025-02-13 17:47:02.19 2025-02-13 17:47:02.19 402326 687 402369 960 1 14487 2025-02-13 17:49:47.607 2025-02-13 17:49:47.607 402326 687 402374 16097 2 14488 2025-02-13 17:52:54.127 2025-02-13 17:52:54.127 402326 687 402380 19117 4 14489 2025-02-13 17:51:11.575 2025-02-13 17:51:11.575 402326 687 402378 9171 3 14490 2025-02-14 13:58:21.315 2025-02-14 13:58:21.315 402980 21269 403165 15463 3 14491 2025-02-14 13:30:40.953 2025-02-14 13:30:40.953 402980 21269 403137 9109 2 14492 2025-02-14 10:30:26.009 2025-02-14 10:30:26.009 402980 21269 402991 5306 1 14493 2025-02-14 14:05:39.881 2025-02-14 14:05:39.881 402980 21269 403171 738 4 14494 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403788 19576 403809 8416 4 14495 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403788 19576 403798 20062 1 14496 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403788 19576 403806 18274 2 14497 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403788 19576 403808 10690 3 14498 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403788 19576 403813 11073 5 14499 2025-02-15 11:30:02.261 2025-02-15 11:30:02.261 403869 2056 403922 19018 3 14500 2025-02-15 11:33:00.453 2025-02-15 11:33:00.453 403869 2056 403926 640 4 14501 2025-02-15 11:35:19.418 2025-02-15 11:35:19.418 403869 2056 403927 21400 5 14502 2025-02-15 11:41:15.703 2025-02-15 11:41:15.703 403869 2056 403934 21222 6 14503 2025-02-15 11:42:12.94 2025-02-15 11:42:12.94 403869 2056 403937 997 7 14504 2025-02-15 11:44:43.466 2025-02-15 11:44:43.466 403869 2056 403941 21356 8 14505 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403869 2056 403948 9421 9 14506 2025-02-15 11:27:56.25 2025-02-15 11:27:56.25 403869 2056 403918 18865 1 14507 2025-02-15 11:29:01.526 2025-02-15 11:29:01.526 403869 2056 403919 13763 2 14508 2025-02-18 10:38:15.814 2025-02-18 10:38:15.814 406620 1881 407731 18601 4 14509 2025-02-18 07:50:49.591 2025-02-18 07:50:49.591 406620 1881 407561 21430 3 14510 2025-02-17 21:47:14.605 2025-02-17 21:47:14.605 406620 1881 407283 1726 2 14511 2025-02-17 21:24:34.358 2025-02-17 21:24:34.358 406620 1881 407259 21291 1 14512 2025-02-18 09:55:50.123 2025-02-18 09:55:50.123 407668 21430 407702 4633 4 14513 2025-02-18 09:38:48.437 2025-02-18 09:38:48.437 407668 21430 407671 8570 1 14514 2025-02-18 09:42:09.408 2025-02-18 09:42:09.408 407668 21430 407678 11165 3 14515 2025-02-18 09:39:29.886 2025-02-18 09:39:29.886 407668 21430 407673 6594 2 14516 2025-02-18 14:01:12.001 2025-02-18 14:01:12.001 407969 660 407979 11866 2 14517 2025-02-19 01:07:53.931 2025-02-19 01:07:53.931 407969 660 408655 18526 3 14518 2025-02-19 01:21:44.02 2025-02-19 01:21:44.02 407969 660 408657 1122 4 14519 2025-02-18 13:57:26.953 2025-02-18 13:57:26.953 407969 660 407971 21518 1 14520 2025-02-20 14:27:17.921 2025-02-20 14:27:17.921 410392 12102 410544 6471 4 14521 2025-02-20 13:30:12.59 2025-02-20 13:30:12.59 410392 12102 410429 9348 1 14522 2025-02-20 13:33:54.642 2025-02-20 13:33:54.642 410392 12102 410439 6430 2 14523 2025-02-20 13:43:23.67 2025-02-20 13:43:23.67 410392 12102 410456 3544 3 14524 2025-02-20 13:59:10.516 2025-02-20 13:59:10.516 410428 17321 410485 1983 4 14525 2025-02-20 14:14:57.727 2025-02-20 14:14:57.727 410428 17321 410521 1039 5 14526 2025-02-20 13:32:06.842 2025-02-20 13:32:06.842 410428 17321 410434 16229 1 14527 2025-02-20 13:51:19.911 2025-02-20 13:51:19.911 410428 17321 410474 20187 2 14528 2025-02-20 13:57:19.061 2025-02-20 13:57:19.061 410428 17321 410481 19199 3 14529 2025-03-21 16:24:46.058 2025-03-21 16:24:46.058 447001 11527 447128 8870 3 14530 2025-03-21 16:23:19.34 2025-03-21 16:23:19.34 447001 11527 447123 616 3 14531 2025-03-21 16:29:54.642 2025-03-21 16:29:54.642 447001 11527 447136 14503 4 14532 2025-03-21 16:43:58.131 2025-03-21 16:43:58.131 447001 11527 447159 13249 5 14533 2025-03-21 15:36:07.577 2025-03-21 15:36:07.577 447001 11527 447059 11288 2 14534 2025-03-21 16:14:53.349 2025-03-21 16:14:53.349 447001 11527 447102 4323 2 14535 2025-03-21 15:30:20.241 2025-03-21 15:30:20.241 447001 11527 447050 13566 1 14536 2025-03-22 14:14:36.819 2025-03-22 14:14:36.819 448196 17494 448270 19943 1 14537 2025-03-22 16:21:24.081 2025-03-22 16:21:24.081 448196 17494 448491 21184 3 14538 2025-03-22 14:17:54.862 2025-03-22 14:17:54.862 448196 17494 448275 20871 2 14539 2025-03-23 07:39:51.135 2025-03-23 07:39:51.135 449022 21418 449108 6717 2 14540 2025-03-23 08:00:10.051 2025-03-23 08:00:10.051 449022 21418 449131 21401 4 14541 2025-03-23 07:20:54.199 2025-03-23 07:20:54.199 449022 21418 449091 13198 1 14542 2025-03-23 07:45:13.364 2025-03-23 07:45:13.364 449022 21418 449113 730 3 14543 2025-02-20 15:27:45.334 2025-02-20 15:27:45.334 410632 21291 410641 20133 1 14544 2025-02-20 15:39:39.542 2025-02-20 15:39:39.542 410632 21291 410669 19857 4 14545 2025-02-20 15:30:40.18 2025-02-20 15:30:40.18 410632 21291 410651 18468 2 14546 2025-02-20 15:33:08.038 2025-02-20 15:33:08.038 410632 21291 410657 20409 3 14547 2025-02-20 16:49:56.749 2025-02-20 16:49:56.749 410696 21585 410747 5171 5 14548 2025-02-20 16:15:43.158 2025-02-20 16:15:43.158 410696 21585 410703 1428 2 14549 2025-02-20 16:17:43.309 2025-02-20 16:17:43.309 410696 21585 410706 15732 3 14550 2025-02-20 16:40:34.341 2025-02-20 16:40:34.341 410696 21585 410731 9537 4 14551 2025-02-20 16:13:54.125 2025-02-20 16:13:54.125 410696 21585 410699 658 1 14552 2025-02-23 14:15:50.355 2025-02-23 14:15:50.355 413647 981 413889 11527 1 14553 2025-03-19 12:59:17.627 2025-03-19 12:59:17.627 413647 981 443662 19924 3 14554 2025-02-23 14:19:27.294 2025-02-23 14:19:27.294 413647 981 413897 848 2 14555 2025-02-24 06:39:33.707 2025-02-24 06:39:33.707 413884 8841 414648 736 3 14556 2025-02-24 06:12:53 2025-02-24 06:12:53 413884 8841 414638 20434 2 14557 2025-02-23 20:14:51.403 2025-02-23 20:14:51.403 413884 8841 414344 1647 4 14558 2025-02-24 09:20:43.255 2025-02-24 09:20:43.255 413884 8841 414750 11967 5 14559 2025-02-24 08:58:52.015 2025-02-24 08:58:52.015 413884 8841 414726 20062 4 14560 2025-02-23 17:38:03.45 2025-02-23 17:38:03.45 413884 8841 414177 4128 2 14561 2025-02-23 20:00:48.237 2025-02-23 20:00:48.237 413884 8841 414328 5776 1 14562 2025-02-23 19:53:43.531 2025-02-23 19:53:43.531 413884 8841 414319 6136 3 14563 2025-02-23 17:33:22.609 2025-02-23 17:33:22.609 413884 8841 414168 1010 1 14564 2025-02-24 06:39:33.707 2025-02-24 06:39:33.707 414328 5776 414648 736 2 14565 2025-02-24 06:12:53 2025-02-24 06:12:53 414328 5776 414638 20434 1 14566 2025-02-24 09:20:43.255 2025-02-24 09:20:43.255 414328 5776 414750 11967 4 14567 2025-02-24 08:58:52.015 2025-02-24 08:58:52.015 414328 5776 414726 20062 3 14568 2025-02-24 09:03:27.459 2025-02-24 09:03:27.459 414722 15060 414729 20310 1 14569 2025-02-24 09:21:30.914 2025-02-24 09:21:30.914 414722 15060 414751 3213 2 14570 2025-02-24 12:15:39.908 2025-02-24 12:15:39.908 414722 15060 414939 15577 4 14571 2025-02-24 09:31:52.404 2025-02-24 09:31:52.404 414722 15060 414762 16424 3 14572 2025-02-24 15:08:58.01 2025-02-24 15:08:58.01 415107 1802 415166 21672 4 14573 2025-02-24 14:50:10.27 2025-02-24 14:50:10.27 415107 1802 415140 18526 2 14574 2025-02-24 15:05:52.833 2025-02-24 15:05:52.833 415107 1802 415162 16154 3 14575 2025-02-24 14:44:45.046 2025-02-24 14:44:45.046 415107 1802 415134 18309 1 14576 2025-02-24 19:48:16.361 2025-02-24 19:48:16.361 415331 17535 415451 20623 4 14577 2025-02-24 19:28:24.165 2025-02-24 19:28:24.165 415331 17535 415418 14552 3 14578 2025-02-24 19:20:59.481 2025-02-24 19:20:59.481 415331 17535 415406 17221 2 14579 2025-02-24 19:10:09.643 2025-02-24 19:10:09.643 415331 17535 415399 21480 1 14580 2025-02-25 18:19:43.329 2025-02-25 18:19:43.329 416578 811 416632 18174 2 14581 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416578 811 416938 11263 8 14582 2025-02-25 23:30:50.251 2025-02-25 23:30:50.251 416578 811 416934 17533 6 14583 2025-02-25 18:01:47.076 2025-02-25 18:01:47.076 416578 811 416605 8173 1 14584 2025-02-25 22:41:34.224 2025-02-25 22:41:34.224 416578 811 416881 16830 4 14585 2025-02-25 23:15:32.556 2025-02-25 23:15:32.556 416578 811 416929 19821 5 14586 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416578 811 416939 7773 9 14587 2025-02-25 22:30:12.229 2025-02-25 22:30:12.229 416578 811 416869 2151 3 14588 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416578 811 416935 21416 7 14589 2025-03-01 19:15:35.72 2025-03-01 19:15:35.72 421130 13042 421593 9352 3 14590 2025-03-01 19:18:08.811 2025-03-01 19:18:08.811 421130 13042 421594 10102 4 14591 2025-03-01 14:04:38.555 2025-03-01 14:04:38.555 421130 13042 421228 980 2 14592 2025-03-01 13:46:01.803 2025-03-01 13:46:01.803 421130 13042 421205 16912 1 14593 2025-03-09 15:17:51.435 2025-03-09 15:17:51.435 431049 21296 431074 20901 1 14594 2025-03-09 15:20:07.902 2025-03-09 15:20:07.902 431049 21296 431082 18231 2 14595 2025-03-09 15:48:53.15 2025-03-09 15:48:53.15 431049 21296 431158 9337 3 14596 2025-03-09 15:52:13.544 2025-03-09 15:52:13.544 431049 21296 431166 19569 4 14597 2025-03-01 13:13:29.613 2025-03-01 13:13:29.613 421163 5776 421167 15690 1 14598 2025-03-01 13:27:42.041 2025-03-01 13:27:42.041 421163 5776 421180 18772 4 14599 2025-03-01 13:18:41.453 2025-03-01 13:18:41.453 421163 5776 421172 19463 2 14600 2025-03-01 13:22:02.128 2025-03-01 13:22:02.128 421163 5776 421176 21139 3 14601 2025-03-03 12:16:01.339 2025-03-03 12:16:01.339 421925 14452 423492 18426 3 14602 2025-03-02 05:35:11.68 2025-03-02 05:35:11.68 421925 14452 421936 13878 1 14603 2025-03-04 02:51:17.72 2025-03-04 02:51:17.72 421925 14452 424363 19537 4 14604 2025-03-04 05:14:48.279 2025-03-04 05:14:48.279 421925 14452 424430 17722 6 14605 2025-03-04 04:44:44.502 2025-03-04 04:44:44.502 421925 14452 424414 654 5 14606 2025-03-03 07:21:08.243 2025-03-03 07:21:08.243 421925 14452 423276 15273 2 14607 2025-03-02 10:28:30.11 2025-03-02 10:28:30.11 422076 9438 422229 19535 4 14608 2025-03-02 09:34:20.43 2025-03-02 09:34:20.43 422076 9438 422111 1483 3 14609 2025-03-02 09:29:22.651 2025-03-02 09:29:22.651 422076 9438 422098 1198 2 14610 2025-03-02 09:20:08.692 2025-03-02 09:20:08.692 422076 9438 422087 17708 1 14611 2025-03-21 17:36:38.12 2025-03-21 17:36:38.12 446863 13174 447211 19071 3 14612 2025-03-21 16:22:49.994 2025-03-21 16:22:49.994 446863 13174 447122 14705 2 14613 2025-03-21 14:08:58.938 2025-03-21 14:08:58.938 446863 13174 446872 19117 1 14614 2025-03-03 09:40:07.264 2025-03-03 09:40:07.264 422408 10013 423366 13162 4 14615 2025-03-03 02:10:39.857 2025-03-03 02:10:39.857 422408 10013 423130 16830 3 14616 2025-03-02 14:54:57.327 2025-03-02 14:54:57.327 422408 10013 422574 20243 2 14617 2025-03-02 14:49:57.505 2025-03-02 14:49:57.505 422408 10013 422569 769 1 14618 2025-03-02 14:23:55.616 2025-03-02 14:23:55.616 422497 678 422535 11523 2 14619 2025-03-02 15:04:42.847 2025-03-02 15:04:42.847 422497 678 422582 3656 4 14620 2025-03-02 14:25:00.514 2025-03-02 14:25:00.514 422497 678 422537 13763 3 14621 2025-03-02 13:44:14.423 2025-03-02 13:44:14.423 422497 678 422499 11165 1 14622 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422611 13076 422644 19071 4 14623 2025-03-02 15:35:31.161 2025-03-02 15:35:31.161 422611 13076 422640 3706 3 14624 2025-03-02 15:32:09.644 2025-03-02 15:32:09.644 422611 13076 422633 17221 2 14625 2025-03-02 15:27:28.815 2025-03-02 15:27:28.815 422611 13076 422620 5779 1 14626 2025-03-04 04:31:02.615 2025-03-04 04:31:02.615 423591 14650 424408 12049 15 14627 2025-03-03 20:31:56.013 2025-03-03 20:31:56.013 423591 14650 424099 15060 10 14628 2025-03-03 19:52:36.539 2025-03-03 19:52:36.539 423591 14650 424049 8245 7 14629 2025-03-04 04:11:52.229 2025-03-04 04:11:52.229 423591 14650 424401 14990 12 14630 2025-03-03 13:31:32.464 2025-03-03 13:31:32.464 423591 14650 423601 21373 3 14631 2025-03-03 19:39:46.836 2025-03-03 19:39:46.836 423591 14650 424037 18901 6 14632 2025-03-03 20:28:10.099 2025-03-03 20:28:10.099 423591 14650 424094 21734 9 14633 2025-03-03 19:24:31.174 2025-03-03 19:24:31.174 423591 14650 424015 1454 5 14634 2025-03-03 20:19:40.617 2025-03-03 20:19:40.617 423591 14650 424082 9337 8 14635 2025-03-03 13:26:57.077 2025-03-03 13:26:57.077 423591 14650 423593 19759 1 14636 2025-03-03 13:28:33.21 2025-03-03 13:28:33.21 423591 14650 423595 15119 2 14637 2025-03-03 19:18:02.353 2025-03-03 19:18:02.353 423591 14650 424009 20337 4 14638 2025-03-04 03:17:56.869 2025-03-04 03:17:56.869 423591 14650 424382 18743 11 14639 2025-03-04 04:17:28.458 2025-03-04 04:17:28.458 423591 14650 424403 21263 13 14640 2025-03-04 04:20:01.3 2025-03-04 04:20:01.3 423591 14650 424405 844 14 14641 2025-03-03 19:18:19.929 2025-03-03 19:18:19.929 423804 14650 424011 21044 1 14642 2025-03-03 19:38:54.083 2025-03-03 19:38:54.083 423804 14650 424036 10638 2 14643 2025-03-03 20:33:05.582 2025-03-03 20:33:05.582 423804 14650 424101 20603 3 14644 2025-03-03 22:56:30.679 2025-03-03 22:56:30.679 423804 14650 424231 12774 4 14645 2025-03-03 21:37:33.345 2025-03-03 21:37:33.345 423951 18330 424185 14168 6 14646 2025-03-03 21:34:53.243 2025-03-03 21:34:53.243 423951 18330 424183 20026 5 14647 2025-03-03 19:10:25.018 2025-03-03 19:10:25.018 423951 18330 423999 12808 3 14648 2025-03-03 19:07:09.822 2025-03-03 19:07:09.822 423951 18330 423993 20768 2 14649 2025-03-03 21:32:51.066 2025-03-03 21:32:51.066 423951 18330 424182 1985 4 14650 2025-03-03 18:38:29.576 2025-03-03 18:38:29.576 423951 18330 423962 18529 1 14651 2025-03-03 20:34:19.634 2025-03-03 20:34:19.634 423951 18330 424104 9426 2 14652 2025-03-03 22:53:32.187 2025-03-03 22:53:32.187 423951 18330 424229 902 4 14653 2025-03-03 21:40:23.982 2025-03-03 21:40:23.982 423951 18330 424188 18468 7 14654 2025-03-03 21:48:56.141 2025-03-03 21:48:56.141 423951 18330 424200 11609 8 14655 2025-03-03 20:41:42.6 2025-03-03 20:41:42.6 423951 18330 424121 13547 3 14656 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 423958 21833 424161 2529 11 14657 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 423958 21833 424388 5057 11 14658 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 423958 21833 424447 16680 11 14659 2025-03-03 20:17:39.282 2025-03-03 20:17:39.282 423958 21833 424080 21412 6 14660 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 423958 21833 424158 2195 10 14661 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 423958 21833 424311 2513 10 14662 2025-03-03 18:49:58.514 2025-03-03 18:49:58.514 423958 21833 423977 5359 2 14663 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 423958 21833 424149 5725 9 14664 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 423958 21833 424153 16839 9 14665 2025-03-03 18:42:45.855 2025-03-03 18:42:45.855 423958 21833 423971 16747 1 14666 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 423958 21833 424130 21430 8 14667 2025-03-03 19:05:05.634 2025-03-03 19:05:05.634 423958 21833 423990 11073 3 14668 2025-03-03 19:15:36.194 2025-03-03 19:15:36.194 423958 21833 424003 20454 4 14669 2025-03-03 19:32:08.352 2025-03-03 19:32:08.352 423958 21833 424024 20912 5 14670 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 423958 21833 424123 1433 8 14671 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 423958 21833 424323 17411 10 14672 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 423958 21833 424386 1173 10 14673 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 423958 21833 424413 20939 11 14674 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 423958 21833 424186 18608 12 14675 2025-03-03 21:09:30.844 2025-03-03 21:09:30.844 423958 21833 424160 14385 7 14676 2025-03-03 20:36:29.113 2025-03-03 20:36:29.113 423958 21833 424111 3979 7 14677 2025-03-03 21:37:33.345 2025-03-03 21:37:33.345 424104 9426 424185 14168 4 14678 2025-03-03 21:34:53.243 2025-03-03 21:34:53.243 424104 9426 424183 20026 3 14679 2025-03-03 21:32:51.066 2025-03-03 21:32:51.066 424104 9426 424182 1985 2 14680 2025-03-03 21:40:23.982 2025-03-03 21:40:23.982 424104 9426 424188 18468 5 14681 2025-03-03 21:48:56.141 2025-03-03 21:48:56.141 424104 9426 424200 11609 6 14682 2025-03-03 20:41:42.6 2025-03-03 20:41:42.6 424104 9426 424121 13547 1 14683 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 424111 3979 424161 2529 4 14684 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 424111 3979 424388 5057 4 14685 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 424111 3979 424447 16680 4 14686 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 424111 3979 424158 2195 3 14687 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 424111 3979 424311 2513 3 14688 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 424111 3979 424149 5725 2 14689 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 424111 3979 424153 16839 2 14690 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 424111 3979 424130 21430 1 14691 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 424111 3979 424123 1433 1 14692 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 424111 3979 424323 17411 3 14693 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 424111 3979 424386 1173 3 14694 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 424111 3979 424413 20939 4 14695 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 424111 3979 424186 18608 5 14696 2025-03-03 23:27:07.683 2025-03-03 23:27:07.683 424131 8570 424256 20778 4 14697 2025-03-03 23:08:46.891 2025-03-03 23:08:46.891 424131 8570 424236 15488 3 14698 2025-03-03 23:04:17.804 2025-03-03 23:04:17.804 424131 8570 424233 18468 2 14699 2025-03-03 22:10:48.293 2025-03-03 22:10:48.293 424131 8570 424214 15588 1 14700 2025-03-03 23:18:46.062 2025-03-03 23:18:46.062 424131 8570 424243 12277 4 14701 2025-03-06 17:05:21.059 2025-03-06 17:05:21.059 427722 1124 427833 7773 3 14702 2025-03-06 18:13:04.077 2025-03-06 18:13:04.077 427722 1124 427945 7960 4 14703 2025-03-06 16:27:24.285 2025-03-06 16:27:24.285 427722 1124 427787 695 2 14704 2025-03-06 15:45:34.708 2025-03-06 15:45:34.708 427722 1124 427750 17201 1 14705 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 428559 8242 428644 672 3 14706 2025-03-07 13:21:06.213 2025-03-07 13:21:06.213 428559 8242 428619 17011 2 14707 2025-03-07 12:32:36.229 2025-03-07 12:32:36.229 428559 8242 428581 11527 1 14708 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 428559 8242 428687 11395 4 14709 2025-03-09 00:32:53.818 2025-03-09 00:32:53.818 429258 21090 430236 12976 3 14710 2025-03-09 01:57:32.661 2025-03-09 01:57:32.661 429258 21090 430263 9334 4 14711 2025-03-09 00:09:41.613 2025-03-09 00:09:41.613 429258 21090 430220 19759 2 14712 2025-03-08 14:49:05.509 2025-03-08 14:49:05.509 429258 21090 429725 13406 1 14713 2025-03-11 05:33:44.323 2025-03-11 05:33:44.323 430674 20291 433457 21427 3 14714 2025-03-09 13:20:23.381 2025-03-09 13:20:23.381 430674 20291 430863 14791 2 14715 2025-03-09 13:01:09.772 2025-03-09 13:01:09.772 430674 20291 430836 16842 1 14716 2025-03-14 07:24:17.734 2025-03-14 07:24:17.734 436900 19527 437020 17095 3 14717 2025-03-14 07:18:42.785 2025-03-14 07:18:42.785 436900 19527 437013 13398 2 14718 2025-03-14 03:36:40.283 2025-03-14 03:36:40.283 436900 19527 436930 20924 1 14719 2025-03-14 22:16:06.584 2025-03-14 22:16:06.584 436900 19527 437794 8726 4 14720 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437465 20734 437513 12609 4 14721 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437465 20734 437508 8713 3 14722 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437465 20734 437593 19094 12 14723 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437465 20734 437574 5069 11 14724 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437465 20734 437553 10291 9 14725 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437465 20734 437552 17722 8 14726 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437465 20734 437521 19980 5 14727 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437465 20734 437558 7097 10 14728 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437465 20734 437598 12277 13 14729 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437465 20734 437506 20816 2 14730 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437465 20734 437497 1823 1 14731 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437465 20734 437551 5129 7 14732 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437465 20734 437538 7668 6 14733 2025-03-21 16:21:06.454 2025-03-21 16:21:06.454 447006 1236 447118 17201 3 14734 2025-03-21 15:17:17.086 2025-03-21 15:17:17.086 447006 1236 447027 10016 2 14735 2025-03-21 15:12:02.07 2025-03-21 15:12:02.07 447006 1236 447016 4323 1 14736 2025-03-22 15:55:58.017 2025-03-22 15:55:58.017 447757 9367 448454 20754 4 14737 2025-03-22 06:18:48.437 2025-03-22 06:18:48.437 447757 9367 447782 9347 3 14738 2025-03-22 05:59:28.635 2025-03-22 05:59:28.635 447757 9367 447772 17116 2 14739 2025-03-22 05:50:55.745 2025-03-22 05:50:55.745 447757 9367 447765 2670 1 14740 2025-03-22 15:58:59.701 2025-03-22 15:58:59.701 447757 9367 448458 16149 5 14741 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437553 10291 437593 19094 3 14742 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437553 10291 437574 5069 2 14743 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437553 10291 437558 7097 1 14744 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437553 10291 437598 12277 4 14745 2025-03-15 19:28:15.133 2025-03-15 19:28:15.133 437970 997 438678 21391 3 14746 2025-03-15 17:55:20.008 2025-03-15 17:55:20.008 437970 997 438612 6260 2 14747 2025-03-15 04:20:33.748 2025-03-15 04:20:33.748 437970 997 437973 2065 1 14748 2025-03-17 18:20:55.539 2025-03-17 18:20:55.539 440523 9969 441061 913 4 14749 2025-03-17 18:02:38.488 2025-03-17 18:02:38.488 440523 9969 441047 11885 3 14750 2025-03-17 11:09:23.002 2025-03-17 11:09:23.002 440523 9969 440538 1195 1 14751 2025-03-17 11:38:55.505 2025-03-17 11:38:55.505 440523 9969 440560 20802 2 14752 2025-03-18 13:11:32.035 2025-03-18 13:11:32.035 441803 5708 442157 2722 4 14753 2025-03-18 13:06:57.606 2025-03-18 13:06:57.606 441803 5708 442148 20187 3 14754 2025-03-18 13:01:30.787 2025-03-18 13:01:30.787 441803 5708 442141 20254 2 14755 2025-03-18 12:57:46.826 2025-03-18 12:57:46.826 441803 5708 442135 16193 1 14756 2025-03-19 13:19:15.165 2025-03-19 13:19:15.165 441862 18735 443691 12277 3 14757 2025-03-19 14:02:50.362 2025-03-19 14:02:50.362 441862 18735 443762 12368 5 14758 2025-03-19 13:54:27.282 2025-03-19 13:54:27.282 441862 18735 443746 9333 4 14759 2025-03-19 07:58:29.97 2025-03-19 07:58:29.97 441862 18735 443259 5694 2 14760 2025-03-18 10:50:57.112 2025-03-18 10:50:57.112 441862 18735 441878 17041 1 14761 2025-03-19 10:32:35.156 2025-03-19 10:32:35.156 442234 9450 443407 14225 3 14762 2025-03-19 00:07:49.719 2025-03-19 00:07:49.719 442234 9450 443001 713 1 14763 2025-03-19 01:37:25.61 2025-03-19 01:37:25.61 442234 9450 443052 1801 2 14764 2025-03-18 21:02:52.25 2025-03-18 21:02:52.25 442670 4487 442843 1712 4 14765 2025-03-18 20:56:44.844 2025-03-18 20:56:44.844 442670 4487 442834 880 3 14766 2025-03-18 20:54:02.509 2025-03-18 20:54:02.509 442670 4487 442828 695 2 14767 2025-03-18 20:51:12.059 2025-03-18 20:51:12.059 442670 4487 442824 4064 1 14768 2025-03-19 10:31:48.487 2025-03-19 10:31:48.487 442876 1567 443405 12870 4 14769 2025-03-18 22:46:52.979 2025-03-18 22:46:52.979 442876 1567 442948 20243 2 14770 2025-03-19 09:33:15.74 2025-03-19 09:33:15.74 442876 1567 443353 18306 3 14771 2025-03-18 21:26:23.283 2025-03-18 21:26:23.283 442876 1567 442880 11866 1 14772 2025-03-26 23:07:08.174 2025-03-26 23:07:08.174 454877 6058 455324 16966 3 14773 2025-03-26 22:30:28.038 2025-03-26 22:30:28.038 454877 6058 455298 12334 2 14774 2025-03-27 07:01:00.981 2025-03-27 07:01:00.981 454877 6058 455589 21794 4 14775 2025-03-26 22:07:36.814 2025-03-26 22:07:36.814 454877 6058 455274 5775 1 14776 2025-03-19 12:00:01.931 2025-03-19 12:00:01.931 443195 18772 443526 695 3 14777 2025-03-19 06:41:53.008 2025-03-19 06:41:53.008 443195 18772 443200 14225 1 14778 2025-03-19 12:14:50.616 2025-03-19 12:14:50.616 443195 18772 443551 19484 4 14779 2025-03-19 06:51:16.711 2025-03-19 06:51:16.711 443195 18772 443205 16284 2 14780 2025-03-19 09:32:05.157 2025-03-19 09:32:05.157 443282 20479 443351 17494 3 14781 2025-03-19 09:13:58.609 2025-03-19 09:13:58.609 443282 20479 443335 690 2 14782 2025-03-19 08:37:42.844 2025-03-19 08:37:42.844 443282 20479 443286 20370 1 14783 2025-03-19 10:56:40.314 2025-03-19 10:56:40.314 443282 20479 443436 11776 5 14784 2025-03-19 10:53:55.845 2025-03-19 10:53:55.845 443282 20479 443432 618 4 14785 2025-03-19 14:06:45.206 2025-03-19 14:06:45.206 443715 632 443772 919 3 14786 2025-03-19 14:18:38.409 2025-03-19 14:18:38.409 443715 632 443796 8289 4 14787 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443715 632 443845 21522 9 14788 2025-03-19 14:34:10.46 2025-03-19 14:34:10.46 443715 632 443831 670 7 14789 2025-03-19 14:27:58.927 2025-03-19 14:27:58.927 443715 632 443811 16230 5 14790 2025-03-19 14:36:28.243 2025-03-19 14:36:28.243 443715 632 443835 21012 8 14791 2025-03-19 14:30:39.44 2025-03-19 14:30:39.44 443715 632 443819 14357 6 14792 2025-03-19 13:59:40.572 2025-03-19 13:59:40.572 443715 632 443757 1814 2 14793 2025-03-19 13:45:14.733 2025-03-19 13:45:14.733 443715 632 443731 1319 1 14794 2025-03-19 14:43:06.818 2025-03-19 14:43:06.818 443811 16230 443845 21522 4 14795 2025-03-19 14:34:10.46 2025-03-19 14:34:10.46 443811 16230 443831 670 2 14796 2025-03-19 14:36:28.243 2025-03-19 14:36:28.243 443811 16230 443835 21012 3 14797 2025-03-19 14:30:39.44 2025-03-19 14:30:39.44 443811 16230 443819 14357 1 14798 2025-03-21 18:14:57.367 2025-03-21 18:14:57.367 445531 658 447253 16447 3 14799 2025-03-21 13:54:17.272 2025-03-21 13:54:17.272 445531 658 446840 3411 2 14800 2025-03-21 13:15:26.694 2025-03-21 13:15:26.694 445531 658 446786 750 1 14801 2025-03-22 14:18:19.868 2025-03-22 14:18:19.868 446086 688 448279 21214 2 14802 2025-03-22 21:51:23.47 2025-03-22 21:51:23.47 446086 688 448795 678 3 14803 2025-03-22 14:16:39.064 2025-03-22 14:16:39.064 446086 688 448274 9496 1 14804 2025-03-21 12:19:15.802 2025-03-21 12:19:15.802 446661 12245 446686 6361 2 14805 2025-03-21 12:20:35.654 2025-03-21 12:20:35.654 446661 12245 446688 16536 3 14806 2025-03-21 12:17:36.647 2025-03-21 12:17:36.647 446661 12245 446680 1534 1 14807 2025-03-21 15:42:40.733 2025-03-21 15:42:40.733 446791 16145 447073 2206 3 14808 2025-03-21 15:39:19.49 2025-03-21 15:39:19.49 446791 16145 447064 1135 2 14809 2025-03-21 13:57:36.386 2025-03-21 13:57:36.386 446791 16145 446849 1801 1 14810 2025-03-22 15:18:20.996 2025-03-22 15:18:20.996 448047 8841 448380 9418 3 14811 2025-03-22 12:37:37.955 2025-03-22 12:37:37.955 448047 8841 448145 21057 2 14812 2025-03-22 12:32:03.1 2025-03-22 12:32:03.1 448047 8841 448135 20479 1 14813 2025-03-23 17:52:58.198 2025-03-23 17:52:58.198 450010 9339 450040 10608 3 14814 2025-03-23 17:51:47.089 2025-03-23 17:51:47.089 450010 9339 450039 17673 2 14815 2025-03-23 18:23:55.978 2025-03-23 18:23:55.978 450010 9339 450067 21159 4 14816 2025-03-23 17:38:33.489 2025-03-23 17:38:33.489 450010 9339 450014 2620 1 14817 2025-03-23 18:58:28.705 2025-03-23 18:58:28.705 450010 9339 450109 675 5 14818 2025-03-24 13:57:58.107 2025-03-24 13:57:58.107 450664 618 451328 5646 6 14819 2025-03-24 06:37:37.063 2025-03-24 06:37:37.063 450664 618 450672 1352 3 14820 2025-03-24 10:52:26.057 2025-03-24 10:52:26.057 450664 618 451014 910 4 14821 2025-03-24 06:32:45.136 2025-03-24 06:32:45.136 450664 618 450670 2513 2 14822 2025-03-24 10:54:10.956 2025-03-24 10:54:10.956 450664 618 451017 21539 5 14823 2025-03-24 06:29:38.054 2025-03-24 06:29:38.054 450664 618 450666 13169 1 14824 2025-03-24 10:11:53.717 2025-03-24 10:11:53.717 450695 8945 450946 1620 2 14825 2025-03-24 07:00:20.319 2025-03-24 07:00:20.319 450695 8945 450699 3478 1 14826 2025-03-24 10:28:36.031 2025-03-24 10:28:36.031 450695 8945 450977 8289 3 14827 2025-03-24 14:37:09.499 2025-03-24 14:37:09.499 450695 8945 451411 9843 4 14828 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 453900 9336 455286 11678 3 14829 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 453900 9336 454254 5725 2 14830 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 453900 9336 455302 20511 4 14831 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 453900 9336 453968 19332 1 14832 2025-03-29 08:39:52.52 2025-03-29 08:39:52.52 454235 12220 458382 21518 4 14833 2025-03-28 21:54:24.106 2025-03-28 21:54:24.106 454235 12220 458026 802 1 14834 2025-03-29 05:33:48.955 2025-03-29 05:33:48.955 454235 12220 458207 14941 2 14835 2025-03-29 06:22:30.396 2025-03-29 06:22:30.396 454235 12220 458251 1652 3 14836 2025-03-27 12:16:54.793 2025-03-27 12:16:54.793 455904 20715 455923 4650 2 14837 2025-03-27 13:09:04.485 2025-03-27 13:09:04.485 455904 20715 456073 10060 6 14838 2025-03-27 12:06:29.751 2025-03-27 12:06:29.751 455904 20715 455911 20450 1 14839 2025-03-27 12:50:42.898 2025-03-27 12:50:42.898 455904 20715 455994 5112 5 14840 2025-03-27 13:14:30.283 2025-03-27 13:14:30.283 455904 20715 456086 10094 7 14841 2025-03-27 12:36:01.878 2025-03-27 12:36:01.878 455904 20715 455952 21485 3 14842 2025-03-27 12:40:58.213 2025-03-27 12:40:58.213 455904 20715 455962 759 4 14843 2025-03-27 22:05:40.799 2025-03-27 22:05:40.799 455904 20715 456804 992 8 14844 2025-03-27 22:41:43.787 2025-03-27 22:41:43.787 456113 19581 456831 4084 4 14845 2025-03-27 13:26:04.922 2025-03-27 13:26:04.922 456113 19581 456117 9109 1 14846 2025-03-27 22:22:26.982 2025-03-27 22:22:26.982 456113 19581 456815 1002 3 14847 2025-03-27 21:37:52.759 2025-03-27 21:37:52.759 456113 19581 456790 1618 2 14848 2025-03-29 09:03:52.837 2025-03-29 09:03:52.837 458378 10016 458420 12346 4 14849 2025-03-29 08:59:48.122 2025-03-29 08:59:48.122 458378 10016 458416 15474 3 14850 2025-03-29 08:50:46.032 2025-03-29 08:50:46.032 458378 10016 458397 14381 1 14851 2025-03-29 08:55:03.355 2025-03-29 08:55:03.355 458378 10016 458408 16788 2 14852 2022-09-11 16:02:45.105 2022-09-11 16:02:45.105 1253 16351 1317 1389 1 14853 2022-09-11 18:23:41.483 2022-09-11 18:23:41.483 1253 16351 1322 13198 3 14854 2022-09-11 18:26:53.62 2022-09-11 18:26:53.62 1253 16351 1323 5761 4 14855 2022-09-11 17:14:14.352 2022-09-11 17:14:14.352 1253 16351 1319 674 2 14856 2022-09-29 11:05:33.546 2022-09-29 11:05:33.546 1905 13767 1929 7978 3 14857 2022-09-29 11:35:12.301 2022-09-29 11:35:12.301 1905 13767 1930 5557 4 14858 2022-09-28 14:48:08.205 2022-09-28 14:48:08.205 1905 13767 1907 706 2 14859 2022-09-28 14:36:57.817 2022-09-28 14:36:57.817 1905 13767 1906 8004 1 14860 2022-10-26 05:46:47.522 2022-10-26 05:46:47.522 3104 17727 3153 641 3 14861 2022-10-26 08:48:39.15 2022-10-26 08:48:39.15 3104 17727 3160 6382 4 14862 2022-10-25 07:30:17.606 2022-10-25 07:30:17.606 3104 17727 3111 617 2 14863 2022-10-25 06:33:59.36 2022-10-25 06:33:59.36 3104 17727 3106 16296 1 14864 2022-11-08 20:40:33.98 2022-11-08 20:40:33.98 3679 8376 3682 21057 2 14865 2022-11-08 21:08:46.441 2022-11-08 21:08:46.441 3679 8376 3689 20381 5 14866 2022-11-08 21:23:25.395 2022-11-08 21:23:25.395 3679 8376 3693 5852 5 14867 2022-11-08 20:36:43.517 2022-11-08 20:36:43.517 3679 8376 3681 6687 1 14868 2022-11-08 20:55:01.071 2022-11-08 20:55:01.071 3679 8376 3687 13361 4 14869 2022-11-08 20:42:36.892 2022-11-08 20:42:36.892 3679 8376 3683 15103 3 14870 2024-06-23 21:30:26.792 2024-06-23 21:30:26.792 188396 13198 188673 1658 2 14871 2024-06-23 21:24:41.45 2024-06-23 21:24:41.45 188396 13198 188670 20691 1 14872 2024-06-24 00:37:00.985 2024-06-24 00:37:00.985 188396 13198 188714 20434 4 14873 2024-06-23 21:37:20.3 2024-06-23 21:37:20.3 188396 13198 188675 7966 3 14874 2025-02-18 14:01:12.001 2025-02-18 14:01:12.001 407957 8985 407979 11866 3 14875 2025-02-18 13:55:19.991 2025-02-18 13:55:19.991 407957 8985 407969 660 1 14876 2025-02-19 01:07:53.931 2025-02-19 01:07:53.931 407957 8985 408655 18526 4 14877 2025-02-19 01:21:44.02 2025-02-19 01:21:44.02 407957 8985 408657 1122 5 14878 2025-02-18 13:57:26.953 2025-02-18 13:57:26.953 407957 8985 407971 21518 2 14879 2025-02-23 14:15:50.355 2025-02-23 14:15:50.355 413640 1030 413889 11527 2 14880 2025-03-19 12:59:17.627 2025-03-19 12:59:17.627 413640 1030 443662 19924 4 14881 2025-02-23 14:19:27.294 2025-02-23 14:19:27.294 413640 1030 413897 848 3 14882 2025-02-23 12:17:30.512 2025-02-23 12:17:30.512 413640 1030 413647 981 1 14883 2025-03-11 17:20:08.055 2025-03-11 17:20:08.055 216272 19996 434227 20861 4 14884 2024-08-18 09:53:36.753 2024-08-18 09:53:36.753 216272 19996 216481 21044 1 14885 2025-03-12 11:26:36.151 2025-03-12 11:26:36.151 216272 19996 434970 17209 5 14886 2025-03-11 11:14:53.99 2025-03-11 11:14:53.99 216272 19996 433750 20913 3 14887 2024-08-18 11:19:29.879 2024-08-18 11:19:29.879 216272 19996 216553 6653 2 14888 2024-11-25 08:19:14.956 2024-11-25 08:19:14.956 307574 17172 307592 18306 2 14889 2024-11-25 07:58:10.624 2024-11-25 07:58:10.624 307574 17172 307576 16598 1 14890 2024-11-25 08:27:14.94 2024-11-25 08:27:14.94 307574 17172 307598 5527 4 14891 2024-11-25 08:21:47.641 2024-11-25 08:21:47.641 307574 17172 307595 19459 3 14892 2024-11-25 15:43:19.372 2024-11-25 15:43:19.372 307953 1438 308086 9084 4 14893 2024-11-25 15:20:14.822 2024-11-25 15:20:14.822 307953 1438 308046 4035 1 14894 2024-11-25 15:24:12.087 2024-11-25 15:24:12.087 307953 1438 308051 21815 3 14895 2024-11-25 15:22:06.845 2024-11-25 15:22:06.845 307953 1438 308049 2335 2 14896 2025-03-11 05:33:44.323 2025-03-11 05:33:44.323 430670 4084 433457 21427 4 14897 2025-03-09 13:20:23.381 2025-03-09 13:20:23.381 430670 4084 430863 14791 3 14898 2025-03-09 11:46:43.909 2025-03-09 11:46:43.909 430670 4084 430674 20291 1 14899 2025-03-09 13:01:09.772 2025-03-09 13:01:09.772 430670 4084 430836 16842 2 14900 2024-12-06 05:13:24.617 2024-12-06 05:13:24.617 320300 11678 320368 19863 3 14901 2024-12-06 03:43:02.722 2024-12-06 03:43:02.722 320300 11678 320332 2734 1 14902 2024-12-06 14:39:50.834 2024-12-06 14:39:50.834 320300 11678 320752 16839 4 14903 2024-12-06 04:15:17.01 2024-12-06 04:15:17.01 320300 11678 320343 21060 2 14904 2025-01-30 16:39:29.457 2025-01-30 16:39:29.457 385905 2367 386140 11750 3 14905 2025-01-30 16:39:14.125 2025-01-30 16:39:14.125 385905 2367 386138 20864 2 14906 2025-01-30 17:29:20.54 2025-01-30 17:29:20.54 385905 2367 386199 919 4 14907 2025-01-30 16:20:52.157 2025-01-30 16:20:52.157 385905 2367 386121 20776 1 14908 2025-03-01 15:09:24.705 2025-03-01 15:09:24.705 385905 2367 421301 11417 5 14909 2025-03-03 23:27:07.683 2025-03-03 23:27:07.683 400201 5597 424256 20778 5 14910 2025-03-03 23:08:46.891 2025-03-03 23:08:46.891 400201 5597 424236 15488 4 14911 2025-03-03 23:04:17.804 2025-03-03 23:04:17.804 400201 5597 424233 18468 3 14912 2025-03-03 22:10:48.293 2025-03-03 22:10:48.293 400201 5597 424214 15588 2 14913 2025-03-03 23:18:46.062 2025-03-03 23:18:46.062 400201 5597 424243 12277 5 14914 2025-03-03 20:49:19.703 2025-03-03 20:49:19.703 400201 5597 424131 8570 1 14915 2025-02-13 22:42:39.676 2025-02-13 22:42:39.676 401183 20751 402676 17011 4 14916 2025-02-13 08:03:12.367 2025-02-13 08:03:12.367 401183 20751 401595 6030 2 14917 2025-02-12 22:00:29.444 2025-02-12 22:00:29.444 401183 20751 401314 19813 1 14918 2025-02-14 01:43:15.165 2025-02-14 01:43:15.165 401183 20751 402758 21455 5 14919 2025-02-13 14:26:10.392 2025-02-13 14:26:10.392 401183 20751 402042 17046 3 14920 2025-02-13 11:40:52.008 2025-02-13 11:40:52.008 401660 17172 401773 2123 4 14921 2025-02-13 11:21:31.94 2025-02-13 11:21:31.94 401660 17172 401754 16124 3 14922 2025-02-13 10:33:38.033 2025-02-13 10:33:38.033 401660 17172 401703 6537 2 14923 2025-02-13 10:04:49.642 2025-02-13 10:04:49.642 401660 17172 401673 5806 1 14924 2025-02-13 17:36:09.026 2025-02-13 17:36:09.026 401660 17172 402351 20906 5 14925 2025-02-20 14:27:17.921 2025-02-20 14:27:17.921 410384 674 410544 6471 5 14926 2025-02-20 13:30:12.59 2025-02-20 13:30:12.59 410384 674 410429 9348 2 14927 2025-02-20 13:11:39.647 2025-02-20 13:11:39.647 410384 674 410392 12102 1 14928 2025-02-20 13:33:54.642 2025-02-20 13:33:54.642 410384 674 410439 6430 3 14929 2025-02-20 13:43:23.67 2025-02-20 13:43:23.67 410384 674 410456 3544 4 14930 2025-02-15 21:27:58.743 2025-02-15 21:27:58.743 402058 21060 404423 732 5 14931 2025-02-13 14:42:25.101 2025-02-13 14:42:25.101 402058 21060 402078 14195 1 14932 2025-02-14 01:34:22.491 2025-02-14 01:34:22.491 402058 21060 402754 11522 3 14933 2025-02-14 00:08:24.289 2025-02-14 00:08:24.289 402058 21060 402727 7746 2 14934 2025-02-15 21:07:23.285 2025-02-15 21:07:23.285 402058 21060 404410 20599 4 14935 2025-02-13 17:47:02.19 2025-02-13 17:47:02.19 402299 2460 402369 960 2 14936 2025-02-13 17:15:47.054 2025-02-13 17:15:47.054 402299 2460 402326 687 1 14937 2025-02-13 17:49:47.607 2025-02-13 17:49:47.607 402299 2460 402374 16097 3 14938 2025-02-13 17:52:54.127 2025-02-13 17:52:54.127 402299 2460 402380 19117 5 14939 2025-02-13 17:51:11.575 2025-02-13 17:51:11.575 402299 2460 402378 9171 4 14940 2025-02-14 10:19:39.871 2025-02-14 10:19:39.871 402903 667 402980 21269 1 14941 2025-02-14 13:58:21.315 2025-02-14 13:58:21.315 402903 667 403165 15463 4 14942 2025-02-14 13:30:40.953 2025-02-14 13:30:40.953 402903 667 403137 9109 3 14943 2025-02-14 10:30:26.009 2025-02-14 10:30:26.009 402903 667 402991 5306 2 14944 2025-02-14 14:05:39.881 2025-02-14 14:05:39.881 402903 667 403171 738 5 14945 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403779 1092 403788 19576 1 14946 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403779 1092 403809 8416 5 14947 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403779 1092 403798 20062 2 14948 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403779 1092 403806 18274 3 14949 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403779 1092 403808 10690 4 14950 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403779 1092 403813 11073 6 14951 2025-02-15 11:30:02.261 2025-02-15 11:30:02.261 403868 11091 403922 19018 4 14952 2025-02-15 11:33:00.453 2025-02-15 11:33:00.453 403868 11091 403926 640 5 14953 2025-02-15 11:35:19.418 2025-02-15 11:35:19.418 403868 11091 403927 21400 6 14954 2025-02-15 11:41:15.703 2025-02-15 11:41:15.703 403868 11091 403934 21222 7 14955 2025-02-15 11:42:12.94 2025-02-15 11:42:12.94 403868 11091 403937 997 8 14956 2025-02-15 11:44:43.466 2025-02-15 11:44:43.466 403868 11091 403941 21356 9 14957 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403868 11091 403948 9421 10 14958 2025-02-15 11:27:56.25 2025-02-15 11:27:56.25 403868 11091 403918 18865 2 14959 2025-02-15 09:50:53.47 2025-02-15 09:50:53.47 403868 11091 403869 2056 1 14960 2025-02-15 11:29:01.526 2025-02-15 11:29:01.526 403868 11091 403919 13763 3 14961 2025-02-18 09:55:50.123 2025-02-18 09:55:50.123 407663 5377 407702 4633 5 14962 2025-02-18 09:38:48.437 2025-02-18 09:38:48.437 407663 5377 407671 8570 2 14963 2025-02-18 09:42:09.408 2025-02-18 09:42:09.408 407663 5377 407678 11165 4 14964 2025-02-18 09:33:20.657 2025-02-18 09:33:20.657 407663 5377 407668 21430 1 14965 2025-02-18 09:39:29.886 2025-02-18 09:39:29.886 407663 5377 407673 6594 3 14966 2025-03-09 00:32:53.818 2025-03-09 00:32:53.818 428674 19524 430236 12976 4 14967 2025-03-09 01:57:32.661 2025-03-09 01:57:32.661 428674 19524 430263 9334 5 14968 2025-03-09 00:09:41.613 2025-03-09 00:09:41.613 428674 19524 430220 19759 3 14969 2025-03-08 14:49:05.509 2025-03-08 14:49:05.509 428674 19524 429725 13406 2 14970 2025-03-08 04:02:26.739 2025-03-08 04:02:26.739 428674 19524 429258 21090 1 14971 2022-10-26 05:46:47.522 2022-10-26 05:46:47.522 3066 4862 3153 641 4 14972 2022-10-26 08:48:39.15 2022-10-26 08:48:39.15 3066 4862 3160 6382 5 14973 2022-10-25 07:30:17.606 2022-10-25 07:30:17.606 3066 4862 3111 617 3 14974 2022-10-25 06:33:59.36 2022-10-25 06:33:59.36 3066 4862 3106 16296 2 14975 2022-10-25 06:04:45.795 2022-10-25 06:04:45.795 3066 4862 3104 17727 1 14976 2025-03-09 15:17:51.435 2025-03-09 15:17:51.435 431001 20655 431074 20901 2 14977 2025-03-09 15:12:17.277 2025-03-09 15:12:17.277 431001 20655 431049 21296 1 14978 2025-03-09 15:20:07.902 2025-03-09 15:20:07.902 431001 20655 431082 18231 3 14979 2025-03-09 15:48:53.15 2025-03-09 15:48:53.15 431001 20655 431158 9337 4 14980 2025-03-09 15:52:13.544 2025-03-09 15:52:13.544 431001 20655 431166 19569 5 14981 2025-02-24 15:05:52.833 2025-02-24 15:05:52.833 415076 21051 415162 16154 6 14982 2025-02-24 14:22:28.314 2025-02-24 14:22:28.314 415076 21051 415104 5646 2 14983 2025-02-24 14:15:52.414 2025-02-24 14:15:52.414 415076 21051 415098 21494 1 14984 2025-02-24 19:48:16.361 2025-02-24 19:48:16.361 415076 21051 415451 20623 5 14985 2025-02-24 19:28:24.165 2025-02-24 19:28:24.165 415076 21051 415418 14552 4 14986 2025-02-24 19:20:59.481 2025-02-24 19:20:59.481 415076 21051 415406 17221 3 14987 2025-02-24 19:10:09.643 2025-02-24 19:10:09.643 415076 21051 415399 21480 2 14988 2025-02-24 15:08:58.01 2025-02-24 15:08:58.01 415076 21051 415166 21672 7 14989 2025-02-24 14:50:10.27 2025-02-24 14:50:10.27 415076 21051 415140 18526 5 14990 2025-02-24 14:23:51.978 2025-02-24 14:23:51.978 415076 21051 415107 1802 3 14991 2025-02-24 17:51:30.925 2025-02-24 17:51:30.925 415076 21051 415331 17535 1 14992 2025-02-24 14:44:45.046 2025-02-24 14:44:45.046 415076 21051 415134 18309 4 14993 2025-02-24 15:08:58.01 2025-02-24 15:08:58.01 415104 5646 415166 21672 5 14994 2025-02-24 14:50:10.27 2025-02-24 14:50:10.27 415104 5646 415140 18526 3 14995 2025-02-24 14:23:51.978 2025-02-24 14:23:51.978 415104 5646 415107 1802 1 14996 2025-02-24 15:05:52.833 2025-02-24 15:05:52.833 415104 5646 415162 16154 4 14997 2025-02-24 14:44:45.046 2025-02-24 14:44:45.046 415104 5646 415134 18309 2 14998 2025-02-25 18:19:43.329 2025-02-25 18:19:43.329 416551 10398 416632 18174 3 14999 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416551 10398 416938 11263 9 15000 2025-02-25 23:30:50.251 2025-02-25 23:30:50.251 416551 10398 416934 17533 7 15001 2025-02-25 18:01:47.076 2025-02-25 18:01:47.076 416551 10398 416605 8173 2 15002 2025-02-25 22:41:34.224 2025-02-25 22:41:34.224 416551 10398 416881 16830 5 15003 2025-02-25 23:15:32.556 2025-02-25 23:15:32.556 416551 10398 416929 19821 6 15004 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416551 10398 416939 7773 10 15005 2025-02-25 22:30:12.229 2025-02-25 22:30:12.229 416551 10398 416869 2151 4 15006 2025-02-25 17:43:40.876 2025-02-25 17:43:40.876 416551 10398 416578 811 1 15007 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416551 10398 416935 21416 8 15008 2025-03-01 13:13:29.613 2025-03-01 13:13:29.613 421157 9354 421167 15690 2 15009 2025-03-01 13:27:42.041 2025-03-01 13:27:42.041 421157 9354 421180 18772 5 15010 2025-03-01 13:18:41.453 2025-03-01 13:18:41.453 421157 9354 421172 19463 3 15011 2025-03-01 13:10:47.677 2025-03-01 13:10:47.677 421157 9354 421163 5776 1 15012 2025-03-01 13:22:02.128 2025-03-01 13:22:02.128 421157 9354 421176 21139 4 15013 2025-03-03 12:16:01.339 2025-03-03 12:16:01.339 421855 14376 423492 18426 4 15014 2025-03-02 05:35:11.68 2025-03-02 05:35:11.68 421855 14376 421936 13878 2 15015 2025-03-02 05:14:54.733 2025-03-02 05:14:54.733 421855 14376 421925 14452 1 15016 2025-03-04 02:51:17.72 2025-03-04 02:51:17.72 421855 14376 424363 19537 5 15017 2025-03-04 05:14:48.279 2025-03-04 05:14:48.279 421855 14376 424430 17722 7 15018 2025-03-04 04:44:44.502 2025-03-04 04:44:44.502 421855 14376 424414 654 6 15019 2025-03-03 07:21:08.243 2025-03-03 07:21:08.243 421855 14376 423276 15273 3 15020 2025-03-02 10:28:30.11 2025-03-02 10:28:30.11 422068 15091 422229 19535 5 15021 2025-03-02 09:34:20.43 2025-03-02 09:34:20.43 422068 15091 422111 1483 4 15022 2025-03-02 09:29:22.651 2025-03-02 09:29:22.651 422068 15091 422098 1198 3 15023 2025-03-02 09:20:08.692 2025-03-02 09:20:08.692 422068 15091 422087 17708 2 15024 2025-03-02 09:08:28.388 2025-03-02 09:08:28.388 422068 15091 422076 9438 1 15025 2025-02-18 14:01:12.001 2025-02-18 14:01:12.001 407944 4083 407979 11866 5 15026 2025-02-18 13:55:19.991 2025-02-18 13:55:19.991 407944 4083 407969 660 3 15027 2025-02-19 01:07:53.931 2025-02-19 01:07:53.931 407944 4083 408655 18526 6 15028 2025-02-18 13:49:06.242 2025-02-18 13:49:06.242 407944 4083 407957 8985 2 15029 2025-02-19 01:21:44.02 2025-02-19 01:21:44.02 407944 4083 408657 1122 7 15030 2025-02-18 13:57:26.953 2025-02-18 13:57:26.953 407944 4083 407971 21518 4 15031 2025-02-18 13:47:52.065 2025-02-18 13:47:52.065 407944 4083 407954 17237 1 15032 2025-03-02 12:51:40.176 2025-03-02 12:51:40.176 422406 10060 422408 10013 1 15033 2025-03-03 09:40:07.264 2025-03-03 09:40:07.264 422406 10060 423366 13162 5 15034 2025-03-03 02:10:39.857 2025-03-03 02:10:39.857 422406 10060 423130 16830 4 15035 2025-03-02 14:54:57.327 2025-03-02 14:54:57.327 422406 10060 422574 20243 3 15036 2025-03-02 14:49:57.505 2025-03-02 14:49:57.505 422406 10060 422569 769 2 15037 2025-03-02 14:23:55.616 2025-03-02 14:23:55.616 422470 2593 422535 11523 3 15038 2025-03-02 15:04:42.847 2025-03-02 15:04:42.847 422470 2593 422582 3656 5 15039 2025-03-02 14:25:00.514 2025-03-02 14:25:00.514 422470 2593 422537 13763 4 15040 2025-03-02 13:44:14.423 2025-03-02 13:44:14.423 422470 2593 422499 11165 2 15041 2025-03-02 13:42:33.242 2025-03-02 13:42:33.242 422470 2593 422497 678 1 15042 2025-03-02 15:37:20.753 2025-03-02 15:37:20.753 422604 6777 422644 19071 5 15043 2025-03-02 15:35:31.161 2025-03-02 15:35:31.161 422604 6777 422640 3706 4 15044 2025-03-02 15:32:09.644 2025-03-02 15:32:09.644 422604 6777 422633 17221 3 15045 2025-03-02 15:27:28.815 2025-03-02 15:27:28.815 422604 6777 422620 5779 2 15046 2025-03-02 15:21:19.724 2025-03-02 15:21:19.724 422604 6777 422611 13076 1 15047 2025-03-03 19:18:19.929 2025-03-03 19:18:19.929 423777 16214 424011 21044 2 15048 2025-03-03 16:02:48.674 2025-03-03 16:02:48.674 423777 16214 423804 14650 1 15049 2025-03-03 19:38:54.083 2025-03-03 19:38:54.083 423777 16214 424036 10638 3 15050 2025-03-03 20:33:05.582 2025-03-03 20:33:05.582 423777 16214 424101 20603 4 15051 2025-03-03 22:56:30.679 2025-03-03 22:56:30.679 423777 16214 424231 12774 5 15052 2025-03-22 15:55:58.017 2025-03-22 15:55:58.017 447685 8168 448454 20754 5 15053 2025-03-22 06:18:48.437 2025-03-22 06:18:48.437 447685 8168 447782 9347 4 15054 2025-03-22 05:59:28.635 2025-03-22 05:59:28.635 447685 8168 447772 17116 3 15055 2025-03-22 05:50:55.745 2025-03-22 05:50:55.745 447685 8168 447765 2670 2 15056 2025-03-22 05:35:38.746 2025-03-22 05:35:38.746 447685 8168 447757 9367 1 15057 2025-03-22 15:58:59.701 2025-03-22 15:58:59.701 447685 8168 448458 16149 6 15058 2025-03-22 14:14:36.819 2025-03-22 14:14:36.819 448175 1549 448270 19943 2 15059 2025-03-22 16:21:24.081 2025-03-22 16:21:24.081 448175 1549 448491 21184 4 15060 2025-03-22 14:17:54.862 2025-03-22 14:17:54.862 448175 1549 448275 20871 3 15061 2025-03-22 13:26:35.337 2025-03-22 13:26:35.337 448175 1549 448196 17494 1 15062 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 423956 21418 424161 2529 12 15063 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 423956 21418 424388 5057 12 15064 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 423956 21418 424447 16680 12 15065 2025-03-03 20:17:39.282 2025-03-03 20:17:39.282 423956 21418 424080 21412 7 15066 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 423956 21418 424158 2195 11 15067 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 423956 21418 424311 2513 11 15068 2025-03-03 18:49:58.514 2025-03-03 18:49:58.514 423956 21418 423977 5359 3 15069 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 423956 21418 424149 5725 10 15070 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 423956 21418 424153 16839 10 15071 2025-03-03 18:42:45.855 2025-03-03 18:42:45.855 423956 21418 423971 16747 2 15072 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 423956 21418 424130 21430 9 15073 2025-03-03 19:05:05.634 2025-03-03 19:05:05.634 423956 21418 423990 11073 4 15074 2025-03-03 19:15:36.194 2025-03-03 19:15:36.194 423956 21418 424003 20454 5 15075 2025-03-03 19:32:08.352 2025-03-03 19:32:08.352 423956 21418 424024 20912 6 15076 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 423956 21418 424123 1433 9 15077 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 423956 21418 424323 17411 11 15078 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 423956 21418 424386 1173 11 15079 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 423956 21418 424413 20939 12 15080 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 423956 21418 424186 18608 13 15081 2025-03-03 21:09:30.844 2025-03-03 21:09:30.844 423956 21418 424160 14385 8 15082 2025-03-03 20:36:29.113 2025-03-03 20:36:29.113 423956 21418 424111 3979 8 15083 2025-03-03 18:34:19.846 2025-03-03 18:34:19.846 423956 21418 423958 21833 1 15084 2025-03-06 17:05:21.059 2025-03-06 17:05:21.059 427574 14357 427833 7773 4 15085 2025-03-06 18:13:04.077 2025-03-06 18:13:04.077 427574 14357 427945 7960 5 15086 2025-03-06 16:27:24.285 2025-03-06 16:27:24.285 427574 14357 427787 695 3 15087 2025-03-06 15:45:34.708 2025-03-06 15:45:34.708 427574 14357 427750 17201 2 15088 2025-03-06 15:24:38.93 2025-03-06 15:24:38.93 427574 14357 427722 1124 1 15089 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 428417 695 428644 672 4 15090 2025-03-07 13:21:06.213 2025-03-07 13:21:06.213 428417 695 428619 17011 3 15091 2025-03-07 12:32:36.229 2025-03-07 12:32:36.229 428417 695 428581 11527 2 15092 2025-03-07 12:08:54.288 2025-03-07 12:08:54.288 428417 695 428559 8242 1 15093 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 428417 695 428687 11395 5 15094 2025-03-10 21:27:43.783 2025-03-10 21:27:43.783 432980 669 433194 929 5 15095 2025-03-10 19:08:57.822 2025-03-10 19:08:57.822 432980 669 433041 6202 4 15096 2025-03-10 18:58:01.069 2025-03-10 18:58:01.069 432980 669 433032 15521 2 15097 2025-03-10 18:12:17.266 2025-03-10 18:12:17.266 432980 669 432992 1124 1 15098 2025-03-12 16:37:54.738 2025-03-12 16:37:54.738 432980 669 435387 5112 6 15099 2025-03-13 00:51:56.809 2025-03-13 00:51:56.809 432980 669 435780 679 7 15100 2025-03-10 19:00:29.979 2025-03-10 19:00:29.979 432980 669 433034 18449 3 15101 2025-03-12 11:23:16.783 2025-03-12 11:23:16.783 434226 730 434968 7097 4 15102 2025-03-12 11:55:42.868 2025-03-12 11:55:42.868 434226 730 435008 20781 5 15103 2025-03-11 19:16:32.86 2025-03-11 19:16:32.86 434226 730 434305 16447 3 15104 2025-03-11 18:57:47.32 2025-03-11 18:57:47.32 434226 730 434287 902 2 15105 2025-03-11 17:29:00.112 2025-03-11 17:29:00.112 434226 730 434237 691 1 15106 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437447 12278 437513 12609 5 15107 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437447 12278 437508 8713 4 15108 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437447 12278 437593 19094 13 15109 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437447 12278 437574 5069 12 15110 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 437447 12278 437465 20734 1 15111 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437447 12278 437553 10291 10 15112 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437447 12278 437552 17722 9 15113 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437447 12278 437521 19980 6 15114 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437447 12278 437558 7097 11 15115 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437447 12278 437598 12277 14 15116 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437447 12278 437506 20816 3 15117 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437447 12278 437497 1823 2 15118 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437447 12278 437551 5129 8 15119 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437447 12278 437538 7668 7 15120 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437552 17722 437593 19094 4 15121 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437552 17722 437574 5069 3 15122 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437552 17722 437553 10291 1 15123 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437552 17722 437558 7097 2 15124 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437552 17722 437598 12277 5 15125 2025-03-18 13:11:32.035 2025-03-18 13:11:32.035 441801 20799 442157 2722 5 15126 2025-03-18 13:06:57.606 2025-03-18 13:06:57.606 441801 20799 442148 20187 4 15127 2025-03-18 13:01:30.787 2025-03-18 13:01:30.787 441801 20799 442141 20254 3 15128 2025-03-18 12:57:46.826 2025-03-18 12:57:46.826 441801 20799 442135 16193 2 15129 2025-03-18 09:59:00.133 2025-03-18 09:59:00.133 441801 20799 441803 5708 1 15130 2025-03-19 13:19:15.165 2025-03-19 13:19:15.165 441851 714 443691 12277 4 15131 2025-03-19 14:02:50.362 2025-03-19 14:02:50.362 441851 714 443762 12368 6 15132 2025-03-19 13:54:27.282 2025-03-19 13:54:27.282 441851 714 443746 9333 5 15133 2025-03-19 07:58:29.97 2025-03-19 07:58:29.97 441851 714 443259 5694 3 15134 2025-03-18 10:50:57.112 2025-03-18 10:50:57.112 441851 714 441878 17041 2 15135 2025-03-18 10:41:33.529 2025-03-18 10:41:33.529 441851 714 441862 18735 1 15136 2022-11-08 20:40:33.98 2022-11-08 20:40:33.98 3677 19812 3682 21057 3 15137 2022-11-08 20:31:11.498 2022-11-08 20:31:11.498 3677 19812 3679 8376 1 15138 2022-11-08 21:08:46.441 2022-11-08 21:08:46.441 3677 19812 3689 20381 6 15139 2022-11-08 21:23:25.395 2022-11-08 21:23:25.395 3677 19812 3693 5852 6 15140 2022-11-08 20:36:43.517 2022-11-08 20:36:43.517 3677 19812 3681 6687 2 15141 2022-11-08 20:55:01.071 2022-11-08 20:55:01.071 3677 19812 3687 13361 5 15142 2022-11-08 20:42:36.892 2022-11-08 20:42:36.892 3677 19812 3683 15103 4 15143 2025-03-18 21:02:52.25 2025-03-18 21:02:52.25 442650 2775 442843 1712 5 15144 2025-03-18 20:56:44.844 2025-03-18 20:56:44.844 442650 2775 442834 880 4 15145 2025-03-18 18:21:39.626 2025-03-18 18:21:39.626 442650 2775 442670 4487 1 15146 2025-03-18 20:54:02.509 2025-03-18 20:54:02.509 442650 2775 442828 695 3 15147 2025-03-18 20:51:12.059 2025-03-18 20:51:12.059 442650 2775 442824 4064 2 15148 2025-03-21 18:14:57.367 2025-03-21 18:14:57.367 444786 4474 447253 16447 4 15149 2025-03-21 13:54:17.272 2025-03-21 13:54:17.272 444786 4474 446840 3411 3 15150 2025-03-21 13:15:26.694 2025-03-21 13:15:26.694 444786 4474 446786 750 2 15151 2025-03-20 16:03:03.505 2025-03-20 16:03:03.505 444786 4474 445531 658 1 15152 2025-03-21 16:24:46.058 2025-03-21 16:24:46.058 445709 17148 447128 8870 4 15153 2025-03-21 16:23:19.34 2025-03-21 16:23:19.34 445709 17148 447123 616 4 15154 2025-03-21 16:29:54.642 2025-03-21 16:29:54.642 445709 17148 447136 14503 5 15155 2025-03-21 16:43:58.131 2025-03-21 16:43:58.131 445709 17148 447159 13249 6 15156 2025-03-21 15:36:07.577 2025-03-21 15:36:07.577 445709 17148 447059 11288 3 15157 2025-03-21 16:14:53.349 2025-03-21 16:14:53.349 445709 17148 447102 4323 3 15158 2025-03-21 15:30:20.241 2025-03-21 15:30:20.241 445709 17148 447050 13566 2 15159 2025-03-21 15:05:26.257 2025-03-21 15:05:26.257 445709 17148 447001 11527 1 15160 2025-03-22 14:18:19.868 2025-03-22 14:18:19.868 446055 7913 448279 21214 3 15161 2025-03-20 23:04:32.083 2025-03-20 23:04:32.083 446055 7913 446086 688 1 15162 2025-03-22 21:51:23.47 2025-03-22 21:51:23.47 446055 7913 448795 678 4 15163 2025-03-22 14:16:39.064 2025-03-22 14:16:39.064 446055 7913 448274 9496 2 15164 2025-03-21 12:19:15.802 2025-03-21 12:19:15.802 446651 6471 446686 6361 3 15165 2025-03-21 12:20:35.654 2025-03-21 12:20:35.654 446651 6471 446688 16536 4 15166 2025-03-21 12:17:36.647 2025-03-21 12:17:36.647 446651 6471 446680 1534 2 15167 2025-03-21 12:08:49.144 2025-03-21 12:08:49.144 446651 6471 446661 12245 1 15168 2025-03-21 16:21:06.454 2025-03-21 16:21:06.454 446988 6160 447118 17201 4 15169 2025-03-21 15:17:17.086 2025-03-21 15:17:17.086 446988 6160 447027 10016 3 15170 2025-03-21 15:12:02.07 2025-03-21 15:12:02.07 446988 6160 447016 4323 2 15171 2025-03-21 15:07:48.743 2025-03-21 15:07:48.743 446988 6160 447006 1236 1 15172 2025-03-23 07:01:39.474 2025-03-23 07:01:39.474 449053 21040 449075 21369 2 15173 2025-03-23 06:28:38.247 2025-03-23 06:28:38.247 449053 21040 449057 9177 1 15174 2025-03-23 07:07:37.237 2025-03-23 07:07:37.237 449053 21040 449079 7119 4 15175 2025-03-23 07:31:56.187 2025-03-23 07:31:56.187 449053 21040 449103 19777 5 15176 2025-03-23 07:02:38.382 2025-03-23 07:02:38.382 449053 21040 449076 674 3 15177 2025-03-24 13:57:58.107 2025-03-24 13:57:58.107 450659 1801 451328 5646 7 15178 2025-03-24 06:37:37.063 2025-03-24 06:37:37.063 450659 1801 450672 1352 4 15179 2025-03-24 06:27:30.703 2025-03-24 06:27:30.703 450659 1801 450664 618 1 15180 2025-03-24 10:52:26.057 2025-03-24 10:52:26.057 450659 1801 451014 910 5 15181 2025-03-24 06:32:45.136 2025-03-24 06:32:45.136 450659 1801 450670 2513 3 15182 2025-03-24 10:54:10.956 2025-03-24 10:54:10.956 450659 1801 451017 21539 6 15183 2025-03-24 06:29:38.054 2025-03-24 06:29:38.054 450659 1801 450666 13169 2 15184 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 453420 2293 455286 11678 4 15185 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 453420 2293 454254 5725 3 15186 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 453420 2293 453900 9336 1 15187 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 453420 2293 455302 20511 5 15188 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 453420 2293 453968 19332 2 15189 2025-03-27 13:23:15.331 2025-03-27 13:23:15.331 455855 3392 456113 19581 1 15190 2025-03-27 22:41:43.787 2025-03-27 22:41:43.787 455855 3392 456831 4084 5 15191 2025-03-27 13:26:04.922 2025-03-27 13:26:04.922 455855 3392 456117 9109 2 15192 2025-03-27 22:22:26.982 2025-03-27 22:22:26.982 455855 3392 456815 1002 4 15193 2025-03-27 21:37:52.759 2025-03-27 21:37:52.759 455855 3392 456790 1618 3 15194 2025-03-29 09:03:52.837 2025-03-29 09:03:52.837 458368 1638 458420 12346 5 15195 2025-03-29 08:59:48.122 2025-03-29 08:59:48.122 458368 1638 458416 15474 4 15196 2025-03-29 08:50:46.032 2025-03-29 08:50:46.032 458368 1638 458397 14381 2 15197 2025-03-29 08:33:23.598 2025-03-29 08:33:23.598 458368 1638 458378 10016 1 15198 2025-03-29 08:55:03.355 2025-03-29 08:55:03.355 458368 1638 458408 16788 3 15199 2025-02-23 14:15:50.355 2025-02-23 14:15:50.355 413592 16667 413889 11527 4 15200 2025-03-19 12:59:17.627 2025-03-19 12:59:17.627 413592 16667 443662 19924 6 15201 2025-02-23 14:19:27.294 2025-02-23 14:19:27.294 413592 16667 413897 848 5 15202 2025-02-23 12:17:30.512 2025-02-23 12:17:30.512 413592 16667 413647 981 3 15203 2025-02-23 12:13:28.052 2025-02-23 12:13:28.052 413592 16667 413640 1030 2 15204 2025-02-23 11:25:43.745 2025-02-23 11:25:43.745 413592 16667 413595 21090 1 15205 2022-09-11 16:02:45.105 2022-09-11 16:02:45.105 1250 8664 1317 1389 2 15206 2022-09-11 18:23:41.483 2022-09-11 18:23:41.483 1250 8664 1322 13198 4 15207 2022-09-11 18:26:53.62 2022-09-11 18:26:53.62 1250 8664 1323 5761 5 15208 2022-09-11 17:14:14.352 2022-09-11 17:14:14.352 1250 8664 1319 674 3 15209 2022-09-08 18:36:46.401 2022-09-08 18:36:46.401 1250 8664 1253 16351 1 15210 2024-06-23 21:30:26.792 2024-06-23 21:30:26.792 188390 844 188673 1658 3 15211 2024-06-23 21:24:41.45 2024-06-23 21:24:41.45 188390 844 188670 20691 2 15212 2024-06-24 00:37:00.985 2024-06-24 00:37:00.985 188390 844 188714 20434 5 15213 2024-06-23 11:08:54.501 2024-06-23 11:08:54.501 188390 844 188396 13198 1 15214 2024-06-23 21:37:20.3 2024-06-23 21:37:20.3 188390 844 188675 7966 4 15215 2024-11-25 08:19:14.956 2024-11-25 08:19:14.956 306832 20701 307592 18306 3 15216 2024-11-25 07:56:01.979 2024-11-25 07:56:01.979 306832 20701 307574 17172 1 15217 2024-11-25 07:58:10.624 2024-11-25 07:58:10.624 306832 20701 307576 16598 2 15218 2024-11-25 08:27:14.94 2024-11-25 08:27:14.94 306832 20701 307598 5527 5 15219 2024-11-25 08:21:47.641 2024-11-25 08:21:47.641 306832 20701 307595 19459 4 15220 2024-11-25 15:43:19.372 2024-11-25 15:43:19.372 307742 18177 308086 9084 5 15221 2024-11-25 15:20:14.822 2024-11-25 15:20:14.822 307742 18177 308046 4035 2 15222 2024-11-25 15:24:12.087 2024-11-25 15:24:12.087 307742 18177 308051 21815 4 15223 2024-11-25 15:22:06.845 2024-11-25 15:22:06.845 307742 18177 308049 2335 3 15224 2024-11-25 14:00:22.477 2024-11-25 14:00:22.477 307742 18177 307953 1438 1 15225 2025-03-03 23:27:07.683 2025-03-03 23:27:07.683 394251 17321 424256 20778 6 15226 2025-03-03 23:08:46.891 2025-03-03 23:08:46.891 394251 17321 424236 15488 5 15227 2025-03-03 23:04:17.804 2025-03-03 23:04:17.804 394251 17321 424233 18468 4 15228 2025-03-03 22:10:48.293 2025-03-03 22:10:48.293 394251 17321 424214 15588 3 15229 2025-03-03 23:18:46.062 2025-03-03 23:18:46.062 394251 17321 424243 12277 6 15230 2025-03-03 20:49:19.703 2025-03-03 20:49:19.703 394251 17321 424131 8570 2 15231 2025-02-11 23:15:25.112 2025-02-11 23:15:25.112 394251 17321 400201 5597 1 15232 2025-02-15 21:27:58.743 2025-02-15 21:27:58.743 401520 618 404423 732 6 15233 2025-02-13 14:42:25.101 2025-02-13 14:42:25.101 401520 618 402078 14195 2 15234 2025-02-13 14:32:55.199 2025-02-13 14:32:55.199 401520 618 402058 21060 1 15235 2025-02-14 01:34:22.491 2025-02-14 01:34:22.491 401520 618 402754 11522 4 15236 2025-02-14 00:08:24.289 2025-02-14 00:08:24.289 401520 618 402727 7746 3 15237 2025-02-15 21:07:23.285 2025-02-15 21:07:23.285 401520 618 404410 20599 5 15238 2025-02-14 10:19:39.871 2025-02-14 10:19:39.871 402896 2529 402980 21269 2 15239 2025-02-14 13:58:21.315 2025-02-14 13:58:21.315 402896 2529 403165 15463 5 15240 2025-02-14 13:30:40.953 2025-02-14 13:30:40.953 402896 2529 403137 9109 4 15241 2025-02-14 10:30:26.009 2025-02-14 10:30:26.009 402896 2529 402991 5306 3 15242 2025-02-14 14:05:39.881 2025-02-14 14:05:39.881 402896 2529 403171 738 6 15243 2025-02-14 08:47:24.885 2025-02-14 08:47:24.885 402896 2529 402903 667 1 15244 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403778 683 403788 19576 2 15245 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403778 683 403809 8416 6 15246 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 403778 683 403779 1092 1 15247 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403778 683 403798 20062 3 15248 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403778 683 403806 18274 4 15249 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403778 683 403808 10690 5 15250 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403778 683 403813 11073 7 15251 2025-02-15 09:49:53.592 2025-02-15 09:49:53.592 403857 4474 403868 11091 1 15252 2025-02-15 11:30:02.261 2025-02-15 11:30:02.261 403857 4474 403922 19018 5 15253 2025-02-15 11:33:00.453 2025-02-15 11:33:00.453 403857 4474 403926 640 6 15254 2025-02-15 11:35:19.418 2025-02-15 11:35:19.418 403857 4474 403927 21400 7 15255 2025-02-15 11:41:15.703 2025-02-15 11:41:15.703 403857 4474 403934 21222 8 15256 2025-02-15 11:42:12.94 2025-02-15 11:42:12.94 403857 4474 403937 997 9 15257 2025-02-15 11:44:43.466 2025-02-15 11:44:43.466 403857 4474 403941 21356 10 15258 2025-02-15 11:50:37.764 2025-02-15 11:50:37.764 403857 4474 403948 9421 11 15259 2025-02-15 11:27:56.25 2025-02-15 11:27:56.25 403857 4474 403918 18865 3 15260 2025-02-15 09:50:53.47 2025-02-15 09:50:53.47 403857 4474 403869 2056 2 15261 2025-02-15 11:29:01.526 2025-02-15 11:29:01.526 403857 4474 403919 13763 4 15262 2025-02-18 09:55:50.123 2025-02-18 09:55:50.123 407586 4345 407702 4633 6 15263 2025-02-18 09:38:48.437 2025-02-18 09:38:48.437 407586 4345 407671 8570 3 15264 2025-02-18 09:42:09.408 2025-02-18 09:42:09.408 407586 4345 407678 11165 5 15265 2025-02-18 09:33:20.657 2025-02-18 09:33:20.657 407586 4345 407668 21430 2 15266 2025-02-18 09:39:29.886 2025-02-18 09:39:29.886 407586 4345 407673 6594 4 15267 2025-02-18 09:27:19.343 2025-02-18 09:27:19.343 407586 4345 407663 5377 1 15268 2025-02-18 14:01:12.001 2025-02-18 14:01:12.001 407954 17237 407979 11866 4 15269 2025-02-18 13:55:19.991 2025-02-18 13:55:19.991 407954 17237 407969 660 2 15270 2025-02-19 01:07:53.931 2025-02-19 01:07:53.931 407954 17237 408655 18526 5 15271 2025-02-18 13:49:06.242 2025-02-18 13:49:06.242 407954 17237 407957 8985 1 15272 2025-02-19 01:21:44.02 2025-02-19 01:21:44.02 407954 17237 408657 1122 6 15273 2025-02-18 13:57:26.953 2025-02-18 13:57:26.953 407954 17237 407971 21518 3 15274 2025-02-23 14:15:50.355 2025-02-23 14:15:50.355 413595 21090 413889 11527 3 15275 2025-03-19 12:59:17.627 2025-03-19 12:59:17.627 413595 21090 443662 19924 5 15276 2025-02-23 14:19:27.294 2025-02-23 14:19:27.294 413595 21090 413897 848 4 15277 2025-02-23 12:17:30.512 2025-02-23 12:17:30.512 413595 21090 413647 981 2 15278 2025-02-23 12:13:28.052 2025-02-23 12:13:28.052 413595 21090 413640 1030 1 15279 2025-02-24 15:08:58.01 2025-02-24 15:08:58.01 415098 21494 415166 21672 6 15280 2025-02-24 14:50:10.27 2025-02-24 14:50:10.27 415098 21494 415140 18526 4 15281 2025-02-24 14:23:51.978 2025-02-24 14:23:51.978 415098 21494 415107 1802 2 15282 2025-02-24 15:05:52.833 2025-02-24 15:05:52.833 415098 21494 415162 16154 5 15283 2025-02-24 14:22:28.314 2025-02-24 14:22:28.314 415098 21494 415104 5646 1 15284 2025-02-24 14:44:45.046 2025-02-24 14:44:45.046 415098 21494 415134 18309 3 15285 2025-02-25 18:19:43.329 2025-02-25 18:19:43.329 416288 15941 416632 18174 4 15286 2025-02-25 17:19:22.447 2025-02-25 17:19:22.447 416288 15941 416551 10398 1 15287 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416288 15941 416938 11263 10 15288 2025-02-25 23:30:50.251 2025-02-25 23:30:50.251 416288 15941 416934 17533 8 15289 2025-02-25 18:01:47.076 2025-02-25 18:01:47.076 416288 15941 416605 8173 3 15290 2025-02-25 22:41:34.224 2025-02-25 22:41:34.224 416288 15941 416881 16830 6 15291 2025-02-25 23:15:32.556 2025-02-25 23:15:32.556 416288 15941 416929 19821 7 15292 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416288 15941 416939 7773 11 15293 2025-02-25 22:30:12.229 2025-02-25 22:30:12.229 416288 15941 416869 2151 5 15294 2025-02-25 17:43:40.876 2025-02-25 17:43:40.876 416288 15941 416578 811 2 15295 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416288 15941 416935 21416 9 15296 2025-03-21 16:21:06.454 2025-03-21 16:21:06.454 446927 10981 447118 17201 6 15297 2025-03-21 15:00:34.62 2025-03-21 15:00:34.62 446927 10981 446988 6160 2 15298 2025-03-21 14:50:31.825 2025-03-21 14:50:31.825 446927 10981 446961 627 1 15299 2025-03-21 15:17:17.086 2025-03-21 15:17:17.086 446927 10981 447027 10016 5 15300 2025-03-21 15:12:02.07 2025-03-21 15:12:02.07 446927 10981 447016 4323 4 15301 2025-03-21 15:07:48.743 2025-03-21 15:07:48.743 446927 10981 447006 1236 3 15302 2025-03-01 13:13:29.613 2025-03-01 13:13:29.613 420987 782 421167 15690 3 15303 2025-03-01 13:27:42.041 2025-03-01 13:27:42.041 420987 782 421180 18772 6 15304 2025-03-01 13:18:41.453 2025-03-01 13:18:41.453 420987 782 421172 19463 4 15305 2025-03-01 13:10:47.677 2025-03-01 13:10:47.677 420987 782 421163 5776 2 15306 2025-03-01 13:22:02.128 2025-03-01 13:22:02.128 420987 782 421176 21139 5 15307 2025-03-01 13:02:25.387 2025-03-01 13:02:25.387 420987 782 421157 9354 1 15308 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 423899 14774 424161 2529 13 15309 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 423899 14774 424388 5057 13 15310 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 423899 14774 424447 16680 13 15311 2025-03-03 20:17:39.282 2025-03-03 20:17:39.282 423899 14774 424080 21412 8 15312 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 423899 14774 424158 2195 12 15313 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 423899 14774 424311 2513 12 15314 2025-03-03 18:49:58.514 2025-03-03 18:49:58.514 423899 14774 423977 5359 4 15315 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 423899 14774 424149 5725 11 15316 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 423899 14774 424153 16839 11 15317 2025-03-03 18:42:45.855 2025-03-03 18:42:45.855 423899 14774 423971 16747 3 15318 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 423899 14774 424130 21430 10 15319 2025-03-03 18:30:18.078 2025-03-03 18:30:18.078 423899 14774 423956 21418 1 15320 2025-03-03 19:05:05.634 2025-03-03 19:05:05.634 423899 14774 423990 11073 5 15321 2025-03-03 19:15:36.194 2025-03-03 19:15:36.194 423899 14774 424003 20454 6 15322 2025-03-03 19:32:08.352 2025-03-03 19:32:08.352 423899 14774 424024 20912 7 15323 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 423899 14774 424123 1433 10 15324 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 423899 14774 424323 17411 12 15325 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 423899 14774 424386 1173 12 15326 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 423899 14774 424413 20939 13 15327 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 423899 14774 424186 18608 14 15328 2025-03-03 21:09:30.844 2025-03-03 21:09:30.844 423899 14774 424160 14385 9 15329 2025-03-03 20:36:29.113 2025-03-03 20:36:29.113 423899 14774 424111 3979 9 15330 2025-03-03 18:34:19.846 2025-03-03 18:34:19.846 423899 14774 423958 21833 2 15331 2025-03-06 17:05:21.059 2025-03-06 17:05:21.059 427556 21218 427833 7773 5 15332 2025-03-06 18:13:04.077 2025-03-06 18:13:04.077 427556 21218 427945 7960 6 15333 2025-03-06 16:27:24.285 2025-03-06 16:27:24.285 427556 21218 427787 695 4 15334 2025-03-06 15:45:34.708 2025-03-06 15:45:34.708 427556 21218 427750 17201 3 15335 2025-03-06 15:24:38.93 2025-03-06 15:24:38.93 427556 21218 427722 1124 2 15336 2025-03-06 13:55:38.125 2025-03-06 13:55:38.125 427556 21218 427574 14357 1 15337 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 428354 802 428644 672 5 15338 2025-03-07 13:21:06.213 2025-03-07 13:21:06.213 428354 802 428619 17011 4 15339 2025-03-07 12:32:36.229 2025-03-07 12:32:36.229 428354 802 428581 11527 3 15340 2025-03-07 12:08:54.288 2025-03-07 12:08:54.288 428354 802 428559 8242 2 15341 2025-03-07 09:02:28.716 2025-03-07 09:02:28.716 428354 802 428417 695 1 15342 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 428354 802 428687 11395 6 15343 2025-03-07 13:55:42.807 2025-03-07 13:55:42.807 428382 746 428674 19524 1 15344 2025-03-09 00:32:53.818 2025-03-09 00:32:53.818 428382 746 430236 12976 5 15345 2025-03-09 01:57:32.661 2025-03-09 01:57:32.661 428382 746 430263 9334 6 15346 2025-03-09 00:09:41.613 2025-03-09 00:09:41.613 428382 746 430220 19759 4 15347 2025-03-08 14:49:05.509 2025-03-08 14:49:05.509 428382 746 429725 13406 3 15348 2025-03-08 04:02:26.739 2025-03-08 04:02:26.739 428382 746 429258 21090 2 15349 2025-03-11 05:33:44.323 2025-03-11 05:33:44.323 430641 19375 433457 21427 5 15350 2025-03-09 13:20:23.381 2025-03-09 13:20:23.381 430641 19375 430863 14791 4 15351 2025-03-09 11:46:43.909 2025-03-09 11:46:43.909 430641 19375 430674 20291 2 15352 2025-03-09 13:01:09.772 2025-03-09 13:01:09.772 430641 19375 430836 16842 3 15353 2025-03-09 11:44:51.024 2025-03-09 11:44:51.024 430641 19375 430670 4084 1 15354 2025-03-12 11:23:16.783 2025-03-12 11:23:16.783 434091 20969 434968 7097 5 15355 2025-03-12 11:55:42.868 2025-03-12 11:55:42.868 434091 20969 435008 20781 6 15356 2025-03-11 19:16:32.86 2025-03-11 19:16:32.86 434091 20969 434305 16447 4 15357 2025-03-11 18:57:47.32 2025-03-11 18:57:47.32 434091 20969 434287 902 3 15358 2025-03-11 17:29:00.112 2025-03-11 17:29:00.112 434091 20969 434237 691 2 15359 2025-03-11 17:19:29.627 2025-03-11 17:19:29.627 434091 20969 434226 730 1 15360 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437432 660 437513 12609 6 15361 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437432 660 437508 8713 5 15362 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437432 660 437593 19094 14 15363 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437432 660 437574 5069 13 15364 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 437432 660 437465 20734 2 15365 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437432 660 437553 10291 11 15366 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437432 660 437552 17722 10 15367 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437432 660 437521 19980 7 15368 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437432 660 437558 7097 12 15369 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437432 660 437598 12277 15 15370 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437432 660 437506 20816 4 15371 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437432 660 437497 1823 3 15372 2025-03-14 14:24:43.157 2025-03-14 14:24:43.157 437432 660 437447 12278 1 15373 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437432 660 437551 5129 9 15374 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437432 660 437538 7668 8 15375 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437551 5129 437593 19094 5 15376 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437551 5129 437574 5069 4 15377 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437551 5129 437553 10291 2 15378 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437551 5129 437552 17722 1 15379 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437551 5129 437558 7097 3 15380 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437551 5129 437598 12277 6 15381 2025-03-18 21:02:52.25 2025-03-18 21:02:52.25 442648 21254 442843 1712 6 15382 2025-03-18 20:56:44.844 2025-03-18 20:56:44.844 442648 21254 442834 880 5 15383 2025-03-18 18:21:39.626 2025-03-18 18:21:39.626 442648 21254 442670 4487 2 15384 2025-03-18 20:54:02.509 2025-03-18 20:54:02.509 442648 21254 442828 695 4 15385 2025-03-18 20:51:12.059 2025-03-18 20:51:12.059 442648 21254 442824 4064 3 15386 2025-03-18 18:09:57.293 2025-03-18 18:09:57.293 442648 21254 442650 2775 1 15387 2025-03-20 08:52:32.285 2025-03-20 08:52:32.285 443861 14774 444786 4474 1 15388 2025-03-21 18:14:57.367 2025-03-21 18:14:57.367 443861 14774 447253 16447 5 15389 2025-03-21 13:54:17.272 2025-03-21 13:54:17.272 443861 14774 446840 3411 4 15390 2025-03-21 13:15:26.694 2025-03-21 13:15:26.694 443861 14774 446786 750 3 15391 2025-03-20 16:03:03.505 2025-03-20 16:03:03.505 443861 14774 445531 658 2 15392 2025-03-21 16:24:46.058 2025-03-21 16:24:46.058 445701 21044 447128 8870 5 15393 2025-03-21 16:23:19.34 2025-03-21 16:23:19.34 445701 21044 447123 616 5 15394 2025-03-21 16:29:54.642 2025-03-21 16:29:54.642 445701 21044 447136 14503 6 15395 2025-03-21 16:43:58.131 2025-03-21 16:43:58.131 445701 21044 447159 13249 7 15396 2025-03-21 15:36:07.577 2025-03-21 15:36:07.577 445701 21044 447059 11288 4 15397 2025-03-21 16:14:53.349 2025-03-21 16:14:53.349 445701 21044 447102 4323 4 15398 2025-03-21 15:30:20.241 2025-03-21 15:30:20.241 445701 21044 447050 13566 3 15399 2025-03-21 15:05:26.257 2025-03-21 15:05:26.257 445701 21044 447001 11527 2 15400 2025-03-20 17:37:41.818 2025-03-20 17:37:41.818 445701 21044 445709 17148 1 15401 2025-03-22 14:18:19.868 2025-03-22 14:18:19.868 445964 1261 448279 21214 4 15402 2025-03-20 23:04:32.083 2025-03-20 23:04:32.083 445964 1261 446086 688 2 15403 2025-03-20 22:19:45.01 2025-03-20 22:19:45.01 445964 1261 446055 7913 1 15404 2025-03-22 21:51:23.47 2025-03-22 21:51:23.47 445964 1261 448795 678 5 15405 2025-03-22 14:16:39.064 2025-03-22 14:16:39.064 445964 1261 448274 9496 3 15406 2025-03-21 12:19:15.802 2025-03-21 12:19:15.802 446641 9365 446686 6361 4 15407 2025-03-21 12:20:35.654 2025-03-21 12:20:35.654 446641 9365 446688 16536 5 15408 2025-03-21 12:17:36.647 2025-03-21 12:17:36.647 446641 9365 446680 1534 3 15409 2025-03-21 12:08:49.144 2025-03-21 12:08:49.144 446641 9365 446661 12245 2 15410 2025-03-21 12:01:39.33 2025-03-21 12:01:39.33 446641 9365 446651 6471 1 15411 2025-03-21 16:21:06.454 2025-03-21 16:21:06.454 446961 627 447118 17201 5 15412 2025-03-21 15:00:34.62 2025-03-21 15:00:34.62 446961 627 446988 6160 1 15413 2025-03-21 15:17:17.086 2025-03-21 15:17:17.086 446961 627 447027 10016 4 15414 2025-03-21 15:12:02.07 2025-03-21 15:12:02.07 446961 627 447016 4323 3 15415 2025-03-21 15:07:48.743 2025-03-21 15:07:48.743 446961 627 447006 1236 2 15416 2025-03-22 15:55:58.017 2025-03-22 15:55:58.017 447661 777 448454 20754 6 15417 2025-03-22 06:18:48.437 2025-03-22 06:18:48.437 447661 777 447782 9347 5 15418 2025-03-22 05:59:28.635 2025-03-22 05:59:28.635 447661 777 447772 17116 4 15419 2025-03-22 05:50:55.745 2025-03-22 05:50:55.745 447661 777 447765 2670 3 15420 2025-03-22 05:35:38.746 2025-03-22 05:35:38.746 447661 777 447757 9367 2 15421 2025-03-22 15:58:59.701 2025-03-22 15:58:59.701 447661 777 448458 16149 7 15422 2025-03-22 02:41:22.8 2025-03-22 02:41:22.8 447661 777 447685 8168 1 15423 2025-03-22 14:14:36.819 2025-03-22 14:14:36.819 448012 21405 448270 19943 3 15424 2025-03-22 16:21:24.081 2025-03-22 16:21:24.081 448012 21405 448491 21184 5 15425 2025-03-22 14:17:54.862 2025-03-22 14:17:54.862 448012 21405 448275 20871 4 15426 2025-03-22 13:26:35.337 2025-03-22 13:26:35.337 448012 21405 448196 17494 2 15427 2025-03-22 13:01:11.051 2025-03-22 13:01:11.051 448012 21405 448175 1549 1 15428 2025-03-21 16:24:46.058 2025-03-21 16:24:46.058 445696 20811 447128 8870 6 15429 2025-03-21 16:23:19.34 2025-03-21 16:23:19.34 445696 20811 447123 616 6 15430 2025-03-21 16:29:54.642 2025-03-21 16:29:54.642 445696 20811 447136 14503 7 15431 2025-03-20 17:32:24.964 2025-03-20 17:32:24.964 445696 20811 445701 21044 1 15432 2025-03-21 16:43:58.131 2025-03-21 16:43:58.131 445696 20811 447159 13249 8 15433 2025-03-21 15:36:07.577 2025-03-21 15:36:07.577 445696 20811 447059 11288 5 15434 2025-03-21 16:14:53.349 2025-03-21 16:14:53.349 445696 20811 447102 4323 5 15435 2025-03-21 15:30:20.241 2025-03-21 15:30:20.241 445696 20811 447050 13566 4 15436 2025-03-21 15:05:26.257 2025-03-21 15:05:26.257 445696 20811 447001 11527 3 15437 2025-03-20 17:37:41.818 2025-03-20 17:37:41.818 445696 20811 445709 17148 2 15438 2025-03-21 12:19:15.802 2025-03-21 12:19:15.802 446635 20511 446686 6361 5 15439 2025-03-21 12:20:35.654 2025-03-21 12:20:35.654 446635 20511 446688 16536 6 15440 2025-03-21 12:17:36.647 2025-03-21 12:17:36.647 446635 20511 446680 1534 4 15441 2025-03-21 12:08:49.144 2025-03-21 12:08:49.144 446635 20511 446661 12245 3 15442 2025-03-21 12:01:39.33 2025-03-21 12:01:39.33 446635 20511 446651 6471 2 15443 2025-03-21 11:49:50.837 2025-03-21 11:49:50.837 446635 20511 446641 9365 1 15444 2025-02-18 14:01:12.001 2025-02-18 14:01:12.001 407380 17209 407979 11866 7 15445 2025-02-18 13:55:19.991 2025-02-18 13:55:19.991 407380 17209 407969 660 5 15446 2025-02-19 01:07:53.931 2025-02-19 01:07:53.931 407380 17209 408655 18526 8 15447 2025-02-18 13:49:06.242 2025-02-18 13:49:06.242 407380 17209 407957 8985 4 15448 2025-02-18 03:50:48.764 2025-02-18 03:50:48.764 407380 17209 407469 20911 1 15449 2025-02-18 13:34:44.748 2025-02-18 13:34:44.748 407380 17209 407944 4083 2 15450 2025-02-19 01:21:44.02 2025-02-19 01:21:44.02 407380 17209 408657 1122 9 15451 2025-02-18 13:57:26.953 2025-02-18 13:57:26.953 407380 17209 407971 21518 6 15452 2025-02-18 13:47:52.065 2025-02-18 13:47:52.065 407380 17209 407954 17237 3 15453 2025-03-24 13:57:58.107 2025-03-24 13:57:58.107 450652 21672 451328 5646 8 15454 2025-03-24 06:37:37.063 2025-03-24 06:37:37.063 450652 21672 450672 1352 5 15455 2025-03-24 06:27:30.703 2025-03-24 06:27:30.703 450652 21672 450664 618 2 15456 2025-03-24 10:52:26.057 2025-03-24 10:52:26.057 450652 21672 451014 910 6 15457 2025-03-24 06:32:45.136 2025-03-24 06:32:45.136 450652 21672 450670 2513 4 15458 2025-03-24 10:54:10.956 2025-03-24 10:54:10.956 450652 21672 451017 21539 7 15459 2025-03-24 06:29:38.054 2025-03-24 06:29:38.054 450652 21672 450666 13169 3 15460 2025-03-24 06:22:43.394 2025-03-24 06:22:43.394 450652 21672 450659 1801 1 15461 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 452856 2088 455286 11678 5 15462 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 452856 2088 454254 5725 4 15463 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 452856 2088 453900 9336 2 15464 2025-03-25 18:58:25.208 2025-03-25 18:58:25.208 452856 2088 453420 2293 1 15465 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 452856 2088 455302 20511 6 15466 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 452856 2088 453968 19332 3 15467 2025-03-29 09:03:52.837 2025-03-29 09:03:52.837 454691 1647 458420 12346 6 15468 2025-03-29 08:59:48.122 2025-03-29 08:59:48.122 454691 1647 458416 15474 5 15469 2025-03-29 08:50:46.032 2025-03-29 08:50:46.032 454691 1647 458397 14381 3 15470 2025-03-29 08:33:23.598 2025-03-29 08:33:23.598 454691 1647 458378 10016 2 15471 2025-03-29 08:55:03.355 2025-03-29 08:55:03.355 454691 1647 458408 16788 4 15472 2025-03-29 08:25:37.102 2025-03-29 08:25:37.102 454691 1647 458368 1638 1 15473 2025-03-27 13:23:15.331 2025-03-27 13:23:15.331 455521 641 456113 19581 2 15474 2025-03-27 11:19:50.124 2025-03-27 11:19:50.124 455521 641 455855 3392 1 15475 2025-03-27 22:41:43.787 2025-03-27 22:41:43.787 455521 641 456831 4084 6 15476 2025-03-27 13:26:04.922 2025-03-27 13:26:04.922 455521 641 456117 9109 3 15477 2025-03-27 22:22:26.982 2025-03-27 22:22:26.982 455521 641 456815 1002 5 15478 2025-03-27 21:37:52.759 2025-03-27 21:37:52.759 455521 641 456790 1618 4 15479 2024-06-23 21:30:26.792 2024-06-23 21:30:26.792 188387 18005 188673 1658 4 15480 2024-06-23 21:24:41.45 2024-06-23 21:24:41.45 188387 18005 188670 20691 3 15481 2024-06-24 00:37:00.985 2024-06-24 00:37:00.985 188387 18005 188714 20434 6 15482 2024-06-23 11:08:54.501 2024-06-23 11:08:54.501 188387 18005 188396 13198 2 15483 2024-06-23 21:37:20.3 2024-06-23 21:37:20.3 188387 18005 188675 7966 5 15484 2024-06-23 10:59:38.197 2024-06-23 10:59:38.197 188387 18005 188390 844 1 15485 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 336322 19668 455286 11678 6 15486 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 336322 19668 454254 5725 5 15487 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 336322 19668 453900 9336 3 15488 2025-03-25 14:21:50.545 2025-03-25 14:21:50.545 336322 19668 452856 2088 1 15489 2025-03-25 18:58:25.208 2025-03-25 18:58:25.208 336322 19668 453420 2293 2 15490 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 336322 19668 455302 20511 7 15491 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 336322 19668 453968 19332 4 15492 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403750 21405 403788 19576 11 15493 2025-02-15 07:50:34.771 2025-02-15 07:50:34.771 403750 21405 403773 7966 7 15494 2025-02-15 07:10:48.731 2025-02-15 07:10:48.731 403750 21405 403754 20956 1 15495 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403750 21405 403809 8416 15 15496 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 403750 21405 403779 1092 10 15497 2025-02-15 07:25:43.357 2025-02-15 07:25:43.357 403750 21405 403762 782 3 15498 2025-02-15 07:11:20.34 2025-02-15 07:11:20.34 403750 21405 403755 9350 2 15499 2025-02-15 07:34:24.554 2025-02-15 07:34:24.554 403750 21405 403765 17226 4 15500 2025-02-15 07:46:48.479 2025-02-15 07:46:48.479 403750 21405 403772 19446 6 15501 2025-02-15 07:52:12.57 2025-02-15 07:52:12.57 403750 21405 403776 20280 8 15502 2025-02-15 07:52:29.84 2025-02-15 07:52:29.84 403750 21405 403778 683 9 15503 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403750 21405 403798 20062 12 15504 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403750 21405 403806 18274 13 15505 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403750 21405 403808 10690 14 15506 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403750 21405 403813 11073 16 15507 2025-02-15 07:45:45.501 2025-02-15 07:45:45.501 403750 21405 403771 17218 5 15508 2025-02-15 21:27:58.743 2025-02-15 21:27:58.743 401403 2829 404423 732 7 15509 2025-02-13 14:42:25.101 2025-02-13 14:42:25.101 401403 2829 402078 14195 3 15510 2025-02-13 14:32:55.199 2025-02-13 14:32:55.199 401403 2829 402058 21060 2 15511 2025-02-13 05:25:56.141 2025-02-13 05:25:56.141 401403 2829 401520 618 1 15512 2025-02-14 01:34:22.491 2025-02-14 01:34:22.491 401403 2829 402754 11522 5 15513 2025-02-14 00:08:24.289 2025-02-14 00:08:24.289 401403 2829 402727 7746 4 15514 2025-02-15 21:07:23.285 2025-02-15 21:07:23.285 401403 2829 404410 20599 6 15515 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403776 20280 403788 19576 3 15516 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403776 20280 403809 8416 7 15517 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 403776 20280 403779 1092 2 15518 2025-02-15 07:52:29.84 2025-02-15 07:52:29.84 403776 20280 403778 683 1 15519 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403776 20280 403798 20062 4 15520 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403776 20280 403806 18274 5 15521 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403776 20280 403808 10690 6 15522 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403776 20280 403813 11073 8 15523 2025-02-18 09:55:50.123 2025-02-18 09:55:50.123 407583 2322 407702 4633 7 15524 2025-02-18 09:38:48.437 2025-02-18 09:38:48.437 407583 2322 407671 8570 4 15525 2025-02-18 08:06:03.999 2025-02-18 08:06:03.999 407583 2322 407586 4345 1 15526 2025-02-18 09:42:09.408 2025-02-18 09:42:09.408 407583 2322 407678 11165 6 15527 2025-02-18 09:33:20.657 2025-02-18 09:33:20.657 407583 2322 407668 21430 3 15528 2025-02-18 09:39:29.886 2025-02-18 09:39:29.886 407583 2322 407673 6594 5 15529 2025-02-18 09:27:19.343 2025-02-18 09:27:19.343 407583 2322 407663 5377 2 15530 2025-02-25 18:19:43.329 2025-02-25 18:19:43.329 416253 795 416632 18174 5 15531 2025-02-25 17:19:22.447 2025-02-25 17:19:22.447 416253 795 416551 10398 2 15532 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416253 795 416938 11263 11 15533 2025-02-25 23:30:50.251 2025-02-25 23:30:50.251 416253 795 416934 17533 9 15534 2025-02-25 18:01:47.076 2025-02-25 18:01:47.076 416253 795 416605 8173 4 15535 2025-02-25 22:41:34.224 2025-02-25 22:41:34.224 416253 795 416881 16830 7 15536 2025-02-25 23:15:32.556 2025-02-25 23:15:32.556 416253 795 416929 19821 8 15537 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416253 795 416939 7773 12 15538 2025-02-25 22:30:12.229 2025-02-25 22:30:12.229 416253 795 416869 2151 6 15539 2025-02-25 17:43:40.876 2025-02-25 17:43:40.876 416253 795 416578 811 3 15540 2025-02-25 14:22:17.81 2025-02-25 14:22:17.81 416253 795 416288 15941 1 15541 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416253 795 416935 21416 10 15542 2025-03-03 21:12:17.667 2025-03-03 21:12:17.667 423689 19829 424161 2529 14 15543 2025-03-04 03:38:30.915 2025-03-04 03:38:30.915 423689 19829 424388 5057 14 15544 2025-03-04 05:40:20.651 2025-03-04 05:40:20.651 423689 19829 424447 16680 14 15545 2025-03-03 20:17:39.282 2025-03-03 20:17:39.282 423689 19829 424080 21412 9 15546 2025-03-03 21:05:49.396 2025-03-03 21:05:49.396 423689 19829 424158 2195 13 15547 2025-03-04 00:36:16.75 2025-03-04 00:36:16.75 423689 19829 424311 2513 13 15548 2025-03-03 18:49:58.514 2025-03-03 18:49:58.514 423689 19829 423977 5359 5 15549 2025-03-03 21:00:31.368 2025-03-03 21:00:31.368 423689 19829 424149 5725 12 15550 2025-03-03 21:02:10.838 2025-03-03 21:02:10.838 423689 19829 424153 16839 12 15551 2025-03-03 18:42:45.855 2025-03-03 18:42:45.855 423689 19829 423971 16747 4 15552 2025-03-03 20:48:11.612 2025-03-03 20:48:11.612 423689 19829 424130 21430 11 15553 2025-03-03 18:30:18.078 2025-03-03 18:30:18.078 423689 19829 423956 21418 2 15554 2025-03-03 19:05:05.634 2025-03-03 19:05:05.634 423689 19829 423990 11073 6 15555 2025-03-03 19:15:36.194 2025-03-03 19:15:36.194 423689 19829 424003 20454 7 15556 2025-03-03 19:32:08.352 2025-03-03 19:32:08.352 423689 19829 424024 20912 8 15557 2025-03-03 20:44:02.84 2025-03-03 20:44:02.84 423689 19829 424123 1433 11 15558 2025-03-04 00:48:46.627 2025-03-04 00:48:46.627 423689 19829 424323 17411 13 15559 2025-03-04 03:23:16.239 2025-03-04 03:23:16.239 423689 19829 424386 1173 13 15560 2025-03-04 04:42:54.352 2025-03-04 04:42:54.352 423689 19829 424413 20939 14 15561 2025-03-03 21:37:49.428 2025-03-03 21:37:49.428 423689 19829 424186 18608 15 15562 2025-03-03 21:09:30.844 2025-03-03 21:09:30.844 423689 19829 424160 14385 10 15563 2025-03-03 20:36:29.113 2025-03-03 20:36:29.113 423689 19829 424111 3979 10 15564 2025-03-03 18:34:19.846 2025-03-03 18:34:19.846 423689 19829 423958 21833 3 15565 2025-03-03 17:24:42.258 2025-03-03 17:24:42.258 423689 19829 423899 14774 1 15566 2025-03-06 17:05:21.059 2025-03-06 17:05:21.059 427540 4798 427833 7773 6 15567 2025-03-06 18:13:04.077 2025-03-06 18:13:04.077 427540 4798 427945 7960 7 15568 2025-03-06 16:27:24.285 2025-03-06 16:27:24.285 427540 4798 427787 695 5 15569 2025-03-06 15:45:34.708 2025-03-06 15:45:34.708 427540 4798 427750 17201 4 15570 2025-03-06 15:24:38.93 2025-03-06 15:24:38.93 427540 4798 427722 1124 3 15571 2025-03-06 13:55:38.125 2025-03-06 13:55:38.125 427540 4798 427574 14357 2 15572 2025-03-06 13:43:52.154 2025-03-06 13:43:52.154 427540 4798 427556 21218 1 15573 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 428320 897 428644 672 6 15574 2025-03-07 13:21:06.213 2025-03-07 13:21:06.213 428320 897 428619 17011 5 15575 2025-03-07 12:32:36.229 2025-03-07 12:32:36.229 428320 897 428581 11527 4 15576 2025-03-07 12:08:54.288 2025-03-07 12:08:54.288 428320 897 428559 8242 3 15577 2025-03-07 09:02:28.716 2025-03-07 09:02:28.716 428320 897 428417 695 2 15578 2025-03-07 06:59:33.041 2025-03-07 06:59:33.041 428320 897 428354 802 1 15579 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 428320 897 428687 11395 7 15580 2025-03-11 05:33:44.323 2025-03-11 05:33:44.323 430617 16177 433457 21427 6 15581 2025-03-09 13:20:23.381 2025-03-09 13:20:23.381 430617 16177 430863 14791 5 15582 2025-03-09 11:46:43.909 2025-03-09 11:46:43.909 430617 16177 430674 20291 3 15583 2025-03-09 11:35:44.978 2025-03-09 11:35:44.978 430617 16177 430641 19375 1 15584 2025-03-09 13:01:09.772 2025-03-09 13:01:09.772 430617 16177 430836 16842 4 15585 2025-03-09 11:44:51.024 2025-03-09 11:44:51.024 430617 16177 430670 4084 2 15586 2025-03-12 11:23:16.783 2025-03-12 11:23:16.783 434031 14213 434968 7097 6 15587 2025-03-12 11:55:42.868 2025-03-12 11:55:42.868 434031 14213 435008 20781 7 15588 2025-03-11 19:16:32.86 2025-03-11 19:16:32.86 434031 14213 434305 16447 5 15589 2025-03-11 18:57:47.32 2025-03-11 18:57:47.32 434031 14213 434287 902 4 15590 2025-03-11 17:29:00.112 2025-03-11 17:29:00.112 434031 14213 434237 691 3 15591 2025-03-11 15:43:01.435 2025-03-11 15:43:01.435 434031 14213 434091 20969 1 15592 2025-03-11 17:19:29.627 2025-03-11 17:19:29.627 434031 14213 434226 730 2 15593 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437321 1488 437513 12609 7 15594 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437321 1488 437508 8713 6 15595 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437321 1488 437593 19094 15 15596 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437321 1488 437574 5069 14 15597 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 437321 1488 437465 20734 3 15598 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437321 1488 437553 10291 12 15599 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437321 1488 437552 17722 11 15600 2025-03-14 14:11:17.647 2025-03-14 14:11:17.647 437321 1488 437432 660 1 15601 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437321 1488 437521 19980 8 15602 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437321 1488 437558 7097 13 15603 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437321 1488 437598 12277 16 15604 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437321 1488 437506 20816 5 15605 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437321 1488 437497 1823 4 15606 2025-03-14 14:24:43.157 2025-03-14 14:24:43.157 437321 1488 437447 12278 2 15607 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437321 1488 437551 5129 10 15608 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437321 1488 437538 7668 9 15609 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437538 7668 437593 19094 6 15610 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437538 7668 437574 5069 5 15611 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437538 7668 437553 10291 3 15612 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437538 7668 437552 17722 2 15613 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437538 7668 437558 7097 4 15614 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437538 7668 437598 12277 7 15615 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437538 7668 437551 5129 1 15616 2025-03-18 21:02:52.25 2025-03-18 21:02:52.25 442646 10102 442843 1712 7 15617 2025-03-18 20:56:44.844 2025-03-18 20:56:44.844 442646 10102 442834 880 6 15618 2025-03-18 18:21:39.626 2025-03-18 18:21:39.626 442646 10102 442670 4487 3 15619 2025-03-18 20:54:02.509 2025-03-18 20:54:02.509 442646 10102 442828 695 5 15620 2025-03-18 20:51:12.059 2025-03-18 20:51:12.059 442646 10102 442824 4064 4 15621 2025-03-18 18:09:57.293 2025-03-18 18:09:57.293 442646 10102 442650 2775 2 15622 2025-03-18 18:07:50.174 2025-03-18 18:07:50.174 442646 10102 442648 21254 1 15623 2025-03-27 13:23:15.331 2025-03-27 13:23:15.331 454403 4502 456113 19581 3 15624 2025-03-27 11:19:50.124 2025-03-27 11:19:50.124 454403 4502 455855 3392 2 15625 2025-03-27 05:18:27.913 2025-03-27 05:18:27.913 454403 4502 455521 641 1 15626 2025-03-27 22:41:43.787 2025-03-27 22:41:43.787 454403 4502 456831 4084 7 15627 2025-03-27 13:26:04.922 2025-03-27 13:26:04.922 454403 4502 456117 9109 4 15628 2025-03-27 22:22:26.982 2025-03-27 22:22:26.982 454403 4502 456815 1002 6 15629 2025-03-27 21:37:52.759 2025-03-27 21:37:52.759 454403 4502 456790 1618 5 15630 2025-03-29 09:03:52.837 2025-03-29 09:03:52.837 454668 16970 458420 12346 7 15631 2025-03-29 08:59:48.122 2025-03-29 08:59:48.122 454668 16970 458416 15474 6 15632 2025-03-29 08:50:46.032 2025-03-29 08:50:46.032 454668 16970 458397 14381 4 15633 2025-03-29 08:33:23.598 2025-03-29 08:33:23.598 454668 16970 458378 10016 3 15634 2025-03-29 08:55:03.355 2025-03-29 08:55:03.355 454668 16970 458408 16788 5 15635 2025-03-29 08:25:37.102 2025-03-29 08:25:37.102 454668 16970 458368 1638 2 15636 2025-03-26 14:58:23.832 2025-03-26 14:58:23.832 454668 16970 454691 1647 1 15637 2024-06-23 21:30:26.792 2024-06-23 21:30:26.792 188380 9655 188673 1658 5 15638 2024-06-23 21:24:41.45 2024-06-23 21:24:41.45 188380 9655 188670 20691 4 15639 2024-06-23 10:54:38.806 2024-06-23 10:54:38.806 188380 9655 188387 18005 1 15640 2024-06-24 00:37:00.985 2024-06-24 00:37:00.985 188380 9655 188714 20434 7 15641 2024-06-23 11:08:54.501 2024-06-23 11:08:54.501 188380 9655 188396 13198 3 15642 2024-06-23 21:37:20.3 2024-06-23 21:37:20.3 188380 9655 188675 7966 6 15643 2024-06-23 10:59:38.197 2024-06-23 10:59:38.197 188380 9655 188390 844 2 15644 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 336318 940 455286 11678 7 15645 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 336318 940 454254 5725 6 15646 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 336318 940 453900 9336 4 15647 2025-03-25 14:21:50.545 2025-03-25 14:21:50.545 336318 940 452856 2088 2 15648 2024-12-20 16:27:09.659 2024-12-20 16:27:09.659 336318 940 336322 19668 1 15649 2025-03-25 18:58:25.208 2025-03-25 18:58:25.208 336318 940 453420 2293 3 15650 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 336318 940 455302 20511 8 15651 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 336318 940 453968 19332 5 15652 2025-02-15 21:27:58.743 2025-02-15 21:27:58.743 401346 5646 404423 732 8 15653 2025-02-13 14:42:25.101 2025-02-13 14:42:25.101 401346 5646 402078 14195 4 15654 2025-02-13 14:32:55.199 2025-02-13 14:32:55.199 401346 5646 402058 21060 3 15655 2025-02-13 05:25:56.141 2025-02-13 05:25:56.141 401346 5646 401520 618 2 15656 2025-02-14 01:34:22.491 2025-02-14 01:34:22.491 401346 5646 402754 11522 6 15657 2025-02-14 00:08:24.289 2025-02-14 00:08:24.289 401346 5646 402727 7746 5 15658 2025-02-15 21:07:23.285 2025-02-15 21:07:23.285 401346 5646 404410 20599 7 15659 2025-02-13 00:46:27.413 2025-02-13 00:46:27.413 401346 5646 401403 2829 1 15660 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403773 7966 403788 19576 4 15661 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403773 7966 403809 8416 8 15662 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 403773 7966 403779 1092 3 15663 2025-02-15 07:52:12.57 2025-02-15 07:52:12.57 403773 7966 403776 20280 1 15664 2025-02-15 07:52:29.84 2025-02-15 07:52:29.84 403773 7966 403778 683 2 15665 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403773 7966 403798 20062 5 15666 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403773 7966 403806 18274 6 15667 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403773 7966 403808 10690 7 15668 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403773 7966 403813 11073 9 15669 2025-02-18 14:01:12.001 2025-02-18 14:01:12.001 407469 20911 407979 11866 6 15670 2025-02-18 13:55:19.991 2025-02-18 13:55:19.991 407469 20911 407969 660 4 15671 2025-02-19 01:07:53.931 2025-02-19 01:07:53.931 407469 20911 408655 18526 7 15672 2025-02-18 13:49:06.242 2025-02-18 13:49:06.242 407469 20911 407957 8985 3 15673 2025-02-18 13:34:44.748 2025-02-18 13:34:44.748 407469 20911 407944 4083 1 15674 2025-02-19 01:21:44.02 2025-02-19 01:21:44.02 407469 20911 408657 1122 8 15675 2025-02-18 13:57:26.953 2025-02-18 13:57:26.953 407469 20911 407971 21518 5 15676 2025-02-18 13:47:52.065 2025-02-18 13:47:52.065 407469 20911 407954 17237 2 15677 2025-02-18 09:55:50.123 2025-02-18 09:55:50.123 407581 1007 407702 4633 8 15678 2025-02-18 09:38:48.437 2025-02-18 09:38:48.437 407581 1007 407671 8570 5 15679 2025-02-18 08:06:03.999 2025-02-18 08:06:03.999 407581 1007 407586 4345 2 15680 2025-02-18 08:04:16.213 2025-02-18 08:04:16.213 407581 1007 407583 2322 1 15681 2025-02-18 09:42:09.408 2025-02-18 09:42:09.408 407581 1007 407678 11165 7 15682 2025-02-18 09:33:20.657 2025-02-18 09:33:20.657 407581 1007 407668 21430 4 15683 2025-02-18 09:39:29.886 2025-02-18 09:39:29.886 407581 1007 407673 6594 6 15684 2025-02-18 09:27:19.343 2025-02-18 09:27:19.343 407581 1007 407663 5377 3 15685 2025-02-23 14:15:50.355 2025-02-23 14:15:50.355 413534 11192 413889 11527 5 15686 2025-03-19 12:59:17.627 2025-03-19 12:59:17.627 413534 11192 443662 19924 7 15687 2025-02-23 14:19:27.294 2025-02-23 14:19:27.294 413534 11192 413897 848 6 15688 2025-02-23 12:17:30.512 2025-02-23 12:17:30.512 413534 11192 413647 981 4 15689 2025-02-23 11:23:26.493 2025-02-23 11:23:26.493 413534 11192 413592 16667 1 15690 2025-02-23 12:13:28.052 2025-02-23 12:13:28.052 413534 11192 413640 1030 3 15691 2025-02-23 11:25:43.745 2025-02-23 11:25:43.745 413534 11192 413595 21090 2 15692 2025-02-25 18:19:43.329 2025-02-25 18:19:43.329 416221 2000 416632 18174 6 15693 2025-02-25 17:19:22.447 2025-02-25 17:19:22.447 416221 2000 416551 10398 3 15694 2025-02-25 23:39:41.492 2025-02-25 23:39:41.492 416221 2000 416938 11263 12 15695 2025-02-25 23:30:50.251 2025-02-25 23:30:50.251 416221 2000 416934 17533 10 15696 2025-02-25 18:01:47.076 2025-02-25 18:01:47.076 416221 2000 416605 8173 5 15697 2025-02-25 22:41:34.224 2025-02-25 22:41:34.224 416221 2000 416881 16830 8 15698 2025-02-25 23:15:32.556 2025-02-25 23:15:32.556 416221 2000 416929 19821 9 15699 2025-02-25 23:43:50.088 2025-02-25 23:43:50.088 416221 2000 416939 7773 13 15700 2025-02-25 22:30:12.229 2025-02-25 22:30:12.229 416221 2000 416869 2151 7 15701 2025-02-25 17:43:40.876 2025-02-25 17:43:40.876 416221 2000 416578 811 4 15702 2025-02-25 14:22:17.81 2025-02-25 14:22:17.81 416221 2000 416288 15941 2 15703 2025-02-25 14:06:28.337 2025-02-25 14:06:28.337 416221 2000 416253 795 1 15704 2025-02-25 23:33:34.977 2025-02-25 23:33:34.977 416221 2000 416935 21416 11 15705 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 428312 17991 428644 672 7 15706 2025-03-07 13:21:06.213 2025-03-07 13:21:06.213 428312 17991 428619 17011 6 15707 2025-03-07 12:32:36.229 2025-03-07 12:32:36.229 428312 17991 428581 11527 5 15708 2025-03-07 12:08:54.288 2025-03-07 12:08:54.288 428312 17991 428559 8242 4 15709 2025-03-07 09:02:28.716 2025-03-07 09:02:28.716 428312 17991 428417 695 3 15710 2025-03-07 06:59:33.041 2025-03-07 06:59:33.041 428312 17991 428354 802 2 15711 2025-03-07 05:19:58.747 2025-03-07 05:19:58.747 428312 17991 428320 897 1 15712 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 428312 17991 428687 11395 8 15713 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437317 11018 437513 12609 8 15714 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437317 11018 437508 8713 7 15715 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437317 11018 437593 19094 16 15716 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437317 11018 437574 5069 15 15717 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 437317 11018 437465 20734 4 15718 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437317 11018 437553 10291 13 15719 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437317 11018 437552 17722 12 15720 2025-03-14 14:11:17.647 2025-03-14 14:11:17.647 437317 11018 437432 660 2 15721 2025-03-14 12:46:35.189 2025-03-14 12:46:35.189 437317 11018 437321 1488 1 15722 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437317 11018 437521 19980 9 15723 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437317 11018 437558 7097 14 15724 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437317 11018 437598 12277 17 15725 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437317 11018 437506 20816 6 15726 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437317 11018 437497 1823 5 15727 2025-03-14 14:24:43.157 2025-03-14 14:24:43.157 437317 11018 437447 12278 3 15728 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437317 11018 437551 5129 11 15729 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437317 11018 437538 7668 10 15730 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437521 19980 437593 19094 7 15731 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437521 19980 437574 5069 6 15732 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437521 19980 437553 10291 4 15733 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437521 19980 437552 17722 3 15734 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437521 19980 437558 7097 5 15735 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437521 19980 437598 12277 8 15736 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437521 19980 437551 5129 2 15737 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437521 19980 437538 7668 1 15738 2025-03-18 21:02:52.25 2025-03-18 21:02:52.25 442639 11516 442843 1712 8 15739 2025-03-18 20:56:44.844 2025-03-18 20:56:44.844 442639 11516 442834 880 7 15740 2025-03-18 18:21:39.626 2025-03-18 18:21:39.626 442639 11516 442670 4487 4 15741 2025-03-18 20:54:02.509 2025-03-18 20:54:02.509 442639 11516 442828 695 6 15742 2025-03-18 20:51:12.059 2025-03-18 20:51:12.059 442639 11516 442824 4064 5 15743 2025-03-18 18:09:57.293 2025-03-18 18:09:57.293 442639 11516 442650 2775 3 15744 2025-03-18 18:07:50.174 2025-03-18 18:07:50.174 442639 11516 442648 21254 2 15745 2025-03-18 18:05:42.756 2025-03-18 18:05:42.756 442639 11516 442646 10102 1 15746 2025-03-21 16:21:06.454 2025-03-21 16:21:06.454 446898 20094 447118 17201 7 15747 2025-03-21 15:00:34.62 2025-03-21 15:00:34.62 446898 20094 446988 6160 3 15748 2025-03-21 14:50:31.825 2025-03-21 14:50:31.825 446898 20094 446961 627 2 15749 2025-03-21 15:17:17.086 2025-03-21 15:17:17.086 446898 20094 447027 10016 6 15750 2025-03-21 15:12:02.07 2025-03-21 15:12:02.07 446898 20094 447016 4323 5 15751 2025-03-21 15:07:48.743 2025-03-21 15:07:48.743 446898 20094 447006 1236 4 15752 2025-03-21 14:33:44 2025-03-21 14:33:44 446898 20094 446927 10981 1 15753 2025-03-29 09:03:52.837 2025-03-29 09:03:52.837 454535 1769 458420 12346 8 15754 2025-03-29 08:59:48.122 2025-03-29 08:59:48.122 454535 1769 458416 15474 7 15755 2025-03-29 08:50:46.032 2025-03-29 08:50:46.032 454535 1769 458397 14381 5 15756 2025-03-29 08:33:23.598 2025-03-29 08:33:23.598 454535 1769 458378 10016 4 15757 2025-03-26 14:48:13.279 2025-03-26 14:48:13.279 454535 1769 454668 16970 1 15758 2025-03-29 08:55:03.355 2025-03-29 08:55:03.355 454535 1769 458408 16788 6 15759 2025-03-29 08:25:37.102 2025-03-29 08:25:37.102 454535 1769 458368 1638 3 15760 2025-03-26 14:58:23.832 2025-03-26 14:58:23.832 454535 1769 454691 1647 2 15761 2024-12-20 16:21:56.941 2024-12-20 16:21:56.941 336308 20205 336318 940 1 15762 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 336308 20205 455286 11678 8 15763 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 336308 20205 454254 5725 7 15764 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 336308 20205 453900 9336 5 15765 2025-03-25 14:21:50.545 2025-03-25 14:21:50.545 336308 20205 452856 2088 3 15766 2024-12-20 16:27:09.659 2024-12-20 16:27:09.659 336308 20205 336322 19668 2 15767 2025-03-25 18:58:25.208 2025-03-25 18:58:25.208 336308 20205 453420 2293 4 15768 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 336308 20205 455302 20511 9 15769 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 336308 20205 453968 19332 6 15770 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403772 19446 403788 19576 5 15771 2025-02-15 07:50:34.771 2025-02-15 07:50:34.771 403772 19446 403773 7966 1 15772 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403772 19446 403809 8416 9 15773 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 403772 19446 403779 1092 4 15774 2025-02-15 07:52:12.57 2025-02-15 07:52:12.57 403772 19446 403776 20280 2 15775 2025-02-15 07:52:29.84 2025-02-15 07:52:29.84 403772 19446 403778 683 3 15776 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403772 19446 403798 20062 6 15777 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403772 19446 403806 18274 7 15778 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403772 19446 403808 10690 8 15779 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403772 19446 403813 11073 10 15780 2025-02-18 09:55:50.123 2025-02-18 09:55:50.123 407063 9200 407702 4633 9 15781 2025-02-18 09:38:48.437 2025-02-18 09:38:48.437 407063 9200 407671 8570 6 15782 2025-02-18 08:06:03.999 2025-02-18 08:06:03.999 407063 9200 407586 4345 3 15783 2025-02-18 08:04:16.213 2025-02-18 08:04:16.213 407063 9200 407583 2322 2 15784 2025-02-18 09:42:09.408 2025-02-18 09:42:09.408 407063 9200 407678 11165 8 15785 2025-02-18 09:33:20.657 2025-02-18 09:33:20.657 407063 9200 407668 21430 5 15786 2025-02-18 09:39:29.886 2025-02-18 09:39:29.886 407063 9200 407673 6594 7 15787 2025-02-18 09:27:19.343 2025-02-18 09:27:19.343 407063 9200 407663 5377 4 15788 2025-02-18 08:01:42.933 2025-02-18 08:01:42.933 407063 9200 407581 1007 1 15789 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 424988 5794 428644 672 8 15790 2025-03-07 13:21:06.213 2025-03-07 13:21:06.213 424988 5794 428619 17011 7 15791 2025-03-07 12:32:36.229 2025-03-07 12:32:36.229 424988 5794 428581 11527 6 15792 2025-03-07 12:08:54.288 2025-03-07 12:08:54.288 424988 5794 428559 8242 5 15793 2025-03-07 09:02:28.716 2025-03-07 09:02:28.716 424988 5794 428417 695 4 15794 2025-03-07 06:59:33.041 2025-03-07 06:59:33.041 424988 5794 428354 802 3 15795 2025-03-07 05:19:58.747 2025-03-07 05:19:58.747 424988 5794 428320 897 2 15796 2025-03-07 05:01:57.371 2025-03-07 05:01:57.371 424988 5794 428312 17991 1 15797 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 424988 5794 428687 11395 9 15798 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437316 13097 437513 12609 9 15799 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437316 13097 437508 8713 8 15800 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437316 13097 437593 19094 17 15801 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437316 13097 437574 5069 16 15802 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 437316 13097 437465 20734 5 15803 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437316 13097 437553 10291 14 15804 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437316 13097 437552 17722 13 15805 2025-03-14 14:11:17.647 2025-03-14 14:11:17.647 437316 13097 437432 660 3 15806 2025-03-14 12:46:35.189 2025-03-14 12:46:35.189 437316 13097 437321 1488 2 15807 2025-03-14 12:43:43.967 2025-03-14 12:43:43.967 437316 13097 437317 11018 1 15808 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437316 13097 437521 19980 10 15809 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437316 13097 437558 7097 15 15810 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437316 13097 437598 12277 18 15811 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437316 13097 437506 20816 7 15812 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437316 13097 437497 1823 6 15813 2025-03-14 14:24:43.157 2025-03-14 14:24:43.157 437316 13097 437447 12278 4 15814 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437316 13097 437551 5129 12 15815 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437316 13097 437538 7668 11 15816 2025-03-21 16:21:06.454 2025-03-21 16:21:06.454 446884 21369 447118 17201 8 15817 2025-03-21 15:00:34.62 2025-03-21 15:00:34.62 446884 21369 446988 6160 4 15818 2025-03-21 14:50:31.825 2025-03-21 14:50:31.825 446884 21369 446961 627 3 15819 2025-03-21 14:20:22.474 2025-03-21 14:20:22.474 446884 21369 446898 20094 1 15820 2025-03-21 15:17:17.086 2025-03-21 15:17:17.086 446884 21369 447027 10016 7 15821 2025-03-21 15:12:02.07 2025-03-21 15:12:02.07 446884 21369 447016 4323 6 15822 2025-03-21 15:07:48.743 2025-03-21 15:07:48.743 446884 21369 447006 1236 5 15823 2025-03-21 14:33:44 2025-03-21 14:33:44 446884 21369 446927 10981 2 15824 2024-12-20 16:21:56.941 2024-12-20 16:21:56.941 335791 17095 336318 940 2 15825 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 335791 17095 455286 11678 9 15826 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 335791 17095 454254 5725 8 15827 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 335791 17095 453900 9336 6 15828 2025-03-25 14:21:50.545 2025-03-25 14:21:50.545 335791 17095 452856 2088 4 15829 2024-12-20 16:27:09.659 2024-12-20 16:27:09.659 335791 17095 336322 19668 3 15830 2024-12-20 16:00:42.347 2024-12-20 16:00:42.347 335791 17095 336308 20205 1 15831 2025-03-25 18:58:25.208 2025-03-25 18:58:25.208 335791 17095 453420 2293 5 15832 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 335791 17095 455302 20511 10 15833 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 335791 17095 453968 19332 7 15834 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403771 17218 403788 19576 6 15835 2025-02-15 07:50:34.771 2025-02-15 07:50:34.771 403771 17218 403773 7966 2 15836 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403771 17218 403809 8416 10 15837 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 403771 17218 403779 1092 5 15838 2025-02-15 07:46:48.479 2025-02-15 07:46:48.479 403771 17218 403772 19446 1 15839 2025-02-15 07:52:12.57 2025-02-15 07:52:12.57 403771 17218 403776 20280 3 15840 2025-02-15 07:52:29.84 2025-02-15 07:52:29.84 403771 17218 403778 683 4 15841 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403771 17218 403798 20062 7 15842 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403771 17218 403806 18274 8 15843 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403771 17218 403808 10690 9 15844 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403771 17218 403813 11073 11 15845 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 424946 13162 428644 672 9 15846 2025-03-07 13:21:06.213 2025-03-07 13:21:06.213 424946 13162 428619 17011 8 15847 2025-03-07 12:32:36.229 2025-03-07 12:32:36.229 424946 13162 428581 11527 7 15848 2025-03-07 12:08:54.288 2025-03-07 12:08:54.288 424946 13162 428559 8242 6 15849 2025-03-07 09:02:28.716 2025-03-07 09:02:28.716 424946 13162 428417 695 5 15850 2025-03-07 06:59:33.041 2025-03-07 06:59:33.041 424946 13162 428354 802 4 15851 2025-03-07 05:19:58.747 2025-03-07 05:19:58.747 424946 13162 428320 897 3 15852 2025-03-07 05:01:57.371 2025-03-07 05:01:57.371 424946 13162 428312 17991 2 15853 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 424946 13162 428687 11395 10 15854 2025-03-04 14:17:08.302 2025-03-04 14:17:08.302 424946 13162 424988 5794 1 15855 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437312 8870 437513 12609 10 15856 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437312 8870 437508 8713 9 15857 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437312 8870 437593 19094 18 15858 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437312 8870 437574 5069 17 15859 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 437312 8870 437465 20734 6 15860 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437312 8870 437553 10291 15 15861 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437312 8870 437552 17722 14 15862 2025-03-14 14:11:17.647 2025-03-14 14:11:17.647 437312 8870 437432 660 4 15863 2025-03-14 12:46:35.189 2025-03-14 12:46:35.189 437312 8870 437321 1488 3 15864 2025-03-14 12:43:43.967 2025-03-14 12:43:43.967 437312 8870 437317 11018 2 15865 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437312 8870 437521 19980 11 15866 2025-03-14 12:43:02.431 2025-03-14 12:43:02.431 437312 8870 437316 13097 1 15867 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437312 8870 437558 7097 16 15868 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437312 8870 437598 12277 19 15869 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437312 8870 437506 20816 8 15870 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437312 8870 437497 1823 7 15871 2025-03-14 14:24:43.157 2025-03-14 14:24:43.157 437312 8870 437447 12278 5 15872 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437312 8870 437551 5129 13 15873 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437312 8870 437538 7668 12 15874 2024-12-20 16:21:56.941 2024-12-20 16:21:56.941 335729 2431 336318 940 3 15875 2024-12-20 04:06:41.133 2024-12-20 04:06:41.133 335729 2431 335791 17095 1 15876 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 335729 2431 455286 11678 10 15877 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 335729 2431 454254 5725 9 15878 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 335729 2431 453900 9336 7 15879 2025-03-25 14:21:50.545 2025-03-25 14:21:50.545 335729 2431 452856 2088 5 15880 2024-12-20 16:27:09.659 2024-12-20 16:27:09.659 335729 2431 336322 19668 4 15881 2024-12-20 16:00:42.347 2024-12-20 16:00:42.347 335729 2431 336308 20205 2 15882 2025-03-25 18:58:25.208 2025-03-25 18:58:25.208 335729 2431 453420 2293 6 15883 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 335729 2431 455302 20511 11 15884 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 335729 2431 453968 19332 8 15885 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403765 17226 403788 19576 7 15886 2025-02-15 07:50:34.771 2025-02-15 07:50:34.771 403765 17226 403773 7966 3 15887 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403765 17226 403809 8416 11 15888 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 403765 17226 403779 1092 6 15889 2025-02-15 07:46:48.479 2025-02-15 07:46:48.479 403765 17226 403772 19446 2 15890 2025-02-15 07:52:12.57 2025-02-15 07:52:12.57 403765 17226 403776 20280 4 15891 2025-02-15 07:52:29.84 2025-02-15 07:52:29.84 403765 17226 403778 683 5 15892 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403765 17226 403798 20062 8 15893 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403765 17226 403806 18274 9 15894 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403765 17226 403808 10690 10 15895 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403765 17226 403813 11073 12 15896 2025-02-15 07:45:45.501 2025-02-15 07:45:45.501 403765 17226 403771 17218 1 15897 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 424921 21383 428644 672 10 15898 2025-03-07 13:21:06.213 2025-03-07 13:21:06.213 424921 21383 428619 17011 9 15899 2025-03-07 12:32:36.229 2025-03-07 12:32:36.229 424921 21383 428581 11527 8 15900 2025-03-07 12:08:54.288 2025-03-07 12:08:54.288 424921 21383 428559 8242 7 15901 2025-03-07 09:02:28.716 2025-03-07 09:02:28.716 424921 21383 428417 695 6 15902 2025-03-07 06:59:33.041 2025-03-07 06:59:33.041 424921 21383 428354 802 5 15903 2025-03-07 05:19:58.747 2025-03-07 05:19:58.747 424921 21383 428320 897 4 15904 2025-03-07 05:01:57.371 2025-03-07 05:01:57.371 424921 21383 428312 17991 3 15905 2025-03-04 13:59:29.15 2025-03-04 13:59:29.15 424921 21383 424946 13162 1 15906 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 424921 21383 428687 11395 11 15907 2025-03-04 14:17:08.302 2025-03-04 14:17:08.302 424921 21383 424988 5794 2 15908 2025-03-14 15:13:54.774 2025-03-14 15:13:54.774 437308 20523 437513 12609 11 15909 2025-03-14 15:09:47.89 2025-03-14 15:09:47.89 437308 20523 437508 8713 10 15910 2025-03-14 16:43:08.494 2025-03-14 16:43:08.494 437308 20523 437593 19094 19 15911 2025-03-14 16:27:23.698 2025-03-14 16:27:23.698 437308 20523 437574 5069 18 15912 2025-03-14 14:42:07.66 2025-03-14 14:42:07.66 437308 20523 437465 20734 7 15913 2025-03-14 15:51:35.771 2025-03-14 15:51:35.771 437308 20523 437553 10291 16 15914 2025-03-14 15:50:53.292 2025-03-14 15:50:53.292 437308 20523 437552 17722 15 15915 2025-03-14 14:11:17.647 2025-03-14 14:11:17.647 437308 20523 437432 660 5 15916 2025-03-14 12:46:35.189 2025-03-14 12:46:35.189 437308 20523 437321 1488 4 15917 2025-03-14 12:43:43.967 2025-03-14 12:43:43.967 437308 20523 437317 11018 3 15918 2025-03-14 15:21:43.877 2025-03-14 15:21:43.877 437308 20523 437521 19980 12 15919 2025-03-14 12:43:02.431 2025-03-14 12:43:02.431 437308 20523 437316 13097 2 15920 2025-03-14 15:55:33.938 2025-03-14 15:55:33.938 437308 20523 437558 7097 17 15921 2025-03-14 16:46:28.425 2025-03-14 16:46:28.425 437308 20523 437598 12277 20 15922 2025-03-14 15:08:29.566 2025-03-14 15:08:29.566 437308 20523 437506 20816 9 15923 2025-03-14 15:04:51.53 2025-03-14 15:04:51.53 437308 20523 437497 1823 8 15924 2025-03-14 14:24:43.157 2025-03-14 14:24:43.157 437308 20523 437447 12278 6 15925 2025-03-14 15:50:14.573 2025-03-14 15:50:14.573 437308 20523 437551 5129 14 15926 2025-03-14 15:33:38.119 2025-03-14 15:33:38.119 437308 20523 437538 7668 13 15927 2025-03-14 12:39:26.862 2025-03-14 12:39:26.862 437308 20523 437312 8870 1 15928 2024-12-20 16:21:56.941 2024-12-20 16:21:56.941 335721 20745 336318 940 4 15929 2024-12-20 04:06:41.133 2024-12-20 04:06:41.133 335721 20745 335791 17095 2 15930 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 335721 20745 455286 11678 11 15931 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 335721 20745 454254 5725 10 15932 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 335721 20745 453900 9336 8 15933 2025-03-25 14:21:50.545 2025-03-25 14:21:50.545 335721 20745 452856 2088 6 15934 2024-12-20 16:27:09.659 2024-12-20 16:27:09.659 335721 20745 336322 19668 5 15935 2024-12-20 16:00:42.347 2024-12-20 16:00:42.347 335721 20745 336308 20205 3 15936 2025-03-25 18:58:25.208 2025-03-25 18:58:25.208 335721 20745 453420 2293 7 15937 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 335721 20745 455302 20511 12 15938 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 335721 20745 453968 19332 9 15939 2024-12-20 00:03:02.338 2024-12-20 00:03:02.338 335721 20745 335729 2431 1 15940 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403762 782 403788 19576 8 15941 2025-02-15 07:50:34.771 2025-02-15 07:50:34.771 403762 782 403773 7966 4 15942 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403762 782 403809 8416 12 15943 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 403762 782 403779 1092 7 15944 2025-02-15 07:34:24.554 2025-02-15 07:34:24.554 403762 782 403765 17226 1 15945 2025-02-15 07:46:48.479 2025-02-15 07:46:48.479 403762 782 403772 19446 3 15946 2025-02-15 07:52:12.57 2025-02-15 07:52:12.57 403762 782 403776 20280 5 15947 2025-02-15 07:52:29.84 2025-02-15 07:52:29.84 403762 782 403778 683 6 15948 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403762 782 403798 20062 9 15949 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403762 782 403806 18274 10 15950 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403762 782 403808 10690 11 15951 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403762 782 403813 11073 13 15952 2025-02-15 07:45:45.501 2025-02-15 07:45:45.501 403762 782 403771 17218 2 15953 2025-03-07 14:07:19.656 2025-03-07 14:07:19.656 424907 13143 428687 11395 12 15954 2025-03-04 14:17:08.302 2025-03-04 14:17:08.302 424907 13143 424988 5794 3 15955 2025-03-04 13:40:21.373 2025-03-04 13:40:21.373 424907 13143 424921 21383 1 15956 2025-03-07 13:41:28.487 2025-03-07 13:41:28.487 424907 13143 428644 672 11 15957 2025-03-07 13:21:06.213 2025-03-07 13:21:06.213 424907 13143 428619 17011 10 15958 2025-03-07 12:32:36.229 2025-03-07 12:32:36.229 424907 13143 428581 11527 9 15959 2025-03-07 12:08:54.288 2025-03-07 12:08:54.288 424907 13143 428559 8242 8 15960 2025-03-07 09:02:28.716 2025-03-07 09:02:28.716 424907 13143 428417 695 7 15961 2025-03-07 06:59:33.041 2025-03-07 06:59:33.041 424907 13143 428354 802 6 15962 2025-03-07 05:19:58.747 2025-03-07 05:19:58.747 424907 13143 428320 897 5 15963 2025-03-07 05:01:57.371 2025-03-07 05:01:57.371 424907 13143 428312 17991 4 15964 2025-03-04 13:59:29.15 2025-03-04 13:59:29.15 424907 13143 424946 13162 2 15965 2024-12-20 16:21:56.941 2024-12-20 16:21:56.941 335690 21734 336318 940 5 15966 2024-12-20 04:06:41.133 2024-12-20 04:06:41.133 335690 21734 335791 17095 3 15967 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 335690 21734 455286 11678 12 15968 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 335690 21734 454254 5725 11 15969 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 335690 21734 453900 9336 9 15970 2025-03-25 14:21:50.545 2025-03-25 14:21:50.545 335690 21734 452856 2088 7 15971 2024-12-20 16:27:09.659 2024-12-20 16:27:09.659 335690 21734 336322 19668 6 15972 2024-12-20 16:00:42.347 2024-12-20 16:00:42.347 335690 21734 336308 20205 4 15973 2024-12-19 23:36:55.366 2024-12-19 23:36:55.366 335690 21734 335721 20745 1 15974 2025-03-25 18:58:25.208 2025-03-25 18:58:25.208 335690 21734 453420 2293 8 15975 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 335690 21734 455302 20511 13 15976 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 335690 21734 453968 19332 10 15977 2024-12-20 00:03:02.338 2024-12-20 00:03:02.338 335690 21734 335729 2431 2 15978 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403755 9350 403788 19576 9 15979 2025-02-15 07:50:34.771 2025-02-15 07:50:34.771 403755 9350 403773 7966 5 15980 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403755 9350 403809 8416 13 15981 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 403755 9350 403779 1092 8 15982 2025-02-15 07:25:43.357 2025-02-15 07:25:43.357 403755 9350 403762 782 1 15983 2025-02-15 07:34:24.554 2025-02-15 07:34:24.554 403755 9350 403765 17226 2 15984 2025-02-15 07:46:48.479 2025-02-15 07:46:48.479 403755 9350 403772 19446 4 15985 2025-02-15 07:52:12.57 2025-02-15 07:52:12.57 403755 9350 403776 20280 6 15986 2025-02-15 07:52:29.84 2025-02-15 07:52:29.84 403755 9350 403778 683 7 15987 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403755 9350 403798 20062 10 15988 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403755 9350 403806 18274 11 15989 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403755 9350 403808 10690 12 15990 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403755 9350 403813 11073 14 15991 2025-02-15 07:45:45.501 2025-02-15 07:45:45.501 403755 9350 403771 17218 3 15992 2024-12-20 16:21:56.941 2024-12-20 16:21:56.941 335591 10016 336318 940 6 15993 2024-12-20 04:06:41.133 2024-12-20 04:06:41.133 335591 10016 335791 17095 4 15994 2024-12-19 22:38:47.193 2024-12-19 22:38:47.193 335591 10016 335690 21734 1 15995 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 335591 10016 455286 11678 13 15996 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 335591 10016 454254 5725 12 15997 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 335591 10016 453900 9336 10 15998 2025-03-25 14:21:50.545 2025-03-25 14:21:50.545 335591 10016 452856 2088 8 15999 2024-12-20 16:27:09.659 2024-12-20 16:27:09.659 335591 10016 336322 19668 7 16000 2024-12-20 16:00:42.347 2024-12-20 16:00:42.347 335591 10016 336308 20205 5 16001 2024-12-19 23:36:55.366 2024-12-19 23:36:55.366 335591 10016 335721 20745 2 16002 2025-03-25 18:58:25.208 2025-03-25 18:58:25.208 335591 10016 453420 2293 9 16003 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 335591 10016 455302 20511 14 16004 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 335591 10016 453968 19332 11 16005 2024-12-20 00:03:02.338 2024-12-20 00:03:02.338 335591 10016 335729 2431 3 16006 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403754 20956 403788 19576 10 16007 2025-02-15 07:50:34.771 2025-02-15 07:50:34.771 403754 20956 403773 7966 6 16008 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403754 20956 403809 8416 14 16009 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 403754 20956 403779 1092 9 16010 2025-02-15 07:25:43.357 2025-02-15 07:25:43.357 403754 20956 403762 782 2 16011 2025-02-15 07:11:20.34 2025-02-15 07:11:20.34 403754 20956 403755 9350 1 16012 2025-02-15 07:34:24.554 2025-02-15 07:34:24.554 403754 20956 403765 17226 3 16013 2025-02-15 07:46:48.479 2025-02-15 07:46:48.479 403754 20956 403772 19446 5 16014 2025-02-15 07:52:12.57 2025-02-15 07:52:12.57 403754 20956 403776 20280 7 16015 2025-02-15 07:52:29.84 2025-02-15 07:52:29.84 403754 20956 403778 683 8 16016 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403754 20956 403798 20062 11 16017 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403754 20956 403806 18274 12 16018 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403754 20956 403808 10690 13 16019 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403754 20956 403813 11073 15 16020 2025-02-15 07:45:45.501 2025-02-15 07:45:45.501 403754 20956 403771 17218 4 16021 2024-12-20 16:21:56.941 2024-12-20 16:21:56.941 335562 1010 336318 940 7 16022 2024-12-20 04:06:41.133 2024-12-20 04:06:41.133 335562 1010 335791 17095 5 16023 2024-12-19 22:38:47.193 2024-12-19 22:38:47.193 335562 1010 335690 21734 2 16024 2025-03-26 22:17:33.066 2025-03-26 22:17:33.066 335562 1010 455286 11678 14 16025 2025-03-26 10:29:57.778 2025-03-26 10:29:57.778 335562 1010 454254 5725 13 16026 2025-03-26 02:23:05.111 2025-03-26 02:23:05.111 335562 1010 453900 9336 11 16027 2025-03-25 14:21:50.545 2025-03-25 14:21:50.545 335562 1010 452856 2088 9 16028 2024-12-20 16:27:09.659 2024-12-20 16:27:09.659 335562 1010 336322 19668 8 16029 2024-12-20 16:00:42.347 2024-12-20 16:00:42.347 335562 1010 336308 20205 6 16030 2024-12-19 23:36:55.366 2024-12-19 23:36:55.366 335562 1010 335721 20745 3 16031 2025-03-25 18:58:25.208 2025-03-25 18:58:25.208 335562 1010 453420 2293 10 16032 2025-03-26 22:32:23.058 2025-03-26 22:32:23.058 335562 1010 455302 20511 15 16033 2025-03-26 03:58:46.318 2025-03-26 03:58:46.318 335562 1010 453968 19332 12 16034 2024-12-20 00:03:02.338 2024-12-20 00:03:02.338 335562 1010 335729 2431 4 16035 2024-12-19 20:15:28.241 2024-12-19 20:15:28.241 335562 1010 335591 10016 1 16036 2025-02-15 08:06:38.593 2025-02-15 08:06:38.593 403694 11192 403788 19576 12 16037 2025-02-15 07:50:34.771 2025-02-15 07:50:34.771 403694 11192 403773 7966 8 16038 2025-02-15 07:10:48.731 2025-02-15 07:10:48.731 403694 11192 403754 20956 2 16039 2025-02-15 08:29:42.944 2025-02-15 08:29:42.944 403694 11192 403809 8416 16 16040 2025-02-15 07:52:59.721 2025-02-15 07:52:59.721 403694 11192 403779 1092 11 16041 2025-02-15 07:25:43.357 2025-02-15 07:25:43.357 403694 11192 403762 782 4 16042 2025-02-15 07:09:04.387 2025-02-15 07:09:04.387 403694 11192 403750 21405 1 16043 2025-02-15 07:11:20.34 2025-02-15 07:11:20.34 403694 11192 403755 9350 3 16044 2025-02-15 07:34:24.554 2025-02-15 07:34:24.554 403694 11192 403765 17226 5 16045 2025-02-15 07:46:48.479 2025-02-15 07:46:48.479 403694 11192 403772 19446 7 16046 2025-02-15 07:52:12.57 2025-02-15 07:52:12.57 403694 11192 403776 20280 9 16047 2025-02-15 07:52:29.84 2025-02-15 07:52:29.84 403694 11192 403778 683 10 16048 2025-02-15 08:17:18.912 2025-02-15 08:17:18.912 403694 11192 403798 20062 13 16049 2025-02-15 08:24:58.759 2025-02-15 08:24:58.759 403694 11192 403806 18274 14 16050 2025-02-15 08:27:36.131 2025-02-15 08:27:36.131 403694 11192 403808 10690 15 16051 2025-02-15 08:36:47.052 2025-02-15 08:36:47.052 403694 11192 403813 11073 17 16052 2025-02-15 07:45:45.501 2025-02-15 07:45:45.501 403694 11192 403771 17218 6 \. -- -- Data for Name: Snl; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Snl" (id, live) FROM stdin; \. -- -- Data for Name: Streak; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Streak" (id, created_at, updated_at, "startedAt", "endedAt", "userId", type) FROM stdin; \. -- -- Data for Name: Sub; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Sub" (name, created_at, updated_at, "postTypes", "rankingType", "baseCost", "desc", "billedLastAt", "billingCost", "billingType", "parentName", path, status, "userId", "rewardsPct", "billingAutoRenew", "allowFreebies", moderated, "moderatedCount", "statusUpdatedAt", nsfw, "billPaidUntil", "replyCost") FROM stdin; jobs 2023-03-22 12:42:56.764 2023-03-19 21:18:22.828 {JOB} AUCTION 1 \N 2025-03-29 20:59:41.857 0 ONCE \N jobs ACTIVE 20185 30 f t f 0 \N f \N 1 espanol 2024-12-26 09:05:21.938 2025-01-28 17:40:50.878 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N espanol ACTIVE 13327 30 f t f 0 \N f \N 1 DeepDive 2025-02-09 06:22:16.769 2025-03-14 14:57:44.064 {DISCUSSION,BOUNTY} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N deepdive ACTIVE 12768 30 f t f 0 \N f \N 1 lol 2025-03-09 09:00:35.664 2025-03-19 14:25:03.286 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N lol ACTIVE 2330 30 f t f 0 \N f \N 1 podcasts 2024-12-27 00:24:32.159 2025-03-29 10:09:06.738 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N podcasts ACTIVE 14990 30 f t f 0 \N f \N 1 lightning 2024-12-26 10:40:57.803 2025-03-29 11:11:07.86 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N lightning ACTIVE 21140 30 f t f 0 \N f \N 1 events 2024-12-26 23:42:59.45 2025-01-29 08:18:29.704 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N events ACTIVE 16788 30 f t f 0 \N f \N 1 AGORA 2025-01-12 22:23:02.415 2025-03-25 19:36:00.872 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N agora ACTIVE 15556 30 f t f 0 \N f \N 1 mostly_harmless 2024-12-27 06:01:06.357 2025-03-25 23:55:12.508 {LINK,DISCUSSION,POLL,BOUNTY} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N mostly_harmless ACTIVE 16876 30 f t f 0 \N f \N 1 oracle 2024-12-26 18:07:57.216 2025-03-26 01:21:09.643 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N oracle ACTIVE 1726 30 f t f 0 \N f \N 1 charts 2025-03-10 08:42:57.271 2025-03-09 23:23:13.764 {DISCUSSION} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N charts ACTIVE 15719 30 f t f 0 \N f \N 1 NSFW_porn 2024-12-26 22:58:02.731 2025-01-29 07:33:30.495 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N nsfw_porn ACTIVE 782 30 f t f 0 \N f \N 1 bitcoin_beginners 2024-12-27 00:45:08.325 2025-03-25 09:27:43.114 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N bitcoin_beginners ACTIVE 19735 30 f t f 0 \N f \N 1 conspiracy 2025-03-12 16:51:05.461 2025-03-26 06:23:23.191 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N conspiracy ACTIVE 17891 30 f t f 0 \N f \N 1 Brasil 2025-03-29 01:59:49.984 2025-03-26 10:43:16.299 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N brasil ACTIVE 1162 30 f t f 0 \N f \N 1 polls 2024-12-29 13:52:41.562 2025-01-31 22:28:09.622 {POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N polls ACTIVE 21320 30 f t f 0 \N f \N 1 art 2024-12-26 10:24:59.244 2024-12-27 10:52:46.49 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N art ACTIVE 16679 30 f t f 0 \N f \N 1 builders 2024-12-26 11:11:50.873 2025-03-24 19:47:17.524 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N builders ACTIVE 20756 30 f t f 0 \N f \N 1 Ordinals_Inscriptions_Runes 2025-03-29 20:59:41.857 2025-03-29 04:23:00.769 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N ordinals_inscriptions_runes ACTIVE 3377 30 f t f 0 \N f \N 1 health 2024-12-27 06:51:54.145 2025-01-29 02:55:40.989 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N health ACTIVE 6526 30 f t f 0 \N f \N 1 Personal_Finance 2025-01-10 09:52:08.82 2025-03-15 12:41:30.82 {DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N personal_finance ACTIVE 20310 30 f t f 0 \N f \N 1 history 2024-12-30 18:37:05.925 2025-01-29 03:00:21.474 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N history ACTIVE 17014 30 f t f 0 \N f \N 1 crypto 2025-01-11 22:04:57.704 2025-03-18 10:02:59.429 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N crypto ACTIVE 794 30 f t f 0 \N f \N 1 bitcoin 2024-05-23 06:06:22.968 2025-03-09 16:40:43.03 {LINK,DISCUSSION,POLL,BOUNTY} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N bitcoin ACTIVE 21571 30 f t f 0 \N f \N 1 radio 2025-01-10 16:16:25.77 2025-02-13 00:51:54.86 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N radio ACTIVE 21116 30 f t f 0 \N f \N 1 Dogs_And_Cats 2024-12-26 08:34:12.201 2025-03-24 22:16:25.71 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N dogs_and_cats ACTIVE 14515 30 f t f 0 \N f \N 1 tech 2024-07-03 10:54:54.686 2025-03-09 16:41:11.723 {LINK,DISCUSSION,POLL,BOUNTY} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N tech ACTIVE 1433 30 f t f 0 \N f \N 1 nostr 2024-05-23 06:06:22.968 2025-03-09 16:41:43.083 {LINK,DISCUSSION,POLL,BOUNTY} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N nostr ACTIVE 21672 30 f t f 0 \N f \N 1 meta 2024-07-11 07:07:30.824 2024-12-28 21:39:57.465 {LINK,DISCUSSION,POLL,BOUNTY} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N meta ACTIVE 6419 30 f t f 0 \N f \N 1 AI 2024-12-26 13:12:58.056 2025-01-28 21:48:27.807 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N ai ACTIVE 1389 30 f t f 0 \N f \N 1 marketplace 2025-01-12 06:54:31.489 2025-02-14 15:29:58.79 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N marketplace ACTIVE 18368 30 f t f 0 \N f \N 1 culture 2024-12-31 07:05:48.381 2025-03-05 15:41:16.533 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N culture ACTIVE 15890 30 f t f 0 \N f \N 1 bitdevs 2025-01-04 15:28:48.652 2025-01-02 00:04:14.716 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N bitdevs ACTIVE 5495 30 f t f 0 \N f \N 1 opensource 2024-12-30 10:36:03.404 2025-03-29 19:11:30.583 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N opensource ACTIVE 4167 30 f t f 0 \N f \N 1 startups 2025-01-15 22:48:13.972 2025-03-21 07:23:42.815 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N startups ACTIVE 20434 30 f t f 0 \N f \N 1 Fitness 2024-12-26 16:23:47.808 2025-01-29 00:59:15.961 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N fitness ACTIVE 18865 30 f t f 0 \N f \N 1 B2B 2025-02-06 12:18:36.354 2025-03-06 20:54:02.469 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N b2b ACTIVE 21159 30 f t f 0 \N f \N 1 libertarian 2024-12-30 18:25:26.809 2025-01-29 02:56:52.41 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N libertarian ACTIVE 17221 30 f t f 0 \N f \N 1 Memes 2024-12-26 23:59:08.158 2025-01-29 08:34:37.812 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N memes ACTIVE 13398 30 f t f 0 \N f \N 1 econ 2024-12-26 09:24:17.822 2025-03-24 17:59:44.775 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N econ ACTIVE 21709 30 f t f 0 \N f \N 1 Stacker_Sports 2024-12-26 10:32:32.208 2025-03-24 19:07:58.405 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N stacker_sports ACTIVE 2961 30 f t f 0 \N f \N 1 gaming 2024-12-26 10:57:26.932 2025-03-24 19:32:53.267 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N gaming ACTIVE 12220 30 f t f 0 \N f \N 1 Ask_SN 2024-12-27 08:00:26.829 2025-01-29 16:35:55.224 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N ask_sn ACTIVE 20642 30 f t f 0 \N f \N 1 movies 2024-12-26 17:22:25.738 2025-03-01 01:57:54.184 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N movies ACTIVE 4128 30 f t f 0 \N f \N 1 AMA 2024-12-29 05:19:20.421 2025-03-01 13:56:32.203 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N ama ACTIVE 19905 30 f t f 0 \N f \N 1 privacy 2024-12-26 09:48:22.746 2025-03-25 11:20:56.051 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N privacy ACTIVE 2537 30 f t f 0 \N f \N 1 Linux 2025-03-24 05:47:53.004 2025-03-23 19:41:18.01 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N linux ACTIVE 18116 30 f t f 0 \N f \N 1 AccessTribe 2025-02-28 20:18:22.446 2025-03-29 04:53:50.133 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N accesstribe ACTIVE 685 30 f t f 0 \N f \N 1 ecash 2025-01-28 05:18:21.926 2025-03-29 13:53:50.188 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N ecash ACTIVE 21214 30 f t f 0 \N f \N 1 hiphop 2024-12-30 10:38:25.923 2025-03-29 19:13:52.51 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N hiphop ACTIVE 641 30 f t f 0 \N f \N 1 news 2024-12-26 11:16:57.859 2025-03-29 19:52:26.826 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N news ACTIVE 2780 30 f t f 0 \N f \N 1 christianity 2024-12-26 12:24:13.826 2025-03-29 20:59:41.857 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N christianity ACTIVE 9183 30 f t f 0 \N f \N 1 ru 2024-12-27 10:12:43.731 2025-03-01 18:48:11.468 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N ru ACTIVE 3683 30 f t f 0 \N f \N 1 Outdoors 2024-12-29 15:50:48.879 2025-03-08 02:20:55.008 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N outdoors ACTIVE 3396 30 f t f 0 \N f \N 1 BooksAndArticles 2024-12-26 08:37:04.404 2025-03-24 22:14:19.601 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N booksandarticles ACTIVE 11866 30 f t f 0 \N f \N 1 education 2024-12-29 12:27:21.176 2025-03-03 21:02:49.158 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N education ACTIVE 14255 30 f t f 0 \N f \N 1 Design 2025-01-31 06:55:25.26 2025-03-15 06:55:02.797 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N design ACTIVE 17291 30 f t f 0 \N f \N 1 Photography 2024-12-29 22:13:11.418 2025-03-25 07:24:23.362 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N photography ACTIVE 1495 30 f t f 0 \N f \N 1 chess 2024-12-29 12:19:03.116 2025-01-31 20:54:30.901 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N chess ACTIVE 19952 30 f t f 0 \N f \N 1 litdevs 2025-01-04 15:18:19.32 2025-02-06 23:53:48.58 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N litdevs ACTIVE 1478 30 f t f 0 \N f \N 1 food 2025-03-26 01:46:00.976 2025-03-27 12:58:47.694 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N food ACTIVE 12102 30 f t f 0 \N f \N 1 Value4ValueEducation 2024-12-30 20:15:44.356 2025-03-05 04:51:12.819 {DISCUSSION,BOUNTY,LINK,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N value4valueeducation ACTIVE 17817 30 f t f 0 \N f \N 1 UFOs 2024-12-26 08:46:01.64 2025-03-24 17:21:28.526 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N ufos ACTIVE 1352 30 f t f 0 \N f \N 1 earth 2024-12-26 09:45:20.244 2025-03-24 18:20:47.114 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N earth ACTIVE 17042 30 f t f 0 \N f \N 1 sanfrancisco 2024-12-30 10:48:43.921 2025-03-04 19:24:13.395 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N sanfrancisco ACTIVE 20990 30 f t f 0 \N f \N 1 funny 2025-01-02 06:17:25.65 2025-02-04 14:52:53.552 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N funny ACTIVE 16788 30 f t f 0 \N f \N 1 VirtualReality 2025-01-01 00:46:26.401 2025-02-03 09:21:54.587 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N virtualreality ACTIVE 20562 30 f t f 0 \N f \N 1 japan 2025-01-01 07:18:44.597 2025-02-03 15:54:15.51 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N japan ACTIVE 7654 30 f t f 0 \N f \N 1 Mining_Self_Hosting_FOSS 2024-12-27 02:48:10.466 2025-01-29 11:23:41.371 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N mining_self_hosting_foss ACTIVE 16966 30 f t f 0 \N f \N 1 Psychedelics 2025-01-07 14:08:28.662 2025-02-09 22:43:56.757 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N psychedelics ACTIVE 928 30 f t f 0 \N f \N 1 stocks 2025-01-01 07:50:02.954 2025-02-03 16:25:31.759 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N stocks ACTIVE 12139 30 f t f 0 \N f \N 1 Cannabis 2025-01-07 10:42:24.781 2025-03-09 14:07:33.206 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N cannabis ACTIVE 19996 30 f t f 0 \N f \N 1 security 2025-01-05 20:24:20.338 2025-03-18 10:03:51.403 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N security ACTIVE 21485 30 f t f 0 \N f \N 1 PlebeianMarket 2025-01-05 00:24:31.515 2025-02-07 09:00:00.99 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N plebeianmarket ACTIVE 6765 30 f t f 0 \N f \N 1 Music 2024-12-26 11:52:09.276 2025-03-24 20:27:35.638 {DISCUSSION,BOUNTY,POLL,LINK} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N music ACTIVE 2952 30 f t f 0 \N f \N 1 dotnet 2025-01-13 10:07:42.418 2025-01-22 04:08:54.486 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N dotnet ACTIVE 21379 30 f t f 0 \N f \N 1 DIY 2025-01-19 07:10:31.032 2025-01-16 15:45:57.096 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N diy ACTIVE 5865 30 f t f 0 \N f \N 1 mempool 2025-01-22 14:15:09.581 2025-01-20 01:36:35.159 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N mempool ACTIVE 980 30 f t f 0 \N f \N 1 devs 2025-01-23 07:20:33.721 2025-01-20 21:32:49.432 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N devs ACTIVE 20871 30 f t f 0 \N f \N 1 science 2024-12-26 13:28:13.599 2025-03-25 03:49:46.263 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N science ACTIVE 11938 30 f t f 0 \N f \N 1 language_learning 2025-01-21 02:50:05.777 2025-02-23 11:25:33.878 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N language_learning ACTIVE 11395 30 f t f 0 \N f \N 1 apps 2025-01-22 04:20:35.494 2025-02-24 12:56:04.928 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N apps ACTIVE 21804 30 f t f 0 \N f \N 1 videos 2024-12-26 19:06:44.111 2025-03-01 03:42:13.25 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N videos ACTIVE 21713 30 f t f 0 \N f \N 1 ideasfromtheedge 2025-01-19 10:14:49.783 2025-03-20 19:07:57.148 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N ideasfromtheedge ACTIVE 1658 30 f t f 0 \N f \N 1 NixOS 2025-01-18 12:19:17.939 2025-03-22 23:56:00.036 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N nixos ACTIVE 1638 30 f t f 0 \N f \N 1 A_bit_of_Good_News 2025-01-22 07:47:50.873 2025-02-24 16:23:19.099 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2025-03-29 20:59:41.857 0 ONCE \N a_bit_of_good_news ACTIVE 9183 30 f t f 0 \N f \N 1 \. -- -- Data for Name: SubAct; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."SubAct" (id, created_at, updated_at, "userId", "subName", msats, type) FROM stdin; 2336 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 3360 lightning 19500 REVENUE 1133 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 13038 lightning 2100 REVENUE 3587 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 8684 privacy 100000000 REVENUE 2538 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 6578 Personal_Finance 376850 REVENUE 195 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 19668 oracle 100000000 REVENUE 3337 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 9346 news 100000000 REVENUE 363 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 12356 UFOs 614275 REVENUE 1300 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 9177 Fitness 256050 REVENUE 3642 2025-03-25 04:12:26.869 2025-03-25 04:12:26.869 13406 mostly_harmless 92150 BILLING 3396 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 14941 crypto 56700 REVENUE 3433 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 5829 news 27200 REVENUE 3326 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 11263 security 1100 REVENUE 841 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 20562 builders 110000 REVENUE 2292 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 20310 AI 5050 REVENUE 1414 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 5057 privacy 169600 REVENUE 1472 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 15160 Mining_Self_Hosting_FOSS 12050 REVENUE 1896 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 17064 lightning 34790 REVENUE 82 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 10302 earth 1650 REVENUE 2130 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 20551 gaming 17600 REVENUE 1126 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 20647 AMA 50450 REVENUE 983 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 2640 ru 277167 REVENUE 565 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 9450 art 25130 REVENUE 3500 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 21334 art 100000000 REVENUE 230 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 14857 art 15550 REVENUE 3281 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 15180 christianity 293327 REVENUE 3120 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 20612 NixOS 70350 REVENUE 475 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 17710 AI 33050 REVENUE 3459 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 13903 lightning 178100 REVENUE 644 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 18601 polls 7700 REVENUE 2440 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 7979 espanol 3980 REVENUE 255 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 12562 history 129745 REVENUE 2071 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 671 gaming 10000 REVENUE 320 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 16154 security 30000 REVENUE 2124 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 794 Psychedelics 101800 REVENUE 1632 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 1620 mostly_harmless 1050 REVENUE 3641 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 2789 funny 482000 REVENUE 3114 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 15282 bitcoin_beginners 100000000 REVENUE 275 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 7979 history 106050 REVENUE 1720 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 20120 ecash 1050 REVENUE 2760 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 20120 Photography 107950 REVENUE 586 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 2718 radio 49500 REVENUE 1181 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 9352 startups 219650 REVENUE 1321 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 14152 AI 100000000 REVENUE 1743 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 5775 art 75165 REVENUE 3766 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 7673 DIY 20150 REVENUE 3732 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 721 espanol 100000000 REVENUE 1068 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 21172 libertarian 65000 REVENUE 3054 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 19193 stocks 73800 REVENUE 470 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 8729 christianity 66109 REVENUE 2225 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 5761 security 40350 REVENUE 416 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 5017 Dogs_And_Cats 46950 REVENUE 1684 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 13162 bitcoin_beginners 260900 REVENUE 3352 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 14465 lightning 4050 REVENUE 3330 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 2774 bitcoin_beginners 50900 REVENUE 930 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 19094 Design 640950 REVENUE 926 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 5425 mempool 1500 REVENUE 840 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 1751 AGORA 5000 REVENUE 1745 2025-02-01 16:54:12.129 2025-02-01 16:54:12.129 20691 movies 11600 BILLING 1602 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 8570 lightning 160100 REVENUE 1733 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 1489 Memes 21700 REVENUE 3058 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 16543 security 100200 REVENUE 2026 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 10112 news 102000 REVENUE 505 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 13378 libertarian 61350 REVENUE 1953 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 21406 education 60750 REVENUE 1982 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 20849 earth 11000 REVENUE 3386 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 9307 conspiracy 343743 REVENUE 3417 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 5806 NixOS 340082 REVENUE 27 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 1585 Photography 10000 REVENUE 3211 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 711 podcasts 50000 REVENUE 2370 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 6616 DIY 71800 REVENUE 3486 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 17673 gaming 49050 REVENUE 3275 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 21383 bitdevs 72500 REVENUE 3484 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 20577 Cannabis 3000 REVENUE 701 2025-01-10 02:20:55.896 2025-01-10 02:20:55.896 1090 mostly_harmless 501681 BILLING 168 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 649 christianity 659000 REVENUE 772 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 690 Stacker_Sports 35850 REVENUE 1779 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 21037 Personal_Finance 100000000 REVENUE 1260 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 17541 lol 243200 REVENUE 3556 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 14791 lol 23100 REVENUE 589 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 17798 art 37050 REVENUE 1690 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 8841 videos 80100 REVENUE 3051 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 14357 culture 10500 REVENUE 2770 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 21062 AMA 176100 REVENUE 3168 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 620 startups 112050 REVENUE 2776 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 768 news 100000000 REVENUE 145 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 3979 movies 23050 REVENUE 1372 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 1136 podcasts 1000000000 REVENUE 237 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 1638 science 261125 REVENUE 1887 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 20586 radio 16026 REVENUE 215 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 1596 privacy 3000000000 REVENUE 2793 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 19570 podcasts 187100 REVENUE 3232 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 10986 apps 68550 REVENUE 854 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 20310 NixOS 16350 REVENUE 1688 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 1823 videos 37100 REVENUE 2692 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 1064 christianity 10750 REVENUE 3691 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 18468 BooksAndArticles 164150 REVENUE 1031 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 889 econ 15500 REVENUE 1944 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 20201 videos 42350 REVENUE 1901 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 3213 econ 12650 REVENUE 2138 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 2206 gaming 275259 REVENUE 1902 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 20663 Stacker_Sports 26050 REVENUE 2495 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 18743 ru 3600 REVENUE 3722 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 8245 movies 206550 REVENUE 1606 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 21356 christianity 4900 REVENUE 1662 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 1064 bitdevs 193481 REVENUE 3835 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 9916 Personal_Finance 37100 REVENUE 976 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 20500 Music 39550 REVENUE 1913 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 998 art 100000000 REVENUE 1183 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 2204 AMA 643278 REVENUE 2548 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 21405 art 93850 REVENUE 2630 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 4395 startups 151100 REVENUE 2102 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 20137 Stacker_Sports 5550 REVENUE 3267 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 1652 builders 13600 REVENUE 3598 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 2329 Photography 9300 REVENUE 89 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 20509 DIY 16550 REVENUE 667 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 632 radio 55000 REVENUE 1049 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 20849 devs 100000000 REVENUE 826 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 4043 gaming 128200 REVENUE 885 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 17722 Design 587500 REVENUE 1368 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 6537 stocks 89300 REVENUE 1923 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 20660 security 240000 REVENUE 2744 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 9107 science 366350 REVENUE 3659 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 16680 econ 12600 REVENUE 2156 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 11789 hiphop 136600 REVENUE 1120 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 3411 earth 4000 REVENUE 1806 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 3506 security 22800 REVENUE 2392 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 20669 Stacker_Sports 209450 REVENUE 1484 2025-01-27 11:17:13.552 2025-01-27 11:17:13.552 5828 crypto 100000000 BILLING 688 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 7869 earth 118250 REVENUE 3561 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 11038 Design 16650 REVENUE 2659 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 13327 culture 335750 REVENUE 3767 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 13398 culture 22250 REVENUE 2268 2025-02-15 18:56:38.883 2025-02-15 18:56:38.883 683 Dogs_And_Cats 41400 BILLING 1196 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 16351 bitcoin_beginners 56650 REVENUE 2470 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 8926 Fitness 214600 REVENUE 1700 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 19332 bitcoin_beginners 182603 REVENUE 897 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 1474 Music 289277 REVENUE 2827 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 17552 espanol 521100 REVENUE 423 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 17011 crypto 23539 REVENUE 3227 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 18313 AGORA 155009 REVENUE 45 2024-12-24 19:50:56.566 2024-12-24 19:50:56.566 1512 startups 181250 BILLING 2523 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 17157 mostly_harmless 13870 REVENUE 3612 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 16351 art 158050 REVENUE 2478 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 1823 charts 27000 REVENUE 1551 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 910 bitcoin_beginners 40250 REVENUE 1224 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 9329 culture 1160886 REVENUE 2848 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 16788 mostly_harmless 156000 REVENUE 2574 2025-02-24 07:18:34.67 2025-02-24 07:18:34.67 1801 AMA 82100 BILLING 2847 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 726 hiphop 287095 REVENUE 898 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 17741 Stacker_Sports 84450 REVENUE 178 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 886 ideasfromtheedge 100000000 REVENUE 1614 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 1740 devs 8800 REVENUE 2901 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 18500 bitdevs 208850 REVENUE 231 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 1825 news 234060 REVENUE 93 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 20734 Personal_Finance 546162 REVENUE 950 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 822 AGORA 8100 REVENUE 1814 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 19966 japan 618100 REVENUE 2461 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 2609 radio 2887 REVENUE 1249 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 777 security 5000 REVENUE 2939 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 17708 Personal_Finance 207100 REVENUE 2241 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 21104 news 15000 REVENUE 3629 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 21402 Cannabis 107250 REVENUE 1055 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 1534 Design 6050 REVENUE 855 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 13365 Music 48750 REVENUE 2491 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 18306 ideasfromtheedge 25079 REVENUE 284 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 19796 art 10000 REVENUE 317 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 7916 art 26450 REVENUE 1786 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 21320 science 443783 REVENUE 3180 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 20812 news 5250 REVENUE 3238 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 3456 security 100000000 REVENUE 3518 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 15200 podcasts 131191 REVENUE 3447 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 21539 science 765675 REVENUE 2580 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 16747 espanol 98700 REVENUE 3656 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 15119 radio 1330 REVENUE 364 2025-01-02 10:44:43.727 2025-01-02 10:44:43.727 19821 NSFW_porn 109900 BILLING 3392 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 20198 Design 9200 REVENUE 3803 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 2593 health 174300 REVENUE 68 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 14357 lol 193849 REVENUE 1388 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 4177 funny 11300 REVENUE 1823 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 19332 Outdoors 18950 REVENUE 3765 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 18901 Photography 50000 REVENUE 694 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 17682 UFOs 115448 REVENUE 1489 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 21714 art 635800 REVENUE 2022 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 12959 science 818423 REVENUE 1503 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 2832 Music 14500 REVENUE 3048 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 14909 history 5000 REVENUE 824 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 8448 crypto 100000000 REVENUE 3775 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 15282 Personal_Finance 150500 REVENUE 1699 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 9355 Outdoors 49800 REVENUE 2107 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 5978 opensource 40000 REVENUE 1680 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 11192 Outdoors 100750 REVENUE 812 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 11678 UFOs 50850 REVENUE 1343 2025-01-24 04:12:26.995 2025-01-24 04:12:26.995 17172 bitcoin_beginners 128950 BILLING 3443 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 17331 Stacker_Sports 10000 REVENUE 2559 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 994 movies 108540 REVENUE 2161 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 2437 Music 378240 REVENUE 3103 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 18430 art 11050 REVENUE 92 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 15577 news 98650 REVENUE 3338 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 18426 Memes 439000 REVENUE 3406 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 3417 science 14150 REVENUE 2128 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 21639 security 56550 REVENUE 1592 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 17708 art 5869 REVENUE 3024 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 652 AMA 7000 REVENUE 209 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 19332 privacy 36150 REVENUE 853 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 6164 culture 224600 REVENUE 2684 2025-02-26 15:44:46.853 2025-02-26 15:44:46.853 2347 ideasfromtheedge 108100 BILLING 3592 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 20906 ecash 217450 REVENUE 2878 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 10536 Music 10250 REVENUE 1494 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 18274 lightning 2100 REVENUE 1014 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 7654 Dogs_And_Cats 799950 REVENUE 641 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 15624 oracle 303828 REVENUE 3425 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 1718 DIY 63725 REVENUE 323 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 20913 BooksAndArticles 87300 REVENUE 2535 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 2460 Dogs_And_Cats 36330 REVENUE 3194 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 16350 Value4ValueEducation 3750 REVENUE 3783 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 8287 earth 156550 REVENUE 1200 2025-01-21 02:46:58.128 2025-01-21 02:46:58.128 18101 earth 100000000 BILLING 2998 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 618 devs 11500 REVENUE 1450 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 21825 BooksAndArticles 55500 REVENUE 3202 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 13763 privacy 50500 REVENUE 3093 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 17682 startups 278150 REVENUE 3461 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 2508 builders 5000 REVENUE 708 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 3478 science 602554 REVENUE 1069 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 18557 BooksAndArticles 17650 REVENUE 2820 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 13566 gaming 50100 REVENUE 1498 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 3461 Stacker_Sports 1550 REVENUE 382 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 681 opensource 21050 REVENUE 1234 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 5519 ecash 62450 REVENUE 1345 2025-01-24 05:11:44.723 2025-01-24 05:11:44.723 12965 hiphop 86800 BILLING 917 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 756 B2B 68750 REVENUE 481 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 15703 UFOs 141948 REVENUE 1984 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 6578 BooksAndArticles 54200 REVENUE 458 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 21734 espanol 64100 REVENUE 339 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 21451 BooksAndArticles 433400 REVENUE 3343 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 17638 ecash 135728 REVENUE 2970 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 27 DIY 60600 REVENUE 2927 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 5129 crypto 108900 REVENUE 3590 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 20597 Photography 79100 REVENUE 225 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 10554 news 120750 REVENUE 3660 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 13327 DIY 117050 REVENUE 2561 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 965 BooksAndArticles 1050 REVENUE 1904 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 20102 movies 78550 REVENUE 2245 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 714 crypto 332600 REVENUE 2833 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 18178 Mining_Self_Hosting_FOSS 7100 REVENUE 1430 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 10693 podcasts 5250 REVENUE 1344 2025-01-24 04:50:42.58 2025-01-24 04:50:42.58 14385 culture 115000 BILLING 1909 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 20840 news 5500 REVENUE 3344 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 12976 Music 275600 REVENUE 2232 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 633 sanfrancisco 20000 REVENUE 1748 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 21222 podcasts 180300 REVENUE 2011 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 8726 radio 281150 REVENUE 1529 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 9242 movies 321374 REVENUE 1528 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 1673 Memes 9550 REVENUE 2837 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 8648 PlebeianMarket 72600 REVENUE 2979 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 777 stocks 3550 REVENUE 787 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 15115 ecash 6000 REVENUE 3685 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 4064 privacy 17100 REVENUE 1487 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 19854 earth 100000000 REVENUE 3794 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 5500 espanol 5900 REVENUE 3222 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 650 Photography 10100 REVENUE 933 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 20275 privacy 95000 REVENUE 1608 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 617 culture 10000 REVENUE 1530 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 21041 Stacker_Sports 564464 REVENUE 477 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 656 education 11150 REVENUE 383 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 18956 oracle 1550 REVENUE 2974 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 8448 Memes 82050 REVENUE 847 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 661 education 282129 REVENUE 2431 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 2195 Dogs_And_Cats 359072 REVENUE 2879 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 11714 chess 134150 REVENUE 1916 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 17976 security 42200 REVENUE 1089 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 7587 videos 367150 REVENUE 3079 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 21406 libertarian 100000000 REVENUE 1199 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 1092 Music 20750 REVENUE 2331 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 12561 christianity 3000 REVENUE 1310 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 1733 Stacker_Sports 1050 REVENUE 2474 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 14939 VirtualReality 30700 REVENUE 3864 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 21279 christianity 17800 REVENUE 2074 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 2719 Music 40700 REVENUE 2275 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 14607 Personal_Finance 481900 REVENUE 438 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 3304 Music 52700 REVENUE 3334 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 19569 AGORA 9450 REVENUE 2148 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 14465 Photography 17600 REVENUE 1940 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 16145 NSFW_porn 670000 REVENUE 1000 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 6030 polls 13550 REVENUE 2178 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 7667 ecash 14700 REVENUE 22 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 11938 art 31000 REVENUE 472 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 1985 earth 55300 REVENUE 1465 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 21036 radio 5000 REVENUE 3606 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 20073 Personal_Finance 5500 REVENUE 1644 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 20291 art 21000 REVENUE 690 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 10409 AGORA 61200 REVENUE 3098 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 6537 Design 100000000 REVENUE 1434 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 12935 privacy 78500 REVENUE 3185 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 9171 japan 314400 REVENUE 896 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 21768 startups 196850 REVENUE 717 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 12261 Stacker_Sports 30833 REVENUE 10 2024-12-24 06:07:22.21 2024-12-24 06:07:22.21 20829 videos 192679 BILLING 1222 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 3518 health 5400 REVENUE 2198 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 18178 education 5000 REVENUE 3158 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 17592 health 164750 REVENUE 3789 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 2335 language_learning 32350 REVENUE 1601 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 21539 movies 33800 REVENUE 3419 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 624 stocks 27750 REVENUE 1264 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 5497 opensource 220300 REVENUE 1958 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 16858 BooksAndArticles 124800 REVENUE 1003 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 5519 A_bit_of_Good_News 8150 REVENUE 722 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 21539 Design 12100 REVENUE 2081 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 4225 mostly_harmless 25980 REVENUE 3118 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 620 crypto 250500 REVENUE 2220 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 19071 econ 63294 REVENUE 2400 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 19403 culture 290000 REVENUE 1383 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 20275 Mining_Self_Hosting_FOSS 57100 REVENUE 780 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 627 hiphop 627200 REVENUE 2247 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 13587 econ 5000 REVENUE 2068 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 17526 econ 126150 REVENUE 192 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 4167 art 13633 REVENUE 2595 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 21480 startups 100000000 REVENUE 118 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 16842 AGORA 63345 REVENUE 2916 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 5557 podcasts 47300 REVENUE 2287 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 18829 art 53250 REVENUE 1029 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 14731 libertarian 148150 REVENUE 3761 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 11798 radio 59300 REVENUE 130 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 20840 sanfrancisco 5000 REVENUE 2703 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 14774 security 2554201 REVENUE 2715 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 17991 lightning 52000 REVENUE 2891 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 21314 apps 8000 REVENUE 2989 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 4989 health 25650 REVENUE 3144 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 2670 builders 519350 REVENUE 1237 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 21274 Design 11300 REVENUE 2134 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 10291 builders 44200 REVENUE 3769 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 11164 news 100000000 REVENUE 3470 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 8664 BooksAndArticles 100000000 REVENUE 724 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 16353 econ 1048834 REVENUE 3207 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 20525 history 4500 REVENUE 1401 2025-01-25 06:36:10.074 2025-01-25 06:36:10.074 19446 privacy 256000 BILLING 1670 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 3990 gaming 11050 REVENUE 2078 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 11938 videos 5000 REVENUE 3576 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 21412 crypto 20500 REVENUE 3189 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 3371 news 12600 REVENUE 2742 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 16124 health 7600 REVENUE 1428 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 17673 sanfrancisco 24150 REVENUE 2398 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 20623 videos 169800 REVENUE 125 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 18314 education 1000000000 REVENUE 2105 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 661 podcasts 34350 REVENUE 1105 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 7097 crypto 9800 REVENUE 902 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 4538 Ask_SN 15000 REVENUE 2373 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 20180 Memes 4000 REVENUE 534 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 646 health 27000 REVENUE 2437 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 925 devs 365150 REVENUE 3826 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 2952 Stacker_Sports 18200 REVENUE 3284 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 9982 oracle 13791 REVENUE 2140 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 3683 Dogs_And_Cats 793350 REVENUE 710 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 21393 startups 183050 REVENUE 154 2024-12-28 14:03:30.332 2024-12-28 14:03:30.332 9177 sanfrancisco 111050 BILLING 3452 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 5499 earth 297100 REVENUE 3080 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 8870 mostly_harmless 130300 REVENUE 3738 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 21401 Stacker_Sports 12918300 REVENUE 1475 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 19980 Mining_Self_Hosting_FOSS 100000000 REVENUE 945 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 1237 UFOs 6050 REVENUE 1722 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 3717 news 259530 REVENUE 740 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 10986 Stacker_Sports 8050 REVENUE 454 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 1720 espanol 23850 REVENUE 3201 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 21804 Fitness 156650 REVENUE 2283 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 14959 UFOs 24072 REVENUE 3135 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 1472 japan 243530 REVENUE 2238 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 17082 hiphop 187050 REVENUE 2260 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 19663 japan 2000 REVENUE 2818 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 6741 BooksAndArticles 150850 REVENUE 271 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 16250 art 17350 REVENUE 514 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 13133 libertarian 12380 REVENUE 1198 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 3213 Dogs_And_Cats 100000000 REVENUE 217 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 16562 lightning 26000 REVENUE 1268 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 3729 builders 153900 REVENUE 2598 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 12736 hiphop 370650 REVENUE 2801 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 18309 history 562200 REVENUE 1226 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 10016 AMA 50500 REVENUE 3409 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 14552 NixOS 6050 REVENUE 1476 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 13767 science 1050 REVENUE 874 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 18630 health 60500 REVENUE 43 2024-12-24 19:09:23.857 2024-12-24 19:09:23.857 16876 builders 13300 BILLING 2077 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 9246 science 5550 REVENUE 1404 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 14663 art 44600 REVENUE 2218 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 17638 food 14200 REVENUE 2652 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 21532 security 453475 REVENUE 2605 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 16809 podcasts 26650 REVENUE 655 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 681 science 5200 REVENUE 911 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 15925 startups 19400 REVENUE 2696 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 20998 bitcoin_beginners 24100 REVENUE 1627 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 14225 funny 15550 REVENUE 3679 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 1425 security 769100 REVENUE 261 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 9337 education 523100 REVENUE 2112 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 9353 lol 57300 REVENUE 234 2024-12-29 20:12:50.808 2024-12-29 20:12:50.808 19806 funny 54950 BILLING 268 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 21685 education 212350 REVENUE 2469 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 19217 movies 44150 REVENUE 14 2024-12-24 07:18:33.683 2024-12-24 07:18:33.683 20454 news 13800 BILLING 1920 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 9107 Outdoors 1050 REVENUE 1281 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 1729 ideasfromtheedge 6750 REVENUE 1377 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 16154 culture 306730 REVENUE 1600 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 19906 polls 6000 REVENUE 360 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 21412 mempool 11050 REVENUE 3424 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 18956 earth 12750 REVENUE 1230 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 18321 funny 42450 REVENUE 1594 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 14295 gaming 100000000 REVENUE 2259 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 21051 podcasts 67450 REVENUE 1314 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 7899 hiphop 19700 REVENUE 3643 2025-03-25 04:50:43.118 2025-03-25 04:50:43.118 20817 science 38845 BILLING 2704 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 18232 gaming 12100 REVENUE 1749 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 861 Stacker_Sports 100000000 REVENUE 1172 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 20525 Photography 75750 REVENUE 482 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 623 education 10500 REVENUE 2213 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 1723 AI 5000 REVENUE 3465 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 16660 hiphop 163300 REVENUE 3634 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 6777 hiphop 198850 REVENUE 590 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 2829 health 16800 REVENUE 2680 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 19471 B2B 114350 REVENUE 2842 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 18265 Outdoors 29600 REVENUE 1265 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 14731 videos 135200 REVENUE 3279 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 9350 privacy 68450 REVENUE 2897 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 9349 health 178800 REVENUE 329 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 11165 libertarian 25708 REVENUE 2217 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 12946 AI 33200 REVENUE 3129 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 19673 earth 1550 REVENUE 1124 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 1060 Cannabis 134650 REVENUE 1897 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 6687 Value4ValueEducation 333250 REVENUE 3270 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 21012 art 26950 REVENUE 1671 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 17147 libertarian 13050 REVENUE 3613 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 17042 stocks 21350 REVENUE 1711 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 5173 Music 100000000 REVENUE 3108 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 2329 ecash 79300 REVENUE 635 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 16042 security 49377 REVENUE 2219 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 21249 polls 85600 REVENUE 2101 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 9329 Design 22000 REVENUE 3467 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 20636 BooksAndArticles 30111 REVENUE 835 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 2195 UFOs 24650 REVENUE 2507 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 19777 DIY 55059 REVENUE 630 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 16809 AMA 1008395 REVENUE 3444 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 624 history 6500 REVENUE 1025 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 12169 oracle 172750 REVENUE 3489 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 18529 gaming 73500 REVENUE 2391 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 1195 ecash 555250 REVENUE 1233 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 16301 culture 5500 REVENUE 3020 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 21274 privacy 341900 REVENUE 3499 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 1488 science 241750 REVENUE 3768 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 20912 Photography 89150 REVENUE 3102 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 17713 bitcoin_beginners 62100 REVENUE 508 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 20509 BooksAndArticles 100000000 REVENUE 204 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 9353 BooksAndArticles 90000 REVENUE 1952 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 828 Photography 158900 REVENUE 2174 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 16309 education 5650 REVENUE 2943 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 20190 A_bit_of_Good_News 554550 REVENUE 49 2024-12-25 02:18:18.552 2024-12-25 02:18:18.552 5444 builders 74250 BILLING 3792 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 20275 Cannabis 26225 REVENUE 1197 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 2338 videos 134650 REVENUE 242 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 11263 mostly_harmless 15900 REVENUE 3395 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 13575 education 343973 REVENUE 1228 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 959 NSFW_porn 92650 REVENUE 669 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 19992 health 2000 REVENUE 3715 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 21701 Stacker_Sports 50000 REVENUE 490 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 7097 A_bit_of_Good_News 171035 REVENUE 325 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 18630 oracle 221200 REVENUE 1781 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 1468 funny 44700 REVENUE 507 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 713 econ 60500 REVENUE 338 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 11897 mostly_harmless 26650 REVENUE 3292 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 6741 DIY 15550 REVENUE 773 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 12102 polls 309400 REVENUE 2699 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 9906 econ 100000000 REVENUE 2176 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 2088 gaming 26750 REVENUE 974 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 1505 Music 50000 REVENUE 1006 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 11522 opensource 31200 REVENUE 746 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 20137 startups 208200 REVENUE 3140 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 12946 AMA 60050 REVENUE 3532 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 11873 UFOs 712850 REVENUE 2620 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 16556 DIY 395543 REVENUE 3742 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 18309 bitcoin_beginners 8084 REVENUE 2949 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 20481 science 41950 REVENUE 2940 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 769 podcasts 3598142 REVENUE 2872 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 1472 movies 153450 REVENUE 2840 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 20906 lol 156389 REVENUE 958 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 5703 Photography 270600 REVENUE 2641 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 15049 Design 392652 REVENUE 3157 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 644 AGORA 157050 REVENUE 1323 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 1307 bitdevs 70600 REVENUE 3503 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 4115 DIY 11750 REVENUE 2936 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 1006 ideasfromtheedge 67750 REVENUE 777 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 2681 crypto 82800 REVENUE 661 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 15146 bitcoin_beginners 8050 REVENUE 2103 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 629 Photography 5550 REVENUE 1056 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 8380 podcasts 1557150 REVENUE 1438 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 20681 videos 100000000 REVENUE 2196 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 1564 Linux 1050 REVENUE 1992 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 10433 NixOS 5000 REVENUE 844 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 2056 gaming 18900 REVENUE 1544 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 16912 Music 92150 REVENUE 3478 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 18601 sanfrancisco 11000 REVENUE 2027 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 16282 Dogs_And_Cats 29197 REVENUE 3728 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 9695 Dogs_And_Cats 27861 REVENUE 3523 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 9494 polls 304630 REVENUE 3111 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 7847 earth 12959795 REVENUE 1380 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 2775 litdevs 298900 REVENUE 971 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 837 NixOS 627350 REVENUE 293 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 913 conspiracy 2600 REVENUE 1292 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 20701 news 59650 REVENUE 3809 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 5978 econ 1488900 REVENUE 2959 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 19952 earth 17000 REVENUE 2100 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 685 gaming 176200 REVENUE 1962 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 9611 Cannabis 8850 REVENUE 3175 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 9334 AMA 15200 REVENUE 804 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 10818 Music 2500 REVENUE 236 2024-12-30 03:16:27.361 2024-12-30 03:16:27.361 895 mempool 213748 BILLING 1918 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 21207 startups 10000 REVENUE 148 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 1584 bitdevs 2850 REVENUE 3311 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 2065 Fitness 12636500 REVENUE 680 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 11164 libertarian 1350 REVENUE 1098 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 18901 libertarian 104045 REVENUE 1539 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 20922 apps 29400 REVENUE 344 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 3506 earth 95700 REVENUE 574 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 8004 ecash 217850 REVENUE 174 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 3377 UFOs 4650 REVENUE 1085 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 4167 christianity 3150 REVENUE 2763 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 20636 Design 68100 REVENUE 2579 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 4323 hiphop 145000 REVENUE 1241 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 5017 Music 77750 REVENUE 2644 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 14503 videos 5950 REVENUE 259 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 698 culture 1055000 REVENUE 1247 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 676 art 53300 REVENUE 3611 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 21164 mostly_harmless 280600 REVENUE 1698 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 18241 science 44500 REVENUE 3666 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 19581 ideasfromtheedge 32100 REVENUE 2200 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 20502 christianity 8800 REVENUE 1728 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 1960 builders 17150 REVENUE 3784 2025-03-27 16:26:06.264 2025-03-27 16:26:06.264 8926 Music 182950 BILLING 2 2024-12-24 04:03:28.811 2024-12-24 04:03:28.811 659 education 57280 BILLING 2043 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 20059 bitdevs 314350 REVENUE 1258 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 20904 news 2225830 REVENUE 83 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 4177 startups 25000 REVENUE 2250 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 21532 gaming 26210250 REVENUE 610 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 5825 Memes 321200 REVENUE 2418 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 15488 science 106050 REVENUE 2009 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 4984 ideasfromtheedge 5000 REVENUE 2518 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 11527 videos 1631380 REVENUE 1460 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 2039 bitdevs 29200 REVENUE 577 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 11829 Dogs_And_Cats 25250 REVENUE 2616 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 19992 videos 76350 REVENUE 1687 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 769 news 314000 REVENUE 2166 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 20205 gaming 735900 REVENUE 131 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 21271 news 90800 REVENUE 2137 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 16296 Mining_Self_Hosting_FOSS 89550 REVENUE 1705 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 1631 crypto 194000 REVENUE 728 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 1438 security 5550 REVENUE 1968 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 21688 Music 256903 REVENUE 1480 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 1761 AGORA 289050 REVENUE 3430 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 19459 Cannabis 64600 REVENUE 3078 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 837 privacy 33500 REVENUE 993 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 5752 Outdoors 1500 REVENUE 1070 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 21103 mostly_harmless 23490 REVENUE 448 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 19346 security 85000 REVENUE 3620 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 20337 lightning 3000 REVENUE 1005 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 1039 privacy 27046 REVENUE 691 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 21083 opensource 9300 REVENUE 3841 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 16350 videos 511350 REVENUE 3530 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 14791 litdevs 22650 REVENUE 3747 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 18265 Photography 32950 REVENUE 1759 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 10063 Dogs_And_Cats 58239 REVENUE 3148 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 20597 news 197200 REVENUE 2060 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 10981 ideasfromtheedge 37300 REVENUE 2125 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 974 chess 50000 REVENUE 3560 2025-03-23 10:46:58.379 2025-03-23 10:46:58.379 2942 bitcoin_beginners 11750 BILLING 3042 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 16309 ru 13650 REVENUE 951 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 16214 bitdevs 13150 REVENUE 510 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 4776 science 82775 REVENUE 3654 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 20551 Music 100000000 REVENUE 173 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 993 econ 5250 REVENUE 2963 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 14465 bitdevs 43900 REVENUE 108 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 17552 econ 147850 REVENUE 2443 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 21088 christianity 13150 REVENUE 103 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 20782 Design 39600 REVENUE 2986 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 15336 bitcoin_beginners 13150 REVENUE 3176 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 16653 earth 10504550 REVENUE 3043 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 692 bitcoin_beginners 46550 REVENUE 3073 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 1124 privacy 25556950 REVENUE 3752 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 5522 Personal_Finance 67200 REVENUE 3223 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 1389 podcasts 129300 REVENUE 1464 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 9362 NixOS 87300 REVENUE 30 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 11477 lightning 105200 REVENUE 756 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 2577 sanfrancisco 12400 REVENUE 2994 2025-03-08 13:11:53.351 2025-03-08 13:11:53.351 14959 BooksAndArticles 55500 BILLING 1273 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 17891 mempool 64950 REVENUE 1537 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 1411 bitdevs 49100 REVENUE 3026 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 4062 A_bit_of_Good_News 100000000 REVENUE 1978 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 7979 AGORA 49700 REVENUE 3763 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 11073 espanol 50000 REVENUE 3501 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 2681 AI 1600 REVENUE 864 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 6463 art 25500 REVENUE 2123 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 4048 bitcoin_beginners 100000000 REVENUE 247 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 917 earth 126100 REVENUE 62 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 5175 history 18100 REVENUE 2265 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 11288 Outdoors 10000 REVENUE 852 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 14651 Value4ValueEducation 60700 REVENUE 3776 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 6360 news 50279 REVENUE 2321 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 18177 history 294650 REVENUE 3517 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 9349 culture 26000 REVENUE 367 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 9517 news 216900 REVENUE 2050 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 1320 bitdevs 31450 REVENUE 2051 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 18069 DIY 53300 REVENUE 2246 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 9705 culture 38555 REVENUE 649 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 21501 bitcoin_beginners 45800 REVENUE 1560 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 20337 bitcoin_beginners 168880 REVENUE 395 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 9655 conspiracy 52870 REVENUE 384 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 6421 news 259375 REVENUE 2896 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 11996 econ 217127 REVENUE 781 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 5499 art 2450 REVENUE 2679 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 17147 videos 1018750 REVENUE 3428 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 16753 oracle 11550 REVENUE 1040 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 9916 japan 2565350 REVENUE 520 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 5694 AMA 328500 REVENUE 20 2024-12-24 13:34:21.623 2024-12-24 13:34:21.623 2942 BooksAndArticles 80500 BILLING 3823 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 18314 news 218700 REVENUE 1760 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 11670 Stacker_Sports 15100 REVENUE 856 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 21279 econ 7700 REVENUE 407 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 18673 Design 6050 REVENUE 2261 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 21291 christianity 11550 REVENUE 2803 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 20646 science 3500 REVENUE 553 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 20963 security 72500 REVENUE 1410 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 2335 earth 33600 REVENUE 2990 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 2963 podcasts 66250 REVENUE 2546 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 5427 DIY 152904 REVENUE 1330 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 5865 japan 10500 REVENUE 3053 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 5519 christianity 16800 REVENUE 3774 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 718 Music 96900 REVENUE 2299 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 20781 Music 3050 REVENUE 1810 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 11516 Stacker_Sports 10000 REVENUE 180 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 18430 science 100000000 REVENUE 2045 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 10611 ideasfromtheedge 68650 REVENUE 1104 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 17030 mostly_harmless 3050 REVENUE 784 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 866 NSFW_porn 655950 REVENUE 428 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 21647 mostly_harmless 44900 REVENUE 3682 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 19217 science 73500 REVENUE 613 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 11885 bitcoin_beginners 3000 REVENUE 2992 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 4345 videos 100000000 REVENUE 1074 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 1320 ru 305635 REVENUE 2408 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 6616 econ 49750 REVENUE 1454 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 17116 earth 3900 REVENUE 3378 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 2942 news 71800 REVENUE 288 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 15239 movies 2100 REVENUE 2892 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 5761 crypto 12997200 REVENUE 1285 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 14910 libertarian 100000000 REVENUE 3050 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 20897 podcasts 163900 REVENUE 1653 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 1162 AI 5000 REVENUE 2349 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 1890 stocks 20150 REVENUE 3513 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 7960 culture 298100 REVENUE 3164 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 11862 Photography 2500 REVENUE 1802 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 21797 health 39700 REVENUE 823 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 627 gaming 28550 REVENUE 307 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 5646 christianity 18173 REVENUE 2642 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 19394 Dogs_And_Cats 3550 REVENUE 143 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 5728 builders 36729 REVENUE 2651 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 17415 lightning 35100 REVENUE 3124 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 794 mempool 110778 REVENUE 457 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 5775 japan 10000 REVENUE 3165 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 11423 Music 171300 REVENUE 3848 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 2640 Ask_SN 13534079 REVENUE 2358 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 11670 history 235700 REVENUE 431 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 19016 BooksAndArticles 5000 REVENUE 3535 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 8376 devs 192039 REVENUE 503 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 13544 gaming 84100 REVENUE 1566 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 16842 econ 104750 REVENUE 95 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 13365 espanol 1050 REVENUE 1693 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 15045 history 13327867 REVENUE 1886 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 13327 oracle 23450 REVENUE 883 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 1038 crypto 129300 REVENUE 1453 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 5557 mempool 43400 REVENUE 3718 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 18734 mempool 152650 REVENUE 3411 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 661 hiphop 9200 REVENUE 319 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 20906 UFOs 3000 REVENUE 1621 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 12721 NixOS 10550 REVENUE 2769 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 21585 health 45494 REVENUE 3147 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 1175 health 66900 REVENUE 3597 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 692 Dogs_And_Cats 100000000 REVENUE 3304 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 21402 DIY 79204 REVENUE 245 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 9843 DIY 398050 REVENUE 70 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 1051 Mining_Self_Hosting_FOSS 49350 REVENUE 1509 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 8469 lightning 44950 REVENUE 3341 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 21047 NixOS 9350 REVENUE 1862 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 2681 startups 50000 REVENUE 487 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 21794 BooksAndArticles 22050 REVENUE 3566 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 1474 Dogs_And_Cats 28650 REVENUE 473 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 9985 opensource 8550 REVENUE 1618 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 13162 DIY 30000 REVENUE 1765 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 17124 radio 25000 REVENUE 3524 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 20554 earth 16100 REVENUE 762 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 21269 bitdevs 281000 REVENUE 2239 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 6030 news 100000000 REVENUE 2633 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 8684 education 113700 REVENUE 1510 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 3506 NixOS 57450 REVENUE 3401 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 18241 apps 76450 REVENUE 286 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 20655 christianity 78007 REVENUE 3272 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 4973 bitcoin_beginners 150500 REVENUE 2433 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 13398 Value4ValueEducation 386550 REVENUE 3197 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 21683 privacy 6600 REVENUE 1773 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 4166 NSFW_porn 5000 REVENUE 1648 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 20616 Dogs_And_Cats 474072 REVENUE 2789 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 12768 Personal_Finance 1277582 REVENUE 2201 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 671 Ask_SN 349550 REVENUE 1007 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 4768 earth 84800 REVENUE 2203 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 20337 hiphop 104800 REVENUE 2118 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 7983 Cannabis 57900 REVENUE 3022 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 2502 christianity 82050 REVENUE 2910 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 13553 Ask_SN 24350 REVENUE 1843 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 18011 mostly_harmless 96550 REVENUE 3850 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 17519 podcasts 24700 REVENUE 1209 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 12819 Dogs_And_Cats 20400 REVENUE 1914 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 1552 Photography 378200 REVENUE 350 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 20979 Photography 26000 REVENUE 782 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 20409 education 316500 REVENUE 1206 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 9334 language_learning 513000 REVENUE 40 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 5637 health 27774 REVENUE 109 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 21079 bitcoin_beginners 118900 REVENUE 1329 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 8173 Photography 5500 REVENUE 712 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 9355 Cannabis 54500 REVENUE 2012 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 12769 science 83900 REVENUE 258 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 956 stocks 20158 REVENUE 1839 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 616 news 153300 REVENUE 3546 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 17275 Music 220479 REVENUE 2025 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 13763 espanol 48650 REVENUE 1396 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 11450 Cannabis 119800 REVENUE 2583 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 11263 ru 51850 REVENUE 3017 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 14271 Fitness 26000 REVENUE 1437 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 11678 art 18335 REVENUE 2527 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 15941 lightning 27250 REVENUE 2924 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 1576 Music 17200 REVENUE 1097 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 20852 food 406750 REVENUE 2311 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 19576 devs 1053369 REVENUE 2985 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 13042 health 14358 REVENUE 813 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 1741 conspiracy 5000 REVENUE 761 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 13055 lightning 6050 REVENUE 2322 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 21338 AMA 27150 REVENUE 1034 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 16259 videos 46800 REVENUE 2553 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 21400 christianity 3000 REVENUE 3671 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 19217 privacy 191600 REVENUE 3205 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 8173 news 101400 REVENUE 3320 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 18430 opensource 66450 REVENUE 2368 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 929 radio 64900 REVENUE 2796 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 1495 Design 78750 REVENUE 2590 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 18274 bitcoin_beginners 55000 REVENUE 820 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 13759 funny 5500 REVENUE 2369 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 5112 news 45850 REVENUE 3696 2025-03-26 10:46:10.851 2025-03-26 10:46:10.851 13177 ru 79005 BILLING 2666 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 11996 oracle 128200 REVENUE 3069 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 963 devs 35590 REVENUE 281 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 1352 devs 16080 REVENUE 903 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 12222 podcasts 23250 REVENUE 626 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 12779 history 18599 REVENUE 1020 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 15337 builders 78892 REVENUE 1186 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 21334 japan 3550 REVENUE 1334 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 13987 opensource 62300 REVENUE 2755 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 2711 videos 10000 REVENUE 1346 2025-01-24 05:20:46.403 2025-01-24 05:20:46.403 17171 security 51200 BILLING 1832 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 9 Dogs_And_Cats 11900 REVENUE 1758 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 2789 art 126600 REVENUE 1613 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 1030 econ 11100 REVENUE 1012 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 13132 builders 6050 REVENUE 3665 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 6653 hiphop 55000 REVENUE 12 2024-12-24 06:38:15.28 2024-12-24 06:38:15.28 20180 Stacker_Sports 603273 BILLING 1263 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 21539 security 100000000 REVENUE 1490 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 20802 videos 31950 REVENUE 1858 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 11314 science 103559 REVENUE 3746 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 18923 health 292400 REVENUE 2519 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 2583 charts 33500 REVENUE 2972 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 20433 history 97700 REVENUE 112 2024-12-27 07:45:27.523 2024-12-27 07:45:27.523 1454 conspiracy 81200 BILLING 753 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 1823 econ 11300 REVENUE 1514 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 8037 Design 40139 REVENUE 1026 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 12278 builders 130150 REVENUE 3593 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 807 bitdevs 5550 REVENUE 2115 2025-02-11 22:21:47.626 2025-02-11 22:21:47.626 13767 Stacker_Sports 123700 BILLING 2382 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 1389 hiphop 83700 REVENUE 1169 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 21498 UFOs 50100 REVENUE 1974 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 4250 hiphop 3000000000 REVENUE 2521 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 2098 builders 512090 REVENUE 3692 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 13547 Value4ValueEducation 5500 REVENUE 2966 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 2513 Stacker_Sports 10000 REVENUE 403 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 777 news 52250 REVENUE 1015 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 20861 videos 24700 REVENUE 603 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 13100 Fitness 6100 REVENUE 658 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 18441 BooksAndArticles 101050 REVENUE 1140 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 16684 videos 554100 REVENUE 1296 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 622 espanol 249350 REVENUE 1075 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 21501 funny 52150 REVENUE 3558 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 21275 AGORA 16000 REVENUE 2086 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 913 Stacker_Sports 401400 REVENUE 3578 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 6393 BooksAndArticles 36200 REVENUE 941 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 12976 AGORA 12000 REVENUE 1318 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 8926 bitcoin_beginners 289700 REVENUE 955 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 21804 NixOS 53100 REVENUE 670 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 8684 podcasts 34850 REVENUE 39 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 21159 security 140400 REVENUE 147 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 16282 charts 18700 REVENUE 3159 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 13055 bitcoin_beginners 46300 REVENUE 1867 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 9307 devs 171000 REVENUE 469 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 2735 Outdoors 225550 REVENUE 1907 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 18225 Cannabis 132550 REVENUE 2774 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 1611 Personal_Finance 1500 REVENUE 2764 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 16842 polls 62950 REVENUE 1702 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 9184 UFOs 10800 REVENUE 3351 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 21798 hiphop 22100 REVENUE 429 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 2347 science 2000 REVENUE 3644 2025-03-25 05:11:45.457 2025-03-25 05:11:45.457 7682 health 52000 BILLING 703 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 1425 podcasts 9700 REVENUE 2597 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 21401 culture 26000 REVENUE 2667 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 16724 history 134800 REVENUE 3477 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 701 Design 83500 REVENUE 1053 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 3417 earth 509200 REVENUE 629 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 1632 polls 567150 REVENUE 220 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 3353 science 1273800 REVENUE 1119 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 16267 libertarian 100000000 REVENUE 2295 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 690 UFOs 121581 REVENUE 3533 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 5173 Dogs_And_Cats 100250 REVENUE 3229 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 5069 videos 4950 REVENUE 3250 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 21374 econ 654386 REVENUE 548 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 21091 econ 65500 REVENUE 2625 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 19403 bitcoin_beginners 143150 REVENUE 1027 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 1002 UFOs 93300 REVENUE 979 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 1012 bitcoin_beginners 42400 REVENUE 567 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 805 Photography 1361250 REVENUE 1876 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 11288 christianity 17650 REVENUE 3254 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 1354 podcasts 132900 REVENUE 1375 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 16124 UFOs 6000 REVENUE 605 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 1136 hiphop 114400 REVENUE 1752 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 4062 econ 14290 REVENUE 888 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 8713 lightning 97750 REVENUE 815 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 19952 Stacker_Sports 11500 REVENUE 3348 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 21424 apps 150475 REVENUE 1597 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 20436 AGORA 1600 REVENUE 1605 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 2204 Music 49300 REVENUE 2136 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 10821 Fitness 104500 REVENUE 1790 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 3656 libertarian 2000 REVENUE 2885 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 2722 AMA 65886 REVENUE 2780 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 20655 BooksAndArticles 207750 REVENUE 388 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 21791 podcasts 218000 REVENUE 650 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 20370 language_learning 853263 REVENUE 1208 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 21044 charts 126650 REVENUE 592 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 17638 UFOs 108850 REVENUE 1766 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 13878 Psychedelics 100000000 REVENUE 861 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 1519 marketplace 23350 REVENUE 353 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 657 AGORA 77350 REVENUE 1441 2025-01-26 00:44:46.333 2025-01-26 00:44:46.333 993 AGORA 31250 BILLING 3178 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 10944 funny 15250 REVENUE 1017 2025-01-17 02:36:55.439 2025-01-17 02:36:55.439 20409 Mining_Self_Hosting_FOSS 49600 BILLING 1895 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 21063 BooksAndArticles 20100 REVENUE 3437 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 2543 news 141400 REVENUE 1205 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 775 privacy 110948 REVENUE 3071 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 21022 UFOs 85250 REVENUE 648 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 1505 health 98500 REVENUE 1173 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 2196 health 57200 REVENUE 2054 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 756 lightning 14555 REVENUE 1534 2025-01-28 08:59:01.028 2025-01-28 08:59:01.028 21766 history 5000 BILLING 1057 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 2829 bitdevs 64500 REVENUE 185 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 19394 AGORA 31200 REVENUE 1367 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 6555 Photography 88150 REVENUE 88 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 19812 language_learning 10000 REVENUE 1837 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 9167 history 13150 REVENUE 2226 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 16229 earth 166007 REVENUE 3694 2025-03-25 14:40:44.606 2025-03-25 14:40:44.606 21214 privacy 28200 BILLING 1272 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 20817 Personal_Finance 453100 REVENUE 188 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 5427 mostly_harmless 87750 REVENUE 3305 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 11515 privacy 555450 REVENUE 3734 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 2232 movies 104987 REVENUE 3110 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 725 Value4ValueEducation 157993 REVENUE 1610 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 680 privacy 1937700 REVENUE 1892 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 12561 radio 26550 REVENUE 3196 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 15588 oracle 226350 REVENUE 2720 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 11648 AGORA 8550 REVENUE 537 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 2789 mostly_harmless 5850 REVENUE 1526 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 20120 devs 53537 REVENUE 1645 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 8245 NixOS 487800 REVENUE 1853 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 19569 Personal_Finance 11225 REVENUE 3476 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 20757 econ 128700 REVENUE 620 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 17212 Ask_SN 16650 REVENUE 1697 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 19494 apps 84600 REVENUE 1261 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 15560 NixOS 199100 REVENUE 2846 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 2203 NSFW_porn 132222 REVENUE 46 2024-12-24 20:11:32.732 2024-12-24 20:11:32.732 2338 mempool 26500 BILLING 1922 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 19966 Memes 81950 REVENUE 2383 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 3377 crypto 551200 REVENUE 2739 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 10433 bitcoin_beginners 78300 REVENUE 3779 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 15273 ecash 11150 REVENUE 3333 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 18309 Cannabis 11250 REVENUE 2288 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 21805 Stacker_Sports 69475 REVENUE 3039 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 15858 devs 5250 REVENUE 1643 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 20970 Dogs_And_Cats 550000 REVENUE 3648 2025-03-25 07:18:33.981 2025-03-25 07:18:33.981 21373 christianity 25200 BILLING 3063 2025-03-10 02:54:02.505 2025-03-10 02:54:02.505 1718 lol 639970 BILLING 2786 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 13249 lightning 5000 REVENUE 1191 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 16684 Ask_SN 5856 REVENUE 1799 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 4250 mempool 157450 REVENUE 2302 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 10280 DIY 160550 REVENUE 2312 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 6148 lightning 25125500 REVENUE 1116 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 15843 videos 10850 REVENUE 1542 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 5904 movies 810984 REVENUE 833 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 15510 privacy 5100 REVENUE 2654 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 1124 lightning 23650 REVENUE 3721 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 2749 AGORA 26450 REVENUE 1185 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 10291 art 272550 REVENUE 2048 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 13843 bitcoin_beginners 6450 REVENUE 3846 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 5775 Stacker_Sports 90100 REVENUE 3866 2025-03-29 20:59:41.857 2025-03-29 20:59:41.857 19094 Linux 22500 BILLING 2190 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 1890 NixOS 706750 REVENUE 2272 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 21766 AI 50000 REVENUE 3711 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 20275 Personal_Finance 197400 REVENUE 3179 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 1236 oracle 900000000 REVENUE 446 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 20294 mempool 105900 REVENUE 678 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 13798 Dogs_And_Cats 54700 REVENUE 2761 2025-02-28 20:33:28.667 2025-02-28 20:33:28.667 21131 econ 130300 BILLING 1841 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 913 christianity 50000 REVENUE 2236 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 21058 bitdevs 103150 REVENUE 1082 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 20062 opensource 90800 REVENUE 1520 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 14271 earth 5000 REVENUE 3554 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 678 gaming 37500 REVENUE 3586 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 2329 ru 24400 REVENUE 177 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 19121 ideasfromtheedge 173900 REVENUE 2874 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 2232 builders 50000 REVENUE 1311 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 661 BooksAndArticles 224200 REVENUE 3200 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 3504 education 26500 REVENUE 3526 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 21405 AI 24600 REVENUE 1788 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 882 Design 106100 REVENUE 2697 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 1800 mostly_harmless 55700 REVENUE 837 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 21247 Outdoors 30800 REVENUE 2438 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 750 movies 47100 REVENUE 2928 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 18271 news 53300 REVENUE 3670 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 17124 hiphop 10000 REVENUE 1750 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 1585 privacy 3050 REVENUE 3664 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 5757 science 329350 REVENUE 1202 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 12507 ideasfromtheedge 35000 REVENUE 3847 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 1272 earth 107380 REVENUE 2723 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 21140 NixOS 40300 REVENUE 437 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 621 Memes 5000 REVENUE 521 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 5195 hiphop 12150 REVENUE 2199 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 21247 culture 26659 REVENUE 579 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 21666 charts 96650 REVENUE 2810 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 18313 lightning 52050 REVENUE 3047 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 19292 UFOs 35550 REVENUE 1333 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 3656 news 232500 REVENUE 1512 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 9026 japan 13800 REVENUE 2700 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 14195 Stacker_Sports 3173350 REVENUE 1540 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 16456 Music 8550 REVENUE 2210 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 9346 security 416850 REVENUE 59 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 14905 lol 43450 REVENUE 54 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 17109 AGORA 17050 REVENUE 739 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 1245 Music 1158403 REVENUE 1154 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 16301 lol 1304650 REVENUE 645 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 13587 bitcoin_beginners 232250 REVENUE 2296 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 8176 privacy 71300 REVENUE 502 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 8004 conspiracy 121700 REVENUE 152 2024-12-28 06:15:08.328 2024-12-28 06:15:08.328 902 Dogs_And_Cats 335000 BILLING 699 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 17014 news 19600 REVENUE 1402 2025-01-25 13:22:20.199 2025-01-25 13:22:20.199 17221 art 113900 BILLING 1572 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 6430 gaming 15000 REVENUE 1674 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 9367 AGORA 38000 REVENUE 1943 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 11288 art 39800 REVENUE 818 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 16680 devs 127100 REVENUE 1171 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 9275 NSFW_porn 501050 REVENUE 1016 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 17106 privacy 115000 REVENUE 3719 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 21829 econ 488223 REVENUE 2129 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 19484 bitdevs 574003 REVENUE 1703 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 12188 devs 473150 REVENUE 873 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 21303 health 24850 REVENUE 3528 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 2722 A_bit_of_Good_News 71600 REVENUE 296 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 19812 health 50050 REVENUE 1394 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 8498 culture 100000000 REVENUE 3263 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 19303 Photography 320630 REVENUE 1150 2025-01-19 23:46:59.901 2025-01-19 23:46:59.901 21275 econ 482389 BILLING 845 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 1394 builders 2100 REVENUE 1863 2025-02-05 11:28:11.841 2025-02-05 11:28:11.841 8080 Mining_Self_Hosting_FOSS 96964 BILLING 1189 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 13216 Music 737850 REVENUE 2146 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 13076 japan 59100 REVENUE 1078 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 17082 hiphop 75400 REVENUE 303 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 15148 events 16050 REVENUE 69 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 19888 podcasts 69550 REVENUE 2698 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 1740 libertarian 8100 REVENUE 2089 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 1488 AMA 7650 REVENUE 3046 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 18274 builders 19100 REVENUE 1212 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 2233 crypto 70300 REVENUE 1190 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 1468 movies 76150 REVENUE 530 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 20849 education 23669 REVENUE 2829 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 4819 Fitness 148266 REVENUE 726 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 20370 ru 276172 REVENUE 1456 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 10862 earth 791119 REVENUE 2883 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 10519 DIY 19850 REVENUE 3431 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 2203 bitcoin_beginners 514850 REVENUE 3368 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 15690 videos 6900 REVENUE 2621 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 1209 Design 6100 REVENUE 1358 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 803 culture 3000000000 REVENUE 3468 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 671 libertarian 114250 REVENUE 1236 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 17824 movies 238295 REVENUE 1890 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 20201 Ask_SN 227769 REVENUE 1399 2025-01-24 21:13:00.595 2025-01-24 21:13:00.595 1002 Cannabis 267350 BILLING 3001 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 16653 startups 110109 REVENUE 3314 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 20636 science 25850 REVENUE 3091 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 20881 podcasts 33150 REVENUE 789 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 20691 christianity 225930 REVENUE 1175 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 715 NSFW_porn 23050 REVENUE 2980 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 6741 AGORA 595650 REVENUE 3441 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 12819 DIY 396950 REVENUE 2007 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 20756 science 100000000 REVENUE 3568 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 19812 art 772150 REVENUE 171 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 3745 security 365700 REVENUE 1294 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 18017 earth 36450 REVENUE 144 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 1092 conspiracy 50100 REVENUE 2132 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 20891 AGORA 100000000 REVENUE 1585 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 959 art 72948 REVENUE 3807 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 11992 privacy 140950 REVENUE 51 2024-12-25 05:39:08.138 2024-12-25 05:39:08.138 1960 lightning 324117 BILLING 2121 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 13987 videos 21700 REVENUE 1390 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 17976 art 17061 REVENUE 594 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 21408 christianity 111950 REVENUE 1961 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 17415 Stacker_Sports 256000 REVENUE 260 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 21389 charts 140350 REVENUE 299 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 10270 libertarian 167955 REVENUE 3016 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 5646 bitdevs 7100 REVENUE 734 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 4538 UFOs 256400 REVENUE 1335 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 14663 security 10500 REVENUE 1384 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 1236 libertarian 53450 REVENUE 3545 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 14376 bitcoin_beginners 100000000 REVENUE 2854 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 20481 lightning 189700 REVENUE 74 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 14080 AGORA 506950 REVENUE 3152 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 10986 econ 56150 REVENUE 3366 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 766 lightning 11000 REVENUE 1419 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 21455 movies 183600 REVENUE 1980 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 12220 builders 55000 REVENUE 3231 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 1490 DIY 65400 REVENUE 3781 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 11967 bitcoin_beginners 62652 REVENUE 2233 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 21685 ideasfromtheedge 50250 REVENUE 2145 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 14857 sanfrancisco 120300 REVENUE 932 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 1692 libertarian 516400 REVENUE 2794 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 6765 japan 79400 REVENUE 379 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 20137 builders 85200 REVENUE 2135 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 16970 conspiracy 10000 REVENUE 3299 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 17212 science 42900 REVENUE 1165 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 1352 AMA 1393200 REVENUE 1213 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 6360 devs 10000 REVENUE 2816 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 21042 charts 129100 REVENUE 494 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 2734 history 70250 REVENUE 523 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 17638 japan 79799 REVENUE 3574 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 8176 AGORA 9300 REVENUE 410 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 17696 health 26050 REVENUE 2362 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 4035 funny 573795 REVENUE 441 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 15544 UFOs 110700 REVENUE 539 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 5112 bitcoin_beginners 31500 REVENUE 2623 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 21599 Ask_SN 2133900 REVENUE 912 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 20717 art 9000 REVENUE 966 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 21418 Ask_SN 88690 REVENUE 1203 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 21422 opensource 568600 REVENUE 227 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 11621 polls 8800 REVENUE 2452 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 20502 polls 24180 REVENUE 1840 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 4798 videos 25750 REVENUE 517 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 18637 bitcoin_beginners 35358 REVENUE 1696 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 1741 ecash 14700 REVENUE 1828 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 11491 earth 13500 REVENUE 1482 2025-01-27 06:01:39.854 2025-01-27 06:01:39.854 21338 Mining_Self_Hosting_FOSS 82305 BILLING 3059 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 2528 health 106229 REVENUE 67 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 9184 Photography 5000 REVENUE 2147 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 3353 Music 183700 REVENUE 1949 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 16432 earth 8050 REVENUE 1479 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 4474 chess 50550 REVENUE 755 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 18829 japan 50050 REVENUE 1463 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 638 Dogs_And_Cats 118950 REVENUE 2694 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 1697 Music 118050 REVENUE 1587 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 20717 funny 2100 REVENUE 2127 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 20892 lightning 108150 REVENUE 2826 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 7668 lol 202998 REVENUE 132 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 21166 privacy 5850 REVENUE 17 2024-12-24 08:54:38.006 2024-12-24 08:54:38.006 4314 Dogs_And_Cats 203500 BILLING 3589 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 1136 bitcoin_beginners 154700 REVENUE 3302 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 19417 privacy 185250 REVENUE 2934 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 5425 AMA 106982 REVENUE 3702 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 749 news 92683 REVENUE 3863 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 5522 econ 123600 REVENUE 1184 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 12769 health 79700 REVENUE 3262 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 11165 science 131235 REVENUE 985 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 13378 DIY 183150 REVENUE 1386 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 1135 Memes 244400 REVENUE 892 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 4763 privacy 150500 REVENUE 1413 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 16966 Outdoors 9200 REVENUE 1785 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 732 art 112988 REVENUE 1062 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 5746 polls 139675 REVENUE 3137 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 7827 devs 220590 REVENUE 2067 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 910 espanol 100000000 REVENUE 1893 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 18901 hiphop 19750 REVENUE 1549 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 17570 Music 5500 REVENUE 3812 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 21603 BooksAndArticles 30400 REVENUE 2593 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 9337 Memes 327450 REVENUE 2453 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 20599 Design 112500 REVENUE 642 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 14385 A_bit_of_Good_News 52700 REVENUE 391 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 21145 Music 46450 REVENUE 602 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 16229 videos 23200 REVENUE 2671 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 16948 libertarian 10500 REVENUE 3317 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 1009 news 870639 REVENUE 1704 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 7674 Music 5000 REVENUE 76 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 16301 hiphop 226250 REVENUE 3844 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 5776 BooksAndArticles 186482 REVENUE 1094 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 2670 BooksAndArticles 131950 REVENUE 3309 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 2593 Value4ValueEducation 55850 REVENUE 486 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 9330 Stacker_Sports 44800 REVENUE 497 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 19198 NixOS 23900 REVENUE 2323 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 21357 UFOs 283600 REVENUE 2501 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 11314 polls 266500 REVENUE 3376 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 3461 sanfrancisco 38393 REVENUE 380 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 20222 gaming 40250 REVENUE 2969 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 4345 christianity 45950 REVENUE 2573 2025-02-24 06:38:15.925 2025-02-24 06:38:15.925 16847 privacy 11000 BILLING 980 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 1244 sanfrancisco 126200 REVENUE 3416 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 685 earth 15550 REVENUE 905 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 12139 culture 6000 REVENUE 1304 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 5779 movies 273250 REVENUE 3651 2025-03-25 11:17:30.929 2025-03-25 11:17:30.929 21248 education 8000 BILLING 32 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 21424 health 93900 REVENUE 3618 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 998 UFOs 12650 REVENUE 2465 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 19996 movies 20945 REVENUE 1695 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 2206 culture 2150 REVENUE 2841 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 21296 Ask_SN 708184 REVENUE 1436 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 20225 sanfrancisco 21000 REVENUE 1838 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 21238 movies 10100 REVENUE 3190 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 18330 Memes 83100 REVENUE 2511 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 711 BooksAndArticles 56450 REVENUE 2726 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 19826 opensource 623859 REVENUE 677 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 732 BooksAndArticles 4550 REVENUE 2109 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 16769 BooksAndArticles 13250 REVENUE 1691 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 17991 Music 2500 REVENUE 2719 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 3504 B2B 8400 REVENUE 119 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 11515 christianity 10300 REVENUE 869 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 2789 art 121150 REVENUE 1365 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 20613 opensource 59100 REVENUE 825 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 16598 Dogs_And_Cats 5050 REVENUE 2263 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 721 food 13050 REVENUE 1353 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 20681 chess 16900 REVENUE 452 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 20745 dotnet 100000000 REVENUE 3308 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 16571 art 237745 REVENUE 1179 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 1495 privacy 181700 REVENUE 1354 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 14818 gaming 1250 REVENUE 2981 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 17014 espanol 120646 REVENUE 3346 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 14381 health 106000 REVENUE 654 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 13042 events 26000 REVENUE 3085 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 12139 culture 2738 REVENUE 2185 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 18618 ecash 154251 REVENUE 1282 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 20613 Outdoors 364900 REVENUE 421 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 17331 security 25250 REVENUE 113 2024-12-27 07:53:45.583 2024-12-27 07:53:45.583 3504 privacy 106000 BILLING 1604 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 749 econ 59188 REVENUE 3617 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 19417 hiphop 1055000 REVENUE 2117 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 11220 BooksAndArticles 37400 REVENUE 3032 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 1729 security 21550 REVENUE 532 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 18673 podcasts 74950 REVENUE 822 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 20776 builders 72950 REVENUE 396 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 21430 Music 8790 REVENUE 3569 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 21148 mostly_harmless 10550 REVENUE 884 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 674 science 69200 REVENUE 1583 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 20706 Fitness 266850 REVENUE 657 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 6160 opensource 227359 REVENUE 342 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 16912 history 592540 REVENUE 3269 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 21014 Stacker_Sports 53450 REVENUE 1283 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 6687 Outdoors 69950 REVENUE 518 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 5173 christianity 27550 REVENUE 555 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 976 Stacker_Sports 125300 REVENUE 3218 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 624 Dogs_And_Cats 225300 REVENUE 3107 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 18270 bitdevs 22500 REVENUE 1636 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 21485 builders 569600 REVENUE 1483 2025-01-27 07:53:45.8 2025-01-27 07:53:45.8 11158 podcasts 2192200 BILLING 623 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 4345 opensource 70100 REVENUE 1912 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 20825 Cannabis 173150 REVENUE 956 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 17541 security 365045 REVENUE 2772 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 5293 podcasts 106315 REVENUE 2195 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 14376 gaming 644150 REVENUE 2366 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 19863 crypto 112150 REVENUE 1829 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 17690 food 239950 REVENUE 3353 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 622 culture 5250 REVENUE 3021 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 12245 science 243950 REVENUE 439 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 6335 AccessTribe 186300 REVENUE 798 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 1272 builders 10000 REVENUE 3577 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 4415 stocks 2500 REVENUE 2695 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 2734 news 177250 REVENUE 199 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 4238 AGORA 100000000 REVENUE 3056 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 9036 charts 200500 REVENUE 2150 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 16176 food 23600 REVENUE 2003 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 18011 stocks 106900 REVENUE 1625 2025-01-30 06:11:12.062 2025-01-30 06:11:12.062 16816 oracle 35300 BILLING 1755 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 5003 Stacker_Sports 7500 REVENUE 663 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 14122 ideasfromtheedge 83750 REVENUE 3522 2025-03-22 05:50:23.315 2025-03-22 05:50:23.315 21067 NixOS 129050 BILLING 2376 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 9496 litdevs 96714 REVENUE 2493 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 21647 devs 282341 REVENUE 2417 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 1006 DIY 10000 REVENUE 1769 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 686 culture 5000 REVENUE 2520 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 19759 BooksAndArticles 126300 REVENUE 9 2024-12-24 05:58:56.615 2024-12-24 05:58:56.615 20681 language_learning 14358880 BILLING 3357 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 20776 Dogs_And_Cats 15300 REVENUE 3193 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 18441 earth 25050 REVENUE 3398 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 2735 health 5000 REVENUE 1308 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 18772 Stacker_Sports 1500 REVENUE 568 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 21430 mostly_harmless 19450 REVENUE 351 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 1008 BooksAndArticles 110000 REVENUE 278 2024-12-31 01:43:50.057 2024-12-31 01:43:50.057 21022 AGORA 24600 BILLING 2097 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 16432 NixOS 129800 REVENUE 1936 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 2961 Value4ValueEducation 871135 REVENUE 2055 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 21418 charts 157450 REVENUE 1284 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 11590 Music 843200 REVENUE 2670 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 15536 Dogs_And_Cats 21885 REVENUE 52 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 9356 devs 10372 REVENUE 3235 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 2061 podcasts 11350 REVENUE 3298 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 16695 bitcoin_beginners 12941350 REVENUE 3060 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 2710 security 118050 REVENUE 3295 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 15662 podcasts 293650 REVENUE 2677 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 10586 christianity 95650 REVENUE 427 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 20310 litdevs 36400 REVENUE 1079 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 18231 podcasts 29250 REVENUE 2899 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 15060 Personal_Finance 28300 REVENUE 58 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 16680 Music 19750 REVENUE 1846 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 11885 Music 21500 REVENUE 394 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 616 NSFW_porn 100000000 REVENUE 2020 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 10094 UFOs 49990 REVENUE 121 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 18402 earth 7350 REVENUE 1861 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 1552 science 33550 REVENUE 609 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 20642 privacy 27400 REVENUE 1431 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 644 Outdoors 8050 REVENUE 692 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 10849 Ask_SN 1573750 REVENUE 3313 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 8037 Music 193200 REVENUE 3266 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 999 Music 5500 REVENUE 1857 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 2749 opensource 31950 REVENUE 2838 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 7818 devs 100000000 REVENUE 838 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 16966 Stacker_Sports 995095 REVENUE 3381 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 17976 art 14122 REVENUE 301 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 20734 hiphop 27050 REVENUE 2082 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 21815 Mining_Self_Hosting_FOSS 21250 REVENUE 1956 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 2711 mempool 100000000 REVENUE 334 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 2961 Personal_Finance 10500 REVENUE 1721 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 14990 BooksAndArticles 68200 REVENUE 2771 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 21064 Dogs_And_Cats 154300 REVENUE 210 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 705 culture 1150 REVENUE 936 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 20619 earth 30885 REVENUE 2987 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 18306 dotnet 74350 REVENUE 848 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 998 econ 5300 REVENUE 3703 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 18473 Stacker_Sports 16550 REVENUE 3221 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 9552 charts 58500 REVENUE 2788 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 826 movies 116150 REVENUE 3750 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 2596 bitdevs 536435 REVENUE 1141 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 3979 ideasfromtheedge 15000 REVENUE 405 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 1209 ideasfromtheedge 14253800 REVENUE 2171 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 15577 health 54598 REVENUE 1415 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 20019 opensource 26000 REVENUE 153 2024-12-28 13:51:51.216 2024-12-28 13:51:51.216 15049 health 40000 BILLING 596 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 6602 bitcoin_beginners 66800 REVENUE 1805 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 2780 oracle 35250 REVENUE 2565 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 10698 AccessTribe 20550 REVENUE 1239 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 3342 DIY 10000 REVENUE 2635 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 946 polls 604200 REVENUE 3244 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 712 econ 251995 REVENUE 3066 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 17172 education 515200 REVENUE 3827 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 21631 chess 226400 REVENUE 2718 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 13399 videos 425500 REVENUE 1176 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 21003 econ 9750 REVENUE 2536 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 992 econ 66850 REVENUE 2141 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 8945 podcasts 15700 REVENUE 362 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 638 AI 100000000 REVENUE 3662 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 17094 Design 91400 REVENUE 2900 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 20683 Photography 256000 REVENUE 3724 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 1122 Ask_SN 53000 REVENUE 266 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 15728 Photography 12772750 REVENUE 819 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 21532 UFOs 77350 REVENUE 3536 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 15239 Photography 1006500 REVENUE 2031 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 1082 DeepDive 5000 REVENUE 232 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 18351 BooksAndArticles 53800 REVENUE 270 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 9796 bitcoin_beginners 76150 REVENUE 2426 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 10291 hiphop 10000 REVENUE 169 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 15560 ecash 15050 REVENUE 1092 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 4083 opensource 207400 REVENUE 1500 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 14449 oracle 50000 REVENUE 2209 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 21349 health 61850 REVENUE 3770 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 20972 lightning 16550 REVENUE 1979 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 18231 BooksAndArticles 5500 REVENUE 597 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 20683 Dogs_And_Cats 43682 REVENUE 238 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 19121 news 25000 REVENUE 1021 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 20701 builders 436850 REVENUE 3704 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 2519 education 257450 REVENUE 2286 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 1439 mostly_harmless 59700 REVENUE 3117 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 12609 privacy 1450 REVENUE 2473 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 21647 history 7150 REVENUE 3473 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 1310 security 171950 REVENUE 2079 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 8472 hiphop 240700 REVENUE 1969 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 5557 news 8650 REVENUE 474 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 19394 culture 158550 REVENUE 433 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 20058 Design 125350 REVENUE 415 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 17411 Memes 60700 REVENUE 1611 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 670 AGORA 4200 REVENUE 3389 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 11527 health 8050 REVENUE 1038 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 691 Photography 79700 REVENUE 2441 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 697 econ 100000000 REVENUE 1849 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 16353 AI 11328 REVENUE 3655 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 16513 Cannabis 267445 REVENUE 1403 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 2459 crypto 37524 REVENUE 580 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 18743 health 11900 REVENUE 3403 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 16124 devs 29041 REVENUE 3553 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 4079 opensource 667565 REVENUE 389 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 11314 AGORA 12908500 REVENUE 3854 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 2593 devs 17933650 REVENUE 1835 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 14515 econ 113000 REVENUE 84 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 21526 funny 235200 REVENUE 3539 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 14990 oracle 201300 REVENUE 3414 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 15386 christianity 79622 REVENUE 653 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 21451 Ask_SN 604950 REVENUE 1615 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 18069 A_bit_of_Good_News 10050 REVENUE 3804 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 15408 privacy 150250 REVENUE 1204 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 11678 mostly_harmless 413095 REVENUE 895 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 18618 Outdoors 9910 REVENUE 1110 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 11091 Design 293300 REVENUE 886 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 1611 food 22980 REVENUE 3324 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 672 oracle 197950 REVENUE 1138 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 12870 security 86000 REVENUE 1452 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 11145 Design 25250 REVENUE 2822 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 16424 funny 75250 REVENUE 42 2024-12-24 18:24:27.138 2024-12-24 18:24:27.138 4415 Photography 111000 BILLING 1663 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 657 earth 177950 REVENUE 2636 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 4973 Stacker_Sports 100000000 REVENUE 3673 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 2652 oracle 382610 REVENUE 916 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 5725 BooksAndArticles 87800 REVENUE 1708 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 16769 education 10500 REVENUE 479 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 6463 lightning 37700 REVENUE 1772 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 8326 Outdoors 20300 REVENUE 1898 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 9351 Stacker_Sports 201969 REVENUE 1723 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 16754 builders 65550 REVENUE 2600 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 21140 oracle 18750 REVENUE 651 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 21514 Outdoors 7400 REVENUE 294 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 1352 Music 56550 REVENUE 2046 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 16978 bitdevs 28550 REVENUE 2037 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 979 health 12649000 REVENUE 1562 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 10302 BooksAndArticles 58050 REVENUE 1634 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 9036 science 52100 REVENUE 3237 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 2952 Memes 21650 REVENUE 1301 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 20891 history 35077 REVENUE 1740 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 7847 mempool 98750 REVENUE 1170 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 3990 builders 164949 REVENUE 1363 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 9356 Dogs_And_Cats 132200 REVENUE 3862 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 7389 Dogs_And_Cats 104900 REVENUE 65 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 19094 videos 1050 REVENUE 834 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 756 ideasfromtheedge 167150 REVENUE 1598 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 15336 Cannabis 180248 REVENUE 1798 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 17321 devs 5500 REVENUE 26 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 9874 hiphop 33845 REVENUE 2510 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 10519 Ask_SN 813450 REVENUE 3699 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 15488 security 16050 REVENUE 768 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 7827 history 54050 REVENUE 3497 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 20745 lightning 71950 REVENUE 2672 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 10291 espanol 63050 REVENUE 1306 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 21766 charts 312730 REVENUE 972 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 20778 education 138450 REVENUE 414 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 4831 opensource 14975 REVENUE 3009 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 21249 security 10500 REVENUE 253 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 20782 AI 1050 REVENUE 563 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 623 bitdevs 351350 REVENUE 1903 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 18468 ru 111954 REVENUE 2542 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 2460 lightning 1750 REVENUE 512 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 21494 art 98900 REVENUE 3778 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 15890 ideasfromtheedge 89300 REVENUE 2234 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 21208 Music 1000000000 REVENUE 727 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 2832 hiphop 66050 REVENUE 1524 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 1141 AGORA 2150 REVENUE 679 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 11621 NixOS 1100 REVENUE 2421 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 1611 devs 36850 REVENUE 696 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 14255 stocks 6300 REVENUE 3861 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 16876 Music 68850 REVENUE 3688 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 2156 apps 671700 REVENUE 2451 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 4474 UFOs 130150 REVENUE 3426 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 17944 science 1333100 REVENUE 1737 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 17710 NixOS 775850 REVENUE 3723 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 714 videos 80635 REVENUE 3756 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 14489 Dogs_And_Cats 21000 REVENUE 552 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 782 crypto 74849 REVENUE 2444 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 1454 libertarian 388400 REVENUE 1523 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 11523 bitdevs 102900 REVENUE 3855 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 19117 builders 10800 REVENUE 2509 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 2609 science 2100 REVENUE 86 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 20019 podcasts 27995 REVENUE 2643 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 19193 ecash 44300 REVENUE 398 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 18313 Photography 15650 REVENUE 627 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 1626 builders 250661 REVENUE 38 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 1626 oracle 3000000000 REVENUE 538 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 979 NixOS 100050 REVENUE 2348 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 2326 chess 55750 REVENUE 3322 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 15526 libertarian 149050 REVENUE 3228 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 7966 UFOs 100000000 REVENUE 2029 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 1726 AGORA 15250 REVENUE 3130 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 7960 Stacker_Sports 100000000 REVENUE 1612 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 2123 health 119850 REVENUE 374 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 2844 A_bit_of_Good_News 146750 REVENUE 1155 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 20225 Memes 32311 REVENUE 2057 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 16633 ru 55000 REVENUE 1718 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 1198 opensource 116619 REVENUE 621 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 20904 security 327650 REVENUE 3094 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 13076 art 100000000 REVENUE 3212 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 5828 Music 36700 REVENUE 890 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 717 Photography 5000 REVENUE 2222 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 19570 hiphop 218650 REVENUE 333 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 746 ecash 16450 REVENUE 1004 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 21058 DIY 28155 REVENUE 194 2024-12-29 02:32:12.788 2024-12-29 02:32:12.788 13843 news 115500 BILLING 2179 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 20624 lightning 59314 REVENUE 465 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 15474 Stacker_Sports 8500 REVENUE 1121 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 21136 japan 161900 REVENUE 1584 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 16387 Music 10050 REVENUE 291 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 4259 NixOS 65600 REVENUE 3018 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 9337 BooksAndArticles 89200 REVENUE 3808 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 664 DeepDive 104700 REVENUE 3216 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 17171 litdevs 5000 REVENUE 264 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 1141 health 45000 REVENUE 2401 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 1785 lightning 193400 REVENUE 3233 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 15139 polls 51600 REVENUE 759 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 1272 charts 208000 REVENUE 1954 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 21603 bitdevs 63651 REVENUE 254 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 14220 privacy 50500 REVENUE 578 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 2513 news 10100 REVENUE 1771 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 16124 oracle 400906 REVENUE 2492 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 16284 VirtualReality 55000 REVENUE 868 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 730 movies 622795 REVENUE 1178 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 11992 ecash 145200 REVENUE 581 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 3656 podcasts 100395 REVENUE 3630 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 20381 Photography 68150 REVENUE 1248 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 1272 Music 601554 REVENUE 2821 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 21578 opensource 120250 REVENUE 821 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 19569 lightning 99100 REVENUE 1158 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 4989 dotnet 8500 REVENUE 1734 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 9341 Music 116950 REVENUE 300 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 16284 UFOs 913180 REVENUE 2831 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 12483 BooksAndArticles 2100 REVENUE 2862 2025-03-04 09:53:31.472 2025-03-04 09:53:31.472 733 BooksAndArticles 83529 BILLING 632 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 798 history 44550 REVENUE 3786 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 19821 libertarian 53200 REVENUE 381 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 4958 builders 70550 REVENUE 3101 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 7766 art 55500 REVENUE 2727 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 11038 ecash 130700 REVENUE 3404 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 14357 security 211800 REVENUE 2035 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 11018 bitcoin_beginners 6936 REVENUE 2750 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 10698 art 137385 REVENUE 2713 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 6149 startups 25550 REVENUE 1741 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 15337 DeepDive 15500 REVENUE 347 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 18637 gaming 16500 REVENUE 239 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 16598 conspiracy 12550 REVENUE 964 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 16126 Outdoors 23550 REVENUE 2728 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 15719 DIY 64389 REVENUE 2591 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 777 polls 2607 REVENUE 2446 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 670 AI 44400 REVENUE 631 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 16309 devs 21900 REVENUE 2053 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 928 health 25900 REVENUE 1146 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 9084 Value4ValueEducation 117050 REVENUE 2951 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 10112 libertarian 167630 REVENUE 3639 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 17172 NixOS 5000 REVENUE 504 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 9364 Outdoors 44900 REVENUE 289 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 17517 oracle 3950 REVENUE 1128 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 2620 BooksAndArticles 41950 REVENUE 3122 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 21833 Cannabis 269650 REVENUE 7 2024-12-24 05:14:47.153 2024-12-24 05:14:47.153 12278 radio 186950 BILLING 3062 2025-03-10 00:58:31.549 2025-03-10 00:58:31.549 618 BooksAndArticles 109800 BILLING 1115 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 1584 B2B 848250 REVENUE 3820 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 656 movies 84730 REVENUE 870 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 16410 Outdoors 102800 REVENUE 2660 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 12736 christianity 1045218 REVENUE 564 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 12561 AMA 123400 REVENUE 801 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 17365 radio 5000 REVENUE 358 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 638 chess 54250 REVENUE 3077 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 19673 UFOs 157150 REVENUE 1221 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 1773 Design 79950 REVENUE 1588 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 9494 health 305000 REVENUE 1219 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 9758 news 119544 REVENUE 2908 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 13798 mostly_harmless 27100 REVENUE 2674 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 21666 gaming 279771 REVENUE 2852 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 7674 NixOS 100000000 REVENUE 2618 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 21022 news 76445 REVENUE 3491 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 15103 Mining_Self_Hosting_FOSS 4800 REVENUE 2306 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 9331 Outdoors 14750 REVENUE 3095 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 18637 Stacker_Sports 1050 REVENUE 2664 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 18309 econ 5000 REVENUE 3510 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 1493 AccessTribe 1000000000 REVENUE 566 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 1094 culture 138900 REVENUE 1024 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 12562 science 324050 REVENUE 2361 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 5746 privacy 54350 REVENUE 3383 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 11798 videos 186200 REVENUE 1297 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 17172 hiphop 5000 REVENUE 2834 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 8498 Dogs_And_Cats 11000 REVENUE 1177 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 9171 lightning 1031180 REVENUE 1638 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 18441 sanfrancisco 10150 REVENUE 3549 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 16442 japan 1050 REVENUE 1290 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 12951 security 355318 REVENUE 2483 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 16447 opensource 403052 REVENUE 326 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 2952 gaming 36500 REVENUE 2930 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 20152 opensource 248100 REVENUE 919 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 13587 sanfrancisco 210000 REVENUE 2163 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 4084 videos 218700 REVENUE 2430 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 965 gaming 11050 REVENUE 604 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 15549 libertarian 165300 REVENUE 179 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 5359 charts 21300 REVENUE 322 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 15762 ideasfromtheedge 19550 REVENUE 2468 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 696 events 115150 REVENUE 668 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 21798 econ 11350 REVENUE 721 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 16816 lightning 5000 REVENUE 1630 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 21444 builders 307829 REVENUE 1738 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 11018 NSFW_porn 38950 REVENUE 1993 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 8245 videos 54150 REVENUE 2710 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 16571 BooksAndArticles 100000000 REVENUE 2722 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 2596 health 266880 REVENUE 1917 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 21520 movies 1700 REVENUE 2289 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 1307 health 6200 REVENUE 1113 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 1769 BooksAndArticles 85050 REVENUE 3753 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 9333 lightning 16550 REVENUE 666 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 775 AGORA 3000 REVENUE 901 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 5487 Design 64478 REVENUE 3816 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 5828 A_bit_of_Good_News 130045 REVENUE 3163 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 14449 lightning 157441 REVENUE 3450 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 2711 podcasts 100000000 REVENUE 1373 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 21063 christianity 81250 REVENUE 2317 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 9242 Music 168800 REVENUE 390 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 4128 bitdevs 2100 REVENUE 3464 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 12870 science 23370 REVENUE 3167 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 2156 AMA 125200 REVENUE 2873 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 5828 espanol 26550 REVENUE 1491 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 2459 apps 163700 REVENUE 3434 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 8326 gaming 19150 REVENUE 3015 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 11670 Music 9900 REVENUE 593 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 20691 ecash 11500 REVENUE 2432 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 10060 movies 43500 REVENUE 1286 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 2156 AMA 1500 REVENUE 1575 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 21577 videos 15650 REVENUE 272 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 2543 Linux 100000000 REVENUE 1427 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 17316 history 2703400 REVENUE 2273 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 15226 devs 278350 REVENUE 2811 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 15196 Stacker_Sports 8750 REVENUE 1081 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 11897 econ 100000000 REVENUE 2010 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 7978 BooksAndArticles 141150 REVENUE 2204 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 9916 Personal_Finance 75859 REVENUE 817 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 21012 culture 25500 REVENUE 221 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 9920 science 22000 REVENUE 3173 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 21430 Outdoors 10500 REVENUE 779 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 7979 health 181800 REVENUE 943 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 19512 radio 362314 REVENUE 2525 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 18430 Personal_Finance 217050 REVENUE 2345 2025-02-18 02:47:35.23 2025-02-18 02:47:35.23 20495 health 16550 BILLING 3335 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 21303 Photography 50000 REVENUE 3448 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 5725 gaming 22550 REVENUE 1135 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 11417 podcasts 10000 REVENUE 2955 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 20294 oracle 17650 REVENUE 3005 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 2773 NixOS 282364 REVENUE 3224 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 928 history 112650 REVENUE 2950 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 20450 japan 609050 REVENUE 1635 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 21178 builders 502300 REVENUE 1804 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 8570 econ 32385 REVENUE 3294 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 21815 econ 650300 REVENUE 312 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 19813 UFOs 5000 REVENUE 3678 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 14357 BooksAndArticles 1088550 REVENUE 794 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 12609 art 223700 REVENUE 3681 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 13575 chess 19350 REVENUE 1052 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 17201 builders 17800 REVENUE 2537 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 12779 econ 50000 REVENUE 591 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 10849 sanfrancisco 40050 REVENUE 737 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 814 econ 3250 REVENUE 2318 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 17321 AGORA 38584 REVENUE 999 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 2151 UFOs 523150 REVENUE 1156 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 14255 econ 68350 REVENUE 1855 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 19333 Outdoors 15500 REVENUE 3675 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 6148 earth 532500 REVENUE 1108 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 1751 culture 100000000 REVENUE 673 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 19502 christianity 5000 REVENUE 3106 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 889 chess 10400 REVENUE 915 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 20586 videos 93200 REVENUE 676 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 2459 econ 17350 REVENUE 3362 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 17541 Design 134400 REVENUE 2310 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 2437 AI 46600 REVENUE 2448 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 1261 devs 86350 REVENUE 156 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 21710 earth 12000 REVENUE 583 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 21275 mempool 792002 REVENUE 1933 2025-02-07 01:48:41.176 2025-02-07 01:48:41.176 20911 gaming 68450 BILLING 2484 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 1620 DIY 2500 REVENUE 3188 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 16230 devs 35150 REVENUE 560 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 17991 ideasfromtheedge 6383 REVENUE 986 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 1723 news 46192 REVENUE 3622 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 19502 history 14200 REVENUE 2388 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 9833 radio 102150 REVENUE 900 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 16440 builders 255815 REVENUE 1033 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 21254 builders 199750 REVENUE 1850 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 16638 bitdevs 93649 REVENUE 1180 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 12951 Photography 92800 REVENUE 3542 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 14015 Music 1176300 REVENUE 2555 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 811 health 100000000 REVENUE 205 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 18101 Dogs_And_Cats 8500 REVENUE 2092 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 16670 Stacker_Sports 65100 REVENUE 1784 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 15978 libertarian 11050 REVENUE 2407 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 21274 Brasil 375250 REVENUE 1064 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 20619 Personal_Finance 7500 REVENUE 1398 2025-01-24 20:20:44.557 2025-01-24 20:20:44.557 6578 hiphop 34100 BILLING 2556 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 1505 devs 348135 REVENUE 802 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 759 security 42850 REVENUE 418 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 4973 Stacker_Sports 11550 REVENUE 1468 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 9353 lightning 173600 REVENUE 1405 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 3745 movies 63500 REVENUE 2462 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 2195 Photography 1100 REVENUE 2988 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 21803 charts 70075 REVENUE 1877 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 14376 AGORA 74200 REVENUE 3557 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 20624 Dogs_And_Cats 26100 REVENUE 2650 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 5746 bitcoin_beginners 235495 REVENUE 3287 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 2748 science 141750 REVENUE 1417 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 1094 culture 71950 REVENUE 2512 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 17171 Dogs_And_Cats 76150 REVENUE 702 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 14122 A_bit_of_Good_News 128350 REVENUE 1836 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 21357 history 247309 REVENUE 2566 2025-02-24 04:08:53.676 2025-02-24 04:08:53.676 3353 builders 6600 BILLING 3667 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 18005 BooksAndArticles 190950 REVENUE 2374 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 20616 movies 509342 REVENUE 1470 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 16357 earth 100000000 REVENUE 493 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 1244 science 3850 REVENUE 2476 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 15588 Personal_Finance 31500 REVENUE 2876 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 10484 opensource 120968 REVENUE 1889 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 20205 dotnet 140700 REVENUE 1808 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 14280 privacy 661950 REVENUE 1844 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 21061 Music 100500 REVENUE 2002 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 4958 AGORA 18019 REVENUE 2859 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 13987 Memes 698250 REVENUE 3462 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 21233 ecash 23350 REVENUE 2738 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 1741 privacy 38050 REVENUE 182 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 16354 Stacker_Sports 83450 REVENUE 1746 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 5173 Photography 118050 REVENUE 1859 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 21518 Personal_Finance 60500 REVENUE 713 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 17124 crypto 100000000 REVENUE 992 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 929 AGORA 10631050 REVENUE 2328 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 1823 earth 22750 REVENUE 3788 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 2674 NixOS 342000 REVENUE 2206 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 19796 libertarian 339200 REVENUE 3614 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 704 Outdoors 96500 REVENUE 3382 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 21263 ideasfromtheedge 73950 REVENUE 34 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 9863 security 48150 REVENUE 2610 2025-02-25 08:04:20.184 2025-02-25 08:04:20.184 16653 BooksAndArticles 117500 BILLING 2224 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 8289 earth 28150 REVENUE 1513 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 666 Mining_Self_Hosting_FOSS 68250 REVENUE 1339 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 1010 libertarian 87250 REVENUE 970 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 8173 privacy 69350 REVENUE 257 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 9330 Photography 259495 REVENUE 1063 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 14295 DIY 26600 REVENUE 142 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 19857 gaming 62050 REVENUE 163 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 21164 UFOs 73550 REVENUE 1647 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 676 privacy 97550 REVENUE 3248 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 19469 opensource 9240 REVENUE 3453 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 1316 history 19250 REVENUE 1338 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 1692 gaming 33852 REVENUE 386 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 20998 funny 28000 REVENUE 2016 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 8326 lightning 48150 REVENUE 991 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 20981 Music 19550 REVENUE 3204 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 21119 BooksAndArticles 63100 REVENUE 1667 2025-01-31 10:37:25.705 2025-01-31 10:37:25.705 11714 dotnet 1579550 BILLING 705 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 8713 polls 107000 REVENUE 2093 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 15386 Photography 49000 REVENUE 2227 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 20817 Fitness 20000 REVENUE 2552 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 20825 devs 69000 REVENUE 1545 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 654 podcasts 1585450 REVENUE 809 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 5017 BooksAndArticles 51950 REVENUE 3745 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 11515 AMA 627000 REVENUE 8 2024-12-24 05:51:23.651 2024-12-24 05:51:23.651 21239 crypto 48650 BILLING 2751 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 929 Music 18350 REVENUE 544 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 917 econ 1550 REVENUE 1809 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 854 privacy 9900 REVENUE 876 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 8726 news 4500 REVENUE 1564 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 20222 NSFW_porn 34441 REVENUE 2333 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 10094 builders 55500 REVENUE 625 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 21379 devs 61500 REVENUE 2180 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 716 news 25400 REVENUE 960 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 989 polls 12700 REVENUE 1651 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 3213 Cannabis 453900 REVENUE 3099 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 17162 history 38100 REVENUE 859 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 1425 health 14600 REVENUE 2995 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 21805 Fitness 91950 REVENUE 480 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 5527 lightning 233000 REVENUE 3115 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 13406 bitdevs 588930 REVENUE 29 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 14213 movies 58298 REVENUE 1350 2025-01-24 12:57:14.548 2025-01-24 12:57:14.548 1769 lightning 246150 BILLING 2926 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 899 Mining_Self_Hosting_FOSS 6050 REVENUE 1412 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 10490 privacy 502550 REVENUE 411 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 20205 ecash 10600 REVENUE 1065 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 1474 crypto 35500 REVENUE 1830 2025-02-04 07:45:00.761 2025-02-04 07:45:00.761 20490 podcasts 125950 BILLING 460 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 12278 gaming 7000 REVENUE 1266 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 16695 Dogs_And_Cats 27950 REVENUE 2494 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 18306 crypto 7000 REVENUE 639 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 746 AccessTribe 66000 REVENUE 19 2024-12-24 12:48:50.145 2024-12-24 12:48:50.145 9843 sanfrancisco 5450 BILLING 961 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 2327 security 10500 REVENUE 1659 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 19806 Design 6050 REVENUE 1819 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 16965 videos 5000 REVENUE 509 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 21044 videos 9300 REVENUE 2929 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 20646 Photography 68835 REVENUE 3412 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 1836 litdevs 210000 REVENUE 1556 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 9494 Outdoors 94000 REVENUE 71 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 11996 art 10200 REVENUE 198 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 21334 podcasts 1163850 REVENUE 1860 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 20745 Music 121050 REVENUE 128 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 10862 ideasfromtheedge 6050 REVENUE 116 2024-12-27 17:39:35.825 2024-12-27 17:39:35.825 20956 Stacker_Sports 5000 BILLING 3676 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 6202 mempool 102850 REVENUE 1502 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 17798 funny 1064184 REVENUE 1775 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 20680 health 8050 REVENUE 2824 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 9337 history 23000 REVENUE 1243 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 1489 Design 46009 REVENUE 3076 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 7760 NSFW_porn 104050 REVENUE 954 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 19966 libertarian 100000000 REVENUE 3355 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 20802 BooksAndArticles 60850 REVENUE 1576 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 19668 events 78650 REVENUE 1908 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 15484 startups 5000 REVENUE 3410 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 2492 videos 8550 REVENUE 1145 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 5694 crypto 383218 REVENUE 3785 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 624 lightning 75094 REVENUE 2197 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 1632 bitdevs 98850 REVENUE 3588 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 980 security 100550 REVENUE 435 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 12188 ecash 100000000 REVENUE 2173 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 11798 A_bit_of_Good_News 46350 REVENUE 3149 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 19569 Photography 626900 REVENUE 2693 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 17991 Dogs_And_Cats 714600 REVENUE 1313 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 654 earth 82255 REVENUE 1042 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 15045 podcasts 170050 REVENUE 352 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 20864 libertarian 57900 REVENUE 117 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 20291 Dogs_And_Cats 268600 REVENUE 3697 2025-03-26 12:12:07.986 2025-03-26 12:12:07.986 4633 econ 176750 BILLING 2087 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 1000 Outdoors 71350 REVENUE 3757 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 7773 opensource 7018 REVENUE 3851 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 624 conspiracy 78850 REVENUE 3705 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 1082 earth 143300 REVENUE 984 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 20871 builders 76750 REVENUE 1554 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 15146 lightning 100000000 REVENUE 758 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 17148 podcasts 217550 REVENUE 3495 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 7389 art 269989 REVENUE 3720 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 6765 UFOs 49900 REVENUE 2971 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 15491 Fitness 72064 REVENUE 1824 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 8287 art 168550 REVENUE 3701 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 21088 builders 97950 REVENUE 2249 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 750 Personal_Finance 203870 REVENUE 2126 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 10283 history 805083 REVENUE 842 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 2502 history 506233 REVENUE 1501 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 17226 polls 309824 REVENUE 774 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 1620 AI 961461 REVENUE 262 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 18615 devs 10500 REVENUE 1467 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 13622 videos 135650 REVENUE 207 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 16679 Music 15500 REVENUE 1167 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 8505 news 15500 REVENUE 1073 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 20479 gaming 2050 REVENUE 2434 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 4819 opensource 13100 REVENUE 1152 2025-01-20 09:41:33.988 2025-01-20 09:41:33.988 963 security 100000000 BILLING 2835 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 8998 dotnet 108000 REVENUE 2036 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 20454 podcasts 105350 REVENUE 2601 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 21063 art 81800 REVENUE 3253 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 20840 history 84200 REVENUE 99 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 11275 lightning 105000 REVENUE 1495 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 4225 security 50000 REVENUE 1852 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 21228 lightning 134550 REVENUE 1106 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 2681 culture 171500 REVENUE 1517 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 1814 lightning 552800 REVENUE 1854 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 21532 econ 1288150 REVENUE 2244 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 9362 DIY 134850 REVENUE 877 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 17535 libertarian 63850 REVENUE 2049 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 20782 bitcoin_beginners 212500 REVENUE 2294 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 21208 mempool 11650 REVENUE 904 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 4538 security 5742600 REVENUE 1959 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 17109 AGORA 10500 REVENUE 1701 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 705 Dogs_And_Cats 19050 REVENUE 2887 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 1439 bitdevs 512000 REVENUE 2346 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 4776 lightning 105350 REVENUE 1581 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 1738 Outdoors 256500 REVENUE 981 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 787 econ 14650 REVENUE 3371 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 21547 mostly_harmless 56250 REVENUE 652 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 9758 startups 10000 REVENUE 3737 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 11648 gaming 600900 REVENUE 3485 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 18557 sanfrancisco 591550 REVENUE 622 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 18731 movies 281250 REVENUE 1970 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 14774 videos 116200 REVENUE 1317 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 17064 news 10500 REVENUE 251 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 15806 startups 42800 REVENUE 3290 2025-03-15 23:32:29.163 2025-03-15 23:32:29.163 638 crypto 37900 BILLING 1087 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 6687 culture 155050 REVENUE 476 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 641 news 5000 REVENUE 1127 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 16970 Dogs_And_Cats 329350 REVENUE 662 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 5590 culture 114800 REVENUE 987 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 12102 bitcoin_beginners 158100 REVENUE 2886 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 21136 ecash 394738 REVENUE 2377 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 1469 oracle 47850 REVENUE 2882 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 1692 Stacker_Sports 22050 REVENUE 684 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 5495 Design 43400 REVENUE 807 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 16724 podcasts 1500 REVENUE 1816 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 1273 builders 40550 REVENUE 1259 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 6688 privacy 57400 REVENUE 3607 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 15337 econ 55799 REVENUE 978 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 837 podcasts 17150 REVENUE 875 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 19471 culture 18650 REVENUE 1443 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 1326 libertarian 10750 REVENUE 3856 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 10849 Design 27100 REVENUE 2637 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 15196 builders 143550 REVENUE 1764 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 5852 science 20300 REVENUE 584 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 9537 news 90600 REVENUE 3690 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 20624 Personal_Finance 466145 REVENUE 2255 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 20254 devs 5300 REVENUE 3012 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 4173 NSFW_porn 5000 REVENUE 1977 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 1173 devs 80100 REVENUE 2106 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 13378 BooksAndArticles 28700 REVENUE 720 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 21320 podcasts 9500 REVENUE 1164 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 20337 news 150400 REVENUE 656 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 21405 crypto 136050 REVENUE 3169 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 726 hiphop 158550 REVENUE 1767 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 16543 NixOS 79150 REVENUE 3729 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 16513 bitdevs 12581460 REVENUE 87 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 2749 ecash 100200 REVENUE 277 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 21798 mostly_harmless 63000 REVENUE 1218 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 18608 econ 21050 REVENUE 3365 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 21131 devs 5000 REVENUE 1546 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 13249 BooksAndArticles 23500 REVENUE 21 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 7891 christianity 45000 REVENUE 413 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 16145 bitcoin_beginners 212432 REVENUE 2187 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 1008 gaming 554348 REVENUE 2946 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 21405 builders 12080 REVENUE 2797 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 2620 earth 712150 REVENUE 3798 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 2583 startups 81500 REVENUE 2563 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 13547 news 317800 REVENUE 698 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 8870 BooksAndArticles 21650 REVENUE 1553 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 8713 opensource 22550 REVENUE 1461 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 18402 news 173724 REVENUE 2149 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 11670 BooksAndArticles 12647 REVENUE 2914 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 2151 art 450400 REVENUE 519 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 16309 Music 39500 REVENUE 306 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 27 bitcoin_beginners 86650 REVENUE 3391 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 2609 movies 21000 REVENUE 3132 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 5308 Cannabis 52348 REVENUE 783 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 19854 Stacker_Sports 344389 REVENUE 1485 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 2042 Personal_Finance 50000 REVENUE 175 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 21771 dotnet 183500 REVENUE 424 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 16387 Design 378200 REVENUE 3089 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 17103 DIY 288950 REVENUE 2705 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 20412 health 100000000 REVENUE 2277 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 2832 mostly_harmless 11050 REVENUE 3402 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 17183 gaming 41000 REVENUE 141 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 18494 econ 25000 REVENUE 674 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 20588 art 215050 REVENUE 2798 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 12951 Music 91100 REVENUE 461 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 12356 charts 445295 REVENUE 1433 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 19570 Memes 93894 REVENUE 1245 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 15588 bitcoin_beginners 35000 REVENUE 1225 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 7818 Outdoors 8500 REVENUE 331 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 18618 Outdoors 67250 REVENUE 193 2024-12-28 15:42:08.763 2024-12-28 15:42:08.763 4167 ru 1275872 BILLING 1686 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 21620 Dogs_And_Cats 3150 REVENUE 906 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 2367 Music 17700 REVENUE 1929 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 15115 bitdevs 16550 REVENUE 1276 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 9982 bitdevs 458822 REVENUE 3139 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 18901 Photography 69250 REVENUE 3277 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 20454 culture 25250 REVENUE 2090 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 21631 opensource 91100 REVENUE 882 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 16842 DIY 11550 REVENUE 91 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 21804 lightning 142300 REVENUE 2982 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 17415 security 122050 REVENUE 2229 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 21033 security 59496 REVENUE 1125 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 16267 Photography 42950 REVENUE 2039 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 805 bitdevs 5000 REVENUE 3537 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 1469 opensource 30000 REVENUE 3031 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 15192 health 61750 REVENUE 2015 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 15536 DIY 76550 REVENUE 484 2025-01-05 06:08:49.188 2025-01-05 06:08:49.188 9339 health 68450 BILLING 3246 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 1046 Linux 100000000 REVENUE 321 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 20619 earth 57100 REVENUE 921 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 989 oracle 17917 REVENUE 1550 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 21140 security 243660 REVENUE 127 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 7766 japan 265481 REVENUE 2425 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 11192 AccessTribe 56550 REVENUE 2098 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 1490 earth 22050 REVENUE 3321 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 1718 conspiracy 28000 REVENUE 66 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 10291 Memes 77423 REVENUE 795 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 3377 lightning 10500 REVENUE 3531 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 10484 bitdevs 27850 REVENUE 862 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 2703 science 54750 REVENUE 3591 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 1817 Personal_Finance 161707 REVENUE 2335 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 20745 ecash 403291 REVENUE 531 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 2460 lightning 49150 REVENUE 3534 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 649 Dogs_And_Cats 459628 REVENUE 569 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 1712 japan 3150 REVENUE 2365 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 16808 Music 26350 REVENUE 90 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 5173 UFOs 57300 REVENUE 3064 2025-03-10 07:05:29.244 2025-03-10 07:05:29.244 4128 DeepDive 171250 BILLING 3154 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 4984 B2B 192200 REVENUE 3008 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 14941 news 442780 REVENUE 1950 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 10283 conspiracy 120850 REVENUE 582 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 658 builders 143200 REVENUE 811 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 628 AGORA 153650 REVENUE 506 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 1162 hiphop 46950 REVENUE 2502 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 21262 mostly_harmless 62000 REVENUE 2626 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 18901 espanol 1515084 REVENUE 241 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 2039 builders 12100 REVENUE 2139 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 20310 ideasfromtheedge 54700 REVENUE 1664 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 17147 AMA 51100 REVENUE 252 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 3371 earth 13542 REVENUE 891 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 20969 lol 456990 REVENUE 2350 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 20987 news 127650 REVENUE 2953 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 16753 opensource 239283 REVENUE 1679 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 12072 devs 101900 REVENUE 2999 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 1272 opensource 133800 REVENUE 550 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 7979 Outdoors 32700 REVENUE 1246 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 14122 news 7900 REVENUE 211 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 21430 Personal_Finance 720100 REVENUE 3710 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 11798 Music 540083 REVENUE 1714 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 16830 Music 51100 REVENUE 3385 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 6164 news 152200 REVENUE 3853 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 2583 culture 1171450 REVENUE 1378 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 1652 ideasfromtheedge 66150 REVENUE 1568 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 21832 bitcoin_beginners 102825 REVENUE 370 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 20509 A_bit_of_Good_News 10000 REVENUE 3806 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 8289 hiphop 86950 REVENUE 3483 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 4776 chess 1050 REVENUE 3814 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 18468 bitdevs 135850 REVENUE 2301 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 11992 AI 21000 REVENUE 3632 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 17157 econ 1050 REVENUE 2935 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 4831 sanfrancisco 16150 REVENUE 3387 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 21520 chess 241950 REVENUE 2765 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 10586 econ 132950 REVENUE 3084 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 12102 bitdevs 16000 REVENUE 1628 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 1970 Ask_SN 42700 REVENUE 664 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 4083 christianity 9000 REVENUE 139 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 13143 news 20750 REVENUE 637 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 672 news 424150 REVENUE 2375 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 17690 christianity 100000000 REVENUE 682 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 1474 health 7000 REVENUE 1235 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 4048 Fitness 94900 REVENUE 697 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 11158 culture 9150 REVENUE 2676 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 3683 AccessTribe 64150 REVENUE 1253 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 21036 events 5074800 REVENUE 3760 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 9494 security 56050 REVENUE 3271 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 7389 bitdevs 993100 REVENUE 3408 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 11158 econ 118864 REVENUE 1640 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 15160 econ 10050 REVENUE 3865 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 794 art 97850 REVENUE 830 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 16816 education 13500 REVENUE 2532 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 20623 christianity 21000 REVENUE 315 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 5308 education 5050 REVENUE 1320 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 1424 health 50000 REVENUE 2915 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 12507 Value4ValueEducation 123900 REVENUE 1129 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 20829 bitcoin_beginners 675000 REVENUE 872 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 17797 BooksAndArticles 6250 REVENUE 2072 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 13217 history 171250 REVENUE 471 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 2773 AMA 825950 REVENUE 3596 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 4292 crypto 28150 REVENUE 2884 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 21541 lightning 67264 REVENUE 1504 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 2639 Outdoors 30750 REVENUE 2108 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 1425 Cannabis 9750 REVENUE 524 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 902 podcasts 20300 REVENUE 1885 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 805 culture 35500 REVENUE 3700 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 15488 devs 1550 REVENUE 3153 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 15762 education 1500 REVENUE 2533 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 1472 art 295889 REVENUE 1030 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 21281 AI 72650 REVENUE 337 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 17533 bitdevs 25750 REVENUE 1666 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 675 news 5000 REVENUE 2429 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 2492 ideasfromtheedge 60850 REVENUE 3379 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 21451 science 102100 REVENUE 466 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 9418 privacy 52450 REVENUE 2110 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 746 ideasfromtheedge 297516 REVENUE 2284 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 18829 builders 928600 REVENUE 2871 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 14271 startups 129900 REVENUE 2403 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 664 education 7500 REVENUE 2194 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 5597 movies 16050 REVENUE 2028 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 20858 videos 113400 REVENUE 3358 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 19863 podcasts 36100 REVENUE 3293 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 2774 crypto 51300 REVENUE 1376 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 15091 history 131500 REVENUE 2615 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 19668 econ 23550 REVENUE 732 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 20717 movies 88450 REVENUE 75 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 4973 mostly_harmless 18750 REVENUE 3217 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 19469 marketplace 38109 REVENUE 2938 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 3347 Design 10600 REVENUE 1488 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 659 earth 83050 REVENUE 2522 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 1030 events 9200 REVENUE 3421 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 1571 Dogs_And_Cats 65650 REVENUE 2870 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 20963 libertarian 8550 REVENUE 975 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 10986 ecash 100000000 REVENUE 1359 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 12356 econ 10830 REVENUE 3475 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 1609 lightning 3100 REVENUE 2858 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 14258 news 5000 REVENUE 1348 2025-01-24 06:23:51.802 2025-01-24 06:23:51.802 20881 crypto 39300 BILLING 72 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 630 bitdevs 105600 REVENUE 1374 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 8176 Stacker_Sports 15950 REVENUE 3479 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 17046 gaming 131250 REVENUE 283 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 21303 econ 158900 REVENUE 3828 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 2042 history 72600 REVENUE 1796 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 692 news 66750 REVENUE 2144 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 9276 opensource 5000 REVENUE 2647 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 8376 Photography 2350 REVENUE 1921 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 20062 Outdoors 23550 REVENUE 2724 2025-02-28 01:42:49.573 2025-02-28 01:42:49.573 18265 startups 30569 BILLING 1522 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 16660 news 98500 REVENUE 1518 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 10608 education 101700 REVENUE 2075 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 13143 BooksAndArticles 2250 REVENUE 3191 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 6688 Dogs_And_Cats 50500 REVENUE 218 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 17541 hiphop 282350 REVENUE 1683 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 14449 health 500200 REVENUE 2041 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 10273 startups 6050 REVENUE 2091 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 1105 science 100000000 REVENUE 3658 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 1615 japan 47700 REVENUE 1322 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 19812 mempool 319345 REVENUE 2379 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 18426 AGORA 114600 REVENUE 858 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 10484 Psychedelics 473050 REVENUE 1942 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 4079 AMA 22100 REVENUE 1302 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 21408 BooksAndArticles 18050 REVENUE 2414 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 9611 opensource 61050 REVENUE 714 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 20563 bitcoin_beginners 118750 REVENUE 3480 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 4538 security 6450 REVENUE 3116 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 21412 Stacker_Sports 9000 REVENUE 3840 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 19333 NixOS 36150 REVENUE 1732 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 20187 science 231000 REVENUE 1455 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 16717 ideasfromtheedge 164100 REVENUE 3686 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 15045 libertarian 7100 REVENUE 3405 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 1650 builders 27150 REVENUE 2471 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 7185 earth 1000000000 REVENUE 2576 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 4415 Dogs_And_Cats 74850 REVENUE 671 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 683 podcasts 4000 REVENUE 2337 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 760 gaming 238350 REVENUE 711 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 1959 bitdevs 6600 REVENUE 1972 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 20979 privacy 52850 REVENUE 3647 2025-03-25 06:38:15.867 2025-03-25 06:38:15.867 1438 Cannabis 5500 BILLING 599 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 13798 BooksAndArticles 12550 REVENUE 2153 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 21685 privacy 19050 REVENUE 2588 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 20058 lightning 12683000 REVENUE 3445 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 6137 BooksAndArticles 68200 REVENUE 733 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 18608 movies 2100 REVENUE 880 2025-01-13 18:14:38.379 2025-01-13 18:14:38.379 12356 Photography 88969 BILLING 3360 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 2710 builders 73050 REVENUE 208 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 21413 BooksAndArticles 13086550 REVENUE 2622 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 21131 DIY 82400 REVENUE 1111 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 10554 culture 31800 REVENUE 2356 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 20412 econ 54100 REVENUE 554 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 2681 BooksAndArticles 73469 REVENUE 3257 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 7580 bitcoin_beginners 139080 REVENUE 1820 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 9438 startups 16500 REVENUE 213 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 21320 lightning 5500 REVENUE 104 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 14650 Stacker_Sports 229050 REVENUE 2540 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 5487 oracle 100000000 REVENUE 1357 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 20924 art 100000000 REVENUE 1274 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 9352 crypto 208250 REVENUE 3527 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 15978 podcasts 231350 REVENUE 2182 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 626 B2B 108230 REVENUE 1822 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 10398 japan 130400 REVENUE 2404 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 13575 gaming 45500 REVENUE 1013 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 13398 news 13550 REVENUE 2516 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 15690 A_bit_of_Good_News 151542 REVENUE 3570 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 897 Personal_Finance 15500 REVENUE 1048 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 1576 radio 2250 REVENUE 1211 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 15052 mostly_harmless 84700 REVENUE 1194 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 7847 culture 21550 REVENUE 1439 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 4958 builders 54450 REVENUE 2775 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 1273 history 521000 REVENUE 219 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 21271 privacy 120500 REVENUE 2890 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 917 crypto 95300 REVENUE 3832 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 16988 ideasfromtheedge 17750 REVENUE 1370 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 20911 podcasts 219000 REVENUE 1891 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 21061 Dogs_And_Cats 5500 REVENUE 3034 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 21003 Personal_Finance 23600 REVENUE 660 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 5752 AI 1143709 REVENUE 336 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 828 Memes 10500 REVENUE 3432 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 13055 bitcoin_beginners 647900 REVENUE 2063 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 660 christianity 68202 REVENUE 2665 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 6202 Fitness 29800 REVENUE 2508 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 670 devs 11850 REVENUE 2390 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 8423 privacy 2550 REVENUE 793 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 20825 Memes 137200 REVENUE 2514 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 739 Outdoors 340400 REVENUE 2083 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 12959 AGORA 10500 REVENUE 3004 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 9183 earth 59100 REVENUE 191 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 20179 devs 26350 REVENUE 229 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 20751 news 137223 REVENUE 1637 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 5978 news 186100 REVENUE 3285 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 16329 NixOS 21200 REVENUE 754 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 1320 lol 447200 REVENUE 2207 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 986 Cannabis 92450 REVENUE 1137 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 4958 videos 543400 REVENUE 399 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 13843 Dogs_And_Cats 7550 REVENUE 3744 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 7425 bitcoin_beginners 5000 REVENUE 2530 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 12566 bitcoin_beginners 109700 REVENUE 2018 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 8570 Dogs_And_Cats 5000 REVENUE 2278 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 16447 lightning 32950 REVENUE 1675 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 1319 AGORA 136700 REVENUE 3693 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 16097 culture 51600 REVENUE 643 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 4035 health 57850 REVENUE 3133 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 1439 Personal_Finance 176600 REVENUE 2513 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 9337 econ 52783 REVENUE 1782 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 20616 A_bit_of_Good_News 259850 REVENUE 1496 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 16998 builders 92600 REVENUE 240 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 18409 culture 99200 REVENUE 3787 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 21406 Photography 93500 REVENUE 1717 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 14663 Music 310745 REVENUE 2578 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 18225 podcasts 18350 REVENUE 1875 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 20782 bitcoin_beginners 4500 REVENUE 3044 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 10986 Cannabis 25000 REVENUE 1061 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 21814 econ 11000 REVENUE 455 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 21406 econ 32950 REVENUE 977 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 680 lol 5000 REVENUE 2406 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 19005 chess 17500 REVENUE 3621 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 701 devs 100000000 REVENUE 2327 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 1784 culture 21250 REVENUE 2753 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 17944 libertarian 1674617 REVENUE 588 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 16939 Dogs_And_Cats 5950 REVENUE 1865 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 21274 podcasts 164100 REVENUE 814 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 9356 BooksAndArticles 86700 REVENUE 558 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 827 mostly_harmless 103400 REVENUE 3300 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 13467 earth 8050 REVENUE 3810 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 15180 art 100000000 REVENUE 1337 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 5942 Cannabis 1186350 REVENUE 3505 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 20523 PlebeianMarket 1975 REVENUE 1803 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 780 Dogs_And_Cats 109150 REVENUE 1900 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 4238 earth 322397 REVENUE 2449 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 19005 DIY 26400 REVENUE 2364 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 10698 health 9200 REVENUE 2976 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 5129 hiphop 23350 REVENUE 3307 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 21815 earth 92700 REVENUE 2853 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 21103 privacy 233545 REVENUE 2504 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 6717 builders 5550 REVENUE 1174 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 20370 Photography 108750 REVENUE 2708 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 21522 stocks 9050 REVENUE 1227 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 10056 Photography 3250 REVENUE 2122 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 11678 lightning 50000 REVENUE 2070 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 2609 history 100000000 REVENUE 929 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 5904 opensource 104000 REVENUE 1842 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 21832 movies 261129 REVENUE 1547 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 10549 crypto 82450 REVENUE 2658 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 21271 AGORA 8500 REVENUE 1538 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 20294 Design 139136 REVENUE 1381 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 8998 NSFW_porn 7900 REVENUE 3583 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 3683 history 60602 REVENUE 3740 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 10484 Ask_SN 89950 REVENUE 3520 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 880 chess 195200 REVENUE 2791 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 5173 hiphop 60200 REVENUE 791 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 8469 BooksAndArticles 1196475 REVENUE 1559 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 9418 startups 10100 REVENUE 1967 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 861 libertarian 100000000 REVENUE 2334 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 2309 Linux 1050 REVENUE 186 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 21314 Dogs_And_Cats 5679 REVENUE 2389 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 3706 NSFW_porn 19700 REVENUE 2790 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 1638 Value4ValueEducation 9000 REVENUE 513 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 8380 Outdoors 76150 REVENUE 2184 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 19759 history 768000 REVENUE 1214 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 17517 Stacker_Sports 592115 REVENUE 1658 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 21771 NixOS 10000 REVENUE 3289 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 9275 podcasts 512000 REVENUE 133 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 16536 radio 42350 REVENUE 1569 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 21057 UFOs 15550 REVENUE 105 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 638 DIY 136250 REVENUE 1833 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 20669 Stacker_Sports 75540 REVENUE 675 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 10934 mostly_harmless 337050 REVENUE 606 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 6229 Personal_Finance 22750 REVENUE 3075 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 2329 bitcoin_beginners 16050 REVENUE 918 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 10638 history 45300 REVENUE 335 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 20655 funny 346543 REVENUE 3400 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 16176 AGORA 6500 REVENUE 256 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 21408 health 25550 REVENUE 2599 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 20220 polls 175573 REVENUE 2042 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 10398 events 120568 REVENUE 250 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 1122 events 22100 REVENUE 3836 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 20597 christianity 8650 REVENUE 3463 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 766 startups 11300 REVENUE 3061 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 620 privacy 177100 REVENUE 2505 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 649 art 5500 REVENUE 2781 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 666 ideasfromtheedge 11450 REVENUE 1624 2025-01-30 05:52:45.415 2025-01-30 05:52:45.415 1658 radio 7000 BILLING 3435 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 5776 ecash 60230 REVENUE 2752 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 20912 earth 28499 REVENUE 2602 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 9438 conspiracy 139811 REVENUE 1019 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 5961 education 13700 REVENUE 3105 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 1411 history 14150 REVENUE 769 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 21422 apps 98550 REVENUE 295 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 10979 Stacker_Sports 207134 REVENUE 3521 2025-03-22 01:14:17.411 2025-03-22 01:14:17.411 738 DIY 101050 BILLING 226 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 16929 BooksAndArticles 59309 REVENUE 2629 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 20939 lol 6050 REVENUE 2157 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 1803 art 49900 REVENUE 2021 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 13100 history 66800 REVENUE 3251 2025-03-14 21:57:25.933 2025-03-14 21:57:25.933 1773 crypto 27700 BILLING 2487 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 20660 libertarian 124150 REVENUE 3502 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 6149 Design 255100 REVENUE 1332 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 876 science 76400 REVENUE 2172 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 20377 videos 517832 REVENUE 1408 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 16353 privacy 1107705 REVENUE 3511 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 946 Photography 98800 REVENUE 2066 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 5495 gaming 109450 REVENUE 135 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 11038 privacy 15800 REVENUE 1095 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 4754 ideasfromtheedge 13200 REVENUE 417 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 12808 UFOs 20250 REVENUE 1232 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 5128 espanol 528250 REVENUE 3652 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 9295 BooksAndArticles 51950 REVENUE 2175 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 21734 AGORA 50850 REVENUE 1099 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 19735 Music 100000000 REVENUE 2436 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 3729 gaming 76450 REVENUE 1578 2025-01-28 23:32:47.028 2025-01-28 23:32:47.028 17201 oracle 3000 BILLING 878 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 14774 Outdoors 2537250 REVENUE 1458 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 2326 science 11050 REVENUE 2297 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 1310 education 3330 REVENUE 1143 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 5128 funny 59600 REVENUE 3146 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 2514 UFOs 140600 REVENUE 3516 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 8506 NixOS 59550 REVENUE 3571 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 16680 bitcoin_beginners 11150 REVENUE 672 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 13100 Music 4000 REVENUE 1570 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 17046 conspiracy 2000 REVENUE 2866 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 1316 news 8750 REVENUE 3397 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 16950 art 27550 REVENUE 3565 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 15762 ecash 348250 REVENUE 2717 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 11298 Photography 252100 REVENUE 1778 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 17727 art 191250 REVENUE 1341 2025-01-24 04:01:25.267 2025-01-24 04:01:25.267 19193 lightning 113800 BILLING 1002 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 20586 AccessTribe 5750 REVENUE 914 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 18630 devs 109650 REVENUE 2902 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 1836 AGORA 55700 REVENUE 2152 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 18494 Dogs_And_Cats 6050 REVENUE 3601 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 17533 espanol 15350 REVENUE 1847 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 726 events 19527400 REVENUE 2944 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 656 devs 104350 REVENUE 2554 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 5173 AGORA 12612750 REVENUE 3359 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 13038 art 68650 REVENUE 1037 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 18528 Cannabis 67485 REVENUE 2787 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 10638 ecash 850846 REVENUE 318 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 974 christianity 81050 REVENUE 1122 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 17522 devs 72700 REVENUE 440 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 12911 oracle 164150 REVENUE 2740 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 2774 Stacker_Sports 5000 REVENUE 1149 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 12483 science 77805 REVENUE 2691 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 16695 security 65750 REVENUE 1134 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 5904 japan 25750 REVENUE 3323 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 6741 Ask_SN 544450 REVENUE 2424 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 21303 radio 64750 REVENUE 3838 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 10433 litdevs 4050 REVENUE 33 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 2681 UFOs 56050 REVENUE 1139 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 18500 lightning 63300 REVENUE 1072 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 20306 conspiracy 21800 REVENUE 1532 2025-01-27 21:25:12.273 2025-01-27 21:25:12.273 826 NixOS 100000000 BILLING 2460 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 8684 dotnet 4400 REVENUE 1868 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 19087 oracle 90650 REVENUE 3811 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 679 crypto 21692 REVENUE 1100 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 14774 Stacker_Sports 69007 REVENUE 419 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 1105 science 322298 REVENUE 408 2025-01-02 19:50:55.922 2025-01-02 19:50:55.922 16424 DIY 8100 BILLING 2577 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 11938 christianity 76644 REVENUE 3186 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 17046 bitcoin_beginners 144050 REVENUE 1947 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 9354 privacy 698000 REVENUE 3687 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 19016 ideasfromtheedge 8500 REVENUE 2869 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 15408 libertarian 17550 REVENUE 1707 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 21670 science 110850 REVENUE 1930 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 17046 BooksAndArticles 9345 REVENUE 1831 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 4250 Stacker_Sports 323750 REVENUE 2558 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 18011 apps 10500 REVENUE 2849 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 5759 movies 114844 REVENUE 3239 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 15100 stocks 501950 REVENUE 615 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 2213 Personal_Finance 25350 REVENUE 3633 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 21332 sanfrancisco 125100 REVENUE 2606 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 1012 education 39403 REVENUE 572 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 12935 crypto 164100 REVENUE 3819 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 9261 security 1157050 REVENUE 934 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 16816 ru 25200 REVENUE 1429 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 894 libertarian 149150 REVENUE 542 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 12819 Stacker_Sports 66580 REVENUE 3860 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 19189 UFOs 425300 REVENUE 3663 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 1039 lightning 33550 REVENUE 2903 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 5306 culture 46500 REVENUE 729 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 15196 Design 490450 REVENUE 3065 2025-03-10 12:17:29.868 2025-03-10 12:17:29.868 16284 Music 18150 BILLING 2909 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 21442 stocks 5500 REVENUE 2868 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 695 opensource 1550 REVENUE 776 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 9307 devs 11500 REVENUE 2344 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 2065 bitcoin_beginners 15850 REVENUE 378 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 15409 libertarian 321450 REVENUE 1275 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 20965 radio 88050 REVENUE 78 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 20062 news 19935 REVENUE 2420 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 21148 earth 17600 REVENUE 214 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 20220 econ 571900 REVENUE 3515 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 10981 bitcoin_beginners 31450 REVENUE 744 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 21402 AGORA 29850 REVENUE 3512 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 2151 Fitness 238250 REVENUE 2725 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 1817 education 1050 REVENUE 2479 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 19857 Memes 39800 REVENUE 1010 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 20812 Stacker_Sports 79900 REVENUE 206 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 2335 science 100000000 REVENUE 3849 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 7675 ru 5500 REVENUE 3799 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 16354 podcasts 14701 REVENUE 2673 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 7682 bitcoin_beginners 17000 REVENUE 2707 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 16154 apps 100000000 REVENUE 573 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 21090 Cannabis 6845 REVENUE 3706 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 21140 DIY 10750 REVENUE 2133 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 21532 ecash 100000000 REVENUE 48 2024-12-25 01:27:30.764 2024-12-25 01:27:30.764 3304 ecash 1066027 BILLING 3136 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 1890 privacy 101222 REVENUE 176 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 11477 christianity 56500 REVENUE 1673 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 20353 devs 178850 REVENUE 570 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 6463 lightning 282700 REVENUE 3025 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 2577 podcasts 14112200 REVENUE 304 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 12609 Personal_Finance 19750 REVENUE 246 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 6421 Music 33600 REVENUE 1709 2025-02-01 06:25:07.365 2025-02-01 06:25:07.365 795 ecash 86900 BILLING 1508 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 21184 libertarian 26900 REVENUE 3255 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 16276 builders 60650 REVENUE 2669 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 13587 earth 20000 REVENUE 3709 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 5661 Photography 5000 REVENUE 2942 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 666 A_bit_of_Good_News 9000 REVENUE 1107 2025-01-18 22:16:30.184 2025-01-18 22:16:30.184 21797 mostly_harmless 145300 BILLING 2805 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 17517 Photography 195250 REVENUE 792 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 656 science 169000 REVENUE 1927 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 2952 ru 5100 REVENUE 3627 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 12921 BooksAndArticles 12650 REVENUE 3668 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 21088 culture 100000000 REVENUE 2315 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 12102 privacy 41950 REVENUE 397 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 15690 art 26800 REVENUE 3548 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 7903 Fitness 201650 REVENUE 3097 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 20778 Cannabis 1395 REVENUE 3274 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 19673 ecash 20003 REVENUE 2895 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 17415 podcasts 100000000 REVENUE 3013 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 11378 A_bit_of_Good_News 6000 REVENUE 685 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 20755 health 37850 REVENUE 3240 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 664 ecash 501050 REVENUE 619 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 5069 libertarian 9200 REVENUE 453 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 1611 culture 11550 REVENUE 2823 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 794 Personal_Finance 147500 REVENUE 1054 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 1465 Photography 52600 REVENUE 3749 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 20504 polls 56300 REVENUE 2920 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 21421 AMA 150400 REVENUE 3636 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 21547 culture 100000000 REVENUE 387 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 17535 news 493012 REVENUE 2316 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 3745 polls 162550 REVENUE 1043 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 11750 builders 20650 REVENUE 3252 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 5978 earth 144820 REVENUE 2013 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 876 Music 11550 REVENUE 1117 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 14705 Stacker_Sports 1025000 REVENUE 2006 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 20816 health 7100 REVENUE 2506 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 10056 health 9550 REVENUE 2830 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 11621 Stacker_Sports 128350 REVENUE 3736 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 21555 news 203250 REVENUE 450 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 11873 gaming 100000000 REVENUE 1163 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 2016 ideasfromtheedge 422900 REVENUE 2489 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 4064 Photography 8050 REVENUE 846 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 712 opensource 1050 REVENUE 1086 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 13753 BooksAndArticles 50500 REVENUE 1478 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 669 podcasts 30200 REVENUE 2515 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 13575 privacy 25395 REVENUE 3677 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 21520 language_learning 110500 REVENUE 2355 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 17046 NixOS 54200 REVENUE 3695 2025-03-25 20:18:41.457 2025-03-25 20:18:41.457 12921 ecash 100000000 BILLING 1622 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 3461 libertarian 696000 REVENUE 2733 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 16965 VirtualReality 4500 REVENUE 2737 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 17522 econ 151750 REVENUE 1730 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 13177 Stacker_Sports 366300 REVENUE 1880 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 14195 opensource 16450 REVENUE 3852 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 1836 libertarian 56100 REVENUE 2111 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 2431 Personal_Finance 15600 REVENUE 1762 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 17817 UFOs 5500 REVENUE 938 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 20864 builders 100000000 REVENUE 2215 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 12935 videos 78050 REVENUE 1462 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 21320 christianity 18150 REVENUE 816 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 16753 earth 40100 REVENUE 2254 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 2342 conspiracy 163900 REVENUE 3631 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 17157 earth 67250 REVENUE 743 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 5425 econ 209550 REVENUE 1692 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 19016 AGORA 117550 REVENUE 2381 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 679 privacy 100000000 REVENUE 1543 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 18409 earth 78600 REVENUE 498 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 14731 Personal_Finance 206550 REVENUE 910 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 1273 Personal_Finance 38550 REVENUE 1879 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 14959 UFOs 165400 REVENUE 2352 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 20956 history 33450 REVENUE 129 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 999 libertarian 67150 REVENUE 1385 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 9363 education 14400 REVENUE 3286 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 5961 NixOS 8500 REVENUE 495 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 19193 lightning 21050 REVENUE 1792 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 16329 hiphop 134570 REVENUE 282 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 4538 builders 61900 REVENUE 3436 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 20802 AI 50000 REVENUE 2529 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 7682 culture 3300 REVENUE 3487 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 21575 crypto 8500 REVENUE 3037 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 1046 health 181650 REVENUE 3067 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 18717 Stacker_Sports 396218 REVENUE 1195 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 8498 NSFW_porn 77600 REVENUE 1397 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 17116 Dogs_And_Cats 232250 REVENUE 1757 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 21033 Photography 1896338 REVENUE 13 2024-12-24 06:43:22.266 2024-12-24 06:43:22.266 8059 Music 56100 BILLING 3772 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 12946 Cannabis 6500 REVENUE 557 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 15049 science 51250 REVENUE 611 2025-01-08 05:18:33.227 2025-01-08 05:18:33.227 1064 builders 41261 BILLING 1878 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 20099 Design 40239495 REVENUE 3813 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 1576 health 280700 REVENUE 3241 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 21455 bitdevs 6800 REVENUE 2863 2025-03-04 09:54:05.526 2025-03-04 09:54:05.526 670 privacy 354477 BILLING 2076 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 20019 ecash 122113 REVENUE 1379 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 1468 Music 337950 REVENUE 2973 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 1713 Dogs_And_Cats 26350 REVENUE 3011 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 21263 oracle 380355 REVENUE 924 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 21455 Personal_Finance 5000 REVENUE 1815 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 20599 Cannabis 100000000 REVENUE 356 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 16387 bitcoin_beginners 130900 REVENUE 2332 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 1718 hiphop 716293 REVENUE 2528 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 4177 movies 91610 REVENUE 3040 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 21688 espanol 6050 REVENUE 2409 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 15337 devs 105198 REVENUE 2338 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 7827 podcasts 5000 REVENUE 1505 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 1474 Stacker_Sports 78250 REVENUE 695 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 17696 opensource 230339 REVENUE 1340 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 3717 AGORA 1050 REVENUE 196 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 9337 lightning 53479 REVENUE 3595 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 848 AGORA 11100 REVENUE 3234 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 3400 Music 120678 REVENUE 990 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 16432 econ 220480 REVENUE 2113 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 20500 Music 41790 REVENUE 2661 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 21825 health 7150 REVENUE 3762 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 5427 devs 61700 REVENUE 1291 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 1092 apps 23656 REVENUE 1596 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 20852 lightning 53350 REVENUE 3488 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 1769 ideasfromtheedge 54700 REVENUE 2526 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 15386 culture 239550 REVENUE 1519 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 14152 ecash 106750 REVENUE 1938 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 8004 A_bit_of_Good_News 19600 REVENUE 3370 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 20577 espanol 70350 REVENUE 2164 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 985 bitdevs 114050 REVENUE 2632 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 3518 history 69250 REVENUE 636 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 20901 AccessTribe 118900 REVENUE 2300 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 3371 privacy 11100350 REVENUE 3833 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 1983 art 50000 REVENUE 1103 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 711 opensource 440579 REVENUE 228 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 2942 education 6369 REVENUE 529 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 21444 Dogs_And_Cats 2100 REVENUE 2931 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 21520 health 53650 REVENUE 2330 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 787 bitdevs 116150 REVENUE 2749 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 5308 AMA 12562350 REVENUE 1366 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 8376 Photography 336100 REVENUE 2228 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 16638 history 31650 REVENUE 3138 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 663 lightning 318150 REVENUE 3801 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 9356 startups 47225 REVENUE 2850 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 9183 history 384737 REVENUE 3259 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 21091 crypto 7600 REVENUE 3754 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 9796 devs 13500 REVENUE 3573 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 17522 culture 7895 REVENUE 189 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 11789 mempool 221400 REVENUE 1440 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 19826 litdevs 24150 REVENUE 2397 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 5308 security 100000000 REVENUE 1586 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 19812 Stacker_Sports 43077 REVENUE 730 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 12169 AGORA 39300 REVENUE 3265 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 8729 AGORA 145050 REVENUE 138 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 1429 Value4ValueEducation 88650 REVENUE 1250 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 17091 NixOS 3150 REVENUE 2993 2025-03-08 04:09:21.678 2025-03-08 04:09:21.678 4027 Ask_SN 37800 BILLING 1681 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 13987 Psychedelics 1000000000 REVENUE 2875 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 1310 DIY 7650 REVENUE 3735 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 11165 Mining_Self_Hosting_FOSS 38050 REVENUE 3713 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 16684 Outdoors 5750 REVENUE 1216 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 10554 AI 2900000000 REVENUE 1672 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 7809 podcasts 10200 REVENUE 3245 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 10661 oracle 3150 REVENUE 120 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 20225 Design 2250 REVENUE 1435 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 900 earth 54650 REVENUE 3347 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 1784 mostly_harmless 49700 REVENUE 2594 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 12516 Personal_Finance 13200 REVENUE 1999 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 6164 NixOS 969618 REVENUE 2047 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 671 Outdoors 135300 REVENUE 2549 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 14941 lightning 17150 REVENUE 2353 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 14791 history 98850 REVENUE 146 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 6202 Stacker_Sports 10650 REVENUE 608 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 21829 lol 100000000 REVENUE 963 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 20294 builders 609950 REVENUE 2155 2025-02-13 12:49:46.478 2025-02-13 12:49:46.478 9107 language_learning 7000 BILLING 346 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 12334 oracle 22050 REVENUE 16 2024-12-24 08:39:22.463 2024-12-24 08:39:22.463 16354 art 1029525 BILLING 3790 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 1712 Photography 5650 REVENUE 1811 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 681 radio 100000000 REVENUE 3551 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 21090 BooksAndArticles 19050 REVENUE 561 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 6229 dotnet 6050 REVENUE 2655 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 19403 BooksAndArticles 18600 REVENUE 3733 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 7395 espanol 1500 REVENUE 3261 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 13854 polls 180050 REVENUE 3628 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 21408 videos 648954 REVENUE 1715 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 1082 earth 33000 REVENUE 3242 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 10302 ecash 34450 REVENUE 2813 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 954 lightning 469659 REVENUE 1719 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 5590 AGORA 41550 REVENUE 2663 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 19094 earth 45850 REVENUE 3712 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 17392 DIY 213428 REVENUE 1166 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 782 B2B 5000 REVENUE 1739 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 21216 builders 233343 REVENUE 1997 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 2596 christianity 6650 REVENUE 3258 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 20864 polls 19950 REVENUE 1589 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 807 ideasfromtheedge 164250 REVENUE 3552 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 14909 videos 35400 REVENUE 462 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 1737 opensource 45043 REVENUE 736 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 16816 bitcoin_beginners 519150 REVENUE 3791 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 848 art 169271 REVENUE 2562 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 6687 podcasts 5000 REVENUE 3171 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 13587 japan 6550 REVENUE 1774 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 21803 Cannabis 19500 REVENUE 3635 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 658 bitcoin_beginners 7700 REVENUE 483 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 956 econ 182050 REVENUE 1925 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 1802 AI 12000 REVENUE 741 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 998 health 139700 REVENUE 1058 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 618 bitcoin_beginners 5000 REVENUE 151 2024-12-28 06:04:50.33 2024-12-28 06:04:50.33 6361 oracle 100000000 BILLING 412 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 649 dotnet 24250 REVENUE 528 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 21047 BooksAndArticles 273100 REVENUE 273 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 11866 stocks 9100 REVENUE 468 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 18678 Fitness 16550 REVENUE 1471 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 5487 gaming 75072 REVENUE 1096 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 17838 Linux 532100 REVENUE 5 2024-12-24 04:50:42.229 2024-12-24 04:50:42.229 16353 Outdoors 100000000 BILLING 2911 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 814 A_bit_of_Good_News 420150 REVENUE 683 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 20588 AGORA 193900 REVENUE 1789 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 20922 bitcoin_beginners 15800 REVENUE 1389 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 11648 security 458409 REVENUE 1652 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 18526 art 27150 REVENUE 2309 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 20972 security 63805 REVENUE 1060 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 5520 Personal_Finance 91400 REVENUE 2964 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 17014 Dogs_And_Cats 192800 REVENUE 1492 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 18618 bitdevs 314800 REVENUE 3442 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 16442 Outdoors 7100 REVENUE 2832 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 20280 bitdevs 26050 REVENUE 1763 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 714 Stacker_Sports 96250 REVENUE 3028 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 21803 security 5000 REVENUE 2904 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 12935 AGORA 5000 REVENUE 1382 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 638 hiphop 12450 REVENUE 1406 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 9362 crypto 673724 REVENUE 1735 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 12368 startups 1750 REVENUE 1919 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 11498 Dogs_And_Cats 109700 REVENUE 2357 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 20998 ecash 20450 REVENUE 735 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 9969 AGORA 8850 REVENUE 3519 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 9351 Cannabis 792262 REVENUE 2447 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 1090 Outdoors 1050 REVENUE 279 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 20683 science 56225 REVENUE 420 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 1298 Outdoors 8550 REVENUE 3640 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 766 history 40750 REVENUE 3349 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 16230 Photography 5100 REVENUE 3653 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 21262 Cannabis 1050 REVENUE 2638 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 685 oracle 197900 REVENUE 2347 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 1801 BooksAndArticles 10395 REVENUE 1629 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 15703 builders 313330 REVENUE 1361 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 650 culture 10500 REVENUE 576 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 2596 events 12150 REVENUE 1866 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 19138 opensource 33100 REVENUE 3817 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 13599 news 10850 REVENUE 3725 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 9295 crypto 1100 REVENUE 1899 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 21036 devs 5600 REVENUE 2958 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 12779 opensource 106900 REVENUE 1607 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 19924 bitcoin_beginners 48700 REVENUE 28 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 21062 health 1072250 REVENUE 2181 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 20245 privacy 126450 REVENUE 3581 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 20117 ecash 16800 REVENUE 1753 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 18314 econ 22750 REVENUE 3599 2025-03-23 21:12:25.383 2025-03-23 21:12:25.383 20911 libertarian 100000000 BILLING 3125 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 21104 oracle 200900 REVENUE 2285 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 14688 security 22050 REVENUE 899 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 21829 Outdoors 163950 REVENUE 1996 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 20972 opensource 5000 REVENUE 541 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 13467 christianity 19145 REVENUE 1326 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 7668 Dogs_And_Cats 406050 REVENUE 2303 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 647 B2B 45100 REVENUE 1162 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 21521 Ordinals_Inscriptions_Runes 6500 REVENUE 1028 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 21391 Dogs_And_Cats 10000 REVENUE 2339 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 20481 Cannabis 100000000 REVENUE 614 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 16998 culture 38250 REVENUE 3514 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 4259 Mining_Self_Hosting_FOSS 8000 REVENUE 3562 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 3683 security 265159 REVENUE 373 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 16309 econ 411750 REVENUE 681 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 1638 lightning 138200 REVENUE 385 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 14552 litdevs 24927 REVENUE 2458 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 21339 news 227816 REVENUE 1650 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 21683 Music 51850 REVENUE 2856 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 14122 libertarian 32850 REVENUE 616 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 21639 japan 10550 REVENUE 1255 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 10280 mostly_harmless 5526950 REVENUE 1387 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 11038 lightning 250250 REVENUE 181 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 19199 AGORA 30900 REVENUE 3126 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 7587 christianity 138073 REVENUE 3550 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 16145 polls 12050 REVENUE 2768 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 20502 startups 128800 REVENUE 1168 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 1823 gaming 11350 REVENUE 3166 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 1745 movies 8000 REVENUE 1668 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 8713 podcasts 91500 REVENUE 478 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 9362 NSFW_porn 27050 REVENUE 1207 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 5828 Personal_Finance 12450 REVENUE 1951 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 11288 Ask_SN 498562 REVENUE 1511 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 19121 Music 2500 REVENUE 392 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 21041 opensource 5500 REVENUE 3507 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 11164 podcasts 145900 REVENUE 3822 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 2749 news 52726 REVENUE 3458 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 11789 Dogs_And_Cats 33995 REVENUE 3793 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 7891 startups 235818 REVENUE 2415 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 20972 bitcoin_beginners 18600 REVENUE 3741 2025-03-26 21:26:14.391 2025-03-26 21:26:14.391 4128 AGORA 13550 BILLING 3297 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 19217 econ 1052900 REVENUE 3390 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 19637 builders 6975 REVENUE 3035 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 21391 B2B 1205009 REVENUE 3 2024-12-24 04:12:26.047 2024-12-24 04:12:26.047 11240 education 52050 BILLING 750 2025-01-11 05:34:06.825 2025-01-11 05:34:06.825 14503 NSFW_porn 501200 BILLING 2923 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 21208 NixOS 1093750 REVENUE 3399 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 21026 education 114450 REVENUE 2756 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 20939 science 10000 REVENUE 1966 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 690 Value4ValueEducation 48650 REVENUE 2778 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 19484 Stacker_Sports 5000 REVENUE 2307 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 13133 UFOs 114400 REVENUE 1642 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 21571 funny 209950 REVENUE 1665 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 12921 gaming 58903 REVENUE 1761 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 1120 Stacker_Sports 225550 REVENUE 700 2025-01-09 17:31:22.111 2025-01-09 17:31:22.111 17321 science 314700 BILLING 3420 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 16282 culture 22650 REVENUE 2893 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 20901 Dogs_And_Cats 12600 REVENUE 369 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 18678 gaming 100000000 REVENUE 788 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 16357 science 27250 REVENUE 2252 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 6741 Dogs_And_Cats 34100 REVENUE 562 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 15119 startups 536100 REVENUE 796 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 15146 security 114000 REVENUE 2158 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 761 Dogs_And_Cats 135850 REVENUE 2485 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 21421 Stacker_Sports 100000000 REVENUE 3342 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 1737 Stacker_Sports 1500 REVENUE 1574 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 989 Photography 98300 REVENUE 871 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 2459 movies 12593700 REVENUE 3394 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 12356 crypto 5000 REVENUE 1641 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 654 polls 39400 REVENUE 44 2024-12-24 19:25:32.565 2024-12-24 19:25:32.565 2232 econ 3550 BILLING 2351 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 20687 history 406900 REVENUE 2792 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 1480 privacy 1055000 REVENUE 988 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 12738 AMA 551696 REVENUE 546 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 9537 privacy 1050 REVENUE 1303 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 2335 news 50000 REVENUE 585 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 14015 education 21100 REVENUE 3543 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 20490 culture 19750 REVENUE 1153 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 14295 devs 67600 REVENUE 931 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 20911 Photography 97300 REVENUE 3082 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 14225 mostly_harmless 31100 REVENUE 56 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 706 movies 150600 REVENUE 1356 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 20669 chess 5000 REVENUE 2888 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 9330 lightning 32250 REVENUE 909 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 15588 builders 5000 REVENUE 962 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 902 AGORA 46550 REVENUE 3142 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 12222 privacy 25000 REVENUE 881 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 14959 Dogs_And_Cats 116970 REVENUE 536 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 11153 oracle 233350 REVENUE 2056 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 20381 culture 108950 REVENUE 2422 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 16966 health 102100 REVENUE 2569 2025-02-24 04:50:42.314 2025-02-24 04:50:42.314 19668 Ask_SN 11400 BILLING 1011 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 974 ru 365100 REVENUE 3384 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 19854 videos 117202 REVENUE 1280 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 1082 AGORA 26050 REVENUE 3541 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 14449 hiphop 118000 REVENUE 324 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 4989 Stacker_Sports 72200 REVENUE 2313 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 667 art 25500 REVENUE 2645 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 21734 UFOs 1050 REVENUE 2186 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 12277 science 5600 REVENUE 1533 2025-01-28 06:47:17.811 2025-01-28 06:47:17.811 18525 marketplace 11150 BILLING 2242 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 16230 Photography 5950 REVENUE 1392 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 15549 Outdoors 1585500 REVENUE 559 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 15890 earth 100000000 REVENUE 1661 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 8713 bitdevs 2050 REVENUE 3236 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 718 Stacker_Sports 7050 REVENUE 742 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 21541 health 90450 REVENUE 1768 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 646 Music 5000 REVENUE 2413 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 11165 econ 116600 REVENUE 1957 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 10013 startups 16250 REVENUE 1445 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 714 BooksAndArticles 12850 REVENUE 3825 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 19906 ecash 1050 REVENUE 3369 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 622 Stacker_Sports 162950 REVENUE 1989 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 20275 gaming 40700 REVENUE 511 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 10698 lol 57050 REVENUE 2907 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 5425 privacy 88350 REVENUE 400 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 16950 charts 232000 REVENUE 1144 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 994 Photography 393300 REVENUE 297 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 13042 Ask_SN 13950 REVENUE 2977 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 13398 earth 6050 REVENUE 2978 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 15762 Photography 139000 REVENUE 1777 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 5794 art 16013869 REVENUE 785 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 3409 Outdoors 5000 REVENUE 3209 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 5646 libertarian 87400 REVENUE 2475 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 2232 privacy 21700 REVENUE 2143 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 794 education 271400 REVENUE 2609 2025-02-24 20:17:58.898 2025-02-24 20:17:58.898 21402 Dogs_And_Cats 55450 BILLING 1421 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 5173 litdevs 5650 REVENUE 3220 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 9 econ 192500 REVENUE 4 2024-12-24 04:31:46.345 2024-12-24 04:31:46.345 994 lightning 5000 BILLING 23 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 5444 startups 33650 REVENUE 2657 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 18178 mostly_harmless 256400 REVENUE 2702 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 20755 science 33500 REVENUE 164 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 16250 security 12900 REVENUE 2937 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 8284 devs 51833 REVENUE 1270 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 16176 podcasts 107123 REVENUE 1639 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 1751 bitcoin_beginners 13250 REVENUE 3312 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 976 podcasts 266250 REVENUE 3161 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 20377 podcasts 71800 REVENUE 3857 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 10979 Ask_SN 95850 REVENUE 2754 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 1319 earth 173850 REVENUE 2757 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 15549 movies 25600 REVENUE 61 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 1495 B2B 49200 REVENUE 3625 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 18178 Personal_Finance 232550 REVENUE 2734 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 15337 AMA 1050 REVENUE 402 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 11621 bitdevs 2050 REVENUE 2251 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 15978 history 6050 REVENUE 3318 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 19806 Photography 7800 REVENUE 2845 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 16124 Photography 5000 REVENUE 73 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 21829 AccessTribe 1021450 REVENUE 2962 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 9669 science 19950 REVENUE 3780 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 6229 sanfrancisco 257950 REVENUE 115 2024-12-27 11:17:13.286 2024-12-27 11:17:13.286 15213 gaming 14404 BILLING 2159 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 18468 Music 21524 REVENUE 1915 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 8173 security 25600 REVENUE 634 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 16284 hiphop 13050 REVENUE 887 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 15549 opensource 12636500 REVENUE 2906 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 21040 christianity 5150 REVENUE 2223 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 16357 bitcoin_beginners 100000000 REVENUE 203 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 2952 privacy 59100 REVENUE 851 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 16177 ideasfromtheedge 4200 REVENUE 2116 2025-02-11 23:13:28.196 2025-02-11 23:13:28.196 21218 lightning 256750 BILLING 997 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 14857 art 18150 REVENUE 2202 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 20504 startups 28750 REVENUE 432 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 1090 earth 8700 REVENUE 3213 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 4084 BooksAndArticles 16350 REVENUE 2957 2025-03-07 07:45:00.812 2025-03-07 07:45:00.812 17541 Design 75525 BILLING 1689 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 658 econ 86995 REVENUE 2488 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 2734 Dogs_And_Cats 53550 REVENUE 867 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 11240 Fitness 16514 REVENUE 2486 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 1237 libertarian 6050 REVENUE 3669 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 8168 devs 75650 REVENUE 1130 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 21540 crypto 5511000 REVENUE 3086 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 20555 Dogs_And_Cats 770617 REVENUE 907 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 18533 Music 16650 REVENUE 1316 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 3745 bitdevs 678897 REVENUE 3315 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 1480 espanol 24950 REVENUE 1252 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 814 history 163600 REVENUE 140 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 19198 earth 357500 REVENUE 3109 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 831 lightning 19600 REVENUE 3492 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 10611 Photography 112850 REVENUE 1744 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 1801 security 331090 REVENUE 2214 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 21413 BooksAndArticles 10600 REVENUE 1873 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 15806 gaming 241150 REVENUE 3504 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 11716 AccessTribe 221100 REVENUE 1710 2025-02-01 08:04:37.518 2025-02-01 08:04:37.518 12220 opensource 25900 BILLING 1066 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 19735 lightning 89154 REVENUE 1223 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 15549 christianity 22850 REVENUE 491 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 4048 crypto 309650 REVENUE 3367 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 18174 Memes 32050 REVENUE 647 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 21222 Personal_Finance 5000 REVENUE 1288 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 12769 Ask_SN 161400 REVENUE 618 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 10608 Stacker_Sports 53500 REVENUE 3214 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 7580 chess 911300 REVENUE 2419 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 5017 earth 21972 REVENUE 2208 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 2293 Photography 48495 REVENUE 3325 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 20754 movies 16450 REVENUE 2587 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 20062 health 45500 REVENUE 501 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 16929 Stacker_Sports 216000 REVENUE 2675 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 5519 security 44600 REVENUE 2305 2025-02-17 05:45:04.976 2025-02-17 05:45:04.976 20381 hiphop 123750 BILLING 2785 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 717 science 132330 REVENUE 2216 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 21279 AGORA 7100 REVENUE 111 2024-12-27 00:45:44.828 2024-12-27 00:45:44.828 13100 privacy 22750 BILLING 575 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 18068 libertarian 57500 REVENUE 2795 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 8870 gaming 6050 REVENUE 3373 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 762 Stacker_Sports 43950 REVENUE 3834 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 9352 bitdevs 96100 REVENUE 1369 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 7877 bitcoin_beginners 230400 REVENUE 3446 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 1000 devs 31650 REVENUE 2211 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 20854 news 5000 REVENUE 499 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 9330 history 463900 REVENUE 3579 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 1737 Linux 518621 REVENUE 134 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 17722 lol 55830 REVENUE 3310 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 16839 startups 3200 REVENUE 3301 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 4166 litdevs 5900 REVENUE 2503 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 18069 art 1432 REVENUE 150 2024-12-28 06:02:27.811 2024-12-28 06:02:27.811 16353 privacy 65484 BILLING 1193 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 16562 Design 58050 REVENUE 216 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 17415 Ask_SN 115650 REVENUE 889 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 3544 Fitness 11550 REVENUE 3572 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 10536 builders 54195 REVENUE 2731 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 4314 stocks 21350 REVENUE 1018 2025-01-17 05:41:14.19 2025-01-17 05:41:14.19 21254 builders 289550 BILLING 2320 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 19488 stocks 56050 REVENUE 1090 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 8498 startups 243345 REVENUE 406 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 12422 B2B 589950 REVENUE 3160 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 667 japan 43249 REVENUE 79 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 9355 AMA 87900 REVENUE 3119 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 21541 hiphop 14145 REVENUE 430 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 964 news 213750 REVENUE 1941 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 6229 news 1345725 REVENUE 1336 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 646 Memes 8578 REVENUE 1751 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 21713 Music 11000650 REVENUE 547 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 20881 marketplace 1114500 REVENUE 1685 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 21833 art 100000000 REVENUE 37 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 17011 B2B 6050 REVENUE 3708 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 2711 hiphop 62900 REVENUE 3057 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 617 privacy 10000 REVENUE 464 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 636 security 100000000 REVENUE 3364 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 15239 libertarian 72400 REVENUE 2557 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 20852 AI 62100 REVENUE 2151 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 11999 security 108100 REVENUE 2730 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 16834 AMA 85100 REVENUE 1425 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 9843 Outdoors 52100 REVENUE 3092 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 13547 bitdevs 80850 REVENUE 3121 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 837 bitcoin_beginners 126375 REVENUE 3268 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 21709 AI 50000 REVENUE 1864 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 7668 polls 158100 REVENUE 860 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 678 stocks 1117750 REVENUE 3113 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 17568 podcasts 191600 REVENUE 942 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 2711 privacy 12050 REVENUE 1187 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 21062 libertarian 205250 REVENUE 2282 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 20646 bitcoin_beginners 37050 REVENUE 2342 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 20120 christianity 5000 REVENUE 1516 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 706 science 6330 REVENUE 1362 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 6688 lightning 14200 REVENUE 2088 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 19673 movies 228600 REVENUE 2445 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 21666 radio 10000 REVENUE 752 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 20755 AGORA 180900 REVENUE 2500 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 2963 Dogs_And_Cats 36300 REVENUE 451 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 811 bitcoin_beginners 70000 REVENUE 1793 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 9177 history 3600 REVENUE 1422 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 20788 news 50000 REVENUE 123 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 15147 education 38100 REVENUE 2784 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 1425 Music 129950 REVENUE 3800 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 10849 stocks 133650 REVENUE 2954 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 9494 charts 38500 REVENUE 2714 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 720 Cannabis 13050 REVENUE 269 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 20433 ecash 87700 REVENUE 3730 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 5444 ru 253750 REVENUE 3845 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 17415 startups 23300 REVENUE 3661 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 17991 Fitness 11400 REVENUE 767 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 13544 Memes 398650 REVENUE 1998 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 3683 NixOS 342100 REVENUE 3273 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 965 movies 510869 REVENUE 2662 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 803 health 115750 REVENUE 3623 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 19863 Stacker_Sports 122868 REVENUE 849 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 20756 news 9100 REVENUE 1660 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 769 NixOS 14600 REVENUE 340 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 9494 Design 78350 REVENUE 149 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 18735 Memes 36388 REVENUE 2243 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 11670 econ 2550 REVENUE 1706 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 1652 apps 253250 REVENUE 2608 2025-02-24 16:50:07.349 2025-02-24 16:50:07.349 974 art 10500 BILLING 3306 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 27 oracle 13157 REVENUE 2230 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 965 DeepDive 2180800 REVENUE 3208 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 11714 Outdoors 38750 REVENUE 1726 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 11443 Stacker_Sports 38520 REVENUE 3805 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 21400 Ask_SN 10000 REVENUE 2033 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 14909 bitcoin_beginners 12250 REVENUE 2913 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 21485 builders 1134650 REVENUE 1123 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 1424 conspiracy 50000 REVENUE 3454 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 12736 hiphop 1050 REVENUE 1633 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 854 videos 20550 REVENUE 1109 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 11527 bitcoin_beginners 25850 REVENUE 2059 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 10693 videos 63419 REVENUE 2819 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 13599 libertarian 255250 REVENUE 3717 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 19854 culture 16850 REVENUE 1955 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 9364 earth 257982 REVENUE 1535 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 21048 Photography 6100 REVENUE 371 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 12072 mostly_harmless 13650 REVENUE 349 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 14669 japan 4500 REVENUE 1506 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 14791 econ 50450 REVENUE 3509 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 21791 NSFW_porn 37150 REVENUE 3490 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 20102 devs 235600 REVENUE 1845 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 1478 art 16859 REVENUE 968 2025-01-16 07:45:42.346 2025-01-16 07:45:42.346 951 japan 607883 BILLING 2933 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 13865 Design 647400 REVENUE 2648 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 15160 Personal_Finance 76800 REVENUE 3249 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 759 movies 105500 REVENUE 633 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 11454 Design 90700 REVENUE 2394 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 20157 Ask_SN 127950 REVENUE 3000 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 1713 Value4ValueEducation 52500 REVENUE 771 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 1090 history 5000 REVENUE 2069 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 21369 BooksAndArticles 15950 REVENUE 110 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 9109 Cannabis 68092 REVENUE 2319 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 13042 marketplace 2100 REVENUE 348 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 2204 culture 33600 REVENUE 765 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 20939 culture 7100 REVENUE 3689 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 7675 NSFW_porn 141094 REVENUE 2918 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 10519 earth 113850 REVENUE 805 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 4167 crypto 5100 REVENUE 212 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 14381 Photography 11000 REVENUE 2534 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 21228 health 15800 REVENUE 2767 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 2789 VirtualReality 5500 REVENUE 3155 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 21060 conspiracy 56000 REVENUE 2270 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 1620 DIY 157927 REVENUE 3683 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 14909 B2B 68800 REVENUE 3345 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 708 Stacker_Sports 233150 REVENUE 1525 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 624 ecash 206900 REVENUE 2570 2025-02-24 05:11:45.392 2025-02-24 05:11:45.392 21541 Dogs_And_Cats 30750 BILLING 1347 2025-01-24 05:58:57.601 2025-01-24 05:58:57.601 4314 privacy 15900 BILLING 3777 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 16296 Fitness 124785 REVENUE 1812 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 1136 opensource 28300 REVENUE 2997 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 10661 movies 9600 REVENUE 1821 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 5487 oracle 153671 REVENUE 865 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 13547 B2B 28350 REVENUE 2585 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 9655 podcasts 12395 REVENUE 3007 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 9183 libertarian 37343 REVENUE 2052 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 11648 bitdevs 100000000 REVENUE 1716 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 733 security 63500 REVENUE 3174 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 2061 AGORA 18350 REVENUE 3764 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 1454 Stacker_Sports 104900 REVENUE 2747 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 803 UFOs 117950 REVENUE 3496 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 21114 Design 5075100 REVENUE 1161 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 654 gaming 5500 REVENUE 488 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 20185 art 11550 REVENUE 3100 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 17046 charts 365925 REVENUE 3707 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 749 builders 183250 REVENUE 3068 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 19263 BooksAndArticles 32450 REVENUE 449 2025-01-03 15:50:44.745 2025-01-03 15:50:44.745 16754 funny 85600 BILLING 2758 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 20137 hiphop 58900 REVENUE 3380 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 21814 UFOs 68450 REVENUE 749 2025-01-10 17:49:26.822 2025-01-10 17:49:26.822 8841 Memes 203850 BILLING 2142 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 848 christianity 510200 REVENUE 1036 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 899 Cannabis 286158 REVENUE 2836 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 1784 startups 67858 REVENUE 3243 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 21369 ecash 37750 REVENUE 3602 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 669 NSFW_porn 731404 REVENUE 665 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 7119 Psychedelics 227469 REVENUE 2682 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 21688 sanfrancisco 106900 REVENUE 2721 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 716 lol 55050 REVENUE 3081 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 19469 videos 122250 REVENUE 2678 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 17148 Design 135850 REVENUE 1046 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 6191 AMA 198550 REVENUE 1159 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 17095 news 4700 REVENUE 2711 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 14295 BooksAndArticles 25500 REVENUE 3422 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 8037 news 86950 REVENUE 1669 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 759 earth 16550 REVENUE 2293 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 8242 B2B 126400 REVENUE 3680 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 2330 NixOS 38550 REVENUE 3506 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 631 Music 72850 REVENUE 172 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 16912 science 157400 REVENUE 1623 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 10554 lightning 93666 REVENUE 747 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 5806 ideasfromtheedge 5500 REVENUE 2363 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 20102 ecash 239250 REVENUE 799 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 18557 culture 218000 REVENUE 2480 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 8954 podcasts 17750 REVENUE 2807 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 2583 art 85268 REVENUE 3329 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 8284 builders 485450 REVENUE 2000 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 1433 bitdevs 25000 REVENUE 1729 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 6202 Ask_SN 100000000 REVENUE 3331 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 17682 bitcoin_beginners 422844 REVENUE 1713 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 9695 christianity 64300 REVENUE 920 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 21036 sanfrancisco 2107350 REVENUE 3327 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 10291 art 100000000 REVENUE 1626 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 1488 oracle 55000 REVENUE 1231 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 18270 news 203750 REVENUE 3372 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 20854 education 322550 REVENUE 748 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 4323 builders 28550 REVENUE 3181 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 21279 education 5000 REVENUE 1988 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 16042 Stacker_Sports 5000 REVENUE 3354 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 1480 Outdoors 1050 REVENUE 3319 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 4395 Mining_Self_Hosting_FOSS 21699 REVENUE 1299 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 20829 Ask_SN 11550 REVENUE 3438 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 21287 econ 66000 REVENUE 525 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 732 UFOs 57450 REVENUE 11 2024-12-24 06:23:51.339 2024-12-24 06:23:51.339 896 bitcoin_beginners 5000 BILLING 1521 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 985 AGORA 100000000 REVENUE 2809 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 2789 UFOs 25000 REVENUE 3151 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 1469 Psychedelics 100000000 REVENUE 2341 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 7659 devs 81850 REVENUE 3127 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 13878 lightning 10500 REVENUE 1888 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 696 opensource 37350 REVENUE 1935 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 632 chess 74150 REVENUE 1091 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 21041 gaming 29450 REVENUE 3203 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 8245 events 8500 REVENUE 2551 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 1738 econ 86600 REVENUE 436 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 9166 crypto 104604 REVENUE 540 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 14791 Stacker_Sports 1050 REVENUE 496 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 17824 ideasfromtheedge 56500 REVENUE 1080 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 2088 Dogs_And_Cats 46600 REVENUE 3481 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 17184 BooksAndArticles 108550 REVENUE 1446 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 12368 BooksAndArticles 112620 REVENUE 2080 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 21771 funny 68400 REVENUE 3559 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 2719 polls 2584 REVENUE 944 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 979 health 58455 REVENUE 2800 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 7376 Dogs_And_Cats 205850 REVENUE 832 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 17321 hiphop 69294 REVENUE 1571 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 19292 security 31050 REVENUE 2308 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 2151 AI 32500 REVENUE 2262 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 7558 hiphop 231800 REVENUE 1102 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 3347 news 334117 REVENUE 101 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 1603 history 302400 REVENUE 355 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 19199 gaming 242450 REVENUE 1238 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 6260 news 54350 REVENUE 2582 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 21501 AMA 136400 REVENUE 3440 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 5520 Photography 5500 REVENUE 3726 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 16753 polls 30000 REVENUE 3230 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 16353 japan 5800 REVENUE 1269 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 803 health 44350 REVENUE 2759 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 17592 Design 55100 REVENUE 1756 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 20956 startups 262900 REVENUE 3584 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 621 dotnet 10600 REVENUE 2681 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 20481 charts 3100 REVENUE 1985 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 19394 builders 342447 REVENUE 298 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 17109 econ 91800 REVENUE 1131 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 9695 DIY 152250 REVENUE 2466 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 18393 Photography 7500 REVENUE 2524 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 16954 mostly_harmless 33100 REVENUE 3170 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 861 news 389150 REVENUE 1257 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 663 privacy 6050 REVENUE 2857 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 21406 Design 60760 REVENUE 3759 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 15858 opensource 55000 REVENUE 1466 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 20911 language_learning 13800400 REVENUE 1573 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 16847 Ask_SN 21000 REVENUE 3303 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 19189 Dogs_And_Cats 245000 REVENUE 1426 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 9367 health 3344 REVENUE 165 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 16424 Dogs_And_Cats 184907 REVENUE 894 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 21012 podcasts 299300 REVENUE 1192 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 21003 history 60100 REVENUE 2235 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 4250 bitcoin_beginners 56820 REVENUE 866 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 21140 devs 12100 REVENUE 267 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 6616 Ask_SN 36900 REVENUE 3375 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 2437 art 14150 REVENUE 3815 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 16296 libertarian 145499 REVENUE 224 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 15556 mostly_harmless 301578 REVENUE 443 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 19570 ecash 5000 REVENUE 2948 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 1003 science 63350 REVENUE 2815 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 21526 podcasts 353000 REVENUE 136 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 11073 lol 262150 REVENUE 612 2025-01-08 11:42:50.177 2025-01-08 11:42:50.177 12744 bitdevs 109900 BILLING 2864 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 919 education 36500 REVENUE 998 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 2347 libertarian 174000 REVENUE 545 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 4692 builders 20700 REVENUE 2860 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 17091 history 195700 REVENUE 1210 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 12245 Cannabis 373800 REVENUE 80 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 20479 Stacker_Sports 46239 REVENUE 3006 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 16966 art 41300 REVENUE 2851 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 1135 science 1050 REVENUE 3332 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 21365 lightning 309800 REVENUE 202 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 2203 espanol 270850 REVENUE 434 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 951 gaming 11700 REVENUE 1937 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 2844 Design 7100 REVENUE 233 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 1175 videos 50500 REVENUE 2498 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 19488 NSFW_porn 6050 REVENUE 2324 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 5069 NixOS 19500 REVENUE 2668 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 4238 movies 100000000 REVENUE 102 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 623 ecash 23750 REVENUE 3350 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 21427 radio 5000 REVENUE 1023 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 17171 movies 12800 REVENUE 345 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 21709 mostly_harmless 8800 REVENUE 3455 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 20588 earth 55000 REVENUE 2131 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 21418 polls 65700 REVENUE 3036 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 16653 movies 115700 REVENUE 2371 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 20987 ru 29948 REVENUE 857 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 18673 science 158750 REVENUE 3226 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 1512 DIY 31500 REVENUE 923 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 5904 Music 5250 REVENUE 2543 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 1454 privacy 32200 REVENUE 2416 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 1426 culture 100000000 REVENUE 2014 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 21184 news 48250 REVENUE 3538 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 15925 Outdoors 203900 REVENUE 3316 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 21442 UFOs 1052700 REVENUE 85 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 9332 security 44838 REVENUE 1251 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 11298 podcasts 5000 REVENUE 94 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 9353 NSFW_porn 58000 REVENUE 63 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 21798 history 10000 REVENUE 1747 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 21178 Music 50000 REVENUE 1869 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 13854 Memes 41300 REVENUE 2983 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 21714 movies 26000 REVENUE 1646 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 1002 Cannabis 15500 REVENUE 3608 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 1209 bitdevs 20650 REVENUE 1497 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 9845 podcasts 558106 REVENUE 2387 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 1611 Photography 16995 REVENUE 235 2024-12-30 02:45:09.004 2024-12-30 02:45:09.004 11165 health 5850 BILLING 1327 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 12245 lightning 1597350 REVENUE 1148 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 899 builders 2600 REVENUE 1882 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 19394 Design 30800 REVENUE 114 2024-12-27 09:19:05.969 2024-12-27 09:19:05.969 18441 Fitness 11500 BILLING 770 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 2734 gaming 1350 REVENUE 2065 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 822 AI 312700 REVENUE 1682 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 676 Stacker_Sports 55350 REVENUE 1444 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 21166 Design 10000 REVENUE 2188 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 10986 Personal_Finance 166900 REVENUE 1563 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 1010 lightning 10250 REVENUE 948 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 14910 AI 124550 REVENUE 1271 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 21338 BooksAndArticles 3800 REVENUE 1416 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 20500 podcasts 83776 REVENUE 2463 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 4395 gaming 5000 REVENUE 1001 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 17415 lol 3922441 REVENUE 1631 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 14939 UFOs 25500 REVENUE 354 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 9843 gaming 185800 REVENUE 1655 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 674 opensource 233646 REVENUE 305 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 11750 history 29100 REVENUE 3336 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 20998 history 3550 REVENUE 3580 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 18069 mostly_harmless 158550 REVENUE 3797 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 17455 BooksAndArticles 100350 REVENUE 725 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 13398 privacy 5000 REVENUE 2005 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 7376 ru 12600 REVENUE 3821 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 1411 Photography 12015 REVENUE 2499 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 12097 Music 51650 REVENUE 1215 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 20913 privacy 423100 REVENUE 1229 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 10698 Music 8550 REVENUE 1657 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 9107 lightning 100000000 REVENUE 2880 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 19488 bitcoin_beginners 100000000 REVENUE 738 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 4167 lightning 17080 REVENUE 161 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 14774 ru 54350 REVENUE 2497 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 2741 art 14245 REVENUE 2932 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 11992 podcasts 100000000 REVENUE 2399 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 1605 bitcoin_beginners 12500 REVENUE 2120 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 16543 lightning 5000 REVENUE 3758 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 13575 videos 1078300 REVENUE 155 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 21832 culture 113750 REVENUE 1995 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 10493 bitcoin_beginners 63400 REVENUE 287 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 807 health 100000000 REVENUE 3150 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 8508 security 582150 REVENUE 1360 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 11417 polls 160750 REVENUE 2614 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 21804 art 3000 REVENUE 2281 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 1122 christianity 1050 REVENUE 184 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 14503 art 15350 REVENUE 292 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 8004 Stacker_Sports 15200 REVENUE 1041 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 1195 builders 44600 REVENUE 3858 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 9438 earth 10501050 REVENUE 3603 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 14650 Dogs_And_Cats 41708 REVENUE 1349 2025-01-24 07:18:34.196 2025-01-24 07:18:34.196 13162 Outdoors 1174950 BILLING 3027 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 14452 Photography 403350 REVENUE 1022 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 2670 opensource 5000 REVENUE 687 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 15213 charts 56100 REVENUE 2423 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 12738 libertarian 10350 REVENUE 18 2024-12-24 11:50:12.215 2024-12-24 11:50:12.215 20706 builders 100000000 BILLING 2085 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 986 security 55750 REVENUE 1776 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 20310 startups 56850 REVENUE 2567 2025-02-24 04:10:04.884 2025-02-24 04:10:04.884 9353 lightning 8500 BILLING 2094 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 3745 culture 22500 REVENUE 1411 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 2056 startups 100000000 REVENUE 2967 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 8541 bitcoin_beginners 12687550 REVENUE 3340 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 4062 art 62952 REVENUE 1395 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 14990 videos 159900 REVENUE 126 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 697 lightning 90424 REVENUE 913 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 1007 PlebeianMarket 5900 REVENUE 2326 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 17411 AMA 22900 REVENUE 2314 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 2596 Outdoors 3500 REVENUE 1442 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 18351 Personal_Finance 7150 REVENUE 3198 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 2056 crypto 218600 REVENUE 1240 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 1552 crypto 17550 REVENUE 3210 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 21734 B2B 819850 REVENUE 1499 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 21090 Dogs_And_Cats 20000 REVENUE 2472 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 2056 ru 257050 REVENUE 1008 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 14651 Personal_Finance 267200 REVENUE 3727 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 7992 christianity 1019750 REVENUE 2290 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 5694 ideasfromtheedge 35750 REVENUE 516 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 19332 Memes 96600 REVENUE 2084 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 4984 opensource 100000000 REVENUE 332 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 7916 Personal_Finance 72600 REVENUE 1047 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 7766 christianity 5000 REVENUE 1244 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 827 history 33150 REVENUE 2743 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 692 startups 30050 REVENUE 1486 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 1425 christianity 100500 REVENUE 1565 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 895 Dogs_And_Cats 53150 REVENUE 3023 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 16354 japan 126550 REVENUE 1620 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 21685 Dogs_And_Cats 71350 REVENUE 723 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 11678 bitcoin_beginners 15650 REVENUE 2766 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 21088 crypto 1550 REVENUE 1459 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 21666 Photography 7000 REVENUE 2095 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 15544 gaming 82744 REVENUE 843 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 11678 startups 101550 REVENUE 2212 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 9351 news 1050 REVENUE 3547 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 716 earth 70050 REVENUE 2450 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 20756 Music 5050 REVENUE 2773 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 1237 AccessTribe 21700 REVENUE 1432 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 9758 BooksAndArticles 132850 REVENUE 1754 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 20691 science 205200 REVENUE 41 2024-12-24 14:33:08.518 2024-12-24 14:33:08.518 13587 art 212850 BILLING 2560 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 2519 health 19100 REVENUE 290 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 21647 crypto 6540 REVENUE 3192 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 18727 builders 63000 REVENUE 925 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 1120 security 104550 REVENUE 3674 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 8423 crypto 18750 REVENUE 607 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 17162 lightning 353000 REVENUE 2640 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 20965 bitcoin_beginners 17700 REVENUE 2032 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 18426 NSFW_porn 191950 REVENUE 15 2024-12-24 07:50:38.233 2024-12-24 07:50:38.233 635 Dogs_And_Cats 50000 BILLING 1448 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 19821 bitdevs 14600 REVENUE 3052 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 2322 builders 196400 REVENUE 2023 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 16594 crypto 1594137 REVENUE 2240 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 20152 ideasfromtheedge 537850 REVENUE 3540 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 21207 startups 31250 REVENUE 1541 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 8289 Cannabis 422981 REVENUE 3555 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 4538 Outdoors 100000000 REVENUE 3751 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 9276 Stacker_Sports 9600 REVENUE 3657 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 14449 Fitness 35050 REVENUE 1731 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 14195 B2B 210111 REVENUE 2808 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 807 mostly_harmless 100000000 REVENUE 806 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 3717 Design 3000 REVENUE 1724 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 8400 Ordinals_Inscriptions_Runes 81450 REVENUE 515 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 2016 earth 217280 REVENUE 2877 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 18231 christianity 5500 REVENUE 1151 2025-01-20 03:14:15.28 2025-01-20 03:14:15.28 5646 builders 12150 BILLING 2253 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 14503 podcasts 10500 REVENUE 280 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 20816 art 27850 REVENUE 2732 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 15273 bitdevs 49650 REVENUE 3525 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 21647 opensource 5750 REVENUE 3038 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 21238 podcasts 30884 REVENUE 3041 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 21794 christianity 93450 REVENUE 31 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 20511 education 201725 REVENUE 3141 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 3353 privacy 161550 REVENUE 1800 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 2213 builders 36350 REVENUE 1242 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 2519 earth 53200 REVENUE 3055 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 2718 Outdoors 420300 REVENUE 2706 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 963 gaming 5050 REVENUE 1874 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 21374 movies 105854 REVENUE 160 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 13399 BooksAndArticles 57150 REVENUE 243 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 10638 Music 96200 REVENUE 57 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 1495 security 6245 REVENUE 1059 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 20969 gaming 6100 REVENUE 3585 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 964 Fitness 141050 REVENUE 2456 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 17365 bitdevs 232378 REVENUE 624 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 18608 Outdoors 106550 REVENUE 1881 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 1064 art 1050 REVENUE 2745 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 2195 videos 5050 REVENUE 1256 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 19488 Photography 287650 REVENUE 549 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 20023 news 4850 REVENUE 2729 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 15510 Personal_Finance 13000 REVENUE 760 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 21413 opensource 465450 REVENUE 2828 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 20841 videos 120500 REVENUE 2298 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 18241 Fitness 5500 REVENUE 3361 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 16876 science 160600 REVENUE 2169 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 2329 econ 143645 REVENUE 157 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 3456 Value4ValueEducation 116800 REVENUE 3471 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 651 privacy 1715461 REVENUE 953 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 18901 news 9100 REVENUE 3427 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 20377 Design 73600 REVENUE 223 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 1549 bitcoin_beginners 67500 REVENUE 1071 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 13174 A_bit_of_Good_News 89900 REVENUE 2571 2025-02-24 05:58:56.759 2025-02-24 05:58:56.759 8648 history 226250 BILLING 1742 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 16042 bitdevs 11100 REVENUE 1009 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 17891 libertarian 193600 REVENUE 2183 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 7119 stocks 233750 REVENUE 893 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 658 news 564850 REVENUE 778 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 14370 startups 678845 REVENUE 2741 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 10690 Stacker_Sports 13250 REVENUE 1493 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 20157 security 1677000 REVENUE 3624 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 4027 builders 42150 REVENUE 314 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 16284 crypto 26050 REVENUE 2248 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 1740 Stacker_Sports 175050 REVENUE 1827 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 15337 privacy 1050 REVENUE 162 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 9171 lightning 58100 REVENUE 3096 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 678 news 28234 REVENUE 709 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 20642 chess 32900 REVENUE 3418 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 14705 AI 209300 REVENUE 1391 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 20756 Photography 180800 REVENUE 2343 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 21242 Stacker_Sports 13600 REVENUE 442 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 20099 Music 602414 REVENUE 401 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 994 bitcoin_beginners 87850 REVENUE 1975 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 12097 art 15248 REVENUE 2191 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 20717 art 526950 REVENUE 908 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 6616 Photography 63800 REVENUE 1905 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 20120 gaming 25850 REVENUE 3134 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 2711 builders 4500 REVENUE 2170 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 670 Ask_SN 5600 REVENUE 200 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 1352 NixOS 10000 REVENUE 2584 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 9705 mostly_harmless 113550 REVENUE 601 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 13544 health 100000000 REVENUE 3837 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 8037 Psychedelics 3000 REVENUE 2395 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 7960 AGORA 100000000 REVENUE 2329 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 20454 dotnet 145869 REVENUE 2192 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 17148 A_bit_of_Good_News 100000000 REVENUE 1312 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 18011 history 9000 REVENUE 571 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 4167 Music 6050 REVENUE 3199 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 656 crypto 13031100 REVENUE 2634 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 20439 crypto 156050 REVENUE 50 2024-12-25 03:26:51.236 2024-12-25 03:26:51.236 20436 privacy 100000000 BILLING 2168 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 811 opensource 97050 REVENUE 2393 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 9552 B2B 570600 REVENUE 1791 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 14385 culture 7500 REVENUE 850 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 1577 Stacker_Sports 18664 REVENUE 1160 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 7425 bitcoin_beginners 14392 REVENUE 3014 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 21766 opensource 174550 REVENUE 1932 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 20970 econ 5000 REVENUE 2531 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 4128 hiphop 9300 REVENUE 3278 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 19071 opensource 111350 REVENUE 716 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 20963 bitcoin_beginners 95700 REVENUE 2799 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 725 litdevs 183650 REVENUE 263 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 17824 oracle 754700 REVENUE 1118 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 21338 videos 5000 REVENUE 1736 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 12774 education 169650 REVENUE 3600 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 13038 security 39000 REVENUE 3429 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 19905 econ 5550 REVENUE 3638 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 21202 ecash 62300 REVENUE 952 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 14990 Personal_Finance 7500 REVENUE 946 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 20710 AccessTribe 74977 REVENUE 1976 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 16965 ecash 50926 REVENUE 1039 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 13249 Fitness 1050 REVENUE 2961 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 937 oracle 39673 REVENUE 1254 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 20433 art 133050 REVENUE 222 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 14941 Outdoors 11000 REVENUE 1872 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 617 art 98000 REVENUE 2631 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 21207 Mining_Self_Hosting_FOSS 10750 REVENUE 1727 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 10608 Stacker_Sports 154050 REVENUE 1201 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 13467 health 85500 REVENUE 1319 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 1142 libertarian 105000 REVENUE 764 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 12277 science 60900 REVENUE 1045 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 21712 Fitness 363700 REVENUE 456 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 15806 lightning 23600 REVENUE 2547 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 9758 history 100000000 REVENUE 2945 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 14278 education 13521543 REVENUE 640 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 1890 AMA 113300 REVENUE 1678 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 17710 ideasfromtheedge 88450 REVENUE 35 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 21713 AMA 50000 REVENUE 969 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 8168 ecash 27050 REVENUE 766 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 1175 ideasfromtheedge 128882 REVENUE 100 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 4502 privacy 622782 REVENUE 3291 2025-03-16 04:52:58.043 2025-03-16 04:52:58.043 18772 builders 284100 BILLING 327 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 20137 earth 17550 REVENUE 2889 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 1326 crypto 131500 REVENUE 1797 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 787 mostly_harmless 100000000 REVENUE 1894 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 701 security 208800 REVENUE 2221 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 711 hiphop 91778 REVENUE 3280 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 19126 Design 6500 REVENUE 3388 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 15549 privacy 20150 REVENUE 2894 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 20490 hiphop 105700 REVENUE 2965 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 2789 podcasts 20350 REVENUE 1035 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 18426 privacy 33900 REVENUE 106 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 4973 AI 121100 REVENUE 2639 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 1615 art 1050 REVENUE 2257 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 670 Fitness 6500 REVENUE 3646 2025-03-25 06:23:51.61 2025-03-25 06:23:51.61 750 BooksAndArticles 83230 BILLING 2539 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 19996 security 197450 REVENUE 2405 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 21314 Dogs_And_Cats 100200 REVENUE 2564 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 21139 Stacker_Sports 14200 REVENUE 3782 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 21088 AGORA 4000 REVENUE 1591 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 646 A_bit_of_Good_News 251300 REVENUE 2589 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 20840 econ 47300 REVENUE 2177 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 16059 bitdevs 4000 REVENUE 1112 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 10409 DIY 589350 REVENUE 1712 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 21631 AI 105254 REVENUE 3182 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 20509 opensource 34550 REVENUE 1298 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 6421 bitcoin_beginners 1550 REVENUE 1088 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 20840 Photography 14800 REVENUE 2686 2025-02-27 05:51:00.217 2025-02-27 05:51:00.217 1320 Music 263100 BILLING 973 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 20099 bitdevs 2200 REVENUE 1676 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 761 history 6000 REVENUE 2628 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 4602 history 51500 REVENUE 1595 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 762 earth 52500 REVENUE 1911 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 1082 Stacker_Sports 103600 REVENUE 2975 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 3506 bitcoin_beginners 259150 REVENUE 2359 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 3360 education 100000000 REVENUE 2464 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 10661 health 6050 REVENUE 1262 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 1468 hiphop 2150 REVENUE 982 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 998 news 5650 REVENUE 1136 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 19812 DIY 11000 REVENUE 24 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 19126 econ 64800 REVENUE 3460 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 4225 history 832300 REVENUE 3264 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 3478 Stacker_Sports 5395 REVENUE 3283 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 20525 ideasfromtheedge 59606 REVENUE 1101 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 18608 NixOS 46600 REVENUE 2482 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 11240 hiphop 29700 REVENUE 98 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 27 gaming 18200 REVENUE 1848 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 11417 earth 7040 REVENUE 467 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 2577 Fitness 105400 REVENUE 1278 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 17157 polls 16000 REVENUE 3187 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 21485 AGORA 11200 REVENUE 3123 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 1493 AI 138600 REVENUE 1654 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 5904 opensource 12500 REVENUE 3456 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 17046 oracle 4200 REVENUE 715 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 2367 devs 50950 REVENUE 2439 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 17519 lightning 64700 REVENUE 167 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 18069 Mining_Self_Hosting_FOSS 11000 REVENUE 1457 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 4079 history 161700 REVENUE 330 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 18865 charts 43650 REVENUE 1834 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 17976 Personal_Finance 10000 REVENUE 1870 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 20980 Design 33050 REVENUE 1295 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 21012 history 46550 REVENUE 719 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 16939 Music 9200 REVENUE 1807 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 9169 christianity 90850 REVENUE 2905 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 17209 podcasts 70100 REVENUE 598 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 18114 mostly_harmless 3395 REVENUE 1279 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 6463 builders 5309450 REVENUE 1287 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 18618 japan 473100 REVENUE 1076 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 20680 Personal_Finance 15000 REVENUE 3377 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 16556 events 157750 REVENUE 366 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 19446 builders 26600 REVENUE 2683 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 11798 B2B 34250 REVENUE 310 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 1316 econ 228750 REVENUE 686 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 16948 education 104700 REVENUE 309 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 2232 Memes 1100 REVENUE 2865 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 16998 econ 51550 REVENUE 2685 2025-02-27 04:05:05.294 2025-02-27 04:05:05.294 19673 crypto 9750 BILLING 1418 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 5870 AMA 12788 REVENUE 2603 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 21406 sanfrancisco 9050 REVENUE 375 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 910 AGORA 159100 REVENUE 3215 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 9109 movies 5200 REVENUE 3771 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 20310 UFOs 17650 REVENUE 3493 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 14271 devs 21000 REVENUE 1981 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 12102 education 7050 REVENUE 3698 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 11192 Personal_Finance 56050 REVENUE 55 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 1564 DIY 835546 REVENUE 1794 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 822 movies 82300 REVENUE 3439 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 822 opensource 186245 REVENUE 3184 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 1354 opensource 56000 REVENUE 2619 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 8570 mostly_harmless 1550 REVENUE 3030 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 831 lol 157900 REVENUE 1050 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 1631 Brasil 175250 REVENUE 2544 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 690 NixOS 26952 REVENUE 689 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 9863 art 50369 REVENUE 922 2025-01-14 14:29:58.88 2025-01-14 14:29:58.88 11938 bitcoin_beginners 5101650 REVENUE 60 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 19512 libertarian 8250 REVENUE 2627 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 17976 opensource 74400 REVENUE 831 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 17798 dotnet 298965 REVENUE 3498 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 6555 health 253850 REVENUE 2034 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 8245 startups 35886 REVENUE 803 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 16154 ideasfromtheedge 709117 REVENUE 2481 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 17148 charts 959556 REVENUE 2205 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 7583 opensource 263036 REVENUE 2586 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 9246 science 739900 REVENUE 3649 2025-03-25 09:05:17.944 2025-03-25 09:05:17.944 18608 DIY 291279 BILLING 1093 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 17710 Design 83950 REVENUE 1220 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 18177 security 63700 REVENUE 489 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 691 UFOs 19220 REVENUE 1051 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 1136 BooksAndArticles 89750 REVENUE 25 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 21555 health 604100 REVENUE 1084 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 11819 food 128000 REVENUE 1783 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 20642 Stacker_Sports 89119 REVENUE 249 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 759 Ask_SN 44540 REVENUE 170 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 12516 Cannabis 21250 REVENUE 2457 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 19673 Dogs_And_Cats 54780 REVENUE 3010 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 2513 devs 100000000 REVENUE 1649 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 10409 ru 5000 REVENUE 839 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 1647 hiphop 188550 REVENUE 2656 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 4474 hiphop 104000 REVENUE 965 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 18525 bitcoin_beginners 8500 REVENUE 3356 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 2016 devs 6100 REVENUE 3684 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 14015 Design 21750 REVENUE 994 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 1433 DIY 16750 REVENUE 3472 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 17011 apps 198916 REVENUE 1477 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 9365 AI 5500 REVENUE 124 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 19016 AI 31350 REVENUE 3256 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 21418 AI 5500 REVENUE 800 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 21804 B2B 1050 REVENUE 447 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 6463 bitdevs 248050 REVENUE 2435 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 1564 litdevs 382289 REVENUE 274 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 20924 events 162145 REVENUE 376 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 7869 oracle 52250 REVENUE 2237 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 11648 lol 1000000000 REVENUE 190 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 21063 A_bit_of_Good_News 55000 REVENUE 3288 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 20939 startups 129457 REVENUE 2367 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 20956 Photography 402100 REVENUE 3374 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 1567 education 156000 REVENUE 3494 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 5195 opensource 286012 REVENUE 1677 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 19777 news 12642550 REVENUE 3609 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 21402 hiphop 29150 REVENUE 731 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 19581 science 261852 REVENUE 1557 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 9339 apps 56225 REVENUE 2038 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 14731 Personal_Finance 8450 REVENUE 927 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 21136 earth 100000000 REVENUE 3482 2025-03-21 05:58:55.491 2025-03-21 05:58:55.491 4459 health 100000 BILLING 2061 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 11165 art 7100 REVENUE 404 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 14037 christianity 55500 REVENUE 2517 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 8176 econ 5500 REVENUE 1599 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 2367 hiphop 4550 REVENUE 187 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 21494 health 156300 REVENUE 1991 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 15060 gaming 515300 REVENUE 3083 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 9695 Mining_Self_Hosting_FOSS 10550 REVENUE 2861 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 2309 builders 53050 REVENUE 1331 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 20781 chess 5000 REVENUE 3619 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 20353 econ 5000 REVENUE 2427 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 1638 Mining_Self_Hosting_FOSS 10500 REVENUE 1963 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 2963 bitcoin_beginners 1111950 REVENUE 3074 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 21119 NSFW_porn 176150 REVENUE 372 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 14255 builders 872861 REVENUE 1325 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 11515 Memes 64600 REVENUE 1577 2025-01-28 20:37:58.648 2025-01-28 20:37:58.648 18901 Outdoors 64650 BILLING 2746 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 20891 bitdevs 77700 REVENUE 1305 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 15577 BooksAndArticles 216000 REVENUE 2428 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 6136 litdevs 17500 REVENUE 937 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 18449 builders 10500 REVENUE 1906 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 632 Stacker_Sports 82550 REVENUE 790 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 14152 security 14950 REVENUE 3156 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 644 Mining_Self_Hosting_FOSS 21500 REVENUE 1420 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 3439 AMA 210100 REVENUE 526 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 704 oracle 12050 REVENUE 3090 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 5036 Music 55300 REVENUE 3177 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 6058 radio 13500 REVENUE 996 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 802 Music 135550 REVENUE 97 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 17824 Fitness 100000000 REVENUE 1342 2025-01-24 04:04:09.509 2025-01-24 04:04:09.509 2196 UFOs 26050 BILLING 3225 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 5308 stocks 212341 REVENUE 3529 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 5497 privacy 118350 REVENUE 3423 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 19303 Ask_SN 311600 REVENUE 422 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 4624 podcasts 3500 REVENUE 393 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 2206 science 97700 REVENUE 1289 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 889 BooksAndArticles 2000 REVENUE 2701 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 5085 bitdevs 5500 REVENUE 2304 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 21825 builders 3500 REVENUE 1825 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 17064 science 10000 REVENUE 1328 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 20816 health 100000000 REVENUE 1447 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 4177 oracle 163250 REVENUE 3564 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 1552 libertarian 1051950 REVENUE 2264 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 15941 science 116939 REVENUE 3072 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 9378 science 30250 REVENUE 2613 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 1673 news 93350 REVENUE 425 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 21131 libertarian 46700 REVENUE 2947 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 15521 Mining_Self_Hosting_FOSS 8000 REVENUE 77 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 6191 gaming 2895 REVENUE 2396 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 6421 AGORA 503333 REVENUE 3672 2025-03-25 14:29:55.802 2025-03-25 14:29:55.802 703 Photography 79700 REVENUE 81 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 775 movies 97275 REVENUE 1182 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 826 libertarian 12655250 REVENUE 3206 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 919 Cannabis 162100 REVENUE 1910 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 20619 hiphop 291195 REVENUE 3830 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 3461 ideasfromtheedge 536050 REVENUE 947 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 15858 science 432150 REVENUE 757 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 1567 Photography 1050 REVENUE 995 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 15728 AccessTribe 1050 REVENUE 1780 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 12951 earth 25872 REVENUE 1188 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 5306 health 132950 REVENUE 2925 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 7425 Dogs_And_Cats 10550 REVENUE 2952 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 11527 art 159150 REVENUE 2575 2025-02-24 09:08:21.287 2025-02-24 09:08:21.287 21003 VirtualReality 22050 BILLING 1309 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 12656 funny 689080 REVENUE 522 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 20973 security 17600 REVENUE 308 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 11443 AccessTribe 21700 REVENUE 3796 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 629 Mining_Self_Hosting_FOSS 12350 REVENUE 1964 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 1567 devs 573150 REVENUE 3824 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 6136 privacy 29171050 REVENUE 551 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 21791 lightning 38100 REVENUE 1986 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 899 podcasts 50000 REVENUE 2898 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 12291 christianity 237490 REVENUE 928 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 9109 Photography 449989 REVENUE 2736 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 20597 security 165550 REVENUE 3755 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 2061 lightning 5000 REVENUE 2912 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 8059 movies 19750 REVENUE 3143 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 21057 Personal_Finance 18000 REVENUE 2839 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 7773 A_bit_of_Good_News 2050 REVENUE 409 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 4819 Music 7050 REVENUE 1548 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 15148 lightning 100000000 REVENUE 1817 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 15521 privacy 19476 REVENUE 1473 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 7674 christianity 49000 REVENUE 706 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 2151 Fitness 2250 REVENUE 2231 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 14909 podcasts 12530 REVENUE 707 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 16660 earth 15000 REVENUE 3731 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 19121 UFOs 132800 REVENUE 1451 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 16350 podcasts 302000 REVENUE 1826 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 3706 Photography 12500 REVENUE 1293 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 19537 econ 42500 REVENUE 2814 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 716 litdevs 153000 REVENUE 2193 2025-02-14 14:30:00.545 2025-02-14 14:30:00.545 21048 AI 20535686 REVENUE 2762 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 2508 devs 616550 REVENUE 2612 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 3377 gaming 1880401 REVENUE 3088 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 7418 polls 29800 REVENUE 1871 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 18321 security 32350 REVENUE 2922 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 2151 econ 54250 REVENUE 3087 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 14258 earth 58185 REVENUE 595 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 21271 bitdevs 14950 REVENUE 3773 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 7389 dotnet 2100 REVENUE 365 2025-01-02 10:55:13.059 2025-01-02 10:55:13.059 12946 mostly_harmless 447580 BILLING 2380 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 21172 AGORA 322800 REVENUE 2716 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 12609 builders 569550 REVENUE 2386 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 640 Photography 48950 REVENUE 879 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 660 BooksAndArticles 177800 REVENUE 244 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 14152 devs 22050 REVENUE 1352 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 16149 conspiracy 132150 REVENUE 1603 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 20606 privacy 170650 REVENUE 2550 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 20924 Dogs_And_Cats 53550 REVENUE 1555 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 4287 chess 20500 REVENUE 3045 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 5825 history 32400 REVENUE 2384 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 18321 crypto 1854050 REVENUE 1924 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 19759 health 32700 REVENUE 2646 2025-02-26 06:14:02.303 2025-02-26 06:14:02.303 4115 apps 86150 BILLING 2991 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 12220 libertarian 636100 REVENUE 3033 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 11996 oracle 11400 REVENUE 1217 2025-01-21 14:29:57.741 2025-01-21 14:29:57.741 9026 health 147950 REVENUE 357 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 19796 Music 31790 REVENUE 2269 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 13759 Ask_SN 16500 REVENUE 659 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 20185 bitcoin_beginners 43150 REVENUE 3594 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 19394 lightning 110550 REVENUE 3172 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 4084 news 164181 REVENUE 492 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 21494 Music 214000 REVENUE 1813 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 8796 lightning 80550 REVENUE 3219 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 17552 japan 15250 REVENUE 1971 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 15100 DIY 44550 REVENUE 122 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 10393 hiphop 5000 REVENUE 1449 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 19303 history 160363 REVENUE 836 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 19417 security 202850 REVENUE 3604 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 1650 Design 256395 REVENUE 2624 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 16847 Psychedelics 265150 REVENUE 201 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 749 BooksAndArticles 141948 REVENUE 2162 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 2502 conspiracy 10000 REVENUE 3610 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 2829 econ 30850 REVENUE 1946 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 11523 Music 1000000000 REVENUE 2385 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 15091 sanfrancisco 15150 REVENUE 343 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 11829 BooksAndArticles 152000 REVENUE 939 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 20802 oracle 291350 REVENUE 2167 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 16357 UFOs 649150 REVENUE 2402 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 16193 security 54085 REVENUE 1558 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 21600 bitdevs 42300 REVENUE 183 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 18274 ideasfromtheedge 47050 REVENUE 341 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 2844 AGORA 5000 REVENUE 313 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 21631 earth 5000 REVENUE 2008 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 1447 news 99600 REVENUE 1994 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 20980 opensource 50150 REVENUE 1474 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 9833 Music 12000 REVENUE 3469 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 2176 earth 76730 REVENUE 2160 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 21670 movies 78443 REVENUE 2258 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 20479 AGORA 391900 REVENUE 2496 2025-02-22 14:29:56.666 2025-02-22 14:29:56.666 1585 Design 8100 REVENUE 2545 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 9356 Linux 50050 REVENUE 1990 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 18005 Psychedelics 115000 REVENUE 1 2024-12-24 04:00:36.608 2024-12-24 04:00:36.608 19446 gaming 116800 BILLING 2266 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 16259 devs 203700 REVENUE 2568 2025-02-24 04:12:26.063 2025-02-24 04:12:26.063 21422 science 36000 BILLING 600 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 18232 gaming 32600 REVENUE 1507 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 20981 UFOs 30000 REVENUE 2372 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 5752 health 5000 REVENUE 3415 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 16410 bitdevs 27300 REVENUE 745 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 8080 Photography 578950 REVENUE 1609 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 899 econ 16050 REVENUE 1787 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 16747 culture 20150 REVENUE 2867 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 10821 ecash 122800 REVENUE 556 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 2156 health 5000 REVENUE 444 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 2719 builders 277330 REVENUE 2024 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 6030 bitdevs 144200 REVENUE 3260 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 3706 science 3643 REVENUE 3637 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 4989 econ 33200 REVENUE 64 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 880 art 28900 REVENUE 248 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 12749 Music 55200 REVENUE 285 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 20490 libertarian 72400 REVENUE 2454 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 21430 crypto 18300 REVENUE 827 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 2459 art 520450 REVENUE 2806 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 19906 libertarian 150250 REVENUE 1801 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 12736 ecash 17850 REVENUE 1948 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 14552 ecash 11050 REVENUE 3296 2025-03-16 14:29:58.795 2025-03-16 14:29:58.795 701 earth 24200 REVENUE 2817 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 1652 startups 56750 REVENUE 3650 2025-03-25 09:07:24.053 2025-03-25 09:07:24.053 20681 opensource 100000000 BILLING 751 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 1012 AGORA 503350 REVENUE 1147 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 4074 dotnet 126550 REVENUE 3615 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 692 hiphop 10300 REVENUE 3714 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 10849 science 1055500 REVENUE 3145 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 5520 startups 91100 REVENUE 3029 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 21714 Ask_SN 160500 REVENUE 3049 2025-03-09 14:29:59.591 2025-03-09 14:29:59.591 18743 BooksAndArticles 37722 REVENUE 533 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 1401 builders 90050 REVENUE 2956 2025-03-07 04:27:00.071 2025-03-07 04:27:00.071 18601 health 55900 BILLING 808 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 17226 sanfrancisco 35000 REVENUE 158 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 18735 Dogs_And_Cats 11300 REVENUE 1407 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 713 Photography 121150 REVENUE 3328 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 20562 podcasts 15800 REVENUE 2917 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 18473 AMA 100000000 REVENUE 1884 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 10484 bitcoin_beginners 56700 REVENUE 2256 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 17148 security 37000 REVENUE 1552 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 4754 gaming 22850 REVENUE 1593 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 11498 science 603879 REVENUE 2467 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 2213 Stacker_Sports 52400 REVENUE 2062 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 9346 art 10000 REVENUE 445 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 15049 radio 158772 REVENUE 2096 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 14650 culture 14000 REVENUE 3195 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 16556 chess 70350 REVENUE 3393 2025-03-18 14:30:02.959 2025-03-18 14:30:02.959 15060 Music 835900 REVENUE 1481 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 8287 chess 12650 REVENUE 3795 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 1272 bitcoin_beginners 358650 REVENUE 2291 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 20623 Dogs_And_Cats 585150 REVENUE 935 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 21332 AGORA 100000000 REVENUE 957 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 7818 Music 66050 REVENUE 2412 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 20745 privacy 210050 REVENUE 53 2024-12-25 14:29:59.462 2024-12-25 14:29:59.462 1720 econ 11050 REVENUE 2649 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 10102 culture 18300 REVENUE 1157 2025-01-20 14:29:58.311 2025-01-20 14:29:58.311 16594 earth 111350 REVENUE 1536 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 1733 sanfrancisco 5000 REVENUE 328 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 20891 Design 5935 REVENUE 1694 2025-01-31 14:29:57.817 2025-01-31 14:29:57.817 717 Outdoors 5000 REVENUE 1142 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 1577 lightning 169550 REVENUE 2844 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 738 health 2830 REVENUE 47 2024-12-24 22:14:34.873 2024-12-24 22:14:34.873 11522 opensource 27000 BILLING 1567 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 6419 education 14950 REVENUE 3112 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 3745 econ 100000000 REVENUE 3544 2025-03-22 14:29:57.429 2025-03-22 14:29:57.429 16456 BooksAndArticles 20600 REVENUE 459 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 9363 builders 7150 REVENUE 2812 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 21710 econ 58700 REVENUE 3843 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 21794 Stacker_Sports 35100 REVENUE 377 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 16667 Cannabis 462766 REVENUE 276 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 8284 A_bit_of_Good_News 139000 REVENUE 2279 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 21768 Dogs_And_Cats 85750 REVENUE 1114 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 797 videos 6500 REVENUE 1931 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 21506 ideasfromtheedge 17575 REVENUE 693 2025-01-09 14:29:59.21 2025-01-09 14:29:59.21 6160 AccessTribe 37250 REVENUE 3183 2025-03-13 14:30:00.763 2025-03-13 14:30:00.763 20802 NixOS 45200 REVENUE 3413 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 10519 oracle 125150 REVENUE 2044 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 1425 Design 5000 REVENUE 1883 2025-02-05 14:29:57.076 2025-02-05 14:29:57.076 795 Personal_Finance 33418 REVENUE 1077 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 11561 lightning 10250 REVENUE 2276 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 3504 startups 108250 REVENUE 2921 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 21639 bitcoin_beginners 6050 REVENUE 368 2025-01-02 14:29:59.053 2025-01-02 14:29:59.053 13177 BooksAndArticles 164809 REVENUE 543 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 15148 art 5000 REVENUE 1983 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 635 AGORA 100000000 REVENUE 1315 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 1712 BooksAndArticles 167350 REVENUE 2411 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 13132 health 58950 REVENUE 2340 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 21083 builders 184750 REVENUE 763 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 21047 Mining_Self_Hosting_FOSS 512000 REVENUE 3839 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 20555 AGORA 208600 REVENUE 1987 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 16542 AGORA 47600 REVENUE 1527 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 21083 lightning 89050 REVENUE 2960 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 15060 Dogs_And_Cats 10516 REVENUE 1032 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 14857 podcasts 11000 REVENUE 3626 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 8080 libertarian 63645 REVENUE 1926 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 7395 privacy 15000 REVENUE 463 2025-01-04 14:29:58.71 2025-01-04 14:29:58.71 20655 funny 1056105 REVENUE 2941 2025-03-06 14:29:57.779 2025-03-06 14:29:57.779 2670 privacy 56750 REVENUE 810 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 17226 B2B 5000 REVENUE 3466 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 18177 crypto 4750 REVENUE 2783 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 9529 earth 20345 REVENUE 2653 2025-02-26 14:30:02.748 2025-02-26 14:30:02.748 21339 security 211850 REVENUE 2735 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 18412 BooksAndArticles 8002 REVENUE 617 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 1454 A_bit_of_Good_News 2666677 REVENUE 2592 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 14857 Personal_Finance 100000000 REVENUE 2581 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 672 UFOs 24650 REVENUE 1277 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 20680 podcasts 50000 REVENUE 2280 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 4323 earth 690098 REVENUE 1818 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 11678 startups 4965981 REVENUE 775 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 16809 mostly_harmless 84200 REVENUE 3276 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 11716 polls 54250 REVENUE 3128 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 15100 Photography 268150 REVENUE 2984 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 1090 science 34550 REVENUE 2596 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 21119 privacy 87815 REVENUE 989 2025-01-16 14:29:59.402 2025-01-16 14:29:59.402 2529 chess 243590 REVENUE 3508 2025-03-21 14:29:57.189 2025-03-21 14:29:57.189 3360 libertarian 157150 REVENUE 1725 2025-02-01 14:30:00.258 2025-02-01 14:30:00.258 1505 Personal_Finance 251600 REVENUE 3457 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 1603 AI 5082659 REVENUE 2855 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 8926 Cannabis 54395 REVENUE 2271 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 20059 privacy 578100 REVENUE 3339 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 17682 stocks 25928750 REVENUE 959 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 21208 bitcoin_beginners 91250 REVENUE 2617 2025-02-25 14:30:00.338 2025-02-25 14:30:00.338 9421 crypto 166140 REVENUE 2611 2025-02-25 11:55:11.885 2025-02-25 11:55:11.885 13574 art 17650 BILLING 2825 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 21159 gaming 270900 REVENUE 2572 2025-02-24 06:23:51.576 2025-02-24 06:23:51.576 854 BooksAndArticles 100000000 BILLING 1531 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 16808 radio 36245 REVENUE 527 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 13132 podcasts 22700 REVENUE 1928 2025-02-06 14:29:56.936 2025-02-06 14:29:56.936 9084 Dogs_And_Cats 74650 REVENUE 500 2025-01-05 14:30:00.215 2025-01-05 14:30:00.215 17535 bitcoin_beginners 3150 REVENUE 2104 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 16259 ideasfromtheedge 61550 REVENUE 36 2024-12-24 14:29:58.242 2024-12-24 14:29:58.242 15703 news 193250 REVENUE 3563 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 14255 Photography 1100 REVENUE 3131 2025-03-11 14:29:59.443 2025-03-11 14:29:59.443 21824 Personal_Finance 16165 REVENUE 2019 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 16351 BooksAndArticles 1111999 REVENUE 359 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 951 lol 15850 REVENUE 1939 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 3544 BooksAndArticles 179400 REVENUE 3002 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 9026 Stacker_Sports 87178 REVENUE 1424 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 20624 Personal_Finance 11534 REVENUE 2782 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 5085 econ 100000000 REVENUE 2325 2025-02-17 14:30:03.85 2025-02-17 14:30:03.85 20019 privacy 53100 REVENUE 3859 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 20586 ideasfromtheedge 9000 REVENUE 1400 2025-01-25 02:16:17.096 2025-01-25 02:16:17.096 1626 earth 60450 BILLING 1770 2025-02-02 14:29:56.765 2025-02-02 14:29:56.765 9758 christianity 285026 REVENUE 3605 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 8289 bitdevs 202550 REVENUE 1351 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 19094 opensource 10500 REVENUE 1307 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 11516 hiphop 546665 REVENUE 485 2025-01-05 09:34:53.069 2025-01-05 09:34:53.069 20120 devs 13000 BILLING 628 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 19138 libertarian 31850 REVENUE 2189 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 13249 culture 50850 REVENUE 311 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 1105 devs 10000 REVENUE 1423 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 14941 movies 25395 REVENUE 2968 2025-03-07 14:30:01.726 2025-03-07 14:30:01.726 2088 DIY 188100 REVENUE 2004 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 19303 bitdevs 15259436 REVENUE 1619 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 16513 econ 229750 REVENUE 967 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 756 bitdevs 100000000 REVENUE 2712 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 1647 DIY 3150 REVENUE 2040 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 1145 radio 23450 REVENUE 1267 2025-01-22 14:29:59.603 2025-01-22 14:29:59.603 14990 AGORA 193350 REVENUE 2804 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 3456 Dogs_And_Cats 97750 REVENUE 2748 2025-02-28 14:29:59.537 2025-02-28 14:29:59.537 18271 libertarian 5000 REVENUE 704 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 21262 AI 430450 REVENUE 2455 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 7674 startups 34500 REVENUE 1579 2025-01-29 02:21:49.667 2025-01-29 02:21:49.667 11240 Outdoors 61750 BILLING 3162 2025-03-12 14:30:01.027 2025-03-12 14:30:01.027 1761 AMA 4500 REVENUE 1067 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 16660 science 20500 REVENUE 2099 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 18351 ideasfromtheedge 24400 REVENUE 2410 2025-02-19 14:30:01.906 2025-02-19 14:30:01.906 9166 security 189830 REVENUE 3474 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 6717 language_learning 158912 REVENUE 1132 2025-01-19 14:30:00.492 2025-01-19 14:30:00.492 11527 ideasfromtheedge 130150 REVENUE 638 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 20987 sanfrancisco 138630 REVENUE 2274 2025-02-16 14:29:59.898 2025-02-16 14:29:59.898 21036 builders 5050 REVENUE 828 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 17741 science 17650 REVENUE 2119 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 18731 BooksAndArticles 118850 REVENUE 646 2025-01-09 01:37:39.457 2025-01-09 01:37:39.457 14503 ecash 54650 REVENUE 2490 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 11263 movies 100000000 REVENUE 3743 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 13903 Value4ValueEducation 128200 REVENUE 863 2025-01-13 14:29:58.537 2025-01-13 14:29:58.537 861 opensource 100000000 REVENUE 2017 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 854 science 100000000 REVENUE 1044 2025-01-17 14:29:59.437 2025-01-17 14:29:59.437 669 science 128212 REVENUE 166 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 5519 security 28350 REVENUE 1409 2025-01-25 14:30:00.449 2025-01-25 14:30:00.449 10342 videos 308100 REVENUE 2442 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 20450 movies 17050 REVENUE 587 2025-01-08 02:33:31.777 2025-01-08 02:33:31.777 21239 hiphop 21500 REVENUE 316 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 5499 lightning 55250 REVENUE 3575 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 6555 mempool 118450 REVENUE 797 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 2328 Dogs_And_Cats 163045 REVENUE 2058 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 8796 news 2192800 REVENUE 2064 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 20812 art 52550 REVENUE 718 2025-01-10 14:30:02.532 2025-01-10 14:30:02.532 2780 oracle 639250 REVENUE 3451 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 21714 Personal_Finance 1250 REVENUE 2073 2025-02-10 14:30:00.199 2025-02-10 14:30:00.199 21287 Dogs_And_Cats 36500 REVENUE 3645 2025-03-25 05:58:56.748 2025-03-25 05:58:56.748 10490 DeepDive 2330300 BILLING 1324 2025-01-23 14:29:59.568 2025-01-23 14:29:59.568 3371 christianity 233685 REVENUE 2267 2025-02-15 14:29:56.754 2025-02-15 14:29:56.754 9337 polls 13750 REVENUE 2604 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 703 podcasts 39500 REVENUE 96 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 1488 gaming 40550 REVENUE 1965 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 10698 privacy 11450 REVENUE 2114 2025-02-11 14:30:00.134 2025-02-11 14:30:00.134 15049 AGORA 50000 REVENUE 3449 2025-03-20 14:30:03.234 2025-03-20 14:30:03.234 1009 AGORA 14300 REVENUE 1934 2025-02-07 08:54:46.549 2025-02-07 08:54:46.549 19857 Personal_Finance 2100 BILLING 1960 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 13038 culture 21500 REVENUE 107 2024-12-26 14:30:35.794 2024-12-26 14:30:35.794 19138 videos 177750 REVENUE 2354 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 5427 Dogs_And_Cats 26525 REVENUE 3019 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 18601 Stacker_Sports 76100 REVENUE 2996 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 6361 AGORA 37250 REVENUE 1371 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 1609 AI 512600 REVENUE 3739 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 12819 Dogs_And_Cats 112441 REVENUE 786 2025-01-11 14:30:00.288 2025-01-11 14:30:00.288 18330 econ 45000 REVENUE 2459 2025-02-20 14:29:59.515 2025-02-20 14:29:59.515 15510 news 214900 REVENUE 1364 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 19888 education 23100 REVENUE 2607 2025-02-24 14:30:02.122 2025-02-24 14:30:02.122 2734 stocks 123100 REVENUE 2919 2025-03-05 14:30:02.258 2025-03-05 14:30:02.258 1307 espanol 26650 REVENUE 3748 2025-03-27 14:29:57.95 2025-03-27 14:29:57.95 15337 security 53050 REVENUE 829 2025-01-12 14:29:59.318 2025-01-12 14:29:59.318 18449 crypto 16000 REVENUE 2881 2025-03-04 14:30:00.099 2025-03-04 14:30:00.099 16042 events 29200 REVENUE 2030 2025-02-09 14:29:59.383 2025-02-09 14:29:59.383 20816 privacy 78550 REVENUE 1795 2025-02-03 14:29:58.219 2025-02-03 14:29:58.219 2670 videos 21800 REVENUE 159 2024-12-28 14:29:58.493 2024-12-28 14:29:58.493 20523 earth 5506050 REVENUE 1580 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 16842 A_bit_of_Good_News 2182700 REVENUE 2154 2025-02-12 14:29:59.253 2025-02-12 14:29:59.253 8841 Stacker_Sports 12550 REVENUE 1656 2025-01-30 14:30:02.21 2025-01-30 14:30:02.21 11498 bitdevs 60050 REVENUE 2843 2025-03-03 14:29:59.97 2025-03-03 14:29:59.97 20768 Memes 113750 REVENUE 426 2025-01-03 14:29:59.219 2025-01-03 14:29:59.219 11477 Photography 28150 REVENUE 1973 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 4415 crypto 343900 REVENUE 2360 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 2156 libertarian 102150 REVENUE 2709 2025-02-27 14:30:01.58 2025-02-27 14:30:01.58 15978 mempool 31050 REVENUE 3616 2025-03-24 14:29:55.463 2025-03-24 14:29:55.463 20588 sanfrancisco 177766 REVENUE 1617 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 20596 ecash 502450 REVENUE 1582 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 9337 lol 14800 REVENUE 1469 2025-01-26 14:29:58.679 2025-01-26 14:29:58.679 698 AMA 559750 REVENUE 3567 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 5293 litdevs 114100 REVENUE 302 2024-12-31 14:30:02.081 2024-12-31 14:30:02.081 16309 Music 295600 REVENUE 3104 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 1162 lightning 18550 REVENUE 2001 2025-02-08 14:29:57.035 2025-02-08 14:29:57.035 18402 gaming 4300 REVENUE 1561 2025-01-28 14:29:57.514 2025-01-28 14:29:57.514 654 science 6050 REVENUE 6 2024-12-24 05:11:44.651 2024-12-24 05:11:44.651 6382 lightning 100000000 BILLING 265 2024-12-30 14:29:59.706 2024-12-30 14:29:59.706 20881 culture 86050 REVENUE 1851 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 20939 Stacker_Sports 219850 REVENUE 3247 2025-03-14 14:29:58.359 2025-03-14 14:29:58.359 14818 bitcoin_beginners 12100 REVENUE 1590 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 21033 privacy 5000 REVENUE 1083 2025-01-18 14:30:00.705 2025-01-18 14:30:00.705 21091 art 1050450 REVENUE 3802 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 9336 lightning 21000 REVENUE 3070 2025-03-10 14:29:58.974 2025-03-10 14:29:58.974 929 econ 759150 REVENUE 3363 2025-03-17 14:30:01.281 2025-03-17 14:30:01.281 21042 apps 89850 REVENUE 940 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 5758 espanol 90949 REVENUE 2378 2025-02-18 14:29:58.358 2025-02-18 14:29:58.358 16876 security 7100 REVENUE 137 2024-12-28 01:32:30.042 2024-12-28 01:32:30.042 15484 chess 236000 REVENUE 2477 2025-02-21 14:29:59.086 2025-02-21 14:29:59.086 14791 mempool 644650 REVENUE 2802 2025-03-02 14:29:57.876 2025-03-02 14:29:57.876 5757 builders 100000000 REVENUE 3842 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 9356 Music 78096 REVENUE 2779 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 16704 Cannabis 32350 REVENUE 197 2024-12-29 14:29:59.275 2024-12-29 14:29:59.275 1626 lightning 107000 REVENUE 3829 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 14381 NSFW_porn 2100 REVENUE 1616 2025-01-29 14:29:59.169 2025-01-29 14:29:59.169 9262 gaming 10050 REVENUE 3282 2025-03-15 14:29:59.733 2025-03-15 14:29:59.733 3686 bitdevs 424969 REVENUE 3818 2025-03-28 14:29:54.732 2025-03-28 14:29:54.732 9330 science 5000 REVENUE 1393 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 11716 gaming 12771600 REVENUE 949 2025-01-15 14:30:00.264 2025-01-15 14:30:00.264 20913 AGORA 501050 REVENUE 535 2025-01-06 14:29:57.524 2025-01-06 14:29:57.524 3353 opensource 189604 REVENUE 1945 2025-02-07 14:29:57.858 2025-02-07 14:29:57.858 15336 polls 28400 REVENUE 361 2025-01-01 23:46:29.174 2025-01-01 23:46:29.174 19905 health 190450 REVENUE 1355 2025-01-24 14:29:59.327 2025-01-24 14:29:59.327 889 oracle 121450 REVENUE 2165 2025-02-13 14:30:00.699 2025-02-13 14:30:00.699 1585 Value4ValueEducation 212850 REVENUE 3407 2025-03-19 14:30:09.888 2025-03-19 14:30:09.888 15925 privacy 35100 REVENUE 3716 2025-03-26 14:29:56.731 2025-03-26 14:29:56.731 14404 Photography 10500 REVENUE 3582 2025-03-23 14:29:57.531 2025-03-23 14:29:57.531 21391 A_bit_of_Good_News 100000000 REVENUE 2777 2025-03-01 14:30:00.186 2025-03-01 14:30:00.186 15160 news 4750 REVENUE 3831 2025-03-29 14:29:56.307 2025-03-29 14:29:56.307 19494 Ask_SN 90092 REVENUE 1515 2025-01-27 14:29:58.125 2025-01-27 14:29:58.125 5942 charts 77500 REVENUE 2541 2025-02-23 14:30:00.936 2025-02-23 14:30:00.936 17690 privacy 100000000 REVENUE 1856 2025-02-04 14:29:58.151 2025-02-04 14:29:58.151 17046 econ 81600 REVENUE 3003 2025-03-08 14:29:57.399 2025-03-08 14:29:57.399 13987 education 110433 REVENUE \. -- -- Data for Name: SubSubscription; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."SubSubscription" ("userId", "subName", created_at) FROM stdin; 20979 lol 2025-03-18 21:06:05.749 13177 events 2025-03-18 21:06:05.749 1047 podcasts 2025-03-18 21:06:05.749 12291 espanol 2025-03-18 21:06:05.749 1471 DeepDive 2025-03-18 21:06:05.749 946 charts 2025-03-18 21:06:05.749 17095 NSFW_porn 2025-03-18 21:06:05.749 13575 mostly_harmless 2025-03-18 21:06:05.749 6030 oracle 2025-03-18 21:06:05.749 4166 bitcoin_beginners 2025-03-18 21:06:05.749 20979 conspiracy 2025-03-18 21:06:05.749 19524 polls 2025-03-18 21:06:05.749 17106 art 2025-03-18 21:06:05.749 14195 health 2025-03-18 21:06:05.749 2514 Personal_Finance 2025-03-18 21:06:05.749 14195 history 2025-03-18 21:06:05.749 11314 builders 2025-03-18 21:06:05.749 6030 crypto 2025-03-18 21:06:05.749 14260 radio 2025-03-18 21:06:05.749 8945 lightning 2025-03-18 21:06:05.749 4166 Dogs_And_Cats 2025-03-18 21:06:05.749 1738 startups 2025-03-18 21:06:05.749 8796 AI 2025-03-18 21:06:05.749 1745 opensource 2025-03-18 21:06:05.749 19524 marketplace 2025-03-18 21:06:05.749 19569 culture 2025-03-18 21:06:05.749 2329 bitdevs 2025-03-18 21:06:05.749 7418 Fitness 2025-03-18 21:06:05.749 1145 econ 2025-03-18 21:06:05.749 16406 B2B 2025-03-18 21:06:05.749 14195 libertarian 2025-03-18 21:06:05.749 19446 Memes 2025-03-18 21:06:05.749 6136 Stacker_Sports 2025-03-18 21:06:05.749 18557 news 2025-03-18 21:06:05.749 1745 hiphop 2025-03-18 21:06:05.749 5746 privacy 2025-03-18 21:06:05.749 19459 Ask_SN 2025-03-18 21:06:05.749 684 christianity 2025-03-18 21:06:05.749 6687 ecash 2025-03-18 21:06:05.749 19417 AccessTribe 2025-03-18 21:06:05.749 16594 movies 2025-03-18 21:06:05.749 14195 AMA 2025-03-18 21:06:05.749 4166 BooksAndArticles 2025-03-18 21:06:05.749 658 ru 2025-03-18 21:06:05.749 19527 Outdoors 2025-03-18 21:06:05.749 11091 Photography 2025-03-18 21:06:05.749 19524 education 2025-03-18 21:06:05.749 20439 Design 2025-03-18 21:06:05.749 19524 chess 2025-03-18 21:06:05.749 2329 litdevs 2025-03-18 21:06:05.749 6594 Value4ValueEducation 2025-03-18 21:06:05.749 15200 earth 2025-03-18 21:06:05.749 1745 sanfrancisco 2025-03-18 21:06:05.749 17106 funny 2025-03-18 21:06:05.749 9529 VirtualReality 2025-03-18 21:06:05.749 19569 japan 2025-03-18 21:06:05.749 19292 Mining_Self_Hosting_FOSS 2025-03-18 21:06:05.749 9529 Psychedelics 2025-03-18 21:06:05.749 946 stocks 2025-03-18 21:06:05.749 19759 Cannabis 2025-03-18 21:06:05.749 6030 security 2025-03-18 21:06:05.749 4570 PlebeianMarket 2025-03-18 21:06:05.749 1298 science 2025-03-18 21:06:05.749 16301 dotnet 2025-03-18 21:06:05.749 1970 NixOS 2025-03-18 21:06:05.749 20102 DIY 2025-03-18 21:06:05.749 3656 mempool 2025-03-18 21:06:05.749 5757 devs 2025-03-18 21:06:05.749 1745 ideasfromtheedge 2025-03-18 21:06:05.749 1298 language_learning 2025-03-18 21:06:05.749 2952 apps 2025-03-18 21:06:05.749 1286 videos 2025-03-18 21:06:05.749 15491 Music 2025-03-18 21:06:05.749 19524 A_bit_of_Good_News 2025-03-18 21:06:05.749 12821 econ 2025-03-18 23:11:34.53 4118 meta 2025-03-18 23:31:59.97 4118 bitcoin 2025-03-18 23:32:19.798 4118 Stacker_Sports 2025-03-18 23:32:52.531 20137 AGORA 2025-03-19 09:12:02.358 20062 AGORA 2025-03-19 09:12:15.982 1175 NixOS 2025-03-19 11:59:37.971 21522 startups 2025-03-19 21:38:09.517 21532 bitcoin 2025-03-20 02:11:19.664 21532 lightning 2025-03-20 02:13:07.004 5173 UFOs 2025-03-21 02:39:47.212 9418 Linux 2025-03-23 18:23:33.721 811 gaming 2025-03-18 21:06:05.749 21314 gaming 2025-03-20 11:12:08.367 20854 Linux 2025-03-24 04:24:34.824 13132 art 2025-03-24 21:50:05.291 21498 BooksAndArticles 2025-03-25 02:20:07.966 21709 food 2025-03-25 14:21:41.693 21136 food 2025-03-27 03:33:57.242 21768 Brasil 2025-03-28 14:35:30.701 20713 Brasil 2025-03-28 16:43:02.344 6030 meta 2025-03-29 09:13:28.588 18178 Ordinals_Inscriptions_Runes 2025-03-29 09:35:22.574 1817 bitcoin_beginners 2025-03-29 13:57:21.897 12656 nostr 2025-03-29 19:01:44.07 21771 Brasil 2025-03-29 20:59:41.857 \. -- -- Data for Name: TerritoryTransfer; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."TerritoryTransfer" (id, created_at, "oldUserId", "newUserId", "subName") FROM stdin; \. -- -- Data for Name: ThreadSubscription; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ThreadSubscription" ("userId", "itemId", created_at) FROM stdin; \. -- -- Data for Name: Upload; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Upload" (id, created_at, updated_at, type, size, width, height, "userId", paid, "invoiceActionState", "invoiceId") FROM stdin; \. -- -- Data for Name: UserNostrRelay; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."UserNostrRelay" ("userId", "nostrRelayAddr", created_at, updated_at) FROM stdin; \. -- -- Data for Name: UserSubTrust; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."UserSubTrust" ("subName", "userId", "zapPostTrust", "subZapPostTrust", "zapCommentTrust", "subZapCommentTrust", created_at, updated_at) FROM stdin; \. -- -- Data for Name: UserSubscription; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."UserSubscription" ("followerId", "followeeId", created_at, updated_at, "commentsSubscribedAt", "postsSubscribedAt") FROM stdin; \. -- -- Data for Name: VaultEntry; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."VaultEntry" (id, key, iv, value, "userId", "walletId", created_at, updated_at) FROM stdin; \. -- -- Data for Name: Wallet; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Wallet" (id, created_at, updated_at, "userId", label, priority, type, wallet, enabled) FROM stdin; \. -- -- Data for Name: WalletBlink; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."WalletBlink" (id, "walletId", created_at, updated_at, "apiKeyRecv", "currencyRecv") FROM stdin; \. -- -- Data for Name: WalletCLN; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."WalletCLN" (id, "walletId", created_at, updated_at, socket, rune, cert) FROM stdin; \. -- -- Data for Name: WalletLND; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."WalletLND" (id, "walletId", created_at, updated_at, socket, macaroon, cert) FROM stdin; \. -- -- Data for Name: WalletLNbits; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."WalletLNbits" (id, "walletId", created_at, updated_at, url, "invoiceKey") FROM stdin; \. -- -- Data for Name: WalletLightningAddress; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."WalletLightningAddress" (id, "walletId", created_at, updated_at, address) FROM stdin; \. -- -- Data for Name: WalletLog; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."WalletLog" (id, created_at, "userId", wallet, level, message, context, "invoiceId", "withdrawalId") FROM stdin; \. -- -- Data for Name: WalletNWC; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."WalletNWC" (id, "walletId", created_at, updated_at, "nwcUrlRecv") FROM stdin; \. -- -- Data for Name: WalletPhoenixd; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."WalletPhoenixd" (id, "walletId", created_at, updated_at, url, "secondaryPassword") FROM stdin; \. -- -- Data for Name: Withdrawl; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Withdrawl" (id, created_at, updated_at, "userId", hash, bolt11, "msatsPaying", "msatsPaid", "msatsFeePaying", "msatsFeePaid", status, "autoWithdraw", "walletId", preimage) FROM stdin; \. -- -- Data for Name: _prisma_migrations; Type: TABLE DATA; Schema: public; Owner: - -- COPY public._prisma_migrations (id, checksum, finished_at, migration_name, logs, rolled_back_at, started_at, applied_steps_count) FROM stdin; 48d44b1e-d9aa-4ac2-9a4a-8fd6bd6cb5a8 b19180476fa9a3834d0302ef57e11c8e7e11c7b1e90b73a4fe3ae9c7de2feaf2 2024-02-25 00:22:46.763417+00 20230131163315_streaks \N \N 2024-02-25 00:22:46.761687+00 1 dadb8d68-cc46-4904-aea2-2f322a117403 8897169043bb55ac35cb355fbc167fe087f0dd6626a2ee31e0e0f9a3005e1430 2024-02-18 19:44:20.229982+00 20230126180748_root_id \N \N 2024-02-18 19:44:20.137574+00 1 684af2a3-f939-438c-be65-8993b6d41202 92936bb04455f9158a8a51b06961c7f8e28fe9793d78b481b5cf61860179f71f 2022-06-29 14:41:13.512561+00 20210427152429_init \N \N 2022-06-29 14:41:13.353892+00 1 86039021-e09f-4238-84bb-d50d4fd18a4b ee50e4ef4e377d1e9879a7b10e64b93910617dc5a0c41e60a69ee9186aa03173 2022-09-25 19:11:18.526051+00 20210902174121_story_name \N \N 2022-09-25 19:11:18.53695+00 1 04479261-ef39-4896-aaa9-cee3abba81d0 d57b7293ef9e60e452eae6d94b5abdd8cd5f3cea4d087a2f37dd8e6f3d7c4eec 2022-06-29 14:41:13.535523+00 20210507005624_invoices \N \N 2022-06-29 14:41:13.543973+00 1 05a2ffd1-036d-4f60-9344-68cba50c7344 282edfd6c8fd7ac1e56ddc698daa812eb03ae89856d37b58ff9fec36de630b61 2022-08-02 14:53:38.30059+00 20210710130454_withdraw_hash_nounique \N \N 2022-08-02 14:53:38.310141+00 1 370fb5f5-cc25-4043-a859-11a49e4f6f6a 9146d8cb806dc9756cf6f3308cc8de40ce088da39c2bee7338af6400ac7b1a12 2022-06-29 14:41:13.544454+00 20210510175729_msats \N \N 2022-06-29 14:41:13.567032+00 1 27ecac01-435d-45be-8d68-37230081a428 c81b1b29c5d992c84236065b387962876e47640bbb77aac51a96fbbcb28c6654 2022-06-29 14:41:13.556962+00 20210511163249_function \N \N 2022-06-29 14:41:13.576237+00 1 64819b6b-7346-4994-99c8-9e62145da4ff 126d7e731a938bf477df4005442cb7c9f6bc1c48198c925f7373139b9a6ac282 2022-06-29 14:41:13.568147+00 20210511170231_vote \N \N 2022-06-29 14:41:13.588598+00 1 3ef20730-eb4c-4494-aaee-d70b744bd1f8 643d20518ad02478959bdd2ae04e39aa702d04ffd847ec653e9ce6d6f2718f02 2022-08-02 14:53:38.332948+00 20210710132315_new_withdraw_funcs \N \N 2022-08-02 14:53:38.332637+00 1 a3fe3cb7-b38c-472b-855f-897fbb9e619e 4ca69080dfa6bf2a3b1a4e83b54ab2b22d94cb0c4dae52b86d7af39234d5268e 2022-06-29 14:41:13.591166+00 20210513002346_withdrawl \N \N 2022-06-29 14:41:13.599509+00 1 582e2cef-51ea-4ad3-8303-8c7396414451 444d61bd84cdb857158d9ac27bd35fd25064cc7dbfa94dea5d652f7e20a9443b 2022-06-29 14:41:13.601019+00 20210513002503_withdrawl_funcs \N \N 2022-06-29 14:41:13.622649+00 1 bf25e61d-686e-42a2-bd24-6507606070d0 071fdd8792f9632f9bd1b6f25f8c3f1a0dd6ef660ed864fac3bcb2c5802b0ad6 2022-06-29 14:41:13.609614+00 20210513191840_enum \N \N 2022-06-29 14:41:13.63245+00 1 5a10e920-78ca-48b8-9ccf-df9ff6be8c72 5da39fa381ce2524b8e361bf9413670881ebd7b8a8a56bf74723544a338c9384 2022-09-03 21:16:50.587586+00 20210810195449_fix_item_path_trigger \N \N 2022-09-03 21:16:50.593595+00 1 45c373c1-78c9-4e25-a4ec-2ab9ff0aeb20 a17ac94cda68d3917571d0ac88276d165af2b17a884d3f1e52936ddd1a82b340 2022-06-29 14:41:13.618921+00 20210521192356_name_trigger \N \N 2022-06-29 14:41:13.641266+00 1 46f77201-dc4c-41d5-bdcf-11a2a7d7028a 7a7ec506c6ae4b3057aed70ac77671bb58324db5623e5e605af53c5f81bef8dd 2022-06-29 14:41:13.648143+00 20210521234940_reserved_names \N \N 2022-06-29 14:41:13.650582+00 1 a5d1f53d-d311-4413-a5cf-70efbec8c23e daa75379136340c93c3f35b334c927644c09ad01b4a1095b4c91d017713102f3 2022-09-25 23:01:38.961431+00 20210902220036_case_insensitive_names \N \N 2022-09-25 23:01:38.890695+00 1 0a0e7f50-4bac-4692-89c9-7105431acf9c c51aff9774024db4a0bffb85209ca877b5ed19e072ef9ebd11212baf6474087e 2022-06-29 14:41:13.657692+00 20210524211524_freebies \N \N 2022-06-29 14:41:13.679593+00 1 f50bb95f-dabb-4089-9c4b-61a3e8c58cb9 5ff654c1531a726e94fa0158390e37192f65d9b03022e8736dbf16c75e2b7ddf 2022-09-10 23:48:20.490866+00 20210818204542_mentions \N \N 2022-09-10 23:48:20.465161+00 1 02a4c27a-ba89-4a49-976a-8e6c3388e672 68656f356577bdc50f8cbc5d89652349a5bb619ed300c4815c525a220d64e820 2022-06-29 14:41:13.66563+00 20210601001008_null_names \N \N 2022-06-29 14:41:13.689042+00 1 60bd2089-2b0f-4813-baf9-1a700d2d3cd0 d8b41ed097d94bfaa47b7351d0cd4c838b75e4555512b26a8d714319a80338d5 2022-07-18 00:45:11.430164+00 20210624171900_checked_notes_at \N \N 2022-07-18 00:45:11.437966+00 1 dd81d3c0-ee7e-4ac6-95aa-ec6b88e8451e 4522bceebe3d2146305b8c16cd737db33c5e43c596b0597ca8203ebb36c8934a 2022-07-20 03:54:03.874989+00 20210626191129_lnurl_auth \N \N 2022-07-20 03:54:03.850911+00 1 5cc1882e-55fa-4c13-ac9e-068ae903a345 164cf1dd55ea288bec156531d8ae30b011efaa531cf478a24fe807c42023c984 2022-09-10 23:48:20.504613+00 20210818220200_mention_unique \N \N 2022-09-10 23:48:20.523341+00 1 fb5661be-d719-4a53-bcfe-6a6920a39c3a 6aea9bbe74091add6b75577a876c529ea4a38781cdd00f5a02e1a96c0e1c2d99 2022-10-17 23:47:41.396853+00 20210922214428_create_bio \N \N 2022-10-17 23:47:41.408229+00 1 9ed7d4f2-a435-4564-bd2a-0b03401db010 143eff2f7f517f34a5b07d2bf9e27504d0d69f0443a6ca65a841e76f842041cc 2022-09-12 19:39:36.879491+00 20210819213404_user_withdrawal \N \N 2022-09-12 19:39:36.880932+00 1 29b2c134-ba4b-41a5-a929-e1412e7d471d 566c09d6235a45f0f69dae0a3b658f9933f2a1dca25e085c4347e0f06c2471fd 2022-10-02 20:22:30.273789+00 20210908193444_tips \N \N 2022-10-02 20:22:30.171845+00 1 efb2a785-0387-47bc-a579-381c1e03bae8 314bc25b1d08fd8b75d784f3404c2c85f3b20a30b3c6197ddce3aebcb4053802 2022-09-12 19:39:36.89064+00 20210819213613_user_withdrawals \N \N 2022-09-12 19:39:36.911881+00 1 b0b2f792-4790-4035-bd3a-7ddce97a055f 7b58c48ec1493806daf3a1919f77f54aeb15af6cc3234b0c2dd628b81e676e46 2022-09-12 19:39:36.901682+00 20210819213954_user_withdraw \N \N 2022-09-12 19:39:36.923283+00 1 cb028a23-36d1-4580-a043-7203d2eddc37 45990ec74002ef6edddf75fc37b91b5347eebb0a1d5e8c13b86fc4565d2a29ad 2022-12-02 23:46:44.958021+00 20211104210749_theme \N \N 2022-12-02 23:46:44.966209+00 1 ac8bfef9-d7ae-475f-bcf1-b439866bd7f0 3a71b78af6c3f2ce82e8df17b56a34a67dd7d31550e35c494bc214355d6170dd 2022-10-05 17:29:08.981982+00 20210911215322_tip_default \N \N 2022-10-05 17:29:08.985312+00 1 f6022322-7805-47dc-b621-bb6485b504ba 7011f19f9f061531f09c05e00707921955c6fccb469789bd69a8d7dd7533e725 2022-10-29 15:16:34.699903+00 20211006144214_created_at_indices \N \N 2022-10-29 15:16:34.47571+00 1 9f8f10a9-b4c0-4571-a913-4f2bdbc360f3 fefab76980f65e10b7bd7fb2bfd2be32c81302df28498b3dc06f83cc9af4a834 2022-10-07 18:29:11.160856+00 20210914173926_item_boost \N \N 2022-10-07 18:29:11.154867+00 1 0860a1d0-9e45-4128-9516-f0553e957cab ac82d8afe42b23cfa383a6038dce7912a5e4b285772e2b477bd801bde1b489da 2022-10-17 23:47:41.376327+00 20210921232401_user_bio \N \N 2022-10-17 23:47:41.375066+00 1 a4e1398e-0f04-4470-8679-e996b00b96d9 04c8190f474afb773619c9228e3f7c88fdd6fe5429fa3e7324acab3ed82737ec 2022-11-17 18:52:57.726941+00 20211025174239_item_act_replace \N \N 2022-11-17 18:52:57.723916+00 1 a245b8fb-e597-4166-978a-60c5df551942 52497bc9123fbae6013a4b97e974d17bd3eb1d3cf453fc80ef3c79e1de20f44d 2022-11-07 23:46:47.350028+00 20211012203507_invite_modeld \N \N 2022-11-07 23:46:47.324655+00 1 c5f2a7a6-f823-445a-9155-4ec5552006f9 c3d65416252b769b1c2abbfe4ced548ac78912eea667c5a79ff01ef64341a207 2022-11-07 23:46:47.367295+00 20211015180613_invite_func \N \N 2022-11-07 23:46:47.382013+00 1 ec6baf4b-5e9a-40fe-bd57-f50bccf63e34 a8653dc1f2e57007e53dcffd4284fb8b2d8194de7b5774ec4ae58bfe96c5ee29 2022-11-20 23:01:19.262934+00 20211027231327_lnwith_withid_optional \N \N 2022-11-20 23:01:19.285102+00 1 4d7eb477-99c6-46a4-ba9a-fb73ff4eda9b a88bfb2e702b5064a09d5d3c966cba44362e0bb8bfc835039c319641f605335e 2022-11-20 23:01:19.253429+00 20211027230800_lnwith \N \N 2022-11-20 23:01:19.249016+00 1 b303d53b-53b8-4354-9980-f95077685f40 fe66a307179e6b8597f9e21bbecbf8a9c10670c02fe859e579fab6929c9d87a4 2022-12-04 21:00:32.404589+00 20211111202609_item_act_tip_bug \N \N 2022-12-04 21:00:32.399693+00 1 63146dca-588a-4480-bc5b-a158b87fa44b 7f8989885b385bc31c0eb07b024c07aa6b23d2f6e5190118a82b770c5935243d 2023-01-05 20:26:47.019059+00 20211206213650_popovers \N \N 2023-01-05 20:26:47.025269+00 1 dbaa9bc9-a6a6-4f69-93aa-7e0cdd929994 7294113843494cd3f52bf7c2f7bcf50c7f8cb6697f0749c0369f0d8d9096c8b7 2023-01-05 20:26:47.040857+00 20211213194823_tip_default \N \N 2023-01-05 20:26:47.054342+00 1 a9c39caa-f862-45e4-959f-cf13e4c1d363 fd521fb0fb68b61566e59da7b864e04f35cdeea5903c3c73c60ad3a491b6dac7 2023-01-30 19:46:13.472428+00 20220104214008_wallet_funcs \N \N 2023-01-30 19:46:13.480185+00 1 8961e627-0024-48f5-bc00-b6c45bbefe67 1b4a74b24610191bf40ee4885f8d9599291b8f99f2b9d832af4a3c81fd5569f7 2023-01-30 19:46:13.513704+00 20220106220010_pins \N \N 2023-01-30 19:46:13.504082+00 1 8a800689-05d0-4216-b387-b30fbaf3d96c f7b0885c81e3b3a57fc439a6392ae13977a0a88ada15385e971c9616af5d839e 2023-01-30 20:01:32.666433+00 20220107192624_pgcrypto \N \N 2023-01-30 20:01:32.637843+00 1 4560ea8c-2f26-4bcd-b142-c586b6296e7d d6b1fc6f2d098306535726def2cc384ea63936478a9385d4a321947dd090aeb7 2023-02-06 18:26:15.946107+00 20220114153043_drop_theme \N \N 2023-02-06 18:26:15.950659+00 1 6caa9cd7-b377-4ac2-bf32-6eb77f9045f6 02626eccedca53c66928b0b5e37b4898c0e343dc2906d351c6375602833e210a 2023-06-08 21:27:15.469538+00 20220516144530_profile_photo \N \N 2023-06-08 21:27:15.272488+00 1 e379d6cb-5d12-473d-9973-6bf42716583f f144f4babcec395ccb36d5f9dab6fd33a9bcdb4ddf4df82143f16c8d494a0475 2023-02-10 18:00:12.144185+00 20220114153522_add_trust \N \N 2023-02-10 18:00:12.153476+00 1 e16f891f-f6a2-4ec9-8606-58a603880fed 561aaae268927b51d20e6b32d41aa03106405503a73ae22b882d221f5d22b8ca 2023-04-02 23:24:27.674846+00 20220310192618_a_few_more_indices \N \N 2023-04-02 23:24:27.671453+00 1 30a9c170-4083-470a-83b4-29c0160df2c8 4f43913bb457a99ef5c330860f0829333916d9f00fc2e23f98f99bde0036de8e 2023-02-13 19:00:38.843786+00 20220119215304_statistics_names \N \N 2023-02-13 19:00:38.857542+00 1 2a314258-7d2f-4e32-80d4-e9ea30fe5cf4 174cd321277590c2ed50e4d11412e32466b9a16300f3481df6c3b5addcbffad3 2023-02-13 19:00:38.85923+00 20220119221313_item_act_var_tip_bug \N \N 2023-02-13 19:00:38.875323+00 1 9fa9221c-dcc9-4606-91d0-e5dcf6882b23 972f703116aaff9d4078c94c3fd5d9b3719dd8ec144e48e86a0b9d2447b1c62c 2023-05-06 22:16:06.450937+00 20220412203904_default_tip_10 \N \N 2023-05-06 22:16:06.471717+00 1 05b4e4d6-1f2b-4d0e-8f66-33ceabbe633a 9a6584dfce086a502fa2c4174231defdaadfb70ed8b5a8abe04a46fb325ec351 2023-02-20 19:20:25.041052+00 20220126155041_search_triggers \N \N 2023-02-20 19:20:25.04478+00 1 769ddf14-3899-4356-a5a2-220b7ef41a3c cdf0bf12b0f9b1eb41a3ba5151e30b9cceb5c52c9d547f1df0a9c174b27ec877 2023-04-06 17:17:42.513116+00 20220314162449_last_seen \N \N 2023-04-06 17:17:42.477818+00 1 9433df07-b842-4527-8018-ac3a9b21451e e9ed57dfb0eca9f3d7ab92e91949bb79e5bda08b01ae1c79533286570908a2d6 2023-03-24 00:10:32.895436+00 20220214215140_subs \N \N 2023-03-24 00:10:32.73005+00 1 bf1d2ad2-1915-4927-8c84-46871eb94bc0 ec99e92247d5c046f7aa8e10193fbb952a82fb9279a5d369e94bb69168ff2101 2023-03-24 00:10:33.071478+00 20220218193307_sub_desc \N \N 2023-03-24 00:10:32.977608+00 1 bf5c5db8-e5c4-4b79-9940-7a4a96394a40 45eb09faf7a221691760a5edc5d4c2c7973ac4dbfc622959737e3036fbda08b4 2023-03-24 00:10:33.251147+00 20220224203227_item_status \N \N 2023-03-24 00:10:33.153477+00 1 50577564-2aed-4c3d-a5a0-44fe879b0ec1 2309960f3a118e7ae70d9e76d8bcd3b88c3eed699b9b5f1c425a8187300ff0a7 2023-04-10 13:08:01.844596+00 20220315171015_item_act_stream \N \N 2023-04-10 13:08:01.861812+00 1 9fbec261-8a9e-45ae-bf2f-bdd4f8e749c3 12263dd9ce3dabae207a9329d8d2eebdfe54adc878ff6a38d29a713fbba5ce43 2023-03-24 00:10:33.433287+00 20220224205443_run_auction \N \N 2023-03-24 00:10:33.335534+00 1 02044f15-f558-4131-924e-e343b091f288 9002968253aace02a040650615611e7d86fc5d51f080a61b9244ac91004c6595 2023-03-25 21:30:29.491135+00 20220301201244_auction_fix \N \N 2023-03-25 21:30:29.497737+00 1 61c1d25a-da3a-4207-90e2-4d371b96d873 afedeb8db95b76b624c7e2ce395639fb4079e66f86d8c836a3690ce68918cb13 2023-05-17 00:30:21.252943+00 20220421195241_note_settings \N \N 2023-05-17 00:30:21.273381+00 1 547967b2-10f7-43d1-8fc3-637825858c70 db3c96680c7b9418738cf69c2c385097dc9c6bbc3bf076ad96a37c8d9f8ba7ba 2023-03-26 19:32:11.426346+00 20220303170859_exp_auction \N \N 2023-03-26 19:32:11.384777+00 1 d0cfa7be-4868-4b89-aab9-4b6db89b5419 de577449e60e0cb0d7416462cdd47ced3ddb38b6f3db6f8d501a90b03ada8d56 2023-04-10 13:08:01.874719+00 20220316212238_earn \N \N 2023-04-10 13:08:01.877022+00 1 b13b23ce-daf0-478c-9d01-f9b183b6d44a d6a9b4a65a352206695cb398050703c7f0fc8857faa7a58fa2ebbaaa26b3b216 2023-03-30 22:40:26.221995+00 20220307181836_sats_min \N \N 2023-03-30 22:40:26.227422+00 1 aa2c0563-bbd2-4ffb-88e1-8b8bfea77203 863082ab0a12666778426507f7484f00b6d8445e71867f4a6e172809d49b9ed0 2023-03-30 22:40:26.231287+00 20220307201437_job_col \N \N 2023-03-30 22:40:26.253381+00 1 f0d81281-052c-465d-8afc-c564d27c6dcb 961f0943419d89d958fb6fc8a34ae4005751e4f7a95e00b630acdbdbae39b4ae 2023-05-06 22:16:06.459312+00 20220412205824_path_index_prisma \N \N 2023-05-06 22:16:06.482656+00 1 0846d902-e7bf-4de0-a1e5-085758d75b87 4d70c2c1a1866487e686797034e525c6ad5fecd003c1412c21a7dacb9a02f23c 2023-04-02 23:24:27.626998+00 20220310191658_more_indexes \N \N 2023-04-02 23:24:27.546367+00 1 b10f7f34-ac8b-404e-b5f6-764e37a3096c 2cb2532da64ec61edc068b1ad3a0035256f06913cf820a0aa913faec4febe379 2023-04-27 22:36:38.150093+00 20220404191617_stacked \N \N 2023-04-27 22:36:38.053702+00 1 97b47f51-e382-42f9-9fe1-af7431136f0f 6e2a2a1beb1974ce73eb928f01c45ce90ab7611cf397c14123c55fa5efea2ed9 \N 20220412190704_item_path_index \N 2024-02-20 16:24:17.791945+00 2023-05-05 19:57:26.2621+00 0 1a81b15e-e275-4b33-a350-c84de5457df8 7be995b4b6a20fc232fe93b96b66bf3bb38c3859fc59dd2b62b0573c6735ced0 2023-05-10 13:49:35.594157+00 20220415193617_exp_comments \N \N 2023-05-10 13:49:35.615512+00 1 6c3b1938-b104-4d94-b4a8-123aac4790a0 32231a373675ec77d4bc09ba6813f6caaeb1b56d1e5f734bf578fa291f4bf715 2023-05-06 22:16:06.439821+00 20220412190704_item_path_index \N \N 2023-05-06 22:16:06.464013+00 1 eac533cd-4844-4bb4-a4d4-580e785b6f6e dc16ac4667f83b7bb8499a6c14366aad2fdbe63247de12b8d57028f69652c935 2023-05-12 19:14:58.937108+00 20220418173838_forward \N \N 2023-05-12 19:14:58.950329+00 1 a2c6ec4a-07c7-4dfd-bed2-eda89f8f423e b650dd225f0bd760f3db9cd77e3eb354a28ace4d160ea22fdf2e4ea5653d8050 2023-06-01 18:35:10.910647+00 20220508141357_jobs_indicator \N \N 2023-06-01 18:35:10.932884+00 1 4d4c820a-755f-4a7f-9b68-cf59dc143287 a82214f40385ca7e019f5f5e012637ccd2d9c6f4a7d7d66eebc4d5f6e04737b2 2023-05-12 19:14:58.946383+00 20220419162551_fwd_item_act \N \N 2023-05-12 19:14:58.96871+00 1 ef6db977-6768-4080-8dac-d2f4104f6f26 18b6be647dcdd9381759257177b46aa29ce00d64412c39914385ff2043570896 2023-06-09 20:32:19.606453+00 20220517192333_boost_denorm \N \N 2023-06-09 20:32:19.345943+00 1 876c622e-e12c-43b1-ad2f-5e061875e282 7ef30706f56fafb480965f036da416ee024707e3dd48ee0004cec9ca2846a4bb 2023-06-08 21:27:15.231934+00 20220511171526_upload \N \N 2023-06-08 21:27:15.101207+00 1 1ae881d2-b9c5-48b1-91cc-a4f21a437edf dca085ede5f213e3c396aa673c4f6ed29906ef569c377150d875e1ae13b3de47 2023-06-09 20:32:19.309012+00 20220517173200_weighted_votes_denorm \N \N 2023-06-09 20:32:17.894116+00 1 5a5ea398-c6e8-4d1f-9be3-fb9d1b5b45db 7a6891f041ae4f072692fdfcef685ececba003f0f1e7eca301b9b91d57225060 2023-07-30 20:14:22.429133+00 20220630170204_upvote_trust \N \N 2023-07-30 20:14:22.449892+00 1 b5820d61-8bba-407a-bc08-96a3b04c0cc8 091f6414c7a2138b882d993eb7747be9924ac78c641743743d759ab9a977f0f4 2023-08-13 23:34:57.840755+00 20220720211644_item_uploads \N \N 2023-08-13 23:34:57.860054+00 1 41b129eb-5586-47df-a69f-b57e9478911a c0ec904cff89d91ea461f5befbb41a53a42f719d04a0efcf8488753cb2d1ddf7 2023-08-22 14:30:37.579196+00 20220727194641_polls \N \N 2023-08-22 14:30:37.329907+00 1 a26d3211-8f80-49a9-aed1-5ee55f06102f b75ac6e7ad7a5fd318001af0312cd2f110202eb7f2b5ee247e296f9d664d52ed 2023-08-22 14:30:37.588946+00 20220727194920_poll_functions \N \N 2023-08-22 14:30:37.610823+00 1 a3c38aae-3365-46af-a55c-f910923022be dc6bc6accecb9283f79153fe2f685193caa7c7648dc1514dcb0a2e1dbe978479 2023-08-22 14:30:37.600762+00 20220727203003_poll_functions2 \N \N 2023-08-22 14:30:37.620522+00 1 ee9220ff-7684-48fc-ade7-9526e1afc79c 58e6f705f86ff5922ea97fac1616ef5460d66cb9ed179e1f31f2f640309844ae 2023-08-29 22:38:46.279931+00 20220806220043_no_free_comments \N \N 2023-08-29 22:38:46.300716+00 1 f9bb2879-2367-48b7-acf7-8e4bf3912222 bb44cf9ab80c026acf213067e35640bda1a6c66d92768497a964c84b8f45032f 2023-09-03 21:31:46.654805+00 20220810162813_item_spam \N \N 2023-09-03 21:31:46.676079+00 1 a6c0bbd2-61a4-4bb1-be4f-444751c6e41c f67a97e2259f4ea63977eeee61e396e66ed9d78a1b21e26e6e080efcaaf86386 2023-09-03 21:31:46.666315+00 20220810203210_item_spam2 \N \N 2023-09-03 21:31:46.68647+00 1 1da4621e-379b-41d9-a92c-c3a6419a9c35 089c4ed351aa3908d5fd56e79927f84ad898aeb4f72e6930e265876fcbc6266a 2023-09-19 16:25:13.344405+00 20220827143828_positive_ints \N \N 2023-09-19 16:25:13.34681+00 1 5a892bef-d7ca-4615-8aa0-da33b8d2870e f06cebae8050ddf12aec361abdd47c6830dc6694015afdeb6273b295553514c4 2023-09-10 22:42:23.765319+00 20220815195309_edit_funcs \N \N 2023-09-10 22:42:23.787003+00 1 ede5b2b7-75ea-462a-8a79-e51805066e31 36d34415ed6dc2f09fa47c89274070ad748dd94d6572d0ed7c086a54a61a2421 2023-09-22 21:11:44.54065+00 20220830183739_create_invoice \N \N 2023-09-22 21:11:44.560961+00 1 429f6b48-e3b8-4ccf-872e-04ca007e44b7 ef9b26b7abf6cea5e6b58cf23b1f44da1095eb1bbc01b81c5bcfc4aef9a1c49d 2023-10-16 14:57:19.464702+00 20220922210703_outlaw \N \N 2023-10-16 14:57:19.485278+00 1 c1dac7b9-e549-481b-9702-b81e78f7c2fb e362fb489ebc48aa2ff814a82abc9c83915b3eb438456fb430a77eb4256380a4 2023-09-25 17:40:55.629959+00 20220830213020_hide_invoice_desc \N \N 2023-09-25 17:40:55.649015+00 1 ce88421f-63bb-43db-83de-aa9eed3fff0a 24c0029efe1c9ce30d51fd2bacb7608888b688d9eb0ca1aec18229967423e5ce 2023-09-25 17:40:55.647633+00 20220830222623_ext_pg_trgm \N \N 2023-09-25 17:40:55.661214+00 1 88205500-c5fe-4456-b54d-a04f627fee18 cde3dd097504bbb6afb6c10f78a12b2e3ba731875d1069dd5debafeb08876b81 2023-09-25 17:41:20.435259+00 20220831205352_item_and_comment_stats \N \N 2023-09-25 17:40:55.679442+00 1 0fbdc8a9-da6e-48bd-afb0-3b8162c049a5 29e4f62733b2a741687f27edb0654a36955775d5540d4f4612d5418147d9847d 2023-10-16 16:17:30.880679+00 20220923153826_outlaw_float \N \N 2023-10-16 16:17:30.89989+00 1 f011d539-c659-42fe-9364-8cd2a86f6ba1 117d0bc6018e7df5eb384b91b9e5b91ed7284334fdf673a4ab5527c1e282f332 2023-10-07 22:36:08.530513+00 20220913173806_earn_columns \N \N 2023-10-07 22:36:08.499011+00 1 c60ef0dc-6120-43f1-acbf-2cf8894e17a9 0c26535b8f85ccafc24f9e11add55b452d74bdb837587c2ee7c9549356ce2d1e 2023-10-07 22:36:08.542476+00 20220913173826_earn_function \N \N 2023-10-07 22:36:08.563174+00 1 9aaedba8-4217-48f6-b3c6-2822688e3aad 21f8e8a3f8cbcdeadd634a772bf53c1e2d0b1d9b62d61b7afd178641211c285d 2023-11-24 20:08:45.035112+00 20221101183505_create_item_freebie \N \N 2023-11-24 20:08:45.05396+00 1 b9226050-fe79-4cff-9800-33957935ef00 ce0287e231ea6b49895e7183212f77d689f72152f6e50904ffc9801c5fa4462b 2023-10-14 20:35:14.866388+00 20220920152500_downvotes \N \N 2023-10-14 20:35:14.86009+00 1 d3fcf6ad-af66-40b7-9bee-d3bf7dd350d3 9ff07dff3ca3454061f8e5f8220ba8b80fd0c4a306ffbaace5b6f6de99339dc4 2023-10-20 22:52:39.423937+00 20220926201629_freebies \N \N 2023-10-20 22:52:39.443346+00 1 7ec45f36-2369-4fea-8636-f8ee142a6bed 7208b03908d28c7aeac8b85bae605923ed766824339087e2446ac2941af53665 2023-10-14 20:35:14.885571+00 20220920195257_dont_like_this \N \N 2023-10-14 20:35:14.897995+00 1 08f6a76b-656c-4541-b111-ab9adddbfa46 9285c3f412b7a27bd443bc54133d8cd27ceb45ac069d4a174907954ddc0235dc 2023-10-20 22:52:39.437096+00 20220926204325_item_bio \N \N 2023-10-20 22:52:39.455684+00 1 08fa34a2-8ff9-4639-bdce-6be38927ba0c e1c143f386f3c84c3df93b9b3cd8d6c508a66236dea40f904c10751c0a277a5f \N 20221106181637_item_path_index \N 2024-09-14 13:43:07.932901+00 2023-11-29 19:23:25.176439+00 0 2938e838-7625-42d0-8858-f5deef3b9c4d c668c8be9df89fd157ae2c431dfb10aa27ba2e25d051ce900bb7bd001b49b4a6 2023-10-20 22:52:39.447739+00 20220927214007_reserve_names \N \N 2023-10-20 22:52:39.468378+00 1 ace252cd-b2ba-43de-b43c-5639951387ed e1c143f386f3c84c3df93b9b3cd8d6c508a66236dea40f904c10751c0a277a5f \N 20221106181637_item_path_index \N 2024-09-14 13:24:18.202753+00 2023-11-29 19:04:48.419908+00 0 08a21173-449e-40aa-8d72-70b1aca63264 92f11dd0d40d050f55eee8e0ad28904fcff425a6d39b9cefb16ab97e252d3882 2023-10-22 21:18:03.016191+00 20220929183848_job_funcs \N \N 2023-10-22 21:18:03.034814+00 1 3dbd4666-8039-4127-b19d-6fe1f1c0ee8f 261e0385089e1b6bba3b9c6acb98ecd8874246c302ac7d742b5234287189fb0e 2023-10-27 23:14:48.50943+00 20220913010100_fiat_currency \N \N 2023-10-27 23:14:48.528318+00 1 65336ff1-a99e-4aa0-a86c-93f90149cf82 062871b4840c3f773c9c6e09db2254922c433a45c1298eeb5ee981932e642b4c 2023-10-28 20:45:15.124181+00 20221005192538_auction_update \N \N 2023-10-28 20:45:15.144231+00 1 c869d1b0-3b16-48ff-aa36-2a53bca8d03c e1c143f386f3c84c3df93b9b3cd8d6c508a66236dea40f904c10751c0a277a5f 2023-11-29 19:34:27.449012+00 20221106181637_item_path_index \N \N 2023-11-29 19:34:27.477848+00 0 f0a6ad2e-79b4-49c1-96fb-634c36d3caac 6129d26d1f818e0a5e50337c251aeb3052239ef3d00cbafaa09e3ca4d7ae0e76 2023-11-29 21:12:25.727486+00 20221106203216_item_indices \N \N 2023-11-29 21:12:25.029225+00 1 aa0969fc-6ec4-4f17-8ff2-965129911ce0 9f410fc19973e5a6aeb49d893c5c44518ce33aacbb895dc2926d577527e5ac9d 2023-11-29 19:36:41.562567+00 20221106184713_item_path_index \N \N 2023-11-29 19:36:38.806185+00 1 c8cdaca2-d63c-4ebc-91ff-04761ac917e3 1c36abb677a6e8ed47453bcce6a3232116c9000c300978d5b6b17a9c295a00a6 2023-12-08 23:36:25.513667+00 20221110190205_msats_bigint \N \N 2023-12-08 23:34:08.272968+00 1 d58dc5aa-7a61-49c2-9c00-e5cdf10c2e3e 7881f464a5486550e9a24bbd69c6d66a08565470d90b867ae0869bb40f5030bb 2023-12-16 18:48:51.575319+00 20221116223041_tipcut \N \N 2023-12-16 18:48:51.593894+00 1 26cfa2f7-c39e-4f18-a7b0-d8daef949989 d73fc07f0f11f89d84451efce2667d095c4940526c3e5b778dfd94739cc63b0b 2023-12-08 23:36:25.538465+00 20221110224543_msats_funcs \N \N 2023-12-08 23:36:25.546333+00 1 cd08619b-87d0-466f-a91f-aa68d8560909 87d7eb2f37feace29949792e0f00b0b6e6fb3a2c7f6ff2a6d5e894b55b4e9f29 2023-12-16 18:49:02.631204+00 20221118202137_tipcut_funcs \N \N 2023-12-16 18:48:51.607254+00 1 dc9b1d09-2497-4df2-93dc-718e2fe90a39 305193360a6c14b3613eab2c28ace4b323d15c0597755f2a536180c9ce03f86d 2024-01-01 21:07:09.180043+00 20221206213226_donate \N \N 2024-01-01 21:07:09.179782+00 1 66aa6bf6-5d80-422e-bcbe-9fd3c373a555 738f98396d7cd58d1391a46332ca1c0309930efcb73c6bd21aae02d1d8e166d9 2023-12-24 23:48:47.20839+00 20221128224540_job_cost \N \N 2023-12-24 23:48:47.225637+00 1 773c7a72-44dd-4359-897d-70a9229e3a41 6a66002ce30b0ecfab366b9d3e5967e828e9e507f72da75343d9a62f91f04654 2023-12-24 23:48:47.222761+00 20221129182008_hide_top_users \N \N 2023-12-24 23:48:47.24114+00 1 c563603e-68e9-428f-99b1-84545ff378fd c1040cacb36d69f5b7f72dc4d76e0239c75c7b9cd6c0b36210fb6319abe602c1 2024-01-30 01:34:17.050299+00 20230106183533_nip05 \N \N 2024-01-30 01:34:17.068031+00 1 7bd2d38b-1a63-47b4-902f-a3ec7f9549ef 1f23375e1520b622e0319c609677557a80b572f82aef1be4d407b740e594cfb1 2024-01-01 21:07:09.190884+00 20221207212053_donate_func \N \N 2024-01-01 21:07:09.211853+00 1 efecd155-7005-4a2f-a405-8dadd2ae8915 384170c516eb6b8ed746e1d70e8d3c5e0ce8b36e3c91b26f52bd800ce2b2318a 2024-01-01 21:07:09.200701+00 20221208224752_turbo_tipping \N \N 2024-01-01 21:07:09.222526+00 1 2906582b-735b-4b32-92ee-2af41083818c b95ad5f42cfd7832efa8e2305c1f259a86070b2d5c2fd66be77ccf598497ffda 2024-02-14 20:59:22.1467+00 20230119155952_ots \N \N 2024-02-14 20:59:22.165553+00 1 adf417df-ecff-45ff-a190-bba29e9f5365 b852a09e39758336fc26d68c8fca027712349838b0727899d3cee322f8b24c69 2024-01-01 21:07:09.209737+00 20221209201457_donate_func2 \N \N 2024-01-01 21:07:09.232513+00 1 bc6bf59b-1edd-4ae0-ab4b-c13d86e48128 5f537ce9f3ae6b2de3bea0c7091b0cf2f1f169bbe5ebc60edc3c0ade79f384c9 2024-01-30 01:34:17.083636+00 20230106200624_nostr_relays \N \N 2024-01-30 01:34:17.08171+00 1 4a546b8c-2c37-4aa4-a582-2d2c0a2ae645 79d14b4e29920a0e30f6c52881cccaf103a6dc0ea540b5f6c2e1e9f76a6ffb88 2024-01-11 23:55:59.447171+00 20221213220945_referral \N \N 2024-01-11 23:55:59.463516+00 1 f364c393-62af-4f58-998e-c82798559e64 1edcbbf363f4902e4eabe1a47fd8ed8114db57f692152ae1afe5f13ba77503b8 2024-01-11 23:55:59.469507+00 20221214175911_referral_act \N \N 2024-01-11 23:55:59.478608+00 1 8def4209-718c-46de-ba31-803ba590270e 4e6c2f121c7963b379d3c86a8365d574d98b6fce372db4eb8c91e70888033c98 2024-01-11 23:55:59.664067+00 20221214201527_referral_funcs \N \N 2024-01-11 23:55:59.501674+00 1 04f087fb-c94b-43cc-ad3e-d23efd55ba9c 90b367792e9c75d41c746cbb41e35215a84b431eb18be81534f7330864dab12d 2024-02-05 19:53:22.303827+00 20230112205950_delete_item \N \N 2024-02-05 19:53:22.324406+00 1 0a206e5a-40bf-4cd7-b074-c053f73fed6a 80d5d642dceea8f97a110a781d39dec1d00472b5715e41813733c6fd1f448c0b 2024-03-03 19:44:30.70562+00 20230208232335_run_auction_fix \N \N 2024-03-03 19:44:30.723052+00 1 8ad7eb70-27cc-47d1-967a-41368d2338e7 2345f5e00d1e95e957dd47712d5e66444f8edb7baf1a53e2aa9d247510bfc5bc 2024-02-10 19:41:39.591727+00 20230117185647_slashtags \N \N 2024-02-10 19:41:39.570358+00 1 613eb05f-c4d8-4cf6-aed8-d8bbbe9eafea 77abdb3a2849062af296af1ac7191c091f86b5c5f070439d43a978126eca8fcd 2024-02-14 20:59:22.162748+00 20230119161144_ots_trigger \N \N 2024-02-14 20:59:22.178578+00 1 a357e775-fda9-4f0a-b633-c90f83cfa780 07a85bf220781aee557b85d74b66cb0ee8ef6458893d5922f5590cea83ddc198 2024-02-25 20:37:59.645703+00 20230202164411_streak_trigger \N \N 2024-02-25 20:37:59.662271+00 1 93874e01-66f4-4edc-96b8-3fce0e4e765d 1cc715cd26cf1546ae041cacf6558ff85ebb2c879b85701f21caebe6e1be8631 2024-02-15 18:43:53.925865+00 20230123180433_subs_timestamp_fix \N \N 2024-02-15 18:43:53.943837+00 1 8f4fa4f6-3aaa-4410-aac1-5802a3c3018c 2db070510a1eefbc583390850f5c73439f8e834d8eb6e53d27cbdcecb42bf114 2024-02-18 16:54:11.510801+00 20221213203919_add_bounty \N \N 2024-02-18 16:54:11.52488+00 1 53ffec97-9197-4a15-ae76-703edbc534a9 48ebedb3efd1df085c69d7f2c71037666e481699c79be06a68dc4c7153b14791 2024-02-27 13:56:55.343094+00 20230203193108_streak_user_denorm \N \N 2024-02-27 13:56:55.362984+00 1 ca6f94da-270e-41a6-b9d7-4986f7a91794 0f92ce01bab66b44732281b7111f61e902288096eae35f578b9cdfb7fa420934 2024-02-18 19:45:28.944887+00 20230126184544_root_id_funcs \N \N 2024-02-18 19:44:20.262722+00 1 429b70bd-b7d9-44a1-ae8b-6019115a5737 9abf4ff2aa839564c0450c2d8054ebf9dcec3e76b2c515ab27479df4e23bdc4d 2024-02-19 00:07:10.788618+00 20230126213820_bounty_paid_to \N \N 2024-02-19 00:07:10.809878+00 1 642f2ef3-a8d8-4913-8b8b-16044dfaf142 7dddb4cde148006f572780b8123145d61b8c6a38a8b19f809ca9d1a48aa58dca 2024-05-24 17:33:58.945777+00 20230426200416_more_subs \N \N 2024-05-24 17:33:58.95977+00 1 1a7c5e67-0692-4637-bcfd-d40a8e74c079 f993da3011753cafaded8a36b5faaf6bd2154ef06bf955761fa88bd9195a026a 2024-02-19 00:07:10.800886+00 20230126214014_bounty_paid_denorm \N \N 2024-02-19 00:07:10.819851+00 1 45c30160-366b-46f2-9bb8-1f82ca1b9dd6 199086064f121f9c5a6d14d31ba29b2ac5c82afcabe1c3c87dc96864ec32c9a3 2024-02-27 13:56:55.359886+00 20230203193324_streak_update \N \N 2024-02-27 13:56:55.374931+00 1 864d95ac-fda6-4cac-98fa-a395682d7a4f 2b0871ee1817055e5390455c9667142ac958172076447f0e21e132be2f1daa06 2024-03-09 17:54:10.675807+00 20230215152142_desc_on_invoice \N \N 2024-03-09 17:54:10.697103+00 1 103c6be5-d6f8-49aa-ace3-72b2881a5fd4 dfe2682b5a3dd03ee5627734224136fe4985cd5a4fd3f2f0b662d49d0a579763 2024-02-25 00:22:46.776097+00 20230131221524_note_cowboy_hat \N \N 2024-02-25 00:22:46.795748+00 1 0b7f8088-5332-484f-954c-f70bde864e7c c8f13809d6ab34dfd510b46d07b327a8c814f59726dfcf1f23a00cbaf028dbe3 2024-03-09 17:54:10.688495+00 20230215153049_desc_invoice_function \N \N 2024-03-09 17:54:10.707213+00 1 1895d5c2-a95a-43e5-a314-c0d0db3b7784 c37fec8b76682fbdbed80fa8d2c6a0324cb9ae8c1b9881f69a4fbbff5b7c0f30 2024-05-24 17:34:13.785502+00 20230501205951_hide_cowboy \N \N 2024-05-24 17:34:13.797364+00 1 e5d535f8-e07a-4dd7-9f0c-daa31999bf19 7dd67fa943fc9c45a4f2abda29805b02a8f3e9d72b081c0838028b7fc5f27be2 2024-03-10 23:54:12.017768+00 20230212001152_bookmarks \N \N 2024-03-10 23:54:12.027588+00 1 d69248a0-1338-4ddb-a62b-6037c99837eb 493367ab3b24328c4f1cb5f8840c8b6c8516cfdea55424cf79211507a43f7573 2024-05-24 17:33:58.955846+00 20230426222617_poll_subs \N \N 2024-05-24 17:33:58.977759+00 1 b014abd7-ba09-4ca9-bf9f-801d94dc4f04 d978d1d0b66448e255e274a5d6a2f973b14f7d2906f9dec680be9cbeedb5c5a1 2024-03-18 17:16:47.932904+00 20230224163301_item_act_compound_index \N \N 2024-03-18 17:16:43.412673+00 1 de8cdbcf-7337-4097-aa6d-f789c63e2e86 551abfc9015e66b5551ae7596c5fbe975590a0ac24b98f07e44bde4c89cb30a5 2024-05-24 17:34:13.805229+00 20230501212659_hide_cowboy_rename \N \N 2024-05-24 17:34:13.819509+00 1 c5d60b7e-3be4-4969-9f47-f4d1aea99d1a d2d6cb1208d8e673d8f1ef23200a940bfc5d0627a6ab3c6138d8019529748490 2024-05-24 17:34:13.763519+00 20230428230115_subscriptions \N \N 2024-05-24 17:33:58.987407+00 1 ef227c06-dc15-4f6e-98d3-d1aa9373bbd1 b6252a91a47de338a70ca20ec2ae66f381b1ae14020d8414cae2d088838fadbc 2024-05-29 02:06:06.629931+00 20230506214933_comments_func \N \N 2024-05-29 02:06:06.648521+00 1 d94ae6f2-b129-4166-b010-2811c51584d5 5024d1350ae3bdb46b78ddec25545bc92850cc328956d0bc6ee8e8c02b338e20 2024-06-10 23:15:45.434844+00 20230518191821_views \N \N 2024-06-10 23:15:28.553251+00 1 f480de38-4867-4ff7-a4f2-5309bb3bc38a 9f8dd7e1bd892399ddeaa5286b9621a16f46e1233ae9497cd97cfd948c1cc321 2024-05-29 02:06:06.639421+00 20230506224746_comments_with_user \N \N 2024-05-29 02:06:06.661649+00 1 214477f0-f10a-474c-9192-bb8f05cce720 ad4ccda98e2be7c58d7f365f810177d9d3f9aa5b026a09209eb452e8e0999334 2024-05-29 02:06:06.650898+00 20230506232839_higher_tip_default \N \N 2024-05-29 02:06:06.671145+00 1 a63fd550-851c-4473-aafb-57b9d8801768 bb4c2ad1ca43e217ca895119d4e1499a89e72ea0d9b96583f61673a7f7216150 2024-05-29 02:06:33.61175+00 20230506233136_denorm_upvotes \N \N 2024-05-29 02:06:06.68247+00 1 0baf1994-2b2a-488e-bca3-cfebcdf0cf9a 65b2e13b16f16fde3cd252abb9b4ac778e1f6e4ab33c0d563fe73b1bda0df524 2024-07-04 22:22:30.685836+00 20230612113342_tech_sub \N \N 2024-07-04 22:22:30.70576+00 1 c6d22175-bf6e-4592-b7c9-d65d417a914c acbb8381f225465e4a48425be05212bf6ab8a5a6b575e8aa6fdd8f912b66a217 2024-07-26 22:58:45.322826+00 20230619022841_push_subscriptions \N \N 2024-07-26 22:58:45.326028+00 1 363c2447-4c70-4777-9c2f-5746296ba9f4 3ff8132e52e92dacd366b3328ebde037adb013289ab0a4472e9c98f11422c223 2024-05-29 02:06:33.625207+00 20230507005859_comments_func_meta \N \N 2024-05-29 02:06:33.64658+00 1 fd086c14-250f-4267-a7e3-7ef0f5edca99 b06040c0f25b3b66c12e860404a5a21cbb343ea38a8f61eeeca1581c77f9fa7f 2024-06-10 23:15:52.765706+00 20230519022855_user_stats_views \N \N 2024-06-10 23:15:45.467197+00 1 18ec955f-257c-41cd-8175-c04d4a8f37bc d1f409d10814a140d0eb26bbb7b1b2c3efbbc21935afa412dffdfc80c3a576dd 2024-05-29 02:49:28.494792+00 20230507020956_comments_func_tz \N \N 2024-05-29 02:49:28.512611+00 1 8dfa5efe-1f3a-4503-ac49-a333b2c6077d 3cbf38732e8391cac0ed13cae86cee08da75f742c2097db95365c6b2649e3793 2024-05-30 23:06:21.235474+00 20230507205613_update_job_priority \N \N 2024-05-30 23:06:21.250249+00 1 e6cd35f8-adb1-43b9-a610-bcaebcb08c68 a1502e80edf634ca69cd22105d542413cfcece725de6bb1bee86a22680391345 2024-05-30 23:06:21.247623+00 20230508202036_item_comments_users \N \N 2024-05-30 23:06:21.267478+00 1 916dbdbe-7d48-4d25-b51b-d33ec514acd4 16881e41d5f389cb14fffe9c20528e9d78f707e61939e875567df7d9f4347f00 2024-06-10 23:16:10.451038+00 20230519194614_more_indices \N \N 2024-06-10 23:15:52.79789+00 1 06839064-e29a-4e5a-8a73-75289ab7efbc bf6970ece3516c146a7dfb99d10eaa68edb47488a8a67f825279a9e267a10a28 2024-05-31 20:23:19.076974+00 20230508223532_earn_add \N \N 2024-05-31 20:23:19.094556+00 1 556943c1-8f69-4ff7-a6ac-28d677efbd02 0f60b8534f68d7d784cb918cfdc5a33106c60f4e92612901bb697a06b481f9ec 2024-05-31 20:23:19.090853+00 20230508232041_comment_weight \N \N 2024-05-31 20:23:19.109259+00 1 a349cc0e-0a32-43d4-9843-df5cf93c2d12 b40bd5f055e18e51fcde6d333d418188e40505843f0d7fa5795f1862f1c365cc 2024-05-31 20:23:57.677802+00 20230509171046_comment_weight_funcs \N \N 2024-05-31 20:23:19.123279+00 1 ba147587-fb8d-451e-bc0a-4032e7fd7164 7b35b8f033b317032dc5a4fe148948703c4a8182a75f822bf6daf8bec12f14c6 \N 20230519215240_another_idx \N 2025-03-29 20:59:41.857266+00 2024-06-10 23:16:10.483672+00 0 d023ed1f-11b7-46ee-ac18-30b0b658ace3 2a9feabdff85b71761014a70f561d80f5a1af1b4b36807a4861937681dd74623 2024-05-31 20:24:13.722337+00 20230509190222_earn_add_retroactive \N \N 2024-05-31 20:23:57.7107+00 1 8d19a7be-eaba-4ad6-8c74-2931edbef26a 7b35b8f033b317032dc5a4fe148948703c4a8182a75f822bf6daf8bec12f14c6 2024-06-13 02:51:01.374307+00 20230519215240_another_idx \N \N 2024-06-13 02:51:01.403143+00 0 06d832f5-0934-49a8-a24e-e06936ceab2d b54b5100a0e45f881322a6849f045396b615232ea3c9f731087a1039fd95cf08 2024-06-15 08:09:23.842411+00 20230524062059_rank_again \N \N 2024-06-15 08:09:23.636451+00 1 d646f3c8-918b-44a4-8907-c7ee6c0932e1 7276430c712679c5b935edb71f5d88050c77270bc113bb83b0ae60c9a5420558 2024-06-13 02:51:38.818882+00 20230521171442_fix_user_view_post \N \N 2024-06-13 02:51:32.645254+00 1 5f4b7cdb-63c4-46f2-b8e6-6e4de40123a2 7471f2b1d0a3356750ad53bee1cbb41d32af94dc201583a22cc5f46829ed58f2 2024-06-13 02:56:59.757315+00 20230522022207_users_stats_day_idx \N \N 2024-06-13 02:56:59.389081+00 1 8543a2db-ad97-44a2-92a6-9a3286bb56e0 531d7d7f0e64bace616e7bf34045857e79f883bd8662d38a1651b6c85375c58b 2024-07-04 22:22:31.615172+00 20230612195325_hn_move_to_tech \N \N 2024-07-04 22:22:30.717847+00 1 06c4b739-bc30-489a-8538-1a412a2ba89a 9f1e3a7275a9035f8f74427385e79f41316358ed36209652330ae6f64d30ad10 2024-06-14 15:34:59.643188+00 20230522122328_hot_ranking_view \N \N 2024-06-14 15:34:57.96635+00 1 7b572470-a481-4210-94f2-59fad364d2b5 f3971e1cc37526fe263bbe56867212ac63e769a80f7f27d62102d989a84bb68d 2024-06-23 20:32:58.639659+00 20230531043651_thread_subscription \N \N 2024-06-23 20:32:58.646303+00 1 f096be17-abba-4ffa-a0f6-170547fbef8f 98cbd3e84de20f765611a477a785f185360df296d4ca072e7b6bbb1b6590dfe6 2024-06-14 15:34:59.658562+00 20230522153900_schedule_jobs \N \N 2024-06-14 15:34:59.675823+00 1 35d4a765-2525-4570-af07-4a6f01e78c06 8149b81c09fcf8f9b3f8026c3fe88dcf4197a9dede224792da9f23fd5cc0da87 2024-06-23 20:32:58.652656+00 20230601003219_comments_with_me_subscription \N \N 2024-06-23 20:32:58.671973+00 1 28e7d63d-166c-4378-802a-4e1be37b22fd a576297ca8d475c31020b8b3834147008930a3d1af6747b1835c418bfc849027 2024-08-22 21:53:22.934925+00 20230726173732_remove_dupe_funcs \N \N 2024-08-22 21:53:22.948651+00 1 e5c4be0c-cb48-4860-9cb2-794741750608 a4449715914405649e3b0945c22cc7bbc5081f674988807f49d43f7feaced1d1 2024-07-12 18:35:06.785791+00 20230619193610_daily_squatter \N \N 2024-07-12 18:35:06.800898+00 1 d91c35b0-dee8-459a-ac7f-346de7e12e75 a3a425951ac627151b54673babfe245901179a9a582b422760871c09e82ec2f7 2024-07-12 18:35:06.808319+00 20230620011238_snl \N \N 2024-07-12 18:35:06.819347+00 1 37778eb5-8bbb-4a6f-94d2-db7d670e0d5e 8744bb5cb4cbeac13233773251943f86362c5734603dd1e81197eb8aee073833 2024-08-29 20:48:59.851858+00 20230807195244_twitter_oauthv1 \N \N 2024-08-29 20:48:59.871411+00 1 28f002a2-eb0c-4332-87e1-4df18bed54cb 34afb8f199b857b714c705266da54837b24acf3bc98350c0bb1ca1a1d068c115 2024-07-12 18:35:07.890005+00 20230620152940_meta_sub \N \N 2024-07-12 18:35:06.84086+00 1 dcb3b102-6c3b-4a74-9a3b-913dcd482757 2e373d790ed2bd2cf0c00469b32742c0b4ee244fa80e522dbfecd6adc87ae8b2 2024-08-22 21:53:23.057126+00 20230727184222_next_auth_4 \N \N 2024-08-22 21:53:22.966596+00 1 cc8ed058-bccb-4d46-aebd-785d4756afad d98c8348b39ef2d71b8b0ae8b5b11da74cd38c54af945441cfaf5ac09be9f6bb 2024-07-12 18:35:07.906963+00 20230620164842_freebies4ever \N \N 2024-07-12 18:35:07.923525+00 1 4b6186fd-3e72-4cce-8ad4-5c49ced80405 baf087e5c6989abb96b0db02e09cd650c0e7c059e20c2ad96674228e39dd0107 2024-08-22 21:53:23.068539+00 20230731135152_timezone_utc \N \N 2024-08-22 21:53:23.088421+00 1 e81fca07-cdd3-4edf-be92-b0713ab1fb0d f32c9c20b3f344dbe94c9fdbf9d945ce83e9918c309b57de80559cb4fcc60055 2024-09-08 00:02:18.571141+00 20230816193946_constants \N \N 2024-09-08 00:02:18.220409+00 1 476ef7f7-d0d2-4944-8029-8399e34b89e5 5fd5d8c428a5fc0047f6f960dc2876c897328d2d391d5981ee354213e514b087 2024-09-01 04:06:00.260308+00 20230809220717_rewards_indices \N \N 2024-09-01 04:05:55.960882+00 1 764f50ee-1cd8-44f8-8b20-116a7d9b9d7b bc3ad2dd58dfe978c411171f99510abb9a45c8931a2991ce6d94d31e29d0d940 2024-08-30 23:32:05.340837+00 20230727214058_nostr_auth_pubkey \N \N 2024-08-30 23:32:05.336474+00 1 d8d4970b-98f4-439c-81b0-0b2b5bf7a984 b6efcd90e66cf095de960d50b8dd468776a630a3a36a5814a480251a5f7902fa 2024-09-03 15:34:02.138659+00 20230719195700_anon_update \N \N 2024-09-03 15:34:02.15847+00 1 36e37091-981d-4a3d-a9ea-1b10c697078e 77967ba89bc2ebf4f376dd654e8e3ec2a25335b6f457399f40bfc9b4bdf4ec5c 2024-09-03 15:34:02.151283+00 20230719195700_disable_fee_escalation_for_anons \N \N 2024-09-03 15:34:02.169909+00 1 45d22978-46a6-41a2-8947-6d77f3ef6532 2d29e0b2f9e7bc34831f8878fbdcf7e953ccc9faccb66073ffe07f07c4d9ef23 2024-09-03 15:34:02.163486+00 20230810234326_anon_func_exemptions \N \N 2024-09-03 15:34:02.182588+00 1 0505985f-4a4c-4b20-a165-3a2876ef347e 173333f7afad7ad5af6c470a7a25eb42798071a5d7860c99ce8b200abd53fbb9 2024-10-04 22:40:55.115988+00 20230829205147_welcome_banner \N \N 2024-10-04 22:40:55.134426+00 1 e7c9d408-a1a0-4b6f-97c6-1e51a512568c 71aa6f3c6e86d0c5574c4d5faf6e2f0f720aeb8c0427272e9de8994a9904bca1 2024-09-08 00:02:18.577837+00 20230816232257_boost_power_typo \N \N 2024-09-08 00:02:18.601684+00 1 947f43d4-16d6-42e9-807f-6ccf3f331b8e ddf6c2b2a2e4fa4db482bbc7c3146fba193ec4748f892d699325e5b6cfc7527d 2024-09-03 15:34:02.172854+00 20230811172050_denorm_anon_tips \N \N 2024-09-03 15:34:02.194641+00 1 df14ed48-6183-4c68-a185-8b3c5c695f33 324100ba8e2a5b7b0e49aad84c0dacf5407f154e2dd886e7faa84ab9228e011d 2024-09-03 15:34:02.194509+00 20230811180730_anon_bio \N \N 2024-09-03 15:34:02.204013+00 1 7cd4006d-32c9-4a80-ac50-327276f26009 4170e972b76d3ab259c9ceda02c42ae41abe450bf93e4e283769757d2c140ca8 2024-09-06 19:32:05.727354+00 20230814220924_settings_click_to_load_img \N \N 2024-09-06 19:31:58.986219+00 1 89f4b70a-a491-4c25-8a4f-5fba1ee8f587 4e237868fc43edbcd31ec9648e3918d02c39c905f394e1e772779d2c4b5bc114 2024-09-18 20:29:37.697057+00 20230814233157_multiforward \N \N 2024-09-18 20:29:37.511506+00 1 0e30abc6-784c-4545-8911-6fd5e06be11f 59229e26f1b6e9cc3deb15cee9c3ef37923f921189b956ec0ff1a4cb64ba400e 2024-10-23 23:48:47.587402+00 20230920192620_item_imgproxy_urls \N \N 2024-10-23 23:48:46.504979+00 1 17e48fe0-69e6-43bc-bc93-8f8a49fc0812 0efb0ea0f661fc6a473da322c79dbd80c2f4570b0dae9e4e07c858a45b5f4d86 2024-09-18 20:29:37.706879+00 20230818184016_hide_bookmarks \N \N 2024-09-18 20:29:37.727797+00 1 6e52985b-2b7c-4088-bb19-2a5b4c247630 d2e6163c8e84a0f983d4031fc7f82c75da88b5715afc8d22b9403b1de8ac6169 2024-10-04 22:40:55.127459+00 20230831144120_thread_sub_forward_user \N \N 2024-10-04 22:40:55.147205+00 1 2e6764b0-db9a-4192-9231-5442ed42ebcf acf7480e0a8c6551f8efd95d84b79240b38c76f9ac9ecd6a5a02e024ba2622e0 2024-09-18 20:29:37.724204+00 20230824064857_new_create_item \N \N 2024-09-18 20:29:37.738252+00 1 0181a9ba-5a41-4a45-9267-7049c41d9865 95dd67a7d3eb8a645de2654849527627bce82a8aed1159640b8ebff053065053 2024-09-21 17:34:22.814315+00 20230826005627_user_subscription \N \N 2024-09-21 17:34:22.813355+00 1 f2d2c21f-eaa4-4efd-8f2c-1b3afaa8cf94 8c29d39b96dddb257356fb8dc2b8b462a7701ff04e5d3d8d3a0cb4ca2c47acfb 2024-09-22 18:30:51.419272+00 20230822133848_invoice_preimages \N \N 2024-09-22 18:30:51.295241+00 1 b07281ec-0662-4627-9b68-2cf58e7f6040 73997f068cb28b4a0880fff38277b7f9a87d9de68d017f26304ca7c910e45a42 2024-10-20 23:33:35.740927+00 20230927235403_comments_with_mutes \N \N 2024-10-20 23:33:35.762343+00 1 0f33e1f1-b28d-48c1-95a2-49bf732ac3ac 029a77ebd784e276e531d5a8ae37223526b37289cfd782536b9cc411ce8e6842 2024-09-22 18:30:51.425823+00 20230824124501_invoice_is_held \N \N 2024-09-22 18:30:51.449505+00 1 20a3a385-17dc-42bc-a9f3-b2f82f380d01 a7856523550901f99a0c2463d64aa4308e904df40d6e209941351e65472a442b 2024-10-04 22:40:55.135304+00 20230901185713_notify_fwd_zap \N \N 2024-10-04 22:40:55.158181+00 1 d05f3dc4-c584-4d30-bdbe-6ec56ec13070 b2457666af0853d7bd2dc4acde0fc0ce536aaba2163436ae76707d6b7d637c40 2024-10-04 22:40:55.143351+00 20230912122629_hide_wallet_balance \N \N 2024-10-04 22:40:55.166153+00 1 0da679c8-7391-4148-8fef-36e2ca67f0da 60ae26aef75d233efeae1af9c3ccff9afb6faf85172cf0abbfc1c828efaacff8 2024-11-14 00:01:41.906392+00 20230817221949_trust_arcs \N \N 2024-11-14 00:01:41.915483+00 1 b0fe2ac1-a05b-434a-a653-d1f8c54de0e3 3d057eb8b65442fee7583be8e203fc36d1bb70a62505d8cbc36b099342614e46 2024-10-06 02:41:45.680604+00 20230914005420_variable_down_zap \N \N 2024-10-06 02:41:45.698887+00 1 d3de5480-9f49-4d48-a452-5b1ed11e11dd 3b3d22b9f734747e09429e2fb0d6bf4bdeed157a6d3a660125d6f3f32520c0f6 2024-10-23 23:48:48.533847+00 20230929193801_daily_discuss_to_saloon \N \N 2024-10-23 23:48:47.618258+00 1 2d6c93a4-619c-417f-ae9f-1b342b570c30 f25118ced38d0dc3feb1bb32128cd7b8977e4ef7eb45658434fb492376b20503 2024-10-06 16:20:54.754781+00 20230914154000_quote_ident \N \N 2024-10-06 16:20:54.770489+00 1 ffd1a20d-93a3-4245-897f-539a1b46a06f 02302af5f0863b05b0ca00315ecc5074331c5dbb2d27547d1dc639b7d371b35e 2024-10-11 01:23:24.269125+00 20230904010326_subscribe_posts_comments \N \N 2024-10-11 01:23:24.285581+00 1 cf516228-3737-4ae4-b72d-545fe90e97ac 876e12511d0fbd64fbc3f95bc297056d1b12b76ce3bd83bcbe8c2ed819d621cf 2024-10-11 01:23:24.277868+00 20230906010648_verified_contributors \N \N 2024-10-11 01:23:24.299333+00 1 95d8f883-83ad-4640-8e28-1f66fedfd5b7 9c36d334c3c2d880cd34d93fb0f953f163b3b759ae17e0a4d960a3df9b20b0ba 2024-10-26 22:10:26.906528+00 20230827005527_add_nostr_crosspost \N \N 2024-10-26 22:10:26.925061+00 1 24a619f8-93d8-442c-b32f-10abcde7842f 5e7f47d7c099b0440f4ba4ad4edcc437a5b909dd3af150fbeb1646d3e445dd0a 2024-10-11 01:23:24.303279+00 20230908211455_diagnostics \N \N 2024-10-11 01:23:24.308083+00 1 6c99f6fa-9046-4e11-81f4-aa02baed265b 9d54ec97c6b08065ec5e6d7f36a8abb97853cb0623c8abdf363c247af05c6fb0 2024-10-18 22:19:54.087125+00 20230915234627_lnaddr_pay_comments \N \N 2024-10-18 22:19:54.09233+00 1 911255a2-8720-471e-b41f-d1508ad1e6f7 4d90a691599a5722030e7cc8b8a3be3cecbfddfb400443194db999af95f541ab 2024-10-20 23:33:35.731851+00 20230927194433_mute \N \N 2024-10-20 23:33:35.734455+00 1 da9b6311-401f-4846-87c6-242dd3e58378 7ea834d714d6fb09e2e5fafd112597e51a6138b3151c6f4072019cc6ba5d09bb 2024-10-26 22:10:26.919929+00 20230927235726_lud18_lnurlp_requests \N \N 2024-10-26 22:10:26.938024+00 1 fe1a5e82-fbf4-4c7d-b202-6baaa3e72c2f 00923ebf519ba218bf4955fa91eab6e9f1eb2512c9516f00b72438bef8111817 2024-11-14 00:01:41.915264+00 20231010110432_withdraw_max_fee_default \N \N 2024-11-14 00:01:41.937074+00 1 cf98a4fd-ce8e-43e2-a113-c85549da6d1f 9a99b727b981160d4bcb9338779e9f472f2b4a1a864eedd2a49381fe3bfcd541 2024-10-26 22:10:26.930158+00 20231003134505_rename_to_imgproxy_only \N \N 2024-10-26 22:10:26.951296+00 1 13ef2afe-afc7-4860-82eb-aace1b589242 ec24552c54aab51e0986d999b8da50a278b9f14dab2b89edd0537610d78b7cdd 2024-10-29 01:06:34.322989+00 20231005215415_fix_freebies \N \N 2024-10-29 01:06:24.990263+00 1 1651c361-527b-4293-871e-9203c269dac5 a4e342636b7b36188e8f413212f59f2b6c81c8f8cfbc2d2d1bd451091516c820 2024-11-22 02:05:44.529476+00 20231016223000_self_subscription \N \N 2024-11-22 02:05:43.827953+00 1 cbc84a3a-0a1a-4a35-acb5-019d34f56e68 9b0d95e883ead5dc94d8b0cf6b121ee5fc811e1fbd1e0886bddf912a8bbe84a2 2024-11-14 00:01:41.925546+00 20231011205945_arc_to_idx \N \N 2024-11-14 00:01:41.945605+00 1 93752d4d-c21d-4f21-b4fd-10800cdf6b1a 3de8141e24cc2d0f3c1b282e2a9fe0ad6ca20c742e5cb2bc947fcde80d93ab34 2024-11-14 00:01:42.647388+00 20231013002652_pwot_views \N \N 2024-11-14 00:01:41.955957+00 1 deca8b57-441a-42e8-99cc-d4e1f8692b63 73e2ad509fd744254d01d3efc140a613b3f46216e59d7dc033721554a389f203 2024-11-14 00:01:42.65611+00 20231022223943_found_notes \N \N 2024-11-14 00:01:42.678518+00 1 ac6c5c00-45bf-473c-bb45-f2866067d25a 9e43d927ba8441cee85f8e517d55d8a4e32c8c49d0e5e9aeecb97d0fa49cdbdb 2024-11-14 05:17:40.607776+00 20231023040755_child_comments_fix \N \N 2024-11-14 05:17:40.62781+00 1 3e1256de-5ca3-4efb-a0f8-138c4d86d0a7 56517411fbeaaf652e10daac419469215137d69a7903e3da759f67209f4bc9d8 2024-11-29 00:25:21.155435+00 20231025203103_delete_unused_images_schedule \N \N 2024-11-29 00:25:21.172069+00 1 0b3bc86c-015f-4243-ab5d-e8177d8d56ee ac3f8d73adeca515235616cc9057235c337bdbc04d9ecdfa6226f0f109d3f6f7 2024-11-29 00:25:21.140511+00 20231025000727_upload_paid \N \N 2024-11-29 00:25:21.150319+00 1 f78e7f37-f4bf-4c1c-827a-9fed7268623e 3af0da6d3485d20ca489c08678eb6f718fd860503a5ba282b980332364bd8f15 2024-11-29 00:25:21.170529+00 20231026154807_image_fees_info \N \N 2024-11-29 00:25:21.187954+00 1 7b55dcaa-f988-4252-a592-d6c7208b4ffa 2f5dc8d45d88d9bd1d6cd99556beb4734d1014d0663f450050b9e2630b10eb9e 2024-11-29 00:25:21.210845+00 20231105221559_item_uploads \N \N 2024-11-29 00:25:21.202894+00 1 be5beba2-10cc-435f-b6e6-692c62cfc2b7 eaede39f200d46b98f43640833681d43ba0c11328479439675b02e5c065e9c4f 2024-11-29 00:25:21.484638+00 20231106204318_upload_id_idx \N \N 2024-11-29 00:25:21.242859+00 1 d616c1db-0fda-4afb-b4e9-74e7bc419178 85a474a151dd6dc53d2c86098078a124dc20c8d2709b81af296238bf23f41286 2024-12-04 18:45:59.471593+00 20231026142112_auto_drop_bolt11s \N \N 2024-12-04 18:45:59.483855+00 1 02508553-31ba-4f82-8834-cef5b0ef28e7 b31371c1b928bd12e2cac2824b027c48cdffb73b322e2fbf82dc6065835c948c 2024-12-04 18:45:59.486965+00 20231110182629_create_item_base_cost \N \N 2024-12-04 18:45:59.50335+00 1 3b805353-4172-4486-b166-d78269507ed4 e46947aa31ddb9789fd265d086a1ff55086d3bc2854ac161f361d4329f0b10d6 2025-02-03 15:32:05.906417+00 20240104004135_invoice_confirmed_index \N \N 2025-02-03 15:32:05.820998+00 1 12ec5482-de0f-44c0-92eb-ab508c8e7a2d 4a267916b51a9ebc791fe2d49408ea3c165314e506cebae7aa969e9cca6e7799 2024-12-04 18:45:59.498523+00 20231111223156_no_op_item_spam \N \N 2024-12-04 18:45:59.518587+00 1 76f55cca-5ea4-4b73-865f-8c220a87abcc 8f2191564dfa8fdf249d6c39af2ef0cb37bff0219b381985d141143bbc7b66ba 2024-12-05 03:05:30.332972+00 20231113022909_fix_null_subnam \N \N 2024-12-05 03:05:30.349356+00 1 070fe02d-8745-438b-a979-33c4e111bd31 d9426f966e0de650fa23bca0034fe2f47c222e0630ca12609b9adcc10fe823a2 2024-12-27 19:37:09.406068+00 20231201014953_territory \N \N 2024-12-27 19:36:47.558031+00 1 911953c7-5494-4f90-a125-4e4e88515ca4 c0bcaa0b3ae8805788b89b1270a8a5ceee1847721566c78c8eefb867089284fa 2025-02-03 15:32:05.916821+00 20240105190205_replace_polling_with_lnd_subscriptions \N \N 2025-02-03 15:32:05.936761+00 1 accc441a-4a7e-455c-b4ba-29c6b593c75b e7e558e5451426d13547a5abba7e6e230d6acc66cfc6716b22825558b6d6e1aa 2024-12-31 01:07:08.405111+00 20231208191418_territory_renew \N \N 2024-12-31 01:07:08.426546+00 1 cd73a231-323a-4bc1-b46b-2d89ed7aa910 c03f26ffe578b1a73f103be58bb88ec3c811d1ea9d6f319c4e4e5985b4b3b2d4 2025-01-02 00:20:21.541085+00 20231210180256_allow_freebies \N \N 2025-01-02 00:20:21.555297+00 1 f0a6c84d-e38b-48ae-bbd8-fadf76252fb4 ba07c7512995b779ce69bffd56f7bb2a8c7f033dfb39fa309e8c3c8aef101dbb 2025-03-09 00:33:15.370357+00 20240212203105_add_sub_stats_views \N \N 2025-03-09 00:33:05.735085+00 1 d0dcbb6f-8d53-4e09-a230-605d71d5f72f a2f3366a074241502004245a5db72051bf300b31c3efa0b84419b4738d297b92 2025-01-02 00:20:21.552877+00 20231210222855_anon_create_item \N \N 2025-01-02 00:20:21.572199+00 1 7aa16b99-3a3d-40b2-8c7c-011cb65d01e6 f203cead0e9e247b8a11982d745502b98b7da98a618ddc7dc9c4eaaa2e573708 2025-02-03 15:32:05.927546+00 20240109235224_auto_withdraw \N \N 2025-02-03 15:32:05.947261+00 1 524d29e0-6e67-4e92-82e4-e6b5dfec968e d5d3046bd8b102821cca9f9a54918659c561fee9320d1132e761dee8808b1fe6 2025-01-06 20:40:21.088472+00 20231212235400_ofac \N \N 2025-01-06 20:40:20.992417+00 1 492f3a11-4fa8-4d10-aaab-0254981104f2 a6a2f8449c4c583066f80ea4d8adeeef3cd5633066810b1f08eed6ce29cfd538 2025-01-12 01:29:37.581366+00 20231015221558_add_nostr_event_id \N \N 2025-01-12 01:29:37.231124+00 1 57b6b654-47ea-4619-8c25-4bf61cdfd35d aa86ae840a44a71b0b41bafe349339af8a1ed268aed88396d58ec2397660b9e5 2025-03-07 20:01:13.096537+00 20240205161535_add_nsfw_to_sub \N \N 2025-03-07 20:01:13.114845+00 1 2e358b65-753b-4a10-b0ba-d4046557a6bd 4d1a1e5ee030d98e12a74d4cc52b1b84433c0d7ecd382bc96d0219459119b510 2025-01-12 01:29:37.590832+00 20231220004234_dont_like_sats \N \N 2025-01-12 01:29:37.61204+00 1 be106a4c-a495-482a-9271-b67a1567da94 9591d0854abc0240aa8402380b3cd67f0ff241013e8d5b5c3427ce9491f3815b 2025-02-03 15:32:05.933715+00 20240110195551_territory_posts_notifications \N \N 2025-02-03 15:32:05.957795+00 1 353da8ab-d9a2-42a4-8b06-4596025cad6e b400e2e7d8f34168667b55c538ebd713f66907accd1e890f45764fce5246f905 2025-01-18 17:15:10.940688+00 20231226230356_item_act_negative \N \N 2025-01-18 17:15:10.95747+00 1 021ab3ad-ecf5-45ba-89da-5fb9f03e42df 022ad047e88de0cd79dca98f6209b2c73d4ce7ad6e9054420492f7ac9d91a72a 2025-01-22 17:31:49.35798+00 20231229204305_moderate \N \N 2025-01-22 17:31:49.378149+00 1 a0b6b48e-ab55-483b-9eb3-1a9856f4fdb6 1503fa08a968370e6c0f6e8a923c3af707e497b2e6a28f618aae5fccdb5cd4f8 2025-01-22 17:31:49.392312+00 20231230015539_mute_sub \N \N 2025-01-22 17:31:49.388452+00 1 8425c204-5bb6-4108-80cf-b5ee33445105 99d3da700501aa5d28c64f8b5093bcabe2f67fdf0f1ea85ae8df13f9c4479493 2025-02-03 15:32:06.032048+00 20240111203534_territory_name_change \N \N 2025-02-03 15:32:05.963943+00 1 19aa8730-6926-4c70-90a3-cbe133cebec9 a98475952d9453f00c235300d3c1613f3d2482b26dbc3e7a8f5bdac19b2118cd 2025-01-25 23:05:57.426014+00 20240103184950_territory_status \N \N 2025-01-25 23:05:57.432486+00 1 811621e4-5a14-4091-bc4d-cd87a64c773d a0e809e37709d625203eb75cc8c2339514ac48c89ad17afc7e739a6611c1dbed 2025-03-07 20:01:44.232052+00 20240207173333_add_nsfw_mode_to_user \N \N 2025-03-07 20:01:13.127218+00 1 8c68fa55-bb63-4ddb-bd44-fdedd4a41c81 5ee818eeefd6859cb5ec4680b643e5fcbad4350386e20cc5715e78b78665de8e 2025-02-10 22:14:39.369095+00 20240118194607_growth_views \N \N 2025-02-10 22:12:41.419884+00 1 2b8da2cd-3b63-4359-b9d8-a496e67cd24f c2844183cfb186167f858352ea712f3ee00b19be1499df8d571577584d3f71f6 2025-02-11 03:14:00.640208+00 20240119215929_fix_spending_growth_view \N \N 2025-02-11 03:13:41.883096+00 1 b2f39dd4-c8ed-49c6-bc46-ada38768502d 5ca8b1ba6e4b6e265a0975b0a5df58b776828676af01517e5b9063189bb108a1 2025-03-10 19:49:33.557429+00 20240216003921_territory_billing_trigger \N \N 2025-03-10 19:49:33.509046+00 1 71b58baf-e33c-41fa-8346-bb5f4fc6934a e96d579a7e2d1870b4d19a1879b7de373ac20c6b07378c3f3f035fe28b627511 2025-02-21 17:40:26.452686+00 20240124000131_fix_user_stats_post \N \N 2025-02-21 17:39:27.006523+00 1 6adacd34-92a1-4f68-8096-117af619b51c 9499b0f7be89352d3eee00ab8d26b2d17aa0cc8586da5dcff945749516bf6146 2025-03-07 20:01:44.259885+00 20240209001227_update_image_fees \N \N 2025-03-07 20:01:44.262832+00 1 5d61de64-d31d-4a4a-bb58-01f59b11080a 50d76149e00cf60187560e94c0feefe8fa00a1777709ddfeda20cb1c0c4e6ea6 2025-02-21 17:40:27.532508+00 20240130165240_existing_pins_null_sub \N \N 2025-02-21 17:40:26.48416+00 1 12423eef-7440-4482-8458-276c7fb82d70 7d1c28971c2257c6cbd7779119a1e6d87fad204f2dace5e3f9c55d09865e9d9d 2025-03-09 00:33:15.377193+00 20240214010003_add_linked_social_ids \N \N 2025-03-09 00:33:15.400702+00 1 70f8557c-581c-41fa-930b-e1020abeaa18 fd2b69d42ea93ef1c96a33bfb424f4960f06cad53aba38d886966d9394f9a020 2025-03-07 20:01:44.695775+00 20240209013150_attach_wallets \N \N 2025-03-07 20:01:44.299333+00 1 27ee44c7-8787-4029-a3ae-cb7e3f32b94d 549334fd8be633d9bbab817545c65ccbf32e91a72cab521184f27b2d04ff50e4 2025-03-09 00:33:05.704761+00 20240209183940_hide_linked_profiles \N \N 2025-03-09 00:33:05.72159+00 1 31d50e9b-a9a3-43d6-82f5-de6058ba3065 aaf3c4743c84aa77ca8b69d0acf8fb6866d2e0d7a358ab71354dbabc16322d88 2025-03-09 18:05:41.532245+00 20240215144824_fix_sub_spent_calculation \N \N 2025-03-09 18:05:12.768803+00 1 2a334445-4a4f-4dd1-9618-a841fb2396e5 c9f3e8fc91277abdf16d5022a735ca04a2dea6947b4dc5f8fa774ed576a3fc22 2025-03-20 19:58:00.955443+00 20240219144139_add_poll_expires_at \N \N 2025-03-20 19:57:58.466116+00 1 50c57edf-e993-457e-b91e-9af704627c97 862c162fc50b6e0932fbc990ebe20446f3fc89ad5b42e073881f8efb380e3dd8 2025-03-20 19:58:00.969643+00 20240219195648_update_update_item_for_poll_expired_at_updates \N \N 2025-03-20 19:58:00.987481+00 1 99c44227-dcea-4c4b-a7ec-c802a42b8f0e d1325f12c461b18a3585fd9710e4c2ae2c059f7b0cbe1f50580666466a22cbc0 2025-03-20 19:58:00.983106+00 20240219225338_zap_undos \N \N 2025-03-20 19:58:01.001707+00 1 0bed4c03-8fdd-4376-8280-cd42c22c5ed1 0f2adf7843273715b69ec6cb6da0bf47d873c032f401b2cdc647c38148d216d0 2025-03-20 19:58:01.015516+00 20240222003614_territory_notifications \N \N 2025-03-20 19:58:01.014635+00 1 f41e3589-cdec-4fa3-8596-8797cc530185 f8377be1053453eaa07b703d3c86ff4c52dddb0859171af6ce18e93f5531b461 2025-03-20 19:58:01.044024+00 20240222032317_drop_territory_notification_settings \N \N 2025-03-20 19:58:01.047234+00 1 e70767e0-5c87-41a1-bca5-b783c23d3a62 cc92c5a7a00018e1403ba86f511b1424dd52845a1353ba0f9f83a8a1a3d5d074 2025-03-20 19:58:01.059524+00 20240224215425_fix_duplicate_image_conflict \N \N 2025-03-20 19:58:01.075741+00 1 6dd90d9b-5ce9-4448-8bf5-30499b79a402 acbd39b25e2575bbd94e62a3d9e1f2aa8b7a9c46e891b479540b1a28e7727840 2025-03-20 19:58:01.070384+00 20240224220605_remove_unused_create_item_function \N \N 2025-03-20 19:58:01.091155+00 1 d0545667-d957-4814-a005-ec2d46c485aa e470dbd15aa824ac9a5cd6eb83f068fc357cfea2b952e243090c6d910fae966c 2025-03-24 17:03:52.269732+00 20240228011144_user_values_view \N \N 2025-03-24 17:03:18.591071+00 1 cac98ed4-ea31-41f6-b256-fb860b258d5a 991f64b00c7f371b893fabb78ff57ba8c0aa44d5f0285311dc20ea917d69af45 2025-03-24 17:03:52.307864+00 20240228031956_drop_note_territory_posts_column \N \N 2025-03-24 17:03:52.305887+00 1 851ca0ab-3335-41cb-b829-0931d52151c7 ee3426775f5a2f959f09cd8809d9950c4526f84babd8b481492683019cc9b24b 2025-03-24 17:03:52.329722+00 20240229191545_territory_revenue_schedule \N \N 2025-03-24 17:03:52.339381+00 1 d2ae159b-4bee-4396-aacf-77c8caaeaab6 a7ccfe3b7f558e8c6a76dc39d11f22a74c159c0fabbd1ec3ff93eff79439074f 2025-03-24 17:04:46.680757+00 20240229194605_reward_views \N \N 2025-03-24 17:03:52.370642+00 1 bf10b79a-e9ae-4931-9a74-c644fa3bca6f cb337aa83bb84d41fa8c2dd47f2cc1c6413eed4de3a89bd5ff63b40d740fd29a 2025-03-28 03:34:35.266159+00 20240304224326_show_madness_banner \N \N 2025-03-28 03:34:34.081179+00 1 1c839e17-72bc-4bd9-92aa-08efa4485ea2 1644dedda14cec3fa5905aaf779efa89b9392272f1c52c394506557122fac9c8 2025-03-29 20:59:41.857266+00 20240305143404_territory_transfer \N \N 2025-03-29 20:59:41.857266+00 1 63e90e09-8680-4a77-8603-b0273a9b2155 4b572c3a0ace3a0febdc811a6ec1cecb04f4187750e2c3452847c7b532cc86ff 2025-03-29 21:00:06.307567+00 20240323222903_replies \N \N 2025-03-29 21:00:05.679673+00 1 033530f5-ce76-430e-8a57-ee2363e88b7f 97aab50d1bae602df85511f363a4053db1e2e784d3feb56d14901fa94f218091 2025-03-29 21:00:05.671182+00 20240312111708_api_keys \N \N 2025-03-29 21:00:05.665132+00 1 33066a6a-0140-4c8e-8a91-6bfe3e3df16b f15708c398d0939aade5ac21aeb76ab391b54d92c030b6fb1d728f9ba5ca7645 2025-03-29 21:00:05.67463+00 20240317144736_referral_link_privacy_setting \N \N 2025-03-29 21:00:05.672027+00 1 9021c966-183d-4917-9f2e-9605da603bcb 6e2adc7e4fc26996b1de6473ad782e60a69d9237da93082c00e40f5a0a8d79c7 2025-03-29 21:00:06.654332+00 20240326181608_api_key_sha256 \N \N 2025-03-29 21:00:06.647376+00 1 2c588926-f589-4e18-80cd-1504396a1663 ce664317aaf1c9e0528a4417e60a2a087c122f503c97bbf00788fa6ee8711ac8 2025-03-29 21:00:05.678896+00 20240319153857_create_invoice_return_success \N \N 2025-03-29 21:00:05.675399+00 1 6f62c2c0-4970-40e3-87c8-70ecb2034cf8 f52e8e46881b21da0c137db8447e6ba05394fb05583ea8f27718330325dd75cc 2025-03-29 21:00:06.646027+00 20240325114003_withdrawal_notifications \N \N 2025-03-29 21:00:06.639495+00 1 ab1a05d7-4af8-47eb-8d6a-aba486beb1eb 81cb49ca4d61782901d8edc4124d148b53251783076acf46ed395dbf09dd3645 2025-03-29 21:00:06.586818+00 20240324164838_last_zap_at \N \N 2025-03-29 21:00:06.309335+00 1 5b24a57c-fb09-474b-933a-31431c8107df 9c4e4a62938404653203e6f6a4caa4214a75f1edce66f54d2ef5c144d2dbb993 2025-03-29 21:00:06.637161+00 20240324192055_zap_undos_integer \N \N 2025-03-29 21:00:06.589156+00 1 a870a749-b916-418d-9385-927823dcdc99 d8b6707e16a4db6e0197f57e9166f150eebbdb0b67f939c1b66834a99dab1f46 2025-03-29 21:00:06.663295+00 20240403013755_wallet_logs \N \N 2025-03-29 21:00:06.655837+00 1 9df6349a-2430-433a-a226-b7adb135b4cf f0222ce0665a8fe7ab2fcee31cc8b6a4f26cdaddf61ebf12f3b82c9d5c419c5d 2025-03-29 21:00:06.670895+00 20240410060146_wallet_cln \N \N 2025-03-29 21:00:06.664092+00 1 8e44ec79-9afa-4aa6-a47e-7e83dbeb5243 370ce4f336f9c9397f24195cb50a5d47314bf3536351ba10585e543fd3e74e62 2025-03-29 21:00:06.679022+00 20240415113539_withdrawal_wallet_id \N \N 2025-03-29 21:00:06.672356+00 1 6a2c3872-2d6e-411f-8b17-05dc8f540c26 250cbe02db406bbdef786025855200dba78af234b46e976a7ffeb97e12fd70e9 2025-03-29 21:00:06.689249+00 20240415202735_index_item_on_bookmark_change \N \N 2025-03-29 21:00:06.680117+00 1 822181ae-db19-4650-9a7e-0900fad6c99a 840d5470ebecf8410f239e74339df7759526140c198ee42fa584b2e783a212a9 2025-03-29 21:00:06.694367+00 20240416181215_item_spam_exclude_bios \N \N 2025-03-29 21:00:06.690122+00 1 1a7c39b9-4258-4f8c-a09e-6ce5f5931169 365f905157aec69aac71ff7758ceaef5f6528e80fa4fda35e733a3290ca67280 2025-03-29 21:00:07.41152+00 20240829205238_autowithdraw_check_enabled \N \N 2025-03-29 21:00:07.409096+00 1 645a9bd4-25dd-47b2-86a6-d69d7a619e6d f3e345a9284cd49f149827be77922ef437eda9026f5236e5238241e3a34243b4 2025-03-29 21:00:06.702945+00 20240424132802_wallet_log_use_enum \N \N 2025-03-29 21:00:06.695132+00 1 eb2c9ff2-15d5-45a0-a319-a158b4216c46 55d632ce1d008be5b7d8b7da3d8a9be94ca91d7384a4e17206408149dc55681e 2025-03-29 21:00:07.034362+00 20240709215157_referral_rewards \N \N 2025-03-29 21:00:07.030743+00 1 862c978c-1643-452e-b03f-e8c15890fd63 bd6fd212f60ef2326e4b9e38ce2e2902e7384c46698cb35c5098c62b791381a7 2025-03-29 21:00:06.708968+00 20240426144110_email_hash \N \N 2025-03-29 21:00:06.70393+00 1 bd35cd08-c945-49a6-a3a6-889666af7377 4ddc279638191b8d89deb384390cedf6a704fe39632de296e64a16a8754f41a0 2025-03-29 21:00:06.712308+00 20240427224827_failed_withdrawal \N \N 2025-03-29 21:00:06.709733+00 1 e5a08a23-caa0-45cd-b6cb-2ac29c79086e d121d6748eac4f62de1d6d8f180310ee87a8beb1402a2440903639ec6bb1028d 2025-03-29 21:00:07.387368+00 20240817072013_nwc_recv \N \N 2025-03-29 21:00:07.377117+00 1 1dd6a4e3-252a-4801-a7fd-3c0fb44f2664 6769e4eb5afccd2953f4285bbe4f5def9520fa8132df6740b3a837398b519d9f 2025-03-29 21:00:06.717981+00 20240429224542_reverse_withdrawal_return_value \N \N 2025-03-29 21:00:06.713129+00 1 2c6217a1-0f55-49f3-8888-4c69cf65e653 56b964ebfd4e7eed434f8bb6a38f7f4699fee6998852b47965a16a962b249b31 2025-03-29 21:00:07.255475+00 20240710001134_user_stats_refine \N \N 2025-03-29 21:00:07.035235+00 1 d1fe8fb4-5bf3-4789-bd39-6a8c551a14f6 756be905dffe4ab6887fcfef4cd0e814539c002df1218e4842aab87e559e809d 2025-03-29 21:00:06.72255+00 20240501141206_daily_earn_job \N \N 2025-03-29 21:00:06.718944+00 1 50e831ea-7b98-4bce-9464-561ba221964c d482401bb2d72d86fa45ec1e7fb46a8df81c0a564111921a7c806fc4dd664c0a 2025-03-29 21:00:06.733263+00 20240509013027_reminders \N \N 2025-03-29 21:00:06.723389+00 1 e1725990-4267-4079-ac7e-0a6c0cfb8986 2798747b8bb152f209cf3d409f43ff3ae48719687dd8201c7005ca83aa38c738 2025-03-29 21:00:06.744634+00 20240527175411_anon_poll_vote \N \N 2025-03-29 21:00:06.734159+00 1 d372b993-66d9-43e6-893a-eb58c8e8cfd2 0e5670b2da30938060454a993d57c2902ca9a33ffe170df3b69b3c8ff08abba3 2025-03-29 21:00:07.262811+00 20240710143024_zap_random \N \N 2025-03-29 21:00:07.257746+00 1 258db4d5-24bd-4324-a4e1-bd63ca751544 75f638e41ce881a9ce637f44311ecf056e71ab7605fa1b8ecba54f53771fcb7b 2025-03-29 21:00:06.747982+00 20240529074650_item_bot_badge \N \N 2025-03-29 21:00:06.745441+00 1 96e5bd7a-67cf-42ea-a96d-3c7a98980d71 ee55abd743fa6886fe7b7331891b8174dc1b06309456959ff19ad593cfe2b4f4 2025-03-29 21:00:06.762137+00 20240529105359_item_mentions \N \N 2025-03-29 21:00:06.748869+00 1 9b3c932d-ff8f-42a3-9160-5efd0c07894e 65f02fa56efd4af8b0a58cd780ac5c60fda0c63bed22ba1cdfb71b0b500e4377 2025-03-29 21:00:07.003294+00 20240530174040_paid_actions \N \N 2025-03-29 21:00:06.763426+00 1 0a79739c-36aa-44a0-b29c-a4657ecebd21 ab7e9edf81dffab19e78a6c0dcc12e6a9b3eb8069c432e5c486bba07f1344aef 2025-03-29 21:00:07.301982+00 20240711174753_action_state_idxs \N \N 2025-03-29 21:00:07.264453+00 1 37783f14-c604-4c3e-adfb-c2ecc5dcc651 3bd37e6d3586655234c7ffc4efeeb6568acd848f7b9af492d193b207fa77b72c 2025-03-29 21:00:07.007948+00 20240703144051_action_args_err \N \N 2025-03-29 21:00:07.004388+00 1 97db9d73-8e6a-4bf7-96f2-57375a6903ba e4e6daa79280bf6ea1232edfab4522a38e8795c2f66011783beeb1c3da9ed809 2025-03-29 21:00:07.011906+00 20240705062557_wallet_enabled \N \N 2025-03-29 21:00:07.008942+00 1 a5e8204e-044b-4b32-b209-fc89591c0e88 07791a3ba9352762f7009f37bbc92472b3a2a9a409bf5c5de63e69083496acec 2025-03-29 21:00:07.391388+00 20240819233308_disable_freebies \N \N 2025-03-29 21:00:07.388279+00 1 1a16442e-d780-4985-b7b2-7149ba2fae6c 6bbcc08b016cfe1753ea2c7b92bb771c4242fad9569154043d24f9660d3488ab 2025-03-29 21:00:07.029896+00 20240706000412_one_day_referrals \N \N 2025-03-29 21:00:07.012954+00 1 53da3a1e-dac5-4671-a5e0-f0fe34d180a4 3f594fb6480a309e91ba032fd74e6db60cb6952ddf27f05e2133facd38537c45 2025-03-29 21:00:07.306068+00 20240723151608_this_day \N \N 2025-03-29 21:00:07.303291+00 1 f08a30c9-b26f-4707-ae63-50479c627f01 e0eeea856dbf45c232fc2d3d4a74a758d0e6f1b926bcdf7d7da796bda016124b 2025-03-29 21:00:07.314921+00 20240729195320_lnbits_recv \N \N 2025-03-29 21:00:07.307057+00 1 b3656921-e887-450e-8bd8-1b87c59eb715 c66171c6236b90623cc946126164e1f8c67417a909ba6f7b5b0acd398fc28101 2025-03-29 21:00:07.454674+00 20240911231435_item_comments_fix_invoice_paid_at_utc \N \N 2025-03-29 21:00:07.450886+00 1 a5b41493-35cf-419e-be74-dc2598561ea1 6a95b9c46d9e662a756571d59ad00511806c0cee8a22f6c1b0116236dd6da5fe 2025-03-29 21:00:07.332879+00 20240730152310_invoice_forward \N \N 2025-03-29 21:00:07.315831+00 1 2da71bba-c665-43c9-a2e4-010ba49fbb66 58a2b324882c89eb404b59afc70a38e80340211f364af862e377d0a2425023c0 2025-03-29 21:00:07.401415+00 20240821014115_phoenixd \N \N 2025-03-29 21:00:07.392494+00 1 c1651f7b-a5a5-41fd-921d-12d09a0b4220 82267245b8941db0230e6b54e6b421b658d96185e95ab1e10e99f9341a7fd3d9 2025-03-29 21:00:07.372043+00 20240808234214_sats_filter \N \N 2025-03-29 21:00:07.333698+00 1 70ea70be-3223-4bff-bcab-bea543ff9997 ad1a2d9496c3cdb740a0175bcfeee0cb367e83cd02feb413dfb4dcc4c6ceb0c5 2025-03-29 21:00:07.376141+00 20240812234244_update_bio_marker \N \N 2025-03-29 21:00:07.372905+00 1 b9b98cf3-dffa-4c40-a907-4601ce2bf340 cd18081a29ea8233612d2a893faa52d3891e8230b9d9ff3e6cc482f1cecb2c0e 2025-03-29 21:00:07.416632+00 20240902125646_undelete_bios \N \N 2025-03-29 21:00:07.412263+00 1 efe50482-4639-4d2c-9eea-35e5cd8a9346 fc015060ee0756bcec50e88e96a37ace51f664c3da515069af3f740942d32dda 2025-03-29 21:00:07.404739+00 20240821072645_rename_lnbits_pk \N \N 2025-03-29 21:00:07.402267+00 1 298d6eab-9b3e-49cc-bdb6-951b14a9b7b1 dee542adaf0a4cfcc1b39dedef5b8c05415f92081bdc02878c6c8e75047883de 2025-03-29 21:00:07.408161+00 20240823045403_rename_nwc_pk \N \N 2025-03-29 21:00:07.405538+00 1 d75c9e10-2e5c-4f32-9ba6-4af86a3900c1 f6cb9ce5fe305c0103c312cb460b1634080242c232ec1546a043d09a2a2f2c09 2025-03-29 21:00:07.44323+00 20240910000406_auto_weekly_posts \N \N 2025-03-29 21:00:07.440045+00 1 5eb23f91-12e8-4418-a651-362ca205912e 744665fbdc1c55e1f37c92a177e3a17ee1cdf0ba3221b382f62fcf8a6246753e 2025-03-29 21:00:07.435443+00 20240903180612_url_index \N \N 2025-03-29 21:00:07.41735+00 1 d90681d3-a6e5-41f0-aad3-151074867f85 44f6694b34c0d851ed2b98bf4b329cedbb3ad9a9f8e13c153e688f4382920121 2025-03-29 21:00:07.439153+00 20240903235340_hide_images \N \N 2025-03-29 21:00:07.436277+00 1 7e437c4e-cf50-4163-b92e-9dafc4c8444e a1b8c268d7b2396251e07babe4fc0ee1ff9afabf3176258cdefc1ec9869a380e 2025-03-29 21:00:07.449728+00 20240911005506_territory_rewards_pct_30 \N \N 2025-03-29 21:00:07.444113+00 1 5874b532-571c-4887-a15b-1056d1048d6c 2d520b0c9f9719d174fc9cebe806965643c99765c4e7b5229739beb9639dbfe8 2025-03-29 21:00:07.543709+00 20240917012856_boost_redesign \N \N 2025-03-29 21:00:07.458736+00 1 427c364d-3171-42b6-ac54-b7cfed5c8202 ee56ccae5c17ced9b8f6baf6cb0f2ca1a5bfcfb1ff5473b83f1cd4e3433501f5 2025-03-29 21:00:07.457967+00 20240912235936_video_uploads \N \N 2025-03-29 21:00:07.455494+00 1 02a36d9a-def0-4b97-91d5-bfc1ea26367e 5fa86199216baa5471ec6b527eb8a180183801bbb3a5132aada0c262eebea372 2025-03-29 21:00:07.552727+00 20240919210643_expire_boost_again \N \N 2025-03-29 21:00:07.546309+00 1 ff40b047-e6f0-430d-8ff3-06e93d68a419 470f3af18b5e85fff7e02e7d5b24b0c522e2add44560707e0e7d249ce743120e 2025-03-29 21:00:07.572356+00 20240924180951_boost_index \N \N 2025-03-29 21:00:07.5536+00 1 f87a4001-6d1a-48f3-bcf3-cca023f4ab28 176725cb6aa61dab1d29ecae7a78059c3bea4e2556faad9832c7bc536d71f531 2025-03-29 21:00:07.578274+00 20241002145114_create_invoice_update \N \N 2025-03-29 21:00:07.573317+00 1 a7e1cbf3-a18c-4ddd-a3cf-50cc7b3fcf06 391b2a03e85db6cf496af1cb11793a06050e4d3256612c2ae37ae2181905a4df 2025-03-29 21:00:07.589135+00 20241009200148_wallet_streaks \N \N 2025-03-29 21:00:07.579132+00 1 f06d4ca5-69dd-40bc-ab0b-f8dc17212a11 1e615a7e76ea22d0ef17eec3cac53bf06913a4a2b6cb59aef8a4439e1a5ce997 2025-03-29 21:00:07.596972+00 20241016171557_blinkreceive \N \N 2025-03-29 21:00:07.589952+00 1 840dab17-efab-466a-b274-8a51b29ec4e1 f60a0632a74381fd87423037eb6f0e0f518a35b67cff47f7f5c9417e9ae9273a 2025-03-29 21:00:09.050139+00 20250107084543_automated_retries \N \N 2025-03-29 21:00:09.04403+00 1 62d54947-78cf-4d54-acfd-9a684e728ddc fc4a051b9495849f30bfd650e3ea835737063a13e2e0ef3d57f271ce8289b3c6 2025-03-29 21:00:07.600411+00 20241018160708_max_fee_total \N \N 2025-03-29 21:00:07.597717+00 1 6aa758cb-d4ba-4f0d-99f9-df12da8cbc25 aea608f2af0fe2beba57dcafcf3fba303735ed0920bc25be4246a70a39dfca33 2025-03-29 21:00:08.611156+00 20241219002217_improve_values_again \N \N 2025-03-29 21:00:08.364624+00 1 6aa767f3-fc3e-4c9f-bebf-932f1832cc84 f634ff55ebe3e95dc43ef4abbea1bb2dfe897b260a95e7da6ccdf5e45c945220 2025-03-29 21:00:07.615869+00 20241024175439_vault \N \N 2025-03-29 21:00:07.601128+00 1 2537f9cb-3c8e-4db4-8534-0dfe892dcb4c 22317e9d4c0f67d8722a644fc1cac3df8bf0414cd697e2d528c6c3a548a7d505 2025-03-29 21:00:07.668305+00 20241101151907_fix_territory_revenue \N \N 2025-03-29 21:00:07.616704+00 1 45cbe84d-6717-4d2b-96c7-378aee222dd6 60de080a6dffa8fbdec6d053e36d1f24094f8a184830f8588c1fdb173a6bf10a 2025-03-29 21:00:07.677683+00 20241105021205_log_context \N \N 2025-03-29 21:00:07.669811+00 1 2c7103a2-3a5e-47cb-ac5e-4e15ef59e920 cee839064bb14fdabc86ce65106644b6353e5d8fd04359db5c8a11a1579aab5b 2025-03-29 21:00:08.801195+00 20241220000308_fix_duplicate_comments \N \N 2025-03-29 21:00:08.619565+00 1 c59edb69-3fe8-45b9-b03a-f39ee682eda0 7cca35fd641d3ac0f20f400a952df5b69c2aaa4e5e95ea8ad978d3f43df86213 2025-03-29 21:00:07.683638+00 20241111095156_receive_paid_action \N \N 2025-03-29 21:00:07.678798+00 1 41115d01-c01f-40a7-915c-0cce5e3b52c1 df53ab020cda49f8c318c82a313e1e260b0310ebb7e2050a436dc3b024b7c3f9 2025-03-29 21:00:07.687581+00 20241119210957_optional_recv \N \N 2025-03-29 21:00:07.68463+00 1 f6fc24f1-94bc-44b5-b695-974e14b61fa7 dd91f45b472c7c42ab22cd54ade5f05efdc390538f0f51817807803ea4c84d65 2025-03-29 21:00:10.008754+00 20250308234113_user_sub_trust \N \N 2025-03-29 21:00:09.737974+00 1 65d957e7-1410-4e7e-87ed-6c1be43f530f 91e66945a93b07f6860bc82ab12b5e7e0cf226cf912026949ecf1ee8223f8b49 2025-03-29 21:00:07.6926+00 20241122041724_invoice_cancelled_at \N \N 2025-03-29 21:00:07.688784+00 1 a7664ac3-b57c-48f3-9650-ea7e91d103de 9d7c5db59883b698f9327817752d4de1ffc7ad3b0c8ce8bce78c7e38e971a172 2025-03-29 21:00:09.011795+00 20241223203751_renerf \N \N 2025-03-29 21:00:08.801951+00 1 07fecf4d-9def-48fd-afe3-67912a5a0d55 1958fcc82f89cf5def0dde16b89816280b27e424b1199c56982ee1576a128db8 2025-03-29 21:00:07.696018+00 20241125195641_custom_invites \N \N 2025-03-29 21:00:07.693449+00 1 de0655af-d31c-4555-af65-7ddff27c8231 e0310d232530d3da32d8b1adf0727b2b90a002905f5d18325f792f3dbc035b23 2025-03-29 21:00:07.711104+00 20241125205610_send_action \N \N 2025-03-29 21:00:07.696893+00 1 fb5f59a7-15f3-43d4-9467-f44b135f194f fe55b7b46e95d61825fb8e9772ee41521316126e674c7b5a9037f3253cb5b411 2025-03-29 21:00:09.053379+00 20250113233026_weekly_posts_update \N \N 2025-03-29 21:00:09.050875+00 1 ef518bc0-3090-4060-8527-69b3da0c7512 30028bba10fd5d47c806c0b35774436916ab1a22c0501b40f9f9c671741db7d5 2025-03-29 21:00:07.762071+00 20241203195142_fee_credits \N \N 2025-03-29 21:00:07.711933+00 1 ec17bfd3-3ec3-4ab6-82c9-198d0d75940e 8143ccb1ce0ed8edea208b4184a88945e9470495e607c808c82b2ed643eb0baa 2025-03-29 21:00:09.017648+00 20241223204948_territory_refund \N \N 2025-03-29 21:00:09.013822+00 1 75be42c6-8212-4dcb-b224-9052d574661c 1ae47b09622da86cee0e09f0b11bf67b9627dd9a8f1ded37dbcc856ff9d94f1f 2025-03-29 21:00:07.769516+00 20241203235457_invite_denormalized_count \N \N 2025-03-29 21:00:07.763007+00 1 149385fb-fd3f-4658-a9bb-06b1afad4f37 7f63abe519ba1d73d9d834ab0729248bc09587d75316bcdc1f4342daf46270fa 2025-03-29 21:00:07.774319+00 20241206155927_invoice_predecessors \N \N 2025-03-29 21:00:07.77023+00 1 b79b276b-3302-438e-aa4f-5ca079903987 3a11edadfc818a7a148906479dba492be1a2048f6c4b9c9ce45010d1772753b8 2025-03-29 21:00:08.355537+00 20241217163642_user_values_improve \N \N 2025-03-29 21:00:07.775371+00 1 181e089c-e773-4b8a-bc24-97bc0941972a 689c0e3736b5756b27624f9369a503a678d9d863087e6c34c2cb6e2e12f0bf72 2025-03-29 21:00:09.023425+00 20241227132729_comment_fee_control \N \N 2025-03-29 21:00:09.019143+00 1 d4fbbda5-3b65-45d7-8548-15f7530dc694 691a770b84b4da83fd6cc3e7a0af9c0545b98d426a8b361d9895375fc9c705f7 2025-03-29 21:00:09.726586+00 20250122114228_recent_sort_by_invoice_paid_at \N \N 2025-03-29 21:00:09.683625+00 1 ff0796f2-5bc3-4c68-9e95-88a8ada249b2 6c57e2e384fefdfa2d68c17fc49747c5e8d75d1628b31460cdd07e7747c5d841 2025-03-29 21:00:09.030527+00 20241231223214_invoice_user_cancel \N \N 2025-03-29 21:00:09.024688+00 1 26d751a2-cb14-45e3-94a6-21da4c6c840f 6b90619f52cd00fa7dd0c83e875b8b2f7439f621849b86b8c5d4a6b2a48c5797 2025-03-29 21:00:09.056394+00 20250113235235_daily_rewards_refill_job \N \N 2025-03-29 21:00:09.054091+00 1 5e3996c1-9a67-4687-8faa-41e155976ad8 d70e2fa05e89e79e2f24b3ac7f85ac5def43353ea842a8dfa3a418d0ab406b9d 2025-03-29 21:00:09.039206+00 20250102224852_hat_streak_credits \N \N 2025-03-29 21:00:09.031647+00 1 1dcd88e8-1978-4151-873c-905e5f203f38 0ea2cd1c5bf13393e56067e5209fa73144d3ed499ce8d170da5d06394a9efb43 2025-03-29 21:00:09.043196+00 20250103150109_fix_invite_cuid_insecure \N \N 2025-03-29 21:00:09.040518+00 1 73536bb6-3784-4d29-93b4-7d979f87f49f 259c3534323bb82926afd191843415e68870e48fce998195d7a5b0c004609654 2025-03-29 21:00:09.05965+00 20250116091054_auth_token_attempts \N \N 2025-03-29 21:00:09.057049+00 1 fd77aaa5-617e-42ed-9d89-6970f57bfe60 a46a28abdab6155a8f1c15a501360a75542010d85c4e7a8914a40e48b5d7ad5c 2025-03-29 21:00:09.731907+00 20250131010955_fix_anon_comments_depth \N \N 2025-03-29 21:00:09.728058+00 1 964d8f18-ca6f-47b7-8664-895aae9c863f 57c57484b133a8030873596d2eed7f46fb2a27575ccb98a603fa9e2924635f84 2025-03-29 21:00:09.667049+00 20250118010433_comment_pages \N \N 2025-03-29 21:00:09.060441+00 1 8e7e53a1-be5a-4a3b-8977-5183053cac81 0b47c33eb051906c87d5d1b436b03e57d6beb350c570726143f63734bda64ab7 2025-03-29 21:00:09.68237+00 20250118192921_normalized_wallet_logs \N \N 2025-03-29 21:00:09.668957+00 1 0204b017-0a7f-4284-be17-7291181bc969 eb8d575449886c9b224080743e239a4739140423aa452ec5a578772d93a9c28d 2025-03-29 21:00:10.040327+00 20250320170350_comments_limited_hot_score_fix \N \N 2025-03-29 21:00:10.036954+00 1 aac0659e-62f4-4594-89d1-09107c7a60cf f78d8422f7667314f0eefb18d634bce646763fc910708eb1794203e5ef284d90 2025-03-29 21:00:09.736835+00 20250207171157_record_referee_landing \N \N 2025-03-29 21:00:09.733252+00 1 366a5fb0-7fb0-46f4-9ec0-691077f2911e a00e9715e078cc95a7873b6592b8e391451cc7deab20eba07101f79f2328af1f 2025-03-29 21:00:10.035746+00 20250315202641_hot_score_view_idx_fix \N \N 2025-03-29 21:00:10.023659+00 1 929eb93d-88ef-4169-add0-9aa93aa574a5 43212c49097c58898df801c603f5e2f00201645bb1e7ff46f00c80aa7140c311 2025-03-29 21:00:10.016752+00 20250311210455_comments_ranking_changes \N \N 2025-03-29 21:00:10.011094+00 1 2c8b6f13-956e-4a3e-8316-49c533b419ec acfc29a5ca1749bdb4476422f90939835a85715234147a414887dbdf426445f3 2025-03-29 21:00:10.022326+00 20250312223725_check_reply_cost_positive \N \N 2025-03-29 21:00:10.01801+00 1 0a7eaef4-5598-4bbf-bc73-cd215d458eaa cb71ed813a1b97c2c2585eda9a50f0e25cd096176cc0e6a556ad8178fc597c14 2025-03-29 21:00:10.198071+00 20250321225044_dynamic_hot_score_view \N \N 2025-03-29 21:00:10.041155+00 1 be39cb93-43e7-4752-a536-2e783820f8ac 67891f553f71321841667a9d4a537fd8165123d03ea373f28a238ab91dfb7910 2025-03-29 21:00:10.217012+00 20250325224718_auto_social_poster \N \N 2025-03-29 21:00:10.200796+00 1 \. -- -- Data for Name: accounts; Type: TABLE DATA; Schema: public; Owner: - -- COPY public.accounts (id, created_at, updated_at, user_id, provider_type, provider_id, provider_account_id, refresh_token, access_token, access_token_expires, id_token, scope, session_state, token_type, oauth_token, oauth_token_secret) FROM stdin; \. -- -- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: - -- COPY public.sessions (id, created_at, updated_at, user_id, expires, session_token) FROM stdin; \. -- -- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: - -- COPY public.users (id, created_at, updated_at, name, email, email_verified, image, msats, "freeComments", "freePosts", "checkedNotesAt", pubkey, "tipDefault", "bioId", "inviteId", "tipPopover", "upvotePopover", trust, "lastSeenAt", "stackedMsats", "noteAllDescendants", "noteDeposits", "noteEarning", "noteInvites", "noteItemSats", "noteMentions", "lastCheckedJobs", "noteJobIndicator", "photoId", "upvoteTrust", "hideInvoiceDesc", "wildWestMode", "greeterMode", "fiatCurrency", "hideFromTopUsers", "turboTipping", "referrerId", "nostrPubkey", "slashtagId", "noteCowboyHat", streak, subs, "hideCowboyHat", "nostrAuthPubkey", "imgproxyOnly", "hideBookmarks", "hideWelcomeBanner", "noteForwardedSats", "hideWalletBalance", "hideIsContributor", diagnostics, "nostrCrossposting", "withdrawMaxFeeDefault", "foundNotesAt", "autoDropBolt11s", "autoWithdrawMaxFeePercent", "autoWithdrawThreshold", "lnAddr", "nsfwMode", "hideGithub", "hideNostr", "hideTwitter", "githubId", "twitterId", "apiKeyEnabled", "noReferralLinks", "zapUndos", "noteWithdrawals", "apiKeyHash", "emailHash", "noteItemMentions", "tipRandomMax", "tipRandomMin", "satsFilter", "disableFreebies", "showImagesAndVideos", "gunStreak", "horseStreak", "autoWithdrawMaxFeeTotal", "vaultKeyHash", "walletsUpdatedAt", "proxyReceive", "directReceive", mcredits, "stackedMcredits", "receiveCreditsBelowSats", "sendCreditsBelowSats") FROM stdin; 5057 2023-05-31 02:41:48.233 2025-01-23 23:55:53.197 CassidyRogersGFK \N \N \N 138169984 5 2 \N \N 100 \N \N f f 0 \N 1249245985 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5003 2023-02-08 23:57:06.259 2025-01-25 02:36:16.273 JoannJacobsAQL \N \N \N 153203175 5 2 \N \N 100 \N \N f f 0 \N 991958312 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21734 2022-12-28 00:06:39.763 2024-12-17 00:25:54.189 SheliaLeH0O \N \N \N 105605608 5 2 \N \N 100 \N \N f f 0 \N 1645096787 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12935 2024-02-19 17:46:26.169 2024-11-10 14:11:55.166 ChristyLynchLLJ \N \N \N 107670577 5 2 \N \N 100 \N \N f f 0 \N 2414578255 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12356 2024-07-04 20:42:25.799 2024-07-13 12:23:38.811 MeredithCobb9U8 \N \N \N 54277471 5 2 \N \N 100 \N \N f f 0 \N 2166347646 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1626 2024-10-21 11:50:10.092 2024-04-06 01:25:56.135 DawnDickersonTQY \N \N \N 197920846 5 2 \N \N 100 \N \N f f 0 \N 4328789364 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2952 2023-03-25 01:02:14.22 2022-11-11 00:25:27.148 OliviaFaulknerHGK \N \N \N 69541090 5 2 \N \N 100 \N \N f f 0 \N 1732634508 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12222 2023-03-11 19:24:19.812 2023-01-18 15:02:54.768 IanWebsterKKN \N \N \N 210685126 5 2 \N \N 100 \N \N f f 0 \N 477016779 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14909 2023-11-28 08:11:42.665 2024-09-26 17:28:31.821 MeredithWashington5PV \N \N \N 129879673 5 2 \N \N 100 \N \N f f 0 \N 1068099198 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8168 2023-05-23 00:35:50.945 2024-02-04 22:25:57.635 KathleenBruceCC8 \N \N \N 160048903 5 2 \N \N 100 \N \N f f 0 \N 1075702843 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5359 2024-08-05 08:43:09.223 2024-04-22 03:33:38.848 FranciscoIbarraBMZ \N \N \N 39529180 5 2 \N \N 100 \N \N f f 0 \N 1804741846 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6058 2023-01-30 10:30:40.291 2024-12-15 01:54:21.769 TiffanyCamposFL8 \N \N \N 181954226 5 2 \N \N 100 \N \N f f 0 \N 1023664285 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15049 2023-10-17 18:36:55.816 2024-09-23 04:28:52.469 AngieLamJLH \N \N \N 30984137 5 2 \N \N 100 \N \N f f 0 \N 2267667257 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14122 2023-11-28 19:06:13.517 2024-07-24 20:56:29.444 AlexaOrrQ2J \N \N \N 74057837 5 2 \N \N 100 \N \N f f 0 \N 2436548153 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3544 2023-06-28 21:17:34.781 2025-01-15 15:10:02.073 PaigeWiseTZH \N \N \N 234335903 5 2 \N \N 100 \N \N f f 0 \N 520407363 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20812 2024-01-30 00:16:43.97 2025-02-03 23:37:10.541 DwayneNguyenJEO \N \N \N 9611567 5 2 \N \N 100 \N \N f f 0 \N 1329868967 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4287 2023-05-02 02:15:18.28 2023-10-30 12:47:24.842 MistyRamosIC6 \N \N \N 150845109 5 2 \N \N 100 \N \N f f 0 \N 2395435221 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21520 2023-06-04 13:40:45.636 2023-08-13 02:47:57.258 LeslieCrawford5UG \N \N \N 99272783 5 2 \N \N 100 \N \N f f 0 \N 627214070 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15045 2022-11-17 08:21:08.878 2023-10-06 18:44:48.664 StephenRose2QF \N \N \N 46927706 5 2 \N \N 100 \N \N f f 0 \N 2495116820 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12139 2024-09-06 03:20:00.198 2023-09-08 08:14:37.158 TamaraChaseP0I \N \N \N 23730873 5 2 \N \N 100 \N \N f f 0 \N 358450628 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21825 2024-08-30 00:27:10.39 2022-12-27 10:34:10.578 YeseniaGarrisonK45 \N \N \N 64264566 5 2 \N \N 100 \N \N f f 0 \N 1696954101 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21271 2024-08-10 19:41:21.946 2024-10-19 14:23:18.459 LindseyMcguire8VT \N \N \N 173983712 5 2 \N \N 100 \N \N f f 0 \N 989494253 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19071 2023-12-18 07:22:13.257 2024-05-20 12:40:46.652 TamiFarleyMB9 \N \N \N 59228476 5 2 \N \N 100 \N \N f f 0 \N 2401394910 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 811 2023-02-14 17:45:34.584 2023-11-09 05:47:27.492 BrentEsparzaR73 \N \N \N 88235117 5 2 \N \N 100 \N \N f f 0 \N 2217726429 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21408 2024-09-05 23:08:18.759 2025-03-20 20:30:05.412 DarleneConwayKYW \N \N \N 192612205 5 2 \N \N 100 \N \N f f 0 \N 1517757534 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16988 2024-04-22 02:40:06.193 2023-05-05 20:13:10.027 JacquelineOsborn7YV \N \N \N 180717549 5 2 \N \N 100 \N \N f f 0 \N 774974254 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1576 2023-06-20 18:49:57.994 2024-06-22 12:28:09.651 DesireeByrdWJX \N \N \N 189107694 5 2 \N \N 100 \N \N f f 0 \N 2078077964 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8945 2025-01-28 10:47:31.26 2024-08-16 18:01:55.923 ChelseaSparks5QU \N \N \N 39104705 5 2 \N \N 100 \N \N f f 0 \N 737140908 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20058 2024-09-07 10:17:44.843 2023-11-17 18:36:30.72 EllenGarrison8XP \N \N \N 45319823 5 2 \N \N 100 \N \N f f 0 \N 485585588 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1082 2023-09-28 01:14:02.104 2024-01-24 18:52:12.714 GeoffreyMonroeBIR \N \N \N 69943269 5 2 \N \N 100 \N \N f f 0 \N 1906253242 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15100 2023-10-14 06:10:44.385 2025-01-15 13:29:09.056 JenniferWhitakerRT2 \N \N \N 146834714 5 2 \N \N 100 \N \N f f 0 \N 108136522 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20479 2025-03-06 12:51:22.259 2023-05-19 21:58:10.43 HerbertPhamHYZ \N \N \N 164001708 5 2 \N \N 100 \N \N f f 0 \N 343626007 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 998 2023-09-17 18:55:54.388 2023-10-05 09:13:10.194 GavinMccormickGO6 \N \N \N 147151919 5 2 \N \N 100 \N \N f f 0 \N 673344289 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16301 2023-08-15 15:33:42.459 2022-11-21 06:45:51.022 LisaZamoraU7F \N \N \N 42277322 5 2 \N \N 100 \N \N f f 0 \N 1688081889 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14607 2023-10-20 07:48:21.3 2023-09-17 14:07:38.29 DouglasCampos1VS \N \N \N 86981957 5 2 \N \N 100 \N \N f f 0 \N 2391322302 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15146 2023-05-23 14:39:39.563 2023-01-07 21:54:21.602 DaveOnealBJ9 \N \N \N 65500324 5 2 \N \N 100 \N \N f f 0 \N 871652745 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21526 2023-07-15 19:54:23.995 2024-04-09 05:05:31.127 PhillipSchmittQM7 \N \N \N 165294625 5 2 \N \N 100 \N \N f f 0 \N 1956308542 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20854 2024-11-30 09:35:47.264 2024-08-08 13:39:05.784 GeorgeOlson2DD \N \N \N 21687107 5 2 \N \N 100 \N \N f f 0 \N 2307318093 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11240 2024-09-04 02:05:29.409 2024-01-16 22:00:07.481 GaryZavala3M9 \N \N \N 20442104 5 2 \N \N 100 \N \N f f 0 \N 1782493237 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7979 2023-02-12 03:19:38.429 2025-02-02 15:22:44.174 IvanCardenasHXJ \N \N \N 184579230 5 2 \N \N 100 \N \N f f 0 \N 202329906 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2719 2022-11-19 23:41:12.234 2023-07-07 21:28:27.534 NicoleEstes9IT \N \N \N 2273402 5 2 \N \N 100 \N \N f f 0 \N 1766536148 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1411 2023-05-06 18:09:08.805 2024-01-03 05:24:18.516 SergioVillegasMNL \N \N \N 104767285 5 2 \N \N 100 \N \N f f 0 \N 1373077659 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 733 2023-11-10 19:39:40.979 2023-04-24 23:51:13.428 ErnestSingletonMNY \N \N \N 106588445 5 2 \N \N 100 \N \N f f 0 \N 1133992886 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7185 2023-07-25 09:35:47.871 2024-07-28 16:24:32.833 FrancesWatkins9PZ \N \N \N 6099861 5 2 \N \N 100 \N \N f f 0 \N 1960810480 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6360 2024-04-02 14:46:29.841 2023-07-07 06:43:04.821 AlecAlvarez4WP \N \N \N 141946523 5 2 \N \N 100 \N \N f f 0 \N 1491812710 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5195 2023-05-24 23:13:26.27 2023-02-06 19:50:21.793 PeggyPottsIBT \N \N \N 104028636 5 2 \N \N 100 \N \N f f 0 \N 1950683535 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5497 2024-09-27 04:59:02.129 2023-04-27 06:23:04.833 AnaMichaelWIW \N \N \N 119488484 5 2 \N \N 100 \N \N f f 0 \N 1743196574 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1609 2024-05-06 12:44:59.303 2024-03-10 05:50:51.012 JeremyNielsenWMI \N \N \N 127753518 5 2 \N \N 100 \N \N f f 0 \N 1910459579 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7877 2023-10-10 08:50:13.165 2024-04-10 23:32:37.109 CandaceFoleyQBW \N \N \N 193326496 5 2 \N \N 100 \N \N f f 0 \N 2011044094 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6030 2023-10-29 09:33:00.039 2024-08-22 23:02:59.62 ElaineAtkins3IU \N \N \N 50620930 5 2 \N \N 100 \N \N f f 0 \N 426919430 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7097 2024-01-25 01:57:46.639 2023-05-07 17:19:32.506 MaureenDavidOBR \N \N \N 8007431 5 2 \N \N 100 \N \N f f 0 \N 7067089 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1729 2024-05-09 13:56:03.517 2023-11-03 12:23:43.189 RobertPittsHUJ \N \N \N 6658007 5 2 \N \N 100 \N \N f f 0 \N 420012623 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2322 2024-12-12 19:32:32.892 2023-03-02 21:25:52.002 FrederickValentine9JE \N \N \N 140618844 5 2 \N \N 100 \N \N f f 0 \N 2341669780 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10818 2025-03-19 19:32:53.885 2022-12-14 15:36:13.472 TravisHuang25F \N \N \N 124749804 5 2 \N \N 100 \N \N f f 0 \N 481952019 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 956 2023-08-26 04:30:15.832 2024-01-04 18:33:10.634 StanleyYork0TQ \N \N \N 248299743 5 2 \N \N 100 \N \N f f 0 \N 1203806630 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 715 2023-07-24 15:27:18.354 2024-10-04 06:28:37.061 ChelseaStuartNDQ \N \N \N 144546329 5 2 \N \N 100 \N \N f f 0 \N 1841163815 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5646 2023-09-22 10:20:03.962 2023-09-13 12:24:17.635 JennaHoltB78 \N \N \N 220092008 5 2 \N \N 100 \N \N f f 0 \N 2190362624 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10490 2023-04-23 01:35:34.04 2024-12-26 13:25:55.767 CalvinMendezRQY \N \N \N 189929973 5 2 \N \N 100 \N \N f f 0 \N 15421264 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5308 2024-09-02 10:03:18.473 2023-09-24 18:23:10.913 BarryHunter37F \N \N \N 214878663 5 2 \N \N 100 \N \N f f 0 \N 605403092 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 679 2023-02-04 06:02:01.074 2024-01-15 03:57:12.446 DarylLeeSS6 \N \N \N 209209983 5 2 \N \N 100 \N \N f f 0 \N 2455384315 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11491 2024-07-13 23:29:40.352 2023-02-04 13:23:42.782 BradyPruittK0L \N \N \N 200877005 5 2 \N \N 100 \N \N f f 0 \N 1917036422 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9863 2024-01-05 00:03:38.692 2023-05-06 13:46:39.964 KeithWaltonYYB \N \N \N 79183648 5 2 \N \N 100 \N \N f f 0 \N 216332747 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1800 2022-12-11 05:37:05.925 2023-03-24 05:40:49.543 KathleenChungMJ1 \N \N \N 91822917 5 2 \N \N 100 \N \N f f 0 \N 1154925101 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5306 2024-01-12 13:39:02.131 2024-07-10 07:34:38.724 NicoleSosaJ51 \N \N \N 199860671 5 2 \N \N 100 \N \N f f 0 \N 966863657 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1785 2024-02-16 04:17:09.862 2023-06-01 03:48:04.96 PrestonLuceroBMT \N \N \N 66593321 5 2 \N \N 100 \N \N f f 0 \N 1843107353 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1801 2024-03-11 05:51:02.617 2023-07-23 10:34:42.436 AdriennePriceYQY \N \N \N 210363765 5 2 \N \N 100 \N \N f f 0 \N 430674269 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7675 2023-11-12 04:30:44.938 2024-02-03 18:16:53.074 JaneStantonTZV \N \N \N 11487455 5 2 \N \N 100 \N \N f f 0 \N 1718631154 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 798 2023-01-03 04:40:32.177 2024-01-11 09:24:33.655 DanielFergusonYN9 \N \N \N 240952209 5 2 \N \N 100 \N \N f f 0 \N 985260941 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2703 2022-12-11 00:50:21.856 2024-12-03 15:57:54.849 MariahHansenDHN \N \N \N 164614258 5 2 \N \N 100 \N \N f f 0 \N 1261040607 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3371 2023-05-14 14:57:25.818 2023-05-07 00:18:23.436 AnaMooreC1K \N \N \N 216839673 5 2 \N \N 100 \N \N f f 0 \N 1680366499 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5293 2025-03-02 23:19:18.591 2024-10-15 01:51:48.655 CarolZunigaP17 \N \N \N 71360103 5 2 \N \N 100 \N \N f f 0 \N 1439391951 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7654 2024-06-17 15:45:16.695 2023-01-06 04:00:34.614 JordanGibbsDOY \N \N \N 167688693 5 2 \N \N 100 \N \N f f 0 \N 518800688 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1439 2023-10-21 05:54:18.279 2024-03-17 02:16:39.105 ClaytonRiddleOUB \N \N \N 195764746 5 2 \N \N 100 \N \N f f 0 \N 1409887159 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1983 2024-05-23 14:27:54.913 2024-08-09 05:06:43.29 JasonIbarra54P \N \N \N 239983688 5 2 \N \N 100 \N \N f f 0 \N 1941403775 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4314 2023-10-28 03:48:38.618 2024-08-17 03:59:33.521 KathyRichmondP58 \N \N \N 34383783 5 2 \N \N 100 \N \N f f 0 \N 2075195536 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2326 2023-03-19 11:55:34.377 2023-11-01 05:06:56.884 LeslieBrennan78T \N \N \N 248081207 5 2 \N \N 100 \N \N f f 0 \N 1091363116 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4166 2024-10-16 17:50:11.855 2023-05-28 07:44:52.849 FaithParkerGQU \N \N \N 237784645 5 2 \N \N 100 \N \N f f 0 \N 388347631 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1718 2023-02-19 00:05:28.824 2024-02-25 07:12:48.442 EllenCopeland5EA \N \N \N 41646908 5 2 \N \N 100 \N \N f f 0 \N 1483505947 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8037 2023-10-17 19:10:16.534 2025-03-03 13:03:25.991 GuyMartinRCW \N \N \N 145624818 5 2 \N \N 100 \N \N f f 0 \N 1616366164 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2789 2024-11-23 12:57:42.181 2024-06-10 04:21:39.065 TrevorJarvis7UN \N \N \N 136334365 5 2 \N \N 100 \N \N f f 0 \N 46999066 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8472 2024-02-02 16:57:33.449 2024-08-10 19:37:01.495 DeanMaynardHQ2 \N \N \N 102554000 5 2 \N \N 100 \N \N f f 0 \N 1871182774 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9843 2023-09-14 16:16:57.756 2023-03-16 17:56:01.371 ErnestManningN75 \N \N \N 9210186 5 2 \N \N 100 \N \N f f 0 \N 1366385141 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1273 2024-09-07 14:56:19.155 2023-01-10 05:53:52.409 CatherineMorrowEHB \N \N \N 67449316 5 2 \N \N 100 \N \N f f 0 \N 2019710661 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7668 2024-01-14 11:40:11.854 2024-02-11 22:03:40.384 TimHooverHIW \N \N \N 111415484 5 2 \N \N 100 \N \N f f 0 \N 1375802698 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4502 2023-01-10 01:41:15.352 2023-01-08 20:40:38.368 EugeneMcgee6IQ \N \N \N 2821709 5 2 \N \N 100 \N \N f f 0 \N 221115418 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5519 2023-07-31 10:49:57.002 2024-10-25 01:29:07.981 MalikYoderAVJ \N \N \N 175640267 5 2 \N \N 100 \N \N f f 0 \N 2488430636 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1244 2023-04-18 07:37:29.052 2023-06-30 18:57:47.948 ChelseyFitzgerald7OP \N \N \N 5588229 5 2 \N \N 100 \N \N f f 0 \N 143008245 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 762 2023-12-09 14:15:35.43 2023-02-16 22:29:38.889 JennyMunozQYM \N \N \N 34672534 5 2 \N \N 100 \N \N f f 0 \N 133486417 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 827 2022-11-24 22:20:56.097 2024-08-25 02:40:23.993 RavenHubbardTRP \N \N \N 77371205 5 2 \N \N 100 \N \N f f 0 \N 672116963 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5500 2023-06-08 08:35:17.655 2023-01-25 20:55:39.041 ScottFischerV5H \N \N \N 157914062 5 2 \N \N 100 \N \N f f 0 \N 1480908635 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3745 2024-06-20 18:45:28.794 2022-11-15 22:35:49.927 BiancaLandry2KF \N \N \N 195298811 5 2 \N \N 100 \N \N f f 0 \N 593313522 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7809 2025-03-25 14:38:07.07 2023-11-12 03:07:48.03 KiaraBensonE02 \N \N \N 59540725 5 2 \N \N 100 \N \N f f 0 \N 2286455156 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1745 2024-06-19 03:25:39.402 2023-08-23 01:50:04.703 TerrenceHoldenDLZ \N \N \N 235466567 5 2 \N \N 100 \N \N f f 0 \N 1589888969 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10690 2023-01-01 06:04:48.636 2023-11-18 01:08:17.222 ClaudiaCoffey8HK \N \N \N 142788912 5 2 \N \N 100 \N \N f f 0 \N 998375087 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9307 2024-05-27 17:08:56.633 2023-01-09 04:45:46.878 NicholeLeonL4U \N \N \N 114345212 5 2 \N \N 100 \N \N f f 0 \N 1832428922 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5129 2024-10-31 05:36:39.409 2023-08-31 04:41:36.68 BryceSkinnerWKZ \N \N \N 245446946 5 2 \N \N 100 \N \N f f 0 \N 1662667184 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9985 2023-03-26 06:47:03.473 2024-11-04 18:48:58.713 CatherineRoseSVF \N \N \N 117868655 5 2 \N \N 100 \N \N f f 0 \N 1257556339 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7760 2023-11-18 22:23:09.091 2023-12-12 15:08:24.492 KathyGlennY51 \N \N \N 119295222 5 2 \N \N 100 \N \N f f 0 \N 802003510 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5173 2023-01-09 08:06:02.508 2024-11-11 23:03:43.222 CameronGibsonWK6 \N \N \N 221320138 5 2 \N \N 100 \N \N f f 0 \N 1083826832 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1652 2024-02-26 22:47:20.317 2024-03-01 01:37:41.751 AlexandraPerry9L4 \N \N \N 231381164 5 2 \N \N 100 \N \N f f 0 \N 912242893 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7673 2024-04-08 17:39:09.327 2023-04-30 09:25:52.914 TimothyBooth2RB \N \N \N 14343403 5 2 \N \N 100 \N \N f f 0 \N 1630092356 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 946 2024-02-26 15:38:15.808 2023-04-18 19:36:54.216 LoriPitts3DT \N \N \N 53562692 5 2 \N \N 100 \N \N f f 0 \N 2145574735 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8242 2024-08-21 07:17:25.479 2023-10-03 04:19:34.586 KurtMcconnellU4N \N \N \N 231813108 5 2 \N \N 100 \N \N f f 0 \N 1960239434 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9552 2023-05-03 11:44:14.525 2024-10-16 10:52:16.541 DeanPenaMY6 \N \N \N 49135374 5 2 \N \N 100 \N \N f f 0 \N 1802483802 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1319 2024-04-07 13:19:05.161 2024-06-20 11:03:58.807 KristinaChurch5WX \N \N \N 235791724 5 2 \N \N 100 \N \N f f 0 \N 415973298 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5942 2024-07-09 19:17:51.865 2022-11-16 23:41:21.231 KristenNeal0F6 \N \N \N 136529326 5 2 \N \N 100 \N \N f f 0 \N 1052086990 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6687 2023-03-02 16:53:23.782 2023-09-11 21:40:25.52 GwendolynByrd9L0 \N \N \N 122016055 5 2 \N \N 100 \N \N f f 0 \N 1272733480 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8570 2023-02-01 10:43:31.686 2023-05-16 04:00:53.186 VernonLopezRQ6 \N \N \N 171870427 5 2 \N \N 100 \N \N f f 0 \N 1140940769 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1478 2024-03-21 08:21:35.296 2022-12-14 04:03:15.688 AntonioReyesVZN \N \N \N 2169588 5 2 \N \N 100 \N \N f f 0 \N 1396708606 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8498 2023-03-23 14:33:15.716 2024-06-23 18:32:58.133 EmilyNormanWDQ \N \N \N 24429220 5 2 \N \N 100 \N \N f f 0 \N 133411706 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 641 2023-05-11 07:14:13.103 2025-03-17 06:57:02.357 TonyaBeard170 \N \N \N 156942587 5 2 \N \N 100 \N \N f f 0 \N 1951020192 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10273 2023-11-26 18:02:24.869 2023-10-16 02:02:53.189 KathyMontoyaVHV \N \N \N 107365294 5 2 \N \N 100 \N \N f f 0 \N 626335169 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14271 2023-07-09 03:53:26.803 2024-08-19 10:26:08.863 PrestonVelazquezJ7R \N \N \N 190685172 5 2 \N \N 100 \N \N f f 0 \N 309770382 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1092 2023-10-20 09:33:35.754 2024-09-06 03:38:12.77 SallySchmittWUW \N \N \N 238117782 5 2 \N \N 100 \N \N f f 0 \N 698528887 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 761 2024-08-30 23:32:59.709 2023-02-24 02:36:38.666 DarleneMooreYQ1 \N \N \N 194002459 5 2 \N \N 100 \N \N f f 0 \N 614369820 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 617 2025-03-29 05:07:59.907 2024-03-01 14:26:53.081 GuyChaneyXX8 \N \N \N 115393883 5 2 \N \N 100 \N \N f f 0 \N 1594361513 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13763 2023-09-30 11:00:54.461 2023-05-27 17:52:15.009 HelenOlsenI22 \N \N \N 2822716 5 2 \N \N 100 \N \N f f 0 \N 1439831154 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4768 2023-12-24 16:10:16.773 2023-03-26 16:55:20.503 JasminMcgrathYM1 \N \N \N 46998760 5 2 \N \N 100 \N \N f f 0 \N 1700726478 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11220 2024-04-13 04:59:21.382 2024-06-02 22:16:29.072 BridgetPeterson22R \N \N \N 78675937 5 2 \N \N 100 \N \N f f 0 \N 219040921 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16214 2024-09-18 18:43:27.36 2023-04-28 20:20:40.008 CandaceHuntWW8 \N \N \N 127619387 5 2 \N \N 100 \N \N f f 0 \N 913432695 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1712 2024-10-26 21:05:33.423 2024-02-04 05:24:57.464 CodyLeonQMD \N \N \N 62752375 5 2 \N \N 100 \N \N f f 0 \N 1338219186 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7389 2022-11-21 00:30:32.867 2023-03-28 17:24:08.117 GabrielaVegaETF \N \N \N 38756976 5 2 \N \N 100 \N \N f f 0 \N 2165374744 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6361 2024-06-23 04:53:50.012 2024-08-15 09:14:57.137 BeckyBaird72V \N \N \N 122252756 5 2 \N \N 100 \N \N f f 0 \N 2395316562 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14037 2023-02-17 20:49:04.151 2023-10-06 13:47:05.436 KerryEatonRUG \N \N \N 191274234 5 2 \N \N 100 \N \N f f 0 \N 533106409 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 650 2024-02-29 15:23:35.779 2024-05-18 05:53:01.819 AngelicaGarciaHD3 \N \N \N 139327455 5 2 \N \N 100 \N \N f f 0 \N 506696917 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 678 2025-03-19 06:44:30.741 2024-04-07 12:41:05.808 AliceReillyW01 \N \N \N 165338862 5 2 \N \N 100 \N \N f f 0 \N 1469449386 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5865 2023-08-20 11:57:16.702 2024-09-06 23:14:53.705 KaylaGoodwin8CB \N \N \N 220128077 5 2 \N \N 100 \N \N f f 0 \N 1355533830 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 826 2025-02-09 03:35:16.854 2025-01-22 14:39:21.094 LaceyHarringtonZND \N \N \N 99074304 5 2 \N \N 100 \N \N f f 0 \N 530854746 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2942 2023-08-10 14:46:08.297 2023-02-01 01:00:49.915 JenniferCraigWR7 \N \N \N 220059810 5 2 \N \N 100 \N \N f f 0 \N 852192806 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15762 2024-04-17 17:05:30.265 2024-08-18 14:15:50.631 NatalieMooneyIN5 \N \N \N 23600622 5 2 \N \N 100 \N \N f f 0 \N 1797484765 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9261 2024-11-10 09:00:50.503 2024-08-12 08:33:10.083 SherylRubioG4F \N \N \N 81130494 5 2 \N \N 100 \N \N f f 0 \N 1722095883 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5794 2023-02-21 13:31:25.538 2024-07-09 02:11:17.054 AlishaTuckerK5R \N \N \N 219817445 5 2 \N \N 100 \N \N f f 0 \N 2338463934 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5175 2023-02-02 10:25:31.186 2025-01-15 09:13:47.423 AntonioDominguezG55 \N \N \N 188445979 5 2 \N \N 100 \N \N f f 0 \N 941777782 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1825 2023-11-02 15:50:56.431 2024-07-29 23:56:15.447 ErikFarmerFFM \N \N \N 216358073 5 2 \N \N 100 \N \N f f 0 \N 577070891 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9916 2023-07-22 09:44:11.966 2024-04-26 23:08:43.296 AshleyYatesV1R \N \N \N 206641102 5 2 \N \N 100 \N \N f f 0 \N 1488732929 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5527 2023-05-14 13:34:48.062 2024-02-26 17:00:51.222 BelindaBlackKJ4 \N \N \N 19811617 5 2 \N \N 100 \N \N f f 0 \N 2494949289 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 980 2025-03-06 21:15:24.152 2024-07-28 09:07:35.62 GlendaRivers97C \N \N \N 20060943 5 2 \N \N 100 \N \N f f 0 \N 528985237 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11314 2024-01-10 10:45:01.835 2023-10-13 07:01:48.31 RachaelNolanMW0 \N \N \N 18475609 5 2 \N \N 100 \N \N f f 0 \N 2018555528 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1046 2024-02-08 11:16:23.727 2023-08-05 07:31:44.08 GeneFoxVLJ \N \N \N 231683022 5 2 \N \N 100 \N \N f f 0 \N 2379747569 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13798 2023-09-24 04:20:40.921 2025-01-10 12:19:47.166 AnnaNavarroDNM \N \N \N 147311783 5 2 \N \N 100 \N \N f f 0 \N 1362927837 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7766 2022-11-27 23:32:07.601 2024-03-09 21:45:13.177 RickyWintersQMI \N \N \N 128530791 5 2 \N \N 100 \N \N f f 0 \N 1605443308 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1959 2023-03-16 21:05:56.947 2024-02-01 15:07:52.572 AlbertBurnettNFO \N \N \N 97925357 5 2 \N \N 100 \N \N f f 0 \N 346634417 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2681 2024-05-21 10:02:26.667 2024-08-01 13:54:52.9 ArianaHoganQHK \N \N \N 239461310 5 2 \N \N 100 \N \N f f 0 \N 591686323 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6149 2023-01-23 10:15:52.054 2023-03-23 22:17:50.192 TomMercado22V \N \N \N 216754242 5 2 \N \N 100 \N \N f f 0 \N 1590132151 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1773 2023-06-17 04:24:33.748 2023-05-03 06:45:51.651 JeanCalderonRIJ \N \N \N 113829316 5 2 \N \N 100 \N \N f f 0 \N 2490894112 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5499 2024-03-01 19:13:21.178 2025-02-04 22:24:52.028 BradyWareFTN \N \N \N 19983266 5 2 \N \N 100 \N \N f f 0 \N 233869234 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4079 2023-02-09 12:50:29.097 2023-09-04 13:41:24.932 MeganJensenQY1 \N \N \N 30572365 5 2 \N \N 100 \N \N f f 0 \N 1413450661 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2213 2024-12-03 16:35:58.437 2024-10-03 15:50:13.545 DarrylHuffO1U \N \N \N 202742755 5 2 \N \N 100 \N \N f f 0 \N 840239138 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7418 2023-04-19 11:49:48.7 2024-12-12 19:18:22.091 TylerOchoa122 \N \N \N 162278074 5 2 \N \N 100 \N \N f f 0 \N 2088074432 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13177 2024-10-06 21:26:02.305 2022-11-15 02:37:58.004 MaryMcpherson5RK \N \N \N 94856430 5 2 \N \N 100 \N \N f f 0 \N 1611377529 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11091 2023-11-30 04:56:52.297 2024-11-22 12:29:00.324 YeseniaLee8T6 \N \N \N 100907342 5 2 \N \N 100 \N \N f f 0 \N 418185039 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15491 2023-12-03 05:52:48.964 2024-12-13 22:54:05.92 ChristieMcbrideIRZ \N \N \N 192809896 5 2 \N \N 100 \N \N f f 0 \N 1152940092 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9529 2023-02-27 16:32:24.639 2023-11-06 21:33:08.674 ReneeSuarezDPO \N \N \N 32397870 5 2 \N \N 100 \N \N f f 0 \N 863191541 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 685 2022-11-17 22:09:15.868 2025-01-12 10:23:36.335 ManuelLowePBS \N \N \N 112295469 5 2 \N \N 100 \N \N f f 0 \N 636234362 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19292 2024-08-28 09:14:28.873 2022-11-17 15:37:41.03 BethanyGomezC88 \N \N \N 122726702 5 2 \N \N 100 \N \N f f 0 \N 1243111237 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12291 2025-01-05 05:49:29.736 2023-07-23 02:58:28.875 ElaineBurtonGJD \N \N \N 63061986 5 2 \N \N 100 \N \N f f 0 \N 353891576 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15200 2023-10-04 05:09:43.69 2024-12-07 03:54:35.952 CassieFullerIQ5 \N \N \N 137944810 5 2 \N \N 100 \N \N f f 0 \N 2166805705 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18557 2025-03-04 20:14:08.133 2025-03-28 19:31:44.011 LindsayLeeJZA \N \N \N 76499544 5 2 \N \N 100 \N \N f f 0 \N 596442157 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21768 2023-06-23 15:12:05.23 2024-03-07 10:13:29.183 LorraineAcostaWSP \N \N \N 244157639 5 2 \N \N 100 \N \N f f 0 \N 2379041430 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5757 2023-07-28 19:10:17.671 2023-02-01 06:36:15.01 AlexanderNolanM2E \N \N \N 240492584 5 2 \N \N 100 \N \N f f 0 \N 1339543524 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5746 2025-01-16 18:58:35.588 2024-10-19 17:09:27.535 DuaneMathisQIR \N \N \N 152782916 5 2 \N \N 100 \N \N f f 0 \N 702027110 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20102 2022-12-05 18:59:32.975 2024-06-02 15:46:44.341 BryceNorton190 \N \N \N 34629327 5 2 \N \N 100 \N \N f f 0 \N 1857939059 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21498 2024-11-26 12:12:28.16 2023-06-13 08:09:51.553 DariusGallagherT2X \N \N \N 24407086 5 2 \N \N 100 \N \N f f 0 \N 737596209 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 658 2024-11-27 23:05:26.487 2023-11-28 11:57:47.28 BarbaraGamble7N8 \N \N \N 197106504 5 2 \N \N 100 \N \N f f 0 \N 1003017402 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19446 2023-07-26 10:35:38.259 2024-03-15 11:45:24.299 MiguelRobersonSMN \N \N \N 90851696 5 2 \N \N 100 \N \N f f 0 \N 1657836547 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1145 2023-10-02 19:03:39.163 2023-11-19 17:53:10.388 RoseAtkinsonP1B \N \N \N 162906317 5 2 \N \N 100 \N \N f f 0 \N 1851078349 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16594 2024-06-19 07:57:28.059 2023-10-24 04:44:44.517 FernandoNewtonNGD \N \N \N 242206919 5 2 \N \N 100 \N \N f f 0 \N 1915394493 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20137 2024-07-25 08:01:47.76 2023-08-08 21:32:51.419 JonVasquezVA8 \N \N \N 103263439 5 2 \N \N 100 \N \N f f 0 \N 743159430 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2514 2023-04-19 19:09:27.057 2025-02-17 12:43:24.548 JoshuaMezaF6G \N \N \N 218095330 5 2 \N \N 100 \N \N f f 0 \N 214949197 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21314 2025-02-09 08:58:44.169 2023-04-07 19:00:35.429 DamonByrd7JH \N \N \N 70040253 5 2 \N \N 100 \N \N f f 0 \N 1638499678 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12656 2024-03-13 16:19:12.113 2024-07-31 13:42:37.67 JonathanAcosta5JE \N \N \N 136595298 5 2 \N \N 100 \N \N f f 0 \N 795158332 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13132 2024-11-05 17:39:05.112 2023-03-26 06:20:34.147 EthanLevyCG5 \N \N \N 103079434 5 2 \N \N 100 \N \N f f 0 \N 1423214879 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1298 2024-02-21 21:27:45.858 2023-11-22 07:35:11.341 EdgarWalter4L1 \N \N \N 176352277 5 2 \N \N 100 \N \N f f 0 \N 2241639862 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1209 2024-09-21 10:38:02.64 2023-04-29 15:03:11.12 BethanyLivingstonS2U \N \N \N 144887554 5 2 \N \N 100 \N \N f f 0 \N 92040828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13575 2023-03-01 11:45:49.318 2023-07-14 19:03:32.163 ClintonBoltonIWH \N \N \N 14393282 5 2 \N \N 100 \N \N f f 0 \N 1930699593 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21709 2025-01-29 22:11:12.71 2024-07-31 19:40:07.706 KyleJeffersonB3R \N \N \N 167029924 5 2 \N \N 100 \N \N f f 0 \N 1610974353 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8796 2024-02-05 13:23:16.286 2023-08-08 19:47:11.084 ArianaWheeler7AR \N \N \N 43920293 5 2 \N \N 100 \N \N f f 0 \N 2402416946 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21771 2024-03-01 18:26:23.947 2024-05-16 07:28:55.529 DominiqueChurch5OC \N \N \N 129210864 5 2 \N \N 100 \N \N f f 0 \N 2175078726 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6136 2024-03-13 09:32:05.712 2023-07-17 23:09:21.528 ClintonBaxterKG8 \N \N \N 119162745 5 2 \N \N 100 \N \N f f 0 \N 948676059 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18178 2024-03-23 22:58:33.208 2024-10-29 06:08:42.638 PamelaMcintosh1OT \N \N \N 155184611 5 2 \N \N 100 \N \N f f 0 \N 721904038 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19417 2023-04-22 08:13:24.182 2024-08-10 23:16:51.686 PaulaMoonFHI \N \N \N 29904284 5 2 \N \N 100 \N \N f f 0 \N 298836036 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1175 2024-01-16 11:29:46.615 2023-07-31 07:37:03.842 OmarBlanchardAXT \N \N \N 153697974 5 2 \N \N 100 \N \N f f 0 \N 2052287011 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21532 2023-03-08 12:12:04.216 2024-01-10 23:02:12.871 MindyHarris01I \N \N \N 193892770 5 2 \N \N 100 \N \N f f 0 \N 687625059 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19459 2023-10-11 15:35:54.437 2024-08-05 11:03:27.334 ChristyGibsonTJM \N \N \N 54791162 5 2 \N \N 100 \N \N f f 0 \N 2302391012 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21136 2024-03-13 19:58:13.99 2023-08-25 12:41:28.335 GlennWelchUCY \N \N \N 80599152 5 2 \N \N 100 \N \N f f 0 \N 1398127753 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19569 2023-03-30 04:27:11.828 2023-03-13 19:52:44.501 LawrenceMcintyre7PW \N \N \N 116518462 5 2 \N \N 100 \N \N f f 0 \N 2152883965 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20062 2024-03-15 15:25:31.347 2024-10-30 08:21:52.229 AlexandriaAnthonyFCQ \N \N \N 76819985 5 2 \N \N 100 \N \N f f 0 \N 2056626746 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19759 2023-12-13 19:54:52.05 2024-09-12 06:25:35.915 NatashaDawsonVW9 \N \N \N 176583582 5 2 \N \N 100 \N \N f f 0 \N 1588283211 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1817 2024-06-28 22:25:25.45 2023-09-05 03:17:20.488 KaraFrancis020 \N \N \N 34019062 5 2 \N \N 100 \N \N f f 0 \N 386540345 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17106 2023-07-25 15:16:30.725 2025-03-06 23:19:18.905 LouisPierceLE8 \N \N \N 142899470 5 2 \N \N 100 \N \N f f 0 \N 465309446 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1970 2023-09-23 21:02:35.954 2025-01-22 01:41:21.8 AdrienneMarsh0SO \N \N \N 108477544 5 2 \N \N 100 \N \N f f 0 \N 465168660 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20439 2025-02-22 14:32:04.557 2024-01-09 08:20:34.745 AnthonyLutz0AF \N \N \N 159888894 5 2 \N \N 100 \N \N f f 0 \N 70283791 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1738 2024-11-01 02:42:44.279 2024-09-22 00:56:38.442 LeonKerrBR5 \N \N \N 34876209 5 2 \N \N 100 \N \N f f 0 \N 1476929228 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14195 2023-05-30 14:52:22.385 2023-07-01 23:49:28.835 LindaCameronM1S \N \N \N 42736379 5 2 \N \N 100 \N \N f f 0 \N 1756140371 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9418 2024-03-01 03:36:17.45 2023-07-12 05:19:40.975 KrystalHamptonYAK \N \N \N 7761092 5 2 \N \N 100 \N \N f f 0 \N 429323847 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 797 2023-03-18 20:48:54.717 2023-07-21 11:38:40.302 CassandraLittleQKO \N \N \N 121431072 5 2 \N \N 100 \N \N f f 0 \N 1040406280 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1002 2024-06-17 07:50:41.363 2024-01-16 01:31:19.53 BeverlyWilliamsonJSP \N \N \N 90679083 5 2 \N \N 100 \N \N f f 0 \N 1894178626 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 937 2023-09-08 10:53:29.649 2024-03-29 20:38:03.653 BarbaraAveryM3I \N \N \N 175821215 5 2 \N \N 100 \N \N f f 0 \N 1200098529 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 974 2022-11-15 04:38:57.186 2024-09-16 20:51:18.797 AdrienneHarrisonKRM \N \N \N 139818916 5 2 \N \N 100 \N \N f f 0 \N 1447153180 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 902 2024-11-19 20:16:52.684 2024-10-15 22:05:22.086 CalvinDunlap3WW \N \N \N 227313075 5 2 \N \N 100 \N \N f f 0 \N 1352923948 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1142 2024-06-16 20:02:03.344 2023-12-28 11:03:29.999 SierraHudsonC48 \N \N \N 237384239 5 2 \N \N 100 \N \N f f 0 \N 1365981401 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 633 2023-10-18 17:53:34.064 2023-02-27 06:22:39.369 KimWallaceJ3D \N \N \N 69686760 5 2 \N \N 100 \N \N f f 0 \N 1194247443 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1007 2024-03-15 02:48:33.584 2023-09-23 16:14:08.622 ColleenDaltonIH1 \N \N \N 239785120 5 2 \N \N 100 \N \N f f 0 \N 150935574 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 910 2025-02-06 08:40:01.345 2022-12-23 18:47:13.91 KatieGrantR73 \N \N \N 196747439 5 2 \N \N 100 \N \N f f 0 \N 538833878 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 701 2023-07-27 12:02:04.714 2024-12-03 11:52:59.973 OliviaCarlson2IU \N \N \N 191649199 5 2 \N \N 100 \N \N f f 0 \N 1175320546 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 618 2024-10-24 23:04:56.163 2023-07-03 10:55:14.429 ElizabethRosalesNAF \N \N \N 48956498 5 2 \N \N 100 \N \N f f 0 \N 318509103 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 704 2023-02-08 11:42:14.919 2023-03-08 01:25:12.582 GlendaJenningsFW2 \N \N \N 230346658 5 2 \N \N 100 \N \N f f 0 \N 2247999628 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1051 2024-11-06 00:18:19.192 2024-01-30 19:33:44.752 TonyPrestonCVV \N \N \N 180721836 5 2 \N \N 100 \N \N f f 0 \N 562608488 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 766 2023-03-14 11:00:51.716 2023-02-10 09:06:26.115 TravisLarsenN1S \N \N \N 233291829 5 2 \N \N 100 \N \N f f 0 \N 1799973656 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1094 2023-09-02 18:27:29.47 2024-05-01 06:53:22.121 DominiqueSextonDYV \N \N \N 37427697 5 2 \N \N 100 \N \N f f 0 \N 1053284287 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 738 2023-12-14 11:13:18.804 2024-03-25 22:40:48.666 JuliaGregoryU01 \N \N \N 127880408 5 2 \N \N 100 \N \N f f 0 \N 2430853498 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 959 2023-01-24 05:22:35.363 2022-11-15 02:37:54.01 MeganWilcoxP60 \N \N \N 186959194 5 2 \N \N 100 \N \N f f 0 \N 2475093343 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2061 2023-04-11 07:38:05.962 2024-05-13 06:40:12.475 GeorgeKempJI5 \N \N \N 55579195 5 2 \N \N 100 \N \N f f 0 \N 1493699975 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5779 2022-11-16 20:22:08.821 2025-02-12 10:48:26.547 MackenzieCopelandHR7 \N \N \N 248439463 5 2 \N \N 100 \N \N f f 0 \N 422103217 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5725 2025-02-27 23:22:06.045 2023-05-19 19:14:16.266 RobertLaneAG6 \N \N \N 76406919 5 2 \N \N 100 \N \N f f 0 \N 652596863 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4624 2024-02-28 00:18:19.766 2025-02-14 04:08:55.707 IsaacVillegasHQA \N \N \N 222755501 5 2 \N \N 100 \N \N f f 0 \N 71415458 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1726 2023-03-04 02:52:59.965 2024-08-28 00:38:00.177 AlexanderMeyer1EJ \N \N \N 168893215 5 2 \N \N 100 \N \N f f 0 \N 1125692322 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5661 2023-03-05 20:32:34.041 2024-12-25 12:44:57.038 TraciCallahan167 \N \N \N 75546623 5 2 \N \N 100 \N \N f f 0 \N 1891372242 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3686 2024-09-19 03:22:35.603 2022-11-30 11:58:35.71 JoannePalmer06L \N \N \N 50747530 5 2 \N \N 100 \N \N f f 0 \N 667969456 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3478 2023-03-16 07:05:07.224 2023-04-28 13:49:55.164 VanessaConnerM4B \N \N \N 190121132 5 2 \N \N 100 \N \N f f 0 \N 2063832883 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4819 2023-03-09 17:17:24.397 2022-11-26 04:53:59.285 AlejandraLoveBJH \N \N \N 30257391 5 2 \N \N 100 \N \N f f 0 \N 1946872992 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5444 2022-11-22 12:15:57.989 2023-03-14 08:54:02.394 AudreyKempP8Z \N \N \N 120839629 5 2 \N \N 100 \N \N f f 0 \N 2361379831 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2749 2024-08-14 06:15:10.596 2025-02-12 09:30:36.017 HerbertLutz5EY \N \N \N 180434012 5 2 \N \N 100 \N \N f f 0 \N 563057315 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2233 2023-12-25 02:47:06.553 2024-03-07 06:22:42.749 KurtGentry58M \N \N \N 39886711 5 2 \N \N 100 \N \N f f 0 \N 576421714 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2328 2023-11-24 22:14:00.925 2024-12-22 02:48:31.708 KatelynMurillo77Y \N \N \N 135584024 5 2 \N \N 100 \N \N f f 0 \N 1255824199 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 814 2023-01-14 14:19:05.761 2024-11-16 12:50:21.461 BryanCarlsonMJX \N \N \N 73148544 5 2 \N \N 100 \N \N f f 0 \N 415297291 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1802 2024-12-02 17:23:49.563 2025-02-27 16:51:45.906 MollyEatonNES \N \N \N 41842707 5 2 \N \N 100 \N \N f f 0 \N 198448932 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 919 2023-02-28 22:04:07.529 2025-01-29 22:39:13.654 NathanielBartlettL69 \N \N \N 66950078 5 2 \N \N 100 \N \N f f 0 \N 115249454 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1571 2024-08-05 16:05:24.674 2024-11-09 14:50:24.431 ClaireHopkinsO6O \N \N \N 44991155 5 2 \N \N 100 \N \N f f 0 \N 1569132121 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5017 2023-11-27 17:56:51.841 2023-07-04 17:48:59.004 DannyMacdonaldTMS \N \N \N 242606664 5 2 \N \N 100 \N \N f f 0 \N 975780386 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1960 2024-02-18 10:35:33.197 2023-06-12 01:15:58.141 StacyAndrewsEFI \N \N \N 27640380 5 2 \N \N 100 \N \N f f 0 \N 2411721375 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4958 2024-09-12 22:49:07.044 2025-03-23 13:53:57.731 CaseyWernerRMX \N \N \N 151661269 5 2 \N \N 100 \N \N f f 0 \N 1361504798 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2196 2024-07-26 15:32:53.154 2024-09-15 12:12:35.012 AdrianaNolan1ZG \N \N \N 5296805 5 2 \N \N 100 \N \N f f 0 \N 217055655 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1272 2024-05-13 10:04:42.78 2023-01-14 14:04:09.525 RavenFryeYOM \N \N \N 199522986 5 2 \N \N 100 \N \N f f 0 \N 297415656 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4250 2024-05-08 01:51:52.437 2023-10-28 17:00:32.507 BillyVazquezUFC \N \N \N 73417778 5 2 \N \N 100 \N \N f f 0 \N 3796800698 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5522 2023-03-08 00:38:33.269 2023-08-14 02:38:46.764 DesireeMercadoV2S \N \N \N 50271449 5 2 \N \N 100 \N \N f f 0 \N 2334621673 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5427 2024-10-20 14:34:40.018 2024-10-13 19:46:34.618 CrystalWaltonN4E \N \N \N 33687545 5 2 \N \N 100 \N \N f f 0 \N 895050022 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5597 2024-12-08 17:44:45.404 2024-07-15 01:02:42.179 VeronicaRoachQH1 \N \N \N 85628210 5 2 \N \N 100 \N \N f f 0 \N 1897447349 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5759 2023-02-19 07:19:32.383 2023-09-23 22:41:45.689 ZoeRivera1XN \N \N \N 103272491 5 2 \N \N 100 \N \N f f 0 \N 1970129921 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4395 2024-02-14 17:41:27.54 2023-06-07 12:30:42.797 AlexandriaRichardson1J1 \N \N \N 104225405 5 2 \N \N 100 \N \N f f 0 \N 406758964 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5703 2024-10-14 06:52:40.5 2023-05-08 22:41:35.919 DonnaPotterRWU \N \N \N 101377025 5 2 \N \N 100 \N \N f f 0 \N 398920565 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 652 2023-05-20 08:24:27.969 2024-05-11 20:06:32.514 KristaGallegosT1L \N \N \N 73203430 5 2 \N \N 100 \N \N f f 0 \N 2390029415 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2519 2024-10-18 14:06:24.288 2023-01-26 10:34:50.414 ChristineLivingstonHE8 \N \N \N 217189695 5 2 \N \N 100 \N \N f f 0 \N 1512404006 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2437 2024-09-20 23:40:48.551 2024-01-26 04:27:20.927 ColleenPugh6Y9 \N \N \N 232879216 5 2 \N \N 100 \N \N f f 0 \N 1128414150 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5425 2023-07-08 11:31:26.895 2023-01-25 19:36:12.341 ErinRamsey1D4 \N \N \N 78389898 5 2 \N \N 100 \N \N f f 0 \N 84181235 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2718 2024-09-21 02:01:14.705 2023-11-02 08:53:00.147 ArianaMullenSET \N \N \N 221676939 5 2 \N \N 100 \N \N f f 0 \N 2038914672 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4776 2023-12-06 01:33:57.202 2023-10-06 08:07:41.563 GavinEatonTI6 \N \N \N 181090170 5 2 \N \N 100 \N \N f f 0 \N 1188846745 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15160 2023-01-09 14:58:18.32 2023-08-16 14:12:58.926 ReneeStricklandIFP \N \N \N 16046080 5 2 \N \N 100 \N \N f f 0 \N 973723098 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13753 2022-11-13 09:11:19.792 2025-01-07 19:59:42.872 KristaMorganG5Z \N \N \N 208968102 5 2 \N \N 100 \N \N f f 0 \N 172342795 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18673 2024-07-10 00:30:42.578 2024-06-26 10:29:40.87 BrianTranQ01 \N \N \N 86494122 5 2 \N \N 100 \N \N f f 0 \N 115781968 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2338 2024-11-12 05:10:03.623 2024-10-02 23:59:11.143 BrendanBrooksEVG \N \N \N 27280845 5 2 \N \N 100 \N \N f f 0 \N 1606229197 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17673 2023-11-09 03:17:43.671 2024-04-06 10:37:36.27 HowardPennington6A6 \N \N \N 217482891 5 2 \N \N 100 \N \N f f 0 \N 254872552 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14959 2024-01-27 12:11:09.981 2024-02-18 20:36:16.158 CliffordWade9N2 \N \N \N 62567766 5 2 \N \N 100 \N \N f f 0 \N 1567466265 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7847 2024-09-03 04:51:02.784 2025-01-16 19:59:09.9 RicardoBrowningPGP \N \N \N 34241573 5 2 \N \N 100 \N \N f f 0 \N 2017372749 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18473 2023-07-25 03:22:21.919 2024-05-09 05:31:14.56 AlyssaHendricks3XL \N \N \N 73294663 5 2 \N \N 100 \N \N f f 0 \N 2482520338 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16876 2024-09-20 13:54:04.003 2022-12-19 00:50:47.56 SherriStevens7ID \N \N \N 204610261 5 2 \N \N 100 \N \N f f 0 \N 661177588 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 27 2023-05-23 03:09:44.88 2025-01-30 20:56:39.371 anon \N \N \N 137352454 5 2 \N \N 100 \N \N f f 0 \N 1127404912 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 681 2024-05-05 23:20:40.672 2023-07-17 20:06:58.825 ChadWoodwardPXX \N \N \N 206830129 5 2 \N \N 100 \N \N f f 0 \N 219068735 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 732 2024-01-30 06:14:41.524 2024-04-08 19:15:35.303 CharleneGomezMCF \N \N \N 38262164 5 2 \N \N 100 \N \N f f 0 \N 1595257855 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 780 2024-08-15 02:28:18.161 2023-12-27 06:12:27.956 KendraCummingsKDF \N \N \N 142649540 5 2 \N \N 100 \N \N f f 0 \N 2397491651 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 882 2023-01-13 04:56:37.005 2023-10-12 22:25:53.112 DarylMacdonald27P \N \N \N 143396926 5 2 \N \N 100 \N \N f f 0 \N 1157708873 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 886 2023-11-29 06:30:19.291 2022-12-16 18:36:00.975 ReginaFosterIU5 \N \N \N 118787090 5 2 \N \N 100 \N \N f f 0 \N 2511746701 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 929 2023-10-19 09:04:21.123 2023-09-26 02:52:54.357 HaleyMorrisonDBS \N \N \N 85925979 5 2 \N \N 100 \N \N f f 0 \N 1246899161 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1003 2024-07-14 19:12:32.222 2024-08-15 01:57:44.915 YvonneGoodmanRVH \N \N \N 32112417 5 2 \N \N 100 \N \N f f 0 \N 1117251208 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1064 2023-06-01 01:28:31.288 2024-06-19 11:31:36.654 DonnaWattsPRV \N \N \N 18537398 5 2 \N \N 100 \N \N f f 0 \N 612430523 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1631 2023-09-23 15:11:33.934 2024-01-15 06:31:02.643 AlanBuchananU1R \N \N \N 2763652 5 2 \N \N 100 \N \N f f 0 \N 541554332 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1713 2024-09-03 19:12:40.516 2023-08-26 17:13:14.404 FranklinHintonL8Z \N \N \N 242082479 5 2 \N \N 100 \N \N f f 0 \N 1165343044 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1720 2023-05-31 22:16:02.306 2025-02-17 00:13:21.851 ZoeBell3J0 \N \N \N 230786601 5 2 \N \N 100 \N \N f f 0 \N 1031447851 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1723 2023-12-01 08:02:16.227 2025-03-29 05:16:10.573 HeatherHoffmanVZ3 \N \N \N 80964860 5 2 \N \N 100 \N \N f f 0 \N 2373416587 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1741 2022-11-23 07:09:17.974 2023-01-18 07:26:44.167 RileyLongMLM \N \N \N 133670046 5 2 \N \N 100 \N \N f f 0 \N 1321521085 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1751 2025-03-26 04:26:30.321 2023-09-14 23:47:12.757 MelissaGayBWW \N \N \N 184585940 5 2 \N \N 100 \N \N f f 0 \N 138788238 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1985 2023-06-20 21:44:28.553 2022-12-05 16:59:44.976 AmandaOliver86S \N \N \N 38580951 5 2 \N \N 100 \N \N f f 0 \N 1368480859 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2156 2024-02-10 13:10:51.381 2023-06-14 15:19:41.524 DevonSchwartzXZR \N \N \N 109106655 5 2 \N \N 100 \N \N f f 0 \N 2084147202 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2195 2024-07-20 22:07:24.31 2023-06-21 05:26:42.231 KariMullinsBBU \N \N \N 48628479 5 2 \N \N 100 \N \N f f 0 \N 1682885950 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2203 2023-03-25 13:19:48.224 2022-12-13 09:46:06.822 AustinFitzpatrickW1O \N \N \N 236977191 5 2 \N \N 100 \N \N f f 0 \N 1412192369 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2293 2024-02-16 06:15:51.154 2024-10-09 00:36:41.662 SonyaKnapp2X0 \N \N \N 10487578 5 2 \N \N 100 \N \N f f 0 \N 783213100 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2309 2023-05-19 12:55:36.182 2023-11-26 05:56:21.388 NormaBlackwellVDX \N \N \N 55080082 5 2 \N \N 100 \N \N f f 0 \N 1689578792 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2513 2023-12-31 06:39:14.23 2022-11-21 15:09:42.01 KendraMcknightTYO \N \N \N 204034224 5 2 \N \N 100 \N \N f f 0 \N 2276866974 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2528 2024-08-05 12:53:45.878 2023-05-15 10:49:52.165 KatelynLittleTNS \N \N \N 6392897 5 2 \N \N 100 \N \N f f 0 \N 2311635712 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2652 2023-07-03 01:50:39.323 2024-01-21 18:02:15.935 JakeAyersD54 \N \N \N 138685742 5 2 \N \N 100 \N \N f f 0 \N 781484560 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2710 2023-07-26 15:42:33.64 2023-05-09 06:25:20.229 JulieGoodmanP2S \N \N \N 183384389 5 2 \N \N 100 \N \N f f 0 \N 606914038 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2722 2022-11-27 14:20:18.144 2023-12-19 11:40:25.163 FredVega2O4 \N \N \N 197635230 5 2 \N \N 100 \N \N f f 0 \N 1405248851 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2741 2023-08-24 01:03:10.702 2023-01-11 16:49:43.383 AndreOneillL8U \N \N \N 143281496 5 2 \N \N 100 \N \N f f 0 \N 315439186 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2748 2023-12-01 16:29:07.478 2023-04-01 15:55:21.584 DaltonWigginsU7T \N \N \N 3440336 5 2 \N \N 100 \N \N f f 0 \N 1534223137 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2773 2024-11-11 23:36:31.897 2023-07-20 01:27:28.749 BryanFord860 \N \N \N 94324383 5 2 \N \N 100 \N \N f f 0 \N 1010799724 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2780 2023-06-16 06:52:20.149 2023-02-21 23:24:06.799 EvanBush2S2 \N \N \N 150694048 5 2 \N \N 100 \N \N f f 0 \N 1222657453 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2832 2023-08-03 08:28:16.374 2024-10-11 22:22:47.272 MarcGarzaXV2 \N \N \N 145894985 5 2 \N \N 100 \N \N f f 0 \N 164051895 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3213 2023-07-20 02:39:03.5 2023-07-28 10:54:55.118 KariOsborneKI8 \N \N \N 62323374 5 2 \N \N 100 \N \N f f 0 \N 1089953431 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3304 2022-11-29 20:47:43.389 2024-10-02 15:25:10.966 AustinPerryCOS \N \N \N 87671880 5 2 \N \N 100 \N \N f f 0 \N 1974364576 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3342 2023-09-24 04:41:38.33 2024-11-24 11:28:43.443 SophiaAndrews562 \N \N \N 167783948 5 2 \N \N 100 \N \N f f 0 \N 1814335559 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3377 2023-04-20 19:44:30.938 2024-09-21 14:04:52.197 MatthewBarrettOU7 \N \N \N 51042642 5 2 \N \N 100 \N \N f f 0 \N 1166381808 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3409 2023-01-22 09:51:53.484 2022-11-09 17:49:12.926 MarthaFriedmanD0S \N \N \N 246308879 5 2 \N \N 100 \N \N f f 0 \N 2063199139 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3417 2023-10-11 14:24:20.94 2025-02-23 07:13:19.734 AlisonEdwardsKRN \N \N \N 194274590 5 2 \N \N 100 \N \N f f 0 \N 1595211608 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3439 2023-02-10 10:53:36.583 2025-01-13 10:52:46.54 DerrickBrockOI5 \N \N \N 107023776 5 2 \N \N 100 \N \N f f 0 \N 414648533 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4128 2024-03-29 07:45:47.191 2023-10-23 21:59:33.193 ColleenMaysE7J \N \N \N 84106576 5 2 \N \N 100 \N \N f f 0 \N 1061611187 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4167 2024-01-24 02:05:34.239 2024-04-14 08:16:45.548 KimberlyAndrewsS9H \N \N \N 76714352 5 2 \N \N 100 \N \N f f 0 \N 1996337549 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20817 2024-07-02 12:53:51.311 2023-09-10 06:16:36.673 BrandyHunterOQ1 \N \N \N 221090043 5 2 \N \N 100 \N \N f f 0 \N 1461344173 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4177 2023-05-27 09:53:42.912 2024-01-25 13:40:33.067 AlejandroBranchDH3 \N \N \N 165648615 5 2 \N \N 100 \N \N f f 0 \N 1193137393 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4225 2023-08-29 21:18:23.105 2023-08-12 13:47:45.521 AlyssaMacdonaldX1I \N \N \N 231293611 5 2 \N \N 100 \N \N f f 0 \N 1765414322 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4259 2023-07-07 13:19:52.796 2024-01-24 07:14:50.242 CarolineHerringVOI \N \N \N 240622331 5 2 \N \N 100 \N \N f f 0 \N 2343954616 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4292 2025-02-09 21:52:41.641 2024-02-17 11:23:03.116 StevenVelez61N \N \N \N 111978329 5 2 \N \N 100 \N \N f f 0 \N 1451446136 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4415 2024-12-29 14:41:59.129 2024-10-10 15:08:51.653 JacksonHaleP6Q \N \N \N 15356492 5 2 \N \N 100 \N \N f f 0 \N 2399565163 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4474 2023-10-09 22:19:55.985 2024-01-12 00:06:49.308 LindsayWilkinsonR17 \N \N \N 222680614 5 2 \N \N 100 \N \N f f 0 \N 1469258105 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4831 2024-05-21 09:40:25.229 2024-01-20 14:11:32.981 BrittneyEstradaYID \N \N \N 186431078 5 2 \N \N 100 \N \N f f 0 \N 552863017 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4973 2024-09-11 00:06:36.774 2024-01-04 08:02:55.242 MarcusTorres80X \N \N \N 111218396 5 2 \N \N 100 \N \N f f 0 \N 164848382 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4984 2023-02-10 23:17:42.044 2025-03-05 00:53:26.783 JakeOwensOFW \N \N \N 152609453 5 2 \N \N 100 \N \N f f 0 \N 410542074 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5758 2023-11-29 09:02:55.25 2023-10-07 23:20:58.38 KathyGilesSCO \N \N \N 26179023 5 2 \N \N 100 \N \N f f 0 \N 1953669807 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5775 2024-06-14 20:38:03.907 2024-10-13 05:07:48.983 ChristopherHodgeT7G \N \N \N 79248152 5 2 \N \N 100 \N \N f f 0 \N 296984856 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5825 2024-01-27 09:44:58.923 2025-01-01 06:21:11.228 AnaReed0UI \N \N \N 104142520 5 2 \N \N 100 \N \N f f 0 \N 1424764271 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5828 2024-02-22 06:32:15.741 2024-03-21 16:12:37.311 KarlDanielsHNE \N \N \N 51742519 5 2 \N \N 100 \N \N f f 0 \N 2348513576 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5852 2024-08-01 23:43:41.982 2023-09-09 23:44:50.161 AustinJefferson5GN \N \N \N 169916381 5 2 \N \N 100 \N \N f f 0 \N 1160087925 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5961 2024-01-09 16:17:02.285 2024-01-23 01:08:17.322 KristinaBond7FI \N \N \N 90460572 5 2 \N \N 100 \N \N f f 0 \N 1255948971 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6148 2024-02-19 02:01:44.19 2024-12-30 14:02:30.663 GilbertVargasFEX \N \N \N 207224456 5 2 \N \N 100 \N \N f f 0 \N 702625878 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6229 2024-03-30 02:35:17.183 2025-03-17 01:54:44.05 MarcoCarey3DZ \N \N \N 69639901 5 2 \N \N 100 \N \N f f 0 \N 975606969 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6419 2023-09-04 18:05:28.356 2023-12-23 05:15:35.709 EugeneDickersonDM1 \N \N \N 243335964 5 2 \N \N 100 \N \N f f 0 \N 1292242643 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6430 2023-08-01 10:20:24.577 2024-03-09 00:23:34.672 ColinMarquezH0E \N \N \N 243299985 5 2 \N \N 100 \N \N f f 0 \N 2418536402 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6537 2024-07-19 21:04:56.768 2024-02-07 23:00:46.807 DylanBlackwellWGO \N \N \N 87353573 5 2 \N \N 100 \N \N f f 0 \N 1690686654 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6578 2023-05-30 05:33:16.938 2023-07-23 23:20:55.182 JamesHubbardO6O \N \N \N 202707770 5 2 \N \N 100 \N \N f f 0 \N 667753580 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6602 2025-02-06 05:03:02.406 2023-11-23 01:08:31.845 DawnDuffyS7H \N \N \N 47731452 5 2 \N \N 100 \N \N f f 0 \N 282828326 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6717 2024-11-10 10:56:57.783 2023-11-05 12:32:39.534 ShawnWang4TB \N \N \N 247280763 5 2 \N \N 100 \N \N f f 0 \N 2223848050 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6777 2023-12-28 03:29:31.648 2023-06-27 16:04:38.557 DonnaGillespieMMN \N \N \N 185530236 5 2 \N \N 100 \N \N f f 0 \N 1984677477 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7376 2024-02-25 01:29:19.268 2024-10-26 18:49:13.134 JamesFreyGPK \N \N \N 232331413 5 2 \N \N 100 \N \N f f 0 \N 514463113 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7583 2024-09-30 23:42:39.42 2023-06-05 01:45:26.266 DamonMataJTA \N \N \N 56139491 5 2 \N \N 100 \N \N f f 0 \N 1841999540 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7667 2024-01-20 16:25:15.989 2024-09-07 14:24:17.756 JeromeRussellSZS \N \N \N 48666416 5 2 \N \N 100 \N \N f f 0 \N 378578682 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7682 2024-10-03 06:10:28.399 2024-05-03 04:41:07.458 ArianaPennington0BQ \N \N \N 44663336 5 2 \N \N 100 \N \N f f 0 \N 2127410904 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7773 2023-09-06 06:25:15.446 2024-04-28 13:54:59.141 BethKempAGX \N \N \N 232112084 5 2 \N \N 100 \N \N f f 0 \N 797677117 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7818 2025-01-22 13:31:37.526 2024-05-07 03:46:43.661 KristyHessQ13 \N \N \N 226772593 5 2 \N \N 100 \N \N f f 0 \N 973201785 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7891 2024-02-19 13:00:38.24 2023-12-01 07:59:47.952 RichardKellerT3F \N \N \N 31582776 5 2 \N \N 100 \N \N f f 0 \N 2026765641 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7960 2023-03-09 10:38:06.12 2023-05-16 18:36:43.775 ErnestGuerra8HT \N \N \N 61034504 5 2 \N \N 100 \N \N f f 0 \N 1131154052 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8176 2024-04-11 18:58:20.201 2024-02-20 23:27:09.384 MeghanHunter6PK \N \N \N 190742617 5 2 \N \N 100 \N \N f f 0 \N 432484052 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8245 2023-05-23 15:11:22.298 2024-05-26 01:08:00.214 BrianaCase7UP \N \N \N 121503616 5 2 \N \N 100 \N \N f f 0 \N 2377176566 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8284 2022-11-25 05:54:47.616 2023-06-30 06:15:41.249 EdgarRobinson0W3 \N \N \N 26798141 5 2 \N \N 100 \N \N f f 0 \N 1965917609 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8289 2023-01-16 02:24:30.435 2023-10-28 01:30:28.349 BrandyLeon434 \N \N \N 193153690 5 2 \N \N 100 \N \N f f 0 \N 1367408498 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8326 2023-02-06 04:20:42.211 2023-12-26 19:27:44.797 NoahSolomonBI7 \N \N \N 192292234 5 2 \N \N 100 \N \N f f 0 \N 1682619575 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8376 2023-08-27 14:27:42.222 2024-07-14 03:52:55.176 JesusAlvaradoGIT \N \N \N 54483268 5 2 \N \N 100 \N \N f f 0 \N 1553203254 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8400 2024-10-22 14:26:51.938 2023-10-29 04:04:26.511 AlfredPerez36D \N \N \N 138395302 5 2 \N \N 100 \N \N f f 0 \N 1649603695 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8423 2023-01-07 23:43:18.188 2022-12-12 22:22:07.889 DariusNunezAWV \N \N \N 37474461 5 2 \N \N 100 \N \N f f 0 \N 2095033483 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8508 2024-05-29 06:51:16.83 2023-01-25 10:42:59.564 HaydenOdomUAN \N \N \N 108799317 5 2 \N \N 100 \N \N f f 0 \N 2442294032 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8648 2025-03-17 13:03:54.979 2024-02-26 05:42:32.016 RickeyZimmermanUUS \N \N \N 73101637 5 2 \N \N 100 \N \N f f 0 \N 1315435839 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8713 2023-05-07 15:32:28.583 2025-02-13 00:48:14.061 DwayneHudsonBT1 \N \N \N 240392720 5 2 \N \N 100 \N \N f f 0 \N 2480126521 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8841 2024-06-16 23:10:12.534 2023-09-22 05:26:24.93 TiffanyMerrittTFN \N \N \N 202108530 5 2 \N \N 100 \N \N f f 0 \N 2139140793 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8954 2022-12-16 08:33:11.758 2023-12-14 20:55:17.295 JakeAndrade597 \N \N \N 198200734 5 2 \N \N 100 \N \N f f 0 \N 1912134098 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8998 2024-11-29 05:51:41.444 2023-01-18 11:37:26.229 JocelynHowardZDF \N \N \N 34577324 5 2 \N \N 100 \N \N f f 0 \N 989744006 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9026 2024-08-18 08:17:30.383 2024-06-23 09:51:29.181 BaileySanchez66F \N \N \N 7129061 5 2 \N \N 100 \N \N f f 0 \N 1058303262 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9167 2024-11-25 19:02:12.167 2025-01-05 01:21:18.725 GeraldPhamQNX \N \N \N 89631007 5 2 \N \N 100 \N \N f f 0 \N 1634873308 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9171 2023-04-15 22:24:38.96 2024-04-18 19:50:16.173 LonnieShepardTZS \N \N \N 248542197 5 2 \N \N 100 \N \N f f 0 \N 836186904 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9184 2023-02-12 18:46:39.079 2023-12-10 15:32:23.307 JoyByrdZKH \N \N \N 241899550 5 2 \N \N 100 \N \N f f 0 \N 757764167 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9242 2022-11-15 08:51:47.544 2025-01-11 18:46:19.462 PaulaPughYVJ \N \N \N 27568632 5 2 \N \N 100 \N \N f f 0 \N 1466536111 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9246 2023-10-16 10:25:34.108 2023-10-04 00:34:50.111 MakaylaFordGSY \N \N \N 74290777 5 2 \N \N 100 \N \N f f 0 \N 808790224 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9275 2025-01-04 22:46:56.915 2023-02-24 23:32:08.776 ShariBolton3E5 \N \N \N 188076355 5 2 \N \N 100 \N \N f f 0 \N 935293971 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9276 2023-02-20 14:21:59.748 2024-02-16 11:24:37.707 BradyMcconnellIR4 \N \N \N 162130716 5 2 \N \N 100 \N \N f f 0 \N 1365464149 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9833 2023-10-04 00:00:40.518 2022-11-13 09:11:05.047 TerrenceAguilarPY9 \N \N \N 207832244 5 2 \N \N 100 \N \N f f 0 \N 699520174 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10094 2023-07-29 23:40:43.561 2024-08-05 19:05:52.194 JeffRangelLK1 \N \N \N 121308338 5 2 \N \N 100 \N \N f f 0 \N 549230155 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10291 2023-04-10 13:13:53.19 2023-08-07 03:11:27.417 SamuelWeissHUB \N \N \N 78397422 5 2 \N \N 100 \N \N f f 0 \N 1986400682 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10484 2025-02-13 03:04:22.52 2025-01-15 05:08:40.715 KiaraBarr9YY \N \N \N 33474731 5 2 \N \N 100 \N \N f f 0 \N 843727778 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10493 2023-02-23 16:14:13.101 2024-11-19 19:47:06.216 CindyHillV7Y \N \N \N 133412643 5 2 \N \N 100 \N \N f f 0 \N 2016949152 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10549 2023-09-07 07:21:06.732 2023-07-20 23:58:04.557 AnthonyYork1EW \N \N \N 46099535 5 2 \N \N 100 \N \N f f 0 \N 1376329896 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10586 2024-06-30 14:09:42.866 2025-01-25 14:33:33.352 AnneGibsonLKB \N \N \N 31273244 5 2 \N \N 100 \N \N f f 0 \N 829338314 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10661 2025-03-16 08:23:07.295 2023-01-02 18:25:15.771 FrederickDavilaOKN \N \N \N 154593815 5 2 \N \N 100 \N \N f f 0 \N 113077727 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10693 2023-10-25 21:03:32.485 2024-11-18 07:56:48.174 CristinaRusso35M \N \N \N 126875003 5 2 \N \N 100 \N \N f f 0 \N 249307777 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10821 2024-12-28 12:13:45.024 2025-01-12 23:18:28.223 FernandoGates6T6 \N \N \N 175199626 5 2 \N \N 100 \N \N f f 0 \N 2127725741 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10862 2024-12-15 22:23:23.387 2023-11-12 08:13:10.146 DanielleJohns40L \N \N \N 116581249 5 2 \N \N 100 \N \N f f 0 \N 1766876082 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11158 2023-04-23 12:39:57.108 2023-08-22 18:36:36.292 XavierLambCS4 \N \N \N 20889892 5 2 \N \N 100 \N \N f f 0 \N 2073454620 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11165 2024-06-11 18:16:53.241 2023-02-01 00:48:05.293 ShaunBoyleMEF \N \N \N 24739155 5 2 \N \N 100 \N \N f f 0 \N 323345155 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11263 2024-08-31 20:41:38.267 2023-12-03 21:58:30.419 ThomasHayden87S \N \N \N 123615297 5 2 \N \N 100 \N \N f f 0 \N 1552788140 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11275 2023-12-08 07:11:17.89 2024-03-16 01:27:59.18 JimmyGeorgeRGX \N \N \N 114953544 5 2 \N \N 100 \N \N f f 0 \N 1127768066 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11298 2024-03-22 05:09:21.219 2023-02-15 16:00:23.856 MirandaLynchZEP \N \N \N 6585070 5 2 \N \N 100 \N \N f f 0 \N 2490924610 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11443 2024-02-17 20:45:04.867 2023-10-04 12:50:26.091 BiancaKeyDWW \N \N \N 72717024 5 2 \N \N 100 \N \N f f 0 \N 399836141 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11450 2023-03-19 18:41:43.62 2023-11-15 13:05:38.504 AngelicaMacdonaldEJU \N \N \N 202132259 5 2 \N \N 100 \N \N f f 0 \N 696448433 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11523 2023-03-06 17:25:05.638 2024-03-11 23:08:25.939 LuisHuerta82L \N \N \N 227498481 5 2 \N \N 100 \N \N f f 0 \N 1333495760 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11714 2024-09-30 04:35:15.916 2022-11-21 20:30:49.828 BradyMcgeeIIE \N \N \N 17374168 5 2 \N \N 100 \N \N f f 0 \N 1481691142 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11862 2025-02-06 13:20:33.071 2023-09-19 02:37:29.768 KyleGonzalez33G \N \N \N 45252435 5 2 \N \N 100 \N \N f f 0 \N 1332860739 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11866 2024-09-27 17:40:41.068 2023-07-04 12:32:25.628 TheresaEverett6I4 \N \N \N 155787319 5 2 \N \N 100 \N \N f f 0 \N 1853679163 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11897 2023-01-04 14:01:40.695 2023-01-09 20:48:32.483 JodyFordER0 \N \N \N 142244847 5 2 \N \N 100 \N \N f f 0 \N 2417815255 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11967 2022-12-06 12:24:34.07 2023-02-01 01:06:44.724 DarrellShieldsD8Q \N \N \N 167309830 5 2 \N \N 100 \N \N f f 0 \N 1751062374 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11992 2023-11-23 01:00:18.484 2023-11-20 02:01:14.594 JayWhitakerGN0 \N \N \N 76954724 5 2 \N \N 100 \N \N f f 0 \N 988788809 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12072 2024-08-30 12:39:33.963 2023-12-24 22:42:41.753 RavenCardenasTFC \N \N \N 50509556 5 2 \N \N 100 \N \N f f 0 \N 1273912377 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12102 2024-09-06 04:51:52.789 2023-02-22 18:26:00.988 JoannThorntonTU1 \N \N \N 130000334 5 2 \N \N 100 \N \N f f 0 \N 1443748754 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12188 2024-08-11 11:26:02.496 2024-06-18 04:20:39.687 PrestonVangF0F \N \N \N 128437783 5 2 \N \N 100 \N \N f f 0 \N 1259247367 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12261 2024-06-01 12:48:05.653 2023-11-18 01:11:25.521 DylanLeon7ML \N \N \N 199473417 5 2 \N \N 100 \N \N f f 0 \N 2392551563 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14910 2022-12-31 21:36:48.85 2024-02-22 20:47:06.966 AdrianHolderK0R \N \N \N 183118203 5 2 \N \N 100 \N \N f f 0 \N 1667204312 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12277 2024-08-23 04:18:47.455 2024-05-10 16:22:19.132 WhitneyBullock5HO \N \N \N 101792325 5 2 \N \N 100 \N \N f f 0 \N 1125227348 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12368 2023-04-02 11:53:14.493 2024-04-11 03:20:48.964 DanielMartinez2YE \N \N \N 55153804 5 2 \N \N 100 \N \N f f 0 \N 960162113 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12483 2024-01-07 19:06:10.665 2024-09-05 09:19:06.702 BlakeDanielsFFZ \N \N \N 14930677 5 2 \N \N 100 \N \N f f 0 \N 2386575521 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12562 2023-01-11 07:50:04.718 2022-12-24 14:21:57.311 GeneShelton2S8 \N \N \N 35638319 5 2 \N \N 100 \N \N f f 0 \N 1720579320 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12566 2023-06-07 06:15:43.434 2025-03-24 10:06:53.558 HollyVillegasOTH \N \N \N 226685487 5 2 \N \N 100 \N \N f f 0 \N 2232391565 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12736 2024-02-17 22:24:15.982 2023-06-02 14:03:01.151 MollyHoldenGTC \N \N \N 8250795 5 2 \N \N 100 \N \N f f 0 \N 1391347094 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12774 2022-11-12 04:02:11.029 2022-12-18 18:42:21.15 AlisonFlemingTBZ \N \N \N 76520448 5 2 \N \N 100 \N \N f f 0 \N 71624349 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20852 2024-06-16 01:28:20.538 2023-04-01 23:07:01.586 JacobMillerYIX \N \N \N 130121750 5 2 \N \N 100 \N \N f f 0 \N 136227251 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12779 2024-09-16 19:53:39.097 2023-03-18 15:09:18.031 JoanHudsonYK5 \N \N \N 71624494 5 2 \N \N 100 \N \N f f 0 \N 1969984663 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12921 2023-12-31 19:29:36.069 2023-01-21 14:35:24.764 ClaytonHaynes71R \N \N \N 47464603 5 2 \N \N 100 \N \N f f 0 \N 1072475086 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12951 2023-11-05 03:11:43.581 2024-03-09 16:35:35.913 WandaDennisMZ3 \N \N \N 212471872 5 2 \N \N 100 \N \N f f 0 \N 1896341547 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12976 2023-11-18 11:49:18.841 2024-12-12 11:18:51.663 LoganValenzuela4FN \N \N \N 44949555 5 2 \N \N 100 \N \N f f 0 \N 812432636 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13100 2023-02-07 10:15:52.664 2024-03-29 04:58:52.072 DylanBaileyC78 \N \N \N 233840043 5 2 \N \N 100 \N \N f f 0 \N 1532564190 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13133 2023-11-21 04:36:21.556 2023-06-10 16:18:32.778 AnneCarterUIM \N \N \N 206002205 5 2 \N \N 100 \N \N f f 0 \N 1198816541 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13143 2024-03-19 07:41:35.453 2025-03-12 18:11:21.986 RicardoMontgomeryDSB \N \N \N 129092318 5 2 \N \N 100 \N \N f f 0 \N 1776518349 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13162 2024-08-13 08:18:30.812 2024-11-01 06:56:48.314 MelodyFoley00M \N \N \N 18033620 5 2 \N \N 100 \N \N f f 0 \N 2134828849 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13216 2022-11-11 10:16:57.087 2023-03-08 07:51:48.156 RobynGraham2MM \N \N \N 112547291 5 2 \N \N 100 \N \N f f 0 \N 1147282746 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13378 2024-01-13 06:24:00.125 2023-06-04 15:19:25.722 TrevorOlson2D0 \N \N \N 200535504 5 2 \N \N 100 \N \N f f 0 \N 1763957071 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13406 2024-12-26 19:52:19.237 2024-08-16 03:00:08.791 CheyenneBauerMP4 \N \N \N 60664365 5 2 \N \N 100 \N \N f f 0 \N 1267876908 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13547 2023-09-16 00:20:05.743 2023-06-22 12:56:11.803 JanetHernandezSXR \N \N \N 134250007 5 2 \N \N 100 \N \N f f 0 \N 746211953 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13553 2023-03-31 01:52:49.14 2024-12-08 15:31:27.02 TerrenceKaiserGFU \N \N \N 13182873 5 2 \N \N 100 \N \N f f 0 \N 2437966171 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13759 2025-02-21 04:47:44.555 2025-02-22 19:11:40.11 CoryAtkinsonQBM \N \N \N 136140330 5 2 \N \N 100 \N \N f f 0 \N 908904272 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13767 2024-01-06 21:53:03.56 2024-07-30 11:09:22.628 BrandyCalderon2G0 \N \N \N 191107819 5 2 \N \N 100 \N \N f f 0 \N 2356763676 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13843 2023-04-02 01:40:31.603 2025-01-07 17:08:01.779 HayleyWagnerJO8 \N \N \N 162023974 5 2 \N \N 100 \N \N f f 0 \N 2176862423 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13903 2024-09-06 20:48:11.687 2024-07-19 23:53:30.357 JacksonZavalaL77 \N \N \N 77722813 5 2 \N \N 100 \N \N f f 0 \N 1589851401 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14015 2023-04-12 15:57:53.057 2023-07-12 16:21:47.427 JeffMullenJU3 \N \N \N 158512444 5 2 \N \N 100 \N \N f f 0 \N 2214313858 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14080 2024-09-29 18:02:25.009 2024-12-13 06:51:27.544 KylieOconnellS44 \N \N \N 243468914 5 2 \N \N 100 \N \N f f 0 \N 1017445895 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14152 2024-12-11 01:49:32.018 2023-05-15 09:06:21.76 CarlyHouseVEU \N \N \N 106718442 5 2 \N \N 100 \N \N f f 0 \N 123212903 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14213 2023-06-18 08:43:56.411 2024-06-10 05:20:04.437 KristopherNavarro2F2 \N \N \N 212995531 5 2 \N \N 100 \N \N f f 0 \N 550608817 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14258 2025-03-28 21:58:14.338 2023-02-15 06:14:59.88 VickiStanleyYOY \N \N \N 241530232 5 2 \N \N 100 \N \N f f 0 \N 1631715927 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 951 2024-04-05 23:12:05.858 2024-12-30 19:42:01.444 VictorOdom6KZ \N \N \N 104077863 5 2 \N \N 100 \N \N f f 0 \N 2017416386 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14376 2024-10-04 16:23:46.63 2025-01-04 23:20:16.299 SusanHendersonSYG \N \N \N 92152713 5 2 \N \N 100 \N \N f f 0 \N 2459560101 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14449 2023-10-06 13:08:00.316 2024-11-28 03:24:43.984 KimCardenasX6T \N \N \N 107805229 5 2 \N \N 100 \N \N f f 0 \N 378113903 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14465 2024-01-24 03:39:47.536 2024-01-10 01:17:54.363 ChrisMcclureZBE \N \N \N 44755 5 2 \N \N 100 \N \N f f 0 \N 2056716858 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14503 2024-03-12 17:51:38.614 2023-08-07 20:35:04.612 KentKellyOHE \N \N \N 31972209 5 2 \N \N 100 \N \N f f 0 \N 2008704534 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14515 2023-07-19 01:13:12.306 2023-01-07 16:33:25.742 KaitlinFrey3VC \N \N \N 212124603 5 2 \N \N 100 \N \N f f 0 \N 1664754080 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14552 2023-04-12 14:42:16.938 2023-02-03 22:51:50.327 GeoffreyFitzpatrickBCL \N \N \N 44202376 5 2 \N \N 100 \N \N f f 0 \N 1618624726 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14651 2025-01-23 01:31:57.15 2024-04-20 21:28:24.7 StaciePadilla5ND \N \N \N 46527239 5 2 \N \N 100 \N \N f f 0 \N 2369037145 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14663 2024-04-21 13:02:12.142 2024-07-23 07:49:16.331 PhilipBrennanPP4 \N \N \N 141965286 5 2 \N \N 100 \N \N f f 0 \N 880220772 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14731 2023-04-27 04:46:27.545 2023-03-18 04:50:20.048 PhilipBurtonBJZ \N \N \N 68698488 5 2 \N \N 100 \N \N f f 0 \N 1538972279 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14857 2022-12-10 08:19:37.442 2024-02-28 04:01:50.814 AmandaDominguezP1M \N \N \N 187321709 5 2 \N \N 100 \N \N f f 0 \N 2094050853 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15139 2023-07-07 10:01:49.427 2023-01-22 00:16:52.162 MichaelaHayesN2M \N \N \N 210781663 5 2 \N \N 100 \N \N f f 0 \N 1468324563 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15180 2023-12-10 01:35:27.558 2024-01-18 12:39:39.998 KatieBakerDRV \N \N \N 125312797 5 2 \N \N 100 \N \N f f 0 \N 2170812316 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15196 2024-04-08 11:36:48.376 2024-04-18 22:20:31.204 EmmaGalvanJ07 \N \N \N 245042467 5 2 \N \N 100 \N \N f f 0 \N 2040567140 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15226 2024-05-12 23:59:43.316 2022-11-17 05:55:20.149 DarylCardenas38V \N \N \N 45156761 5 2 \N \N 100 \N \N f f 0 \N 947284628 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15239 2025-03-08 07:13:11.523 2023-01-17 21:40:31.458 MaxTapiaLKQ \N \N \N 219367034 5 2 \N \N 100 \N \N f f 0 \N 1709229220 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15273 2022-12-16 05:52:47.028 2024-10-22 11:05:50.458 BonnieWoodMJH \N \N \N 98313025 5 2 \N \N 100 \N \N f f 0 \N 2411371245 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15409 2024-10-30 07:00:56.074 2024-03-14 10:46:16.916 StephenMathewsECJ \N \N \N 132257074 5 2 \N \N 100 \N \N f f 0 \N 2071963400 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15544 2024-02-02 08:56:01.407 2024-02-06 12:15:35.116 SoniaGoodZJ0 \N \N \N 107583166 5 2 \N \N 100 \N \N f f 0 \N 1253517224 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15549 2024-05-09 13:00:55.818 2024-11-06 05:48:22.891 TamiParkerPM8 \N \N \N 246853379 5 2 \N \N 100 \N \N f f 0 \N 537167757 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15556 2023-10-14 03:18:14.672 2023-06-08 23:09:53.094 KiaraJohnstonLCA \N \N \N 219898643 5 2 \N \N 100 \N \N f f 0 \N 2225855352 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15703 2023-10-29 07:08:32.988 2025-01-17 08:33:30.578 KelliBensonJ4D \N \N \N 1075336 5 2 \N \N 100 \N \N f f 0 \N 322911119 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15858 2023-12-24 20:59:58.475 2023-10-22 23:11:53.414 KarinaWarnerOI1 \N \N \N 180122798 5 2 \N \N 100 \N \N f f 0 \N 390270256 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16042 2023-12-10 20:39:59.168 2024-01-29 19:27:25.597 RandyWrightV1S \N \N \N 81547350 5 2 \N \N 100 \N \N f f 0 \N 1076984078 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16177 2024-04-27 14:46:04.523 2024-05-14 02:04:58.935 KristinaLaneBXR \N \N \N 50596728 5 2 \N \N 100 \N \N f f 0 \N 1337804307 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16282 2023-12-01 06:39:11.31 2023-07-29 08:17:21.129 TamiLeach4IQ \N \N \N 212119934 5 2 \N \N 100 \N \N f f 0 \N 1383229965 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16296 2025-03-08 03:52:17.554 2024-04-05 01:32:48.179 MatthewBrayXXQ \N \N \N 232519476 5 2 \N \N 100 \N \N f f 0 \N 790132828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16309 2023-08-02 03:27:16.573 2024-09-14 20:45:28.44 TinaTurnerJ6W \N \N \N 68233831 5 2 \N \N 100 \N \N f f 0 \N 731388655 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16442 2024-12-20 03:08:46.546 2024-07-20 02:43:04.898 ShaneGlass4T8 \N \N \N 35965319 5 2 \N \N 100 \N \N f f 0 \N 928806386 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16542 2023-09-16 08:19:30.923 2024-05-13 06:51:05.743 KristineKeithFSK \N \N \N 22984823 5 2 \N \N 100 \N \N f f 0 \N 180124953 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16633 2024-10-01 13:34:39.475 2024-01-23 10:43:29.227 CindySantanaQMF \N \N \N 156644793 5 2 \N \N 100 \N \N f f 0 \N 1484200772 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16660 2024-01-05 13:27:25.179 2024-08-16 20:41:32.528 GarrettBlackKOC \N \N \N 124631162 5 2 \N \N 100 \N \N f f 0 \N 1849872936 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16830 2024-06-02 07:02:58.44 2023-03-24 09:29:49.202 ClaireOwenDUB \N \N \N 190412197 5 2 \N \N 100 \N \N f f 0 \N 2262695205 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16839 2023-02-10 19:10:21.456 2024-01-25 04:58:13.241 GarrettMeadows66V \N \N \N 161872877 5 2 \N \N 100 \N \N f f 0 \N 1006637486 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16842 2023-08-14 11:57:19.86 2023-11-19 06:37:34.142 CarlyMaddox4LL \N \N \N 155201248 5 2 \N \N 100 \N \N f f 0 \N 1519085000 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16858 2022-12-12 17:59:36.58 2025-02-08 21:27:01.625 CarrieMendezKLR \N \N \N 37906138 5 2 \N \N 100 \N \N f f 0 \N 1052085542 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16970 2023-12-15 17:37:32.502 2025-01-24 01:49:24.178 SueLinRNS \N \N \N 196757889 5 2 \N \N 100 \N \N f f 0 \N 1299927481 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16998 2023-10-12 15:32:46.162 2023-11-26 05:59:42.216 FaithParrish26N \N \N \N 182581012 5 2 \N \N 100 \N \N f f 0 \N 1897205008 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17064 2024-07-25 07:13:19.935 2024-01-06 13:59:05.575 ErnestReed9W4 \N \N \N 6157043 5 2 \N \N 100 \N \N f f 0 \N 633843102 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17091 2024-06-02 02:21:32.782 2024-12-10 23:32:45.231 JimmyMooreZOO \N \N \N 35926297 5 2 \N \N 100 \N \N f f 0 \N 2226457177 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17103 2023-03-08 15:44:58.149 2024-11-13 20:57:27.269 DawnGilesGJP \N \N \N 81130647 5 2 \N \N 100 \N \N f f 0 \N 494026888 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17124 2023-04-10 07:13:23.462 2023-12-20 23:32:11.172 CraigLopezCD8 \N \N \N 71089949 5 2 \N \N 100 \N \N f f 0 \N 439427275 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17147 2024-05-05 15:42:03.399 2025-03-06 16:31:32.005 TylerLiuLJ9 \N \N \N 116711244 5 2 \N \N 100 \N \N f f 0 \N 2058451742 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17148 2023-01-03 17:59:01.31 2024-04-11 04:08:41.757 EdwinFrankFS8 \N \N \N 74914737 5 2 \N \N 100 \N \N f f 0 \N 1949450106 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17171 2023-06-12 04:21:36.587 2023-07-14 17:37:07.168 TaraHenderson8WR \N \N \N 41469396 5 2 \N \N 100 \N \N f f 0 \N 1270530084 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17209 2022-11-28 10:52:49.112 2023-06-03 12:54:03.444 SamuelPatterson6LV \N \N \N 170262236 5 2 \N \N 100 \N \N f f 0 \N 1426123718 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17275 2024-01-15 22:26:54.123 2023-08-16 16:26:22.54 JulianGrantK0I \N \N \N 63898892 5 2 \N \N 100 \N \N f f 0 \N 144986636 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17392 2023-12-08 10:33:01.568 2025-01-18 09:31:35.317 YeseniaHolder6H2 \N \N \N 136132813 5 2 \N \N 100 \N \N f f 0 \N 1619611364 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17535 2025-01-16 13:53:56.525 2024-06-09 07:30:56.861 SydneyGillNYK \N \N \N 98870439 5 2 \N \N 100 \N \N f f 0 \N 2091902387 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19581 2023-03-19 13:08:12.99 2022-12-05 11:36:41.051 JeffMeyers628 \N \N \N 48798484 5 2 \N \N 100 \N \N f f 0 \N 89608888 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20904 2022-12-02 01:45:48.505 2025-03-10 18:01:09.454 AlishaBaldwinMJF \N \N \N 160038307 5 2 \N \N 100 \N \N f f 0 \N 2289446336 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17713 2024-10-30 16:11:30.258 2023-04-12 19:50:41.575 DanHanson3LP \N \N \N 17619573 5 2 \N \N 100 \N \N f f 0 \N 2084297368 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17741 2024-09-24 22:10:34.827 2024-02-29 03:14:28.32 JavierGallagherBCY \N \N \N 183534671 5 2 \N \N 100 \N \N f f 0 \N 702733841 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17944 2023-09-05 09:58:05.967 2024-12-14 23:27:29.502 TriciaPatrickONZ \N \N \N 233531445 5 2 \N \N 100 \N \N f f 0 \N 1465132096 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18017 2025-02-16 03:29:30.635 2023-09-06 19:45:57.683 MiaFreyVPD \N \N \N 193092829 5 2 \N \N 100 \N \N f f 0 \N 1533811250 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18101 2024-03-21 04:32:48.863 2024-02-25 01:54:30.909 GregoryNicholsV7V \N \N \N 32053888 5 2 \N \N 100 \N \N f f 0 \N 186833828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18225 2023-07-07 20:21:17.661 2023-07-11 17:03:46.188 MelissaMolinaUQP \N \N \N 214668394 5 2 \N \N 100 \N \N f f 0 \N 2491630024 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18313 2023-11-11 12:02:07.418 2023-03-07 00:19:44.699 AlejandraCole65J \N \N \N 145357831 5 2 \N \N 100 \N \N f f 0 \N 1478810980 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18330 2024-11-04 09:25:04.192 2024-12-08 18:01:50.001 MorganSloan13M \N \N \N 55784874 5 2 \N \N 100 \N \N f f 0 \N 1061078993 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18351 2024-05-13 20:18:06.689 2024-04-21 15:00:30.635 SandraPattonF4B \N \N \N 139157825 5 2 \N \N 100 \N \N f f 0 \N 323439578 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18393 2022-11-22 10:08:11.518 2023-11-28 17:38:11.782 ShaunWarePML \N \N \N 137819914 5 2 \N \N 100 \N \N f f 0 \N 487192465 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18402 2023-02-05 23:06:39.664 2024-08-16 00:03:33.246 MariaLucas640 \N \N \N 76797284 5 2 \N \N 100 \N \N f f 0 \N 3668012 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18409 2023-02-25 13:11:51.082 2025-03-10 11:35:21.103 AlbertByrdE6B \N \N \N 227361625 5 2 \N \N 100 \N \N f f 0 \N 1220961663 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18468 2025-01-04 03:02:46.783 2023-10-16 07:28:24.38 LindsayChanO3V \N \N \N 158164499 5 2 \N \N 100 \N \N f f 0 \N 1188655348 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18528 2024-05-07 04:10:42.782 2025-01-11 11:27:08.267 SophiaBonilla70X \N \N \N 166014762 5 2 \N \N 100 \N \N f f 0 \N 2058957536 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18529 2024-10-22 05:53:20.394 2023-04-03 04:35:58.908 CathyAyalaYK1 \N \N \N 75817573 5 2 \N \N 100 \N \N f f 0 \N 2182751129 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18618 2023-02-26 05:50:27.298 2024-06-29 22:01:01.915 IsaiahMurillo4YK \N \N \N 74097470 5 2 \N \N 100 \N \N f f 0 \N 1634593185 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18630 2023-06-02 18:24:45.454 2023-02-06 02:53:52.149 BaileyWoodPJH \N \N \N 120701564 5 2 \N \N 100 \N \N f f 0 \N 772477065 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18735 2023-03-09 20:12:37.342 2025-02-14 20:39:42.164 BradleyHornePSP \N \N \N 13205298 5 2 \N \N 100 \N \N f f 0 \N 1591367459 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18772 2023-04-08 15:51:16.985 2024-10-24 13:46:42.471 LindaMiller26J \N \N \N 125420761 5 2 \N \N 100 \N \N f f 0 \N 363584978 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18865 2025-01-31 19:25:48.535 2023-12-27 13:41:21.692 BenjaminStewartMDE \N \N \N 105966907 5 2 \N \N 100 \N \N f f 0 \N 588381375 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18923 2024-04-19 15:26:22.083 2024-11-14 15:38:09.02 YvonneWilliamsonPEK \N \N \N 221243038 5 2 \N \N 100 \N \N f f 0 \N 246004640 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18956 2024-10-26 19:18:15.16 2022-12-25 06:58:56.661 MasonGillUZ6 \N \N \N 40650725 5 2 \N \N 100 \N \N f f 0 \N 1690031907 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19005 2024-12-29 14:46:57.68 2023-06-01 01:32:37.992 PennyMilesD8H \N \N \N 166320666 5 2 \N \N 100 \N \N f f 0 \N 766216521 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19117 2025-03-14 05:29:50.509 2024-08-12 13:03:27.644 BillHerringEYH \N \N \N 162986652 5 2 \N \N 100 \N \N f f 0 \N 1172837627 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19121 2022-11-28 22:59:04.051 2023-07-22 00:11:27.064 AnaCaseyZ03 \N \N \N 242959342 5 2 \N \N 100 \N \N f f 0 \N 175863593 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19189 2023-08-28 08:07:21.132 2023-10-01 08:53:47.563 ThomasAcosta6K6 \N \N \N 188466191 5 2 \N \N 100 \N \N f f 0 \N 699280709 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19198 2024-08-19 02:19:38 2024-07-19 11:04:38.598 EvanArmstrongE7E \N \N \N 236898155 5 2 \N \N 100 \N \N f f 0 \N 193625177 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19199 2023-04-06 15:46:23.223 2024-05-21 10:30:51.742 BradyAguirre1IH \N \N \N 64356844 5 2 \N \N 100 \N \N f f 0 \N 50439700 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19263 2024-10-25 08:17:12.139 2023-11-22 09:02:00.25 CalvinPhillipsQN7 \N \N \N 221499738 5 2 \N \N 100 \N \N f f 0 \N 1808104299 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19303 2023-11-21 06:34:40.338 2025-01-30 01:18:31.284 RitaStevensonNYA \N \N \N 104540127 5 2 \N \N 100 \N \N f f 0 \N 564269076 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19333 2024-02-26 21:49:24.602 2023-10-18 09:23:49.162 ClaytonJenningsKIZ \N \N \N 224019569 5 2 \N \N 100 \N \N f f 0 \N 456966807 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19346 2023-06-18 20:14:03.397 2023-12-20 19:54:56.019 KirstenNovakKGX \N \N \N 160860633 5 2 \N \N 100 \N \N f f 0 \N 1738809750 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19394 2023-03-15 04:49:37.551 2024-08-19 17:27:50.637 AllisonBentonFQ5 \N \N \N 110545895 5 2 \N \N 100 \N \N f f 0 \N 2086625987 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19484 2025-01-24 09:05:51.74 2023-02-18 11:42:40.309 ChaseColemanHFU \N \N \N 124538862 5 2 \N \N 100 \N \N f f 0 \N 2414839677 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19488 2025-02-26 08:47:18.107 2025-03-24 06:03:35.223 JermaineDonaldsonSFB \N \N \N 8047011 5 2 \N \N 100 \N \N f f 0 \N 712875216 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19512 2024-02-21 21:58:05.937 2024-10-14 17:43:05.23 LeahGarner424 \N \N \N 238185400 5 2 \N \N 100 \N \N f f 0 \N 1024388791 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19576 2023-09-13 23:19:12.717 2024-07-18 04:43:18.519 HaroldShepardO1C \N \N \N 159665094 5 2 \N \N 100 \N \N f f 0 \N 667938697 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19735 2024-01-27 23:29:08.742 2023-12-19 09:39:47.024 FrankHarrisonNTJ \N \N \N 174113825 5 2 \N \N 100 \N \N f f 0 \N 1191456400 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19806 2024-05-06 02:39:09.592 2023-03-02 12:51:40.192 DaveCervantesQ6D \N \N \N 83833280 5 2 \N \N 100 \N \N f f 0 \N 52596125 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19821 2024-11-15 14:08:02.054 2023-07-18 15:36:49.078 WayneStephensNZF \N \N \N 223883273 5 2 \N \N 100 \N \N f f 0 \N 1979564175 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19826 2024-05-03 22:33:10.8 2023-12-22 16:49:05.486 YvonneBoothMMO \N \N \N 240707446 5 2 \N \N 100 \N \N f f 0 \N 463248246 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19854 2023-03-24 22:36:52.484 2023-09-11 15:43:44.299 BiancaHigginsSFC \N \N \N 174530332 5 2 \N \N 100 \N \N f f 0 \N 1796117008 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19906 2024-10-15 15:45:47.373 2024-02-03 07:19:39.976 ShellyBenjamin4RH \N \N \N 151264908 5 2 \N \N 100 \N \N f f 0 \N 2390987664 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19966 2023-11-15 17:08:08.135 2024-07-29 22:41:44.423 CristinaHicksWK3 \N \N \N 162740363 5 2 \N \N 100 \N \N f f 0 \N 503391176 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19996 2023-03-31 06:42:31.183 2023-05-26 03:36:15.396 TerrenceCain7XE \N \N \N 170548746 5 2 \N \N 100 \N \N f f 0 \N 1231814960 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20861 2024-05-18 18:19:50.451 2023-09-26 14:48:33.763 IsaiahEllis4P7 \N \N \N 96416626 5 2 \N \N 100 \N \N f f 0 \N 1054705604 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20099 2023-01-28 20:37:47.456 2023-01-21 17:28:31.548 AllenMendozaWB2 \N \N \N 229137394 5 2 \N \N 100 \N \N f f 0 \N 1327478104 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20120 2024-08-27 19:56:37.635 2024-04-14 00:03:45.156 DorisLutzW28 \N \N \N 79421290 5 2 \N \N 100 \N \N f f 0 \N 256274151 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20157 2024-02-03 09:09:07.511 2023-04-15 16:23:42.695 KimPaulJVX \N \N \N 96817074 5 2 \N \N 100 \N \N f f 0 \N 1473030150 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20190 2024-10-11 10:24:06.628 2024-08-23 18:14:58.368 JerryMaddoxELV \N \N \N 172859521 5 2 \N \N 100 \N \N f f 0 \N 980169666 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20222 2025-03-17 15:52:25.685 2025-02-14 16:06:23.727 EileenVillaV73 \N \N \N 240603514 5 2 \N \N 100 \N \N f f 0 \N 1802929960 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20225 2025-01-25 15:47:50.082 2024-02-25 18:23:26.464 CalebBentleyCRX \N \N \N 64545310 5 2 \N \N 100 \N \N f f 0 \N 1853413919 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20275 2024-06-12 16:33:51.198 2024-09-09 06:33:45.415 MarioLowePUQ \N \N \N 172983418 5 2 \N \N 100 \N \N f f 0 \N 1820954658 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20280 2023-06-01 01:53:15.49 2023-01-06 12:39:10.524 JeffreyCalderonJEF \N \N \N 121777741 5 2 \N \N 100 \N \N f f 0 \N 1392013828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20291 2025-01-03 12:33:09.838 2024-07-03 09:37:06.671 BiancaBentleySIF \N \N \N 30256817 5 2 \N \N 100 \N \N f f 0 \N 2061413281 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20294 2024-04-18 17:43:41.031 2024-06-08 14:21:20.235 AprilBondLPA \N \N \N 109743367 5 2 \N \N 100 \N \N f f 0 \N 9486909 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20310 2024-06-19 22:18:46.492 2024-11-16 04:37:44.051 ReginaFrancisRN4 \N \N \N 186239768 5 2 \N \N 100 \N \N f f 0 \N 1958529636 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20353 2024-07-24 11:44:44.952 2023-02-03 22:50:28.817 KirstenHill9FR \N \N \N 193388682 5 2 \N \N 100 \N \N f f 0 \N 2364721835 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20381 2022-11-16 23:39:38.736 2022-11-25 20:27:12.096 NicolasChaneyUX5 \N \N \N 16269005 5 2 \N \N 100 \N \N f f 0 \N 1133435495 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20481 2023-03-27 11:00:01.39 2022-12-15 05:22:19.996 DanielMayo868 \N \N \N 151407172 5 2 \N \N 100 \N \N f f 0 \N 1425197758 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20509 2024-02-18 03:16:47.125 2024-08-17 19:11:12.259 DrewSchultzJR8 \N \N \N 174533878 5 2 \N \N 100 \N \N f f 0 \N 2566830710 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20586 2023-09-26 04:11:49.271 2024-06-24 23:09:51.518 ChristianChapmanVQP \N \N \N 137914381 5 2 \N \N 100 \N \N f f 0 \N 1790139492 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20596 2024-03-18 21:13:07.146 2024-01-04 14:24:10.086 KeithArmstrongZDP \N \N \N 63466657 5 2 \N \N 100 \N \N f f 0 \N 883800608 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20597 2023-03-31 23:35:09.789 2024-01-13 12:58:47.915 JayTaylor4N4 \N \N \N 142668523 5 2 \N \N 100 \N \N f f 0 \N 645241846 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20669 2024-05-29 13:06:45.669 2023-10-03 21:21:34.363 TrevorRiosFKS \N \N \N 79135611 5 2 \N \N 100 \N \N f f 0 \N 95415787 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20691 2024-06-04 15:33:24.063 2022-11-27 07:33:53.065 JerryMartin4QI \N \N \N 125044717 5 2 \N \N 100 \N \N f f 0 \N 1614693643 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20756 2025-03-29 20:59:41.857 2024-05-08 11:17:50.333 FernandoOlsenQ36 \N \N \N 248976984 5 2 \N \N 100 \N \N f f 0 \N 2503157321 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20757 2023-04-07 17:06:07.433 2023-08-26 00:02:02.283 RachaelSimmonsM45 \N \N \N 229662607 5 2 \N \N 100 \N \N f f 0 \N 1290971238 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20781 2024-03-22 23:12:52.158 2024-02-10 18:18:21.802 GuyDavenportI64 \N \N \N 84490617 5 2 \N \N 100 \N \N f f 0 \N 936588488 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20788 2024-08-05 03:18:39.9 2024-04-17 16:52:24.782 AdrianaBlackZWE \N \N \N 172003832 5 2 \N \N 100 \N \N f f 0 \N 2477627654 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20906 2023-09-02 13:16:42.741 2024-11-25 07:22:22.414 NeilMarquezYVQ \N \N \N 232361514 5 2 \N \N 100 \N \N f f 0 \N 1625998020 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20969 2023-07-27 15:53:29.796 2023-09-22 20:05:56.949 EricaKaiserY4L \N \N \N 56891960 5 2 \N \N 100 \N \N f f 0 \N 890039689 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21026 2023-09-28 17:45:51.201 2024-12-18 00:14:36.37 ParkerDunnIXS \N \N \N 147193307 5 2 \N \N 100 \N \N f f 0 \N 1071076082 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21033 2022-11-26 07:56:25.298 2024-07-06 12:21:23.465 RobinHayden41S \N \N \N 185283699 5 2 \N \N 100 \N \N f f 0 \N 12413848 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21036 2022-11-13 17:20:21.475 2023-03-08 18:32:52.173 RhondaGallowayLDD \N \N \N 221052681 5 2 \N \N 100 \N \N f f 0 \N 1888521020 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21040 2023-08-28 05:37:49.362 2024-11-21 06:06:12.291 SergioMassey249 \N \N \N 97261371 5 2 \N \N 100 \N \N f f 0 \N 1562883735 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21083 2023-04-09 23:50:13.685 2024-08-03 16:07:40.74 BiancaAyersDUM \N \N \N 243418430 5 2 \N \N 100 \N \N f f 0 \N 1269916503 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21091 2025-01-01 03:27:00.811 2024-11-16 00:32:04.111 KendraLozano74P \N \N \N 235475790 5 2 \N \N 100 \N \N f f 0 \N 1406861355 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21166 2023-04-29 21:02:21.866 2023-11-22 23:21:03.338 JeremiahHendricksXJJ \N \N \N 175183293 5 2 \N \N 100 \N \N f f 0 \N 1274949684 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21233 2024-04-16 06:13:34.384 2024-09-25 05:43:39.463 TyroneByrd5OT \N \N \N 141782934 5 2 \N \N 100 \N \N f f 0 \N 65690638 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21238 2024-07-30 17:11:01.687 2024-10-14 18:38:32.418 ShellyWareVCJ \N \N \N 110471986 5 2 \N \N 100 \N \N f f 0 \N 435767158 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21239 2023-09-22 11:54:36.888 2024-10-20 16:56:11.564 MauriceWintersU4Z \N \N \N 144839895 5 2 \N \N 100 \N \N f f 0 \N 795894119 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21242 2023-11-01 22:09:08.53 2024-05-28 21:09:51.793 KennethRiosBCC \N \N \N 44265145 5 2 \N \N 100 \N \N f f 0 \N 1563714781 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21254 2025-02-22 10:59:12.418 2023-10-30 10:37:51.199 TonyaBrockKR1 \N \N \N 159056904 5 2 \N \N 100 \N \N f f 0 \N 2271031812 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21275 2024-08-22 21:22:51.034 2024-12-15 08:52:32.671 DestinyBradfordQ7O \N \N \N 47424801 5 2 \N \N 100 \N \N f f 0 \N 1617727751 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21320 2023-01-25 03:23:24.512 2024-12-04 20:52:05.049 MariaBowenM0H \N \N \N 104569296 5 2 \N \N 100 \N \N f f 0 \N 1146635657 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21334 2024-07-10 17:23:00.625 2023-08-07 02:30:48.519 ConnorWoodardZPN \N \N \N 82708631 5 2 \N \N 100 \N \N f f 0 \N 2312095316 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21349 2025-03-04 21:32:49.029 2024-06-25 21:44:52.452 DeanFaulkner1EY \N \N \N 102711489 5 2 \N \N 100 \N \N f f 0 \N 881837817 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21357 2024-05-26 11:32:12.487 2025-01-27 01:00:13.432 RebekahArmstrongYH2 \N \N \N 245664752 5 2 \N \N 100 \N \N f f 0 \N 783460070 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21365 2025-02-06 03:20:11.924 2023-02-19 19:47:10.593 RobertaWebsterDWG \N \N \N 115433110 5 2 \N \N 100 \N \N f f 0 \N 428917305 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21391 2024-12-21 04:26:19.566 2023-03-17 16:02:49.307 KaitlynEatonMQV \N \N \N 127471309 5 2 \N \N 100 \N \N f f 0 \N 641589882 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21393 2022-12-10 23:43:31.823 2023-04-30 17:13:18.042 NatashaMacdonaldS8J \N \N \N 215955937 5 2 \N \N 100 \N \N f f 0 \N 1900759112 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21400 2024-05-25 20:04:21.35 2023-06-17 11:22:37.633 JoshuaDanielsD8I \N \N \N 7576659 5 2 \N \N 100 \N \N f f 0 \N 1116725253 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21405 2023-02-27 10:09:00.34 2023-04-01 16:52:26.359 PaulaFoley6VD \N \N \N 248310004 5 2 \N \N 100 \N \N f f 0 \N 1208409012 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21406 2022-11-29 03:14:24.139 2024-10-25 17:31:44.87 LeahMccann56O \N \N \N 221615476 5 2 \N \N 100 \N \N f f 0 \N 1804928862 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21412 2024-01-11 17:42:04.685 2024-04-30 20:58:58.555 AutumnMercerN78 \N \N \N 121822562 5 2 \N \N 100 \N \N f f 0 \N 1552211982 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21421 2024-08-07 03:46:42.041 2024-02-25 21:36:40.252 LindaSolisZKH \N \N \N 111104868 5 2 \N \N 100 \N \N f f 0 \N 1143700473 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21424 2024-12-03 12:48:45.263 2023-01-10 20:24:32.408 KarinaCopeland5GB \N \N \N 204346951 5 2 \N \N 100 \N \N f f 0 \N 502300081 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21427 2024-08-19 01:54:23.234 2022-12-18 21:57:15.933 DamonPark4FS \N \N \N 237727871 5 2 \N \N 100 \N \N f f 0 \N 723786346 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21430 2024-04-11 07:27:00.433 2023-03-14 06:38:09.745 JackiePenaLZN \N \N \N 237294741 5 2 \N \N 100 \N \N f f 0 \N 1818328816 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21480 2024-12-31 17:08:36.937 2023-10-29 14:56:28.796 GabriellaRangelVED \N \N \N 172539660 5 2 \N \N 100 \N \N f f 0 \N 679202534 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21485 2023-09-26 17:32:17.517 2023-08-04 00:28:10.114 LaurenMccann470 \N \N \N 54755755 5 2 \N \N 100 \N \N f f 0 \N 27228311 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21506 2023-09-29 05:23:00.404 2023-08-25 08:48:07.769 NicolasFowler8PR \N \N \N 236331794 5 2 \N \N 100 \N \N f f 0 \N 2188479798 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21514 2024-01-24 13:49:33.112 2024-07-07 07:53:31.153 DiamondJuarez40M \N \N \N 91562850 5 2 \N \N 100 \N \N f f 0 \N 2277596951 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21571 2024-09-22 05:43:42.339 2023-09-18 07:31:31.625 FrancesZamoraFSB \N \N \N 94240232 5 2 \N \N 100 \N \N f f 0 \N 1410196134 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21603 2025-03-07 23:14:36.819 2023-02-05 21:23:00.526 DawnMurrayZTA \N \N \N 201804482 5 2 \N \N 100 \N \N f f 0 \N 1750653988 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21631 2023-01-15 19:26:38.479 2025-01-11 22:19:31.103 DestinyJoyce7N3 \N \N \N 216056414 5 2 \N \N 100 \N \N f f 0 \N 2059456708 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21639 2024-04-14 13:09:32.907 2024-03-01 23:37:59.64 VeronicaFordOVE \N \N \N 13696049 5 2 \N \N 100 \N \N f f 0 \N 2047802409 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21683 2023-02-18 10:40:45.804 2024-08-31 14:46:32.101 StanleyFerrell3SZ \N \N \N 133750211 5 2 \N \N 100 \N \N f f 0 \N 1272222442 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21685 2023-07-10 12:10:14.67 2024-07-30 23:33:50.558 JulieHerringP8M \N \N \N 69612211 5 2 \N \N 100 \N \N f f 0 \N 156913627 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1354 2023-05-10 05:18:11.927 2024-08-17 21:45:36.526 ColtonWareNMM \N \N \N 113001461 5 2 \N \N 100 \N \N f f 0 \N 2300088309 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2176 2024-12-08 17:31:48.047 2023-10-08 07:18:50.953 SherryVance4GC \N \N \N 37574021 5 2 \N \N 100 \N \N f f 0 \N 1513231183 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3360 2025-01-19 11:38:24.573 2023-09-05 23:10:55.92 AnnCox6Q7 \N \N \N 121621712 5 2 \N \N 100 \N \N f f 0 \N 692108463 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5069 2023-09-12 07:39:12.704 2023-01-10 16:56:05.845 BrendanBarryOYS \N \N \N 88201703 5 2 \N \N 100 \N \N f f 0 \N 1072691805 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7966 2023-10-31 08:03:46.228 2024-06-26 11:54:55.411 DorothyMorrowXV5 \N \N \N 7306906 5 2 \N \N 100 \N \N f f 0 \N 1330903661 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8287 2024-04-05 23:19:18.137 2022-12-01 10:18:27.39 ElaineKaiserORR \N \N \N 225219530 5 2 \N \N 100 \N \N f f 0 \N 2435021267 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8505 2024-12-27 23:26:33.243 2025-03-17 00:09:39.606 BridgetShea5CS \N \N \N 40125342 5 2 \N \N 100 \N \N f f 0 \N 1301760754 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8664 2024-08-11 05:58:34.325 2023-09-03 13:17:56.617 RickyGambleUG2 \N \N \N 219455496 5 2 \N \N 100 \N \N f f 0 \N 1724421585 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8926 2023-04-26 16:09:35.164 2024-12-24 17:32:08.737 ClintonBartlettYCB \N \N \N 225899469 5 2 \N \N 100 \N \N f f 0 \N 1640901961 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9036 2024-04-27 03:47:14.988 2025-02-24 10:22:29.215 AlvinPachecoKAZ \N \N \N 212177015 5 2 \N \N 100 \N \N f f 0 \N 2010927859 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10981 2024-01-25 11:08:59.545 2023-08-26 12:44:35.568 MitchellSpence6KC \N \N \N 95346607 5 2 \N \N 100 \N \N f f 0 \N 193110463 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10986 2025-03-25 13:06:11.681 2023-06-25 21:30:27.917 CarolineWeissGS1 \N \N \N 31630420 5 2 \N \N 100 \N \N f f 0 \N 1813087630 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11515 2023-01-23 21:12:41.841 2023-09-26 02:55:11.558 MicheleByrd8S1 \N \N \N 177597464 5 2 \N \N 100 \N \N f f 0 \N 457528603 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11590 2024-07-27 15:56:29.012 2023-11-11 14:34:18.828 KayleeDukeVP3 \N \N \N 87626269 5 2 \N \N 100 \N \N f f 0 \N 77859940 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11648 2024-07-11 01:37:07.365 2025-03-14 21:21:10.46 MalloryBowenEJR \N \N \N 236240851 5 2 \N \N 100 \N \N f f 0 \N 2053798566 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11678 2023-09-13 15:45:43.973 2023-06-01 17:33:37.36 RickeyGrimes8PV \N \N \N 52766367 5 2 \N \N 100 \N \N f f 0 \N 1845996399 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11716 2024-08-29 14:27:15.357 2024-02-25 02:00:48.858 CatherineHobbsIOJ \N \N \N 165633086 5 2 \N \N 100 \N \N f f 0 \N 1682199016 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11750 2023-02-25 20:34:21.001 2023-01-29 12:12:24.055 JulianWu2UH \N \N \N 40071505 5 2 \N \N 100 \N \N f f 0 \N 920491681 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11789 2023-05-03 09:13:31.5 2024-11-30 02:29:09.539 RobertaChavezKDY \N \N \N 164043379 5 2 \N \N 100 \N \N f f 0 \N 863519149 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11798 2023-02-18 03:26:37.558 2023-09-22 03:56:04.747 StanleyNealYD0 \N \N \N 198998910 5 2 \N \N 100 \N \N f f 0 \N 769262268 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11819 2022-11-10 17:39:42.237 2024-07-28 12:03:05.327 BarbaraHenryJ6R \N \N \N 44935532 5 2 \N \N 100 \N \N f f 0 \N 1943054001 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11829 2024-03-07 14:35:39.988 2023-06-07 13:23:23.563 CherylSnyderECP \N \N \N 12739018 5 2 \N \N 100 \N \N f f 0 \N 2024990879 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13878 2023-05-17 14:16:00.454 2023-09-22 06:45:55.033 LawrenceGordon1O0 \N \N \N 238111671 5 2 \N \N 100 \N \N f f 0 \N 1097715689 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16769 2024-10-13 23:32:56.03 2023-04-09 04:57:20.059 PamelaGlassG2K \N \N \N 225936891 5 2 \N \N 100 \N \N f f 0 \N 760030410 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6137 2023-02-10 23:50:46.588 2025-02-05 00:17:34.23 LaurenMckeeFEJ \N \N \N 40845116 5 2 \N \N 100 \N \N f f 0 \N 2187634445 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1039 2024-07-15 00:21:17.791 2023-01-01 12:28:04.127 JaclynGonzalezH4R \N \N \N 143413995 5 2 \N \N 100 \N \N f f 0 \N 1941413839 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2543 2023-05-01 03:55:21.006 2023-05-25 13:00:53.002 CodyNewtonROO \N \N \N 172842360 5 2 \N \N 100 \N \N f f 0 \N 1636049219 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4035 2023-12-20 21:37:01.409 2023-10-10 06:10:02.816 ErnestDelacruzQCI \N \N \N 185964040 5 2 \N \N 100 \N \N f f 0 \N 323663164 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4062 2024-02-05 13:45:50.502 2024-04-01 15:01:03.675 NathanCareyK5L \N \N \N 208430805 5 2 \N \N 100 \N \N f f 0 \N 1229031595 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17817 2025-03-11 22:08:02.335 2022-12-20 02:35:14.98 DarleneFloyd6I3 \N \N \N 135267289 5 2 \N \N 100 \N \N f f 0 \N 35695828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5806 2024-03-08 15:48:35.175 2023-03-16 16:16:26.874 CarmenNorman557 \N \N \N 169210396 5 2 \N \N 100 \N \N f f 0 \N 1357972718 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3504 2025-01-26 22:02:21.316 2022-12-22 13:13:01.119 AnaStevenson5ON \N \N \N 181550209 5 2 \N \N 100 \N \N f f 0 \N 2059707795 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 669 2024-03-13 19:17:31.549 2025-01-13 22:13:42.272 KevinFrederickTLH \N \N \N 23601375 5 2 \N \N 100 \N \N f f 0 \N 994076587 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2529 2024-01-25 20:33:15.291 2022-12-20 05:08:21.412 DavidWallUGP \N \N \N 150344015 5 2 \N \N 100 \N \N f f 0 \N 793380402 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2042 2022-11-26 00:14:58.348 2023-03-14 14:13:25.492 DiamondHarringtonMFD \N \N \N 76145686 5 2 \N \N 100 \N \N f f 0 \N 886706166 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4043 2024-04-27 06:01:32.238 2025-01-10 06:09:03.989 WesleyHoustonUR5 \N \N \N 248296492 5 2 \N \N 100 \N \N f f 0 \N 926762004 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18321 2023-04-12 07:49:54.994 2023-04-18 19:37:36.272 WalterSpearsWXW \N \N \N 97249954 5 2 \N \N 100 \N \N f f 0 \N 2461479206 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 963 2023-01-15 05:12:31.423 2024-02-22 16:14:51.345 AlisonChaseQ5I \N \N \N 33298473 5 2 \N \N 100 \N \N f f 0 \N 599925627 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1468 2025-02-25 04:53:17.841 2023-07-08 14:31:51.73 SonyaCharlesQGH \N \N \N 97516287 5 2 \N \N 100 \N \N f f 0 \N 2067695024 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6191 2024-03-14 07:03:36.842 2023-02-22 01:21:23.798 DarrylMorgan95J \N \N \N 135548052 5 2 \N \N 100 \N \N f f 0 \N 2340776588 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 889 2023-03-11 03:01:03.879 2024-05-09 19:33:44.215 BrentKingQXQ \N \N \N 43345507 5 2 \N \N 100 \N \N f f 0 \N 781702707 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3400 2023-08-16 04:49:07.168 2024-07-06 01:23:03.218 RickRobbinsGW6 \N \N \N 189073706 5 2 \N \N 100 \N \N f f 0 \N 257992557 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2711 2023-01-29 15:14:32.833 2024-05-15 20:04:48.026 NoahOnealH5F \N \N \N 188900857 5 2 \N \N 100 \N \N f f 0 \N 2326413327 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3979 2023-02-19 15:08:21.511 2023-03-25 08:35:42.014 DanielleBartlettFJU \N \N \N 87085592 5 2 \N \N 100 \N \N f f 0 \N 262950633 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2963 2023-12-22 21:13:40.309 2024-05-19 17:44:23.365 CarlosRosarioWEQ \N \N \N 190732106 5 2 \N \N 100 \N \N f f 0 \N 2027067858 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2204 2024-03-10 02:07:33.42 2024-06-15 00:15:24.334 MarcoShepardG2S \N \N \N 26783631 5 2 \N \N 100 \N \N f f 0 \N 550848741 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18608 2024-12-30 22:59:16.515 2025-02-09 07:04:51.316 SherylTerry895 \N \N \N 125303087 5 2 \N \N 100 \N \N f f 0 \N 379390657 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5520 2024-11-28 21:29:11.622 2024-08-08 20:30:42.325 ToddWilkinsonZWI \N \N \N 80455600 5 2 \N \N 100 \N \N f f 0 \N 1851280537 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1692 2024-04-26 08:50:34.63 2024-02-29 03:14:47.884 ReneeYatesOHF \N \N \N 9064691 5 2 \N \N 100 \N \N f f 0 \N 688939483 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4064 2024-02-29 09:11:06.347 2024-03-07 15:57:24.506 MaryFisherB8Y \N \N \N 248146936 5 2 \N \N 100 \N \N f f 0 \N 106630976 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19471 2025-02-08 00:51:20.322 2023-05-31 16:02:12.815 RuthBernardBNN \N \N \N 124552410 5 2 \N \N 100 \N \N f f 0 \N 2080427147 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7992 2025-01-25 09:08:57.316 2024-09-09 19:09:40.393 DustinBallardD5S \N \N \N 72214671 5 2 \N \N 100 \N \N f f 0 \N 1243450946 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20551 2022-12-15 22:13:50.455 2023-06-08 22:33:53.854 JefferyBurchB4Z \N \N \N 119067335 5 2 \N \N 100 \N \N f f 0 \N 1177707828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5694 2024-10-20 18:49:53.514 2023-01-25 10:54:16.199 AnnHebertMZ6 \N \N \N 238183430 5 2 \N \N 100 \N \N f f 0 \N 1813059126 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3729 2022-11-11 05:47:13.621 2023-03-30 08:26:53.707 MarioHoltF2M \N \N \N 35002448 5 2 \N \N 100 \N \N f f 0 \N 1638156611 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20924 2024-04-23 15:05:38.962 2023-09-20 20:06:17.208 DanaArmstrongWYY \N \N \N 91876593 5 2 \N \N 100 \N \N f f 0 \N 1009324143 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18314 2023-03-11 05:40:15.393 2024-06-19 03:29:18.938 JocelynBeltran4G7 \N \N \N 205269494 5 2 \N \N 100 \N \N f f 0 \N 2417932336 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2577 2024-02-15 22:01:51.11 2024-11-13 00:04:06.089 JocelynTapiaYQO \N \N \N 197140562 5 2 \N \N 100 \N \N f f 0 \N 803833702 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 670 2024-09-05 06:28:43.302 2023-07-17 09:50:56.64 JennyJenkins4BC \N \N \N 30419777 5 2 \N \N 100 \N \N f f 0 \N 1551842207 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17030 2025-01-03 01:43:54.088 2023-09-17 10:49:45.334 LoriWong77A \N \N \N 48277442 5 2 \N \N 100 \N \N f f 0 \N 1953364319 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6202 2024-11-08 02:55:04.658 2024-09-28 15:18:05.472 KentGarrett0CI \N \N \N 91556776 5 2 \N \N 100 \N \N f f 0 \N 571302242 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4084 2024-07-20 11:05:34.479 2024-10-14 19:21:50.482 GeoffreyLopezCCZ \N \N \N 209924176 5 2 \N \N 100 \N \N f f 0 \N 40545604 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4074 2023-10-25 06:54:59.498 2023-02-24 04:50:29.808 TeresaGoodman3RL \N \N \N 109208554 5 2 \N \N 100 \N \N f f 0 \N 2495445044 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4083 2024-09-19 10:50:01.948 2023-10-17 09:26:27.171 TraciCarroll531 \N \N \N 13878936 5 2 \N \N 100 \N \N f f 0 \N 2148808588 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4048 2023-07-21 18:30:12.377 2024-11-11 20:32:29.648 IsabellaHenryNSU \N \N \N 164476733 5 2 \N \N 100 \N \N f f 0 \N 114791277 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2674 2024-03-16 02:20:50.032 2024-06-13 18:23:37.773 ShawnTrujilloZOV \N \N \N 45549335 5 2 \N \N 100 \N \N f f 0 \N 1195466618 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2123 2024-05-24 19:09:54.781 2024-06-11 14:26:58.475 NormaLarsonJNU \N \N \N 203630976 5 2 \N \N 100 \N \N f f 0 \N 196257456 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16809 2023-02-24 13:57:41.079 2023-05-11 21:29:41.485 TomGarzaPG9 \N \N \N 192227654 5 2 \N \N 100 \N \N f f 0 \N 323562451 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3411 2023-09-14 10:05:44.586 2024-08-19 22:52:30.65 KathyRichmondR0V \N \N \N 94835862 5 2 \N \N 100 \N \N f f 0 \N 1663661061 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14381 2024-07-26 12:08:19.997 2025-03-10 04:25:05.928 JanetJarvis831 \N \N \N 226047827 5 2 \N \N 100 \N \N f f 0 \N 138327419 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5761 2024-01-16 04:00:55.588 2024-04-21 04:39:15.833 CatherineBoothJ5M \N \N \N 21810429 5 2 \N \N 100 \N \N f f 0 \N 493578715 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18601 2022-12-17 21:21:56.273 2024-05-10 13:34:04.157 SamanthaHamptonJDY \N \N \N 12968375 5 2 \N \N 100 \N \N f f 0 \N 1315488692 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13055 2023-01-30 11:36:04.389 2024-12-17 08:36:10.149 JohnnyCollinsMJ2 \N \N \N 159248626 5 2 \N \N 100 \N \N f f 0 \N 1768055568 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4115 2022-12-05 18:58:53.105 2023-02-21 09:47:53.669 RobertaMcleanD1T \N \N \N 29708223 5 2 \N \N 100 \N \N f f 0 \N 2203111325 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1120 2023-06-29 10:25:52.422 2024-10-14 22:20:27.001 DustinHensonA6G \N \N \N 30417152 5 2 \N \N 100 \N \N f f 0 \N 1084022742 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18271 2023-11-03 14:23:37.693 2023-01-04 07:21:59.228 TerrenceNicholsonV40 \N \N \N 126673678 5 2 \N \N 100 \N \N f f 0 \N 2191671671 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21714 2025-02-12 05:26:42.098 2023-03-20 07:18:56.162 DanielleHoodGHG \N \N \N 142034828 5 2 \N \N 100 \N \N f f 0 \N 2362349940 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20636 2024-09-20 08:38:13.738 2023-09-08 10:44:34.814 EdwardRoy7AY \N \N \N 171228020 5 2 \N \N 100 \N \N f f 0 \N 1203116704 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20500 2023-05-29 04:28:59.749 2022-11-16 22:50:29.25 BriannaEspinozaB2K \N \N \N 103091329 5 2 \N \N 100 \N \N f f 0 \N 534778480 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21247 2024-01-02 07:13:29.679 2022-11-24 19:25:48.401 JesseMossL35 \N \N \N 44094823 5 2 \N \N 100 \N \N f f 0 \N 343075675 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20901 2023-03-29 10:58:17.073 2024-08-18 10:11:25.806 DwayneWardMMG \N \N \N 143768620 5 2 \N \N 100 \N \N f f 0 \N 1374611296 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20152 2022-12-31 19:00:40.828 2023-03-13 11:40:04.184 FernandoCabreraKCE \N \N \N 247078745 5 2 \N \N 100 \N \N f f 0 \N 890072537 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19888 2024-02-25 17:11:48.423 2024-03-27 09:57:27.906 MarisaGuerraFR0 \N \N \N 246427616 5 2 \N \N 100 \N \N f f 0 \N 1327531097 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20981 2023-11-19 22:25:12.119 2023-12-02 07:23:57.293 FranciscoOdomM58 \N \N \N 2320666 5 2 \N \N 100 \N \N f f 0 \N 483167336 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17183 2025-01-15 10:47:43.545 2024-05-19 06:57:54.045 CharleneDillonHRF \N \N \N 20783738 5 2 \N \N 100 \N \N f f 0 \N 1654021320 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21088 2024-08-11 01:14:55.376 2023-09-10 11:53:39.35 PamWilson9YK \N \N \N 59607326 5 2 \N \N 100 \N \N f f 0 \N 2210873022 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19403 2023-08-23 01:32:12.692 2023-12-16 09:08:40.84 AlexBatesJCJ \N \N \N 145496434 5 2 \N \N 100 \N \N f f 0 \N 1686538303 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20525 2023-02-20 04:27:33.009 2024-08-31 13:25:50.301 RuthAdkinsVGF \N \N \N 16943963 5 2 \N \N 100 \N \N f f 0 \N 431343302 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15147 2023-12-06 22:26:07.643 2024-08-10 17:50:54.015 CassidyBarnettC1B \N \N \N 7333538 5 2 \N \N 100 \N \N f f 0 \N 779605695 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20554 2022-12-20 08:44:08.403 2023-03-01 19:10:27.485 JaneJoyce8NC \N \N \N 168848967 5 2 \N \N 100 \N \N f f 0 \N 118785938 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21413 2023-07-09 02:55:36.56 2023-02-25 07:54:00.324 GrantPorterS5O \N \N \N 39398748 5 2 \N \N 100 \N \N f f 0 \N 2490760488 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18637 2025-03-12 16:17:18.281 2024-10-22 08:36:36.428 AliciaDouglasP08 \N \N \N 49387920 5 2 \N \N 100 \N \N f f 0 \N 1849875275 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13587 2025-01-17 06:21:27.526 2022-11-15 06:57:40.347 AlbertJonesWUT \N \N \N 87600735 5 2 \N \N 100 \N \N f f 0 \N 1705554905 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20490 2025-01-22 02:43:12.927 2024-03-15 14:41:32.388 ShelbyCarpenterVCH \N \N \N 117071872 5 2 \N \N 100 \N \N f f 0 \N 363373591 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17838 2023-09-05 17:05:22.876 2025-03-14 11:12:27.332 KarenBellLEZ \N \N \N 149364106 5 2 \N \N 100 \N \N f f 0 \N 132890054 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16351 2024-11-23 12:49:52.048 2023-08-31 01:31:35.259 LindaWatsonT75 \N \N \N 80434761 5 2 \N \N 100 \N \N f f 0 \N 767323224 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2502 2023-08-20 10:50:00.346 2024-03-06 15:11:47.07 KennethChoiKD8 \N \N \N 207027443 5 2 \N \N 100 \N \N f f 0 \N 1942957280 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16834 2025-01-20 06:49:42.262 2023-11-13 00:55:09.813 PaulWilkersonV72 \N \N \N 60586179 5 2 \N \N 100 \N \N f f 0 \N 532191984 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18615 2025-01-16 10:16:30.479 2025-02-11 02:45:30.143 BlakeHarveyY6B \N \N \N 153869202 5 2 \N \N 100 \N \N f f 0 \N 524753021 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21539 2023-03-14 07:13:07.02 2024-11-04 12:04:50.409 TraceyHodgesK22 \N \N \N 241858597 5 2 \N \N 100 \N \N f f 0 \N 1358241784 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20922 2024-08-31 20:59:10.244 2024-06-19 17:44:51.473 KristyCosta3W6 \N \N \N 201682723 5 2 \N \N 100 \N \N f f 0 \N 1034251128 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9378 2023-10-12 15:08:07.888 2024-05-04 19:05:55.18 MariePetersLWD \N \N \N 63150038 5 2 \N \N 100 \N \N f f 0 \N 720787900 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20911 2025-03-29 03:45:36.56 2023-09-05 23:49:02.026 PatrickLynchNIL \N \N \N 189172357 5 2 \N \N 100 \N \N f f 0 \N 2011803295 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20897 2023-12-19 04:27:09.593 2023-05-14 08:30:20.057 KristinAdams44U \N \N \N 229828445 5 2 \N \N 100 \N \N f f 0 \N 1393231236 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11999 2023-10-07 03:43:03.268 2024-12-13 12:44:14.282 DeborahCopelandLQD \N \N \N 169966741 5 2 \N \N 100 \N \N f f 0 \N 2310381535 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21148 2023-05-18 20:49:04.864 2023-06-24 05:13:02.673 YeseniaStanleyE0M \N \N \N 117314577 5 2 \N \N 100 \N \N f f 0 \N 1247150519 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15060 2024-01-17 23:46:58.523 2023-09-24 16:47:53.177 JasonClements19J \N \N \N 84086418 5 2 \N \N 100 \N \N f f 0 \N 51794933 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15282 2023-02-27 04:07:56.836 2023-03-26 00:12:43.519 JasonVaughanL03 \N \N \N 102682270 5 2 \N \N 100 \N \N f f 0 \N 911511814 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16536 2025-01-22 20:42:30.868 2022-12-25 04:52:14.162 HunterMcdowellYVP \N \N \N 105817210 5 2 \N \N 100 \N \N f f 0 \N 1241132073 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20245 2023-10-16 16:31:26.636 2023-07-30 21:05:54.119 RonnieDrakeVT1 \N \N \N 129553698 5 2 \N \N 100 \N \N f f 0 \N 1347064624 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21666 2024-01-15 23:25:17.599 2023-10-29 02:45:49.949 KellyHartmanJ6Q \N \N \N 56579786 5 2 \N \N 100 \N \N f f 0 \N 1426236161 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18114 2025-02-26 05:23:48.529 2024-01-30 06:37:50.668 LorettaHarringtonQY2 \N \N \N 95365353 5 2 \N \N 100 \N \N f f 0 \N 1646315815 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20504 2025-02-24 12:56:20.4 2023-11-24 05:32:40.014 TammieMiller8LH \N \N \N 66898619 5 2 \N \N 100 \N \N f f 0 \N 967969611 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21164 2024-01-29 13:42:43.646 2024-05-03 19:39:02.892 DaisyHuerta92Z \N \N \N 248575038 5 2 \N \N 100 \N \N f f 0 \N 1383721991 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20802 2024-03-12 16:59:28.653 2023-02-23 23:05:29.959 ChelseaSingletonFHX \N \N \N 84100871 5 2 \N \N 100 \N \N f f 0 \N 2421802061 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14357 2025-02-01 12:56:51.776 2023-11-15 00:43:23.755 RonaldCraigBGR \N \N \N 96319339 5 2 \N \N 100 \N \N f f 0 \N 17731992 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20660 2023-12-08 23:17:46.802 2024-05-07 01:29:57.195 RickyMorrisonOIR \N \N \N 171895815 5 2 \N \N 100 \N \N f f 0 \N 2036720105 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13399 2025-02-25 12:44:04.335 2022-11-24 16:54:21.574 RodneyMarquez32T \N \N \N 177914465 5 2 \N \N 100 \N \N f f 0 \N 1862781888 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16357 2023-03-10 11:18:04.699 2025-01-12 08:08:51.8 JaniceLiJ7W \N \N \N 221094525 5 2 \N \N 100 \N \N f f 0 \N 2526868274 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4692 2023-06-24 00:42:41.417 2023-05-12 15:05:36.055 ShirleyGonzalesNMM \N \N \N 72685650 5 2 \N \N 100 \N \N f f 0 \N 1986675012 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20436 2024-02-05 09:50:17.937 2024-06-10 04:47:23.326 JeffEstradaHZ5 \N \N \N 150651239 5 2 \N \N 100 \N \N f f 0 \N 1275081517 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15148 2023-03-31 03:50:22.167 2024-02-20 00:24:06.647 RavenKirkUI4 \N \N \N 117445613 5 2 \N \N 100 \N \N f f 0 \N 1884135034 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21805 2023-06-08 22:32:39.694 2023-12-19 07:26:43.186 DorisBarr5OQ \N \N \N 98581534 5 2 \N \N 100 \N \N f f 0 \N 1695686052 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20778 2025-01-27 19:16:19.596 2023-05-29 18:35:38.519 TerriSnowPT6 \N \N \N 60545971 5 2 \N \N 100 \N \N f f 0 \N 1394951940 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16808 2024-12-23 08:47:58.829 2024-02-26 15:27:17.551 BrandiFlowersM4I \N \N \N 213676810 5 2 \N \N 100 \N \N f f 0 \N 1398370036 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18005 2024-05-11 09:58:34.78 2023-02-14 17:42:38.059 DorisPottsZG2 \N \N \N 168883555 5 2 \N \N 100 \N \N f f 0 \N 88842249 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20511 2023-02-25 09:32:35.3 2025-03-28 05:35:33.924 BillSalazarX2R \N \N \N 153543066 5 2 \N \N 100 \N \N f f 0 \N 547873202 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18525 2024-11-07 10:30:21.487 2024-12-09 13:17:08.454 MarioShahQ33 \N \N \N 8505166 5 2 \N \N 100 \N \N f f 0 \N 342853279 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20306 2024-11-03 18:46:20.715 2022-12-31 23:51:53.554 AndreRiveraFA3 \N \N \N 90590471 5 2 \N \N 100 \N \N f f 0 \N 379967315 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17184 2024-10-12 12:38:01.719 2025-03-26 09:49:18.968 JorgeHaydenX2E \N \N \N 57599813 5 2 \N \N 100 \N \N f f 0 \N 1253254271 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18678 2022-12-04 21:04:29.394 2023-09-09 13:23:41.103 ChelseaBowenJRS \N \N \N 183229140 5 2 \N \N 100 \N \N f f 0 \N 425801318 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21228 2023-12-23 01:48:31.855 2023-07-07 16:46:16.87 FrederickBonillaUXO \N \N \N 190982649 5 2 \N \N 100 \N \N f f 0 \N 163923823 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21444 2023-10-19 08:09:07.194 2023-12-03 04:25:48.888 LatoyaHardinPBW \N \N \N 173902918 5 2 \N \N 100 \N \N f f 0 \N 1887148853 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16350 2023-12-15 04:48:06.959 2023-02-09 05:48:33.433 LorraineValentine1FB \N \N \N 150919499 5 2 \N \N 100 \N \N f f 0 \N 1203039869 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21540 2024-04-23 16:52:54.276 2025-03-08 20:13:20.425 DwayneHatfieldEUX \N \N \N 2832878 5 2 \N \N 100 \N \N f f 0 \N 394981221 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19668 2024-07-11 10:51:02.764 2024-12-30 21:03:03.714 AlisonLandryCGW \N \N \N 51456912 5 2 \N \N 100 \N \N f f 0 \N 2370407120 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2670 2023-10-21 00:26:02.173 2022-12-26 08:40:43.909 AlexandraVincentZQ3 \N \N \N 234595256 5 2 \N \N 100 \N \N f f 0 \N 845481986 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18265 2024-01-07 16:35:20.376 2025-01-11 01:28:18.9 ChelseyClaytonTBL \N \N \N 39770767 5 2 \N \N 100 \N \N f f 0 \N 459514604 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 928 2023-08-15 22:13:28.25 2023-07-09 02:02:09.448 JonWilsonVVS \N \N \N 203385648 5 2 \N \N 100 \N \N f f 0 \N 1818099871 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18270 2024-09-23 17:05:21.19 2022-12-04 02:10:36.72 RuthHermanLZK \N \N \N 96976060 5 2 \N \N 100 \N \N f f 0 \N 118885822 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21139 2023-10-20 04:26:33.881 2023-07-28 03:53:43.917 VernonSmithMRI \N \N \N 182461223 5 2 \N \N 100 \N \N f f 0 \N 93433639 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20563 2024-03-24 00:21:34.479 2024-01-28 09:08:45.101 AmberAndrews4F3 \N \N \N 23820933 5 2 \N \N 100 \N \N f f 0 \N 1480000763 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18274 2025-01-06 05:12:44.809 2025-02-27 05:27:22.768 DaveSnyderFO6 \N \N \N 103026397 5 2 \N \N 100 \N \N f f 0 \N 2487510592 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20681 2025-01-25 17:52:58.859 2024-04-29 02:23:13.59 DominiqueReeseV3T \N \N \N 156023046 5 2 \N \N 100 \N \N f f 0 \N 2276381478 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21104 2024-03-17 03:04:58.425 2023-12-23 02:47:48.79 MichelleSosaFX5 \N \N \N 112943866 5 2 \N \N 100 \N \N f f 0 \N 1095595997 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16513 2024-04-13 03:59:20.31 2023-10-26 09:39:36.635 TammieNicholsonZZQ \N \N \N 226761990 5 2 \N \N 100 \N \N f f 0 \N 129816841 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16354 2023-10-15 04:30:03.355 2023-12-19 15:39:27.269 RebekahKirbyQID \N \N \N 157252400 5 2 \N \N 100 \N \N f f 0 \N 999443292 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20754 2023-02-17 18:43:47.255 2023-01-05 21:28:07.189 CynthiaTrevinoE50 \N \N \N 54962083 5 2 \N \N 100 \N \N f f 0 \N 2206606006 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21338 2024-02-15 23:40:24.464 2023-02-01 00:53:01.364 SherylTannerW9L \N \N \N 12489842 5 2 \N \N 100 \N \N f f 0 \N 752898254 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20562 2024-06-13 22:46:10.441 2023-01-06 18:50:21.788 BillyNolanDPF \N \N \N 241015831 5 2 \N \N 100 \N \N f f 0 \N 233431704 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21287 2024-12-24 22:17:52.318 2024-06-15 16:09:21.822 BrettCantu1P6 \N \N \N 143739422 5 2 \N \N 100 \N \N f f 0 \N 2473755949 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18526 2024-07-12 12:32:59.281 2024-06-23 22:05:18.83 BeverlySheltonO88 \N \N \N 130082362 5 2 \N \N 100 \N \N f f 0 \N 928824832 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11018 2023-02-14 20:10:05.996 2024-06-01 14:28:58.625 JesseBartlett9BF \N \N \N 143012824 5 2 \N \N 100 \N \N f f 0 \N 1092493343 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9 2024-09-23 02:38:13.27 2024-11-07 20:03:42.106 DeannaCrosbyCHJ \N \N \N 106174534 5 2 \N \N 100 \N \N f f 0 \N 2293117185 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5557 2024-04-21 20:45:47.782 2025-02-05 04:53:13.557 LawrenceMorrisonJDP \N \N \N 34622031 5 2 \N \N 100 \N \N f f 0 \N 1977667100 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7558 2023-06-07 19:02:33.36 2024-01-02 09:31:51.245 StefanieRosalesZW1 \N \N \N 44851746 5 2 \N \N 100 \N \N f f 0 \N 1031282276 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12516 2023-07-22 02:39:27.292 2023-03-27 07:18:17.466 KarlCantrell158 \N \N \N 218515900 5 2 \N \N 100 \N \N f f 0 \N 542868219 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14280 2023-08-08 15:43:41.442 2025-02-08 08:01:25.995 JeffHutchinsonB9N \N \N \N 99836316 5 2 \N \N 100 \N \N f f 0 \N 1586458169 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14489 2024-10-05 14:19:47.388 2022-12-09 10:07:44.638 SonyaHarperMR2 \N \N \N 99975697 5 2 \N \N 100 \N \N f f 0 \N 1671402706 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15484 2024-03-23 18:37:13.858 2023-12-09 22:21:44.915 JefferyRocha5Y0 \N \N \N 184739368 5 2 \N \N 100 \N \N f f 0 \N 121804887 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15526 2022-11-21 11:24:45.928 2024-11-30 01:06:57.113 BillyHobbsK52 \N \N \N 173282827 5 2 \N \N 100 \N \N f f 0 \N 726573348 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16948 2023-05-19 07:46:54.047 2023-05-11 09:07:29.03 SteveSnyderY3V \N \N \N 200351579 5 2 \N \N 100 \N \N f f 0 \N 1867952834 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16950 2023-07-10 23:52:19.857 2024-05-10 11:20:31.67 MichaelMossQXT \N \N \N 56011329 5 2 \N \N 100 \N \N f f 0 \N 2142269265 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16954 2024-11-22 18:06:10.207 2024-01-06 17:45:20.906 AlvinLozanoASD \N \N \N 128977666 5 2 \N \N 100 \N \N f f 0 \N 1376374295 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16965 2024-04-18 00:01:29.411 2023-07-31 04:47:26.461 DestinyHurleyU4V \N \N \N 99471140 5 2 \N \N 100 \N \N f f 0 \N 1536064988 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17411 2024-05-17 11:36:46.52 2024-08-19 10:19:31.233 JamieSparks6AJ \N \N \N 166502847 5 2 \N \N 100 \N \N f f 0 \N 356122103 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17533 2023-06-05 18:06:09.184 2024-10-11 21:16:11.944 KristiCherryWKX \N \N \N 192501550 5 2 \N \N 100 \N \N f f 0 \N 1941761460 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17568 2024-11-16 07:58:11.051 2023-07-12 05:09:36.539 TammieWillisIEG \N \N \N 24622293 5 2 \N \N 100 \N \N f f 0 \N 1745611239 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17592 2024-11-30 02:24:58.241 2024-07-21 08:32:58.096 GilbertNewtonNOM \N \N \N 135299461 5 2 \N \N 100 \N \N f f 0 \N 846643832 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17690 2022-11-21 04:37:04.832 2024-03-20 22:21:01.577 DevinConley4R8 \N \N \N 203059479 5 2 \N \N 100 \N \N f f 0 \N 1622552005 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17708 2023-05-19 20:45:58.514 2023-08-30 14:49:07.4 MistyLozanoL53 \N \N \N 217689649 5 2 \N \N 100 \N \N f f 0 \N 1365406761 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17722 2022-11-20 22:44:26.256 2024-10-04 14:45:10.108 GreggBautista3IO \N \N \N 131948735 5 2 \N \N 100 \N \N f f 0 \N 1861309934 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17797 2025-03-20 15:16:36.365 2023-11-14 10:03:55.471 JeremiahFriedmanUUV \N \N \N 91349578 5 2 \N \N 100 \N \N f f 0 \N 1592695909 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 620 2024-12-24 21:18:07.171 2023-03-11 02:59:57.884 AutumnParkerNY7 \N \N \N 23556857 5 2 \N \N 100 \N \N f f 0 \N 2120476068 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 626 2024-04-23 15:52:08.175 2024-02-10 17:10:59.148 ShariSavageGQN \N \N \N 34077958 5 2 \N \N 100 \N \N f f 0 \N 1053201458 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 628 2024-12-21 13:51:45.447 2023-08-03 21:44:22.21 SpencerBowmanWGZ \N \N \N 42339438 5 2 \N \N 100 \N \N f f 0 \N 979105275 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 632 2024-10-07 02:21:19.453 2024-05-30 22:43:50.974 JeffreyEllisMCR \N \N \N 197916660 5 2 \N \N 100 \N \N f f 0 \N 2170977197 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 635 2023-01-07 23:02:44.048 2023-03-13 05:17:17.784 StacieHooperIR7 \N \N \N 25402950 5 2 \N \N 100 \N \N f f 0 \N 261057946 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 646 2023-08-21 20:29:31.701 2023-09-08 17:57:46.846 RonaldGiles9HV \N \N \N 44825223 5 2 \N \N 100 \N \N f f 0 \N 114987473 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 649 2024-12-03 11:25:39.48 2024-05-08 03:31:44.385 KevinMitchell7VA \N \N \N 45562244 5 2 \N \N 100 \N \N f f 0 \N 2420654593 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 660 2023-06-29 01:03:17.251 2024-08-17 11:59:17.363 BrettReillyUL7 \N \N \N 94545737 5 2 \N \N 100 \N \N f f 0 \N 1638532311 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 661 2023-04-06 16:28:18.721 2023-11-23 06:40:36.918 DarylCalhoun3HK \N \N \N 115329928 5 2 \N \N 100 \N \N f f 0 \N 1158436972 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 690 2022-12-14 14:46:58.824 2023-10-16 08:07:40.105 CharlesAdkinsSO6 \N \N \N 148615811 5 2 \N \N 100 \N \N f f 0 \N 15033018 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 692 2023-03-22 02:17:41.923 2024-07-19 17:14:37.636 DonCopelandH3V \N \N \N 249185519 5 2 \N \N 100 \N \N f f 0 \N 841343856 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 695 2024-09-06 16:35:39.111 2024-07-23 14:41:04.038 GregYoderOJ1 \N \N \N 223167217 5 2 \N \N 100 \N \N f f 0 \N 1186892730 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 697 2023-08-02 23:13:04.65 2024-10-27 05:35:59.539 ThomasTerrell1WE \N \N \N 3244431 5 2 \N \N 100 \N \N f f 0 \N 1726760849 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 698 2024-02-11 02:57:01.488 2024-03-02 14:24:33.31 WilliamPaceQAQ \N \N \N 233183225 5 2 \N \N 100 \N \N f f 0 \N 1254392103 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 703 2024-07-20 04:44:45.756 2022-12-15 10:47:44.093 RickWeber5NA \N \N \N 158007282 5 2 \N \N 100 \N \N f f 0 \N 1335265911 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 706 2023-10-27 21:04:20.8 2023-03-29 07:05:38.005 JohnnyTate388 \N \N \N 108879403 5 2 \N \N 100 \N \N f f 0 \N 1519779513 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 711 2023-05-31 00:57:24.687 2025-02-25 05:09:39.278 KrystalSteinQ60 \N \N \N 153600066 5 2 \N \N 100 \N \N f f 0 \N 1006621709 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 712 2024-05-13 14:24:40.304 2023-01-29 02:01:56.961 CoryContreras33E \N \N \N 126957206 5 2 \N \N 100 \N \N f f 0 \N 2290920268 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 716 2024-04-21 05:29:58.596 2023-09-19 00:52:47.86 AdrianPrattBTJ \N \N \N 26906021 5 2 \N \N 100 \N \N f f 0 \N 974952370 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 717 2024-12-15 07:48:00.168 2023-11-26 21:13:38.392 MelindaBrewerCX3 \N \N \N 207763850 5 2 \N \N 100 \N \N f f 0 \N 2033365071 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 718 2023-12-31 09:23:44.761 2023-03-19 23:05:52.142 CoreyDorseyHT1 \N \N \N 144568082 5 2 \N \N 100 \N \N f f 0 \N 2124146451 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 720 2024-03-13 22:09:07.94 2023-03-22 17:44:54.926 CollinCantrellDY4 \N \N \N 149807018 5 2 \N \N 100 \N \N f f 0 \N 2133097952 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 726 2025-01-26 22:29:51.899 2024-10-30 06:28:45.441 MikaylaGouldZ0T \N \N \N 189275158 5 2 \N \N 100 \N \N f f 0 \N 2291777531 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 730 2024-04-20 08:24:35.96 2024-08-02 01:03:00.291 CaitlinYoungWV9 \N \N \N 131499496 5 2 \N \N 100 \N \N f f 0 \N 186675744 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 739 2022-11-13 03:24:14.373 2024-01-24 04:00:38.707 ShelbyWebbY5U \N \N \N 120368238 5 2 \N \N 100 \N \N f f 0 \N 1371450100 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 750 2023-09-08 01:35:44.683 2024-08-09 18:41:57.653 BradySavageUCR \N \N \N 178186819 5 2 \N \N 100 \N \N f f 0 \N 1052177138 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 756 2025-03-15 07:01:45.633 2023-03-25 00:39:13.469 AlanVillanueva2U4 \N \N \N 3899673 5 2 \N \N 100 \N \N f f 0 \N 161621241 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 760 2022-12-01 09:05:31.915 2023-04-18 10:01:34.542 RicardoEscobar9LI \N \N \N 97342967 5 2 \N \N 100 \N \N f f 0 \N 1144704461 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 768 2025-01-04 21:36:09.684 2024-06-09 13:24:25.155 JerryBarnes4TN \N \N \N 246940406 5 2 \N \N 100 \N \N f f 0 \N 2314732978 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 769 2024-12-23 16:00:09.729 2025-03-28 02:53:53.514 HerbertNielsen4HF \N \N \N 154289526 5 2 \N \N 100 \N \N f f 0 \N 2464354200 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 782 2025-03-15 11:39:08.87 2024-09-01 00:04:28.418 KirstenRichMAS \N \N \N 65229861 5 2 \N \N 100 \N \N f f 0 \N 1047998102 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 795 2022-12-16 00:02:14.843 2023-05-11 01:14:21.069 IsaacPattonFX5 \N \N \N 111199654 5 2 \N \N 100 \N \N f f 0 \N 979352598 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 802 2024-05-09 00:17:19.127 2024-07-21 15:56:20.709 JohnMortonSIN \N \N \N 99148206 5 2 \N \N 100 \N \N f f 0 \N 1252730146 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 805 2023-03-09 06:46:13.814 2023-09-27 07:44:31.776 MikeJosephSLF \N \N \N 129266022 5 2 \N \N 100 \N \N f f 0 \N 912228647 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 807 2024-02-16 08:52:30.926 2023-01-05 03:17:54.301 MariahParker658 \N \N \N 186959856 5 2 \N \N 100 \N \N f f 0 \N 2093018224 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 822 2023-06-23 07:34:56.031 2024-08-09 23:40:39.586 NicolasSinghGRZ \N \N \N 10165449 5 2 \N \N 100 \N \N f f 0 \N 184502741 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 831 2024-01-04 09:12:23.213 2024-12-12 15:33:03.873 JeromeGuerraBKP \N \N \N 78051755 5 2 \N \N 100 \N \N f f 0 \N 2350562828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 848 2023-02-07 01:03:15.305 2024-04-23 16:34:50.969 EileenFreyN5J \N \N \N 53522016 5 2 \N \N 100 \N \N f f 0 \N 2239083059 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 854 2023-09-30 11:40:43.701 2023-03-11 03:37:11.838 HayleyMccartyGTD \N \N \N 42507681 5 2 \N \N 100 \N \N f f 0 \N 957817218 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 861 2023-05-28 07:00:43.189 2023-08-11 21:47:15.609 BrendaMoraIIP \N \N \N 193675047 5 2 \N \N 100 \N \N f f 0 \N 1963667570 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 866 2024-06-29 02:28:03.153 2023-09-04 09:06:55.56 BarryDickersonN4Y \N \N \N 226300057 5 2 \N \N 100 \N \N f f 0 \N 805999800 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 880 2024-03-06 16:31:16.015 2023-09-19 10:11:04.002 ColinZunigaB3O \N \N \N 138934758 5 2 \N \N 100 \N \N f f 0 \N 1200386902 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 895 2024-03-20 04:11:31.803 2024-06-30 04:16:43.23 WalterSimpsonXDW \N \N \N 171740716 5 2 \N \N 100 \N \N f f 0 \N 559195007 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 897 2022-12-17 11:39:51.616 2023-09-30 13:19:45.62 NicolasFosterID3 \N \N \N 84545966 5 2 \N \N 100 \N \N f f 0 \N 462485183 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 900 2022-12-16 18:29:01.432 2025-03-11 19:42:41.363 IsabellaGreene6AV \N \N \N 80961042 5 2 \N \N 100 \N \N f f 0 \N 1188567157 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 917 2025-03-19 01:11:55.991 2024-12-13 05:54:21.003 TamiCharlesZ1V \N \N \N 166881782 5 2 \N \N 100 \N \N f f 0 \N 2237145444 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 925 2023-06-07 10:09:37.438 2024-06-03 04:09:50.774 KerriWelchF5U \N \N \N 228316697 5 2 \N \N 100 \N \N f f 0 \N 1653191458 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 964 2025-01-21 19:39:20.448 2024-06-26 23:40:42.247 JanetBishop9DM \N \N \N 98762599 5 2 \N \N 100 \N \N f f 0 \N 1241260938 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 965 2023-11-21 23:53:18.524 2023-02-19 19:49:31.201 AdamPeters3NN \N \N \N 142715432 5 2 \N \N 100 \N \N f f 0 \N 1321084391 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 976 2024-05-11 21:24:35.408 2023-09-04 10:24:08.337 RickyChangEH8 \N \N \N 225417286 5 2 \N \N 100 \N \N f f 0 \N 59922003 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 979 2022-11-16 22:30:32.552 2024-05-11 16:37:21.925 GilbertRojasEL6 \N \N \N 116954651 5 2 \N \N 100 \N \N f f 0 \N 804640380 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 985 2024-03-22 05:23:07.216 2023-03-21 01:32:48.465 AllisonPugh4EN \N \N \N 172914527 5 2 \N \N 100 \N \N f f 0 \N 1220944177 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 986 2023-10-03 08:22:51.618 2023-11-09 04:09:30.567 BeverlyHoweTE3 \N \N \N 201430626 5 2 \N \N 100 \N \N f f 0 \N 1806962840 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 989 2023-10-15 21:48:12.249 2023-07-24 06:20:30.986 OscarCervantesZ3Q \N \N \N 91868370 5 2 \N \N 100 \N \N f f 0 \N 895327191 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 992 2024-01-09 18:33:15.222 2023-08-03 18:29:40.893 DarrylHudsonIR2 \N \N \N 58165039 5 2 \N \N 100 \N \N f f 0 \N 286652280 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 993 2024-10-16 03:15:35.551 2024-06-23 06:55:14.147 RossAnderson4HD \N \N \N 80535200 5 2 \N \N 100 \N \N f f 0 \N 2433172943 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 994 2024-11-27 14:51:45.207 2023-02-19 22:39:46.983 JudithKelleyQL6 \N \N \N 140987310 5 2 \N \N 100 \N \N f f 0 \N 2329310736 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 999 2024-12-11 00:05:33.402 2025-01-11 10:07:49.325 JermaineByrd74C \N \N \N 83137131 5 2 \N \N 100 \N \N f f 0 \N 1493336653 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1000 2023-05-04 18:40:02.132 2024-07-03 06:58:23.358 DylanSotoJ7V \N \N \N 147100339 5 2 \N \N 100 \N \N f f 0 \N 916792912 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1006 2024-06-29 01:15:18.409 2025-02-18 11:36:37.739 KurtAndrewsIMJ \N \N \N 222354561 5 2 \N \N 100 \N \N f f 0 \N 1851538814 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1008 2024-08-27 23:28:05.768 2024-09-02 17:47:33.331 GaryHardingVSV \N \N \N 248896278 5 2 \N \N 100 \N \N f f 0 \N 2183057689 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1009 2023-02-01 18:19:21.197 2023-11-03 18:29:58.086 VirginiaCarrollP7Y \N \N \N 180944730 5 2 \N \N 100 \N \N f f 0 \N 2086525072 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12911 2024-01-18 09:37:48.62 2024-12-28 11:41:53.326 KelliCoffeyYCU \N \N \N 102258227 5 2 \N \N 100 \N \N f f 0 \N 2355527811 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17212 2024-05-02 06:36:55.466 2024-04-12 20:07:41.676 RobertaRowlandQBW \N \N \N 7345763 5 2 \N \N 100 \N \N f f 0 \N 2434107075 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 777 2023-09-07 06:49:06.445 2024-03-08 16:57:14.644 EarlLambSAK \N \N \N 86845923 5 2 \N \N 100 \N \N f f 0 \N 2402369946 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 787 2024-06-06 11:49:51.653 2024-11-09 07:47:18.679 JonathanHendrixNOT \N \N \N 102245480 5 2 \N \N 100 \N \N f f 0 \N 602995799 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 803 2024-02-12 03:29:52.808 2022-11-22 10:24:07.489 SteveWernerBQE \N \N \N 144878869 5 2 \N \N 100 \N \N f f 0 \N 3673135028 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 954 2025-02-21 05:52:42.551 2023-10-23 04:44:09.036 ToddSherman2JH \N \N \N 66668970 5 2 \N \N 100 \N \N f f 0 \N 2286290006 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1060 2024-11-05 15:39:09.793 2024-04-21 16:54:54.298 DanielStanleyUY1 \N \N \N 196407666 5 2 \N \N 100 \N \N f f 0 \N 1092010757 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1090 2023-11-20 19:48:31.663 2024-02-12 04:02:05.979 CarlyVaughan2G0 \N \N \N 124223033 5 2 \N \N 100 \N \N f f 0 \N 994174079 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1105 2025-01-06 16:03:06.088 2024-02-01 10:14:12.979 LorraineBlack061 \N \N \N 21881006 5 2 \N \N 100 \N \N f f 0 \N 1477911710 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1122 2023-03-29 22:31:57.684 2023-05-02 18:32:54.452 JanetMyersWPX \N \N \N 12037935 5 2 \N \N 100 \N \N f f 0 \N 1717015475 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1141 2025-02-16 16:33:06.199 2024-09-14 15:06:25.836 EricClayton5JN \N \N \N 231133777 5 2 \N \N 100 \N \N f f 0 \N 1577884886 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1195 2024-02-17 06:21:01.583 2024-10-13 16:45:17.696 MollyBondL6Y \N \N \N 50117305 5 2 \N \N 100 \N \N f f 0 \N 820890907 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1198 2024-09-05 13:14:29.542 2024-12-06 17:07:47.755 BriannaCareyCRT \N \N \N 76515200 5 2 \N \N 100 \N \N f f 0 \N 114189261 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1307 2024-10-20 06:44:16.752 2023-09-23 13:32:20.269 TraciStewartUZS \N \N \N 172628947 5 2 \N \N 100 \N \N f f 0 \N 23225747 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1326 2023-03-09 11:13:15.553 2024-09-05 15:26:48.303 ColinBowmanUI6 \N \N \N 126049512 5 2 \N \N 100 \N \N f f 0 \N 1786051111 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1394 2024-11-02 12:23:31.301 2024-05-14 05:45:06.103 JoannePerryUTE \N \N \N 79201463 5 2 \N \N 100 \N \N f f 0 \N 307545510 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1425 2022-11-30 20:48:01.857 2024-09-05 10:18:47.469 GeraldEatonFJI \N \N \N 63079724 5 2 \N \N 100 \N \N f f 0 \N 662133248 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1426 2023-11-29 13:25:47.765 2023-06-07 00:26:15.42 JorgeHowardN0B \N \N \N 98637683 5 2 \N \N 100 \N \N f f 0 \N 1734258129 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1433 2023-10-28 15:06:35.41 2025-01-16 08:58:42.492 JoelBookerP1I \N \N \N 140311373 5 2 \N \N 100 \N \N f f 0 \N 1247420343 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1438 2024-11-05 05:49:59.349 2024-11-26 08:01:40.184 JenniferRussell7H1 \N \N \N 111417671 5 2 \N \N 100 \N \N f f 0 \N 2391427411 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1454 2023-01-20 17:10:53 2024-07-24 00:47:40.665 ErikaMarquezCZW \N \N \N 94118864 5 2 \N \N 100 \N \N f f 0 \N 2008200321 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1549 2024-12-29 16:56:41.038 2023-11-09 15:44:41.827 MeganBriggsV3J \N \N \N 227597032 5 2 \N \N 100 \N \N f f 0 \N 2142297007 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1605 2024-09-07 22:01:40.041 2024-10-30 09:30:38.496 BreannaCarson9X1 \N \N \N 155850846 5 2 \N \N 100 \N \N f f 0 \N 131223685 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1620 2024-08-18 17:02:14.907 2023-05-02 18:26:57.951 DevinStout25P \N \N \N 194457658 5 2 \N \N 100 \N \N f f 0 \N 1394702036 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1632 2024-09-17 09:00:45.885 2023-11-23 23:15:53.832 GabrielleEsparzaWPS \N \N \N 177044290 5 2 \N \N 100 \N \N f f 0 \N 2187122537 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1647 2024-03-08 00:04:39.409 2023-09-27 06:18:09.25 MalikTucker61G \N \N \N 58775349 5 2 \N \N 100 \N \N f f 0 \N 1064852518 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1697 2024-03-29 05:39:09.655 2024-02-13 23:30:08.077 ChloeMaddox2NQ \N \N \N 12954294 5 2 \N \N 100 \N \N f f 0 \N 702725999 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1740 2023-04-07 03:33:09.297 2023-04-01 00:48:53.442 AllenBowersJC7 \N \N \N 63418283 5 2 \N \N 100 \N \N f f 0 \N 417686112 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1769 2023-05-25 14:14:20.721 2024-06-01 20:01:41.178 DebbieChambersMS7 \N \N \N 153049118 5 2 \N \N 100 \N \N f f 0 \N 770461797 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1803 2023-02-26 18:48:04.031 2023-05-25 18:09:36.217 JoWheelerYIY \N \N \N 242103110 5 2 \N \N 100 \N \N f f 0 \N 352195972 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1823 2023-02-20 10:03:25.329 2024-10-23 00:34:14.718 BrettIngram2MQ \N \N \N 205549674 5 2 \N \N 100 \N \N f f 0 \N 729823403 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2056 2023-07-29 00:44:19.031 2023-07-16 11:11:26.528 EarlRayTDW \N \N \N 247787179 5 2 \N \N 100 \N \N f f 0 \N 2588239206 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2088 2022-12-10 08:38:26.385 2025-02-18 22:38:48.39 ErnestVillegasVW6 \N \N \N 135017140 5 2 \N \N 100 \N \N f f 0 \N 1448922908 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2232 2023-04-05 11:19:42.733 2023-09-03 03:36:16.094 IsaacBarron3LI \N \N \N 104360254 5 2 \N \N 100 \N \N f f 0 \N 1055884472 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2327 2023-10-23 03:03:33.058 2023-10-12 04:34:02.17 CalebRushSEU \N \N \N 35882838 5 2 \N \N 100 \N \N f f 0 \N 2473637647 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2347 2024-06-27 02:38:01.415 2023-02-13 19:07:21.365 GreggLucas0AV \N \N \N 211620268 5 2 \N \N 100 \N \N f f 0 \N 387483497 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2508 2025-01-27 23:05:49.207 2023-07-18 00:36:49.565 CorySheaTKB \N \N \N 204768793 5 2 \N \N 100 \N \N f f 0 \N 265306767 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2583 2023-03-08 22:28:42.738 2024-05-05 01:27:28.133 KimHenryI4W \N \N \N 69411956 5 2 \N \N 100 \N \N f f 0 \N 588457109 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2596 2023-12-30 11:54:06.41 2024-08-19 12:47:34.539 LeslieGilbertBKF \N \N \N 99129091 5 2 \N \N 100 \N \N f f 0 \N 792046431 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2609 2022-11-19 06:30:44.827 2025-01-18 22:05:55.413 DebraDavisKYS \N \N \N 14109787 5 2 \N \N 100 \N \N f f 0 \N 926522583 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2734 2023-09-30 07:53:51.854 2023-08-13 11:38:34.015 KristySantosC0K \N \N \N 92289141 5 2 \N \N 100 \N \N f f 0 \N 348378421 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2735 2024-04-11 12:42:04.86 2024-08-26 09:00:41.979 LaurieHullXLF \N \N \N 5989116 5 2 \N \N 100 \N \N f f 0 \N 2466484592 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2775 2022-11-17 13:06:58.579 2024-12-09 19:46:35.262 EvelynPaceHBL \N \N \N 211492720 5 2 \N \N 100 \N \N f f 0 \N 1549424854 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5487 2024-01-05 21:56:52.106 2024-09-29 03:17:07.859 ChristianZavala0T7 \N \N \N 142326815 5 2 \N \N 100 \N \N f f 0 \N 428976364 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 691 2023-03-24 04:28:04.28 2023-11-07 03:45:04.698 DeanHartmanF68 \N \N \N 232344158 5 2 \N \N 100 \N \N f f 0 \N 2445307453 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1567 2023-02-28 01:19:40.641 2024-04-03 21:18:57.38 GailMaldonadoGCO \N \N \N 53453268 5 2 \N \N 100 \N \N f f 0 \N 1134599574 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20370 2024-01-04 20:42:30.904 2024-05-30 13:19:51.956 KatherineDay9X8 \N \N \N 91367855 5 2 \N \N 100 \N \N f f 0 \N 573381643 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1650 2024-02-09 06:20:13.515 2024-05-04 20:48:03.433 MarvinJamesTYU \N \N \N 142946862 5 2 \N \N 100 \N \N f f 0 \N 283069624 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2335 2023-11-28 19:47:09.269 2024-07-01 20:01:57.198 NatashaCooke7JM \N \N \N 15554583 5 2 \N \N 100 \N \N f f 0 \N 1194439193 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2620 2024-09-25 05:40:36.477 2023-02-28 20:23:32.37 DarrenGonzalesF9I \N \N \N 49691884 5 2 \N \N 100 \N \N f f 0 \N 1256580878 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2639 2025-02-22 03:36:38.235 2023-01-12 23:25:02.843 DanielPatel7YP \N \N \N 222094515 5 2 \N \N 100 \N \N f f 0 \N 1451547319 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2844 2024-04-24 17:20:12.883 2022-12-02 11:20:16.648 RuthChristianB81 \N \N \N 230753434 5 2 \N \N 100 \N \N f f 0 \N 538685850 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3347 2024-06-04 14:00:17.578 2024-10-16 07:30:01.495 DonnaJimenez8W0 \N \N \N 195288809 5 2 \N \N 100 \N \N f f 0 \N 513639692 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4238 2024-01-31 16:00:19.013 2023-08-22 19:18:46.461 DanielleDrake87P \N \N \N 233439540 5 2 \N \N 100 \N \N f f 0 \N 2458942189 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5728 2024-10-22 23:46:21.383 2023-04-15 18:23:23.459 GregoryChavez8QT \N \N \N 227229929 5 2 \N \N 100 \N \N f f 0 \N 1423581018 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7425 2024-02-13 10:51:03.899 2024-05-15 17:52:48.53 EdwardLeCE3 \N \N \N 37307075 5 2 \N \N 100 \N \N f f 0 \N 1474614518 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7869 2023-03-20 02:45:57.64 2023-04-19 17:13:51.755 NathanielFieldsAMN \N \N \N 19857433 5 2 \N \N 100 \N \N f f 0 \N 1058262835 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8729 2024-07-19 08:55:25.511 2023-06-25 06:48:56.481 JordanHobbsZ10 \N \N \N 153286758 5 2 \N \N 100 \N \N f f 0 \N 1260633289 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9084 2023-03-02 14:48:39.89 2024-12-18 00:14:31.834 CarlyKimQ9H \N \N \N 215195513 5 2 \N \N 100 \N \N f f 0 \N 2180138226 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9329 2025-02-16 04:43:44.514 2024-02-17 21:13:31.506 PattyMorseS6F \N \N \N 137256652 5 2 \N \N 100 \N \N f f 0 \N 237004888 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9331 2023-09-11 05:59:17.769 2024-01-30 15:53:16.491 DrewHenson6LA \N \N \N 117437945 5 2 \N \N 100 \N \N f f 0 \N 2487852234 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9333 2025-01-01 21:13:50.121 2024-09-30 04:28:56.065 FrancisJohnsIE2 \N \N \N 161337185 5 2 \N \N 100 \N \N f f 0 \N 1774824138 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9334 2023-04-03 22:36:20.317 2024-11-22 05:52:35.762 LatoyaLoveIJN \N \N \N 95007986 5 2 \N \N 100 \N \N f f 0 \N 1348618360 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9336 2025-03-10 12:27:38.422 2023-09-12 02:54:55.657 VeronicaAyersCVH \N \N \N 56287307 5 2 \N \N 100 \N \N f f 0 \N 29499278 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9337 2023-01-15 09:42:10.989 2023-10-04 01:21:52.72 JaimeKaufman2RS \N \N \N 111016200 5 2 \N \N 100 \N \N f f 0 \N 138914037 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9339 2023-04-02 07:57:42.985 2023-06-21 10:56:06.967 GloriaAdkins8NY \N \N \N 54151261 5 2 \N \N 100 \N \N f f 0 \N 2030446548 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9341 2024-07-28 13:29:12.813 2024-12-10 12:19:10.924 CraigGaines8Z7 \N \N \N 231689103 5 2 \N \N 100 \N \N f f 0 \N 305635634 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9346 2023-06-04 05:25:28.252 2024-01-06 04:02:22.487 DebbieEverett20O \N \N \N 103223113 5 2 \N \N 100 \N \N f f 0 \N 1659569771 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9349 2024-07-11 19:47:44.533 2025-02-10 00:28:22.288 RobertMcclure10G \N \N \N 50586776 5 2 \N \N 100 \N \N f f 0 \N 286514353 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9350 2023-02-28 00:18:26.143 2022-11-26 09:28:19.014 RickBlankenshipQHQ \N \N \N 160838457 5 2 \N \N 100 \N \N f f 0 \N 599613954 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9351 2024-12-18 14:28:36.752 2024-07-09 17:32:39.841 SherryDecker15I \N \N \N 219291210 5 2 \N \N 100 \N \N f f 0 \N 137039736 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9352 2023-03-04 12:18:27.275 2022-12-22 18:15:44.005 FaithLee141 \N \N \N 185857837 5 2 \N \N 100 \N \N f f 0 \N 1498587203 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9353 2024-09-20 16:39:57.316 2023-05-28 10:24:31.561 BrittneyBryanCKL \N \N \N 194135545 5 2 \N \N 100 \N \N f f 0 \N 667155421 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9354 2023-09-19 03:31:12.118 2024-10-23 12:35:47.945 MirandaMason4D0 \N \N \N 241925684 5 2 \N \N 100 \N \N f f 0 \N 996242869 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9355 2024-11-30 22:57:53.445 2024-10-02 00:12:39.687 AnnDixonGZQ \N \N \N 121884350 5 2 \N \N 100 \N \N f f 0 \N 1861846886 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9356 2023-06-26 19:10:49.738 2023-02-07 12:08:00.399 CynthiaBarberHXY \N \N \N 220710577 5 2 \N \N 100 \N \N f f 0 \N 1712219367 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9362 2024-02-01 08:03:09.078 2024-09-23 05:58:17.701 KathyBaxterPMB \N \N \N 101856403 5 2 \N \N 100 \N \N f f 0 \N 399128571 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9363 2024-06-10 04:01:39.309 2024-09-08 22:48:10.274 KristiBartonY45 \N \N \N 161071611 5 2 \N \N 100 \N \N f f 0 \N 448674914 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9364 2025-01-04 10:07:04.899 2023-08-11 03:22:21.55 RoseDayL40 \N \N \N 209989230 5 2 \N \N 100 \N \N f f 0 \N 1834832010 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9365 2024-07-24 01:31:42.682 2024-01-28 04:21:20.702 AntonioWintersKBG \N \N \N 161736052 5 2 \N \N 100 \N \N f f 0 \N 1805032940 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9367 2023-05-06 18:42:02.453 2025-01-11 10:25:04.089 FranklinCherryI2M \N \N \N 180525592 5 2 \N \N 100 \N \N f f 0 \N 1969214360 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9421 2022-11-23 04:22:43.721 2023-01-08 08:10:30.883 GilbertArcherXK0 \N \N \N 143422933 5 2 \N \N 100 \N \N f f 0 \N 1125409696 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9611 2025-02-16 10:28:35.062 2024-05-24 06:52:27.267 TheresaHoweNIF \N \N \N 112970765 5 2 \N \N 100 \N \N f f 0 \N 2156425613 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9669 2023-11-30 00:27:27.372 2025-02-04 17:08:45.248 AlejandraWilliamsVLM \N \N \N 128167977 5 2 \N \N 100 \N \N f f 0 \N 505444286 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9758 2024-08-01 20:54:46.16 2023-02-23 16:37:17.361 NormaReynoldsUG1 \N \N \N 59088791 5 2 \N \N 100 \N \N f f 0 \N 755086271 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9796 2024-06-24 11:41:44.234 2023-10-30 04:20:10.304 KathleenOdonnellNF0 \N \N \N 134104772 5 2 \N \N 100 \N \N f f 0 \N 2199475716 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9845 2023-10-08 00:08:17.85 2024-11-19 19:01:43.07 TanyaGregoryJ3Q \N \N \N 168800429 5 2 \N \N 100 \N \N f f 0 \N 1045325063 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9906 2023-01-21 20:48:45.262 2024-04-06 16:17:19.959 DianeWolfWMX \N \N \N 7428880 5 2 \N \N 100 \N \N f f 0 \N 1966202860 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9920 2023-09-16 00:17:22.914 2023-01-29 05:17:20.781 LindaKeithOKM \N \N \N 148634614 5 2 \N \N 100 \N \N f f 0 \N 2298323423 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10060 2024-11-21 23:59:30.181 2022-11-09 19:12:52.138 HaydenBondMN3 \N \N \N 63298333 5 2 \N \N 100 \N \N f f 0 \N 1998505539 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10102 2023-07-24 14:36:41.724 2024-06-07 10:54:16.481 NicholasWattsZJQ \N \N \N 46404633 5 2 \N \N 100 \N \N f f 0 \N 1489808471 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10849 2023-04-21 12:24:52.113 2023-03-26 06:04:24.089 JesusBarber6BV \N \N \N 190308050 5 2 \N \N 100 \N \N f f 0 \N 803044897 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11073 2023-01-06 21:35:37.369 2024-09-20 01:09:27.82 DianeMurphy5DB \N \N \N 2586639 5 2 \N \N 100 \N \N f f 0 \N 1837218884 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11145 2023-02-05 08:57:14.58 2023-06-26 01:16:13.578 KellyWilkinson3S0 \N \N \N 225766344 5 2 \N \N 100 \N \N f f 0 \N 55496920 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11498 2022-12-05 12:35:11.952 2022-11-24 07:51:31.219 JoRollinsJIN \N \N \N 145997808 5 2 \N \N 100 \N \N f f 0 \N 2173385187 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11516 2024-03-15 21:38:32.282 2023-08-27 19:47:52.797 DawnMontesE1M \N \N \N 213606316 5 2 \N \N 100 \N \N f f 0 \N 707327294 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16788 2024-06-05 16:29:06.179 2024-09-02 08:53:06.635 TomDodsonEFM \N \N \N 68457832 5 2 \N \N 100 \N \N f f 0 \N 965864243 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11561 2023-10-16 13:23:08.326 2022-12-21 03:15:02.206 RebekahSanchezLX1 \N \N \N 36153618 5 2 \N \N 100 \N \N f f 0 \N 1316320990 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11670 2024-02-12 13:39:39.825 2024-10-03 02:41:52.144 MarcoRomanRY2 \N \N \N 62236216 5 2 \N \N 100 \N \N f f 0 \N 2423573194 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11873 2024-01-01 20:59:19.887 2024-01-14 03:29:54.766 JoshuaArnold6J1 \N \N \N 213414400 5 2 \N \N 100 \N \N f f 0 \N 199499332 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11885 2025-02-02 22:27:32.925 2024-10-16 10:55:55.412 GlennPorter9LI \N \N \N 63917761 5 2 \N \N 100 \N \N f f 0 \N 1133987488 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11938 2022-12-10 12:39:59.388 2023-08-07 04:44:37.471 CharleneDixonM4T \N \N \N 15551342 5 2 \N \N 100 \N \N f f 0 \N 657811233 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12220 2023-03-09 16:22:19.975 2024-11-25 13:13:03.381 JimmyCamachoS3S \N \N \N 144609242 5 2 \N \N 100 \N \N f f 0 \N 1541085512 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12245 2023-07-25 15:54:31.034 2025-02-04 06:00:50.407 AustinRandolph1D2 \N \N \N 82513402 5 2 \N \N 100 \N \N f f 0 \N 2320695528 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1136 2022-12-16 19:30:02.716 2022-12-18 12:08:24.994 EvanMercadoZ6N \N \N \N 54810760 5 2 \N \N 100 \N \N f f 0 \N 2313950421 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2342 2024-08-10 01:48:34.008 2022-11-15 01:57:57.945 SpencerReese2SF \N \N \N 164043544 5 2 \N \N 100 \N \N f f 0 \N 1787527090 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3353 2024-02-21 19:41:05.066 2024-04-30 12:32:42.316 MirandaGentryA6P \N \N \N 183838585 5 2 \N \N 100 \N \N f f 0 \N 1990526054 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3456 2023-09-10 20:38:22.683 2024-02-23 05:49:08.584 RandallAlexander9FQ \N \N \N 198223315 5 2 \N \N 100 \N \N f f 0 \N 2537192705 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3717 2024-05-15 16:57:45.823 2023-05-10 23:48:26.913 TiffanyReeseN4O \N \N \N 181712069 5 2 \N \N 100 \N \N f f 0 \N 1233803158 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6421 2025-02-19 02:29:42.361 2025-03-17 05:35:57.77 EvanFrazier21G \N \N \N 28442703 5 2 \N \N 100 \N \N f f 0 \N 1944362400 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7827 2023-11-16 19:54:53.833 2023-12-13 19:45:43.703 RichardWelchRHI \N \N \N 238985602 5 2 \N \N 100 \N \N f f 0 \N 522425670 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7983 2024-12-19 06:11:29.887 2024-12-09 21:44:40.494 GabrielMatthewsY7H \N \N \N 195999292 5 2 \N \N 100 \N \N f f 0 \N 4695039 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12808 2023-04-30 13:52:05.191 2025-01-26 04:32:01.435 AlexanderMueller4RX \N \N \N 216639478 5 2 \N \N 100 \N \N f f 0 \N 405144981 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12819 2023-10-15 15:41:49.128 2024-09-15 06:07:16.967 GilbertWilsonHGW \N \N \N 198287806 5 2 \N \N 100 \N \N f f 0 \N 1820901835 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12946 2024-09-26 10:05:45.104 2024-12-10 00:52:02.54 GlenAcostaE6J \N \N \N 138148700 5 2 \N \N 100 \N \N f f 0 \N 1217675570 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12959 2024-10-27 08:06:21.012 2022-11-21 00:30:58.211 ShelleyCarrH8X \N \N \N 175163920 5 2 \N \N 100 \N \N f f 0 \N 2427709624 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13174 2022-12-06 03:29:28.248 2023-11-28 00:51:11.52 VictorBarber1I2 \N \N \N 239713597 5 2 \N \N 100 \N \N f f 0 \N 417465332 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13327 2023-02-03 16:30:12.642 2024-10-09 12:34:36.087 GlenGreerFS5 \N \N \N 60264253 5 2 \N \N 100 \N \N f f 0 \N 1785140857 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13398 2024-11-06 21:43:18.886 2023-12-02 21:52:22.039 SabrinaGarrison1G1 \N \N \N 100032041 5 2 \N \N 100 \N \N f f 0 \N 722304367 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13599 2023-09-15 19:34:47.8 2023-09-13 23:59:57.124 KaylaSnyderEBC \N \N \N 186255030 5 2 \N \N 100 \N \N f f 0 \N 1847792465 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13854 2025-03-10 04:26:00.258 2023-12-12 05:58:02.518 JudyDaniel09W \N \N \N 221256474 5 2 \N \N 100 \N \N f f 0 \N 1709347358 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14255 2024-01-12 14:03:13.98 2024-04-06 02:14:11.353 CalebZimmerman0L6 \N \N \N 230245700 5 2 \N \N 100 \N \N f f 0 \N 913381314 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14818 2024-08-21 10:41:10.581 2023-07-25 11:21:32.145 MichealStoutEOL \N \N \N 48512650 5 2 \N \N 100 \N \N f f 0 \N 163903102 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20059 2024-05-30 07:04:13.572 2024-07-12 08:34:31.408 KariFlynn8ZP \N \N \N 44101356 5 2 \N \N 100 \N \N f f 0 \N 1701628904 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15577 2025-03-25 13:32:02.352 2024-07-12 05:56:25.394 GailMccall2PC \N \N \N 148239414 5 2 \N \N 100 \N \N f f 0 \N 2292054727 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15662 2023-02-04 08:16:22.552 2024-02-13 17:12:07.311 HectorShahYYJ \N \N \N 188136209 5 2 \N \N 100 \N \N f f 0 \N 1081253202 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15941 2024-09-09 07:00:18.222 2023-09-26 15:51:53.562 MikaylaCurtisTNW \N \N \N 190822288 5 2 \N \N 100 \N \N f f 0 \N 284331373 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15978 2025-02-23 19:58:39.425 2023-02-05 21:44:09.912 RoseKaneRKU \N \N \N 176991191 5 2 \N \N 100 \N \N f f 0 \N 612982908 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16059 2023-07-13 08:38:17.566 2023-03-11 22:41:25.571 BrittneyKoch0IC \N \N \N 175710960 5 2 \N \N 100 \N \N f f 0 \N 594565746 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16124 2022-11-30 18:42:53.107 2024-09-19 17:09:15.638 MarthaBell08P \N \N \N 242854844 5 2 \N \N 100 \N \N f f 0 \N 1034758810 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16149 2024-02-08 17:08:38.738 2023-10-16 05:09:48.971 EricaBernardGQV \N \N \N 213757335 5 2 \N \N 100 \N \N f f 0 \N 1101889378 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16176 2022-12-07 14:45:49.672 2023-08-03 05:14:35.41 JudyLeach1Z5 \N \N \N 156514468 5 2 \N \N 100 \N \N f f 0 \N 2462932602 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16250 2024-03-17 16:56:13.801 2024-03-11 10:17:41.3 JohnnyPettyHR2 \N \N \N 200617455 5 2 \N \N 100 \N \N f f 0 \N 36603692 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16259 2023-05-08 10:17:25.225 2025-02-12 20:24:06.59 CharleneCurry1T6 \N \N \N 25594863 5 2 \N \N 100 \N \N f f 0 \N 1518194181 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16387 2023-02-28 08:11:09.474 2023-05-07 22:16:44.924 AprilVillanueva71J \N \N \N 138484935 5 2 \N \N 100 \N \N f f 0 \N 871638468 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16410 2023-05-25 02:00:59.678 2022-11-20 21:00:12.723 ChelseyGarciaXPM \N \N \N 50750169 5 2 \N \N 100 \N \N f f 0 \N 1374749405 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16440 2023-04-05 09:08:09.899 2023-01-27 19:00:32.001 JennyMolinaEMQ \N \N \N 22592116 5 2 \N \N 100 \N \N f f 0 \N 1273665817 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16456 2023-03-17 16:35:14.011 2023-06-26 12:57:47.776 SamuelPatelBI3 \N \N \N 94797525 5 2 \N \N 100 \N \N f f 0 \N 1862509669 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16562 2025-01-22 14:21:19.839 2025-03-08 16:07:14.066 ChristyMoody307 \N \N \N 65551990 5 2 \N \N 100 \N \N f f 0 \N 720474086 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16667 2024-06-16 12:45:56.811 2025-01-30 15:31:27.086 SandyMercado6VY \N \N \N 5161537 5 2 \N \N 100 \N \N f f 0 \N 1615246859 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16679 2023-07-20 08:48:21.248 2024-04-30 21:06:52.937 GraceCrosby6M8 \N \N \N 75079074 5 2 \N \N 100 \N \N f f 0 \N 1612892474 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16939 2024-02-09 02:01:13.921 2023-07-07 13:50:38.133 StephenQuinnYQ3 \N \N \N 201940047 5 2 \N \N 100 \N \N f f 0 \N 726720393 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17011 2024-11-01 02:49:05.268 2023-12-16 02:15:50.45 CourtneyMahoney4P0 \N \N \N 135723726 5 2 \N \N 100 \N \N f f 0 \N 1219750669 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17042 2022-11-14 02:09:51.02 2025-01-23 15:44:53.408 DorisFlemingV7Q \N \N \N 85929866 5 2 \N \N 100 \N \N f f 0 \N 1193700956 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17082 2024-03-13 16:05:47.766 2024-03-25 01:27:45.326 SierraHaydenCXL \N \N \N 119943489 5 2 \N \N 100 \N \N f f 0 \N 672242078 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17201 2025-02-16 12:54:24.285 2024-02-08 04:28:43.35 ColleenBarnesCAX \N \N \N 177339543 5 2 \N \N 100 \N \N f f 0 \N 2119054171 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17316 2025-01-01 19:33:37.439 2024-12-02 09:58:48.727 CheyenneDuarte5DR \N \N \N 147426399 5 2 \N \N 100 \N \N f f 0 \N 2093308102 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17321 2023-01-22 09:06:45.499 2023-04-08 21:25:27.681 ShaunHorneXQ3 \N \N \N 62732239 5 2 \N \N 100 \N \N f f 0 \N 225335287 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18241 2024-09-30 09:33:10.364 2023-12-27 09:14:26.33 EdgarRobersonFRB \N \N \N 22907677 5 2 \N \N 100 \N \N f f 0 \N 40970833 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18309 2023-08-06 23:03:49.531 2024-01-15 17:09:48.358 KirstenRhodes48O \N \N \N 210741432 5 2 \N \N 100 \N \N f f 0 \N 278634047 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18717 2022-12-11 15:36:31.87 2024-04-17 15:02:31.581 DanGeorgeL5D \N \N \N 142593293 5 2 \N \N 100 \N \N f f 0 \N 1480493420 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18727 2023-11-09 10:25:47.087 2023-03-27 22:03:19.554 LindsayChristianKO7 \N \N \N 215668477 5 2 \N \N 100 \N \N f f 0 \N 1070520966 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18731 2023-09-19 12:57:08.891 2024-07-10 04:48:38.242 MeredithLuceroPJ8 \N \N \N 58637167 5 2 \N \N 100 \N \N f f 0 \N 1837585654 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19016 2023-05-12 05:34:13.939 2023-04-19 06:09:31.75 LisaRivasAVV \N \N \N 164433646 5 2 \N \N 100 \N \N f f 0 \N 1561773745 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19126 2024-06-08 23:01:01.802 2024-12-09 08:52:51.151 MiguelCummingsG07 \N \N \N 210787517 5 2 \N \N 100 \N \N f f 0 \N 1466700761 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19138 2024-06-07 14:23:13.955 2023-11-03 13:54:09.893 TonyCrawfordHN7 \N \N \N 198033058 5 2 \N \N 100 \N \N f f 0 \N 2351005615 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20454 2023-03-20 06:20:10.939 2024-08-21 02:19:47.298 MandySerranoDKV \N \N \N 43851370 5 2 \N \N 100 \N \N f f 0 \N 885951367 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21599 2025-01-14 12:36:09.651 2023-10-26 00:35:41.711 DonHendrixE7S \N \N \N 120748353 5 2 \N \N 100 \N \N f f 0 \N 1866705065 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1038 2024-01-02 20:57:41.07 2025-02-09 01:14:10.387 AdrianVillaPV6 \N \N \N 12878113 5 2 \N \N 100 \N \N f f 0 \N 359808251 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1564 2023-01-08 19:12:38.25 2023-03-21 18:56:05.782 CassieLevyDVC \N \N \N 237636628 5 2 \N \N 100 \N \N f f 0 \N 1889211337 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10979 2023-12-25 08:44:02.901 2025-03-28 06:04:28.142 SteveGolden1K2 \N \N \N 112937109 5 2 \N \N 100 \N \N f f 0 \N 1372346238 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11417 2024-08-27 19:07:00.742 2022-12-14 15:11:13.902 DwaynePonceUUY \N \N \N 150414400 5 2 \N \N 100 \N \N f f 0 \N 212655634 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11522 2023-05-02 09:42:24.586 2023-09-21 09:40:09.936 HollyNicholsonI65 \N \N \N 68750579 5 2 \N \N 100 \N \N f f 0 \N 2314667587 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12507 2023-11-10 18:35:39.399 2025-01-31 05:55:25.737 MollyHouse1GS \N \N \N 186158804 5 2 \N \N 100 \N \N f f 0 \N 1567832467 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12768 2024-09-09 01:42:24.617 2023-07-23 16:28:13.142 JuliaRobbinsII4 \N \N \N 115559594 5 2 \N \N 100 \N \N f f 0 \N 2289541006 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14225 2023-01-16 08:36:34.703 2024-02-19 07:52:40.573 RichardWallVXM \N \N \N 172512614 5 2 \N \N 100 \N \N f f 0 \N 1666574819 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14295 2024-04-08 19:29:56.599 2023-12-28 08:35:47.627 SylviaKaiser6RB \N \N \N 207162437 5 2 \N \N 100 \N \N f f 0 \N 295541438 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14370 2024-04-08 05:48:14.428 2023-12-06 02:07:09.621 ArthurBeasley3QS \N \N \N 222265192 5 2 \N \N 100 \N \N f f 0 \N 532189956 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14650 2023-10-04 20:13:56.845 2025-02-09 05:10:58.595 ClarenceCraigLKV \N \N \N 114419486 5 2 \N \N 100 \N \N f f 0 \N 1940987784 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14990 2022-12-29 05:45:08.42 2024-01-19 03:05:26.561 BrentHunter7N2 \N \N \N 176592107 5 2 \N \N 100 \N \N f f 0 \N 212589800 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15408 2025-03-21 03:38:08.097 2025-02-05 13:28:28.134 AlvinAguilarW4X \N \N \N 62470605 5 2 \N \N 100 \N \N f f 0 \N 1196292359 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15588 2024-04-17 01:13:08.263 2024-11-17 03:15:07.895 SandraPatterson05F \N \N \N 133114786 5 2 \N \N 100 \N \N f f 0 \N 2124280697 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15624 2023-04-03 10:07:13.939 2023-10-28 09:45:34.241 JaneGilmoreQ8O \N \N \N 226900380 5 2 \N \N 100 \N \N f f 0 \N 246546206 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15719 2022-12-16 06:47:33.752 2024-11-29 16:25:33.762 RicardoHunt1LO \N \N \N 30874717 5 2 \N \N 100 \N \N f f 0 \N 2361706857 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15728 2024-07-23 15:19:00.919 2024-04-27 05:06:03.131 SabrinaWoodwardTU5 \N \N \N 139140523 5 2 \N \N 100 \N \N f f 0 \N 1660500797 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21269 2024-12-04 15:35:31.928 2023-10-11 02:17:55.322 EduardoMullenW1I \N \N \N 217795120 5 2 \N \N 100 \N \N f f 0 \N 638650469 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15843 2023-06-27 21:51:23.042 2024-10-23 13:19:48.959 TerryBraunN2W \N \N \N 206884301 5 2 \N \N 100 \N \N f f 0 \N 1747861941 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16126 2023-08-13 08:19:39.645 2023-07-31 00:04:45.794 MatthewPeterson6ZX \N \N \N 141395436 5 2 \N \N 100 \N \N f f 0 \N 2347806500 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16230 2023-10-30 11:02:59.77 2024-10-24 14:30:12.78 RubenVanceKDR \N \N \N 191268660 5 2 \N \N 100 \N \N f f 0 \N 1603128441 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16276 2024-04-17 22:04:29.641 2022-12-11 04:24:19.902 RobynGutierrezR3C \N \N \N 222999829 5 2 \N \N 100 \N \N f f 0 \N 2375037865 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16447 2023-12-15 15:48:02.482 2023-12-12 15:57:42.336 PeterJacobsonBWW \N \N \N 83856072 5 2 \N \N 100 \N \N f f 0 \N 902861242 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16543 2025-02-01 19:19:56.682 2023-11-19 16:21:37.524 GeorgeOlsonUH6 \N \N \N 201911572 5 2 \N \N 100 \N \N f f 0 \N 1833885663 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16638 2022-12-05 17:29:04.474 2025-02-18 17:56:20.816 GloriaBennettFCX \N \N \N 39240076 5 2 \N \N 100 \N \N f f 0 \N 2474457629 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16684 2023-01-25 18:16:46.786 2025-01-05 08:39:39.862 MirandaGordonQVW \N \N \N 42946564 5 2 \N \N 100 \N \N f f 0 \N 1560158118 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16753 2024-04-11 01:01:39.13 2025-03-23 14:56:00.616 WayneAustin4NR \N \N \N 26027858 5 2 \N \N 100 \N \N f f 0 \N 610931834 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 621 2024-12-15 08:34:13.83 2024-09-21 17:16:34.183 EmmaWebster7RI \N \N \N 163935802 5 2 \N \N 100 \N \N f f 0 \N 1425021577 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 622 2024-04-04 09:39:59.941 2022-12-12 18:01:12.437 MaryStanton5XB \N \N \N 199275392 5 2 \N \N 100 \N \N f f 0 \N 1468065616 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 624 2024-06-21 00:58:41.86 2025-02-22 17:42:27.891 FrancesSalazarPBH \N \N \N 210571796 5 2 \N \N 100 \N \N f f 0 \N 1997539789 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 627 2024-07-01 23:45:08.13 2023-09-01 07:01:40.15 ToniAustin7ZY \N \N \N 54621023 5 2 \N \N 100 \N \N f f 0 \N 2388746602 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 629 2024-01-14 19:18:27.828 2024-07-01 19:07:46.568 TaylorHartN1H \N \N \N 204648917 5 2 \N \N 100 \N \N f f 0 \N 2040020885 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 630 2023-04-19 00:10:01.391 2024-04-08 06:50:32.571 JorgePhillips6ZR \N \N \N 233595910 5 2 \N \N 100 \N \N f f 0 \N 1083935231 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 631 2024-07-19 09:35:20.873 2025-01-14 10:29:38.491 ChelseaRowlandO91 \N \N \N 142265289 5 2 \N \N 100 \N \N f f 0 \N 974029467 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 636 2023-04-16 18:32:55.553 2023-11-13 07:55:35.951 JoelAguirreQP2 \N \N \N 217125193 5 2 \N \N 100 \N \N f f 0 \N 923133334 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13467 2024-11-04 16:56:20.766 2025-02-21 04:44:00.645 MaxwellSandovalTYU \N \N \N 144910929 5 2 \N \N 100 \N \N f f 0 \N 623212751 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17094 2023-05-12 14:29:37.523 2023-06-15 10:17:33.849 GabrielleMorenoX7L \N \N \N 29787382 5 2 \N \N 100 \N \N f f 0 \N 601405567 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20701 2025-02-09 14:57:55.146 2024-11-03 15:09:42.501 JeanSweeneyP0F \N \N \N 134952380 5 2 \N \N 100 \N \N f f 0 \N 877243970 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15806 2023-11-16 11:18:02.203 2022-12-02 01:30:56.84 RebeccaBlanchardXB8 \N \N \N 190394538 5 2 \N \N 100 \N \N f f 0 \N 619243190 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20751 2023-07-04 19:49:15.304 2022-12-01 17:44:52.777 CandiceMendozaU7N \N \N \N 157676713 5 2 \N \N 100 \N \N f f 0 \N 1343656386 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21791 2023-02-23 21:50:11.477 2024-08-01 08:40:45.772 KurtYatesXEV \N \N \N 158399415 5 2 \N \N 100 \N \N f f 0 \N 1416351007 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19087 2023-08-14 14:29:51.324 2024-05-10 10:49:15.872 SylviaPughH6Z \N \N \N 145480487 5 2 \N \N 100 \N \N f f 0 \N 2057281660 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21249 2023-05-20 20:09:35.125 2024-02-07 18:44:55.787 MercedesNichols5Q4 \N \N \N 179290050 5 2 \N \N 100 \N \N f f 0 \N 2040497397 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8506 2025-02-09 18:26:56.882 2023-07-30 06:18:21.449 HunterWilkinsWLE \N \N \N 17763818 5 2 \N \N 100 \N \N f f 0 \N 543717824 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2459 2024-03-06 09:14:22.018 2024-06-14 12:35:09.001 KristenAyalaVS0 \N \N \N 84705109 5 2 \N \N 100 \N \N f f 0 \N 1344839534 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21131 2023-04-11 07:44:00.586 2024-07-11 22:46:54.889 TamiReeves4O8 \N \N \N 222746662 5 2 \N \N 100 \N \N f f 0 \N 348051465 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21119 2023-03-02 10:00:00.162 2024-11-08 02:38:16.153 MelindaEverettDO1 \N \N \N 221923864 5 2 \N \N 100 \N \N f f 0 \N 2303921307 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19857 2023-04-14 00:48:54.009 2023-09-03 18:23:08.327 DarinJuarezDZF \N \N \N 102473219 5 2 \N \N 100 \N \N f f 0 \N 2301514426 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20646 2024-03-17 09:58:04.472 2024-02-20 01:21:16.332 PrestonCummings8Y3 \N \N \N 107299572 5 2 \N \N 100 \N \N f f 0 \N 1432277605 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20412 2023-07-05 18:38:03.409 2023-01-09 11:08:16.971 MaxwellMonroeSBF \N \N \N 80078688 5 2 \N \N 100 \N \N f f 0 \N 2250567524 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21079 2024-09-14 15:34:43.972 2022-11-26 18:31:55.445 LindseyMoran47Z \N \N \N 159164743 5 2 \N \N 100 \N \N f f 0 \N 882423761 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20998 2023-08-18 18:31:14.443 2024-12-31 02:06:11.609 JoCombs0CX \N \N \N 145283012 5 2 \N \N 100 \N \N f f 0 \N 1711117136 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21575 2022-11-25 14:36:24.312 2023-06-04 12:00:46.926 BrandiNelsonG9Q \N \N \N 173265957 5 2 \N \N 100 \N \N f f 0 \N 1198887822 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21172 2023-08-14 03:02:13.741 2024-02-18 07:16:55.666 KylieSmall6HW \N \N \N 63394085 5 2 \N \N 100 \N \N f f 0 \N 2376204793 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16424 2025-02-18 23:52:18.457 2024-01-02 11:12:17.772 ChristinaHaasF1M \N \N \N 18041821 5 2 \N \N 100 \N \N f f 0 \N 2499685712 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 876 2023-07-03 00:54:09.72 2023-03-05 12:45:03.103 CarolineCaseyBP3 \N \N \N 65972291 5 2 \N \N 100 \N \N f f 0 \N 1843211536 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1784 2023-01-13 17:51:06.338 2023-01-10 05:30:18.792 RobertOchoaN4W \N \N \N 19920966 5 2 \N \N 100 \N \N f f 0 \N 1356868008 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21688 2024-03-27 11:18:01.729 2023-02-03 03:49:22.946 ManuelPerry2GX \N \N \N 95947536 5 2 \N \N 100 \N \N f f 0 \N 2164636721 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21222 2024-03-01 18:30:59.504 2024-03-15 04:45:47.028 BarryBaker0DI \N \N \N 160104099 5 2 \N \N 100 \N \N f f 0 \N 706630453 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7978 2023-11-18 22:30:02.211 2024-09-12 03:20:15.129 GuyAndrews87Z \N \N \N 185579085 5 2 \N \N 100 \N \N f f 0 \N 2047118276 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6463 2023-07-09 08:11:06.281 2023-03-22 16:43:49.286 DarylMorrowLJL \N \N \N 155021447 5 2 \N \N 100 \N \N f f 0 \N 1472287056 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 894 2023-11-11 23:00:59.514 2024-04-26 05:26:11.94 ManuelMcclainX6F \N \N \N 174743947 5 2 \N \N 100 \N \N f f 0 \N 2425452354 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21339 2024-02-15 13:48:14.879 2024-04-07 01:22:09.469 KathleenAlvarezWMU \N \N \N 83504993 5 2 \N \N 100 \N \N f f 0 \N 1325365044 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1733 2023-07-14 08:40:01.91 2024-10-02 23:04:11.707 DylanHurleyGJP \N \N \N 25150722 5 2 \N \N 100 \N \N f f 0 \N 1467456554 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14220 2024-04-19 09:57:36.863 2024-05-14 05:39:05.19 WayneShawGR3 \N \N \N 199740652 5 2 \N \N 100 \N \N f f 0 \N 1297972143 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20433 2024-08-26 09:41:52.743 2023-10-22 10:03:49.846 DebraBarrett6GC \N \N \N 58399491 5 2 \N \N 100 \N \N f f 0 \N 2315389588 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15052 2023-01-07 04:10:21.638 2022-11-26 09:22:17.592 AnitaWatkins4K4 \N \N \N 82077886 5 2 \N \N 100 \N \N f f 0 \N 1806833412 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15560 2024-11-02 22:08:57.061 2024-09-02 04:17:16.522 TheodoreHuberNA5 \N \N \N 9031430 5 2 \N \N 100 \N \N f f 0 \N 179940336 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21263 2023-08-17 23:52:32.321 2022-12-05 03:43:49.731 AlexisLawson63C \N \N \N 182632245 5 2 \N \N 100 \N \N f f 0 \N 1476508582 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21713 2024-05-30 23:56:51.18 2025-01-28 19:44:34.3 RobertaBuckW8R \N \N \N 234612792 5 2 \N \N 100 \N \N f f 0 \N 127563797 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20717 2023-11-13 01:02:33.966 2022-12-11 14:38:27.483 EvanPotterOBL \N \N \N 193346049 5 2 \N \N 100 \N \N f f 0 \N 1821494107 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6616 2023-02-23 01:00:49.524 2023-10-31 23:00:08.485 KarenBraun5G9 \N \N \N 157304474 5 2 \N \N 100 \N \N f f 0 \N 2106290523 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3461 2023-07-17 00:55:57.514 2024-03-19 02:58:50.039 FrancesWuNO2 \N \N \N 25572207 5 2 \N \N 100 \N \N f f 0 \N 835532514 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20840 2024-08-19 07:43:11.602 2023-06-16 21:23:03.888 YeseniaMontoyaD0Y \N \N \N 89105234 5 2 \N \N 100 \N \N f f 0 \N 60856733 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20858 2024-12-28 21:47:41.663 2023-04-11 22:50:30.539 StevenMartinezTGS \N \N \N 182330348 5 2 \N \N 100 \N \N f f 0 \N 1923940819 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21356 2023-08-11 06:57:22.653 2024-01-12 16:26:11.949 AlexisSilvaQWN \N \N \N 224914484 5 2 \N \N 100 \N \N f f 0 \N 2217152976 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21037 2024-10-11 13:32:35.311 2024-09-22 20:46:43.012 MallorySimmonsOQS \N \N \N 94044919 5 2 \N \N 100 \N \N f f 0 \N 457549104 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13042 2023-09-08 19:07:25.731 2024-09-22 09:40:21.47 YvonneWoodardEA4 \N \N \N 22007965 5 2 \N \N 100 \N \N f f 0 \N 1696522466 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8173 2024-12-28 22:52:35.999 2024-06-27 11:10:56.881 PeggyUnderwood1TS \N \N \N 220739187 5 2 \N \N 100 \N \N f f 0 \N 1778097503 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21379 2024-01-27 11:45:04.719 2024-12-08 17:03:45.734 VanessaRay1RD \N \N \N 200045223 5 2 \N \N 100 \N \N f f 0 \N 1599350667 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21090 2024-03-09 17:55:10.668 2023-12-26 16:38:25.929 SummerNovak9CW \N \N \N 63441561 5 2 \N \N 100 \N \N f f 0 \N 272481445 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1447 2023-11-05 03:51:25.158 2024-05-07 19:28:18.886 EddieDennisM4V \N \N \N 117688395 5 2 \N \N 100 \N \N f f 0 \N 1179311906 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20980 2023-02-05 07:25:42.014 2024-08-01 22:04:06.072 SophiaAcevedoKQQ \N \N \N 180981929 5 2 \N \N 100 \N \N f f 0 \N 1999653851 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21159 2024-07-29 06:40:02.506 2024-05-24 03:22:10.244 JimDelacruz9WW \N \N \N 24252447 5 2 \N \N 100 \N \N f f 0 \N 703795350 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5085 2024-11-07 15:31:35.915 2023-08-24 05:32:54.483 TerranceLeR7U \N \N \N 154295710 5 2 \N \N 100 \N \N f f 0 \N 2241291604 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20647 2024-10-21 01:00:16.688 2023-11-22 18:31:27.784 IsaiahLevineHGP \N \N \N 230100151 5 2 \N \N 100 \N \N f f 0 \N 149997271 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10398 2024-01-22 18:08:02.058 2023-07-28 14:02:00.797 ZoeMolinaRHL \N \N \N 45705797 5 2 \N \N 100 \N \N f f 0 \N 1870761341 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20623 2024-04-13 00:21:52.528 2024-02-09 03:21:11.649 AngieHouston0Z8 \N \N \N 227480381 5 2 \N \N 100 \N \N f f 0 \N 1513491687 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8004 2024-09-12 16:48:42.044 2024-01-07 09:18:49.7 JocelynMaddenBPT \N \N \N 187389532 5 2 \N \N 100 \N \N f f 0 \N 1459121918 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21833 2022-11-26 13:01:53.251 2023-06-06 04:16:50.763 BeverlyBestWPZ \N \N \N 30465451 5 2 \N \N 100 \N \N f f 0 \N 1410205845 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21712 2024-03-24 11:08:47.564 2024-04-06 00:56:05.949 MichaelLara1QV \N \N \N 125349809 5 2 \N \N 100 \N \N f f 0 \N 2152551836 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17976 2023-04-16 23:07:51.189 2024-08-16 00:05:00.971 GeraldPeckRTQ \N \N \N 141001383 5 2 \N \N 100 \N \N f f 0 \N 1526749531 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21555 2024-09-13 19:43:26.097 2022-12-18 13:11:00.872 MakaylaJosephFL3 \N \N \N 217376165 5 2 \N \N 100 \N \N f f 0 \N 628245094 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15690 2023-07-08 04:54:24.955 2023-11-03 23:18:02.119 KirkKlineCLN \N \N \N 190463850 5 2 \N \N 100 \N \N f f 0 \N 1300415476 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16754 2024-07-26 02:52:21.446 2024-02-12 14:23:56.97 AliceHunt51G \N \N \N 73645216 5 2 \N \N 100 \N \N f f 0 \N 1880826622 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10433 2023-08-01 00:18:48.733 2024-08-13 00:31:29.678 KariDaviesPS7 \N \N \N 176309086 5 2 \N \N 100 \N \N f f 0 \N 257945590 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1124 2024-06-27 04:30:00.961 2024-10-15 15:40:39.728 GloriaCordovaQYD \N \N \N 188296733 5 2 \N \N 100 \N \N f f 0 \N 1508009750 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7580 2025-02-28 23:50:54.867 2025-02-19 21:24:26.35 BarryRoyKIZ \N \N \N 119577650 5 2 \N \N 100 \N \N f f 0 \N 1941105673 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18430 2023-04-26 03:28:08.517 2025-02-23 23:59:52.047 MarcoBallard9KH \N \N \N 167016122 5 2 \N \N 100 \N \N f f 0 \N 969081837 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3706 2024-02-08 15:22:21.622 2023-06-25 01:12:31.427 CoryBowersTQ1 \N \N \N 25422739 5 2 \N \N 100 \N \N f f 0 \N 2160952122 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19813 2023-02-04 23:33:25.413 2023-09-27 00:53:06.494 NathanielFinleyW26 \N \N \N 10825678 5 2 \N \N 100 \N \N f f 0 \N 916162468 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20201 2023-02-11 05:10:41.636 2023-01-01 15:17:15.324 DylanWilliamsTGK \N \N \N 225861292 5 2 \N \N 100 \N \N f f 0 \N 2499465902 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10934 2023-12-03 03:05:48.743 2023-01-14 03:51:22.42 DannySheltonX2P \N \N \N 220683683 5 2 \N \N 100 \N \N f f 0 \N 277938367 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21184 2023-05-25 21:17:34.119 2024-12-23 14:53:41.856 JoseWilkinsonBYH \N \N \N 108647043 5 2 \N \N 100 \N \N f f 0 \N 1991339576 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20655 2024-09-10 13:24:08.259 2025-03-22 01:46:54.448 BrettAdkins3SS \N \N \N 26367457 5 2 \N \N 100 \N \N f f 0 \N 1203260150 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7916 2024-06-23 08:29:06.387 2023-12-06 10:50:19.084 CathyKirbyNYI \N \N \N 126063587 5 2 \N \N 100 \N \N f f 0 \N 4957569 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5495 2024-03-02 20:23:14.289 2024-09-03 02:45:43.274 TerranceEnglishQKO \N \N \N 187717851 5 2 \N \N 100 \N \N f f 0 \N 109647855 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9438 2023-01-11 05:46:23.693 2024-05-23 17:53:23.516 MarcVincentHO3 \N \N \N 160749692 5 2 \N \N 100 \N \N f f 0 \N 1687448658 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16571 2023-03-07 13:52:24.141 2023-04-19 08:52:04.092 CaseyHoffmanHYD \N \N \N 33896480 5 2 \N \N 100 \N \N f f 0 \N 1183057115 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13249 2024-08-25 19:49:04.433 2023-06-23 16:34:24.772 DawnVasquez4RO \N \N \N 222617101 5 2 \N \N 100 \N \N f f 0 \N 835155098 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1761 2023-07-10 21:07:13.136 2024-01-02 09:27:23.572 JuanMcmillanSUK \N \N \N 156937550 5 2 \N \N 100 \N \N f f 0 \N 155217265 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10519 2024-11-23 11:58:15.86 2024-05-20 09:06:22.128 YvonneSantiago174 \N \N \N 219375971 5 2 \N \N 100 \N \N f f 0 \N 544759535 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3990 2023-12-31 23:48:18.838 2024-05-24 01:36:56.707 GabriellaMcintosh1RW \N \N \N 239406877 5 2 \N \N 100 \N \N f f 0 \N 357690828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20612 2023-08-06 02:36:33.488 2023-05-30 17:45:05.514 SamuelDunnSPR \N \N \N 212835457 5 2 \N \N 100 \N \N f f 0 \N 1460359715 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21369 2023-06-26 16:00:23.041 2025-01-26 10:53:56.003 MasonFarrellR6R \N \N \N 107832359 5 2 \N \N 100 \N \N f f 0 \N 2444815295 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20891 2023-12-25 08:23:44.222 2024-10-03 11:37:13.817 JennaFisherLHM \N \N \N 91071730 5 2 \N \N 100 \N \N f f 0 \N 678070059 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18011 2023-01-24 07:28:32.94 2023-09-18 08:35:00.406 KatherineBondAJK \N \N \N 220853699 5 2 \N \N 100 \N \N f f 0 \N 1725875330 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8726 2024-11-04 15:46:24.746 2024-02-12 08:42:59.815 GuyRodriguezJZI \N \N \N 13589461 5 2 \N \N 100 \N \N f f 0 \N 1840252483 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21794 2023-03-30 14:11:18.43 2024-10-17 05:18:35.166 ShelleyBeltranC57 \N \N \N 243123687 5 2 \N \N 100 \N \N f f 0 \N 1964542012 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15890 2024-01-04 06:22:34.407 2023-08-06 15:03:23.578 WendyLevy9R1 \N \N \N 114155198 5 2 \N \N 100 \N \N f f 0 \N 306509373 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6688 2023-12-14 16:40:17.977 2023-01-03 03:26:40.749 KylieBrockBJX \N \N \N 222832608 5 2 \N \N 100 \N \N f f 0 \N 2424994048 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14774 2023-08-26 05:31:09.314 2023-05-13 16:00:15.496 MarvinCastroRRV \N \N \N 73949470 5 2 \N \N 100 \N \N f f 0 \N 269632790 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21803 2023-06-29 19:22:24.547 2023-05-25 13:49:45.885 MichaelBurke4E3 \N \N \N 50023574 5 2 \N \N 100 \N \N f f 0 \N 126054193 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21022 2023-04-02 04:36:26.21 2023-06-29 08:36:27.196 KristyMarquezMC1 \N \N \N 156299592 5 2 \N \N 100 \N \N f f 0 \N 1077630552 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21060 2023-03-01 13:19:02.014 2023-01-02 12:46:46.627 DevinMerrittA3P \N \N \N 44176129 5 2 \N \N 100 \N \N f f 0 \N 1245496595 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21281 2023-06-18 21:14:30.829 2024-10-23 06:26:20.73 ShawnaEvansPJZ \N \N \N 137826937 5 2 \N \N 100 \N \N f f 0 \N 172794487 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4323 2022-11-28 07:46:13.24 2024-11-15 22:36:41.366 YeseniaVegaKE2 \N \N \N 203547281 5 2 \N \N 100 \N \N f f 0 \N 2358488247 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 686 2025-01-02 20:52:15.953 2024-05-15 14:53:20.308 ClaytonHall3UW \N \N \N 186965466 5 2 \N \N 100 \N \N f f 0 \N 1074621043 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21202 2023-06-22 13:34:00.527 2023-01-24 17:14:00.515 EdwinLeonardJSS \N \N \N 120023308 5 2 \N \N 100 \N \N f f 0 \N 2340787161 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21798 2024-02-18 19:59:17.77 2024-04-29 21:28:15.735 MiguelLeonZ4G \N \N \N 54117319 5 2 \N \N 100 \N \N f f 0 \N 1797661749 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21291 2024-03-05 15:48:54.164 2024-09-06 00:30:28.214 AngieStafford181 \N \N \N 200959942 5 2 \N \N 100 \N \N f f 0 \N 1369995337 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21051 2024-10-06 01:40:05.935 2023-12-26 13:20:11.039 LaurieArellanoB7A \N \N \N 19443130 5 2 \N \N 100 \N \N f f 0 \N 1429170047 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7659 2025-03-01 20:34:28.134 2024-10-14 20:11:45.928 CassieJordanG6J \N \N \N 155871176 5 2 \N \N 100 \N \N f f 0 \N 2160913091 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1577 2025-01-02 18:28:31.394 2024-11-19 18:15:18.787 BillyDouglasUIC \N \N \N 150271400 5 2 \N \N 100 \N \N f f 0 \N 160951734 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12738 2023-04-21 05:39:20.791 2023-09-24 23:13:42.233 HeatherFritzZS1 \N \N \N 60076730 5 2 \N \N 100 \N \N f f 0 \N 2380929175 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21012 2024-04-27 17:04:23.257 2024-04-25 17:00:33.556 DonnaJohnsF9K \N \N \N 89381458 5 2 \N \N 100 \N \N f f 0 \N 1578296609 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21442 2025-01-03 00:03:13.787 2022-11-13 06:06:50.896 MarthaPatrickKS7 \N \N \N 65350310 5 2 \N \N 100 \N \N f f 0 \N 2322616422 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21578 2024-07-12 14:56:14.288 2025-01-16 00:31:51.711 FrederickBautista32M \N \N \N 220690967 5 2 \N \N 100 \N \N f f 0 \N 1489219134 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10536 2025-01-04 09:02:46.681 2024-07-04 02:52:16.608 GeraldHerringHN4 \N \N \N 162214348 5 2 \N \N 100 \N \N f f 0 \N 1923010292 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18412 2025-01-16 11:54:38.903 2023-10-27 19:46:14.676 HannahFlynn4VB \N \N \N 187934485 5 2 \N \N 100 \N \N f f 0 \N 1281164958 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21701 2023-06-02 15:58:28.47 2023-09-16 11:01:48.322 TanyaJosephR5X \N \N \N 139726707 5 2 \N \N 100 \N \N f f 0 \N 1308605391 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2829 2024-11-14 03:21:57.959 2024-01-21 15:06:24.645 DanielRoblesLRW \N \N \N 43154744 5 2 \N \N 100 \N \N f f 0 \N 2228626276 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9982 2024-10-23 09:41:51.675 2024-05-27 04:53:28.508 ChristieHampton74A \N \N \N 23941239 5 2 \N \N 100 \N \N f f 0 \N 470139905 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12721 2024-10-30 16:43:51.235 2023-11-03 06:03:11.168 ChristyMora40P \N \N \N 8962961 5 2 \N \N 100 \N \N f f 0 \N 323750089 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18231 2024-07-19 14:33:58.718 2024-06-18 03:31:05.337 CraigRichard3M3 \N \N \N 65938179 5 2 \N \N 100 \N \N f f 0 \N 944380068 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15336 2024-01-16 04:44:13.315 2024-06-19 12:38:50.985 MoniquePollardRRF \N \N \N 168589607 5 2 \N \N 100 \N \N f f 0 \N 905173209 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21829 2024-02-25 18:50:20.647 2023-11-03 13:30:34.923 JodyCastroM36 \N \N \N 245870088 5 2 \N \N 100 \N \N f f 0 \N 1164731988 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20881 2024-03-14 21:21:02.515 2023-07-19 00:34:02.128 ShaneChristianPLJ \N \N \N 225048375 5 2 \N \N 100 \N \N f f 0 \N 2330117892 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3506 2023-03-03 16:57:47.95 2024-12-27 22:15:13.526 MarilynEricksonQ38 \N \N \N 195636778 5 2 \N \N 100 \N \N f f 0 \N 2353781738 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18232 2025-02-07 04:27:19.676 2023-02-02 21:29:27.998 SydneyEvansL3J \N \N \N 223316915 5 2 \N \N 100 \N \N f f 0 \N 1865008584 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7119 2024-10-24 15:19:15.093 2023-08-10 01:50:48.065 AlexaCarrollF5L \N \N \N 175145608 5 2 \N \N 100 \N \N f f 0 \N 2391635738 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2367 2024-06-17 01:30:15.946 2025-02-13 08:21:38.73 CristianBallardEW5 \N \N \N 196694966 5 2 \N \N 100 \N \N f f 0 \N 2004025375 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20829 2024-10-28 17:41:49.95 2023-03-08 18:54:32.244 AshleeEdwards8WA \N \N \N 17327730 5 2 \N \N 100 \N \N f f 0 \N 1411674724 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18734 2024-01-06 00:22:47.989 2024-10-17 19:17:35.719 MorganAbbottP4C \N \N \N 44634538 5 2 \N \N 100 \N \N f f 0 \N 308524895 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21332 2024-06-29 00:01:43.379 2024-03-14 08:20:32.358 ChristyAbbottXM1 \N \N \N 56501560 5 2 \N \N 100 \N \N f f 0 \N 1203754219 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15119 2024-09-15 07:55:02.198 2025-02-08 16:10:58.703 DeniseLoweSY3 \N \N \N 230581221 5 2 \N \N 100 \N \N f f 0 \N 2216748418 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16154 2022-11-09 09:40:27.247 2024-06-12 21:42:34.21 DawnRandallTYN \N \N \N 81440989 5 2 \N \N 100 \N \N f f 0 \N 2414249533 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19924 2023-06-02 07:26:43.59 2022-12-24 11:19:33.11 AndreaPriceY6J \N \N \N 63709950 5 2 \N \N 100 \N \N f f 0 \N 606674394 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21044 2024-05-19 12:26:04.126 2024-04-25 23:28:32.026 MarciaLindsey1XW \N \N \N 180316325 5 2 \N \N 100 \N \N f f 0 \N 587709450 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14941 2023-04-05 05:37:34.825 2024-01-24 19:08:11.689 LeahGarnerLPT \N \N \N 7242744 5 2 \N \N 100 \N \N f f 0 \N 305089735 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21422 2023-12-16 17:40:19.236 2023-10-25 17:55:39.255 JacobSuttonOGR \N \N \N 67119054 5 2 \N \N 100 \N \N f f 0 \N 175619937 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18426 2022-12-15 17:21:54.412 2022-11-16 16:10:57.236 NicoleSoto0ZE \N \N \N 208106639 5 2 \N \N 100 \N \N f f 0 \N 262050370 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20972 2023-03-25 08:09:03.184 2023-05-15 15:06:09.897 JamesSilvaS5K \N \N \N 94055658 5 2 \N \N 100 \N \N f f 0 \N 596590322 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21103 2024-01-11 01:05:42.7 2025-03-28 18:24:48.932 CarlWileySGK \N \N \N 205100781 5 2 \N \N 100 \N \N f f 0 \N 1048525615 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20619 2023-01-14 15:35:03.81 2023-06-20 08:09:10.43 NicolasWelchWF3 \N \N \N 64981855 5 2 \N \N 100 \N \N f f 0 \N 1363505344 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20864 2023-08-16 12:35:40.96 2023-01-23 22:53:10.452 RitaAyala1ZW \N \N \N 84743825 5 2 \N \N 100 \N \N f f 0 \N 540655335 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13217 2023-03-06 10:08:13.41 2025-03-22 17:22:35.357 LauraOchoaSEX \N \N \N 150160855 5 2 \N \N 100 \N \N f f 0 \N 1817780297 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21766 2023-11-01 16:36:23.495 2025-01-06 17:38:24.191 BrandonKleinMQJ \N \N \N 91244441 5 2 \N \N 100 \N \N f f 0 \N 1324369845 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20706 2024-08-26 22:47:03.694 2024-06-14 18:45:51.507 TomSpencerHCI \N \N \N 223687098 5 2 \N \N 100 \N \N f f 0 \N 405724289 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15337 2025-02-05 03:20:15.403 2023-03-17 14:07:36.673 SonyaTownsendLL8 \N \N \N 115248058 5 2 \N \N 100 \N \N f f 0 \N 22756146 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21418 2025-02-14 05:39:48.755 2024-01-28 07:01:19.487 JaimeWallsLLI \N \N \N 195046805 5 2 \N \N 100 \N \N f f 0 \N 738167013 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10698 2023-09-10 16:06:21.107 2025-01-15 12:59:28.424 HaydenKing1QJ \N \N \N 190730207 5 2 \N \N 100 \N \N f f 0 \N 2030156208 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9177 2023-04-10 14:33:16.112 2023-06-27 15:33:53.559 GordonIbarraBF3 \N \N \N 21148165 5 2 \N \N 100 \N \N f f 0 \N 1787740337 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11192 2024-06-12 19:34:59.715 2024-11-14 21:18:16.603 SherriBassFWO \N \N \N 223360412 5 2 \N \N 100 \N \N f f 0 \N 99174710 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12334 2023-02-26 21:53:09.944 2023-06-09 22:27:20.468 MarioZimmermanZH4 \N \N \N 55026157 5 2 \N \N 100 \N \N f f 0 \N 543427907 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21501 2022-12-19 02:19:02.083 2023-07-31 04:37:29.949 RayChoi76V \N \N \N 210168921 5 2 \N \N 100 \N \N f f 0 \N 586219103 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4602 2024-05-14 13:51:49.168 2024-04-01 18:27:22.236 EarlHansenSIY \N \N \N 172035446 5 2 \N \N 100 \N \N f f 0 \N 2046946535 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11996 2023-02-19 01:43:25.161 2023-02-08 05:46:29.207 RicardoFrank407 \N \N \N 159941546 5 2 \N \N 100 \N \N f f 0 \N 1887206707 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21383 2023-11-02 19:51:39.988 2024-11-02 21:52:06.362 TristanGeorgeDCF \N \N \N 15353622 5 2 \N \N 100 \N \N f f 0 \N 1354668307 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9109 2023-10-06 12:12:53.641 2024-10-04 12:16:08.027 CodyBrennanM26 \N \N \N 79467499 5 2 \N \N 100 \N \N f f 0 \N 1107210593 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21061 2024-04-05 15:06:02.558 2024-01-19 10:39:40.569 StacieHanson1YP \N \N \N 134636954 5 2 \N \N 100 \N \N f f 0 \N 440258755 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1424 2024-07-10 00:06:53.827 2023-03-17 00:06:21.196 KarinaWestRSV \N \N \N 187972929 5 2 \N \N 100 \N \N f f 0 \N 2378541942 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20019 2024-04-04 17:52:19.342 2024-10-11 15:15:40.384 JaneGuerraQQN \N \N \N 7950266 5 2 \N \N 100 \N \N f f 0 \N 161305199 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1162 2023-11-19 13:15:27.594 2024-08-15 19:16:24.723 JocelynStoutGK5 \N \N \N 211052415 5 2 \N \N 100 \N \N f f 0 \N 2017920841 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13622 2023-05-20 20:40:42.162 2024-07-13 08:52:20.621 ClaudiaCardenasFX4 \N \N \N 32756098 5 2 \N \N 100 \N \N f f 0 \N 2411871286 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13038 2023-08-03 19:20:45.983 2023-10-25 01:30:28.528 MarciaShieldsMCI \N \N \N 96657118 5 2 \N \N 100 \N \N f f 0 \N 471272629 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20577 2023-02-08 01:51:55.534 2023-08-26 04:38:00.619 MaryHawkinsVRQ \N \N \N 238718140 5 2 \N \N 100 \N \N f f 0 \N 1874295553 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20913 2024-12-05 01:07:47.147 2024-10-05 12:31:22.115 AliceConner25Q \N \N \N 191929008 5 2 \N \N 100 \N \N f f 0 \N 1351365921 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21585 2024-06-10 03:53:18.973 2023-10-19 20:49:47.975 BriannaRosario45L \N \N \N 59539471 5 2 \N \N 100 \N \N f f 0 \N 968931501 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12422 2023-04-16 17:36:21.701 2024-10-26 01:50:03.829 CaseyMarshWR4 \N \N \N 16843244 5 2 \N \N 100 \N \N f f 0 \N 1487153026 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1469 2024-04-30 09:44:41.131 2024-08-17 07:47:16.076 DavePenningtonG5B \N \N \N 161436902 5 2 \N \N 100 \N \N f f 0 \N 1573236349 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20185 2025-01-18 07:23:21.151 2023-12-22 01:56:34.178 AliciaCervantes9NR \N \N \N 168490091 5 2 \N \N 100 \N \N f f 0 \N 2019918287 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20965 2024-03-26 00:33:15.663 2024-08-11 12:29:49.372 BaileySchmittBD2 \N \N \N 135045674 5 2 \N \N 100 \N \N f f 0 \N 63667648 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5776 2023-07-22 07:15:34.96 2023-10-07 07:35:45.428 KristineHodgesAJ3 \N \N \N 152175722 5 2 \N \N 100 \N \N f f 0 \N 2015985928 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5752 2024-05-05 00:32:38.77 2023-02-11 09:41:51.51 SusanSmallUPK \N \N \N 242584092 5 2 \N \N 100 \N \N f f 0 \N 604219654 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21389 2024-09-14 02:55:36.587 2025-01-10 12:49:21.836 CarolineKey2GG \N \N \N 91480806 5 2 \N \N 100 \N \N f f 0 \N 2095207828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21296 2024-11-06 12:20:19.489 2023-07-05 07:10:52.826 MaryReynoldsZRG \N \N \N 231838099 5 2 \N \N 100 \N \N f f 0 \N 221506051 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9295 2024-12-31 22:16:49.52 2023-01-30 20:10:03.287 CassidyDuarte281 \N \N \N 34311824 5 2 \N \N 100 \N \N f f 0 \N 1774097704 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20892 2023-01-31 00:27:32.464 2024-04-28 16:56:48.333 SteveScott5KT \N \N \N 209914463 5 2 \N \N 100 \N \N f f 0 \N 2255913289 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1236 2023-06-01 15:27:43.224 2024-08-30 19:14:59.856 DebbieSteinVPK \N \N \N 96856445 5 2 \N \N 100 \N \N f f 0 \N 2573935328 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20782 2024-12-22 00:12:06.291 2024-05-02 23:49:24.297 AngelaCaseV01 \N \N \N 165107491 5 2 \N \N 100 \N \N f f 0 \N 122729945 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9517 2024-07-07 23:45:45.568 2023-05-24 23:49:08.626 KirstenMooney1EZ \N \N \N 72602902 5 2 \N \N 100 \N \N f f 0 \N 2463780345 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18441 2023-07-08 18:33:12.917 2024-01-29 07:26:20.778 JeffreyHarveyTV1 \N \N \N 184288567 5 2 \N \N 100 \N \N f f 0 \N 1650844343 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21058 2024-12-06 12:22:33.199 2024-06-19 03:57:15.845 AaronSimsLZQ \N \N \N 127481581 5 2 \N \N 100 \N \N f f 0 \N 2001499443 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11454 2023-03-06 09:07:51.234 2024-11-02 10:43:27.515 SamanthaGonzalesQ6L \N \N \N 100677101 5 2 \N \N 100 \N \N f f 0 \N 2080108885 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19502 2023-12-11 20:40:49.183 2024-08-29 05:08:35.841 WendyClaytonD4F \N \N \N 139914569 5 2 \N \N 100 \N \N f f 0 \N 1695080282 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21145 2024-03-25 23:43:43.408 2024-07-15 09:40:20.612 EvanClineKU4 \N \N \N 101439509 5 2 \N \N 100 \N \N f f 0 \N 953889742 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11477 2024-03-12 05:55:14.594 2024-05-19 00:38:03.858 RachelHooverSQ3 \N \N \N 196339013 5 2 \N \N 100 \N \N f f 0 \N 2352205532 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18174 2023-01-14 20:30:52.001 2023-10-07 17:36:37.735 LydiaHooverMJO \N \N \N 84058276 5 2 \N \N 100 \N \N f f 0 \N 1201197412 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20776 2022-11-20 22:30:11.783 2024-06-07 23:02:47.706 LindaCrosbyNG6 \N \N \N 5952491 5 2 \N \N 100 \N \N f f 0 \N 583361827 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9450 2024-11-14 15:41:31.808 2022-12-26 10:29:43.958 AliciaPeckOSU \N \N \N 33641039 5 2 \N \N 100 \N \N f f 0 \N 928666925 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1836 2022-12-06 03:34:07.075 2024-06-26 21:42:41.88 VernonDillon7CV \N \N \N 120349133 5 2 \N \N 100 \N \N f f 0 \N 2310494053 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18068 2023-12-19 00:51:10.215 2024-01-28 22:40:54.944 JackMcintoshKDG \N \N \N 182154136 5 2 \N \N 100 \N \N f f 0 \N 2224030928 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14705 2024-09-21 03:51:27.479 2023-01-12 01:30:28.453 SeanKnapp2IU \N \N \N 76943719 5 2 \N \N 100 \N \N f f 0 \N 1357077459 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20825 2024-07-12 10:08:45.415 2023-11-12 17:48:43.946 JeremiahCallahan3WO \N \N \N 35489099 5 2 \N \N 100 \N \N f f 0 \N 903243496 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20254 2023-04-23 23:04:50.434 2023-12-09 00:38:17.258 SergioMack65U \N \N \N 177499734 5 2 \N \N 100 \N \N f f 0 \N 2015196911 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5128 2024-08-30 09:55:19.714 2024-09-13 14:17:22.655 TannerHanna15I \N \N \N 36536677 5 2 \N \N 100 \N \N f f 0 \N 753114850 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15386 2023-12-09 21:20:03.276 2024-01-11 02:45:58.419 JakeLloydQRP \N \N \N 229982099 5 2 \N \N 100 \N \N f f 0 \N 1445722173 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1638 2023-08-23 20:22:42.884 2024-03-18 16:27:49.417 TammieJenkinsLTR \N \N \N 88706880 5 2 \N \N 100 \N \N f f 0 \N 2350868745 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5637 2024-09-18 14:20:47.445 2022-11-11 19:51:32.614 KerriCasey1EG \N \N \N 7854719 5 2 \N \N 100 \N \N f f 0 \N 1259389108 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19537 2022-11-21 16:02:18.721 2023-04-26 14:26:48.849 YvonneBraunXFC \N \N \N 124491213 5 2 \N \N 100 \N \N f f 0 \N 1092866182 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21620 2024-12-17 13:41:40.57 2023-10-25 18:21:04.158 ReginaldVillegas0Q1 \N \N \N 89460242 5 2 \N \N 100 \N \N f f 0 \N 546225350 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8469 2024-08-20 06:51:32.058 2023-09-29 01:13:28.704 MalloryBennettNUK \N \N \N 51950107 5 2 \N \N 100 \N \N f f 0 \N 283110212 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20973 2023-12-11 18:54:25.685 2024-10-02 16:37:17.712 RuthFreyIAW \N \N \N 113109186 5 2 \N \N 100 \N \N f f 0 \N 2420772467 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 913 2024-07-21 09:49:53.617 2024-06-04 09:42:08.567 LukeGallagherWSM \N \N \N 86698685 5 2 \N \N 100 \N \N f f 0 \N 2493866710 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17824 2024-02-02 04:30:40.246 2023-02-23 05:31:58.926 EricHaleyQ0D \N \N \N 158158215 5 2 \N \N 100 \N \N f f 0 \N 893992365 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21048 2024-02-06 17:31:47.399 2023-09-05 04:17:41.845 RebekahGoodFIE \N \N \N 61363341 5 2 \N \N 100 \N \N f f 0 \N 1724409167 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15536 2025-03-07 10:21:28.869 2023-03-25 23:35:44.342 EdwardCantrell1C1 \N \N \N 219968932 5 2 \N \N 100 \N \N f f 0 \N 671489162 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2492 2023-07-19 03:25:21.583 2024-12-19 23:42:29.342 JadeSchroeder572 \N \N \N 186172406 5 2 \N \N 100 \N \N f f 0 \N 1100592078 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19905 2023-05-13 13:33:29.983 2022-12-12 16:03:00.477 AlexisWebbD8U \N \N \N 218479163 5 2 \N \N 100 \N \N f f 0 \N 613554052 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20198 2023-03-26 15:50:13.914 2024-03-14 00:17:41.413 EthanWeberZYJ \N \N \N 47052077 5 2 \N \N 100 \N \N f f 0 \N 1215566341 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21062 2023-05-11 15:02:05.645 2023-09-16 12:53:03.37 KatherineOnealLVU \N \N \N 45900115 5 2 \N \N 100 \N \N f f 0 \N 450119623 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5036 2024-10-25 13:41:22.269 2024-09-22 09:31:50.697 SueNguyenR4H \N \N \N 216020405 5 2 \N \N 100 \N \N f f 0 \N 1273784744 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8541 2022-11-26 23:27:31.74 2024-01-05 02:27:18.447 MarissaVaughanQDB \N \N \N 105486651 5 2 \N \N 100 \N \N f f 0 \N 2325152736 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13365 2024-12-03 15:04:34.155 2023-10-26 23:06:25.851 MitchellRoachP1M \N \N \N 212880151 5 2 \N \N 100 \N \N f f 0 \N 1817996632 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20180 2023-06-24 15:16:11.499 2024-12-04 23:22:48.876 SergioJohnston4EL \N \N \N 16526917 5 2 \N \N 100 \N \N f f 0 \N 1908212709 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15091 2024-04-19 03:45:59.941 2024-05-26 02:02:59.143 StefanieBrayZBZ \N \N \N 31101561 5 2 \N \N 100 \N \N f f 0 \N 2247031905 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1890 2023-11-15 20:49:13.704 2023-02-15 15:30:28.323 DonOconnellQNY \N \N \N 247162529 5 2 \N \N 100 \N \N f f 0 \N 1830470724 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16432 2024-11-18 23:08:00.717 2024-10-02 19:48:04.931 MonicaPatterson80Z \N \N \N 54063576 5 2 \N \N 100 \N \N f f 0 \N 1733349714 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20616 2024-04-27 17:31:06.082 2025-03-09 03:06:48.516 YvetteSpencerN1K \N \N \N 157913642 5 2 \N \N 100 \N \N f f 0 \N 356260873 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20912 2025-02-07 03:43:14.531 2024-02-15 09:18:29.576 KristyMaysGS0 \N \N \N 87138274 5 2 \N \N 100 \N \N f f 0 \N 2128437172 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14669 2023-02-07 16:21:19.546 2023-07-07 03:20:40.318 SharonCastroE6X \N \N \N 114380216 5 2 \N \N 100 \N \N f f 0 \N 823758628 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20117 2024-09-30 02:40:05.448 2024-03-04 09:03:40.295 DanaMyersVHJ \N \N \N 93118239 5 2 \N \N 100 \N \N f f 0 \N 1310889531 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9537 2024-03-11 12:35:46.978 2024-01-27 05:23:16.835 EricGilbertX2Q \N \N \N 70035051 5 2 \N \N 100 \N \N f f 0 \N 1747458499 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21804 2024-04-18 18:14:23.165 2023-04-07 00:32:39.207 KirkRichmondZ55 \N \N \N 235304509 5 2 \N \N 100 \N \N f f 0 \N 2200915294 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6653 2023-11-07 06:11:37.161 2024-12-30 11:00:59.848 JaneGarciaIWN \N \N \N 210939868 5 2 \N \N 100 \N \N f f 0 \N 1654377473 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12749 2022-12-06 09:23:02.786 2024-03-18 05:19:24.547 JohnnyGates8I0 \N \N \N 161876057 5 2 \N \N 100 \N \N f f 0 \N 208975150 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20599 2025-02-20 19:35:59.33 2024-05-13 05:33:02.705 KyleBridgesLJD \N \N \N 36950886 5 2 \N \N 100 \N \N f f 0 \N 273626028 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21521 2023-06-11 21:05:03.506 2024-10-16 12:40:25.088 ZoeBarker6KJ \N \N \N 164259164 5 2 \N \N 100 \N \N f f 0 \N 275507918 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13566 2023-02-25 04:05:17.895 2023-12-22 05:30:51.228 LeroyDonovanVDM \N \N \N 190820278 5 2 \N \N 100 \N \N f f 0 \N 299577995 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21041 2024-06-18 16:00:18.967 2024-09-02 01:27:58.93 LatoyaFordU8X \N \N \N 129689444 5 2 \N \N 100 \N \N f f 0 \N 2016521466 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2065 2023-06-17 19:19:05.859 2025-01-21 08:40:28.335 MatthewMezaUD1 \N \N \N 150762348 5 2 \N \N 100 \N \N f f 0 \N 683136067 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20768 2023-10-15 17:15:02.493 2024-06-12 04:33:35.49 JeanSchultzG36 \N \N \N 230516720 5 2 \N \N 100 \N \N f f 0 \N 1120607153 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4754 2023-12-05 12:58:41.325 2023-01-14 23:57:07.868 SabrinaAllenGH8 \N \N \N 156497731 5 2 \N \N 100 \N \N f f 0 \N 694967055 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19992 2024-03-12 02:38:18.301 2023-08-11 17:32:54.412 NicholasMosesPJ8 \N \N \N 159297209 5 2 \N \N 100 \N \N f f 0 \N 1927014463 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20963 2024-08-28 06:35:22.874 2024-01-31 20:18:19.838 ParkerCaldwellE2B \N \N \N 195190928 5 2 \N \N 100 \N \N f f 0 \N 478580259 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7587 2025-02-24 19:52:58.645 2024-01-29 18:44:40.495 AlanMilesEJ5 \N \N \N 166039355 5 2 \N \N 100 \N \N f f 0 \N 1726869365 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19637 2024-08-06 08:32:38.488 2024-10-07 04:59:55.62 MackenzieHornUCQ \N \N \N 158759452 5 2 \N \N 100 \N \N f f 0 \N 1516440480 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16193 2024-05-10 12:39:30.123 2023-01-31 22:44:27.717 RandyKeyJJD \N \N \N 58071011 5 2 \N \N 100 \N \N f f 0 \N 1661701971 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9107 2024-07-21 06:02:27.949 2023-11-06 12:31:49.795 MarcGatesYFQ \N \N \N 80930082 5 2 \N \N 100 \N \N f f 0 \N 2589342045 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11621 2025-01-21 03:12:41.859 2024-10-11 16:53:49.015 KarinaBishopZFN \N \N \N 144021645 5 2 \N \N 100 \N \N f f 0 \N 1476497203 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1603 2024-03-03 09:31:54.614 2024-06-02 20:28:04.798 KrystalMeltonG33 \N \N \N 249317146 5 2 \N \N 100 \N \N f f 0 \N 2435598574 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6765 2024-09-03 18:31:03.137 2025-02-13 21:35:48.157 ShariMacias6L2 \N \N \N 30055935 5 2 \N \N 100 \N \N f f 0 \N 1631671076 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21832 2023-02-21 00:20:23.055 2023-12-01 23:13:21.357 JudyKaneO60 \N \N \N 76822074 5 2 \N \N 100 \N \N f f 0 \N 903658428 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10409 2024-08-26 11:33:13.4 2023-04-05 22:52:39.782 LindsayGomez63W \N \N \N 191056844 5 2 \N \N 100 \N \N f f 0 \N 703575443 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16724 2023-08-16 10:51:54.648 2024-09-28 09:36:38.983 DeannaGlass1UL \N \N \N 164843148 5 2 \N \N 100 \N \N f f 0 \N 778781226 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15925 2023-01-21 17:29:02.191 2023-05-30 07:18:21.739 MarilynGomezOKT \N \N \N 202613501 5 2 \N \N 100 \N \N f f 0 \N 2246164515 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14278 2023-02-27 03:04:20.395 2023-10-02 23:35:31.376 DonnaKnox6PK \N \N \N 71415280 5 2 \N \N 100 \N \N f f 0 \N 43485619 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5870 2024-12-19 00:36:43.837 2025-03-15 03:04:55.54 CraigWallsXB0 \N \N \N 115882040 5 2 \N \N 100 \N \N f f 0 \N 786370833 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19952 2023-04-30 05:30:58.379 2022-12-27 20:35:29.275 TimothyFrederickIGC \N \N \N 41962544 5 2 \N \N 100 \N \N f f 0 \N 2092915896 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15192 2025-02-09 02:09:58.479 2024-07-04 20:55:17.497 TerrenceHumphreyWP4 \N \N \N 188388358 5 2 \N \N 100 \N \N f f 0 \N 2216507748 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14385 2025-02-11 09:18:40.532 2025-01-23 01:18:45.03 IsaacBairdGXI \N \N \N 114799557 5 2 \N \N 100 \N \N f f 0 \N 810144784 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10056 2023-12-27 23:32:16.303 2023-07-22 15:26:08.564 RayBookerCW7 \N \N \N 235371627 5 2 \N \N 100 \N \N f f 0 \N 2087497311 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20409 2024-03-04 11:10:22.339 2023-08-14 04:09:03.809 GabriellaSheppardDGC \N \N \N 233660122 5 2 \N \N 100 \N \N f f 0 \N 1282259516 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20970 2024-12-17 01:46:03.869 2024-04-01 02:13:13.668 DaltonRichJXD \N \N \N 51576060 5 2 \N \N 100 \N \N f f 0 \N 1493332606 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15521 2024-06-10 02:32:21.701 2024-03-24 05:59:58.915 LeeWareF2P \N \N \N 116809395 5 2 \N \N 100 \N \N f f 0 \N 2417760224 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20841 2023-04-19 07:49:26.05 2025-02-08 19:14:30.598 RickeyPowersMGW \N \N \N 97829001 5 2 \N \N 100 \N \N f f 0 \N 1651723912 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13865 2023-03-14 01:21:31.78 2023-09-14 13:19:52.675 ColleenWaltersUMO \N \N \N 179365797 5 2 \N \N 100 \N \N f f 0 \N 1184752704 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4763 2022-12-07 09:27:18.033 2023-09-03 09:38:43.462 CristinaRichardsonL36 \N \N \N 103421202 5 2 \N \N 100 \N \N f f 0 \N 700689089 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14404 2024-03-14 03:26:18.499 2023-12-31 06:22:23.206 RalphBarber81I \N \N \N 15602731 5 2 \N \N 100 \N \N f f 0 \N 1887940002 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5590 2023-03-07 22:03:54.166 2023-01-07 17:44:50.397 AlfredMorenoEV4 \N \N \N 221511075 5 2 \N \N 100 \N \N f f 0 \N 201187421 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18533 2023-08-20 16:51:11.7 2024-01-09 03:29:56.912 DrewWangXL0 \N \N \N 234359171 5 2 \N \N 100 \N \N f f 0 \N 1307958194 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2961 2024-02-06 13:19:40.576 2023-01-03 01:19:14.54 JaniceJohnsWO8 \N \N \N 58305638 5 2 \N \N 100 \N \N f f 0 \N 2449116693 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8684 2023-07-15 07:46:33.689 2024-01-04 08:14:32.224 VernonValenzuelaZTP \N \N \N 147871092 5 2 \N \N 100 \N \N f f 0 \N 1536734243 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12609 2023-04-16 03:13:55.167 2023-05-21 20:42:37.295 RobinArellanoFYP \N \N \N 4692773 5 2 \N \N 100 \N \N f f 0 \N 897066585 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20337 2024-02-19 15:19:36.738 2024-09-09 00:09:25.207 TaraEverettSVD \N \N \N 124451885 5 2 \N \N 100 \N \N f f 0 \N 119376157 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1012 2024-07-05 23:55:20.097 2025-03-25 05:15:08.854 IsaacPetersSVZ \N \N \N 105410275 5 2 \N \N 100 \N \N f f 0 \N 1003833816 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12870 2023-08-31 15:08:25.804 2024-06-19 21:48:27.499 MichelleCaseyI37 \N \N \N 33092901 5 2 \N \N 100 \N \N f f 0 \N 481269392 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21178 2024-06-27 06:34:16.572 2023-08-10 07:43:47.394 MeganBautistaPMN \N \N \N 6138151 5 2 \N \N 100 \N \N f f 0 \N 1294525049 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21057 2025-01-21 01:50:12.838 2024-03-03 14:50:42.138 SabrinaHooverJT8 \N \N \N 195703586 5 2 \N \N 100 \N \N f f 0 \N 2233187108 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20205 2023-11-09 07:31:18.764 2023-11-10 01:15:52.181 PamRodriguezTXO \N \N \N 83133244 5 2 \N \N 100 \N \N f f 0 \N 99706238 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20683 2024-09-17 04:01:36.57 2023-10-01 12:04:52.306 CodyGregoryQS3 \N \N \N 57519789 5 2 \N \N 100 \N \N f f 0 \N 1152965908 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15115 2023-11-03 02:17:03.007 2023-10-14 22:06:17.308 LaurieRobles06U \N \N \N 118487015 5 2 \N \N 100 \N \N f f 0 \N 118676644 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2330 2023-07-06 03:51:30.133 2023-12-09 13:01:16.518 RickeyCraigK83 \N \N \N 219330184 5 2 \N \N 100 \N \N f f 0 \N 1268519172 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15510 2024-06-19 22:48:03.932 2023-09-28 19:56:13.288 AmberCarterZSR \N \N \N 72857763 5 2 \N \N 100 \N \N f f 0 \N 1972369694 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4173 2023-10-31 09:11:38.933 2023-06-26 11:14:46.177 RavenMann4YL \N \N \N 124241200 5 2 \N \N 100 \N \N f f 0 \N 1256290130 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4027 2024-03-07 10:21:26.892 2023-11-12 16:19:10.923 LindaAnthonyGEO \N \N \N 239513667 5 2 \N \N 100 \N \N f f 0 \N 1903471456 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10302 2022-11-22 06:48:12.157 2024-07-26 19:40:02.014 DanielDrakeXL4 \N \N \N 47648260 5 2 \N \N 100 \N \N f f 0 \N 2390678189 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6164 2024-07-29 20:37:01.655 2023-09-08 00:29:51.888 SaraJohnsEFA \N \N \N 213084689 5 2 \N \N 100 \N \N f f 0 \N 1515460661 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21374 2024-04-26 16:34:54.993 2023-09-22 17:14:19.882 JesseHarperHZZ \N \N \N 60753326 5 2 \N \N 100 \N \N f f 0 \N 182830504 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2593 2024-10-27 13:02:05.166 2022-11-12 10:43:51.218 BradyHutchinson36W \N \N \N 37388400 5 2 \N \N 100 \N \N f f 0 \N 2450138831 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21014 2025-03-27 09:17:30.299 2024-10-09 21:16:44.928 ArianaContrerasSK7 \N \N \N 43588999 5 2 \N \N 100 \N \N f f 0 \N 66255906 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14939 2024-06-15 18:04:09.317 2024-02-17 15:29:50.713 ChristopherHess6PJ \N \N \N 243186184 5 2 \N \N 100 \N \N f f 0 \N 1343761138 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21600 2024-08-16 17:40:03.027 2024-07-25 16:17:23.961 JonathonWatson8UU \N \N \N 234180831 5 2 \N \N 100 \N \N f f 0 \N 1207517134 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20502 2023-08-05 08:46:15.537 2023-11-13 10:01:23.413 BrittanyShawS5E \N \N \N 179308616 5 2 \N \N 100 \N \N f f 0 \N 284112454 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17365 2023-09-14 07:53:55.675 2024-02-14 11:24:32.48 BrittneyIngramV2U \N \N \N 97105290 5 2 \N \N 100 \N \N f f 0 \N 2219521872 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21303 2023-08-04 16:24:58.301 2023-06-25 14:51:36.081 JillianWhitaker6CT \N \N \N 131046289 5 2 \N \N 100 \N \N f f 0 \N 275734569 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18500 2023-10-01 21:51:38.174 2025-03-17 21:40:44.106 HayleyBarnett2F1 \N \N \N 210976307 5 2 \N \N 100 \N \N f f 0 \N 606105706 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10270 2024-11-08 22:46:56.611 2023-03-03 20:41:36.471 PennyHunterTGZ \N \N \N 146965536 5 2 \N \N 100 \N \N f f 0 \N 1967573487 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20613 2024-12-30 14:19:17.591 2023-09-25 21:28:45.951 KatieChenUIT \N \N \N 73041086 5 2 \N \N 100 \N \N f f 0 \N 832065387 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20555 2024-06-25 23:17:22.339 2024-04-09 12:19:59.912 MicheleBullockBH0 \N \N \N 237762457 5 2 \N \N 100 \N \N f f 0 \N 2308072557 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21274 2024-06-13 21:35:08.26 2022-11-17 12:19:09.607 DevinPadillaFNN \N \N \N 60727387 5 2 \N \N 100 \N \N f f 0 \N 172302708 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18901 2024-10-23 18:35:02.339 2023-03-26 13:53:26.339 KatelynLeachT1Y \N \N \N 205664944 5 2 \N \N 100 \N \N f f 0 \N 51109162 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19812 2023-04-25 17:18:29.268 2023-02-17 22:57:36.107 ChristinaWoodardZHJ \N \N \N 16404525 5 2 \N \N 100 \N \N f f 0 \N 2318176005 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3518 2024-09-13 01:53:08.029 2023-04-18 19:22:59.986 HectorYorkLIO \N \N \N 223847742 5 2 \N \N 100 \N \N f f 0 \N 1260184587 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21577 2025-03-18 17:32:34.819 2024-05-22 00:10:00.958 FernandoSolisJ4T \N \N \N 165694190 5 2 \N \N 100 \N \N f f 0 \N 1884574579 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19494 2022-11-16 04:45:03.612 2023-11-06 11:17:50.072 MeganHooperFIS \N \N \N 38437804 5 2 \N \N 100 \N \N f f 0 \N 1806900973 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20663 2023-05-16 02:39:39.612 2022-12-31 12:21:00.836 GrantMeyers4P0 \N \N \N 96055732 5 2 \N \N 100 \N \N f f 0 \N 534631337 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6555 2023-09-17 04:18:59.561 2023-04-04 20:03:44.473 BrianCabreraIB5 \N \N \N 63631415 5 2 \N \N 100 \N \N f f 0 \N 1697255429 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18069 2024-11-12 05:40:19.18 2023-12-16 07:16:29.329 AaronPennington5WB \N \N \N 111700135 5 2 \N \N 100 \N \N f f 0 \N 170168168 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20624 2023-02-07 04:00:36.537 2023-08-23 09:10:33.022 KirstenBerry48M \N \N \N 47430042 5 2 \N \N 100 \N \N f f 0 \N 2134112014 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7395 2024-10-07 08:27:51.678 2023-07-27 01:41:14.088 DwayneBallard4OH \N \N \N 164466305 5 2 \N \N 100 \N \N f f 0 \N 219289231 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20179 2023-08-31 08:42:17.177 2023-02-24 19:57:35.132 TammieHarrisK3W \N \N \N 62443230 5 2 \N \N 100 \N \N f f 0 \N 2457327934 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4798 2025-01-22 18:02:46.503 2024-01-13 02:36:22.44 JonGalvanIZJ \N \N \N 165333064 5 2 \N \N 100 \N \N f f 0 \N 696644385 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1261 2023-04-30 23:09:52.889 2023-02-06 06:42:15.662 AlexaHuerta8OE \N \N \N 786283 5 2 \N \N 100 \N \N f f 0 \N 493388992 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2039 2025-02-27 00:00:45.813 2023-06-30 08:27:42.469 AdrianPerez2ZD \N \N \N 101246884 5 2 \N \N 100 \N \N f f 0 \N 1062814038 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20745 2023-07-18 23:52:13.246 2024-05-13 06:02:49.674 WhitneyEvansS5F \N \N \N 184650587 5 2 \N \N 100 \N \N f f 0 \N 1281069536 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21451 2024-02-25 10:32:03.966 2024-11-02 11:51:40.036 LucasBirdHV4 \N \N \N 11565188 5 2 \N \N 100 \N \N f f 0 \N 1771795989 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20687 2023-05-15 14:51:08.127 2024-02-17 04:18:07.365 TerriWiseOSE \N \N \N 169874895 5 2 \N \N 100 \N \N f f 0 \N 2029749039 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21207 2024-08-02 20:07:03.713 2024-05-04 15:32:48.554 DillonChoiDLN \N \N \N 152043284 5 2 \N \N 100 \N \N f f 0 \N 2343331140 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1814 2022-12-12 12:47:34.099 2023-12-12 07:39:55.206 KaitlinShawMOL \N \N \N 24344651 5 2 \N \N 100 \N \N f f 0 \N 1884277455 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9874 2024-10-26 01:04:56.36 2023-09-28 16:53:21.386 HectorMurilloW06 \N \N \N 107058204 5 2 \N \N 100 \N \N f f 0 \N 1051928015 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19796 2024-08-16 16:30:02.406 2023-10-06 04:31:39.29 SheenaCordovaUEK \N \N \N 141211891 5 2 \N \N 100 \N \N f f 0 \N 2240452852 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17710 2024-06-25 18:58:21.836 2023-01-24 21:22:55.571 LoriLopezW1B \N \N \N 245405175 5 2 \N \N 100 \N \N f f 0 \N 1168342310 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14905 2024-07-29 08:12:59.425 2024-07-23 22:21:39.828 MadelineDonaldsonFAG \N \N \N 162507021 5 2 \N \N 100 \N \N f f 0 \N 167100899 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21262 2023-04-14 23:27:30.53 2024-11-23 06:41:53.591 PaigeDayT8C \N \N \N 1703771 5 2 \N \N 100 \N \N f f 0 \N 2048947889 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8448 2023-05-05 02:24:54.166 2023-05-24 06:00:06.934 PatrickEllisonX9Y \N \N \N 97182954 5 2 \N \N 100 \N \N f f 0 \N 1964791325 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18177 2025-01-01 13:04:21.408 2024-01-06 02:11:15.785 BradBowenGMM \N \N \N 211039640 5 2 \N \N 100 \N \N f f 0 \N 1226590476 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21216 2023-07-20 13:54:11.983 2024-12-04 20:46:51.74 JeffreyDavidTO5 \N \N \N 18942926 5 2 \N \N 100 \N \N f f 0 \N 1390264148 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8059 2023-12-09 19:56:48.136 2023-05-18 13:03:51.496 EdwinLambertWO7 \N \N \N 180314296 5 2 \N \N 100 \N \N f f 0 \N 1421542534 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16978 2024-04-24 03:07:17.996 2022-12-24 23:19:45.745 GailWardYLH \N \N \N 207508315 5 2 \N \N 100 \N \N f f 0 \N 1719282912 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 674 2024-09-08 19:25:13.948 2023-12-05 09:31:53.567 KiaraGarciaXP0 \N \N \N 165851064 5 2 \N \N 100 \N \N f f 0 \N 1177795039 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20642 2023-12-20 08:33:39.233 2024-09-30 19:00:04.784 LucasKramerDTH \N \N \N 138436523 5 2 \N \N 100 \N \N f f 0 \N 115529674 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16695 2023-01-09 12:47:20.244 2024-11-09 15:45:07.629 LaurenPhamI7S \N \N \N 110730570 5 2 \N \N 100 \N \N f f 0 \N 2333022485 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20023 2024-07-03 10:22:34.278 2024-06-19 21:03:21.057 JeffreyQuinnJ5F \N \N \N 89308772 5 2 \N \N 100 \N \N f f 0 \N 208188080 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7899 2024-08-31 01:46:01.338 2023-02-25 23:03:11.644 MichealMathisZRY \N \N \N 56649989 5 2 \N \N 100 \N \N f f 0 \N 1661977054 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20220 2022-12-02 08:09:40.055 2024-11-10 10:28:21.777 KarlaBensonDY1 \N \N \N 81786165 5 2 \N \N 100 \N \N f f 0 \N 866801458 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19777 2023-05-10 22:50:33.001 2023-05-30 07:58:02.235 MarthaTrevino15H \N \N \N 34873698 5 2 \N \N 100 \N \N f f 0 \N 1550954858 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12769 2023-12-08 07:21:06.33 2024-09-01 15:50:53.647 JudithFullerFCK \N \N \N 209361938 5 2 \N \N 100 \N \N f f 0 \N 2438311271 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21814 2025-02-10 22:59:37.671 2024-07-02 06:42:30.921 MikaylaRichardsU0G \N \N \N 62097789 5 2 \N \N 100 \N \N f f 0 \N 1021799862 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20606 2023-05-24 08:44:08.714 2024-04-22 20:34:57.13 JasmineHughesRFX \N \N \N 190148362 5 2 \N \N 100 \N \N f f 0 \N 247229444 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21140 2024-04-23 21:52:19.934 2024-07-04 17:35:24.616 DevonAdkinsM7Q \N \N \N 135724838 5 2 \N \N 100 \N \N f f 0 \N 2453485102 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21042 2023-02-11 10:45:38.249 2023-08-20 20:56:51.288 LeahSellersN7J \N \N \N 201646972 5 2 \N \N 100 \N \N f f 0 \N 991012993 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14452 2025-01-30 23:24:57.509 2023-10-04 08:22:39.026 DevinGates9T4 \N \N \N 73912874 5 2 \N \N 100 \N \N f f 0 \N 1008260387 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21114 2025-01-12 17:12:51.548 2024-08-12 16:34:30.686 BettyKeithYM2 \N \N \N 24455470 5 2 \N \N 100 \N \N f f 0 \N 1686112317 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20187 2023-01-15 13:59:12.945 2024-12-08 09:37:33.86 GabrielleFrostUZ7 \N \N \N 221440609 5 2 \N \N 100 \N \N f f 0 \N 979795892 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19673 2024-07-27 10:35:15.045 2024-10-04 16:36:50.977 ReginaldPerkinsSYK \N \N \N 131589352 5 2 \N \N 100 \N \N f f 0 \N 1893261197 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20710 2024-06-07 22:42:54.52 2023-08-12 07:37:44.013 CristinaSloanQIT \N \N \N 116099335 5 2 \N \N 100 \N \N f f 0 \N 181230657 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16747 2025-01-17 01:16:17.563 2023-06-05 21:59:30.526 AdrianWolfP44 \N \N \N 105826274 5 2 \N \N 100 \N \N f f 0 \N 2432056361 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10608 2024-04-28 02:15:46.648 2023-01-16 06:42:39.749 SamanthaMedinaF1T \N \N \N 225428060 5 2 \N \N 100 \N \N f f 0 \N 1135164523 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19193 2023-05-26 08:58:24.226 2022-11-17 19:00:53.555 CathyVincent3U1 \N \N \N 82238022 5 2 \N \N 100 \N \N f f 0 \N 1931284668 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15103 2024-02-01 04:55:58.269 2024-09-06 15:39:20.292 ShirleyHowell7BW \N \N \N 65084339 5 2 \N \N 100 \N \N f f 0 \N 1315930092 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21063 2023-11-30 21:43:18.596 2023-01-05 20:54:40.022 PerryPorterYEX \N \N \N 95651346 5 2 \N \N 100 \N \N f f 0 \N 131010639 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20734 2024-05-27 16:22:51.856 2023-04-06 18:44:34.102 MarciaBurnett06R \N \N \N 247613756 5 2 \N \N 100 \N \N f f 0 \N 157169828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9655 2023-01-16 20:27:54.261 2022-12-20 17:52:22.895 MargaretFryeXHC \N \N \N 56111420 5 2 \N \N 100 \N \N f f 0 \N 1086016050 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20680 2022-12-25 10:11:04.376 2023-03-23 02:19:39.317 JavierRyanMXE \N \N \N 89625252 5 2 \N \N 100 \N \N f f 0 \N 1971706441 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5112 2024-07-12 11:50:10.146 2024-11-20 10:57:58.757 BrandonMcphersonPF4 \N \N \N 137391914 5 2 \N \N 100 \N \N f f 0 \N 336454510 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21047 2024-07-06 23:42:09.774 2024-03-13 10:45:20.631 TyroneAdamsLWK \N \N \N 167958187 5 2 \N \N 100 \N \N f f 0 \N 825933909 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15474 2024-11-12 22:31:19.299 2023-12-14 00:30:39.003 TracieHammond1G8 \N \N \N 164625085 5 2 \N \N 100 \N \N f f 0 \N 1801364752 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21064 2022-11-17 06:46:21.786 2023-01-09 16:29:00.022 EvelynMaysNSC \N \N \N 84619565 5 2 \N \N 100 \N \N f f 0 \N 245526344 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16598 2023-09-23 13:03:23.403 2024-03-29 00:16:18.553 VincentAllen3EL \N \N \N 59032474 5 2 \N \N 100 \N \N f f 0 \N 1933820960 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21401 2024-06-24 12:25:20.993 2025-02-09 15:03:15.789 HelenGreeneVW5 \N \N \N 182454082 5 2 \N \N 100 \N \N f f 0 \N 1854165078 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21797 2025-01-08 09:24:52.707 2023-05-15 04:33:38.395 MiguelJacobsonFNR \N \N \N 41559282 5 2 \N \N 100 \N \N f f 0 \N 2130361278 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20871 2023-02-04 04:13:11.136 2023-05-18 02:49:36.72 ChristieBrandtHZE \N \N \N 90953287 5 2 \N \N 100 \N \N f f 0 \N 401179577 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 640 2024-11-10 01:02:58.645 2023-06-12 23:59:11.688 RonaldNewmanQ5E \N \N \N 16655929 5 2 \N \N 100 \N \N f f 0 \N 1485001701 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 647 2025-01-06 04:20:35.964 2024-07-15 03:51:02.655 EmmaLeonD0P \N \N \N 36784674 5 2 \N \N 100 \N \N f f 0 \N 2020695270 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 651 2023-11-13 17:16:12.654 2023-02-22 04:01:09.18 GlendaReyes46T \N \N \N 148543046 5 2 \N \N 100 \N \N f f 0 \N 401555817 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 656 2024-01-30 06:08:59.014 2022-12-16 22:14:44.757 TravisHoweFGX \N \N \N 102000819 5 2 \N \N 100 \N \N f f 0 \N 288622468 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 657 2023-12-05 17:38:19.121 2023-03-01 12:22:18.878 MichaelaHermanTO1 \N \N \N 245914978 5 2 \N \N 100 \N \N f f 0 \N 1182305301 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 659 2023-11-17 17:38:51.717 2024-02-26 21:22:13.591 DiamondHuntM1V \N \N \N 202360974 5 2 \N \N 100 \N \N f f 0 \N 98403983 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 663 2023-03-06 08:58:28.603 2024-02-27 02:08:00.612 KerriRamirez4NN \N \N \N 81933113 5 2 \N \N 100 \N \N f f 0 \N 415238968 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 664 2024-08-08 10:46:47.547 2024-07-29 06:06:13.468 JohnnySchneider2L5 \N \N \N 70656600 5 2 \N \N 100 \N \N f f 0 \N 538379766 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 666 2023-06-15 08:06:35.332 2023-04-06 21:08:42.895 JimMarshallEB2 \N \N \N 97726746 5 2 \N \N 100 \N \N f f 0 \N 5295387 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 667 2025-03-09 04:37:11.126 2025-03-19 08:40:50.968 JuliaRamosSR6 \N \N \N 243246379 5 2 \N \N 100 \N \N f f 0 \N 324191775 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 672 2024-01-07 05:38:43.843 2023-06-22 20:00:14.824 DawnJacksonY62 \N \N \N 140288477 5 2 \N \N 100 \N \N f f 0 \N 1302847128 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 675 2025-03-29 13:00:34.042 2024-09-30 06:05:18.262 DebraWallCTW \N \N \N 190094277 5 2 \N \N 100 \N \N f f 0 \N 2099071625 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 676 2024-07-21 14:28:42.047 2023-07-31 23:37:18.447 BlakeComptonKZ3 \N \N \N 136141771 5 2 \N \N 100 \N \N f f 0 \N 621951878 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 680 2023-02-22 14:31:28.48 2025-03-25 17:50:05.911 MelindaAnthony58C \N \N \N 216428848 5 2 \N \N 100 \N \N f f 0 \N 2170891461 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 683 2025-03-02 12:04:06.243 2024-03-15 22:30:32.657 AlexanderHutchinsonO8Z \N \N \N 29021300 5 2 \N \N 100 \N \N f f 0 \N 2154329668 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 696 2023-02-18 19:50:01.262 2024-03-01 23:46:33.692 BridgetMayoMCB \N \N \N 168858547 5 2 \N \N 100 \N \N f f 0 \N 2054237825 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 705 2023-01-16 18:45:14.144 2024-09-08 12:51:18.203 TimothyLozanoUEZ \N \N \N 228713346 5 2 \N \N 100 \N \N f f 0 \N 638358200 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 708 2024-03-15 09:36:02.606 2025-02-07 17:45:36.03 AlanWeissF2W \N \N \N 53908224 5 2 \N \N 100 \N \N f f 0 \N 1048724683 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 713 2024-04-26 12:53:35.211 2023-07-17 16:57:04.672 MariahPearson255 \N \N \N 184193579 5 2 \N \N 100 \N \N f f 0 \N 2105220300 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 714 2024-07-25 12:45:57.21 2023-03-21 17:24:44.067 TheresaRandall8K4 \N \N \N 95834806 5 2 \N \N 100 \N \N f f 0 \N 854164743 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 721 2024-03-02 18:07:08.014 2024-03-16 05:55:57.724 CarmenSchmittFN0 \N \N \N 124292509 5 2 \N \N 100 \N \N f f 0 \N 1083243688 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 899 2024-08-11 05:50:06.253 2024-10-13 04:06:31.365 AlecWilkersonSOB \N \N \N 15109385 5 2 \N \N 100 \N \N f f 0 \N 1983639741 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1173 2023-03-02 06:50:31.364 2023-05-20 19:49:47.229 MaureenPonceHQK \N \N \N 104610023 5 2 \N \N 100 \N \N f f 0 \N 725587555 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1316 2025-01-06 07:31:16.951 2024-05-27 19:01:01.749 CherylBaxterB0D \N \N \N 203106227 5 2 \N \N 100 \N \N f f 0 \N 2055561016 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1320 2023-01-09 03:59:40.286 2023-06-30 19:53:54.92 IsaacJosephNBN \N \N \N 48531046 5 2 \N \N 100 \N \N f f 0 \N 2184224687 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1389 2023-11-06 23:43:29.566 2024-03-31 20:12:45.903 KevinPatelY01 \N \N \N 195469251 5 2 \N \N 100 \N \N f f 0 \N 857520452 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1401 2023-04-13 04:48:00.128 2024-01-26 12:08:00.521 KarinaStokes0KP \N \N \N 41118752 5 2 \N \N 100 \N \N f f 0 \N 2356739076 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1429 2023-04-09 03:47:08.436 2025-01-04 15:19:41.481 AlexandraYuVZ4 \N \N \N 35636294 5 2 \N \N 100 \N \N f f 0 \N 1281023819 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1465 2024-07-21 06:57:12.597 2024-08-26 13:05:40.013 MarissaBenitezBNT \N \N \N 119838404 5 2 \N \N 100 \N \N f f 0 \N 1905244811 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1480 2023-06-24 04:30:56.223 2025-01-31 08:44:24.735 XavierPham27K \N \N \N 185791032 5 2 \N \N 100 \N \N f f 0 \N 342598769 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1488 2024-03-12 22:57:42.9 2024-02-28 02:59:49.899 ErikaRichardsonZ3K \N \N \N 238588277 5 2 \N \N 100 \N \N f f 0 \N 813283786 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1493 2024-08-21 10:03:14.501 2024-02-04 00:51:58.667 JeremiahPope51O \N \N \N 198734605 5 2 \N \N 100 \N \N f f 0 \N 1073400518 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1596 2024-09-12 17:13:23.87 2024-11-21 20:00:18.011 EduardoAdams7C8 \N \N \N 242521643 5 2 \N \N 100 \N \N f f 0 \N 3157997977 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11423 2025-01-22 17:33:20.029 2024-02-24 23:42:14.886 ElizabethWhitaker28W \N \N \N 85008016 5 2 \N \N 100 \N \N f f 0 \N 605285517 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8080 2023-11-11 20:11:37.894 2023-11-03 04:46:15.795 ShariFarleyA9L \N \N \N 43298883 5 2 \N \N 100 \N \N f f 0 \N 1286017443 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13987 2023-12-03 08:17:26.725 2022-12-17 04:20:20.777 JaniceHenderson7X7 \N \N \N 218250315 5 2 \N \N 100 \N \N f f 0 \N 1094061795 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17331 2024-02-14 02:18:59.089 2024-04-26 13:25:35.204 ManuelWilliamsonVVV \N \N \N 181941657 5 2 \N \N 100 \N \N f f 0 \N 1444015045 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17696 2024-09-18 02:55:10.2 2024-04-11 15:49:34.392 EvelynNavarro06R \N \N \N 93531102 5 2 \N \N 100 \N \N f f 0 \N 2234766074 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19094 2024-05-07 10:54:57.106 2025-03-03 21:41:10.847 RichardHarvey7L1 \N \N \N 238932325 5 2 \N \N 100 \N \N f f 0 \N 841120880 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8870 2023-10-15 20:56:02.152 2024-11-27 22:14:54.453 ChloeVance627 \N \N \N 35601337 5 2 \N \N 100 \N \N f f 0 \N 1436493335 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16670 2024-11-25 20:49:10.643 2023-10-09 09:24:09.251 JacksonComptonJZU \N \N \N 68520119 5 2 \N \N 100 \N \N f f 0 \N 730757114 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19332 2024-03-07 00:34:51.253 2024-01-26 20:21:36.67 AlisonGainesD44 \N \N \N 223053936 5 2 \N \N 100 \N \N f f 0 \N 1534227909 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10393 2024-01-17 10:20:51.497 2024-11-10 19:31:35.46 ElijahOconnorJS7 \N \N \N 126343736 5 2 \N \N 100 \N \N f f 0 \N 1448632198 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2774 2025-03-02 14:37:44.241 2023-04-02 13:06:25.697 CarlosRosalesONN \N \N \N 65793285 5 2 \N \N 100 \N \N f f 0 \N 1685785050 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10063 2024-01-23 16:41:04.272 2024-04-03 06:27:49.813 EmmaHarrisBNH \N \N \N 180180349 5 2 \N \N 100 \N \N f f 0 \N 560508496 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10342 2024-10-06 04:12:06.5 2023-11-26 03:40:17.786 JeanStokesHML \N \N \N 139059282 5 2 \N \N 100 \N \N f f 0 \N 2154117762 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16097 2025-02-08 07:48:46.92 2023-01-28 06:39:46.134 AndreaJarvisRR5 \N \N \N 89972118 5 2 \N \N 100 \N \N f f 0 \N 488907796 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16704 2024-09-06 00:47:28.829 2023-01-24 00:19:35.941 EugeneHansenXP8 \N \N \N 131338049 5 2 \N \N 100 \N \N f f 0 \N 1518668273 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16847 2024-04-17 02:59:13.761 2024-04-09 11:43:20.158 JacquelineArroyo8KV \N \N \N 89932360 5 2 \N \N 100 \N \N f f 0 \N 580034181 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17109 2025-01-03 03:04:05.035 2023-11-24 16:32:38.63 HaroldWolfe3AU \N \N \N 7366233 5 2 \N \N 100 \N \N f f 0 \N 903181429 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17172 2025-02-15 18:14:12.355 2023-04-01 06:29:45.663 JonathonGainesLPA \N \N \N 154286597 5 2 \N \N 100 \N \N f f 0 \N 701671303 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17522 2023-08-11 21:38:28.933 2023-09-16 13:33:19.465 MikaylaCastroLH1 \N \N \N 237756030 5 2 \N \N 100 \N \N f f 0 \N 1089676738 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17526 2023-04-20 18:02:08.97 2024-04-20 08:55:54.125 TinaMunoz60W \N \N \N 40708950 5 2 \N \N 100 \N \N f f 0 \N 233863993 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17541 2023-12-23 11:16:08.461 2023-02-10 18:10:29.861 FranklinLutzGE8 \N \N \N 131856845 5 2 \N \N 100 \N \N f f 0 \N 2326077051 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17570 2023-07-15 14:38:58.708 2023-06-30 04:44:17.503 GrantRollinsSD0 \N \N \N 135361714 5 2 \N \N 100 \N \N f f 0 \N 1550987435 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17891 2023-02-09 12:22:53.488 2023-12-21 01:33:26.785 AdrianaZimmermanFH9 \N \N \N 119766830 5 2 \N \N 100 \N \N f f 0 \N 2385069206 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18743 2022-12-21 22:39:43.893 2025-01-02 04:50:43.77 MelindaCobbHJI \N \N \N 159577040 5 2 \N \N 100 \N \N f f 0 \N 2038287870 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 725 2023-12-02 18:24:00.577 2023-08-12 13:51:08.297 JacobHarrisonW6T \N \N \N 158136901 5 2 \N \N 100 \N \N f f 0 \N 114112951 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 746 2024-08-23 16:47:11.293 2024-08-04 04:08:43.799 FeliciaWaltersOKH \N \N \N 166521157 5 2 \N \N 100 \N \N f f 0 \N 1805372449 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 759 2024-06-07 01:11:34.067 2024-10-25 05:26:18.364 ShawnaMooneyX0O \N \N \N 86701149 5 2 \N \N 100 \N \N f f 0 \N 1287776969 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 775 2023-12-21 07:59:54.969 2023-12-22 13:10:45.949 FrancesHammondU4Y \N \N \N 73437502 5 2 \N \N 100 \N \N f f 0 \N 853544933 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 828 2024-07-16 00:18:26.414 2023-03-07 23:58:53.161 JohnathanWintersMDC \N \N \N 53305948 5 2 \N \N 100 \N \N f f 0 \N 425761645 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1010 2024-07-24 20:30:04.364 2023-03-21 16:24:57.66 SydneyVincentBCX \N \N \N 66944953 5 2 \N \N 100 \N \N f f 0 \N 265405776 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1237 2024-03-07 09:08:11.072 2023-11-23 10:43:22.756 StuartOdonnellJRI \N \N \N 110287363 5 2 \N \N 100 \N \N f f 0 \N 734644993 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1472 2023-11-20 16:11:22.651 2024-04-28 12:25:58.22 ChristianParrishOOJ \N \N \N 170778828 5 2 \N \N 100 \N \N f f 0 \N 60525517 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1474 2023-09-13 16:01:35.461 2023-11-29 16:55:55.774 NoahColeGNE \N \N \N 11412698 5 2 \N \N 100 \N \N f f 0 \N 833712576 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1489 2024-07-02 10:38:32.62 2023-12-14 14:06:12.386 GabriellaBestS2Y \N \N \N 234874541 5 2 \N \N 100 \N \N f f 0 \N 917177184 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1490 2023-01-24 04:41:27.857 2025-03-29 06:47:49.107 MelindaBarnesFF1 \N \N \N 208573205 5 2 \N \N 100 \N \N f f 0 \N 857568025 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1512 2023-08-06 15:56:17.551 2024-06-10 14:14:25.111 JoeOsbornF3N \N \N \N 159940755 5 2 \N \N 100 \N \N f f 0 \N 1980677692 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1519 2024-10-06 20:33:00.375 2025-03-25 03:48:45.312 JulieRice2CY \N \N \N 177025423 5 2 \N \N 100 \N \N f f 0 \N 1828077104 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1534 2025-03-26 15:34:39.089 2024-08-03 12:42:17.853 SheenaNicholsonUPB \N \N \N 230729470 5 2 \N \N 100 \N \N f f 0 \N 969348394 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1584 2024-11-12 06:29:33.218 2024-11-06 15:59:36.663 BeverlyHensonH7D \N \N \N 152856617 5 2 \N \N 100 \N \N f f 0 \N 1326982642 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1585 2024-02-28 07:54:38.199 2024-07-28 01:08:25.971 StefanieConnerXZ4 \N \N \N 192416834 5 2 \N \N 100 \N \N f f 0 \N 1522911581 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1737 2024-09-26 20:39:09.954 2025-03-27 16:42:07.476 JasminCannon1CL \N \N \N 12162801 5 2 \N \N 100 \N \N f f 0 \N 338035320 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2640 2024-08-11 01:44:59.949 2023-10-20 17:48:05.624 LindseyBlakeWYD \N \N \N 82635663 5 2 \N \N 100 \N \N f f 0 \N 2239891793 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19863 2023-08-24 21:35:53.324 2023-08-08 04:10:11.526 JasonValdezONX \N \N \N 191106473 5 2 \N \N 100 \N \N f f 0 \N 2288933782 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13544 2023-09-13 23:03:41.896 2024-01-07 16:49:41.029 GabrielaMichaelMEX \N \N \N 80956287 5 2 \N \N 100 \N \N f f 0 \N 877207267 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20755 2023-10-19 04:10:35.194 2024-07-27 16:39:23.132 ConniePageXAP \N \N \N 89459779 5 2 \N \N 100 \N \N f f 0 \N 1126724184 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1505 2024-02-18 08:49:48.759 2024-06-24 23:13:06.745 SteveMcmahon2W6 \N \N \N 205825952 5 2 \N \N 100 \N \N f f 0 \N 84730685 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1673 2024-08-01 20:57:39.452 2023-04-24 01:30:16.629 BradRichardsCM3 \N \N \N 87761104 5 2 \N \N 100 \N \N f f 0 \N 2373687535 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2098 2023-11-17 05:41:32.476 2024-11-10 04:16:55.73 DennisBradyLEB \N \N \N 136309396 5 2 \N \N 100 \N \N f f 0 \N 1543296256 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4989 2024-07-20 17:32:11.362 2025-02-04 04:59:05.692 NinaOsborneDWV \N \N \N 239554695 5 2 \N \N 100 \N \N f f 0 \N 872093561 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5978 2025-02-13 20:52:00.971 2023-12-07 16:26:49.86 DonnaHowellHC8 \N \N \N 182103629 5 2 \N \N 100 \N \N f f 0 \N 2204517953 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7674 2023-06-11 19:13:46.084 2023-05-05 11:09:57.073 DevonStuartDYF \N \N \N 99432916 5 2 \N \N 100 \N \N f f 0 \N 813412221 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9166 2024-11-09 05:48:02.391 2024-04-13 00:56:42.264 MarisaGalvan0YC \N \N \N 63439368 5 2 \N \N 100 \N \N f f 0 \N 1131767410 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9169 2024-11-20 08:41:14.914 2024-12-18 10:20:04.742 LindsaySalazarPK4 \N \N \N 21911402 5 2 \N \N 100 \N \N f f 0 \N 2403389148 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9494 2025-02-02 10:35:35.079 2023-03-13 21:55:32.377 AngelaHornJNE \N \N \N 245895214 5 2 \N \N 100 \N \N f f 0 \N 1170087788 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9496 2023-02-20 02:55:04.327 2023-08-24 21:36:33.482 FrancisFry2G6 \N \N \N 146378281 5 2 \N \N 100 \N \N f f 0 \N 797284865 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9695 2025-01-05 23:18:35.921 2025-01-21 20:46:08.923 MadelineBryantJXF \N \N \N 5128442 5 2 \N \N 100 \N \N f f 0 \N 1496729038 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9705 2025-03-09 23:48:26.373 2024-01-02 07:23:07.604 DaveFritzM4G \N \N \N 138487900 5 2 \N \N 100 \N \N f f 0 \N 2381579017 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9969 2025-01-30 23:24:27.479 2025-03-22 16:41:53.061 RebeccaBoydHKA \N \N \N 34611320 5 2 \N \N 100 \N \N f f 0 \N 872307730 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10013 2025-02-17 19:22:03.066 2024-12-26 22:17:31.414 AnitaGates1I2 \N \N \N 34467610 5 2 \N \N 100 \N \N f f 0 \N 422231880 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10016 2022-12-09 13:38:33.748 2025-02-07 20:12:19.057 BenjaminAtkinsMJO \N \N \N 160146322 5 2 \N \N 100 \N \N f f 0 \N 928794296 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10280 2023-03-20 02:17:23.897 2023-06-02 05:30:33.685 ChristinaCowanIBX \N \N \N 176278418 5 2 \N \N 100 \N \N f f 0 \N 496016993 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10283 2024-05-18 13:45:50.174 2023-01-10 16:23:11.971 BeverlyHuffmanDWX \N \N \N 127114692 5 2 \N \N 100 \N \N f f 0 \N 1770370036 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10944 2024-10-05 16:18:07.668 2023-09-02 04:25:09.598 BrentRandolphTMD \N \N \N 19425534 5 2 \N \N 100 \N \N f f 0 \N 299321190 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11038 2024-04-03 03:18:43.429 2024-07-15 19:58:14.361 LaurieHahn7ZL \N \N \N 204492791 5 2 \N \N 100 \N \N f f 0 \N 310841349 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11153 2025-02-12 16:33:30.349 2023-04-25 13:23:05.217 MarthaGarcia2P7 \N \N \N 219075985 5 2 \N \N 100 \N \N f f 0 \N 2365123031 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11164 2023-09-24 11:24:41.457 2023-01-19 06:43:27.232 AlexandriaBatesLU2 \N \N \N 92027865 5 2 \N \N 100 \N \N f f 0 \N 1581214141 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14688 2025-01-07 04:00:58.166 2024-07-22 04:05:40.846 RileyFarmerG7M \N \N \N 43382592 5 2 \N \N 100 \N \N f f 0 \N 2335689124 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17162 2023-12-02 17:46:19.572 2022-12-09 21:38:13.632 KirstenHancockPLA \N \N \N 42606868 5 2 \N \N 100 \N \N f f 0 \N 1229715541 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2431 2024-10-06 10:55:27.108 2023-01-30 18:22:44.134 TonyHines5IR \N \N \N 205754169 5 2 \N \N 100 \N \N f f 0 \N 1886889199 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5829 2023-05-16 18:16:22.422 2024-05-13 16:37:23.156 CassandraVelasquezNHW \N \N \N 16671677 5 2 \N \N 100 \N \N f f 0 \N 1573835241 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10554 2023-12-19 09:53:47.841 2024-05-17 15:10:12.502 DustinEsparzaT54 \N \N \N 191137014 5 2 \N \N 100 \N \N f f 0 \N 4455873740 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12097 2023-02-01 17:43:59.411 2023-10-10 19:18:32.647 DestinyDaughertyWTF \N \N \N 230049975 5 2 \N \N 100 \N \N f f 0 \N 1840333746 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12278 2024-01-23 04:36:26.934 2024-08-06 08:51:28.456 CarlyMurrayRCF \N \N \N 122448016 5 2 \N \N 100 \N \N f f 0 \N 2454279942 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12561 2024-09-29 09:00:49.91 2022-11-12 22:11:43.832 LeviGlover426 \N \N \N 207303256 5 2 \N \N 100 \N \N f f 0 \N 1058623810 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13076 2024-10-05 06:59:26.904 2022-11-28 16:04:07.495 RobinPollardPO2 \N \N \N 129648994 5 2 \N \N 100 \N \N f f 0 \N 2202857644 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16145 2024-01-15 07:20:06.858 2024-09-02 16:58:23.856 JohnnySantanaAOB \N \N \N 238074627 5 2 \N \N 100 \N \N f f 0 \N 986455572 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16229 2023-02-20 05:42:36.168 2024-06-06 15:51:03.66 ClaytonAustinWW6 \N \N \N 42886630 5 2 \N \N 100 \N \N f f 0 \N 974124653 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16329 2025-01-02 18:39:24.702 2024-11-01 14:18:10.222 VeronicaGuzmanZ9Q \N \N \N 16830934 5 2 \N \N 100 \N \N f f 0 \N 1704987796 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16653 2023-11-18 05:11:51.858 2024-07-20 17:05:47.561 JakeSchaefer7ER \N \N \N 52241974 5 2 \N \N 100 \N \N f f 0 \N 2396829511 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16680 2023-10-22 22:04:08.397 2024-06-09 13:46:27.248 OmarFloresYEB \N \N \N 199343861 5 2 \N \N 100 \N \N f f 0 \N 1849587219 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16966 2024-02-09 00:21:25.102 2024-10-29 05:32:15.726 BrendaMaysEE3 \N \N \N 95227808 5 2 \N \N 100 \N \N f f 0 \N 1733134402 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17116 2024-09-03 16:16:11.007 2023-08-17 10:15:36.447 VanessaHooper9VD \N \N \N 239612076 5 2 \N \N 100 \N \N f f 0 \N 1061762160 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17415 2024-04-29 03:10:49.17 2023-10-19 22:14:57.182 GeoffreyWarrenHN1 \N \N \N 117967135 5 2 \N \N 100 \N \N f f 0 \N 131418665 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17455 2022-11-26 10:42:25.617 2024-06-17 05:13:36.485 TamiBowman544 \N \N \N 196764517 5 2 \N \N 100 \N \N f f 0 \N 2026136691 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17517 2023-12-14 03:59:32.683 2022-12-08 23:59:09.118 OmarSpencerWHP \N \N \N 142997073 5 2 \N \N 100 \N \N f f 0 \N 1628595250 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17519 2024-01-19 03:52:07.894 2024-11-25 00:28:26.375 TracyMcconnell9B4 \N \N \N 164943158 5 2 \N \N 100 \N \N f f 0 \N 2052596834 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17552 2023-07-25 05:48:38.821 2023-05-14 00:12:35.136 VictoriaChoiV21 \N \N \N 219789363 5 2 \N \N 100 \N \N f f 0 \N 112204203 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17638 2024-02-16 13:54:44.962 2024-12-02 07:51:25.256 HerbertHopkinsP7B \N \N \N 30323446 5 2 \N \N 100 \N \N f f 0 \N 19650982 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17727 2024-07-10 16:08:21.732 2023-12-26 00:57:03.737 AudreyDurham17D \N \N \N 210615466 5 2 \N \N 100 \N \N f f 0 \N 501173330 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17798 2023-11-27 06:43:43.124 2024-03-11 12:42:51.964 AlbertSteeleZPN \N \N \N 38203312 5 2 \N \N 100 \N \N f f 0 \N 360948837 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18494 2024-07-29 20:43:47.457 2023-03-27 15:26:37.859 JoshuaWells7UA \N \N \N 152420130 5 2 \N \N 100 \N \N f f 0 \N 1612971459 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16556 2023-04-26 10:13:06.007 2022-12-12 17:17:15.468 LeonTodd9J1 \N \N \N 4111385 5 2 \N \N 100 \N \N f f 0 \N 1577366780 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1245 2024-06-18 17:23:00.406 2022-11-10 14:56:10.449 GeoffreyHall37W \N \N \N 146985039 5 2 \N \N 100 \N \N f f 0 \N 1417143159 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1135 2024-10-28 23:28:43.939 2023-05-10 15:25:48.841 BillySilva1XT \N \N \N 132611641 5 2 \N \N 100 \N \N f f 0 \N 1946550816 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1552 2024-03-14 20:09:24.034 2023-12-20 11:34:07.678 JenniferParksRHV \N \N \N 126351245 5 2 \N \N 100 \N \N f f 0 \N 1050183514 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1615 2023-12-07 02:57:22.598 2023-04-06 19:32:02.546 ClintonKnight1LI \N \N \N 242556660 5 2 \N \N 100 \N \N f f 0 \N 313854146 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8380 2023-08-17 07:25:43.956 2023-09-01 07:32:38.842 ChadRosarioX5C \N \N \N 82817818 5 2 \N \N 100 \N \N f f 0 \N 444296445 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9262 2024-10-26 07:17:09.582 2023-04-09 15:34:53.444 DianeGallegosRGP \N \N \N 219200492 5 2 \N \N 100 \N \N f f 0 \N 1669827202 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 644 2023-11-03 13:11:51.437 2023-06-30 20:36:44.573 JenniferCervantes8BI \N \N \N 120268465 5 2 \N \N 100 \N \N f f 0 \N 1245702376 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 654 2024-05-21 22:44:20.446 2022-11-29 17:14:24.907 ChrisHerringIQ3 \N \N \N 137192375 5 2 \N \N 100 \N \N f f 0 \N 2178763395 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 671 2024-08-25 05:41:02.77 2022-11-21 16:25:52.902 AngelAndradeFZZ \N \N \N 56196307 5 2 \N \N 100 \N \N f f 0 \N 1755358491 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 749 2024-11-05 10:53:41.481 2023-12-14 05:46:28.243 MiguelJackson25O \N \N \N 231948166 5 2 \N \N 100 \N \N f f 0 \N 2136181730 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 794 2024-04-27 18:46:08.847 2025-02-10 01:42:33.734 KarinaHolmes5BU \N \N \N 186173331 5 2 \N \N 100 \N \N f f 0 \N 894036447 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 837 2023-11-17 14:22:49.237 2022-12-27 12:15:25.476 SaraMccallZLR \N \N \N 70459716 5 2 \N \N 100 \N \N f f 0 \N 1502346761 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1352 2022-11-28 05:31:49.848 2023-10-16 18:10:04.211 TomPatrickTQD \N \N \N 100774105 5 2 \N \N 100 \N \N f f 0 \N 597636997 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1495 2023-05-07 09:07:59.777 2023-03-29 03:42:09.691 ScottCallahanQSV \N \N \N 74191481 5 2 \N \N 100 \N \N f f 0 \N 1155789300 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2151 2023-04-27 22:10:49.795 2023-04-28 08:04:03.614 MarcusStuart5CS \N \N \N 69371953 5 2 \N \N 100 \N \N f f 0 \N 362200660 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2329 2023-11-03 04:26:19.707 2024-04-29 11:21:33.983 FranklinGibbsGAD \N \N \N 7150391 5 2 \N \N 100 \N \N f f 0 \N 271696919 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2460 2023-02-28 02:32:24.506 2025-01-15 02:41:22.968 JayPatterson1PS \N \N \N 235610735 5 2 \N \N 100 \N \N f f 0 \N 195729462 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3683 2024-07-19 07:26:24.985 2025-03-28 05:00:36.834 StephanieSalazarQNG \N \N \N 21323758 5 2 \N \N 100 \N \N f f 0 \N 2305996422 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4345 2024-10-16 20:49:17.839 2024-12-27 07:45:25.991 JoyceJamesEKZ \N \N \N 208333786 5 2 \N \N 100 \N \N f f 0 \N 1285082156 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4538 2024-01-31 21:58:00.768 2023-06-13 15:46:03.669 ChristopherSampsonZFS \N \N \N 253612368 5 2 \N \N 100 \N \N f f 0 \N 704230895 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6160 2023-07-24 21:30:02.971 2023-05-30 02:50:04.853 LindaPhelpsEEN \N \N \N 54076882 5 2 \N \N 100 \N \N f f 0 \N 1896356853 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6741 2025-01-07 19:39:54.777 2024-11-24 21:55:44.427 CurtisGreerVCE \N \N \N 215861964 5 2 \N \N 100 \N \N f f 0 \N 369266780 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9183 2023-02-07 10:56:34.603 2023-11-09 05:25:49.223 LeeMackMKY \N \N \N 5967966 5 2 \N \N 100 \N \N f f 0 \N 520303788 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9330 2024-02-26 00:13:48.85 2024-11-14 06:48:42.72 StanleyReilly6UP \N \N \N 12935023 5 2 \N \N 100 \N \N f f 0 \N 375743528 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11288 2023-09-03 00:25:48.456 2025-03-10 10:16:36.759 KristinaBenitezFLF \N \N \N 89472441 5 2 \N \N 100 \N \N f f 0 \N 2136996058 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11527 2023-12-06 12:42:48.154 2023-01-15 17:42:54.513 KelliRamos551 \N \N \N 112044471 5 2 \N \N 100 \N \N f f 0 \N 1827729802 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14791 2025-02-26 08:47:02.859 2024-09-30 20:11:20.041 HannahHiggins1Y9 \N \N \N 249978370 5 2 \N \N 100 \N \N f f 0 \N 1866646531 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15488 2023-08-19 15:05:14.687 2024-01-22 16:48:21.346 MeaganWolfMGG \N \N \N 133449313 5 2 \N \N 100 \N \N f f 0 \N 1459821792 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16267 2024-04-19 10:59:29.266 2025-03-03 09:44:07.575 MarieHoldenT0R \N \N \N 163354800 5 2 \N \N 100 \N \N f f 0 \N 1718360566 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16284 2024-03-20 10:16:28.81 2024-12-05 12:40:21.875 MicheleLeeYTI \N \N \N 135281818 5 2 \N \N 100 \N \N f f 0 \N 382274701 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16816 2023-05-04 11:22:13.799 2023-04-22 16:54:29.602 JermaineFlowers2PY \N \N \N 58320227 5 2 \N \N 100 \N \N f f 0 \N 1072447684 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17014 2024-11-21 07:50:52.42 2023-02-04 17:31:39.918 TabithaJoyceS24 \N \N \N 35886475 5 2 \N \N 100 \N \N f f 0 \N 862812549 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17046 2024-10-09 08:36:09.502 2023-10-29 22:54:32.797 JoannHernandezJI6 \N \N \N 246433894 5 2 \N \N 100 \N \N f f 0 \N 1531116865 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17157 2024-12-07 22:26:14.633 2025-02-28 00:31:38.349 EmmaLongXLY \N \N \N 63689809 5 2 \N \N 100 \N \N f f 0 \N 442354931 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17226 2025-01-15 08:01:16.496 2024-05-17 04:59:35.247 ZoeShah0LK \N \N \N 133073495 5 2 \N \N 100 \N \N f f 0 \N 1497995149 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17682 2024-06-02 14:42:10.901 2023-06-27 21:23:28.357 GeraldHickman3ZQ \N \N \N 150971180 5 2 \N \N 100 \N \N f f 0 \N 1846684635 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17991 2023-08-29 11:19:02.141 2024-04-25 06:15:54.15 AndrewRiggsU1F \N \N \N 74541474 5 2 \N \N 100 \N \N f f 0 \N 1303578297 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18306 2024-08-18 15:56:41.653 2024-09-10 04:21:04.282 TanyaLopez3B5 \N \N \N 231456344 5 2 \N \N 100 \N \N f f 0 \N 436836292 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18829 2023-05-11 11:01:19.767 2025-02-09 02:50:54.943 WesleyFischer68K \N \N \N 122195354 5 2 \N \N 100 \N \N f f 0 \N 1556926467 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19217 2024-02-04 19:12:01.916 2025-02-08 00:39:05.51 VictoriaWernerI6J \N \N \N 230789827 5 2 \N \N 100 \N \N f f 0 \N 1021763231 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19469 2024-10-28 14:01:05.79 2025-01-16 15:33:20.131 KiaraCooper8DX \N \N \N 133488555 5 2 \N \N 100 \N \N f f 0 \N 2308189022 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 616 2023-03-10 15:26:15.436 2025-03-29 22:38:35.274 JakeRaymond53O \N \N \N 210846510 5 2 \N \N 100 \N \N f f 0 2025-03-29 22:38:35.273 1750792279 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 2025-03-29 22:38:35.273 f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20073 2023-03-15 10:19:07.691 2023-10-17 10:14:24.75 KyleKempH74 \N \N \N 53611327 5 2 \N \N 100 \N \N f f 0 \N 1444148141 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11378 2022-11-15 21:25:41.836 2024-03-25 17:58:04.243 NicholasRushC5J \N \N \N 151972284 5 2 \N \N 100 \N \N f f 0 \N 2050051797 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17095 2023-02-12 00:32:43.507 2023-07-31 01:05:46.195 LynnSchroederMBH \N \N \N 188042913 5 2 \N \N 100 \N \N f f 0 \N 801304367 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10112 2023-01-05 16:35:37.441 2024-02-22 00:18:14.092 GreggBrewerCK5 \N \N \N 202609790 5 2 \N \N 100 \N \N f f 0 \N 170505315 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 638 2024-05-12 02:10:20.581 2023-09-26 08:27:35.291 NormaMorrow2P6 \N \N \N 324061718 5 2 \N \N 100 \N \N f f 0 \N 1546041520 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1617 2024-01-20 16:48:44.181 2023-06-29 13:23:07.274 AdrianOrozco4QR \N \N \N 106555093 5 2 \N \N 100 \N \N f f 0 \N 1596210910 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11776 2022-11-16 21:36:50.973 2023-09-13 21:18:38.077 FrancesMccallW2K \N \N \N 66937668 5 2 \N \N 100 \N \N f f 0 \N 1812642459 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10719 2023-06-10 08:00:59.205 2022-11-14 23:15:41.401 DorisBaileyY4Q \N \N \N 202182151 5 2 \N \N 100 \N \N f f 0 \N 719352767 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20849 2023-01-20 07:21:28.836 2022-12-31 18:27:10.934 RuthBlankenshipJRK \N \N \N 158346063 5 2 \N \N 100 \N \N f f 0 \N 1763482938 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6335 2024-12-10 22:49:02.549 2024-11-25 23:45:40.88 DerrickConrad64X \N \N \N 139967570 5 2 \N \N 100 \N \N f f 0 \N 254974446 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16912 2024-11-28 11:09:22.039 2023-08-25 07:37:05.901 PhyllisArroyo7DM \N \N \N 58866673 5 2 \N \N 100 \N \N f f 0 \N 633195051 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20523 2024-08-30 13:44:42.112 2025-01-16 07:36:06.689 BrookeGentry17P \N \N \N 99114877 5 2 \N \N 100 \N \N f f 0 \N 101492535 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3656 2024-08-03 02:18:43.705 2023-03-18 18:14:40.707 JodyTannerO0G \N \N \N 196743438 5 2 \N \N 100 \N \N f f 0 \N 2251530094 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20450 2025-01-28 08:10:07.111 2024-06-07 13:37:02.125 LawrenceKaiserN74 \N \N \N 11133926 5 2 \N \N 100 \N \N f f 0 \N 997502885 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20939 2023-12-24 21:57:55.036 2024-01-06 13:36:11.027 GregDavid2CB \N \N \N 248186869 5 2 \N \N 100 \N \N f f 0 \N 974851501 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16929 2024-01-05 03:32:06.447 2022-12-15 07:38:06.183 BrendaFlynnWW2 \N \N \N 12425848 5 2 \N \N 100 \N \N f f 0 \N 310009469 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21279 2023-11-21 18:19:05.52 2023-03-17 04:10:28.736 SaraArcherPLI \N \N \N 27746619 5 2 \N \N 100 \N \N f f 0 \N 2333057830 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6393 2024-04-14 06:12:30.491 2024-11-03 20:22:09.814 BridgetOconnorO4U \N \N \N 222857633 5 2 \N \N 100 \N \N f f 0 \N 2467754573 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21710 2022-12-22 19:49:26.729 2024-03-09 03:25:57.593 XavierEllison3WL \N \N \N 236048714 5 2 \N \N 100 \N \N f f 0 \N 2351806052 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12169 2023-03-13 15:39:39.727 2023-03-18 00:57:48.264 GeoffreyMendez9XR \N \N \N 167248758 5 2 \N \N 100 \N \N f f 0 \N 374859055 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21547 2023-08-10 10:47:31.645 2023-10-10 07:13:24.074 NeilMontesB0F \N \N \N 53895171 5 2 \N \N 100 \N \N f f 0 \N 1720451998 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14785 2023-12-09 06:36:14.677 2025-02-19 23:43:00.431 RichardHull3E4 \N \N \N 1835505 5 2 \N \N 100 \N \N f f 0 \N 1218628363 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16356 2023-02-20 22:47:25.001 2024-09-26 22:07:02.564 GaryCannon86M \N \N \N 226466121 5 2 \N \N 100 \N \N f f 0 \N 1694023427 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19829 2024-03-29 22:57:50.37 2023-09-26 14:57:02.823 DerekNunezTYC \N \N \N 245717442 5 2 \N \N 100 \N \N f f 0 \N 1901070133 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16956 2023-09-16 19:01:40.47 2023-01-05 16:20:27.6 AmandaFerrellZCX \N \N \N 18263790 5 2 \N \N 100 \N \N f f 0 \N 2051916354 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2010 2023-08-05 22:02:44.888 2023-03-07 21:18:52.339 KayleeReevesGLY \N \N \N 9800074 5 2 \N \N 100 \N \N f f 0 \N 2056599974 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21482 2022-11-20 20:08:04.515 2023-01-13 00:59:36.586 YvetteCain1EM \N \N \N 17294247 5 2 \N \N 100 \N \N f f 0 \N 2137920897 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19655 2023-09-04 22:11:54.121 2024-11-06 06:17:21.026 JoannLawrenceZ30 \N \N \N 6852713 5 2 \N \N 100 \N \N f f 0 \N 970059756 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 776 2024-12-03 19:45:26.133 2024-08-20 23:25:32.934 DylanBoone1JV \N \N \N 178211223 5 2 \N \N 100 \N \N f f 0 \N 1790690867 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11144 2024-03-08 21:04:18.532 2024-10-30 14:04:55.079 EileenLucas62F \N \N \N 178673297 5 2 \N \N 100 \N \N f f 0 \N 130568224 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1047 2024-05-18 02:20:05.362 2023-04-03 06:17:11.664 KristinEricksonD7E \N \N \N 169375258 5 2 \N \N 100 \N \N f f 0 \N 2209972693 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1618 2024-12-27 10:46:17.955 2023-10-03 14:45:39.238 AprilGibbs1RZ \N \N \N 139277715 5 2 \N \N 100 \N \N f f 0 \N 2403919481 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10096 2022-12-13 22:24:31.525 2024-06-20 16:55:04.22 ElijahVelazquezUBB \N \N \N 45494191 5 2 \N \N 100 \N \N f f 0 \N 1463981970 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9921 2024-11-27 04:14:03.334 2023-06-26 22:46:35.906 BryceCummings7PZ \N \N \N 13535626 5 2 \N \N 100 \N \N f f 0 \N 706402995 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6526 2024-10-07 08:15:48.948 2023-10-14 21:33:02.378 DianeStuartDZ0 \N \N \N 184203603 5 2 \N \N 100 \N \N f f 0 \N 748045964 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4118 2025-03-09 00:33:31.433 2022-12-10 14:58:30.394 ElizabethCoffeyY5X \N \N \N 163351923 5 2 \N \N 100 \N \N f f 0 \N 1630699001 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5455 2023-03-07 10:13:27.032 2024-03-11 07:22:02.485 GrantElliottVMK \N \N \N 235641351 5 2 \N \N 100 \N \N f f 0 \N 1067883362 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4313 2023-04-02 14:30:57.48 2023-12-07 09:38:22.636 AndresFaulkner1RS \N \N \N 234249831 5 2 \N \N 100 \N \N f f 0 \N 2194482294 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2022 2024-10-17 02:22:10.786 2024-05-02 04:27:20.994 LaurenVillegasYKZ \N \N \N 4658957 5 2 \N \N 100 \N \N f f 0 \N 2150645163 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11609 2023-11-27 11:13:16.775 2024-12-03 08:40:55.947 MikeCarneyXWT \N \N \N 5036825 5 2 \N \N 100 \N \N f f 0 \N 65922587 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9200 2023-03-05 02:06:59.58 2024-07-09 09:09:43.374 MarciaLeachCK5 \N \N \N 217784077 5 2 \N \N 100 \N \N f f 0 \N 2060565175 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5708 2023-12-19 04:41:31.112 2024-04-22 03:25:14.47 MarioChristensenEE2 \N \N \N 64192707 5 2 \N \N 100 \N \N f f 0 \N 338698015 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 940 2022-12-31 12:04:59.281 2024-04-30 01:11:20.563 MariaGibsonCP2 \N \N \N 191521608 5 2 \N \N 100 \N \N f f 0 \N 1428273604 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2537 2022-12-26 07:47:12.795 2024-02-27 18:22:04.726 SandraHerrera5TB \N \N \N 210498802 5 2 \N \N 100 \N \N f f 0 \N 1730501683 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1624 2023-09-04 16:27:46.206 2022-11-12 20:51:31.541 JoyceSavageAYU \N \N \N 72862185 5 2 \N \N 100 \N \N f f 0 \N 275780439 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2000 2024-09-02 09:04:25.244 2024-11-17 14:26:33.876 VincentHubbardDIW \N \N \N 47223145 5 2 \N \N 100 \N \N f f 0 \N 86733370 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4654 2023-04-15 21:36:29.013 2023-06-10 11:34:47.935 DennisAcosta3FK \N \N \N 54864221 5 2 \N \N 100 \N \N f f 0 \N 651895759 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6594 2023-04-01 03:07:58.938 2022-11-17 20:08:47.742 XavierFrancis5EC \N \N \N 248289399 5 2 \N \N 100 \N \N f f 0 \N 630714713 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19527 2023-07-21 04:30:37.634 2023-08-27 02:44:36.144 CarlaGonzalez517 \N \N \N 63090 5 2 \N \N 100 \N \N f f 0 \N 1532941637 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16406 2024-05-08 03:34:35.364 2023-02-22 18:09:08.522 BlakeBooneWQ8 \N \N \N 221311357 5 2 \N \N 100 \N \N f f 0 \N 1417492623 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1286 2023-01-14 20:00:15.906 2025-02-10 03:40:30.657 SheenaPalmerMC7 \N \N \N 235655408 5 2 \N \N 100 \N \N f f 0 \N 20227197 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14260 2024-06-17 11:41:13.876 2024-02-07 04:05:57.995 HaroldHunter33L \N \N \N 145453609 5 2 \N \N 100 \N \N f f 0 \N 978539134 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20713 2024-01-20 01:24:43.952 2024-07-23 02:04:32.202 JoshuaVargasRV4 \N \N \N 234493708 5 2 \N \N 100 \N \N f f 0 \N 712317531 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1471 2024-11-23 06:50:20.377 2024-12-30 19:53:09.769 RoyClayton7Y1 \N \N \N 178870481 5 2 \N \N 100 \N \N f f 0 \N 233124308 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12821 2023-10-06 08:46:44.992 2024-09-09 10:09:14.516 CassandraJames033 \N \N \N 117296346 5 2 \N \N 100 \N \N f f 0 \N 1622429028 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4570 2023-05-17 04:23:49.693 2023-12-15 14:25:23.745 CheyenneMillerCLV \N \N \N 48830272 5 2 \N \N 100 \N \N f f 0 \N 1586008598 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19524 2023-09-13 15:59:39.968 2023-09-27 13:12:42.48 LeroyJosephBDK \N \N \N 30523134 5 2 \N \N 100 \N \N f f 0 \N 673962305 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 684 2022-12-05 02:13:28.976 2024-04-03 14:00:20.986 JermaineJefferson872 \N \N \N 106636530 5 2 \N \N 100 \N \N f f 0 \N 790017965 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1130 2024-03-05 20:41:48.975 2023-02-03 12:19:30.352 RachelMuellerHWH \N \N \N 70559524 5 2 \N \N 100 \N \N f f 0 \N 382639359 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1221 2023-08-18 00:04:50.822 2023-04-11 05:41:36.372 AimeeHouseJRI \N \N \N 41831404 5 2 \N \N 100 \N \N f f 0 \N 952033491 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 844 2023-03-13 05:30:34.404 2024-12-28 11:24:58.921 ReginaldParker3IB \N \N \N 169305913 5 2 \N \N 100 \N \N f f 0 \N 1968276308 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5578 2023-11-28 06:13:35.198 2023-01-21 21:57:34.592 SaraMarshall57Q \N \N \N 88420155 5 2 \N \N 100 \N \N f f 0 \N 1301665189 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14168 2025-01-17 08:57:59.557 2023-12-15 02:22:46.091 CharlotteGarnerQH5 \N \N \N 117156210 5 2 \N \N 100 \N \N f f 0 \N 323822585 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2285 2022-11-22 07:17:53.011 2023-08-31 19:31:34.134 DonnaForbes0OB \N \N \N 85621965 5 2 \N \N 100 \N \N f f 0 \N 1180787789 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2757 2025-01-12 21:30:40.435 2023-01-29 18:28:08.777 TomBensonAN0 \N \N \N 224874142 5 2 \N \N 100 \N \N f f 0 \N 432271359 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3396 2024-05-29 04:32:06.955 2024-12-13 02:15:21.886 LeeOrozcoIHR \N \N \N 170599133 5 2 \N \N 100 \N \N f f 0 \N 211798895 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4388 2023-03-08 23:01:09.515 2025-02-12 23:35:31.692 SylviaPennington7FR \N \N \N 109612217 5 2 \N \N 100 \N \N f f 0 \N 906181973 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9476 2025-03-20 18:58:27.076 2024-12-31 18:31:26.044 JaniceGainesS2U \N \N \N 106419730 5 2 \N \N 100 \N \N f f 0 \N 926783397 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10731 2024-04-28 04:28:57.025 2025-01-29 15:31:04.931 MindyElliott14P \N \N \N 66197682 5 2 \N \N 100 \N \N f f 0 \N 238405145 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1658 2025-03-09 16:22:49.658 2024-05-23 18:22:23.669 MercedesHoustonT1H \N \N \N 63915222 5 2 \N \N 100 \N \N f f 0 \N 2381897871 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2111 2024-05-09 17:41:56.488 2025-03-07 00:11:03.734 LoriWeber2YN \N \N \N 233895209 5 2 \N \N 100 \N \N f f 0 \N 244299304 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2709 2025-03-01 01:16:29.437 2024-01-02 22:27:38.216 GregoryWalsh9WV \N \N \N 117047805 5 2 \N \N 100 \N \N f f 0 \N 448123038 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4633 2023-09-07 08:09:38.273 2024-09-30 09:38:00.365 KristiFryR19 \N \N \N 127910792 5 2 \N \N 100 \N \N f f 0 \N 304917521 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4650 2025-01-06 22:53:45.45 2023-06-08 00:07:40.518 LauriePetersF3B \N \N \N 116123636 5 2 \N \N 100 \N \N f f 0 \N 1786892482 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4802 2022-11-21 03:23:44.267 2024-04-24 14:53:44.163 PhyllisFerguson8Z5 \N \N \N 102123173 5 2 \N \N 100 \N \N f f 0 \N 774687533 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6382 2023-06-06 06:57:59.753 2024-10-14 03:19:29.635 CalebMorrisonUBE \N \N \N 217347048 5 2 \N \N 100 \N \N f f 0 \N 523662954 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7125 2022-12-15 21:13:31.531 2022-12-07 16:10:10.745 TommyNorman4PL \N \N \N 180530011 5 2 \N \N 100 \N \N f f 0 \N 1230778567 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7772 2024-01-15 23:26:13.975 2023-06-03 10:32:40.33 JodyLarson9XR \N \N \N 16484156 5 2 \N \N 100 \N \N f f 0 \N 1862395049 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7913 2023-08-19 04:07:43.671 2024-02-18 19:23:58.019 SteveMalone8B5 \N \N \N 127987201 5 2 \N \N 100 \N \N f f 0 \N 1457048028 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8269 2022-12-09 22:03:24.032 2022-11-17 00:08:50.303 KarenEatonPJA \N \N \N 185140023 5 2 \N \N 100 \N \N f f 0 \N 1536629454 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8535 2022-12-06 19:59:25.686 2024-11-19 15:54:20.912 MarcVelasquez1JQ \N \N \N 205079700 5 2 \N \N 100 \N \N f f 0 \N 420357639 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9159 2024-09-13 18:34:55.381 2022-11-13 00:58:04.852 TinaShieldsV9V \N \N \N 165002594 5 2 \N \N 100 \N \N f f 0 \N 1516386412 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9426 2023-12-28 17:20:11.639 2025-01-27 03:04:49.386 SueWillisYA4 \N \N \N 68821222 5 2 \N \N 100 \N \N f f 0 \N 635578051 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10352 2022-11-23 07:01:30.024 2024-05-04 10:00:14.335 JohnWeaverUEE \N \N \N 40196256 5 2 \N \N 100 \N \N f f 0 \N 1209992727 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10469 2023-10-17 13:37:01.644 2023-09-09 08:23:44.019 ChelseaOsbornZVX \N \N \N 242652272 5 2 \N \N 100 \N \N f f 0 \N 771602382 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10591 2024-03-19 11:57:22.166 2024-02-08 10:31:20.182 TammyNguyenCOU \N \N \N 24171824 5 2 \N \N 100 \N \N f f 0 \N 858751949 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11942 2025-01-23 18:44:51.994 2024-04-17 02:50:29.909 AdamBrucePHV \N \N \N 165287343 5 2 \N \N 100 \N \N f f 0 \N 1896090922 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12049 2023-02-14 02:35:50.319 2025-01-25 12:29:54.071 StacieYatesQ37 \N \N \N 88711409 5 2 \N \N 100 \N \N f f 0 \N 325200539 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12272 2023-02-10 22:30:43.137 2024-12-30 17:29:00.279 CharleneCollins6OJ \N \N \N 160694429 5 2 \N \N 100 \N \N f f 0 \N 2020822010 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12744 2024-04-14 17:56:01.071 2024-12-29 22:57:28.487 AudreyYuKH3 \N \N \N 113874271 5 2 \N \N 100 \N \N f f 0 \N 1213941378 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12965 2024-12-15 15:28:55.289 2023-12-11 13:47:08.74 BobbyMurrayF8N \N \N \N 236056070 5 2 \N \N 100 \N \N f f 0 \N 81432457 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13097 2023-05-01 22:53:42.09 2023-07-08 11:36:25.321 DonaldWilliamsonW86 \N \N \N 8176455 5 2 \N \N 100 \N \N f f 0 \N 1647360014 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13169 2024-12-13 11:41:10.027 2023-08-13 17:46:26.843 AdrienneWeaverXCE \N \N \N 36849943 5 2 \N \N 100 \N \N f f 0 \N 752322021 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13361 2025-01-18 20:04:13.898 2024-10-13 02:26:14.945 PeggyBrightVJA \N \N \N 244436896 5 2 \N \N 100 \N \N f f 0 \N 1208877651 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13517 2024-11-07 22:28:26.032 2024-09-08 13:34:21.555 SusanLewisEJZ \N \N \N 132677743 5 2 \N \N 100 \N \N f f 0 \N 688435197 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13921 2025-03-19 08:44:17.563 2023-07-22 12:20:27.61 BrittanyHatfieldZQ0 \N \N \N 142047492 5 2 \N \N 100 \N \N f f 0 \N 2255293946 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16336 2024-08-07 18:21:35.617 2024-04-25 04:31:09.888 BillyValentineEYC \N \N \N 188111553 5 2 \N \N 100 \N \N f f 0 \N 325311745 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16347 2024-04-18 18:55:42.317 2024-07-29 23:23:18.209 JeanetteAlexanderDHM \N \N \N 8562893 5 2 \N \N 100 \N \N f f 0 \N 2435027685 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16789 2024-05-11 09:49:58.314 2023-08-01 06:01:54.879 LindseyMorrisN7R \N \N \N 246947203 5 2 \N \N 100 \N \N f f 0 \N 516084577 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17221 2023-07-05 01:33:09.951 2023-06-01 22:11:01.477 CoreyBradley8GH \N \N \N 106730291 5 2 \N \N 100 \N \N f f 0 \N 968374797 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17693 2023-06-11 18:19:53.07 2024-05-07 16:20:27.738 RobynGlover4YI \N \N \N 223282059 5 2 \N \N 100 \N \N f f 0 \N 1750671968 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17714 2024-10-14 08:19:15.171 2023-06-24 18:43:04.463 EbonyTaylorDRH \N \N \N 55631374 5 2 \N \N 100 \N \N f f 0 \N 1172178822 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18116 2024-12-06 18:47:33.731 2023-06-18 16:02:45.347 JennaLopezVNB \N \N \N 31289055 5 2 \N \N 100 \N \N f f 0 \N 1731078468 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18219 2023-12-06 09:19:09.97 2023-04-01 20:01:47.348 StefanieMorrisonPOO \N \N \N 105476766 5 2 \N \N 100 \N \N f f 0 \N 1973369967 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18368 2023-06-22 23:23:05.505 2024-03-25 10:47:21.027 PhilipShawTNM \N \N \N 96653781 5 2 \N \N 100 \N \N f f 0 \N 698789020 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18423 2024-12-04 03:33:00.788 2023-04-29 20:10:41.078 NatashaHouse2OX \N \N \N 185164098 5 2 \N \N 100 \N \N f f 0 \N 1559657339 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19375 2024-05-01 02:25:01.358 2024-09-14 15:22:37.388 JulieRangelXZB \N \N \N 146529177 5 2 \N \N 100 \N \N f f 0 \N 889250835 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19463 2024-04-26 23:09:21.852 2023-07-24 19:36:55.9 WayneWallGK1 \N \N \N 199900145 5 2 \N \N 100 \N \N f f 0 \N 962089751 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20026 2023-11-11 08:14:28.184 2024-02-08 13:57:01.55 NormaFrostCJS \N \N \N 45816011 5 2 \N \N 100 \N \N f f 0 \N 1599866099 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20094 2024-10-20 06:43:22.506 2023-11-10 09:04:15.728 MackenzieGallegosA1J \N \N \N 138753575 5 2 \N \N 100 \N \N f f 0 \N 1821263912 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20133 2023-09-07 18:43:26.126 2023-10-14 18:33:29.248 ClaireMahoneyQSZ \N \N \N 76796245 5 2 \N \N 100 \N \N f f 0 \N 1502240458 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20182 2025-01-31 05:19:37.458 2024-11-27 11:42:31.766 JaclynWyatt6II \N \N \N 228376259 5 2 \N \N 100 \N \N f f 0 \N 2243443960 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20799 2023-04-14 07:50:08.292 2023-10-11 05:06:58.191 KatrinaSummers1YI \N \N \N 2154307 5 2 \N \N 100 \N \N f f 0 \N 2379591749 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20993 2022-12-14 06:40:10.266 2023-09-15 04:16:55.722 HollyJohnsFDH \N \N \N 4092037 5 2 \N \N 100 \N \N f f 0 \N 697485336 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21180 2023-12-26 13:45:23.149 2023-06-07 02:20:34.658 JavierBallardM4V \N \N \N 143107189 5 2 \N \N 100 \N \N f f 0 \N 924684461 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21212 2023-04-24 07:53:48.607 2025-03-03 16:52:44.839 ErinGonzalezRZK \N \N \N 230164142 5 2 \N \N 100 \N \N f f 0 \N 523691465 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21398 2023-09-26 22:45:21.687 2024-03-18 17:16:57.135 StanleyFlowersDJR \N \N \N 176728182 5 2 \N \N 100 \N \N f f 0 \N 1821141051 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21416 2023-06-28 19:53:24.566 2023-09-16 09:58:46.259 DamonCervantes7O3 \N \N \N 33509160 5 2 \N \N 100 \N \N f f 0 \N 441160350 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21523 2023-02-24 07:25:37.098 2024-05-12 16:01:19.228 AngelaYuMNW \N \N \N 142028126 5 2 \N \N 100 \N \N f f 0 \N 162902163 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21556 2023-04-18 09:42:27.489 2024-05-14 05:38:07.599 ConnieMcgrathMJ9 \N \N \N 142670232 5 2 \N \N 100 \N \N f f 0 \N 555599930 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2224 2025-03-23 03:36:39.575 2025-03-16 14:06:43.658 KathyKline1GG \N \N \N 63727112 5 2 \N \N 100 \N \N f f 0 \N 1020944526 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8459 2025-02-19 11:12:24.922 2024-01-04 11:53:34.829 TonyArcher1R0 \N \N \N 2731580 5 2 \N \N 100 \N \N f f 0 \N 1810890923 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11328 2023-10-05 03:59:53.698 2025-03-12 14:50:11.303 JasmineStarkUBN \N \N \N 206163800 5 2 \N \N 100 \N \N f f 0 \N 430538273 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11760 2023-10-08 11:51:34.041 2023-05-19 18:57:00.421 RogerSuarezHVX \N \N \N 241263552 5 2 \N \N 100 \N \N f f 0 \N 484223044 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3642 2023-05-20 01:40:19.291 2025-01-18 13:22:01.222 ChloeGilmoreQP6 \N \N \N 220255590 5 2 \N \N 100 \N \N f f 0 \N 259437987 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15367 2024-08-05 18:54:09.502 2023-10-02 22:12:00.972 KathleenZunigaLB5 \N \N \N 23515460 5 2 \N \N 100 \N \N f f 0 \N 767052513 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18188 2025-03-02 20:57:49.38 2023-05-31 06:35:24.969 IsabellaPatrickF42 \N \N \N 248019386 5 2 \N \N 100 \N \N f f 0 \N 2385282742 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10311 2024-03-10 06:42:11.029 2025-03-12 16:35:53.807 IsaacGriffinP93 \N \N \N 185977249 5 2 \N \N 100 \N \N f f 0 \N 1778139455 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1705 2025-01-06 03:24:01.169 2024-06-13 18:42:22.559 ManuelRichardsLNX \N \N \N 105684536 5 2 \N \N 100 \N \N f f 0 \N 1722488918 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4378 2024-10-16 05:21:02.843 2023-06-16 14:21:12.557 DouglasHullQB4 \N \N \N 23518667 5 2 \N \N 100 \N \N f f 0 \N 2229230742 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2402 2024-03-16 16:43:35.65 2023-03-26 07:42:52.478 PaulSalinasMCA \N \N \N 165197148 5 2 \N \N 100 \N \N f f 0 \N 456958625 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 836 2024-05-18 14:14:21.785 2024-08-29 14:11:48.272 HaleyHogan05B \N \N \N 98215572 5 2 \N \N 100 \N \N f f 0 \N 389159425 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 634 2023-10-03 01:35:09.326 2022-12-05 20:16:32.011 HerbertBradshawCXG \N \N \N 141800922 5 2 \N \N 100 \N \N f f 0 \N 2218613886 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2776 2023-07-22 16:19:33.474 2024-11-07 16:25:17.722 LindseyZamoraOP6 \N \N \N 70389914 5 2 \N \N 100 \N \N f f 0 \N 1257690272 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20715 2024-12-22 01:29:20.062 2024-04-19 02:41:01.616 RayLandryJPA \N \N \N 98797373 5 2 \N \N 100 \N \N f f 0 \N 236644616 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 673 2024-01-25 20:17:36.231 2023-08-17 12:59:47.061 RickeyShawQ5P \N \N \N 163199333 5 2 \N \N 100 \N \N f f 0 \N 2406005135 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16348 2023-02-05 07:59:59.662 2024-12-30 12:11:07.584 GabrielleMurray4X0 \N \N \N 169071092 5 2 \N \N 100 \N \N f f 0 \N 2118346806 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17041 2024-01-14 03:57:30.837 2024-07-13 10:34:25.984 RobertRhodesOY3 \N \N \N 151079111 5 2 \N \N 100 \N \N f f 0 \N 1881116204 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9551 2024-11-28 00:32:58.9 2023-02-05 15:59:36.863 LoriMclaughlinV92 \N \N \N 89748037 5 2 \N \N 100 \N \N f f 0 \N 1204462150 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20826 2023-03-10 05:27:05.488 2024-02-16 14:38:48.556 ReneeLevy9NV \N \N \N 80597782 5 2 \N \N 100 \N \N f f 0 \N 89292397 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15463 2023-07-30 00:34:28.552 2023-01-02 00:13:23.272 CristinaColeman7MH \N \N \N 38864918 5 2 \N \N 100 \N \N f f 0 \N 2476217622 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21116 2025-02-28 09:54:47.137 2024-01-15 04:50:30.803 SamuelWoodardF6R \N \N \N 160691559 5 2 \N \N 100 \N \N f f 0 \N 170365883 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14169 2022-11-22 12:54:25.198 2023-04-17 01:10:45.975 ErinRiggsBU2 \N \N \N 99509717 5 2 \N \N 100 \N \N f f 0 \N 625447723 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19018 2024-03-28 01:32:30.727 2024-06-05 10:01:18.922 ChristiePriceF1Z \N \N \N 82682887 5 2 \N \N 100 \N \N f f 0 \N 1703124456 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18269 2023-07-05 04:52:48.589 2023-04-21 06:53:13.876 MariaOwens0ZN \N \N \N 33423907 5 2 \N \N 100 \N \N f f 0 \N 2060984477 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20674 2024-05-24 19:31:24.762 2024-03-02 10:03:38.461 ColePerkins4FH \N \N \N 87883437 5 2 \N \N 100 \N \N f f 0 \N 838756880 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19930 2023-07-22 05:18:52.11 2025-03-11 16:17:36.301 CaitlinClementsNRD \N \N \N 174580363 5 2 \N \N 100 \N \N f f 0 \N 1779247874 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2361 2023-08-04 05:54:42.369 2024-11-26 23:38:56.965 AndreaLucasMO1 \N \N \N 123924258 5 2 \N \N 100 \N \N f f 0 \N 1500002268 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16212 2023-07-20 06:09:59.378 2023-10-20 20:29:14.489 KarenCoffey14O \N \N \N 224285945 5 2 \N \N 100 \N \N f f 0 \N 983690566 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 642 2023-10-12 20:57:28.821 2024-07-07 07:04:59.228 JuliaStewart595 \N \N \N 139210398 5 2 \N \N 100 \N \N f f 0 \N 211898286 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 694 2023-04-13 12:42:09.362 2024-11-29 07:49:55.847 CarrieLynnEKQ \N \N \N 77537910 5 2 \N \N 100 \N \N f f 0 \N 1828502244 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 722 2024-02-10 16:25:39.65 2022-12-24 16:09:26.687 SamanthaAlexanderZ30 \N \N \N 139488678 5 2 \N \N 100 \N \N f f 0 \N 2261222428 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 736 2023-03-02 06:45:47.251 2024-07-22 05:25:18.121 NicoleRiveraWY2 \N \N \N 13064980 5 2 \N \N 100 \N \N f f 0 \N 188836722 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 763 2024-07-23 18:00:38.867 2024-05-07 20:43:45.933 EvelynConrad8CM \N \N \N 72988592 5 2 \N \N 100 \N \N f f 0 \N 1649140169 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 770 2025-03-21 17:24:55.591 2024-07-30 21:51:53.876 AlyssaThompsonPU5 \N \N \N 239833331 5 2 \N \N 100 \N \N f f 0 \N 1711164264 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 825 2024-02-13 09:23:50.945 2023-10-04 01:34:26.566 AnthonyWellsK77 \N \N \N 36979113 5 2 \N \N 100 \N \N f f 0 \N 2088533952 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 859 2024-06-28 06:08:40.132 2025-01-21 14:22:33.869 BriannaRichard4SH \N \N \N 200915198 5 2 \N \N 100 \N \N f f 0 \N 779767517 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 896 2024-03-13 20:40:58.039 2024-10-24 12:42:38.442 VernonWilcoxOVA \N \N \N 236035029 5 2 \N \N 100 \N \N f f 0 \N 2325284614 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 960 2023-12-21 22:53:05.453 2023-12-19 20:08:18.102 JennyBuckGDX \N \N \N 203056159 5 2 \N \N 100 \N \N f f 0 \N 374649095 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 977 2023-03-25 23:02:36.83 2023-01-06 01:54:51.87 KristyEvansSHY \N \N \N 216516750 5 2 \N \N 100 \N \N f f 0 \N 1883721526 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 981 2023-03-24 05:20:59.812 2024-08-01 06:51:49.054 JacksonSteinVK0 \N \N \N 10655923 5 2 \N \N 100 \N \N f f 0 \N 2026429538 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 987 2024-12-12 20:00:35.558 2023-04-21 23:36:13.641 CarolynMann852 \N \N \N 187408622 5 2 \N \N 100 \N \N f f 0 \N 1242174313 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 997 2023-02-25 13:22:01.877 2024-01-25 11:15:50.166 ColeYoungH0G \N \N \N 204385475 5 2 \N \N 100 \N \N f f 0 \N 1662023904 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1772 2025-02-03 21:43:21.071 2025-01-16 12:48:57.307 AlvinReid4JD \N \N \N 169072497 5 2 \N \N 100 \N \N f f 0 \N 1004041378 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17001 2023-12-28 07:53:28.374 2023-07-18 01:29:08.295 StevenRivasHG4 \N \N \N 82851008 5 2 \N \N 100 \N \N f f 0 \N 1347624014 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 909 2022-12-02 20:31:39.561 2023-05-21 07:50:46.938 KiaraFigueroa7WV \N \N \N 127443239 5 2 \N \N 100 \N \N f f 0 \N 2068067701 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1717 2024-09-28 06:09:45.529 2024-08-19 00:39:45.912 FrancisMathisS7G \N \N \N 59902612 5 2 \N \N 100 \N \N f f 0 \N 8261933 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1833 2023-10-04 23:50:58.355 2023-03-13 05:01:59.503 JasmineGlennUSD \N \N \N 37355922 5 2 \N \N 100 \N \N f f 0 \N 2442840823 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1881 2023-03-28 14:11:33.084 2024-11-22 03:47:23.915 SheliaVillegasH0B \N \N \N 169944504 5 2 \N \N 100 \N \N f f 0 \N 990843872 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2724 2023-06-18 04:02:59.586 2022-12-07 09:55:31.876 PatrickSchmidtHCQ \N \N \N 116253727 5 2 \N \N 100 \N \N f f 0 \N 1543025001 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5377 2023-11-05 21:47:32.925 2023-04-24 13:56:20.609 LindaMcmillanZ3Q \N \N \N 56516884 5 2 \N \N 100 \N \N f f 0 \N 56703261 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6268 2023-05-28 23:54:37.27 2023-08-16 06:35:30.662 AdamPerryRHO \N \N \N 118976984 5 2 \N \N 100 \N \N f f 0 \N 2184530166 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7510 2023-03-08 00:38:08.586 2023-08-23 17:17:36.111 ConnieDoughertyWKJ \N \N \N 110325119 5 2 \N \N 100 \N \N f f 0 \N 1557527127 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8416 2023-07-05 14:19:31.471 2024-12-28 11:29:09.418 RickyJosephQUG \N \N \N 189397998 5 2 \N \N 100 \N \N f f 0 \N 634089380 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8985 2023-07-14 17:27:29.944 2024-08-13 08:05:32.533 RebekahPayne7CQ \N \N \N 119875396 5 2 \N \N 100 \N \N f f 0 \N 517501178 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9335 2023-03-17 00:07:34.012 2024-08-19 16:50:52.034 MaureenHardyRL8 \N \N \N 193283001 5 2 \N \N 100 \N \N f f 0 \N 1683980916 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9347 2025-03-14 05:52:38.238 2023-12-09 19:15:39.278 AdrianaGreenFJC \N \N \N 220067402 5 2 \N \N 100 \N \N f f 0 \N 864860069 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9348 2024-12-04 08:07:35.529 2023-12-05 12:44:40.984 CoryMaysYU9 \N \N \N 80041830 5 2 \N \N 100 \N \N f f 0 \N 396918572 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9366 2024-07-12 18:10:57.07 2023-08-22 11:39:03.877 WarrenLandryKS4 \N \N \N 223069948 5 2 \N \N 100 \N \N f f 0 \N 1479845671 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9820 2024-12-18 14:49:03.197 2024-03-14 03:18:53.176 HaleyBautistaSWK \N \N \N 15329067 5 2 \N \N 100 \N \N f f 0 \N 1117215821 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10007 2023-01-25 02:56:25.234 2023-11-05 21:41:20.207 EricFreemanIGO \N \N \N 51286564 5 2 \N \N 100 \N \N f f 0 \N 1682576042 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12057 2023-02-01 12:52:26.106 2025-01-18 08:52:01.558 AlishaRoblesZMQ \N \N \N 33327158 5 2 \N \N 100 \N \N f f 0 \N 2332413335 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5809 2023-09-18 20:36:44.783 2023-10-03 22:49:45.175 HollyCastroT8R \N \N \N 239969559 5 2 \N \N 100 \N \N f f 0 \N 718928655 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8045 2023-06-09 13:07:09.717 2025-02-19 16:32:01.819 ShelbyGillespie0IO \N \N \N 88289486 5 2 \N \N 100 \N \N f f 0 \N 1509450653 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9099 2024-10-15 16:38:40.828 2024-07-07 05:19:04.089 BettyHayesWFE \N \N \N 158648797 5 2 \N \N 100 \N \N f f 0 \N 811992439 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15243 2024-04-03 01:37:40.096 2022-11-17 11:18:27.75 MaureenTapia17F \N \N \N 171235265 5 2 \N \N 100 \N \N f f 0 \N 2437659747 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16942 2023-10-31 03:47:00.607 2023-08-03 12:26:11.357 NeilWadeNS9 \N \N \N 61782679 5 2 \N \N 100 \N \N f f 0 \N 2442390169 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17050 2023-02-08 18:13:01.545 2024-01-23 02:27:50.667 JocelynSolomonSXL \N \N \N 92567476 5 2 \N \N 100 \N \N f f 0 \N 1294133924 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17291 2025-02-01 23:15:19.4 2023-09-21 19:56:54.634 AlexisMckeePPI \N \N \N 201976688 5 2 \N \N 100 \N \N f f 0 \N 30845952 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19535 2023-08-01 14:53:18.223 2024-05-15 23:22:59.848 EthanKeyS7K \N \N \N 87867283 5 2 \N \N 100 \N \N f f 0 \N 1917452253 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20243 2023-02-23 16:30:37.956 2023-04-10 06:53:50.673 DwayneAcevedoPV2 \N \N \N 106452913 5 2 \N \N 100 \N \N f f 0 \N 2332783266 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 3392 2023-10-09 05:33:11.467 2024-06-21 00:08:02.008 WalterNichols6MN \N \N \N 204788628 5 2 \N \N 100 \N \N f f 0 \N 1423237800 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13198 2024-08-08 08:04:50.966 2023-10-01 06:19:41.175 ErnestBakerBR3 \N \N \N 151485294 5 2 \N \N 100 \N \N f f 0 \N 1480585293 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16289 2023-02-13 23:06:23.985 2022-12-08 22:37:57.133 ShelbyBerryXGT \N \N \N 10142576 5 2 \N \N 100 \N \N f f 0 \N 876818827 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19689 2024-03-07 19:31:36.519 2024-04-03 15:11:55.421 JuliaRyan6EO \N \N \N 27876551 5 2 \N \N 100 \N \N f f 0 \N 872077211 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8989 2023-10-15 13:18:05.355 2023-06-04 09:48:22.536 DorisWilkinson1VS \N \N \N 123052587 5 2 \N \N 100 \N \N f f 0 \N 929833980 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15732 2024-03-12 11:04:35.562 2024-02-25 01:35:27.544 LeslieWolfeTT4 \N \N \N 121258916 5 2 \N \N 100 \N \N f f 0 \N 1703993473 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20811 2024-12-16 10:16:25.449 2025-01-30 15:15:55.549 MadisonPineda65H \N \N \N 200905485 5 2 \N \N 100 \N \N f f 0 \N 870630312 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20434 2022-11-14 23:44:23.991 2025-01-30 07:30:37.959 AbigailMatthewsLDS \N \N \N 42895169 5 2 \N \N 100 \N \N f f 0 \N 1704975454 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21019 2022-12-31 22:31:18.377 2022-12-29 19:18:46.539 ClintonOconnorQW7 \N \N \N 151215819 5 2 \N \N 100 \N \N f f 0 \N 1365616806 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20837 2022-11-19 21:53:49.877 2024-07-17 07:30:25.999 GregGilesH1Z \N \N \N 131719098 5 2 \N \N 100 \N \N f f 0 \N 2047623470 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15326 2024-01-01 03:23:18.222 2024-12-27 13:57:02.257 DwayneDelacruzIWR \N \N \N 245008574 5 2 \N \N 100 \N \N f f 0 \N 1460126383 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20603 2023-04-23 01:00:39.605 2024-08-20 10:04:25.492 EllenAguilarMHE \N \N \N 44108425 5 2 \N \N 100 \N \N f f 0 \N 580086523 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6471 2025-02-23 02:02:56.11 2022-12-25 15:08:50.74 LonnieBradyLPC \N \N \N 152827943 5 2 \N \N 100 \N \N f f 0 \N 1772556753 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21672 2024-02-08 16:00:05.355 2024-10-16 06:16:06.874 KennethStokesXJ3 \N \N \N 206119037 5 2 \N \N 100 \N \N f f 0 \N 676366129 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13348 2023-10-11 06:10:49.561 2024-03-03 03:10:06.693 GwendolynGrant0V4 \N \N \N 104662699 5 2 \N \N 100 \N \N f f 0 \N 878515547 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20775 2024-06-27 23:42:32.285 2024-02-15 00:06:18.11 KurtBurgessWIW \N \N \N 103958702 5 2 \N \N 100 \N \N f f 0 \N 1678501683 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21070 2023-11-01 10:13:13.574 2023-12-24 19:43:25.26 RhondaHunter6CA \N \N \N 188137032 5 2 \N \N 100 \N \N f f 0 \N 406346761 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16270 2023-03-03 20:23:55.416 2024-12-04 02:20:35.247 BryceLamOCK \N \N \N 78687192 5 2 \N \N 100 \N \N f f 0 \N 1348732205 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20990 2024-08-28 08:12:09.422 2023-05-01 16:04:24.376 ToddGuerrero1Q5 \N \N \N 148750326 5 2 \N \N 100 \N \N f f 0 \N 880209808 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12490 2025-03-10 21:46:31.685 2024-10-30 21:57:25.082 BobSellersNZ2 \N \N \N 12130316 5 2 \N \N 100 \N \N f f 0 \N 576608707 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18930 2025-03-29 20:30:44.139 2024-06-21 13:48:05.623 NicholasPerkins86M \N \N \N 115723317 5 2 \N \N 100 \N \N f f 0 \N 1441815264 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 8544 2024-05-17 22:53:21.27 2022-11-22 04:36:01.272 AlejandraMaddoxPEZ \N \N \N 230839009 5 2 \N \N 100 \N \N f f 0 \N 2178124556 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21214 2023-04-24 04:26:58.381 2025-03-26 21:46:44.594 SeanHansenNL8 \N \N \N 165132988 5 2 \N \N 100 \N \N f f 0 \N 1866448542 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20495 2023-10-08 06:07:14.311 2023-09-01 09:26:07.148 IsabelRosalesQEZ \N \N \N 32065564 5 2 \N \N 100 \N \N f f 0 \N 277995463 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 13574 2024-10-21 01:14:13.242 2023-11-28 03:33:31.932 KelseyCardenasZR7 \N \N \N 84836757 5 2 \N \N 100 \N \N f f 0 \N 1913426009 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 891 2025-03-04 04:28:12.676 2024-01-13 04:49:58.49 JesusGarnerIXK \N \N \N 162856907 5 2 \N \N 100 \N \N f f 0 \N 2314400798 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21248 2023-03-13 11:58:50.787 2023-10-16 12:20:40.073 TimFarleyYXO \N \N \N 75205396 5 2 \N \N 100 \N \N f f 0 \N 1782543708 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21218 2024-11-15 03:58:17.597 2023-10-28 14:20:39.55 JonathanMiddleton3KH \N \N \N 38232457 5 2 \N \N 100 \N \N f f 0 \N 830778461 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20657 2024-10-24 14:16:35.17 2023-04-20 17:09:05.462 CurtisMorseLLD \N \N \N 86421665 5 2 \N \N 100 \N \N f f 0 \N 1719901127 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1044 2023-08-21 10:02:55.504 2024-02-07 15:23:33.941 ToniGilmore2JN \N \N \N 111341518 5 2 \N \N 100 \N \N f f 0 \N 731154918 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17218 2023-08-02 13:45:32.545 2023-03-27 18:46:41.671 CarolKrueger7M7 \N \N \N 121305004 5 2 \N \N 100 \N \N f f 0 \N 410780647 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21067 2023-04-09 11:01:39.164 2024-04-04 13:59:57.696 JoyceComptonMRH \N \N \N 33385120 5 2 \N \N 100 \N \N f f 0 \N 483861599 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20602 2023-01-13 02:28:33.978 2023-09-02 20:22:27.178 MoniqueHickmanDPJ \N \N \N 9428784 5 2 \N \N 100 \N \N f f 0 \N 344164108 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15075 2024-08-24 05:45:03.498 2023-06-04 12:40:37.759 HowardTravisF0A \N \N \N 118272721 5 2 \N \N 100 \N \N f f 0 \N 1092139885 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6573 2023-04-22 19:29:20.51 2022-12-01 18:55:40.644 KristieMcphersonDWW \N \N \N 156545563 5 2 \N \N 100 \N \N f f 0 \N 1601784670 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 11395 2023-04-29 16:09:01.593 2023-03-14 07:42:34.703 NicholeMckenzieU7T \N \N \N 103133527 5 2 \N \N 100 \N \N f f 0 \N 1625843465 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21020 2025-02-22 06:50:58.573 2023-04-27 00:22:13.815 DeniseHenryOHF \N \N \N 223338727 5 2 \N \N 100 \N \N f f 0 \N 2182832967 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 12346 2023-04-21 10:33:55.376 2022-11-13 06:31:48.691 DannyHamiltonWM3 \N \N \N 238611409 5 2 \N \N 100 \N \N f f 0 \N 1780525050 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19531 2024-12-02 05:30:34.785 2024-08-30 18:57:32.252 AmberEvansQ3R \N \N \N 162450576 5 2 \N \N 100 \N \N f f 0 \N 1405245004 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21810 2024-06-12 12:20:02.259 2024-11-11 07:52:42.774 TerrenceRubioNTU \N \N \N 213366367 5 2 \N \N 100 \N \N f f 0 \N 1647362641 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21021 2024-12-06 01:39:49.751 2023-03-10 23:02:58.899 GregoryLaraL3L \N \N \N 7180947 5 2 \N \N 100 \N \N f f 0 \N 2351679941 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4862 2023-12-24 02:56:18.039 2024-03-14 18:14:40.687 DouglasRuiz7O5 \N \N \N 115133546 5 2 \N \N 100 \N \N f f 0 \N 457041577 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21072 2024-11-18 03:54:02.924 2024-08-02 05:58:01.605 LatoyaChavezEI6 \N \N \N 201307687 5 2 \N \N 100 \N \N f f 0 \N 2027930317 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1806 2024-08-12 22:23:10.983 2025-02-15 15:46:36.964 NormaGravesNAR \N \N \N 118272918 5 2 \N \N 100 \N \N f f 0 \N 2431203327 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4487 2023-01-26 13:15:10.366 2024-02-14 09:42:59.638 JohnnySantanaBM1 \N \N \N 205829446 5 2 \N \N 100 \N \N f f 0 \N 2168157950 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19943 2024-06-06 22:11:01.364 2024-12-02 17:23:18 NathanielHeathR3V \N \N \N 124348469 5 2 \N \N 100 \N \N f f 0 \N 1824717920 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20614 2024-12-20 09:08:06.088 2025-02-28 15:21:17.303 GlenRivers3LM \N \N \N 210445006 5 2 \N \N 100 \N \N f f 0 \N 1262866674 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 4459 2023-06-02 09:29:32.755 2025-03-21 03:57:28.777 RogerSnowQVX \N \N \N 7460654 5 2 \N \N 100 \N \N f f 0 \N 442852050 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15617 2024-10-29 01:45:00.88 2024-11-16 22:02:07.623 JordanJacksonHQ2 \N \N \N 208182868 5 2 \N \N 100 \N \N f f 0 \N 1559993544 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7746 2022-11-19 19:47:45.38 2023-02-25 22:52:57.175 KristiHaas57T \N \N \N 199178147 5 2 \N \N 100 \N \N f f 0 \N 957009081 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9290 2024-07-23 15:43:26.851 2023-11-27 16:35:42.233 BettyCostaUOC \N \N \N 51826566 5 2 \N \N 100 \N \N f f 0 \N 272138714 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21373 2024-11-26 21:17:49.782 2023-09-28 03:10:52.125 BrittanyConradG5B \N \N \N 164507818 5 2 \N \N 100 \N \N f f 0 \N 413502434 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1114 2024-06-14 03:37:13.233 2023-07-01 14:29:48.123 VeronicaRitterHH7 \N \N \N 162190342 5 2 \N \N 100 \N \N f f 0 \N 2013288468 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14657 2024-07-14 05:53:09.707 2024-11-07 11:31:56.242 GrantJoyceIU6 \N \N \N 11258959 5 2 \N \N 100 \N \N f f 0 \N 1775485422 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19378 2023-12-26 05:56:23.715 2024-02-26 06:23:08.786 GilbertDuffyXYN \N \N \N 39679651 5 2 \N \N 100 \N \N f f 0 \N 195845157 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 687 2023-03-01 18:03:11.014 2024-03-02 05:02:49.497 ParkerLindsey6RV \N \N \N 144071587 5 2 \N \N 100 \N \N f f 0 \N 2309370861 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 688 2024-10-22 03:23:43.849 2024-06-26 07:47:28.897 DawnKimPEA \N \N \N 220246684 5 2 \N \N 100 \N \N f f 0 \N 2120278710 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 699 2023-05-10 01:57:13.754 2023-05-26 01:23:43.675 CoryHooper13M \N \N \N 197040464 5 2 \N \N 100 \N \N f f 0 \N 1267058284 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 700 2024-08-19 01:16:08.738 2025-01-06 16:41:19.633 JimmyMcdonaldQGI \N \N \N 224051507 5 2 \N \N 100 \N \N f f 0 \N 2302931713 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1428 2022-12-22 21:28:00.602 2024-03-06 03:34:20.57 EduardoSaundersB0T \N \N \N 72149196 5 2 \N \N 100 \N \N f f 0 \N 1724377317 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1483 2025-02-10 09:54:53.282 2025-03-18 07:38:56.057 CarlosConleySWV \N \N \N 132399130 5 2 \N \N 100 \N \N f f 0 \N 1362971873 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19842 2024-01-06 11:24:41.958 2023-09-02 04:51:05.876 StevenWallerS1D \N \N \N 142011421 5 2 \N \N 100 \N \N f f 0 \N 15789552 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17984 2023-12-25 15:32:20.306 2025-03-12 11:32:45.616 MelodyTannerPYK \N \N \N 162904652 5 2 \N \N 100 \N \N f f 0 \N 747154780 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 14472 2024-09-25 06:00:47.778 2024-08-08 18:35:32.413 FranciscoDuranW5T \N \N \N 3469108 5 2 \N \N 100 \N \N f f 0 \N 299178565 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17237 2024-08-24 07:51:55.307 2024-05-22 05:55:53.223 JeffreyBentley5JM \N \N \N 165538637 5 2 \N \N 100 \N \N f f 0 \N 968577066 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1213 2024-08-23 09:29:47.22 2023-06-21 01:17:53.573 CraigHaleDSU \N \N \N 63314811 5 2 \N \N 100 \N \N f f 0 \N 436116107 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1515 2023-08-14 20:54:50.906 2023-02-12 09:03:13.334 EvelynGarciaLC4 \N \N \N 102836228 5 2 \N \N 100 \N \N f f 0 \N 1081853033 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1602 2025-02-11 00:45:42.672 2022-11-12 03:59:27.504 ManuelVillarrealVUX \N \N \N 160688131 5 2 \N \N 100 \N \N f f 0 \N 2470242343 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2013 2023-06-02 13:20:21.365 2023-10-25 23:56:29.961 DerrickHendricksEK3 \N \N \N 195217120 5 2 \N \N 100 \N \N f f 0 \N 2235193328 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9992 2024-05-20 02:04:01.453 2024-01-19 21:34:28.571 CindyGibsonMRM \N \N \N 186966822 5 2 \N \N 100 \N \N f f 0 \N 1520224615 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6749 2024-09-01 04:45:57.24 2024-01-01 23:07:43.537 AlisonRoberts5E5 \N \N \N 215620011 5 2 \N \N 100 \N \N f f 0 \N 1367253374 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17494 2023-08-15 14:52:11.871 2023-03-24 13:40:30.959 TyroneGreerZMI \N \N \N 165065775 5 2 \N \N 100 \N \N f f 0 \N 1712832449 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17639 2025-03-14 22:15:58.33 2024-08-17 00:06:46.855 CarolynOrtiz8OM \N \N \N 48363377 5 2 \N \N 100 \N \N f f 0 \N 913783721 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 17953 2025-01-05 18:55:33.579 2023-06-17 07:55:02.7 NinaRodriguezSRV \N \N \N 11483816 5 2 \N \N 100 \N \N f f 0 \N 1521133501 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5171 2024-07-01 09:34:57.848 2023-02-27 03:12:01.026 BradPowersQ9L \N \N \N 33767464 5 2 \N \N 100 \N \N f f 0 \N 712351553 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20377 2025-02-08 01:20:06.112 2023-07-07 04:16:42.104 JadeFisherQB8 \N \N \N 161078685 5 2 \N \N 100 \N \N f f 0 \N 1897584116 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20979 2022-11-15 11:18:24.058 2022-11-26 15:25:40.771 KeithParkerTY0 \N \N \N 8101092 5 2 \N \N 100 \N \N f f 0 \N 169618148 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21824 2024-01-04 16:01:24.28 2024-11-12 21:24:01.223 JudyPattonGG3 \N \N \N 83464378 5 2 \N \N 100 \N \N f f 0 \N 1829947456 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16717 2023-04-21 21:35:25.371 2022-12-23 18:24:59.983 ToniWaltonXL5 \N \N \N 151657977 5 2 \N \N 100 \N \N f f 0 \N 1208600060 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 7903 2024-11-30 01:07:01.915 2024-06-25 04:23:51.329 JohnathanChurchB7I \N \N \N 232565637 5 2 \N \N 100 \N \N f f 0 \N 2291516077 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19663 2023-10-15 06:31:05.908 2024-09-26 19:08:05.65 JonathonBenjaminC2D \N \N \N 98650041 5 2 \N \N 100 \N \N f f 0 \N 1542534034 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 16353 2023-04-05 12:22:25.93 2023-10-01 13:57:27.831 KatieMeza8JR \N \N \N 56165485 5 2 \N \N 100 \N \N f f 0 \N 542247718 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 15213 2023-01-10 04:10:50.709 2023-03-14 06:14:24.378 BrentDoyleQTN \N \N \N 178827407 5 2 \N \N 100 \N \N f f 0 \N 143376634 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21208 2025-01-18 10:32:03.281 2024-06-23 03:11:16.205 CaitlinHuangK4T \N \N \N 35369820 5 2 \N \N 100 \N \N f f 0 \N 2343395787 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1030 2024-05-22 01:41:09.906 2023-12-11 09:18:13.789 JuanEspinozaDTX \N \N \N 37794044 5 2 \N \N 100 \N \N f f 0 \N 151496140 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 18449 2023-03-10 12:50:48.066 2023-04-29 23:18:13.082 DarleneWalkerZ1W \N \N \N 69062925 5 2 \N \N 100 \N \N f f 0 \N 219924703 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 623 2023-10-25 17:54:11.341 2023-06-24 17:33:29.636 KatrinaSparksLJJ \N \N \N 188459739 5 2 \N \N 100 \N \N f f 0 \N 498267076 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1611 2024-03-21 14:23:04.289 2024-06-05 16:55:33.733 AimeeTrujilloD0U \N \N \N 81617081 5 2 \N \N 100 \N \N f f 0 \N 2041025337 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21541 2023-02-04 04:45:21.77 2023-01-06 19:02:24.261 JorgeSosaUOI \N \N \N 169453788 5 2 \N \N 100 \N \N f f 0 \N 315032157 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21518 2023-09-23 00:22:50.423 2024-05-11 08:43:19.306 IsaiahBlackwellMCR \N \N \N 160667394 5 2 \N \N 100 \N \N f f 0 \N 2129960613 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 5904 2023-11-19 15:51:38.675 2024-05-02 05:26:36.506 DarleneNichols2YK \N \N \N 126978495 5 2 \N \N 100 \N \N f f 0 \N 2188581521 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 1310 2023-01-15 12:30:47.174 2023-06-24 18:20:10.223 ClaytonFinleyBLV \N \N \N 243234310 5 2 \N \N 100 \N \N f f 0 \N 1582049262 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10611 2022-12-24 11:49:22.775 2025-02-13 22:14:47.855 JaneCordovaAGQ \N \N \N 35869672 5 2 \N \N 100 \N \N f f 0 \N 1355002428 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21455 2024-03-05 02:04:01.67 2024-09-26 04:00:18.451 ElijahBishopR3D \N \N \N 203854309 5 2 \N \N 100 \N \N f f 0 \N 618084600 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2016 2023-06-11 19:19:29.031 2024-08-09 11:34:44.004 AlexandriaPollardG08 \N \N \N 244840150 5 2 \N \N 100 \N \N f f 0 \N 577776164 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 6260 2023-09-01 11:03:58.332 2024-05-08 03:46:01.384 KristyMcguireMVB \N \N \N 34896683 5 2 \N \N 100 \N \N f f 0 \N 1885833524 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 10638 2023-11-06 17:24:25.625 2023-07-11 16:31:53.277 KariAyalaXS1 \N \N \N 82646480 5 2 \N \N 100 \N \N f f 0 \N 1418774897 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19570 2023-04-20 22:00:32.399 2024-11-08 02:58:33.163 ValeriePoole2HF \N \N \N 142198825 5 2 \N \N 100 \N \N f f 0 \N 1122831572 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 19980 2024-11-20 18:19:16.742 2022-12-12 20:43:01.528 SueQuinn280 \N \N \N 229274720 5 2 \N \N 100 \N \N f f 0 \N 1840209642 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21670 2023-11-11 22:46:03.211 2024-09-13 02:26:31.516 ShariGould7BY \N \N \N 85189975 5 2 \N \N 100 \N \N f f 0 \N 1094928109 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21522 2023-04-27 07:22:11.969 2024-07-27 13:03:25.659 ClaytonStaffordIXX \N \N \N 114738728 5 2 \N \N 100 \N \N f f 0 \N 923814171 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 2206 2024-10-30 12:14:44.806 2024-12-04 15:26:57.428 BaileyMullinsB6G \N \N \N 178928280 5 2 \N \N 100 \N \N f f 0 \N 354989301 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 9332 2023-03-20 11:09:58.67 2025-03-29 20:59:41.857 PrestonCraig2H7 \N \N \N 180092658 5 2 \N \N 100 \N \N f f 0 \N 1629123217 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20588 2023-05-25 21:48:18.594 2024-10-10 16:08:11.958 MarcDawsonEEP \N \N \N 136394529 5 2 \N \N 100 \N \N f f 0 \N 201968287 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20816 2025-03-10 03:09:22.379 2024-07-10 17:26:45.236 JulieWalkerJYG \N \N \N 26759943 5 2 \N \N 100 \N \N f f 0 \N 1383759990 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20956 2023-07-11 20:26:32.898 2024-09-30 01:45:46.45 DerrickIrwinZDR \N \N \N 150125750 5 2 \N \N 100 \N \N f f 0 \N 1077533284 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 20987 2023-08-09 21:22:01.982 2023-08-17 19:54:17.962 DianaNielsenKCI \N \N \N 133178154 5 2 \N \N 100 \N \N f f 0 \N 262062978 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21003 2023-02-12 12:42:04.023 2025-02-03 22:37:51.839 BettyOlsenCYB \N \N \N 11271170 5 2 \N \N 100 \N \N f f 0 \N 2487679009 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21402 2024-12-01 21:35:12.545 2023-04-01 02:03:09.469 AngelLozanoRTM \N \N \N 174170404 5 2 \N \N 100 \N \N f f 0 \N 1504327662 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21494 2023-06-19 00:52:47.639 2024-02-16 12:31:37.441 KellyYangW7P \N \N \N 46447912 5 2 \N \N 100 \N \N f f 0 \N 1222000779 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21647 2023-08-30 02:29:32.563 2024-12-12 09:46:17.272 DebraAvilaRV3 \N \N \N 70126479 5 2 \N \N 100 \N \N f f 0 \N 2328598363 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 21815 2025-01-25 00:57:24.097 2024-09-22 13:53:20.688 BaileyMoody773 \N \N \N 138670246 5 2 \N \N 100 \N \N f f 0 \N 2495730476 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N f t t t \N \N f f \N t \N \N t \N \N 10 \N t \N \N \N \N t t 0 0 10 10 \. -- -- Data for Name: verification_requests; Type: TABLE DATA; Schema: public; Owner: - -- COPY public.verification_requests (id, created_at, updated_at, identifier, token, expires, attempts) FROM stdin; \. -- -- Name: AutoSocialPost_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."AutoSocialPost_id_seq"', 1, true); -- -- Name: DirectPayment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."DirectPayment_id_seq"', 1, false); -- -- Name: Donation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Donation_id_seq"', 2900, true); -- -- Name: Earn_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Earn_id_seq"', 168655, true); -- -- Name: InvoiceForward_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."InvoiceForward_id_seq"', 1, false); -- -- Name: Invoice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Invoice_id_seq"', 159677, true); -- -- Name: ItemForward_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."ItemForward_id_seq"', 1561, true); -- -- Name: ItemMention_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."ItemMention_id_seq"', 1, false); -- -- Name: ItemUserAgg_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."ItemUserAgg_id_seq"', 21936, true); -- -- Name: Item_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Item_id_seq"', 459387, true); -- -- Name: LnAuth_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."LnAuth_id_seq"', 68646, true); -- -- Name: LnWith_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."LnWith_id_seq"', 6893, true); -- -- Name: Log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Log_id_seq"', 426042, true); -- -- Name: Mention_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Mention_id_seq"', 24607, true); -- -- Name: Message_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Message_id_seq"', 1, true); -- -- Name: OFAC_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."OFAC_id_seq"', 1411531, true); -- -- Name: OneDayReferral_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."OneDayReferral_id_seq"', 3, true); -- -- Name: Pin_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Pin_id_seq"', 214, true); -- -- Name: PollBlindVote_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."PollBlindVote_id_seq"', 1, false); -- -- Name: PollOption_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."PollOption_id_seq"', 5135, true); -- -- Name: PollVote_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."PollVote_id_seq"', 24478, true); -- -- Name: PushSubscription_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."PushSubscription_id_seq"', 1967, true); -- -- Name: ReferralAct_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."ReferralAct_id_seq"', 354589, true); -- -- Name: Reminder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Reminder_id_seq"', 1, false); -- -- Name: Reply_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Reply_id_seq"', 16052, true); -- -- Name: Snl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Snl_id_seq"', 1, true); -- -- Name: Streak_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Streak_id_seq"', 13456, true); -- -- Name: SubAct_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."SubAct_id_seq"', 3866, true); -- -- Name: TerritoryTransfer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."TerritoryTransfer_id_seq"', 1, true); -- -- Name: Upload_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Upload_id_seq"', 19953, true); -- -- Name: VaultEntry_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."VaultEntry_id_seq"', 1, false); -- -- Name: Vote_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Vote_id_seq"', 6250838, true); -- -- Name: WalletBlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."WalletBlink_id_seq"', 1, false); -- -- Name: WalletCLN_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."WalletCLN_id_seq"', 1, false); -- -- Name: WalletLND_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."WalletLND_id_seq"', 1, true); -- -- Name: WalletLNbits_int_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."WalletLNbits_int_seq"', 1, false); -- -- Name: WalletLightningAddress_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."WalletLightningAddress_id_seq"', 175, true); -- -- Name: WalletLog_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."WalletLog_id_seq"', 1, false); -- -- Name: WalletNWC_int_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."WalletNWC_int_seq"', 1, false); -- -- Name: WalletPhoenixd_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."WalletPhoenixd_id_seq"', 1, false); -- -- Name: Wallet_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Wallet_id_seq"', 175, true); -- -- Name: Withdrawl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Withdrawl_id_seq"', 28922, true); -- -- Name: accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public.accounts_id_seq', 3958, true); -- -- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public.sessions_id_seq', 30, true); -- -- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public.users_id_seq', 21857, true); -- -- Name: verification_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public.verification_requests_id_seq', 22844, true); -- -- Name: job job_pkey; Type: CONSTRAINT; Schema: pgboss; Owner: - -- ALTER TABLE ONLY pgboss.job ADD CONSTRAINT job_pkey PRIMARY KEY (id); -- -- Name: schedule schedule_pkey; Type: CONSTRAINT; Schema: pgboss; Owner: - -- ALTER TABLE ONLY pgboss.schedule ADD CONSTRAINT schedule_pkey PRIMARY KEY (name); -- -- Name: subscription subscription_pkey; Type: CONSTRAINT; Schema: pgboss; Owner: - -- ALTER TABLE ONLY pgboss.subscription ADD CONSTRAINT subscription_pkey PRIMARY KEY (event, name); -- -- Name: version version_pkey; Type: CONSTRAINT; Schema: pgboss; Owner: - -- ALTER TABLE ONLY pgboss.version ADD CONSTRAINT version_pkey PRIMARY KEY (version); -- -- Name: Arc Arc_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Arc" ADD CONSTRAINT "Arc_pkey" PRIMARY KEY ("fromId", "toId"); -- -- Name: AutoSocialPost AutoSocialPost_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."AutoSocialPost" ADD CONSTRAINT "AutoSocialPost_pkey" PRIMARY KEY (id); -- -- Name: Bookmark Bookmark_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Bookmark" ADD CONSTRAINT "Bookmark_pkey" PRIMARY KEY ("userId", "itemId"); -- -- Name: DirectPayment DirectPayment_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."DirectPayment" ADD CONSTRAINT "DirectPayment_pkey" PRIMARY KEY (id); -- -- Name: Donation Donation_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Donation" ADD CONSTRAINT "Donation_pkey" PRIMARY KEY (id); -- -- Name: Earn Earn_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Earn" ADD CONSTRAINT "Earn_pkey" PRIMARY KEY (id); -- -- Name: Invite Invite_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Invite" ADD CONSTRAINT "Invite_pkey" PRIMARY KEY (id); -- -- Name: InvoiceForward InvoiceForward_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."InvoiceForward" ADD CONSTRAINT "InvoiceForward_pkey" PRIMARY KEY (id); -- -- Name: Invoice Invoice_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Invoice" ADD CONSTRAINT "Invoice_pkey" PRIMARY KEY (id); -- -- Name: ItemForward ItemForward_pct_range_check; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."ItemForward" ADD CONSTRAINT "ItemForward_pct_range_check" CHECK (((pct >= 0) AND (pct <= 100))) NOT VALID; -- -- Name: ItemForward ItemForward_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemForward" ADD CONSTRAINT "ItemForward_pkey" PRIMARY KEY (id); -- -- Name: ItemMention ItemMention_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemMention" ADD CONSTRAINT "ItemMention_pkey" PRIMARY KEY (id); -- -- Name: ItemUpload ItemUpload_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemUpload" ADD CONSTRAINT "ItemUpload_pkey" PRIMARY KEY ("itemId", "uploadId"); -- -- Name: ItemUserAgg ItemUserAgg_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemUserAgg" ADD CONSTRAINT "ItemUserAgg_pkey" PRIMARY KEY (id); -- -- Name: Item Item_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_pkey" PRIMARY KEY (id); -- -- Name: Item Item_unique_time_constraint; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_unique_time_constraint" EXCLUDE USING gist ("userId" WITH =, COALESCE("parentId", '-1'::integer) WITH =, md5(COALESCE(title, ''::text)) WITH =, md5((COALESCE("subName", ''::public.citext))::text) WITH =, md5(COALESCE(text, ''::text)) WITH =, tsrange(created_at, (created_at + '00:10:00'::interval)) WITH &&) WHERE ((created_at > '2024-12-30 00:00:00'::timestamp without time zone)); -- -- Name: LnAuth LnAuth_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."LnAuth" ADD CONSTRAINT "LnAuth_pkey" PRIMARY KEY (id); -- -- Name: LnWith LnWith_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."LnWith" ADD CONSTRAINT "LnWith_pkey" PRIMARY KEY (id); -- -- Name: Log Log_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Log" ADD CONSTRAINT "Log_pkey" PRIMARY KEY (id); -- -- Name: Mention Mention_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mention" ADD CONSTRAINT "Mention_pkey" PRIMARY KEY (id); -- -- Name: Message Message_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Message" ADD CONSTRAINT "Message_pkey" PRIMARY KEY (id); -- -- Name: MuteSub MuteSub_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."MuteSub" ADD CONSTRAINT "MuteSub_pkey" PRIMARY KEY ("userId", "subName"); -- -- Name: Mute Mute_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mute" ADD CONSTRAINT "Mute_pkey" PRIMARY KEY ("muterId", "mutedId"); -- -- Name: NostrRelay NostrRelay_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."NostrRelay" ADD CONSTRAINT "NostrRelay_pkey" PRIMARY KEY (addr); -- -- Name: OFAC OFAC_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."OFAC" ADD CONSTRAINT "OFAC_pkey" PRIMARY KEY (id); -- -- Name: OneDayReferral OneDayReferral_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."OneDayReferral" ADD CONSTRAINT "OneDayReferral_pkey" PRIMARY KEY (id); -- -- Name: Pin Pin_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Pin" ADD CONSTRAINT "Pin_pkey" PRIMARY KEY (id); -- -- Name: PollBlindVote PollBlindVote_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollBlindVote" ADD CONSTRAINT "PollBlindVote_pkey" PRIMARY KEY (id); -- -- Name: PollOption PollOption_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollOption" ADD CONSTRAINT "PollOption_pkey" PRIMARY KEY (id); -- -- Name: PollVote PollVote_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollVote" ADD CONSTRAINT "PollVote_pkey" PRIMARY KEY (id); -- -- Name: PushSubscription PushSubscription_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PushSubscription" ADD CONSTRAINT "PushSubscription_pkey" PRIMARY KEY (id); -- -- Name: ReferralAct ReferralAct_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ReferralAct" ADD CONSTRAINT "ReferralAct_pkey" PRIMARY KEY (id); -- -- Name: Reminder Reminder_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Reminder" ADD CONSTRAINT "Reminder_pkey" PRIMARY KEY (id); -- -- Name: Reply Reply_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Reply" ADD CONSTRAINT "Reply_pkey" PRIMARY KEY (id); -- -- Name: Snl Snl_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Snl" ADD CONSTRAINT "Snl_pkey" PRIMARY KEY (id); -- -- Name: Streak Streak_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Streak" ADD CONSTRAINT "Streak_pkey" PRIMARY KEY (id); -- -- Name: SubAct SubAct_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubAct" ADD CONSTRAINT "SubAct_pkey" PRIMARY KEY (id); -- -- Name: SubSubscription SubSubscription_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubSubscription" ADD CONSTRAINT "SubSubscription_pkey" PRIMARY KEY ("userId", "subName"); -- -- Name: Sub Sub_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Sub" ADD CONSTRAINT "Sub_pkey" PRIMARY KEY (name); -- -- Name: TerritoryTransfer TerritoryTransfer_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."TerritoryTransfer" ADD CONSTRAINT "TerritoryTransfer_pkey" PRIMARY KEY (id); -- -- Name: ThreadSubscription ThreadSubscription_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ThreadSubscription" ADD CONSTRAINT "ThreadSubscription_pkey" PRIMARY KEY ("userId", "itemId"); -- -- Name: Upload Upload_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Upload" ADD CONSTRAINT "Upload_pkey" PRIMARY KEY (id); -- -- Name: UserNostrRelay UserNostrRelay_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserNostrRelay" ADD CONSTRAINT "UserNostrRelay_pkey" PRIMARY KEY ("userId", "nostrRelayAddr"); -- -- Name: UserSubTrust UserSubTrust_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserSubTrust" ADD CONSTRAINT "UserSubTrust_pkey" PRIMARY KEY ("userId", "subName"); -- -- Name: UserSubscription UserSubscription_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserSubscription" ADD CONSTRAINT "UserSubscription_pkey" PRIMARY KEY ("followerId", "followeeId"); -- -- Name: VaultEntry VaultEntry_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."VaultEntry" ADD CONSTRAINT "VaultEntry_pkey" PRIMARY KEY (id); -- -- Name: ItemAct Vote_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemAct" ADD CONSTRAINT "Vote_pkey" PRIMARY KEY (id); -- -- Name: WalletBlink WalletBlink_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletBlink" ADD CONSTRAINT "WalletBlink_pkey" PRIMARY KEY (id); -- -- Name: WalletCLN WalletCLN_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletCLN" ADD CONSTRAINT "WalletCLN_pkey" PRIMARY KEY (id); -- -- Name: WalletLND WalletLND_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLND" ADD CONSTRAINT "WalletLND_pkey" PRIMARY KEY (id); -- -- Name: WalletLNbits WalletLNbits_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLNbits" ADD CONSTRAINT "WalletLNbits_pkey" PRIMARY KEY (id); -- -- Name: WalletLightningAddress WalletLightningAddress_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLightningAddress" ADD CONSTRAINT "WalletLightningAddress_pkey" PRIMARY KEY (id); -- -- Name: WalletLog WalletLog_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLog" ADD CONSTRAINT "WalletLog_pkey" PRIMARY KEY (id); -- -- Name: WalletNWC WalletNWC_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletNWC" ADD CONSTRAINT "WalletNWC_pkey" PRIMARY KEY (id); -- -- Name: WalletPhoenixd WalletPhoenixd_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletPhoenixd" ADD CONSTRAINT "WalletPhoenixd_pkey" PRIMARY KEY (id); -- -- Name: Wallet Wallet_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Wallet" ADD CONSTRAINT "Wallet_pkey" PRIMARY KEY (id); -- -- Name: Withdrawl Withdrawl_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Withdrawl" ADD CONSTRAINT "Withdrawl_pkey" PRIMARY KEY (id); -- -- Name: _prisma_migrations _prisma_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public._prisma_migrations ADD CONSTRAINT _prisma_migrations_pkey PRIMARY KEY (id); -- -- Name: accounts accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.accounts ADD CONSTRAINT accounts_pkey PRIMARY KEY (id); -- -- Name: Sub baseCost_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Sub" ADD CONSTRAINT "baseCost_positive" CHECK (("baseCost" >= 0)) NOT VALID; -- -- Name: Item boost_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT boost_positive CHECK ((boost >= 0)) NOT VALID; -- -- Name: Item bounty; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT bounty CHECK (((bounty IS NULL) OR (bounty > 0))) NOT VALID; -- -- Name: users freeComments_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT "freeComments_positive" CHECK (("freeComments" >= 0)) NOT VALID; -- -- Name: users freePosts_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT "freePosts_positive" CHECK (("freePosts" >= 0)) NOT VALID; -- -- Name: Invite gift_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Invite" ADD CONSTRAINT gift_positive CHECK (((gift IS NULL) OR (gift >= 0))) NOT VALID; -- -- Name: Upload height_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Upload" ADD CONSTRAINT height_positive CHECK (((height IS NULL) OR (height >= 0))) NOT VALID; -- -- Name: Invite limit_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Invite" ADD CONSTRAINT limit_positive CHECK ((("limit" IS NULL) OR ("limit" >= 0))) NOT VALID; -- -- Name: Item maxBid_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT "maxBid_positive" CHECK ((("maxBid" IS NULL) OR ("maxBid" >= 0))) NOT VALID; -- -- Name: Item maxSalary_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT "maxSalary_positive" CHECK ((("maxSalary" IS NULL) OR ("maxSalary" >= 0))) NOT VALID; -- -- Name: users mcredits_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT mcredits_positive CHECK ((mcredits >= 0)) NOT VALID; -- -- Name: Item minSalary_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT "minSalary_positive" CHECK ((("minSalary" IS NULL) OR ("minSalary" >= 0))) NOT VALID; -- -- Name: Withdrawl msatsFeePaid_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Withdrawl" ADD CONSTRAINT "msatsFeePaid_positive" CHECK ((("msatsFeePaid" IS NULL) OR ("msatsFeePaid" >= 0))) NOT VALID; -- -- Name: Withdrawl msatsFeePaying_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Withdrawl" ADD CONSTRAINT "msatsFeePaying_positive" CHECK (("msatsFeePaying" >= 0)) NOT VALID; -- -- Name: Withdrawl msatsPaid_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Withdrawl" ADD CONSTRAINT "msatsPaid_positive" CHECK ((("msatsPaid" IS NULL) OR ("msatsPaid" >= 0))) NOT VALID; -- -- Name: Withdrawl msatsPaying_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Withdrawl" ADD CONSTRAINT "msatsPaying_positive" CHECK (("msatsPaying" >= 0)) NOT VALID; -- -- Name: Invoice msatsReceived_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Invoice" ADD CONSTRAINT "msatsReceived_positive" CHECK ((("msatsReceived" IS NULL) OR ("msatsReceived" >= 0))) NOT VALID; -- -- Name: Invoice msatsRequested_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Invoice" ADD CONSTRAINT "msatsRequested_positive" CHECK (("msatsRequested" >= 0)) NOT VALID; -- -- Name: Earn msats_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Earn" ADD CONSTRAINT msats_positive CHECK ((msats >= 0)) NOT VALID; -- -- Name: users msats_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT msats_positive CHECK ((msats >= 0)) NOT VALID; -- -- Name: Item pollCost_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT "pollCost_positive" CHECK ((("pollCost" IS NULL) OR ("pollCost" >= 0))) NOT VALID; -- -- Name: Sub rewardsPct; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Sub" ADD CONSTRAINT "rewardsPct" CHECK ((("rewardsPct" >= 0) AND ("rewardsPct" <= 100))) NOT VALID; -- -- Name: ItemAct sats_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."ItemAct" ADD CONSTRAINT sats_positive CHECK ((msats >= 0)) NOT VALID; -- -- Name: sessions sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.sessions ADD CONSTRAINT sessions_pkey PRIMARY KEY (id); -- -- Name: Upload size_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Upload" ADD CONSTRAINT size_positive CHECK ((size >= 0)) NOT VALID; -- -- Name: users stackedMcredits_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT "stackedMcredits_positive" CHECK (("stackedMcredits" >= 0)) NOT VALID; -- -- Name: users stackedMsats_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT "stackedMsats_positive" CHECK (("stackedMsats" >= 0)) NOT VALID; -- -- Name: users tipDefault_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT "tipDefault_positive" CHECK (("tipDefault" >= 0)) NOT VALID; -- -- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- -- Name: verification_requests verification_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.verification_requests ADD CONSTRAINT verification_requests_pkey PRIMARY KEY (id); -- -- Name: Item weighted_down_votes_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT weighted_down_votes_positive CHECK (("weightedDownVotes" >= (0)::double precision)) NOT VALID; -- -- Name: Item weighted_votes_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT weighted_votes_positive CHECK (("weightedVotes" >= (0)::double precision)) NOT VALID; -- -- Name: Upload width_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Upload" ADD CONSTRAINT width_positive CHECK (((width IS NULL) OR (width >= 0))) NOT VALID; -- -- Name: archive_archivedon_idx; Type: INDEX; Schema: pgboss; Owner: - -- CREATE INDEX archive_archivedon_idx ON pgboss.archive USING btree (archivedon); -- -- Name: archive_id_idx; Type: INDEX; Schema: pgboss; Owner: - -- CREATE INDEX archive_id_idx ON pgboss.archive USING btree (id); -- -- Name: job_fetch; Type: INDEX; Schema: pgboss; Owner: - -- CREATE INDEX job_fetch ON pgboss.job USING btree (name text_pattern_ops, startafter) WHERE (state < 'active'::pgboss.job_state); -- -- Name: job_name; Type: INDEX; Schema: pgboss; Owner: - -- CREATE INDEX job_name ON pgboss.job USING btree (name text_pattern_ops); -- -- Name: job_singleton_queue; Type: INDEX; Schema: pgboss; Owner: - -- CREATE UNIQUE INDEX job_singleton_queue ON pgboss.job USING btree (name, singletonkey) WHERE ((state < 'active'::pgboss.job_state) AND (singletonon IS NULL) AND (singletonkey ~~ '\_\_pgboss\_\_singleton\_queue%'::text)); -- -- Name: job_singletonkey; Type: INDEX; Schema: pgboss; Owner: - -- CREATE UNIQUE INDEX job_singletonkey ON pgboss.job USING btree (name, singletonkey) WHERE ((state < 'completed'::pgboss.job_state) AND (singletonon IS NULL) AND (NOT (singletonkey ~~ '\_\_pgboss\_\_singleton\_queue%'::text))); -- -- Name: job_singletonkeyon; Type: INDEX; Schema: pgboss; Owner: - -- CREATE UNIQUE INDEX job_singletonkeyon ON pgboss.job USING btree (name, singletonon, singletonkey) WHERE (state < 'expired'::pgboss.job_state); -- -- Name: job_singletonon; Type: INDEX; Schema: pgboss; Owner: - -- CREATE UNIQUE INDEX job_singletonon ON pgboss.job USING btree (name, singletonon) WHERE ((state < 'expired'::pgboss.job_state) AND (singletonkey IS NULL)); -- -- Name: Arc_toId_fromId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Arc_toId_fromId_idx" ON public."Arc" USING btree ("toId", "fromId"); -- -- Name: AutoSocialPost_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "AutoSocialPost_created_at_idx" ON public."AutoSocialPost" USING btree (created_at); -- -- Name: AutoSocialPost_itemId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "AutoSocialPost_itemId_idx" ON public."AutoSocialPost" USING btree ("itemId"); -- -- Name: Bookmark.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Bookmark.created_at_index" ON public."Bookmark" USING btree (created_at); -- -- Name: DirectPayment_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "DirectPayment_created_at_idx" ON public."DirectPayment" USING btree (created_at); -- -- Name: DirectPayment_hash_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "DirectPayment_hash_key" ON public."DirectPayment" USING btree (hash); -- -- Name: DirectPayment_preimage_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "DirectPayment_preimage_key" ON public."DirectPayment" USING btree (preimage); -- -- Name: DirectPayment_receiverId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "DirectPayment_receiverId_idx" ON public."DirectPayment" USING btree ("receiverId"); -- -- Name: DirectPayment_senderId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "DirectPayment_senderId_idx" ON public."DirectPayment" USING btree ("senderId"); -- -- Name: Donation.created_at_day_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Donation.created_at_day_index" ON public."Donation" USING btree (date_trunc('day'::text, timezone('America/Chicago'::text, timezone('UTC'::text, created_at)))); -- -- Name: Donation.created_at_hour_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Donation.created_at_hour_index" ON public."Donation" USING btree (date_trunc('hour'::text, timezone('America/Chicago'::text, timezone('UTC'::text, created_at)))); -- -- Name: Earn.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Earn.created_at_index" ON public."Earn" USING btree (created_at); -- -- Name: Earn.created_at_userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Earn.created_at_userId_index" ON public."Earn" USING btree (created_at, "userId"); -- -- Name: Earn.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Earn.userId_index" ON public."Earn" USING btree ("userId"); -- -- Name: Invite.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invite.created_at_index" ON public."Invite" USING btree (created_at); -- -- Name: Invite.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invite.userId_index" ON public."Invite" USING btree ("userId"); -- -- Name: Invoice.confirmedIndex_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invoice.confirmedIndex_index" ON public."Invoice" USING btree ("confirmedIndex"); -- -- Name: Invoice.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invoice.created_at_index" ON public."Invoice" USING btree (created_at); -- -- Name: Invoice.hash_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Invoice.hash_unique" ON public."Invoice" USING btree (hash); -- -- Name: Invoice.predecessorId_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Invoice.predecessorId_unique" ON public."Invoice" USING btree ("predecessorId"); -- -- Name: Invoice.preimage_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Invoice.preimage_unique" ON public."Invoice" USING btree (preimage); -- -- Name: Invoice.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invoice.userId_index" ON public."Invoice" USING btree ("userId"); -- -- Name: InvoiceForward_invoiceId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "InvoiceForward_invoiceId_idx" ON public."InvoiceForward" USING btree ("invoiceId"); -- -- Name: InvoiceForward_invoiceId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "InvoiceForward_invoiceId_key" ON public."InvoiceForward" USING btree ("invoiceId"); -- -- Name: InvoiceForward_walletId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "InvoiceForward_walletId_idx" ON public."InvoiceForward" USING btree ("walletId"); -- -- Name: InvoiceForward_withdrawlId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "InvoiceForward_withdrawlId_idx" ON public."InvoiceForward" USING btree ("withdrawlId"); -- -- Name: InvoiceForward_withdrawlId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "InvoiceForward_withdrawlId_key" ON public."InvoiceForward" USING btree ("withdrawlId"); -- -- Name: Invoice_actionState_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invoice_actionState_idx" ON public."Invoice" USING btree ("actionState"); -- -- Name: Invoice_actionType_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invoice_actionType_idx" ON public."Invoice" USING btree ("actionType"); -- -- Name: Invoice_cancelledAt_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invoice_cancelledAt_idx" ON public."Invoice" USING btree ("cancelledAt"); -- -- Name: Invoice_confirmedAt_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invoice_confirmedAt_idx" ON public."Invoice" USING btree ("confirmedAt"); -- -- Name: Invoice_isHeld_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invoice_isHeld_idx" ON public."Invoice" USING btree ("isHeld"); -- -- Name: Item.bio_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.bio_index" ON public."Item" USING btree (bio); -- -- Name: Item.created_at_day_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.created_at_day_index" ON public."Item" USING btree (date_trunc('day'::text, timezone('America/Chicago'::text, timezone('UTC'::text, created_at)))); -- -- Name: Item.created_at_hour_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.created_at_hour_index" ON public."Item" USING btree (date_trunc('hour'::text, timezone('America/Chicago'::text, timezone('UTC'::text, created_at)))); -- -- Name: Item.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.created_at_index" ON public."Item" USING btree (created_at); -- -- Name: Item.freebie_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.freebie_index" ON public."Item" USING btree (freebie); -- -- Name: Item.maxBid_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.maxBid_index" ON public."Item" USING btree ("maxBid"); -- -- Name: Item.noteId_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Item.noteId_unique" ON public."Item" USING btree ("noteId"); -- -- Name: Item.parentId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.parentId_index" ON public."Item" USING btree ("parentId"); -- -- Name: Item.path_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.path_index" ON public."Item" USING gist (path public.gist_ltree_ops (siglen='2024')); -- -- Name: Item.path_index0; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.path_index0" ON public."Item" USING gist (path); -- -- Name: Item.pinId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.pinId_index" ON public."Item" USING btree ("pinId"); -- -- Name: Item.rootId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.rootId_index" ON public."Item" USING btree ("rootId"); -- -- Name: Item.statusUpdatedAt_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.statusUpdatedAt_index" ON public."Item" USING btree ("statusUpdatedAt"); -- -- Name: Item.status_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.status_index" ON public."Item" USING btree (status); -- -- Name: Item.subName_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.subName_index" ON public."Item" USING btree ("subName"); -- -- Name: Item.sumSubVotes_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.sumSubVotes_index" ON public."Item" USING btree ((("subWeightedVotes" - "subWeightedDownVotes"))); -- -- Name: Item.sumVotes_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.sumVotes_index" ON public."Item" USING btree ((("weightedVotes" - "weightedDownVotes"))); -- -- Name: Item.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.userId_index" ON public."Item" USING btree ("userId"); -- -- Name: Item.weightedDownVotes_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.weightedDownVotes_index" ON public."Item" USING btree ("weightedDownVotes"); -- -- Name: Item.weightedVotes_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.weightedVotes_index" ON public."Item" USING btree ("weightedVotes"); -- -- Name: ItemAct.act_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.act_index" ON public."ItemAct" USING btree (act); -- -- Name: ItemAct.created_at_day_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.created_at_day_index" ON public."ItemAct" USING btree (date_trunc('day'::text, timezone('America/Chicago'::text, timezone('UTC'::text, created_at)))); -- -- Name: ItemAct.created_at_hour_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.created_at_hour_index" ON public."ItemAct" USING btree (date_trunc('hour'::text, timezone('America/Chicago'::text, timezone('UTC'::text, created_at)))); -- -- Name: ItemAct.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.created_at_index" ON public."ItemAct" USING btree (created_at); -- -- Name: ItemAct.created_at_itemId_act_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.created_at_itemId_act_index" ON public."ItemAct" USING btree (created_at, "itemId", act); -- -- Name: ItemAct.itemId_created_at_act_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.itemId_created_at_act_index" ON public."ItemAct" USING btree ("itemId", created_at, act); -- -- Name: ItemAct.itemId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.itemId_index" ON public."ItemAct" USING btree ("itemId"); -- -- Name: ItemAct.itemId_userId_act_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.itemId_userId_act_index" ON public."ItemAct" USING btree ("itemId", "userId", act); -- -- Name: ItemAct.userId_created_at_act_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.userId_created_at_act_index" ON public."ItemAct" USING btree ("userId", created_at, act); -- -- Name: ItemAct.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.userId_index" ON public."ItemAct" USING btree ("userId"); -- -- Name: ItemAct_invoiceActionState_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct_invoiceActionState_idx" ON public."ItemAct" USING btree ("invoiceActionState"); -- -- Name: ItemAct_invoiceId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct_invoiceId_idx" ON public."ItemAct" USING btree ("invoiceId"); -- -- Name: ItemForward.createdAt_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemForward.createdAt_index" ON public."ItemForward" USING btree (created_at); -- -- Name: ItemForward.itemId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemForward.itemId_index" ON public."ItemForward" USING btree ("itemId"); -- -- Name: ItemForward.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemForward.userId_index" ON public."ItemForward" USING btree ("userId"); -- -- Name: ItemMention.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemMention.created_at_index" ON public."ItemMention" USING btree (created_at); -- -- Name: ItemMention.refereeId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemMention.refereeId_index" ON public."ItemMention" USING btree ("refereeId"); -- -- Name: ItemMention.referrerId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemMention.referrerId_index" ON public."ItemMention" USING btree ("referrerId"); -- -- Name: ItemMention.referrerId_refereeId_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "ItemMention.referrerId_refereeId_unique" ON public."ItemMention" USING btree ("referrerId", "refereeId"); -- -- Name: ItemUpload_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemUpload_created_at_idx" ON public."ItemUpload" USING btree (created_at); -- -- Name: ItemUpload_itemId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemUpload_itemId_idx" ON public."ItemUpload" USING btree ("itemId"); -- -- Name: ItemUpload_uploadId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemUpload_uploadId_idx" ON public."ItemUpload" USING btree ("uploadId"); -- -- Name: ItemUserAgg_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemUserAgg_created_at_idx" ON public."ItemUserAgg" USING btree (created_at); -- -- Name: ItemUserAgg_itemId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemUserAgg_itemId_idx" ON public."ItemUserAgg" USING btree ("itemId"); -- -- Name: ItemUserAgg_itemId_userId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "ItemUserAgg_itemId_userId_key" ON public."ItemUserAgg" USING btree ("itemId", "userId"); -- -- Name: ItemUserAgg_userId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemUserAgg_userId_idx" ON public."ItemUserAgg" USING btree ("userId"); -- -- Name: Item_boost_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item_boost_idx" ON public."Item" USING btree (boost); -- -- Name: Item_cost_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item_cost_idx" ON public."Item" USING btree (cost); -- -- Name: Item_invoiceActionState_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item_invoiceActionState_idx" ON public."Item" USING btree ("invoiceActionState"); -- -- Name: Item_invoiceId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item_invoiceId_idx" ON public."Item" USING btree ("invoiceId"); -- -- Name: Item_invoicePaidAt_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item_invoicePaidAt_idx" ON public."Item" USING btree ("invoicePaidAt"); -- -- Name: Item_lastZapAt_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item_lastZapAt_idx" ON public."Item" USING btree ("lastZapAt"); -- -- Name: Item_paid_created_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item_paid_created_idx" ON public."Item" USING btree (COALESCE("invoicePaidAt", created_at) DESC); -- -- Name: Item_uploadId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item_uploadId_idx" ON public."Item" USING btree ("uploadId"); -- -- Name: Item_url_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item_url_idx" ON public."Item" USING btree (url COLLATE "C"); -- -- Name: LnAuth.k1_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "LnAuth.k1_unique" ON public."LnAuth" USING btree (k1); -- -- Name: LnWith.k1_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "LnWith.k1_unique" ON public."LnWith" USING btree (k1); -- -- Name: Log.name_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Log.name_index" ON public."Log" USING btree (created_at, name); -- -- Name: Mention.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Mention.created_at_index" ON public."Mention" USING btree (created_at); -- -- Name: Mention.itemId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Mention.itemId_index" ON public."Mention" USING btree ("itemId"); -- -- Name: Mention.itemId_userId_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Mention.itemId_userId_unique" ON public."Mention" USING btree ("itemId", "userId"); -- -- Name: Mention.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Mention.userId_index" ON public."Mention" USING btree ("userId"); -- -- Name: MuteSub_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "MuteSub_created_at_idx" ON public."MuteSub" USING btree (created_at); -- -- Name: MuteSub_subName_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "MuteSub_subName_idx" ON public."MuteSub" USING btree ("subName"); -- -- Name: Mute_mutedId_muterId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Mute_mutedId_muterId_idx" ON public."Mute" USING btree ("mutedId", "muterId"); -- -- Name: OFAC_start_ip_end_ip_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "OFAC_start_ip_end_ip_idx" ON public."OFAC" USING gist (public.iprange("startIP", "endIP")); -- -- Name: OneDayReferral_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "OneDayReferral_created_at_idx" ON public."OneDayReferral" USING btree (created_at); -- -- Name: OneDayReferral_refereeId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "OneDayReferral_refereeId_idx" ON public."OneDayReferral" USING btree ("refereeId"); -- -- Name: OneDayReferral_referrerId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "OneDayReferral_referrerId_idx" ON public."OneDayReferral" USING btree ("referrerId"); -- -- Name: OneDayReferral_type_typeId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "OneDayReferral_type_typeId_idx" ON public."OneDayReferral" USING btree (type, "typeId"); -- -- Name: PollBlindVote.itemId_userId_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "PollBlindVote.itemId_userId_unique" ON public."PollBlindVote" USING btree ("itemId", "userId"); -- -- Name: PollBlindVote.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "PollBlindVote.userId_index" ON public."PollBlindVote" USING btree ("userId"); -- -- Name: PollBlindVote_invoiceActionState_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "PollBlindVote_invoiceActionState_idx" ON public."PollBlindVote" USING btree ("invoiceActionState"); -- -- Name: PollOption.itemId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "PollOption.itemId_index" ON public."PollOption" USING btree ("itemId"); -- -- Name: PollVote.pollOptionId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "PollVote.pollOptionId_index" ON public."PollVote" USING btree ("pollOptionId"); -- -- Name: PollVote_invoiceActionState_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "PollVote_invoiceActionState_idx" ON public."PollVote" USING btree ("invoiceActionState"); -- -- Name: PollVote_invoiceId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "PollVote_invoiceId_idx" ON public."PollVote" USING btree ("invoiceId"); -- -- Name: PushSubscription.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "PushSubscription.userId_index" ON public."PushSubscription" USING btree ("userId"); -- -- Name: ReferralAct_itemActId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ReferralAct_itemActId_idx" ON public."ReferralAct" USING btree ("itemActId"); -- -- Name: ReferralAct_referrerId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ReferralAct_referrerId_idx" ON public."ReferralAct" USING btree ("referrerId"); -- -- Name: Reminder.userId_reminderAt_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Reminder.userId_reminderAt_index" ON public."Reminder" USING btree ("userId", "remindAt"); -- -- Name: Reply_ancestorId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Reply_ancestorId_idx" ON public."Reply" USING btree ("ancestorId"); -- -- Name: Reply_ancestorUserId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Reply_ancestorUserId_idx" ON public."Reply" USING btree ("ancestorUserId"); -- -- Name: Reply_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Reply_created_at_idx" ON public."Reply" USING btree (created_at); -- -- Name: Reply_itemId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Reply_itemId_idx" ON public."Reply" USING btree ("itemId"); -- -- Name: Reply_level_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Reply_level_idx" ON public."Reply" USING btree (level); -- -- Name: Reply_userId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Reply_userId_idx" ON public."Reply" USING btree ("userId"); -- -- Name: Streak.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Streak.userId_index" ON public."Streak" USING btree ("userId"); -- -- Name: Streak_startedAt_userId_type_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Streak_startedAt_userId_type_key" ON public."Streak" USING btree ("startedAt", "userId", type); -- -- Name: Streak_type_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Streak_type_idx" ON public."Streak" USING btree (type); -- -- Name: SubAct_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_created_at_idx" ON public."SubAct" USING btree (created_at); -- -- Name: SubAct_created_at_type_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_created_at_type_idx" ON public."SubAct" USING btree (created_at, type); -- -- Name: SubAct_type_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_type_idx" ON public."SubAct" USING btree (type); -- -- Name: SubAct_userId_created_at_type_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_userId_created_at_type_idx" ON public."SubAct" USING btree ("userId", created_at, type); -- -- Name: SubAct_userId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_userId_idx" ON public."SubAct" USING btree ("userId"); -- -- Name: SubAct_userId_type_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_userId_type_idx" ON public."SubAct" USING btree ("userId", type); -- -- Name: SubSubscription.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubSubscription.created_at_index" ON public."SubSubscription" USING btree (created_at); -- -- Name: Sub_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Sub_created_at_idx" ON public."Sub" USING btree (created_at); -- -- Name: Sub_parentName_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Sub_parentName_idx" ON public."Sub" USING btree ("parentName"); -- -- Name: Sub_path_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Sub_path_idx" ON public."Sub" USING gist (path public.gist_ltree_ops (siglen='2024')); -- -- Name: Sub_statusUpdatedAt_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Sub_statusUpdatedAt_idx" ON public."Sub" USING btree ("statusUpdatedAt"); -- -- Name: Sub_userId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Sub_userId_idx" ON public."Sub" USING btree ("userId"); -- -- Name: TerritoryTransfer.newUserId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "TerritoryTransfer.newUserId_index" ON public."TerritoryTransfer" USING btree (created_at, "newUserId"); -- -- Name: TerritoryTransfer.oldUserId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "TerritoryTransfer.oldUserId_index" ON public."TerritoryTransfer" USING btree (created_at, "oldUserId"); -- -- Name: ThreadSubscription.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ThreadSubscription.created_at_index" ON public."ThreadSubscription" USING btree (created_at); -- -- Name: Upload.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Upload.created_at_index" ON public."Upload" USING btree (created_at); -- -- Name: Upload.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Upload.userId_index" ON public."Upload" USING btree ("userId"); -- -- Name: Upload_invoiceActionState_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Upload_invoiceActionState_idx" ON public."Upload" USING btree ("invoiceActionState"); -- -- Name: Upload_invoiceId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Upload_invoiceId_idx" ON public."Upload" USING btree ("invoiceId"); -- -- Name: UserSubscription.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "UserSubscription.created_at_index" ON public."UserSubscription" USING btree (created_at); -- -- Name: UserSubscription.followee_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "UserSubscription.followee_index" ON public."UserSubscription" USING btree ("followeeId"); -- -- Name: UserSubscription.follower_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "UserSubscription.follower_index" ON public."UserSubscription" USING btree ("followerId"); -- -- Name: VaultEntry_userId_key_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "VaultEntry_userId_key_key" ON public."VaultEntry" USING btree ("userId", key); -- -- Name: VaultEntry_walletId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "VaultEntry_walletId_idx" ON public."VaultEntry" USING btree ("walletId"); -- -- Name: Vote.itemId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Vote.itemId_index" ON public."ItemAct" USING btree ("itemId"); -- -- Name: Vote.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Vote.userId_index" ON public."ItemAct" USING btree ("userId"); -- -- Name: WalletBlink_walletId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "WalletBlink_walletId_key" ON public."WalletBlink" USING btree ("walletId"); -- -- Name: WalletCLN_walletId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "WalletCLN_walletId_key" ON public."WalletCLN" USING btree ("walletId"); -- -- Name: WalletLND_walletId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "WalletLND_walletId_key" ON public."WalletLND" USING btree ("walletId"); -- -- Name: WalletLNbits_walletId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "WalletLNbits_walletId_key" ON public."WalletLNbits" USING btree ("walletId"); -- -- Name: WalletLightningAddress_walletId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "WalletLightningAddress_walletId_key" ON public."WalletLightningAddress" USING btree ("walletId"); -- -- Name: WalletLog_userId_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "WalletLog_userId_created_at_idx" ON public."WalletLog" USING btree ("userId", created_at); -- -- Name: WalletNWC_walletId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "WalletNWC_walletId_key" ON public."WalletNWC" USING btree ("walletId"); -- -- Name: WalletPhoenixd_walletId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "WalletPhoenixd_walletId_key" ON public."WalletPhoenixd" USING btree ("walletId"); -- -- Name: Wallet_priority_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Wallet_priority_idx" ON public."Wallet" USING btree (priority); -- -- Name: Wallet_userId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Wallet_userId_idx" ON public."Wallet" USING btree ("userId"); -- -- Name: Withdrawl.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Withdrawl.created_at_index" ON public."Withdrawl" USING btree (created_at); -- -- Name: Withdrawl.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Withdrawl.userId_index" ON public."Withdrawl" USING btree ("userId"); -- -- Name: Withdrawl_autoWithdraw_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Withdrawl_autoWithdraw_idx" ON public."Withdrawl" USING btree ("autoWithdraw"); -- -- Name: Withdrawl_hash_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Withdrawl_hash_idx" ON public."Withdrawl" USING btree (hash); -- -- Name: Withdrawl_hash_key_null_status; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Withdrawl_hash_key_null_status" ON public."Withdrawl" USING btree (hash) WHERE ((status IS NULL) OR (status = 'CONFIRMED'::public."WithdrawlStatus")); -- -- Name: Withdrawl_status_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Withdrawl_status_idx" ON public."Withdrawl" USING btree (status); -- -- Name: Withdrawl_walletId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Withdrawl_walletId_idx" ON public."Withdrawl" USING btree ("walletId"); -- -- Name: accounts.user_id_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "accounts.user_id_index" ON public.accounts USING btree (user_id); -- -- Name: accounts_provider_id_provider_account_id_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX accounts_provider_id_provider_account_id_key ON public.accounts USING btree (provider_id, provider_account_id); -- -- Name: hot_score_view_hot_score_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX hot_score_view_hot_score_idx ON public.hot_score_view USING btree (hot_score DESC NULLS LAST); -- -- Name: hot_score_view_hot_score_no_nulls_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX hot_score_view_hot_score_no_nulls_idx ON public.hot_score_view USING btree (hot_score DESC); -- -- Name: hot_score_view_id_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX hot_score_view_id_idx ON public.hot_score_view USING btree (id); -- -- Name: hot_score_view_sub_hot_score_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX hot_score_view_sub_hot_score_idx ON public.hot_score_view USING btree (sub_hot_score DESC NULLS LAST); -- -- Name: hot_score_view_sub_hot_score_no_nulls_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX hot_score_view_sub_hot_score_no_nulls_idx ON public.hot_score_view USING btree (sub_hot_score DESC); -- -- Name: hot_tf_zap_rank_personal_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX hot_tf_zap_rank_personal_view_idx ON public.zap_rank_personal_view USING btree ("viewerId", tf_hot_score DESC NULLS LAST, id DESC); -- -- Name: item_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX item_growth_days_idx ON public.item_growth_days USING btree (t); -- -- Name: item_growth_hour_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX item_growth_hour_idx ON public.item_growth_hours USING btree (t); -- -- Name: item_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX item_growth_months_idx ON public.item_growth_months USING btree (t); -- -- Name: reg_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX reg_growth_days_idx ON public.reg_growth_days USING btree (t); -- -- Name: reg_growth_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX reg_growth_hours_idx ON public.reg_growth_hours USING btree (t); -- -- Name: reg_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX reg_growth_months_idx ON public.reg_growth_months USING btree (t); -- -- Name: rewards_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX rewards_days_idx ON public.rewards_days USING btree (t); -- -- Name: rewards_today_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX rewards_today_idx ON public.rewards_today USING btree (t); -- -- Name: sat_rank_tender_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX sat_rank_tender_view_idx ON public.sat_rank_tender_view USING btree (rank); -- -- Name: sat_rank_wwm_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX sat_rank_wwm_view_idx ON public.sat_rank_wwm_view USING btree (rank); -- -- Name: sessions.session_token_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "sessions.session_token_unique" ON public.sessions USING btree (session_token); -- -- Name: spender_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spender_growth_days_idx ON public.spender_growth_days USING btree (t, "userId", type); -- -- Name: spender_growth_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spender_growth_hours_idx ON public.spender_growth_hours USING btree (t, "userId", type); -- -- Name: spender_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spender_growth_months_idx ON public.spender_growth_months USING btree (t, "userId", type); -- -- Name: spending_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spending_growth_days_idx ON public.spending_growth_days USING btree (t); -- -- Name: spending_growth_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spending_growth_hours_idx ON public.spending_growth_hours USING btree (t); -- -- Name: spending_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spending_growth_months_idx ON public.spending_growth_months USING btree (t); -- -- Name: stackers_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stackers_growth_days_idx ON public.stackers_growth_days USING btree (t, "userId", type); -- -- Name: stackers_growth_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stackers_growth_hours_idx ON public.stackers_growth_hours USING btree (t, "userId", type); -- -- Name: stackers_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stackers_growth_months_idx ON public.stackers_growth_months USING btree (t, "userId", type); -- -- Name: stacking_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stacking_growth_days_idx ON public.stacking_growth_days USING btree (t); -- -- Name: stacking_growth_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stacking_growth_hours_idx ON public.stacking_growth_hours USING btree (t); -- -- Name: stacking_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stacking_growth_months_idx ON public.stacking_growth_months USING btree (t); -- -- Name: sub_stats_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX sub_stats_days_idx ON public.sub_stats_days USING btree (t, sub_name); -- -- Name: sub_stats_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX sub_stats_hours_idx ON public.sub_stats_hours USING btree (t, sub_name); -- -- Name: sub_stats_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX sub_stats_months_idx ON public.sub_stats_months USING btree (t, sub_name); -- -- Name: top_tf_zap_rank_personal_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX top_tf_zap_rank_personal_view_idx ON public.zap_rank_personal_view USING btree ("viewerId", tf_top_score DESC NULLS LAST, id DESC); -- -- Name: user_stats_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX user_stats_days_idx ON public.user_stats_days USING btree (t, id); -- -- Name: user_stats_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX user_stats_hours_idx ON public.user_stats_hours USING btree (t, id); -- -- Name: user_stats_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX user_stats_months_idx ON public.user_stats_months USING btree (t, id); -- -- Name: user_values_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX user_values_days_idx ON public.user_values_days USING btree (t, id); -- -- Name: user_values_today_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX user_values_today_idx ON public.user_values_today USING btree (id); -- -- Name: user_values_today_proportion_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX user_values_today_proportion_idx ON public.user_values_today USING btree (proportion DESC); -- -- Name: users.apikeyhash_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.apikeyhash_unique" ON public.users USING btree ("apiKeyHash"); -- -- Name: users.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "users.created_at_index" ON public.users USING btree (created_at); -- -- Name: users.email_hash_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.email_hash_unique" ON public.users USING btree ("emailHash"); -- -- Name: users.email_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.email_unique" ON public.users USING btree (email); -- -- Name: users.inviteId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "users.inviteId_index" ON public.users USING btree ("inviteId"); -- -- Name: users.name_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.name_unique" ON public.users USING btree (name); -- -- Name: users.nostrAuthPubkey_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.nostrAuthPubkey_unique" ON public.users USING btree ("nostrAuthPubkey"); -- -- Name: users.pubkey_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.pubkey_unique" ON public.users USING btree (pubkey); -- -- Name: users.slashtagId_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.slashtagId_unique" ON public.users USING btree ("slashtagId"); -- -- Name: users_gunStreak_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "users_gunStreak_idx" ON public.users USING btree ("gunStreak"); -- -- Name: users_horseStreak_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "users_horseStreak_idx" ON public.users USING btree ("horseStreak"); -- -- Name: users_photoId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "users_photoId_idx" ON public.users USING btree ("photoId"); -- -- Name: users_streak_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX users_streak_idx ON public.users USING btree (streak); -- -- Name: verification_requests.token_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "verification_requests.token_unique" ON public.verification_requests USING btree (token); -- -- Name: verification_requests_identifier_token_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX verification_requests_identifier_token_key ON public.verification_requests USING btree (identifier, token); -- -- Name: zap_rank_personal_view_viewer_id_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX zap_rank_personal_view_viewer_id_idx ON public.zap_rank_personal_view USING btree ("viewerId", id); -- -- Name: zap_rank_tender_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX zap_rank_tender_view_idx ON public.zap_rank_tender_view USING btree (rank); -- -- Name: zap_rank_wwm_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX zap_rank_wwm_view_idx ON public.zap_rank_wwm_view USING btree (rank); -- -- Name: Bookmark index_bookmarked_item; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER index_bookmarked_item AFTER INSERT OR DELETE OR UPDATE ON public."Bookmark" FOR EACH ROW EXECUTE FUNCTION public.index_bookmarked_item(); -- -- Name: Item index_item; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER index_item AFTER INSERT OR UPDATE ON public."Item" FOR EACH ROW WHEN (((new."invoiceActionState" IS NULL) OR (new."invoiceActionState" = 'PAID'::public."InvoiceActionState"))) EXECUTE FUNCTION public.index_item(); -- -- Name: Invoice invoice_user_cancel_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER invoice_user_cancel_trigger BEFORE UPDATE ON public."Invoice" FOR EACH ROW EXECUTE FUNCTION public.invoice_set_user_cancel_default(); -- -- Name: ItemForward item_forward_pct_total_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE CONSTRAINT TRIGGER item_forward_pct_total_trigger AFTER INSERT OR UPDATE ON public."ItemForward" DEFERRABLE INITIALLY DEFERRED FOR EACH ROW EXECUTE FUNCTION public.item_forward_pct_total_trigger_func(); -- -- Name: users name_tgr; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER name_tgr BEFORE INSERT ON public.users FOR EACH ROW EXECUTE FUNCTION public.assign_name(); -- -- Name: Item path_tgr; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER path_tgr BEFORE INSERT OR UPDATE ON public."Item" FOR EACH ROW EXECUTE FUNCTION public.update_item_path(); -- -- Name: Pin pin_delete_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER pin_delete_trigger AFTER DELETE ON public."Pin" FOR EACH ROW EXECUTE FUNCTION public.pin_delete_trigger_func(); -- -- Name: Pin pin_upsert_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER pin_upsert_trigger AFTER INSERT OR UPDATE ON public."Pin" FOR EACH ROW EXECUTE FUNCTION public.pin_upsert_trigger_func(); -- -- Name: Sub sub_path_tgr; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER sub_path_tgr BEFORE INSERT OR UPDATE ON public."Sub" FOR EACH ROW EXECUTE FUNCTION public.update_sub_path(); -- -- Name: Sub update_territory_billing_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER update_territory_billing_trigger AFTER INSERT OR UPDATE ON public."Sub" FOR EACH ROW WHEN ((new.status = 'ACTIVE'::public."Status")) EXECUTE FUNCTION public.update_territory_billing(); -- -- Name: users user_auto_withdraw_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER user_auto_withdraw_trigger AFTER UPDATE ON public.users FOR EACH ROW WHEN (((new."autoWithdrawThreshold" IS NOT NULL) AND (new."autoWithdrawMaxFeePercent" IS NOT NULL) AND (((new.msats - (new."autoWithdrawThreshold" * 1000)))::numeric >= (((new."autoWithdrawThreshold" * 1000))::numeric * 0.1)))) EXECUTE FUNCTION public.user_auto_withdraw(); -- -- Name: users user_streak; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER user_streak AFTER UPDATE ON public.users FOR EACH ROW WHEN (((new.msats < old.msats) OR (new.mcredits < old.mcredits))) EXECUTE FUNCTION public.user_streak_check(); -- -- Name: VaultEntry vault_entry_updated_at_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER vault_entry_updated_at_trigger AFTER INSERT OR DELETE OR UPDATE ON public."VaultEntry" FOR EACH ROW EXECUTE FUNCTION public.wallet_updated_at_trigger(); -- -- Name: WalletBlink wallet_blink_as_jsonb; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER wallet_blink_as_jsonb AFTER INSERT OR UPDATE ON public."WalletBlink" FOR EACH ROW EXECUTE FUNCTION public.wallet_wallet_type_as_jsonb(); -- -- Name: WalletCLN wallet_cln_as_jsonb; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER wallet_cln_as_jsonb AFTER INSERT OR UPDATE ON public."WalletCLN" FOR EACH ROW EXECUTE FUNCTION public.wallet_wallet_type_as_jsonb(); -- -- Name: WalletLightningAddress wallet_lnaddr_as_jsonb; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER wallet_lnaddr_as_jsonb AFTER INSERT OR UPDATE ON public."WalletLightningAddress" FOR EACH ROW EXECUTE FUNCTION public.wallet_wallet_type_as_jsonb(); -- -- Name: WalletLNbits wallet_lnbits_as_jsonb; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER wallet_lnbits_as_jsonb AFTER INSERT OR UPDATE ON public."WalletLNbits" FOR EACH ROW EXECUTE FUNCTION public.wallet_wallet_type_as_jsonb(); -- -- Name: WalletLND wallet_lnd_as_jsonb; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER wallet_lnd_as_jsonb AFTER INSERT OR UPDATE ON public."WalletLND" FOR EACH ROW EXECUTE FUNCTION public.wallet_wallet_type_as_jsonb(); -- -- Name: WalletNWC wallet_nwc_as_jsonb; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER wallet_nwc_as_jsonb AFTER INSERT OR UPDATE ON public."WalletNWC" FOR EACH ROW EXECUTE FUNCTION public.wallet_wallet_type_as_jsonb(); -- -- Name: WalletPhoenixd wallet_phoenixd_as_jsonb; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER wallet_phoenixd_as_jsonb AFTER INSERT OR UPDATE ON public."WalletPhoenixd" FOR EACH ROW EXECUTE FUNCTION public.wallet_wallet_type_as_jsonb(); -- -- Name: Wallet wallet_updated_at_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER wallet_updated_at_trigger AFTER INSERT OR DELETE OR UPDATE ON public."Wallet" FOR EACH ROW EXECUTE FUNCTION public.wallet_updated_at_trigger(); -- -- Name: Arc Arc_fromId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Arc" ADD CONSTRAINT "Arc_fromId_fkey" FOREIGN KEY ("fromId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Arc Arc_toId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Arc" ADD CONSTRAINT "Arc_toId_fkey" FOREIGN KEY ("toId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: AutoSocialPost AutoSocialPost_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."AutoSocialPost" ADD CONSTRAINT "AutoSocialPost_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Bookmark Bookmark_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Bookmark" ADD CONSTRAINT "Bookmark_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Bookmark Bookmark_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Bookmark" ADD CONSTRAINT "Bookmark_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: DirectPayment DirectPayment_receiverId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."DirectPayment" ADD CONSTRAINT "DirectPayment_receiverId_fkey" FOREIGN KEY ("receiverId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: DirectPayment DirectPayment_senderId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."DirectPayment" ADD CONSTRAINT "DirectPayment_senderId_fkey" FOREIGN KEY ("senderId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: DirectPayment DirectPayment_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."DirectPayment" ADD CONSTRAINT "DirectPayment_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Donation Donation_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Donation" ADD CONSTRAINT "Donation_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Earn Earn_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Earn" ADD CONSTRAINT "Earn_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Invite Invite_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Invite" ADD CONSTRAINT "Invite_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: InvoiceForward InvoiceForward_invoiceId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."InvoiceForward" ADD CONSTRAINT "InvoiceForward_invoiceId_fkey" FOREIGN KEY ("invoiceId") REFERENCES public."Invoice"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: InvoiceForward InvoiceForward_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."InvoiceForward" ADD CONSTRAINT "InvoiceForward_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: InvoiceForward InvoiceForward_withdrawlId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."InvoiceForward" ADD CONSTRAINT "InvoiceForward_withdrawlId_fkey" FOREIGN KEY ("withdrawlId") REFERENCES public."Withdrawl"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Invoice Invoice_predecessorId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Invoice" ADD CONSTRAINT "Invoice_predecessorId_fkey" FOREIGN KEY ("predecessorId") REFERENCES public."Invoice"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Invoice Invoice_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Invoice" ADD CONSTRAINT "Invoice_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemAct ItemAct_invoiceId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemAct" ADD CONSTRAINT "ItemAct_invoiceId_fkey" FOREIGN KEY ("invoiceId") REFERENCES public."Invoice"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: ItemAct ItemAct_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemAct" ADD CONSTRAINT "ItemAct_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemAct ItemAct_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemAct" ADD CONSTRAINT "ItemAct_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemForward ItemForward_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemForward" ADD CONSTRAINT "ItemForward_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemForward ItemForward_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemForward" ADD CONSTRAINT "ItemForward_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemMention ItemMention_refereeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemMention" ADD CONSTRAINT "ItemMention_refereeId_fkey" FOREIGN KEY ("refereeId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemMention ItemMention_referrerId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemMention" ADD CONSTRAINT "ItemMention_referrerId_fkey" FOREIGN KEY ("referrerId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemUpload ItemUpload_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemUpload" ADD CONSTRAINT "ItemUpload_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemUpload ItemUpload_uploadId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemUpload" ADD CONSTRAINT "ItemUpload_uploadId_fkey" FOREIGN KEY ("uploadId") REFERENCES public."Upload"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemUserAgg ItemUserAgg_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemUserAgg" ADD CONSTRAINT "ItemUserAgg_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemUserAgg ItemUserAgg_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemUserAgg" ADD CONSTRAINT "ItemUserAgg_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Item Item_invoiceId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_invoiceId_fkey" FOREIGN KEY ("invoiceId") REFERENCES public."Invoice"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Item Item_parentId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_parentId_fkey" FOREIGN KEY ("parentId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Item Item_pinId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_pinId_fkey" FOREIGN KEY ("pinId") REFERENCES public."Pin"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Item Item_rootId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_rootId_fkey" FOREIGN KEY ("rootId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Item Item_subName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_subName_fkey" FOREIGN KEY ("subName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Item Item_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Mention Mention_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mention" ADD CONSTRAINT "Mention_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Mention Mention_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mention" ADD CONSTRAINT "Mention_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Message Message_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Message" ADD CONSTRAINT "Message_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: MuteSub MuteSub_subName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."MuteSub" ADD CONSTRAINT "MuteSub_subName_fkey" FOREIGN KEY ("subName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: MuteSub MuteSub_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."MuteSub" ADD CONSTRAINT "MuteSub_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Mute Mute_mutedId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mute" ADD CONSTRAINT "Mute_mutedId_fkey" FOREIGN KEY ("mutedId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Mute Mute_muterId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mute" ADD CONSTRAINT "Mute_muterId_fkey" FOREIGN KEY ("muterId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: OneDayReferral OneDayReferral_refereeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."OneDayReferral" ADD CONSTRAINT "OneDayReferral_refereeId_fkey" FOREIGN KEY ("refereeId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: OneDayReferral OneDayReferral_referrerId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."OneDayReferral" ADD CONSTRAINT "OneDayReferral_referrerId_fkey" FOREIGN KEY ("referrerId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: PollBlindVote PollBlindVote_invoiceId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollBlindVote" ADD CONSTRAINT "PollBlindVote_invoiceId_fkey" FOREIGN KEY ("invoiceId") REFERENCES public."Invoice"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: PollBlindVote PollBlindVote_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollBlindVote" ADD CONSTRAINT "PollBlindVote_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: PollBlindVote PollBlindVote_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollBlindVote" ADD CONSTRAINT "PollBlindVote_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: PollOption PollOption_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollOption" ADD CONSTRAINT "PollOption_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: PollVote PollVote_invoiceId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollVote" ADD CONSTRAINT "PollVote_invoiceId_fkey" FOREIGN KEY ("invoiceId") REFERENCES public."Invoice"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: PollVote PollVote_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollVote" ADD CONSTRAINT "PollVote_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: PollVote PollVote_pollOptionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollVote" ADD CONSTRAINT "PollVote_pollOptionId_fkey" FOREIGN KEY ("pollOptionId") REFERENCES public."PollOption"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: PushSubscription PushSubscription_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PushSubscription" ADD CONSTRAINT "PushSubscription_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ReferralAct ReferralAct_itemActId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ReferralAct" ADD CONSTRAINT "ReferralAct_itemActId_fkey" FOREIGN KEY ("itemActId") REFERENCES public."ItemAct"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ReferralAct ReferralAct_referrerId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ReferralAct" ADD CONSTRAINT "ReferralAct_referrerId_fkey" FOREIGN KEY ("referrerId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Reminder Reminder_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Reminder" ADD CONSTRAINT "Reminder_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Reminder Reminder_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Reminder" ADD CONSTRAINT "Reminder_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Reply Reply_ancestorId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Reply" ADD CONSTRAINT "Reply_ancestorId_fkey" FOREIGN KEY ("ancestorId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE RESTRICT; -- -- Name: Reply Reply_ancestorUserId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Reply" ADD CONSTRAINT "Reply_ancestorUserId_fkey" FOREIGN KEY ("ancestorUserId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE RESTRICT; -- -- Name: Reply Reply_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Reply" ADD CONSTRAINT "Reply_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE RESTRICT; -- -- Name: Reply Reply_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Reply" ADD CONSTRAINT "Reply_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE RESTRICT; -- -- Name: Streak Streak_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Streak" ADD CONSTRAINT "Streak_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: SubAct SubAct_subName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubAct" ADD CONSTRAINT "SubAct_subName_fkey" FOREIGN KEY ("subName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: SubAct SubAct_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubAct" ADD CONSTRAINT "SubAct_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: SubSubscription SubSubscription_subName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubSubscription" ADD CONSTRAINT "SubSubscription_subName_fkey" FOREIGN KEY ("subName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: SubSubscription SubSubscription_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubSubscription" ADD CONSTRAINT "SubSubscription_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Sub Sub_parentName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Sub" ADD CONSTRAINT "Sub_parentName_fkey" FOREIGN KEY ("parentName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Sub Sub_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Sub" ADD CONSTRAINT "Sub_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: TerritoryTransfer TerritoryTransfer_newUserId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."TerritoryTransfer" ADD CONSTRAINT "TerritoryTransfer_newUserId_fkey" FOREIGN KEY ("newUserId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: TerritoryTransfer TerritoryTransfer_oldUserId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."TerritoryTransfer" ADD CONSTRAINT "TerritoryTransfer_oldUserId_fkey" FOREIGN KEY ("oldUserId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: TerritoryTransfer TerritoryTransfer_subName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."TerritoryTransfer" ADD CONSTRAINT "TerritoryTransfer_subName_fkey" FOREIGN KEY ("subName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ThreadSubscription ThreadSubscription_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ThreadSubscription" ADD CONSTRAINT "ThreadSubscription_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ThreadSubscription ThreadSubscription_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ThreadSubscription" ADD CONSTRAINT "ThreadSubscription_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Upload Upload_invoiceId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Upload" ADD CONSTRAINT "Upload_invoiceId_fkey" FOREIGN KEY ("invoiceId") REFERENCES public."Invoice"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Upload Upload_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Upload" ADD CONSTRAINT "Upload_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: UserNostrRelay UserNostrRelay_nostrRelayAddr_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserNostrRelay" ADD CONSTRAINT "UserNostrRelay_nostrRelayAddr_fkey" FOREIGN KEY ("nostrRelayAddr") REFERENCES public."NostrRelay"(addr) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: UserNostrRelay UserNostrRelay_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserNostrRelay" ADD CONSTRAINT "UserNostrRelay_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: UserSubTrust UserSubTrust_subName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserSubTrust" ADD CONSTRAINT "UserSubTrust_subName_fkey" FOREIGN KEY ("subName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: UserSubTrust UserSubTrust_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserSubTrust" ADD CONSTRAINT "UserSubTrust_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: UserSubscription UserSubscription_followeeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserSubscription" ADD CONSTRAINT "UserSubscription_followeeId_fkey" FOREIGN KEY ("followeeId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: UserSubscription UserSubscription_followerId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserSubscription" ADD CONSTRAINT "UserSubscription_followerId_fkey" FOREIGN KEY ("followerId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: VaultEntry VaultEntry_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."VaultEntry" ADD CONSTRAINT "VaultEntry_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: VaultEntry VaultEntry_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."VaultEntry" ADD CONSTRAINT "VaultEntry_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: WalletBlink WalletBlink_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletBlink" ADD CONSTRAINT "WalletBlink_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: WalletCLN WalletCLN_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletCLN" ADD CONSTRAINT "WalletCLN_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: WalletLND WalletLND_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLND" ADD CONSTRAINT "WalletLND_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: WalletLNbits WalletLNbits_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLNbits" ADD CONSTRAINT "WalletLNbits_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: WalletLightningAddress WalletLightningAddress_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLightningAddress" ADD CONSTRAINT "WalletLightningAddress_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: WalletLog WalletLog_invoiceId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLog" ADD CONSTRAINT "WalletLog_invoiceId_fkey" FOREIGN KEY ("invoiceId") REFERENCES public."Invoice"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: WalletLog WalletLog_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLog" ADD CONSTRAINT "WalletLog_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: WalletLog WalletLog_withdrawalId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLog" ADD CONSTRAINT "WalletLog_withdrawalId_fkey" FOREIGN KEY ("withdrawalId") REFERENCES public."Withdrawl"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: WalletNWC WalletNWC_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletNWC" ADD CONSTRAINT "WalletNWC_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: WalletPhoenixd WalletPhoenixd_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletPhoenixd" ADD CONSTRAINT "WalletPhoenixd_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Wallet Wallet_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Wallet" ADD CONSTRAINT "Wallet_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Withdrawl Withdrawl_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Withdrawl" ADD CONSTRAINT "Withdrawl_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Withdrawl Withdrawl_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Withdrawl" ADD CONSTRAINT "Withdrawl_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: accounts accounts_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.accounts ADD CONSTRAINT accounts_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: sessions sessions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.sessions ADD CONSTRAINT sessions_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: users users_bioId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ADD CONSTRAINT "users_bioId_fkey" FOREIGN KEY ("bioId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: users users_inviteId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ADD CONSTRAINT "users_inviteId_fkey" FOREIGN KEY ("inviteId") REFERENCES public."Invite"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: users users_photoId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ADD CONSTRAINT "users_photoId_fkey" FOREIGN KEY ("photoId") REFERENCES public."Upload"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: users users_referrerId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ADD CONSTRAINT "users_referrerId_fkey" FOREIGN KEY ("referrerId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: hot_score_view; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.hot_score_view; -- -- Name: item_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.item_growth_days; -- -- Name: item_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.item_growth_hours; -- -- Name: item_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.item_growth_months; -- -- Name: reg_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.reg_growth_days; -- -- Name: reg_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.reg_growth_hours; -- -- Name: reg_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.reg_growth_months; -- -- Name: rewards_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.rewards_days; -- -- Name: rewards_today; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.rewards_today; -- -- Name: sat_rank_tender_view; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.sat_rank_tender_view; -- -- Name: sat_rank_wwm_view; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.sat_rank_wwm_view; -- -- Name: spender_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spender_growth_days; -- -- Name: spender_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spender_growth_hours; -- -- Name: spender_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spender_growth_months; -- -- Name: spending_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spending_growth_days; -- -- Name: spending_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spending_growth_hours; -- -- Name: spending_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spending_growth_months; -- -- Name: stackers_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stackers_growth_days; -- -- Name: stackers_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stackers_growth_hours; -- -- Name: stackers_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stackers_growth_months; -- -- Name: stacking_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stacking_growth_days; -- -- Name: stacking_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stacking_growth_hours; -- -- Name: stacking_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stacking_growth_months; -- -- Name: sub_stats_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.sub_stats_days; -- -- Name: sub_stats_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.sub_stats_hours; -- -- Name: sub_stats_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.sub_stats_months; -- -- Name: user_stats_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.user_stats_days; -- -- Name: user_stats_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.user_stats_hours; -- -- Name: user_stats_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.user_stats_months; -- -- Name: user_values_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.user_values_days; -- -- Name: user_values_today; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.user_values_today; -- -- Name: zap_rank_personal_view; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.zap_rank_personal_view; -- -- Name: zap_rank_tender_view; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.zap_rank_tender_view; -- -- Name: zap_rank_wwm_view; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.zap_rank_wwm_view; -- -- PostgreSQL database dump complete -- CREATE OR REPLACE FUNCTION timewarp() RETURNS VOID LANGUAGE plpgsql AS $$ DECLARE r RECORD; max_timestamp TIMESTAMP; interval_to_add INTERVAL; BEGIN FOR r IN SELECT c.table_schema, c.table_name, c.column_name FROM information_schema.columns c JOIN information_schema.tables t ON c.table_schema = t.table_schema AND c.table_name = t.table_name WHERE c.data_type IN ('timestamp without time zone', 'timestamp with time zone') AND c.table_schema NOT IN ('pg_catalog', 'information_schema') -- Exclude system schemas AND t.table_type = 'BASE TABLE' -- Ensure targeting only user-defined tables (excluding views) AND t.table_schema NOT LIKE 'pg_%' -- Exclude other potential PostgreSQL system schemas LOOP -- Calculate the maximum value in the column EXECUTE format('SELECT max(%I) FROM %I.%I', r.column_name, r.table_schema, r.table_name) INTO max_timestamp; -- If there's a maximum value, calculate the interval and update the column IF max_timestamp IS NOT NULL THEN interval_to_add := now() - max_timestamp; EXECUTE format('UPDATE %I.%I SET %I = %I + %L', r.table_schema, r.table_name, r.column_name, r.column_name, interval_to_add); END IF; END LOOP; END; $$; SELECT timewarp(); UPDATE "Item" p SET (ncomments, "commentMsats") = (SELECT COALESCE(count(*), 0), COALESCE(sum(msats), 0) FROM "Item" c WHERE c.path <@ p.path AND p.id <> c.id); CREATE OR REPLACE FUNCTION RefreshAllMaterializedViews(schema_arg TEXT DEFAULT 'public') RETURNS INT AS $$ DECLARE r RECORD; BEGIN RAISE NOTICE 'Refreshing materialized view in schema %', schema_arg; FOR r IN SELECT matviewname FROM pg_matviews WHERE schemaname = schema_arg LOOP RAISE NOTICE 'Refreshing %.%', schema_arg, r.matviewname; EXECUTE 'REFRESH MATERIALIZED VIEW ' || schema_arg || '.' || r.matviewname; END LOOP; RETURN 1; END $$ LANGUAGE plpgsql; SELECT RefreshAllMaterializedViews(); INSERT INTO pgboss.job (name) VALUES ('indexAllItems');